diff --git a/.gitignore b/.gitignore index fe842f9c2ea..0b1b5d27857 100644 --- a/.gitignore +++ b/.gitignore @@ -95,3 +95,20 @@ tcl /00-*.txt /z-todo-licenses-* +# Extra ignores from licensedb +*.pyc +*.db +.installed.cfg +parts +develop-eggs +eggs +downloads +.settings +TAGS +Procfile +local.cfg +geckodriver.log +var +.metaflow +selenium +/dist/ \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bef2409ddfe..0a3107bd121 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -53,15 +53,30 @@ License detection: detected license only once. This data can contain the reference license text as an option. -- We can now detect licenses using custom license texts and license rules. - These can be provided as a one off in a directory or packaged as a plugin - for consistent reuse and deployment. - - There is a new "scancode-reindex-licenses" command that replace the "scancode --reindex-licenses" command line option which has been removed. This new command supports simpler reindexing using custom license texts and license rules contributed by plugins or stored in an - additional directory. + additional directory. The "--reindex-licenses-for-all-languages" CLI option + is also moved to the "scancode-reindex-licenses" command as an option + "--all-languages". + +- We can now detect licenses using custom license texts and license rules. + These can be provided as a one off in a directory or packaged as a plugin + for consistent reuse and deployment. There is an option "--additional-directory" + with the "scancode-reindex-licenses" command and also a new "--only-builtin" + option to only use the builtin licenses to build the cache. + +- Scancode LICENSE and RULE files now also contain their data as YAML frontmatter, + which previously used to be in their respective YAML files. This reduces number of + files in those directories, 'rules' and 'licenses' to half. Git line history is + preserved for the files. + +- A new command line option "--get-license-data" is added to dump license data in + JSON, YAML and HTML formats, and also generates a local index and a static website + to view the data. This will essentially be an API/way to get scancode license data + as opposed to just reading the files. + Package detection: ~~~~~~~~~~~~~~~~~~~~~ diff --git a/requirements.txt b/requirements.txt index 0034ed5749e..5e0ab256cae 100644 --- a/requirements.txt +++ b/requirements.txt @@ -56,6 +56,7 @@ pygmars==0.7.0 Pygments==2.12.0 pymaven-patch==0.3.0 pyparsing==3.0.9 +python-frontmatter==1.0.0 pytz==2022.1 PyYAML==6.0 rdflib==6.2.0 diff --git a/setup.cfg b/setup.cfg index 99db3f5495d..087e01ea6d8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -101,6 +101,7 @@ install_requires = pygmars >= 0.7.0 pygments pymaven_patch >= 0.2.8 + python-frontmatter >= 1.0.0 requests >= 2.7.0 saneyaml >= 0.5.2 spdx_tools >= 0.7.0a3 diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_90.RULE b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_90.RULE index 6ae34771ec4..9c248dc24de 100644 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_90.RULE +++ b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_90.RULE @@ -1 +1,12 @@ +--- +license_expression: free-unknown +relevance: 100 +notes: | + License test derived from a file of the BSD-licensed repository at: + https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 + originally expected to be detected as LiLiQ-P-1.1 + with coverage of 0 + This is a URL test extracted from ccurls.t1. +--- + http://opensource.org/licenses/liliq-p-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_90.yml b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_90.yml deleted file mode 100644 index 7a19e6dddfb..00000000000 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_90.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: free-unknown -relevance: 100 -notes: | - License test derived from a file of the BSD-licensed repository at: - https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 - originally expected to be detected as LiLiQ-P-1.1 - with coverage of 0 - This is a URL test extracted from ccurls.t1. diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_91.RULE b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_91.RULE index cff3f11e8d1..f167c4c0e78 100644 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_91.RULE +++ b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_91.RULE @@ -1 +1,12 @@ +--- +license_expression: free-unknown +relevance: 100 +notes: | + License test derived from a file of the BSD-licensed repository at: + https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 + originally expected to be detected as LiLiQ-P-1.1 + with coverage of 0 + This is a URL test extracted from ccurls.t1. +--- + https://opensource.org/licenses/liliq-p-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_91.yml b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_91.yml deleted file mode 100644 index 7a19e6dddfb..00000000000 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_91.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: free-unknown -relevance: 100 -notes: | - License test derived from a file of the BSD-licensed repository at: - https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 - originally expected to be detected as LiLiQ-P-1.1 - with coverage of 0 - This is a URL test extracted from ccurls.t1. diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_92.RULE b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_92.RULE index f7371e12960..3899b57fb55 100644 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_92.RULE +++ b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_92.RULE @@ -1 +1,12 @@ +--- +license_expression: free-unknown +relevance: 100 +notes: | + License test derived from a file of the BSD-licensed repository at: + https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 + originally expected to be detected as LiLiQ-R-1.1 + with coverage of 0 + This is a URL test extracted from ccurls.t1. +--- + http://opensource.org/licenses/liliq-r-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_92.yml b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_92.yml deleted file mode 100644 index 67b4a0e4a92..00000000000 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_92.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: free-unknown -relevance: 100 -notes: | - License test derived from a file of the BSD-licensed repository at: - https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 - originally expected to be detected as LiLiQ-R-1.1 - with coverage of 0 - This is a URL test extracted from ccurls.t1. diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_93.RULE b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_93.RULE index d12692cbdb8..62eaf619b9a 100644 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_93.RULE +++ b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_93.RULE @@ -1 +1,12 @@ +--- +license_expression: free-unknown +relevance: 100 +notes: | + License test derived from a file of the BSD-licensed repository at: + https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 + originally expected to be detected as LiLiQ-R-1.1 + with coverage of 0 + This is a URL test extracted from ccurls.t1. +--- + https://opensource.org/licenses/liliq-r-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_93.yml b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_93.yml deleted file mode 100644 index 67b4a0e4a92..00000000000 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_93.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: free-unknown -relevance: 100 -notes: | - License test derived from a file of the BSD-licensed repository at: - https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 - originally expected to be detected as LiLiQ-R-1.1 - with coverage of 0 - This is a URL test extracted from ccurls.t1. diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_94.RULE b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_94.RULE index 62324091dbf..c2b9ca684cf 100644 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_94.RULE +++ b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_94.RULE @@ -1 +1,12 @@ +--- +license_expression: free-unknown +relevance: 100 +notes: | + License test derived from a file of the BSD-licensed repository at: + https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 + originally expected to be detected as LiLiQ-Rplus-1.1 + with coverage of 0 + This is a URL test extracted from ccurls.t1. +--- + http://opensource.org/licenses/liliq-rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_94.yml b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_94.yml deleted file mode 100644 index 9cad537bae6..00000000000 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_94.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: free-unknown -relevance: 100 -notes: | - License test derived from a file of the BSD-licensed repository at: - https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 - originally expected to be detected as LiLiQ-Rplus-1.1 - with coverage of 0 - This is a URL test extracted from ccurls.t1. diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_95.RULE b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_95.RULE index 3f3f220adab..6a9dbbe24cc 100644 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_95.RULE +++ b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_95.RULE @@ -1 +1,12 @@ +--- +license_expression: free-unknown +relevance: 100 +notes: | + License test derived from a file of the BSD-licensed repository at: + https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 + originally expected to be detected as LiLiQ-Rplus-1.1 + with coverage of 0 + This is a URL test extracted from ccurls.t1. +--- + https://opensource.org/licenses/liliq-rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_95.yml b/src/licensedcode/data/inactive/rules/free-unknown_url_glc_95.yml deleted file mode 100644 index 9cad537bae6..00000000000 --- a/src/licensedcode/data/inactive/rules/free-unknown_url_glc_95.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: free-unknown -relevance: 100 -notes: | - License test derived from a file of the BSD-licensed repository at: - https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/ccurls.t1 - originally expected to be detected as LiLiQ-Rplus-1.1 - with coverage of 0 - This is a URL test extracted from ccurls.t1. diff --git a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms.RULE b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms.RULE index 0e46072e1dc..790ff107004 100644 --- a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms.RULE +++ b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +notes: mostly used by Oracle in the JDK and Linux +--- + Use is subject to licence term \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms.yml b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms.yml deleted file mode 100644 index 79407e3d4b4..00000000000 --- a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -notes: mostly used by Oracle in the JDK and Linux \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms2.RULE b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms2.RULE index 3ba41e5b0af..949ec80dfe0 100644 --- a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms2.RULE +++ b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms2.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +notes: mostly used by Oracle in the JDK and Linux +--- + Use is subject to licence terms. \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms2.yml b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms2.yml deleted file mode 100644 index 79407e3d4b4..00000000000 --- a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_licence_terms2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -notes: mostly used by Oracle in the JDK and Linux \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms.RULE b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms.RULE index bda35909a8a..14d44a71cab 100644 --- a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms.RULE +++ b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +notes: mostly used by Oracle in the JDK and Linux +--- + Use is subject to license term \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms.yml b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms.yml deleted file mode 100644 index 79407e3d4b4..00000000000 --- a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -notes: mostly used by Oracle in the JDK and Linux \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms2.RULE b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms2.RULE index d5ae9302163..f08d32050ec 100644 --- a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms2.RULE +++ b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms2.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +notes: mostly used by Oracle in the JDK and Linux +--- + Use is subject to license terms. \ No newline at end of file diff --git a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms2.yml b/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms2.yml deleted file mode 100644 index 79407e3d4b4..00000000000 --- a/src/licensedcode/data/inactive/rules/unknown_use_subject_to_license_terms2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -notes: mostly used by Oracle in the JDK and Linux \ No newline at end of file diff --git a/src/licensedcode/data/licenses/389-exception.LICENSE b/src/licensedcode/data/licenses/389-exception.LICENSE index 25a38e59243..af8bbe21ea1 100644 --- a/src/licensedcode/data/licenses/389-exception.LICENSE +++ b/src/licensedcode/data/licenses/389-exception.LICENSE @@ -1,3 +1,49 @@ +--- +key: 389-exception +short_name: 389 Directory Server Exception to GPL 2.0 +name: 389 Directory Server Exception to GPL 2.0 +category: Copyleft Limited +owner: Fedora +homepage_url: https://spdx.org/licenses/389-exception.html +is_exception: yes +spdx_license_key: 389-exception +text_urls: + - http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text +other_urls: + - http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://web.archive.org/web/20080828121337/http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text +standard_notice: | + 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; version 2 of the License. + This Program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this Program; if not, write to the Free Software Foundation, Inc., 59 + Temple Place, Suite 330, Boston, MA 02111-1307 USA. + In addition, as a special exception, Red Hat, Inc. gives You the additional + right to link the code of this Program with code not covered under the GNU + General Public License ("Non-GPL Code") and to distribute linked + combinations including the two, subject to the limitations in this + paragraph. Non-GPL Code permitted under this exception must only link to + the code of this Program through those well defined interfaces identified + in the file named EXCEPTION found in the source code files (the "Approved + Interfaces"). The files of Non-GPL Code may instantiate templates or use + macros or inline functions from the Approved Interfaces without causing the + resulting work to be covered by the GNU General Public License. Only Red + Hat, Inc. may make changes or additions to the list of Approved Interfaces. + You must obey the GNU General Public License in all respects for all of the + Program code and other code used in conjunction with the Program except the + Non-GPL Code covered by this exception. If you modify this file, you may + extend this exception to your version of the file, but you are not + obligated to do so. If you do not wish to provide this exception without + modification, you must delete this exception statement from your version + and license this file solely under the GPL without exception. +--- + In addition, as a special exception, Red Hat, Inc. gives You the additional right to link the code of this Program with code not covered under the GNU General Public License ("Non-GPL Code") and to distribute linked combinations diff --git a/src/licensedcode/data/licenses/389-exception.yml b/src/licensedcode/data/licenses/389-exception.yml deleted file mode 100644 index ac4359c68da..00000000000 --- a/src/licensedcode/data/licenses/389-exception.yml +++ /dev/null @@ -1,43 +0,0 @@ -key: 389-exception -short_name: 389 Directory Server Exception to GPL 2.0 -name: 389 Directory Server Exception to GPL 2.0 -category: Copyleft Limited -owner: Fedora -homepage_url: https://spdx.org/licenses/389-exception.html -is_exception: yes -spdx_license_key: 389-exception -text_urls: - - http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text -other_urls: - - http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text - - http://www.gnu.org/licenses/gpl-2.0.txt - - https://web.archive.org/web/20080828121337/http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text -standard_notice: | - 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; version 2 of the License. - This Program is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this Program; if not, write to the Free Software Foundation, Inc., 59 - Temple Place, Suite 330, Boston, MA 02111-1307 USA. - In addition, as a special exception, Red Hat, Inc. gives You the additional - right to link the code of this Program with code not covered under the GNU - General Public License ("Non-GPL Code") and to distribute linked - combinations including the two, subject to the limitations in this - paragraph. Non-GPL Code permitted under this exception must only link to - the code of this Program through those well defined interfaces identified - in the file named EXCEPTION found in the source code files (the "Approved - Interfaces"). The files of Non-GPL Code may instantiate templates or use - macros or inline functions from the Approved Interfaces without causing the - resulting work to be covered by the GNU General Public License. Only Red - Hat, Inc. may make changes or additions to the list of Approved Interfaces. - You must obey the GNU General Public License in all respects for all of the - Program code and other code used in conjunction with the Program except the - Non-GPL Code covered by this exception. If you modify this file, you may - extend this exception to your version of the file, but you are not - obligated to do so. If you do not wish to provide this exception without - modification, you must delete this exception statement from your version - and license this file solely under the GPL without exception. diff --git a/src/licensedcode/data/licenses/3com-microcode.LICENSE b/src/licensedcode/data/licenses/3com-microcode.LICENSE index d4263e3e849..39eefa3b731 100644 --- a/src/licensedcode/data/licenses/3com-microcode.LICENSE +++ b/src/licensedcode/data/licenses/3com-microcode.LICENSE @@ -1,3 +1,13 @@ +--- +key: 3com-microcode +short_name: 3Com Microcode +name: 3Com Microcode +category: Permissive +owner: HP - Hewlett Packard +notes: this is a Linux firmware BSD-like license with some weird extra terms +spdx_license_key: LicenseRef-scancode-3com-microcode +--- + Redistribution and use in source and binary forms of the microcode software are permitted provided that the following conditions @@ -26,4 +36,4 @@ MICROCODE SOFTWARE WILL NOT CREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN ANY OTHER 3COM HARDWARE OR SOFTWARE EITHER SOLELY OR IN -COMBINATION WITH THE MICROCODE SOFTWARE +COMBINATION WITH THE MICROCODE SOFTWARE \ No newline at end of file diff --git a/src/licensedcode/data/licenses/3com-microcode.yml b/src/licensedcode/data/licenses/3com-microcode.yml deleted file mode 100644 index 662876e2ef8..00000000000 --- a/src/licensedcode/data/licenses/3com-microcode.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: 3com-microcode -short_name: 3Com Microcode -name: 3Com Microcode -category: Permissive -owner: HP - Hewlett Packard -notes: this is a Linux firmware BSD-like license with some weird extra terms -spdx_license_key: LicenseRef-scancode-3com-microcode diff --git a/src/licensedcode/data/licenses/3dslicer-1.0.LICENSE b/src/licensedcode/data/licenses/3dslicer-1.0.LICENSE index 4697d38f0e9..ffa357f1737 100644 --- a/src/licensedcode/data/licenses/3dslicer-1.0.LICENSE +++ b/src/licensedcode/data/licenses/3dslicer-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: 3dslicer-1.0 +short_name: 3D Slicer License 1.0 +name: 3D Slicer Contribution and Software License Agreement v1.0 +category: Permissive +owner: Slicer Project +homepage_url: https://www.slicer.org/wiki/License +spdx_license_key: LicenseRef-scancode-3dslicer-1.0 +text_urls: + - https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt +faq_url: https://www.slicer.org/wiki/CommercialUse +other_urls: + - http://www.slicer.org + - http://wiki.na-mic.org/Wiki/index.php/Slicer3 +ignorable_authors: + - The Brigham and Women's Hospital, Inc. +--- + 3D Slicer Contribution and Software License Agreement ("Agreement") Version 1.0 (December 20, 2005) diff --git a/src/licensedcode/data/licenses/3dslicer-1.0.yml b/src/licensedcode/data/licenses/3dslicer-1.0.yml deleted file mode 100644 index 6953a5cb8be..00000000000 --- a/src/licensedcode/data/licenses/3dslicer-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: 3dslicer-1.0 -short_name: 3D Slicer License 1.0 -name: 3D Slicer Contribution and Software License Agreement v1.0 -category: Permissive -owner: Slicer Project -homepage_url: https://www.slicer.org/wiki/License -spdx_license_key: LicenseRef-scancode-3dslicer-1.0 -text_urls: - - https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt -faq_url: https://www.slicer.org/wiki/CommercialUse -other_urls: - - http://www.slicer.org - - http://wiki.na-mic.org/Wiki/index.php/Slicer3 -ignorable_authors: - - The Brigham and Women's Hospital, Inc. diff --git a/src/licensedcode/data/licenses/4suite-1.1.LICENSE b/src/licensedcode/data/licenses/4suite-1.1.LICENSE index 7cf5f540e72..5b36a8c556e 100644 --- a/src/licensedcode/data/licenses/4suite-1.1.LICENSE +++ b/src/licensedcode/data/licenses/4suite-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: 4suite-1.1 +short_name: 4Suite 1.1 +name: 4Suite License v1.1 +category: Permissive +owner: Fourthought, Inc. +spdx_license_key: LicenseRef-scancode-4suite-1.1 +ignorable_copyrights: + - Copyright (c) 2000 Fourthought, Inc. + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - Fourthought, Inc. + - The Apache Software Foundation +ignorable_authors: + - Fourthought, Inc. (http://www.fourthought.com) +ignorable_urls: + - http://www.fourthought.com/ +ignorable_emails: + - info@fourthought.com +--- + License and copyright info for 4Suite software ===================================== diff --git a/src/licensedcode/data/licenses/4suite-1.1.yml b/src/licensedcode/data/licenses/4suite-1.1.yml deleted file mode 100644 index 78216edd4d1..00000000000 --- a/src/licensedcode/data/licenses/4suite-1.1.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: 4suite-1.1 -short_name: 4Suite 1.1 -name: 4Suite License v1.1 -category: Permissive -owner: Fourthought, Inc. -spdx_license_key: LicenseRef-scancode-4suite-1.1 -ignorable_copyrights: - - Copyright (c) 2000 Fourthought, Inc. - - Copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - Fourthought, Inc. - - The Apache Software Foundation -ignorable_authors: - - Fourthought, Inc. (http://www.fourthought.com) -ignorable_urls: - - http://www.fourthought.com/ -ignorable_emails: - - info@fourthought.com diff --git a/src/licensedcode/data/licenses/996-icu-1.0.LICENSE b/src/licensedcode/data/licenses/996-icu-1.0.LICENSE index b56eebcb707..36fa699b3c1 100644 --- a/src/licensedcode/data/licenses/996-icu-1.0.LICENSE +++ b/src/licensedcode/data/licenses/996-icu-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: 996-icu-1.0 +short_name: Anti 996 License 1.0 +name: Anti 996 License Version 1.0 (Draft) +category: Free Restricted +owner: 996icu +homepage_url: https://github.com/996icu/996.ICU +notes: this is based on the still draft text as of 2019-04-17 +spdx_license_key: LicenseRef-scancode-996-icu-1.0 +text_urls: + - https://github.com/996icu/996.ICU/blob/dd185162b9d56b629e52c5726995cd7505326b06/LICENSE +--- + "Anti 996" License Version 1.0 (Draft) Permission is hereby granted to any individual or legal entity diff --git a/src/licensedcode/data/licenses/996-icu-1.0.yml b/src/licensedcode/data/licenses/996-icu-1.0.yml deleted file mode 100644 index 8e62b6291dc..00000000000 --- a/src/licensedcode/data/licenses/996-icu-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: 996-icu-1.0 -short_name: Anti 996 License 1.0 -name: Anti 996 License Version 1.0 (Draft) -category: Free Restricted -owner: 996icu -homepage_url: https://github.com/996icu/996.ICU -notes: this is based on the still draft text as of 2019-04-17 -spdx_license_key: LicenseRef-scancode-996-icu-1.0 -text_urls: - - https://github.com/996icu/996.ICU/blob/dd185162b9d56b629e52c5726995cd7505326b06/LICENSE diff --git a/src/licensedcode/data/licenses/abrms.LICENSE b/src/licensedcode/data/licenses/abrms.LICENSE index 9c03c59893b..eacf1494b51 100644 --- a/src/licensedcode/data/licenses/abrms.LICENSE +++ b/src/licensedcode/data/licenses/abrms.LICENSE @@ -1,3 +1,13 @@ +--- +key: abrms +short_name: ABRMS +name: Anyone But Richard Stallman License +category: Proprietary Free +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-abrms +--- + The "Anyone But Richard M Stallman" license Do anything you want with this program, with the exceptions listed below under "EXCEPTIONS". @@ -6,4 +16,4 @@ THIS SOFTWARE IS PROVIDED "AS IS" WITH NO WARRANTY OF ANY KIND. In the unlikely event that you happen to make a zillion bucks off of this, then good for you; consider buying a homeless person a meal. EXCEPTIONS -Richard M Stallman (the guy behind GNU, etc.) may not make use of or redistribute this program or any of its derivatives. +Richard M Stallman (the guy behind GNU, etc.) may not make use of or redistribute this program or any of its derivatives. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/abrms.yml b/src/licensedcode/data/licenses/abrms.yml deleted file mode 100644 index a6e22b9b941..00000000000 --- a/src/licensedcode/data/licenses/abrms.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: abrms -short_name: ABRMS -name: Anyone But Richard Stallman License -category: Proprietary Free -owner: Unspecified -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-abrms diff --git a/src/licensedcode/data/licenses/abstyles.LICENSE b/src/licensedcode/data/licenses/abstyles.LICENSE index 6c0f437990c..96c1e20b7bb 100644 --- a/src/licensedcode/data/licenses/abstyles.LICENSE +++ b/src/licensedcode/data/licenses/abstyles.LICENSE @@ -1,3 +1,14 @@ +--- +key: abstyles +short_name: Abstyles License +name: Abstyles License +category: Permissive +owner: CTAN +homepage_url: https://fedoraproject.org/wiki/Licensing/Abstyles +notes: the latext2e, verbatim-manual and abstyles are similar licenses +spdx_license_key: Abstyles +--- + This program is distributed WITHOUT ANY WARRANTY, express or implied. Permission is granted to make and distribute verbatim copies of this @@ -7,4 +18,4 @@ preserved on all copies. Permission is granted to copy and distribute modified versions of this document under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a -permission notice identical to this one. +permission notice identical to this one. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/abstyles.yml b/src/licensedcode/data/licenses/abstyles.yml deleted file mode 100644 index aed7afaf41b..00000000000 --- a/src/licensedcode/data/licenses/abstyles.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: abstyles -short_name: Abstyles License -name: Abstyles License -category: Permissive -owner: CTAN -homepage_url: https://fedoraproject.org/wiki/Licensing/Abstyles -notes: the latext2e, verbatim-manual and abstyles are similar licenses -spdx_license_key: Abstyles diff --git a/src/licensedcode/data/licenses/ac3filter.LICENSE b/src/licensedcode/data/licenses/ac3filter.LICENSE index 19f8ff5a027..20d6e753653 100644 --- a/src/licensedcode/data/licenses/ac3filter.LICENSE +++ b/src/licensedcode/data/licenses/ac3filter.LICENSE @@ -1,3 +1,23 @@ +--- +key: ac3filter +short_name: AC3Filter License +name: AC3Filter License +category: Copyleft +owner: Alexander Vigovsky +homepage_url: http://www.ac3filter.net/wiki/Download_AC3Filter +notes: | + The license text contains terms that contradict, and are completely + incompatible with, the terms of GPL 2.0. "This application may solely be + used for demonstration and educational purposes. Any other use may be + prohibited by law in some coutries." The typo "coutries" is in the original + license text. +spdx_license_key: LicenseRef-scancode-ac3filter +other_urls: + - http://ac3filter.net + - http://ac3filter.net/forum +minimum_coverage: 95 +--- + License: ======== diff --git a/src/licensedcode/data/licenses/ac3filter.yml b/src/licensedcode/data/licenses/ac3filter.yml deleted file mode 100644 index a007f860b80..00000000000 --- a/src/licensedcode/data/licenses/ac3filter.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: ac3filter -short_name: AC3Filter License -name: AC3Filter License -category: Copyleft -owner: Alexander Vigovsky -homepage_url: http://www.ac3filter.net/wiki/Download_AC3Filter -notes: | - The license text contains terms that contradict, and are completely - incompatible with, the terms of GPL 2.0. "This application may solely be - used for demonstration and educational purposes. Any other use may be - prohibited by law in some coutries." The typo "coutries" is in the original - license text. -spdx_license_key: LicenseRef-scancode-ac3filter -other_urls: - - http://ac3filter.net - - http://ac3filter.net/forum -minimum_coverage: 95 diff --git a/src/licensedcode/data/licenses/accellera-systemc.LICENSE b/src/licensedcode/data/licenses/accellera-systemc.LICENSE index 4f17cc5a2dd..1078dff8806 100644 --- a/src/licensedcode/data/licenses/accellera-systemc.LICENSE +++ b/src/licensedcode/data/licenses/accellera-systemc.LICENSE @@ -1,3 +1,27 @@ +--- +key: accellera-systemc +short_name: SystemC Open Source License Agreement +name: SystemC Open Source License Agreement +category: Permissive +owner: Accellera +homepage_url: https://www.accellera.org/images/about/policies/SystemC_Open_Source_License_v3.3.pdf +spdx_license_key: LicenseRef-scancode-accellera-systemc +faq_url: https://accellera.org/about/policies-and-procedures +ignorable_copyrights: + - (c) 1996- current year here + - (c) 1996- current year here by all Contributors + - Copyright (c) 1996- current year here by all Contributors +ignorable_holders: + - here + - here by all Contributors +ignorable_authors: + - through the Accellera working group process +ignorable_urls: + - http://www.accellera.org/ +ignorable_emails: + - info@accellera.org +--- + SystemC Open Source License Agreement (Download, Use and Contribution License Agreement Version 3.3) diff --git a/src/licensedcode/data/licenses/accellera-systemc.yml b/src/licensedcode/data/licenses/accellera-systemc.yml deleted file mode 100644 index a94826915e7..00000000000 --- a/src/licensedcode/data/licenses/accellera-systemc.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: accellera-systemc -short_name: SystemC Open Source License Agreement -name: SystemC Open Source License Agreement -category: Permissive -owner: Accellera -homepage_url: https://www.accellera.org/images/about/policies/SystemC_Open_Source_License_v3.3.pdf -spdx_license_key: LicenseRef-scancode-accellera-systemc -faq_url: https://accellera.org/about/policies-and-procedures -ignorable_copyrights: - - (c) 1996- current year here - - (c) 1996- current year here by all Contributors - - Copyright (c) 1996- current year here by all Contributors -ignorable_holders: - - here - - here by all Contributors -ignorable_authors: - - through the Accellera working group process -ignorable_urls: - - http://www.accellera.org/ -ignorable_emails: - - info@accellera.org diff --git a/src/licensedcode/data/licenses/acdl-1.0.LICENSE b/src/licensedcode/data/licenses/acdl-1.0.LICENSE index b8de0a21388..df474e25d49 100644 --- a/src/licensedcode/data/licenses/acdl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/acdl-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: acdl-1.0 +short_name: ACDL 1.0 +name: Apple Common Documentation License v1.0 +category: Copyleft Limited +owner: Apple +homepage_url: http://fedoraproject.org/wiki/Licensing/Common_Documentation_License +spdx_license_key: CDL-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-acdl-1.0 +text_urls: + - http://www.opensource.apple.com/cdl/ +faq_url: http://fedoraproject.org/wiki/Licensing/Common_Documentation_License +other_urls: + - http://fedoraproject.org/wiki/Licensing/Common_Documentation_License + - https://fedoraproject.org/wiki/Licensing/Common_Documentation_License + - https://www.gnu.org/licenses/license-list.html#ACDL +ignorable_copyrights: + - Copyright (c) 2001 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.opensource.apple.com/cdl/ +--- + Version 1.0 - February 16, 2001 Copyright (C) 2001 Apple Computer, Inc. diff --git a/src/licensedcode/data/licenses/acdl-1.0.yml b/src/licensedcode/data/licenses/acdl-1.0.yml deleted file mode 100644 index bec806ffe01..00000000000 --- a/src/licensedcode/data/licenses/acdl-1.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: acdl-1.0 -short_name: ACDL 1.0 -name: Apple Common Documentation License v1.0 -category: Copyleft Limited -owner: Apple -homepage_url: http://fedoraproject.org/wiki/Licensing/Common_Documentation_License -spdx_license_key: CDL-1.0 -other_spdx_license_keys: - - LicenseRef-scancode-acdl-1.0 -text_urls: - - http://www.opensource.apple.com/cdl/ -faq_url: http://fedoraproject.org/wiki/Licensing/Common_Documentation_License -other_urls: - - http://fedoraproject.org/wiki/Licensing/Common_Documentation_License - - https://fedoraproject.org/wiki/Licensing/Common_Documentation_License - - https://www.gnu.org/licenses/license-list.html#ACDL -ignorable_copyrights: - - Copyright (c) 2001 Apple Computer, Inc. -ignorable_holders: - - Apple Computer, Inc. -ignorable_urls: - - http://www.opensource.apple.com/cdl/ diff --git a/src/licensedcode/data/licenses/ace-tao.LICENSE b/src/licensedcode/data/licenses/ace-tao.LICENSE index cdd175d9d55..a2e040fc93b 100644 --- a/src/licensedcode/data/licenses/ace-tao.LICENSE +++ b/src/licensedcode/data/licenses/ace-tao.LICENSE @@ -1,3 +1,26 @@ +--- +key: ace-tao +short_name: ACE TAO License +name: ACE TAO License +category: Permissive +owner: Douglas Schmidt +homepage_url: http://www.cs.wustl.edu/~schmidt/ +spdx_license_key: DOC +text_urls: + - http://www.cs.wustl.edu/~schmidt/ACE-copying.html +other_urls: + - https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html +minimum_coverage: 30 +ignorable_copyrights: + - copyrighted by Douglas C. Schmidt and his research group at Washington University, University + of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009 +ignorable_holders: + - Douglas C. Schmidt and his research group at Washington University, University of California, + Irvine, and Vanderbilt University +ignorable_authors: + - the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center +--- + Copyright and Licensing Information for ACE(TM), TAO(TM), CIAO(TM), and CoSMIC(TM) ACE(TM),TAO(TM),CIAO(TM),andCoSMIC(TM) (henceforth referred to as "DOC software") are copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009, all rights reserved. Since DOC software is open-source, freely available software, you are free to use, modify, copy, and distribute--perpetually and irrevocably--the DOC software source code and object code produced from the source, as well as copy and distribute modified versions of this software. You must, however, include this copyright statement along with any code built using DOC software that you release. No copyright statement needs to be provided if you just ship binary executables of your software products. diff --git a/src/licensedcode/data/licenses/ace-tao.yml b/src/licensedcode/data/licenses/ace-tao.yml deleted file mode 100644 index dc4e478f6f5..00000000000 --- a/src/licensedcode/data/licenses/ace-tao.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: ace-tao -short_name: ACE TAO License -name: ACE TAO License -category: Permissive -owner: Douglas Schmidt -homepage_url: http://www.cs.wustl.edu/~schmidt/ -spdx_license_key: DOC -text_urls: - - http://www.cs.wustl.edu/~schmidt/ACE-copying.html -other_urls: - - https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html -minimum_coverage: 30 -ignorable_copyrights: - - copyrighted by Douglas C. Schmidt and his research group at Washington University, University - of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009 -ignorable_holders: - - Douglas C. Schmidt and his research group at Washington University, University of California, - Irvine, and Vanderbilt University -ignorable_authors: - - the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center diff --git a/src/licensedcode/data/licenses/acroname-bdk.LICENSE b/src/licensedcode/data/licenses/acroname-bdk.LICENSE index 1f47d53a3cc..cc8447e2f2b 100644 --- a/src/licensedcode/data/licenses/acroname-bdk.LICENSE +++ b/src/licensedcode/data/licenses/acroname-bdk.LICENSE @@ -1,3 +1,21 @@ +--- +key: acroname-bdk +short_name: Acroname BDK +name: Acroname Brainstem Development Kit license +category: Proprietary Free +owner: Acroname +homepage_url: https://acroname.com/software-license +spdx_license_key: LicenseRef-scancode-acroname-bdk +ignorable_copyrights: + - Copyright (c) 1994-2020 Acroname Inc. +ignorable_holders: + - Acroname Inc. +ignorable_urls: + - https://libusb.info/ +ignorable_emails: + - support@acroname.com +--- + BRAINSTEM DEVELOPMENT KIT SOFTWARE PACKAGE LICENSE AGREEMENT: PLEASE READ THIS SOFTWARE LICENSE AGREEMENT CAREFULLY BEFORE DOWNLOADING OR USING THE SOFTWARE. diff --git a/src/licensedcode/data/licenses/acroname-bdk.yml b/src/licensedcode/data/licenses/acroname-bdk.yml deleted file mode 100644 index 7c39b422ed0..00000000000 --- a/src/licensedcode/data/licenses/acroname-bdk.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: acroname-bdk -short_name: Acroname BDK -name: Acroname Brainstem Development Kit license -category: Proprietary Free -owner: Acroname -homepage_url: https://acroname.com/software-license -spdx_license_key: LicenseRef-scancode-acroname-bdk -ignorable_copyrights: - - Copyright (c) 1994-2020 Acroname Inc. -ignorable_holders: - - Acroname Inc. -ignorable_urls: - - https://libusb.info/ -ignorable_emails: - - support@acroname.com diff --git a/src/licensedcode/data/licenses/activestate-community-2012.LICENSE b/src/licensedcode/data/licenses/activestate-community-2012.LICENSE index 7aa8d1c570e..f84dd6708cb 100644 --- a/src/licensedcode/data/licenses/activestate-community-2012.LICENSE +++ b/src/licensedcode/data/licenses/activestate-community-2012.LICENSE @@ -1,3 +1,23 @@ +--- +key: activestate-community-2012 +short_name: ActiveState Community License 2012 +name: ActiveState Community License 2012 +category: Proprietary Free +owner: ActiveState Software, Inc. +homepage_url: https://web.archive.org/web/20130420143215/http://www.activestate.com/activeperl/license-agreement +spdx_license_key: LicenseRef-scancode-activestate-community-2012 +standard_notice: | + ActivePerl is covered by the ActiveState Community License. + Please note: + If you plan to redistribute ActivePerl you will need a different license. + For more information please visit ActivePerl OEM Licensing or contact us + directly. +ignorable_urls: + - http://www.activestate.com/ +ignorable_emails: + - sales@activestate.com +--- + ACTIVESTATE COMMUNITY EDITION SOFTWARE LICENSE AGREEMENT Version effective date: August 2, 2012 diff --git a/src/licensedcode/data/licenses/activestate-community-2012.yml b/src/licensedcode/data/licenses/activestate-community-2012.yml deleted file mode 100644 index 6794a7298ee..00000000000 --- a/src/licensedcode/data/licenses/activestate-community-2012.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: activestate-community-2012 -short_name: ActiveState Community License 2012 -name: ActiveState Community License 2012 -category: Proprietary Free -owner: ActiveState Software, Inc. -homepage_url: https://web.archive.org/web/20130420143215/http://www.activestate.com/activeperl/license-agreement -spdx_license_key: LicenseRef-scancode-activestate-community-2012 -standard_notice: | - ActivePerl is covered by the ActiveState Community License. - Please note: - If you plan to redistribute ActivePerl you will need a different license. - For more information please visit ActivePerl OEM Licensing or contact us - directly. -ignorable_urls: - - http://www.activestate.com/ -ignorable_emails: - - sales@activestate.com diff --git a/src/licensedcode/data/licenses/activestate-community.LICENSE b/src/licensedcode/data/licenses/activestate-community.LICENSE index 6c40af834bc..a790db556b8 100644 --- a/src/licensedcode/data/licenses/activestate-community.LICENSE +++ b/src/licensedcode/data/licenses/activestate-community.LICENSE @@ -1,3 +1,22 @@ +--- +key: activestate-community +short_name: ActiveState Community License +name: ActiveState Community License +category: Proprietary Free +owner: ActiveState Software, Inc. +spdx_license_key: LicenseRef-scancode-activestate-community +ignorable_copyrights: + - Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2000 BeOpen.com + - Copyright (c) 2001 Python Software Foundation +ignorable_holders: + - BeOpen.com + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum, Amsterdam +--- + ActiveState Community License Preamble: The intent of this document is to state the conditions under which the Package may be copied and distributed, such that ActiveState maintains control over the development and distribution of the Package, while allowing the users of the Package to use the Package in a variety of ways. diff --git a/src/licensedcode/data/licenses/activestate-community.yml b/src/licensedcode/data/licenses/activestate-community.yml deleted file mode 100644 index 001040feca1..00000000000 --- a/src/licensedcode/data/licenses/activestate-community.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: activestate-community -short_name: ActiveState Community License -name: ActiveState Community License -category: Proprietary Free -owner: ActiveState Software, Inc. -spdx_license_key: LicenseRef-scancode-activestate-community -ignorable_copyrights: - - Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2000 BeOpen.com - - Copyright (c) 2001 Python Software Foundation -ignorable_holders: - - BeOpen.com - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum, Amsterdam diff --git a/src/licensedcode/data/licenses/activestate-komodo-edit.LICENSE b/src/licensedcode/data/licenses/activestate-komodo-edit.LICENSE index b1b6025d852..515b3db3b4b 100644 --- a/src/licensedcode/data/licenses/activestate-komodo-edit.LICENSE +++ b/src/licensedcode/data/licenses/activestate-komodo-edit.LICENSE @@ -1,3 +1,19 @@ +--- +key: activestate-komodo-edit +short_name: ActiveState Komodo Edit EULA +name: ActiveState Komodo Edit EULA +category: Proprietary Free +owner: ActiveState Software, Inc. +homepage_url: http://www.activestate.com/komodo-edit/license-agreement +spdx_license_key: LicenseRef-scancode-activestate-komodo-edit +other_urls: + - https://www.mozilla.org/en-US/MPL/1.1/ +ignorable_urls: + - http://www.activestate.com/ +ignorable_emails: + - license@activestate.com +--- + ACTIVESTATE® KOMODO® EDIT LICENSE AGREEMENT Please read carefully: THIS IS A LICENSE AND NOT AN AGREEMENT FOR SALE. By using and installing ActiveState's Software or, where applicable, choosing the "I ACCEPT..." option at the end of the License you indicate that you have read, understood, and accepted the terms and conditions of the License. IF YOU DO NOT AGREE WITH THE TERMS AND CONDITIONS, YOU SHOULD NOT ATTEMPT TO INSTALL THE SOFTWARE. If the Software is already downloaded or installed, you should promptly cease using the Software in any manner and destroy all copies of the Software in your possession. You, the user, assume all responsibility for the selection of the Software to achieve your intended results and for the installation, use and results obtained from the Software. If you have any questions concerning this, you may contact ActiveState via license@activestate.com. diff --git a/src/licensedcode/data/licenses/activestate-komodo-edit.yml b/src/licensedcode/data/licenses/activestate-komodo-edit.yml deleted file mode 100644 index 5c87a2f47cd..00000000000 --- a/src/licensedcode/data/licenses/activestate-komodo-edit.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: activestate-komodo-edit -short_name: ActiveState Komodo Edit EULA -name: ActiveState Komodo Edit EULA -category: Proprietary Free -owner: ActiveState Software, Inc. -homepage_url: http://www.activestate.com/komodo-edit/license-agreement -spdx_license_key: LicenseRef-scancode-activestate-komodo-edit -other_urls: - - https://www.mozilla.org/en-US/MPL/1.1/ -ignorable_urls: - - http://www.activestate.com/ -ignorable_emails: - - license@activestate.com diff --git a/src/licensedcode/data/licenses/actuate-birt-ihub-ftype-sla.LICENSE b/src/licensedcode/data/licenses/actuate-birt-ihub-ftype-sla.LICENSE index 4a1749442f2..ec685711e95 100644 --- a/src/licensedcode/data/licenses/actuate-birt-ihub-ftype-sla.LICENSE +++ b/src/licensedcode/data/licenses/actuate-birt-ihub-ftype-sla.LICENSE @@ -1,3 +1,19 @@ +--- +key: actuate-birt-ihub-ftype-sla +short_name: BIRT iHub F-Type Software License Agreement +name: Actuate Corporation BIRT iHub F-Type Software License Agreement +category: Proprietary Free +owner: Actuate +homepage_url: http://spp.actuate.com/DM/DownloadOpenFile.aspx?docId=4637 +spdx_license_key: LicenseRef-scancode-actuate-birt-ihub-ftype-sla +ignorable_copyrights: + - copyrighted by Actuate +ignorable_holders: + - Actuate +ignorable_urls: + - http://www.actuate.com/documentation/ihubftype3/license +--- + Actuate Corporation BIRT iHub F-Type Software License Agreement IMPORTANT – READ CAREFULLY. diff --git a/src/licensedcode/data/licenses/actuate-birt-ihub-ftype-sla.yml b/src/licensedcode/data/licenses/actuate-birt-ihub-ftype-sla.yml deleted file mode 100644 index 920c8cb7d11..00000000000 --- a/src/licensedcode/data/licenses/actuate-birt-ihub-ftype-sla.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: actuate-birt-ihub-ftype-sla -short_name: BIRT iHub F-Type Software License Agreement -name: Actuate Corporation BIRT iHub F-Type Software License Agreement -category: Proprietary Free -owner: Actuate -homepage_url: http://spp.actuate.com/DM/DownloadOpenFile.aspx?docId=4637 -spdx_license_key: LicenseRef-scancode-actuate-birt-ihub-ftype-sla -ignorable_copyrights: - - copyrighted by Actuate -ignorable_holders: - - Actuate -ignorable_urls: - - http://www.actuate.com/documentation/ihubftype3/license diff --git a/src/licensedcode/data/licenses/ada-linking-exception.LICENSE b/src/licensedcode/data/licenses/ada-linking-exception.LICENSE index 7b99c1109e2..e374043f0e0 100644 --- a/src/licensedcode/data/licenses/ada-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/ada-linking-exception.LICENSE @@ -1,3 +1,43 @@ +--- +key: ada-linking-exception +short_name: Ada linking exception to GPL 2.0 or later +name: Ada linking exception to GPL 2.0 or later +category: Copyleft Limited +owner: Dmitriy Anisimkov +is_exception: yes +spdx_license_key: LicenseRef-scancode-ada-linking-exception +other_urls: + - http://zlib-ada.sourceforge.net/ + - http://ada-ru.org/ +standard_notice: | + --------------------------------------------------------------------------- + --- + -- This library 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 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 -- + -- General Public License for more details. -- + -- -- + -- You should have received a copy of the GNU General Public License -- + -- along with this library; if not, write to the Free Software Foundation, + -- + -- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- + -- -- + -- As a special exception, if other files instantiate generics from this -- + -- unit, or you link this unit with other files to produce an executable, + -- + -- this unit does not by itself cause the resulting executable to be -- + -- covered by the GNU General Public License. This exception does not -- + -- however invalidate any other reasons why the executable file might be -- + -- covered by the GNU Public License. -- + --------------------------------------------------------------------------- + --- +--- + As a special exception, if other files instantiate generics from this unit, or you link this unit with other files to produce an executable, this unit does not by itself cause the resulting executable to be diff --git a/src/licensedcode/data/licenses/ada-linking-exception.yml b/src/licensedcode/data/licenses/ada-linking-exception.yml deleted file mode 100644 index 4ec8957c983..00000000000 --- a/src/licensedcode/data/licenses/ada-linking-exception.yml +++ /dev/null @@ -1,37 +0,0 @@ -key: ada-linking-exception -short_name: Ada linking exception to GPL 2.0 or later -name: Ada linking exception to GPL 2.0 or later -category: Copyleft Limited -owner: Dmitriy Anisimkov -is_exception: yes -spdx_license_key: LicenseRef-scancode-ada-linking-exception -other_urls: - - http://zlib-ada.sourceforge.net/ - - http://ada-ru.org/ -standard_notice: | - --------------------------------------------------------------------------- - --- - -- This library 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 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 -- - -- General Public License for more details. -- - -- -- - -- You should have received a copy of the GNU General Public License -- - -- along with this library; if not, write to the Free Software Foundation, - -- - -- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- - -- -- - -- As a special exception, if other files instantiate generics from this -- - -- unit, or you link this unit with other files to produce an executable, - -- - -- this unit does not by itself cause the resulting executable to be -- - -- covered by the GNU General Public License. This exception does not -- - -- however invalidate any other reasons why the executable file might be -- - -- covered by the GNU Public License. -- - --------------------------------------------------------------------------- - --- diff --git a/src/licensedcode/data/licenses/adapt-1.0.LICENSE b/src/licensedcode/data/licenses/adapt-1.0.LICENSE index 5ad83aae676..12e487ccc62 100644 --- a/src/licensedcode/data/licenses/adapt-1.0.LICENSE +++ b/src/licensedcode/data/licenses/adapt-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: adapt-1.0 +short_name: APL 1.0 +name: Adaptive Public License +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/apl1.0.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: APL-1.0 +osi_license_key: APL-1.0 +text_urls: + - http://www.opensource.org/licenses/apl1.0.php +osi_url: http://www.opensource.org/licenses/apl1.0.php +other_urls: + - http://www.opensource.org/licenses/APL-1.0 + - https://opensource.org/licenses/APL-1.0 +--- + ADAPTIVE PUBLIC LICENSE Version 1.0 THE LICENSED WORK IS PROVIDED UNDER THE TERMS OF THIS ADAPTIVE PUBLIC LICENSE diff --git a/src/licensedcode/data/licenses/adapt-1.0.yml b/src/licensedcode/data/licenses/adapt-1.0.yml deleted file mode 100644 index f3e2ef2197f..00000000000 --- a/src/licensedcode/data/licenses/adapt-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: adapt-1.0 -short_name: APL 1.0 -name: Adaptive Public License -category: Copyleft -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/apl1.0.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: APL-1.0 -osi_license_key: APL-1.0 -text_urls: - - http://www.opensource.org/licenses/apl1.0.php -osi_url: http://www.opensource.org/licenses/apl1.0.php -other_urls: - - http://www.opensource.org/licenses/APL-1.0 - - https://opensource.org/licenses/APL-1.0 diff --git a/src/licensedcode/data/licenses/adaptec-downloadable.LICENSE b/src/licensedcode/data/licenses/adaptec-downloadable.LICENSE index b1542491974..9c818ecbcc1 100644 --- a/src/licensedcode/data/licenses/adaptec-downloadable.LICENSE +++ b/src/licensedcode/data/licenses/adaptec-downloadable.LICENSE @@ -1,3 +1,15 @@ +--- +key: adaptec-downloadable +short_name: Adaptec Downloadable Software License +name: Adaptec Downloadable Software License +category: Proprietary Free +owner: Adaptec +homepage_url: https://github.com/gooselinux/aic94xx-firmware/blob/master/LICENSE.aic94xx +spdx_license_key: LicenseRef-scancode-adaptec-downloadable +other_urls: + - https://lists.fedoraproject.org/pipermail/scm-commits/2010-March/408246.html +--- + ADAPTEC, INC. DOWNLOADABLE SOFTWARE LICENSE Directions to Obtain Your File: Please read the downloadable software license and answer the required question below. diff --git a/src/licensedcode/data/licenses/adaptec-downloadable.yml b/src/licensedcode/data/licenses/adaptec-downloadable.yml deleted file mode 100644 index 011b22b4157..00000000000 --- a/src/licensedcode/data/licenses/adaptec-downloadable.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: adaptec-downloadable -short_name: Adaptec Downloadable Software License -name: Adaptec Downloadable Software License -category: Proprietary Free -owner: Adaptec -homepage_url: https://github.com/gooselinux/aic94xx-firmware/blob/master/LICENSE.aic94xx -spdx_license_key: LicenseRef-scancode-adaptec-downloadable -other_urls: - - https://lists.fedoraproject.org/pipermail/scm-commits/2010-March/408246.html diff --git a/src/licensedcode/data/licenses/adaptec-eula.LICENSE b/src/licensedcode/data/licenses/adaptec-eula.LICENSE index ccf2fa64d23..b83349e3b57 100644 --- a/src/licensedcode/data/licenses/adaptec-eula.LICENSE +++ b/src/licensedcode/data/licenses/adaptec-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: adaptec-eula +short_name: Adaptec EULA +name: Adaptec EULA +category: Proprietary Free +owner: Adaptec +homepage_url: https://www.adaptec.com/en-us/support/_eula/license.php +spdx_license_key: LicenseRef-scancode-adaptec-eula +--- + PMC-Sierra Inc. Adaptec by PMC Downloadable Files: diff --git a/src/licensedcode/data/licenses/adaptec-eula.yml b/src/licensedcode/data/licenses/adaptec-eula.yml deleted file mode 100644 index a89f9c07ab4..00000000000 --- a/src/licensedcode/data/licenses/adaptec-eula.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: adaptec-eula -short_name: Adaptec EULA -name: Adaptec EULA -category: Proprietary Free -owner: Adaptec -homepage_url: https://www.adaptec.com/en-us/support/_eula/license.php -spdx_license_key: LicenseRef-scancode-adaptec-eula diff --git a/src/licensedcode/data/licenses/addthis-mobile-sdk-1.0.LICENSE b/src/licensedcode/data/licenses/addthis-mobile-sdk-1.0.LICENSE index 42a9afb3852..be40656f78f 100644 --- a/src/licensedcode/data/licenses/addthis-mobile-sdk-1.0.LICENSE +++ b/src/licensedcode/data/licenses/addthis-mobile-sdk-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: addthis-mobile-sdk-1.0 +short_name: AddThis Mobile Application SDK License 1.0 +name: AddThis Mobile Application SDK License 1.0 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.addthis.com/appsdk-license-agreement#.VvMVkRIrJZ1 +spdx_license_key: LicenseRef-scancode-addthis-mobile-sdk-1.0 +other_urls: + - http://www.addthis.com/about +minimum_coverage: 80 +ignorable_urls: + - http://www.addthis.com/tos +ignorable_emails: + - SUPPORT@ADDTHIS.COM +--- + License Agreement ADDTHIS MOBILE APPLICATION SDK LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/addthis-mobile-sdk-1.0.yml b/src/licensedcode/data/licenses/addthis-mobile-sdk-1.0.yml deleted file mode 100644 index 54f850d452a..00000000000 --- a/src/licensedcode/data/licenses/addthis-mobile-sdk-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: addthis-mobile-sdk-1.0 -short_name: AddThis Mobile Application SDK License 1.0 -name: AddThis Mobile Application SDK License 1.0 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://www.addthis.com/appsdk-license-agreement#.VvMVkRIrJZ1 -spdx_license_key: LicenseRef-scancode-addthis-mobile-sdk-1.0 -other_urls: - - http://www.addthis.com/about -minimum_coverage: 80 -ignorable_urls: - - http://www.addthis.com/tos -ignorable_emails: - - SUPPORT@ADDTHIS.COM diff --git a/src/licensedcode/data/licenses/adi-bsd.LICENSE b/src/licensedcode/data/licenses/adi-bsd.LICENSE index ad117a48e34..b0474785f9b 100644 --- a/src/licensedcode/data/licenses/adi-bsd.LICENSE +++ b/src/licensedcode/data/licenses/adi-bsd.LICENSE @@ -1,3 +1,25 @@ +--- +key: adi-bsd +short_name: ADI BSD +name: ADI BSD License +category: Permissive +owner: Analog Devices +homepage_url: https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd +notes: | + the home page contains these comments This is a slightly modified version + of the three clause BSD license. It adds a clause to explicitly state the + patent protection that this license provides (which is none). The ADI BSD + License is similar to the Clear BSD License, which the Free Software + Foundation indicates is compatible with both GPLv2 and GPLv3. If you have + any questions about license compatibility - consult your nearest lawyer. + Before incorporating code licensed under the ADI BSD license into projects + which you are going to ship in a end product, you must ensure that you have + the patent rights to do. +spdx_license_key: LicenseRef-scancode-adi-bsd +text_urls: + - https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/adi-bsd.yml b/src/licensedcode/data/licenses/adi-bsd.yml deleted file mode 100644 index 8a99982c4cb..00000000000 --- a/src/licensedcode/data/licenses/adi-bsd.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: adi-bsd -short_name: ADI BSD -name: ADI BSD License -category: Permissive -owner: Analog Devices -homepage_url: https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd -notes: | - the home page contains these comments This is a slightly modified version - of the three clause BSD license. It adds a clause to explicitly state the - patent protection that this license provides (which is none). The ADI BSD - License is similar to the Clear BSD License, which the Free Software - Foundation indicates is compatible with both GPLv2 and GPLv3. If you have - any questions about license compatibility - consult your nearest lawyer. - Before incorporating code licensed under the ADI BSD license into projects - which you are going to ship in a end product, you must ensure that you have - the patent rights to do. -spdx_license_key: LicenseRef-scancode-adi-bsd -text_urls: - - https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd diff --git a/src/licensedcode/data/licenses/adobe-acrobat-reader-eula.LICENSE b/src/licensedcode/data/licenses/adobe-acrobat-reader-eula.LICENSE index c347a246a1f..86e5f3f33fe 100644 --- a/src/licensedcode/data/licenses/adobe-acrobat-reader-eula.LICENSE +++ b/src/licensedcode/data/licenses/adobe-acrobat-reader-eula.LICENSE @@ -1,3 +1,16 @@ +--- +key: adobe-acrobat-reader-eula +short_name: Adobe Acrobat Reader EULA +name: Adobe Acrobat Reader EULA +category: Proprietary Free +owner: Adobe Systems +spdx_license_key: LicenseRef-scancode-adobe-acrobat-reader-eula +other_urls: + - http://www.adobe.com/products/reader/distribution.html +ignorable_urls: + - http://www.adobe.com/ +--- + Adobe Acrobat Reader EULA ADOBE diff --git a/src/licensedcode/data/licenses/adobe-acrobat-reader-eula.yml b/src/licensedcode/data/licenses/adobe-acrobat-reader-eula.yml deleted file mode 100644 index f4120163d91..00000000000 --- a/src/licensedcode/data/licenses/adobe-acrobat-reader-eula.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: adobe-acrobat-reader-eula -short_name: Adobe Acrobat Reader EULA -name: Adobe Acrobat Reader EULA -category: Proprietary Free -owner: Adobe Systems -spdx_license_key: LicenseRef-scancode-adobe-acrobat-reader-eula -other_urls: - - http://www.adobe.com/products/reader/distribution.html -ignorable_urls: - - http://www.adobe.com/ diff --git a/src/licensedcode/data/licenses/adobe-air-sdk-2014.LICENSE b/src/licensedcode/data/licenses/adobe-air-sdk-2014.LICENSE index 16bc552109e..9b964c56fb9 100644 --- a/src/licensedcode/data/licenses/adobe-air-sdk-2014.LICENSE +++ b/src/licensedcode/data/licenses/adobe-air-sdk-2014.LICENSE @@ -1,3 +1,22 @@ +--- +key: adobe-air-sdk-2014 +short_name: Adobe Air SDK EULA - 2014 +name: Adobe Air SDK EULA - 2014 +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://www.adobe.com/products/air/sdk-eula.html +spdx_license_key: LicenseRef-scancode-adobe-air-sdk-2014 +other_urls: + - www.adobe.com/go/redistributeairsdk + - http://www.adobe.com/products/air/sdk-agreement.html +ignorable_urls: + - http://www.adobe.com/go/air_developer_privacy + - http://www.adobe.com/go/redistributeairsdk + - http://www.adobe.com/go/thirdparty + - http://www.adobe.com/products/air/crosspromotion-program-agreement.html + - http://www.mpegla.com/ +--- + Adobe AIR SDK - Warranty disclaimer and license agreement ADOBE SYSTEMS INCORPORATED SDK LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/adobe-air-sdk-2014.yml b/src/licensedcode/data/licenses/adobe-air-sdk-2014.yml deleted file mode 100644 index faa9641a7ee..00000000000 --- a/src/licensedcode/data/licenses/adobe-air-sdk-2014.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: adobe-air-sdk-2014 -short_name: Adobe Air SDK EULA - 2014 -name: Adobe Air SDK EULA - 2014 -category: Proprietary Free -owner: Adobe Systems -homepage_url: http://www.adobe.com/products/air/sdk-eula.html -spdx_license_key: LicenseRef-scancode-adobe-air-sdk-2014 -other_urls: - - www.adobe.com/go/redistributeairsdk - - http://www.adobe.com/products/air/sdk-agreement.html -ignorable_urls: - - http://www.adobe.com/go/air_developer_privacy - - http://www.adobe.com/go/redistributeairsdk - - http://www.adobe.com/go/thirdparty - - http://www.adobe.com/products/air/crosspromotion-program-agreement.html - - http://www.mpegla.com/ diff --git a/src/licensedcode/data/licenses/adobe-air-sdk.LICENSE b/src/licensedcode/data/licenses/adobe-air-sdk.LICENSE index 54e799d1d5b..2a6026a29fc 100644 --- a/src/licensedcode/data/licenses/adobe-air-sdk.LICENSE +++ b/src/licensedcode/data/licenses/adobe-air-sdk.LICENSE @@ -1,3 +1,21 @@ +--- +key: adobe-air-sdk +short_name: Adobe AIR SDK EULA - 2008 +name: Adobe AIR SDK EULA - 2008 +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://www.adobe.com/products/eulas/ +spdx_license_key: LicenseRef-scancode-adobe-air-sdk +faq_url: http://www.adobe.com/products/eulas/ +other_urls: + - http://www.adobe.com/products/eulas/ +ignorable_urls: + - http://www.adobe.com/go/redistributeairsdk + - http://www.adobe.com/go/thirdparty + - http://www.adobe.com/products/eulas/ + - http://www.mpegla.com/ +--- + Adobe AIR SDK License http://www.adobe.com/products/eulas/ diff --git a/src/licensedcode/data/licenses/adobe-air-sdk.yml b/src/licensedcode/data/licenses/adobe-air-sdk.yml deleted file mode 100644 index cfd383a143d..00000000000 --- a/src/licensedcode/data/licenses/adobe-air-sdk.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: adobe-air-sdk -short_name: Adobe AIR SDK EULA - 2008 -name: Adobe AIR SDK EULA - 2008 -category: Proprietary Free -owner: Adobe Systems -homepage_url: http://www.adobe.com/products/eulas/ -spdx_license_key: LicenseRef-scancode-adobe-air-sdk -faq_url: http://www.adobe.com/products/eulas/ -other_urls: - - http://www.adobe.com/products/eulas/ -ignorable_urls: - - http://www.adobe.com/go/redistributeairsdk - - http://www.adobe.com/go/thirdparty - - http://www.adobe.com/products/eulas/ - - http://www.mpegla.com/ diff --git a/src/licensedcode/data/licenses/adobe-color-profile-bundling.LICENSE b/src/licensedcode/data/licenses/adobe-color-profile-bundling.LICENSE index 5fd55f1ad5e..4b072d6bae1 100644 --- a/src/licensedcode/data/licenses/adobe-color-profile-bundling.LICENSE +++ b/src/licensedcode/data/licenses/adobe-color-profile-bundling.LICENSE @@ -1,3 +1,16 @@ +--- +key: adobe-color-profile-bundling +short_name: Adobe Color Profile Bundling agreement +name: Adobe Color Profile Bundling agreement +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_dist.html +spdx_license_key: LicenseRef-scancode-adobe-color-profile-bundling +ignorable_urls: + - http://partners.adobe.com/ + - http://www.adobe.com/ +--- + ADOBE SYSTEMS INCORPORATED COLOR PROFILE BUNDLING AGREEMENT NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. diff --git a/src/licensedcode/data/licenses/adobe-color-profile-bundling.yml b/src/licensedcode/data/licenses/adobe-color-profile-bundling.yml deleted file mode 100644 index fb9d7ca775b..00000000000 --- a/src/licensedcode/data/licenses/adobe-color-profile-bundling.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: adobe-color-profile-bundling -short_name: Adobe Color Profile Bundling agreement -name: Adobe Color Profile Bundling agreement -category: Proprietary Free -owner: Adobe Systems -homepage_url: https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_dist.html -spdx_license_key: LicenseRef-scancode-adobe-color-profile-bundling -ignorable_urls: - - http://partners.adobe.com/ - - http://www.adobe.com/ diff --git a/src/licensedcode/data/licenses/adobe-color-profile-license.LICENSE b/src/licensedcode/data/licenses/adobe-color-profile-license.LICENSE index bb02a885e36..9e1d05073dd 100644 --- a/src/licensedcode/data/licenses/adobe-color-profile-license.LICENSE +++ b/src/licensedcode/data/licenses/adobe-color-profile-license.LICENSE @@ -1,3 +1,13 @@ +--- +key: adobe-color-profile-license +short_name: Adobe Color Profile License agreement +name: Adobe Color Profile License agreement +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_end.html +spdx_license_key: LicenseRef-scancode-adobe-color-profile-license +--- + Color Profile License agreement NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTION OF THE SOFTWARE, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. diff --git a/src/licensedcode/data/licenses/adobe-color-profile-license.yml b/src/licensedcode/data/licenses/adobe-color-profile-license.yml deleted file mode 100644 index 9b8320b1d7c..00000000000 --- a/src/licensedcode/data/licenses/adobe-color-profile-license.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: adobe-color-profile-license -short_name: Adobe Color Profile License agreement -name: Adobe Color Profile License agreement -category: Proprietary Free -owner: Adobe Systems -homepage_url: https://www.adobe.com/support/downloads/iccprofiles/icc_eula_win_end.html -spdx_license_key: LicenseRef-scancode-adobe-color-profile-license diff --git a/src/licensedcode/data/licenses/adobe-dng-sdk.LICENSE b/src/licensedcode/data/licenses/adobe-dng-sdk.LICENSE index a1e177cad05..4d09a2b7de7 100644 --- a/src/licensedcode/data/licenses/adobe-dng-sdk.LICENSE +++ b/src/licensedcode/data/licenses/adobe-dng-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: adobe-dng-sdk +short_name: Adobe DNG SDK License Agreement +name: Adobe DNG SDK License Agreement +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://www.adobe.com/support/downloads/dng/dng_sdk.html +spdx_license_key: LicenseRef-scancode-adobe-dng-sdk +text_urls: + - https://www.adobe.com/support/downloads/dng/dng_sdk_eula_mac.html +ignorable_urls: + - http://www.adobe.com/ + - http://www.adobe.com/products/dng/license.html +--- + DNG SDK License Agreement NOTICE TO USER: diff --git a/src/licensedcode/data/licenses/adobe-dng-sdk.yml b/src/licensedcode/data/licenses/adobe-dng-sdk.yml deleted file mode 100644 index a3e59f52e16..00000000000 --- a/src/licensedcode/data/licenses/adobe-dng-sdk.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: adobe-dng-sdk -short_name: Adobe DNG SDK License Agreement -name: Adobe DNG SDK License Agreement -category: Proprietary Free -owner: Adobe Systems -homepage_url: https://www.adobe.com/support/downloads/dng/dng_sdk.html -spdx_license_key: LicenseRef-scancode-adobe-dng-sdk -text_urls: - - https://www.adobe.com/support/downloads/dng/dng_sdk_eula_mac.html -ignorable_urls: - - http://www.adobe.com/ - - http://www.adobe.com/products/dng/license.html diff --git a/src/licensedcode/data/licenses/adobe-dng-spec-patent.LICENSE b/src/licensedcode/data/licenses/adobe-dng-spec-patent.LICENSE index c2a82249c62..6548614b250 100644 --- a/src/licensedcode/data/licenses/adobe-dng-spec-patent.LICENSE +++ b/src/licensedcode/data/licenses/adobe-dng-spec-patent.LICENSE @@ -1,3 +1,16 @@ +--- +key: adobe-dng-spec-patent +short_name: Adobe DNG Specification patent license +name: Adobe Digital Negative (DNG) Specification patent license +category: Patent License +owner: Adobe Systems +homepage_url: https://helpx.adobe.com/camera-raw/digital-negative.html#dng +spdx_license_key: LicenseRef-scancode-adobe-dng-spec-patent +other_urls: + - https://www.adobe.com/support/downloads/dng/dng_sdk_eula_win.html + - https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/PATENTS +--- + DNG Specification patent license Digital Negative (DNG) Specification patent license diff --git a/src/licensedcode/data/licenses/adobe-dng-spec-patent.yml b/src/licensedcode/data/licenses/adobe-dng-spec-patent.yml deleted file mode 100644 index d8b8a3eb5a3..00000000000 --- a/src/licensedcode/data/licenses/adobe-dng-spec-patent.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: adobe-dng-spec-patent -short_name: Adobe DNG Specification patent license -name: Adobe Digital Negative (DNG) Specification patent license -category: Patent License -owner: Adobe Systems -homepage_url: https://helpx.adobe.com/camera-raw/digital-negative.html#dng -spdx_license_key: LicenseRef-scancode-adobe-dng-spec-patent -other_urls: - - https://www.adobe.com/support/downloads/dng/dng_sdk_eula_win.html - - https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/PATENTS diff --git a/src/licensedcode/data/licenses/adobe-eula.LICENSE b/src/licensedcode/data/licenses/adobe-eula.LICENSE index ec436608475..eac01aa011b 100644 --- a/src/licensedcode/data/licenses/adobe-eula.LICENSE +++ b/src/licensedcode/data/licenses/adobe-eula.LICENSE @@ -1,3 +1,19 @@ +--- +key: adobe-eula +short_name: Adobe EULA +name: Adobe End User License Agreement +category: Commercial +owner: Adobe Systems +homepage_url: http://www.adobe.com/products/eulas/ +notes: | + This is a generic license for a large number of Adobe EULAs that are very + long and proprietary. +spdx_license_key: LicenseRef-scancode-adobe-eula +minimum_coverage: 70 +ignorable_urls: + - http://www.adobe.com/products/eulas/ +--- + Patents pending in the United States and other countries. Adobe and Flash are either trademarks or registered trademarks in the United States and/or other countries. diff --git a/src/licensedcode/data/licenses/adobe-eula.yml b/src/licensedcode/data/licenses/adobe-eula.yml deleted file mode 100644 index 44c78c18c15..00000000000 --- a/src/licensedcode/data/licenses/adobe-eula.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: adobe-eula -short_name: Adobe EULA -name: Adobe End User License Agreement -category: Commercial -owner: Adobe Systems -homepage_url: http://www.adobe.com/products/eulas/ -notes: | - This is a generic license for a large number of Adobe EULAs that are very - long and proprietary. -spdx_license_key: LicenseRef-scancode-adobe-eula -minimum_coverage: 70 -ignorable_urls: - - http://www.adobe.com/products/eulas/ diff --git a/src/licensedcode/data/licenses/adobe-flash-player-eula-21.0.LICENSE b/src/licensedcode/data/licenses/adobe-flash-player-eula-21.0.LICENSE index a4ae0b643e9..ce7fb3754b3 100644 --- a/src/licensedcode/data/licenses/adobe-flash-player-eula-21.0.LICENSE +++ b/src/licensedcode/data/licenses/adobe-flash-player-eula-21.0.LICENSE @@ -1,3 +1,32 @@ +--- +key: adobe-flash-player-eula-21.0 +short_name: Adobe Flash Player EULA 21.0 +name: Adobe Flash Player EULA 21.0 +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://wwwimages.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Flash_Player_21_0.pdf +spdx_license_key: LicenseRef-scancode-adobe-flash-player-eula-21.0 +ignorable_urls: + - http://www.adobe.com/ + - http://www.adobe.com/go/RTMFP + - http://www.adobe.com/go/aatl + - http://www.adobe.com/go/acrobat_distribute + - http://www.adobe.com/go/air_update_details + - http://www.adobe.com/go/flashplayer_security + - http://www.adobe.com/go/licensing + - http://www.adobe.com/go/mpegla + - http://www.adobe.com/go/partners_cds + - http://www.adobe.com/go/privacy + - http://www.adobe.com/go/protected_content + - http://www.adobe.com/go/readerextensions + - http://www.adobe.com/go/rikla_program + - http://www.adobe.com/go/runtime_mobile_EULA + - http://www.adobe.com/go/settingsmanager + - http://www.adobe.com/go/terms + - http://www.adobe.com/go/thirdparty + - http://www.adobe.com/go/update_details_url +--- + ADOBE Personal Computer Software License Agreement diff --git a/src/licensedcode/data/licenses/adobe-flash-player-eula-21.0.yml b/src/licensedcode/data/licenses/adobe-flash-player-eula-21.0.yml deleted file mode 100644 index 9277f3f3f51..00000000000 --- a/src/licensedcode/data/licenses/adobe-flash-player-eula-21.0.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: adobe-flash-player-eula-21.0 -short_name: Adobe Flash Player EULA 21.0 -name: Adobe Flash Player EULA 21.0 -category: Proprietary Free -owner: Adobe Systems -homepage_url: http://wwwimages.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Flash_Player_21_0.pdf -spdx_license_key: LicenseRef-scancode-adobe-flash-player-eula-21.0 -ignorable_urls: - - http://www.adobe.com/ - - http://www.adobe.com/go/RTMFP - - http://www.adobe.com/go/aatl - - http://www.adobe.com/go/acrobat_distribute - - http://www.adobe.com/go/air_update_details - - http://www.adobe.com/go/flashplayer_security - - http://www.adobe.com/go/licensing - - http://www.adobe.com/go/mpegla - - http://www.adobe.com/go/partners_cds - - http://www.adobe.com/go/privacy - - http://www.adobe.com/go/protected_content - - http://www.adobe.com/go/readerextensions - - http://www.adobe.com/go/rikla_program - - http://www.adobe.com/go/runtime_mobile_EULA - - http://www.adobe.com/go/settingsmanager - - http://www.adobe.com/go/terms - - http://www.adobe.com/go/thirdparty - - http://www.adobe.com/go/update_details_url diff --git a/src/licensedcode/data/licenses/adobe-flex-4-sdk.LICENSE b/src/licensedcode/data/licenses/adobe-flex-4-sdk.LICENSE index 0344028d6ec..20317d4484c 100644 --- a/src/licensedcode/data/licenses/adobe-flex-4-sdk.LICENSE +++ b/src/licensedcode/data/licenses/adobe-flex-4-sdk.LICENSE @@ -1,3 +1,20 @@ +--- +key: adobe-flex-4-sdk +short_name: Adobe Flex 4 SDK SLA +name: Adobe Flex 4 SDK Software License Agreement +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.0.pdf +spdx_license_key: LicenseRef-scancode-adobe-flex-4-sdk +text_urls: + - https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.5.pdf +ignorable_urls: + - http://opensource.adobe.com/wiki/display/flexsdk/Legal+Stuff + - http://www.adobe.com/go/redistributeairsdk + - http://www.adobe.com/go/thirdparty + - http://www.mpegla.com/ +--- + ADOBE SYSTEMS INCORPORATED SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/adobe-flex-4-sdk.yml b/src/licensedcode/data/licenses/adobe-flex-4-sdk.yml deleted file mode 100644 index 203555aa468..00000000000 --- a/src/licensedcode/data/licenses/adobe-flex-4-sdk.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: adobe-flex-4-sdk -short_name: Adobe Flex 4 SDK SLA -name: Adobe Flex 4 SDK Software License Agreement -category: Proprietary Free -owner: Adobe Systems -homepage_url: https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.0.pdf -spdx_license_key: LicenseRef-scancode-adobe-flex-4-sdk -text_urls: - - https://wwwimages2.adobe.com/content/dam/acom/en/legal/licenses-terms/pdf/Adobe%20Flex%20SDK_4.5.pdf -ignorable_urls: - - http://opensource.adobe.com/wiki/display/flexsdk/Legal+Stuff - - http://www.adobe.com/go/redistributeairsdk - - http://www.adobe.com/go/thirdparty - - http://www.mpegla.com/ diff --git a/src/licensedcode/data/licenses/adobe-flex-sdk.LICENSE b/src/licensedcode/data/licenses/adobe-flex-sdk.LICENSE index f805954a242..b3e02736984 100644 --- a/src/licensedcode/data/licenses/adobe-flex-sdk.LICENSE +++ b/src/licensedcode/data/licenses/adobe-flex-sdk.LICENSE @@ -1,3 +1,15 @@ +--- +key: adobe-flex-sdk +short_name: Adobe Flex SDK SLA +name: Adobe Flex SDK SLA +category: Proprietary Free +owner: Adobe Systems +homepage_url: https://raw.githubusercontent.com/nginadfoundation/flexsdk/master/license-adobesdk.htm +spdx_license_key: LicenseRef-scancode-adobe-flex-sdk +ignorable_urls: + - http://www.adobe.com/go/thirdparty +--- + ADOBE SYSTEMS INCORPORATED ADOBE FLEX SOFTWARE DEVELOPMENT KIT Software License Agreement. diff --git a/src/licensedcode/data/licenses/adobe-flex-sdk.yml b/src/licensedcode/data/licenses/adobe-flex-sdk.yml deleted file mode 100644 index 95a2f606383..00000000000 --- a/src/licensedcode/data/licenses/adobe-flex-sdk.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: adobe-flex-sdk -short_name: Adobe Flex SDK SLA -name: Adobe Flex SDK SLA -category: Proprietary Free -owner: Adobe Systems -homepage_url: https://raw.githubusercontent.com/nginadfoundation/flexsdk/master/license-adobesdk.htm -spdx_license_key: LicenseRef-scancode-adobe-flex-sdk -ignorable_urls: - - http://www.adobe.com/go/thirdparty diff --git a/src/licensedcode/data/licenses/adobe-general-tou.LICENSE b/src/licensedcode/data/licenses/adobe-general-tou.LICENSE index 735bcd1740e..128e6dc941a 100644 --- a/src/licensedcode/data/licenses/adobe-general-tou.LICENSE +++ b/src/licensedcode/data/licenses/adobe-general-tou.LICENSE @@ -1,3 +1,27 @@ +--- +key: adobe-general-tou +short_name: Adobe General TOU +name: Adobe General Terms of Use +category: Commercial +owner: Adobe Systems +homepage_url: http://www.adobe.com/legal/general-terms.html +spdx_license_key: LicenseRef-scancode-adobe-general-tou +text_urls: + - http://www.adobe.com/legal/general-terms.html +ignorable_urls: + - http://www.adobe.com/go/activation + - http://www.adobe.com/go/edu_purchasing + - http://www.adobe.com/go/font_licensing + - http://www.adobe.com/go/licensing + - http://www.adobe.com/go/mpegla + - http://www.adobe.com/go/privacy + - http://www.adobe.com/go/restricted_fonts + - http://www.adobe.com/go/thirdparty + - http://www.chillingeffects.org/ +ignorable_emails: + - copyright@adobe.com +--- + Adobe General Terms of Use Last updated June 18, 2014. Replaces the October 16, 2012 version in its entirety. diff --git a/src/licensedcode/data/licenses/adobe-general-tou.yml b/src/licensedcode/data/licenses/adobe-general-tou.yml deleted file mode 100644 index 125e690dadc..00000000000 --- a/src/licensedcode/data/licenses/adobe-general-tou.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: adobe-general-tou -short_name: Adobe General TOU -name: Adobe General Terms of Use -category: Commercial -owner: Adobe Systems -homepage_url: http://www.adobe.com/legal/general-terms.html -spdx_license_key: LicenseRef-scancode-adobe-general-tou -text_urls: - - http://www.adobe.com/legal/general-terms.html -ignorable_urls: - - http://www.adobe.com/go/activation - - http://www.adobe.com/go/edu_purchasing - - http://www.adobe.com/go/font_licensing - - http://www.adobe.com/go/licensing - - http://www.adobe.com/go/mpegla - - http://www.adobe.com/go/privacy - - http://www.adobe.com/go/restricted_fonts - - http://www.adobe.com/go/thirdparty - - http://www.chillingeffects.org/ -ignorable_emails: - - copyright@adobe.com diff --git a/src/licensedcode/data/licenses/adobe-glyph.LICENSE b/src/licensedcode/data/licenses/adobe-glyph.LICENSE index 6d8cc6a1d74..981323d225c 100644 --- a/src/licensedcode/data/licenses/adobe-glyph.LICENSE +++ b/src/licensedcode/data/licenses/adobe-glyph.LICENSE @@ -1,3 +1,13 @@ +--- +key: adobe-glyph +short_name: Adobe Glyph License +name: Adobe Glyph License +category: Permissive +owner: Adobe Systems +homepage_url: https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph +spdx_license_key: Adobe-Glyph +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this documentation file to use, copy, publish, distribute, sublicense, and/or sell copies of the documentation, and to permit others to do the same, provided that: - No modification, editing or other alteration of this document is allowed; and - The above copyright notice and this permission notice shall be included in all copies of the documentation. diff --git a/src/licensedcode/data/licenses/adobe-glyph.yml b/src/licensedcode/data/licenses/adobe-glyph.yml deleted file mode 100644 index b368905d797..00000000000 --- a/src/licensedcode/data/licenses/adobe-glyph.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: adobe-glyph -short_name: Adobe Glyph License -name: Adobe Glyph License -category: Permissive -owner: Adobe Systems -homepage_url: https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph -spdx_license_key: Adobe-Glyph diff --git a/src/licensedcode/data/licenses/adobe-indesign-sdk.LICENSE b/src/licensedcode/data/licenses/adobe-indesign-sdk.LICENSE index 595a2804921..33c3cb08854 100644 --- a/src/licensedcode/data/licenses/adobe-indesign-sdk.LICENSE +++ b/src/licensedcode/data/licenses/adobe-indesign-sdk.LICENSE @@ -1,3 +1,16 @@ +--- +key: adobe-indesign-sdk +short_name: Adobe InDesign SDK License +name: Adobe SDK License for INDESIGN, INDESIGN SERVER and INCOPY Software +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://www.adobe.com/devnet/indesign/sdk/eula_cs55.html +spdx_license_key: LicenseRef-scancode-adobe-indesign-sdk +ignorable_urls: + - http://support.adobe.com/devsup/devsup.nsf/docs/50093.htm + - http://www.adobe.com/go/thirdparty +--- + ADOBE SOFTWARE DEVELOPMENT KIT LICENSE FOR INDESIGN, INDESIGN SERVER AND INCOPY SOFTWARE. NOTICE TO USER: THIS IS A LICENSE BETWEEN YOU AND ADOBE. BY INDICATING YOUR ACCEPTANCE BELOW, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS LICENSE. THIS LICENSE ACCOMPANIES THE SOFTWARE DEVELOPMENT KIT(S) FOR ADOBE INDESIGN, INDESIGN SERVER AND/OR INCOPY SOFTWARE AND RELATED EXPLANATORY MATERIALS (COLLECTIVELY, THE "SDK") AND INCLUDES ANY UPGRADES, MODIFIED VERSIONS, UPDATES, ADDITIONS, AND COPIES OF THE SDK LICENSED TO YOU BY ADOBE. diff --git a/src/licensedcode/data/licenses/adobe-indesign-sdk.yml b/src/licensedcode/data/licenses/adobe-indesign-sdk.yml deleted file mode 100644 index 26ff749627c..00000000000 --- a/src/licensedcode/data/licenses/adobe-indesign-sdk.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: adobe-indesign-sdk -short_name: Adobe InDesign SDK License -name: Adobe SDK License for INDESIGN, INDESIGN SERVER and INCOPY Software -category: Proprietary Free -owner: Adobe Systems -homepage_url: http://www.adobe.com/devnet/indesign/sdk/eula_cs55.html -spdx_license_key: LicenseRef-scancode-adobe-indesign-sdk -ignorable_urls: - - http://support.adobe.com/devsup/devsup.nsf/docs/50093.htm - - http://www.adobe.com/go/thirdparty diff --git a/src/licensedcode/data/licenses/adobe-postscript.LICENSE b/src/licensedcode/data/licenses/adobe-postscript.LICENSE index c50a2dd656e..66f1d1498ba 100644 --- a/src/licensedcode/data/licenses/adobe-postscript.LICENSE +++ b/src/licensedcode/data/licenses/adobe-postscript.LICENSE @@ -1,3 +1,13 @@ +--- +key: adobe-postscript +short_name: Adobe PostScript License +name: Adobe PostScript License +category: Proprietary Free +owner: Adobe Systems +spdx_license_key: LicenseRef-scancode-adobe-postscript +minimum_coverage: 25 +--- + Patents Pending NOTICE: All information contained herein is the property @@ -10,4 +20,4 @@ way from its original form. PostScript and Display PostScript are trademarks of Adobe Systems Incorporated which may be registered in -certain jurisdictions. +certain jurisdictions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/adobe-postscript.yml b/src/licensedcode/data/licenses/adobe-postscript.yml deleted file mode 100644 index 76490f4a072..00000000000 --- a/src/licensedcode/data/licenses/adobe-postscript.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: adobe-postscript -short_name: Adobe PostScript License -name: Adobe PostScript License -category: Proprietary Free -owner: Adobe Systems -spdx_license_key: LicenseRef-scancode-adobe-postscript -minimum_coverage: 25 diff --git a/src/licensedcode/data/licenses/adobe-scl.LICENSE b/src/licensedcode/data/licenses/adobe-scl.LICENSE index 5871e591b23..10c56385fe0 100644 --- a/src/licensedcode/data/licenses/adobe-scl.LICENSE +++ b/src/licensedcode/data/licenses/adobe-scl.LICENSE @@ -1,3 +1,17 @@ +--- +key: adobe-scl +short_name: Adobe Source Code License 2006 +name: Adobe Systems Incorporated Source Code License Agreement +category: Permissive +owner: Adobe Systems +homepage_url: http://fedoraproject.org/wiki/Licensing/AdobeLicense +spdx_license_key: Adobe-2006 +text_urls: + - http://fedoraproject.org/wiki/Licensing/AdobeLicense +other_urls: + - https://fedoraproject.org/wiki/Licensing/AdobeLicense +--- + Please read this Source Code License Agreement carefully before using the source code. diff --git a/src/licensedcode/data/licenses/adobe-scl.yml b/src/licensedcode/data/licenses/adobe-scl.yml deleted file mode 100644 index 8e9f8e97390..00000000000 --- a/src/licensedcode/data/licenses/adobe-scl.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: adobe-scl -short_name: Adobe Source Code License 2006 -name: Adobe Systems Incorporated Source Code License Agreement -category: Permissive -owner: Adobe Systems -homepage_url: http://fedoraproject.org/wiki/Licensing/AdobeLicense -spdx_license_key: Adobe-2006 -text_urls: - - http://fedoraproject.org/wiki/Licensing/AdobeLicense -other_urls: - - https://fedoraproject.org/wiki/Licensing/AdobeLicense diff --git a/src/licensedcode/data/licenses/adrian.LICENSE b/src/licensedcode/data/licenses/adrian.LICENSE index 1ca6372a9d2..e26e000b426 100644 --- a/src/licensedcode/data/licenses/adrian.LICENSE +++ b/src/licensedcode/data/licenses/adrian.LICENSE @@ -1,3 +1,16 @@ +--- +key: adrian +short_name: Andre Adrian DFS license +name: Andre Adrian DFS license +category: Permissive +owner: DFS Deutsche Flugsicherung +spdx_license_key: LicenseRef-scancode-adrian +text_urls: + - https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/blob/81c24738d5b62a5f092ce34ea06efab72eefbb9e/src/modules/echo-cancel/adrian-license.txt +other_urls: + - https://mailarchive.ietf.org/arch/msg/avt/6erDp7-srszwgBNbFxcD_zSFMS0/ +--- + You are allowed to use this source code in any open source or closed source software you want. You are allowed to use the algorithms for a hardware solution. You are allowed to modify the source code. diff --git a/src/licensedcode/data/licenses/adrian.yml b/src/licensedcode/data/licenses/adrian.yml deleted file mode 100644 index 402008fc4af..00000000000 --- a/src/licensedcode/data/licenses/adrian.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: adrian -short_name: Andre Adrian DFS license -name: Andre Adrian DFS license -category: Permissive -owner: DFS Deutsche Flugsicherung -spdx_license_key: LicenseRef-scancode-adrian -text_urls: - - https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/blob/81c24738d5b62a5f092ce34ea06efab72eefbb9e/src/modules/echo-cancel/adrian-license.txt -other_urls: - - https://mailarchive.ietf.org/arch/msg/avt/6erDp7-srszwgBNbFxcD_zSFMS0/ diff --git a/src/licensedcode/data/licenses/adsl.LICENSE b/src/licensedcode/data/licenses/adsl.LICENSE index b6397cc08b4..8c6d97fb928 100644 --- a/src/licensedcode/data/licenses/adsl.LICENSE +++ b/src/licensedcode/data/licenses/adsl.LICENSE @@ -1,3 +1,13 @@ +--- +key: adsl +short_name: Amazon Digital Services License +name: Amazon Digital Services License +category: Permissive +owner: Amazon Web Services +homepage_url: https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense +spdx_license_key: ADSL +--- + This software code is made available "AS IS" without warranties of any kind. You may copy, display, modify and redistribute the software code either by diff --git a/src/licensedcode/data/licenses/adsl.yml b/src/licensedcode/data/licenses/adsl.yml deleted file mode 100644 index a82720d538a..00000000000 --- a/src/licensedcode/data/licenses/adsl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: adsl -short_name: Amazon Digital Services License -name: Amazon Digital Services License -category: Permissive -owner: Amazon Web Services -homepage_url: https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense -spdx_license_key: ADSL diff --git a/src/licensedcode/data/licenses/aes-128-3.0.LICENSE b/src/licensedcode/data/licenses/aes-128-3.0.LICENSE index a555023dfe2..67fce66d67f 100644 --- a/src/licensedcode/data/licenses/aes-128-3.0.LICENSE +++ b/src/licensedcode/data/licenses/aes-128-3.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: aes-128-3.0 +short_name: AES-128 3.0 License +name: AES-128 v3.0 License +category: Public Domain +owner: Unspecified +spdx_license_key: LicenseRef-scancode-aes-128-3.0 +minimum_coverage: 90 +--- + All code contained in this distributed is placed in the public domain. ============================================================= Disclaimer: @@ -12,4 +22,4 @@ 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/licenses/aes-128-3.0.yml b/src/licensedcode/data/licenses/aes-128-3.0.yml deleted file mode 100644 index 451cf344365..00000000000 --- a/src/licensedcode/data/licenses/aes-128-3.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: aes-128-3.0 -short_name: AES-128 3.0 License -name: AES-128 v3.0 License -category: Public Domain -owner: Unspecified -spdx_license_key: LicenseRef-scancode-aes-128-3.0 -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/afl-1.1.LICENSE b/src/licensedcode/data/licenses/afl-1.1.LICENSE index 90d746d6b6e..cb86e81a39c 100644 --- a/src/licensedcode/data/licenses/afl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/afl-1.1.LICENSE @@ -1,3 +1,28 @@ +--- +key: afl-1.1 +short_name: AFL 1.1 +name: Academic Free License 1.1 +category: Permissive +owner: Lawrence Rosen +homepage_url: https://spdx.org/licenses/AFL-1.1 +notes: Per SPDX.org, this license has been superseded by later versions. +spdx_license_key: AFL-1.1 +text_urls: + - http://open2.mirrors-r-us.net/licenses/afl-1.1.txt + - http://opensource.linux-mirror.org/licenses/afl-1.1.txt + - http://spdx.org/licenses/AFL-1.1 + - http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt + - http://www.opensource.org/licenses/afl-1.1.txt +osi_url: http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt +other_urls: + - http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Academic Free License Version 1.1 diff --git a/src/licensedcode/data/licenses/afl-1.1.yml b/src/licensedcode/data/licenses/afl-1.1.yml deleted file mode 100644 index 395d18517b4..00000000000 --- a/src/licensedcode/data/licenses/afl-1.1.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: afl-1.1 -short_name: AFL 1.1 -name: Academic Free License 1.1 -category: Permissive -owner: Lawrence Rosen -homepage_url: https://spdx.org/licenses/AFL-1.1 -notes: Per SPDX.org, this license has been superseded by later versions. -spdx_license_key: AFL-1.1 -text_urls: - - http://open2.mirrors-r-us.net/licenses/afl-1.1.txt - - http://opensource.linux-mirror.org/licenses/afl-1.1.txt - - http://spdx.org/licenses/AFL-1.1 - - http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt - - http://www.opensource.org/licenses/afl-1.1.txt -osi_url: http://web.archive.org/web/20060924134536/http://www.opensource.org/licenses/afl-1.1.txt -other_urls: - - http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php - - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense -ignorable_copyrights: - - Copyright (c) 2002 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/licenses/afl-1.2.LICENSE b/src/licensedcode/data/licenses/afl-1.2.LICENSE index 203ed5bf00b..3b5b58d4e21 100644 --- a/src/licensedcode/data/licenses/afl-1.2.LICENSE +++ b/src/licensedcode/data/licenses/afl-1.2.LICENSE @@ -1,3 +1,27 @@ +--- +key: afl-1.2 +short_name: AFL 1.2 +name: Academic Free License 1.2 +category: Permissive +owner: Lawrence Rosen +homepage_url: https://spdx.org/licenses/AFL-1.2.html +notes: | + Per SPDX.org, this license has been superseded by later versions. This + license was OSI certified. +spdx_license_key: AFL-1.2 +text_urls: + - http://opensource-definition.org/licenses/afl-1.2.txt + - http://opensource.linux-mirror.org/licenses/afl-1.2.txt + - https://spdx.org/licenses/AFL-1.2.html +other_urls: + - http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Academic Free License Version 1.2 @@ -83,5 +107,4 @@ not to interfere with or be responsible for such uses by You. This license is Copyright (C) 2002 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written -permission of its copyright owner. - +permission of its copyright owner. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/afl-1.2.yml b/src/licensedcode/data/licenses/afl-1.2.yml deleted file mode 100644 index 6141dd5ab47..00000000000 --- a/src/licensedcode/data/licenses/afl-1.2.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: afl-1.2 -short_name: AFL 1.2 -name: Academic Free License 1.2 -category: Permissive -owner: Lawrence Rosen -homepage_url: https://spdx.org/licenses/AFL-1.2.html -notes: | - Per SPDX.org, this license has been superseded by later versions. This - license was OSI certified. -spdx_license_key: AFL-1.2 -text_urls: - - http://opensource-definition.org/licenses/afl-1.2.txt - - http://opensource.linux-mirror.org/licenses/afl-1.2.txt - - https://spdx.org/licenses/AFL-1.2.html -other_urls: - - http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php - - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense -ignorable_copyrights: - - Copyright (c) 2002 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/licenses/afl-2.0.LICENSE b/src/licensedcode/data/licenses/afl-2.0.LICENSE index 5dea3d315d2..fbe5037f9f2 100644 --- a/src/licensedcode/data/licenses/afl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/afl-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: afl-2.0 +short_name: AFL 2.0 +name: Academic Free License 2.0 +category: Permissive +owner: Lawrence Rosen +homepage_url: http://opensource.linux-mirror.org/licenses/afl-2.0.txt +notes: Per SPDX.org, this license was OSI certified. +spdx_license_key: AFL-2.0 +text_urls: + - http://flashlinux.org.uk/licenses/licenses/AFL-2.0.txt +osi_url: http://opensource-definition.org/licenses/afl-2.0.html +other_urls: + - http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense +--- + Academic Free License v. 2.0 diff --git a/src/licensedcode/data/licenses/afl-2.0.yml b/src/licensedcode/data/licenses/afl-2.0.yml deleted file mode 100644 index 08fad7b2e79..00000000000 --- a/src/licensedcode/data/licenses/afl-2.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: afl-2.0 -short_name: AFL 2.0 -name: Academic Free License 2.0 -category: Permissive -owner: Lawrence Rosen -homepage_url: http://opensource.linux-mirror.org/licenses/afl-2.0.txt -notes: Per SPDX.org, this license was OSI certified. -spdx_license_key: AFL-2.0 -text_urls: - - http://flashlinux.org.uk/licenses/licenses/AFL-2.0.txt -osi_url: http://opensource-definition.org/licenses/afl-2.0.html -other_urls: - - http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt - - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense diff --git a/src/licensedcode/data/licenses/afl-2.1.LICENSE b/src/licensedcode/data/licenses/afl-2.1.LICENSE index 1c7338de2f9..cd35b888164 100644 --- a/src/licensedcode/data/licenses/afl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/afl-2.1.LICENSE @@ -1,3 +1,25 @@ +--- +key: afl-2.1 +short_name: AFL 2.1 +name: Academic Free License 2.1 +category: Permissive +owner: Lawrence Rosen +homepage_url: http://www.rosenlaw.com/afl21.htm +notes: Per SPDX.org, this license was OSI certified. +spdx_license_key: AFL-2.1 +text_urls: + - http://opensource.linux-mirror.org/licenses/afl-2.1.txt + - http://web.archive.org/web/20060423052359/http://opensource.org/licenses/afl-2.1.php +osi_url: http://opensource.org/licenses/afl-2.1.php +faq_url: http://www.rosenlaw.com/afl21.htm +other_urls: + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Academic Free License v. 2.1 diff --git a/src/licensedcode/data/licenses/afl-2.1.yml b/src/licensedcode/data/licenses/afl-2.1.yml deleted file mode 100644 index 4d78d93aeaf..00000000000 --- a/src/licensedcode/data/licenses/afl-2.1.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: afl-2.1 -short_name: AFL 2.1 -name: Academic Free License 2.1 -category: Permissive -owner: Lawrence Rosen -homepage_url: http://www.rosenlaw.com/afl21.htm -notes: Per SPDX.org, this license was OSI certified. -spdx_license_key: AFL-2.1 -text_urls: - - http://opensource.linux-mirror.org/licenses/afl-2.1.txt - - http://web.archive.org/web/20060423052359/http://opensource.org/licenses/afl-2.1.php -osi_url: http://opensource.org/licenses/afl-2.1.php -faq_url: http://www.rosenlaw.com/afl21.htm -other_urls: - - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense -ignorable_copyrights: - - Copyright (c) 2003-2004 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/licenses/afl-3.0.LICENSE b/src/licensedcode/data/licenses/afl-3.0.LICENSE index 7d7665048a1..54c2f94ef7a 100644 --- a/src/licensedcode/data/licenses/afl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/afl-3.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: afl-3.0 +short_name: AFL 3.0 +name: Academic Free License 3.0 +category: Permissive +owner: Lawrence Rosen +homepage_url: http://opensource.org/licenses/afl-3.0.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: AFL-3.0 +osi_license_key: AFL-3.0 +text_urls: + - http://www.opensource.org/licenses/afl-3.0.php + - http://www.rosenlaw.com/AFL3.0.htm +osi_url: http://opensource.org/licenses/afl-3.0.php +faq_url: http://www.rosenlaw.com/OSL3.0-explained.pdf +other_urls: + - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense + - http://www.opensource.org/licenses/afl-3.0 + - https://opensource.org/licenses/afl-3.0 +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: Licensed under the Academic Free License version 3.0 diff --git a/src/licensedcode/data/licenses/afl-3.0.yml b/src/licensedcode/data/licenses/afl-3.0.yml deleted file mode 100644 index cd05cc1404a..00000000000 --- a/src/licensedcode/data/licenses/afl-3.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: afl-3.0 -short_name: AFL 3.0 -name: Academic Free License 3.0 -category: Permissive -owner: Lawrence Rosen -homepage_url: http://opensource.org/licenses/afl-3.0.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: AFL-3.0 -osi_license_key: AFL-3.0 -text_urls: - - http://www.opensource.org/licenses/afl-3.0.php - - http://www.rosenlaw.com/AFL3.0.htm -osi_url: http://opensource.org/licenses/afl-3.0.php -faq_url: http://www.rosenlaw.com/OSL3.0-explained.pdf -other_urls: - - http://www.gnu.org/licenses/license-list.html#AcademicFreeLicense - - http://www.opensource.org/licenses/afl-3.0 - - https://opensource.org/licenses/afl-3.0 -ignorable_copyrights: - - Copyright (c) 2005 Lawrence Rosen -ignorable_holders: - - Lawrence Rosen diff --git a/src/licensedcode/data/licenses/afmparse.LICENSE b/src/licensedcode/data/licenses/afmparse.LICENSE index 20b4615aa44..e657b367142 100644 --- a/src/licensedcode/data/licenses/afmparse.LICENSE +++ b/src/licensedcode/data/licenses/afmparse.LICENSE @@ -1,3 +1,13 @@ +--- +key: afmparse +short_name: afmparse License +name: afmparse License +category: Permissive +owner: Adobe Systems +homepage_url: https://fedoraproject.org/wiki/Licensing/Afmparse +spdx_license_key: Afmparse +--- + This file may be freely copied and redistributed as long as: 1) This entire notice continues to be included in the file, diff --git a/src/licensedcode/data/licenses/afmparse.yml b/src/licensedcode/data/licenses/afmparse.yml deleted file mode 100644 index bf850039362..00000000000 --- a/src/licensedcode/data/licenses/afmparse.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: afmparse -short_name: afmparse License -name: afmparse License -category: Permissive -owner: Adobe Systems -homepage_url: https://fedoraproject.org/wiki/Licensing/Afmparse -spdx_license_key: Afmparse diff --git a/src/licensedcode/data/licenses/afpl-8.0.LICENSE b/src/licensedcode/data/licenses/afpl-8.0.LICENSE index 43e1b609d85..f65959cf24b 100644 --- a/src/licensedcode/data/licenses/afpl-8.0.LICENSE +++ b/src/licensedcode/data/licenses/afpl-8.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: afpl-8.0 +short_name: Aladdin FPL v8 +name: Aladdin Free Public License v8 +category: Copyleft +owner: Aladdin Enterprises +homepage_url: http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm +notes: Per SPDX.org, this license was released 18 Nov 1999 +spdx_license_key: Aladdin +text_urls: + - http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm +ignorable_copyrights: + - Copyright (c) 1994, 1995, 1997, 1998, 1999 Aladdin Enterprises, Menlo Park, California, + U.S.A. +ignorable_holders: + - Aladdin Enterprises, Menlo Park, California, U.S.A. +--- + Aladdin Free Public License (Version 8, November 18, 1999) @@ -210,4 +228,4 @@ accordance with the terms of this License. If the unit or agency is other than DOD, the Program and its documentation are classified as "commercial computer software" and "commercial computer software documentation" respectively and, pursuant to FAR Section 12.212, the Government is acquiring the Program and its -documentation in accordance with the terms of this License. +documentation in accordance with the terms of this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/afpl-8.0.yml b/src/licensedcode/data/licenses/afpl-8.0.yml deleted file mode 100644 index 24da53998b0..00000000000 --- a/src/licensedcode/data/licenses/afpl-8.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: afpl-8.0 -short_name: Aladdin FPL v8 -name: Aladdin Free Public License v8 -category: Copyleft -owner: Aladdin Enterprises -homepage_url: http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm -notes: Per SPDX.org, this license was released 18 Nov 1999 -spdx_license_key: Aladdin -text_urls: - - http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm -ignorable_copyrights: - - Copyright (c) 1994, 1995, 1997, 1998, 1999 Aladdin Enterprises, Menlo Park, California, - U.S.A. -ignorable_holders: - - Aladdin Enterprises, Menlo Park, California, U.S.A. diff --git a/src/licensedcode/data/licenses/afpl-9.0.LICENSE b/src/licensedcode/data/licenses/afpl-9.0.LICENSE index 37de9af60fc..e4e4daaabb7 100644 --- a/src/licensedcode/data/licenses/afpl-9.0.LICENSE +++ b/src/licensedcode/data/licenses/afpl-9.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: afpl-9.0 +short_name: Aladdin FPL v9 +name: Aladdin Free Public License v9 +category: Copyleft +owner: Aladdin Enterprises +homepage_url: http://www.artifex.com/downloads/doc/Public.htm +spdx_license_key: LicenseRef-scancode-afpl-9.0 +text_urls: + - http://www.artifex.com/downloads/doc/Public.htm +ignorable_copyrights: + - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises, Menlo Park, California, + U.S.A. +ignorable_holders: + - Aladdin Enterprises, Menlo Park, California, U.S.A. +--- + Aladdin Free Public License (Version 9, September 18, 2000) @@ -225,4 +242,4 @@ accordance with the terms of this License. If the unit or agency is other than DOD, the Program and its documentation are classified as "commercial computer software" and "commercial computer software documentation" respectively and, pursuant to FAR Section 12.212, the Government is acquiring the Program and its -documentation in accordance with the terms of this License. +documentation in accordance with the terms of this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/afpl-9.0.yml b/src/licensedcode/data/licenses/afpl-9.0.yml deleted file mode 100644 index e95651feac6..00000000000 --- a/src/licensedcode/data/licenses/afpl-9.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: afpl-9.0 -short_name: Aladdin FPL v9 -name: Aladdin Free Public License v9 -category: Copyleft -owner: Aladdin Enterprises -homepage_url: http://www.artifex.com/downloads/doc/Public.htm -spdx_license_key: LicenseRef-scancode-afpl-9.0 -text_urls: - - http://www.artifex.com/downloads/doc/Public.htm -ignorable_copyrights: - - Copyright (c) 1994, 1995, 1997, 1998, 1999, 2000 Aladdin Enterprises, Menlo Park, California, - U.S.A. -ignorable_holders: - - Aladdin Enterprises, Menlo Park, California, U.S.A. diff --git a/src/licensedcode/data/licenses/agentxpp.LICENSE b/src/licensedcode/data/licenses/agentxpp.LICENSE index 141bbbdc6a8..7078dfcdca1 100644 --- a/src/licensedcode/data/licenses/agentxpp.LICENSE +++ b/src/licensedcode/data/licenses/agentxpp.LICENSE @@ -1,3 +1,15 @@ +--- +key: agentxpp +short_name: AgentX++ License Agreement +name: AgentX++ License Agreement +category: Commercial +owner: agentpp +homepage_url: https://agentpp.com/licenses/LICENSE_AgentX++.txt +spdx_license_key: LicenseRef-scancode-agentxpp +ignorable_urls: + - http://www.agentpp.com/ +--- + AGENTX++ LICENSE AGREEMENT ========================== diff --git a/src/licensedcode/data/licenses/agentxpp.yml b/src/licensedcode/data/licenses/agentxpp.yml deleted file mode 100644 index e6a09ac1144..00000000000 --- a/src/licensedcode/data/licenses/agentxpp.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: agentxpp -short_name: AgentX++ License Agreement -name: AgentX++ License Agreement -category: Commercial -owner: agentpp -homepage_url: https://agentpp.com/licenses/LICENSE_AgentX++.txt -spdx_license_key: LicenseRef-scancode-agentxpp -ignorable_urls: - - http://www.agentpp.com/ diff --git a/src/licensedcode/data/licenses/agere-bsd.LICENSE b/src/licensedcode/data/licenses/agere-bsd.LICENSE index ed14385a0ab..39f3b1df349 100644 --- a/src/licensedcode/data/licenses/agere-bsd.LICENSE +++ b/src/licensedcode/data/licenses/agere-bsd.LICENSE @@ -1,3 +1,32 @@ +--- +key: agere-bsd +short_name: Agere BSD +name: Agere Systems BSD Software license +category: Permissive +owner: LSI Corporation +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.agere +notes: | + commonly found in Linux The driver is coverred by the following copyright + and software license. ... license text ... The following statement from + Agere clarifies the status of the firmware. I would like to confirm that + the two drivers; Linux LKM Wireless Driver Source Code, Version 7.18 and + Linux LKM Wireless Driver Source Code, Version 7.22 comply with Open Source + BSD License. Therefore the source code can be distributed in unmodified or + modified form consistent with the terms of the license. The Linux driver + architecture was based on two modules, the MSF (Module specific functions) + and the HCF (Hardware Control Functions). Included in the HCF is run-time + firmware (binary format) which is downloaded into the RAM of the Hermes + 1/2/2.5 WMAC. This hex coded firmware is not based on any open source + software and hence it is not subject to any Open Source License. The + firmware was developed by Agere and runs on the DISC processor embedded + within the Hermes 1/2/2.5 Wireless MAC devices. Hope this helps. Sincerely, + Viren Pathare Intellectual Property Licensing Manager Agere +spdx_license_key: LicenseRef-scancode-agere-bsd +other_urls: + - https://github.com/mdamt/linux-firmware/blob/bf9f8648fdf1d1d63db471554781f897d219bd62/LICENCE.agere +minimum_coverage: 80 +--- + SOFTWARE LICENSE This software is provided subject to the following terms and conditions, @@ -34,4 +63,4 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/agere-bsd.yml b/src/licensedcode/data/licenses/agere-bsd.yml deleted file mode 100644 index 1f99040786d..00000000000 --- a/src/licensedcode/data/licenses/agere-bsd.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: agere-bsd -short_name: Agere BSD -name: Agere Systems BSD Software license -category: Permissive -owner: LSI Corporation -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.agere -notes: | - commonly found in Linux The driver is coverred by the following copyright - and software license. ... license text ... The following statement from - Agere clarifies the status of the firmware. I would like to confirm that - the two drivers; Linux LKM Wireless Driver Source Code, Version 7.18 and - Linux LKM Wireless Driver Source Code, Version 7.22 comply with Open Source - BSD License. Therefore the source code can be distributed in unmodified or - modified form consistent with the terms of the license. The Linux driver - architecture was based on two modules, the MSF (Module specific functions) - and the HCF (Hardware Control Functions). Included in the HCF is run-time - firmware (binary format) which is downloaded into the RAM of the Hermes - 1/2/2.5 WMAC. This hex coded firmware is not based on any open source - software and hence it is not subject to any Open Source License. The - firmware was developed by Agere and runs on the DISC processor embedded - within the Hermes 1/2/2.5 Wireless MAC devices. Hope this helps. Sincerely, - Viren Pathare Intellectual Property Licensing Manager Agere -spdx_license_key: LicenseRef-scancode-agere-bsd -other_urls: - - https://github.com/mdamt/linux-firmware/blob/bf9f8648fdf1d1d63db471554781f897d219bd62/LICENCE.agere -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/agere-sla.LICENSE b/src/licensedcode/data/licenses/agere-sla.LICENSE index 7d9ea79a2da..acfbec2ebdb 100644 --- a/src/licensedcode/data/licenses/agere-sla.LICENSE +++ b/src/licensedcode/data/licenses/agere-sla.LICENSE @@ -1,3 +1,15 @@ +--- +key: agere-sla +short_name: Agere WindModem EULA +name: Agere Systems WinModem EULA +category: Proprietary Free +owner: LSI Corporation +homepage_url: http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License +spdx_license_key: LicenseRef-scancode-agere-sla +text_urls: + - http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License +--- + Agere Systems WinModem End User SOFTWARE LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/agere-sla.yml b/src/licensedcode/data/licenses/agere-sla.yml deleted file mode 100644 index 3e625144274..00000000000 --- a/src/licensedcode/data/licenses/agere-sla.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: agere-sla -short_name: Agere WindModem EULA -name: Agere Systems WinModem EULA -category: Proprietary Free -owner: LSI Corporation -homepage_url: http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License -spdx_license_key: LicenseRef-scancode-agere-sla -text_urls: - - http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License diff --git a/src/licensedcode/data/licenses/ago-private-1.0.LICENSE b/src/licensedcode/data/licenses/ago-private-1.0.LICENSE index 93529822602..338efb9cd18 100644 --- a/src/licensedcode/data/licenses/ago-private-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ago-private-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ago-private-1.0 +short_name: Ago Private License 1.0 +name: Ago Private License 1.0 +category: Proprietary Free +owner: Unspecified +spdx_license_key: LicenseRef-scancode-ago-private-1.0 +text_urls: + - https://bitbucket.org/mikechung/agobot3/src/master/apl.txt +--- + Ago's Private License 1.0: ----------------------------- diff --git a/src/licensedcode/data/licenses/ago-private-1.0.yml b/src/licensedcode/data/licenses/ago-private-1.0.yml deleted file mode 100644 index 9d243ac7a8e..00000000000 --- a/src/licensedcode/data/licenses/ago-private-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ago-private-1.0 -short_name: Ago Private License 1.0 -name: Ago Private License 1.0 -category: Proprietary Free -owner: Unspecified -spdx_license_key: LicenseRef-scancode-ago-private-1.0 -text_urls: - - https://bitbucket.org/mikechung/agobot3/src/master/apl.txt diff --git a/src/licensedcode/data/licenses/agpl-1.0-plus.LICENSE b/src/licensedcode/data/licenses/agpl-1.0-plus.LICENSE index ae012e4241f..72ab5eb6dcd 100644 --- a/src/licensedcode/data/licenses/agpl-1.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/agpl-1.0-plus.LICENSE @@ -1,3 +1,32 @@ +--- +key: agpl-1.0-plus +short_name: AGPL 1.0 or later +name: Affero General Public License 1.0 or later +category: Copyleft +owner: Affero +homepage_url: http://www.affero.org/oagpl.html +notes: | + per SPDX.org Section 9 of this license allows content under this any later + version grant to be redistributed under the GPL-3.0-or-later. Affero Inc. + also released an AGPL-2.0 (http://www.affero.org/agpl2.html) to allow + AGPL-1.0-or-later work to be distributed under the AGPL-3.0-or-later. +spdx_license_key: AGPL-1.0-or-later +other_spdx_license_keys: + - AGPL-1.0+ +text_urls: + - http://www.affero.org/oagpl.html +faq_url: http://www.affero.org/oagf.html +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2002 Affero Inc. + - copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by Affero, Inc. +ignorable_holders: + - Affero Inc. + - Affero, Inc. + - Free Software Foundation, Inc. +--- + This is free software; you can redistribute it and/or modify it under the terms of the AFFERO GENERAL PUBLIC LICENSE as published by Affero Inc; either version 1, or (at your option) any later version. diff --git a/src/licensedcode/data/licenses/agpl-1.0-plus.yml b/src/licensedcode/data/licenses/agpl-1.0-plus.yml deleted file mode 100644 index 3d437461206..00000000000 --- a/src/licensedcode/data/licenses/agpl-1.0-plus.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: agpl-1.0-plus -short_name: AGPL 1.0 or later -name: Affero General Public License 1.0 or later -category: Copyleft -owner: Affero -homepage_url: http://www.affero.org/oagpl.html -notes: | - per SPDX.org Section 9 of this license allows content under this any later - version grant to be redistributed under the GPL-3.0-or-later. Affero Inc. - also released an AGPL-2.0 (http://www.affero.org/agpl2.html) to allow - AGPL-1.0-or-later work to be distributed under the AGPL-3.0-or-later. -spdx_license_key: AGPL-1.0-or-later -other_spdx_license_keys: - - AGPL-1.0+ -text_urls: - - http://www.affero.org/oagpl.html -faq_url: http://www.affero.org/oagf.html -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2002 Affero Inc. - - copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by Affero, Inc. -ignorable_holders: - - Affero Inc. - - Affero, Inc. - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/licenses/agpl-1.0.LICENSE b/src/licensedcode/data/licenses/agpl-1.0.LICENSE index 031efa6eb1c..458e653925a 100644 --- a/src/licensedcode/data/licenses/agpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/agpl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: agpl-1.0 +short_name: AGPL 1.0 +name: Affero General Public License 1.0 +category: Copyleft +owner: Affero +homepage_url: http://www.affero.org/oagpl.html +spdx_license_key: AGPL-1.0-only +other_spdx_license_keys: + - AGPL-1.0 +text_urls: + - http://www.affero.org/oagpl.html +faq_url: http://www.affero.org/oagf.html +minimum_coverage: 75 +ignorable_copyrights: + - Copyright (c) 2002 Affero Inc. + - copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by Affero, Inc. +ignorable_holders: + - Affero Inc. + - Affero, Inc. + - Free Software Foundation, Inc. +--- + AFFERO GENERAL PUBLIC LICENSE Version 1, March 2002 diff --git a/src/licensedcode/data/licenses/agpl-1.0.yml b/src/licensedcode/data/licenses/agpl-1.0.yml deleted file mode 100644 index 6159360da4e..00000000000 --- a/src/licensedcode/data/licenses/agpl-1.0.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: agpl-1.0 -short_name: AGPL 1.0 -name: Affero General Public License 1.0 -category: Copyleft -owner: Affero -homepage_url: http://www.affero.org/oagpl.html -spdx_license_key: AGPL-1.0-only -other_spdx_license_keys: - - AGPL-1.0 -text_urls: - - http://www.affero.org/oagpl.html -faq_url: http://www.affero.org/oagf.html -minimum_coverage: 75 -ignorable_copyrights: - - Copyright (c) 2002 Affero Inc. - - copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by Affero, Inc. -ignorable_holders: - - Affero Inc. - - Affero, Inc. - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/licenses/agpl-2.0.LICENSE b/src/licensedcode/data/licenses/agpl-2.0.LICENSE index 7069ca32522..afc6dd687e2 100644 --- a/src/licensedcode/data/licenses/agpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/agpl-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: agpl-2.0 +short_name: AGPL 2.0 +name: Affero General Public License 2.0 +category: Copyleft +owner: Affero +homepage_url: http://www.affero.org/agpl2.html +spdx_license_key: LicenseRef-scancode-agpl-2.0 +text_urls: + - http://www.affero.org/agpl2.html +faq_url: http://www.affero.org/oagf.html +ignorable_copyrights: + - Copyright (c) 2007 Affero Inc. +ignorable_holders: + - Affero Inc. +--- + AFFERO GENERAL PUBLIC LICENSE Version 2, November 2007 diff --git a/src/licensedcode/data/licenses/agpl-2.0.yml b/src/licensedcode/data/licenses/agpl-2.0.yml deleted file mode 100644 index 5cde95db586..00000000000 --- a/src/licensedcode/data/licenses/agpl-2.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: agpl-2.0 -short_name: AGPL 2.0 -name: Affero General Public License 2.0 -category: Copyleft -owner: Affero -homepage_url: http://www.affero.org/agpl2.html -spdx_license_key: LicenseRef-scancode-agpl-2.0 -text_urls: - - http://www.affero.org/agpl2.html -faq_url: http://www.affero.org/oagf.html -ignorable_copyrights: - - Copyright (c) 2007 Affero Inc. -ignorable_holders: - - Affero Inc. diff --git a/src/licensedcode/data/licenses/agpl-3.0-bacula.LICENSE b/src/licensedcode/data/licenses/agpl-3.0-bacula.LICENSE index 88398ea2328..42368d6634a 100644 --- a/src/licensedcode/data/licenses/agpl-3.0-bacula.LICENSE +++ b/src/licensedcode/data/licenses/agpl-3.0-bacula.LICENSE @@ -1,3 +1,16 @@ +--- +key: agpl-3.0-bacula +is_deprecated: yes +short_name: AGPL 3.0 with Bacula exception +name: AGPL 3.0 with Bacula exception +category: Copyleft +owner: Bacula +notes: composite +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/ +--- + Last revision: 21 May 2017 Bacula is licensed under the GNU Affero General Public License, version diff --git a/src/licensedcode/data/licenses/agpl-3.0-bacula.yml b/src/licensedcode/data/licenses/agpl-3.0-bacula.yml deleted file mode 100644 index 3c9b622083c..00000000000 --- a/src/licensedcode/data/licenses/agpl-3.0-bacula.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: agpl-3.0-bacula -is_deprecated: yes -short_name: AGPL 3.0 with Bacula exception -name: AGPL 3.0 with Bacula exception -category: Copyleft -owner: Bacula -notes: composite -is_exception: yes -other_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/licenses/agpl-3.0-linking-exception.LICENSE b/src/licensedcode/data/licenses/agpl-3.0-linking-exception.LICENSE index 57def448180..a3bad4cbf82 100644 --- a/src/licensedcode/data/licenses/agpl-3.0-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/agpl-3.0-linking-exception.LICENSE @@ -1,6 +1,18 @@ +--- +key: agpl-3.0-linking-exception +short_name: AGPL 3.0 linking exception +name: AGPL 3.0 linking exception +category: Copyleft Limited +owner: Unspecified +is_exception: yes +homepage_url: http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/ +notes: renamed to linking-exception-agpl-3.0 +is_deprecated: yes +--- + Additional permission under the GNU Affero GPL version 3 section 7: If you modify this Program, or any covered work, by linking or combining it with other code, such other code is not for that reason alone subject to any of the requirements of the GNU Affero GPL -version 3. +version 3. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/agpl-3.0-linking-exception.yml b/src/licensedcode/data/licenses/agpl-3.0-linking-exception.yml deleted file mode 100644 index b362bd78e81..00000000000 --- a/src/licensedcode/data/licenses/agpl-3.0-linking-exception.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: agpl-3.0-linking-exception -short_name: AGPL 3.0 linking exception -name: AGPL 3.0 linking exception -category: Copyleft Limited -owner: Unspecified -is_exception: yes -homepage_url: http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/ -notes: renamed to linking-exception-agpl-3.0 -is_deprecated: yes \ No newline at end of file diff --git a/src/licensedcode/data/licenses/agpl-3.0-openssl.LICENSE b/src/licensedcode/data/licenses/agpl-3.0-openssl.LICENSE index d5c9a86937e..65507a4822d 100644 --- a/src/licensedcode/data/licenses/agpl-3.0-openssl.LICENSE +++ b/src/licensedcode/data/licenses/agpl-3.0-openssl.LICENSE @@ -1,3 +1,14 @@ +--- +key: agpl-3.0-openssl +short_name: AGPL 3.0 with OpenSSL exception +name: AGPL 3.0 with OpenSSL exception +category: Copyleft +owner: MongoDB +is_exception: yes +is_deprecated: yes +notes: replaced by openssl-exception-agpl-3.0 +--- + As a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain diff --git a/src/licensedcode/data/licenses/agpl-3.0-openssl.yml b/src/licensedcode/data/licenses/agpl-3.0-openssl.yml deleted file mode 100644 index 4c5c0e2fdc2..00000000000 --- a/src/licensedcode/data/licenses/agpl-3.0-openssl.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: agpl-3.0-openssl -short_name: AGPL 3.0 with OpenSSL exception -name: AGPL 3.0 with OpenSSL exception -category: Copyleft -owner: MongoDB -is_exception: yes -is_deprecated: yes -notes: replaced by openssl-exception-agpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/agpl-3.0-plus.LICENSE b/src/licensedcode/data/licenses/agpl-3.0-plus.LICENSE index a390c80a82d..2367337d377 100644 --- a/src/licensedcode/data/licenses/agpl-3.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/agpl-3.0-plus.LICENSE @@ -1,3 +1,38 @@ +--- +key: agpl-3.0-plus +short_name: AGPL 3.0 or later +name: GNU Affero General Public License 3.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/agpl-3.0.html +notes: | + Per SPDX.org, this version was released 19 November 2007 This license is + OSI certified +spdx_license_key: AGPL-3.0-or-later +other_spdx_license_keys: + - AGPL-3.0+ + - LicenseRef-AGPL +text_urls: + - http://www.gnu.org/licenses/agpl.txt +osi_url: http://www.opensource.org/licenses/agpl-v3.html +faq_url: http://www.affero.org/oagf.html +other_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html + - http://www.fsf.org/licensing/licenses/agpl-3.0.txt + - http://www.opensource.org/licenses/AGPL-3.0 + - https://opensource.org/licenses/AGPL-3.0 + - https://www.gnu.org/licenses/agpl.txt +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/licenses/ + - 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 @@ -671,4 +706,4 @@ 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/licenses/agpl-3.0-plus.yml b/src/licensedcode/data/licenses/agpl-3.0-plus.yml deleted file mode 100644 index de23447d0ec..00000000000 --- a/src/licensedcode/data/licenses/agpl-3.0-plus.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: agpl-3.0-plus -short_name: AGPL 3.0 or later -name: GNU Affero General Public License 3.0 or later -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/agpl-3.0.html -notes: | - Per SPDX.org, this version was released 19 November 2007 This license is - OSI certified -spdx_license_key: AGPL-3.0-or-later -other_spdx_license_keys: - - AGPL-3.0+ - - LicenseRef-AGPL -text_urls: - - http://www.gnu.org/licenses/agpl.txt -osi_url: http://www.opensource.org/licenses/agpl-v3.html -faq_url: http://www.affero.org/oagf.html -other_urls: - - http://www.fsf.org/licensing/licenses/agpl-3.0.html - - http://www.fsf.org/licensing/licenses/agpl-3.0.txt - - http://www.opensource.org/licenses/AGPL-3.0 - - https://opensource.org/licenses/AGPL-3.0 - - https://www.gnu.org/licenses/agpl.txt -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://fsf.org/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/licenses/agpl-3.0.LICENSE b/src/licensedcode/data/licenses/agpl-3.0.LICENSE index be3f7b28e56..4061ef5ec05 100644 --- a/src/licensedcode/data/licenses/agpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/agpl-3.0.LICENSE @@ -1,3 +1,37 @@ +--- +key: agpl-3.0 +short_name: AGPL 3.0 +name: GNU Affero General Public License 3.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/agpl-3.0.html +notes: | + Per SPDX.org, this version was released 19 November 2007 This license is + OSI certified +spdx_license_key: AGPL-3.0-only +other_spdx_license_keys: + - AGPL-3.0 + - LicenseRef-AGPL-3.0 +osi_license_key: AGPL-3.0 +text_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html +osi_url: http://www.opensource.org/licenses/agpl-v3.html +faq_url: http://www.affero.org/oagf.html +other_urls: + - http://www.gnu.org/licenses/agpl.txt + - http://www.opensource.org/licenses/AGPL-3.0 + - https://opensource.google.com/docs/using/agpl-policy/ + - https://opensource.org/licenses/AGPL-3.0 + - https://www.gnu.org/licenses/agpl.txt +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/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 @@ -658,4 +692,4 @@ 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/licenses/agpl-3.0.yml b/src/licensedcode/data/licenses/agpl-3.0.yml deleted file mode 100644 index b51315e38a0..00000000000 --- a/src/licensedcode/data/licenses/agpl-3.0.yml +++ /dev/null @@ -1,31 +0,0 @@ -key: agpl-3.0 -short_name: AGPL 3.0 -name: GNU Affero General Public License 3.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/agpl-3.0.html -notes: | - Per SPDX.org, this version was released 19 November 2007 This license is - OSI certified -spdx_license_key: AGPL-3.0-only -other_spdx_license_keys: - - AGPL-3.0 - - LicenseRef-AGPL-3.0 -osi_license_key: AGPL-3.0 -text_urls: - - http://www.fsf.org/licensing/licenses/agpl-3.0.html -osi_url: http://www.opensource.org/licenses/agpl-v3.html -faq_url: http://www.affero.org/oagf.html -other_urls: - - http://www.gnu.org/licenses/agpl.txt - - http://www.opensource.org/licenses/AGPL-3.0 - - https://opensource.google.com/docs/using/agpl-policy/ - - https://opensource.org/licenses/AGPL-3.0 - - https://www.gnu.org/licenses/agpl.txt -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/ diff --git a/src/licensedcode/data/licenses/agpl-generic-additional-terms.LICENSE b/src/licensedcode/data/licenses/agpl-generic-additional-terms.LICENSE new file mode 100644 index 00000000000..8c24fd05bfe --- /dev/null +++ b/src/licensedcode/data/licenses/agpl-generic-additional-terms.LICENSE @@ -0,0 +1,12 @@ +--- +key: agpl-generic-additional-terms +short_name: AGPL Generic Additional Terms +name: AGPL Generic Additional Terms +category: Copyleft +owner: Unspecified +notes: this is a generic entry for rare one-off AGPL extra license terms. These are typically + additional terms under section 7 of the AGPL-3.0 +is_exception: yes +is_generic: yes +spdx_license_key: LicenseRef-scancode-agpl-generic-additional-terms +--- diff --git a/src/licensedcode/data/licenses/agpl-generic-additional-terms.yml b/src/licensedcode/data/licenses/agpl-generic-additional-terms.yml deleted file mode 100644 index 98d50a4adeb..00000000000 --- a/src/licensedcode/data/licenses/agpl-generic-additional-terms.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: agpl-generic-additional-terms -short_name: AGPL Generic Additional Terms -name: AGPL Generic Additional Terms -category: Copyleft -owner: Unspecified -notes: this is a generic entry for rare one-off AGPL extra license terms. These are typically - additional terms under section 7 of the AGPL-3.0 -is_exception: yes -is_generic: yes -spdx_license_key: LicenseRef-scancode-agpl-generic-additional-terms diff --git a/src/licensedcode/data/licenses/aladdin-md5.LICENSE b/src/licensedcode/data/licenses/aladdin-md5.LICENSE index 2fdca3a5011..e8f55562b37 100644 --- a/src/licensedcode/data/licenses/aladdin-md5.LICENSE +++ b/src/licensedcode/data/licenses/aladdin-md5.LICENSE @@ -1,3 +1,13 @@ +--- +key: aladdin-md5 +is_deprecated: yes +short_name: Aladdin MD5 License +name: Aladdin MD5 License +category: Permissive +owner: Aladdin Enterprises +notes: This license is exactly the same as the zlib license. +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -16,4 +26,4 @@ the following restrictions: 3. This notice may not be removed or altered from any source distribution. -L. Peter Deutsch ghost@aladdin.com +L. Peter Deutsch ghost@aladdin.com \ No newline at end of file diff --git a/src/licensedcode/data/licenses/aladdin-md5.yml b/src/licensedcode/data/licenses/aladdin-md5.yml deleted file mode 100644 index 3eef09c1467..00000000000 --- a/src/licensedcode/data/licenses/aladdin-md5.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: aladdin-md5 -is_deprecated: yes -short_name: Aladdin MD5 License -name: Aladdin MD5 License -category: Permissive -owner: Aladdin Enterprises -notes: This license is exactly the same as the zlib license. diff --git a/src/licensedcode/data/licenses/alasir.LICENSE b/src/licensedcode/data/licenses/alasir.LICENSE index f63befac55d..0964357cc6b 100644 --- a/src/licensedcode/data/licenses/alasir.LICENSE +++ b/src/licensedcode/data/licenses/alasir.LICENSE @@ -1,3 +1,13 @@ +--- +key: alasir +short_name: Alasir Licence +name: The Alasir Licence +category: Proprietary Free +owner: Alasir +homepage_url: http://alasir.com/licence/TAL.txt +spdx_license_key: LicenseRef-scancode-alasir +--- + The Alasir Licence This is a free software. It's provided as-is and carries absolutely no diff --git a/src/licensedcode/data/licenses/alasir.yml b/src/licensedcode/data/licenses/alasir.yml deleted file mode 100644 index fc9af7961fb..00000000000 --- a/src/licensedcode/data/licenses/alasir.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: alasir -short_name: Alasir Licence -name: The Alasir Licence -category: Proprietary Free -owner: Alasir -homepage_url: http://alasir.com/licence/TAL.txt -spdx_license_key: LicenseRef-scancode-alasir diff --git a/src/licensedcode/data/licenses/alexisisaac-freeware.LICENSE b/src/licensedcode/data/licenses/alexisisaac-freeware.LICENSE index 915e1ddf805..c7b9c86aadf 100644 --- a/src/licensedcode/data/licenses/alexisisaac-freeware.LICENSE +++ b/src/licensedcode/data/licenses/alexisisaac-freeware.LICENSE @@ -1,3 +1,15 @@ +--- +key: alexisisaac-freeware +short_name: Alexisisaac Freeware License +name: Alexisisaac Freeware License +category: Permissive +owner: Alexis Isaac +homepage_url: https://sourceforge.net/projects/soleditor/?source=typ_redirect +spdx_license_key: LicenseRef-scancode-alexisisaac-freeware +ignorable_urls: + - http://www.alexisisaac.net/products +--- + FREEWARE LICENSE AGREEMENT Before loading this software on your computer, please carefully read the following terms and conditions. diff --git a/src/licensedcode/data/licenses/alexisisaac-freeware.yml b/src/licensedcode/data/licenses/alexisisaac-freeware.yml deleted file mode 100644 index 04356655063..00000000000 --- a/src/licensedcode/data/licenses/alexisisaac-freeware.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: alexisisaac-freeware -short_name: Alexisisaac Freeware License -name: Alexisisaac Freeware License -category: Permissive -owner: Alexis Isaac -homepage_url: https://sourceforge.net/projects/soleditor/?source=typ_redirect -spdx_license_key: LicenseRef-scancode-alexisisaac-freeware -ignorable_urls: - - http://www.alexisisaac.net/products diff --git a/src/licensedcode/data/licenses/alfresco-exception-0.5.LICENSE b/src/licensedcode/data/licenses/alfresco-exception-0.5.LICENSE index 56246d5ca2d..83b225ef119 100644 --- a/src/licensedcode/data/licenses/alfresco-exception-0.5.LICENSE +++ b/src/licensedcode/data/licenses/alfresco-exception-0.5.LICENSE @@ -1,3 +1,17 @@ +--- +key: alfresco-exception-0.5 +short_name: Alfresco FLOSS Exception v0.5 +name: Alfresco FLOSS Exception v0.5 +category: Copyleft +owner: Alfresco Software +homepage_url: https://web.archive.org/web/20070306001556/http://www.alfresco.com/legal/licensing/floss_exception/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-alfresco-exception-0.5 +ignorable_urls: + - http://www.gnu.org/philosophy/free-sw.html + - http://www.opensource.org/docs/definition.php +--- + Alfresco Software, Ltd. FLOSS License Exception The Alfresco Software, Ltd. Exception for Free/Libre and Open Source Software-only Applications Using Alfresco software (the `FLOSS Exception'). @@ -57,4 +71,4 @@ Appendix A. Qualified Libraries and Packages The following is a a non-exhaustive list of libraries and packages which are covered by the FLOSS License Exception. Please note that appendix is merely provided as an additional service to specific FLOSS projects who wish to simplify licensing information for their users. Compliance with one of the licenses noted under the "FLOSS license list" section remains a prerequisite. Package name Qualifying License and Version -Apache Portable Runtime (APR) Apache Software License 2.0 +Apache Portable Runtime (APR) Apache Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/alfresco-exception-0.5.yml b/src/licensedcode/data/licenses/alfresco-exception-0.5.yml deleted file mode 100644 index 5e5a8ec05ff..00000000000 --- a/src/licensedcode/data/licenses/alfresco-exception-0.5.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: alfresco-exception-0.5 -short_name: Alfresco FLOSS Exception v0.5 -name: Alfresco FLOSS Exception v0.5 -category: Copyleft -owner: Alfresco Software -homepage_url: https://web.archive.org/web/20070306001556/http://www.alfresco.com/legal/licensing/floss_exception/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-alfresco-exception-0.5 -ignorable_urls: - - http://www.gnu.org/philosophy/free-sw.html - - http://www.opensource.org/docs/definition.php diff --git a/src/licensedcode/data/licenses/allegro-4.LICENSE b/src/licensedcode/data/licenses/allegro-4.LICENSE index cdaa3a1ced6..2184ef89b2b 100644 --- a/src/licensedcode/data/licenses/allegro-4.LICENSE +++ b/src/licensedcode/data/licenses/allegro-4.LICENSE @@ -1,3 +1,18 @@ +--- +key: allegro-4 +short_name: Allegro 4 License +name: Allegro 4 License +category: Permissive +owner: Allegro Project +homepage_url: http://alleg.sourceforge.net//license.html +notes: | + Per SPDX.org, this license may also be known as Allegro 4. The Allegro 5 + license shown at the alleg.sourceforge.net URL is the same as zlib. +spdx_license_key: Giftware +other_urls: + - http://liballeg.org/license.html#allegro-4-the-giftware-license +--- + Allegro 4 (the giftware license) Allegro is gift-ware. It was created by a number of people working in cooperation, and is given to you freely as a gift. You may use, modify, redistribute, and generally hack it about in any way you like, and you do not have to give us anything in return. diff --git a/src/licensedcode/data/licenses/allegro-4.yml b/src/licensedcode/data/licenses/allegro-4.yml deleted file mode 100644 index f7c83421cfa..00000000000 --- a/src/licensedcode/data/licenses/allegro-4.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: allegro-4 -short_name: Allegro 4 License -name: Allegro 4 License -category: Permissive -owner: Allegro Project -homepage_url: http://alleg.sourceforge.net//license.html -notes: | - Per SPDX.org, this license may also be known as Allegro 4. The Allegro 5 - license shown at the alleg.sourceforge.net URL is the same as zlib. -spdx_license_key: Giftware -other_urls: - - http://liballeg.org/license.html#allegro-4-the-giftware-license diff --git a/src/licensedcode/data/licenses/allen-institute-software-2018.LICENSE b/src/licensedcode/data/licenses/allen-institute-software-2018.LICENSE index a53267eecfa..a5ac9c4fcad 100644 --- a/src/licensedcode/data/licenses/allen-institute-software-2018.LICENSE +++ b/src/licensedcode/data/licenses/allen-institute-software-2018.LICENSE @@ -1,3 +1,23 @@ +--- +key: allen-institute-software-2018 +short_name: Allen Institute Software License 2018 +name: Allen Institute Software License 2018 +category: Free Restricted +owner: Allen Institute +homepage_url: https://raw.githubusercontent.com/AllenInstitute/human_neuron_Ih/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-allen-institute-software-2018 +other_urls: + - https://github.com/AllenInstitute +standard_notice: | + Allen Institute Software License – This software license is the 2-clause + BSD license plus clause a third clause that + prohibits redistribution for commercial purposes without further + permission. + Copyright © 2018. Allen Institute. All rights reserved. +ignorable_emails: + - terms@alleninstitute.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/allen-institute-software-2018.yml b/src/licensedcode/data/licenses/allen-institute-software-2018.yml deleted file mode 100644 index a33b8e4b800..00000000000 --- a/src/licensedcode/data/licenses/allen-institute-software-2018.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: allen-institute-software-2018 -short_name: Allen Institute Software License 2018 -name: Allen Institute Software License 2018 -category: Free Restricted -owner: Allen Institute -homepage_url: https://raw.githubusercontent.com/AllenInstitute/human_neuron_Ih/master/LICENSE.txt -spdx_license_key: LicenseRef-scancode-allen-institute-software-2018 -other_urls: - - https://github.com/AllenInstitute -standard_notice: | - Allen Institute Software License – This software license is the 2-clause - BSD license plus clause a third clause that - prohibits redistribution for commercial purposes without further - permission. - Copyright © 2018. Allen Institute. All rights reserved. -ignorable_emails: - - terms@alleninstitute.org diff --git a/src/licensedcode/data/licenses/altermime.LICENSE b/src/licensedcode/data/licenses/altermime.LICENSE index d7ff67d84cb..c973bcb3ec8 100644 --- a/src/licensedcode/data/licenses/altermime.LICENSE +++ b/src/licensedcode/data/licenses/altermime.LICENSE @@ -1,3 +1,21 @@ +--- +key: altermime +short_name: alterMIME License +name: alterMIME License +category: Copyleft Limited +owner: Paul L Daniels +homepage_url: https://pldaniels.com/altermime/ +spdx_license_key: LicenseRef-scancode-altermime +other_urls: + - https://pldaniels.com/altermime/altermime-0.3.11.tar.gz +ignorable_copyrights: + - Copyright (c) 2000 P.L.Daniels +ignorable_holders: + - P.L.Daniels +ignorable_emails: + - pldaniels@pldaniels.com +--- + alterMIME LICENSE The following license terms and conditions apply, unless a different diff --git a/src/licensedcode/data/licenses/altermime.yml b/src/licensedcode/data/licenses/altermime.yml deleted file mode 100644 index c3d5a200dd7..00000000000 --- a/src/licensedcode/data/licenses/altermime.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: altermime -short_name: alterMIME License -name: alterMIME License -category: Copyleft Limited -owner: Paul L Daniels -homepage_url: https://pldaniels.com/altermime/ -spdx_license_key: LicenseRef-scancode-altermime -other_urls: - - https://pldaniels.com/altermime/altermime-0.3.11.tar.gz -ignorable_copyrights: - - Copyright (c) 2000 P.L.Daniels -ignorable_holders: - - P.L.Daniels -ignorable_emails: - - pldaniels@pldaniels.com diff --git a/src/licensedcode/data/licenses/altova-eula.LICENSE b/src/licensedcode/data/licenses/altova-eula.LICENSE index fe785fd3c1f..f6cc64b67f8 100644 --- a/src/licensedcode/data/licenses/altova-eula.LICENSE +++ b/src/licensedcode/data/licenses/altova-eula.LICENSE @@ -1,3 +1,22 @@ +--- +key: altova-eula +short_name: Altova EULA +name: Altova EULA +category: Commercial +owner: Altova +homepage_url: http://www.altova.com/eula.html +spdx_license_key: LicenseRef-scancode-altova-eula +ignorable_copyrights: + - Copyright (c) 2007-2011 Altova GmbH (www.altova.com) +ignorable_holders: + - Altova GmbH +ignorable_urls: + - http://www.altova.com/ + - http://www.altova.com/eula + - http://www.altova.com/legal_3rdparty.html + - http://www.altova.com/privacy +--- + THIS IS A LEGAL DOCUMENT -- RETAIN FOR YOUR RECORDS ALTOVA® END-USER LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/altova-eula.yml b/src/licensedcode/data/licenses/altova-eula.yml deleted file mode 100644 index 21085905e40..00000000000 --- a/src/licensedcode/data/licenses/altova-eula.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: altova-eula -short_name: Altova EULA -name: Altova EULA -category: Commercial -owner: Altova -homepage_url: http://www.altova.com/eula.html -spdx_license_key: LicenseRef-scancode-altova-eula -ignorable_copyrights: - - Copyright (c) 2007-2011 Altova GmbH (www.altova.com) -ignorable_holders: - - Altova GmbH -ignorable_urls: - - http://www.altova.com/ - - http://www.altova.com/eula - - http://www.altova.com/legal_3rdparty.html - - http://www.altova.com/privacy diff --git a/src/licensedcode/data/licenses/amazon-redshift-jdbc.LICENSE b/src/licensedcode/data/licenses/amazon-redshift-jdbc.LICENSE index abe2b09261c..feebf6fc08c 100644 --- a/src/licensedcode/data/licenses/amazon-redshift-jdbc.LICENSE +++ b/src/licensedcode/data/licenses/amazon-redshift-jdbc.LICENSE @@ -1,3 +1,13 @@ +--- +key: amazon-redshift-jdbc +short_name: Amazon Redshift JDBC Driver License Agreement +name: Amazon Redshift JDBC Driver License Agreement +category: Proprietary Free +owner: Amazon Web Services +homepage_url: https://s3.amazonaws.com/redshift-downloads/drivers/Amazon+Redshift+JDBC+Driver+License+Agreement.pdf +spdx_license_key: LicenseRef-scancode-amazon-redshift-jdbc +--- + Amazon Redshift JDBC Driver License Agreement THIS IS AN AGREEMENT BETWEEN YOU AND AMAZON WEB SERVICES, INC. (WITH ITS AFFILIATES, "AWS" OR "WE") diff --git a/src/licensedcode/data/licenses/amazon-redshift-jdbc.yml b/src/licensedcode/data/licenses/amazon-redshift-jdbc.yml deleted file mode 100644 index c7e06bb9ec6..00000000000 --- a/src/licensedcode/data/licenses/amazon-redshift-jdbc.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: amazon-redshift-jdbc -short_name: Amazon Redshift JDBC Driver License Agreement -name: Amazon Redshift JDBC Driver License Agreement -category: Proprietary Free -owner: Amazon Web Services -homepage_url: https://s3.amazonaws.com/redshift-downloads/drivers/Amazon+Redshift+JDBC+Driver+License+Agreement.pdf -spdx_license_key: LicenseRef-scancode-amazon-redshift-jdbc diff --git a/src/licensedcode/data/licenses/amazon-sl.LICENSE b/src/licensedcode/data/licenses/amazon-sl.LICENSE index 9cc2a375168..2b5bdc2fb5d 100644 --- a/src/licensedcode/data/licenses/amazon-sl.LICENSE +++ b/src/licensedcode/data/licenses/amazon-sl.LICENSE @@ -1,3 +1,22 @@ +--- +key: amazon-sl +short_name: Amazon Software License +name: Amazon Software License +category: Proprietary Free +owner: Amazon Web Services +homepage_url: http://aws.amazon.com/asl/ +spdx_license_key: LicenseRef-.amazon.com.-AmznSL-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-amazon-sl +text_urls: + - http://aws.amazon.com/asl/ + - https://github.com/aws/aws-sdk-android/blob/master/LICENSE.AMAZON.txt +ignorable_copyrights: + - (c) 2008 Amazon.com, Inc. or its affiliates +ignorable_holders: + - Amazon.com, Inc. or its affiliates +--- + Amazon Software License This Amazon Software License ("License") governs your use, reproduction, and distribution of the accompanying software as specified below. diff --git a/src/licensedcode/data/licenses/amazon-sl.yml b/src/licensedcode/data/licenses/amazon-sl.yml deleted file mode 100644 index 2d7d77b2790..00000000000 --- a/src/licensedcode/data/licenses/amazon-sl.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: amazon-sl -short_name: Amazon Software License -name: Amazon Software License -category: Proprietary Free -owner: Amazon Web Services -homepage_url: http://aws.amazon.com/asl/ -spdx_license_key: LicenseRef-.amazon.com.-AmznSL-1.0 -other_spdx_license_keys: - - LicenseRef-scancode-amazon-sl -text_urls: - - http://aws.amazon.com/asl/ - - https://github.com/aws/aws-sdk-android/blob/master/LICENSE.AMAZON.txt -ignorable_copyrights: - - (c) 2008 Amazon.com, Inc. or its affiliates -ignorable_holders: - - Amazon.com, Inc. or its affiliates diff --git a/src/licensedcode/data/licenses/amd-historical.LICENSE b/src/licensedcode/data/licenses/amd-historical.LICENSE index 54b5509e295..8090c9e3356 100644 --- a/src/licensedcode/data/licenses/amd-historical.LICENSE +++ b/src/licensedcode/data/licenses/amd-historical.LICENSE @@ -1,3 +1,13 @@ +--- +key: amd-historical +short_name: AMD Historical License +name: AMD Historical License +category: Permissive +owner: Advanced Micro Devices +notes: this is a short historical permissive license seen in the newlib C library +spdx_license_key: LicenseRef-scancode-amd-historical +--- + This software is the property of Advanced Micro Devices, Inc (AMD) which specifically grants the user the right to modify, use and distribute this diff --git a/src/licensedcode/data/licenses/amd-historical.yml b/src/licensedcode/data/licenses/amd-historical.yml deleted file mode 100644 index e06754e1599..00000000000 --- a/src/licensedcode/data/licenses/amd-historical.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: amd-historical -short_name: AMD Historical License -name: AMD Historical License -category: Permissive -owner: Advanced Micro Devices -notes: this is a short historical permissive license seen in the newlib C library -spdx_license_key: LicenseRef-scancode-amd-historical diff --git a/src/licensedcode/data/licenses/amd-linux-firmware-export.LICENSE b/src/licensedcode/data/licenses/amd-linux-firmware-export.LICENSE index 231ba42b671..24ac944980c 100644 --- a/src/licensedcode/data/licenses/amd-linux-firmware-export.LICENSE +++ b/src/licensedcode/data/licenses/amd-linux-firmware-export.LICENSE @@ -1,3 +1,17 @@ +--- +key: amd-linux-firmware-export +short_name: AMD Linux Firmware Export License +name: AMD Linux Firmware Export License +category: Proprietary Free +owner: Advanced Micro Devices +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-ucode +spdx_license_key: LicenseRef-scancode-amd-linux-firmware-export +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-sev +ignorable_urls: + - http://www.bis.doc.gov/ +--- + Permission is hereby granted by Advanced Micro Devices, Inc. ("AMD"), free of any license fees, to any person obtaining a copy of this microcode in binary form (the "Software") ("You"), to install, diff --git a/src/licensedcode/data/licenses/amd-linux-firmware-export.yml b/src/licensedcode/data/licenses/amd-linux-firmware-export.yml deleted file mode 100644 index d0db21dccf5..00000000000 --- a/src/licensedcode/data/licenses/amd-linux-firmware-export.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: amd-linux-firmware-export -short_name: AMD Linux Firmware Export License -name: AMD Linux Firmware Export License -category: Proprietary Free -owner: Advanced Micro Devices -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-ucode -spdx_license_key: LicenseRef-scancode-amd-linux-firmware-export -text_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amd-sev -ignorable_urls: - - http://www.bis.doc.gov/ diff --git a/src/licensedcode/data/licenses/amd-linux-firmware.LICENSE b/src/licensedcode/data/licenses/amd-linux-firmware.LICENSE index 7323b00b456..ad45c7187ff 100644 --- a/src/licensedcode/data/licenses/amd-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/amd-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: amd-linux-firmware +short_name: AMD Linux Firmware License +name: AMD Linux Firmware License +category: Proprietary Free +owner: Advanced Micro Devices +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.radeon +spdx_license_key: LicenseRef-scancode-amd-linux-firmware +--- + REDISTRIBUTION: Permission is hereby granted, free of any license fees, to any person obtaining a copy of this microcode (the "Software"), to install, reproduce, copy and distribute copies, in binary form only, of diff --git a/src/licensedcode/data/licenses/amd-linux-firmware.yml b/src/licensedcode/data/licenses/amd-linux-firmware.yml deleted file mode 100644 index 233e2ed600a..00000000000 --- a/src/licensedcode/data/licenses/amd-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: amd-linux-firmware -short_name: AMD Linux Firmware License -name: AMD Linux Firmware License -category: Proprietary Free -owner: Advanced Micro Devices -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.radeon -spdx_license_key: LicenseRef-scancode-amd-linux-firmware diff --git a/src/licensedcode/data/licenses/amdplpa.LICENSE b/src/licensedcode/data/licenses/amdplpa.LICENSE index 8ed0a885f03..5135e88f46b 100644 --- a/src/licensedcode/data/licenses/amdplpa.LICENSE +++ b/src/licensedcode/data/licenses/amdplpa.LICENSE @@ -1,3 +1,13 @@ +--- +key: amdplpa +short_name: AMD PLPA License +name: AMD PLPA License +category: Permissive +owner: Advanced Micro Devices +homepage_url: https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License +spdx_license_key: AMDPLPA +--- + Redistribution and use in any form of this material and any product thereof including software in source or binary forms, along with any related documentation, with or without modification ("this material"), is permitted provided that the following diff --git a/src/licensedcode/data/licenses/amdplpa.yml b/src/licensedcode/data/licenses/amdplpa.yml deleted file mode 100644 index 2b16c476f2d..00000000000 --- a/src/licensedcode/data/licenses/amdplpa.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: amdplpa -short_name: AMD PLPA License -name: AMD PLPA License -category: Permissive -owner: Advanced Micro Devices -homepage_url: https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License -spdx_license_key: AMDPLPA diff --git a/src/licensedcode/data/licenses/aml.LICENSE b/src/licensedcode/data/licenses/aml.LICENSE index ba5369531d9..a513c6fbb96 100644 --- a/src/licensedcode/data/licenses/aml.LICENSE +++ b/src/licensedcode/data/licenses/aml.LICENSE @@ -1,3 +1,13 @@ +--- +key: aml +short_name: Apple MIT License +name: Apple Sample Code License 2006 +category: Permissive +owner: Apple +homepage_url: https://fedoraproject.org/wiki/Licensing/Apple_MIT_License +spdx_license_key: AML +--- + IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software. In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated. diff --git a/src/licensedcode/data/licenses/aml.yml b/src/licensedcode/data/licenses/aml.yml deleted file mode 100644 index 9b30f660133..00000000000 --- a/src/licensedcode/data/licenses/aml.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: aml -short_name: Apple MIT License -name: Apple Sample Code License 2006 -category: Permissive -owner: Apple -homepage_url: https://fedoraproject.org/wiki/Licensing/Apple_MIT_License -spdx_license_key: AML diff --git a/src/licensedcode/data/licenses/amlogic-linux-firmware.LICENSE b/src/licensedcode/data/licenses/amlogic-linux-firmware.LICENSE index f161ab0a6d9..461cfd3b412 100644 --- a/src/licensedcode/data/licenses/amlogic-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/amlogic-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: amlogic-linux-firmware +short_name: Amlogic Linux Firmware License +name: Amlogic Linux Firmware License +category: Proprietary Free +owner: Amlogic +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amlogic_vdec +spdx_license_key: LicenseRef-scancode-amlogic-linux-firmware +--- + Amlogic Co., Inc. grants permission to use and redistribute aforementioned firmware files for the use with devices containing Amlogic chipsets, but not as part of the Linux kernel or in any other diff --git a/src/licensedcode/data/licenses/amlogic-linux-firmware.yml b/src/licensedcode/data/licenses/amlogic-linux-firmware.yml deleted file mode 100644 index 60f7b7094f1..00000000000 --- a/src/licensedcode/data/licenses/amlogic-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: amlogic-linux-firmware -short_name: Amlogic Linux Firmware License -name: Amlogic Linux Firmware License -category: Proprietary Free -owner: Amlogic -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.amlogic_vdec -spdx_license_key: LicenseRef-scancode-amlogic-linux-firmware diff --git a/src/licensedcode/data/licenses/ampas.LICENSE b/src/licensedcode/data/licenses/ampas.LICENSE index 090e785f3ce..d42d4c2533d 100644 --- a/src/licensedcode/data/licenses/ampas.LICENSE +++ b/src/licensedcode/data/licenses/ampas.LICENSE @@ -1,3 +1,15 @@ +--- +key: ampas +short_name: AMPAS BSD-Style License +name: Academy of Motion Picture Arts and Sciences BSD-Style +category: Permissive +owner: AMPAS +homepage_url: https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD +spdx_license_key: AMPAS +text_urls: + - https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD +--- + A world-wide, royalty-free, non-exclusive right to distribute, copy, modify, create derivatives, and use, in source and binary forms, is hereby granted, subject to acceptance of this license. Performance of any of the aforementioned acts indicates acceptance to be bound by the following terms and conditions: * Redistributions of source code must retain the above copyright notice, this list of conditions and the Disclaimer of Warranty. diff --git a/src/licensedcode/data/licenses/ampas.yml b/src/licensedcode/data/licenses/ampas.yml deleted file mode 100644 index 38d96fc0222..00000000000 --- a/src/licensedcode/data/licenses/ampas.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ampas -short_name: AMPAS BSD-Style License -name: Academy of Motion Picture Arts and Sciences BSD-Style -category: Permissive -owner: AMPAS -homepage_url: https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD -spdx_license_key: AMPAS -text_urls: - - https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD diff --git a/src/licensedcode/data/licenses/ams-fonts.LICENSE b/src/licensedcode/data/licenses/ams-fonts.LICENSE index af680b9beeb..05153b8af38 100644 --- a/src/licensedcode/data/licenses/ams-fonts.LICENSE +++ b/src/licensedcode/data/licenses/ams-fonts.LICENSE @@ -1,3 +1,15 @@ +--- +key: ams-fonts +short_name: AMSFonts license +name: AMSFonts license +category: Permissive +owner: American Mathematical Society (AMS) +homepage_url: http://www.ams.org/publications/type1-fonts +spdx_license_key: LicenseRef-scancode-ams-fonts +other_urls: + - https://fedoraproject.org/wiki/Licensing:AMS +--- + The PostScript Type 1 implementation of the Computer Modern and AMSFonts produced by and previously distributed by Blue Sky Research and Y&Y, Inc., are now freely available for general use. This has been accomplished through the cooperation of a consortium of scientific publishers with Blue Sky Research and Y&Y. Members of this consortium include: @@ -13,4 +25,4 @@ the legitimate use of the fonts, such as (but not limited to) electronic distrib other public domain or commercial font collections or computer applications, use of the outline data to create derivative fonts or faces, etc. However, the AMS does require that the AMS copyright notice be removed from any derivative versions of the fonts which have been altered in any way. In addition, to ensure the fidelity of TeX documents using Computer Modern fonts, Professor Donald Knuth, creator of the Computer Modern faces, has requested that any -alterations which yield different font metrics be given a different name. \ No newline at end of file +alterations which yield different font metrics be given a different name. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ams-fonts.yml b/src/licensedcode/data/licenses/ams-fonts.yml deleted file mode 100644 index 969fc651f22..00000000000 --- a/src/licensedcode/data/licenses/ams-fonts.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ams-fonts -short_name: AMSFonts license -name: AMSFonts license -category: Permissive -owner: American Mathematical Society (AMS) -homepage_url: http://www.ams.org/publications/type1-fonts -spdx_license_key: LicenseRef-scancode-ams-fonts -other_urls: - - https://fedoraproject.org/wiki/Licensing:AMS diff --git a/src/licensedcode/data/licenses/android-sdk-2009.LICENSE b/src/licensedcode/data/licenses/android-sdk-2009.LICENSE index ba2ad467285..d8a0a285b16 100644 --- a/src/licensedcode/data/licenses/android-sdk-2009.LICENSE +++ b/src/licensedcode/data/licenses/android-sdk-2009.LICENSE @@ -1,3 +1,13 @@ +--- +key: android-sdk-2009 +short_name: Android SDK License 2009 +name: Android Software Development Kit License Agreement 2009 +category: Proprietary Free +owner: Google +homepage_url: https://android.googlesource.com/platform/prebuilts/sdk/+/master/NOTICE +spdx_license_key: LicenseRef-scancode-android-sdk-2009 +--- + ANDROID SOFTWARE DEVELOPMENT KIT Terms and Conditions diff --git a/src/licensedcode/data/licenses/android-sdk-2009.yml b/src/licensedcode/data/licenses/android-sdk-2009.yml deleted file mode 100644 index 98a0b1c5d32..00000000000 --- a/src/licensedcode/data/licenses/android-sdk-2009.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: android-sdk-2009 -short_name: Android SDK License 2009 -name: Android Software Development Kit License Agreement 2009 -category: Proprietary Free -owner: Google -homepage_url: https://android.googlesource.com/platform/prebuilts/sdk/+/master/NOTICE -spdx_license_key: LicenseRef-scancode-android-sdk-2009 diff --git a/src/licensedcode/data/licenses/android-sdk-2012.LICENSE b/src/licensedcode/data/licenses/android-sdk-2012.LICENSE index dcfcffdd6c2..f9520a3ddd7 100644 --- a/src/licensedcode/data/licenses/android-sdk-2012.LICENSE +++ b/src/licensedcode/data/licenses/android-sdk-2012.LICENSE @@ -1,3 +1,15 @@ +--- +key: android-sdk-2012 +short_name: Android SDK License 2012 +name: Android Software Development Kit License Agreement 2012 +category: Proprietary Free +owner: Google +homepage_url: https://developer.android.com/sdk/terms.html +spdx_license_key: LicenseRef-scancode-android-sdk-2012 +ignorable_urls: + - http://source.android.com/ +--- + This is the Android Software Development Kit License Agreement @@ -330,4 +342,4 @@ apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction. -/November 13, 2012/ +/November 13, 2012/ \ No newline at end of file diff --git a/src/licensedcode/data/licenses/android-sdk-2012.yml b/src/licensedcode/data/licenses/android-sdk-2012.yml deleted file mode 100644 index 517022c70c0..00000000000 --- a/src/licensedcode/data/licenses/android-sdk-2012.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: android-sdk-2012 -short_name: Android SDK License 2012 -name: Android Software Development Kit License Agreement 2012 -category: Proprietary Free -owner: Google -homepage_url: https://developer.android.com/sdk/terms.html -spdx_license_key: LicenseRef-scancode-android-sdk-2012 -ignorable_urls: - - http://source.android.com/ diff --git a/src/licensedcode/data/licenses/android-sdk-2021.LICENSE b/src/licensedcode/data/licenses/android-sdk-2021.LICENSE index e2b0a765322..80d1c3b8a67 100644 --- a/src/licensedcode/data/licenses/android-sdk-2021.LICENSE +++ b/src/licensedcode/data/licenses/android-sdk-2021.LICENSE @@ -1,3 +1,19 @@ +--- +key: android-sdk-2021 +short_name: Android SDK License 2021 +name: Android Software Development Kit License Agreement 2021 +category: Proprietary Free +owner: Google +homepage_url: https://developer.android.com/ndk/downloads#lts-downloads +spdx_license_key: LicenseRef-scancode-android-sdk-2021 +ignorable_urls: + - https://developer.android.com/reference/android/speech/RecognitionService + - https://policies.google.com/privacy + - https://privacy.google.com/businesses/gdprprocessorterms + - https://source.android.com/ + - https://source.android.com/compatibility +--- + Terms and Conditions This is the Android Software Development Kit License Agreement diff --git a/src/licensedcode/data/licenses/android-sdk-2021.yml b/src/licensedcode/data/licenses/android-sdk-2021.yml deleted file mode 100644 index 423a6c7f51c..00000000000 --- a/src/licensedcode/data/licenses/android-sdk-2021.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: android-sdk-2021 -short_name: Android SDK License 2021 -name: Android Software Development Kit License Agreement 2021 -category: Proprietary Free -owner: Google -homepage_url: https://developer.android.com/ndk/downloads#lts-downloads -spdx_license_key: LicenseRef-scancode-android-sdk-2021 -ignorable_urls: - - https://developer.android.com/reference/android/speech/RecognitionService - - https://policies.google.com/privacy - - https://privacy.google.com/businesses/gdprprocessorterms - - https://source.android.com/ - - https://source.android.com/compatibility diff --git a/src/licensedcode/data/licenses/android-sdk-license.LICENSE b/src/licensedcode/data/licenses/android-sdk-license.LICENSE index bf9a1b1d66d..7bcab79b0a1 100644 --- a/src/licensedcode/data/licenses/android-sdk-license.LICENSE +++ b/src/licensedcode/data/licenses/android-sdk-license.LICENSE @@ -1,3 +1,16 @@ +--- +key: android-sdk-license +short_name: Android SDK License 2015 +name: Android Software Development Kit License Agreement 2015 +category: Proprietary Free +owner: Google +homepage_url: https://developer.android.com/studio/terms.html +spdx_license_key: LicenseRef-scancode-android-sdk-license +ignorable_urls: + - http://source.android.com/ + - http://source.android.com/compatibility +--- + This is the Android Software Development Kit License Agreement 1. Introduction diff --git a/src/licensedcode/data/licenses/android-sdk-license.yml b/src/licensedcode/data/licenses/android-sdk-license.yml deleted file mode 100644 index 0f95c6efc60..00000000000 --- a/src/licensedcode/data/licenses/android-sdk-license.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: android-sdk-license -short_name: Android SDK License 2015 -name: Android Software Development Kit License Agreement 2015 -category: Proprietary Free -owner: Google -homepage_url: https://developer.android.com/studio/terms.html -spdx_license_key: LicenseRef-scancode-android-sdk-license -ignorable_urls: - - http://source.android.com/ - - http://source.android.com/compatibility diff --git a/src/licensedcode/data/licenses/android-sdk-preview-2015.LICENSE b/src/licensedcode/data/licenses/android-sdk-preview-2015.LICENSE index e464117ce65..708d435d816 100644 --- a/src/licensedcode/data/licenses/android-sdk-preview-2015.LICENSE +++ b/src/licensedcode/data/licenses/android-sdk-preview-2015.LICENSE @@ -1,3 +1,16 @@ +--- +key: android-sdk-preview-2015 +short_name: Android SDK Preview License +name: Android SDK Preview License Agreement +category: Proprietary Free +owner: Google +homepage_url: http://developer.android.com/preview/license.html +spdx_license_key: LicenseRef-scancode-android-sdk-preview-2015 +ignorable_urls: + - http://source.android.com/ + - http://www.google.com/policies/privacy +--- + This is the Android SDK Preview License Agreement (the "License Agreement"). 1. Introduction diff --git a/src/licensedcode/data/licenses/android-sdk-preview-2015.yml b/src/licensedcode/data/licenses/android-sdk-preview-2015.yml deleted file mode 100644 index 610893c0a74..00000000000 --- a/src/licensedcode/data/licenses/android-sdk-preview-2015.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: android-sdk-preview-2015 -short_name: Android SDK Preview License -name: Android SDK Preview License Agreement -category: Proprietary Free -owner: Google -homepage_url: http://developer.android.com/preview/license.html -spdx_license_key: LicenseRef-scancode-android-sdk-preview-2015 -ignorable_urls: - - http://source.android.com/ - - http://www.google.com/policies/privacy diff --git a/src/licensedcode/data/licenses/anepokis-1.0.LICENSE b/src/licensedcode/data/licenses/anepokis-1.0.LICENSE index 80ac264d4f1..17dcbeac805 100644 --- a/src/licensedcode/data/licenses/anepokis-1.0.LICENSE +++ b/src/licensedcode/data/licenses/anepokis-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: anepokis-1.0 +short_name: Anepokis License 1.0 +name: Anepokis License 1.0 +category: Copyleft +owner: Salif Mehmed +homepage_url: https://github.com/salif/anepokis-license +spdx_license_key: LicenseRef-scancode-anepokis-1.0 +text_urls: + - https://salif.github.io/anepokis-license/LICENSE.txt +other_urls: + - https://salif.github.io/anepokis-license/LICENSE.html +ignorable_copyrights: + - Copyright 2005 Lawrence Rosen + - Copyright 2020 Salif Mehmed +ignorable_holders: + - Lawrence Rosen + - Salif Mehmed +--- + Anepokis License v. 1.0 This Anepokis License (the "License") applies to any original work of diff --git a/src/licensedcode/data/licenses/anepokis-1.0.yml b/src/licensedcode/data/licenses/anepokis-1.0.yml deleted file mode 100644 index cd903efd067..00000000000 --- a/src/licensedcode/data/licenses/anepokis-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: anepokis-1.0 -short_name: Anepokis License 1.0 -name: Anepokis License 1.0 -category: Copyleft -owner: Salif Mehmed -homepage_url: https://github.com/salif/anepokis-license -spdx_license_key: LicenseRef-scancode-anepokis-1.0 -text_urls: - - https://salif.github.io/anepokis-license/LICENSE.txt -other_urls: - - https://salif.github.io/anepokis-license/LICENSE.html -ignorable_copyrights: - - Copyright 2005 Lawrence Rosen - - Copyright 2020 Salif Mehmed -ignorable_holders: - - Lawrence Rosen - - Salif Mehmed diff --git a/src/licensedcode/data/licenses/anti-capitalist-1.4.LICENSE b/src/licensedcode/data/licenses/anti-capitalist-1.4.LICENSE index c035be80cde..6cb2c041289 100644 --- a/src/licensedcode/data/licenses/anti-capitalist-1.4.LICENSE +++ b/src/licensedcode/data/licenses/anti-capitalist-1.4.LICENSE @@ -1,3 +1,13 @@ +--- +key: anti-capitalist-1.4 +short_name: ACSL v. 1.4 +name: Anti-Capitalist Software License (v 1.4) +category: Free Restricted +owner: Everest Pipkin and Ramsey Nasser +homepage_url: https://anticapitalist.software/ +spdx_license_key: LicenseRef-scancode-anti-capitalist-1.4 +--- + ANTI-CAPITALIST SOFTWARE LICENSE (v 1.4) This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles. @@ -16,4 +26,4 @@ d. An organization that seeks shared profit for all of its members, and allows n 4. If the User is an organization, then the User is not law enforcement or military, or working for or under either. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 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/licenses/anti-capitalist-1.4.yml b/src/licensedcode/data/licenses/anti-capitalist-1.4.yml deleted file mode 100644 index 81a3479dd7c..00000000000 --- a/src/licensedcode/data/licenses/anti-capitalist-1.4.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: anti-capitalist-1.4 -short_name: ACSL v. 1.4 -name: Anti-Capitalist Software License (v 1.4) -category: Free Restricted -owner: Everest Pipkin and Ramsey Nasser -homepage_url: https://anticapitalist.software/ -spdx_license_key: LicenseRef-scancode-anti-capitalist-1.4 diff --git a/src/licensedcode/data/licenses/antlr-pd-fallback.LICENSE b/src/licensedcode/data/licenses/antlr-pd-fallback.LICENSE index c361cf797e4..1dc1770bfcc 100644 --- a/src/licensedcode/data/licenses/antlr-pd-fallback.LICENSE +++ b/src/licensedcode/data/licenses/antlr-pd-fallback.LICENSE @@ -1,3 +1,20 @@ +--- +key: antlr-pd-fallback +short_name: ANTLR-PD with fallback +name: ANTLR Software Rights Notice with license fallback +category: Public Domain +owner: ANTLR +homepage_url: http://www.antlr2.org/ +notes: | + Per SPDX.org, ANTLR used this public domain notice through version 2.7 and + then switched to a BSD license for version 3.0 and later. +spdx_license_key: ANTLR-PD-fallback +text_urls: + - http://www.antlr2.org/ +other_urls: + - http://www.antlr2.org/license.html +--- + ANTLR 2 License We reserve no legal rights to the ANTLR --it is fully in the public domain. An diff --git a/src/licensedcode/data/licenses/antlr-pd-fallback.yml b/src/licensedcode/data/licenses/antlr-pd-fallback.yml deleted file mode 100644 index 7de7d88c21b..00000000000 --- a/src/licensedcode/data/licenses/antlr-pd-fallback.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: antlr-pd-fallback -short_name: ANTLR-PD with fallback -name: ANTLR Software Rights Notice with license fallback -category: Public Domain -owner: ANTLR -homepage_url: http://www.antlr2.org/ -notes: | - Per SPDX.org, ANTLR used this public domain notice through version 2.7 and - then switched to a BSD license for version 3.0 and later. -spdx_license_key: ANTLR-PD-fallback -text_urls: - - http://www.antlr2.org/ -other_urls: - - http://www.antlr2.org/license.html diff --git a/src/licensedcode/data/licenses/antlr-pd.LICENSE b/src/licensedcode/data/licenses/antlr-pd.LICENSE index fa4b11900f3..a13dd11ea12 100644 --- a/src/licensedcode/data/licenses/antlr-pd.LICENSE +++ b/src/licensedcode/data/licenses/antlr-pd.LICENSE @@ -1,3 +1,26 @@ +--- +key: antlr-pd +short_name: ANTLR-PD +name: ANTLR Software Rights Notice +category: Permissive +owner: ANTLR +homepage_url: http://www.antlr2.org/ +notes: | + Per SPDX.org, ANTLR used this public domain notice through version 2.7 and + then switched to a BSD license for version 3.0 and later. +spdx_license_key: ANTLR-PD +text_urls: + - http://www.antlr2.org/ +other_urls: + - http://www.antlr2.org/license.html + - http://www.spdx.org/licenses/ANTLR-PD +ignorable_authors: + - Terence Parr +ignorable_emails: + - parrt@antlr.org + - parrt@cs.usfca.edu +--- + ANTLR SOFTWARE RIGHTS ANTLR 1989-2006 Developed by Terence Parr diff --git a/src/licensedcode/data/licenses/antlr-pd.yml b/src/licensedcode/data/licenses/antlr-pd.yml deleted file mode 100644 index 2260a27c7c4..00000000000 --- a/src/licensedcode/data/licenses/antlr-pd.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: antlr-pd -short_name: ANTLR-PD -name: ANTLR Software Rights Notice -category: Permissive -owner: ANTLR -homepage_url: http://www.antlr2.org/ -notes: | - Per SPDX.org, ANTLR used this public domain notice through version 2.7 and - then switched to a BSD license for version 3.0 and later. -spdx_license_key: ANTLR-PD -text_urls: - - http://www.antlr2.org/ -other_urls: - - http://www.antlr2.org/license.html - - http://www.spdx.org/licenses/ANTLR-PD -ignorable_authors: - - Terence Parr -ignorable_emails: - - parrt@antlr.org - - parrt@cs.usfca.edu diff --git a/src/licensedcode/data/licenses/anu-license.LICENSE b/src/licensedcode/data/licenses/anu-license.LICENSE index 6019d908f76..4e184c51a66 100644 --- a/src/licensedcode/data/licenses/anu-license.LICENSE +++ b/src/licensedcode/data/licenses/anu-license.LICENSE @@ -1,3 +1,15 @@ +--- +key: anu-license +short_name: ANU License +name: Australian National University License +category: Permissive +owner: ANU Data Mining Group +spdx_license_key: LicenseRef-scancode-anu-license +other_urls: + - http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/net/if_pppvar.h + - http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt +--- + Permission to use, copy, modify, and distribute this software and its documentation is hereby granted, provided that the above copyright notice appears in all copies. This software is provided without any warranty, express diff --git a/src/licensedcode/data/licenses/anu-license.yml b/src/licensedcode/data/licenses/anu-license.yml deleted file mode 100644 index ab189937d2e..00000000000 --- a/src/licensedcode/data/licenses/anu-license.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: anu-license -short_name: ANU License -name: Australian National University License -category: Permissive -owner: ANU Data Mining Group -spdx_license_key: LicenseRef-scancode-anu-license -other_urls: - - http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/net/if_pppvar.h - - http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt diff --git a/src/licensedcode/data/licenses/aop-pd.LICENSE b/src/licensedcode/data/licenses/aop-pd.LICENSE index f08da475af0..c32b09729dc 100644 --- a/src/licensedcode/data/licenses/aop-pd.LICENSE +++ b/src/licensedcode/data/licenses/aop-pd.LICENSE @@ -1,7 +1,16 @@ +--- +key: aop-pd +short_name: AOP-PD +name: AOP Public Domain License +is_deprecated: yes +category: Public Domain +owner: AOP Alliance Project +--- + The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. -Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. +Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/aop-pd.yml b/src/licensedcode/data/licenses/aop-pd.yml deleted file mode 100644 index 6b8974ed96a..00000000000 --- a/src/licensedcode/data/licenses/aop-pd.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: aop-pd -short_name: AOP-PD -name: AOP Public Domain License -is_deprecated: yes -category: Public Domain -owner: AOP Alliance Project diff --git a/src/licensedcode/data/licenses/apache-1.0.LICENSE b/src/licensedcode/data/licenses/apache-1.0.LICENSE index 7d908a5fc8d..de43aea652c 100644 --- a/src/licensedcode/data/licenses/apache-1.0.LICENSE +++ b/src/licensedcode/data/licenses/apache-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: apache-1.0 +short_name: Apache 1.0 +name: Apache License 1.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +spdx_license_key: Apache-1.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-1.0 +faq_url: http://www.apache.org/foundation/licence-FAQ.html +minimum_coverage: 80 +ignorable_authors: + - the Apache Group +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/apache-1.0.yml b/src/licensedcode/data/licenses/apache-1.0.yml deleted file mode 100644 index 229db2541b7..00000000000 --- a/src/licensedcode/data/licenses/apache-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: apache-1.0 -short_name: Apache 1.0 -name: Apache License 1.0 -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ -spdx_license_key: Apache-1.0 -text_urls: - - http://www.apache.org/licenses/LICENSE-1.0 -faq_url: http://www.apache.org/foundation/licence-FAQ.html -minimum_coverage: 80 -ignorable_authors: - - the Apache Group -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/licenses/apache-1.1.LICENSE b/src/licensedcode/data/licenses/apache-1.1.LICENSE index 13f0e3b49cc..0f34307d7ed 100644 --- a/src/licensedcode/data/licenses/apache-1.1.LICENSE +++ b/src/licensedcode/data/licenses/apache-1.1.LICENSE @@ -1,3 +1,33 @@ +--- +key: apache-1.1 +short_name: Apache 1.1 +name: Apache License 1.1 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +notes: | + Per SPDX.org, this license is OSI certified. This license has been + superseded by Apache 2.0 +spdx_license_key: Apache-1.1 +osi_license_key: Apache-1.1 +text_urls: + - http://apache.org/licenses/LICENSE-1.1 +faq_url: http://www.apache.org/foundation/license-faq.html +other_urls: + - http://opensource.org/licenses/Apache-1.1 + - https://opensource.org/licenses/Apache-1.1 +ignorable_copyrights: + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Copyright (c) 2000 The Apache Software Foundation. All rights @@ -42,4 +72,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/apache-1.1.yml b/src/licensedcode/data/licenses/apache-1.1.yml deleted file mode 100644 index 94220f078f8..00000000000 --- a/src/licensedcode/data/licenses/apache-1.1.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: apache-1.1 -short_name: Apache 1.1 -name: Apache License 1.1 -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ -notes: | - Per SPDX.org, this license is OSI certified. This license has been - superseded by Apache 2.0 -spdx_license_key: Apache-1.1 -osi_license_key: Apache-1.1 -text_urls: - - http://apache.org/licenses/LICENSE-1.1 -faq_url: http://www.apache.org/foundation/license-faq.html -other_urls: - - http://opensource.org/licenses/Apache-1.1 - - https://opensource.org/licenses/Apache-1.1 -ignorable_copyrights: - - Copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/licenses/apache-2.0-linking-exception.LICENSE b/src/licensedcode/data/licenses/apache-2.0-linking-exception.LICENSE index fa5c481a56f..0e9511aeed1 100644 --- a/src/licensedcode/data/licenses/apache-2.0-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/apache-2.0-linking-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: apache-2.0-linking-exception +short_name: Apache 2.0 with Linking Exception +name: Apache 2.0 with Linking Exception +category: Permissive +owner: compuphase +homepage_url: https://github.com/compuphase/minIni/blob/master/LICENSE +is_exception: yes +is_deprecated: yes +--- + EXCEPTION TO THE APACHE 2.0 LICENSE As a special exception to the Apache License 2.0 (and referring to the @@ -7,4 +18,4 @@ containing portions of the "Work", and distribute that executable file in "Object" form under the terms of your choice, without any of the additional requirements listed in Section 4 of the Apache License 2.0. This exception applies only to redistributions in "Object" form (not -"Source" form) and only if no modifications have been made to the "Work". +"Source" form) and only if no modifications have been made to the "Work". \ No newline at end of file diff --git a/src/licensedcode/data/licenses/apache-2.0-linking-exception.yml b/src/licensedcode/data/licenses/apache-2.0-linking-exception.yml deleted file mode 100644 index cf4f2e72da1..00000000000 --- a/src/licensedcode/data/licenses/apache-2.0-linking-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: apache-2.0-linking-exception -short_name: Apache 2.0 with Linking Exception -name: Apache 2.0 with Linking Exception -category: Permissive -owner: compuphase -homepage_url: https://github.com/compuphase/minIni/blob/master/LICENSE -is_exception: yes -is_deprecated: yes diff --git a/src/licensedcode/data/licenses/apache-2.0-runtime-library-exception.LICENSE b/src/licensedcode/data/licenses/apache-2.0-runtime-library-exception.LICENSE index 3c6988a7866..a2f19a21a4a 100644 --- a/src/licensedcode/data/licenses/apache-2.0-runtime-library-exception.LICENSE +++ b/src/licensedcode/data/licenses/apache-2.0-runtime-library-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: apache-2.0-runtime-library-exception +short_name: Apache 2.0 with Runtime Library Exception +name: Apache 2.0 with Runtime Library Exception +category: Permissive +owner: Apple +homepage_url: https://github.com/apple/swift/blob/master/LICENSE.txt#L205 +is_exception: yes +other_urls: + - https://swift.org/ +is_deprecated: yes +--- + ## Runtime Library Exception to the Apache 2.0 License: ## As an exception, if you use this Software to compile your source code and diff --git a/src/licensedcode/data/licenses/apache-2.0-runtime-library-exception.yml b/src/licensedcode/data/licenses/apache-2.0-runtime-library-exception.yml deleted file mode 100644 index 6529d5bdfc2..00000000000 --- a/src/licensedcode/data/licenses/apache-2.0-runtime-library-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: apache-2.0-runtime-library-exception -short_name: Apache 2.0 with Runtime Library Exception -name: Apache 2.0 with Runtime Library Exception -category: Permissive -owner: Apple -homepage_url: https://github.com/apple/swift/blob/master/LICENSE.txt#L205 -is_exception: yes -other_urls: - - https://swift.org/ -is_deprecated: yes diff --git a/src/licensedcode/data/licenses/apache-2.0.LICENSE b/src/licensedcode/data/licenses/apache-2.0.LICENSE index f49a4e16e68..214cb36c807 100644 --- a/src/licensedcode/data/licenses/apache-2.0.LICENSE +++ b/src/licensedcode/data/licenses/apache-2.0.LICENSE @@ -1,3 +1,31 @@ +--- +key: apache-2.0 +short_name: Apache 2.0 +name: Apache License 2.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +notes: | + Per SPDX.org, this version was released January 2004 This license is OSI + certified +spdx_license_key: Apache-2.0 +other_spdx_license_keys: + - LicenseRef-Apache + - LicenseRef-Apache-2.0 +osi_license_key: Apache-2.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +osi_url: http://opensource.org/licenses/apache2.0.php +faq_url: http://www.apache.org/foundation/licence-FAQ.html +other_urls: + - http://www.opensource.org/licenses/Apache-2.0 + - https://opensource.org/licenses/Apache-2.0 + - https://www.apache.org/licenses/LICENSE-2.0 +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/ diff --git a/src/licensedcode/data/licenses/apache-2.0.yml b/src/licensedcode/data/licenses/apache-2.0.yml deleted file mode 100644 index 89a8ad2b424..00000000000 --- a/src/licensedcode/data/licenses/apache-2.0.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: apache-2.0 -short_name: Apache 2.0 -name: Apache License 2.0 -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ -notes: | - Per SPDX.org, this version was released January 2004 This license is OSI - certified -spdx_license_key: Apache-2.0 -other_spdx_license_keys: - - LicenseRef-Apache - - LicenseRef-Apache-2.0 -osi_license_key: Apache-2.0 -text_urls: - - http://www.apache.org/licenses/LICENSE-2.0 -osi_url: http://opensource.org/licenses/apache2.0.php -faq_url: http://www.apache.org/foundation/licence-FAQ.html -other_urls: - - http://www.opensource.org/licenses/Apache-2.0 - - https://opensource.org/licenses/Apache-2.0 - - https://www.apache.org/licenses/LICENSE-2.0 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/licenses/apache-due-credit.LICENSE b/src/licensedcode/data/licenses/apache-due-credit.LICENSE index 1d71aefa5a3..56e24f0cb99 100644 --- a/src/licensedcode/data/licenses/apache-due-credit.LICENSE +++ b/src/licensedcode/data/licenses/apache-due-credit.LICENSE @@ -1,3 +1,19 @@ +--- +key: apache-due-credit +is_deprecated: yes +short_name: Apache Due Credit Variant +name: Apache Due Credit Variant +category: Permissive +owner: Codehaus +notes: replaced by dom4j +other_urls: + - http://openorb.sourceforge.net/license.txt + - http://opensource.dell.com/releases/Dell_Active_System_Manager/1.0.0/license_text/DOM4J-2005-BSD-Style.pdf + - http://www.oracle.com/technetwork/java/javaee/portalpack2-149804.txt + - https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642 + - https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: @@ -30,4 +46,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/apache-due-credit.yml b/src/licensedcode/data/licenses/apache-due-credit.yml deleted file mode 100644 index 4d4924fe90f..00000000000 --- a/src/licensedcode/data/licenses/apache-due-credit.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: apache-due-credit -is_deprecated: yes -short_name: Apache Due Credit Variant -name: Apache Due Credit Variant -category: Permissive -owner: Codehaus -notes: replaced by dom4j -other_urls: - - http://openorb.sourceforge.net/license.txt - - http://opensource.dell.com/releases/Dell_Active_System_Manager/1.0.0/license_text/DOM4J-2005-BSD-Style.pdf - - http://www.oracle.com/technetwork/java/javaee/portalpack2-149804.txt - - https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642 - - https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant diff --git a/src/licensedcode/data/licenses/apache-exception-llvm.LICENSE b/src/licensedcode/data/licenses/apache-exception-llvm.LICENSE index 9626bf1c844..4de35cd9dea 100644 --- a/src/licensedcode/data/licenses/apache-exception-llvm.LICENSE +++ b/src/licensedcode/data/licenses/apache-exception-llvm.LICENSE @@ -1,3 +1,17 @@ +--- +key: apache-exception-llvm +short_name: Apache-Exception-llvm +name: Apache Exception LLVM +category: Permissive +owner: Apache Software Foundation +homepage_url: https://lists.spdx.org +is_exception: yes +is_deprecated: yes +notes: Replaced by llvm-exception +text_urls: + - https://lists.spdx.org/pipermail/spdx-legal/2017-December/002421.html +--- + ---- LLVM Exceptions to the Apache 2.0 License ---- As an exception, if, as a result of your compiling your source code, portions @@ -12,4 +26,4 @@ court of competent jurisdiction determines that the patent provision (Section conflicts with the conditions of the GPLv2, you may retroactively and prospectively choose to deem waived or otherwise exclude such Section(s) of the License, but only in their entirety and only with respect to the Combined -Software. +Software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/apache-exception-llvm.yml b/src/licensedcode/data/licenses/apache-exception-llvm.yml deleted file mode 100644 index d309c5a1c92..00000000000 --- a/src/licensedcode/data/licenses/apache-exception-llvm.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: apache-exception-llvm -short_name: Apache-Exception-llvm -name: Apache Exception LLVM -category: Permissive -owner: Apache Software Foundation -homepage_url: https://lists.spdx.org -is_exception: yes -is_deprecated: yes -notes: Replaced by llvm-exception -text_urls: - - https://lists.spdx.org/pipermail/spdx-legal/2017-December/002421.html diff --git a/src/licensedcode/data/licenses/apache-patent-exception.LICENSE b/src/licensedcode/data/licenses/apache-patent-exception.LICENSE index eba855768f0..d6911eb56b3 100644 --- a/src/licensedcode/data/licenses/apache-patent-exception.LICENSE +++ b/src/licensedcode/data/licenses/apache-patent-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: apache-patent-exception +short_name: Apache Patent Provision Exception Terms +name: Apache Patent Provision Exception Terms +category: Permissive +owner: Michael R Sweet +homepage_url: https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE +is_exception: yes +spdx_license_key: LicenseRef-scancode-apache-patent-exception +other_spdx_license_keys: + - LicenseRef-scancode-apache-patent-provision-exception +--- + (Optional) Exceptions to the Apache 2.0 License: ================================================ diff --git a/src/licensedcode/data/licenses/apache-patent-exception.yml b/src/licensedcode/data/licenses/apache-patent-exception.yml deleted file mode 100644 index 80cd4c4d424..00000000000 --- a/src/licensedcode/data/licenses/apache-patent-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: apache-patent-exception -short_name: Apache Patent Provision Exception Terms -name: Apache Patent Provision Exception Terms -category: Permissive -owner: Michael R Sweet -homepage_url: https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE -is_exception: yes -spdx_license_key: LicenseRef-scancode-apache-patent-exception -other_spdx_license_keys: - - LicenseRef-scancode-apache-patent-provision-exception diff --git a/src/licensedcode/data/licenses/apache-patent-provision-exception.LICENSE b/src/licensedcode/data/licenses/apache-patent-provision-exception.LICENSE index eba855768f0..2d00350d6c1 100644 --- a/src/licensedcode/data/licenses/apache-patent-provision-exception.LICENSE +++ b/src/licensedcode/data/licenses/apache-patent-provision-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: apache-patent-provision-exception +is_deprecated: yes +short_name: Apache Patent Provision Exception Deprecated +name: Apache Patent Provision Exception Deprecated +category: Permissive +owner: Michael R Sweet +homepage_url: https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE +is_exception: yes +--- + (Optional) Exceptions to the Apache 2.0 License: ================================================ diff --git a/src/licensedcode/data/licenses/apache-patent-provision-exception.yml b/src/licensedcode/data/licenses/apache-patent-provision-exception.yml deleted file mode 100644 index c5852918441..00000000000 --- a/src/licensedcode/data/licenses/apache-patent-provision-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: apache-patent-provision-exception -is_deprecated: yes -short_name: Apache Patent Provision Exception Deprecated -name: Apache Patent Provision Exception Deprecated -category: Permissive -owner: Michael R Sweet -homepage_url: https://github.com/michaelrsweet/mxml/blob/c44aa254ccd90b10b260f04cf9e499bbf971c257/NOTICE -is_exception: yes diff --git a/src/licensedcode/data/licenses/apafml.LICENSE b/src/licensedcode/data/licenses/apafml.LICENSE index b5d6b28aab9..188f1a333f6 100644 --- a/src/licensedcode/data/licenses/apafml.LICENSE +++ b/src/licensedcode/data/licenses/apafml.LICENSE @@ -1,3 +1,13 @@ +--- +key: apafml +short_name: Adobe Postscript AFM License +name: Adobe Postscript AFM License +category: Permissive +owner: Adobe Systems +homepage_url: https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM +spdx_license_key: APAFML +--- + This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, and distributed for any purpose and without charge, with or without modification, provided that all copyright notices are retained; that the AFM diff --git a/src/licensedcode/data/licenses/apafml.yml b/src/licensedcode/data/licenses/apafml.yml deleted file mode 100644 index e1526a69a87..00000000000 --- a/src/licensedcode/data/licenses/apafml.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: apafml -short_name: Adobe Postscript AFM License -name: Adobe Postscript AFM License -category: Permissive -owner: Adobe Systems -homepage_url: https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM -spdx_license_key: APAFML diff --git a/src/licensedcode/data/licenses/apl-1.1.LICENSE b/src/licensedcode/data/licenses/apl-1.1.LICENSE index 3fcd13ef9a5..61da8f89e40 100644 --- a/src/licensedcode/data/licenses/apl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/apl-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: apl-1.1 +short_name: APL-1.1 +name: Academic Public License version 1.1 +category: Copyleft Limited +owner: OMNeT++ +homepage_url: https://github.com/omnetpp/omnetpp/blob/master/doc/License +spdx_license_key: LicenseRef-scancode-apl-1.1 +other_urls: + - https://opencarp.org/download/license +ignorable_copyrights: + - Copyright (c) 2003, 2010, 2015 Andras Varga +ignorable_holders: + - Andras Varga +ignorable_urls: + - http://www.omnest.com/ +--- + ACADEMIC PUBLIC LICENSE version 1.1 diff --git a/src/licensedcode/data/licenses/apl-1.1.yml b/src/licensedcode/data/licenses/apl-1.1.yml deleted file mode 100644 index 11e31cadaac..00000000000 --- a/src/licensedcode/data/licenses/apl-1.1.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: apl-1.1 -short_name: APL-1.1 -name: Academic Public License version 1.1 -category: Copyleft Limited -owner: OMNeT++ -homepage_url: https://github.com/omnetpp/omnetpp/blob/master/doc/License -spdx_license_key: LicenseRef-scancode-apl-1.1 -other_urls: - - https://opencarp.org/download/license -ignorable_copyrights: - - Copyright (c) 2003, 2010, 2015 Andras Varga -ignorable_holders: - - Andras Varga -ignorable_urls: - - http://www.omnest.com/ diff --git a/src/licensedcode/data/licenses/app-s2p.LICENSE b/src/licensedcode/data/licenses/app-s2p.LICENSE index 27bcbc86e35..496c18e1ddc 100644 --- a/src/licensedcode/data/licenses/app-s2p.LICENSE +++ b/src/licensedcode/data/licenses/app-s2p.LICENSE @@ -1,3 +1,15 @@ +--- +key: app-s2p +short_name: App::s2p License +name: App::s2p License +category: Permissive +owner: Fedora +homepage_url: https://fedoraproject.org/wiki/Licensing/App-s2p +spdx_license_key: App-s2p +other_urls: + - https://fedoraproject.org/wiki/Licensing/App-s2p +--- + COPYRIGHT and LICENSE This program is free and open software. You may use, modify, diff --git a/src/licensedcode/data/licenses/app-s2p.yml b/src/licensedcode/data/licenses/app-s2p.yml deleted file mode 100644 index f8521851288..00000000000 --- a/src/licensedcode/data/licenses/app-s2p.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: app-s2p -short_name: App::s2p License -name: App::s2p License -category: Permissive -owner: Fedora -homepage_url: https://fedoraproject.org/wiki/Licensing/App-s2p -spdx_license_key: App-s2p -other_urls: - - https://fedoraproject.org/wiki/Licensing/App-s2p diff --git a/src/licensedcode/data/licenses/appfire-eula.LICENSE b/src/licensedcode/data/licenses/appfire-eula.LICENSE index 63587fb1b67..0b96697f11b 100644 --- a/src/licensedcode/data/licenses/appfire-eula.LICENSE +++ b/src/licensedcode/data/licenses/appfire-eula.LICENSE @@ -1,3 +1,24 @@ +--- +key: appfire-eula +short_name: Appfire EULA +name: Appfire EULA +category: Proprietary Free +owner: Appfire +homepage_url: http://appfire.com/eula +spdx_license_key: LicenseRef-scancode-appfire-eula +ignorable_urls: + - https://bobswift.atlassian.net/ + - https://bobswift.atlassian.net/wiki/questions + - https://marketplace.atlassian.com/ + - https://wittified.atlassian.net/ + - https://wittified.atlassian.net/wiki/questions + - https://www.atlassian.com/licensing/marketplace/termsofuse +ignorable_emails: + - legal@appfire.com + - operations@appfire.com + - unsubscribe@appfire.com +--- + Appfire EULA IMPORTANT! BE SURE TO CAREFULLY READ AND UNDERSTAND ALL OF THE RIGHTS AND RESTRICTIONS SET FORTH IN THIS END USER LICENSE AGREEMENT (“EULA”). YOU ARE NOT AUTHORIZED TO USE THIS SOFTWARE UNLESS AND UNTIL YOU ACCEPT THE TERMS OF THIS EULA. diff --git a/src/licensedcode/data/licenses/appfire-eula.yml b/src/licensedcode/data/licenses/appfire-eula.yml deleted file mode 100644 index b9e9bd5b50a..00000000000 --- a/src/licensedcode/data/licenses/appfire-eula.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: appfire-eula -short_name: Appfire EULA -name: Appfire EULA -category: Proprietary Free -owner: Appfire -homepage_url: http://appfire.com/eula -spdx_license_key: LicenseRef-scancode-appfire-eula -ignorable_urls: - - https://bobswift.atlassian.net/ - - https://bobswift.atlassian.net/wiki/questions - - https://marketplace.atlassian.com/ - - https://wittified.atlassian.net/ - - https://wittified.atlassian.net/wiki/questions - - https://www.atlassian.com/licensing/marketplace/termsofuse -ignorable_emails: - - legal@appfire.com - - operations@appfire.com - - unsubscribe@appfire.com diff --git a/src/licensedcode/data/licenses/apple-attribution-1997.LICENSE b/src/licensedcode/data/licenses/apple-attribution-1997.LICENSE index 07e2d655a3e..d7a6ff3306c 100644 --- a/src/licensedcode/data/licenses/apple-attribution-1997.LICENSE +++ b/src/licensedcode/data/licenses/apple-attribution-1997.LICENSE @@ -1,3 +1,13 @@ +--- +key: apple-attribution-1997 +short_name: Apple Attribution 1997 +name: Apple Attribution License 1997 +category: Permissive +owner: Apple +homepage_url: http://www.opensource.apple.com/source/diskdev_cmds/diskdev_cmds-208.11.2/pdisk.tproj/pdisk.h +spdx_license_key: LicenseRef-scancode-apple-attribution-1997 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and @@ -12,4 +22,4 @@ IN NO EVENT SHALL APPLE COMPUTER BE LIABLE FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION -WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/apple-attribution-1997.yml b/src/licensedcode/data/licenses/apple-attribution-1997.yml deleted file mode 100644 index 8312c9a82af..00000000000 --- a/src/licensedcode/data/licenses/apple-attribution-1997.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: apple-attribution-1997 -short_name: Apple Attribution 1997 -name: Apple Attribution License 1997 -category: Permissive -owner: Apple -homepage_url: http://www.opensource.apple.com/source/diskdev_cmds/diskdev_cmds-208.11.2/pdisk.tproj/pdisk.h -spdx_license_key: LicenseRef-scancode-apple-attribution-1997 diff --git a/src/licensedcode/data/licenses/apple-attribution.LICENSE b/src/licensedcode/data/licenses/apple-attribution.LICENSE index 1a8b232eeb8..081505780fd 100644 --- a/src/licensedcode/data/licenses/apple-attribution.LICENSE +++ b/src/licensedcode/data/licenses/apple-attribution.LICENSE @@ -1,3 +1,13 @@ +--- +key: apple-attribution +short_name: Apple Attribution License +name: Apple Attribution License +category: Permissive +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-attribution +minimum_coverage: 80 +--- + Warranty Information Even though Apple has reviewed this software, Apple makes no warranty or representation, either express or implied, with respect to this @@ -7,4 +17,4 @@ and you, its user, are assuming the entire risk as to its quality and accuracy. This code may be used and freely distributed as long as it includes -this copyright notice and the warranty information. +this copyright notice and the warranty information. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/apple-attribution.yml b/src/licensedcode/data/licenses/apple-attribution.yml deleted file mode 100644 index 71387fc27d8..00000000000 --- a/src/licensedcode/data/licenses/apple-attribution.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: apple-attribution -short_name: Apple Attribution License -name: Apple Attribution License -category: Permissive -owner: Apple -spdx_license_key: LicenseRef-scancode-apple-attribution -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/apple-excl.LICENSE b/src/licensedcode/data/licenses/apple-excl.LICENSE index 58d01ed1095..08c68c469dc 100644 --- a/src/licensedcode/data/licenses/apple-excl.LICENSE +++ b/src/licensedcode/data/licenses/apple-excl.LICENSE @@ -1,3 +1,12 @@ +--- +key: apple-excl +short_name: Apple Example Code License +name: Apple Example Code License +category: Permissive +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-excl +--- + Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software diff --git a/src/licensedcode/data/licenses/apple-excl.yml b/src/licensedcode/data/licenses/apple-excl.yml deleted file mode 100644 index cb7dc149e63..00000000000 --- a/src/licensedcode/data/licenses/apple-excl.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: apple-excl -short_name: Apple Example Code License -name: Apple Example Code License -category: Permissive -owner: Apple -spdx_license_key: LicenseRef-scancode-apple-excl diff --git a/src/licensedcode/data/licenses/apple-mfi-license.LICENSE b/src/licensedcode/data/licenses/apple-mfi-license.LICENSE index dacf2ee0d95..6c3f450b1af 100644 --- a/src/licensedcode/data/licenses/apple-mfi-license.LICENSE +++ b/src/licensedcode/data/licenses/apple-mfi-license.LICENSE @@ -1,3 +1,12 @@ +--- +key: apple-mfi-license +short_name: Apple MFi License +name: Apple MFi License +category: Proprietary Free +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-mfi-license +--- + Disclaimer: IMPORTANT: This Apple software is supplied to you, by Apple Inc. ("Apple"), in your capacity as a current, and in good standing, Licensee in the MFi Licensing Program. Use of this Apple software is governed by and subject to the terms and conditions of your MFi License, diff --git a/src/licensedcode/data/licenses/apple-mfi-license.yml b/src/licensedcode/data/licenses/apple-mfi-license.yml deleted file mode 100644 index adf9d1bef6f..00000000000 --- a/src/licensedcode/data/licenses/apple-mfi-license.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: apple-mfi-license -short_name: Apple MFi License -name: Apple MFi License -category: Proprietary Free -owner: Apple -spdx_license_key: LicenseRef-scancode-apple-mfi-license diff --git a/src/licensedcode/data/licenses/apple-mpeg-4.LICENSE b/src/licensedcode/data/licenses/apple-mpeg-4.LICENSE index 16de87bee81..d261885e31b 100644 --- a/src/licensedcode/data/licenses/apple-mpeg-4.LICENSE +++ b/src/licensedcode/data/licenses/apple-mpeg-4.LICENSE @@ -1,3 +1,16 @@ +--- +key: apple-mpeg-4 +short_name: Apple MPEG-4 License +name: Apple MPEG-4 License +category: Free Restricted +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-mpeg-4 +ignorable_copyrights: + - Copyright (c) 1999 +ignorable_authors: + - Apple Computer, Inc. +--- + This software module was originally developed by Apple Computer, Inc. in the course of development of MPEG-4. This software module is an implementation of a part of one or more MPEG-4 tools as specified by MPEG-4. ISO/IEC gives users @@ -12,4 +25,4 @@ MPEG-4 conforming products. Apple Computer, Inc. retains full right to use the code for its own purpose, assign or donate the code to a third party and to inhibit third parties from using the code for non MPEG-4 conforming products. This copyright notice must be included in all copies or derivative works. -Copyright (c) 1999. +Copyright (c) 1999. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/apple-mpeg-4.yml b/src/licensedcode/data/licenses/apple-mpeg-4.yml deleted file mode 100644 index d56b5bdbfce..00000000000 --- a/src/licensedcode/data/licenses/apple-mpeg-4.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: apple-mpeg-4 -short_name: Apple MPEG-4 License -name: Apple MPEG-4 License -category: Free Restricted -owner: Apple -spdx_license_key: LicenseRef-scancode-apple-mpeg-4 -ignorable_copyrights: - - Copyright (c) 1999 -ignorable_authors: - - Apple Computer, Inc. diff --git a/src/licensedcode/data/licenses/apple-runtime-library-exception.LICENSE b/src/licensedcode/data/licenses/apple-runtime-library-exception.LICENSE index dc362221c01..c9383721c26 100644 --- a/src/licensedcode/data/licenses/apple-runtime-library-exception.LICENSE +++ b/src/licensedcode/data/licenses/apple-runtime-library-exception.LICENSE @@ -1,3 +1,34 @@ +--- +key: apple-runtime-library-exception +short_name: Runtime Library Exception to Apache 2.0 +name: Runtime Library Exception to the Apache 2.0 License +category: Permissive +owner: Apple +homepage_url: https://github.com/apple/swift/blob/master/LICENSE.txt#L205 +is_exception: yes +spdx_license_key: Swift-exception +text_urls: + - https://github.com/apple/swift-package-manager/blob/7ab2275f447a5eb37497ed63a9340f8a6d1e488b/LICENSE.txt#L205 + - https://swift.org/LICENSE.txt +other_urls: + - https://swift.org/ +standard_notice: | + 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. + ## Runtime Library Exception to the Apache 2.0 License: ## + As an exception, if you use this Software to compile your source code and + portions of this Software are embedded into the binary product as a result, + you may redistribute such product without providing attribution as would + otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. +--- + Runtime Library Exception to the Apache 2.0 License As an exception, if you use this Software to compile your source code and diff --git a/src/licensedcode/data/licenses/apple-runtime-library-exception.yml b/src/licensedcode/data/licenses/apple-runtime-library-exception.yml deleted file mode 100644 index 3d328ba33b5..00000000000 --- a/src/licensedcode/data/licenses/apple-runtime-library-exception.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: apple-runtime-library-exception -short_name: Runtime Library Exception to Apache 2.0 -name: Runtime Library Exception to the Apache 2.0 License -category: Permissive -owner: Apple -homepage_url: https://github.com/apple/swift/blob/master/LICENSE.txt#L205 -is_exception: yes -spdx_license_key: Swift-exception -text_urls: - - https://github.com/apple/swift-package-manager/blob/7ab2275f447a5eb37497ed63a9340f8a6d1e488b/LICENSE.txt#L205 - - https://swift.org/LICENSE.txt -other_urls: - - https://swift.org/ -standard_notice: | - 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. - ## Runtime Library Exception to the Apache 2.0 License: ## - As an exception, if you use this Software to compile your source code and - portions of this Software are embedded into the binary product as a result, - you may redistribute such product without providing attribution as would - otherwise be required by Sections 4(a), 4(b) and 4(d) of the License. diff --git a/src/licensedcode/data/licenses/apple-sscl.LICENSE b/src/licensedcode/data/licenses/apple-sscl.LICENSE index 224cca3e985..4fb4884d75c 100644 --- a/src/licensedcode/data/licenses/apple-sscl.LICENSE +++ b/src/licensedcode/data/licenses/apple-sscl.LICENSE @@ -1,3 +1,12 @@ +--- +key: apple-sscl +short_name: Apple Sample Source Code License +name: Apple Sample Source Code License +category: Permissive +owner: Apple +spdx_license_key: LicenseRef-scancode-apple-sscl +--- + Apple Sample Source Code License You may incorporate this Apple sample source code into your program(s) without restriction. This Apple sample source code has been provided "AS IS" and the responsibility for its operation is yours. You are not permitted to redistribute this Apple sample source code as "Apple sample source code" after having made changes. If you're going to re-distribute the source, we require that you make it clear in the source that the code was descended from Apple sample source code, but that you've made changes. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/apple-sscl.yml b/src/licensedcode/data/licenses/apple-sscl.yml deleted file mode 100644 index c0877243434..00000000000 --- a/src/licensedcode/data/licenses/apple-sscl.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: apple-sscl -short_name: Apple Sample Source Code License -name: Apple Sample Source Code License -category: Permissive -owner: Apple -spdx_license_key: LicenseRef-scancode-apple-sscl diff --git a/src/licensedcode/data/licenses/appsflyer-framework.LICENSE b/src/licensedcode/data/licenses/appsflyer-framework.LICENSE index 89015a78de1..c0797bdcfcc 100644 --- a/src/licensedcode/data/licenses/appsflyer-framework.LICENSE +++ b/src/licensedcode/data/licenses/appsflyer-framework.LICENSE @@ -1,3 +1,18 @@ +--- +key: appsflyer-framework +short_name: AppsFlyer Framework License +name: AppsFlyer Framework License +category: Proprietary Free +owner: AppsFlyer +homepage_url: https://github.com/AppsFlyerSDK/AppsFlyerFramework/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-appsflyer-framework +ignorable_urls: + - https://www.appsflyer.com/gdpr/dpa.pdf + - https://www.appsflyer.com/privacy-policy +ignorable_emails: + - support@appsflyer.com +--- + Terms of Use AppsFlyer Ltd. (“AppsFlyer” or “us”, “our”, “we”) provides a software development kit which allows the tracking of mobile application use, installations and downloads (the “Service(s)”). These Terms of use (this “Agreement”) govern your access and use of the Services, and any code provided by AppsFlyer. “You”/”Company” means any third party that uses the Service. diff --git a/src/licensedcode/data/licenses/appsflyer-framework.yml b/src/licensedcode/data/licenses/appsflyer-framework.yml deleted file mode 100644 index 807851d2cd2..00000000000 --- a/src/licensedcode/data/licenses/appsflyer-framework.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: appsflyer-framework -short_name: AppsFlyer Framework License -name: AppsFlyer Framework License -category: Proprietary Free -owner: AppsFlyer -homepage_url: https://github.com/AppsFlyerSDK/AppsFlyerFramework/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-appsflyer-framework -ignorable_urls: - - https://www.appsflyer.com/gdpr/dpa.pdf - - https://www.appsflyer.com/privacy-policy -ignorable_emails: - - support@appsflyer.com diff --git a/src/licensedcode/data/licenses/apsl-1.0.LICENSE b/src/licensedcode/data/licenses/apsl-1.0.LICENSE index 57f59f2bc8d..0f59549db04 100644 --- a/src/licensedcode/data/licenses/apsl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/apsl-1.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: apsl-1.0 +short_name: APSL 1.0 +name: Apple Public Source License 1.0 +category: Copyleft Limited +owner: Apple +homepage_url: http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text +notes: Per SPDX.org, this license was released 16 March 1999. +spdx_license_key: APSL-1.0 +text_urls: + - http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text +other_urls: + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0 +ignorable_copyrights: + - Portions Copyright (c) 1999 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.apple.com/publicsource + - http://www.apple.com/publicsource/modifications.html +--- + APPLE PUBLIC SOURCE LICENSE Version 1.0 - March 16, 1999 diff --git a/src/licensedcode/data/licenses/apsl-1.0.yml b/src/licensedcode/data/licenses/apsl-1.0.yml deleted file mode 100644 index ed5f31cc154..00000000000 --- a/src/licensedcode/data/licenses/apsl-1.0.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: apsl-1.0 -short_name: APSL 1.0 -name: Apple Public Source License 1.0 -category: Copyleft Limited -owner: Apple -homepage_url: http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text -notes: Per SPDX.org, this license was released 16 March 1999. -spdx_license_key: APSL-1.0 -text_urls: - - http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE?f=text -other_urls: - - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0 -ignorable_copyrights: - - Portions Copyright (c) 1999 Apple Computer, Inc. -ignorable_holders: - - Apple Computer, Inc. -ignorable_urls: - - http://www.apple.com/legal/guidelinesfor3rdparties.html - - http://www.apple.com/publicsource - - http://www.apple.com/publicsource/modifications.html diff --git a/src/licensedcode/data/licenses/apsl-1.1.LICENSE b/src/licensedcode/data/licenses/apsl-1.1.LICENSE index 39481260036..2a2bed73f22 100644 --- a/src/licensedcode/data/licenses/apsl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/apsl-1.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: apsl-1.1 +short_name: APSL 1.1 +name: Apple Public Source License 1.1 +category: Copyleft Limited +owner: Apple +homepage_url: http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/ +notes: Per SPDX.org, this license was released 19 April 1999. +spdx_license_key: APSL-1.1 +text_urls: + - http://www.opensource.apple.com/apsl/1.1.txt + - http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE +faq_url: http://www.gnu.org/philosophy/historical-apsl.html +other_urls: + - http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/ + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1 +ignorable_copyrights: + - Portions Copyright (c) 1999-2000 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.apple.com/publicsource + - http://www.apple.com/publicsource/modifications.html +--- + APPLE PUBLIC SOURCE LICENSE Version 1.1 - April 19,1999 diff --git a/src/licensedcode/data/licenses/apsl-1.1.yml b/src/licensedcode/data/licenses/apsl-1.1.yml deleted file mode 100644 index bccaa23c33f..00000000000 --- a/src/licensedcode/data/licenses/apsl-1.1.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: apsl-1.1 -short_name: APSL 1.1 -name: Apple Public Source License 1.1 -category: Copyleft Limited -owner: Apple -homepage_url: http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/ -notes: Per SPDX.org, this license was released 19 April 1999. -spdx_license_key: APSL-1.1 -text_urls: - - http://www.opensource.apple.com/apsl/1.1.txt - - http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE -faq_url: http://www.gnu.org/philosophy/historical-apsl.html -other_urls: - - http://web.archive.org/web/20000901055846/http://www.opensource.apple.com/apsl/ - - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1 -ignorable_copyrights: - - Portions Copyright (c) 1999-2000 Apple Computer, Inc. -ignorable_holders: - - Apple Computer, Inc. -ignorable_urls: - - http://www.apple.com/legal/guidelinesfor3rdparties.html - - http://www.apple.com/publicsource - - http://www.apple.com/publicsource/modifications.html diff --git a/src/licensedcode/data/licenses/apsl-1.2.LICENSE b/src/licensedcode/data/licenses/apsl-1.2.LICENSE index 3d2065af18d..8a80fd3deb3 100644 --- a/src/licensedcode/data/licenses/apsl-1.2.LICENSE +++ b/src/licensedcode/data/licenses/apsl-1.2.LICENSE @@ -1,3 +1,32 @@ +--- +key: apsl-1.2 +short_name: APSL 1.2 +name: Apple Public Source License 1.2 +category: Copyleft Limited +owner: Apple +homepage_url: http://www.opensource.apple.com/apsl/1.2.txt +notes: | + Per SPDX.org, this license was released 4 Jan 2001. This license was OSI + certified +spdx_license_key: APSL-1.2 +text_urls: + - http://web.archive.org/web/20010302160215/http://www.opensource.apple.com/apsl/ + - http://www.samurajdata.se/opensource/mirror/licenses/apsl.php +osi_url: http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html +faq_url: http://www.gnu.org/philosophy/historical-apsl.html +other_urls: + - http://opensource-definition.org/licenses/apsl.html + - http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2 +ignorable_copyrights: + - Portions Copyright (c) 1999-2003 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.apple.com/publicsource +--- + APPLE PUBLIC SOURCE LICENSE Version 1.2 - January 4, 2001 diff --git a/src/licensedcode/data/licenses/apsl-1.2.yml b/src/licensedcode/data/licenses/apsl-1.2.yml deleted file mode 100644 index aac31076ed3..00000000000 --- a/src/licensedcode/data/licenses/apsl-1.2.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: apsl-1.2 -short_name: APSL 1.2 -name: Apple Public Source License 1.2 -category: Copyleft Limited -owner: Apple -homepage_url: http://www.opensource.apple.com/apsl/1.2.txt -notes: | - Per SPDX.org, this license was released 4 Jan 2001. This license was OSI - certified -spdx_license_key: APSL-1.2 -text_urls: - - http://web.archive.org/web/20010302160215/http://www.opensource.apple.com/apsl/ - - http://www.samurajdata.se/opensource/mirror/licenses/apsl.php -osi_url: http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html -faq_url: http://www.gnu.org/philosophy/historical-apsl.html -other_urls: - - http://opensource-definition.org/licenses/apsl.html - - http://web.archive.org/web/20020203232348/http://www.opensource.org/licenses/apsl.html - - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2 -ignorable_copyrights: - - Portions Copyright (c) 1999-2003 Apple Computer, Inc. -ignorable_holders: - - Apple Computer, Inc. -ignorable_urls: - - http://www.apple.com/legal/guidelinesfor3rdparties.html - - http://www.apple.com/publicsource diff --git a/src/licensedcode/data/licenses/apsl-2.0.LICENSE b/src/licensedcode/data/licenses/apsl-2.0.LICENSE index 92387763914..1233dc162d8 100644 --- a/src/licensedcode/data/licenses/apsl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/apsl-2.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: apsl-2.0 +short_name: APSL 2.0 +name: Apple Public Source License 2.0 +category: Copyleft Limited +owner: Apple +homepage_url: http://www.opensource.apple.com/license/apsl/ +notes: | + Per SPDX.org, this version was released 6 August 2003. This license is OSI + certifified. +spdx_license_key: APSL-2.0 +osi_license_key: APSL-2.0 +text_urls: + - http://www.opensource.apple.com/license/apsl/ +osi_url: http://opensource.org/licenses/apsl-2.0.php +faq_url: http://www.gnu.org/philosophy/apsl.html +ignorable_copyrights: + - Portions Copyright (c) 1999-2003 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.opensource.apple.com/apsl/ +--- + APPLE PUBLIC SOURCE LICENSE Version 2.0 - August 6, 2003 diff --git a/src/licensedcode/data/licenses/apsl-2.0.yml b/src/licensedcode/data/licenses/apsl-2.0.yml deleted file mode 100644 index 57b07922be2..00000000000 --- a/src/licensedcode/data/licenses/apsl-2.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: apsl-2.0 -short_name: APSL 2.0 -name: Apple Public Source License 2.0 -category: Copyleft Limited -owner: Apple -homepage_url: http://www.opensource.apple.com/license/apsl/ -notes: | - Per SPDX.org, this version was released 6 August 2003. This license is OSI - certifified. -spdx_license_key: APSL-2.0 -osi_license_key: APSL-2.0 -text_urls: - - http://www.opensource.apple.com/license/apsl/ -osi_url: http://opensource.org/licenses/apsl-2.0.php -faq_url: http://www.gnu.org/philosophy/apsl.html -ignorable_copyrights: - - Portions Copyright (c) 1999-2003 Apple Computer, Inc. -ignorable_holders: - - Apple Computer, Inc. -ignorable_urls: - - http://www.apple.com/legal/guidelinesfor3rdparties.html - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/licenses/aptana-1.0.LICENSE b/src/licensedcode/data/licenses/aptana-1.0.LICENSE index 9a346fa5a4a..34287c1be31 100644 --- a/src/licensedcode/data/licenses/aptana-1.0.LICENSE +++ b/src/licensedcode/data/licenses/aptana-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: aptana-1.0 +short_name: Aptana 1.0 +name: Aptana Public License 1.0 +category: Copyleft Limited +owner: Appcelerator +homepage_url: http://aptana.com/legal/apl/ +spdx_license_key: LicenseRef-scancode-aptana-1.0 +text_urls: + - http://aptana.com/legal/apl/ +--- + Aptana Public License - 1.0 THE PROGRAM (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS APTANA PUBLIC LICENSE ("LICENSE"). THE PROGRAM IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. BY EXERCISING ANY RIGHTS TO THE PROGRAM PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. diff --git a/src/licensedcode/data/licenses/aptana-1.0.yml b/src/licensedcode/data/licenses/aptana-1.0.yml deleted file mode 100644 index 6d26b7fead0..00000000000 --- a/src/licensedcode/data/licenses/aptana-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: aptana-1.0 -short_name: Aptana 1.0 -name: Aptana Public License 1.0 -category: Copyleft Limited -owner: Appcelerator -homepage_url: http://aptana.com/legal/apl/ -spdx_license_key: LicenseRef-scancode-aptana-1.0 -text_urls: - - http://aptana.com/legal/apl/ diff --git a/src/licensedcode/data/licenses/aptana-exception-3.0.LICENSE b/src/licensedcode/data/licenses/aptana-exception-3.0.LICENSE index 2a402bc5d04..dd239f4fbdd 100644 --- a/src/licensedcode/data/licenses/aptana-exception-3.0.LICENSE +++ b/src/licensedcode/data/licenses/aptana-exception-3.0.LICENSE @@ -1,3 +1,90 @@ +--- +key: aptana-exception-3.0 +short_name: Aptana exception to GPL 3.0 +name: Aptana exception to GPL 3.0 +category: Copyleft Limited +owner: Appcelerator +homepage_url: https://github.com/aptana/studio3/blob/development/README.md +is_exception: yes +spdx_license_key: LicenseRef-scancode-aptana-exception-3.0 +faq_url: http://www.aptana.com/legal/gpl +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + This program Copyright (c) 2005-2015 by Appcelerator, Inc. This program is + distributed under the GNU General Public license. 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. + Any modifications must keep this entire license intact. + ----------------------------------------------------------------------- + Appcelerator GPL Exception + Section 7 Exception + As a special exception to the terms and conditions of the GNU General + Public License Version 3 (the "GPL"): You are free to convey a modified + version that is formed entirely from this file (for purposes of this + exception, the "Program" under the GPL) and the works identified at + http://www.aptana.com/legal/gpl (each an "Excepted Work"), which are + conveyed to you by Appcelerator, Inc. and licensed under one or more of the + licenses identified in the Excepted License List below (each an "Excepted + License"), as long as: + 1. you obey the GPL in all respects for the Program and the modified + version, except for Excepted Works which are identifiable sections of the + modified version, which are not derived from the Program, and which can + reasonably be considered independent and separate works in themselves, + 2. all Excepted Works which are identifiable sections of the modified + version, which are not derived from the Program, and which can reasonably + be considered independent and separate works in themselves, + 1. are distributed subject to the Excepted License under which they were + originally licensed, and + 2. are not themselves modified from the form in which they are conveyed to + you by Aptana, and + 3. the object code or executable form of those sections are accompanied by + the complete corresponding machine-readable source code for those sections, + on the same medium as the corresponding object code or executable forms of + those sections, and are licensed under the applicable Excepted License as + the corresponding object code or executable forms of those sections, and + 3. any works which are aggregated with the Program, or with a modified + version on a volume of a storage or distribution medium in accordance with + the GPL, are aggregates (as defined in Section 5 of the GPL) which can + reasonably be considered independent and separate works in themselves and + which are not modified versions of either the Program, a modified version, + or an Excepted Work. + If the above conditions are not met, then the Program may only be copied, + modified, distributed or used under the terms and conditions of the GPL or + another valid licensing option from Appcelerator, Inc. Terms used but not + defined in the foregoing paragraph have the meanings given in the GPL. + ----------------------------------------------------------------------- + Excepted License List + * Apache Software License: version 1.0, 1.1, 2.0 + * Eclipse Public License: version 1.0 + * GNU General Public License: version 2.0 + * GNU Lesser General Public License: version 2.0 + * License of Jaxer + * License of HTML jTidy + * Mozilla Public License: version 1.1 + * W3C License + * BSD License + * MIT License + * Aptana Commercial Licenses + This list may be modified by Appcelerator from time to time. See + Appcelerator's website for the latest version. + ----------------------------------------------------------------------- + Attribution Requirement + This license does not grant any license or rights to use the trademarks + "Aptana," any "Aptana" logos, or any other trademarks of Appcelerator, Inc. + You are not authorized to use the name Aptana or the names of any author or + contributor for publicity purposes, without written authorization. + However, in addition to the other notice obligations of this License, all + copies of any covered work conveyed by you must include on each user + interface screen and in the Appropriate Legal Notices the following text: + "Powered by Aptana". On user interface screens, this text must be visibly + and clearly displayed in the title bar, status bar, or otherwise directly + in the view that is in focus. +ignorable_urls: + - http://www.aptana.com/legal/gpl +--- + Appcelerator GPL Exception Section 7 Exception diff --git a/src/licensedcode/data/licenses/aptana-exception-3.0.yml b/src/licensedcode/data/licenses/aptana-exception-3.0.yml deleted file mode 100644 index eedc1e5f513..00000000000 --- a/src/licensedcode/data/licenses/aptana-exception-3.0.yml +++ /dev/null @@ -1,84 +0,0 @@ -key: aptana-exception-3.0 -short_name: Aptana exception to GPL 3.0 -name: Aptana exception to GPL 3.0 -category: Copyleft Limited -owner: Appcelerator -homepage_url: https://github.com/aptana/studio3/blob/development/README.md -is_exception: yes -spdx_license_key: LicenseRef-scancode-aptana-exception-3.0 -faq_url: http://www.aptana.com/legal/gpl -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt -standard_notice: | - This program Copyright (c) 2005-2015 by Appcelerator, Inc. This program is - distributed under the GNU General Public license. 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. - Any modifications must keep this entire license intact. - ----------------------------------------------------------------------- - Appcelerator GPL Exception - Section 7 Exception - As a special exception to the terms and conditions of the GNU General - Public License Version 3 (the "GPL"): You are free to convey a modified - version that is formed entirely from this file (for purposes of this - exception, the "Program" under the GPL) and the works identified at - http://www.aptana.com/legal/gpl (each an "Excepted Work"), which are - conveyed to you by Appcelerator, Inc. and licensed under one or more of the - licenses identified in the Excepted License List below (each an "Excepted - License"), as long as: - 1. you obey the GPL in all respects for the Program and the modified - version, except for Excepted Works which are identifiable sections of the - modified version, which are not derived from the Program, and which can - reasonably be considered independent and separate works in themselves, - 2. all Excepted Works which are identifiable sections of the modified - version, which are not derived from the Program, and which can reasonably - be considered independent and separate works in themselves, - 1. are distributed subject to the Excepted License under which they were - originally licensed, and - 2. are not themselves modified from the form in which they are conveyed to - you by Aptana, and - 3. the object code or executable form of those sections are accompanied by - the complete corresponding machine-readable source code for those sections, - on the same medium as the corresponding object code or executable forms of - those sections, and are licensed under the applicable Excepted License as - the corresponding object code or executable forms of those sections, and - 3. any works which are aggregated with the Program, or with a modified - version on a volume of a storage or distribution medium in accordance with - the GPL, are aggregates (as defined in Section 5 of the GPL) which can - reasonably be considered independent and separate works in themselves and - which are not modified versions of either the Program, a modified version, - or an Excepted Work. - If the above conditions are not met, then the Program may only be copied, - modified, distributed or used under the terms and conditions of the GPL or - another valid licensing option from Appcelerator, Inc. Terms used but not - defined in the foregoing paragraph have the meanings given in the GPL. - ----------------------------------------------------------------------- - Excepted License List - * Apache Software License: version 1.0, 1.1, 2.0 - * Eclipse Public License: version 1.0 - * GNU General Public License: version 2.0 - * GNU Lesser General Public License: version 2.0 - * License of Jaxer - * License of HTML jTidy - * Mozilla Public License: version 1.1 - * W3C License - * BSD License - * MIT License - * Aptana Commercial Licenses - This list may be modified by Appcelerator from time to time. See - Appcelerator's website for the latest version. - ----------------------------------------------------------------------- - Attribution Requirement - This license does not grant any license or rights to use the trademarks - "Aptana," any "Aptana" logos, or any other trademarks of Appcelerator, Inc. - You are not authorized to use the name Aptana or the names of any author or - contributor for publicity purposes, without written authorization. - However, in addition to the other notice obligations of this License, all - copies of any covered work conveyed by you must include on each user - interface screen and in the Appropriate Legal Notices the following text: - "Powered by Aptana". On user interface screens, this text must be visibly - and clearly displayed in the title bar, status bar, or otherwise directly - in the view that is in focus. -ignorable_urls: - - http://www.aptana.com/legal/gpl diff --git a/src/licensedcode/data/licenses/arachni-psl-1.0.LICENSE b/src/licensedcode/data/licenses/arachni-psl-1.0.LICENSE index 58c6203e8da..81496de082c 100644 --- a/src/licensedcode/data/licenses/arachni-psl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/arachni-psl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: arachni-psl-1.0 +short_name: Arachni PSL v1.0 +name: Arachni Public Source License v1.0 +category: Proprietary Free +owner: Arachni +homepage_url: https://www.arachni-scanner.com/license/ +spdx_license_key: LicenseRef-scancode-arachni-psl-1.0 +text_urls: + - https://github.com/Arachni/arachni/blob/master/LICENSE.md +faq_url: https://www.arachni-scanner.com/faq/ +other_urls: + - https://github.com/Arachni/arachni/ +ignorable_emails: + - license@arachni-scanner.com +--- + Arachni Public Source License Version 1.0, June 2015 diff --git a/src/licensedcode/data/licenses/arachni-psl-1.0.yml b/src/licensedcode/data/licenses/arachni-psl-1.0.yml deleted file mode 100644 index 2905ec80c27..00000000000 --- a/src/licensedcode/data/licenses/arachni-psl-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: arachni-psl-1.0 -short_name: Arachni PSL v1.0 -name: Arachni Public Source License v1.0 -category: Proprietary Free -owner: Arachni -homepage_url: https://www.arachni-scanner.com/license/ -spdx_license_key: LicenseRef-scancode-arachni-psl-1.0 -text_urls: - - https://github.com/Arachni/arachni/blob/master/LICENSE.md -faq_url: https://www.arachni-scanner.com/faq/ -other_urls: - - https://github.com/Arachni/arachni/ -ignorable_emails: - - license@arachni-scanner.com diff --git a/src/licensedcode/data/licenses/aravindan-premkumar.LICENSE b/src/licensedcode/data/licenses/aravindan-premkumar.LICENSE index 18cded52ebf..7102dad3b40 100644 --- a/src/licensedcode/data/licenses/aravindan-premkumar.LICENSE +++ b/src/licensedcode/data/licenses/aravindan-premkumar.LICENSE @@ -1,3 +1,14 @@ +--- +key: aravindan-premkumar +short_name: Aravindan Premkumar Licenase +name: Aravindan Premkumar Licenase +category: Permissive +owner: Aravindan Premkumar +spdx_license_key: LicenseRef-scancode-aravindan-premkumar +other_urls: + - http://www.codeproject.com/script/Content/ViewAssociatedFile.aspx?rzp=%2FKB%2Flist%2FCustomizedReportListCtrl%2F%2Fcustomizedreportlistctrl_src.zip&zep=ListCtrl%2FInPlaceEdit.cpp&obid=5709&obtid=2&ovid=2 +--- + This piece of code does not have any registered copyright and is free to be used as necessary. The user is free to modify as per the requirements. As a fellow developer, all that I expect and request for is to be given the diff --git a/src/licensedcode/data/licenses/aravindan-premkumar.yml b/src/licensedcode/data/licenses/aravindan-premkumar.yml deleted file mode 100644 index 2dcf92f22e8..00000000000 --- a/src/licensedcode/data/licenses/aravindan-premkumar.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: aravindan-premkumar -short_name: Aravindan Premkumar Licenase -name: Aravindan Premkumar Licenase -category: Permissive -owner: Aravindan Premkumar -spdx_license_key: LicenseRef-scancode-aravindan-premkumar -other_urls: - - http://www.codeproject.com/script/Content/ViewAssociatedFile.aspx?rzp=%2FKB%2Flist%2FCustomizedReportListCtrl%2F%2Fcustomizedreportlistctrl_src.zip&zep=ListCtrl%2FInPlaceEdit.cpp&obid=5709&obtid=2&ovid=2 diff --git a/src/licensedcode/data/licenses/argouml.LICENSE b/src/licensedcode/data/licenses/argouml.LICENSE index a7e2b8a72e5..7ceb1262449 100644 --- a/src/licensedcode/data/licenses/argouml.LICENSE +++ b/src/licensedcode/data/licenses/argouml.LICENSE @@ -1,3 +1,18 @@ +--- +key: argouml +short_name: ArgoUML License +name: ArgoUML License +category: Permissive +owner: Tigris Project +spdx_license_key: LicenseRef-scancode-argouml +other_urls: + - http://argouml-downloads.tigris.org/nonav/argouml-0.24/ArgoUML-0.24-src.tar.gz +ignorable_copyrights: + - copyrighted by The Regents of the University of California +ignorable_holders: + - The Regents of the University of California +--- + Permission to use, copy, modify, and distribute this software and its documentation without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph diff --git a/src/licensedcode/data/licenses/argouml.yml b/src/licensedcode/data/licenses/argouml.yml deleted file mode 100644 index 31b4de0f0d5..00000000000 --- a/src/licensedcode/data/licenses/argouml.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: argouml -short_name: ArgoUML License -name: ArgoUML License -category: Permissive -owner: Tigris Project -spdx_license_key: LicenseRef-scancode-argouml -other_urls: - - http://argouml-downloads.tigris.org/nonav/argouml-0.24/ArgoUML-0.24-src.tar.gz -ignorable_copyrights: - - copyrighted by The Regents of the University of California -ignorable_holders: - - The Regents of the University of California diff --git a/src/licensedcode/data/licenses/arm-cortex-mx.LICENSE b/src/licensedcode/data/licenses/arm-cortex-mx.LICENSE index 441cffba9c7..6dd172110af 100644 --- a/src/licensedcode/data/licenses/arm-cortex-mx.LICENSE +++ b/src/licensedcode/data/licenses/arm-cortex-mx.LICENSE @@ -1,3 +1,14 @@ +--- +key: arm-cortex-mx +short_name: ARM Cortex-Mx Proprietary +name: ARM Cortex-Mx Proprietary +category: Proprietary Free +owner: ARM +spdx_license_key: LicenseRef-scancode-arm-cortex-mx +text_urls: + - https://github.com/bitcraze/crazyflie-bootloader/blob/master/stlib/CMSIS/Core/CM3/core_cm3.c +--- + ARM Limited (ARM) is supplying this software for use with Cortex-Mx processor based microcontrollers. This file can be freely distributed within development tools that are supporting such ARM based processors. diff --git a/src/licensedcode/data/licenses/arm-cortex-mx.yml b/src/licensedcode/data/licenses/arm-cortex-mx.yml deleted file mode 100644 index 1130014f6f1..00000000000 --- a/src/licensedcode/data/licenses/arm-cortex-mx.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: arm-cortex-mx -short_name: ARM Cortex-Mx Proprietary -name: ARM Cortex-Mx Proprietary -category: Proprietary Free -owner: ARM -spdx_license_key: LicenseRef-scancode-arm-cortex-mx -text_urls: - - https://github.com/bitcraze/crazyflie-bootloader/blob/master/stlib/CMSIS/Core/CM3/core_cm3.c diff --git a/src/licensedcode/data/licenses/arm-llvm-sga.LICENSE b/src/licensedcode/data/licenses/arm-llvm-sga.LICENSE index 68afea12ed4..f72a5cfcde4 100644 --- a/src/licensedcode/data/licenses/arm-llvm-sga.LICENSE +++ b/src/licensedcode/data/licenses/arm-llvm-sga.LICENSE @@ -1,3 +1,15 @@ +--- +key: arm-llvm-sga +short_name: ARM LLVM Grant +name: ARM LLVM Software Grant License Agreement +category: Permissive +owner: ARM +spdx_license_key: LicenseRef-scancode-arm-llvm-sga +minimum_coverage: 80 +ignorable_urls: + - http://llvm.org/ +--- + ARM Limited Software Grant License Agreement ("Agreement") @@ -44,4 +56,4 @@ Unless required by applicable law or agreed to in writing, the software is provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A -PARTICULAR PURPOSE. +PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/arm-llvm-sga.yml b/src/licensedcode/data/licenses/arm-llvm-sga.yml deleted file mode 100644 index 46c27fd3d4d..00000000000 --- a/src/licensedcode/data/licenses/arm-llvm-sga.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: arm-llvm-sga -short_name: ARM LLVM Grant -name: ARM LLVM Software Grant License Agreement -category: Permissive -owner: ARM -spdx_license_key: LicenseRef-scancode-arm-llvm-sga -minimum_coverage: 80 -ignorable_urls: - - http://llvm.org/ diff --git a/src/licensedcode/data/licenses/arphic-public.LICENSE b/src/licensedcode/data/licenses/arphic-public.LICENSE index 6af0cab39bf..2f55ef50336 100644 --- a/src/licensedcode/data/licenses/arphic-public.LICENSE +++ b/src/licensedcode/data/licenses/arphic-public.LICENSE @@ -1,3 +1,22 @@ +--- +key: arphic-public +short_name: Arphic Public License +name: Arphic Public License +category: Copyleft +owner: Arphic Technology +homepage_url: http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE +spdx_license_key: Arphic-1999 +other_spdx_license_keys: + - LicenseRef-scancode-arphic-public +text_urls: + - http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE +ignorable_copyrights: + - Copyright (c) 1999 Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 + Taiwan +ignorable_holders: + - Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan +--- + ARPHIC PUBLIC LICENSE Copyright (C) 1999 Arphic Technology Co., Ltd. @@ -134,4 +153,4 @@ Legal Terms INCIDENTAL, SPECIAL OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE FONT (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION), EVEN IF SUCH - HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/arphic-public.yml b/src/licensedcode/data/licenses/arphic-public.yml deleted file mode 100644 index ca793a33d5e..00000000000 --- a/src/licensedcode/data/licenses/arphic-public.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: arphic-public -short_name: Arphic Public License -name: Arphic Public License -category: Copyleft -owner: Arphic Technology -homepage_url: http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE -spdx_license_key: Arphic-1999 -other_spdx_license_keys: - - LicenseRef-scancode-arphic-public -text_urls: - - http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE -ignorable_copyrights: - - Copyright (c) 1999 Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 - Taiwan -ignorable_holders: - - Arphic Technology Co., Ltd. 11Fl. No.168, Yung Chi Rd., Taipei, 110 Taiwan diff --git a/src/licensedcode/data/licenses/array-input-method-pl.LICENSE b/src/licensedcode/data/licenses/array-input-method-pl.LICENSE index 09e19c716e9..172297bdf93 100644 --- a/src/licensedcode/data/licenses/array-input-method-pl.LICENSE +++ b/src/licensedcode/data/licenses/array-input-method-pl.LICENSE @@ -1,3 +1,20 @@ +--- +key: array-input-method-pl +short_name: Array Input Method Public License +name: Array Input Method Public License +category: Permissive +owner: Ming-Te Liao +homepage_url: https://fedoraproject.org/wiki/Licensing/Array +spdx_license_key: LicenseRef-scancode-array-input-method-pl +faq_url: https://fedoraproject.org/wiki/Licensing/Array#License_Notes +ignorable_copyrights: + - copyright holder of Array Input Method +ignorable_holders: + - Array Input Method +ignorable_authors: + - Array Input +--- + Array Input Method Public License 1. OBJECTS diff --git a/src/licensedcode/data/licenses/array-input-method-pl.yml b/src/licensedcode/data/licenses/array-input-method-pl.yml deleted file mode 100644 index 3e31fbec893..00000000000 --- a/src/licensedcode/data/licenses/array-input-method-pl.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: array-input-method-pl -short_name: Array Input Method Public License -name: Array Input Method Public License -category: Permissive -owner: Ming-Te Liao -homepage_url: https://fedoraproject.org/wiki/Licensing/Array -spdx_license_key: LicenseRef-scancode-array-input-method-pl -faq_url: https://fedoraproject.org/wiki/Licensing/Array#License_Notes -ignorable_copyrights: - - copyright holder of Array Input Method -ignorable_holders: - - Array Input Method -ignorable_authors: - - Array Input diff --git a/src/licensedcode/data/licenses/artistic-1.0-cl8.LICENSE b/src/licensedcode/data/licenses/artistic-1.0-cl8.LICENSE index f0259678eee..fd830de8290 100644 --- a/src/licensedcode/data/licenses/artistic-1.0-cl8.LICENSE +++ b/src/licensedcode/data/licenses/artistic-1.0-cl8.LICENSE @@ -1,3 +1,24 @@ +--- +key: artistic-1.0-cl8 +short_name: Artistic 1.0 w/clause 8 +name: Artistic License 1.0 w/clause 8 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://spdx.org/licenses/Artistic-1.0-cl8 +notes: | + Per SPDX.org, this license was superseded by v2.0 This is Artistic License + 1.0 as found on OSI site, including clause 8. +spdx_license_key: Artistic-1.0-cl8 +text_urls: + - http://spdx.org/licenses/Artistic-1.0-cl8 +osi_url: http://opensource.org/licenses/Artistic-1.0 +other_urls: + - http://www.gnu.org/licenses/license-list.html#ArtisticLicense + - https://opensource.org/licenses/Artistic-1.0 +ignorable_urls: + - http://ftp.uu.net/ +--- + Preamble The intent of this document is to state the conditions under which a Package may diff --git a/src/licensedcode/data/licenses/artistic-1.0-cl8.yml b/src/licensedcode/data/licenses/artistic-1.0-cl8.yml deleted file mode 100644 index 5e9af29e89f..00000000000 --- a/src/licensedcode/data/licenses/artistic-1.0-cl8.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: artistic-1.0-cl8 -short_name: Artistic 1.0 w/clause 8 -name: Artistic License 1.0 w/clause 8 -category: Copyleft Limited -owner: OSI - Open Source Initiative -homepage_url: http://spdx.org/licenses/Artistic-1.0-cl8 -notes: | - Per SPDX.org, this license was superseded by v2.0 This is Artistic License - 1.0 as found on OSI site, including clause 8. -spdx_license_key: Artistic-1.0-cl8 -text_urls: - - http://spdx.org/licenses/Artistic-1.0-cl8 -osi_url: http://opensource.org/licenses/Artistic-1.0 -other_urls: - - http://www.gnu.org/licenses/license-list.html#ArtisticLicense - - https://opensource.org/licenses/Artistic-1.0 -ignorable_urls: - - http://ftp.uu.net/ diff --git a/src/licensedcode/data/licenses/artistic-1.0.LICENSE b/src/licensedcode/data/licenses/artistic-1.0.LICENSE index bde95275e0e..802e186f98d 100644 --- a/src/licensedcode/data/licenses/artistic-1.0.LICENSE +++ b/src/licensedcode/data/licenses/artistic-1.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: artistic-1.0 +short_name: Artistic 1.0 +name: Artistic License 1.0 +category: Copyleft Limited +owner: Perl Foundation +homepage_url: http://www.perlfoundation.org/ +notes: Per SPDX.org, this license was superseded by v2.0 +spdx_license_key: Artistic-1.0 +osi_license_key: Artistic-1.0 +text_urls: + - http://opensource.org/licenses/artistic-license-1.0 +osi_url: http://opensource.org/licenses/artistic-license-1.0 +other_urls: + - http://opensource.org/licenses/Artistic-1.0 + - http://www.gnu.org/licenses/license-list.html#ArtisticLicense + - http://www.perlfoundation.org/artistic_license_1_0 + - https://opensource.org/licenses/Artistic-1.0 +ignorable_urls: + - http://ftp.uu.net/ +--- + Preamble The intent of this document is to state the conditions under which a Package may diff --git a/src/licensedcode/data/licenses/artistic-1.0.yml b/src/licensedcode/data/licenses/artistic-1.0.yml deleted file mode 100644 index d613c723aab..00000000000 --- a/src/licensedcode/data/licenses/artistic-1.0.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: artistic-1.0 -short_name: Artistic 1.0 -name: Artistic License 1.0 -category: Copyleft Limited -owner: Perl Foundation -homepage_url: http://www.perlfoundation.org/ -notes: Per SPDX.org, this license was superseded by v2.0 -spdx_license_key: Artistic-1.0 -osi_license_key: Artistic-1.0 -text_urls: - - http://opensource.org/licenses/artistic-license-1.0 -osi_url: http://opensource.org/licenses/artistic-license-1.0 -other_urls: - - http://opensource.org/licenses/Artistic-1.0 - - http://www.gnu.org/licenses/license-list.html#ArtisticLicense - - http://www.perlfoundation.org/artistic_license_1_0 - - https://opensource.org/licenses/Artistic-1.0 -ignorable_urls: - - http://ftp.uu.net/ diff --git a/src/licensedcode/data/licenses/artistic-2.0.LICENSE b/src/licensedcode/data/licenses/artistic-2.0.LICENSE index 9954602ae92..5a3b3906d9b 100644 --- a/src/licensedcode/data/licenses/artistic-2.0.LICENSE +++ b/src/licensedcode/data/licenses/artistic-2.0.LICENSE @@ -1,3 +1,33 @@ +--- +key: artistic-2.0 +short_name: Artistic 2.0 +name: Artistic License 2.0 +category: Copyleft Limited +owner: Perl Foundation +homepage_url: http://www.perlfoundation.org/ +notes: | + Per SPDX.org, this version was released 2006 This license is OSI + certifified. +spdx_license_key: Artistic-2.0 +osi_license_key: Artistic-2.0 +text_urls: + - https://www.perlfoundation.org/artistic_license_2_0 + - https://www.perlfoundation.org/attachment/legal/artistic-2_0.txt +osi_url: https://www.opensource.org/licenses/artistic-license-2.0.php +faq_url: https://www.perlfoundation.org/artistic-2-0-notes +other_urls: + - http://www.perlfoundation.org/artistic_license_2_0 + - https://opensource.org/licenses/artistic-license-2.0 + - https://www.opensource.org/licenses/artistic-license-2.0 + - https://www.perlfoundation.org/artistic-license-20.html +ignorable_copyrights: + - Copyright (c) 2000-2006, The Perl Foundation +ignorable_holders: + - The Perl Foundation +ignorable_authors: + - The Perl Foundation +--- + The Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. @@ -198,4 +228,4 @@ NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/artistic-2.0.yml b/src/licensedcode/data/licenses/artistic-2.0.yml deleted file mode 100644 index ef76d6a484b..00000000000 --- a/src/licensedcode/data/licenses/artistic-2.0.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: artistic-2.0 -short_name: Artistic 2.0 -name: Artistic License 2.0 -category: Copyleft Limited -owner: Perl Foundation -homepage_url: http://www.perlfoundation.org/ -notes: | - Per SPDX.org, this version was released 2006 This license is OSI - certifified. -spdx_license_key: Artistic-2.0 -osi_license_key: Artistic-2.0 -text_urls: - - https://www.perlfoundation.org/artistic_license_2_0 - - https://www.perlfoundation.org/attachment/legal/artistic-2_0.txt -osi_url: https://www.opensource.org/licenses/artistic-license-2.0.php -faq_url: https://www.perlfoundation.org/artistic-2-0-notes -other_urls: - - http://www.perlfoundation.org/artistic_license_2_0 - - https://opensource.org/licenses/artistic-license-2.0 - - https://www.opensource.org/licenses/artistic-license-2.0 - - https://www.perlfoundation.org/artistic-license-20.html -ignorable_copyrights: - - Copyright (c) 2000-2006, The Perl Foundation -ignorable_holders: - - The Perl Foundation -ignorable_authors: - - The Perl Foundation diff --git a/src/licensedcode/data/licenses/artistic-clarified.LICENSE b/src/licensedcode/data/licenses/artistic-clarified.LICENSE index 3241e246f8f..80e9c21fb18 100644 --- a/src/licensedcode/data/licenses/artistic-clarified.LICENSE +++ b/src/licensedcode/data/licenses/artistic-clarified.LICENSE @@ -1,3 +1,17 @@ +--- +key: artistic-clarified +short_name: Clarified Artistic License +name: Clarified Artistic License +category: Copyleft Limited +owner: Fedora +homepage_url: https://fedoraproject.org/wiki/Licensing/ArtisticClarified +spdx_license_key: ClArtistic +text_urls: + - http://www.ncftp.com/ncftp/doc/LICENSE.txt +other_urls: + - http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/ +--- + The Clarified Artistic License Preamble @@ -133,4 +147,4 @@ products derived from this software without specific prior written permission. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - The End + The End \ No newline at end of file diff --git a/src/licensedcode/data/licenses/artistic-clarified.yml b/src/licensedcode/data/licenses/artistic-clarified.yml deleted file mode 100644 index ed9c95fc681..00000000000 --- a/src/licensedcode/data/licenses/artistic-clarified.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: artistic-clarified -short_name: Clarified Artistic License -name: Clarified Artistic License -category: Copyleft Limited -owner: Fedora -homepage_url: https://fedoraproject.org/wiki/Licensing/ArtisticClarified -spdx_license_key: ClArtistic -text_urls: - - http://www.ncftp.com/ncftp/doc/LICENSE.txt -other_urls: - - http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/ diff --git a/src/licensedcode/data/licenses/artistic-dist-1.0.LICENSE b/src/licensedcode/data/licenses/artistic-dist-1.0.LICENSE index a05f9e8ad54..b87411044d9 100644 --- a/src/licensedcode/data/licenses/artistic-dist-1.0.LICENSE +++ b/src/licensedcode/data/licenses/artistic-dist-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: artistic-dist-1.0 +short_name: Artistic dist 1.0 +name: Artistic License for dist 1.0 +category: Copyleft Limited +owner: Perl Foundation +homepage_url: http://www.perlfoundation.org/ +notes: "This is a variant Artistic license still used in today's Perl and that \ncomes with\ + \ the \"dist\" tool included in the standard Perl distrbution.\nSee also https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158\n" +spdx_license_key: LicenseRef-scancode-artistic-1988-1.0 +text_urls: + - https://raw.githubusercontent.com/rmanfredi/dist/2cec35331a912b165e2dd135d22de81f34bbc83f/Artistic +other_urls: + - https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158 +--- + The "Artistic License" Preamble @@ -122,4 +138,4 @@ products derived from this software without specific prior written permission. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - The End + The End \ No newline at end of file diff --git a/src/licensedcode/data/licenses/artistic-dist-1.0.yml b/src/licensedcode/data/licenses/artistic-dist-1.0.yml deleted file mode 100644 index c689d83ccce..00000000000 --- a/src/licensedcode/data/licenses/artistic-dist-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: artistic-dist-1.0 -short_name: Artistic dist 1.0 -name: Artistic License for dist 1.0 -category: Copyleft Limited -owner: Perl Foundation -homepage_url: http://www.perlfoundation.org/ -notes: "This is a variant Artistic license still used in today's Perl and that \ncomes with\ - \ the \"dist\" tool included in the standard Perl distrbution.\nSee also https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158\n" -spdx_license_key: LicenseRef-scancode-artistic-1988-1.0 -text_urls: - - https://raw.githubusercontent.com/rmanfredi/dist/2cec35331a912b165e2dd135d22de81f34bbc83f/Artistic -other_urls: - - https://github.com/pexip/os-perl/blob/d7a993d1118c65177c97ae41577b188653845a8a/regen-configure/U/README#L158 diff --git a/src/licensedcode/data/licenses/artistic-perl-1.0.LICENSE b/src/licensedcode/data/licenses/artistic-perl-1.0.LICENSE index 33490d8c874..61e61f9c20f 100644 --- a/src/licensedcode/data/licenses/artistic-perl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/artistic-perl-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: artistic-perl-1.0 +short_name: Artistic-Perl-1.0 +name: Artistic License (Perl) 1.0 +category: Copyleft Limited +owner: Perl Foundation +homepage_url: http://dev.perl.org/licenses/artistic.html +notes: | + Per SPDX.org, this is the Artistic License 1.0 found on the Perl site, + which is different (particularly, clauses 5, 6, 7 and 8) than the Artistic + License 1.0 w/clause 8 found on the OSI site. +spdx_license_key: Artistic-1.0-Perl +text_urls: + - http://dev.perl.org/licenses/artistic.html +--- + The "Artistic License" diff --git a/src/licensedcode/data/licenses/artistic-perl-1.0.yml b/src/licensedcode/data/licenses/artistic-perl-1.0.yml deleted file mode 100644 index fd4d75ddaa8..00000000000 --- a/src/licensedcode/data/licenses/artistic-perl-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: artistic-perl-1.0 -short_name: Artistic-Perl-1.0 -name: Artistic License (Perl) 1.0 -category: Copyleft Limited -owner: Perl Foundation -homepage_url: http://dev.perl.org/licenses/artistic.html -notes: | - Per SPDX.org, this is the Artistic License 1.0 found on the Perl site, - which is different (particularly, clauses 5, 6, 7 and 8) than the Artistic - License 1.0 w/clause 8 found on the OSI site. -spdx_license_key: Artistic-1.0-Perl -text_urls: - - http://dev.perl.org/licenses/artistic.html diff --git a/src/licensedcode/data/licenses/aslp.LICENSE b/src/licensedcode/data/licenses/aslp.LICENSE index 70b1c7fb6c0..aa8783a9167 100644 --- a/src/licensedcode/data/licenses/aslp.LICENSE +++ b/src/licensedcode/data/licenses/aslp.LICENSE @@ -1,3 +1,13 @@ +--- +key: aslp +short_name: Artop ASLP +name: Artop Software License for Preparatory Development +category: Free Restricted +owner: Artop +homepage_url: http://www.artop.org/aslp.html +spdx_license_key: LicenseRef-scancode-aslp +--- + Artop Software License for Preparatory Development (ASLP) THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ARTOP SOFTWARE LICENSE FOR PREPARATORY DEVELOPMENT (ASLP) ("LICENSE"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/src/licensedcode/data/licenses/aslp.yml b/src/licensedcode/data/licenses/aslp.yml deleted file mode 100644 index bb46260d57b..00000000000 --- a/src/licensedcode/data/licenses/aslp.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: aslp -short_name: Artop ASLP -name: Artop Software License for Preparatory Development -category: Free Restricted -owner: Artop -homepage_url: http://www.artop.org/aslp.html -spdx_license_key: LicenseRef-scancode-aslp diff --git a/src/licensedcode/data/licenses/aslr.LICENSE b/src/licensedcode/data/licenses/aslr.LICENSE index ef3ef5b47e3..ff099ea668d 100644 --- a/src/licensedcode/data/licenses/aslr.LICENSE +++ b/src/licensedcode/data/licenses/aslr.LICENSE @@ -1,3 +1,13 @@ +--- +key: aslr +short_name: Artop ASLR +name: Artop Software License Based on AUTOSAR Released Material +category: Copyleft +owner: Artop +homepage_url: http://www.artop.org/aslr.html +spdx_license_key: LicenseRef-scancode-aslr +--- + Artop Software License Based on AUTOSAR Released Material (ASLR) THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ARTOP SOFTWARE LICENSE BASED ON AUTOSAR RELEASED MATERIAL (ASLR) ("LICENSE"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/src/licensedcode/data/licenses/aslr.yml b/src/licensedcode/data/licenses/aslr.yml deleted file mode 100644 index 2c1b6847977..00000000000 --- a/src/licensedcode/data/licenses/aslr.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: aslr -short_name: Artop ASLR -name: Artop Software License Based on AUTOSAR Released Material -category: Copyleft -owner: Artop -homepage_url: http://www.artop.org/aslr.html -spdx_license_key: LicenseRef-scancode-aslr diff --git a/src/licensedcode/data/licenses/asmus.LICENSE b/src/licensedcode/data/licenses/asmus.LICENSE index 406215e006e..0fa9b420ac5 100644 --- a/src/licensedcode/data/licenses/asmus.LICENSE +++ b/src/licensedcode/data/licenses/asmus.LICENSE @@ -1,3 +1,14 @@ +--- +key: asmus +short_name: ASMUS License +name: ASMUS License +category: Permissive +owner: ASMUS, Inc. +spdx_license_key: LicenseRef-scancode-asmus +other_urls: + - http://home.ix.netcom.com/~asmus-inc/index.html +--- + ASMUS License Disclaimer and legal rights @@ -8,4 +19,4 @@ This file contains bugs. All representations to the contrary are void. Source code in this file and the accompanying headers and included files may be distributed free of charge by anyone, as long as full credit is given and any and all liabilities are assumed by the -recipient. +recipient. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/asmus.yml b/src/licensedcode/data/licenses/asmus.yml deleted file mode 100644 index 8ba5e51404a..00000000000 --- a/src/licensedcode/data/licenses/asmus.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: asmus -short_name: ASMUS License -name: ASMUS License -category: Permissive -owner: ASMUS, Inc. -spdx_license_key: LicenseRef-scancode-asmus -other_urls: - - http://home.ix.netcom.com/~asmus-inc/index.html diff --git a/src/licensedcode/data/licenses/asn1.LICENSE b/src/licensedcode/data/licenses/asn1.LICENSE index de31e4dd806..9a0e6ca3f85 100644 --- a/src/licensedcode/data/licenses/asn1.LICENSE +++ b/src/licensedcode/data/licenses/asn1.LICENSE @@ -1,3 +1,36 @@ +--- +key: asn1 +short_name: ASN.1 Object Dumping Code License +name: ASN.1 Object Dumping Code License +category: Permissive +owner: ASN.1 Project +spdx_license_key: LicenseRef-scancode-asn1 +ignorable_copyrights: + - copyright Peter Gutmann +ignorable_holders: + - Peter Gutmann +ignorable_authors: + - David Kemp +ignorable_urls: + - http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c + - http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg +ignorable_emails: + - Tor.Rustad@bbs.no + - bcouillard@chrysalis-its.com + - chris.ridd@isode.com + - d.boyce@isode.com + - dpkemp@missi.ncsc.mil + - geoff@raas.co.nz + - h.b.furuseth@usit.uio.no + - hamrick@rsa.com + - hans-olof.hermansson@postnet.se + - john.hughes@entegrity.com + - jsweeny@us.ibm.com + - kjetil.barvik@bbs.no + - pgut001@cs.auckland.ac.nz + - ronald@trustpoint.com +--- + ASN.1 Object Dumping Code License ASN.1 object dumping code, copyright Peter Gutmann , based on ASN.1 dump program by David Kemp , with contributions from various people including Matthew Hamrick , Bruno Couillard , Hallvard Furuseth , Geoff Thorpe , David Boyce , John Hughes , Life is hard, and then you die , Hans-Olof Hermansson , Tor Rustad , Kjetil Barvik , James Sweeny , Chris Ridd , and several other people whose names I've misplaced (a number of those email addresses probably no longer work, since this code has been around for awhile). diff --git a/src/licensedcode/data/licenses/asn1.yml b/src/licensedcode/data/licenses/asn1.yml deleted file mode 100644 index fc7ead564b2..00000000000 --- a/src/licensedcode/data/licenses/asn1.yml +++ /dev/null @@ -1,30 +0,0 @@ -key: asn1 -short_name: ASN.1 Object Dumping Code License -name: ASN.1 Object Dumping Code License -category: Permissive -owner: ASN.1 Project -spdx_license_key: LicenseRef-scancode-asn1 -ignorable_copyrights: - - copyright Peter Gutmann -ignorable_holders: - - Peter Gutmann -ignorable_authors: - - David Kemp -ignorable_urls: - - http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c - - http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg -ignorable_emails: - - Tor.Rustad@bbs.no - - bcouillard@chrysalis-its.com - - chris.ridd@isode.com - - d.boyce@isode.com - - dpkemp@missi.ncsc.mil - - geoff@raas.co.nz - - h.b.furuseth@usit.uio.no - - hamrick@rsa.com - - hans-olof.hermansson@postnet.se - - john.hughes@entegrity.com - - jsweeny@us.ibm.com - - kjetil.barvik@bbs.no - - pgut001@cs.auckland.ac.nz - - ronald@trustpoint.com diff --git a/src/licensedcode/data/licenses/ati-eula.LICENSE b/src/licensedcode/data/licenses/ati-eula.LICENSE index 745f9763587..98fab114380 100644 --- a/src/licensedcode/data/licenses/ati-eula.LICENSE +++ b/src/licensedcode/data/licenses/ati-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: ati-eula +short_name: ATI Software EULA +name: ATI Software End User License Agreement +category: Proprietary Free +owner: Advanced Micro Devices +homepage_url: http://www.amd.com/us/pages/amdhomepage.aspx +spdx_license_key: LicenseRef-scancode-ati-eula +text_urls: + - http://www.amd.com/us/pages/amdhomepage.aspx +--- + ATI Software End User License Agreement PLEASE READ THIS LICENSE CAREFULLY BEFORE USING THE SOFTWARE. BY diff --git a/src/licensedcode/data/licenses/ati-eula.yml b/src/licensedcode/data/licenses/ati-eula.yml deleted file mode 100644 index 81b7e510a0b..00000000000 --- a/src/licensedcode/data/licenses/ati-eula.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ati-eula -short_name: ATI Software EULA -name: ATI Software End User License Agreement -category: Proprietary Free -owner: Advanced Micro Devices -homepage_url: http://www.amd.com/us/pages/amdhomepage.aspx -spdx_license_key: LicenseRef-scancode-ati-eula -text_urls: - - http://www.amd.com/us/pages/amdhomepage.aspx diff --git a/src/licensedcode/data/licenses/atkinson-hyperlegible-font.LICENSE b/src/licensedcode/data/licenses/atkinson-hyperlegible-font.LICENSE index 329c2ad28de..7e49dfc8661 100644 --- a/src/licensedcode/data/licenses/atkinson-hyperlegible-font.LICENSE +++ b/src/licensedcode/data/licenses/atkinson-hyperlegible-font.LICENSE @@ -1,3 +1,17 @@ +--- +key: atkinson-hyperlegible-font +short_name: Atkinson Hyperlegible Font License +name: Atkinson Hyperlegible Font License +category: Permissive +owner: Braille Institute +homepage_url: https://www.brailleinstitute.org/wp-content/uploads/2020/11/Atkinson-Hyperlegible-Font-License-2020-1104.pdf +spdx_license_key: LicenseRef-scancode-atkinson-hyperlegible-font +ignorable_copyrights: + - Copyright Holder. Font Software +ignorable_holders: + - Font Software +--- + Atkinson Hyperlegible Font License GENERAL diff --git a/src/licensedcode/data/licenses/atkinson-hyperlegible-font.yml b/src/licensedcode/data/licenses/atkinson-hyperlegible-font.yml deleted file mode 100644 index 6177024ebdd..00000000000 --- a/src/licensedcode/data/licenses/atkinson-hyperlegible-font.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: atkinson-hyperlegible-font -short_name: Atkinson Hyperlegible Font License -name: Atkinson Hyperlegible Font License -category: Permissive -owner: Braille Institute -homepage_url: https://www.brailleinstitute.org/wp-content/uploads/2020/11/Atkinson-Hyperlegible-Font-License-2020-1104.pdf -spdx_license_key: LicenseRef-scancode-atkinson-hyperlegible-font -ignorable_copyrights: - - Copyright Holder. Font Software -ignorable_holders: - - Font Software diff --git a/src/licensedcode/data/licenses/atlassian-marketplace-tou.LICENSE b/src/licensedcode/data/licenses/atlassian-marketplace-tou.LICENSE index 243ee867374..7dde47a800a 100644 --- a/src/licensedcode/data/licenses/atlassian-marketplace-tou.LICENSE +++ b/src/licensedcode/data/licenses/atlassian-marketplace-tou.LICENSE @@ -1,3 +1,18 @@ +--- +key: atlassian-marketplace-tou +short_name: Atlassian Marketplace Terms of Use +name: Atlassian Marketplace Terms of Use +category: Proprietary Free +owner: Atlassian +homepage_url: https://www.atlassian.com/licensing/marketplace/termsofuse +spdx_license_key: LicenseRef-scancode-atlassian-marketplace-tou +ignorable_urls: + - https://marketplace.atlassian.com/ +ignorable_emails: + - legal@atlassian.com + - sales@atlassian.com +--- + Atlassian Marketplace Terms of Use Welcome to the Atlassian Marketplace! The Atlassian Marketplace is an online marketplace for cloud and downloadable software applications, plugins and extensions (“Marketplace Apps” or “Apps”) that are designed to interoperate with Atlassian’s software and cloud offerings (“Atlassian Products”). diff --git a/src/licensedcode/data/licenses/atlassian-marketplace-tou.yml b/src/licensedcode/data/licenses/atlassian-marketplace-tou.yml deleted file mode 100644 index 8e3875627eb..00000000000 --- a/src/licensedcode/data/licenses/atlassian-marketplace-tou.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: atlassian-marketplace-tou -short_name: Atlassian Marketplace Terms of Use -name: Atlassian Marketplace Terms of Use -category: Proprietary Free -owner: Atlassian -homepage_url: https://www.atlassian.com/licensing/marketplace/termsofuse -spdx_license_key: LicenseRef-scancode-atlassian-marketplace-tou -ignorable_urls: - - https://marketplace.atlassian.com/ -ignorable_emails: - - legal@atlassian.com - - sales@atlassian.com diff --git a/src/licensedcode/data/licenses/atmel-firmware.LICENSE b/src/licensedcode/data/licenses/atmel-firmware.LICENSE index 9f3800de9a9..b7a12f08ca5 100644 --- a/src/licensedcode/data/licenses/atmel-firmware.LICENSE +++ b/src/licensedcode/data/licenses/atmel-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: atmel-firmware +short_name: Atmel Firmware License +name: Atmel Firmware License +category: Proprietary Free +owner: Atmel +homepage_url: http://atmelwlandriver.sourceforge.net/license.txt +spdx_license_key: LicenseRef-scancode-atmel-firmware +--- + Redistribution and use of the microcode software ( Firmware ) is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/atmel-firmware.yml b/src/licensedcode/data/licenses/atmel-firmware.yml deleted file mode 100644 index 01d57925e11..00000000000 --- a/src/licensedcode/data/licenses/atmel-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: atmel-firmware -short_name: Atmel Firmware License -name: Atmel Firmware License -category: Proprietary Free -owner: Atmel -homepage_url: http://atmelwlandriver.sourceforge.net/license.txt -spdx_license_key: LicenseRef-scancode-atmel-firmware diff --git a/src/licensedcode/data/licenses/atmel-linux-firmware.LICENSE b/src/licensedcode/data/licenses/atmel-linux-firmware.LICENSE index 9f673963da0..cf42450bd3b 100644 --- a/src/licensedcode/data/licenses/atmel-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/atmel-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: atmel-linux-firmware +short_name: Atmel Linux Firmware License +name: Atmel Linux Firmware License +category: Proprietary Free +owner: Atmel +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.atmel +spdx_license_key: LicenseRef-scancode-atmel-linux-firmware +--- + REDISTRIBUTION: Permission is hereby granted by Atmel Corporation (Atmel), free of any license fees, to any person obtaining a copy of this firmware (the "Software"), to install, reproduce, copy and distribute copies, in binary form, diff --git a/src/licensedcode/data/licenses/atmel-linux-firmware.yml b/src/licensedcode/data/licenses/atmel-linux-firmware.yml deleted file mode 100644 index 24be94f0cee..00000000000 --- a/src/licensedcode/data/licenses/atmel-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: atmel-linux-firmware -short_name: Atmel Linux Firmware License -name: Atmel Linux Firmware License -category: Proprietary Free -owner: Atmel -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.atmel -spdx_license_key: LicenseRef-scancode-atmel-linux-firmware diff --git a/src/licensedcode/data/licenses/atmel-microcontroller.LICENSE b/src/licensedcode/data/licenses/atmel-microcontroller.LICENSE index 0a9f2566313..706f1f8080d 100644 --- a/src/licensedcode/data/licenses/atmel-microcontroller.LICENSE +++ b/src/licensedcode/data/licenses/atmel-microcontroller.LICENSE @@ -1,3 +1,13 @@ +--- +key: atmel-microcontroller +short_name: Atmel Microcontroller License +name: Atmel Microcontroller License +category: Proprietary Free +owner: Atmel +homepage_url: https://github.com/Joan93/MasterThesis/blob/275ee8c6fcd5b0883540f629e2755ab524904a73/openwsn/openwsn-fw/bsp/boards/samr21_xpro/drivers/src/cm0plus_interrupt.c +spdx_license_key: LicenseRef-scancode-atmel-microcontroller +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/atmel-microcontroller.yml b/src/licensedcode/data/licenses/atmel-microcontroller.yml deleted file mode 100644 index ab128a7478d..00000000000 --- a/src/licensedcode/data/licenses/atmel-microcontroller.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: atmel-microcontroller -short_name: Atmel Microcontroller License -name: Atmel Microcontroller License -category: Proprietary Free -owner: Atmel -homepage_url: https://github.com/Joan93/MasterThesis/blob/275ee8c6fcd5b0883540f629e2755ab524904a73/openwsn/openwsn-fw/bsp/boards/samr21_xpro/drivers/src/cm0plus_interrupt.c -spdx_license_key: LicenseRef-scancode-atmel-microcontroller diff --git a/src/licensedcode/data/licenses/atmosphere-0.4.LICENSE b/src/licensedcode/data/licenses/atmosphere-0.4.LICENSE index c106ed2035e..7cf3bc0491d 100644 --- a/src/licensedcode/data/licenses/atmosphere-0.4.LICENSE +++ b/src/licensedcode/data/licenses/atmosphere-0.4.LICENSE @@ -1,3 +1,13 @@ +--- +key: atmosphere-0.4 +short_name: atmosphere +name: Atmosphere Software License Version 0.4 +category: Source-available +owner: Open Austin +homepage_url: https://www.open-austin.org/atmosphere-license/ +spdx_license_key: LicenseRef-scancode-atmosphere-0.4 +--- + Atmosphere Software License Version 0.4 Preamble @@ -103,4 +113,4 @@ In no event unless required by applicable law or agreed to in writing will any c 12. No Trademark Waiver Trademark rights are not licensed under this public license. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/licenses/atmosphere-0.4.yml b/src/licensedcode/data/licenses/atmosphere-0.4.yml deleted file mode 100644 index cc302ba5163..00000000000 --- a/src/licensedcode/data/licenses/atmosphere-0.4.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: atmosphere-0.4 -short_name: atmosphere -name: Atmosphere Software License Version 0.4 -category: Source-available -owner: Open Austin -homepage_url: https://www.open-austin.org/atmosphere-license/ -spdx_license_key: LicenseRef-scancode-atmosphere-0.4 diff --git a/src/licensedcode/data/licenses/attribution.LICENSE b/src/licensedcode/data/licenses/attribution.LICENSE index 8288b27fa92..6cde77a8540 100644 --- a/src/licensedcode/data/licenses/attribution.LICENSE +++ b/src/licensedcode/data/licenses/attribution.LICENSE @@ -1,3 +1,22 @@ +--- +key: attribution +short_name: AAL +name: Attribution Assurance License +category: Permissive +owner: Unspecified +homepage_url: http://opensource.org/licenses/attribution.php +notes: | + Per SPDX.org, this version was released 2002 This license is OSI + certifified. +spdx_license_key: AAL +text_urls: + - http://opensource.org/licenses/attribution.php +osi_url: http://opensource.org/licenses/attribution.php +other_urls: + - http://www.opensource.org/licenses/attribution + - https://opensource.org/licenses/attribution +--- + PROFESSIONAL IDENTIFICATION * URL "PROMOTIONAL SLOGAN FOR AUTHOR'S PROFESSIONAL PRACTICE" diff --git a/src/licensedcode/data/licenses/attribution.yml b/src/licensedcode/data/licenses/attribution.yml deleted file mode 100644 index 83523fc1840..00000000000 --- a/src/licensedcode/data/licenses/attribution.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: attribution -short_name: AAL -name: Attribution Assurance License -category: Permissive -owner: Unspecified -homepage_url: http://opensource.org/licenses/attribution.php -notes: | - Per SPDX.org, this version was released 2002 This license is OSI - certifified. -spdx_license_key: AAL -text_urls: - - http://opensource.org/licenses/attribution.php -osi_url: http://opensource.org/licenses/attribution.php -other_urls: - - http://www.opensource.org/licenses/attribution - - https://opensource.org/licenses/attribution diff --git a/src/licensedcode/data/licenses/autoconf-exception-2.0.LICENSE b/src/licensedcode/data/licenses/autoconf-exception-2.0.LICENSE index b48d29a0540..6e1ae6a59c6 100644 --- a/src/licensedcode/data/licenses/autoconf-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/autoconf-exception-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: autoconf-exception-2.0 +short_name: Autoconf exception to GPL 2.0 or later +name: Autoconf exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: Autoconf-exception-2.0 +text_urls: + - http://ac-archive.sourceforge.net/doc/copyright.html +other_urls: + - http://ac-archive.sourceforge.net/doc/copyright.html + - http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.gz +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception to the GNU General Public License, if you distribute + this file as part of a program that contains a configuration script + generated by Autoconf, you may include it under the same distribution terms + that you use for the rest of that program. +--- + As a special exception, the Free Software Foundation gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf. You need not follow the terms of the GNU @@ -23,4 +54,4 @@ of the text that was the non-data portion of the version that you started with. (In other words, unless your change moves or copies text from the non-data portions to the data portions.) If your modification has such potential, you must delete any notice of this special exception -to the GPL from your modified version. +to the GPL from your modified version. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/autoconf-exception-2.0.yml b/src/licensedcode/data/licenses/autoconf-exception-2.0.yml deleted file mode 100644 index cd927850a04..00000000000 --- a/src/licensedcode/data/licenses/autoconf-exception-2.0.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: autoconf-exception-2.0 -short_name: Autoconf exception to GPL 2.0 or later -name: Autoconf exception to GPL 2.0 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: Autoconf-exception-2.0 -text_urls: - - http://ac-archive.sourceforge.net/doc/copyright.html -other_urls: - - http://ac-archive.sourceforge.net/doc/copyright.html - - http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.gz -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - As a special exception to the GNU General Public License, if you distribute - this file as part of a program that contains a configuration script - generated by Autoconf, you may include it under the same distribution terms - that you use for the rest of that program. diff --git a/src/licensedcode/data/licenses/autoconf-exception-3.0.LICENSE b/src/licensedcode/data/licenses/autoconf-exception-3.0.LICENSE index a16b1c6696e..3318f87063a 100644 --- a/src/licensedcode/data/licenses/autoconf-exception-3.0.LICENSE +++ b/src/licensedcode/data/licenses/autoconf-exception-3.0.LICENSE @@ -1,3 +1,67 @@ +--- +key: autoconf-exception-3.0 +short_name: Autoconf exception to GPL 3.0 +name: Autoconf exception to GPL 3.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/autoconf-exception-3.0.html +is_exception: yes +spdx_license_key: Autoconf-exception-3.0 +text_urls: + - http://www.gnu.org/licenses/autoconf-exception-3.0.html +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + 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 . + AUTOCONF CONFIGURE SCRIPT EXCEPTION + Version 3.0, 18 August 2009 + Copyright © 2009 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + This Exception is an additional permission under section 7 of the GNU + General Public License, version 3 ("GPLv3"). It applies to a given file + that bears a notice placed by the copyright holder of the file stating that + the file is governed by GPLv3 along with this Exception. + The purpose of this Exception is to allow distribution of Autoconf's + typical output under terms of the recipient's choice (including + proprietary). + 0. Definitions. + "Covered Code" is the source or object code of a version of Autoconf that + is a covered work under this License. + "Normally Copied Code" for a version of Autoconf means all parts of its + Covered Code which that version can copy from its code (i.e., not from its + input file) into its minimally verbose, non-debugging and non-tracing + output. + "Ineligible Code" is Covered Code that is not Normally Copied Code. + 1. Grant of Additional Permission. + You have permission to propagate output of Autoconf, even if such + propagation would otherwise violate the terms of GPLv3. However, if by + modifying Autoconf you cause any Ineligible Code of the version you + received to become Normally Copied Code of your modified version, then you + void this Exception for the resulting covered work. If you convey that + resulting covered work, you must remove this Exception in accordance with + the second paragraph of Section 7 of GPLv3. + 2. No Weakening of Autoconf Copyleft. + The availability of this Exception does not imply any general presumption + that third-party software is unaffected by the copyleft requirements of the + license of Autoconf. +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + AUTOCONF CONFIGURE SCRIPT EXCEPTION Version 3.0, 18 August 2009 diff --git a/src/licensedcode/data/licenses/autoconf-exception-3.0.yml b/src/licensedcode/data/licenses/autoconf-exception-3.0.yml deleted file mode 100644 index c5ccfa1fc47..00000000000 --- a/src/licensedcode/data/licenses/autoconf-exception-3.0.yml +++ /dev/null @@ -1,61 +0,0 @@ -key: autoconf-exception-3.0 -short_name: Autoconf exception to GPL 3.0 -name: Autoconf exception to GPL 3.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/autoconf-exception-3.0.html -is_exception: yes -spdx_license_key: Autoconf-exception-3.0 -text_urls: - - http://www.gnu.org/licenses/autoconf-exception-3.0.html -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt -standard_notice: | - 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 . - AUTOCONF CONFIGURE SCRIPT EXCEPTION - Version 3.0, 18 August 2009 - Copyright © 2009 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies of this - license document, but changing it is not allowed. - This Exception is an additional permission under section 7 of the GNU - General Public License, version 3 ("GPLv3"). It applies to a given file - that bears a notice placed by the copyright holder of the file stating that - the file is governed by GPLv3 along with this Exception. - The purpose of this Exception is to allow distribution of Autoconf's - typical output under terms of the recipient's choice (including - proprietary). - 0. Definitions. - "Covered Code" is the source or object code of a version of Autoconf that - is a covered work under this License. - "Normally Copied Code" for a version of Autoconf means all parts of its - Covered Code which that version can copy from its code (i.e., not from its - input file) into its minimally verbose, non-debugging and non-tracing - output. - "Ineligible Code" is Covered Code that is not Normally Copied Code. - 1. Grant of Additional Permission. - You have permission to propagate output of Autoconf, even if such - propagation would otherwise violate the terms of GPLv3. However, if by - modifying Autoconf you cause any Ineligible Code of the version you - received to become Normally Copied Code of your modified version, then you - void this Exception for the resulting covered work. If you convey that - resulting covered work, you must remove this Exception in accordance with - the second paragraph of Section 7 of GPLv3. - 2. No Weakening of Autoconf Copyleft. - The availability of this Exception does not imply any general presumption - that third-party software is unaffected by the copyleft requirements of the - license of Autoconf. -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/licenses/autoconf-macro-exception.LICENSE b/src/licensedcode/data/licenses/autoconf-macro-exception.LICENSE index c30c5d91847..cb888ccba8d 100644 --- a/src/licensedcode/data/licenses/autoconf-macro-exception.LICENSE +++ b/src/licensedcode/data/licenses/autoconf-macro-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: autoconf-macro-exception +short_name: Autoconf macro exception +name: Autoconf macro exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://www.gnu.org/software/autoconf-archive/ +notes: | + this is a variant of the Autonconf exception to the + GPL 3.0 used in GNU Config config.guess and config.sub +is_exception: yes +spdx_license_key: LicenseRef-scancode-autoconf-macro-exception +--- + As a special exception, the respective Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing @@ -11,4 +25,4 @@ This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Macro Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your -modified version as well. +modified version as well. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/autoconf-macro-exception.yml b/src/licensedcode/data/licenses/autoconf-macro-exception.yml deleted file mode 100644 index 5ae6dbf319a..00000000000 --- a/src/licensedcode/data/licenses/autoconf-macro-exception.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: autoconf-macro-exception -short_name: Autoconf macro exception -name: Autoconf macro exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: https://www.gnu.org/software/autoconf-archive/ -notes: | - this is a variant of the Autonconf exception to the - GPL 3.0 used in GNU Config config.guess and config.sub -is_exception: yes -spdx_license_key: LicenseRef-scancode-autoconf-macro-exception diff --git a/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.LICENSE b/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.LICENSE index e11694268b2..67053f91233 100644 --- a/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.LICENSE @@ -1,5 +1,17 @@ +--- +key: autoconf-simple-exception-2.0 +short_name: Autoconf simple exception to GPL-2.0 +name: Autoconf simple exception to GPL-2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD +notes: this is a simpler version of the Autonconf exception to the GPL +is_exception: yes +spdx_license_key: LicenseRef-scancode-autoconf-simple-exception-2.0 +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that -program. \ No newline at end of file +program. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.yml b/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.yml deleted file mode 100644 index b4bec31d268..00000000000 --- a/src/licensedcode/data/licenses/autoconf-simple-exception-2.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: autoconf-simple-exception-2.0 -short_name: Autoconf simple exception to GPL-2.0 -name: Autoconf simple exception to GPL-2.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD -notes: this is a simpler version of the Autonconf exception to the GPL -is_exception: yes -spdx_license_key: LicenseRef-scancode-autoconf-simple-exception-2.0 diff --git a/src/licensedcode/data/licenses/autoconf-simple-exception.LICENSE b/src/licensedcode/data/licenses/autoconf-simple-exception.LICENSE index 8ba0e54ef5f..1d2ac484c1e 100644 --- a/src/licensedcode/data/licenses/autoconf-simple-exception.LICENSE +++ b/src/licensedcode/data/licenses/autoconf-simple-exception.LICENSE @@ -1,6 +1,20 @@ +--- +key: autoconf-simple-exception +short_name: Autoconf simple exception +name: Autoconf simple exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD +notes: | + this is a simpler version of the Autonconf exception to the GPL 3.0 used in + GNU Config config.guess and config.sub +is_exception: yes +spdx_license_key: LicenseRef-scancode-autoconf-simple-exception +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). +of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/src/licensedcode/data/licenses/autoconf-simple-exception.yml b/src/licensedcode/data/licenses/autoconf-simple-exception.yml deleted file mode 100644 index 60fe00e241d..00000000000 --- a/src/licensedcode/data/licenses/autoconf-simple-exception.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: autoconf-simple-exception -short_name: Autoconf simple exception -name: Autoconf simple exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD -notes: | - this is a simpler version of the Autonconf exception to the GPL 3.0 used in - GNU Config config.guess and config.sub -is_exception: yes -spdx_license_key: LicenseRef-scancode-autoconf-simple-exception diff --git a/src/licensedcode/data/licenses/autoit-eula.LICENSE b/src/licensedcode/data/licenses/autoit-eula.LICENSE index 3cceccbd55b..52c00f6324f 100644 --- a/src/licensedcode/data/licenses/autoit-eula.LICENSE +++ b/src/licensedcode/data/licenses/autoit-eula.LICENSE @@ -1,3 +1,17 @@ +--- +key: autoit-eula +short_name: Autoit EULA +name: Autoit EULA +category: Proprietary Free +owner: Autoit Team +homepage_url: https://www.autoitscript.com/autoit3/docs/license.htm +spdx_license_key: LicenseRef-scancode-autoit-eula +ignorable_authors: + - Jonathan Bennett and the AutoIt Team WWW https://www.autoitscript.com/site/autoit +ignorable_urls: + - https://www.autoitscript.com/site/autoit/ +--- + Software License AutoIt Author : Jonathan Bennett and the AutoIt Team diff --git a/src/licensedcode/data/licenses/autoit-eula.yml b/src/licensedcode/data/licenses/autoit-eula.yml deleted file mode 100644 index dc87fdadf26..00000000000 --- a/src/licensedcode/data/licenses/autoit-eula.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: autoit-eula -short_name: Autoit EULA -name: Autoit EULA -category: Proprietary Free -owner: Autoit Team -homepage_url: https://www.autoitscript.com/autoit3/docs/license.htm -spdx_license_key: LicenseRef-scancode-autoit-eula -ignorable_authors: - - Jonathan Bennett and the AutoIt Team WWW https://www.autoitscript.com/site/autoit -ignorable_urls: - - https://www.autoitscript.com/site/autoit/ diff --git a/src/licensedcode/data/licenses/autoopts-exception-2.0.LICENSE b/src/licensedcode/data/licenses/autoopts-exception-2.0.LICENSE index 6790097b535..92eade4fdc0 100644 --- a/src/licensedcode/data/licenses/autoopts-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/autoopts-exception-2.0.LICENSE @@ -1,3 +1,46 @@ +--- +key: autoopts-exception-2.0 +short_name: AutoOpts exception to GPL 2.0 or later +name: AutoOpts exception to GPL 2.0 or later +category: Copyleft Limited +owner: Bruce Korb +homepage_url: http://www.gnu.org/software/autogen/autoopts.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-autoopts-exception-2.0 +standard_notice: | + Automated Options is free software. + You may 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, or (at your option) any later version. + Automated Options 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 Automated Options. See the file "COPYING". If not, + write to: The Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + As a special exception, Bruce Korb gives permission for additional + uses of the text contained in his release of AutoOpts. + The exception is that, if you link the AutoOpts library with other + files to produce an executable, this does not by itself cause the + resulting executable to be covered by the GNU General Public License. + Your use of that executable is in no way restricted on account of + linking the AutoOpts library code into it. + This exception does not however invalidate any other reasons why + the executable file might be covered by the GNU General Public License. + This exception applies only to the code released by Bruce Korb under + the name AutoOpts. If you copy code from other sources under the + General Public License into a copy of AutoOpts, as the General Public + License permits, the exception does not apply to the code that you add + in this way. To avoid misleading anyone as to the status of such + modified files, you must delete this exception notice from them. + If you write modifications of your own for AutoOpts, it is your choice + whether to permit this exception to apply to your modifications. + If you do not wish that, delete this exception notice. +--- + As a special exception, Bruce Korb gives permission for additional uses of the text contained in his release of AutoOpts. diff --git a/src/licensedcode/data/licenses/autoopts-exception-2.0.yml b/src/licensedcode/data/licenses/autoopts-exception-2.0.yml deleted file mode 100644 index d36ba54eaa7..00000000000 --- a/src/licensedcode/data/licenses/autoopts-exception-2.0.yml +++ /dev/null @@ -1,40 +0,0 @@ -key: autoopts-exception-2.0 -short_name: AutoOpts exception to GPL 2.0 or later -name: AutoOpts exception to GPL 2.0 or later -category: Copyleft Limited -owner: Bruce Korb -homepage_url: http://www.gnu.org/software/autogen/autoopts.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-autoopts-exception-2.0 -standard_notice: | - Automated Options is free software. - You may 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, or (at your option) any later version. - Automated Options 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 Automated Options. See the file "COPYING". If not, - write to: The Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. - As a special exception, Bruce Korb gives permission for additional - uses of the text contained in his release of AutoOpts. - The exception is that, if you link the AutoOpts library with other - files to produce an executable, this does not by itself cause the - resulting executable to be covered by the GNU General Public License. - Your use of that executable is in no way restricted on account of - linking the AutoOpts library code into it. - This exception does not however invalidate any other reasons why - the executable file might be covered by the GNU General Public License. - This exception applies only to the code released by Bruce Korb under - the name AutoOpts. If you copy code from other sources under the - General Public License into a copy of AutoOpts, as the General Public - License permits, the exception does not apply to the code that you add - in this way. To avoid misleading anyone as to the status of such - modified files, you must delete this exception notice from them. - If you write modifications of your own for AutoOpts, it is your choice - whether to permit this exception to apply to your modifications. - If you do not wish that, delete this exception notice. diff --git a/src/licensedcode/data/licenses/avisynth-c-interface-exception.LICENSE b/src/licensedcode/data/licenses/avisynth-c-interface-exception.LICENSE index 18867e4cbe0..97cc318de09 100644 --- a/src/licensedcode/data/licenses/avisynth-c-interface-exception.LICENSE +++ b/src/licensedcode/data/licenses/avisynth-c-interface-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: avisynth-c-interface-exception +short_name: Avisynth C Interface Exception +name: Avisynth C Interface Exception +category: Copyleft Limited +owner: Kevin Atkinson +homepage_url: http://www.kevina.org/avisynth_c/readme.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-avisynth-c-exception +--- + As a special exception, I give you permission to link to the Avisynth C interface with independent modules that communicate with the Avisynth C interface solely through the interfaces defined in diff --git a/src/licensedcode/data/licenses/avisynth-c-interface-exception.yml b/src/licensedcode/data/licenses/avisynth-c-interface-exception.yml deleted file mode 100644 index 088c9e9a4b8..00000000000 --- a/src/licensedcode/data/licenses/avisynth-c-interface-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: avisynth-c-interface-exception -short_name: Avisynth C Interface Exception -name: Avisynth C Interface Exception -category: Copyleft Limited -owner: Kevin Atkinson -homepage_url: http://www.kevina.org/avisynth_c/readme.txt -is_exception: yes -spdx_license_key: LicenseRef-scancode-avisynth-c-exception diff --git a/src/licensedcode/data/licenses/avisynth-linking-exception.LICENSE b/src/licensedcode/data/licenses/avisynth-linking-exception.LICENSE index 72602debc4e..8487820fbde 100644 --- a/src/licensedcode/data/licenses/avisynth-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/avisynth-linking-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: avisynth-linking-exception +short_name: Avisynth Linking Exception +name: Avisynth Linking Exception +category: Copyleft Limited +owner: AviSynth Library Project +homepage_url: http://avisynth.nl/users/fizick/docs/english/license.htm +is_exception: yes +spdx_license_key: LicenseRef-scancode-avisynth-linking-exception +--- + Linking Avisynth statically or dynamically with other modules is making a combined work based on Avisynth. Thus, the terms and conditions of the GNU General Public License cover the whole combination. diff --git a/src/licensedcode/data/licenses/avisynth-linking-exception.yml b/src/licensedcode/data/licenses/avisynth-linking-exception.yml deleted file mode 100644 index 39c0ac69497..00000000000 --- a/src/licensedcode/data/licenses/avisynth-linking-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: avisynth-linking-exception -short_name: Avisynth Linking Exception -name: Avisynth Linking Exception -category: Copyleft Limited -owner: AviSynth Library Project -homepage_url: http://avisynth.nl/users/fizick/docs/english/license.htm -is_exception: yes -spdx_license_key: LicenseRef-scancode-avisynth-linking-exception diff --git a/src/licensedcode/data/licenses/bacula-exception.LICENSE b/src/licensedcode/data/licenses/bacula-exception.LICENSE index 24ce1bf77ba..9aac107c0c6 100644 --- a/src/licensedcode/data/licenses/bacula-exception.LICENSE +++ b/src/licensedcode/data/licenses/bacula-exception.LICENSE @@ -1,3 +1,21 @@ +--- +key: bacula-exception +short_name: Bacula exception to AGPL 3.0 +name: Bacula exception to AGPL 3.0 +category: Copyleft Limited +owner: Bacula +notes: composite +is_exception: yes +spdx_license_key: LicenseRef-scancode-bacula-exception +other_urls: + - http://www.gnu.org/licenses/ +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 2000-2017 Kern Sibbald +ignorable_holders: + - Kern Sibbald +--- + Last revision: 21 May 2017 Bacula is licensed under the GNU Affero General Public License, version diff --git a/src/licensedcode/data/licenses/bacula-exception.yml b/src/licensedcode/data/licenses/bacula-exception.yml deleted file mode 100644 index b47ff21753b..00000000000 --- a/src/licensedcode/data/licenses/bacula-exception.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bacula-exception -short_name: Bacula exception to AGPL 3.0 -name: Bacula exception to AGPL 3.0 -category: Copyleft Limited -owner: Bacula -notes: composite -is_exception: yes -spdx_license_key: LicenseRef-scancode-bacula-exception -other_urls: - - http://www.gnu.org/licenses/ -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 2000-2017 Kern Sibbald -ignorable_holders: - - Kern Sibbald diff --git a/src/licensedcode/data/licenses/baekmuk-fonts.LICENSE b/src/licensedcode/data/licenses/baekmuk-fonts.LICENSE index 83e733f534d..b52ca06132b 100644 --- a/src/licensedcode/data/licenses/baekmuk-fonts.LICENSE +++ b/src/licensedcode/data/licenses/baekmuk-fonts.LICENSE @@ -1,3 +1,20 @@ +--- +key: baekmuk-fonts +short_name: Baekmuk Fonts License +name: Baekmuk Fonts License +category: Permissive +owner: Unspecified +spdx_license_key: Baekmuk +other_spdx_license_keys: + - LicenseRef-scancode-baekmuk-fonts +other_urls: + - https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk +ignorable_copyrights: + - Copyright (c) Kim Jeong-Hwan +ignorable_holders: + - Kim Jeong-Hwan +--- + Baekmuk Fonts License Copyright (c) Kim Jeong-Hwan All rights reserved. diff --git a/src/licensedcode/data/licenses/baekmuk-fonts.yml b/src/licensedcode/data/licenses/baekmuk-fonts.yml deleted file mode 100644 index 0bba7b88d8c..00000000000 --- a/src/licensedcode/data/licenses/baekmuk-fonts.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: baekmuk-fonts -short_name: Baekmuk Fonts License -name: Baekmuk Fonts License -category: Permissive -owner: Unspecified -spdx_license_key: Baekmuk -other_spdx_license_keys: - - LicenseRef-scancode-baekmuk-fonts -other_urls: - - https://fedoraproject.org/wiki/Licensing:Baekmuk?rd=Licensing/Baekmuk -ignorable_copyrights: - - Copyright (c) Kim Jeong-Hwan -ignorable_holders: - - Kim Jeong-Hwan diff --git a/src/licensedcode/data/licenses/bahyph.LICENSE b/src/licensedcode/data/licenses/bahyph.LICENSE index 110fbaf1a2d..7d26c143314 100644 --- a/src/licensedcode/data/licenses/bahyph.LICENSE +++ b/src/licensedcode/data/licenses/bahyph.LICENSE @@ -1,3 +1,19 @@ +--- +key: bahyph +short_name: Bahyph License +name: Bahyph License +category: Permissive +owner: GMV +homepage_url: https://fedoraproject.org/wiki/Licensing/Bahyph +spdx_license_key: Bahyph +ignorable_copyrights: + - Copyright (c) GMV 1991 +ignorable_holders: + - GMV +ignorable_emails: + - tex@gmv.es +--- + COPYRIGHT NOTICE These patterns and the generating sh script are Copyright (c) GMV 1991 diff --git a/src/licensedcode/data/licenses/bahyph.yml b/src/licensedcode/data/licenses/bahyph.yml deleted file mode 100644 index 3fcdcf65d78..00000000000 --- a/src/licensedcode/data/licenses/bahyph.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: bahyph -short_name: Bahyph License -name: Bahyph License -category: Permissive -owner: GMV -homepage_url: https://fedoraproject.org/wiki/Licensing/Bahyph -spdx_license_key: Bahyph -ignorable_copyrights: - - Copyright (c) GMV 1991 -ignorable_holders: - - GMV -ignorable_emails: - - tex@gmv.es diff --git a/src/licensedcode/data/licenses/bakoma-fonts-1995.LICENSE b/src/licensedcode/data/licenses/bakoma-fonts-1995.LICENSE index 801e20cd736..9cf09bf5d0c 100644 --- a/src/licensedcode/data/licenses/bakoma-fonts-1995.LICENSE +++ b/src/licensedcode/data/licenses/bakoma-fonts-1995.LICENSE @@ -1,3 +1,25 @@ +--- +key: bakoma-fonts-1995 +short_name: BaKoMa Fonts Licence 1995 +name: BaKoMa Fonts Licence 1995 +category: Permissive +owner: Unspecified +homepage_url: http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma +spdx_license_key: LicenseRef-scancode-bakoma-fonts-1995 +text_urls: + - http://ctan.cs.uu.nl/fonts/cm/ps-type1/bakoma/LICENCE + - http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/LICENCE +ignorable_copyrights: + - Copyright (c) 1994, 1995, Basil K. Malyshev +ignorable_holders: + - Basil K. Malyshev +ignorable_urls: + - http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma +ignorable_emails: + - bakoma@mail.ru + - malyshev@mail.ihep.ru +--- + BaKoMa Fonts Licence -------------------- @@ -36,5 +58,4 @@ RUSSIA E-Mail: bakoma@mail.ru - or malyshev@mail.ihep.ru - + or malyshev@mail.ihep.ru \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bakoma-fonts-1995.yml b/src/licensedcode/data/licenses/bakoma-fonts-1995.yml deleted file mode 100644 index ffc5a58e1b2..00000000000 --- a/src/licensedcode/data/licenses/bakoma-fonts-1995.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: bakoma-fonts-1995 -short_name: BaKoMa Fonts Licence 1995 -name: BaKoMa Fonts Licence 1995 -category: Permissive -owner: Unspecified -homepage_url: http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma -spdx_license_key: LicenseRef-scancode-bakoma-fonts-1995 -text_urls: - - http://ctan.cs.uu.nl/fonts/cm/ps-type1/bakoma/LICENCE - - http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/LICENCE -ignorable_copyrights: - - Copyright (c) 1994, 1995, Basil K. Malyshev -ignorable_holders: - - Basil K. Malyshev -ignorable_urls: - - http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma -ignorable_emails: - - bakoma@mail.ru - - malyshev@mail.ihep.ru diff --git a/src/licensedcode/data/licenses/bapl-1.0.LICENSE b/src/licensedcode/data/licenses/bapl-1.0.LICENSE index 6104344ad6d..6741c3ac795 100644 --- a/src/licensedcode/data/licenses/bapl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/bapl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: bapl-1.0 +short_name: Booz Allen Public License v1.0 +name: Booz Allen Public License v1.0 +category: Source-available +owner: Booz Allen Hamilton +homepage_url: https://github.com/boozallen/Public-License/blob/master/LICENSE.md +spdx_license_key: LicenseRef-scancode-bapl-1.0 +text_urls: + - https://raw.githubusercontent.com/boozallen/Public-License/master/LICENSE.md +ignorable_emails: + - opensource@bah.com +--- + ## Booz Allen Public License v1.0 diff --git a/src/licensedcode/data/licenses/bapl-1.0.yml b/src/licensedcode/data/licenses/bapl-1.0.yml deleted file mode 100644 index 3ae7455c3ce..00000000000 --- a/src/licensedcode/data/licenses/bapl-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: bapl-1.0 -short_name: Booz Allen Public License v1.0 -name: Booz Allen Public License v1.0 -category: Source-available -owner: Booz Allen Hamilton -homepage_url: https://github.com/boozallen/Public-License/blob/master/LICENSE.md -spdx_license_key: LicenseRef-scancode-bapl-1.0 -text_urls: - - https://raw.githubusercontent.com/boozallen/Public-License/master/LICENSE.md -ignorable_emails: - - opensource@bah.com diff --git a/src/licensedcode/data/licenses/barr-tex.LICENSE b/src/licensedcode/data/licenses/barr-tex.LICENSE index f528655df4d..4120ea180e6 100644 --- a/src/licensedcode/data/licenses/barr-tex.LICENSE +++ b/src/licensedcode/data/licenses/barr-tex.LICENSE @@ -1,3 +1,15 @@ +--- +key: barr-tex +short_name: Barr TeX License +name: Barr TeX License +category: Permissive +owner: Michael Barr +homepage_url: https://fedoraproject.org/wiki/Licensing/Barr +spdx_license_key: Barr +ignorable_emails: + - barr@barrs.org +--- + This is a package of commutative diagram macros built on top of Xy-pic by Michael Barr (email: barr@barrs.org). Its use is unrestricted. It may be freely distributed, unchanged, for non-commercial or commercial use. If changed, it diff --git a/src/licensedcode/data/licenses/barr-tex.yml b/src/licensedcode/data/licenses/barr-tex.yml deleted file mode 100644 index e4e7d092536..00000000000 --- a/src/licensedcode/data/licenses/barr-tex.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: barr-tex -short_name: Barr TeX License -name: Barr TeX License -category: Permissive -owner: Michael Barr -homepage_url: https://fedoraproject.org/wiki/Licensing/Barr -spdx_license_key: Barr -ignorable_emails: - - barr@barrs.org diff --git a/src/licensedcode/data/licenses/bash-exception-gpl.LICENSE b/src/licensedcode/data/licenses/bash-exception-gpl.LICENSE index 50cba46e750..83afd92798a 100644 --- a/src/licensedcode/data/licenses/bash-exception-gpl.LICENSE +++ b/src/licensedcode/data/licenses/bash-exception-gpl.LICENSE @@ -1,3 +1,16 @@ +--- +key: bash-exception-gpl +short_name: Bash exception to GPL +name: Bash exception to GPL +category: Copyleft +owner: Free Software Foundation (FSF) +notes: this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 +is_exception: yes +spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 +text_urls: + - https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 +--- + The Free Software Foundation has exempted Bash from the requirement of Paragraph 2c of the General Public License. This is to say, there is no requirement for Bash to print a notice when it is started diff --git a/src/licensedcode/data/licenses/bash-exception-gpl.yml b/src/licensedcode/data/licenses/bash-exception-gpl.yml deleted file mode 100644 index 1c6be91091f..00000000000 --- a/src/licensedcode/data/licenses/bash-exception-gpl.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bash-exception-gpl -short_name: Bash exception to GPL -name: Bash exception to GPL -category: Copyleft -owner: Free Software Foundation (FSF) -notes: this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 -is_exception: yes -spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 -text_urls: - - https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 diff --git a/src/licensedcode/data/licenses/bea-2.1.LICENSE b/src/licensedcode/data/licenses/bea-2.1.LICENSE index dbd03004c98..6afa2ed052f 100644 --- a/src/licensedcode/data/licenses/bea-2.1.LICENSE +++ b/src/licensedcode/data/licenses/bea-2.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: bea-2.1 +short_name: BEA 2.1 +name: BEA Public License 2.1 +category: Permissive +owner: Oracle Corporation +spdx_license_key: LicenseRef-scancode-bea-2.1 +ignorable_copyrights: + - (c) Date BEA Systems, Inc. +ignorable_holders: + - Date BEA Systems, Inc. +--- + BEA Public License Version 2.1 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/src/licensedcode/data/licenses/bea-2.1.yml b/src/licensedcode/data/licenses/bea-2.1.yml deleted file mode 100644 index 66a5c0d2cb1..00000000000 --- a/src/licensedcode/data/licenses/bea-2.1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bea-2.1 -short_name: BEA 2.1 -name: BEA Public License 2.1 -category: Permissive -owner: Oracle Corporation -spdx_license_key: LicenseRef-scancode-bea-2.1 -ignorable_copyrights: - - (c) Date BEA Systems, Inc. -ignorable_holders: - - Date BEA Systems, Inc. diff --git a/src/licensedcode/data/licenses/beal-screamer.LICENSE b/src/licensedcode/data/licenses/beal-screamer.LICENSE index 616455a9166..9286abebbe1 100644 --- a/src/licensedcode/data/licenses/beal-screamer.LICENSE +++ b/src/licensedcode/data/licenses/beal-screamer.LICENSE @@ -1,3 +1,15 @@ +--- +key: beal-screamer +short_name: Beal Screamer License +name: Beal Screamer License +category: Permissive +owner: Bearcave.com +homepage_url: http://www.bearcave.com/misl/misl_tech/msdrm/license.html +spdx_license_key: LicenseRef-scancode-beal-screamer +text_urls: + - http://www.bearcave.com/misl/misl_tech/msdrm/license.html +--- + License by "Beal Screamer" diff --git a/src/licensedcode/data/licenses/beal-screamer.yml b/src/licensedcode/data/licenses/beal-screamer.yml deleted file mode 100644 index 13de566207b..00000000000 --- a/src/licensedcode/data/licenses/beal-screamer.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: beal-screamer -short_name: Beal Screamer License -name: Beal Screamer License -category: Permissive -owner: Bearcave.com -homepage_url: http://www.bearcave.com/misl/misl_tech/msdrm/license.html -spdx_license_key: LicenseRef-scancode-beal-screamer -text_urls: - - http://www.bearcave.com/misl/misl_tech/msdrm/license.html diff --git a/src/licensedcode/data/licenses/beerware.LICENSE b/src/licensedcode/data/licenses/beerware.LICENSE index 0aa332ac8cb..de37b069504 100644 --- a/src/licensedcode/data/licenses/beerware.LICENSE +++ b/src/licensedcode/data/licenses/beerware.LICENSE @@ -1,4 +1,21 @@ +--- +key: beerware +short_name: Beer-Ware License +name: Beer-Ware License +category: Permissive +owner: FreeBSD +homepage_url: http://people.freebsd.org/~phk/ +spdx_license_key: Beerware +text_urls: + - http://people.freebsd.org/~phk/ + - https://fedoraproject.org/wiki/Licensing/Beerware +other_urls: + - https://people.freebsd.org/~phk/ +ignorable_emails: + - phk@FreeBSD.ORG +--- + "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think -this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp +this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp \ No newline at end of file diff --git a/src/licensedcode/data/licenses/beerware.yml b/src/licensedcode/data/licenses/beerware.yml deleted file mode 100644 index 601ab9a7222..00000000000 --- a/src/licensedcode/data/licenses/beerware.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: beerware -short_name: Beer-Ware License -name: Beer-Ware License -category: Permissive -owner: FreeBSD -homepage_url: http://people.freebsd.org/~phk/ -spdx_license_key: Beerware -text_urls: - - http://people.freebsd.org/~phk/ - - https://fedoraproject.org/wiki/Licensing/Beerware -other_urls: - - https://people.freebsd.org/~phk/ -ignorable_emails: - - phk@FreeBSD.ORG diff --git a/src/licensedcode/data/licenses/bigdigits.LICENSE b/src/licensedcode/data/licenses/bigdigits.LICENSE index 8c09798f5c3..95968f09cdc 100644 --- a/src/licensedcode/data/licenses/bigdigits.LICENSE +++ b/src/licensedcode/data/licenses/bigdigits.LICENSE @@ -1,3 +1,33 @@ +--- +key: bigdigits +short_name: BigDigits License +name: BigDigits License +category: Permissive +owner: DI Management Services +homepage_url: http://www.di-mgt.com.au/ +notes: | + As of version 2.5 (October 2015) we have re-issued this source code under + the Mozilla Public License, v. 2.0. We have no objection whatsoever to + developers using this code in commercial software or as part of an open + source project provided the MPL licence remains unchanged in our source + code modules. For reference, here is the old copyright and licence notice + for version 2.4 (April 2013) and earlier. +spdx_license_key: LicenseRef-scancode-bigdigits +text_urls: + - http://www.di-mgt.com.au/bigdigitsCopyright.txt + - https://web-beta.archive.org/web/20151013165906/http://www.di-mgt.com.au/bigdigitsCopyright.txt +ignorable_copyrights: + - copyright (c) 2001-11 D.I. Management Services Pty Limited + - copyright (c) 2001-11 by D.I. Management Services Pty Limited +ignorable_holders: + - D.I. Management Services Pty Limited +ignorable_authors: + - David Ireland +ignorable_urls: + - http://www.di-mgt.com.au/ + - http://www.di-mgt.com.au/bigdigits.html +--- + BigDigits License This source code is part of the BIGDIGITS multiple-precision arithmetic diff --git a/src/licensedcode/data/licenses/bigdigits.yml b/src/licensedcode/data/licenses/bigdigits.yml deleted file mode 100644 index 98a9be3a33a..00000000000 --- a/src/licensedcode/data/licenses/bigdigits.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: bigdigits -short_name: BigDigits License -name: BigDigits License -category: Permissive -owner: DI Management Services -homepage_url: http://www.di-mgt.com.au/ -notes: | - As of version 2.5 (October 2015) we have re-issued this source code under - the Mozilla Public License, v. 2.0. We have no objection whatsoever to - developers using this code in commercial software or as part of an open - source project provided the MPL licence remains unchanged in our source - code modules. For reference, here is the old copyright and licence notice - for version 2.4 (April 2013) and earlier. -spdx_license_key: LicenseRef-scancode-bigdigits -text_urls: - - http://www.di-mgt.com.au/bigdigitsCopyright.txt - - https://web-beta.archive.org/web/20151013165906/http://www.di-mgt.com.au/bigdigitsCopyright.txt -ignorable_copyrights: - - copyright (c) 2001-11 D.I. Management Services Pty Limited - - copyright (c) 2001-11 by D.I. Management Services Pty Limited -ignorable_holders: - - D.I. Management Services Pty Limited -ignorable_authors: - - David Ireland -ignorable_urls: - - http://www.di-mgt.com.au/ - - http://www.di-mgt.com.au/bigdigits.html diff --git a/src/licensedcode/data/licenses/bigelow-holmes.LICENSE b/src/licensedcode/data/licenses/bigelow-holmes.LICENSE index 3eb88a08e4f..b1bfa0a7c5e 100644 --- a/src/licensedcode/data/licenses/bigelow-holmes.LICENSE +++ b/src/licensedcode/data/licenses/bigelow-holmes.LICENSE @@ -1,3 +1,21 @@ +--- +key: bigelow-holmes +short_name: Bigelow & Holmes Lucida Fonts License +name: Bigelow & Holmes Lucida Fonts License +category: Permissive +owner: Oracle Corporation +homepage_url: http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt +spdx_license_key: LicenseRef-scancode-bigelow-holmes +text_urls: + - http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt +ignorable_copyrights: + - (c) Copyright 1989 Sun Microsystems, Inc. + - (c) Copyright Bigelow & Holmes 1986, 1985 +ignorable_holders: + - Bigelow & Holmes + - Sun Microsystems, Inc. +--- + This is the LEGAL NOTICE pertaining to the Lucida fonts from Bigelow & Holmes: NOTICE TO USER: The source code, including the glyphs or icons diff --git a/src/licensedcode/data/licenses/bigelow-holmes.yml b/src/licensedcode/data/licenses/bigelow-holmes.yml deleted file mode 100644 index d850dfc0572..00000000000 --- a/src/licensedcode/data/licenses/bigelow-holmes.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bigelow-holmes -short_name: Bigelow & Holmes Lucida Fonts License -name: Bigelow & Holmes Lucida Fonts License -category: Permissive -owner: Oracle Corporation -homepage_url: http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt -spdx_license_key: LicenseRef-scancode-bigelow-holmes -text_urls: - - http://www.opensolaris.org/os/project/indiana/resources/getit/OpenSolaris_Dev_Preview_Third_Party_License.txt -ignorable_copyrights: - - (c) Copyright 1989 Sun Microsystems, Inc. - - (c) Copyright Bigelow & Holmes 1986, 1985 -ignorable_holders: - - Bigelow & Holmes - - Sun Microsystems, Inc. diff --git a/src/licensedcode/data/licenses/binary-linux-firmware-patent.LICENSE b/src/licensedcode/data/licenses/binary-linux-firmware-patent.LICENSE index f9c386910c0..9cd4687a1ac 100644 --- a/src/licensedcode/data/licenses/binary-linux-firmware-patent.LICENSE +++ b/src/licensedcode/data/licenses/binary-linux-firmware-patent.LICENSE @@ -1,3 +1,15 @@ +--- +key: binary-linux-firmware-patent +short_name: Binary-Only Linux Firmware Patent License +name: Binary-Only Linux Firmware Patent License +category: Proprietary Free +owner: Unspecified +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ +spdx_license_key: LicenseRef-scancode-binary-linux-firmware-patent +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/binary-linux-firmware-patent.yml b/src/licensedcode/data/licenses/binary-linux-firmware-patent.yml deleted file mode 100644 index 9584b6b8895..00000000000 --- a/src/licensedcode/data/licenses/binary-linux-firmware-patent.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: binary-linux-firmware-patent -short_name: Binary-Only Linux Firmware Patent License -name: Binary-Only Linux Firmware Patent License -category: Proprietary Free -owner: Unspecified -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ -spdx_license_key: LicenseRef-scancode-binary-linux-firmware-patent -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/licenses/binary-linux-firmware.LICENSE b/src/licensedcode/data/licenses/binary-linux-firmware.LICENSE index d9ef502b476..78249472485 100644 --- a/src/licensedcode/data/licenses/binary-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/binary-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: binary-linux-firmware +short_name: Binary-Only Linux Firmware License +name: Binary-Only Linux Firmware License +category: Proprietary Free +owner: Unspecified +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ +spdx_license_key: LicenseRef-scancode-binary-linux-firmware +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/binary-linux-firmware.yml b/src/licensedcode/data/licenses/binary-linux-firmware.yml deleted file mode 100644 index f70008eebd3..00000000000 --- a/src/licensedcode/data/licenses/binary-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: binary-linux-firmware -short_name: Binary-Only Linux Firmware License -name: Binary-Only Linux Firmware License -category: Proprietary Free -owner: Unspecified -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ -spdx_license_key: LicenseRef-scancode-binary-linux-firmware diff --git a/src/licensedcode/data/licenses/biopython.LICENSE b/src/licensedcode/data/licenses/biopython.LICENSE index 6bac0b11570..39e6a4f5985 100644 --- a/src/licensedcode/data/licenses/biopython.LICENSE +++ b/src/licensedcode/data/licenses/biopython.LICENSE @@ -1,3 +1,13 @@ +--- +key: biopython +short_name: Biopython License +name: Biopython License Agreement +category: Permissive +owner: Biopython +homepage_url: http://www.biopython.org/DIST/LICENSE +spdx_license_key: LicenseRef-scancode-biopython +--- + Biopython License Agreement Permission to use, copy, modify, and distribute this software and its diff --git a/src/licensedcode/data/licenses/biopython.yml b/src/licensedcode/data/licenses/biopython.yml deleted file mode 100644 index 3dfcbe2a047..00000000000 --- a/src/licensedcode/data/licenses/biopython.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: biopython -short_name: Biopython License -name: Biopython License Agreement -category: Permissive -owner: Biopython -homepage_url: http://www.biopython.org/DIST/LICENSE -spdx_license_key: LicenseRef-scancode-biopython diff --git a/src/licensedcode/data/licenses/biosl-4.0.LICENSE b/src/licensedcode/data/licenses/biosl-4.0.LICENSE new file mode 100644 index 00000000000..71d603a952a --- /dev/null +++ b/src/licensedcode/data/licenses/biosl-4.0.LICENSE @@ -0,0 +1,9 @@ +--- +key: biosl-4.0 +is_deprecated: yes +short_name: BIOSL v4 +name: BIOSL v4 +category: Unstated License +owner: Unspecified +spdx_license_key: LicenseRef-scancode-biosl-4.0 +--- diff --git a/src/licensedcode/data/licenses/biosl-4.0.yml b/src/licensedcode/data/licenses/biosl-4.0.yml deleted file mode 100644 index 40baff806fd..00000000000 --- a/src/licensedcode/data/licenses/biosl-4.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: biosl-4.0 -is_deprecated: yes -short_name: BIOSL v4 -name: BIOSL v4 -category: Unstated License -owner: Unspecified -spdx_license_key: LicenseRef-scancode-biosl-4.0 diff --git a/src/licensedcode/data/licenses/bison-exception-2.0.LICENSE b/src/licensedcode/data/licenses/bison-exception-2.0.LICENSE index b1c2cd9577f..36072ab7ffa 100644 --- a/src/licensedcode/data/licenses/bison-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/bison-exception-2.0.LICENSE @@ -1 +1,28 @@ +--- +key: bison-exception-2.0 +short_name: Bison exception to GPL 2.0 or later +name: Bison exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-bison-exception-2.0 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, when this file is copied by Bison into a Bison + output file, you may use that output file without restriction. This special + exception was added by the Free Software Foundation in version 1.24 of + Bison. +--- + As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bison-exception-2.0.yml b/src/licensedcode/data/licenses/bison-exception-2.0.yml deleted file mode 100644 index 31cf83c59a9..00000000000 --- a/src/licensedcode/data/licenses/bison-exception-2.0.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: bison-exception-2.0 -short_name: Bison exception to GPL 2.0 or later -name: Bison exception to GPL 2.0 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: LicenseRef-scancode-bison-exception-2.0 -faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - As a special exception, when this file is copied by Bison into a Bison - output file, you may use that output file without restriction. This special - exception was added by the Free Software Foundation in version 1.24 of - Bison. diff --git a/src/licensedcode/data/licenses/bison-exception-2.2.LICENSE b/src/licensedcode/data/licenses/bison-exception-2.2.LICENSE index 54d44dbfea4..6b494b3cc7c 100644 --- a/src/licensedcode/data/licenses/bison-exception-2.2.LICENSE +++ b/src/licensedcode/data/licenses/bison-exception-2.2.LICENSE @@ -1,3 +1,40 @@ +--- +key: bison-exception-2.2 +short_name: Bison 2.2 exception to GPL 2.0 or later +name: Bison 2.2 exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: Bison-exception-2.2 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +other_urls: + - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 +standard_notice: | + 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, or (at your option) any later + version. + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this program; if not, write to the + Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + As a special exception, you may create a larger work that contains part or + all of the Bison parser skeleton and distribute that work under terms of + your choice, so long as that work isn't itself a parser generator using the + skeleton or a modified version thereof as a parser skeleton. Alternatively, + if you modify or redistribute the parser skeleton itself, you may (at your + option) remove this special exception, which will cause the skeleton and + the resulting Bison output files to be licensed under the GNU General + Public License without this special exception. + This special exception was added by the Free Software Foundation in version + 2.2 of Bison. +--- + As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton diff --git a/src/licensedcode/data/licenses/bison-exception-2.2.yml b/src/licensedcode/data/licenses/bison-exception-2.2.yml deleted file mode 100644 index b1431237213..00000000000 --- a/src/licensedcode/data/licenses/bison-exception-2.2.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: bison-exception-2.2 -short_name: Bison 2.2 exception to GPL 2.0 or later -name: Bison 2.2 exception to GPL 2.0 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: Bison-exception-2.2 -faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions -other_urls: - - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 -standard_notice: | - 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, or (at your option) any later - version. - This program is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this program; if not, write to the - Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. - As a special exception, you may create a larger work that contains part or - all of the Bison parser skeleton and distribute that work under terms of - your choice, so long as that work isn't itself a parser generator using the - skeleton or a modified version thereof as a parser skeleton. Alternatively, - if you modify or redistribute the parser skeleton itself, you may (at your - option) remove this special exception, which will cause the skeleton and - the resulting Bison output files to be licensed under the GNU General - Public License without this special exception. - This special exception was added by the Free Software Foundation in version - 2.2 of Bison. diff --git a/src/licensedcode/data/licenses/bitstream.LICENSE b/src/licensedcode/data/licenses/bitstream.LICENSE index 4a354254da8..dba80785df2 100644 --- a/src/licensedcode/data/licenses/bitstream.LICENSE +++ b/src/licensedcode/data/licenses/bitstream.LICENSE @@ -1,3 +1,21 @@ +--- +key: bitstream +short_name: Bitstream Vera Font License +name: Bitstream Vera Font License +category: Permissive +owner: Bitstream +homepage_url: http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts +spdx_license_key: Bitstream-Vera +other_spdx_license_keys: + - LicenseRef-scancode-bitstream +text_urls: + - http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts +other_urls: + - https://docubrain.com/sites/default/files/licenses/bitstream-vera.html + - https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/ +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute diff --git a/src/licensedcode/data/licenses/bitstream.yml b/src/licensedcode/data/licenses/bitstream.yml deleted file mode 100644 index ba1651aa417..00000000000 --- a/src/licensedcode/data/licenses/bitstream.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bitstream -short_name: Bitstream Vera Font License -name: Bitstream Vera Font License -category: Permissive -owner: Bitstream -homepage_url: http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts -spdx_license_key: Bitstream-Vera -other_spdx_license_keys: - - LicenseRef-scancode-bitstream -text_urls: - - http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts -other_urls: - - https://docubrain.com/sites/default/files/licenses/bitstream-vera.html - - https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/ -minimum_coverage: 50 diff --git a/src/licensedcode/data/licenses/bittorrent-1.0.LICENSE b/src/licensedcode/data/licenses/bittorrent-1.0.LICENSE index 2fab309734e..44d63e4365b 100644 --- a/src/licensedcode/data/licenses/bittorrent-1.0.LICENSE +++ b/src/licensedcode/data/licenses/bittorrent-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: bittorrent-1.0 +short_name: BitTorrent 1.0 +name: BitTorrent Open Source License 1.0 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +spdx_license_key: BitTorrent-1.0 +text_urls: + - http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/ + - http://www.bittorrent.com/license/ + - https://spdx.org/licenses/BitTorrent-1.0.html +other_urls: + - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s +ignorable_urls: + - http://www.bittorrent.com/license +--- + BitTorrent Open Source License Version 1.0 @@ -327,5 +345,4 @@ copy or use this file, in either source code or executable form, except in compl obtain a copy of the License at http://www.bittorrent.com/license/. Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express -or implied. See the License for the specific language governing rights and limitations under the License. - +or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bittorrent-1.0.yml b/src/licensedcode/data/licenses/bittorrent-1.0.yml deleted file mode 100644 index f16cf7243a8..00000000000 --- a/src/licensedcode/data/licenses/bittorrent-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bittorrent-1.0 -short_name: BitTorrent 1.0 -name: BitTorrent Open Source License 1.0 -category: Copyleft Limited -owner: BitTorrent, Inc. -homepage_url: http://www.bittorrent.com/license/ -spdx_license_key: BitTorrent-1.0 -text_urls: - - http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/ - - http://www.bittorrent.com/license/ - - https://spdx.org/licenses/BitTorrent-1.0.html -other_urls: - - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s -ignorable_urls: - - http://www.bittorrent.com/license diff --git a/src/licensedcode/data/licenses/bittorrent-1.1.LICENSE b/src/licensedcode/data/licenses/bittorrent-1.1.LICENSE index bdb8bde8a4f..ba47aa5f4d8 100644 --- a/src/licensedcode/data/licenses/bittorrent-1.1.LICENSE +++ b/src/licensedcode/data/licenses/bittorrent-1.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: bittorrent-1.1 +short_name: BitTorrent 1.1 +name: BitTorrent Open Source License 1.1 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license +notes: | + The link http://www.bittorrent.com/license/ is dead, so there is no live + text containing the license terms except at + http://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license +spdx_license_key: BitTorrent-1.1 +text_urls: + - http://www.bittorrent.com/legal/bittorrent-open-source-license +other_urls: + - http://directory.fsf.org/wiki/License:BitTorrentOSL1.1 +ignorable_urls: + - http://www.bittorrent.com/license +--- + BitTorrent Open Source License Version 1.1 @@ -136,4 +156,4 @@ License: The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. -Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bittorrent-1.1.yml b/src/licensedcode/data/licenses/bittorrent-1.1.yml deleted file mode 100644 index d2cd19b250d..00000000000 --- a/src/licensedcode/data/licenses/bittorrent-1.1.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: bittorrent-1.1 -short_name: BitTorrent 1.1 -name: BitTorrent Open Source License 1.1 -category: Copyleft Limited -owner: BitTorrent, Inc. -homepage_url: https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license -notes: | - The link http://www.bittorrent.com/license/ is dead, so there is no live - text containing the license terms except at - http://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license -spdx_license_key: BitTorrent-1.1 -text_urls: - - http://www.bittorrent.com/legal/bittorrent-open-source-license -other_urls: - - http://directory.fsf.org/wiki/License:BitTorrentOSL1.1 -ignorable_urls: - - http://www.bittorrent.com/license diff --git a/src/licensedcode/data/licenses/bittorrent-1.2.LICENSE b/src/licensedcode/data/licenses/bittorrent-1.2.LICENSE index 77c2ace8b14..59d344902c1 100644 --- a/src/licensedcode/data/licenses/bittorrent-1.2.LICENSE +++ b/src/licensedcode/data/licenses/bittorrent-1.2.LICENSE @@ -1,3 +1,15 @@ +--- +key: bittorrent-1.2 +short_name: BitTorrent 1.2 +name: BitTorrent Open Source License 1.2 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +spdx_license_key: LicenseRef-scancode-bittorrent-1.2 +ignorable_urls: + - http://www.bittorrent.com/license +--- + BitTorrent Open Source License Version 1.2 diff --git a/src/licensedcode/data/licenses/bittorrent-1.2.yml b/src/licensedcode/data/licenses/bittorrent-1.2.yml deleted file mode 100644 index 6b0361c48e9..00000000000 --- a/src/licensedcode/data/licenses/bittorrent-1.2.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bittorrent-1.2 -short_name: BitTorrent 1.2 -name: BitTorrent Open Source License 1.2 -category: Copyleft Limited -owner: BitTorrent, Inc. -homepage_url: http://www.bittorrent.com/license/ -spdx_license_key: LicenseRef-scancode-bittorrent-1.2 -ignorable_urls: - - http://www.bittorrent.com/license diff --git a/src/licensedcode/data/licenses/bittorrent-eula.LICENSE b/src/licensedcode/data/licenses/bittorrent-eula.LICENSE index 02af42532d4..0ad7ac04520 100644 --- a/src/licensedcode/data/licenses/bittorrent-eula.LICENSE +++ b/src/licensedcode/data/licenses/bittorrent-eula.LICENSE @@ -1,3 +1,18 @@ +--- +key: bittorrent-eula +short_name: BitTorrent EULA +name: BitTorrent End User License Agreement (EULA) +category: Proprietary Free +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/legal/eula +spdx_license_key: LicenseRef-scancode-bittorrent-eula +ignorable_urls: + - http://www.bittorrent.com/legal/eula + - http://www.bittorrent.com/legal/terms-of-use +ignorable_emails: + - legal@bittorrent.com +--- + End User License Agreement (EULA) By accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement. diff --git a/src/licensedcode/data/licenses/bittorrent-eula.yml b/src/licensedcode/data/licenses/bittorrent-eula.yml deleted file mode 100644 index 347e82d886a..00000000000 --- a/src/licensedcode/data/licenses/bittorrent-eula.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: bittorrent-eula -short_name: BitTorrent EULA -name: BitTorrent End User License Agreement (EULA) -category: Proprietary Free -owner: BitTorrent, Inc. -homepage_url: http://www.bittorrent.com/legal/eula -spdx_license_key: LicenseRef-scancode-bittorrent-eula -ignorable_urls: - - http://www.bittorrent.com/legal/eula - - http://www.bittorrent.com/legal/terms-of-use -ignorable_emails: - - legal@bittorrent.com diff --git a/src/licensedcode/data/licenses/bitwarden-1.0.LICENSE b/src/licensedcode/data/licenses/bitwarden-1.0.LICENSE index 62073e837a2..b0c189ee944 100644 --- a/src/licensedcode/data/licenses/bitwarden-1.0.LICENSE +++ b/src/licensedcode/data/licenses/bitwarden-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: bitwarden-1.0 +short_name: Bitwarden License Agreement v1 +name: Bitwarden License Agreement v1 +category: Source-available +owner: Bitwarden +homepage_url: https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_BITWARDEN.txt +spdx_license_key: LicenseRef-scancode-bitwarden-1.0 +faq_url: https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_FAQ.md +--- + BITWARDEN LICENSE AGREEMENT Version 1, 4 September 2020 diff --git a/src/licensedcode/data/licenses/bitwarden-1.0.yml b/src/licensedcode/data/licenses/bitwarden-1.0.yml deleted file mode 100644 index c31533c15b7..00000000000 --- a/src/licensedcode/data/licenses/bitwarden-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bitwarden-1.0 -short_name: Bitwarden License Agreement v1 -name: Bitwarden License Agreement v1 -category: Source-available -owner: Bitwarden -homepage_url: https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_BITWARDEN.txt -spdx_license_key: LicenseRef-scancode-bitwarden-1.0 -faq_url: https://github.com/bitwarden/server/blob/v1.38.1/LICENSE_FAQ.md diff --git a/src/licensedcode/data/licenses/bitzi-pd.LICENSE b/src/licensedcode/data/licenses/bitzi-pd.LICENSE index 5826abde8d8..f235c22860b 100644 --- a/src/licensedcode/data/licenses/bitzi-pd.LICENSE +++ b/src/licensedcode/data/licenses/bitzi-pd.LICENSE @@ -1,3 +1,17 @@ +--- +key: bitzi-pd +short_name: Bitzi-PD +name: Bitzi Public Domain +category: Permissive +owner: Bitzi Corporation +homepage_url: http://bitzi.com/publicdomain +spdx_license_key: LicenseRef-scancode-bitzi-pd +ignorable_urls: + - http://bitzi.com/publicdomain +ignorable_emails: + - info@bitzi.com +--- + BITZI PUBLIC DOMAIN NOTICES UPDATED July 13, 2006 diff --git a/src/licensedcode/data/licenses/bitzi-pd.yml b/src/licensedcode/data/licenses/bitzi-pd.yml deleted file mode 100644 index 1728a719f60..00000000000 --- a/src/licensedcode/data/licenses/bitzi-pd.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: bitzi-pd -short_name: Bitzi-PD -name: Bitzi Public Domain -category: Permissive -owner: Bitzi Corporation -homepage_url: http://bitzi.com/publicdomain -spdx_license_key: LicenseRef-scancode-bitzi-pd -ignorable_urls: - - http://bitzi.com/publicdomain -ignorable_emails: - - info@bitzi.com diff --git a/src/licensedcode/data/licenses/blas-2017.LICENSE b/src/licensedcode/data/licenses/blas-2017.LICENSE index fb6684627c6..1875d0dd257 100644 --- a/src/licensedcode/data/licenses/blas-2017.LICENSE +++ b/src/licensedcode/data/licenses/blas-2017.LICENSE @@ -1,3 +1,17 @@ +--- +key: blas-2017 +short_name: BLAS License 2017 +name: BLAS License 2017 +category: Permissive +owner: BLAS Project +homepage_url: http://www.netlib.org/blas/#_licensing +spdx_license_key: LicenseRef-scancode-blas-2017 +text_urls: + - https://android.googlesource.com/platform/external/cblas/+/master/LICENSE +other_urls: + - http://www.netlib.org/lapack/ +--- + The reference BLAS is a freely-available software package. It is available from netlib via anonymous ftp and the World Wide Web. Thus, it can be included in commercial software packages (and has been). We diff --git a/src/licensedcode/data/licenses/blas-2017.yml b/src/licensedcode/data/licenses/blas-2017.yml deleted file mode 100644 index 733cad7cf81..00000000000 --- a/src/licensedcode/data/licenses/blas-2017.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: blas-2017 -short_name: BLAS License 2017 -name: BLAS License 2017 -category: Permissive -owner: BLAS Project -homepage_url: http://www.netlib.org/blas/#_licensing -spdx_license_key: LicenseRef-scancode-blas-2017 -text_urls: - - https://android.googlesource.com/platform/external/cblas/+/master/LICENSE -other_urls: - - http://www.netlib.org/lapack/ diff --git a/src/licensedcode/data/licenses/blessing.LICENSE b/src/licensedcode/data/licenses/blessing.LICENSE index 4878f1dd78f..c42954b8926 100644 --- a/src/licensedcode/data/licenses/blessing.LICENSE +++ b/src/licensedcode/data/licenses/blessing.LICENSE @@ -1,3 +1,16 @@ +--- +key: blessing +short_name: SQLite Blessing +name: SQLite Blessing +category: Public Domain +owner: SQLite +homepage_url: https://sqlite.org/src/artifact/df5091916dbb40e6 +spdx_license_key: blessing +other_urls: + - https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9 + - https://sqlite.org/src/artifact/df5091916dbb40e6 +--- + The author disclaims copyright to this source code. In place of a legal notice, here is a blessing: May you do good and not evil. diff --git a/src/licensedcode/data/licenses/blessing.yml b/src/licensedcode/data/licenses/blessing.yml deleted file mode 100644 index 8d3cde5fb12..00000000000 --- a/src/licensedcode/data/licenses/blessing.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: blessing -short_name: SQLite Blessing -name: SQLite Blessing -category: Public Domain -owner: SQLite -homepage_url: https://sqlite.org/src/artifact/df5091916dbb40e6 -spdx_license_key: blessing -other_urls: - - https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln=4-9 - - https://sqlite.org/src/artifact/df5091916dbb40e6 diff --git a/src/licensedcode/data/licenses/blitz-artistic.LICENSE b/src/licensedcode/data/licenses/blitz-artistic.LICENSE index 974da0254bf..46971905279 100644 --- a/src/licensedcode/data/licenses/blitz-artistic.LICENSE +++ b/src/licensedcode/data/licenses/blitz-artistic.LICENSE @@ -1,3 +1,16 @@ +--- +key: blitz-artistic +short_name: Blitz++ Artistic +name: Blitz++ Artistic License +category: Copyleft Limited +owner: Blitz++ +homepage_url: https://github.com/blitzpp/blitz/blob/master/COPYRIGHT +notes: This is a modified artistic license, no longer in use. +spdx_license_key: LicenseRef-scancode-blitz-artistic +text_urls: + - https://raw.githubusercontent.com/blitzpp/blitz/e3c973d68e5ee17aec779bf9711b38fd4afc355f/LICENSE +--- + The `Blitz++ Artistic License' (with thanks and apologies to authors of the Perl Artistic License) @@ -80,4 +93,4 @@ specific prior written permission. 8. THIS PACKAGE IS PROVIDED `AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/blitz-artistic.yml b/src/licensedcode/data/licenses/blitz-artistic.yml deleted file mode 100644 index a646136cec5..00000000000 --- a/src/licensedcode/data/licenses/blitz-artistic.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: blitz-artistic -short_name: Blitz++ Artistic -name: Blitz++ Artistic License -category: Copyleft Limited -owner: Blitz++ -homepage_url: https://github.com/blitzpp/blitz/blob/master/COPYRIGHT -notes: This is a modified artistic license, no longer in use. -spdx_license_key: LicenseRef-scancode-blitz-artistic -text_urls: - - https://raw.githubusercontent.com/blitzpp/blitz/e3c973d68e5ee17aec779bf9711b38fd4afc355f/LICENSE diff --git a/src/licensedcode/data/licenses/bloomberg-blpapi.LICENSE b/src/licensedcode/data/licenses/bloomberg-blpapi.LICENSE index 52000691b3f..84dda22253a 100644 --- a/src/licensedcode/data/licenses/bloomberg-blpapi.LICENSE +++ b/src/licensedcode/data/licenses/bloomberg-blpapi.LICENSE @@ -1,3 +1,15 @@ +--- +key: bloomberg-blpapi +short_name: Bloomberg BLPAPI License +name: Bloomberg BLPAPI License +category: Proprietary Free +owner: Bloomberg Labs +spdx_license_key: LicenseRef-scancode-bloomberg-blpapi +other_urls: + - https://bloomberg.bintray.com/BLPAPI-Stable-Generic/blpapi_cpp_3.8.18.1-linux.tar.gz +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this proprietary software and associated documentation files (the "Software"), to use, publish, or distribute copies of the Software, and to permit persons to diff --git a/src/licensedcode/data/licenses/bloomberg-blpapi.yml b/src/licensedcode/data/licenses/bloomberg-blpapi.yml deleted file mode 100644 index f9e01d1fc0d..00000000000 --- a/src/licensedcode/data/licenses/bloomberg-blpapi.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bloomberg-blpapi -short_name: Bloomberg BLPAPI License -name: Bloomberg BLPAPI License -category: Proprietary Free -owner: Bloomberg Labs -spdx_license_key: LicenseRef-scancode-bloomberg-blpapi -other_urls: - - https://bloomberg.bintray.com/BLPAPI-Stable-Generic/blpapi_cpp_3.8.18.1-linux.tar.gz -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/blueoak-1.0.0.LICENSE b/src/licensedcode/data/licenses/blueoak-1.0.0.LICENSE index 7a84c0de66e..1bb9826e540 100644 --- a/src/licensedcode/data/licenses/blueoak-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/blueoak-1.0.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: blueoak-1.0.0 +short_name: Blue Oak Model License 1.0.0 +name: Blue Oak Model License 1.0.0 +category: Permissive +owner: Blue Oak Council +homepage_url: https://blueoakcouncil.org/license/1.0.0 +spdx_license_key: BlueOak-1.0.0 +other_urls: + - https://blueoakcouncil.org/license/1.0.0 +ignorable_urls: + - https://blueoakcouncil.org/license/1.0.0 +--- + # Blue Oak Model License Version 1.0.0 diff --git a/src/licensedcode/data/licenses/blueoak-1.0.0.yml b/src/licensedcode/data/licenses/blueoak-1.0.0.yml deleted file mode 100644 index ea4020fa563..00000000000 --- a/src/licensedcode/data/licenses/blueoak-1.0.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: blueoak-1.0.0 -short_name: Blue Oak Model License 1.0.0 -name: Blue Oak Model License 1.0.0 -category: Permissive -owner: Blue Oak Council -homepage_url: https://blueoakcouncil.org/license/1.0.0 -spdx_license_key: BlueOak-1.0.0 -other_urls: - - https://blueoakcouncil.org/license/1.0.0 -ignorable_urls: - - https://blueoakcouncil.org/license/1.0.0 diff --git a/src/licensedcode/data/licenses/bohl-0.2.LICENSE b/src/licensedcode/data/licenses/bohl-0.2.LICENSE index ad64a598984..d8ac662e386 100644 --- a/src/licensedcode/data/licenses/bohl-0.2.LICENSE +++ b/src/licensedcode/data/licenses/bohl-0.2.LICENSE @@ -1,3 +1,20 @@ +--- +key: bohl-0.2 +short_name: BOHL-0.2 +name: The Balloon Open Hardware License v0.2 +category: Permissive +owner: iTechnic +spdx_license_key: LicenseRef-scancode-bohl-0.2 +text_urls: + - https://web.archive.org/web/20140426215620/http://www.balloonboard.org/docs/Balloon_License_0v2.pdf +ignorable_copyrights: + - Copyright (c) 2006 2007 iTechnic Ltd +ignorable_holders: + - iTechnic Ltd +ignorable_urls: + - http://www.balloonboard.org/ +--- + The Balloon Open Hardware License (BOHL) Version 0.2 For Discussion The Text of this License is Copyright (c) 2006 2007 iTechnic Ltd @@ -37,4 +54,4 @@ The purpose of this license is to protect the designers of the hardware from any resulting from its design, manufacture, distribution or use. It is also the purpose of this license to ensure that the design remains Open in the sense detailed in the license and that manufacturers, distributors, and users are obliged to adhere to the Open -principles of the design and to protect their rights to access the design as specified in the license. +principles of the design and to protect their rights to access the design as specified in the license. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bohl-0.2.yml b/src/licensedcode/data/licenses/bohl-0.2.yml deleted file mode 100644 index 6dbb39f6a31..00000000000 --- a/src/licensedcode/data/licenses/bohl-0.2.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: bohl-0.2 -short_name: BOHL-0.2 -name: The Balloon Open Hardware License v0.2 -category: Permissive -owner: iTechnic -spdx_license_key: LicenseRef-scancode-bohl-0.2 -text_urls: - - https://web.archive.org/web/20140426215620/http://www.balloonboard.org/docs/Balloon_License_0v2.pdf -ignorable_copyrights: - - Copyright (c) 2006 2007 iTechnic Ltd -ignorable_holders: - - iTechnic Ltd -ignorable_urls: - - http://www.balloonboard.org/ diff --git a/src/licensedcode/data/licenses/boost-1.0.LICENSE b/src/licensedcode/data/licenses/boost-1.0.LICENSE index 127a5bc39ba..33900e4e74d 100644 --- a/src/licensedcode/data/licenses/boost-1.0.LICENSE +++ b/src/licensedcode/data/licenses/boost-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: boost-1.0 +short_name: Boost 1.0 +name: Boost Software License 1.0 +category: Permissive +owner: Boost +homepage_url: http://www.boost.org/users/license.html +notes: | + Per SPDX.org, this version was released 17 August 2003 This license is OSI + certifified. +spdx_license_key: BSL-1.0 +text_urls: + - http://www.boost.org/LICENSE_1_0.txt +osi_url: http://www.opensource.org/licenses/bsl1.0.html +other_urls: + - http://www.boost.org/users/license.html + - http://www.opensource.org/licenses/BSL-1.0 + - https://opensource.org/licenses/BSL-1.0 +--- + Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization diff --git a/src/licensedcode/data/licenses/boost-1.0.yml b/src/licensedcode/data/licenses/boost-1.0.yml deleted file mode 100644 index 22c380f7c64..00000000000 --- a/src/licensedcode/data/licenses/boost-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: boost-1.0 -short_name: Boost 1.0 -name: Boost Software License 1.0 -category: Permissive -owner: Boost -homepage_url: http://www.boost.org/users/license.html -notes: | - Per SPDX.org, this version was released 17 August 2003 This license is OSI - certifified. -spdx_license_key: BSL-1.0 -text_urls: - - http://www.boost.org/LICENSE_1_0.txt -osi_url: http://www.opensource.org/licenses/bsl1.0.html -other_urls: - - http://www.boost.org/users/license.html - - http://www.opensource.org/licenses/BSL-1.0 - - https://opensource.org/licenses/BSL-1.0 diff --git a/src/licensedcode/data/licenses/boost-original.LICENSE b/src/licensedcode/data/licenses/boost-original.LICENSE index 02ae480b367..20d2144f554 100644 --- a/src/licensedcode/data/licenses/boost-original.LICENSE +++ b/src/licensedcode/data/licenses/boost-original.LICENSE @@ -1,3 +1,23 @@ +--- +key: boost-original +short_name: Boost Original +name: Boost Original +category: Permissive +owner: Boost +homepage_url: http://boost.org +notes: "This is the original notice for Boost prior to the publication of the\nboost-1.0 license\ + \ in 2003. Several boost files still carry this license adn\ncould not be updated to the\ + \ boost-1.0 license. This license is aslo found\nin the AntiGrain Geometry component version\ + \ 2.4. \nFor an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\n\ + For an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp" +spdx_license_key: LicenseRef-scancode-boost-original +text_urls: + - https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp + - https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp +other_urls: + - http://www.antigrain.com/license/index.html#toc0002 +--- + Permission to copy, use, modify, sell and distribute this software is granted provided this copyright notice appears in all copies. This software is provided "as is" without express or implied warranty, and with no claim as to its suitability for diff --git a/src/licensedcode/data/licenses/boost-original.yml b/src/licensedcode/data/licenses/boost-original.yml deleted file mode 100644 index 81cf6c62126..00000000000 --- a/src/licensedcode/data/licenses/boost-original.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: boost-original -short_name: Boost Original -name: Boost Original -category: Permissive -owner: Boost -homepage_url: http://boost.org -notes: "This is the original notice for Boost prior to the publication of the\nboost-1.0 license\ - \ in 2003. Several boost files still carry this license adn\ncould not be updated to the\ - \ boost-1.0 license. This license is aslo found\nin the AntiGrain Geometry component version\ - \ 2.4. \nFor an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\n\ - For an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp" -spdx_license_key: LicenseRef-scancode-boost-original -text_urls: - - https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp - - https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp -other_urls: - - http://www.antigrain.com/license/index.html#toc0002 diff --git a/src/licensedcode/data/licenses/bootloader-exception.LICENSE b/src/licensedcode/data/licenses/bootloader-exception.LICENSE index 885578acdb6..e70efc4902b 100644 --- a/src/licensedcode/data/licenses/bootloader-exception.LICENSE +++ b/src/licensedcode/data/licenses/bootloader-exception.LICENSE @@ -1,3 +1,74 @@ +--- +key: bootloader-exception +short_name: Bootloader Distribution Exception to GPL 2.0 +name: Bootloader Distribution Exception to GPL 2.0 or later +category: Copyleft Limited +owner: PyInstaller Project +homepage_url: https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt +is_exception: yes +spdx_license_key: Bootloader-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + ================================ + The PyInstaller licensing terms + ================================ + Copyright (c) 2010-2018, PyInstaller Development Team + Copyright (c) 2005-2009, Giovanni Bajo + Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. + PyInstaller is licensed 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. + Bootloader Exception + -------------------- + In addition to the permissions in the GNU General Public License, the + authors give you unlimited permission to link or embed compiled bootloader + and related files into combinations with other programs, and to distribute + those combinations without any restriction coming from the use of those + files. (The General Public License restrictions do apply in other respects; + for example, they cover modification of the files, and distribution when + not linked into a combine executable.) + Bootloader and Related Files + ---------------------------- + Bootloader and related files are files which are embedded within the + final executable. This includes files in directories: + ./bootloader/ + ./PyInstaller/loader + About the PyInstaller Development Team + -------------------------------------- + The PyInstaller Development Team is the set of contributors + to the PyInstaller project. A full list with details is kept + in the documentation directory, in the file + ``doc/CREDITS.rst``. + The core team that coordinates development on GitHub can be found here: + https://github.com/pyinstaller/pyinstaller. As of 2015, it consists of: + * Hartmut Goebel + * Martin Zibricky + * David Vierra + * David Cortesi + Our Copyright Policy + -------------------- + PyInstaller uses a shared copyright model. Each contributor maintains + copyright over their contributions to PyInstaller. But, it is important to + note that these contributions are typically only changes to the repositories. + Thus, the PyInstaller source code, in its entirety is not the copyright of + any single person or institution. Instead, it is the collective copyright of + the entire PyInstaller Development Team. If individual contributors want to + maintain a record of what changes/contributions they have specific copyright + on, they should indicate their copyright in the commit message of the + change, when they commit the change to the PyInstaller repository. + With this in mind, the following banner should be used in any source code + file to indicate the copyright and license terms: + #-------------------------------------------------------------------------- + # Copyright (c) 2005-20l5, PyInstaller Development Team. + # + # Distributed under the terms of the GNU General Public License with + # exception for distributing bootloader. + # + # The full license is in the file COPYING.txt, distributed with this software. + #-------------------------------------------------------------------------- +--- + Bootloader Exception In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.) \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bootloader-exception.yml b/src/licensedcode/data/licenses/bootloader-exception.yml deleted file mode 100644 index ef07041db02..00000000000 --- a/src/licensedcode/data/licenses/bootloader-exception.yml +++ /dev/null @@ -1,68 +0,0 @@ -key: bootloader-exception -short_name: Bootloader Distribution Exception to GPL 2.0 -name: Bootloader Distribution Exception to GPL 2.0 or later -category: Copyleft Limited -owner: PyInstaller Project -homepage_url: https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt -is_exception: yes -spdx_license_key: Bootloader-exception -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - ================================ - The PyInstaller licensing terms - ================================ - Copyright (c) 2010-2018, PyInstaller Development Team - Copyright (c) 2005-2009, Giovanni Bajo - Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. - PyInstaller is licensed 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. - Bootloader Exception - -------------------- - In addition to the permissions in the GNU General Public License, the - authors give you unlimited permission to link or embed compiled bootloader - and related files into combinations with other programs, and to distribute - those combinations without any restriction coming from the use of those - files. (The General Public License restrictions do apply in other respects; - for example, they cover modification of the files, and distribution when - not linked into a combine executable.) - Bootloader and Related Files - ---------------------------- - Bootloader and related files are files which are embedded within the - final executable. This includes files in directories: - ./bootloader/ - ./PyInstaller/loader - About the PyInstaller Development Team - -------------------------------------- - The PyInstaller Development Team is the set of contributors - to the PyInstaller project. A full list with details is kept - in the documentation directory, in the file - ``doc/CREDITS.rst``. - The core team that coordinates development on GitHub can be found here: - https://github.com/pyinstaller/pyinstaller. As of 2015, it consists of: - * Hartmut Goebel - * Martin Zibricky - * David Vierra - * David Cortesi - Our Copyright Policy - -------------------- - PyInstaller uses a shared copyright model. Each contributor maintains - copyright over their contributions to PyInstaller. But, it is important to - note that these contributions are typically only changes to the repositories. - Thus, the PyInstaller source code, in its entirety is not the copyright of - any single person or institution. Instead, it is the collective copyright of - the entire PyInstaller Development Team. If individual contributors want to - maintain a record of what changes/contributions they have specific copyright - on, they should indicate their copyright in the commit message of the - change, when they commit the change to the PyInstaller repository. - With this in mind, the following banner should be used in any source code - file to indicate the copyright and license terms: - #-------------------------------------------------------------------------- - # Copyright (c) 2005-20l5, PyInstaller Development Team. - # - # Distributed under the terms of the GNU General Public License with - # exception for distributing bootloader. - # - # The full license is in the file COPYING.txt, distributed with this software. - #-------------------------------------------------------------------------- diff --git a/src/licensedcode/data/licenses/borceux.LICENSE b/src/licensedcode/data/licenses/borceux.LICENSE index be0a9242055..15f2af9137a 100644 --- a/src/licensedcode/data/licenses/borceux.LICENSE +++ b/src/licensedcode/data/licenses/borceux.LICENSE @@ -1,3 +1,17 @@ +--- +key: borceux +short_name: Borceux License +name: Borceux License +category: Permissive +owner: Francis Borceux +homepage_url: https://fedoraproject.org/wiki/Licensing/Borceux +spdx_license_key: Borceux +ignorable_copyrights: + - Copyright 1993 Francis Borceux +ignorable_holders: + - Francis Borceux +--- + Copyright 1993 Francis Borceux You may freely use, modify, and/or distribute each of the files in this package without limitation. The package consists of the following files: diff --git a/src/licensedcode/data/licenses/borceux.yml b/src/licensedcode/data/licenses/borceux.yml deleted file mode 100644 index bac95224251..00000000000 --- a/src/licensedcode/data/licenses/borceux.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: borceux -short_name: Borceux License -name: Borceux License -category: Permissive -owner: Francis Borceux -homepage_url: https://fedoraproject.org/wiki/Licensing/Borceux -spdx_license_key: Borceux -ignorable_copyrights: - - Copyright 1993 Francis Borceux -ignorable_holders: - - Francis Borceux diff --git a/src/licensedcode/data/licenses/bpel4ws-spec.LICENSE b/src/licensedcode/data/licenses/bpel4ws-spec.LICENSE index af35d5e8409..3c57699715e 100644 --- a/src/licensedcode/data/licenses/bpel4ws-spec.LICENSE +++ b/src/licensedcode/data/licenses/bpel4ws-spec.LICENSE @@ -1,3 +1,26 @@ +--- +key: bpel4ws-spec +short_name: BPEL4WS Specification license +name: BPEL4WS Specification license +category: Proprietary Free +owner: Microsoft +homepage_url: http://xml.coverpages.org/BPELv11-May052003Final.pdf +notes: BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement +spdx_license_key: LicenseRef-scancode-bpel4ws-spec +ignorable_copyrights: + - Copyright (c) 2002, 2003 BEA Systems, International Business Machines Corporation, Microsoft + Corporation, SAP AG, Siebel Systems +ignorable_holders: + - BEA Systems, International Business Machines Corporation, Microsoft Corporation, SAP AG, + Siebel Systems +ignorable_urls: + - http://dev2dev.bea.com/technologies/webservices/BPEL4WS.jsp + - http://ifr.sap.com/bpel4ws/ + - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbiz2k2/html/bpel1-1.asp + - http://www-106.ibm.com/developerworks/webservices/library/ws-bpel/ + - http://www.siebel.com/bpel +--- + [BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement] Copyright (c) 2002, 2003 BEA Systems, International Business Machines @@ -44,4 +67,4 @@ BPEL4WS Specification, or portions thereof, that you make: permission. Title to copyright in the BPEL4WS Specification will at all times remain with the Authors. - No other rights are granted by implication, estoppel or otherwise. + No other rights are granted by implication, estoppel or otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bpel4ws-spec.yml b/src/licensedcode/data/licenses/bpel4ws-spec.yml deleted file mode 100644 index 3afd4c37b73..00000000000 --- a/src/licensedcode/data/licenses/bpel4ws-spec.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: bpel4ws-spec -short_name: BPEL4WS Specification license -name: BPEL4WS Specification license -category: Proprietary Free -owner: Microsoft -homepage_url: http://xml.coverpages.org/BPELv11-May052003Final.pdf -notes: BPEL4WS Specification Version 1,1 Dated May 5, 2003, Copyright statement -spdx_license_key: LicenseRef-scancode-bpel4ws-spec -ignorable_copyrights: - - Copyright (c) 2002, 2003 BEA Systems, International Business Machines Corporation, Microsoft - Corporation, SAP AG, Siebel Systems -ignorable_holders: - - BEA Systems, International Business Machines Corporation, Microsoft Corporation, SAP AG, - Siebel Systems -ignorable_urls: - - http://dev2dev.bea.com/technologies/webservices/BPEL4WS.jsp - - http://ifr.sap.com/bpel4ws/ - - http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbiz2k2/html/bpel1-1.asp - - http://www-106.ibm.com/developerworks/webservices/library/ws-bpel/ - - http://www.siebel.com/bpel diff --git a/src/licensedcode/data/licenses/bpmn-io.LICENSE b/src/licensedcode/data/licenses/bpmn-io.LICENSE index f718cd48161..cd15ad284d5 100644 --- a/src/licensedcode/data/licenses/bpmn-io.LICENSE +++ b/src/licensedcode/data/licenses/bpmn-io.LICENSE @@ -1,3 +1,15 @@ +--- +key: bpmn-io +short_name: bpmn.io License +name: bpmn.io License +category: Permissive +owner: bpmn.io +homepage_url: http://bpmn.io/license/ +spdx_license_key: LicenseRef-scancode-bpmn-io +ignorable_urls: + - http://bpmn.io/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to @@ -19,4 +31,4 @@ 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. +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/licenses/bpmn-io.yml b/src/licensedcode/data/licenses/bpmn-io.yml deleted file mode 100644 index 3d628565815..00000000000 --- a/src/licensedcode/data/licenses/bpmn-io.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bpmn-io -short_name: bpmn.io License -name: bpmn.io License -category: Permissive -owner: bpmn.io -homepage_url: http://bpmn.io/license/ -spdx_license_key: LicenseRef-scancode-bpmn-io -ignorable_urls: - - http://bpmn.io/ diff --git a/src/licensedcode/data/licenses/brad-martinez-vb-32.LICENSE b/src/licensedcode/data/licenses/brad-martinez-vb-32.LICENSE index d1eb0a241e2..b7426a19d2e 100644 --- a/src/licensedcode/data/licenses/brad-martinez-vb-32.LICENSE +++ b/src/licensedcode/data/licenses/brad-martinez-vb-32.LICENSE @@ -1,3 +1,13 @@ +--- +key: brad-martinez-vb-32 +short_name: Brad Martinez VB-32 License +name: Brad Martinez VB-32 License +category: Free Restricted +owner: Brad Martinez +homepage_url: http://btmtz.mvps.org/ +spdx_license_key: LicenseRef-scancode-brad-martinez-vb-32 +--- + The Rules Unless noted otherwise, all files and code available on this site are authored by Brad Martinez, who retains exclusive copyright protection and distribution rights. diff --git a/src/licensedcode/data/licenses/brad-martinez-vb-32.yml b/src/licensedcode/data/licenses/brad-martinez-vb-32.yml deleted file mode 100644 index 7e7d6ad8d16..00000000000 --- a/src/licensedcode/data/licenses/brad-martinez-vb-32.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: brad-martinez-vb-32 -short_name: Brad Martinez VB-32 License -name: Brad Martinez VB-32 License -category: Free Restricted -owner: Brad Martinez -homepage_url: http://btmtz.mvps.org/ -spdx_license_key: LicenseRef-scancode-brad-martinez-vb-32 diff --git a/src/licensedcode/data/licenses/brent-corkum.LICENSE b/src/licensedcode/data/licenses/brent-corkum.LICENSE index 1c15c81e54b..938b5ba2bc8 100644 --- a/src/licensedcode/data/licenses/brent-corkum.LICENSE +++ b/src/licensedcode/data/licenses/brent-corkum.LICENSE @@ -1,3 +1,18 @@ +--- +key: brent-corkum +short_name: Brent Corkum License +name: Brent Corkum License +category: Permissive +owner: Rocscience +spdx_license_key: LicenseRef-scancode-brent-corkum +ignorable_authors: + - Brent Corkum +ignorable_urls: + - http://www.rocscience.com/~corkum/BCMenu.html +ignorable_emails: + - corkum@rocscience.com +--- + Brent Corkum License Date : April 2002 diff --git a/src/licensedcode/data/licenses/brent-corkum.yml b/src/licensedcode/data/licenses/brent-corkum.yml deleted file mode 100644 index c38a4bad958..00000000000 --- a/src/licensedcode/data/licenses/brent-corkum.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: brent-corkum -short_name: Brent Corkum License -name: Brent Corkum License -category: Permissive -owner: Rocscience -spdx_license_key: LicenseRef-scancode-brent-corkum -ignorable_authors: - - Brent Corkum -ignorable_urls: - - http://www.rocscience.com/~corkum/BCMenu.html -ignorable_emails: - - corkum@rocscience.com diff --git a/src/licensedcode/data/licenses/brian-clapper.LICENSE b/src/licensedcode/data/licenses/brian-clapper.LICENSE index 9a2503b22ad..4c586ad1ff9 100644 --- a/src/licensedcode/data/licenses/brian-clapper.LICENSE +++ b/src/licensedcode/data/licenses/brian-clapper.LICENSE @@ -1,3 +1,17 @@ +--- +key: brian-clapper +short_name: Brian Clapper License +name: Brian Clapper License +category: Permissive +owner: clapper.org +homepage_url: http://software.clapper.org/poll/index.html +spdx_license_key: LicenseRef-scancode-brian-clapper +ignorable_authors: + - Brian M. Clapper +ignorable_emails: + - bmc@clapper.org +--- + Redistribution and use in source and binary forms are permitted provided that: (1) source distributions retain this entire copyright notice and comment; (2) modifications diff --git a/src/licensedcode/data/licenses/brian-clapper.yml b/src/licensedcode/data/licenses/brian-clapper.yml deleted file mode 100644 index e0a867215a8..00000000000 --- a/src/licensedcode/data/licenses/brian-clapper.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: brian-clapper -short_name: Brian Clapper License -name: Brian Clapper License -category: Permissive -owner: clapper.org -homepage_url: http://software.clapper.org/poll/index.html -spdx_license_key: LicenseRef-scancode-brian-clapper -ignorable_authors: - - Brian M. Clapper -ignorable_emails: - - bmc@clapper.org diff --git a/src/licensedcode/data/licenses/brian-gladman-3-clause.LICENSE b/src/licensedcode/data/licenses/brian-gladman-3-clause.LICENSE index 29aecbd0794..ddc066434cf 100644 --- a/src/licensedcode/data/licenses/brian-gladman-3-clause.LICENSE +++ b/src/licensedcode/data/licenses/brian-gladman-3-clause.LICENSE @@ -1,3 +1,12 @@ +--- +key: brian-gladman-3-clause +short_name: Brian Gladman 3-Clause License +name: Brian Gladman 3-Clause License +category: Permissive +owner: Brian Gladman +spdx_license_key: LicenseRef-scancode-brian-gladman-3-clause +--- + LICENSE TERMS The free distribution and use of this software in both source and binary @@ -17,4 +26,4 @@ This software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness - and fitness for purpose. + and fitness for purpose. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/brian-gladman-3-clause.yml b/src/licensedcode/data/licenses/brian-gladman-3-clause.yml deleted file mode 100644 index 6504c5e04d8..00000000000 --- a/src/licensedcode/data/licenses/brian-gladman-3-clause.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: brian-gladman-3-clause -short_name: Brian Gladman 3-Clause License -name: Brian Gladman 3-Clause License -category: Permissive -owner: Brian Gladman -spdx_license_key: LicenseRef-scancode-brian-gladman-3-clause diff --git a/src/licensedcode/data/licenses/brian-gladman-dual.LICENSE b/src/licensedcode/data/licenses/brian-gladman-dual.LICENSE index 40c238f74aa..875924d5bfa 100644 --- a/src/licensedcode/data/licenses/brian-gladman-dual.LICENSE +++ b/src/licensedcode/data/licenses/brian-gladman-dual.LICENSE @@ -1,3 +1,29 @@ +--- +key: brian-gladman-dual +is_deprecated: yes +short_name: Brian Gladman Dual BSD-GPL +name: Brian Gladman Dual BSD-GPL +category: Permissive +owner: Brian Gladman +homepage_url: http://www.gladman.me.uk/ +notes: this is a composite of gpl-2.0-plus AND brian-gladman-3-clause. See the addition of "of + your choice" to the text based on https://github.com/BrianGladman/aes/issues/7#issuecomment-155121598 + BrianGladman commented on Nov 9, 2015 Hi Jonas, I really wish now that I had not done this + dual licensing as the BSD license should have been sufficient. But someone at the time wouldn't + accept this and insisted on the GPL. You can interpret the GPL license on any of my code + wherever it appears as "ALTERNATIVELY, provided that this notice is retained in full, this + product may be distributed under the terms of a GNU General Public License (GPL) of your + choice, in which case the provisions of this GPL apply INSTEAD OF those given above." I + hope that helps, if not please get back to me. +text_urls: + - https://github.com/basho/skerl/blob/master/c_src/brg_types.h +other_urls: + - http://brgladman.org/ + - http://fp.gladman.plus.com/ + - http://www.ecrypt.eu.org/stream/svn/viewcvs.cgi/ecrypt/trunk/benchmarks/aes-ctr/aes-128/gladman/aes.h?diff_format=s&rev=190&view=auto + - https://launchpad.net/ubuntu/oneiric/+source/silc-server/+copyright +--- + LICENSE TERMS The free distribution and use of this software in both source and binary diff --git a/src/licensedcode/data/licenses/brian-gladman-dual.yml b/src/licensedcode/data/licenses/brian-gladman-dual.yml deleted file mode 100644 index ba7f63b0aff..00000000000 --- a/src/licensedcode/data/licenses/brian-gladman-dual.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: brian-gladman-dual -is_deprecated: yes -short_name: Brian Gladman Dual BSD-GPL -name: Brian Gladman Dual BSD-GPL -category: Permissive -owner: Brian Gladman -homepage_url: http://www.gladman.me.uk/ -notes: this is a composite of gpl-2.0-plus AND brian-gladman-3-clause. See the addition of "of - your choice" to the text based on https://github.com/BrianGladman/aes/issues/7#issuecomment-155121598 - BrianGladman commented on Nov 9, 2015 Hi Jonas, I really wish now that I had not done this - dual licensing as the BSD license should have been sufficient. But someone at the time wouldn't - accept this and insisted on the GPL. You can interpret the GPL license on any of my code - wherever it appears as "ALTERNATIVELY, provided that this notice is retained in full, this - product may be distributed under the terms of a GNU General Public License (GPL) of your - choice, in which case the provisions of this GPL apply INSTEAD OF those given above." I - hope that helps, if not please get back to me. -text_urls: - - https://github.com/basho/skerl/blob/master/c_src/brg_types.h -other_urls: - - http://brgladman.org/ - - http://fp.gladman.plus.com/ - - http://www.ecrypt.eu.org/stream/svn/viewcvs.cgi/ecrypt/trunk/benchmarks/aes-ctr/aes-128/gladman/aes.h?diff_format=s&rev=190&view=auto - - https://launchpad.net/ubuntu/oneiric/+source/silc-server/+copyright diff --git a/src/licensedcode/data/licenses/brian-gladman.LICENSE b/src/licensedcode/data/licenses/brian-gladman.LICENSE index 84206419c05..9d287c752bb 100644 --- a/src/licensedcode/data/licenses/brian-gladman.LICENSE +++ b/src/licensedcode/data/licenses/brian-gladman.LICENSE @@ -1,3 +1,15 @@ +--- +key: brian-gladman +short_name: Brian Gladman License +name: Brian Gladman License +category: Permissive +owner: Brian Gladman +homepage_url: http://www.gladman.me.uk/AES +spdx_license_key: LicenseRef-scancode-brian-gladman +text_urls: + - http://gladman.plushost.co.uk/oldsite/AES/aes-src-12-09-11.zip +--- + The redistribution and use of this software (with or without changes) is allowed without the payment of fees or royalties provided that: @@ -9,4 +21,4 @@ is allowed without the payment of fees or royalties provided that: This software is provided 'as is' with no explicit or implied warranties in respect of its operation, including, but not limited to, correctness -and fitness for purpose. +and fitness for purpose. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/brian-gladman.yml b/src/licensedcode/data/licenses/brian-gladman.yml deleted file mode 100644 index 7d9baec993d..00000000000 --- a/src/licensedcode/data/licenses/brian-gladman.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: brian-gladman -short_name: Brian Gladman License -name: Brian Gladman License -category: Permissive -owner: Brian Gladman -homepage_url: http://www.gladman.me.uk/AES -spdx_license_key: LicenseRef-scancode-brian-gladman -text_urls: - - http://gladman.plushost.co.uk/oldsite/AES/aes-src-12-09-11.zip diff --git a/src/licensedcode/data/licenses/broadcom-cfe.LICENSE b/src/licensedcode/data/licenses/broadcom-cfe.LICENSE index 20662543481..80b8b3eb4cb 100644 --- a/src/licensedcode/data/licenses/broadcom-cfe.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-cfe.LICENSE @@ -1,3 +1,12 @@ +--- +key: broadcom-cfe +short_name: Broadcom CFE License +name: Broadcom CFE License +category: Permissive +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-cfe +--- + This software is furnished under license and may be used and copied only in accordance with the following terms and conditions. Subject to these conditions, you may download, copy, install, use, modify and distribute modified or unmodified copies diff --git a/src/licensedcode/data/licenses/broadcom-cfe.yml b/src/licensedcode/data/licenses/broadcom-cfe.yml deleted file mode 100644 index c6a10785fcf..00000000000 --- a/src/licensedcode/data/licenses/broadcom-cfe.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: broadcom-cfe -short_name: Broadcom CFE License -name: Broadcom CFE License -category: Permissive -owner: Broadcom -spdx_license_key: LicenseRef-scancode-broadcom-cfe diff --git a/src/licensedcode/data/licenses/broadcom-commercial.LICENSE b/src/licensedcode/data/licenses/broadcom-commercial.LICENSE index 06b3051be85..84d49ec7f37 100644 --- a/src/licensedcode/data/licenses/broadcom-commercial.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-commercial.LICENSE @@ -1,5 +1,14 @@ +--- +key: broadcom-commercial +short_name: Broadcom Commercial Notice +name: Broadcom Commercial Notice +category: Commercial +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-commercial +--- + Confidential Property of Broadcom Corporation THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE AGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR -EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. +EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/broadcom-commercial.yml b/src/licensedcode/data/licenses/broadcom-commercial.yml deleted file mode 100644 index 783ad4adb61..00000000000 --- a/src/licensedcode/data/licenses/broadcom-commercial.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: broadcom-commercial -short_name: Broadcom Commercial Notice -name: Broadcom Commercial Notice -category: Commercial -owner: Broadcom -spdx_license_key: LicenseRef-scancode-broadcom-commercial diff --git a/src/licensedcode/data/licenses/broadcom-confidential.LICENSE b/src/licensedcode/data/licenses/broadcom-confidential.LICENSE index 54c7d610e5d..f4c6d7e3f9f 100644 --- a/src/licensedcode/data/licenses/broadcom-confidential.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-confidential.LICENSE @@ -1,5 +1,14 @@ +--- +key: broadcom-confidential +short_name: Broadcom Confidential +name: Broadcom Confidential +category: Commercial +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-confidential +--- + No portions of this material may be reproduced in any form without the written permission of: Broadcom Corporation 16251 Laguna Canyon Road Irvine, California 92618 -All information contained in this document is Broadcom Corporation company private, proprietary, and trade secret. +All information contained in this document is Broadcom Corporation company private, proprietary, and trade secret. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/broadcom-confidential.yml b/src/licensedcode/data/licenses/broadcom-confidential.yml deleted file mode 100644 index dd94b199113..00000000000 --- a/src/licensedcode/data/licenses/broadcom-confidential.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: broadcom-confidential -short_name: Broadcom Confidential -name: Broadcom Confidential -category: Commercial -owner: Broadcom -spdx_license_key: LicenseRef-scancode-broadcom-confidential diff --git a/src/licensedcode/data/licenses/broadcom-dual.LICENSE b/src/licensedcode/data/licenses/broadcom-dual.LICENSE index 058d4a59a66..b563f8ed976 100644 --- a/src/licensedcode/data/licenses/broadcom-dual.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-dual.LICENSE @@ -1,3 +1,13 @@ +--- +key: broadcom-dual +is_deprecated: yes +short_name: Broadcom Dual GPL-Commercial +name: Broadcom Dual GPL-Commercial +category: Copyleft +owner: Broadcom +notes: composite +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available at diff --git a/src/licensedcode/data/licenses/broadcom-dual.yml b/src/licensedcode/data/licenses/broadcom-dual.yml deleted file mode 100644 index 7a5729552ab..00000000000 --- a/src/licensedcode/data/licenses/broadcom-dual.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: broadcom-dual -is_deprecated: yes -short_name: Broadcom Dual GPL-Commercial -name: Broadcom Dual GPL-Commercial -category: Copyleft -owner: Broadcom -notes: composite diff --git a/src/licensedcode/data/licenses/broadcom-linking-exception-2.0.LICENSE b/src/licensedcode/data/licenses/broadcom-linking-exception-2.0.LICENSE index 8f5bdf5ed3b..4cf23444617 100644 --- a/src/licensedcode/data/licenses/broadcom-linking-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-linking-exception-2.0.LICENSE @@ -1,3 +1,32 @@ +--- +key: broadcom-linking-exception-2.0 +short_name: Broadcom Linking Exception to GPL 2.0 +name: Broadcom Linking Exception to GPL 2.0 +category: Copyleft Limited +owner: Broadcom +is_exception: yes +spdx_license_key: LicenseRef-scancode-bcm-linking-exception-2.0 +standard_notice: | + Copyright (c) 2006-2007 Broadcom Corporation + All Rights Reserved + Unless you and Broadcom execute a separate written software license + agreement governing use of this software, this software is licensed to you + under the terms of the GNU General Public License version 2 (the "GPL"), + available at http://www.broadcom.com/licenses/GPLv2.php, with the following + added to such license: + As a special exception, the copyright holders of this software give you + permission to link this software with independent modules, and to copy and + distribute the resulting executable under terms of your choice, provided + that you also meet, for each linked independent module, the terms and + conditions of the license of that module. + An independent module is a module which is not derived from this software. + The special exception does not apply to any modifications of the software. + Not withstanding the above, under no circumstances may you combine this + software in any way with any other Broadcom software provided under a + license other than the GPL, without Broadcom's express prior written + consent. +--- + As a special exception, the copyright holders of this software give you permission to link this software with independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from this software. The special exception does not apply to any modifications of the software. diff --git a/src/licensedcode/data/licenses/broadcom-linking-exception-2.0.yml b/src/licensedcode/data/licenses/broadcom-linking-exception-2.0.yml deleted file mode 100644 index 6ce9fc39eec..00000000000 --- a/src/licensedcode/data/licenses/broadcom-linking-exception-2.0.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: broadcom-linking-exception-2.0 -short_name: Broadcom Linking Exception to GPL 2.0 -name: Broadcom Linking Exception to GPL 2.0 -category: Copyleft Limited -owner: Broadcom -is_exception: yes -spdx_license_key: LicenseRef-scancode-bcm-linking-exception-2.0 -standard_notice: | - Copyright (c) 2006-2007 Broadcom Corporation - All Rights Reserved - Unless you and Broadcom execute a separate written software license - agreement governing use of this software, this software is licensed to you - under the terms of the GNU General Public License version 2 (the "GPL"), - available at http://www.broadcom.com/licenses/GPLv2.php, with the following - added to such license: - As a special exception, the copyright holders of this software give you - permission to link this software with independent modules, and to copy and - distribute the resulting executable under terms of your choice, provided - that you also meet, for each linked independent module, the terms and - conditions of the license of that module. - An independent module is a module which is not derived from this software. - The special exception does not apply to any modifications of the software. - Not withstanding the above, under no circumstances may you combine this - software in any way with any other Broadcom software provided under a - license other than the GPL, without Broadcom's express prior written - consent. diff --git a/src/licensedcode/data/licenses/broadcom-linking-unmodified.LICENSE b/src/licensedcode/data/licenses/broadcom-linking-unmodified.LICENSE index 3392f2d1324..f6d3232c6c4 100644 --- a/src/licensedcode/data/licenses/broadcom-linking-unmodified.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-linking-unmodified.LICENSE @@ -1,3 +1,14 @@ +--- +key: broadcom-linking-unmodified +short_name: Broadcom Linking Exception if unmodified +name: Broadcom Linking Exception if unmodified +category: Copyleft Limited +owner: Broadcom +notes: The exception does not apply when modified +is_exception: yes +spdx_license_key: LicenseRef-scancode-broadcom-linking-unmodified +--- + As a special exception, the copyright holders of this software give you permission to link this software with independent modules, and to copy and distribute the resulting executable under terms of your choice, @@ -6,5 +17,4 @@ terms and conditions of the license of that module. An independent module is a module which is not derived from this software. The special exception does not apply to any modifications of -the software. - +the software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/broadcom-linking-unmodified.yml b/src/licensedcode/data/licenses/broadcom-linking-unmodified.yml deleted file mode 100644 index c96fa2ecd10..00000000000 --- a/src/licensedcode/data/licenses/broadcom-linking-unmodified.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: broadcom-linking-unmodified -short_name: Broadcom Linking Exception if unmodified -name: Broadcom Linking Exception if unmodified -category: Copyleft Limited -owner: Broadcom -notes: The exception does not apply when modified -is_exception: yes -spdx_license_key: LicenseRef-scancode-broadcom-linking-unmodified diff --git a/src/licensedcode/data/licenses/broadcom-linux-firmware.LICENSE b/src/licensedcode/data/licenses/broadcom-linux-firmware.LICENSE index 4a335036faa..40a7f02b5d6 100644 --- a/src/licensedcode/data/licenses/broadcom-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: broadcom-linux-firmware +short_name: Broadcom Linux Firmware License +name: Broadcom Linux Firmware License +category: Proprietary Free +owner: Broadcom +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.broadcom_bcm43xx +spdx_license_key: LicenseRef-scancode-broadcom-linux-firmware +--- + SOFTWARE LICENSE AGREEMENT The accompanying software in binary code form (“Software”), is licensed to you, diff --git a/src/licensedcode/data/licenses/broadcom-linux-firmware.yml b/src/licensedcode/data/licenses/broadcom-linux-firmware.yml deleted file mode 100644 index f50472e8009..00000000000 --- a/src/licensedcode/data/licenses/broadcom-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: broadcom-linux-firmware -short_name: Broadcom Linux Firmware License -name: Broadcom Linux Firmware License -category: Proprietary Free -owner: Broadcom -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.broadcom_bcm43xx -spdx_license_key: LicenseRef-scancode-broadcom-linux-firmware diff --git a/src/licensedcode/data/licenses/broadcom-linux-timer.LICENSE b/src/licensedcode/data/licenses/broadcom-linux-timer.LICENSE index 5030f4b947d..71da833c483 100644 --- a/src/licensedcode/data/licenses/broadcom-linux-timer.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-linux-timer.LICENSE @@ -1,3 +1,16 @@ +--- +key: broadcom-linux-timer +short_name: Broadcom Warranty Disclaimer +name: Broadcom Warranty Disclaimer +category: Permissive +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-linux-timer +ignorable_copyrights: + - Copyright (c) Broadcom Corporation +ignorable_holders: + - Broadcom Corporation +--- + Copyright (c) Broadcom Corporation All Rights Reserved. THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF diff --git a/src/licensedcode/data/licenses/broadcom-linux-timer.yml b/src/licensedcode/data/licenses/broadcom-linux-timer.yml deleted file mode 100644 index 1ace3b8e21c..00000000000 --- a/src/licensedcode/data/licenses/broadcom-linux-timer.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: broadcom-linux-timer -short_name: Broadcom Warranty Disclaimer -name: Broadcom Warranty Disclaimer -category: Permissive -owner: Broadcom -spdx_license_key: LicenseRef-scancode-broadcom-linux-timer -ignorable_copyrights: - - Copyright (c) Broadcom Corporation -ignorable_holders: - - Broadcom Corporation diff --git a/src/licensedcode/data/licenses/broadcom-proprietary.LICENSE b/src/licensedcode/data/licenses/broadcom-proprietary.LICENSE index 2da5a0ff48f..a19d230df57 100644 --- a/src/licensedcode/data/licenses/broadcom-proprietary.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-proprietary.LICENSE @@ -1,3 +1,12 @@ +--- +key: broadcom-proprietary +short_name: Broadcom Proprietary +name: Broadcom Proprietary License +category: Proprietary Free +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-proprietary +--- + SOFTWARE LICENSE AGREEMENT Unless you and Broadcom Corporation ("Broadcom") execute a separate written diff --git a/src/licensedcode/data/licenses/broadcom-proprietary.yml b/src/licensedcode/data/licenses/broadcom-proprietary.yml deleted file mode 100644 index 3348c978376..00000000000 --- a/src/licensedcode/data/licenses/broadcom-proprietary.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: broadcom-proprietary -short_name: Broadcom Proprietary -name: Broadcom Proprietary License -category: Proprietary Free -owner: Broadcom -spdx_license_key: LicenseRef-scancode-broadcom-proprietary diff --git a/src/licensedcode/data/licenses/broadcom-raspberry-pi.LICENSE b/src/licensedcode/data/licenses/broadcom-raspberry-pi.LICENSE index d3ad0ceb634..613724fbb12 100644 --- a/src/licensedcode/data/licenses/broadcom-raspberry-pi.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-raspberry-pi.LICENSE @@ -1,3 +1,13 @@ +--- +key: broadcom-raspberry-pi +short_name: Broadcom Raspberry Pi Firmware License +name: Broadcom Raspberry Pi Firmware License +category: Proprietary Free +owner: Broadcom +homepage_url: https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom +spdx_license_key: LicenseRef-scancode-broadcom-raspberry-pi +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/broadcom-raspberry-pi.yml b/src/licensedcode/data/licenses/broadcom-raspberry-pi.yml deleted file mode 100644 index 43186debfa5..00000000000 --- a/src/licensedcode/data/licenses/broadcom-raspberry-pi.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: broadcom-raspberry-pi -short_name: Broadcom Raspberry Pi Firmware License -name: Broadcom Raspberry Pi Firmware License -category: Proprietary Free -owner: Broadcom -homepage_url: https://github.com/raspberrypi/firmware/blob/master/boot/LICENCE.broadcom -spdx_license_key: LicenseRef-scancode-broadcom-raspberry-pi diff --git a/src/licensedcode/data/licenses/broadcom-standard-terms.LICENSE b/src/licensedcode/data/licenses/broadcom-standard-terms.LICENSE index f5b5a9cc458..1d6af902427 100644 --- a/src/licensedcode/data/licenses/broadcom-standard-terms.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-standard-terms.LICENSE @@ -1,3 +1,12 @@ +--- +key: broadcom-standard-terms +short_name: Broadcom Standard Terms +name: Broadcom Standard Terms +category: Commercial +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-standard-terms +--- + This program is the proprietary software of Broadcom Corporation and/or its licensors, and may only be used, duplicated, modified or distributed pursuant to the terms and conditions of a separate, written license diff --git a/src/licensedcode/data/licenses/broadcom-standard-terms.yml b/src/licensedcode/data/licenses/broadcom-standard-terms.yml deleted file mode 100644 index aa79c9173ff..00000000000 --- a/src/licensedcode/data/licenses/broadcom-standard-terms.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: broadcom-standard-terms -short_name: Broadcom Standard Terms -name: Broadcom Standard Terms -category: Commercial -owner: Broadcom -spdx_license_key: LicenseRef-scancode-broadcom-standard-terms diff --git a/src/licensedcode/data/licenses/broadcom-unpublished-source.LICENSE b/src/licensedcode/data/licenses/broadcom-unpublished-source.LICENSE index 800c0cc3fd0..0f9ace2bc5c 100644 --- a/src/licensedcode/data/licenses/broadcom-unpublished-source.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-unpublished-source.LICENSE @@ -1 +1,11 @@ -This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written permission of Broadcom Corporation. \ No newline at end of file +--- +key: broadcom-unpublished-source +is_deprecated: yes +short_name: Broadcom Unpublished Source License +name: Broadcom Unpublished Source License +category: Commercial +owner: Broadcom +notes: use unpublished-source instead +--- + +This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written permission of Broadcom Corporation. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/broadcom-unpublished-source.yml b/src/licensedcode/data/licenses/broadcom-unpublished-source.yml deleted file mode 100644 index b0f900878c0..00000000000 --- a/src/licensedcode/data/licenses/broadcom-unpublished-source.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: broadcom-unpublished-source -is_deprecated: yes -short_name: Broadcom Unpublished Source License -name: Broadcom Unpublished Source License -category: Commercial -owner: Broadcom -notes: use unpublished-source instead diff --git a/src/licensedcode/data/licenses/broadcom-wiced.LICENSE b/src/licensedcode/data/licenses/broadcom-wiced.LICENSE index 0da4150d4b7..57196709f33 100644 --- a/src/licensedcode/data/licenses/broadcom-wiced.LICENSE +++ b/src/licensedcode/data/licenses/broadcom-wiced.LICENSE @@ -1,3 +1,14 @@ +--- +key: broadcom-wiced +short_name: Broadcom WICED SDK License +name: Broadcom WICED Development Kit License Agreement +category: Proprietary Free +owner: Broadcom +spdx_license_key: LicenseRef-scancode-broadcom-wiced +ignorable_urls: + - http://www.broadcom.com/ +--- + BROADCOM WICED DEVELOPMENT KIT LICENSE AGREEMENT IMPORTANT—BY OPENING THE PACKAGE FOR THIS BROADCOM WIRELESS INTERNET CONNECTIVITY FOR EMBEDDED DEVICES DEVELOPER’S KIT ("SDK"), YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT ("AGREEMENT"). IF YOU DO NOT AGREE WITH THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD, INSTALL OR USE THE SOFTWARE AND PROMPTLY RETURN THE SDK AND THE ACCOMPANYING DOCUMENTATION TO BROADCOM. IF YOU AGREE WITH AND ACCEPT THE TERMS AND CONDITIONS OF THIS AGREEMENT, IT SHALL BECOME A LEGALLY BINDING AGREEMENT BETWEEN YOU AND BROADCOM CORPORATION ("BROADCOM"), AND YOU MAY PROCEED TO DOWNLOAD, INSTALL, AND USE THE SDK IN ACCORDANCE WITH THE TERMS AND CONDITIONS OF THIS AGREEMENT. diff --git a/src/licensedcode/data/licenses/broadcom-wiced.yml b/src/licensedcode/data/licenses/broadcom-wiced.yml deleted file mode 100644 index 02a642048b9..00000000000 --- a/src/licensedcode/data/licenses/broadcom-wiced.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: broadcom-wiced -short_name: Broadcom WICED SDK License -name: Broadcom WICED Development Kit License Agreement -category: Proprietary Free -owner: Broadcom -spdx_license_key: LicenseRef-scancode-broadcom-wiced -ignorable_urls: - - http://www.broadcom.com/ diff --git a/src/licensedcode/data/licenses/broadleaf-fair-use.LICENSE b/src/licensedcode/data/licenses/broadleaf-fair-use.LICENSE index 1b71171f5e3..295cbf87978 100644 --- a/src/licensedcode/data/licenses/broadleaf-fair-use.LICENSE +++ b/src/licensedcode/data/licenses/broadleaf-fair-use.LICENSE @@ -1,3 +1,15 @@ +--- +key: broadleaf-fair-use +short_name: Broadleaf Fair Use License Agreement v1.0 +name: Broadleaf Fair Use License Agreement v1.0 +category: Proprietary Free +owner: Broadleaf +homepage_url: http://license.broadleafcommerce.org/fair_use_license-1.0.txt +spdx_license_key: LicenseRef-scancode-broadleaf-fair-use +ignorable_urls: + - http://www.broadleafcommerce.com/license/commercial +--- + Broadleaf Fair Use License Agreement - Version 1.0 BY USING THE SOFTWARE, YOU (EITHER AN INDIVIDUAL OR A SINGLE ENTITY) AGREE THAT THIS COMMUNITY FAIR USE LICENSE AGREEMENT ("AGREEMENT") IS ENFORCEABLE LIKE ANY WRITTEN CONTRACT SIGNED BY YOU. IF YOU DO NOT AGREE TO ALL THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE. THE SOFTWARE YOU HAVE RECEIVED WITH OR SUBJECT TO THIS LICENSE IS THE SOFTWARE FOR COMMUNITY USE ("COMMUNITY SOFTWARE") AND IS SUBJECT TO VERY SPECIFIC LIMITATIONS BELOW. IF YOU EXCEED SUCH LIMITATIONS, THEN YOU WILL BE IMMEDIATELY REQUIRED TO PURCHASE A PAID PRODUCT AND LICENSE FEES WILL BE DUE FOR ANY PERIOD OF SUCH PAST USE IN VIOLATION HEREOF. diff --git a/src/licensedcode/data/licenses/broadleaf-fair-use.yml b/src/licensedcode/data/licenses/broadleaf-fair-use.yml deleted file mode 100644 index d524cec077a..00000000000 --- a/src/licensedcode/data/licenses/broadleaf-fair-use.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: broadleaf-fair-use -short_name: Broadleaf Fair Use License Agreement v1.0 -name: Broadleaf Fair Use License Agreement v1.0 -category: Proprietary Free -owner: Broadleaf -homepage_url: http://license.broadleafcommerce.org/fair_use_license-1.0.txt -spdx_license_key: LicenseRef-scancode-broadleaf-fair-use -ignorable_urls: - - http://www.broadleafcommerce.com/license/commercial diff --git a/src/licensedcode/data/licenses/brocade-firmware.LICENSE b/src/licensedcode/data/licenses/brocade-firmware.LICENSE index 8cf07ad8e3f..1f6160b03ea 100644 --- a/src/licensedcode/data/licenses/brocade-firmware.LICENSE +++ b/src/licensedcode/data/licenses/brocade-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: brocade-firmware +short_name: Brocade Firmware License +name: Brocade Firmware License +category: Permissive +owner: Brocade +homepage_url: http://download.vikis.lt/doc//bfa-firmware-3.2.23.0/LICENSE +spdx_license_key: LicenseRef-scancode-brocade-firmware +--- + Brocade Linux Fibre Channel HBA Firmware You may redistribute the hardware specific firmware binary file diff --git a/src/licensedcode/data/licenses/brocade-firmware.yml b/src/licensedcode/data/licenses/brocade-firmware.yml deleted file mode 100644 index 8c642442fe8..00000000000 --- a/src/licensedcode/data/licenses/brocade-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: brocade-firmware -short_name: Brocade Firmware License -name: Brocade Firmware License -category: Permissive -owner: Brocade -homepage_url: http://download.vikis.lt/doc//bfa-firmware-3.2.23.0/LICENSE -spdx_license_key: LicenseRef-scancode-brocade-firmware diff --git a/src/licensedcode/data/licenses/bruno-podetti.LICENSE b/src/licensedcode/data/licenses/bruno-podetti.LICENSE index df73052857d..eaca849e314 100644 --- a/src/licensedcode/data/licenses/bruno-podetti.LICENSE +++ b/src/licensedcode/data/licenses/bruno-podetti.LICENSE @@ -1,3 +1,13 @@ +--- +key: bruno-podetti +short_name: Bruno Podetti License +name: Bruno Podetti License +category: Permissive +owner: Bruno Podetti +homepage_url: http://www.codeproject.com/Articles/2354/Owner-Drawn-Menu-with-Icons-Titles-and-Shading +spdx_license_key: LicenseRef-scancode-bruno-podetti +--- + You are free to use/modify this code but leave this header intact. This class is public domain so you are free to use it any of your applications (Freeware, Shareware, Commercial). diff --git a/src/licensedcode/data/licenses/bruno-podetti.yml b/src/licensedcode/data/licenses/bruno-podetti.yml deleted file mode 100644 index 46c797e80f4..00000000000 --- a/src/licensedcode/data/licenses/bruno-podetti.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: bruno-podetti -short_name: Bruno Podetti License -name: Bruno Podetti License -category: Permissive -owner: Bruno Podetti -homepage_url: http://www.codeproject.com/Articles/2354/Owner-Drawn-Menu-with-Icons-Titles-and-Shading -spdx_license_key: LicenseRef-scancode-bruno-podetti diff --git a/src/licensedcode/data/licenses/bsd-1-clause-build.LICENSE b/src/licensedcode/data/licenses/bsd-1-clause-build.LICENSE index b89050c4144..de144b9a933 100644 --- a/src/licensedcode/data/licenses/bsd-1-clause-build.LICENSE +++ b/src/licensedcode/data/licenses/bsd-1-clause-build.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-1-clause-build +short_name: BSD-1-Clause Build +name: BSD-1-Clause Build system +category: Permissive +owner: PRPL Foundation. +homepage_url: https://github.com/prplfoundation/prplwrt/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-bsd-1-clause-build +--- + Redistribution and use, with or without modification, are permitted provided that the following condition is met: @@ -16,4 +26,4 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Note that while this license applies to the build system itself the -software it builds is separately licensed under its own terms and conditions. +software it builds is separately licensed under its own terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-1-clause-build.yml b/src/licensedcode/data/licenses/bsd-1-clause-build.yml deleted file mode 100644 index 6a345df288a..00000000000 --- a/src/licensedcode/data/licenses/bsd-1-clause-build.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: bsd-1-clause-build -short_name: BSD-1-Clause Build -name: BSD-1-Clause Build system -category: Permissive -owner: PRPL Foundation. -homepage_url: https://github.com/prplfoundation/prplwrt/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-bsd-1-clause-build diff --git a/src/licensedcode/data/licenses/bsd-1-clause.LICENSE b/src/licensedcode/data/licenses/bsd-1-clause.LICENSE index d81b606c5b9..494c397eaf4 100644 --- a/src/licensedcode/data/licenses/bsd-1-clause.LICENSE +++ b/src/licensedcode/data/licenses/bsd-1-clause.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-1-clause +short_name: BSD-1-Clause +name: BSD-1-Clause +category: Permissive +owner: BSDI - Berkeley Software Design, Inc. +homepage_url: https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823 +spdx_license_key: BSD-1-Clause +text_urls: + - https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823 + - https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=250887&view=markup +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -14,4 +27,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-1-clause.yml b/src/licensedcode/data/licenses/bsd-1-clause.yml deleted file mode 100644 index 71532cc56f0..00000000000 --- a/src/licensedcode/data/licenses/bsd-1-clause.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-1-clause -short_name: BSD-1-Clause -name: BSD-1-Clause -category: Permissive -owner: BSDI - Berkeley Software Design, Inc. -homepage_url: https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823 -spdx_license_key: BSD-1-Clause -text_urls: - - https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=326823 - - https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision=250887&view=markup diff --git a/src/licensedcode/data/licenses/bsd-1988.LICENSE b/src/licensedcode/data/licenses/bsd-1988.LICENSE index e7b64466ff3..f3f97696b6a 100644 --- a/src/licensedcode/data/licenses/bsd-1988.LICENSE +++ b/src/licensedcode/data/licenses/bsd-1988.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-1988 +short_name: BSD 1988 +name: BSD 1988 +category: Permissive +owner: Regents of the University of California +spdx_license_key: LicenseRef-scancode-bsd-1988 +ignorable_copyrights: + - copyright holder and its contributors +ignorable_holders: + - its contributors +--- + Redistribution and use in source and binary forms are permitted provided that: (1) source distributions retain this entire copyright notice and comment, and diff --git a/src/licensedcode/data/licenses/bsd-1988.yml b/src/licensedcode/data/licenses/bsd-1988.yml deleted file mode 100644 index 4173cfda2af..00000000000 --- a/src/licensedcode/data/licenses/bsd-1988.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-1988 -short_name: BSD 1988 -name: BSD 1988 -category: Permissive -owner: Regents of the University of California -spdx_license_key: LicenseRef-scancode-bsd-1988 -ignorable_copyrights: - - copyright holder and its contributors -ignorable_holders: - - its contributors diff --git a/src/licensedcode/data/licenses/bsd-2-clause-freebsd.LICENSE b/src/licensedcode/data/licenses/bsd-2-clause-freebsd.LICENSE index ed7f0de4692..9841c205d1b 100644 --- a/src/licensedcode/data/licenses/bsd-2-clause-freebsd.LICENSE +++ b/src/licensedcode/data/licenses/bsd-2-clause-freebsd.LICENSE @@ -1,3 +1,24 @@ +--- +key: bsd-2-clause-freebsd +is_deprecated: yes +short_name: BSD-2-Clause-FreeBSD +name: BSD-2-Clause-FreeBSD License +category: Permissive +owner: FreeBSD +homepage_url: http://www.freebsd.org/copyright/freebsd-license.html +notes: This license was deprecated at SPDX because BSD-2-Clause-Views has been added, as a more + generalized version; and because FreeBSD project community members have indicated that the + final sentence is not part of that project's code license. It's original spdx_license_key + Was SPDX BSD-2-Clause-FreeBSD +text_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +faq_url: https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/pref-license.html +ignorable_copyrights: + - Copyright (c) The FreeBSD Project +ignorable_holders: + - The FreeBSD Project +--- + The FreeBSD Copyright Copyright (c) The FreeBSD Project. All rights reserved. diff --git a/src/licensedcode/data/licenses/bsd-2-clause-freebsd.yml b/src/licensedcode/data/licenses/bsd-2-clause-freebsd.yml deleted file mode 100644 index c0ede4849fb..00000000000 --- a/src/licensedcode/data/licenses/bsd-2-clause-freebsd.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: bsd-2-clause-freebsd -is_deprecated: yes -short_name: BSD-2-Clause-FreeBSD -name: BSD-2-Clause-FreeBSD License -category: Permissive -owner: FreeBSD -homepage_url: http://www.freebsd.org/copyright/freebsd-license.html -notes: This license was deprecated at SPDX because BSD-2-Clause-Views has been added, as a more - generalized version; and because FreeBSD project community members have indicated that the - final sentence is not part of that project's code license. It's original spdx_license_key - Was SPDX BSD-2-Clause-FreeBSD -text_urls: - - http://www.freebsd.org/copyright/freebsd-license.html -faq_url: https://www.freebsd.org/doc/en_US.ISO8859-1/articles/committers-guide/pref-license.html -ignorable_copyrights: - - Copyright (c) The FreeBSD Project -ignorable_holders: - - The FreeBSD Project diff --git a/src/licensedcode/data/licenses/bsd-2-clause-netbsd.LICENSE b/src/licensedcode/data/licenses/bsd-2-clause-netbsd.LICENSE index b132a55d6b6..bfe3d1b24f7 100644 --- a/src/licensedcode/data/licenses/bsd-2-clause-netbsd.LICENSE +++ b/src/licensedcode/data/licenses/bsd-2-clause-netbsd.LICENSE @@ -1,3 +1,21 @@ +--- +key: bsd-2-clause-netbsd +is_deprecated: yes +short_name: BSD-2-Clause-NetBSD +name: BSD-2-Clause-NetBSD License +category: Permissive +owner: NetBSD +homepage_url: http://www.netbsd.org/about/redistribution.html#default +notes: | + Except for the NetBSD Foundation name this license is identical to the + bsd-simplified Per SPDX.org, NetBSD adopted this 2-clause license in 2008 + for code contributed to NetBSD Foundation. + Its former SPDX key was BSD-2-Clause-NetBSD. This is now tracked as + bsd-simplified aka. BSD-2-Clause. +text_urls: + - http://www.netbsd.org/about/redistribution.html#default +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -18,4 +36,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-2-clause-netbsd.yml b/src/licensedcode/data/licenses/bsd-2-clause-netbsd.yml deleted file mode 100644 index 00d6ca55d40..00000000000 --- a/src/licensedcode/data/licenses/bsd-2-clause-netbsd.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bsd-2-clause-netbsd -is_deprecated: yes -short_name: BSD-2-Clause-NetBSD -name: BSD-2-Clause-NetBSD License -category: Permissive -owner: NetBSD -homepage_url: http://www.netbsd.org/about/redistribution.html#default -notes: | - Except for the NetBSD Foundation name this license is identical to the - bsd-simplified Per SPDX.org, NetBSD adopted this 2-clause license in 2008 - for code contributed to NetBSD Foundation. - Its former SPDX key was BSD-2-Clause-NetBSD. This is now tracked as - bsd-simplified aka. BSD-2-Clause. -text_urls: - - http://www.netbsd.org/about/redistribution.html#default diff --git a/src/licensedcode/data/licenses/bsd-2-clause-plus-advertizing.LICENSE b/src/licensedcode/data/licenses/bsd-2-clause-plus-advertizing.LICENSE index 6119110330c..6af498bc1e9 100644 --- a/src/licensedcode/data/licenses/bsd-2-clause-plus-advertizing.LICENSE +++ b/src/licensedcode/data/licenses/bsd-2-clause-plus-advertizing.LICENSE @@ -1,3 +1,17 @@ +--- +key: bsd-2-clause-plus-advertizing +short_name: BSD-2-Clause-plus-advertizing +name: BSD-2-Clause-plus-advertizing +category: Permissive +owner: Konstantin Chuguev +spdx_license_key: LicenseRef-scancode-bsd-2-clause-plus-advertizing +other_urls: + - http://www.trieuvan.com/apache/apr/apr-iconv-1.2.1.tar.gz + - https://apr.apache.org/ +ignorable_authors: + - its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-2-clause-plus-advertizing.yml b/src/licensedcode/data/licenses/bsd-2-clause-plus-advertizing.yml deleted file mode 100644 index 6a2358ba9b0..00000000000 --- a/src/licensedcode/data/licenses/bsd-2-clause-plus-advertizing.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: bsd-2-clause-plus-advertizing -short_name: BSD-2-Clause-plus-advertizing -name: BSD-2-Clause-plus-advertizing -category: Permissive -owner: Konstantin Chuguev -spdx_license_key: LicenseRef-scancode-bsd-2-clause-plus-advertizing -other_urls: - - http://www.trieuvan.com/apache/apr/apr-iconv-1.2.1.tar.gz - - https://apr.apache.org/ -ignorable_authors: - - its contributors diff --git a/src/licensedcode/data/licenses/bsd-2-clause-views.LICENSE b/src/licensedcode/data/licenses/bsd-2-clause-views.LICENSE index 145a40023ff..b43e91c9ff0 100644 --- a/src/licensedcode/data/licenses/bsd-2-clause-views.LICENSE +++ b/src/licensedcode/data/licenses/bsd-2-clause-views.LICENSE @@ -1,3 +1,23 @@ +--- +key: bsd-2-clause-views +short_name: BSD-2-Clause-Views +name: BSD 2-Clause with views sentence +category: Permissive +owner: FreeBSD +homepage_url: https://www.freebsd.org/copyright/freebsd-license.html +spdx_license_key: BSD-2-Clause-Views +other_spdx_license_keys: + - BSD-2-Clause-FreeBSD +text_urls: + - https://github.com/protegeproject/protege/blob/master/license.txt +other_urls: + - http://www.freebsd.org/copyright/freebsd-license.html + - https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh +standard_notice: | + The FreeBSD Copyright + Copyright 1992-2020 The FreeBSD Project. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-2-clause-views.yml b/src/licensedcode/data/licenses/bsd-2-clause-views.yml deleted file mode 100644 index 6300467d28f..00000000000 --- a/src/licensedcode/data/licenses/bsd-2-clause-views.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: bsd-2-clause-views -short_name: BSD-2-Clause-Views -name: BSD 2-Clause with views sentence -category: Permissive -owner: FreeBSD -homepage_url: https://www.freebsd.org/copyright/freebsd-license.html -spdx_license_key: BSD-2-Clause-Views -other_spdx_license_keys: - - BSD-2-Clause-FreeBSD -text_urls: - - https://github.com/protegeproject/protege/blob/master/license.txt -other_urls: - - http://www.freebsd.org/copyright/freebsd-license.html - - https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh -standard_notice: | - The FreeBSD Copyright - Copyright 1992-2020 The FreeBSD Project. diff --git a/src/licensedcode/data/licenses/bsd-3-clause-devine.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-devine.LICENSE index 6260ae5ab16..b4b6b0e4021 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-devine.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-devine.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-3-clause-devine +short_name: BSD 3-Clause Devine +name: BSD 3-Clause Devine +category: Permissive +owner: Christophe Devine +notes: The second clause for binaries is unique as it is optional and no longer a condition + per this statement "Redistributions in binary form may or may not reproduce" Seen in AES + code from GPL Ghostscript, originally from XyzSSL +spdx_license_key: LicenseRef-scancode-bsd-3-clause-devine +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +34,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-3-clause-devine.yml b/src/licensedcode/data/licenses/bsd-3-clause-devine.yml deleted file mode 100644 index f5f97f4a0d4..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-devine.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-3-clause-devine -short_name: BSD 3-Clause Devine -name: BSD 3-Clause Devine -category: Permissive -owner: Christophe Devine -notes: The second clause for binaries is unique as it is optional and no longer a condition - per this statement "Redistributions in binary form may or may not reproduce" Seen in AES - code from GPL Ghostscript, originally from XyzSSL -spdx_license_key: LicenseRef-scancode-bsd-3-clause-devine diff --git a/src/licensedcode/data/licenses/bsd-3-clause-fda.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-fda.LICENSE index 2cff90fca04..bb08a1348af 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-fda.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-fda.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-3-clause-fda +short_name: BSD 3-Clause FDA +name: BSD 3-Clause FDA +category: Permissive +owner: U.S. Food and Drug Administration +notes: This is based on the bsd-3-clause and a different disclaimer +spdx_license_key: LicenseRef-scancode-bsd-3-clause-fda +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-3-clause-fda.yml b/src/licensedcode/data/licenses/bsd-3-clause-fda.yml deleted file mode 100644 index beaf6b8aae3..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-fda.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bsd-3-clause-fda -short_name: BSD 3-Clause FDA -name: BSD 3-Clause FDA -category: Permissive -owner: U.S. Food and Drug Administration -notes: This is based on the bsd-3-clause and a different disclaimer -spdx_license_key: LicenseRef-scancode-bsd-3-clause-fda -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/bsd-3-clause-jtag.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-jtag.LICENSE index d18e064d8ac..fd287e65781 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-jtag.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-jtag.LICENSE @@ -1,3 +1,18 @@ +--- +key: bsd-3-clause-jtag +short_name: BSD 3-Clause jtag +name: BSD 3-Clause jtag +category: Permissive +owner: Regents of the University of California +notes: Seen in https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE This is a cross over + between a bsd-new and a postgres license with some new language related to "two paragraphs". + The warranty disclaimer is inspited from the postgres license +spdx_license_key: LicenseRef-scancode-bsd-3-clause-jtag +other_urls: + - https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +36,4 @@ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR -MODIFICATIONS. +MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-3-clause-jtag.yml b/src/licensedcode/data/licenses/bsd-3-clause-jtag.yml deleted file mode 100644 index 1fc0e76c1de..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-jtag.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: bsd-3-clause-jtag -short_name: BSD 3-Clause jtag -name: BSD 3-Clause jtag -category: Permissive -owner: Regents of the University of California -notes: Seen in https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE This is a cross over - between a bsd-new and a postgres license with some new language related to "two paragraphs". - The warranty disclaimer is inspited from the postgres license -spdx_license_key: LicenseRef-scancode-bsd-3-clause-jtag -other_urls: - - https://github.com/ucb-art/chisel-jtag/blob/master/LICENSE -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-change.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-no-change.LICENSE index 97064fc84a1..aa9fa34846b 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-change.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-no-change.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-3-clause-no-change +short_name: BSD 3-Clause No Change +name: BSD 3-Clause No Change +category: Permissive +owner: David Corcoran +homepage_url: https://pcsclite.apdu.fr/ +notes: there is an extra clause about changes which has some ambiguities +spdx_license_key: LicenseRef-scancode-bsd-3-clause-no-change +other_urls: + - https://salsa.debian.org/rousseau/PCSC/blob/master/COPYING +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,5 +35,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-change.yml b/src/licensedcode/data/licenses/bsd-3-clause-no-change.yml deleted file mode 100644 index 9fc8f86e3a8..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-change.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-3-clause-no-change -short_name: BSD 3-Clause No Change -name: BSD 3-Clause No Change -category: Permissive -owner: David Corcoran -homepage_url: https://pcsclite.apdu.fr/ -notes: there is an extra clause about changes which has some ambiguities -spdx_license_key: LicenseRef-scancode-bsd-3-clause-no-change -other_urls: - - https://salsa.debian.org/rousseau/PCSC/blob/master/COPYING diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-military.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-no-military.LICENSE index 55b4171cfb4..9d0d332a832 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-military.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-no-military.LICENSE @@ -1,3 +1,18 @@ +--- +key: bsd-3-clause-no-military +short_name: BSD-3-Clause-No-Military +name: BSD-3-Clause-No-Military +category: Free Restricted +owner: Unspecified +spdx_license_key: BSD-3-Clause-No-Military-License +other_spdx_license_keys: + - LicenseRef-scancode-bsd-3-clause-no-military +other_urls: + - https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE + - https://github.com/greymass/swift-eosio/blob/master/LICENSE +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-military.yml b/src/licensedcode/data/licenses/bsd-3-clause-no-military.yml deleted file mode 100644 index 1c5a391c4a9..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-military.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: bsd-3-clause-no-military -short_name: BSD-3-Clause-No-Military -name: BSD-3-Clause-No-Military -category: Free Restricted -owner: Unspecified -spdx_license_key: BSD-3-Clause-No-Military-License -other_spdx_license_keys: - - LicenseRef-scancode-bsd-3-clause-no-military -other_urls: - - https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE - - https://github.com/greymass/swift-eosio/blob/master/LICENSE -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-nuclear-warranty.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-no-nuclear-warranty.LICENSE index 83be0033aeb..92935399b5e 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-nuclear-warranty.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-no-nuclear-warranty.LICENSE @@ -1,3 +1,19 @@ +--- +key: bsd-3-clause-no-nuclear-warranty +short_name: BSD 3-Clause No Nuclear Warranty +name: BSD 3-Clause No Nuclear Warranty +category: Free Restricted +owner: Oracle (Sun) +homepage_url: https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt +notes: | + per SPDX.org, it is the same license as BSD-3-Clause-No-Nuclear-License, + except it has a disclaimer for nuclear factility use, instead of the + software not licensed for such use. +spdx_license_key: BSD-3-Clause-No-Nuclear-Warranty +other_urls: + - https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-nuclear-warranty.yml b/src/licensedcode/data/licenses/bsd-3-clause-no-nuclear-warranty.yml deleted file mode 100644 index 58b6e4447af..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-nuclear-warranty.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: bsd-3-clause-no-nuclear-warranty -short_name: BSD 3-Clause No Nuclear Warranty -name: BSD 3-Clause No Nuclear Warranty -category: Free Restricted -owner: Oracle (Sun) -homepage_url: https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt -notes: | - per SPDX.org, it is the same license as BSD-3-Clause-No-Nuclear-License, - except it has a disclaimer for nuclear factility use, instead of the - software not licensed for such use. -spdx_license_key: BSD-3-Clause-No-Nuclear-Warranty -other_urls: - - https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-trademark.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-no-trademark.LICENSE index be508bcc6b1..cc06e768159 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-trademark.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-no-trademark.LICENSE @@ -1,3 +1,17 @@ +--- +key: bsd-3-clause-no-trademark +short_name: BSD 3-Clause no trademark +name: BSD 3-Clause no trademark +category: Permissive +owner: Apple +notes: Seen in https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE + This is a bsd-new with an extra trademark statement +spdx_license_key: LicenseRef-scancode-bsd-3-clause-no-trademark +other_urls: + - https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +36,4 @@ 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. +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-3-clause-no-trademark.yml b/src/licensedcode/data/licenses/bsd-3-clause-no-trademark.yml deleted file mode 100644 index d5600e7569e..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-no-trademark.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: bsd-3-clause-no-trademark -short_name: BSD 3-Clause no trademark -name: BSD 3-Clause no trademark -category: Permissive -owner: Apple -notes: Seen in https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE - This is a bsd-new with an extra trademark statement -spdx_license_key: LicenseRef-scancode-bsd-3-clause-no-trademark -other_urls: - - https://github.com/carekit-apple/CareKit/blob/248c42c4e4ea97ff5fe349361fa6e0a849eab204/LICENSE -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/bsd-3-clause-open-mpi.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-open-mpi.LICENSE index 9fe85ac5467..fd22343e8be 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-open-mpi.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-open-mpi.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-3-clause-open-mpi +short_name: BSD 3-Clause Open MPI variant +name: BSD 3-Clause Open MPI variant +category: Permissive +owner: Open MPI +homepage_url: https://www.open-mpi.org/community/license.php +spdx_license_key: BSD-3-Clause-Open-MPI +other_urls: + - https://www.open-mpi.org/community/license.php + - http://www.netlib.org/lapack/LICENSE.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-3-clause-open-mpi.yml b/src/licensedcode/data/licenses/bsd-3-clause-open-mpi.yml deleted file mode 100644 index 294a35bedd3..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-open-mpi.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-3-clause-open-mpi -short_name: BSD 3-Clause Open MPI variant -name: BSD 3-Clause Open MPI variant -category: Permissive -owner: Open MPI -homepage_url: https://www.open-mpi.org/community/license.php -spdx_license_key: BSD-3-Clause-Open-MPI -other_urls: - - https://www.open-mpi.org/community/license.php - - http://www.netlib.org/lapack/LICENSE.txt diff --git a/src/licensedcode/data/licenses/bsd-3-clause-sun.LICENSE b/src/licensedcode/data/licenses/bsd-3-clause-sun.LICENSE index 50bbcb17c30..642d35afbb2 100644 --- a/src/licensedcode/data/licenses/bsd-3-clause-sun.LICENSE +++ b/src/licensedcode/data/licenses/bsd-3-clause-sun.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-3-clause-sun +short_name: BSD 3-Clause Sun +name: BSD 3-Clause Sun +category: Permissive +owner: Oracle (Sun) +notes: This is the same as the bsd-3-clause-no-nuclear-warranty but without the nuclear related + terms. Rare and not exactly the same as a plain bsd. +spdx_license_key: LicenseRef-scancode-bsd-3-clause-sun +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-3-clause-sun.yml b/src/licensedcode/data/licenses/bsd-3-clause-sun.yml deleted file mode 100644 index fcd9daf5a9b..00000000000 --- a/src/licensedcode/data/licenses/bsd-3-clause-sun.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-3-clause-sun -short_name: BSD 3-Clause Sun -name: BSD 3-Clause Sun -category: Permissive -owner: Oracle (Sun) -notes: This is the same as the bsd-3-clause-no-nuclear-warranty but without the nuclear related - terms. Rare and not exactly the same as a plain bsd. -spdx_license_key: LicenseRef-scancode-bsd-3-clause-sun -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/bsd-4-clause-shortened.LICENSE b/src/licensedcode/data/licenses/bsd-4-clause-shortened.LICENSE index 7777badf328..e74f1295282 100644 --- a/src/licensedcode/data/licenses/bsd-4-clause-shortened.LICENSE +++ b/src/licensedcode/data/licenses/bsd-4-clause-shortened.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-4-clause-shortened +short_name: BSD-4-Clause-Shortened +name: BSD-4-Clause-Shortened +category: Permissive +owner: Regents of the University of California +spdx_license_key: BSD-4-Clause-Shortened +other_urls: + - https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright +ignorable_authors: + - the University of California, Lawrence Berkeley Laboratory and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that: diff --git a/src/licensedcode/data/licenses/bsd-4-clause-shortened.yml b/src/licensedcode/data/licenses/bsd-4-clause-shortened.yml deleted file mode 100644 index 244a093c619..00000000000 --- a/src/licensedcode/data/licenses/bsd-4-clause-shortened.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-4-clause-shortened -short_name: BSD-4-Clause-Shortened -name: BSD-4-Clause-Shortened -category: Permissive -owner: Regents of the University of California -spdx_license_key: BSD-4-Clause-Shortened -other_urls: - - https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright -ignorable_authors: - - the University of California, Lawrence Berkeley Laboratory and its contributors diff --git a/src/licensedcode/data/licenses/bsd-ack-carrot2.LICENSE b/src/licensedcode/data/licenses/bsd-ack-carrot2.LICENSE index 4ec8cb7483e..a20a03650c0 100644 --- a/src/licensedcode/data/licenses/bsd-ack-carrot2.LICENSE +++ b/src/licensedcode/data/licenses/bsd-ack-carrot2.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-ack-carrot2 +short_name: BSD Acknowledgment (Carrot2) License +name: BSD Acknowledgment (Carrot2) License +category: Permissive +owner: Carrot2 +homepage_url: http://www.carrot2.org/carrot2.LICENSE +spdx_license_key: LicenseRef-scancode-bsd-ack-carrot2 +minimum_coverage: 90 +ignorable_authors: + - the Carrot2 Project +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-ack-carrot2.yml b/src/licensedcode/data/licenses/bsd-ack-carrot2.yml deleted file mode 100644 index c33f394660e..00000000000 --- a/src/licensedcode/data/licenses/bsd-ack-carrot2.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-ack-carrot2 -short_name: BSD Acknowledgment (Carrot2) License -name: BSD Acknowledgment (Carrot2) License -category: Permissive -owner: Carrot2 -homepage_url: http://www.carrot2.org/carrot2.LICENSE -spdx_license_key: LicenseRef-scancode-bsd-ack-carrot2 -minimum_coverage: 90 -ignorable_authors: - - the Carrot2 Project diff --git a/src/licensedcode/data/licenses/bsd-ack.LICENSE b/src/licensedcode/data/licenses/bsd-ack.LICENSE index 12242170034..a050f7fbe8d 100644 --- a/src/licensedcode/data/licenses/bsd-ack.LICENSE +++ b/src/licensedcode/data/licenses/bsd-ack.LICENSE @@ -1,3 +1,18 @@ +--- +key: bsd-ack +short_name: BSD Acknowledgment License +name: BSD Acknowledgment License +category: Permissive +owner: Universidad de Palermo +homepage_url: https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution +spdx_license_key: BSD-3-Clause-Attribution +minimum_coverage: 90 +ignorable_authors: + - the Universidad de Palermo, Argentina (http://www.palermo.edu/) +ignorable_urls: + - http://www.palermo.edu/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-ack.yml b/src/licensedcode/data/licenses/bsd-ack.yml deleted file mode 100644 index a059b8af91e..00000000000 --- a/src/licensedcode/data/licenses/bsd-ack.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: bsd-ack -short_name: BSD Acknowledgment License -name: BSD Acknowledgment License -category: Permissive -owner: Universidad de Palermo -homepage_url: https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution -spdx_license_key: BSD-3-Clause-Attribution -minimum_coverage: 90 -ignorable_authors: - - the Universidad de Palermo, Argentina (http://www.palermo.edu/) -ignorable_urls: - - http://www.palermo.edu/ diff --git a/src/licensedcode/data/licenses/bsd-artwork.LICENSE b/src/licensedcode/data/licenses/bsd-artwork.LICENSE index ea9093c62ff..575d8cbb497 100644 --- a/src/licensedcode/data/licenses/bsd-artwork.LICENSE +++ b/src/licensedcode/data/licenses/bsd-artwork.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-artwork +short_name: BSD Artwork +name: BSD Artwork License +category: Permissive +owner: Armin Ronacher +homepage_url: http://flask.pocoo.org/docs/1.0/license/ +notes: this is a bsd-like license for ogos nd artwork without a disclaimer +spdx_license_key: LicenseRef-scancode-bsd-artwork +other_urls: + - https://www.getlektor.com/license/ +--- + This logo or a modified version may be used by anyone to refer to the project, but does not indicate endorsement by the project. @@ -9,4 +22,4 @@ are permitted provided that the following conditions are met: and this list of conditions. The names of the contributors to the softwaremay not be used to endorse or - promote products derived from this software without specific prior written permission. + promote products derived from this software without specific prior written permission. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-artwork.yml b/src/licensedcode/data/licenses/bsd-artwork.yml deleted file mode 100644 index 808bb612420..00000000000 --- a/src/licensedcode/data/licenses/bsd-artwork.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-artwork -short_name: BSD Artwork -name: BSD Artwork License -category: Permissive -owner: Armin Ronacher -homepage_url: http://flask.pocoo.org/docs/1.0/license/ -notes: this is a bsd-like license for ogos nd artwork without a disclaimer -spdx_license_key: LicenseRef-scancode-bsd-artwork -other_urls: - - https://www.getlektor.com/license/ diff --git a/src/licensedcode/data/licenses/bsd-atmel.LICENSE b/src/licensedcode/data/licenses/bsd-atmel.LICENSE index 1ff0b155fc0..f25bb2b3775 100644 --- a/src/licensedcode/data/licenses/bsd-atmel.LICENSE +++ b/src/licensedcode/data/licenses/bsd-atmel.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-atmel +short_name: BSD Atmel License +name: BSD Atmel License +category: Permissive +owner: Atmel +homepage_url: https://github.com/atmelcorp/atmel-software-package/blob/d11d2a558fb5bd017aa15a9a78fb237ab972f29c/LICENSE.md +notes: this is a bsd with clause 1 and 3 +spdx_license_key: LicenseRef-scancode-bsd-atmel +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -16,4 +28,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-atmel.yml b/src/licensedcode/data/licenses/bsd-atmel.yml deleted file mode 100644 index c5220509ab3..00000000000 --- a/src/licensedcode/data/licenses/bsd-atmel.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-atmel -short_name: BSD Atmel License -name: BSD Atmel License -category: Permissive -owner: Atmel -homepage_url: https://github.com/atmelcorp/atmel-software-package/blob/d11d2a558fb5bd017aa15a9a78fb237ab972f29c/LICENSE.md -notes: this is a bsd with clause 1 and 3 -spdx_license_key: LicenseRef-scancode-bsd-atmel -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/bsd-axis-nomod.LICENSE b/src/licensedcode/data/licenses/bsd-axis-nomod.LICENSE index 0212f848815..4023a63cc82 100644 --- a/src/licensedcode/data/licenses/bsd-axis-nomod.LICENSE +++ b/src/licensedcode/data/licenses/bsd-axis-nomod.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-axis-nomod +short_name: BSD-Axis without modification +name: BSD-Axis without modification +category: Permissive +owner: Unspecified +notes: This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel + And this extra variant has the words "without modification" added at the end of clause 1 + either with or without a comma +spdx_license_key: LicenseRef-scancode-bsd-axis-nomod +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +34,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-axis-nomod.yml b/src/licensedcode/data/licenses/bsd-axis-nomod.yml deleted file mode 100644 index e4a72da5fca..00000000000 --- a/src/licensedcode/data/licenses/bsd-axis-nomod.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-axis-nomod -short_name: BSD-Axis without modification -name: BSD-Axis without modification -category: Permissive -owner: Unspecified -notes: This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel - And this extra variant has the words "without modification" added at the end of clause 1 - either with or without a comma -spdx_license_key: LicenseRef-scancode-bsd-axis-nomod -minimum_coverage: 95 diff --git a/src/licensedcode/data/licenses/bsd-axis.LICENSE b/src/licensedcode/data/licenses/bsd-axis.LICENSE index fff5b15b6b6..425cf5726dd 100644 --- a/src/licensedcode/data/licenses/bsd-axis.LICENSE +++ b/src/licensedcode/data/licenses/bsd-axis.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-axis +short_name: BSD-Axis +name: BSD-Axis +category: Permissive +owner: Axis Communications +notes: This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel + This is now replaced by the bsd-source-code license. +is_deprecated: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-axis.yml b/src/licensedcode/data/licenses/bsd-axis.yml deleted file mode 100644 index fae09a80409..00000000000 --- a/src/licensedcode/data/licenses/bsd-axis.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bsd-axis -short_name: BSD-Axis -name: BSD-Axis -category: Permissive -owner: Axis Communications -notes: This is a variant composed of clause 1 and 3 of a BSD-Modified found in the Linux kernel - This is now replaced by the bsd-source-code license. -is_deprecated: yes diff --git a/src/licensedcode/data/licenses/bsd-credit.LICENSE b/src/licensedcode/data/licenses/bsd-credit.LICENSE index 289fc29104d..1fbb2c39d76 100644 --- a/src/licensedcode/data/licenses/bsd-credit.LICENSE +++ b/src/licensedcode/data/licenses/bsd-credit.LICENSE @@ -1,3 +1,12 @@ +--- +key: bsd-credit +short_name: BSD-Credit +name: BSD-Credit +category: Permissive +owner: OpenBSD Project +spdx_license_key: LicenseRef-scancode-bsd-credit +--- + Permission to use, copy, modify, and 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. @@ -12,4 +21,4 @@ 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. +THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-credit.yml b/src/licensedcode/data/licenses/bsd-credit.yml deleted file mode 100644 index 0dd9a3b6915..00000000000 --- a/src/licensedcode/data/licenses/bsd-credit.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: bsd-credit -short_name: BSD-Credit -name: BSD-Credit -category: Permissive -owner: OpenBSD Project -spdx_license_key: LicenseRef-scancode-bsd-credit diff --git a/src/licensedcode/data/licenses/bsd-dpt.LICENSE b/src/licensedcode/data/licenses/bsd-dpt.LICENSE index 1a2cd9d14b2..f2bc61a676d 100644 --- a/src/licensedcode/data/licenses/bsd-dpt.LICENSE +++ b/src/licensedcode/data/licenses/bsd-dpt.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-dpt +short_name: BSD DPT +name: BSD Distributed Processing Technology License +category: Permissive +owner: Distributed Processing Technology +spdx_license_key: LicenseRef-scancode-bsd-dpt +minimum_coverage: 95 +--- + Redistribution and use in source form, with or without modification, are permitted provided that redistributions of source code must retain the above copyright notice, this list of conditions and the following @@ -13,4 +23,4 @@ procurement of substitute goods or services; loss of use, data, or profits; or business interruptions) 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 -driver software, even if advised of the possibility of such damage. +driver software, even if advised of the possibility of such damage. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-dpt.yml b/src/licensedcode/data/licenses/bsd-dpt.yml deleted file mode 100644 index 8e6e14e187f..00000000000 --- a/src/licensedcode/data/licenses/bsd-dpt.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: bsd-dpt -short_name: BSD DPT -name: BSD Distributed Processing Technology License -category: Permissive -owner: Distributed Processing Technology -spdx_license_key: LicenseRef-scancode-bsd-dpt -minimum_coverage: 95 diff --git a/src/licensedcode/data/licenses/bsd-export.LICENSE b/src/licensedcode/data/licenses/bsd-export.LICENSE index 8ed98cd3027..518837a996e 100644 --- a/src/licensedcode/data/licenses/bsd-export.LICENSE +++ b/src/licensedcode/data/licenses/bsd-export.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-export +short_name: BSD-Export +name: BSD-Export +category: Permissive +owner: Cavium +spdx_license_key: LicenseRef-scancode-bsd-export +text_urls: + - https://download.juniper.net/disclosure/attributions/junos/10.4R1.9/disclosures.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-export.yml b/src/licensedcode/data/licenses/bsd-export.yml deleted file mode 100644 index 5b2c243a15c..00000000000 --- a/src/licensedcode/data/licenses/bsd-export.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bsd-export -short_name: BSD-Export -name: BSD-Export -category: Permissive -owner: Cavium -spdx_license_key: LicenseRef-scancode-bsd-export -text_urls: - - https://download.juniper.net/disclosure/attributions/junos/10.4R1.9/disclosures.txt diff --git a/src/licensedcode/data/licenses/bsd-innosys.LICENSE b/src/licensedcode/data/licenses/bsd-innosys.LICENSE index 94b324da6db..e5d0c294ec5 100644 --- a/src/licensedcode/data/licenses/bsd-innosys.LICENSE +++ b/src/licensedcode/data/licenses/bsd-innosys.LICENSE @@ -1,3 +1,19 @@ +--- +key: bsd-innosys +short_name: BSD-InnoSys +name: BSD-InnoSys +category: Permissive +owner: InnoSys +notes: | + This is a BSD variant with extra conditions on the placement of the notice. + Common in the Linux kernel +spdx_license_key: LicenseRef-scancode-bsd-innosys +ignorable_copyrights: + - Copyright (c) InnoSys Incorporated +ignorable_holders: + - InnoSys Incorporated +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -25,4 +41,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-innosys.yml b/src/licensedcode/data/licenses/bsd-innosys.yml deleted file mode 100644 index 6a33cb4ba78..00000000000 --- a/src/licensedcode/data/licenses/bsd-innosys.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: bsd-innosys -short_name: BSD-InnoSys -name: BSD-InnoSys -category: Permissive -owner: InnoSys -notes: | - This is a BSD variant with extra conditions on the placement of the notice. - Common in the Linux kernel -spdx_license_key: LicenseRef-scancode-bsd-innosys -ignorable_copyrights: - - Copyright (c) InnoSys Incorporated -ignorable_holders: - - InnoSys Incorporated diff --git a/src/licensedcode/data/licenses/bsd-intel.LICENSE b/src/licensedcode/data/licenses/bsd-intel.LICENSE index 39da0c994d4..42d41ec4307 100644 --- a/src/licensedcode/data/licenses/bsd-intel.LICENSE +++ b/src/licensedcode/data/licenses/bsd-intel.LICENSE @@ -1,3 +1,12 @@ +--- +key: bsd-intel +short_name: BSD Intel License +name: BSD Intel License +category: Permissive +owner: Intel Corporation +is_deprecated: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +29,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-intel.yml b/src/licensedcode/data/licenses/bsd-intel.yml deleted file mode 100644 index 9c15e3bdb0f..00000000000 --- a/src/licensedcode/data/licenses/bsd-intel.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: bsd-intel -short_name: BSD Intel License -name: BSD Intel License -category: Permissive -owner: Intel Corporation -is_deprecated: yes \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-mylex.LICENSE b/src/licensedcode/data/licenses/bsd-mylex.LICENSE index 9016a13f6fc..ce29942ce7b 100644 --- a/src/licensedcode/data/licenses/bsd-mylex.LICENSE +++ b/src/licensedcode/data/licenses/bsd-mylex.LICENSE @@ -1,3 +1,17 @@ +--- +key: bsd-mylex +short_name: BSD-Mylex +name: BSD-Mylex +category: Permissive +owner: Mylex +notes: found in the Linux kernel for the Flashpoint code +spdx_license_key: LicenseRef-scancode-bsd-mylex +ignorable_copyrights: + - Copyright 1995-1996 by Mylex Corporation +ignorable_holders: + - Mylex Corporation +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -30,4 +44,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-mylex.yml b/src/licensedcode/data/licenses/bsd-mylex.yml deleted file mode 100644 index d96bbb0af4d..00000000000 --- a/src/licensedcode/data/licenses/bsd-mylex.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: bsd-mylex -short_name: BSD-Mylex -name: BSD-Mylex -category: Permissive -owner: Mylex -notes: found in the Linux kernel for the Flashpoint code -spdx_license_key: LicenseRef-scancode-bsd-mylex -ignorable_copyrights: - - Copyright 1995-1996 by Mylex Corporation -ignorable_holders: - - Mylex Corporation diff --git a/src/licensedcode/data/licenses/bsd-new-derivative.LICENSE b/src/licensedcode/data/licenses/bsd-new-derivative.LICENSE index f8e14530bba..5d7239408dd 100644 --- a/src/licensedcode/data/licenses/bsd-new-derivative.LICENSE +++ b/src/licensedcode/data/licenses/bsd-new-derivative.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-new-derivative +short_name: BSD-Derivative +name: BSD-Derivative +category: Permissive +owner: libpcap +homepage_url: http://www.tcpdump.org/sniffex.c +notes: this is a rather rare variant of the bsd-new found in tcpdump +spdx_license_key: LicenseRef-scancode-bsd-new-derivative +minimum_coverage: 70 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-new-derivative.yml b/src/licensedcode/data/licenses/bsd-new-derivative.yml deleted file mode 100644 index 3526bea5011..00000000000 --- a/src/licensedcode/data/licenses/bsd-new-derivative.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-new-derivative -short_name: BSD-Derivative -name: BSD-Derivative -category: Permissive -owner: libpcap -homepage_url: http://www.tcpdump.org/sniffex.c -notes: this is a rather rare variant of the bsd-new found in tcpdump -spdx_license_key: LicenseRef-scancode-bsd-new-derivative -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/bsd-new-far-manager.LICENSE b/src/licensedcode/data/licenses/bsd-new-far-manager.LICENSE index bd4acd4e2a5..e71b7135239 100644 --- a/src/licensedcode/data/licenses/bsd-new-far-manager.LICENSE +++ b/src/licensedcode/data/licenses/bsd-new-far-manager.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-new-far-manager +is_deprecated: yes +short_name: BSD-3-Clause with Far Manager exception +name: BSD-3-Clause with Far Manager exception +category: Permissive +owner: Far Group +is_exception: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-new-far-manager.yml b/src/licensedcode/data/licenses/bsd-new-far-manager.yml deleted file mode 100644 index ba9291e61e0..00000000000 --- a/src/licensedcode/data/licenses/bsd-new-far-manager.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: bsd-new-far-manager -is_deprecated: yes -short_name: BSD-3-Clause with Far Manager exception -name: BSD-3-Clause with Far Manager exception -category: Permissive -owner: Far Group -is_exception: yes diff --git a/src/licensedcode/data/licenses/bsd-new-nomod.LICENSE b/src/licensedcode/data/licenses/bsd-new-nomod.LICENSE index 0b3efc45aaa..0aa0ac63cb6 100644 --- a/src/licensedcode/data/licenses/bsd-new-nomod.LICENSE +++ b/src/licensedcode/data/licenses/bsd-new-nomod.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-new-nomod +short_name: BSD-3-Clause without notice modification +name: BSD-3-Clause without notice modification +category: Permissive +owner: Unspecified +notes: this bsd-new variant has the words "without modification" added at the end of the first + clause, sometimes with or without a comma. +spdx_license_key: LicenseRef-scancode-bsd-new-nomod +minimum_coverage: 99 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-new-nomod.yml b/src/licensedcode/data/licenses/bsd-new-nomod.yml deleted file mode 100644 index a9a556ce80d..00000000000 --- a/src/licensedcode/data/licenses/bsd-new-nomod.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-new-nomod -short_name: BSD-3-Clause without notice modification -name: BSD-3-Clause without notice modification -category: Permissive -owner: Unspecified -notes: this bsd-new variant has the words "without modification" added at the end of the first - clause, sometimes with or without a comma. -spdx_license_key: LicenseRef-scancode-bsd-new-nomod -minimum_coverage: 99 diff --git a/src/licensedcode/data/licenses/bsd-new-tcpdump.LICENSE b/src/licensedcode/data/licenses/bsd-new-tcpdump.LICENSE index 87bca102265..84470053456 100644 --- a/src/licensedcode/data/licenses/bsd-new-tcpdump.LICENSE +++ b/src/licensedcode/data/licenses/bsd-new-tcpdump.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-new-tcpdump +short_name: BSD-3-Clause tcpdump variant +name: BSD-3-Clause tcpdump variant +category: Permissive +owner: libpcap +notes: This license is a custom variation on the BSD found in tcpdump +spdx_license_key: LicenseRef-scancode-bsd-new-tcpdump +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that: (1) source code * distributions retain the above copyright notice and this paragraph diff --git a/src/licensedcode/data/licenses/bsd-new-tcpdump.yml b/src/licensedcode/data/licenses/bsd-new-tcpdump.yml deleted file mode 100644 index 901dab12617..00000000000 --- a/src/licensedcode/data/licenses/bsd-new-tcpdump.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: bsd-new-tcpdump -short_name: BSD-3-Clause tcpdump variant -name: BSD-3-Clause tcpdump variant -category: Permissive -owner: libpcap -notes: This license is a custom variation on the BSD found in tcpdump -spdx_license_key: LicenseRef-scancode-bsd-new-tcpdump diff --git a/src/licensedcode/data/licenses/bsd-new.LICENSE b/src/licensedcode/data/licenses/bsd-new.LICENSE index cb6a877f2f3..695870a03ea 100644 --- a/src/licensedcode/data/licenses/bsd-new.LICENSE +++ b/src/licensedcode/data/licenses/bsd-new.LICENSE @@ -1,3 +1,23 @@ +--- +key: bsd-new +short_name: BSD-3-Clause +name: BSD-3-Clause +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.opensource.org/licenses/BSD-3-Clause +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: BSD-3-Clause +other_spdx_license_keys: + - LicenseRef-scancode-libzip +osi_license_key: BSD-3-Clause +text_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +osi_url: http://www.opensource.org/licenses/BSD-3-Clause +other_urls: + - http://framework.zend.com/license/new-bsd + - https://opensource.org/licenses/BSD-3-Clause +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-new.yml b/src/licensedcode/data/licenses/bsd-new.yml deleted file mode 100644 index 2170c351120..00000000000 --- a/src/licensedcode/data/licenses/bsd-new.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: bsd-new -short_name: BSD-3-Clause -name: BSD-3-Clause -category: Permissive -owner: Regents of the University of California -homepage_url: http://www.opensource.org/licenses/BSD-3-Clause -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: BSD-3-Clause -other_spdx_license_keys: - - LicenseRef-scancode-libzip -osi_license_key: BSD-3-Clause -text_urls: - - http://www.opensource.org/licenses/BSD-3-Clause -osi_url: http://www.opensource.org/licenses/BSD-3-Clause -other_urls: - - http://framework.zend.com/license/new-bsd - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/licenses/bsd-no-disclaimer-unmodified.LICENSE b/src/licensedcode/data/licenses/bsd-no-disclaimer-unmodified.LICENSE index e5d7f988282..03c2654c730 100644 --- a/src/licensedcode/data/licenses/bsd-no-disclaimer-unmodified.LICENSE +++ b/src/licensedcode/data/licenses/bsd-no-disclaimer-unmodified.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-no-disclaimer-unmodified +short_name: BSD-2-Clause no disclaimer Unmod +name: BSD-2-Clause without Warranty Disclaimer with Unmodified requirement +category: Permissive +owner: Unspecified +notes: A rare variant that comes with a slightly different wording and no warranty disclaimer + and the words "without modifications" applying to the license conditions +spdx_license_key: LicenseRef-scancode-bsd-no-disclaimer-unmodified +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/licenses/bsd-no-disclaimer-unmodified.yml b/src/licensedcode/data/licenses/bsd-no-disclaimer-unmodified.yml deleted file mode 100644 index cc35756d806..00000000000 --- a/src/licensedcode/data/licenses/bsd-no-disclaimer-unmodified.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bsd-no-disclaimer-unmodified -short_name: BSD-2-Clause no disclaimer Unmod -name: BSD-2-Clause without Warranty Disclaimer with Unmodified requirement -category: Permissive -owner: Unspecified -notes: A rare variant that comes with a slightly different wording and no warranty disclaimer - and the words "without modifications" applying to the license conditions -spdx_license_key: LicenseRef-scancode-bsd-no-disclaimer-unmodified diff --git a/src/licensedcode/data/licenses/bsd-no-disclaimer.LICENSE b/src/licensedcode/data/licenses/bsd-no-disclaimer.LICENSE index 5e6df8701d9..e48a6b80e0b 100644 --- a/src/licensedcode/data/licenses/bsd-no-disclaimer.LICENSE +++ b/src/licensedcode/data/licenses/bsd-no-disclaimer.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-no-disclaimer +short_name: BSD-2-Clause no disclaimer +name: BSD-2-Clause without Warranty Disclaimer +category: Permissive +owner: Unspecified +notes: A rare variant that comes with a slightly different wording and no warranty disclaimer. +spdx_license_key: LicenseRef-scancode-bsd-no-disclaimer +other_urls: + - https://github.com/miekg/miek.nl/blob/17ef2d311da721ccb3ddb3649ec41ff51305952f/static/downloads/2009/tt.pl.txt#L5 +--- + # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: @@ -5,4 +17,4 @@ # notice and this list of conditions. # 2. Redistributions in binary form must reproduce the above copyright # notice and this list of conditions in the -# documentation and/or other materials provided with the distribution. +# documentation and/or other materials provided with the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-no-disclaimer.yml b/src/licensedcode/data/licenses/bsd-no-disclaimer.yml deleted file mode 100644 index b9fd422e25e..00000000000 --- a/src/licensedcode/data/licenses/bsd-no-disclaimer.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-no-disclaimer -short_name: BSD-2-Clause no disclaimer -name: BSD-2-Clause without Warranty Disclaimer -category: Permissive -owner: Unspecified -notes: A rare variant that comes with a slightly different wording and no warranty disclaimer. -spdx_license_key: LicenseRef-scancode-bsd-no-disclaimer -other_urls: - - https://github.com/miekg/miek.nl/blob/17ef2d311da721ccb3ddb3649ec41ff51305952f/static/downloads/2009/tt.pl.txt#L5 diff --git a/src/licensedcode/data/licenses/bsd-no-mod.LICENSE b/src/licensedcode/data/licenses/bsd-no-mod.LICENSE index bf6bdb261a6..ad3ad9c757e 100644 --- a/src/licensedcode/data/licenses/bsd-no-mod.LICENSE +++ b/src/licensedcode/data/licenses/bsd-no-mod.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-no-mod +short_name: Madwifi License +name: Madwifi License Agreement +category: Free Restricted +owner: MadWifi +homepage_url: http://www.madwifi.org/ +spdx_license_key: LicenseRef-scancode-bsd-no-mod +text_urls: + - http://wiki.freespire.org/index.php/Madwifi_License_Agreement +--- + Redistribution and use in source and binary forms are permitted provided that the following conditions are met: 1. The materials contained herein are unmodified and are used diff --git a/src/licensedcode/data/licenses/bsd-no-mod.yml b/src/licensedcode/data/licenses/bsd-no-mod.yml deleted file mode 100644 index 7747f3acded..00000000000 --- a/src/licensedcode/data/licenses/bsd-no-mod.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-no-mod -short_name: Madwifi License -name: Madwifi License Agreement -category: Free Restricted -owner: MadWifi -homepage_url: http://www.madwifi.org/ -spdx_license_key: LicenseRef-scancode-bsd-no-mod -text_urls: - - http://wiki.freespire.org/index.php/Madwifi_License_Agreement diff --git a/src/licensedcode/data/licenses/bsd-original-muscle.LICENSE b/src/licensedcode/data/licenses/bsd-original-muscle.LICENSE index 350c3534831..0d392642618 100644 --- a/src/licensedcode/data/licenses/bsd-original-muscle.LICENSE +++ b/src/licensedcode/data/licenses/bsd-original-muscle.LICENSE @@ -1,3 +1,20 @@ +--- +key: bsd-original-muscle +short_name: BSD-Original-Muscle +name: BSD-Original-Muscle +category: Permissive +owner: David Corcoran +homepage_url: https://web.archive.org/web/20060318003856/http://linuxnet.com/ +notes: This license has some extra terms beyond the advertizing clause not found in the bsd-original +spdx_license_key: LicenseRef-scancode-bsd-original-muscle +ignorable_authors: + - David Corcoran +ignorable_urls: + - http://www.linuxnet.com/ +ignorable_emails: + - corcoran@linuxnet.com +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-original-muscle.yml b/src/licensedcode/data/licenses/bsd-original-muscle.yml deleted file mode 100644 index 6075f47b448..00000000000 --- a/src/licensedcode/data/licenses/bsd-original-muscle.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: bsd-original-muscle -short_name: BSD-Original-Muscle -name: BSD-Original-Muscle -category: Permissive -owner: David Corcoran -homepage_url: https://web.archive.org/web/20060318003856/http://linuxnet.com/ -notes: This license has some extra terms beyond the advertizing clause not found in the bsd-original -spdx_license_key: LicenseRef-scancode-bsd-original-muscle -ignorable_authors: - - David Corcoran -ignorable_urls: - - http://www.linuxnet.com/ -ignorable_emails: - - corcoran@linuxnet.com diff --git a/src/licensedcode/data/licenses/bsd-original-uc-1986.LICENSE b/src/licensedcode/data/licenses/bsd-original-uc-1986.LICENSE index 2b607e7b9f1..12df32d416c 100644 --- a/src/licensedcode/data/licenses/bsd-original-uc-1986.LICENSE +++ b/src/licensedcode/data/licenses/bsd-original-uc-1986.LICENSE @@ -1,6 +1,15 @@ +--- +key: bsd-original-uc-1986 +short_name: BSD-Original-UC-1986 +name: BSD-Original-UC-1986 +category: Permissive +owner: Regents of the University of California +spdx_license_key: LicenseRef-scancode-bsd-original-uc-1986 +--- + Redistribution and use in source and binary forms are permitted provided that this notice is preserved and that due credit is given to the University of California Berkeley. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. This software is provieded "as is" without express or implied -warranty +warranty \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-original-uc-1986.yml b/src/licensedcode/data/licenses/bsd-original-uc-1986.yml deleted file mode 100644 index f6b9fa8921f..00000000000 --- a/src/licensedcode/data/licenses/bsd-original-uc-1986.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: bsd-original-uc-1986 -short_name: BSD-Original-UC-1986 -name: BSD-Original-UC-1986 -category: Permissive -owner: Regents of the University of California -spdx_license_key: LicenseRef-scancode-bsd-original-uc-1986 diff --git a/src/licensedcode/data/licenses/bsd-original-uc-1990.LICENSE b/src/licensedcode/data/licenses/bsd-original-uc-1990.LICENSE index c6637368f8d..54d0edda4c5 100644 --- a/src/licensedcode/data/licenses/bsd-original-uc-1990.LICENSE +++ b/src/licensedcode/data/licenses/bsd-original-uc-1990.LICENSE @@ -1,3 +1,13 @@ +--- +key: bsd-original-uc-1990 +is_deprecated: yes +short_name: BSD-Original-UC-1990 +name: BSD-Original-UC-1990 +category: Permissive +owner: Regents of the University of California +notes: this is a duplicate of bsla license +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, @@ -8,4 +18,4 @@ University 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-original-uc-1990.yml b/src/licensedcode/data/licenses/bsd-original-uc-1990.yml deleted file mode 100644 index 671aa2cfe6a..00000000000 --- a/src/licensedcode/data/licenses/bsd-original-uc-1990.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: bsd-original-uc-1990 -is_deprecated: yes -short_name: BSD-Original-UC-1990 -name: BSD-Original-UC-1990 -category: Permissive -owner: Regents of the University of California -notes: this is a duplicate of bsla license diff --git a/src/licensedcode/data/licenses/bsd-original-uc.LICENSE b/src/licensedcode/data/licenses/bsd-original-uc.LICENSE index fa2da0cfc44..7a7e88561ef 100644 --- a/src/licensedcode/data/licenses/bsd-original-uc.LICENSE +++ b/src/licensedcode/data/licenses/bsd-original-uc.LICENSE @@ -1,3 +1,36 @@ +--- +key: bsd-original-uc +short_name: BSD-Original-UC +name: BSD-Original-UC +category: Permissive +owner: Regents of the University of California +homepage_url: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +notes: | + Per SPDX.org, this is the same license as the BSD-4-Clause, but with a + copyright notice for the Regents of the University of California. Captures + the retroactive deletion of the third (advertising) clause of the Original + BSD license for BSD-licensed code developed by UC Berkeley and its + contributors (see + ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change) +spdx_license_key: BSD-4-Clause-UC +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +faq_url: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +other_urls: + - http://www.freebsd.org/copyright/license.html + - http://www.fsf.org/licensing/essays/bsd.html + - http://www.gnu.org/philosophy/bsd.html +ignorable_copyrights: + - copyrighted by the Regents of the University of California +ignorable_holders: + - the Regents of the University of California +ignorable_authors: + - UC Berkeley and its contributors + - the University of California, Berkeley and its contributors +ignorable_urls: + - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-original-uc.yml b/src/licensedcode/data/licenses/bsd-original-uc.yml deleted file mode 100644 index 03b4dd4a8dd..00000000000 --- a/src/licensedcode/data/licenses/bsd-original-uc.yml +++ /dev/null @@ -1,30 +0,0 @@ -key: bsd-original-uc -short_name: BSD-Original-UC -name: BSD-Original-UC -category: Permissive -owner: Regents of the University of California -homepage_url: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change -notes: | - Per SPDX.org, this is the same license as the BSD-4-Clause, but with a - copyright notice for the Regents of the University of California. Captures - the retroactive deletion of the third (advertising) clause of the Original - BSD license for BSD-licensed code developed by UC Berkeley and its - contributors (see - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change) -spdx_license_key: BSD-4-Clause-UC -text_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html -faq_url: ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change -other_urls: - - http://www.freebsd.org/copyright/license.html - - http://www.fsf.org/licensing/essays/bsd.html - - http://www.gnu.org/philosophy/bsd.html -ignorable_copyrights: - - copyrighted by the Regents of the University of California -ignorable_holders: - - the Regents of the University of California -ignorable_authors: - - UC Berkeley and its contributors - - the University of California, Berkeley and its contributors -ignorable_urls: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change diff --git a/src/licensedcode/data/licenses/bsd-original-voices.LICENSE b/src/licensedcode/data/licenses/bsd-original-voices.LICENSE index b7aac5bfb09..924456a6025 100644 --- a/src/licensedcode/data/licenses/bsd-original-voices.LICENSE +++ b/src/licensedcode/data/licenses/bsd-original-voices.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-original-voices +short_name: BSD-4-Clause with Voices +name: BSD-4-Clause with Voices in Head +category: Permissive +owner: Bill Paul +homepage_url: https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/sys/dev/an/if_an_isa.c +spdx_license_key: LicenseRef-scancode-bsd-original-voices +minimum_coverage: 99 +ignorable_authors: + - Bill Paul +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/licenses/bsd-original-voices.yml b/src/licensedcode/data/licenses/bsd-original-voices.yml deleted file mode 100644 index 4597f5c8856..00000000000 --- a/src/licensedcode/data/licenses/bsd-original-voices.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-original-voices -short_name: BSD-4-Clause with Voices -name: BSD-4-Clause with Voices in Head -category: Permissive -owner: Bill Paul -homepage_url: https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/sys/dev/an/if_an_isa.c -spdx_license_key: LicenseRef-scancode-bsd-original-voices -minimum_coverage: 99 -ignorable_authors: - - Bill Paul diff --git a/src/licensedcode/data/licenses/bsd-original.LICENSE b/src/licensedcode/data/licenses/bsd-original.LICENSE index c88822d2f76..fd104b0194d 100644 --- a/src/licensedcode/data/licenses/bsd-original.LICENSE +++ b/src/licensedcode/data/licenses/bsd-original.LICENSE @@ -1,3 +1,21 @@ +--- +key: bsd-original +short_name: BSD-Original +name: BSD-Original +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html +notes: Per SPDX.org, this license was rescinded by the author on 22 July 1999. +spdx_license_key: BSD-4-Clause +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#6 +osi_url: http://www.opensource.org/licenses/bsd-license.php +other_urls: + - http://directory.fsf.org/wiki/License:BSD_4Clause + - http://www.fsf.org/licensing/essays/bsd.html + - http://www.gnu.org/philosophy/bsd.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-original.yml b/src/licensedcode/data/licenses/bsd-original.yml deleted file mode 100644 index ed092473885..00000000000 --- a/src/licensedcode/data/licenses/bsd-original.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bsd-original -short_name: BSD-Original -name: BSD-Original -category: Permissive -owner: Regents of the University of California -homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html -notes: Per SPDX.org, this license was rescinded by the author on 22 July 1999. -spdx_license_key: BSD-4-Clause -text_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#6 -osi_url: http://www.opensource.org/licenses/bsd-license.php -other_urls: - - http://directory.fsf.org/wiki/License:BSD_4Clause - - http://www.fsf.org/licensing/essays/bsd.html - - http://www.gnu.org/philosophy/bsd.html diff --git a/src/licensedcode/data/licenses/bsd-plus-mod-notice.LICENSE b/src/licensedcode/data/licenses/bsd-plus-mod-notice.LICENSE index 80d200a1535..39926aee28d 100644 --- a/src/licensedcode/data/licenses/bsd-plus-mod-notice.LICENSE +++ b/src/licensedcode/data/licenses/bsd-plus-mod-notice.LICENSE @@ -1,3 +1,12 @@ +--- +key: bsd-plus-mod-notice +short_name: BSD plus modification notice +name: BSD plus modification notice +category: Permissive +owner: VTK Project +spdx_license_key: LicenseRef-scancode-bsd-plus-mod-notice +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-plus-mod-notice.yml b/src/licensedcode/data/licenses/bsd-plus-mod-notice.yml deleted file mode 100644 index dff5b4b2446..00000000000 --- a/src/licensedcode/data/licenses/bsd-plus-mod-notice.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: bsd-plus-mod-notice -short_name: BSD plus modification notice -name: BSD plus modification notice -category: Permissive -owner: VTK Project -spdx_license_key: LicenseRef-scancode-bsd-plus-mod-notice diff --git a/src/licensedcode/data/licenses/bsd-plus-patent.LICENSE b/src/licensedcode/data/licenses/bsd-plus-patent.LICENSE index fb2daf80833..71ad279cec1 100644 --- a/src/licensedcode/data/licenses/bsd-plus-patent.LICENSE +++ b/src/licensedcode/data/licenses/bsd-plus-patent.LICENSE @@ -1,3 +1,20 @@ +--- +key: bsd-plus-patent +short_name: BSD-2-Clause Plus Patent +name: BSD-2-Clause Plus Patent +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: https://opensource.org/licenses/BSDplusPatent +notes: | + Per the OSI, this license is designed to provide a) a simple permissive + license; b) that is compatible with the GNU General Public License (GPL), + version 2; and c) which also has an express patent grant included. +spdx_license_key: BSD-2-Clause-Patent +text_urls: + - https://opensource.org/licenses/BSDplusPatent +osi_url: https://opensource.org/licenses/BSDplusPatent +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-plus-patent.yml b/src/licensedcode/data/licenses/bsd-plus-patent.yml deleted file mode 100644 index 4e1493bfc68..00000000000 --- a/src/licensedcode/data/licenses/bsd-plus-patent.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: bsd-plus-patent -short_name: BSD-2-Clause Plus Patent -name: BSD-2-Clause Plus Patent -category: Permissive -owner: OSI - Open Source Initiative -homepage_url: https://opensource.org/licenses/BSDplusPatent -notes: | - Per the OSI, this license is designed to provide a) a simple permissive - license; b) that is compatible with the GNU General Public License (GPL), - version 2; and c) which also has an express patent grant included. -spdx_license_key: BSD-2-Clause-Patent -text_urls: - - https://opensource.org/licenses/BSDplusPatent -osi_url: https://opensource.org/licenses/BSDplusPatent diff --git a/src/licensedcode/data/licenses/bsd-protection.LICENSE b/src/licensedcode/data/licenses/bsd-protection.LICENSE index eefc0b5afb2..1f4d16bd36a 100644 --- a/src/licensedcode/data/licenses/bsd-protection.LICENSE +++ b/src/licensedcode/data/licenses/bsd-protection.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-protection +short_name: BSD Protection License +name: BSD Protection License +category: Copyleft +owner: FreeBSD +homepage_url: https://fedoraproject.org/wiki/Licensing/BSD_Protection_License +spdx_license_key: BSD-Protection +text_urls: + - https://fedoraproject.org/wiki/Licensing/BSD_Protection_License +--- + BSD Protection License February 2002 diff --git a/src/licensedcode/data/licenses/bsd-protection.yml b/src/licensedcode/data/licenses/bsd-protection.yml deleted file mode 100644 index fc464a93d21..00000000000 --- a/src/licensedcode/data/licenses/bsd-protection.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-protection -short_name: BSD Protection License -name: BSD Protection License -category: Copyleft -owner: FreeBSD -homepage_url: https://fedoraproject.org/wiki/Licensing/BSD_Protection_License -spdx_license_key: BSD-Protection -text_urls: - - https://fedoraproject.org/wiki/Licensing/BSD_Protection_License diff --git a/src/licensedcode/data/licenses/bsd-simplified-darwin.LICENSE b/src/licensedcode/data/licenses/bsd-simplified-darwin.LICENSE index 19f5ba922bf..6990ab96a9e 100644 --- a/src/licensedcode/data/licenses/bsd-simplified-darwin.LICENSE +++ b/src/licensedcode/data/licenses/bsd-simplified-darwin.LICENSE @@ -1,3 +1,12 @@ +--- +key: bsd-simplified-darwin +short_name: BSD Simplified Darwin +name: BSD Simplified Darwin +category: Permissive +owner: Ian Darwin +spdx_license_key: LicenseRef-scancode-bsd-simplified-darwin +--- + This software is not subject to any export provision of the United States Department of Commerce, and may be exported to any country or planet. diff --git a/src/licensedcode/data/licenses/bsd-simplified-darwin.yml b/src/licensedcode/data/licenses/bsd-simplified-darwin.yml deleted file mode 100644 index bf80618756a..00000000000 --- a/src/licensedcode/data/licenses/bsd-simplified-darwin.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: bsd-simplified-darwin -short_name: BSD Simplified Darwin -name: BSD Simplified Darwin -category: Permissive -owner: Ian Darwin -spdx_license_key: LicenseRef-scancode-bsd-simplified-darwin diff --git a/src/licensedcode/data/licenses/bsd-simplified-intel.LICENSE b/src/licensedcode/data/licenses/bsd-simplified-intel.LICENSE index b9f0d0d24b9..73fe10b537b 100644 --- a/src/licensedcode/data/licenses/bsd-simplified-intel.LICENSE +++ b/src/licensedcode/data/licenses/bsd-simplified-intel.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-simplified-intel +short_name: BSD-Simplified Intel +name: BSD-Simplified Intel +category: Permissive +owner: Intel Corporation +homepage_url: https://github.com/ofiwg/libfabric/blob/master/include/linux/rdpmc.h +notes: | + This license is a custom variation on the BSD simplified seen in + libfabric. +spdx_license_key: LicenseRef-scancode-bsd-simplified-intel +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that: (1) source code distributions retain the above copyright notice and this paragraph in its entirety, (2) distributions including @@ -6,4 +19,4 @@ entirety in the documentation or other materials provided with the distribution THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-simplified-intel.yml b/src/licensedcode/data/licenses/bsd-simplified-intel.yml deleted file mode 100644 index cade9ea3d6e..00000000000 --- a/src/licensedcode/data/licenses/bsd-simplified-intel.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-simplified-intel -short_name: BSD-Simplified Intel -name: BSD-Simplified Intel -category: Permissive -owner: Intel Corporation -homepage_url: https://github.com/ofiwg/libfabric/blob/master/include/linux/rdpmc.h -notes: | - This license is a custom variation on the BSD simplified seen in - libfabric. -spdx_license_key: LicenseRef-scancode-bsd-simplified-intel diff --git a/src/licensedcode/data/licenses/bsd-simplified-source.LICENSE b/src/licensedcode/data/licenses/bsd-simplified-source.LICENSE index 8060258607a..5c3353bedba 100644 --- a/src/licensedcode/data/licenses/bsd-simplified-source.LICENSE +++ b/src/licensedcode/data/licenses/bsd-simplified-source.LICENSE @@ -1,3 +1,15 @@ +--- +key: bsd-simplified-source +short_name: BSD-Simplified source +name: BSD-Simplified source +category: Permissive +owner: Unspecified +notes: | + a very simplified bsd variant mentioning only source and without disclaimer. + Found in the Linux kernel +spdx_license_key: LicenseRef-scancode-bsd-simplified-source +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that redistributions of source code retain the above copyright notice and this comment without diff --git a/src/licensedcode/data/licenses/bsd-simplified-source.yml b/src/licensedcode/data/licenses/bsd-simplified-source.yml deleted file mode 100644 index 5a5747d5100..00000000000 --- a/src/licensedcode/data/licenses/bsd-simplified-source.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: bsd-simplified-source -short_name: BSD-Simplified source -name: BSD-Simplified source -category: Permissive -owner: Unspecified -notes: | - a very simplified bsd variant mentioning only source and without disclaimer. - Found in the Linux kernel -spdx_license_key: LicenseRef-scancode-bsd-simplified-source diff --git a/src/licensedcode/data/licenses/bsd-simplified.LICENSE b/src/licensedcode/data/licenses/bsd-simplified.LICENSE index f1fd48f7bc6..946c10997db 100644 --- a/src/licensedcode/data/licenses/bsd-simplified.LICENSE +++ b/src/licensedcode/data/licenses/bsd-simplified.LICENSE @@ -1,3 +1,24 @@ +--- +key: bsd-simplified +short_name: BSD-2-Clause +name: BSD-2-Clause +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.opensource.org/licenses/BSD-2-Clause +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: BSD-2-Clause +other_spdx_license_keys: + - BSD-2-Clause-NetBSD + - BSD-2 +text_urls: + - http://opensource.org/licenses/bsd-license.php +osi_url: http://opensource.org/licenses/bsd-license.php +other_urls: + - http://spdx.org/licenses/BSD-2-Clause + - http://www.freebsd.org/copyright/copyright.html + - https://opensource.org/licenses/BSD-2-Clause +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-simplified.yml b/src/licensedcode/data/licenses/bsd-simplified.yml deleted file mode 100644 index 95e215f843e..00000000000 --- a/src/licensedcode/data/licenses/bsd-simplified.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: bsd-simplified -short_name: BSD-2-Clause -name: BSD-2-Clause -category: Permissive -owner: Regents of the University of California -homepage_url: http://www.opensource.org/licenses/BSD-2-Clause -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: BSD-2-Clause -other_spdx_license_keys: - - BSD-2-Clause-NetBSD - - BSD-2 -text_urls: - - http://opensource.org/licenses/bsd-license.php -osi_url: http://opensource.org/licenses/bsd-license.php -other_urls: - - http://spdx.org/licenses/BSD-2-Clause - - http://www.freebsd.org/copyright/copyright.html - - https://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/licenses/bsd-source-code.LICENSE b/src/licensedcode/data/licenses/bsd-source-code.LICENSE index e2604dc2171..30e1773a9bc 100644 --- a/src/licensedcode/data/licenses/bsd-source-code.LICENSE +++ b/src/licensedcode/data/licenses/bsd-source-code.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-source-code +short_name: BSD Source Code Attribution +name: BSD Source Code Attribution +category: Permissive +owner: TSRM +homepage_url: https://github.com/infusion/PHP/blob/master/TSRM/LICENSE +spdx_license_key: BSD-Source-Code +text_urls: + - https://github.com/infusion/PHP/blob/master/TSRM/LICENSE + - https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/bsd-source-code.yml b/src/licensedcode/data/licenses/bsd-source-code.yml deleted file mode 100644 index 7ddedb8470b..00000000000 --- a/src/licensedcode/data/licenses/bsd-source-code.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-source-code -short_name: BSD Source Code Attribution -name: BSD Source Code Attribution -category: Permissive -owner: TSRM -homepage_url: https://github.com/infusion/PHP/blob/master/TSRM/LICENSE -spdx_license_key: BSD-Source-Code -text_urls: - - https://github.com/infusion/PHP/blob/master/TSRM/LICENSE - - https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/licenses/bsd-top-gpl-addition.LICENSE b/src/licensedcode/data/licenses/bsd-top-gpl-addition.LICENSE index 1587a89188c..8a9c9abf1e9 100644 --- a/src/licensedcode/data/licenses/bsd-top-gpl-addition.LICENSE +++ b/src/licensedcode/data/licenses/bsd-top-gpl-addition.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-top-gpl-addition +short_name: BSD 3-Clause with GPL reference +name: BSD 3-Clause with GPL reference +category: Permissive +owner: Initio Corporation +notes: this license requires top of the file notice. See in linux kernels +spdx_license_key: LicenseRef-scancode-bsd-top-gpl-addition +minimum_coverage: 70 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -27,4 +38,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-top-gpl-addition.yml b/src/licensedcode/data/licenses/bsd-top-gpl-addition.yml deleted file mode 100644 index 97cef689fa8..00000000000 --- a/src/licensedcode/data/licenses/bsd-top-gpl-addition.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bsd-top-gpl-addition -short_name: BSD 3-Clause with GPL reference -name: BSD 3-Clause with GPL reference -category: Permissive -owner: Initio Corporation -notes: this license requires top of the file notice. See in linux kernels -spdx_license_key: LicenseRef-scancode-bsd-top-gpl-addition -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/bsd-top.LICENSE b/src/licensedcode/data/licenses/bsd-top.LICENSE index 4e972c97a92..eb5f1868088 100644 --- a/src/licensedcode/data/licenses/bsd-top.LICENSE +++ b/src/licensedcode/data/licenses/bsd-top.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-top +short_name: BSD-Top +name: BSD-Top +category: Permissive +owner: nexB +notes: | + This is a variant composed of clause 1 and 3 of a BSD-Modified and some + additional conditions on position and content of the notice +spdx_license_key: LicenseRef-scancode-bsd-top +minimum_coverage: 70 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,4 +30,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-top.yml b/src/licensedcode/data/licenses/bsd-top.yml deleted file mode 100644 index a373d5714d5..00000000000 --- a/src/licensedcode/data/licenses/bsd-top.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-top -short_name: BSD-Top -name: BSD-Top -category: Permissive -owner: nexB -notes: | - This is a variant composed of clause 1 and 3 of a BSD-Modified and some - additional conditions on position and content of the notice -spdx_license_key: LicenseRef-scancode-bsd-top -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/bsd-unchanged.LICENSE b/src/licensedcode/data/licenses/bsd-unchanged.LICENSE index ce8ea93b02c..6d6aec87909 100644 --- a/src/licensedcode/data/licenses/bsd-unchanged.LICENSE +++ b/src/licensedcode/data/licenses/bsd-unchanged.LICENSE @@ -1,3 +1,17 @@ +--- +key: bsd-unchanged +short_name: BSD Unchanged +name: BSD Simplified with Unchanged requirement +category: Permissive +owner: Unspecified +notes: | + Contains this extra text "in this position and unchanged" when compared + with a bsd-simplified. Found in the BSD codebase, for instance at + http://web.mit.edu/freebsd/head/sys/sys/sbuf.h +spdx_license_key: LicenseRef-scancode-bsd-unchanged +minimum_coverage: 98 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +34,4 @@ 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. +THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-unchanged.yml b/src/licensedcode/data/licenses/bsd-unchanged.yml deleted file mode 100644 index 505c0f1ef17..00000000000 --- a/src/licensedcode/data/licenses/bsd-unchanged.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: bsd-unchanged -short_name: BSD Unchanged -name: BSD Simplified with Unchanged requirement -category: Permissive -owner: Unspecified -notes: | - Contains this extra text "in this position and unchanged" when compared - with a bsd-simplified. Found in the BSD codebase, for instance at - http://web.mit.edu/freebsd/head/sys/sys/sbuf.h -spdx_license_key: LicenseRef-scancode-bsd-unchanged -minimum_coverage: 98 diff --git a/src/licensedcode/data/licenses/bsd-unmodified.LICENSE b/src/licensedcode/data/licenses/bsd-unmodified.LICENSE index 3aed577c322..45e76e02ef3 100644 --- a/src/licensedcode/data/licenses/bsd-unmodified.LICENSE +++ b/src/licensedcode/data/licenses/bsd-unmodified.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-unmodified +short_name: BSD Unmodified +name: BSD Simplified with Unmodified requirement +category: Permissive +owner: Unspecified +notes: | + Contains this extra word unmodified in "the above copyright notice unmodified" + when compared with a bsd-simplified. Found in the newlib C library +spdx_license_key: LicenseRef-scancode-bsd-unmodified +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,4 +30,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-unmodified.yml b/src/licensedcode/data/licenses/bsd-unmodified.yml deleted file mode 100644 index e475ad676a4..00000000000 --- a/src/licensedcode/data/licenses/bsd-unmodified.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-unmodified -short_name: BSD Unmodified -name: BSD Simplified with Unmodified requirement -category: Permissive -owner: Unspecified -notes: | - Contains this extra word unmodified in "the above copyright notice unmodified" - when compared with a bsd-simplified. Found in the newlib C library -spdx_license_key: LicenseRef-scancode-bsd-unmodified -minimum_coverage: 95 diff --git a/src/licensedcode/data/licenses/bsd-x11.LICENSE b/src/licensedcode/data/licenses/bsd-x11.LICENSE index afb7f66fb42..71b9986863a 100644 --- a/src/licensedcode/data/licenses/bsd-x11.LICENSE +++ b/src/licensedcode/data/licenses/bsd-x11.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-x11 +short_name: BSD-3-Clause X11 disclaimer +name: BSD-3-Clause with X11 disclaimer +category: Permissive +owner: Unspecified +notes: This is essentially a bsd-new with an extra non infrigment disclaimer borrowed from the + X11-r75/MIT license +spdx_license_key: LicenseRef-scancode-bsd-x11 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +35,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsd-x11.yml b/src/licensedcode/data/licenses/bsd-x11.yml deleted file mode 100644 index fef7ee50fa0..00000000000 --- a/src/licensedcode/data/licenses/bsd-x11.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bsd-x11 -short_name: BSD-3-Clause X11 disclaimer -name: BSD-3-Clause with X11 disclaimer -category: Permissive -owner: Unspecified -notes: This is essentially a bsd-new with an extra non infrigment disclaimer borrowed from the - X11-r75/MIT license -spdx_license_key: LicenseRef-scancode-bsd-x11 diff --git a/src/licensedcode/data/licenses/bsd-zero.LICENSE b/src/licensedcode/data/licenses/bsd-zero.LICENSE index 5f6f2758f68..047d3bb778e 100644 --- a/src/licensedcode/data/licenses/bsd-zero.LICENSE +++ b/src/licensedcode/data/licenses/bsd-zero.LICENSE @@ -1,3 +1,16 @@ +--- +key: bsd-zero +short_name: BSD Zero Clause License +name: BSD Zero Clause License +category: Permissive +owner: Rob Landley +homepage_url: http://landley.net/toybox/license.html +spdx_license_key: 0BSD +other_urls: + - https://opensource.org/licenses/0BSD +minimum_coverage: 70 +--- + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. diff --git a/src/licensedcode/data/licenses/bsd-zero.yml b/src/licensedcode/data/licenses/bsd-zero.yml deleted file mode 100644 index 9ec0becfdf7..00000000000 --- a/src/licensedcode/data/licenses/bsd-zero.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: bsd-zero -short_name: BSD Zero Clause License -name: BSD Zero Clause License -category: Permissive -owner: Rob Landley -homepage_url: http://landley.net/toybox/license.html -spdx_license_key: 0BSD -other_urls: - - https://opensource.org/licenses/0BSD -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/bsl-1.0.LICENSE b/src/licensedcode/data/licenses/bsl-1.0.LICENSE index f2e740a6fd0..bc54eed846b 100644 --- a/src/licensedcode/data/licenses/bsl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/bsl-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: bsl-1.0 +short_name: Business Source License 1.0 +name: Business Source License 1.0 +category: Source-available +owner: MariaDB +homepage_url: https://mariadb.com/bsl10 +spdx_license_key: LicenseRef-scancode-bsl-1.0 +faq_url: https://mariadb.com/bsl-faq-mariadb +other_urls: + - https://mariadb.com/bsl-faq-adopting + - https://mariadb.com/products/mariadb-enterprise +ignorable_copyrights: + - (c) 2016 MariaDB Corporation Ab +ignorable_holders: + - MariaDB Corporation Ab +ignorable_urls: + - https://mariadb.com/products/mariadb-enterprise +--- + Business Source License 1.0 Licensor: MariaDB Corporation Ab diff --git a/src/licensedcode/data/licenses/bsl-1.0.yml b/src/licensedcode/data/licenses/bsl-1.0.yml deleted file mode 100644 index ba60162efd7..00000000000 --- a/src/licensedcode/data/licenses/bsl-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: bsl-1.0 -short_name: Business Source License 1.0 -name: Business Source License 1.0 -category: Source-available -owner: MariaDB -homepage_url: https://mariadb.com/bsl10 -spdx_license_key: LicenseRef-scancode-bsl-1.0 -faq_url: https://mariadb.com/bsl-faq-mariadb -other_urls: - - https://mariadb.com/bsl-faq-adopting - - https://mariadb.com/products/mariadb-enterprise -ignorable_copyrights: - - (c) 2016 MariaDB Corporation Ab -ignorable_holders: - - MariaDB Corporation Ab -ignorable_urls: - - https://mariadb.com/products/mariadb-enterprise diff --git a/src/licensedcode/data/licenses/bsl-1.1.LICENSE b/src/licensedcode/data/licenses/bsl-1.1.LICENSE index 901e674adac..f1f2bfe8938 100644 --- a/src/licensedcode/data/licenses/bsl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/bsl-1.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: bsl-1.1 +short_name: Business Source License 1.1 +name: Business Source License 1.1 +category: Source-available +owner: MariaDB +homepage_url: https://mariadb.com/bsl11/ +spdx_license_key: BUSL-1.1 +other_spdx_license_keys: + - LicenseRef-scancode-bsl-1.1 +faq_url: https://mariadb.com/bsl-faq-mariadb/ +other_urls: + - https://mariadb.com/bsl-faq-adopting/ + - https://mariadb.com/products/mariadb-enterprise +ignorable_copyrights: + - copyright (c) 2017 MariaDB Corporation Ab +ignorable_holders: + - MariaDB Corporation Ab +--- + Business Source License 1.1 License text copyright © 2017 MariaDB Corporation Ab, All Rights Reserved. @@ -72,4 +92,4 @@ Notice The Business Source License (this document, or the "License") is not an Open Source license. However, the Licensed Work will eventually be made available -under an Open Source License, as stated in this License. +under an Open Source License, as stated in this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsl-1.1.yml b/src/licensedcode/data/licenses/bsl-1.1.yml deleted file mode 100644 index a7b3292080a..00000000000 --- a/src/licensedcode/data/licenses/bsl-1.1.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: bsl-1.1 -short_name: Business Source License 1.1 -name: Business Source License 1.1 -category: Source-available -owner: MariaDB -homepage_url: https://mariadb.com/bsl11/ -spdx_license_key: BUSL-1.1 -other_spdx_license_keys: - - LicenseRef-scancode-bsl-1.1 -faq_url: https://mariadb.com/bsl-faq-mariadb/ -other_urls: - - https://mariadb.com/bsl-faq-adopting/ - - https://mariadb.com/products/mariadb-enterprise -ignorable_copyrights: - - copyright (c) 2017 MariaDB Corporation Ab -ignorable_holders: - - MariaDB Corporation Ab diff --git a/src/licensedcode/data/licenses/bsla-no-advert.LICENSE b/src/licensedcode/data/licenses/bsla-no-advert.LICENSE index 20cb2fe61ab..7cf95488d29 100644 --- a/src/licensedcode/data/licenses/bsla-no-advert.LICENSE +++ b/src/licensedcode/data/licenses/bsla-no-advert.LICENSE @@ -1,3 +1,19 @@ +--- +key: bsla-no-advert +short_name: BSLA no advertizing +name: Berkeley Software License Agreement with no advertizing +category: Permissive +owner: Regents of the University of California +notes: this is a variant of the license introuced by changes in Cygwin to remove the advertizing + clause since it has been "rescinded" by the UC regents for their BSD-licensed code at large. + See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# +spdx_license_key: LicenseRef-scancode-bsla-no-advert +other_urls: + - https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# +ignorable_authors: + - the University of California, Berkeley +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, @@ -8,4 +24,4 @@ University 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsla-no-advert.yml b/src/licensedcode/data/licenses/bsla-no-advert.yml deleted file mode 100644 index 1ca04e32229..00000000000 --- a/src/licensedcode/data/licenses/bsla-no-advert.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: bsla-no-advert -short_name: BSLA no advertizing -name: Berkeley Software License Agreement with no advertizing -category: Permissive -owner: Regents of the University of California -notes: this is a variant of the license introuced by changes in Cygwin to remove the advertizing - clause since it has been "rescinded" by the UC regents for their BSD-licensed code at large. - See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# -spdx_license_key: LicenseRef-scancode-bsla-no-advert -other_urls: - - https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# -ignorable_authors: - - the University of California, Berkeley diff --git a/src/licensedcode/data/licenses/bsla.LICENSE b/src/licensedcode/data/licenses/bsla.LICENSE index c6637368f8d..7d232013bc8 100644 --- a/src/licensedcode/data/licenses/bsla.LICENSE +++ b/src/licensedcode/data/licenses/bsla.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsla +short_name: BSLA +name: Berkeley Software License Agreement +category: Permissive +owner: Regents of the University of California +spdx_license_key: LicenseRef-scancode-bsla +ignorable_authors: + - the University of California, Berkeley +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, @@ -8,4 +19,4 @@ University 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bsla.yml b/src/licensedcode/data/licenses/bsla.yml deleted file mode 100644 index 5f7d752d7a4..00000000000 --- a/src/licensedcode/data/licenses/bsla.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bsla -short_name: BSLA -name: Berkeley Software License Agreement -category: Permissive -owner: Regents of the University of California -spdx_license_key: LicenseRef-scancode-bsla -ignorable_authors: - - the University of California, Berkeley diff --git a/src/licensedcode/data/licenses/bugsense-sdk.LICENSE b/src/licensedcode/data/licenses/bugsense-sdk.LICENSE index 2d9b4310d33..aaf4e9c9830 100644 --- a/src/licensedcode/data/licenses/bugsense-sdk.LICENSE +++ b/src/licensedcode/data/licenses/bugsense-sdk.LICENSE @@ -1,3 +1,21 @@ +--- +key: bugsense-sdk +short_name: BugSense SDK License +name: BugSense SDK License +category: Proprietary Free +owner: BugSense +homepage_url: https://www.bugsense.com/sdklicense +spdx_license_key: LicenseRef-scancode-bugsense-sdk +text_urls: + - https://www.bugsense.com/sdklicense +other_urls: + - https://www.bugsense.com/termsofuse +ignorable_urls: + - http://www.bugsense.com/ +ignorable_emails: + - mobilesupport@splunk.com +--- + SDK LICENSE AGREEMENT Information Last Updated: September 25, 2013 diff --git a/src/licensedcode/data/licenses/bugsense-sdk.yml b/src/licensedcode/data/licenses/bugsense-sdk.yml deleted file mode 100644 index 72188dde5ad..00000000000 --- a/src/licensedcode/data/licenses/bugsense-sdk.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bugsense-sdk -short_name: BugSense SDK License -name: BugSense SDK License -category: Proprietary Free -owner: BugSense -homepage_url: https://www.bugsense.com/sdklicense -spdx_license_key: LicenseRef-scancode-bugsense-sdk -text_urls: - - https://www.bugsense.com/sdklicense -other_urls: - - https://www.bugsense.com/termsofuse -ignorable_urls: - - http://www.bugsense.com/ -ignorable_emails: - - mobilesupport@splunk.com diff --git a/src/licensedcode/data/licenses/bytemark.LICENSE b/src/licensedcode/data/licenses/bytemark.LICENSE index 011402e5b5a..6140cf11198 100644 --- a/src/licensedcode/data/licenses/bytemark.LICENSE +++ b/src/licensedcode/data/licenses/bytemark.LICENSE @@ -1,3 +1,12 @@ +--- +key: bytemark +short_name: BYTEmark License +name: BYTEmark License +category: Permissive +owner: BYTE Magazine +spdx_license_key: LicenseRef-scancode-bytemark +--- + BYTEmark (tm) BYTE's Native Mode Benchmarks Rick Grehan, BYTE Magazine diff --git a/src/licensedcode/data/licenses/bytemark.yml b/src/licensedcode/data/licenses/bytemark.yml deleted file mode 100644 index 9b6d8721958..00000000000 --- a/src/licensedcode/data/licenses/bytemark.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: bytemark -short_name: BYTEmark License -name: BYTEmark License -category: Permissive -owner: BYTE Magazine -spdx_license_key: LicenseRef-scancode-bytemark diff --git a/src/licensedcode/data/licenses/bzip2-libbzip-1.0.5.LICENSE b/src/licensedcode/data/licenses/bzip2-libbzip-1.0.5.LICENSE index 0d86ff4734d..07975226d4b 100644 --- a/src/licensedcode/data/licenses/bzip2-libbzip-1.0.5.LICENSE +++ b/src/licensedcode/data/licenses/bzip2-libbzip-1.0.5.LICENSE @@ -1,3 +1,17 @@ +--- +key: bzip2-libbzip-1.0.5 +is_deprecated: yes +short_name: bzip2 License +name: bzip2 License +category: Permissive +owner: bzip +homepage_url: http://bzip.org/1.0.5/bzip2-manual-1.0.5.html +notes: formerly under spdx_license_key bzip2-1.0.5. See bzip2-libbzip-2010 for replacement +other_urls: + - http://www.bzip.org/ + - https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.5 +--- + The bzip2 license Terms This program, "bzip2" and associated library "libbzip2", are diff --git a/src/licensedcode/data/licenses/bzip2-libbzip-1.0.5.yml b/src/licensedcode/data/licenses/bzip2-libbzip-1.0.5.yml deleted file mode 100644 index 06a67ae4159..00000000000 --- a/src/licensedcode/data/licenses/bzip2-libbzip-1.0.5.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: bzip2-libbzip-1.0.5 -is_deprecated: yes -short_name: bzip2 License -name: bzip2 License -category: Permissive -owner: bzip -homepage_url: http://bzip.org/1.0.5/bzip2-manual-1.0.5.html -notes: formerly under spdx_license_key bzip2-1.0.5. See bzip2-libbzip-2010 for replacement -other_urls: - - http://www.bzip.org/ - - https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.5 diff --git a/src/licensedcode/data/licenses/bzip2-libbzip-2010.LICENSE b/src/licensedcode/data/licenses/bzip2-libbzip-2010.LICENSE index 4a5a7457cbc..a10bd951a87 100644 --- a/src/licensedcode/data/licenses/bzip2-libbzip-2010.LICENSE +++ b/src/licensedcode/data/licenses/bzip2-libbzip-2010.LICENSE @@ -1,3 +1,21 @@ +--- +key: bzip2-libbzip-2010 +short_name: bzip2 License 2010 +name: bzip2 License 2010 +category: Permissive +owner: bzip +homepage_url: https://github.com/asimonov-im/bzip2/blob/master/LICENSE +notes: until bzip2 1.0.6 there is only one license and not two as listed in SPDX. Therefore + we only track one such license. +spdx_license_key: bzip2-1.0.6 +other_spdx_license_keys: + - bzip2-1.0.5 +other_urls: + - http://bzip.org/1.0.5/bzip2-manual-1.0.5.html + - http://www.bzip.org/ + - https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -27,4 +45,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/bzip2-libbzip-2010.yml b/src/licensedcode/data/licenses/bzip2-libbzip-2010.yml deleted file mode 100644 index 7eeaf376f4d..00000000000 --- a/src/licensedcode/data/licenses/bzip2-libbzip-2010.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bzip2-libbzip-2010 -short_name: bzip2 License 2010 -name: bzip2 License 2010 -category: Permissive -owner: bzip -homepage_url: https://github.com/asimonov-im/bzip2/blob/master/LICENSE -notes: until bzip2 1.0.6 there is only one license and not two as listed in SPDX. Therefore - we only track one such license. -spdx_license_key: bzip2-1.0.6 -other_spdx_license_keys: - - bzip2-1.0.5 -other_urls: - - http://bzip.org/1.0.5/bzip2-manual-1.0.5.html - - http://www.bzip.org/ - - https://sourceware.org/git/?p=bzip2.git;a=blob;f=LICENSE;hb=bzip2-1.0.6 diff --git a/src/licensedcode/data/licenses/c-fsl-1.1.LICENSE b/src/licensedcode/data/licenses/c-fsl-1.1.LICENSE index f0f8faa302c..c2846922a2b 100644 --- a/src/licensedcode/data/licenses/c-fsl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/c-fsl-1.1.LICENSE @@ -1,3 +1,19 @@ +--- +key: c-fsl-1.1 +short_name: C-FSL 1.1 +name: Convertible Free Software License 1.1 +category: Copyleft Limited +owner: Elmar Stellnberger +homepage_url: https://www.elstel.org/license/C-FSL-v1.1.txt +spdx_license_key: LicenseRef-scancode-c-fsl-1.1 +text_urls: + - https://www.elstel.org/license/C-FSL-v1.1.txt +ignorable_copyrights: + - copyright 2016, by Elmar Stellnberger +ignorable_holders: + - Elmar Stellnberger +--- + CONVERTIBLE FREE SOFTWARE LICENSE Version 1.1, 2016-08-11 copyright 2016, by Elmar Stellnberger @@ -22,6 +38,4 @@ This license applies to any software containing a notice by the copyright holder 9. A work under C-FSL which has another component or plug-in as well as a work under C-FSL which is used itself as a component, plug-in, add-on of another product, any product under C-FSL which is combined or which links against another work requires that the other work will either be put under an open source license as approved by opensource.org or it needs to be put under C-FSL as well. Usage of proprietary libraries and kernel modules pose an exception to this rule. There must be a functionally equivalent open source library for any proprietary library so that a work under C-FSL can run and execute even without any proprietary library. No such restriction applies to kernel modules. The term 'kernel' refers to the core of an operating system. Libraries are separate components which link against the given work or other components. The term 'linking' refers to the relocation of references or addresses when the library is combined with another component in order to make the combined aggregate executable or runnable. Such references are bound to symbols which are part of the common interface between the library and the component which the library is combined with at runtime. Libraries which provide operating system services use a well defined binary interface but do not 'link' against the kernel. -10. This license is either governed by the Laws of Austria or by the laws of the country where the first mentioned original author lives or is a resident. Disputes shall be settled by the nearest proper court given the home town or location of the first original author unless there is a common consensus for another place of court by all original authors. If any of the terms stated in this license were not in accordance with the law of the country that governs this license all other parts of the license shall remain valid. - - +10. This license is either governed by the Laws of Austria or by the laws of the country where the first mentioned original author lives or is a resident. Disputes shall be settled by the nearest proper court given the home town or location of the first original author unless there is a common consensus for another place of court by all original authors. If any of the terms stated in this license were not in accordance with the law of the country that governs this license all other parts of the license shall remain valid. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/c-fsl-1.1.yml b/src/licensedcode/data/licenses/c-fsl-1.1.yml deleted file mode 100644 index 3597e223459..00000000000 --- a/src/licensedcode/data/licenses/c-fsl-1.1.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: c-fsl-1.1 -short_name: C-FSL 1.1 -name: Convertible Free Software License 1.1 -category: Copyleft Limited -owner: Elmar Stellnberger -homepage_url: https://www.elstel.org/license/C-FSL-v1.1.txt -spdx_license_key: LicenseRef-scancode-c-fsl-1.1 -text_urls: - - https://www.elstel.org/license/C-FSL-v1.1.txt -ignorable_copyrights: - - copyright 2016, by Elmar Stellnberger -ignorable_holders: - - Elmar Stellnberger diff --git a/src/licensedcode/data/licenses/c-uda-1.0.LICENSE b/src/licensedcode/data/licenses/c-uda-1.0.LICENSE index e4ba7869365..1b78e4acf2a 100644 --- a/src/licensedcode/data/licenses/c-uda-1.0.LICENSE +++ b/src/licensedcode/data/licenses/c-uda-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: c-uda-1.0 +short_name: Computational Use of Data Agreement v1.0 +name: Computational Use of Data Agreement v1.0 +category: Free Restricted +owner: Microsoft +spdx_license_key: C-UDA-1.0 +other_urls: + - https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md + - https://cdla.dev/computational-use-of-data-agreement-v1-0/ +--- + Computational Use of Data Agreement v1.0 This is the Computational Use of Data Agreement, Version 1.0 (the “C-UDA”). Capitalized terms are defined in Section 5. Data Provider and you agree as follows: diff --git a/src/licensedcode/data/licenses/c-uda-1.0.yml b/src/licensedcode/data/licenses/c-uda-1.0.yml deleted file mode 100644 index 4e009601446..00000000000 --- a/src/licensedcode/data/licenses/c-uda-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: c-uda-1.0 -short_name: Computational Use of Data Agreement v1.0 -name: Computational Use of Data Agreement v1.0 -category: Free Restricted -owner: Microsoft -spdx_license_key: C-UDA-1.0 -other_urls: - - https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md - - https://cdla.dev/computational-use-of-data-agreement-v1-0/ diff --git a/src/licensedcode/data/licenses/ca-tosl-1.1.LICENSE b/src/licensedcode/data/licenses/ca-tosl-1.1.LICENSE index 5fe60c2fe9f..bb1be7b1056 100644 --- a/src/licensedcode/data/licenses/ca-tosl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/ca-tosl-1.1.LICENSE @@ -1,3 +1,25 @@ +--- +key: ca-tosl-1.1 +short_name: CA Trusted Open Source License 1.1 +name: Computer Associates Trusted Open Source License 1.1 +category: Copyleft Limited +owner: Computer Associates +homepage_url: http://www.opensource.org/licenses/ca-tosl1.1.php +notes: Per SPDX.org, this license is OSI certifified. +spdx_license_key: CATOSL-1.1 +osi_license_key: CATOSL-1.1 +text_urls: + - http://www.opensource.org/licenses/ca-tosl1.1.php +osi_url: http://opensource.org/licenses/ca-tosl1.1.php +other_urls: + - http://opensource.org/licenses/CATOSL-1.1 + - https://opensource.org/licenses/CATOSL-1.1 +ignorable_urls: + - http://www.ca.com/catrdmrk.htm +ignorable_emails: + - opensource@ca.com +--- + Computer Associates Trusted Open Source License Version 1.1 diff --git a/src/licensedcode/data/licenses/ca-tosl-1.1.yml b/src/licensedcode/data/licenses/ca-tosl-1.1.yml deleted file mode 100644 index 7d205c7a3a0..00000000000 --- a/src/licensedcode/data/licenses/ca-tosl-1.1.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: ca-tosl-1.1 -short_name: CA Trusted Open Source License 1.1 -name: Computer Associates Trusted Open Source License 1.1 -category: Copyleft Limited -owner: Computer Associates -homepage_url: http://www.opensource.org/licenses/ca-tosl1.1.php -notes: Per SPDX.org, this license is OSI certifified. -spdx_license_key: CATOSL-1.1 -osi_license_key: CATOSL-1.1 -text_urls: - - http://www.opensource.org/licenses/ca-tosl1.1.php -osi_url: http://opensource.org/licenses/ca-tosl1.1.php -other_urls: - - http://opensource.org/licenses/CATOSL-1.1 - - https://opensource.org/licenses/CATOSL-1.1 -ignorable_urls: - - http://www.ca.com/catrdmrk.htm -ignorable_emails: - - opensource@ca.com diff --git a/src/licensedcode/data/licenses/cadence-linux-firmware.LICENSE b/src/licensedcode/data/licenses/cadence-linux-firmware.LICENSE index e43d567ae9b..4b237e1593e 100644 --- a/src/licensedcode/data/licenses/cadence-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/cadence-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: cadence-linux-firmware +short_name: Cadence Linux Firmware License +name: Cadence Linux Firmware License +category: Proprietary Free +owner: Cadence +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cadence +spdx_license_key: LicenseRef-scancode-cadence-linux-firmware +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/cadence-linux-firmware.yml b/src/licensedcode/data/licenses/cadence-linux-firmware.yml deleted file mode 100644 index b1d451d7232..00000000000 --- a/src/licensedcode/data/licenses/cadence-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cadence-linux-firmware -short_name: Cadence Linux Firmware License -name: Cadence Linux Firmware License -category: Proprietary Free -owner: Cadence -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cadence -spdx_license_key: LicenseRef-scancode-cadence-linux-firmware diff --git a/src/licensedcode/data/licenses/cal-1.0-combined-work-exception.LICENSE b/src/licensedcode/data/licenses/cal-1.0-combined-work-exception.LICENSE index 50705bfb324..cd2b3265158 100644 --- a/src/licensedcode/data/licenses/cal-1.0-combined-work-exception.LICENSE +++ b/src/licensedcode/data/licenses/cal-1.0-combined-work-exception.LICENSE @@ -1,3 +1,19 @@ +--- +key: cal-1.0-combined-work-exception +short_name: CAL-1.0-Combined-Work-Exception +name: Cryptographic Autonomy License 1.0 (Combined Work Exception) +category: Copyleft Limited +owner: Holochain +homepage_url: https://opensource.org/licenses/CAL-1.0 +spdx_license_key: CAL-1.0-Combined-Work-Exception +other_urls: + - http://cryptographicautonomylicense.com/license-text.html +standard_notice: | + SPDX-License-Identifier: CAL-1.0-Combined-Work-Exception + Licensed under the Cryptographic Autonomy License version 1.0, with + Combined Work Exception +--- + # The Cryptographic Autonomy License, v. 1.0, with Combined Work Exception *This Cryptographic Autonomy License (the "License") applies to any @@ -351,4 +367,4 @@ The text of this license is released under the Creative Commons Attribution-ShareAlike 4.0 International License, with the caveat that any modifications of this license may not use the name "Cryptographic Autonomy License" or any name confusingly similar thereto to describe -any derived work of this License. +any derived work of this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cal-1.0-combined-work-exception.yml b/src/licensedcode/data/licenses/cal-1.0-combined-work-exception.yml deleted file mode 100644 index dec10beb080..00000000000 --- a/src/licensedcode/data/licenses/cal-1.0-combined-work-exception.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cal-1.0-combined-work-exception -short_name: CAL-1.0-Combined-Work-Exception -name: Cryptographic Autonomy License 1.0 (Combined Work Exception) -category: Copyleft Limited -owner: Holochain -homepage_url: https://opensource.org/licenses/CAL-1.0 -spdx_license_key: CAL-1.0-Combined-Work-Exception -other_urls: - - http://cryptographicautonomylicense.com/license-text.html -standard_notice: | - SPDX-License-Identifier: CAL-1.0-Combined-Work-Exception - Licensed under the Cryptographic Autonomy License version 1.0, with - Combined Work Exception diff --git a/src/licensedcode/data/licenses/cal-1.0.LICENSE b/src/licensedcode/data/licenses/cal-1.0.LICENSE index 4cebc6d54df..35d5280f41b 100644 --- a/src/licensedcode/data/licenses/cal-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cal-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: cal-1.0 +short_name: CAL-1.0 +name: Cryptographic Autonomy License 1.0 +category: Copyleft +owner: Holochain +homepage_url: https://opensource.org/licenses/CAL-1.0 +spdx_license_key: CAL-1.0 +other_urls: + - http://cryptographicautonomylicense.com/license-text.html +standard_notice: | + This Cryptographic Autonomy License (the “License”) applies to any Work + whose owner has marked it with any of the following notices, or a similar + demonstration of intent: + SPDX-License-Identifier: CAL-1.0 + Licensed under the Cryptographic Autonomy License version 1.0 +--- + # The Cryptographic Autonomy License, v. 1.0 *This Cryptographic Autonomy License (the "License") applies to any @@ -351,4 +369,4 @@ The text of this license is released under the Creative Commons Attribution-ShareAlike 4.0 International License, with the caveat that any modifications of this license may not use the name "Cryptographic Autonomy License" or any name confusingly similar thereto to describe -any derived work of this License. +any derived work of this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cal-1.0.yml b/src/licensedcode/data/licenses/cal-1.0.yml deleted file mode 100644 index 68293fb930a..00000000000 --- a/src/licensedcode/data/licenses/cal-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: cal-1.0 -short_name: CAL-1.0 -name: Cryptographic Autonomy License 1.0 -category: Copyleft -owner: Holochain -homepage_url: https://opensource.org/licenses/CAL-1.0 -spdx_license_key: CAL-1.0 -other_urls: - - http://cryptographicautonomylicense.com/license-text.html -standard_notice: | - This Cryptographic Autonomy License (the “License”) applies to any Work - whose owner has marked it with any of the following notices, or a similar - demonstration of intent: - SPDX-License-Identifier: CAL-1.0 - Licensed under the Cryptographic Autonomy License version 1.0 diff --git a/src/licensedcode/data/licenses/caldera.LICENSE b/src/licensedcode/data/licenses/caldera.LICENSE index 6099a7f9165..8c6fa6e8034 100644 --- a/src/licensedcode/data/licenses/caldera.LICENSE +++ b/src/licensedcode/data/licenses/caldera.LICENSE @@ -1,3 +1,17 @@ +--- +key: caldera +short_name: Caldera License +name: Caldera License +category: Permissive +owner: Caldera +homepage_url: http://www.lemis.com/grog/UNIX/ancient-source-all.pdf +spdx_license_key: Caldera +ignorable_copyrights: + - Copyright (c) Caldera International Inc. +ignorable_holders: + - Caldera International Inc. +--- + Caldera International, Inc. hereby grants a fee free license that includes the rights use, modify and distribute this named source code, including creating derived binary products created from the source code. The source code for which diff --git a/src/licensedcode/data/licenses/caldera.yml b/src/licensedcode/data/licenses/caldera.yml deleted file mode 100644 index 58f6acd76a5..00000000000 --- a/src/licensedcode/data/licenses/caldera.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: caldera -short_name: Caldera License -name: Caldera License -category: Permissive -owner: Caldera -homepage_url: http://www.lemis.com/grog/UNIX/ancient-source-all.pdf -spdx_license_key: Caldera -ignorable_copyrights: - - Copyright (c) Caldera International Inc. -ignorable_holders: - - Caldera International Inc. diff --git a/src/licensedcode/data/licenses/can-ogl-2.0-en.LICENSE b/src/licensedcode/data/licenses/can-ogl-2.0-en.LICENSE index d3abeed760b..5cfabe9f2b9 100644 --- a/src/licensedcode/data/licenses/can-ogl-2.0-en.LICENSE +++ b/src/licensedcode/data/licenses/can-ogl-2.0-en.LICENSE @@ -1,3 +1,15 @@ +--- +key: can-ogl-2.0-en +short_name: OGL Canada 2.0 +name: Open Government Licence Canada 2.0 +category: Permissive +owner: Canada Government +homepage_url: https://open.canada.ca/en/open-government-licence-canada +spdx_license_key: OGL-Canada-2.0 +other_urls: + - https://open.canada.ca/en/open-government-licence-canada +--- + Open Government Licence - Canada diff --git a/src/licensedcode/data/licenses/can-ogl-2.0-en.yml b/src/licensedcode/data/licenses/can-ogl-2.0-en.yml deleted file mode 100644 index c0e68bf523c..00000000000 --- a/src/licensedcode/data/licenses/can-ogl-2.0-en.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: can-ogl-2.0-en -short_name: OGL Canada 2.0 -name: Open Government Licence Canada 2.0 -category: Permissive -owner: Canada Government -homepage_url: https://open.canada.ca/en/open-government-licence-canada -spdx_license_key: OGL-Canada-2.0 -other_urls: - - https://open.canada.ca/en/open-government-licence-canada diff --git a/src/licensedcode/data/licenses/can-ogl-alberta-2.1.LICENSE b/src/licensedcode/data/licenses/can-ogl-alberta-2.1.LICENSE index 14dee11ab24..85d6b1d625e 100644 --- a/src/licensedcode/data/licenses/can-ogl-alberta-2.1.LICENSE +++ b/src/licensedcode/data/licenses/can-ogl-alberta-2.1.LICENSE @@ -1,3 +1,13 @@ +--- +key: can-ogl-alberta-2.1 +short_name: OGL Alberta 2.1 +name: Open Government Licence Alberta 2.1 +category: Permissive +owner: Alberta Government +homepage_url: https://open.alberta.ca/licence +spdx_license_key: LicenseRef-scancode-can-ogl-alberta-2.1 +--- + Open Government Licence - Alberta @@ -72,5 +82,4 @@ means the natural or legal person, or body of persons corporate or incorporate, Versioning - This is version 2.1 of the Open Government Licence – Alberta. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. - + This is version 2.1 of the Open Government Licence – Alberta. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/can-ogl-alberta-2.1.yml b/src/licensedcode/data/licenses/can-ogl-alberta-2.1.yml deleted file mode 100644 index 98d1fd53a82..00000000000 --- a/src/licensedcode/data/licenses/can-ogl-alberta-2.1.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: can-ogl-alberta-2.1 -short_name: OGL Alberta 2.1 -name: Open Government Licence Alberta 2.1 -category: Permissive -owner: Alberta Government -homepage_url: https://open.alberta.ca/licence -spdx_license_key: LicenseRef-scancode-can-ogl-alberta-2.1 diff --git a/src/licensedcode/data/licenses/can-ogl-british-columbia-2.0.LICENSE b/src/licensedcode/data/licenses/can-ogl-british-columbia-2.0.LICENSE index 36904137df4..da9a85466f1 100644 --- a/src/licensedcode/data/licenses/can-ogl-british-columbia-2.0.LICENSE +++ b/src/licensedcode/data/licenses/can-ogl-british-columbia-2.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: can-ogl-british-columbia-2.0 +short_name: OGL British Columbia 2.0 +name: Open Government Licence British Columbia 2.0 +category: Permissive +owner: Government of British Columbia +homepage_url: https://www2.gov.bc.ca/gov/content/data/open-data/open-government-license-bc +spdx_license_key: LicenseRef-scancode-can-ogl-british-columbia-2.0 +--- + Open Government Licence - British Columbia Note: as per B.C. Government Copyright, the following licence only applies to records in the B.C. Data Catalogue that specify it. @@ -71,4 +81,4 @@ means the natural or legal person, or body of persons corporate or incorporate, Versioning - This is version 2.0 of the Open Government Licence for Government of British Columbia Information. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the Information. + This is version 2.0 of the Open Government Licence for Government of British Columbia Information. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the Information. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/can-ogl-british-columbia-2.0.yml b/src/licensedcode/data/licenses/can-ogl-british-columbia-2.0.yml deleted file mode 100644 index 0df4cab7bc2..00000000000 --- a/src/licensedcode/data/licenses/can-ogl-british-columbia-2.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: can-ogl-british-columbia-2.0 -short_name: OGL British Columbia 2.0 -name: Open Government Licence British Columbia 2.0 -category: Permissive -owner: Government of British Columbia -homepage_url: https://www2.gov.bc.ca/gov/content/data/open-data/open-government-license-bc -spdx_license_key: LicenseRef-scancode-can-ogl-british-columbia-2.0 diff --git a/src/licensedcode/data/licenses/can-ogl-nova-scotia-1.0.LICENSE b/src/licensedcode/data/licenses/can-ogl-nova-scotia-1.0.LICENSE index a9e2741d217..41930b3a236 100644 --- a/src/licensedcode/data/licenses/can-ogl-nova-scotia-1.0.LICENSE +++ b/src/licensedcode/data/licenses/can-ogl-nova-scotia-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: can-ogl-nova-scotia-1.0 +short_name: OGL Nova Scotia 1.0 +name: Open Government Licence Nova Scotia 1.0 +category: Permissive +owner: Nova Scotia Government +homepage_url: https://open.alberta.ca/licence +spdx_license_key: LicenseRef-scancode-can-ogl-nova-scotia-1.0 +--- + Open Government Licence – Nova Scotia @@ -59,4 +69,4 @@ In this licence, the terms below have the following meanings: Versioning -This is version 1.0 of the Open Government Licence – Nova Scotia. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. +This is version 1.0 of the Open Government Licence – Nova Scotia. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/can-ogl-nova-scotia-1.0.yml b/src/licensedcode/data/licenses/can-ogl-nova-scotia-1.0.yml deleted file mode 100644 index 1084903ce60..00000000000 --- a/src/licensedcode/data/licenses/can-ogl-nova-scotia-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: can-ogl-nova-scotia-1.0 -short_name: OGL Nova Scotia 1.0 -name: Open Government Licence Nova Scotia 1.0 -category: Permissive -owner: Nova Scotia Government -homepage_url: https://open.alberta.ca/licence -spdx_license_key: LicenseRef-scancode-can-ogl-nova-scotia-1.0 diff --git a/src/licensedcode/data/licenses/can-ogl-ontario-1.0.LICENSE b/src/licensedcode/data/licenses/can-ogl-ontario-1.0.LICENSE index 978bc23aa17..114bf50e451 100644 --- a/src/licensedcode/data/licenses/can-ogl-ontario-1.0.LICENSE +++ b/src/licensedcode/data/licenses/can-ogl-ontario-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: can-ogl-ontario-1.0 +short_name: OGL Ontario 1.0 +name: Open Government Licence Ontario 1.0 +category: Permissive +owner: Ontario Government +homepage_url: https://www.ontario.ca/page/open-government-licence-ontario +spdx_license_key: LicenseRef-scancode-can-ogl-ontario-1.0 +--- + Open Government Licence – Ontario You are encouraged to use the Information that is available under this licence with only a few conditions. @@ -65,6 +75,4 @@ Versioning This is version 1.0 of the Open Government Licence – Ontario. The Information Provider may make changes to the terms of this licence from time to time and issue a new version of the licence. Your use of the Information will be governed by the terms of the licence in force as of the date you accessed the information. Updated: September 6, 2018 -Published: June 18, 2013 - - +Published: June 18, 2013 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/can-ogl-ontario-1.0.yml b/src/licensedcode/data/licenses/can-ogl-ontario-1.0.yml deleted file mode 100644 index 2b02df7b211..00000000000 --- a/src/licensedcode/data/licenses/can-ogl-ontario-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: can-ogl-ontario-1.0 -short_name: OGL Ontario 1.0 -name: Open Government Licence Ontario 1.0 -category: Permissive -owner: Ontario Government -homepage_url: https://www.ontario.ca/page/open-government-licence-ontario -spdx_license_key: LicenseRef-scancode-can-ogl-ontario-1.0 diff --git a/src/licensedcode/data/licenses/can-ogl-toronto-1.0.LICENSE b/src/licensedcode/data/licenses/can-ogl-toronto-1.0.LICENSE index b1a6d32f19b..f1b498a8f70 100644 --- a/src/licensedcode/data/licenses/can-ogl-toronto-1.0.LICENSE +++ b/src/licensedcode/data/licenses/can-ogl-toronto-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: can-ogl-toronto-1.0 +short_name: OGL Toronto 1.0 +name: Open Government Licence Toronto 1.0 +category: Permissive +owner: Toronto Government +homepage_url: https://www.toronto.ca/city-government/data-research-maps/open-data/open-data-licence/ +spdx_license_key: LicenseRef-scancode-can-ogl-toronto-1.0 +--- + Open Government Licence – Toronto This licence is based on version 1.0 of the Open Government Licence – Ontario, which was developed through public consultation and a collaborative effort by the provincial and federal government. The only substantive changes in this licence are to replace direct references to the Province of Ontario with the City of Toronto and the inclusion of a provision for the Ontario Personal Health Information Protection Act, 2004. diff --git a/src/licensedcode/data/licenses/can-ogl-toronto-1.0.yml b/src/licensedcode/data/licenses/can-ogl-toronto-1.0.yml deleted file mode 100644 index bb50a0aafd0..00000000000 --- a/src/licensedcode/data/licenses/can-ogl-toronto-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: can-ogl-toronto-1.0 -short_name: OGL Toronto 1.0 -name: Open Government Licence Toronto 1.0 -category: Permissive -owner: Toronto Government -homepage_url: https://www.toronto.ca/city-government/data-research-maps/open-data/open-data-licence/ -spdx_license_key: LicenseRef-scancode-can-ogl-toronto-1.0 diff --git a/src/licensedcode/data/licenses/careware.LICENSE b/src/licensedcode/data/licenses/careware.LICENSE index 645b162f459..4f604adda5c 100644 --- a/src/licensedcode/data/licenses/careware.LICENSE +++ b/src/licensedcode/data/licenses/careware.LICENSE @@ -1,3 +1,13 @@ +--- +key: careware +short_name: Careware +name: Careware License +category: Permissive +owner: Jacopo Lazzari +homepage_url: http://jaclaz.altervista.org/Projects/careware.html +spdx_license_key: LicenseRef-scancode-careware +--- + CAREWARE LICENSE This script is released as "CAREWARE", it may be freely distributed, used, @@ -35,4 +45,4 @@ supposed to do, it could even possibly completely destroy your software, hardware and set your house/office to fire. No warranty implied, not even that of fitness for any particular purpose apart -taking up a little bit of your hard disk space. +taking up a little bit of your hard disk space. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/careware.yml b/src/licensedcode/data/licenses/careware.yml deleted file mode 100644 index 413d59d6699..00000000000 --- a/src/licensedcode/data/licenses/careware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: careware -short_name: Careware -name: Careware License -category: Permissive -owner: Jacopo Lazzari -homepage_url: http://jaclaz.altervista.org/Projects/careware.html -spdx_license_key: LicenseRef-scancode-careware diff --git a/src/licensedcode/data/licenses/carnegie-mellon-contributors.LICENSE b/src/licensedcode/data/licenses/carnegie-mellon-contributors.LICENSE index 3e7ed8e9383..3c6c598f29d 100644 --- a/src/licensedcode/data/licenses/carnegie-mellon-contributors.LICENSE +++ b/src/licensedcode/data/licenses/carnegie-mellon-contributors.LICENSE @@ -1,3 +1,14 @@ +--- +key: carnegie-mellon-contributors +short_name: Carnegie Mellon Contributors +name: Carnegie Mellon Contributors License +category: Permissive +owner: Carnegie Mellon University +spdx_license_key: LicenseRef-scancode-carnegie-mellon-contributors +ignorable_emails: + - Software.Distribution@CS.CMU.EDU +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or diff --git a/src/licensedcode/data/licenses/carnegie-mellon-contributors.yml b/src/licensedcode/data/licenses/carnegie-mellon-contributors.yml deleted file mode 100644 index 461d50047e7..00000000000 --- a/src/licensedcode/data/licenses/carnegie-mellon-contributors.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: carnegie-mellon-contributors -short_name: Carnegie Mellon Contributors -name: Carnegie Mellon Contributors License -category: Permissive -owner: Carnegie Mellon University -spdx_license_key: LicenseRef-scancode-carnegie-mellon-contributors -ignorable_emails: - - Software.Distribution@CS.CMU.EDU diff --git a/src/licensedcode/data/licenses/carnegie-mellon.LICENSE b/src/licensedcode/data/licenses/carnegie-mellon.LICENSE index ecc4ecef4db..195fa1f9dba 100644 --- a/src/licensedcode/data/licenses/carnegie-mellon.LICENSE +++ b/src/licensedcode/data/licenses/carnegie-mellon.LICENSE @@ -1,3 +1,12 @@ +--- +key: carnegie-mellon +short_name: Carnegie Mellon License +name: Carnegie Mellon License +category: Permissive +owner: Carnegie Mellon University +spdx_license_key: LicenseRef-scancode-carnegie-mellon +--- + Permission to use, copy, modify, and distribute this program for any purpose and without fee is hereby granted, provided that this copyright and permission notice appear on all copies and supporting documentation, the name of Carnegie diff --git a/src/licensedcode/data/licenses/carnegie-mellon.yml b/src/licensedcode/data/licenses/carnegie-mellon.yml deleted file mode 100644 index 364a7fa78b6..00000000000 --- a/src/licensedcode/data/licenses/carnegie-mellon.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: carnegie-mellon -short_name: Carnegie Mellon License -name: Carnegie Mellon License -category: Permissive -owner: Carnegie Mellon University -spdx_license_key: LicenseRef-scancode-carnegie-mellon diff --git a/src/licensedcode/data/licenses/cavium-linux-firmware.LICENSE b/src/licensedcode/data/licenses/cavium-linux-firmware.LICENSE index 312bb2d76dc..00175b0299f 100644 --- a/src/licensedcode/data/licenses/cavium-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/cavium-linux-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: cavium-linux-firmware +short_name: Cavium Linux Firmware License +name: Cavium Linux Firmware License +category: Proprietary Free +owner: Cavium +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium +spdx_license_key: LicenseRef-scancode-cavium-linux-firmware +other_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium_liquidio +--- + Software License Agreement ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE diff --git a/src/licensedcode/data/licenses/cavium-linux-firmware.yml b/src/licensedcode/data/licenses/cavium-linux-firmware.yml deleted file mode 100644 index 2d1dbbaf727..00000000000 --- a/src/licensedcode/data/licenses/cavium-linux-firmware.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cavium-linux-firmware -short_name: Cavium Linux Firmware License -name: Cavium Linux Firmware License -category: Proprietary Free -owner: Cavium -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium -spdx_license_key: LicenseRef-scancode-cavium-linux-firmware -other_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cavium_liquidio diff --git a/src/licensedcode/data/licenses/cavium-malloc.LICENSE b/src/licensedcode/data/licenses/cavium-malloc.LICENSE index 450c4653bd7..69848409145 100644 --- a/src/licensedcode/data/licenses/cavium-malloc.LICENSE +++ b/src/licensedcode/data/licenses/cavium-malloc.LICENSE @@ -1,3 +1,12 @@ +--- +key: cavium-malloc +short_name: Cavium malloc License +name: Cavium malloc License +category: Permissive +owner: Cavium +spdx_license_key: LicenseRef-scancode-cavium-malloc +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of diff --git a/src/licensedcode/data/licenses/cavium-malloc.yml b/src/licensedcode/data/licenses/cavium-malloc.yml deleted file mode 100644 index 52258ed1a8e..00000000000 --- a/src/licensedcode/data/licenses/cavium-malloc.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: cavium-malloc -short_name: Cavium malloc License -name: Cavium malloc License -category: Permissive -owner: Cavium -spdx_license_key: LicenseRef-scancode-cavium-malloc diff --git a/src/licensedcode/data/licenses/cavium-targeted-hardware.LICENSE b/src/licensedcode/data/licenses/cavium-targeted-hardware.LICENSE index 9e5fb012b69..63f011cc9f7 100644 --- a/src/licensedcode/data/licenses/cavium-targeted-hardware.LICENSE +++ b/src/licensedcode/data/licenses/cavium-targeted-hardware.LICENSE @@ -1,3 +1,14 @@ +--- +key: cavium-targeted-hardware +short_name: Cavium Targeted Hardware License +name: Cavium Targeted Hardware License +category: Free Restricted +owner: Cavium +spdx_license_key: LicenseRef-scancode-cavium-targeted-hardware +ignorable_authors: + - Cavium Networks +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -35,4 +46,4 @@ DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT,FITNESS FOR A PARTICULAR PURPOSE,LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE -SOFTWARE LIES WITH YOU. +SOFTWARE LIES WITH YOU. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cavium-targeted-hardware.yml b/src/licensedcode/data/licenses/cavium-targeted-hardware.yml deleted file mode 100644 index 01659470440..00000000000 --- a/src/licensedcode/data/licenses/cavium-targeted-hardware.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: cavium-targeted-hardware -short_name: Cavium Targeted Hardware License -name: Cavium Targeted Hardware License -category: Free Restricted -owner: Cavium -spdx_license_key: LicenseRef-scancode-cavium-targeted-hardware -ignorable_authors: - - Cavium Networks diff --git a/src/licensedcode/data/licenses/cc-by-1.0.LICENSE b/src/licensedcode/data/licenses/cc-by-1.0.LICENSE index 889e707e125..da1d41f961e 100644 --- a/src/licensedcode/data/licenses/cc-by-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-1.0 +short_name: CC-BY-1.0 +name: Creative Commons Attribution License 1.0 +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/1.0/ +spdx_license_key: CC-BY-1.0 +text_urls: + - http://creativecommons.org/licenses/by/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-1.0.yml b/src/licensedcode/data/licenses/cc-by-1.0.yml deleted file mode 100644 index 76d67d805af..00000000000 --- a/src/licensedcode/data/licenses/cc-by-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-1.0 -short_name: CC-BY-1.0 -name: Creative Commons Attribution License 1.0 -category: Permissive -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by/1.0/ -spdx_license_key: CC-BY-1.0 -text_urls: - - http://creativecommons.org/licenses/by/1.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by/1.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-2.0-uk.LICENSE b/src/licensedcode/data/licenses/cc-by-2.0-uk.LICENSE index dc9a35d1151..04a4e7b57ac 100644 --- a/src/licensedcode/data/licenses/cc-by-2.0-uk.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-2.0-uk.LICENSE @@ -1,3 +1,21 @@ +--- +key: cc-by-2.0-uk +short_name: CC-BY-2.0-UK +name: Creative Commons Attribution License 2.0 UK +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/2.0/uk/ +spdx_license_key: LicenseRef-scancode-cc-by-2.0-uk +text_urls: + - http://creativecommons.org/licenses/by/2.0/uk/legalcode +faq_url: http://creativecommons.org/licenses/by/2.0/uk/ +other_urls: + - http://www.legislation.gov.uk/ukpga/1988/48 + - http://www.webtoolkit.info/license +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution 2.0 England and Wales CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-2.0-uk.yml b/src/licensedcode/data/licenses/cc-by-2.0-uk.yml deleted file mode 100644 index d0eaccf5aae..00000000000 --- a/src/licensedcode/data/licenses/cc-by-2.0-uk.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: cc-by-2.0-uk -short_name: CC-BY-2.0-UK -name: Creative Commons Attribution License 2.0 UK -category: Permissive -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by/2.0/uk/ -spdx_license_key: LicenseRef-scancode-cc-by-2.0-uk -text_urls: - - http://creativecommons.org/licenses/by/2.0/uk/legalcode -faq_url: http://creativecommons.org/licenses/by/2.0/uk/ -other_urls: - - http://www.legislation.gov.uk/ukpga/1988/48 - - http://www.webtoolkit.info/license -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-2.0.LICENSE b/src/licensedcode/data/licenses/cc-by-2.0.LICENSE index e845e3501ba..bcd8a6cb773 100644 --- a/src/licensedcode/data/licenses/cc-by-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-2.0 +short_name: CC-BY-2.0 +name: Creative Commons Attribution License 2.0 +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/2.0/ +spdx_license_key: CC-BY-2.0 +text_urls: + - http://creativecommons.org/licenses/by/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-2.0.yml b/src/licensedcode/data/licenses/cc-by-2.0.yml deleted file mode 100644 index 1325021f58a..00000000000 --- a/src/licensedcode/data/licenses/cc-by-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-2.0 -short_name: CC-BY-2.0 -name: Creative Commons Attribution License 2.0 -category: Permissive -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by/2.0/ -spdx_license_key: CC-BY-2.0 -text_urls: - - http://creativecommons.org/licenses/by/2.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by/2.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-2.5-au.LICENSE b/src/licensedcode/data/licenses/cc-by-2.5-au.LICENSE index 5e57265599c..d5882cb6c23 100644 --- a/src/licensedcode/data/licenses/cc-by-2.5-au.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-2.5-au.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-2.5-au +short_name: Creative Commons Attribution 2.5 Australia +name: Creative Commons Attribution 2.5 Australia +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/2.5/au/ +spdx_license_key: CC-BY-2.5-AU +other_urls: + - https://creativecommons.org/licenses/by/2.5/au/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution 2.5 Australia CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-2.5-au.yml b/src/licensedcode/data/licenses/cc-by-2.5-au.yml deleted file mode 100644 index 3672a3b76d3..00000000000 --- a/src/licensedcode/data/licenses/cc-by-2.5-au.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-2.5-au -short_name: Creative Commons Attribution 2.5 Australia -name: Creative Commons Attribution 2.5 Australia -category: Permissive -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by/2.5/au/ -spdx_license_key: CC-BY-2.5-AU -other_urls: - - https://creativecommons.org/licenses/by/2.5/au/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-2.5.LICENSE b/src/licensedcode/data/licenses/cc-by-2.5.LICENSE index 23bded30a9e..a0ccd66f22f 100644 --- a/src/licensedcode/data/licenses/cc-by-2.5.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-2.5 +short_name: CC-BY-2.5 +name: Creative Commons Attribution License 2.5 +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/2.5/ +spdx_license_key: CC-BY-2.5 +text_urls: + - http://creativecommons.org/licenses/by/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-2.5.yml b/src/licensedcode/data/licenses/cc-by-2.5.yml deleted file mode 100644 index b860517039c..00000000000 --- a/src/licensedcode/data/licenses/cc-by-2.5.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-2.5 -short_name: CC-BY-2.5 -name: Creative Commons Attribution License 2.5 -category: Permissive -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by/2.5/ -spdx_license_key: CC-BY-2.5 -text_urls: - - http://creativecommons.org/licenses/by/2.5/legalcode -other_urls: - - https://creativecommons.org/licenses/by/2.5/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-3.0-at.LICENSE b/src/licensedcode/data/licenses/cc-by-3.0-at.LICENSE index 33b16b935c5..0d30df6b1cc 100644 --- a/src/licensedcode/data/licenses/cc-by-3.0-at.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-3.0-at.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-3.0-at +language: de +short_name: CC-BY-3.0-AT +name: Creative Commons Attribution 3.0 Austria +category: Permissive +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by/3.0/at/ +spdx_license_key: CC-BY-3.0-AT +text_urls: + - https://creativecommons.org/licenses/by/3.0/at/legalcode +faq_url: https://creativecommons.org/licenses/by/3.0/at/ +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung 3.0 Österreich CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -110,4 +126,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-3.0-at.yml b/src/licensedcode/data/licenses/cc-by-3.0-at.yml deleted file mode 100644 index 0808bb6e1d5..00000000000 --- a/src/licensedcode/data/licenses/cc-by-3.0-at.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-3.0-at -language: de -short_name: CC-BY-3.0-AT -name: Creative Commons Attribution 3.0 Austria -category: Permissive -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/by/3.0/at/ -spdx_license_key: CC-BY-3.0-AT -text_urls: - - https://creativecommons.org/licenses/by/3.0/at/legalcode -faq_url: https://creativecommons.org/licenses/by/3.0/at/ -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-3.0-de.LICENSE b/src/licensedcode/data/licenses/cc-by-3.0-de.LICENSE index 239da95803d..cd9a8b4c6fc 100644 --- a/src/licensedcode/data/licenses/cc-by-3.0-de.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-3.0-de +language: de +short_name: Creative Commons Attribution 3.0 Germany +name: Creative Commons Attribution 3.0 Germany +category: Permissive +owner: Creative Commons +spdx_license_key: CC-BY-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -105,4 +119,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-3.0-de.yml b/src/licensedcode/data/licenses/cc-by-3.0-de.yml deleted file mode 100644 index 96e1ff30058..00000000000 --- a/src/licensedcode/data/licenses/cc-by-3.0-de.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-3.0-de -language: de -short_name: Creative Commons Attribution 3.0 Germany -name: Creative Commons Attribution 3.0 Germany -category: Permissive -owner: Creative Commons -spdx_license_key: CC-BY-3.0-DE -other_urls: - - https://creativecommons.org/licenses/by/3.0/de/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-3.0-igo.LICENSE b/src/licensedcode/data/licenses/cc-by-3.0-igo.LICENSE index 9d8593d4dd5..a745f3f67b7 100644 --- a/src/licensedcode/data/licenses/cc-by-3.0-igo.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-3.0-igo.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-3.0-igo +short_name: Creative Commons Attribution 3.0 IGO +name: Creative Commons Attribution 3.0 IGO +category: Permissive +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by/3.0/igo +spdx_license_key: CC-BY-3.0-IGO +text_urls: + - https://creativecommons.org/licenses/by/3.0/igo/legalcode +minimum_coverage: 50 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution 3.0 IGO CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. diff --git a/src/licensedcode/data/licenses/cc-by-3.0-igo.yml b/src/licensedcode/data/licenses/cc-by-3.0-igo.yml deleted file mode 100644 index 133f390bc0c..00000000000 --- a/src/licensedcode/data/licenses/cc-by-3.0-igo.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: cc-by-3.0-igo -short_name: Creative Commons Attribution 3.0 IGO -name: Creative Commons Attribution 3.0 IGO -category: Permissive -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/by/3.0/igo -spdx_license_key: CC-BY-3.0-IGO -text_urls: - - https://creativecommons.org/licenses/by/3.0/igo/legalcode -minimum_coverage: 50 -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-3.0-nl.LICENSE b/src/licensedcode/data/licenses/cc-by-3.0-nl.LICENSE index 234e6d5cf0f..e0ebc0956c2 100644 --- a/src/licensedcode/data/licenses/cc-by-3.0-nl.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-3.0-nl.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-3.0-nl +language: nl +short_name: Creative Commons Attribution 3.0 Netherlands +name: Creative Commons Attribution 3.0 Netherlands +category: Permissive +owner: Creative Commons +spdx_license_key: CC-BY-3.0-NL +other_urls: + - https://creativecommons.org/licenses/by/3.0/nl/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Naamsvermelding 3.0 CREATIVE COMMONS CORPORATION IS GEEN ADVOCATENPRAKTIJK EN VERLEENT GEEN JURIDISCHE DIENSTEN. DE VERSPREIDING VAN DEZE LICENTIE ROEPT GEEN JURIDISCHE RELATIE MET CREATIVE COMMONS IN HET LEVEN. CREATIVE COMMONS VERSPREIDT DEZE INFORMATIE 'AS-IS'. CREATIVE COMMONS STAAT NIET IN VOOR DE INHOUD VAN DE VERSTREKTE INFORMATIE EN SLUIT ALLE AANSPRAKELIJKHEID UIT VOOR ENIGERLEI SCHADE VOORTVLOEIEND UIT HET GEBRUIK VAN DEZE INFORMATIE INDIEN EN VOORZOVER DE WET NIET ANDERS BEPAALT. diff --git a/src/licensedcode/data/licenses/cc-by-3.0-nl.yml b/src/licensedcode/data/licenses/cc-by-3.0-nl.yml deleted file mode 100644 index 6a0c0f4aa6a..00000000000 --- a/src/licensedcode/data/licenses/cc-by-3.0-nl.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-3.0-nl -language: nl -short_name: Creative Commons Attribution 3.0 Netherlands -name: Creative Commons Attribution 3.0 Netherlands -category: Permissive -owner: Creative Commons -spdx_license_key: CC-BY-3.0-NL -other_urls: - - https://creativecommons.org/licenses/by/3.0/nl/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-3.0-us.LICENSE b/src/licensedcode/data/licenses/cc-by-3.0-us.LICENSE index 82248fc82a6..f27dc7c2784 100644 --- a/src/licensedcode/data/licenses/cc-by-3.0-us.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-3.0-us.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-3.0-us +short_name: CC-BY-3.0-US +name: Creative Commons Attribution 3.0 United States +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/3.0/us +spdx_license_key: CC-BY-3.0-US +other_urls: + - https://creativecommons.org/licenses/by/3.0/us/legalcode +minimum_coverage: 50 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution 3.0 United States CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-3.0-us.yml b/src/licensedcode/data/licenses/cc-by-3.0-us.yml deleted file mode 100644 index c36d71f1ed6..00000000000 --- a/src/licensedcode/data/licenses/cc-by-3.0-us.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: cc-by-3.0-us -short_name: CC-BY-3.0-US -name: Creative Commons Attribution 3.0 United States -category: Permissive -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by/3.0/us -spdx_license_key: CC-BY-3.0-US -other_urls: - - https://creativecommons.org/licenses/by/3.0/us/legalcode -minimum_coverage: 50 -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-3.0.LICENSE b/src/licensedcode/data/licenses/cc-by-3.0.LICENSE index 1a16e05564d..8ba89e17a12 100644 --- a/src/licensedcode/data/licenses/cc-by-3.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-3.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-by-3.0 +short_name: CC-BY-3.0 +name: Creative Commons Attribution License 3.0 +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/3.0/ +spdx_license_key: CC-BY-3.0 +text_urls: + - http://creativecommons.org/licenses/by/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by/3.0/legalcode +minimum_coverage: 50 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution 3.0 Unported @@ -316,4 +333,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-3.0.yml b/src/licensedcode/data/licenses/cc-by-3.0.yml deleted file mode 100644 index 39d4a556d76..00000000000 --- a/src/licensedcode/data/licenses/cc-by-3.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: cc-by-3.0 -short_name: CC-BY-3.0 -name: Creative Commons Attribution License 3.0 -category: Permissive -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by/3.0/ -spdx_license_key: CC-BY-3.0 -text_urls: - - http://creativecommons.org/licenses/by/3.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by/3.0/legalcode -minimum_coverage: 50 -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-4.0.LICENSE b/src/licensedcode/data/licenses/cc-by-4.0.LICENSE index 0fb847eb09a..d7310805fb8 100644 --- a/src/licensedcode/data/licenses/cc-by-4.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-4.0 +short_name: CC-BY-4.0 +name: Creative Commons Attribution 4.0 International Public License +category: Permissive +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by/4.0/ +spdx_license_key: CC-BY-4.0 +text_urls: + - http://creativecommons.org/licenses/by/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + Attribution 4.0 International ======================================================================= @@ -392,4 +406,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-4.0.yml b/src/licensedcode/data/licenses/cc-by-4.0.yml deleted file mode 100644 index 163ce879680..00000000000 --- a/src/licensedcode/data/licenses/cc-by-4.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-4.0 -short_name: CC-BY-4.0 -name: Creative Commons Attribution 4.0 International Public License -category: Permissive -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by/4.0/ -spdx_license_key: CC-BY-4.0 -text_urls: - - http://creativecommons.org/licenses/by/4.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by/4.0/legalcode diff --git a/src/licensedcode/data/licenses/cc-by-nc-1.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-1.0.LICENSE index c8b156f0d7d..2c4ce359cc6 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-1.0 +short_name: CC-BY-NC-1.0 +name: Creative Commons Attribution Non-Commercial 1.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/1.0/ +spdx_license_key: CC-BY-NC-1.0 +text_urls: + - http://creativecommons.org/licenses/by-nc/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nc-1.0.yml b/src/licensedcode/data/licenses/cc-by-nc-1.0.yml deleted file mode 100644 index 0dd0c44af6e..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-1.0 -short_name: CC-BY-NC-1.0 -name: Creative Commons Attribution Non-Commercial 1.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc/1.0/ -spdx_license_key: CC-BY-NC-1.0 -text_urls: - - http://creativecommons.org/licenses/by-nc/1.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc/1.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-2.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-2.0.LICENSE index a5b5d647efe..bcb851398d1 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-2.0 +short_name: CC-BY-NC-2.0 +name: Creative Commons Attribution Non-Commercial 2.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/2.0/ +spdx_license_key: CC-BY-NC-2.0 +text_urls: + - http://creativecommons.org/licenses/by-nc/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nc-2.0.yml b/src/licensedcode/data/licenses/cc-by-nc-2.0.yml deleted file mode 100644 index b4631ecefd7..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-2.0 -short_name: CC-BY-NC-2.0 -name: Creative Commons Attribution Non-Commercial 2.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc/2.0/ -spdx_license_key: CC-BY-NC-2.0 -text_urls: - - http://creativecommons.org/licenses/by-nc/2.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc/2.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-2.5.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-2.5.LICENSE index 6c20841e611..f5b6d5d746c 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-2.5.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-2.5 +short_name: CC-BY-NC-2.5 +name: Creative Commons Attribution Non-Commercial 2.5 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/2.5/ +spdx_license_key: CC-BY-NC-2.5 +text_urls: + - http://creativecommons.org/licenses/by-nc/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nc-2.5.yml b/src/licensedcode/data/licenses/cc-by-nc-2.5.yml deleted file mode 100644 index 3a03a9bfcb3..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-2.5.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-2.5 -short_name: CC-BY-NC-2.5 -name: Creative Commons Attribution Non-Commercial 2.5 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc/2.5/ -spdx_license_key: CC-BY-NC-2.5 -text_urls: - - http://creativecommons.org/licenses/by-nc/2.5/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc/2.5/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-3.0-de.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-3.0-de.LICENSE index 5d118152861..77c8bebb773 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-3.0-de.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-3.0-de +language: de +short_name: CC-BY-NC-3.0-DE +name: Creative Commons Attribution Non Commercial 3.0 Germany +category: Free Restricted +owner: Creative Commons +spdx_license_key: CC-BY-NC-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-nc/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung - Keine kommerzielle Nutzung 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -107,4 +121,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-3.0-de.yml b/src/licensedcode/data/licenses/cc-by-nc-3.0-de.yml deleted file mode 100644 index 74434d6ada2..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-3.0-de.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-3.0-de -language: de -short_name: CC-BY-NC-3.0-DE -name: Creative Commons Attribution Non Commercial 3.0 Germany -category: Free Restricted -owner: Creative Commons -spdx_license_key: CC-BY-NC-3.0-DE -other_urls: - - https://creativecommons.org/licenses/by-nc/3.0/de/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-3.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-3.0.LICENSE index 197ec4de65a..9a87b7ab046 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-3.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-3.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-by-nc-3.0 +short_name: CC-BY-NC-3.0 +name: Creative Commons Attribution Non-Commercial 3.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/3.0/ +spdx_license_key: CC-BY-NC-3.0 +text_urls: + - http://creativecommons.org/licenses/by-nc/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/3.0/legalcode +minimum_coverage: 30 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution-NonCommercial 3.0 Unported @@ -331,4 +348,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-3.0.yml b/src/licensedcode/data/licenses/cc-by-nc-3.0.yml deleted file mode 100644 index a538eb9ad2d..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-3.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: cc-by-nc-3.0 -short_name: CC-BY-NC-3.0 -name: Creative Commons Attribution Non-Commercial 3.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc/3.0/ -spdx_license_key: CC-BY-NC-3.0 -text_urls: - - http://creativecommons.org/licenses/by-nc/3.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc/3.0/legalcode -minimum_coverage: 30 -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-4.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-4.0.LICENSE index 29bced11ce8..ddc93a68ee5 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-4.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-4.0 +short_name: CC-BY-NC-4.0 +name: Creative Commons Attribution-NonCommercial 4.0 International Public License +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc/4.0/ +spdx_license_key: CC-BY-NC-4.0 +text_urls: + - http://creativecommons.org/licenses/by-nc/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc/4.0/legalcode +--- + Attribution-NonCommercial 4.0 International ======================================================================= @@ -404,4 +418,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-4.0.yml b/src/licensedcode/data/licenses/cc-by-nc-4.0.yml deleted file mode 100644 index 33682106226..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-4.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-4.0 -short_name: CC-BY-NC-4.0 -name: Creative Commons Attribution-NonCommercial 4.0 International Public License -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc/4.0/ -spdx_license_key: CC-BY-NC-4.0 -text_urls: - - http://creativecommons.org/licenses/by-nc/4.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc/4.0/legalcode diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-1.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-1.0.LICENSE index 09b192f2163..7ed944b3233 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-by-nc-nd-1.0 +short_name: CC-BY-NC-ND-1.0 +name: Creative Commons Attribution Non-Commercial No Derivatives License 1.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd-nc/1.0/ +spdx_license_key: CC-BY-NC-ND-1.0 +text_urls: + - http://creativecommons.org/licenses/by-nd-nc/1.0/ +other_urls: + - http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode + - https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NoDerivs-NonCommercial 1.0 diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-1.0.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-1.0.yml deleted file mode 100644 index fc7d474f1a1..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: cc-by-nc-nd-1.0 -short_name: CC-BY-NC-ND-1.0 -name: Creative Commons Attribution Non-Commercial No Derivatives License 1.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nd-nc/1.0/ -spdx_license_key: CC-BY-NC-ND-1.0 -text_urls: - - http://creativecommons.org/licenses/by-nd-nc/1.0/ -other_urls: - - http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode - - https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-at.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-at.LICENSE index f848c78fb47..6247dd52b00 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-at.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-at.LICENSE @@ -1,3 +1,16 @@ +--- +key: cc-by-nc-nd-2.0-at +language: de +short_name: CC-BY-NC-ND-2.0-AT +name: Creative Commons Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0 +category: Free Restricted +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by-nc-nd/2.0/ +spdx_license_key: LicenseRef-scancode-cc-by-nc-nd-2.0-at +text_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.at +--- + @@ -60,4 +73,4 @@ Nichts soll dahingehend ausgelegt werden, dass auf eine Bestimmung dieses Lizenz Dieser Lizenzvertrag stellt die vollständige Vereinbarung zwischen den Vertragsparteien hinsichtlich des Schutzgegenstandes dar. Es gibt keine weiteren ergänzenden Vereinbarungen oder mündlichen Abreden im Hinblick auf den Schutzgegenstand. Der Lizenzgeber ist an keine zusätzlichen Abreden gebunden, die aus irgendeiner Absprache mit Ihnen entstehen könnten. Der Lizenzvertrag kann nicht ohne eine übereinstimmende schriftliche Vereinbarung zwischen dem Lizenzgeber und Ihnen abgeändert werden. Auf diesen Lizenzvertrag findet das Recht der Bundesrepublik Österreich Anwendung. -« Zurück zu Commons Deed +« Zurück zu Commons Deed \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-at.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-at.yml deleted file mode 100644 index a71362fd621..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-at.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: cc-by-nc-nd-2.0-at -language: de -short_name: CC-BY-NC-ND-2.0-AT -name: Creative Commons Namensnennung - Nicht-kommerziell - Keine Bearbeitung 2.0 -category: Free Restricted -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/by-nc-nd/2.0/ -spdx_license_key: LicenseRef-scancode-cc-by-nc-nd-2.0-at -text_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.at diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-au.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-au.LICENSE index 71be32a7d5a..19c7e13ae6f 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-au.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-au.LICENSE @@ -1,3 +1,15 @@ +--- +key: cc-by-nc-nd-2.0-au +short_name: CC-BY-NC-ND-2.0-AU +name: Creative Commons Attribution Non-Commercial No Derivatives License 2.0 Austrialis +category: Source-available +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by-nc-nd/2.0/au/ +spdx_license_key: LicenseRef-scancode-cc-by-nc-nd-2.0-au +text_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.au +--- + Attribution-NonCommercial-NoDerivs 2.0 Australia @@ -293,5 +305,4 @@ communication from You. This Licence may not be modified without the mutual written agreement of the Licensor and You. The construction, validity and performance of this Licence shall be -governed by the laws in force in New South Wales, Australia. - +governed by the laws in force in New South Wales, Australia. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-au.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-au.yml deleted file mode 100644 index 524154ced9c..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0-au.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cc-by-nc-nd-2.0-au -short_name: CC-BY-NC-ND-2.0-AU -name: Creative Commons Attribution Non-Commercial No Derivatives License 2.0 Austrialis -category: Source-available -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/by-nc-nd/2.0/au/ -spdx_license_key: LicenseRef-scancode-cc-by-nc-nd-2.0-au -text_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode.au diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0.LICENSE index 7d5b307550d..7d5e92c471f 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-nd-2.0 +short_name: CC-BY-NC-ND-2.0 +name: Creative Commons Attribution Non-Commercial No Derivatives License 2.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-nd/2.0/ +spdx_license_key: CC-BY-NC-ND-2.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-NoDerivs 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-2.0.yml deleted file mode 100644 index 9d6f5033b1a..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-nd-2.0 -short_name: CC-BY-NC-ND-2.0 -name: Creative Commons Attribution Non-Commercial No Derivatives License 2.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-nd/2.0/ -spdx_license_key: CC-BY-NC-ND-2.0 -text_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-2.5.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-2.5.LICENSE index 9b5377747b8..97e753fe746 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-2.5.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-nd-2.5 +short_name: CC-BY-NC-ND-2.5 +name: Creative Commons Attribution Non-Commercial No Derivatives License 2.5 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-nd/2.5/ +spdx_license_key: CC-BY-NC-ND-2.5 +text_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-NoDerivs 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-2.5.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-2.5.yml deleted file mode 100644 index 13531bf58d1..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-2.5.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-nd-2.5 -short_name: CC-BY-NC-ND-2.5 -name: Creative Commons Attribution Non-Commercial No Derivatives License 2.5 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-nd/2.5/ -spdx_license_key: CC-BY-NC-ND-2.5 -text_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-de.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-de.LICENSE index 06d59d675ac..42fa73b9421 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-de.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-nd-3.0-de +language: de +short_name: CC-BY-NC-ND-3.0-DE +name: Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany +category: Free Restricted +owner: Creative Commons +spdx_license_key: CC-BY-NC-ND-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung - Keine kommerzielle Nutzung - Keine Bearbeitungen 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -98,4 +112,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-de.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-de.yml deleted file mode 100644 index 868a8ecf365..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-de.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-nd-3.0-de -language: de -short_name: CC-BY-NC-ND-3.0-DE -name: Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany -category: Free Restricted -owner: Creative Commons -spdx_license_key: CC-BY-NC-ND-3.0-DE -other_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-igo.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-igo.LICENSE index 4e9ea8e8605..28446ca835d 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-igo.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-igo.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-nd-3.0-igo +short_name: CC-BY-NC-ND-3.0-IGO +name: Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO +category: Source-available +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by-nc-nd/3.0/igo/ +spdx_license_key: CC-BY-NC-ND-3.0-IGO +text_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Attribution-NonCommercial-NoDerivs 3.0 IGO CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-igo.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-igo.yml deleted file mode 100644 index 5cbe29fa045..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0-igo.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-nd-3.0-igo -short_name: CC-BY-NC-ND-3.0-IGO -name: Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO -category: Source-available -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/by-nc-nd/3.0/igo/ -spdx_license_key: CC-BY-NC-ND-3.0-IGO -text_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0.LICENSE index 30b08e74db3..91b6e681d8b 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-nd-3.0 +short_name: CC-BY-NC-ND-3.0 +name: Creative Commons Attribution Non-Commercial No Derivatives License 3.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-nd/3.0/ +spdx_license_key: CC-BY-NC-ND-3.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution-NonCommercial-NoDerivs 3.0 Unported @@ -305,4 +321,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-3.0.yml deleted file mode 100644 index 15161dbf5d2..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-3.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-nd-3.0 -short_name: CC-BY-NC-ND-3.0 -name: Creative Commons Attribution Non-Commercial No Derivatives License 3.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-nd/3.0/ -spdx_license_key: CC-BY-NC-ND-3.0 -text_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-4.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-nd-4.0.LICENSE index 4d1dc4f87b8..da8fbe879ea 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-4.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-nd-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-nd-4.0 +short_name: CC-BY-NC-ND-4.0 +name: Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-nd/4.0/ +spdx_license_key: CC-BY-NC-ND-4.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode +--- + Attribution-NonCommercial-NoDerivatives 4.0 International ======================================================================= @@ -399,4 +413,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-nd-4.0.yml b/src/licensedcode/data/licenses/cc-by-nc-nd-4.0.yml deleted file mode 100644 index f70f1b5454f..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-nd-4.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-nd-4.0 -short_name: CC-BY-NC-ND-4.0 -name: Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-nd/4.0/ -spdx_license_key: CC-BY-NC-ND-4.0 -text_urls: - - http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-1.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-1.0.LICENSE index d2de210b14b..79bca8dcb61 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-1.0 +short_name: CC-BY-NC-SA-1.0 +name: Creative Commons Attribution Non-Commercial Share Alike License 1.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/1.0/ +spdx_license_key: CC-BY-NC-SA-1.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-ShareAlike 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-1.0.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-1.0.yml deleted file mode 100644 index 106e54aac37..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-sa-1.0 -short_name: CC-BY-NC-SA-1.0 -name: Creative Commons Attribution Non-Commercial Share Alike License 1.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-sa/1.0/ -spdx_license_key: CC-BY-NC-SA-1.0 -text_urls: - - http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-fr.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-fr.LICENSE index d2792be460e..a5a990c7c2d 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-fr.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-fr.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-sa-2.0-fr +language: fr +short_name: CC-BY-NC-SA-2.0-FR +name: Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France +category: Source-available +owner: Creative Commons +spdx_license_key: CC-BY-NC-SA-2.0-FR +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Paternité - Pas d'Utilisation Commerciale - Partage Des Conditions Initiales A l'Identique 2.0 Creative Commons n'est pas un cabinet d'avocats et ne fournit pas de services de conseil juridique. La distribution de la présente version de ce contrat ne crée aucune relation juridique entre les parties au contrat présenté ci-après et Creative Commons. Creative Commons fournit cette offre de contrat-type en l'état, à seule fin d'information. Creative Commons ne saurait être tenu responsable des éventuels préjudices résultant du contenu ou de l'utilisation de ce contrat. diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-fr.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-fr.yml deleted file mode 100644 index 312455110e8..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-fr.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-sa-2.0-fr -language: fr -short_name: CC-BY-NC-SA-2.0-FR -name: Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France -category: Source-available -owner: Creative Commons -spdx_license_key: CC-BY-NC-SA-2.0-FR -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-uk.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-uk.LICENSE index a4b35443970..401f694ed49 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-uk.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-uk.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-sa-2.0-uk +short_name: CC-BY-NC-SA-2.0-UK +name: Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.0/uk/ +spdx_license_key: CC-BY-NC-SA-2.0-UK +text_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution - Non-Commercial - Share-Alike 2.0 England and Wales CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-uk.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-uk.yml deleted file mode 100644 index 64655f0e332..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0-uk.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-sa-2.0-uk -short_name: CC-BY-NC-SA-2.0-UK -name: Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.0/uk/ -spdx_license_key: CC-BY-NC-SA-2.0-UK -text_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0.LICENSE index 4d35af4cf06..ad66063f9e7 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-2.0 +short_name: CC-BY-NC-SA-2.0 +name: Creative Commons Attribution Non-Commercial Share Alike License 2.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.0/ +spdx_license_key: CC-BY-NC-SA-2.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-ShareAlike 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-2.0.yml deleted file mode 100644 index 3812dfc1647..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-sa-2.0 -short_name: CC-BY-NC-SA-2.0 -name: Creative Commons Attribution Non-Commercial Share Alike License 2.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.0/ -spdx_license_key: CC-BY-NC-SA-2.0 -text_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-2.5.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-2.5.LICENSE index 80ec4ec3545..60a6d810cce 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-2.5.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-2.5 +short_name: CC-BY-NC-SA-2.5 +name: Creative Commons Attribution Non-Commercial Share Alike License 2.5 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.5/ +spdx_license_key: CC-BY-NC-SA-2.5 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NonCommercial-ShareAlike 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-2.5.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-2.5.yml deleted file mode 100644 index 4f027ae3622..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-2.5.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-sa-2.5 -short_name: CC-BY-NC-SA-2.5 -name: Creative Commons Attribution Non-Commercial Share Alike License 2.5 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-sa/2.5/ -spdx_license_key: CC-BY-NC-SA-2.5 -text_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-de.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-de.LICENSE index ab3813ddba8..54dd89a24ea 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-de.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-sa-3.0-de +language: de +short_name: CC-BY-NC-SA-3.0-DE +name: Creative Commons Attribution Non Commercial Share Alike 3.0 Germany +category: Source-available +owner: Creative Commons +spdx_license_key: CC-BY-NC-SA-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung - Keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -122,4 +136,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-de.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-de.yml deleted file mode 100644 index aa78c19bec8..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-de.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-sa-3.0-de -language: de -short_name: CC-BY-NC-SA-3.0-DE -name: Creative Commons Attribution Non Commercial Share Alike 3.0 Germany -category: Source-available -owner: Creative Commons -spdx_license_key: CC-BY-NC-SA-3.0-DE -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-igo.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-igo.LICENSE index c65633bb0c9..bd42228a8ac 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-igo.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-igo.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-3.0-igo +short_name: CC-BY-NC-SA-3.0-IGO +name: Creative Commons Attribution Non Commercial Share Alike 3.0 IGO +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/igo/ +spdx_license_key: CC-BY-NC-SA-3.0-IGO +text_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Attribution-NonCommercial-ShareAlike 3.0 IGO CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. THE LICENSOR IS NOT NECESSARILY AN INTERGOVERNMENTAL ORGANIZATION (IGO), AS DEFINED IN THE LICENSE BELOW. diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-igo.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-igo.yml deleted file mode 100644 index f419faf1589..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-igo.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-sa-3.0-igo -short_name: CC-BY-NC-SA-3.0-IGO -name: Creative Commons Attribution Non Commercial Share Alike 3.0 IGO -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/igo/ -spdx_license_key: CC-BY-NC-SA-3.0-IGO -text_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-us.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-us.LICENSE index f25755a51c0..a88572c7420 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-us.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-us.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-3.0-us +short_name: CC-BY-NC-SA-3.0-US +name: Creative Commons Attribution Non-Commercial Share Alike License 3.0 US +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/us/ +spdx_license_key: LicenseRef-scancode-cc-by-nc-sa-3.0-us +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. @@ -60,4 +76,4 @@ UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS T Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-us.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-us.yml deleted file mode 100644 index c1a3a0a84af..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0-us.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-sa-3.0-us -short_name: CC-BY-NC-SA-3.0-US -name: Creative Commons Attribution Non-Commercial Share Alike License 3.0 US -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/us/ -spdx_license_key: LicenseRef-scancode-cc-by-nc-sa-3.0-us -text_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/us/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0.LICENSE index a50eacf98c5..fd0b368c190 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nc-sa-3.0 +short_name: CC-BY-NC-SA-3.0 +name: Creative Commons Attribution Non-Commercial Share Alike License 3.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/ +spdx_license_key: CC-BY-NC-SA-3.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution-NonCommercial-ShareAlike 3.0 Unported @@ -357,4 +373,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-3.0.yml deleted file mode 100644 index cbc638d1b8c..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-3.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nc-sa-3.0 -short_name: CC-BY-NC-SA-3.0 -name: Creative Commons Attribution Non-Commercial Share Alike License 3.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-sa/3.0/ -spdx_license_key: CC-BY-NC-SA-3.0 -text_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-4.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nc-sa-4.0.LICENSE index 8f65f5df4ba..e21e6bd00fa 100644 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-4.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nc-sa-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nc-sa-4.0 +short_name: CC-BY-NC-SA-4.0 +name: Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nc-sa/4.0/ +spdx_license_key: CC-BY-NC-SA-4.0 +text_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode +--- + Attribution-NonCommercial-ShareAlike 4.0 International ======================================================================= @@ -434,4 +448,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nc-sa-4.0.yml b/src/licensedcode/data/licenses/cc-by-nc-sa-4.0.yml deleted file mode 100644 index e7361a56c06..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nc-sa-4.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nc-sa-4.0 -short_name: CC-BY-NC-SA-4.0 -name: Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nc-sa/4.0/ -spdx_license_key: CC-BY-NC-SA-4.0 -text_urls: - - http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode diff --git a/src/licensedcode/data/licenses/cc-by-nd-1.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nd-1.0.LICENSE index f3bab94a99f..ccb80d7b688 100644 --- a/src/licensedcode/data/licenses/cc-by-nd-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nd-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-by-nd-1.0 +short_name: CC-BY-ND-1.0 +name: Creative Commons Attribution No Derivatives License 1.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/1.0/ +spdx_license_key: CC-BY-ND-1.0 +text_urls: + - http://creativecommons.org/licenses/by-nd/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/1.0/legalcode +minimum_coverage: 50 +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NoDerivs 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nd-1.0.yml b/src/licensedcode/data/licenses/cc-by-nd-1.0.yml deleted file mode 100644 index 2d6938d56ef..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nd-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: cc-by-nd-1.0 -short_name: CC-BY-ND-1.0 -name: Creative Commons Attribution No Derivatives License 1.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nd/1.0/ -spdx_license_key: CC-BY-ND-1.0 -text_urls: - - http://creativecommons.org/licenses/by-nd/1.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nd/1.0/legalcode -minimum_coverage: 50 -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nd-2.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nd-2.0.LICENSE index 26aa821a60a..9657d0e9ccf 100644 --- a/src/licensedcode/data/licenses/cc-by-nd-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nd-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nd-2.0 +short_name: CC-BY-ND-2.0 +name: Creative Commons Attribution No Derivatives License 2.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/2.0/ +spdx_license_key: CC-BY-ND-2.0 +text_urls: + - http://creativecommons.org/licenses/by-nd/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NoDerivs 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nd-2.0.yml b/src/licensedcode/data/licenses/cc-by-nd-2.0.yml deleted file mode 100644 index a3deeacdc46..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nd-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nd-2.0 -short_name: CC-BY-ND-2.0 -name: Creative Commons Attribution No Derivatives License 2.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nd/2.0/ -spdx_license_key: CC-BY-ND-2.0 -text_urls: - - http://creativecommons.org/licenses/by-nd/2.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nd/2.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nd-2.5.LICENSE b/src/licensedcode/data/licenses/cc-by-nd-2.5.LICENSE index 2c033bf9ff8..97691877067 100644 --- a/src/licensedcode/data/licenses/cc-by-nd-2.5.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nd-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nd-2.5 +short_name: CC-BY-ND-2.5 +name: Creative Commons Attribution No Derivatives License 2.5 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/2.5/ +spdx_license_key: CC-BY-ND-2.5 +text_urls: + - http://creativecommons.org/licenses/by-nd/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NoDerivs 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-nd-2.5.yml b/src/licensedcode/data/licenses/cc-by-nd-2.5.yml deleted file mode 100644 index 1567474b319..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nd-2.5.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nd-2.5 -short_name: CC-BY-ND-2.5 -name: Creative Commons Attribution No Derivatives License 2.5 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nd/2.5/ -spdx_license_key: CC-BY-ND-2.5 -text_urls: - - http://creativecommons.org/licenses/by-nd/2.5/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nd/2.5/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nd-3.0-de.LICENSE b/src/licensedcode/data/licenses/cc-by-nd-3.0-de.LICENSE index 724e68ed1d7..c1ef1631954 100644 --- a/src/licensedcode/data/licenses/cc-by-nd-3.0-de.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nd-3.0-de.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nd-3.0-de +language: de +short_name: CC-BY-ND-3.0-DE +name: Creative Commons Attribution No Derivatives 3.0 Germany +category: Free Restricted +owner: Creative Commons +spdx_license_key: CC-BY-ND-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-nd/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Namensnennung - Keine Bearbeitungen 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -97,4 +111,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nd-3.0-de.yml b/src/licensedcode/data/licenses/cc-by-nd-3.0-de.yml deleted file mode 100644 index 4238910f8ef..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nd-3.0-de.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nd-3.0-de -language: de -short_name: CC-BY-ND-3.0-DE -name: Creative Commons Attribution No Derivatives 3.0 Germany -category: Free Restricted -owner: Creative Commons -spdx_license_key: CC-BY-ND-3.0-DE -other_urls: - - https://creativecommons.org/licenses/by-nd/3.0/de/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nd-3.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nd-3.0.LICENSE index 2ec97189460..d2076d9eb1a 100644 --- a/src/licensedcode/data/licenses/cc-by-nd-3.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nd-3.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-nd-3.0 +short_name: CC-BY-ND-3.0 +name: Creative Commons Attribution No Derivatives License 3.0 +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/3.0/ +spdx_license_key: CC-BY-ND-3.0 +text_urls: + - http://creativecommons.org/licenses/by-nd/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/3.0/legalcode +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Legal Code Attribution-NoDerivs 3.0 Unported @@ -290,4 +306,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nd-3.0.yml b/src/licensedcode/data/licenses/cc-by-nd-3.0.yml deleted file mode 100644 index 7c6df66a709..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nd-3.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-nd-3.0 -short_name: CC-BY-ND-3.0 -name: Creative Commons Attribution No Derivatives License 3.0 -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nd/3.0/ -spdx_license_key: CC-BY-ND-3.0 -text_urls: - - http://creativecommons.org/licenses/by-nd/3.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nd/3.0/legalcode -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-nd-4.0.LICENSE b/src/licensedcode/data/licenses/cc-by-nd-4.0.LICENSE index c2df958c5a9..238411e17e3 100644 --- a/src/licensedcode/data/licenses/cc-by-nd-4.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-nd-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-nd-4.0 +short_name: CC-BY-ND-4.0 +name: Creative Commons Attribution-NoDerivatives 4.0 International Public License +category: Source-available +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-nd/4.0/ +spdx_license_key: CC-BY-ND-4.0 +text_urls: + - http://creativecommons.org/licenses/by-nd/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-nd/4.0/legalcode +--- + Attribution-NoDerivatives 4.0 International ======================================================================= @@ -387,4 +401,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-nd-4.0.yml b/src/licensedcode/data/licenses/cc-by-nd-4.0.yml deleted file mode 100644 index 58e1c3d5ed0..00000000000 --- a/src/licensedcode/data/licenses/cc-by-nd-4.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-nd-4.0 -short_name: CC-BY-ND-4.0 -name: Creative Commons Attribution-NoDerivatives 4.0 International Public License -category: Source-available -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-nd/4.0/ -spdx_license_key: CC-BY-ND-4.0 -text_urls: - - http://creativecommons.org/licenses/by-nd/4.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-nd/4.0/legalcode diff --git a/src/licensedcode/data/licenses/cc-by-sa-1.0.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-1.0.LICENSE index 4565bc5b79a..ac433024e0e 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-sa-1.0 +short_name: CC-BY-SA-1.0 +name: Creative Commons Attribution Share Alike License 1.0 +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/1.0/ +spdx_license_key: CC-BY-SA-1.0 +text_urls: + - http://creativecommons.org/licenses/by-sa/1.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/1.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-ShareAlike 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-sa-1.0.yml b/src/licensedcode/data/licenses/cc-by-sa-1.0.yml deleted file mode 100644 index 5a874e3bed2..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-sa-1.0 -short_name: CC-BY-SA-1.0 -name: Creative Commons Attribution Share Alike License 1.0 -category: Copyleft Limited -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-sa/1.0/ -spdx_license_key: CC-BY-SA-1.0 -text_urls: - - http://creativecommons.org/licenses/by-sa/1.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-sa/1.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-sa-2.0-uk.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-2.0-uk.LICENSE index 7496d18ca6c..9526face176 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-2.0-uk.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-2.0-uk.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-sa-2.0-uk +short_name: CC-BY-SA-2.0-UK +name: Creative Commons Attribution Share Alike 2.0 England and Wales +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/2.0//uk +spdx_license_key: CC-BY-SA-2.0-UK +other_urls: + - https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode +minimum_coverage: 70 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution - Share-Alike 2.0 England and Wales CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENCE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-sa-2.0-uk.yml b/src/licensedcode/data/licenses/cc-by-sa-2.0-uk.yml deleted file mode 100644 index 4c0782c6364..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-2.0-uk.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: cc-by-sa-2.0-uk -short_name: CC-BY-SA-2.0-UK -name: Creative Commons Attribution Share Alike 2.0 England and Wales -category: Copyleft Limited -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-sa/2.0//uk -spdx_license_key: CC-BY-SA-2.0-UK -other_urls: - - https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode -minimum_coverage: 70 -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-sa-2.0.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-2.0.LICENSE index 4f40f4148c9..3acfff17218 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-sa-2.0 +short_name: CC-BY-SA-2.0 +name: Creative Commons Attribution Share Alike License 2.0 +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/2.0/ +spdx_license_key: CC-BY-SA-2.0 +text_urls: + - http://creativecommons.org/licenses/by-sa/2.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/2.0/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-ShareAlike 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-sa-2.0.yml b/src/licensedcode/data/licenses/cc-by-sa-2.0.yml deleted file mode 100644 index e925b499bc8..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-sa-2.0 -short_name: CC-BY-SA-2.0 -name: Creative Commons Attribution Share Alike License 2.0 -category: Copyleft Limited -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-sa/2.0/ -spdx_license_key: CC-BY-SA-2.0 -text_urls: - - http://creativecommons.org/licenses/by-sa/2.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-sa/2.0/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-sa-2.1-jp.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-2.1-jp.LICENSE index 8e2d7e23d28..682c92efd11 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-2.1-jp.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-2.1-jp.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-sa-2.1-jp +language: ja +short_name: Creative Commons Attribution Share Alike 2.1 Japan +name: Creative Commons Attribution Share Alike 2.1 Japan +category: Copyleft Limited +owner: Creative Commons +spdx_license_key: CC-BY-SA-2.1-JP +other_urls: + - https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode +ignorable_urls: + - https://creativecommons.org/http:/www.creativecommons.jp/ +--- + アトリビューション—シェアアライク 2.1 (帰属—同一条件許諾) クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは法律事務所ではありません。この利用許諾条項の頒布は法的アドバイスその他の法律業務を行うものではありません。クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは、この利用許諾の当事者ではなく、ここに提供する情報及び本作品に関しいかなる保証も行いません。クリエイティブ・コモンズ及びクリエイティブ・コモンズ・ジャパンは、いかなる法令に基づこうとも、あなた又はいかなる第三者の損害(この利用許諾に関連する通常損害、特別損害を含みますがこれらに限られません)について責任を負いません。 diff --git a/src/licensedcode/data/licenses/cc-by-sa-2.1-jp.yml b/src/licensedcode/data/licenses/cc-by-sa-2.1-jp.yml deleted file mode 100644 index 62845717965..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-2.1-jp.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-sa-2.1-jp -language: ja -short_name: Creative Commons Attribution Share Alike 2.1 Japan -name: Creative Commons Attribution Share Alike 2.1 Japan -category: Copyleft Limited -owner: Creative Commons -spdx_license_key: CC-BY-SA-2.1-JP -other_urls: - - https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode -ignorable_urls: - - https://creativecommons.org/http:/www.creativecommons.jp/ diff --git a/src/licensedcode/data/licenses/cc-by-sa-2.5.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-2.5.LICENSE index bb75c7e0d0c..becd8f9d50d 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-2.5.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-2.5.LICENSE @@ -1,3 +1,19 @@ +--- +key: cc-by-sa-2.5 +short_name: CC-BY-SA-2.5 +name: Creative Commons Attribution Share Alike License 2.5 +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/2.5/ +spdx_license_key: CC-BY-SA-2.5 +text_urls: + - http://creativecommons.org/licenses/by-sa/2.5/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/2.5/legalcode +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-ShareAlike 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-by-sa-2.5.yml b/src/licensedcode/data/licenses/cc-by-sa-2.5.yml deleted file mode 100644 index 0fbade37c4e..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-2.5.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cc-by-sa-2.5 -short_name: CC-BY-SA-2.5 -name: Creative Commons Attribution Share Alike License 2.5 -category: Copyleft Limited -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-sa/2.5/ -spdx_license_key: CC-BY-SA-2.5 -text_urls: - - http://creativecommons.org/licenses/by-sa/2.5/legalcode -other_urls: - - https://creativecommons.org/licenses/by-sa/2.5/legalcode -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/licenses/cc-by-sa-3.0-at.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-3.0-at.LICENSE index 2202d0458aa..9fb37802f61 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-3.0-at.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-3.0-at.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-sa-3.0-at +language: de +short_name: CC-BY-SA-3.0-AT +name: Creative Commons Attribution Share Alike License 3.0 Austria +category: Copyleft Limited +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/by-sa/3.0/at/legalcode +spdx_license_key: CC-BY-SA-3.0-AT +faq_url: https://creativecommons.org/licenses/by-sa/3.0/at/ +ignorable_urls: + - https://creativecommons.org/ + - https://creativecommons.org/compatiblelicenses +--- + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. Lizenz diff --git a/src/licensedcode/data/licenses/cc-by-sa-3.0-at.yml b/src/licensedcode/data/licenses/cc-by-sa-3.0-at.yml deleted file mode 100644 index 4dddef03a1d..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-3.0-at.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: cc-by-sa-3.0-at -language: de -short_name: CC-BY-SA-3.0-AT -name: Creative Commons Attribution Share Alike License 3.0 Austria -category: Copyleft Limited -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/by-sa/3.0/at/legalcode -spdx_license_key: CC-BY-SA-3.0-AT -faq_url: https://creativecommons.org/licenses/by-sa/3.0/at/ -ignorable_urls: - - https://creativecommons.org/ - - https://creativecommons.org/compatiblelicenses diff --git a/src/licensedcode/data/licenses/cc-by-sa-3.0-de.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-3.0-de.LICENSE index 472c3663af5..fa6230f190c 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-3.0-de.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-3.0-de.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc-by-sa-3.0-de +language: de +short_name: CC-BY-SA-3.0-DE +name: Creative Commons Attribution Share Alike 3.0 Germany +category: Copyleft Limited +owner: Creative Commons +spdx_license_key: CC-BY-SA-3.0-DE +other_urls: + - https://creativecommons.org/licenses/by-sa/3.0/de/legalcode +ignorable_urls: + - https://creativecommons.org/ + - https://creativecommons.org/compatiblelicenses +--- + Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 3.0 Deutschland CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS ÜBERNIMMT KEINE GEWÄHRLEISTUNG FÜR DIE GELIEFERTEN INFORMATIONEN UND SCHLIEßT DIE HAFTUNG FÜR SCHÄDEN AUS, DIE SICH AUS DEREN GEBRAUCH ERGEBEN. @@ -132,4 +147,4 @@ Creative Commons ist nicht Partei dieser Lizenz und übernimmt keinerlei Gewähr Creative Commons gewährt den Parteien nur insoweit das Recht, das Logo und die Marke "Creative Commons" zu nutzen, als dies notwendig ist, um der Öffentlichkeit gegenüber kenntlich zu machen, dass der Schutzgegenstand unter einer CCPL steht. Ein darüber hinaus gehender Gebrauch der Marke "Creative Commons" oder einer verwandten Marke oder eines verwandten Logos bedarf der vorherigen schriftlichen Zustimmung von Creative Commons. Jeder erlaubte Gebrauch richtet sich nach der Creative Commons Marken-Nutzungs-Richtlinie in der jeweils aktuellen Fassung, die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-sa-3.0-de.yml b/src/licensedcode/data/licenses/cc-by-sa-3.0-de.yml deleted file mode 100644 index 6cace584acb..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-3.0-de.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: cc-by-sa-3.0-de -language: de -short_name: CC-BY-SA-3.0-DE -name: Creative Commons Attribution Share Alike 3.0 Germany -category: Copyleft Limited -owner: Creative Commons -spdx_license_key: CC-BY-SA-3.0-DE -other_urls: - - https://creativecommons.org/licenses/by-sa/3.0/de/legalcode -ignorable_urls: - - https://creativecommons.org/ - - https://creativecommons.org/compatiblelicenses diff --git a/src/licensedcode/data/licenses/cc-by-sa-3.0.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-3.0.LICENSE index 604209a8046..10bc63f322e 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-3.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-3.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: cc-by-sa-3.0 +short_name: CC-BY-SA-3.0 +name: Creative Commons Attribution Share Alike License 3.0 +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/3.0/ +spdx_license_key: CC-BY-SA-3.0 +text_urls: + - http://creativecommons.org/licenses/by-sa/3.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/3.0/legalcode +minimum_coverage: 30 +ignorable_urls: + - https://creativecommons.org/ + - https://creativecommons.org/compatiblelicenses +--- + Creative Commons Legal Code Attribution-ShareAlike 3.0 Unported @@ -356,4 +374,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of the License. - Creative Commons may be contacted at https://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-sa-3.0.yml b/src/licensedcode/data/licenses/cc-by-sa-3.0.yml deleted file mode 100644 index dfc460d9eb7..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-3.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: cc-by-sa-3.0 -short_name: CC-BY-SA-3.0 -name: Creative Commons Attribution Share Alike License 3.0 -category: Copyleft Limited -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-sa/3.0/ -spdx_license_key: CC-BY-SA-3.0 -text_urls: - - http://creativecommons.org/licenses/by-sa/3.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-sa/3.0/legalcode -minimum_coverage: 30 -ignorable_urls: - - https://creativecommons.org/ - - https://creativecommons.org/compatiblelicenses diff --git a/src/licensedcode/data/licenses/cc-by-sa-4.0.LICENSE b/src/licensedcode/data/licenses/cc-by-sa-4.0.LICENSE index e04b480f52c..8ce42c6a132 100644 --- a/src/licensedcode/data/licenses/cc-by-sa-4.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-by-sa-4.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: cc-by-sa-4.0 +short_name: CC-BY-SA-4.0 +name: Creative Commons Attribution-ShareAlike 4.0 International Public License +category: Copyleft Limited +owner: Creative Commons +homepage_url: http://creativecommons.org/licenses/by-sa/4.0/ +spdx_license_key: CC-BY-SA-4.0 +text_urls: + - http://creativecommons.org/licenses/by-sa/4.0/legalcode +other_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + Attribution-ShareAlike 4.0 International ======================================================================= @@ -424,4 +438,4 @@ understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-by-sa-4.0.yml b/src/licensedcode/data/licenses/cc-by-sa-4.0.yml deleted file mode 100644 index cf918e66af7..00000000000 --- a/src/licensedcode/data/licenses/cc-by-sa-4.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cc-by-sa-4.0 -short_name: CC-BY-SA-4.0 -name: Creative Commons Attribution-ShareAlike 4.0 International Public License -category: Copyleft Limited -owner: Creative Commons -homepage_url: http://creativecommons.org/licenses/by-sa/4.0/ -spdx_license_key: CC-BY-SA-4.0 -text_urls: - - http://creativecommons.org/licenses/by-sa/4.0/legalcode -other_urls: - - https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/licenses/cc-devnations-2.0.LICENSE b/src/licensedcode/data/licenses/cc-devnations-2.0.LICENSE index 4cdb521d76c..d461efba733 100644 --- a/src/licensedcode/data/licenses/cc-devnations-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-devnations-2.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-devnations-2.0 +short_name: Developing Nations 2.0 +name: Developing Nations 2.0 +category: Proprietary Free +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/devnations/2.0/ +spdx_license_key: LicenseRef-scancode-cc-devnations-2.0 +--- + Developing Nations 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/licenses/cc-devnations-2.0.yml b/src/licensedcode/data/licenses/cc-devnations-2.0.yml deleted file mode 100644 index e806450589b..00000000000 --- a/src/licensedcode/data/licenses/cc-devnations-2.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cc-devnations-2.0 -short_name: Developing Nations 2.0 -name: Developing Nations 2.0 -category: Proprietary Free -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/devnations/2.0/ -spdx_license_key: LicenseRef-scancode-cc-devnations-2.0 diff --git a/src/licensedcode/data/licenses/cc-gpl-2.0-pt.LICENSE b/src/licensedcode/data/licenses/cc-gpl-2.0-pt.LICENSE index 0c51baccd29..e038e249c1c 100644 --- a/src/licensedcode/data/licenses/cc-gpl-2.0-pt.LICENSE +++ b/src/licensedcode/data/licenses/cc-gpl-2.0-pt.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-gpl-2.0-pt +language: pt +short_name: CC-GPL-2.0-PT +name: Creative Commons Licença Pública Geral do GNU (GPL) [General Public License] +category: Copyleft +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/GPL/2.0/ +spdx_license_key: LicenseRef-scancode-cc-gpl-2.0-pt +text_urls: + - https://creativecommons.org/licenses/GPL/2.0/legalcode.pt +ignorable_copyrights: + - (c) 1989, 1991 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + Licença Pública Geral do GNU (GPL) [General Public License] @@ -111,6 +128,4 @@ Você também pode solicitar a seu empregador (se você for um programador) ou s A Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais sobre o programa `Gnomovision' (que realiza passagens em compiladores), escrito por James Hacker. 1º de abril de 1989, Ty Coon, Presidente -Esta Licença Pública Geral não permite a incorporação do seu programa a programas proprietários. Se seu programa é uma biblioteca de sub-rotinas, você poderá considerar ser mais útil permitir a ligação de aplicações proprietárias à sua biblioteca. Se isso é o que você deseja fazer, utilize a Licença Pública Geral de Biblioteca do GNU, ao invés desta Licença. - - +Esta Licença Pública Geral não permite a incorporação do seu programa a programas proprietários. Se seu programa é uma biblioteca de sub-rotinas, você poderá considerar ser mais útil permitir a ligação de aplicações proprietárias à sua biblioteca. Se isso é o que você deseja fazer, utilize a Licença Pública Geral de Biblioteca do GNU, ao invés desta Licença. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-gpl-2.0-pt.yml b/src/licensedcode/data/licenses/cc-gpl-2.0-pt.yml deleted file mode 100644 index 0bde7167dc3..00000000000 --- a/src/licensedcode/data/licenses/cc-gpl-2.0-pt.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: cc-gpl-2.0-pt -language: pt -short_name: CC-GPL-2.0-PT -name: Creative Commons Licença Pública Geral do GNU (GPL) [General Public License] -category: Copyleft -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/GPL/2.0/ -spdx_license_key: LicenseRef-scancode-cc-gpl-2.0-pt -text_urls: - - https://creativecommons.org/licenses/GPL/2.0/legalcode.pt -ignorable_copyrights: - - (c) 1989, 1991 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/licenses/cc-lgpl-2.1-pt.LICENSE b/src/licensedcode/data/licenses/cc-lgpl-2.1-pt.LICENSE index de142acb826..53f94d8bdda 100644 --- a/src/licensedcode/data/licenses/cc-lgpl-2.1-pt.LICENSE +++ b/src/licensedcode/data/licenses/cc-lgpl-2.1-pt.LICENSE @@ -1,3 +1,20 @@ +--- +key: cc-lgpl-2.1-pt +language: pt +short_name: CC-LGPL-2.1-PT +name: Creative Commons Licença Pública Geral Menor do GNU +category: Copyleft Limited +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/LGPL/2.1/ +spdx_license_key: LicenseRef-scancode-cc-lgpl-2.1-pt +text_urls: + - https://creativecommons.org/licenses/LGPL/2.1/legalcode.pt +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + Licença Pública Geral Menor do GNU @@ -196,5 +213,4 @@ Você também pode solicitar a seu empregador (se você for um programador) ou a A Yoyodyne Ltda., neste ato, renuncia a todos eventuais direitos autorais sobre a biblioteca 'Frob' (uma biblioteca para ajustar fechaduras), escrita por James Random Hacker. 1º de abril de 1990, Ty Coon, Presidente -Isto é tudo! - +Isto é tudo! \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-lgpl-2.1-pt.yml b/src/licensedcode/data/licenses/cc-lgpl-2.1-pt.yml deleted file mode 100644 index 732577dd927..00000000000 --- a/src/licensedcode/data/licenses/cc-lgpl-2.1-pt.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: cc-lgpl-2.1-pt -language: pt -short_name: CC-LGPL-2.1-PT -name: Creative Commons Licença Pública Geral Menor do GNU -category: Copyleft Limited -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/LGPL/2.1/ -spdx_license_key: LicenseRef-scancode-cc-lgpl-2.1-pt -text_urls: - - https://creativecommons.org/licenses/LGPL/2.1/legalcode.pt -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/licenses/cc-nc-sampling-plus-1.0.LICENSE b/src/licensedcode/data/licenses/cc-nc-sampling-plus-1.0.LICENSE index 30ddbc5080d..857e661527c 100644 --- a/src/licensedcode/data/licenses/cc-nc-sampling-plus-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-nc-sampling-plus-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-nc-sampling-plus-1.0 +short_name: NonCommercial Sampling Plus 1.0 +name: NonCommercial Sampling Plus 1.0 +category: Proprietary Free +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/nc-sampling+/1.0/ +spdx_license_key: LicenseRef-scancode-cc-nc-sampling-plus-1.0 +--- + Noncommercial Sampling Plus 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/licenses/cc-nc-sampling-plus-1.0.yml b/src/licensedcode/data/licenses/cc-nc-sampling-plus-1.0.yml deleted file mode 100644 index 4e1701763bd..00000000000 --- a/src/licensedcode/data/licenses/cc-nc-sampling-plus-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cc-nc-sampling-plus-1.0 -short_name: NonCommercial Sampling Plus 1.0 -name: NonCommercial Sampling Plus 1.0 -category: Proprietary Free -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/nc-sampling+/1.0/ -spdx_license_key: LicenseRef-scancode-cc-nc-sampling-plus-1.0 diff --git a/src/licensedcode/data/licenses/cc-pd.LICENSE b/src/licensedcode/data/licenses/cc-pd.LICENSE index 07b30352609..a1f74e9a07a 100644 --- a/src/licensedcode/data/licenses/cc-pd.LICENSE +++ b/src/licensedcode/data/licenses/cc-pd.LICENSE @@ -1,3 +1,15 @@ +--- +key: cc-pd +short_name: CC-PD +name: Creative Commons Public Domain Certification +category: Public Domain +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/publicdomain/ +spdx_license_key: CC-PDDC +text_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. diff --git a/src/licensedcode/data/licenses/cc-pd.yml b/src/licensedcode/data/licenses/cc-pd.yml deleted file mode 100644 index 600c62f9764..00000000000 --- a/src/licensedcode/data/licenses/cc-pd.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cc-pd -short_name: CC-PD -name: Creative Commons Public Domain Certification -category: Public Domain -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/publicdomain/ -spdx_license_key: CC-PDDC -text_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/licenses/cc-pdm-1.0.LICENSE b/src/licensedcode/data/licenses/cc-pdm-1.0.LICENSE index b8310294203..f0718f31c9c 100644 --- a/src/licensedcode/data/licenses/cc-pdm-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-pdm-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: cc-pdm-1.0 +short_name: CC-PD Mark 1.0 +name: Creative Commons Public Domain Mark 1.0 +category: Public Domain +owner: Creative Commons +homepage_url: https://creativecommons.org/publicdomain/mark/1.0/ +spdx_license_key: LicenseRef-scancode-cc-pdm-1.0 +faq_url: https://wiki.creativecommons.org/wiki/PDM_FAQ +--- + Public Domain Mark 1.0 No Copyright @@ -18,5 +29,4 @@ Other Information Unless expressly stated otherwise, the person who identified the work makes no warranties about the work, and disclaims liability for all uses of the work, to the fullest extent permitted by applicable law. - When using or citing the work, you should not imply endorsement by the author or the person who identified the work. - + When using or citing the work, you should not imply endorsement by the author or the person who identified the work. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc-pdm-1.0.yml b/src/licensedcode/data/licenses/cc-pdm-1.0.yml deleted file mode 100644 index 4aaaf9e7acd..00000000000 --- a/src/licensedcode/data/licenses/cc-pdm-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: cc-pdm-1.0 -short_name: CC-PD Mark 1.0 -name: Creative Commons Public Domain Mark 1.0 -category: Public Domain -owner: Creative Commons -homepage_url: https://creativecommons.org/publicdomain/mark/1.0/ -spdx_license_key: LicenseRef-scancode-cc-pdm-1.0 -faq_url: https://wiki.creativecommons.org/wiki/PDM_FAQ diff --git a/src/licensedcode/data/licenses/cc-sampling-1.0.LICENSE b/src/licensedcode/data/licenses/cc-sampling-1.0.LICENSE index f2b782d954a..0564dea5591 100644 --- a/src/licensedcode/data/licenses/cc-sampling-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-sampling-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-sampling-1.0 +short_name: Sampling 1.0 +name: Sampling 1.0 +category: Proprietary Free +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/sampling/1.0/ +spdx_license_key: LicenseRef-scancode-cc-sampling-1.0 +--- + Sampling 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/licenses/cc-sampling-1.0.yml b/src/licensedcode/data/licenses/cc-sampling-1.0.yml deleted file mode 100644 index 84c6cc2641e..00000000000 --- a/src/licensedcode/data/licenses/cc-sampling-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cc-sampling-1.0 -short_name: Sampling 1.0 -name: Sampling 1.0 -category: Proprietary Free -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/sampling/1.0/ -spdx_license_key: LicenseRef-scancode-cc-sampling-1.0 diff --git a/src/licensedcode/data/licenses/cc-sampling-plus-1.0.LICENSE b/src/licensedcode/data/licenses/cc-sampling-plus-1.0.LICENSE index 7cd4af1a13b..71d77671fed 100644 --- a/src/licensedcode/data/licenses/cc-sampling-plus-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc-sampling-plus-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: cc-sampling-plus-1.0 +short_name: Sampling Plus 1.0 +name: Sampling Plus 1.0 +category: Proprietary Free +owner: Creative Commons +homepage_url: https://creativecommons.org/licenses/sampling+/1.0/ +spdx_license_key: LicenseRef-scancode-cc-sampling-plus-1.0 +--- + Sampling Plus 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/licenses/cc-sampling-plus-1.0.yml b/src/licensedcode/data/licenses/cc-sampling-plus-1.0.yml deleted file mode 100644 index 766cfe1c4ce..00000000000 --- a/src/licensedcode/data/licenses/cc-sampling-plus-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cc-sampling-plus-1.0 -short_name: Sampling Plus 1.0 -name: Sampling Plus 1.0 -category: Proprietary Free -owner: Creative Commons -homepage_url: https://creativecommons.org/licenses/sampling+/1.0/ -spdx_license_key: LicenseRef-scancode-cc-sampling-plus-1.0 diff --git a/src/licensedcode/data/licenses/cc0-1.0.LICENSE b/src/licensedcode/data/licenses/cc0-1.0.LICENSE index 0e259d42c99..e5d457ccf43 100644 --- a/src/licensedcode/data/licenses/cc0-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cc0-1.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: cc0-1.0 +short_name: CC0-1.0 +name: Creative Commons CC0 1.0 Universal +category: Public Domain +owner: Creative Commons +homepage_url: http://creativecommons.org/publicdomain/zero/1.0/ +spdx_license_key: CC0-1.0 +text_urls: + - http://creativecommons.org/publicdomain/zero/1.0/legalcode +faq_url: http://wiki.creativecommons.org/CC0_FAQ +other_urls: + - https://creativecommons.org/publicdomain/zero/1.0/legalcode +--- + Creative Commons Legal Code CC0 1.0 Universal @@ -118,4 +133,4 @@ express Statement of Purpose. Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. + this CC0 or use of the Work. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cc0-1.0.yml b/src/licensedcode/data/licenses/cc0-1.0.yml deleted file mode 100644 index ccc530c05d3..00000000000 --- a/src/licensedcode/data/licenses/cc0-1.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: cc0-1.0 -short_name: CC0-1.0 -name: Creative Commons CC0 1.0 Universal -category: Public Domain -owner: Creative Commons -homepage_url: http://creativecommons.org/publicdomain/zero/1.0/ -spdx_license_key: CC0-1.0 -text_urls: - - http://creativecommons.org/publicdomain/zero/1.0/legalcode -faq_url: http://wiki.creativecommons.org/CC0_FAQ -other_urls: - - https://creativecommons.org/publicdomain/zero/1.0/legalcode diff --git a/src/licensedcode/data/licenses/cclrc.LICENSE b/src/licensedcode/data/licenses/cclrc.LICENSE index 94548ccff29..2cb1db249d7 100644 --- a/src/licensedcode/data/licenses/cclrc.LICENSE +++ b/src/licensedcode/data/licenses/cclrc.LICENSE @@ -1,3 +1,15 @@ +--- +key: cclrc +short_name: CCLRC License +name: CCLRC License +category: Free Restricted +owner: Lawrence Livermore National Laboratory +homepage_url: https://github.com/PCMDI/cmor/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-cclrc +other_urls: + - https://tracker.debian.org/pkg/cmor +--- + CCLRC License for CCLRC Software forming part of the Climate Model Output Rewriter Tools Package. diff --git a/src/licensedcode/data/licenses/cclrc.yml b/src/licensedcode/data/licenses/cclrc.yml deleted file mode 100644 index 3ad621dfb8d..00000000000 --- a/src/licensedcode/data/licenses/cclrc.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cclrc -short_name: CCLRC License -name: CCLRC License -category: Free Restricted -owner: Lawrence Livermore National Laboratory -homepage_url: https://github.com/PCMDI/cmor/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-cclrc -other_urls: - - https://tracker.debian.org/pkg/cmor diff --git a/src/licensedcode/data/licenses/ccrc-1.0.LICENSE b/src/licensedcode/data/licenses/ccrc-1.0.LICENSE index 8bd39c49866..5f1e875e084 100644 --- a/src/licensedcode/data/licenses/ccrc-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ccrc-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: ccrc-1.0 +short_name: Common Cure Rights Commitment v1.0 +name: Common Cure Rights Commitment v1.0 +category: Copyleft +owner: Red Hat, Inc. +homepage_url: https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing +text_urls: + - http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT + - https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT +other_urls: + - https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing + - https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement +notes: the text of the license itself is under the CC-BY-SA-4.0 license. And this license has + been renamed to gplcc-1.0 +is_deprecated: yes +--- + Common Cure Rights Commitment Version 1.0 @@ -43,5 +61,4 @@ inclusion of this file, including subsidiaries of a corporate contributor. This work is available under a Creative Commons Attribution-ShareAlike -4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). - +4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ccrc-1.0.yml b/src/licensedcode/data/licenses/ccrc-1.0.yml deleted file mode 100644 index 0f5d1191ed1..00000000000 --- a/src/licensedcode/data/licenses/ccrc-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ccrc-1.0 -short_name: Common Cure Rights Commitment v1.0 -name: Common Cure Rights Commitment v1.0 -category: Copyleft -owner: Red Hat, Inc. -homepage_url: https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing -text_urls: - - http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT - - https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT -other_urls: - - https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing - - https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement -notes: the text of the license itself is under the CC-BY-SA-4.0 license. - And this license has been renamed to gplcc-1.0 -is_deprecated: yes diff --git a/src/licensedcode/data/licenses/cddl-1.0.LICENSE b/src/licensedcode/data/licenses/cddl-1.0.LICENSE index 7f0c8dc0ee3..251f0719b11 100644 --- a/src/licensedcode/data/licenses/cddl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cddl-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: cddl-1.0 +short_name: CDDL 1.0 +name: Common Development and Distribution License 1.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://www.sun.com/cddl/ +notes: | + Per SPDX.org, this license was released 24 January 2004. This license is + OSI certified. +spdx_license_key: CDDL-1.0 +osi_license_key: CDDL-1.0 +text_urls: + - http://www.opensolaris.org/os/licensing/cddllicense.txt + - http://www.sun.com/cddl/cddl.html +osi_url: http://www.opensource.org/licenses/cddl1.txt +faq_url: http://www.opensolaris.org/os/about/faq/licensing_faq/ +other_urls: + - http://www.gnu.org/licenses/license-list.html#CDDL + - http://www.opensource.org/licenses/cddl1 + - http://www.oracle.com/us/sun/index.html + - https://glassfish.dev.java.net/public/CDDLv1.0.html + - https://opensource.org/licenses/cddl1 +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 1. Definitions. diff --git a/src/licensedcode/data/licenses/cddl-1.0.yml b/src/licensedcode/data/licenses/cddl-1.0.yml deleted file mode 100644 index 607794aa521..00000000000 --- a/src/licensedcode/data/licenses/cddl-1.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: cddl-1.0 -short_name: CDDL 1.0 -name: Common Development and Distribution License 1.0 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: http://www.sun.com/cddl/ -notes: | - Per SPDX.org, this license was released 24 January 2004. This license is - OSI certified. -spdx_license_key: CDDL-1.0 -osi_license_key: CDDL-1.0 -text_urls: - - http://www.opensolaris.org/os/licensing/cddllicense.txt - - http://www.sun.com/cddl/cddl.html -osi_url: http://www.opensource.org/licenses/cddl1.txt -faq_url: http://www.opensolaris.org/os/about/faq/licensing_faq/ -other_urls: - - http://www.gnu.org/licenses/license-list.html#CDDL - - http://www.opensource.org/licenses/cddl1 - - http://www.oracle.com/us/sun/index.html - - https://glassfish.dev.java.net/public/CDDLv1.0.html - - https://opensource.org/licenses/cddl1 diff --git a/src/licensedcode/data/licenses/cddl-1.1.LICENSE b/src/licensedcode/data/licenses/cddl-1.1.LICENSE index 4ebff13183b..abca2de8ce2 100644 --- a/src/licensedcode/data/licenses/cddl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/cddl-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: cddl-1.1 +short_name: CDDL 1.1 +name: Common Development and Distribution License 1.1 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://glassfish.java.net/public/CDDL+GPL_1_1.html +notes: | + per SPDX.org, same as 1.0, but changes name from Sun to Oracle in section + 4.1 and adds patent infringement termination clause (section 6.3) +spdx_license_key: CDDL-1.1 +text_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +faq_url: http://glassfish.java.net/public/CDDL+GPL_1_1.html +other_urls: + - https://javaee.github.io/glassfish/LICENSE +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)Version 1.1 1. Definitions. diff --git a/src/licensedcode/data/licenses/cddl-1.1.yml b/src/licensedcode/data/licenses/cddl-1.1.yml deleted file mode 100644 index 602b17d9a08..00000000000 --- a/src/licensedcode/data/licenses/cddl-1.1.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: cddl-1.1 -short_name: CDDL 1.1 -name: Common Development and Distribution License 1.1 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: http://glassfish.java.net/public/CDDL+GPL_1_1.html -notes: | - per SPDX.org, same as 1.0, but changes name from Sun to Oracle in section - 4.1 and adds patent infringement termination clause (section 6.3) -spdx_license_key: CDDL-1.1 -text_urls: - - http://glassfish.java.net/public/CDDL+GPL_1_1.html -faq_url: http://glassfish.java.net/public/CDDL+GPL_1_1.html -other_urls: - - https://javaee.github.io/glassfish/LICENSE diff --git a/src/licensedcode/data/licenses/cdla-permissive-1.0.LICENSE b/src/licensedcode/data/licenses/cdla-permissive-1.0.LICENSE index 0ca9ffeb51b..a8cdeb93114 100644 --- a/src/licensedcode/data/licenses/cdla-permissive-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cdla-permissive-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: cdla-permissive-1.0 +short_name: CDLA Permissive 1.0 +name: Community Data License Agreement Permissive 1.0 +category: Permissive +owner: Linux Foundation +homepage_url: https://cdla.io/permissive-1-0/ +spdx_license_key: CDLA-Permissive-1.0 +other_urls: + - https://cdla.io/permissive-1-0 +--- + Community Data License Agreement – Permissive – Version 1.0 This is the Community Data License Agreement – Permissive, Version 1.0 ("Agreement"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement. diff --git a/src/licensedcode/data/licenses/cdla-permissive-1.0.yml b/src/licensedcode/data/licenses/cdla-permissive-1.0.yml deleted file mode 100644 index 445c76b6280..00000000000 --- a/src/licensedcode/data/licenses/cdla-permissive-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cdla-permissive-1.0 -short_name: CDLA Permissive 1.0 -name: Community Data License Agreement Permissive 1.0 -category: Permissive -owner: Linux Foundation -homepage_url: https://cdla.io/permissive-1-0/ -spdx_license_key: CDLA-Permissive-1.0 -other_urls: - - https://cdla.io/permissive-1-0 diff --git a/src/licensedcode/data/licenses/cdla-permissive-2.0.LICENSE b/src/licensedcode/data/licenses/cdla-permissive-2.0.LICENSE index 5b7a4ac8b4c..2f761306b17 100644 --- a/src/licensedcode/data/licenses/cdla-permissive-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cdla-permissive-2.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: cdla-permissive-2.0 +short_name: CDLA Permissive 2.0 +name: Community Data License Agreement Permissive 2.0 +category: Permissive +owner: Linux Foundation +homepage_url: https://cdla.dev/permissive-2-0/ +spdx_license_key: CDLA-Permissive-2.0 +text_urls: + - https://raw.githubusercontent.com/Community-Data-License-Agreements/Releases/main/CDLA-Permissive-2.0.txt +faq_url: https://cdla.dev/ +other_urls: + - https://cdla.dev/permissive-2-0 +--- + Community Data License Agreement - Permissive - Version 2.0 This is the Community Data License Agreement - Permissive, Version 2.0 (the "agreement"). Data Provider(s) and Data Recipient(s) agree as follows: diff --git a/src/licensedcode/data/licenses/cdla-permissive-2.0.yml b/src/licensedcode/data/licenses/cdla-permissive-2.0.yml deleted file mode 100644 index dd366ed564a..00000000000 --- a/src/licensedcode/data/licenses/cdla-permissive-2.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: cdla-permissive-2.0 -short_name: CDLA Permissive 2.0 -name: Community Data License Agreement Permissive 2.0 -category: Permissive -owner: Linux Foundation -homepage_url: https://cdla.dev/permissive-2-0/ -spdx_license_key: CDLA-Permissive-2.0 -text_urls: - - https://raw.githubusercontent.com/Community-Data-License-Agreements/Releases/main/CDLA-Permissive-2.0.txt -faq_url: https://cdla.dev/ -other_urls: - - https://cdla.dev/permissive-2-0 diff --git a/src/licensedcode/data/licenses/cdla-sharing-1.0.LICENSE b/src/licensedcode/data/licenses/cdla-sharing-1.0.LICENSE index 42472d7b452..3a7ebe59abe 100644 --- a/src/licensedcode/data/licenses/cdla-sharing-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cdla-sharing-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: cdla-sharing-1.0 +short_name: CDLA Sharing 1.0 +name: Community Data License Agreement Sharing 1.0 +category: Copyleft Limited +owner: Linux Foundation +homepage_url: https://cdla.io/sharing-1-0/ +spdx_license_key: CDLA-Sharing-1.0 +other_urls: + - https://cdla.io/sharing-1-0 +--- + Community Data License Agreement – Sharing – Version 1.0 This is the Community Data License Agreement – Sharing, Version 1.0 ("Agreement"). Data is provided to You under this Agreement by each of the Data Providers. Your exercise of any of the rights and permissions granted below constitutes Your acceptance and agreement to be bound by the terms and conditions of this Agreement. diff --git a/src/licensedcode/data/licenses/cdla-sharing-1.0.yml b/src/licensedcode/data/licenses/cdla-sharing-1.0.yml deleted file mode 100644 index 5fb46281785..00000000000 --- a/src/licensedcode/data/licenses/cdla-sharing-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cdla-sharing-1.0 -short_name: CDLA Sharing 1.0 -name: Community Data License Agreement Sharing 1.0 -category: Copyleft Limited -owner: Linux Foundation -homepage_url: https://cdla.io/sharing-1-0/ -spdx_license_key: CDLA-Sharing-1.0 -other_urls: - - https://cdla.io/sharing-1-0 diff --git a/src/licensedcode/data/licenses/cecill-1.0-en.LICENSE b/src/licensedcode/data/licenses/cecill-1.0-en.LICENSE index e8e1d2033ea..e0944118f6d 100644 --- a/src/licensedcode/data/licenses/cecill-1.0-en.LICENSE +++ b/src/licensedcode/data/licenses/cecill-1.0-en.LICENSE @@ -1,3 +1,15 @@ +--- +key: cecill-1.0-en +short_name: CeCILL 1.0 English +name: CeCILL Free Software License Agreement v1.0 English +category: Copyleft +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V1-US.html +spdx_license_key: LicenseRef-scancode-cecill-1.0-en +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1-US.txt +--- + FREE SOFTWARE LICENSING AGREEMENT CeCILL ======================================== @@ -500,15 +512,4 @@ disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the first Party to take action. - Version 1 of 06/21/2004 - - - - - - - - - - - + Version 1 of 06/21/2004 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-1.0-en.yml b/src/licensedcode/data/licenses/cecill-1.0-en.yml deleted file mode 100644 index a8efd8926e7..00000000000 --- a/src/licensedcode/data/licenses/cecill-1.0-en.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cecill-1.0-en -short_name: CeCILL 1.0 English -name: CeCILL Free Software License Agreement v1.0 English -category: Copyleft -owner: CeCILL -homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V1-US.html -spdx_license_key: LicenseRef-scancode-cecill-1.0-en -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V1-US.txt diff --git a/src/licensedcode/data/licenses/cecill-1.0.LICENSE b/src/licensedcode/data/licenses/cecill-1.0.LICENSE index 8e147fd6d06..2b7c93910bd 100644 --- a/src/licensedcode/data/licenses/cecill-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cecill-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: cecill-1.0 +language: fr +short_name: CeCILL 1.0 +name: CeCILL Free Software License Agreement v1.0 +category: Copyleft +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html +spdx_license_key: CECILL-1.0 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1-fr.txt +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1-US.html + - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html +--- + CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL =========================================== @@ -484,4 +500,4 @@ les Tribunaux compétents de Paris. - Version 1 du 21/06/2004 + Version 1 du 21/06/2004 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-1.0.yml b/src/licensedcode/data/licenses/cecill-1.0.yml deleted file mode 100644 index 14c5fb4379a..00000000000 --- a/src/licensedcode/data/licenses/cecill-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cecill-1.0 -language: fr -short_name: CeCILL 1.0 -name: CeCILL Free Software License Agreement v1.0 -category: Copyleft -owner: CeCILL -homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html -spdx_license_key: CECILL-1.0 -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V1-fr.txt -other_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V1-US.html - - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html diff --git a/src/licensedcode/data/licenses/cecill-1.1.LICENSE b/src/licensedcode/data/licenses/cecill-1.1.LICENSE index 0b82f22ded7..ebac292847b 100644 --- a/src/licensedcode/data/licenses/cecill-1.1.LICENSE +++ b/src/licensedcode/data/licenses/cecill-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: cecill-1.1 +short_name: CeCILL 1.1 English +name: CeCILL Free Software License Agreement v1.1 +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences.en.html +notes: | + Per SPDX.org, there is only an English version for 1.1, which includes some + wording changes from v1.0 +spdx_license_key: CECILL-1.1 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html +--- + FREE SOFTWARE LICENSING AGREEMENT CeCILL ======================================== @@ -499,15 +516,4 @@ disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the first Party to take action. - Version 1.1 of 10/26/2004 - - - - - - - - - - - + Version 1.1 of 10/26/2004 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-1.1.yml b/src/licensedcode/data/licenses/cecill-1.1.yml deleted file mode 100644 index 7f5c05ab968..00000000000 --- a/src/licensedcode/data/licenses/cecill-1.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: cecill-1.1 -short_name: CeCILL 1.1 English -name: CeCILL Free Software License Agreement v1.1 -category: Copyleft Limited -owner: CeCILL -homepage_url: http://www.cecill.info/licences.en.html -notes: | - Per SPDX.org, there is only an English version for 1.1, which includes some - wording changes from v1.0 -spdx_license_key: CECILL-1.1 -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt -other_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html diff --git a/src/licensedcode/data/licenses/cecill-2.0-fr.LICENSE b/src/licensedcode/data/licenses/cecill-2.0-fr.LICENSE index d67912112bc..c42a60fa078 100644 --- a/src/licensedcode/data/licenses/cecill-2.0-fr.LICENSE +++ b/src/licensedcode/data/licenses/cecill-2.0-fr.LICENSE @@ -1,3 +1,19 @@ +--- +key: cecill-2.0-fr +language: fr +short_name: CeCILL 2.0 French +name: CeCILL Free Software License Agreement v2.0 French +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences.en.html +spdx_license_key: LicenseRef-scancode-cecill-2.0-fr +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt +--- + CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL @@ -509,4 +525,4 @@ les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. -Version 2.0 du 2006-09-05. +Version 2.0 du 2006-09-05. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-2.0-fr.yml b/src/licensedcode/data/licenses/cecill-2.0-fr.yml deleted file mode 100644 index 0ccd46e8f06..00000000000 --- a/src/licensedcode/data/licenses/cecill-2.0-fr.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cecill-2.0-fr -language: fr -short_name: CeCILL 2.0 French -name: CeCILL Free Software License Agreement v2.0 French -category: Copyleft Limited -owner: CeCILL -homepage_url: http://www.cecill.info/licences.en.html -spdx_license_key: LicenseRef-scancode-cecill-2.0-fr -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html - - http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html - - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt diff --git a/src/licensedcode/data/licenses/cecill-2.0.LICENSE b/src/licensedcode/data/licenses/cecill-2.0.LICENSE index 8aa5b54f7ca..581d7e66d0d 100644 --- a/src/licensedcode/data/licenses/cecill-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cecill-2.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: cecill-2.0 +short_name: CeCILL 2.0 +name: CeCILL Free Software License Agreement v2.0 +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences.en.html +notes: | + per SPDX.org, English translation can be found here + http://www.cecill.info/licences/Licence_CeCILL_V2-en.html +spdx_license_key: CECILL-2.0 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt +--- + CeCILL FREE SOFTWARE LICENSE AGREEMENT Notice diff --git a/src/licensedcode/data/licenses/cecill-2.0.yml b/src/licensedcode/data/licenses/cecill-2.0.yml deleted file mode 100644 index 2ed88eba61f..00000000000 --- a/src/licensedcode/data/licenses/cecill-2.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: cecill-2.0 -short_name: CeCILL 2.0 -name: CeCILL Free Software License Agreement v2.0 -category: Copyleft Limited -owner: CeCILL -homepage_url: http://www.cecill.info/licences.en.html -notes: | - per SPDX.org, English translation can be found here - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html -spdx_license_key: CECILL-2.0 -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html - - http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt - - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html - - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt diff --git a/src/licensedcode/data/licenses/cecill-2.1-fr.LICENSE b/src/licensedcode/data/licenses/cecill-2.1-fr.LICENSE index be9a324cb8c..cfafce32f2b 100644 --- a/src/licensedcode/data/licenses/cecill-2.1-fr.LICENSE +++ b/src/licensedcode/data/licenses/cecill-2.1-fr.LICENSE @@ -1,3 +1,25 @@ +--- +key: cecill-2.1-fr +language: fr +short_name: CeCILL 2.1 French +name: CeCILL Free Software License Agreement v2.1 French +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html +spdx_license_key: LicenseRef-scancode-cecill-2.1-fr +osi_license_key: CECILL-2.1 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt +osi_url: http://opensource.org/licenses/CECILL-2.1 +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html +ignorable_urls: + - http://www.cecill.info/index.fr.html +--- + CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL @@ -545,6 +567,4 @@ viendraient à se produire par suite ou à l'occasion du Contrat. 13.2 A défaut d'accord amiable dans un délai de deux (2) mois à compter de leur survenance et sauf situation relevant d'une procédure d'urgence, les différends ou litiges seront portés par la Partie la plus diligente -devant les Tribunaux compétents de Paris. - - +devant les Tribunaux compétents de Paris. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-2.1-fr.yml b/src/licensedcode/data/licenses/cecill-2.1-fr.yml deleted file mode 100644 index 14cf08fb64c..00000000000 --- a/src/licensedcode/data/licenses/cecill-2.1-fr.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: cecill-2.1-fr -language: fr -short_name: CeCILL 2.1 French -name: CeCILL Free Software License Agreement v2.1 French -category: Copyleft Limited -owner: CeCILL -homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html -spdx_license_key: LicenseRef-scancode-cecill-2.1-fr -osi_license_key: CECILL-2.1 -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt -osi_url: http://opensource.org/licenses/CECILL-2.1 -other_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html -ignorable_urls: - - http://www.cecill.info/index.fr.html diff --git a/src/licensedcode/data/licenses/cecill-2.1.LICENSE b/src/licensedcode/data/licenses/cecill-2.1.LICENSE index e7c9f899377..cfac9a8ec82 100644 --- a/src/licensedcode/data/licenses/cecill-2.1.LICENSE +++ b/src/licensedcode/data/licenses/cecill-2.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: cecill-2.1 +short_name: CeCILL 2.1 +name: CeCILL Free Software License Agreement v2.1 +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html +spdx_license_key: CECILL-2.1 +osi_license_key: CECILL-2.1 +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt +osi_url: http://opensource.org/licenses/CECILL-2.1 +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html +ignorable_urls: + - http://www.cecill.info/index.en.html +--- + CeCILL FREE SOFTWARE LICENSE AGREEMENT @@ -515,5 +536,4 @@ that may arise during the performance of the Agreement. 13.2 Failing an amicable solution within two (2) months as from their occurrence, and unless emergency proceedings are necessary, the disagreements or disputes shall be referred to the Paris Courts having -jurisdiction, by the more diligent Party. - +jurisdiction, by the more diligent Party. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-2.1.yml b/src/licensedcode/data/licenses/cecill-2.1.yml deleted file mode 100644 index ffb15be2291..00000000000 --- a/src/licensedcode/data/licenses/cecill-2.1.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: cecill-2.1 -short_name: CeCILL 2.1 -name: CeCILL Free Software License Agreement v2.1 -category: Copyleft Limited -owner: CeCILL -homepage_url: http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html -spdx_license_key: CECILL-2.1 -osi_license_key: CECILL-2.1 -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.html - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-fr.txt -osi_url: http://opensource.org/licenses/CECILL-2.1 -other_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html -ignorable_urls: - - http://www.cecill.info/index.en.html diff --git a/src/licensedcode/data/licenses/cecill-b-en.LICENSE b/src/licensedcode/data/licenses/cecill-b-en.LICENSE index da418978d4e..67348cad004 100644 --- a/src/licensedcode/data/licenses/cecill-b-en.LICENSE +++ b/src/licensedcode/data/licenses/cecill-b-en.LICENSE @@ -1,3 +1,21 @@ +--- +key: cecill-b-en +short_name: CeCILL-B License English +name: CeCILL-B Free Software License Agreement English +category: Permissive +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +notes: The primary text is in French. +spdx_license_key: LicenseRef-scancode-cecill-b-en +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt +faq_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +other_urls: + - http://www.cecill.info/licences.en.html + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +--- + CeCILL-B FREE SOFTWARE LICENSE AGREEMENT @@ -512,4 +530,4 @@ disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the more diligent Party. -Version 1.0 dated 2006-09-05. +Version 1.0 dated 2006-09-05. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-b-en.yml b/src/licensedcode/data/licenses/cecill-b-en.yml deleted file mode 100644 index ba6b914ab48..00000000000 --- a/src/licensedcode/data/licenses/cecill-b-en.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: cecill-b-en -short_name: CeCILL-B License English -name: CeCILL-B Free Software License Agreement English -category: Permissive -owner: CeCILL -homepage_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -notes: The primary text is in French. -spdx_license_key: LicenseRef-scancode-cecill-b-en -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt -faq_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -other_urls: - - http://www.cecill.info/licences.en.html - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html diff --git a/src/licensedcode/data/licenses/cecill-b.LICENSE b/src/licensedcode/data/licenses/cecill-b.LICENSE index 594abeada47..db92398ea4f 100644 --- a/src/licensedcode/data/licenses/cecill-b.LICENSE +++ b/src/licensedcode/data/licenses/cecill-b.LICENSE @@ -1,3 +1,22 @@ +--- +key: cecill-b +language: fr +short_name: CeCILL-B License +name: CeCILL-B Free Software License Agreement +category: Permissive +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html +notes: The primary text is in French. +spdx_license_key: CECILL-B +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html +faq_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +other_urls: + - http://www.cecill.info/licences.en.html + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +--- + CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-B @@ -516,4 +535,4 @@ les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. -Version 1.0 du 2006-09-05. +Version 1.0 du 2006-09-05. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-b.yml b/src/licensedcode/data/licenses/cecill-b.yml deleted file mode 100644 index c5555a07a04..00000000000 --- a/src/licensedcode/data/licenses/cecill-b.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: cecill-b -language: fr -short_name: CeCILL-B License -name: CeCILL-B Free Software License Agreement -category: Permissive -owner: CeCILL -homepage_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html -notes: The primary text is in French. -spdx_license_key: CECILL-B -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html -faq_url: http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -other_urls: - - http://www.cecill.info/licences.en.html - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html diff --git a/src/licensedcode/data/licenses/cecill-c-en.LICENSE b/src/licensedcode/data/licenses/cecill-c-en.LICENSE index d6eb151e61d..b244b280a54 100644 --- a/src/licensedcode/data/licenses/cecill-c-en.LICENSE +++ b/src/licensedcode/data/licenses/cecill-c-en.LICENSE @@ -1,3 +1,17 @@ +--- +key: cecill-c-en +short_name: CeCILL-C License English +name: CeCILL-C Free Software License Agreement English +category: Copyleft Limited +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html +notes: "This is the English translation of \nhttp://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html\n" +spdx_license_key: LicenseRef-scancode-cecill-c-en +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt +--- + CeCILL-C FREE SOFTWARE LICENSE AGREEMENT @@ -514,4 +528,4 @@ disagreements or disputes shall be referred to the Paris Courts having jurisdiction, by the more diligent Party. -Version 1.0 dated 2006-09-05. +Version 1.0 dated 2006-09-05. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-c-en.yml b/src/licensedcode/data/licenses/cecill-c-en.yml deleted file mode 100644 index 908e8e59e49..00000000000 --- a/src/licensedcode/data/licenses/cecill-c-en.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cecill-c-en -short_name: CeCILL-C License English -name: CeCILL-C Free Software License Agreement English -category: Copyleft Limited -owner: CeCILL -homepage_url: http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html -notes: "This is the English translation of \nhttp://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html\n" -spdx_license_key: LicenseRef-scancode-cecill-c-en -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html - - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt diff --git a/src/licensedcode/data/licenses/cecill-c.LICENSE b/src/licensedcode/data/licenses/cecill-c.LICENSE index ddf43990883..1faac9dcc04 100644 --- a/src/licensedcode/data/licenses/cecill-c.LICENSE +++ b/src/licensedcode/data/licenses/cecill-c.LICENSE @@ -1,3 +1,22 @@ +--- +key: cecill-c +language: fr +short_name: CeCILL-C License +name: CeCILL-C Free Software License Agreement +category: Copyleft +owner: CeCILL +homepage_url: http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html +notes: | + per SPDX.org, English translation can be found here + http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html +spdx_license_key: CECILL-C +text_urls: + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt +other_urls: + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html +--- + CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL-C @@ -518,4 +537,4 @@ les différends ou litiges seront portés par la Partie la plus diligente devant les Tribunaux compétents de Paris. -Version 1.0 du 2006-09-05. +Version 1.0 du 2006-09-05. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cecill-c.yml b/src/licensedcode/data/licenses/cecill-c.yml deleted file mode 100644 index 43882304a1e..00000000000 --- a/src/licensedcode/data/licenses/cecill-c.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: cecill-c -language: fr -short_name: CeCILL-C License -name: CeCILL-C Free Software License Agreement -category: Copyleft -owner: CeCILL -homepage_url: http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html -notes: | - per SPDX.org, English translation can be found here - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html -spdx_license_key: CECILL-C -text_urls: - - http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html - - http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.txt -other_urls: - - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html diff --git a/src/licensedcode/data/licenses/cern-attribution-1995.LICENSE b/src/licensedcode/data/licenses/cern-attribution-1995.LICENSE index a2a522c9679..48ac331a74e 100644 --- a/src/licensedcode/data/licenses/cern-attribution-1995.LICENSE +++ b/src/licensedcode/data/licenses/cern-attribution-1995.LICENSE @@ -1 +1,12 @@ +--- +key: cern-attribution-1995 +short_name: CERN Attribution 1995 +name: CERN Attribution 1995 +category: Permissive +owner: CERN +homepage_url: https://github.com/w3c/libwww/blob/master/COPYRIGH +spdx_license_key: LicenseRef-scancode-cern-attribution-1995 +faq_url: https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf +--- + This product includes computer software created and made available by CERN. This acknowledgment shall be mentioned in full in any product which includes the CERN computer software included herein or parts thereof. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cern-attribution-1995.yml b/src/licensedcode/data/licenses/cern-attribution-1995.yml deleted file mode 100644 index f0ed3503342..00000000000 --- a/src/licensedcode/data/licenses/cern-attribution-1995.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: cern-attribution-1995 -short_name: CERN Attribution 1995 -name: CERN Attribution 1995 -category: Permissive -owner: CERN -homepage_url: https://github.com/w3c/libwww/blob/master/COPYRIGH -spdx_license_key: LicenseRef-scancode-cern-attribution-1995 -faq_url: https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf diff --git a/src/licensedcode/data/licenses/cern-ohl-1.1.LICENSE b/src/licensedcode/data/licenses/cern-ohl-1.1.LICENSE index f197ed9ccf5..1aa6562bb5e 100644 --- a/src/licensedcode/data/licenses/cern-ohl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/cern-ohl-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: cern-ohl-1.1 +short_name: CERN Open Hardware License v1.1 +name: CERN Open Hardware License v1.1 +category: Permissive +owner: CERN +homepage_url: https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1 +spdx_license_key: CERN-OHL-1.1 +other_urls: + - https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1 +ignorable_copyrights: + - copyright of CERN. +ignorable_holders: + - CERN +ignorable_urls: + - http://www.ohwr.org/ +--- + CERN OHL v1.1 2011-07-08 - CERN, Geneva, Switzerland diff --git a/src/licensedcode/data/licenses/cern-ohl-1.1.yml b/src/licensedcode/data/licenses/cern-ohl-1.1.yml deleted file mode 100644 index 73105be77c7..00000000000 --- a/src/licensedcode/data/licenses/cern-ohl-1.1.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: cern-ohl-1.1 -short_name: CERN Open Hardware License v1.1 -name: CERN Open Hardware License v1.1 -category: Permissive -owner: CERN -homepage_url: https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1 -spdx_license_key: CERN-OHL-1.1 -other_urls: - - https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1 -ignorable_copyrights: - - copyright of CERN. -ignorable_holders: - - CERN -ignorable_urls: - - http://www.ohwr.org/ diff --git a/src/licensedcode/data/licenses/cern-ohl-1.2.LICENSE b/src/licensedcode/data/licenses/cern-ohl-1.2.LICENSE index db334d45e92..8f0a321a575 100644 --- a/src/licensedcode/data/licenses/cern-ohl-1.2.LICENSE +++ b/src/licensedcode/data/licenses/cern-ohl-1.2.LICENSE @@ -1,3 +1,19 @@ +--- +key: cern-ohl-1.2 +short_name: CERN Open Hardware Licence v1.2 +name: CERN Open Hardware Licence v1.2 +category: Permissive +owner: CERN +homepage_url: https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2 +spdx_license_key: CERN-OHL-1.2 +other_urls: + - https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2 +ignorable_copyrights: + - copyright CERN. +ignorable_holders: + - CERN +--- + CERN OHL v1.2 2013-09-06 - CERN, Geneva, Switzerland diff --git a/src/licensedcode/data/licenses/cern-ohl-1.2.yml b/src/licensedcode/data/licenses/cern-ohl-1.2.yml deleted file mode 100644 index 0613a3686a8..00000000000 --- a/src/licensedcode/data/licenses/cern-ohl-1.2.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cern-ohl-1.2 -short_name: CERN Open Hardware Licence v1.2 -name: CERN Open Hardware Licence v1.2 -category: Permissive -owner: CERN -homepage_url: https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2 -spdx_license_key: CERN-OHL-1.2 -other_urls: - - https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2 -ignorable_copyrights: - - copyright CERN. -ignorable_holders: - - CERN diff --git a/src/licensedcode/data/licenses/cern-ohl-p-2.0.LICENSE b/src/licensedcode/data/licenses/cern-ohl-p-2.0.LICENSE index f19d2b7adcb..6005ac3136c 100644 --- a/src/licensedcode/data/licenses/cern-ohl-p-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cern-ohl-p-2.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: cern-ohl-p-2.0 +short_name: CERN-OHL-P-2.0 +name: CERN Open Hardware Licence Version 2 - Permissive +category: Permissive +owner: CERN +homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +spdx_license_key: CERN-OHL-P-2.0 +text_urls: + - https://ohwr.org/cern_ohl_p_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/055bd8b281d0805a3a38188838b370e1/cern_ohl_p_v2.pdf + - https://ohwr.org/project/cernohl/wikis/uploads/5a639eaec042c5584104afdbc9350245/cern_ohl_p_v2.txt +osi_url: https://opensource.org/CERN-OHL-P +faq_url: https://ohwr.org/project/cernohl/wikis/faq +other_urls: + - https://ohwr.org/project/cernohl + - https://cern-ohl.web.cern.ch/ + - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 + - https://ohwr.org/project/cernohl/wikis/uploads/0be6f561d2b4a686c5765c74be32daf9/CERN_OHL_rationale.pdf +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Permissive @@ -196,4 +221,4 @@ to the Product. 7.4 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. + specifically excluded. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cern-ohl-p-2.0.yml b/src/licensedcode/data/licenses/cern-ohl-p-2.0.yml deleted file mode 100644 index 8c3bd37c489..00000000000 --- a/src/licensedcode/data/licenses/cern-ohl-p-2.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: cern-ohl-p-2.0 -short_name: CERN-OHL-P-2.0 -name: CERN Open Hardware Licence Version 2 - Permissive -category: Permissive -owner: CERN -homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 -spdx_license_key: CERN-OHL-P-2.0 -text_urls: - - https://ohwr.org/cern_ohl_p_v2.txt - - https://ohwr.org/project/cernohl/wikis/uploads/055bd8b281d0805a3a38188838b370e1/cern_ohl_p_v2.pdf - - https://ohwr.org/project/cernohl/wikis/uploads/5a639eaec042c5584104afdbc9350245/cern_ohl_p_v2.txt -osi_url: https://opensource.org/CERN-OHL-P -faq_url: https://ohwr.org/project/cernohl/wikis/faq -other_urls: - - https://ohwr.org/project/cernohl - - https://cern-ohl.web.cern.ch/ - - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 - - https://ohwr.org/project/cernohl/wikis/uploads/0be6f561d2b4a686c5765c74be32daf9/CERN_OHL_rationale.pdf -ignorable_copyrights: - - copyright CERN 2020 -ignorable_holders: - - CERN diff --git a/src/licensedcode/data/licenses/cern-ohl-s-2.0.LICENSE b/src/licensedcode/data/licenses/cern-ohl-s-2.0.LICENSE index 114486fd944..80a0bed114c 100644 --- a/src/licensedcode/data/licenses/cern-ohl-s-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cern-ohl-s-2.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: cern-ohl-s-2.0 +short_name: CERN-OHL-S-2.0 +name: CERN Open Hardware Licence Version 2 - Strongly Reciprocal +category: Copyleft +owner: CERN +homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +spdx_license_key: CERN-OHL-S-2.0 +text_urls: + - https://ohwr.org/cern_ohl_s_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/002d0b7d5066e6b3829168730237bddb/cern_ohl_s_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/ee7922912e58f8676e1d7ff841b391cb/cern_ohl_s_v2.pdf +osi_url: https://opensource.org/CERN-OHL-S +faq_url: https://ohwr.org/project/cernohl/wikis/faq +other_urls: + - https://ohwr.org/project/cernohl + - https://cern-ohl.web.cern.ch/ + - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Strongly Reciprocal @@ -286,4 +310,4 @@ subsection 3.2. 8.6 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. + specifically excluded. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cern-ohl-s-2.0.yml b/src/licensedcode/data/licenses/cern-ohl-s-2.0.yml deleted file mode 100644 index 5053e1f6e22..00000000000 --- a/src/licensedcode/data/licenses/cern-ohl-s-2.0.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: cern-ohl-s-2.0 -short_name: CERN-OHL-S-2.0 -name: CERN Open Hardware Licence Version 2 - Strongly Reciprocal -category: Copyleft -owner: CERN -homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 -spdx_license_key: CERN-OHL-S-2.0 -text_urls: - - https://ohwr.org/cern_ohl_s_v2.txt - - https://ohwr.org/project/cernohl/wikis/uploads/002d0b7d5066e6b3829168730237bddb/cern_ohl_s_v2.txt - - https://ohwr.org/project/cernohl/wikis/uploads/ee7922912e58f8676e1d7ff841b391cb/cern_ohl_s_v2.pdf -osi_url: https://opensource.org/CERN-OHL-S -faq_url: https://ohwr.org/project/cernohl/wikis/faq -other_urls: - - https://ohwr.org/project/cernohl - - https://cern-ohl.web.cern.ch/ - - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 -ignorable_copyrights: - - copyright CERN 2020 -ignorable_holders: - - CERN diff --git a/src/licensedcode/data/licenses/cern-ohl-w-2.0.LICENSE b/src/licensedcode/data/licenses/cern-ohl-w-2.0.LICENSE index c2eacdf475a..c86412a463c 100644 --- a/src/licensedcode/data/licenses/cern-ohl-w-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cern-ohl-w-2.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: cern-ohl-w-2.0 +short_name: CERN-OHL-W-2.0 +name: CERN Open Hardware Licence Version 2 - Weakly Reciprocal +category: Copyleft Limited +owner: CERN +homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +spdx_license_key: CERN-OHL-W-2.0 +text_urls: + - https://ohwr.org/cern_ohl_w_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/10946616b8cbcdef2274a58d9f3a98fb/cern_ohl_w_v2.txt + - https://ohwr.org/project/cernohl/wikis/uploads/b94a1a92b29984226c56a0dd4dca0d39/cern_ohl_w_v2.pdf +osi_url: https://opensource.org/CERN-OHL-W +faq_url: https://ohwr.org/project/cernohl/wikis/faq +other_urls: + - https://ohwr.org/project/cernohl + - https://cern-ohl.web.cern.ch/ + - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Weakly Reciprocal @@ -308,4 +332,4 @@ subsection 3.2. 8.6 This Licence shall not be enforceable except by a Licensor acting as such, and third party beneficiary rights are - specifically excluded. + specifically excluded. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cern-ohl-w-2.0.yml b/src/licensedcode/data/licenses/cern-ohl-w-2.0.yml deleted file mode 100644 index 35490aa346f..00000000000 --- a/src/licensedcode/data/licenses/cern-ohl-w-2.0.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: cern-ohl-w-2.0 -short_name: CERN-OHL-W-2.0 -name: CERN Open Hardware Licence Version 2 - Weakly Reciprocal -category: Copyleft Limited -owner: CERN -homepage_url: https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 -spdx_license_key: CERN-OHL-W-2.0 -text_urls: - - https://ohwr.org/cern_ohl_w_v2.txt - - https://ohwr.org/project/cernohl/wikis/uploads/10946616b8cbcdef2274a58d9f3a98fb/cern_ohl_w_v2.txt - - https://ohwr.org/project/cernohl/wikis/uploads/b94a1a92b29984226c56a0dd4dca0d39/cern_ohl_w_v2.pdf -osi_url: https://opensource.org/CERN-OHL-W -faq_url: https://ohwr.org/project/cernohl/wikis/faq -other_urls: - - https://ohwr.org/project/cernohl - - https://cern-ohl.web.cern.ch/ - - https://ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2 -ignorable_copyrights: - - copyright CERN 2020 -ignorable_holders: - - CERN diff --git a/src/licensedcode/data/licenses/cgic.LICENSE b/src/licensedcode/data/licenses/cgic.LICENSE index f005a6b7287..3dab6225f0f 100644 --- a/src/licensedcode/data/licenses/cgic.LICENSE +++ b/src/licensedcode/data/licenses/cgic.LICENSE @@ -1,3 +1,17 @@ +--- +key: cgic +short_name: CGIC License +name: CGIC License +category: Permissive +owner: Boutell.Com +spdx_license_key: LicenseRef-scancode-cgic +ignorable_copyrights: + - copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Thomas Boutell and Boutell.Com, + Inc +ignorable_holders: + - Thomas Boutell and Boutell.Com, Inc +--- + CGIC License Terms ------------------ Basic License diff --git a/src/licensedcode/data/licenses/cgic.yml b/src/licensedcode/data/licenses/cgic.yml deleted file mode 100644 index 805afd1ee76..00000000000 --- a/src/licensedcode/data/licenses/cgic.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cgic -short_name: CGIC License -name: CGIC License -category: Permissive -owner: Boutell.Com -spdx_license_key: LicenseRef-scancode-cgic -ignorable_copyrights: - - copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Thomas Boutell and Boutell.Com, - Inc -ignorable_holders: - - Thomas Boutell and Boutell.Com, Inc diff --git a/src/licensedcode/data/licenses/chartdirector-6.0.LICENSE b/src/licensedcode/data/licenses/chartdirector-6.0.LICENSE index 93bccb00fb9..543b2779bda 100644 --- a/src/licensedcode/data/licenses/chartdirector-6.0.LICENSE +++ b/src/licensedcode/data/licenses/chartdirector-6.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: chartdirector-6.0 +short_name: ChartDirector 6.0 License Agreement +name: ChartDirector 6.0 License Agreement +category: Proprietary Free +owner: Advanced Software Engineering Ltd. +homepage_url: http://www.advsofteng.com/doc/cdcomdoc/license.htm +spdx_license_key: LicenseRef-scancode-chartdirector-6.0 +other_urls: + - http://www.advsofteng.com/ +ignorable_copyrights: + - (c) 2015 Advanced Software Engineering Limited +ignorable_holders: + - Advanced Software Engineering Limited +ignorable_authors: + - using code from the Independent JPEG Group and the FreeType team +ignorable_urls: + - http://www.advsofteng.com/ +--- + ChartDirector 6.0 (ASP/COM/VB Edition) License Agreement You should carefully read the following terms and conditions before using the ChartDirector software. Your use of the ChartDirector software indicates your acceptance of this license agreement. Do not use the ChartDirector software if you do not agree with this license agreement. diff --git a/src/licensedcode/data/licenses/chartdirector-6.0.yml b/src/licensedcode/data/licenses/chartdirector-6.0.yml deleted file mode 100644 index 9269b7c36a9..00000000000 --- a/src/licensedcode/data/licenses/chartdirector-6.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: chartdirector-6.0 -short_name: ChartDirector 6.0 License Agreement -name: ChartDirector 6.0 License Agreement -category: Proprietary Free -owner: Advanced Software Engineering Ltd. -homepage_url: http://www.advsofteng.com/doc/cdcomdoc/license.htm -spdx_license_key: LicenseRef-scancode-chartdirector-6.0 -other_urls: - - http://www.advsofteng.com/ -ignorable_copyrights: - - (c) 2015 Advanced Software Engineering Limited -ignorable_holders: - - Advanced Software Engineering Limited -ignorable_authors: - - using code from the Independent JPEG Group and the FreeType team -ignorable_urls: - - http://www.advsofteng.com/ diff --git a/src/licensedcode/data/licenses/chelsio-linux-firmware.LICENSE b/src/licensedcode/data/licenses/chelsio-linux-firmware.LICENSE index c38a0a58389..05e904152bc 100644 --- a/src/licensedcode/data/licenses/chelsio-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/chelsio-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: chelsio-linux-firmware +short_name: Chelsio Linux Firmware License +name: Chelsio Linux Firmware License +category: Proprietary Free +owner: Chelsio +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.chelsio_firmware +spdx_license_key: LicenseRef-scancode-chelsio-linux-firmware +--- + Chelsio Communication Terminator 4/5 ethernet controller firmware Redistribution and use in binary form, without modification, are permitted provided diff --git a/src/licensedcode/data/licenses/chelsio-linux-firmware.yml b/src/licensedcode/data/licenses/chelsio-linux-firmware.yml deleted file mode 100644 index 1d657f22871..00000000000 --- a/src/licensedcode/data/licenses/chelsio-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: chelsio-linux-firmware -short_name: Chelsio Linux Firmware License -name: Chelsio Linux Firmware License -category: Proprietary Free -owner: Chelsio -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.chelsio_firmware -spdx_license_key: LicenseRef-scancode-chelsio-linux-firmware diff --git a/src/licensedcode/data/licenses/chicken-dl-0.2.LICENSE b/src/licensedcode/data/licenses/chicken-dl-0.2.LICENSE index aafb2001535..09384cf3749 100644 --- a/src/licensedcode/data/licenses/chicken-dl-0.2.LICENSE +++ b/src/licensedcode/data/licenses/chicken-dl-0.2.LICENSE @@ -1,3 +1,15 @@ +--- +key: chicken-dl-0.2 +short_name: Chicken Dance License v0.2 +name: Chicken Dance v0.2 +category: Permissive +owner: Andrew "Tuna" Harris +homepage_url: https://github.com/supertunaman/cdl/blob/master/COPYING +spdx_license_key: LicenseRef-scancode-chicken-dl-0.2 +ignorable_urls: + - http://supertunaman.com/cdl/ +--- + Chicken Dance License v0.2 http://supertunaman.com/cdl/ diff --git a/src/licensedcode/data/licenses/chicken-dl-0.2.yml b/src/licensedcode/data/licenses/chicken-dl-0.2.yml deleted file mode 100644 index e5eb9e0adbc..00000000000 --- a/src/licensedcode/data/licenses/chicken-dl-0.2.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: chicken-dl-0.2 -short_name: Chicken Dance License v0.2 -name: Chicken Dance v0.2 -category: Permissive -owner: Andrew "Tuna" Harris -homepage_url: https://github.com/supertunaman/cdl/blob/master/COPYING -spdx_license_key: LicenseRef-scancode-chicken-dl-0.2 -ignorable_urls: - - http://supertunaman.com/cdl/ diff --git a/src/licensedcode/data/licenses/chris-maunder.LICENSE b/src/licensedcode/data/licenses/chris-maunder.LICENSE index 8653d5c9185..0b9e6d92231 100644 --- a/src/licensedcode/data/licenses/chris-maunder.LICENSE +++ b/src/licensedcode/data/licenses/chris-maunder.LICENSE @@ -1,3 +1,15 @@ +--- +key: chris-maunder +short_name: Chris Maunder License +name: Chris Maunder License +category: Permissive +owner: Unspecified +homepage_url: http://www.codeproject.com/Members/Chris-Maunder +spdx_license_key: LicenseRef-scancode-chris-maunder +other_urls: + - http://www.codeproject.com/Members/Chris-Maunder +--- + This code may be used in compiled form in any way you desire. This file may be redistributed unmodified by any means PROVIDING it is not sold for profit without the authors written consent, and providing that this notice and the diff --git a/src/licensedcode/data/licenses/chris-maunder.yml b/src/licensedcode/data/licenses/chris-maunder.yml deleted file mode 100644 index 259cc406642..00000000000 --- a/src/licensedcode/data/licenses/chris-maunder.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: chris-maunder -short_name: Chris Maunder License -name: Chris Maunder License -category: Permissive -owner: Unspecified -homepage_url: http://www.codeproject.com/Members/Chris-Maunder -spdx_license_key: LicenseRef-scancode-chris-maunder -other_urls: - - http://www.codeproject.com/Members/Chris-Maunder diff --git a/src/licensedcode/data/licenses/chris-stoy.LICENSE b/src/licensedcode/data/licenses/chris-stoy.LICENSE index 9640d875f0c..1b4e669743a 100644 --- a/src/licensedcode/data/licenses/chris-stoy.LICENSE +++ b/src/licensedcode/data/licenses/chris-stoy.LICENSE @@ -1,3 +1,12 @@ +--- +key: chris-stoy +short_name: Chris Stoy Attribution License +name: Chris Stoy Attribution License +category: Permissive +owner: Chris Stoy +spdx_license_key: LicenseRef-scancode-chris-stoy +--- + You are free to use this code in all commercial and non-commercial applications as long as this copyright message is left intact. Use this code at your own risk. I take no responsibility if it should fail to diff --git a/src/licensedcode/data/licenses/chris-stoy.yml b/src/licensedcode/data/licenses/chris-stoy.yml deleted file mode 100644 index 92c73531459..00000000000 --- a/src/licensedcode/data/licenses/chris-stoy.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: chris-stoy -short_name: Chris Stoy Attribution License -name: Chris Stoy Attribution License -category: Permissive -owner: Chris Stoy -spdx_license_key: LicenseRef-scancode-chris-stoy diff --git a/src/licensedcode/data/licenses/christopher-velazquez.LICENSE b/src/licensedcode/data/licenses/christopher-velazquez.LICENSE index c986444b64a..04188409e11 100644 --- a/src/licensedcode/data/licenses/christopher-velazquez.LICENSE +++ b/src/licensedcode/data/licenses/christopher-velazquez.LICENSE @@ -1,2 +1,12 @@ +--- +key: christopher-velazquez +short_name: Christopher Velazquez License +name: Christopher Velazquez License +category: Proprietary Free +owner: Christopher Velazquez +homepage_url: https://web.archive.org/web/20080224132035/http://vdev.net/vbprofiler/snsource.htm +spdx_license_key: LicenseRef-scancode-christopher-velazquez +--- + Any duplication of the content on this web site without permission of the author is strictly prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/christopher-velazquez.yml b/src/licensedcode/data/licenses/christopher-velazquez.yml deleted file mode 100644 index f8a54a7c5d8..00000000000 --- a/src/licensedcode/data/licenses/christopher-velazquez.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: christopher-velazquez -short_name: Christopher Velazquez License -name: Christopher Velazquez License -category: Proprietary Free -owner: Christopher Velazquez -homepage_url: https://web.archive.org/web/20080224132035/http://vdev.net/vbprofiler/snsource.htm -spdx_license_key: LicenseRef-scancode-christopher-velazquez diff --git a/src/licensedcode/data/licenses/classic-vb.LICENSE b/src/licensedcode/data/licenses/classic-vb.LICENSE index 58cdd0eb1bb..d191244290d 100644 --- a/src/licensedcode/data/licenses/classic-vb.LICENSE +++ b/src/licensedcode/data/licenses/classic-vb.LICENSE @@ -1,3 +1,15 @@ +--- +key: classic-vb +short_name: Classic VB License +name: Classic VB License +category: Permissive +owner: Karl Peterson +homepage_url: http://vb.mvps.org/license.asp +spdx_license_key: LicenseRef-scancode-classic-vb +text_urls: + - http://vb.mvps.org/license.asp +--- + Policy All code samples, tools, articles, and other content provided by this website is diff --git a/src/licensedcode/data/licenses/classic-vb.yml b/src/licensedcode/data/licenses/classic-vb.yml deleted file mode 100644 index 740a4b5b99c..00000000000 --- a/src/licensedcode/data/licenses/classic-vb.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: classic-vb -short_name: Classic VB License -name: Classic VB License -category: Permissive -owner: Karl Peterson -homepage_url: http://vb.mvps.org/license.asp -spdx_license_key: LicenseRef-scancode-classic-vb -text_urls: - - http://vb.mvps.org/license.asp diff --git a/src/licensedcode/data/licenses/classpath-exception-2.0.LICENSE b/src/licensedcode/data/licenses/classpath-exception-2.0.LICENSE index 63ae6d171e2..f693e1be57d 100644 --- a/src/licensedcode/data/licenses/classpath-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/classpath-exception-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: classpath-exception-2.0 +short_name: Classpath exception to GPL 2.0 or later +name: Classpath exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/software/classpath/ +is_exception: yes +spdx_license_key: Classpath-exception-2.0 +text_urls: + - http://www.gnu.org/software/classpath/license.html +other_urls: + - http://en.wikipedia.org/wiki/GPL_linking_exception + - https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception +--- + Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. @@ -11,4 +27,4 @@ conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement -from your version. +from your version. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/classpath-exception-2.0.yml b/src/licensedcode/data/licenses/classpath-exception-2.0.yml deleted file mode 100644 index 4b7547c9267..00000000000 --- a/src/licensedcode/data/licenses/classpath-exception-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: classpath-exception-2.0 -short_name: Classpath exception to GPL 2.0 or later -name: Classpath exception to GPL 2.0 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/software/classpath/ -is_exception: yes -spdx_license_key: Classpath-exception-2.0 -text_urls: - - http://www.gnu.org/software/classpath/license.html -other_urls: - - http://en.wikipedia.org/wiki/GPL_linking_exception - - https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception diff --git a/src/licensedcode/data/licenses/classworlds.LICENSE b/src/licensedcode/data/licenses/classworlds.LICENSE index 1ac7b84a8d8..a3b38a1d91c 100644 --- a/src/licensedcode/data/licenses/classworlds.LICENSE +++ b/src/licensedcode/data/licenses/classworlds.LICENSE @@ -1,3 +1,18 @@ +--- +key: classworlds +is_deprecated: yes +short_name: Classworlds License +name: Classworlds License +category: Permissive +owner: Codehaus +homepage_url: http://classworlds.codehaus.org/license.html +notes: | + Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4 + is too broad, making it Free but GPL-incompatible. replaced by dom4j +text_urls: + - https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/classworlds.yml b/src/licensedcode/data/licenses/classworlds.yml deleted file mode 100644 index 2160c27d364..00000000000 --- a/src/licensedcode/data/licenses/classworlds.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: classworlds -is_deprecated: yes -short_name: Classworlds License -name: Classworlds License -category: Permissive -owner: Codehaus -homepage_url: http://classworlds.codehaus.org/license.html -notes: | - Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4 - is too broad, making it Free but GPL-incompatible. replaced by dom4j -text_urls: - - https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License diff --git a/src/licensedcode/data/licenses/clause-6-exception-lgpl-2.1.LICENSE b/src/licensedcode/data/licenses/clause-6-exception-lgpl-2.1.LICENSE index 80a68b60606..dd5ce692894 100644 --- a/src/licensedcode/data/licenses/clause-6-exception-lgpl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/clause-6-exception-lgpl-2.1.LICENSE @@ -1,3 +1,14 @@ +--- +key: clause-6-exception-lgpl-2.1 +short_name: Clause 6 Exception to LGPL 2.1 +name: Clause 6 Exception to LGPL 2.1 +category: Copyleft Limited +owner: Malcolm Wallace +homepage_url: http://hackage.haskell.org/package/HaXml-1.25.4/src/COPYRIGHT +is_exception: yes +spdx_license_key: LicenseRef-scancode-clause-6-exception-lgpl-2.1 +--- + As a relaxation of clause 6 of the LGPL, the copyright holders of this library give permission to use, copy, link, modify, and distribute, binary-only object-code versions of an executable linked with the diff --git a/src/licensedcode/data/licenses/clause-6-exception-lgpl-2.1.yml b/src/licensedcode/data/licenses/clause-6-exception-lgpl-2.1.yml deleted file mode 100644 index 971a2262a17..00000000000 --- a/src/licensedcode/data/licenses/clause-6-exception-lgpl-2.1.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: clause-6-exception-lgpl-2.1 -short_name: Clause 6 Exception to LGPL 2.1 -name: Clause 6 Exception to LGPL 2.1 -category: Copyleft Limited -owner: Malcolm Wallace -homepage_url: http://hackage.haskell.org/package/HaXml-1.25.4/src/COPYRIGHT -is_exception: yes -spdx_license_key: LicenseRef-scancode-clause-6-exception-lgpl-2.1 diff --git a/src/licensedcode/data/licenses/clear-bsd-1-clause.LICENSE b/src/licensedcode/data/licenses/clear-bsd-1-clause.LICENSE index d737c03d90c..778ea7486a8 100644 --- a/src/licensedcode/data/licenses/clear-bsd-1-clause.LICENSE +++ b/src/licensedcode/data/licenses/clear-bsd-1-clause.LICENSE @@ -1,3 +1,15 @@ +--- +key: clear-bsd-1-clause +short_name: Clear BSD 1-Clause License +name: Clear BSD 1-Clause License +category: Permissive +owner: MetaCarta +homepage_url: https://github.com/spate/glimage/blob/master/LICENSE +notes: a rare variant seldom seen +spdx_license_key: LicenseRef-scancode-clear-bsd-1-clause +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: @@ -17,5 +29,4 @@ 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. - +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/clear-bsd-1-clause.yml b/src/licensedcode/data/licenses/clear-bsd-1-clause.yml deleted file mode 100644 index 7adf356b394..00000000000 --- a/src/licensedcode/data/licenses/clear-bsd-1-clause.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: clear-bsd-1-clause -short_name: Clear BSD 1-Clause License -name: Clear BSD 1-Clause License -category: Permissive -owner: MetaCarta -homepage_url: https://github.com/spate/glimage/blob/master/LICENSE -notes: a rare variant seldom seen -spdx_license_key: LicenseRef-scancode-clear-bsd-1-clause -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/clear-bsd.LICENSE b/src/licensedcode/data/licenses/clear-bsd.LICENSE index 0104cc22aca..c93771d5caa 100644 --- a/src/licensedcode/data/licenses/clear-bsd.LICENSE +++ b/src/licensedcode/data/licenses/clear-bsd.LICENSE @@ -1,3 +1,16 @@ +--- +key: clear-bsd +short_name: Clear BSD License +name: Clear BSD License +category: Permissive +owner: MetaCarta +homepage_url: http://labs.metacarta.com/license-explanation.html +spdx_license_key: BSD-3-Clause-Clear +text_urls: + - http://labs.metacarta.com/license-explanation.html#license +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/clear-bsd.yml b/src/licensedcode/data/licenses/clear-bsd.yml deleted file mode 100644 index bae4be120a8..00000000000 --- a/src/licensedcode/data/licenses/clear-bsd.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: clear-bsd -short_name: Clear BSD License -name: Clear BSD License -category: Permissive -owner: MetaCarta -homepage_url: http://labs.metacarta.com/license-explanation.html -spdx_license_key: BSD-3-Clause-Clear -text_urls: - - http://labs.metacarta.com/license-explanation.html#license -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/click-license.LICENSE b/src/licensedcode/data/licenses/click-license.LICENSE index a412f65edb2..f704c3b6014 100644 --- a/src/licensedcode/data/licenses/click-license.LICENSE +++ b/src/licensedcode/data/licenses/click-license.LICENSE @@ -1,3 +1,14 @@ +--- +key: click-license +short_name: Click License +name: Click License +category: Permissive +owner: Unspecified +homepage_url: https://changelogs.ubuntu.com/changelogs/pool/main/t/t1utils/t1utils_1.39-2/copyright +spdx_license_key: LicenseRef-scancode-click-license +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/licenses/click-license.yml b/src/licensedcode/data/licenses/click-license.yml deleted file mode 100644 index 603a5ed09d6..00000000000 --- a/src/licensedcode/data/licenses/click-license.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: click-license -short_name: Click License -name: Click License -category: Permissive -owner: Unspecified -homepage_url: https://changelogs.ubuntu.com/changelogs/pool/main/t/t1utils/t1utils_1.39-2/copyright -spdx_license_key: LicenseRef-scancode-click-license -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/clisp-exception-2.0.LICENSE b/src/licensedcode/data/licenses/clisp-exception-2.0.LICENSE index 6bc7777a2a1..ef4dd3b43a8 100644 --- a/src/licensedcode/data/licenses/clisp-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/clisp-exception-2.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: clisp-exception-2.0 +short_name: CLISP Exception to GPL 2.0 +name: CLISP Exception to GPL 2.0 +category: Copyleft Limited +owner: Clisp +homepage_url: https://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT +is_exception: yes +spdx_license_key: CLISP-exception-2.0 +text_urls: + - http://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + This copyright does NOT cover user programs that run in CLISP and third-party packages not part of CLISP, if a) They only reference external symbols in CLISP's public packages that define API also provided by many other Common Lisp diff --git a/src/licensedcode/data/licenses/clisp-exception-2.0.yml b/src/licensedcode/data/licenses/clisp-exception-2.0.yml deleted file mode 100644 index 91b5cc0e9ed..00000000000 --- a/src/licensedcode/data/licenses/clisp-exception-2.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: clisp-exception-2.0 -short_name: CLISP Exception to GPL 2.0 -name: CLISP Exception to GPL 2.0 -category: Copyleft Limited -owner: Clisp -homepage_url: https://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT -is_exception: yes -spdx_license_key: CLISP-exception-2.0 -text_urls: - - http://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/licenses/cloudera-express.LICENSE b/src/licensedcode/data/licenses/cloudera-express.LICENSE index a16f91dd23b..f5f791e17f4 100644 --- a/src/licensedcode/data/licenses/cloudera-express.LICENSE +++ b/src/licensedcode/data/licenses/cloudera-express.LICENSE @@ -1,3 +1,15 @@ +--- +key: cloudera-express +short_name: Cloudera Express License +name: Cloudera Express License +category: Proprietary Free +owner: Cloudera +spdx_license_key: LicenseRef-scancode-cloudera-express +ignorable_urls: + - http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT + - http://www.google.com/analytics/terms/us.html +--- + Cloudera Express License END USER LICENSE TERMS AND CONDITIONS @@ -53,4 +65,4 @@ THE "EFFECTIVE DATE" OF THIS AGREEMENT IS THE DATE YOU FIRST DOWNLOAD ANY OF THE 14. In the event that Customer uses the functionality in the Product for the purposes of downloading and installing any Cloudera-provided public beta software, such beta software will be subject either to the Apache 2 license, or to the terms and conditions of the Public Beta License located here: (http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT) as applicable. -15. Miscellaneous. This Agreement will be governed by and construed in accordance with the laws of the State of California applicable to agreements made and to be entirely performed within the State of California, without resort to its conflict of law provisions. The parties agree that any action at law or in equity arising out of or relating to this Agreement will be filed only in the state and federal courts located in Santa Clara County, and the parties hereby irrevocably and unconditionally consent and submit to the exclusive jurisdiction of such courts over any suit, action or proceeding arising out of this Agy. Upon such determination that any provision is invalid, illegal, or incapable of being enforced, the parties will negotiate in good faith to modify this Agreement so as to effect the original intent of the parties as closely as possible in an acceptable manner to the end that the transactions contemplated hereby are fulfilled. Except for payments due under this Agreement, neither party will be responsible for any failure to perform or delay attributable in whole or in part to any cause beyond its reasonable control, including but not limited to acts of God (fire, storm, floods, earthquakes, etc.), civil disturbances, disruption of telecommunications, disruption of power or other essential services, interruption or termination of service by any service providers being used by Cloudera to link its servers to the Internet, labor disturbances, vandalism, cable cut, computer viruses or other similar occurrences, or any malicious or unlawful acts of any third-party (each a "Force Majeure Event"). In the event of any such delay the date of delivery will be deferred for a period equal to the time lost by reason of the delay. Any notice or communication required or permitted to be given hereunder must be in writing signed or authorized by the party giving notice, and may be delivered by hand, deposited with an overnight courier, sent by confirmed email, confirmed facsimile or mailed by registered or certified mail, return receipt requested, postage prepaid, in each case to the address below or at such other address as may hereafter be furnished in accordance with this Section. No modification, addition or deletion, or waiver of any rights under this Agreement will be binding on a party unless made in an agreement clearly understood by the parties to be a modification or waiver and signed by a duly authorized representative of each party. No failure or delay (in whole or in part) on the part of a party to exercise any right or remedy hereunder will operate as a waiver thereof or effect any other right or remedy. All rights and remedies hereunder are cumulative and are not exclusive of any other rights or remedies provided hereunder or by law. The waiver of one breach or default or any delay in exercising any rights will not constitute a waiver of any subsequent breach or default. +15. Miscellaneous. This Agreement will be governed by and construed in accordance with the laws of the State of California applicable to agreements made and to be entirely performed within the State of California, without resort to its conflict of law provisions. The parties agree that any action at law or in equity arising out of or relating to this Agreement will be filed only in the state and federal courts located in Santa Clara County, and the parties hereby irrevocably and unconditionally consent and submit to the exclusive jurisdiction of such courts over any suit, action or proceeding arising out of this Agy. Upon such determination that any provision is invalid, illegal, or incapable of being enforced, the parties will negotiate in good faith to modify this Agreement so as to effect the original intent of the parties as closely as possible in an acceptable manner to the end that the transactions contemplated hereby are fulfilled. Except for payments due under this Agreement, neither party will be responsible for any failure to perform or delay attributable in whole or in part to any cause beyond its reasonable control, including but not limited to acts of God (fire, storm, floods, earthquakes, etc.), civil disturbances, disruption of telecommunications, disruption of power or other essential services, interruption or termination of service by any service providers being used by Cloudera to link its servers to the Internet, labor disturbances, vandalism, cable cut, computer viruses or other similar occurrences, or any malicious or unlawful acts of any third-party (each a "Force Majeure Event"). In the event of any such delay the date of delivery will be deferred for a period equal to the time lost by reason of the delay. Any notice or communication required or permitted to be given hereunder must be in writing signed or authorized by the party giving notice, and may be delivered by hand, deposited with an overnight courier, sent by confirmed email, confirmed facsimile or mailed by registered or certified mail, return receipt requested, postage prepaid, in each case to the address below or at such other address as may hereafter be furnished in accordance with this Section. No modification, addition or deletion, or waiver of any rights under this Agreement will be binding on a party unless made in an agreement clearly understood by the parties to be a modification or waiver and signed by a duly authorized representative of each party. No failure or delay (in whole or in part) on the part of a party to exercise any right or remedy hereunder will operate as a waiver thereof or effect any other right or remedy. All rights and remedies hereunder are cumulative and are not exclusive of any other rights or remedies provided hereunder or by law. The waiver of one breach or default or any delay in exercising any rights will not constitute a waiver of any subsequent breach or default. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cloudera-express.yml b/src/licensedcode/data/licenses/cloudera-express.yml deleted file mode 100644 index 07216e9700a..00000000000 --- a/src/licensedcode/data/licenses/cloudera-express.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cloudera-express -short_name: Cloudera Express License -name: Cloudera Express License -category: Proprietary Free -owner: Cloudera -spdx_license_key: LicenseRef-scancode-cloudera-express -ignorable_urls: - - http://ccp.cloudera.com/display/SUPPORT/CLOUDERA+PUBLIC+BETA+AGREEMENT - - http://www.google.com/analytics/terms/us.html diff --git a/src/licensedcode/data/licenses/cmigemo.LICENSE b/src/licensedcode/data/licenses/cmigemo.LICENSE index d3d03424c3f..30e35e8ea6a 100644 --- a/src/licensedcode/data/licenses/cmigemo.LICENSE +++ b/src/licensedcode/data/licenses/cmigemo.LICENSE @@ -1,3 +1,22 @@ +--- +key: cmigemo +short_name: C/Migemo License +name: C/Migemo License +category: Proprietary Free +owner: Fedora +homepage_url: http://fedoraproject.org/wiki/Licensing/CMigemo +spdx_license_key: LicenseRef-scancode-cmigemo +text_urls: + - http://fedoraproject.org/wiki/Licensing/CMigemo +other_urls: + - http://fedoraproject.org/wiki/Licensing/CMigemo +ignorable_authors: + - MURAOKA Taro +ignorable_emails: + - koron@tka.att.ne.jp + - mtasaka@ioa.s.u-tokyo.ac.jp +--- + THE PERMISSION CONDITION ABOUT USING C/Migemo AND Migemo DLL Since: 16-Dec-2001 diff --git a/src/licensedcode/data/licenses/cmigemo.yml b/src/licensedcode/data/licenses/cmigemo.yml deleted file mode 100644 index 6950cec6fe1..00000000000 --- a/src/licensedcode/data/licenses/cmigemo.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: cmigemo -short_name: C/Migemo License -name: C/Migemo License -category: Proprietary Free -owner: Fedora -homepage_url: http://fedoraproject.org/wiki/Licensing/CMigemo -spdx_license_key: LicenseRef-scancode-cmigemo -text_urls: - - http://fedoraproject.org/wiki/Licensing/CMigemo -other_urls: - - http://fedoraproject.org/wiki/Licensing/CMigemo -ignorable_authors: - - MURAOKA Taro -ignorable_emails: - - koron@tka.att.ne.jp - - mtasaka@ioa.s.u-tokyo.ac.jp diff --git a/src/licensedcode/data/licenses/cmr-no.LICENSE b/src/licensedcode/data/licenses/cmr-no.LICENSE index 6dce0aca5f9..200f0c1b3bf 100644 --- a/src/licensedcode/data/licenses/cmr-no.LICENSE +++ b/src/licensedcode/data/licenses/cmr-no.LICENSE @@ -1,7 +1,17 @@ +--- +key: cmr-no +short_name: CMR License +name: Christian Michelsen Research AS License +category: Permissive +owner: CMR - Christian Michelsen Research AS +is_deprecated: yes +notes: replaced by mit-old-style +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Christian Michelsen Research AS makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied warranty. +any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cmr-no.yml b/src/licensedcode/data/licenses/cmr-no.yml deleted file mode 100644 index 5f7bf7b8c48..00000000000 --- a/src/licensedcode/data/licenses/cmr-no.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cmr-no -short_name: CMR License -name: Christian Michelsen Research AS License -category: Permissive -owner: CMR - Christian Michelsen Research AS -is_deprecated: yes -notes: replaced by mit-old-style diff --git a/src/licensedcode/data/licenses/cmu-computing-services.LICENSE b/src/licensedcode/data/licenses/cmu-computing-services.LICENSE index 2d88c41110f..469cace7cef 100644 --- a/src/licensedcode/data/licenses/cmu-computing-services.LICENSE +++ b/src/licensedcode/data/licenses/cmu-computing-services.LICENSE @@ -1,3 +1,22 @@ +--- +key: cmu-computing-services +short_name: CMU Computing Services License +name: Carnegie Mellon Computing Services License +category: Permissive +owner: Carnegie Mellon University +homepage_url: http://www.cmu.edu/computing/ +spdx_license_key: LicenseRef-scancode-cmu-computing-services +text_urls: + - http://cyrusimap.org/mediawiki/index.php/Downloads#Licensing +minimum_coverage: 70 +ignorable_authors: + - Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/) +ignorable_urls: + - http://www.cmu.edu/computing +ignorable_emails: + - tech-transfer@andrew.cmu.edu +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/cmu-computing-services.yml b/src/licensedcode/data/licenses/cmu-computing-services.yml deleted file mode 100644 index 22f8d6d055b..00000000000 --- a/src/licensedcode/data/licenses/cmu-computing-services.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: cmu-computing-services -short_name: CMU Computing Services License -name: Carnegie Mellon Computing Services License -category: Permissive -owner: Carnegie Mellon University -homepage_url: http://www.cmu.edu/computing/ -spdx_license_key: LicenseRef-scancode-cmu-computing-services -text_urls: - - http://cyrusimap.org/mediawiki/index.php/Downloads#Licensing -minimum_coverage: 70 -ignorable_authors: - - Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/) -ignorable_urls: - - http://www.cmu.edu/computing -ignorable_emails: - - tech-transfer@andrew.cmu.edu diff --git a/src/licensedcode/data/licenses/cmu-mit.LICENSE b/src/licensedcode/data/licenses/cmu-mit.LICENSE index 5ec2c48fdc2..e3892afa01d 100644 --- a/src/licensedcode/data/licenses/cmu-mit.LICENSE +++ b/src/licensedcode/data/licenses/cmu-mit.LICENSE @@ -1,3 +1,12 @@ +--- +key: cmu-mit +short_name: CMU MIT-style +name: Carnegie Mellon UC Regents MIT-style License +category: Permissive +owner: Carnegie Mellon University +spdx_license_key: LicenseRef-scancode-cmu-mit +--- + Permission to use, copy, modify, and distribute this software and its documentation is hereby granted (including for commercial or for-profit use), provided that both the copyright notice and this @@ -22,4 +31,4 @@ DAMAGE. Carnegie Mellon encourages (but does not require) users of this software to return any improvements or extensions that they make, and to grant Carnegie Mellon the rights to redistribute these -changes without encumbrance. +changes without encumbrance. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cmu-mit.yml b/src/licensedcode/data/licenses/cmu-mit.yml deleted file mode 100644 index 885e0c8cb9a..00000000000 --- a/src/licensedcode/data/licenses/cmu-mit.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: cmu-mit -short_name: CMU MIT-style -name: Carnegie Mellon UC Regents MIT-style License -category: Permissive -owner: Carnegie Mellon University -spdx_license_key: LicenseRef-scancode-cmu-mit diff --git a/src/licensedcode/data/licenses/cmu-simple.LICENSE b/src/licensedcode/data/licenses/cmu-simple.LICENSE index a9556c6285c..6c7f4f1eb2f 100644 --- a/src/licensedcode/data/licenses/cmu-simple.LICENSE +++ b/src/licensedcode/data/licenses/cmu-simple.LICENSE @@ -1,4 +1,15 @@ +--- +key: cmu-simple +short_name: CMU Simple License +name: Carnegie Mellon Simple License +category: Permissive +owner: Carnegie Mellon University +notes: This is a simplified variant of license with a text otherwise borrowed from the cmu-template + license +spdx_license_key: LicenseRef-scancode-cmu-simple +--- + Permission to use, copy, modify, and distribute this software and its documentation is hereby granted, provided that the above copyright notice appears in all copies. This software is provided without any -warranty, express or implied. +warranty, express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cmu-simple.yml b/src/licensedcode/data/licenses/cmu-simple.yml deleted file mode 100644 index 56ad6c6ac1a..00000000000 --- a/src/licensedcode/data/licenses/cmu-simple.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: cmu-simple -short_name: CMU Simple License -name: Carnegie Mellon Simple License -category: Permissive -owner: Carnegie Mellon University -notes: This is a simplified variant of license with a text otherwise borrowed from the cmu-template - license -spdx_license_key: LicenseRef-scancode-cmu-simple diff --git a/src/licensedcode/data/licenses/cmu-template.LICENSE b/src/licensedcode/data/licenses/cmu-template.LICENSE index d78716617e2..ef0482e2943 100644 --- a/src/licensedcode/data/licenses/cmu-template.LICENSE +++ b/src/licensedcode/data/licenses/cmu-template.LICENSE @@ -1,3 +1,15 @@ +--- +key: cmu-template +short_name: CMU License +name: Carnegie Mellon Template License +category: Permissive +owner: Carnegie Mellon University +homepage_url: http://copyfree.org/licenses/cmu/license.txt +spdx_license_key: LicenseRef-scancode-cmu-template +text_urls: + - http://copyfree.org/licenses/cmu/license.txt +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works diff --git a/src/licensedcode/data/licenses/cmu-template.yml b/src/licensedcode/data/licenses/cmu-template.yml deleted file mode 100644 index 93d43df723d..00000000000 --- a/src/licensedcode/data/licenses/cmu-template.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cmu-template -short_name: CMU License -name: Carnegie Mellon Template License -category: Permissive -owner: Carnegie Mellon University -homepage_url: http://copyfree.org/licenses/cmu/license.txt -spdx_license_key: LicenseRef-scancode-cmu-template -text_urls: - - http://copyfree.org/licenses/cmu/license.txt diff --git a/src/licensedcode/data/licenses/cmu-uc.LICENSE b/src/licensedcode/data/licenses/cmu-uc.LICENSE index 4477deb8b71..61c5927c3c8 100644 --- a/src/licensedcode/data/licenses/cmu-uc.LICENSE +++ b/src/licensedcode/data/licenses/cmu-uc.LICENSE @@ -1,3 +1,15 @@ +--- +key: cmu-uc +short_name: CMU UC Regents License +name: Carnegie Mellon UC Regents License +category: Permissive +owner: Carnegie Mellon University +homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style +spdx_license_key: MIT-CMU +other_urls: + - https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and that both that copyright @@ -12,4 +24,4 @@ FITNESS. IN NO EVENT SHALL CMU OR THE REGENTS OF THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM THE 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. +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cmu-uc.yml b/src/licensedcode/data/licenses/cmu-uc.yml deleted file mode 100644 index 7db232b75d9..00000000000 --- a/src/licensedcode/data/licenses/cmu-uc.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cmu-uc -short_name: CMU UC Regents License -name: Carnegie Mellon UC Regents License -category: Permissive -owner: Carnegie Mellon University -homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#CMU_Style -spdx_license_key: MIT-CMU -other_urls: - - https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE diff --git a/src/licensedcode/data/licenses/cncf-corporate-cla-1.0.LICENSE b/src/licensedcode/data/licenses/cncf-corporate-cla-1.0.LICENSE index 7d13379b0ce..ee47f122709 100644 --- a/src/licensedcode/data/licenses/cncf-corporate-cla-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cncf-corporate-cla-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: cncf-corporate-cla-1.0 +short_name: CNCF Corporate CLA 1.0 +name: Software Grant and Corporate Contributor License Agreement ("Agreement") v1.0 +category: Patent License +owner: Linux Foundation +homepage_url: https://github.com/cncf/cla/blob/master/corporate-cla.pdf +spdx_license_key: LicenseRef-scancode-cncf-corporate-cla-1.0 +faq_url: https://github.com/kubernetes/community/blob/master/CLA.md +ignorable_emails: + - cla@cncf.io +--- + Cloud Native Computing Foundation A project of The Linux Foundation Software Grant and Corporate Contributor License Agreement ("Agreement") v1.0 @@ -120,4 +133,4 @@ authorized to add or remove designated employees from this list in th Schedule B [Identification of optional concurrent software grant. Would be left blank or omitted if there is no -concurrent software grant.] +concurrent software grant.] \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cncf-corporate-cla-1.0.yml b/src/licensedcode/data/licenses/cncf-corporate-cla-1.0.yml deleted file mode 100644 index ec9efab4b53..00000000000 --- a/src/licensedcode/data/licenses/cncf-corporate-cla-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: cncf-corporate-cla-1.0 -short_name: CNCF Corporate CLA 1.0 -name: Software Grant and Corporate Contributor License Agreement ("Agreement") v1.0 -category: Patent License -owner: Linux Foundation -homepage_url: https://github.com/cncf/cla/blob/master/corporate-cla.pdf -spdx_license_key: LicenseRef-scancode-cncf-corporate-cla-1.0 -faq_url: https://github.com/kubernetes/community/blob/master/CLA.md -ignorable_emails: - - cla@cncf.io diff --git a/src/licensedcode/data/licenses/cncf-individual-cla-1.0.LICENSE b/src/licensedcode/data/licenses/cncf-individual-cla-1.0.LICENSE index bce492a5942..5f123c6b31c 100644 --- a/src/licensedcode/data/licenses/cncf-individual-cla-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cncf-individual-cla-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: cncf-individual-cla-1.0 +short_name: CNCF Individual CLA 1.0 +name: CNCF Individual Contributor License Agreement ("Agreement") v1.0 +category: Patent License +owner: Linux Foundation +homepage_url: https://github.com/cncf/cla/blob/master/individual-cla.pdf +spdx_license_key: LicenseRef-scancode-cncf-individual-cla-1.0 +faq_url: https://github.com/kubernetes/community/blob/master/CLA.md +ignorable_emails: + - cla@cncf.io +--- + Cloud Native Computing Foundation A project of The Linux Foundation Individual Contributor License Agreement ("Agreement") v1.0 @@ -98,5 +111,4 @@ license agreements) of which you are personally aware, and conspicuousl that would make these representations inaccurate in any respect. -Please sign: __________________________________ Date: ________________ - +Please sign: __________________________________ Date: ________________ \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cncf-individual-cla-1.0.yml b/src/licensedcode/data/licenses/cncf-individual-cla-1.0.yml deleted file mode 100644 index 476ef5b3d46..00000000000 --- a/src/licensedcode/data/licenses/cncf-individual-cla-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: cncf-individual-cla-1.0 -short_name: CNCF Individual CLA 1.0 -name: CNCF Individual Contributor License Agreement ("Agreement") v1.0 -category: Patent License -owner: Linux Foundation -homepage_url: https://github.com/cncf/cla/blob/master/individual-cla.pdf -spdx_license_key: LicenseRef-scancode-cncf-individual-cla-1.0 -faq_url: https://github.com/kubernetes/community/blob/master/CLA.md -ignorable_emails: - - cla@cncf.io diff --git a/src/licensedcode/data/licenses/cnri-jython.LICENSE b/src/licensedcode/data/licenses/cnri-jython.LICENSE index 8fe9ad61e0a..f2bbfd522be 100644 --- a/src/licensedcode/data/licenses/cnri-jython.LICENSE +++ b/src/licensedcode/data/licenses/cnri-jython.LICENSE @@ -1,3 +1,19 @@ +--- +key: cnri-jython +short_name: CNRI Jython License +name: CNRI Jython License +category: Permissive +owner: CNRI +homepage_url: http://www.jython.org/license.html +spdx_license_key: CNRI-Jython +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 +--- + 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and using JPython version 1.1.x in source or binary form and its associated documentation as provided herein ("Software").
 diff --git a/src/licensedcode/data/licenses/cnri-jython.yml b/src/licensedcode/data/licenses/cnri-jython.yml deleted file mode 100644 index 5e48edf8717..00000000000 --- a/src/licensedcode/data/licenses/cnri-jython.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cnri-jython -short_name: CNRI Jython License -name: CNRI Jython License -category: Permissive -owner: CNRI -homepage_url: http://www.jython.org/license.html -spdx_license_key: CNRI-Jython -ignorable_copyrights: - - Copyright (c) 1996-1999 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1006 diff --git a/src/licensedcode/data/licenses/cnri-python-1.6.1.LICENSE b/src/licensedcode/data/licenses/cnri-python-1.6.1.LICENSE index 409d9a4cd7c..169078a315b 100644 --- a/src/licensedcode/data/licenses/cnri-python-1.6.1.LICENSE +++ b/src/licensedcode/data/licenses/cnri-python-1.6.1.LICENSE @@ -1,3 +1,19 @@ +--- +key: cnri-python-1.6.1 +short_name: CNRI Python 1.6.1 +name: CNRI Open Source License Agreement for Python 1.6.1 +category: Permissive +owner: CNRI +homepage_url: http://www.python.org/download/releases/1.6.1/download_win/ +spdx_license_key: CNRI-Python-GPL-Compatible +ignorable_copyrights: + - Copyright (c) 1995-2001 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 +--- + CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. diff --git a/src/licensedcode/data/licenses/cnri-python-1.6.1.yml b/src/licensedcode/data/licenses/cnri-python-1.6.1.yml deleted file mode 100644 index 1d06356b49a..00000000000 --- a/src/licensedcode/data/licenses/cnri-python-1.6.1.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cnri-python-1.6.1 -short_name: CNRI Python 1.6.1 -name: CNRI Open Source License Agreement for Python 1.6.1 -category: Permissive -owner: CNRI -homepage_url: http://www.python.org/download/releases/1.6.1/download_win/ -spdx_license_key: CNRI-Python-GPL-Compatible -ignorable_copyrights: - - Copyright (c) 1995-2001 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 diff --git a/src/licensedcode/data/licenses/cnri-python-1.6.LICENSE b/src/licensedcode/data/licenses/cnri-python-1.6.LICENSE index f9a89302b57..fff85f1fafa 100644 --- a/src/licensedcode/data/licenses/cnri-python-1.6.LICENSE +++ b/src/licensedcode/data/licenses/cnri-python-1.6.LICENSE @@ -1,3 +1,28 @@ +--- +key: cnri-python-1.6 +short_name: CNRI Python 1.6 +name: CNRI Open Source License Agreement for Python 1.6 +category: Permissive +owner: CNRI +homepage_url: http://www.handle.net/python_licenses/python1.6_9-5-00.html +notes: per SPDX.org, CNRI portion of the multi-part Python License (Python-2.0) +spdx_license_key: CNRI-Python +osi_license_key: CNRI-Python +text_urls: + - http://www.handle.net/python_licenses/python1.6_9-5-00.html +other_urls: + - http://spdx.org/licenses/CNRI-Python + - http://www.opensource.org/licenses/CNRI-Python + - https://opensource.org/licenses/CNRI-Python +ignorable_copyrights: + - Copyright (c) 1995-2000 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1012 + - http://www.python.org/ +--- + CNRI OPEN SOURCE LICENSE AGREEMENT IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. diff --git a/src/licensedcode/data/licenses/cnri-python-1.6.yml b/src/licensedcode/data/licenses/cnri-python-1.6.yml deleted file mode 100644 index 08a15fe0dfe..00000000000 --- a/src/licensedcode/data/licenses/cnri-python-1.6.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: cnri-python-1.6 -short_name: CNRI Python 1.6 -name: CNRI Open Source License Agreement for Python 1.6 -category: Permissive -owner: CNRI -homepage_url: http://www.handle.net/python_licenses/python1.6_9-5-00.html -notes: per SPDX.org, CNRI portion of the multi-part Python License (Python-2.0) -spdx_license_key: CNRI-Python -osi_license_key: CNRI-Python -text_urls: - - http://www.handle.net/python_licenses/python1.6_9-5-00.html -other_urls: - - http://spdx.org/licenses/CNRI-Python - - http://www.opensource.org/licenses/CNRI-Python - - https://opensource.org/licenses/CNRI-Python -ignorable_copyrights: - - Copyright (c) 1995-2000 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1012 - - http://www.python.org/ diff --git a/src/licensedcode/data/licenses/cockroach.LICENSE b/src/licensedcode/data/licenses/cockroach.LICENSE index 10fb3b06e24..73e008906ae 100644 --- a/src/licensedcode/data/licenses/cockroach.LICENSE +++ b/src/licensedcode/data/licenses/cockroach.LICENSE @@ -1,3 +1,19 @@ +--- +key: cockroach +short_name: CCL +name: Cockroach Community License +category: Source-available +owner: Cockroachlabs +homepage_url: https://www.cockroachlabs.com/cockroachdb-community-license +spdx_license_key: LicenseRef-scancode-cockroach +text_urls: + - https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://cla-assistant.io/cockroachdb/cockroach + - https://github.com/cockroachdb/cockroach +--- + CockroachDB Community License Agreement Please read this CockroachDB Community License Agreement (the "Agreement") @@ -389,4 +405,4 @@ oral, relating to the subject matter of this Agreement and all past dealing or industry custom. The failure of either party to enforce its rights under this Agreement at any time for any period shall not be construed as a waiver of such rights. No changes, modifications or waivers to this Agreement will be effective -unless in writing and signed by both parties. +unless in writing and signed by both parties. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cockroach.yml b/src/licensedcode/data/licenses/cockroach.yml deleted file mode 100644 index ed68ebd97ae..00000000000 --- a/src/licensedcode/data/licenses/cockroach.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: cockroach -short_name: CCL -name: Cockroach Community License -category: Source-available -owner: Cockroachlabs -homepage_url: https://www.cockroachlabs.com/cockroachdb-community-license -spdx_license_key: LicenseRef-scancode-cockroach -text_urls: - - https://github.com/cockroachdb/cockroach/blob/master/licenses/CCL.txt -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://cla-assistant.io/cockroachdb/cockroach - - https://github.com/cockroachdb/cockroach diff --git a/src/licensedcode/data/licenses/cockroachdb-use-grant-for-bsl-1.1.LICENSE b/src/licensedcode/data/licenses/cockroachdb-use-grant-for-bsl-1.1.LICENSE index 3cd135753f5..652eff0b782 100644 --- a/src/licensedcode/data/licenses/cockroachdb-use-grant-for-bsl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/cockroachdb-use-grant-for-bsl-1.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: cockroachdb-use-grant-for-bsl-1.1 +short_name: CockroachDB Use Grant for BSL 1.1 +name: CockroachDB Additional Use Grant for BSL 1.1 +category: Source-available +owner: Cockroachlabs +homepage_url: https://github.com/cockroachdb/cockroach/blob/8acfe8ffd0028ce1d81a9b1148f7e9ba2673bf95/licenses/BSL.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1 +other_spdx_license_keys: + - LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1 +faq_url: https://www.cockroachlabs.com/blog/oss-relicensing-cockroachdb/ +ignorable_copyrights: + - (c) 2019 Cockroach Labs, Inc. +ignorable_holders: + - Cockroach Labs, Inc. +ignorable_urls: + - https://cockroachlabs.com/ +--- + Parameters Licensor: Cockroach Labs, Inc. Licensed Work: CockroachDB 19.2 diff --git a/src/licensedcode/data/licenses/cockroachdb-use-grant-for-bsl-1.1.yml b/src/licensedcode/data/licenses/cockroachdb-use-grant-for-bsl-1.1.yml deleted file mode 100644 index c6299926915..00000000000 --- a/src/licensedcode/data/licenses/cockroachdb-use-grant-for-bsl-1.1.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: cockroachdb-use-grant-for-bsl-1.1 -short_name: CockroachDB Use Grant for BSL 1.1 -name: CockroachDB Additional Use Grant for BSL 1.1 -category: Source-available -owner: Cockroachlabs -homepage_url: https://github.com/cockroachdb/cockroach/blob/8acfe8ffd0028ce1d81a9b1148f7e9ba2673bf95/licenses/BSL.txt -is_exception: yes -spdx_license_key: LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1 -other_spdx_license_keys: - - LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1 -faq_url: https://www.cockroachlabs.com/blog/oss-relicensing-cockroachdb/ -ignorable_copyrights: - - (c) 2019 Cockroach Labs, Inc. -ignorable_holders: - - Cockroach Labs, Inc. -ignorable_urls: - - https://cockroachlabs.com/ diff --git a/src/licensedcode/data/licenses/code-credit-license-1.0.1.LICENSE b/src/licensedcode/data/licenses/code-credit-license-1.0.1.LICENSE index bc063916d23..b8c16799d4c 100644 --- a/src/licensedcode/data/licenses/code-credit-license-1.0.1.LICENSE +++ b/src/licensedcode/data/licenses/code-credit-license-1.0.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: code-credit-license-1.0.1 +short_name: Code Credit License v1.0.1 +name: Code Credit License v1.0.1 +category: Permissive +owner: Kyle Mitchell +homepage_url: https://github.com/creditstxt/code-credit-license/releases/tag/v1.0.1 +spdx_license_key: LicenseRef-scancode-code-credit-license-1.0.1 +other_urls: + - https://github.com/otherjoel/amulet-mining/blob/main/LICENSE.md + - https://github.com/DoctorLaplace/Storm-Mind-Public/blob/main/LICENSE + - https://github.com/pedrohdjs/javascript-basico-para-programadores/blob/main/LICENSE +ignorable_urls: + - https://codecreditlicense.com/license/1.0.1 + - https://creditstxt.com/ +--- + # Code Credit License Version 1.0.1 diff --git a/src/licensedcode/data/licenses/code-credit-license-1.0.1.yml b/src/licensedcode/data/licenses/code-credit-license-1.0.1.yml deleted file mode 100644 index c0e20fe50dd..00000000000 --- a/src/licensedcode/data/licenses/code-credit-license-1.0.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: code-credit-license-1.0.1 -short_name: Code Credit License v1.0.1 -name: Code Credit License v1.0.1 -category: Permissive -owner: Kyle Mitchell -homepage_url: https://github.com/creditstxt/code-credit-license/releases/tag/v1.0.1 -spdx_license_key: LicenseRef-scancode-code-credit-license-1.0.1 -other_urls: - - https://github.com/otherjoel/amulet-mining/blob/main/LICENSE.md - - https://github.com/DoctorLaplace/Storm-Mind-Public/blob/main/LICENSE - - https://github.com/pedrohdjs/javascript-basico-para-programadores/blob/main/LICENSE -ignorable_urls: - - https://codecreditlicense.com/license/1.0.1 - - https://creditstxt.com/ diff --git a/src/licensedcode/data/licenses/codeguru-permissions.LICENSE b/src/licensedcode/data/licenses/codeguru-permissions.LICENSE index 88bc16a4890..1e5f4eeae28 100644 --- a/src/licensedcode/data/licenses/codeguru-permissions.LICENSE +++ b/src/licensedcode/data/licenses/codeguru-permissions.LICENSE @@ -1,3 +1,15 @@ +--- +key: codeguru-permissions +short_name: CodeGuru Permissions +name: CodeGuru Permissions +category: Permissive +owner: CodeGuru +homepage_url: http://www.codeguru.com/submission-guidelines.php#permission +spdx_license_key: LicenseRef-scancode-codeguru-permissions +text_urls: + - http://www.codeguru.com/submission-guidelines.php#permission +--- + Permissions As you know, this site is a valuable resource for the developer community. diff --git a/src/licensedcode/data/licenses/codeguru-permissions.yml b/src/licensedcode/data/licenses/codeguru-permissions.yml deleted file mode 100644 index cb2675a7878..00000000000 --- a/src/licensedcode/data/licenses/codeguru-permissions.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: codeguru-permissions -short_name: CodeGuru Permissions -name: CodeGuru Permissions -category: Permissive -owner: CodeGuru -homepage_url: http://www.codeguru.com/submission-guidelines.php#permission -spdx_license_key: LicenseRef-scancode-codeguru-permissions -text_urls: - - http://www.codeguru.com/submission-guidelines.php#permission diff --git a/src/licensedcode/data/licenses/codesourcery-2004.LICENSE b/src/licensedcode/data/licenses/codesourcery-2004.LICENSE index 0b1ba47e361..bb1856f6709 100644 --- a/src/licensedcode/data/licenses/codesourcery-2004.LICENSE +++ b/src/licensedcode/data/licenses/codesourcery-2004.LICENSE @@ -1,3 +1,13 @@ +--- +key: codesourcery-2004 +short_name: CodeSourcery 2004 +name: CodeSourcery 2004 +category: Permissive +owner: CodeSourcery +homepage_url: https://git.linaro.org/toolchain/newlib.git/tree/newlib/libc/misc/init.c +spdx_license_key: LicenseRef-scancode-codesourcery-2004 +--- + Permission to use, copy, modify, and distribute this file for any purpose is hereby granted without fee, provided that the above copyright notice and this notice appears in all diff --git a/src/licensedcode/data/licenses/codesourcery-2004.yml b/src/licensedcode/data/licenses/codesourcery-2004.yml deleted file mode 100644 index 20c0523458e..00000000000 --- a/src/licensedcode/data/licenses/codesourcery-2004.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: codesourcery-2004 -short_name: CodeSourcery 2004 -name: CodeSourcery 2004 -category: Permissive -owner: CodeSourcery -homepage_url: https://git.linaro.org/toolchain/newlib.git/tree/newlib/libc/misc/init.c -spdx_license_key: LicenseRef-scancode-codesourcery-2004 diff --git a/src/licensedcode/data/licenses/codexia.LICENSE b/src/licensedcode/data/licenses/codexia.LICENSE index 60376c060fc..77c809bb04e 100644 --- a/src/licensedcode/data/licenses/codexia.LICENSE +++ b/src/licensedcode/data/licenses/codexia.LICENSE @@ -1,3 +1,22 @@ +--- +key: codexia +short_name: Codexia License +name: Codexia License +category: Proprietary Free +owner: Codexia +spdx_license_key: LicenseRef-scancode-codexia +ignorable_copyrights: + - Mike Ryan (mike@codexia.com) Copyright (c) 2000 + - portions (c) Allen Denver +ignorable_holders: + - Allen Denver + - Mike Ryan +ignorable_urls: + - http://www.codexia.com/ +ignorable_emails: + - mike@codexia.com +--- + By Mike Ryan (mike@codexia.com) Copyright (c) 2000, portions (c) Allen Denver 07.30.2000 @@ -17,4 +36,4 @@ Visual C++ 6.0 Libraries / DLLs: pdh.lib (linked in) -pdh.dll (provided with Windows 2000, must copy in for NT 4.0) +pdh.dll (provided with Windows 2000, must copy in for NT 4.0) \ No newline at end of file diff --git a/src/licensedcode/data/licenses/codexia.yml b/src/licensedcode/data/licenses/codexia.yml deleted file mode 100644 index 90f0cf1545e..00000000000 --- a/src/licensedcode/data/licenses/codexia.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: codexia -short_name: Codexia License -name: Codexia License -category: Proprietary Free -owner: Codexia -spdx_license_key: LicenseRef-scancode-codexia -ignorable_copyrights: - - Mike Ryan (mike@codexia.com) Copyright (c) 2000 - - portions (c) Allen Denver -ignorable_holders: - - Allen Denver - - Mike Ryan -ignorable_urls: - - http://www.codexia.com/ -ignorable_emails: - - mike@codexia.com diff --git a/src/licensedcode/data/licenses/cognitive-web-osl-1.1.LICENSE b/src/licensedcode/data/licenses/cognitive-web-osl-1.1.LICENSE index 69f1be90feb..5130c2d47c1 100644 --- a/src/licensedcode/data/licenses/cognitive-web-osl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/cognitive-web-osl-1.1.LICENSE @@ -1,3 +1,25 @@ +--- +key: cognitive-web-osl-1.1 +short_name: CognitiveWeb Open Source License 1.1 +name: CognitiveWeb Open Source License 1.1 +category: Copyleft Limited +owner: CognitiveWeb Project +homepage_url: http://www.cognitiveweb.org/legal/license/ +notes: derived from the Jabber Open Source License +spdx_license_key: LicenseRef-scancode-cognitive-web-osl-1.1 +text_urls: + - http://www.cognitiveweb.org/legal/license/CognitiveWebOpenSourceLicense-1.1.txt +ignorable_copyrights: + - Copyright (c) 2003-2003 CognitiveWeb + - Portions Copyright (c) 2002-2003 Bryan Thompson +ignorable_holders: + - Bryan Thompson + - CognitiveWeb +ignorable_urls: + - http://www.cognitiveweb.org/ + - http://www.cognitiveweb.org/legal/license +--- + CognitiveWeb Open Source License Version 1.1 @@ -465,4 +487,4 @@ which this License was derived. This License contains terms that differ from JOSL. Special thanks to the CognitiveWeb Open Source Contributors for their suggestions and support of the Cognitive Web. -Modifications: +Modifications: \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cognitive-web-osl-1.1.yml b/src/licensedcode/data/licenses/cognitive-web-osl-1.1.yml deleted file mode 100644 index d874312f6fc..00000000000 --- a/src/licensedcode/data/licenses/cognitive-web-osl-1.1.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: cognitive-web-osl-1.1 -short_name: CognitiveWeb Open Source License 1.1 -name: CognitiveWeb Open Source License 1.1 -category: Copyleft Limited -owner: CognitiveWeb Project -homepage_url: http://www.cognitiveweb.org/legal/license/ -notes: derived from the Jabber Open Source License -spdx_license_key: LicenseRef-scancode-cognitive-web-osl-1.1 -text_urls: - - http://www.cognitiveweb.org/legal/license/CognitiveWebOpenSourceLicense-1.1.txt -ignorable_copyrights: - - Copyright (c) 2003-2003 CognitiveWeb - - Portions Copyright (c) 2002-2003 Bryan Thompson -ignorable_holders: - - Bryan Thompson - - CognitiveWeb -ignorable_urls: - - http://www.cognitiveweb.org/ - - http://www.cognitiveweb.org/legal/license diff --git a/src/licensedcode/data/licenses/coil-1.0.LICENSE b/src/licensedcode/data/licenses/coil-1.0.LICENSE index cab9e5ceb4c..befeaadef07 100644 --- a/src/licensedcode/data/licenses/coil-1.0.LICENSE +++ b/src/licensedcode/data/licenses/coil-1.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: coil-1.0 +short_name: COIL-1.0 +name: Copyfree Open Innovation License 1.0 +category: Permissive +owner: coil.apotheon.org +homepage_url: https://coil.apotheon.org/about/ +spdx_license_key: COIL-1.0 +text_urls: + - https://coil.apotheon.org/plaintext/01.0.txt +faq_url: https://coil.apotheon.org/notice/ +other_urls: + - https://github.com/spdx/license-list-XML/blob/12ac54f8ddead3f590c6877eef6650873c6de6fc/test/simpleTestForGenerator/COIL-1.0.txt +--- + # Copyfree Open Innovation License This is version 1.0 of the Copyfree Open Innovation License. diff --git a/src/licensedcode/data/licenses/coil-1.0.yml b/src/licensedcode/data/licenses/coil-1.0.yml deleted file mode 100644 index 2a375bc816e..00000000000 --- a/src/licensedcode/data/licenses/coil-1.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: coil-1.0 -short_name: COIL-1.0 -name: Copyfree Open Innovation License 1.0 -category: Permissive -owner: coil.apotheon.org -homepage_url: https://coil.apotheon.org/about/ -spdx_license_key: COIL-1.0 -text_urls: - - https://coil.apotheon.org/plaintext/01.0.txt -faq_url: https://coil.apotheon.org/notice/ -other_urls: - - https://github.com/spdx/license-list-XML/blob/12ac54f8ddead3f590c6877eef6650873c6de6fc/test/simpleTestForGenerator/COIL-1.0.txt diff --git a/src/licensedcode/data/licenses/colt.LICENSE b/src/licensedcode/data/licenses/colt.LICENSE index 3e04738a627..0a835a858b8 100644 --- a/src/licensedcode/data/licenses/colt.LICENSE +++ b/src/licensedcode/data/licenses/colt.LICENSE @@ -1,3 +1,25 @@ +--- +key: colt +short_name: Colt License Agreement +name: Colt License Agreement +category: Free Restricted +owner: CERN +homepage_url: http://acs.lbl.gov/software/colt/license.html +spdx_license_key: LicenseRef-scancode-colt +text_urls: + - http://acs.lbl.gov/software/colt/license.html +minimum_coverage: 85 +ignorable_copyrights: + - Copyright (c) 1999 CERN - European Organization for Nuclear Research +ignorable_holders: + - CERN - European Organization for Nuclear Research +ignorable_authors: + - Pavel Binko, Dino Ferrero Merlino, Wolfgang Hoschek, Tony Johnson, Andreas Pfeiffer, and + others. Check the FreeHEP +ignorable_urls: + - http://acs.lbl.gov/software/colt/license.html +--- + Colt License Agreement http://acs.lbl.gov/software/colt/license.html diff --git a/src/licensedcode/data/licenses/colt.yml b/src/licensedcode/data/licenses/colt.yml deleted file mode 100644 index 9069d2c7e0e..00000000000 --- a/src/licensedcode/data/licenses/colt.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: colt -short_name: Colt License Agreement -name: Colt License Agreement -category: Free Restricted -owner: CERN -homepage_url: http://acs.lbl.gov/software/colt/license.html -spdx_license_key: LicenseRef-scancode-colt -text_urls: - - http://acs.lbl.gov/software/colt/license.html -minimum_coverage: 85 -ignorable_copyrights: - - Copyright (c) 1999 CERN - European Organization for Nuclear Research -ignorable_holders: - - CERN - European Organization for Nuclear Research -ignorable_authors: - - Pavel Binko, Dino Ferrero Merlino, Wolfgang Hoschek, Tony Johnson, Andreas Pfeiffer, and - others. Check the FreeHEP -ignorable_urls: - - http://acs.lbl.gov/software/colt/license.html diff --git a/src/licensedcode/data/licenses/com-oreilly-servlet.LICENSE b/src/licensedcode/data/licenses/com-oreilly-servlet.LICENSE index c5ef2779aca..b0ac1962707 100644 --- a/src/licensedcode/data/licenses/com-oreilly-servlet.LICENSE +++ b/src/licensedcode/data/licenses/com-oreilly-servlet.LICENSE @@ -1,3 +1,20 @@ +--- +key: com-oreilly-servlet +short_name: com.oreilly.servlet License +name: com.oreilly.servlet License +category: Commercial +owner: Servlets.com +homepage_url: http://www.servlets.com/cos/license.html +spdx_license_key: LicenseRef-scancode-com-oreilly-servlet +ignorable_copyrights: + - Copyright (c) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com +ignorable_holders: + - Jason Hunter, jhunter_AT_servlets.com +ignorable_urls: + - http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter + - http://www.servlets.com/ +--- + Copyright (C) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com. All rights reserved. diff --git a/src/licensedcode/data/licenses/com-oreilly-servlet.yml b/src/licensedcode/data/licenses/com-oreilly-servlet.yml deleted file mode 100644 index 9d48c13d43b..00000000000 --- a/src/licensedcode/data/licenses/com-oreilly-servlet.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: com-oreilly-servlet -short_name: com.oreilly.servlet License -name: com.oreilly.servlet License -category: Commercial -owner: Servlets.com -homepage_url: http://www.servlets.com/cos/license.html -spdx_license_key: LicenseRef-scancode-com-oreilly-servlet -ignorable_copyrights: - - Copyright (c) 2001-2009 by Jason Hunter, jhunter_AT_servlets.com -ignorable_holders: - - Jason Hunter, jhunter_AT_servlets.com -ignorable_urls: - - http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter - - http://www.servlets.com/ diff --git a/src/licensedcode/data/licenses/commercial-license.LICENSE b/src/licensedcode/data/licenses/commercial-license.LICENSE index c32e6aa3f60..7e6f2edba4d 100644 --- a/src/licensedcode/data/licenses/commercial-license.LICENSE +++ b/src/licensedcode/data/licenses/commercial-license.LICENSE @@ -1 +1,12 @@ +--- +key: commercial-license +short_name: Commercial License +name: Commercial License +category: Commercial +owner: Unspecified +notes: this is a generic commercial license +is_generic: yes +spdx_license_key: LicenseRef-scancode-commercial-license +--- + This component is licensed under a commercial contract from the supplier. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/commercial-license.yml b/src/licensedcode/data/licenses/commercial-license.yml deleted file mode 100644 index a09b128205c..00000000000 --- a/src/licensedcode/data/licenses/commercial-license.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: commercial-license -short_name: Commercial License -name: Commercial License -category: Commercial -owner: Unspecified -notes: this is a generic commercial license -is_generic: yes -spdx_license_key: LicenseRef-scancode-commercial-license diff --git a/src/licensedcode/data/licenses/commercial-option.LICENSE b/src/licensedcode/data/licenses/commercial-option.LICENSE index 596afa62b9c..9a7ecb16576 100644 --- a/src/licensedcode/data/licenses/commercial-option.LICENSE +++ b/src/licensedcode/data/licenses/commercial-option.LICENSE @@ -1 +1,12 @@ +--- +key: commercial-option +is_deprecated: yes +short_name: Commercial Option +name: Commercial Option +category: Commercial +owner: Unspecified +is_generic: yes +notes: replaced by commercial-license +--- + This component may be licensed under a commercial contract from the supplier. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/commercial-option.yml b/src/licensedcode/data/licenses/commercial-option.yml deleted file mode 100644 index b5127b09972..00000000000 --- a/src/licensedcode/data/licenses/commercial-option.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: commercial-option -is_deprecated: yes -short_name: Commercial Option -name: Commercial Option -category: Commercial -owner: Unspecified -is_generic: yes -notes: replaced by commercial-license diff --git a/src/licensedcode/data/licenses/commonj-timer.LICENSE b/src/licensedcode/data/licenses/commonj-timer.LICENSE index 34907665643..8fa9b107f6f 100644 --- a/src/licensedcode/data/licenses/commonj-timer.LICENSE +++ b/src/licensedcode/data/licenses/commonj-timer.LICENSE @@ -1,3 +1,20 @@ +--- +key: commonj-timer +short_name: CommonJ Timer License +name: CommonJ Timer and Work Manager License +category: Permissive +owner: Oracle Corporation +homepage_url: http://ebr.springsource.com/repository/app/bundle/version/detail?name=com.springsource.commonj&version=1.1.0 +spdx_license_key: LicenseRef-scancode-commonj-timer +faq_url: http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html +other_urls: + - http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html +ignorable_urls: + - http://dev2dev.bea.com/technologies/commonj/index.jsp + - http://dev2dev.bea.com/wlplatform/commonj/twm.html + - http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ +--- + CommonJ Timer and Work Manager License General information: http://dev2dev.bea.com/wlplatform/commonj/twm.html diff --git a/src/licensedcode/data/licenses/commonj-timer.yml b/src/licensedcode/data/licenses/commonj-timer.yml deleted file mode 100644 index 776202a82a0..00000000000 --- a/src/licensedcode/data/licenses/commonj-timer.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: commonj-timer -short_name: CommonJ Timer License -name: CommonJ Timer and Work Manager License -category: Permissive -owner: Oracle Corporation -homepage_url: http://ebr.springsource.com/repository/app/bundle/version/detail?name=com.springsource.commonj&version=1.1.0 -spdx_license_key: LicenseRef-scancode-commonj-timer -faq_url: http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html -other_urls: - - http://docs.oracle.com/cd/E13222_01/wls/docs100/commonj/commonj.html -ignorable_urls: - - http://dev2dev.bea.com/technologies/commonj/index.jsp - - http://dev2dev.bea.com/wlplatform/commonj/twm.html - - http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ diff --git a/src/licensedcode/data/licenses/commons-clause.LICENSE b/src/licensedcode/data/licenses/commons-clause.LICENSE index cda3094e2ff..ad7f92e4edc 100644 --- a/src/licensedcode/data/licenses/commons-clause.LICENSE +++ b/src/licensedcode/data/licenses/commons-clause.LICENSE @@ -1,3 +1,24 @@ +--- +key: commons-clause +short_name: Commons Clause +name: Commons Clause License Condition v1.0 +category: Source-available +owner: FOSSA +homepage_url: https://commonsclause.com/ +notes: This extra condition restricts selling and commercial usage. The Commons Clause is a + License Condition drafted by Heather Meeker and contributed by FOSSA. +is_exception: yes +spdx_license_key: LicenseRef-scancode-commons-clause +text_urls: + - https://commonsclause.com/ +faq_url: https://commonsclause.com/#faq +other_urls: + - https://github.com/fossas/commons-clause + - https://github.com/neo4j/neo4j/blob/3.5/packaging/LICENSE.txt + - https://leveljournal.com/source-available-licensing + - https://redislabs.com/community/licences/ +--- + "Commons Clause" License Condition v1.0 The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. diff --git a/src/licensedcode/data/licenses/commons-clause.yml b/src/licensedcode/data/licenses/commons-clause.yml deleted file mode 100644 index 130c0a351e4..00000000000 --- a/src/licensedcode/data/licenses/commons-clause.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: commons-clause -short_name: Commons Clause -name: Commons Clause License Condition v1.0 -category: Source-available -owner: FOSSA -homepage_url: https://commonsclause.com/ -notes: This extra condition restricts selling and commercial usage. The Commons Clause is a - License Condition drafted by Heather Meeker and contributed by FOSSA. -is_exception: yes -spdx_license_key: LicenseRef-scancode-commons-clause -text_urls: - - https://commonsclause.com/ -faq_url: https://commonsclause.com/#faq -other_urls: - - https://github.com/fossas/commons-clause - - https://github.com/neo4j/neo4j/blob/3.5/packaging/LICENSE.txt - - https://leveljournal.com/source-available-licensing - - https://redislabs.com/community/licences/ diff --git a/src/licensedcode/data/licenses/compass.LICENSE b/src/licensedcode/data/licenses/compass.LICENSE index 746c2067002..c458790423c 100644 --- a/src/licensedcode/data/licenses/compass.LICENSE +++ b/src/licensedcode/data/licenses/compass.LICENSE @@ -1,3 +1,13 @@ +--- +key: compass +short_name: Compass License +name: Compass License +category: Permissive +owner: Christopher M. Eppstein +spdx_license_key: LicenseRef-scancode-compass +minimum_coverage: 85 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/licenses/compass.yml b/src/licensedcode/data/licenses/compass.yml deleted file mode 100644 index 4995707d93e..00000000000 --- a/src/licensedcode/data/licenses/compass.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: compass -short_name: Compass License -name: Compass License -category: Permissive -owner: Christopher M. Eppstein -spdx_license_key: LicenseRef-scancode-compass -minimum_coverage: 85 diff --git a/src/licensedcode/data/licenses/componentace-jcraft.LICENSE b/src/licensedcode/data/licenses/componentace-jcraft.LICENSE index abe9b13d1e6..c2ca068127d 100644 --- a/src/licensedcode/data/licenses/componentace-jcraft.LICENSE +++ b/src/licensedcode/data/licenses/componentace-jcraft.LICENSE @@ -1,3 +1,25 @@ +--- +key: componentace-jcraft +short_name: ComponentAce JCraft License +name: ComponentAce JCraft License +category: Permissive +owner: ComponentAce +notes: composite license_expression bsd-new and bsd-new and zlib +spdx_license_key: LicenseRef-scancode-componentace-jcraft +minimum_coverage: 85 +ignorable_copyrights: + - Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. + - Copyright (c) 2006, ComponentAce http://www.componentace.com +ignorable_holders: + - ComponentAce + - ymnk, JCraft,Inc. +ignorable_urls: + - http://www.componentace.com/ +ignorable_emails: + - jloup@gzip.org + - madler@alumni.caltech.edu +--- + Copyright (c) 2006, ComponentAce http://www.componentace.com All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -54,4 +76,4 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This program is based on zlib-1.1.3, so all credit should go authors Jean-loup Gailly(jloup@gzip.org) and Mark -Adler(madler@alumni.caltech.edu) and contributors of zlib. +Adler(madler@alumni.caltech.edu) and contributors of zlib. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/componentace-jcraft.yml b/src/licensedcode/data/licenses/componentace-jcraft.yml deleted file mode 100644 index 198b74fdadd..00000000000 --- a/src/licensedcode/data/licenses/componentace-jcraft.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: componentace-jcraft -short_name: ComponentAce JCraft License -name: ComponentAce JCraft License -category: Permissive -owner: ComponentAce -notes: composite license_expression bsd-new and bsd-new and zlib -spdx_license_key: LicenseRef-scancode-componentace-jcraft -minimum_coverage: 85 -ignorable_copyrights: - - Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. - - Copyright (c) 2006, ComponentAce http://www.componentace.com -ignorable_holders: - - ComponentAce - - ymnk, JCraft,Inc. -ignorable_urls: - - http://www.componentace.com/ -ignorable_emails: - - jloup@gzip.org - - madler@alumni.caltech.edu diff --git a/src/licensedcode/data/licenses/compuphase-linking-exception.LICENSE b/src/licensedcode/data/licenses/compuphase-linking-exception.LICENSE index 24f5675752b..05c3adadc8b 100644 --- a/src/licensedcode/data/licenses/compuphase-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/compuphase-linking-exception.LICENSE @@ -1,3 +1,33 @@ +--- +key: compuphase-linking-exception +short_name: compuphase Linking Exception to Apache 2.0 +name: compuphase Linking Exception to Apache 2.0 +category: Permissive +owner: compuphase +homepage_url: https://github.com/compuphase/minIni/blob/master/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-compuphase-linking-exception +standard_notice: | + 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. + EXCEPTION TO THE APACHE 2.0 LICENSE + As a special exception to the Apache License 2.0 (and referring to the + definitions in Section 1 of this license), you may link, statically or + dynamically, the "Work" to other modules to produce an executable file + containing portions of the "Work", and distribute that executable file + in "Object" form under the terms of your choice, without any of the + additional requirements listed in Section 4 of the Apache License 2.0. + This exception applies only to redistributions in "Object" form (not + "Source" form) and only if no modifications have been made to the "Work". +--- + EXCEPTION TO THE APACHE 2.0 LICENSE As a special exception to the Apache License 2.0 (and referring to the diff --git a/src/licensedcode/data/licenses/compuphase-linking-exception.yml b/src/licensedcode/data/licenses/compuphase-linking-exception.yml deleted file mode 100644 index 87ca5730dce..00000000000 --- a/src/licensedcode/data/licenses/compuphase-linking-exception.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: compuphase-linking-exception -short_name: compuphase Linking Exception to Apache 2.0 -name: compuphase Linking Exception to Apache 2.0 -category: Permissive -owner: compuphase -homepage_url: https://github.com/compuphase/minIni/blob/master/LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-compuphase-linking-exception -standard_notice: | - 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. - EXCEPTION TO THE APACHE 2.0 LICENSE - As a special exception to the Apache License 2.0 (and referring to the - definitions in Section 1 of this license), you may link, statically or - dynamically, the "Work" to other modules to produce an executable file - containing portions of the "Work", and distribute that executable file - in "Object" form under the terms of your choice, without any of the - additional requirements listed in Section 4 of the Apache License 2.0. - This exception applies only to redistributions in "Object" form (not - "Source" form) and only if no modifications have been made to the "Work". diff --git a/src/licensedcode/data/licenses/concursive-pl-1.0.LICENSE b/src/licensedcode/data/licenses/concursive-pl-1.0.LICENSE index 6e795676f39..774de166a52 100644 --- a/src/licensedcode/data/licenses/concursive-pl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/concursive-pl-1.0.LICENSE @@ -1,3 +1,12 @@ +--- +key: concursive-pl-1.0 +short_name: Concursive Public License 1.0 +name: Concursive Public License 1.0 +category: Proprietary Free +owner: Concursive +spdx_license_key: LicenseRef-scancode-concursive-pl-1.0 +--- + The Concursive Public License Version 1, April 2014 diff --git a/src/licensedcode/data/licenses/concursive-pl-1.0.yml b/src/licensedcode/data/licenses/concursive-pl-1.0.yml deleted file mode 100644 index 04bd9413c1f..00000000000 --- a/src/licensedcode/data/licenses/concursive-pl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: concursive-pl-1.0 -short_name: Concursive Public License 1.0 -name: Concursive Public License 1.0 -category: Proprietary Free -owner: Concursive -spdx_license_key: LicenseRef-scancode-concursive-pl-1.0 diff --git a/src/licensedcode/data/licenses/condor-1.1.LICENSE b/src/licensedcode/data/licenses/condor-1.1.LICENSE index 3177fadcb2c..ddd5027a6de 100644 --- a/src/licensedcode/data/licenses/condor-1.1.LICENSE +++ b/src/licensedcode/data/licenses/condor-1.1.LICENSE @@ -1,3 +1,31 @@ +--- +key: condor-1.1 +short_name: Condor Public License 1.1 +name: Condor Public License 1.1 +category: Permissive +owner: Condor Project +homepage_url: http://www.cs.wisc.edu/condor/license.html +notes: Per SPDX.org, this license was released 30 October 2003 +spdx_license_key: Condor-1.1 +text_urls: + - http://www.cs.wisc.edu/condor/license.html +other_urls: + - http://research.cs.wisc.edu/condor/license.html#condor + - http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor +ignorable_copyrights: + - Copyright 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, + Madison, WI. +ignorable_holders: + - Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. +ignorable_authors: + - the Condor Project, Condor Team, Computer Sciences Department, University of Wisconsin-Madison +ignorable_urls: + - http://www.condorproject.org/ +ignorable_emails: + - condor-admin@cs.wisc.edu + - miron@cs.wisc.edu +--- + CONDOR PUBLIC LICENSE Version 1.1, October 30, 2003 diff --git a/src/licensedcode/data/licenses/condor-1.1.yml b/src/licensedcode/data/licenses/condor-1.1.yml deleted file mode 100644 index 2129988be32..00000000000 --- a/src/licensedcode/data/licenses/condor-1.1.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: condor-1.1 -short_name: Condor Public License 1.1 -name: Condor Public License 1.1 -category: Permissive -owner: Condor Project -homepage_url: http://www.cs.wisc.edu/condor/license.html -notes: Per SPDX.org, this license was released 30 October 2003 -spdx_license_key: Condor-1.1 -text_urls: - - http://www.cs.wisc.edu/condor/license.html -other_urls: - - http://research.cs.wisc.edu/condor/license.html#condor - - http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor -ignorable_copyrights: - - Copyright 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, - Madison, WI. -ignorable_holders: - - Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. -ignorable_authors: - - the Condor Project, Condor Team, Computer Sciences Department, University of Wisconsin-Madison -ignorable_urls: - - http://www.condorproject.org/ -ignorable_emails: - - condor-admin@cs.wisc.edu - - miron@cs.wisc.edu diff --git a/src/licensedcode/data/licenses/confluent-community-1.0.LICENSE b/src/licensedcode/data/licenses/confluent-community-1.0.LICENSE index 4ad4975b0ff..24fccf9eef9 100644 --- a/src/licensedcode/data/licenses/confluent-community-1.0.LICENSE +++ b/src/licensedcode/data/licenses/confluent-community-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: confluent-community-1.0 +short_name: Confluent Community License 1.0 +name: Confluent Community License 1.0 +category: Source-available +owner: Confluent, Inc. +homepage_url: https://www.confluent.io/confluent-community-license +spdx_license_key: LicenseRef-scancode-confluent-community-1.0 +faq_url: https://www.confluent.io/confluent-community-license-faq +other_urls: + - https://www.confluent.io/blog/license-changes-confluent-platform + - https://www.confluent.io/blog/developers-guide-confluent-community-license +ignorable_urls: + - http://www.confluent.io/confluent-community-license +--- + Confluent Community License Version 1.0 This Confluent Community License Agreement Version 1.0 (the “Agreement”) sets forth the terms on which Confluent, Inc. (“Confluent”) makes available certain software made available by Confluent under this Agreement (the “Software”). BY INSTALLING, DOWNLOADING, ACCESSING, USING OR DISTRIBUTING ANY OF THE SOFTWARE, YOU AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO SUCH TERMS AND CONDITIONS, YOU MUST NOT USE THE SOFTWARE. IF YOU ARE RECEIVING THE SOFTWARE ON BEHALF OF A LEGAL ENTITY, YOU REPRESENT AND WARRANT THAT YOU HAVE THE ACTUAL AUTHORITY TO AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT ON BEHALF OF SUCH ENTITY. “Licensee” means you, an individual, or the entity on whose behalf you are receiving the Software. diff --git a/src/licensedcode/data/licenses/confluent-community-1.0.yml b/src/licensedcode/data/licenses/confluent-community-1.0.yml deleted file mode 100644 index e01760f47b5..00000000000 --- a/src/licensedcode/data/licenses/confluent-community-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: confluent-community-1.0 -short_name: Confluent Community License 1.0 -name: Confluent Community License 1.0 -category: Source-available -owner: Confluent, Inc. -homepage_url: https://www.confluent.io/confluent-community-license -spdx_license_key: LicenseRef-scancode-confluent-community-1.0 -faq_url: https://www.confluent.io/confluent-community-license-faq -other_urls: - - https://www.confluent.io/blog/license-changes-confluent-platform - - https://www.confluent.io/blog/developers-guide-confluent-community-license -ignorable_urls: - - http://www.confluent.io/confluent-community-license diff --git a/src/licensedcode/data/licenses/cooperative-non-violent-4.0.LICENSE b/src/licensedcode/data/licenses/cooperative-non-violent-4.0.LICENSE index 46640ebb5e3..a40d192b141 100644 --- a/src/licensedcode/data/licenses/cooperative-non-violent-4.0.LICENSE +++ b/src/licensedcode/data/licenses/cooperative-non-violent-4.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: cooperative-non-violent-4.0 +short_name: CNVPL 4.0 +name: Cooperative Non-Violent Public License v4 +category: Proprietary Free +owner: Thufie +homepage_url: https://thufie.lain.haus/NPL.html +spdx_license_key: LicenseRef-scancode-cooperative-non-violent-4.0 +ignorable_urls: + - https://thufie.lain.haus/NPL.html +--- + COOPERATIVE NON-VIOLENT PUBLIC LICENSE v4 Preamble diff --git a/src/licensedcode/data/licenses/cooperative-non-violent-4.0.yml b/src/licensedcode/data/licenses/cooperative-non-violent-4.0.yml deleted file mode 100644 index 6f9aae0ad73..00000000000 --- a/src/licensedcode/data/licenses/cooperative-non-violent-4.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cooperative-non-violent-4.0 -short_name: CNVPL 4.0 -name: Cooperative Non-Violent Public License v4 -category: Proprietary Free -owner: Thufie -homepage_url: https://thufie.lain.haus/NPL.html -spdx_license_key: LicenseRef-scancode-cooperative-non-violent-4.0 -ignorable_urls: - - https://thufie.lain.haus/NPL.html diff --git a/src/licensedcode/data/licenses/copyheart.LICENSE b/src/licensedcode/data/licenses/copyheart.LICENSE index ab3ead05fae..8b6e9fad469 100644 --- a/src/licensedcode/data/licenses/copyheart.LICENSE +++ b/src/licensedcode/data/licenses/copyheart.LICENSE @@ -1 +1,13 @@ -♡ Copying is an act of love. Please copy. +--- +key: copyheart +short_name: Copyheart +name: Copyheart +category: Public Domain +owner: Nina Paley +homepage_url: http://copyheart.org +spdx_license_key: LicenseRef-scancode-copyheart +text_urls: + - http://copyheart.org +--- + +♡ Copying is an act of love. Please copy. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/copyheart.yml b/src/licensedcode/data/licenses/copyheart.yml deleted file mode 100644 index b5c70616370..00000000000 --- a/src/licensedcode/data/licenses/copyheart.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: copyheart -short_name: Copyheart -name: Copyheart -category: Public Domain -owner: Nina Paley -homepage_url: http://copyheart.org -spdx_license_key: LicenseRef-scancode-copyheart -text_urls: - - http://copyheart.org diff --git a/src/licensedcode/data/licenses/copyleft-next-0.3.0.LICENSE b/src/licensedcode/data/licenses/copyleft-next-0.3.0.LICENSE index 1f1180b0a59..f40a86dfa50 100644 --- a/src/licensedcode/data/licenses/copyleft-next-0.3.0.LICENSE +++ b/src/licensedcode/data/licenses/copyleft-next-0.3.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: copyleft-next-0.3.0 +short_name: copyleft-next 0.3.0 +name: copyleft-next 0.3.0 +category: Copyleft +owner: Richard Fontana +homepage_url: https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.0 +spdx_license_key: copyleft-next-0.3.0 +text_urls: + - https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0 + - https://raw.githubusercontent.com/richardfontana/copyleft-next/master/Releases/copyleft-next-0.3.0 +ignorable_urls: + - https://gitorious.org/copyleft-next/ +--- + copyleft-next 0.3.0 ("this License") Release date: 2013-05-16 diff --git a/src/licensedcode/data/licenses/copyleft-next-0.3.0.yml b/src/licensedcode/data/licenses/copyleft-next-0.3.0.yml deleted file mode 100644 index fab0c59633e..00000000000 --- a/src/licensedcode/data/licenses/copyleft-next-0.3.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: copyleft-next-0.3.0 -short_name: copyleft-next 0.3.0 -name: copyleft-next 0.3.0 -category: Copyleft -owner: Richard Fontana -homepage_url: https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.0 -spdx_license_key: copyleft-next-0.3.0 -text_urls: - - https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0 - - https://raw.githubusercontent.com/richardfontana/copyleft-next/master/Releases/copyleft-next-0.3.0 -ignorable_urls: - - https://gitorious.org/copyleft-next/ diff --git a/src/licensedcode/data/licenses/copyleft-next-0.3.1.LICENSE b/src/licensedcode/data/licenses/copyleft-next-0.3.1.LICENSE index 0e168e19a03..9355b87ad36 100644 --- a/src/licensedcode/data/licenses/copyleft-next-0.3.1.LICENSE +++ b/src/licensedcode/data/licenses/copyleft-next-0.3.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: copyleft-next-0.3.1 +short_name: copyleft-next 0.3.1 +name: copyleft-next 0.3.1 +category: Copyleft +owner: Richard Fontana +homepage_url: https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.1 +spdx_license_key: copyleft-next-0.3.1 +other_urls: + - https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1 +ignorable_urls: + - https://github.com/copyleft-next/copyleft-next.git/ +--- + copyleft-next 0.3.1 ("this License") Release date: 2016-04-29 diff --git a/src/licensedcode/data/licenses/copyleft-next-0.3.1.yml b/src/licensedcode/data/licenses/copyleft-next-0.3.1.yml deleted file mode 100644 index a401d496a08..00000000000 --- a/src/licensedcode/data/licenses/copyleft-next-0.3.1.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: copyleft-next-0.3.1 -short_name: copyleft-next 0.3.1 -name: copyleft-next 0.3.1 -category: Copyleft -owner: Richard Fontana -homepage_url: https://github.com/richardfontana/copyleft-next/blob/master/Releases/copyleft-next-0.3.1 -spdx_license_key: copyleft-next-0.3.1 -other_urls: - - https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1 -ignorable_urls: - - https://github.com/copyleft-next/copyleft-next.git/ diff --git a/src/licensedcode/data/licenses/corporate-accountability-1.1.LICENSE b/src/licensedcode/data/licenses/corporate-accountability-1.1.LICENSE index be4f1e9539b..b98e6c2a8f0 100644 --- a/src/licensedcode/data/licenses/corporate-accountability-1.1.LICENSE +++ b/src/licensedcode/data/licenses/corporate-accountability-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: corporate-accountability-1.1 +short_name: CAL Software +name: Corporate Accountability Lab Software +category: Proprietary Free +owner: Corporate Accountability Lab +homepage_url: https://legaldesign.org/cal-software-license +spdx_license_key: LicenseRef-scancode-corporate-accountability-1.1 +ignorable_urls: + - https://www.legaldesign.org/cal-software-license +--- + The +CAL Software License Agreement Legal Notice This Software is available without charge but subject to compliance obligations; you can redistribute and/or modify this Software under the terms of the +CAL Software License Agreement (the "Agreement"), as published by the Corporate Accountability Lab NFP ("CAL"), available here: https://www.legaldesign.org/cal-software-license. CAL is a 501(c)(3) non-profit organization based in Chicago, IL that designs legal solutions to protect people and the environment from corporate abuse. Through this Agreement, CAL seeks to empower producers of intellectual property to keep their intellectual property out of unethical supply chains and to support ethical and sustainable commercial use of intellectual property. @@ -59,4 +71,4 @@ Section 6. Third-Party Beneficiaries. Section 7. Interpretation. For purposes of this Agreement, (a) the words "include," "includes," and "including" are deemed to be followed by the words "without limitation"; (b) the word "or" is not exclusive; and (c) the words "herein," "hereof," "hereby," and "hereunder" refer to this Agreement as a whole. "Conditions" is to be read as both condition and covenant, actionable under both contract and copyright law to the extent permissible by law. Unless the context otherwise requires, references herein to a statute, regulation, treaty, guideline, and similar instruments means such statute, regulation, treaty, guideline, and similar instrument as amended from time to time and includes any successor thereto and any regulations promulgated thereunder. This Agreement shall be construed without regard to any presumption or rule requiring construction or interpretation against the party drafting an instrument or causing any instrument to be drafted. -Section 8. Severability. To the extent possible, if any provision of this Agreement is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable; if the provision cannot be reformed, it shall be severed from this Agreement without affecting the enforceability of the remaining terms and conditions, and any such prohibition or unenforceability in any jurisdiction shall not invalidate or render unenforceable such provision in any other jurisdiction. Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or Licensee, including from the legal processes of any jurisdiction or authority to the extent such privileges and immunities may not be waived under applicable law. +Section 8. Severability. To the extent possible, if any provision of this Agreement is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable; if the provision cannot be reformed, it shall be severed from this Agreement without affecting the enforceability of the remaining terms and conditions, and any such prohibition or unenforceability in any jurisdiction shall not invalidate or render unenforceable such provision in any other jurisdiction. Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or Licensee, including from the legal processes of any jurisdiction or authority to the extent such privileges and immunities may not be waived under applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/corporate-accountability-1.1.yml b/src/licensedcode/data/licenses/corporate-accountability-1.1.yml deleted file mode 100644 index f262f3af959..00000000000 --- a/src/licensedcode/data/licenses/corporate-accountability-1.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: corporate-accountability-1.1 -short_name: CAL Software -name: Corporate Accountability Lab Software -category: Proprietary Free -owner: Corporate Accountability Lab -homepage_url: https://legaldesign.org/cal-software-license -spdx_license_key: LicenseRef-scancode-corporate-accountability-1.1 -ignorable_urls: - - https://www.legaldesign.org/cal-software-license diff --git a/src/licensedcode/data/licenses/corporate-accountability-commercial-1.1.LICENSE b/src/licensedcode/data/licenses/corporate-accountability-commercial-1.1.LICENSE index be044b532ca..f4dd5a5fa39 100644 --- a/src/licensedcode/data/licenses/corporate-accountability-commercial-1.1.LICENSE +++ b/src/licensedcode/data/licenses/corporate-accountability-commercial-1.1.LICENSE @@ -1,3 +1,19 @@ +--- +key: corporate-accountability-commercial-1.1 +short_name: CC+CAL +name: CC + Corporate Accountability Lab +category: Proprietary Free +owner: Corporate Accountability Lab +homepage_url: https://legaldesign.org/cccal-license +is_exception: yes +spdx_license_key: LicenseRef-scancode-accountability-commercial-1.1 +other_spdx_license_keys: + - LicenseRef-scancode-corporate-accountability-commercial-1.1 +ignorable_urls: + - https://creativecommons.org/choose + - https://wiki.creativecommons.org/wiki/CCPlus +--- + The CC+CAL Commercial Use License Agreement Legal Notice The CC+CAL Commercial Use License Agreement (the "Agreement") is intended to be used in tandem with any standard Creative Commons Public License that does not provide the public with rights to use licensed material for commercial purposes (i.e., a Creative Commons Public License that includes a NonCommercial restriction). Through this Agreement, licensors using a Creative Commons Public License grant additional permissions to the public to use the licensed material for commercial purposes subject to a Morals Clause for Safe and Environmentally Sustainable Supply Chains set forth in this Agreement. For the avoidance of doubt, this Agreement does not modify or customize any Creative Commons Public License. This Agreement is a separate and independent agreement intended to exist alongside a Creative Commons Public License, granting additional permissions not provided by the Creative Commons Public License that pertain specifically to the commercial use of licensed material and the use of licensed material to promote safe and environmentally sustainable supply chains. @@ -174,4 +190,4 @@ b. To the extent possible, if any provision of this Agreement is deemed unenforc c. No term or condition of this Agreement will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. -Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. +Nothing in this Agreement constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/corporate-accountability-commercial-1.1.yml b/src/licensedcode/data/licenses/corporate-accountability-commercial-1.1.yml deleted file mode 100644 index aa16f568a7d..00000000000 --- a/src/licensedcode/data/licenses/corporate-accountability-commercial-1.1.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: corporate-accountability-commercial-1.1 -short_name: CC+CAL -name: CC + Corporate Accountability Lab -category: Proprietary Free -owner: Corporate Accountability Lab -homepage_url: https://legaldesign.org/cccal-license -is_exception: yes -spdx_license_key: LicenseRef-scancode-accountability-commercial-1.1 -other_spdx_license_keys: - - LicenseRef-scancode-corporate-accountability-commercial-1.1 -ignorable_urls: - - https://creativecommons.org/choose - - https://wiki.creativecommons.org/wiki/CCPlus diff --git a/src/licensedcode/data/licenses/cosl.LICENSE b/src/licensedcode/data/licenses/cosl.LICENSE index e8f8c23293d..cb1f201c02d 100644 --- a/src/licensedcode/data/licenses/cosl.LICENSE +++ b/src/licensedcode/data/licenses/cosl.LICENSE @@ -1,3 +1,13 @@ +--- +key: cosl +short_name: Cougaar Open Source License +name: Cougaar Open Source License +category: Permissive +owner: Cougaar Software +spdx_license_key: LicenseRef-scancode-cosl +minimum_coverage: 80 +--- + Cougaar Open Source License The Cougaar Open Source License (COSL) is a modified version of the OSI diff --git a/src/licensedcode/data/licenses/cosl.yml b/src/licensedcode/data/licenses/cosl.yml deleted file mode 100644 index 6d3fe194145..00000000000 --- a/src/licensedcode/data/licenses/cosl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cosl -short_name: Cougaar Open Source License -name: Cougaar Open Source License -category: Permissive -owner: Cougaar Software -spdx_license_key: LicenseRef-scancode-cosl -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/cosli.LICENSE b/src/licensedcode/data/licenses/cosli.LICENSE index e5ed0e8bf50..9d3331edac6 100644 --- a/src/licensedcode/data/licenses/cosli.LICENSE +++ b/src/licensedcode/data/licenses/cosli.LICENSE @@ -1,3 +1,27 @@ +--- +key: cosli +short_name: COSLi +name: Civilian Open Source License +category: Free Restricted +owner: Fieldtracks +homepage_url: https://cosli.eu/ +spdx_license_key: LicenseRef-scancode-cosli +ignorable_copyrights: + - Copyright (c) 2017-2019 The Fieldtracks Project + - Copyright (c) The OpenSSL Project +ignorable_holders: + - The Fieldtracks Project + - The OpenSSL Project +ignorable_authors: + - the Fieldtracks Project (https://fieldtracks.org/) + - the fieldtracks Project (https://www.fieldtracks.org/) +ignorable_urls: + - https://fieldtracks.org/ + - https://www.fieldtracks.org/ +ignorable_emails: + - info@fieldtracks.org +--- + Civilian Open Source License (COSLi) ------------------------------------------------------------------------------- @@ -59,5 +83,4 @@ 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. MILITARY USAGE IS FORBIDDEN. - +OF THE POSSIBILITY OF SUCH DAMAGE. MILITARY USAGE IS FORBIDDEN. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cosli.yml b/src/licensedcode/data/licenses/cosli.yml deleted file mode 100644 index 3611fdd5722..00000000000 --- a/src/licensedcode/data/licenses/cosli.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: cosli -short_name: COSLi -name: Civilian Open Source License -category: Free Restricted -owner: Fieldtracks -homepage_url: https://cosli.eu/ -spdx_license_key: LicenseRef-scancode-cosli -ignorable_copyrights: - - Copyright (c) 2017-2019 The Fieldtracks Project - - Copyright (c) The OpenSSL Project -ignorable_holders: - - The Fieldtracks Project - - The OpenSSL Project -ignorable_authors: - - the Fieldtracks Project (https://fieldtracks.org/) - - the fieldtracks Project (https://www.fieldtracks.org/) -ignorable_urls: - - https://fieldtracks.org/ - - https://www.fieldtracks.org/ -ignorable_emails: - - info@fieldtracks.org diff --git a/src/licensedcode/data/licenses/couchbase-community.LICENSE b/src/licensedcode/data/licenses/couchbase-community.LICENSE index c1d26d52470..b8e3e816249 100644 --- a/src/licensedcode/data/licenses/couchbase-community.LICENSE +++ b/src/licensedcode/data/licenses/couchbase-community.LICENSE @@ -1,3 +1,20 @@ +--- +key: couchbase-community +short_name: Couchbase Community Edition License +name: Couchbase Community Edition License +category: Proprietary Free +owner: Couchbase +homepage_url: http://www.couchbase.com/download +spdx_license_key: LicenseRef-scancode-couchbase-community +ignorable_copyrights: + - Copyright 2010 Couchbase, Inc. +ignorable_holders: + - Couchbase, Inc. +ignorable_urls: + - http://couchbase.com/ + - http://www.couchbase.com/ +--- + COUCHBASE INC. COMMUNITY EDITION LICENSE AGREEMENT IMPORTANT-READ CAREFULLY: BY CLICKING THE "I ACCEPT" BOX OR diff --git a/src/licensedcode/data/licenses/couchbase-community.yml b/src/licensedcode/data/licenses/couchbase-community.yml deleted file mode 100644 index 2a01daf45ee..00000000000 --- a/src/licensedcode/data/licenses/couchbase-community.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: couchbase-community -short_name: Couchbase Community Edition License -name: Couchbase Community Edition License -category: Proprietary Free -owner: Couchbase -homepage_url: http://www.couchbase.com/download -spdx_license_key: LicenseRef-scancode-couchbase-community -ignorable_copyrights: - - Copyright 2010 Couchbase, Inc. -ignorable_holders: - - Couchbase, Inc. -ignorable_urls: - - http://couchbase.com/ - - http://www.couchbase.com/ diff --git a/src/licensedcode/data/licenses/couchbase-enterprise.LICENSE b/src/licensedcode/data/licenses/couchbase-enterprise.LICENSE index bd7e56eb8db..fa5576dc9a1 100644 --- a/src/licensedcode/data/licenses/couchbase-enterprise.LICENSE +++ b/src/licensedcode/data/licenses/couchbase-enterprise.LICENSE @@ -1,3 +1,17 @@ +--- +key: couchbase-enterprise +short_name: Couchbase Enterprise Edition License +name: Couchbase Enterprise Edition License +category: Proprietary Free +owner: Couchbase +homepage_url: http://www.couchbase.com/download +spdx_license_key: LicenseRef-scancode-couchbase-enterprise +minimum_coverage: 20 +ignorable_urls: + - http://www.couchbase.com/ + - http://www.couchbase.org/forums +--- + COUCHBASE INC. ENTERPRISE LICENSE AGREEMENT - FREE EDITION IMPORTANT-READ CAREFULLY: BY CLICKING THE "I ACCEPT" BOX OR INSTALLING, diff --git a/src/licensedcode/data/licenses/couchbase-enterprise.yml b/src/licensedcode/data/licenses/couchbase-enterprise.yml deleted file mode 100644 index b93c963bf9c..00000000000 --- a/src/licensedcode/data/licenses/couchbase-enterprise.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: couchbase-enterprise -short_name: Couchbase Enterprise Edition License -name: Couchbase Enterprise Edition License -category: Proprietary Free -owner: Couchbase -homepage_url: http://www.couchbase.com/download -spdx_license_key: LicenseRef-scancode-couchbase-enterprise -minimum_coverage: 20 -ignorable_urls: - - http://www.couchbase.com/ - - http://www.couchbase.org/forums diff --git a/src/licensedcode/data/licenses/cpal-1.0.LICENSE b/src/licensedcode/data/licenses/cpal-1.0.LICENSE index 603e342fb09..9b36953fede 100644 --- a/src/licensedcode/data/licenses/cpal-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cpal-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: cpal-1.0 +short_name: CPAL 1.0 +name: Common Public Attribution License 1.0 +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/cpal_1.0 +notes: Per SPDX.org, this license is OSI certifified. +spdx_license_key: CPAL-1.0 +osi_license_key: CPAL-1.0 +text_urls: + - http://opensource.org/licenses/cpal_1.0 +osi_url: http://opensource.org/licenses/cpal_1.0 +other_urls: + - http://www.opensource.org/licenses/CPAL-1.0 + - https://opensource.org/licenses/CPAL-1.0 +--- + Common Public Attribution License Version 1.0 (CPAL) 1. "Definitions" 1.0.1 "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. diff --git a/src/licensedcode/data/licenses/cpal-1.0.yml b/src/licensedcode/data/licenses/cpal-1.0.yml deleted file mode 100644 index 947430222d7..00000000000 --- a/src/licensedcode/data/licenses/cpal-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: cpal-1.0 -short_name: CPAL 1.0 -name: Common Public Attribution License 1.0 -category: Copyleft -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/cpal_1.0 -notes: Per SPDX.org, this license is OSI certifified. -spdx_license_key: CPAL-1.0 -osi_license_key: CPAL-1.0 -text_urls: - - http://opensource.org/licenses/cpal_1.0 -osi_url: http://opensource.org/licenses/cpal_1.0 -other_urls: - - http://www.opensource.org/licenses/CPAL-1.0 - - https://opensource.org/licenses/CPAL-1.0 diff --git a/src/licensedcode/data/licenses/cpl-0.5.LICENSE b/src/licensedcode/data/licenses/cpl-0.5.LICENSE index c3ce56bcc10..86947f933dc 100644 --- a/src/licensedcode/data/licenses/cpl-0.5.LICENSE +++ b/src/licensedcode/data/licenses/cpl-0.5.LICENSE @@ -1,3 +1,18 @@ +--- +key: cpl-0.5 +short_name: CPL 0.5 +name: Common Public License 0.5 +category: Copyleft Limited +owner: IBM +homepage_url: http://www.eclipse.org/legal/cpl-v05.html +spdx_license_key: LicenseRef-scancode-cpl-0.5 +text_urls: + - http://www.eclipse.org/legal/cpl-v05.html +faq_url: http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html +other_urls: + - http://www.ibm.com/developerworks/library/os-cplfaq.html +--- + Common Public License Version 0.5 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC diff --git a/src/licensedcode/data/licenses/cpl-0.5.yml b/src/licensedcode/data/licenses/cpl-0.5.yml deleted file mode 100644 index 6fcb8279f0f..00000000000 --- a/src/licensedcode/data/licenses/cpl-0.5.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: cpl-0.5 -short_name: CPL 0.5 -name: Common Public License 0.5 -category: Copyleft Limited -owner: IBM -homepage_url: http://www.eclipse.org/legal/cpl-v05.html -spdx_license_key: LicenseRef-scancode-cpl-0.5 -text_urls: - - http://www.eclipse.org/legal/cpl-v05.html -faq_url: http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html -other_urls: - - http://www.ibm.com/developerworks/library/os-cplfaq.html diff --git a/src/licensedcode/data/licenses/cpl-1.0.LICENSE b/src/licensedcode/data/licenses/cpl-1.0.LICENSE index 97e582ba2fb..4f278b0ab5b 100644 --- a/src/licensedcode/data/licenses/cpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cpl-1.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: cpl-1.0 +short_name: CPL 1.0 +name: Common Public License 1.0 +category: Copyleft Limited +owner: IBM +homepage_url: http://www.eclipse.org/legal/cpl-v10.html +notes: Per SPDX.org, this license was superseded by Eclipse Public License +spdx_license_key: CPL-1.0 +osi_license_key: CPL-1.0 +text_urls: + - http://www.eclipse.org/legal/cpl-v10.html +osi_url: http://www.opensource.org/licenses/cpl1.0.php +faq_url: http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html +other_urls: + - http://dev.eclipse.org/blogs/mike/2009/04/16/one-small-step-towards-reducing-license-proliferation/ + - http://opensource.org/licenses/CPL-1.0 + - http://www.ibm.com/developerworks/library/os-cpl.html + - http://www.ibm.com/developerworks/library/os-cplfaq.html + - http://www.padsproj.org/License.html + - https://opensource.org/licenses/CPL-1.0 +--- + Common Public License - v 1.0 Updated 16 Apr 2009 diff --git a/src/licensedcode/data/licenses/cpl-1.0.yml b/src/licensedcode/data/licenses/cpl-1.0.yml deleted file mode 100644 index 02b19c51bfb..00000000000 --- a/src/licensedcode/data/licenses/cpl-1.0.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: cpl-1.0 -short_name: CPL 1.0 -name: Common Public License 1.0 -category: Copyleft Limited -owner: IBM -homepage_url: http://www.eclipse.org/legal/cpl-v10.html -notes: Per SPDX.org, this license was superseded by Eclipse Public License -spdx_license_key: CPL-1.0 -osi_license_key: CPL-1.0 -text_urls: - - http://www.eclipse.org/legal/cpl-v10.html -osi_url: http://www.opensource.org/licenses/cpl1.0.php -faq_url: http://web.archive.org/web/20101104092121/http://www.ibm.com/developerworks/library/os-cplfaq.html -other_urls: - - http://dev.eclipse.org/blogs/mike/2009/04/16/one-small-step-towards-reducing-license-proliferation/ - - http://opensource.org/licenses/CPL-1.0 - - http://www.ibm.com/developerworks/library/os-cpl.html - - http://www.ibm.com/developerworks/library/os-cplfaq.html - - http://www.padsproj.org/License.html - - https://opensource.org/licenses/CPL-1.0 diff --git a/src/licensedcode/data/licenses/cpm-2022.LICENSE b/src/licensedcode/data/licenses/cpm-2022.LICENSE index bb20b2014d1..7ab3364c40a 100644 --- a/src/licensedcode/data/licenses/cpm-2022.LICENSE +++ b/src/licensedcode/data/licenses/cpm-2022.LICENSE @@ -1,3 +1,13 @@ +--- +key: cpm-2022 +short_name: CP/M License 2022 +name: CP/M License 2022 +category: Permissive +owner: DRDOS +homepage_url: http://www.cpm.z80.de/license.html +spdx_license_key: LicenseRef-scancode-cpm-2022 +--- + Let this paragraph represent a right to use, distribute, modify, enhance, and otherwise make available in a nonexclusive manner CP/M and its derivatives. This right comes from the company, DRDOS, Inc.'s purchase of Digital Research, the company and all assets, diff --git a/src/licensedcode/data/licenses/cpm-2022.yml b/src/licensedcode/data/licenses/cpm-2022.yml deleted file mode 100644 index 8e3954a67d5..00000000000 --- a/src/licensedcode/data/licenses/cpm-2022.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cpm-2022 -short_name: CP/M License 2022 -name: CP/M License 2022 -category: Permissive -owner: DRDOS -homepage_url: http://www.cpm.z80.de/license.html -spdx_license_key: LicenseRef-scancode-cpm-2022 diff --git a/src/licensedcode/data/licenses/cpol-1.0.LICENSE b/src/licensedcode/data/licenses/cpol-1.0.LICENSE index dea79295832..8439a02cf3f 100644 --- a/src/licensedcode/data/licenses/cpol-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cpol-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: cpol-1.0 +short_name: CPOL 1.0 +name: Code Project Open License (CPOL) 1.0 +category: Free Restricted +owner: Code Project +homepage_url: http://www.codeproject.com/info/cpol10.aspx +notes: this license had a short life and was quickly replaced by version 1.02. Yet there are + some example of usage in the wild. +spdx_license_key: LicenseRef-scancode-cpol-1.0 +text_urls: + - http://www.codeproject.com/info/CPOL.zip + - http://www.codeproject.com/info/cpol10.aspx + - https://web.archive.org/web/20080107184757/https://www.codeproject.com/info/cpol10.aspx +minimum_coverage: 95 +--- + The Code Project Open License (CPOL) 1.0 ***** Preamble ***** diff --git a/src/licensedcode/data/licenses/cpol-1.0.yml b/src/licensedcode/data/licenses/cpol-1.0.yml deleted file mode 100644 index 7e310d8ac2c..00000000000 --- a/src/licensedcode/data/licenses/cpol-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: cpol-1.0 -short_name: CPOL 1.0 -name: Code Project Open License (CPOL) 1.0 -category: Free Restricted -owner: Code Project -homepage_url: http://www.codeproject.com/info/cpol10.aspx -notes: this license had a short life and was quickly replaced by version 1.02. Yet there are - some example of usage in the wild. -spdx_license_key: LicenseRef-scancode-cpol-1.0 -text_urls: - - http://www.codeproject.com/info/CPOL.zip - - http://www.codeproject.com/info/cpol10.aspx - - https://web.archive.org/web/20080107184757/https://www.codeproject.com/info/cpol10.aspx -minimum_coverage: 95 diff --git a/src/licensedcode/data/licenses/cpol-1.02.LICENSE b/src/licensedcode/data/licenses/cpol-1.02.LICENSE index af907d28339..4fa0b96fcea 100644 --- a/src/licensedcode/data/licenses/cpol-1.02.LICENSE +++ b/src/licensedcode/data/licenses/cpol-1.02.LICENSE @@ -1,3 +1,16 @@ +--- +key: cpol-1.02 +short_name: CPOL 1.02 +name: Code Project Open License (CPOL) 1.02 +category: Free Restricted +owner: Code Project +homepage_url: http://www.codeproject.com/info/cpol10.aspx +spdx_license_key: CPOL-1.02 +text_urls: + - http://www.codeproject.com/info/CPOL.zip + - http://www.codeproject.com/info/cpol10.aspx +--- + The Code Project Open License (CPOL) 1.02 Preamble diff --git a/src/licensedcode/data/licenses/cpol-1.02.yml b/src/licensedcode/data/licenses/cpol-1.02.yml deleted file mode 100644 index 80ad251b778..00000000000 --- a/src/licensedcode/data/licenses/cpol-1.02.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: cpol-1.02 -short_name: CPOL 1.02 -name: Code Project Open License (CPOL) 1.02 -category: Free Restricted -owner: Code Project -homepage_url: http://www.codeproject.com/info/cpol10.aspx -spdx_license_key: CPOL-1.02 -text_urls: - - http://www.codeproject.com/info/CPOL.zip - - http://www.codeproject.com/info/cpol10.aspx diff --git a/src/licensedcode/data/licenses/cpp-core-guidelines.LICENSE b/src/licensedcode/data/licenses/cpp-core-guidelines.LICENSE index 6f95845da81..95a1cbad1c4 100644 --- a/src/licensedcode/data/licenses/cpp-core-guidelines.LICENSE +++ b/src/licensedcode/data/licenses/cpp-core-guidelines.LICENSE @@ -1,3 +1,15 @@ +--- +key: cpp-core-guidelines +short_name: CppCoreGuidelines License +name: CppCoreGuidelines License +category: Permissive +owner: isocpp +homepage_url: https://github.com/isocpp/CppCoreGuidelines/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-cpp-core-guidelines +ignorable_emails: + - admin@isocpp.org +--- + Standard C++ Foundation grants you a worldwide, nonexclusive, royalty-free, perpetual license to copy, use, modify, and create derivative works from this project for your personal or internal business use only. The above copyright diff --git a/src/licensedcode/data/licenses/cpp-core-guidelines.yml b/src/licensedcode/data/licenses/cpp-core-guidelines.yml deleted file mode 100644 index 5fab1a54672..00000000000 --- a/src/licensedcode/data/licenses/cpp-core-guidelines.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cpp-core-guidelines -short_name: CppCoreGuidelines License -name: CppCoreGuidelines License -category: Permissive -owner: isocpp -homepage_url: https://github.com/isocpp/CppCoreGuidelines/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-cpp-core-guidelines -ignorable_emails: - - admin@isocpp.org diff --git a/src/licensedcode/data/licenses/crapl-0.1.LICENSE b/src/licensedcode/data/licenses/crapl-0.1.LICENSE index 57ce56fc3ac..96d2e8a8a32 100644 --- a/src/licensedcode/data/licenses/crapl-0.1.LICENSE +++ b/src/licensedcode/data/licenses/crapl-0.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: crapl-0.1 +short_name: CRAPL v0 BETA 1 +name: CRAPL v0 BETA 1 +category: Proprietary Free +owner: Matthew Might +homepage_url: http://matt.might.net/articles/crapl/ +spdx_license_key: LicenseRef-scancode-crapl-0.1 +text_urls: + - http://matt.might.net/articles/crapl/CRAPL-LICENSE.txt +ignorable_urls: + - http://matt.might.net/ +--- + THE CRAPL v0 BETA 1 @@ -112,4 +126,4 @@ 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. +PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/crapl-0.1.yml b/src/licensedcode/data/licenses/crapl-0.1.yml deleted file mode 100644 index 9c937646856..00000000000 --- a/src/licensedcode/data/licenses/crapl-0.1.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: crapl-0.1 -short_name: CRAPL v0 BETA 1 -name: CRAPL v0 BETA 1 -category: Proprietary Free -owner: Matthew Might -homepage_url: http://matt.might.net/articles/crapl/ -spdx_license_key: LicenseRef-scancode-crapl-0.1 -text_urls: - - http://matt.might.net/articles/crapl/CRAPL-LICENSE.txt -ignorable_urls: - - http://matt.might.net/ diff --git a/src/licensedcode/data/licenses/crashlytics-agreement-2018.LICENSE b/src/licensedcode/data/licenses/crashlytics-agreement-2018.LICENSE index 0bcfecef8b4..84c843b4fb4 100644 --- a/src/licensedcode/data/licenses/crashlytics-agreement-2018.LICENSE +++ b/src/licensedcode/data/licenses/crashlytics-agreement-2018.LICENSE @@ -1,3 +1,21 @@ +--- +key: crashlytics-agreement-2018 +short_name: Crashlytics Agreement 2018 +name: Crashlytics Agreement 2018 +category: Commercial +owner: Google +spdx_license_key: LicenseRef-scancode-crashlytics-agreement-2018 +ignorable_copyrights: + - (c) Google LLC +ignorable_holders: + - Google LLC +ignorable_urls: + - http://www.answers.io/ + - http://www.crashlytics.com/ +ignorable_emails: + - support@crashlytics.com +--- + Last Updated: July 23, 2018 This Crashlytics Agreement ("Agreement") is entered into by Crashlytics (defined as either: (a) Google Ireland Limited, with offices at Gordon House, Barrow Street, Dublin 4, Ireland, if Your principal place of business (for entities) or place of residence (for individuals) is in any country within Europe, the Middle East, or Africa ("EMEA"), (b) Google Asia Pacific Pte. Ltd., with offices at 8 Marina View Asia Square 1 #30-01 Singapore 018960, if Your principal place of business (for entities) or place of residence (for individuals) is in any country within the Asia Pacific region ("APAC"), or (c) Google LLC, with offices at 1600 Amphitheatre Parkway, Mountain View, California 94043, if Your principal place of business (for entities) or place of residence (for individuals) is in any country in the world other than those in EMEA and APAC) and you ("Developer" or "You") and governs your access and use of www.crashlytics.com and the Crashlytics crash reporting and beta testing solution (collectively, the "Services" as more fully described below). If You are accessing or using the Services on behalf of a company or other legal entity, You represent and warrant that You are an authorized representative of that entity and have the authority to bind such entity to this Agreement, in which case the terms "Developer" and "You" shall refer to such entity. You and Crashlytics hereby agree as follows: diff --git a/src/licensedcode/data/licenses/crashlytics-agreement-2018.yml b/src/licensedcode/data/licenses/crashlytics-agreement-2018.yml deleted file mode 100644 index b03301a35e7..00000000000 --- a/src/licensedcode/data/licenses/crashlytics-agreement-2018.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: crashlytics-agreement-2018 -short_name: Crashlytics Agreement 2018 -name: Crashlytics Agreement 2018 -category: Commercial -owner: Google -spdx_license_key: LicenseRef-scancode-crashlytics-agreement-2018 -ignorable_copyrights: - - (c) Google LLC -ignorable_holders: - - Google LLC -ignorable_urls: - - http://www.answers.io/ - - http://www.crashlytics.com/ -ignorable_emails: - - support@crashlytics.com diff --git a/src/licensedcode/data/licenses/crcalc.LICENSE b/src/licensedcode/data/licenses/crcalc.LICENSE index 19ce393c4af..f96041af3b8 100644 --- a/src/licensedcode/data/licenses/crcalc.LICENSE +++ b/src/licensedcode/data/licenses/crcalc.LICENSE @@ -1,3 +1,18 @@ +--- +key: crcalc +short_name: CRCalc license +name: CRCalc license +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://www.hboehm.info/crcalc/COPYRIGHT.txt +notes: this is included in Android and is a rather unique text +spdx_license_key: LicenseRef-scancode-crcalc +text_urls: + - http://www.hboehm.info/crcalc/COPYRIGHT.txt + - http://www.hboehm.info/new_crcalc/COPYRIGHT.txt +minimum_coverage: 80 +--- + Permission is granted free of charge to copy, modify, use and distribute this software provided you include the entirety of this notice in all copies made. @@ -25,4 +40,4 @@ THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY RESULTING FROM HEWLETT-PACKARD's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT -EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. +EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/crcalc.yml b/src/licensedcode/data/licenses/crcalc.yml deleted file mode 100644 index e153217d78b..00000000000 --- a/src/licensedcode/data/licenses/crcalc.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: crcalc -short_name: CRCalc license -name: CRCalc license -category: Permissive -owner: SGI - Silicon Graphics -homepage_url: http://www.hboehm.info/crcalc/COPYRIGHT.txt -notes: this is included in Android and is a rather unique text -spdx_license_key: LicenseRef-scancode-crcalc -text_urls: - - http://www.hboehm.info/crcalc/COPYRIGHT.txt - - http://www.hboehm.info/new_crcalc/COPYRIGHT.txt -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/crossword.LICENSE b/src/licensedcode/data/licenses/crossword.LICENSE index 02154ecc616..bec5437eafc 100644 --- a/src/licensedcode/data/licenses/crossword.LICENSE +++ b/src/licensedcode/data/licenses/crossword.LICENSE @@ -1,3 +1,17 @@ +--- +key: crossword +short_name: Crossword License +name: Crossword License +category: Permissive +owner: Gerd Neugebauer +homepage_url: https://fedoraproject.org/wiki/Licensing/Crossword +spdx_license_key: Crossword +ignorable_copyrights: + - Copyright (c) 1995-2009 Gerd Neugebauer +ignorable_holders: + - Gerd Neugebauer +--- + Copyright (C) 1995-2009 Gerd Neugebauer   cwpuzzle.dtx is distributed in the hope that it will be useful, but WITHOUT ANY diff --git a/src/licensedcode/data/licenses/crossword.yml b/src/licensedcode/data/licenses/crossword.yml deleted file mode 100644 index ea30c573244..00000000000 --- a/src/licensedcode/data/licenses/crossword.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: crossword -short_name: Crossword License -name: Crossword License -category: Permissive -owner: Gerd Neugebauer -homepage_url: https://fedoraproject.org/wiki/Licensing/Crossword -spdx_license_key: Crossword -ignorable_copyrights: - - Copyright (c) 1995-2009 Gerd Neugebauer -ignorable_holders: - - Gerd Neugebauer diff --git a/src/licensedcode/data/licenses/crypto-keys-redistribution.LICENSE b/src/licensedcode/data/licenses/crypto-keys-redistribution.LICENSE index 85a6ef1677b..db5650515a3 100644 --- a/src/licensedcode/data/licenses/crypto-keys-redistribution.LICENSE +++ b/src/licensedcode/data/licenses/crypto-keys-redistribution.LICENSE @@ -1,5 +1,22 @@ +--- +key: crypto-keys-redistribution +short_name: Cryptographic keys redistribution +name: Cryptographic keys redistribution +category: Copyleft +owner: kernel.org +notes: | + This was found as a Linux addition to the GPL in Linux 3.x in files such as + in drivers/scsi/aha1740.c drivers/message/i2o/i2o_scsi.c + drivers/ide/cs5520.c drivers/ide/ide-pci-generic.c drivers/ide/ide-io.c + drivers/scsi/eata_pio.c drivers/scsi/in2000.c drivers/scsi/qlogicfas.c + drivers/scsi/qlogicfas408.c +spdx_license_key: LicenseRef-scancode-crypto-keys-redistribution +text_urls: + - http://git.savannah.gnu.org/cgit/dmidecode.git/tree/dmidecode.c?id=ee07a1b4249560d620d05194eb8ff61b40d3ce23 +--- + For the avoidance of doubt the "preferred form" of this code is one which is in an open non patent encumbered format. Where cryptographic key signing forms part of the process of creating an executable the information including keys needed to generate an equivalently functional executable -are deemed to be part of the source code. +are deemed to be part of the source code. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/crypto-keys-redistribution.yml b/src/licensedcode/data/licenses/crypto-keys-redistribution.yml deleted file mode 100644 index d4bf5f5746d..00000000000 --- a/src/licensedcode/data/licenses/crypto-keys-redistribution.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: crypto-keys-redistribution -short_name: Cryptographic keys redistribution -name: Cryptographic keys redistribution -category: Copyleft -owner: kernel.org -notes: | - This was found as a Linux addition to the GPL in Linux 3.x in files such as - in drivers/scsi/aha1740.c drivers/message/i2o/i2o_scsi.c - drivers/ide/cs5520.c drivers/ide/ide-pci-generic.c drivers/ide/ide-io.c - drivers/scsi/eata_pio.c drivers/scsi/in2000.c drivers/scsi/qlogicfas.c - drivers/scsi/qlogicfas408.c -spdx_license_key: LicenseRef-scancode-crypto-keys-redistribution -text_urls: - - http://git.savannah.gnu.org/cgit/dmidecode.git/tree/dmidecode.c?id=ee07a1b4249560d620d05194eb8ff61b40d3ce23 diff --git a/src/licensedcode/data/licenses/cryptopp.LICENSE b/src/licensedcode/data/licenses/cryptopp.LICENSE index d507087359c..0f2baec575d 100644 --- a/src/licensedcode/data/licenses/cryptopp.LICENSE +++ b/src/licensedcode/data/licenses/cryptopp.LICENSE @@ -1,3 +1,16 @@ +--- +key: cryptopp +short_name: Crypto++ License +name: Crypto++ License +category: Permissive +owner: Wei Dai +spdx_license_key: LicenseRef-scancode-cryptopp +ignorable_copyrights: + - Copyright (c) 1995-2010 by Wei Dai +ignorable_holders: + - Wei Dai +--- + Compilation Copyright (c) 1995-2010 by Wei Dai. All rights reserved. This copyright applies only to this software distribution package as a diff --git a/src/licensedcode/data/licenses/cryptopp.yml b/src/licensedcode/data/licenses/cryptopp.yml deleted file mode 100644 index 0c0549553ed..00000000000 --- a/src/licensedcode/data/licenses/cryptopp.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: cryptopp -short_name: Crypto++ License -name: Crypto++ License -category: Permissive -owner: Wei Dai -spdx_license_key: LicenseRef-scancode-cryptopp -ignorable_copyrights: - - Copyright (c) 1995-2010 by Wei Dai -ignorable_holders: - - Wei Dai diff --git a/src/licensedcode/data/licenses/crystal-stacker.LICENSE b/src/licensedcode/data/licenses/crystal-stacker.LICENSE index 7705e91d135..b5487035aad 100644 --- a/src/licensedcode/data/licenses/crystal-stacker.LICENSE +++ b/src/licensedcode/data/licenses/crystal-stacker.LICENSE @@ -1,3 +1,14 @@ +--- +key: crystal-stacker +short_name: Crystal Stacker License +name: Crystal Stacker License +category: Permissive +owner: NewCreature Design +homepage_url: https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker +spdx_license_key: CrystalStacker +minimum_coverage: 20 +--- + Crystal Stacker is freeware. This means you can pass copies around freely provided you include this document in it's original form in your distribution. Please see the "Contacting Us" section of this document if you need to contact us for any reason. Disclaimer diff --git a/src/licensedcode/data/licenses/crystal-stacker.yml b/src/licensedcode/data/licenses/crystal-stacker.yml deleted file mode 100644 index 23bc1d54efa..00000000000 --- a/src/licensedcode/data/licenses/crystal-stacker.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: crystal-stacker -short_name: Crystal Stacker License -name: Crystal Stacker License -category: Permissive -owner: NewCreature Design -homepage_url: https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd=Licensing/CrystalStacker -spdx_license_key: CrystalStacker -minimum_coverage: 20 diff --git a/src/licensedcode/data/licenses/csl-1.0.LICENSE b/src/licensedcode/data/licenses/csl-1.0.LICENSE index 8257267dadc..91a18a9249e 100644 --- a/src/licensedcode/data/licenses/csl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/csl-1.0.LICENSE @@ -1,3 +1,29 @@ +--- +key: csl-1.0 +short_name: CSL-1.0 +name: Community Specification License 1.0 +category: Permissive +owner: Linux Foundation +homepage_url: https://github.com/CommunitySpecification/1.0 +spdx_license_key: Community-Spec-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-csl-1.0 +text_urls: + - https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md +other_urls: + - https://github.com/spdx/spdx-3-model/blob/main/License.md +ignorable_copyrights: + - Copyright 2020 Joint Development Foundation + - Copyright Attribution. As +ignorable_holders: + - Attribution. As + - Joint Development Foundation +ignorable_authors: + - the Working Group +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + Community Specification License 1.0 The Purpose of this License. This License sets forth the terms under which diff --git a/src/licensedcode/data/licenses/csl-1.0.yml b/src/licensedcode/data/licenses/csl-1.0.yml deleted file mode 100644 index 2f98228da48..00000000000 --- a/src/licensedcode/data/licenses/csl-1.0.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: csl-1.0 -short_name: CSL-1.0 -name: Community Specification License 1.0 -category: Permissive -owner: Linux Foundation -homepage_url: https://github.com/CommunitySpecification/1.0 -spdx_license_key: Community-Spec-1.0 -other_spdx_license_keys: - - LicenseRef-scancode-csl-1.0 -text_urls: - - https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md -other_urls: - - https://github.com/spdx/spdx-3-model/blob/main/License.md -ignorable_copyrights: - - Copyright 2020 Joint Development Foundation - - Copyright Attribution. As -ignorable_holders: - - Attribution. As - - Joint Development Foundation -ignorable_authors: - - the Working Group -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/licenses/csla.LICENSE b/src/licensedcode/data/licenses/csla.LICENSE index 3c1ab9be12f..418dc0dbdb0 100644 --- a/src/licensedcode/data/licenses/csla.LICENSE +++ b/src/licensedcode/data/licenses/csla.LICENSE @@ -1,3 +1,21 @@ +--- +key: csla +short_name: CSLA License +name: CSLA .NET License +category: Free Restricted +owner: Marimer, LLC +homepage_url: https://github.com/MarimerLLC/csla/blob/master/license.txt +spdx_license_key: LicenseRef-scancode-csla +text_urls: + - https://github.com/MarimerLLC/csla/blob/0650fd13adc4689dcd6ec7b8f4609563ee12f401/license.md +ignorable_copyrights: + - Copyright 2013 by Marimer, LLC, Eden Prairie, MN + - Copyright 2013 by Marimer, LLC. +ignorable_holders: + - Marimer, LLC, Eden Prairie, MN + - Marimer, LLC. +--- + LICENSE AND WARRANTY Version 4.0.3 diff --git a/src/licensedcode/data/licenses/csla.yml b/src/licensedcode/data/licenses/csla.yml deleted file mode 100644 index 31287ac6adc..00000000000 --- a/src/licensedcode/data/licenses/csla.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: csla -short_name: CSLA License -name: CSLA .NET License -category: Free Restricted -owner: Marimer, LLC -homepage_url: https://github.com/MarimerLLC/csla/blob/master/license.txt -spdx_license_key: LicenseRef-scancode-csla -text_urls: - - https://github.com/MarimerLLC/csla/blob/0650fd13adc4689dcd6ec7b8f4609563ee12f401/license.md -ignorable_copyrights: - - Copyright 2013 by Marimer, LLC, Eden Prairie, MN - - Copyright 2013 by Marimer, LLC. -ignorable_holders: - - Marimer, LLC, Eden Prairie, MN - - Marimer, LLC. diff --git a/src/licensedcode/data/licenses/csprng.LICENSE b/src/licensedcode/data/licenses/csprng.LICENSE index bd26698fe77..e711a7c44d1 100644 --- a/src/licensedcode/data/licenses/csprng.LICENSE +++ b/src/licensedcode/data/licenses/csprng.LICENSE @@ -1,3 +1,14 @@ +--- +key: csprng +short_name: CSPRNG +name: CSPRNG +category: Permissive +owner: Peter Gutmann +spdx_license_key: LicenseRef-scancode-csprng +ignorable_emails: + - pgut001@cs.auckland.ac.nz +--- + Redistribution of the CSPRNG modules and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/csprng.yml b/src/licensedcode/data/licenses/csprng.yml deleted file mode 100644 index ec6b5bfaa1c..00000000000 --- a/src/licensedcode/data/licenses/csprng.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: csprng -short_name: CSPRNG -name: CSPRNG -category: Permissive -owner: Peter Gutmann -spdx_license_key: LicenseRef-scancode-csprng -ignorable_emails: - - pgut001@cs.auckland.ac.nz diff --git a/src/licensedcode/data/licenses/ctl-linux-firmware.LICENSE b/src/licensedcode/data/licenses/ctl-linux-firmware.LICENSE index e641bdac9da..6843d568dd1 100644 --- a/src/licensedcode/data/licenses/ctl-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/ctl-linux-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: ctl-linux-firmware +short_name: Creative Technology Linux Firmware License +name: Creative Technology Linux Firmware License +category: Proprietary Free +owner: Creative Technology Ltd +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ca0132 +spdx_license_key: LicenseRef-scancode-ctl-linux-firmware +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/ctl-linux-firmware.yml b/src/licensedcode/data/licenses/ctl-linux-firmware.yml deleted file mode 100644 index 7a175bf73b1..00000000000 --- a/src/licensedcode/data/licenses/ctl-linux-firmware.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ctl-linux-firmware -short_name: Creative Technology Linux Firmware License -name: Creative Technology Linux Firmware License -category: Proprietary Free -owner: Creative Technology Ltd -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ca0132 -spdx_license_key: LicenseRef-scancode-ctl-linux-firmware -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/licenses/cua-opl-1.0.LICENSE b/src/licensedcode/data/licenses/cua-opl-1.0.LICENSE index 745ef1f5533..e8d91645cd4 100644 --- a/src/licensedcode/data/licenses/cua-opl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cua-opl-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: cua-opl-1.0 +short_name: CUA-OPL-1.0 +name: CUA Office Public License 1.0 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/cuaoffice.php +notes: Per SPDX.org, this license is OSI certifified. +spdx_license_key: CUA-OPL-1.0 +osi_license_key: CUA-OPL-1.0 +text_urls: + - http://opensource.org/licenses/cuaoffice.php +osi_url: http://opensource.org/licenses/cuaoffice.php +other_urls: + - http://opensource.org/licenses/CUA-OPL-1.0 + - https://opensource.org/licenses/CUA-OPL-1.0 +ignorable_urls: + - http://cuaoffice.sourceforge.net/ +--- + CUA Office Public License Version 1.0 1. Definitions. diff --git a/src/licensedcode/data/licenses/cua-opl-1.0.yml b/src/licensedcode/data/licenses/cua-opl-1.0.yml deleted file mode 100644 index 2a0281910b3..00000000000 --- a/src/licensedcode/data/licenses/cua-opl-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: cua-opl-1.0 -short_name: CUA-OPL-1.0 -name: CUA Office Public License 1.0 -category: Copyleft Limited -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/cuaoffice.php -notes: Per SPDX.org, this license is OSI certifified. -spdx_license_key: CUA-OPL-1.0 -osi_license_key: CUA-OPL-1.0 -text_urls: - - http://opensource.org/licenses/cuaoffice.php -osi_url: http://opensource.org/licenses/cuaoffice.php -other_urls: - - http://opensource.org/licenses/CUA-OPL-1.0 - - https://opensource.org/licenses/CUA-OPL-1.0 -ignorable_urls: - - http://cuaoffice.sourceforge.net/ diff --git a/src/licensedcode/data/licenses/cube.LICENSE b/src/licensedcode/data/licenses/cube.LICENSE index da5e799feb4..69860978a8d 100644 --- a/src/licensedcode/data/licenses/cube.LICENSE +++ b/src/licensedcode/data/licenses/cube.LICENSE @@ -1,3 +1,17 @@ +--- +key: cube +short_name: Cube License +name: Cube License +category: Permissive +owner: Wouter van Oortmerssen +homepage_url: https://fedoraproject.org/wiki/Licensing/Cube +spdx_license_key: Cube +ignorable_copyrights: + - Copyright (c) 2001-2003 Wouter van Oortmerssen +ignorable_holders: + - Wouter van Oortmerssen +--- + Cube game engine source code, 20 dec 2003 release. Copyright (C) 2001-2003 Wouter van Oortmerssen. diff --git a/src/licensedcode/data/licenses/cube.yml b/src/licensedcode/data/licenses/cube.yml deleted file mode 100644 index 83598754bc7..00000000000 --- a/src/licensedcode/data/licenses/cube.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: cube -short_name: Cube License -name: Cube License -category: Permissive -owner: Wouter van Oortmerssen -homepage_url: https://fedoraproject.org/wiki/Licensing/Cube -spdx_license_key: Cube -ignorable_copyrights: - - Copyright (c) 2001-2003 Wouter van Oortmerssen -ignorable_holders: - - Wouter van Oortmerssen diff --git a/src/licensedcode/data/licenses/cubiware-software-1.0.LICENSE b/src/licensedcode/data/licenses/cubiware-software-1.0.LICENSE index 7a1b06b72b0..cddda1aaece 100644 --- a/src/licensedcode/data/licenses/cubiware-software-1.0.LICENSE +++ b/src/licensedcode/data/licenses/cubiware-software-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: cubiware-software-1.0 +short_name: Cubiware Software License 1.0 +name: Cubiware Sp. z o.o. Software License Version 1.0 +category: Commercial +owner: TiVo +spdx_license_key: LicenseRef-scancode-cubiware-software-1.0 +other_urls: + - https://blog.tivo.com/2015/05/tivo-acquires-cubiware/ +--- + Cubiware Sp. z o.o. Software License Version 1.0 Any rights which are not expressly granted in this License are entirely and diff --git a/src/licensedcode/data/licenses/cubiware-software-1.0.yml b/src/licensedcode/data/licenses/cubiware-software-1.0.yml deleted file mode 100644 index 27acc4222fa..00000000000 --- a/src/licensedcode/data/licenses/cubiware-software-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: cubiware-software-1.0 -short_name: Cubiware Software License 1.0 -name: Cubiware Sp. z o.o. Software License Version 1.0 -category: Commercial -owner: TiVo -spdx_license_key: LicenseRef-scancode-cubiware-software-1.0 -other_urls: - - https://blog.tivo.com/2015/05/tivo-acquires-cubiware/ diff --git a/src/licensedcode/data/licenses/cups-apple-os-exception.LICENSE b/src/licensedcode/data/licenses/cups-apple-os-exception.LICENSE index 9a1ff18b3c0..b1196b4970b 100644 --- a/src/licensedcode/data/licenses/cups-apple-os-exception.LICENSE +++ b/src/licensedcode/data/licenses/cups-apple-os-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: cups-apple-os-exception +short_name: CUPS Apple OS Exception to GPL and LGPL +name: CUPS Apple OS Exception to GPL and LGPL +category: Copyleft Limited +owner: Easy Software Products +homepage_url: https://opensource.apple.com/source/cups/cups-91/LICENSE.txt.auto.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-cups-apple-os-exception +--- + In addition, as the copyright holder of CUPS, Apple Inc. grants the following special exceptions: diff --git a/src/licensedcode/data/licenses/cups-apple-os-exception.yml b/src/licensedcode/data/licenses/cups-apple-os-exception.yml deleted file mode 100644 index 91547a7223e..00000000000 --- a/src/licensedcode/data/licenses/cups-apple-os-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: cups-apple-os-exception -short_name: CUPS Apple OS Exception to GPL and LGPL -name: CUPS Apple OS Exception to GPL and LGPL -category: Copyleft Limited -owner: Easy Software Products -homepage_url: https://opensource.apple.com/source/cups/cups-91/LICENSE.txt.auto.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-cups-apple-os-exception diff --git a/src/licensedcode/data/licenses/cups.LICENSE b/src/licensedcode/data/licenses/cups.LICENSE index b254bfb0432..86ba0a7fa8e 100644 --- a/src/licensedcode/data/licenses/cups.LICENSE +++ b/src/licensedcode/data/licenses/cups.LICENSE @@ -1,3 +1,26 @@ +--- +key: cups +short_name: CUPS License +name: CUPS License +category: Copyleft +owner: Apple +homepage_url: http://www.cups.org/ +spdx_license_key: LicenseRef-scancode-cups +text_urls: + - http://www.cups.org/ +ignorable_copyrights: + - Copyright 2007-2009 by Apple Inc. + - copyright 2006 by Jelmer Vernooij +ignorable_holders: + - Apple Inc. + - Jelmer Vernooij +ignorable_authors: + - Apple Inc. + - permission from Apple Inc. +ignorable_urls: + - http://www.cups.org/ +--- + Software License Agreement Copyright 2007-2009 by Apple Inc. diff --git a/src/licensedcode/data/licenses/cups.yml b/src/licensedcode/data/licenses/cups.yml deleted file mode 100644 index d63a33d34ea..00000000000 --- a/src/licensedcode/data/licenses/cups.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: cups -short_name: CUPS License -name: CUPS License -category: Copyleft -owner: Apple -homepage_url: http://www.cups.org/ -spdx_license_key: LicenseRef-scancode-cups -text_urls: - - http://www.cups.org/ -ignorable_copyrights: - - Copyright 2007-2009 by Apple Inc. - - copyright 2006 by Jelmer Vernooij -ignorable_holders: - - Apple Inc. - - Jelmer Vernooij -ignorable_authors: - - Apple Inc. - - permission from Apple Inc. -ignorable_urls: - - http://www.cups.org/ diff --git a/src/licensedcode/data/licenses/curl.LICENSE b/src/licensedcode/data/licenses/curl.LICENSE index c29b207784f..5af5af186a5 100644 --- a/src/licensedcode/data/licenses/curl.LICENSE +++ b/src/licensedcode/data/licenses/curl.LICENSE @@ -1,3 +1,21 @@ +--- +key: curl +short_name: cURL License +name: cURL License +category: Permissive +owner: cURL +homepage_url: http://curl.haxx.se/ +spdx_license_key: curl +text_urls: + - http://curl.haxx.se/docs/copyright.html + - http://www.focuseek.com/manuals/License/curl-license.html +faq_url: http://curl.haxx.se/docs/faq.html +other_urls: + - http://curl.haxx.se/legal/licmix.html + - https://github.com/bagder/curl/blob/master/COPYING +minimum_coverage: 15 +--- + Permission to use, copy, modify, and 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. diff --git a/src/licensedcode/data/licenses/curl.yml b/src/licensedcode/data/licenses/curl.yml deleted file mode 100644 index 90a59ae67cd..00000000000 --- a/src/licensedcode/data/licenses/curl.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: curl -short_name: cURL License -name: cURL License -category: Permissive -owner: cURL -homepage_url: http://curl.haxx.se/ -spdx_license_key: curl -text_urls: - - http://curl.haxx.se/docs/copyright.html - - http://www.focuseek.com/manuals/License/curl-license.html -faq_url: http://curl.haxx.se/docs/faq.html -other_urls: - - http://curl.haxx.se/legal/licmix.html - - https://github.com/bagder/curl/blob/master/COPYING -minimum_coverage: 15 diff --git a/src/licensedcode/data/licenses/cve-tou.LICENSE b/src/licensedcode/data/licenses/cve-tou.LICENSE index 63249257ece..89460f0286e 100644 --- a/src/licensedcode/data/licenses/cve-tou.LICENSE +++ b/src/licensedcode/data/licenses/cve-tou.LICENSE @@ -1,3 +1,13 @@ +--- +key: cve-tou +short_name: CVE ToU +name: Common Vulnerability Enumeration ToU License +category: Permissive +owner: Mitre +homepage_url: https://cve.mitre.org/about/termsofuse.html +spdx_license_key: LicenseRef-scancode-cve-tou +--- + CVE Usage: MITRE hereby grants 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 diff --git a/src/licensedcode/data/licenses/cve-tou.yml b/src/licensedcode/data/licenses/cve-tou.yml deleted file mode 100644 index 53a9c83bb3d..00000000000 --- a/src/licensedcode/data/licenses/cve-tou.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cve-tou -short_name: CVE ToU -name: Common Vulnerability Enumeration ToU License -category: Permissive -owner: Mitre -homepage_url: https://cve.mitre.org/about/termsofuse.html -spdx_license_key: LicenseRef-scancode-cve-tou diff --git a/src/licensedcode/data/licenses/cvwl.LICENSE b/src/licensedcode/data/licenses/cvwl.LICENSE index af068cd72fa..e23bf9847e4 100644 --- a/src/licensedcode/data/licenses/cvwl.LICENSE +++ b/src/licensedcode/data/licenses/cvwl.LICENSE @@ -1,3 +1,22 @@ +--- +key: cvwl +short_name: Collaborative Virtual Workspace License +name: Collaborative Virtual Workspace License +category: Proprietary Free +owner: Mitre +homepage_url: https://opensource.org/licenses/mitrepl +spdx_license_key: LicenseRef-scancode-cvwl +minimum_coverage: 30 +ignorable_copyrights: + - Copyright (c) . The MITRE Corporation (http://www.mitre.org/) +ignorable_holders: + - The MITRE Corporation +ignorable_urls: + - http://www.mitre.org/ +ignorable_emails: + - corpc@mitre.org +--- + Collaborative Virtual Workspace License (CVW) License Agreement General @@ -14,4 +33,4 @@ General 5. Downloaders of the CVW software may choose to have their access to and use of the CVW software governed under either the GNU General Public License (Version 2) or the Mozilla License (Version 1.0). In either case, if you transmit source code improvements or modifications to MITRE, you agree to assign to MITRE copyright to such improvements or modifications, which MITRE will then make available from MITRE's web site. - 6. If you choose to use the Mozilla License (Version 1.0), please note that because the software in this module was developed using, at least in part, Government funds, the Government has certain rights in the module which apply instead of the Government rights in Section 10 of the Mozilla License. These Government rights DO NOT affect your right to use the module on an Open Source basis as set forth in the Mozilla License. The statement of Government rights which replaces Section 10 of the Mozilla License is stated in Section 4 above. + 6. If you choose to use the Mozilla License (Version 1.0), please note that because the software in this module was developed using, at least in part, Government funds, the Government has certain rights in the module which apply instead of the Government rights in Section 10 of the Mozilla License. These Government rights DO NOT affect your right to use the module on an Open Source basis as set forth in the Mozilla License. The statement of Government rights which replaces Section 10 of the Mozilla License is stated in Section 4 above. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/cvwl.yml b/src/licensedcode/data/licenses/cvwl.yml deleted file mode 100644 index 02314bb0a02..00000000000 --- a/src/licensedcode/data/licenses/cvwl.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: cvwl -short_name: Collaborative Virtual Workspace License -name: Collaborative Virtual Workspace License -category: Proprietary Free -owner: Mitre -homepage_url: https://opensource.org/licenses/mitrepl -spdx_license_key: LicenseRef-scancode-cvwl -minimum_coverage: 30 -ignorable_copyrights: - - Copyright (c) . The MITRE Corporation (http://www.mitre.org/) -ignorable_holders: - - The MITRE Corporation -ignorable_urls: - - http://www.mitre.org/ -ignorable_emails: - - corpc@mitre.org diff --git a/src/licensedcode/data/licenses/cwe-tou.LICENSE b/src/licensedcode/data/licenses/cwe-tou.LICENSE index b93b59cdaab..e36ce3034d6 100644 --- a/src/licensedcode/data/licenses/cwe-tou.LICENSE +++ b/src/licensedcode/data/licenses/cwe-tou.LICENSE @@ -1,3 +1,13 @@ +--- +key: cwe-tou +short_name: CWE ToU +name: Common Weaness Enumeration ToU License +category: Permissive +owner: Mitre +homepage_url: https://cwe.mitre.org/about/termsofuse.html +spdx_license_key: LicenseRef-scancode-cwe-tou +--- + CWE Usage: MITRE hereby grants you a non-exclusive, royalty-free license to use CWE for research, development, and commercial purposes. Any copy you make for such purposes is authorized on the condition that you reproduce MITRE’s diff --git a/src/licensedcode/data/licenses/cwe-tou.yml b/src/licensedcode/data/licenses/cwe-tou.yml deleted file mode 100644 index 6e362c5ab7a..00000000000 --- a/src/licensedcode/data/licenses/cwe-tou.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: cwe-tou -short_name: CWE ToU -name: Common Weaness Enumeration ToU License -category: Permissive -owner: Mitre -homepage_url: https://cwe.mitre.org/about/termsofuse.html -spdx_license_key: LicenseRef-scancode-cwe-tou diff --git a/src/licensedcode/data/licenses/cximage.LICENSE b/src/licensedcode/data/licenses/cximage.LICENSE index 4a49d8c2973..89cd3b539d8 100644 --- a/src/licensedcode/data/licenses/cximage.LICENSE +++ b/src/licensedcode/data/licenses/cximage.LICENSE @@ -1,3 +1,22 @@ +--- +key: cximage +short_name: CxImage License +name: CxImage License +category: Permissive +owner: CxImage Project +homepage_url: http://www.xdp.it/cximage/ +spdx_license_key: LicenseRef-scancode-cximage +minimum_coverage: 30 +ignorable_copyrights: + - Copyright (c) 1995, Alejandro Aguilar Sierra + - Copyright (c) 2001 - 2004, Davide Pizzolato +ignorable_holders: + - Alejandro Aguilar Sierra + - Davide Pizzolato +ignorable_urls: + - http://www.xdp.it/ +--- + This copy of the CxImage notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file ximage.h that is included in the CxImage distribution, the latter shall prevail. diff --git a/src/licensedcode/data/licenses/cximage.yml b/src/licensedcode/data/licenses/cximage.yml deleted file mode 100644 index 48fc85c2459..00000000000 --- a/src/licensedcode/data/licenses/cximage.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: cximage -short_name: CxImage License -name: CxImage License -category: Permissive -owner: CxImage Project -homepage_url: http://www.xdp.it/cximage/ -spdx_license_key: LicenseRef-scancode-cximage -minimum_coverage: 30 -ignorable_copyrights: - - Copyright (c) 1995, Alejandro Aguilar Sierra - - Copyright (c) 2001 - 2004, Davide Pizzolato -ignorable_holders: - - Alejandro Aguilar Sierra - - Davide Pizzolato -ignorable_urls: - - http://www.xdp.it/ diff --git a/src/licensedcode/data/licenses/cygwin-exception-2.0.LICENSE b/src/licensedcode/data/licenses/cygwin-exception-2.0.LICENSE index 5dd2de1c5a6..be55edd3ded 100644 --- a/src/licensedcode/data/licenses/cygwin-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/cygwin-exception-2.0.LICENSE @@ -1,3 +1,46 @@ +--- +key: cygwin-exception-2.0 +short_name: Cygwin exception to GPL 2.0 +name: Cygwin exception to GPL 2.0 +category: Copyleft Limited +owner: Cygwin Project +homepage_url: http://cygwin.com/licensing.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-cygwin-exception-2.0 +text_urls: + - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src +standard_notice: | + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License (GPL) version 2, 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, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + *** NOTE *** + In accordance with section 10 of the GPL, Red Hat permits programs whose + sources are distributed under a license that complies with the Open + Source definition to be linked with libcygwin.a without libcygwin.a + itself causing the resulting program to be covered by the GNU GPL. + This means that you can port an Open Source(tm) application to cygwin, + and distribute that executable as if it didn't include a copy of + libcygwin.a linked into it. Note that this does not apply to the cygwin + DLL itself. If you distribute a (possibly modified) version of the DLL + you must adhere to the terms of the GPL, i.e. you must provide sources + for the cygwin DLL. + See http://www.opensource.org/docs/osd/ for the precise Open Source + Definition referenced above. + Red Hat sells a special Cygwin License for customers who are unable to + provide their application in open source code form. For more + information, please see: http://www.redhat.com/software/cygwin/, or call + +1-866-2REDHAT ext. 45300 (toll-free in the US). + Outside the US call your regional Red Hat office, see + http://www.redhat.com/about/contact/ww/ +--- + In accordance with section 10 of the GPL, Red Hat permits programs whose sources are distributed under a license that complies with the Open Source definition to be linked with libcygwin.a without libcygwin.a diff --git a/src/licensedcode/data/licenses/cygwin-exception-2.0.yml b/src/licensedcode/data/licenses/cygwin-exception-2.0.yml deleted file mode 100644 index ad702e0a581..00000000000 --- a/src/licensedcode/data/licenses/cygwin-exception-2.0.yml +++ /dev/null @@ -1,40 +0,0 @@ -key: cygwin-exception-2.0 -short_name: Cygwin exception to GPL 2.0 -name: Cygwin exception to GPL 2.0 -category: Copyleft Limited -owner: Cygwin Project -homepage_url: http://cygwin.com/licensing.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-cygwin-exception-2.0 -text_urls: - - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src -standard_notice: | - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License (GPL) version 2, 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, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - *** NOTE *** - In accordance with section 10 of the GPL, Red Hat permits programs whose - sources are distributed under a license that complies with the Open - Source definition to be linked with libcygwin.a without libcygwin.a - itself causing the resulting program to be covered by the GNU GPL. - This means that you can port an Open Source(tm) application to cygwin, - and distribute that executable as if it didn't include a copy of - libcygwin.a linked into it. Note that this does not apply to the cygwin - DLL itself. If you distribute a (possibly modified) version of the DLL - you must adhere to the terms of the GPL, i.e. you must provide sources - for the cygwin DLL. - See http://www.opensource.org/docs/osd/ for the precise Open Source - Definition referenced above. - Red Hat sells a special Cygwin License for customers who are unable to - provide their application in open source code form. For more - information, please see: http://www.redhat.com/software/cygwin/, or call - +1-866-2REDHAT ext. 45300 (toll-free in the US). - Outside the US call your regional Red Hat office, see - http://www.redhat.com/about/contact/ww/ diff --git a/src/licensedcode/data/licenses/cygwin-exception-3.0.LICENSE b/src/licensedcode/data/licenses/cygwin-exception-3.0.LICENSE index b03f89e6bad..0a6d594beba 100644 --- a/src/licensedcode/data/licenses/cygwin-exception-3.0.LICENSE +++ b/src/licensedcode/data/licenses/cygwin-exception-3.0.LICENSE @@ -1,3 +1,73 @@ +--- +key: cygwin-exception-3.0 +short_name: Cygwin exception to GPL 3.0 or later +name: Cygwin exception to GPL 3.0 or later +category: Copyleft Limited +owner: Cygwin Project +homepage_url: http://cygwin.com/licensing.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-cygwin-exception-3.0 +text_urls: + - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt + - http://www.opensource.org/docs/osd/ + - http://www.redhat.com/software/cygwin/ + - http://www.redhat.com/about/contact/ww/ +standard_notice: | + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the + terms of the GNU General Public License as published by the Free Software + Foundation; you can redistribute it and/or modify it under the terms of + the GNU General Public License either version 3 of the license, or (at your + option) any later version (GPLv3+), along with the additional permissions + given below. + There is NO WARRANTY for this software, express or implied, including + the implied warranties 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 . + Additional Permissions: + 1. Linking Exception. + As a special exception to GPLv3+, Red Hat grants you permission to link + software whose sources are distributed under a license that satisfies + the Open Source Definition with libcygwin.a, without libcygwin.a + itself causing the resulting program to be covered by GPLv3+. + This means that you can port an Open Source application to Cygwin, and + distribute that executable as if it didn't include a copy of + libcygwin.a linked into it. Note that this does not apply to the + Cygwin DLL itself. If you distribute a (possibly modified) version of + the Cygwin DLL, you must adhere to the terms of GPLv3+, including the + requirement to provide sources for the Cygwin DLL, unless you have obtained + a special Cygwin license to distribute the Cygwin DLL in only its binary + form (see below). + See http://www.opensource.org/docs/osd/ for the precise Open Source + Definition referenced above. + 2. Files Excluded from GPL Coverage. + Red Hat grants you permission to distribute Cygwin with the following + files, which are not considered part of Cygwin and are not governed by + GPLv3+, in source or binary form. + winsup\testsuite\winsup.api\msgtest.c + winsup\testsuite\winsup.api\semtest.c + winsup\testsuite\winsup.api\shmtest.c + Red Hat grants you permission to link or combine code in Cygwin with + code in or corresponding to the following files, which are not + considered part of Cygwin and are not governed by GPLv3+, and to + distribute such combinations under terms of your choice, provided that + such terms are otherwise consistent with the application of GPLv3+ to + Cygwin itself. You must comply with GPLv3+ with respect to all + portions of such combinations other than those that correspond to or + are derived from such non-Cygwin code but which do not correspond to + or are not derived from Cygwin itself. + winsup\cygserver\sysv_shm.cc + 3. Alternative License. + Red Hat sells a special Cygwin License for customers who are unable to + provide their application in open source code form. For more + information, please see: http://www.redhat.com/software/cygwin/, or call + +1-866-2REDHAT ext. 45300 (toll-free in the US). + Outside the US call your regional Red Hat office, see + http://www.redhat.com/about/contact/ww/ +--- + As a special exception to GPLv3+, Red Hat grants you permission to link software whose sources are distributed under a license that satisfies the Open Source Definition with libcygwin.a, without libcygwin.a diff --git a/src/licensedcode/data/licenses/cygwin-exception-3.0.yml b/src/licensedcode/data/licenses/cygwin-exception-3.0.yml deleted file mode 100644 index 4d676b57249..00000000000 --- a/src/licensedcode/data/licenses/cygwin-exception-3.0.yml +++ /dev/null @@ -1,67 +0,0 @@ -key: cygwin-exception-3.0 -short_name: Cygwin exception to GPL 3.0 or later -name: Cygwin exception to GPL 3.0 or later -category: Copyleft Limited -owner: Cygwin Project -homepage_url: http://cygwin.com/licensing.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-cygwin-exception-3.0 -text_urls: - - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt - - http://www.opensource.org/docs/osd/ - - http://www.redhat.com/software/cygwin/ - - http://www.redhat.com/about/contact/ww/ -standard_notice: | - Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the - terms of the GNU General Public License as published by the Free Software - Foundation; you can redistribute it and/or modify it under the terms of - the GNU General Public License either version 3 of the license, or (at your - option) any later version (GPLv3+), along with the additional permissions - given below. - There is NO WARRANTY for this software, express or implied, including - the implied warranties 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 . - Additional Permissions: - 1. Linking Exception. - As a special exception to GPLv3+, Red Hat grants you permission to link - software whose sources are distributed under a license that satisfies - the Open Source Definition with libcygwin.a, without libcygwin.a - itself causing the resulting program to be covered by GPLv3+. - This means that you can port an Open Source application to Cygwin, and - distribute that executable as if it didn't include a copy of - libcygwin.a linked into it. Note that this does not apply to the - Cygwin DLL itself. If you distribute a (possibly modified) version of - the Cygwin DLL, you must adhere to the terms of GPLv3+, including the - requirement to provide sources for the Cygwin DLL, unless you have obtained - a special Cygwin license to distribute the Cygwin DLL in only its binary - form (see below). - See http://www.opensource.org/docs/osd/ for the precise Open Source - Definition referenced above. - 2. Files Excluded from GPL Coverage. - Red Hat grants you permission to distribute Cygwin with the following - files, which are not considered part of Cygwin and are not governed by - GPLv3+, in source or binary form. - winsup\testsuite\winsup.api\msgtest.c - winsup\testsuite\winsup.api\semtest.c - winsup\testsuite\winsup.api\shmtest.c - Red Hat grants you permission to link or combine code in Cygwin with - code in or corresponding to the following files, which are not - considered part of Cygwin and are not governed by GPLv3+, and to - distribute such combinations under terms of your choice, provided that - such terms are otherwise consistent with the application of GPLv3+ to - Cygwin itself. You must comply with GPLv3+ with respect to all - portions of such combinations other than those that correspond to or - are derived from such non-Cygwin code but which do not correspond to - or are not derived from Cygwin itself. - winsup\cygserver\sysv_shm.cc - 3. Alternative License. - Red Hat sells a special Cygwin License for customers who are unable to - provide their application in open source code form. For more - information, please see: http://www.redhat.com/software/cygwin/, or call - +1-866-2REDHAT ext. 45300 (toll-free in the US). - Outside the US call your regional Red Hat office, see - http://www.redhat.com/about/contact/ww/ diff --git a/src/licensedcode/data/licenses/cygwin-exception-lgpl-3.0-plus.LICENSE b/src/licensedcode/data/licenses/cygwin-exception-lgpl-3.0-plus.LICENSE index 662b76b489a..14bf7090822 100644 --- a/src/licensedcode/data/licenses/cygwin-exception-lgpl-3.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/cygwin-exception-lgpl-3.0-plus.LICENSE @@ -1,3 +1,28 @@ +--- +key: cygwin-exception-lgpl-3.0-plus +short_name: Cygwin exception to LGPL 3.0 or later +name: Cygwin exception to LGPL 3.0 or later +category: Copyleft Limited +owner: Cygwin Project +homepage_url: https://cygwin.com/licensing.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus +other_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +standard_notice: | + The Cygwin API library found in the winsup subdirectory of the source code + is covered by the GNU Lesser General Public License (LGPL) version 3 or + later. For details of the requirements of LGPLv3, please read the GNU + Lesser General Public License (LGPL). + Cygwin™ Linking Exception + As a special exception, the copyright holders of the Cygwin library grant + you additional permission to link libcygwin.a, crt0.o, and gcrt0.o with + independent modules to produce an executable, and to convey the resulting + executable under terms of your choice, without any need to comply with the + conditions of LGPLv3 section 4. An independent module is a module which is + not itself based on the Cygwin library. +--- + As a special exception, the copyright holders of the Cygwin library grant you additional permission to link libcygwin.a, crt0.o, and gcrt0.o with independent modules to produce an executable, and to convey the resulting executable under diff --git a/src/licensedcode/data/licenses/cygwin-exception-lgpl-3.0-plus.yml b/src/licensedcode/data/licenses/cygwin-exception-lgpl-3.0-plus.yml deleted file mode 100644 index 57ba75f1938..00000000000 --- a/src/licensedcode/data/licenses/cygwin-exception-lgpl-3.0-plus.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: cygwin-exception-lgpl-3.0-plus -short_name: Cygwin exception to LGPL 3.0 or later -name: Cygwin exception to LGPL 3.0 or later -category: Copyleft Limited -owner: Cygwin Project -homepage_url: https://cygwin.com/licensing.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus -other_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt -standard_notice: | - The Cygwin API library found in the winsup subdirectory of the source code - is covered by the GNU Lesser General Public License (LGPL) version 3 or - later. For details of the requirements of LGPLv3, please read the GNU - Lesser General Public License (LGPL). - Cygwin™ Linking Exception - As a special exception, the copyright holders of the Cygwin library grant - you additional permission to link libcygwin.a, crt0.o, and gcrt0.o with - independent modules to produce an executable, and to convey the resulting - executable under terms of your choice, without any need to comply with the - conditions of LGPLv3 section 4. An independent module is a module which is - not itself based on the Cygwin library. diff --git a/src/licensedcode/data/licenses/cypress-linux-firmware.LICENSE b/src/licensedcode/data/licenses/cypress-linux-firmware.LICENSE index bf277687ed0..4eb4f3f2f40 100644 --- a/src/licensedcode/data/licenses/cypress-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/cypress-linux-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: cypress-linux-firmware +short_name: Cypress Linux Firmware License +name: Cypress Linux Firmware License +category: Proprietary Free +owner: Cypress Wireless +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cypress +spdx_license_key: LicenseRef-scancode-cypress-linux-firmware +ignorable_urls: + - http://www.cypress.com/go/opensource +--- + ### CYPRESS WIRELESS CONNECTIVITY DEVICES ### DRIVER END USER LICENSE AGREEMENT (SOURCE AND BINARY DISTRIBUTION) diff --git a/src/licensedcode/data/licenses/cypress-linux-firmware.yml b/src/licensedcode/data/licenses/cypress-linux-firmware.yml deleted file mode 100644 index ae5bb298a31..00000000000 --- a/src/licensedcode/data/licenses/cypress-linux-firmware.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: cypress-linux-firmware -short_name: Cypress Linux Firmware License -name: Cypress Linux Firmware License -category: Proprietary Free -owner: Cypress Wireless -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cypress -spdx_license_key: LicenseRef-scancode-cypress-linux-firmware -ignorable_urls: - - http://www.cypress.com/go/opensource diff --git a/src/licensedcode/data/licenses/d-fsl-1.0-de.LICENSE b/src/licensedcode/data/licenses/d-fsl-1.0-de.LICENSE index dba63f10697..e176f6aebbe 100644 --- a/src/licensedcode/data/licenses/d-fsl-1.0-de.LICENSE +++ b/src/licensedcode/data/licenses/d-fsl-1.0-de.LICENSE @@ -1,3 +1,41 @@ +--- +key: d-fsl-1.0-de +language: de +short_name: Deutsche Freie Software Lizenz +name: Deutsche Freie Software Lizenz +category: Copyleft +owner: Institute for Legal Issues On Free and Open Source Software +homepage_url: http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt +notes: | + Per SPDX.org, this license was created for and is backed by the German + state. The English translation can be found here + http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt +spdx_license_key: D-FSL-1.0 +text_urls: + - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt +faq_url: http://www.d-fsl.org/ +other_urls: + - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt + - http://www.dipp.nrw.de/d-fsl/lizenzen/ + - http://www.dipp.nrw.de/d-fsl/nutzer/ + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz + - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license +minimum_coverage: 10 +ignorable_copyrights: + - (c) Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen 2004 Erstellt von Axel + Metzger und Till Jaeger +ignorable_holders: + - Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen Erstellt von Axel Metzger + und Till Jaeger +ignorable_urls: + - http://www.d-fsl.de/ + - http://www.fsf.org/licenses/gpl + - http://www.ifross.de/ +--- + Deutsche Freie Software Lizenz (c) Ministerium für Wissenschaft und Forschung diff --git a/src/licensedcode/data/licenses/d-fsl-1.0-de.yml b/src/licensedcode/data/licenses/d-fsl-1.0-de.yml deleted file mode 100644 index 31544bf97a5..00000000000 --- a/src/licensedcode/data/licenses/d-fsl-1.0-de.yml +++ /dev/null @@ -1,35 +0,0 @@ -key: d-fsl-1.0-de -language: de -short_name: Deutsche Freie Software Lizenz -name: Deutsche Freie Software Lizenz -category: Copyleft -owner: Institute for Legal Issues On Free and Open Source Software -homepage_url: http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt -notes: | - Per SPDX.org, this license was created for and is backed by the German - state. The English translation can be found here - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt -spdx_license_key: D-FSL-1.0 -text_urls: - - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt -faq_url: http://www.d-fsl.org/ -other_urls: - - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt - - http://www.dipp.nrw.de/d-fsl/lizenzen/ - - http://www.dipp.nrw.de/d-fsl/nutzer/ - - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl - - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file - - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file - - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz - - https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license -minimum_coverage: 10 -ignorable_copyrights: - - (c) Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen 2004 Erstellt von Axel - Metzger und Till Jaeger -ignorable_holders: - - Ministerium fur Wissenschaft und Forschung Nordrhein-Westfalen Erstellt von Axel Metzger - und Till Jaeger -ignorable_urls: - - http://www.d-fsl.de/ - - http://www.fsf.org/licenses/gpl - - http://www.ifross.de/ diff --git a/src/licensedcode/data/licenses/d-fsl-1.0-en.LICENSE b/src/licensedcode/data/licenses/d-fsl-1.0-en.LICENSE index e4e59ea3c79..5f89498f719 100644 --- a/src/licensedcode/data/licenses/d-fsl-1.0-en.LICENSE +++ b/src/licensedcode/data/licenses/d-fsl-1.0-en.LICENSE @@ -1,3 +1,31 @@ +--- +key: d-fsl-1.0-en +short_name: German Free Software License +name: German Free Software License +category: Copyleft +owner: Institute for Legal Issues On Free and Open Source Software +homepage_url: http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt +spdx_license_key: LicenseRef-scancode-d-fsl-1.0-en +text_urls: + - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt +faq_url: http://www.d-fsl.org/ +other_urls: + - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt + - http://www.dipp.nrw.de/d-fsl/nutzer/ +minimum_coverage: 10 +ignorable_copyrights: + - (c) Ministry of Science and Research, State of North-Rhine Westphalia 2004 +ignorable_holders: + - Ministry of Science and Research, State of North-Rhine Westphalia +ignorable_authors: + - Axel Metzger and Till Jaeger, Institut fur Rechtsfragen der Freien und Open Source Software + Institute for Legal Issues +ignorable_urls: + - http://www.d-fsl.org/ + - http://www.fsf.org/licenses/gpl + - http://www.ifross.de/ +--- + German Free Software License (c) Ministry of Science and Research, State of diff --git a/src/licensedcode/data/licenses/d-fsl-1.0-en.yml b/src/licensedcode/data/licenses/d-fsl-1.0-en.yml deleted file mode 100644 index 55cb42b2145..00000000000 --- a/src/licensedcode/data/licenses/d-fsl-1.0-en.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: d-fsl-1.0-en -short_name: German Free Software License -name: German Free Software License -category: Copyleft -owner: Institute for Legal Issues On Free and Open Source Software -homepage_url: http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt -spdx_license_key: LicenseRef-scancode-d-fsl-1.0-en -text_urls: - - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt -faq_url: http://www.d-fsl.org/ -other_urls: - - http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt - - http://www.dipp.nrw.de/d-fsl/nutzer/ -minimum_coverage: 10 -ignorable_copyrights: - - (c) Ministry of Science and Research, State of North-Rhine Westphalia 2004 -ignorable_holders: - - Ministry of Science and Research, State of North-Rhine Westphalia -ignorable_authors: - - Axel Metzger and Till Jaeger, Institut fur Rechtsfragen der Freien und Open Source Software - Institute for Legal Issues -ignorable_urls: - - http://www.d-fsl.org/ - - http://www.fsf.org/licenses/gpl - - http://www.ifross.de/ diff --git a/src/licensedcode/data/licenses/d-zlib.LICENSE b/src/licensedcode/data/licenses/d-zlib.LICENSE index 994eeccfdeb..5704882e828 100644 --- a/src/licensedcode/data/licenses/d-zlib.LICENSE +++ b/src/licensedcode/data/licenses/d-zlib.LICENSE @@ -1,3 +1,12 @@ +--- +key: d-zlib +short_name: D Zlib +name: Digital Mars Zlib +category: Permissive +owner: Digital Mars +spdx_license_key: LicenseRef-scancode-d-zlib +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/licenses/d-zlib.yml b/src/licensedcode/data/licenses/d-zlib.yml deleted file mode 100644 index 87134f47dfe..00000000000 --- a/src/licensedcode/data/licenses/d-zlib.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: d-zlib -short_name: D Zlib -name: Digital Mars Zlib -category: Permissive -owner: Digital Mars -spdx_license_key: LicenseRef-scancode-d-zlib diff --git a/src/licensedcode/data/licenses/damail.LICENSE b/src/licensedcode/data/licenses/damail.LICENSE index 4fb1cbd7262..57a0d33850c 100644 --- a/src/licensedcode/data/licenses/damail.LICENSE +++ b/src/licensedcode/data/licenses/damail.LICENSE @@ -1,3 +1,13 @@ +--- +key: damail +short_name: DAMAIL +name: Don't Ask Me About It License +category: Permissive +owner: Noah Slater +homepage_url: https://github.com/nslater/DAMAIL +spdx_license_key: LicenseRef-scancode-damail +--- + The Don't Ask Me About It License Full License Text diff --git a/src/licensedcode/data/licenses/damail.yml b/src/licensedcode/data/licenses/damail.yml deleted file mode 100644 index 16dbb59b7d5..00000000000 --- a/src/licensedcode/data/licenses/damail.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: damail -short_name: DAMAIL -name: Don't Ask Me About It License -category: Permissive -owner: Noah Slater -homepage_url: https://github.com/nslater/DAMAIL -spdx_license_key: LicenseRef-scancode-damail diff --git a/src/licensedcode/data/licenses/dante-treglia.LICENSE b/src/licensedcode/data/licenses/dante-treglia.LICENSE index 670cc039ecd..ee479896d62 100644 --- a/src/licensedcode/data/licenses/dante-treglia.LICENSE +++ b/src/licensedcode/data/licenses/dante-treglia.LICENSE @@ -1,3 +1,16 @@ +--- +key: dante-treglia +short_name: Dante Treglia License +name: Dante Treglia License +category: Permissive +owner: Dante Treglia +spdx_license_key: LicenseRef-scancode-dante-treglia +ignorable_copyrights: + - Portions copyright (c) Dante Treglia II, 2000 +ignorable_holders: + - Dante Treglia II +--- + This is provided as is without express or implied warranties. You may freely copy and compile this source into applications you distribute provided that the copyright text below is included in the resulting source code, for example: diff --git a/src/licensedcode/data/licenses/dante-treglia.yml b/src/licensedcode/data/licenses/dante-treglia.yml deleted file mode 100644 index 1e06669e53d..00000000000 --- a/src/licensedcode/data/licenses/dante-treglia.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: dante-treglia -short_name: Dante Treglia License -name: Dante Treglia License -category: Permissive -owner: Dante Treglia -spdx_license_key: LicenseRef-scancode-dante-treglia -ignorable_copyrights: - - Portions copyright (c) Dante Treglia II, 2000 -ignorable_holders: - - Dante Treglia II diff --git a/src/licensedcode/data/licenses/datamekanix-license.LICENSE b/src/licensedcode/data/licenses/datamekanix-license.LICENSE index 6ac68200165..04db590d4ee 100644 --- a/src/licensedcode/data/licenses/datamekanix-license.LICENSE +++ b/src/licensedcode/data/licenses/datamekanix-license.LICENSE @@ -1,3 +1,13 @@ +--- +key: datamekanix-license +short_name: DataMekanix License +name: DataMekanix License +category: Permissive +owner: DataMekanix +homepage_url: http://www.datamekanix.com/sizecbar/ +spdx_license_key: LicenseRef-scancode-datamekanix-license +--- + This code is free for personal and commercial use, providing the copyright notice remains intact in the source files and all eventual changes are clearly marked with comments. diff --git a/src/licensedcode/data/licenses/datamekanix-license.yml b/src/licensedcode/data/licenses/datamekanix-license.yml deleted file mode 100644 index cc8978dc7a0..00000000000 --- a/src/licensedcode/data/licenses/datamekanix-license.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: datamekanix-license -short_name: DataMekanix License -name: DataMekanix License -category: Permissive -owner: DataMekanix -homepage_url: http://www.datamekanix.com/sizecbar/ -spdx_license_key: LicenseRef-scancode-datamekanix-license diff --git a/src/licensedcode/data/licenses/day-spec.LICENSE b/src/licensedcode/data/licenses/day-spec.LICENSE index 9a39351f462..178149cb665 100644 --- a/src/licensedcode/data/licenses/day-spec.LICENSE +++ b/src/licensedcode/data/licenses/day-spec.LICENSE @@ -1,3 +1,21 @@ +--- +key: day-spec +short_name: Day Specification License +name: Day Specification License +category: Proprietary Free +owner: Day Management AG +homepage_url: http://www.day.com/maven/jsr170/jars/LICENSE.txt +spdx_license_key: LicenseRef-scancode-day-spec +text_urls: + - http://www.day.com/maven/jsr170/jars/LICENSE.txt + - http://www.day.com/maven/jsr170/licenses/day-spec-license.htm +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 2005 Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland +ignorable_holders: + - Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland +--- + [Day Specification License] Day Management AG ("Licensor") is willing to license this specification @@ -144,4 +162,4 @@ to any party seeking it from You, a perpetual, non-exclusive, non-transferable, worldwide license under Your patent rights that are or would be infringed by all technically feasible implementations of the Specification to develop, distribute -and use a Compliant Implementation. +and use a Compliant Implementation. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/day-spec.yml b/src/licensedcode/data/licenses/day-spec.yml deleted file mode 100644 index b99b073e26f..00000000000 --- a/src/licensedcode/data/licenses/day-spec.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: day-spec -short_name: Day Specification License -name: Day Specification License -category: Proprietary Free -owner: Day Management AG -homepage_url: http://www.day.com/maven/jsr170/jars/LICENSE.txt -spdx_license_key: LicenseRef-scancode-day-spec -text_urls: - - http://www.day.com/maven/jsr170/jars/LICENSE.txt - - http://www.day.com/maven/jsr170/licenses/day-spec-license.htm -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 2005 Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland -ignorable_holders: - - Day Management AG Barfusserplatz 6, 4001 Basel, Switzerland diff --git a/src/licensedcode/data/licenses/dbad-1.1.LICENSE b/src/licensedcode/data/licenses/dbad-1.1.LICENSE index 0390a2159d1..cbf58b0c306 100644 --- a/src/licensedcode/data/licenses/dbad-1.1.LICENSE +++ b/src/licensedcode/data/licenses/dbad-1.1.LICENSE @@ -1,3 +1,13 @@ +--- +key: dbad-1.1 +short_name: DBAD License 1.1 +name: Don't Be a Dick Public License 1.1 +category: Permissive +owner: DBAD +homepage_url: https://dbad-license.org/ +spdx_license_key: LicenseRef-scancode-dbad-1.1 +--- + # DON'T BE A DICK PUBLIC LICENSE > Version 1.1, December 2016 diff --git a/src/licensedcode/data/licenses/dbad-1.1.yml b/src/licensedcode/data/licenses/dbad-1.1.yml deleted file mode 100644 index 0e65ec4d0b6..00000000000 --- a/src/licensedcode/data/licenses/dbad-1.1.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: dbad-1.1 -short_name: DBAD License 1.1 -name: Don't Be a Dick Public License 1.1 -category: Permissive -owner: DBAD -homepage_url: https://dbad-license.org/ -spdx_license_key: LicenseRef-scancode-dbad-1.1 diff --git a/src/licensedcode/data/licenses/dbad.LICENSE b/src/licensedcode/data/licenses/dbad.LICENSE index aea182e080e..c796332c52d 100644 --- a/src/licensedcode/data/licenses/dbad.LICENSE +++ b/src/licensedcode/data/licenses/dbad.LICENSE @@ -1,3 +1,14 @@ +--- +key: dbad +short_name: dbad +name: Dont Be A Dick Public License +category: Proprietary Free +owner: Unspecified +homepage_url: https://dbad-license.org +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-dbad +--- + Everyone is permitted to copy and distribute verbatim or modified copies of this license document. @@ -13,4 +24,4 @@ Being a dick includes - but is not limited to - the following instances: If you become rich through modifications, related works/services, or supporting the original work, share the love. Only a dick would make loads off this work and not buy the original work's creator(s) a pint. -Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back. +Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dbad.yml b/src/licensedcode/data/licenses/dbad.yml deleted file mode 100644 index 7e57864ae51..00000000000 --- a/src/licensedcode/data/licenses/dbad.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: dbad -short_name: dbad -name: Dont Be A Dick Public License -category: Proprietary Free -owner: Unspecified -homepage_url: https://dbad-license.org -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-dbad diff --git a/src/licensedcode/data/licenses/dbcl-1.0.LICENSE b/src/licensedcode/data/licenses/dbcl-1.0.LICENSE index eac05c4e119..0bfaf448048 100644 --- a/src/licensedcode/data/licenses/dbcl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/dbcl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: dbcl-1.0 +short_name: DbCL 1.0 +name: ODC Database Contents License v1.0 +category: Copyleft +owner: Open Data Commons +homepage_url: https://opendatacommons.org/licenses/dbcl/1-0/ +spdx_license_key: LicenseRef-scancode-dbcl-1.0 +other_urls: + - http://www.opendatacommons.org/licenses/odbl/1.0/ +--- + ODC Database Contents License (DbCL) The Licensor and You agree as follows: diff --git a/src/licensedcode/data/licenses/dbcl-1.0.yml b/src/licensedcode/data/licenses/dbcl-1.0.yml deleted file mode 100644 index 69392ee9070..00000000000 --- a/src/licensedcode/data/licenses/dbcl-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: dbcl-1.0 -short_name: DbCL 1.0 -name: ODC Database Contents License v1.0 -category: Copyleft -owner: Open Data Commons -homepage_url: https://opendatacommons.org/licenses/dbcl/1-0/ -spdx_license_key: LicenseRef-scancode-dbcl-1.0 -other_urls: - - http://www.opendatacommons.org/licenses/odbl/1.0/ diff --git a/src/licensedcode/data/licenses/dco-1.1.LICENSE b/src/licensedcode/data/licenses/dco-1.1.LICENSE index 3329c6f2156..9288e2d07f3 100644 --- a/src/licensedcode/data/licenses/dco-1.1.LICENSE +++ b/src/licensedcode/data/licenses/dco-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: dco-1.1 +short_name: DCO 1.1 +name: Developer Certificate of Origin 1.1 +category: Permissive +owner: Linux Foundation +homepage_url: https://developercertificate.org/ +spdx_license_key: LicenseRef-scancode-dco-1.1 +text_urls: + - https://developercertificate.org/ +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2004, 2006 The Linux Foundation and its contributors +ignorable_holders: + - The Linux Foundation and its contributors +--- + Developer Certificate of Origin @@ -36,5 +53,4 @@ By making a contribution to this project, I certify that: 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. - + this project or the open source license(s) involved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dco-1.1.yml b/src/licensedcode/data/licenses/dco-1.1.yml deleted file mode 100644 index c17ca8e9892..00000000000 --- a/src/licensedcode/data/licenses/dco-1.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: dco-1.1 -short_name: DCO 1.1 -name: Developer Certificate of Origin 1.1 -category: Permissive -owner: Linux Foundation -homepage_url: https://developercertificate.org/ -spdx_license_key: LicenseRef-scancode-dco-1.1 -text_urls: - - https://developercertificate.org/ -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 2004, 2006 The Linux Foundation and its contributors -ignorable_holders: - - The Linux Foundation and its contributors diff --git a/src/licensedcode/data/licenses/defensive-patent-1.1.LICENSE b/src/licensedcode/data/licenses/defensive-patent-1.1.LICENSE index d8df4ac6e79..acbcd7e8caf 100644 --- a/src/licensedcode/data/licenses/defensive-patent-1.1.LICENSE +++ b/src/licensedcode/data/licenses/defensive-patent-1.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: defensive-patent-1.1 +short_name: Defensive Patent License v1.1 +name: Defensive Patent License v1.1 +category: Copyleft +owner: DPL +homepage_url: https://www.defensivepatentlicense.org/ +spdx_license_key: LicenseRef-scancode-defensive-patent-1.1 +text_urls: + - https://www.defensivepatentlicense.org/license +ignorable_urls: + - http://www.defensivepatentlicense.org/content/frequently-asked-questions#how-can-I-start +--- + PREFACE The Defensive Patent License (DPL) is a free, copyleft-style license for patents. @@ -80,4 +94,4 @@ UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS T SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, IN WHICH CASE SUCH EXCLUSION MAY NOT APPLY TO LICENSEE. 6. LIMITATION OF LIABILITY -LICENSOR SHALL NOT BE LIABLE FOR ANY DAMAGES ARISING FROM OR RELATED TO THIS LICENSE, INCLUDING INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, WHETHER ON WARRANTY, CONTRACT, NEGLIGENCE, OR OTHERWISE, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. +LICENSOR SHALL NOT BE LIABLE FOR ANY DAMAGES ARISING FROM OR RELATED TO THIS LICENSE, INCLUDING INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, WHETHER ON WARRANTY, CONTRACT, NEGLIGENCE, OR OTHERWISE, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/defensive-patent-1.1.yml b/src/licensedcode/data/licenses/defensive-patent-1.1.yml deleted file mode 100644 index 41d005e3382..00000000000 --- a/src/licensedcode/data/licenses/defensive-patent-1.1.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: defensive-patent-1.1 -short_name: Defensive Patent License v1.1 -name: Defensive Patent License v1.1 -category: Copyleft -owner: DPL -homepage_url: https://www.defensivepatentlicense.org/ -spdx_license_key: LicenseRef-scancode-defensive-patent-1.1 -text_urls: - - https://www.defensivepatentlicense.org/license -ignorable_urls: - - http://www.defensivepatentlicense.org/content/frequently-asked-questions#how-can-I-start diff --git a/src/licensedcode/data/licenses/dejavu-font.LICENSE b/src/licensedcode/data/licenses/dejavu-font.LICENSE index 61ba62c7cb6..f78d0de345e 100644 --- a/src/licensedcode/data/licenses/dejavu-font.LICENSE +++ b/src/licensedcode/data/licenses/dejavu-font.LICENSE @@ -1,3 +1,14 @@ +--- +key: dejavu-font +is_deprecated: yes +short_name: DejaVu Font License +name: DejaVu Font License +category: Permissive +owner: Unspecified +notes: this is a composite of a double bitstream. +spdx_license_key: LicenseRef-scancode-dejavu-font +--- + DejaVu Font License Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. diff --git a/src/licensedcode/data/licenses/dejavu-font.yml b/src/licensedcode/data/licenses/dejavu-font.yml deleted file mode 100644 index a3338c72f85..00000000000 --- a/src/licensedcode/data/licenses/dejavu-font.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: dejavu-font -is_deprecated: yes -short_name: DejaVu Font License -name: DejaVu Font License -category: Permissive -owner: Unspecified -notes: this is a composite of a double bitstream. -spdx_license_key: LicenseRef-scancode-dejavu-font diff --git a/src/licensedcode/data/licenses/delorie-historical.LICENSE b/src/licensedcode/data/licenses/delorie-historical.LICENSE index b35035271dd..5b23bc64342 100644 --- a/src/licensedcode/data/licenses/delorie-historical.LICENSE +++ b/src/licensedcode/data/licenses/delorie-historical.LICENSE @@ -1,7 +1,17 @@ +--- +key: delorie-historical +short_name: Delorie Historical License +name: Delorie Historical License +category: Permissive +owner: DJ Delorie +notes: this is a short historical permissive license seen in the newlib C library. This is close + to a bsla text. +spdx_license_key: LicenseRef-scancode-delorie-historical +--- + Redistribution, modification, and use in source and binary forms is permitted provided that the above copyright notice and following paragraph are duplicated in all such forms. This file is distributed WITHOUT ANY WARRANTY; without even the implied -warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - +warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/delorie-historical.yml b/src/licensedcode/data/licenses/delorie-historical.yml deleted file mode 100644 index 28f15241968..00000000000 --- a/src/licensedcode/data/licenses/delorie-historical.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: delorie-historical -short_name: Delorie Historical License -name: Delorie Historical License -category: Permissive -owner: DJ Delorie -notes: this is a short historical permissive license seen in the newlib C library. This is close - to a bsla text. -spdx_license_key: LicenseRef-scancode-delorie-historical diff --git a/src/licensedcode/data/licenses/dennis-ferguson.LICENSE b/src/licensedcode/data/licenses/dennis-ferguson.LICENSE index 76d31510a7c..f77be8703e6 100644 --- a/src/licensedcode/data/licenses/dennis-ferguson.LICENSE +++ b/src/licensedcode/data/licenses/dennis-ferguson.LICENSE @@ -1,3 +1,15 @@ +--- +key: dennis-ferguson +short_name: Dennis Ferguson License +name: Dennis Ferguson License +category: Free Restricted +owner: Dennis Ferguson +spdx_license_key: LicenseRef-scancode-dennis-ferguson +text_urls: + - http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/crypto/des/f_cbc.c + - http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/des425/pcbc_encrypt.c +--- + Commercial use is permitted only if products which are derived from or include this software are made available for purchase and/or use in Canada. Otherwise, redistribution and use in source and binary forms are permitted. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dennis-ferguson.yml b/src/licensedcode/data/licenses/dennis-ferguson.yml deleted file mode 100644 index 034a4b63f3b..00000000000 --- a/src/licensedcode/data/licenses/dennis-ferguson.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: dennis-ferguson -short_name: Dennis Ferguson License -name: Dennis Ferguson License -category: Free Restricted -owner: Dennis Ferguson -spdx_license_key: LicenseRef-scancode-dennis-ferguson -text_urls: - - http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/crypto/des/f_cbc.c - - http://web.mit.edu/jhawk/mnt/spo/netbsd/src/domestic/dist/krb5/src/lib/des425/pcbc_encrypt.c diff --git a/src/licensedcode/data/licenses/devblocks-1.0.LICENSE b/src/licensedcode/data/licenses/devblocks-1.0.LICENSE index 1a40a088cd7..4a17de186e8 100644 --- a/src/licensedcode/data/licenses/devblocks-1.0.LICENSE +++ b/src/licensedcode/data/licenses/devblocks-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: devblocks-1.0 +short_name: Devblocks 1.0 +name: Devblocks Public License 1.0 +category: Copyleft +owner: Webgroup Media +homepage_url: https://cerb.ai/license/ +spdx_license_key: LicenseRef-scancode-devblocks-1.0 +text_urls: + - https://cerb.ai/license/ +--- + Devblocks Public License 1.0 (DPL) @@ -82,4 +94,4 @@ The Limited Warranty described above is the only express warranty made to you an Limitation of Liability and Remedies -In no event unless required by applicable law or agreed to in writing will Licensor be liable to you under any circumstances for any lost profits or any indirect, special, consequential or punitive damages including, without limitation, loss or alteration of data, failure to provide support, interruption of business, or loss of employee work time. Some jurisdictions do not allow the exclusion or limitation of certain warranties or liability for loss or damage caused by negligence, breach of contract or breach of implied terms, or incidental or consequential damages. Accordingly, only the limitations which are lawful in your jurisdiction will apply to you and Licensor’s liability will be limited to the maximum extent permitted by law. The entire liability of Licensor shall not exceed the aggregate amount paid by you for the software. +In no event unless required by applicable law or agreed to in writing will Licensor be liable to you under any circumstances for any lost profits or any indirect, special, consequential or punitive damages including, without limitation, loss or alteration of data, failure to provide support, interruption of business, or loss of employee work time. Some jurisdictions do not allow the exclusion or limitation of certain warranties or liability for loss or damage caused by negligence, breach of contract or breach of implied terms, or incidental or consequential damages. Accordingly, only the limitations which are lawful in your jurisdiction will apply to you and Licensor’s liability will be limited to the maximum extent permitted by law. The entire liability of Licensor shall not exceed the aggregate amount paid by you for the software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/devblocks-1.0.yml b/src/licensedcode/data/licenses/devblocks-1.0.yml deleted file mode 100644 index 5a88d7dd5d3..00000000000 --- a/src/licensedcode/data/licenses/devblocks-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: devblocks-1.0 -short_name: Devblocks 1.0 -name: Devblocks Public License 1.0 -category: Copyleft -owner: Webgroup Media -homepage_url: https://cerb.ai/license/ -spdx_license_key: LicenseRef-scancode-devblocks-1.0 -text_urls: - - https://cerb.ai/license/ diff --git a/src/licensedcode/data/licenses/dgraph-cla.LICENSE b/src/licensedcode/data/licenses/dgraph-cla.LICENSE index c427edddb3f..3d7e13b4ea9 100644 --- a/src/licensedcode/data/licenses/dgraph-cla.LICENSE +++ b/src/licensedcode/data/licenses/dgraph-cla.LICENSE @@ -1,3 +1,23 @@ +--- +key: dgraph-cla +short_name: Dgraph Community License Agreement +name: Dgraph Community License Agreement +category: Source-available +owner: Dgraph +homepage_url: https://github.com/dgraph-io/dgraph/blob/master/licenses/DCL.txt +spdx_license_key: LicenseRef-scancode-dgraph-cla +ignorable_copyrights: + - (c) Dgraph Enterprise Edition +ignorable_holders: + - Dgraph Enterprise Edition +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://cla-assistant.io/dgraph-io/dgraph + - https://github.com/dgraph-io/dgraph +ignorable_emails: + - contact@dgraph.io +--- + Dgraph Community License Agreement Please read this Dgraph Community License Agreement (the "Agreement") diff --git a/src/licensedcode/data/licenses/dgraph-cla.yml b/src/licensedcode/data/licenses/dgraph-cla.yml deleted file mode 100644 index 741ac0c0ff3..00000000000 --- a/src/licensedcode/data/licenses/dgraph-cla.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: dgraph-cla -short_name: Dgraph Community License Agreement -name: Dgraph Community License Agreement -category: Source-available -owner: Dgraph -homepage_url: https://github.com/dgraph-io/dgraph/blob/master/licenses/DCL.txt -spdx_license_key: LicenseRef-scancode-dgraph-cla -ignorable_copyrights: - - (c) Dgraph Enterprise Edition -ignorable_holders: - - Dgraph Enterprise Edition -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://cla-assistant.io/dgraph-io/dgraph - - https://github.com/dgraph-io/dgraph -ignorable_emails: - - contact@dgraph.io diff --git a/src/licensedcode/data/licenses/dhtmlab-public.LICENSE b/src/licensedcode/data/licenses/dhtmlab-public.LICENSE index e1ce76205d3..ef694f07afc 100644 --- a/src/licensedcode/data/licenses/dhtmlab-public.LICENSE +++ b/src/licensedcode/data/licenses/dhtmlab-public.LICENSE @@ -1,3 +1,18 @@ +--- +key: dhtmlab-public +short_name: dhtmlab Public License +name: Dynamic HTML Lab Public License +category: Permissive +owner: DHTML Lab +spdx_license_key: LicenseRef-scancode-dhtmlab-public +ignorable_copyrights: + - Copyright (c) 2000 internet.com Corp. +ignorable_holders: + - internet.com Corp. +ignorable_urls: + - http://www.dhtmlab.com/ +--- + Copyright (c) 2000 internet.com Corp. All Rights Reserved. Originally published and documented at http://www.dhtmlab.com/ You may use this code on a public Web site only if this entire diff --git a/src/licensedcode/data/licenses/dhtmlab-public.yml b/src/licensedcode/data/licenses/dhtmlab-public.yml deleted file mode 100644 index 4337782440d..00000000000 --- a/src/licensedcode/data/licenses/dhtmlab-public.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: dhtmlab-public -short_name: dhtmlab Public License -name: Dynamic HTML Lab Public License -category: Permissive -owner: DHTML Lab -spdx_license_key: LicenseRef-scancode-dhtmlab-public -ignorable_copyrights: - - Copyright (c) 2000 internet.com Corp. -ignorable_holders: - - internet.com Corp. -ignorable_urls: - - http://www.dhtmlab.com/ diff --git a/src/licensedcode/data/licenses/diffmark.LICENSE b/src/licensedcode/data/licenses/diffmark.LICENSE index aa8e952a3d5..cbf8d2247a3 100644 --- a/src/licensedcode/data/licenses/diffmark.LICENSE +++ b/src/licensedcode/data/licenses/diffmark.LICENSE @@ -1,2 +1,21 @@ +--- +key: diffmark +short_name: diffmark License +name: diffmark License +category: Public Domain +owner: Unspecified +homepage_url: https://fedoraproject.org/wiki/Licensing/diffmark +notes: | + Per Fedora, this extremely minimal and permissive license was found in + diffmark (0.08). While poorly written, our interpretation of the text + permits use, modification, and distribution. It also permits wearing it as + a hat or eating it for lunch, although neither of those cases are + recommended. This would perhaps be considered Copyright only, except that + no requirement of retention of copyright is present, and the copyright + holder is disclaiming liability (albeit, poorly). This license is Free, and + GPL compatible. +spdx_license_key: diffmark +--- + 1. you can do what you want with it 2. I refuse any responsibility for the consequences \ No newline at end of file diff --git a/src/licensedcode/data/licenses/diffmark.yml b/src/licensedcode/data/licenses/diffmark.yml deleted file mode 100644 index eedd6d7ac0a..00000000000 --- a/src/licensedcode/data/licenses/diffmark.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: diffmark -short_name: diffmark License -name: diffmark License -category: Public Domain -owner: Unspecified -homepage_url: https://fedoraproject.org/wiki/Licensing/diffmark -notes: | - Per Fedora, this extremely minimal and permissive license was found in - diffmark (0.08). While poorly written, our interpretation of the text - permits use, modification, and distribution. It also permits wearing it as - a hat or eating it for lunch, although neither of those cases are - recommended. This would perhaps be considered Copyright only, except that - no requirement of retention of copyright is present, and the copyright - holder is disclaiming liability (albeit, poorly). This license is Free, and - GPL compatible. -spdx_license_key: diffmark diff --git a/src/licensedcode/data/licenses/digia-qt-commercial.LICENSE b/src/licensedcode/data/licenses/digia-qt-commercial.LICENSE index c14396f5bc6..431657ff85f 100644 --- a/src/licensedcode/data/licenses/digia-qt-commercial.LICENSE +++ b/src/licensedcode/data/licenses/digia-qt-commercial.LICENSE @@ -1,7 +1,21 @@ +--- +key: digia-qt-commercial +short_name: Digia Qt Commercial +name: Digia Qt Commercial License Usage +category: Commercial +owner: Digia +homepage_url: http://qt.digia.com/licensing +notes: Qt is available under a choice of licenses, one is commercial +spdx_license_key: LicenseRef-scancode-digia-qt-commercial +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing +--- + 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 Digia. For licensing terms and conditions see http://qt.digia.com/licensing. For further information -use the contact form at http://qt.digia.com/contact-us. +use the contact form at http://qt.digia.com/contact-us. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/digia-qt-commercial.yml b/src/licensedcode/data/licenses/digia-qt-commercial.yml deleted file mode 100644 index a40f3c70676..00000000000 --- a/src/licensedcode/data/licenses/digia-qt-commercial.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: digia-qt-commercial -short_name: Digia Qt Commercial -name: Digia Qt Commercial License Usage -category: Commercial -owner: Digia -homepage_url: http://qt.digia.com/licensing -notes: Qt is available under a choice of licenses, one is commercial -spdx_license_key: LicenseRef-scancode-digia-qt-commercial -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing diff --git a/src/licensedcode/data/licenses/digia-qt-exception-lgpl-2.1.LICENSE b/src/licensedcode/data/licenses/digia-qt-exception-lgpl-2.1.LICENSE index ea61032cae9..7244f90447f 100644 --- a/src/licensedcode/data/licenses/digia-qt-exception-lgpl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/digia-qt-exception-lgpl-2.1.LICENSE @@ -1,3 +1,49 @@ +--- +key: digia-qt-exception-lgpl-2.1 +short_name: Digia Qt Exception to LGPL 2.1 +name: Digia Qt Exception to LGPL 2.1 +category: Copyleft Limited +owner: Digia +is_deprecated: yes +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or (at + your option) any later version. + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + for more details. + You should have received a copy of the GNU Lesser General Public License + along with this library; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + Digia Qt LGPL Exception version 1.1 + As an additional permission to the GNU Lesser General Public License + version + 2.1, the object code form of a "work that uses the Library" may incorporate + material from a header file that is part of the Library. You may distribute + such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and + templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + Moreover, you may apply this exception to a modified version of the + Library, + provided that such modification does not involve copying material from the + Library into the modified Library's header files unless such material is + limited to (i) numerical parameters; (ii) data structure layouts; + (iii) accessors; and (iv) small macros, templates and inline functions of + five lines or less in length. + Furthermore, you are not required to apply this additional permission to a + modified version of the Library. +--- + As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute diff --git a/src/licensedcode/data/licenses/digia-qt-exception-lgpl-2.1.yml b/src/licensedcode/data/licenses/digia-qt-exception-lgpl-2.1.yml deleted file mode 100644 index 2a865a96244..00000000000 --- a/src/licensedcode/data/licenses/digia-qt-exception-lgpl-2.1.yml +++ /dev/null @@ -1,43 +0,0 @@ -key: digia-qt-exception-lgpl-2.1 -short_name: Digia Qt Exception to LGPL 2.1 -name: Digia Qt Exception to LGPL 2.1 -category: Copyleft Limited -owner: Digia -is_deprecated: yes -is_exception: yes -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -standard_notice: |- - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1 of the License, or (at - your option) any later version. - This library is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License - for more details. - You should have received a copy of the GNU Lesser General Public License - along with this library; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - Digia Qt LGPL Exception version 1.1 - As an additional permission to the GNU Lesser General Public License - version - 2.1, the object code form of a "work that uses the Library" may incorporate - material from a header file that is part of the Library. You may distribute - such object code under terms of your choice, provided that: - (i) the header files of the Library have not been modified; and - (ii) the incorporated material is limited to numerical parameters, data - structure layouts, accessors, macros, inline functions and - templates; and - (iii) you comply with the terms of Section 6 of the GNU Lesser General - Public License version 2.1. - Moreover, you may apply this exception to a modified version of the - Library, - provided that such modification does not involve copying material from the - Library into the modified Library's header files unless such material is - limited to (i) numerical parameters; (ii) data structure layouts; - (iii) accessors; and (iv) small macros, templates and inline functions of - five lines or less in length. - Furthermore, you are not required to apply this additional permission to a - modified version of the Library. diff --git a/src/licensedcode/data/licenses/digia-qt-preview.LICENSE b/src/licensedcode/data/licenses/digia-qt-preview.LICENSE index c8323ec70ca..ca6f3a1f068 100644 --- a/src/licensedcode/data/licenses/digia-qt-preview.LICENSE +++ b/src/licensedcode/data/licenses/digia-qt-preview.LICENSE @@ -1,3 +1,14 @@ +--- +key: digia-qt-preview +short_name: Digia Qt Preview Agreement 2.4 +name: Digia Qt Technology Preview License Agreement 2.4 +category: Commercial +owner: Digia +homepage_url: http://qt.digia.com/licensing +notes: This agreement is also included in Qt open source. +spdx_license_key: LicenseRef-scancode-digia-qt-preview +--- + TECHNOLOGY PREVIEW LICENSE AGREEMENT For individuals and/or legal entities resident in the Americas (North @@ -621,7 +632,4 @@ through 227.7202-4 (June 1995), all U.S. Government End Users acquire the Licensed Software with only those rights set forth herein. The Licensed Software (including related documentation) is provided to U.S. Government End Users: (a) only as a commercial end item; and (b) only -pursuant to this Agreement. - - - +pursuant to this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/digia-qt-preview.yml b/src/licensedcode/data/licenses/digia-qt-preview.yml deleted file mode 100644 index f33badc07ac..00000000000 --- a/src/licensedcode/data/licenses/digia-qt-preview.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: digia-qt-preview -short_name: Digia Qt Preview Agreement 2.4 -name: Digia Qt Technology Preview License Agreement 2.4 -category: Commercial -owner: Digia -homepage_url: http://qt.digia.com/licensing -notes: This agreement is also included in Qt open source. -spdx_license_key: LicenseRef-scancode-digia-qt-preview diff --git a/src/licensedcode/data/licenses/digirule-foss-exception.LICENSE b/src/licensedcode/data/licenses/digirule-foss-exception.LICENSE index 4a5e6e92a06..4b5a8ed47d9 100644 --- a/src/licensedcode/data/licenses/digirule-foss-exception.LICENSE +++ b/src/licensedcode/data/licenses/digirule-foss-exception.LICENSE @@ -1,3 +1,83 @@ +--- +key: digirule-foss-exception +short_name: DigiRule FOSS Exception to GPL 2.0 +name: DigiRule FOSS License Exception to GPL 2.0 +category: Copyleft Limited +owner: bradsprojects +homepage_url: https://bradsprojects.com/the-digirule/ +is_exception: yes +spdx_license_key: DigiRule-FOSS-exception +other_urls: + - http://www.digirulesolutions.com/drupal/foss + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://www.bradsprojects.com/wp-content/uploads/2015/10/Digirule_Files_04_July_2017.zip +minimum_coverage: 90 +standard_notice: | + DigiRule Solutions's FOSS License Exception Terms and Conditions + 1. Definitions. + "Derivative Work" means a derivative work, as defined under applicable + copyright law, formed entirely from the Program and one or more FOSS + Applications. + "FOSS Application" means a free and open source software application + distributed subject to a license listed in the section below titled "FOSS + License List." + "FOSS Notice" means a notice placed by DigiRule Solutions in a copy of the + Client Libraries stating that such copy of the Client Libraries may be + distributed under DigiRule Solutions's or FOSS License Exception. + "Independent Work" means portions of the Derivative Work that are not + derived from the Program and can reasonably be considered independent and + separate works. + "Program" means a copy of DigiRule Solutions's Client Libraries that + contain a FOSS Notice. + 2. A FOSS application developer ("you" or "your") may distribute a + Derivative Work provided that you and the Derivative Work meet all of the + following conditions: + 1. You obey the GPL in all respects for the Program and all portions + (including modifications) of the Program included in the Derivative Work + (provided that this condition does not apply to Independent Works); + 2. The Derivative Work does not include any work licensed under the GPL + other than the Program; + 3. You distribute Independent Works subject to a license listed in the + section below titled "FOSS License List"; + 4. You distribute Independent Works in object code or executable form with + the complete corresponding machine-readable source code on the same medium + and under the same FOSS license applying to the object code or executable + forms; + 5. All works that are aggregated with the Program or the Derivative Work on + a medium or volume of storage are not derivative works of the Program, + Derivative Work or FOSS Application, and must reasonably be considered + independent and separate works. + 3. DigiRule Solutions reserves all rights not expressly granted in these + terms and conditions. If all of the above conditions are not met, then this + FOSS License Exception does not apply to you or your Derivative Work. + FOSS License List + License Name Version(s)/Copyright Date + Release Early Certified Software + Academic Free License 2.0 + Apache Software License 1.0/1.1/2.0 + Apple Public Source License 2.0 + Artistic license From Perl 5.8.0 + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" General Public License (LGPL) 2.0/2.1/3.0 + Jabber Open Source License 1.0 + MIT License (As listed in file MIT-License.txt) - + Mozilla Public License (MPL) 1.0/1.1 + Open Software License 2.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0/3.01 + Python license (CNRI Python License) - + Python Software Foundation License 2.1.1 + Sleepycat License "1999" + University of Illinois/NCSA Open Source License - + W3C License "2001" + X11 License "2001" + Zlib/libpng License - + Zope Public License 2.0 +--- + DigiRule Solutions's FOSS License Exception Terms and Conditions 1. Definitions. diff --git a/src/licensedcode/data/licenses/digirule-foss-exception.yml b/src/licensedcode/data/licenses/digirule-foss-exception.yml deleted file mode 100644 index 53a09738bd2..00000000000 --- a/src/licensedcode/data/licenses/digirule-foss-exception.yml +++ /dev/null @@ -1,77 +0,0 @@ -key: digirule-foss-exception -short_name: DigiRule FOSS Exception to GPL 2.0 -name: DigiRule FOSS License Exception to GPL 2.0 -category: Copyleft Limited -owner: bradsprojects -homepage_url: https://bradsprojects.com/the-digirule/ -is_exception: yes -spdx_license_key: DigiRule-FOSS-exception -other_urls: - - http://www.digirulesolutions.com/drupal/foss - - http://www.gnu.org/licenses/gpl-2.0.txt - - https://www.bradsprojects.com/wp-content/uploads/2015/10/Digirule_Files_04_July_2017.zip -minimum_coverage: 90 -standard_notice: | - DigiRule Solutions's FOSS License Exception Terms and Conditions - 1. Definitions. - "Derivative Work" means a derivative work, as defined under applicable - copyright law, formed entirely from the Program and one or more FOSS - Applications. - "FOSS Application" means a free and open source software application - distributed subject to a license listed in the section below titled "FOSS - License List." - "FOSS Notice" means a notice placed by DigiRule Solutions in a copy of the - Client Libraries stating that such copy of the Client Libraries may be - distributed under DigiRule Solutions's or FOSS License Exception. - "Independent Work" means portions of the Derivative Work that are not - derived from the Program and can reasonably be considered independent and - separate works. - "Program" means a copy of DigiRule Solutions's Client Libraries that - contain a FOSS Notice. - 2. A FOSS application developer ("you" or "your") may distribute a - Derivative Work provided that you and the Derivative Work meet all of the - following conditions: - 1. You obey the GPL in all respects for the Program and all portions - (including modifications) of the Program included in the Derivative Work - (provided that this condition does not apply to Independent Works); - 2. The Derivative Work does not include any work licensed under the GPL - other than the Program; - 3. You distribute Independent Works subject to a license listed in the - section below titled "FOSS License List"; - 4. You distribute Independent Works in object code or executable form with - the complete corresponding machine-readable source code on the same medium - and under the same FOSS license applying to the object code or executable - forms; - 5. All works that are aggregated with the Program or the Derivative Work on - a medium or volume of storage are not derivative works of the Program, - Derivative Work or FOSS Application, and must reasonably be considered - independent and separate works. - 3. DigiRule Solutions reserves all rights not expressly granted in these - terms and conditions. If all of the above conditions are not met, then this - FOSS License Exception does not apply to you or your Derivative Work. - FOSS License List - License Name Version(s)/Copyright Date - Release Early Certified Software - Academic Free License 2.0 - Apache Software License 1.0/1.1/2.0 - Apple Public Source License 2.0 - Artistic license From Perl 5.8.0 - BSD license "July 22 1999" - Common Development and Distribution License (CDDL) 1.0 - Common Public License 1.0 - Eclipse Public License 1.0 - GNU Library or "Lesser" General Public License (LGPL) 2.0/2.1/3.0 - Jabber Open Source License 1.0 - MIT License (As listed in file MIT-License.txt) - - Mozilla Public License (MPL) 1.0/1.1 - Open Software License 2.0 - OpenSSL license (with original SSLeay license) "2003" ("1998") - PHP License 3.0/3.01 - Python license (CNRI Python License) - - Python Software Foundation License 2.1.1 - Sleepycat License "1999" - University of Illinois/NCSA Open Source License - - W3C License "2001" - X11 License "2001" - Zlib/libpng License - - Zope Public License 2.0 diff --git a/src/licensedcode/data/licenses/divx-open-1.0.LICENSE b/src/licensedcode/data/licenses/divx-open-1.0.LICENSE index 4474f724a5f..35825612350 100644 --- a/src/licensedcode/data/licenses/divx-open-1.0.LICENSE +++ b/src/licensedcode/data/licenses/divx-open-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: divx-open-1.0 +short_name: DivX Open License 1.0 +name: DivX Open License v1.0 +category: Copyleft Limited +owner: DivX, LLC +spdx_license_key: LicenseRef-scancode-divx-open-1.0 +minimum_coverage: 30 +ignorable_copyrights: + - Copyright (c) 2001 Project Mayo +ignorable_holders: + - Project Mayo +ignorable_authors: + - Project Mayo +--- + DivX Open License ================= Version 1.0 diff --git a/src/licensedcode/data/licenses/divx-open-1.0.yml b/src/licensedcode/data/licenses/divx-open-1.0.yml deleted file mode 100644 index 21f98148659..00000000000 --- a/src/licensedcode/data/licenses/divx-open-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: divx-open-1.0 -short_name: DivX Open License 1.0 -name: DivX Open License v1.0 -category: Copyleft Limited -owner: DivX, LLC -spdx_license_key: LicenseRef-scancode-divx-open-1.0 -minimum_coverage: 30 -ignorable_copyrights: - - Copyright (c) 2001 Project Mayo -ignorable_holders: - - Project Mayo -ignorable_authors: - - Project Mayo diff --git a/src/licensedcode/data/licenses/divx-open-2.1.LICENSE b/src/licensedcode/data/licenses/divx-open-2.1.LICENSE index fca505f77c6..c1c358581e3 100644 --- a/src/licensedcode/data/licenses/divx-open-2.1.LICENSE +++ b/src/licensedcode/data/licenses/divx-open-2.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: divx-open-2.1 +short_name: DivX Open License 2.1 +name: DivX Open License v2.1 +category: Copyleft Limited +owner: DivX, LLC +spdx_license_key: LicenseRef-scancode-divx-open-2.1 +ignorable_copyrights: + - Copyright (c) 2001 Project Mayo +ignorable_holders: + - Project Mayo +ignorable_authors: + - Project Mayo +--- + "OpenDivX" is licensed under the DivX Open License. DivX Open License diff --git a/src/licensedcode/data/licenses/divx-open-2.1.yml b/src/licensedcode/data/licenses/divx-open-2.1.yml deleted file mode 100644 index 4323d27a24f..00000000000 --- a/src/licensedcode/data/licenses/divx-open-2.1.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: divx-open-2.1 -short_name: DivX Open License 2.1 -name: DivX Open License v2.1 -category: Copyleft Limited -owner: DivX, LLC -spdx_license_key: LicenseRef-scancode-divx-open-2.1 -ignorable_copyrights: - - Copyright (c) 2001 Project Mayo -ignorable_holders: - - Project Mayo -ignorable_authors: - - Project Mayo diff --git a/src/licensedcode/data/licenses/dl-de-by-1-0-de.LICENSE b/src/licensedcode/data/licenses/dl-de-by-1-0-de.LICENSE index a36fb880e81..6217015c758 100644 --- a/src/licensedcode/data/licenses/dl-de-by-1-0-de.LICENSE +++ b/src/licensedcode/data/licenses/dl-de-by-1-0-de.LICENSE @@ -1,3 +1,16 @@ +--- +key: dl-de-by-1-0-de +language: de +short_name: dl-de/by-1-0-de +name: Datenlizenz Deutschland - Namensnennung - Version 1.0 - Deutsch +category: Permissive +owner: govdata.de +homepage_url: https://www.govdata.de/dl-de/by-1-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-1-0-de +other_urls: + - https://www.dcat-ap.de/def/licenses/ +--- + DL-DE->BY-1.0 Datenlizenz Deutschland – Namensnennung – Version 1.0 diff --git a/src/licensedcode/data/licenses/dl-de-by-1-0-de.yml b/src/licensedcode/data/licenses/dl-de-by-1-0-de.yml deleted file mode 100644 index f22e36ec91c..00000000000 --- a/src/licensedcode/data/licenses/dl-de-by-1-0-de.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: dl-de-by-1-0-de -language: de -short_name: dl-de/by-1-0-de -name: Datenlizenz Deutschland - Namensnennung - Version 1.0 - Deutsch -category: Permissive -owner: govdata.de -homepage_url: https://www.govdata.de/dl-de/by-1-0 -spdx_license_key: LicenseRef-scancode-dl-de-by-1-0-de -other_urls: - - https://www.dcat-ap.de/def/licenses/ diff --git a/src/licensedcode/data/licenses/dl-de-by-1-0-en.LICENSE b/src/licensedcode/data/licenses/dl-de-by-1-0-en.LICENSE index 6d68da1a303..8f799ced00a 100644 --- a/src/licensedcode/data/licenses/dl-de-by-1-0-en.LICENSE +++ b/src/licensedcode/data/licenses/dl-de-by-1-0-en.LICENSE @@ -1,3 +1,15 @@ +--- +key: dl-de-by-1-0-en +short_name: dl-de/by-1-0-en +name: Data licence Germany - attribution - Version 1 - English +category: Permissive +owner: govdata.de +homepage_url: https://www.govdata.de/dl-de/by-1-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-1-0-en +other_urls: + - https://www.dcat-ap.de/def/licenses/ +--- + DL-DE->BY-1.0 Data licence Germany – attribution – Version 1.0 diff --git a/src/licensedcode/data/licenses/dl-de-by-1-0-en.yml b/src/licensedcode/data/licenses/dl-de-by-1-0-en.yml deleted file mode 100644 index 0a3ebd9218d..00000000000 --- a/src/licensedcode/data/licenses/dl-de-by-1-0-en.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: dl-de-by-1-0-en -short_name: dl-de/by-1-0-en -name: Data licence Germany - attribution - Version 1 - English -category: Permissive -owner: govdata.de -homepage_url: https://www.govdata.de/dl-de/by-1-0 -spdx_license_key: LicenseRef-scancode-dl-de-by-1-0-en -other_urls: - - https://www.dcat-ap.de/def/licenses/ diff --git a/src/licensedcode/data/licenses/dl-de-by-2-0-de.LICENSE b/src/licensedcode/data/licenses/dl-de-by-2-0-de.LICENSE index d427b40d177..8b6a45b3ef2 100644 --- a/src/licensedcode/data/licenses/dl-de-by-2-0-de.LICENSE +++ b/src/licensedcode/data/licenses/dl-de-by-2-0-de.LICENSE @@ -1,3 +1,21 @@ +--- +key: dl-de-by-2-0-de +language: de +short_name: dl-de/by-2-0-de +name: Datenlizenz Deutschland - Namensnennung - Version 2.0 - Deutsch +category: Permissive +owner: govdata.de +homepage_url: http://www.govdata.de/dl-de/by-2-0 +spdx_license_key: DL-DE-BY-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-dl-de-by-2-0-de +other_urls: + - https://www.dcat-ap.de/def/licenses/ + - https://www.govdata.de/dl-de/by-2-0 +ignorable_urls: + - http://www.govdata.de/dl-de/by-2-0 +--- + DL-DE->BY-2.0 Datenlizenz Deutschland – Namensnennung – Version 2.0 diff --git a/src/licensedcode/data/licenses/dl-de-by-2-0-de.yml b/src/licensedcode/data/licenses/dl-de-by-2-0-de.yml deleted file mode 100644 index 9a84b464895..00000000000 --- a/src/licensedcode/data/licenses/dl-de-by-2-0-de.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: dl-de-by-2-0-de -language: de -short_name: dl-de/by-2-0-de -name: Datenlizenz Deutschland - Namensnennung - Version 2.0 - Deutsch -category: Permissive -owner: govdata.de -homepage_url: http://www.govdata.de/dl-de/by-2-0 -spdx_license_key: DL-DE-BY-2.0 -other_spdx_license_keys: - - LicenseRef-scancode-dl-de-by-2-0-de -other_urls: - - https://www.dcat-ap.de/def/licenses/ - - https://www.govdata.de/dl-de/by-2-0 -ignorable_urls: - - http://www.govdata.de/dl-de/by-2-0 diff --git a/src/licensedcode/data/licenses/dl-de-by-2-0-en.LICENSE b/src/licensedcode/data/licenses/dl-de-by-2-0-en.LICENSE index 04889f44100..71fb9603b54 100644 --- a/src/licensedcode/data/licenses/dl-de-by-2-0-en.LICENSE +++ b/src/licensedcode/data/licenses/dl-de-by-2-0-en.LICENSE @@ -1,3 +1,17 @@ +--- +key: dl-de-by-2-0-en +short_name: dl-de/by-2-0-en +name: Data licence Germany - attribution - Version 2 - English +category: Permissive +owner: govdata.de +homepage_url: http://www.govdata.de/dl-de/by-2-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-2-0-en +other_urls: + - https://www.dcat-ap.de/def/licenses/ +ignorable_urls: + - http://www.govdata.de/dl-de/by-2-0 +--- + DL-DE->BY-2.0 Data licence Germany – attribution – version 2.0 diff --git a/src/licensedcode/data/licenses/dl-de-by-2-0-en.yml b/src/licensedcode/data/licenses/dl-de-by-2-0-en.yml deleted file mode 100644 index 8f68a726484..00000000000 --- a/src/licensedcode/data/licenses/dl-de-by-2-0-en.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: dl-de-by-2-0-en -short_name: dl-de/by-2-0-en -name: Data licence Germany - attribution - Version 2 - English -category: Permissive -owner: govdata.de -homepage_url: http://www.govdata.de/dl-de/by-2-0 -spdx_license_key: LicenseRef-scancode-dl-de-by-2-0-en -other_urls: - - https://www.dcat-ap.de/def/licenses/ -ignorable_urls: - - http://www.govdata.de/dl-de/by-2-0 diff --git a/src/licensedcode/data/licenses/dl-de-by-nc-1-0-de.LICENSE b/src/licensedcode/data/licenses/dl-de-by-nc-1-0-de.LICENSE index e7e4c335629..94124c4b490 100644 --- a/src/licensedcode/data/licenses/dl-de-by-nc-1-0-de.LICENSE +++ b/src/licensedcode/data/licenses/dl-de-by-nc-1-0-de.LICENSE @@ -1,3 +1,16 @@ +--- +key: dl-de-by-nc-1-0-de +language: de +short_name: dl-de/by-nc-1-0-de +name: Datenlizenz Deutschland - Namensnennung - nicht kommerziell - Version 1.0 - Deutsch +category: Free Restricted +owner: govdata.de +homepage_url: https://www.govdata.de/dl-de/by-nc-1-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-nc-1-0-de +other_urls: + - https://www.dcat-ap.de/def/licenses/ +--- + DL-DE->BY-NC-1.0 Datenlizenz Deutschland – Namensnennung – nicht kommerziell – Version 1.0 diff --git a/src/licensedcode/data/licenses/dl-de-by-nc-1-0-de.yml b/src/licensedcode/data/licenses/dl-de-by-nc-1-0-de.yml deleted file mode 100644 index ba9703e327c..00000000000 --- a/src/licensedcode/data/licenses/dl-de-by-nc-1-0-de.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: dl-de-by-nc-1-0-de -language: de -short_name: dl-de/by-nc-1-0-de -name: Datenlizenz Deutschland - Namensnennung - nicht kommerziell - Version 1.0 - Deutsch -category: Free Restricted -owner: govdata.de -homepage_url: https://www.govdata.de/dl-de/by-nc-1-0 -spdx_license_key: LicenseRef-scancode-dl-de-by-nc-1-0-de -other_urls: - - https://www.dcat-ap.de/def/licenses/ diff --git a/src/licensedcode/data/licenses/dl-de-by-nc-1-0-en.LICENSE b/src/licensedcode/data/licenses/dl-de-by-nc-1-0-en.LICENSE index 8295543ae25..c5c2ff26180 100644 --- a/src/licensedcode/data/licenses/dl-de-by-nc-1-0-en.LICENSE +++ b/src/licensedcode/data/licenses/dl-de-by-nc-1-0-en.LICENSE @@ -1,3 +1,15 @@ +--- +key: dl-de-by-nc-1-0-en +short_name: dl-de/by-nc-1-0-en +name: Data licence Germany - attribution - non-commercial - Version 1.0 - English +category: Free Restricted +owner: govdata.de +homepage_url: https://www.govdata.de/dl-de/by-nc-1-0 +spdx_license_key: LicenseRef-scancode-dl-de-by-nc-1-0-en +other_urls: + - https://www.dcat-ap.de/def/licenses/ +--- + DL-DE->BY-NC-1.0 Data licence Germany – attribution – non-commercial – Version 1.0 diff --git a/src/licensedcode/data/licenses/dl-de-by-nc-1-0-en.yml b/src/licensedcode/data/licenses/dl-de-by-nc-1-0-en.yml deleted file mode 100644 index 14e14ca4f7a..00000000000 --- a/src/licensedcode/data/licenses/dl-de-by-nc-1-0-en.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: dl-de-by-nc-1-0-en -short_name: dl-de/by-nc-1-0-en -name: Data licence Germany - attribution - non-commercial - Version 1.0 - English -category: Free Restricted -owner: govdata.de -homepage_url: https://www.govdata.de/dl-de/by-nc-1-0 -spdx_license_key: LicenseRef-scancode-dl-de-by-nc-1-0-en -other_urls: - - https://www.dcat-ap.de/def/licenses/ diff --git a/src/licensedcode/data/licenses/dmalloc.LICENSE b/src/licensedcode/data/licenses/dmalloc.LICENSE index 70c276b1168..44552fd4293 100644 --- a/src/licensedcode/data/licenses/dmalloc.LICENSE +++ b/src/licensedcode/data/licenses/dmalloc.LICENSE @@ -1,3 +1,15 @@ +--- +key: dmalloc +short_name: dmalloc License +name: dmalloc License +category: Permissive +owner: Dmalloc +spdx_license_key: LicenseRef-scancode-dmalloc +faq_url: http://dmalloc.com/ +other_urls: + - http://dmalloc.com/ +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all @@ -7,5 +19,4 @@ without specific, written prior permission. Gray Watson makes no representations about the suitability of the software described herein for any purpose.  It is provided "as is" -without express or implied warranty. - +without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dmalloc.yml b/src/licensedcode/data/licenses/dmalloc.yml deleted file mode 100644 index d935126642d..00000000000 --- a/src/licensedcode/data/licenses/dmalloc.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: dmalloc -short_name: dmalloc License -name: dmalloc License -category: Permissive -owner: Dmalloc -spdx_license_key: LicenseRef-scancode-dmalloc -faq_url: http://dmalloc.com/ -other_urls: - - http://dmalloc.com/ diff --git a/src/licensedcode/data/licenses/do-no-harm-0.1.LICENSE b/src/licensedcode/data/licenses/do-no-harm-0.1.LICENSE index 533d36eeeb4..9d36d176322 100644 --- a/src/licensedcode/data/licenses/do-no-harm-0.1.LICENSE +++ b/src/licensedcode/data/licenses/do-no-harm-0.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: do-no-harm-0.1 +short_name: Do No Harm +name: Do No Harm +category: Proprietary Free +owner: Raisely +homepage_url: https://github.com/raisely/NoHarm +spdx_license_key: LicenseRef-scancode-do-no-harm-0.1 +ignorable_urls: + - https://github.com/raisely/NoHarm +--- + Do No Harm License Version 0.1, August 2018 @@ -213,4 +225,4 @@ in compliance with the License. You may obtain a copy of the License. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the -License. +License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/do-no-harm-0.1.yml b/src/licensedcode/data/licenses/do-no-harm-0.1.yml deleted file mode 100644 index 4b5046cc3e2..00000000000 --- a/src/licensedcode/data/licenses/do-no-harm-0.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: do-no-harm-0.1 -short_name: Do No Harm -name: Do No Harm -category: Proprietary Free -owner: Raisely -homepage_url: https://github.com/raisely/NoHarm -spdx_license_key: LicenseRef-scancode-do-no-harm-0.1 -ignorable_urls: - - https://github.com/raisely/NoHarm diff --git a/src/licensedcode/data/licenses/docbook.LICENSE b/src/licensedcode/data/licenses/docbook.LICENSE index 7c7e6b95f35..f23df3af6d4 100644 --- a/src/licensedcode/data/licenses/docbook.LICENSE +++ b/src/licensedcode/data/licenses/docbook.LICENSE @@ -1,3 +1,16 @@ +--- +key: docbook +short_name: Docbook License +name: Docbook License +category: Permissive +owner: DocBook Project +homepage_url: https://github.com/docbook/xslt10-stylesheets/blob/282955cda01b7ace132a734dca0a241cfd736d91/xsl/COPYING +notes: this is an MIT/X11 style license with an extra advertizing clause +spdx_license_key: LicenseRef-scancode-docbook +faq_url: https://web-beta.archive.org/web/20160118144348/http://wiki.docbook.org/DocBookLicense +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal in the Software without @@ -31,4 +44,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER CONTRIBUTOR 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. +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/docbook.yml b/src/licensedcode/data/licenses/docbook.yml deleted file mode 100644 index 8e10c201564..00000000000 --- a/src/licensedcode/data/licenses/docbook.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: docbook -short_name: Docbook License -name: Docbook License -category: Permissive -owner: DocBook Project -homepage_url: https://github.com/docbook/xslt10-stylesheets/blob/282955cda01b7ace132a734dca0a241cfd736d91/xsl/COPYING -notes: this is an MIT/X11 style license with an extra advertizing clause -spdx_license_key: LicenseRef-scancode-docbook -faq_url: https://web-beta.archive.org/web/20160118144348/http://wiki.docbook.org/DocBookLicense -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/dom4j.LICENSE b/src/licensedcode/data/licenses/dom4j.LICENSE index f6cbf784e47..3280be2eed9 100644 --- a/src/licensedcode/data/licenses/dom4j.LICENSE +++ b/src/licensedcode/data/licenses/dom4j.LICENSE @@ -1,3 +1,35 @@ +--- +key: dom4j +short_name: Dom4j License +name: Dom4j License +category: Permissive +owner: dom4j +homepage_url: http://www.dom4j.org/ +notes: | + Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4 + is too broad, making it Free but GPL-incompatible. It does also replace the + deprecated keys classworlds and apache-due-credit that were the same licenses. + Plexus Classworlds was started in 2002 and dom4j in 2000/2001 hence it has precedence. + Other projects such as Exolab/Intalio/Castor and JCharts have used the same license. + Castor is actually the first to use this but dom4j is still commonly used and castor less so. +spdx_license_key: Plexus +text_urls: + - http://www.dom4j.org/dom4j-1.6.1/license.html + - http://www.dom4j.org/license.html + - https://web.archive.org/web/20011020192734/http://www.dom4j.org/license.html +other_urls: + - http://classworlds.codehaus.org/license.html + - http://www.castor.org/license.txt + - https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License + - https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant + - http://openorb.sourceforge.net/license.txt + - https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642 +ignorable_urls: + - http://www.dom4j.org/ +ignorable_emails: + - dom4j-info@metastuff.com +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: @@ -30,5 +62,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dom4j.yml b/src/licensedcode/data/licenses/dom4j.yml deleted file mode 100644 index d4900e2832d..00000000000 --- a/src/licensedcode/data/licenses/dom4j.yml +++ /dev/null @@ -1,29 +0,0 @@ -key: dom4j -short_name: Dom4j License -name: Dom4j License -category: Permissive -owner: dom4j -homepage_url: http://www.dom4j.org/ -notes: | - Per Fedora, this is an Apache 1.1 derived license. Unfortunately, clause 4 - is too broad, making it Free but GPL-incompatible. It does also replace the - deprecated keys classworlds and apache-due-credit that were the same licenses. - Plexus Classworlds was started in 2002 and dom4j in 2000/2001 hence it has precedence. - Other projects such as Exolab/Intalio/Castor and JCharts have used the same license. - Castor is actually the first to use this but dom4j is still commonly used and castor less so. -spdx_license_key: Plexus -text_urls: - - http://www.dom4j.org/dom4j-1.6.1/license.html - - http://www.dom4j.org/license.html - - https://web.archive.org/web/20011020192734/http://www.dom4j.org/license.html -other_urls: - - http://classworlds.codehaus.org/license.html - - http://www.castor.org/license.txt - - https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License - - https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant - - http://openorb.sourceforge.net/license.txt - - https://confluence.sakaiproject.org/plugins/viewsource/viewpagesrc.action?pageId=28442642 -ignorable_urls: - - http://www.dom4j.org/ -ignorable_emails: - - dom4j-info@metastuff.com diff --git a/src/licensedcode/data/licenses/dos32a-extender.LICENSE b/src/licensedcode/data/licenses/dos32a-extender.LICENSE index 3a29168c122..d9f0b605874 100644 --- a/src/licensedcode/data/licenses/dos32a-extender.LICENSE +++ b/src/licensedcode/data/licenses/dos32a-extender.LICENSE @@ -1,3 +1,17 @@ +--- +key: dos32a-extender +short_name: DOS32A Extender License +name: DOS32 Advanced DOS Extender Software License +category: Permissive +owner: NarechK +homepage_url: https://dos32a.narechk.net/content/license.html +spdx_license_key: LicenseRef-scancode-dos32a-extender +text_urls: + - https://github.com/open-watcom/open-watcom-v2/blob/master/bld/redist/dos32a/license.d32 +other_urls: + - https://sourceforge.net/projects/dos32a/ +--- + DOS/32 Advanced DOS Extender Software License ============================================= diff --git a/src/licensedcode/data/licenses/dos32a-extender.yml b/src/licensedcode/data/licenses/dos32a-extender.yml deleted file mode 100644 index 4ee19ee9fca..00000000000 --- a/src/licensedcode/data/licenses/dos32a-extender.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: dos32a-extender -short_name: DOS32A Extender License -name: DOS32 Advanced DOS Extender Software License -category: Permissive -owner: NarechK -homepage_url: https://dos32a.narechk.net/content/license.html -spdx_license_key: LicenseRef-scancode-dos32a-extender -text_urls: - - https://github.com/open-watcom/open-watcom-v2/blob/master/bld/redist/dos32a/license.d32 -other_urls: - - https://sourceforge.net/projects/dos32a/ diff --git a/src/licensedcode/data/licenses/dotseqn.LICENSE b/src/licensedcode/data/licenses/dotseqn.LICENSE index f116c05cd0c..5a8795d5c93 100644 --- a/src/licensedcode/data/licenses/dotseqn.LICENSE +++ b/src/licensedcode/data/licenses/dotseqn.LICENSE @@ -1,3 +1,13 @@ +--- +key: dotseqn +short_name: Dotseqn License +name: Dotseqn License +category: Permissive +owner: Donald Arsenau +homepage_url: https://fedoraproject.org/wiki/Licensing/Dotseqn +spdx_license_key: Dotseqn +--- + This file may be freely transmitted and reproduced, but it may not be changed unless the name is changed also (except that you may freely change the paper-size option for \documentclass). This notice must be left intact. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dotseqn.yml b/src/licensedcode/data/licenses/dotseqn.yml deleted file mode 100644 index 80d7a77bdec..00000000000 --- a/src/licensedcode/data/licenses/dotseqn.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: dotseqn -short_name: Dotseqn License -name: Dotseqn License -category: Permissive -owner: Donald Arsenau -homepage_url: https://fedoraproject.org/wiki/Licensing/Dotseqn -spdx_license_key: Dotseqn diff --git a/src/licensedcode/data/licenses/doug-lea.LICENSE b/src/licensedcode/data/licenses/doug-lea.LICENSE index 2a89232da5b..abcc61d0f16 100644 --- a/src/licensedcode/data/licenses/doug-lea.LICENSE +++ b/src/licensedcode/data/licenses/doug-lea.LICENSE @@ -1,3 +1,13 @@ +--- +key: doug-lea +is_deprecated: yes +short_name: Doug Lea License +name: Doug Lea License +category: Public Domain +owner: Unspecified +notes: composite of several public domain dedications +--- + Doug Lea License Doug Lea - 8094a diff --git a/src/licensedcode/data/licenses/doug-lea.yml b/src/licensedcode/data/licenses/doug-lea.yml deleted file mode 100644 index 12faf832662..00000000000 --- a/src/licensedcode/data/licenses/doug-lea.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: doug-lea -is_deprecated: yes -short_name: Doug Lea License -name: Doug Lea License -category: Public Domain -owner: Unspecified -notes: composite of several public domain dedications diff --git a/src/licensedcode/data/licenses/douglas-young.LICENSE b/src/licensedcode/data/licenses/douglas-young.LICENSE index 3b91684e53e..169b7e4c9ee 100644 --- a/src/licensedcode/data/licenses/douglas-young.LICENSE +++ b/src/licensedcode/data/licenses/douglas-young.LICENSE @@ -1,3 +1,13 @@ +--- +key: douglas-young +short_name: Douglas Young License +name: Douglas Young License +category: Permissive +owner: Pearson (Prentice Hall) +spdx_license_key: LicenseRef-scancode-douglas-young +minimum_coverage: 60 +--- + Permission to use, copy, modify, and distribute this software for any purpose except publication and without fee is hereby granted, provided that the above copyright notice appear in all copies of the software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/douglas-young.yml b/src/licensedcode/data/licenses/douglas-young.yml deleted file mode 100644 index 62f0a75a52a..00000000000 --- a/src/licensedcode/data/licenses/douglas-young.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: douglas-young -short_name: Douglas Young License -name: Douglas Young License -category: Permissive -owner: Pearson (Prentice Hall) -spdx_license_key: LicenseRef-scancode-douglas-young -minimum_coverage: 60 diff --git a/src/licensedcode/data/licenses/dpl-1.1.LICENSE b/src/licensedcode/data/licenses/dpl-1.1.LICENSE index bcefaafff3a..95ea374d4bd 100644 --- a/src/licensedcode/data/licenses/dpl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/dpl-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: dpl-1.1 +short_name: DPL-1.1 +name: DSTC Public License (DPL) v1.1 +category: Copyleft Limited +owner: DIFI +homepage_url: http://begrep.difi.no/SikkerDigitalPost/xsd/xs3p/LICENSE.html +spdx_license_key: LicenseRef-scancode-dpl-1.1 +other_urls: + - https://en.wikipedia.org/wiki/Distributed_Systems_Technology_Centre +--- + DSTC Public License (DPL) Version 1.1 diff --git a/src/licensedcode/data/licenses/dpl-1.1.yml b/src/licensedcode/data/licenses/dpl-1.1.yml deleted file mode 100644 index dcd36a369f4..00000000000 --- a/src/licensedcode/data/licenses/dpl-1.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: dpl-1.1 -short_name: DPL-1.1 -name: DSTC Public License (DPL) v1.1 -category: Copyleft Limited -owner: DIFI -homepage_url: http://begrep.difi.no/SikkerDigitalPost/xsd/xs3p/LICENSE.html -spdx_license_key: LicenseRef-scancode-dpl-1.1 -other_urls: - - https://en.wikipedia.org/wiki/Distributed_Systems_Technology_Centre diff --git a/src/licensedcode/data/licenses/dr-john-maddock.LICENSE b/src/licensedcode/data/licenses/dr-john-maddock.LICENSE index fef825575f0..bfb908b5597 100644 --- a/src/licensedcode/data/licenses/dr-john-maddock.LICENSE +++ b/src/licensedcode/data/licenses/dr-john-maddock.LICENSE @@ -1,7 +1,17 @@ +--- +key: dr-john-maddock +short_name: Dr John Maddock License +name: Dr John Maddock License +category: Permissive +owner: Dr John Maddock +is_deprecated: yes +notes: replaced by mit-old-style +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Dr John Maddock makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied warranty. +any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dr-john-maddock.yml b/src/licensedcode/data/licenses/dr-john-maddock.yml deleted file mode 100644 index ef69c417083..00000000000 --- a/src/licensedcode/data/licenses/dr-john-maddock.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: dr-john-maddock -short_name: Dr John Maddock License -name: Dr John Maddock License -category: Permissive -owner: Dr John Maddock -is_deprecated: yes -notes: replaced by mit-old-style diff --git a/src/licensedcode/data/licenses/drl-1.0.LICENSE b/src/licensedcode/data/licenses/drl-1.0.LICENSE index 938e61e2478..2c1c51c422d 100644 --- a/src/licensedcode/data/licenses/drl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/drl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: drl-1.0 +short_name: Detection Rule License 1.0 +name: Detection Rule License 1.0 +category: Permissive +owner: SigmaHQ +homepage_url: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md +spdx_license_key: DRL-1.0 +other_urls: + - https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md +--- + Detection Rule License (DRL) 1.0 Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -26,4 +38,4 @@ 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 RULES OR THE USE OR OTHER DEALINGS IN THE RULES. +CONNECTION WITH THE RULES OR THE USE OR OTHER DEALINGS IN THE RULES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/drl-1.0.yml b/src/licensedcode/data/licenses/drl-1.0.yml deleted file mode 100644 index f001c71df24..00000000000 --- a/src/licensedcode/data/licenses/drl-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: drl-1.0 -short_name: Detection Rule License 1.0 -name: Detection Rule License 1.0 -category: Permissive -owner: SigmaHQ -homepage_url: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md -spdx_license_key: DRL-1.0 -other_urls: - - https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md diff --git a/src/licensedcode/data/licenses/dropbear-2016.LICENSE b/src/licensedcode/data/licenses/dropbear-2016.LICENSE index 40c79628214..72b46b621c9 100644 --- a/src/licensedcode/data/licenses/dropbear-2016.LICENSE +++ b/src/licensedcode/data/licenses/dropbear-2016.LICENSE @@ -1,3 +1,45 @@ +--- +key: dropbear-2016 +short_name: Dropbear-2016 +name: Dropbear-2016 +category: Permissive +owner: Dropbear +homepage_url: https://matt.ucc.asn.au/dropbear/dropbear.html +notes: composite +spdx_license_key: LicenseRef-scancode-dropbear-2016 +minimum_coverage: 50 +ignorable_copyrights: + - (c) 2004 Mihnea Stoenescu + - (c) Todd C. Miller + - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland + - Copyright (c) 2002-2015 Matt Johnston + - Copyright 2008, Google Inc. + - Portions copyright (c) 2004 Mihnea Stoenescu + - Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, + Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. + - copyright 1997-2003 Simon Tatham +ignorable_holders: + - Google Inc. + - Matt Johnston + - Mihnea Stoenescu + - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez + Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. + - Simon Tatham + - Tatu Ylonen , Espoo, Finland + - Todd C. Miller +ignorable_authors: + - Daniel J. Bernstein + - Matt Johnston + - Tom St Denis +ignorable_urls: + - http://code.google.com/p/curve25519-donna/ + - http://cr.yp.to/ecdh.html +ignorable_emails: + - agl@imperialviolet.org + - djb@cr.yp.to + - ylo@cs.hut.fi +--- + Dropbear contains a number of components from different sources, hence there are a few licenses and authors involved. All licenses are fairly non-restrictive. diff --git a/src/licensedcode/data/licenses/dropbear-2016.yml b/src/licensedcode/data/licenses/dropbear-2016.yml deleted file mode 100644 index 87b51c8bb27..00000000000 --- a/src/licensedcode/data/licenses/dropbear-2016.yml +++ /dev/null @@ -1,39 +0,0 @@ -key: dropbear-2016 -short_name: Dropbear-2016 -name: Dropbear-2016 -category: Permissive -owner: Dropbear -homepage_url: https://matt.ucc.asn.au/dropbear/dropbear.html -notes: composite -spdx_license_key: LicenseRef-scancode-dropbear-2016 -minimum_coverage: 50 -ignorable_copyrights: - - (c) 2004 Mihnea Stoenescu - - (c) Todd C. Miller - - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland - - Copyright (c) 2002-2015 Matt Johnston - - Copyright 2008, Google Inc. - - Portions copyright (c) 2004 Mihnea Stoenescu - - Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, - Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. - - copyright 1997-2003 Simon Tatham -ignorable_holders: - - Google Inc. - - Matt Johnston - - Mihnea Stoenescu - - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez - Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. - - Simon Tatham - - Tatu Ylonen , Espoo, Finland - - Todd C. Miller -ignorable_authors: - - Daniel J. Bernstein - - Matt Johnston - - Tom St Denis -ignorable_urls: - - http://code.google.com/p/curve25519-donna/ - - http://cr.yp.to/ecdh.html -ignorable_emails: - - agl@imperialviolet.org - - djb@cr.yp.to - - ylo@cs.hut.fi diff --git a/src/licensedcode/data/licenses/dropbear.LICENSE b/src/licensedcode/data/licenses/dropbear.LICENSE index 8e8f17a102b..56840cb1838 100644 --- a/src/licensedcode/data/licenses/dropbear.LICENSE +++ b/src/licensedcode/data/licenses/dropbear.LICENSE @@ -1,3 +1,49 @@ +--- +key: dropbear +short_name: Dropbear License +name: Dropbear License +category: Permissive +owner: Dropbear +homepage_url: https://matt.ucc.asn.au/dropbear/dropbear.html +notes: composite +spdx_license_key: LicenseRef-scancode-dropbear +minimum_coverage: 80 +ignorable_copyrights: + - (c) 2004 Mihnea Stoenescu + - (c) Todd C. Miller + - Copyright (c) 1995 Tatu Ylonen , Timo Rinne ,Espoo, Finland + - Copyright (c) 1995,1999 Theo de Raadt + - Copyright (c) 1998 Todd C. Miller + - Copyright (c) 2000 Andre Lucas + - Copyright (c) 2002-2008 Matt Johnston + - Portions Copyright (c) 1996 Theo de Raadt + - Portions copyright (c) 1996 Jason Downs + - Portions copyright (c) 1998 Todd C. Miller + - Portions copyright (c) 2004 Mihnea Stoenescu + - Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, + Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. + - copyright 1997-2003 Simon Tatham +ignorable_holders: + - Andre Lucas + - Jason Downs + - Matt Johnston + - Mihnea Stoenescu + - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez + Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. + - Simon Tatham + - Tatu Ylonen , Timo Rinne ,Espoo, Finland + - Theo de Raadt + - Todd C. Miller +ignorable_authors: + - Andre Lucas + - Matt Johnston + - Theo de Raadt + - Tom St Denis +ignorable_emails: + - tri@iki.fi + - ylo@cs.hut.fi +--- + The majority of code is written by Matt Johnston, under the license below. Portions of the client-mode work are (c) 2004 Mihnea Stoenescu, under the diff --git a/src/licensedcode/data/licenses/dropbear.yml b/src/licensedcode/data/licenses/dropbear.yml deleted file mode 100644 index 03eb185bc1b..00000000000 --- a/src/licensedcode/data/licenses/dropbear.yml +++ /dev/null @@ -1,43 +0,0 @@ -key: dropbear -short_name: Dropbear License -name: Dropbear License -category: Permissive -owner: Dropbear -homepage_url: https://matt.ucc.asn.au/dropbear/dropbear.html -notes: composite -spdx_license_key: LicenseRef-scancode-dropbear -minimum_coverage: 80 -ignorable_copyrights: - - (c) 2004 Mihnea Stoenescu - - (c) Todd C. Miller - - Copyright (c) 1995 Tatu Ylonen , Timo Rinne ,Espoo, Finland - - Copyright (c) 1995,1999 Theo de Raadt - - Copyright (c) 1998 Todd C. Miller - - Copyright (c) 2000 Andre Lucas - - Copyright (c) 2002-2008 Matt Johnston - - Portions Copyright (c) 1996 Theo de Raadt - - Portions copyright (c) 1996 Jason Downs - - Portions copyright (c) 1998 Todd C. Miller - - Portions copyright (c) 2004 Mihnea Stoenescu - - Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, - Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. - - copyright 1997-2003 Simon Tatham -ignorable_holders: - - Andre Lucas - - Jason Downs - - Matt Johnston - - Mihnea Stoenescu - - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez - Furlong, Nicolas Barry, Justin Bradford, and CORE SDI S.A. - - Simon Tatham - - Tatu Ylonen , Timo Rinne ,Espoo, Finland - - Theo de Raadt - - Todd C. Miller -ignorable_authors: - - Andre Lucas - - Matt Johnston - - Theo de Raadt - - Tom St Denis -ignorable_emails: - - tri@iki.fi - - ylo@cs.hut.fi diff --git a/src/licensedcode/data/licenses/dsdp.LICENSE b/src/licensedcode/data/licenses/dsdp.LICENSE index 6b4f39c8881..197156fd16d 100644 --- a/src/licensedcode/data/licenses/dsdp.LICENSE +++ b/src/licensedcode/data/licenses/dsdp.LICENSE @@ -1,3 +1,22 @@ +--- +key: dsdp +short_name: DSDP License +name: DSDP License +category: Permissive +owner: University of Chicago +homepage_url: https://fedoraproject.org/wiki/Licensing/DSDP +spdx_license_key: DSDP +text_urls: + - http://www.mcs.anl.gov/hs/software/DSDP/Copyright.txt +ignorable_copyrights: + - (c) COPYRIGHT 2004 UNIVERSITY OF CHICAGO +ignorable_holders: + - UNIVERSITY OF CHICAGO +ignorable_emails: + - benson@mcs.anl.gov + - yinyu-ye@stanford.edu +--- + COPYRIGHT NOTIFICATION (C) COPYRIGHT 2004 UNIVERSITY OF CHICAGO diff --git a/src/licensedcode/data/licenses/dsdp.yml b/src/licensedcode/data/licenses/dsdp.yml deleted file mode 100644 index ecaaee41c84..00000000000 --- a/src/licensedcode/data/licenses/dsdp.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: dsdp -short_name: DSDP License -name: DSDP License -category: Permissive -owner: University of Chicago -homepage_url: https://fedoraproject.org/wiki/Licensing/DSDP -spdx_license_key: DSDP -text_urls: - - http://www.mcs.anl.gov/hs/software/DSDP/Copyright.txt -ignorable_copyrights: - - (c) COPYRIGHT 2004 UNIVERSITY OF CHICAGO -ignorable_holders: - - UNIVERSITY OF CHICAGO -ignorable_emails: - - benson@mcs.anl.gov - - yinyu-ye@stanford.edu diff --git a/src/licensedcode/data/licenses/dtree.LICENSE b/src/licensedcode/data/licenses/dtree.LICENSE index ad3351198c3..2499cbd273a 100644 --- a/src/licensedcode/data/licenses/dtree.LICENSE +++ b/src/licensedcode/data/licenses/dtree.LICENSE @@ -1,3 +1,19 @@ +--- +key: dtree +short_name: Dtree License +name: Dtree License +category: Permissive +owner: Unspecified +homepage_url: http://destroydrop.com/javascripts/tree/ +spdx_license_key: LicenseRef-scancode-dtree +other_urls: + - http://destroydrop.com/javascripts/tree/ +ignorable_copyrights: + - Copyright (c) 2002-2003 Geir Landr +ignorable_holders: + - Geir Landr +--- + Copyright (c) 2002-2003 Geir Landr This script can be used freely as long as all copyright messages are intact. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dtree.yml b/src/licensedcode/data/licenses/dtree.yml deleted file mode 100644 index e04fa872601..00000000000 --- a/src/licensedcode/data/licenses/dtree.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: dtree -short_name: Dtree License -name: Dtree License -category: Permissive -owner: Unspecified -homepage_url: http://destroydrop.com/javascripts/tree/ -spdx_license_key: LicenseRef-scancode-dtree -other_urls: - - http://destroydrop.com/javascripts/tree/ -ignorable_copyrights: - - Copyright (c) 2002-2003 Geir Landr -ignorable_holders: - - Geir Landr diff --git a/src/licensedcode/data/licenses/dual-bsd-gpl.LICENSE b/src/licensedcode/data/licenses/dual-bsd-gpl.LICENSE index be023482b36..6dfcfb478a5 100644 --- a/src/licensedcode/data/licenses/dual-bsd-gpl.LICENSE +++ b/src/licensedcode/data/licenses/dual-bsd-gpl.LICENSE @@ -1,3 +1,13 @@ +--- +key: dual-bsd-gpl +is_deprecated: yes +short_name: Dual BSD-GPL +name: Dual BSD-GPL +category: Permissive +owner: Unspecified +notes: this has been replaced by a proper license expression +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/dual-bsd-gpl.yml b/src/licensedcode/data/licenses/dual-bsd-gpl.yml deleted file mode 100644 index 4171e05ebc5..00000000000 --- a/src/licensedcode/data/licenses/dual-bsd-gpl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: dual-bsd-gpl -is_deprecated: yes -short_name: Dual BSD-GPL -name: Dual BSD-GPL -category: Permissive -owner: Unspecified -notes: this has been replaced by a proper license expression diff --git a/src/licensedcode/data/licenses/dual-commercial-gpl.LICENSE b/src/licensedcode/data/licenses/dual-commercial-gpl.LICENSE index 116131d6b58..51db0eb3105 100644 --- a/src/licensedcode/data/licenses/dual-commercial-gpl.LICENSE +++ b/src/licensedcode/data/licenses/dual-commercial-gpl.LICENSE @@ -1,3 +1,14 @@ +--- +key: dual-commercial-gpl +short_name: Dual Commercial-GPL +name: Dual Commercial-GPL +category: Copyleft +owner: MaxLinear +spdx_license_key: LicenseRef-scancode-dual-commercial-gpl +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is licensed under GNU General Public license, except that if you have entered into a signed, written license agreement with the copyright holder covering this file, that agreement applies to this file instead of the GNU General Public License. diff --git a/src/licensedcode/data/licenses/dual-commercial-gpl.yml b/src/licensedcode/data/licenses/dual-commercial-gpl.yml deleted file mode 100644 index 87b0035129a..00000000000 --- a/src/licensedcode/data/licenses/dual-commercial-gpl.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: dual-commercial-gpl -short_name: Dual Commercial-GPL -name: Dual Commercial-GPL -category: Copyleft -owner: MaxLinear -spdx_license_key: LicenseRef-scancode-dual-commercial-gpl -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/licenses/duende-sla-2022.LICENSE b/src/licensedcode/data/licenses/duende-sla-2022.LICENSE index c8cf289a793..9356d0d0af7 100644 --- a/src/licensedcode/data/licenses/duende-sla-2022.LICENSE +++ b/src/licensedcode/data/licenses/duende-sla-2022.LICENSE @@ -1,3 +1,19 @@ +--- +key: duende-sla-2022 +short_name: Duende SLA 2022 +name: Duende SLA 2022 +category: Proprietary Free +owner: Duende Software +homepage_url: https://duendesoftware.com/license/SoftwareLicense.pdf +spdx_license_key: LicenseRef-scancode-duende-sla-2022 +faq_url: https://www.nuget.org/packages/Duende.IdentityServer/6.0.4/License +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/2954 + - https://www.nuget.org/packages/Duende.IdentityServer/6.0.4 +ignorable_urls: + - https://duendesoftware.com/products/support +--- + Duende Software, Inc. – Rev. 01/2022 DUENDE™ SOFTWARE LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/duende-sla-2022.yml b/src/licensedcode/data/licenses/duende-sla-2022.yml deleted file mode 100644 index 0f1b91f45c5..00000000000 --- a/src/licensedcode/data/licenses/duende-sla-2022.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: duende-sla-2022 -short_name: Duende SLA 2022 -name: Duende SLA 2022 -category: Proprietary Free -owner: Duende Software -homepage_url: https://duendesoftware.com/license/SoftwareLicense.pdf -spdx_license_key: LicenseRef-scancode-duende-sla-2022 -faq_url: https://www.nuget.org/packages/Duende.IdentityServer/6.0.4/License -other_urls: - - https://github.com/nexB/scancode-toolkit/issues/2954 - - https://www.nuget.org/packages/Duende.IdentityServer/6.0.4 -ignorable_urls: - - https://duendesoftware.com/products/support diff --git a/src/licensedcode/data/licenses/dune-exception.LICENSE b/src/licensedcode/data/licenses/dune-exception.LICENSE index 2824630225c..690721efedc 100644 --- a/src/licensedcode/data/licenses/dune-exception.LICENSE +++ b/src/licensedcode/data/licenses/dune-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: dune-exception +short_name: DUNE exception to the GPL +name: DUNE exception to the GPL +category: Copyleft Limited +owner: DUNE Project +homepage_url: https://dune-project.org/about/license/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-dune-exception +text_urls: + - https://github.com/dune-project/dune-common/blob/master/LICENSE.md +--- + As a special exception, you may use the DUNE source files as part of a software library or application without restriction. Specifically, if other files instantiate templates or use macros or inline functions from one or more of the @@ -5,4 +18,4 @@ DUNE source files, or you compile one or more of the DUNE source files and link them with other files to produce an executable, this does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file -might be covered by the GNU General Public License. +might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dune-exception.yml b/src/licensedcode/data/licenses/dune-exception.yml deleted file mode 100644 index de33377164f..00000000000 --- a/src/licensedcode/data/licenses/dune-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: dune-exception -short_name: DUNE exception to the GPL -name: DUNE exception to the GPL -category: Copyleft Limited -owner: DUNE Project -homepage_url: https://dune-project.org/about/license/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-dune-exception -text_urls: - - https://github.com/dune-project/dune-common/blob/master/LICENSE.md diff --git a/src/licensedcode/data/licenses/dvipdfm.LICENSE b/src/licensedcode/data/licenses/dvipdfm.LICENSE index ef7aaef2732..f645190b64c 100644 --- a/src/licensedcode/data/licenses/dvipdfm.LICENSE +++ b/src/licensedcode/data/licenses/dvipdfm.LICENSE @@ -1,3 +1,16 @@ +--- +key: dvipdfm +short_name: dvipdfm License +name: dvipdfm License +category: Permissive +owner: Unspecified +homepage_url: https://fedoraproject.org/wiki/Licensing/dvipdfm +notes: | + Per Fedora, "should" does not mean "must", and there are implied rights for + unlimited copying and distribution rights for unmodified versions. +spdx_license_key: dvipdfm +--- + A modified version of this file may be distributed, but it should be distributed with a *different* name. Changed files must be distributed *together with a complete and unchanged* distribution of these files. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/dvipdfm.yml b/src/licensedcode/data/licenses/dvipdfm.yml deleted file mode 100644 index 10275386822..00000000000 --- a/src/licensedcode/data/licenses/dvipdfm.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: dvipdfm -short_name: dvipdfm License -name: dvipdfm License -category: Permissive -owner: Unspecified -homepage_url: https://fedoraproject.org/wiki/Licensing/dvipdfm -notes: | - Per Fedora, "should" does not mean "must", and there are implied rights for - unlimited copying and distribution rights for unmodified versions. -spdx_license_key: dvipdfm diff --git a/src/licensedcode/data/licenses/dwtfnmfpl-3.0.LICENSE b/src/licensedcode/data/licenses/dwtfnmfpl-3.0.LICENSE index ca3161daa92..d4ec7e0d096 100644 --- a/src/licensedcode/data/licenses/dwtfnmfpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/dwtfnmfpl-3.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: dwtfnmfpl-3.0 +short_name: DWTFNMFPL-3.0 +name: DWTFNMFPL-3.0 +category: Permissive +owner: dittodhole +homepage_url: https://github.com/dittodhole/WTFNMFPLv3 +notes: A variant on the Do What The Fuck You Want Public License (WTFPL) by Sam Hocevar. +spdx_license_key: LicenseRef-scancode-dwtfnmfpl-3.0 +--- + This project is licensed under the terms of the DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE, version 3, as it follows: diff --git a/src/licensedcode/data/licenses/dwtfnmfpl-3.0.yml b/src/licensedcode/data/licenses/dwtfnmfpl-3.0.yml deleted file mode 100644 index 2db40fef8f6..00000000000 --- a/src/licensedcode/data/licenses/dwtfnmfpl-3.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: dwtfnmfpl-3.0 -short_name: DWTFNMFPL-3.0 -name: DWTFNMFPL-3.0 -category: Permissive -owner: dittodhole -homepage_url: https://github.com/dittodhole/WTFNMFPLv3 -notes: A variant on the Do What The Fuck You Want Public License (WTFPL) by Sam Hocevar. -spdx_license_key: LicenseRef-scancode-dwtfnmfpl-3.0 diff --git a/src/licensedcode/data/licenses/dynamic-drive-tou.LICENSE b/src/licensedcode/data/licenses/dynamic-drive-tou.LICENSE index 25460ae3d5a..ef30aad2d04 100644 --- a/src/licensedcode/data/licenses/dynamic-drive-tou.LICENSE +++ b/src/licensedcode/data/licenses/dynamic-drive-tou.LICENSE @@ -1,3 +1,18 @@ +--- +key: dynamic-drive-tou +short_name: Dynamic Drive TOU +name: Dynamic Drive Terms of Use +category: Permissive +owner: DynamicDrive +spdx_license_key: LicenseRef-scancode-dynamic-drive-tou +ignorable_copyrights: + - (c) Dynamic Drive (http://www.dynamicdrive.com) +ignorable_holders: + - Dynamic Drive +ignorable_urls: + - http://www.dynamicdrive.com/ +--- + Dynamic Drive DHTML scripts- Terms of Use Unless indicated otherwise by the credit, all scripts on this site are original diff --git a/src/licensedcode/data/licenses/dynamic-drive-tou.yml b/src/licensedcode/data/licenses/dynamic-drive-tou.yml deleted file mode 100644 index d70db1dcab8..00000000000 --- a/src/licensedcode/data/licenses/dynamic-drive-tou.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: dynamic-drive-tou -short_name: Dynamic Drive TOU -name: Dynamic Drive Terms of Use -category: Permissive -owner: DynamicDrive -spdx_license_key: LicenseRef-scancode-dynamic-drive-tou -ignorable_copyrights: - - (c) Dynamic Drive (http://www.dynamicdrive.com) -ignorable_holders: - - Dynamic Drive -ignorable_urls: - - http://www.dynamicdrive.com/ diff --git a/src/licensedcode/data/licenses/dynarch-developer.LICENSE b/src/licensedcode/data/licenses/dynarch-developer.LICENSE index 665ee5e7e49..a2603cbac30 100644 --- a/src/licensedcode/data/licenses/dynarch-developer.LICENSE +++ b/src/licensedcode/data/licenses/dynarch-developer.LICENSE @@ -1,3 +1,19 @@ +--- +key: dynarch-developer +short_name: Dynarch Developer Agreement +name: Dynarch Developer Agreement +category: Commercial +owner: Dynarch +spdx_license_key: LicenseRef-scancode-dynarch-developer +text_urls: + - http://jescali-swiss.com/media/js/hmenu/license.html +minimum_coverage: 95 +ignorable_copyrights: + - (c) Dynarch.com 2004 +ignorable_holders: + - Dynarch.com +--- + PRODUCT: hmenu Version: 2.9 License type: developer diff --git a/src/licensedcode/data/licenses/dynarch-developer.yml b/src/licensedcode/data/licenses/dynarch-developer.yml deleted file mode 100644 index 5b157efc906..00000000000 --- a/src/licensedcode/data/licenses/dynarch-developer.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: dynarch-developer -short_name: Dynarch Developer Agreement -name: Dynarch Developer Agreement -category: Commercial -owner: Dynarch -spdx_license_key: LicenseRef-scancode-dynarch-developer -text_urls: - - http://jescali-swiss.com/media/js/hmenu/license.html -minimum_coverage: 95 -ignorable_copyrights: - - (c) Dynarch.com 2004 -ignorable_holders: - - Dynarch.com diff --git a/src/licensedcode/data/licenses/dynarch-linkware.LICENSE b/src/licensedcode/data/licenses/dynarch-linkware.LICENSE index 91e694fd07a..9c4cb8313fc 100644 --- a/src/licensedcode/data/licenses/dynarch-linkware.LICENSE +++ b/src/licensedcode/data/licenses/dynarch-linkware.LICENSE @@ -1,3 +1,21 @@ +--- +key: dynarch-linkware +short_name: Dynarch Linkware Agreement +name: Dynarch Linkware Agreement +category: Free Restricted +owner: Dynarch +spdx_license_key: LicenseRef-scancode-dynarch-linkware +text_urls: + - http://wme.cs.kent.edu/manipulatives/GeometryEditor/hmenu/license.html +minimum_coverage: 95 +ignorable_copyrights: + - (c) Dynarch.com 2003-2005 +ignorable_holders: + - Dynarch.com +ignorable_urls: + - http://www.dynarch.com/products/dhtml-menu/ +--- + PRODUCT: hmenu Version: 2.9 License type: linkware diff --git a/src/licensedcode/data/licenses/dynarch-linkware.yml b/src/licensedcode/data/licenses/dynarch-linkware.yml deleted file mode 100644 index b3c4c7f9032..00000000000 --- a/src/licensedcode/data/licenses/dynarch-linkware.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: dynarch-linkware -short_name: Dynarch Linkware Agreement -name: Dynarch Linkware Agreement -category: Free Restricted -owner: Dynarch -spdx_license_key: LicenseRef-scancode-dynarch-linkware -text_urls: - - http://wme.cs.kent.edu/manipulatives/GeometryEditor/hmenu/license.html -minimum_coverage: 95 -ignorable_copyrights: - - (c) Dynarch.com 2003-2005 -ignorable_holders: - - Dynarch.com -ignorable_urls: - - http://www.dynarch.com/products/dhtml-menu/ diff --git a/src/licensedcode/data/licenses/ecfonts-1.0.LICENSE b/src/licensedcode/data/licenses/ecfonts-1.0.LICENSE index 5616a2cc680..a5f21ffeb7b 100644 --- a/src/licensedcode/data/licenses/ecfonts-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ecfonts-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ecfonts-1.0 +short_name: latex-ec-fonts +name: Copyright notice to the ec fonts +category: Permissive +owner: Joerg Knappen +homepage_url: http://dante.ctan.org +spdx_license_key: LicenseRef-scancode-ecfonts-1.0 +text_urls: + - http://dante.ctan.org/tex-archive/fonts/ec/src/copyrite.txt +--- + WARRANTY There is NO WARRANTY for the ec fonts, to the extent permitted by @@ -43,4 +55,4 @@ under the following restrictions: `ec' or `tc'. * You change the `error report address' so that we do not get error - reports for files not maintained by us. + reports for files not maintained by us. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ecfonts-1.0.yml b/src/licensedcode/data/licenses/ecfonts-1.0.yml deleted file mode 100644 index 9a253a4df38..00000000000 --- a/src/licensedcode/data/licenses/ecfonts-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ecfonts-1.0 -short_name: latex-ec-fonts -name: Copyright notice to the ec fonts -category: Permissive -owner: Joerg Knappen -homepage_url: http://dante.ctan.org -spdx_license_key: LicenseRef-scancode-ecfonts-1.0 -text_urls: - - http://dante.ctan.org/tex-archive/fonts/ec/src/copyrite.txt diff --git a/src/licensedcode/data/licenses/ecl-1.0.LICENSE b/src/licensedcode/data/licenses/ecl-1.0.LICENSE index 26046fda55a..0d9910d8e0b 100644 --- a/src/licensedcode/data/licenses/ecl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ecl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: ecl-1.0 +short_name: ECL 1.0 +name: Educational Community License 1.0 +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/ecl1.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: ECL-1.0 +osi_license_key: ECL-1.0 +text_urls: + - http://www.opensource.org/licenses/ecl1.php +osi_url: http://opensource.org/licenses/ecl1.php +other_urls: + - http://opensource.org/licenses/ECL-1.0 + - https://opensource.org/licenses/ECL-1.0 +--- + The Educational Community License 1.0 This Educational Community License (the "License") applies diff --git a/src/licensedcode/data/licenses/ecl-1.0.yml b/src/licensedcode/data/licenses/ecl-1.0.yml deleted file mode 100644 index 19aa50a8ac7..00000000000 --- a/src/licensedcode/data/licenses/ecl-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ecl-1.0 -short_name: ECL 1.0 -name: Educational Community License 1.0 -category: Permissive -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/ecl1.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: ECL-1.0 -osi_license_key: ECL-1.0 -text_urls: - - http://www.opensource.org/licenses/ecl1.php -osi_url: http://opensource.org/licenses/ecl1.php -other_urls: - - http://opensource.org/licenses/ECL-1.0 - - https://opensource.org/licenses/ECL-1.0 diff --git a/src/licensedcode/data/licenses/ecl-2.0.LICENSE b/src/licensedcode/data/licenses/ecl-2.0.LICENSE index d586ca49f89..d0a4a7cfd29 100644 --- a/src/licensedcode/data/licenses/ecl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/ecl-2.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: ecl-2.0 +short_name: ECL 2.0 +name: Educational Community License 2.0 +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/ecl2.php +notes: | + Per SPDX.org, this license is OSI certifified. The Educational Community + License version 2.0 ("ECL") consists of the Apache 2.0 license, modified to + change the scope of the patent grant in section 3 to be specific to the + needs of the education communities using this license. The url included in + the boilerplate notice does not work. (15/10/10) +spdx_license_key: ECL-2.0 +osi_license_key: ECL-2.0 +text_urls: + - http://www.opensource.org/licenses/ecl2.php +osi_url: http://opensource.org/licenses/ecl2.php +other_urls: + - http://opensource.org/licenses/ECL-2.0 + - https://opensource.org/licenses/ECL-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.osedu.org/licenses/ + - http://www.osedu.org/licenses/ECL-2.0 +--- + Educational Community License Version 2.0, April 2007 http://www.osedu.org/licenses/ diff --git a/src/licensedcode/data/licenses/ecl-2.0.yml b/src/licensedcode/data/licenses/ecl-2.0.yml deleted file mode 100644 index 8c5f7559e73..00000000000 --- a/src/licensedcode/data/licenses/ecl-2.0.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: ecl-2.0 -short_name: ECL 2.0 -name: Educational Community License 2.0 -category: Permissive -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/ecl2.php -notes: | - Per SPDX.org, this license is OSI certifified. The Educational Community - License version 2.0 ("ECL") consists of the Apache 2.0 license, modified to - change the scope of the patent grant in section 3 to be specific to the - needs of the education communities using this license. The url included in - the boilerplate notice does not work. (15/10/10) -spdx_license_key: ECL-2.0 -osi_license_key: ECL-2.0 -text_urls: - - http://www.opensource.org/licenses/ecl2.php -osi_url: http://opensource.org/licenses/ecl2.php -other_urls: - - http://opensource.org/licenses/ECL-2.0 - - https://opensource.org/licenses/ECL-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.osedu.org/licenses/ - - http://www.osedu.org/licenses/ECL-2.0 diff --git a/src/licensedcode/data/licenses/eclipse-sua-2001.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2001.LICENSE index 5d0eadd4c60..80d83480337 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2001.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2001.LICENSE @@ -1,3 +1,13 @@ +--- +key: eclipse-sua-2001 +short_name: Eclipse Foundation Software User Agreement 2001 +name: Eclipse Foundation Software User Agreement 2001 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20011222104358/http://www.eclipse.org/legal/notice.html +spdx_license_key: LicenseRef-scancode-eclipse-sua-2001 +--- + Eclipse.org Software User Agreement 1st November, 2001 diff --git a/src/licensedcode/data/licenses/eclipse-sua-2001.yml b/src/licensedcode/data/licenses/eclipse-sua-2001.yml deleted file mode 100644 index 0bb9b6965ae..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2001.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: eclipse-sua-2001 -short_name: Eclipse Foundation Software User Agreement 2001 -name: Eclipse Foundation Software User Agreement 2001 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20011222104358/http://www.eclipse.org/legal/notice.html -spdx_license_key: LicenseRef-scancode-eclipse-sua-2001 diff --git a/src/licensedcode/data/licenses/eclipse-sua-2002.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2002.LICENSE index 921238a2965..662270fca0e 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2002.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2002.LICENSE @@ -1,3 +1,15 @@ +--- +key: eclipse-sua-2002 +short_name: Eclipse Foundation Software User Agreement 2002 +name: Eclipse Foundation Software User Agreement 2002 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20020914103136/http://eclipse.org/ +spdx_license_key: LicenseRef-scancode-eclipse-sua-2002 +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +--- + Eclipse.org Software User Agreement 17th June, 2002 diff --git a/src/licensedcode/data/licenses/eclipse-sua-2002.yml b/src/licensedcode/data/licenses/eclipse-sua-2002.yml deleted file mode 100644 index a3d2136cff5..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2002.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: eclipse-sua-2002 -short_name: Eclipse Foundation Software User Agreement 2002 -name: Eclipse Foundation Software User Agreement 2002 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20020914103136/http://eclipse.org/ -spdx_license_key: LicenseRef-scancode-eclipse-sua-2002 -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/licenses/eclipse-sua-2003.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2003.LICENSE index e29fc2f4266..605f8d48ef1 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2003.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2003.LICENSE @@ -1,3 +1,19 @@ +--- +key: eclipse-sua-2003 +short_name: Eclipse Foundation Software User Agreement 2003 +name: Eclipse Foundation Software User Agreement 2003 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20030210115256/http://www.eclipse.org/legal/notice.html +spdx_license_key: LicenseRef-scancode-eclipse-sua-2003 +ignorable_urls: + - http://oss.software.ibm.com/developerworks/opensource/license10.html + - http://www.apache.org/licenses/LICENSE + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- + Eclipse.org Software User Agreement 14th August, 2003 diff --git a/src/licensedcode/data/licenses/eclipse-sua-2003.yml b/src/licensedcode/data/licenses/eclipse-sua-2003.yml deleted file mode 100644 index 9d938163979..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2003.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: eclipse-sua-2003 -short_name: Eclipse Foundation Software User Agreement 2003 -name: Eclipse Foundation Software User Agreement 2003 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20030210115256/http://www.eclipse.org/legal/notice.html -spdx_license_key: LicenseRef-scancode-eclipse-sua-2003 -ignorable_urls: - - http://oss.software.ibm.com/developerworks/opensource/license10.html - - http://www.apache.org/licenses/LICENSE - - http://www.eclipse.org/legal/cpl-v10.html - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.opengroup.org/openmotif/supporters/metrolink/license.html diff --git a/src/licensedcode/data/licenses/eclipse-sua-2004.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2004.LICENSE index 867ebcf59d0..c7640c6fecf 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2004.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2004.LICENSE @@ -1,3 +1,20 @@ +--- +key: eclipse-sua-2004 +short_name: Eclipse Foundation Software User Agreement 2004 +name: Eclipse Foundation Software User Agreement 2004 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20041125054703/http://www.eclipse.org/legal/notice.html +spdx_license_key: LicenseRef-scancode-eclipse-sua-2004 +ignorable_urls: + - http://oss.software.ibm.com/developerworks/opensource/license10.html + - http://www.apache.org/licenses/LICENSE + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- + Eclipse.org Software User Agreement 15th June, 2004 diff --git a/src/licensedcode/data/licenses/eclipse-sua-2004.yml b/src/licensedcode/data/licenses/eclipse-sua-2004.yml deleted file mode 100644 index 7e820bd0b97..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2004.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: eclipse-sua-2004 -short_name: Eclipse Foundation Software User Agreement 2004 -name: Eclipse Foundation Software User Agreement 2004 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20041125054703/http://www.eclipse.org/legal/notice.html -spdx_license_key: LicenseRef-scancode-eclipse-sua-2004 -ignorable_urls: - - http://oss.software.ibm.com/developerworks/opensource/license10.html - - http://www.apache.org/licenses/LICENSE - - http://www.eclipse.org/legal/cpl-v10.html - - http://www.eclipse.org/legal/epl-v10.html - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.opengroup.org/openmotif/supporters/metrolink/license.html diff --git a/src/licensedcode/data/licenses/eclipse-sua-2005.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2005.LICENSE index 9687f37991e..d8986ad9eb0 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2005.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2005.LICENSE @@ -1,3 +1,21 @@ +--- +key: eclipse-sua-2005 +short_name: Eclipse Foundation Software User Agreement 2005 +name: Eclipse Foundation Software User Agreement 2005 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20060128034635/http://www.eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2005 +ignorable_urls: + - http://oss.software.ibm.com/developerworks/opensource/license10.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- + Eclipse Foundation Software User Agreement @@ -39,4 +57,4 @@ IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR TO Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country’s laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. \ No newline at end of file +Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/eclipse-sua-2005.yml b/src/licensedcode/data/licenses/eclipse-sua-2005.yml deleted file mode 100644 index e8504485529..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2005.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: eclipse-sua-2005 -short_name: Eclipse Foundation Software User Agreement 2005 -name: Eclipse Foundation Software User Agreement 2005 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20060128034635/http://www.eclipse.org/legal/epl/notice.php -spdx_license_key: LicenseRef-scancode-eclipse-sua-2005 -ignorable_urls: - - http://oss.software.ibm.com/developerworks/opensource/license10.html - - http://www.apache.org/licenses/LICENSE - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.eclipse.org/legal/cpl-v10.html - - http://www.eclipse.org/legal/epl-v10.html - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.opengroup.org/openmotif/supporters/metrolink/license.html diff --git a/src/licensedcode/data/licenses/eclipse-sua-2010.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2010.LICENSE index 20691eff26a..2fe5724b700 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2010.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2010.LICENSE @@ -1,3 +1,21 @@ +--- +key: eclipse-sua-2010 +short_name: Eclipse Foundation Software User Agreement 2010 +name: Eclipse Foundation Software User Agreement 2010 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20100921113304/http://eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2010 +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- + Eclipse Foundation Software User Agreement @@ -49,4 +67,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/eclipse-sua-2010.yml b/src/licensedcode/data/licenses/eclipse-sua-2010.yml deleted file mode 100644 index 702cd884099..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2010.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: eclipse-sua-2010 -short_name: Eclipse Foundation Software User Agreement 2010 -name: Eclipse Foundation Software User Agreement 2010 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20100921113304/http://eclipse.org/legal/epl/notice.php -spdx_license_key: LicenseRef-scancode-eclipse-sua-2010 -ignorable_urls: - - http://eclipse.org/equinox/p2/repository_packaging.html - - http://www.apache.org/licenses/LICENSE - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.eclipse.org/legal/cpl-v10.html - - http://www.eclipse.org/legal/epl-v10.html - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.opengroup.org/openmotif/supporters/metrolink/license.html diff --git a/src/licensedcode/data/licenses/eclipse-sua-2011.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2011.LICENSE index 69bbc1b38e8..f0b496387f9 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2011.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2011.LICENSE @@ -1,3 +1,22 @@ +--- +key: eclipse-sua-2011 +short_name: Eclipse Foundation Software User Agreement 2011 +name: Eclipse Foundation Software User Agreement 2011 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20110629072232/http://www.eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2011 +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/licenses/edl-v1.0.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.opengroup.org/openmotif/supporters/metrolink/license.html +--- + Eclipse Foundation Software User Agreement @@ -50,4 +69,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/eclipse-sua-2011.yml b/src/licensedcode/data/licenses/eclipse-sua-2011.yml deleted file mode 100644 index 4c74ec30805..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2011.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: eclipse-sua-2011 -short_name: Eclipse Foundation Software User Agreement 2011 -name: Eclipse Foundation Software User Agreement 2011 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20110629072232/http://www.eclipse.org/legal/epl/notice.php -spdx_license_key: LicenseRef-scancode-eclipse-sua-2011 -ignorable_urls: - - http://eclipse.org/equinox/p2/repository_packaging.html - - http://www.apache.org/licenses/LICENSE - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.eclipse.org/legal/cpl-v10.html - - http://www.eclipse.org/legal/epl-v10.html - - http://www.eclipse.org/licenses/edl-v1.0.html - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.opengroup.org/openmotif/supporters/metrolink/license.html diff --git a/src/licensedcode/data/licenses/eclipse-sua-2014-11.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2014-11.LICENSE index 187d34d2274..23a519baba8 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2014-11.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2014-11.LICENSE @@ -1,3 +1,22 @@ +--- +key: eclipse-sua-2014-11 +short_name: Eclipse Foundation Software User Agreement 2014-11 +name: Eclipse Foundation Software User Agreement 2014-11 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20171127212442/http://www.eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2014-11 +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-2.0 + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/licenses/edl-v1.0.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + Eclipse Foundation Software User Agreement @@ -50,4 +69,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/eclipse-sua-2014-11.yml b/src/licensedcode/data/licenses/eclipse-sua-2014-11.yml deleted file mode 100644 index e3ade143546..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2014-11.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: eclipse-sua-2014-11 -short_name: Eclipse Foundation Software User Agreement 2014-11 -name: Eclipse Foundation Software User Agreement 2014-11 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20171127212442/http://www.eclipse.org/legal/epl/notice.php -spdx_license_key: LicenseRef-scancode-eclipse-sua-2014-11 -ignorable_urls: - - http://eclipse.org/equinox/p2/repository_packaging.html - - http://www.apache.org/licenses/LICENSE - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.eclipse.org/legal/cpl-v10.html - - http://www.eclipse.org/legal/epl-2.0 - - http://www.eclipse.org/legal/epl-v10.html - - http://www.eclipse.org/licenses/edl-v1.0.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/licenses/eclipse-sua-2014.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2014.LICENSE index 75c4d6254c3..f7566925291 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2014.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2014.LICENSE @@ -1,3 +1,21 @@ +--- +key: eclipse-sua-2014 +short_name: Eclipse Foundation Software User Agreement 2014 +name: Eclipse Foundation Software User Agreement 2014 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://web.archive.org/web/20140707032302/http://eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2014 +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/licenses/edl-v1.0.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + Eclipse Foundation Software User Agreement @@ -49,4 +67,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/eclipse-sua-2014.yml b/src/licensedcode/data/licenses/eclipse-sua-2014.yml deleted file mode 100644 index 078bfa526af..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2014.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: eclipse-sua-2014 -short_name: Eclipse Foundation Software User Agreement 2014 -name: Eclipse Foundation Software User Agreement 2014 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://web.archive.org/web/20140707032302/http://eclipse.org/legal/epl/notice.php -spdx_license_key: LicenseRef-scancode-eclipse-sua-2014 -ignorable_urls: - - http://eclipse.org/equinox/p2/repository_packaging.html - - http://www.apache.org/licenses/LICENSE - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.eclipse.org/legal/cpl-v10.html - - http://www.eclipse.org/legal/epl-v10.html - - http://www.eclipse.org/licenses/edl-v1.0.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/licenses/eclipse-sua-2017.LICENSE b/src/licensedcode/data/licenses/eclipse-sua-2017.LICENSE index 7d7f62605a0..bea930de89a 100644 --- a/src/licensedcode/data/licenses/eclipse-sua-2017.LICENSE +++ b/src/licensedcode/data/licenses/eclipse-sua-2017.LICENSE @@ -1,3 +1,24 @@ +--- +key: eclipse-sua-2017 +short_name: Eclipse Foundation Software User Agreement 2017 +name: Eclipse Foundation Software User Agreement 2017 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://www.eclipse.org/legal/epl/notice.php +spdx_license_key: LicenseRef-scancode-eclipse-sua-2017 +text_urls: + - https://web.archive.org/web/20200212074736/https://www.eclipse.org/legal/epl/notice.php +ignorable_urls: + - http://eclipse.org/equinox/p2/repository_packaging.html + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.eclipse.org/legal/cpl-v10.html + - http://www.eclipse.org/legal/epl-2.0 + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/licenses/edl-v1.0.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + Eclipse Foundation Software User Agreement @@ -50,4 +71,4 @@ Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. -Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. +Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/eclipse-sua-2017.yml b/src/licensedcode/data/licenses/eclipse-sua-2017.yml deleted file mode 100644 index c576486b8c0..00000000000 --- a/src/licensedcode/data/licenses/eclipse-sua-2017.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: eclipse-sua-2017 -short_name: Eclipse Foundation Software User Agreement 2017 -name: Eclipse Foundation Software User Agreement 2017 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://www.eclipse.org/legal/epl/notice.php -spdx_license_key: LicenseRef-scancode-eclipse-sua-2017 -text_urls: - - https://web.archive.org/web/20200212074736/https://www.eclipse.org/legal/epl/notice.php -ignorable_urls: - - http://eclipse.org/equinox/p2/repository_packaging.html - - http://www.apache.org/licenses/LICENSE - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.eclipse.org/legal/cpl-v10.html - - http://www.eclipse.org/legal/epl-2.0 - - http://www.eclipse.org/legal/epl-v10.html - - http://www.eclipse.org/licenses/edl-v1.0.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/licenses/ecma-documentation.LICENSE b/src/licensedcode/data/licenses/ecma-documentation.LICENSE index 06ea38e93a2..fb45b14da48 100644 --- a/src/licensedcode/data/licenses/ecma-documentation.LICENSE +++ b/src/licensedcode/data/licenses/ecma-documentation.LICENSE @@ -1,3 +1,13 @@ +--- +key: ecma-documentation +short_name: Ecma Documentation License +name: Ecma Documentation License +category: Free Restricted +owner: Ecma International +homepage_url: http://www.ecma-international.org/publications/DISCLAIMER.pdf +spdx_license_key: LicenseRef-scancode-ecma-documentation +--- + This document and possible translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist @@ -15,4 +25,4 @@ contained herein is provided on an "AS IS" basis and ECMA INTERNATIONAL DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY OWNERSHIP RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR -PURPOSE. +PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ecma-documentation.yml b/src/licensedcode/data/licenses/ecma-documentation.yml deleted file mode 100644 index 1dc54a74ace..00000000000 --- a/src/licensedcode/data/licenses/ecma-documentation.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ecma-documentation -short_name: Ecma Documentation License -name: Ecma Documentation License -category: Free Restricted -owner: Ecma International -homepage_url: http://www.ecma-international.org/publications/DISCLAIMER.pdf -spdx_license_key: LicenseRef-scancode-ecma-documentation diff --git a/src/licensedcode/data/licenses/ecma-no-patent.LICENSE b/src/licensedcode/data/licenses/ecma-no-patent.LICENSE index ddaace9fd71..c691b9868ce 100644 --- a/src/licensedcode/data/licenses/ecma-no-patent.LICENSE +++ b/src/licensedcode/data/licenses/ecma-no-patent.LICENSE @@ -1,3 +1,16 @@ +--- +key: ecma-no-patent +short_name: Ecma no patent notice +name: Ecma no patent notice +category: Proprietary Free +owner: Ecma International +homepage_url: http://www.ecma-international.org/memento/codeofconduct.htm +is_exception: yes +spdx_license_key: LicenseRef-scancode-ecma-no-patent +ignorable_urls: + - http://www.ecma-international.org/memento/codeofconduct.htm +--- + This Software may be subject to third party rights (rights from parties other than Ecma International), including patent rights, and no licenses under such third party rights are granted under this license even if the third party concerned is @@ -6,4 +19,4 @@ a member of Ecma International. SEE THE ECMA CODE OF CONDUCT IN PATENT MATTERS AVAILABLE AT http://www.ecma-international.org/memento/codeofconduct.htm FOR INFORMATION REGARDING THE LICENSING OF PATENT CLAIMS THAT ARE REQUIRED TO -IMPLEMENT ECMA INTERNATIONAL STANDARDS*. +IMPLEMENT ECMA INTERNATIONAL STANDARDS*. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ecma-no-patent.yml b/src/licensedcode/data/licenses/ecma-no-patent.yml deleted file mode 100644 index c53eb602619..00000000000 --- a/src/licensedcode/data/licenses/ecma-no-patent.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ecma-no-patent -short_name: Ecma no patent notice -name: Ecma no patent notice -category: Proprietary Free -owner: Ecma International -homepage_url: http://www.ecma-international.org/memento/codeofconduct.htm -is_exception: yes -spdx_license_key: LicenseRef-scancode-ecma-no-patent -ignorable_urls: - - http://www.ecma-international.org/memento/codeofconduct.htm diff --git a/src/licensedcode/data/licenses/ecma-patent-coc-0.LICENSE b/src/licensedcode/data/licenses/ecma-patent-coc-0.LICENSE index ed3ff3fc473..da7bc87fb2e 100644 --- a/src/licensedcode/data/licenses/ecma-patent-coc-0.LICENSE +++ b/src/licensedcode/data/licenses/ecma-patent-coc-0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ecma-patent-coc-0 +short_name: Ecma Historical Code of Conduct in Patent Matters +name: Ecma Historical Code of Conduct in Patent Matters +category: Proprietary Free +owner: Ecma International +homepage_url: http://www.ecma-international.org/memento/historical%20codeofconduct.htm +notes: valid until December 3, 2009 +spdx_license_key: LicenseRef-scancode-ecma-patent-coc-0 +--- + Historical Code of Conduct in Patent Matters (valid until December 3, 2009) 1. diff --git a/src/licensedcode/data/licenses/ecma-patent-coc-0.yml b/src/licensedcode/data/licenses/ecma-patent-coc-0.yml deleted file mode 100644 index a14e64db662..00000000000 --- a/src/licensedcode/data/licenses/ecma-patent-coc-0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ecma-patent-coc-0 -short_name: Ecma Historical Code of Conduct in Patent Matters -name: Ecma Historical Code of Conduct in Patent Matters -category: Proprietary Free -owner: Ecma International -homepage_url: http://www.ecma-international.org/memento/historical%20codeofconduct.htm -notes: valid until December 3, 2009 -spdx_license_key: LicenseRef-scancode-ecma-patent-coc-0 diff --git a/src/licensedcode/data/licenses/ecma-patent-coc-1.LICENSE b/src/licensedcode/data/licenses/ecma-patent-coc-1.LICENSE index c961b5bdec6..3d2d3d9f42c 100644 --- a/src/licensedcode/data/licenses/ecma-patent-coc-1.LICENSE +++ b/src/licensedcode/data/licenses/ecma-patent-coc-1.LICENSE @@ -1,3 +1,13 @@ +--- +key: ecma-patent-coc-1 +short_name: Ecma Code of Conduct in Patent Matters v1 +name: Ecma Code of Conduct in Patent Matters v1 +category: Proprietary Free +owner: Ecma International +homepage_url: http://www.ecma-international.org/memento/codeofconduct_version1.htm +spdx_license_key: LicenseRef-scancode-ecma-patent-coc-1 +--- + Code of Conduct in Patent Matters Version 1 (approved by the Ecma GA in December 2009) @@ -34,4 +44,4 @@ For patented technology contributed to and incorporated into a Final Draft Ecma 7. If a patent or pending patent application, that is not subject to a license commitment in accordance with boxes 1 or 2 of the Form, is disclosed to the Ecma Secretary General after an Ecma International Standard has been approved, the process of Paragraph 6 shall be followed to determine if the standard shall be continued, withdrawn or modified. -* Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports. +* Ecma International Standards hereafter means Ecma International Standards as well as Ecma Technical Reports. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ecma-patent-coc-1.yml b/src/licensedcode/data/licenses/ecma-patent-coc-1.yml deleted file mode 100644 index 78973d1080f..00000000000 --- a/src/licensedcode/data/licenses/ecma-patent-coc-1.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ecma-patent-coc-1 -short_name: Ecma Code of Conduct in Patent Matters v1 -name: Ecma Code of Conduct in Patent Matters v1 -category: Proprietary Free -owner: Ecma International -homepage_url: http://www.ecma-international.org/memento/codeofconduct_version1.htm -spdx_license_key: LicenseRef-scancode-ecma-patent-coc-1 diff --git a/src/licensedcode/data/licenses/ecma-patent-coc-2.LICENSE b/src/licensedcode/data/licenses/ecma-patent-coc-2.LICENSE index 1130416c7cf..60c52f91047 100644 --- a/src/licensedcode/data/licenses/ecma-patent-coc-2.LICENSE +++ b/src/licensedcode/data/licenses/ecma-patent-coc-2.LICENSE @@ -1,3 +1,13 @@ +--- +key: ecma-patent-coc-2 +short_name: Ecma Code of Conduct in Patent Matters v2 +name: Ecma Code of Conduct in Patent Matters v2 +category: Proprietary Free +owner: Ecma International +homepage_url: http://www.ecma-international.org/memento/codeofconduct.htm +spdx_license_key: LicenseRef-scancode-ecma-patent-coc-2 +--- + Ecma Code of Conduct in Patent Matters* Version 2 (approved by the Ecma GA in June 2016) diff --git a/src/licensedcode/data/licenses/ecma-patent-coc-2.yml b/src/licensedcode/data/licenses/ecma-patent-coc-2.yml deleted file mode 100644 index ac11aebd161..00000000000 --- a/src/licensedcode/data/licenses/ecma-patent-coc-2.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ecma-patent-coc-2 -short_name: Ecma Code of Conduct in Patent Matters v2 -name: Ecma Code of Conduct in Patent Matters v2 -category: Proprietary Free -owner: Ecma International -homepage_url: http://www.ecma-international.org/memento/codeofconduct.htm -spdx_license_key: LicenseRef-scancode-ecma-patent-coc-2 diff --git a/src/licensedcode/data/licenses/ecos-exception-2.0.LICENSE b/src/licensedcode/data/licenses/ecos-exception-2.0.LICENSE index 4af0f1bed30..4e7f5d5c482 100644 --- a/src/licensedcode/data/licenses/ecos-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/ecos-exception-2.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: ecos-exception-2.0 +short_name: eCos Exception to GPL 2.0 or later +name: eCos Exception to GPL 2.0 or later +category: Copyleft Limited +owner: eCos +homepage_url: http://ecos.sourceware.org/ecos-license/ +notes: | + Per SPDX.org, this is typically used with GPL-2.0. Similar to Macro and + Inlines Functions Exception +is_exception: yes +spdx_license_key: eCos-exception-2.0 +text_urls: + - http://www.fsf.org/licensing/licenses/ecos-license.html + - http://www.gnu.org/licenses/ecos-license.html +faq_url: http://ecos.sourceware.org/license-overview.html +--- + 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 @@ -6,4 +24,4 @@ License. However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ecos-exception-2.0.yml b/src/licensedcode/data/licenses/ecos-exception-2.0.yml deleted file mode 100644 index f1967c857c7..00000000000 --- a/src/licensedcode/data/licenses/ecos-exception-2.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ecos-exception-2.0 -short_name: eCos Exception to GPL 2.0 or later -name: eCos Exception to GPL 2.0 or later -category: Copyleft Limited -owner: eCos -homepage_url: http://ecos.sourceware.org/ecos-license/ -notes: | - Per SPDX.org, this is typically used with GPL-2.0. Similar to Macro and - Inlines Functions Exception -is_exception: yes -spdx_license_key: eCos-exception-2.0 -text_urls: - - http://www.fsf.org/licensing/licenses/ecos-license.html - - http://www.gnu.org/licenses/ecos-license.html -faq_url: http://ecos.sourceware.org/license-overview.html diff --git a/src/licensedcode/data/licenses/ecos.LICENSE b/src/licensedcode/data/licenses/ecos.LICENSE index c5535c1fc8b..6bc0a19f5a8 100644 --- a/src/licensedcode/data/licenses/ecos.LICENSE +++ b/src/licensedcode/data/licenses/ecos.LICENSE @@ -1,3 +1,23 @@ +--- +key: ecos +is_deprecated: yes +short_name: GPL 2.0 or later with eCos Exception +name: GPL 2.0 or later with eCos Exception +category: Copyleft Limited +owner: eCos +homepage_url: http://ecos.sourceware.org/ecos-license/ +is_exception: yes +spdx_license_key: eCos-2.0 +text_urls: + - http://www.fsf.org/licensing/licenses/ecos-license.html + - http://www.gnu.org/licenses/ecos-license.html +faq_url: http://ecos.sourceware.org/license-overview.html +minimum_coverage: 100 +notes: | + Per SPDX.org, this is really GPL v2 or later + an exception. + Replaced by ecos-exception-2.0. +--- + This file is part of eCos, the Embedded Configurable Operating System. eCos is free software; you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/licenses/ecos.yml b/src/licensedcode/data/licenses/ecos.yml deleted file mode 100644 index b6eb2dca5f6..00000000000 --- a/src/licensedcode/data/licenses/ecos.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: ecos -is_deprecated: yes -short_name: GPL 2.0 or later with eCos Exception -name: GPL 2.0 or later with eCos Exception -category: Copyleft Limited -owner: eCos -homepage_url: http://ecos.sourceware.org/ecos-license/ -is_exception: yes -spdx_license_key: eCos-2.0 -text_urls: - - http://www.fsf.org/licensing/licenses/ecos-license.html - - http://www.gnu.org/licenses/ecos-license.html -faq_url: http://ecos.sourceware.org/license-overview.html -minimum_coverage: 100 -notes: | - Per SPDX.org, this is really GPL v2 or later + an exception. - Replaced by ecos-exception-2.0. diff --git a/src/licensedcode/data/licenses/ecosrh-1.0.LICENSE b/src/licensedcode/data/licenses/ecosrh-1.0.LICENSE index 00c5a529f0c..52da1d77257 100644 --- a/src/licensedcode/data/licenses/ecosrh-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ecosrh-1.0.LICENSE @@ -1,3 +1,29 @@ +--- +key: ecosrh-1.0 +short_name: Cygnus eCos Public License 1.0 +name: Cygnus eCos Public License 1.0 +category: Copyleft +owner: Red Hat +homepage_url: http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html +notes: | + this predates the 1.1 version that Red Hat created when they acquired + Cygnus but since the terms are similar we used the same license key as this + is also a rare license. +spdx_license_key: LicenseRef-scancode-ecosrh-1.0 +text_urls: + - http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html + - http://sourceware.cygnus.com/ecos/license-overview.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1998 Cygnus Solutions + - Copyright (c) 1998 Cygnus Solutions (http://www.cygnus.com) +ignorable_holders: + - Cygnus Solutions +ignorable_urls: + - http://sourceware.cygnus.com/ecos + - http://www.cygnus.com/ +--- + CYGNUS ECOS PUBLIC LICENSE Version 1.0 diff --git a/src/licensedcode/data/licenses/ecosrh-1.0.yml b/src/licensedcode/data/licenses/ecosrh-1.0.yml deleted file mode 100644 index 2b8c981cc1d..00000000000 --- a/src/licensedcode/data/licenses/ecosrh-1.0.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: ecosrh-1.0 -short_name: Cygnus eCos Public License 1.0 -name: Cygnus eCos Public License 1.0 -category: Copyleft -owner: Red Hat -homepage_url: http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html -notes: | - this predates the 1.1 version that Red Hat created when they acquired - Cygnus but since the terms are similar we used the same license key as this - is also a rare license. -spdx_license_key: LicenseRef-scancode-ecosrh-1.0 -text_urls: - - http://web.archive.org/web/19990224105519/http://sourceware.cygnus.com/ecos/license-overview.html - - http://sourceware.cygnus.com/ecos/license-overview.html -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 1998 Cygnus Solutions - - Copyright (c) 1998 Cygnus Solutions (http://www.cygnus.com) -ignorable_holders: - - Cygnus Solutions -ignorable_urls: - - http://sourceware.cygnus.com/ecos - - http://www.cygnus.com/ diff --git a/src/licensedcode/data/licenses/ecosrh-1.1.LICENSE b/src/licensedcode/data/licenses/ecosrh-1.1.LICENSE index 0063bf6de62..dfc4fbbd76c 100644 --- a/src/licensedcode/data/licenses/ecosrh-1.1.LICENSE +++ b/src/licensedcode/data/licenses/ecosrh-1.1.LICENSE @@ -1,3 +1,26 @@ +--- +key: ecosrh-1.1 +short_name: Red Hat eCos Public License 1.1 +name: Red Hat eCos Public License 1.1 +category: Copyleft +owner: Red Hat +homepage_url: http://ecos.sourceware.org/old-license.html +spdx_license_key: RHeCos-1.1 +text_urls: + - http://ecos.sourceware.org/old-license.html +faq_url: http://ecos.sourceware.org/license-overview.html +ignorable_copyrights: + - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. + - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/) +ignorable_holders: + - Red Hat, Inc. +ignorable_authors: + - Red Hat +ignorable_urls: + - http://sourceware.cygnus.com/ecos + - http://www.redhat.com/ +--- + Red Hat eCos Public License v1.1 1. DEFINITIONS diff --git a/src/licensedcode/data/licenses/ecosrh-1.1.yml b/src/licensedcode/data/licenses/ecosrh-1.1.yml deleted file mode 100644 index e4b3bddf804..00000000000 --- a/src/licensedcode/data/licenses/ecosrh-1.1.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: ecosrh-1.1 -short_name: Red Hat eCos Public License 1.1 -name: Red Hat eCos Public License 1.1 -category: Copyleft -owner: Red Hat -homepage_url: http://ecos.sourceware.org/old-license.html -spdx_license_key: RHeCos-1.1 -text_urls: - - http://ecos.sourceware.org/old-license.html -faq_url: http://ecos.sourceware.org/license-overview.html -ignorable_copyrights: - - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. - - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/) -ignorable_holders: - - Red Hat, Inc. -ignorable_authors: - - Red Hat -ignorable_urls: - - http://sourceware.cygnus.com/ecos - - http://www.redhat.com/ diff --git a/src/licensedcode/data/licenses/efl-1.0.LICENSE b/src/licensedcode/data/licenses/efl-1.0.LICENSE index 17f86eca92c..90787301384 100644 --- a/src/licensedcode/data/licenses/efl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/efl-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: efl-1.0 +short_name: EFL 1.0 +name: Eiffel Forum License 1.0 +category: Permissive +owner: Eiffel NICE +homepage_url: http://www.eiffel-nice.org/license/ +notes: | + Per SPDX.org, this license was OSI certified. This license has been + superseded by v2.0 +spdx_license_key: EFL-1.0 +osi_license_key: EFL-1.0 +text_urls: + - http://www.eiffel-nice.org/license/forum.txt + - https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1 +osi_url: http://www.opensource.org/licenses/ver1_eiffel.php +other_urls: + - http://opensource.org/licenses/EFL-1.0 + - https://opensource.org/licenses/EFL-1.0 +--- + Eiffel Forum License, version 1 Permission is hereby granted to use, copy, modify and/or distribute diff --git a/src/licensedcode/data/licenses/efl-1.0.yml b/src/licensedcode/data/licenses/efl-1.0.yml deleted file mode 100644 index a6c1da47e44..00000000000 --- a/src/licensedcode/data/licenses/efl-1.0.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: efl-1.0 -short_name: EFL 1.0 -name: Eiffel Forum License 1.0 -category: Permissive -owner: Eiffel NICE -homepage_url: http://www.eiffel-nice.org/license/ -notes: | - Per SPDX.org, this license was OSI certified. This license has been - superseded by v2.0 -spdx_license_key: EFL-1.0 -osi_license_key: EFL-1.0 -text_urls: - - http://www.eiffel-nice.org/license/forum.txt - - https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1 -osi_url: http://www.opensource.org/licenses/ver1_eiffel.php -other_urls: - - http://opensource.org/licenses/EFL-1.0 - - https://opensource.org/licenses/EFL-1.0 diff --git a/src/licensedcode/data/licenses/efl-2.0.LICENSE b/src/licensedcode/data/licenses/efl-2.0.LICENSE index a0b5be448d9..3a96918bbf4 100644 --- a/src/licensedcode/data/licenses/efl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/efl-2.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: efl-2.0 +short_name: EFL 2.0 +name: Eiffel Forum License 2.0 +category: Permissive +owner: Eiffel NICE +homepage_url: http://www.eiffel-nice.org/license/ +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: EFL-2.0 +osi_license_key: EFL-2.0 +text_urls: + - http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt + - http://www.opensource-definition.org/licenses/ver2_eiffel.html +osi_url: http://www.opensource.org/licenses/ver2_eiffel.php +faq_url: http://inamidst.com/stuff/eiffel/ +other_urls: + - http://amalasoft.com/downloads/ael/ds/LICENSE.txt + - http://en.wikipedia.org/wiki/Eiffel_Forum_License + - http://opensource.org/licenses/EFL-2.0 + - http://www.eiffel-nice.org/license/eiffel-forum-license-2.html + - https://opensource.org/licenses/EFL-2.0 +--- + Eiffel Forum License, version 2 1. Permission is hereby granted to use, copy, modify and/or diff --git a/src/licensedcode/data/licenses/efl-2.0.yml b/src/licensedcode/data/licenses/efl-2.0.yml deleted file mode 100644 index 224cddde081..00000000000 --- a/src/licensedcode/data/licenses/efl-2.0.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: efl-2.0 -short_name: EFL 2.0 -name: Eiffel Forum License 2.0 -category: Permissive -owner: Eiffel NICE -homepage_url: http://www.eiffel-nice.org/license/ -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: EFL-2.0 -osi_license_key: EFL-2.0 -text_urls: - - http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt - - http://www.opensource-definition.org/licenses/ver2_eiffel.html -osi_url: http://www.opensource.org/licenses/ver2_eiffel.php -faq_url: http://inamidst.com/stuff/eiffel/ -other_urls: - - http://amalasoft.com/downloads/ael/ds/LICENSE.txt - - http://en.wikipedia.org/wiki/Eiffel_Forum_License - - http://opensource.org/licenses/EFL-2.0 - - http://www.eiffel-nice.org/license/eiffel-forum-license-2.html - - https://opensource.org/licenses/EFL-2.0 diff --git a/src/licensedcode/data/licenses/efsl-1.0.LICENSE b/src/licensedcode/data/licenses/efsl-1.0.LICENSE index d9879eb8e26..e1fcfb001f7 100644 --- a/src/licensedcode/data/licenses/efsl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/efsl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: efsl-1.0 +short_name: EFSL 1.0 +name: Eclipse Foundation Specification License - v1.0 +category: Proprietary Free +owner: Eclipse Foundation +homepage_url: https://www.eclipse.org/legal/efsl.php +spdx_license_key: LicenseRef-scancode-efsl-1.0 +text_urls: + - https://www.eclipse.org/legal/efsl.php +faq_url: http://www.eclipse.org/legal/eplfaq.php +other_urls: + - https://www.eclipse.org/legal/epl-2.0 + - https://www.opensource.org/licenses/EPL-2.0 +ignorable_copyrights: + - COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION + - Copyright (c) Eclipse Foundation + - Copyright (c) Eclipse Foundation, Inc. +ignorable_holders: + - Eclipse Foundation + - Eclipse Foundation, Inc. + - THE ECLIPSE FOUNDATION +--- + Eclipse Foundation Specification License - v1.0 By using and/or copying this document, or the Eclipse Foundation document from @@ -49,4 +73,4 @@ DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF. The name and trademarks of the copyright holders or the Eclipse Foundation may NOT be used in advertising or publicity pertaining to this document or its contents without specific, written prior permission. Title to copyright in this -document will at all times remain with copyright holders. +document will at all times remain with copyright holders. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/efsl-1.0.yml b/src/licensedcode/data/licenses/efsl-1.0.yml deleted file mode 100644 index de476280f8c..00000000000 --- a/src/licensedcode/data/licenses/efsl-1.0.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: efsl-1.0 -short_name: EFSL 1.0 -name: Eclipse Foundation Specification License - v1.0 -category: Proprietary Free -owner: Eclipse Foundation -homepage_url: https://www.eclipse.org/legal/efsl.php -spdx_license_key: LicenseRef-scancode-efsl-1.0 -text_urls: - - https://www.eclipse.org/legal/efsl.php -faq_url: http://www.eclipse.org/legal/eplfaq.php -other_urls: - - https://www.eclipse.org/legal/epl-2.0 - - https://www.opensource.org/licenses/EPL-2.0 -ignorable_copyrights: - - COPYRIGHT HOLDERS AND THE ECLIPSE FOUNDATION - - Copyright (c) Eclipse Foundation - - Copyright (c) Eclipse Foundation, Inc. -ignorable_holders: - - Eclipse Foundation - - Eclipse Foundation, Inc. - - THE ECLIPSE FOUNDATION diff --git a/src/licensedcode/data/licenses/egenix-1.0.0.LICENSE b/src/licensedcode/data/licenses/egenix-1.0.0.LICENSE index ab0dc9fda8f..3fa52c0d148 100644 --- a/src/licensedcode/data/licenses/egenix-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/egenix-1.0.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: egenix-1.0.0 +short_name: eGenix Public License 1.0.0 +name: eGenix Public License 1.0.0 +category: Permissive +owner: eGenix +homepage_url: https://www.egenix.com/www2002/python/eGenix-mx-Extensions-v2.x.html/mxLicense.html#Public +notes: this is a rare one but we already track the v 1.1.0 +spdx_license_key: LicenseRef-scancode-egenix-1.0.0 +--- + EGENIX.COM PUBLIC LICENSE AGREEMENT VERSION 1.0.0 1. Introduction @@ -38,4 +49,4 @@ The controlling language of this License Agreement is English. If Licensee has r 7. Agreement -By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. \ No newline at end of file +By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/egenix-1.0.0.yml b/src/licensedcode/data/licenses/egenix-1.0.0.yml deleted file mode 100644 index 34207245c0c..00000000000 --- a/src/licensedcode/data/licenses/egenix-1.0.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: egenix-1.0.0 -short_name: eGenix Public License 1.0.0 -name: eGenix Public License 1.0.0 -category: Permissive -owner: eGenix -homepage_url: https://www.egenix.com/www2002/python/eGenix-mx-Extensions-v2.x.html/mxLicense.html#Public -notes: this is a rare one but we already track the v 1.1.0 -spdx_license_key: LicenseRef-scancode-egenix-1.0.0 diff --git a/src/licensedcode/data/licenses/egenix-1.1.0.LICENSE b/src/licensedcode/data/licenses/egenix-1.1.0.LICENSE index 15932599891..19e780bdaea 100644 --- a/src/licensedcode/data/licenses/egenix-1.1.0.LICENSE +++ b/src/licensedcode/data/licenses/egenix-1.1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: egenix-1.1.0 +short_name: eGenix Public License 1.1.0 +name: eGenix Public License 1.1.0 +category: Permissive +owner: eGenix +homepage_url: http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf +spdx_license_key: eGenix +text_urls: + - https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0 +--- + EGENIX.COM PUBLIC LICENSE AGREEMENT Version 1.1.0 diff --git a/src/licensedcode/data/licenses/egenix-1.1.0.yml b/src/licensedcode/data/licenses/egenix-1.1.0.yml deleted file mode 100644 index d43f5640d7e..00000000000 --- a/src/licensedcode/data/licenses/egenix-1.1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: egenix-1.1.0 -short_name: eGenix Public License 1.1.0 -name: eGenix Public License 1.1.0 -category: Permissive -owner: eGenix -homepage_url: http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf -spdx_license_key: eGenix -text_urls: - - https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0 diff --git a/src/licensedcode/data/licenses/egrappler.LICENSE b/src/licensedcode/data/licenses/egrappler.LICENSE index 95bf16e9623..3158415a332 100644 --- a/src/licensedcode/data/licenses/egrappler.LICENSE +++ b/src/licensedcode/data/licenses/egrappler.LICENSE @@ -1,3 +1,13 @@ +--- +key: egrappler +short_name: eGrappler License +name: eGrappler License +category: Commercial +owner: eGrappler +homepage_url: https://www.egrappler.com/license +spdx_license_key: LicenseRef-scancode-egrappler +--- + All files at egrappler.com are free for personal and commercial use. However, you cannot redistribute, sale, re-upload these files. Do not offer download links at your site without written consent of the author. diff --git a/src/licensedcode/data/licenses/egrappler.yml b/src/licensedcode/data/licenses/egrappler.yml deleted file mode 100644 index 812359c9dbb..00000000000 --- a/src/licensedcode/data/licenses/egrappler.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: egrappler -short_name: eGrappler License -name: eGrappler License -category: Commercial -owner: eGrappler -homepage_url: https://www.egrappler.com/license -spdx_license_key: LicenseRef-scancode-egrappler diff --git a/src/licensedcode/data/licenses/ej-technologies-eula.LICENSE b/src/licensedcode/data/licenses/ej-technologies-eula.LICENSE index 8ee51b30990..15e4676e198 100644 --- a/src/licensedcode/data/licenses/ej-technologies-eula.LICENSE +++ b/src/licensedcode/data/licenses/ej-technologies-eula.LICENSE @@ -1,3 +1,20 @@ +--- +key: ej-technologies-eula +short_name: ej-technologies EULA +name: ej-technologies EULA +category: Commercial +owner: ej-technologies +homepage_url: http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html +spdx_license_key: LicenseRef-scancode-ej-technologies-eula +text_urls: + - http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html +ignorable_urls: + - http://www.ej-technologies.com/ + - http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html +ignorable_emails: + - info@ej-technologies.com +--- + ej-technologies-EULA http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html diff --git a/src/licensedcode/data/licenses/ej-technologies-eula.yml b/src/licensedcode/data/licenses/ej-technologies-eula.yml deleted file mode 100644 index 4ed02b5343f..00000000000 --- a/src/licensedcode/data/licenses/ej-technologies-eula.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: ej-technologies-eula -short_name: ej-technologies EULA -name: ej-technologies EULA -category: Commercial -owner: ej-technologies -homepage_url: http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html -spdx_license_key: LicenseRef-scancode-ej-technologies-eula -text_urls: - - http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html -ignorable_urls: - - http://www.ej-technologies.com/ - - http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html -ignorable_emails: - - info@ej-technologies.com diff --git a/src/licensedcode/data/licenses/ekiga-exception-2.0-plus.LICENSE b/src/licensedcode/data/licenses/ekiga-exception-2.0-plus.LICENSE index 41b07410ac4..9bb36d124b6 100644 --- a/src/licensedcode/data/licenses/ekiga-exception-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/ekiga-exception-2.0-plus.LICENSE @@ -1,3 +1,36 @@ +--- +key: ekiga-exception-2.0-plus +short_name: Ekiga exception to GPL 2.0 or later +name: Ekiga exception to GPL 2.0 or later +category: Copyleft Limited +owner: Ekiga +homepage_url: http://www.ekiga.org/download-ekiga-binaries-or-source-code +is_exception: yes +spdx_license_key: LicenseRef-scancode-ekiga-exception-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Ekiga/GnomeMeeting is licensed under the GNU GPL license and as a special + exception, you have permission to link or otherwise combine this program + with + the programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute + the combination, without applying the requirements of the GNU GPL to these + programs, as long as you do follow the requirements of the GNU GPL for all + the + rest of the software thus combined. +--- + Ekiga/GnomeMeeting is licensed under the GNU GPL license and as a special exception, you have permission to link or otherwise combine this program with the programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute diff --git a/src/licensedcode/data/licenses/ekiga-exception-2.0-plus.yml b/src/licensedcode/data/licenses/ekiga-exception-2.0-plus.yml deleted file mode 100644 index d8071ae1ea5..00000000000 --- a/src/licensedcode/data/licenses/ekiga-exception-2.0-plus.yml +++ /dev/null @@ -1,30 +0,0 @@ -key: ekiga-exception-2.0-plus -short_name: Ekiga exception to GPL 2.0 or later -name: Ekiga exception to GPL 2.0 or later -category: Copyleft Limited -owner: Ekiga -homepage_url: http://www.ekiga.org/download-ekiga-binaries-or-source-code -is_exception: yes -spdx_license_key: LicenseRef-scancode-ekiga-exception-2.0-plus -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Ekiga/GnomeMeeting is licensed under the GNU GPL license and as a special - exception, you have permission to link or otherwise combine this program - with - the programs OPAL, OpenH323, PWLIB, and OpenSSL, and distribute - the combination, without applying the requirements of the GNU GPL to these - programs, as long as you do follow the requirements of the GNU GPL for all - the - rest of the software thus combined. diff --git a/src/licensedcode/data/licenses/ekioh.LICENSE b/src/licensedcode/data/licenses/ekioh.LICENSE index 1a8551c8d25..12b842e010c 100644 --- a/src/licensedcode/data/licenses/ekioh.LICENSE +++ b/src/licensedcode/data/licenses/ekioh.LICENSE @@ -1,3 +1,18 @@ +--- +key: ekioh +is_deprecated: yes +short_name: Ekioh License +name: Ekioh License +category: Permissive +owner: Ekioh +notes: | + Obsolete License -- do not use. Except for the dangling ", subject to the + following conditions:" text, this license is essentially identical to the + MIT-0-Clause (mit-0) license, which has been accepted in the open source + community relatively recently. + See also https://kryogenix.org/code/browser/licence.html. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/licenses/ekioh.yml b/src/licensedcode/data/licenses/ekioh.yml deleted file mode 100644 index 72710d44ae7..00000000000 --- a/src/licensedcode/data/licenses/ekioh.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ekioh -is_deprecated: yes -short_name: Ekioh License -name: Ekioh License -category: Permissive -owner: Ekioh -notes: | - Obsolete License -- do not use. Except for the dangling ", subject to the - following conditions:" text, this license is essentially identical to the - MIT-0-Clause (mit-0) license, which has been accepted in the open source - community relatively recently. - See also https://kryogenix.org/code/browser/licence.html. diff --git a/src/licensedcode/data/licenses/elastic-license-2018.LICENSE b/src/licensedcode/data/licenses/elastic-license-2018.LICENSE index e9174e28797..1e078b87620 100644 --- a/src/licensedcode/data/licenses/elastic-license-2018.LICENSE +++ b/src/licensedcode/data/licenses/elastic-license-2018.LICENSE @@ -1,3 +1,27 @@ +--- +key: elastic-license-2018 +short_name: Elastic License 2018 +name: Elastic License Agreement 2018 +category: Source-available +owner: Elastic +homepage_url: https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt +spdx_license_key: LicenseRef-scancode-elastic-license-2018 +text_urls: + - https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt +other_urls: + - https://www.elastic.co/blog/doubling-down-on-open + - https://www.elastic.co/products/x-pack/open + - https://github.com/elastic/elasticsearch/blob/master/x-pack/plugin/core/src/main/java/org/elasticsearch/index/engine/FrozenEngine.java#L3 +standard_notice: | + Licensed under the Elastic License; you may not use this file except in + compliance with the Elastic License. +ignorable_urls: + - https://www.elastic.co/subscriptions +ignorable_emails: + - elastic_license@elastic.co + - legal@elastic.co +--- + ELASTIC LICENSE AGREEMENT PLEASE READ CAREFULLY THIS ELASTIC LICENSE AGREEMENT (THIS "AGREEMENT"), WHICH diff --git a/src/licensedcode/data/licenses/elastic-license-2018.yml b/src/licensedcode/data/licenses/elastic-license-2018.yml deleted file mode 100644 index 31ac0aba79b..00000000000 --- a/src/licensedcode/data/licenses/elastic-license-2018.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: elastic-license-2018 -short_name: Elastic License 2018 -name: Elastic License Agreement 2018 -category: Source-available -owner: Elastic -homepage_url: https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt -spdx_license_key: LicenseRef-scancode-elastic-license-2018 -text_urls: - - https://github.com/elastic/elasticsearch/blob/0d8aa7527e242fbda9d84867ab8bc955758eebce/licenses/ELASTIC-LICENSE.txt -other_urls: - - https://www.elastic.co/blog/doubling-down-on-open - - https://www.elastic.co/products/x-pack/open - - https://github.com/elastic/elasticsearch/blob/master/x-pack/plugin/core/src/main/java/org/elasticsearch/index/engine/FrozenEngine.java#L3 -standard_notice: | - Licensed under the Elastic License; you may not use this file except in - compliance with the Elastic License. -ignorable_urls: - - https://www.elastic.co/subscriptions -ignorable_emails: - - elastic_license@elastic.co - - legal@elastic.co diff --git a/src/licensedcode/data/licenses/elastic-license-v2.LICENSE b/src/licensedcode/data/licenses/elastic-license-v2.LICENSE index 809108b857f..3e408e3ac05 100644 --- a/src/licensedcode/data/licenses/elastic-license-v2.LICENSE +++ b/src/licensedcode/data/licenses/elastic-license-v2.LICENSE @@ -1,3 +1,23 @@ +--- +key: elastic-license-v2 +short_name: Elastic License 2.0 (ELv2) +name: Elastic License 2.0 (ELv2) +category: Source-available +owner: Elastic +homepage_url: https://www.elastic.co/licensing/elastic-license +spdx_license_key: Elastic-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-elastic-license-v2 +text_urls: + - https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt + - https://raw.githubusercontent.com/elastic/elasticsearch/6ab35978f28351e91dcf51d0ee2f4d5a74e02697/licenses/ELASTIC-LICENSE-2.0.txt +faq_url: https://www.elastic.co/blog/elastic-license-v2 +other_urls: + - https://www.elastic.co/blog/elastic-license-v2 +ignorable_urls: + - https://www.elastic.co/licensing/elastic-license +--- + Elastic License 2.0 URL: https://www.elastic.co/licensing/elastic-license @@ -90,4 +110,4 @@ these terms. **use** means anything you do with the software requiring one of your licenses. -**trademark** means trademarks, service marks, and similar rights. +**trademark** means trademarks, service marks, and similar rights. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/elastic-license-v2.yml b/src/licensedcode/data/licenses/elastic-license-v2.yml deleted file mode 100644 index ed26ad97e05..00000000000 --- a/src/licensedcode/data/licenses/elastic-license-v2.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: elastic-license-v2 -short_name: Elastic License 2.0 (ELv2) -name: Elastic License 2.0 (ELv2) -category: Source-available -owner: Elastic -homepage_url: https://www.elastic.co/licensing/elastic-license -spdx_license_key: Elastic-2.0 -other_spdx_license_keys: - - LicenseRef-scancode-elastic-license-v2 -text_urls: - - https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt - - https://raw.githubusercontent.com/elastic/elasticsearch/6ab35978f28351e91dcf51d0ee2f4d5a74e02697/licenses/ELASTIC-LICENSE-2.0.txt -faq_url: https://www.elastic.co/blog/elastic-license-v2 -other_urls: - - https://www.elastic.co/blog/elastic-license-v2 -ignorable_urls: - - https://www.elastic.co/licensing/elastic-license diff --git a/src/licensedcode/data/licenses/elib-gpl.LICENSE b/src/licensedcode/data/licenses/elib-gpl.LICENSE index eb197e2153a..4843b602c19 100644 --- a/src/licensedcode/data/licenses/elib-gpl.LICENSE +++ b/src/licensedcode/data/licenses/elib-gpl.LICENSE @@ -1,3 +1,20 @@ +--- +key: elib-gpl +short_name: GPL-Elib +name: GNU Elib General Public License +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.math.utah.edu/docs/info/elib_1.html +spdx_license_key: LicenseRef-scancode-elib-gpl +text_urls: + - http://www.math.utah.edu/docs/info/elib_1.html#SEC1 +faq_url: http://www.math.utah.edu/docs/info/elib_3.html +ignorable_copyrights: + - Copyright (c) 1992 Free Software Foundation +ignorable_holders: + - Free Software Foundation +--- + GNU ELIB GENERAL PUBLIC LICENSE The license agreements of most software companies keep you at the mercy of those companies. By contrast, our general public license is intended to give everyone the right to share GNU Elib. To make sure that you get the rights we want you to have, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. Hence this license agreement. diff --git a/src/licensedcode/data/licenses/elib-gpl.yml b/src/licensedcode/data/licenses/elib-gpl.yml deleted file mode 100644 index 58318dd50d7..00000000000 --- a/src/licensedcode/data/licenses/elib-gpl.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: elib-gpl -short_name: GPL-Elib -name: GNU Elib General Public License -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.math.utah.edu/docs/info/elib_1.html -spdx_license_key: LicenseRef-scancode-elib-gpl -text_urls: - - http://www.math.utah.edu/docs/info/elib_1.html#SEC1 -faq_url: http://www.math.utah.edu/docs/info/elib_3.html -ignorable_copyrights: - - Copyright (c) 1992 Free Software Foundation -ignorable_holders: - - Free Software Foundation diff --git a/src/licensedcode/data/licenses/ellis-lab.LICENSE b/src/licensedcode/data/licenses/ellis-lab.LICENSE index 800337296d1..5d334c8624a 100644 --- a/src/licensedcode/data/licenses/ellis-lab.LICENSE +++ b/src/licensedcode/data/licenses/ellis-lab.LICENSE @@ -1,3 +1,13 @@ +--- +key: ellis-lab +short_name: EllisLab License +name: EllisLab License +category: Permissive +owner: EllisLab +homepage_url: http://www.codeigniter.com/docs +spdx_license_key: LicenseRef-scancode-ellis-lab +--- + This license is a legal agreement between you and {copyright-owner} for the use of {component} (the "Software"). By obtaining the Software you agree to comply with the terms and conditions of this license. diff --git a/src/licensedcode/data/licenses/ellis-lab.yml b/src/licensedcode/data/licenses/ellis-lab.yml deleted file mode 100644 index bf1050addb4..00000000000 --- a/src/licensedcode/data/licenses/ellis-lab.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ellis-lab -short_name: EllisLab License -name: EllisLab License -category: Permissive -owner: EllisLab -homepage_url: http://www.codeigniter.com/docs -spdx_license_key: LicenseRef-scancode-ellis-lab diff --git a/src/licensedcode/data/licenses/emit.LICENSE b/src/licensedcode/data/licenses/emit.LICENSE index 293d79e000d..8976cf1cd83 100644 --- a/src/licensedcode/data/licenses/emit.LICENSE +++ b/src/licensedcode/data/licenses/emit.LICENSE @@ -1,3 +1,19 @@ +--- +key: emit +short_name: Enhanced MIT License +name: Enhanced MIT License +category: Permissive +owner: Wix +homepage_url: https://raw.githubusercontent.com/wix/react-native-zss-rich-text-editor/v1.1.0/LICENSE +notes: See also https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library +spdx_license_key: LicenseRef-scancode-emit +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2016 Wix.com +ignorable_holders: + - Wix.com +--- + The Enhanced MIT License Introduction @@ -29,4 +45,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of 1) the above copyright notice, this permission notice and the complete introduction section above shall be included in all copies or substantial portions of the Software. 2) when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any “viral” copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE 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/licenses/emit.yml b/src/licensedcode/data/licenses/emit.yml deleted file mode 100644 index e18370a6405..00000000000 --- a/src/licensedcode/data/licenses/emit.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: emit -short_name: Enhanced MIT License -name: Enhanced MIT License -category: Permissive -owner: Wix -homepage_url: https://raw.githubusercontent.com/wix/react-native-zss-rich-text-editor/v1.1.0/LICENSE -notes: See also https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library -spdx_license_key: LicenseRef-scancode-emit -minimum_coverage: 50 -ignorable_copyrights: - - Copyright (c) 2016 Wix.com -ignorable_holders: - - Wix.com diff --git a/src/licensedcode/data/licenses/emx-library.LICENSE b/src/licensedcode/data/licenses/emx-library.LICENSE index 3927481fe65..66ca040afa7 100644 --- a/src/licensedcode/data/licenses/emx-library.LICENSE +++ b/src/licensedcode/data/licenses/emx-library.LICENSE @@ -1,3 +1,15 @@ +--- +key: emx-library +short_name: EMX Library License +name: EMX Library License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-emx-library +faq_url: http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX +other_urls: + - http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX +--- + The emx libraries are not distributed under the GPL. Linking an application with the emx libraries does not cause the executable to be covered by the GNU General Public License. You are allowed diff --git a/src/licensedcode/data/licenses/emx-library.yml b/src/licensedcode/data/licenses/emx-library.yml deleted file mode 100644 index 04860ab3c2a..00000000000 --- a/src/licensedcode/data/licenses/emx-library.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: emx-library -short_name: EMX Library License -name: EMX Library License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-emx-library -faq_url: http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX -other_urls: - - http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX diff --git a/src/licensedcode/data/licenses/energyplus-bsd.LICENSE b/src/licensedcode/data/licenses/energyplus-bsd.LICENSE index 9f3741af050..62a2012cc8e 100644 --- a/src/licensedcode/data/licenses/energyplus-bsd.LICENSE +++ b/src/licensedcode/data/licenses/energyplus-bsd.LICENSE @@ -1,3 +1,15 @@ +--- +key: energyplus-bsd +short_name: EnergyPlus BSD-Style License +name: EnergyPlus BSD-Style License +category: Permissive +owner: Regents of the University of California +homepage_url: https://energyplus.net/licensing +spdx_license_key: LicenseRef-scancode-energyplus-bsd +ignorable_emails: + - IPO@lbl.gov +--- + If you have questions about your rights to use or distribute this software, please contact Berkeley Lab's Innovation & Partnerships Office at IPO@lbl.gov. NOTICE: This Software was developed under funding from the U.S. Department of Energy and the U.S. Government consequently retains certain rights. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, distribute copies to the public, prepare derivative works, and perform publicly and display publicly, and to permit others to do so. diff --git a/src/licensedcode/data/licenses/energyplus-bsd.yml b/src/licensedcode/data/licenses/energyplus-bsd.yml deleted file mode 100644 index 14737b7ba6c..00000000000 --- a/src/licensedcode/data/licenses/energyplus-bsd.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: energyplus-bsd -short_name: EnergyPlus BSD-Style License -name: EnergyPlus BSD-Style License -category: Permissive -owner: Regents of the University of California -homepage_url: https://energyplus.net/licensing -spdx_license_key: LicenseRef-scancode-energyplus-bsd -ignorable_emails: - - IPO@lbl.gov diff --git a/src/licensedcode/data/licenses/enhydra-1.1.LICENSE b/src/licensedcode/data/licenses/enhydra-1.1.LICENSE index e92a52f1e3f..f6900f0eef0 100644 --- a/src/licensedcode/data/licenses/enhydra-1.1.LICENSE +++ b/src/licensedcode/data/licenses/enhydra-1.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: enhydra-1.1 +short_name: Enhydra 1.1 +name: Enhydra Public License 1.1 +category: Copyleft Limited +owner: Lutris Technologies, Inc. +homepage_url: http://ksoap.objectweb.org/software/license/index.html +spdx_license_key: LicenseRef-scancode-enhydra-1.1 +text_urls: + - http://ksoap.objectweb.org/software/license/index.html +minimum_coverage: 30 +ignorable_copyrights: + - Copyright 1997-2000 Lutris Technologies (http://www.lutris.com) + - Copyright Lutris Technologies, Inc. +ignorable_holders: + - Lutris Technologies + - Lutris Technologies, Inc. +ignorable_authors: + - Lutris Technologies, Inc. +ignorable_urls: + - http://www.enhydra.org/ + - http://www.lutris.com/ +ignorable_emails: + - info@lutris.com +--- + Enhydra Public License Version 1.1 1. Definitions diff --git a/src/licensedcode/data/licenses/enhydra-1.1.yml b/src/licensedcode/data/licenses/enhydra-1.1.yml deleted file mode 100644 index cd21db8249c..00000000000 --- a/src/licensedcode/data/licenses/enhydra-1.1.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: enhydra-1.1 -short_name: Enhydra 1.1 -name: Enhydra Public License 1.1 -category: Copyleft Limited -owner: Lutris Technologies, Inc. -homepage_url: http://ksoap.objectweb.org/software/license/index.html -spdx_license_key: LicenseRef-scancode-enhydra-1.1 -text_urls: - - http://ksoap.objectweb.org/software/license/index.html -minimum_coverage: 30 -ignorable_copyrights: - - Copyright 1997-2000 Lutris Technologies (http://www.lutris.com) - - Copyright Lutris Technologies, Inc. -ignorable_holders: - - Lutris Technologies - - Lutris Technologies, Inc. -ignorable_authors: - - Lutris Technologies, Inc. -ignorable_urls: - - http://www.enhydra.org/ - - http://www.lutris.com/ -ignorable_emails: - - info@lutris.com diff --git a/src/licensedcode/data/licenses/enlightenment.LICENSE b/src/licensedcode/data/licenses/enlightenment.LICENSE index 9606b05e1b3..676742050dd 100644 --- a/src/licensedcode/data/licenses/enlightenment.LICENSE +++ b/src/licensedcode/data/licenses/enlightenment.LICENSE @@ -1,5 +1,26 @@ +--- +key: enlightenment +short_name: EFL MIT-Style License +name: Enlightenment (EFL) MIT-Style License +category: Permissive +owner: Enlightenment +homepage_url: http://www.enlightenment.org/ +notes: | + Per Fedora, this license is a modified version of the common MIT license, + with an additional advertising clause that makes it GPL-incompatible. It + was originally found at + http://www.enlightenment.org/viewvc/e16/e/COPYING?revision=1.10 , but that + URL is gone (they seem to have moved source control systems). The latest + available copy from enlightment.org + http://trac.enlightenment.org/e/browser/trunk/E16/e/COPYING has been + preserved here for reference. +spdx_license_key: MIT-advertising +text_urls: + - https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies of the Software, its documentation and marketing & publicity materials, and acknowledgment shall be given in the documentation, materials and software packages that this Software was used. -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 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE 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 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/licenses/enlightenment.yml b/src/licensedcode/data/licenses/enlightenment.yml deleted file mode 100644 index 835557e8a7e..00000000000 --- a/src/licensedcode/data/licenses/enlightenment.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: enlightenment -short_name: EFL MIT-Style License -name: Enlightenment (EFL) MIT-Style License -category: Permissive -owner: Enlightenment -homepage_url: http://www.enlightenment.org/ -notes: | - Per Fedora, this license is a modified version of the common MIT license, - with an additional advertising clause that makes it GPL-incompatible. It - was originally found at - http://www.enlightenment.org/viewvc/e16/e/COPYING?revision=1.10 , but that - URL is gone (they seem to have moved source control systems). The latest - available copy from enlightment.org - http://trac.enlightenment.org/e/browser/trunk/E16/e/COPYING has been - preserved here for reference. -spdx_license_key: MIT-advertising -text_urls: - - https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising diff --git a/src/licensedcode/data/licenses/enna.LICENSE b/src/licensedcode/data/licenses/enna.LICENSE index 6feb56e2857..04bc507b41e 100644 --- a/src/licensedcode/data/licenses/enna.LICENSE +++ b/src/licensedcode/data/licenses/enna.LICENSE @@ -1,3 +1,13 @@ +--- +key: enna +short_name: enna License +name: enna License +category: Permissive +owner: Enlightenment +homepage_url: https://fedoraproject.org/wiki/Licensing/MIT#enna +spdx_license_key: MIT-enna +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/licenses/enna.yml b/src/licensedcode/data/licenses/enna.yml deleted file mode 100644 index 79884820721..00000000000 --- a/src/licensedcode/data/licenses/enna.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: enna -short_name: enna License -name: enna License -category: Permissive -owner: Enlightenment -homepage_url: https://fedoraproject.org/wiki/Licensing/MIT#enna -spdx_license_key: MIT-enna diff --git a/src/licensedcode/data/licenses/entessa-1.0.LICENSE b/src/licensedcode/data/licenses/entessa-1.0.LICENSE index 2c65100bf91..2944e09345c 100644 --- a/src/licensedcode/data/licenses/entessa-1.0.LICENSE +++ b/src/licensedcode/data/licenses/entessa-1.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: entessa-1.0 +short_name: Entessa 1.0 +name: Entessa Public License v1.0 +category: Permissive +owner: Entessa +homepage_url: http://openseal.sourceforge.net/epl/index.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: Entessa +text_urls: + - http://openseal.org/epl/index.html + - http://web.archive.org/web/20040518115036/http://openseal.org/epl/index.html +osi_url: http://opensource.org/licenses/entessa.php +other_urls: + - http://opensource.org/licenses/Entessa + - http://sourceforge.net/softwaremap/?&fq[]=trove%3A397 + - https://opensource.org/licenses/Entessa +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2003 Entessa, LLC. +ignorable_holders: + - Entessa, LLC. +ignorable_authors: + - openSEAL (http://www.openseal.org/) +ignorable_urls: + - http://www.entessa.com/ + - http://www.openseal.org/ +ignorable_emails: + - epl@entessa.com +--- + Entessa Public License Version. 1.0 Copyright (c) 2003 Entessa, LLC. All rights reserved. diff --git a/src/licensedcode/data/licenses/entessa-1.0.yml b/src/licensedcode/data/licenses/entessa-1.0.yml deleted file mode 100644 index 130bdecddd9..00000000000 --- a/src/licensedcode/data/licenses/entessa-1.0.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: entessa-1.0 -short_name: Entessa 1.0 -name: Entessa Public License v1.0 -category: Permissive -owner: Entessa -homepage_url: http://openseal.sourceforge.net/epl/index.html -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: Entessa -text_urls: - - http://openseal.org/epl/index.html - - http://web.archive.org/web/20040518115036/http://openseal.org/epl/index.html -osi_url: http://opensource.org/licenses/entessa.php -other_urls: - - http://opensource.org/licenses/Entessa - - http://sourceforge.net/softwaremap/?&fq[]=trove%3A397 - - https://opensource.org/licenses/Entessa -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 2003 Entessa, LLC. -ignorable_holders: - - Entessa, LLC. -ignorable_authors: - - openSEAL (http://www.openseal.org/) -ignorable_urls: - - http://www.entessa.com/ - - http://www.openseal.org/ -ignorable_emails: - - epl@entessa.com diff --git a/src/licensedcode/data/licenses/epaperpress.LICENSE b/src/licensedcode/data/licenses/epaperpress.LICENSE index b34afe0e6d7..9f0dc039233 100644 --- a/src/licensedcode/data/licenses/epaperpress.LICENSE +++ b/src/licensedcode/data/licenses/epaperpress.LICENSE @@ -1,3 +1,13 @@ +--- +key: epaperpress +short_name: ePaperPress License +name: ePaperPress License +category: Permissive +owner: ePaperPress +homepage_url: https://www.epaperpress.com/lexandyacc/ +spdx_license_key: LicenseRef-scancode-epaperpress +--- + Permission to reproduce portions of this document is given provided the web site listed below is referenced. No additional restrictions apply. Source code, when part of a software project, may be used freely without reference to the author. diff --git a/src/licensedcode/data/licenses/epaperpress.yml b/src/licensedcode/data/licenses/epaperpress.yml deleted file mode 100644 index 4d23052d140..00000000000 --- a/src/licensedcode/data/licenses/epaperpress.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: epaperpress -short_name: ePaperPress License -name: ePaperPress License -category: Permissive -owner: ePaperPress -homepage_url: https://www.epaperpress.com/lexandyacc/ -spdx_license_key: LicenseRef-scancode-epaperpress diff --git a/src/licensedcode/data/licenses/epics.LICENSE b/src/licensedcode/data/licenses/epics.LICENSE index 6334f1b82a0..9b0f33e267e 100644 --- a/src/licensedcode/data/licenses/epics.LICENSE +++ b/src/licensedcode/data/licenses/epics.LICENSE @@ -1,3 +1,17 @@ +--- +key: epics +short_name: EPICS Open License +name: EPICS Open License +category: Permissive +owner: Argonne National Laboratory +homepage_url: http://www.aps.anl.gov/epics/license/open.php +spdx_license_key: EPICS +text_urls: + - http://www.aps.anl.gov/epics/license/open.php +other_urls: + - https://epics.anl.gov/license/open.php +--- + Experimental Physics and Industrial Control System (EPICS) Open Source License EPICS Open License Terms diff --git a/src/licensedcode/data/licenses/epics.yml b/src/licensedcode/data/licenses/epics.yml deleted file mode 100644 index 77168dc3352..00000000000 --- a/src/licensedcode/data/licenses/epics.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: epics -short_name: EPICS Open License -name: EPICS Open License -category: Permissive -owner: Argonne National Laboratory -homepage_url: http://www.aps.anl.gov/epics/license/open.php -spdx_license_key: EPICS -text_urls: - - http://www.aps.anl.gov/epics/license/open.php -other_urls: - - https://epics.anl.gov/license/open.php diff --git a/src/licensedcode/data/licenses/epl-1.0.LICENSE b/src/licensedcode/data/licenses/epl-1.0.LICENSE index 1e6c14d846d..4d0cbe24ec5 100644 --- a/src/licensedcode/data/licenses/epl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/epl-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: epl-1.0 +short_name: EPL 1.0 +name: Eclipse Public License 1.0 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: http://www.eclipse.org/legal/epl-v10.html +notes: | + Per SPDX.org, this license is OSI certifified EPL replaced the CPL on 28 + June 2005. +spdx_license_key: EPL-1.0 +osi_license_key: EPL-1.0 +text_urls: + - http://www.eclipse.org/legal/epl-v10.html +osi_url: http://opensource.org/licenses/eclipse-1.0.php +faq_url: http://eclipse.org/legal/eplfaq.php +other_urls: + - http://www.opensource.org/licenses/EPL-1.0 + - https://opensource.org/licenses/EPL-1.0 +--- + Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/src/licensedcode/data/licenses/epl-1.0.yml b/src/licensedcode/data/licenses/epl-1.0.yml deleted file mode 100644 index ab619f2c520..00000000000 --- a/src/licensedcode/data/licenses/epl-1.0.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: epl-1.0 -short_name: EPL 1.0 -name: Eclipse Public License 1.0 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: http://www.eclipse.org/legal/epl-v10.html -notes: | - Per SPDX.org, this license is OSI certifified EPL replaced the CPL on 28 - June 2005. -spdx_license_key: EPL-1.0 -osi_license_key: EPL-1.0 -text_urls: - - http://www.eclipse.org/legal/epl-v10.html -osi_url: http://opensource.org/licenses/eclipse-1.0.php -faq_url: http://eclipse.org/legal/eplfaq.php -other_urls: - - http://www.opensource.org/licenses/EPL-1.0 - - https://opensource.org/licenses/EPL-1.0 diff --git a/src/licensedcode/data/licenses/epl-2.0.LICENSE b/src/licensedcode/data/licenses/epl-2.0.LICENSE index 4fe02a57211..1741e8f101a 100644 --- a/src/licensedcode/data/licenses/epl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/epl-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: epl-2.0 +short_name: EPL 2.0 +name: Eclipse Public License 2.0 +category: Copyleft Limited +owner: Eclipse Foundation +homepage_url: https://www.eclipse.org/legal/epl-2.0/ +spdx_license_key: EPL-2.0 +text_urls: + - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt +faq_url: http://www.eclipse.org/legal/eplfaq.php +other_urls: + - https://www.eclipse.org/legal/epl-2.0 + - https://www.opensource.org/licenses/EPL-2.0 +--- + Eclipse Public License - v 2.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE diff --git a/src/licensedcode/data/licenses/epl-2.0.yml b/src/licensedcode/data/licenses/epl-2.0.yml deleted file mode 100644 index 50a12aef70e..00000000000 --- a/src/licensedcode/data/licenses/epl-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: epl-2.0 -short_name: EPL 2.0 -name: Eclipse Public License 2.0 -category: Copyleft Limited -owner: Eclipse Foundation -homepage_url: https://www.eclipse.org/legal/epl-2.0/ -spdx_license_key: EPL-2.0 -text_urls: - - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt -faq_url: http://www.eclipse.org/legal/eplfaq.php -other_urls: - - https://www.eclipse.org/legal/epl-2.0 - - https://www.opensource.org/licenses/EPL-2.0 diff --git a/src/licensedcode/data/licenses/epo-osl-2005.1.LICENSE b/src/licensedcode/data/licenses/epo-osl-2005.1.LICENSE index 7e13dd8fbd1..49acc0e2e57 100644 --- a/src/licensedcode/data/licenses/epo-osl-2005.1.LICENSE +++ b/src/licensedcode/data/licenses/epo-osl-2005.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: epo-osl-2005.1 +short_name: EPO-OSL +name: EPO Open Source Licence No. 2005/1 +category: Copyleft +owner: European Patent Organization +homepage_url: http://ephx.sourceforge.net/viewlicence.html +spdx_license_key: LicenseRef-scancode-epo-osl-2005.1 +text_urls: + - http://ephx.sourceforge.net/viewlicence.html +--- + European Patent Organisation Open Source Licence No. 2005/1 This Licence applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this Licence. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification"). Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this Licence; they are outside its scope. diff --git a/src/licensedcode/data/licenses/epo-osl-2005.1.yml b/src/licensedcode/data/licenses/epo-osl-2005.1.yml deleted file mode 100644 index d29f0c8d8ec..00000000000 --- a/src/licensedcode/data/licenses/epo-osl-2005.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: epo-osl-2005.1 -short_name: EPO-OSL -name: EPO Open Source Licence No. 2005/1 -category: Copyleft -owner: European Patent Organization -homepage_url: http://ephx.sourceforge.net/viewlicence.html -spdx_license_key: LicenseRef-scancode-epo-osl-2005.1 -text_urls: - - http://ephx.sourceforge.net/viewlicence.html diff --git a/src/licensedcode/data/licenses/eric-glass.LICENSE b/src/licensedcode/data/licenses/eric-glass.LICENSE index bf9da196e53..de8070f3825 100644 --- a/src/licensedcode/data/licenses/eric-glass.LICENSE +++ b/src/licensedcode/data/licenses/eric-glass.LICENSE @@ -1,3 +1,23 @@ +--- +key: eric-glass +short_name: Eric Glass License +name: Eric Glass License +category: Permissive +owner: NTLM Authorization Proxy Server Project +homepage_url: http://davenport.sourceforge.net/ntlm.html +spdx_license_key: LicenseRef-scancode-eric-glass +standard_notice: | + All trademarks mentioned in this document are the property of their + respective owners. + Copyright © 2003, 2006 Eric Glass + Permission to use, copy, modify, and distribute this document for any + purpose and without any fee is hereby granted, provided that the above + copyright notice and this list of conditions appear in all copies. + The most current version of this document may be obtained from + http://davenport.sourceforge.net/ntlm.html. The author may be contacted vie + e-mail at eric.glass at gmail.com. +--- + Permission to use, copy, modify, and distribute this document for any purpose and without any fee is hereby granted, provided that the above copyright notice and this list of conditions appear in all copies. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/eric-glass.yml b/src/licensedcode/data/licenses/eric-glass.yml deleted file mode 100644 index fdbf056c00b..00000000000 --- a/src/licensedcode/data/licenses/eric-glass.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: eric-glass -short_name: Eric Glass License -name: Eric Glass License -category: Permissive -owner: NTLM Authorization Proxy Server Project -homepage_url: http://davenport.sourceforge.net/ntlm.html -spdx_license_key: LicenseRef-scancode-eric-glass -standard_notice: | - All trademarks mentioned in this document are the property of their - respective owners. - Copyright © 2003, 2006 Eric Glass - Permission to use, copy, modify, and distribute this document for any - purpose and without any fee is hereby granted, provided that the above - copyright notice and this list of conditions appear in all copies. - The most current version of this document may be obtained from - http://davenport.sourceforge.net/ntlm.html. The author may be contacted vie - e-mail at eric.glass at gmail.com. diff --git a/src/licensedcode/data/licenses/erlangpl-1.1.LICENSE b/src/licensedcode/data/licenses/erlangpl-1.1.LICENSE index db2b0729301..41fbd5c14d0 100644 --- a/src/licensedcode/data/licenses/erlangpl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/erlangpl-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: erlangpl-1.1 +short_name: Erlang Public License 1.1 +name: Erlang Public License v1.1 +category: Copyleft +owner: Erlang +homepage_url: http://www.erlang.org/EPLICENSE +spdx_license_key: ErlPL-1.1 +text_urls: + - http://www.erlang.org/EPLICENSE +ignorable_copyrights: + - Copyright 1999, Ericsson Utvecklings AB. +ignorable_holders: + - Ericsson Utvecklings AB. +ignorable_urls: + - http://www.erlang.org/ +--- + ERLANG PUBLIC LICENSE Version 1.1 diff --git a/src/licensedcode/data/licenses/erlangpl-1.1.yml b/src/licensedcode/data/licenses/erlangpl-1.1.yml deleted file mode 100644 index 84e1c8791c6..00000000000 --- a/src/licensedcode/data/licenses/erlangpl-1.1.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: erlangpl-1.1 -short_name: Erlang Public License 1.1 -name: Erlang Public License v1.1 -category: Copyleft -owner: Erlang -homepage_url: http://www.erlang.org/EPLICENSE -spdx_license_key: ErlPL-1.1 -text_urls: - - http://www.erlang.org/EPLICENSE -ignorable_copyrights: - - Copyright 1999, Ericsson Utvecklings AB. -ignorable_holders: - - Ericsson Utvecklings AB. -ignorable_urls: - - http://www.erlang.org/ diff --git a/src/licensedcode/data/licenses/errbot-exception.LICENSE b/src/licensedcode/data/licenses/errbot-exception.LICENSE index 4e8e52bb78b..8bd5cc636dd 100644 --- a/src/licensedcode/data/licenses/errbot-exception.LICENSE +++ b/src/licensedcode/data/licenses/errbot-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: errbot-exception +short_name: Errbot exception +name: Errbot exception +category: Permissive +owner: Errbot +homepage_url: http://errbot.io/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-errbot-exception +text_urls: + - https://github.com/errbotio/errbot/blob/master/gplv3-exceptions.txt +minimum_coverage: 30 +--- + As a special exception, the copyright holders of Errbot hereby grant permission for plug-ins, scripts or add-ons not bundled or distributed as part of Errbot itself and potentially licensed under a different license, to be diff --git a/src/licensedcode/data/licenses/errbot-exception.yml b/src/licensedcode/data/licenses/errbot-exception.yml deleted file mode 100644 index de3289fe14b..00000000000 --- a/src/licensedcode/data/licenses/errbot-exception.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: errbot-exception -short_name: Errbot exception -name: Errbot exception -category: Permissive -owner: Errbot -homepage_url: http://errbot.io/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-errbot-exception -text_urls: - - https://github.com/errbotio/errbot/blob/master/gplv3-exceptions.txt -minimum_coverage: 30 diff --git a/src/licensedcode/data/licenses/esri-devkit.LICENSE b/src/licensedcode/data/licenses/esri-devkit.LICENSE index bd39f2785a5..a429bea9098 100644 --- a/src/licensedcode/data/licenses/esri-devkit.LICENSE +++ b/src/licensedcode/data/licenses/esri-devkit.LICENSE @@ -1,3 +1,16 @@ +--- +key: esri-devkit +short_name: Esri Developer Kit License +name: Esri Developer Kit License +category: Proprietary Free +owner: Esri +spdx_license_key: LicenseRef-scancode-esri-devkit +ignorable_copyrights: + - Copyright 2006 ESRI +ignorable_holders: + - ESRI +--- + Copyright 2006 ESRI All rights reserved under the copyright laws of the United States @@ -7,4 +20,4 @@ You may freely redistribute and use this sample code, with or without modification, provided you include the original copyright notice and use restrictions. -See use restrictions at /arcgis/developerkit/userestrictions. +See use restrictions at /arcgis/developerkit/userestrictions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/esri-devkit.yml b/src/licensedcode/data/licenses/esri-devkit.yml deleted file mode 100644 index 9301f4fd15d..00000000000 --- a/src/licensedcode/data/licenses/esri-devkit.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: esri-devkit -short_name: Esri Developer Kit License -name: Esri Developer Kit License -category: Proprietary Free -owner: Esri -spdx_license_key: LicenseRef-scancode-esri-devkit -ignorable_copyrights: - - Copyright 2006 ESRI -ignorable_holders: - - ESRI diff --git a/src/licensedcode/data/licenses/esri.LICENSE b/src/licensedcode/data/licenses/esri.LICENSE index 280f6b3a8f0..5e9ff005e0b 100644 --- a/src/licensedcode/data/licenses/esri.LICENSE +++ b/src/licensedcode/data/licenses/esri.LICENSE @@ -1,3 +1,33 @@ +--- +key: esri +short_name: Esri License +name: Esri License +category: Commercial +owner: Esri +homepage_url: http://www.esri.com/legal/pdfs/mla_e204_e300/english +spdx_license_key: LicenseRef-scancode-esri +minimum_coverage: 60 +ignorable_copyrights: + - copyright date(s) from the source materials Esri and its licensors +ignorable_holders: + - date(s) from the source materials Esri and its licensors +ignorable_urls: + - http://links.esri.com/agol/transactiondef + - http://support.esri.com/en/support + - http://www.arcgis.com/ + - http://www.esri.com/legal + - http://www.esri.com/legal/dmca_policy + - http://www.esri.com/legal/redistribution-rights + - http://www.esri.com/legal/software-license + - http://www.esri.com/software/arcgis/arcgis-for-home + - http://www.esri.com/supplierterms-HERE + - http://www.esri.com/terms-of-use-bodc + - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/e-802-bing-mapsvcs.pdf + - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/home-use-installation-support.pdf + - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf + - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf +--- + IMPORTANT—READ CAREFULLY Unless superseded by a signed license agreement between you and Esri, Esri is willing to license Products to you only if you accept all terms and conditions contained in this License Agreement. Please read the terms and conditions carefully. You may not use the Products until you have agreed to the terms and conditions of the License Agreement. If you do not agree to the terms and conditions as stated, click "I do not accept the license agreement" below; you may then request a refund of applicable fees paid. diff --git a/src/licensedcode/data/licenses/esri.yml b/src/licensedcode/data/licenses/esri.yml deleted file mode 100644 index 6ac97e47632..00000000000 --- a/src/licensedcode/data/licenses/esri.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: esri -short_name: Esri License -name: Esri License -category: Commercial -owner: Esri -homepage_url: http://www.esri.com/legal/pdfs/mla_e204_e300/english -spdx_license_key: LicenseRef-scancode-esri -minimum_coverage: 60 -ignorable_copyrights: - - copyright date(s) from the source materials Esri and its licensors -ignorable_holders: - - date(s) from the source materials Esri and its licensors -ignorable_urls: - - http://links.esri.com/agol/transactiondef - - http://support.esri.com/en/support - - http://www.arcgis.com/ - - http://www.esri.com/legal - - http://www.esri.com/legal/dmca_policy - - http://www.esri.com/legal/redistribution-rights - - http://www.esri.com/legal/software-license - - http://www.esri.com/software/arcgis/arcgis-for-home - - http://www.esri.com/supplierterms-HERE - - http://www.esri.com/terms-of-use-bodc - - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/e-802-bing-mapsvcs.pdf - - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/home-use-installation-support.pdf - - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9792-teleatlas_use_data.pdf - - http://www.esri.com/~/media/Files/Pdfs/legal/pdfs/j9946-icubed.pdf diff --git a/src/licensedcode/data/licenses/etalab-2.0-en.LICENSE b/src/licensedcode/data/licenses/etalab-2.0-en.LICENSE index d9d322e579c..b2eb5231fec 100644 --- a/src/licensedcode/data/licenses/etalab-2.0-en.LICENSE +++ b/src/licensedcode/data/licenses/etalab-2.0-en.LICENSE @@ -1,3 +1,22 @@ +--- +key: etalab-2.0-en +short_name: Etalab Open License 2.0 English +name: Etalab Open License 2.0 English +category: Permissive +owner: DINUM +homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE +notes: there is also a French version +spdx_license_key: LicenseRef-scancode-etalab-2.0-en +text_urls: + - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md +other_urls: + - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf + - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE + - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf +ignorable_urls: + - http://www.data.gouv.fr/fr/datasets/xxx +--- + # OPEN LICENCE 2.0/LICENCE OUVERTE 2.0 ## “Reuse” of the “Information” covered by this licence @@ -73,4 +92,4 @@ Under the Prime Minister’s authority, the Etalab mission is mandated to open u This licence is version 2.0 of the Open Licence. -Etalab reserves the right to propose new versions of the Open Licence. Nevertheless, “Reusers” may continue to reuse information obtained under this licence should they so wish. +Etalab reserves the right to propose new versions of the Open Licence. Nevertheless, “Reusers” may continue to reuse information obtained under this licence should they so wish. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/etalab-2.0-en.yml b/src/licensedcode/data/licenses/etalab-2.0-en.yml deleted file mode 100644 index 9e9d026ace2..00000000000 --- a/src/licensedcode/data/licenses/etalab-2.0-en.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: etalab-2.0-en -short_name: Etalab Open License 2.0 English -name: Etalab Open License 2.0 English -category: Permissive -owner: DINUM -homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE -notes: there is also a French version -spdx_license_key: LicenseRef-scancode-etalab-2.0-en -text_urls: - - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md -other_urls: - - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf - - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE - - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf -ignorable_urls: - - http://www.data.gouv.fr/fr/datasets/xxx diff --git a/src/licensedcode/data/licenses/etalab-2.0-fr.LICENSE b/src/licensedcode/data/licenses/etalab-2.0-fr.LICENSE index 2ba1978351a..9dc5f09cfba 100644 --- a/src/licensedcode/data/licenses/etalab-2.0-fr.LICENSE +++ b/src/licensedcode/data/licenses/etalab-2.0-fr.LICENSE @@ -1,3 +1,23 @@ +--- +is_deprecated: yes +key: etalab-2.0-fr +language: fr +short_name: Etalab Open License 2.0 French +name: Etalab Open License 2.0 French +category: Unstated License +owner: DINUM +homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE +text_urls: + - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md +other_urls: + - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf + - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE + - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf +ignorable_urls: + - http://www.data.gouv.fr/fr/datasets/xxx +notes: Renamed to etalab-2.0 +--- + LICENCE OUVERTE / OPEN LICENCE =================================================================== @@ -176,4 +196,4 @@ Cette licence est la version 2.0 de la Licence Ouverte. Etalab se réserve la faculté de proposer de nouvelles versions de la Licence Ouverte. Cependant, les « Réutilisateurs » pourront continuer à réutiliser les -informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. +informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/etalab-2.0-fr.yml b/src/licensedcode/data/licenses/etalab-2.0-fr.yml deleted file mode 100644 index 9308ae46b88..00000000000 --- a/src/licensedcode/data/licenses/etalab-2.0-fr.yml +++ /dev/null @@ -1,17 +0,0 @@ -is_deprecated: yes -key: etalab-2.0-fr -language: fr -short_name: Etalab Open License 2.0 French -name: Etalab Open License 2.0 French -category: Unstated License -owner: DINUM -homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE -text_urls: - - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md -other_urls: - - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf - - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE - - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf -ignorable_urls: - - http://www.data.gouv.fr/fr/datasets/xxx -notes: Renamed to etalab-2.0 diff --git a/src/licensedcode/data/licenses/etalab-2.0.LICENSE b/src/licensedcode/data/licenses/etalab-2.0.LICENSE index 2ba1978351a..29bbea0ae85 100644 --- a/src/licensedcode/data/licenses/etalab-2.0.LICENSE +++ b/src/licensedcode/data/licenses/etalab-2.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: etalab-2.0 +language: fr +short_name: Etalab Open License 2.0 +name: Etalab Open License 2.0 +category: Permissive +owner: DINUM +homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE +notes: there is also an English version +spdx_license_key: etalab-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-etalab-2.0 + - LicenseRef-scancode-etalab-2.0-fr +text_urls: + - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md +other_urls: + - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf + - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE + - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf +ignorable_urls: + - http://www.data.gouv.fr/fr/datasets/xxx +--- + LICENCE OUVERTE / OPEN LICENCE =================================================================== @@ -176,4 +199,4 @@ Cette licence est la version 2.0 de la Licence Ouverte. Etalab se réserve la faculté de proposer de nouvelles versions de la Licence Ouverte. Cependant, les « Réutilisateurs » pourront continuer à réutiliser les -informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. +informations qu’ils ont obtenues sous cette licence s’ils le souhaitent. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/etalab-2.0.yml b/src/licensedcode/data/licenses/etalab-2.0.yml deleted file mode 100644 index 6227128ab28..00000000000 --- a/src/licensedcode/data/licenses/etalab-2.0.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: etalab-2.0 -language: fr -short_name: Etalab Open License 2.0 -name: Etalab Open License 2.0 -category: Permissive -owner: DINUM -homepage_url: https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE -notes: there is also an English version -spdx_license_key: etalab-2.0 -other_spdx_license_keys: - - LicenseRef-scancode-etalab-2.0 - - LicenseRef-scancode-etalab-2.0-fr -text_urls: - - https://github.com/etalab/licence-ouverte/blob/master/open-licence.md -other_urls: - - https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf - - https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE - - https://www.etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf -ignorable_urls: - - http://www.data.gouv.fr/fr/datasets/xxx diff --git a/src/licensedcode/data/licenses/eu-datagrid.LICENSE b/src/licensedcode/data/licenses/eu-datagrid.LICENSE index a791062ecdd..3c3b04c6bf2 100644 --- a/src/licensedcode/data/licenses/eu-datagrid.LICENSE +++ b/src/licensedcode/data/licenses/eu-datagrid.LICENSE @@ -1,3 +1,33 @@ +--- +key: eu-datagrid +short_name: EU DataGrid Software License +name: EU DataGrid Software License +category: Permissive +owner: DataGrid Project +homepage_url: http://eu-datagrid.web.cern.ch/eu-datagrid/license.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: EUDatagrid +osi_license_key: EUDatagrid +text_urls: + - http://eu-datagrid.web.cern.ch/eu-datagrid/license.html +osi_url: http://www.opensource.org/licenses/eudatagrid.php +other_urls: + - http://www.eu-egee.org/ + - http://www.opensource.org/licenses/EUDatagrid + - https://opensource.org/licenses/EUDatagrid +ignorable_copyrights: + - Copyright (c) 2001 EU DataGrid +ignorable_holders: + - EU DataGrid +ignorable_authors: + - hep-project-grid-edg-license@cern.ch + - the EU DataGrid (http://www.eu-datagrid.org/) +ignorable_urls: + - http://www.eu-datagrid.org/ +ignorable_emails: + - hep-project-grid-edg-license@cern.ch +--- + EU DataGrid Software License Copyright (c) 2001 EU DataGrid. All rights reserved. diff --git a/src/licensedcode/data/licenses/eu-datagrid.yml b/src/licensedcode/data/licenses/eu-datagrid.yml deleted file mode 100644 index 973891af13f..00000000000 --- a/src/licensedcode/data/licenses/eu-datagrid.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: eu-datagrid -short_name: EU DataGrid Software License -name: EU DataGrid Software License -category: Permissive -owner: DataGrid Project -homepage_url: http://eu-datagrid.web.cern.ch/eu-datagrid/license.html -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: EUDatagrid -osi_license_key: EUDatagrid -text_urls: - - http://eu-datagrid.web.cern.ch/eu-datagrid/license.html -osi_url: http://www.opensource.org/licenses/eudatagrid.php -other_urls: - - http://www.eu-egee.org/ - - http://www.opensource.org/licenses/EUDatagrid - - https://opensource.org/licenses/EUDatagrid -ignorable_copyrights: - - Copyright (c) 2001 EU DataGrid -ignorable_holders: - - EU DataGrid -ignorable_authors: - - hep-project-grid-edg-license@cern.ch - - the EU DataGrid (http://www.eu-datagrid.org/) -ignorable_urls: - - http://www.eu-datagrid.org/ -ignorable_emails: - - hep-project-grid-edg-license@cern.ch diff --git a/src/licensedcode/data/licenses/eupl-1.0.LICENSE b/src/licensedcode/data/licenses/eupl-1.0.LICENSE index 2658f2695d6..67f1d55de5a 100644 --- a/src/licensedcode/data/licenses/eupl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/eupl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: eupl-1.0 +short_name: EUPL 1.0 +name: European Union Public Licence 1.0 +category: Copyleft +owner: OSOR.eu +homepage_url: http://ec.europa.eu/idabc/en/document/7330.html +spdx_license_key: EUPL-1.0 +text_urls: + - http://ec.europa.eu/idabc/en/document/7330.html +other_urls: + - http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id=31096 +ignorable_copyrights: + - (c) the European Community 2007 +ignorable_holders: + - the European Community +--- + European Union Public Licence V.1.0 EUPL © the European Community 2007 diff --git a/src/licensedcode/data/licenses/eupl-1.0.yml b/src/licensedcode/data/licenses/eupl-1.0.yml deleted file mode 100644 index 58f8336db99..00000000000 --- a/src/licensedcode/data/licenses/eupl-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: eupl-1.0 -short_name: EUPL 1.0 -name: European Union Public Licence 1.0 -category: Copyleft -owner: OSOR.eu -homepage_url: http://ec.europa.eu/idabc/en/document/7330.html -spdx_license_key: EUPL-1.0 -text_urls: - - http://ec.europa.eu/idabc/en/document/7330.html -other_urls: - - http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id=31096 -ignorable_copyrights: - - (c) the European Community 2007 -ignorable_holders: - - the European Community diff --git a/src/licensedcode/data/licenses/eupl-1.1.LICENSE b/src/licensedcode/data/licenses/eupl-1.1.LICENSE index 16055de9186..1533f03764b 100644 --- a/src/licensedcode/data/licenses/eupl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/eupl-1.1.LICENSE @@ -1,3 +1,32 @@ +--- +key: eupl-1.1 +short_name: EUPL 1.1 +name: European Union Public Licence 1.1 +category: Copyleft Limited +owner: OSOR.eu +homepage_url: http://ec.europa.eu/idabc/eupl +notes: | + Per SPDX.org, this license was released 16 May 2008 This license is OSI + certified. This license is available in the 22 official languages of the + EU. The English version is included here. +spdx_license_key: EUPL-1.1 +osi_license_key: EUPL-1.1 +text_urls: + - http://ec.europa.eu/idabc/eupl +other_urls: + - http://www.gnu.org/licenses/license-list.html#EUPL + - http://www.opensource.org/licenses/EUPL-1.1 + - http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1 + - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf + - https://joinup.ec.europa.eu/software/page/eupl/licence-eupl + - https://joinup.ec.europa.eu/system/files/EN/EUPL%20v.1.1%20-%20Licence.pdf + - https://opensource.org/licenses/EUPL-1.1 +ignorable_copyrights: + - (c) the European Community 2007 +ignorable_holders: + - the European Community +--- + European Union Public Licence V. 1.1 diff --git a/src/licensedcode/data/licenses/eupl-1.1.yml b/src/licensedcode/data/licenses/eupl-1.1.yml deleted file mode 100644 index e98c100fb17..00000000000 --- a/src/licensedcode/data/licenses/eupl-1.1.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: eupl-1.1 -short_name: EUPL 1.1 -name: European Union Public Licence 1.1 -category: Copyleft Limited -owner: OSOR.eu -homepage_url: http://ec.europa.eu/idabc/eupl -notes: | - Per SPDX.org, this license was released 16 May 2008 This license is OSI - certified. This license is available in the 22 official languages of the - EU. The English version is included here. -spdx_license_key: EUPL-1.1 -osi_license_key: EUPL-1.1 -text_urls: - - http://ec.europa.eu/idabc/eupl -other_urls: - - http://www.gnu.org/licenses/license-list.html#EUPL - - http://www.opensource.org/licenses/EUPL-1.1 - - http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1 - - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf - - https://joinup.ec.europa.eu/software/page/eupl/licence-eupl - - https://joinup.ec.europa.eu/system/files/EN/EUPL%20v.1.1%20-%20Licence.pdf - - https://opensource.org/licenses/EUPL-1.1 -ignorable_copyrights: - - (c) the European Community 2007 -ignorable_holders: - - the European Community diff --git a/src/licensedcode/data/licenses/eupl-1.2.LICENSE b/src/licensedcode/data/licenses/eupl-1.2.LICENSE index 94f18b36a7e..e51c6a85845 100644 --- a/src/licensedcode/data/licenses/eupl-1.2.LICENSE +++ b/src/licensedcode/data/licenses/eupl-1.2.LICENSE @@ -1,3 +1,31 @@ +--- +key: eupl-1.2 +short_name: EUPL 1.2 +name: European Union Public Licence 1.2 +category: Copyleft Limited +owner: OSOR.eu +homepage_url: https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt +spdx_license_key: EUPL-1.2 +text_urls: + - https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt +faq_url: https://joinup.ec.europa.eu/community/eupl/og_page/eupl-text-11-12 +other_urls: + - http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863 + - http://www.opensource.org/licenses/EUPL-1.1 + - https://joinup.ec.europa.eu/page/eupl-text-11-12 + - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt + - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf + - https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt + - https://opensource.org/licenses/EUPL-1.1 + - https://opensource.org/licenses/EUPL-1.2 +minimum_coverage: 80 +standard_notice: Licensed under the EUPL +ignorable_copyrights: + - (c) the European Union 2007, 2016 +ignorable_holders: + - the European Union +--- + EUROPEAN UNION PUBLIC LICENCE v. 1.2 EUPL © the European Union 2007, 2016 diff --git a/src/licensedcode/data/licenses/eupl-1.2.yml b/src/licensedcode/data/licenses/eupl-1.2.yml deleted file mode 100644 index 1c79bbaef27..00000000000 --- a/src/licensedcode/data/licenses/eupl-1.2.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: eupl-1.2 -short_name: EUPL 1.2 -name: European Union Public Licence 1.2 -category: Copyleft Limited -owner: OSOR.eu -homepage_url: https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt -spdx_license_key: EUPL-1.2 -text_urls: - - https://joinup.ec.europa.eu/sites/default/files/ckeditor_files/files/EUPL%20v1_2%20EN%20UTF-8.txt -faq_url: https://joinup.ec.europa.eu/community/eupl/og_page/eupl-text-11-12 -other_urls: - - http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32017D0863 - - http://www.opensource.org/licenses/EUPL-1.1 - - https://joinup.ec.europa.eu/page/eupl-text-11-12 - - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt - - https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf - - https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt - - https://opensource.org/licenses/EUPL-1.1 - - https://opensource.org/licenses/EUPL-1.2 -minimum_coverage: 80 -standard_notice: Licensed under the EUPL -ignorable_copyrights: - - (c) the European Union 2007, 2016 -ignorable_holders: - - the European Union diff --git a/src/licensedcode/data/licenses/eurosym.LICENSE b/src/licensedcode/data/licenses/eurosym.LICENSE index f306d8df87e..a59cbf0cc42 100644 --- a/src/licensedcode/data/licenses/eurosym.LICENSE +++ b/src/licensedcode/data/licenses/eurosym.LICENSE @@ -1,3 +1,15 @@ +--- +key: eurosym +short_name: Eurosym License +name: Eurosym License +category: Copyleft Limited +owner: Henrik Theiling +homepage_url: https://fedoraproject.org/wiki/Licensing:Eurosym?rd=Licensing/Eurosym +spdx_license_key: Eurosym +other_urls: + - https://fedoraproject.org/wiki/Licensing/Eurosym +--- + Licence Version 2 This software is provided 'as-is', without warranty of any kind, express or implied. In no event will the authors or copyright holders be held liable for any damages arising from the use of this software. @@ -14,4 +26,4 @@ Permission is granted to anyone to use this software for any purpose, including 5. This notice may not be removed or altered from any source distribution. -This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court. +This licence is governed by the Laws of Germany. Disputes shall be settled by Saarbruecken City Court. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/eurosym.yml b/src/licensedcode/data/licenses/eurosym.yml deleted file mode 100644 index 1d7b7dd06d6..00000000000 --- a/src/licensedcode/data/licenses/eurosym.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: eurosym -short_name: Eurosym License -name: Eurosym License -category: Copyleft Limited -owner: Henrik Theiling -homepage_url: https://fedoraproject.org/wiki/Licensing:Eurosym?rd=Licensing/Eurosym -spdx_license_key: Eurosym -other_urls: - - https://fedoraproject.org/wiki/Licensing/Eurosym diff --git a/src/licensedcode/data/licenses/examdiff.LICENSE b/src/licensedcode/data/licenses/examdiff.LICENSE index 8142c3d8263..211449276f9 100644 --- a/src/licensedcode/data/licenses/examdiff.LICENSE +++ b/src/licensedcode/data/licenses/examdiff.LICENSE @@ -1,3 +1,13 @@ +--- +key: examdiff +short_name: ExamDiff License +name: ExamDiff License +category: Proprietary Free +owner: PrestoSoft LLC. +homepage_url: http://www.prestosoft.com/edp_examdiff.asp +spdx_license_key: LicenseRef-scancode-examdiff +--- + DISCLAIMER: DISCLAIMER OF WARRANTY diff --git a/src/licensedcode/data/licenses/examdiff.yml b/src/licensedcode/data/licenses/examdiff.yml deleted file mode 100644 index 76a35656ed1..00000000000 --- a/src/licensedcode/data/licenses/examdiff.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: examdiff -short_name: ExamDiff License -name: ExamDiff License -category: Proprietary Free -owner: PrestoSoft LLC. -homepage_url: http://www.prestosoft.com/edp_examdiff.asp -spdx_license_key: LicenseRef-scancode-examdiff diff --git a/src/licensedcode/data/licenses/excelsior-jet-runtime.LICENSE b/src/licensedcode/data/licenses/excelsior-jet-runtime.LICENSE index 3e9f69aae5d..d3ad434b3e9 100644 --- a/src/licensedcode/data/licenses/excelsior-jet-runtime.LICENSE +++ b/src/licensedcode/data/licenses/excelsior-jet-runtime.LICENSE @@ -1,3 +1,16 @@ +--- +key: excelsior-jet-runtime +short_name: Excelsior JET Runtime License +name: Excelsior JET Runtime License +category: Commercial +owner: Excelsior +homepage_url: http://www.excelsior-usa.com/jetlicenses.html +spdx_license_key: LicenseRef-scancode-excelsior-jet-runtime +ignorable_urls: + - http://www.excelsior-usa.com/fees.html + - http://www.excelsior-usa.com/pdf/iltemplate.pdf +--- + Excelsior JET Licensing Terms and Conditions Production and Redistribution Use Production use and redistribution use of Excelsior JET Runtime is permitted only in conjunction with and as part of your software product. diff --git a/src/licensedcode/data/licenses/excelsior-jet-runtime.yml b/src/licensedcode/data/licenses/excelsior-jet-runtime.yml deleted file mode 100644 index 7c71ddff4d1..00000000000 --- a/src/licensedcode/data/licenses/excelsior-jet-runtime.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: excelsior-jet-runtime -short_name: Excelsior JET Runtime License -name: Excelsior JET Runtime License -category: Commercial -owner: Excelsior -homepage_url: http://www.excelsior-usa.com/jetlicenses.html -spdx_license_key: LicenseRef-scancode-excelsior-jet-runtime -ignorable_urls: - - http://www.excelsior-usa.com/fees.html - - http://www.excelsior-usa.com/pdf/iltemplate.pdf diff --git a/src/licensedcode/data/licenses/fabien-tassin.LICENSE b/src/licensedcode/data/licenses/fabien-tassin.LICENSE index 58c3ce6590e..d4036b3b889 100644 --- a/src/licensedcode/data/licenses/fabien-tassin.LICENSE +++ b/src/licensedcode/data/licenses/fabien-tassin.LICENSE @@ -1,3 +1,13 @@ +--- +key: fabien-tassin +short_name: Fabien Tassin License +name: Fabien Tassin License +category: Permissive +owner: Fabien Tassin +homepage_url: http://search.cpan.org/~ftassin/SNMP-MIB-Compiler-0.06/lib/SNMP/MIB/Compiler.pm#COPYRIGHT +spdx_license_key: LicenseRef-scancode-fabien-tassin +--- + It may be used and modified freely, but I do request that this copyright notice remain attached to the file. You may modify this module as you wish, but if you redistribute a modified version, please attach a note diff --git a/src/licensedcode/data/licenses/fabien-tassin.yml b/src/licensedcode/data/licenses/fabien-tassin.yml deleted file mode 100644 index f224315b1c9..00000000000 --- a/src/licensedcode/data/licenses/fabien-tassin.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: fabien-tassin -short_name: Fabien Tassin License -name: Fabien Tassin License -category: Permissive -owner: Fabien Tassin -homepage_url: http://search.cpan.org/~ftassin/SNMP-MIB-Compiler-0.06/lib/SNMP/MIB/Compiler.pm#COPYRIGHT -spdx_license_key: LicenseRef-scancode-fabien-tassin diff --git a/src/licensedcode/data/licenses/fabric-agreement-2017.LICENSE b/src/licensedcode/data/licenses/fabric-agreement-2017.LICENSE index 6331996c601..43f358254b8 100644 --- a/src/licensedcode/data/licenses/fabric-agreement-2017.LICENSE +++ b/src/licensedcode/data/licenses/fabric-agreement-2017.LICENSE @@ -1,3 +1,12 @@ +--- +key: fabric-agreement-2017 +short_name: Fabric Software and Services Agreement 2017 +name: Fabric Software and Services Agreement 2017 +category: Commercial +owner: Google +spdx_license_key: LicenseRef-scancode-fabric-agreement-2017 +--- + Fabric Software and Services Agreement Last Updated: January 27, 2017 diff --git a/src/licensedcode/data/licenses/fabric-agreement-2017.yml b/src/licensedcode/data/licenses/fabric-agreement-2017.yml deleted file mode 100644 index d79bde8b4c9..00000000000 --- a/src/licensedcode/data/licenses/fabric-agreement-2017.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: fabric-agreement-2017 -short_name: Fabric Software and Services Agreement 2017 -name: Fabric Software and Services Agreement 2017 -category: Commercial -owner: Google -spdx_license_key: LicenseRef-scancode-fabric-agreement-2017 diff --git a/src/licensedcode/data/licenses/facebook-nuclide.LICENSE b/src/licensedcode/data/licenses/facebook-nuclide.LICENSE index 756ccf5a6e2..eab0e826309 100644 --- a/src/licensedcode/data/licenses/facebook-nuclide.LICENSE +++ b/src/licensedcode/data/licenses/facebook-nuclide.LICENSE @@ -1,3 +1,15 @@ +--- +key: facebook-nuclide +short_name: Facebook Nuclide Software License +name: Facebook License Agreement for Nuclide Software +category: Proprietary Free +owner: Facebook +homepage_url: https://github.com/facebook/nuclide/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-facebook-nuclide +text_urls: + - https://github.com/facebook/nuclide/blob/e961c4d3461c3abc35a6f8ccaf3f6e959b622f1e/LICENSE +--- + Facebook, Inc. ("Facebook") owns all right, title and interest, including all intellectual property and other proprietary rights, in and to the Nuclide software (the "Software"). Subject to your compliance with these terms, you are @@ -17,4 +29,4 @@ 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 THE SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY -OF SUCH DAMAGE. +OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/facebook-nuclide.yml b/src/licensedcode/data/licenses/facebook-nuclide.yml deleted file mode 100644 index 810533a9954..00000000000 --- a/src/licensedcode/data/licenses/facebook-nuclide.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: facebook-nuclide -short_name: Facebook Nuclide Software License -name: Facebook License Agreement for Nuclide Software -category: Proprietary Free -owner: Facebook -homepage_url: https://github.com/facebook/nuclide/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-facebook-nuclide -text_urls: - - https://github.com/facebook/nuclide/blob/e961c4d3461c3abc35a6f8ccaf3f6e959b622f1e/LICENSE diff --git a/src/licensedcode/data/licenses/facebook-patent-rights-2.LICENSE b/src/licensedcode/data/licenses/facebook-patent-rights-2.LICENSE index e8c86d5fbeb..81b043d14f6 100644 --- a/src/licensedcode/data/licenses/facebook-patent-rights-2.LICENSE +++ b/src/licensedcode/data/licenses/facebook-patent-rights-2.LICENSE @@ -1,3 +1,23 @@ +--- +key: facebook-patent-rights-2 +short_name: Facebook Patent Rights 2 +name: Facebook Additional Grant of Patent Rights Version 2 +category: Patent License +owner: Facebook +homepage_url: https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS +notes: | + this is a patents grant and obligations notice available in several + Facebook open source components since 2015 typically associated with a bsd- + new license. +spdx_license_key: LicenseRef-scancode-facebook-patent-rights-2 +text_urls: + - https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS + - https://github.com/facebook/react/blob/56e20b4ab5899127b67b4a31cfd7b4bf1fc79616/PATENTS + - https://github.com/facebook/xhp-lib/blob/571674608bb099c2ce01952816f606e6781dd475/PATENTS + - https://github.com/facebookresearch/fastText/blob/1826a12da3f983daceae0af3def95b1fa763b649/PATENTS +faq_url: https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/ +--- + Additional Grant of Patent Rights Version 2 "Software" means the software distributed by Facebook, Inc. @@ -30,4 +50,4 @@ necessarily infringed by the Software standing alone. A "Patent Assertion" is any lawsuit or other action alleging direct, indirect, or contributory infringement or inducement to infringe any patent, including a -cross-claim or counterclaim. +cross-claim or counterclaim. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/facebook-patent-rights-2.yml b/src/licensedcode/data/licenses/facebook-patent-rights-2.yml deleted file mode 100644 index 94a4fce4664..00000000000 --- a/src/licensedcode/data/licenses/facebook-patent-rights-2.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: facebook-patent-rights-2 -short_name: Facebook Patent Rights 2 -name: Facebook Additional Grant of Patent Rights Version 2 -category: Patent License -owner: Facebook -homepage_url: https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS -notes: | - this is a patents grant and obligations notice available in several - Facebook open source components since 2015 typically associated with a bsd- - new license. -spdx_license_key: LicenseRef-scancode-facebook-patent-rights-2 -text_urls: - - https://github.com/facebook/osquery/blob/f1d6686735c4582c8ccbcbb3f7c8bc9825247965/PATENTS - - https://github.com/facebook/react/blob/56e20b4ab5899127b67b4a31cfd7b4bf1fc79616/PATENTS - - https://github.com/facebook/xhp-lib/blob/571674608bb099c2ce01952816f606e6781dd475/PATENTS - - https://github.com/facebookresearch/fastText/blob/1826a12da3f983daceae0af3def95b1fa763b649/PATENTS -faq_url: https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/ diff --git a/src/licensedcode/data/licenses/facebook-software-license.LICENSE b/src/licensedcode/data/licenses/facebook-software-license.LICENSE index bb3da3fb370..c762ac7c07d 100644 --- a/src/licensedcode/data/licenses/facebook-software-license.LICENSE +++ b/src/licensedcode/data/licenses/facebook-software-license.LICENSE @@ -1,3 +1,20 @@ +--- +key: facebook-software-license +short_name: Facebook Software License +name: Facebook Software License +category: Proprietary Free +owner: Facebook +notes: license found in several Facebook SDKs +spdx_license_key: LicenseRef-scancode-facebook-software-license +text_urls: + - https://github.com/facebook/facebook-android-sdk/blob/752ea7b77a1779ed8b784dbd55a886cc00aeb8a6/LICENSE.txt + - https://github.com/facebook/facebook-android-sdk/blob/master/LICENSE.txt + - https://github.com/facebook/facebook-ios-sdk/blob/master/LICENSE +faq_url: http://developers.facebook.com/policy/ +ignorable_urls: + - http://developers.facebook.com/policy/ +--- + You are hereby granted a non-exclusive, worldwide, royalty-free license to use, copy, modify, and distribute this software in source code or binary form for use in connection with the web services and APIs provided by Facebook. diff --git a/src/licensedcode/data/licenses/facebook-software-license.yml b/src/licensedcode/data/licenses/facebook-software-license.yml deleted file mode 100644 index b87da8a06c1..00000000000 --- a/src/licensedcode/data/licenses/facebook-software-license.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: facebook-software-license -short_name: Facebook Software License -name: Facebook Software License -category: Proprietary Free -owner: Facebook -notes: license found in several Facebook SDKs -spdx_license_key: LicenseRef-scancode-facebook-software-license -text_urls: - - https://github.com/facebook/facebook-android-sdk/blob/752ea7b77a1779ed8b784dbd55a886cc00aeb8a6/LICENSE.txt - - https://github.com/facebook/facebook-android-sdk/blob/master/LICENSE.txt - - https://github.com/facebook/facebook-ios-sdk/blob/master/LICENSE -faq_url: http://developers.facebook.com/policy/ -ignorable_urls: - - http://developers.facebook.com/policy/ diff --git a/src/licensedcode/data/licenses/fair-source-0.9.LICENSE b/src/licensedcode/data/licenses/fair-source-0.9.LICENSE index 47b082e1eca..40d7eb2eef6 100644 --- a/src/licensedcode/data/licenses/fair-source-0.9.LICENSE +++ b/src/licensedcode/data/licenses/fair-source-0.9.LICENSE @@ -1,3 +1,19 @@ +--- +key: fair-source-0.9 +short_name: Fair Source v0.9 +name: Fair Source License v0.9 +category: Source-available +owner: Fair Source +homepage_url: https://fair.io/ +spdx_license_key: LicenseRef-scancode-fair-source-0.9 +text_urls: + - https://fair.io/#license + - https://github.com/fairsource/fairsource/blob/master/fair-source-license-v0.9.txt +faq_url: https://fair.io/#faq +other_urls: + - https://github.com/search?p=2&q=%22Fair+Source+License%22&type=Code +--- + Fair Source License, version 0.9 Copyright © [year] [copyright owner] diff --git a/src/licensedcode/data/licenses/fair-source-0.9.yml b/src/licensedcode/data/licenses/fair-source-0.9.yml deleted file mode 100644 index 63e4cd200fc..00000000000 --- a/src/licensedcode/data/licenses/fair-source-0.9.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: fair-source-0.9 -short_name: Fair Source v0.9 -name: Fair Source License v0.9 -category: Source-available -owner: Fair Source -homepage_url: https://fair.io/ -spdx_license_key: LicenseRef-scancode-fair-source-0.9 -text_urls: - - https://fair.io/#license - - https://github.com/fairsource/fairsource/blob/master/fair-source-license-v0.9.txt -faq_url: https://fair.io/#faq -other_urls: - - https://github.com/search?p=2&q=%22Fair+Source+License%22&type=Code diff --git a/src/licensedcode/data/licenses/fair.LICENSE b/src/licensedcode/data/licenses/fair.LICENSE index cc2ca936fe2..8f1ccae45b6 100644 --- a/src/licensedcode/data/licenses/fair.LICENSE +++ b/src/licensedcode/data/licenses/fair.LICENSE @@ -1,5 +1,24 @@ +--- +key: fair +short_name: Fair License +name: Fair License +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://opensource.org/licenses/fair.php +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: Fair +text_urls: + - http://opensource.org/licenses/fair.php +osi_url: http://opensource.org/licenses/fair.php +other_urls: + - http://fairlicense.org/ + - http://www.opensource.org/licenses/Fair + - https://opensource.org/licenses/Fair + - http://rhid.com/fair +--- + Usage of the works is permitted provided that this instrument is retained with the works, so that any entity that uses the works is notified of this instrument. -DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. +DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/fair.yml b/src/licensedcode/data/licenses/fair.yml deleted file mode 100644 index c19a4278eb4..00000000000 --- a/src/licensedcode/data/licenses/fair.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: fair -short_name: Fair License -name: Fair License -category: Permissive -owner: OSI - Open Source Initiative -homepage_url: http://opensource.org/licenses/fair.php -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: Fair -text_urls: - - http://opensource.org/licenses/fair.php -osi_url: http://opensource.org/licenses/fair.php -other_urls: - - http://fairlicense.org/ - - http://www.opensource.org/licenses/Fair - - https://opensource.org/licenses/Fair - - http://rhid.com/fair diff --git a/src/licensedcode/data/licenses/fancyzoom.LICENSE b/src/licensedcode/data/licenses/fancyzoom.LICENSE index 52dd78d7c79..4b3367eb24d 100644 --- a/src/licensedcode/data/licenses/fancyzoom.LICENSE +++ b/src/licensedcode/data/licenses/fancyzoom.LICENSE @@ -1,3 +1,16 @@ +--- +key: fancyzoom +short_name: FancyZoom License +name: FancyZoom License +category: Proprietary Free +owner: Cabel Sasser +spdx_license_key: LicenseRef-scancode-fancyzoom +other_urls: + - http://www.cabel.name/2008/02/fancyzoom-10.html +ignorable_urls: + - http://www.fancyzoom.com/ +--- + Redistribution and use of this effect in source form, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/fancyzoom.yml b/src/licensedcode/data/licenses/fancyzoom.yml deleted file mode 100644 index c08fd2b3aaf..00000000000 --- a/src/licensedcode/data/licenses/fancyzoom.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: fancyzoom -short_name: FancyZoom License -name: FancyZoom License -category: Proprietary Free -owner: Cabel Sasser -spdx_license_key: LicenseRef-scancode-fancyzoom -other_urls: - - http://www.cabel.name/2008/02/fancyzoom-10.html -ignorable_urls: - - http://www.fancyzoom.com/ diff --git a/src/licensedcode/data/licenses/far-manager-exception.LICENSE b/src/licensedcode/data/licenses/far-manager-exception.LICENSE index 3b215b772f5..6a2bd3401f4 100644 --- a/src/licensedcode/data/licenses/far-manager-exception.LICENSE +++ b/src/licensedcode/data/licenses/far-manager-exception.LICENSE @@ -1,3 +1,43 @@ +--- +key: far-manager-exception +short_name: Far Manager exception to BSD-3-Clause +name: Far Manager exception to BSD-3-Clause +category: Permissive +owner: Far Group +is_exception: yes +spdx_license_key: LicenseRef-scancode-far-manager-exception +standard_notice: | + Copyright (c) 1996 Eugene Roshal + Copyright (c) 2000 Far Group + All rights reserved. + 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. The name of the authors may not be used to endorse or promote products + derived from this software without specific prior written permission. + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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. + EXCEPTION: + Far Manager plugins that use only the following header files from this + distribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp, + farcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any + other + possible license with no implications from the above license on them. +--- + EXCEPTION: Far Manager plugins that use only the following header files from this distribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp, diff --git a/src/licensedcode/data/licenses/far-manager-exception.yml b/src/licensedcode/data/licenses/far-manager-exception.yml deleted file mode 100644 index 47453149e6b..00000000000 --- a/src/licensedcode/data/licenses/far-manager-exception.yml +++ /dev/null @@ -1,37 +0,0 @@ -key: far-manager-exception -short_name: Far Manager exception to BSD-3-Clause -name: Far Manager exception to BSD-3-Clause -category: Permissive -owner: Far Group -is_exception: yes -spdx_license_key: LicenseRef-scancode-far-manager-exception -standard_notice: | - Copyright (c) 1996 Eugene Roshal - Copyright (c) 2000 Far Group - All rights reserved. - 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. The name of the authors may not be used to endorse or promote products - derived from this software without specific prior written permission. - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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. - EXCEPTION: - Far Manager plugins that use only the following header files from this - distribution (none or any): farcolor.hpp, farkeys.hpp, plugin.hpp, - farcolorW.pas, farkeysW.pas and pluginW.pas; can be distributed under any - other - possible license with no implications from the above license on them. diff --git a/src/licensedcode/data/licenses/fastbuild-2012-2020.LICENSE b/src/licensedcode/data/licenses/fastbuild-2012-2020.LICENSE index ed90a85b6aa..dc9512fcd2d 100644 --- a/src/licensedcode/data/licenses/fastbuild-2012-2020.LICENSE +++ b/src/licensedcode/data/licenses/fastbuild-2012-2020.LICENSE @@ -1,3 +1,19 @@ +--- +key: fastbuild-2012-2020 +short_name: FASTBuild License 2012-2020 +name: FASTBuild License 2012-2020 +category: Permissive +owner: fastbuild.org +homepage_url: https://www.fastbuild.org/docs/license.html +spdx_license_key: LicenseRef-scancode-fastbuild-2012-2020 +minimum_coverage: 80 +standard_notice: Copyright (c) 2012-2020 Franta Fulin +ignorable_copyrights: + - (c) 2012-2020 Franta Fulin +ignorable_holders: + - Franta Fulin +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: diff --git a/src/licensedcode/data/licenses/fastbuild-2012-2020.yml b/src/licensedcode/data/licenses/fastbuild-2012-2020.yml deleted file mode 100644 index 66e3a9694b9..00000000000 --- a/src/licensedcode/data/licenses/fastbuild-2012-2020.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: fastbuild-2012-2020 -short_name: FASTBuild License 2012-2020 -name: FASTBuild License 2012-2020 -category: Permissive -owner: fastbuild.org -homepage_url: https://www.fastbuild.org/docs/license.html -spdx_license_key: LicenseRef-scancode-fastbuild-2012-2020 -minimum_coverage: 80 -standard_notice: Copyright (c) 2012-2020 Franta Fulin -ignorable_copyrights: - - (c) 2012-2020 Franta Fulin -ignorable_holders: - - Franta Fulin diff --git a/src/licensedcode/data/licenses/fastcgi-devkit.LICENSE b/src/licensedcode/data/licenses/fastcgi-devkit.LICENSE index fe6d4ec3c4d..e6cca120946 100644 --- a/src/licensedcode/data/licenses/fastcgi-devkit.LICENSE +++ b/src/licensedcode/data/licenses/fastcgi-devkit.LICENSE @@ -1,3 +1,24 @@ +--- +key: fastcgi-devkit +short_name: FastCGI DevKit +name: FastCGI DevKit +category: Permissive +owner: OpenMarket +homepage_url: http://www.fastcgi.com/devkit/LICENSE.TERMS +notes: | + Per Fedora, this license is based on MIT, but contains additional clauses + which make it more than a simple MIT variant, notably, the requirement of + statement of new terms of contributions under a different license. For that + reason, this license is Free, but GPL-incompatible. +spdx_license_key: OML +text_urls: + - https://fedoraproject.org/wiki/Licensing/Open_Market_License +ignorable_copyrights: + - copyrighted by Open Market, Inc 'Open Market +ignorable_holders: + - Open Market, Inc 'Open Market +--- + This FastCGI application library source and object code (the "Software") and its documentation (the "Documentation") are copyrighted by Open Market, Inc ("Open Market"). The following terms diff --git a/src/licensedcode/data/licenses/fastcgi-devkit.yml b/src/licensedcode/data/licenses/fastcgi-devkit.yml deleted file mode 100644 index c37d6b36d98..00000000000 --- a/src/licensedcode/data/licenses/fastcgi-devkit.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: fastcgi-devkit -short_name: FastCGI DevKit -name: FastCGI DevKit -category: Permissive -owner: OpenMarket -homepage_url: http://www.fastcgi.com/devkit/LICENSE.TERMS -notes: | - Per Fedora, this license is based on MIT, but contains additional clauses - which make it more than a simple MIT variant, notably, the requirement of - statement of new terms of contributions under a different license. For that - reason, this license is Free, but GPL-incompatible. -spdx_license_key: OML -text_urls: - - https://fedoraproject.org/wiki/Licensing/Open_Market_License -ignorable_copyrights: - - copyrighted by Open Market, Inc 'Open Market -ignorable_holders: - - Open Market, Inc 'Open Market diff --git a/src/licensedcode/data/licenses/fatfs.LICENSE b/src/licensedcode/data/licenses/fatfs.LICENSE index db4a99a7922..8b30f91875b 100644 --- a/src/licensedcode/data/licenses/fatfs.LICENSE +++ b/src/licensedcode/data/licenses/fatfs.LICENSE @@ -1,3 +1,13 @@ +--- +key: fatfs +short_name: FatFs License +name: FatFs License +category: Permissive +owner: ELM-ChaN +homepage_url: http://elm-chan.org/fsw/ff/doc/appnote.html#license +spdx_license_key: LicenseRef-scancode-fatfs +--- + / FatFs module is an open source software. Redistribution and use of FatFs in / source and binary forms, with or without modification, are permitted provided / that the following condition is met: diff --git a/src/licensedcode/data/licenses/fatfs.yml b/src/licensedcode/data/licenses/fatfs.yml deleted file mode 100644 index ad10059cd2f..00000000000 --- a/src/licensedcode/data/licenses/fatfs.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: fatfs -short_name: FatFs License -name: FatFs License -category: Permissive -owner: ELM-ChaN -homepage_url: http://elm-chan.org/fsw/ff/doc/appnote.html#license -spdx_license_key: LicenseRef-scancode-fatfs diff --git a/src/licensedcode/data/licenses/fawkes-runtime-exception.LICENSE b/src/licensedcode/data/licenses/fawkes-runtime-exception.LICENSE index 232da66ceb3..88a2b71dab6 100644 --- a/src/licensedcode/data/licenses/fawkes-runtime-exception.LICENSE +++ b/src/licensedcode/data/licenses/fawkes-runtime-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: fawkes-runtime-exception +short_name: Fawkes Runtime Exception to GPL 2.0 or later +name: Fawkes Runtime Exception to GPL 2.0 or later +category: Copyleft Limited +owner: Fawkes Development Team +homepage_url: https://www.fawkesrobotics.org/about/license/ +is_exception: yes +spdx_license_key: Fawkes-Runtime-exception +other_urls: + - http://www.fawkesrobotics.org/about/license/ + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole diff --git a/src/licensedcode/data/licenses/fawkes-runtime-exception.yml b/src/licensedcode/data/licenses/fawkes-runtime-exception.yml deleted file mode 100644 index 0b37c1ffc45..00000000000 --- a/src/licensedcode/data/licenses/fawkes-runtime-exception.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: fawkes-runtime-exception -short_name: Fawkes Runtime Exception to GPL 2.0 or later -name: Fawkes Runtime Exception to GPL 2.0 or later -category: Copyleft Limited -owner: Fawkes Development Team -homepage_url: https://www.fawkesrobotics.org/about/license/ -is_exception: yes -spdx_license_key: Fawkes-Runtime-exception -other_urls: - - http://www.fawkesrobotics.org/about/license/ - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/licenses/fftpack-2004.LICENSE b/src/licensedcode/data/licenses/fftpack-2004.LICENSE index be8ed924827..acf12f9b6e0 100644 --- a/src/licensedcode/data/licenses/fftpack-2004.LICENSE +++ b/src/licensedcode/data/licenses/fftpack-2004.LICENSE @@ -1,3 +1,23 @@ +--- +key: fftpack-2004 +short_name: FFTPACK License 2004 +name: FFTPACK License 2004 +category: Permissive +owner: NCAR +homepage_url: https://github.com/marton78/pffft/blob/master/pffft.c +spdx_license_key: LicenseRef-scancode-fftpack-2004 +text_urls: + - https://bitbucket.org/jpommier/pffft/src/master/pffft.c +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/1978 +standard_notice: | + http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html + Copyright (c) 2004 the University Corporation for Atmospheric + Research ("UCAR"). All rights reserved. Developed by NCAR's + Computational and Information Systems Laboratory, UCAR, + www.cisl.ucar.edu. +--- + FFTPACK license: Redistribution and use of the Software in source and binary forms, with or without modification, is permitted provided that the diff --git a/src/licensedcode/data/licenses/fftpack-2004.yml b/src/licensedcode/data/licenses/fftpack-2004.yml deleted file mode 100644 index f6d7f53f07b..00000000000 --- a/src/licensedcode/data/licenses/fftpack-2004.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: fftpack-2004 -short_name: FFTPACK License 2004 -name: FFTPACK License 2004 -category: Permissive -owner: NCAR -homepage_url: https://github.com/marton78/pffft/blob/master/pffft.c -spdx_license_key: LicenseRef-scancode-fftpack-2004 -text_urls: - - https://bitbucket.org/jpommier/pffft/src/master/pffft.c -other_urls: - - https://github.com/nexB/scancode-toolkit/issues/1978 -standard_notice: | - http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html - Copyright (c) 2004 the University Corporation for Atmospheric - Research ("UCAR"). All rights reserved. Developed by NCAR's - Computational and Information Systems Laboratory, UCAR, - www.cisl.ucar.edu. diff --git a/src/licensedcode/data/licenses/filament-group-mit.LICENSE b/src/licensedcode/data/licenses/filament-group-mit.LICENSE index 25d948bbc9a..62795869c01 100644 --- a/src/licensedcode/data/licenses/filament-group-mit.LICENSE +++ b/src/licensedcode/data/licenses/filament-group-mit.LICENSE @@ -1,3 +1,20 @@ +--- +key: filament-group-mit +short_name: Filament Group MIT License +name: Filament Group MIT License +category: Permissive +owner: Filament Group +homepage_url: http://filamentgroup.com/examples/mit-license.txt +spdx_license_key: LicenseRef-scancode-filament-group-mit +text_urls: + - http://filamentgroup.com/examples/mit-license.txt +minimum_coverage: 85 +ignorable_authors: + - Filament Group, Inc (http://www.filamentgroup.com/) +ignorable_urls: + - http://www.filamentgroup.com/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/licenses/filament-group-mit.yml b/src/licensedcode/data/licenses/filament-group-mit.yml deleted file mode 100644 index fc519694f06..00000000000 --- a/src/licensedcode/data/licenses/filament-group-mit.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: filament-group-mit -short_name: Filament Group MIT License -name: Filament Group MIT License -category: Permissive -owner: Filament Group -homepage_url: http://filamentgroup.com/examples/mit-license.txt -spdx_license_key: LicenseRef-scancode-filament-group-mit -text_urls: - - http://filamentgroup.com/examples/mit-license.txt -minimum_coverage: 85 -ignorable_authors: - - Filament Group, Inc (http://www.filamentgroup.com/) -ignorable_urls: - - http://www.filamentgroup.com/ diff --git a/src/licensedcode/data/licenses/first-works-appreciative-1.2.LICENSE b/src/licensedcode/data/licenses/first-works-appreciative-1.2.LICENSE index 72d59c627fb..4b5f7742b57 100644 --- a/src/licensedcode/data/licenses/first-works-appreciative-1.2.LICENSE +++ b/src/licensedcode/data/licenses/first-works-appreciative-1.2.LICENSE @@ -1,3 +1,19 @@ +--- +key: first-works-appreciative-1.2 +short_name: First Works Appreciative License 1.2 +name: First Works Appreciative License 1.2 +category: Proprietary Free +owner: Jonathan Michael Davis +spdx_license_key: LicenseRef-scancode-first-works-appreciative-1.2 +ignorable_copyrights: + - Copyright (c) 2005 Jonathan Michael Davis +ignorable_holders: + - Jonathan Michael Davis +ignorable_emails: + - jon@jondavis.net + - jond_123@hotmail.com +--- + First Works Appreciative License Version 1.2 diff --git a/src/licensedcode/data/licenses/first-works-appreciative-1.2.yml b/src/licensedcode/data/licenses/first-works-appreciative-1.2.yml deleted file mode 100644 index fa91ec61a89..00000000000 --- a/src/licensedcode/data/licenses/first-works-appreciative-1.2.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: first-works-appreciative-1.2 -short_name: First Works Appreciative License 1.2 -name: First Works Appreciative License 1.2 -category: Proprietary Free -owner: Jonathan Michael Davis -spdx_license_key: LicenseRef-scancode-first-works-appreciative-1.2 -ignorable_copyrights: - - Copyright (c) 2005 Jonathan Michael Davis -ignorable_holders: - - Jonathan Michael Davis -ignorable_emails: - - jon@jondavis.net - - jond_123@hotmail.com diff --git a/src/licensedcode/data/licenses/flex-2.5.LICENSE b/src/licensedcode/data/licenses/flex-2.5.LICENSE index b9a104a7970..093c09b3535 100644 --- a/src/licensedcode/data/licenses/flex-2.5.LICENSE +++ b/src/licensedcode/data/licenses/flex-2.5.LICENSE @@ -1,3 +1,18 @@ +--- +key: flex-2.5 +short_name: Flex 2.5 +name: Flex License v2.5 +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.cs.princeton.edu/~appel/modern/c/software/flex/flex.html +spdx_license_key: LicenseRef-scancode-flex-2.5 +text_urls: + - http://www.cs.cmu.edu/afs/cs/project/ai-repository-9/ai/areas/nlp/parsing/flex/copying.txt +minimum_coverage: 80 +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + The United States Government has rights in this work pursuant to contract no. DE- AC03-76SF00098 between the United States Department of Energy and the University of California. @@ -14,4 +29,4 @@ permission. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE. +FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/flex-2.5.yml b/src/licensedcode/data/licenses/flex-2.5.yml deleted file mode 100644 index e554c3472d8..00000000000 --- a/src/licensedcode/data/licenses/flex-2.5.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: flex-2.5 -short_name: Flex 2.5 -name: Flex License v2.5 -category: Permissive -owner: Regents of the University of California -homepage_url: http://www.cs.princeton.edu/~appel/modern/c/software/flex/flex.html -spdx_license_key: LicenseRef-scancode-flex-2.5 -text_urls: - - http://www.cs.cmu.edu/afs/cs/project/ai-repository-9/ai/areas/nlp/parsing/flex/copying.txt -minimum_coverage: 80 -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/licenses/flex2sdk.LICENSE b/src/licensedcode/data/licenses/flex2sdk.LICENSE index bbbb27b7c79..141129a491a 100644 --- a/src/licensedcode/data/licenses/flex2sdk.LICENSE +++ b/src/licensedcode/data/licenses/flex2sdk.LICENSE @@ -1,3 +1,19 @@ +--- +key: flex2sdk +short_name: Adobe Flex 2.0.1 SDK EULA +name: Adobe Flex 2.0.1 SDK EULA +category: Proprietary Free +owner: Adobe Systems +homepage_url: http://labs.adobe.com/technologies/eula/flex2sdk.html +spdx_license_key: LicenseRef-scancode-flex2sdk +text_urls: + - http://labs.adobe.com/technologies/eula/flex2sdk.html +ignorable_urls: + - http://www.adobe.com/education/purchasing + - http://www.adobe.com/store + - http://www.adobe.com/type/browser/legal/embeddingeula.html +--- + ADOBE FLEX 2.0.1 SOFTWARE DEVELOPMENT KIT (Non Open Source Version) Software License Agreement diff --git a/src/licensedcode/data/licenses/flex2sdk.yml b/src/licensedcode/data/licenses/flex2sdk.yml deleted file mode 100644 index 702102047cc..00000000000 --- a/src/licensedcode/data/licenses/flex2sdk.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: flex2sdk -short_name: Adobe Flex 2.0.1 SDK EULA -name: Adobe Flex 2.0.1 SDK EULA -category: Proprietary Free -owner: Adobe Systems -homepage_url: http://labs.adobe.com/technologies/eula/flex2sdk.html -spdx_license_key: LicenseRef-scancode-flex2sdk -text_urls: - - http://labs.adobe.com/technologies/eula/flex2sdk.html -ignorable_urls: - - http://www.adobe.com/education/purchasing - - http://www.adobe.com/store - - http://www.adobe.com/type/browser/legal/embeddingeula.html diff --git a/src/licensedcode/data/licenses/flora-1.1.LICENSE b/src/licensedcode/data/licenses/flora-1.1.LICENSE index 0da557262e5..8b3b995a582 100644 --- a/src/licensedcode/data/licenses/flora-1.1.LICENSE +++ b/src/licensedcode/data/licenses/flora-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: flora-1.1 +short_name: Flora License v1.1 +name: Flora License v1.1 +category: Permissive +owner: Tizen Association +notes: there was a version 1.0 before https://web.archive.org/web/20130224120957/http://floralicense.org:80/license/ +spdx_license_key: LicenseRef-scancode-flora-1.1 +other_urls: + - https://github.com/lirriel/first1/blob/123928934e4231c75d63d1a222b2dfedca7308cc/AlarmUI/NOTICE + - https://github.com/search?q=%22Flora+License+%22&type=Code + - http://floralicense.org/ + - https://review.tizen.org/git/?p=apps/home/taskmanager.git;a=blob_plain;f=LICENSE;hb=HEAD +minimum_coverage: 95 +ignorable_urls: + - http://floralicense.org/license +--- + Flora License @@ -91,7 +109,4 @@ Change Log The term "Compatibility Definition Document" has been changed to "Tizen Compliance Specification" The term "Compatibility Test Suites" has been changed to "Tizen Compliance Tests" - Clarified 4.4 condition on Licensee's own copyright to derivative works or modifications - - - + Clarified 4.4 condition on Licensee's own copyright to derivative works or modifications \ No newline at end of file diff --git a/src/licensedcode/data/licenses/flora-1.1.yml b/src/licensedcode/data/licenses/flora-1.1.yml deleted file mode 100644 index 7dc9ae912a1..00000000000 --- a/src/licensedcode/data/licenses/flora-1.1.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: flora-1.1 -short_name: Flora License v1.1 -name: Flora License v1.1 -category: Permissive -owner: Tizen Association -notes: there was a version 1.0 before https://web.archive.org/web/20130224120957/http://floralicense.org:80/license/ -spdx_license_key: LicenseRef-scancode-flora-1.1 -other_urls: - - https://github.com/lirriel/first1/blob/123928934e4231c75d63d1a222b2dfedca7308cc/AlarmUI/NOTICE - - https://github.com/search?q=%22Flora+License+%22&type=Code - - http://floralicense.org/ - - https://review.tizen.org/git/?p=apps/home/taskmanager.git;a=blob_plain;f=LICENSE;hb=HEAD -minimum_coverage: 95 -ignorable_urls: - - http://floralicense.org/license diff --git a/src/licensedcode/data/licenses/flowplayer-gpl-3.0.LICENSE b/src/licensedcode/data/licenses/flowplayer-gpl-3.0.LICENSE index 27932e2f574..73c6973a68c 100644 --- a/src/licensedcode/data/licenses/flowplayer-gpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/flowplayer-gpl-3.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: flowplayer-gpl-3.0 +short_name: Flowplayer GPL 3.0 +name: Flowplayer GPL 3.0 +category: Copyleft +owner: Flowplayer +homepage_url: https://flowplayer.org/license/ +spdx_license_key: LicenseRef-scancode-flowplayer-gpl-3.0 +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +ignorable_authors: + - ModOrg +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 diff --git a/src/licensedcode/data/licenses/flowplayer-gpl-3.0.yml b/src/licensedcode/data/licenses/flowplayer-gpl-3.0.yml deleted file mode 100644 index 80e30c576e0..00000000000 --- a/src/licensedcode/data/licenses/flowplayer-gpl-3.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: flowplayer-gpl-3.0 -short_name: Flowplayer GPL 3.0 -name: Flowplayer GPL 3.0 -category: Copyleft -owner: Flowplayer -homepage_url: https://flowplayer.org/license/ -spdx_license_key: LicenseRef-scancode-flowplayer-gpl-3.0 -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.html -ignorable_authors: - - ModOrg -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/licenses/fltk-exception-lgpl-2.0.LICENSE b/src/licensedcode/data/licenses/fltk-exception-lgpl-2.0.LICENSE index b24533a8993..d33f08be0c5 100644 --- a/src/licensedcode/data/licenses/fltk-exception-lgpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/fltk-exception-lgpl-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: fltk-exception-lgpl-2.0 +short_name: FLTK exception to LGPL 2.0 +name: FLTK exception to LGPL 2.0 +category: Copyleft Limited +owner: FLTK +homepage_url: http://www.fltk.org/COPYING.php +is_exception: yes +spdx_license_key: FLTK-exception +other_urls: + - http://www.gnu.org/licenses/lgpl-2.0.txt +standard_notice: | + The FLTK library and included programs are provided under the terms of the + GNU Library General Public License (LGPL) with the following exceptions: + Modifications to the FLTK configure script, config header file, and + makefiles by themselves to support a specific platform do not constitute a + modified or derivative work. + The authors do request that such modifications be contributed to the FLTK + project - send all contributions to "fltk-bugs@fltk.org". + Widgets that are subclassed from FLTK widgets do not constitute a + derivative work. + Static linking of applications and widgets to the FLTK library does not + constitute a derivative work and does not require the author to provide + source code for the application or widget, use the shared FLTK libraries, + or link their applications or widgets against a user-supplied version of + FLTK. + If you link the application or widget to a modified version of FLTK, then + the changes to FLTK must be provided under the terms of the LGPL in + sections 1, 2, and 4. + You do not have to provide a copy of the FLTK license with programs that + are linked to the FLTK library, nor do you have to identify the FLTK + license in your program or documentation as required by section 6 of the + LGPL. + However, programs must still identify their use of FLTK. The following + example statement can be included in user documentation to satisfy this + requirement: + [program/widget] is based in part on the work of the FLTK project + (http://www.fltk.org). +ignorable_urls: + - http://www.fltk.org/ +ignorable_emails: + - fltk-bugs@fltk.org +--- + The FLTK library and included programs are provided under the terms of the GNU Library General Public License (LGPL) with the following exceptions: Modifications to the FLTK configure script, config header file, and makefiles by themselves to support a specific platform do not constitute a modified or derivative work. diff --git a/src/licensedcode/data/licenses/fltk-exception-lgpl-2.0.yml b/src/licensedcode/data/licenses/fltk-exception-lgpl-2.0.yml deleted file mode 100644 index b4fe79a5a8d..00000000000 --- a/src/licensedcode/data/licenses/fltk-exception-lgpl-2.0.yml +++ /dev/null @@ -1,41 +0,0 @@ -key: fltk-exception-lgpl-2.0 -short_name: FLTK exception to LGPL 2.0 -name: FLTK exception to LGPL 2.0 -category: Copyleft Limited -owner: FLTK -homepage_url: http://www.fltk.org/COPYING.php -is_exception: yes -spdx_license_key: FLTK-exception -other_urls: - - http://www.gnu.org/licenses/lgpl-2.0.txt -standard_notice: | - The FLTK library and included programs are provided under the terms of the - GNU Library General Public License (LGPL) with the following exceptions: - Modifications to the FLTK configure script, config header file, and - makefiles by themselves to support a specific platform do not constitute a - modified or derivative work. - The authors do request that such modifications be contributed to the FLTK - project - send all contributions to "fltk-bugs@fltk.org". - Widgets that are subclassed from FLTK widgets do not constitute a - derivative work. - Static linking of applications and widgets to the FLTK library does not - constitute a derivative work and does not require the author to provide - source code for the application or widget, use the shared FLTK libraries, - or link their applications or widgets against a user-supplied version of - FLTK. - If you link the application or widget to a modified version of FLTK, then - the changes to FLTK must be provided under the terms of the LGPL in - sections 1, 2, and 4. - You do not have to provide a copy of the FLTK license with programs that - are linked to the FLTK library, nor do you have to identify the FLTK - license in your program or documentation as required by section 6 of the - LGPL. - However, programs must still identify their use of FLTK. The following - example statement can be included in user documentation to satisfy this - requirement: - [program/widget] is based in part on the work of the FLTK project - (http://www.fltk.org). -ignorable_urls: - - http://www.fltk.org/ -ignorable_emails: - - fltk-bugs@fltk.org diff --git a/src/licensedcode/data/licenses/font-alias.LICENSE b/src/licensedcode/data/licenses/font-alias.LICENSE index 3ca11bce92b..bfd06c73e6c 100644 --- a/src/licensedcode/data/licenses/font-alias.LICENSE +++ b/src/licensedcode/data/licenses/font-alias.LICENSE @@ -1,3 +1,22 @@ +--- +key: font-alias +short_name: font-alias License +name: font-alias License +category: Permissive +owner: X.Org +spdx_license_key: LicenseRef-scancode-font-alias +text_urls: + - https://www.x.org/releases/individual/font/font-alias-1.0.3.tar.bz2 +standard_notice: | + Copyright (C) 1994-95 Cronyx Ltd. + Author: Serge Vakulenko, + This software may be used, modified, copied, distributed, and sold, + in both source and binary form provided that the above copyright + and these terms are retained. Under no circumstances is the author + responsible for the proper functioning of this software, nor does + the author assume any responsibility for damages incurred with its use. +--- + This software may be used, modified, copied, distributed, and sold, in both source and binary form provided that the above copyright and these terms are retained. Under no circumstances is the author diff --git a/src/licensedcode/data/licenses/font-alias.yml b/src/licensedcode/data/licenses/font-alias.yml deleted file mode 100644 index be6a2f07e5d..00000000000 --- a/src/licensedcode/data/licenses/font-alias.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: font-alias -short_name: font-alias License -name: font-alias License -category: Permissive -owner: X.Org -spdx_license_key: LicenseRef-scancode-font-alias -text_urls: - - https://www.x.org/releases/individual/font/font-alias-1.0.3.tar.bz2 -standard_notice: | - Copyright (C) 1994-95 Cronyx Ltd. - Author: Serge Vakulenko, - This software may be used, modified, copied, distributed, and sold, - in both source and binary form provided that the above copyright - and these terms are retained. Under no circumstances is the author - responsible for the proper functioning of this software, nor does - the author assume any responsibility for damages incurred with its use. diff --git a/src/licensedcode/data/licenses/font-exception-gpl.LICENSE b/src/licensedcode/data/licenses/font-exception-gpl.LICENSE index c96e8355371..bea3f87c162 100644 --- a/src/licensedcode/data/licenses/font-exception-gpl.LICENSE +++ b/src/licensedcode/data/licenses/font-exception-gpl.LICENSE @@ -1,3 +1,37 @@ +--- +key: font-exception-gpl +short_name: Font exception to GPL +name: Font exception to GPL +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-faq.html#FontException +is_exception: yes +spdx_license_key: Font-exception-2.0 +text_urls: + - http://www.gnu.org/licenses/gpl-faq.html#FontException +standard_notice: | + This library 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. + 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, if you create a document which uses + this font, and embed this font or unaltered portions of this + font into the document, this font does not by itself cause + the resulting document to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the document might be covered by the GNU General + Public License. If you modify this font, you may extend this + exception to your version of the font, but you are not + obligated to do so. If you do not wish to do so, delete this + exception statement from your version. +--- + As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause diff --git a/src/licensedcode/data/licenses/font-exception-gpl.yml b/src/licensedcode/data/licenses/font-exception-gpl.yml deleted file mode 100644 index b9c29f15b5f..00000000000 --- a/src/licensedcode/data/licenses/font-exception-gpl.yml +++ /dev/null @@ -1,31 +0,0 @@ -key: font-exception-gpl -short_name: Font exception to GPL -name: Font exception to GPL -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-faq.html#FontException -is_exception: yes -spdx_license_key: Font-exception-2.0 -text_urls: - - http://www.gnu.org/licenses/gpl-faq.html#FontException -standard_notice: | - This library 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. - 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - As a special exception, if you create a document which uses - this font, and embed this font or unaltered portions of this - font into the document, this font does not by itself cause - the resulting document to be covered by the GNU General Public - License. This exception does not however invalidate any other - reasons why the document might be covered by the GNU General - Public License. If you modify this font, you may extend this - exception to your version of the font, but you are not - obligated to do so. If you do not wish to do so, delete this - exception statement from your version. diff --git a/src/licensedcode/data/licenses/foobar2000.LICENSE b/src/licensedcode/data/licenses/foobar2000.LICENSE index 4dd1c70cd58..560e6aaf237 100644 --- a/src/licensedcode/data/licenses/foobar2000.LICENSE +++ b/src/licensedcode/data/licenses/foobar2000.LICENSE @@ -1,3 +1,13 @@ +--- +key: foobar2000 +short_name: foobar2000 License +name: foobar2000 License +category: Proprietary Free +owner: foobar2000 Project +homepage_url: http://www.foobar2000.org/license +spdx_license_key: LicenseRef-scancode-foobar2000 +--- + Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/foobar2000.yml b/src/licensedcode/data/licenses/foobar2000.yml deleted file mode 100644 index ba78e4678ae..00000000000 --- a/src/licensedcode/data/licenses/foobar2000.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: foobar2000 -short_name: foobar2000 License -name: foobar2000 License -category: Proprietary Free -owner: foobar2000 Project -homepage_url: http://www.foobar2000.org/license -spdx_license_key: LicenseRef-scancode-foobar2000 diff --git a/src/licensedcode/data/licenses/fpl.LICENSE b/src/licensedcode/data/licenses/fpl.LICENSE index 91ebdb1737b..08cb243e613 100644 --- a/src/licensedcode/data/licenses/fpl.LICENSE +++ b/src/licensedcode/data/licenses/fpl.LICENSE @@ -1,3 +1,15 @@ +--- +key: fpl +short_name: Freeware Public License (FPL) +name: Freeware Public License (FPL) +category: Permissive +owner: Packetizer +homepage_url: https://github.com/abahdanovich/sha1/blob/master/c/license.txt +spdx_license_key: LicenseRef-scancode-fpl +text_urls: + - https://github.com/abahdanovich/sha1/blob/master/c/license.txt +--- + Freeware Public License (FPL) This software is licensed as "freeware." Permission to distribute diff --git a/src/licensedcode/data/licenses/fpl.yml b/src/licensedcode/data/licenses/fpl.yml deleted file mode 100644 index 770d8a2e6af..00000000000 --- a/src/licensedcode/data/licenses/fpl.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: fpl -short_name: Freeware Public License (FPL) -name: Freeware Public License (FPL) -category: Permissive -owner: Packetizer -homepage_url: https://github.com/abahdanovich/sha1/blob/master/c/license.txt -spdx_license_key: LicenseRef-scancode-fpl -text_urls: - - https://github.com/abahdanovich/sha1/blob/master/c/license.txt diff --git a/src/licensedcode/data/licenses/fplot.LICENSE b/src/licensedcode/data/licenses/fplot.LICENSE index 344e5e5feaa..cc40d781a14 100644 --- a/src/licensedcode/data/licenses/fplot.LICENSE +++ b/src/licensedcode/data/licenses/fplot.LICENSE @@ -1,3 +1,13 @@ +--- +key: fplot +short_name: FPLOT LIcense +name: FPLOT LIcense +category: Permissive +owner: Michael C. Ring +homepage_url: http://www.tc.umn.edu/~ringx004/fplot-readme.html +spdx_license_key: LicenseRef-scancode-fplot +--- + This software is Freeware. Permission to use, copy, and distribute this software and its diff --git a/src/licensedcode/data/licenses/fplot.yml b/src/licensedcode/data/licenses/fplot.yml deleted file mode 100644 index 4334ac69e1c..00000000000 --- a/src/licensedcode/data/licenses/fplot.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: fplot -short_name: FPLOT LIcense -name: FPLOT LIcense -category: Permissive -owner: Michael C. Ring -homepage_url: http://www.tc.umn.edu/~ringx004/fplot-readme.html -spdx_license_key: LicenseRef-scancode-fplot diff --git a/src/licensedcode/data/licenses/frameworx-1.0.LICENSE b/src/licensedcode/data/licenses/frameworx-1.0.LICENSE index d1d4f437070..b546fbe7623 100644 --- a/src/licensedcode/data/licenses/frameworx-1.0.LICENSE +++ b/src/licensedcode/data/licenses/frameworx-1.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: frameworx-1.0 +short_name: Frameworx 1.0 +name: Frameworx Open License v1.0 +category: Copyleft Limited +owner: Frameworx Company +homepage_url: http://opensource.org/licenses/frameworx.php +notes: | + Per SPDX.org, this license is OSI certified. The url included in the + license does not work. (15/10/10) +spdx_license_key: Frameworx-1.0 +text_urls: + - http://opensource.org/licenses/frameworx.php +osi_url: http://opensource.org/licenses/frameworx.php +other_urls: + - http://www.opensource.org/licenses/Frameworx-1.0 + - https://opensource.org/licenses/Frameworx-1.0 +ignorable_copyrights: + - (c) THE FRAMEWORX COMPANY 2003 +ignorable_holders: + - THE FRAMEWORX COMPANY +ignorable_authors: + - The Frameworx Company +ignorable_urls: + - http://www.frameworx.com/ +--- + THE FRAMEWORX OPEN LICENSE 1.0 This License Agreement, The Frameworx Open License 1.0, has been entered into between The Frameworx Company and you, the licensee hereunder, effective as of Your acceptance of the Frameworx Code Base or an Downstream Distribution (each as defined below). AGREEMENT BACKGROUND diff --git a/src/licensedcode/data/licenses/frameworx-1.0.yml b/src/licensedcode/data/licenses/frameworx-1.0.yml deleted file mode 100644 index dc0b34a66e4..00000000000 --- a/src/licensedcode/data/licenses/frameworx-1.0.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: frameworx-1.0 -short_name: Frameworx 1.0 -name: Frameworx Open License v1.0 -category: Copyleft Limited -owner: Frameworx Company -homepage_url: http://opensource.org/licenses/frameworx.php -notes: | - Per SPDX.org, this license is OSI certified. The url included in the - license does not work. (15/10/10) -spdx_license_key: Frameworx-1.0 -text_urls: - - http://opensource.org/licenses/frameworx.php -osi_url: http://opensource.org/licenses/frameworx.php -other_urls: - - http://www.opensource.org/licenses/Frameworx-1.0 - - https://opensource.org/licenses/Frameworx-1.0 -ignorable_copyrights: - - (c) THE FRAMEWORX COMPANY 2003 -ignorable_holders: - - THE FRAMEWORX COMPANY -ignorable_authors: - - The Frameworx Company -ignorable_urls: - - http://www.frameworx.com/ diff --git a/src/licensedcode/data/licenses/fraunhofer-fdk-aac-codec.LICENSE b/src/licensedcode/data/licenses/fraunhofer-fdk-aac-codec.LICENSE index 302a366f02b..031f2984516 100644 --- a/src/licensedcode/data/licenses/fraunhofer-fdk-aac-codec.LICENSE +++ b/src/licensedcode/data/licenses/fraunhofer-fdk-aac-codec.LICENSE @@ -1,3 +1,34 @@ +--- +key: fraunhofer-fdk-aac-codec +short_name: Fraunhofer FDK AAC Codec Library for Android +name: Fraunhofer FDK AAC Codec Library for Android +category: Copyleft Limited +owner: Fraunhofer-Gesellschaft +homepage_url: http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE +spdx_license_key: FDK-AAC +other_spdx_license_keys: + - LicenseRef-scancode-fraunhofer-fdk-aac-codec +text_urls: + - http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE +other_urls: + - amm-info@iis.fraunhofer.de + - http://www.iis.fraunhofer.de/amm + - https://directory.fsf.org/wiki/License:Fdk + - https://fedoraproject.org/wiki/Licensing/FDK-AAC + - www.iis.fraunhofer.de/amm +minimum_coverage: 40 +ignorable_copyrights: + - (c) Copyright 1995 - 2012 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 - 2012 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. diff --git a/src/licensedcode/data/licenses/fraunhofer-fdk-aac-codec.yml b/src/licensedcode/data/licenses/fraunhofer-fdk-aac-codec.yml deleted file mode 100644 index 8d45c802c8f..00000000000 --- a/src/licensedcode/data/licenses/fraunhofer-fdk-aac-codec.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: fraunhofer-fdk-aac-codec -short_name: Fraunhofer FDK AAC Codec Library for Android -name: Fraunhofer FDK AAC Codec Library for Android -category: Copyleft Limited -owner: Fraunhofer-Gesellschaft -homepage_url: http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE -spdx_license_key: FDK-AAC -other_spdx_license_keys: - - LicenseRef-scancode-fraunhofer-fdk-aac-codec -text_urls: - - http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE -other_urls: - - amm-info@iis.fraunhofer.de - - http://www.iis.fraunhofer.de/amm - - https://directory.fsf.org/wiki/License:Fdk - - https://fedoraproject.org/wiki/Licensing/FDK-AAC - - www.iis.fraunhofer.de/amm -minimum_coverage: 40 -ignorable_copyrights: - - (c) Copyright 1995 - 2012 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 diff --git a/src/licensedcode/data/licenses/fraunhofer-iso-14496-10.LICENSE b/src/licensedcode/data/licenses/fraunhofer-iso-14496-10.LICENSE index bc662bee135..f6154f31201 100644 --- a/src/licensedcode/data/licenses/fraunhofer-iso-14496-10.LICENSE +++ b/src/licensedcode/data/licenses/fraunhofer-iso-14496-10.LICENSE @@ -1,3 +1,23 @@ +--- +key: fraunhofer-iso-14496-10 +short_name: Fraunhofer ISO 14496-10 License +name: Fraunhofer ISO 14496-10 License +category: Permissive +owner: Fraunhofer-Gesellschaft +spdx_license_key: LicenseRef-scancode-fraunhofer-iso-14496-10 +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) ISO/IEC 2005 + - Copyright 2005, International Telecommunications Union, Geneva +ignorable_holders: + - ISO/IEC + - International Telecommunications Union, Geneva +ignorable_authors: + - Heiko Schwarz +ignorable_urls: + - http://www.itu.int/ +--- + ******************************************************************************** NOTE - One of the two copyright statements below may be chosen @@ -75,4 +95,4 @@ the ITU Web site at http://www.itu.int. THIS IS NOT A GRANT OF PATENT RIGHTS - SEE THE ITU-T PATENT POLICY. -******************************************************************************** +******************************************************************************** \ No newline at end of file diff --git a/src/licensedcode/data/licenses/fraunhofer-iso-14496-10.yml b/src/licensedcode/data/licenses/fraunhofer-iso-14496-10.yml deleted file mode 100644 index 3beea0ec216..00000000000 --- a/src/licensedcode/data/licenses/fraunhofer-iso-14496-10.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: fraunhofer-iso-14496-10 -short_name: Fraunhofer ISO 14496-10 License -name: Fraunhofer ISO 14496-10 License -category: Permissive -owner: Fraunhofer-Gesellschaft -spdx_license_key: LicenseRef-scancode-fraunhofer-iso-14496-10 -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) ISO/IEC 2005 - - Copyright 2005, International Telecommunications Union, Geneva -ignorable_holders: - - ISO/IEC - - International Telecommunications Union, Geneva -ignorable_authors: - - Heiko Schwarz -ignorable_urls: - - http://www.itu.int/ diff --git a/src/licensedcode/data/licenses/free-art-1.3.LICENSE b/src/licensedcode/data/licenses/free-art-1.3.LICENSE index 10f9c0e1781..5ae3e1875c4 100644 --- a/src/licensedcode/data/licenses/free-art-1.3.LICENSE +++ b/src/licensedcode/data/licenses/free-art-1.3.LICENSE @@ -1,3 +1,18 @@ +--- +key: free-art-1.3 +short_name: FAL 1.3 +name: Free Art License 1.3 +category: Permissive +owner: Copyleft Attitude +homepage_url: http://artlibre.org/licence/lal/en +spdx_license_key: LicenseRef-scancode-free-art-1.3 +text_urls: + - http://artlibre.org/licence/lal/en +ignorable_urls: + - http://artlibre.org/licence/lal/en/ + - http://www.artlibre.org/ +--- + Free Art License 1.3 (FAL 1.3) Preamble diff --git a/src/licensedcode/data/licenses/free-art-1.3.yml b/src/licensedcode/data/licenses/free-art-1.3.yml deleted file mode 100644 index af169895b65..00000000000 --- a/src/licensedcode/data/licenses/free-art-1.3.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: free-art-1.3 -short_name: FAL 1.3 -name: Free Art License 1.3 -category: Permissive -owner: Copyleft Attitude -homepage_url: http://artlibre.org/licence/lal/en -spdx_license_key: LicenseRef-scancode-free-art-1.3 -text_urls: - - http://artlibre.org/licence/lal/en -ignorable_urls: - - http://artlibre.org/licence/lal/en/ - - http://www.artlibre.org/ diff --git a/src/licensedcode/data/licenses/free-fork.LICENSE b/src/licensedcode/data/licenses/free-fork.LICENSE index 3fee75798e1..87e10e2e49a 100644 --- a/src/licensedcode/data/licenses/free-fork.LICENSE +++ b/src/licensedcode/data/licenses/free-fork.LICENSE @@ -1,3 +1,18 @@ +--- +key: free-fork +short_name: Free-Fork License +name: University of Washington Free-Fork License +category: Copyleft Limited +owner: University of Washington IT +spdx_license_key: LicenseRef-scancode-free-fork +ignorable_copyrights: + - Copyright 1988-2002 University of Washington +ignorable_holders: + - University of Washington +ignorable_emails: + - imap-license@cac.washington.edu +--- + University of Washington's Free-Fork License University of Washington IMAP toolkit diff --git a/src/licensedcode/data/licenses/free-fork.yml b/src/licensedcode/data/licenses/free-fork.yml deleted file mode 100644 index 28cca0525a3..00000000000 --- a/src/licensedcode/data/licenses/free-fork.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: free-fork -short_name: Free-Fork License -name: University of Washington Free-Fork License -category: Copyleft Limited -owner: University of Washington IT -spdx_license_key: LicenseRef-scancode-free-fork -ignorable_copyrights: - - Copyright 1988-2002 University of Washington -ignorable_holders: - - University of Washington -ignorable_emails: - - imap-license@cac.washington.edu diff --git a/src/licensedcode/data/licenses/free-unknown.LICENSE b/src/licensedcode/data/licenses/free-unknown.LICENSE new file mode 100644 index 00000000000..4ad97121a92 --- /dev/null +++ b/src/licensedcode/data/licenses/free-unknown.LICENSE @@ -0,0 +1,11 @@ +--- +key: free-unknown +short_name: Free unknown +name: Free unknown license detected but not recognized +category: Unstated License +owner: Unspecified +is_unknown: yes +spdx_license_key: LicenseRef-scancode-free-unknown +notes: This case applies to software with a notice that refers in a non-specific manner to a + free or open-source license, but where it is not possible to determine that specific license. +--- diff --git a/src/licensedcode/data/licenses/free-unknown.yml b/src/licensedcode/data/licenses/free-unknown.yml deleted file mode 100644 index a4bad89f20d..00000000000 --- a/src/licensedcode/data/licenses/free-unknown.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: free-unknown -short_name: Free unknown -name: Free unknown license detected but not recognized -category: Unstated License -owner: Unspecified -notes: This case applies to software with a notice that refers in a non-specific manner to a - free or open-source license, but where it is not possible to determine that specific license. -is_unknown: yes -spdx_license_key: LicenseRef-scancode-free-unknown diff --git a/src/licensedcode/data/licenses/freebsd-boot.LICENSE b/src/licensedcode/data/licenses/freebsd-boot.LICENSE index 1de02a61a98..3675b33ce99 100644 --- a/src/licensedcode/data/licenses/freebsd-boot.LICENSE +++ b/src/licensedcode/data/licenses/freebsd-boot.LICENSE @@ -1,3 +1,17 @@ +--- +key: freebsd-boot +short_name: FreeBSD Boot +name: FreeBSD Boot +category: Permissive +owner: FreeBSD +homepage_url: http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html +spdx_license_key: LicenseRef-scancode-freebsd-boot +text_urls: + - http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html +other_urls: + - https://casper.berkeley.edu/svn/trunk/roach/sw/uboot/common/cmd_elf.c +--- + Redistribution and use in source and binary forms are freely permitted provided that the above copyright notice and this paragraph and the following disclaimer are duplicated in all @@ -6,4 +20,4 @@ such forms. This software is provided "AS IS" and without any express or implied warranties, including, without limitation, the implied warranties of merchantability and fitness for a particular -purpose. +purpose. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/freebsd-boot.yml b/src/licensedcode/data/licenses/freebsd-boot.yml deleted file mode 100644 index dc530287d58..00000000000 --- a/src/licensedcode/data/licenses/freebsd-boot.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: freebsd-boot -short_name: FreeBSD Boot -name: FreeBSD Boot -category: Permissive -owner: FreeBSD -homepage_url: http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html -spdx_license_key: LicenseRef-scancode-freebsd-boot -text_urls: - - http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html -other_urls: - - https://casper.berkeley.edu/svn/trunk/roach/sw/uboot/common/cmd_elf.c diff --git a/src/licensedcode/data/licenses/freebsd-doc.LICENSE b/src/licensedcode/data/licenses/freebsd-doc.LICENSE index cbc136eeaac..b9e69c243d8 100644 --- a/src/licensedcode/data/licenses/freebsd-doc.LICENSE +++ b/src/licensedcode/data/licenses/freebsd-doc.LICENSE @@ -1,3 +1,22 @@ +--- +key: freebsd-doc +short_name: FreeBSD Doc License +name: FreeBSD Doc License +category: Permissive +owner: FreeBSD +spdx_license_key: FreeBSD-DOC +other_spdx_license_keys: + - LicenseRef-scancode-freebsd-doc +text_urls: + - https://www.freebsd.org/copyright/freebsd-doc-license.html + - https://github.com/jponge/izpack-full-svn-history-copy/blob/7a521ccd6ce0dd1a0664eaae12fd5bba5571d231/izpack-launcher/tags/release-1.0/doc/COPYING + - https://github.com/bastienleonard/pysfml-cython/blob/c71194988ba90678cbc4c9e6fd3e03f53ac4c2e4/doc/sphinx/source/licenses.rst + - https://github.com/pabloriera/ofxKCoreN/blob/f2c6e01b6eeca384f38008520195f2e2481181e3/src/ofxKCoreN.h + - https://github.com/open-mpi/docs/blob/master/README.md +other_urls: + - https://www.freebsd.org/copyright/freebsd-doc-license/ +--- + Redistribution and use in source and 'compiled' forms with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/freebsd-doc.yml b/src/licensedcode/data/licenses/freebsd-doc.yml deleted file mode 100644 index a6a54816422..00000000000 --- a/src/licensedcode/data/licenses/freebsd-doc.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: freebsd-doc -short_name: FreeBSD Doc License -name: FreeBSD Doc License -category: Permissive -owner: FreeBSD -spdx_license_key: FreeBSD-DOC -other_spdx_license_keys: - - LicenseRef-scancode-freebsd-doc -text_urls: - - https://www.freebsd.org/copyright/freebsd-doc-license.html - - https://github.com/jponge/izpack-full-svn-history-copy/blob/7a521ccd6ce0dd1a0664eaae12fd5bba5571d231/izpack-launcher/tags/release-1.0/doc/COPYING - - https://github.com/bastienleonard/pysfml-cython/blob/c71194988ba90678cbc4c9e6fd3e03f53ac4c2e4/doc/sphinx/source/licenses.rst - - https://github.com/pabloriera/ofxKCoreN/blob/f2c6e01b6eeca384f38008520195f2e2481181e3/src/ofxKCoreN.h - - https://github.com/open-mpi/docs/blob/master/README.md -other_urls: - - https://www.freebsd.org/copyright/freebsd-doc-license/ diff --git a/src/licensedcode/data/licenses/freebsd-first.LICENSE b/src/licensedcode/data/licenses/freebsd-first.LICENSE index 2c0f69ae564..d2ef3cf99a9 100644 --- a/src/licensedcode/data/licenses/freebsd-first.LICENSE +++ b/src/licensedcode/data/licenses/freebsd-first.LICENSE @@ -1,3 +1,17 @@ +--- +key: freebsd-first +short_name: FreeBSD unmodified first lines License +name: FreeBSD unmodified first lines License +category: Permissive +owner: FreeBSD +spdx_license_key: LicenseRef-scancode-freebsd-first +text_urls: + - https://opensource.apple.com/source/Libc/Libc-498/pthreads/pthread_getschedparam.3.auto.html + - https://github.com/samir-kassab/RSX208/blob/ff9c702aad525de0a6482d54a39fb116899666c8/git-1.8.1.2/vcs-svn/LICENSE + - https://github.com/jpostel/FreeBSD-mirror/blob/4e7ff5fca339937345c5ccdc58200e62452bd903/sys/sys/_sx.h + - https://github.com/barrbrain/svn-dump-fast-export/blob/0ab007d2fab61f9ebcb4c59e2e97e164eece861c/vcs-svn/LICENSE +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/freebsd-first.yml b/src/licensedcode/data/licenses/freebsd-first.yml deleted file mode 100644 index 0d98a67df43..00000000000 --- a/src/licensedcode/data/licenses/freebsd-first.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: freebsd-first -short_name: FreeBSD unmodified first lines License -name: FreeBSD unmodified first lines License -category: Permissive -owner: FreeBSD -spdx_license_key: LicenseRef-scancode-freebsd-first -text_urls: - - https://opensource.apple.com/source/Libc/Libc-498/pthreads/pthread_getschedparam.3.auto.html - - https://github.com/samir-kassab/RSX208/blob/ff9c702aad525de0a6482d54a39fb116899666c8/git-1.8.1.2/vcs-svn/LICENSE - - https://github.com/jpostel/FreeBSD-mirror/blob/4e7ff5fca339937345c5ccdc58200e62452bd903/sys/sys/_sx.h - - https://github.com/barrbrain/svn-dump-fast-export/blob/0ab007d2fab61f9ebcb4c59e2e97e164eece861c/vcs-svn/LICENSE diff --git a/src/licensedcode/data/licenses/freeimage-1.0.LICENSE b/src/licensedcode/data/licenses/freeimage-1.0.LICENSE index 1446e674788..6672a03c6ad 100644 --- a/src/licensedcode/data/licenses/freeimage-1.0.LICENSE +++ b/src/licensedcode/data/licenses/freeimage-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: freeimage-1.0 +short_name: FreeImage Public License 1.0 +name: FreeImage Public License Version 1.0 +category: Copyleft Limited +owner: FreeImage Project +homepage_url: http://freeimage.sourceforge.net/freeimage-license.txt +spdx_license_key: FreeImage +text_urls: + - http://freeimage.sourceforge.net/freeimage-license.txt +ignorable_urls: + - http://home.wxs.nl/~flvdberg/freeimage-license.txt +--- + FreeImage Public License - Version 1.0 --------------------------------------------- diff --git a/src/licensedcode/data/licenses/freeimage-1.0.yml b/src/licensedcode/data/licenses/freeimage-1.0.yml deleted file mode 100644 index 9448f44edb3..00000000000 --- a/src/licensedcode/data/licenses/freeimage-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: freeimage-1.0 -short_name: FreeImage Public License 1.0 -name: FreeImage Public License Version 1.0 -category: Copyleft Limited -owner: FreeImage Project -homepage_url: http://freeimage.sourceforge.net/freeimage-license.txt -spdx_license_key: FreeImage -text_urls: - - http://freeimage.sourceforge.net/freeimage-license.txt -ignorable_urls: - - http://home.wxs.nl/~flvdberg/freeimage-license.txt diff --git a/src/licensedcode/data/licenses/freemarker.LICENSE b/src/licensedcode/data/licenses/freemarker.LICENSE index d3e3549a831..c4de1a81fae 100644 --- a/src/licensedcode/data/licenses/freemarker.LICENSE +++ b/src/licensedcode/data/licenses/freemarker.LICENSE @@ -1,3 +1,27 @@ +--- +key: freemarker +short_name: FreeMarker License +name: FreeMarker License +category: Permissive +owner: freemarker.org +homepage_url: http://freemarker.org/LICENSE.txt +spdx_license_key: LicenseRef-scancode-freemarker +text_urls: + - http://freemarker.org/LICENSE.txt + - http://freemarker.org/docs/app_license.html +ignorable_copyrights: + - Copyright (c) 2003 The Visigoth Software Society +ignorable_holders: + - The Visigoth Software Society +ignorable_authors: + - the Visigoth Software Society (http://www.visigoths.org/) +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.visigoths.org/ +ignorable_emails: + - visigoths@visigoths.org +--- + FreeMarker License FreeMarker 1.x was released under the LGPL license. Later, by community diff --git a/src/licensedcode/data/licenses/freemarker.yml b/src/licensedcode/data/licenses/freemarker.yml deleted file mode 100644 index 164d14a519b..00000000000 --- a/src/licensedcode/data/licenses/freemarker.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: freemarker -short_name: FreeMarker License -name: FreeMarker License -category: Permissive -owner: freemarker.org -homepage_url: http://freemarker.org/LICENSE.txt -spdx_license_key: LicenseRef-scancode-freemarker -text_urls: - - http://freemarker.org/LICENSE.txt - - http://freemarker.org/docs/app_license.html -ignorable_copyrights: - - Copyright (c) 2003 The Visigoth Software Society -ignorable_holders: - - The Visigoth Software Society -ignorable_authors: - - the Visigoth Software Society (http://www.visigoths.org/) -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.visigoths.org/ -ignorable_emails: - - visigoths@visigoths.org diff --git a/src/licensedcode/data/licenses/freertos-exception-2.0.LICENSE b/src/licensedcode/data/licenses/freertos-exception-2.0.LICENSE index 1c0b31819eb..6efb0d18990 100644 --- a/src/licensedcode/data/licenses/freertos-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/freertos-exception-2.0.LICENSE @@ -1,3 +1,98 @@ +--- +key: freertos-exception-2.0 +short_name: FreeRTOS exception to GPL 2.0 +name: FreeRTOS exception to GPL 2.0 +category: Copyleft Limited +owner: FreeRTOS +is_exception: yes +spdx_license_key: freertos-exception-2.0 +faq_url: https://aws.amazon.com/blogs/opensource/announcing-freertos-kernel-v10/ +other_urls: + - http://www.freertos.org/ + - http://www.freertos.org/a00114.html + - http://www.freertos.org/a00114.html#exception + - https://web.archive.org/web/20060809182744/http://www.freertos.org/a00114.html +standard_notice: | + The FreeRTOS source code is licensed by a modified GNU General Public + License - the modification taking the form of an exception. + The exception permits the source code of applications that use FreeRTOS + solely through the API published on this website to remain closed source, + thus permitting the use of FreeRTOS in commercial applications without + necessitating that the whole application be open sourced. The exception can + only be used if you wish to combine FreeRTOS with a proprietary product and + you comply with the terms stated in the exception itself. + The FreeRTOS download also includes demo application source code, some of + which is provided by third parties AND IS LICENSED SEPARATELY FROM + FREERTOS. + For the avoidance of any doubt refer to the comment included at the top of + each source and header file for license and copyright information. + This is a list of files for which Real Time Engineers Ltd. is not the + copyright owner and are NOT COVERED BY THE GPL. + 1. Various header files provided by silicon manufacturers and tool vendors + that define processor specific memory addresses and utility macros. + Permission has been granted by the various copyright holders for these + files to be included in the FreeRTOS download. Users must ensure license + conditions are adhered to for any use other than compilation of the + FreeRTOS demo applications. + 2. The uIP TCP/IP stack the copyright of which is held by Adam Dunkels. + Users must ensure the open source license conditions stated at the top of + each uIP source file is understood and adhered to. + 3. The lwIP TCP/IP stack the copyright of which is held by the Swedish + Institute of Computer Science. Users must ensure the open source license + conditions stated at the top of each lwIP source file is understood and + adhered to. + 4. Various peripheral driver source files and binaries provided by silicon + manufacturers and tool vendors. Permission has been granted by the various + copyright holders for these files to be included in the FreeRTOS download. + Users must ensure license conditions are adhered to for any use other than + compilation of the FreeRTOS demo applications. + 5. The files contained within FreeRTOS\Demo\WizNET_DEMO_TERN_186\tern_code, + which are slightly modified versions of code provided by and copyright to + Tern Inc. + Errors and omissions should be reported to Richard Barry, contact details + for whom can be obtained from the Contact page. + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + GNU General Public License Exception + Any FreeRTOS source code, whether modified or in its original release form, + or whether in whole or in part, can only be distributed by you under the + terms of the GNU General Public License plus this exception. An independent + module is a module which is not derived from or based on FreeRTOS. + EXCEPTION TEXT: + Clause 1 + Linking FreeRTOS statically or dynamically with other modules is making a + combined work based on FreeRTOS. Thus, the terms and conditions of the GNU + General Public License cover the whole combination. + As a special exception, the copyright holder of FreeRTOS gives you + permission to link FreeRTOS with independent modules that communicate with + FreeRTOS solely through the FreeRTOS API interface, regardless of the + license terms of these independent modules, and to copy and distribute the + resulting combined work under terms of your choice, provided that + 1. Every copy of the combined work is accompanied by a written statement + that details to the recipient the version of FreeRTOS used and an offer by + yourself to provide the FreeRTOS source code (including any modifications + you may have made) should the recipient request it. + 2. The combined work is not itself an RTOS, scheduler, kernel or related + product. + 3. The independent modules add significant and primary functionality to + FreeRTOS and do not merely extend the existing functionality already + present in FreeRTOS. + Clause 2 + FreeRTOS may not be used for any competitive or comparative purpose, + including the publication of any form of run time or compile time metric, + without the express permission of Real Time Engineers Ltd. (this is the + norm within the industry and is intended to ensure information accuracy). +--- + EXCEPTION TEXT: Clause 1 diff --git a/src/licensedcode/data/licenses/freertos-exception-2.0.yml b/src/licensedcode/data/licenses/freertos-exception-2.0.yml deleted file mode 100644 index 2e7fb660c73..00000000000 --- a/src/licensedcode/data/licenses/freertos-exception-2.0.yml +++ /dev/null @@ -1,92 +0,0 @@ -key: freertos-exception-2.0 -short_name: FreeRTOS exception to GPL 2.0 -name: FreeRTOS exception to GPL 2.0 -category: Copyleft Limited -owner: FreeRTOS -is_exception: yes -spdx_license_key: freertos-exception-2.0 -faq_url: https://aws.amazon.com/blogs/opensource/announcing-freertos-kernel-v10/ -other_urls: - - http://www.freertos.org/ - - http://www.freertos.org/a00114.html - - http://www.freertos.org/a00114.html#exception - - https://web.archive.org/web/20060809182744/http://www.freertos.org/a00114.html -standard_notice: | - The FreeRTOS source code is licensed by a modified GNU General Public - License - the modification taking the form of an exception. - The exception permits the source code of applications that use FreeRTOS - solely through the API published on this website to remain closed source, - thus permitting the use of FreeRTOS in commercial applications without - necessitating that the whole application be open sourced. The exception can - only be used if you wish to combine FreeRTOS with a proprietary product and - you comply with the terms stated in the exception itself. - The FreeRTOS download also includes demo application source code, some of - which is provided by third parties AND IS LICENSED SEPARATELY FROM - FREERTOS. - For the avoidance of any doubt refer to the comment included at the top of - each source and header file for license and copyright information. - This is a list of files for which Real Time Engineers Ltd. is not the - copyright owner and are NOT COVERED BY THE GPL. - 1. Various header files provided by silicon manufacturers and tool vendors - that define processor specific memory addresses and utility macros. - Permission has been granted by the various copyright holders for these - files to be included in the FreeRTOS download. Users must ensure license - conditions are adhered to for any use other than compilation of the - FreeRTOS demo applications. - 2. The uIP TCP/IP stack the copyright of which is held by Adam Dunkels. - Users must ensure the open source license conditions stated at the top of - each uIP source file is understood and adhered to. - 3. The lwIP TCP/IP stack the copyright of which is held by the Swedish - Institute of Computer Science. Users must ensure the open source license - conditions stated at the top of each lwIP source file is understood and - adhered to. - 4. Various peripheral driver source files and binaries provided by silicon - manufacturers and tool vendors. Permission has been granted by the various - copyright holders for these files to be included in the FreeRTOS download. - Users must ensure license conditions are adhered to for any use other than - compilation of the FreeRTOS demo applications. - 5. The files contained within FreeRTOS\Demo\WizNET_DEMO_TERN_186\tern_code, - which are slightly modified versions of code provided by and copyright to - Tern Inc. - Errors and omissions should be reported to Richard Barry, contact details - for whom can be obtained from the Contact page. - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - GNU General Public License Exception - Any FreeRTOS source code, whether modified or in its original release form, - or whether in whole or in part, can only be distributed by you under the - terms of the GNU General Public License plus this exception. An independent - module is a module which is not derived from or based on FreeRTOS. - EXCEPTION TEXT: - Clause 1 - Linking FreeRTOS statically or dynamically with other modules is making a - combined work based on FreeRTOS. Thus, the terms and conditions of the GNU - General Public License cover the whole combination. - As a special exception, the copyright holder of FreeRTOS gives you - permission to link FreeRTOS with independent modules that communicate with - FreeRTOS solely through the FreeRTOS API interface, regardless of the - license terms of these independent modules, and to copy and distribute the - resulting combined work under terms of your choice, provided that - 1. Every copy of the combined work is accompanied by a written statement - that details to the recipient the version of FreeRTOS used and an offer by - yourself to provide the FreeRTOS source code (including any modifications - you may have made) should the recipient request it. - 2. The combined work is not itself an RTOS, scheduler, kernel or related - product. - 3. The independent modules add significant and primary functionality to - FreeRTOS and do not merely extend the existing functionality already - present in FreeRTOS. - Clause 2 - FreeRTOS may not be used for any competitive or comparative purpose, - including the publication of any form of run time or compile time metric, - without the express permission of Real Time Engineers Ltd. (this is the - norm within the industry and is intended to ensure information accuracy). diff --git a/src/licensedcode/data/licenses/freetts.LICENSE b/src/licensedcode/data/licenses/freetts.LICENSE index aa3a3fd0f5e..2dc45834338 100644 --- a/src/licensedcode/data/licenses/freetts.LICENSE +++ b/src/licensedcode/data/licenses/freetts.LICENSE @@ -1,3 +1,22 @@ +--- +key: freetts +short_name: FreeTTS License +name: FreeTTS License +category: Permissive +owner: Oracle Corporation +homepage_url: http://freetts.sourceforge.net/license.terms +spdx_license_key: LicenseRef-scancode-freetts +text_urls: + - http://freetts.sourceforge.net/license.terms +faq_url: http://freetts.sourceforge.net/docs/index.php +ignorable_copyrights: + - Portions Copyright 1999-2001 Language Technologies Institute, Carnegie Mellon University + - Portions Copyright 2001-2004 Sun Microsystems, Inc. +ignorable_holders: + - Language Technologies Institute, Carnegie Mellon University + - Sun Microsystems, Inc. +--- + Portions Copyright 2001-2004 Sun Microsystems, Inc. Portions Copyright 1999-2001 Language Technologies Institute, Carnegie Mellon University. diff --git a/src/licensedcode/data/licenses/freetts.yml b/src/licensedcode/data/licenses/freetts.yml deleted file mode 100644 index a5244a5dd52..00000000000 --- a/src/licensedcode/data/licenses/freetts.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: freetts -short_name: FreeTTS License -name: FreeTTS License -category: Permissive -owner: Oracle Corporation -homepage_url: http://freetts.sourceforge.net/license.terms -spdx_license_key: LicenseRef-scancode-freetts -text_urls: - - http://freetts.sourceforge.net/license.terms -faq_url: http://freetts.sourceforge.net/docs/index.php -ignorable_copyrights: - - Portions Copyright 1999-2001 Language Technologies Institute, Carnegie Mellon University - - Portions Copyright 2001-2004 Sun Microsystems, Inc. -ignorable_holders: - - Language Technologies Institute, Carnegie Mellon University - - Sun Microsystems, Inc. diff --git a/src/licensedcode/data/licenses/freetype-patent.LICENSE b/src/licensedcode/data/licenses/freetype-patent.LICENSE index d3429d62716..f4b2ad9a4d0 100644 --- a/src/licensedcode/data/licenses/freetype-patent.LICENSE +++ b/src/licensedcode/data/licenses/freetype-patent.LICENSE @@ -1,3 +1,16 @@ +--- +key: freetype-patent +short_name: FreeType Patent Grant +name: FreeType Patent Grant +category: Patent License +owner: FreeType Project +homepage_url: https://www.freetype.org/ +notes: This patent grant clause is similat to Apache-2.0 section 3 and is sometimes seen used + alone with the freetype license. +spdx_license_key: LicenseRef-scancode-freetype-patent +minimum_coverage: 70 +--- + Additionally, subject to the terms and conditions of the */ FreeType Project License, each contributor to the Work hereby grants to any individual or legal entity exercising permissions granted by @@ -14,4 +27,4 @@ submitted. If You institute patent litigation against any entity 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. \ No newline at end of file +the date such litigation is filed. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/freetype-patent.yml b/src/licensedcode/data/licenses/freetype-patent.yml deleted file mode 100644 index f9aa2e8eb1a..00000000000 --- a/src/licensedcode/data/licenses/freetype-patent.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: freetype-patent -short_name: FreeType Patent Grant -name: FreeType Patent Grant -category: Patent License -owner: FreeType Project -homepage_url: https://www.freetype.org/ -notes: This patent grant clause is similat to Apache-2.0 section 3 and is sometimes seen used - alone with the freetype license. -spdx_license_key: LicenseRef-scancode-freetype-patent -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/freetype.LICENSE b/src/licensedcode/data/licenses/freetype.LICENSE index 3a75864e59a..31a8ea98c5b 100644 --- a/src/licensedcode/data/licenses/freetype.LICENSE +++ b/src/licensedcode/data/licenses/freetype.LICENSE @@ -1,3 +1,34 @@ +--- +key: freetype +short_name: FreeType Project License +name: FreeType Project License +category: Permissive +owner: FreeType Project +homepage_url: http://www.freetype.org/license.html +notes: Per SPDX.org, this license was released 27 Jan 2006 +spdx_license_key: FTL +text_urls: + - http://www.freetype.org/FTL.TXT +other_urls: + - http://freetype.fis.uniroma2.it/FTL.TXT + - http://freetype.org/patents.html + - http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT + - http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT + - http://www.freetype.org/ +ignorable_copyrights: + - Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg + - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg + - copyright (c) The FreeType Project (www.freetype.org) +ignorable_holders: + - David Turner, Robert Wilhelm, and Werner Lemberg + - The FreeType Project +ignorable_urls: + - http://www.freetype.org/ +ignorable_emails: + - freetype-devel@nongnu.org + - freetype@nongnu.org +--- + The FreeType Project LICENSE ---------------------------- 2006-Jan-27 diff --git a/src/licensedcode/data/licenses/freetype.yml b/src/licensedcode/data/licenses/freetype.yml deleted file mode 100644 index c1fdf268297..00000000000 --- a/src/licensedcode/data/licenses/freetype.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: freetype -short_name: FreeType Project License -name: FreeType Project License -category: Permissive -owner: FreeType Project -homepage_url: http://www.freetype.org/license.html -notes: Per SPDX.org, this license was released 27 Jan 2006 -spdx_license_key: FTL -text_urls: - - http://www.freetype.org/FTL.TXT -other_urls: - - http://freetype.fis.uniroma2.it/FTL.TXT - - http://freetype.org/patents.html - - http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT - - http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT - - http://www.freetype.org/ -ignorable_copyrights: - - Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg - - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg - - copyright (c) The FreeType Project (www.freetype.org) -ignorable_holders: - - David Turner, Robert Wilhelm, and Werner Lemberg - - The FreeType Project -ignorable_urls: - - http://www.freetype.org/ -ignorable_emails: - - freetype-devel@nongnu.org - - freetype@nongnu.org diff --git a/src/licensedcode/data/licenses/froala-owdl-1.0.LICENSE b/src/licensedcode/data/licenses/froala-owdl-1.0.LICENSE index 54dab371076..dc082aa65c0 100644 --- a/src/licensedcode/data/licenses/froala-owdl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/froala-owdl-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: froala-owdl-1.0 +short_name: Froala Open Web Design License +name: Froala Open Web Design License +category: Proprietary Free +owner: Froala +homepage_url: https://github.com/froala/design-blocks/blob/dev/LICENSE +notes: based on the OFL 1.1 with a proprietary addition. in 3(a) there are exatr usage restrictions + "Neither the Work nor any of its individual components, in Original or Modified Versions, + may be .... (ii) used for website or app generators; (iii) used to create templates, themes, + and plugins for sale." +spdx_license_key: LicenseRef-scancode-froala-owdl-1.0 +text_urls: + - https://github.com/froala/design-blocks/blob/dev/LICENSE +--- + ------------------------------------------------------------ FROALA OPEN WEB DESIGN LICENSE Version 1.0 - 16 October 2017 ------------------------------------------------------------ diff --git a/src/licensedcode/data/licenses/froala-owdl-1.0.yml b/src/licensedcode/data/licenses/froala-owdl-1.0.yml deleted file mode 100644 index 443d56a0041..00000000000 --- a/src/licensedcode/data/licenses/froala-owdl-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: froala-owdl-1.0 -short_name: Froala Open Web Design License -name: Froala Open Web Design License -category: Proprietary Free -owner: Froala -homepage_url: https://github.com/froala/design-blocks/blob/dev/LICENSE -notes: based on the OFL 1.1 with a proprietary addition. in 3(a) there are exatr usage restrictions - "Neither the Work nor any of its individual components, in Original or Modified Versions, - may be .... (ii) used for website or app generators; (iii) used to create templates, themes, - and plugins for sale." -spdx_license_key: LicenseRef-scancode-froala-owdl-1.0 -text_urls: - - https://github.com/froala/design-blocks/blob/dev/LICENSE diff --git a/src/licensedcode/data/licenses/frontier-1.0.LICENSE b/src/licensedcode/data/licenses/frontier-1.0.LICENSE index f3daf7a210d..1bbaef1bc5b 100644 --- a/src/licensedcode/data/licenses/frontier-1.0.LICENSE +++ b/src/licensedcode/data/licenses/frontier-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: frontier-1.0 +short_name: Frontier Artistic License +name: Frontier Artistic License +category: Copyleft Limited +owner: Frontier Scripting +homepage_url: http://www.spinwardstars.com/frontier/fal.html +spdx_license_key: LicenseRef-scancode-frontier-1.0 +text_urls: + - http://www.spinwardstars.com/frontier/fal10.txt +ignorable_copyrights: + - Copyright (c) (c) 1999 by Samuel Reynolds +ignorable_holders: + - Samuel Reynolds +ignorable_urls: + - http://ftp.uu.net/ +--- + THE FRONTIER ARTISTIC LICENSE Version 1.0 Copyright © (c) 1999 by Samuel Reynolds. Derived from the "Artistic License" at "OpenSource.org". diff --git a/src/licensedcode/data/licenses/frontier-1.0.yml b/src/licensedcode/data/licenses/frontier-1.0.yml deleted file mode 100644 index bac7bb053df..00000000000 --- a/src/licensedcode/data/licenses/frontier-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: frontier-1.0 -short_name: Frontier Artistic License -name: Frontier Artistic License -category: Copyleft Limited -owner: Frontier Scripting -homepage_url: http://www.spinwardstars.com/frontier/fal.html -spdx_license_key: LicenseRef-scancode-frontier-1.0 -text_urls: - - http://www.spinwardstars.com/frontier/fal10.txt -ignorable_copyrights: - - Copyright (c) (c) 1999 by Samuel Reynolds -ignorable_holders: - - Samuel Reynolds -ignorable_urls: - - http://ftp.uu.net/ diff --git a/src/licensedcode/data/licenses/fsf-ap.LICENSE b/src/licensedcode/data/licenses/fsf-ap.LICENSE index 36bd5eba7d1..08c1445f4b3 100644 --- a/src/licensedcode/data/licenses/fsf-ap.LICENSE +++ b/src/licensedcode/data/licenses/fsf-ap.LICENSE @@ -1,4 +1,25 @@ +--- +key: fsf-ap +short_name: FSF All Permissive License +name: FSF All Permissive License +category: Permissive +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html +notes: | + Per Fedora, This is a simple permissive license, created by the FSF. It is + Free and GPL compatible. The FSF recommends it for "small supporting files, + short manuals (under 300 lines long) and rough documentation (README files, + INSTALL files, etc.)". +spdx_license_key: FSFAP +other_urls: + - http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html + - http://www.gnu.org/software/autoconf-archive/ax_lib_readline.html + - https://fedoraproject.org/wiki/Licensing/FSFAP + - https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html +minimum_coverage: 85 +--- + Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any -warranty. +warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/fsf-ap.yml b/src/licensedcode/data/licenses/fsf-ap.yml deleted file mode 100644 index eace20ea5be..00000000000 --- a/src/licensedcode/data/licenses/fsf-ap.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: fsf-ap -short_name: FSF All Permissive License -name: FSF All Permissive License -category: Permissive -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html -notes: | - Per Fedora, This is a simple permissive license, created by the FSF. It is - Free and GPL compatible. The FSF recommends it for "small supporting files, - short manuals (under 300 lines long) and rough documentation (README files, - INSTALL files, etc.)". -spdx_license_key: FSFAP -other_urls: - - http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html - - http://www.gnu.org/software/autoconf-archive/ax_lib_readline.html - - https://fedoraproject.org/wiki/Licensing/FSFAP - - https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html -minimum_coverage: 85 diff --git a/src/licensedcode/data/licenses/fsf-free.LICENSE b/src/licensedcode/data/licenses/fsf-free.LICENSE index 93a0ea951ce..51ff6006209 100644 --- a/src/licensedcode/data/licenses/fsf-free.LICENSE +++ b/src/licensedcode/data/licenses/fsf-free.LICENSE @@ -1,2 +1,14 @@ +--- +key: fsf-free +short_name: FSF Free Software License +name: Free Software Foundation - Free Software License +category: Public Domain +owner: Free Software Foundation (FSF) +homepage_url: http://www.fsf.org/licensing/licenses/ +spdx_license_key: FSFUL +text_urls: + - https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License +--- + This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/fsf-free.yml b/src/licensedcode/data/licenses/fsf-free.yml deleted file mode 100644 index 90d06c0d9ad..00000000000 --- a/src/licensedcode/data/licenses/fsf-free.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: fsf-free -short_name: FSF Free Software License -name: Free Software Foundation - Free Software License -category: Public Domain -owner: Free Software Foundation (FSF) -homepage_url: http://www.fsf.org/licensing/licenses/ -spdx_license_key: FSFUL -text_urls: - - https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License diff --git a/src/licensedcode/data/licenses/fsf-notice.LICENSE b/src/licensedcode/data/licenses/fsf-notice.LICENSE index 3c38e4e7530..0cb18175456 100644 --- a/src/licensedcode/data/licenses/fsf-notice.LICENSE +++ b/src/licensedcode/data/licenses/fsf-notice.LICENSE @@ -1,2 +1,15 @@ +--- +key: fsf-notice +short_name: FSF Notice +name: FSF Notice +category: Permissive +owner: Free Software Foundation (FSF) +homepage_url: http://www.fsf.org/licensing/licenses/ +notes: This notice is commonly seen in L/GPL-licensed FSF and GNU projects as a short additional + notice in command line tools or build scritps. It was previsouly reported as a free but + unknown. It is commonly seen in GCC, GCB, Bash and related tools. +spdx_license_key: LicenseRef-scancode-fsf-notice +--- + This is free software: you are free to change and redistribute it -There is NO WARRANTY, to the extent permitted by law. +There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/fsf-notice.yml b/src/licensedcode/data/licenses/fsf-notice.yml deleted file mode 100644 index 7134b8b45c7..00000000000 --- a/src/licensedcode/data/licenses/fsf-notice.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: fsf-notice -short_name: FSF Notice -name: FSF Notice -category: Permissive -owner: Free Software Foundation (FSF) -homepage_url: http://www.fsf.org/licensing/licenses/ -notes: This notice is commonly seen in L/GPL-licensed FSF and GNU projects as a short additional - notice in command line tools or build scritps. It was previsouly reported as a free but - unknown. It is commonly seen in GCC, GCB, Bash and related tools. -spdx_license_key: LicenseRef-scancode-fsf-notice diff --git a/src/licensedcode/data/licenses/fsf-unlimited-no-warranty.LICENSE b/src/licensedcode/data/licenses/fsf-unlimited-no-warranty.LICENSE index e072e1c5542..04bd0822b12 100644 --- a/src/licensedcode/data/licenses/fsf-unlimited-no-warranty.LICENSE +++ b/src/licensedcode/data/licenses/fsf-unlimited-no-warranty.LICENSE @@ -1,3 +1,18 @@ +--- +key: fsf-unlimited-no-warranty +short_name: FSF Unlimited License No Warranty +name: FSF Unlimited License No Warranty +category: Permissive +owner: Free Software Foundation (FSF) +homepage_url: http://www.fsf.org/licensing/licenses/ +spdx_license_key: LicenseRef-scancode-fsf-unlimited-no-warranty +text_urls: + - http://www.fsf.org/licensing/licenses/ +other_urls: + - https://github.com/nexB/scancode-toolkit/pull/1702 +minimum_coverage: 60 +--- + This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. diff --git a/src/licensedcode/data/licenses/fsf-unlimited-no-warranty.yml b/src/licensedcode/data/licenses/fsf-unlimited-no-warranty.yml deleted file mode 100644 index 1aa437903d4..00000000000 --- a/src/licensedcode/data/licenses/fsf-unlimited-no-warranty.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: fsf-unlimited-no-warranty -short_name: FSF Unlimited License No Warranty -name: FSF Unlimited License No Warranty -category: Permissive -owner: Free Software Foundation (FSF) -homepage_url: http://www.fsf.org/licensing/licenses/ -spdx_license_key: LicenseRef-scancode-fsf-unlimited-no-warranty -text_urls: - - http://www.fsf.org/licensing/licenses/ -other_urls: - - https://github.com/nexB/scancode-toolkit/pull/1702 -minimum_coverage: 60 diff --git a/src/licensedcode/data/licenses/fsf-unlimited.LICENSE b/src/licensedcode/data/licenses/fsf-unlimited.LICENSE index 81d80804f72..1a2446e4d51 100644 --- a/src/licensedcode/data/licenses/fsf-unlimited.LICENSE +++ b/src/licensedcode/data/licenses/fsf-unlimited.LICENSE @@ -1,3 +1,13 @@ +--- +key: fsf-unlimited +short_name: FSF-Unlimited +name: Free Software Foundation - Unlimited License +category: Permissive +owner: Free Software Foundation (FSF) +homepage_url: https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant +spdx_license_key: FSFULLR +--- + This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without -modifications, as long as this notice is preserved. +modifications, as long as this notice is preserved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/fsf-unlimited.yml b/src/licensedcode/data/licenses/fsf-unlimited.yml deleted file mode 100644 index f4d8b1ad0d1..00000000000 --- a/src/licensedcode/data/licenses/fsf-unlimited.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: fsf-unlimited -short_name: FSF-Unlimited -name: Free Software Foundation - Unlimited License -category: Permissive -owner: Free Software Foundation (FSF) -homepage_url: https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant -spdx_license_key: FSFULLR diff --git a/src/licensedcode/data/licenses/ftdi.LICENSE b/src/licensedcode/data/licenses/ftdi.LICENSE index 95dd4150879..3bc5abdfcc0 100644 --- a/src/licensedcode/data/licenses/ftdi.LICENSE +++ b/src/licensedcode/data/licenses/ftdi.LICENSE @@ -1,3 +1,16 @@ +--- +key: ftdi +short_name: FTDI License +name: Future Technology Devices International License +category: Proprietary Free +owner: FTDI +homepage_url: https://github.com/psi46/psi46test/blob/master/linux/ftd2xx.h +spdx_license_key: LicenseRef-scancode-ftdi +other_urls: + - http://www.ftdichip.com/ +minimum_coverage: 70 +--- + THIS SOFTWARE IS PROVIDED BY FUTURE TECHNOLOGY DEVICES INTERNATIONAL LIMITED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS diff --git a/src/licensedcode/data/licenses/ftdi.yml b/src/licensedcode/data/licenses/ftdi.yml deleted file mode 100644 index 594ed1e2801..00000000000 --- a/src/licensedcode/data/licenses/ftdi.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ftdi -short_name: FTDI License -name: Future Technology Devices International License -category: Proprietary Free -owner: FTDI -homepage_url: https://github.com/psi46/psi46test/blob/master/linux/ftd2xx.h -spdx_license_key: LicenseRef-scancode-ftdi -other_urls: - - http://www.ftdichip.com/ -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/ftpbean.LICENSE b/src/licensedcode/data/licenses/ftpbean.LICENSE index bdbae6c7212..c23b445ea5e 100644 --- a/src/licensedcode/data/licenses/ftpbean.LICENSE +++ b/src/licensedcode/data/licenses/ftpbean.LICENSE @@ -1,3 +1,21 @@ +--- +key: ftpbean +short_name: FtpBean License +name: FtpBean License +category: Proprietary Free +owner: Calvin Tai +homepage_url: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean +spdx_license_key: LicenseRef-scancode-ftpbean +ignorable_copyrights: + - Copyright 1999 Calvin Tai +ignorable_holders: + - Calvin Tai +ignorable_urls: + - http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean +ignorable_emails: + - citidancer@hongkong.com +--- + FtpBean Version 1.4.2 Copyright 1999 Calvin Tai E-mail: citidancer@hongkong.com @@ -16,4 +34,4 @@ In other words, please ask first before you try and make money off of this java bean as a standalone application. Obtain permission before redistributing this software over the Internet or -in any other medium. In all cases copyright and header must remain intact. +in any other medium. In all cases copyright and header must remain intact. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ftpbean.yml b/src/licensedcode/data/licenses/ftpbean.yml deleted file mode 100644 index 2057fc9db78..00000000000 --- a/src/licensedcode/data/licenses/ftpbean.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ftpbean -short_name: FtpBean License -name: FtpBean License -category: Proprietary Free -owner: Calvin Tai -homepage_url: http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean -spdx_license_key: LicenseRef-scancode-ftpbean -ignorable_copyrights: - - Copyright 1999 Calvin Tai -ignorable_holders: - - Calvin Tai -ignorable_urls: - - http://www.geocities.com/SiliconValley/Code/9129/javabean/ftpbean -ignorable_emails: - - citidancer@hongkong.com diff --git a/src/licensedcode/data/licenses/gareth-mccaughan.LICENSE b/src/licensedcode/data/licenses/gareth-mccaughan.LICENSE index 39d2663b265..dc3b2c25cfb 100644 --- a/src/licensedcode/data/licenses/gareth-mccaughan.LICENSE +++ b/src/licensedcode/data/licenses/gareth-mccaughan.LICENSE @@ -1,3 +1,17 @@ +--- +key: gareth-mccaughan +short_name: Gareth McCaughan License +name: Gareth McCaughan License +category: Permissive +owner: Gareth McCaughan +homepage_url: https://github.com/tonyg/pi-nothing/blob/master/disarm/disarm-0.11.c +spdx_license_key: LicenseRef-scancode-gareth-mccaughan +other_urls: + - http://web.ukonline.co.uk/g.mccaughan/g/software.html +ignorable_urls: + - http://web.ukonline.co.uk/g.mccaughan/g/software.html +--- + This file may be distributed and used freely provided: 1. You do not distribute any version that lacks this copyright notice (exactly as it appears here, extending diff --git a/src/licensedcode/data/licenses/gareth-mccaughan.yml b/src/licensedcode/data/licenses/gareth-mccaughan.yml deleted file mode 100644 index e60ca420759..00000000000 --- a/src/licensedcode/data/licenses/gareth-mccaughan.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gareth-mccaughan -short_name: Gareth McCaughan License -name: Gareth McCaughan License -category: Permissive -owner: Gareth McCaughan -homepage_url: https://github.com/tonyg/pi-nothing/blob/master/disarm/disarm-0.11.c -spdx_license_key: LicenseRef-scancode-gareth-mccaughan -other_urls: - - http://web.ukonline.co.uk/g.mccaughan/g/software.html -ignorable_urls: - - http://web.ukonline.co.uk/g.mccaughan/g/software.html diff --git a/src/licensedcode/data/licenses/gary-s-brown.LICENSE b/src/licensedcode/data/licenses/gary-s-brown.LICENSE index aa02028e790..23c741b8031 100644 --- a/src/licensedcode/data/licenses/gary-s-brown.LICENSE +++ b/src/licensedcode/data/licenses/gary-s-brown.LICENSE @@ -1 +1,10 @@ -You may use this program, or code or tables extracted from it, as desired without restriction \ No newline at end of file +--- +key: gary-s-brown +short_name: Gary S. Brown License +name: Gary S. Brown License +category: Permissive +owner: Gary S. Brown +spdx_license_key: LicenseRef-scancode-gary-s-brown +--- + +You may use this program, or code or tables extracted from it, as desired without restriction \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gary-s-brown.yml b/src/licensedcode/data/licenses/gary-s-brown.yml deleted file mode 100644 index 0c9ceef9aec..00000000000 --- a/src/licensedcode/data/licenses/gary-s-brown.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: gary-s-brown -short_name: Gary S. Brown License -name: Gary S. Brown License -category: Permissive -owner: Gary S. Brown -spdx_license_key: LicenseRef-scancode-gary-s-brown diff --git a/src/licensedcode/data/licenses/gcc-compiler-exception-2.0.LICENSE b/src/licensedcode/data/licenses/gcc-compiler-exception-2.0.LICENSE index 865806c690e..5b050903ece 100644 --- a/src/licensedcode/data/licenses/gcc-compiler-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/gcc-compiler-exception-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: gcc-compiler-exception-2.0 +short_name: GCC compiler exception to GPL 2.0 +name: GCC Compiler exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-gcc-compiler-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + GCC 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, or (at your option) + any later version. + GCC 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 GCC; see the file COPYING. If not, write to the Free + Software Foundation, 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + As a special exception, if you include this header file into source + files compiled by GCC, this header file does not by itself cause + the resulting executable to be covered by the GNU General Public + License. This exception does not however invalidate any other + reasons why the executable file might be covered by the GNU General + Public License. +--- + As a special exception, if you include this header file into source files compiled by GCC, this header file does not by itself cause the resulting executable to be covered by the GNU General Public diff --git a/src/licensedcode/data/licenses/gcc-compiler-exception-2.0.yml b/src/licensedcode/data/licenses/gcc-compiler-exception-2.0.yml deleted file mode 100644 index a9bbfed2cc2..00000000000 --- a/src/licensedcode/data/licenses/gcc-compiler-exception-2.0.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: gcc-compiler-exception-2.0 -short_name: GCC compiler exception to GPL 2.0 -name: GCC Compiler exception to GPL 2.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: LicenseRef-scancode-gcc-compiler-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - GCC 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, or (at your option) - any later version. - GCC 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 GCC; see the file COPYING. If not, write to the Free - Software Foundation, 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. - As a special exception, if you include this header file into source - files compiled by GCC, this header file does not by itself cause - the resulting executable to be covered by the GNU General Public - License. This exception does not however invalidate any other - reasons why the executable file might be covered by the GNU General - Public License. diff --git a/src/licensedcode/data/licenses/gcc-exception-3.0.LICENSE b/src/licensedcode/data/licenses/gcc-exception-3.0.LICENSE index 7bc596a1d96..d7fdc259ec7 100644 --- a/src/licensedcode/data/licenses/gcc-exception-3.0.LICENSE +++ b/src/licensedcode/data/licenses/gcc-exception-3.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: gcc-exception-3.0 +short_name: GCC Runtime Library Exception v3.0 +name: GCC Runtime Library Exception v3.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gcc-exception-3.0.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-exception-3.0 +text_urls: + - http://www.gnu.org/licenses/gcc-exception-3.0.html +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt + - https://github.com/earthcomputing/Netronome/blob/9f5132ecea3c134322305c9524da7189374881ec/nfp-sdk-6.0.1/NFP_SDK_EULA.txt +minimum_coverage: 98 +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- + GCC RUNTIME LIBRARY EXCEPTION Version 3, 27 January 2009 @@ -26,4 +49,4 @@ A Compilation Process is "Eligible" if it is done using GCC, alone or with other You have permission to propagate a work of Target Code formed by combining the Runtime Library with Independent Modules, even if such propagation would otherwise violate the terms of GPLv3, provided that all Target Code was generated by Eligible Compilation Processes. You may then convey such a combination under terms of your choice, consistent with the licensing of the Independent Modules. 2. No Weakening of GCC Copyleft. -The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. +The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the license of GCC. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gcc-exception-3.0.yml b/src/licensedcode/data/licenses/gcc-exception-3.0.yml deleted file mode 100644 index 054f4b05652..00000000000 --- a/src/licensedcode/data/licenses/gcc-exception-3.0.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: gcc-exception-3.0 -short_name: GCC Runtime Library Exception v3.0 -name: GCC Runtime Library Exception v3.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gcc-exception-3.0.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-exception-3.0 -text_urls: - - http://www.gnu.org/licenses/gcc-exception-3.0.html -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt - - https://github.com/earthcomputing/Netronome/blob/9f5132ecea3c134322305c9524da7189374881ec/nfp-sdk-6.0.1/NFP_SDK_EULA.txt -minimum_coverage: 98 -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ diff --git a/src/licensedcode/data/licenses/gcc-exception-3.1.LICENSE b/src/licensedcode/data/licenses/gcc-exception-3.1.LICENSE index e86f7fb58a4..cb4d6b4f43d 100644 --- a/src/licensedcode/data/licenses/gcc-exception-3.1.LICENSE +++ b/src/licensedcode/data/licenses/gcc-exception-3.1.LICENSE @@ -1,3 +1,91 @@ +--- +key: gcc-exception-3.1 +short_name: GCC Runtime Library Exception v3.1 +name: GCC Runtime Library Exception v3.1 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gcc-exception-3.1.html +is_exception: yes +spdx_license_key: GCC-exception-3.1 +text_urls: + - http://www.gnu.org/licenses/gcc-exception-3.1.html +faq_url: http://www.gnu.org/licenses/gcc-exception-3.1-faq.html +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + 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 . + GCC RUNTIME LIBRARY EXCEPTION + Version 3.1, 31 March 2009 + Copyright © 2009 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + This GCC Runtime Library Exception ("Exception") is an additional + permission under section 7 of the GNU General Public License, version 3 + ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a + notice placed by the copyright holder of the file stating that the file is + governed by GPLv3 along with this Exception. + When you use GCC to compile a program, GCC may combine portions of certain + GCC header files and runtime libraries with the compiled program. The + purpose of this Exception is to allow compilation of non-GPL (including + proprietary) programs to use, in this way, the header files and runtime + libraries covered by this Exception. + 0. Definitions. + A file is an "Independent Module" if it either requires the Runtime Library + for execution after a Compilation Process, or makes use of an interface + provided by the Runtime Library, but is not otherwise based on the Runtime + Library. + "GCC" means a version of the GNU Compiler Collection, with or without + modifications, governed by version 3 (or a specified later version) of the + GNU General Public License (GPL) with the option of using any subsequent + versions published by the FSF. + "GPL-compatible Software" is software whose conditions of propagation, + modification and use would permit combination with GCC in accord with the + license of GCC. + "Target Code" refers to output from any compiler for a real or virtual + target processor architecture, in executable form or suitable for input to + an assembler, loader, linker and/or execution phase. Notwithstanding that, + Target Code does not include data in any format that is used as a compiler + intermediate representation, or used for producing a compiler intermediate + representation. + The "Compilation Process" transforms code entirely represented in non- + intermediate languages designed for human-written code, and/or in Java + Virtual Machine byte code, into Target Code. Thus, for example, use of + source code generators and preprocessors need not be considered part of the + Compilation Process, since the Compilation Process can be understood as + starting with the output of the generators or preprocessors. + A Compilation Process is "Eligible" if it is done using GCC, alone or with + other GPL-compatible software, or if it is done without using any work + based on GCC. For example, using non-GPL-compatible Software to optimize + any GCC intermediate representations would not qualify as an Eligible + Compilation Process. + 1. Grant of Additional Permission. + You have permission to propagate a work of Target Code formed by combining + the Runtime Library with Independent Modules, even if such propagation + would otherwise violate the terms of GPLv3, provided that all Target Code + was generated by Eligible Compilation Processes. You may then convey such a + combination under terms of your choice, consistent with the licensing of + the Independent Modules. + 2. No Weakening of GCC Copyleft. + The availability of this Exception does not imply any general presumption + that third-party software is unaffected by the copyleft requirements of the + license of GCC. +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + GCC RUNTIME LIBRARY EXCEPTION Version 3.1, 31 March 2009 @@ -69,4 +157,4 @@ consistent with the licensing of the Independent Modules. The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft -requirements of the license of GCC. +requirements of the license of GCC. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gcc-exception-3.1.yml b/src/licensedcode/data/licenses/gcc-exception-3.1.yml deleted file mode 100644 index 959e0135c47..00000000000 --- a/src/licensedcode/data/licenses/gcc-exception-3.1.yml +++ /dev/null @@ -1,85 +0,0 @@ -key: gcc-exception-3.1 -short_name: GCC Runtime Library Exception v3.1 -name: GCC Runtime Library Exception v3.1 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gcc-exception-3.1.html -is_exception: yes -spdx_license_key: GCC-exception-3.1 -text_urls: - - http://www.gnu.org/licenses/gcc-exception-3.1.html -faq_url: http://www.gnu.org/licenses/gcc-exception-3.1-faq.html -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt -standard_notice: | - 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 . - GCC RUNTIME LIBRARY EXCEPTION - Version 3.1, 31 March 2009 - Copyright © 2009 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies of this - license document, but changing it is not allowed. - This GCC Runtime Library Exception ("Exception") is an additional - permission under section 7 of the GNU General Public License, version 3 - ("GPLv3"). It applies to a given file (the "Runtime Library") that bears a - notice placed by the copyright holder of the file stating that the file is - governed by GPLv3 along with this Exception. - When you use GCC to compile a program, GCC may combine portions of certain - GCC header files and runtime libraries with the compiled program. The - purpose of this Exception is to allow compilation of non-GPL (including - proprietary) programs to use, in this way, the header files and runtime - libraries covered by this Exception. - 0. Definitions. - A file is an "Independent Module" if it either requires the Runtime Library - for execution after a Compilation Process, or makes use of an interface - provided by the Runtime Library, but is not otherwise based on the Runtime - Library. - "GCC" means a version of the GNU Compiler Collection, with or without - modifications, governed by version 3 (or a specified later version) of the - GNU General Public License (GPL) with the option of using any subsequent - versions published by the FSF. - "GPL-compatible Software" is software whose conditions of propagation, - modification and use would permit combination with GCC in accord with the - license of GCC. - "Target Code" refers to output from any compiler for a real or virtual - target processor architecture, in executable form or suitable for input to - an assembler, loader, linker and/or execution phase. Notwithstanding that, - Target Code does not include data in any format that is used as a compiler - intermediate representation, or used for producing a compiler intermediate - representation. - The "Compilation Process" transforms code entirely represented in non- - intermediate languages designed for human-written code, and/or in Java - Virtual Machine byte code, into Target Code. Thus, for example, use of - source code generators and preprocessors need not be considered part of the - Compilation Process, since the Compilation Process can be understood as - starting with the output of the generators or preprocessors. - A Compilation Process is "Eligible" if it is done using GCC, alone or with - other GPL-compatible software, or if it is done without using any work - based on GCC. For example, using non-GPL-compatible Software to optimize - any GCC intermediate representations would not qualify as an Eligible - Compilation Process. - 1. Grant of Additional Permission. - You have permission to propagate a work of Target Code formed by combining - the Runtime Library with Independent Modules, even if such propagation - would otherwise violate the terms of GPLv3, provided that all Target Code - was generated by Eligible Compilation Processes. You may then convey such a - combination under terms of your choice, consistent with the licensing of - the Independent Modules. - 2. No Weakening of GCC Copyleft. - The availability of this Exception does not imply any general presumption - that third-party software is unaffected by the copyleft requirements of the - license of GCC. -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/licenses/gcc-linking-exception-2.0.LICENSE b/src/licensedcode/data/licenses/gcc-linking-exception-2.0.LICENSE index 3b7e1a884a6..b4f09e94910 100644 --- a/src/licensedcode/data/licenses/gcc-linking-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/gcc-linking-exception-2.0.LICENSE @@ -1,3 +1,36 @@ +--- +key: gcc-linking-exception-2.0 +short_name: GCC Linking exception to GPL 2.0 or later +name: GCC Runtime Library exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: GCC-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10 +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + GCC Linking Exception + In addition to the permissions in the GNU General Public License, the Free + Software Foundation gives you unlimited permission to link the compiled + version of this file into combinations with other programs, and to + distribute those combinations without any restriction coming from the use + of this file. (The General Public License restrictions do apply in other + respects; for example, they cover modification of the file, and + distribution when not linked into a combine executable. +--- + GCC Linking Exception In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version diff --git a/src/licensedcode/data/licenses/gcc-linking-exception-2.0.yml b/src/licensedcode/data/licenses/gcc-linking-exception-2.0.yml deleted file mode 100644 index b09f9c14b14..00000000000 --- a/src/licensedcode/data/licenses/gcc-linking-exception-2.0.yml +++ /dev/null @@ -1,30 +0,0 @@ -key: gcc-linking-exception-2.0 -short_name: GCC Linking exception to GPL 2.0 or later -name: GCC Runtime Library exception to GPL 2.0 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: GCC-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10 -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - GCC Linking Exception - In addition to the permissions in the GNU General Public License, the Free - Software Foundation gives you unlimited permission to link the compiled - version of this file into combinations with other programs, and to - distribute those combinations without any restriction coming from the use - of this file. (The General Public License restrictions do apply in other - respects; for example, they cover modification of the file, and - distribution when not linked into a combine executable. diff --git a/src/licensedcode/data/licenses/gcel-2022.LICENSE b/src/licensedcode/data/licenses/gcel-2022.LICENSE index 197091a76ed..7bdf22f8039 100644 --- a/src/licensedcode/data/licenses/gcel-2022.LICENSE +++ b/src/licensedcode/data/licenses/gcel-2022.LICENSE @@ -1,3 +1,18 @@ +--- +key: gcel-2022 +short_name: GCEL 2022 +name: GridGain Community Edition License 2022 +category: Free Restricted +owner: GridGain Systems +homepage_url: https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license +spdx_license_key: LicenseRef-scancode-gcel-2022 +other_urls: + - https://commonsclause.com/ +ignorable_urls: + - https://commonsclause.com/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + GridGain Community Edition License ** TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/src/licensedcode/data/licenses/gcel-2022.yml b/src/licensedcode/data/licenses/gcel-2022.yml deleted file mode 100644 index 50abbf051a9..00000000000 --- a/src/licensedcode/data/licenses/gcel-2022.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: gcel-2022 -short_name: GCEL 2022 -name: GridGain Community Edition License 2022 -category: Free Restricted -owner: GridGain Systems -homepage_url: https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license -spdx_license_key: LicenseRef-scancode-gcel-2022 -other_urls: - - https://commonsclause.com/ -ignorable_urls: - - https://commonsclause.com/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/licenses/gco-v3.0.LICENSE b/src/licensedcode/data/licenses/gco-v3.0.LICENSE index 1fd676f1995..c04732fcd10 100644 --- a/src/licensedcode/data/licenses/gco-v3.0.LICENSE +++ b/src/licensedcode/data/licenses/gco-v3.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: gco-v3.0 +short_name: GCO-v3.0 +name: GCO-v3.0 +category: Proprietary Free +owner: Nuno Subtil +homepage_url: https://github.com/nsubtil/gco-v3.0/blob/master/GCO_README.TXT +spdx_license_key: LicenseRef-scancode-gco-v3.0 +--- + This software and its modifications can be used and distributed for research purposes only. Publications resulting from use of this code must cite publications according to the rules given above. Only diff --git a/src/licensedcode/data/licenses/gco-v3.0.yml b/src/licensedcode/data/licenses/gco-v3.0.yml deleted file mode 100644 index 37fd97083dc..00000000000 --- a/src/licensedcode/data/licenses/gco-v3.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: gco-v3.0 -short_name: GCO-v3.0 -name: GCO-v3.0 -category: Proprietary Free -owner: Nuno Subtil -homepage_url: https://github.com/nsubtil/gco-v3.0/blob/master/GCO_README.TXT -spdx_license_key: LicenseRef-scancode-gco-v3.0 diff --git a/src/licensedcode/data/licenses/gdcl.LICENSE b/src/licensedcode/data/licenses/gdcl.LICENSE index 253b102e29f..8a4f68431cc 100644 --- a/src/licensedcode/data/licenses/gdcl.LICENSE +++ b/src/licensedcode/data/licenses/gdcl.LICENSE @@ -1,2 +1,14 @@ +--- +key: gdcl +short_name: GDCL License +name: GDCL License +category: Permissive +owner: Geraint Davies Consulting Ltd +homepage_url: http://www.gdcl.co.uk/ +spdx_license_key: LicenseRef-scancode-gdcl +other_urls: + - http://www.gdcl.co.uk +--- + You are free to re-use this as the basis for your own filter development, -provided you retain this copyright notice in the source. +provided you retain this copyright notice in the source. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gdcl.yml b/src/licensedcode/data/licenses/gdcl.yml deleted file mode 100644 index ba06231cf4c..00000000000 --- a/src/licensedcode/data/licenses/gdcl.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gdcl -short_name: GDCL License -name: GDCL License -category: Permissive -owner: Geraint Davies Consulting Ltd -homepage_url: http://www.gdcl.co.uk/ -spdx_license_key: LicenseRef-scancode-gdcl -other_urls: - - http://www.gdcl.co.uk diff --git a/src/licensedcode/data/licenses/generic-cla.LICENSE b/src/licensedcode/data/licenses/generic-cla.LICENSE new file mode 100644 index 00000000000..df6110f147f --- /dev/null +++ b/src/licensedcode/data/licenses/generic-cla.LICENSE @@ -0,0 +1,10 @@ +--- +key: generic-cla +is_generic: yes +short_name: Generic CLA +name: Prior Generic Contributor License Agreement +category: Unstated License +owner: Unspecified +spdx_license_key: LicenseRef-scancode-generic-cla +notes: this is a generic license for CLAs. +--- diff --git a/src/licensedcode/data/licenses/generic-cla.yml b/src/licensedcode/data/licenses/generic-cla.yml deleted file mode 100644 index 71e5bd4b6a2..00000000000 --- a/src/licensedcode/data/licenses/generic-cla.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: generic-cla -short_name: Generic CLA -name: Prior Generic Contributor License Agreement -category: Unstated License -owner: Unspecified -notes: this is a generic license for CLAs. -is_generic: yes -spdx_license_key: LicenseRef-scancode-generic-cla diff --git a/src/licensedcode/data/licenses/generic-exception.LICENSE b/src/licensedcode/data/licenses/generic-exception.LICENSE new file mode 100644 index 00000000000..35dfeab187e --- /dev/null +++ b/src/licensedcode/data/licenses/generic-exception.LICENSE @@ -0,0 +1,13 @@ +--- +key: generic-exception +short_name: Generic Exception Notice +name: Generic Exception Notice +category: Unstated License +owner: Unspecified +is_exception: yes +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-exception +notes: This is a generic license exception notice where the exception text has not been named + and published publicly. Actual terms are most commonly related to rare, one-off + extra permission to the A/L/GPL licenses. +--- diff --git a/src/licensedcode/data/licenses/generic-exception.yml b/src/licensedcode/data/licenses/generic-exception.yml deleted file mode 100644 index c36dda48d49..00000000000 --- a/src/licensedcode/data/licenses/generic-exception.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: generic-exception -short_name: Generic Exception Notice -name: Generic Exception Notice -category: Unstated License -owner: Unspecified -notes: This is a generic license exception notice where the exception text has not been named - and published publicly. Actual terms are most commonly related to rare, one-off extra permission - to the A/L/GPL licenses. -is_exception: yes -is_generic: yes -spdx_license_key: LicenseRef-scancode-generic-exception diff --git a/src/licensedcode/data/licenses/generic-export-compliance.LICENSE b/src/licensedcode/data/licenses/generic-export-compliance.LICENSE new file mode 100644 index 00000000000..dedfed6010c --- /dev/null +++ b/src/licensedcode/data/licenses/generic-export-compliance.LICENSE @@ -0,0 +1,11 @@ +--- +key: generic-export-compliance +short_name: Generic Export Compliance Notice +name: Generic Export Compliance Notice +category: Unstated License +owner: Unspecified +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-export-compliance +notes: This is a generic export compliance notice where the text has not been named and + published publicly. Actual terms are most commonly related to cryptography. +--- diff --git a/src/licensedcode/data/licenses/generic-export-compliance.yml b/src/licensedcode/data/licenses/generic-export-compliance.yml deleted file mode 100644 index 2f05f24a6e0..00000000000 --- a/src/licensedcode/data/licenses/generic-export-compliance.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: generic-export-compliance -short_name: Generic Export Compliance Notice -name: Generic Export Compliance Notice -category: Unstated License -owner: Unspecified -notes: This is a generic export compliance notice where the text has not been named and published - publicly. Actual terms are most commonly related to cryptography. -is_generic: yes -spdx_license_key: LicenseRef-scancode-generic-export-compliance diff --git a/src/licensedcode/data/licenses/generic-tos.LICENSE b/src/licensedcode/data/licenses/generic-tos.LICENSE new file mode 100644 index 00000000000..e8eb363bb52 --- /dev/null +++ b/src/licensedcode/data/licenses/generic-tos.LICENSE @@ -0,0 +1,11 @@ +--- +key: generic-tos +short_name: Generic ToS +name: Generic Terms of Service +category: Unstated License +owner: Unspecified +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-tos +notes: This is a generic license for Terms of Service such as privacy terms and and other + ToS-like agreements found in software that are not directly licenses. +--- diff --git a/src/licensedcode/data/licenses/generic-tos.yml b/src/licensedcode/data/licenses/generic-tos.yml deleted file mode 100644 index 85feda6bcdc..00000000000 --- a/src/licensedcode/data/licenses/generic-tos.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: generic-tos -short_name: Generic ToS -name: Generic Terms of Service -category: Unstated License -owner: Unspecified -notes: This is a generic license for Terms of Service such as privacy terms and and other ToS-like - agreements found in software that are not directly licenses. -is_generic: yes -spdx_license_key: LicenseRef-scancode-generic-tos diff --git a/src/licensedcode/data/licenses/generic-trademark.LICENSE b/src/licensedcode/data/licenses/generic-trademark.LICENSE new file mode 100644 index 00000000000..3afd9d512f4 --- /dev/null +++ b/src/licensedcode/data/licenses/generic-trademark.LICENSE @@ -0,0 +1,14 @@ +--- +key: generic-trademark +short_name: Generic Trademark Notice +name: Generic Trademark and Name Protection Notice +category: Unstated License +owner: Unspecified +is_generic: yes +spdx_license_key: LicenseRef-scancode-generic-trademark +other_spdx_license_keys: + - LicenseRef-scancode-trademark-notice +notes: This is a generic Trademark and name realted notice. Actual terms are most commonly + related to name use restrictions and no endorsement. This should be used only for rare one-off + notices. +--- diff --git a/src/licensedcode/data/licenses/generic-trademark.yml b/src/licensedcode/data/licenses/generic-trademark.yml deleted file mode 100644 index f9a1dd52365..00000000000 --- a/src/licensedcode/data/licenses/generic-trademark.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: generic-trademark -short_name: Generic Trademark Notice -name: Generic Trademark and Name Protection Notice -category: Unstated License -owner: Unspecified -notes: This is a generic Trademark and name realted notice. Actual terms are most commonly related - to name use restrictions and no endorsement. This should be used only for rare one-off notices. -is_generic: yes -spdx_license_key: LicenseRef-scancode-generic-trademark -other_spdx_license_keys: - - LicenseRef-scancode-trademark-notice diff --git a/src/licensedcode/data/licenses/genivia-gsoap.LICENSE b/src/licensedcode/data/licenses/genivia-gsoap.LICENSE index cbe501bbdec..aff91026fb2 100644 --- a/src/licensedcode/data/licenses/genivia-gsoap.LICENSE +++ b/src/licensedcode/data/licenses/genivia-gsoap.LICENSE @@ -1,3 +1,19 @@ +--- +key: genivia-gsoap +short_name: Genivia Proprietary +name: Genivia gSOAP Commercial Licensing +category: Commercial +owner: Genivia +homepage_url: http://www.genivia.com/Products/gsoap/contract.html +spdx_license_key: LicenseRef-scancode-genivia-gsoap +text_urls: + - http://www.genivia.com/Products/gsoap/contract.html +other_urls: + - sales@genivia.com +ignorable_emails: + - sales@genivia.com +--- + Commercial Licensing and Support Contracting Our software products are developed with great care and passed numerous industry diff --git a/src/licensedcode/data/licenses/genivia-gsoap.yml b/src/licensedcode/data/licenses/genivia-gsoap.yml deleted file mode 100644 index 33fbf8b25a3..00000000000 --- a/src/licensedcode/data/licenses/genivia-gsoap.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: genivia-gsoap -short_name: Genivia Proprietary -name: Genivia gSOAP Commercial Licensing -category: Commercial -owner: Genivia -homepage_url: http://www.genivia.com/Products/gsoap/contract.html -spdx_license_key: LicenseRef-scancode-genivia-gsoap -text_urls: - - http://www.genivia.com/Products/gsoap/contract.html -other_urls: - - sales@genivia.com -ignorable_emails: - - sales@genivia.com diff --git a/src/licensedcode/data/licenses/genode-agpl-3.0-exception.LICENSE b/src/licensedcode/data/licenses/genode-agpl-3.0-exception.LICENSE index 256a1e7f1ab..db9a3e08ad7 100644 --- a/src/licensedcode/data/licenses/genode-agpl-3.0-exception.LICENSE +++ b/src/licensedcode/data/licenses/genode-agpl-3.0-exception.LICENSE @@ -1,3 +1,20 @@ +--- +key: genode-agpl-3.0-exception +short_name: Genode exception to AGPL 3.0 +name: Genode exception to AGPL 3.0 +category: Copyleft Limited +owner: Genode Labs +homepage_url: https://genode.org/about/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-genode-agpl-3.0-exception +text_urls: + - https://github.com/genodelabs/genode/blob/e8acc5eabc447fb5da01d109d96988cd21962c56/LICENSE + - https://github.com/genodelabs/genode/blob/master/LICENSE +ignorable_urls: + - https://opensource.org/licenses + - https://www.gnu.org/licenses/license-list.en.html +--- + Linking exception clause @@ -32,5 +49,4 @@ wish to do so, delete this exception statement from your version. [1] https://opensource.org/licenses - [2] https://www.gnu.org/licenses/license-list.en.html - + [2] https://www.gnu.org/licenses/license-list.en.html \ No newline at end of file diff --git a/src/licensedcode/data/licenses/genode-agpl-3.0-exception.yml b/src/licensedcode/data/licenses/genode-agpl-3.0-exception.yml deleted file mode 100644 index f29030076b3..00000000000 --- a/src/licensedcode/data/licenses/genode-agpl-3.0-exception.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: genode-agpl-3.0-exception -short_name: Genode exception to AGPL 3.0 -name: Genode exception to AGPL 3.0 -category: Copyleft Limited -owner: Genode Labs -homepage_url: https://genode.org/about/LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-genode-agpl-3.0-exception -text_urls: - - https://github.com/genodelabs/genode/blob/e8acc5eabc447fb5da01d109d96988cd21962c56/LICENSE - - https://github.com/genodelabs/genode/blob/master/LICENSE -ignorable_urls: - - https://opensource.org/licenses - - https://www.gnu.org/licenses/license-list.en.html diff --git a/src/licensedcode/data/licenses/geoff-kuenning-1993.LICENSE b/src/licensedcode/data/licenses/geoff-kuenning-1993.LICENSE index 48a9e7afe72..49444f1a1ba 100644 --- a/src/licensedcode/data/licenses/geoff-kuenning-1993.LICENSE +++ b/src/licensedcode/data/licenses/geoff-kuenning-1993.LICENSE @@ -1,3 +1,19 @@ +--- +key: geoff-kuenning-1993 +short_name: Geoff Kuenning License 1993 +name: Geoff Kuenning License 1993 +category: Permissive +owner: Geoff Kuenning +homepage_url: https://www.hitachi.co.jp/Prod/comp/soft1/jp1/trial/trialv12/sla/license/373.txt +spdx_license_key: LicenseRef-scancode-geoff-kuenning-1993 +ignorable_copyrights: + - Copyright 1993, Geoff Kuenning, Granada Hills, CA +ignorable_holders: + - Geoff Kuenning, Granada Hills, CA +ignorable_authors: + - Geoff Kuenning +--- + Copyright 1993, Geoff Kuenning, Granada Hills, CA All rights reserved. diff --git a/src/licensedcode/data/licenses/geoff-kuenning-1993.yml b/src/licensedcode/data/licenses/geoff-kuenning-1993.yml deleted file mode 100644 index 1339e685ea8..00000000000 --- a/src/licensedcode/data/licenses/geoff-kuenning-1993.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: geoff-kuenning-1993 -short_name: Geoff Kuenning License 1993 -name: Geoff Kuenning License 1993 -category: Permissive -owner: Geoff Kuenning -homepage_url: https://www.hitachi.co.jp/Prod/comp/soft1/jp1/trial/trialv12/sla/license/373.txt -spdx_license_key: LicenseRef-scancode-geoff-kuenning-1993 -ignorable_copyrights: - - Copyright 1993, Geoff Kuenning, Granada Hills, CA -ignorable_holders: - - Geoff Kuenning, Granada Hills, CA -ignorable_authors: - - Geoff Kuenning diff --git a/src/licensedcode/data/licenses/geoserver-exception-2.0-plus.LICENSE b/src/licensedcode/data/licenses/geoserver-exception-2.0-plus.LICENSE index 3f47c68830f..a511b5774ef 100644 --- a/src/licensedcode/data/licenses/geoserver-exception-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/geoserver-exception-2.0-plus.LICENSE @@ -1,3 +1,49 @@ +--- +key: geoserver-exception-2.0-plus +short_name: GeoServer exception to GPL 2.0 or later +name: GeoServer exception to GPL 2.0 or later +category: Copyleft Limited +owner: Open Source Geospatial Foundation +homepage_url: http://geoserver.org/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-geoserver-exception-2.0-plus +text_urls: + - https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip +other_urls: + - http://geoserver.org/ + - http://openplans.org + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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 (collectively, "GPL"). + As an exception to the terms of the GPL, you may copy, modify, + propagate, and distribute a work formed by combining GeoServer with the + Eclipse Libraries, or a work derivative of such a combination, even if + such copying, modification, propagation, or distribution would otherwise + violate the terms of the GPL. Nothing in this exception exempts you from + complying with the GPL in all respects for all of the code used other + than the Eclipse Libraries. You may include this exception and its grant + of permissions when you distribute GeoServer. Inclusion of this notice + with such a distribution constitutes a grant of such permissions. If + you do not wish to grant these permissions, remove this paragraph from + your distribution. "GeoServer" means the GeoServer software licensed + under version 2 or any later version of the GPL, or a work based on such + software and licensed under the GPL. "Eclipse Libraries" means Eclipse + Modeling Framework Project and XML Schema Definition software + distributed by the Eclipse Foundation and licensed under the Eclipse + Public License Version 1.0 ("EPL"), or a work based on such software and + licensed under the EPL. + 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 +--- + As an exception to the terms of the GPL, you may copy, modify, propagate, and distribute a work formed by combining GeoServer with the Eclipse Libraries, or a work derivative of such a combination, even if diff --git a/src/licensedcode/data/licenses/geoserver-exception-2.0-plus.yml b/src/licensedcode/data/licenses/geoserver-exception-2.0-plus.yml deleted file mode 100644 index b715255a464..00000000000 --- a/src/licensedcode/data/licenses/geoserver-exception-2.0-plus.yml +++ /dev/null @@ -1,43 +0,0 @@ -key: geoserver-exception-2.0-plus -short_name: GeoServer exception to GPL 2.0 or later -name: GeoServer exception to GPL 2.0 or later -category: Copyleft Limited -owner: Open Source Geospatial Foundation -homepage_url: http://geoserver.org/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-geoserver-exception-2.0-plus -text_urls: - - https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip -other_urls: - - http://geoserver.org/ - - http://openplans.org - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - 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 (collectively, "GPL"). - As an exception to the terms of the GPL, you may copy, modify, - propagate, and distribute a work formed by combining GeoServer with the - Eclipse Libraries, or a work derivative of such a combination, even if - such copying, modification, propagation, or distribution would otherwise - violate the terms of the GPL. Nothing in this exception exempts you from - complying with the GPL in all respects for all of the code used other - than the Eclipse Libraries. You may include this exception and its grant - of permissions when you distribute GeoServer. Inclusion of this notice - with such a distribution constitutes a grant of such permissions. If - you do not wish to grant these permissions, remove this paragraph from - your distribution. "GeoServer" means the GeoServer software licensed - under version 2 or any later version of the GPL, or a work based on such - software and licensed under the GPL. "Eclipse Libraries" means Eclipse - Modeling Framework Project and XML Schema Definition software - distributed by the Eclipse Foundation and licensed under the Eclipse - Public License Version 1.0 ("EPL"), or a work based on such software and - licensed under the EPL. - 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 diff --git a/src/licensedcode/data/licenses/gfdl-1.1-invariants-only.LICENSE b/src/licensedcode/data/licenses/gfdl-1.1-invariants-only.LICENSE index 8169311f7ea..329a62fc42f 100644 --- a/src/licensedcode/data/licenses/gfdl-1.1-invariants-only.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.1-invariants-only.LICENSE @@ -1,3 +1,39 @@ +--- +key: gfdl-1.1-invariants-only +short_name: GFDL-1.1-invariants-only +name: GNU Free Documentation License v1.1 only - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: | + Per SPDX.org, this license was released March 2000 + The identifier GFDL-1.1-invariants-only should only be used when + there are Invariant Sections, Front-Cover Texts or Back-Cover Texts. + See GFDL-1.1-only and GFDL-1.1-no-invariants-only for alternatives. +spdx_license_key: GFDL-1.1-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +standard_notice: | + 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". +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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 diff --git a/src/licensedcode/data/licenses/gfdl-1.1-invariants-only.yml b/src/licensedcode/data/licenses/gfdl-1.1-invariants-only.yml deleted file mode 100644 index 81aa4f7c4b6..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.1-invariants-only.yml +++ /dev/null @@ -1,33 +0,0 @@ -key: gfdl-1.1-invariants-only -short_name: GFDL-1.1-invariants-only -name: GNU Free Documentation License v1.1 only - invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -notes: | - Per SPDX.org, this license was released March 2000 - The identifier GFDL-1.1-invariants-only should only be used when - there are Invariant Sections, Front-Cover Texts or Back-Cover Texts. - See GFDL-1.1-only and GFDL-1.1-no-invariants-only for alternatives. -spdx_license_key: GFDL-1.1-invariants-only -text_urls: - - http://www.gnu.org/licenses/fdl-1.1.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt - - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html - - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -minimum_coverage: 99 -standard_notice: | - 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". -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.1-invariants-or-later.LICENSE b/src/licensedcode/data/licenses/gfdl-1.1-invariants-or-later.LICENSE index 01ace45013b..00f156a2492 100644 --- a/src/licensedcode/data/licenses/gfdl-1.1-invariants-or-later.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.1-invariants-or-later.LICENSE @@ -1,3 +1,41 @@ +--- +key: gfdl-1.1-invariants-or-later +short_name: GFDL-1.1-invariants-or-later +name: GNU Free Documentation License v1.1 or later - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: | + Per SPDX.org, this license was released March 2000 + The identifier GFDL-1.1-invariants-or-later should only be used when + there are Invariant Sections, Front-Cover Texts or Back-Cover Texts. + See GFDL-1.1-or-later and GFDL-1.1-no-invariants-or-later for + alternatives. +spdx_license_key: GFDL-1.1-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +standard_notice: | + 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 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". +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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; diff --git a/src/licensedcode/data/licenses/gfdl-1.1-invariants-or-later.yml b/src/licensedcode/data/licenses/gfdl-1.1-invariants-or-later.yml deleted file mode 100644 index e7b887feb9d..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.1-invariants-or-later.yml +++ /dev/null @@ -1,35 +0,0 @@ -key: gfdl-1.1-invariants-or-later -short_name: GFDL-1.1-invariants-or-later -name: GNU Free Documentation License v1.1 or later - invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -notes: | - Per SPDX.org, this license was released March 2000 - The identifier GFDL-1.1-invariants-or-later should only be used when - there are Invariant Sections, Front-Cover Texts or Back-Cover Texts. - See GFDL-1.1-or-later and GFDL-1.1-no-invariants-or-later for - alternatives. -spdx_license_key: GFDL-1.1-invariants-or-later -text_urls: - - http://www.gnu.org/licenses/fdl-1.1.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt - - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html - - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -minimum_coverage: 99 -standard_notice: | - 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 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". -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-only.LICENSE b/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-only.LICENSE index 17b47523645..703cea3762d 100644 --- a/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-only.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-only.LICENSE @@ -1,3 +1,38 @@ +--- +key: gfdl-1.1-no-invariants-only +short_name: GFDL-1.1-no-invariants-only +name: GNU Free Documentation License v1.1 only - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: | + Per SPDX.org, this license was released March 2000 + The identifier GFDL-1.1-no-invariants-only should only be used when + there are no Invariant Sections, Front-Cover Texts or Back-Cover Texts. + See GFDL-1.1-only and GFDL-1.1-invariants-only for alternatives. +spdx_license_key: GFDL-1.1-no-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +standard_notice: | + 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, with no Front-Cover + Texts, and with no Back-Cover Texts. A copy of the license is included in + the section entitled "GNU Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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, with no Front-Cover Texts, diff --git a/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-only.yml b/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-only.yml deleted file mode 100644 index 81a7b367a7e..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-only.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: gfdl-1.1-no-invariants-only -short_name: GFDL-1.1-no-invariants-only -name: GNU Free Documentation License v1.1 only - no invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -notes: | - Per SPDX.org, this license was released March 2000 - The identifier GFDL-1.1-no-invariants-only should only be used when - there are no Invariant Sections, Front-Cover Texts or Back-Cover Texts. - See GFDL-1.1-only and GFDL-1.1-invariants-only for alternatives. -spdx_license_key: GFDL-1.1-no-invariants-only -text_urls: - - http://www.gnu.org/licenses/fdl-1.1.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt - - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html - - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -minimum_coverage: 99 -standard_notice: | - 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, with no Front-Cover - Texts, and with no Back-Cover Texts. A copy of the license is included in - the section entitled "GNU Free Documentation License". -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-or-later.LICENSE b/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-or-later.LICENSE index a73266e1e5c..7de506c18ad 100644 --- a/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-or-later.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-or-later.LICENSE @@ -1,3 +1,39 @@ +--- +key: gfdl-1.1-no-invariants-or-later +short_name: GFDL-1.1-no-invariants-or-later +name: GNU Free Documentation License v1.1 or later - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: | + Per SPDX.org, this license was released March 2000 + The identifier GFDL-1.1-no-invariants-or-later should only be used when + there are no Invariant Sections, Front-Cover Texts or Back-Cover Texts. + See GFDL-1.1-or-later and GFDL-1.1-invariants-or-later for alternatives. +spdx_license_key: GFDL-1.1-no-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +standard_notice: | + Copyright (c) YEAR YOUR NAME . 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, with no Front-Cover Texts, and with + no Back-Cover Texts. A copy of the license is included in the section + entitled "GNU Free Documentation License". +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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 diff --git a/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-or-later.yml b/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-or-later.yml deleted file mode 100644 index 7ae5cd2cdba..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.1-no-invariants-or-later.yml +++ /dev/null @@ -1,33 +0,0 @@ -key: gfdl-1.1-no-invariants-or-later -short_name: GFDL-1.1-no-invariants-or-later -name: GNU Free Documentation License v1.1 or later - no invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -notes: | - Per SPDX.org, this license was released March 2000 - The identifier GFDL-1.1-no-invariants-or-later should only be used when - there are no Invariant Sections, Front-Cover Texts or Back-Cover Texts. - See GFDL-1.1-or-later and GFDL-1.1-invariants-or-later for alternatives. -spdx_license_key: GFDL-1.1-no-invariants-or-later -text_urls: - - http://www.gnu.org/licenses/fdl-1.1.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt - - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html - - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -minimum_coverage: 99 -standard_notice: | - Copyright (c) YEAR YOUR NAME . 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, with no Front-Cover Texts, and with - no Back-Cover Texts. A copy of the license is included in the section - entitled "GNU Free Documentation License". -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.1-plus.LICENSE b/src/licensedcode/data/licenses/gfdl-1.1-plus.LICENSE index d531373cd4a..5bb9d6c606c 100644 --- a/src/licensedcode/data/licenses/gfdl-1.1-plus.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.1-plus.LICENSE @@ -1,3 +1,30 @@ +--- +key: gfdl-1.1-plus +short_name: GFDL 1.1 or later +name: GNU Free Documentation License v1.1 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: Per SPDX.org, this license was released March 2000 +spdx_license_key: GFDL-1.1-or-later +other_spdx_license_keys: + - GFDL-1.1+ +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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. diff --git a/src/licensedcode/data/licenses/gfdl-1.1-plus.yml b/src/licensedcode/data/licenses/gfdl-1.1-plus.yml deleted file mode 100644 index 6fda498399c..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.1-plus.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: gfdl-1.1-plus -short_name: GFDL 1.1 or later -name: GNU Free Documentation License v1.1 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -notes: Per SPDX.org, this license was released March 2000 -spdx_license_key: GFDL-1.1-or-later -other_spdx_license_keys: - - GFDL-1.1+ -text_urls: - - http://www.gnu.org/licenses/fdl-1.1.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt - - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html - - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.1.LICENSE b/src/licensedcode/data/licenses/gfdl-1.1.LICENSE index bc03c40836e..0bb8a6fbb64 100644 --- a/src/licensedcode/data/licenses/gfdl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.1.LICENSE @@ -1,3 +1,30 @@ +--- +key: gfdl-1.1 +short_name: GFDL 1.1 +name: GNU Free Documentation License v1.1 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +notes: Per SPDX.org, this license was released March 2000 +spdx_license_key: GFDL-1.1-only +other_spdx_license_keys: + - GFDL-1.1 +text_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.1, March 2000 diff --git a/src/licensedcode/data/licenses/gfdl-1.1.yml b/src/licensedcode/data/licenses/gfdl-1.1.yml deleted file mode 100644 index 98bf3755c70..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.1.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: gfdl-1.1 -short_name: GFDL 1.1 -name: GNU Free Documentation License v1.1 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -notes: Per SPDX.org, this license was released March 2000 -spdx_license_key: GFDL-1.1-only -other_spdx_license_keys: - - GFDL-1.1 -text_urls: - - http://www.gnu.org/licenses/fdl-1.1.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt - - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html - - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt -minimum_coverage: 50 -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.2-invariants-only.LICENSE b/src/licensedcode/data/licenses/gfdl-1.2-invariants-only.LICENSE index 345ae7561ce..3509845eced 100644 --- a/src/licensedcode/data/licenses/gfdl-1.2-invariants-only.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.2-invariants-only.LICENSE @@ -1,3 +1,34 @@ +--- +key: gfdl-1.2-invariants-only +short_name: GFDL-1.2-invariants-only +name: GNU Free Documentation License v1.2 only - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +standard_notice: | + 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". +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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 , @@ -401,4 +432,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.2-invariants-only.yml b/src/licensedcode/data/licenses/gfdl-1.2-invariants-only.yml deleted file mode 100644 index 6201a0c5366..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.2-invariants-only.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: gfdl-1.2-invariants-only -short_name: GFDL-1.2-invariants-only -name: GNU Free Documentation License v1.2 only - invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -notes: Per SPDX.org, this license was released November 2002 -spdx_license_key: GFDL-1.2-invariants-only -text_urls: - - http://www.gnu.org/licenses/fdl-1.2.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt - - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -minimum_coverage: 99 -standard_notice: | - 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". -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.2-invariants-or-later.LICENSE b/src/licensedcode/data/licenses/gfdl-1.2-invariants-or-later.LICENSE index c7c5acf33dc..70ef0fa5d56 100644 --- a/src/licensedcode/data/licenses/gfdl-1.2-invariants-or-later.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.2-invariants-or-later.LICENSE @@ -1,3 +1,35 @@ +--- +key: gfdl-1.2-invariants-or-later +short_name: GFDL-1.2-invariants-or-later +name: GNU Free Documentation License v1.2 or later - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +standard_notice: | + 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". +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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 @@ -402,4 +434,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.2-invariants-or-later.yml b/src/licensedcode/data/licenses/gfdl-1.2-invariants-or-later.yml deleted file mode 100644 index 86721e456d3..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.2-invariants-or-later.yml +++ /dev/null @@ -1,29 +0,0 @@ -key: gfdl-1.2-invariants-or-later -short_name: GFDL-1.2-invariants-or-later -name: GNU Free Documentation License v1.2 or later - invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -notes: Per SPDX.org, this license was released November 2002 -spdx_license_key: GFDL-1.2-invariants-or-later -text_urls: - - http://www.gnu.org/licenses/fdl-1.2.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt - - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -minimum_coverage: 99 -standard_notice: | - 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". -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-only.LICENSE b/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-only.LICENSE index 447e82232d2..c0c83ee1ea2 100644 --- a/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-only.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-only.LICENSE @@ -1,3 +1,33 @@ +--- +key: gfdl-1.2-no-invariants-only +short_name: GFDL-1.2-no-invariants-only +name: GNU Free Documentation License v1.2 only - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-no-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +standard_notice: | + 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". +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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 @@ -400,4 +430,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-only.yml b/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-only.yml deleted file mode 100644 index 1282cdd31ed..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-only.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: gfdl-1.2-no-invariants-only -short_name: GFDL-1.2-no-invariants-only -name: GNU Free Documentation License v1.2 only - no invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -notes: Per SPDX.org, this license was released November 2002 -spdx_license_key: GFDL-1.2-no-invariants-only -text_urls: - - http://www.gnu.org/licenses/fdl-1.2.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt - - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -minimum_coverage: 99 -standard_notice: | - 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". -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-or-later.LICENSE b/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-or-later.LICENSE index f59de637d07..0f53fce8efb 100644 --- a/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-or-later.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-or-later.LICENSE @@ -1,3 +1,34 @@ +--- +key: gfdl-1.2-no-invariants-or-later +short_name: GFDL-1.2-no-invariants-or-later +name: GNU Free Documentation License v1.2 or later - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-no-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +standard_notice: | + 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 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". +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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 @@ -401,4 +432,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-or-later.yml b/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-or-later.yml deleted file mode 100644 index 54ae3159f07..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.2-no-invariants-or-later.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: gfdl-1.2-no-invariants-or-later -short_name: GFDL-1.2-no-invariants-or-later -name: GNU Free Documentation License v1.2 or later - no invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -notes: Per SPDX.org, this license was released November 2002 -spdx_license_key: GFDL-1.2-no-invariants-or-later -text_urls: - - http://www.gnu.org/licenses/fdl-1.2.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt - - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -minimum_coverage: 99 -standard_notice: | - 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 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". -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.2-plus.LICENSE b/src/licensedcode/data/licenses/gfdl-1.2-plus.LICENSE index 91b8ecc8b3b..f8772ca54fa 100644 --- a/src/licensedcode/data/licenses/gfdl-1.2-plus.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.2-plus.LICENSE @@ -1,3 +1,29 @@ +--- +key: gfdl-1.2-plus +short_name: GFDL 1.2 or later +name: GNU Free Documentation License v1.2 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-or-later +other_spdx_license_keys: + - GFDL-1.2+ +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + 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; @@ -398,4 +424,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.2-plus.yml b/src/licensedcode/data/licenses/gfdl-1.2-plus.yml deleted file mode 100644 index 11efe4c060d..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.2-plus.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: gfdl-1.2-plus -short_name: GFDL 1.2 or later -name: GNU Free Documentation License v1.2 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -notes: Per SPDX.org, this license was released November 2002 -spdx_license_key: GFDL-1.2-or-later -other_spdx_license_keys: - - GFDL-1.2+ -text_urls: - - http://www.gnu.org/licenses/fdl-1.2.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt - - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.2.LICENSE b/src/licensedcode/data/licenses/gfdl-1.2.LICENSE index a988da5af14..78a4716891c 100644 --- a/src/licensedcode/data/licenses/gfdl-1.2.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.2.LICENSE @@ -1,3 +1,29 @@ +--- +key: gfdl-1.2 +short_name: GFDL 1.2 +name: GNU Free Documentation License v1.2 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +notes: Per SPDX.org, this license was released November 2002 +spdx_license_key: GFDL-1.2-only +other_spdx_license_keys: + - GFDL-1.2 +text_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +faq_url: http://www.fsf.org/licensing/licenses/fdl.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.2, November 2002 @@ -394,4 +420,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.2.yml b/src/licensedcode/data/licenses/gfdl-1.2.yml deleted file mode 100644 index a8fa9a9dbb9..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.2.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: gfdl-1.2 -short_name: GFDL 1.2 -name: GNU Free Documentation License v1.2 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -notes: Per SPDX.org, this license was released November 2002 -spdx_license_key: GFDL-1.2-only -other_spdx_license_keys: - - GFDL-1.2 -text_urls: - - http://www.gnu.org/licenses/fdl-1.2.txt -faq_url: http://www.fsf.org/licensing/licenses/fdl.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt - - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt -minimum_coverage: 50 -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.3-invariants-only.LICENSE b/src/licensedcode/data/licenses/gfdl-1.3-invariants-only.LICENSE index a719410cf80..0f96f633cf9 100644 --- a/src/licensedcode/data/licenses/gfdl-1.3-invariants-only.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.3-invariants-only.LICENSE @@ -1,3 +1,33 @@ +--- +key: gfdl-1.3-invariants-only +short_name: GFDL-1.3-invariants-only +name: GNU Free Documentation License v1.3 only - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.3; with 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". +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3; with with the Invariant Sections being LIST THEIR @@ -454,4 +484,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.3-invariants-only.yml b/src/licensedcode/data/licenses/gfdl-1.3-invariants-only.yml deleted file mode 100644 index 7fa26664fb3..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.3-invariants-only.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: gfdl-1.3-invariants-only -short_name: GFDL-1.3-invariants-only -name: GNU Free Documentation License v1.3 only - invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt -notes: Per SPDX.org, this license was released 3 November 2008. -spdx_license_key: GFDL-1.3-invariants-only -text_urls: - - http://www.gnu.org/licenses/fdl-1.3.txt -other_urls: - - https://www.gnu.org/licenses/fdl-1.3.txt -minimum_coverage: 99 -standard_notice: | - Permission is granted to copy, distribute - and/or modify this document under the terms of the GNU Free Documentation - License, Version 1.3; with 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". -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.3-invariants-or-later.LICENSE b/src/licensedcode/data/licenses/gfdl-1.3-invariants-or-later.LICENSE index af1f483cb09..93d78d762d6 100644 --- a/src/licensedcode/data/licenses/gfdl-1.3-invariants-or-later.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.3-invariants-or-later.LICENSE @@ -1,3 +1,34 @@ +--- +key: gfdl-1.3-invariants-or-later +short_name: GFDL-1.3-invariants-or-later +name: GNU Free Documentation License v1.3 or later - invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +standard_notice: | + 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". +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + 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 @@ -455,4 +486,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.3-invariants-or-later.yml b/src/licensedcode/data/licenses/gfdl-1.3-invariants-or-later.yml deleted file mode 100644 index 00198d608b5..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.3-invariants-or-later.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: gfdl-1.3-invariants-or-later -short_name: GFDL-1.3-invariants-or-later -name: GNU Free Documentation License v1.3 or later - invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt -notes: Per SPDX.org, this license was released 3 November 2008. -spdx_license_key: GFDL-1.3-invariants-or-later -text_urls: - - http://www.gnu.org/licenses/fdl-1.3.txt -other_urls: - - https://www.gnu.org/licenses/fdl-1.3.txt -minimum_coverage: 99 -standard_notice: | - 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". -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-only.LICENSE b/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-only.LICENSE index d704e28645f..b05e73058d5 100644 --- a/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-only.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-only.LICENSE @@ -1,3 +1,32 @@ +--- +key: gfdl-1.3-no-invariants-only +short_name: GFDL-1.3-no-invariants-only +name: GNU Free Documentation License v1.3 only - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-no-invariants-only +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +standard_notice: | + Permission is granted to copy, distribute + and/or modify this document under the terms of the GNU Free Documentation + License, Version 1.3; 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". +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3; with no Invariant Sections, no Front-Cover Texts, and @@ -453,4 +482,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-only.yml b/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-only.yml deleted file mode 100644 index a7369c30d50..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-only.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: gfdl-1.3-no-invariants-only -short_name: GFDL-1.3-no-invariants-only -name: GNU Free Documentation License v1.3 only - no invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt -notes: Per SPDX.org, this license was released 3 November 2008. -spdx_license_key: GFDL-1.3-no-invariants-only -text_urls: - - http://www.gnu.org/licenses/fdl-1.3.txt -other_urls: - - https://www.gnu.org/licenses/fdl-1.3.txt -minimum_coverage: 99 -standard_notice: | - Permission is granted to copy, distribute - and/or modify this document under the terms of the GNU Free Documentation - License, Version 1.3; 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". -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-or-later.LICENSE b/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-or-later.LICENSE index d03f10763ee..c7e7df2222f 100644 --- a/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-or-later.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-or-later.LICENSE @@ -1,3 +1,33 @@ +--- +key: gfdl-1.3-no-invariants-or-later +short_name: GFDL-1.3-no-invariants-or-later +name: GNU Free Documentation License v1.3 or later - no invariants +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-no-invariants-or-later +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +standard_notice: | + 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 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". +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + 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 @@ -454,4 +484,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-or-later.yml b/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-or-later.yml deleted file mode 100644 index 639a4c65c8b..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.3-no-invariants-or-later.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: gfdl-1.3-no-invariants-or-later -short_name: GFDL-1.3-no-invariants-or-later -name: GNU Free Documentation License v1.3 or later - no invariants -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt -notes: Per SPDX.org, this license was released 3 November 2008. -spdx_license_key: GFDL-1.3-no-invariants-or-later -text_urls: - - http://www.gnu.org/licenses/fdl-1.3.txt -other_urls: - - https://www.gnu.org/licenses/fdl-1.3.txt -minimum_coverage: 99 -standard_notice: | - 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 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". -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.3-plus.LICENSE b/src/licensedcode/data/licenses/gfdl-1.3-plus.LICENSE index dcb315c01dc..94ba3709368 100644 --- a/src/licensedcode/data/licenses/gfdl-1.3-plus.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.3-plus.LICENSE @@ -1,3 +1,28 @@ +--- +key: gfdl-1.3-plus +short_name: GFDL 1.3 or later +name: GNU Free Documentation License v1.3 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-or-later +other_spdx_license_keys: + - GFDL-1.3+ +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + 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. @@ -451,4 +476,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.3-plus.yml b/src/licensedcode/data/licenses/gfdl-1.3-plus.yml deleted file mode 100644 index 5299ef0b281..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.3-plus.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: gfdl-1.3-plus -short_name: GFDL 1.3 or later -name: GNU Free Documentation License v1.3 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt -notes: Per SPDX.org, this license was released 3 November 2008. -spdx_license_key: GFDL-1.3-or-later -other_spdx_license_keys: - - GFDL-1.3+ -text_urls: - - http://www.gnu.org/licenses/fdl-1.3.txt -other_urls: - - https://www.gnu.org/licenses/fdl-1.3.txt -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/gfdl-1.3.LICENSE b/src/licensedcode/data/licenses/gfdl-1.3.LICENSE index 2f7e03ca516..9c38b31275f 100644 --- a/src/licensedcode/data/licenses/gfdl-1.3.LICENSE +++ b/src/licensedcode/data/licenses/gfdl-1.3.LICENSE @@ -1,3 +1,27 @@ +--- +key: gfdl-1.3 +short_name: GFDL 1.3 +name: GNU Free Documentation License v1.3 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt +notes: Per SPDX.org, this license was released 3 November 2008. +spdx_license_key: GFDL-1.3-only +other_spdx_license_keys: + - GFDL-1.3 +text_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +other_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.3, 3 November 2008 @@ -448,4 +472,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gfdl-1.3.yml b/src/licensedcode/data/licenses/gfdl-1.3.yml deleted file mode 100644 index dede682acbc..00000000000 --- a/src/licensedcode/data/licenses/gfdl-1.3.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: gfdl-1.3 -short_name: GFDL 1.3 -name: GNU Free Documentation License v1.3 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/fdl-1.3.txt -notes: Per SPDX.org, this license was released 3 November 2008. -spdx_license_key: GFDL-1.3-only -other_spdx_license_keys: - - GFDL-1.3 -text_urls: - - http://www.gnu.org/licenses/fdl-1.3.txt -other_urls: - - https://www.gnu.org/licenses/fdl-1.3.txt -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/licenses/ghostpdl-permissive.LICENSE b/src/licensedcode/data/licenses/ghostpdl-permissive.LICENSE index ea9c9023c46..7a140006ec6 100644 --- a/src/licensedcode/data/licenses/ghostpdl-permissive.LICENSE +++ b/src/licensedcode/data/licenses/ghostpdl-permissive.LICENSE @@ -1,3 +1,13 @@ +--- +key: ghostpdl-permissive +short_name: Ghostpdl Permissive +name: Ghostpdl Permissive +category: Permissive +owner: Washington State University +homepage_url: http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdev4693.c;h=7e7307776d6bc0e18b89fc0e8f972513bb257f46;hb=HEAD +spdx_license_key: LicenseRef-scancode-ghostpdl-permissive +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted. This software is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ghostpdl-permissive.yml b/src/licensedcode/data/licenses/ghostpdl-permissive.yml deleted file mode 100644 index 51b630c16ed..00000000000 --- a/src/licensedcode/data/licenses/ghostpdl-permissive.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ghostpdl-permissive -short_name: Ghostpdl Permissive -name: Ghostpdl Permissive -category: Permissive -owner: Washington State University -homepage_url: http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdev4693.c;h=7e7307776d6bc0e18b89fc0e8f972513bb257f46;hb=HEAD -spdx_license_key: LicenseRef-scancode-ghostpdl-permissive diff --git a/src/licensedcode/data/licenses/ghostscript-1988.LICENSE b/src/licensedcode/data/licenses/ghostscript-1988.LICENSE index e839b3ff994..7def394cb16 100644 --- a/src/licensedcode/data/licenses/ghostscript-1988.LICENSE +++ b/src/licensedcode/data/licenses/ghostscript-1988.LICENSE @@ -1,3 +1,25 @@ +--- +key: ghostscript-1988 +short_name: Ghostscript General Public License 1988 +name: Ghostscript General Public License 1988 +category: Copyleft +owner: Richard Stallman +notes: | + This is a rare license and there is no original web location available + anymore. Because some old version of the "ansi2knr.c" found in libjpeg and + libpng have it, It can still be found sometimes in the wild. +spdx_license_key: LicenseRef-scancode-ghostscript-1988 +text_urls: + - http://sourceforge.net/p/libpng/code/ci/0d5805822f8817a17937462a2fd0606ffdad378e/tree/ansi2knr.c + - http://www.mit.edu/afs.new/athena/contrib/xemacs/OldFiles/src/aux/libpng-1.0.3/ansi2knr.c +ignorable_copyrights: + - Copyright (c) 1988 Richard M. Stallman + - Copyright (c) 1989 Aladdin Enterprises +ignorable_holders: + - Aladdin Enterprises + - Richard M. Stallman +--- + GHOSTSCRIPT GENERAL PUBLIC LICENSE (Clarified 11 Feb 1988) diff --git a/src/licensedcode/data/licenses/ghostscript-1988.yml b/src/licensedcode/data/licenses/ghostscript-1988.yml deleted file mode 100644 index 26a14e0c8a7..00000000000 --- a/src/licensedcode/data/licenses/ghostscript-1988.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: ghostscript-1988 -short_name: Ghostscript General Public License 1988 -name: Ghostscript General Public License 1988 -category: Copyleft -owner: Richard Stallman -notes: | - This is a rare license and there is no original web location available - anymore. Because some old version of the "ansi2knr.c" found in libjpeg and - libpng have it, It can still be found sometimes in the wild. -spdx_license_key: LicenseRef-scancode-ghostscript-1988 -text_urls: - - http://sourceforge.net/p/libpng/code/ci/0d5805822f8817a17937462a2fd0606ffdad378e/tree/ansi2knr.c - - http://www.mit.edu/afs.new/athena/contrib/xemacs/OldFiles/src/aux/libpng-1.0.3/ansi2knr.c -ignorable_copyrights: - - Copyright (c) 1988 Richard M. Stallman - - Copyright (c) 1989 Aladdin Enterprises -ignorable_holders: - - Aladdin Enterprises - - Richard M. Stallman diff --git a/src/licensedcode/data/licenses/gitlab-ee.LICENSE b/src/licensedcode/data/licenses/gitlab-ee.LICENSE index d9881beda8a..b497bade349 100644 --- a/src/licensedcode/data/licenses/gitlab-ee.LICENSE +++ b/src/licensedcode/data/licenses/gitlab-ee.LICENSE @@ -1,3 +1,20 @@ +--- +key: gitlab-ee +short_name: GitLab EE +name: GitLab Enterprise Edition (EE) license +category: Commercial +owner: GitLab.org +homepage_url: https://gitlab.com/gitlab-org/gitlab/-/blob/master/ee/LICENSE +spdx_license_key: LicenseRef-scancode-gitlab-ee +faq_url: https://docs.gitlab.com/ee/development/licensing.html +ignorable_copyrights: + - Copyright (c) 2011-present GitLab B.V. +ignorable_holders: + - GitLab B.V. +ignorable_urls: + - https://about.gitlab.com/terms/#subscription +--- + The GitLab Enterprise Edition (EE) license (the “EE License”) Copyright (c) 2011-present GitLab B.V. diff --git a/src/licensedcode/data/licenses/gitlab-ee.yml b/src/licensedcode/data/licenses/gitlab-ee.yml deleted file mode 100644 index ddee456456d..00000000000 --- a/src/licensedcode/data/licenses/gitlab-ee.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: gitlab-ee -short_name: GitLab EE -name: GitLab Enterprise Edition (EE) license -category: Commercial -owner: GitLab.org -homepage_url: https://gitlab.com/gitlab-org/gitlab/-/blob/master/ee/LICENSE -spdx_license_key: LicenseRef-scancode-gitlab-ee -faq_url: https://docs.gitlab.com/ee/development/licensing.html -ignorable_copyrights: - - Copyright (c) 2011-present GitLab B.V. -ignorable_holders: - - GitLab B.V. -ignorable_urls: - - https://about.gitlab.com/terms/#subscription diff --git a/src/licensedcode/data/licenses/gl2ps.LICENSE b/src/licensedcode/data/licenses/gl2ps.LICENSE index f004812d033..870bd163ae7 100644 --- a/src/licensedcode/data/licenses/gl2ps.LICENSE +++ b/src/licensedcode/data/licenses/gl2ps.LICENSE @@ -1,3 +1,19 @@ +--- +key: gl2ps +short_name: GL2PS License +name: GL2PS License +category: Copyleft Limited +owner: Christophe Geuzaine +homepage_url: http://www.geuz.org/gl2ps/COPYING.GL2PS +spdx_license_key: GL2PS +text_urls: + - http://www.geuz.org/gl2ps/COPYING.GL2PS +ignorable_copyrights: + - Copyright (c) 2003, Christophe Geuzaine +ignorable_holders: + - Christophe Geuzaine +--- + GL2PS LICENSE Version 2, November 2003 Copyright (C) 2003, Christophe Geuzaine diff --git a/src/licensedcode/data/licenses/gl2ps.yml b/src/licensedcode/data/licenses/gl2ps.yml deleted file mode 100644 index 25a883b0454..00000000000 --- a/src/licensedcode/data/licenses/gl2ps.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: gl2ps -short_name: GL2PS License -name: GL2PS License -category: Copyleft Limited -owner: Christophe Geuzaine -homepage_url: http://www.geuz.org/gl2ps/COPYING.GL2PS -spdx_license_key: GL2PS -text_urls: - - http://www.geuz.org/gl2ps/COPYING.GL2PS -ignorable_copyrights: - - Copyright (c) 2003, Christophe Geuzaine -ignorable_holders: - - Christophe Geuzaine diff --git a/src/licensedcode/data/licenses/gladman-older-rijndael-code-use.LICENSE b/src/licensedcode/data/licenses/gladman-older-rijndael-code-use.LICENSE index 77e642fcaeb..ce0a29dae1c 100644 --- a/src/licensedcode/data/licenses/gladman-older-rijndael-code-use.LICENSE +++ b/src/licensedcode/data/licenses/gladman-older-rijndael-code-use.LICENSE @@ -1,3 +1,15 @@ +--- +key: gladman-older-rijndael-code-use +short_name: Gladman Older Rigndael Code Use +name: Gladman Older Rigndael Code Use +category: Permissive +owner: Brian Gladman +homepage_url: http://ccgi.gladman.plus.com/oldsite/cryptography_technology/rijndael/index.php +spdx_license_key: LicenseRef-scancode-gladman-older-rijndael-code +other_spdx_license_keys: + - LicenseRef-scancode-gladman-older-rijndael-code-use +--- + Code Use I am happy for this code to be used without payment provided that I don't carry diff --git a/src/licensedcode/data/licenses/gladman-older-rijndael-code-use.yml b/src/licensedcode/data/licenses/gladman-older-rijndael-code-use.yml deleted file mode 100644 index da35b52aa01..00000000000 --- a/src/licensedcode/data/licenses/gladman-older-rijndael-code-use.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gladman-older-rijndael-code-use -short_name: Gladman Older Rigndael Code Use -name: Gladman Older Rigndael Code Use -category: Permissive -owner: Brian Gladman -homepage_url: http://ccgi.gladman.plus.com/oldsite/cryptography_technology/rijndael/index.php -spdx_license_key: LicenseRef-scancode-gladman-older-rijndael-code -other_spdx_license_keys: - - LicenseRef-scancode-gladman-older-rijndael-code-use diff --git a/src/licensedcode/data/licenses/glide.LICENSE b/src/licensedcode/data/licenses/glide.LICENSE index d5973502f4b..4bc5efa2eb1 100644 --- a/src/licensedcode/data/licenses/glide.LICENSE +++ b/src/licensedcode/data/licenses/glide.LICENSE @@ -1,3 +1,24 @@ +--- +key: glide +short_name: 3DFX GLIDE +name: 3DFX GLIDE Source Code General Public License +category: Copyleft +owner: NVIDIA +homepage_url: http://www.users.on.net/~triforce/glidexp/COPYING.txt +spdx_license_key: Glide +text_urls: + - http://www.users.on.net/~triforce/glidexp/COPYING.txt +ignorable_copyrights: + - COPYRIGHT 3DFX INTERACTIVE, INC. 1999 + - copyright notice (3dfx Interactive, Inc. 1999) +ignorable_holders: + - 3DFX INTERACTIVE, INC. + - 3dfx Interactive, Inc. +ignorable_emails: + - INFO@3DFX.COM + - info@3dfx.com +--- + 3DFX GLIDE Source Code General Public License 1. PREAMBLE diff --git a/src/licensedcode/data/licenses/glide.yml b/src/licensedcode/data/licenses/glide.yml deleted file mode 100644 index dd71b31c78e..00000000000 --- a/src/licensedcode/data/licenses/glide.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: glide -short_name: 3DFX GLIDE -name: 3DFX GLIDE Source Code General Public License -category: Copyleft -owner: NVIDIA -homepage_url: http://www.users.on.net/~triforce/glidexp/COPYING.txt -spdx_license_key: Glide -text_urls: - - http://www.users.on.net/~triforce/glidexp/COPYING.txt -ignorable_copyrights: - - COPYRIGHT 3DFX INTERACTIVE, INC. 1999 - - copyright notice (3dfx Interactive, Inc. 1999) -ignorable_holders: - - 3DFX INTERACTIVE, INC. - - 3dfx Interactive, Inc. -ignorable_emails: - - INFO@3DFX.COM - - info@3dfx.com diff --git a/src/licensedcode/data/licenses/glulxe.LICENSE b/src/licensedcode/data/licenses/glulxe.LICENSE index 4c359beba10..14ed456b15c 100644 --- a/src/licensedcode/data/licenses/glulxe.LICENSE +++ b/src/licensedcode/data/licenses/glulxe.LICENSE @@ -1,3 +1,13 @@ +--- +key: glulxe +short_name: Glulxe License +name: Glulxe License +category: Permissive +owner: Andrew Plotkin +homepage_url: https://fedoraproject.org/wiki/Licensing/Glulxe +spdx_license_key: Glulxe +--- + You may copy and distribute it freely, by any means and under any conditions, as long as the code and documentation is not changed. You may also incorporate this code into your own program and distribute that, or modify this code and diff --git a/src/licensedcode/data/licenses/glulxe.yml b/src/licensedcode/data/licenses/glulxe.yml deleted file mode 100644 index 87961ac5051..00000000000 --- a/src/licensedcode/data/licenses/glulxe.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: glulxe -short_name: Glulxe License -name: Glulxe License -category: Permissive -owner: Andrew Plotkin -homepage_url: https://fedoraproject.org/wiki/Licensing/Glulxe -spdx_license_key: Glulxe diff --git a/src/licensedcode/data/licenses/glut.LICENSE b/src/licensedcode/data/licenses/glut.LICENSE index bfeb4a6a941..579649f42e4 100644 --- a/src/licensedcode/data/licenses/glut.LICENSE +++ b/src/licensedcode/data/licenses/glut.LICENSE @@ -1,3 +1,12 @@ +--- +key: glut +short_name: GLUT License +name: OpenGL Utility Toolkit (GLUT) License +category: Permissive +owner: OpenGL +spdx_license_key: LicenseRef-scancode-glut +--- + This program is freely distributable without licensing fees and is provided without guarantee or warrantee expressed or implied. This -program is -not- in the public domain. +program is -not- in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/glut.yml b/src/licensedcode/data/licenses/glut.yml deleted file mode 100644 index 46cdaebac42..00000000000 --- a/src/licensedcode/data/licenses/glut.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: glut -short_name: GLUT License -name: OpenGL Utility Toolkit (GLUT) License -category: Permissive -owner: OpenGL -spdx_license_key: LicenseRef-scancode-glut diff --git a/src/licensedcode/data/licenses/glwtpl.LICENSE b/src/licensedcode/data/licenses/glwtpl.LICENSE index 1081bb98736..e00e0d28864 100644 --- a/src/licensedcode/data/licenses/glwtpl.LICENSE +++ b/src/licensedcode/data/licenses/glwtpl.LICENSE @@ -1,3 +1,19 @@ +--- +key: glwtpl +short_name: GLWTPL +name: Good Luck With That Public License +category: Permissive +owner: Unspecified +homepage_url: https://github.com/me-shaon/GLWTPL/blob/master/LICENSE +spdx_license_key: GLWTPL +other_urls: + - https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85 +ignorable_copyrights: + - Copyright (c) Everyone +ignorable_holders: + - Everyone +--- + GLWT(Good Luck With That) Public License Copyright (c) Everyone, except Author diff --git a/src/licensedcode/data/licenses/glwtpl.yml b/src/licensedcode/data/licenses/glwtpl.yml deleted file mode 100644 index 13773e0b9c1..00000000000 --- a/src/licensedcode/data/licenses/glwtpl.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: glwtpl -short_name: GLWTPL -name: Good Luck With That Public License -category: Permissive -owner: Unspecified -homepage_url: https://github.com/me-shaon/GLWTPL/blob/master/LICENSE -spdx_license_key: GLWTPL -other_urls: - - https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85 -ignorable_copyrights: - - Copyright (c) Everyone -ignorable_holders: - - Everyone diff --git a/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.LICENSE b/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.LICENSE index 26fab45cfac..bcdfe3a8a4f 100644 --- a/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.LICENSE +++ b/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.LICENSE @@ -1,3 +1,21 @@ +--- +key: gnu-emacs-gpl-1988 +short_name: GNU emacs General Public License 1988 +name: GNU emacs General Public License 1988 +category: Copyleft +owner: Richard Stallman +homepage_url: https://www.free-soft.org/gpl_history/emacs_gpl.html +spdx_license_key: LicenseRef-scancode-gnu-emacs-gpl-1988 +text_urls: + - https://www.cs.bham.ac.uk/research/projects/poplog/emacs/COPYING +ignorable_copyrights: + - Copyright (c) 1985, 1987, 1988 Richard M. Stallman + - Copyright (c) 1988 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. + - Richard M. Stallman +--- + GNU EMACS GENERAL PUBLIC LICENSE (Clarified 11 Feb 1988) diff --git a/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.yml b/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.yml deleted file mode 100644 index 9bceaf23524..00000000000 --- a/src/licensedcode/data/licenses/gnu-emacs-gpl-1988.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: gnu-emacs-gpl-1988 -short_name: GNU emacs General Public License 1988 -name: GNU emacs General Public License 1988 -category: Copyleft -owner: Richard Stallman -homepage_url: https://www.free-soft.org/gpl_history/emacs_gpl.html -spdx_license_key: LicenseRef-scancode-gnu-emacs-gpl-1988 -text_urls: - - https://www.cs.bham.ac.uk/research/projects/poplog/emacs/COPYING -ignorable_copyrights: - - Copyright (c) 1985, 1987, 1988 Richard M. Stallman - - Copyright (c) 1988 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. - - Richard M. Stallman diff --git a/src/licensedcode/data/licenses/gnu-javamail-exception.LICENSE b/src/licensedcode/data/licenses/gnu-javamail-exception.LICENSE index e2e6e6888ec..440e8e11653 100644 --- a/src/licensedcode/data/licenses/gnu-javamail-exception.LICENSE +++ b/src/licensedcode/data/licenses/gnu-javamail-exception.LICENSE @@ -1,3 +1,23 @@ +--- +key: gnu-javamail-exception +short_name: GNU JavaMail exception to GPL 2.0 or later +name: GNU JavaMail exception to GPL 2.0 or later +category: Copyleft Limited +owner: GNU Project +homepage_url: https://www.gnu.org/software/classpathx/javamail/javamail.html +is_exception: yes +spdx_license_key: gnu-javamail-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/software/classpathx/javamail/javamail.html +standard_notice: | + As a special exception, if you link this library with other files to + produce an executable, this library does not by itself cause the resulting + executable to be covered by the GNU General Public License. This exception + does not however invalidate any other reasons why the executable file might + be covered by the GNU General Public License. +--- + As a special exception, if you link this library with other files to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however diff --git a/src/licensedcode/data/licenses/gnu-javamail-exception.yml b/src/licensedcode/data/licenses/gnu-javamail-exception.yml deleted file mode 100644 index 4a0d689b77f..00000000000 --- a/src/licensedcode/data/licenses/gnu-javamail-exception.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: gnu-javamail-exception -short_name: GNU JavaMail exception to GPL 2.0 or later -name: GNU JavaMail exception to GPL 2.0 or later -category: Copyleft Limited -owner: GNU Project -homepage_url: https://www.gnu.org/software/classpathx/javamail/javamail.html -is_exception: yes -spdx_license_key: gnu-javamail-exception -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/software/classpathx/javamail/javamail.html -standard_notice: | - As a special exception, if you link this library with other files to - produce an executable, this library does not by itself cause the resulting - executable to be covered by the GNU General Public License. This exception - does not however invalidate any other reasons why the executable file might - be covered by the GNU General Public License. diff --git a/src/licensedcode/data/licenses/gnuplot.LICENSE b/src/licensedcode/data/licenses/gnuplot.LICENSE index 6784a1acbae..ed538a470ed 100644 --- a/src/licensedcode/data/licenses/gnuplot.LICENSE +++ b/src/licensedcode/data/licenses/gnuplot.LICENSE @@ -1,3 +1,15 @@ +--- +key: gnuplot +short_name: gnuplot License +name: gnuplot License +category: Copyleft Limited +owner: GNU Project +homepage_url: https://fedoraproject.org/wiki/Licensing:Gnuplot?rd=Licensing/Gnuplot +spdx_license_key: gnuplot +other_urls: + - https://fedoraproject.org/wiki/Licensing/Gnuplot +--- + Permission to use, copy, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and diff --git a/src/licensedcode/data/licenses/gnuplot.yml b/src/licensedcode/data/licenses/gnuplot.yml deleted file mode 100644 index 76b4d21d23e..00000000000 --- a/src/licensedcode/data/licenses/gnuplot.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gnuplot -short_name: gnuplot License -name: gnuplot License -category: Copyleft Limited -owner: GNU Project -homepage_url: https://fedoraproject.org/wiki/Licensing:Gnuplot?rd=Licensing/Gnuplot -spdx_license_key: gnuplot -other_urls: - - https://fedoraproject.org/wiki/Licensing/Gnuplot diff --git a/src/licensedcode/data/licenses/goahead.LICENSE b/src/licensedcode/data/licenses/goahead.LICENSE index fbee7cc3b06..ddc87d361f2 100644 --- a/src/licensedcode/data/licenses/goahead.LICENSE +++ b/src/licensedcode/data/licenses/goahead.LICENSE @@ -1,3 +1,24 @@ +--- +key: goahead +short_name: GoAhead License +name: GoAhead License +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt +spdx_license_key: LicenseRef-scancode-goahead +text_urls: + - https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt +other_urls: + - https://embedthis.com/goahead/ + - https://embedthis.com/goahead/licensing.html +ignorable_copyrights: + - Copyright (c) 20xx GoAhead Software, Inc. +ignorable_holders: + - 20xx GoAhead Software, Inc. +ignorable_emails: + - info@goahead.com +--- + License Agreement THIS LICENSE ALLOWS ONLY THE LIMITED USE OF GO AHEAD SOFTWARE, diff --git a/src/licensedcode/data/licenses/goahead.yml b/src/licensedcode/data/licenses/goahead.yml deleted file mode 100644 index 844dfd7d6ac..00000000000 --- a/src/licensedcode/data/licenses/goahead.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: goahead -short_name: GoAhead License -name: GoAhead License -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt -spdx_license_key: LicenseRef-scancode-goahead -text_urls: - - https://github.com/socoola/yhrouter/blob/master/user/goahead/license.txt -other_urls: - - https://embedthis.com/goahead/ - - https://embedthis.com/goahead/licensing.html -ignorable_copyrights: - - Copyright (c) 20xx GoAhead Software, Inc. -ignorable_holders: - - 20xx GoAhead Software, Inc. -ignorable_emails: - - info@goahead.com diff --git a/src/licensedcode/data/licenses/good-boy.LICENSE b/src/licensedcode/data/licenses/good-boy.LICENSE index d12957e2377..27c9c298b2d 100644 --- a/src/licensedcode/data/licenses/good-boy.LICENSE +++ b/src/licensedcode/data/licenses/good-boy.LICENSE @@ -1,3 +1,15 @@ +--- +key: good-boy +short_name: Good Boy License +name: Good Boy License +category: Permissive +owner: Icons8 +homepage_url: https://icons8.com/good-boy-license +spdx_license_key: LicenseRef-scancode-good-boy +text_urls: + - https://github.com/icons8/flat-color-icons/blob/master/LICENSE.md +--- + Please do whatever your mom would approve of: ##Permitted Use diff --git a/src/licensedcode/data/licenses/good-boy.yml b/src/licensedcode/data/licenses/good-boy.yml deleted file mode 100644 index 2ead47dbe2c..00000000000 --- a/src/licensedcode/data/licenses/good-boy.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: good-boy -short_name: Good Boy License -name: Good Boy License -category: Permissive -owner: Icons8 -homepage_url: https://icons8.com/good-boy-license -spdx_license_key: LicenseRef-scancode-good-boy -text_urls: - - https://github.com/icons8/flat-color-icons/blob/master/LICENSE.md diff --git a/src/licensedcode/data/licenses/google-analytics-tos-2015.LICENSE b/src/licensedcode/data/licenses/google-analytics-tos-2015.LICENSE index 50b8b670c23..f2dad7c851d 100644 --- a/src/licensedcode/data/licenses/google-analytics-tos-2015.LICENSE +++ b/src/licensedcode/data/licenses/google-analytics-tos-2015.LICENSE @@ -1,3 +1,22 @@ +--- +key: google-analytics-tos-2015 +short_name: Google Analytics Terms of Service 2015 +name: Google Analytics Terms of Service 2015 +category: Proprietary Free +owner: Google +homepage_url: http://www.google.com/analytics/terms/us.html +spdx_license_key: LicenseRef-scancode-google-analytics-tos-2015 +other_urls: + - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 + - http://www.google.com/analytics + - http://www.google.com/privacy.html +ignorable_urls: + - http://www.google.com/analytics + - http://www.google.com/analytics/policies + - http://www.google.com/policies/privacy/partners + - http://www.google.com/privacy.html +--- + Google Analytics Terms of Service These Google Analytics Terms of Service (this "Agreement") are entered into by @@ -338,4 +357,4 @@ successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, 5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. -Last Updated: 7/30/2015 +Last Updated: 7/30/2015 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-analytics-tos-2015.yml b/src/licensedcode/data/licenses/google-analytics-tos-2015.yml deleted file mode 100644 index de391d8127e..00000000000 --- a/src/licensedcode/data/licenses/google-analytics-tos-2015.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: google-analytics-tos-2015 -short_name: Google Analytics Terms of Service 2015 -name: Google Analytics Terms of Service 2015 -category: Proprietary Free -owner: Google -homepage_url: http://www.google.com/analytics/terms/us.html -spdx_license_key: LicenseRef-scancode-google-analytics-tos-2015 -other_urls: - - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 - - http://www.google.com/analytics - - http://www.google.com/privacy.html -ignorable_urls: - - http://www.google.com/analytics - - http://www.google.com/analytics/policies - - http://www.google.com/policies/privacy/partners - - http://www.google.com/privacy.html diff --git a/src/licensedcode/data/licenses/google-analytics-tos-2016.LICENSE b/src/licensedcode/data/licenses/google-analytics-tos-2016.LICENSE index ea17842cd18..bc1514ac529 100644 --- a/src/licensedcode/data/licenses/google-analytics-tos-2016.LICENSE +++ b/src/licensedcode/data/licenses/google-analytics-tos-2016.LICENSE @@ -1,3 +1,24 @@ +--- +key: google-analytics-tos-2016 +short_name: Google Analytics Terms of Service 2016 +name: Google Analytics Terms of Service 2016 +category: Proprietary Free +owner: Google +homepage_url: https://www.google.com/analytics/terms/us.html +spdx_license_key: LicenseRef-scancode-google-analytics-tos-2016 +other_urls: + - http://www.google.com/analytics + - http://www.google.com/privacy.html + - https://support.google.com/analytics/#topic=3544906 +ignorable_urls: + - http://www.google.com/analytics + - http://www.google.com/analytics/ + - http://www.google.com/analytics/policies + - http://www.google.com/policies/privacy/partners + - https://360suite.google.com/terms + - https://www.google.com/policies/privacy +--- + Google Analytics Terms of Service These Google Analytics Terms of Service (this "Agreement") are entered into by Google Inc. ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: diff --git a/src/licensedcode/data/licenses/google-analytics-tos-2016.yml b/src/licensedcode/data/licenses/google-analytics-tos-2016.yml deleted file mode 100644 index 7d6401b3f1d..00000000000 --- a/src/licensedcode/data/licenses/google-analytics-tos-2016.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: google-analytics-tos-2016 -short_name: Google Analytics Terms of Service 2016 -name: Google Analytics Terms of Service 2016 -category: Proprietary Free -owner: Google -homepage_url: https://www.google.com/analytics/terms/us.html -spdx_license_key: LicenseRef-scancode-google-analytics-tos-2016 -other_urls: - - http://www.google.com/analytics - - http://www.google.com/privacy.html - - https://support.google.com/analytics/#topic=3544906 -ignorable_urls: - - http://www.google.com/analytics - - http://www.google.com/analytics/ - - http://www.google.com/analytics/policies - - http://www.google.com/policies/privacy/partners - - https://360suite.google.com/terms - - https://www.google.com/policies/privacy diff --git a/src/licensedcode/data/licenses/google-analytics-tos-2019.LICENSE b/src/licensedcode/data/licenses/google-analytics-tos-2019.LICENSE index ec16fe96f03..aa2b8a2a8eb 100644 --- a/src/licensedcode/data/licenses/google-analytics-tos-2019.LICENSE +++ b/src/licensedcode/data/licenses/google-analytics-tos-2019.LICENSE @@ -1,3 +1,25 @@ +--- +key: google-analytics-tos-2019 +short_name: Google Analytics Terms of Service 2019 +name: Google Analytics Terms of Service 2019 +category: Proprietary Free +owner: Google +homepage_url: https://marketingplatform.google.com/about/analytics/terms/us/ +spdx_license_key: LicenseRef-scancode-google-analytics-tos-2019 +other_urls: + - http://www.google.com/analytics + - http://www.google.com/privacy.html + - https://support.google.com/analytics/#topic=3544906 +ignorable_urls: + - http://www.google.com/analytics + - http://www.google.com/analytics/policies + - http://www.google.com/analytics/policies/ + - http://www.google.com/policies/privacy/partners + - https://support.google.com/marketingplatform/answer/9047313 + - https://www.google.com/analytics/terms + - https://www.google.com/policies/privacy +--- + Google Analytics Terms of Service @@ -116,4 +138,4 @@ If You link a Property to Firebase (“Firebase Linkage”) as part of using the B. The following sentence is added to the end of Section 7 as follows: a. If You link a Property to a Firebase project (“Firebase Linkage”) (i) certain data from Your Property, including Customer Data, may be made accessible within or to any other entity or personnel according to permissions set in Firebase and (ii) that Property may have certain Service settings modified by authorized personnel of Firebase (notwithstanding the settings You may have designated for that Property within the Service). -Last Updated June 17, 2019 +Last Updated June 17, 2019 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-analytics-tos-2019.yml b/src/licensedcode/data/licenses/google-analytics-tos-2019.yml deleted file mode 100644 index 0004ee465f2..00000000000 --- a/src/licensedcode/data/licenses/google-analytics-tos-2019.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: google-analytics-tos-2019 -short_name: Google Analytics Terms of Service 2019 -name: Google Analytics Terms of Service 2019 -category: Proprietary Free -owner: Google -homepage_url: https://marketingplatform.google.com/about/analytics/terms/us/ -spdx_license_key: LicenseRef-scancode-google-analytics-tos-2019 -other_urls: - - http://www.google.com/analytics - - http://www.google.com/privacy.html - - https://support.google.com/analytics/#topic=3544906 -ignorable_urls: - - http://www.google.com/analytics - - http://www.google.com/analytics/policies - - http://www.google.com/analytics/policies/ - - http://www.google.com/policies/privacy/partners - - https://support.google.com/marketingplatform/answer/9047313 - - https://www.google.com/analytics/terms - - https://www.google.com/policies/privacy diff --git a/src/licensedcode/data/licenses/google-analytics-tos.LICENSE b/src/licensedcode/data/licenses/google-analytics-tos.LICENSE index 087d60bc8ea..e0f869c8888 100644 --- a/src/licensedcode/data/licenses/google-analytics-tos.LICENSE +++ b/src/licensedcode/data/licenses/google-analytics-tos.LICENSE @@ -1,3 +1,23 @@ +--- +key: google-analytics-tos +short_name: Google Analytics Terms of Service +name: Google Analytics Terms of Service +category: Proprietary Free +owner: Google +homepage_url: http://www.google.com/analytics/terms/us.html +spdx_license_key: LicenseRef-scancode-google-analytics-tos +text_urls: + - http://www.google.com/analytics/terms/us.html +other_urls: + - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 + - http://www.google.com/analytics + - http://www.google.com/privacy.html +ignorable_urls: + - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 + - http://www.google.com/analytics + - http://www.google.com/privacy.html +--- + GOOGLE ANALYTICS TERMS OF SERVICE These Google Analytics Terms of Service (this "Agreement") are entered into by Google Inc. ("Google") and the entity executing this Agreement ("You"). This Agreement governs Your use of the standard Google Analytics (the "Service"). BY CLICKING THE "I ACCEPT" BUTTON, COMPLETING THE REGISTRATION PROCESS, OR USING THE SERVICE, YOU ACKNOWLEDGE THAT YOU HAVE REVIEWED AND ACCEPT THIS AGREEMENT AND ARE AUTHORIZED TO ACT ON BEHALF OF, AND BIND TO THIS AGREEMENT, THE OWNER OF THIS ACCOUNT. In consideration of the foregoing, the parties agree as follows: diff --git a/src/licensedcode/data/licenses/google-analytics-tos.yml b/src/licensedcode/data/licenses/google-analytics-tos.yml deleted file mode 100644 index 4cac7bf71f6..00000000000 --- a/src/licensedcode/data/licenses/google-analytics-tos.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: google-analytics-tos -short_name: Google Analytics Terms of Service -name: Google Analytics Terms of Service -category: Proprietary Free -owner: Google -homepage_url: http://www.google.com/analytics/terms/us.html -spdx_license_key: LicenseRef-scancode-google-analytics-tos -text_urls: - - http://www.google.com/analytics/terms/us.html -other_urls: - - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 - - http://www.google.com/analytics - - http://www.google.com/privacy.html -ignorable_urls: - - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 - - http://www.google.com/analytics - - http://www.google.com/privacy.html diff --git a/src/licensedcode/data/licenses/google-apis-tos-2021.LICENSE b/src/licensedcode/data/licenses/google-apis-tos-2021.LICENSE index 0b3c4cf0e91..95a52148657 100644 --- a/src/licensedcode/data/licenses/google-apis-tos-2021.LICENSE +++ b/src/licensedcode/data/licenses/google-apis-tos-2021.LICENSE @@ -1,3 +1,19 @@ +--- +key: google-apis-tos-2021 +short_name: Google APIs TOS 2021 +name: Google APIs Terms of Service 2021 +category: Proprietary Free +owner: Google +homepage_url: https://developers.google.com/terms +spdx_license_key: LicenseRef-scancode-google-apis-tos-2021 +ignorable_copyrights: + - Copyright Protection a. Google +ignorable_holders: + - Protection a. Google +ignorable_authors: + - the U.S. Department of State. Remove +--- + Google APIs Terms of Service Last modified: November 9, 2021 diff --git a/src/licensedcode/data/licenses/google-apis-tos-2021.yml b/src/licensedcode/data/licenses/google-apis-tos-2021.yml deleted file mode 100644 index 38bb796d438..00000000000 --- a/src/licensedcode/data/licenses/google-apis-tos-2021.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: google-apis-tos-2021 -short_name: Google APIs TOS 2021 -name: Google APIs Terms of Service 2021 -category: Proprietary Free -owner: Google -homepage_url: https://developers.google.com/terms -spdx_license_key: LicenseRef-scancode-google-apis-tos-2021 -ignorable_copyrights: - - Copyright Protection a. Google -ignorable_holders: - - Protection a. Google -ignorable_authors: - - the U.S. Department of State. Remove diff --git a/src/licensedcode/data/licenses/google-cla.LICENSE b/src/licensedcode/data/licenses/google-cla.LICENSE index 7fcef525185..0a132f41c8f 100644 --- a/src/licensedcode/data/licenses/google-cla.LICENSE +++ b/src/licensedcode/data/licenses/google-cla.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-cla +short_name: Google CLA +name: Google Individual Contributor License Agreement +category: Patent License +owner: Google +homepage_url: https://cla.developers.google.com/about/google-individual +spdx_license_key: LicenseRef-scancode-google-cla +--- + Google Individual Contributor License Agreement In order to clarify the intellectual property license granted with Contributions from any person or entity, Google LLC ("Google") must have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Google; it does not change your rights to use your own Contributions for any other purpose. diff --git a/src/licensedcode/data/licenses/google-cla.yml b/src/licensedcode/data/licenses/google-cla.yml deleted file mode 100644 index de3f0e48077..00000000000 --- a/src/licensedcode/data/licenses/google-cla.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-cla -short_name: Google CLA -name: Google Individual Contributor License Agreement -category: Patent License -owner: Google -homepage_url: https://cla.developers.google.com/about/google-individual -spdx_license_key: LicenseRef-scancode-google-cla diff --git a/src/licensedcode/data/licenses/google-corporate-cla.LICENSE b/src/licensedcode/data/licenses/google-corporate-cla.LICENSE index f12eb4475f5..9d075e3e11e 100644 --- a/src/licensedcode/data/licenses/google-corporate-cla.LICENSE +++ b/src/licensedcode/data/licenses/google-corporate-cla.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-corporate-cla +short_name: Google Corporate CLA +name: Google Software Grant and Corporate Contributor License Agreement +category: Patent License +owner: Google +homepage_url: https://cla.developers.google.com/about/google-corporate +spdx_license_key: LicenseRef-scancode-google-corporate-cla +--- + Google Software Grant and Corporate Contributor License Agreement In order to clarify the intellectual property license granted with Contributions from any person or entity, Google LLC ("Google") must have a Contributor License Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Google and its users; it does not change your rights to use your own Contributions for any other purpose. diff --git a/src/licensedcode/data/licenses/google-corporate-cla.yml b/src/licensedcode/data/licenses/google-corporate-cla.yml deleted file mode 100644 index 2ab7720d211..00000000000 --- a/src/licensedcode/data/licenses/google-corporate-cla.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-corporate-cla -short_name: Google Corporate CLA -name: Google Software Grant and Corporate Contributor License Agreement -category: Patent License -owner: Google -homepage_url: https://cla.developers.google.com/about/google-corporate -spdx_license_key: LicenseRef-scancode-google-corporate-cla diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-02-07.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2018-02-07.LICENSE index 232999ed099..a667c1adb4f 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-02-07.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2018-02-07.LICENSE @@ -1,3 +1,29 @@ +--- +key: google-maps-tos-2018-02-07 +short_name: Google Maps Platform ToS 2018-02-07 +name: Google Maps Platform Terms of Service 2018-02-07 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-02-07 +text_urls: + - https://developers.google.com/maps/terms-20180207 +minimum_coverage: 90 +ignorable_copyrights: + - (c) Google Australia Pty Ltd. +ignorable_holders: + - Google Australia Pty Ltd. +ignorable_authors: + - the U.S. Department of State. Remove +ignorable_urls: + - http://developers.google.com/maps/maps-api-list + - http://developers.google.com/maps/terms + - http://www.google.com/intl/en/about/company/software-principles.html + - http://www.google.com/policies/privacy + - https://developers.google.com/products/ + - https://www.google.com/maps +--- + Google Maps APIs Terms of Service Thank you for your interest in the Google Maps APIs. The Google Maps APIs are a collection of services that allow you to include maps, geocoding, places, and other content from Google in your web pages or applications. @@ -331,4 +357,4 @@ It is Google’s policy to respond to notices of alleged copyright infringement 19.8 Conflicting Languages. If these Terms are translated into any other language, and there is a discrepancy between the English text and the translated text, the English text will govern. -19.9 Governing Law. ALL CLAIMS ARISING OUT OF OR RELATING TO THESE TERMS OR ANY RELATED GOOGLE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS. \ No newline at end of file +19.9 Governing Law. ALL CLAIMS ARISING OUT OF OR RELATING TO THESE TERMS OR ANY RELATED GOOGLE SERVICES WILL BE GOVERNED BY CALIFORNIA LAW, EXCLUDING CALIFORNIA'S CONFLICT OF LAWS RULES, AND WILL BE LITIGATED EXCLUSIVELY IN THE FEDERAL OR STATE COURTS OF SANTA CLARA COUNTY, CALIFORNIA, USA; THE PARTIES CONSENT TO PERSONAL JURISDICTION IN THOSE COURTS. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-02-07.yml b/src/licensedcode/data/licenses/google-maps-tos-2018-02-07.yml deleted file mode 100644 index 81b6ae13d1b..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-02-07.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: google-maps-tos-2018-02-07 -short_name: Google Maps Platform ToS 2018-02-07 -name: Google Maps Platform Terms of Service 2018-02-07 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-02-07 -text_urls: - - https://developers.google.com/maps/terms-20180207 -minimum_coverage: 90 -ignorable_copyrights: - - (c) Google Australia Pty Ltd. -ignorable_holders: - - Google Australia Pty Ltd. -ignorable_authors: - - the U.S. Department of State. Remove -ignorable_urls: - - http://developers.google.com/maps/maps-api-list - - http://developers.google.com/maps/terms - - http://www.google.com/intl/en/about/company/software-principles.html - - http://www.google.com/policies/privacy - - https://developers.google.com/products/ - - https://www.google.com/maps diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-05-01.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2018-05-01.LICENSE index efc96ca15cf..3f0a83fca48 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-05-01.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2018-05-01.LICENSE @@ -1,3 +1,41 @@ +--- +key: google-maps-tos-2018-05-01 +short_name: Google Maps Platform ToS 2018-05-01 +name: Google Maps Platform Terms of Service 2018-05-01 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-05-01 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20180501 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet/ + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps + - https://developers.google.com/maps/terms + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: May 1, 2018 diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-05-01.yml b/src/licensedcode/data/licenses/google-maps-tos-2018-05-01.yml deleted file mode 100644 index 18c4e9fcc33..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-05-01.yml +++ /dev/null @@ -1,35 +0,0 @@ -key: google-maps-tos-2018-05-01 -short_name: Google Maps Platform ToS 2018-05-01 -name: Google Maps Platform Terms of Service 2018-05-01 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-05-01 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20180501 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet/ - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps - - https://developers.google.com/maps/terms - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-06-07.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2018-06-07.LICENSE index f27fd78ef47..df02df58e0a 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-06-07.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2018-06-07.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2018-06-07 +short_name: Google Maps Platform ToS 2018-06-07 +name: Google Maps Platform Terms of Service 2018-06-07 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-06-07 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20180607 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet/ + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: June 7, 2018 diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-06-07.yml b/src/licensedcode/data/licenses/google-maps-tos-2018-06-07.yml deleted file mode 100644 index f0337be1c00..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-06-07.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: google-maps-tos-2018-06-07 -short_name: Google Maps Platform ToS 2018-06-07 -name: Google Maps Platform Terms of Service 2018-06-07 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-06-07 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20180607 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet/ - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-07-09.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2018-07-09.LICENSE index 6479c1a8a05..54dc374177a 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-07-09.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2018-07-09.LICENSE @@ -1,3 +1,41 @@ +--- +key: google-maps-tos-2018-07-09 +short_name: Google Maps Platform ToS 2018-07-09 +name: Google Maps Platform Terms of Service 2018-07-09 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-07-09 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20180709 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://developers.google.com/maps/terms + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: July 9, 2018 diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-07-09.yml b/src/licensedcode/data/licenses/google-maps-tos-2018-07-09.yml deleted file mode 100644 index 4a4e5fa2269..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-07-09.yml +++ /dev/null @@ -1,35 +0,0 @@ -key: google-maps-tos-2018-07-09 -short_name: Google Maps Platform ToS 2018-07-09 -name: Google Maps Platform Terms of Service 2018-07-09 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-07-09 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20180709 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps/documentation - - https://developers.google.com/maps/terms - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-07-19.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2018-07-19.LICENSE index 5430ba23ab6..93e5f1676ff 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-07-19.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2018-07-19.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2018-07-19 +short_name: Google Maps Platform ToS 2018-07-19 +name: Google Maps Platform Terms of Service 2018-07-19 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-07-19 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20180719 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: July 19, 2018 diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-07-19.yml b/src/licensedcode/data/licenses/google-maps-tos-2018-07-19.yml deleted file mode 100644 index 94a806d037c..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-07-19.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: google-maps-tos-2018-07-19 -short_name: Google Maps Platform ToS 2018-07-19 -name: Google Maps Platform Terms of Service 2018-07-19 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-07-19 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20180719 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps/documentation - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-10-01.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2018-10-01.LICENSE index 09f1ef92259..ee22af23113 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-10-01.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2018-10-01.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2018-10-01 +short_name: Google Maps Platform ToS 2018-10-01 +name: Google Maps Platform Terms of Service 2018-10-01 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-10-01 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20181001 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: October 1, 2018 diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-10-01.yml b/src/licensedcode/data/licenses/google-maps-tos-2018-10-01.yml deleted file mode 100644 index 4a3298f9d69..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-10-01.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: google-maps-tos-2018-10-01 -short_name: Google Maps Platform ToS 2018-10-01 -name: Google Maps Platform Terms of Service 2018-10-01 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-10-01 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20181001 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps/documentation - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-10-31.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2018-10-31.LICENSE index 310e6d04300..da3680bd81a 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-10-31.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2018-10-31.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2018-10-31 +short_name: Google Maps Platform ToS 2018-10-31 +name: Google Maps Platform Terms of Service 2018-10-31 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-10-31 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20181031 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: October 31, 2018 diff --git a/src/licensedcode/data/licenses/google-maps-tos-2018-10-31.yml b/src/licensedcode/data/licenses/google-maps-tos-2018-10-31.yml deleted file mode 100644 index 17bda03b98c..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2018-10-31.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: google-maps-tos-2018-10-31 -short_name: Google Maps Platform ToS 2018-10-31 -name: Google Maps Platform Terms of Service 2018-10-31 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2018-10-31 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20181031 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps/documentation - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/geoguidelines.html#geotrademarkpolicy - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2019-05-02.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2019-05-02.LICENSE index 01353288828..0fb23830bd0 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2019-05-02.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2019-05-02.LICENSE @@ -1,3 +1,39 @@ +--- +key: google-maps-tos-2019-05-02 +short_name: Google Maps Platform ToS 2019-05-02 +name: Google Maps Platform Terms of Service 2019-05-02 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2019-05-02 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20190502 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: May 02, 2019 diff --git a/src/licensedcode/data/licenses/google-maps-tos-2019-05-02.yml b/src/licensedcode/data/licenses/google-maps-tos-2019-05-02.yml deleted file mode 100644 index 9036fb53588..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2019-05-02.yml +++ /dev/null @@ -1,33 +0,0 @@ -key: google-maps-tos-2019-05-02 -short_name: Google Maps Platform ToS 2019-05-02 -name: Google Maps Platform Terms of Service 2019-05-02 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2019-05-02 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20190502 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps/documentation - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2019-11-21.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2019-11-21.LICENSE index 63b4f98ad72..c5acb5c07de 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2019-11-21.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2019-11-21.LICENSE @@ -1,3 +1,39 @@ +--- +key: google-maps-tos-2019-11-21 +short_name: Google Maps Platform ToS 2019-11-21 +name: Google Maps Platform Terms of Service 2019-11-21 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2019-11-21 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20191121 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: November 21, 2019 @@ -364,6 +400,4 @@ This Section applies if Customer orders the Services from a Reseller under a Res (e) the Google Maps/Google Earth Legal Notices at https://www.google.com/help/legalnotices_maps.html; and -(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html. - - \ No newline at end of file +(f) the Google Maps/Google Earth Additional Terms of Service at https://maps.google.com/help/terms_maps.html. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-maps-tos-2019-11-21.yml b/src/licensedcode/data/licenses/google-maps-tos-2019-11-21.yml deleted file mode 100644 index 84935e9e51b..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2019-11-21.yml +++ /dev/null @@ -1,33 +0,0 @@ -key: google-maps-tos-2019-11-21 -short_name: Google Maps Platform ToS 2019-11-21 -name: Google Maps Platform Terms of Service 2019-11-21 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2019-11-21 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20191121 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps/documentation - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2020-04-02.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2020-04-02.LICENSE index d7faf30e638..0e2e9070287 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2020-04-02.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2020-04-02.LICENSE @@ -1,3 +1,39 @@ +--- +key: google-maps-tos-2020-04-02 +short_name: Google Maps Platform ToS 2020-04-02 +name: Google Maps Platform Terms of Service 2020-04-02 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-04-02 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20200402 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: April 2, 2020 @@ -435,4 +471,4 @@ Asia Pacific PT Google Cloud Indonesia 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-maps-tos-2020-04-02.yml b/src/licensedcode/data/licenses/google-maps-tos-2020-04-02.yml deleted file mode 100644 index 2e7e3cabc76..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2020-04-02.yml +++ /dev/null @@ -1,33 +0,0 @@ -key: google-maps-tos-2020-04-02 -short_name: Google Maps Platform ToS 2020-04-02 -name: Google Maps Platform Terms of Service 2020-04-02 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-04-02 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20200402 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps/documentation - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2020-04-27.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2020-04-27.LICENSE index 69cac1092b9..6936dd24e13 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2020-04-27.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2020-04-27.LICENSE @@ -1,3 +1,39 @@ +--- +key: google-maps-tos-2020-04-27 +short_name: Google Maps Platform ToS 2020-04-27 +name: Google Maps Platform Terms of Service 2020-04-27 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-04-27 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20200427 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: April 27, 2020 @@ -437,4 +473,4 @@ Asia Pacific - Indonesia PT Google Cloud Indonesia 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-maps-tos-2020-04-27.yml b/src/licensedcode/data/licenses/google-maps-tos-2020-04-27.yml deleted file mode 100644 index e75d9656cce..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2020-04-27.yml +++ /dev/null @@ -1,33 +0,0 @@ -key: google-maps-tos-2020-04-27 -short_name: Google Maps Platform ToS 2020-04-27 -name: Google Maps Platform Terms of Service 2020-04-27 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-04-27 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20200427 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://developers.google.com/maps/documentation - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-maps-tos-2020-05-06.LICENSE b/src/licensedcode/data/licenses/google-maps-tos-2020-05-06.LICENSE index 5a9d734da8c..bafd106c14f 100644 --- a/src/licensedcode/data/licenses/google-maps-tos-2020-05-06.LICENSE +++ b/src/licensedcode/data/licenses/google-maps-tos-2020-05-06.LICENSE @@ -1,3 +1,40 @@ +--- +key: google-maps-tos-2020-05-06 +short_name: Google Maps Platform ToS 2020-05-06 +name: Google Maps Platform Terms of Service 2020-05-06 +category: Proprietary Free +owner: Google +homepage_url: https://cloud.google.com/maps-platform/terms +spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-05-06 +text_urls: + - https://cloud.google.com/maps-platform/terms/index-20200506 +minimum_coverage: 90 +ignorable_authors: + - the U.S. Department + - the United States Department of State +ignorable_urls: + - https://cloud.google.com/maps-platform/pricing/sheet + - https://cloud.google.com/maps-platform/terms + - https://cloud.google.com/maps-platform/terms/aup + - https://cloud.google.com/maps-platform/terms/maps-controller-terms + - https://cloud.google.com/maps-platform/terms/maps-deprecation + - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories + - https://cloud.google.com/maps-platform/terms/maps-service-terms + - https://cloud.google.com/maps-platform/terms/maps-services + - https://cloud.google.com/maps-platform/terms/sla + - https://cloud.google.com/maps-platform/terms/tssg + - https://cloud.google.com/terms/google-entity + - https://developers.google.com/maps/documentation + - https://www.google.com/about/company/user-consent-policy.html + - https://www.google.com/dmca.html + - https://www.google.com/help/legalnotices_maps.html + - https://www.google.com/permissions/geoguidelines.html#geotrademark + - https://www.google.com/permissions/trademark/brand-terms.html + - https://www.google.com/policies/privacy +ignorable_emails: + - legal-notices@google.com +--- + Google Maps Platform Terms of Service Last modified: May 6, 2020 @@ -415,4 +452,4 @@ Asia Pacific - Indonesia PT Google Cloud Indonesia 3. Section 19.15 (Conflicting Languages) is deleted and replaced with the following: -19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file +19.15 Conflicting Languages. This Agreement is made in the Indonesian and the English language, and both versions are equally authentic. In the event of any inconsistency or different interpretation between the Indonesian version and the English version, the parties agree to amend the Indonesian version to make the relevant part of the Indonesian version consistent with the relevant part of the English version. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-maps-tos-2020-05-06.yml b/src/licensedcode/data/licenses/google-maps-tos-2020-05-06.yml deleted file mode 100644 index cacba06ea70..00000000000 --- a/src/licensedcode/data/licenses/google-maps-tos-2020-05-06.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: google-maps-tos-2020-05-06 -short_name: Google Maps Platform ToS 2020-05-06 -name: Google Maps Platform Terms of Service 2020-05-06 -category: Proprietary Free -owner: Google -homepage_url: https://cloud.google.com/maps-platform/terms -spdx_license_key: LicenseRef-scancode-google-maps-tos-2020-05-06 -text_urls: - - https://cloud.google.com/maps-platform/terms/index-20200506 -minimum_coverage: 90 -ignorable_authors: - - the U.S. Department - - the United States Department of State -ignorable_urls: - - https://cloud.google.com/maps-platform/pricing/sheet - - https://cloud.google.com/maps-platform/terms - - https://cloud.google.com/maps-platform/terms/aup - - https://cloud.google.com/maps-platform/terms/maps-controller-terms - - https://cloud.google.com/maps-platform/terms/maps-deprecation - - https://cloud.google.com/maps-platform/terms/maps-prohibited-territories - - https://cloud.google.com/maps-platform/terms/maps-service-terms - - https://cloud.google.com/maps-platform/terms/maps-services - - https://cloud.google.com/maps-platform/terms/sla - - https://cloud.google.com/maps-platform/terms/tssg - - https://cloud.google.com/terms/google-entity - - https://developers.google.com/maps/documentation - - https://www.google.com/about/company/user-consent-policy.html - - https://www.google.com/dmca.html - - https://www.google.com/help/legalnotices_maps.html - - https://www.google.com/permissions/geoguidelines.html#geotrademark - - https://www.google.com/permissions/trademark/brand-terms.html - - https://www.google.com/policies/privacy -ignorable_emails: - - legal-notices@google.com diff --git a/src/licensedcode/data/licenses/google-ml-kit-tos-2022.LICENSE b/src/licensedcode/data/licenses/google-ml-kit-tos-2022.LICENSE index d44fff60359..4aebbe4a8b2 100644 --- a/src/licensedcode/data/licenses/google-ml-kit-tos-2022.LICENSE +++ b/src/licensedcode/data/licenses/google-ml-kit-tos-2022.LICENSE @@ -1,3 +1,17 @@ +--- +key: google-ml-kit-tos-2022 +short_name: Google ML Kit TOS 2022 +name: Google ML Kit Terms of Service 2022 +category: Proprietary Free +owner: Google +homepage_url: https://developers.google.com/ml-kit/terms +spdx_license_key: LicenseRef-scancode-google-ml-kit-tos-2022 +other_urls: + - https://developers.google.com/terms + - https://developers.google.com/ml-kit/android-data-disclosure + - https://developers.google.com/ml-kit/ios-data-disclosure +--- + Terms & Privacy ML KIT Terms of Service The following terms apply to your use of ML Kit APIs. These terms incorporate and are subject to the Google APIs Terms of Service. diff --git a/src/licensedcode/data/licenses/google-ml-kit-tos-2022.yml b/src/licensedcode/data/licenses/google-ml-kit-tos-2022.yml deleted file mode 100644 index 60b06b43e17..00000000000 --- a/src/licensedcode/data/licenses/google-ml-kit-tos-2022.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: google-ml-kit-tos-2022 -short_name: Google ML Kit TOS 2022 -name: Google ML Kit Terms of Service 2022 -category: Proprietary Free -owner: Google -homepage_url: https://developers.google.com/ml-kit/terms -spdx_license_key: LicenseRef-scancode-google-ml-kit-tos-2022 -other_urls: - - https://developers.google.com/terms - - https://developers.google.com/ml-kit/android-data-disclosure - - https://developers.google.com/ml-kit/ios-data-disclosure diff --git a/src/licensedcode/data/licenses/google-patent-license-fuchsia.LICENSE b/src/licensedcode/data/licenses/google-patent-license-fuchsia.LICENSE index d62d4bd8450..cdd2ce7c0b5 100644 --- a/src/licensedcode/data/licenses/google-patent-license-fuchsia.LICENSE +++ b/src/licensedcode/data/licenses/google-patent-license-fuchsia.LICENSE @@ -1,3 +1,16 @@ +--- +key: google-patent-license-fuchsia +short_name: Google Patent License for Fuchsia +name: Google Patent License for Fuchsia +category: Patent License +owner: Google +homepage_url: https://fuchsia.googlesource.com/fuchsia/+/refs/heads/master/PATENTS +spdx_license_key: LicenseRef-scancode-google-patent-license-fuchsia +faq_url: https://en.wikipedia.org/wiki/Google_Fuchsia +other_urls: + - https://github.com/flutter/flutter/blob/master/PATENTS +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by Google as part of the Fuchsia project. @@ -17,4 +30,4 @@ or counterclaim in a lawsuit) alleging that this implementation of Fuchsia constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of Fuchsia shall terminate as -of the date such litigation is filed. +of the date such litigation is filed. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-patent-license-fuchsia.yml b/src/licensedcode/data/licenses/google-patent-license-fuchsia.yml deleted file mode 100644 index a3d33dc15c3..00000000000 --- a/src/licensedcode/data/licenses/google-patent-license-fuchsia.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: google-patent-license-fuchsia -short_name: Google Patent License for Fuchsia -name: Google Patent License for Fuchsia -category: Patent License -owner: Google -homepage_url: https://fuchsia.googlesource.com/fuchsia/+/refs/heads/master/PATENTS -spdx_license_key: LicenseRef-scancode-google-patent-license-fuchsia -faq_url: https://en.wikipedia.org/wiki/Google_Fuchsia -other_urls: - - https://github.com/flutter/flutter/blob/master/PATENTS diff --git a/src/licensedcode/data/licenses/google-patent-license-fuschia.LICENSE b/src/licensedcode/data/licenses/google-patent-license-fuschia.LICENSE index d62d4bd8450..44ad6f469dc 100644 --- a/src/licensedcode/data/licenses/google-patent-license-fuschia.LICENSE +++ b/src/licensedcode/data/licenses/google-patent-license-fuschia.LICENSE @@ -1,3 +1,15 @@ +--- +key: google-patent-license-fuschia +short_name: Google Patent License for Fuschia +name: Google Patent License for Fuschia +category: Patent License +owner: Google +homepage_url: https://github.com/flutter/flutter/blob/master/PATENTS +faq_url: https://en.wikipedia.org/wiki/Google_Fuchsia +is_deprecated: yes +notes: there was a typo in the license name and key and this is now replaced by google-patent-license-fuchsia +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by Google as part of the Fuchsia project. @@ -17,4 +29,4 @@ or counterclaim in a lawsuit) alleging that this implementation of Fuchsia constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of Fuchsia shall terminate as -of the date such litigation is filed. +of the date such litigation is filed. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-patent-license-fuschia.yml b/src/licensedcode/data/licenses/google-patent-license-fuschia.yml deleted file mode 100644 index 1a864955dee..00000000000 --- a/src/licensedcode/data/licenses/google-patent-license-fuschia.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: google-patent-license-fuschia -short_name: Google Patent License for Fuschia -name: Google Patent License for Fuschia -category: Patent License -owner: Google -homepage_url: https://github.com/flutter/flutter/blob/master/PATENTS -faq_url: https://en.wikipedia.org/wiki/Google_Fuchsia -is_deprecated: yes -notes: there was a typo in the license name and key and this is now replaced by - google-patent-license-fuchsia \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-patent-license-golang.LICENSE b/src/licensedcode/data/licenses/google-patent-license-golang.LICENSE index 4b49510c06b..53fca01746d 100644 --- a/src/licensedcode/data/licenses/google-patent-license-golang.LICENSE +++ b/src/licensedcode/data/licenses/google-patent-license-golang.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-patent-license-golang +short_name: Google Patent License for Go +name: Google Patent License for Go +category: Patent License +owner: Google +homepage_url: https://golang.org/PATENTS +spdx_license_key: LicenseRef-scancode-google-patent-license-golang +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by Google as @@ -17,4 +27,4 @@ cross-claim or counterclaim in a lawsuit) alleging that this implementation of Go or any code incorporated within this implementation of Go constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation of -Go shall terminate as of the date such litigation is filed. +Go shall terminate as of the date such litigation is filed. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-patent-license-golang.yml b/src/licensedcode/data/licenses/google-patent-license-golang.yml deleted file mode 100644 index e6d25e619b4..00000000000 --- a/src/licensedcode/data/licenses/google-patent-license-golang.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-patent-license-golang -short_name: Google Patent License for Go -name: Google Patent License for Go -category: Patent License -owner: Google -homepage_url: https://golang.org/PATENTS -spdx_license_key: LicenseRef-scancode-google-patent-license-golang diff --git a/src/licensedcode/data/licenses/google-patent-license-webm.LICENSE b/src/licensedcode/data/licenses/google-patent-license-webm.LICENSE index 754624395f0..e28a82d58d9 100644 --- a/src/licensedcode/data/licenses/google-patent-license-webm.LICENSE +++ b/src/licensedcode/data/licenses/google-patent-license-webm.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-patent-license-webm +short_name: Google Patent License for WebM +name: Google Patent License for WebM +category: Patent License +owner: Google +homepage_url: https://www.webmproject.org/license/additional/ +spdx_license_key: LicenseRef-scancode-google-patent-license-webm +--- + Additional IP Rights Grant (Patents) ------------------------------------ @@ -21,4 +31,4 @@ of WebM or any code incorporated within any of these implementations of WebM constitute direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for these implementations of WebM shall terminate as -of the date such litigation is filed. +of the date such litigation is filed. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-patent-license-webm.yml b/src/licensedcode/data/licenses/google-patent-license-webm.yml deleted file mode 100644 index f719e3594d1..00000000000 --- a/src/licensedcode/data/licenses/google-patent-license-webm.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-patent-license-webm -short_name: Google Patent License for WebM -name: Google Patent License for WebM -category: Patent License -owner: Google -homepage_url: https://www.webmproject.org/license/additional/ -spdx_license_key: LicenseRef-scancode-google-patent-license-webm diff --git a/src/licensedcode/data/licenses/google-patent-license-webrtc.LICENSE b/src/licensedcode/data/licenses/google-patent-license-webrtc.LICENSE index 49405d9345d..639c0912342 100644 --- a/src/licensedcode/data/licenses/google-patent-license-webrtc.LICENSE +++ b/src/licensedcode/data/licenses/google-patent-license-webrtc.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-patent-license-webrtc +short_name: Google Patent License for WebRTC +name: Google Patent License for WebRTC +category: Patent License +owner: Google +homepage_url: https://webrtc.org/license/additional-ip-grant/ +spdx_license_key: LicenseRef-scancode-google-patent-license-webrtc +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by diff --git a/src/licensedcode/data/licenses/google-patent-license-webrtc.yml b/src/licensedcode/data/licenses/google-patent-license-webrtc.yml deleted file mode 100644 index 2c17b1303ec..00000000000 --- a/src/licensedcode/data/licenses/google-patent-license-webrtc.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-patent-license-webrtc -short_name: Google Patent License for WebRTC -name: Google Patent License for WebRTC -category: Patent License -owner: Google -homepage_url: https://webrtc.org/license/additional-ip-grant/ -spdx_license_key: LicenseRef-scancode-google-patent-license-webrtc diff --git a/src/licensedcode/data/licenses/google-patent-license.LICENSE b/src/licensedcode/data/licenses/google-patent-license.LICENSE index 0df0589687e..c5e64c1031f 100644 --- a/src/licensedcode/data/licenses/google-patent-license.LICENSE +++ b/src/licensedcode/data/licenses/google-patent-license.LICENSE @@ -1,3 +1,12 @@ +--- +key: google-patent-license +short_name: Google Patent License +name: Google Patent License +category: Patent License +owner: Google +spdx_license_key: LicenseRef-scancode-google-patent-license +--- + Google 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, @@ -14,4 +23,4 @@ cross-claim or counterclaim in a lawsuit) alleging that this implementation constitutes direct or contributory patent infringement, or inducement of patent infringement, then any patent rights granted to you under this License for this implementation shall terminate as -of the date such litigation is filed. +of the date such litigation is filed. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/google-patent-license.yml b/src/licensedcode/data/licenses/google-patent-license.yml deleted file mode 100644 index 9c378468c99..00000000000 --- a/src/licensedcode/data/licenses/google-patent-license.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: google-patent-license -short_name: Google Patent License -name: Google Patent License -category: Patent License -owner: Google -spdx_license_key: LicenseRef-scancode-google-patent-license diff --git a/src/licensedcode/data/licenses/google-playcore-sdk-tos-2020.LICENSE b/src/licensedcode/data/licenses/google-playcore-sdk-tos-2020.LICENSE index 0b13b361ffe..7a7e02ee8ac 100644 --- a/src/licensedcode/data/licenses/google-playcore-sdk-tos-2020.LICENSE +++ b/src/licensedcode/data/licenses/google-playcore-sdk-tos-2020.LICENSE @@ -1,3 +1,18 @@ +--- +key: google-playcore-sdk-tos-2020 +short_name: Google Play Core SDK TOS 2020 +name: Google +category: Proprietary Free +owner: Google +homepage_url: https://developer.android.com/guide/playcore#license +spdx_license_key: LicenseRef-scancode-google-playcore-sdk-tos-2020 +other_urls: + - https://developers.google.com/terms + - https://developer.android.com/guide/playcore/license +ignorable_urls: + - https://developer.android.com/guide/playcore/license +--- + Play Core Software Development Kit Terms of Service Last modified: September 24, 2020 diff --git a/src/licensedcode/data/licenses/google-playcore-sdk-tos-2020.yml b/src/licensedcode/data/licenses/google-playcore-sdk-tos-2020.yml deleted file mode 100644 index 3f4923c921e..00000000000 --- a/src/licensedcode/data/licenses/google-playcore-sdk-tos-2020.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: google-playcore-sdk-tos-2020 -short_name: Google Play Core SDK TOS 2020 -name: Google -category: Proprietary Free -owner: Google -homepage_url: https://developer.android.com/guide/playcore#license -spdx_license_key: LicenseRef-scancode-google-playcore-sdk-tos-2020 -other_urls: - - https://developers.google.com/terms - - https://developer.android.com/guide/playcore/license -ignorable_urls: - - https://developer.android.com/guide/playcore/license diff --git a/src/licensedcode/data/licenses/google-tos-2013.LICENSE b/src/licensedcode/data/licenses/google-tos-2013.LICENSE index 491ad621460..e618290470e 100644 --- a/src/licensedcode/data/licenses/google-tos-2013.LICENSE +++ b/src/licensedcode/data/licenses/google-tos-2013.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2013 +short_name: Google TOS 2013 +name: Google Terms of Service 2013 +category: Proprietary Free +owner: Google +homepage_url: http://www.google.com/intl/en/policies/terms/ +spdx_license_key: LicenseRef-scancode-google-tos-2013 +--- + Google Terms of Service Last modified: November 11, 2013 (view archived versions) diff --git a/src/licensedcode/data/licenses/google-tos-2013.yml b/src/licensedcode/data/licenses/google-tos-2013.yml deleted file mode 100644 index 41ead121eb8..00000000000 --- a/src/licensedcode/data/licenses/google-tos-2013.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-tos-2013 -short_name: Google TOS 2013 -name: Google Terms of Service 2013 -category: Proprietary Free -owner: Google -homepage_url: http://www.google.com/intl/en/policies/terms/ -spdx_license_key: LicenseRef-scancode-google-tos-2013 diff --git a/src/licensedcode/data/licenses/google-tos-2014.LICENSE b/src/licensedcode/data/licenses/google-tos-2014.LICENSE index 0ed7564f4d8..2544482b2f7 100644 --- a/src/licensedcode/data/licenses/google-tos-2014.LICENSE +++ b/src/licensedcode/data/licenses/google-tos-2014.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2014 +short_name: Google TOS 2014 +name: Google Terms of Service 2014 +category: Proprietary Free +owner: Google +homepage_url: https://policies.google.com/terms/archive?hl=en +spdx_license_key: LicenseRef-scancode-google-tos-2014 +--- + Google Terms of Service Last modified: April 30, 2014 (view archived versions) diff --git a/src/licensedcode/data/licenses/google-tos-2014.yml b/src/licensedcode/data/licenses/google-tos-2014.yml deleted file mode 100644 index 853da74a6ea..00000000000 --- a/src/licensedcode/data/licenses/google-tos-2014.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-tos-2014 -short_name: Google TOS 2014 -name: Google Terms of Service 2014 -category: Proprietary Free -owner: Google -homepage_url: https://policies.google.com/terms/archive?hl=en -spdx_license_key: LicenseRef-scancode-google-tos-2014 diff --git a/src/licensedcode/data/licenses/google-tos-2017.LICENSE b/src/licensedcode/data/licenses/google-tos-2017.LICENSE index 68c06e04c7d..f50bea7f7e7 100644 --- a/src/licensedcode/data/licenses/google-tos-2017.LICENSE +++ b/src/licensedcode/data/licenses/google-tos-2017.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2017 +short_name: Google TOS 2017 +name: Google Terms of Service 2017 +category: Proprietary Free +owner: Google +homepage_url: https://policies.google.com/terms/archive?hl=en +spdx_license_key: LicenseRef-scancode-google-tos-2017 +--- + Google Terms of Service Last modified: October 25, 2017 (view archived versions) diff --git a/src/licensedcode/data/licenses/google-tos-2017.yml b/src/licensedcode/data/licenses/google-tos-2017.yml deleted file mode 100644 index 2b34b1a7721..00000000000 --- a/src/licensedcode/data/licenses/google-tos-2017.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-tos-2017 -short_name: Google TOS 2017 -name: Google Terms of Service 2017 -category: Proprietary Free -owner: Google -homepage_url: https://policies.google.com/terms/archive?hl=en -spdx_license_key: LicenseRef-scancode-google-tos-2017 diff --git a/src/licensedcode/data/licenses/google-tos-2019.LICENSE b/src/licensedcode/data/licenses/google-tos-2019.LICENSE index 6d6a4046d98..ba70c569e07 100644 --- a/src/licensedcode/data/licenses/google-tos-2019.LICENSE +++ b/src/licensedcode/data/licenses/google-tos-2019.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2019 +short_name: Google TOS 2019 +name: Google Terms of Service 2019 +category: Proprietary Free +owner: Google +homepage_url: https://policies.google.com/terms/archive?hl=en +spdx_license_key: LicenseRef-scancode-google-tos-2019 +--- + Google Terms of Service Effective January 22, 2019 (view archived versions) diff --git a/src/licensedcode/data/licenses/google-tos-2019.yml b/src/licensedcode/data/licenses/google-tos-2019.yml deleted file mode 100644 index 205e8c779d4..00000000000 --- a/src/licensedcode/data/licenses/google-tos-2019.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-tos-2019 -short_name: Google TOS 2019 -name: Google Terms of Service 2019 -category: Proprietary Free -owner: Google -homepage_url: https://policies.google.com/terms/archive?hl=en -spdx_license_key: LicenseRef-scancode-google-tos-2019 diff --git a/src/licensedcode/data/licenses/google-tos-2020.LICENSE b/src/licensedcode/data/licenses/google-tos-2020.LICENSE index 8d43b15bad8..10777335196 100644 --- a/src/licensedcode/data/licenses/google-tos-2020.LICENSE +++ b/src/licensedcode/data/licenses/google-tos-2020.LICENSE @@ -1,3 +1,13 @@ +--- +key: google-tos-2020 +short_name: Google TOS 2020 +name: Google Terms of Service 2020 +category: Proprietary Free +owner: Google +homepage_url: https://policies.google.com/terms/archive?hl=en +spdx_license_key: LicenseRef-scancode-google-tos-2020 +--- + Effective March 31, 2020 | Archived versions | Download PDF What’s covered in these terms diff --git a/src/licensedcode/data/licenses/google-tos-2020.yml b/src/licensedcode/data/licenses/google-tos-2020.yml deleted file mode 100644 index 861ba31e56b..00000000000 --- a/src/licensedcode/data/licenses/google-tos-2020.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: google-tos-2020 -short_name: Google TOS 2020 -name: Google Terms of Service 2020 -category: Proprietary Free -owner: Google -homepage_url: https://policies.google.com/terms/archive?hl=en -spdx_license_key: LicenseRef-scancode-google-tos-2020 diff --git a/src/licensedcode/data/licenses/gpl-1.0-plus.LICENSE b/src/licensedcode/data/licenses/gpl-1.0-plus.LICENSE index 1337c018285..9614c315f75 100644 --- a/src/licensedcode/data/licenses/gpl-1.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/gpl-1.0-plus.LICENSE @@ -1,3 +1,28 @@ +--- +key: gpl-1.0-plus +short_name: GPL 1.0 or later +name: GNU General Public License 1.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +notes: Per SPDX.org, this license was released February 1989. +spdx_license_key: GPL-1.0-or-later +other_spdx_license_keys: + - GPL-1.0+ + - LicenseRef-GPL +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +other_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + 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 1, or (at your option) any later version. @@ -264,4 +289,4 @@ necessary. Here a sample; alter the names: , 1 April 1989 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-1.0-plus.yml b/src/licensedcode/data/licenses/gpl-1.0-plus.yml deleted file mode 100644 index 311c3b5d2a4..00000000000 --- a/src/licensedcode/data/licenses/gpl-1.0-plus.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: gpl-1.0-plus -short_name: GPL 1.0 or later -name: GNU General Public License 1.0 or later -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html -notes: Per SPDX.org, this license was released February 1989. -spdx_license_key: GPL-1.0-or-later -other_spdx_license_keys: - - GPL-1.0+ - - LicenseRef-GPL -text_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html -other_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/gpl-1.0.LICENSE b/src/licensedcode/data/licenses/gpl-1.0.LICENSE index 0bdd8f026e6..7f2feed830d 100644 --- a/src/licensedcode/data/licenses/gpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/gpl-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: gpl-1.0 +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-1.0.html +notes: Per SPDX.org, this license was released February 1989. +spdx_license_key: GPL-1.0-only +other_spdx_license_keys: + - GPL-1.0 +text_urls: + - http://www.gnu.org/licenses/gpl-1.0.txt +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html + - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 @@ -252,4 +277,4 @@ necessary. Here a sample; alter the names: , 1 April 1989 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-1.0.yml b/src/licensedcode/data/licenses/gpl-1.0.yml deleted file mode 100644 index 29103215a7a..00000000000 --- a/src/licensedcode/data/licenses/gpl-1.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: gpl-1.0 -short_name: GPL 1.0 -name: GNU General Public License 1.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-1.0.html -notes: Per SPDX.org, this license was released February 1989. -spdx_license_key: GPL-1.0-only -other_spdx_license_keys: - - GPL-1.0 -text_urls: - - http://www.gnu.org/licenses/gpl-1.0.txt -faq_url: http://www.gnu.org/licenses/gpl-faq.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html - - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/gpl-2.0-adaptec.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-adaptec.LICENSE index 96975ffa7ca..d663f5e6bce 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-adaptec.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-adaptec.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-adaptec +short_name: GPL 2.0 plus Adaptec conditions +name: GPL 2.0 plus Adaptec conditions +category: Copyleft +owner: Adaptec +notes: this is a combination of GPL and BSD terms +spdx_license_key: LicenseRef-scancode-gpl-2.0-adaptec +minimum_coverage: 90 +--- + You are permitted to redistribute, use and modify this README file in whole or in part in conjunction with redistribution of software governed by the General Public License, provided that the following conditions are met: @@ -22,4 +33,4 @@ 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 README -FILE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +FILE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-adaptec.yml b/src/licensedcode/data/licenses/gpl-2.0-adaptec.yml deleted file mode 100644 index b2e3fbc6cf0..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-adaptec.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-adaptec -short_name: GPL 2.0 plus Adaptec conditions -name: GPL 2.0 plus Adaptec conditions -category: Copyleft -owner: Adaptec -notes: this is a combination of GPL and BSD terms -spdx_license_key: LicenseRef-scancode-gpl-2.0-adaptec -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/gpl-2.0-autoconf.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-autoconf.LICENSE index 7f04b5aed01..b201323570e 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-autoconf.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-autoconf.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-autoconf +is_deprecated: yes +short_name: GPL 2.0 with Autoconf exception +name: GPL 2.0 with Autoconf exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: GPL-2.0-with-autoconf-exception +text_urls: + - http://ac-archive.sourceforge.net/doc/copyright.html +notes: replaced by autoconf-exception-2.0 +--- + This library 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, or (at your option) diff --git a/src/licensedcode/data/licenses/gpl-2.0-autoconf.yml b/src/licensedcode/data/licenses/gpl-2.0-autoconf.yml deleted file mode 100644 index 0a3ab35a71b..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-autoconf.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-autoconf -is_deprecated: yes -short_name: GPL 2.0 with Autoconf exception -name: GPL 2.0 with Autoconf exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: GPL-2.0-with-autoconf-exception -text_urls: - - http://ac-archive.sourceforge.net/doc/copyright.html -notes: replaced by autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-autoopts.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-autoopts.LICENSE index 6925c85bce8..5c821b29c08 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-autoopts.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-autoopts.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-autoopts +is_deprecated: yes +short_name: GPL 2.0 or later with AutoOpts exception +name: GPL 2.0 or later with AutoOpts exception +category: Copyleft Limited +owner: Bruce Korb +homepage_url: http://www.gnu.org/software/autogen/autoopts.html +is_exception: yes +--- + Automated Options is free software. You may redistribute it and/or modify it under the terms of the GNU General Public License, as published by the Free Software diff --git a/src/licensedcode/data/licenses/gpl-2.0-autoopts.yml b/src/licensedcode/data/licenses/gpl-2.0-autoopts.yml deleted file mode 100644 index 03be7c977d8..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-autoopts.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-autoopts -is_deprecated: yes -short_name: GPL 2.0 or later with AutoOpts exception -name: GPL 2.0 or later with AutoOpts exception -category: Copyleft Limited -owner: Bruce Korb -homepage_url: http://www.gnu.org/software/autogen/autoopts.html -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-bison-2.2.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-bison-2.2.LICENSE index 5e117332df9..2a9ed927b4f 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-bison-2.2.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-bison-2.2.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-bison-2.2 +is_deprecated: yes +short_name: GPL 2.0 or later with Bison 2.2 exception +name: GPL 2.0 or later with Bison 2.2 exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by an expression of gpl-2.0 WITH bison-exception-2.2 Was formerly using this + deprecated SDX id GPL-2.0-with-bison-exception +is_exception: yes +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +--- + 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, or (at your option) any diff --git a/src/licensedcode/data/licenses/gpl-2.0-bison-2.2.yml b/src/licensedcode/data/licenses/gpl-2.0-bison-2.2.yml deleted file mode 100644 index de1465be0bd..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-bison-2.2.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-2.0-bison-2.2 -is_deprecated: yes -short_name: GPL 2.0 or later with Bison 2.2 exception -name: GPL 2.0 or later with Bison 2.2 exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -notes: replaced by an expression of gpl-2.0 WITH bison-exception-2.2 Was formerly using this - deprecated SDX id GPL-2.0-with-bison-exception -is_exception: yes -faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions diff --git a/src/licensedcode/data/licenses/gpl-2.0-bison.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-bison.LICENSE index 2a2cee27ae1..e7dc6771721 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-bison.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-bison.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-bison +is_deprecated: yes +short_name: GPL 2.0 with bison exception +name: GPL 2.0 with bison exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by bison-exception-2.0 +is_exception: yes +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +other_urls: + - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/licenses/gpl-2.0-bison.yml b/src/licensedcode/data/licenses/gpl-2.0-bison.yml deleted file mode 100644 index f0dc2fd75ed..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-bison.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-bison -is_deprecated: yes -short_name: GPL 2.0 with bison exception -name: GPL 2.0 with bison exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -notes: replaced by bison-exception-2.0 -is_exception: yes -faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions -other_urls: - - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 diff --git a/src/licensedcode/data/licenses/gpl-2.0-broadcom-linking.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-broadcom-linking.LICENSE index a0aac3ade3b..05537c6f50f 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-broadcom-linking.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-broadcom-linking.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-broadcom-linking +is_deprecated: yes +short_name: GPL 2.0 with Broadcom Linking Exception +name: GPL 2.0 with Broadcom Linking Exception +category: Copyleft Limited +owner: Broadcom +notes: replaced by broadcom-linking-exception-2.0 +is_exception: yes +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2 (the diff --git a/src/licensedcode/data/licenses/gpl-2.0-broadcom-linking.yml b/src/licensedcode/data/licenses/gpl-2.0-broadcom-linking.yml deleted file mode 100644 index 4187117821b..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-broadcom-linking.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-broadcom-linking -is_deprecated: yes -short_name: GPL 2.0 with Broadcom Linking Exception -name: GPL 2.0 with Broadcom Linking Exception -category: Copyleft Limited -owner: Broadcom -notes: replaced by broadcom-linking-exception-2.0 -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-classpath.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-classpath.LICENSE index 7a1b3b49636..8c8e7b75c4d 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-classpath.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-classpath.LICENSE @@ -1,3 +1,20 @@ +--- +key: gpl-2.0-classpath +is_deprecated: yes +short_name: GPL 2.0 with classpath exception +name: GPL 2.0 with classpath exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/software/classpath/ +notes: This is an obsolete license replaced by the classpath-exception-2.0 +is_exception: yes +spdx_license_key: GPL-2.0-with-classpath-exception +text_urls: + - http://www.gnu.org/software/classpath/license.html +other_urls: + - http://en.wikipedia.org/wiki/GPL_linking_exception +--- + This library 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, 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 General Public License for more details. diff --git a/src/licensedcode/data/licenses/gpl-2.0-classpath.yml b/src/licensedcode/data/licenses/gpl-2.0-classpath.yml deleted file mode 100644 index 3690b61d319..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-classpath.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: gpl-2.0-classpath -is_deprecated: yes -short_name: GPL 2.0 with classpath exception -name: GPL 2.0 with classpath exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/software/classpath/ -notes: This is an obsolete license replaced by the classpath-exception-2.0 -is_exception: yes -spdx_license_key: GPL-2.0-with-classpath-exception -text_urls: - - http://www.gnu.org/software/classpath/license.html -other_urls: - - http://en.wikipedia.org/wiki/GPL_linking_exception diff --git a/src/licensedcode/data/licenses/gpl-2.0-cygwin.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-cygwin.LICENSE index f575bff86b2..04aadd47817 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-cygwin.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-cygwin.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-cygwin +is_deprecated: yes +short_name: GPL 2.0 with Cygwin exception +name: GPL 2.0 with Cygwin exception +category: Copyleft Limited +owner: Cygwin Project +homepage_url: http://cygwin.com/licensing.html +is_exception: yes +notes: replaced by cygwin-exception-2.0 +text_urls: + - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) version 2, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/licenses/gpl-2.0-cygwin.yml b/src/licensedcode/data/licenses/gpl-2.0-cygwin.yml deleted file mode 100644 index b046c32a85e..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-cygwin.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-cygwin -is_deprecated: yes -short_name: GPL 2.0 with Cygwin exception -name: GPL 2.0 with Cygwin exception -category: Copyleft Limited -owner: Cygwin Project -homepage_url: http://cygwin.com/licensing.html -is_exception: yes -notes: replaced by cygwin-exception-2.0 -text_urls: - - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src diff --git a/src/licensedcode/data/licenses/gpl-2.0-djvu.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-djvu.LICENSE index 95c8b7bc9a9..e62224117c7 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-djvu.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-djvu.LICENSE @@ -1,3 +1,21 @@ +--- +key: gpl-2.0-djvu +short_name: GPL 2.0 with DjVu Patent Grant +name: GNU General Public License 2.0 with DjVu Patent Grant +category: Copyleft +owner: LizardTech +notes: GPL and other terms +spdx_license_key: LicenseRef-scancode-gpl-2.0-djvu +other_urls: + - https://sourceforge.net/projects/djvu/files/DjVuLibre/3.5.1/djvulibre-3.5.1.tar.gz/download +ignorable_copyrights: + - Copyright (c) 1999-2001 LizardTech, Inc. +ignorable_holders: + - LizardTech, Inc. +ignorable_urls: + - http://www.fsf.org/ +--- + DjVu (r) Reference Library (v. 3.5) Copyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved. diff --git a/src/licensedcode/data/licenses/gpl-2.0-djvu.yml b/src/licensedcode/data/licenses/gpl-2.0-djvu.yml deleted file mode 100644 index 2a349c7efab..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-djvu.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: gpl-2.0-djvu -short_name: GPL 2.0 with DjVu Patent Grant -name: GNU General Public License 2.0 with DjVu Patent Grant -category: Copyleft -owner: LizardTech -notes: GPL and other terms -spdx_license_key: LicenseRef-scancode-gpl-2.0-djvu -other_urls: - - https://sourceforge.net/projects/djvu/files/DjVuLibre/3.5.1/djvulibre-3.5.1.tar.gz/download -ignorable_copyrights: - - Copyright (c) 1999-2001 LizardTech, Inc. -ignorable_holders: - - LizardTech, Inc. -ignorable_urls: - - http://www.fsf.org/ diff --git a/src/licensedcode/data/licenses/gpl-2.0-font.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-font.LICENSE index d3c7e2e747c..0d35d39a6d1 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-font.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-font.LICENSE @@ -1,3 +1,18 @@ +--- +key: gpl-2.0-font +is_deprecated: yes +short_name: GPL 2.0 with font exception +name: GPL 2.0 with font exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-faq.html#FontException +is_exception: yes +spdx_license_key: GPL-2.0-with-font-exception +text_urls: + - http://www.gnu.org/licenses/gpl-faq.html#FontException +notes: replaced by font-exception-gpl +--- + This library 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 diff --git a/src/licensedcode/data/licenses/gpl-2.0-font.yml b/src/licensedcode/data/licenses/gpl-2.0-font.yml deleted file mode 100644 index 458fa49dfbd..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-font.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: gpl-2.0-font -is_deprecated: yes -short_name: GPL 2.0 with font exception -name: GPL 2.0 with font exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-faq.html#FontException -is_exception: yes -spdx_license_key: GPL-2.0-with-font-exception -text_urls: - - http://www.gnu.org/licenses/gpl-faq.html#FontException -notes: replaced by font-exception-gpl \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-freertos.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-freertos.LICENSE index 339328239c4..bc57243b850 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-freertos.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-freertos.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-freertos +is_deprecated: yes +notes: replaced by freertos-exception-2.0 +short_name: GPL 2.0 with FreeRTOS exception +name: GPL 2.0 with FreeRTOS exception +category: Copyleft Limited +owner: FreeRTOS +homepage_url: http://www.freertos.org/a00114.html +is_exception: yes +text_urls: + - http://www.freertos.org/ +--- + The FreeRTOS source code is licensed by a modified GNU General Public License - the modification taking the form of an exception. diff --git a/src/licensedcode/data/licenses/gpl-2.0-freertos.yml b/src/licensedcode/data/licenses/gpl-2.0-freertos.yml deleted file mode 100644 index c7b8ed18cda..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-freertos.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-freertos -is_deprecated: yes -notes: replaced by freertos-exception-2.0 -short_name: GPL 2.0 with FreeRTOS exception -name: GPL 2.0 with FreeRTOS exception -category: Copyleft Limited -owner: FreeRTOS -homepage_url: http://www.freertos.org/a00114.html -is_exception: yes -text_urls: - - http://www.freertos.org/ diff --git a/src/licensedcode/data/licenses/gpl-2.0-gcc-compiler-exception.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-gcc-compiler-exception.LICENSE index 8a61fd7ef92..9d213d20a0d 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-gcc-compiler-exception.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-gcc-compiler-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-gcc-compiler-exception +is_deprecated: yes +short_name: GPL 2.0 with GCC compiler exception +name: GPL 2.0 with GCC compiler exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +notes: replaced by gcc-compiler-exception-2.0 +--- + GCC 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, or (at your option) diff --git a/src/licensedcode/data/licenses/gpl-2.0-gcc-compiler-exception.yml b/src/licensedcode/data/licenses/gpl-2.0-gcc-compiler-exception.yml deleted file mode 100644 index 77b87d075b9..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-gcc-compiler-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-2.0-gcc-compiler-exception -is_deprecated: yes -short_name: GPL 2.0 with GCC compiler exception -name: GPL 2.0 with GCC compiler exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -notes: replaced by gcc-compiler-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-gcc.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-gcc.LICENSE index 744cdd238f4..747f9d7b873 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-gcc.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-gcc.LICENSE @@ -1,3 +1,18 @@ +--- +key: gpl-2.0-gcc +is_deprecated: yes +short_name: GPL 2.0 or later with GCC LInking exception +name: GPL 2.0 or later with GCC Runtime Library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: GPL-2.0-with-GCC-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10 +notes: replaced by gcc-linking-exception-2.0 +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/licenses/gpl-2.0-gcc.yml b/src/licensedcode/data/licenses/gpl-2.0-gcc.yml deleted file mode 100644 index 8b54e790006..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-gcc.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: gpl-2.0-gcc -is_deprecated: yes -short_name: GPL 2.0 or later with GCC LInking exception -name: GPL 2.0 or later with GCC Runtime Library exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: GPL-2.0-with-GCC-exception -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/libgcc1.c;h=762f5143fc6eed57b6797c82710f3538aa52b40b;hb=cb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10 -notes: replaced by gcc-linking-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-glibc.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-glibc.LICENSE index 25576119d99..8189690f26c 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-glibc.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-glibc.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-glibc +is_deprecated: yes +short_name: GPL 2.0 with GLibC exception +name: GPL 2.0 with GLibC exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl.html +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/gpl.html +notes: replaced by mif-exception +--- + This library 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, or (at your option) any @@ -20,4 +34,4 @@ compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU General Public License. +covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-glibc.yml b/src/licensedcode/data/licenses/gpl-2.0-glibc.yml deleted file mode 100644 index bb2cda78459..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-glibc.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-glibc -is_deprecated: yes -short_name: GPL 2.0 with GLibC exception -name: GPL 2.0 with GLibC exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl.html -is_exception: yes -text_urls: - - http://www.gnu.org/licenses/gpl.html -notes: replaced by mif-exception diff --git a/src/licensedcode/data/licenses/gpl-2.0-guile.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-guile.LICENSE index 9543425c4e1..664d4e09f78 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-guile.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-guile.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-guile +is_deprecated: yes +short_name: GPL 2.0 with GUILE exception +name: GPL 2.0 with GUILE exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +notes: replaced by guile-exception-2.0 +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/licenses/gpl-2.0-guile.yml b/src/licensedcode/data/licenses/gpl-2.0-guile.yml deleted file mode 100644 index 6c2ce0f8466..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-guile.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-guile -is_deprecated: yes -short_name: GPL 2.0 with GUILE exception -name: GPL 2.0 with GUILE exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -notes: replaced by guile-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-ice.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-ice.LICENSE index 4cf0e8d0285..25152a6731f 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-ice.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-ice.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-ice +is_deprecated: yes +short_name: GPL 2.0 with Ice exception +name: GPL 2.0 with Ice exception +category: Copyleft +owner: ZeroC +homepage_url: https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE +is_exception: yes +other_urls: + - http://www.gnu.org/licenses +notes: replaced by ice-exception-2.0 +--- + This copy of Ice 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. diff --git a/src/licensedcode/data/licenses/gpl-2.0-ice.yml b/src/licensedcode/data/licenses/gpl-2.0-ice.yml deleted file mode 100644 index 7265500ae89..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-ice.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-ice -is_deprecated: yes -short_name: GPL 2.0 with Ice exception -name: GPL 2.0 with Ice exception -category: Copyleft -owner: ZeroC -homepage_url: https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE -is_exception: yes -other_urls: - - http://www.gnu.org/licenses -notes: replaced by ice-exception-2.0 diff --git a/src/licensedcode/data/licenses/gpl-2.0-independent-module-linking.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-independent-module-linking.LICENSE index f5e6b036278..5da564432b7 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-independent-module-linking.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-independent-module-linking.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-independent-module-linking +is_deprecated: yes +short_name: GPL 2.0 with Independent Module Linking exception +name: GPL 2.0 with Independent Module Linking exception +category: Copyleft Limited +owner: ICSharpCode +homepage_url: http://icsharpcode.github.io/SharpZipLib/ +notes: this is a classpath exception +is_exception: yes +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/licenses/gpl-2.0-independent-module-linking.yml b/src/licensedcode/data/licenses/gpl-2.0-independent-module-linking.yml deleted file mode 100644 index 4605c2dfd0d..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-independent-module-linking.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-2.0-independent-module-linking -is_deprecated: yes -short_name: GPL 2.0 with Independent Module Linking exception -name: GPL 2.0 with Independent Module Linking exception -category: Copyleft Limited -owner: ICSharpCode -homepage_url: http://icsharpcode.github.io/SharpZipLib/ -notes: this is a classpath exception -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-iolib.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-iolib.LICENSE index a6bd43cf023..3d0d84c31e9 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-iolib.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-iolib.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-iolib +is_deprecated: yes +short_name: GPL 2.0 with GNU IO Library exception +name: GPL 2.0 with GNU IO Library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +notes: replaced by iolib-exception-2.0 +--- + This is part of libio/iostream, providing -*- C++ -*- input/output. Copyright (C) 2000 Free Software Foundation diff --git a/src/licensedcode/data/licenses/gpl-2.0-iolib.yml b/src/licensedcode/data/licenses/gpl-2.0-iolib.yml deleted file mode 100644 index 6a93a6f8b73..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-iolib.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-iolib -is_deprecated: yes -short_name: GPL 2.0 with GNU IO Library exception -name: GPL 2.0 with GNU IO Library exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -notes: replaced by iolib-exception-2.0 diff --git a/src/licensedcode/data/licenses/gpl-2.0-iso-cpp.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-iso-cpp.LICENSE index b0a1d1b2745..9d011a6b843 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-iso-cpp.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-iso-cpp.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-iso-cpp +is_deprecated: yes +short_name: GPL 2.0 with ISO C++ Library exception +name: GPL 2.0 with ISO C++ Library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by mif-exception +--- + This file is part of the GNU ISO C++ Library. This library 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 @@ -20,4 +34,4 @@ compile this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU General Public License. +covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-iso-cpp.yml b/src/licensedcode/data/licenses/gpl-2.0-iso-cpp.yml deleted file mode 100644 index bbd7a183322..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-iso-cpp.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-iso-cpp -is_deprecated: yes -short_name: GPL 2.0 with ISO C++ Library exception -name: GPL 2.0 with ISO C++ Library exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -is_exception: yes -text_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -notes: replaced by mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-javascript.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-javascript.LICENSE index 48fe96ed52a..a70c1562346 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-javascript.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-javascript.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-javascript +is_deprecated: yes +short_name: GPL 2.0 with Javascript exception +name: GPL 2.0 with Javascript exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by javascript-exception-2.0 +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/licenses/gpl-2.0-javascript.yml b/src/licensedcode/data/licenses/gpl-2.0-javascript.yml deleted file mode 100644 index c640be375cd..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-javascript.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-javascript -is_deprecated: yes -short_name: GPL 2.0 with Javascript exception -name: GPL 2.0 with Javascript exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -notes: replaced by javascript-exception-2.0 -is_exception: yes -text_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/licenses/gpl-2.0-kernel.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-kernel.LICENSE index de50625fb5b..bf7c188531e 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-kernel.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-kernel.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-kernel +is_deprecated: yes +short_name: GPL 2.0 with Kernel Exception +name: GPL 2.0 with Kernel Exception +category: Copyleft Limited +owner: Linux Foundation +is_exception: yes +notes: replaced by linux-syscall-exception-gpl +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/licenses/gpl-2.0-kernel.yml b/src/licensedcode/data/licenses/gpl-2.0-kernel.yml deleted file mode 100644 index 92cb1d0922b..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-kernel.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-kernel -is_deprecated: yes -short_name: GPL 2.0 with Kernel Exception -name: GPL 2.0 with Kernel Exception -category: Copyleft Limited -owner: Linux Foundation -is_exception: yes -notes: replaced by linux-syscall-exception-gpl \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-koterov.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-koterov.LICENSE index 527586cbac6..2bfd3390523 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-koterov.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-koterov.LICENSE @@ -1,3 +1,19 @@ +--- +key: gpl-2.0-koterov +short_name: GPL 2.0 with Dmitry Koterov additions +name: GPL 2.0 with Dmitry Koterov additions +category: Copyleft +owner: Dmitry Koterov +homepage_url: https://github.com/DmitryKoterov/dklab_realplexor/blob/master/dklab_realplexor.license-additional.txt +spdx_license_key: LicenseRef-scancode-gpl-2.0-koterov +ignorable_authors: + - dmitry.koterov@gmail.com +ignorable_urls: + - http://dmitry.moikrug.ru/ +ignorable_emails: + - dmitry.koterov@gmail.com +--- + This library 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, 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 General Public License for more details. diff --git a/src/licensedcode/data/licenses/gpl-2.0-koterov.yml b/src/licensedcode/data/licenses/gpl-2.0-koterov.yml deleted file mode 100644 index f5dd5f3e538..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-koterov.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: gpl-2.0-koterov -short_name: GPL 2.0 with Dmitry Koterov additions -name: GPL 2.0 with Dmitry Koterov additions -category: Copyleft -owner: Dmitry Koterov -homepage_url: https://github.com/DmitryKoterov/dklab_realplexor/blob/master/dklab_realplexor.license-additional.txt -spdx_license_key: LicenseRef-scancode-gpl-2.0-koterov -ignorable_authors: - - dmitry.koterov@gmail.com -ignorable_urls: - - http://dmitry.moikrug.ru/ -ignorable_emails: - - dmitry.koterov@gmail.com diff --git a/src/licensedcode/data/licenses/gpl-2.0-libgit2.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-libgit2.LICENSE index da73566cbf7..1e3f7834cd2 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-libgit2.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-libgit2.LICENSE @@ -1,3 +1,24 @@ +--- +key: gpl-2.0-libgit2 +is_deprecated: yes +short_name: GPL 2.0 with libgit2 exception +name: GPL 2.0 with libgit2 exception +category: Copyleft Limited +owner: libgit2 Project +homepage_url: https://github.com/libgit2/libgit2/blob/master/COPYING +is_exception: yes +notes: replaced by gcc-linking-exception-2.0 +standard_notice: | + In addition to the permissions in the GNU General Public License, + the authors give you unlimited permission to link the compiled + version of this library into combinations with other programs, + and to distribute those combinations without any restriction + coming from the use of this file. (The General Public License + restrictions do apply in other respects; for example, they cover + modification of the file, and distribution when not linked into + a combined executable.) +--- + Note that the only valid version of the GPL as far as this project is concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x or whatever), unless explicitly otherwise stated. @@ -13,5 +34,4 @@ Note that the only valid version of the GPL as far as this project coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into - a combined executable.) - + a combined executable.) \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-libgit2.yml b/src/licensedcode/data/licenses/gpl-2.0-libgit2.yml deleted file mode 100644 index 5bb1a6c7fec..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-libgit2.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: gpl-2.0-libgit2 -is_deprecated: yes -short_name: GPL 2.0 with libgit2 exception -name: GPL 2.0 with libgit2 exception -category: Copyleft Limited -owner: libgit2 Project -homepage_url: https://github.com/libgit2/libgit2/blob/master/COPYING -is_exception: yes -notes: replaced by gcc-linking-exception-2.0 -standard_notice: |- - In addition to the permissions in the GNU General Public License, - the authors give you unlimited permission to link the compiled - version of this library into combinations with other programs, - and to distribute those combinations without any restriction - coming from the use of this file. (The General Public License - restrictions do apply in other respects; for example, they cover - modification of the file, and distribution when not linked into - a combined executable.) diff --git a/src/licensedcode/data/licenses/gpl-2.0-library.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-library.LICENSE index a8b05a54a8d..cb3019fbb4b 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-library.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-library.LICENSE @@ -1,3 +1,19 @@ +--- +key: gpl-2.0-library +is_deprecated: yes +short_name: GPL 2.0 with Library exception +name: GPL 2.0 with Library exception +category: Copyleft Limited +owner: Grammatica +notes: | + this classpath exception notice was last used in older versions of + grammatica and is no longer relevant. Use the classpath-exception-2.0 + instead. +is_exception: yes +other_urls: + - http://grammatica.percederberg.net/index.html +--- + The software in this package is distributed under the GNU General Public License with the "Library Exception" described below. A copy of GNU General Public License (GPL) is included in this distribution, in the diff --git a/src/licensedcode/data/licenses/gpl-2.0-library.yml b/src/licensedcode/data/licenses/gpl-2.0-library.yml deleted file mode 100644 index 518a8b4747b..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-library.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: gpl-2.0-library -is_deprecated: yes -short_name: GPL 2.0 with Library exception -name: GPL 2.0 with Library exception -category: Copyleft Limited -owner: Grammatica -notes: |- - this classpath exception notice was last used in older versions of - grammatica and is no longer relevant. Use the classpath-exception-2.0 - instead. -is_exception: yes -other_urls: - - http://grammatica.percederberg.net/index.html diff --git a/src/licensedcode/data/licenses/gpl-2.0-libtool.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-libtool.LICENSE index 4d226ccf026..3517f4966ac 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-libtool.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-libtool.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-libtool +is_deprecated: yes +short_name: GPL 2.0 with GNU Libtool exception +name: GPL 2.0 with GNU Libtool exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +notes: replaced by libtool-exception-2.0 +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/licenses/gpl-2.0-libtool.yml b/src/licensedcode/data/licenses/gpl-2.0-libtool.yml deleted file mode 100644 index 4cb4b230207..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-libtool.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-libtool -is_deprecated: yes -short_name: GPL 2.0 with GNU Libtool exception -name: GPL 2.0 with GNU Libtool exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -notes: replaced by libtool-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-lmbench.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-lmbench.LICENSE index 1211a0fd10c..431ba62b7e4 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-lmbench.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-lmbench.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-lmbench +is_deprecated: yes +short_name: GPL 2.0 with LMBench exception +name: GPL 2.0 with LMBench exception +category: Copyleft +owner: Larry McVoy +homepage_url: http://lmbench.sourceforge.net/ +is_exception: yes +--- + Distributed under the FSF GPL with additional restriction that results may be published only if (1) the benchmark is unmodified, and diff --git a/src/licensedcode/data/licenses/gpl-2.0-lmbench.yml b/src/licensedcode/data/licenses/gpl-2.0-lmbench.yml deleted file mode 100644 index e7a16d9c47d..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-lmbench.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-lmbench -is_deprecated: yes -short_name: GPL 2.0 with LMBench exception -name: GPL 2.0 with LMBench exception -category: Copyleft -owner: Larry McVoy -homepage_url: http://lmbench.sourceforge.net/ -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-mysql-connector-odbc.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-mysql-connector-odbc.LICENSE index 11ea87e1221..a03abd6b149 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-mysql-connector-odbc.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-mysql-connector-odbc.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-mysql-connector-odbc +is_deprecated: yes +short_name: GPL 2.0 with MySQL Connector ODBC exception +name: GPL 2.0 with MySQL Connector ODBC exception +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by mysql-connector-odbc-exception-2.0 +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/licenses/gpl-2.0-mysql-connector-odbc.yml b/src/licensedcode/data/licenses/gpl-2.0-mysql-connector-odbc.yml deleted file mode 100644 index aa88690757f..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-mysql-connector-odbc.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-mysql-connector-odbc -is_deprecated: yes -short_name: GPL 2.0 with MySQL Connector ODBC exception -name: GPL 2.0 with MySQL Connector ODBC exception -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -is_exception: yes -text_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -notes: replaced by mysql-connector-odbc-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-mysql-floss.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-mysql-floss.LICENSE index 16fdb7bee3a..0c1baea0988 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-mysql-floss.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-mysql-floss.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-mysql-floss +is_deprecated: yes +short_name: GPL 2.0 with MySQL FLOSS exception +name: GPL 2.0 with MySQL FLOSS exception +category: Copyleft +owner: Oracle Corporation +homepage_url: https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by mysql-floss-exception-2.0 +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/licenses/gpl-2.0-mysql-floss.yml b/src/licensedcode/data/licenses/gpl-2.0-mysql-floss.yml deleted file mode 100644 index 0ca43f35c00..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-mysql-floss.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-mysql-floss -is_deprecated: yes -short_name: GPL 2.0 with MySQL FLOSS exception -name: GPL 2.0 with MySQL FLOSS exception -category: Copyleft -owner: Oracle Corporation -homepage_url: https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception -is_exception: yes -text_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -notes: replaced by mysql-floss-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-openjdk.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-openjdk.LICENSE index a6fb871b9a6..cbad7144b0a 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-openjdk.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-openjdk.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-openjdk +is_deprecated: yes +short_name: GPL 2.0 with OpenJDK Classpath exception +name: GPL 2.0 with OpenJDK Classpath exception +category: Copyleft Limited +owner: Oracle (Sun) +notes: | + use a GPL with the openjdk-exception or with the classpath-exception-2.0 + instead +is_exception: yes +faq_url: http://openjdk.java.net/legal/exception-modules-2007-05-08.html +--- + This library 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, 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 General Public License for more details. diff --git a/src/licensedcode/data/licenses/gpl-2.0-openjdk.yml b/src/licensedcode/data/licenses/gpl-2.0-openjdk.yml deleted file mode 100644 index f6f47064069..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-openjdk.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-openjdk -is_deprecated: yes -short_name: GPL 2.0 with OpenJDK Classpath exception -name: GPL 2.0 with OpenJDK Classpath exception -category: Copyleft Limited -owner: Oracle (Sun) -notes: |- - use a GPL with the openjdk-exception or with the classpath-exception-2.0 - instead -is_exception: yes -faq_url: http://openjdk.java.net/legal/exception-modules-2007-05-08.html diff --git a/src/licensedcode/data/licenses/gpl-2.0-openssl.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-openssl.LICENSE index a16b9139e4a..9c7c086a7b0 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-openssl.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-openssl.LICENSE @@ -1,3 +1,20 @@ +--- +key: gpl-2.0-openssl +is_deprecated: yes +short_name: GPL 2.0 with OpenSSL exception +name: GPL 2.0 with OpenSSL exception +category: Copyleft Limited +owner: OpenSSL +homepage_url: http://www.openssl.org/source/license.html +is_exception: yes +text_urls: + - http://www.openssl.org/source/license.html +faq_url: http://people.gnome.org/~markmc/openssl-and-the-gpl.html +other_urls: + - http://people.gnome.org/~markmc/openssl-and-the-gpl.html +notes: replaced by openssl-exception-gpl-2.0 +--- + The OpenSSL License is not compatible with the GPL, since it contains the following two clauses: * 3. All advertising materials mentioning features or use of this diff --git a/src/licensedcode/data/licenses/gpl-2.0-openssl.yml b/src/licensedcode/data/licenses/gpl-2.0-openssl.yml deleted file mode 100644 index 3e46bea7cb4..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-openssl.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: gpl-2.0-openssl -is_deprecated: yes -short_name: GPL 2.0 with OpenSSL exception -name: GPL 2.0 with OpenSSL exception -category: Copyleft Limited -owner: OpenSSL -homepage_url: http://www.openssl.org/source/license.html -is_exception: yes -text_urls: - - http://www.openssl.org/source/license.html -faq_url: http://people.gnome.org/~markmc/openssl-and-the-gpl.html -other_urls: - - http://people.gnome.org/~markmc/openssl-and-the-gpl.html -notes: replaced by openssl-exception-gpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-oracle-mysql-foss.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-oracle-mysql-foss.LICENSE index 58ed6450455..255521ab3d9 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-oracle-mysql-foss.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-oracle-mysql-foss.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-oracle-mysql-foss +is_deprecated: yes +short_name: GPL 2.0 with Oracle MySQL FOSS exception +name: GPL 2.0 with Oracle MySQL FOSS exception +category: Copyleft +owner: Oracle Corporation +homepage_url: http://www.mysql.com/about/legal/licensing/foss-exception.html +is_exception: yes +notes: replaced by oracle-mysql-foss-exception-2.0 +--- + This library 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. diff --git a/src/licensedcode/data/licenses/gpl-2.0-oracle-mysql-foss.yml b/src/licensedcode/data/licenses/gpl-2.0-oracle-mysql-foss.yml deleted file mode 100644 index 60dfa8dca25..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-oracle-mysql-foss.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-2.0-oracle-mysql-foss -is_deprecated: yes -short_name: GPL 2.0 with Oracle MySQL FOSS exception -name: GPL 2.0 with Oracle MySQL FOSS exception -category: Copyleft -owner: Oracle Corporation -homepage_url: http://www.mysql.com/about/legal/licensing/foss-exception.html -is_exception: yes -notes: replaced by oracle-mysql-foss-exception-2.0 diff --git a/src/licensedcode/data/licenses/gpl-2.0-oracle-openjdk.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-oracle-openjdk.LICENSE index fb1e85b4b33..5a80bc6a5ec 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-oracle-openjdk.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-oracle-openjdk.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-oracle-openjdk +is_deprecated: yes +short_name: GPL 2.0 with Oracle OpenJDK classpath exception +name: GPL 2.0 with Oracle OpenJDK classpath exception +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://openjdk.java.net/legal/gplv2+ce.html +notes: | + use a GPL with the openjdk-exception or with the classpath-exception-2.0 + instead +is_exception: yes +--- + This library 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, 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 General Public License for more details. diff --git a/src/licensedcode/data/licenses/gpl-2.0-oracle-openjdk.yml b/src/licensedcode/data/licenses/gpl-2.0-oracle-openjdk.yml deleted file mode 100644 index 05e5b1d7c9c..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-oracle-openjdk.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-oracle-openjdk -is_deprecated: yes -short_name: GPL 2.0 with Oracle OpenJDK classpath exception -name: GPL 2.0 with Oracle OpenJDK classpath exception -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: http://openjdk.java.net/legal/gplv2+ce.html -notes: |- - use a GPL with the openjdk-exception or with the classpath-exception-2.0 - instead -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-ada.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-ada.LICENSE index 4e2ec5ac26d..96fd6464ce0 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-ada.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-ada.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-plus-ada +is_deprecated: yes +short_name: GPL 2.0 or later with Ada exception +name: GPL 2.0 or later with Ada exception +category: Copyleft Limited +owner: Dmitriy Anisimkov +is_exception: yes +other_urls: + - http://ada-ru.org/ + - http://zlib-ada.sourceforge.net/ +--- + This library 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 @@ -17,4 +30,4 @@ unit, or you link this unit with other files to produce an executable, this unit does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU Public License. +covered by the GNU Public License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-ada.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-ada.yml deleted file mode 100644 index ff8acb5e7d0..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-ada.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-2.0-plus-ada -is_deprecated: yes -short_name: GPL 2.0 or later with Ada exception -name: GPL 2.0 or later with Ada exception -category: Copyleft Limited -owner: Dmitriy Anisimkov -is_exception: yes -other_urls: - - http://ada-ru.org/ - - http://zlib-ada.sourceforge.net/ diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-ekiga.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-ekiga.LICENSE index fc18a3951f4..2b855465d6b 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-ekiga.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-ekiga.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-plus-ekiga +is_deprecated: yes +short_name: GPL 2.0 or later with Ekiga exception +name: GPL 2.0 or later with Ekiga exception +category: Copyleft Limited +owner: Ekiga +homepage_url: http://www.ekiga.org/download-ekiga-binaries-or-source-code +is_exception: 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 diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-ekiga.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-ekiga.yml deleted file mode 100644 index 58794f31cb2..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-ekiga.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-plus-ekiga -is_deprecated: yes -short_name: GPL 2.0 or later with Ekiga exception -name: GPL 2.0 or later with Ekiga exception -category: Copyleft Limited -owner: Ekiga -homepage_url: http://www.ekiga.org/download-ekiga-binaries-or-source-code -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-gcc.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-gcc.LICENSE index ba74ad56b94..949750f4f83 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-gcc.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-gcc.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-plus-gcc +is_deprecated: yes +short_name: GPL 2.0 or later with GCC exception +name: GPL 2.0 or later with GCC exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + This file 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 diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-gcc.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-gcc.yml deleted file mode 100644 index 4f5157b409e..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-gcc.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-2.0-plus-gcc -is_deprecated: yes -short_name: GPL 2.0 or later with GCC exception -name: GPL 2.0 or later with GCC exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-geoserver.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-geoserver.LICENSE index 12524a08cc0..b27a348d4eb 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-geoserver.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-geoserver.LICENSE @@ -1,3 +1,19 @@ +--- +key: gpl-2.0-plus-geoserver +is_deprecated: yes +short_name: GPL 2.0 or later with GeoServer exception +name: GPL 2.0 or later with GeoServer exception +category: Copyleft Limited +owner: Open Source Geospatial Foundation +homepage_url: http://geoserver.org/ +is_exception: yes +text_urls: + - https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip +other_urls: + - http://geoserver.org/ + - http://openplans.org +--- + 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 diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-geoserver.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-geoserver.yml deleted file mode 100644 index 891757ee547..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-geoserver.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: gpl-2.0-plus-geoserver -is_deprecated: yes -short_name: GPL 2.0 or later with GeoServer exception -name: GPL 2.0 or later with GeoServer exception -category: Copyleft Limited -owner: Open Source Geospatial Foundation -homepage_url: http://geoserver.org/ -is_exception: yes -text_urls: - - https://master.dl.sourceforge.net/project/geoserver/GeoServer/2.5/geoserver-2.5-src.zip -other_urls: - - http://geoserver.org/ - - http://openplans.org diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-linking.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-linking.LICENSE index a14c3db6840..68e2de13b13 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-linking.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-linking.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-plus-linking +is_deprecated: yes +short_name: GPL 2.0 or later with Linking exception +name: GPL 2.0 or later with Linking exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by linking-exception-2.0-plus +is_exception: yes +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-linking.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-linking.yml deleted file mode 100644 index a93bab7e459..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-linking.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-plus-linking -is_deprecated: yes -short_name: GPL 2.0 or later with Linking exception -name: GPL 2.0 or later with Linking exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -notes: replaced by linking-exception-2.0-plus -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-nant.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-nant.LICENSE index bce2e89c0f2..686a315e08e 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-nant.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-nant.LICENSE @@ -1,3 +1,13 @@ +--- +key: gpl-2.0-plus-nant +is_deprecated: yes +short_name: GPL 2.0 or later with NAnt exception +name: GPL 2.0 or later with NAnt exception +category: Copyleft Limited +owner: NAnt Project +is_exception: 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 diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-nant.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-nant.yml deleted file mode 100644 index 96985508de6..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-nant.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: gpl-2.0-plus-nant -is_deprecated: yes -short_name: GPL 2.0 or later with NAnt exception -name: GPL 2.0 or later with NAnt exception -category: Copyleft Limited -owner: NAnt Project -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-openmotif.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-openmotif.LICENSE index dc87593f3bd..a2244cee222 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-openmotif.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-openmotif.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-plus-openmotif +is_deprecated: yes +short_name: GPL 2.0 or later with Open Motif exception +name: GPL 2.0 or later with Open Motif exception +category: Copyleft Limited +owner: NEdit Project +homepage_url: http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html +is_exception: yes +other_urls: + - http://www.nedit.org/faq/ +notes: replaced by openmotif-exception-2.0-plus +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-openmotif.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-openmotif.yml deleted file mode 100644 index f46cdeaff8a..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-openmotif.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-plus-openmotif -is_deprecated: yes -short_name: GPL 2.0 or later with Open Motif exception -name: GPL 2.0 or later with Open Motif exception -category: Copyleft Limited -owner: NEdit Project -homepage_url: http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html -is_exception: yes -other_urls: - - http://www.nedit.org/faq/ -notes: replaced by openmotif-exception-2.0-plus diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-openssl.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-openssl.LICENSE index 25209d5608c..fc1b7945778 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-openssl.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-openssl.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-plus-openssl +is_deprecated: yes +short_name: GPL 2.0 or later with OpenSSL exception +name: GPL 2.0 or later with OpenSSL exception +category: Copyleft +owner: magnumripper +homepage_url: https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE +notes: replaced by openssl-exception-gpl-2.0-plus +is_exception: yes +--- + As a special exception to the GNU General Public License terms, permission is hereby granted to link the code of this program, with or without modification, with any version of the OpenSSL library and/or any diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-openssl.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-openssl.yml deleted file mode 100644 index 1f632971d86..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-openssl.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-2.0-plus-openssl -is_deprecated: yes -short_name: GPL 2.0 or later with OpenSSL exception -name: GPL 2.0 or later with OpenSSL exception -category: Copyleft -owner: magnumripper -homepage_url: https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE -notes: replaced by openssl-exception-gpl-2.0-plus -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-sane.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-sane.LICENSE index ae0dfc60693..5acb2a2106d 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-sane.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-sane.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-plus-sane +is_deprecated: yes +short_name: GPL 2.0 or later with SANE exception +name: GPL 2.0 or later with SANE exception +category: Copyleft Limited +owner: SANE Project +homepage_url: https://alioth.debian.org/ +is_exception: yes +text_urls: + - https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz +--- + As a special exception, the authors of SANE give permission for additional uses of the libraries contained in this release of SANE. diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-sane.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-sane.yml deleted file mode 100644 index 109d2021194..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-sane.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-2.0-plus-sane -is_deprecated: yes -short_name: GPL 2.0 or later with SANE exception -name: GPL 2.0 or later with SANE exception -category: Copyleft Limited -owner: SANE Project -homepage_url: https://alioth.debian.org/ -is_exception: yes -text_urls: - - https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-subcommander.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-subcommander.LICENSE index b83d0e0647f..94cc55faac2 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-subcommander.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-subcommander.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-plus-subcommander +is_deprecated: yes +short_name: GPL 2.0 or later with Subcommander exception +name: GPL 2.0 or later with Subcommander exception +category: Copyleft Limited +owner: Tigris Project +homepage_url: http://subversion.tigris.org/ +is_exception: yes +--- + Subcommander 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 diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-subcommander.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-subcommander.yml deleted file mode 100644 index 72dd40203c6..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-subcommander.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-plus-subcommander -is_deprecated: yes -short_name: GPL 2.0 or later with Subcommander exception -name: GPL 2.0 or later with Subcommander exception -category: Copyleft Limited -owner: Tigris Project -homepage_url: http://subversion.tigris.org/ -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-syntext.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-syntext.LICENSE index 69c5c0228db..20de60cfc16 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-syntext.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-syntext.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-2.0-plus-syntext +is_deprecated: yes +short_name: GPL 2.0 or GPL 3.0 with Syntext Serna exception +name: GPL 2.0 or GPL 3.0 with Syntext Serna exception +category: Copyleft Limited +owner: Syntext +homepage_url: https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt +is_exception: yes +--- + Syntext, Inc. GPL License Exception for Syntext Serna Free Edition Version 1.0 diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-syntext.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-syntext.yml deleted file mode 100644 index 70a40c1fde8..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-syntext.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-2.0-plus-syntext -is_deprecated: yes -short_name: GPL 2.0 or GPL 3.0 with Syntext Serna exception -name: GPL 2.0 or GPL 3.0 with Syntext Serna exception -category: Copyleft Limited -owner: Syntext -homepage_url: https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-upx.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus-upx.LICENSE index 8dbff1e8014..66b3f4569d4 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-upx.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus-upx.LICENSE @@ -1,3 +1,18 @@ +--- +key: gpl-2.0-plus-upx +is_deprecated: yes +short_name: GPL 2.0 or later with UPX exception +name: GPL 2.0 or later with UPX exception +category: Copyleft Limited +owner: UPX +homepage_url: https://github.com/upx/upx/blob/master/LICENSE +is_exception: yes +other_urls: + - http://wildsau.idv.uni-linz.ac.at/mfx/upx.html + - http://www.nexus.hu/upx + - http://upx.tsx.org +--- + PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus-upx.yml b/src/licensedcode/data/licenses/gpl-2.0-plus-upx.yml deleted file mode 100644 index 93806234d7c..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus-upx.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: gpl-2.0-plus-upx -is_deprecated: yes -short_name: GPL 2.0 or later with UPX exception -name: GPL 2.0 or later with UPX exception -category: Copyleft Limited -owner: UPX -homepage_url: https://github.com/upx/upx/blob/master/LICENSE -is_exception: yes -other_urls: - - http://wildsau.idv.uni-linz.ac.at/mfx/upx.html - - http://www.nexus.hu/upx - - http://upx.tsx.org diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-plus.LICENSE index ed6227674aa..f6dbad5f9d8 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-plus.LICENSE @@ -1,3 +1,32 @@ +--- +key: gpl-2.0-plus +short_name: GPL 2.0 or later +name: GNU General Public License 2.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +notes: | + Per SPDX.org, this license was released June 1991 This license is OSI + certified. +spdx_license_key: GPL-2.0-or-later +other_spdx_license_keys: + - GPL-2.0+ + - GPL 2.0+ +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +other_urls: + - http://www.opensource.org/licenses/GPL-2.0 + - https://opensource.org/licenses/GPL-2.0 + - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + 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 @@ -349,4 +378,4 @@ This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. +Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-plus.yml b/src/licensedcode/data/licenses/gpl-2.0-plus.yml deleted file mode 100644 index a8e83a0abb0..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-plus.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: gpl-2.0-plus -short_name: GPL 2.0 or later -name: GNU General Public License 2.0 or later -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html -notes: | - Per SPDX.org, this license was released June 1991 This license is OSI - certified. -spdx_license_key: GPL-2.0-or-later -other_spdx_license_keys: - - GPL-2.0+ - - GPL 2.0+ -text_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html -other_urls: - - http://www.opensource.org/licenses/GPL-2.0 - - https://opensource.org/licenses/GPL-2.0 - - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/gpl-2.0-proguard.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-proguard.LICENSE index 805eee8a2d0..bc8e2f08a8c 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-proguard.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-proguard.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-proguard +is_deprecated: yes +short_name: GPL 2.0 with ProGuard exception +name: GPL 2.0 with ProGuard exception +category: Copyleft Limited +owner: ProGuard Project +homepage_url: http://proguard.sourceforge.net/index.html#license.html +notes: composite replaced by roguard-exception-2.0 +is_exception: yes +--- + License ProGuard is free. You can use it freely for processing your applications, @@ -20,4 +32,4 @@ the Javaground Tools, and the Sanaware Tools. The ProGuard user documentation is copyrighted as well. It may only be -redistributed without changes, along with the unmodified version of the code. +redistributed without changes, along with the unmodified version of the code. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0-proguard.yml b/src/licensedcode/data/licenses/gpl-2.0-proguard.yml deleted file mode 100644 index 734e0133164..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-proguard.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-2.0-proguard -is_deprecated: yes -short_name: GPL 2.0 with ProGuard exception -name: GPL 2.0 with ProGuard exception -category: Copyleft Limited -owner: ProGuard Project -homepage_url: http://proguard.sourceforge.net/index.html#license.html -notes: composite replaced by roguard-exception-2.0 -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-qt-qca.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-qt-qca.LICENSE index f62035e8a54..8b6ffbfe75c 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-qt-qca.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-qt-qca.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-qt-qca +is_deprecated: yes +short_name: GPL 2.0 with Qt-QCA exception +name: GPL 2.0 with Qt-QCA exception +category: Copyleft Limited +owner: Psi Project +is_exception: yes +other_urls: + - http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2 +--- + This library 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, version 2. 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 General Public License for more details. diff --git a/src/licensedcode/data/licenses/gpl-2.0-qt-qca.yml b/src/licensedcode/data/licenses/gpl-2.0-qt-qca.yml deleted file mode 100644 index 5d129b2e61d..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-qt-qca.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-2.0-qt-qca -is_deprecated: yes -short_name: GPL 2.0 with Qt-QCA exception -name: GPL 2.0 with Qt-QCA exception -category: Copyleft Limited -owner: Psi Project -is_exception: yes -other_urls: - - http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2 diff --git a/src/licensedcode/data/licenses/gpl-2.0-redhat.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-redhat.LICENSE index ed24a7561b7..df10a9a06da 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-redhat.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-redhat.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-redhat +is_deprecated: yes +short_name: GPL 2.0 with Fedora Red Hat Exception +name: GPL 2.0 with Fedora Red Hat Exception +category: Copyleft Limited +owner: Fedora +homepage_url: http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text +notes: replaced by 389-exception +is_exception: yes +text_urls: + - http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/licenses/gpl-2.0-redhat.yml b/src/licensedcode/data/licenses/gpl-2.0-redhat.yml deleted file mode 100644 index 3cf01f23622..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-redhat.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-redhat -is_deprecated: yes -short_name: GPL 2.0 with Fedora Red Hat Exception -name: GPL 2.0 with Fedora Red Hat Exception -category: Copyleft Limited -owner: Fedora -homepage_url: http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text -notes: replaced by 389-exception -is_exception: yes -text_urls: - - http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text diff --git a/src/licensedcode/data/licenses/gpl-2.0-rrdtool-floss.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-rrdtool-floss.LICENSE index 185b7d394fc..29d0d546fef 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-rrdtool-floss.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-rrdtool-floss.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-rrdtool-floss +is_deprecated: yes +short_name: GPL 2.0 with RRDtool FLOSS Exception +name: GPL 2.0 with RRDtool FLOSS Exception +category: Copyleft Limited +owner: RRDtool Project +homepage_url: https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT +notes: composite replaced by rrdtool-floss-exception-2.0 +is_exception: yes +--- + RRDTOOL - Round Robin Database Tool A tool for fast logging of numerical data graphical display of this data. diff --git a/src/licensedcode/data/licenses/gpl-2.0-rrdtool-floss.yml b/src/licensedcode/data/licenses/gpl-2.0-rrdtool-floss.yml deleted file mode 100644 index 3d81a06cfad..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-rrdtool-floss.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-2.0-rrdtool-floss -is_deprecated: yes -short_name: GPL 2.0 with RRDtool FLOSS Exception -name: GPL 2.0 with RRDtool FLOSS Exception -category: Copyleft Limited -owner: RRDtool Project -homepage_url: https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT -notes: composite replaced by rrdtool-floss-exception-2.0 -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-2.0-uboot.LICENSE b/src/licensedcode/data/licenses/gpl-2.0-uboot.LICENSE index 1d21ab1ef45..e68acb09186 100644 --- a/src/licensedcode/data/licenses/gpl-2.0-uboot.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0-uboot.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-2.0-uboot +is_deprecated: yes +short_name: GPL 2.0 with U-Boot exception +name: GPL 2.0 with U-Boot exception +category: Copyleft Limited +owner: U-Boot +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +is_exception: yes +text_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +notes: replaced by u-boot-exception-2.0 +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/licenses/gpl-2.0-uboot.yml b/src/licensedcode/data/licenses/gpl-2.0-uboot.yml deleted file mode 100644 index 0d347d1ec85..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0-uboot.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-2.0-uboot -is_deprecated: yes -short_name: GPL 2.0 with U-Boot exception -name: GPL 2.0 with U-Boot exception -category: Copyleft Limited -owner: U-Boot -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -is_exception: yes -text_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -notes: replaced by u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0.LICENSE b/src/licensedcode/data/licenses/gpl-2.0.LICENSE index d159169d105..9a520701294 100644 --- a/src/licensedcode/data/licenses/gpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/gpl-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: gpl-2.0 +short_name: GPL 2.0 +name: GNU General Public License 2.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-2.0.html +notes: This is the last version of the GPL text as published by the FSF. This variation was + published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt + It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html + It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere + both in the text and HTML formats. There are many other variations of the GPL 2.0 text that + were published over the years by the FSF and the gnu.org website. You can find the detailed + history of this text at https://github.com/pombredanne/gpl-history and each variant is available + as a license detection rule. Per SPDX.org, this license was released June 1991 This license + is OSI certified. +spdx_license_key: GPL-2.0-only +other_spdx_license_keys: + - GPL-2.0 + - GPL 2.0 + - LicenseRef-GPL-2.0 +osi_license_key: GPL-2.0 +text_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +osi_url: http://opensource.org/licenses/gpl-license.php +faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html +other_urls: + - http://creativecommons.org/choose/cc-gpl + - http://creativecommons.org/images/public/cc-GPL-a.png + - http://creativecommons.org/licenses/GPL/2.0/ + - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html + - http://www.opensource.org/licenses/GPL-2.0 + - https://opensource.org/licenses/GPL-2.0 + - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -336,4 +380,4 @@ This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. +Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-2.0.yml b/src/licensedcode/data/licenses/gpl-2.0.yml deleted file mode 100644 index 443bc2b07d6..00000000000 --- a/src/licensedcode/data/licenses/gpl-2.0.yml +++ /dev/null @@ -1,41 +0,0 @@ -key: gpl-2.0 -short_name: GPL 2.0 -name: GNU General Public License 2.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-2.0.html -notes: This is the last version of the GPL text as published by the FSF. This variation was - published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt - It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html - It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere - both in the text and HTML formats. There are many other variations of the GPL 2.0 text that - were published over the years by the FSF and the gnu.org website. You can find the detailed - history of this text at https://github.com/pombredanne/gpl-history and each variant is available - as a license detection rule. Per SPDX.org, this license was released June 1991 This license - is OSI certified. -spdx_license_key: GPL-2.0-only -other_spdx_license_keys: - - GPL-2.0 - - GPL 2.0 - - LicenseRef-GPL-2.0 -osi_license_key: GPL-2.0 -text_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -osi_url: http://opensource.org/licenses/gpl-license.php -faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html -other_urls: - - http://creativecommons.org/choose/cc-gpl - - http://creativecommons.org/images/public/cc-GPL-a.png - - http://creativecommons.org/licenses/GPL/2.0/ - - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt - - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html - - http://www.opensource.org/licenses/GPL-2.0 - - https://opensource.org/licenses/GPL-2.0 - - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/gpl-3.0-aptana.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-aptana.LICENSE index 312f057303f..9d6ba77b5b8 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-aptana.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-aptana.LICENSE @@ -1,3 +1,17 @@ +--- +key: gpl-3.0-aptana +is_deprecated: yes +short_name: GPL 3.0 with Aptana exception +name: GPL 3.0 with Aptana exception +category: Copyleft +owner: Appcelerator +homepage_url: https://github.com/aptana/studio3/blob/development/README.md +is_exception: yes +other_urls: + - http://www.aptana.com/legal/gpl + - ttp://www.aptana.com/legal/gpl +--- + This program is distributed under the GNU General Public license. 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. Any modifications must keep this entire license intact. diff --git a/src/licensedcode/data/licenses/gpl-3.0-aptana.yml b/src/licensedcode/data/licenses/gpl-3.0-aptana.yml deleted file mode 100644 index 674f7c2aa16..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-aptana.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: gpl-3.0-aptana -is_deprecated: yes -short_name: GPL 3.0 with Aptana exception -name: GPL 3.0 with Aptana exception -category: Copyleft -owner: Appcelerator -homepage_url: https://github.com/aptana/studio3/blob/development/README.md -is_exception: yes -other_urls: - - http://www.aptana.com/legal/gpl - - ttp://www.aptana.com/legal/gpl diff --git a/src/licensedcode/data/licenses/gpl-3.0-autoconf.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-autoconf.LICENSE index 278ae9a6949..4552fa88aa2 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-autoconf.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-autoconf.LICENSE @@ -1,3 +1,18 @@ +--- +key: gpl-3.0-autoconf +is_deprecated: yes +short_name: GPL 3.0 with Autoconf exception +name: GPL 3.0 with Autoconf exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/autoconf-exception-3.0.html +is_exception: yes +spdx_license_key: GPL-3.0-with-autoconf-exception +text_urls: + - http://www.gnu.org/licenses/autoconf-exception-3.0.html +notes: replaced by autoconf-exception-3.0 +--- + 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 diff --git a/src/licensedcode/data/licenses/gpl-3.0-autoconf.yml b/src/licensedcode/data/licenses/gpl-3.0-autoconf.yml deleted file mode 100644 index b9b2cab1663..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-autoconf.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: gpl-3.0-autoconf -is_deprecated: yes -short_name: GPL 3.0 with Autoconf exception -name: GPL 3.0 with Autoconf exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/autoconf-exception-3.0.html -is_exception: yes -spdx_license_key: GPL-3.0-with-autoconf-exception -text_urls: - - http://www.gnu.org/licenses/autoconf-exception-3.0.html -notes: replaced by autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-3.0-bison.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-bison.LICENSE index 589f4e381ab..1064c20bf4b 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-bison.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-bison.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-3.0-bison +is_deprecated: yes +short_name: GPL 3.0 or later with Bison exception +name: GPL 3.0 or later with Bison exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +notes: replaced by bison-exception-2.2 +--- + Skeleton implementation for Bison's Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free Software @@ -27,4 +40,4 @@ Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in -version 2.2 of Bison. +version 2.2 of Bison. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-3.0-bison.yml b/src/licensedcode/data/licenses/gpl-3.0-bison.yml deleted file mode 100644 index ec441edcd90..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-bison.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-3.0-bison -is_deprecated: yes -short_name: GPL 3.0 or later with Bison exception -name: GPL 3.0 or later with Bison exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt -notes: replaced by bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-3.0-cygwin.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-cygwin.LICENSE index f71e185809b..7278c636261 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-cygwin.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-cygwin.LICENSE @@ -1,3 +1,20 @@ +--- +key: gpl-3.0-cygwin +is_deprecated: yes +short_name: GPL 3.0 or later with Cygwin exception +name: GPL 3.0 or later with Cygwin exception +category: Copyleft Limited +owner: Cygwin Project +homepage_url: http://cygwin.com/licensing.html +is_exception: yes +text_urls: + - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src +other_urls: + - http://www.opensource.org/docs/osd/ + - http://www.redhat.com/about/contact/ww/ + - http://www.redhat.com/software/cygwin/ +--- + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of diff --git a/src/licensedcode/data/licenses/gpl-3.0-cygwin.yml b/src/licensedcode/data/licenses/gpl-3.0-cygwin.yml deleted file mode 100644 index caf85184490..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-cygwin.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: gpl-3.0-cygwin -is_deprecated: yes -short_name: GPL 3.0 or later with Cygwin exception -name: GPL 3.0 or later with Cygwin exception -category: Copyleft Limited -owner: Cygwin Project -homepage_url: http://cygwin.com/licensing.html -is_exception: yes -text_urls: - - http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/CYGWIN_LICENSE?cvsroot=src -other_urls: - - http://www.opensource.org/docs/osd/ - - http://www.redhat.com/about/contact/ww/ - - http://www.redhat.com/software/cygwin/ diff --git a/src/licensedcode/data/licenses/gpl-3.0-font.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-font.LICENSE index 0e207e5ba5a..4317d5ce128 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-font.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-font.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-3.0-font +is_deprecated: yes +short_name: GPL 3.0 or later with font exception +name: GPL 3.0 or later with font exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/software/freefont/license.html +is_exception: yes +notes: replaced by font-exception-gpl +--- + GNU FreeFont License Free UCS scalable fonts 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. diff --git a/src/licensedcode/data/licenses/gpl-3.0-font.yml b/src/licensedcode/data/licenses/gpl-3.0-font.yml deleted file mode 100644 index dbd0c3f0525..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-font.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-3.0-font -is_deprecated: yes -short_name: GPL 3.0 or later with font exception -name: GPL 3.0 or later with font exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/software/freefont/license.html -is_exception: yes -notes: replaced by font-exception-gpl diff --git a/src/licensedcode/data/licenses/gpl-3.0-gcc.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-gcc.LICENSE index 5dd4761f565..523bef06db9 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-gcc.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-gcc.LICENSE @@ -1,3 +1,19 @@ +--- +key: gpl-3.0-gcc +is_deprecated: yes +short_name: GPL 3.0 with GCC runtime library exception +name: GPL 3.0 with GCC runtime library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gcc-exception-3.1.html +is_exception: yes +spdx_license_key: GPL-3.0-with-GCC-exception +text_urls: + - http://www.gnu.org/licenses/gcc-exception-3.1.html +faq_url: http://www.gnu.org/licenses/gcc-exception-3.1-faq.html +notes: replaced by gcc-exception-3.1 +--- + 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 diff --git a/src/licensedcode/data/licenses/gpl-3.0-gcc.yml b/src/licensedcode/data/licenses/gpl-3.0-gcc.yml deleted file mode 100644 index fc87b752bec..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-gcc.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: gpl-3.0-gcc -is_deprecated: yes -short_name: GPL 3.0 with GCC runtime library exception -name: GPL 3.0 with GCC runtime library exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gcc-exception-3.1.html -is_exception: yes -spdx_license_key: GPL-3.0-with-GCC-exception -text_urls: - - http://www.gnu.org/licenses/gcc-exception-3.1.html -faq_url: http://www.gnu.org/licenses/gcc-exception-3.1-faq.html -notes: replaced by gcc-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-3.0-linking-exception.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-linking-exception.LICENSE index 626375f9fb9..16d7eec70f2 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-linking-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-3.0-linking-exception +short_name: GPL-3.0 Linking Exception +name: GPL-3.0 Linking Exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs +is_exception: yes +spdx_license_key: GPL-3.0-linking-exception +--- + Additional permission under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-3.0-linking-exception.yml b/src/licensedcode/data/licenses/gpl-3.0-linking-exception.yml deleted file mode 100644 index 4ccc4cca5ce..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-linking-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-3.0-linking-exception -short_name: GPL-3.0 Linking Exception -name: GPL-3.0 Linking Exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs -is_exception: yes -spdx_license_key: GPL-3.0-linking-exception diff --git a/src/licensedcode/data/licenses/gpl-3.0-linking-source-exception.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-linking-source-exception.LICENSE index 491c8c68689..9fbb573888e 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-linking-source-exception.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-linking-source-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-3.0-linking-source-exception +short_name: GPL-3.0 Linking Source Exception +name: GPL-3.0 Linking Exception (with Corresponding Source) +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs +is_exception: yes +spdx_license_key: GPL-3.0-linking-source-exception +other_urls: + - https://github.com/mirror/wget/blob/master/src/http.c#L20 +--- + Additional permission under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. {Corresponding Source for a non-source form of such a combination shall include the source code for the parts of [name of library] used as well as that of the covered work.} \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-3.0-linking-source-exception.yml b/src/licensedcode/data/licenses/gpl-3.0-linking-source-exception.yml deleted file mode 100644 index 0b9f08007c4..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-linking-source-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-3.0-linking-source-exception -short_name: GPL-3.0 Linking Source Exception -name: GPL-3.0 Linking Exception (with Corresponding Source) -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs -is_exception: yes -spdx_license_key: GPL-3.0-linking-source-exception -other_urls: - - https://github.com/mirror/wget/blob/master/src/http.c#L20 diff --git a/src/licensedcode/data/licenses/gpl-3.0-openbd.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-openbd.LICENSE index d1dae4ccb86..72b82ccf124 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-openbd.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-openbd.LICENSE @@ -1,3 +1,20 @@ +--- +key: gpl-3.0-openbd +is_deprecated: yes +short_name: GPL 3.0h with OpenBD exception +name: GPL 3.0h with OpenBD exception +category: Copyleft +owner: OpenBD +notes: composite replaced by openbd-exception-3.0 +is_exception: yes +standard_notice: | + tagServlet Ltd grants the user the exception to distribute the entire Open + BlueDragon runtime libraries without the web application (.cfml, .html, + .js, .css, etc) that Open BlueDragon powers, from itself being licensed + under the GNU General Public License (v3), as long the entire runtime + remains intact and includes all license information. +--- + Open BlueDragon (OpenBD) is distributed under the GNU General Public License (v3). A copy of this can be found in the COPYING.txt file or at http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/licenses/gpl-3.0-openbd.yml b/src/licensedcode/data/licenses/gpl-3.0-openbd.yml deleted file mode 100644 index 40e771ce17d..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-openbd.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: gpl-3.0-openbd -is_deprecated: yes -short_name: GPL 3.0h with OpenBD exception -name: GPL 3.0h with OpenBD exception -category: Copyleft -owner: OpenBD -notes: composite replaced by openbd-exception-3.0 -is_exception: yes -standard_notice: |- - tagServlet Ltd grants the user the exception to distribute the entire Open - BlueDragon runtime libraries without the web application (.cfml, .html, - .js, .css, etc) that Open BlueDragon powers, from itself being licensed - under the GNU General Public License (v3), as long the entire runtime - remains intact and includes all license information. diff --git a/src/licensedcode/data/licenses/gpl-3.0-plus-openssl.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-plus-openssl.LICENSE index 2a9bbd14584..fe1d6bbb503 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-plus-openssl.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-plus-openssl.LICENSE @@ -1,3 +1,14 @@ +--- +key: gpl-3.0-plus-openssl +is_deprecated: yes +short_name: GPL 3.0 or later with OpenSSL exception +name: GPL 3.0 or later with OpenSSL exception +category: Copyleft Limited +owner: Tildeslash +notes: replaced by openssl-exception-gpl-3.0-plus +is_exception: yes +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/src/licensedcode/data/licenses/gpl-3.0-plus-openssl.yml b/src/licensedcode/data/licenses/gpl-3.0-plus-openssl.yml deleted file mode 100644 index 95f8744e649..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-plus-openssl.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: gpl-3.0-plus-openssl -is_deprecated: yes -short_name: GPL 3.0 or later with OpenSSL exception -name: GPL 3.0 or later with OpenSSL exception -category: Copyleft Limited -owner: Tildeslash -notes: replaced by openssl-exception-gpl-3.0-plus -is_exception: yes diff --git a/src/licensedcode/data/licenses/gpl-3.0-plus.LICENSE b/src/licensedcode/data/licenses/gpl-3.0-plus.LICENSE index 9071ee21680..d85ed0536cc 100644 --- a/src/licensedcode/data/licenses/gpl-3.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0-plus.LICENSE @@ -1,3 +1,35 @@ +--- +key: gpl-3.0-plus +short_name: GPL 3.0 or later +name: GNU General Public License 3.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-3.0-standalone.html +notes: | + Per SPDX.org, this license was released 29 June 2007 This license is OSI + certified. +spdx_license_key: GPL-3.0-or-later +other_spdx_license_keys: + - GPL-3.0+ + - LicenseRef-GPL-3.0-or-later +text_urls: + - http://www.gnu.org/licenses/gpl-3.0-standalone.html +other_urls: + - http://www.opensource.org/licenses/GPL-3.0 + - https://opensource.org/licenses/GPL-3.0 + - https://www.gnu.org/licenses/gpl-3.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/why-not-lgpl.html +--- + 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 @@ -685,4 +717,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-3.0-plus.yml b/src/licensedcode/data/licenses/gpl-3.0-plus.yml deleted file mode 100644 index 68b37c0da91..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0-plus.yml +++ /dev/null @@ -1,29 +0,0 @@ -key: gpl-3.0-plus -short_name: GPL 3.0 or later -name: GNU General Public License 3.0 or later -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-3.0-standalone.html -notes: | - Per SPDX.org, this license was released 29 June 2007 This license is OSI - certified. -spdx_license_key: GPL-3.0-or-later -other_spdx_license_keys: - - GPL-3.0+ - - LicenseRef-GPL-3.0-or-later -text_urls: - - http://www.gnu.org/licenses/gpl-3.0-standalone.html -other_urls: - - http://www.opensource.org/licenses/GPL-3.0 - - https://opensource.org/licenses/GPL-3.0 - - https://www.gnu.org/licenses/gpl-3.0-standalone.html -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/licenses/why-not-lgpl.html diff --git a/src/licensedcode/data/licenses/gpl-3.0.LICENSE b/src/licensedcode/data/licenses/gpl-3.0.LICENSE index f288702d2fa..0ac98ebe5f3 100644 --- a/src/licensedcode/data/licenses/gpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/gpl-3.0.LICENSE @@ -1,3 +1,38 @@ +--- +key: gpl-3.0 +short_name: GPL 3.0 +name: GNU General Public License 3.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-3.0.html +notes: | + Per SPDX.org, this license was released 29 June 2007 This license is OSI + certified. +spdx_license_key: GPL-3.0-only +other_spdx_license_keys: + - GPL-3.0 + - LicenseRef-gpl-3.0 +osi_license_key: GPL-3.0 +text_urls: + - http://www.gnu.org/licenses/gpl-3.0-standalone.html + - http://www.gnu.org/licenses/gpl-3.0.txt +osi_url: http://opensource.org/licenses/gpl-3.0.html +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/quick-guide-gplv3.html + - http://www.opensource.org/licenses/GPL-3.0 + - https://opensource.org/licenses/GPL-3.0 + - https://www.gnu.org/licenses/gpl-3.0-standalone.html +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -671,4 +706,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gpl-3.0.yml b/src/licensedcode/data/licenses/gpl-3.0.yml deleted file mode 100644 index bbedb602940..00000000000 --- a/src/licensedcode/data/licenses/gpl-3.0.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: gpl-3.0 -short_name: GPL 3.0 -name: GNU General Public License 3.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-3.0.html -notes: | - Per SPDX.org, this license was released 29 June 2007 This license is OSI - certified. -spdx_license_key: GPL-3.0-only -other_spdx_license_keys: - - GPL-3.0 - - LicenseRef-gpl-3.0 -osi_license_key: GPL-3.0 -text_urls: - - http://www.gnu.org/licenses/gpl-3.0-standalone.html - - http://www.gnu.org/licenses/gpl-3.0.txt -osi_url: http://opensource.org/licenses/gpl-3.0.html -faq_url: http://www.gnu.org/licenses/gpl-faq.html -other_urls: - - http://www.gnu.org/licenses/quick-guide-gplv3.html - - http://www.opensource.org/licenses/GPL-3.0 - - https://opensource.org/licenses/GPL-3.0 - - https://www.gnu.org/licenses/gpl-3.0-standalone.html -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/licenses/why-not-lgpl.html diff --git a/src/licensedcode/data/licenses/gpl-generic-additional-terms.LICENSE b/src/licensedcode/data/licenses/gpl-generic-additional-terms.LICENSE new file mode 100644 index 00000000000..6506bfa470c --- /dev/null +++ b/src/licensedcode/data/licenses/gpl-generic-additional-terms.LICENSE @@ -0,0 +1,12 @@ +--- +key: gpl-generic-additional-terms +short_name: GPL Generic Additional Terms +name: GPL Generic Additional Terms +category: Copyleft +owner: Unspecified +notes: this is a generic entry for rare one-off GPL extra license terms. These are typically + additional terms under section 7 of the GPL-3.0 +is_exception: yes +is_generic: yes +spdx_license_key: LicenseRef-scancode-gpl-generic-additional-terms +--- diff --git a/src/licensedcode/data/licenses/gpl-generic-additional-terms.yml b/src/licensedcode/data/licenses/gpl-generic-additional-terms.yml deleted file mode 100644 index c66f92afeca..00000000000 --- a/src/licensedcode/data/licenses/gpl-generic-additional-terms.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-generic-additional-terms -short_name: GPL Generic Additional Terms -name: GPL Generic Additional Terms -category: Copyleft -owner: Unspecified -notes: this is a generic entry for rare one-off GPL extra license terms. These are typically - additional terms under section 7 of the GPL-3.0 -is_exception: yes -is_generic: yes -spdx_license_key: LicenseRef-scancode-gpl-generic-additional-terms diff --git a/src/licensedcode/data/licenses/gplcc-1.0.LICENSE b/src/licensedcode/data/licenses/gplcc-1.0.LICENSE index 47ca828a256..b393aa51b45 100644 --- a/src/licensedcode/data/licenses/gplcc-1.0.LICENSE +++ b/src/licensedcode/data/licenses/gplcc-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: gplcc-1.0 +short_name: GPL Cooperation Commitment 1.0 +name: GPL Cooperation Commitment 1.0 +category: Copyleft Limited +owner: Red Hat +homepage_url: https://github.com/gplcc/gplcc/blob/eee52346dd48bdf985657f082bb847f12f40c464/Project/COMMITMENT +is_exception: yes +spdx_license_key: GPL-CC-1.0 +faq_url: https://github.com/gplcc/gplcc/blob/master/README.md +other_urls: + - http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT + - https://github.com/gplcc/gplcc/blob/master/Project/COMMITMENT + - https://github.com/wildfly/wildfly-core/blob/master/COMMITMENT + - https://github.com/wildfly/wildfly/blob/master/COMMITMENT + - https://gplcc.github.io/gplcc/Project/README-PROJECT.html + - https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT + - https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement + - https://www.kernel.org/doc/html/latest/process/kernel-enforcement-statement.html + - https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing + - https://www.redhat.com/en/blog/gpl-cooperation-commitment-and-red-hat-projects?source=author&term=26851 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + GPL Cooperation Commitment Version 1.0 diff --git a/src/licensedcode/data/licenses/gplcc-1.0.yml b/src/licensedcode/data/licenses/gplcc-1.0.yml deleted file mode 100644 index 8e115746f75..00000000000 --- a/src/licensedcode/data/licenses/gplcc-1.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: gplcc-1.0 -short_name: GPL Cooperation Commitment 1.0 -name: GPL Cooperation Commitment 1.0 -category: Copyleft Limited -owner: Red Hat -homepage_url: https://github.com/gplcc/gplcc/blob/eee52346dd48bdf985657f082bb847f12f40c464/Project/COMMITMENT -is_exception: yes -spdx_license_key: GPL-CC-1.0 -faq_url: https://github.com/gplcc/gplcc/blob/master/README.md -other_urls: - - http://git.gluster.org/cgit/glusterfs.git/tree/COMMITMENT - - https://github.com/gplcc/gplcc/blob/master/Project/COMMITMENT - - https://github.com/wildfly/wildfly-core/blob/master/COMMITMENT - - https://github.com/wildfly/wildfly/blob/master/COMMITMENT - - https://gplcc.github.io/gplcc/Project/README-PROJECT.html - - https://raw.githubusercontent.com/wildfly/wildfly/master/COMMITMENT - - https://www.fsf.org/blogs/licensing/red-hat-leads-coalition-supporting-key-part-of-principles-of-community-oriented-gpl-enforcement - - https://www.kernel.org/doc/html/latest/process/kernel-enforcement-statement.html - - https://www.redhat.com/en/about/press-releases/technology-industry-leaders-join-forces-increase-predictability-open-source-licensing - - https://www.redhat.com/en/blog/gpl-cooperation-commitment-and-red-hat-projects?source=author&term=26851 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/licenses/graphics-gems.LICENSE b/src/licensedcode/data/licenses/graphics-gems.LICENSE index 8ea2e7b42cc..b35dfd7d59b 100644 --- a/src/licensedcode/data/licenses/graphics-gems.LICENSE +++ b/src/licensedcode/data/licenses/graphics-gems.LICENSE @@ -1,3 +1,15 @@ +--- +key: graphics-gems +short_name: Graphics Gems License +name: Graphics Gems License +category: Permissive +owner: Eric Haines +homepage_url: https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md +spdx_license_key: LicenseRef-scancode-graphics-gems +text_urls: + - https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md +--- + LICENSE This code repository predates the concept of Open Source, and predates most diff --git a/src/licensedcode/data/licenses/graphics-gems.yml b/src/licensedcode/data/licenses/graphics-gems.yml deleted file mode 100644 index 5cc054e8c51..00000000000 --- a/src/licensedcode/data/licenses/graphics-gems.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: graphics-gems -short_name: Graphics Gems License -name: Graphics Gems License -category: Permissive -owner: Eric Haines -homepage_url: https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md -spdx_license_key: LicenseRef-scancode-graphics-gems -text_urls: - - https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md diff --git a/src/licensedcode/data/licenses/greg-roelofs.LICENSE b/src/licensedcode/data/licenses/greg-roelofs.LICENSE index 2b624ce5e3b..55e172646a5 100644 --- a/src/licensedcode/data/licenses/greg-roelofs.LICENSE +++ b/src/licensedcode/data/licenses/greg-roelofs.LICENSE @@ -1,3 +1,16 @@ +--- +key: greg-roelofs +short_name: Greg Roelofs License +name: Greg Roelofs License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-greg-roelofs +other_urls: + - https://www.oreilly.com/library/view/png-the-definitive/9781565925427/ +ignorable_authors: + - Greg Roelofs and contributors +--- + This software is provided "as is," without warranty of any kind, express or implied. In no event shall the author or contributors be held liable for any damages arising in any way from the use of diff --git a/src/licensedcode/data/licenses/greg-roelofs.yml b/src/licensedcode/data/licenses/greg-roelofs.yml deleted file mode 100644 index c1a22a653b8..00000000000 --- a/src/licensedcode/data/licenses/greg-roelofs.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: greg-roelofs -short_name: Greg Roelofs License -name: Greg Roelofs License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-greg-roelofs -other_urls: - - https://www.oreilly.com/library/view/png-the-definitive/9781565925427/ -ignorable_authors: - - Greg Roelofs and contributors diff --git a/src/licensedcode/data/licenses/gregory-pietsch.LICENSE b/src/licensedcode/data/licenses/gregory-pietsch.LICENSE index c517d41e438..afa2bf52e22 100644 --- a/src/licensedcode/data/licenses/gregory-pietsch.LICENSE +++ b/src/licensedcode/data/licenses/gregory-pietsch.LICENSE @@ -1,3 +1,12 @@ +--- +key: gregory-pietsch +short_name: Gregory Pietsch Liberal License +name: Gregory Pietsch Liberal License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-gregory-pietsch +--- + This file and the accompanying getopt.c implementation file are hereby placed in the public domain without restrictions. Just give the auth credit, don't claim you wrote it or prevent anyone else from using it. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/gregory-pietsch.yml b/src/licensedcode/data/licenses/gregory-pietsch.yml deleted file mode 100644 index 25e47fb8b80..00000000000 --- a/src/licensedcode/data/licenses/gregory-pietsch.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: gregory-pietsch -short_name: Gregory Pietsch Liberal License -name: Gregory Pietsch Liberal License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-gregory-pietsch diff --git a/src/licensedcode/data/licenses/gsoap-1.3a.LICENSE b/src/licensedcode/data/licenses/gsoap-1.3a.LICENSE index 44e0336966d..386c6ed5dbd 100644 --- a/src/licensedcode/data/licenses/gsoap-1.3a.LICENSE +++ b/src/licensedcode/data/licenses/gsoap-1.3a.LICENSE @@ -1,3 +1,21 @@ +--- +key: gsoap-1.3a +short_name: gSOAP Public License v1.3a +name: gSOAP Public License v1.3a +category: Copyleft Limited +owner: Genivia +spdx_license_key: LicenseRef-scancode-gsoap-1.3a +ignorable_copyrights: + - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. +ignorable_holders: + - Robert A. van Engelen, Genivia inc. +ignorable_authors: + - Robert A. van Engelen +ignorable_urls: + - http://genivia.com/Products/gsoap/contract.html + - http://genivia.com/Products/gsoap/license.pdf +--- + ****** gSOAP Public License ****** **** Version 1.3a **** diff --git a/src/licensedcode/data/licenses/gsoap-1.3a.yml b/src/licensedcode/data/licenses/gsoap-1.3a.yml deleted file mode 100644 index e36b6336dfd..00000000000 --- a/src/licensedcode/data/licenses/gsoap-1.3a.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: gsoap-1.3a -short_name: gSOAP Public License v1.3a -name: gSOAP Public License v1.3a -category: Copyleft Limited -owner: Genivia -spdx_license_key: LicenseRef-scancode-gsoap-1.3a -ignorable_copyrights: - - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. -ignorable_holders: - - Robert A. van Engelen, Genivia inc. -ignorable_authors: - - Robert A. van Engelen -ignorable_urls: - - http://genivia.com/Products/gsoap/contract.html - - http://genivia.com/Products/gsoap/license.pdf diff --git a/src/licensedcode/data/licenses/gsoap-1.3b.LICENSE b/src/licensedcode/data/licenses/gsoap-1.3b.LICENSE index abe23af758c..4800ab97c6a 100644 --- a/src/licensedcode/data/licenses/gsoap-1.3b.LICENSE +++ b/src/licensedcode/data/licenses/gsoap-1.3b.LICENSE @@ -1,3 +1,25 @@ +--- +key: gsoap-1.3b +short_name: gSOAP Public License v1.3b +name: gSOAP Public License v1.3b +category: Copyleft Limited +owner: Genivia +homepage_url: http://www.cs.fsu.edu/~engelen/license.html +spdx_license_key: gSOAP-1.3b +text_urls: + - http://www.cs.fsu.edu/~engelen/license.html +ignorable_copyrights: + - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. + - Copyright (c) 2001-2009 Robert A. van Engelen, Genivia inc. +ignorable_holders: + - Robert A. van Engelen, Genivia inc. +ignorable_authors: + - Robert A. van Engelen +ignorable_urls: + - http://www.cs.fsu.edu/ + - http://www.genivia.com/ +--- + gSOAP Public License Version 1.3b diff --git a/src/licensedcode/data/licenses/gsoap-1.3b.yml b/src/licensedcode/data/licenses/gsoap-1.3b.yml deleted file mode 100644 index 6c3a8c74b30..00000000000 --- a/src/licensedcode/data/licenses/gsoap-1.3b.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: gsoap-1.3b -short_name: gSOAP Public License v1.3b -name: gSOAP Public License v1.3b -category: Copyleft Limited -owner: Genivia -homepage_url: http://www.cs.fsu.edu/~engelen/license.html -spdx_license_key: gSOAP-1.3b -text_urls: - - http://www.cs.fsu.edu/~engelen/license.html -ignorable_copyrights: - - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. - - Copyright (c) 2001-2009 Robert A. van Engelen, Genivia inc. -ignorable_holders: - - Robert A. van Engelen, Genivia inc. -ignorable_authors: - - Robert A. van Engelen -ignorable_urls: - - http://www.cs.fsu.edu/ - - http://www.genivia.com/ diff --git a/src/licensedcode/data/licenses/gstreamer-exception-2.0.LICENSE b/src/licensedcode/data/licenses/gstreamer-exception-2.0.LICENSE index 6d21e1102fe..629feca3255 100644 --- a/src/licensedcode/data/licenses/gstreamer-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/gstreamer-exception-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: gstreamer-exception-2.0 +short_name: GStreamer exception to GPL 2.0 or later +name: GStreamer exception to GPL 2.0 or later +category: Copyleft Limited +owner: GNOME Project +homepage_url: https://github.com/GNOME/gnome-music/blob/master/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-gstreamer-exception-2.0 +standard_notice: | + # GNOME Music 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." at head of souce files for GNOME + Music https://github.com/GNOME/gnome-music +--- + The GNOME Music authors hereby grant permission for non-GPL compatible GStreamer plugins to be used and distributed together with GStreamer and GNOME Music. This permission is above and beyond the permissions diff --git a/src/licensedcode/data/licenses/gstreamer-exception-2.0.yml b/src/licensedcode/data/licenses/gstreamer-exception-2.0.yml deleted file mode 100644 index 11100f67e7c..00000000000 --- a/src/licensedcode/data/licenses/gstreamer-exception-2.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: gstreamer-exception-2.0 -short_name: GStreamer exception to GPL 2.0 or later -name: GStreamer exception to GPL 2.0 or later -category: Copyleft Limited -owner: GNOME Project -homepage_url: https://github.com/GNOME/gnome-music/blob/master/LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-gstreamer-exception-2.0 -standard_notice: | - # GNOME Music 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." at head of souce files for GNOME - Music https://github.com/GNOME/gnome-music diff --git a/src/licensedcode/data/licenses/gstreamer-exception-2005.LICENSE b/src/licensedcode/data/licenses/gstreamer-exception-2005.LICENSE index b5896312c3c..4956c0e717c 100644 --- a/src/licensedcode/data/licenses/gstreamer-exception-2005.LICENSE +++ b/src/licensedcode/data/licenses/gstreamer-exception-2005.LICENSE @@ -1,3 +1,15 @@ +--- +key: gstreamer-exception-2005 +short_name: GStreamer Exception (2005) +name: GStreamer Exception (2005) +category: Permissive +owner: GStreamer Project +is_exception: yes +spdx_license_key: GStreamer-exception-2005 +other_urls: + - https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer +--- + The Totem project hereby grant permission for non-gpl compatible GStreamer plugins to be used and distributed together with GStreamer and Totem. This permission are above and beyond the permissions granted by the GPL license diff --git a/src/licensedcode/data/licenses/gstreamer-exception-2005.yml b/src/licensedcode/data/licenses/gstreamer-exception-2005.yml deleted file mode 100644 index 76c6edde8f8..00000000000 --- a/src/licensedcode/data/licenses/gstreamer-exception-2005.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gstreamer-exception-2005 -short_name: GStreamer Exception (2005) -name: GStreamer Exception (2005) -category: Permissive -owner: GStreamer Project -is_exception: yes -spdx_license_key: GStreamer-exception-2005 -other_urls: - - https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer diff --git a/src/licensedcode/data/licenses/gstreamer-exception-2008.LICENSE b/src/licensedcode/data/licenses/gstreamer-exception-2008.LICENSE index 1afd24125d3..9c640ef25c3 100644 --- a/src/licensedcode/data/licenses/gstreamer-exception-2008.LICENSE +++ b/src/licensedcode/data/licenses/gstreamer-exception-2008.LICENSE @@ -1,3 +1,15 @@ +--- +key: gstreamer-exception-2008 +short_name: GStreamer Exception (2008) +name: GStreamer Exception (2008) +category: Permissive +owner: GStreamer Project +is_exception: yes +spdx_license_key: GStreamer-exception-2008 +other_urls: + - https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer +--- + This project hereby grants permission for non-GPL compatible GStreamer plugins to be used and distributed together with GStreamer and this project. This permission is above and beyond the permissions granted by the GPL license by diff --git a/src/licensedcode/data/licenses/gstreamer-exception-2008.yml b/src/licensedcode/data/licenses/gstreamer-exception-2008.yml deleted file mode 100644 index 4ee63813767..00000000000 --- a/src/licensedcode/data/licenses/gstreamer-exception-2008.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gstreamer-exception-2008 -short_name: GStreamer Exception (2008) -name: GStreamer Exception (2008) -category: Permissive -owner: GStreamer Project -is_exception: yes -spdx_license_key: GStreamer-exception-2008 -other_urls: - - https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language=c#licensing-of-applications-using-gstreamer diff --git a/src/licensedcode/data/licenses/guile-exception-2.0.LICENSE b/src/licensedcode/data/licenses/guile-exception-2.0.LICENSE index 1c784f6a45c..5e87d19981d 100644 --- a/src/licensedcode/data/licenses/guile-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/guile-exception-2.0.LICENSE @@ -1,3 +1,45 @@ +--- +key: guile-exception-2.0 +short_name: GUILE exception to GPL 2.0 +name: GUILE exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-guile-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, the Free Software Foundation gives permission for + additional uses of the text contained in its release of GUILE. + The exception is that, if you link the GUILE library with other files to + produce an executable, this does not by itself cause the resulting + executable to be covered by the GNU General Public License. Your use of + that executable is in no way restricted on account of linking the GUILE + library code into it. + This exception does not however invalidate any other reasons why the + executable file might be covered by the GNU General Public License. + This exception applies only to the code released by the Free Software + Foundation under the name GUILE. If you copy code from other Free Software + Foundation releases into a copy of GUILE, as the General Public License + permits, the exception does not apply to the code that you add in this way. + To avoid misleading anyone as to the status of such modified files, you + must delete this exception notice from them. + If you write modifications of your own for GUILE, it is your choice whether + to permit this exception to apply to your modifications. If you do not wish + that, delete this exception notice. +--- + The exception is that, if you link the GUILE library with other files to produce an executable, this does not by itself cause the resulting executable to be covered by the GNU General Public License. Your use of that executable is in no diff --git a/src/licensedcode/data/licenses/guile-exception-2.0.yml b/src/licensedcode/data/licenses/guile-exception-2.0.yml deleted file mode 100644 index bd4edcddc55..00000000000 --- a/src/licensedcode/data/licenses/guile-exception-2.0.yml +++ /dev/null @@ -1,39 +0,0 @@ -key: guile-exception-2.0 -short_name: GUILE exception to GPL 2.0 -name: GUILE exception to GPL 2.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: LicenseRef-scancode-guile-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - As a special exception, the Free Software Foundation gives permission for - additional uses of the text contained in its release of GUILE. - The exception is that, if you link the GUILE library with other files to - produce an executable, this does not by itself cause the resulting - executable to be covered by the GNU General Public License. Your use of - that executable is in no way restricted on account of linking the GUILE - library code into it. - This exception does not however invalidate any other reasons why the - executable file might be covered by the GNU General Public License. - This exception applies only to the code released by the Free Software - Foundation under the name GUILE. If you copy code from other Free Software - Foundation releases into a copy of GUILE, as the General Public License - permits, the exception does not apply to the code that you add in this way. - To avoid misleading anyone as to the status of such modified files, you - must delete this exception notice from them. - If you write modifications of your own for GUILE, it is your choice whether - to permit this exception to apply to your modifications. If you do not wish - that, delete this exception notice. diff --git a/src/licensedcode/data/licenses/gust-font-1.0.LICENSE b/src/licensedcode/data/licenses/gust-font-1.0.LICENSE index de783149c98..17d54a3f16e 100644 --- a/src/licensedcode/data/licenses/gust-font-1.0.LICENSE +++ b/src/licensedcode/data/licenses/gust-font-1.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: gust-font-1.0 +short_name: GUST Font License 1.0 +name: GUST Font License 1.0 +category: Copyleft +owner: GUST +homepage_url: http://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt/view +spdx_license_key: LicenseRef-scancode-gust-font-1.0 +ignorable_urls: + - http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt + - http://www.gust.org.pl/ + - http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt + - http://www.latex-project.org/lppl.txt +--- + This is version 1.0, dated 22 June 2009, of the GUST Font License. (GUST is the Polish TeX Users Group, http://www.gust.org.pl) diff --git a/src/licensedcode/data/licenses/gust-font-1.0.yml b/src/licensedcode/data/licenses/gust-font-1.0.yml deleted file mode 100644 index fc484e1303c..00000000000 --- a/src/licensedcode/data/licenses/gust-font-1.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: gust-font-1.0 -short_name: GUST Font License 1.0 -name: GUST Font License 1.0 -category: Copyleft -owner: GUST -homepage_url: http://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt/view -spdx_license_key: LicenseRef-scancode-gust-font-1.0 -ignorable_urls: - - http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt - - http://www.gust.org.pl/ - - http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/licenses/gust-font-2006-09-30.LICENSE b/src/licensedcode/data/licenses/gust-font-2006-09-30.LICENSE index ad80c7486f1..be0268f9f3f 100644 --- a/src/licensedcode/data/licenses/gust-font-2006-09-30.LICENSE +++ b/src/licensedcode/data/licenses/gust-font-2006-09-30.LICENSE @@ -1,3 +1,18 @@ +--- +key: gust-font-2006-09-30 +short_name: GUST Font License 2006-09-30 +name: GUST Font License 2006-09-30 +category: Copyleft +owner: GUST +homepage_url: https://github.com/mathjax/MathJax/blob/2.3.0/fonts/HTML-CSS/Gyre-Pagella/GUST-FONT-LICENSE.txt +spdx_license_key: LicenseRef-scancode-gust-font-2006-09-30 +ignorable_urls: + - http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt + - http://www.gust.org.pl/ + - http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt + - http://www.latex-project.org/lppl.txt +--- + This is a preliminary version (2006-09-30), barring acceptance from the LaTeX Project Team and other feedback, of the GUST Font License. (GUST is the Polish TeX Users Group, http://www.gust.org.pl) diff --git a/src/licensedcode/data/licenses/gust-font-2006-09-30.yml b/src/licensedcode/data/licenses/gust-font-2006-09-30.yml deleted file mode 100644 index 2a9c9b81728..00000000000 --- a/src/licensedcode/data/licenses/gust-font-2006-09-30.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: gust-font-2006-09-30 -short_name: GUST Font License 2006-09-30 -name: GUST Font License 2006-09-30 -category: Copyleft -owner: GUST -homepage_url: https://github.com/mathjax/MathJax/blob/2.3.0/fonts/HTML-CSS/Gyre-Pagella/GUST-FONT-LICENSE.txt -spdx_license_key: LicenseRef-scancode-gust-font-2006-09-30 -ignorable_urls: - - http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt - - http://www.gust.org.pl/ - - http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/licenses/gutenberg-2020.LICENSE b/src/licensedcode/data/licenses/gutenberg-2020.LICENSE index 7f1256327d3..b961063f6b4 100644 --- a/src/licensedcode/data/licenses/gutenberg-2020.LICENSE +++ b/src/licensedcode/data/licenses/gutenberg-2020.LICENSE @@ -1,3 +1,21 @@ +--- +key: gutenberg-2020 +short_name: Gutenberg License 2020 +name: Project Gutenberg License 2020 +category: Proprietary Free +owner: gutenberg Project +homepage_url: http://dev.gutenberg.org/policy/license.html +notes: Based on text retrieved in 09-2020 +spdx_license_key: LicenseRef-scancode-gutenberg-2020 +ignorable_urls: + - http://www.gutenberg.org/ + - http://www.gutenberg.org/contact + - http://www.gutenberg.org/donate + - http://www.gutenberg.org/license +ignorable_emails: + - gbnewby@pglaf.org +--- + THE FULL PROJECT GUTENBERG LICENSE PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK diff --git a/src/licensedcode/data/licenses/gutenberg-2020.yml b/src/licensedcode/data/licenses/gutenberg-2020.yml deleted file mode 100644 index 4634565d325..00000000000 --- a/src/licensedcode/data/licenses/gutenberg-2020.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: gutenberg-2020 -short_name: Gutenberg License 2020 -name: Project Gutenberg License 2020 -category: Proprietary Free -owner: gutenberg Project -homepage_url: http://dev.gutenberg.org/policy/license.html -notes: Based on text retrieved in 09-2020 -spdx_license_key: LicenseRef-scancode-gutenberg-2020 -ignorable_urls: - - http://www.gutenberg.org/ - - http://www.gutenberg.org/contact - - http://www.gutenberg.org/donate - - http://www.gutenberg.org/license -ignorable_emails: - - gbnewby@pglaf.org diff --git a/src/licensedcode/data/licenses/h2-1.0.LICENSE b/src/licensedcode/data/licenses/h2-1.0.LICENSE index f3cd3014270..41ce451849d 100644 --- a/src/licensedcode/data/licenses/h2-1.0.LICENSE +++ b/src/licensedcode/data/licenses/h2-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: h2-1.0 +short_name: H2 1.0 +name: H2 License 1.0 +category: Copyleft Limited +owner: H2 Group +homepage_url: http://h2database.com +notes: | + This is an old license that is derived from the MPL-1.1 and different + enough to be tracked as such. Newer versions use a plain MPL-2.0 license. +spdx_license_key: LicenseRef-scancode-h2-1.0 +text_urls: + - https://web.archive.org/web/20110519100109/http://h2database.com/html/license.html +minimum_coverage: 98 +--- + H2 License - Version 1.0 @@ -390,4 +406,4 @@ Initial Developer may designate portions of the Covered Code as "Multiple- Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of this or the alternative licenses, if any, specified by the Initial Developer in the file -described in Exhibit A. +described in Exhibit A. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/h2-1.0.yml b/src/licensedcode/data/licenses/h2-1.0.yml deleted file mode 100644 index b34a6bde05f..00000000000 --- a/src/licensedcode/data/licenses/h2-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: h2-1.0 -short_name: H2 1.0 -name: H2 License 1.0 -category: Copyleft Limited -owner: H2 Group -homepage_url: http://h2database.com -notes: | - This is an old license that is derived from the MPL-1.1 and different - enough to be tracked as such. Newer versions use a plain MPL-2.0 license. -spdx_license_key: LicenseRef-scancode-h2-1.0 -text_urls: - - https://web.archive.org/web/20110519100109/http://h2database.com/html/license.html -minimum_coverage: 98 diff --git a/src/licensedcode/data/licenses/hacos-1.2.LICENSE b/src/licensedcode/data/licenses/hacos-1.2.LICENSE index 3e21e4a42ea..8e507353ba2 100644 --- a/src/licensedcode/data/licenses/hacos-1.2.LICENSE +++ b/src/licensedcode/data/licenses/hacos-1.2.LICENSE @@ -1,3 +1,19 @@ +--- +key: hacos-1.2 +short_name: HACOS 1.2 +name: Health Administration Corporation Open Source License 1.2 +category: Copyleft +owner: Health Administration Corp (NSW Department of Health) +homepage_url: https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 +spdx_license_key: LicenseRef-scancode-hacos-1.2 +text_urls: + - https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 +ignorable_copyrights: + - Copyright (c) 2004, 2005 Health Administration Corporation +ignorable_holders: + - Health Administration Corporation +--- + HEALTH ADMINISTRATION CORPORATION OPEN SOURCE LICENSE VERSION 1.2 1. DEFINITIONS. diff --git a/src/licensedcode/data/licenses/hacos-1.2.yml b/src/licensedcode/data/licenses/hacos-1.2.yml deleted file mode 100644 index 4c0f22595ef..00000000000 --- a/src/licensedcode/data/licenses/hacos-1.2.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: hacos-1.2 -short_name: HACOS 1.2 -name: Health Administration Corporation Open Source License 1.2 -category: Copyleft -owner: Health Administration Corp (NSW Department of Health) -homepage_url: https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 -spdx_license_key: LicenseRef-scancode-hacos-1.2 -text_urls: - - https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 -ignorable_copyrights: - - Copyright (c) 2004, 2005 Health Administration Corporation -ignorable_holders: - - Health Administration Corporation diff --git a/src/licensedcode/data/licenses/happy-bunny.LICENSE b/src/licensedcode/data/licenses/happy-bunny.LICENSE index d08a0f99a1c..9b94c445f00 100644 --- a/src/licensedcode/data/licenses/happy-bunny.LICENSE +++ b/src/licensedcode/data/licenses/happy-bunny.LICENSE @@ -1,3 +1,17 @@ +--- +key: happy-bunny +short_name: The Happy Bunny License +name: The Happy Bunny License +category: Permissive +owner: G-Truc Creation +homepage_url: https://glm.g-truc.net/copying.txt +spdx_license_key: LicenseRef-scancode-happy-bunny +ignorable_copyrights: + - Copyright (c) G-Truc Creation +ignorable_holders: + - G-Truc Creation +--- + ================================================================================ The Happy Bunny License (Modified MIT License) -------------------------------------------------------------------------------- diff --git a/src/licensedcode/data/licenses/happy-bunny.yml b/src/licensedcode/data/licenses/happy-bunny.yml deleted file mode 100644 index 476be461cef..00000000000 --- a/src/licensedcode/data/licenses/happy-bunny.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: happy-bunny -short_name: The Happy Bunny License -name: The Happy Bunny License -category: Permissive -owner: G-Truc Creation -homepage_url: https://glm.g-truc.net/copying.txt -spdx_license_key: LicenseRef-scancode-happy-bunny -ignorable_copyrights: - - Copyright (c) G-Truc Creation -ignorable_holders: - - G-Truc Creation diff --git a/src/licensedcode/data/licenses/haskell-report.LICENSE b/src/licensedcode/data/licenses/haskell-report.LICENSE index b822c78459c..ce55605d359 100644 --- a/src/licensedcode/data/licenses/haskell-report.LICENSE +++ b/src/licensedcode/data/licenses/haskell-report.LICENSE @@ -1,3 +1,13 @@ +--- +key: haskell-report +short_name: Haskell Report License +name: Haskell Language Report License +category: Permissive +owner: Simon Marlow +homepage_url: https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License +spdx_license_key: HaskellReport +--- + The authors intend this Report to belong to the entire Haskell community, and so we grant permission to copy and distribute it for any purpose, provided that it is reproduced in its entirety, including this Notice. Modified versions of diff --git a/src/licensedcode/data/licenses/haskell-report.yml b/src/licensedcode/data/licenses/haskell-report.yml deleted file mode 100644 index fdfb12aad71..00000000000 --- a/src/licensedcode/data/licenses/haskell-report.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: haskell-report -short_name: Haskell Report License -name: Haskell Language Report License -category: Permissive -owner: Simon Marlow -homepage_url: https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License -spdx_license_key: HaskellReport diff --git a/src/licensedcode/data/licenses/hauppauge-firmware-eula.LICENSE b/src/licensedcode/data/licenses/hauppauge-firmware-eula.LICENSE index 591c4895332..90867bd57cb 100644 --- a/src/licensedcode/data/licenses/hauppauge-firmware-eula.LICENSE +++ b/src/licensedcode/data/licenses/hauppauge-firmware-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: hauppauge-firmware-eula +short_name: Hauppauge Firmware EULA +name: Hauppauge Firmware EULA +category: Proprietary Free +owner: Hauppauge +homepage_url: https://lists.debian.org/debian-devel/2007/02/msg00498.html +spdx_license_key: LicenseRef-scancode-hauppauge-firmware-eula +--- + END-USER FIRMWARE LICENSE AGREEMENT (this license). LICENSE. You may copy and use the Firmware, subject to these conditions: diff --git a/src/licensedcode/data/licenses/hauppauge-firmware-eula.yml b/src/licensedcode/data/licenses/hauppauge-firmware-eula.yml deleted file mode 100644 index 566ea26b6db..00000000000 --- a/src/licensedcode/data/licenses/hauppauge-firmware-eula.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: hauppauge-firmware-eula -short_name: Hauppauge Firmware EULA -name: Hauppauge Firmware EULA -category: Proprietary Free -owner: Hauppauge -homepage_url: https://lists.debian.org/debian-devel/2007/02/msg00498.html -spdx_license_key: LicenseRef-scancode-hauppauge-firmware-eula diff --git a/src/licensedcode/data/licenses/hauppauge-firmware-oem.LICENSE b/src/licensedcode/data/licenses/hauppauge-firmware-oem.LICENSE index 032c8f6d49d..16a1dd1e323 100644 --- a/src/licensedcode/data/licenses/hauppauge-firmware-oem.LICENSE +++ b/src/licensedcode/data/licenses/hauppauge-firmware-oem.LICENSE @@ -1,3 +1,13 @@ +--- +key: hauppauge-firmware-oem +short_name: Hauppauge Firmware OEM License +name: Hauppauge Firmware OEM License +category: Proprietary Free +owner: Hauppauge +homepage_url: https://lists.debian.org/debian-devel/2007/02/msg00498.html +spdx_license_key: LicenseRef-scancode-hauppauge-firmware-oem +--- + OEM/IHV/ISV FIRMWARE LICENSE AGREEMENT IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS FIRMWARE diff --git a/src/licensedcode/data/licenses/hauppauge-firmware-oem.yml b/src/licensedcode/data/licenses/hauppauge-firmware-oem.yml deleted file mode 100644 index 6cfdc7e05f2..00000000000 --- a/src/licensedcode/data/licenses/hauppauge-firmware-oem.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: hauppauge-firmware-oem -short_name: Hauppauge Firmware OEM License -name: Hauppauge Firmware OEM License -category: Proprietary Free -owner: Hauppauge -homepage_url: https://lists.debian.org/debian-devel/2007/02/msg00498.html -spdx_license_key: LicenseRef-scancode-hauppauge-firmware-oem diff --git a/src/licensedcode/data/licenses/hazelcast-community-1.0.LICENSE b/src/licensedcode/data/licenses/hazelcast-community-1.0.LICENSE index 086159c4dd8..b0cd41292a5 100644 --- a/src/licensedcode/data/licenses/hazelcast-community-1.0.LICENSE +++ b/src/licensedcode/data/licenses/hazelcast-community-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: hazelcast-community-1.0 +short_name: Hazelcast Community License 1.0 +name: Hazelcast Community License 1.0 +category: Source-available +owner: Hazelcast +homepage_url: https://github.com/hazelcast/hazelcast-aws/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-hazelcast-community-1.0 +ignorable_urls: + - http://hazelcast.com/Hazelcast-community-license +--- + Hazelcast Community License Version 1.0 diff --git a/src/licensedcode/data/licenses/hazelcast-community-1.0.yml b/src/licensedcode/data/licenses/hazelcast-community-1.0.yml deleted file mode 100644 index bbbc6ce0367..00000000000 --- a/src/licensedcode/data/licenses/hazelcast-community-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: hazelcast-community-1.0 -short_name: Hazelcast Community License 1.0 -name: Hazelcast Community License 1.0 -category: Source-available -owner: Hazelcast -homepage_url: https://github.com/hazelcast/hazelcast-aws/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-hazelcast-community-1.0 -ignorable_urls: - - http://hazelcast.com/Hazelcast-community-license diff --git a/src/licensedcode/data/licenses/hdf4.LICENSE b/src/licensedcode/data/licenses/hdf4.LICENSE index 6f73d89cc29..7839ba3c715 100644 --- a/src/licensedcode/data/licenses/hdf4.LICENSE +++ b/src/licensedcode/data/licenses/hdf4.LICENSE @@ -1,3 +1,61 @@ +--- +key: hdf4 +short_name: HDF4 License +name: HDF4 License +category: Permissive +owner: The HDF Group +homepage_url: https://bitbucket.hdfgroup.org/projects/HDFFR/repos/hdf4/browse/COPYING?raw +spdx_license_key: LicenseRef-scancode-hdf4 +other_urls: + - https://support.hdfgroup.org/ftp/HDF/releases/HDF4.2.14/src/hdf-4.2.14.tar.bz2 +standard_notice: | + Copyright Notice and License Terms for + Hierarchical Data Format (HDF) Software Library and Utilities + --------------------------------------------------------------------------- + Hierarchical Data Format (HDF) Software Library and Utilities + Copyright 2006 by The HDF Group. + NCSA Hierarchical Data Format (HDF) Software Library and Utilities + Copyright 1988-2006 by the Board of Trustees of the University of Illinois. + All rights reserved. + Redistribution and use in source and binary forms, with or without + modification, are permitted for any purpose (including commercial purposes) + 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 materials provided with the distribution. + 3. In addition, redistributions of modified forms of the source or binary + code must carry prominent notices stating that the original code was + changed and the date of the change. + 4. All publications or advertising materials mentioning features or use of + this software are asked, but not required, to acknowledge that it was + developed by The HDF Group and by the National Center for Supercomputing + Applications at the University of Illinois at Urbana-Champaign and + credit the contributors. + 5. Neither the name of The HDF Group, the name of the University, nor the + name of any Contributor may be used to endorse or promote products derived + from this software without specific prior written permission from The HDF + Group, the University, or the Contributor, respectively. + DISCLAIMER: + THIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS "AS IS" + WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event + shall The HDF Group or the Contributors be liable for any damages suffered + by the users arising out of the use of this software, even if advised of + the possibility of such damage. + --------------------------------------------------------------------------- + --------------------------------------------------------------------------- + Contributors: National Center for Supercomputing Applications (NCSA) at + the University of Illinois, Fortner Software, Unidata Program Center + (netCDF), + The Independent JPEG Group (JPEG), Jean-loup Gailly and Mark Adler (gzip), + and Digital Equipment Corporation (DEC). + --------------------------------------------------------------------------- +ignorable_authors: + - The HDF Group +--- + Redistribution and use in source and binary forms, with or without modification, are permitted for any purpose (including commercial purposes) provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/hdf4.yml b/src/licensedcode/data/licenses/hdf4.yml deleted file mode 100644 index bde9729f8f2..00000000000 --- a/src/licensedcode/data/licenses/hdf4.yml +++ /dev/null @@ -1,55 +0,0 @@ -key: hdf4 -short_name: HDF4 License -name: HDF4 License -category: Permissive -owner: The HDF Group -homepage_url: https://bitbucket.hdfgroup.org/projects/HDFFR/repos/hdf4/browse/COPYING?raw -spdx_license_key: LicenseRef-scancode-hdf4 -other_urls: - - https://support.hdfgroup.org/ftp/HDF/releases/HDF4.2.14/src/hdf-4.2.14.tar.bz2 -standard_notice: | - Copyright Notice and License Terms for - Hierarchical Data Format (HDF) Software Library and Utilities - --------------------------------------------------------------------------- - Hierarchical Data Format (HDF) Software Library and Utilities - Copyright 2006 by The HDF Group. - NCSA Hierarchical Data Format (HDF) Software Library and Utilities - Copyright 1988-2006 by the Board of Trustees of the University of Illinois. - All rights reserved. - Redistribution and use in source and binary forms, with or without - modification, are permitted for any purpose (including commercial purposes) - 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 materials provided with the distribution. - 3. In addition, redistributions of modified forms of the source or binary - code must carry prominent notices stating that the original code was - changed and the date of the change. - 4. All publications or advertising materials mentioning features or use of - this software are asked, but not required, to acknowledge that it was - developed by The HDF Group and by the National Center for Supercomputing - Applications at the University of Illinois at Urbana-Champaign and - credit the contributors. - 5. Neither the name of The HDF Group, the name of the University, nor the - name of any Contributor may be used to endorse or promote products derived - from this software without specific prior written permission from The HDF - Group, the University, or the Contributor, respectively. - DISCLAIMER: - THIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS "AS IS" - WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. In no event - shall The HDF Group or the Contributors be liable for any damages suffered - by the users arising out of the use of this software, even if advised of - the possibility of such damage. - --------------------------------------------------------------------------- - --------------------------------------------------------------------------- - Contributors: National Center for Supercomputing Applications (NCSA) at - the University of Illinois, Fortner Software, Unidata Program Center - (netCDF), - The Independent JPEG Group (JPEG), Jean-loup Gailly and Mark Adler (gzip), - and Digital Equipment Corporation (DEC). - --------------------------------------------------------------------------- -ignorable_authors: - - The HDF Group diff --git a/src/licensedcode/data/licenses/hdf5.LICENSE b/src/licensedcode/data/licenses/hdf5.LICENSE index 838e6daa536..78a897d9b51 100644 --- a/src/licensedcode/data/licenses/hdf5.LICENSE +++ b/src/licensedcode/data/licenses/hdf5.LICENSE @@ -1,3 +1,17 @@ +--- +key: hdf5 +short_name: HDF5License +name: HDF5 License +category: Permissive +owner: The HDF Group +homepage_url: https://bitbucket.hdfgroup.org/projects/HDFFV/repos/hdf5/browse/COPYING?raw +spdx_license_key: LicenseRef-scancode-hdf5 +standard_notice: "This file is part of HDF5. The full HDF5 copyright notice, including \n\ + terms governing use, modification, and redistribution, is contained in \nthe COPYING file,\ + \ which can be found at the root of the source code \ndistribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.\n\ + If you do not have access to either file, you may request a copy from \nhelp@hdfgroup.org. " +--- + Redistribution and use in source and binary forms, with or without modification, are permitted for any purpose (including commercial purposes) provided that the following conditions are met: @@ -18,5 +32,4 @@ DISCLAIMER: THIS SOFTWARE IS PROVIDED BY THE HDF GROUP AND THE CONTRIBUTORS "AS IS" WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED. IN NO EVENT SHALL THE HDF GROUP OR THE CONTRIBUTORS BE LIABLE FOR ANY DAMAGES SUFFERED BY THE USERS ARISING OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to The HDF Group, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form. - +You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements available either publicly, or directly to The HDF Group, without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such enhancements or derivative works thereof, in binary and source code form. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hdf5.yml b/src/licensedcode/data/licenses/hdf5.yml deleted file mode 100644 index 603b5d91026..00000000000 --- a/src/licensedcode/data/licenses/hdf5.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: hdf5 -short_name: HDF5License -name: HDF5 License -category: Permissive -owner: The HDF Group -homepage_url: https://bitbucket.hdfgroup.org/projects/HDFFV/repos/hdf5/browse/COPYING?raw -spdx_license_key: LicenseRef-scancode-hdf5 -standard_notice: "This file is part of HDF5. The full HDF5 copyright notice, including \n\ - terms governing use, modification, and redistribution, is contained in \nthe COPYING file,\ - \ which can be found at the root of the source code \ndistribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.\n\ - If you do not have access to either file, you may request a copy from \nhelp@hdfgroup.org. " diff --git a/src/licensedcode/data/licenses/hdparm.LICENSE b/src/licensedcode/data/licenses/hdparm.LICENSE index 2807dbc0cf7..573ce2e0d6e 100644 --- a/src/licensedcode/data/licenses/hdparm.LICENSE +++ b/src/licensedcode/data/licenses/hdparm.LICENSE @@ -1,3 +1,15 @@ +--- +key: hdparm +short_name: HDPARM License +name: HDPARM License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-hdparm +minimum_coverage: 90 +ignorable_emails: + - mlord@pobox.com +--- + You may freely use, modify, and redistribute the hdparm program, as either binary or source, or both. diff --git a/src/licensedcode/data/licenses/hdparm.yml b/src/licensedcode/data/licenses/hdparm.yml deleted file mode 100644 index 3aea1c6dba9..00000000000 --- a/src/licensedcode/data/licenses/hdparm.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: hdparm -short_name: HDPARM License -name: HDPARM License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-hdparm -minimum_coverage: 90 -ignorable_emails: - - mlord@pobox.com diff --git a/src/licensedcode/data/licenses/helios-eula.LICENSE b/src/licensedcode/data/licenses/helios-eula.LICENSE index bf3e0f3ef81..d72113dca9c 100644 --- a/src/licensedcode/data/licenses/helios-eula.LICENSE +++ b/src/licensedcode/data/licenses/helios-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: helios-eula +short_name: Helios +name: Helios EULA +category: Commercial +owner: Helios Software Solutions +homepage_url: http://www.textpad.com/copyright.html +spdx_license_key: LicenseRef-scancode-helios-eula +ignorable_urls: + - http://www.textpad.com/ +--- + END USER LICENSE AGREEMENT FOR HELIOS SOFTWARE SOLUTIONS SOFTWARE. IMPORTANT - READ CAREFULLY: This Helios Software Solutions End-User License Agreement ("EULA") is a legal agreement between you (either an individual person or a single legal entity, who will be referred to in this EULA as "You") and Helios Software Solutions ("Helios") for the Helios software product that accompanies this EULA, including any associated media, printed materials and electronic documentation (the "Software Product"). The Software Product also includes any software updates, add-on components, web services and/or supplements that Helios may provide to You or make available to You after the date You obtain Your initial copy of the Software Product to the extent that such items are not accompanied by a separate license agreement or terms of use. By installing, copying, downloading, accessing or otherwise using the Software Product, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, do not install, access or use the Software Product; instead, You should return it, with proof of purchase, to Your place of purchase for a full refund. diff --git a/src/licensedcode/data/licenses/helios-eula.yml b/src/licensedcode/data/licenses/helios-eula.yml deleted file mode 100644 index dc264419ecc..00000000000 --- a/src/licensedcode/data/licenses/helios-eula.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: helios-eula -short_name: Helios -name: Helios EULA -category: Commercial -owner: Helios Software Solutions -homepage_url: http://www.textpad.com/copyright.html -spdx_license_key: LicenseRef-scancode-helios-eula -ignorable_urls: - - http://www.textpad.com/ diff --git a/src/licensedcode/data/licenses/helix.LICENSE b/src/licensedcode/data/licenses/helix.LICENSE index ac8ef22c68f..8624bafe7a7 100644 --- a/src/licensedcode/data/licenses/helix.LICENSE +++ b/src/licensedcode/data/licenses/helix.LICENSE @@ -1,3 +1,21 @@ +--- +key: helix +short_name: Helix DNA License +name: Helix DNA Technology Binary Research Use License +category: Proprietary Free +owner: RealNetworks +homepage_url: https://helixcommunity.org/beula/ +spdx_license_key: LicenseRef-scancode-helix +text_urls: + - https://helixcommunity.org/beula/ +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. +ignorable_holders: + - RealNetworks, Inc. +ignorable_urls: + - http://www.helixcommunity.org/ +--- + Helix DNA Technology Binary Research Use License REDISTRIBUTION NOT PERMITTED diff --git a/src/licensedcode/data/licenses/helix.yml b/src/licensedcode/data/licenses/helix.yml deleted file mode 100644 index 6fb5bb4b278..00000000000 --- a/src/licensedcode/data/licenses/helix.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: helix -short_name: Helix DNA License -name: Helix DNA Technology Binary Research Use License -category: Proprietary Free -owner: RealNetworks -homepage_url: https://helixcommunity.org/beula/ -spdx_license_key: LicenseRef-scancode-helix -text_urls: - - https://helixcommunity.org/beula/ -ignorable_copyrights: - - Copyright (c) 1995-2002 RealNetworks, Inc. -ignorable_holders: - - RealNetworks, Inc. -ignorable_urls: - - http://www.helixcommunity.org/ diff --git a/src/licensedcode/data/licenses/henry-spencer-1999.LICENSE b/src/licensedcode/data/licenses/henry-spencer-1999.LICENSE index d67a228b691..ad71a281853 100644 --- a/src/licensedcode/data/licenses/henry-spencer-1999.LICENSE +++ b/src/licensedcode/data/licenses/henry-spencer-1999.LICENSE @@ -1,3 +1,15 @@ +--- +key: henry-spencer-1999 +short_name: Henry Spencer License 1999 +name: Henry Spencer License 1999 +category: Permissive +owner: Henry Spencer +homepage_url: http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c +spdx_license_key: Spencer-99 +text_urls: + - http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c +--- + Development of this software was funded, in part, by Cray Research Inc., UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics Corporation, none of whom are responsible for the results. The author @@ -20,4 +32,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/henry-spencer-1999.yml b/src/licensedcode/data/licenses/henry-spencer-1999.yml deleted file mode 100644 index ff971ac31a3..00000000000 --- a/src/licensedcode/data/licenses/henry-spencer-1999.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: henry-spencer-1999 -short_name: Henry Spencer License 1999 -name: Henry Spencer License 1999 -category: Permissive -owner: Henry Spencer -homepage_url: http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c -spdx_license_key: Spencer-99 -text_urls: - - http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c diff --git a/src/licensedcode/data/licenses/here-disclaimer.LICENSE b/src/licensedcode/data/licenses/here-disclaimer.LICENSE index 347f527221a..013c3e4a3f8 100644 --- a/src/licensedcode/data/licenses/here-disclaimer.LICENSE +++ b/src/licensedcode/data/licenses/here-disclaimer.LICENSE @@ -1,3 +1,12 @@ +--- +key: here-disclaimer +short_name: HERE Disclaimer +name: HERE Disclaimer +category: Unstated License +owner: HERE Global B.V. +spdx_license_key: LicenseRef-scancode-here-disclaimer +--- + This content is provided "as-is" and without warranties of any kind, either express or implied, including, but not limited to, the implied warranties of merchantability, fitness for a particular purpose, satisfactory quality and non- @@ -10,4 +19,4 @@ negligence of HERE, shall HERE be liable for any damages, including, without limitation, direct, special, indirect, punitive, consequential, exemplary and/ or incidental damages that result from the use or application of this content, even if HERE or an authorized representative has been advised of the possibility -of such damages. +of such damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/here-disclaimer.yml b/src/licensedcode/data/licenses/here-disclaimer.yml deleted file mode 100644 index 87c546272d5..00000000000 --- a/src/licensedcode/data/licenses/here-disclaimer.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: here-disclaimer -short_name: HERE Disclaimer -name: HERE Disclaimer -category: Unstated License -owner: HERE Global B.V. -spdx_license_key: LicenseRef-scancode-here-disclaimer diff --git a/src/licensedcode/data/licenses/here-proprietary.LICENSE b/src/licensedcode/data/licenses/here-proprietary.LICENSE index db67ea05102..4b37348ec25 100644 --- a/src/licensedcode/data/licenses/here-proprietary.LICENSE +++ b/src/licensedcode/data/licenses/here-proprietary.LICENSE @@ -1,7 +1,18 @@ +--- +key: here-proprietary +short_name: HERE Proprietary +name: HERE Proprietary License +category: Commercial +owner: HERE Global B.V. +spdx_license_key: LicenseRef-scancode-here-proprietary +other_spdx_license_keys: + - LicenseRef-Proprietary-HERE +--- + This software and other materials contain proprietary information controlled by HERE and are protected by applicable copyright legislation. Any use and utilization of this software and other materials and disclosure to any third parties is conditional upon having a separate agreement with HERE for the access, use, utilization or disclosure of this software. In the absence of such agreement, the use of the software is not -allowed. +allowed. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/here-proprietary.yml b/src/licensedcode/data/licenses/here-proprietary.yml deleted file mode 100644 index 70ea3e28f2d..00000000000 --- a/src/licensedcode/data/licenses/here-proprietary.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: here-proprietary -short_name: HERE Proprietary -name: HERE Proprietary License -category: Commercial -owner: HERE Global B.V. -spdx_license_key: LicenseRef-scancode-here-proprietary -other_spdx_license_keys: - - LicenseRef-Proprietary-HERE diff --git a/src/licensedcode/data/licenses/hessla.LICENSE b/src/licensedcode/data/licenses/hessla.LICENSE index ad52da31263..1b02616c98b 100644 --- a/src/licensedcode/data/licenses/hessla.LICENSE +++ b/src/licensedcode/data/licenses/hessla.LICENSE @@ -1,3 +1,15 @@ +--- +key: hessla +short_name: HESSLA +name: Hacktivismo Enhanced-Source Software License Agreement +category: Proprietary Free +owner: Hacktivismo +homepage_url: http://www.hacktivismo.com/about/hessla.php +spdx_license_key: LicenseRef-scancode-hessla +text_urls: + - https://directory.fsf.org/wiki/License:HESSLA +--- + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, USE AND/OR MODIFICATION 0. DEFINITIONS. The following are defined terms that, whenever used in @@ -930,4 +942,4 @@ invalid or unenforceable under any particular circumstance, the balance of the License Agreement is intended to apply and the License Agreement as a whole is intended to apply in other circumstances. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hessla.yml b/src/licensedcode/data/licenses/hessla.yml deleted file mode 100644 index 295a97359e3..00000000000 --- a/src/licensedcode/data/licenses/hessla.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: hessla -short_name: HESSLA -name: Hacktivismo Enhanced-Source Software License Agreement -category: Proprietary Free -owner: Hacktivismo -homepage_url: http://www.hacktivismo.com/about/hessla.php -spdx_license_key: LicenseRef-scancode-hessla -text_urls: - - https://directory.fsf.org/wiki/License:HESSLA diff --git a/src/licensedcode/data/licenses/hidapi.LICENSE b/src/licensedcode/data/licenses/hidapi.LICENSE index d88fdff1691..0026b536a4b 100644 --- a/src/licensedcode/data/licenses/hidapi.LICENSE +++ b/src/licensedcode/data/licenses/hidapi.LICENSE @@ -1,2 +1,12 @@ +--- +key: hidapi +short_name: HIDAPI License +name: HIDAPI License +category: Permissive +owner: Signal 11 Software +homepage_url: https://github.com/signal11/hidapi/blob/master/LICENSE-orig.txt +spdx_license_key: LicenseRef-scancode-hidapi +--- + This software may be used by anyone for any reason so long as the copyright notice in the source files remains intact. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hidapi.yml b/src/licensedcode/data/licenses/hidapi.yml deleted file mode 100644 index 322dbbbd2d0..00000000000 --- a/src/licensedcode/data/licenses/hidapi.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: hidapi -short_name: HIDAPI License -name: HIDAPI License -category: Permissive -owner: Signal 11 Software -homepage_url: https://github.com/signal11/hidapi/blob/master/LICENSE-orig.txt -spdx_license_key: LicenseRef-scancode-hidapi diff --git a/src/licensedcode/data/licenses/hippocratic-1.0.LICENSE b/src/licensedcode/data/licenses/hippocratic-1.0.LICENSE index 1d2dfcbeea2..9267cde6079 100644 --- a/src/licensedcode/data/licenses/hippocratic-1.0.LICENSE +++ b/src/licensedcode/data/licenses/hippocratic-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: hippocratic-1.0 +short_name: Hippocratic License 1.0 +name: Hippocratic License v1.0 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-hippocratic-1.0 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -8,4 +18,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. +This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hippocratic-1.0.yml b/src/licensedcode/data/licenses/hippocratic-1.0.yml deleted file mode 100644 index c6f83fb061e..00000000000 --- a/src/licensedcode/data/licenses/hippocratic-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: hippocratic-1.0 -short_name: Hippocratic License 1.0 -name: Hippocratic License v1.0 -category: Free Restricted -owner: Ethical Source -homepage_url: https://firstdonoharm.dev/ -spdx_license_key: LicenseRef-scancode-hippocratic-1.0 diff --git a/src/licensedcode/data/licenses/hippocratic-1.1.LICENSE b/src/licensedcode/data/licenses/hippocratic-1.1.LICENSE index ab0558de903..cec1d1acfb7 100644 --- a/src/licensedcode/data/licenses/hippocratic-1.1.LICENSE +++ b/src/licensedcode/data/licenses/hippocratic-1.1.LICENSE @@ -1,3 +1,13 @@ +--- +key: hippocratic-1.1 +short_name: Hippocratic License 1.1 +name: Hippocratic License v1.1 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-hippocratic-1.1 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. @@ -6,4 +16,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. +This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hippocratic-1.1.yml b/src/licensedcode/data/licenses/hippocratic-1.1.yml deleted file mode 100644 index fd7e894b0a3..00000000000 --- a/src/licensedcode/data/licenses/hippocratic-1.1.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: hippocratic-1.1 -short_name: Hippocratic License 1.1 -name: Hippocratic License v1.1 -category: Free Restricted -owner: Ethical Source -homepage_url: https://firstdonoharm.dev/ -spdx_license_key: LicenseRef-scancode-hippocratic-1.1 diff --git a/src/licensedcode/data/licenses/hippocratic-1.2.LICENSE b/src/licensedcode/data/licenses/hippocratic-1.2.LICENSE index 65a8ae22b49..65c0404e341 100644 --- a/src/licensedcode/data/licenses/hippocratic-1.2.LICENSE +++ b/src/licensedcode/data/licenses/hippocratic-1.2.LICENSE @@ -1,3 +1,20 @@ +--- +key: hippocratic-1.2 +short_name: Hippocratic License v1.2 +name: Hippocratic License v1.2 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-hippocratic-1.2 +text_urls: + - https://firstdonoharm.dev/version/1/2/license.html + - https://firstdonoharm.dev/version/1/2/license.txt +faq_url: https://www.un.org/en/universal-declaration-human-rights/ +ignorable_urls: + - https://ethicalsource.dev/ + - https://www.un.org/en/universal-declaration-human-rights +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -12,5 +29,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software. - +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hippocratic-1.2.yml b/src/licensedcode/data/licenses/hippocratic-1.2.yml deleted file mode 100644 index 740bc9276ae..00000000000 --- a/src/licensedcode/data/licenses/hippocratic-1.2.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: hippocratic-1.2 -short_name: Hippocratic License v1.2 -name: Hippocratic License v1.2 -category: Free Restricted -owner: Ethical Source -homepage_url: https://firstdonoharm.dev/ -spdx_license_key: LicenseRef-scancode-hippocratic-1.2 -text_urls: - - https://firstdonoharm.dev/version/1/2/license.html - - https://firstdonoharm.dev/version/1/2/license.txt -faq_url: https://www.un.org/en/universal-declaration-human-rights/ -ignorable_urls: - - https://ethicalsource.dev/ - - https://www.un.org/en/universal-declaration-human-rights diff --git a/src/licensedcode/data/licenses/hippocratic-2.0.LICENSE b/src/licensedcode/data/licenses/hippocratic-2.0.LICENSE index 0a034efb414..88dc48f90d3 100644 --- a/src/licensedcode/data/licenses/hippocratic-2.0.LICENSE +++ b/src/licensedcode/data/licenses/hippocratic-2.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: hippocratic-2.0 +short_name: Hippocratic License 2.0 +name: Hippocratic License v2.0 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-hippocratic-2.0 +text_urls: + - https://firstdonoharm.dev/version/2/0/license.md + - https://firstdonoharm.dev/version/2/0/license.html +other_urls: + - https://www.un.org/en/universal-declaration-human-rights/ +ignorable_urls: + - https://ethicalsource.dev/ + - https://firstdonoharm.dev/ + - https://www.un.org/en/universal-declaration-human-rights + - https://www.unglobalcompact.org/what-is-gc/mission/principles +--- + Hippocratic License Version 2.0. Licensor hereby grants permission by this license ("License"), free of charge, to any person or entity (the "Licensee") obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -18,4 +38,4 @@ Licensor hereby grants permission by this license ("License"), free of charge, THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev). +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev). \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hippocratic-2.0.yml b/src/licensedcode/data/licenses/hippocratic-2.0.yml deleted file mode 100644 index 1e129af6d06..00000000000 --- a/src/licensedcode/data/licenses/hippocratic-2.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: hippocratic-2.0 -short_name: Hippocratic License 2.0 -name: Hippocratic License v2.0 -category: Free Restricted -owner: Ethical Source -homepage_url: https://firstdonoharm.dev/ -spdx_license_key: LicenseRef-scancode-hippocratic-2.0 -text_urls: - - https://firstdonoharm.dev/version/2/0/license.md - - https://firstdonoharm.dev/version/2/0/license.html -other_urls: - - https://www.un.org/en/universal-declaration-human-rights/ -ignorable_urls: - - https://ethicalsource.dev/ - - https://firstdonoharm.dev/ - - https://www.un.org/en/universal-declaration-human-rights - - https://www.unglobalcompact.org/what-is-gc/mission/principles diff --git a/src/licensedcode/data/licenses/hippocratic-2.1.LICENSE b/src/licensedcode/data/licenses/hippocratic-2.1.LICENSE index 5a8436e9350..08651224073 100644 --- a/src/licensedcode/data/licenses/hippocratic-2.1.LICENSE +++ b/src/licensedcode/data/licenses/hippocratic-2.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: hippocratic-2.1 +short_name: Hippocratic License v2.1 +name: Hippocratic License v2.1 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: Hippocratic-2.1 +text_urls: + - https://firstdonoharm.dev/version/2/1/license.md + - https://firstdonoharm.dev/version/2/1/license.html +faq_url: https://www.un.org/en/universal-declaration-human-rights/ +other_urls: + - https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt +ignorable_urls: + - https://ethicalsource.dev/ +--- + Hippocratic License Version Number: 2.1. Purpose. The purpose of this License is for the Licensor named above to permit the Licensee (as defined below) broad permission, if consistent with Human Rights Laws and Human Rights Principles (as each is defined below), to use and work with the Software (as defined below) within the full scope of Licensor’s copyright and patent rights, if any, in the Software, while ensuring attribution and protecting the Licensor from liability. @@ -28,4 +46,4 @@ Permission and Conditions. The Licensor grants permission by this license (“Li * Disclaimer. TO THE FULL EXTENT ALLOWED BY LAW, THIS SOFTWARE COMES “AS IS,” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, AND LICENSOR AND ANY OTHER CONTRIBUTOR SHALL NOT BE LIABLE TO ANYONE FOR ANY DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THIS LICENSE, UNDER ANY KIND OF LEGAL CLAIM. -This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws. +This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) and is offered for use by licensors and licensees at their own risk, on an “AS IS” basis, and with no warranties express or implied, to the maximum extent permitted by Laws. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hippocratic-2.1.yml b/src/licensedcode/data/licenses/hippocratic-2.1.yml deleted file mode 100644 index 820391c3c26..00000000000 --- a/src/licensedcode/data/licenses/hippocratic-2.1.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: hippocratic-2.1 -short_name: Hippocratic License v2.1 -name: Hippocratic License v2.1 -category: Free Restricted -owner: Ethical Source -homepage_url: https://firstdonoharm.dev/ -spdx_license_key: Hippocratic-2.1 -text_urls: - - https://firstdonoharm.dev/version/2/1/license.md - - https://firstdonoharm.dev/version/2/1/license.html -faq_url: https://www.un.org/en/universal-declaration-human-rights/ -other_urls: - - https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt -ignorable_urls: - - https://ethicalsource.dev/ diff --git a/src/licensedcode/data/licenses/hippocratic-3.0.LICENSE b/src/licensedcode/data/licenses/hippocratic-3.0.LICENSE index 084285c6d14..ac1873f8263 100644 --- a/src/licensedcode/data/licenses/hippocratic-3.0.LICENSE +++ b/src/licensedcode/data/licenses/hippocratic-3.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: hippocratic-3.0 +short_name: Hippocratic License v3.0 +name: Hippocratic License v3.0 +category: Free Restricted +owner: Ethical Source +homepage_url: https://firstdonoharm.dev/ +spdx_license_key: LicenseRef-scancode-Hippocratic-3.0 +text_urls: + - https://firstdonoharm.dev/version/3/0/license/license.txt + - https://firstdonoharm.dev/version/3/0/license/license.md + - https://firstdonoharm.dev/version/3/0/license/ +faq_url: https://www.un.org/en/universal-declaration-human-rights/ +ignorable_urls: + - https://bdsmovement.net/ + - https://bdsmovement.net/get-involved/what-to-boycott + - https://wsr-network.org/what-is-wsr/statement-of-principles +--- + HIPPOCRATIC LICENSE Version 3.0, October 2021 @@ -229,5 +248,4 @@ This section explains when a Licensee must notify others of the License. 8.8. Entire License: This is the entire License between the Licensor and Licensee with respect to the claims released herein and that the consideration stated herein is the only consideration or compensation to be paid or exchanged between them for this License. This License cannot be modified or amended except in a writing signed by Licensor and Licensee. -8.9. Successors and Assigns: This License shall be binding upon and inure to the benefit of the Licensor’s and Licensee’s respective heirs, successors, and assigns. - +8.9. Successors and Assigns: This License shall be binding upon and inure to the benefit of the Licensor’s and Licensee’s respective heirs, successors, and assigns. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hippocratic-3.0.yml b/src/licensedcode/data/licenses/hippocratic-3.0.yml deleted file mode 100644 index dfe05f0f62c..00000000000 --- a/src/licensedcode/data/licenses/hippocratic-3.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: hippocratic-3.0 -short_name: Hippocratic License v3.0 -name: Hippocratic License v3.0 -category: Free Restricted -owner: Ethical Source -homepage_url: https://firstdonoharm.dev/ -spdx_license_key: LicenseRef-scancode-Hippocratic-3.0 -text_urls: - - https://firstdonoharm.dev/version/3/0/license/license.txt - - https://firstdonoharm.dev/version/3/0/license/license.md - - https://firstdonoharm.dev/version/3/0/license/ -faq_url: https://www.un.org/en/universal-declaration-human-rights/ -ignorable_urls: - - https://bdsmovement.net/ - - https://bdsmovement.net/get-involved/what-to-boycott - - https://wsr-network.org/what-is-wsr/statement-of-principles diff --git a/src/licensedcode/data/licenses/historical-ntp.LICENSE b/src/licensedcode/data/licenses/historical-ntp.LICENSE index b52ba8034b0..6f6df01f221 100644 --- a/src/licensedcode/data/licenses/historical-ntp.LICENSE +++ b/src/licensedcode/data/licenses/historical-ntp.LICENSE @@ -1,3 +1,15 @@ +--- +key: historical-ntp +short_name: Historical Notice - NTP +name: Historical Notice - NTP +category: Permissive +owner: Unspecified +notes: | + a rare permission notice found in a few pre-1990 files by HP found in NTP + adjtimed/adjtimed.c include/adjtime.h and libntp/adjtime.c +spdx_license_key: LicenseRef-scancode-historical-ntp +--- + Permission is hereby granted for unlimited modification, use, and distribution. This software is made available with no warranty of any kind, express or implied. This copyright notice must remain intact in diff --git a/src/licensedcode/data/licenses/historical-ntp.yml b/src/licensedcode/data/licenses/historical-ntp.yml deleted file mode 100644 index 00608530409..00000000000 --- a/src/licensedcode/data/licenses/historical-ntp.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: historical-ntp -short_name: Historical Notice - NTP -name: Historical Notice - NTP -category: Permissive -owner: Unspecified -notes: | - a rare permission notice found in a few pre-1990 files by HP found in NTP - adjtimed/adjtimed.c include/adjtime.h and libntp/adjtime.c -spdx_license_key: LicenseRef-scancode-historical-ntp diff --git a/src/licensedcode/data/licenses/historical-sell-variant.LICENSE b/src/licensedcode/data/licenses/historical-sell-variant.LICENSE index 1ed3a2fbfe2..b7bbf3a2a57 100644 --- a/src/licensedcode/data/licenses/historical-sell-variant.LICENSE +++ b/src/licensedcode/data/licenses/historical-sell-variant.LICENSE @@ -1,3 +1,16 @@ +--- +key: historical-sell-variant +short_name: Historical Permission Notice and Disclaimer - sell variant +name: Historical Permission Notice and Disclaimer - sell variant +other_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19 +category: Permissive +owner: Unspecified +minimum_coverage: 40 +is_deprecated: yes +notes: this is actually the same as the x11-keith-packard +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appears in all copies, and that both that the copyright diff --git a/src/licensedcode/data/licenses/historical-sell-variant.yml b/src/licensedcode/data/licenses/historical-sell-variant.yml deleted file mode 100644 index 7e01526631b..00000000000 --- a/src/licensedcode/data/licenses/historical-sell-variant.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: historical-sell-variant -short_name: Historical Permission Notice and Disclaimer - sell variant -name: Historical Permission Notice and Disclaimer - sell variant -#spdx_license_key: HPND-sell-variant -other_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19 -category: Permissive -owner: Unspecified -minimum_coverage: 40 -is_deprecated: yes -notes: this is actually the same as the x11-keith-packard \ No newline at end of file diff --git a/src/licensedcode/data/licenses/historical.LICENSE b/src/licensedcode/data/licenses/historical.LICENSE index 8d17be468d8..4934385c310 100644 --- a/src/licensedcode/data/licenses/historical.LICENSE +++ b/src/licensedcode/data/licenses/historical.LICENSE @@ -1,3 +1,22 @@ +--- +key: historical +short_name: Historical Permission Notice and Disclaimer +name: Historical Permission Notice and Disclaimer +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/historical.php +notes: | + Per SPDX.org, this license is OSI certified. This license has been + voluntarily deprecated by its author. +spdx_license_key: HPND +text_urls: + - http://www.opensource.org/licenses/historical.php +osi_url: http://www.opensource.org/licenses/historical.php +other_urls: + - http://www.opensource.org/licenses/HPND + - https://opensource.org/licenses/HPND +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies, and diff --git a/src/licensedcode/data/licenses/historical.yml b/src/licensedcode/data/licenses/historical.yml deleted file mode 100644 index 2df3a705143..00000000000 --- a/src/licensedcode/data/licenses/historical.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: historical -short_name: Historical Permission Notice and Disclaimer -name: Historical Permission Notice and Disclaimer -category: Permissive -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/historical.php -notes: | - Per SPDX.org, this license is OSI certified. This license has been - voluntarily deprecated by its author. -spdx_license_key: HPND -text_urls: - - http://www.opensource.org/licenses/historical.php -osi_url: http://www.opensource.org/licenses/historical.php -other_urls: - - http://www.opensource.org/licenses/HPND - - https://opensource.org/licenses/HPND diff --git a/src/licensedcode/data/licenses/homebrewed.LICENSE b/src/licensedcode/data/licenses/homebrewed.LICENSE index 0bec4634b07..b6f4576771a 100644 --- a/src/licensedcode/data/licenses/homebrewed.LICENSE +++ b/src/licensedcode/data/licenses/homebrewed.LICENSE @@ -1,3 +1,15 @@ +--- +key: homebrewed +short_name: Homebrewed License +name: Homebrewed or Craft Beer License +category: Permissive +owner: Alexis Métaireau +homepage_url: https://github.com/spiral-project/ihatemoney/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-homebrewed +text_urls: + - https://github.com/laukiet78/Ihatemoney/blob/b89bd1e690847646a71920f1b7152675dd164a87/LICENSE +--- + Redistribution and use in source and binary forms of the software as well as documentation, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/homebrewed.yml b/src/licensedcode/data/licenses/homebrewed.yml deleted file mode 100644 index f3ae38770cb..00000000000 --- a/src/licensedcode/data/licenses/homebrewed.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: homebrewed -short_name: Homebrewed License -name: Homebrewed or Craft Beer License -category: Permissive -owner: Alexis Métaireau -homepage_url: https://github.com/spiral-project/ihatemoney/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-homebrewed -text_urls: - - https://github.com/laukiet78/Ihatemoney/blob/b89bd1e690847646a71920f1b7152675dd164a87/LICENSE diff --git a/src/licensedcode/data/licenses/hot-potato.LICENSE b/src/licensedcode/data/licenses/hot-potato.LICENSE index 5c8b911018e..a14d685b3ff 100644 --- a/src/licensedcode/data/licenses/hot-potato.LICENSE +++ b/src/licensedcode/data/licenses/hot-potato.LICENSE @@ -1,4 +1,14 @@ +--- +key: hot-potato +short_name: Hot Potato License +name: Hot Potato +category: Permissive +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-hot-potato +--- + All rights reserved by the last person to commit a change to this repository, except for the right to commit changes to this repository, which is hereby granted to all of earth's citizens for the purpose of -committing changes to this repository. +committing changes to this repository. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hot-potato.yml b/src/licensedcode/data/licenses/hot-potato.yml deleted file mode 100644 index 316754e408b..00000000000 --- a/src/licensedcode/data/licenses/hot-potato.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: hot-potato -short_name: Hot Potato License -name: Hot Potato -category: Permissive -owner: Unspecified -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-hot-potato diff --git a/src/licensedcode/data/licenses/hp-enterprise-eula.LICENSE b/src/licensedcode/data/licenses/hp-enterprise-eula.LICENSE index e5c27f82c78..de9f2cb091c 100644 --- a/src/licensedcode/data/licenses/hp-enterprise-eula.LICENSE +++ b/src/licensedcode/data/licenses/hp-enterprise-eula.LICENSE @@ -1,3 +1,21 @@ +--- +key: hp-enterprise-eula +short_name: HP Enterprise EULA +name: HP Enterprise EULA +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: http://h20564.www2.hpe.com/hpsc/swd/public/license?sp4ts.oid=&eulaType=passive +spdx_license_key: LicenseRef-scancode-hp-enterprise-eula +other_urls: + - http://h20564.www2.hpe.com/hpsc/swd/public/detail?swItemId=MTX_973decf09d114d81b4c97603df +ignorable_copyrights: + - Copyright 2015 Hewlett Packard Enterprise Development LP +ignorable_holders: + - Hewlett Packard Enterprise Development LP +ignorable_urls: + - http://www.hpe.com/software/SWLicensing +--- + Hewlett Packard Enterprise Support Center HPE End User License Agreement diff --git a/src/licensedcode/data/licenses/hp-enterprise-eula.yml b/src/licensedcode/data/licenses/hp-enterprise-eula.yml deleted file mode 100644 index d4380887195..00000000000 --- a/src/licensedcode/data/licenses/hp-enterprise-eula.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: hp-enterprise-eula -short_name: HP Enterprise EULA -name: HP Enterprise EULA -category: Proprietary Free -owner: HP - Hewlett Packard -homepage_url: http://h20564.www2.hpe.com/hpsc/swd/public/license?sp4ts.oid=&eulaType=passive -spdx_license_key: LicenseRef-scancode-hp-enterprise-eula -other_urls: - - http://h20564.www2.hpe.com/hpsc/swd/public/detail?swItemId=MTX_973decf09d114d81b4c97603df -ignorable_copyrights: - - Copyright 2015 Hewlett Packard Enterprise Development LP -ignorable_holders: - - Hewlett Packard Enterprise Development LP -ignorable_urls: - - http://www.hpe.com/software/SWLicensing diff --git a/src/licensedcode/data/licenses/hp-netperf.LICENSE b/src/licensedcode/data/licenses/hp-netperf.LICENSE index 2c528dea73f..5aa64832f83 100644 --- a/src/licensedcode/data/licenses/hp-netperf.LICENSE +++ b/src/licensedcode/data/licenses/hp-netperf.LICENSE @@ -1,3 +1,19 @@ +--- +key: hp-netperf +short_name: HP Netperf License +name: HP Netperf License +category: Free Restricted +owner: HP - Hewlett Packard +homepage_url: http://www.netperf.org/netperf/training/Netperf.html +spdx_license_key: LicenseRef-scancode-hp-netperf +other_urls: + - http://www.netperf.org/netperf/training/Netperf.html +ignorable_copyrights: + - copyrighted works of Hewlett-Packard Co. +ignorable_holders: + - Hewlett-Packard Co. +--- + The enclosed software and documentation includes copyrighted works of Hewlett-Packard Co. For as long as you comply with the following limitations, you are hereby authorized to (i) use, reproduce, and modify the software and documentation, and to (ii) distribute the software and documentation, including modifications, for non-commercial purposes only. 1. The enclosed software and documentation is made available at no charge in order to advance the general development of high-performance networking products. diff --git a/src/licensedcode/data/licenses/hp-netperf.yml b/src/licensedcode/data/licenses/hp-netperf.yml deleted file mode 100644 index 71681a61eaa..00000000000 --- a/src/licensedcode/data/licenses/hp-netperf.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: hp-netperf -short_name: HP Netperf License -name: HP Netperf License -category: Free Restricted -owner: HP - Hewlett Packard -homepage_url: http://www.netperf.org/netperf/training/Netperf.html -spdx_license_key: LicenseRef-scancode-hp-netperf -other_urls: - - http://www.netperf.org/netperf/training/Netperf.html -ignorable_copyrights: - - copyrighted works of Hewlett-Packard Co. -ignorable_holders: - - Hewlett-Packard Co. diff --git a/src/licensedcode/data/licenses/hp-proliant-essentials.LICENSE b/src/licensedcode/data/licenses/hp-proliant-essentials.LICENSE index 979fae107bb..1f76be87ee1 100644 --- a/src/licensedcode/data/licenses/hp-proliant-essentials.LICENSE +++ b/src/licensedcode/data/licenses/hp-proliant-essentials.LICENSE @@ -1,3 +1,20 @@ +--- +key: hp-proliant-essentials +short_name: hp-proliant-essentials +name: hp-proliant-essentials EULA +category: Commercial +owner: HP - Hewlett Packard +homepage_url: http://www.calculate-linux.org/packages/licenses/hp-proliant-essentials +spdx_license_key: LicenseRef-scancode-hp-proliant-essentials +ignorable_copyrights: + - copyrighted by Hewlett-Packard Development Company, L.P., HP's intellectual property management + company +ignorable_holders: + - Hewlett-Packard Development Company, L.P., HP's intellectual property management company +ignorable_urls: + - http://www.hp.com/ +--- + hp-proliant-essentials diff --git a/src/licensedcode/data/licenses/hp-proliant-essentials.yml b/src/licensedcode/data/licenses/hp-proliant-essentials.yml deleted file mode 100644 index 3e227d215b7..00000000000 --- a/src/licensedcode/data/licenses/hp-proliant-essentials.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: hp-proliant-essentials -short_name: hp-proliant-essentials -name: hp-proliant-essentials EULA -category: Commercial -owner: HP - Hewlett Packard -homepage_url: http://www.calculate-linux.org/packages/licenses/hp-proliant-essentials -spdx_license_key: LicenseRef-scancode-hp-proliant-essentials -ignorable_copyrights: - - copyrighted by Hewlett-Packard Development Company, L.P., HP's intellectual property management - company -ignorable_holders: - - Hewlett-Packard Development Company, L.P., HP's intellectual property management company -ignorable_urls: - - http://www.hp.com/ diff --git a/src/licensedcode/data/licenses/hp-snmp-pp.LICENSE b/src/licensedcode/data/licenses/hp-snmp-pp.LICENSE index bcdb5d6b48d..5c76d69d5e2 100644 --- a/src/licensedcode/data/licenses/hp-snmp-pp.LICENSE +++ b/src/licensedcode/data/licenses/hp-snmp-pp.LICENSE @@ -1,3 +1,28 @@ +--- +key: hp-snmp-pp +short_name: SNMP++ License +name: SNMP++ License +category: Permissive +owner: HP - Hewlett Packard +homepage_url: https://www.agentpp.com/licenses/SNMP_PP_LICENSE.txt +spdx_license_key: LicenseRef-scancode-hp-snmp-pp +standard_notice: | + Copyright (c) 1999 + Hewlett-Packard Company + ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. + Permission to use, copy, modify, distribute and/or sell this software + and/or its documentation is hereby granted without fee. User agrees + to display the above copyright notice and this license notice in all + copies of the software and any documentation of the software. User + agrees to assume all liability for the use of the software; Hewlett-Packard + makes no representations about the suitability of this software for any + purpose. It is provided "AS-IS" without warranty of any kind, either + express + or implied. User hereby grants a royalty-free license to any and all + derivatives based upon this software code base. + DESIGN + AUTHOR: Peter E. Mellquist +--- + ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. Permission to use, copy, modify, distribute and/or sell this software and/or its documentation is hereby granted without fee. User agrees diff --git a/src/licensedcode/data/licenses/hp-snmp-pp.yml b/src/licensedcode/data/licenses/hp-snmp-pp.yml deleted file mode 100644 index 2403eaaa4fe..00000000000 --- a/src/licensedcode/data/licenses/hp-snmp-pp.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: hp-snmp-pp -short_name: SNMP++ License -name: SNMP++ License -category: Permissive -owner: HP - Hewlett Packard -homepage_url: https://www.agentpp.com/licenses/SNMP_PP_LICENSE.txt -spdx_license_key: LicenseRef-scancode-hp-snmp-pp -standard_notice: | - Copyright (c) 1999 - Hewlett-Packard Company - ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS. - Permission to use, copy, modify, distribute and/or sell this software - and/or its documentation is hereby granted without fee. User agrees - to display the above copyright notice and this license notice in all - copies of the software and any documentation of the software. User - agrees to assume all liability for the use of the software; Hewlett-Packard - makes no representations about the suitability of this software for any - purpose. It is provided "AS-IS" without warranty of any kind, either - express - or implied. User hereby grants a royalty-free license to any and all - derivatives based upon this software code base. - DESIGN + AUTHOR: Peter E. Mellquist diff --git a/src/licensedcode/data/licenses/hp-software-eula.LICENSE b/src/licensedcode/data/licenses/hp-software-eula.LICENSE index 7bb3b1b148e..448fe422573 100644 --- a/src/licensedcode/data/licenses/hp-software-eula.LICENSE +++ b/src/licensedcode/data/licenses/hp-software-eula.LICENSE @@ -1,3 +1,17 @@ +--- +key: hp-software-eula +short_name: HP Software EULA +name: HP Software EULA +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0 +spdx_license_key: LicenseRef-scancode-hp-software-eula +text_urls: + - http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0 +ignorable_urls: + - http://www.hp.com/ +--- + Hewlett-Packard software license agreement END USER LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/hp-software-eula.yml b/src/licensedcode/data/licenses/hp-software-eula.yml deleted file mode 100644 index 7ebe49dc5ac..00000000000 --- a/src/licensedcode/data/licenses/hp-software-eula.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: hp-software-eula -short_name: HP Software EULA -name: HP Software EULA -category: Proprietary Free -owner: HP - Hewlett Packard -homepage_url: http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0 -spdx_license_key: LicenseRef-scancode-hp-software-eula -text_urls: - - http://h20000.www2.hp.com/bizsupport/TechSupport/softwareLicense.jsp?lang=en&cc=us&prodSeriesId=3219717&prodTypeId=0 -ignorable_urls: - - http://www.hp.com/ diff --git a/src/licensedcode/data/licenses/hp-ux-java.LICENSE b/src/licensedcode/data/licenses/hp-ux-java.LICENSE index e6af0d7cfd4..97ba5c304cc 100644 --- a/src/licensedcode/data/licenses/hp-ux-java.LICENSE +++ b/src/licensedcode/data/licenses/hp-ux-java.LICENSE @@ -1,3 +1,19 @@ +--- +key: hp-ux-java +short_name: HP-UX 11i Java Technology Software +name: HP-UX 11i Java Technology Software +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html +spdx_license_key: LicenseRef-scancode-hp-ux-java +text_urls: + - http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html +ignorable_copyrights: + - copyrighted by HP +ignorable_holders: + - HP +--- + HP-UX Runtime Environment, for the Java(tm) 2 Platform ATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE HP SOFTWARE LICENSE TERMS diff --git a/src/licensedcode/data/licenses/hp-ux-java.yml b/src/licensedcode/data/licenses/hp-ux-java.yml deleted file mode 100644 index b9947bf7646..00000000000 --- a/src/licensedcode/data/licenses/hp-ux-java.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: hp-ux-java -short_name: HP-UX 11i Java Technology Software -name: HP-UX 11i Java Technology Software -category: Proprietary Free -owner: HP - Hewlett Packard -homepage_url: http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html -spdx_license_key: LicenseRef-scancode-hp-ux-java -text_urls: - - http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html -ignorable_copyrights: - - copyrighted by HP -ignorable_holders: - - HP diff --git a/src/licensedcode/data/licenses/hp-ux-jre.LICENSE b/src/licensedcode/data/licenses/hp-ux-jre.LICENSE index 25a86656d67..b280241028b 100644 --- a/src/licensedcode/data/licenses/hp-ux-jre.LICENSE +++ b/src/licensedcode/data/licenses/hp-ux-jre.LICENSE @@ -1,3 +1,16 @@ +--- +key: hp-ux-jre +short_name: HP JRE License +name: Hewlett Packard JRE License +category: Proprietary Free +owner: HP - Hewlett Packard +spdx_license_key: LicenseRef-scancode-hp-ux-jre +ignorable_copyrights: + - copyrighted by HP +ignorable_holders: + - HP +--- + LEGAL NOTICE - READ BEFORE DOWNLOADING OR OTHERWISE USING THIS SOFTWARE. ATTENTION: USE OF THE SOFTWARE IS SUBJECT TO THE HP SOFTWARE LICENSE TERMS, AND SUPPLEMENTAL RESTRICTIONS SET FORTH BELOW AND THE HP WARRANTY DISCLAIMER ATTACHED. CLICK ON THE "I ACCEPT" BOX BELOW TO INDICATE YOUR ACCEPTANCE OF THESE TERMS. IF YOU DO NOT ACCEPT THESE TERMS FULLY, YOU MAY NOT INSTALL OR OTHERWISE USE THE SOFTWARE. NOTWITHSTANDING ANYTHING TO THE CONTRARY IN THIS NOTICE, INSTALLING OR OTHERWISE USING THE SOFTWARE INDICATES YOUR ACCEPTANCE OF THESE LICENSE TERMS. diff --git a/src/licensedcode/data/licenses/hp-ux-jre.yml b/src/licensedcode/data/licenses/hp-ux-jre.yml deleted file mode 100644 index 695e1c1ec88..00000000000 --- a/src/licensedcode/data/licenses/hp-ux-jre.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: hp-ux-jre -short_name: HP JRE License -name: Hewlett Packard JRE License -category: Proprietary Free -owner: HP - Hewlett Packard -spdx_license_key: LicenseRef-scancode-hp-ux-jre -ignorable_copyrights: - - copyrighted by HP -ignorable_holders: - - HP diff --git a/src/licensedcode/data/licenses/hp.LICENSE b/src/licensedcode/data/licenses/hp.LICENSE index 97260e89dea..7e3fb17bc18 100644 --- a/src/licensedcode/data/licenses/hp.LICENSE +++ b/src/licensedcode/data/licenses/hp.LICENSE @@ -1,3 +1,19 @@ +--- +key: hp +short_name: HP Non-Commercial License +name: HP Non-Commercial License +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: http://h30097.www3.hp.com/hp_sw_license.html +spdx_license_key: LicenseRef-scancode-hp +text_urls: + - http://h30097.www3.hp.com/hp_sw_license.html +ignorable_copyrights: + - (c) HEWLETT-PACKARD COMPANY, 2004 +ignorable_holders: + - HEWLETT-PACKARD COMPANY +--- + HP SOFTWARE LICENSE TERMS NO COMMERCIALIZATION, LIMITED DISTRIBUTION PERMITTED diff --git a/src/licensedcode/data/licenses/hp.yml b/src/licensedcode/data/licenses/hp.yml deleted file mode 100644 index 8bc20e3e661..00000000000 --- a/src/licensedcode/data/licenses/hp.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: hp -short_name: HP Non-Commercial License -name: HP Non-Commercial License -category: Proprietary Free -owner: HP - Hewlett Packard -homepage_url: http://h30097.www3.hp.com/hp_sw_license.html -spdx_license_key: LicenseRef-scancode-hp -text_urls: - - http://h30097.www3.hp.com/hp_sw_license.html -ignorable_copyrights: - - (c) HEWLETT-PACKARD COMPANY, 2004 -ignorable_holders: - - HEWLETT-PACKARD COMPANY diff --git a/src/licensedcode/data/licenses/hs-regexp-orig.LICENSE b/src/licensedcode/data/licenses/hs-regexp-orig.LICENSE index 0402dc295a3..e1c7042dc38 100644 --- a/src/licensedcode/data/licenses/hs-regexp-orig.LICENSE +++ b/src/licensedcode/data/licenses/hs-regexp-orig.LICENSE @@ -1,3 +1,15 @@ +--- +key: hs-regexp-orig +is_deprecated: yes +short_name: Henry Spencer Original Regexp License +name: Henry Spencer Original Regexp License +category: Permissive +owner: Henry Spencer +notes: deprecated in favor of the regexp license which is identical +other_urls: + - https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License +--- + Not derived from licensed software. Permission is granted to anyone to use this software for any @@ -12,5 +24,4 @@ subject to the following restrictions: by explicit claim or by omission. 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - \ No newline at end of file + be misrepresented as being the original software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/hs-regexp-orig.yml b/src/licensedcode/data/licenses/hs-regexp-orig.yml deleted file mode 100644 index 6eb58ac1e19..00000000000 --- a/src/licensedcode/data/licenses/hs-regexp-orig.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: hs-regexp-orig -is_deprecated: yes -short_name: Henry Spencer Original Regexp License -name: Henry Spencer Original Regexp License -category: Permissive -owner: Henry Spencer -notes: deprecated in favor of the regexp license which is identical -other_urls: - - https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License diff --git a/src/licensedcode/data/licenses/hs-regexp.LICENSE b/src/licensedcode/data/licenses/hs-regexp.LICENSE index 744c373688c..3ba4a34ab88 100644 --- a/src/licensedcode/data/licenses/hs-regexp.LICENSE +++ b/src/licensedcode/data/licenses/hs-regexp.LICENSE @@ -1,3 +1,23 @@ +--- +key: hs-regexp +short_name: Henry Spencer Regexp License +name: Henry Spencer Regexp License +category: Permissive +owner: Henry Spencer +homepage_url: https://github.com/garyhouston/regex/blob/master/COPYRIGHT +notes: this is very similar to the purdue-bsd license +spdx_license_key: Spencer-94 +text_urls: + - http://search.cpan.org/~knok/File-MMagic-1.12/MMagic.pm + - http://stbase.org/manual/es/mod/mod_mime_magic.html + - http://www.cisco.com/c/en/us/td/docs/switches/metro/me3600x_3800x/software/release/15-3_1_S/command/reference/3800x3600xcr/ossack.html + - http://www.pell.portland.or.us/~orc/Code/magicfilter/magicfilter-2.3.c/file/process.c + - https://dev.mysql.com/doc/mysql-security-excerpt/5.0/en/license-regex.html +other_urls: + - https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License +minimum_coverage: 70 +--- + This software is not subject to any license of the American Telephone and Telegraph Company or of the Regents of the University of California. diff --git a/src/licensedcode/data/licenses/hs-regexp.yml b/src/licensedcode/data/licenses/hs-regexp.yml deleted file mode 100644 index d2f9a0b25eb..00000000000 --- a/src/licensedcode/data/licenses/hs-regexp.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: hs-regexp -short_name: Henry Spencer Regexp License -name: Henry Spencer Regexp License -category: Permissive -owner: Henry Spencer -homepage_url: https://github.com/garyhouston/regex/blob/master/COPYRIGHT -notes: this is very similar to the purdue-bsd license -spdx_license_key: Spencer-94 -text_urls: - - http://search.cpan.org/~knok/File-MMagic-1.12/MMagic.pm - - http://stbase.org/manual/es/mod/mod_mime_magic.html - - http://www.cisco.com/c/en/us/td/docs/switches/metro/me3600x_3800x/software/release/15-3_1_S/command/reference/3800x3600xcr/ossack.html - - http://www.pell.portland.or.us/~orc/Code/magicfilter/magicfilter-2.3.c/file/process.c - - https://dev.mysql.com/doc/mysql-security-excerpt/5.0/en/license-regex.html -other_urls: - - https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/html5.LICENSE b/src/licensedcode/data/licenses/html5.LICENSE index ae18e47aa05..ec83660dfdb 100644 --- a/src/licensedcode/data/licenses/html5.LICENSE +++ b/src/licensedcode/data/licenses/html5.LICENSE @@ -1 +1,15 @@ +--- +key: html5 +short_name: HTML 5 spec License +name: HTML 5 specification License +category: Permissive +owner: Ian Hickson +notes: this short notice was found first in the HTML 5 specification And is often accompanied + by this copyright notice © Copyright 2004-2008 Apple Computer, Inc., Mozilla Foundation, + and Opera Software ASA See in https://platform.html5.org/history/webapps/r59.html It was + used in the early HTML5 specifications from https://html.spec.whatwg.org/ See also https://github.com/whatwg/html/issues/538 + Note that this has since been replaced by the CC-BY-4.0 And https://github.com/whatwg/html/commit/8d3562c78c1041e797ffdf57abb480b952508881 +spdx_license_key: LicenseRef-scancode-html5 +--- + You are granted a license to use, reproduce and create derivative works of this document. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/html5.yml b/src/licensedcode/data/licenses/html5.yml deleted file mode 100644 index 10a10bb1da7..00000000000 --- a/src/licensedcode/data/licenses/html5.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: html5 -short_name: HTML 5 spec License -name: HTML 5 specification License -category: Permissive -owner: Ian Hickson -notes: this short notice was found first in the HTML 5 specification And is often accompanied - by this copyright notice © Copyright 2004-2008 Apple Computer, Inc., Mozilla Foundation, - and Opera Software ASA See in https://platform.html5.org/history/webapps/r59.html It was - used in the early HTML5 specifications from https://html.spec.whatwg.org/ See also https://github.com/whatwg/html/issues/538 - Note that this has since been replaced by the CC-BY-4.0 And https://github.com/whatwg/html/commit/8d3562c78c1041e797ffdf57abb480b952508881 -spdx_license_key: LicenseRef-scancode-html5 diff --git a/src/licensedcode/data/licenses/httpget.LICENSE b/src/licensedcode/data/licenses/httpget.LICENSE index e53cb4e1981..dee8f40a06d 100644 --- a/src/licensedcode/data/licenses/httpget.LICENSE +++ b/src/licensedcode/data/licenses/httpget.LICENSE @@ -1,3 +1,19 @@ +--- +key: httpget +short_name: httpget notice and disclaimer +name: httpget notice and disclaimer +category: Permissive +owner: Unspecified +homepage_url: http://www.softorchestra.com/downloads/ +notes: | + This license is an historical permission with a simplified warranty + disclaimer as found in the libpbm license. +spdx_license_key: LicenseRef-scancode-httpget +text_urls: + - https://github.com/BackupTheBerlios/oolite-linux-svn/blob/4ae1a88fd7bfaae3918d48170710ccfaf252e3d5/branches/DynamicOolite/deps/src/libhttp-1.1/httpget.c +minimum_coverage: 70 +--- + The right to use, modify and redistribute this code is allowed provided the above copyright notice and the below disclaimer appear on all copies. @@ -5,4 +21,4 @@ This file is provided AS IS with no warranties of any kind. The author shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by this file or any part thereof. In no event will the author be liable for any lost revenue or profits or -other special, indirect and consequential damages. +other special, indirect and consequential damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/httpget.yml b/src/licensedcode/data/licenses/httpget.yml deleted file mode 100644 index 65a7cf42322..00000000000 --- a/src/licensedcode/data/licenses/httpget.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: httpget -short_name: httpget notice and disclaimer -name: httpget notice and disclaimer -category: Permissive -owner: Unspecified -homepage_url: http://www.softorchestra.com/downloads/ -notes: | - This license is an historical permission with a simplified warranty - disclaimer as found in the libpbm license. -spdx_license_key: LicenseRef-scancode-httpget -text_urls: - - https://github.com/BackupTheBerlios/oolite-linux-svn/blob/4ae1a88fd7bfaae3918d48170710ccfaf252e3d5/branches/DynamicOolite/deps/src/libhttp-1.1/httpget.c -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/hugo.LICENSE b/src/licensedcode/data/licenses/hugo.LICENSE index dfe984b3eba..7fd9560df9f 100644 --- a/src/licensedcode/data/licenses/hugo.LICENSE +++ b/src/licensedcode/data/licenses/hugo.LICENSE @@ -1,3 +1,18 @@ +--- +key: hugo +short_name: Hugo License +name: Hugo License +category: Source-available +owner: Kent Tessman +spdx_license_key: LicenseRef-scancode-hugo +ignorable_copyrights: + - Copyright (c) 2003 by Kent Tessman The General Coffee Company Film Productions +ignorable_holders: + - Kent Tessman The General Coffee Company Film Productions +ignorable_authors: + - an End User +--- + HUGO LICENSE - December 19, 2003 -------------------------------- diff --git a/src/licensedcode/data/licenses/hugo.yml b/src/licensedcode/data/licenses/hugo.yml deleted file mode 100644 index a1e44ecb58c..00000000000 --- a/src/licensedcode/data/licenses/hugo.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: hugo -short_name: Hugo License -name: Hugo License -category: Source-available -owner: Kent Tessman -spdx_license_key: LicenseRef-scancode-hugo -ignorable_copyrights: - - Copyright (c) 2003 by Kent Tessman The General Coffee Company Film Productions -ignorable_holders: - - Kent Tessman The General Coffee Company Film Productions -ignorable_authors: - - an End User diff --git a/src/licensedcode/data/licenses/hxd.LICENSE b/src/licensedcode/data/licenses/hxd.LICENSE index 7937aecf42e..d00f3c2a540 100644 --- a/src/licensedcode/data/licenses/hxd.LICENSE +++ b/src/licensedcode/data/licenses/hxd.LICENSE @@ -1,3 +1,15 @@ +--- +key: hxd +short_name: HxD License +name: HxD License +category: Proprietary Free +owner: mh-nexus +homepage_url: https://mh-nexus.de/en/hxd/license.php +spdx_license_key: LicenseRef-scancode-hxd +ignorable_urls: + - http://mh-nexus.de/hxd +--- + Permission is granted to anyone to use this Software free of charge for any purpose, including commercial applications, and to redistribute it, provided that the warranty disclaimer is accepted and the following conditions are met: All redistributions must keep the original package intact. No file may be removed or modified. Especially you must retain all copyright notices that are currently in place, and this license without modification. diff --git a/src/licensedcode/data/licenses/hxd.yml b/src/licensedcode/data/licenses/hxd.yml deleted file mode 100644 index c3777f1a580..00000000000 --- a/src/licensedcode/data/licenses/hxd.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: hxd -short_name: HxD License -name: HxD License -category: Proprietary Free -owner: mh-nexus -homepage_url: https://mh-nexus.de/en/hxd/license.php -spdx_license_key: LicenseRef-scancode-hxd -ignorable_urls: - - http://mh-nexus.de/hxd diff --git a/src/licensedcode/data/licenses/i2p-gpl-java-exception.LICENSE b/src/licensedcode/data/licenses/i2p-gpl-java-exception.LICENSE index fe1e3df345e..b9bb9451a2b 100644 --- a/src/licensedcode/data/licenses/i2p-gpl-java-exception.LICENSE +++ b/src/licensedcode/data/licenses/i2p-gpl-java-exception.LICENSE @@ -1,3 +1,36 @@ +--- +key: i2p-gpl-java-exception +short_name: i2p GPL plus Java Exception +name: i2p GPL plus Java Exception +category: Copyleft Limited +owner: I2P Network +homepage_url: https://geti2p.net/en/get-involved/develop/licenses#java_exception +is_exception: yes +spdx_license_key: i2p-gpl-java-exception +other_urls: + - http://geti2p.net/en/get-involved/develop/licenses#java_exception + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + GPL + java exception + While it may be redundant, just for clarity the GPL'ed code included within + I2PTunnel and other apps must be released under the GPL with an additional + "exception" explicitly authorizing the use of Java's standard libraries: + In addition, as a special exception, XXXX gives permission to link the code + of this program with the proprietary Java implementation provided by Sun + (or other vendors as well), and distribute linked combinations including + the two. You must obey the GNU General Public License in all respects for + all of the code used other than the proprietary Java implementation. If you + modify this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to do so, + delete this exception statement from your version. + All source code under each component will by default be licensed under the + primary license, unless marked otherwise in the code. All of the above is + summary of the license terms - please see the specific license for the + component or source code in question for authoritative terms. Component + source locations and resource packaging may be changed if the repository is + reorganized. +--- + In addition, as a special exception, XXXX gives permission to link the code of this program with the proprietary Java implementation provided by Sun (or other vendors as well), and distribute linked combinations including the two. diff --git a/src/licensedcode/data/licenses/i2p-gpl-java-exception.yml b/src/licensedcode/data/licenses/i2p-gpl-java-exception.yml deleted file mode 100644 index ee356c86552..00000000000 --- a/src/licensedcode/data/licenses/i2p-gpl-java-exception.yml +++ /dev/null @@ -1,30 +0,0 @@ -key: i2p-gpl-java-exception -short_name: i2p GPL plus Java Exception -name: i2p GPL plus Java Exception -category: Copyleft Limited -owner: I2P Network -homepage_url: https://geti2p.net/en/get-involved/develop/licenses#java_exception -is_exception: yes -spdx_license_key: i2p-gpl-java-exception -other_urls: - - http://geti2p.net/en/get-involved/develop/licenses#java_exception - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - GPL + java exception - While it may be redundant, just for clarity the GPL'ed code included within - I2PTunnel and other apps must be released under the GPL with an additional - "exception" explicitly authorizing the use of Java's standard libraries: - In addition, as a special exception, XXXX gives permission to link the code - of this program with the proprietary Java implementation provided by Sun - (or other vendors as well), and distribute linked combinations including - the two. You must obey the GNU General Public License in all respects for - all of the code used other than the proprietary Java implementation. If you - modify this file, you may extend this exception to your version of the - file, but you are not obligated to do so. If you do not wish to do so, - delete this exception statement from your version. - All source code under each component will by default be licensed under the - primary license, unless marked otherwise in the code. All of the above is - summary of the license terms - please see the specific license for the - component or source code in question for authoritative terms. Component - source locations and resource packaging may be changed if the repository is - reorganized. diff --git a/src/licensedcode/data/licenses/ian-kaplan.LICENSE b/src/licensedcode/data/licenses/ian-kaplan.LICENSE index 686d9220dc8..f31818fc102 100644 --- a/src/licensedcode/data/licenses/ian-kaplan.LICENSE +++ b/src/licensedcode/data/licenses/ian-kaplan.LICENSE @@ -1,4 +1,13 @@ +--- +key: ian-kaplan +short_name: Ian Kaplan License +name: Ian Kaplan License +category: Permissive +owner: Bearcave.com +spdx_license_key: LicenseRef-scancode-ian-kaplan +--- + Use of this program, for any purpose, is granted the author, Ian Kaplan, as long as this copyright notice is included in the source code or any source code derived from this program. -The user assumes all responsibility for using this code. +The user assumes all responsibility for using this code. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ian-kaplan.yml b/src/licensedcode/data/licenses/ian-kaplan.yml deleted file mode 100644 index ff0bf3a64c7..00000000000 --- a/src/licensedcode/data/licenses/ian-kaplan.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: ian-kaplan -short_name: Ian Kaplan License -name: Ian Kaplan License -category: Permissive -owner: Bearcave.com -spdx_license_key: LicenseRef-scancode-ian-kaplan diff --git a/src/licensedcode/data/licenses/ian-piumarta.LICENSE b/src/licensedcode/data/licenses/ian-piumarta.LICENSE index ae27acdd797..5e7b725e39e 100644 --- a/src/licensedcode/data/licenses/ian-piumarta.LICENSE +++ b/src/licensedcode/data/licenses/ian-piumarta.LICENSE @@ -1,3 +1,13 @@ +--- +key: ian-piumarta +short_name: Ian Piumarta License +name: Ian Piumarta License +category: Permissive +owner: Ian Piumarta +homepage_url: http://piumarta.com/software/peg/ +spdx_license_key: LicenseRef-scancode-ian-piumarta +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation @@ -8,4 +18,4 @@ permission notice appear in all copies of the Software. Acknowledgement of the use of this Software in supporting documentation would be appreciated but is not required. -THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. +THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ian-piumarta.yml b/src/licensedcode/data/licenses/ian-piumarta.yml deleted file mode 100644 index 36f100e2aa5..00000000000 --- a/src/licensedcode/data/licenses/ian-piumarta.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ian-piumarta -short_name: Ian Piumarta License -name: Ian Piumarta License -category: Permissive -owner: Ian Piumarta -homepage_url: http://piumarta.com/software/peg/ -spdx_license_key: LicenseRef-scancode-ian-piumarta diff --git a/src/licensedcode/data/licenses/ibm-as-is.LICENSE b/src/licensedcode/data/licenses/ibm-as-is.LICENSE index c2e2104ad3a..da08bbd38db 100644 --- a/src/licensedcode/data/licenses/ibm-as-is.LICENSE +++ b/src/licensedcode/data/licenses/ibm-as-is.LICENSE @@ -1,3 +1,16 @@ +--- +key: ibm-as-is +short_name: IBM AS-IS License +name: IBM AS-IS License +category: Permissive +owner: IBM +spdx_license_key: LicenseRef-scancode-ibm-as-is +ignorable_copyrights: + - COPYRIGHT I B M CORPORATION 2000 +ignorable_holders: + - I B M CORPORATION +--- + This source and object code has been made available to you by IBM on an AS-IS basis. @@ -22,4 +35,4 @@ Any person who transfers this object code or any derivative work must include the IBM copyright notice in the transferred software. COPYRIGHT I B M CORPORATION 2000 -LICENSED MATERIAL - PROGRAM PROPERTY OF I B M" +LICENSED MATERIAL - PROGRAM PROPERTY OF I B M" \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ibm-as-is.yml b/src/licensedcode/data/licenses/ibm-as-is.yml deleted file mode 100644 index f81f02ecf58..00000000000 --- a/src/licensedcode/data/licenses/ibm-as-is.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ibm-as-is -short_name: IBM AS-IS License -name: IBM AS-IS License -category: Permissive -owner: IBM -spdx_license_key: LicenseRef-scancode-ibm-as-is -ignorable_copyrights: - - COPYRIGHT I B M CORPORATION 2000 -ignorable_holders: - - I B M CORPORATION diff --git a/src/licensedcode/data/licenses/ibm-data-server-2011.LICENSE b/src/licensedcode/data/licenses/ibm-data-server-2011.LICENSE index 668bbff81f9..f7132c3632d 100644 --- a/src/licensedcode/data/licenses/ibm-data-server-2011.LICENSE +++ b/src/licensedcode/data/licenses/ibm-data-server-2011.LICENSE @@ -1,3 +1,21 @@ +--- +key: ibm-data-server-2011 +short_name: IBM Data Server License 2011 +name: IBM Data Server License 2011 +category: Commercial +owner: IBM +homepage_url: https://www.nuget.org/packages/IBM.Data.DB2.Core/3.1.0.500/License +spdx_license_key: LicenseRef-scancode-ibm-data-server-2011 +other_urls: + - https://www.ibm.com/docs/en/workload-automation/9.5.0?topic=SSGSPN_9.5.0/notices_distagentzos.html + - https://www.ibm.com/support/pages/sites/default/files/inline-files/Z125-3301-14.pdf + - https://www.ibm.com/support/knowledgecenter/en/STVRB7_3.4.0/Z125-3301-14.pdf +ignorable_urls: + - http://www.ibm.com/software/sla + - http://www.ibm.com/software/support + - http://www.ibm.com/softwarepolicies +--- + LICENSE INFORMATION The Programs listed below are licensed under the following License Information terms and conditions in addition to the Program license terms previously agreed to by Client and IBM. If Client does not have previously agreed to license terms in effect for the Program, the International Program License Agreement (Z125-3301-14) applies. diff --git a/src/licensedcode/data/licenses/ibm-data-server-2011.yml b/src/licensedcode/data/licenses/ibm-data-server-2011.yml deleted file mode 100644 index 5abe51a04f3..00000000000 --- a/src/licensedcode/data/licenses/ibm-data-server-2011.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ibm-data-server-2011 -short_name: IBM Data Server License 2011 -name: IBM Data Server License 2011 -category: Commercial -owner: IBM -homepage_url: https://www.nuget.org/packages/IBM.Data.DB2.Core/3.1.0.500/License -spdx_license_key: LicenseRef-scancode-ibm-data-server-2011 -other_urls: - - https://www.ibm.com/docs/en/workload-automation/9.5.0?topic=SSGSPN_9.5.0/notices_distagentzos.html - - https://www.ibm.com/support/pages/sites/default/files/inline-files/Z125-3301-14.pdf - - https://www.ibm.com/support/knowledgecenter/en/STVRB7_3.4.0/Z125-3301-14.pdf -ignorable_urls: - - http://www.ibm.com/software/sla - - http://www.ibm.com/software/support - - http://www.ibm.com/softwarepolicies diff --git a/src/licensedcode/data/licenses/ibm-developerworks-community-download.LICENSE b/src/licensedcode/data/licenses/ibm-developerworks-community-download.LICENSE index c6a6fd75e70..d124116fd6f 100644 --- a/src/licensedcode/data/licenses/ibm-developerworks-community-download.LICENSE +++ b/src/licensedcode/data/licenses/ibm-developerworks-community-download.LICENSE @@ -1,3 +1,17 @@ +--- +key: ibm-developerworks-community-download +short_name: IBM developerWorks Community Download Agreement +name: IBM developerWorks Community Download of Content Agreement +category: Proprietary Free +owner: IBM +homepage_url: https://www.ibm.com/developerworks/community/terms/download?lang=en +spdx_license_key: LicenseRef-scancode-ibm-developerworks-community +other_spdx_license_keys: + - LicenseRef-scancode-ibm-developerworks-community-download +ignorable_urls: + - http://www.ibm.com/developerworks/exchange +--- + Download of Content Agreement The following are terms of a legal downloader agreement (the "Agreement") regarding Your download of Content (as defined below) from this Website. IBM may change these terms of use and other requirements and guidelines for use of this Website at its sole discretion. This Website may contain other proprietary notices and copyright information (http://www.ibm.com/developerworks/exchange), the terms of which must be observed and followed. Any use of the Content in violation of this Agreement is strictly prohibited. diff --git a/src/licensedcode/data/licenses/ibm-developerworks-community-download.yml b/src/licensedcode/data/licenses/ibm-developerworks-community-download.yml deleted file mode 100644 index 3a46eb8f98d..00000000000 --- a/src/licensedcode/data/licenses/ibm-developerworks-community-download.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ibm-developerworks-community-download -short_name: IBM developerWorks Community Download Agreement -name: IBM developerWorks Community Download of Content Agreement -category: Proprietary Free -owner: IBM -homepage_url: https://www.ibm.com/developerworks/community/terms/download?lang=en -spdx_license_key: LicenseRef-scancode-ibm-developerworks-community -other_spdx_license_keys: - - LicenseRef-scancode-ibm-developerworks-community-download -ignorable_urls: - - http://www.ibm.com/developerworks/exchange diff --git a/src/licensedcode/data/licenses/ibm-dhcp.LICENSE b/src/licensedcode/data/licenses/ibm-dhcp.LICENSE index 100f1618189..e1e2495b2b2 100644 --- a/src/licensedcode/data/licenses/ibm-dhcp.LICENSE +++ b/src/licensedcode/data/licenses/ibm-dhcp.LICENSE @@ -1,3 +1,14 @@ +--- +key: ibm-dhcp +short_name: IBM DHCP License +name: IBM DHCP License +category: Permissive +owner: IBM +spdx_license_key: LicenseRef-scancode-ibm-dhcp +other_urls: + - http://svn.opendnssec.org/trunk/OpenDNSSEC/common/b64_pton.c +--- + International Business Machines, Inc. (hereinafter called IBM) grants permission under its copyrights to use, copy, modify, and distribute this Software with or without fee, provided that the above copyright notice and @@ -17,4 +28,4 @@ INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN -IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. +IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ibm-dhcp.yml b/src/licensedcode/data/licenses/ibm-dhcp.yml deleted file mode 100644 index 972a4208887..00000000000 --- a/src/licensedcode/data/licenses/ibm-dhcp.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ibm-dhcp -short_name: IBM DHCP License -name: IBM DHCP License -category: Permissive -owner: IBM -spdx_license_key: LicenseRef-scancode-ibm-dhcp -other_urls: - - http://svn.opendnssec.org/trunk/OpenDNSSEC/common/b64_pton.c diff --git a/src/licensedcode/data/licenses/ibm-icu.LICENSE b/src/licensedcode/data/licenses/ibm-icu.LICENSE index b326882e8f0..8aaac819aca 100644 --- a/src/licensedcode/data/licenses/ibm-icu.LICENSE +++ b/src/licensedcode/data/licenses/ibm-icu.LICENSE @@ -1,3 +1,54 @@ +--- +key: ibm-icu +short_name: ICU Composite License +name: ICU Composite License +category: Permissive +owner: IBM +homepage_url: http://source.icu-project.org/repos/icu/icu/trunk/license.html +notes: composite of x11 licenses and others +spdx_license_key: LicenseRef-scancode-ibm-icu +text_urls: + - http://icu-project.org/repos/icu/icu/trunk/license.html +minimum_coverage: 85 +ignorable_copyrights: + - (c) 1999 TaBE Project + - Copyright (c) 1991-2014 Unicode, Inc. + - Copyright (c) 1995-2014 International Business Machines Corporation and others + - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, + Academia Sinica + - Copyright (c) 1999 Pai-Hsiang Hsiao + - Copyright (c) 2006-2008, Google Inc. + - Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell + - Copyright (c) 2013 International Business Machines Corporation and others + - Copyright (c) 2013, LeRoy Benjamin Sharon + - Copyright (c) 2014 International Business Machines Corporation and others + - Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu + http://casper.beckman.uiuc.edu/~c-tsai4 + - Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology +ignorable_holders: + - Brian Eugene Wilson, Robert Martin Campbell + - Chih-Hao Tsai Beckman Institute, University of Illinois + - Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica + - Google Inc. + - International Business Machines Corporation and others + - LeRoy Benjamin Sharon + - Nara Institute of Science and Technology + - Pai-Hsiang Hsiao + - TaBE Project + - Unicode, Inc. +ignorable_urls: + - http://casper.beckman.uiuc.edu/~c-tsai4 + - http://chasen.aist-nara.ac.jp/chasen/distribution.html + - http://code.google.com/p/lao-dictionary/ + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt + - http://opensource.org/licenses/bsd-license.php + - http://www.unicode.org/copyright.html + - https://sourceforge.net/project/?group_id=1519 +ignorable_emails: + - c-tsai4@uiuc.edu +--- + ICU License - ICU 1.8.1 and later COPYRIGHT AND PERMISSION NOTICE diff --git a/src/licensedcode/data/licenses/ibm-icu.yml b/src/licensedcode/data/licenses/ibm-icu.yml deleted file mode 100644 index 6c6bf7d9ecc..00000000000 --- a/src/licensedcode/data/licenses/ibm-icu.yml +++ /dev/null @@ -1,48 +0,0 @@ -key: ibm-icu -short_name: ICU Composite License -name: ICU Composite License -category: Permissive -owner: IBM -homepage_url: http://source.icu-project.org/repos/icu/icu/trunk/license.html -notes: composite of x11 licenses and others -spdx_license_key: LicenseRef-scancode-ibm-icu -text_urls: - - http://icu-project.org/repos/icu/icu/trunk/license.html -minimum_coverage: 85 -ignorable_copyrights: - - (c) 1999 TaBE Project - - Copyright (c) 1991-2014 Unicode, Inc. - - Copyright (c) 1995-2014 International Business Machines Corporation and others - - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, - Academia Sinica - - Copyright (c) 1999 Pai-Hsiang Hsiao - - Copyright (c) 2006-2008, Google Inc. - - Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell - - Copyright (c) 2013 International Business Machines Corporation and others - - Copyright (c) 2013, LeRoy Benjamin Sharon - - Copyright (c) 2014 International Business Machines Corporation and others - - Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu - http://casper.beckman.uiuc.edu/~c-tsai4 - - Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology -ignorable_holders: - - Brian Eugene Wilson, Robert Martin Campbell - - Chih-Hao Tsai Beckman Institute, University of Illinois - - Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica - - Google Inc. - - International Business Machines Corporation and others - - LeRoy Benjamin Sharon - - Nara Institute of Science and Technology - - Pai-Hsiang Hsiao - - TaBE Project - - Unicode, Inc. -ignorable_urls: - - http://casper.beckman.uiuc.edu/~c-tsai4 - - http://chasen.aist-nara.ac.jp/chasen/distribution.html - - http://code.google.com/p/lao-dictionary/ - - http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt - - http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt - - http://opensource.org/licenses/bsd-license.php - - http://www.unicode.org/copyright.html - - https://sourceforge.net/project/?group_id=1519 -ignorable_emails: - - c-tsai4@uiuc.edu diff --git a/src/licensedcode/data/licenses/ibm-java-portlet-spec-2.0.LICENSE b/src/licensedcode/data/licenses/ibm-java-portlet-spec-2.0.LICENSE index 1d967d4824e..47b9b3a035b 100644 --- a/src/licensedcode/data/licenses/ibm-java-portlet-spec-2.0.LICENSE +++ b/src/licensedcode/data/licenses/ibm-java-portlet-spec-2.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: ibm-java-portlet-spec-2.0 +short_name: IBM Java Portlet Specification 2.0 +name: IBM Java Portlet Specification 2.0 License +category: Permissive +owner: IBM +homepage_url: https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_ibm_java_portlet_spec_2.htm#BDDLG-concept_8F2CD6740028425B9BA5429DBDEE9BB3 +spdx_license_key: LicenseRef-scancode-ibm-java-portlet-spec-2.0 +other_urls: + - https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_third_party_notices.htm#BDDLG-concept_E7DC20A76AC94E44922974A6503BEC4B +ignorable_copyrights: + - Copyright 2008 IBM Corp. +ignorable_holders: + - IBM Corp. +ignorable_urls: + - http://www.jcp.org/en/jsr/detail?id=286 +--- + IBM Java Portlet Specification 2.0 License Java(TM) Portlet Specification ("Specification") Version: 2.0 diff --git a/src/licensedcode/data/licenses/ibm-java-portlet-spec-2.0.yml b/src/licensedcode/data/licenses/ibm-java-portlet-spec-2.0.yml deleted file mode 100644 index b7294c71af7..00000000000 --- a/src/licensedcode/data/licenses/ibm-java-portlet-spec-2.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ibm-java-portlet-spec-2.0 -short_name: IBM Java Portlet Specification 2.0 -name: IBM Java Portlet Specification 2.0 License -category: Permissive -owner: IBM -homepage_url: https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_ibm_java_portlet_spec_2.htm#BDDLG-concept_8F2CD6740028425B9BA5429DBDEE9BB3 -spdx_license_key: LicenseRef-scancode-ibm-java-portlet-spec-2.0 -other_urls: - - https://docs.oracle.com/cloud/latest/big-data-discovery-cloud/BDDLG/cl_third_party_notices.htm#BDDLG-concept_E7DC20A76AC94E44922974A6503BEC4B -ignorable_copyrights: - - Copyright 2008 IBM Corp. -ignorable_holders: - - IBM Corp. -ignorable_urls: - - http://www.jcp.org/en/jsr/detail?id=286 diff --git a/src/licensedcode/data/licenses/ibm-jre.LICENSE b/src/licensedcode/data/licenses/ibm-jre.LICENSE index 25556a2383c..b968926df55 100644 --- a/src/licensedcode/data/licenses/ibm-jre.LICENSE +++ b/src/licensedcode/data/licenses/ibm-jre.LICENSE @@ -1,3 +1,19 @@ +--- +key: ibm-jre +short_name: IBM JRE License +name: IBM Java Runtime Environment License +category: Commercial +owner: IBM +homepage_url: http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide +spdx_license_key: LicenseRef-scancode-ibm-jre +text_urls: + - http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide +other_urls: + - http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide +ignorable_urls: + - http://www.ibm.com/software/sla/ +--- + International License Agreement for Non-Warranted Programs Part 1 - General Terms diff --git a/src/licensedcode/data/licenses/ibm-jre.yml b/src/licensedcode/data/licenses/ibm-jre.yml deleted file mode 100644 index 4e4d107c6a4..00000000000 --- a/src/licensedcode/data/licenses/ibm-jre.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ibm-jre -short_name: IBM JRE License -name: IBM Java Runtime Environment License -category: Commercial -owner: IBM -homepage_url: http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide -spdx_license_key: LicenseRef-scancode-ibm-jre -text_urls: - - http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide -other_urls: - - http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide -ignorable_urls: - - http://www.ibm.com/software/sla/ diff --git a/src/licensedcode/data/licenses/ibm-nwsc.LICENSE b/src/licensedcode/data/licenses/ibm-nwsc.LICENSE index b79798592e8..b9e89874dcc 100644 --- a/src/licensedcode/data/licenses/ibm-nwsc.LICENSE +++ b/src/licensedcode/data/licenses/ibm-nwsc.LICENSE @@ -1,3 +1,13 @@ +--- +key: ibm-nwsc +short_name: IBM Non-Warranted Sample Code License +name: IBM International License Agreement for Non-Warranted Sample Code +category: Permissive +owner: IBM +homepage_url: http://www.ibm.com/developerworks/data/zones/informix/library/techarticle/nair/0204nairlicense.html +spdx_license_key: LicenseRef-scancode-ibm-nwsc +--- + IBM International License Agreement for Non-Warranted Sample Code Part 1 - General Terms diff --git a/src/licensedcode/data/licenses/ibm-nwsc.yml b/src/licensedcode/data/licenses/ibm-nwsc.yml deleted file mode 100644 index 53028de7c0e..00000000000 --- a/src/licensedcode/data/licenses/ibm-nwsc.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ibm-nwsc -short_name: IBM Non-Warranted Sample Code License -name: IBM International License Agreement for Non-Warranted Sample Code -category: Permissive -owner: IBM -homepage_url: http://www.ibm.com/developerworks/data/zones/informix/library/techarticle/nair/0204nairlicense.html -spdx_license_key: LicenseRef-scancode-ibm-nwsc diff --git a/src/licensedcode/data/licenses/ibm-pibs.LICENSE b/src/licensedcode/data/licenses/ibm-pibs.LICENSE index 3a6398d72ea..e6fe5193368 100644 --- a/src/licensedcode/data/licenses/ibm-pibs.LICENSE +++ b/src/licensedcode/data/licenses/ibm-pibs.LICENSE @@ -1,3 +1,19 @@ +--- +key: ibm-pibs +short_name: IBM PowerPC Software +name: IBM PowerPC Initialization and Boot Software +category: Permissive +owner: IBM +homepage_url: http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d +spdx_license_key: IBM-pibs +text_urls: + - http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d +ignorable_copyrights: + - COPYRIGHT I B M CORPORATION +ignorable_holders: + - I B M CORPORATION +--- + This source code has been made available to you by IBM on an AS-IS basis. Anyone receiving this source is licensed under IBM copyrights to use it in any way he or she deems fit, including copying it, modifying @@ -14,4 +30,4 @@ include the IBM copyright notice, this paragraph, and the preceding two paragraphs in the transferred software. COPYRIGHT I B M CORPORATION -LICENSED MATERIAL - PROGRAM PROPERTY OF I B M +LICENSED MATERIAL - PROGRAM PROPERTY OF I B M \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ibm-pibs.yml b/src/licensedcode/data/licenses/ibm-pibs.yml deleted file mode 100644 index 7a1fe302e34..00000000000 --- a/src/licensedcode/data/licenses/ibm-pibs.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ibm-pibs -short_name: IBM PowerPC Software -name: IBM PowerPC Initialization and Boot Software -category: Permissive -owner: IBM -homepage_url: http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d -spdx_license_key: IBM-pibs -text_urls: - - http://git.denx.de/?p=u-boot.git;a=blob;f=arch/powerpc/cpu/ppc4xx/miiphy.c;h=297155fdafa064b955e53e9832de93bfb0cfb85b;hb=9fab4bf4cc077c21e43941866f3f2c196f28670d -ignorable_copyrights: - - COPYRIGHT I B M CORPORATION -ignorable_holders: - - I B M CORPORATION diff --git a/src/licensedcode/data/licenses/ibm-sample.LICENSE b/src/licensedcode/data/licenses/ibm-sample.LICENSE index c29243e4f3f..5d53742cb05 100644 --- a/src/licensedcode/data/licenses/ibm-sample.LICENSE +++ b/src/licensedcode/data/licenses/ibm-sample.LICENSE @@ -1,3 +1,14 @@ +--- +key: ibm-sample +short_name: IBM Sample License +name: IBM Sample Program License +category: Permissive +owner: IBM +spdx_license_key: LicenseRef-scancode-ibm-sample +text_urls: + - http://www.java-forums.org/swt/9604-swt-2d-unicode-example.html +--- + The sample program(s) is/are owned by International Business Machines Corporation or one of its subsidiaries ("IBM") and is/are copyrighted and licensed, not sold. @@ -17,4 +28,4 @@ any damages you suffer as a result of using, modifying or distributing the sample program(s) or its/their derivatives. Each copy of any portion of this/these sample program(s) or any derivative -work, must include the above copyright notice and disclaimer of warranty. +work, must include the above copyright notice and disclaimer of warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ibm-sample.yml b/src/licensedcode/data/licenses/ibm-sample.yml deleted file mode 100644 index d5c45676de0..00000000000 --- a/src/licensedcode/data/licenses/ibm-sample.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ibm-sample -short_name: IBM Sample License -name: IBM Sample Program License -category: Permissive -owner: IBM -spdx_license_key: LicenseRef-scancode-ibm-sample -text_urls: - - http://www.java-forums.org/swt/9604-swt-2d-unicode-example.html diff --git a/src/licensedcode/data/licenses/ibmpl-1.0.LICENSE b/src/licensedcode/data/licenses/ibmpl-1.0.LICENSE index 27e1f50ad69..c3599e00a95 100644 --- a/src/licensedcode/data/licenses/ibmpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ibmpl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: ibmpl-1.0 +short_name: IPL 1.0 +name: IBM Public License +category: Copyleft Limited +owner: IBM +homepage_url: http://www.opensource.org/licenses/ibmpl.php +notes: | + Per SPDX.org, this license is OSI certified. This license was superseded by + CPL. +spdx_license_key: IPL-1.0 +osi_license_key: IPL-1.0 +text_urls: + - http://www.opensource.org/licenses/ibmpl.php +osi_url: http://www.opensource.org/licenses/ibmpl.php +other_urls: + - http://www.opensource.org/licenses/IPL-1.0 + - https://opensource.org/licenses/IPL-1.0 +ignorable_copyrights: + - Copyright (c) 1996, 1999 International Business Machines Corporation and others +ignorable_holders: + - International Business Machines Corporation and others +--- + IBM Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS diff --git a/src/licensedcode/data/licenses/ibmpl-1.0.yml b/src/licensedcode/data/licenses/ibmpl-1.0.yml deleted file mode 100644 index 7ef11271972..00000000000 --- a/src/licensedcode/data/licenses/ibmpl-1.0.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: ibmpl-1.0 -short_name: IPL 1.0 -name: IBM Public License -category: Copyleft Limited -owner: IBM -homepage_url: http://www.opensource.org/licenses/ibmpl.php -notes: | - Per SPDX.org, this license is OSI certified. This license was superseded by - CPL. -spdx_license_key: IPL-1.0 -osi_license_key: IPL-1.0 -text_urls: - - http://www.opensource.org/licenses/ibmpl.php -osi_url: http://www.opensource.org/licenses/ibmpl.php -other_urls: - - http://www.opensource.org/licenses/IPL-1.0 - - https://opensource.org/licenses/IPL-1.0 -ignorable_copyrights: - - Copyright (c) 1996, 1999 International Business Machines Corporation and others -ignorable_holders: - - International Business Machines Corporation and others diff --git a/src/licensedcode/data/licenses/ibpp.LICENSE b/src/licensedcode/data/licenses/ibpp.LICENSE index 6cae60b8425..c2dd2165d28 100644 --- a/src/licensedcode/data/licenses/ibpp.LICENSE +++ b/src/licensedcode/data/licenses/ibpp.LICENSE @@ -1,3 +1,13 @@ +--- +key: ibpp +short_name: IBPP License +name: IBPP License +category: Permissive +owner: IBPP +homepage_url: https://raw.githubusercontent.com/mariuz/flamerobin/0.9.0/src/ibpp/license.txt +spdx_license_key: LicenseRef-scancode-ibpp +--- + IBPP License v1.1 ----------------- Permission is hereby granted, free of charge, to any person or organization diff --git a/src/licensedcode/data/licenses/ibpp.yml b/src/licensedcode/data/licenses/ibpp.yml deleted file mode 100644 index 222e0a8c35a..00000000000 --- a/src/licensedcode/data/licenses/ibpp.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ibpp -short_name: IBPP License -name: IBPP License -category: Permissive -owner: IBPP -homepage_url: https://raw.githubusercontent.com/mariuz/flamerobin/0.9.0/src/ibpp/license.txt -spdx_license_key: LicenseRef-scancode-ibpp diff --git a/src/licensedcode/data/licenses/ic-1.0.LICENSE b/src/licensedcode/data/licenses/ic-1.0.LICENSE index ee7b56e8972..f767bd93d07 100644 --- a/src/licensedcode/data/licenses/ic-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ic-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ic-1.0 +short_name: IC 1.0 +name: Internet Computer Community Source License 1.0 +category: Free Restricted +owner: DFINITY +homepage_url: https://dfinity.org/licenses/IC-1.0/ +spdx_license_key: LicenseRef-scancode-ic-1.0 +text_urls: + - https://github.com/dfinity/ic/blob/master/licenses/IC-1.0.txt +ignorable_copyrights: + - copyright (c) 2021 DFINITY Foundation +ignorable_holders: + - DFINITY Foundation +--- + INTERNET COMPUTER COMMUNITY SOURCE LICENSE VERSION 1.0 License text copyright © 2021 DFINITY Foundation, All Rights Reserved. “Internet diff --git a/src/licensedcode/data/licenses/ic-1.0.yml b/src/licensedcode/data/licenses/ic-1.0.yml deleted file mode 100644 index 7e5fc85c1af..00000000000 --- a/src/licensedcode/data/licenses/ic-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ic-1.0 -short_name: IC 1.0 -name: Internet Computer Community Source License 1.0 -category: Free Restricted -owner: DFINITY -homepage_url: https://dfinity.org/licenses/IC-1.0/ -spdx_license_key: LicenseRef-scancode-ic-1.0 -text_urls: - - https://github.com/dfinity/ic/blob/master/licenses/IC-1.0.txt -ignorable_copyrights: - - copyright (c) 2021 DFINITY Foundation -ignorable_holders: - - DFINITY Foundation diff --git a/src/licensedcode/data/licenses/ic-shared-1.0.LICENSE b/src/licensedcode/data/licenses/ic-shared-1.0.LICENSE index 35d99a4e8b0..1f1a28741d9 100644 --- a/src/licensedcode/data/licenses/ic-shared-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ic-shared-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ic-shared-1.0 +short_name: IC Shared 1.0 +name: Internet Computer Shared Community Source License 1.0 +category: Free Restricted +owner: DFINITY +homepage_url: https://dfinity.org/licenses/IC-shared-1.0 +spdx_license_key: LicenseRef-scancode-ic-shared-1.0 +text_urls: + - https://github.com/dfinity/ic/blob/master/licenses/IC-shared-1.0.txt +ignorable_copyrights: + - copyright (c) 2021 DFINITY Foundation +ignorable_holders: + - DFINITY Foundation +--- + INTERNET COMPUTER SHARED COMMUNITY SOURCE LICENSE VERSION 1.0 License text copyright © 2021 DFINITY Foundation, All Rights Reserved. “Internet diff --git a/src/licensedcode/data/licenses/ic-shared-1.0.yml b/src/licensedcode/data/licenses/ic-shared-1.0.yml deleted file mode 100644 index 48304ba870c..00000000000 --- a/src/licensedcode/data/licenses/ic-shared-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ic-shared-1.0 -short_name: IC Shared 1.0 -name: Internet Computer Shared Community Source License 1.0 -category: Free Restricted -owner: DFINITY -homepage_url: https://dfinity.org/licenses/IC-shared-1.0 -spdx_license_key: LicenseRef-scancode-ic-shared-1.0 -text_urls: - - https://github.com/dfinity/ic/blob/master/licenses/IC-shared-1.0.txt -ignorable_copyrights: - - copyright (c) 2021 DFINITY Foundation -ignorable_holders: - - DFINITY Foundation diff --git a/src/licensedcode/data/licenses/icann-public.LICENSE b/src/licensedcode/data/licenses/icann-public.LICENSE index f1728a6f35c..5ddd119617b 100644 --- a/src/licensedcode/data/licenses/icann-public.LICENSE +++ b/src/licensedcode/data/licenses/icann-public.LICENSE @@ -1,3 +1,13 @@ +--- +key: icann-public +short_name: ICANN-Public +name: ICANN-Public +category: Public Domain +owner: ICANN +homepage_url: https://metadata.ftp-master.debian.org/changelogs//main/d/dns-root-data/dns-root-data_2019052802_copyright +spdx_license_key: LicenseRef-scancode-icann-public +--- + ICANN asserts no property rights to any of the IANA registries or public keys we maintain. You are free to redistribute the IANA registry files, the root zone file and the root public keys. diff --git a/src/licensedcode/data/licenses/icann-public.yml b/src/licensedcode/data/licenses/icann-public.yml deleted file mode 100644 index d41baa1f69d..00000000000 --- a/src/licensedcode/data/licenses/icann-public.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: icann-public -short_name: ICANN-Public -name: ICANN-Public -category: Public Domain -owner: ICANN -homepage_url: https://metadata.ftp-master.debian.org/changelogs//main/d/dns-root-data/dns-root-data_2019052802_copyright -spdx_license_key: LicenseRef-scancode-icann-public diff --git a/src/licensedcode/data/licenses/ice-exception-2.0.LICENSE b/src/licensedcode/data/licenses/ice-exception-2.0.LICENSE index a32348c5067..93b6edffd09 100644 --- a/src/licensedcode/data/licenses/ice-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/ice-exception-2.0.LICENSE @@ -1,3 +1,57 @@ +--- +key: ice-exception-2.0 +short_name: Ice exception to GPL 2.0 +name: Ice exception to GPL 2.0 +category: Copyleft Limited +owner: ZeroC +homepage_url: https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-ice-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This copy of Ice 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. + Ice 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 version + 2 along with this program; if not, see http://www.gnu.org/licenses. + Linking Ice statically or dynamically with other software (such as a + library, module or application) is making a combined work based on Ice. + Thus, the terms and conditions of the GNU General Public License version + 2 cover this combined work. + If such software can only be used together with Ice, then not only the + combined work but the software itself is a work derived from Ice and as + such shall be licensed under the terms of the GNU General Public License + version 2. This includes the situation where Ice is only being used + through an abstraction layer. + As a special exception to the above, ZeroC grants to the contributors for + the following projects the permission to license their Ice-based software + under the terms of the GNU Lesser General Public License (LGPL) version + 2.1 or of the BSD license: + - Orca Robotics (http://orca-robotics.sourceforge.net) + - Mumble (http://mumble.sourceforge.net) + This exception does not extend to the parts of Ice used by these + projects, or to any other derived work: as a whole, any work based on Ice + shall be licensed under the terms and conditions of the GNU General + Public License version 2. + You may also combine Ice with any software not derived from Ice, provided + the license of such software is compatible with the GNU General Public + License version 2. In addition, as a special exception, ZeroC grants you + permission to combine Ice with: + - the OpenSSL library, or with a modified version of the OpenSSL library + that uses the same license as OpenSSL + - any library not derived from Ice and licensed under the terms of + the Apache License, version 2.0 + (http://www.apache.org/licenses/LICENSE-2.0.html) + If you modify this copy of Ice, you may extend any of the exceptions + provided above to your version of Ice, but you are not obligated to + do so. +--- + As a special exception to the above, ZeroC grants to the contributors for the following projects the permission to license their Ice-based software under the terms of the GNU Lesser General Public License (LGPL) version diff --git a/src/licensedcode/data/licenses/ice-exception-2.0.yml b/src/licensedcode/data/licenses/ice-exception-2.0.yml deleted file mode 100644 index e3428fb224c..00000000000 --- a/src/licensedcode/data/licenses/ice-exception-2.0.yml +++ /dev/null @@ -1,51 +0,0 @@ -key: ice-exception-2.0 -short_name: Ice exception to GPL 2.0 -name: Ice exception to GPL 2.0 -category: Copyleft Limited -owner: ZeroC -homepage_url: https://github.com/zeroc-ice/ice/blob/master/ICE_LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-ice-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This copy of Ice 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. - Ice 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 version - 2 along with this program; if not, see http://www.gnu.org/licenses. - Linking Ice statically or dynamically with other software (such as a - library, module or application) is making a combined work based on Ice. - Thus, the terms and conditions of the GNU General Public License version - 2 cover this combined work. - If such software can only be used together with Ice, then not only the - combined work but the software itself is a work derived from Ice and as - such shall be licensed under the terms of the GNU General Public License - version 2. This includes the situation where Ice is only being used - through an abstraction layer. - As a special exception to the above, ZeroC grants to the contributors for - the following projects the permission to license their Ice-based software - under the terms of the GNU Lesser General Public License (LGPL) version - 2.1 or of the BSD license: - - Orca Robotics (http://orca-robotics.sourceforge.net) - - Mumble (http://mumble.sourceforge.net) - This exception does not extend to the parts of Ice used by these - projects, or to any other derived work: as a whole, any work based on Ice - shall be licensed under the terms and conditions of the GNU General - Public License version 2. - You may also combine Ice with any software not derived from Ice, provided - the license of such software is compatible with the GNU General Public - License version 2. In addition, as a special exception, ZeroC grants you - permission to combine Ice with: - - the OpenSSL library, or with a modified version of the OpenSSL library - that uses the same license as OpenSSL - - any library not derived from Ice and licensed under the terms of - the Apache License, version 2.0 - (http://www.apache.org/licenses/LICENSE-2.0.html) - If you modify this copy of Ice, you may extend any of the exceptions - provided above to your version of Ice, but you are not obligated to - do so. diff --git a/src/licensedcode/data/licenses/icot-free.LICENSE b/src/licensedcode/data/licenses/icot-free.LICENSE index 19fdb107283..cc5a8096eec 100644 --- a/src/licensedcode/data/licenses/icot-free.LICENSE +++ b/src/licensedcode/data/licenses/icot-free.LICENSE @@ -1,3 +1,13 @@ +--- +key: icot-free +short_name: ICOT Free Software +name: ICOT Free Software +category: Permissive +owner: ICOT +homepage_url: https://www.ueda.info.waseda.ac.jp/~ajiro/ftp/use-of-software-E +spdx_license_key: LicenseRef-scancode-icot-free +--- + TERMS AND CONDITIONS FOR USE OF "ICOT FREE SOFTWARE" @@ -101,4 +111,4 @@ any person, organization or entity other than ICOT, unless it makes or grants independently of ICOT any specific warranty to the user in writing, such person, organization or entity, will also be exempted from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. +above as far as the program is concerned. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/icot-free.yml b/src/licensedcode/data/licenses/icot-free.yml deleted file mode 100644 index 45cd0043ea5..00000000000 --- a/src/licensedcode/data/licenses/icot-free.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: icot-free -short_name: ICOT Free Software -name: ICOT Free Software -category: Permissive -owner: ICOT -homepage_url: https://www.ueda.info.waseda.ac.jp/~ajiro/ftp/use-of-software-E -spdx_license_key: LicenseRef-scancode-icot-free diff --git a/src/licensedcode/data/licenses/idt-notice.LICENSE b/src/licensedcode/data/licenses/idt-notice.LICENSE index 841a3e453c4..332ad7ff5a5 100644 --- a/src/licensedcode/data/licenses/idt-notice.LICENSE +++ b/src/licensedcode/data/licenses/idt-notice.LICENSE @@ -1,3 +1,12 @@ +--- +key: idt-notice +short_name: IDT License Notice +name: IDT License Notice +category: Permissive +owner: Wind River Systems +spdx_license_key: LicenseRef-scancode-idt-notice +--- + This source code has been made available to you by IDT on an AS-IS basis. Anyone receiving this source is licensed under IDT copyrights to use it in any way he or she deems fit, including copying it, diff --git a/src/licensedcode/data/licenses/idt-notice.yml b/src/licensedcode/data/licenses/idt-notice.yml deleted file mode 100644 index a54cd969a8c..00000000000 --- a/src/licensedcode/data/licenses/idt-notice.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: idt-notice -short_name: IDT License Notice -name: IDT License Notice -category: Permissive -owner: Wind River Systems -spdx_license_key: LicenseRef-scancode-idt-notice diff --git a/src/licensedcode/data/licenses/ietf-trust.LICENSE b/src/licensedcode/data/licenses/ietf-trust.LICENSE index 8fee18eda57..10cd3f0a2e7 100644 --- a/src/licensedcode/data/licenses/ietf-trust.LICENSE +++ b/src/licensedcode/data/licenses/ietf-trust.LICENSE @@ -1,3 +1,38 @@ +--- +key: ietf-trust +short_name: IETF Trust License +name: IETF Trust License +category: Permissive +owner: IETF - Internet Engineering Task Force +homepage_url: http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf +spdx_license_key: LicenseRef-scancode-ietf-trust +text_urls: + - http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf +faq_url: http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf +other_urls: + - http://opensource.org/licenses/bsd-license.php + - http://trustee.ietf.org/license-info/ + - http://trustee.ietf.org/policyandprocedures.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) IETF Trust + - Copyright (c) IETF Trust and the persons identified as the document authors +ignorable_holders: + - IETF Trust + - IETF Trust and the persons identified as the document authors +ignorable_authors: + - IETF Trust + - the IETF Trust +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php + - http://trustee.ietf.org/license-info + - http://trustee.ietf.org/policyandprocedures.html + - http://www.ietf.org/ipr +ignorable_emails: + - ietf-ipr@ietf.org + - trustees@ietf.org +--- + IETF TRUST Legal Provisions Relating to IETF Documents Effective Date: December 28, 2009 diff --git a/src/licensedcode/data/licenses/ietf-trust.yml b/src/licensedcode/data/licenses/ietf-trust.yml deleted file mode 100644 index 5ca0fe1774c..00000000000 --- a/src/licensedcode/data/licenses/ietf-trust.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: ietf-trust -short_name: IETF Trust License -name: IETF Trust License -category: Permissive -owner: IETF - Internet Engineering Task Force -homepage_url: http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf -spdx_license_key: LicenseRef-scancode-ietf-trust -text_urls: - - http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf -faq_url: http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf -other_urls: - - http://opensource.org/licenses/bsd-license.php - - http://trustee.ietf.org/license-info/ - - http://trustee.ietf.org/policyandprocedures.html -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) IETF Trust - - Copyright (c) IETF Trust and the persons identified as the document authors -ignorable_holders: - - IETF Trust - - IETF Trust and the persons identified as the document authors -ignorable_authors: - - IETF Trust - - the IETF Trust -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php - - http://trustee.ietf.org/license-info - - http://trustee.ietf.org/policyandprocedures.html - - http://www.ietf.org/ipr -ignorable_emails: - - ietf-ipr@ietf.org - - trustees@ietf.org diff --git a/src/licensedcode/data/licenses/ietf.LICENSE b/src/licensedcode/data/licenses/ietf.LICENSE index 162a2f1890f..0d801b0d322 100644 --- a/src/licensedcode/data/licenses/ietf.LICENSE +++ b/src/licensedcode/data/licenses/ietf.LICENSE @@ -1,3 +1,16 @@ +--- +key: ietf +short_name: IETF License +name: Internet Engineering Task Force License +category: Permissive +owner: IETF - Internet Engineering Task Force +homepage_url: http://www.ietf.org/ +spdx_license_key: LicenseRef-scancode-ietf +faq_url: http://www.ietf.org/contact-the-ietf.html +other_urls: + - http://www.ietf.org/ +--- + This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published diff --git a/src/licensedcode/data/licenses/ietf.yml b/src/licensedcode/data/licenses/ietf.yml deleted file mode 100644 index b919c482931..00000000000 --- a/src/licensedcode/data/licenses/ietf.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ietf -short_name: IETF License -name: Internet Engineering Task Force License -category: Permissive -owner: IETF - Internet Engineering Task Force -homepage_url: http://www.ietf.org/ -spdx_license_key: LicenseRef-scancode-ietf -faq_url: http://www.ietf.org/contact-the-ietf.html -other_urls: - - http://www.ietf.org/ diff --git a/src/licensedcode/data/licenses/ijg.LICENSE b/src/licensedcode/data/licenses/ijg.LICENSE index 266e4854beb..cbbc8a313b1 100644 --- a/src/licensedcode/data/licenses/ijg.LICENSE +++ b/src/licensedcode/data/licenses/ijg.LICENSE @@ -1,3 +1,30 @@ +--- +key: ijg +short_name: JPEG License +name: Independent JPEG Group License +category: Permissive +owner: IJG - Independent JPEG Group +homepage_url: http://fedoraproject.org/wiki/Licensing/IJG +spdx_license_key: IJG +text_urls: + - http://fedoraproject.org/wiki/Licensing/IJG +other_urls: + - http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2 + - http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses +ignorable_copyrights: + - Copyright property of CompuServe Incorporated + - copyright (c) 1991-1998, Thomas G. Lane + - copyright by M.I.T. + - copyright by the Free Software Foundation + - copyright holder, Aladdin Enterprises of Menlo Park +ignorable_holders: + - Aladdin Enterprises of Menlo Park + - CompuServe Incorporated + - M.I.T. + - Thomas G. Lane + - the Free Software Foundation +--- + LEGAL ISSUES ============ diff --git a/src/licensedcode/data/licenses/ijg.yml b/src/licensedcode/data/licenses/ijg.yml deleted file mode 100644 index b3ea604a462..00000000000 --- a/src/licensedcode/data/licenses/ijg.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: ijg -short_name: JPEG License -name: Independent JPEG Group License -category: Permissive -owner: IJG - Independent JPEG Group -homepage_url: http://fedoraproject.org/wiki/Licensing/IJG -spdx_license_key: IJG -text_urls: - - http://fedoraproject.org/wiki/Licensing/IJG -other_urls: - - http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev=1.2 - - http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses -ignorable_copyrights: - - Copyright property of CompuServe Incorporated - - copyright (c) 1991-1998, Thomas G. Lane - - copyright by M.I.T. - - copyright by the Free Software Foundation - - copyright holder, Aladdin Enterprises of Menlo Park -ignorable_holders: - - Aladdin Enterprises of Menlo Park - - CompuServe Incorporated - - M.I.T. - - Thomas G. Lane - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/ilmid.LICENSE b/src/licensedcode/data/licenses/ilmid.LICENSE index f57c0c34ec2..7541b10ce1f 100644 --- a/src/licensedcode/data/licenses/ilmid.LICENSE +++ b/src/licensedcode/data/licenses/ilmid.LICENSE @@ -1,3 +1,15 @@ +--- +key: ilmid +short_name: ilmid License +name: ilmid License +category: Permissive +owner: University of Kansas +spdx_license_key: LicenseRef-scancode-ilmid +other_urls: + - 'http://linuxcommand.org/man_pages/ilmid8.html ' + - http://www.freebsd.org/cgi/man.cgi?query=ilmid&sektion=8&apropos=0&manpath=FreeBSD+5.4-RELEASE +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this diff --git a/src/licensedcode/data/licenses/ilmid.yml b/src/licensedcode/data/licenses/ilmid.yml deleted file mode 100644 index bfe4f72e4f5..00000000000 --- a/src/licensedcode/data/licenses/ilmid.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ilmid -short_name: ilmid License -name: ilmid License -category: Permissive -owner: University of Kansas -spdx_license_key: LicenseRef-scancode-ilmid -other_urls: - - 'http://linuxcommand.org/man_pages/ilmid8.html ' - - http://www.freebsd.org/cgi/man.cgi?query=ilmid&sektion=8&apropos=0&manpath=FreeBSD+5.4-RELEASE diff --git a/src/licensedcode/data/licenses/imagemagick.LICENSE b/src/licensedcode/data/licenses/imagemagick.LICENSE index cec68cc3371..ef802dde157 100644 --- a/src/licensedcode/data/licenses/imagemagick.LICENSE +++ b/src/licensedcode/data/licenses/imagemagick.LICENSE @@ -1,3 +1,23 @@ +--- +key: imagemagick +short_name: ImageMagick License +name: ImageMagick License +category: Permissive +owner: ImageMagick +homepage_url: http://www.imagemagick.org/script/license.php +notes: this is very close to the Apache 2.0 licecnse that was used as a base. +spdx_license_key: ImageMagick +text_urls: + - http://www.imagemagick.org/script/license.php +faq_url: http://www.imagemagick.org/script/export.php +ignorable_copyrights: + - Copyright 1999-2009 ImageMagick Studio LLC +ignorable_holders: + - ImageMagick Studio LLC +ignorable_urls: + - http://www.imagemagick.org/www/license.html +--- + ImageMagick License The legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow: diff --git a/src/licensedcode/data/licenses/imagemagick.yml b/src/licensedcode/data/licenses/imagemagick.yml deleted file mode 100644 index aeeaa6c446b..00000000000 --- a/src/licensedcode/data/licenses/imagemagick.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: imagemagick -short_name: ImageMagick License -name: ImageMagick License -category: Permissive -owner: ImageMagick -homepage_url: http://www.imagemagick.org/script/license.php -notes: this is very close to the Apache 2.0 licecnse that was used as a base. -spdx_license_key: ImageMagick -text_urls: - - http://www.imagemagick.org/script/license.php -faq_url: http://www.imagemagick.org/script/export.php -ignorable_copyrights: - - Copyright 1999-2009 ImageMagick Studio LLC -ignorable_holders: - - ImageMagick Studio LLC -ignorable_urls: - - http://www.imagemagick.org/www/license.html diff --git a/src/licensedcode/data/licenses/imagen.LICENSE b/src/licensedcode/data/licenses/imagen.LICENSE index 577cf191ebc..8d3f7e045cb 100644 --- a/src/licensedcode/data/licenses/imagen.LICENSE +++ b/src/licensedcode/data/licenses/imagen.LICENSE @@ -1,3 +1,12 @@ +--- +key: imagen +short_name: IMAGEN License +name: IMAGEN License +category: Free Restricted +owner: IMAGEN +spdx_license_key: LicenseRef-scancode-imagen +--- + This code may be duplicated in whole or in part provided that [1] there is no commercial gain involved in the duplication, and [2] that this copyright notice is preserved on all copies. diff --git a/src/licensedcode/data/licenses/imagen.yml b/src/licensedcode/data/licenses/imagen.yml deleted file mode 100644 index 68978d602ad..00000000000 --- a/src/licensedcode/data/licenses/imagen.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: imagen -short_name: IMAGEN License -name: IMAGEN License -category: Free Restricted -owner: IMAGEN -spdx_license_key: LicenseRef-scancode-imagen diff --git a/src/licensedcode/data/licenses/imlib2.LICENSE b/src/licensedcode/data/licenses/imlib2.LICENSE index 2ed7b4e3208..69ca16d88cc 100644 --- a/src/licensedcode/data/licenses/imlib2.LICENSE +++ b/src/licensedcode/data/licenses/imlib2.LICENSE @@ -1,3 +1,17 @@ +--- +key: imlib2 +short_name: Imlib2 License +name: Imlib2 License +category: Copyleft Limited +owner: Enlightenment +homepage_url: http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING +spdx_license_key: Imlib2 +text_urls: + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#enna +other_urls: + - https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING +--- + Imlib2 License Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/licensedcode/data/licenses/imlib2.yml b/src/licensedcode/data/licenses/imlib2.yml deleted file mode 100644 index a998a6dc1e5..00000000000 --- a/src/licensedcode/data/licenses/imlib2.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: imlib2 -short_name: Imlib2 License -name: Imlib2 License -category: Copyleft Limited -owner: Enlightenment -homepage_url: http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING -spdx_license_key: Imlib2 -text_urls: - - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#enna -other_urls: - - https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING diff --git a/src/licensedcode/data/licenses/independent-module-linking-exception.LICENSE b/src/licensedcode/data/licenses/independent-module-linking-exception.LICENSE index 0f7eff2a8d7..9af18dca5f0 100644 --- a/src/licensedcode/data/licenses/independent-module-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/independent-module-linking-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: independent-module-linking-exception +short_name: Independent Module Linking Exception +name: Independent Module Linking Exception +category: Copyleft Limited +owner: Unspecified +notes: this is typically seen with the LGPL but is not L/GPL specific +is_exception: yes +spdx_license_key: LicenseRef-scancode-indie-module-linking-exception +other_spdx_license_keys: + - LicenseRef-scancode-independent-module-linking-exception +--- + As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to @@ -7,4 +20,4 @@ conditions of the license of that module. An independent module is a module which is neither derived from nor based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception -statement from your version. +statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/independent-module-linking-exception.yml b/src/licensedcode/data/licenses/independent-module-linking-exception.yml deleted file mode 100644 index 33311c6e2d0..00000000000 --- a/src/licensedcode/data/licenses/independent-module-linking-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: independent-module-linking-exception -short_name: Independent Module Linking Exception -name: Independent Module Linking Exception -category: Copyleft Limited -owner: Unspecified -notes: this is typically seen with the LGPL but is not L/GPL specific -is_exception: yes -spdx_license_key: LicenseRef-scancode-indie-module-linking-exception -other_spdx_license_keys: - - LicenseRef-scancode-independent-module-linking-exception diff --git a/src/licensedcode/data/licenses/indiana-extreme-1.2.LICENSE b/src/licensedcode/data/licenses/indiana-extreme-1.2.LICENSE index a270e3ffb82..c0b6f867740 100644 --- a/src/licensedcode/data/licenses/indiana-extreme-1.2.LICENSE +++ b/src/licensedcode/data/licenses/indiana-extreme-1.2.LICENSE @@ -1,3 +1,24 @@ +--- +key: indiana-extreme-1.2 +short_name: Indiana Extreme License 1.2 +name: Indiana University Extreme! Lab Software License Version 1.2 +category: Permissive +owner: Indiana University +homepage_url: http://www.extreme.indiana.edu/license.txt +spdx_license_key: xpp +text_urls: + - http://www.extreme.indiana.edu/license.txt + - https://fedoraproject.org/wiki/Licensing/xpp +ignorable_copyrights: + - Copyright (c) 2004 The Trustees of Indiana University +ignorable_holders: + - The Trustees of Indiana University +ignorable_authors: + - the Indiana University Extreme! Lab +ignorable_urls: + - http://www.extreme.indiana.edu/ +--- + Indiana University Extreme! Lab Software License, Version 1.2 Copyright (C) 2004 The Trustees of Indiana University. diff --git a/src/licensedcode/data/licenses/indiana-extreme-1.2.yml b/src/licensedcode/data/licenses/indiana-extreme-1.2.yml deleted file mode 100644 index b411b9270fc..00000000000 --- a/src/licensedcode/data/licenses/indiana-extreme-1.2.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: indiana-extreme-1.2 -short_name: Indiana Extreme License 1.2 -name: Indiana University Extreme! Lab Software License Version 1.2 -category: Permissive -owner: Indiana University -homepage_url: http://www.extreme.indiana.edu/license.txt -spdx_license_key: xpp -text_urls: - - http://www.extreme.indiana.edu/license.txt - - https://fedoraproject.org/wiki/Licensing/xpp -ignorable_copyrights: - - Copyright (c) 2004 The Trustees of Indiana University -ignorable_holders: - - The Trustees of Indiana University -ignorable_authors: - - the Indiana University Extreme! Lab -ignorable_urls: - - http://www.extreme.indiana.edu/ diff --git a/src/licensedcode/data/licenses/indiana-extreme.LICENSE b/src/licensedcode/data/licenses/indiana-extreme.LICENSE index 48ffaf8aa9f..eb5c453be92 100644 --- a/src/licensedcode/data/licenses/indiana-extreme.LICENSE +++ b/src/licensedcode/data/licenses/indiana-extreme.LICENSE @@ -1,3 +1,22 @@ +--- +key: indiana-extreme +short_name: Indiana Extreme License 1.1.1 +name: Indiana University Extreme! Lab Software License Version 1.1.1 +category: Permissive +owner: Indiana University +spdx_license_key: LicenseRef-scancode-indiana-extreme +text_urls: + - http://www.bearcave.com/software/java/xml/xmlpull_license.html +ignorable_copyrights: + - Copyright (c) 2002 Extreme! Lab, Indiana University +ignorable_holders: + - Extreme! Lab, Indiana University +ignorable_authors: + - the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/) +ignorable_urls: + - http://www.extreme.indiana.edu/ +--- + Indiana University Extreme! Lab Software License Version 1.1.1 Copyright (c) 2002 Extreme! Lab, Indiana University. All rights reserved. diff --git a/src/licensedcode/data/licenses/indiana-extreme.yml b/src/licensedcode/data/licenses/indiana-extreme.yml deleted file mode 100644 index eedab131e50..00000000000 --- a/src/licensedcode/data/licenses/indiana-extreme.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: indiana-extreme -short_name: Indiana Extreme License 1.1.1 -name: Indiana University Extreme! Lab Software License Version 1.1.1 -category: Permissive -owner: Indiana University -spdx_license_key: LicenseRef-scancode-indiana-extreme -text_urls: - - http://www.bearcave.com/software/java/xml/xmlpull_license.html -ignorable_copyrights: - - Copyright (c) 2002 Extreme! Lab, Indiana University -ignorable_holders: - - Extreme! Lab, Indiana University -ignorable_authors: - - the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/) -ignorable_urls: - - http://www.extreme.indiana.edu/ diff --git a/src/licensedcode/data/licenses/infineon-free.LICENSE b/src/licensedcode/data/licenses/infineon-free.LICENSE index 947ad9a84ac..7dd614bf17c 100644 --- a/src/licensedcode/data/licenses/infineon-free.LICENSE +++ b/src/licensedcode/data/licenses/infineon-free.LICENSE @@ -1,3 +1,12 @@ +--- +key: infineon-free +short_name: Infineon Free Software License +name: Infineon Free Software License +category: Permissive +owner: Infineon Technologies +spdx_license_key: LicenseRef-scancode-infineon-free +--- + No Warranty Because the program is licensed free of charge, there is no warranty for the program, to the extent permitted by applicable law. Except when @@ -17,4 +26,4 @@ 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. +other party has been advised of the possibility of such damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/infineon-free.yml b/src/licensedcode/data/licenses/infineon-free.yml deleted file mode 100644 index e0e172931df..00000000000 --- a/src/licensedcode/data/licenses/infineon-free.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: infineon-free -short_name: Infineon Free Software License -name: Infineon Free Software License -category: Permissive -owner: Infineon Technologies -spdx_license_key: LicenseRef-scancode-infineon-free diff --git a/src/licensedcode/data/licenses/info-zip-1997-10.LICENSE b/src/licensedcode/data/licenses/info-zip-1997-10.LICENSE index 3d4a9a1a7cd..b30ce672b1e 100644 --- a/src/licensedcode/data/licenses/info-zip-1997-10.LICENSE +++ b/src/licensedcode/data/licenses/info-zip-1997-10.LICENSE @@ -1,3 +1,41 @@ +--- +key: info-zip-1997-10 +short_name: Info-Zip License 1997-10 +name: Info-Zip License 1997-10 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-1997-10 +text_urls: + - ftp://ftp.info-zip.org/pub/infozip/doc/copying +ignorable_copyrights: + - Copyright (c) 1992 Igor Mandrichenko + - Copyright (c) 1994 Greg Roelofs + - Copyright (c) 1996 Mike White + - Copyright 1989 Samuel H. Smith + - copyrighted 1997 by Steve P. Miller + - copyrighted by Norbert Pueschel, +ignorable_holders: + - Greg Roelofs + - Igor Mandrichenko + - Mike White + - Norbert Pueschel + - Samuel H. Smith + - Steve P. Miller +ignorable_authors: + - many people associated with the Info-ZIP group + - the Info-ZIP group +ignorable_urls: + - ftp://ftp.cdrom.com/pub/infozip/ + - ftp://ftp.wustl.edu/pub/aminet/util/time/clockdaemon.lha + - http://www.cdrom.com/pub/infozip/ + - http://www.cdrom.com/pub/infozip/zlib/ +ignorable_emails: + - 71150.2731@compuserve.com + - Zip-Bugs@lists.wku.edu + - pueschel@imsdd.meb.uni-bonn.de +--- + This is the Info-ZIP file COPYING (for UnZip), last updated 5 Oct 97. @@ -207,4 +245,4 @@ A. Yes, so long as you include in your product an acknowledgment; a If you only need compression capability, not full zipfile support, you might want to look at zlib instead; it has fewer restrictions - on commercial use. See http://www.cdrom.com/pub/infozip/zlib/ . + on commercial use. See http://www.cdrom.com/pub/infozip/zlib/ . \ No newline at end of file diff --git a/src/licensedcode/data/licenses/info-zip-1997-10.yml b/src/licensedcode/data/licenses/info-zip-1997-10.yml deleted file mode 100644 index 0e78a68bad8..00000000000 --- a/src/licensedcode/data/licenses/info-zip-1997-10.yml +++ /dev/null @@ -1,35 +0,0 @@ -key: info-zip-1997-10 -short_name: Info-Zip License 1997-10 -name: Info-Zip License 1997-10 -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/ -spdx_license_key: LicenseRef-scancode-info-zip-1997-10 -text_urls: - - ftp://ftp.info-zip.org/pub/infozip/doc/copying -ignorable_copyrights: - - Copyright (c) 1992 Igor Mandrichenko - - Copyright (c) 1994 Greg Roelofs - - Copyright (c) 1996 Mike White - - Copyright 1989 Samuel H. Smith - - copyrighted 1997 by Steve P. Miller - - copyrighted by Norbert Pueschel, -ignorable_holders: - - Greg Roelofs - - Igor Mandrichenko - - Mike White - - Norbert Pueschel - - Samuel H. Smith - - Steve P. Miller -ignorable_authors: - - many people associated with the Info-ZIP group - - the Info-ZIP group -ignorable_urls: - - ftp://ftp.cdrom.com/pub/infozip/ - - ftp://ftp.wustl.edu/pub/aminet/util/time/clockdaemon.lha - - http://www.cdrom.com/pub/infozip/ - - http://www.cdrom.com/pub/infozip/zlib/ -ignorable_emails: - - 71150.2731@compuserve.com - - Zip-Bugs@lists.wku.edu - - pueschel@imsdd.meb.uni-bonn.de diff --git a/src/licensedcode/data/licenses/info-zip-2001-01.LICENSE b/src/licensedcode/data/licenses/info-zip-2001-01.LICENSE index 8e646bbe919..dec7fa27b0c 100644 --- a/src/licensedcode/data/licenses/info-zip-2001-01.LICENSE +++ b/src/licensedcode/data/licenses/info-zip-2001-01.LICENSE @@ -1,3 +1,21 @@ +--- +key: info-zip-2001-01 +short_name: Info-Zip License 2001-01 +name: Info-Zip License 2001-01 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2001-01 +text_urls: + - http://web.archive.org/web/20020221003207/http://www.info-zip.org/doc/LICENSE +ignorable_copyrights: + - Copyright (c) 1990-2001 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + This is version 2001-Jan-27 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. @@ -46,4 +64,4 @@ freely, subject to the following restrictions: 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own source and - binary releases. + binary releases. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/info-zip-2001-01.yml b/src/licensedcode/data/licenses/info-zip-2001-01.yml deleted file mode 100644 index ce6a6f92f6b..00000000000 --- a/src/licensedcode/data/licenses/info-zip-2001-01.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: info-zip-2001-01 -short_name: Info-Zip License 2001-01 -name: Info-Zip License 2001-01 -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/ -spdx_license_key: LicenseRef-scancode-info-zip-2001-01 -text_urls: - - http://web.archive.org/web/20020221003207/http://www.info-zip.org/doc/LICENSE -ignorable_copyrights: - - Copyright (c) 1990-2001 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/licenses/info-zip-2002-02.LICENSE b/src/licensedcode/data/licenses/info-zip-2002-02.LICENSE index d76258faa58..042029defdf 100644 --- a/src/licensedcode/data/licenses/info-zip-2002-02.LICENSE +++ b/src/licensedcode/data/licenses/info-zip-2002-02.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2002-02 +short_name: Info-Zip License 2002-02 +name: Info-Zip License 2002-02 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2002-02 +text_urls: + - http://web.archive.org/web/20020603162955/http://www.info-zip.org/license.html + - http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE +ignorable_copyrights: + - Copyright (c) 1990-2002 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + This is version 2002-Feb-16 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. @@ -50,4 +69,4 @@ freely, subject to the following restrictions: 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its - own source and binary releases. + own source and binary releases. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/info-zip-2002-02.yml b/src/licensedcode/data/licenses/info-zip-2002-02.yml deleted file mode 100644 index 1187acdd6b6..00000000000 --- a/src/licensedcode/data/licenses/info-zip-2002-02.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: info-zip-2002-02 -short_name: Info-Zip License 2002-02 -name: Info-Zip License 2002-02 -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/ -spdx_license_key: LicenseRef-scancode-info-zip-2002-02 -text_urls: - - http://web.archive.org/web/20020603162955/http://www.info-zip.org/license.html - - http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE -ignorable_copyrights: - - Copyright (c) 1990-2002 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/licenses/info-zip-2003-05.LICENSE b/src/licensedcode/data/licenses/info-zip-2003-05.LICENSE index 6eea5d10bc6..60832d39cb4 100644 --- a/src/licensedcode/data/licenses/info-zip-2003-05.LICENSE +++ b/src/licensedcode/data/licenses/info-zip-2003-05.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2003-05 +short_name: Info-Zip License 2003-05 +name: Info-Zip License 2003-05 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2003-05 +text_urls: + - http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE + - http://web.archive.org/web/20030601142019/http://www.info-zip.org/license.html +ignorable_copyrights: + - Copyright (c) 1990-2003 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + This is version 2003-May-08 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. @@ -51,4 +70,4 @@ freely, subject to the following restrictions: 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its - own source and binary releases. + own source and binary releases. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/info-zip-2003-05.yml b/src/licensedcode/data/licenses/info-zip-2003-05.yml deleted file mode 100644 index 0bfba09f701..00000000000 --- a/src/licensedcode/data/licenses/info-zip-2003-05.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: info-zip-2003-05 -short_name: Info-Zip License 2003-05 -name: Info-Zip License 2003-05 -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/ -spdx_license_key: LicenseRef-scancode-info-zip-2003-05 -text_urls: - - http://web.archive.org/web/20030409023329/http://www.info-zip.org/doc/LICENSE - - http://web.archive.org/web/20030601142019/http://www.info-zip.org/license.html -ignorable_copyrights: - - Copyright (c) 1990-2003 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/licenses/info-zip-2004-05.LICENSE b/src/licensedcode/data/licenses/info-zip-2004-05.LICENSE index a07f969c0c3..ddac6db849f 100644 --- a/src/licensedcode/data/licenses/info-zip-2004-05.LICENSE +++ b/src/licensedcode/data/licenses/info-zip-2004-05.LICENSE @@ -1,3 +1,21 @@ +--- +key: info-zip-2004-05 +short_name: Info-Zip License 2004-05 +name: Info-Zip License 2004-05 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2004-05 +text_urls: + - http://web.archive.org/web/20040807105859/http://www.info-zip.org/license.html +ignorable_copyrights: + - Copyright (c) 1990-2004 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info/ +--- + This is version 2004-May-22 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info- zip.org/pub/infozip/license.html indefinitely. diff --git a/src/licensedcode/data/licenses/info-zip-2004-05.yml b/src/licensedcode/data/licenses/info-zip-2004-05.yml deleted file mode 100644 index 4ea04820218..00000000000 --- a/src/licensedcode/data/licenses/info-zip-2004-05.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: info-zip-2004-05 -short_name: Info-Zip License 2004-05 -name: Info-Zip License 2004-05 -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/ -spdx_license_key: LicenseRef-scancode-info-zip-2004-05 -text_urls: - - http://web.archive.org/web/20040807105859/http://www.info-zip.org/license.html -ignorable_copyrights: - - Copyright (c) 1990-2004 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.info/ diff --git a/src/licensedcode/data/licenses/info-zip-2005-02.LICENSE b/src/licensedcode/data/licenses/info-zip-2005-02.LICENSE index dcdd3055809..3cdd8261554 100644 --- a/src/licensedcode/data/licenses/info-zip-2005-02.LICENSE +++ b/src/licensedcode/data/licenses/info-zip-2005-02.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2005-02 +short_name: Info-Zip License 2005-02 +name: Info-Zip License 2005-02 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2005-02 +text_urls: + - ftp://ftp.info-zip.org/pub/infozip/doc/license + - http://www.info-zip.org/doc/LICENSE.20050210 +ignorable_copyrights: + - Copyright (c) 1990-2005 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + This is version 2005-Feb-10 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. diff --git a/src/licensedcode/data/licenses/info-zip-2005-02.yml b/src/licensedcode/data/licenses/info-zip-2005-02.yml deleted file mode 100644 index 377d1d76f62..00000000000 --- a/src/licensedcode/data/licenses/info-zip-2005-02.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: info-zip-2005-02 -short_name: Info-Zip License 2005-02 -name: Info-Zip License 2005-02 -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/ -spdx_license_key: LicenseRef-scancode-info-zip-2005-02 -text_urls: - - ftp://ftp.info-zip.org/pub/infozip/doc/license - - http://www.info-zip.org/doc/LICENSE.20050210 -ignorable_copyrights: - - Copyright (c) 1990-2005 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/licenses/info-zip-2007-03.LICENSE b/src/licensedcode/data/licenses/info-zip-2007-03.LICENSE index 6d0ef6e4ad8..3fa4c05f9c6 100644 --- a/src/licensedcode/data/licenses/info-zip-2007-03.LICENSE +++ b/src/licensedcode/data/licenses/info-zip-2007-03.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2007-03 +short_name: Info-Zip License 2007-03 +name: Info-Zip License 2007-03 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2007-03 +text_urls: + - http://www.info-zip.org/doc/LICENSE.20070302 +ignorable_copyrights: + - Copyright (c) 1990-2007 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html + - http://www.info-zip.org/pub/infozip/license.html +--- + This is version 2007-Mar-4 of the Info-ZIP license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely and diff --git a/src/licensedcode/data/licenses/info-zip-2007-03.yml b/src/licensedcode/data/licenses/info-zip-2007-03.yml deleted file mode 100644 index 41b57dc6452..00000000000 --- a/src/licensedcode/data/licenses/info-zip-2007-03.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: info-zip-2007-03 -short_name: Info-Zip License 2007-03 -name: Info-Zip License 2007-03 -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/ -spdx_license_key: LicenseRef-scancode-info-zip-2007-03 -text_urls: - - http://www.info-zip.org/doc/LICENSE.20070302 -ignorable_copyrights: - - Copyright (c) 1990-2007 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html - - http://www.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/licenses/info-zip-2009-01.LICENSE b/src/licensedcode/data/licenses/info-zip-2009-01.LICENSE index 64aee44672d..b27d28eb628 100644 --- a/src/licensedcode/data/licenses/info-zip-2009-01.LICENSE +++ b/src/licensedcode/data/licenses/info-zip-2009-01.LICENSE @@ -1,3 +1,22 @@ +--- +key: info-zip-2009-01 +short_name: Info-Zip License 2009-01 +name: Info-Zip License 2009-01 +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/ +spdx_license_key: LicenseRef-scancode-info-zip-2009-01 +text_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +ignorable_copyrights: + - Copyright (c) 1990-2009 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info/ + - http://www.info/ +--- + This is version 2009-Jan-02 of the Info-ZIP license. The definitive version of this document should be available at ftp://ftp.info- zip.org/pub/infozip/license.html indefinitely and a copy at http://www.info- diff --git a/src/licensedcode/data/licenses/info-zip-2009-01.yml b/src/licensedcode/data/licenses/info-zip-2009-01.yml deleted file mode 100644 index 3a99a8993dd..00000000000 --- a/src/licensedcode/data/licenses/info-zip-2009-01.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: info-zip-2009-01 -short_name: Info-Zip License 2009-01 -name: Info-Zip License 2009-01 -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/ -spdx_license_key: LicenseRef-scancode-info-zip-2009-01 -text_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html -ignorable_copyrights: - - Copyright (c) 1990-2009 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.info/ - - http://www.info/ diff --git a/src/licensedcode/data/licenses/info-zip.LICENSE b/src/licensedcode/data/licenses/info-zip.LICENSE index 1815bf5bbf2..5eea50312e9 100644 --- a/src/licensedcode/data/licenses/info-zip.LICENSE +++ b/src/licensedcode/data/licenses/info-zip.LICENSE @@ -1,3 +1,21 @@ +--- +key: info-zip +short_name: Info-Zip License +name: Info-Zip License +category: Permissive +owner: info-zip +homepage_url: http://www.info-zip.org/doc/ +spdx_license_key: Info-ZIP +text_urls: + - http://www.info-zip.org/license.html +ignorable_copyrights: + - Copyright (c) 1990-1999 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.cdrom.com/pub/infozip/license.html +--- + Info-Zip License This is version 1999-Oct-05 of the Info-ZIP copyright and license. The definitive version of this document should be available at ftp://ftp.cdrom.com/pub/infozip/license.html indefinitely. diff --git a/src/licensedcode/data/licenses/info-zip.yml b/src/licensedcode/data/licenses/info-zip.yml deleted file mode 100644 index 1ff1589c6db..00000000000 --- a/src/licensedcode/data/licenses/info-zip.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: info-zip -short_name: Info-Zip License -name: Info-Zip License -category: Permissive -owner: info-zip -homepage_url: http://www.info-zip.org/doc/ -spdx_license_key: Info-ZIP -text_urls: - - http://www.info-zip.org/license.html -ignorable_copyrights: - - Copyright (c) 1990-1999 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.cdrom.com/pub/infozip/license.html diff --git a/src/licensedcode/data/licenses/infonode-1.1.LICENSE b/src/licensedcode/data/licenses/infonode-1.1.LICENSE index df87e7e3ac0..c4c69ac7e17 100644 --- a/src/licensedcode/data/licenses/infonode-1.1.LICENSE +++ b/src/licensedcode/data/licenses/infonode-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: infonode-1.1 +short_name: InfoNode Software License 1.1 +name: InfoNode Software License Version 1.1 +category: Commercial +owner: InfoNode +homepage_url: http://www.infonode.net/licenses/InfoNodeLicense.html +spdx_license_key: LicenseRef-scancode-infonode-1.1 +other_urls: + - http://www.nnl.se/html/english/index.html +ignorable_copyrights: + - Copyright (c) 2004 NNL Technology AB, www.nnl.se +ignorable_holders: + - NNL Technology AB, www.nnl.se +ignorable_urls: + - http://proguard.sourceforge.net/ + - http://www.nnl.se/ +--- + InfoNode Software License Version 1.1 1. Definitions diff --git a/src/licensedcode/data/licenses/infonode-1.1.yml b/src/licensedcode/data/licenses/infonode-1.1.yml deleted file mode 100644 index d11eef42b1e..00000000000 --- a/src/licensedcode/data/licenses/infonode-1.1.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: infonode-1.1 -short_name: InfoNode Software License 1.1 -name: InfoNode Software License Version 1.1 -category: Commercial -owner: InfoNode -homepage_url: http://www.infonode.net/licenses/InfoNodeLicense.html -spdx_license_key: LicenseRef-scancode-infonode-1.1 -other_urls: - - http://www.nnl.se/html/english/index.html -ignorable_copyrights: - - Copyright (c) 2004 NNL Technology AB, www.nnl.se -ignorable_holders: - - NNL Technology AB, www.nnl.se -ignorable_urls: - - http://proguard.sourceforge.net/ - - http://www.nnl.se/ diff --git a/src/licensedcode/data/licenses/initial-developer-public.LICENSE b/src/licensedcode/data/licenses/initial-developer-public.LICENSE index dca6a903cab..ff7cf947f17 100644 --- a/src/licensedcode/data/licenses/initial-developer-public.LICENSE +++ b/src/licensedcode/data/licenses/initial-developer-public.LICENSE @@ -1,3 +1,17 @@ +--- +key: initial-developer-public +short_name: Initial Developer Public License +name: Initial Developer Public License +category: Copyleft +owner: Firebird +homepage_url: http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/ +spdx_license_key: LicenseRef-scancode-initial-developer-public +text_urls: + - http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/ +ignorable_urls: + - http://www.firebirdsql.org/en/initial +--- + Initial Developer's Public License Version 1.0 1. Definitions diff --git a/src/licensedcode/data/licenses/initial-developer-public.yml b/src/licensedcode/data/licenses/initial-developer-public.yml deleted file mode 100644 index d843d7b9fcd..00000000000 --- a/src/licensedcode/data/licenses/initial-developer-public.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: initial-developer-public -short_name: Initial Developer Public License -name: Initial Developer Public License -category: Copyleft -owner: Firebird -homepage_url: http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/ -spdx_license_key: LicenseRef-scancode-initial-developer-public -text_urls: - - http://www.firebirdsql.org/en/initial-developer-s-public-license-version-1-0/ -ignorable_urls: - - http://www.firebirdsql.org/en/initial diff --git a/src/licensedcode/data/licenses/inner-net-2.0.LICENSE b/src/licensedcode/data/licenses/inner-net-2.0.LICENSE index 27ebd993c03..ad2ef2e2019 100644 --- a/src/licensedcode/data/licenses/inner-net-2.0.LICENSE +++ b/src/licensedcode/data/licenses/inner-net-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: inner-net-2.0 +short_name: Inner Net 2.0 +name: Inner Net License 2.0 +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-inner-net-2.0 +other_urls: + - https://fedoraproject.org/wiki/Licensing/Inner_Net_License + - https://www.calculate-linux.org/packages/licenses/inner-net +minimum_coverage: 60 +--- + The Inner Net License, Version 2 The author(s) grant permission for redistribution and use in source and diff --git a/src/licensedcode/data/licenses/inner-net-2.0.yml b/src/licensedcode/data/licenses/inner-net-2.0.yml deleted file mode 100644 index 07ecb153dcb..00000000000 --- a/src/licensedcode/data/licenses/inner-net-2.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: inner-net-2.0 -short_name: Inner Net 2.0 -name: Inner Net License 2.0 -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-inner-net-2.0 -other_urls: - - https://fedoraproject.org/wiki/Licensing/Inner_Net_License - - https://www.calculate-linux.org/packages/licenses/inner-net -minimum_coverage: 60 diff --git a/src/licensedcode/data/licenses/inno-setup.LICENSE b/src/licensedcode/data/licenses/inno-setup.LICENSE index 77bcdf76c04..50f941ba54f 100644 --- a/src/licensedcode/data/licenses/inno-setup.LICENSE +++ b/src/licensedcode/data/licenses/inno-setup.LICENSE @@ -1,3 +1,24 @@ +--- +key: inno-setup +short_name: Inno Setup License +name: Inno Setup License +category: Permissive +owner: jrsoftware.org +homepage_url: http://www.jrsoftware.org/files/is/license.txt +spdx_license_key: LicenseRef-scancode-inno-setup +text_urls: + - http://www.jrsoftware.org/files/is/license.txt +ignorable_copyrights: + - Copyright (c) 1997-2010 Jordan Russell + - Portions Copyright (c) 2000-2010 Martijn Laan + - copyrighted by Jordan Russell +ignorable_holders: + - Jordan Russell + - Martijn Laan +ignorable_urls: + - http://www.jrsoftware.org/ +--- + Inno Setup License ================== diff --git a/src/licensedcode/data/licenses/inno-setup.yml b/src/licensedcode/data/licenses/inno-setup.yml deleted file mode 100644 index ed97410f0de..00000000000 --- a/src/licensedcode/data/licenses/inno-setup.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: inno-setup -short_name: Inno Setup License -name: Inno Setup License -category: Permissive -owner: jrsoftware.org -homepage_url: http://www.jrsoftware.org/files/is/license.txt -spdx_license_key: LicenseRef-scancode-inno-setup -text_urls: - - http://www.jrsoftware.org/files/is/license.txt -ignorable_copyrights: - - Copyright (c) 1997-2010 Jordan Russell - - Portions Copyright (c) 2000-2010 Martijn Laan - - copyrighted by Jordan Russell -ignorable_holders: - - Jordan Russell - - Martijn Laan -ignorable_urls: - - http://www.jrsoftware.org/ diff --git a/src/licensedcode/data/licenses/inria-linking-exception.LICENSE b/src/licensedcode/data/licenses/inria-linking-exception.LICENSE index c5873dbb686..0e3e6b9076b 100644 --- a/src/licensedcode/data/licenses/inria-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/inria-linking-exception.LICENSE @@ -1,3 +1,23 @@ +--- +key: inria-linking-exception +short_name: INRIA Linking Exception to QPL 1.0 +name: INRIA Linking Exception to QPL 1.0 +category: Copyleft Limited +owner: INRIA +homepage_url: http://para.inria.fr/~maranget/hevea/distri/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-inria-linking-exception +other_urls: + - http://para.inria.fr/~maranget/hevea/distri/hevea-2.32.tar.gz +standard_notice: | + As a special exception to the Q Public Licence, you may develop + application programs, reusable components and other software items + that link with the original or modified versions of the Software + and are not made available to the general public, without any of the + additional requirements listed in clause 6c of the Q Public licence. + THE Q PUBLIC LICENSE version 1.0 +--- + As a special exception to the Q Public Licence, you may develop application programs, reusable components and other software items that link with the original or modified versions of the Software diff --git a/src/licensedcode/data/licenses/inria-linking-exception.yml b/src/licensedcode/data/licenses/inria-linking-exception.yml deleted file mode 100644 index 516384f883d..00000000000 --- a/src/licensedcode/data/licenses/inria-linking-exception.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: inria-linking-exception -short_name: INRIA Linking Exception to QPL 1.0 -name: INRIA Linking Exception to QPL 1.0 -category: Copyleft Limited -owner: INRIA -homepage_url: http://para.inria.fr/~maranget/hevea/distri/LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-inria-linking-exception -other_urls: - - http://para.inria.fr/~maranget/hevea/distri/hevea-2.32.tar.gz -standard_notice: | - As a special exception to the Q Public Licence, you may develop - application programs, reusable components and other software items - that link with the original or modified versions of the Software - and are not made available to the general public, without any of the - additional requirements listed in clause 6c of the Q Public licence. - THE Q PUBLIC LICENSE version 1.0 diff --git a/src/licensedcode/data/licenses/installsite.LICENSE b/src/licensedcode/data/licenses/installsite.LICENSE index 07312ba067e..5a1a21139aa 100644 --- a/src/licensedcode/data/licenses/installsite.LICENSE +++ b/src/licensedcode/data/licenses/installsite.LICENSE @@ -1,3 +1,13 @@ +--- +key: installsite +short_name: InstallSite License Agreement +name: InstallSite License Agreement +category: Free Restricted +owner: Stefan Krueger +homepage_url: http://www.installsite.org/pages/en/license.htm +spdx_license_key: LicenseRef-scancode-installsite +--- + License Agreement IMPORTANT - READ CAREFULLY. This is a legal agreement between you @@ -48,4 +58,4 @@ the CONTENTS or the provision of or failure to provide support services, even if Stefan Krueger has been advised of the possibility of such damages. In any case, Stefan Krueger's entire liability under any provision of this license agreement shall be limited to the amount -actually paid by you for the CONTENTS. +actually paid by you for the CONTENTS. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/installsite.yml b/src/licensedcode/data/licenses/installsite.yml deleted file mode 100644 index b172cfbeae5..00000000000 --- a/src/licensedcode/data/licenses/installsite.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: installsite -short_name: InstallSite License Agreement -name: InstallSite License Agreement -category: Free Restricted -owner: Stefan Krueger -homepage_url: http://www.installsite.org/pages/en/license.htm -spdx_license_key: LicenseRef-scancode-installsite diff --git a/src/licensedcode/data/licenses/intel-acpi.LICENSE b/src/licensedcode/data/licenses/intel-acpi.LICENSE index 653669bec11..4ea1fac2293 100644 --- a/src/licensedcode/data/licenses/intel-acpi.LICENSE +++ b/src/licensedcode/data/licenses/intel-acpi.LICENSE @@ -1,3 +1,21 @@ +--- +key: intel-acpi +short_name: Intel ACPI SLA +name: Intel ACPI Software License Agreement +category: Permissive +owner: Intel Corporation +homepage_url: https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement +notes: | + Per Fedora, this license is no longer available at its original URL + http://www.intel.com/technology/iapc/acpi/license2.htm. A copy was taken + from the last available version at archive.org. +spdx_license_key: Intel-ACPI +ignorable_copyrights: + - Copyright (c) 1999-2005, Intel Corp. +ignorable_holders: + - Intel Corp. +--- + ACPI - Software License Agreement Software License Agreement IMPORTANT - READ BEFORE COPYING, INSTALLING diff --git a/src/licensedcode/data/licenses/intel-acpi.yml b/src/licensedcode/data/licenses/intel-acpi.yml deleted file mode 100644 index c91163d291d..00000000000 --- a/src/licensedcode/data/licenses/intel-acpi.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: intel-acpi -short_name: Intel ACPI SLA -name: Intel ACPI Software License Agreement -category: Permissive -owner: Intel Corporation -homepage_url: https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement -notes: | - Per Fedora, this license is no longer available at its original URL - http://www.intel.com/technology/iapc/acpi/license2.htm. A copy was taken - from the last available version at archive.org. -spdx_license_key: Intel-ACPI -ignorable_copyrights: - - Copyright (c) 1999-2005, Intel Corp. -ignorable_holders: - - Intel Corp. diff --git a/src/licensedcode/data/licenses/intel-bcl.LICENSE b/src/licensedcode/data/licenses/intel-bcl.LICENSE index 0765e282b72..944590aafda 100644 --- a/src/licensedcode/data/licenses/intel-bcl.LICENSE +++ b/src/licensedcode/data/licenses/intel-bcl.LICENSE @@ -1,3 +1,12 @@ +--- +key: intel-bcl +short_name: Intel BCL +name: Intel Binary Code License +category: Proprietary Free +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-bcl +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: @@ -25,4 +34,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/intel-bcl.yml b/src/licensedcode/data/licenses/intel-bcl.yml deleted file mode 100644 index 0a8eb34699f..00000000000 --- a/src/licensedcode/data/licenses/intel-bcl.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: intel-bcl -short_name: Intel BCL -name: Intel Binary Code License -category: Proprietary Free -owner: Intel Corporation -spdx_license_key: LicenseRef-scancode-intel-bcl diff --git a/src/licensedcode/data/licenses/intel-bsd-2-clause.LICENSE b/src/licensedcode/data/licenses/intel-bsd-2-clause.LICENSE index a64317a261e..3f29f7aeb06 100644 --- a/src/licensedcode/data/licenses/intel-bsd-2-clause.LICENSE +++ b/src/licensedcode/data/licenses/intel-bsd-2-clause.LICENSE @@ -1,3 +1,17 @@ +--- +key: intel-bsd-2-clause +short_name: Intel BSD 2 Clause License +name: Intel BSD 2 Clause License +category: Permissive +owner: Intel Corporation +notes: | + this license is seen in ZFS and FreeBSD. It is the same as intel-bsd + but with 2 clauses only. +spdx_license_key: LicenseRef-scancode-intel-bsd-2-clause +text_urls: + - https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/cddl/usr.sbin/zfsd/zfsd_exception.cc +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +35,4 @@ 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 DAMAGES. +POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/intel-bsd-2-clause.yml b/src/licensedcode/data/licenses/intel-bsd-2-clause.yml deleted file mode 100644 index 0388d1b2a2f..00000000000 --- a/src/licensedcode/data/licenses/intel-bsd-2-clause.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: intel-bsd-2-clause -short_name: Intel BSD 2 Clause License -name: Intel BSD 2 Clause License -category: Permissive -owner: Intel Corporation -notes: | - this license is seen in ZFS and FreeBSD. It is the same as intel-bsd - but with 2 clauses only. -spdx_license_key: LicenseRef-scancode-intel-bsd-2-clause -text_urls: - - https://github.com/freebsd/freebsd-src/blob/098dbd7ff7f3da9dda03802cdb2d8755f816eada/cddl/usr.sbin/zfsd/zfsd_exception.cc diff --git a/src/licensedcode/data/licenses/intel-bsd-export-control.LICENSE b/src/licensedcode/data/licenses/intel-bsd-export-control.LICENSE index 172a7084f61..82a51e9af2d 100644 --- a/src/licensedcode/data/licenses/intel-bsd-export-control.LICENSE +++ b/src/licensedcode/data/licenses/intel-bsd-export-control.LICENSE @@ -1,3 +1,21 @@ +--- +key: intel-bsd-export-control +short_name: Intel BSD - Export Control +name: Intel BSD - Export Control +category: Permissive +owner: Intel Corporation +homepage_url: http://opensource.org/licenses/intel-open-source-license.html +notes: this has this title in SPDX and OSI text The Intel Open Source License for CDSA/CSSM + Implementation (BSD License with Export Notice) +spdx_license_key: Intel +osi_url: http://www.opensource.org/licenses/intel-open-source-license.html +other_urls: + - http://opensource.org/licenses/Intel + - https://opensource.org/licenses/Intel + - https://opensource.org/licenses/intel-open-source-license.php +minimum_coverage: 75 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/intel-bsd-export-control.yml b/src/licensedcode/data/licenses/intel-bsd-export-control.yml deleted file mode 100644 index 6763dace6de..00000000000 --- a/src/licensedcode/data/licenses/intel-bsd-export-control.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: intel-bsd-export-control -short_name: Intel BSD - Export Control -name: Intel BSD - Export Control -category: Permissive -owner: Intel Corporation -homepage_url: http://opensource.org/licenses/intel-open-source-license.html -notes: this has this title in SPDX and OSI text The Intel Open Source License for CDSA/CSSM - Implementation (BSD License with Export Notice) -spdx_license_key: Intel -osi_url: http://www.opensource.org/licenses/intel-open-source-license.html -other_urls: - - http://opensource.org/licenses/Intel - - https://opensource.org/licenses/Intel - - https://opensource.org/licenses/intel-open-source-license.php -minimum_coverage: 75 diff --git a/src/licensedcode/data/licenses/intel-bsd.LICENSE b/src/licensedcode/data/licenses/intel-bsd.LICENSE index e87185e8edb..10e03a2bbaa 100644 --- a/src/licensedcode/data/licenses/intel-bsd.LICENSE +++ b/src/licensedcode/data/licenses/intel-bsd.LICENSE @@ -1,3 +1,18 @@ +--- +key: intel-bsd +short_name: Intel BSD License +name: Intel BSD License +category: Permissive +owner: Intel Corporation +notes: | + this license is often used in conjunction with a choice of gpl-2.0 such + as in the Linux Kernel +spdx_license_key: LicenseRef-scancode-intel-bsd +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/history/history.git/tree/include/acpi/acoutput.h?h=v2.6.24&id=f9f4601f331aa1226d7a798a01950efbb388f07f + - https://github.com/rwatson/mbufs/blob/748b87203d7219fd9fe2f73894359a6301ce5be1/sys/xen/xenstore/xenstore_internal.h +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +38,4 @@ 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 DAMAGES. +THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/intel-bsd.yml b/src/licensedcode/data/licenses/intel-bsd.yml deleted file mode 100644 index 8504c0cb077..00000000000 --- a/src/licensedcode/data/licenses/intel-bsd.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: intel-bsd -short_name: Intel BSD License -name: Intel BSD License -category: Permissive -owner: Intel Corporation -notes: | - this license is often used in conjunction with a choice of gpl-2.0 such - as in the Linux Kernel -spdx_license_key: LicenseRef-scancode-intel-bsd -text_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/history/history.git/tree/include/acpi/acoutput.h?h=v2.6.24&id=f9f4601f331aa1226d7a798a01950efbb388f07f - - https://github.com/rwatson/mbufs/blob/748b87203d7219fd9fe2f73894359a6301ce5be1/sys/xen/xenstore/xenstore_internal.h diff --git a/src/licensedcode/data/licenses/intel-code-samples.LICENSE b/src/licensedcode/data/licenses/intel-code-samples.LICENSE index 5b8d18034c1..d9e339405b9 100644 --- a/src/licensedcode/data/licenses/intel-code-samples.LICENSE +++ b/src/licensedcode/data/licenses/intel-code-samples.LICENSE @@ -1,3 +1,15 @@ +--- +key: intel-code-samples +short_name: Intel Code Samples License +name: Intel Code Samples License +category: Proprietary Free +owner: Intel Corporation +homepage_url: http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm +spdx_license_key: LicenseRef-scancode-intel-code-samples +text_urls: + - http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm +--- + Code Samples License IMPORTANT - READ BEFORE COPYING, INSTALLING, OR USING. diff --git a/src/licensedcode/data/licenses/intel-code-samples.yml b/src/licensedcode/data/licenses/intel-code-samples.yml deleted file mode 100644 index b7c7b0ea8db..00000000000 --- a/src/licensedcode/data/licenses/intel-code-samples.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: intel-code-samples -short_name: Intel Code Samples License -name: Intel Code Samples License -category: Proprietary Free -owner: Intel Corporation -homepage_url: http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm -spdx_license_key: LicenseRef-scancode-intel-code-samples -text_urls: - - http://web.archive.org/web/20061110164256/http://www.intel.com/cd/ids/developer/asmo-na/eng/19287.htm?desturl=276611.htm diff --git a/src/licensedcode/data/licenses/intel-confidential.LICENSE b/src/licensedcode/data/licenses/intel-confidential.LICENSE index ecc7babd3fc..e34c9678959 100644 --- a/src/licensedcode/data/licenses/intel-confidential.LICENSE +++ b/src/licensedcode/data/licenses/intel-confidential.LICENSE @@ -1,3 +1,12 @@ +--- +key: intel-confidential +short_name: Intel Confidential +name: Intel Confidential +category: Commercial +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-confidential +--- + INTEL CONFIDENTIAL The source code contained or described herein and all documents related to the source code (""Material"") are owned by Intel Corporation or its suppliers or licensors. Title to diff --git a/src/licensedcode/data/licenses/intel-confidential.yml b/src/licensedcode/data/licenses/intel-confidential.yml deleted file mode 100644 index 504d02239ae..00000000000 --- a/src/licensedcode/data/licenses/intel-confidential.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: intel-confidential -short_name: Intel Confidential -name: Intel Confidential -category: Commercial -owner: Intel Corporation -spdx_license_key: LicenseRef-scancode-intel-confidential diff --git a/src/licensedcode/data/licenses/intel-firmware.LICENSE b/src/licensedcode/data/licenses/intel-firmware.LICENSE index 223b9cce3ff..e0fdae51344 100644 --- a/src/licensedcode/data/licenses/intel-firmware.LICENSE +++ b/src/licensedcode/data/licenses/intel-firmware.LICENSE @@ -1,3 +1,17 @@ +--- +key: intel-firmware +short_name: Intel Firmware License +name: Intel Firmware License +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://github.com/coreos/portage-stable/blob/master/licenses/ipw2200-fw +spdx_license_key: LicenseRef-scancode-intel-firmware +text_urls: + - http://www.redhat.com/licenses/thirdparty/intel_ipw2100.html +other_urls: + - ftp://ftp.supermicro.com/CDR-X9_1.30_for_Intel_X9_platform/Intel/ME/INTEL_SOFTWARE_LICENSE_AGREEMENT.pdf +--- + TERMS AND CONDITIONS IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS INTEL(C) SOFTWARE diff --git a/src/licensedcode/data/licenses/intel-firmware.yml b/src/licensedcode/data/licenses/intel-firmware.yml deleted file mode 100644 index af7a1a40410..00000000000 --- a/src/licensedcode/data/licenses/intel-firmware.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: intel-firmware -short_name: Intel Firmware License -name: Intel Firmware License -category: Proprietary Free -owner: Intel Corporation -homepage_url: https://github.com/coreos/portage-stable/blob/master/licenses/ipw2200-fw -spdx_license_key: LicenseRef-scancode-intel-firmware -text_urls: - - http://www.redhat.com/licenses/thirdparty/intel_ipw2100.html -other_urls: - - ftp://ftp.supermicro.com/CDR-X9_1.30_for_Intel_X9_platform/Intel/ME/INTEL_SOFTWARE_LICENSE_AGREEMENT.pdf diff --git a/src/licensedcode/data/licenses/intel-master-eula-sw-dev-2016.LICENSE b/src/licensedcode/data/licenses/intel-master-eula-sw-dev-2016.LICENSE index 5ea8a569cef..953978822c0 100644 --- a/src/licensedcode/data/licenses/intel-master-eula-sw-dev-2016.LICENSE +++ b/src/licensedcode/data/licenses/intel-master-eula-sw-dev-2016.LICENSE @@ -1,3 +1,19 @@ +--- +key: intel-master-eula-sw-dev-2016 +short_name: Intel Master EULA for SW Dev 2016 +name: Intel Master EULA for SW Development Products March 2016 +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://registrationcenter.intel.com/en/forms/?productid=2558&licensetype=2 +spdx_license_key: LicenseRef-scancode-intel-master-eula-sw-dev-2016 +text_urls: + - https://software.intel.com/sites/default/files/managed/67/99/Master_EULA_for_Intel_Sw_Development_Products_March_2016.pdf +ignorable_urls: + - http://www.intel.com/privacy + - https://software.intel.com/en + - https://software.intel.com/en-us/articles/end-user-license-agreement +--- + IMPORTANT INFORMATION ABOUT YOUR RIGHTS, OBLIGATIONS AND THE USE OF YOUR DATA - READ AND AGREE BEFORE COPYING, INSTALLING OR USING This Agreement forms a legally binding contract between you, or the company or other legal entity ("Legal Entity") for which you represent and warrant that you have the legal authority to bind that Legal Entity, are agreeing to this Agreement (each, "You" or "Your") and Intel Corporation and its subsidiaries (collectively "Intel") regarding Your use of the Materials. By copying, installing, distributing, publicly displaying, or otherwise using the Materials, You agree to be bound by the terms of this Agreement. If You do not agree to the terms of this Agreement, do not copy, install, distribute, publicly display, or use the Materials. You affirm that You are 18 years old or older or, if not, Your parent, legal guardian or Legal Entity must agree and enter into this Agreement. diff --git a/src/licensedcode/data/licenses/intel-master-eula-sw-dev-2016.yml b/src/licensedcode/data/licenses/intel-master-eula-sw-dev-2016.yml deleted file mode 100644 index 1d34e098fc2..00000000000 --- a/src/licensedcode/data/licenses/intel-master-eula-sw-dev-2016.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: intel-master-eula-sw-dev-2016 -short_name: Intel Master EULA for SW Dev 2016 -name: Intel Master EULA for SW Development Products March 2016 -category: Proprietary Free -owner: Intel Corporation -homepage_url: https://registrationcenter.intel.com/en/forms/?productid=2558&licensetype=2 -spdx_license_key: LicenseRef-scancode-intel-master-eula-sw-dev-2016 -text_urls: - - https://software.intel.com/sites/default/files/managed/67/99/Master_EULA_for_Intel_Sw_Development_Products_March_2016.pdf -ignorable_urls: - - http://www.intel.com/privacy - - https://software.intel.com/en - - https://software.intel.com/en-us/articles/end-user-license-agreement diff --git a/src/licensedcode/data/licenses/intel-material.LICENSE b/src/licensedcode/data/licenses/intel-material.LICENSE index 9d485587a19..1f7a45d10a8 100644 --- a/src/licensedcode/data/licenses/intel-material.LICENSE +++ b/src/licensedcode/data/licenses/intel-material.LICENSE @@ -1,3 +1,12 @@ +--- +key: intel-material +short_name: Intel Material License +name: Intel Material License +category: Commercial +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-material +--- + The source code, information and material ("Material") contained herein is owned by Intel Corporation or its suppliers or licensors, and title to such Material remains with Intel Corporation or its suppliers or licensors. diff --git a/src/licensedcode/data/licenses/intel-material.yml b/src/licensedcode/data/licenses/intel-material.yml deleted file mode 100644 index e958aaf4fa7..00000000000 --- a/src/licensedcode/data/licenses/intel-material.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: intel-material -short_name: Intel Material License -name: Intel Material License -category: Commercial -owner: Intel Corporation -spdx_license_key: LicenseRef-scancode-intel-material diff --git a/src/licensedcode/data/licenses/intel-mcu-2018.LICENSE b/src/licensedcode/data/licenses/intel-mcu-2018.LICENSE index 083cf4ba57e..115d5d05615 100644 --- a/src/licensedcode/data/licenses/intel-mcu-2018.LICENSE +++ b/src/licensedcode/data/licenses/intel-mcu-2018.LICENSE @@ -1,3 +1,13 @@ +--- +key: intel-mcu-2018 +short_name: Intel MCU path license 2018 +name: Intel MCU path license 2018 +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://01.org/mcu-path-license-2018 +spdx_license_key: LicenseRef-scancode-intel-mcu-2018 +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted, provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/intel-mcu-2018.yml b/src/licensedcode/data/licenses/intel-mcu-2018.yml deleted file mode 100644 index 454b5a61382..00000000000 --- a/src/licensedcode/data/licenses/intel-mcu-2018.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: intel-mcu-2018 -short_name: Intel MCU path license 2018 -name: Intel MCU path license 2018 -category: Proprietary Free -owner: Intel Corporation -homepage_url: https://01.org/mcu-path-license-2018 -spdx_license_key: LicenseRef-scancode-intel-mcu-2018 diff --git a/src/licensedcode/data/licenses/intel-microcode.LICENSE b/src/licensedcode/data/licenses/intel-microcode.LICENSE index 35dd46f06e8..792fc345249 100644 --- a/src/licensedcode/data/licenses/intel-microcode.LICENSE +++ b/src/licensedcode/data/licenses/intel-microcode.LICENSE @@ -1,3 +1,14 @@ +--- +key: intel-microcode +short_name: Intel Microcode License +name: Intel Microcode License +category: Proprietary Free +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-microcode +other_urls: + - https://downloadmirror.intel.com/28039/eng/microcode-20180807.tgz +--- + SOFTWARE LICENSE AGREEMENT DO NOT DOWNLOAD, INSTALL, ACCESS, COPY, OR USE ANY PORTION OF THE SOFTWARE diff --git a/src/licensedcode/data/licenses/intel-microcode.yml b/src/licensedcode/data/licenses/intel-microcode.yml deleted file mode 100644 index 287b33f292c..00000000000 --- a/src/licensedcode/data/licenses/intel-microcode.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: intel-microcode -short_name: Intel Microcode License -name: Intel Microcode License -category: Proprietary Free -owner: Intel Corporation -spdx_license_key: LicenseRef-scancode-intel-microcode -other_urls: - - https://downloadmirror.intel.com/28039/eng/microcode-20180807.tgz diff --git a/src/licensedcode/data/licenses/intel-osl-1989.LICENSE b/src/licensedcode/data/licenses/intel-osl-1989.LICENSE index 4707ca1bbd3..9c4b954d4f6 100644 --- a/src/licensedcode/data/licenses/intel-osl-1989.LICENSE +++ b/src/licensedcode/data/licenses/intel-osl-1989.LICENSE @@ -1,3 +1,16 @@ +--- +key: intel-osl-1989 +short_name: Intel OSL 1989 +name: Intel Open Source License 1989 +category: Permissive +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-osl-1989 +ignorable_copyrights: + - Copyright (c) 1989, Intel Corporation +ignorable_holders: + - Intel Corporation +--- + Intel Open Source License Copyright (c) 1989, Intel Corporation diff --git a/src/licensedcode/data/licenses/intel-osl-1989.yml b/src/licensedcode/data/licenses/intel-osl-1989.yml deleted file mode 100644 index 5209d3c18b4..00000000000 --- a/src/licensedcode/data/licenses/intel-osl-1989.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: intel-osl-1989 -short_name: Intel OSL 1989 -name: Intel Open Source License 1989 -category: Permissive -owner: Intel Corporation -spdx_license_key: LicenseRef-scancode-intel-osl-1989 -ignorable_copyrights: - - Copyright (c) 1989, Intel Corporation -ignorable_holders: - - Intel Corporation diff --git a/src/licensedcode/data/licenses/intel-osl-1993.LICENSE b/src/licensedcode/data/licenses/intel-osl-1993.LICENSE index b27f1fb389e..ce10e444403 100644 --- a/src/licensedcode/data/licenses/intel-osl-1993.LICENSE +++ b/src/licensedcode/data/licenses/intel-osl-1993.LICENSE @@ -1,3 +1,12 @@ +--- +key: intel-osl-1993 +short_name: Intel OSL 1993 +name: Intel Open Source License 1993 +category: Permissive +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-osl-1993 +--- + Intel hereby grants you permission to copy, modify, and distribute this software and its documentation. Intel grants this permission provided that the above copyright notice appears in all copies and that both the @@ -20,4 +29,4 @@ documentation and results solely at your own risk. IN NO EVENT SHALL INTEL BE LIABLE FOR ANY LOSS OF USE, LOSS OF BUSINESS, LOSS OF PROFITS, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES OF ANY KIND. IN NO EVENT SHALL INTEL'S TOTAL LIABILITY EXCEED THE SUM -PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. +PAID TO INTEL FOR THE PRODUCT LICENSED HEREUNDER. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/intel-osl-1993.yml b/src/licensedcode/data/licenses/intel-osl-1993.yml deleted file mode 100644 index 90fb074031b..00000000000 --- a/src/licensedcode/data/licenses/intel-osl-1993.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: intel-osl-1993 -short_name: Intel OSL 1993 -name: Intel Open Source License 1993 -category: Permissive -owner: Intel Corporation -spdx_license_key: LicenseRef-scancode-intel-osl-1993 diff --git a/src/licensedcode/data/licenses/intel-royalty-free.LICENSE b/src/licensedcode/data/licenses/intel-royalty-free.LICENSE index d38a3cba239..eea4987a0c0 100644 --- a/src/licensedcode/data/licenses/intel-royalty-free.LICENSE +++ b/src/licensedcode/data/licenses/intel-royalty-free.LICENSE @@ -1,3 +1,15 @@ +--- +key: intel-royalty-free +short_name: Intel Royalty Free License +name: Intel Royalty Free License +category: Permissive +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-royalty-free +minimum_coverage: 60 +ignorable_authors: + - Intel Corporation +--- + This program has been developed by Intel Corporation. You have Intel's permission to incorporate this code into your product, royalty free. Intel has various @@ -16,4 +28,4 @@ assume any responsibility for any errors which may appear in this code nor any responsibility to update it. Other brands and names are the property of their respective -owners. +owners. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/intel-royalty-free.yml b/src/licensedcode/data/licenses/intel-royalty-free.yml deleted file mode 100644 index 1edca0fca13..00000000000 --- a/src/licensedcode/data/licenses/intel-royalty-free.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: intel-royalty-free -short_name: Intel Royalty Free License -name: Intel Royalty Free License -category: Permissive -owner: Intel Corporation -spdx_license_key: LicenseRef-scancode-intel-royalty-free -minimum_coverage: 60 -ignorable_authors: - - Intel Corporation diff --git a/src/licensedcode/data/licenses/intel-sample-source-code-2015.LICENSE b/src/licensedcode/data/licenses/intel-sample-source-code-2015.LICENSE index ac822b5b1ed..be5318dc23f 100644 --- a/src/licensedcode/data/licenses/intel-sample-source-code-2015.LICENSE +++ b/src/licensedcode/data/licenses/intel-sample-source-code-2015.LICENSE @@ -1,3 +1,15 @@ +--- +key: intel-sample-source-code-2015 +short_name: Intel Sample Source Code 2015 +name: Intel Sample Source Code License Agreement 2015 +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://software.intel.com/protected-download/267270/734854 +spdx_license_key: LicenseRef-scancode-intel-sample-source-code-2015 +ignorable_urls: + - http://www.intel.com/content/www/us/en/legal/export-compliance.html +--- + Intel Sample Source Code License Agreement Code Samples License Agreement (Version December 2015) diff --git a/src/licensedcode/data/licenses/intel-sample-source-code-2015.yml b/src/licensedcode/data/licenses/intel-sample-source-code-2015.yml deleted file mode 100644 index 16d50b49ebe..00000000000 --- a/src/licensedcode/data/licenses/intel-sample-source-code-2015.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: intel-sample-source-code-2015 -short_name: Intel Sample Source Code 2015 -name: Intel Sample Source Code License Agreement 2015 -category: Proprietary Free -owner: Intel Corporation -homepage_url: https://software.intel.com/protected-download/267270/734854 -spdx_license_key: LicenseRef-scancode-intel-sample-source-code-2015 -ignorable_urls: - - http://www.intel.com/content/www/us/en/legal/export-compliance.html diff --git a/src/licensedcode/data/licenses/intel-scl.LICENSE b/src/licensedcode/data/licenses/intel-scl.LICENSE index b4244b74189..9a42931cd5e 100644 --- a/src/licensedcode/data/licenses/intel-scl.LICENSE +++ b/src/licensedcode/data/licenses/intel-scl.LICENSE @@ -1,3 +1,14 @@ +--- +key: intel-scl +short_name: Intel Source Code License Agreement +name: Intel Source Code License Agreement +category: Proprietary Free +owner: Intel Corporation +spdx_license_key: LicenseRef-scancode-intel-scl +other_urls: + - http://software.intel.com/en-us/articles/intel-64-architecture-processor-topology-enumeration +--- + Intel Source Code License Agreement This license governs use of the accompanying software. By installing or copying all or any part of the software components in this package, you ("you" or "Licensee") agree to the terms of this agreement. Do not install or copy the software until you have carefully read and agreed to the following terms and conditions. If you do not agree to the terms of this agreement, promptly return the software to Intel Corporation ("Intel"). diff --git a/src/licensedcode/data/licenses/intel-scl.yml b/src/licensedcode/data/licenses/intel-scl.yml deleted file mode 100644 index a27ea16d69a..00000000000 --- a/src/licensedcode/data/licenses/intel-scl.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: intel-scl -short_name: Intel Source Code License Agreement -name: Intel Source Code License Agreement -category: Proprietary Free -owner: Intel Corporation -spdx_license_key: LicenseRef-scancode-intel-scl -other_urls: - - http://software.intel.com/en-us/articles/intel-64-architecture-processor-topology-enumeration diff --git a/src/licensedcode/data/licenses/intel.LICENSE b/src/licensedcode/data/licenses/intel.LICENSE index 8a1a461cd8b..ad3cb612ba1 100644 --- a/src/licensedcode/data/licenses/intel.LICENSE +++ b/src/licensedcode/data/licenses/intel.LICENSE @@ -1,3 +1,19 @@ +--- +key: intel +short_name: Intel Limited Patent License +name: Intel Limited Patent License +category: Proprietary Free +owner: Intel Corporation +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.IntcSST2 +spdx_license_key: LicenseRef-scancode-intel +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.adsp_sst +other_urls: + - http://web.archive.org/web/20060924155349/http://www.mepis.org/node/10358 +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/intel.yml b/src/licensedcode/data/licenses/intel.yml deleted file mode 100644 index 90ea7e64fb7..00000000000 --- a/src/licensedcode/data/licenses/intel.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: intel -short_name: Intel Limited Patent License -name: Intel Limited Patent License -category: Proprietary Free -owner: Intel Corporation -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.IntcSST2 -spdx_license_key: LicenseRef-scancode-intel -text_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.adsp_sst -other_urls: - - http://web.archive.org/web/20060924155349/http://www.mepis.org/node/10358 -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/licenses/interbase-1.0.LICENSE b/src/licensedcode/data/licenses/interbase-1.0.LICENSE index 936d048518d..45ccb613051 100644 --- a/src/licensedcode/data/licenses/interbase-1.0.LICENSE +++ b/src/licensedcode/data/licenses/interbase-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: interbase-1.0 +short_name: Interbase Public License 1.0 +name: Interbase Public License 1.0 +category: Copyleft +owner: Borland +homepage_url: http://info.borland.com/devsupport/interbase/opensource/IPL.html +spdx_license_key: Interbase-1.0 +text_urls: + - https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html +other_urls: + - http://info.borland.com/devsupport/interbase/opensource/IPL.html +ignorable_copyrights: + - Copyright (c) Borland/Inprise +ignorable_holders: + - Borland/Inprise +ignorable_authors: + - Borland Software Corp. + - InterBase Software Corp +ignorable_urls: + - http://info.borland.com/devsupport/interbase/opensource/IPL.html + - http://www.interbase.com/IPL.html +--- + Interbase Public License v1.0 http://info.borland.com/devsupport/interbase/opensource/IPL.html diff --git a/src/licensedcode/data/licenses/interbase-1.0.yml b/src/licensedcode/data/licenses/interbase-1.0.yml deleted file mode 100644 index 17052519e94..00000000000 --- a/src/licensedcode/data/licenses/interbase-1.0.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: interbase-1.0 -short_name: Interbase Public License 1.0 -name: Interbase Public License 1.0 -category: Copyleft -owner: Borland -homepage_url: http://info.borland.com/devsupport/interbase/opensource/IPL.html -spdx_license_key: Interbase-1.0 -text_urls: - - https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html -other_urls: - - http://info.borland.com/devsupport/interbase/opensource/IPL.html -ignorable_copyrights: - - Copyright (c) Borland/Inprise -ignorable_holders: - - Borland/Inprise -ignorable_authors: - - Borland Software Corp. - - InterBase Software Corp -ignorable_urls: - - http://info.borland.com/devsupport/interbase/opensource/IPL.html - - http://www.interbase.com/IPL.html diff --git a/src/licensedcode/data/licenses/iolib-exception-2.0.LICENSE b/src/licensedcode/data/licenses/iolib-exception-2.0.LICENSE index fe38f3c4f26..273ae478f01 100644 --- a/src/licensedcode/data/licenses/iolib-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/iolib-exception-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: iolib-exception-2.0 +short_name: GNU IO Library exception to GPL 2.0 +name: GNU IO Library exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-iolib-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This is part of libio/iostream, providing -*- C++ -*- input/output. + Copyright (C) 2000 Free Software Foundation + This file is part of the GNU IO Library. This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + As a special exception, if you link this library with files compiled with a + GNU compiler to produce an executable, this does not cause the resulting + executable to be covered by the GNU General Public License. This exception + does not however invalidate any other reasons why the executable file might + be covered by the GNU General Public License. +--- + As a special exception, if you link this library with files compiled with a GNU compiler to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does diff --git a/src/licensedcode/data/licenses/iolib-exception-2.0.yml b/src/licensedcode/data/licenses/iolib-exception-2.0.yml deleted file mode 100644 index 02e9928522a..00000000000 --- a/src/licensedcode/data/licenses/iolib-exception-2.0.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: iolib-exception-2.0 -short_name: GNU IO Library exception to GPL 2.0 -name: GNU IO Library exception to GPL 2.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: LicenseRef-scancode-iolib-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This is part of libio/iostream, providing -*- C++ -*- input/output. - Copyright (C) 2000 Free Software Foundation - This file is part of the GNU IO Library. This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - As a special exception, if you link this library with files compiled with a - GNU compiler to produce an executable, this does not cause the resulting - executable to be covered by the GNU General Public License. This exception - does not however invalidate any other reasons why the executable file might - be covered by the GNU General Public License. diff --git a/src/licensedcode/data/licenses/iozone.LICENSE b/src/licensedcode/data/licenses/iozone.LICENSE index de2b6344ca0..8435b9b5734 100644 --- a/src/licensedcode/data/licenses/iozone.LICENSE +++ b/src/licensedcode/data/licenses/iozone.LICENSE @@ -1,3 +1,13 @@ +--- +key: iozone +short_name: IOzone License +name: IOzone License +category: Proprietary Free +owner: William Norcott +homepage_url: http://www.iozone.org/docs/Iozone_License.txt +spdx_license_key: LicenseRef-scancode-iozone +--- + License to freely use and distribute this software is hereby granted by the author, subject to the condition that this copyright notice remains intact. The author retains the exclusive right to publish derivative works based on this diff --git a/src/licensedcode/data/licenses/iozone.yml b/src/licensedcode/data/licenses/iozone.yml deleted file mode 100644 index 21030b48e66..00000000000 --- a/src/licensedcode/data/licenses/iozone.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: iozone -short_name: IOzone License -name: IOzone License -category: Proprietary Free -owner: William Norcott -homepage_url: http://www.iozone.org/docs/Iozone_License.txt -spdx_license_key: LicenseRef-scancode-iozone diff --git a/src/licensedcode/data/licenses/ipa-font.LICENSE b/src/licensedcode/data/licenses/ipa-font.LICENSE index c725582a3f1..c61e562e6ce 100644 --- a/src/licensedcode/data/licenses/ipa-font.LICENSE +++ b/src/licensedcode/data/licenses/ipa-font.LICENSE @@ -1,3 +1,20 @@ +--- +key: ipa-font +short_name: IPA Font License 1.0 +name: IPA Font License Agreement v1.0 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://opensource.org/licenses/ipafont.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: IPA +text_urls: + - http://opensource.org/licenses/ipafont.html +osi_url: http://opensource.org/licenses/ipafont.html +other_urls: + - http://www.opensource.org/licenses/IPA + - https://opensource.org/licenses/IPA +--- + IPA Font License Agreement v1.0 The Licensor provides the Licensed Program (as defined in Article 1 below) under the terms of this license agreement ("Agreement"). Any use, reproduction or distribution of the Licensed Program, or any exercise of rights under this Agreement by a Recipient (as defined in Article 1 below) constitutes the Recipient's acceptance of this Agreement. diff --git a/src/licensedcode/data/licenses/ipa-font.yml b/src/licensedcode/data/licenses/ipa-font.yml deleted file mode 100644 index b5c99de50d4..00000000000 --- a/src/licensedcode/data/licenses/ipa-font.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: ipa-font -short_name: IPA Font License 1.0 -name: IPA Font License Agreement v1.0 -category: Copyleft Limited -owner: OSI - Open Source Initiative -homepage_url: http://opensource.org/licenses/ipafont.html -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: IPA -text_urls: - - http://opensource.org/licenses/ipafont.html -osi_url: http://opensource.org/licenses/ipafont.html -other_urls: - - http://www.opensource.org/licenses/IPA - - https://opensource.org/licenses/IPA diff --git a/src/licensedcode/data/licenses/iptc-2006.LICENSE b/src/licensedcode/data/licenses/iptc-2006.LICENSE index c539fe1d699..ac9d649be6e 100644 --- a/src/licensedcode/data/licenses/iptc-2006.LICENSE +++ b/src/licensedcode/data/licenses/iptc-2006.LICENSE @@ -1,3 +1,15 @@ +--- +key: iptc-2006 +short_name: IPTC License Agreement 2006 +name: License Agreement for International Press Telecommunications Council 2006 +category: Proprietary Free +owner: International Press Telecommunications Council +homepage_url: https://iptc.org/download/public/IPTC-SpecAndMaterialLicense.html +spdx_license_key: LicenseRef-scancode-iptc-2006 +ignorable_urls: + - http://www.iptc.org/ +--- + Non-Exclusive License Agreement for International Press Telecommunications Council Specifications and Related Documentation and Software diff --git a/src/licensedcode/data/licenses/iptc-2006.yml b/src/licensedcode/data/licenses/iptc-2006.yml deleted file mode 100644 index 567b528039c..00000000000 --- a/src/licensedcode/data/licenses/iptc-2006.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: iptc-2006 -short_name: IPTC License Agreement 2006 -name: License Agreement for International Press Telecommunications Council 2006 -category: Proprietary Free -owner: International Press Telecommunications Council -homepage_url: https://iptc.org/download/public/IPTC-SpecAndMaterialLicense.html -spdx_license_key: LicenseRef-scancode-iptc-2006 -ignorable_urls: - - http://www.iptc.org/ diff --git a/src/licensedcode/data/licenses/irfanview-eula.LICENSE b/src/licensedcode/data/licenses/irfanview-eula.LICENSE index 512f5af35f9..a6917bd9978 100644 --- a/src/licensedcode/data/licenses/irfanview-eula.LICENSE +++ b/src/licensedcode/data/licenses/irfanview-eula.LICENSE @@ -1,3 +1,22 @@ +--- +key: irfanview-eula +short_name: IrfanView EULA +name: IrfanView EULA +category: Commercial +owner: Irfan Skiljan +homepage_url: http://www.irfanview.com/eula.htm +spdx_license_key: LicenseRef-scancode-irfanview-eula +ignorable_copyrights: + - Copyright (c) 2016 by Irfan Skiljan, Wiener Neustadt, Austria +ignorable_holders: + - Irfan Skiljan, Wiener Neustadt, Austria +ignorable_urls: + - http://www.irfanview.com/ + - http://www.irfanview.net/ +ignorable_emails: + - irfanview@gmx.net +--- + IrfanView Software License Agreement. This is a legal agreement between you and IrfanView Software (Irfan Skiljan) covering your use of IrfanView (the "Software"). diff --git a/src/licensedcode/data/licenses/irfanview-eula.yml b/src/licensedcode/data/licenses/irfanview-eula.yml deleted file mode 100644 index 568d4ca2dff..00000000000 --- a/src/licensedcode/data/licenses/irfanview-eula.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: irfanview-eula -short_name: IrfanView EULA -name: IrfanView EULA -category: Commercial -owner: Irfan Skiljan -homepage_url: http://www.irfanview.com/eula.htm -spdx_license_key: LicenseRef-scancode-irfanview-eula -ignorable_copyrights: - - Copyright (c) 2016 by Irfan Skiljan, Wiener Neustadt, Austria -ignorable_holders: - - Irfan Skiljan, Wiener Neustadt, Austria -ignorable_urls: - - http://www.irfanview.com/ - - http://www.irfanview.net/ -ignorable_emails: - - irfanview@gmx.net diff --git a/src/licensedcode/data/licenses/isc.LICENSE b/src/licensedcode/data/licenses/isc.LICENSE index 8e5f8abaf5e..bfd217d4706 100644 --- a/src/licensedcode/data/licenses/isc.LICENSE +++ b/src/licensedcode/data/licenses/isc.LICENSE @@ -1,3 +1,28 @@ +--- +key: isc +short_name: ISC License +name: ISC License +category: Permissive +owner: ISC - Internet Systems Consortium +homepage_url: https://www.isc.org/licenses/ +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: ISC +text_urls: + - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2 + - http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license + - http://opensource.org/licenses/isc-license.txt + - https://www.isc.org/software/license +osi_url: http://opensource.org/licenses/isc-license.txt +other_urls: + - http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license + - http://www.isc.org/software/license + - http://www.opensource.org/licenses/ISC + - https://opensource.org/licenses/ISC + - https://www.isc.org/downloads/software-support-policy/isc-license/ + - https://www.isc.org/isc-license-1.0.html + - https://www.isc.org/software/license +--- + 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. @@ -8,4 +33,4 @@ 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. +THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/isc.yml b/src/licensedcode/data/licenses/isc.yml deleted file mode 100644 index 4c1a85665ac..00000000000 --- a/src/licensedcode/data/licenses/isc.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: isc -short_name: ISC License -name: ISC License -category: Permissive -owner: ISC - Internet Systems Consortium -homepage_url: https://www.isc.org/licenses/ -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: ISC -text_urls: - - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2 - - http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license - - http://opensource.org/licenses/isc-license.txt - - https://www.isc.org/software/license -osi_url: http://opensource.org/licenses/isc-license.txt -other_urls: - - http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license - - http://www.isc.org/software/license - - http://www.opensource.org/licenses/ISC - - https://opensource.org/licenses/ISC - - https://www.isc.org/downloads/software-support-policy/isc-license/ - - https://www.isc.org/isc-license-1.0.html - - https://www.isc.org/software/license diff --git a/src/licensedcode/data/licenses/iso-14496-10.LICENSE b/src/licensedcode/data/licenses/iso-14496-10.LICENSE index d84c14a87b0..c208c46e648 100644 --- a/src/licensedcode/data/licenses/iso-14496-10.LICENSE +++ b/src/licensedcode/data/licenses/iso-14496-10.LICENSE @@ -1,3 +1,12 @@ +--- +key: iso-14496-10 +short_name: ISO 14496-10 +name: ISO 14496-10 +category: Permissive +owner: ISO - International Organization for Standardization +spdx_license_key: LicenseRef-scancode-iso-14496-10 +--- + Software Copyright Licensing Disclaimer This software module was originally developed by contributors to the @@ -13,4 +22,4 @@ rights to modify and use the code for their own purposes, and to assign or donate the code to third-parties. This copyright notice must be included in all copies or derivative -works. +works. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/iso-14496-10.yml b/src/licensedcode/data/licenses/iso-14496-10.yml deleted file mode 100644 index 9d8a10ec017..00000000000 --- a/src/licensedcode/data/licenses/iso-14496-10.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: iso-14496-10 -short_name: ISO 14496-10 -name: ISO 14496-10 -category: Permissive -owner: ISO - International Organization for Standardization -spdx_license_key: LicenseRef-scancode-iso-14496-10 diff --git a/src/licensedcode/data/licenses/iso-8879.LICENSE b/src/licensedcode/data/licenses/iso-8879.LICENSE index d8a451d3ad1..e2173f7a436 100644 --- a/src/licensedcode/data/licenses/iso-8879.LICENSE +++ b/src/licensedcode/data/licenses/iso-8879.LICENSE @@ -1,3 +1,12 @@ +--- +key: iso-8879 +short_name: ISO 8879 +name: ISO 8879 +category: Permissive +owner: ISO - International Organization for Standardization +spdx_license_key: LicenseRef-scancode-iso-8879 +--- + Permission to copy in any form is granted for use with conforming SGML systems and applications as defined in -ISO 8879, provided this notice is included in all copies. +ISO 8879, provided this notice is included in all copies. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/iso-8879.yml b/src/licensedcode/data/licenses/iso-8879.yml deleted file mode 100644 index ec61ba2eb4e..00000000000 --- a/src/licensedcode/data/licenses/iso-8879.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: iso-8879 -short_name: ISO 8879 -name: ISO 8879 -category: Permissive -owner: ISO - International Organization for Standardization -spdx_license_key: LicenseRef-scancode-iso-8879 diff --git a/src/licensedcode/data/licenses/iso-recorder.LICENSE b/src/licensedcode/data/licenses/iso-recorder.LICENSE index ef1f72e7c6c..a865aae1400 100644 --- a/src/licensedcode/data/licenses/iso-recorder.LICENSE +++ b/src/licensedcode/data/licenses/iso-recorder.LICENSE @@ -1,3 +1,15 @@ +--- +key: iso-recorder +short_name: ISO Recorder License +name: ISO Recorder License +category: Proprietary Free +owner: Alex Feinman +homepage_url: http://isorecorder.alexfeinman.com/v1.htm +spdx_license_key: LicenseRef-scancode-iso-recorder +ignorable_emails: + - isorecorder@alexfeinman.com +--- + This utility is free for non-commercial (personal) use. Other types of use should be discussed with the author (a very reasonable person) - see the contact information section. Author shall not be liable for any damage resulting diff --git a/src/licensedcode/data/licenses/iso-recorder.yml b/src/licensedcode/data/licenses/iso-recorder.yml deleted file mode 100644 index 7716b52dd55..00000000000 --- a/src/licensedcode/data/licenses/iso-recorder.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: iso-recorder -short_name: ISO Recorder License -name: ISO Recorder License -category: Proprietary Free -owner: Alex Feinman -homepage_url: http://isorecorder.alexfeinman.com/v1.htm -spdx_license_key: LicenseRef-scancode-iso-recorder -ignorable_emails: - - isorecorder@alexfeinman.com diff --git a/src/licensedcode/data/licenses/isotope-cla.LICENSE b/src/licensedcode/data/licenses/isotope-cla.LICENSE index 78e7ba81032..6c87ed108c4 100644 --- a/src/licensedcode/data/licenses/isotope-cla.LICENSE +++ b/src/licensedcode/data/licenses/isotope-cla.LICENSE @@ -1,3 +1,13 @@ +--- +key: isotope-cla +short_name: Isotope Commercial License Agreement +name: Isotope Commercial License Agreement +category: Commercial +owner: Metafizzy +homepage_url: http://isotope.metafizzy.co/license.html +spdx_license_key: LicenseRef-scancode-isotope-cla +--- + This Commercial License Agreement is a binding legal agreement between you and Metafizzy LLC (Metafizzy). By installing, copying, or using Isotope (the Software), you agree to be bound by these terms of this Agreement. Grant of License diff --git a/src/licensedcode/data/licenses/isotope-cla.yml b/src/licensedcode/data/licenses/isotope-cla.yml deleted file mode 100644 index cfc72741d66..00000000000 --- a/src/licensedcode/data/licenses/isotope-cla.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: isotope-cla -short_name: Isotope Commercial License Agreement -name: Isotope Commercial License Agreement -category: Commercial -owner: Metafizzy -homepage_url: http://isotope.metafizzy.co/license.html -spdx_license_key: LicenseRef-scancode-isotope-cla diff --git a/src/licensedcode/data/licenses/issl-2018.LICENSE b/src/licensedcode/data/licenses/issl-2018.LICENSE index 1d05e4f0ce4..33e48fff544 100644 --- a/src/licensedcode/data/licenses/issl-2018.LICENSE +++ b/src/licensedcode/data/licenses/issl-2018.LICENSE @@ -1,3 +1,20 @@ +--- +key: issl-2018 +short_name: ISSL 2018 +name: Intel Simplified Software License (Version April 2018) +category: Free Restricted +owner: Intel Corporation +homepage_url: https://software.intel.com/en-us/license/intel-simplified-software-license +spdx_license_key: LicenseRef-scancode-issl-2018 +faq_url: https://software.intel.com/en-us/mkl/license-faq +other_urls: + - https://software.intel.com/en-us/articles/end-user-license-agreement +ignorable_copyrights: + - Copyright (c) 2018 Intel Corporation +ignorable_holders: + - Intel Corporation +--- + Intel Simplified Software License (Version April 2018) Copyright (c) 2018 Intel Corporation. diff --git a/src/licensedcode/data/licenses/issl-2018.yml b/src/licensedcode/data/licenses/issl-2018.yml deleted file mode 100644 index 69f4118e94d..00000000000 --- a/src/licensedcode/data/licenses/issl-2018.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: issl-2018 -short_name: ISSL 2018 -name: Intel Simplified Software License (Version April 2018) -category: Free Restricted -owner: Intel Corporation -homepage_url: https://software.intel.com/en-us/license/intel-simplified-software-license -spdx_license_key: LicenseRef-scancode-issl-2018 -faq_url: https://software.intel.com/en-us/mkl/license-faq -other_urls: - - https://software.intel.com/en-us/articles/end-user-license-agreement -ignorable_copyrights: - - Copyright (c) 2018 Intel Corporation -ignorable_holders: - - Intel Corporation diff --git a/src/licensedcode/data/licenses/itc-eula.LICENSE b/src/licensedcode/data/licenses/itc-eula.LICENSE index effa687a51c..0ce643a20a8 100644 --- a/src/licensedcode/data/licenses/itc-eula.LICENSE +++ b/src/licensedcode/data/licenses/itc-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: itc-eula +short_name: ITC EULA +name: ITC End User License Agreement +category: Commercial +owner: ITC +homepage_url: https://web.archive.org/web/19980626184147/http://www.itcfonts.com/itc/license.html +spdx_license_key: LicenseRef-scancode-itc-eula +ignorable_emails: + - info@itcfonts.com +--- + This Agreement constitutes the complete agreement between you and International Typeface Corporation (ITC) (except for multi-CPU licenses, where another document supplements this one and outlines and confirms the scope of the your upgraded license). If you do not agree to the terms stated in this Agreement, you may obtain a full refund by contacting ITC at the address below within 15 days with your proof of payment. International Typeface Corporation diff --git a/src/licensedcode/data/licenses/itc-eula.yml b/src/licensedcode/data/licenses/itc-eula.yml deleted file mode 100644 index bda92784a68..00000000000 --- a/src/licensedcode/data/licenses/itc-eula.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: itc-eula -short_name: ITC EULA -name: ITC End User License Agreement -category: Commercial -owner: ITC -homepage_url: https://web.archive.org/web/19980626184147/http://www.itcfonts.com/itc/license.html -spdx_license_key: LicenseRef-scancode-itc-eula -ignorable_emails: - - info@itcfonts.com diff --git a/src/licensedcode/data/licenses/itu-t-gpl.LICENSE b/src/licensedcode/data/licenses/itu-t-gpl.LICENSE index 38ab8bd4a61..b074d7dc447 100644 --- a/src/licensedcode/data/licenses/itu-t-gpl.LICENSE +++ b/src/licensedcode/data/licenses/itu-t-gpl.LICENSE @@ -1,3 +1,15 @@ +--- +key: itu-t-gpl +short_name: ITU-T General Public License +name: ITU-T Software Tools General Public License +category: Copyleft +owner: ITU - International Telecommunications Union +homepage_url: https://github.com/openitu/STL/blob/dev/LICENSE.md +spdx_license_key: LicenseRef-scancode-itu-t-gpl +ignorable_authors: + - the User's Group +--- + ITU-T SOFTWARE TOOLS' GENERAL PUBLIC LICENSE === diff --git a/src/licensedcode/data/licenses/itu-t-gpl.yml b/src/licensedcode/data/licenses/itu-t-gpl.yml deleted file mode 100644 index bc3ea2960fa..00000000000 --- a/src/licensedcode/data/licenses/itu-t-gpl.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: itu-t-gpl -short_name: ITU-T General Public License -name: ITU-T Software Tools General Public License -category: Copyleft -owner: ITU - International Telecommunications Union -homepage_url: https://github.com/openitu/STL/blob/dev/LICENSE.md -spdx_license_key: LicenseRef-scancode-itu-t-gpl -ignorable_authors: - - the User's Group diff --git a/src/licensedcode/data/licenses/itu-t.LICENSE b/src/licensedcode/data/licenses/itu-t.LICENSE index 18867d7b37b..ec1cd5d6171 100644 --- a/src/licensedcode/data/licenses/itu-t.LICENSE +++ b/src/licensedcode/data/licenses/itu-t.LICENSE @@ -1,3 +1,14 @@ +--- +key: itu-t +short_name: ITU-T License +name: ITU-T License +category: Free Restricted +owner: ITU - International Telecommunications Union +spdx_license_key: LicenseRef-scancode-itu-t +ignorable_urls: + - http://www.itu.int/ipr +--- + Software(1) License Agreement ITU hereby grants you a worldwide, non-exclusive, free license to reproduce, modify, and use the Software for the limited purpose of implementing an ITU-T Recommendation. diff --git a/src/licensedcode/data/licenses/itu-t.yml b/src/licensedcode/data/licenses/itu-t.yml deleted file mode 100644 index 152413d9bde..00000000000 --- a/src/licensedcode/data/licenses/itu-t.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: itu-t -short_name: ITU-T License -name: ITU-T License -category: Free Restricted -owner: ITU - International Telecommunications Union -spdx_license_key: LicenseRef-scancode-itu-t -ignorable_urls: - - http://www.itu.int/ipr diff --git a/src/licensedcode/data/licenses/itu.LICENSE b/src/licensedcode/data/licenses/itu.LICENSE index 9838bffe956..05b77e8916a 100644 --- a/src/licensedcode/data/licenses/itu.LICENSE +++ b/src/licensedcode/data/licenses/itu.LICENSE @@ -1,3 +1,21 @@ +--- +key: itu +short_name: ITU License +name: ITU License +category: Permissive +owner: ITU - International Telecommunications Union +homepage_url: http://www.itu.int/ +spdx_license_key: LicenseRef-scancode-itu +text_urls: + - http://www.itu.int/ +ignorable_copyrights: + - Copyright, International Telecommunications Union, Geneva +ignorable_holders: + - International Telecommunications Union, Geneva +ignorable_urls: + - http://www.itu.int/ +--- + COPYRIGHT AND WARRANTY INFORMATION Copyright , International Telecommunications Union, Geneva DISCLAIMER OF WARRANTY diff --git a/src/licensedcode/data/licenses/itu.yml b/src/licensedcode/data/licenses/itu.yml deleted file mode 100644 index b5713c1c3aa..00000000000 --- a/src/licensedcode/data/licenses/itu.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: itu -short_name: ITU License -name: ITU License -category: Permissive -owner: ITU - International Telecommunications Union -homepage_url: http://www.itu.int/ -spdx_license_key: LicenseRef-scancode-itu -text_urls: - - http://www.itu.int/ -ignorable_copyrights: - - Copyright, International Telecommunications Union, Geneva -ignorable_holders: - - International Telecommunications Union, Geneva -ignorable_urls: - - http://www.itu.int/ diff --git a/src/licensedcode/data/licenses/itunes.LICENSE b/src/licensedcode/data/licenses/itunes.LICENSE index 217f1f400ec..19f46a391bb 100644 --- a/src/licensedcode/data/licenses/itunes.LICENSE +++ b/src/licensedcode/data/licenses/itunes.LICENSE @@ -1,3 +1,17 @@ +--- +key: itunes +short_name: Apple iTunes License +name: Apple iTunes License +category: Proprietary Free +owner: Apple +homepage_url: http://images.apple.com/legal/sla/docs/itunes.pdf +spdx_license_key: LicenseRef-scancode-itunes +text_urls: + - http://images.apple.com/legal/sla/docs/itunes.pdf +ignorable_emails: + - sales@kerbango.com +--- + ENGLISH APPLE INC. diff --git a/src/licensedcode/data/licenses/itunes.yml b/src/licensedcode/data/licenses/itunes.yml deleted file mode 100644 index dfdefb488b4..00000000000 --- a/src/licensedcode/data/licenses/itunes.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: itunes -short_name: Apple iTunes License -name: Apple iTunes License -category: Proprietary Free -owner: Apple -homepage_url: http://images.apple.com/legal/sla/docs/itunes.pdf -spdx_license_key: LicenseRef-scancode-itunes -text_urls: - - http://images.apple.com/legal/sla/docs/itunes.pdf -ignorable_emails: - - sales@kerbango.com diff --git a/src/licensedcode/data/licenses/ja-sig.LICENSE b/src/licensedcode/data/licenses/ja-sig.LICENSE index 5000b07b55c..87a2d6cb902 100644 --- a/src/licensedcode/data/licenses/ja-sig.LICENSE +++ b/src/licensedcode/data/licenses/ja-sig.LICENSE @@ -1,3 +1,21 @@ +--- +key: ja-sig +short_name: JA-SiG License +name: JA-SiG License +category: Permissive +owner: JA-SIG Collaborative +homepage_url: http://web.archive.org/web/20040402030132/http://uportal.org/license.html +notes: | + this is an old and rare license, replaced since by an Apache 2.0. This is a + BSD variant. See original at + http://web.archive.org/web/20040402030132/http://uportal.org/license.html +spdx_license_key: LicenseRef-scancode-ja-sig +ignorable_authors: + - the JA-SIG Collaborative (http://www.ja-sig.org/) +ignorable_urls: + - http://www.ja-sig.org/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,5 +40,4 @@ 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. - +advised of the possibility of such damage. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ja-sig.yml b/src/licensedcode/data/licenses/ja-sig.yml deleted file mode 100644 index aab2756a1d5..00000000000 --- a/src/licensedcode/data/licenses/ja-sig.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ja-sig -short_name: JA-SiG License -name: JA-SiG License -category: Permissive -owner: JA-SIG Collaborative -homepage_url: http://web.archive.org/web/20040402030132/http://uportal.org/license.html -notes: | - this is an old and rare license, replaced since by an Apache 2.0. This is a - BSD variant. See original at - http://web.archive.org/web/20040402030132/http://uportal.org/license.html -spdx_license_key: LicenseRef-scancode-ja-sig -ignorable_authors: - - the JA-SIG Collaborative (http://www.ja-sig.org/) -ignorable_urls: - - http://www.ja-sig.org/ diff --git a/src/licensedcode/data/licenses/jahia-1.3.1.LICENSE b/src/licensedcode/data/licenses/jahia-1.3.1.LICENSE index 41dcd3058dd..76627bceb03 100644 --- a/src/licensedcode/data/licenses/jahia-1.3.1.LICENSE +++ b/src/licensedcode/data/licenses/jahia-1.3.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: jahia-1.3.1 +short_name: JCSL 1.3.1 +name: Jahia Collaborative Source License v1.3.1 +category: Copyleft +owner: JAHIA Community +homepage_url: http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing +spdx_license_key: LicenseRef-scancode-jahia-1.3.1 +text_urls: + - http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing +faq_url: http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing +ignorable_urls: + - http://www.collaborativesource.org/ + - http://www.jahia.org/ + - http://www.opensource.org/ +--- + ***** Jahia Collaborative Source License ***** * Recitals JAHIA COLLABORATVE SOURCE LICENSE diff --git a/src/licensedcode/data/licenses/jahia-1.3.1.yml b/src/licensedcode/data/licenses/jahia-1.3.1.yml deleted file mode 100644 index e7d89227591..00000000000 --- a/src/licensedcode/data/licenses/jahia-1.3.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: jahia-1.3.1 -short_name: JCSL 1.3.1 -name: Jahia Collaborative Source License v1.3.1 -category: Copyleft -owner: JAHIA Community -homepage_url: http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing -spdx_license_key: LicenseRef-scancode-jahia-1.3.1 -text_urls: - - http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing -faq_url: http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing -ignorable_urls: - - http://www.collaborativesource.org/ - - http://www.jahia.org/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/licenses/jam-stapl.LICENSE b/src/licensedcode/data/licenses/jam-stapl.LICENSE index 6a7120ebbb7..37236ecf5a3 100644 --- a/src/licensedcode/data/licenses/jam-stapl.LICENSE +++ b/src/licensedcode/data/licenses/jam-stapl.LICENSE @@ -1,3 +1,13 @@ +--- +key: jam-stapl +short_name: Jam STAPL Software License +name: Jam STAPL Software License +category: Free Restricted +owner: Altera Corporation +homepage_url: https://www.intel.com/content/www/us/en/programmable/support/support-resources/download/licensing/lic-jam.html +spdx_license_key: LicenseRef-scancode-jam-stapl +--- + Jam STAPL Software License SOFTWARE DISTRIBUTION AGREEMENT diff --git a/src/licensedcode/data/licenses/jam-stapl.yml b/src/licensedcode/data/licenses/jam-stapl.yml deleted file mode 100644 index 81079ad6706..00000000000 --- a/src/licensedcode/data/licenses/jam-stapl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: jam-stapl -short_name: Jam STAPL Software License -name: Jam STAPL Software License -category: Free Restricted -owner: Altera Corporation -homepage_url: https://www.intel.com/content/www/us/en/programmable/support/support-resources/download/licensing/lic-jam.html -spdx_license_key: LicenseRef-scancode-jam-stapl diff --git a/src/licensedcode/data/licenses/jam.LICENSE b/src/licensedcode/data/licenses/jam.LICENSE index d8bcf1c69d5..fc79399d608 100644 --- a/src/licensedcode/data/licenses/jam.LICENSE +++ b/src/licensedcode/data/licenses/jam.LICENSE @@ -1,3 +1,17 @@ +--- +key: jam +short_name: Jam License +name: Jam License +category: Permissive +owner: Perforce +spdx_license_key: Jam +other_spdx_license_keys: + - LicenseRef-scancode-jam +other_urls: + - https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html + - https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README +--- + License is hereby granted to use this software and distribute it freely, as long as this copyright notice is retained and modifications are clearly marked. diff --git a/src/licensedcode/data/licenses/jam.yml b/src/licensedcode/data/licenses/jam.yml deleted file mode 100644 index 3967a12a1a4..00000000000 --- a/src/licensedcode/data/licenses/jam.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: jam -short_name: Jam License -name: Jam License -category: Permissive -owner: Perforce -spdx_license_key: Jam -other_spdx_license_keys: - - LicenseRef-scancode-jam -other_urls: - - https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html - - https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README diff --git a/src/licensedcode/data/licenses/jamon.LICENSE b/src/licensedcode/data/licenses/jamon.LICENSE index bbf90c127f0..61207272293 100644 --- a/src/licensedcode/data/licenses/jamon.LICENSE +++ b/src/licensedcode/data/licenses/jamon.LICENSE @@ -1,3 +1,20 @@ +--- +key: jamon +short_name: JAMon License +name: JAMon License +category: Free Restricted +owner: Steve Souza +homepage_url: http://jamonapi.sourceforge.net/JAMonLicense.html +spdx_license_key: LicenseRef-scancode-jamon +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2002, Steve Souza (admin@jamonapi.com) +ignorable_holders: + - Steve Souza +ignorable_emails: + - admin@jamonapi.com +--- + JAMon License Agreement Copyright (c) 2002, Steve Souza (admin@jamonapi.com) diff --git a/src/licensedcode/data/licenses/jamon.yml b/src/licensedcode/data/licenses/jamon.yml deleted file mode 100644 index 785c64d90ba..00000000000 --- a/src/licensedcode/data/licenses/jamon.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: jamon -short_name: JAMon License -name: JAMon License -category: Free Restricted -owner: Steve Souza -homepage_url: http://jamonapi.sourceforge.net/JAMonLicense.html -spdx_license_key: LicenseRef-scancode-jamon -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2002, Steve Souza (admin@jamonapi.com) -ignorable_holders: - - Steve Souza -ignorable_emails: - - admin@jamonapi.com diff --git a/src/licensedcode/data/licenses/jason-mayes.LICENSE b/src/licensedcode/data/licenses/jason-mayes.LICENSE index 3f032265fbd..940e157081b 100644 --- a/src/licensedcode/data/licenses/jason-mayes.LICENSE +++ b/src/licensedcode/data/licenses/jason-mayes.LICENSE @@ -1,7 +1,23 @@ +--- +key: jason-mayes +short_name: Jason Mayes License +name: Jason Mayes License +category: Permissive +owner: Jason Mayes +spdx_license_key: LicenseRef-scancode-jason-mayes +faq_url: http://www.jasonmayes.com/projects/twitterApi/ +minimum_coverage: 90 +ignorable_authors: + - Jason Mayes +ignorable_urls: + - http://www.jasonmayes.com/ + - http://www.jasonmayes.com/projects/twitterApi/ +--- + #### Twitter Post Fetcher v10.0 #### Coded by Jason Mayes 2013. A present to all the developers out there. www.jasonmayes.com Please keep this disclaimer with my code if you use it. Thanks. :) Got feedback or questions, ask here: http://www.jasonmayes.com/projects/twitterApi/ -Updates will be posted to this site. +Updates will be posted to this site. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jason-mayes.yml b/src/licensedcode/data/licenses/jason-mayes.yml deleted file mode 100644 index 3bb7a8139d1..00000000000 --- a/src/licensedcode/data/licenses/jason-mayes.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: jason-mayes -short_name: Jason Mayes License -name: Jason Mayes License -category: Permissive -owner: Jason Mayes -spdx_license_key: LicenseRef-scancode-jason-mayes -faq_url: http://www.jasonmayes.com/projects/twitterApi/ -minimum_coverage: 90 -ignorable_authors: - - Jason Mayes -ignorable_urls: - - http://www.jasonmayes.com/ - - http://www.jasonmayes.com/projects/twitterApi/ diff --git a/src/licensedcode/data/licenses/jasper-1.0.LICENSE b/src/licensedcode/data/licenses/jasper-1.0.LICENSE index 7a4a9268ce5..cb06973ea98 100644 --- a/src/licensedcode/data/licenses/jasper-1.0.LICENSE +++ b/src/licensedcode/data/licenses/jasper-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: jasper-1.0 +short_name: Jasper 1.0 +name: Jasper Reports License 1.0 +category: Permissive +owner: JasperSoft +spdx_license_key: LicenseRef-scancode-jasper-1.0 +ignorable_copyrights: + - Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com) +ignorable_holders: + - Teodor Danciu +ignorable_authors: + - Teodor Danciu (http://jasperreports.sourceforge.net) + - Teodor Danciu http://jasperreports.sourceforge.net +ignorable_urls: + - http://jasperreports.sourceforge.net/ +ignorable_emails: + - teodord@hotmail.com +--- + Jasper Reports Jasperreports Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com). All rights reserved. This product included software developed by Teodor Danciu http://jasperreports.sourceforge.net. For license details, please see the file classes/jasper_license.txt diff --git a/src/licensedcode/data/licenses/jasper-1.0.yml b/src/licensedcode/data/licenses/jasper-1.0.yml deleted file mode 100644 index 84682de9800..00000000000 --- a/src/licensedcode/data/licenses/jasper-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: jasper-1.0 -short_name: Jasper 1.0 -name: Jasper Reports License 1.0 -category: Permissive -owner: JasperSoft -spdx_license_key: LicenseRef-scancode-jasper-1.0 -ignorable_copyrights: - - Copyright (c) 2001-2003 Teodor Danciu (teodord@hotmail.com) -ignorable_holders: - - Teodor Danciu -ignorable_authors: - - Teodor Danciu (http://jasperreports.sourceforge.net) - - Teodor Danciu http://jasperreports.sourceforge.net -ignorable_urls: - - http://jasperreports.sourceforge.net/ -ignorable_emails: - - teodord@hotmail.com diff --git a/src/licensedcode/data/licenses/jasper-2.0.LICENSE b/src/licensedcode/data/licenses/jasper-2.0.LICENSE index 4b3d3728dc6..b4fa9ab8887 100644 --- a/src/licensedcode/data/licenses/jasper-2.0.LICENSE +++ b/src/licensedcode/data/licenses/jasper-2.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: jasper-2.0 +short_name: JasPer 2.0 +name: JasPer License 2.0 +category: Permissive +owner: JasPer Project +homepage_url: http://www.ece.uvic.ca/~frodo/jasper/LICENSE +spdx_license_key: JasPer-2.0 +other_urls: + - http://www.ece.uvic.ca/~mdadams/jasper/LICENSE +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1999-2000 Image Power, Inc. + - Copyright (c) 1999-2000 The University of British Columbia + - Copyright (c) 2001-2006 Michael David Adams +ignorable_holders: + - Image Power, Inc. + - Michael David Adams + - The University of British Columbia +--- + JasPer License Version 2.0 Copyright (c) 2001-2006 Michael David Adams diff --git a/src/licensedcode/data/licenses/jasper-2.0.yml b/src/licensedcode/data/licenses/jasper-2.0.yml deleted file mode 100644 index d1625bdf4de..00000000000 --- a/src/licensedcode/data/licenses/jasper-2.0.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: jasper-2.0 -short_name: JasPer 2.0 -name: JasPer License 2.0 -category: Permissive -owner: JasPer Project -homepage_url: http://www.ece.uvic.ca/~frodo/jasper/LICENSE -spdx_license_key: JasPer-2.0 -other_urls: - - http://www.ece.uvic.ca/~mdadams/jasper/LICENSE -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1999-2000 Image Power, Inc. - - Copyright (c) 1999-2000 The University of British Columbia - - Copyright (c) 2001-2006 Michael David Adams -ignorable_holders: - - Image Power, Inc. - - Michael David Adams - - The University of British Columbia diff --git a/src/licensedcode/data/licenses/java-app-stub.LICENSE b/src/licensedcode/data/licenses/java-app-stub.LICENSE index 5427dead2b6..f0ddf7a77a0 100644 --- a/src/licensedcode/data/licenses/java-app-stub.LICENSE +++ b/src/licensedcode/data/licenses/java-app-stub.LICENSE @@ -1,3 +1,16 @@ +--- +key: java-app-stub +short_name: Java App Stub License +name: Java Application Stub Binary Module License +category: Permissive +owner: Apple +spdx_license_key: LicenseRef-scancode-java-app-stub +ignorable_copyrights: + - Copyright (c) Apple Inc. +ignorable_holders: + - Apple Inc. +--- + Java Application Stub Binary Module License Copyright (c) Apple Inc. All rights reserved. diff --git a/src/licensedcode/data/licenses/java-app-stub.yml b/src/licensedcode/data/licenses/java-app-stub.yml deleted file mode 100644 index 739fb61fa44..00000000000 --- a/src/licensedcode/data/licenses/java-app-stub.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: java-app-stub -short_name: Java App Stub License -name: Java Application Stub Binary Module License -category: Permissive -owner: Apple -spdx_license_key: LicenseRef-scancode-java-app-stub -ignorable_copyrights: - - Copyright (c) Apple Inc. -ignorable_holders: - - Apple Inc. diff --git a/src/licensedcode/data/licenses/java-research-1.5.LICENSE b/src/licensedcode/data/licenses/java-research-1.5.LICENSE index 9bd2ad98a0a..6ef28b8ab42 100644 --- a/src/licensedcode/data/licenses/java-research-1.5.LICENSE +++ b/src/licensedcode/data/licenses/java-research-1.5.LICENSE @@ -1,3 +1,16 @@ +--- +key: java-research-1.5 +short_name: Java Research License 1.5 +name: Java Research License Version 1.5 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://download.java.net/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar?q=download/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar +spdx_license_key: LicenseRef-scancode-java-research-1.5 +ignorable_urls: + - http://www.sun.com/its + - http://www.sun.com/policies/trademarks +--- + JAVA RESEARCH LICENSE Version 1.5 I. DEFINITIONS. diff --git a/src/licensedcode/data/licenses/java-research-1.5.yml b/src/licensedcode/data/licenses/java-research-1.5.yml deleted file mode 100644 index 9ccb013e377..00000000000 --- a/src/licensedcode/data/licenses/java-research-1.5.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: java-research-1.5 -short_name: Java Research License 1.5 -name: Java Research License Version 1.5 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://download.java.net/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar?q=download/jdk6/6u3/promoted/b05/jdk-6u3-fcs-src-b05-jrl-24_sep_2007.jar -spdx_license_key: LicenseRef-scancode-java-research-1.5 -ignorable_urls: - - http://www.sun.com/its - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/java-research-1.6.LICENSE b/src/licensedcode/data/licenses/java-research-1.6.LICENSE index 00602cf386b..5e1eaecf1d8 100644 --- a/src/licensedcode/data/licenses/java-research-1.6.LICENSE +++ b/src/licensedcode/data/licenses/java-research-1.6.LICENSE @@ -1,3 +1,16 @@ +--- +key: java-research-1.6 +short_name: Java Research License 1.6 +name: Java Research License Version 1.6 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://web.archive.org/web/20070112020225/http://www.java.net/jrl.csp +spdx_license_key: LicenseRef-scancode-java-research-1.6 +ignorable_urls: + - http://www.sun.com/its + - http://www.sun.com/policies/trademarks +--- + JAVA RESEARCH LICENSE Version 1.6 I. DEFINITIONS. @@ -165,4 +178,4 @@ In no event shall this License be construed against the drafter. 5. Export Control. As further described at http://www.sun.com/its, you agree to comply with the U.S. export controls and trade laws of other countries that apply to Technology -and Modifications. +and Modifications. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/java-research-1.6.yml b/src/licensedcode/data/licenses/java-research-1.6.yml deleted file mode 100644 index 8f263355d6e..00000000000 --- a/src/licensedcode/data/licenses/java-research-1.6.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: java-research-1.6 -short_name: Java Research License 1.6 -name: Java Research License Version 1.6 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://web.archive.org/web/20070112020225/http://www.java.net/jrl.csp -spdx_license_key: LicenseRef-scancode-java-research-1.6 -ignorable_urls: - - http://www.sun.com/its - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/javascript-exception-2.0.LICENSE b/src/licensedcode/data/licenses/javascript-exception-2.0.LICENSE index 591fc875616..b776349e1de 100644 --- a/src/licensedcode/data/licenses/javascript-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/javascript-exception-2.0.LICENSE @@ -1,3 +1,37 @@ +--- +key: javascript-exception-2.0 +short_name: Javascript exception to GPL 2.0 +name: Javascript exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-javascript-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception to GPL, any HTML file which merely makes function + calls to this code, and for that purpose includes it by reference shall be + deemed a separate work for copyright law purposes. In addition, the + copyright holders of this code give you permission to combine this code + with free software libraries that are released under the GNU LGPL. You may + copy and distribute such a system following the terms of the GNU GPL for + this code and the LGPL for the libraries. If you modify this code, you may + extend this exception to your version of the code, but you are not + obligated to do so. If you do not wish to do so, delete this exception + statement from your version. +--- + As a special exception to GPL, any HTML file which merely makes function calls to this code, and for that purpose includes it by reference shall be deemed a separate work for copyright law purposes. In addition, the copyright holders of diff --git a/src/licensedcode/data/licenses/javascript-exception-2.0.yml b/src/licensedcode/data/licenses/javascript-exception-2.0.yml deleted file mode 100644 index e1ddf7117b7..00000000000 --- a/src/licensedcode/data/licenses/javascript-exception-2.0.yml +++ /dev/null @@ -1,31 +0,0 @@ -key: javascript-exception-2.0 -short_name: Javascript exception to GPL 2.0 -name: Javascript exception to GPL 2.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: LicenseRef-scancode-javascript-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - As a special exception to GPL, any HTML file which merely makes function - calls to this code, and for that purpose includes it by reference shall be - deemed a separate work for copyright law purposes. In addition, the - copyright holders of this code give you permission to combine this code - with free software libraries that are released under the GNU LGPL. You may - copy and distribute such a system following the terms of the GNU GPL for - this code and the LGPL for the libraries. If you modify this code, you may - extend this exception to your version of the code, but you are not - obligated to do so. If you do not wish to do so, delete this exception - statement from your version. diff --git a/src/licensedcode/data/licenses/jboss-eula.LICENSE b/src/licensedcode/data/licenses/jboss-eula.LICENSE index 7ec08795e5a..1a5133469b5 100644 --- a/src/licensedcode/data/licenses/jboss-eula.LICENSE +++ b/src/licensedcode/data/licenses/jboss-eula.LICENSE @@ -1,3 +1,24 @@ +--- +key: jboss-eula +short_name: JBoss EULA +name: JBoss EULA +category: Proprietary Free +owner: JBoss Community +spdx_license_key: LicenseRef-scancode-jboss-eula +text_urls: + - http://repository.jboss.org/licenses/jbossorg-eula.txt +ignorable_copyrights: + - Copyright 2006 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +ignorable_urls: + - http://www.jboss.com/company/logos + - http://www.jboss.org/ + - http://www.opensource.org/licenses/index.php + - http://www.redhat.com/about/corporate/trademark + - http://www.redhat.com/licenses +--- + LICENSE AGREEMENT JBOSS(r) diff --git a/src/licensedcode/data/licenses/jboss-eula.yml b/src/licensedcode/data/licenses/jboss-eula.yml deleted file mode 100644 index 2eebfa2f53f..00000000000 --- a/src/licensedcode/data/licenses/jboss-eula.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: jboss-eula -short_name: JBoss EULA -name: JBoss EULA -category: Proprietary Free -owner: JBoss Community -spdx_license_key: LicenseRef-scancode-jboss-eula -text_urls: - - http://repository.jboss.org/licenses/jbossorg-eula.txt -ignorable_copyrights: - - Copyright 2006 Red Hat, Inc. -ignorable_holders: - - Red Hat, Inc. -ignorable_urls: - - http://www.jboss.com/company/logos - - http://www.jboss.org/ - - http://www.opensource.org/licenses/index.php - - http://www.redhat.com/about/corporate/trademark - - http://www.redhat.com/licenses diff --git a/src/licensedcode/data/licenses/jdbm-1.00.LICENSE b/src/licensedcode/data/licenses/jdbm-1.00.LICENSE index 802b9789326..b27e08fdd9a 100644 --- a/src/licensedcode/data/licenses/jdbm-1.00.LICENSE +++ b/src/licensedcode/data/licenses/jdbm-1.00.LICENSE @@ -1,3 +1,17 @@ +--- +key: jdbm-1.00 +short_name: JDBM License v1.00 +name: JDBM License v1.00 +category: Permissive +owner: JovalCM +homepage_url: https://github.com/joval/jdbm/blob/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-jdbm-1.00 +ignorable_urls: + - http://jdbm.sourceforge.net/ +ignorable_emails: + - cg@cdegroot.com +--- + JDBM LICENSE v1.00 Redistribution and use of this software and associated documentation diff --git a/src/licensedcode/data/licenses/jdbm-1.00.yml b/src/licensedcode/data/licenses/jdbm-1.00.yml deleted file mode 100644 index 5eebfba6b82..00000000000 --- a/src/licensedcode/data/licenses/jdbm-1.00.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: jdbm-1.00 -short_name: JDBM License v1.00 -name: JDBM License v1.00 -category: Permissive -owner: JovalCM -homepage_url: https://github.com/joval/jdbm/blob/master/LICENSE.txt -spdx_license_key: LicenseRef-scancode-jdbm-1.00 -ignorable_urls: - - http://jdbm.sourceforge.net/ -ignorable_emails: - - cg@cdegroot.com diff --git a/src/licensedcode/data/licenses/jdom.LICENSE b/src/licensedcode/data/licenses/jdom.LICENSE index 501703ff04b..eea900a72a3 100644 --- a/src/licensedcode/data/licenses/jdom.LICENSE +++ b/src/licensedcode/data/licenses/jdom.LICENSE @@ -1,3 +1,21 @@ +--- +key: jdom +short_name: JDOM License +name: JDOM License +category: Permissive +owner: JDOM +homepage_url: http://www.jdom.org/docs/faq.html#a0030 +notes: this based on an Apache 1.1 license +spdx_license_key: LicenseRef-scancode-jdom +faq_url: http://www.jdom.org/docs/faq.html#a0030 +ignorable_authors: + - Jason Hunter and Brett McLaughlin + - the JDOM Project (http://www.jdom.org/) +ignorable_urls: + - http://www.jdom.org/ + - http://www.jdom.org/images/logos +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/jdom.yml b/src/licensedcode/data/licenses/jdom.yml deleted file mode 100644 index 09a7065b153..00000000000 --- a/src/licensedcode/data/licenses/jdom.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: jdom -short_name: JDOM License -name: JDOM License -category: Permissive -owner: JDOM -homepage_url: http://www.jdom.org/docs/faq.html#a0030 -notes: this based on an Apache 1.1 license -spdx_license_key: LicenseRef-scancode-jdom -faq_url: http://www.jdom.org/docs/faq.html#a0030 -ignorable_authors: - - Jason Hunter and Brett McLaughlin - - the JDOM Project (http://www.jdom.org/) -ignorable_urls: - - http://www.jdom.org/ - - http://www.jdom.org/images/logos diff --git a/src/licensedcode/data/licenses/jelurida-public-1.1.LICENSE b/src/licensedcode/data/licenses/jelurida-public-1.1.LICENSE index ff6bc52c617..132920836ef 100644 --- a/src/licensedcode/data/licenses/jelurida-public-1.1.LICENSE +++ b/src/licensedcode/data/licenses/jelurida-public-1.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: jelurida-public-1.1 +short_name: Jeulurida Public License 1.1 +name: Jeulurida Public License 1.1 +category: Copyleft +owner: Jelurida +homepage_url: https://github.com/mrv777/NXT/blob/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-jelurida-public-1.1 +standard_notice: | + This program is distributed under the terms of the Jelurida Public License + version 1.1 +ignorable_authors: + - Jelurida Swiss SA +--- + JELURIDA PUBLIC LICENSE Preamble: diff --git a/src/licensedcode/data/licenses/jelurida-public-1.1.yml b/src/licensedcode/data/licenses/jelurida-public-1.1.yml deleted file mode 100644 index 3667d2287f1..00000000000 --- a/src/licensedcode/data/licenses/jelurida-public-1.1.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: jelurida-public-1.1 -short_name: Jeulurida Public License 1.1 -name: Jeulurida Public License 1.1 -category: Copyleft -owner: Jelurida -homepage_url: https://github.com/mrv777/NXT/blob/master/LICENSE.txt -spdx_license_key: LicenseRef-scancode-jelurida-public-1.1 -standard_notice: | - This program is distributed under the terms of the Jelurida Public License - version 1.1 -ignorable_authors: - - Jelurida Swiss SA diff --git a/src/licensedcode/data/licenses/jetbrains-purchase-terms.LICENSE b/src/licensedcode/data/licenses/jetbrains-purchase-terms.LICENSE index 48d89607f07..d0a437df8b2 100644 --- a/src/licensedcode/data/licenses/jetbrains-purchase-terms.LICENSE +++ b/src/licensedcode/data/licenses/jetbrains-purchase-terms.LICENSE @@ -1,3 +1,16 @@ +--- +key: jetbrains-purchase-terms +short_name: JetBrains Purchase Terms +name: JetBrains Purchase Terms +category: Commercial +owner: JetBrains +homepage_url: https://www.jetbrains.com/store/terms/ +spdx_license_key: LicenseRef-scancode-jetbrains-purchase-terms +ignorable_urls: + - http://www.jetbrains.com/ + - https://account.jetbrains.com/ +--- + Terms and Conditions of Purchase GENERAL diff --git a/src/licensedcode/data/licenses/jetbrains-purchase-terms.yml b/src/licensedcode/data/licenses/jetbrains-purchase-terms.yml deleted file mode 100644 index 0526ef286c9..00000000000 --- a/src/licensedcode/data/licenses/jetbrains-purchase-terms.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: jetbrains-purchase-terms -short_name: JetBrains Purchase Terms -name: JetBrains Purchase Terms -category: Commercial -owner: JetBrains -homepage_url: https://www.jetbrains.com/store/terms/ -spdx_license_key: LicenseRef-scancode-jetbrains-purchase-terms -ignorable_urls: - - http://www.jetbrains.com/ - - https://account.jetbrains.com/ diff --git a/src/licensedcode/data/licenses/jetbrains-toolbox-open-source-3.LICENSE b/src/licensedcode/data/licenses/jetbrains-toolbox-open-source-3.LICENSE index f817dfba2ce..0c06d5547b1 100644 --- a/src/licensedcode/data/licenses/jetbrains-toolbox-open-source-3.LICENSE +++ b/src/licensedcode/data/licenses/jetbrains-toolbox-open-source-3.LICENSE @@ -1,3 +1,21 @@ +--- +key: jetbrains-toolbox-open-source-3 +short_name: JetBrains Toolbox Open Source License v3 +name: Toolbox Subscription License Agreement For Open Source Projects Version 3 +category: Proprietary Free +owner: JetBrains +homepage_url: https://www.jetbrains.com/store/license_opensource.html +spdx_license_key: LicenseRef-scancode-jetbrains-toolbox-oss-3 +other_spdx_license_keys: + - LicenseRef-scancode-jetbrains-toolbox-open-source-3 +ignorable_urls: + - http://www.jetbrains.com/ + - http://www.opensource.org/docs/osd + - https://account.jetbrains.com/ +ignorable_emails: + - sales@jetbrains.com +--- + TOOLBOX SUBSCRIPTION LICENSE AGREEMENT FOR OPEN SOURCE PROJECTS Version 3, Effective as of September 9th, 2016 diff --git a/src/licensedcode/data/licenses/jetbrains-toolbox-open-source-3.yml b/src/licensedcode/data/licenses/jetbrains-toolbox-open-source-3.yml deleted file mode 100644 index 03b8c2941c4..00000000000 --- a/src/licensedcode/data/licenses/jetbrains-toolbox-open-source-3.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: jetbrains-toolbox-open-source-3 -short_name: JetBrains Toolbox Open Source License v3 -name: Toolbox Subscription License Agreement For Open Source Projects Version 3 -category: Proprietary Free -owner: JetBrains -homepage_url: https://www.jetbrains.com/store/license_opensource.html -spdx_license_key: LicenseRef-scancode-jetbrains-toolbox-oss-3 -other_spdx_license_keys: - - LicenseRef-scancode-jetbrains-toolbox-open-source-3 -ignorable_urls: - - http://www.jetbrains.com/ - - http://www.opensource.org/docs/osd - - https://account.jetbrains.com/ -ignorable_emails: - - sales@jetbrains.com diff --git a/src/licensedcode/data/licenses/jetty-ccla-1.1.LICENSE b/src/licensedcode/data/licenses/jetty-ccla-1.1.LICENSE index 0ba4d66aee5..514ed4c4f62 100644 --- a/src/licensedcode/data/licenses/jetty-ccla-1.1.LICENSE +++ b/src/licensedcode/data/licenses/jetty-ccla-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: jetty-ccla-1.1 +short_name: Jetty CCLA 1.1 +name: Jetty Project Corporate Contributor License Agreement V1.1 +category: Proprietary Free +owner: Jetty Project +homepage_url: https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt +spdx_license_key: LicenseRef-scancode-jetty-ccla-1.1 +text_urls: + - https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt +ignorable_urls: + - http://www.apache.org/licenses/ + - ssh://svn.jetty.codehaus.org/home/projects/jetty/scm/jetty +ignorable_emails: + - eclipse@eclipse.com +--- + Jetty Project Corporate Contributor License Agreement V1.1 based on http://www.apache.org/licenses/ @@ -172,5 +189,4 @@ Schedule A ______________________________________ ________________ - ______________________________________ ________________ - + ______________________________________ ________________ \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jetty-ccla-1.1.yml b/src/licensedcode/data/licenses/jetty-ccla-1.1.yml deleted file mode 100644 index 6fab1acb0e6..00000000000 --- a/src/licensedcode/data/licenses/jetty-ccla-1.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: jetty-ccla-1.1 -short_name: Jetty CCLA 1.1 -name: Jetty Project Corporate Contributor License Agreement V1.1 -category: Proprietary Free -owner: Jetty Project -homepage_url: https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt -spdx_license_key: LicenseRef-scancode-jetty-ccla-1.1 -text_urls: - - https://raw.githubusercontent.com/eclipse/jetty.project/jetty-9.4.x/LICENSE-CONTRIBUTOR/ccla-template.txt -ignorable_urls: - - http://www.apache.org/licenses/ - - ssh://svn.jetty.codehaus.org/home/projects/jetty/scm/jetty -ignorable_emails: - - eclipse@eclipse.com diff --git a/src/licensedcode/data/licenses/jetty.LICENSE b/src/licensedcode/data/licenses/jetty.LICENSE index 712c7ba92de..f2070badb94 100644 --- a/src/licensedcode/data/licenses/jetty.LICENSE +++ b/src/licensedcode/data/licenses/jetty.LICENSE @@ -1,3 +1,28 @@ +--- +key: jetty +short_name: Jetty License +name: Jetty License +category: Permissive +owner: Jetty Project +homepage_url: http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt +spdx_license_key: LicenseRef-scancode-jetty +text_urls: + - http://svn.apache.org/repos/asf/forrest/trunk/tools/jetty/jetty-4.2.19.jar.license.html + - http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt +faq_url: http://en.wikipedia.org/wiki/Jetty_(web_server) +ignorable_copyrights: + - Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others + - copyright Sun Microsystems Inc. +ignorable_holders: + - Mort Bay Consulting Pty. Ltd. (Australia) and others + - Sun Microsystems Inc. +ignorable_urls: + - http://ftp.uu.net/ + - http://jetty.mortbay.org/ + - http://www.opensource.com/ + - http://www.opensource.org/ +--- + Jetty License $Revision: 584 $ diff --git a/src/licensedcode/data/licenses/jetty.yml b/src/licensedcode/data/licenses/jetty.yml deleted file mode 100644 index 810d863f4ab..00000000000 --- a/src/licensedcode/data/licenses/jetty.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: jetty -short_name: Jetty License -name: Jetty License -category: Permissive -owner: Jetty Project -homepage_url: http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt -spdx_license_key: LicenseRef-scancode-jetty -text_urls: - - http://svn.apache.org/repos/asf/forrest/trunk/tools/jetty/jetty-4.2.19.jar.license.html - - http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt -faq_url: http://en.wikipedia.org/wiki/Jetty_(web_server) -ignorable_copyrights: - - Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others - - copyright Sun Microsystems Inc. -ignorable_holders: - - Mort Bay Consulting Pty. Ltd. (Australia) and others - - Sun Microsystems Inc. -ignorable_urls: - - http://ftp.uu.net/ - - http://jetty.mortbay.org/ - - http://www.opensource.com/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/licenses/jgraph-general.LICENSE b/src/licensedcode/data/licenses/jgraph-general.LICENSE index f8e00f532a4..88a26ff38db 100644 --- a/src/licensedcode/data/licenses/jgraph-general.LICENSE +++ b/src/licensedcode/data/licenses/jgraph-general.LICENSE @@ -1,3 +1,15 @@ +--- +key: jgraph-general +short_name: JGraph General License +name: JGraph General License +category: Proprietary Free +owner: JGraph +homepage_url: http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm +spdx_license_key: LicenseRef-scancode-jgraph-general +text_urls: + - http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm +--- + JGraph General License JGRAPH GENERAL LICENSE STATEMENT AND LIMITED WARRANTY diff --git a/src/licensedcode/data/licenses/jgraph-general.yml b/src/licensedcode/data/licenses/jgraph-general.yml deleted file mode 100644 index 43e1376c178..00000000000 --- a/src/licensedcode/data/licenses/jgraph-general.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: jgraph-general -short_name: JGraph General License -name: JGraph General License -category: Proprietary Free -owner: JGraph -homepage_url: http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm -spdx_license_key: LicenseRef-scancode-jgraph-general -text_urls: - - http://dsl.serc.iisc.ernet.in/projects/PICASSO/picasso_download/doc/Installation/LibraryLicenses/licenseJGraph.htm diff --git a/src/licensedcode/data/licenses/jgraph.LICENSE b/src/licensedcode/data/licenses/jgraph.LICENSE index 7f5bfbdfde6..3664d8131bf 100644 --- a/src/licensedcode/data/licenses/jgraph.LICENSE +++ b/src/licensedcode/data/licenses/jgraph.LICENSE @@ -1,3 +1,16 @@ +--- +key: jgraph +short_name: JGraph License +name: JGraph License +category: Permissive +owner: JGraph +homepage_url: http://www.jgraph.com/jgraphdownload.html +spdx_license_key: LicenseRef-scancode-jgraph +other_urls: + - http://www.jgraph.com/jgraphdownload.html +minimum_coverage: 70 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -31,4 +44,4 @@ 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. +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jgraph.yml b/src/licensedcode/data/licenses/jgraph.yml deleted file mode 100644 index adeb1e430be..00000000000 --- a/src/licensedcode/data/licenses/jgraph.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: jgraph -short_name: JGraph License -name: JGraph License -category: Permissive -owner: JGraph -homepage_url: http://www.jgraph.com/jgraphdownload.html -spdx_license_key: LicenseRef-scancode-jgraph -other_urls: - - http://www.jgraph.com/jgraphdownload.html -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/jide-sla.LICENSE b/src/licensedcode/data/licenses/jide-sla.LICENSE index 916b4b7b8c2..718130a9c3d 100644 --- a/src/licensedcode/data/licenses/jide-sla.LICENSE +++ b/src/licensedcode/data/licenses/jide-sla.LICENSE @@ -1,3 +1,15 @@ +--- +key: jide-sla +short_name: JIDE SLA +name: JIDE SLA +category: Commercial +owner: JIDE Software +homepage_url: http://www.jidesoft.com/purchase/SLA.htm +spdx_license_key: LicenseRef-scancode-jide-sla +ignorable_urls: + - http://www.jidesoft.com/ +--- + SOFTWARE LICENSE AGREEMENT FOR JIDE SOFTWARE, INC.'S PRODUCTS IMPORTANT - READ CAREFULLY: This JIDE Software, Inc. ("JIDE") Software License Agreement ("SLA") is a legal agreement between you (an individual developer or a company of software applications) and JIDE for the JIDE software product accompanying this SLA, which includes computer software and may include associated source code, media, printed materials, and "on-line" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this SLA. If you do not agree to the terms of this SLA, do not install, use, distribute in any manner, or replicate in any manner, any part, file or portion of the SOFTWARE PRODUCT. @@ -48,5 +60,4 @@ For CUSTOMER For JIDE Software, Inc. Signature: Signature: Name Name: Title: Title: -Date: Date: - +Date: Date: \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jide-sla.yml b/src/licensedcode/data/licenses/jide-sla.yml deleted file mode 100644 index e16fd1ee584..00000000000 --- a/src/licensedcode/data/licenses/jide-sla.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: jide-sla -short_name: JIDE SLA -name: JIDE SLA -category: Commercial -owner: JIDE Software -homepage_url: http://www.jidesoft.com/purchase/SLA.htm -spdx_license_key: LicenseRef-scancode-jide-sla -ignorable_urls: - - http://www.jidesoft.com/ diff --git a/src/licensedcode/data/licenses/jj2000.LICENSE b/src/licensedcode/data/licenses/jj2000.LICENSE index c18a8fefa94..0b2628f6ec0 100644 --- a/src/licensedcode/data/licenses/jj2000.LICENSE +++ b/src/licensedcode/data/licenses/jj2000.LICENSE @@ -1,3 +1,16 @@ +--- +key: jj2000 +short_name: JJ2000 License +name: JJ2000 License +category: Free Restricted +owner: JJ2000 Partners +homepage_url: https://raw.githubusercontent.com/stain/jai-imageio-jpeg2000/master/LICENSE-JJ2000.txt +spdx_license_key: LicenseRef-scancode-jj2000 +ignorable_authors: + - Raphael Grosbois and Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL) Joel + Askelof +--- + This software module was originally developed by Raphaël Grosbois and Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL); Joel Askelöf (Ericsson Radio Systems AB); and Bertrand Berthelot, David diff --git a/src/licensedcode/data/licenses/jj2000.yml b/src/licensedcode/data/licenses/jj2000.yml deleted file mode 100644 index 7a5bfa37b4b..00000000000 --- a/src/licensedcode/data/licenses/jj2000.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: jj2000 -short_name: JJ2000 License -name: JJ2000 License -category: Free Restricted -owner: JJ2000 Partners -homepage_url: https://raw.githubusercontent.com/stain/jai-imageio-jpeg2000/master/LICENSE-JJ2000.txt -spdx_license_key: LicenseRef-scancode-jj2000 -ignorable_authors: - - Raphael Grosbois and Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL) Joel - Askelof diff --git a/src/licensedcode/data/licenses/jmagnetic.LICENSE b/src/licensedcode/data/licenses/jmagnetic.LICENSE index d38b3963f9d..5b5ea0facc3 100644 --- a/src/licensedcode/data/licenses/jmagnetic.LICENSE +++ b/src/licensedcode/data/licenses/jmagnetic.LICENSE @@ -1,3 +1,16 @@ +--- +key: jmagnetic +short_name: JMagnetic License +name: JMagnetic License +category: Proprietary Free +owner: Stefan Meier +spdx_license_key: LicenseRef-scancode-jmagnetic +ignorable_copyrights: + - copyright (c) 1998-99, Stefan Meier +ignorable_holders: + - Stefan Meier +--- + JMAGNETIC Licence Agreement This is a legal agreement between you and Stefan Meier covering your use of JMagnetic. Be sure to read the following agreement before using the software. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT USE THE SOFTWARE AND DESTROY ALL COPIES OF IT. diff --git a/src/licensedcode/data/licenses/jmagnetic.yml b/src/licensedcode/data/licenses/jmagnetic.yml deleted file mode 100644 index b3f2edb4b5f..00000000000 --- a/src/licensedcode/data/licenses/jmagnetic.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: jmagnetic -short_name: JMagnetic License -name: JMagnetic License -category: Proprietary Free -owner: Stefan Meier -spdx_license_key: LicenseRef-scancode-jmagnetic -ignorable_copyrights: - - copyright (c) 1998-99, Stefan Meier -ignorable_holders: - - Stefan Meier diff --git a/src/licensedcode/data/licenses/josl-1.0.LICENSE b/src/licensedcode/data/licenses/josl-1.0.LICENSE index 084400144cf..74ad44f896b 100644 --- a/src/licensedcode/data/licenses/josl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/josl-1.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: josl-1.0 +short_name: Jabber 1.0 +name: Jabber Open Source License 1.0 +category: Copyleft Limited +owner: Jabber Technology +homepage_url: http://www.opensource.org/licenses/jabberpl.php +spdx_license_key: LicenseRef-scancode-josl-1.0 +text_urls: + - http://code.google.com/p/jabber-net/source/browse/branches/RELEASE_1_0/LICENSE.txt +osi_url: http://www.opensource.org/licenses/jabberpl.php +ignorable_copyrights: + - Copyright (c) 1999-2000 Jabber.com, Inc. + - Portions Copyright (c) 1998-1999 Jeremie Miller +ignorable_holders: + - Jabber.com, Inc. + - Jeremie Miller +ignorable_urls: + - http://www.jabber.com/ + - http://www.jabber.com/license/ + - http://www.opensource.org/ +--- + Jabber Open Source License Version 1.0 diff --git a/src/licensedcode/data/licenses/josl-1.0.yml b/src/licensedcode/data/licenses/josl-1.0.yml deleted file mode 100644 index e2b0975bb20..00000000000 --- a/src/licensedcode/data/licenses/josl-1.0.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: josl-1.0 -short_name: Jabber 1.0 -name: Jabber Open Source License 1.0 -category: Copyleft Limited -owner: Jabber Technology -homepage_url: http://www.opensource.org/licenses/jabberpl.php -spdx_license_key: LicenseRef-scancode-josl-1.0 -text_urls: - - http://code.google.com/p/jabber-net/source/browse/branches/RELEASE_1_0/LICENSE.txt -osi_url: http://www.opensource.org/licenses/jabberpl.php -ignorable_copyrights: - - Copyright (c) 1999-2000 Jabber.com, Inc. - - Portions Copyright (c) 1998-1999 Jeremie Miller -ignorable_holders: - - Jabber.com, Inc. - - Jeremie Miller -ignorable_urls: - - http://www.jabber.com/ - - http://www.jabber.com/license/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/licenses/jpnic-idnkit.LICENSE b/src/licensedcode/data/licenses/jpnic-idnkit.LICENSE index a58b4eb7648..5d41fdf5f21 100644 --- a/src/licensedcode/data/licenses/jpnic-idnkit.LICENSE +++ b/src/licensedcode/data/licenses/jpnic-idnkit.LICENSE @@ -1,3 +1,22 @@ +--- +key: jpnic-idnkit +short_name: JPNIC idnkit License +name: JPNIC idnkit License +category: Permissive +owner: JPNIC +homepage_url: https://www.nic.ad.jp/ja/idn/idnkit/download/ +spdx_license_key: JPNIC +text_urls: + - https://dev.w3.org/libwww/modules/idn/LICENSE.txt +other_urls: + - https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366 + - https://jprs.co.jp/idn/ +ignorable_copyrights: + - Copyright (c) 2000-2002 Japan Network Information Center +ignorable_holders: + - Japan Network Information Center +--- + By using this file, you agree to the terms and conditions set forth bellow. LICENSE TERMS AND CONDITIONS @@ -35,5 +54,4 @@ Chiyoda-ku, Tokyo 101-0047, Japan. 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 DAMAGES. - + ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jpnic-idnkit.yml b/src/licensedcode/data/licenses/jpnic-idnkit.yml deleted file mode 100644 index e4a204208a3..00000000000 --- a/src/licensedcode/data/licenses/jpnic-idnkit.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: jpnic-idnkit -short_name: JPNIC idnkit License -name: JPNIC idnkit License -category: Permissive -owner: JPNIC -homepage_url: https://www.nic.ad.jp/ja/idn/idnkit/download/ -spdx_license_key: JPNIC -text_urls: - - https://dev.w3.org/libwww/modules/idn/LICENSE.txt -other_urls: - - https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366 - - https://jprs.co.jp/idn/ -ignorable_copyrights: - - Copyright (c) 2000-2002 Japan Network Information Center -ignorable_holders: - - Japan Network Information Center diff --git a/src/licensedcode/data/licenses/jpnic-mdnkit.LICENSE b/src/licensedcode/data/licenses/jpnic-mdnkit.LICENSE index 70dd205bf37..db1015e68cd 100644 --- a/src/licensedcode/data/licenses/jpnic-mdnkit.LICENSE +++ b/src/licensedcode/data/licenses/jpnic-mdnkit.LICENSE @@ -1,3 +1,21 @@ +--- +key: jpnic-mdnkit +short_name: JPNIC mdnkit License +name: JPNIC mdnkit License +category: Permissive +owner: JPNIC +homepage_url: https://www.nic.ad.jp/ja/idn/idnkit/download/ +notes: this is essentially the same license as the jpnic-idnkit license with extra terms making + it proprietary +spdx_license_key: LicenseRef-scancode-jpnic-mdnkit +text_urls: + - https://www.nic.ad.jp/ja/idn/mdnkit/download/documents/idnkit-1.0pr1-doc/LICENSE.txt +ignorable_copyrights: + - Copyright (c) Japan Network Information Center +ignorable_holders: + - Japan Network Information Center +--- + By using this file, you agree to the terms and conditions set forth bellow. LICENSE TERMS AND CONDITIONS @@ -50,5 +68,4 @@ Chiyoda-ku, Tokyo 101-0047, Japan. construed in accordance with the law of Japan. Any person or entities using and/or redistributing this Software under this License Terms and Conditions hereby agrees and consent to the personal and exclusive - jurisdiction and venue of Tokyo District Court of Japan. - + jurisdiction and venue of Tokyo District Court of Japan. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jpnic-mdnkit.yml b/src/licensedcode/data/licenses/jpnic-mdnkit.yml deleted file mode 100644 index 1dbe7c5ac67..00000000000 --- a/src/licensedcode/data/licenses/jpnic-mdnkit.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: jpnic-mdnkit -short_name: JPNIC mdnkit License -name: JPNIC mdnkit License -category: Permissive -owner: JPNIC -homepage_url: https://www.nic.ad.jp/ja/idn/idnkit/download/ -notes: this is essentially the same license as the jpnic-idnkit license with extra terms making - it proprietary -spdx_license_key: LicenseRef-scancode-jpnic-mdnkit -text_urls: - - https://www.nic.ad.jp/ja/idn/mdnkit/download/documents/idnkit-1.0pr1-doc/LICENSE.txt -ignorable_copyrights: - - Copyright (c) Japan Network Information Center -ignorable_holders: - - Japan Network Information Center diff --git a/src/licensedcode/data/licenses/jprs-oscl-1.1.LICENSE b/src/licensedcode/data/licenses/jprs-oscl-1.1.LICENSE index 566f50b6a6d..fbdc87de973 100644 --- a/src/licensedcode/data/licenses/jprs-oscl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/jprs-oscl-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: jprs-oscl-1.1 +short_name: JPRS OSCL 1.1 +name: JPRS Open Source Code License v1.1 +category: Free Restricted +owner: JPRS +homepage_url: https://jprs.co.jp/idn/idnkit2-OSCL.txt +spdx_license_key: LicenseRef-scancode-jprs-oscl-1.1 +text_urls: + - https://jprs.co.jp/idn/idnkit2-OSCL.txt +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 2000-2002 Japan Network Information Center + - Copyright (c) 2010-2012 Japan Registry Services Co., Ltd. +ignorable_holders: + - Japan Network Information Center + - Japan Registry Services Co., Ltd. +ignorable_urls: + - http://jprs.co.jp/idn/ +--- + TERMS AND CONDITIONS FOR OPEN SOURCE CODE LICENSE @@ -178,4 +199,4 @@ file, please indicate your decision by deleting the relevant provisions above and replacing them with the notice and other provisions required by the above License(s). If you do not delete the relevant provisions, a recipient may use your version of this file under either the above -License(s). +License(s). \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jprs-oscl-1.1.yml b/src/licensedcode/data/licenses/jprs-oscl-1.1.yml deleted file mode 100644 index cb850e70165..00000000000 --- a/src/licensedcode/data/licenses/jprs-oscl-1.1.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: jprs-oscl-1.1 -short_name: JPRS OSCL 1.1 -name: JPRS Open Source Code License v1.1 -category: Free Restricted -owner: JPRS -homepage_url: https://jprs.co.jp/idn/idnkit2-OSCL.txt -spdx_license_key: LicenseRef-scancode-jprs-oscl-1.1 -text_urls: - - https://jprs.co.jp/idn/idnkit2-OSCL.txt -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 2000-2002 Japan Network Information Center - - Copyright (c) 2010-2012 Japan Registry Services Co., Ltd. -ignorable_holders: - - Japan Network Information Center - - Japan Registry Services Co., Ltd. -ignorable_urls: - - http://jprs.co.jp/idn/ diff --git a/src/licensedcode/data/licenses/jpython-1.1.LICENSE b/src/licensedcode/data/licenses/jpython-1.1.LICENSE index 09f0c6dc103..e2ebf465c26 100644 --- a/src/licensedcode/data/licenses/jpython-1.1.LICENSE +++ b/src/licensedcode/data/licenses/jpython-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: jpython-1.1 +short_name: JPython 1.1 +name: JPython License 1.1 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://www.jython.org/license.html +spdx_license_key: LicenseRef-scancode-jpython-1.1 +text_urls: + - http://www.jython.org/license.html +faq_url: http://wiki.python.org/jython/JythonFaq/GeneralInfo +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 +--- + JPython version 1.1.x 1. This LICENSE AGREEMENT is between the Corporation for National Research diff --git a/src/licensedcode/data/licenses/jpython-1.1.yml b/src/licensedcode/data/licenses/jpython-1.1.yml deleted file mode 100644 index 51fc1cadff1..00000000000 --- a/src/licensedcode/data/licenses/jpython-1.1.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: jpython-1.1 -short_name: JPython 1.1 -name: JPython License 1.1 -category: Permissive -owner: Python Software Foundation (PSF) -homepage_url: http://www.jython.org/license.html -spdx_license_key: LicenseRef-scancode-jpython-1.1 -text_urls: - - http://www.jython.org/license.html -faq_url: http://wiki.python.org/jython/JythonFaq/GeneralInfo -ignorable_copyrights: - - Copyright (c) 1996-1999 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1006 diff --git a/src/licensedcode/data/licenses/jquery-pd.LICENSE b/src/licensedcode/data/licenses/jquery-pd.LICENSE index 65b252c0e67..cf462552b62 100644 --- a/src/licensedcode/data/licenses/jquery-pd.LICENSE +++ b/src/licensedcode/data/licenses/jquery-pd.LICENSE @@ -1,3 +1,13 @@ +--- +key: jquery-pd +short_name: jQuery-Tools-PD +name: jQuery Tools Public Domain License +category: Public Domain +owner: jQuery Project +homepage_url: https://jquerytools.github.io/release-notes/ +spdx_license_key: LicenseRef-scancode-jquery-pd +--- + jQuery Public Domain License NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE. This is the new jQuery Tools license. Copyrights and patents are evil. They block the natural progress of development. We all know it: if people start sharing instead of owning the world would be a better place. Today money is king. This results in closed systems and poor quality and in many cases people are even seriously exploited. For businessmen nothing is enough. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jquery-pd.yml b/src/licensedcode/data/licenses/jquery-pd.yml deleted file mode 100644 index 83a980f6425..00000000000 --- a/src/licensedcode/data/licenses/jquery-pd.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: jquery-pd -short_name: jQuery-Tools-PD -name: jQuery Tools Public Domain License -category: Public Domain -owner: jQuery Project -homepage_url: https://jquerytools.github.io/release-notes/ -spdx_license_key: LicenseRef-scancode-jquery-pd diff --git a/src/licensedcode/data/licenses/jrunner.LICENSE b/src/licensedcode/data/licenses/jrunner.LICENSE index e8da5b35dd0..fc3891f04b1 100644 --- a/src/licensedcode/data/licenses/jrunner.LICENSE +++ b/src/licensedcode/data/licenses/jrunner.LICENSE @@ -1,3 +1,17 @@ +--- +key: jrunner +short_name: JRunner License +name: JRunner Software License +category: Proprietary Free +owner: Altera Corporation +homepage_url: https://www.altera.com/download/licensing/lic-jrunner.html +spdx_license_key: LicenseRef-scancode-jrunner +text_urls: + - https://www.altera.com/download/licensing/lic-jrunner.html +ignorable_urls: + - https://www.altera.com/download/licensing/lic-jrunner.html +--- + JRunner Software License https://www.altera.com/download/licensing/lic-jrunner.html diff --git a/src/licensedcode/data/licenses/jrunner.yml b/src/licensedcode/data/licenses/jrunner.yml deleted file mode 100644 index 790a58fbeb7..00000000000 --- a/src/licensedcode/data/licenses/jrunner.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: jrunner -short_name: JRunner License -name: JRunner Software License -category: Proprietary Free -owner: Altera Corporation -homepage_url: https://www.altera.com/download/licensing/lic-jrunner.html -spdx_license_key: LicenseRef-scancode-jrunner -text_urls: - - https://www.altera.com/download/licensing/lic-jrunner.html -ignorable_urls: - - https://www.altera.com/download/licensing/lic-jrunner.html diff --git a/src/licensedcode/data/licenses/jscheme.LICENSE b/src/licensedcode/data/licenses/jscheme.LICENSE index f6977ff8a4f..9c3667f834b 100644 --- a/src/licensedcode/data/licenses/jscheme.LICENSE +++ b/src/licensedcode/data/licenses/jscheme.LICENSE @@ -1,3 +1,15 @@ +--- +key: jscheme +short_name: Jscheme License +name: Jscheme License +category: Permissive +owner: Peter Norvig +homepage_url: https://norvig.com/license.html +spdx_license_key: LicenseRef-scancode-jscheme +ignorable_emails: + - peter@norvig.com +--- + Permission is granted to anyone to use this software, in source or object code form, on any computer system, and to modify, compile, decompile, run, and redistribute it to anyone else, subject to the following restrictions: 1. The author makes no warranty of any kind, either expressed or implied, about the suitability of this software for any purpose. diff --git a/src/licensedcode/data/licenses/jscheme.yml b/src/licensedcode/data/licenses/jscheme.yml deleted file mode 100644 index 4b51b4f48a8..00000000000 --- a/src/licensedcode/data/licenses/jscheme.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: jscheme -short_name: Jscheme License -name: Jscheme License -category: Permissive -owner: Peter Norvig -homepage_url: https://norvig.com/license.html -spdx_license_key: LicenseRef-scancode-jscheme -ignorable_emails: - - peter@norvig.com diff --git a/src/licensedcode/data/licenses/jsfromhell.LICENSE b/src/licensedcode/data/licenses/jsfromhell.LICENSE index cd1478b57c8..c8b6945df2d 100644 --- a/src/licensedcode/data/licenses/jsfromhell.LICENSE +++ b/src/licensedcode/data/licenses/jsfromhell.LICENSE @@ -1,2 +1,12 @@ +--- +key: jsfromhell +short_name: JSFromHell License +name: JSFromHell License +category: Permissive +owner: JSFromHell +homepage_url: http://jsfromhell.com/ +spdx_license_key: LicenseRef-scancode-jsfromhell +--- + Copyright We authorize the copy and modification of all the codes on the site, since the original author credits are kept. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/jsfromhell.yml b/src/licensedcode/data/licenses/jsfromhell.yml deleted file mode 100644 index 5d49cf6b9b1..00000000000 --- a/src/licensedcode/data/licenses/jsfromhell.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: jsfromhell -short_name: JSFromHell License -name: JSFromHell License -category: Permissive -owner: JSFromHell -homepage_url: http://jsfromhell.com/ -spdx_license_key: LicenseRef-scancode-jsfromhell diff --git a/src/licensedcode/data/licenses/json-js-pd.LICENSE b/src/licensedcode/data/licenses/json-js-pd.LICENSE index 8c2cf757807..7091ce01c22 100644 --- a/src/licensedcode/data/licenses/json-js-pd.LICENSE +++ b/src/licensedcode/data/licenses/json-js-pd.LICENSE @@ -1,7 +1,23 @@ +--- +key: json-js-pd +short_name: JSON-js-PD +name: JSON-js Public Domain Notice +category: Public Domain +owner: JSON.org +homepage_url: https://github.com/douglascrockford/JSON-js +spdx_license_key: LicenseRef-scancode-json-js-pd +text_urls: + - https://github.com/douglascrockford/JSON-js +faq_url: http://www.JSON.org/js.html +ignorable_urls: + - http://www.json.org/js.html + - http://www.json.org/json2.js +--- + Public Domain No warranty expressed or implied. Use at your own risk. This file has been superceded by http://www.JSON.org/json2.js -See http://www.JSON.org/js.html +See http://www.JSON.org/js.html \ No newline at end of file diff --git a/src/licensedcode/data/licenses/json-js-pd.yml b/src/licensedcode/data/licenses/json-js-pd.yml deleted file mode 100644 index 47b20aede07..00000000000 --- a/src/licensedcode/data/licenses/json-js-pd.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: json-js-pd -short_name: JSON-js-PD -name: JSON-js Public Domain Notice -category: Public Domain -owner: JSON.org -homepage_url: https://github.com/douglascrockford/JSON-js -spdx_license_key: LicenseRef-scancode-json-js-pd -text_urls: - - https://github.com/douglascrockford/JSON-js -faq_url: http://www.JSON.org/js.html -ignorable_urls: - - http://www.json.org/js.html - - http://www.json.org/json2.js diff --git a/src/licensedcode/data/licenses/json-pd.LICENSE b/src/licensedcode/data/licenses/json-pd.LICENSE index b3c378c2c61..fd3cd69388c 100644 --- a/src/licensedcode/data/licenses/json-pd.LICENSE +++ b/src/licensedcode/data/licenses/json-pd.LICENSE @@ -1,3 +1,19 @@ +--- +key: json-pd +short_name: JSON-PD +name: JSON Public Domain Notice +category: Public Domain +owner: JSON.org +homepage_url: http://www.json.org/js.html +spdx_license_key: LicenseRef-scancode-json-pd +faq_url: http://www.json.org/js.html +other_urls: + - http://javascript.crockford.com/jsmin.html +ignorable_urls: + - http://javascript.crockford.com/jsmin.html + - http://www.json.org/js.html +--- + Public Domain. NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. diff --git a/src/licensedcode/data/licenses/json-pd.yml b/src/licensedcode/data/licenses/json-pd.yml deleted file mode 100644 index 3351c36a87a..00000000000 --- a/src/licensedcode/data/licenses/json-pd.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: json-pd -short_name: JSON-PD -name: JSON Public Domain Notice -category: Public Domain -owner: JSON.org -homepage_url: http://www.json.org/js.html -spdx_license_key: LicenseRef-scancode-json-pd -faq_url: http://www.json.org/js.html -other_urls: - - http://javascript.crockford.com/jsmin.html -ignorable_urls: - - http://javascript.crockford.com/jsmin.html - - http://www.json.org/js.html diff --git a/src/licensedcode/data/licenses/json.LICENSE b/src/licensedcode/data/licenses/json.LICENSE index bada3096efd..ab7d033c384 100644 --- a/src/licensedcode/data/licenses/json.LICENSE +++ b/src/licensedcode/data/licenses/json.LICENSE @@ -1,3 +1,18 @@ +--- +key: json +short_name: JSON License +name: JSON License +category: Permissive +owner: JSON.org +homepage_url: http://www.json.org/license.html +spdx_license_key: JSON +text_urls: + - http://www.json.org/license.html +other_urls: + - http://www.gnu.org/licenses/license-list.html#JSON +minimum_coverage: 70 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -17,4 +32,4 @@ 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. +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/json.yml b/src/licensedcode/data/licenses/json.yml deleted file mode 100644 index f43408d3ffc..00000000000 --- a/src/licensedcode/data/licenses/json.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: json -short_name: JSON License -name: JSON License -category: Permissive -owner: JSON.org -homepage_url: http://www.json.org/license.html -spdx_license_key: JSON -text_urls: - - http://www.json.org/license.html -other_urls: - - http://www.gnu.org/licenses/license-list.html#JSON -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/jsr-107-jcache-spec-2013.LICENSE b/src/licensedcode/data/licenses/jsr-107-jcache-spec-2013.LICENSE index 2945ab29cf1..6b6d5d59b64 100644 --- a/src/licensedcode/data/licenses/jsr-107-jcache-spec-2013.LICENSE +++ b/src/licensedcode/data/licenses/jsr-107-jcache-spec-2013.LICENSE @@ -1,3 +1,25 @@ +--- +key: jsr-107-jcache-spec-2013 +short_name: JSR-107 JCache Specification 2013 License +name: JSR-107 JCache Specification 2013 License +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://github.com/jsr107/jsr107spec/blob/v1.0.0-PFD/LICENSE.txt +notes: the license for the API has since changed in 2016 to Apache-2.0 after several intermediate + changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. + This is an old spec license likely still current. +spdx_license_key: LicenseRef-scancode-jsr-107-jcache-spec-2013 +other_urls: + - https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt +minimum_coverage: 96 +ignorable_copyrights: + - Copyright 2013 ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California + 95054, U.S.A +ignorable_holders: + - ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California 95054, + U.S.A +--- + JSR-000107 JCACHE 2.9 Public Review - Updated Specification ORACLE AND GREG LUCK ARE WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS LICENSE AGREEMENT ("AGREEMENT"). PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY THEM, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THIS PAGE AND THE DOWNLOADING PROCESS WILL NOT CONTINUE. diff --git a/src/licensedcode/data/licenses/jsr-107-jcache-spec-2013.yml b/src/licensedcode/data/licenses/jsr-107-jcache-spec-2013.yml deleted file mode 100644 index b0e3a5f52c6..00000000000 --- a/src/licensedcode/data/licenses/jsr-107-jcache-spec-2013.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: jsr-107-jcache-spec-2013 -short_name: JSR-107 JCache Specification 2013 License -name: JSR-107 JCache Specification 2013 License -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://github.com/jsr107/jsr107spec/blob/v1.0.0-PFD/LICENSE.txt -notes: the license for the API has since changed in 2016 to Apache-2.0 after several intermediate - changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. - This is an old spec license likely still current. -spdx_license_key: LicenseRef-scancode-jsr-107-jcache-spec-2013 -other_urls: - - https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt -minimum_coverage: 96 -ignorable_copyrights: - - Copyright 2013 ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California - 95054, U.S.A -ignorable_holders: - - ORACLE America, Inc. and Greg Luck 4150 Network Circle, Santa Clara, California 95054, - U.S.A diff --git a/src/licensedcode/data/licenses/jsr-107-jcache-spec.LICENSE b/src/licensedcode/data/licenses/jsr-107-jcache-spec.LICENSE index d8b5ff73154..7826ddd4f72 100644 --- a/src/licensedcode/data/licenses/jsr-107-jcache-spec.LICENSE +++ b/src/licensedcode/data/licenses/jsr-107-jcache-spec.LICENSE @@ -1,3 +1,21 @@ +--- +key: jsr-107-jcache-spec +short_name: JSR-107 JCache Specification License +name: JSR-107 JCache Specification License +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://github.com/jsr107/jsr107spec/blob/master/LICENSE.txt +notes: the license for the API has since changed in 2016 to Apache-2.0 after several intermediate + changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. + This is an old spec license likely still current. +spdx_license_key: LicenseRef-scancode-jsr-107-jcache-spec +minimum_coverage: 96 +ignorable_copyrights: + - Copyright 2015 Oracle America, Inc. and Greg Luck +ignorable_holders: + - Oracle America, Inc. and Greg Luck +--- + JSR-000107 JavaTM Temporary Caching API Maintenance Release 1 ORACLE AMERICA, INC. AND GREG LUCK, SPECIFICATION LEADS, ARE WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THIS PAGE. diff --git a/src/licensedcode/data/licenses/jsr-107-jcache-spec.yml b/src/licensedcode/data/licenses/jsr-107-jcache-spec.yml deleted file mode 100644 index 003539d3236..00000000000 --- a/src/licensedcode/data/licenses/jsr-107-jcache-spec.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: jsr-107-jcache-spec -short_name: JSR-107 JCache Specification License -name: JSR-107 JCache Specification License -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://github.com/jsr107/jsr107spec/blob/master/LICENSE.txt -notes: the license for the API has since changed in 2016 to Apache-2.0 after several intermediate - changes. See https://github.com/jsr107/jsr107spec/commits/master/LICENSE.txt for details. - This is an old spec license likely still current. -spdx_license_key: LicenseRef-scancode-jsr-107-jcache-spec -minimum_coverage: 96 -ignorable_copyrights: - - Copyright 2015 Oracle America, Inc. and Greg Luck -ignorable_holders: - - Oracle America, Inc. and Greg Luck diff --git a/src/licensedcode/data/licenses/jython.LICENSE b/src/licensedcode/data/licenses/jython.LICENSE index 1cb1063237a..55ac857dbb0 100644 --- a/src/licensedcode/data/licenses/jython.LICENSE +++ b/src/licensedcode/data/licenses/jython.LICENSE @@ -1,3 +1,30 @@ +--- +key: jython +short_name: Jython License +name: Jython License +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://www.jython.org/license.txt +notes: this is a complex composite of multiple licenses +spdx_license_key: LicenseRef-scancode-jython +text_urls: + - http://www.jython.org/license.txt +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives + - Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers + - Copyright (c) 2007 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Jython Developers + - Python Software Foundation +ignorable_authors: + - Brian Zimmer +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 + - http://www.jython.org/license.txt +--- + Jython License http://www.jython.org/license.txt diff --git a/src/licensedcode/data/licenses/jython.yml b/src/licensedcode/data/licenses/jython.yml deleted file mode 100644 index 7794da9e865..00000000000 --- a/src/licensedcode/data/licenses/jython.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: jython -short_name: Jython License -name: Jython License -category: Permissive -owner: Python Software Foundation (PSF) -homepage_url: http://www.jython.org/license.txt -notes: this is a complex composite of multiple licenses -spdx_license_key: LicenseRef-scancode-jython -text_urls: - - http://www.jython.org/license.txt -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 1996-1999 Corporation for National Research Initiatives - - Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython Developers - - Copyright (c) 2007 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Jython Developers - - Python Software Foundation -ignorable_authors: - - Brian Zimmer -ignorable_urls: - - http://hdl.handle.net/1895.22/1006 - - http://www.jython.org/license.txt diff --git a/src/licensedcode/data/licenses/kalle-kaukonen.LICENSE b/src/licensedcode/data/licenses/kalle-kaukonen.LICENSE index add55259d7b..1a96a015034 100644 --- a/src/licensedcode/data/licenses/kalle-kaukonen.LICENSE +++ b/src/licensedcode/data/licenses/kalle-kaukonen.LICENSE @@ -1,3 +1,15 @@ +--- +key: kalle-kaukonen +short_name: Kalle Kaukonen License +name: Kalle Kaukonen License +category: Permissive +owner: Kalle Kaukonen +spdx_license_key: LicenseRef-scancode-kalle-kaukonen +other_urls: + - http://files.support.epson.com/htmldocs/wfp4090/wfp4090ug/source/printers/source/notices/reference/copyright_ps_pcl.html + - https://launchpad.net/ubuntu/oneiric/+source/mupdf/+copyright +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that this copyright notice and disclaimer are retained. @@ -10,4 +22,4 @@ DIRECTI, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/kalle-kaukonen.yml b/src/licensedcode/data/licenses/kalle-kaukonen.yml deleted file mode 100644 index e956f0730ff..00000000000 --- a/src/licensedcode/data/licenses/kalle-kaukonen.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: kalle-kaukonen -short_name: Kalle Kaukonen License -name: Kalle Kaukonen License -category: Permissive -owner: Kalle Kaukonen -spdx_license_key: LicenseRef-scancode-kalle-kaukonen -other_urls: - - http://files.support.epson.com/htmldocs/wfp4090/wfp4090ug/source/printers/source/notices/reference/copyright_ps_pcl.html - - https://launchpad.net/ubuntu/oneiric/+source/mupdf/+copyright diff --git a/src/licensedcode/data/licenses/karl-peterson.LICENSE b/src/licensedcode/data/licenses/karl-peterson.LICENSE index e1ad3328d20..796811b9f0f 100644 --- a/src/licensedcode/data/licenses/karl-peterson.LICENSE +++ b/src/licensedcode/data/licenses/karl-peterson.LICENSE @@ -1,3 +1,15 @@ +--- +key: karl-peterson +short_name: Karl Peterson License +name: Karl Peterson License +category: Free Restricted +owner: Karl Peterson +homepage_url: http://www.mvps.org/vb +spdx_license_key: LicenseRef-scancode-karl-peterson +other_urls: + - http://www.mvps.org/vb +--- + You are free to use this code within your own applications, but you are expressly forbidden from selling or otherwise distributing this source code without prior written consent. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/karl-peterson.yml b/src/licensedcode/data/licenses/karl-peterson.yml deleted file mode 100644 index 6a7dde2d77d..00000000000 --- a/src/licensedcode/data/licenses/karl-peterson.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: karl-peterson -short_name: Karl Peterson License -name: Karl Peterson License -category: Free Restricted -owner: Karl Peterson -homepage_url: http://www.mvps.org/vb -spdx_license_key: LicenseRef-scancode-karl-peterson -other_urls: - - http://www.mvps.org/vb diff --git a/src/licensedcode/data/licenses/katharos-0.1.0.LICENSE b/src/licensedcode/data/licenses/katharos-0.1.0.LICENSE index a91c4d62619..7f3b0ba09db 100644 --- a/src/licensedcode/data/licenses/katharos-0.1.0.LICENSE +++ b/src/licensedcode/data/licenses/katharos-0.1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: katharos-0.1.0 +short_name: Katharos License v0.1.0 +name: Katharos License v0.1.0 +category: Proprietary Free +owner: Katharos Technology +homepage_url: https://github.com/katharostech/katharos-license/tree/v0.1.0 +spdx_license_key: LicenseRef-scancode-katharos-0.1.0 +text_urls: + - https://github.com/katharostech/katharos-license/blob/v0.1.0/LICENSE.md +ignorable_urls: + - https://firstdonoharm.dev/version/2/1/license.html + - https://github.com/raisely/NoHarm + - https://spdx.org/licenses/BSD-3-Clause.html +--- + # The Katharos License v0.1.0 ## Preamble diff --git a/src/licensedcode/data/licenses/katharos-0.1.0.yml b/src/licensedcode/data/licenses/katharos-0.1.0.yml deleted file mode 100644 index 547f86b5a57..00000000000 --- a/src/licensedcode/data/licenses/katharos-0.1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: katharos-0.1.0 -short_name: Katharos License v0.1.0 -name: Katharos License v0.1.0 -category: Proprietary Free -owner: Katharos Technology -homepage_url: https://github.com/katharostech/katharos-license/tree/v0.1.0 -spdx_license_key: LicenseRef-scancode-katharos-0.1.0 -text_urls: - - https://github.com/katharostech/katharos-license/blob/v0.1.0/LICENSE.md -ignorable_urls: - - https://firstdonoharm.dev/version/2/1/license.html - - https://github.com/raisely/NoHarm - - https://spdx.org/licenses/BSD-3-Clause.html diff --git a/src/licensedcode/data/licenses/kde-accepted-gpl.LICENSE b/src/licensedcode/data/licenses/kde-accepted-gpl.LICENSE index 60a2dffc9ce..c0ce06c5ddc 100644 --- a/src/licensedcode/data/licenses/kde-accepted-gpl.LICENSE +++ b/src/licensedcode/data/licenses/kde-accepted-gpl.LICENSE @@ -1,3 +1,16 @@ +--- +key: kde-accepted-gpl +short_name: KDE Accepted GPL +name: KDE Accepted GPL +category: Copyleft +owner: KDE Project +homepage_url: https://github.com/KDE/licensedigger/blob/master/LICENSES/LicenseRef-KDE-Accepted-GPL.txt +spdx_license_key: LicenseRef-scancode-kde-accepted-gpl +other_spdx_license_keys: + - LicenseRef-KDE-Accepted-GPL +faq_url: https://community.kde.org/Policies/Licensing_Policy +--- + This library 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 @@ -9,4 +22,4 @@ proxy as defined in Section 14 of version 3 of the license. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/kde-accepted-gpl.yml b/src/licensedcode/data/licenses/kde-accepted-gpl.yml deleted file mode 100644 index 9323300e4f8..00000000000 --- a/src/licensedcode/data/licenses/kde-accepted-gpl.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: kde-accepted-gpl -short_name: KDE Accepted GPL -name: KDE Accepted GPL -category: Copyleft -owner: KDE Project -homepage_url: https://github.com/KDE/licensedigger/blob/master/LICENSES/LicenseRef-KDE-Accepted-GPL.txt -spdx_license_key: LicenseRef-scancode-kde-accepted-gpl -other_spdx_license_keys: - - LicenseRef-KDE-Accepted-GPL -faq_url: https://community.kde.org/Policies/Licensing_Policy diff --git a/src/licensedcode/data/licenses/kde-accepted-lgpl.LICENSE b/src/licensedcode/data/licenses/kde-accepted-lgpl.LICENSE index a8ede546c6d..fb9a5eebf71 100644 --- a/src/licensedcode/data/licenses/kde-accepted-lgpl.LICENSE +++ b/src/licensedcode/data/licenses/kde-accepted-lgpl.LICENSE @@ -1,3 +1,16 @@ +--- +key: kde-accepted-lgpl +short_name: KDE Accepted LGPL +name: KDE Accepted LGPL +category: Copyleft +owner: KDE Project +homepage_url: https://github.com/KDE/kate/blob/master/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt +spdx_license_key: LicenseRef-scancode-kde-accepted-lgpl +other_spdx_license_keys: + - LicenseRef-KDE-Accepted-LGPL +faq_url: https://community.kde.org/Policies/Licensing_Policy +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/licenses/kde-accepted-lgpl.yml b/src/licensedcode/data/licenses/kde-accepted-lgpl.yml deleted file mode 100644 index 114a4981c69..00000000000 --- a/src/licensedcode/data/licenses/kde-accepted-lgpl.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: kde-accepted-lgpl -short_name: KDE Accepted LGPL -name: KDE Accepted LGPL -category: Copyleft -owner: KDE Project -homepage_url: https://github.com/KDE/kate/blob/master/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt -spdx_license_key: LicenseRef-scancode-kde-accepted-lgpl -other_spdx_license_keys: - - LicenseRef-KDE-Accepted-LGPL -faq_url: https://community.kde.org/Policies/Licensing_Policy diff --git a/src/licensedcode/data/licenses/keith-rule.LICENSE b/src/licensedcode/data/licenses/keith-rule.LICENSE index 19118bef53b..0596ea1d33e 100644 --- a/src/licensedcode/data/licenses/keith-rule.LICENSE +++ b/src/licensedcode/data/licenses/keith-rule.LICENSE @@ -1,2 +1,11 @@ +--- +key: keith-rule +short_name: Keith Rule License +name: Keith Rule License +category: Permissive +owner: Keith Rule +spdx_license_key: LicenseRef-scancode-keith-rule +--- + You may freely use or modify this code provided this -Copyright is included in all derived versions. +Copyright is included in all derived versions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/keith-rule.yml b/src/licensedcode/data/licenses/keith-rule.yml deleted file mode 100644 index 796cf7676e7..00000000000 --- a/src/licensedcode/data/licenses/keith-rule.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: keith-rule -short_name: Keith Rule License -name: Keith Rule License -category: Permissive -owner: Keith Rule -spdx_license_key: LicenseRef-scancode-keith-rule diff --git a/src/licensedcode/data/licenses/kerberos.LICENSE b/src/licensedcode/data/licenses/kerberos.LICENSE index 5d5c649f160..69af2f46e57 100644 --- a/src/licensedcode/data/licenses/kerberos.LICENSE +++ b/src/licensedcode/data/licenses/kerberos.LICENSE @@ -1,3 +1,28 @@ +--- +key: kerberos +short_name: Kerberos License +name: Kerberos License +category: Permissive +owner: MIT +notes: this is a complex composite +spdx_license_key: LicenseRef-scancode-kerberos +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2001, Dr Brian Gladman + - Copyright 1983 Regents of the University of California + - Copyright 1985-2002 by the Massachusetts Institute of Technology + - Copyright 2000 by Zero-Knowledge Systems, Inc. + - Copyright, OpenVision Technologies, Inc., 1996 +ignorable_holders: + - Dr Brian Gladman + - OpenVision Technologies, Inc. + - Regents of the University of California + - Zero-Knowledge Systems, Inc. + - the Massachusetts Institute of Technology +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + Kerberos License Copyright @copyright{} 1985-2002 by the Massachusetts Institute of Technology. @@ -120,4 +145,4 @@ Berkeley and its contributors. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior -written permission. +written permission. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/kerberos.yml b/src/licensedcode/data/licenses/kerberos.yml deleted file mode 100644 index 6d12f7dce9d..00000000000 --- a/src/licensedcode/data/licenses/kerberos.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: kerberos -short_name: Kerberos License -name: Kerberos License -category: Permissive -owner: MIT -notes: this is a complex composite -spdx_license_key: LicenseRef-scancode-kerberos -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2001, Dr Brian Gladman - - Copyright 1983 Regents of the University of California - - Copyright 1985-2002 by the Massachusetts Institute of Technology - - Copyright 2000 by Zero-Knowledge Systems, Inc. - - Copyright, OpenVision Technologies, Inc., 1996 -ignorable_holders: - - Dr Brian Gladman - - OpenVision Technologies, Inc. - - Regents of the University of California - - Zero-Knowledge Systems, Inc. - - the Massachusetts Institute of Technology -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/licenses/kevan-stannard.LICENSE b/src/licensedcode/data/licenses/kevan-stannard.LICENSE index 861c05ba115..dac89e24640 100644 --- a/src/licensedcode/data/licenses/kevan-stannard.LICENSE +++ b/src/licensedcode/data/licenses/kevan-stannard.LICENSE @@ -1,3 +1,46 @@ +--- +key: kevan-stannard +short_name: Kevan Stannard License +name: Kevan Stannard Free Software License +category: Permissive +owner: Kevan Stannard +homepage_url: https://github.com/jmlingeman/Network-Inference-Workspace/blob/master/algorithms/banjo/src/edu/duke/cs/banjo/utility/JZOOWildCardFilter.java#L30 +spdx_license_key: LicenseRef-scancode-kevan-stannard +standard_notice: | + * Copyright (c) 1998 Kevan Stannard. All Rights Reserved. + * + * Permission to use, copy, modify, and distribute this software + * and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and + * without fee is hereby granted. + * + * Please note that this software comes with + * NO WARRANTY + * + * BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR + THE PROGRAM, TO THE EXTENT PERMITTED + * BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES + * PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER + EXPRESSED OR IMPLIED, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE. THE ENTIRE RISK AS + * TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE + PROGRAM PROVE DEFECTIVE, YOU ASSUME + * THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + * + * IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER + * PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, + BE LIABLE TO YOU FOR DAMAGES, + * INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES + ARISING OUT OF THE USE OR INABILITY TO USE + * THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING + RENDERED INACCURATE OR LOSSES SUSTAINED + * BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY + OTHER PROGRAMS), EVEN IF SUCH HOLDER + * OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted. diff --git a/src/licensedcode/data/licenses/kevan-stannard.yml b/src/licensedcode/data/licenses/kevan-stannard.yml deleted file mode 100644 index f89115c80d0..00000000000 --- a/src/licensedcode/data/licenses/kevan-stannard.yml +++ /dev/null @@ -1,40 +0,0 @@ -key: kevan-stannard -short_name: Kevan Stannard License -name: Kevan Stannard Free Software License -category: Permissive -owner: Kevan Stannard -homepage_url: https://github.com/jmlingeman/Network-Inference-Workspace/blob/master/algorithms/banjo/src/edu/duke/cs/banjo/utility/JZOOWildCardFilter.java#L30 -spdx_license_key: LicenseRef-scancode-kevan-stannard -standard_notice: | - * Copyright (c) 1998 Kevan Stannard. All Rights Reserved. - * - * Permission to use, copy, modify, and distribute this software - * and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and - * without fee is hereby granted. - * - * Please note that this software comes with - * NO WARRANTY - * - * BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR - THE PROGRAM, TO THE EXTENT PERMITTED - * BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT - HOLDERS AND/OR OTHER PARTIES - * PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER - EXPRESSED OR IMPLIED, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE. THE ENTIRE RISK AS - * TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE - PROGRAM PROVE DEFECTIVE, YOU ASSUME - * THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - * - * IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING - WILL ANY COPYRIGHT HOLDER, OR ANY OTHER - * PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, - BE LIABLE TO YOU FOR DAMAGES, - * INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES - ARISING OUT OF THE USE OR INABILITY TO USE - * THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING - RENDERED INACCURATE OR LOSSES SUSTAINED - * BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY - OTHER PROGRAMS), EVEN IF SUCH HOLDER - * OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. diff --git a/src/licensedcode/data/licenses/kevlin-henney.LICENSE b/src/licensedcode/data/licenses/kevlin-henney.LICENSE index c76b09365d4..362dab5f86a 100644 --- a/src/licensedcode/data/licenses/kevlin-henney.LICENSE +++ b/src/licensedcode/data/licenses/kevlin-henney.LICENSE @@ -1,3 +1,12 @@ +--- +key: kevlin-henney +short_name: Kevlin Henney License +name: Kevlin Henney License +category: Permissive +owner: Kevlin Henney +spdx_license_key: LicenseRef-scancode-kevlin-henney +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted without fee, provided that this copyright and permissions notice appear in all copies and @@ -5,4 +14,4 @@ derivatives. This software is supplied "as is" without express or implied warranty. -But that said, if there are any problems please get in touch. +But that said, if there are any problems please get in touch. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/kevlin-henney.yml b/src/licensedcode/data/licenses/kevlin-henney.yml deleted file mode 100644 index 7600768a2ce..00000000000 --- a/src/licensedcode/data/licenses/kevlin-henney.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: kevlin-henney -short_name: Kevlin Henney License -name: Kevlin Henney License -category: Permissive -owner: Kevlin Henney -spdx_license_key: LicenseRef-scancode-kevlin-henney diff --git a/src/licensedcode/data/licenses/kfqf-accepted-gpl.LICENSE b/src/licensedcode/data/licenses/kfqf-accepted-gpl.LICENSE index 796b71f7d22..fde568fb7e1 100644 --- a/src/licensedcode/data/licenses/kfqf-accepted-gpl.LICENSE +++ b/src/licensedcode/data/licenses/kfqf-accepted-gpl.LICENSE @@ -1,3 +1,20 @@ +--- +key: kfqf-accepted-gpl +short_name: KFQF Accepted GPL +name: KFQF Accepted GPL +category: Copyleft +owner: KDE Project +homepage_url: https://github.com/KDE/licensedigger/blob/master/licensetexts/LicenseRef-KFQF-Accepted-GPL.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-kfqf-accepted-gpl +other_spdx_license_keys: + - LicenseRef-KFQF-Accepted-GPL +minimum_coverage: 60 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html + - https://www.gnu.org/licenses/gpl-3.0.html +--- + Alternatively, this file may be used under the terms of the GNU General Public License version 2.0 or (at your option) the GNU General Public license version 3 or any later version approved by the KDE Free diff --git a/src/licensedcode/data/licenses/kfqf-accepted-gpl.yml b/src/licensedcode/data/licenses/kfqf-accepted-gpl.yml deleted file mode 100644 index 7d05eff8975..00000000000 --- a/src/licensedcode/data/licenses/kfqf-accepted-gpl.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: kfqf-accepted-gpl -short_name: KFQF Accepted GPL -name: KFQF Accepted GPL -category: Copyleft -owner: KDE Project -homepage_url: https://github.com/KDE/licensedigger/blob/master/licensetexts/LicenseRef-KFQF-Accepted-GPL.txt -is_exception: yes -spdx_license_key: LicenseRef-scancode-kfqf-accepted-gpl -other_spdx_license_keys: - - LicenseRef-KFQF-Accepted-GPL -minimum_coverage: 60 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/licenses/khronos.LICENSE b/src/licensedcode/data/licenses/khronos.LICENSE index 893fab619a7..81a09b25da8 100644 --- a/src/licensedcode/data/licenses/khronos.LICENSE +++ b/src/licensedcode/data/licenses/khronos.LICENSE @@ -1,3 +1,19 @@ +--- +key: khronos +short_name: Khronos License +name: Khronos License +category: Permissive +owner: Khronos Group +notes: | + This is the same text as the MIT license with minor modifications. In the + first paragraph "this software and/or associated documentation" is used + instead of "this software and associated documentation" The words "the + Software" are replaced by the words "the Materials". +spdx_license_key: LicenseRef-scancode-khronos +other_urls: + - http://www.khronos.org/developers +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or associated documentation files (the "Materials"), to deal in the Materials without restriction, including @@ -15,4 +31,4 @@ 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/khronos.yml b/src/licensedcode/data/licenses/khronos.yml deleted file mode 100644 index 6462fee4e98..00000000000 --- a/src/licensedcode/data/licenses/khronos.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: khronos -short_name: Khronos License -name: Khronos License -category: Permissive -owner: Khronos Group -notes: | - This is the same text as the MIT license with minor modifications. In the - first paragraph "this software and/or associated documentation" is used - instead of "this software and associated documentation" The words "the - Software" are replaced by the words "the Materials". -spdx_license_key: LicenseRef-scancode-khronos -other_urls: - - http://www.khronos.org/developers diff --git a/src/licensedcode/data/licenses/kicad-libraries-exception.LICENSE b/src/licensedcode/data/licenses/kicad-libraries-exception.LICENSE index 7af1bcb24e6..49a7373e5e9 100644 --- a/src/licensedcode/data/licenses/kicad-libraries-exception.LICENSE +++ b/src/licensedcode/data/licenses/kicad-libraries-exception.LICENSE @@ -1,3 +1,18 @@ +--- +key: kicad-libraries-exception +short_name: KiCad Libraries Exception to CC-BY-SA-4.0 +name: KiCad Libraries Exception to CC-BY-SA-4.0 +category: Copyleft Limited +owner: KiCad +notes: this is always an execption to the CC-BY-SA-4.0 license. and the homepage introduces + this expection this way "The KiCad libraries are licensed under the Creative Commons CC-BY-SA + 4.0 License, with the following exception." We used to track this as cc-by-sa-4.0 WITH generic-exception +is_exception: yes +spdx_license_key: KiCad-libraries-exception +other_urls: + - https://www.kicad.org/libraries/license/ +--- + To the extent that the creation of electronic designs that use 'Licensed Material' can be considered to be 'Adapted Material', then the copyright holder waives article 3 of the license with respect to these designs and any generated files which use diff --git a/src/licensedcode/data/licenses/kicad-libraries-exception.yml b/src/licensedcode/data/licenses/kicad-libraries-exception.yml deleted file mode 100644 index 2ba7086b36d..00000000000 --- a/src/licensedcode/data/licenses/kicad-libraries-exception.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: kicad-libraries-exception -short_name: KiCad Libraries Exception to CC-BY-SA-4.0 -name: KiCad Libraries Exception to CC-BY-SA-4.0 -category: Copyleft Limited -owner: KiCad -notes: this is always an execption to the CC-BY-SA-4.0 license. and the homepage introduces - this expection this way "The KiCad libraries are licensed under the Creative Commons CC-BY-SA - 4.0 License, with the following exception." We used to track this as cc-by-sa-4.0 WITH generic-exception -is_exception: yes -spdx_license_key: KiCad-libraries-exception -other_urls: - - https://www.kicad.org/libraries/license/ diff --git a/src/licensedcode/data/licenses/kreative-relay-fonts-free-use-1.2f.LICENSE b/src/licensedcode/data/licenses/kreative-relay-fonts-free-use-1.2f.LICENSE index 05bc0fe312a..824345885ec 100644 --- a/src/licensedcode/data/licenses/kreative-relay-fonts-free-use-1.2f.LICENSE +++ b/src/licensedcode/data/licenses/kreative-relay-fonts-free-use-1.2f.LICENSE @@ -1,3 +1,17 @@ +--- +key: kreative-relay-fonts-free-use-1.2f +short_name: Kreative Software Relay Fonts Free Use 1.2f +name: Kreative Software Relay Fonts Free Use License 1.2f +category: Proprietary Free +owner: KreativeKorp +homepage_url: http://www.kreativekorp.com/software/fonts/FreeLicense.txt +spdx_license_key: LicenseRef-scancode-kreative-relay-fonts-free-1.2f +other_spdx_license_keys: + - LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f +other_urls: + - http://www.kreativekorp.com/software/fonts/index.shtml +--- + KREATIVE SOFTWARE RELAY FONTS FREE USE LICENSE version 1.2f diff --git a/src/licensedcode/data/licenses/kreative-relay-fonts-free-use-1.2f.yml b/src/licensedcode/data/licenses/kreative-relay-fonts-free-use-1.2f.yml deleted file mode 100644 index 75a73bab6c2..00000000000 --- a/src/licensedcode/data/licenses/kreative-relay-fonts-free-use-1.2f.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: kreative-relay-fonts-free-use-1.2f -short_name: Kreative Software Relay Fonts Free Use 1.2f -name: Kreative Software Relay Fonts Free Use License 1.2f -category: Proprietary Free -owner: KreativeKorp -homepage_url: http://www.kreativekorp.com/software/fonts/FreeLicense.txt -spdx_license_key: LicenseRef-scancode-kreative-relay-fonts-free-1.2f -other_spdx_license_keys: - - LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f -other_urls: - - http://www.kreativekorp.com/software/fonts/index.shtml diff --git a/src/licensedcode/data/licenses/kumar-robotics.LICENSE b/src/licensedcode/data/licenses/kumar-robotics.LICENSE index 04d9bdd3011..9c24920df6e 100644 --- a/src/licensedcode/data/licenses/kumar-robotics.LICENSE +++ b/src/licensedcode/data/licenses/kumar-robotics.LICENSE @@ -1,3 +1,25 @@ +--- +key: kumar-robotics +short_name: Kumar Robotics License +name: Kumar Robotics License +category: Permissive +owner: Kumar Robotics +homepage_url: https://github.com/KumarRobotics/motion_capture_system/blob/master/mocap_qualisys/include/mocap_qualisys/StdString.h#L316 +spdx_license_key: LicenseRef-scancode-kumar-robotics +other_urls: + - https://github.com/KumarRobotics/motion_capture_system +standard_notice: | + // COPYRIGHT: + // 2002 Joseph M. O'Leary. This code is 100% free. Use it anywhere you + // want. Rewrite it, restructure it, whatever. If you can write software + // that makes money off of it, good for you. I kinda like capitalism. + // Please don't blame me if it causes your $30 billion dollar satellite + // explode in orbit. If you redistribute it in any form, I'd appreciate it + // if you would leave this notice here. + // ======================================================================== + ===== +--- + This code is 100% free. Use it anywhere you want. Rewrite it, restructure it, whatever. If you can write software that makes money off of it, good for you. I kinda like capitalism. diff --git a/src/licensedcode/data/licenses/kumar-robotics.yml b/src/licensedcode/data/licenses/kumar-robotics.yml deleted file mode 100644 index 0523050b893..00000000000 --- a/src/licensedcode/data/licenses/kumar-robotics.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: kumar-robotics -short_name: Kumar Robotics License -name: Kumar Robotics License -category: Permissive -owner: Kumar Robotics -homepage_url: https://github.com/KumarRobotics/motion_capture_system/blob/master/mocap_qualisys/include/mocap_qualisys/StdString.h#L316 -spdx_license_key: LicenseRef-scancode-kumar-robotics -other_urls: - - https://github.com/KumarRobotics/motion_capture_system -standard_notice: | - // COPYRIGHT: - // 2002 Joseph M. O'Leary. This code is 100% free. Use it anywhere you - // want. Rewrite it, restructure it, whatever. If you can write software - // that makes money off of it, good for you. I kinda like capitalism. - // Please don't blame me if it causes your $30 billion dollar satellite - // explode in orbit. If you redistribute it in any form, I'd appreciate it - // if you would leave this notice here. - // ======================================================================== - ===== diff --git a/src/licensedcode/data/licenses/lal-1.2.LICENSE b/src/licensedcode/data/licenses/lal-1.2.LICENSE index cdb6c321824..155e7eeb94c 100644 --- a/src/licensedcode/data/licenses/lal-1.2.LICENSE +++ b/src/licensedcode/data/licenses/lal-1.2.LICENSE @@ -1,3 +1,18 @@ +--- +key: lal-1.2 +language: fr +short_name: Licence Art Libre 1.2 +name: Licence Art Libre 1.2 +category: Copyleft +owner: Licence Art Libre +homepage_url: http://artlibre.org/licence/lal/licence-art-libre-12/ +spdx_license_key: LAL-1.2 +text_urls: + - http://artlibre.org/licence/lal/licence-art-libre-12/ + - http://artlibre.org/licence/lal/it/ + - http://artlibre.org/licence/lal/es/ +--- + Licence Art Libre 
[ Copyleft Attitude ] Version 1.2 diff --git a/src/licensedcode/data/licenses/lal-1.2.yml b/src/licensedcode/data/licenses/lal-1.2.yml deleted file mode 100644 index 3b944ea2b52..00000000000 --- a/src/licensedcode/data/licenses/lal-1.2.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: lal-1.2 -language: fr -short_name: Licence Art Libre 1.2 -name: Licence Art Libre 1.2 -category: Copyleft -owner: Licence Art Libre -homepage_url: http://artlibre.org/licence/lal/licence-art-libre-12/ -spdx_license_key: LAL-1.2 -text_urls: - - http://artlibre.org/licence/lal/licence-art-libre-12/ - - http://artlibre.org/licence/lal/it/ - - http://artlibre.org/licence/lal/es/ diff --git a/src/licensedcode/data/licenses/lal-1.3.LICENSE b/src/licensedcode/data/licenses/lal-1.3.LICENSE index f1703ee21a0..832955a3d88 100644 --- a/src/licensedcode/data/licenses/lal-1.3.LICENSE +++ b/src/licensedcode/data/licenses/lal-1.3.LICENSE @@ -1,3 +1,17 @@ +--- +key: lal-1.3 +language: fr +short_name: Licence Art Libre 1.3 +name: Licence Art Libre 1.3 +category: Copyleft +owner: Licence Art Libre +homepage_url: http://artlibre.org/ +spdx_license_key: LAL-1.3 +other_urls: + - http://artlibre.org/licence/lal/en/ + - https://artlibre.org/ +--- + Licence Art Libre 1.3 (LAL 1.3) Préambule : diff --git a/src/licensedcode/data/licenses/lal-1.3.yml b/src/licensedcode/data/licenses/lal-1.3.yml deleted file mode 100644 index ed038caa938..00000000000 --- a/src/licensedcode/data/licenses/lal-1.3.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lal-1.3 -language: fr -short_name: Licence Art Libre 1.3 -name: Licence Art Libre 1.3 -category: Copyleft -owner: Licence Art Libre -homepage_url: http://artlibre.org/ -spdx_license_key: LAL-1.3 -other_urls: - - http://artlibre.org/licence/lal/en/ - - https://artlibre.org/ diff --git a/src/licensedcode/data/licenses/larabie.LICENSE b/src/licensedcode/data/licenses/larabie.LICENSE index 4c260b3a43c..15dc24af6e6 100644 --- a/src/licensedcode/data/licenses/larabie.LICENSE +++ b/src/licensedcode/data/licenses/larabie.LICENSE @@ -1,3 +1,19 @@ +--- +key: larabie +short_name: Larabie Fonts EULA +name: Larabie Fonts EULA +category: Proprietary Free +owner: Larabie Fonts +spdx_license_key: LicenseRef-scancode-larabie +ignorable_urls: + - http://come.to/larabiefonts + - http://uk.zarcrom.com/font/ + - http://www.larabiefonts.com/ +ignorable_emails: + - drowsy@cheerful.com + - rlarabie@hotmail.com +--- + The fonts contained in this archive are Freeware. No payment is required for the use of these fonts. They're free! Commercial use? Sure, but a donation or a product sample would be appreciated. diff --git a/src/licensedcode/data/licenses/larabie.yml b/src/licensedcode/data/licenses/larabie.yml deleted file mode 100644 index 967845531ce..00000000000 --- a/src/licensedcode/data/licenses/larabie.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: larabie -short_name: Larabie Fonts EULA -name: Larabie Fonts EULA -category: Proprietary Free -owner: Larabie Fonts -spdx_license_key: LicenseRef-scancode-larabie -ignorable_urls: - - http://come.to/larabiefonts - - http://uk.zarcrom.com/font/ - - http://www.larabiefonts.com/ -ignorable_emails: - - drowsy@cheerful.com - - rlarabie@hotmail.com diff --git a/src/licensedcode/data/licenses/latex2e.LICENSE b/src/licensedcode/data/licenses/latex2e.LICENSE index 811937bbc58..a7b65c5798e 100644 --- a/src/licensedcode/data/licenses/latex2e.LICENSE +++ b/src/licensedcode/data/licenses/latex2e.LICENSE @@ -1,3 +1,14 @@ +--- +key: latex2e +short_name: Latex2e License +name: Latex2e License +category: Permissive +owner: LaTeX +homepage_url: https://fedoraproject.org/wiki/Licensing/Latex2e +notes: the latext2e, verbatim-manual and abstyles are similar licenses +spdx_license_key: Latex2e +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. diff --git a/src/licensedcode/data/licenses/latex2e.yml b/src/licensedcode/data/licenses/latex2e.yml deleted file mode 100644 index f159c136c75..00000000000 --- a/src/licensedcode/data/licenses/latex2e.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: latex2e -short_name: Latex2e License -name: Latex2e License -category: Permissive -owner: LaTeX -homepage_url: https://fedoraproject.org/wiki/Licensing/Latex2e -notes: the latext2e, verbatim-manual and abstyles are similar licenses -spdx_license_key: Latex2e diff --git a/src/licensedcode/data/licenses/lavantech.LICENSE b/src/licensedcode/data/licenses/lavantech.LICENSE index c54f23118ec..c742e693286 100644 --- a/src/licensedcode/data/licenses/lavantech.LICENSE +++ b/src/licensedcode/data/licenses/lavantech.LICENSE @@ -1,3 +1,17 @@ +--- +key: lavantech +short_name: LavanTech License +name: LavanTech License +category: Commercial +owner: LavanTech +homepage_url: http://www.lavantech.com/license.shtml +spdx_license_key: LicenseRef-scancode-lavantech +text_urls: + - http://www.lavantech.com/license.shtml +ignorable_urls: + - http://www.lavantech.com/license.shtml +--- + LavanTech License http://www.lavantech.com/license.shtml diff --git a/src/licensedcode/data/licenses/lavantech.yml b/src/licensedcode/data/licenses/lavantech.yml deleted file mode 100644 index 801515a2fcc..00000000000 --- a/src/licensedcode/data/licenses/lavantech.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lavantech -short_name: LavanTech License -name: LavanTech License -category: Commercial -owner: LavanTech -homepage_url: http://www.lavantech.com/license.shtml -spdx_license_key: LicenseRef-scancode-lavantech -text_urls: - - http://www.lavantech.com/license.shtml -ignorable_urls: - - http://www.lavantech.com/license.shtml diff --git a/src/licensedcode/data/licenses/lbnl-bsd.LICENSE b/src/licensedcode/data/licenses/lbnl-bsd.LICENSE index 2a3532d3a8f..87ee6ccb434 100644 --- a/src/licensedcode/data/licenses/lbnl-bsd.LICENSE +++ b/src/licensedcode/data/licenses/lbnl-bsd.LICENSE @@ -1,3 +1,21 @@ +--- +key: lbnl-bsd +short_name: LBNL BSD Variant +name: Lawrence Berkeley National Labs BSD variant license +category: Permissive +owner: Regents of the University of California +homepage_url: https://fedoraproject.org/wiki/Licensing:LBNLBSD?rd=Licensing/LBNLBSD +spdx_license_key: BSD-3-Clause-LBNL +other_urls: + - https://fedoraproject.org/wiki/Licensing/LBNLBSD +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley + National Laboratory +ignorable_holders: + - The Regents of the University of California, through Lawrence Berkeley National Laboratory +--- + Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved. @@ -37,4 +55,4 @@ without imposing a separate written license agreement for such Enhancements, then you hereby grant the following license: a non-exclusive, royalty-free perpetual license to install, use, modify, prepare derivative works, incorporate into other computer software, distribute, and sublicense such Enhancements -or derivative works thereof, in binary and source code form. +or derivative works thereof, in binary and source code form. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lbnl-bsd.yml b/src/licensedcode/data/licenses/lbnl-bsd.yml deleted file mode 100644 index c5c7cf36d69..00000000000 --- a/src/licensedcode/data/licenses/lbnl-bsd.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: lbnl-bsd -short_name: LBNL BSD Variant -name: Lawrence Berkeley National Labs BSD variant license -category: Permissive -owner: Regents of the University of California -homepage_url: https://fedoraproject.org/wiki/Licensing:LBNLBSD?rd=Licensing/LBNLBSD -spdx_license_key: BSD-3-Clause-LBNL -other_urls: - - https://fedoraproject.org/wiki/Licensing/LBNLBSD -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley - National Laboratory -ignorable_holders: - - The Regents of the University of California, through Lawrence Berkeley National Laboratory diff --git a/src/licensedcode/data/licenses/lcs-telegraphics.LICENSE b/src/licensedcode/data/licenses/lcs-telegraphics.LICENSE index 6c03ad2aff7..671bd4e021b 100644 --- a/src/licensedcode/data/licenses/lcs-telegraphics.LICENSE +++ b/src/licensedcode/data/licenses/lcs-telegraphics.LICENSE @@ -1,2 +1,11 @@ +--- +key: lcs-telegraphics +short_name: LCS-Telegraphics License +name: LCS-Telegraphics License +category: Permissive +owner: LCS-Telegraphics +spdx_license_key: LicenseRef-scancode-lcs-telegraphics +--- + The text and information contained in this file may be freely used, -copied, or distributed without compensation or licensing restrictions. +copied, or distributed without compensation or licensing restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lcs-telegraphics.yml b/src/licensedcode/data/licenses/lcs-telegraphics.yml deleted file mode 100644 index 20f63604f0f..00000000000 --- a/src/licensedcode/data/licenses/lcs-telegraphics.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: lcs-telegraphics -short_name: LCS-Telegraphics License -name: LCS-Telegraphics License -category: Permissive -owner: LCS-Telegraphics -spdx_license_key: LicenseRef-scancode-lcs-telegraphics diff --git a/src/licensedcode/data/licenses/ldap-sdk-free-use.LICENSE b/src/licensedcode/data/licenses/ldap-sdk-free-use.LICENSE index ad708c81a6b..fb0ea651aa9 100644 --- a/src/licensedcode/data/licenses/ldap-sdk-free-use.LICENSE +++ b/src/licensedcode/data/licenses/ldap-sdk-free-use.LICENSE @@ -1,3 +1,13 @@ +--- +key: ldap-sdk-free-use +short_name: UnboundID LDAP SDK Free Use License +name: UnboundID LDAP SDK Free Use License +category: Permissive +owner: Ping Identity +homepage_url: https://github.com/UnboundID/ldapsdk/blob/master/LICENSE-UnboundID-LDAPSDK.txt +spdx_license_key: LicenseRef-scancode-ldap-sdk-free-use +--- + UnboundID LDAP SDK Free Use License THIS IS AN AGREEMENT BETWEEN YOU ("YOU") AND UNBOUNDID CORP. ("UNBOUNDID") diff --git a/src/licensedcode/data/licenses/ldap-sdk-free-use.yml b/src/licensedcode/data/licenses/ldap-sdk-free-use.yml deleted file mode 100644 index c4f07e5879a..00000000000 --- a/src/licensedcode/data/licenses/ldap-sdk-free-use.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ldap-sdk-free-use -short_name: UnboundID LDAP SDK Free Use License -name: UnboundID LDAP SDK Free Use License -category: Permissive -owner: Ping Identity -homepage_url: https://github.com/UnboundID/ldapsdk/blob/master/LICENSE-UnboundID-LDAPSDK.txt -spdx_license_key: LicenseRef-scancode-ldap-sdk-free-use diff --git a/src/licensedcode/data/licenses/ldpc-1994.LICENSE b/src/licensedcode/data/licenses/ldpc-1994.LICENSE index a60d658966d..3ff31fc7518 100644 --- a/src/licensedcode/data/licenses/ldpc-1994.LICENSE +++ b/src/licensedcode/data/licenses/ldpc-1994.LICENSE @@ -1,3 +1,15 @@ +--- +key: ldpc-1994 +short_name: LDPC-1994 +name: Linux Documentation Project Copying License 1994-03-30 +category: Copyleft +owner: Linux Documentation Project +homepage_url: http://www.ibiblio.org/gferg/ldp_old/LDP-COPYRIGHT_94.html +spdx_license_key: LicenseRef-scancode-ldpc-1994 +ignorable_emails: + - mdw@sunsite.unc.edu +--- + Linux Documentation Project Copying License Last modified 30 March 1994 @@ -32,4 +44,4 @@ We would like to be informed of any plans to publish or distribute LDP manuals, We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately. -Matt Welsh, mdw@sunsite.unc.edu +Matt Welsh, mdw@sunsite.unc.edu \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ldpc-1994.yml b/src/licensedcode/data/licenses/ldpc-1994.yml deleted file mode 100644 index 0f1e0e0e978..00000000000 --- a/src/licensedcode/data/licenses/ldpc-1994.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ldpc-1994 -short_name: LDPC-1994 -name: Linux Documentation Project Copying License 1994-03-30 -category: Copyleft -owner: Linux Documentation Project -homepage_url: http://www.ibiblio.org/gferg/ldp_old/LDP-COPYRIGHT_94.html -spdx_license_key: LicenseRef-scancode-ldpc-1994 -ignorable_emails: - - mdw@sunsite.unc.edu diff --git a/src/licensedcode/data/licenses/ldpc-1997.LICENSE b/src/licensedcode/data/licenses/ldpc-1997.LICENSE index 85ce8a6125b..750f8799ca5 100644 --- a/src/licensedcode/data/licenses/ldpc-1997.LICENSE +++ b/src/licensedcode/data/licenses/ldpc-1997.LICENSE @@ -1,3 +1,17 @@ +--- +key: ldpc-1997 +short_name: LDPC-1997 +name: Linux Documentation Project Copying License 1997-01-06 +category: Copyleft +owner: Linux Documentation Project +homepage_url: https://web.archive.org/web/19990202103614/http://metalab.unc.edu/LDP/COPYRIGHT.html +spdx_license_key: LicenseRef-scancode-ldpc-1997 +text_urls: + - http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1997-01-06.html +ignorable_emails: + - mdw@metalab.unc.edu +--- + Linux Documentation Project Copying License Last modified 6 January 1997 @@ -30,4 +44,4 @@ We do not require to be paid royalties for any profit earned from selling LDP ma We would like to be informed of any plans to publish or distribute LDP manuals, just so we know how they're becoming available. If you are publishing or planning to publish any LDP manuals, please send email to Matt Welsh (email mdw@metalab.unc.edu). -We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately. \ No newline at end of file +We encourage Linux software distributors to distribute the LDP manuals (such as the Installation and Getting Started Guide) with their software. The LDP manuals are intended to be used as the "official" Linux documentation, and we'd like to see mail-order distributors bundling the LDP manuals with the software. As the LDP manuals mature, hopefully they will fulfill this goal more adequately. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ldpc-1997.yml b/src/licensedcode/data/licenses/ldpc-1997.yml deleted file mode 100644 index 50149541d2b..00000000000 --- a/src/licensedcode/data/licenses/ldpc-1997.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ldpc-1997 -short_name: LDPC-1997 -name: Linux Documentation Project Copying License 1997-01-06 -category: Copyleft -owner: Linux Documentation Project -homepage_url: https://web.archive.org/web/19990202103614/http://metalab.unc.edu/LDP/COPYRIGHT.html -spdx_license_key: LicenseRef-scancode-ldpc-1997 -text_urls: - - http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1997-01-06.html -ignorable_emails: - - mdw@metalab.unc.edu diff --git a/src/licensedcode/data/licenses/ldpc-1999.LICENSE b/src/licensedcode/data/licenses/ldpc-1999.LICENSE index af7600bde79..c8a65f7e3f6 100644 --- a/src/licensedcode/data/licenses/ldpc-1999.LICENSE +++ b/src/licensedcode/data/licenses/ldpc-1999.LICENSE @@ -1,3 +1,14 @@ +--- +key: ldpc-1999 +short_name: LDPC-1999 +name: Linux Documentation Project Copying License 1999-09-30 +category: Copyleft +owner: Linux Documentation Project +spdx_license_key: LicenseRef-scancode-ldpc-1999 +text_urls: + - http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1999-09-16.html +--- + Linux Documentation Project Copying License Last Revision: 16 September 1999 @@ -18,5 +29,4 @@ Exceptions to these rules may be granted for academic purposes: write to the aut Please read the LDP Manifesto for further information. If you are authoring a work, the Manifesto provides a sample copyright (derived from the previous area) to utilize, if you so desire. There is also a section devoted to Publishing LDP Manuals. If you're a publishing company interested in distributing any of the LDP manuals, please read that particular section. -If you have any questions, please email the LDP coordinator, Guylhem Aznar. - +If you have any questions, please email the LDP coordinator, Guylhem Aznar. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ldpc-1999.yml b/src/licensedcode/data/licenses/ldpc-1999.yml deleted file mode 100644 index ba3928cf979..00000000000 --- a/src/licensedcode/data/licenses/ldpc-1999.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ldpc-1999 -short_name: LDPC-1999 -name: Linux Documentation Project Copying License 1999-09-30 -category: Copyleft -owner: Linux Documentation Project -spdx_license_key: LicenseRef-scancode-ldpc-1999 -text_urls: - - http://linuxmafia.com/faq/Licensing_and_Law/ldpc-license-1999-09-16.html diff --git a/src/licensedcode/data/licenses/ldpgpl-1.LICENSE b/src/licensedcode/data/licenses/ldpgpl-1.LICENSE index 8210b4faa7a..7db3936b316 100644 --- a/src/licensedcode/data/licenses/ldpgpl-1.LICENSE +++ b/src/licensedcode/data/licenses/ldpgpl-1.LICENSE @@ -1,3 +1,14 @@ +--- +key: ldpgpl-1 +short_name: LDPGPL-1 +name: Linux Documentation Project General Public License v1, September 1998 +category: Copyleft +owner: Linux Documentation Project +spdx_license_key: LicenseRef-scancode-ldpgpl-1 +text_urls: + - https://old.calculate-linux.org/packages/licenses/LDP-1 +--- + LDP GENERAL PUBLIC LICENSE Version 1, September 1998 diff --git a/src/licensedcode/data/licenses/ldpgpl-1.yml b/src/licensedcode/data/licenses/ldpgpl-1.yml deleted file mode 100644 index 0e04b6b07df..00000000000 --- a/src/licensedcode/data/licenses/ldpgpl-1.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ldpgpl-1 -short_name: LDPGPL-1 -name: Linux Documentation Project General Public License v1, September 1998 -category: Copyleft -owner: Linux Documentation Project -spdx_license_key: LicenseRef-scancode-ldpgpl-1 -text_urls: - - https://old.calculate-linux.org/packages/licenses/LDP-1 diff --git a/src/licensedcode/data/licenses/ldpgpl-1a.LICENSE b/src/licensedcode/data/licenses/ldpgpl-1a.LICENSE index 2039427fc8d..179c835e459 100644 --- a/src/licensedcode/data/licenses/ldpgpl-1a.LICENSE +++ b/src/licensedcode/data/licenses/ldpgpl-1a.LICENSE @@ -1,3 +1,14 @@ +--- +key: ldpgpl-1a +short_name: LDPGPL-1a +name: Linux Documentation Project General Public License v1a, November 1998 +category: Copyleft +owner: Linux Documentation Project +spdx_license_key: LicenseRef-scancode-ldpgpl-1a +text_urls: + - https://old.calculate-linux.org/packages/licenses/LDP-1a +--- + LDP GENERAL PUBLIC LICENSE Version 1a, November 1998 diff --git a/src/licensedcode/data/licenses/ldpgpl-1a.yml b/src/licensedcode/data/licenses/ldpgpl-1a.yml deleted file mode 100644 index ba6a3beed44..00000000000 --- a/src/licensedcode/data/licenses/ldpgpl-1a.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ldpgpl-1a -short_name: LDPGPL-1a -name: Linux Documentation Project General Public License v1a, November 1998 -category: Copyleft -owner: Linux Documentation Project -spdx_license_key: LicenseRef-scancode-ldpgpl-1a -text_urls: - - https://old.calculate-linux.org/packages/licenses/LDP-1a diff --git a/src/licensedcode/data/licenses/ldpl-2.0.LICENSE b/src/licensedcode/data/licenses/ldpl-2.0.LICENSE index 00ece9de9e6..381da8915cf 100644 --- a/src/licensedcode/data/licenses/ldpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/ldpl-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ldpl-2.0 +short_name: LDPL-2.0 +name: Linux Documentation Project License (LDPL) v2.0 +category: Copyleft +owner: Linux Documentation Project +homepage_url: http://tldp.org/COPYRIGHT.html +spdx_license_key: LicenseRef-scancode-ldpl-2.0 +text_urls: + - http://linuxmafia.com/faq/Licensing_and_Law/ldp-license-2.0.html +ignorable_urls: + - http://sunsite.unc.edu/LDP +ignorable_emails: + - guylhem@metalab.unc.edu +--- + LINUX DOCUMENTATION PROJECT LICENSE (LDPL) v2.0, 12 January 1998 @@ -51,4 +67,4 @@ LDP Policy Appendices LDP authors who want to include their own license on LDP works may do so, as long as their terms are not more restrictive than the LDP license, except that they may require that the document may not be modified. - If you have questions about the LDP License, please contact Guylhem Aznar, guylhem@metalab.unc.edu. + If you have questions about the LDP License, please contact Guylhem Aznar, guylhem@metalab.unc.edu. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ldpl-2.0.yml b/src/licensedcode/data/licenses/ldpl-2.0.yml deleted file mode 100644 index 7908205dcb6..00000000000 --- a/src/licensedcode/data/licenses/ldpl-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ldpl-2.0 -short_name: LDPL-2.0 -name: Linux Documentation Project License (LDPL) v2.0 -category: Copyleft -owner: Linux Documentation Project -homepage_url: http://tldp.org/COPYRIGHT.html -spdx_license_key: LicenseRef-scancode-ldpl-2.0 -text_urls: - - http://linuxmafia.com/faq/Licensing_and_Law/ldp-license-2.0.html -ignorable_urls: - - http://sunsite.unc.edu/LDP -ignorable_emails: - - guylhem@metalab.unc.edu diff --git a/src/licensedcode/data/licenses/ldpm-1998.LICENSE b/src/licensedcode/data/licenses/ldpm-1998.LICENSE index 5f044171f14..634ba36588e 100644 --- a/src/licensedcode/data/licenses/ldpm-1998.LICENSE +++ b/src/licensedcode/data/licenses/ldpm-1998.LICENSE @@ -1,3 +1,13 @@ +--- +key: ldpm-1998 +short_name: LDPM-1998 +name: Linux Documentation Project Manifesto Template License 1998-09-21 +category: Copyleft +owner: Linux Documentation Project +homepage_url: http://www.ibiblio.org/gferg/ldp_old/LDP-Manifesto.html +spdx_license_key: LicenseRef-scancode-ldpm-1998 +--- + This is the Linux Documentation Project ``Manifesto'' Last Revision 21 September 1998, by Michael K. Johnson @@ -13,4 +23,4 @@ This manual may be reproduced and distributed in whole or in part, without fee, Exceptions to these rules may be granted for academic purposes: Write to the author and ask. These restrictions are here to protect us as authors, not to restrict you as learners and educators. -All source code in this document is placed under the GNU General Public License, available via anonymous FTP from prep.ai.mit.edu:/pub/gnu/COPYING. \ No newline at end of file +All source code in this document is placed under the GNU General Public License, available via anonymous FTP from prep.ai.mit.edu:/pub/gnu/COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ldpm-1998.yml b/src/licensedcode/data/licenses/ldpm-1998.yml deleted file mode 100644 index 7a6e1581f2d..00000000000 --- a/src/licensedcode/data/licenses/ldpm-1998.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ldpm-1998 -short_name: LDPM-1998 -name: Linux Documentation Project Manifesto Template License 1998-09-21 -category: Copyleft -owner: Linux Documentation Project -homepage_url: http://www.ibiblio.org/gferg/ldp_old/LDP-Manifesto.html -spdx_license_key: LicenseRef-scancode-ldpm-1998 diff --git a/src/licensedcode/data/licenses/leap-motion-sdk-2019.LICENSE b/src/licensedcode/data/licenses/leap-motion-sdk-2019.LICENSE index f947509d04e..2981b89466c 100644 --- a/src/licensedcode/data/licenses/leap-motion-sdk-2019.LICENSE +++ b/src/licensedcode/data/licenses/leap-motion-sdk-2019.LICENSE @@ -1,3 +1,19 @@ +--- +key: leap-motion-sdk-2019 +short_name: Leap Motion SDK Agreement 2019 +name: Leap Motion SDK Agreement 2019 +category: Proprietary Free +owner: Ultraleap +homepage_url: https://central.leapmotion.com/agreements/SdkAgreement +spdx_license_key: LicenseRef-scancode-leap-motion-sdk-2019 +faq_url: https://support.leapmotion.com/hc/en-us/articles/360004340197-SDK-Agreement-FAQs +ignorable_urls: + - http://leapmotion.com/legal +ignorable_emails: + - developers@leapmotion.com + - partnerships@leapmotion.com +--- + Leap Motion SDK Agreement A note on our SDK Agreement diff --git a/src/licensedcode/data/licenses/leap-motion-sdk-2019.yml b/src/licensedcode/data/licenses/leap-motion-sdk-2019.yml deleted file mode 100644 index 8a8031ae62b..00000000000 --- a/src/licensedcode/data/licenses/leap-motion-sdk-2019.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: leap-motion-sdk-2019 -short_name: Leap Motion SDK Agreement 2019 -name: Leap Motion SDK Agreement 2019 -category: Proprietary Free -owner: Ultraleap -homepage_url: https://central.leapmotion.com/agreements/SdkAgreement -spdx_license_key: LicenseRef-scancode-leap-motion-sdk-2019 -faq_url: https://support.leapmotion.com/hc/en-us/articles/360004340197-SDK-Agreement-FAQs -ignorable_urls: - - http://leapmotion.com/legal -ignorable_emails: - - developers@leapmotion.com - - partnerships@leapmotion.com diff --git a/src/licensedcode/data/licenses/leptonica.LICENSE b/src/licensedcode/data/licenses/leptonica.LICENSE index 5c025afed3a..4b72e9f5525 100644 --- a/src/licensedcode/data/licenses/leptonica.LICENSE +++ b/src/licensedcode/data/licenses/leptonica.LICENSE @@ -1,3 +1,13 @@ +--- +key: leptonica +short_name: Leptonica License +name: Leptonica License +category: Permissive +owner: Leptonica +homepage_url: https://fedoraproject.org/wiki/Licensing/Leptonica +spdx_license_key: Leptonica +--- + This software is distributed in the hope that it will be useful, but with NO WARRANTY OF ANY KIND. No author or distributor accepts responsibility to anyone for the consequences of using this software, or for whether it serves any particular purpose or works at all, unless he or she says so in writing. Everyone is granted permission to copy, modify and redistribute this source code, for commercial or non-commercial purposes, with the following restrictions: diff --git a/src/licensedcode/data/licenses/leptonica.yml b/src/licensedcode/data/licenses/leptonica.yml deleted file mode 100644 index a15e69ebde6..00000000000 --- a/src/licensedcode/data/licenses/leptonica.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: leptonica -short_name: Leptonica License -name: Leptonica License -category: Permissive -owner: Leptonica -homepage_url: https://fedoraproject.org/wiki/Licensing/Leptonica -spdx_license_key: Leptonica diff --git a/src/licensedcode/data/licenses/lgpl-2.0-fltk.LICENSE b/src/licensedcode/data/licenses/lgpl-2.0-fltk.LICENSE index 27a32a25873..580faab57aa 100644 --- a/src/licensedcode/data/licenses/lgpl-2.0-fltk.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.0-fltk.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-2.0-fltk +is_deprecated: yes +short_name: LGPL 2.0 with FLTK exception +name: LGPL 2.0 with FLTK exception +category: Copyleft Limited +owner: FLTK +homepage_url: http://www.fltk.org/COPYING.php +is_exception: yes +notes: replaced by fltk-exception-lgpl-2.0 +--- + FLTK License December 11, 2001 @@ -40,4 +52,4 @@ exceptions: documentation to satisfy this requirement: [program/widget] is based in part on the work of - the FLTK project (http://www.fltk.org). + the FLTK project (http://www.fltk.org). \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.0-fltk.yml b/src/licensedcode/data/licenses/lgpl-2.0-fltk.yml deleted file mode 100644 index 7daadff2fd5..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.0-fltk.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lgpl-2.0-fltk -is_deprecated: yes -short_name: LGPL 2.0 with FLTK exception -name: LGPL 2.0 with FLTK exception -category: Copyleft Limited -owner: FLTK -homepage_url: http://www.fltk.org/COPYING.php -is_exception: yes -notes: replaced by fltk-exception-lgpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.0-plus-gcc.LICENSE b/src/licensedcode/data/licenses/lgpl-2.0-plus-gcc.LICENSE index 7feaf4c1161..0581dade151 100644 --- a/src/licensedcode/data/licenses/lgpl-2.0-plus-gcc.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.0-plus-gcc.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-2.0-plus-gcc +is_deprecated: yes +short_name: LGPL 2.0 or later with GCC exception +name: LGPL 2.0 or later with GCC Runtime Library exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +text_urls: + - http://www.opensource.apple.com/source/libcppabi/libcppabi-26/include/demangle.h +--- + This program 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; either version 2, or diff --git a/src/licensedcode/data/licenses/lgpl-2.0-plus-gcc.yml b/src/licensedcode/data/licenses/lgpl-2.0-plus-gcc.yml deleted file mode 100644 index e42f6ec5b69..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.0-plus-gcc.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lgpl-2.0-plus-gcc -is_deprecated: yes -short_name: LGPL 2.0 or later with GCC exception -name: LGPL 2.0 or later with GCC Runtime Library exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -text_urls: - - http://www.opensource.apple.com/source/libcppabi/libcppabi-26/include/demangle.h diff --git a/src/licensedcode/data/licenses/lgpl-2.0-plus.LICENSE b/src/licensedcode/data/licenses/lgpl-2.0-plus.LICENSE index 3a8fadf1705..c2844179378 100644 --- a/src/licensedcode/data/licenses/lgpl-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.0-plus.LICENSE @@ -1,3 +1,30 @@ +--- +key: lgpl-2.0-plus +short_name: LGPL 2.0 or later +name: GNU Library General Public License 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +notes: | + Per SPDX.org, this license was released June 1991. This license has been + superseded by LGPL v2.1 +spdx_license_key: LGPL-2.0-or-later +other_spdx_license_keys: + - LGPL-2.0+ + - LicenseRef-LGPL +text_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html +other_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + 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; either version 2 of the License, or (at your option) any @@ -491,4 +518,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.0-plus.yml b/src/licensedcode/data/licenses/lgpl-2.0-plus.yml deleted file mode 100644 index 2faeffec964..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.0-plus.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: lgpl-2.0-plus -short_name: LGPL 2.0 or later -name: GNU Library General Public License 2.0 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html -notes: | - Per SPDX.org, this license was released June 1991. This license has been - superseded by LGPL v2.1 -spdx_license_key: LGPL-2.0-or-later -other_spdx_license_keys: - - LGPL-2.0+ - - LicenseRef-LGPL -text_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html -other_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/lgpl-2.0.LICENSE b/src/licensedcode/data/licenses/lgpl-2.0.LICENSE index 9e0c266c887..0c7a3de06a6 100644 --- a/src/licensedcode/data/licenses/lgpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.0.LICENSE @@ -1,3 +1,35 @@ +--- +key: lgpl-2.0 +short_name: LGPL 2.0 +name: GNU Library General Public License 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +notes: | + Per SPDX.org, this license was released June 1991. This license has been + superseded by LGPL v2.1 +spdx_license_key: LGPL-2.0-only +other_spdx_license_keys: + - LGPL-2.0 + - LicenseRef-LGPL-2 + - LicenseRef-LGPL-2.0 +text_urls: + - http://www.gnu.org/licenses/lgpl-2.0.html + - http://www.gnu.org/licenses/lgpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/library.txt +other_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html + - http://www.gnu.org/licenses/old-licenses/library.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -478,4 +510,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.0.yml b/src/licensedcode/data/licenses/lgpl-2.0.yml deleted file mode 100644 index fef11b3ae83..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.0.yml +++ /dev/null @@ -1,29 +0,0 @@ -key: lgpl-2.0 -short_name: LGPL 2.0 -name: GNU Library General Public License 2.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html -notes: | - Per SPDX.org, this license was released June 1991. This license has been - superseded by LGPL v2.1 -spdx_license_key: LGPL-2.0-only -other_spdx_license_keys: - - LGPL-2.0 - - LicenseRef-LGPL-2 - - LicenseRef-LGPL-2.0 -text_urls: - - http://www.gnu.org/licenses/lgpl-2.0.html - - http://www.gnu.org/licenses/lgpl-2.0.txt - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt - - http://www.gnu.org/licenses/old-licenses/library.txt -other_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html - - http://www.gnu.org/licenses/old-licenses/library.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html -ignorable_copyrights: - - Copyright (c) 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/lgpl-2.1-digia-qt.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-digia-qt.LICENSE index 42973f05af0..fc8fb44371e 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-digia-qt.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-digia-qt.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-2.1-digia-qt +is_deprecated: yes +short_name: LGPL 2.1 with Digia Qt Exception +name: LGPL 2.1 with Digia Qt Exception +category: Copyleft Limited +owner: Digia +homepage_url: http://doc.qt.io/qt-5/lgpl.html +is_exception: yes +notes: replaced by qt-company-exception-2017-lgpl-2.1 and then by qt-lgpl-exception-1.1 +--- + Digia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/src/licensedcode/data/licenses/lgpl-2.1-digia-qt.yml b/src/licensedcode/data/licenses/lgpl-2.1-digia-qt.yml deleted file mode 100644 index a3716743742..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-digia-qt.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lgpl-2.1-digia-qt -is_deprecated: yes -short_name: LGPL 2.1 with Digia Qt Exception -name: LGPL 2.1 with Digia Qt Exception -category: Copyleft Limited -owner: Digia -homepage_url: http://doc.qt.io/qt-5/lgpl.html -is_exception: yes -notes: replaced by qt-company-exception-2017-lgpl-2.1 and then by qt-lgpl-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.0.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.0.LICENSE index 8c28aac70be..b0e8e6254a3 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.0.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.0.LICENSE @@ -1,7 +1,18 @@ +--- +key: lgpl-2.1-nokia-qt-1.0 +short_name: Nokia Qt LGPL Exception 1.0 +name: Nokia Qt LGPL Exception v1.0 +category: Copyleft Limited +is_exception: yes +is_deprecated: yes +owner: Nokia +notes: Replaced by qt-company-exception-lgpl-2.1 +--- + As a special exception to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute such object code under terms of your choice, provided that the incorporated material (i) does not exceed more than 5% of the total size of the Library; and (ii) is limited to numerical parameters, data structure layouts, accessors, macros, inline -functions and templates. +functions and templates. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.0.yml b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.0.yml deleted file mode 100644 index 10d51dbc4a2..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: lgpl-2.1-nokia-qt-1.0 -short_name: Nokia Qt LGPL Exception 1.0 -name: Nokia Qt LGPL Exception v1.0 -category: Copyleft Limited -is_exception: yes -is_deprecated: yes -owner: Nokia -notes: Replaced by qt-company-exception-lgpl-2.1 diff --git a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.1.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.1.LICENSE index f8b914a3745..b5169704280 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.1.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: lgpl-2.1-nokia-qt-1.1 +short_name: Nokia Qt LGPL Exception 1.1 +name: Nokia Qt LGPL Exception v1.1 +category: Copyleft Limited +is_exception: yes +is_deprecated: yes +notes: replaced by qt-company-exception-lgpl-2.1 +owner: Nokia +text_urls: + - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION +--- + Nokia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.1.yml b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.1.yml deleted file mode 100644 index 36731c95907..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt-1.1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: lgpl-2.1-nokia-qt-1.1 -short_name: Nokia Qt LGPL Exception 1.1 -name: Nokia Qt LGPL Exception v1.1 -category: Copyleft Limited -is_exception: yes -is_deprecated: yes -notes: replaced by qt-company-exception-lgpl-2.1 -owner: Nokia -text_urls: - - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION diff --git a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt.LICENSE index 3f2285c90bb..bf523e41cd2 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-2.1-nokia-qt +is_deprecated: yes +short_name: LGPL 2.1 with Nokia Qt Exception +name: LGPL 2.1 with Nokia Qt Exception +category: Copyleft Limited +owner: Nokia +is_exception: yes +text_urls: + - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION +other_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of 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 @@ -32,4 +46,4 @@ limited to (i) numerical parameters; (ii) data structure layouts; five lines or less in length. Furthermore, you are not required to apply this additional permission to a -modified version of the Library. +modified version of the Library. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt.yml b/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt.yml deleted file mode 100644 index b4874b27462..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-nokia-qt.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lgpl-2.1-nokia-qt -is_deprecated: yes -short_name: LGPL 2.1 with Nokia Qt Exception -name: LGPL 2.1 with Nokia Qt Exception -category: Copyleft Limited -owner: Nokia -is_exception: yes -text_urls: - - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION -other_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/licenses/lgpl-2.1-plus-linking.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-plus-linking.LICENSE index b86d1622940..48815a2f22b 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-plus-linking.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-plus-linking.LICENSE @@ -1,3 +1,18 @@ +--- +key: lgpl-2.1-plus-linking +is_deprecated: yes +short_name: LGPL 2.1 or later with Linking exception +name: LGPL 2.1 or later with Linking exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +notes: replaced by linking-exception-2.1-plus +is_exception: yes +text_urls: + - http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h +other_urls: + - http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h +--- + As a special exception, if you link the code in this file with files compiled with a GNU compiler to produce an executable, that does not cause the resulting executable to be covered by the GNU Lesser General Public License. This diff --git a/src/licensedcode/data/licenses/lgpl-2.1-plus-linking.yml b/src/licensedcode/data/licenses/lgpl-2.1-plus-linking.yml deleted file mode 100644 index d35aedef3df..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-plus-linking.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: lgpl-2.1-plus-linking -is_deprecated: yes -short_name: LGPL 2.1 or later with Linking exception -name: LGPL 2.1 or later with Linking exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -notes: replaced by linking-exception-2.1-plus -is_exception: yes -text_urls: - - http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h -other_urls: - - http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h diff --git a/src/licensedcode/data/licenses/lgpl-2.1-plus-unlimited-linking.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-plus-unlimited-linking.LICENSE index 8f24cefe5b2..50a1db1d22f 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-plus-unlimited-linking.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-plus-unlimited-linking.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-2.1-plus-unlimited-linking +is_deprecated: yes +short_name: LGPL 2.1 or later with Unlimited linking exception +name: LGPL 2.1 or later with Unlimited linking exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +notes: replaced by unlimited-linking-exception-lgpl +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. In addition to the permissions in the GNU Lesser General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute those programs without any restriction coming from the use of this file. (The GNU Lesser General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into another program.) diff --git a/src/licensedcode/data/licenses/lgpl-2.1-plus-unlimited-linking.yml b/src/licensedcode/data/licenses/lgpl-2.1-plus-unlimited-linking.yml deleted file mode 100644 index d4a568db3f3..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-plus-unlimited-linking.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lgpl-2.1-plus-unlimited-linking -is_deprecated: yes -short_name: LGPL 2.1 or later with Unlimited linking exception -name: LGPL 2.1 or later with Unlimited linking exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup -is_exception: yes -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html -notes: replaced by unlimited-linking-exception-lgpl \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.1-plus.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-plus.LICENSE index 937157822c8..e59ad86fcf6 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-plus.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-plus.LICENSE @@ -1,3 +1,32 @@ +--- +key: lgpl-2.1-plus +short_name: LGPL 2.1 or later +name: GNU Lesser General Public License 2.1 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +notes: | + Per SPDX.org, this license was released February 1999. This license is OSI + certified. +spdx_license_key: LGPL-2.1-or-later +other_spdx_license_keys: + - LGPL-2.1+ +text_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +other_urls: + - http://www.gnu.org/copyleft/lesser.html + - http://www.opensource.org/licenses/LGPL-2.1 + - https://opensource.org/licenses/LGPL-2.1 + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any diff --git a/src/licensedcode/data/licenses/lgpl-2.1-plus.yml b/src/licensedcode/data/licenses/lgpl-2.1-plus.yml deleted file mode 100644 index 85b229a3ee9..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-plus.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: lgpl-2.1-plus -short_name: LGPL 2.1 or later -name: GNU Lesser General Public License 2.1 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html -notes: | - Per SPDX.org, this license was released February 1999. This license is OSI - certified. -spdx_license_key: LGPL-2.1-or-later -other_spdx_license_keys: - - LGPL-2.1+ -text_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html -other_urls: - - http://www.gnu.org/copyleft/lesser.html - - http://www.opensource.org/licenses/LGPL-2.1 - - https://opensource.org/licenses/LGPL-2.1 - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/lgpl-2.1-qt-company-2017.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-qt-company-2017.LICENSE index ea61032cae9..7c7ab604fd9 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-qt-company-2017.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-qt-company-2017.LICENSE @@ -1,3 +1,34 @@ +--- +key: lgpl-2.1-qt-company-2017 +is_deprecated: yes +short_name: LGPL 2.1 with Qt Company Exception 2017 +name: LGPL 2.1 with Qt Company Exception 2017 +category: Copyleft Limited +owner: Qt Company +is_exception: yes +standard_notice: | + As an additional permission to the GNU Lesser General Public License + version + 2.1, the object code form of a "work that uses the Library" may incorporate + material from a header file that is part of the Library. You may distribute + such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and + templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + Moreover, you may apply this exception to a modified version of the + Library, + provided that such modification does not involve copying material from the + Library into the modified Library's header files unless such material is + limited to (i) numerical parameters; (ii) data structure layouts; + (iii) accessors; and (iv) small macros, templates and inline functions of + five lines or less in length. + Furthermore, you are not required to apply this additional permission to a + modified version of the Library. +--- + As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute diff --git a/src/licensedcode/data/licenses/lgpl-2.1-qt-company-2017.yml b/src/licensedcode/data/licenses/lgpl-2.1-qt-company-2017.yml deleted file mode 100644 index ca7dffd8c6c..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-qt-company-2017.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: lgpl-2.1-qt-company-2017 -is_deprecated: yes -short_name: LGPL 2.1 with Qt Company Exception 2017 -name: LGPL 2.1 with Qt Company Exception 2017 -category: Copyleft Limited -owner: Qt Company -is_exception: yes -standard_notice: |- - As an additional permission to the GNU Lesser General Public License - version - 2.1, the object code form of a "work that uses the Library" may incorporate - material from a header file that is part of the Library. You may distribute - such object code under terms of your choice, provided that: - (i) the header files of the Library have not been modified; and - (ii) the incorporated material is limited to numerical parameters, data - structure layouts, accessors, macros, inline functions and - templates; and - (iii) you comply with the terms of Section 6 of the GNU Lesser General - Public License version 2.1. - Moreover, you may apply this exception to a modified version of the - Library, - provided that such modification does not involve copying material from the - Library into the modified Library's header files unless such material is - limited to (i) numerical parameters; (ii) data structure layouts; - (iii) accessors; and (iv) small macros, templates and inline functions of - five lines or less in length. - Furthermore, you are not required to apply this additional permission to a - modified version of the Library. diff --git a/src/licensedcode/data/licenses/lgpl-2.1-qt-company.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-qt-company.LICENSE index b2337fdb790..ab66c1ae21f 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-qt-company.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-qt-company.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-2.1-qt-company +is_deprecated: yes +short_name: LGPL 2.1 with Qt Company Exception +name: LGPL 2.1 with Qt Company Exception +category: Copyleft Limited +owner: Qt Company +homepage_url: http://doc.qt.io/qt-4.8/lgpl.html +is_exception: yes +notes: Replaced by the exception qt-company-exception-lgpl-2.1 and a proper license expression +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) diff --git a/src/licensedcode/data/licenses/lgpl-2.1-qt-company.yml b/src/licensedcode/data/licenses/lgpl-2.1-qt-company.yml deleted file mode 100644 index f68336ee32d..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-qt-company.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: lgpl-2.1-qt-company -is_deprecated: yes -short_name: LGPL 2.1 with Qt Company Exception -name: LGPL 2.1 with Qt Company Exception -category: Copyleft Limited -owner: Qt Company -homepage_url: http://doc.qt.io/qt-4.8/lgpl.html -is_exception: yes -notes: Replaced by the exception qt-company-exception-lgpl-2.1 and a proper - license expression \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.1-rxtx.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-rxtx.LICENSE index d68f291f41b..ade43a9cd09 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-rxtx.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-rxtx.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-2.1-rxtx +is_deprecated: yes +short_name: LGPL 2.1 with RXTX exception +name: LGPL 2.1 with RXTX exception +category: Copyleft Limited +owner: RXTX +homepage_url: http://users.frii.com/jarvi/rxtx/license.html +is_exception: yes +other_urls: + - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface +notes: replaced by rxtx-exception-lgpl-2.1 +--- + RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. RXTX is a native interface to serial ports in java. Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who diff --git a/src/licensedcode/data/licenses/lgpl-2.1-rxtx.yml b/src/licensedcode/data/licenses/lgpl-2.1-rxtx.yml deleted file mode 100644 index c6ee1eb4131..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-rxtx.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lgpl-2.1-rxtx -is_deprecated: yes -short_name: LGPL 2.1 with RXTX exception -name: LGPL 2.1 with RXTX exception -category: Copyleft Limited -owner: RXTX -homepage_url: http://users.frii.com/jarvi/rxtx/license.html -is_exception: yes -other_urls: - - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface -notes: replaced by rxtx-exception-lgpl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-2.1-spell-checker.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1-spell-checker.LICENSE index d5ec132ae54..845debbedf7 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1-spell-checker.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1-spell-checker.LICENSE @@ -1,3 +1,28 @@ +--- +key: lgpl-2.1-spell-checker +is_deprecated: yes +short_name: LGPL 2.1 or later with Spell-Checker exception +name: LGPL 2.1 or later with Spell-Checker exception +category: Copyleft Limited +owner: AbiSource +notes: replaced by spell-checker-exception-lgpl-2.1-plus +is_exception: yes +text_urls: + - https://github.com/AbiWord/enchant/blob/master/src/enchant.h +other_urls: + - https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz +standard_notice: | + In addition, as a special exception, Dom Lachowicz + gives permission to link the code of this program with + non-LGPL Spelling Provider libraries (eg: a MSFT Office + spell checker backend) and distribute linked combinations including + the two. You must obey the GNU Lesser General Public License in all + respects for all of the code used other than said providers. If you modify + this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to + do so, delete this exception statement from your version. +--- + In addition, as a special exception, Dom Lachowicz gives permission to link the code of this program with non-LGPL Spelling Provider libraries (eg: a MSFT Office diff --git a/src/licensedcode/data/licenses/lgpl-2.1-spell-checker.yml b/src/licensedcode/data/licenses/lgpl-2.1-spell-checker.yml deleted file mode 100644 index b5843b85363..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1-spell-checker.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: lgpl-2.1-spell-checker -is_deprecated: yes -short_name: LGPL 2.1 or later with Spell-Checker exception -name: LGPL 2.1 or later with Spell-Checker exception -category: Copyleft Limited -owner: AbiSource -notes: replaced by spell-checker-exception-lgpl-2.1-plus -is_exception: yes -text_urls: - - https://github.com/AbiWord/enchant/blob/master/src/enchant.h -other_urls: - - https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz -standard_notice: |- - In addition, as a special exception, Dom Lachowicz - gives permission to link the code of this program with - non-LGPL Spelling Provider libraries (eg: a MSFT Office - spell checker backend) and distribute linked combinations including - the two. You must obey the GNU Lesser General Public License in all - respects for all of the code used other than said providers. If you modify - this file, you may extend this exception to your version of the - file, but you are not obligated to do so. If you do not wish to - do so, delete this exception statement from your version. diff --git a/src/licensedcode/data/licenses/lgpl-2.1.LICENSE b/src/licensedcode/data/licenses/lgpl-2.1.LICENSE index 3f2f6259db8..aae63c65fe9 100644 --- a/src/licensedcode/data/licenses/lgpl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-2.1.LICENSE @@ -1,3 +1,40 @@ +--- +key: lgpl-2.1 +short_name: LGPL 2.1 +name: GNU Lesser General Public License 2.1 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/lgpl-2.1.html +notes: | + Per SPDX.org, this license was released February 1999. This license is OSI + certified. +spdx_license_key: LGPL-2.1-only +other_spdx_license_keys: + - LGPL-2.1 + - LicenseRef-LGPL-2.1 +osi_license_key: LGPL-2.1 +text_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +osi_url: http://opensource.org/licenses/lgpl-2.1.php +other_urls: + - http://creativecommons.org/choose/cc-lgpl + - http://creativecommons.org/images/public/cc-LGPL-a.png + - http://creativecommons.org/licenses/LGPL/2.1/ + - http://creativecommons.org/licenses/LGPL/2.1/legalcode.pt + - http://i.creativecommons.org/l/LGPL/2.1/88x62.png + - http://www.gnu.org/copyleft/lesser.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html + - http://www.opensource.org/licenses/LGPL-2.1 + - https://opensource.org/licenses/LGPL-2.1 + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/licenses/lgpl-2.1.yml b/src/licensedcode/data/licenses/lgpl-2.1.yml deleted file mode 100644 index d708494db34..00000000000 --- a/src/licensedcode/data/licenses/lgpl-2.1.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: lgpl-2.1 -short_name: LGPL 2.1 -name: GNU Lesser General Public License 2.1 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/lgpl-2.1.html -notes: | - Per SPDX.org, this license was released February 1999. This license is OSI - certified. -spdx_license_key: LGPL-2.1-only -other_spdx_license_keys: - - LGPL-2.1 - - LicenseRef-LGPL-2.1 -osi_license_key: LGPL-2.1 -text_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -osi_url: http://opensource.org/licenses/lgpl-2.1.php -other_urls: - - http://creativecommons.org/choose/cc-lgpl - - http://creativecommons.org/images/public/cc-LGPL-a.png - - http://creativecommons.org/licenses/LGPL/2.1/ - - http://creativecommons.org/licenses/LGPL/2.1/legalcode.pt - - http://i.creativecommons.org/l/LGPL/2.1/88x62.png - - http://www.gnu.org/copyleft/lesser.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html - - http://www.opensource.org/licenses/LGPL-2.1 - - https://opensource.org/licenses/LGPL-2.1 - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/lgpl-3-plus-linking.LICENSE b/src/licensedcode/data/licenses/lgpl-3-plus-linking.LICENSE index 39764c6b15b..e6e8f409956 100644 --- a/src/licensedcode/data/licenses/lgpl-3-plus-linking.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-3-plus-linking.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-3-plus-linking +is_deprecated: yes +short_name: LGPL 3.0 or later with Linking exception +name: LGPL 3.0 or later with Linking exception +category: Copyleft Limited +owner: Canonical Inc. +homepage_url: https://github.com/go-yaml/yaml/blob/v2/LICENSE +notes: replaced by linking-exception-lgpl-3.0 +is_exception: yes +text_urls: + - https://github.com/go-yaml/yaml/blob/v2/LICENSE +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any diff --git a/src/licensedcode/data/licenses/lgpl-3-plus-linking.yml b/src/licensedcode/data/licenses/lgpl-3-plus-linking.yml deleted file mode 100644 index 65dfee4a97e..00000000000 --- a/src/licensedcode/data/licenses/lgpl-3-plus-linking.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lgpl-3-plus-linking -is_deprecated: yes -short_name: LGPL 3.0 or later with Linking exception -name: LGPL 3.0 or later with Linking exception -category: Copyleft Limited -owner: Canonical Inc. -homepage_url: https://github.com/go-yaml/yaml/blob/v2/LICENSE -notes: replaced by linking-exception-lgpl-3.0 -is_exception: yes -text_urls: - - https://github.com/go-yaml/yaml/blob/v2/LICENSE diff --git a/src/licensedcode/data/licenses/lgpl-3.0-cygwin.LICENSE b/src/licensedcode/data/licenses/lgpl-3.0-cygwin.LICENSE index efc0707ed86..c37bdf01885 100644 --- a/src/licensedcode/data/licenses/lgpl-3.0-cygwin.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-3.0-cygwin.LICENSE @@ -1,3 +1,16 @@ +--- +key: lgpl-3.0-cygwin +is_deprecated: yes +short_name: LGPL 3.0 or later with Cygwin exception +name: LGPL 3.0 or later with Cygwin exception +category: Copyleft Limited +owner: Cygwin Project +homepage_url: https://cygwin.com/licensing.html +is_exception: yes +other_urls: + - https://cygwin.com/COPYING.LIB +--- + The Cygwin API library found in the winsup subdirectory of the source code is covered by the GNU Lesser General Public License (LGPL) version 3 or later. For details of the requirements of LGPLv3, please read the GNU Lesser General Public License (LGPL). Cygwin™ Linking Exception diff --git a/src/licensedcode/data/licenses/lgpl-3.0-cygwin.yml b/src/licensedcode/data/licenses/lgpl-3.0-cygwin.yml deleted file mode 100644 index 07390665886..00000000000 --- a/src/licensedcode/data/licenses/lgpl-3.0-cygwin.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: lgpl-3.0-cygwin -is_deprecated: yes -short_name: LGPL 3.0 or later with Cygwin exception -name: LGPL 3.0 or later with Cygwin exception -category: Copyleft Limited -owner: Cygwin Project -homepage_url: https://cygwin.com/licensing.html -is_exception: yes -other_urls: - - https://cygwin.com/COPYING.LIB diff --git a/src/licensedcode/data/licenses/lgpl-3.0-linking-exception.LICENSE b/src/licensedcode/data/licenses/lgpl-3.0-linking-exception.LICENSE index 08687a75c5e..f3abb1be122 100644 --- a/src/licensedcode/data/licenses/lgpl-3.0-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-3.0-linking-exception.LICENSE @@ -1,3 +1,21 @@ +--- +key: lgpl-3.0-linking-exception +short_name: LGPL-3.0 Linking Exception +name: LGPL-3.0 Linking Exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://spdx.org/licenses/LGPL-3.0-linking-exception.html +is_exception: yes +spdx_license_key: LGPL-3.0-linking-exception +other_spdx_license_keys: + - LicenseRef-scancode-lgpl-3-plus-linking + - LicenseRef-scancode-linking-exception-lgpl-3.0 +other_urls: + - https://raw.githubusercontent.com/go-xmlpath/xmlpath/v2/LICENSE + - https://github.com/goamz/goamz/blob/master/LICENSE + - https://github.com/juju/errors/blob/master/LICENSE +--- + As a special exception to the GNU Lesser General Public License version 3 ("LGPL3"), the copyright holders of this Library give you permission to convey to a third party a Combined Work that links statically or dynamically to this diff --git a/src/licensedcode/data/licenses/lgpl-3.0-linking-exception.yml b/src/licensedcode/data/licenses/lgpl-3.0-linking-exception.yml deleted file mode 100644 index a76d5b5932b..00000000000 --- a/src/licensedcode/data/licenses/lgpl-3.0-linking-exception.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: lgpl-3.0-linking-exception -short_name: LGPL-3.0 Linking Exception -name: LGPL-3.0 Linking Exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: https://spdx.org/licenses/LGPL-3.0-linking-exception.html -is_exception: yes -spdx_license_key: LGPL-3.0-linking-exception -other_spdx_license_keys: - - LicenseRef-scancode-lgpl-3-plus-linking - - LicenseRef-scancode-linking-exception-lgpl-3.0 -other_urls: - - https://raw.githubusercontent.com/go-xmlpath/xmlpath/v2/LICENSE - - https://github.com/goamz/goamz/blob/master/LICENSE - - https://github.com/juju/errors/blob/master/LICENSE diff --git a/src/licensedcode/data/licenses/lgpl-3.0-plus-openssl.LICENSE b/src/licensedcode/data/licenses/lgpl-3.0-plus-openssl.LICENSE index 3992adad639..c08c867491b 100644 --- a/src/licensedcode/data/licenses/lgpl-3.0-plus-openssl.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-3.0-plus-openssl.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpl-3.0-plus-openssl +is_deprecated: yes +short_name: LGPL 3.0 or later with OpenSSL exception +name: LGPL 3.0 or later with OpenSSL exception +category: Copyleft Limited +owner: psycopg +homepage_url: http://initd.org/psycopg/license/ +notes: this is a composite and exception +is_exception: yes +--- + psycopg2 and the LGPL psycopg2 is free software: you can redistribute it and/or modify it under the diff --git a/src/licensedcode/data/licenses/lgpl-3.0-plus-openssl.yml b/src/licensedcode/data/licenses/lgpl-3.0-plus-openssl.yml deleted file mode 100644 index 96994c37f99..00000000000 --- a/src/licensedcode/data/licenses/lgpl-3.0-plus-openssl.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lgpl-3.0-plus-openssl -is_deprecated: yes -short_name: LGPL 3.0 or later with OpenSSL exception -name: LGPL 3.0 or later with OpenSSL exception -category: Copyleft Limited -owner: psycopg -homepage_url: http://initd.org/psycopg/license/ -notes: this is a composite and exception -is_exception: yes diff --git a/src/licensedcode/data/licenses/lgpl-3.0-plus.LICENSE b/src/licensedcode/data/licenses/lgpl-3.0-plus.LICENSE index 99732e0022f..47e29307f03 100644 --- a/src/licensedcode/data/licenses/lgpl-3.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-3.0-plus.LICENSE @@ -1,3 +1,33 @@ +--- +key: lgpl-3.0-plus +short_name: LGPL 3.0 or later +name: GNU Lesser General Public License 3.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/lgpl-3.0-standalone.html +notes: | + Per SPDX.org, this license was released 29 June 2007. This license is OSI + Certified. +spdx_license_key: LGPL-3.0-or-later +other_spdx_license_keys: + - LGPL-3.0+ +text_urls: + - http://www.gnu.org/licenses/lgpl-3.0-standalone.html +other_urls: + - http://www.gnu.org/copyleft/lesser.html + - http://www.opensource.org/licenses/LGPL-3.0 + - https://opensource.org/licenses/LGPL-3.0 + - https://www.gnu.org/licenses/lgpl+gpl-3.0.txt + - https://www.gnu.org/licenses/lgpl-3.0-standalone.html +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3.0 of the License, or (at your option) any @@ -175,4 +205,4 @@ General Public License ever published by the Free Software Foundation. whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the -Library. +Library. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-3.0-plus.yml b/src/licensedcode/data/licenses/lgpl-3.0-plus.yml deleted file mode 100644 index a23ebf324e8..00000000000 --- a/src/licensedcode/data/licenses/lgpl-3.0-plus.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: lgpl-3.0-plus -short_name: LGPL 3.0 or later -name: GNU Lesser General Public License 3.0 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/lgpl-3.0-standalone.html -notes: | - Per SPDX.org, this license was released 29 June 2007. This license is OSI - Certified. -spdx_license_key: LGPL-3.0-or-later -other_spdx_license_keys: - - LGPL-3.0+ -text_urls: - - http://www.gnu.org/licenses/lgpl-3.0-standalone.html -other_urls: - - http://www.gnu.org/copyleft/lesser.html - - http://www.opensource.org/licenses/LGPL-3.0 - - https://opensource.org/licenses/LGPL-3.0 - - https://www.gnu.org/licenses/lgpl+gpl-3.0.txt - - https://www.gnu.org/licenses/lgpl-3.0-standalone.html -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ diff --git a/src/licensedcode/data/licenses/lgpl-3.0-zeromq.LICENSE b/src/licensedcode/data/licenses/lgpl-3.0-zeromq.LICENSE index b36053497fd..adfa06831e3 100644 --- a/src/licensedcode/data/licenses/lgpl-3.0-zeromq.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-3.0-zeromq.LICENSE @@ -1,3 +1,17 @@ +--- +key: lgpl-3.0-zeromq +is_deprecated: yes +short_name: LGPL 3.0 with ZeroMQ exception +name: LGPL 3.0 with ZeroMQ exception +category: Copyleft Limited +owner: ZeroMQ +homepage_url: https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER +is_exception: yes +faq_url: https://github.com/zeromq/zeromq3-x/blob/master/README +other_urls: + - https://github.com/zeromq/zeromq3-x/blob/master/COPYING +--- + SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS diff --git a/src/licensedcode/data/licenses/lgpl-3.0-zeromq.yml b/src/licensedcode/data/licenses/lgpl-3.0-zeromq.yml deleted file mode 100644 index 3863b839445..00000000000 --- a/src/licensedcode/data/licenses/lgpl-3.0-zeromq.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lgpl-3.0-zeromq -is_deprecated: yes -short_name: LGPL 3.0 with ZeroMQ exception -name: LGPL 3.0 with ZeroMQ exception -category: Copyleft Limited -owner: ZeroMQ -homepage_url: https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER -is_exception: yes -faq_url: https://github.com/zeromq/zeromq3-x/blob/master/README -other_urls: - - https://github.com/zeromq/zeromq3-x/blob/master/COPYING diff --git a/src/licensedcode/data/licenses/lgpl-3.0.LICENSE b/src/licensedcode/data/licenses/lgpl-3.0.LICENSE index 0a041280bd0..05bd8e60f74 100644 --- a/src/licensedcode/data/licenses/lgpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/lgpl-3.0.LICENSE @@ -1,3 +1,36 @@ +--- +key: lgpl-3.0 +short_name: LGPL 3.0 +name: GNU Lesser General Public License 3.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/lgpl-3.0.html +notes: | + Per SPDX.org, this license was released 29 June 2007. This license is OSI + Certified. +spdx_license_key: LGPL-3.0-only +other_spdx_license_keys: + - LGPL-3.0 +osi_license_key: LGPL-3.0 +text_urls: + - http://www.gnu.org/licenses/lgpl-3.0-standalone.html + - http://www.gnu.org/licenses/lgpl-3.0.txt +osi_url: http://www.opensource.org/licenses/lgpl-3.0.html +other_urls: + - http://www.gnu.org/copyleft/lesser.html + - http://www.gnu.org/licenses/why-not-lgpl.html + - http://www.opensource.org/licenses/LGPL-3.0 + - https://opensource.org/licenses/LGPL-3.0 + - https://www.gnu.org/licenses/lgpl+gpl-3.0.txt + - https://www.gnu.org/licenses/lgpl-3.0-standalone.html +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -162,4 +195,4 @@ General Public License ever published by the Free Software Foundation. whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the -Library. +Library. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lgpl-3.0.yml b/src/licensedcode/data/licenses/lgpl-3.0.yml deleted file mode 100644 index 4b22194191e..00000000000 --- a/src/licensedcode/data/licenses/lgpl-3.0.yml +++ /dev/null @@ -1,30 +0,0 @@ -key: lgpl-3.0 -short_name: LGPL 3.0 -name: GNU Lesser General Public License 3.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/lgpl-3.0.html -notes: | - Per SPDX.org, this license was released 29 June 2007. This license is OSI - Certified. -spdx_license_key: LGPL-3.0-only -other_spdx_license_keys: - - LGPL-3.0 -osi_license_key: LGPL-3.0 -text_urls: - - http://www.gnu.org/licenses/lgpl-3.0-standalone.html - - http://www.gnu.org/licenses/lgpl-3.0.txt -osi_url: http://www.opensource.org/licenses/lgpl-3.0.html -other_urls: - - http://www.gnu.org/copyleft/lesser.html - - http://www.gnu.org/licenses/why-not-lgpl.html - - http://www.opensource.org/licenses/LGPL-3.0 - - https://opensource.org/licenses/LGPL-3.0 - - https://www.gnu.org/licenses/lgpl+gpl-3.0.txt - - https://www.gnu.org/licenses/lgpl-3.0-standalone.html -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ diff --git a/src/licensedcode/data/licenses/lgpllr.LICENSE b/src/licensedcode/data/licenses/lgpllr.LICENSE index 32be2f2d6ae..3e5cb71e665 100644 --- a/src/licensedcode/data/licenses/lgpllr.LICENSE +++ b/src/licensedcode/data/licenses/lgpllr.LICENSE @@ -1,3 +1,15 @@ +--- +key: lgpllr +short_name: LGPLLR +name: Lesser General Public License For Linguistic Resources +category: Copyleft Limited +owner: Unitex GramLab +homepage_url: http://www-igm.univ-mlv.fr/~unitex/lgpllr.html +spdx_license_key: LGPLLR +text_urls: + - https://raw.githubusercontent.com/UnitexGramLab/LGPL-LR/master/LGPL-LR +--- + Lesser General Public License For Linguistic Resources Preamble diff --git a/src/licensedcode/data/licenses/lgpllr.yml b/src/licensedcode/data/licenses/lgpllr.yml deleted file mode 100644 index ea7ca8cb573..00000000000 --- a/src/licensedcode/data/licenses/lgpllr.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lgpllr -short_name: LGPLLR -name: Lesser General Public License For Linguistic Resources -category: Copyleft Limited -owner: Unitex GramLab -homepage_url: http://www-igm.univ-mlv.fr/~unitex/lgpllr.html -spdx_license_key: LGPLLR -text_urls: - - https://raw.githubusercontent.com/UnitexGramLab/LGPL-LR/master/LGPL-LR diff --git a/src/licensedcode/data/licenses/lha.LICENSE b/src/licensedcode/data/licenses/lha.LICENSE index 2ca31c6c818..ac13724b673 100644 --- a/src/licensedcode/data/licenses/lha.LICENSE +++ b/src/licensedcode/data/licenses/lha.LICENSE @@ -1,3 +1,16 @@ +--- +key: lha +short_name: lha +name: LHA +category: Free Restricted +owner: Yooichi Tagawa +homepage_url: http://www.copyleftlicense.com/licenses/lha-license-version-10/view.php +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-lha +ignorable_emails: + - gotom@debian.org +--- + LHA LICENSE Permission is given for redistribution, copy, and modification provided @@ -50,4 +63,4 @@ GOTO Masanori ): the people who cannot access the network (by magazine or CD-ROM), please send E-Mail (Inter-Net address) to the author before the distribution. That's well where this software is appeard. - If you cannot do, you must send me the E-Mail later.` + If you cannot do, you must send me the E-Mail later.` \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lha.yml b/src/licensedcode/data/licenses/lha.yml deleted file mode 100644 index d99ed934a4d..00000000000 --- a/src/licensedcode/data/licenses/lha.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: lha -short_name: lha -name: LHA -category: Free Restricted -owner: Yooichi Tagawa -homepage_url: http://www.copyleftlicense.com/licenses/lha-license-version-10/view.php -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-lha -ignorable_emails: - - gotom@debian.org diff --git a/src/licensedcode/data/licenses/libcap.LICENSE b/src/licensedcode/data/licenses/libcap.LICENSE index c3f7ddd898e..37fd996ef49 100644 --- a/src/licensedcode/data/licenses/libcap.LICENSE +++ b/src/licensedcode/data/licenses/libcap.LICENSE @@ -1,3 +1,17 @@ +--- +key: libcap +is_deprecated: yes +short_name: libcap License +name: libcap License +category: Permissive +owner: Unspecified +homepage_url: https://sites.google.com/site/fullycapable/ +notes: this is a bsd-style license with a GPL alternative and is now reported as an expression + instead +text_urls: + - https://git.kernel.org/pub/scm/libs/libcap/libcap.git/plain/License +--- + Unless otherwise *explicitly* stated, the following text describes the licensed conditions under which the contents of this libcap release may be used and distributed: diff --git a/src/licensedcode/data/licenses/libcap.yml b/src/licensedcode/data/licenses/libcap.yml deleted file mode 100644 index f112489fd04..00000000000 --- a/src/licensedcode/data/licenses/libcap.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: libcap -is_deprecated: yes -short_name: libcap License -name: libcap License -category: Permissive -owner: Unspecified -homepage_url: https://sites.google.com/site/fullycapable/ -notes: this is a bsd-style license with a GPL alternative and is now reported as an expression instead -text_urls: - - https://git.kernel.org/pub/scm/libs/libcap/libcap.git/plain/License diff --git a/src/licensedcode/data/licenses/liberation-font-exception.LICENSE b/src/licensedcode/data/licenses/liberation-font-exception.LICENSE index 7d2b9bdceca..41cdeaa54f8 100644 --- a/src/licensedcode/data/licenses/liberation-font-exception.LICENSE +++ b/src/licensedcode/data/licenses/liberation-font-exception.LICENSE @@ -1,3 +1,21 @@ +--- +key: liberation-font-exception +short_name: Liberation Font Exception to GPL 2.0 +name: Liberation Font Exception to GPL 2.0 +category: Copyleft +owner: Red Hat +homepage_url: https://fedoraproject.org/wiki/Licensing:LiberationFontLicense +is_exception: yes +spdx_license_key: LicenseRef-scancode-liberation-font-exception +text_urls: + - https://fedoraproject.org/wiki/Licensing:LiberationFontLicense + - https://pagure.io/liberation-fonts/raw/cf3040c146097d6b7361e2823d5c6b5c309a456a/f/master/License.txt +ignorable_copyrights: + - Copyright (c) 2007 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +--- + LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY LIBERATION FONT SOFTWARE @@ -16,4 +34,4 @@ 4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential damages, including lost profits or lost savings arising out of the use or inability to use the Software, even if Red Hat or such dealer has been advised of the possibility of such damages. 5. General. If any provision of this agreement is held to be unenforceable, that shall not affect the enforceability of the remaining provisions. This agreement shall be governed by the laws of the State of North Carolina and of the United States, without regard to any conflict of laws provisions, except that the United Nations Convention on the International Sale of Goods shall not apply. - Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. + Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/liberation-font-exception.yml b/src/licensedcode/data/licenses/liberation-font-exception.yml deleted file mode 100644 index a924f94c6ef..00000000000 --- a/src/licensedcode/data/licenses/liberation-font-exception.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: liberation-font-exception -short_name: Liberation Font Exception to GPL 2.0 -name: Liberation Font Exception to GPL 2.0 -category: Copyleft -owner: Red Hat -homepage_url: https://fedoraproject.org/wiki/Licensing:LiberationFontLicense -is_exception: yes -spdx_license_key: LicenseRef-scancode-liberation-font-exception -text_urls: - - https://fedoraproject.org/wiki/Licensing:LiberationFontLicense - - https://pagure.io/liberation-fonts/raw/cf3040c146097d6b7361e2823d5c6b5c309a456a/f/master/License.txt -ignorable_copyrights: - - Copyright (c) 2007 Red Hat, Inc. -ignorable_holders: - - Red Hat, Inc. diff --git a/src/licensedcode/data/licenses/libgd-2018.LICENSE b/src/licensedcode/data/licenses/libgd-2018.LICENSE index ca924a20d5c..635567afa55 100644 --- a/src/licensedcode/data/licenses/libgd-2018.LICENSE +++ b/src/licensedcode/data/licenses/libgd-2018.LICENSE @@ -1,3 +1,51 @@ +--- +key: libgd-2018 +short_name: libgd License 2018 +name: libgd License 2018 +category: Permissive +owner: GD Graphics (Draw) Library Project +homepage_url: https://github.com/libgd/libgd/blob/master/COPYING +spdx_license_key: GD +other_spdx_license_keys: + - LicenseRef-scancode-libgd-2018 +text_urls: + - https://libgd.github.io/manuals/2.3.0/files/license-txt.html +ignorable_copyrights: + - Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by + Cold Spring Harbor Laboratory + - Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Boutell.Com, + Inc. + - Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Pierre-Alain Joye (pierre@libgd.org) + - copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas + G. Lane + - copyright 1989 by Jef Poskanzer and David Rowley + - copyright 1990, 1991, 1993 by David Koblas + - copyright 1999, 2000, 2001, 2002, 2003, 2004 Greg Roelofs + - copyright 1999, 2000, 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org) + - copyright 1999, 2000, 2001, 2002, 2003, 2004 Philip Warner + - copyright 2000, 2001, 2002, 2003, 2004 Maurice Szmurlo and Johan Van den Brande + - copyright 2000, 2001, 2002, 2003, 2004, Doug Becker + - copyright 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org) + - copyright 2004 Jaakko Hyvatti (jaakko.hyvatti@iki.fi) +ignorable_holders: + - Boutell.Com, Inc. + - Cold Spring Harbor Laboratory + - David Koblas + - Doug Becker + - Greg Roelofs + - Jaakko Hyvatti + - Jef Poskanzer and David Rowley + - John Ellson + - Maurice Szmurlo and Johan Van den Brande + - Philip Warner + - Pierre-Alain Joye + - Thomas G. Lane +ignorable_emails: + - ellson@graphviz.org + - jaakko.hyvatti@iki.fi + - pierre@libgd.org +--- + Credits and license terms: In order to resolve any possible confusion regarding the authorship of diff --git a/src/licensedcode/data/licenses/libgd-2018.yml b/src/licensedcode/data/licenses/libgd-2018.yml deleted file mode 100644 index 3758fdd6113..00000000000 --- a/src/licensedcode/data/licenses/libgd-2018.yml +++ /dev/null @@ -1,45 +0,0 @@ -key: libgd-2018 -short_name: libgd License 2018 -name: libgd License 2018 -category: Permissive -owner: GD Graphics (Draw) Library Project -homepage_url: https://github.com/libgd/libgd/blob/master/COPYING -spdx_license_key: GD -other_spdx_license_keys: - - LicenseRef-scancode-libgd-2018 -text_urls: - - https://libgd.github.io/manuals/2.3.0/files/license-txt.html -ignorable_copyrights: - - Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by - Cold Spring Harbor Laboratory - - Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 by Boutell.Com, - Inc. - - Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Pierre-Alain Joye (pierre@libgd.org) - - copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Thomas - G. Lane - - copyright 1989 by Jef Poskanzer and David Rowley - - copyright 1990, 1991, 1993 by David Koblas - - copyright 1999, 2000, 2001, 2002, 2003, 2004 Greg Roelofs - - copyright 1999, 2000, 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org) - - copyright 1999, 2000, 2001, 2002, 2003, 2004 Philip Warner - - copyright 2000, 2001, 2002, 2003, 2004 Maurice Szmurlo and Johan Van den Brande - - copyright 2000, 2001, 2002, 2003, 2004, Doug Becker - - copyright 2001, 2002, 2003, 2004 John Ellson (ellson@graphviz.org) - - copyright 2004 Jaakko Hyvatti (jaakko.hyvatti@iki.fi) -ignorable_holders: - - Boutell.Com, Inc. - - Cold Spring Harbor Laboratory - - David Koblas - - Doug Becker - - Greg Roelofs - - Jaakko Hyvatti - - Jef Poskanzer and David Rowley - - John Ellson - - Maurice Szmurlo and Johan Van den Brande - - Philip Warner - - Pierre-Alain Joye - - Thomas G. Lane -ignorable_emails: - - ellson@graphviz.org - - jaakko.hyvatti@iki.fi - - pierre@libgd.org diff --git a/src/licensedcode/data/licenses/libgeotiff.LICENSE b/src/licensedcode/data/licenses/libgeotiff.LICENSE index b6397ca0f9a..3a822d44d90 100644 --- a/src/licensedcode/data/licenses/libgeotiff.LICENSE +++ b/src/licensedcode/data/licenses/libgeotiff.LICENSE @@ -1,3 +1,21 @@ +--- +key: libgeotiff +short_name: libgeoTiff License +name: libgeoTiff License +category: Permissive +owner: GeoTIFF +homepage_url: http://trac.osgeo.org/geotiff/browser/tags/libgeotiff-1.4.0/LICENSE +notes: composite +spdx_license_key: LicenseRef-scancode-libgeotiff +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1999, Frank Warmerdam + - copyright (c) 1995 Niles D. Ritter +ignorable_holders: + - Frank Warmerdam + - Niles D. Ritter +--- + libgeotiff Licensing ==================== diff --git a/src/licensedcode/data/licenses/libgeotiff.yml b/src/licensedcode/data/licenses/libgeotiff.yml deleted file mode 100644 index 40ab849ff0e..00000000000 --- a/src/licensedcode/data/licenses/libgeotiff.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: libgeotiff -short_name: libgeoTiff License -name: libgeoTiff License -category: Permissive -owner: GeoTIFF -homepage_url: http://trac.osgeo.org/geotiff/browser/tags/libgeotiff-1.4.0/LICENSE -notes: composite -spdx_license_key: LicenseRef-scancode-libgeotiff -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 1999, Frank Warmerdam - - copyright (c) 1995 Niles D. Ritter -ignorable_holders: - - Frank Warmerdam - - Niles D. Ritter diff --git a/src/licensedcode/data/licenses/libmib.LICENSE b/src/licensedcode/data/licenses/libmib.LICENSE index 5f1a6dcd575..d088bd012fc 100644 --- a/src/licensedcode/data/licenses/libmib.LICENSE +++ b/src/licensedcode/data/licenses/libmib.LICENSE @@ -1,3 +1,20 @@ +--- +key: libmib +short_name: LibMib License +name: LibMib License +category: Permissive +owner: MIB Software +spdx_license_key: LicenseRef-scancode-libmib +ignorable_copyrights: + - Copyright 1998 Forrest J. Cavalier III +ignorable_holders: + - Forrest J. Cavalier III +ignorable_urls: + - http://www.mibsoftware.com/ + - http://www.mibsoftware.com/libmib/ + - http://www.opensource.org/ +--- + - - - - - - - - - - - - Copyright Notice - - - - - - - - - - - - Copyright 1998 Forrest J. Cavalier III diff --git a/src/licensedcode/data/licenses/libmib.yml b/src/licensedcode/data/licenses/libmib.yml deleted file mode 100644 index 9a7a52852b9..00000000000 --- a/src/licensedcode/data/licenses/libmib.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: libmib -short_name: LibMib License -name: LibMib License -category: Permissive -owner: MIB Software -spdx_license_key: LicenseRef-scancode-libmib -ignorable_copyrights: - - Copyright 1998 Forrest J. Cavalier III -ignorable_holders: - - Forrest J. Cavalier III -ignorable_urls: - - http://www.mibsoftware.com/ - - http://www.mibsoftware.com/libmib/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/licenses/libmng-2007.LICENSE b/src/licensedcode/data/licenses/libmng-2007.LICENSE index 53a31e14922..ae2df64b7d6 100644 --- a/src/licensedcode/data/licenses/libmng-2007.LICENSE +++ b/src/licensedcode/data/licenses/libmng-2007.LICENSE @@ -1,3 +1,54 @@ +--- +key: libmng-2007 +short_name: libmng License 2007 +name: libmng License 2007 +category: Permissive +owner: libmng Project +spdx_license_key: LicenseRef-scancode-libmng-2007 +other_urls: + - http://www.linuxfromscratch.org/blfs/view/cvs/general/libmng.html +standard_notice: | + Copyright (c) 2000-2007 Gerard Juyn (gerard@libmng.com) + [You may insert additional notices after this sentence if you modify + this source] + For the purposes of this copyright and license, "Contributing Authors" + is defined as the following set of individuals: + Gerard Juyn + Glenn Randers-Pehrson + The MNG Library is supplied "AS IS". The Contributing Authors + disclaim all warranties, expressed or implied, including, without + limitation, the warranties of merchantability and of fitness for any + purpose. The Contributing Authors assume no liability for direct, + indirect, incidental, special, exemplary, or consequential damages, + which may result from the use of the MNG Library, even if advised of + the possibility of such damage. + Permission is hereby granted to use, copy, modify, and distribute this + source code, or portions hereof, for any purpose, without fee, subject + to the following restrictions: + 1. The origin of this source code must not be misrepresented; + you must not claim that you wrote the original software. + 2. Altered versions must be plainly marked as such and must not be + misrepresented as being the original source. + 3. This Copyright notice may not be removed or altered from any source + or altered source distribution. + The Contributing Authors specifically permit, without fee, and + encourage the use of this source code as a component to supporting + the MNG and JNG file format in commercial products. If you use this + source code in a product, acknowledgment would be highly appreciated. + Parts of this software have been adapted from the libpng package. + Although this library supports all features from the PNG specification + (as MNG descends from it) it does not require the libpng package. + It does require the zlib library and optionally the IJG jpeg library, + and/or the "little-cms" library by Marti Maria (depending on the + inclusion of support for JNG and Full-Color-Management respectively. + This library's function is primarily to read and display MNG + animations. It is not meant as a full-featured image-editing + component! It does however offer creation and editing functionality + at the chunk level. + (future modifications may include some more support for creation + and or editing) +--- + The MNG Library is supplied "AS IS". The Contributing Authors disclaim all warranties, expressed or implied, including, without limitation, the warranties of merchantability and of fitness for any diff --git a/src/licensedcode/data/licenses/libmng-2007.yml b/src/licensedcode/data/licenses/libmng-2007.yml deleted file mode 100644 index 118c3dd2f98..00000000000 --- a/src/licensedcode/data/licenses/libmng-2007.yml +++ /dev/null @@ -1,48 +0,0 @@ -key: libmng-2007 -short_name: libmng License 2007 -name: libmng License 2007 -category: Permissive -owner: libmng Project -spdx_license_key: LicenseRef-scancode-libmng-2007 -other_urls: - - http://www.linuxfromscratch.org/blfs/view/cvs/general/libmng.html -standard_notice: | - Copyright (c) 2000-2007 Gerard Juyn (gerard@libmng.com) - [You may insert additional notices after this sentence if you modify - this source] - For the purposes of this copyright and license, "Contributing Authors" - is defined as the following set of individuals: - Gerard Juyn - Glenn Randers-Pehrson - The MNG Library is supplied "AS IS". The Contributing Authors - disclaim all warranties, expressed or implied, including, without - limitation, the warranties of merchantability and of fitness for any - purpose. The Contributing Authors assume no liability for direct, - indirect, incidental, special, exemplary, or consequential damages, - which may result from the use of the MNG Library, even if advised of - the possibility of such damage. - Permission is hereby granted to use, copy, modify, and distribute this - source code, or portions hereof, for any purpose, without fee, subject - to the following restrictions: - 1. The origin of this source code must not be misrepresented; - you must not claim that you wrote the original software. - 2. Altered versions must be plainly marked as such and must not be - misrepresented as being the original source. - 3. This Copyright notice may not be removed or altered from any source - or altered source distribution. - The Contributing Authors specifically permit, without fee, and - encourage the use of this source code as a component to supporting - the MNG and JNG file format in commercial products. If you use this - source code in a product, acknowledgment would be highly appreciated. - Parts of this software have been adapted from the libpng package. - Although this library supports all features from the PNG specification - (as MNG descends from it) it does not require the libpng package. - It does require the zlib library and optionally the IJG jpeg library, - and/or the "little-cms" library by Marti Maria (depending on the - inclusion of support for JNG and Full-Color-Management respectively. - This library's function is primarily to read and display MNG - animations. It is not meant as a full-featured image-editing - component! It does however offer creation and editing functionality - at the chunk level. - (future modifications may include some more support for creation - and or editing) diff --git a/src/licensedcode/data/licenses/libpbm.LICENSE b/src/licensedcode/data/licenses/libpbm.LICENSE index 348126ef561..32802435b9a 100644 --- a/src/licensedcode/data/licenses/libpbm.LICENSE +++ b/src/licensedcode/data/licenses/libpbm.LICENSE @@ -1,6 +1,19 @@ +--- +key: libpbm +short_name: PBM Library License +name: PBM Library License +category: Permissive +owner: ACME Labs +homepage_url: http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c +spdx_license_key: LicenseRef-scancode-libpbm +text_urls: + - http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c +other_urls: + - http://sourceforge.net/p/netpbm/code/HEAD/tree/trunk/doc/COPYRIGHT.PATENT +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. This software is provided "as is" without -express or implied warranty. - +express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/libpbm.yml b/src/licensedcode/data/licenses/libpbm.yml deleted file mode 100644 index 8f48fc26271..00000000000 --- a/src/licensedcode/data/licenses/libpbm.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: libpbm -short_name: PBM Library License -name: PBM Library License -category: Permissive -owner: ACME Labs -homepage_url: http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c -spdx_license_key: LicenseRef-scancode-libpbm -text_urls: - - http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c -other_urls: - - http://sourceforge.net/p/netpbm/code/HEAD/tree/trunk/doc/COPYRIGHT.PATENT diff --git a/src/licensedcode/data/licenses/libpng-v2.LICENSE b/src/licensedcode/data/licenses/libpng-v2.LICENSE index b28d9f09efe..d40273a5b01 100644 --- a/src/licensedcode/data/licenses/libpng-v2.LICENSE +++ b/src/licensedcode/data/licenses/libpng-v2.LICENSE @@ -1,3 +1,26 @@ +--- +key: libpng-v2 +short_name: LIbpng License v2 +name: PNG Reference Library License version 2 +category: Permissive +owner: libpng +homepage_url: http://www.libpng.org/pub/png/src/libpng-LICENSE.txt +spdx_license_key: libpng-2.0 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1995-2018 The PNG Reference Library Authors + - Copyright (c) 1996-1997 Andreas Dilger + - Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson + - Copyright (c) 2018 Cosmin Truta +ignorable_holders: + - Andreas Dilger + - Cosmin Truta + - Glenn Randers-Pehrson + - Guy Eric Schalnat, Group 42, Inc. + - The PNG Reference Library Authors +--- + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE ========================================= @@ -33,5 +56,4 @@ subject to the following restrictions: not be misrepresented as being the original software. 3. This Copyright notice may not be removed or altered from any - source or altered source distribution. - + source or altered source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/libpng-v2.yml b/src/licensedcode/data/licenses/libpng-v2.yml deleted file mode 100644 index a3207f54543..00000000000 --- a/src/licensedcode/data/licenses/libpng-v2.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: libpng-v2 -short_name: LIbpng License v2 -name: PNG Reference Library License version 2 -category: Permissive -owner: libpng -homepage_url: http://www.libpng.org/pub/png/src/libpng-LICENSE.txt -spdx_license_key: libpng-2.0 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - - Copyright (c) 1995-2018 The PNG Reference Library Authors - - Copyright (c) 1996-1997 Andreas Dilger - - Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson - - Copyright (c) 2018 Cosmin Truta -ignorable_holders: - - Andreas Dilger - - Cosmin Truta - - Glenn Randers-Pehrson - - Guy Eric Schalnat, Group 42, Inc. - - The PNG Reference Library Authors diff --git a/src/licensedcode/data/licenses/libpng.LICENSE b/src/licensedcode/data/licenses/libpng.LICENSE index 9501d0ac8e1..62088058a85 100644 --- a/src/licensedcode/data/licenses/libpng.LICENSE +++ b/src/licensedcode/data/licenses/libpng.LICENSE @@ -1,3 +1,27 @@ +--- +key: libpng +short_name: Libpng License +name: Libpng License +category: Permissive +owner: libpng +homepage_url: http://www.libpng.org/pub/png/libpng.html +spdx_license_key: Libpng +text_urls: + - http://libpng.org/pub/png/src/libpng-LICENSE.txt +other_urls: + - http://www.libpng.org/pub/png/src/libpng-LICENSE.txt +ignorable_copyrights: + - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1996, 1997 Andreas Dilger + - Copyright (c) 1998, 1999 Glenn Randers-Pehrson + - Copyright (c) 2000-2002 Glenn Randers-Pehrson + - Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson +ignorable_holders: + - Andreas Dilger + - Glenn Randers-Pehrson + - Guy Eric Schalnat, Group 42, Inc. +--- + This copy of the libpng notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file png.h that is included in the libpng distribution, the latter shall prevail. diff --git a/src/licensedcode/data/licenses/libpng.yml b/src/licensedcode/data/licenses/libpng.yml deleted file mode 100644 index 2de3716cec0..00000000000 --- a/src/licensedcode/data/licenses/libpng.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: libpng -short_name: Libpng License -name: Libpng License -category: Permissive -owner: libpng -homepage_url: http://www.libpng.org/pub/png/libpng.html -spdx_license_key: Libpng -text_urls: - - http://libpng.org/pub/png/src/libpng-LICENSE.txt -other_urls: - - http://www.libpng.org/pub/png/src/libpng-LICENSE.txt -ignorable_copyrights: - - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. - - Copyright (c) 1996, 1997 Andreas Dilger - - Copyright (c) 1998, 1999 Glenn Randers-Pehrson - - Copyright (c) 2000-2002 Glenn Randers-Pehrson - - Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson -ignorable_holders: - - Andreas Dilger - - Glenn Randers-Pehrson - - Guy Eric Schalnat, Group 42, Inc. diff --git a/src/licensedcode/data/licenses/librato-exception.LICENSE b/src/licensedcode/data/licenses/librato-exception.LICENSE index da59c0faa85..f959050357b 100644 --- a/src/licensedcode/data/licenses/librato-exception.LICENSE +++ b/src/licensedcode/data/licenses/librato-exception.LICENSE @@ -1,3 +1,13 @@ +--- +key: librato-exception +short_name: Librato Open License 1.0 +name: Librato Open License Version 1.0 +category: Proprietary Free +owner: solarwinds-librato +homepage_url: https://github.com/appoptics/appoptics-apm-ruby/blob/db06514031e962d1ffe7fc1a348895dbf2a6d693/LICENSE +spdx_license_key: LicenseRef-scancode-librato-exception +--- + Librato Open License Version 1.0, October, 2016 diff --git a/src/licensedcode/data/licenses/librato-exception.yml b/src/licensedcode/data/licenses/librato-exception.yml deleted file mode 100644 index 4805d72d9c0..00000000000 --- a/src/licensedcode/data/licenses/librato-exception.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: librato-exception -short_name: Librato Open License 1.0 -name: Librato Open License Version 1.0 -category: Proprietary Free -owner: solarwinds-librato -homepage_url: https://github.com/appoptics/appoptics-apm-ruby/blob/db06514031e962d1ffe7fc1a348895dbf2a6d693/LICENSE -spdx_license_key: LicenseRef-scancode-librato-exception diff --git a/src/licensedcode/data/licenses/libselinux-pd.LICENSE b/src/licensedcode/data/licenses/libselinux-pd.LICENSE index 2861d2ddc29..065c9f2139d 100644 --- a/src/licensedcode/data/licenses/libselinux-pd.LICENSE +++ b/src/licensedcode/data/licenses/libselinux-pd.LICENSE @@ -1,3 +1,15 @@ +--- +key: libselinux-pd +short_name: libselinux License +name: libselinux License +category: Public Domain +owner: SELinux Project +homepage_url: http://userspace.selinuxproject.org/trac/browser/libselinux/LICENSE +spdx_license_key: LicenseRef-scancode-libselinux-pd +text_urls: + - https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE +--- + This library is public domain software, i.e. not copyrighted. Warranty Exclusion diff --git a/src/licensedcode/data/licenses/libselinux-pd.yml b/src/licensedcode/data/licenses/libselinux-pd.yml deleted file mode 100644 index f5eedceb85c..00000000000 --- a/src/licensedcode/data/licenses/libselinux-pd.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: libselinux-pd -short_name: libselinux License -name: libselinux License -category: Public Domain -owner: SELinux Project -homepage_url: http://userspace.selinuxproject.org/trac/browser/libselinux/LICENSE -spdx_license_key: LicenseRef-scancode-libselinux-pd -text_urls: - - https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE diff --git a/src/licensedcode/data/licenses/libsrv-1.0.2.LICENSE b/src/licensedcode/data/licenses/libsrv-1.0.2.LICENSE index 82629f6f2cc..88594d12281 100644 --- a/src/licensedcode/data/licenses/libsrv-1.0.2.LICENSE +++ b/src/licensedcode/data/licenses/libsrv-1.0.2.LICENSE @@ -1,3 +1,18 @@ +--- +key: libsrv-1.0.2 +short_name: libsrv License v1.0.2 +name: libsrv License v1.0.2 +category: Permissive +owner: libsrv project +homepage_url: https://sourceforge.net/projects/libsrv/files/libsrv/RELEASE_1_0_2/ +spdx_license_key: LicenseRef-scancode-libsrv-1.0.2 +standard_notice: | + This software is copyrighted (c) 2002 Rick van Rein, the Netherlands. + OpenFortress encourages the release of this code by employee Rick van Rein. +ignorable_authors: + - Rick van Rein and other contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted for any legal purpose, provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/libsrv-1.0.2.yml b/src/licensedcode/data/licenses/libsrv-1.0.2.yml deleted file mode 100644 index 5401db44919..00000000000 --- a/src/licensedcode/data/licenses/libsrv-1.0.2.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: libsrv-1.0.2 -short_name: libsrv License v1.0.2 -name: libsrv License v1.0.2 -category: Permissive -owner: libsrv project -homepage_url: https://sourceforge.net/projects/libsrv/files/libsrv/RELEASE_1_0_2/ -spdx_license_key: LicenseRef-scancode-libsrv-1.0.2 -standard_notice: | - This software is copyrighted (c) 2002 Rick van Rein, the Netherlands. - OpenFortress encourages the release of this code by employee Rick van Rein. -ignorable_authors: - - Rick van Rein and other contributors diff --git a/src/licensedcode/data/licenses/libtool-exception-2.0.LICENSE b/src/licensedcode/data/licenses/libtool-exception-2.0.LICENSE index 35533155c35..c03811398e5 100644 --- a/src/licensedcode/data/licenses/libtool-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/libtool-exception-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: libtool-exception-2.0 +short_name: GNU Libtool exception to GPL 2.0 +name: GNU Libtool exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4 +is_exception: yes +spdx_license_key: Libtool-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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, or (at your option) any later + version. + As a special exception to the GNU General Public License, + if you distribute this file as part of a program or library that + is built using GNU Libtool, you may include this file under the + same distribution terms that you use for the rest of that program. + GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy + can be downloaded from http://www.gnu.org/licenses/gpl.html, or + obtained by writing to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the diff --git a/src/licensedcode/data/licenses/libtool-exception-2.0.yml b/src/licensedcode/data/licenses/libtool-exception-2.0.yml deleted file mode 100644 index dbad424c1c1..00000000000 --- a/src/licensedcode/data/licenses/libtool-exception-2.0.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: libtool-exception-2.0 -short_name: GNU Libtool exception to GPL 2.0 -name: GNU Libtool exception to GPL 2.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4 -is_exception: yes -spdx_license_key: Libtool-exception -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This library 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, or (at your option) any later - version. - As a special exception to the GNU General Public License, - if you distribute this file as part of a program or library that - is built using GNU Libtool, you may include this file under the - same distribution terms that you use for the rest of that program. - GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy - can be downloaded from http://www.gnu.org/licenses/gpl.html, or - obtained by writing to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/licenses/libtool-exception.LICENSE b/src/licensedcode/data/licenses/libtool-exception.LICENSE index cc6203c7518..03a721e042f 100644 --- a/src/licensedcode/data/licenses/libtool-exception.LICENSE +++ b/src/licensedcode/data/licenses/libtool-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: libtool-exception +short_name: Libtool Exception +name: GNU Libtool Exception +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +is_deprecated: yes +other_urls: + - http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4 +notes: replaced by libtool-exception-2.0 +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the same distribution terms diff --git a/src/licensedcode/data/licenses/libtool-exception.yml b/src/licensedcode/data/licenses/libtool-exception.yml deleted file mode 100644 index a991f827787..00000000000 --- a/src/licensedcode/data/licenses/libtool-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: libtool-exception -short_name: Libtool Exception -name: GNU Libtool Exception -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -is_deprecated: yes -other_urls: - - http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4 -notes: replaced by libtool-exception-2.0 diff --git a/src/licensedcode/data/licenses/libwebsockets-exception.LICENSE b/src/licensedcode/data/licenses/libwebsockets-exception.LICENSE index 5c65bcbba58..61158c6a3a0 100644 --- a/src/licensedcode/data/licenses/libwebsockets-exception.LICENSE +++ b/src/licensedcode/data/licenses/libwebsockets-exception.LICENSE @@ -1,3 +1,59 @@ +--- +key: libwebsockets-exception +short_name: libwebsockets exception to LGPL 2.1 +name: libwebsockets exception to LGPL 2.1 +category: Copyleft Limited +owner: lws-team +homepage_url: https://github.com/warmcat/libwebsockets/blob/master/LICENSE +notes: composite +is_exception: yes +spdx_license_key: LicenseRef-scancode-libwebsockets-exception +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +minimum_coverage: 70 +standard_notice: | + Libwebsockets and included programs are provided under the terms of the GNU + Library General Public License (LGPL) 2.1, with the following exceptions: + 1) Any reference, whether in these modifications or in the GNU + Library General Public License 2.1, to this License, these terms, the + GNU Lesser Public License, GNU Library General Public License, LGPL, or + any similar reference shall refer to the GNU Library General Public + License 2.1 as modified by these paragraphs 1) through 4). + 2) Static linking of programs with the libwebsockets library does not + constitute a derivative work and does not require the author to provide + source code for the program, use the shared libwebsockets libraries, or + link their program against a user-supplied version of libwebsockets. + If you link the program to a modified version of libwebsockets, then the + changes to libwebsockets must be provided under the terms of the LGPL in + sections 1, 2, and 4. + 3) You do not have to provide a copy of the libwebsockets license with + programs that are linked to the libwebsockets library, nor do you have to + identify the libwebsockets license in your program or documentation as + required by section 6 of the LGPL. + However, programs must still identify their use of libwebsockets. The + following example statement can be included in user documentation to + satisfy this requirement: + "[program] is based in part on the work of the libwebsockets project + (https://libwebsockets.org)" + 4) Some sources included have their own, more liberal licenses, or options + to get original sources with the liberal terms. + Original liberal license retained + - lib/sha-1.c - 3-clause BSD license retained, link to original + - win32port/zlib - ZLIB license (see zlib.h) + - lib/mbedtls_wrapper - Apache 2.0 (only built if linked against mbedtls) + Relicensed to libwebsocket license + - lib/base64-decode.c - relicensed to LGPL2.1+SLE, link to original + - lib/daemonize.c - relicensed from Public Domain to LGPL2.1+SLE, + link to original Public Domain version + Public Domain (CC-zero) to simplify reuse + - test-apps/*.c + - test-apps/*.h + - lwsws/* + ------ end of exceptions +ignorable_urls: + - https://libwebsockets.org/ +--- + Libwebsockets and included programs are provided under the terms of the GNU Library General Public License (LGPL) 2.1, with the following exceptions: diff --git a/src/licensedcode/data/licenses/libwebsockets-exception.yml b/src/licensedcode/data/licenses/libwebsockets-exception.yml deleted file mode 100644 index ac20f75fb94..00000000000 --- a/src/licensedcode/data/licenses/libwebsockets-exception.yml +++ /dev/null @@ -1,53 +0,0 @@ -key: libwebsockets-exception -short_name: libwebsockets exception to LGPL 2.1 -name: libwebsockets exception to LGPL 2.1 -category: Copyleft Limited -owner: lws-team -homepage_url: https://github.com/warmcat/libwebsockets/blob/master/LICENSE -notes: composite -is_exception: yes -spdx_license_key: LicenseRef-scancode-libwebsockets-exception -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -minimum_coverage: 70 -standard_notice: | - Libwebsockets and included programs are provided under the terms of the GNU - Library General Public License (LGPL) 2.1, with the following exceptions: - 1) Any reference, whether in these modifications or in the GNU - Library General Public License 2.1, to this License, these terms, the - GNU Lesser Public License, GNU Library General Public License, LGPL, or - any similar reference shall refer to the GNU Library General Public - License 2.1 as modified by these paragraphs 1) through 4). - 2) Static linking of programs with the libwebsockets library does not - constitute a derivative work and does not require the author to provide - source code for the program, use the shared libwebsockets libraries, or - link their program against a user-supplied version of libwebsockets. - If you link the program to a modified version of libwebsockets, then the - changes to libwebsockets must be provided under the terms of the LGPL in - sections 1, 2, and 4. - 3) You do not have to provide a copy of the libwebsockets license with - programs that are linked to the libwebsockets library, nor do you have to - identify the libwebsockets license in your program or documentation as - required by section 6 of the LGPL. - However, programs must still identify their use of libwebsockets. The - following example statement can be included in user documentation to - satisfy this requirement: - "[program] is based in part on the work of the libwebsockets project - (https://libwebsockets.org)" - 4) Some sources included have their own, more liberal licenses, or options - to get original sources with the liberal terms. - Original liberal license retained - - lib/sha-1.c - 3-clause BSD license retained, link to original - - win32port/zlib - ZLIB license (see zlib.h) - - lib/mbedtls_wrapper - Apache 2.0 (only built if linked against mbedtls) - Relicensed to libwebsocket license - - lib/base64-decode.c - relicensed to LGPL2.1+SLE, link to original - - lib/daemonize.c - relicensed from Public Domain to LGPL2.1+SLE, - link to original Public Domain version - Public Domain (CC-zero) to simplify reuse - - test-apps/*.c - - test-apps/*.h - - lwsws/* - ------ end of exceptions -ignorable_urls: - - https://libwebsockets.org/ diff --git a/src/licensedcode/data/licenses/libzip.LICENSE b/src/licensedcode/data/licenses/libzip.LICENSE index ae303ff6872..3193eaa0c6c 100644 --- a/src/licensedcode/data/licenses/libzip.LICENSE +++ b/src/licensedcode/data/licenses/libzip.LICENSE @@ -1,3 +1,14 @@ +--- +is_deprecated: yes +key: libzip +short_name: libzip License +name: NiH libzip License +category: Permissive +owner: NiH +homepage_url: https://www.nih.at/libzip/LICENSE.html +notes: deprecated in favor of bsd-new See https://github.com/nexB/scancode-toolkit/issues/2995 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/libzip.yml b/src/licensedcode/data/licenses/libzip.yml deleted file mode 100644 index f0bbebec9ae..00000000000 --- a/src/licensedcode/data/licenses/libzip.yml +++ /dev/null @@ -1,9 +0,0 @@ -is_deprecated: yes -key: libzip -short_name: libzip License -name: NiH libzip License -category: Permissive -owner: NiH -homepage_url: https://www.nih.at/libzip/LICENSE.html -notes: deprecated in favor of bsd-new - See https://github.com/nexB/scancode-toolkit/issues/2995 diff --git a/src/licensedcode/data/licenses/license-file-reference.LICENSE b/src/licensedcode/data/licenses/license-file-reference.LICENSE new file mode 100644 index 00000000000..f1d84a352e1 --- /dev/null +++ b/src/licensedcode/data/licenses/license-file-reference.LICENSE @@ -0,0 +1,10 @@ +--- +key: license-file-reference +is_deprecated: yes +short_name: license-file-reference +name: license-file-reference +category: Unstated License +owner: Unspecified +is_unknown: yes +notes: this was known before as "see-license" and is now unknown-license-reference +--- diff --git a/src/licensedcode/data/licenses/license-file-reference.yml b/src/licensedcode/data/licenses/license-file-reference.yml deleted file mode 100644 index 756c631a39f..00000000000 --- a/src/licensedcode/data/licenses/license-file-reference.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: license-file-reference -is_deprecated: yes -short_name: license-file-reference -name: license-file-reference -category: Unstated License -owner: Unspecified -is_unknown: yes -notes: this was known before as "see-license" and is now unknown-license-reference diff --git a/src/licensedcode/data/licenses/lil-1.LICENSE b/src/licensedcode/data/licenses/lil-1.LICENSE index 90851546369..62fc57d6f78 100644 --- a/src/licensedcode/data/licenses/lil-1.LICENSE +++ b/src/licensedcode/data/licenses/lil-1.LICENSE @@ -1,3 +1,16 @@ +--- +key: lil-1 +short_name: Lil License v1 +name: Lil License v1 +category: Permissive +owner: Jeremy Ashkenas +homepage_url: http://lillicense.org/v1.html +notes: this license has MIT-like terms with extra non-obvious patent grants. +spdx_license_key: LicenseRef-scancode-lil-1 +other_urls: + - https://github.com/jashkenas/lil-license +--- + Permission is hereby granted by the authors of this software, to any person, to use the software for any purpose, free of charge, including the rights to run, read, copy, change, distribute and sell it, and @@ -15,4 +28,4 @@ including but not limited to the warranties of title, fitness, merchantability and non-infringement. The authors have no obligation to provide support or updates for the software, and may not be held liable for any damages, claims or other liability arising from its -use. +use. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lil-1.yml b/src/licensedcode/data/licenses/lil-1.yml deleted file mode 100644 index cddf9dbad87..00000000000 --- a/src/licensedcode/data/licenses/lil-1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: lil-1 -short_name: Lil License v1 -name: Lil License v1 -category: Permissive -owner: Jeremy Ashkenas -homepage_url: http://lillicense.org/v1.html -notes: this license has MIT-like terms with extra non-obvious patent grants. -spdx_license_key: LicenseRef-scancode-lil-1 -other_urls: - - https://github.com/jashkenas/lil-license diff --git a/src/licensedcode/data/licenses/liliq-p-1.1.LICENSE b/src/licensedcode/data/licenses/liliq-p-1.1.LICENSE index d65f088cd5d..d2169fa2361 100644 --- a/src/licensedcode/data/licenses/liliq-p-1.1.LICENSE +++ b/src/licensedcode/data/licenses/liliq-p-1.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: liliq-p-1.1 +language: fr +short_name: LiLiQ-P-1.1 +name: Licence Libre du Québec – Permissive version 1.1 +category: Copyleft Limited +owner: Quebec +homepage_url: https://opensource.org/licenses/LiLiQ-P-1.1 +spdx_license_key: LiLiQ-P-1.1 +osi_url: https://opensource.org/licenses/LiLiQ-P-1.1 +other_urls: + - http://opensource.org/licenses/LiLiQ-P-1.1 + - https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/ +--- + Licence Libre du Québec – Permissive (LiLiQ-P) Version 1.1 diff --git a/src/licensedcode/data/licenses/liliq-p-1.1.yml b/src/licensedcode/data/licenses/liliq-p-1.1.yml deleted file mode 100644 index 52f772f7550..00000000000 --- a/src/licensedcode/data/licenses/liliq-p-1.1.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: liliq-p-1.1 -language: fr -short_name: LiLiQ-P-1.1 -name: Licence Libre du Québec – Permissive version 1.1 -category: Copyleft Limited -owner: Quebec -homepage_url: https://opensource.org/licenses/LiLiQ-P-1.1 -spdx_license_key: LiLiQ-P-1.1 -osi_url: https://opensource.org/licenses/LiLiQ-P-1.1 -other_urls: - - http://opensource.org/licenses/LiLiQ-P-1.1 - - https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/ diff --git a/src/licensedcode/data/licenses/liliq-r-1.1.LICENSE b/src/licensedcode/data/licenses/liliq-r-1.1.LICENSE index 38e51ba81b5..6b852965902 100644 --- a/src/licensedcode/data/licenses/liliq-r-1.1.LICENSE +++ b/src/licensedcode/data/licenses/liliq-r-1.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: liliq-r-1.1 +language: fr +short_name: LiLiQ-R-1.1 +name: Licence Libre du Québec – Réciprocité version 1. +category: Copyleft Limited +owner: Quebec +homepage_url: https://opensource.org/licenses/LiLiQ-R-1.1 +spdx_license_key: LiLiQ-R-1.1 +osi_url: https://opensource.org/licenses/LiLiQ-R-1.1 +other_urls: + - http://opensource.org/licenses/LiLiQ-R-1.1 + - https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/ +--- + Licence Libre du Québec – Réciprocité (LiLiQ-R) Version 1.1 diff --git a/src/licensedcode/data/licenses/liliq-r-1.1.yml b/src/licensedcode/data/licenses/liliq-r-1.1.yml deleted file mode 100644 index 90fc7619a05..00000000000 --- a/src/licensedcode/data/licenses/liliq-r-1.1.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: liliq-r-1.1 -language: fr -short_name: LiLiQ-R-1.1 -name: Licence Libre du Québec – Réciprocité version 1. -category: Copyleft Limited -owner: Quebec -homepage_url: https://opensource.org/licenses/LiLiQ-R-1.1 -spdx_license_key: LiLiQ-R-1.1 -osi_url: https://opensource.org/licenses/LiLiQ-R-1.1 -other_urls: - - http://opensource.org/licenses/LiLiQ-R-1.1 - - https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/ diff --git a/src/licensedcode/data/licenses/liliq-rplus-1.1.LICENSE b/src/licensedcode/data/licenses/liliq-rplus-1.1.LICENSE index f7b15249529..6ab89a30e7e 100644 --- a/src/licensedcode/data/licenses/liliq-rplus-1.1.LICENSE +++ b/src/licensedcode/data/licenses/liliq-rplus-1.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: liliq-rplus-1.1 +language: fr +short_name: LiLiQ-Rplus-1.1 +name: Licence Libre du Québec – Réciprocité forte version 1.1 +category: Copyleft +owner: Quebec +homepage_url: http://opensource.org/licenses/LiLiQ-Rplus-1.1 +spdx_license_key: LiLiQ-Rplus-1.1 +osi_url: https://opensource.org/licenses/LiLiQ-Rplus-1.1 +other_urls: + - https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/ +--- + Licence Libre du Québec – Réciprocité forte (LiLiQ-R+) Version 1.1 diff --git a/src/licensedcode/data/licenses/liliq-rplus-1.1.yml b/src/licensedcode/data/licenses/liliq-rplus-1.1.yml deleted file mode 100644 index e0786f9636a..00000000000 --- a/src/licensedcode/data/licenses/liliq-rplus-1.1.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: liliq-rplus-1.1 -language: fr -short_name: LiLiQ-Rplus-1.1 -name: Licence Libre du Québec – Réciprocité forte version 1.1 -category: Copyleft -owner: Quebec -homepage_url: http://opensource.org/licenses/LiLiQ-Rplus-1.1 -spdx_license_key: LiLiQ-Rplus-1.1 -osi_url: https://opensource.org/licenses/LiLiQ-Rplus-1.1 -other_urls: - - https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/ diff --git a/src/licensedcode/data/licenses/lilo.LICENSE b/src/licensedcode/data/licenses/lilo.LICENSE index bbd781cc9da..50061c440cf 100644 --- a/src/licensedcode/data/licenses/lilo.LICENSE +++ b/src/licensedcode/data/licenses/lilo.LICENSE @@ -1,5 +1,18 @@ +--- +key: lilo +short_name: LILO License +name: LILO License +category: Permissive +owner: Unspecified +homepage_url: http://www.ingate.com/files/422/fwmanual-en/xx12671.html +spdx_license_key: LicenseRef-scancode-lilo +text_urls: + - http://www.ingate.com/files/422/fwmanual-en/xx12671.html + - https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright +--- + Redistribution and use in source and binary forms of parts of or the whole original or derived work are permitted provided that the original work is properly attributed to the author. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. This work is -provided "as is" and without any express or implied warranties. +provided "as is" and without any express or implied warranties. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lilo.yml b/src/licensedcode/data/licenses/lilo.yml deleted file mode 100644 index 0f1e1ac7643..00000000000 --- a/src/licensedcode/data/licenses/lilo.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: lilo -short_name: LILO License -name: LILO License -category: Permissive -owner: Unspecified -homepage_url: http://www.ingate.com/files/422/fwmanual-en/xx12671.html -spdx_license_key: LicenseRef-scancode-lilo -text_urls: - - http://www.ingate.com/files/422/fwmanual-en/xx12671.html - - https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright diff --git a/src/licensedcode/data/licenses/linking-exception-2.0-plus.LICENSE b/src/licensedcode/data/licenses/linking-exception-2.0-plus.LICENSE index da8d45d55f1..d89ecc575ce 100644 --- a/src/licensedcode/data/licenses/linking-exception-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/linking-exception-2.0-plus.LICENSE @@ -1,3 +1,33 @@ +--- +key: linking-exception-2.0-plus +short_name: Linking exception to GPL 2.0 or later +name: Linking exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-linking-exception-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, if you link this library with other files, + some of which are compiled with GCC, to produce an executable, + this library does not by itself cause the resulting executable to + be covered by the GNU General Public License. This exception does + not however invalidate any other reasons why the executable file + might be covered by the GNU General Public License. +--- + As a special exception, if you link this library with other files, some of which are compiled with GCC, to produce an executable, this library does not by itself cause the resulting executable to diff --git a/src/licensedcode/data/licenses/linking-exception-2.0-plus.yml b/src/licensedcode/data/licenses/linking-exception-2.0-plus.yml deleted file mode 100644 index edbb7421424..00000000000 --- a/src/licensedcode/data/licenses/linking-exception-2.0-plus.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: linking-exception-2.0-plus -short_name: Linking exception to GPL 2.0 or later -name: Linking exception to GPL 2.0 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: LicenseRef-scancode-linking-exception-2.0-plus -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - As a special exception, if you link this library with other files, - some of which are compiled with GCC, to produce an executable, - this library does not by itself cause the resulting executable to - be covered by the GNU General Public License. This exception does - not however invalidate any other reasons why the executable file - might be covered by the GNU General Public License. diff --git a/src/licensedcode/data/licenses/linking-exception-2.1-plus.LICENSE b/src/licensedcode/data/licenses/linking-exception-2.1-plus.LICENSE index 3a5ce68b526..c56f749e451 100644 --- a/src/licensedcode/data/licenses/linking-exception-2.1-plus.LICENSE +++ b/src/licensedcode/data/licenses/linking-exception-2.1-plus.LICENSE @@ -1,3 +1,35 @@ +--- +key: linking-exception-2.1-plus +short_name: Linking exception to LGPL 2.1 or later +name: Linking exception to LGPL 2.1 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-linking-exception-2.1-plus +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + The GNU C 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 the GNU C Library; if not, see + . + As a special exception, if you link the code in this file with + files compiled with a GNU compiler to produce an executable, + that does not cause the resulting executable to be covered by + the GNU Lesser General Public License. This exception does not + however invalidate any other reasons why the executable file + might be covered by the GNU Lesser General Public License. + This exception applies to code released by its copyright holders + in files containing the exception. +--- + As a special exception, if you link the code in this file with files compiled with a GNU compiler to produce an executable, that does not cause the resulting executable to be covered by diff --git a/src/licensedcode/data/licenses/linking-exception-2.1-plus.yml b/src/licensedcode/data/licenses/linking-exception-2.1-plus.yml deleted file mode 100644 index 5cbbbd41a85..00000000000 --- a/src/licensedcode/data/licenses/linking-exception-2.1-plus.yml +++ /dev/null @@ -1,29 +0,0 @@ -key: linking-exception-2.1-plus -short_name: Linking exception to LGPL 2.1 or later -name: Linking exception to LGPL 2.1 or later -category: Copyleft Limited -owner: Free Software Foundation (FSF) -is_exception: yes -spdx_license_key: LicenseRef-scancode-linking-exception-2.1-plus -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -standard_notice: | - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - The GNU C 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 the GNU C Library; if not, see - . - As a special exception, if you link the code in this file with - files compiled with a GNU compiler to produce an executable, - that does not cause the resulting executable to be covered by - the GNU Lesser General Public License. This exception does not - however invalidate any other reasons why the executable file - might be covered by the GNU Lesser General Public License. - This exception applies to code released by its copyright holders - in files containing the exception. diff --git a/src/licensedcode/data/licenses/linking-exception-agpl-3.0.LICENSE b/src/licensedcode/data/licenses/linking-exception-agpl-3.0.LICENSE index 5c1e5a311b9..1ba52c4a07e 100644 --- a/src/licensedcode/data/licenses/linking-exception-agpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/linking-exception-agpl-3.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: linking-exception-agpl-3.0 +short_name: Linking exception to AGPL 3.0 +name: Linking exception to AGPL 3.0 +category: Copyleft Limited +owner: Unspecified +homepage_url: http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-linking-exception-agpl-3.0 +--- + Additional permission under the GNU Affero GPL version 3 section 7: If you modify this Program, or any covered work, by linking or diff --git a/src/licensedcode/data/licenses/linking-exception-agpl-3.0.yml b/src/licensedcode/data/licenses/linking-exception-agpl-3.0.yml deleted file mode 100644 index 78a3ff0200b..00000000000 --- a/src/licensedcode/data/licenses/linking-exception-agpl-3.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: linking-exception-agpl-3.0 -short_name: Linking exception to AGPL 3.0 -name: Linking exception to AGPL 3.0 -category: Copyleft Limited -owner: Unspecified -homepage_url: http://mo.morsi.org/blog/2009/08/13/lesser_affero_gplv3/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-linking-exception-agpl-3.0 diff --git a/src/licensedcode/data/licenses/linking-exception-lgpl-2.0-plus.LICENSE b/src/licensedcode/data/licenses/linking-exception-lgpl-2.0-plus.LICENSE index d545152477a..ffcbddf3f9a 100644 --- a/src/licensedcode/data/licenses/linking-exception-lgpl-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/linking-exception-lgpl-2.0-plus.LICENSE @@ -1,3 +1,33 @@ +--- +key: linking-exception-lgpl-2.0-plus +short_name: Linking exception to LGPL 2.0 or later +name: Linking exception to LGPL 2.0 or later +category: Copyleft Limited +owner: FreeBASIC Project +is_exception: yes +spdx_license_key: LicenseRef-scancode-linking-exception-lgpl-2.0plus +other_spdx_license_keys: + - LicenseRef-scancode-linking-exception-lgpl-2.0-plus +other_urls: + - https://master.dl.sourceforge.net/project/fbc/Source%20Code/FreeBASIC-1.05.0-source.tar.gz +standard_notice: | + The FreeBASIC runtime library (libfb and the thread-safe version, libfbmt) + and the FreeBASIC graphics library (libfbgfx and the thread-safe version, + libfbgfxmt) are licensed under the GNU LGPLv2 or later, with this exception + to allow linking to it statically: + As a special exception, the copyright holders of this library give + you permission to link this library with independent modules to + produce an executable, regardless of the license terms of these + independent modules, and to copy and distribute the resulting + executable under terms of your choice, provided that you also meet, + for each linked independent module, the terms and conditions of the + license of that module. An independent module is a module which is + not derived from or based on this library. If you modify this library, + you may extend this exception to your version of the library, but + you are not obligated to do so. If you do not wish to do so, delete + this exception statement from your version. +--- + As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these diff --git a/src/licensedcode/data/licenses/linking-exception-lgpl-2.0-plus.yml b/src/licensedcode/data/licenses/linking-exception-lgpl-2.0-plus.yml deleted file mode 100644 index 6b53a211f0b..00000000000 --- a/src/licensedcode/data/licenses/linking-exception-lgpl-2.0-plus.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: linking-exception-lgpl-2.0-plus -short_name: Linking exception to LGPL 2.0 or later -name: Linking exception to LGPL 2.0 or later -category: Copyleft Limited -owner: FreeBASIC Project -is_exception: yes -spdx_license_key: LicenseRef-scancode-linking-exception-lgpl-2.0plus -other_spdx_license_keys: - - LicenseRef-scancode-linking-exception-lgpl-2.0-plus -other_urls: - - https://master.dl.sourceforge.net/project/fbc/Source%20Code/FreeBASIC-1.05.0-source.tar.gz -standard_notice: | - The FreeBASIC runtime library (libfb and the thread-safe version, libfbmt) - and the FreeBASIC graphics library (libfbgfx and the thread-safe version, - libfbgfxmt) are licensed under the GNU LGPLv2 or later, with this exception - to allow linking to it statically: - As a special exception, the copyright holders of this library give - you permission to link this library with independent modules to - produce an executable, regardless of the license terms of these - independent modules, and to copy and distribute the resulting - executable under terms of your choice, provided that you also meet, - for each linked independent module, the terms and conditions of the - license of that module. An independent module is a module which is - not derived from or based on this library. If you modify this library, - you may extend this exception to your version of the library, but - you are not obligated to do so. If you do not wish to do so, delete - this exception statement from your version. diff --git a/src/licensedcode/data/licenses/linking-exception-lgpl-3.0.LICENSE b/src/licensedcode/data/licenses/linking-exception-lgpl-3.0.LICENSE index 08687a75c5e..7fdd23074f0 100644 --- a/src/licensedcode/data/licenses/linking-exception-lgpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/linking-exception-lgpl-3.0.LICENSE @@ -1,3 +1,45 @@ +--- +key: linking-exception-lgpl-3.0 +is_deprecated: yes +short_name: Linking exception to LGPL 3.0 +name: Linking exception to LGPL 3.0 +category: Copyleft Limited +owner: Canonical Inc. +homepage_url: https://github.com/go-yaml/yaml/blob/v2/LICENSE +notes: This is deprecated and replaced by lgpl-3.0-linking-exception +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +standard_notice: | + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 3 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 library; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + As a special exception to the GNU Lesser General Public License version 3 + ("LGPL3"), the copyright holders of this Library give you permission to + convey to a third party a Combined Work that links statically or + dynamically to this Library without providing any Minimal Corresponding + Source or + Minimal Application Code as set out in 4d or providing the installation + information set out in section 4e, provided that you comply with the other + provisions of LGPL3 and provided that you meet, for the Application the + terms and conditions of the license(s) which apply to the Application. + Except as stated in this special exception, the provisions of LGPL3 will + continue to comply in full to this Library. If you modify this Library, you + may apply this exception to your version of this Library, but you are not + obliged to do so. If you do not wish to do so, delete this exception + statement from your version. This exception does not (and cannot) modify + any license terms which apply to the Application, with which you must still + comply. +--- + As a special exception to the GNU Lesser General Public License version 3 ("LGPL3"), the copyright holders of this Library give you permission to convey to a third party a Combined Work that links statically or dynamically to this diff --git a/src/licensedcode/data/licenses/linking-exception-lgpl-3.0.yml b/src/licensedcode/data/licenses/linking-exception-lgpl-3.0.yml deleted file mode 100644 index b86b756d157..00000000000 --- a/src/licensedcode/data/licenses/linking-exception-lgpl-3.0.yml +++ /dev/null @@ -1,39 +0,0 @@ -key: linking-exception-lgpl-3.0 -is_deprecated: yes -short_name: Linking exception to LGPL 3.0 -name: Linking exception to LGPL 3.0 -category: Copyleft Limited -owner: Canonical Inc. -homepage_url: https://github.com/go-yaml/yaml/blob/v2/LICENSE -notes: This is deprecated and replaced by lgpl-3.0-linking-exception -is_exception: yes -other_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt -standard_notice: | - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 3 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 library; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - As a special exception to the GNU Lesser General Public License version 3 - ("LGPL3"), the copyright holders of this Library give you permission to - convey to a third party a Combined Work that links statically or - dynamically to this Library without providing any Minimal Corresponding - Source or - Minimal Application Code as set out in 4d or providing the installation - information set out in section 4e, provided that you comply with the other - provisions of LGPL3 and provided that you meet, for the Application the - terms and conditions of the license(s) which apply to the Application. - Except as stated in this special exception, the provisions of LGPL3 will - continue to comply in full to this Library. If you modify this Library, you - may apply this exception to your version of this Library, but you are not - obliged to do so. If you do not wish to do so, delete this exception - statement from your version. This exception does not (and cannot) modify - any license terms which apply to the Application, with which you must still - comply. diff --git a/src/licensedcode/data/licenses/linotype-eula.LICENSE b/src/licensedcode/data/licenses/linotype-eula.LICENSE index 6e0985c9b0b..9c5bb5b5cbf 100644 --- a/src/licensedcode/data/licenses/linotype-eula.LICENSE +++ b/src/licensedcode/data/licenses/linotype-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: linotype-eula +short_name: Linotype EULA +name: Linotype EULA +category: Commercial +owner: Linotype +homepage_url: http://www.linotype.com/2061-28225/licenseagreementforfontsoftware.html +spdx_license_key: LicenseRef-scancode-linotype-eula +--- + License Agreement for Font Software - Linotype EULA Preamble: diff --git a/src/licensedcode/data/licenses/linotype-eula.yml b/src/licensedcode/data/licenses/linotype-eula.yml deleted file mode 100644 index 50abe61c0e3..00000000000 --- a/src/licensedcode/data/licenses/linotype-eula.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: linotype-eula -short_name: Linotype EULA -name: Linotype EULA -category: Commercial -owner: Linotype -homepage_url: http://www.linotype.com/2061-28225/licenseagreementforfontsoftware.html -spdx_license_key: LicenseRef-scancode-linotype-eula diff --git a/src/licensedcode/data/licenses/linum.LICENSE b/src/licensedcode/data/licenses/linum.LICENSE index 12183c768c7..4e49849ca43 100644 --- a/src/licensedcode/data/licenses/linum.LICENSE +++ b/src/licensedcode/data/licenses/linum.LICENSE @@ -1,3 +1,13 @@ +--- +key: linum +short_name: Linum Software License +name: Linum Software License +category: Permissive +owner: Linum Software GmbH +is_deprecated: yes +notes: replaced by identical philippe-de-muyter 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. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/linum.yml b/src/licensedcode/data/licenses/linum.yml deleted file mode 100644 index a467f88278d..00000000000 --- a/src/licensedcode/data/licenses/linum.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: linum -short_name: Linum Software License -name: Linum Software License -category: Permissive -owner: Linum Software GmbH -is_deprecated: yes -notes: replaced by identical philippe-de-muyter license \ No newline at end of file diff --git a/src/licensedcode/data/licenses/linux-device-drivers.LICENSE b/src/licensedcode/data/licenses/linux-device-drivers.LICENSE index e6a9ee59ddb..89a67101a7b 100644 --- a/src/licensedcode/data/licenses/linux-device-drivers.LICENSE +++ b/src/licensedcode/data/licenses/linux-device-drivers.LICENSE @@ -1,3 +1,12 @@ +--- +key: linux-device-drivers +short_name: Linux Device Drivers +name: Linux Device Drivers License +category: Permissive +owner: O'Reilly Media, Inc. +spdx_license_key: LicenseRef-scancode-linux-device-drivers +--- + The source code in this file can be freely used, adapted, and redistributed in source or binary form, so long as an acknowledgment appears in derived source files. The citation diff --git a/src/licensedcode/data/licenses/linux-device-drivers.yml b/src/licensedcode/data/licenses/linux-device-drivers.yml deleted file mode 100644 index 8837de8b104..00000000000 --- a/src/licensedcode/data/licenses/linux-device-drivers.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: linux-device-drivers -short_name: Linux Device Drivers -name: Linux Device Drivers License -category: Permissive -owner: O'Reilly Media, Inc. -spdx_license_key: LicenseRef-scancode-linux-device-drivers diff --git a/src/licensedcode/data/licenses/linux-openib.LICENSE b/src/licensedcode/data/licenses/linux-openib.LICENSE index 069ce89ecf8..184cbbd3a6d 100644 --- a/src/licensedcode/data/licenses/linux-openib.LICENSE +++ b/src/licensedcode/data/licenses/linux-openib.LICENSE @@ -1,3 +1,21 @@ +--- +key: linux-openib +short_name: Linux-OpenIB +name: Linux-OpenIB +category: Permissive +owner: Linux Foundation +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h +notes: | + This license is a hybrid of two common licenses the BSD-2-Clause (bsd- + simplified) and the MIT License (mit). +spdx_license_key: Linux-OpenIB +text_urls: + - https://github.com/ofiwg/libfabric/blob/master/contrib/buildrpm/README +other_urls: + - https://github.com/spdx/license-list-XML/issues/620 + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h?id=3215b9d57a2c75c4305a3956ca303d7004485200 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -13,4 +31,4 @@ 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. +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/licenses/linux-openib.yml b/src/licensedcode/data/licenses/linux-openib.yml deleted file mode 100644 index eed53e7cdc7..00000000000 --- a/src/licensedcode/data/licenses/linux-openib.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: linux-openib -short_name: Linux-OpenIB -name: Linux-OpenIB -category: Permissive -owner: Linux Foundation -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h -notes: | - This license is a hybrid of two common licenses the BSD-2-Clause (bsd- - simplified) and the MIT License (mit). -spdx_license_key: Linux-OpenIB -text_urls: - - https://github.com/ofiwg/libfabric/blob/master/contrib/buildrpm/README -other_urls: - - https://github.com/spdx/license-list-XML/issues/620 - - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h?id=3215b9d57a2c75c4305a3956ca303d7004485200 diff --git a/src/licensedcode/data/licenses/linux-syscall-exception-gpl.LICENSE b/src/licensedcode/data/licenses/linux-syscall-exception-gpl.LICENSE index 8870f677f24..ac43ad5e4ff 100644 --- a/src/licensedcode/data/licenses/linux-syscall-exception-gpl.LICENSE +++ b/src/licensedcode/data/licenses/linux-syscall-exception-gpl.LICENSE @@ -1,3 +1,43 @@ +--- +key: linux-syscall-exception-gpl +short_name: Linux Syscall Exception to GPL +name: Linux Syscall Exception to GPL +category: Copyleft Limited +owner: Linux Foundation +is_exception: yes +spdx_license_key: Linux-syscall-note +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/COPYING +standard_notice: | + NOTE! This copyright does *not* cover user programs that use kernel + services by normal system calls - this is merely considered normal use + of the kernel, and does *not* fall under the heading of "derived work". + Also note that the GPL below is copyrighted by the Free Software + Foundation, but the instance of code that it refers to (the Linux + kernel) is copyrighted by me and others who actually wrote it. + Also note that the only valid version of the GPL as far as the kernel + is concerned is _this_ particular version of the license (ie v2, not + v2.2 or v3.x or whatever), unless explicitly otherwise stated. + Linus Torvalds + This library 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. + 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/licenses/linux-syscall-exception-gpl.yml b/src/licensedcode/data/licenses/linux-syscall-exception-gpl.yml deleted file mode 100644 index 48bac93c8eb..00000000000 --- a/src/licensedcode/data/licenses/linux-syscall-exception-gpl.yml +++ /dev/null @@ -1,37 +0,0 @@ -key: linux-syscall-exception-gpl -short_name: Linux Syscall Exception to GPL -name: Linux Syscall Exception to GPL -category: Copyleft Limited -owner: Linux Foundation -is_exception: yes -spdx_license_key: Linux-syscall-note -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/COPYING -standard_notice: | - NOTE! This copyright does *not* cover user programs that use kernel - services by normal system calls - this is merely considered normal use - of the kernel, and does *not* fall under the heading of "derived work". - Also note that the GPL below is copyrighted by the Free Software - Foundation, but the instance of code that it refers to (the Linux - kernel) is copyrighted by me and others who actually wrote it. - Also note that the only valid version of the GPL as far as the kernel - is concerned is _this_ particular version of the license (ie v2, not - v2.2 or v3.x or whatever), unless explicitly otherwise stated. - Linus Torvalds - This library 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. - 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/linuxbios.LICENSE b/src/licensedcode/data/licenses/linuxbios.LICENSE index 96dfca4eebe..d605b295589 100644 --- a/src/licensedcode/data/licenses/linuxbios.LICENSE +++ b/src/licensedcode/data/licenses/linuxbios.LICENSE @@ -1,3 +1,13 @@ +--- +key: linuxbios +short_name: LinuxBIOS License +name: LinuxBIOS License +category: Permissive +owner: LANL +homepage_url: http://www.lanl.gov/index.php +spdx_license_key: LicenseRef-scancode-linuxbios +--- + This software and ancillary information (herein called SOFTWARE) called LinuxBIOS is made available under the terms described here. @@ -16,4 +26,4 @@ Neither the Government nor the University makes any warranty, express or implied, or assumes any liability or responsibility for the use of this SOFTWARE. If SOFTWARE is modified to produce derivative works, such modified SOFTWARE should be clearly marked, so as not to confuse -it with the version available from LANL. +it with the version available from LANL. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/linuxbios.yml b/src/licensedcode/data/licenses/linuxbios.yml deleted file mode 100644 index 8d14f632c46..00000000000 --- a/src/licensedcode/data/licenses/linuxbios.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: linuxbios -short_name: LinuxBIOS License -name: LinuxBIOS License -category: Permissive -owner: LANL -homepage_url: http://www.lanl.gov/index.php -spdx_license_key: LicenseRef-scancode-linuxbios diff --git a/src/licensedcode/data/licenses/linuxhowtos.LICENSE b/src/licensedcode/data/licenses/linuxhowtos.LICENSE index 7e5d8f28b6d..2c8c005261c 100644 --- a/src/licensedcode/data/licenses/linuxhowtos.LICENSE +++ b/src/licensedcode/data/licenses/linuxhowtos.LICENSE @@ -1,3 +1,14 @@ +--- +key: linuxhowtos +short_name: linuxhowtos License +name: linuxhowtos License +category: Permissive +owner: Linux Foundation +homepage_url: http://www.linuxhowtos.org/category17/ +spdx_license_key: LicenseRef-scancode-linuxhowtos +minimum_coverage: 80 +--- + All howtos and documents on this site are provided "AS IS," with no express or implied warranties. Use the information on this site at your own risk. diff --git a/src/licensedcode/data/licenses/linuxhowtos.yml b/src/licensedcode/data/licenses/linuxhowtos.yml deleted file mode 100644 index f8e3b356817..00000000000 --- a/src/licensedcode/data/licenses/linuxhowtos.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: linuxhowtos -short_name: linuxhowtos License -name: linuxhowtos License -category: Permissive -owner: Linux Foundation -homepage_url: http://www.linuxhowtos.org/category17/ -spdx_license_key: LicenseRef-scancode-linuxhowtos -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/llgpl.LICENSE b/src/licensedcode/data/licenses/llgpl.LICENSE index 7508ea0b48b..a1e135bb849 100644 --- a/src/licensedcode/data/licenses/llgpl.LICENSE +++ b/src/licensedcode/data/licenses/llgpl.LICENSE @@ -1,3 +1,17 @@ +--- +key: llgpl +short_name: LLGPL +name: Lisp Lesser General Public License (LLPGL) +category: Copyleft Limited +owner: Franz Inc +homepage_url: http://opensource.franz.com/preamble.html +spdx_license_key: LicenseRef-scancode-llgpl +faq_url: http://opensource.franz.com/ +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt + - https://github.com/franzinc +--- + The concept of the GNU Lesser General Public License version 2.1 ("LGPL") has been adopted to govern the use and distribution of above- mentioned application. However, the LGPL uses terminology that is more diff --git a/src/licensedcode/data/licenses/llgpl.yml b/src/licensedcode/data/licenses/llgpl.yml deleted file mode 100644 index 3e6952ec9fe..00000000000 --- a/src/licensedcode/data/licenses/llgpl.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: llgpl -short_name: LLGPL -name: Lisp Lesser General Public License (LLPGL) -category: Copyleft Limited -owner: Franz Inc -homepage_url: http://opensource.franz.com/preamble.html -spdx_license_key: LicenseRef-scancode-llgpl -faq_url: http://opensource.franz.com/ -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt - - https://github.com/franzinc diff --git a/src/licensedcode/data/licenses/llnl.LICENSE b/src/licensedcode/data/licenses/llnl.LICENSE index 479eafef3bd..18dc2b8ef2e 100644 --- a/src/licensedcode/data/licenses/llnl.LICENSE +++ b/src/licensedcode/data/licenses/llnl.LICENSE @@ -1,3 +1,15 @@ +--- +key: llnl +short_name: LLNL +name: LLNL +category: Permissive +owner: Regents of the University of California +notes: | + this notice is quite similar to the DSDP license and appears in similar + forms in HDF5 and other common components +spdx_license_key: LicenseRef-scancode-llnl +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this en- tire notice is included in all copies of any software which is or diff --git a/src/licensedcode/data/licenses/llnl.yml b/src/licensedcode/data/licenses/llnl.yml deleted file mode 100644 index 2ad777100ca..00000000000 --- a/src/licensedcode/data/licenses/llnl.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: llnl -short_name: LLNL -name: LLNL -category: Permissive -owner: Regents of the University of California -notes: | - this notice is quite similar to the DSDP license and appears in similar - forms in HDF5 and other common components -spdx_license_key: LicenseRef-scancode-llnl diff --git a/src/licensedcode/data/licenses/llvm-exception.LICENSE b/src/licensedcode/data/licenses/llvm-exception.LICENSE index 8995d8c63e9..6ce750369a0 100644 --- a/src/licensedcode/data/licenses/llvm-exception.LICENSE +++ b/src/licensedcode/data/licenses/llvm-exception.LICENSE @@ -1,3 +1,35 @@ +--- +key: llvm-exception +short_name: LLVM Exception to Apache 2.0 +name: LLVM Exception to Apache 2.0 +category: Permissive +owner: llvm Project +homepage_url: http://llvm.org/foundation/relicensing/LICENSE.txt +is_exception: yes +spdx_license_key: LLVM-exception +other_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - https://github.com/apple/cups/blob/v2.3.3/NOTICE +standard_notice: | + --- LLVM Exceptions to the Apache 2.0 License ---- + As an exception, if, as a result of your compiling your source code, + portions + of this Software are embedded into an Object form of such source code, you + may redistribute such embedded portions in such Object form without + complying + with the conditions of Sections 4(a), 4(b) and 4(d) of the License. + In addition, if you combine or link compiled forms of this Software with + software that is licensed under the GPLv2 ("Combined Software") and if a + court of competent jurisdiction determines that the patent provision + (Section + 3), the indemnity provision (Section 9) or other Section of the License + conflicts with the conditions of the GPLv2, you may retroactively and + prospectively choose to deem waived or otherwise exclude such Section(s) of + the License, but only in their entirety and only with respect to the + Combined + Software. +--- + --- LLVM Exceptions to the Apache 2.0 License ---- As an exception, if, as a result of your compiling your source code, portions diff --git a/src/licensedcode/data/licenses/llvm-exception.yml b/src/licensedcode/data/licenses/llvm-exception.yml deleted file mode 100644 index 55dc56060f2..00000000000 --- a/src/licensedcode/data/licenses/llvm-exception.yml +++ /dev/null @@ -1,29 +0,0 @@ -key: llvm-exception -short_name: LLVM Exception to Apache 2.0 -name: LLVM Exception to Apache 2.0 -category: Permissive -owner: llvm Project -homepage_url: http://llvm.org/foundation/relicensing/LICENSE.txt -is_exception: yes -spdx_license_key: LLVM-exception -other_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - https://github.com/apple/cups/blob/v2.3.3/NOTICE -standard_notice: | - --- LLVM Exceptions to the Apache 2.0 License ---- - As an exception, if, as a result of your compiling your source code, - portions - of this Software are embedded into an Object form of such source code, you - may redistribute such embedded portions in such Object form without - complying - with the conditions of Sections 4(a), 4(b) and 4(d) of the License. - In addition, if you combine or link compiled forms of this Software with - software that is licensed under the GPLv2 ("Combined Software") and if a - court of competent jurisdiction determines that the patent provision - (Section - 3), the indemnity provision (Section 9) or other Section of the License - conflicts with the conditions of the GPLv2, you may retroactively and - prospectively choose to deem waived or otherwise exclude such Section(s) of - the License, but only in their entirety and only with respect to the - Combined - Software. diff --git a/src/licensedcode/data/licenses/lmbench-exception-2.0.LICENSE b/src/licensedcode/data/licenses/lmbench-exception-2.0.LICENSE index 966034de11a..3efcf04905f 100644 --- a/src/licensedcode/data/licenses/lmbench-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/lmbench-exception-2.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: lmbench-exception-2.0 +short_name: LMBench exception to GPL 2.0 +name: LMBench exception to GPL 2.0 +category: Copyleft Limited +owner: Larry McVoy +homepage_url: http://lmbench.sourceforge.net/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-lmbench-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + Distributed under the FSF GPL with additional restriction that results may + be published only if + (1) the benchmark is unmodified, and + (2) the version in the sccsid below is included in the report. + In the file COPYING-1: + The set of programs and documentation known as "lmbench" are distributed + under the Free Software Foundation's General Public License with the + following additional restrictions (which override any conflicting + restrictions in the GPL): + 1. You may not distribute results in any public forum, in any publication, + or in any other way if you have modified the benchmarks. + 2. You may not distribute the results for a fee of any kind. This includes + web sites which generate revenue from advertising. +--- + Distributed under the FSF GPL with additional restriction that results may be published only if (1) the benchmark is unmodified, and (2) the version in the sccsid below is included in the report. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lmbench-exception-2.0.yml b/src/licensedcode/data/licenses/lmbench-exception-2.0.yml deleted file mode 100644 index e2a4fccb367..00000000000 --- a/src/licensedcode/data/licenses/lmbench-exception-2.0.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: lmbench-exception-2.0 -short_name: LMBench exception to GPL 2.0 -name: LMBench exception to GPL 2.0 -category: Copyleft Limited -owner: Larry McVoy -homepage_url: http://lmbench.sourceforge.net/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-lmbench-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - Distributed under the FSF GPL with additional restriction that results may - be published only if - (1) the benchmark is unmodified, and - (2) the version in the sccsid below is included in the report. - In the file COPYING-1: - The set of programs and documentation known as "lmbench" are distributed - under the Free Software Foundation's General Public License with the - following additional restrictions (which override any conflicting - restrictions in the GPL): - 1. You may not distribute results in any public forum, in any publication, - or in any other way if you have modified the benchmarks. - 2. You may not distribute the results for a fee of any kind. This includes - web sites which generate revenue from advertising. diff --git a/src/licensedcode/data/licenses/logica-1.0.LICENSE b/src/licensedcode/data/licenses/logica-1.0.LICENSE index 20691e3f57c..04c1ebd6e1d 100644 --- a/src/licensedcode/data/licenses/logica-1.0.LICENSE +++ b/src/licensedcode/data/licenses/logica-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: logica-1.0 +short_name: Logica OSL 1.0 +name: Logica Open Source License v1.0 +category: Permissive +owner: Logica +homepage_url: http://opensmpp.logica.com/CommonPart/Download/Download.htm +spdx_license_key: LicenseRef-scancode-logica-1.0 +text_urls: + - http://opensmpp.logica.com/CommonPart/Download/Download.htm +ignorable_copyrights: + - Copyright (c) 1996-2001 Logica Mobile Networks Limited +ignorable_holders: + - Logica Mobile Networks Limited +--- + Logica Open Source License Version 1.0 Copyright (c) 1996-2001 Logica Mobile Networks Limited, all rights reserved. diff --git a/src/licensedcode/data/licenses/logica-1.0.yml b/src/licensedcode/data/licenses/logica-1.0.yml deleted file mode 100644 index ba95ce85075..00000000000 --- a/src/licensedcode/data/licenses/logica-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: logica-1.0 -short_name: Logica OSL 1.0 -name: Logica Open Source License v1.0 -category: Permissive -owner: Logica -homepage_url: http://opensmpp.logica.com/CommonPart/Download/Download.htm -spdx_license_key: LicenseRef-scancode-logica-1.0 -text_urls: - - http://opensmpp.logica.com/CommonPart/Download/Download.htm -ignorable_copyrights: - - Copyright (c) 1996-2001 Logica Mobile Networks Limited -ignorable_holders: - - Logica Mobile Networks Limited diff --git a/src/licensedcode/data/licenses/lontium-linux-firmware.LICENSE b/src/licensedcode/data/licenses/lontium-linux-firmware.LICENSE index e08f203394c..7506e7ccf95 100644 --- a/src/licensedcode/data/licenses/lontium-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/lontium-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: lontium-linux-firmware +short_name: Lontium Linux Firmware License +name: Lontium Linux Firmware License +category: Proprietary Free +owner: Lontium +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.Lontium +spdx_license_key: LicenseRef-scancode-lontium-linux-firmware +--- + Lontium Semiconductor Corp. grants permission to use and redistribute aforementioned firmware file for the use with devices containing Lontium chipsets, but not as part of the Linux kernel or in any other form which would require the file itself to be covered by the terms of the GNU General Public License or the GNU Lesser General Public License. The firmware file is distributed in the hope that it will be useful, but is provided WITHOUT ANY WARRANTY, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lontium-linux-firmware.yml b/src/licensedcode/data/licenses/lontium-linux-firmware.yml deleted file mode 100644 index aad8f9c9b70..00000000000 --- a/src/licensedcode/data/licenses/lontium-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: lontium-linux-firmware -short_name: Lontium Linux Firmware License -name: Lontium Linux Firmware License -category: Proprietary Free -owner: Lontium -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.Lontium -spdx_license_key: LicenseRef-scancode-lontium-linux-firmware diff --git a/src/licensedcode/data/licenses/losla.LICENSE b/src/licensedcode/data/licenses/losla.LICENSE index a1c3ca9f5db..9831a1ceebc 100644 --- a/src/licensedcode/data/licenses/losla.LICENSE +++ b/src/licensedcode/data/licenses/losla.LICENSE @@ -1,3 +1,22 @@ +--- +key: losla +short_name: LOSLA +name: LEGO Open Source License Agreement +category: Copyleft Limited +owner: LEGO Group +homepage_url: https://fedoraproject.org/wiki/Licensing/LOSLA +spdx_license_key: LicenseRef-scancode-losla +text_urls: + - https://raw.githubusercontent.com/nxt3-org/nxt3/master/firmware/core/LICENSE.pdf +faq_url: https://fedoraproject.org/wiki/Licensing/LOSLA#License_Notes +ignorable_copyrights: + - (c) 2006 +ignorable_authors: + - National Instruments +ignorable_urls: + - http://mindstorms.lego.com/Overview/NXTreme.aspx +--- + LEGO® OPEN SOURCE LICENSE AGREEMENT 1.0 LEGO® MINDSTORMS® NXT FIRMWARE This LEGO® Open Source License Agreement is an open source license for the firmware of the LEGO® MINDSTORMS® NXT ATMEL microprocessors. diff --git a/src/licensedcode/data/licenses/losla.yml b/src/licensedcode/data/licenses/losla.yml deleted file mode 100644 index af8a59207b3..00000000000 --- a/src/licensedcode/data/licenses/losla.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: losla -short_name: LOSLA -name: LEGO Open Source License Agreement -category: Copyleft Limited -owner: LEGO Group -homepage_url: https://fedoraproject.org/wiki/Licensing/LOSLA -spdx_license_key: LicenseRef-scancode-losla -text_urls: - - https://raw.githubusercontent.com/nxt3-org/nxt3/master/firmware/core/LICENSE.pdf -faq_url: https://fedoraproject.org/wiki/Licensing/LOSLA#License_Notes -ignorable_copyrights: - - (c) 2006 -ignorable_authors: - - National Instruments -ignorable_urls: - - http://mindstorms.lego.com/Overview/NXTreme.aspx diff --git a/src/licensedcode/data/licenses/lppl-1.0.LICENSE b/src/licensedcode/data/licenses/lppl-1.0.LICENSE index 9a4b768c88f..b0304c14b25 100644 --- a/src/licensedcode/data/licenses/lppl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/lppl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: lppl-1.0 +short_name: LPPL 1.0 +name: LaTeX Project Public License v1.0 +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-0.txt +notes: Per SPDX.org, this license was released 1 Mar 1999 +spdx_license_key: LPPL-1.0 +text_urls: + - http://www.latex-project.org/lppl/lppl-1-0.txt +ignorable_copyrights: + - Copyright 1999 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +--- + LaTeX Project Public License ============================ LPPL Version 1.0 1999-03-01 diff --git a/src/licensedcode/data/licenses/lppl-1.0.yml b/src/licensedcode/data/licenses/lppl-1.0.yml deleted file mode 100644 index 744d09b5744..00000000000 --- a/src/licensedcode/data/licenses/lppl-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: lppl-1.0 -short_name: LPPL 1.0 -name: LaTeX Project Public License v1.0 -category: Copyleft -owner: LaTeX -homepage_url: http://www.latex-project.org/lppl/lppl-1-0.txt -notes: Per SPDX.org, this license was released 1 Mar 1999 -spdx_license_key: LPPL-1.0 -text_urls: - - http://www.latex-project.org/lppl/lppl-1-0.txt -ignorable_copyrights: - - Copyright 1999 LaTeX3 Project -ignorable_holders: - - LaTeX3 Project diff --git a/src/licensedcode/data/licenses/lppl-1.1.LICENSE b/src/licensedcode/data/licenses/lppl-1.1.LICENSE index fac85e22c43..c647ce18860 100644 --- a/src/licensedcode/data/licenses/lppl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/lppl-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: lppl-1.1 +short_name: LPPL 1.1 +name: LaTeX Project Public License v1.1 +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-1.txt +notes: Per SPDX.org, this license was released 10 July 1999. +spdx_license_key: LPPL-1.1 +text_urls: + - http://www.latex-project.org/lppl/lppl-1-1.txt +ignorable_copyrights: + - Copyright 1999 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- LPPL Version 1.1 1999-07-10 diff --git a/src/licensedcode/data/licenses/lppl-1.1.yml b/src/licensedcode/data/licenses/lppl-1.1.yml deleted file mode 100644 index eabfa262394..00000000000 --- a/src/licensedcode/data/licenses/lppl-1.1.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: lppl-1.1 -short_name: LPPL 1.1 -name: LaTeX Project Public License v1.1 -category: Copyleft -owner: LaTeX -homepage_url: http://www.latex-project.org/lppl/lppl-1-1.txt -notes: Per SPDX.org, this license was released 10 July 1999. -spdx_license_key: LPPL-1.1 -text_urls: - - http://www.latex-project.org/lppl/lppl-1-1.txt -ignorable_copyrights: - - Copyright 1999 LaTeX3 Project -ignorable_holders: - - LaTeX3 Project -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/licenses/lppl-1.2.LICENSE b/src/licensedcode/data/licenses/lppl-1.2.LICENSE index af5781ac867..25d94436551 100644 --- a/src/licensedcode/data/licenses/lppl-1.2.LICENSE +++ b/src/licensedcode/data/licenses/lppl-1.2.LICENSE @@ -1,3 +1,22 @@ +--- +key: lppl-1.2 +short_name: LPPL 1.2 +name: LaTeX Project Public License v1.2 +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-2.txt +notes: Per SPDX.org, this license was released 3 Sept 1999. +spdx_license_key: LPPL-1.2 +text_urls: + - http://www.latex-project.org/lppl/lppl-1-2.txt +ignorable_copyrights: + - Copyright 1999 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- LPPL Version 1.2 1999-09-03 diff --git a/src/licensedcode/data/licenses/lppl-1.2.yml b/src/licensedcode/data/licenses/lppl-1.2.yml deleted file mode 100644 index 91e48588910..00000000000 --- a/src/licensedcode/data/licenses/lppl-1.2.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: lppl-1.2 -short_name: LPPL 1.2 -name: LaTeX Project Public License v1.2 -category: Copyleft -owner: LaTeX -homepage_url: http://www.latex-project.org/lppl/lppl-1-2.txt -notes: Per SPDX.org, this license was released 3 Sept 1999. -spdx_license_key: LPPL-1.2 -text_urls: - - http://www.latex-project.org/lppl/lppl-1-2.txt -ignorable_copyrights: - - Copyright 1999 LaTeX3 Project -ignorable_holders: - - LaTeX3 Project -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/licenses/lppl-1.3a.LICENSE b/src/licensedcode/data/licenses/lppl-1.3a.LICENSE index f28516973b7..b8076caa48d 100644 --- a/src/licensedcode/data/licenses/lppl-1.3a.LICENSE +++ b/src/licensedcode/data/licenses/lppl-1.3a.LICENSE @@ -1,3 +1,22 @@ +--- +key: lppl-1.3a +short_name: LPPL 1.3a +name: LaTeX Project Public License v1.3a +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-3a.txt +notes: Per SPDX.org, this license was released 1 Oct 2004 +spdx_license_key: LPPL-1.3a +text_urls: + - http://www.latex-project.org/lppl/lppl-1-3a.txt +ignorable_copyrights: + - Copyright 1999 2002-04 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- LPPL Version 1.3a 2004-10-01 diff --git a/src/licensedcode/data/licenses/lppl-1.3a.yml b/src/licensedcode/data/licenses/lppl-1.3a.yml deleted file mode 100644 index 836df622914..00000000000 --- a/src/licensedcode/data/licenses/lppl-1.3a.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: lppl-1.3a -short_name: LPPL 1.3a -name: LaTeX Project Public License v1.3a -category: Copyleft -owner: LaTeX -homepage_url: http://www.latex-project.org/lppl/lppl-1-3a.txt -notes: Per SPDX.org, this license was released 1 Oct 2004 -spdx_license_key: LPPL-1.3a -text_urls: - - http://www.latex-project.org/lppl/lppl-1-3a.txt -ignorable_copyrights: - - Copyright 1999 2002-04 LaTeX3 Project -ignorable_holders: - - LaTeX3 Project -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/licenses/lppl-1.3c.LICENSE b/src/licensedcode/data/licenses/lppl-1.3c.LICENSE index 22443139013..c3c8f97fbc6 100644 --- a/src/licensedcode/data/licenses/lppl-1.3c.LICENSE +++ b/src/licensedcode/data/licenses/lppl-1.3c.LICENSE @@ -1,3 +1,28 @@ +--- +key: lppl-1.3c +short_name: LPPL 1.3c +name: LaTeX Project Public License v1.3c +category: Copyleft +owner: LaTeX +homepage_url: http://www.latex-project.org/lppl/lppl-1-3c.txt +notes: | + Per SPDX.org, this license was released 4 May 2008 This license is OSI + certified. +spdx_license_key: LPPL-1.3c +osi_license_key: LPPL-1.3c +text_urls: + - http://www.latex-project.org/lppl/lppl-1-3c.txt +other_urls: + - http://www.opensource.org/licenses/LPPL-1.3c + - https://opensource.org/licenses/LPPL-1.3c +ignorable_copyrights: + - Copyright 1999 2002-2008 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @@ -412,5 +437,4 @@ Important Recommendations impossible for the licensee to determine what is considered by you to comprise the Work and, in such a case, the licensee would be entitled to make reasonable conjectures as to which files comprise - the Work. - + the Work. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/lppl-1.3c.yml b/src/licensedcode/data/licenses/lppl-1.3c.yml deleted file mode 100644 index 46c9676af88..00000000000 --- a/src/licensedcode/data/licenses/lppl-1.3c.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: lppl-1.3c -short_name: LPPL 1.3c -name: LaTeX Project Public License v1.3c -category: Copyleft -owner: LaTeX -homepage_url: http://www.latex-project.org/lppl/lppl-1-3c.txt -notes: | - Per SPDX.org, this license was released 4 May 2008 This license is OSI - certified. -spdx_license_key: LPPL-1.3c -osi_license_key: LPPL-1.3c -text_urls: - - http://www.latex-project.org/lppl/lppl-1-3c.txt -other_urls: - - http://www.opensource.org/licenses/LPPL-1.3c - - https://opensource.org/licenses/LPPL-1.3c -ignorable_copyrights: - - Copyright 1999 2002-2008 LaTeX3 Project -ignorable_holders: - - LaTeX3 Project -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/licenses/lsi-proprietary-eula.LICENSE b/src/licensedcode/data/licenses/lsi-proprietary-eula.LICENSE index 1c2c212b178..920eae6b116 100644 --- a/src/licensedcode/data/licenses/lsi-proprietary-eula.LICENSE +++ b/src/licensedcode/data/licenses/lsi-proprietary-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: lsi-proprietary-eula +short_name: LSI Proprietary EULA +name: LSI Proprietary EULA +category: Proprietary Free +owner: LSI Corporation +homepage_url: http://www.lsi.com/Pages/user/eula.aspx +spdx_license_key: LicenseRef-scancode-lsi-proprietary-eula +ignorable_urls: + - http://www.oracle.com/technetwork/java/javase/terms/license/index.html +--- + USE OF LSI DOCUMENTATION AND SOFTWARE DOWNLOADS IS SUBJECT TO THIS AGREEMENT IMPORTANT - READ CAREFULLY: This Software License Agreement ("SLA") is a legal diff --git a/src/licensedcode/data/licenses/lsi-proprietary-eula.yml b/src/licensedcode/data/licenses/lsi-proprietary-eula.yml deleted file mode 100644 index fc7ebd007aa..00000000000 --- a/src/licensedcode/data/licenses/lsi-proprietary-eula.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lsi-proprietary-eula -short_name: LSI Proprietary EULA -name: LSI Proprietary EULA -category: Proprietary Free -owner: LSI Corporation -homepage_url: http://www.lsi.com/Pages/user/eula.aspx -spdx_license_key: LicenseRef-scancode-lsi-proprietary-eula -ignorable_urls: - - http://www.oracle.com/technetwork/java/javase/terms/license/index.html diff --git a/src/licensedcode/data/licenses/lucent-pl-1.0.LICENSE b/src/licensedcode/data/licenses/lucent-pl-1.0.LICENSE index ca0a3fbd04d..aeead720453 100644 --- a/src/licensedcode/data/licenses/lucent-pl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/lucent-pl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: lucent-pl-1.0 +short_name: Lucent Public License 1.0 +name: Lucent Public License 1.0 +category: Copyleft Limited +owner: Alcatel-Lucent +homepage_url: http://www.opensource.org/licenses/plan9.php +spdx_license_key: LPL-1.0 +osi_license_key: LPL-1.0 +text_urls: + - http://www.opensource.org/licenses/plan9.php +osi_url: http://www.opensource.org/licenses/plan9.php +other_urls: + - http://opensource.org/licenses/LPL-1.0 + - https://opensource.org/licenses/LPL-1.0 +--- + Lucent Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC LICENSE diff --git a/src/licensedcode/data/licenses/lucent-pl-1.0.yml b/src/licensedcode/data/licenses/lucent-pl-1.0.yml deleted file mode 100644 index 2b23ca13e3b..00000000000 --- a/src/licensedcode/data/licenses/lucent-pl-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: lucent-pl-1.0 -short_name: Lucent Public License 1.0 -name: Lucent Public License 1.0 -category: Copyleft Limited -owner: Alcatel-Lucent -homepage_url: http://www.opensource.org/licenses/plan9.php -spdx_license_key: LPL-1.0 -osi_license_key: LPL-1.0 -text_urls: - - http://www.opensource.org/licenses/plan9.php -osi_url: http://www.opensource.org/licenses/plan9.php -other_urls: - - http://opensource.org/licenses/LPL-1.0 - - https://opensource.org/licenses/LPL-1.0 diff --git a/src/licensedcode/data/licenses/lucent-pl-1.02.LICENSE b/src/licensedcode/data/licenses/lucent-pl-1.02.LICENSE index 7ac1d540ef8..b53bd1637f8 100644 --- a/src/licensedcode/data/licenses/lucent-pl-1.02.LICENSE +++ b/src/licensedcode/data/licenses/lucent-pl-1.02.LICENSE @@ -1,3 +1,24 @@ +--- +key: lucent-pl-1.02 +short_name: Lucent Public License 1.02 +name: Lucent Public License 1.02 +category: Copyleft Limited +owner: Alcatel-Lucent +homepage_url: http://plan9.bell-labs.com/plan9/license.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: LPL-1.02 +osi_license_key: LPL-1.02 +text_urls: + - http://plan9.bell-labs.com/plan9/license.html +other_urls: + - http://www.opensource.org/licenses/LPL-1.02 + - https://opensource.org/licenses/LPL-1.02 +ignorable_copyrights: + - Copyright (c) YEAR, ORGANIZATION and others +ignorable_holders: + - YEAR, ORGANIZATION and others +--- + Lucent Public License Version 1.02 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/src/licensedcode/data/licenses/lucent-pl-1.02.yml b/src/licensedcode/data/licenses/lucent-pl-1.02.yml deleted file mode 100644 index 7884efcec15..00000000000 --- a/src/licensedcode/data/licenses/lucent-pl-1.02.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: lucent-pl-1.02 -short_name: Lucent Public License 1.02 -name: Lucent Public License 1.02 -category: Copyleft Limited -owner: Alcatel-Lucent -homepage_url: http://plan9.bell-labs.com/plan9/license.html -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: LPL-1.02 -osi_license_key: LPL-1.02 -text_urls: - - http://plan9.bell-labs.com/plan9/license.html -other_urls: - - http://www.opensource.org/licenses/LPL-1.02 - - https://opensource.org/licenses/LPL-1.02 -ignorable_copyrights: - - Copyright (c) YEAR, ORGANIZATION and others -ignorable_holders: - - YEAR, ORGANIZATION and others diff --git a/src/licensedcode/data/licenses/lucre.LICENSE b/src/licensedcode/data/licenses/lucre.LICENSE index 13b4aa0cf1b..b6f2c78aadd 100644 --- a/src/licensedcode/data/licenses/lucre.LICENSE +++ b/src/licensedcode/data/licenses/lucre.LICENSE @@ -1,3 +1,18 @@ +--- +key: lucre +short_name: Lucre License +name: Lucre License +category: Permissive +owner: Ben Laurie +homepage_url: https://github.com/benlaurie/lucre/blob/master/LICENCE +notes: | + This is mostly similar to the OpenSSL license. +spdx_license_key: LicenseRef-scancode-lucre +minimum_coverage: 50 +ignorable_authors: + - Ben Laurie +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/lucre.yml b/src/licensedcode/data/licenses/lucre.yml deleted file mode 100644 index e91d2e4fb67..00000000000 --- a/src/licensedcode/data/licenses/lucre.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: lucre -short_name: Lucre License -name: Lucre License -category: Permissive -owner: Ben Laurie -homepage_url: https://github.com/benlaurie/lucre/blob/master/LICENCE -notes: | - This is mostly similar to the OpenSSL license. -spdx_license_key: LicenseRef-scancode-lucre -minimum_coverage: 50 -ignorable_authors: - - Ben Laurie diff --git a/src/licensedcode/data/licenses/lumisoft-mail-server.LICENSE b/src/licensedcode/data/licenses/lumisoft-mail-server.LICENSE index 5acf4b8a1d3..12c964254df 100644 --- a/src/licensedcode/data/licenses/lumisoft-mail-server.LICENSE +++ b/src/licensedcode/data/licenses/lumisoft-mail-server.LICENSE @@ -1,3 +1,15 @@ +--- +key: lumisoft-mail-server +short_name: LumiSoft Mail Server License +name: LumiSoft Mail Server License +category: Proprietary Free +owner: LumiSoft +homepage_url: http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=info +spdx_license_key: LicenseRef-scancode-lumisoft-mail-server +other_urls: + - http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=download +--- + General usage terms: *) If you use/redistribute compiled binary, there are no restrictions. diff --git a/src/licensedcode/data/licenses/lumisoft-mail-server.yml b/src/licensedcode/data/licenses/lumisoft-mail-server.yml deleted file mode 100644 index 0ea154f5f2f..00000000000 --- a/src/licensedcode/data/licenses/lumisoft-mail-server.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lumisoft-mail-server -short_name: LumiSoft Mail Server License -name: LumiSoft Mail Server License -category: Proprietary Free -owner: LumiSoft -homepage_url: http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=info -spdx_license_key: LicenseRef-scancode-lumisoft-mail-server -other_urls: - - http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=download diff --git a/src/licensedcode/data/licenses/luxi.LICENSE b/src/licensedcode/data/licenses/luxi.LICENSE index c11abc3e0c6..272f9cf1c21 100644 --- a/src/licensedcode/data/licenses/luxi.LICENSE +++ b/src/licensedcode/data/licenses/luxi.LICENSE @@ -1,3 +1,21 @@ +--- +key: luxi +short_name: Bigelow & Holmes Luxi fonts license +name: Bigelow & Holmes Luxi fonts license +category: Proprietary Free +owner: Bigelow & Holmes +spdx_license_key: LicenseRef-scancode-luxi +ignorable_copyrights: + - copyright (c) 2001 by Bigelow & Holmes Inc. + - copyright (c) 2001 by URW++ GmbH. +ignorable_holders: + - Bigelow & Holmes Inc. + - URW++ GmbH. +ignorable_emails: + - design@bigelowandholmes.com + - info@urwpp.de +--- + Luxi fonts copyright (c) 2001 by Bigelow & Holmes Inc. Luxi font instruction code copyright (c) 2001 by URW++ GmbH. All Rights Reserved. Luxi is a regis- tered trademark of Bigelow & Holmes Inc. diff --git a/src/licensedcode/data/licenses/luxi.yml b/src/licensedcode/data/licenses/luxi.yml deleted file mode 100644 index 23d16850c18..00000000000 --- a/src/licensedcode/data/licenses/luxi.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: luxi -short_name: Bigelow & Holmes Luxi fonts license -name: Bigelow & Holmes Luxi fonts license -category: Proprietary Free -owner: Bigelow & Holmes -spdx_license_key: LicenseRef-scancode-luxi -ignorable_copyrights: - - copyright (c) 2001 by Bigelow & Holmes Inc. - - copyright (c) 2001 by URW++ GmbH. -ignorable_holders: - - Bigelow & Holmes Inc. - - URW++ GmbH. -ignorable_emails: - - design@bigelowandholmes.com - - info@urwpp.de diff --git a/src/licensedcode/data/licenses/lyubinskiy-dropdown.LICENSE b/src/licensedcode/data/licenses/lyubinskiy-dropdown.LICENSE index 0d0c08fc13c..789e6d6bbd2 100644 --- a/src/licensedcode/data/licenses/lyubinskiy-dropdown.LICENSE +++ b/src/licensedcode/data/licenses/lyubinskiy-dropdown.LICENSE @@ -1,3 +1,17 @@ +--- +key: lyubinskiy-dropdown +short_name: Lyubinskiy dropdown License +name: Lyubinskiy dropdown License +category: Proprietary Free +owner: Ilya S. Lyubinskiy +homepage_url: http://www.php-development.ru/ +spdx_license_key: LicenseRef-scancode-lyubinskiy-dropdown +other_urls: + - http://www.php-development.ru/javascripts/dropdown.php +ignorable_urls: + - http://www.php-development.ru/javascripts/dropdown.php +--- + YOU MAY NOT (1) Remove or modify this copyright notice. (2) Re-distribute this code or any part of it. diff --git a/src/licensedcode/data/licenses/lyubinskiy-dropdown.yml b/src/licensedcode/data/licenses/lyubinskiy-dropdown.yml deleted file mode 100644 index 72808d89a09..00000000000 --- a/src/licensedcode/data/licenses/lyubinskiy-dropdown.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lyubinskiy-dropdown -short_name: Lyubinskiy dropdown License -name: Lyubinskiy dropdown License -category: Proprietary Free -owner: Ilya S. Lyubinskiy -homepage_url: http://www.php-development.ru/ -spdx_license_key: LicenseRef-scancode-lyubinskiy-dropdown -other_urls: - - http://www.php-development.ru/javascripts/dropdown.php -ignorable_urls: - - http://www.php-development.ru/javascripts/dropdown.php diff --git a/src/licensedcode/data/licenses/lyubinskiy-popup-window.LICENSE b/src/licensedcode/data/licenses/lyubinskiy-popup-window.LICENSE index 345d9941024..c9efd121465 100644 --- a/src/licensedcode/data/licenses/lyubinskiy-popup-window.LICENSE +++ b/src/licensedcode/data/licenses/lyubinskiy-popup-window.LICENSE @@ -1,3 +1,17 @@ +--- +key: lyubinskiy-popup-window +short_name: Lyubinskiy popup-window License +name: Lyubinskiy popup-window License +category: Proprietary Free +owner: Ilya S. Lyubinskiy +homepage_url: http://www.php-development.ru/ +spdx_license_key: LicenseRef-scancode-lyubinskiy-popup-window +other_urls: + - http://www.php-development.ru/javascripts/popup-window.php +ignorable_urls: + - http://www.php-development.ru/javascripts/popup-window.php +--- + YOU MAY NOT (1) Remove or modify this copyright notice. (2) Re-distribute this code or any part of it. diff --git a/src/licensedcode/data/licenses/lyubinskiy-popup-window.yml b/src/licensedcode/data/licenses/lyubinskiy-popup-window.yml deleted file mode 100644 index 85336123aba..00000000000 --- a/src/licensedcode/data/licenses/lyubinskiy-popup-window.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lyubinskiy-popup-window -short_name: Lyubinskiy popup-window License -name: Lyubinskiy popup-window License -category: Proprietary Free -owner: Ilya S. Lyubinskiy -homepage_url: http://www.php-development.ru/ -spdx_license_key: LicenseRef-scancode-lyubinskiy-popup-window -other_urls: - - http://www.php-development.ru/javascripts/popup-window.php -ignorable_urls: - - http://www.php-development.ru/javascripts/popup-window.php diff --git a/src/licensedcode/data/licenses/lzma-cpl-exception.LICENSE b/src/licensedcode/data/licenses/lzma-cpl-exception.LICENSE index 410a9392026..63f93486386 100644 --- a/src/licensedcode/data/licenses/lzma-cpl-exception.LICENSE +++ b/src/licensedcode/data/licenses/lzma-cpl-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: lzma-cpl-exception +short_name: LZMA exception to CPL 1.0 +name: LZMA exception to CPL 1.0 +category: Copyleft Limited +owner: NSIS contributors +homepage_url: http://nsis.sourceforge.net/Docs/AppendixI.html#I.6 +is_exception: yes +spdx_license_key: LZMA-exception +--- + Special exception for LZMA compression module Igor Pavlov and Amir Szekely, the authors of the LZMA compression module for NSIS, diff --git a/src/licensedcode/data/licenses/lzma-cpl-exception.yml b/src/licensedcode/data/licenses/lzma-cpl-exception.yml deleted file mode 100644 index 1ad7b4afc31..00000000000 --- a/src/licensedcode/data/licenses/lzma-cpl-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: lzma-cpl-exception -short_name: LZMA exception to CPL 1.0 -name: LZMA exception to CPL 1.0 -category: Copyleft Limited -owner: NSIS contributors -homepage_url: http://nsis.sourceforge.net/Docs/AppendixI.html#I.6 -is_exception: yes -spdx_license_key: LZMA-exception diff --git a/src/licensedcode/data/licenses/lzma-sdk-2006-exception.LICENSE b/src/licensedcode/data/licenses/lzma-sdk-2006-exception.LICENSE index e2bede48ec8..964234d6071 100644 --- a/src/licensedcode/data/licenses/lzma-sdk-2006-exception.LICENSE +++ b/src/licensedcode/data/licenses/lzma-sdk-2006-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: lzma-sdk-2006-exception +short_name: LZMA SDK 2006 Exception +name: LZMA SDK 2006 CPL and LGPL Exception +category: Copyleft Limited +owner: Igor Pavlov +homepage_url: http://www.7-zip.org/sdk.html +notes: this version of the license existed around 2006 +is_exception: yes +spdx_license_key: LicenseRef-scancode-lzma-sdk-2006-exception +other_urls: + - http://sourceforge.net/projects/sevenzip/ +--- + SPECIAL EXCEPTION: Igor Pavlov, as the author of this code, expressly permits you to statically or dynamically link your code (or bind by name) to the diff --git a/src/licensedcode/data/licenses/lzma-sdk-2006-exception.yml b/src/licensedcode/data/licenses/lzma-sdk-2006-exception.yml deleted file mode 100644 index e242d8735be..00000000000 --- a/src/licensedcode/data/licenses/lzma-sdk-2006-exception.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lzma-sdk-2006-exception -short_name: LZMA SDK 2006 Exception -name: LZMA SDK 2006 CPL and LGPL Exception -category: Copyleft Limited -owner: Igor Pavlov -homepage_url: http://www.7-zip.org/sdk.html -notes: this version of the license existed around 2006 -is_exception: yes -spdx_license_key: LicenseRef-scancode-lzma-sdk-2006-exception -other_urls: - - http://sourceforge.net/projects/sevenzip/ diff --git a/src/licensedcode/data/licenses/lzma-sdk-2006.LICENSE b/src/licensedcode/data/licenses/lzma-sdk-2006.LICENSE index a61ca074137..3137d2d258a 100644 --- a/src/licensedcode/data/licenses/lzma-sdk-2006.LICENSE +++ b/src/licensedcode/data/licenses/lzma-sdk-2006.LICENSE @@ -1,3 +1,18 @@ +--- +key: lzma-sdk-2006 +short_name: LZMA SDK 2006 +name: LZMA SDK 2006 +category: Copyleft Limited +owner: Igor Pavlov +spdx_license_key: LicenseRef-scancode-lzma-sdk-2006 +ignorable_copyrights: + - Copyright (c) 1999-2006 Igor Pavlov (2006-05-01) http://www.7-zip.org +ignorable_holders: + - Igor Pavlov +ignorable_urls: + - http://www.7-zip.org/ +--- + LZMA SDK 4.40 Copyright (c) 1999-2006 Igor Pavlov (2006-05-01) http://www.7-zip.org/ diff --git a/src/licensedcode/data/licenses/lzma-sdk-2006.yml b/src/licensedcode/data/licenses/lzma-sdk-2006.yml deleted file mode 100644 index 11324d1f678..00000000000 --- a/src/licensedcode/data/licenses/lzma-sdk-2006.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: lzma-sdk-2006 -short_name: LZMA SDK 2006 -name: LZMA SDK 2006 -category: Copyleft Limited -owner: Igor Pavlov -spdx_license_key: LicenseRef-scancode-lzma-sdk-2006 -ignorable_copyrights: - - Copyright (c) 1999-2006 Igor Pavlov (2006-05-01) http://www.7-zip.org -ignorable_holders: - - Igor Pavlov -ignorable_urls: - - http://www.7-zip.org/ diff --git a/src/licensedcode/data/licenses/lzma-sdk-2008.LICENSE b/src/licensedcode/data/licenses/lzma-sdk-2008.LICENSE index 93f5ec4f294..93417bb55a5 100644 --- a/src/licensedcode/data/licenses/lzma-sdk-2008.LICENSE +++ b/src/licensedcode/data/licenses/lzma-sdk-2008.LICENSE @@ -1,3 +1,17 @@ +--- +key: lzma-sdk-2008 +short_name: LZMA SDK 2008 +name: LZMA SDK 2008 +category: Copyleft Limited +owner: Igor Pavlov +spdx_license_key: LicenseRef-scancode-lzma-sdk-2008 +ignorable_authors: + - Igor Pavlov +ignorable_urls: + - http://www.gnu.org/ + - http://www.opensource.org/ +--- + LZMA SDK provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression. diff --git a/src/licensedcode/data/licenses/lzma-sdk-2008.yml b/src/licensedcode/data/licenses/lzma-sdk-2008.yml deleted file mode 100644 index 9d7eda11016..00000000000 --- a/src/licensedcode/data/licenses/lzma-sdk-2008.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: lzma-sdk-2008 -short_name: LZMA SDK 2008 -name: LZMA SDK 2008 -category: Copyleft Limited -owner: Igor Pavlov -spdx_license_key: LicenseRef-scancode-lzma-sdk-2008 -ignorable_authors: - - Igor Pavlov -ignorable_urls: - - http://www.gnu.org/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/licenses/lzma-sdk-9.11-to-9.20.LICENSE b/src/licensedcode/data/licenses/lzma-sdk-9.11-to-9.20.LICENSE index 8bff7f5d737..17aa646e2c0 100644 --- a/src/licensedcode/data/licenses/lzma-sdk-9.11-to-9.20.LICENSE +++ b/src/licensedcode/data/licenses/lzma-sdk-9.11-to-9.20.LICENSE @@ -1,3 +1,15 @@ +--- +key: lzma-sdk-9.11-to-9.20 +short_name: LZMA SDK License (versions 9.11 to 9.20) +name: LZMA SDK License (versions 9.11 to 9.20) +category: Public Domain +owner: Igor Pavlov +spdx_license_key: LZMA-SDK-9.11-to-9.20 +other_urls: + - https://www.7-zip.org/sdk.html + - https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/ +--- + LICENSE ------- diff --git a/src/licensedcode/data/licenses/lzma-sdk-9.11-to-9.20.yml b/src/licensedcode/data/licenses/lzma-sdk-9.11-to-9.20.yml deleted file mode 100644 index 336171a762b..00000000000 --- a/src/licensedcode/data/licenses/lzma-sdk-9.11-to-9.20.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lzma-sdk-9.11-to-9.20 -short_name: LZMA SDK License (versions 9.11 to 9.20) -name: LZMA SDK License (versions 9.11 to 9.20) -category: Public Domain -owner: Igor Pavlov -spdx_license_key: LZMA-SDK-9.11-to-9.20 -other_urls: - - https://www.7-zip.org/sdk.html - - https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/ diff --git a/src/licensedcode/data/licenses/lzma-sdk-9.22.LICENSE b/src/licensedcode/data/licenses/lzma-sdk-9.22.LICENSE index 4115d37240c..b19f7e39d88 100644 --- a/src/licensedcode/data/licenses/lzma-sdk-9.22.LICENSE +++ b/src/licensedcode/data/licenses/lzma-sdk-9.22.LICENSE @@ -1,3 +1,15 @@ +--- +key: lzma-sdk-9.22 +short_name: LZMA SDK License (versions 9.22 and beyond) +name: LZMA SDK License (versions 9.22 and beyond) +category: Public Domain +owner: Igor Pavlov +spdx_license_key: LZMA-SDK-9.22 +other_urls: + - https://www.7-zip.org/sdk.html + - https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/ +--- + LICENSE ------- diff --git a/src/licensedcode/data/licenses/lzma-sdk-9.22.yml b/src/licensedcode/data/licenses/lzma-sdk-9.22.yml deleted file mode 100644 index 32c885cc347..00000000000 --- a/src/licensedcode/data/licenses/lzma-sdk-9.22.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: lzma-sdk-9.22 -short_name: LZMA SDK License (versions 9.22 and beyond) -name: LZMA SDK License (versions 9.22 and beyond) -category: Public Domain -owner: Igor Pavlov -spdx_license_key: LZMA-SDK-9.22 -other_urls: - - https://www.7-zip.org/sdk.html - - https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/ diff --git a/src/licensedcode/data/licenses/lzma-sdk-original.LICENSE b/src/licensedcode/data/licenses/lzma-sdk-original.LICENSE index 6922278f3ae..8761bb5aff5 100644 --- a/src/licensedcode/data/licenses/lzma-sdk-original.LICENSE +++ b/src/licensedcode/data/licenses/lzma-sdk-original.LICENSE @@ -1,3 +1,22 @@ +--- +key: lzma-sdk-original +short_name: LZMA SDK Original +name: LZMA SDK Original +category: Copyleft Limited +owner: Igor Pavlov +homepage_url: http://www.7-zip.org/sdk.html +spdx_license_key: LicenseRef-scancode-lzma-sdk-original +other_urls: + - http://sourceforge.net/projects/sevenzip/ + - http://www.7-zip.org/sdk.html +ignorable_authors: + - Igor Pavlov +ignorable_urls: + - http://www.7-zip.org/support.html + - http://www.gnu.org/ + - http://www.opensource.org/ +--- + LZMA SDK provides the documentation, samples, header files, libraries, and tools you need to develop applications that use LZMA compression. diff --git a/src/licensedcode/data/licenses/lzma-sdk-original.yml b/src/licensedcode/data/licenses/lzma-sdk-original.yml deleted file mode 100644 index b746537c9de..00000000000 --- a/src/licensedcode/data/licenses/lzma-sdk-original.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: lzma-sdk-original -short_name: LZMA SDK Original -name: LZMA SDK Original -category: Copyleft Limited -owner: Igor Pavlov -homepage_url: http://www.7-zip.org/sdk.html -spdx_license_key: LicenseRef-scancode-lzma-sdk-original -other_urls: - - http://sourceforge.net/projects/sevenzip/ - - http://www.7-zip.org/sdk.html -ignorable_authors: - - Igor Pavlov -ignorable_urls: - - http://www.7-zip.org/support.html - - http://www.gnu.org/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/licenses/lzma-sdk-pd.LICENSE b/src/licensedcode/data/licenses/lzma-sdk-pd.LICENSE index 08226ab7fbd..d517f46b3fd 100644 --- a/src/licensedcode/data/licenses/lzma-sdk-pd.LICENSE +++ b/src/licensedcode/data/licenses/lzma-sdk-pd.LICENSE @@ -1,3 +1,12 @@ +--- +key: lzma-sdk-pd +short_name: LZMA SDK Public Domain +name: LZMA SDK Public Domain +category: Public Domain +owner: Igor Pavlov +spdx_license_key: LicenseRef-scancode-lzma-sdk-pd +--- + LICENSE ------- diff --git a/src/licensedcode/data/licenses/lzma-sdk-pd.yml b/src/licensedcode/data/licenses/lzma-sdk-pd.yml deleted file mode 100644 index 59fa15600d8..00000000000 --- a/src/licensedcode/data/licenses/lzma-sdk-pd.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: lzma-sdk-pd -short_name: LZMA SDK Public Domain -name: LZMA SDK Public Domain -category: Public Domain -owner: Igor Pavlov -spdx_license_key: LicenseRef-scancode-lzma-sdk-pd diff --git a/src/licensedcode/data/licenses/m-plus.LICENSE b/src/licensedcode/data/licenses/m-plus.LICENSE index 5bd3a917324..50a7fc6bb6a 100644 --- a/src/licensedcode/data/licenses/m-plus.LICENSE +++ b/src/licensedcode/data/licenses/m-plus.LICENSE @@ -1,4 +1,21 @@ +--- +key: m-plus +short_name: M+ Fonts license +name: M+ Fonts license +category: Permissive +owner: Coji Morishita +homepage_url: https://mplusfonts.github.io +spdx_license_key: mplus +other_spdx_license_keys: + - LicenseRef-scancode-m-plus +faq_url: https://en.wikipedia.org/wiki/M%2B_FONTS +other_urls: + - http://mplus-fonts.osdn.jp + - https://github.com/coz-m/MPLUS_FONTS + - https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus +--- + These fonts are free software. Unlimited permission is granted to use, copy, and distribute them, with or without modification, either commercially or noncommercially. -THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. \ No newline at end of file +THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/m-plus.yml b/src/licensedcode/data/licenses/m-plus.yml deleted file mode 100644 index 81270630a3f..00000000000 --- a/src/licensedcode/data/licenses/m-plus.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: m-plus -short_name: M+ Fonts license -name: M+ Fonts license -category: Permissive -owner: Coji Morishita -homepage_url: https://mplusfonts.github.io -spdx_license_key: mplus -other_spdx_license_keys: - - LicenseRef-scancode-m-plus -faq_url: https://en.wikipedia.org/wiki/M%2B_FONTS -other_urls: - - http://mplus-fonts.osdn.jp - - https://github.com/coz-m/MPLUS_FONTS - - https://fedoraproject.org/wiki/Licensing:Mplus?rd=Licensing/mplus diff --git a/src/licensedcode/data/licenses/madwifi-dual.LICENSE b/src/licensedcode/data/licenses/madwifi-dual.LICENSE index c02aee49815..80bbb46c457 100644 --- a/src/licensedcode/data/licenses/madwifi-dual.LICENSE +++ b/src/licensedcode/data/licenses/madwifi-dual.LICENSE @@ -1,3 +1,14 @@ +--- +key: madwifi-dual +is_deprecated: yes +short_name: MadWifi Dual BSD-GPL +name: MadWifi Dual BSD-GPL +category: Permissive +owner: MadWifi +homepage_url: https://github.com/puzzlet/madwifi/blob/master/include/compat.h +notes: composite replaced by expression of intel-bsd OR gpl-2.0 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/madwifi-dual.yml b/src/licensedcode/data/licenses/madwifi-dual.yml deleted file mode 100644 index dc2a17ae4b6..00000000000 --- a/src/licensedcode/data/licenses/madwifi-dual.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: madwifi-dual -is_deprecated: yes -short_name: MadWifi Dual BSD-GPL -name: MadWifi Dual BSD-GPL -category: Permissive -owner: MadWifi -homepage_url: https://github.com/puzzlet/madwifi/blob/master/include/compat.h -notes: composite replaced by expression of intel-bsd OR gpl-2.0 diff --git a/src/licensedcode/data/licenses/magpie-exception-1.0.LICENSE b/src/licensedcode/data/licenses/magpie-exception-1.0.LICENSE index f81b3ab305b..efeaeeb5e16 100644 --- a/src/licensedcode/data/licenses/magpie-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/magpie-exception-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: magpie-exception-1.0 +short_name: MAgPIE Exception to AGPL 3.0 +name: MAgPIE License Exception to AGPL 3.0 +category: Copyleft +owner: MAgPIE +homepage_url: https://github.com/magpiemodel/magpie/blob/master/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-magpie-exception-1.0 +--- + MAgPIE LICENSE EXCEPTION Version 1.0 diff --git a/src/licensedcode/data/licenses/magpie-exception-1.0.yml b/src/licensedcode/data/licenses/magpie-exception-1.0.yml deleted file mode 100644 index 11a1b5ed935..00000000000 --- a/src/licensedcode/data/licenses/magpie-exception-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: magpie-exception-1.0 -short_name: MAgPIE Exception to AGPL 3.0 -name: MAgPIE License Exception to AGPL 3.0 -category: Copyleft -owner: MAgPIE -homepage_url: https://github.com/magpiemodel/magpie/blob/master/LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-magpie-exception-1.0 diff --git a/src/licensedcode/data/licenses/make-human-exception.LICENSE b/src/licensedcode/data/licenses/make-human-exception.LICENSE index c9c36e47ef6..388c77a2bbc 100644 --- a/src/licensedcode/data/licenses/make-human-exception.LICENSE +++ b/src/licensedcode/data/licenses/make-human-exception.LICENSE @@ -1,3 +1,18 @@ +--- +key: make-human-exception +short_name: MakeHuman License +name: MakeHuman License +category: Permissive +owner: MakeHuman Project +homepage_url: http://www.makehuman.org/index.php +is_exception: yes +spdx_license_key: LicenseRef-scancode-make-human-exception +text_urls: + - http://www.makehuman.org/license.php +ignorable_urls: + - http://www.makehuman.org/content/license_explanation.html +--- + MakeHuman output GPL exception diff --git a/src/licensedcode/data/licenses/make-human-exception.yml b/src/licensedcode/data/licenses/make-human-exception.yml deleted file mode 100644 index ba05f6034c5..00000000000 --- a/src/licensedcode/data/licenses/make-human-exception.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: make-human-exception -short_name: MakeHuman License -name: MakeHuman License -category: Permissive -owner: MakeHuman Project -homepage_url: http://www.makehuman.org/index.php -is_exception: yes -spdx_license_key: LicenseRef-scancode-make-human-exception -text_urls: - - http://www.makehuman.org/license.php -ignorable_urls: - - http://www.makehuman.org/content/license_explanation.html diff --git a/src/licensedcode/data/licenses/makeindex.LICENSE b/src/licensedcode/data/licenses/makeindex.LICENSE index adab20c8b44..a1fcd3537f6 100644 --- a/src/licensedcode/data/licenses/makeindex.LICENSE +++ b/src/licensedcode/data/licenses/makeindex.LICENSE @@ -1,3 +1,16 @@ +--- +key: makeindex +short_name: MakeIndex Distribution Notice +name: MakeIndex Distribution Notice +category: Copyleft +owner: MakeIndex Project +homepage_url: https://fedoraproject.org/wiki/Licensing/MakeIndex +notes: | + Per Fedora, this license is free but GPL-incompatible, and was found in the + MakeIndex component inside TeXLive. +spdx_license_key: MakeIndex +--- + MakeIndex Distribution Notice Permission is hereby granted to make and distribute original copies of this diff --git a/src/licensedcode/data/licenses/makeindex.yml b/src/licensedcode/data/licenses/makeindex.yml deleted file mode 100644 index 5ae8f8e46c9..00000000000 --- a/src/licensedcode/data/licenses/makeindex.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: makeindex -short_name: MakeIndex Distribution Notice -name: MakeIndex Distribution Notice -category: Copyleft -owner: MakeIndex Project -homepage_url: https://fedoraproject.org/wiki/Licensing/MakeIndex -notes: | - Per Fedora, this license is free but GPL-incompatible, and was found in the - MakeIndex component inside TeXLive. -spdx_license_key: MakeIndex diff --git a/src/licensedcode/data/licenses/mame.LICENSE b/src/licensedcode/data/licenses/mame.LICENSE index d31857212a8..b9af05f7a2f 100644 --- a/src/licensedcode/data/licenses/mame.LICENSE +++ b/src/licensedcode/data/licenses/mame.LICENSE @@ -1,3 +1,13 @@ +--- +key: mame +short_name: MAME license +name: MAME license +category: Free Restricted +owner: Nicola Salmoria +homepage_url: https://web-beta.archive.org/web/20100311021704/http://mamedev.org/legal.html +spdx_license_key: LicenseRef-scancode-mame +--- + Redistribution and use of the MAME code or any derivative works are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/mame.yml b/src/licensedcode/data/licenses/mame.yml deleted file mode 100644 index 79f2eb3227f..00000000000 --- a/src/licensedcode/data/licenses/mame.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: mame -short_name: MAME license -name: MAME license -category: Free Restricted -owner: Nicola Salmoria -homepage_url: https://web-beta.archive.org/web/20100311021704/http://mamedev.org/legal.html -spdx_license_key: LicenseRef-scancode-mame diff --git a/src/licensedcode/data/licenses/manfred-klein-fonts-tos.LICENSE b/src/licensedcode/data/licenses/manfred-klein-fonts-tos.LICENSE index 5aa6d06d45d..10226d2c43f 100644 --- a/src/licensedcode/data/licenses/manfred-klein-fonts-tos.LICENSE +++ b/src/licensedcode/data/licenses/manfred-klein-fonts-tos.LICENSE @@ -1,3 +1,14 @@ +--- +key: manfred-klein-fonts-tos +short_name: Manfred Klein Fonts TOS +name: Manfred Klein Fonts TOS +category: Free Restricted +owner: Manfred Klein +spdx_license_key: LicenseRef-scancode-manfred-klein-fonts-tos +ignorable_authors: + - Manfred Klein +--- + Simple Terms of Use Manfred’s fonts are free for private and charity use. They are even free for commercial use – but if there’s any profit, pls make a donation to organizations like Doctors Without Borders. diff --git a/src/licensedcode/data/licenses/manfred-klein-fonts-tos.yml b/src/licensedcode/data/licenses/manfred-klein-fonts-tos.yml deleted file mode 100644 index bb6e6eb14b8..00000000000 --- a/src/licensedcode/data/licenses/manfred-klein-fonts-tos.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: manfred-klein-fonts-tos -short_name: Manfred Klein Fonts TOS -name: Manfred Klein Fonts TOS -category: Free Restricted -owner: Manfred Klein -spdx_license_key: LicenseRef-scancode-manfred-klein-fonts-tos -ignorable_authors: - - Manfred Klein diff --git a/src/licensedcode/data/licenses/mapbox-tos-2021.LICENSE b/src/licensedcode/data/licenses/mapbox-tos-2021.LICENSE index 9127920c92d..badef1bc10e 100644 --- a/src/licensedcode/data/licenses/mapbox-tos-2021.LICENSE +++ b/src/licensedcode/data/licenses/mapbox-tos-2021.LICENSE @@ -1,3 +1,18 @@ +--- +key: mapbox-tos-2021 +short_name: Mapbox TOS 2021 +name: Mapbox Terms of Service 2021 +category: Commercial +owner: Mapbox +homepage_url: https://www.mapbox.com/legal/tos/ +spdx_license_key: LicenseRef-scancode-mapbox-tos-2021 +ignorable_urls: + - http://www.mapbox.com/ + - http://www.mapbox.com/pricing +ignorable_emails: + - copyright@mapbox.com +--- + Terms of service Welcome to the future of mapping! We're glad you're here. diff --git a/src/licensedcode/data/licenses/mapbox-tos-2021.yml b/src/licensedcode/data/licenses/mapbox-tos-2021.yml deleted file mode 100644 index 64195e7f5ff..00000000000 --- a/src/licensedcode/data/licenses/mapbox-tos-2021.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: mapbox-tos-2021 -short_name: Mapbox TOS 2021 -name: Mapbox Terms of Service 2021 -category: Commercial -owner: Mapbox -homepage_url: https://www.mapbox.com/legal/tos/ -spdx_license_key: LicenseRef-scancode-mapbox-tos-2021 -ignorable_urls: - - http://www.mapbox.com/ - - http://www.mapbox.com/pricing -ignorable_emails: - - copyright@mapbox.com diff --git a/src/licensedcode/data/licenses/markus-kuhn-license.LICENSE b/src/licensedcode/data/licenses/markus-kuhn-license.LICENSE index 56109abbbf8..a99dc56eb2e 100644 --- a/src/licensedcode/data/licenses/markus-kuhn-license.LICENSE +++ b/src/licensedcode/data/licenses/markus-kuhn-license.LICENSE @@ -1,3 +1,17 @@ +--- +key: markus-kuhn-license +short_name: Markus Kuhn License +name: Markus Kuhn License +category: Permissive +owner: Markus Kuhn +homepage_url: https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c +spdx_license_key: LicenseRef-scancode-markus-kuhn-license +text_urls: + - https://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c +other_urls: + - https://github.com/search?q=%22Permission+to+use%2C+copy%2C+modify%2C+and+distribute+this+software+for+any+purpose+and+without+fee+is+hereby+granted.%22+%22The+author+disclaims+all+warranties+with+regard+to+this+software.%22&type=code +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted. The author disclaims all warranties with regard to this software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/markus-kuhn-license.yml b/src/licensedcode/data/licenses/markus-kuhn-license.yml deleted file mode 100644 index c9d2a4f6bca..00000000000 --- a/src/licensedcode/data/licenses/markus-kuhn-license.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: markus-kuhn-license -short_name: Markus Kuhn License -name: Markus Kuhn License -category: Permissive -owner: Markus Kuhn -homepage_url: https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c -spdx_license_key: LicenseRef-scancode-markus-kuhn-license -text_urls: - - https://www.cl.cam.ac.uk/~mgk25/ucs/langinfo.c -other_urls: - - https://github.com/search?q=%22Permission+to+use%2C+copy%2C+modify%2C+and+distribute+this+software+for+any+purpose+and+without+fee+is+hereby+granted.%22+%22The+author+disclaims+all+warranties+with+regard+to+this+software.%22&type=code diff --git a/src/licensedcode/data/licenses/martin-birgmeier.LICENSE b/src/licensedcode/data/licenses/martin-birgmeier.LICENSE index 8976f619264..cae69bd34b8 100644 --- a/src/licensedcode/data/licenses/martin-birgmeier.LICENSE +++ b/src/licensedcode/data/licenses/martin-birgmeier.LICENSE @@ -1,3 +1,15 @@ +--- +key: martin-birgmeier +short_name: Martin Bergmeier License +name: Martin Bergmeier License +category: Permissive +owner: Martin Bergmeier +homepage_url: https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h +spdx_license_key: LicenseRef-scancode-martin-birgmeier +text_urls: + - https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h +--- + You may redistribute unmodified or modified versions of this source code provided that the above copyright notice and this and the following conditions are retained. diff --git a/src/licensedcode/data/licenses/martin-birgmeier.yml b/src/licensedcode/data/licenses/martin-birgmeier.yml deleted file mode 100644 index 8e92599c3e3..00000000000 --- a/src/licensedcode/data/licenses/martin-birgmeier.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: martin-birgmeier -short_name: Martin Bergmeier License -name: Martin Bergmeier License -category: Permissive -owner: Martin Bergmeier -homepage_url: https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h -spdx_license_key: LicenseRef-scancode-martin-birgmeier -text_urls: - - https://chromium.googlesource.com/native_client/nacl-newlib/+/590b76526a1ff92504bf20234610043fd45ae034/newlib/libc/stdlib/rand48.h diff --git a/src/licensedcode/data/licenses/marvell-firmware-2019.LICENSE b/src/licensedcode/data/licenses/marvell-firmware-2019.LICENSE index 44c1077ad9f..44e1a4069cf 100644 --- a/src/licensedcode/data/licenses/marvell-firmware-2019.LICENSE +++ b/src/licensedcode/data/licenses/marvell-firmware-2019.LICENSE @@ -1,3 +1,13 @@ +--- +key: marvell-firmware-2019 +short_name: Marvell Firmware License 2019 +name: Marvell Firmware License 2019 +category: Proprietary Free +owner: Marvell +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Marvell +spdx_license_key: LicenseRef-scancode-marvell-firmware-2019 +--- + Redistribution and use in binary form is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/marvell-firmware-2019.yml b/src/licensedcode/data/licenses/marvell-firmware-2019.yml deleted file mode 100644 index 0d945377a1a..00000000000 --- a/src/licensedcode/data/licenses/marvell-firmware-2019.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: marvell-firmware-2019 -short_name: Marvell Firmware License 2019 -name: Marvell Firmware License 2019 -category: Proprietary Free -owner: Marvell -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Marvell -spdx_license_key: LicenseRef-scancode-marvell-firmware-2019 diff --git a/src/licensedcode/data/licenses/marvell-firmware.LICENSE b/src/licensedcode/data/licenses/marvell-firmware.LICENSE index c5b0ef2e003..c5c4e5b53f0 100644 --- a/src/licensedcode/data/licenses/marvell-firmware.LICENSE +++ b/src/licensedcode/data/licenses/marvell-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: marvell-firmware +short_name: Marvell Firmware License +name: Marvell Firmware License +category: Proprietary Free +owner: Marvell +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.OLPC +spdx_license_key: LicenseRef-scancode-marvell-firmware +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/marvell-firmware.yml b/src/licensedcode/data/licenses/marvell-firmware.yml deleted file mode 100644 index 5dbd72a421b..00000000000 --- a/src/licensedcode/data/licenses/marvell-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: marvell-firmware -short_name: Marvell Firmware License -name: Marvell Firmware License -category: Proprietary Free -owner: Marvell -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.OLPC -spdx_license_key: LicenseRef-scancode-marvell-firmware diff --git a/src/licensedcode/data/licenses/matt-gallagher-attribution.LICENSE b/src/licensedcode/data/licenses/matt-gallagher-attribution.LICENSE index f89c0cdeae1..d8c4b7580b7 100644 --- a/src/licensedcode/data/licenses/matt-gallagher-attribution.LICENSE +++ b/src/licensedcode/data/licenses/matt-gallagher-attribution.LICENSE @@ -1,3 +1,15 @@ +--- +key: matt-gallagher-attribution +short_name: Matt Gallagher Attribution License +name: Matt Gallagher Attribution License +category: Permissive +owner: Matt Gallagher +spdx_license_key: LicenseRef-scancode-matt-gallagher-attribution +text_urls: + - https://gist.github.com/wiliams-xu/508933756ca83c49a865 + - https://github.com/DJBen/Werewolves-of-Millers-Hollows-For-Host/blob/master/Werewolf/ReorderingTableView/ATSDragToReorderTableViewController.h +--- + Permission is given to use this source code file, free of charge, in any project, commercial or otherwise, entirely at your risk, with the condition that any redistribution (in part or whole) of source code must retain diff --git a/src/licensedcode/data/licenses/matt-gallagher-attribution.yml b/src/licensedcode/data/licenses/matt-gallagher-attribution.yml deleted file mode 100644 index 6f3a3e6442a..00000000000 --- a/src/licensedcode/data/licenses/matt-gallagher-attribution.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: matt-gallagher-attribution -short_name: Matt Gallagher Attribution License -name: Matt Gallagher Attribution License -category: Permissive -owner: Matt Gallagher -spdx_license_key: LicenseRef-scancode-matt-gallagher-attribution -text_urls: - - https://gist.github.com/wiliams-xu/508933756ca83c49a865 - - https://github.com/DJBen/Werewolves-of-Millers-Hollows-For-Host/blob/master/Werewolf/ReorderingTableView/ATSDragToReorderTableViewController.h diff --git a/src/licensedcode/data/licenses/matthew-kwan.LICENSE b/src/licensedcode/data/licenses/matthew-kwan.LICENSE index a7213204903..92c87aa62c6 100644 --- a/src/licensedcode/data/licenses/matthew-kwan.LICENSE +++ b/src/licensedcode/data/licenses/matthew-kwan.LICENSE @@ -1,2 +1,15 @@ +--- +key: matthew-kwan +short_name: Matthew Kwan License +name: Matthew Kwan License +category: Permissive +owner: Matthew Kwan +homepage_url: http://www.darkside.com.au/bitslice/ +spdx_license_key: LicenseRef-scancode-matthew-kwan +text_urls: + - http://www.darkside.com.au/bitslice/sboxes.c + - http://www.darkside.com.au/bitslice/nonstd.c +--- + This software may be modified, redistributed, and used for any purpose, -so long as its origin is acknowledged. +so long as its origin is acknowledged. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/matthew-kwan.yml b/src/licensedcode/data/licenses/matthew-kwan.yml deleted file mode 100644 index 64ce2a7bf68..00000000000 --- a/src/licensedcode/data/licenses/matthew-kwan.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: matthew-kwan -short_name: Matthew Kwan License -name: Matthew Kwan License -category: Permissive -owner: Matthew Kwan -homepage_url: http://www.darkside.com.au/bitslice/ -spdx_license_key: LicenseRef-scancode-matthew-kwan -text_urls: - - http://www.darkside.com.au/bitslice/sboxes.c - - http://www.darkside.com.au/bitslice/nonstd.c diff --git a/src/licensedcode/data/licenses/matthew-welch-font-license.LICENSE b/src/licensedcode/data/licenses/matthew-welch-font-license.LICENSE index 026a82e4f80..f77a49da83b 100644 --- a/src/licensedcode/data/licenses/matthew-welch-font-license.LICENSE +++ b/src/licensedcode/data/licenses/matthew-welch-font-license.LICENSE @@ -1,3 +1,13 @@ +--- +key: matthew-welch-font-license +short_name: Matthew Welch Font License +name: Matthew Welch Font License +category: Free Restricted +owner: Matthew Welch +homepage_url: https://web.archive.org/web/20010201215800/http://home.att.net/~daffy-duck/fonts/fonts.htm +spdx_license_key: LicenseRef-scancode-matthew-welch-font-license +--- + All my fonts are free. You can use them for most personal or business uses you'd like, and I ask for no money. I would, however, like to hear from you. If you use my fonts for something please send me a postcard or e-mail letting me know how you used them. Send me a copy if you can or let me know where I can find your work. You may use these fonts for graphical or printed work, but you may not sell them or include them in a collection of fonts (on CD or otherwise) being sold. You can redistribute these fonts as long as you charge nothing to receive them. diff --git a/src/licensedcode/data/licenses/matthew-welch-font-license.yml b/src/licensedcode/data/licenses/matthew-welch-font-license.yml deleted file mode 100644 index d998e676ce1..00000000000 --- a/src/licensedcode/data/licenses/matthew-welch-font-license.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: matthew-welch-font-license -short_name: Matthew Welch Font License -name: Matthew Welch Font License -category: Free Restricted -owner: Matthew Welch -homepage_url: https://web.archive.org/web/20010201215800/http://home.att.net/~daffy-duck/fonts/fonts.htm -spdx_license_key: LicenseRef-scancode-matthew-welch-font-license diff --git a/src/licensedcode/data/licenses/mattkruse.LICENSE b/src/licensedcode/data/licenses/mattkruse.LICENSE index 630d8610bdd..a92f293ac36 100644 --- a/src/licensedcode/data/licenses/mattkruse.LICENSE +++ b/src/licensedcode/data/licenses/mattkruse.LICENSE @@ -1,3 +1,15 @@ +--- +key: mattkruse +short_name: Matt Kruse License +name: Matt Kruse License +category: Permissive +owner: MattKruse.com +homepage_url: http://www.mattkruse.com/ +spdx_license_key: LicenseRef-scancode-mattkruse +text_urls: + - http://www.mattkruse.com/ +--- + NOTICE: You may use this code for any purpose, commercial or private, without any further permission from the author. You may remove this notice from your final code if you wish, however it is appreciated by the author if at least my web site address is kept. You may *NOT* re-distribute this code in any way except through its use. That means, you can include it in your product, or your web site, or any other form where the code is actually being used. You may not put the plain javascript up on your site for download or include it in your javascript libraries for download. diff --git a/src/licensedcode/data/licenses/mattkruse.yml b/src/licensedcode/data/licenses/mattkruse.yml deleted file mode 100644 index 6015282656b..00000000000 --- a/src/licensedcode/data/licenses/mattkruse.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: mattkruse -short_name: Matt Kruse License -name: Matt Kruse License -category: Permissive -owner: MattKruse.com -homepage_url: http://www.mattkruse.com/ -spdx_license_key: LicenseRef-scancode-mattkruse -text_urls: - - http://www.mattkruse.com/ diff --git a/src/licensedcode/data/licenses/maxmind-geolite2-eula-2019.LICENSE b/src/licensedcode/data/licenses/maxmind-geolite2-eula-2019.LICENSE index 8c740058890..459d7035a9f 100644 --- a/src/licensedcode/data/licenses/maxmind-geolite2-eula-2019.LICENSE +++ b/src/licensedcode/data/licenses/maxmind-geolite2-eula-2019.LICENSE @@ -1,3 +1,23 @@ +--- +key: maxmind-geolite2-eula-2019 +short_name: MaxMind GeoLite2 EULA 2019 +name: MaxMind GeoLite2 End User License Agreement 2019 +category: Copyleft +owner: MaxMind +homepage_url: https://www.maxmind.com/en/geolite2/eula +spdx_license_key: LicenseRef-scancode-maxmind-geolite2-eula-2019 +ignorable_authors: + - the USA Department of Commerce + - the USA Department of State. Specifically + - the USA Treasury Department's Office of Foreign Assets Control, and the International + Traffic in Arms Regulations +ignorable_urls: + - http://www.maxmind.com/ + - https://www.maxmind.com/ +ignorable_emails: + - legal@maxmind.com +--- + GeoLite2 End User License Agreement Revised on December 20, 2019 diff --git a/src/licensedcode/data/licenses/maxmind-geolite2-eula-2019.yml b/src/licensedcode/data/licenses/maxmind-geolite2-eula-2019.yml deleted file mode 100644 index eb387ef549d..00000000000 --- a/src/licensedcode/data/licenses/maxmind-geolite2-eula-2019.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: maxmind-geolite2-eula-2019 -short_name: MaxMind GeoLite2 EULA 2019 -name: MaxMind GeoLite2 End User License Agreement 2019 -category: Copyleft -owner: MaxMind -homepage_url: https://www.maxmind.com/en/geolite2/eula -spdx_license_key: LicenseRef-scancode-maxmind-geolite2-eula-2019 -ignorable_authors: - - the USA Department of Commerce - - the USA Department of State. Specifically - - the USA Treasury Department's Office of Foreign Assets Control, and the International - Traffic in Arms Regulations -ignorable_urls: - - http://www.maxmind.com/ - - https://www.maxmind.com/ -ignorable_emails: - - legal@maxmind.com diff --git a/src/licensedcode/data/licenses/maxmind-odl.LICENSE b/src/licensedcode/data/licenses/maxmind-odl.LICENSE index 0820c7f596e..7e4ad81cef5 100644 --- a/src/licensedcode/data/licenses/maxmind-odl.LICENSE +++ b/src/licensedcode/data/licenses/maxmind-odl.LICENSE @@ -1,3 +1,17 @@ +--- +key: maxmind-odl +short_name: MaxMind Open Data License +name: MaxMind Open Data License +category: Free Restricted +owner: MaxMind +homepage_url: https://geolite.maxmind.com/download/geoip/database/LICENSE.txt +notes: This license is mostly the same as a bsd-original (or rather a bsd-simplified with an + advertizing clause) +spdx_license_key: LicenseRef-scancode-maxmind-odl +ignorable_urls: + - http://maxmind.com/ +--- + OPEN DATA LICENSE All advertising materials and documentation mentioning features or use of diff --git a/src/licensedcode/data/licenses/maxmind-odl.yml b/src/licensedcode/data/licenses/maxmind-odl.yml deleted file mode 100644 index bcefae79a6c..00000000000 --- a/src/licensedcode/data/licenses/maxmind-odl.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: maxmind-odl -short_name: MaxMind Open Data License -name: MaxMind Open Data License -category: Free Restricted -owner: MaxMind -homepage_url: https://geolite.maxmind.com/download/geoip/database/LICENSE.txt -notes: This license is mostly the same as a bsd-original (or rather a bsd-simplified with an - advertizing clause) -spdx_license_key: LicenseRef-scancode-maxmind-odl -ignorable_urls: - - http://maxmind.com/ diff --git a/src/licensedcode/data/licenses/mcafee-tou.LICENSE b/src/licensedcode/data/licenses/mcafee-tou.LICENSE index cdcb1ebc170..ea84a9c52ea 100644 --- a/src/licensedcode/data/licenses/mcafee-tou.LICENSE +++ b/src/licensedcode/data/licenses/mcafee-tou.LICENSE @@ -1,3 +1,13 @@ +--- +key: mcafee-tou +short_name: McAfee Free License +name: McAfee Software royalty-Free License +category: Proprietary Free +owner: Intel Corporation +homepage_url: http://www.mcafee.com/us/downloads/free-tools/termsofuse.aspx +spdx_license_key: LicenseRef-scancode-mcafee-tou +--- + McAfee Software royalty-Free License Definitions. diff --git a/src/licensedcode/data/licenses/mcafee-tou.yml b/src/licensedcode/data/licenses/mcafee-tou.yml deleted file mode 100644 index ca55a5f0e37..00000000000 --- a/src/licensedcode/data/licenses/mcafee-tou.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: mcafee-tou -short_name: McAfee Free License -name: McAfee Software royalty-Free License -category: Proprietary Free -owner: Intel Corporation -homepage_url: http://www.mcafee.com/us/downloads/free-tools/termsofuse.aspx -spdx_license_key: LicenseRef-scancode-mcafee-tou diff --git a/src/licensedcode/data/licenses/mcrae-pl-4-r53.LICENSE b/src/licensedcode/data/licenses/mcrae-pl-4-r53.LICENSE index a9389ff832d..6c69caec2a8 100644 --- a/src/licensedcode/data/licenses/mcrae-pl-4-r53.LICENSE +++ b/src/licensedcode/data/licenses/mcrae-pl-4-r53.LICENSE @@ -1,3 +1,17 @@ +--- +key: mcrae-pl-4-r53 +short_name: McRae PL v4.r53 +name: McRae General Public License (version 4.r53) +category: Proprietary Free +owner: pgl.yoyo.org +homepage_url: https://pgl.yoyo.org/license/ +spdx_license_key: LicenseRef-scancode-mcrae-pl-4-r53 +faq_url: https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing#Bad_Licenses +other_urls: + - https://github.com/Pintu900/iit_project/blob/625c5cc85012428cc69f6094bbef8fe2abab92b6/.config/chromium/Default/Extensions/cjpalhdlnbpafiamejdnhcphjbkeiagm/1.24.2_0/assets/thirdparties/pgl.yoyo.org/as/README.md + - https://github.com/naveednajam/Little-Snitch---Rule-GroupsV2/blob/39d3b9981eaa71eb2b0e96b7c1433854f3e7fb1b/sources/ads/yoyo.org/update.json +--- + Preamble -------- Your GRAN. diff --git a/src/licensedcode/data/licenses/mcrae-pl-4-r53.yml b/src/licensedcode/data/licenses/mcrae-pl-4-r53.yml deleted file mode 100644 index 0f6d7e0999e..00000000000 --- a/src/licensedcode/data/licenses/mcrae-pl-4-r53.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mcrae-pl-4-r53 -short_name: McRae PL v4.r53 -name: McRae General Public License (version 4.r53) -category: Proprietary Free -owner: pgl.yoyo.org -homepage_url: https://pgl.yoyo.org/license/ -spdx_license_key: LicenseRef-scancode-mcrae-pl-4-r53 -faq_url: https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing#Bad_Licenses -other_urls: - - https://github.com/Pintu900/iit_project/blob/625c5cc85012428cc69f6094bbef8fe2abab92b6/.config/chromium/Default/Extensions/cjpalhdlnbpafiamejdnhcphjbkeiagm/1.24.2_0/assets/thirdparties/pgl.yoyo.org/as/README.md - - https://github.com/naveednajam/Little-Snitch---Rule-GroupsV2/blob/39d3b9981eaa71eb2b0e96b7c1433854f3e7fb1b/sources/ads/yoyo.org/update.json diff --git a/src/licensedcode/data/licenses/mediainfo-lib.LICENSE b/src/licensedcode/data/licenses/mediainfo-lib.LICENSE index 2e1b473f696..3caab0a7a52 100644 --- a/src/licensedcode/data/licenses/mediainfo-lib.LICENSE +++ b/src/licensedcode/data/licenses/mediainfo-lib.LICENSE @@ -1,3 +1,20 @@ +--- +key: mediainfo-lib +short_name: MediaInfo(Lib) License +name: MediaInfo(Lib) License +category: Permissive +owner: MediaArea.net SARL +homepage_url: http://mediainfo.sourceforge.net/en +notes: this is a combo of BSD-like terms and LGPL 3 terms +spdx_license_key: LicenseRef-scancode-mediainfo-lib +text_urls: + - http://mediainfo.sourceforge.net/en +ignorable_copyrights: + - Copyright 2002-2010 MediaArea.net SARL. +ignorable_holders: + - MediaArea.net SARL. +--- + MediaInfo(Lib) License Version 1.1, 3 January 2010 diff --git a/src/licensedcode/data/licenses/mediainfo-lib.yml b/src/licensedcode/data/licenses/mediainfo-lib.yml deleted file mode 100644 index 908dd13a1fc..00000000000 --- a/src/licensedcode/data/licenses/mediainfo-lib.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: mediainfo-lib -short_name: MediaInfo(Lib) License -name: MediaInfo(Lib) License -category: Permissive -owner: MediaArea.net SARL -homepage_url: http://mediainfo.sourceforge.net/en -notes: this is a combo of BSD-like terms and LGPL 3 terms -spdx_license_key: LicenseRef-scancode-mediainfo-lib -text_urls: - - http://mediainfo.sourceforge.net/en -ignorable_copyrights: - - Copyright 2002-2010 MediaArea.net SARL. -ignorable_holders: - - MediaArea.net SARL. diff --git a/src/licensedcode/data/licenses/melange.LICENSE b/src/licensedcode/data/licenses/melange.LICENSE index c1c3bb8eb16..0a33272671b 100644 --- a/src/licensedcode/data/licenses/melange.LICENSE +++ b/src/licensedcode/data/licenses/melange.LICENSE @@ -1,3 +1,20 @@ +--- +key: melange +short_name: Melange Public License +name: Melange Chat Server/Client Public License +category: Proprietary Free +owner: Unspecified +spdx_license_key: LicenseRef-scancode-melange +ignorable_copyrights: + - Copyright (c) 1998,1999 by Christian Walter, chris@terminal.at http://www.terminal.at/melange +ignorable_holders: + - Christian Walter +ignorable_urls: + - http://www.terminal.at/melange +ignorable_emails: + - chris@terminal.at +--- + MELANGE CHAT SERVER/CLIENT PUBLIC LICENSE Version 1.1, 21 October 1998 diff --git a/src/licensedcode/data/licenses/melange.yml b/src/licensedcode/data/licenses/melange.yml deleted file mode 100644 index b9d486ff917..00000000000 --- a/src/licensedcode/data/licenses/melange.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: melange -short_name: Melange Public License -name: Melange Chat Server/Client Public License -category: Proprietary Free -owner: Unspecified -spdx_license_key: LicenseRef-scancode-melange -ignorable_copyrights: - - Copyright (c) 1998,1999 by Christian Walter, chris@terminal.at http://www.terminal.at/melange -ignorable_holders: - - Christian Walter -ignorable_urls: - - http://www.terminal.at/melange -ignorable_emails: - - chris@terminal.at diff --git a/src/licensedcode/data/licenses/mentalis.LICENSE b/src/licensedcode/data/licenses/mentalis.LICENSE index 8a41c35c918..2cedf5cb805 100644 --- a/src/licensedcode/data/licenses/mentalis.LICENSE +++ b/src/licensedcode/data/licenses/mentalis.LICENSE @@ -1,3 +1,16 @@ +--- +key: mentalis +short_name: Mentalis License +name: Mentalis Source Code License +category: Permissive +owner: Mentalis +homepage_url: http://mentalis.org/site/license.qpx +notes: this is a bsd-new with clause 1 and 3. Replaced by the bsd-source-code license. +text_urls: + - http://mentalis.org/site/license.qpx +is_deprecated: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/mentalis.yml b/src/licensedcode/data/licenses/mentalis.yml deleted file mode 100644 index d48152b1a1a..00000000000 --- a/src/licensedcode/data/licenses/mentalis.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: mentalis -short_name: Mentalis License -name: Mentalis Source Code License -category: Permissive -owner: Mentalis -homepage_url: http://mentalis.org/site/license.qpx -notes: this is a bsd-new with clause 1 and 3. Replaced by the bsd-source-code license. -text_urls: - - http://mentalis.org/site/license.qpx -is_deprecated: yes diff --git a/src/licensedcode/data/licenses/merit-network-derivative.LICENSE b/src/licensedcode/data/licenses/merit-network-derivative.LICENSE index 10cc0eb9e20..235d9aaf3d6 100644 --- a/src/licensedcode/data/licenses/merit-network-derivative.LICENSE +++ b/src/licensedcode/data/licenses/merit-network-derivative.LICENSE @@ -1,3 +1,74 @@ +--- +key: merit-network-derivative +short_name: Merit Network Derivative Works License +name: Merit Network Derivative Works License +category: Copyleft +owner: Merit Network +homepage_url: http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c +spdx_license_key: LicenseRef-scancode-merit-network-derivative +standard_notice: | + /* + * Copyright [C] The Regents of the University of Michigan and Merit + Network, + * Inc. 1992, 1993, 1994, 1995, 1996, 1997, 1998 All Rights Reserved + * + * Permission to use, copy, and modify this software and its documentation + * for any purpose and without fee is hereby granted, provided: + * + * 1) that the above copyright notice and this permission notice appear in + all + * copies of the software and derivative works or modified versions thereof, + * + * 2) that both the copyright notice and this permission and disclaimer + notice + * appear in all supporting documentation, and + * + * 3) that all derivative works made from this material are returned to the + * Regents of the University of Michigan and Merit Network, Inc. with + * permission to copy, to display, to distribute, and to make derivative + * works from the provided material in whole or in part for any purpose. + * + * Users of this code are requested to notify Merit Network, Inc. of such + use + * by sending email to aaa-admin@merit.edu + * + * Please also use aaa-admin@merit.edu to inform Merit Network, Inc of any + * derivative works. + * + * Distribution of this software or derivative works or the associated + * documentation is not allowed without an additional license. + * + * Licenses for other uses are available on an individually negotiated + * basis. Contact aaa-license@merit.edu for more information. + * + * THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER + * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF THE + * UNIVERSITY OF MICHIGAN AND MERIT NETWORK, INC. DO NOT WARRANT THAT THE + * FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET LICENSEE'S REQUIREMENTS OR + * THAT OPERATION WILL BE UNINTERRUPTED OR ERROR FREE. The Regents of the + * University of Michigan and Merit Network, Inc. shall not be liable for + any + * special, indirect, incidental or consequential damages with respect to + any + * claim by Licensee or any third party arising from use of the software. + * + * Merit AAA Server Support + * Merit Network, Inc. + * 4251 Plymouth Road, Suite C. + * Ann Arbor, Michigan, USA 48105-2785 + * + * attn: John Vollbrecht + * voice: 734-764-9430 + * fax: 734-647-3185 + * email: aaa-admin@merit.edu + * + */ +ignorable_emails: + - aaa-admin@merit.edu + - aaa-license@merit.edu +--- + Permission to use, copy, and modify this software and its documentation for any purpose and without fee is hereby granted, provided: diff --git a/src/licensedcode/data/licenses/merit-network-derivative.yml b/src/licensedcode/data/licenses/merit-network-derivative.yml deleted file mode 100644 index 63e92069fd0..00000000000 --- a/src/licensedcode/data/licenses/merit-network-derivative.yml +++ /dev/null @@ -1,68 +0,0 @@ -key: merit-network-derivative -short_name: Merit Network Derivative Works License -name: Merit Network Derivative Works License -category: Copyleft -owner: Merit Network -homepage_url: http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c -spdx_license_key: LicenseRef-scancode-merit-network-derivative -standard_notice: | - /* - * Copyright [C] The Regents of the University of Michigan and Merit - Network, - * Inc. 1992, 1993, 1994, 1995, 1996, 1997, 1998 All Rights Reserved - * - * Permission to use, copy, and modify this software and its documentation - * for any purpose and without fee is hereby granted, provided: - * - * 1) that the above copyright notice and this permission notice appear in - all - * copies of the software and derivative works or modified versions thereof, - * - * 2) that both the copyright notice and this permission and disclaimer - notice - * appear in all supporting documentation, and - * - * 3) that all derivative works made from this material are returned to the - * Regents of the University of Michigan and Merit Network, Inc. with - * permission to copy, to display, to distribute, and to make derivative - * works from the provided material in whole or in part for any purpose. - * - * Users of this code are requested to notify Merit Network, Inc. of such - use - * by sending email to aaa-admin@merit.edu - * - * Please also use aaa-admin@merit.edu to inform Merit Network, Inc of any - * derivative works. - * - * Distribution of this software or derivative works or the associated - * documentation is not allowed without an additional license. - * - * Licenses for other uses are available on an individually negotiated - * basis. Contact aaa-license@merit.edu for more information. - * - * THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER - * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF - * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF THE - * UNIVERSITY OF MICHIGAN AND MERIT NETWORK, INC. DO NOT WARRANT THAT THE - * FUNCTIONS CONTAINED IN THE SOFTWARE WILL MEET LICENSEE'S REQUIREMENTS OR - * THAT OPERATION WILL BE UNINTERRUPTED OR ERROR FREE. The Regents of the - * University of Michigan and Merit Network, Inc. shall not be liable for - any - * special, indirect, incidental or consequential damages with respect to - any - * claim by Licensee or any third party arising from use of the software. - * - * Merit AAA Server Support - * Merit Network, Inc. - * 4251 Plymouth Road, Suite C. - * Ann Arbor, Michigan, USA 48105-2785 - * - * attn: John Vollbrecht - * voice: 734-764-9430 - * fax: 734-647-3185 - * email: aaa-admin@merit.edu - * - */ -ignorable_emails: - - aaa-admin@merit.edu - - aaa-license@merit.edu diff --git a/src/licensedcode/data/licenses/metageek-inssider-eula.LICENSE b/src/licensedcode/data/licenses/metageek-inssider-eula.LICENSE index 055ed32d4de..d1850af9979 100644 --- a/src/licensedcode/data/licenses/metageek-inssider-eula.LICENSE +++ b/src/licensedcode/data/licenses/metageek-inssider-eula.LICENSE @@ -1,3 +1,20 @@ +--- +key: metageek-inssider-eula +short_name: inSSIDer EULA +name: inSSIDer End User License Agreement +category: Proprietary Free +owner: MetaGeek +homepage_url: https://www.metageek.com/legal/eula/inssider.html +spdx_license_key: LicenseRef-scancode-metageek-inssider-eula +other_urls: + - https://en.wikipedia.org/wiki/InSSIDer +ignorable_copyrights: + - Copyrights Copyright 2005-2019 MetaGeek, LLC. + - copyright 2007-2019 MetaGeek, LLC. +ignorable_holders: + - MetaGeek, LLC. +--- + inSSIDer End User License Agreement END-USER LICENSE AGREEMENT FOR inSSIDer. IMPORTANT PLEASE READ THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT CAREFULLY BEFORE CONTINUING WITH THIS PROGRAM INSTALL: MetaGeek, LLC's End-User License Agreement ("EULA") is a legal agreement between you, either an individual or a single entity (referred to as the "licensee") and MetaGeek, LLC for the MetaGeek software product(s) identified above which may include associated software components, media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. This license agreement represents the entire agreement concerning the program between you and MetaGeek LLC, (referred to as "licenser"), and it supersedes any prior proposal, representation, or understanding between the parties. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. diff --git a/src/licensedcode/data/licenses/metageek-inssider-eula.yml b/src/licensedcode/data/licenses/metageek-inssider-eula.yml deleted file mode 100644 index c2813381f21..00000000000 --- a/src/licensedcode/data/licenses/metageek-inssider-eula.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: metageek-inssider-eula -short_name: inSSIDer EULA -name: inSSIDer End User License Agreement -category: Proprietary Free -owner: MetaGeek -homepage_url: https://www.metageek.com/legal/eula/inssider.html -spdx_license_key: LicenseRef-scancode-metageek-inssider-eula -other_urls: - - https://en.wikipedia.org/wiki/InSSIDer -ignorable_copyrights: - - Copyrights Copyright 2005-2019 MetaGeek, LLC. - - copyright 2007-2019 MetaGeek, LLC. -ignorable_holders: - - MetaGeek, LLC. diff --git a/src/licensedcode/data/licenses/metrolink-1.0.LICENSE b/src/licensedcode/data/licenses/metrolink-1.0.LICENSE index 1c8556c6c31..860858f1337 100644 --- a/src/licensedcode/data/licenses/metrolink-1.0.LICENSE +++ b/src/licensedcode/data/licenses/metrolink-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: metrolink-1.0 +short_name: Metrolink 1.0 +name: Metro Link Public License 1.0 +category: Copyleft +owner: Metro Link Inc. +homepage_url: http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html +spdx_license_key: LicenseRef-scancode-metrolink-1.0 +text_urls: + - http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html +ignorable_copyrights: + - Copyright (c) May, 2000 The Open Group, Metro Link, Incorporated and others +ignorable_holders: + - May, The Open Group, Metro Link, Incorporated and others +--- + METRO LINK PUBLIC LICENSE MOTIF GRAPHICAL USER INTERFACE SOFTWARE Version 1.00 diff --git a/src/licensedcode/data/licenses/metrolink-1.0.yml b/src/licensedcode/data/licenses/metrolink-1.0.yml deleted file mode 100644 index 4ceba550b51..00000000000 --- a/src/licensedcode/data/licenses/metrolink-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: metrolink-1.0 -short_name: Metrolink 1.0 -name: Metro Link Public License 1.0 -category: Copyleft -owner: Metro Link Inc. -homepage_url: http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html -spdx_license_key: LicenseRef-scancode-metrolink-1.0 -text_urls: - - http://web.archive.org/web/20120411024312/http://www.opengroup.org/openmotif/supporters/metrolink/license.html -ignorable_copyrights: - - Copyright (c) May, 2000 The Open Group, Metro Link, Incorporated and others -ignorable_holders: - - May, The Open Group, Metro Link, Incorporated and others diff --git a/src/licensedcode/data/licenses/mgopen-font-license.LICENSE b/src/licensedcode/data/licenses/mgopen-font-license.LICENSE index 822d97a6e13..4c7afdd900d 100644 --- a/src/licensedcode/data/licenses/mgopen-font-license.LICENSE +++ b/src/licensedcode/data/licenses/mgopen-font-license.LICENSE @@ -1,3 +1,16 @@ +--- +key: mgopen-font-license +short_name: MgOpen Font License +name: MgOpen Font License +category: Permissive +owner: MgOpen +homepage_url: http://pub.ellak.gr/fonts/mgopen/index.en.html +spdx_license_key: LicenseRef-scancode-mgopen-font-license +text_urls: + - http://pub.ellak.gr/fonts/mgopen/index.en.html#license +faq_url: http://pub.ellak.gr/fonts/mgopen/index.en.html#faq +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: The above copyright and this permission notice shall be included in all copies of one or more of the Font Software typefaces. diff --git a/src/licensedcode/data/licenses/mgopen-font-license.yml b/src/licensedcode/data/licenses/mgopen-font-license.yml deleted file mode 100644 index 76c82832cdf..00000000000 --- a/src/licensedcode/data/licenses/mgopen-font-license.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: mgopen-font-license -short_name: MgOpen Font License -name: MgOpen Font License -category: Permissive -owner: MgOpen -homepage_url: http://pub.ellak.gr/fonts/mgopen/index.en.html -spdx_license_key: LicenseRef-scancode-mgopen-font-license -text_urls: - - http://pub.ellak.gr/fonts/mgopen/index.en.html#license -faq_url: http://pub.ellak.gr/fonts/mgopen/index.en.html#faq diff --git a/src/licensedcode/data/licenses/michael-barr.LICENSE b/src/licensedcode/data/licenses/michael-barr.LICENSE index da7ff152ad4..8c288539ef4 100644 --- a/src/licensedcode/data/licenses/michael-barr.LICENSE +++ b/src/licensedcode/data/licenses/michael-barr.LICENSE @@ -1,3 +1,12 @@ +--- +key: michael-barr +short_name: Michael Barr License +name: Michael Barr License +category: Permissive +owner: Michael Barr +spdx_license_key: LicenseRef-scancode-michael-barr +--- + This software is placed into the public domain and may be used for any purpose. However, this notice must not be changed or removed and no warranty is either expressed or implied by its publication or distribution. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/michael-barr.yml b/src/licensedcode/data/licenses/michael-barr.yml deleted file mode 100644 index 7af8d8affaf..00000000000 --- a/src/licensedcode/data/licenses/michael-barr.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: michael-barr -short_name: Michael Barr License -name: Michael Barr License -category: Permissive -owner: Michael Barr -spdx_license_key: LicenseRef-scancode-michael-barr diff --git a/src/licensedcode/data/licenses/michigan-disclaimer.LICENSE b/src/licensedcode/data/licenses/michigan-disclaimer.LICENSE index 14b8abe77de..c32ab9eb637 100644 --- a/src/licensedcode/data/licenses/michigan-disclaimer.LICENSE +++ b/src/licensedcode/data/licenses/michigan-disclaimer.LICENSE @@ -1,3 +1,13 @@ +--- +key: michigan-disclaimer +short_name: University of Michigan OSL +name: University of Michigan Open Source License +category: Permissive +owner: University of Michigan +spdx_license_key: LicenseRef-scancode-michigan-disclaimer +minimum_coverage: 70 +--- + Permission is granted to use, copy, create derivative works and redistribute this software and such derivative works for any purpose, so long as the name of The University of @@ -20,4 +30,4 @@ FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. +SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/michigan-disclaimer.yml b/src/licensedcode/data/licenses/michigan-disclaimer.yml deleted file mode 100644 index 7bb2d9db3c9..00000000000 --- a/src/licensedcode/data/licenses/michigan-disclaimer.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: michigan-disclaimer -short_name: University of Michigan OSL -name: University of Michigan Open Source License -category: Permissive -owner: University of Michigan -spdx_license_key: LicenseRef-scancode-michigan-disclaimer -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/microchip-linux-firmware.LICENSE b/src/licensedcode/data/licenses/microchip-linux-firmware.LICENSE index 35fddbb5659..649d686ddd7 100644 --- a/src/licensedcode/data/licenses/microchip-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/microchip-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: microchip-linux-firmware +short_name: Microchip Linux Firmware License +name: Microchip Linux Firmware License +category: Proprietary Free +owner: Microchip +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.microchip +spdx_license_key: LicenseRef-scancode-microchip-linux-firmware +--- + REDISTRIBUTION: Permission is hereby granted by Microchip Technology Incorporated (Microchip), free of any license fees, to any person obtaining a copy of this firmware (the "Software"), to install, reproduce, copy and diff --git a/src/licensedcode/data/licenses/microchip-linux-firmware.yml b/src/licensedcode/data/licenses/microchip-linux-firmware.yml deleted file mode 100644 index 924e16eb7ea..00000000000 --- a/src/licensedcode/data/licenses/microchip-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: microchip-linux-firmware -short_name: Microchip Linux Firmware License -name: Microchip Linux Firmware License -category: Proprietary Free -owner: Microchip -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.microchip -spdx_license_key: LicenseRef-scancode-microchip-linux-firmware diff --git a/src/licensedcode/data/licenses/microchip-products-2018.LICENSE b/src/licensedcode/data/licenses/microchip-products-2018.LICENSE index 996cb1925bd..6ccbbde8034 100644 --- a/src/licensedcode/data/licenses/microchip-products-2018.LICENSE +++ b/src/licensedcode/data/licenses/microchip-products-2018.LICENSE @@ -1,3 +1,16 @@ +--- +key: microchip-products-2018 +short_name: Microchip Products 2018 +name: Microchip Technology Products 2018 +category: Proprietary Free +owner: Microchip +spdx_license_key: LicenseRef-scancode-microchip-products-2018 +ignorable_copyrights: + - (c) 2018 Microchip Technology Inc. and its subsidiaries +ignorable_holders: + - Microchip Technology Inc. and its subsidiaries +--- + /*------------------------------------------------------------------------------------------------*/ /* (c) 2018 Microchip Technology Inc. and its subsidiaries. */ /* */ diff --git a/src/licensedcode/data/licenses/microchip-products-2018.yml b/src/licensedcode/data/licenses/microchip-products-2018.yml deleted file mode 100644 index f324ba22845..00000000000 --- a/src/licensedcode/data/licenses/microchip-products-2018.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: microchip-products-2018 -short_name: Microchip Products 2018 -name: Microchip Technology Products 2018 -category: Proprietary Free -owner: Microchip -spdx_license_key: LicenseRef-scancode-microchip-products-2018 -ignorable_copyrights: - - (c) 2018 Microchip Technology Inc. and its subsidiaries -ignorable_holders: - - Microchip Technology Inc. and its subsidiaries diff --git a/src/licensedcode/data/licenses/microsoft-enterprise-library-eula.LICENSE b/src/licensedcode/data/licenses/microsoft-enterprise-library-eula.LICENSE index d5e2547d75d..fc02b0e6cd8 100644 --- a/src/licensedcode/data/licenses/microsoft-enterprise-library-eula.LICENSE +++ b/src/licensedcode/data/licenses/microsoft-enterprise-library-eula.LICENSE @@ -1,3 +1,19 @@ +--- +key: microsoft-enterprise-library-eula +short_name: MS Enterprise Library EULA +name: Microsoft Enterprise Library EULA +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/library/ms998253 +spdx_license_key: LicenseRef-scancode-ms-enterprise-library-eula +other_spdx_license_keys: + - LicenseRef-scancode-microsoft-enterprise-library-eula +ignorable_copyrights: + - (c) 2005 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +--- + END USER LICENSE AGREEMENT: Enterprise Library diff --git a/src/licensedcode/data/licenses/microsoft-enterprise-library-eula.yml b/src/licensedcode/data/licenses/microsoft-enterprise-library-eula.yml deleted file mode 100644 index 128593774eb..00000000000 --- a/src/licensedcode/data/licenses/microsoft-enterprise-library-eula.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: microsoft-enterprise-library-eula -short_name: MS Enterprise Library EULA -name: Microsoft Enterprise Library EULA -category: Proprietary Free -owner: Microsoft -homepage_url: http://msdn.microsoft.com/en-us/library/ms998253 -spdx_license_key: LicenseRef-scancode-ms-enterprise-library-eula -other_spdx_license_keys: - - LicenseRef-scancode-microsoft-enterprise-library-eula -ignorable_copyrights: - - (c) 2005 Microsoft Corporation -ignorable_holders: - - Microsoft Corporation diff --git a/src/licensedcode/data/licenses/microsoft-windows-rally-devkit.LICENSE b/src/licensedcode/data/licenses/microsoft-windows-rally-devkit.LICENSE index 26ba568148a..c0d305e0c28 100644 --- a/src/licensedcode/data/licenses/microsoft-windows-rally-devkit.LICENSE +++ b/src/licensedcode/data/licenses/microsoft-windows-rally-devkit.LICENSE @@ -1,3 +1,16 @@ +--- +key: microsoft-windows-rally-devkit +short_name: MS Windows Rally Development Kit License +name: Microsoft Windows Rally Development Kit License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-microsoft-windows-rally-devkit +ignorable_urls: + - http://www.microsoft.com/ + - http://www.microsoft.com/exporting + - http://www.microsoft.com/rally +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS RALLY DEVELOPMENT KIT These license terms are an agreement ("Agreement") between Microsoft Corporation (or based on where you live, one of its affiliates) and the individual or entity identified and signing below ("you"). They apply to the sample code for Link Layer Topology Discovery and Plug and Play Extensions ("Sample Code"), which includes the media on which you received the Sample Code, if any. The terms also apply to any Microsoft diff --git a/src/licensedcode/data/licenses/microsoft-windows-rally-devkit.yml b/src/licensedcode/data/licenses/microsoft-windows-rally-devkit.yml deleted file mode 100644 index a528d2cce33..00000000000 --- a/src/licensedcode/data/licenses/microsoft-windows-rally-devkit.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: microsoft-windows-rally-devkit -short_name: MS Windows Rally Development Kit License -name: Microsoft Windows Rally Development Kit License -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-microsoft-windows-rally-devkit -ignorable_urls: - - http://www.microsoft.com/ - - http://www.microsoft.com/exporting - - http://www.microsoft.com/rally diff --git a/src/licensedcode/data/licenses/mif-exception.LICENSE b/src/licensedcode/data/licenses/mif-exception.LICENSE index 7561bdbfc3d..73d4d23bf1f 100644 --- a/src/licensedcode/data/licenses/mif-exception.LICENSE +++ b/src/licensedcode/data/licenses/mif-exception.LICENSE @@ -1,3 +1,28 @@ +--- +key: mif-exception +short_name: Macros and Inline Functions Exception to GPL 2.0 +name: Macros and Inline Functions Exception to GPL 2.0 +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: https://spdx.org/licenses/mif-exception.html +is_exception: yes +spdx_license_key: mif-exception +other_urls: + - http://dev.bertos.org/doxygen/ + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.scs.stanford.edu/histar/src/lib/cppsup/exception + - https://www.threadingbuildingblocks.org/licensing +standard_notice: | + As a special exception, you may use this file as part of a free software + library without restriction. Specifically, if other files instantiate + templates or use macros or inline functions from this file, or you compile + this file and link it with other files to produce an executable, this file + does not by itself cause the resulting executable to be covered by the GNU + General Public License. This exception does not however invalidate any + other reasons why the executable file might be covered by the GNU General + Public License. +--- + As a special exception, you may use this file as part of a free software library without restriction. Specifically, if other files instantiate templates or use macros or inline functions from this file, or you compile this file and link it diff --git a/src/licensedcode/data/licenses/mif-exception.yml b/src/licensedcode/data/licenses/mif-exception.yml deleted file mode 100644 index 15e35b62c19..00000000000 --- a/src/licensedcode/data/licenses/mif-exception.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: mif-exception -short_name: Macros and Inline Functions Exception to GPL 2.0 -name: Macros and Inline Functions Exception to GPL 2.0 -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: https://spdx.org/licenses/mif-exception.html -is_exception: yes -spdx_license_key: mif-exception -other_urls: - - http://dev.bertos.org/doxygen/ - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.scs.stanford.edu/histar/src/lib/cppsup/exception - - https://www.threadingbuildingblocks.org/licensing -standard_notice: | - As a special exception, you may use this file as part of a free software - library without restriction. Specifically, if other files instantiate - templates or use macros or inline functions from this file, or you compile - this file and link it with other files to produce an executable, this file - does not by itself cause the resulting executable to be covered by the GNU - General Public License. This exception does not however invalidate any - other reasons why the executable file might be covered by the GNU General - Public License. diff --git a/src/licensedcode/data/licenses/mike95.LICENSE b/src/licensedcode/data/licenses/mike95.LICENSE index 775b58e9003..310faab656f 100644 --- a/src/licensedcode/data/licenses/mike95.LICENSE +++ b/src/licensedcode/data/licenses/mike95.LICENSE @@ -1,3 +1,19 @@ +--- +key: mike95 +short_name: Mike95 License +name: Mike95 License +category: Free Restricted +owner: Mike95 +homepage_url: http://www.mike95.com/c_plusplus/classes/JString/JString_h.aspx +spdx_license_key: LicenseRef-scancode-mike95 +ignorable_authors: + - Michael Olivero +ignorable_urls: + - http://www.mike95.com/ +ignorable_emails: + - mike95@mike95.com +--- + This library was downloaded from: http://www.mike95.com This library is copyright. It may freely be used for personal purposes diff --git a/src/licensedcode/data/licenses/mike95.yml b/src/licensedcode/data/licenses/mike95.yml deleted file mode 100644 index ee4ccd287f6..00000000000 --- a/src/licensedcode/data/licenses/mike95.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: mike95 -short_name: Mike95 License -name: Mike95 License -category: Free Restricted -owner: Mike95 -homepage_url: http://www.mike95.com/c_plusplus/classes/JString/JString_h.aspx -spdx_license_key: LicenseRef-scancode-mike95 -ignorable_authors: - - Michael Olivero -ignorable_urls: - - http://www.mike95.com/ -ignorable_emails: - - mike95@mike95.com diff --git a/src/licensedcode/data/licenses/minecraft-mod.LICENSE b/src/licensedcode/data/licenses/minecraft-mod.LICENSE index b9db4463556..fe814403c27 100644 --- a/src/licensedcode/data/licenses/minecraft-mod.LICENSE +++ b/src/licensedcode/data/licenses/minecraft-mod.LICENSE @@ -1,3 +1,14 @@ +--- +key: minecraft-mod +short_name: Minecraft Mod License +name: Minecraft Mod License +category: Proprietary Free +owner: Unspecified +homepage_url: https://bdew.net/ +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-minecraft-mod +--- + Minecraft: Denotes a copy of the Minecraft game licensed by Mojang AB User: Anybody that interacts with the software in one of the following ways: - play @@ -56,4 +67,4 @@ Minecraft code and the mod loading framework (e.g. ModLoader, ModLoaderMP or Bukkit). Modified version of binaries and sources, as well as files containing sections copied from this mod, should be distributed under the terms of the present -license. +license. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/minecraft-mod.yml b/src/licensedcode/data/licenses/minecraft-mod.yml deleted file mode 100644 index 7954f68a45d..00000000000 --- a/src/licensedcode/data/licenses/minecraft-mod.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: minecraft-mod -short_name: Minecraft Mod License -name: Minecraft Mod License -category: Proprietary Free -owner: Unspecified -homepage_url: https://bdew.net/ -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-minecraft-mod diff --git a/src/licensedcode/data/licenses/mini-xml-exception-lgpl-2.0.LICENSE b/src/licensedcode/data/licenses/mini-xml-exception-lgpl-2.0.LICENSE index 9bdf90169ff..26d7ce9c232 100644 --- a/src/licensedcode/data/licenses/mini-xml-exception-lgpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/mini-xml-exception-lgpl-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: mini-xml-exception-lgpl-2.0 +short_name: Mini-XML exception to LGPL 2.0 +name: Mini-XML exception to LGPL 2.0 +category: Copyleft Limited +owner: Mini-XML +homepage_url: http://www.minixml.org/documentation.php/license.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-mini-xml-exception-lgpl-2.0 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.0.txt +standard_notice: | + 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; either version 2 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 Library General Public + License for more details. + You should have received a copy of the GNU Library General Public License + along with this library; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Mini-XML License (LGPL 2.0 with Exception) + The Mini-XML library and included programs are provided under the terms of + the GNU Library General Public License (LGPL) with the following + exceptions: + 1. Static linking of applications to the Mini-XML library does not + constitute a derivative work and does not require the author to provide + source code for the application, use the shared Mini-XML libraries, or link + their applications against a user-supplied version of Mini-XML. + If you link the application to a modified version of Mini-XML, then the + changes to Mini-XML must be provided under the terms of the LGPL in + sections 1, 2, and 4. + 2. You do not have to provide a copy of the Mini-XML license with programs + that are linked to the Mini-XML library, nor do you have to identify the + Mini-XML license in your program or documentation as required by section 6 + of the LGPL. + GNU Library General Public License (LGPL 2.0) + http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html - TOC1 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + Mini-XML License (LGPL 2.0 with Exception) The Mini-XML library and included programs are provided under the terms of the diff --git a/src/licensedcode/data/licenses/mini-xml-exception-lgpl-2.0.yml b/src/licensedcode/data/licenses/mini-xml-exception-lgpl-2.0.yml deleted file mode 100644 index 16bbcc53ee0..00000000000 --- a/src/licensedcode/data/licenses/mini-xml-exception-lgpl-2.0.yml +++ /dev/null @@ -1,41 +0,0 @@ -key: mini-xml-exception-lgpl-2.0 -short_name: Mini-XML exception to LGPL 2.0 -name: Mini-XML exception to LGPL 2.0 -category: Copyleft Limited -owner: Mini-XML -homepage_url: http://www.minixml.org/documentation.php/license.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-mini-xml-exception-lgpl-2.0 -other_urls: - - http://www.gnu.org/licenses/lgpl-2.0.txt -standard_notice: | - 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; either version 2 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 Library General Public - License for more details. - You should have received a copy of the GNU Library General Public License - along with this library; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Mini-XML License (LGPL 2.0 with Exception) - The Mini-XML library and included programs are provided under the terms of - the GNU Library General Public License (LGPL) with the following - exceptions: - 1. Static linking of applications to the Mini-XML library does not - constitute a derivative work and does not require the author to provide - source code for the application, use the shared Mini-XML libraries, or link - their applications against a user-supplied version of Mini-XML. - If you link the application to a modified version of Mini-XML, then the - changes to Mini-XML must be provided under the terms of the LGPL in - sections 1, 2, and 4. - 2. You do not have to provide a copy of the Mini-XML license with programs - that are linked to the Mini-XML library, nor do you have to identify the - Mini-XML license in your program or documentation as required by section 6 - of the LGPL. - GNU Library General Public License (LGPL 2.0) - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html - TOC1 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/licenses/mini-xml.LICENSE b/src/licensedcode/data/licenses/mini-xml.LICENSE index 03624c4b54f..334f6f07729 100644 --- a/src/licensedcode/data/licenses/mini-xml.LICENSE +++ b/src/licensedcode/data/licenses/mini-xml.LICENSE @@ -1,3 +1,17 @@ +--- +key: mini-xml +is_deprecated: yes +short_name: LGPL 2.0 with Mini-XML exception +name: LGPL 2.0 with Mini-XML exception +category: Copyleft Limited +owner: Mini-XML +homepage_url: http://www.minixml.org/documentation.php/license.html +is_exception: yes +text_urls: + - http://www.minixml.org/documentation.php/license.html +notes: replaced by mini-xml-exception-lgpl-2.0 +--- + 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; either version 2 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 Library General Public License for more details. diff --git a/src/licensedcode/data/licenses/mini-xml.yml b/src/licensedcode/data/licenses/mini-xml.yml deleted file mode 100644 index d264c09f1e2..00000000000 --- a/src/licensedcode/data/licenses/mini-xml.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mini-xml -is_deprecated: yes -short_name: LGPL 2.0 with Mini-XML exception -name: LGPL 2.0 with Mini-XML exception -category: Copyleft Limited -owner: Mini-XML -homepage_url: http://www.minixml.org/documentation.php/license.html -is_exception: yes -text_urls: - - http://www.minixml.org/documentation.php/license.html -notes: replaced by mini-xml-exception-lgpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/minpack.LICENSE b/src/licensedcode/data/licenses/minpack.LICENSE index 051d012dddf..4970a63d99a 100644 --- a/src/licensedcode/data/licenses/minpack.LICENSE +++ b/src/licensedcode/data/licenses/minpack.LICENSE @@ -1,3 +1,21 @@ +--- +key: minpack +short_name: Minpack Copyright Notice +name: Minpack Copyright Notice +category: Permissive +owner: University of Chicago +homepage_url: http://www.netlib.org/minpack/disclaimer +spdx_license_key: Minpack +other_spdx_license_keys: + - LicenseRef-scancode-minpack +text_urls: + - http://www.netlib.org/minpack/disclaimer +other_urls: + - https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK +ignorable_authors: + - the University of Chicago +--- + Minpack Copyright Notice (1999) University of Chicago. All rights reserved Redistribution and use in source and binary forms, with or diff --git a/src/licensedcode/data/licenses/minpack.yml b/src/licensedcode/data/licenses/minpack.yml deleted file mode 100644 index e29b6709331..00000000000 --- a/src/licensedcode/data/licenses/minpack.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: minpack -short_name: Minpack Copyright Notice -name: Minpack Copyright Notice -category: Permissive -owner: University of Chicago -homepage_url: http://www.netlib.org/minpack/disclaimer -spdx_license_key: Minpack -other_spdx_license_keys: - - LicenseRef-scancode-minpack -text_urls: - - http://www.netlib.org/minpack/disclaimer -other_urls: - - https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK -ignorable_authors: - - the University of Chicago diff --git a/src/licensedcode/data/licenses/mir-os.LICENSE b/src/licensedcode/data/licenses/mir-os.LICENSE index bab7895abca..c6bef23b36a 100644 --- a/src/licensedcode/data/licenses/mir-os.LICENSE +++ b/src/licensedcode/data/licenses/mir-os.LICENSE @@ -1,3 +1,21 @@ +--- +key: mir-os +short_name: MirOS License +name: MirOS License +category: Permissive +owner: MirOS Project +homepage_url: https://www.mirbsd.org/MirOS-Licence +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MirOS +text_urls: + - http://opensource.org/licenses/miros.html + - https://www.mirbsd.org/about.htm#licence +osi_url: http://opensource.org/licenses/miros.html +other_urls: + - http://www.opensource.org/licenses/MirOS + - https://opensource.org/licenses/MirOS +--- + Provided that these terms and disclaimer and all copyright notices are retained or reproduced in an accompanying document, permission is granted to deal in this work without restriction, including un‐ @@ -11,4 +29,4 @@ may a licensor, author or contributor be held liable for indirect, direct, other damage, loss, or other issues arising in any way out of dealing in the work, even if advised of the possibility of such damage or existence of a defect, except proven that it results out -of said person's immediate fault when using the work as intended. +of said person's immediate fault when using the work as intended. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mir-os.yml b/src/licensedcode/data/licenses/mir-os.yml deleted file mode 100644 index f79c543358a..00000000000 --- a/src/licensedcode/data/licenses/mir-os.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: mir-os -short_name: MirOS License -name: MirOS License -category: Permissive -owner: MirOS Project -homepage_url: https://www.mirbsd.org/MirOS-Licence -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: MirOS -text_urls: - - http://opensource.org/licenses/miros.html - - https://www.mirbsd.org/about.htm#licence -osi_url: http://opensource.org/licenses/miros.html -other_urls: - - http://www.opensource.org/licenses/MirOS - - https://opensource.org/licenses/MirOS diff --git a/src/licensedcode/data/licenses/mit-0.LICENSE b/src/licensedcode/data/licenses/mit-0.LICENSE index 1d54927a3c1..934de29eef7 100644 --- a/src/licensedcode/data/licenses/mit-0.LICENSE +++ b/src/licensedcode/data/licenses/mit-0.LICENSE @@ -1,3 +1,23 @@ +--- +key: mit-0 +short_name: MIT-0-Clause +name: MIT No Attribution +category: Permissive +owner: Amazon Web Services +homepage_url: https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE +notes: | + The former ekioh license has been deprecated in favor of this license. Except + for the dangling ", subject to the following conditions:" text, the ekioh + license is essentially identical to the mit-0. +spdx_license_key: MIT-0 +other_spdx_license_keys: + - LicenseRef-scancode-ekioh +other_urls: + - https://github.com/aws/mit-0 + - https://romanrm.net/mit-zero + - https://kryogenix.org/code/browser/licence.html +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, diff --git a/src/licensedcode/data/licenses/mit-0.yml b/src/licensedcode/data/licenses/mit-0.yml deleted file mode 100644 index 98ebf6b10aa..00000000000 --- a/src/licensedcode/data/licenses/mit-0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: mit-0 -short_name: MIT-0-Clause -name: MIT No Attribution -category: Permissive -owner: Amazon Web Services -homepage_url: https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE -notes: | - The former ekioh license has been deprecated in favor of this license. Except - for the dangling ", subject to the following conditions:" text, the ekioh - license is essentially identical to the mit-0. -spdx_license_key: MIT-0 -other_spdx_license_keys: - - LicenseRef-scancode-ekioh -other_urls: - - https://github.com/aws/mit-0 - - https://romanrm.net/mit-zero - - https://kryogenix.org/code/browser/licence.html diff --git a/src/licensedcode/data/licenses/mit-1995.LICENSE b/src/licensedcode/data/licenses/mit-1995.LICENSE index 2a62d4ef08f..e539d2a6151 100644 --- a/src/licensedcode/data/licenses/mit-1995.LICENSE +++ b/src/licensedcode/data/licenses/mit-1995.LICENSE @@ -1,3 +1,17 @@ +--- +key: mit-1995 +short_name: MIT 1995 +name: MIT INRIA W3C 1995 +category: Permissive +owner: MIT +homepage_url: https://github.com/robaho/lrmp/blob/master/java/main/inria/net/lrmp/Lrmp.java +spdx_license_key: LicenseRef-scancode-mit-1995 +ignorable_copyrights: + - COPYRIGHT 1995 BY MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA +ignorable_holders: + - MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA +--- + COPYRIGHT 1995 BY: MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA This W3C software is being provided by the copyright holders under the diff --git a/src/licensedcode/data/licenses/mit-1995.yml b/src/licensedcode/data/licenses/mit-1995.yml deleted file mode 100644 index cc8a6f71286..00000000000 --- a/src/licensedcode/data/licenses/mit-1995.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mit-1995 -short_name: MIT 1995 -name: MIT INRIA W3C 1995 -category: Permissive -owner: MIT -homepage_url: https://github.com/robaho/lrmp/blob/master/java/main/inria/net/lrmp/Lrmp.java -spdx_license_key: LicenseRef-scancode-mit-1995 -ignorable_copyrights: - - COPYRIGHT 1995 BY MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA -ignorable_holders: - - MASSACHUSETTS INSTITUTE OF TECHNOLOGY (MIT), INRIA diff --git a/src/licensedcode/data/licenses/mit-ack.LICENSE b/src/licensedcode/data/licenses/mit-ack.LICENSE index 5f7a62c6315..ef326ebbce9 100644 --- a/src/licensedcode/data/licenses/mit-ack.LICENSE +++ b/src/licensedcode/data/licenses/mit-ack.LICENSE @@ -1,3 +1,15 @@ +--- +key: mit-ack +short_name: MIT Acknowledgment License +name: MIT Acknowledgment License +category: Permissive +owner: Unspecified +homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#feh +spdx_license_key: MIT-feh +other_urls: + - https://fedoraproject.org/wiki/Licensing/MIT#feh +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, diff --git a/src/licensedcode/data/licenses/mit-ack.yml b/src/licensedcode/data/licenses/mit-ack.yml deleted file mode 100644 index ca02b27ebe2..00000000000 --- a/src/licensedcode/data/licenses/mit-ack.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: mit-ack -short_name: MIT Acknowledgment License -name: MIT Acknowledgment License -category: Permissive -owner: Unspecified -homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#feh -spdx_license_key: MIT-feh -other_urls: - - https://fedoraproject.org/wiki/Licensing/MIT#feh diff --git a/src/licensedcode/data/licenses/mit-addition.LICENSE b/src/licensedcode/data/licenses/mit-addition.LICENSE index c5d988fb1a8..68900256c72 100644 --- a/src/licensedcode/data/licenses/mit-addition.LICENSE +++ b/src/licensedcode/data/licenses/mit-addition.LICENSE @@ -1,3 +1,16 @@ +--- +key: mit-addition +short_name: MIT Addition License +name: MIT Addition License +category: Permissive +owner: Tom Wu +homepage_url: http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE +spdx_license_key: LicenseRef-scancode-mit-addition +other_urls: + - http://www-cs-students.stanford.edu/~tjw/jsbn/ +minimum_coverage: 90 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/licenses/mit-addition.yml b/src/licensedcode/data/licenses/mit-addition.yml deleted file mode 100644 index 709d70412c5..00000000000 --- a/src/licensedcode/data/licenses/mit-addition.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: mit-addition -short_name: MIT Addition License -name: MIT Addition License -category: Permissive -owner: Tom Wu -homepage_url: http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE -spdx_license_key: LicenseRef-scancode-mit-addition -other_urls: - - http://www-cs-students.stanford.edu/~tjw/jsbn/ -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/mit-export-control.LICENSE b/src/licensedcode/data/licenses/mit-export-control.LICENSE index e14b21ca3d4..c1a95c92608 100644 --- a/src/licensedcode/data/licenses/mit-export-control.LICENSE +++ b/src/licensedcode/data/licenses/mit-export-control.LICENSE @@ -1,3 +1,18 @@ +--- +key: mit-export-control +short_name: MIT with Export Control +name: MIT with Export Control +category: Permissive +owner: Xerox PARC +homepage_url: https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox +notes: | + Per Fedora, this license is very similar to MIT, except that it requires + that US Export Control laws be followed, which makes it GPL-Incompatible. +spdx_license_key: Xerox +other_urls: + - https://fedoraproject.org/wiki/Licensing/Xerox +--- + Use and copying of this software and preparation of derivative works based upon this software are permitted. Any copy of this software or of any derivative work must include the above copyright notice of diff --git a/src/licensedcode/data/licenses/mit-export-control.yml b/src/licensedcode/data/licenses/mit-export-control.yml deleted file mode 100644 index d6039255750..00000000000 --- a/src/licensedcode/data/licenses/mit-export-control.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: mit-export-control -short_name: MIT with Export Control -name: MIT with Export Control -category: Permissive -owner: Xerox PARC -homepage_url: https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox -notes: | - Per Fedora, this license is very similar to MIT, except that it requires - that US Export Control laws be followed, which makes it GPL-Incompatible. -spdx_license_key: Xerox -other_urls: - - https://fedoraproject.org/wiki/Licensing/Xerox diff --git a/src/licensedcode/data/licenses/mit-license-1998.LICENSE b/src/licensedcode/data/licenses/mit-license-1998.LICENSE index 0424496c1c1..b8070378c8d 100644 --- a/src/licensedcode/data/licenses/mit-license-1998.LICENSE +++ b/src/licensedcode/data/licenses/mit-license-1998.LICENSE @@ -1,3 +1,12 @@ +--- +key: mit-license-1998 +short_name: MIT License 1998 +name: MIT License 1998 +category: Permissive +owner: MIT +spdx_license_key: LicenseRef-scancode-mit-license-1998 +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that both the above copyright notice and this permission @@ -20,4 +29,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-license-1998.yml b/src/licensedcode/data/licenses/mit-license-1998.yml deleted file mode 100644 index 34c16443a55..00000000000 --- a/src/licensedcode/data/licenses/mit-license-1998.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: mit-license-1998 -short_name: MIT License 1998 -name: MIT License 1998 -category: Permissive -owner: MIT -spdx_license_key: LicenseRef-scancode-mit-license-1998 diff --git a/src/licensedcode/data/licenses/mit-modern.LICENSE b/src/licensedcode/data/licenses/mit-modern.LICENSE index a41ab02634c..7b54bdaf9c4 100644 --- a/src/licensedcode/data/licenses/mit-modern.LICENSE +++ b/src/licensedcode/data/licenses/mit-modern.LICENSE @@ -1,3 +1,21 @@ +--- +key: mit-modern +short_name: MIT Modern Variant +name: MIT Modern Variant +category: Permissive +owner: Fedora +homepage_url: http://fedoraproject.org/wiki/Licensing/MIT +spdx_license_key: MIT-Modern-Variant +other_spdx_license_keys: + - LicenseRef-scancode-mit-modern +text_urls: + - http://fedoraproject.org/wiki/Licensing/MIT +other_urls: + - https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants + - https://ptolemy.berkeley.edu/copyright.htm + - https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html +--- + Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the diff --git a/src/licensedcode/data/licenses/mit-modern.yml b/src/licensedcode/data/licenses/mit-modern.yml deleted file mode 100644 index bf3fa65cd03..00000000000 --- a/src/licensedcode/data/licenses/mit-modern.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: mit-modern -short_name: MIT Modern Variant -name: MIT Modern Variant -category: Permissive -owner: Fedora -homepage_url: http://fedoraproject.org/wiki/Licensing/MIT -spdx_license_key: MIT-Modern-Variant -other_spdx_license_keys: - - LicenseRef-scancode-mit-modern -text_urls: - - http://fedoraproject.org/wiki/Licensing/MIT -other_urls: - - https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants - - https://ptolemy.berkeley.edu/copyright.htm - - https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html diff --git a/src/licensedcode/data/licenses/mit-nagy.LICENSE b/src/licensedcode/data/licenses/mit-nagy.LICENSE index dc5d5957b6c..73bfd195fef 100644 --- a/src/licensedcode/data/licenses/mit-nagy.LICENSE +++ b/src/licensedcode/data/licenses/mit-nagy.LICENSE @@ -1,3 +1,15 @@ +--- +key: mit-nagy +short_name: MIT Nagy Variant +name: MIT Szabolcs Nagy Variant +category: Permissive +owner: Szabolcs Nagy +notes: this MIT-like variant is found in the musl library +spdx_license_key: LicenseRef-scancode-mit-nagy +text_urls: + - https://git.musl-libc.org/cgit/musl/commit/src/prng/random.c?id=1569f396bb76e9d54f6c4492ed6778e37b87bc70 +--- + Permission to use, copy, modify, and/or distribute this code for any purpose with or without fee is hereby granted. There is no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-nagy.yml b/src/licensedcode/data/licenses/mit-nagy.yml deleted file mode 100644 index 1482388b52c..00000000000 --- a/src/licensedcode/data/licenses/mit-nagy.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: mit-nagy -short_name: MIT Nagy Variant -name: MIT Szabolcs Nagy Variant -category: Permissive -owner: Szabolcs Nagy -notes: this MIT-like variant is found in the musl library -spdx_license_key: LicenseRef-scancode-mit-nagy -text_urls: - - https://git.musl-libc.org/cgit/musl/commit/src/prng/random.c?id=1569f396bb76e9d54f6c4492ed6778e37b87bc70 diff --git a/src/licensedcode/data/licenses/mit-no-advert-export-control.LICENSE b/src/licensedcode/data/licenses/mit-no-advert-export-control.LICENSE index 6c9917cb762..baa7b001545 100644 --- a/src/licensedcode/data/licenses/mit-no-advert-export-control.LICENSE +++ b/src/licensedcode/data/licenses/mit-no-advert-export-control.LICENSE @@ -1,3 +1,17 @@ +--- +key: mit-no-advert-export-control +short_name: MIT no advertising with Export Control +name: MIT no advertising with Export Control +category: Permissive +owner: Xerox Corporation +homepage_url: https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox +notes: | + Per Fedora, this license is very similar to MIT, except that it requires + that US Export Control laws be followed, which makes it GPL-Incompatible. +spdx_license_key: LicenseRef-scancode-mit-no-advert-export-control +minimum_coverage: 70 +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to obtain such a license before @@ -15,4 +29,4 @@ implied warranty. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-no-advert-export-control.yml b/src/licensedcode/data/licenses/mit-no-advert-export-control.yml deleted file mode 100644 index a6d3e27606c..00000000000 --- a/src/licensedcode/data/licenses/mit-no-advert-export-control.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mit-no-advert-export-control -short_name: MIT no advertising with Export Control -name: MIT no advertising with Export Control -category: Permissive -owner: Xerox Corporation -homepage_url: https://fedoraproject.org/wiki/Licensing:Xerox?rd=Licensing/Xerox -notes: | - Per Fedora, this license is very similar to MIT, except that it requires - that US Export Control laws be followed, which makes it GPL-Incompatible. -spdx_license_key: LicenseRef-scancode-mit-no-advert-export-control -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/mit-no-false-attribs.LICENSE b/src/licensedcode/data/licenses/mit-no-false-attribs.LICENSE index 7cd66d4283f..a1ca3ee5d3a 100644 --- a/src/licensedcode/data/licenses/mit-no-false-attribs.LICENSE +++ b/src/licensedcode/data/licenses/mit-no-false-attribs.LICENSE @@ -1,3 +1,17 @@ +--- +key: mit-no-false-attribs +short_name: MIT no false attribution License +name: MIT with no false attribution License +category: Permissive +owner: npm Registry +homepage_url: https://fedoraproject.org/wiki/Licensing/MITNFA +notes: | + Per Fedora, this license is based on the MIT license, but contains an + additional section covering the removal of attributions in certain + modification scenarios. It is Free and GPL-compatible. Use License MITNFA +spdx_license_key: MITNFA +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without diff --git a/src/licensedcode/data/licenses/mit-no-false-attribs.yml b/src/licensedcode/data/licenses/mit-no-false-attribs.yml deleted file mode 100644 index e6357f44ace..00000000000 --- a/src/licensedcode/data/licenses/mit-no-false-attribs.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mit-no-false-attribs -short_name: MIT no false attribution License -name: MIT with no false attribution License -category: Permissive -owner: npm Registry -homepage_url: https://fedoraproject.org/wiki/Licensing/MITNFA -notes: | - Per Fedora, this license is based on the MIT license, but contains an - additional section covering the removal of attributions in certain - modification scenarios. It is Free and GPL-compatible. Use License MITNFA -spdx_license_key: MITNFA diff --git a/src/licensedcode/data/licenses/mit-no-trademarks.LICENSE b/src/licensedcode/data/licenses/mit-no-trademarks.LICENSE index e8aedf6baa8..e7c0b08d4f3 100644 --- a/src/licensedcode/data/licenses/mit-no-trademarks.LICENSE +++ b/src/licensedcode/data/licenses/mit-no-trademarks.LICENSE @@ -1,3 +1,17 @@ +--- +key: mit-no-trademarks +short_name: MIT No Commercial Use of Trademarks +name: MIT No Commercial Use of Trademarks +category: Permissive +owner: MIT +homepage_url: http://web.mit.edu/ivlib/www/copyright.html +spdx_license_key: LicenseRef-scancode-mit-no-trademarks +ignorable_copyrights: + - Copyright 1995 by the Massachusetts Institute of Technology +ignorable_holders: + - the Massachusetts Institute of Technology +--- + MIT Copyright Notice Project Athena, Athena Dashboard, Athena MUSE, Kerberos, X Window System, @@ -30,4 +44,4 @@ RIGHTS. The name of the Massachusetts Institute of Technology or M.I.T. may NOT be used in advertising or publicity pertaining to distribution of the software. Title to copyright in this software and any associated documentation shall at all times -remain with M.I.T., and LICENSEE agrees to preserve same. +remain with M.I.T., and LICENSEE agrees to preserve same. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-no-trademarks.yml b/src/licensedcode/data/licenses/mit-no-trademarks.yml deleted file mode 100644 index 468b38789cb..00000000000 --- a/src/licensedcode/data/licenses/mit-no-trademarks.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mit-no-trademarks -short_name: MIT No Commercial Use of Trademarks -name: MIT No Commercial Use of Trademarks -category: Permissive -owner: MIT -homepage_url: http://web.mit.edu/ivlib/www/copyright.html -spdx_license_key: LicenseRef-scancode-mit-no-trademarks -ignorable_copyrights: - - Copyright 1995 by the Massachusetts Institute of Technology -ignorable_holders: - - the Massachusetts Institute of Technology diff --git a/src/licensedcode/data/licenses/mit-old-style-no-advert.LICENSE b/src/licensedcode/data/licenses/mit-old-style-no-advert.LICENSE index db8a84953e4..33c6a123595 100644 --- a/src/licensedcode/data/licenses/mit-old-style-no-advert.LICENSE +++ b/src/licensedcode/data/licenses/mit-old-style-no-advert.LICENSE @@ -1,3 +1,18 @@ +--- +key: mit-old-style-no-advert +short_name: MIT Old Style no advertising +name: MIT Old Style no advertising +category: Permissive +owner: MIT +homepage_url: http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29 +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NTP +osi_url: https://opensource.org/licenses/NTP +other_urls: + - http://www.opensource.org/licenses/NTP +minimum_coverage: 70 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/licenses/mit-old-style-no-advert.yml b/src/licensedcode/data/licenses/mit-old-style-no-advert.yml deleted file mode 100644 index 2f5a986ede4..00000000000 --- a/src/licensedcode/data/licenses/mit-old-style-no-advert.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: mit-old-style-no-advert -short_name: MIT Old Style no advertising -name: MIT Old Style no advertising -category: Permissive -owner: MIT -homepage_url: http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29 -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: NTP -osi_url: https://opensource.org/licenses/NTP -other_urls: - - http://www.opensource.org/licenses/NTP -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/mit-old-style-sparse.LICENSE b/src/licensedcode/data/licenses/mit-old-style-sparse.LICENSE index ae93a4689e5..6fbdb37cac5 100644 --- a/src/licensedcode/data/licenses/mit-old-style-sparse.LICENSE +++ b/src/licensedcode/data/licenses/mit-old-style-sparse.LICENSE @@ -1,3 +1,16 @@ +--- +key: mit-old-style-sparse +short_name: MIT Old Style Spare +name: MIT Old Style Spare +category: Permissive +owner: Kenneth S. Kundert +homepage_url: http://sparse.sourceforge.net +notes: Used in old Sparse versions and a few other places. This is very similar to the mit-old-style. +spdx_license_key: LicenseRef-scancode-mit-old-style-sparse +ignorable_authors: + - the University of California +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the copyright notices appear in all copies and @@ -5,4 +18,4 @@ supporting documentation and that the authors and the University of California are properly credited. The authors and the University of California make no representations as to the suitability of this software for any purpose. It is provided `as is', without express -or implied warranty. +or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-old-style-sparse.yml b/src/licensedcode/data/licenses/mit-old-style-sparse.yml deleted file mode 100644 index 056ff4964d2..00000000000 --- a/src/licensedcode/data/licenses/mit-old-style-sparse.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: mit-old-style-sparse -short_name: MIT Old Style Spare -name: MIT Old Style Spare -category: Permissive -owner: Kenneth S. Kundert -homepage_url: http://sparse.sourceforge.net -notes: Used in old Sparse versions and a few other places. This is very similar to the mit-old-style. -spdx_license_key: LicenseRef-scancode-mit-old-style-sparse -ignorable_authors: - - the University of California diff --git a/src/licensedcode/data/licenses/mit-old-style.LICENSE b/src/licensedcode/data/licenses/mit-old-style.LICENSE index 2c414eb7849..6b9fdbb6eaa 100644 --- a/src/licensedcode/data/licenses/mit-old-style.LICENSE +++ b/src/licensedcode/data/licenses/mit-old-style.LICENSE @@ -1,7 +1,19 @@ +--- +key: mit-old-style +short_name: MIT Old Style +name: MIT Old Style +category: Permissive +owner: MIT +homepage_url: http://fedoraproject.org/wiki/Licensing:MIT#Old_Style +spdx_license_key: LicenseRef-scancode-mit-old-style +text_urls: + - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express or -implied warranty. +implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-old-style.yml b/src/licensedcode/data/licenses/mit-old-style.yml deleted file mode 100644 index 5ec7f71ef5c..00000000000 --- a/src/licensedcode/data/licenses/mit-old-style.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: mit-old-style -short_name: MIT Old Style -name: MIT Old Style -category: Permissive -owner: MIT -homepage_url: http://fedoraproject.org/wiki/Licensing:MIT#Old_Style -spdx_license_key: LicenseRef-scancode-mit-old-style -text_urls: - - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style diff --git a/src/licensedcode/data/licenses/mit-readme.LICENSE b/src/licensedcode/data/licenses/mit-readme.LICENSE index f83f0b6e6f9..d2fad35ca14 100644 --- a/src/licensedcode/data/licenses/mit-readme.LICENSE +++ b/src/licensedcode/data/licenses/mit-readme.LICENSE @@ -1,3 +1,12 @@ +--- +key: mit-readme +short_name: MIT README License +name: MIT README License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-mit-readme +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and the associated README documentation file (the "Software"), to deal in the Software without restriction, including @@ -11,4 +20,4 @@ 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. +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-readme.yml b/src/licensedcode/data/licenses/mit-readme.yml deleted file mode 100644 index 91d02d92be3..00000000000 --- a/src/licensedcode/data/licenses/mit-readme.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: mit-readme -short_name: MIT README License -name: MIT README License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-mit-readme diff --git a/src/licensedcode/data/licenses/mit-specification-disclaimer.LICENSE b/src/licensedcode/data/licenses/mit-specification-disclaimer.LICENSE index 85358133187..3972149bbe2 100644 --- a/src/licensedcode/data/licenses/mit-specification-disclaimer.LICENSE +++ b/src/licensedcode/data/licenses/mit-specification-disclaimer.LICENSE @@ -1,3 +1,14 @@ +--- +key: mit-specification-disclaimer +short_name: MIT with Specification Disclaimer +name: MIT with Specification Disclaimer +category: Permissive +owner: Xerox PARC +spdx_license_key: LicenseRef-scancode-mit-specification-disclaimer +other_urls: + - http://archive.apache.org/dist/commons/jcs/source/jcs-1.3-src.tar.gz +--- + Use and copying of this software and preparation of derivative works based upon this software are permitted. Any distribution of this software or derivative works must comply with all applicable United States export control diff --git a/src/licensedcode/data/licenses/mit-specification-disclaimer.yml b/src/licensedcode/data/licenses/mit-specification-disclaimer.yml deleted file mode 100644 index d334ab88838..00000000000 --- a/src/licensedcode/data/licenses/mit-specification-disclaimer.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: mit-specification-disclaimer -short_name: MIT with Specification Disclaimer -name: MIT with Specification Disclaimer -category: Permissive -owner: Xerox PARC -spdx_license_key: LicenseRef-scancode-mit-specification-disclaimer -other_urls: - - http://archive.apache.org/dist/commons/jcs/source/jcs-1.3-src.tar.gz diff --git a/src/licensedcode/data/licenses/mit-synopsys.LICENSE b/src/licensedcode/data/licenses/mit-synopsys.LICENSE index 34dc942e0eb..3f9d7dbf7ab 100644 --- a/src/licensedcode/data/licenses/mit-synopsys.LICENSE +++ b/src/licensedcode/data/licenses/mit-synopsys.LICENSE @@ -1,3 +1,13 @@ +--- +key: mit-synopsys +short_name: MIT Synopsys License +name: MIT Synopsys License +category: Permissive +owner: Synopsys +spdx_license_key: LicenseRef-scancode-mit-synopsys +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software annotated with this license and the Software, to deal in the Software without restriction, including without limitation @@ -18,4 +28,4 @@ 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. +THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-synopsys.yml b/src/licensedcode/data/licenses/mit-synopsys.yml deleted file mode 100644 index 2c31e7fe8bd..00000000000 --- a/src/licensedcode/data/licenses/mit-synopsys.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: mit-synopsys -short_name: MIT Synopsys License -name: MIT Synopsys License -category: Permissive -owner: Synopsys -spdx_license_key: LicenseRef-scancode-mit-synopsys -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/mit-taylor-variant.LICENSE b/src/licensedcode/data/licenses/mit-taylor-variant.LICENSE index fcb585bf638..ddbae540563 100644 --- a/src/licensedcode/data/licenses/mit-taylor-variant.LICENSE +++ b/src/licensedcode/data/licenses/mit-taylor-variant.LICENSE @@ -1,3 +1,12 @@ +--- +key: mit-taylor-variant +short_name: MIT Taylor Variant +name: MIT Taylor Variant +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-mit-taylor-variant +--- + 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. diff --git a/src/licensedcode/data/licenses/mit-taylor-variant.yml b/src/licensedcode/data/licenses/mit-taylor-variant.yml deleted file mode 100644 index 4d88d3ea976..00000000000 --- a/src/licensedcode/data/licenses/mit-taylor-variant.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: mit-taylor-variant -short_name: MIT Taylor Variant -name: MIT Taylor Variant -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-mit-taylor-variant diff --git a/src/licensedcode/data/licenses/mit-veillard-variant.LICENSE b/src/licensedcode/data/licenses/mit-veillard-variant.LICENSE index 14a375e8b50..295e6ca77c8 100644 --- a/src/licensedcode/data/licenses/mit-veillard-variant.LICENSE +++ b/src/licensedcode/data/licenses/mit-veillard-variant.LICENSE @@ -1,3 +1,16 @@ +--- +key: mit-veillard-variant +short_name: MIT Veillard Variant +name: MIT Veillard Variant +category: Permissive +owner: Daniel Veillard +notes: this is similar to the mit-taylor-variant but uses a different warranty disclaimer. This + is found in the original versions of https://en.wikipedia.org/wiki/Libxml2 +spdx_license_key: LicenseRef-scancode-mit-veillard-variant +text_urls: + - https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c +--- + Permission to use, copy, modify, and 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. diff --git a/src/licensedcode/data/licenses/mit-veillard-variant.yml b/src/licensedcode/data/licenses/mit-veillard-variant.yml deleted file mode 100644 index 2b52e6d8b6f..00000000000 --- a/src/licensedcode/data/licenses/mit-veillard-variant.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: mit-veillard-variant -short_name: MIT Veillard Variant -name: MIT Veillard Variant -category: Permissive -owner: Daniel Veillard -notes: this is similar to the mit-taylor-variant but uses a different warranty disclaimer. This - is found in the original versions of https://en.wikipedia.org/wiki/Libxml2 -spdx_license_key: LicenseRef-scancode-mit-veillard-variant -text_urls: - - https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c diff --git a/src/licensedcode/data/licenses/mit-with-modification-obligations.LICENSE b/src/licensedcode/data/licenses/mit-with-modification-obligations.LICENSE index ef89b149255..b8ef6284b92 100644 --- a/src/licensedcode/data/licenses/mit-with-modification-obligations.LICENSE +++ b/src/licensedcode/data/licenses/mit-with-modification-obligations.LICENSE @@ -1,3 +1,15 @@ +--- +key: mit-with-modification-obligations +short_name: MIT With Modification Obligations +name: MIT With Modification Obligations +category: Permissive +owner: MIT +spdx_license_key: LicenseRef-scancode-mit-modification-obligations +other_spdx_license_keys: + - LicenseRef-scancode-mit-with-modification-obligations +minimum_coverage: 80 +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating diff --git a/src/licensedcode/data/licenses/mit-with-modification-obligations.yml b/src/licensedcode/data/licenses/mit-with-modification-obligations.yml deleted file mode 100644 index 841778103ab..00000000000 --- a/src/licensedcode/data/licenses/mit-with-modification-obligations.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: mit-with-modification-obligations -short_name: MIT With Modification Obligations -name: MIT With Modification Obligations -category: Permissive -owner: MIT -spdx_license_key: LicenseRef-scancode-mit-modification-obligations -other_spdx_license_keys: - - LicenseRef-scancode-mit-with-modification-obligations -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/mit-xfig.LICENSE b/src/licensedcode/data/licenses/mit-xfig.LICENSE index d17ba88349f..db3a838e6fc 100644 --- a/src/licensedcode/data/licenses/mit-xfig.LICENSE +++ b/src/licensedcode/data/licenses/mit-xfig.LICENSE @@ -1,3 +1,21 @@ +--- +key: mit-xfig +short_name: MIT Xfig Variant +name: MIT Xfig Variant +category: Permissive +owner: Xfig Project +homepage_url: http://www.xfig.org +notes: | + From http://web.archive.org/web/2000212193456/http://www.xfig.org/xfigdist/ + xfig.README.3.2.4 The xfig copyright has changed slightly since the + previous version. The previous notice allowed the *selling* of xfig or any + code in xfig. This is not allowed now, unless xfig is simply included in a + collection of programs (e.g. on a CD) that you are selling. +spdx_license_key: LicenseRef-scancode-mit-xfig +other_urls: + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Xfig +--- + Any party obtaining a copy of these files is granted, free of charge, a full and unrestricted irrevocable, world-wide, paid up, royalty-free, nonexclusive right and license to deal in this software and @@ -5,4 +23,4 @@ documentation files (the "Software"), including without limitation the rights to use, copy, modify, merge, publish and/or distribute copies of the Software, and to permit persons who receive copies from any such party to do so, with the only requirement being that this copyright -notice remain intact. +notice remain intact. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mit-xfig.yml b/src/licensedcode/data/licenses/mit-xfig.yml deleted file mode 100644 index 407c87f7d55..00000000000 --- a/src/licensedcode/data/licenses/mit-xfig.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: mit-xfig -short_name: MIT Xfig Variant -name: MIT Xfig Variant -category: Permissive -owner: Xfig Project -homepage_url: http://www.xfig.org -notes: | - From http://web.archive.org/web/2000212193456/http://www.xfig.org/xfigdist/ - xfig.README.3.2.4 The xfig copyright has changed slightly since the - previous version. The previous notice allowed the *selling* of xfig or any - code in xfig. This is not allowed now, unless xfig is simply included in a - collection of programs (e.g. on a CD) that you are selling. -spdx_license_key: LicenseRef-scancode-mit-xfig -other_urls: - - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Xfig diff --git a/src/licensedcode/data/licenses/mit.LICENSE b/src/licensedcode/data/licenses/mit.LICENSE index 2d4a989856a..fa81a71177d 100644 --- a/src/licensedcode/data/licenses/mit.LICENSE +++ b/src/licensedcode/data/licenses/mit.LICENSE @@ -1,3 +1,22 @@ +--- +key: mit +short_name: MIT License +name: MIT License +category: Permissive +owner: MIT +homepage_url: http://opensource.org/licenses/mit-license.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MIT +text_urls: + - http://opensource.org/licenses/mit-license.php +osi_url: http://www.opensource.org/licenses/MIT +faq_url: https://ieeexplore.ieee.org/document/9263265 +other_urls: + - https://opensource.com/article/18/3/patent-grant-mit-license + - https://opensource.com/article/19/4/history-mit-license + - https://opensource.org/licenses/MIT +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/licenses/mit.yml b/src/licensedcode/data/licenses/mit.yml deleted file mode 100644 index 996a1e5f9c9..00000000000 --- a/src/licensedcode/data/licenses/mit.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: mit -short_name: MIT License -name: MIT License -category: Permissive -owner: MIT -homepage_url: http://opensource.org/licenses/mit-license.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: MIT -text_urls: - - http://opensource.org/licenses/mit-license.php -osi_url: http://www.opensource.org/licenses/MIT -faq_url: https://ieeexplore.ieee.org/document/9263265 -other_urls: - - https://opensource.com/article/18/3/patent-grant-mit-license - - https://opensource.com/article/19/4/history-mit-license - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/licenses/mod-dav-1.0.LICENSE b/src/licensedcode/data/licenses/mod-dav-1.0.LICENSE index 2e776354176..046ca847659 100644 --- a/src/licensedcode/data/licenses/mod-dav-1.0.LICENSE +++ b/src/licensedcode/data/licenses/mod-dav-1.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: mod-dav-1.0 +short_name: mod_dav License 1.0 +name: mod_dav License Agreement v1 +category: Permissive +owner: Gregg Stein +homepage_url: http://www.webdav.org/mod_dav/ +spdx_license_key: LicenseRef-scancode-mod-dav-1.0 +text_urls: + - http://www.webdav.org/mod_dav/ +ignorable_copyrights: + - Copyright (c) 1998-2001 Greg Stein +ignorable_holders: + - Greg Stein +ignorable_authors: + - Greg Stein +ignorable_urls: + - http://www.webdav.org/mod_dav +ignorable_emails: + - gstein@lyra.org +--- + mod_dav License Agreement v1 The following text constitutes the license agreement for the mod_dav software. diff --git a/src/licensedcode/data/licenses/mod-dav-1.0.yml b/src/licensedcode/data/licenses/mod-dav-1.0.yml deleted file mode 100644 index 3a00eac074b..00000000000 --- a/src/licensedcode/data/licenses/mod-dav-1.0.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: mod-dav-1.0 -short_name: mod_dav License 1.0 -name: mod_dav License Agreement v1 -category: Permissive -owner: Gregg Stein -homepage_url: http://www.webdav.org/mod_dav/ -spdx_license_key: LicenseRef-scancode-mod-dav-1.0 -text_urls: - - http://www.webdav.org/mod_dav/ -ignorable_copyrights: - - Copyright (c) 1998-2001 Greg Stein -ignorable_holders: - - Greg Stein -ignorable_authors: - - Greg Stein -ignorable_urls: - - http://www.webdav.org/mod_dav -ignorable_emails: - - gstein@lyra.org diff --git a/src/licensedcode/data/licenses/monetdb-1.1.LICENSE b/src/licensedcode/data/licenses/monetdb-1.1.LICENSE index 6a9ee15e21c..746ab013d41 100644 --- a/src/licensedcode/data/licenses/monetdb-1.1.LICENSE +++ b/src/licensedcode/data/licenses/monetdb-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: monetdb-1.1 +short_name: MonetDB 1.1 +name: MonetDB Public License Version 1.1 +category: Copyleft Limited +owner: MonetDB +homepage_url: http://www.monetdb.org/Legal/MonetDBLicense +spdx_license_key: LicenseRef-scancode-monetdb-1.1 +ignorable_urls: + - http://www.monetdb.org/Legal/MonetDBLicense +--- + MonetDB Public License Version 1.1 This License is a derivative of the Mozilla Public License (MPL) Version 1.1, where the difference is that all references to "Mozilla" and "Netscape" have been changed to "MonetDB", and that the License has been made subject to the laws of The Netherlands. diff --git a/src/licensedcode/data/licenses/monetdb-1.1.yml b/src/licensedcode/data/licenses/monetdb-1.1.yml deleted file mode 100644 index 06f84b87c86..00000000000 --- a/src/licensedcode/data/licenses/monetdb-1.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: monetdb-1.1 -short_name: MonetDB 1.1 -name: MonetDB Public License Version 1.1 -category: Copyleft Limited -owner: MonetDB -homepage_url: http://www.monetdb.org/Legal/MonetDBLicense -spdx_license_key: LicenseRef-scancode-monetdb-1.1 -ignorable_urls: - - http://www.monetdb.org/Legal/MonetDBLicense diff --git a/src/licensedcode/data/licenses/mongodb-sspl-1.0.LICENSE b/src/licensedcode/data/licenses/mongodb-sspl-1.0.LICENSE index b4687ca1073..58632f73557 100644 --- a/src/licensedcode/data/licenses/mongodb-sspl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/mongodb-sspl-1.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: mongodb-sspl-1.0 +short_name: SSPL 1.0 +name: Server Side Public License (SSPL) 1.0 +category: Source-available +owner: MongoDB +homepage_url: https://www.mongodb.com/licensing/server-side-public-license +spdx_license_key: SSPL-1.0 +faq_url: https://www.mongodb.com/licensing/server-side-public-license/faq +other_urls: + - https://techcrunch.com/2018/10/16/mongodb-switches-up-its-open-source-license/ + - https://webassets.mongodb.com/_com_assets/legal/SSPL-compared-to-AGPL.pdf +standard_notice: | + This program is free software: you can redistribute it and/or modify + it under the terms of the Server Side Public License, version 1, + as published by MongoDB, Inc. + + 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 + Server Side Public License for more details. + + You should have received a copy of the Server Side Public License + along with this program. If not, see + . +ignorable_copyrights: + - Copyright (c) 2018 MongoDB, Inc. +ignorable_holders: + - MongoDB, Inc. +--- + Server Side Public License VERSION 1, OCTOBER 16, 2018 @@ -554,4 +585,4 @@ warranty or assumption of liability accompanies a copy of the Program in return for a fee. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mongodb-sspl-1.0.yml b/src/licensedcode/data/licenses/mongodb-sspl-1.0.yml deleted file mode 100644 index e158d7099a3..00000000000 --- a/src/licensedcode/data/licenses/mongodb-sspl-1.0.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: mongodb-sspl-1.0 -short_name: SSPL 1.0 -name: Server Side Public License (SSPL) 1.0 -category: Source-available -owner: MongoDB -homepage_url: https://www.mongodb.com/licensing/server-side-public-license -spdx_license_key: SSPL-1.0 -faq_url: https://www.mongodb.com/licensing/server-side-public-license/faq -other_urls: - - https://techcrunch.com/2018/10/16/mongodb-switches-up-its-open-source-license/ - - https://webassets.mongodb.com/_com_assets/legal/SSPL-compared-to-AGPL.pdf -standard_notice: | - This program is free software: you can redistribute it and/or modify - it under the terms of the Server Side Public License, version 1, - as published by MongoDB, Inc. - - 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 - Server Side Public License for more details. - - You should have received a copy of the Server Side Public License - along with this program. If not, see - . -ignorable_copyrights: - - Copyright (c) 2018 MongoDB, Inc. -ignorable_holders: - - MongoDB, Inc. diff --git a/src/licensedcode/data/licenses/motorola.LICENSE b/src/licensedcode/data/licenses/motorola.LICENSE index 220d5dd8e86..5ab9a847129 100644 --- a/src/licensedcode/data/licenses/motorola.LICENSE +++ b/src/licensedcode/data/licenses/motorola.LICENSE @@ -1,3 +1,12 @@ +--- +key: motorola +short_name: Motorola Microprocessor License +name: Motorola Microprocessor & Memory Technology Group License +category: Permissive +owner: Motorola +spdx_license_key: LicenseRef-scancode-motorola +--- + THE SOFTWARE is provided on an "AS IS" basis and without warranty. To the maximum extent permitted by applicable law, MOTOROLA DISCLAIMS ALL WARRANTIES WHETHER EXPRESS OR IMPLIED, diff --git a/src/licensedcode/data/licenses/motorola.yml b/src/licensedcode/data/licenses/motorola.yml deleted file mode 100644 index 01bf6e1196d..00000000000 --- a/src/licensedcode/data/licenses/motorola.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: motorola -short_name: Motorola Microprocessor License -name: Motorola Microprocessor & Memory Technology Group License -category: Permissive -owner: Motorola -spdx_license_key: LicenseRef-scancode-motorola diff --git a/src/licensedcode/data/licenses/motosoto-0.9.1.LICENSE b/src/licensedcode/data/licenses/motosoto-0.9.1.LICENSE index 17a7756268c..bbe108bad1f 100644 --- a/src/licensedcode/data/licenses/motosoto-0.9.1.LICENSE +++ b/src/licensedcode/data/licenses/motosoto-0.9.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: motosoto-0.9.1 +short_name: Motosoto 0.9.1 +name: Motosoto Open Source License v0.9.1 +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://opensource.org/licenses/motosoto.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: Motosoto +text_urls: + - http://opensource.org/licenses/motosoto.php +osi_url: http://opensource.org/licenses/motosoto.php +other_urls: + - http://www.opensource.org/licenses/Motosoto + - https://opensource.org/licenses/Motosoto +--- + MOTOSOTO OPEN SOURCE LICENSE - Version 0.9.1 This Motosoto Open Source License (the "License") applies to "Community Portal Server" and related software products as well as any updatesor maintenance releases of that software ("Motosoto Products") that are distributed by Motosoto.Com B.V. ("Licensor"). Any Motosoto Product licensed pursuant to this License is a "Licensed Product." Licensed Product, in its entirety, is protected by Dutch copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product and has been submitted to the Open Software Initiative (OSI) for approval. diff --git a/src/licensedcode/data/licenses/motosoto-0.9.1.yml b/src/licensedcode/data/licenses/motosoto-0.9.1.yml deleted file mode 100644 index 9720e951096..00000000000 --- a/src/licensedcode/data/licenses/motosoto-0.9.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: motosoto-0.9.1 -short_name: Motosoto 0.9.1 -name: Motosoto Open Source License v0.9.1 -category: Copyleft -owner: OSI - Open Source Initiative -homepage_url: http://opensource.org/licenses/motosoto.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: Motosoto -text_urls: - - http://opensource.org/licenses/motosoto.php -osi_url: http://opensource.org/licenses/motosoto.php -other_urls: - - http://www.opensource.org/licenses/Motosoto - - https://opensource.org/licenses/Motosoto diff --git a/src/licensedcode/data/licenses/moxa-linux-firmware.LICENSE b/src/licensedcode/data/licenses/moxa-linux-firmware.LICENSE index f54e200d24e..8dc0bfaab74 100644 --- a/src/licensedcode/data/licenses/moxa-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/moxa-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: moxa-linux-firmware +short_name: Moxa Linux Firmware License +name: Moxa Linux Firmware License +category: Proprietary Free +owner: Moxa +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.moxa +spdx_license_key: LicenseRef-scancode-moxa-linux-firmware +--- + The software accompanying this license statement (the “Software”) is the property of Moxa Inc. (the “Moxa”), and is protected by United States and International Copyright Laws and International diff --git a/src/licensedcode/data/licenses/moxa-linux-firmware.yml b/src/licensedcode/data/licenses/moxa-linux-firmware.yml deleted file mode 100644 index edd00f4a28c..00000000000 --- a/src/licensedcode/data/licenses/moxa-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: moxa-linux-firmware -short_name: Moxa Linux Firmware License -name: Moxa Linux Firmware License -category: Proprietary Free -owner: Moxa -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.moxa -spdx_license_key: LicenseRef-scancode-moxa-linux-firmware diff --git a/src/licensedcode/data/licenses/mozilla-gc.LICENSE b/src/licensedcode/data/licenses/mozilla-gc.LICENSE index 09e4c71b1d4..4ed7407a4f1 100644 --- a/src/licensedcode/data/licenses/mozilla-gc.LICENSE +++ b/src/licensedcode/data/licenses/mozilla-gc.LICENSE @@ -1,3 +1,17 @@ +--- +key: mozilla-gc +short_name: Mozilla GC License +name: Mozilla GC License +category: Permissive +owner: Mozilla +notes: stlport-4.5 and mozilla-gc are mostly the same +spdx_license_key: LicenseRef-scancode-mozilla-gc +text_urls: + - http://www.hboehm.info/gc/license.txt +other_urls: + - http://www.hboehm.info/gc/ +--- + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK. diff --git a/src/licensedcode/data/licenses/mozilla-gc.yml b/src/licensedcode/data/licenses/mozilla-gc.yml deleted file mode 100644 index 071be3b02e9..00000000000 --- a/src/licensedcode/data/licenses/mozilla-gc.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mozilla-gc -short_name: Mozilla GC License -name: Mozilla GC License -category: Permissive -owner: Mozilla -notes: stlport-4.5 and mozilla-gc are mostly the same -spdx_license_key: LicenseRef-scancode-mozilla-gc -text_urls: - - http://www.hboehm.info/gc/license.txt -other_urls: - - http://www.hboehm.info/gc/ diff --git a/src/licensedcode/data/licenses/mozilla-ospl-1.0.LICENSE b/src/licensedcode/data/licenses/mozilla-ospl-1.0.LICENSE index 7d9e0184945..cf8d58a5825 100644 --- a/src/licensedcode/data/licenses/mozilla-ospl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/mozilla-ospl-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: mozilla-ospl-1.0 +short_name: Mozilla Open Software Patent License 1.0 +name: Mozilla Open Software Patent License Agreement v1 +category: Patent License +owner: Mozilla +homepage_url: https://www.mozilla.org/en-US/about/patents/license/ +spdx_license_key: LicenseRef-scancode-mozilla-ospl-1.0 +faq_url: https://www.mozilla.org/en-US/about/patents/ +other_urls: + - https://www.mozilla.org/en-US/about/patents/guide/ +--- + Mozilla Open Software Patent License Agreement v1 This Open Software Patent License Agreement ("Agreement") is made between you and the Licensor identified below. For purposes of this Agreement, you means you and your Affiliates, and Licensor means the Mozilla Corporation, Mozilla Foundation and any of their Affiliates. @@ -32,4 +45,4 @@ This Open Software Patent License Agreement ("Agreement") is made between you an If you would like to show your intention to be bound by this Agreement, you may wish to make the following statement: "ZXQ, Inc. hereby states that it intends to be bound by the Mozilla Open Software Patent License Agreement for Mozilla, version , as of [date]." -If you would like to use the text of this agreement for your own patent licensing, you may feel free to do so. However, to avoid confusion please remove all references to "Mozilla" from your version of the agreement. You may wish to say that your agreement is "based on the Mozilla Open Software Patent License Agreement," for informational purposes, but you are not required to do so. +If you would like to use the text of this agreement for your own patent licensing, you may feel free to do so. However, to avoid confusion please remove all references to "Mozilla" from your version of the agreement. You may wish to say that your agreement is "based on the Mozilla Open Software Patent License Agreement," for informational purposes, but you are not required to do so. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mozilla-ospl-1.0.yml b/src/licensedcode/data/licenses/mozilla-ospl-1.0.yml deleted file mode 100644 index 824e5ba5ed5..00000000000 --- a/src/licensedcode/data/licenses/mozilla-ospl-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: mozilla-ospl-1.0 -short_name: Mozilla Open Software Patent License 1.0 -name: Mozilla Open Software Patent License Agreement v1 -category: Patent License -owner: Mozilla -homepage_url: https://www.mozilla.org/en-US/about/patents/license/ -spdx_license_key: LicenseRef-scancode-mozilla-ospl-1.0 -faq_url: https://www.mozilla.org/en-US/about/patents/ -other_urls: - - https://www.mozilla.org/en-US/about/patents/guide/ diff --git a/src/licensedcode/data/licenses/mpeg-7.LICENSE b/src/licensedcode/data/licenses/mpeg-7.LICENSE index eca717a7604..4abbac46c72 100644 --- a/src/licensedcode/data/licenses/mpeg-7.LICENSE +++ b/src/licensedcode/data/licenses/mpeg-7.LICENSE @@ -1,3 +1,17 @@ +--- +key: mpeg-7 +short_name: MPEG-7 License +name: MPEG-7 License +category: Proprietary Free +owner: MPEG7FexLib +homepage_url: https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/ColorLayoutExtraction.cpp +spdx_license_key: LicenseRef-scancode-mpeg-7 +text_urls: + - https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/EdgeHistExtraction.cpp +ignorable_copyrights: + - Copyright (c) 1998-1999 +--- + This software module was originally developed by (contributing organizations names) @@ -26,4 +40,4 @@ Copyright (c) 1998-1999. modified by authors to handle small pictures on Jan. 06, 2000. modified by authors for compatibility with Visual C++ Compiler Jan.20, 2000 -This notice must be included in all copies or derivative works. +This notice must be included in all copies or derivative works. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mpeg-7.yml b/src/licensedcode/data/licenses/mpeg-7.yml deleted file mode 100644 index db270a2acab..00000000000 --- a/src/licensedcode/data/licenses/mpeg-7.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mpeg-7 -short_name: MPEG-7 License -name: MPEG-7 License -category: Proprietary Free -owner: MPEG7FexLib -homepage_url: https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/ColorLayoutExtraction.cpp -spdx_license_key: LicenseRef-scancode-mpeg-7 -text_urls: - - https://github.com/cdmh/MPEG7FexLib/blob/master/Extraction/EdgeHistExtraction.cpp -ignorable_copyrights: - - Copyright (c) 1998-1999 diff --git a/src/licensedcode/data/licenses/mpeg-iso.LICENSE b/src/licensedcode/data/licenses/mpeg-iso.LICENSE index 12528d6d501..2b550e1aa4f 100644 --- a/src/licensedcode/data/licenses/mpeg-iso.LICENSE +++ b/src/licensedcode/data/licenses/mpeg-iso.LICENSE @@ -1,3 +1,18 @@ +--- +key: mpeg-iso +short_name: MPEG-2 NBC MPEG-4 Audio ISO +name: MPEG-2 NBC MPEG-4 Audio ISO License +category: Permissive +owner: ISO - International Organization for Standardization +spdx_license_key: LicenseRef-scancode-mpeg-iso +text_urls: + - http://faac.cvs.sourceforge.net/viewvc/faac/faad/libfaad/config.c +ignorable_copyrights: + - Copyright (c) 1996 +ignorable_authors: + - AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS +--- + /************************* MPEG-2 NBC Audio Decoder ************************** * * "This software module was originally developed by diff --git a/src/licensedcode/data/licenses/mpeg-iso.yml b/src/licensedcode/data/licenses/mpeg-iso.yml deleted file mode 100644 index 404d9fcbbad..00000000000 --- a/src/licensedcode/data/licenses/mpeg-iso.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: mpeg-iso -short_name: MPEG-2 NBC MPEG-4 Audio ISO -name: MPEG-2 NBC MPEG-4 Audio ISO License -category: Permissive -owner: ISO - International Organization for Standardization -spdx_license_key: LicenseRef-scancode-mpeg-iso -text_urls: - - http://faac.cvs.sourceforge.net/viewvc/faac/faad/libfaad/config.c -ignorable_copyrights: - - Copyright (c) 1996 -ignorable_authors: - - AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS diff --git a/src/licensedcode/data/licenses/mpeg-ssg.LICENSE b/src/licensedcode/data/licenses/mpeg-ssg.LICENSE index c92d0f3947e..5ef9c14b048 100644 --- a/src/licensedcode/data/licenses/mpeg-ssg.LICENSE +++ b/src/licensedcode/data/licenses/mpeg-ssg.LICENSE @@ -1,3 +1,13 @@ +--- +key: mpeg-ssg +short_name: MPEG SSG License +name: MPEG SSG License +category: Permissive +owner: MSSG - MPEG Software Simulation Group +homepage_url: http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html +spdx_license_key: LicenseRef-scancode-mpeg-ssg +--- + Disclaimer of Warranty These software programs are available to the user without any license fee or diff --git a/src/licensedcode/data/licenses/mpeg-ssg.yml b/src/licensedcode/data/licenses/mpeg-ssg.yml deleted file mode 100644 index 5ac17df313b..00000000000 --- a/src/licensedcode/data/licenses/mpeg-ssg.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: mpeg-ssg -short_name: MPEG SSG License -name: MPEG SSG License -category: Permissive -owner: MSSG - MPEG Software Simulation Group -homepage_url: http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html -spdx_license_key: LicenseRef-scancode-mpeg-ssg diff --git a/src/licensedcode/data/licenses/mpi-permissive.LICENSE b/src/licensedcode/data/licenses/mpi-permissive.LICENSE index 3a353c4196f..e96ebf272d9 100644 --- a/src/licensedcode/data/licenses/mpi-permissive.LICENSE +++ b/src/licensedcode/data/licenses/mpi-permissive.LICENSE @@ -1,3 +1,14 @@ +--- +key: mpi-permissive +short_name: mpi Permissive License +name: mpi Permissive License +category: Permissive +owner: Etnus +spdx_license_key: mpi-permissive +other_urls: + - https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19 +--- + Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others. @@ -7,4 +18,4 @@ Neither Etnus, nor any of their employees, makes any warranty express or implied, or assumes any legal liability or responsibility for the accuracy, completeness, or usefulness of any information, apparatus, product, or process disclosed, or -represents that its use would not infringe privately owned rights. +represents that its use would not infringe privately owned rights. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mpi-permissive.yml b/src/licensedcode/data/licenses/mpi-permissive.yml deleted file mode 100644 index 8c6bcd5ecbf..00000000000 --- a/src/licensedcode/data/licenses/mpi-permissive.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: mpi-permissive -short_name: mpi Permissive License -name: mpi Permissive License -category: Permissive -owner: Etnus -spdx_license_key: mpi-permissive -other_urls: - - https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl=19#L19 diff --git a/src/licensedcode/data/licenses/mpich.LICENSE b/src/licensedcode/data/licenses/mpich.LICENSE index 0e47dbd0a99..a91819c12d7 100644 --- a/src/licensedcode/data/licenses/mpich.LICENSE +++ b/src/licensedcode/data/licenses/mpich.LICENSE @@ -1,3 +1,20 @@ +--- +key: mpich +short_name: MPICH License +name: MPICH License +category: Permissive +owner: University of Chicago +homepage_url: https://svn.mcs.anl.gov/repos/mpi/mpich2/trunk/COPYRIGHT +notes: | + Per Fedora, this is missing the anti-publicity-use clause, and doesn't + mention sublicensing, but otherwise, it is functionally identical to MIT. +spdx_license_key: mpich2 +text_urls: + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#mpich2_variant +other_urls: + - https://fedoraproject.org/wiki/Licensing/MIT +--- + COPYRIGHT The following is a notice of limited availability of the code, and disclaimer diff --git a/src/licensedcode/data/licenses/mpich.yml b/src/licensedcode/data/licenses/mpich.yml deleted file mode 100644 index 774fdb65b52..00000000000 --- a/src/licensedcode/data/licenses/mpich.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: mpich -short_name: MPICH License -name: MPICH License -category: Permissive -owner: University of Chicago -homepage_url: https://svn.mcs.anl.gov/repos/mpi/mpich2/trunk/COPYRIGHT -notes: | - Per Fedora, this is missing the anti-publicity-use clause, and doesn't - mention sublicensing, but otherwise, it is functionally identical to MIT. -spdx_license_key: mpich2 -text_urls: - - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#mpich2_variant -other_urls: - - https://fedoraproject.org/wiki/Licensing/MIT diff --git a/src/licensedcode/data/licenses/mpl-1.0.LICENSE b/src/licensedcode/data/licenses/mpl-1.0.LICENSE index 55c157e28fe..1c8af2aa0a6 100644 --- a/src/licensedcode/data/licenses/mpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/mpl-1.0.LICENSE @@ -1,3 +1,31 @@ +--- +key: mpl-1.0 +short_name: MPL 1.0 +name: Mozilla Public License 1.0 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/MPL-1.0.html +notes: | + Per SPDX.org, this license was OSI certified. This license have been + superseded by v1.1 +spdx_license_key: MPL-1.0 +osi_license_key: MPL-1.0 +text_urls: + - http://www.mozilla.com/MPL/1.0/index.html + - http://www.mozilla.org/MPL/1.0/ + - http://www.mozilla.org/MPL/1.0/index.html + - http://www.mozilla.org/MPL/1.0/index.txt + - http://www.mozilla.org/MPL/MPL-1.0.html + - http://www.mozilla.org/MPL/MPL-1.0.txt +osi_url: http://opensource.org/licenses/mozilla1.0.php +faq_url: http://www.mozilla.org/MPL/mpl-faq.html +other_urls: + - http://opensource.org/licenses/MPL-1.0 + - https://opensource.org/licenses/MPL-1.0 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.0 diff --git a/src/licensedcode/data/licenses/mpl-1.0.yml b/src/licensedcode/data/licenses/mpl-1.0.yml deleted file mode 100644 index 1e8600aa68a..00000000000 --- a/src/licensedcode/data/licenses/mpl-1.0.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: mpl-1.0 -short_name: MPL 1.0 -name: Mozilla Public License 1.0 -category: Copyleft Limited -owner: Mozilla -homepage_url: http://www.mozilla.org/MPL/MPL-1.0.html -notes: | - Per SPDX.org, this license was OSI certified. This license have been - superseded by v1.1 -spdx_license_key: MPL-1.0 -osi_license_key: MPL-1.0 -text_urls: - - http://www.mozilla.com/MPL/1.0/index.html - - http://www.mozilla.org/MPL/1.0/ - - http://www.mozilla.org/MPL/1.0/index.html - - http://www.mozilla.org/MPL/1.0/index.txt - - http://www.mozilla.org/MPL/MPL-1.0.html - - http://www.mozilla.org/MPL/MPL-1.0.txt -osi_url: http://opensource.org/licenses/mozilla1.0.php -faq_url: http://www.mozilla.org/MPL/mpl-faq.html -other_urls: - - http://opensource.org/licenses/MPL-1.0 - - https://opensource.org/licenses/MPL-1.0 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/licenses/mpl-1.1.LICENSE b/src/licensedcode/data/licenses/mpl-1.1.LICENSE index b5697673ff7..a8ea82e2771 100644 --- a/src/licensedcode/data/licenses/mpl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/mpl-1.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: mpl-1.1 +short_name: MPL 1.1 +name: Mozilla Public License 1.1 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/MPL-1.1.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MPL-1.1 +osi_license_key: MPL-1.1 +text_urls: + - http://www.mozilla.com/MPL/1.1/index.html + - http://www.mozilla.org/MPL/1.1/ + - http://www.mozilla.org/MPL/1.1/index.html + - http://www.mozilla.org/MPL/1.1/index.txt + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.mozilla.org/MPL/MPL-1.1.txt +osi_url: http://opensource.org/licenses/mozilla1.1.php +faq_url: http://www.mozilla.org/MPL/mpl-faq.html +other_urls: + - http://www.opensource.org/licenses/MPL-1.1 + - https://opensource.org/licenses/MPL-1.1 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.1 diff --git a/src/licensedcode/data/licenses/mpl-1.1.yml b/src/licensedcode/data/licenses/mpl-1.1.yml deleted file mode 100644 index bf93a1a2799..00000000000 --- a/src/licensedcode/data/licenses/mpl-1.1.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: mpl-1.1 -short_name: MPL 1.1 -name: Mozilla Public License 1.1 -category: Copyleft Limited -owner: Mozilla -homepage_url: http://www.mozilla.org/MPL/MPL-1.1.html -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: MPL-1.1 -osi_license_key: MPL-1.1 -text_urls: - - http://www.mozilla.com/MPL/1.1/index.html - - http://www.mozilla.org/MPL/1.1/ - - http://www.mozilla.org/MPL/1.1/index.html - - http://www.mozilla.org/MPL/1.1/index.txt - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.mozilla.org/MPL/MPL-1.1.txt -osi_url: http://opensource.org/licenses/mozilla1.1.php -faq_url: http://www.mozilla.org/MPL/mpl-faq.html -other_urls: - - http://www.opensource.org/licenses/MPL-1.1 - - https://opensource.org/licenses/MPL-1.1 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/licenses/mpl-2.0-no-copyleft-exception.LICENSE b/src/licensedcode/data/licenses/mpl-2.0-no-copyleft-exception.LICENSE index 013c6ab4458..fac8a59278e 100644 --- a/src/licensedcode/data/licenses/mpl-2.0-no-copyleft-exception.LICENSE +++ b/src/licensedcode/data/licenses/mpl-2.0-no-copyleft-exception.LICENSE @@ -1,2 +1,21 @@ +--- +key: mpl-2.0-no-copyleft-exception +short_name: MPL 2.0 with no copyleft exception +name: Mozilla Public License 2.0 (no copyleft exception) +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/2.0/ +notes: | + Per SPDX.org, this license was released in January 2012. This license list + entry is for use when the MPL's Exhibit B, which removes the Sec 3.3 + copyleft exception. +spdx_license_key: MPL-2.0-no-copyleft-exception +osi_url: http://opensource.org/licenses/MPL-2.0 +other_urls: + - https://opensource.org/licenses/MPL-2.0 + - https://www.mozilla.org/MPL/2.0/ +minimum_coverage: 99 +--- + This Source Code Form is "Incompatible With Secondary Licenses", as -defined by the Mozilla Public License, v. 2.0. +defined by the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mpl-2.0-no-copyleft-exception.yml b/src/licensedcode/data/licenses/mpl-2.0-no-copyleft-exception.yml deleted file mode 100644 index 7ce0acc8ec4..00000000000 --- a/src/licensedcode/data/licenses/mpl-2.0-no-copyleft-exception.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: mpl-2.0-no-copyleft-exception -short_name: MPL 2.0 with no copyleft exception -name: Mozilla Public License 2.0 (no copyleft exception) -category: Copyleft Limited -owner: Mozilla -homepage_url: http://www.mozilla.org/MPL/2.0/ -notes: | - Per SPDX.org, this license was released in January 2012. This license list - entry is for use when the MPL's Exhibit B, which removes the Sec 3.3 - copyleft exception. -spdx_license_key: MPL-2.0-no-copyleft-exception -osi_url: http://opensource.org/licenses/MPL-2.0 -other_urls: - - https://opensource.org/licenses/MPL-2.0 - - https://www.mozilla.org/MPL/2.0/ -minimum_coverage: 99 diff --git a/src/licensedcode/data/licenses/mpl-2.0.LICENSE b/src/licensedcode/data/licenses/mpl-2.0.LICENSE index f4bbcd200ad..9c009acd092 100644 --- a/src/licensedcode/data/licenses/mpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/mpl-2.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: mpl-2.0 +short_name: MPL 2.0 +name: Mozilla Public License 2.0 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/ +notes: | + Per SPDX.org, this license was released in January 2012. This license list + entry is for use when the standard MPL 2.0 is used, as indicated by the + standard header (Exhibit A but no Exhibit B). +spdx_license_key: MPL-2.0 +osi_license_key: MPL-2.0 +text_urls: + - http://www.mozilla.com/MPL/2.0/ + - http://www.mozilla.org/MPL/2.0/ + - http://www.mozilla.org/MPL/2.0/index.html + - http://www.mozilla.org/MPL/2.0/index.txt +osi_url: http://opensource.org/licenses/MPL-2.0 +faq_url: http://www.mozilla.org/MPL/2.0/FAQ.html +other_urls: + - https://opensource.org/licenses/MPL-2.0 + - https://www.mozilla.org/MPL/2.0/ +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + Mozilla Public License Version 2.0 ================================== diff --git a/src/licensedcode/data/licenses/mpl-2.0.yml b/src/licensedcode/data/licenses/mpl-2.0.yml deleted file mode 100644 index 5959b20019b..00000000000 --- a/src/licensedcode/data/licenses/mpl-2.0.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: mpl-2.0 -short_name: MPL 2.0 -name: Mozilla Public License 2.0 -category: Copyleft Limited -owner: Mozilla -homepage_url: http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/ -notes: | - Per SPDX.org, this license was released in January 2012. This license list - entry is for use when the standard MPL 2.0 is used, as indicated by the - standard header (Exhibit A but no Exhibit B). -spdx_license_key: MPL-2.0 -osi_license_key: MPL-2.0 -text_urls: - - http://www.mozilla.com/MPL/2.0/ - - http://www.mozilla.org/MPL/2.0/ - - http://www.mozilla.org/MPL/2.0/index.html - - http://www.mozilla.org/MPL/2.0/index.txt -osi_url: http://opensource.org/licenses/MPL-2.0 -faq_url: http://www.mozilla.org/MPL/2.0/FAQ.html -other_urls: - - https://opensource.org/licenses/MPL-2.0 - - https://www.mozilla.org/MPL/2.0/ -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/licenses/ms-asp-net-ajax-supplemental-terms.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-ajax-supplemental-terms.LICENSE index 2b22cd928bf..4a0f6dacbb7 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-ajax-supplemental-terms.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-ajax-supplemental-terms.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-asp-net-ajax-supplemental-terms +short_name: MS Supplemental License - ASP.NET 2.0 AJAX EXT +name: Microsoft Software Supplemental License - ASP.NET 2.0 AJAX EXTENSIONS +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-asp-net-ajax-supp-terms +other_spdx_license_keys: + - LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms +faq_url: http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 +other_urls: + - www.support.microsoft.com/common/international.aspx +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENT LICENSE TERMS MICROSOFT ASP.NET 2.0 AJAX EXTENSIONS Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. If you are licensed to use Microsoft Windows operating system software (the "software"), you may use this supplement. You may not use it if you do not have a license for the software. You may use a copy of this supplement with each validly licensed copy of the software. diff --git a/src/licensedcode/data/licenses/ms-asp-net-ajax-supplemental-terms.yml b/src/licensedcode/data/licenses/ms-asp-net-ajax-supplemental-terms.yml deleted file mode 100644 index 2d28a5c4f05..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-ajax-supplemental-terms.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ms-asp-net-ajax-supplemental-terms -short_name: MS Supplemental License - ASP.NET 2.0 AJAX EXT -name: Microsoft Software Supplemental License - ASP.NET 2.0 AJAX EXTENSIONS -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-asp-net-ajax-supp-terms -other_spdx_license_keys: - - LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms -faq_url: http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 -other_urls: - - www.support.microsoft.com/common/international.aspx -ignorable_urls: - - http://www.support.microsoft.com/common/international.aspx diff --git a/src/licensedcode/data/licenses/ms-asp-net-mvc3.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-mvc3.LICENSE index 4c79e932838..3e19f368330 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-mvc3.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-mvc3.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-asp-net-mvc3 +short_name: MS ASP.NET MVC3 +name: Microsoft ASP.NET MVC 3 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/aspnetmvc3update-eula.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc3 +ignorable_urls: + - http://www.microsoft.com/exporting + - http://www.support.microsoft.com/common/international.aspx +--- + This installation contains the following software, the license terms of each of which are included below: · Microsoft ASP.NET Model View Controller 3 Tools Update @@ -365,5 +378,4 @@ It also applies even if Microsoft knew or should have known about the possibilit MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SOFTWARE UPDATE TO VISUAL STUDIO, KB2483190 -PLEASE NOTE: Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. You may use it with each validly licensed copy of Microsoft Visual Studio 2010 or Microsoft Windows operating system software (for which this supplement is applicable) (the "software"). You may not use the supplement if you do not have a license for the software. The license terms for the software apply to your use of this supplement. Microsoft provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx. - +PLEASE NOTE: Microsoft Corporation (or based on where you live, one of its affiliates) licenses this supplement to you. You may use it with each validly licensed copy of Microsoft Visual Studio 2010 or Microsoft Windows operating system software (for which this supplement is applicable) (the "software"). You may not use the supplement if you do not have a license for the software. The license terms for the software apply to your use of this supplement. Microsoft provides support services for the supplement as described at www.support.microsoft.com/common/international.aspx. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-asp-net-mvc3.yml b/src/licensedcode/data/licenses/ms-asp-net-mvc3.yml deleted file mode 100644 index c1977b0dbc6..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-mvc3.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-asp-net-mvc3 -short_name: MS ASP.NET MVC3 -name: Microsoft ASP.NET MVC 3 License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/aspnetmvc3update-eula.htm -spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc3 -ignorable_urls: - - http://www.microsoft.com/exporting - - http://www.support.microsoft.com/common/international.aspx diff --git a/src/licensedcode/data/licenses/ms-asp-net-mvc4-extensions.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-mvc4-extensions.LICENSE index ea1983e8cb7..8367b7d3526 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-mvc4-extensions.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-mvc4-extensions.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-asp-net-mvc4-extensions +short_name: MS ASP.NET MVC 4 Extensions +name: Microsoft ASP.NET MVC 4 Extensions License +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/web/webpi/eula/mvc4extensions_prerelease_eula.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc4-extensions +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS MICROSOFT ASP.NET MODEL VIEW CONTROLLER 4 EXTENSIONS These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the pre-release software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/src/licensedcode/data/licenses/ms-asp-net-mvc4-extensions.yml b/src/licensedcode/data/licenses/ms-asp-net-mvc4-extensions.yml deleted file mode 100644 index 1a3cbd95748..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-mvc4-extensions.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-asp-net-mvc4-extensions -short_name: MS ASP.NET MVC 4 Extensions -name: Microsoft ASP.NET MVC 4 Extensions License -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.microsoft.com/web/webpi/eula/mvc4extensions_prerelease_eula.htm -spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc4-extensions -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-asp-net-mvc4.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-mvc4.LICENSE index 3a7f54dc1a1..b35fa28fcbd 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-mvc4.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-mvc4.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-asp-net-mvc4 +short_name: MS ASP.NET MVC4 +name: Microsoft ASP.NET MVC 4 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/mvc_4_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc4 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT ASP.NET MODEL VIEW CONTROLLER 4 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -77,4 +89,4 @@ FOR AUSTRALIA – You have statutory guarantees under the Australian Consumer La This limitation applies to • anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and • claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-asp-net-mvc4.yml b/src/licensedcode/data/licenses/ms-asp-net-mvc4.yml deleted file mode 100644 index a9fc1739d55..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-mvc4.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-asp-net-mvc4 -short_name: MS ASP.NET MVC4 -name: Microsoft ASP.NET MVC 4 License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/mvc_4_eula_enu.htm -spdx_license_key: LicenseRef-scancode-ms-asp-net-mvc4 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-asp-net-software.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-software.LICENSE index a237e088c48..d8e0cdc25af 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-software.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-software.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-asp-net-software +short_name: MS ASP.NET Software License +name: Microsoft ASP.NET Software License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/aspnet_and_web_tools_2012_2_rtw_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-software +ignorable_urls: + - http://www.microsoft.com/exporting + - http://www.microsoft.com/products/ceip/en-us/privacypolicy.mspx +--- + MICROSOFT SOFTWARE LICENSE TERMS Microsoft ASP.NET Model View Controller, Web API and Web Pages @@ -232,6 +245,4 @@ Cette limitation concerne : Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. - - \ No newline at end of file +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-asp-net-software.yml b/src/licensedcode/data/licenses/ms-asp-net-software.yml deleted file mode 100644 index 57775fedea7..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-software.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-asp-net-software -short_name: MS ASP.NET Software License -name: Microsoft ASP.NET Software License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/aspnet_and_web_tools_2012_2_rtw_eula_enu.htm -spdx_license_key: LicenseRef-scancode-ms-asp-net-software -ignorable_urls: - - http://www.microsoft.com/exporting - - http://www.microsoft.com/products/ceip/en-us/privacypolicy.mspx diff --git a/src/licensedcode/data/licenses/ms-asp-net-tools-pre-release.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-tools-pre-release.LICENSE index f2b86097c52..5b695793240 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-tools-pre-release.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-tools-pre-release.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-asp-net-tools-pre-release +short_name: MS ASP.NET Tools Pre-Release License +name: Microsoft ASP.NET Tools Pre-Release License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/aspnetcomponent_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-tools-pre-release +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkId=296594 + - http://www.microsoft.com/exporting +--- + MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS MICROSOFT ASP.NET TOOLS diff --git a/src/licensedcode/data/licenses/ms-asp-net-tools-pre-release.yml b/src/licensedcode/data/licenses/ms-asp-net-tools-pre-release.yml deleted file mode 100644 index 926972d6a0d..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-tools-pre-release.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-asp-net-tools-pre-release -short_name: MS ASP.NET Tools Pre-Release License -name: Microsoft ASP.NET Tools Pre-Release License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/aspnetcomponent_enu.htm -spdx_license_key: LicenseRef-scancode-ms-asp-net-tools-pre-release -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkId=296594 - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-asp-net-web-optimization-framework.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-web-optimization-framework.LICENSE index a9b59b769dc..3666109420b 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-web-optimization-framework.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-web-optimization-framework.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-asp-net-web-optimization-framework +short_name: MS ASP.NET Web Optimization Framework +name: Microsoft ASP.NET Web Optimization Framework +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/web/webpi/eula/weboptimization_1_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-web-optimization +other_spdx_license_keys: + - LicenseRef-scancode-ms-asp-net-web-optimization-framework +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT ASP.NET WEB OPTIMIZATION FRAMEWORK These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -97,4 +111,4 @@ Cette limitation concerne : Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-asp-net-web-optimization-framework.yml b/src/licensedcode/data/licenses/ms-asp-net-web-optimization-framework.yml deleted file mode 100644 index 8a7da01287d..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-web-optimization-framework.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-asp-net-web-optimization-framework -short_name: MS ASP.NET Web Optimization Framework -name: Microsoft ASP.NET Web Optimization Framework -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.microsoft.com/web/webpi/eula/weboptimization_1_eula_enu.htm -spdx_license_key: LicenseRef-scancode-ms-asp-net-web-optimization -other_spdx_license_keys: - - LicenseRef-scancode-ms-asp-net-web-optimization-framework -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-asp-net-web-pages-2.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-web-pages-2.LICENSE index 92bcd9fda04..eaf9f6861fa 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-web-pages-2.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-web-pages-2.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-asp-net-web-pages-2 +short_name: MS ASP.NET Web Pages 2 License +name: Microsoft ASP.NET Web Pages 2 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-web-pages-2 +ignorable_urls: + - http://docs.nuget.org/ + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT ASP.NET WEB PAGES 2 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/src/licensedcode/data/licenses/ms-asp-net-web-pages-2.yml b/src/licensedcode/data/licenses/ms-asp-net-web-pages-2.yml deleted file mode 100644 index 38201a14c38..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-web-pages-2.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-asp-net-web-pages-2 -short_name: MS ASP.NET Web Pages 2 License -name: Microsoft ASP.NET Web Pages 2 License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm -spdx_license_key: LicenseRef-scancode-ms-asp-net-web-pages-2 -ignorable_urls: - - http://docs.nuget.org/ - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.LICENSE b/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.LICENSE index 2d7300a8943..1ed89e077af 100644 --- a/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.LICENSE +++ b/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-asp-net-web-pages-templates +short_name: MS ASP.NET Web Pages Templates License +name: Microsoft ASP.NET Web Pages Templates License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-asp-net-web-pages-templates +other_urls: + - http://go.microsoft.com/fwlink/?LinkId=210218 + - https://www.microsoft.com/web/webpi/eula/ASPNET-Web-Pages-Template-License.rtf +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT ASP .NET WEB PAGES TEMPLATES These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -59,4 +74,4 @@ Cette limitation concerne : tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.yml b/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.yml deleted file mode 100644 index 0718933dfde..00000000000 --- a/src/licensedcode/data/licenses/ms-asp-net-web-pages-templates.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-asp-net-web-pages-templates -short_name: MS ASP.NET Web Pages Templates License -name: Microsoft ASP.NET Web Pages Templates License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/webpages_2_eula_enu.htm -spdx_license_key: LicenseRef-scancode-ms-asp-net-web-pages-templates -other_urls: - - http://go.microsoft.com/fwlink/?LinkId=210218 - - https://www.microsoft.com/web/webpi/eula/ASPNET-Web-Pages-Template-License.rtf -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-azure-data-studio.LICENSE b/src/licensedcode/data/licenses/ms-azure-data-studio.LICENSE index 108b05c26cb..ba5438e4f95 100644 --- a/src/licensedcode/data/licenses/ms-azure-data-studio.LICENSE +++ b/src/licensedcode/data/licenses/ms-azure-data-studio.LICENSE @@ -1,3 +1,13 @@ +--- +key: ms-azure-data-studio +short_name: MS Azure Data Studio License +name: Microsoft Azure Data Studio License Terms +category: Proprietary Free +owner: Microsoft +homepage_url: https://github.com/microsoft/azuredatastudio/blob/main/LICENSE.txt +spdx_license_key: LicenseRef-scancode-ms-azure-data-studio +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT AZURE DATA STUDIO diff --git a/src/licensedcode/data/licenses/ms-azure-data-studio.yml b/src/licensedcode/data/licenses/ms-azure-data-studio.yml deleted file mode 100644 index 090b9839fdc..00000000000 --- a/src/licensedcode/data/licenses/ms-azure-data-studio.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ms-azure-data-studio -short_name: MS Azure Data Studio License -name: Microsoft Azure Data Studio License Terms -category: Proprietary Free -owner: Microsoft -homepage_url: https://github.com/microsoft/azuredatastudio/blob/main/LICENSE.txt -spdx_license_key: LicenseRef-scancode-ms-azure-data-studio diff --git a/src/licensedcode/data/licenses/ms-azure-spatialanchors-2.9.0.LICENSE b/src/licensedcode/data/licenses/ms-azure-spatialanchors-2.9.0.LICENSE index af35fd7704c..449d5de98da 100644 --- a/src/licensedcode/data/licenses/ms-azure-spatialanchors-2.9.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-azure-spatialanchors-2.9.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-azure-spatialanchors-2.9.0 +short_name: MS Azure Spatial Anchors WinRT 2.9.0 +name: Microsoft Azure Spatial Anchors WinRT 2.9.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.Azure.SpatialAnchors.WinRT/2.9.0/License +spdx_license_key: LicenseRef-scancode-ms-azure-spatialanchors-2.9.0 +ignorable_urls: + - https://aka.ms/exporting + - https://aka.ms/privacy + - https://docs.microsoft.com/en-us/legal/gdpr +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT AZURE SPATIAL ANCHORS ________________________________________ diff --git a/src/licensedcode/data/licenses/ms-azure-spatialanchors-2.9.0.yml b/src/licensedcode/data/licenses/ms-azure-spatialanchors-2.9.0.yml deleted file mode 100644 index ca26bd89666..00000000000 --- a/src/licensedcode/data/licenses/ms-azure-spatialanchors-2.9.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-azure-spatialanchors-2.9.0 -short_name: MS Azure Spatial Anchors WinRT 2.9.0 -name: Microsoft Azure Spatial Anchors WinRT 2.9.0 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.nuget.org/packages/Microsoft.Azure.SpatialAnchors.WinRT/2.9.0/License -spdx_license_key: LicenseRef-scancode-ms-azure-spatialanchors-2.9.0 -ignorable_urls: - - https://aka.ms/exporting - - https://aka.ms/privacy - - https://docs.microsoft.com/en-us/legal/gdpr diff --git a/src/licensedcode/data/licenses/ms-capicom.LICENSE b/src/licensedcode/data/licenses/ms-capicom.LICENSE index c63e2640252..caed4c5d890 100644 --- a/src/licensedcode/data/licenses/ms-capicom.LICENSE +++ b/src/licensedcode/data/licenses/ms-capicom.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-capicom +short_name: Microsoft CAPICOM License +name: Microsoft CAPICOM License +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/library/aa375754.aspx +spdx_license_key: LicenseRef-scancode-ms-capicom +faq_url: http://en.wikipedia.org/wiki/CAPICOM +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT CAPICOM These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/src/licensedcode/data/licenses/ms-capicom.yml b/src/licensedcode/data/licenses/ms-capicom.yml deleted file mode 100644 index 0184e037d31..00000000000 --- a/src/licensedcode/data/licenses/ms-capicom.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-capicom -short_name: Microsoft CAPICOM License -name: Microsoft CAPICOM License -category: Proprietary Free -owner: Microsoft -homepage_url: http://msdn.microsoft.com/en-us/library/aa375754.aspx -spdx_license_key: LicenseRef-scancode-ms-capicom -faq_url: http://en.wikipedia.org/wiki/CAPICOM -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-cl.LICENSE b/src/licensedcode/data/licenses/ms-cl.LICENSE index cb8d4976984..9a24f05cca3 100644 --- a/src/licensedcode/data/licenses/ms-cl.LICENSE +++ b/src/licensedcode/data/licenses/ms-cl.LICENSE @@ -1,3 +1,13 @@ +--- +key: ms-cl +short_name: MS-CL +name: Microsoft Shared Source Community License +category: Copyleft Limited +owner: Microsoft +homepage_url: https://terminals.codeplex.com/license +spdx_license_key: LicenseRef-scancode-ms-cl +--- + Microsoft Shared Source Community License (MS-CL) Published: October 18, 2005 diff --git a/src/licensedcode/data/licenses/ms-cl.yml b/src/licensedcode/data/licenses/ms-cl.yml deleted file mode 100644 index 52a1711d6ca..00000000000 --- a/src/licensedcode/data/licenses/ms-cl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ms-cl -short_name: MS-CL -name: Microsoft Shared Source Community License -category: Copyleft Limited -owner: Microsoft -homepage_url: https://terminals.codeplex.com/license -spdx_license_key: LicenseRef-scancode-ms-cl diff --git a/src/licensedcode/data/licenses/ms-cla.LICENSE b/src/licensedcode/data/licenses/ms-cla.LICENSE index f3acfe3d327..16abb73c155 100644 --- a/src/licensedcode/data/licenses/ms-cla.LICENSE +++ b/src/licensedcode/data/licenses/ms-cla.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-cla +short_name: MS Contribution License Agreement (CLA) +name: Microsoft Contribution License Agreement (CLA) +category: Patent License +owner: Microsoft +homepage_url: https://cla.microsoft.com +spdx_license_key: LicenseRef-scancode-ms-cla +text_urls: + - https://opensource.microsoft.com/pdf/microsoft-contribution-license-agreement.pdf +ignorable_urls: + - http://www.opensource.org/ + - https://creativecommons.org/licenses +--- + Contribution License Agreement This Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”), and conveys certain license rights to Microsoft Corporation and its affiliates (“Microsoft”) for Your contributions to Microsoft open source projects. diff --git a/src/licensedcode/data/licenses/ms-cla.yml b/src/licensedcode/data/licenses/ms-cla.yml deleted file mode 100644 index 7ccc5e76e2a..00000000000 --- a/src/licensedcode/data/licenses/ms-cla.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-cla -short_name: MS Contribution License Agreement (CLA) -name: Microsoft Contribution License Agreement (CLA) -category: Patent License -owner: Microsoft -homepage_url: https://cla.microsoft.com -spdx_license_key: LicenseRef-scancode-ms-cla -text_urls: - - https://opensource.microsoft.com/pdf/microsoft-contribution-license-agreement.pdf -ignorable_urls: - - http://www.opensource.org/ - - https://creativecommons.org/licenses diff --git a/src/licensedcode/data/licenses/ms-control-spy-2.0.LICENSE b/src/licensedcode/data/licenses/ms-control-spy-2.0.LICENSE index 83dc8ba0591..eb9250d6453 100644 --- a/src/licensedcode/data/licenses/ms-control-spy-2.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-control-spy-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-control-spy-2.0 +short_name: MS Control Spy 2.0 +name: Microsoft Control Spy 2.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/en-us/download/details.aspx?id=4635 +spdx_license_key: LicenseRef-scancode-ms-control-spy-2.0 +ignorable_urls: + - http://www.microsoft.com/exporting + - http://www.microsoft.com/licensing/userights +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT CONTROL SPY 2.0 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/src/licensedcode/data/licenses/ms-control-spy-2.0.yml b/src/licensedcode/data/licenses/ms-control-spy-2.0.yml deleted file mode 100644 index c47bee9ee6e..00000000000 --- a/src/licensedcode/data/licenses/ms-control-spy-2.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-control-spy-2.0 -short_name: MS Control Spy 2.0 -name: Microsoft Control Spy 2.0 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.microsoft.com/en-us/download/details.aspx?id=4635 -spdx_license_key: LicenseRef-scancode-ms-control-spy-2.0 -ignorable_urls: - - http://www.microsoft.com/exporting - - http://www.microsoft.com/licensing/userights diff --git a/src/licensedcode/data/licenses/ms-data-tier-af-2022.LICENSE b/src/licensedcode/data/licenses/ms-data-tier-af-2022.LICENSE index d2c1927e5bb..3c7928e1f29 100644 --- a/src/licensedcode/data/licenses/ms-data-tier-af-2022.LICENSE +++ b/src/licensedcode/data/licenses/ms-data-tier-af-2022.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-data-tier-af-2022 +short_name: MS Data-Tier Application Framework License +name: Microsoft Data-Tier Application Framework License Terms +category: Proprietary Free +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/Legal/sql/data-tier-application-framework-license-terms +spdx_license_key: LicenseRef-scancode-ms-data-tier-af-2022 +ignorable_urls: + - https://www.asp.net/ajaxlibrary/CDN.ashx + - https://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SQL SERVER DATA-TIER APPLICATION FRAMEWORK diff --git a/src/licensedcode/data/licenses/ms-data-tier-af-2022.yml b/src/licensedcode/data/licenses/ms-data-tier-af-2022.yml deleted file mode 100644 index 10da63abbd4..00000000000 --- a/src/licensedcode/data/licenses/ms-data-tier-af-2022.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-data-tier-af-2022 -short_name: MS Data-Tier Application Framework License -name: Microsoft Data-Tier Application Framework License Terms -category: Proprietary Free -owner: Microsoft -homepage_url: https://docs.microsoft.com/en-us/Legal/sql/data-tier-application-framework-license-terms -spdx_license_key: LicenseRef-scancode-ms-data-tier-af-2022 -ignorable_urls: - - https://www.asp.net/ajaxlibrary/CDN.ashx - - https://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-developer-services-agreement-2018-06.LICENSE b/src/licensedcode/data/licenses/ms-developer-services-agreement-2018-06.LICENSE index d0ab2f53d47..c91326c876f 100644 --- a/src/licensedcode/data/licenses/ms-developer-services-agreement-2018-06.LICENSE +++ b/src/licensedcode/data/licenses/ms-developer-services-agreement-2018-06.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-developer-services-agreement-2018-06 +short_name: MS Developer Services Agreement 2018-06 +name: Microsoft Developer Services Agreement 2018-06 +category: Proprietary Free +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/legal/mdsa +spdx_license_key: LicenseRef-scancode-ms-dev-services-2018-06 +other_spdx_license_keys: + - LicenseRef-scancode-ms-developer-services-agreement-2018-06 +minimum_coverage: 80 +ignorable_urls: + - http://developer.microsoft.com/ + - http://docs.microsoft.com/ + - http://msdn.microsoft.com/ + - http://technet.microsoft.com/ +--- + Microsoft Developer Agreement Last updated: June 2018 diff --git a/src/licensedcode/data/licenses/ms-developer-services-agreement-2018-06.yml b/src/licensedcode/data/licenses/ms-developer-services-agreement-2018-06.yml deleted file mode 100644 index 8e1f4754fdb..00000000000 --- a/src/licensedcode/data/licenses/ms-developer-services-agreement-2018-06.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ms-developer-services-agreement-2018-06 -short_name: MS Developer Services Agreement 2018-06 -name: Microsoft Developer Services Agreement 2018-06 -category: Proprietary Free -owner: Microsoft -homepage_url: https://docs.microsoft.com/en-us/legal/mdsa -spdx_license_key: LicenseRef-scancode-ms-dev-services-2018-06 -other_spdx_license_keys: - - LicenseRef-scancode-ms-developer-services-agreement-2018-06 -minimum_coverage: 80 -ignorable_urls: - - http://developer.microsoft.com/ - - http://docs.microsoft.com/ - - http://msdn.microsoft.com/ - - http://technet.microsoft.com/ diff --git a/src/licensedcode/data/licenses/ms-developer-services-agreement.LICENSE b/src/licensedcode/data/licenses/ms-developer-services-agreement.LICENSE index ad9236719ca..c31b91fee8c 100644 --- a/src/licensedcode/data/licenses/ms-developer-services-agreement.LICENSE +++ b/src/licensedcode/data/licenses/ms-developer-services-agreement.LICENSE @@ -1,3 +1,32 @@ +--- +key: ms-developer-services-agreement +short_name: MS Developer Services Agreement +name: Microsoft Developer Services Agreement +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/cc300389.aspx +spdx_license_key: LicenseRef-scancode-ms-dev-services-agreement +other_spdx_license_keys: + - LicenseRef-scancode-ms-developer-services-agreement +text_urls: + - http://msdn.microsoft.com/en-us/cc300389.aspx +minimum_coverage: 70 +ignorable_copyrights: + - (c) 2013 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://connect.microsoft.com/ + - http://go.microsoft.com/fwlink/?LinkID=246330 + - http://go.microsoft.com/fwlink/?LinkId=303819 + - http://go.microsoft.com/fwlink/?LinkId=309360 + - http://msdn.microsoft.com/ + - http://technet.microsoft.com/ + - http://www.microsoft.com/exporting + - http://www.microsoft.com/info/cpyrtInfrg.htm + - http://www.visualstudio.com/ +--- + Microsoft Developer Services Agreement Updated October, 2013 diff --git a/src/licensedcode/data/licenses/ms-developer-services-agreement.yml b/src/licensedcode/data/licenses/ms-developer-services-agreement.yml deleted file mode 100644 index 5c7b5a5651a..00000000000 --- a/src/licensedcode/data/licenses/ms-developer-services-agreement.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: ms-developer-services-agreement -short_name: MS Developer Services Agreement -name: Microsoft Developer Services Agreement -category: Proprietary Free -owner: Microsoft -homepage_url: http://msdn.microsoft.com/en-us/cc300389.aspx -spdx_license_key: LicenseRef-scancode-ms-dev-services-agreement -other_spdx_license_keys: - - LicenseRef-scancode-ms-developer-services-agreement -text_urls: - - http://msdn.microsoft.com/en-us/cc300389.aspx -minimum_coverage: 70 -ignorable_copyrights: - - (c) 2013 Microsoft Corporation -ignorable_holders: - - Microsoft Corporation -ignorable_urls: - - http://connect.microsoft.com/ - - http://go.microsoft.com/fwlink/?LinkID=246330 - - http://go.microsoft.com/fwlink/?LinkId=303819 - - http://go.microsoft.com/fwlink/?LinkId=309360 - - http://msdn.microsoft.com/ - - http://technet.microsoft.com/ - - http://www.microsoft.com/exporting - - http://www.microsoft.com/info/cpyrtInfrg.htm - - http://www.visualstudio.com/ diff --git a/src/licensedcode/data/licenses/ms-device-emulator-3.0.LICENSE b/src/licensedcode/data/licenses/ms-device-emulator-3.0.LICENSE index c0dea8c028e..4a6995304f8 100644 --- a/src/licensedcode/data/licenses/ms-device-emulator-3.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-device-emulator-3.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-device-emulator-3.0 +short_name: MS Device Emulator 3.0 +name: Microsoft Device Emulator 3.0 +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-device-emulator-3.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT DEVICE EMULATOR 3.0 diff --git a/src/licensedcode/data/licenses/ms-device-emulator-3.0.yml b/src/licensedcode/data/licenses/ms-device-emulator-3.0.yml deleted file mode 100644 index 48ce0ed30b5..00000000000 --- a/src/licensedcode/data/licenses/ms-device-emulator-3.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-device-emulator-3.0 -short_name: MS Device Emulator 3.0 -name: Microsoft Device Emulator 3.0 -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-device-emulator-3.0 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-direct3d-d3d120n7-1.1.0.LICENSE b/src/licensedcode/data/licenses/ms-direct3d-d3d120n7-1.1.0.LICENSE index 7fc7b77c0db..b5f8e1c68eb 100644 --- a/src/licensedcode/data/licenses/ms-direct3d-d3d120n7-1.1.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-direct3d-d3d120n7-1.1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-direct3d-d3d120n7-1.1.0 +short_name: MS Direct3D D3D12On7 1.1.0 +name: Microsoft Direct3D D3D12On7 1.1.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.Direct3D.D3D12On7/1.1.0/License +spdx_license_key: LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0 +ignorable_urls: + - http://aka.ms/exporting + - http://go.microsoft.com/fwlink/?LinkId=524839 + - https://go.microsoft.com/fwlink/?LinkId=521839 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT DIRECT3D 12 ON WINDOWS 7 ________________________________________ diff --git a/src/licensedcode/data/licenses/ms-direct3d-d3d120n7-1.1.0.yml b/src/licensedcode/data/licenses/ms-direct3d-d3d120n7-1.1.0.yml deleted file mode 100644 index 6da4939eaca..00000000000 --- a/src/licensedcode/data/licenses/ms-direct3d-d3d120n7-1.1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-direct3d-d3d120n7-1.1.0 -short_name: MS Direct3D D3D12On7 1.1.0 -name: Microsoft Direct3D D3D12On7 1.1.0 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.nuget.org/packages/Microsoft.Direct3D.D3D12On7/1.1.0/License -spdx_license_key: LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0 -ignorable_urls: - - http://aka.ms/exporting - - http://go.microsoft.com/fwlink/?LinkId=524839 - - https://go.microsoft.com/fwlink/?LinkId=521839 diff --git a/src/licensedcode/data/licenses/ms-directx-sdk-eula.LICENSE b/src/licensedcode/data/licenses/ms-directx-sdk-eula.LICENSE index 088a9b8ecff..4a9786e5f64 100644 --- a/src/licensedcode/data/licenses/ms-directx-sdk-eula.LICENSE +++ b/src/licensedcode/data/licenses/ms-directx-sdk-eula.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-directx-sdk-eula +short_name: MS DirectX SDK EULA +name: Microsoft DirectX SDK EULA +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-directx-sdk-eula +text_urls: + - ftp://ftp.physik.hu-berlin.de/pub/useful/dx7asdk/DXF/license/directx%20sdk%20eula.txt +ignorable_authors: + - permission from Microsoft Corporation +--- + DirectX Software Development Kit END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation ("Microsoft") for the Microsoft software product identified above, which includes computer software and may include associated media and printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT). The SOFTWARE PRODUCT also includes any updates and supplements to the original SOFTWARE PRODUCT that is associated with a separate end-user license agreement is licensed to you under the terms of that license agreement. By installing, copying, downloading, accessing or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. diff --git a/src/licensedcode/data/licenses/ms-directx-sdk-eula.yml b/src/licensedcode/data/licenses/ms-directx-sdk-eula.yml deleted file mode 100644 index 655aeb57315..00000000000 --- a/src/licensedcode/data/licenses/ms-directx-sdk-eula.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-directx-sdk-eula -short_name: MS DirectX SDK EULA -name: Microsoft DirectX SDK EULA -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-directx-sdk-eula -text_urls: - - ftp://ftp.physik.hu-berlin.de/pub/useful/dx7asdk/DXF/license/directx%20sdk%20eula.txt -ignorable_authors: - - permission from Microsoft Corporation diff --git a/src/licensedcode/data/licenses/ms-dxsdk-d3dx-9.29.952.3.LICENSE b/src/licensedcode/data/licenses/ms-dxsdk-d3dx-9.29.952.3.LICENSE index 8f42de399f6..f49b0427825 100644 --- a/src/licensedcode/data/licenses/ms-dxsdk-d3dx-9.29.952.3.LICENSE +++ b/src/licensedcode/data/licenses/ms-dxsdk-d3dx-9.29.952.3.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-dxsdk-d3dx-9.29.952.3 +short_name: MS DXSDK.D3DX 9.29.952.3 +name: Microsoft DXSDK.D3DX 9.29.952.3 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.DXSDK.D3DX/9.29.952.3/License +spdx_license_key: LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3 +ignorable_urls: + - https://aka.ms/arb-agreement-4 + - https://aka.ms/exporting + - https://aka.ms/privacy + - https://docs.microsoft.com/en-us/legal/gdpr +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT DXSDK.D3DX ________________________________________ diff --git a/src/licensedcode/data/licenses/ms-dxsdk-d3dx-9.29.952.3.yml b/src/licensedcode/data/licenses/ms-dxsdk-d3dx-9.29.952.3.yml deleted file mode 100644 index d92ae2f4f2b..00000000000 --- a/src/licensedcode/data/licenses/ms-dxsdk-d3dx-9.29.952.3.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-dxsdk-d3dx-9.29.952.3 -short_name: MS DXSDK.D3DX 9.29.952.3 -name: Microsoft DXSDK.D3DX 9.29.952.3 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.nuget.org/packages/Microsoft.DXSDK.D3DX/9.29.952.3/License -spdx_license_key: LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3 -ignorable_urls: - - https://aka.ms/arb-agreement-4 - - https://aka.ms/exporting - - https://aka.ms/privacy - - https://docs.microsoft.com/en-us/legal/gdpr diff --git a/src/licensedcode/data/licenses/ms-entity-framework-4.1.LICENSE b/src/licensedcode/data/licenses/ms-entity-framework-4.1.LICENSE index 882f70b8158..94f123fbc0c 100644 --- a/src/licensedcode/data/licenses/ms-entity-framework-4.1.LICENSE +++ b/src/licensedcode/data/licenses/ms-entity-framework-4.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-entity-framework-4.1 +short_name: MS Entity Framework 4.1 License +name: Microsoft Entity Framework 4.1 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://go.microsoft.com/fwlink/?LinkID=211010 +notes: also contains some French language terms +spdx_license_key: LicenseRef-scancode-ms-entity-framework-4.1 +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS ENTITY FRAMEWORK 4.1 @@ -67,4 +80,4 @@ c. Restrictions de distribution. Vous n’êtes pas autorisé à : • le code soit dévoilé ou distribué dans sa forme de code source, ou • d’autres aient le droit de le modifier. -2. SERVICES D’ASSISTANCE TECHNIQUE POUR LE SUPPLÉMENT. Microsoft fournit des services d’assistance technique pour ce logiciel disponibles sur le site www.support.microsoft.com/common/international.aspx. +2. SERVICES D’ASSISTANCE TECHNIQUE POUR LE SUPPLÉMENT. Microsoft fournit des services d’assistance technique pour ce logiciel disponibles sur le site www.support.microsoft.com/common/international.aspx. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-entity-framework-4.1.yml b/src/licensedcode/data/licenses/ms-entity-framework-4.1.yml deleted file mode 100644 index e22051a2b87..00000000000 --- a/src/licensedcode/data/licenses/ms-entity-framework-4.1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-entity-framework-4.1 -short_name: MS Entity Framework 4.1 License -name: Microsoft Entity Framework 4.1 License -category: Proprietary Free -owner: Microsoft -homepage_url: http://go.microsoft.com/fwlink/?LinkID=211010 -notes: also contains some French language terms -spdx_license_key: LicenseRef-scancode-ms-entity-framework-4.1 -ignorable_urls: - - http://www.support.microsoft.com/common/international.aspx diff --git a/src/licensedcode/data/licenses/ms-entity-framework-5.LICENSE b/src/licensedcode/data/licenses/ms-entity-framework-5.LICENSE index 41e3a8c31ba..4ed936c5943 100644 --- a/src/licensedcode/data/licenses/ms-entity-framework-5.LICENSE +++ b/src/licensedcode/data/licenses/ms-entity-framework-5.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-entity-framework-5 +short_name: MS Entity Framework 5 License +name: MS Entity Framework 5 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-US/data/jj250905 +spdx_license_key: LicenseRef-scancode-ms-entity-framework-5 +text_urls: + - http://msdn.microsoft.com/en-US/data/jj250905 +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + Entity Framework 5 License MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS diff --git a/src/licensedcode/data/licenses/ms-entity-framework-5.yml b/src/licensedcode/data/licenses/ms-entity-framework-5.yml deleted file mode 100644 index 6d9818f098e..00000000000 --- a/src/licensedcode/data/licenses/ms-entity-framework-5.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-entity-framework-5 -short_name: MS Entity Framework 5 License -name: MS Entity Framework 5 License -category: Proprietary Free -owner: Microsoft -homepage_url: http://msdn.microsoft.com/en-US/data/jj250905 -spdx_license_key: LicenseRef-scancode-ms-entity-framework-5 -text_urls: - - http://msdn.microsoft.com/en-US/data/jj250905 -ignorable_urls: - - http://www.support.microsoft.com/common/international.aspx diff --git a/src/licensedcode/data/licenses/ms-eula-win-script-host.LICENSE b/src/licensedcode/data/licenses/ms-eula-win-script-host.LICENSE index 28fbbf850a6..cd39dac0d0e 100644 --- a/src/licensedcode/data/licenses/ms-eula-win-script-host.LICENSE +++ b/src/licensedcode/data/licenses/ms-eula-win-script-host.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-eula-win-script-host +short_name: MS EULA for Windows Script Host +name: Microsoft EULA for Windows Script Host +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-eula-win-script-host +--- + END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and Microsoft Corporation for the Microsoft software product accompanying this EULA, which includes computer software and may include associated media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install, copy, or use the SOFTWARE PRODUCT. The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold. diff --git a/src/licensedcode/data/licenses/ms-eula-win-script-host.yml b/src/licensedcode/data/licenses/ms-eula-win-script-host.yml deleted file mode 100644 index d4d24fea213..00000000000 --- a/src/licensedcode/data/licenses/ms-eula-win-script-host.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: ms-eula-win-script-host -short_name: MS EULA for Windows Script Host -name: Microsoft EULA for Windows Script Host -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-eula-win-script-host diff --git a/src/licensedcode/data/licenses/ms-exchange-server-2010-sp2-sdk.LICENSE b/src/licensedcode/data/licenses/ms-exchange-server-2010-sp2-sdk.LICENSE index 88d008427d8..8bec072aa11 100644 --- a/src/licensedcode/data/licenses/ms-exchange-server-2010-sp2-sdk.LICENSE +++ b/src/licensedcode/data/licenses/ms-exchange-server-2010-sp2-sdk.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-exchange-server-2010-sp2-sdk +short_name: MS Exchange Server 2010 SP2 Web Services SDK +name: Microsoft Exchange Server 2010 SP2 Web Services SDK +category: Proprietary Free +owner: Microsoft +homepage_url: https://msdn.microsoft.com/en-US/library/dd877074(v=exchg.140) +spdx_license_key: LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk +other_spdx_license_keys: + - LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT EXCHANGE SERVER 2010 SP2 WEB SERVICES SOFTWARE DEVELOPMENT KIT These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and You. Please read them. They apply to the software named above, which includes the media on which You received it, if any. The terms also apply to any Microsoft updates, diff --git a/src/licensedcode/data/licenses/ms-exchange-server-2010-sp2-sdk.yml b/src/licensedcode/data/licenses/ms-exchange-server-2010-sp2-sdk.yml deleted file mode 100644 index 8d8a7cec1d6..00000000000 --- a/src/licensedcode/data/licenses/ms-exchange-server-2010-sp2-sdk.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-exchange-server-2010-sp2-sdk -short_name: MS Exchange Server 2010 SP2 Web Services SDK -name: Microsoft Exchange Server 2010 SP2 Web Services SDK -category: Proprietary Free -owner: Microsoft -homepage_url: https://msdn.microsoft.com/en-US/library/dd877074(v=exchg.140) -spdx_license_key: LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk -other_spdx_license_keys: - - LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-iis-container-images-eula-2020.LICENSE b/src/licensedcode/data/licenses/ms-iis-container-images-eula-2020.LICENSE index 87e5e6929bd..9e7dd1f2c2e 100644 --- a/src/licensedcode/data/licenses/ms-iis-container-images-eula-2020.LICENSE +++ b/src/licensedcode/data/licenses/ms-iis-container-images-eula-2020.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-iis-container-images-eula-2020 +short_name: MS IIS Container Images EULA 2020 +name: Microsoft IIS Container Images EULA 202 +category: Proprietary Free +owner: Microsoft +homepage_url: https://hub.docker.com/_/microsoft-windows-servercore-iis +spdx_license_key: LicenseRef-scancode-ms-iis-container-eula-2020 +other_spdx_license_keys: + - LicenseRef-scancode-ms-iis-container-images-eula-2020 +faq_url: https://github.com/microsoft/containerregistry/blob/master/legal/Container-Images-Legal-Notice.md +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS CONTAINER OS IMAGE diff --git a/src/licensedcode/data/licenses/ms-iis-container-images-eula-2020.yml b/src/licensedcode/data/licenses/ms-iis-container-images-eula-2020.yml deleted file mode 100644 index 2ca69ea2926..00000000000 --- a/src/licensedcode/data/licenses/ms-iis-container-images-eula-2020.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-iis-container-images-eula-2020 -short_name: MS IIS Container Images EULA 2020 -name: Microsoft IIS Container Images EULA 202 -category: Proprietary Free -owner: Microsoft -homepage_url: https://hub.docker.com/_/microsoft-windows-servercore-iis -spdx_license_key: LicenseRef-scancode-ms-iis-container-eula-2020 -other_spdx_license_keys: - - LicenseRef-scancode-ms-iis-container-images-eula-2020 -faq_url: https://github.com/microsoft/containerregistry/blob/master/legal/Container-Images-Legal-Notice.md diff --git a/src/licensedcode/data/licenses/ms-ilmerge.LICENSE b/src/licensedcode/data/licenses/ms-ilmerge.LICENSE index 254270f18e5..64653adf619 100644 --- a/src/licensedcode/data/licenses/ms-ilmerge.LICENSE +++ b/src/licensedcode/data/licenses/ms-ilmerge.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-ilmerge +short_name: MS ILMerge License +name: MS ILMerge License +category: Proprietary Free +owner: Microsoft +homepage_url: http://research.microsoft.com/en-us/people/mbarnett/ilmerge-license.aspx +spdx_license_key: LicenseRef-scancode-ms-ilmerge +other_urls: + - http://www.microsoft.com/en-us/download/details.aspx?id=17630 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + ILMerge license MICROSOFT ILMerge diff --git a/src/licensedcode/data/licenses/ms-ilmerge.yml b/src/licensedcode/data/licenses/ms-ilmerge.yml deleted file mode 100644 index 8ac963f8338..00000000000 --- a/src/licensedcode/data/licenses/ms-ilmerge.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-ilmerge -short_name: MS ILMerge License -name: MS ILMerge License -category: Proprietary Free -owner: Microsoft -homepage_url: http://research.microsoft.com/en-us/people/mbarnett/ilmerge-license.aspx -spdx_license_key: LicenseRef-scancode-ms-ilmerge -other_urls: - - http://www.microsoft.com/en-us/download/details.aspx?id=17630 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-invisible-eula-1.0.LICENSE b/src/licensedcode/data/licenses/ms-invisible-eula-1.0.LICENSE index 871495639b6..d8fa9041186 100644 --- a/src/licensedcode/data/licenses/ms-invisible-eula-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-invisible-eula-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-invisible-eula-1.0 +short_name: MS Invisible Computing EULA 1.0 +name: Microsoft Invisible Computing EULA 1.0 +category: Proprietary Free +owner: Microsoft +homepage_url: http://research.microsoft.com/en-us/um/redmond/projects/invisible/EULA.htm +spdx_license_key: LicenseRef-scancode-ms-invisible-eula-1.0 +ignorable_copyrights: + - (c) 2004 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +--- + Microsoft Invisible Computing MICROSOFT SHARED SOURCE LICENSE Version 1.0 FOR MICROSOFT INVISIBLE COMPUTING diff --git a/src/licensedcode/data/licenses/ms-invisible-eula-1.0.yml b/src/licensedcode/data/licenses/ms-invisible-eula-1.0.yml deleted file mode 100644 index 46977f359a4..00000000000 --- a/src/licensedcode/data/licenses/ms-invisible-eula-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-invisible-eula-1.0 -short_name: MS Invisible Computing EULA 1.0 -name: Microsoft Invisible Computing EULA 1.0 -category: Proprietary Free -owner: Microsoft -homepage_url: http://research.microsoft.com/en-us/um/redmond/projects/invisible/EULA.htm -spdx_license_key: LicenseRef-scancode-ms-invisible-eula-1.0 -ignorable_copyrights: - - (c) 2004 Microsoft Corporation -ignorable_holders: - - Microsoft Corporation diff --git a/src/licensedcode/data/licenses/ms-jdbc-driver-40-sql-server.LICENSE b/src/licensedcode/data/licenses/ms-jdbc-driver-40-sql-server.LICENSE index 8133cf43aac..bb072c8460a 100644 --- a/src/licensedcode/data/licenses/ms-jdbc-driver-40-sql-server.LICENSE +++ b/src/licensedcode/data/licenses/ms-jdbc-driver-40-sql-server.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-jdbc-driver-40-sql-server +short_name: MS JDBC Driver 4.0 for SQL Server +name: Microsoft JDBC Driver 4.0 for SQL Server +category: Proprietary Free +owner: Microsoft +homepage_url: http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license40.txt +spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-40-sql-server +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT JDBC DRIVER 4.0 FOR SQL SERVER diff --git a/src/licensedcode/data/licenses/ms-jdbc-driver-40-sql-server.yml b/src/licensedcode/data/licenses/ms-jdbc-driver-40-sql-server.yml deleted file mode 100644 index 8d6aa01c0ef..00000000000 --- a/src/licensedcode/data/licenses/ms-jdbc-driver-40-sql-server.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-jdbc-driver-40-sql-server -short_name: MS JDBC Driver 4.0 for SQL Server -name: Microsoft JDBC Driver 4.0 for SQL Server -category: Proprietary Free -owner: Microsoft -homepage_url: http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license40.txt -spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-40-sql-server -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-jdbc-driver-41-sql-server.LICENSE b/src/licensedcode/data/licenses/ms-jdbc-driver-41-sql-server.LICENSE index 420c1432650..d1e33562c78 100644 --- a/src/licensedcode/data/licenses/ms-jdbc-driver-41-sql-server.LICENSE +++ b/src/licensedcode/data/licenses/ms-jdbc-driver-41-sql-server.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-jdbc-driver-41-sql-server +short_name: MS JDBC Driver 4.1 for SQL Server +name: Microsoft JDBC Driver 4.1 for SQL Server +category: Proprietary Free +owner: Microsoft +homepage_url: http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license41.txt +spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-41-sql-server +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT JDBC DRIVER 4.1 FOR SQL SERVER diff --git a/src/licensedcode/data/licenses/ms-jdbc-driver-41-sql-server.yml b/src/licensedcode/data/licenses/ms-jdbc-driver-41-sql-server.yml deleted file mode 100644 index 4264c3936ed..00000000000 --- a/src/licensedcode/data/licenses/ms-jdbc-driver-41-sql-server.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-jdbc-driver-41-sql-server -short_name: MS JDBC Driver 4.1 for SQL Server -name: Microsoft JDBC Driver 4.1 for SQL Server -category: Proprietary Free -owner: Microsoft -homepage_url: http://download.microsoft.com/download/0/2/A/02AAE597-3865-456C-AE7F-613F99F850A8/license41.txt -spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-41-sql-server -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-jdbc-driver-60-sql-server.LICENSE b/src/licensedcode/data/licenses/ms-jdbc-driver-60-sql-server.LICENSE index a891bd59c6b..9c0e0f069e5 100644 --- a/src/licensedcode/data/licenses/ms-jdbc-driver-60-sql-server.LICENSE +++ b/src/licensedcode/data/licenses/ms-jdbc-driver-60-sql-server.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-jdbc-driver-60-sql-server +short_name: MS JDBC Driver 6.0 for SQL Server +name: Microsoft JDBC Driver 6.0 for SQL Server +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=11774 +spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-60-sql-server +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT JDBC DRIVER 6.0 FOR SQL SERVER diff --git a/src/licensedcode/data/licenses/ms-jdbc-driver-60-sql-server.yml b/src/licensedcode/data/licenses/ms-jdbc-driver-60-sql-server.yml deleted file mode 100644 index 2d75908b817..00000000000 --- a/src/licensedcode/data/licenses/ms-jdbc-driver-60-sql-server.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-jdbc-driver-60-sql-server -short_name: MS JDBC Driver 6.0 for SQL Server -name: Microsoft JDBC Driver 6.0 for SQL Server -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=11774 -spdx_license_key: LicenseRef-scancode-ms-jdbc-driver-60-sql-server -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-kinext-win-sdk.LICENSE b/src/licensedcode/data/licenses/ms-kinext-win-sdk.LICENSE index 4bee9a0289c..a8d65e4de0c 100644 --- a/src/licensedcode/data/licenses/ms-kinext-win-sdk.LICENSE +++ b/src/licensedcode/data/licenses/ms-kinext-win-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-kinext-win-sdk +short_name: MS Kinect for Windows SDK License +name: Microsoft Kinect for Windows SDK License +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx +spdx_license_key: LicenseRef-scancode-ms-kinext-win-sdk +other_urls: + - https://web.archive.org/web/20130326115230/https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx + - http://go.microsoft.com/fwlink/?LinkID=236061 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Microsoft Kinect for Windows Software Development Kit (SDK) diff --git a/src/licensedcode/data/licenses/ms-kinext-win-sdk.yml b/src/licensedcode/data/licenses/ms-kinext-win-sdk.yml deleted file mode 100644 index 6d8497cc241..00000000000 --- a/src/licensedcode/data/licenses/ms-kinext-win-sdk.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-kinext-win-sdk -short_name: MS Kinect for Windows SDK License -name: Microsoft Kinect for Windows SDK License -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx -spdx_license_key: LicenseRef-scancode-ms-kinext-win-sdk -other_urls: - - https://web.archive.org/web/20130326115230/https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx - - http://go.microsoft.com/fwlink/?LinkID=236061 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-limited-community.LICENSE b/src/licensedcode/data/licenses/ms-limited-community.LICENSE index 5bccae6a644..5823cc999cd 100644 --- a/src/licensedcode/data/licenses/ms-limited-community.LICENSE +++ b/src/licensedcode/data/licenses/ms-limited-community.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-limited-community +short_name: MS Limited Community License +name: Microsoft Limited Community License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx +spdx_license_key: LicenseRef-scancode-ms-limited-community +other_urls: + - http://web.archive.org/web/20060109220553/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx +minimum_coverage: 40 +--- + Microsoft Limited Community License (Ms-LCL) Published: October 18, 2005 diff --git a/src/licensedcode/data/licenses/ms-limited-community.yml b/src/licensedcode/data/licenses/ms-limited-community.yml deleted file mode 100644 index 66de1473cef..00000000000 --- a/src/licensedcode/data/licenses/ms-limited-community.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-limited-community -short_name: MS Limited Community License -name: Microsoft Limited Community License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx -spdx_license_key: LicenseRef-scancode-ms-limited-community -other_urls: - - http://web.archive.org/web/20060109220553/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedcommunitylicense.mspx -minimum_coverage: 40 diff --git a/src/licensedcode/data/licenses/ms-limited-public.LICENSE b/src/licensedcode/data/licenses/ms-limited-public.LICENSE index 2dda3e35b39..d03f64c3b3e 100644 --- a/src/licensedcode/data/licenses/ms-limited-public.LICENSE +++ b/src/licensedcode/data/licenses/ms-limited-public.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-limited-public +is_deprecated: yes +short_name: MS Limited Public License +name: Microsoft Limited Public License +category: Permissive +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/cc300389.aspx#P +text_urls: + - http://msdn.microsoft.com/en-us/cc300389.aspx#P +other_urls: + - http://web.archive.org/web/20080417054425/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpubliclicense.mspx + - https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL +--- + Microsoft Limited Public License (Ms-LPL) This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/src/licensedcode/data/licenses/ms-limited-public.yml b/src/licensedcode/data/licenses/ms-limited-public.yml deleted file mode 100644 index e5a951aad7a..00000000000 --- a/src/licensedcode/data/licenses/ms-limited-public.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-limited-public -is_deprecated: yes -short_name: MS Limited Public License -name: Microsoft Limited Public License -category: Permissive -owner: Microsoft -homepage_url: http://msdn.microsoft.com/en-us/cc300389.aspx#P -text_urls: - - http://msdn.microsoft.com/en-us/cc300389.aspx#P -other_urls: - - http://web.archive.org/web/20080417054425/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpubliclicense.mspx - - https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL diff --git a/src/licensedcode/data/licenses/ms-lpl.LICENSE b/src/licensedcode/data/licenses/ms-lpl.LICENSE index a1bcdff1e0e..2ea421cd388 100644 --- a/src/licensedcode/data/licenses/ms-lpl.LICENSE +++ b/src/licensedcode/data/licenses/ms-lpl.LICENSE @@ -1,3 +1,23 @@ +--- +key: ms-lpl +short_name: MS-LPL +name: Microsoft Limited Permissive License (MS-LPL) +category: Permissive +owner: Microsoft +homepage_url: http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx +notes: it was name "Microsoft Limited Permissive License" and later renamed by Microsoft +spdx_license_key: MS-LPL +other_spdx_license_keys: + - LicenseRef-scancode-ms-lpl +text_urls: + - http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx +other_urls: + - https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL + - https://www.openhub.net/licenses/mslpl + - https://github.com/gabegundy/atlserver/blob/master/License.txt + - https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL) +--- + Microsoft Limited Permissive License (MS-LPL) Published: October 12, 2006 diff --git a/src/licensedcode/data/licenses/ms-lpl.yml b/src/licensedcode/data/licenses/ms-lpl.yml deleted file mode 100644 index 504099d7ae0..00000000000 --- a/src/licensedcode/data/licenses/ms-lpl.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: ms-lpl -short_name: MS-LPL -name: Microsoft Limited Permissive License (MS-LPL) -category: Permissive -owner: Microsoft -homepage_url: http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx -notes: it was name "Microsoft Limited Permissive License" and later renamed by Microsoft -spdx_license_key: MS-LPL -other_spdx_license_keys: - - LicenseRef-scancode-ms-lpl -text_urls: - - http://web.archive.org/web/20061122070300/http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx -other_urls: - - https://web.archive.org/web/20091211214028/http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL - - https://www.openhub.net/licenses/mslpl - - https://github.com/gabegundy/atlserver/blob/master/License.txt - - https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL) diff --git a/src/licensedcode/data/licenses/ms-msn-webgrease.LICENSE b/src/licensedcode/data/licenses/ms-msn-webgrease.LICENSE index 9dd0a0a58f1..3c83fb738d4 100644 --- a/src/licensedcode/data/licenses/ms-msn-webgrease.LICENSE +++ b/src/licensedcode/data/licenses/ms-msn-webgrease.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-msn-webgrease +short_name: MS MSN WebGrease License +name: Microsoft MSN WebGrease License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/msn_webgrease_eula.htm +notes: also contains some French language terms +spdx_license_key: LicenseRef-scancode-ms-msn-webgrease +minimum_coverage: 90 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT MSN WEBGREASE diff --git a/src/licensedcode/data/licenses/ms-msn-webgrease.yml b/src/licensedcode/data/licenses/ms-msn-webgrease.yml deleted file mode 100644 index 4a5e1a0cbff..00000000000 --- a/src/licensedcode/data/licenses/ms-msn-webgrease.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-msn-webgrease -short_name: MS MSN WebGrease License -name: Microsoft MSN WebGrease License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/msn_webgrease_eula.htm -notes: also contains some French language terms -spdx_license_key: LicenseRef-scancode-ms-msn-webgrease -minimum_coverage: 90 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-net-framework-4-supplemental-terms.LICENSE b/src/licensedcode/data/licenses/ms-net-framework-4-supplemental-terms.LICENSE index 300dfa51ae6..d4ff00b6d70 100644 --- a/src/licensedcode/data/licenses/ms-net-framework-4-supplemental-terms.LICENSE +++ b/src/licensedcode/data/licenses/ms-net-framework-4-supplemental-terms.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-net-framework-4-supplemental-terms +short_name: MS Supplemental License - .NET Framework 4 +name: Microsoft Software Supplemental License - .NET Framework 4 +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-net-framework-4-supp-terms +other_spdx_license_keys: + - LicenseRef-scancode-ms-net-framework-4-supplemental-terms +faq_url: http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 +other_urls: + - www.support.microsoft.com/common/international.aspx +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS MICROSOFT .NET FRAMEWORK 4 FOR MICROSOFT WINDOWS OPERATING SYSTEM MICROSOFT .NET FRAMEWORK 4 CLIENT PROFILE FOR MICROSOFT WINDOWS OPERATING SYSTEM diff --git a/src/licensedcode/data/licenses/ms-net-framework-4-supplemental-terms.yml b/src/licensedcode/data/licenses/ms-net-framework-4-supplemental-terms.yml deleted file mode 100644 index 1525aef3930..00000000000 --- a/src/licensedcode/data/licenses/ms-net-framework-4-supplemental-terms.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: ms-net-framework-4-supplemental-terms -short_name: MS Supplemental License - .NET Framework 4 -name: Microsoft Software Supplemental License - .NET Framework 4 -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-net-framework-4-supp-terms -other_spdx_license_keys: - - LicenseRef-scancode-ms-net-framework-4-supplemental-terms -faq_url: http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 -other_urls: - - www.support.microsoft.com/common/international.aspx -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=66406&clcid=0x409 - - http://www.support.microsoft.com/common/international.aspx diff --git a/src/licensedcode/data/licenses/ms-net-framework-deployment.LICENSE b/src/licensedcode/data/licenses/ms-net-framework-deployment.LICENSE index fef9d18a9ad..5a26adf2740 100644 --- a/src/licensedcode/data/licenses/ms-net-framework-deployment.LICENSE +++ b/src/licensedcode/data/licenses/ms-net-framework-deployment.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-net-framework-deployment +short_name: MS .NET Framework Redistributable EULA +name: Microsoft .NET Framework Redistributable EULA +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-net-framework-deployment +--- + .NET Framework Deployment Microsoft .NET Framework Redistributable EULA diff --git a/src/licensedcode/data/licenses/ms-net-framework-deployment.yml b/src/licensedcode/data/licenses/ms-net-framework-deployment.yml deleted file mode 100644 index 2a131e141e9..00000000000 --- a/src/licensedcode/data/licenses/ms-net-framework-deployment.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: ms-net-framework-deployment -short_name: MS .NET Framework Redistributable EULA -name: Microsoft .NET Framework Redistributable EULA -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-net-framework-deployment diff --git a/src/licensedcode/data/licenses/ms-net-library-2016-05.LICENSE b/src/licensedcode/data/licenses/ms-net-library-2016-05.LICENSE index cee2f6c041c..1b2189f3414 100644 --- a/src/licensedcode/data/licenses/ms-net-library-2016-05.LICENSE +++ b/src/licensedcode/data/licenses/ms-net-library-2016-05.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-net-library-2016-05 +short_name: MS .NET Library License 2016-05 +name: Microsoft .NET Library License 2016-05 +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm + from May 2016. It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library-2016-05 +other_urls: + - http://go.microsoft.com/fwlink/?LinkId=329770 + - http://www.microsoft.com/net/dotnet_library_license.htm +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkId=528096 + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY diff --git a/src/licensedcode/data/licenses/ms-net-library-2016-05.yml b/src/licensedcode/data/licenses/ms-net-library-2016-05.yml deleted file mode 100644 index 9fa344eca5a..00000000000 --- a/src/licensedcode/data/licenses/ms-net-library-2016-05.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ms-net-library-2016-05 -short_name: MS .NET Library License 2016-05 -name: Microsoft .NET Library License 2016-05 -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm -notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm - from May 2016. It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 -spdx_license_key: LicenseRef-scancode-ms-net-library-2016-05 -other_urls: - - http://go.microsoft.com/fwlink/?LinkId=329770 - - http://www.microsoft.com/net/dotnet_library_license.htm -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkId=528096 - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-net-library-2018-11.LICENSE b/src/licensedcode/data/licenses/ms-net-library-2018-11.LICENSE index ccff088ceba..3dd11a5a9b5 100644 --- a/src/licensedcode/data/licenses/ms-net-library-2018-11.LICENSE +++ b/src/licensedcode/data/licenses/ms-net-library-2018-11.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-net-library-2018-11 +short_name: MS .NET Library License 2018-11 +name: Microsoft .NET Library License 2018-11 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm + from November 2018 and then at https://dotnet.microsoft.com/dotnet_library_license.htm It + also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library-2018-11 +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY @@ -225,4 +242,4 @@ dessus ne s'appliquera pas à votre égard. EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d'autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si -celles-ci ne le permettent pas. +celles-ci ne le permettent pas. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-net-library-2018-11.yml b/src/licensedcode/data/licenses/ms-net-library-2018-11.yml deleted file mode 100644 index 854489d9246..00000000000 --- a/src/licensedcode/data/licenses/ms-net-library-2018-11.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: ms-net-library-2018-11 -short_name: MS .NET Library License 2018-11 -name: Microsoft .NET Library License 2018-11 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm -notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm - from November 2018 and then at https://dotnet.microsoft.com/dotnet_library_license.htm It - also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 -spdx_license_key: LicenseRef-scancode-ms-net-library-2018-11 -ignorable_urls: - - http://go.microsoft.com/?linkid=9840733 - - http://www.microsoft.com/exporting - - https://go.microsoft.com/fwlink/?LinkID=824704 diff --git a/src/licensedcode/data/licenses/ms-net-library-2019-06.LICENSE b/src/licensedcode/data/licenses/ms-net-library-2019-06.LICENSE index 495e7df7c56..7a94c6db999 100644 --- a/src/licensedcode/data/licenses/ms-net-library-2019-06.LICENSE +++ b/src/licensedcode/data/licenses/ms-net-library-2019-06.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-net-library-2019-06 +short_name: MS .NET Library License 2019-06 +name: Microsoft .NET Library License 2019-06 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm +notes: this is the version that existed at https://dotnet.microsoft.com/dotnet_library_license.htm + from June 2019 and then at https://dotnet.microsoft.com/en/dotnet_library_license.htm It + also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library-2019-06 +ignorable_urls: + - http://www.microsoft.com/exporting + - https://docs.microsoft.com/en-us/legal/gdpr + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- + MICROSOFT SOFTWARE LICENSE TERMS @@ -62,6 +79,4 @@ Subject to the foregoing clause (ii), Microsoft will only be liable for slight n This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. - - +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-net-library-2019-06.yml b/src/licensedcode/data/licenses/ms-net-library-2019-06.yml deleted file mode 100644 index 43ce97c300e..00000000000 --- a/src/licensedcode/data/licenses/ms-net-library-2019-06.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: ms-net-library-2019-06 -short_name: MS .NET Library License 2019-06 -name: Microsoft .NET Library License 2019-06 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm -notes: this is the version that existed at https://dotnet.microsoft.com/dotnet_library_license.htm - from June 2019 and then at https://dotnet.microsoft.com/en/dotnet_library_license.htm It - also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 -spdx_license_key: LicenseRef-scancode-ms-net-library-2019-06 -ignorable_urls: - - http://www.microsoft.com/exporting - - https://docs.microsoft.com/en-us/legal/gdpr - - https://go.microsoft.com/fwlink/?LinkID=824704 diff --git a/src/licensedcode/data/licenses/ms-net-library-2020-09.LICENSE b/src/licensedcode/data/licenses/ms-net-library-2020-09.LICENSE index 37640fc3c20..091d7f19bc4 100644 --- a/src/licensedcode/data/licenses/ms-net-library-2020-09.LICENSE +++ b/src/licensedcode/data/licenses/ms-net-library-2020-09.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-net-library-2020-09 +short_name: MS .NET Library License 2020-09 +name: Microsoft .NET Library License 2020-09 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.microsoft.com/web/webpi/eula/dotnet_library_license_non_redistributable.htm +notes: this is the version that existed at https://dotnet.microsoft.com/en/dotnet_library_license.htm + from September 2020 and then at https://dotnet.microsoft.com/en-us/dotnet_library_license.htm + It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library-2020-09 +other_urls: + - https://www.nuget.org/packages/Microsoft.Net.Compilers/1.0.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY (INSTALL AND USE) diff --git a/src/licensedcode/data/licenses/ms-net-library-2020-09.yml b/src/licensedcode/data/licenses/ms-net-library-2020-09.yml deleted file mode 100644 index 550d3143378..00000000000 --- a/src/licensedcode/data/licenses/ms-net-library-2020-09.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: ms-net-library-2020-09 -short_name: MS .NET Library License 2020-09 -name: Microsoft .NET Library License 2020-09 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.microsoft.com/web/webpi/eula/dotnet_library_license_non_redistributable.htm -notes: this is the version that existed at https://dotnet.microsoft.com/en/dotnet_library_license.htm - from September 2020 and then at https://dotnet.microsoft.com/en-us/dotnet_library_license.htm - It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 -spdx_license_key: LicenseRef-scancode-ms-net-library-2020-09 -other_urls: - - https://www.nuget.org/packages/Microsoft.Net.Compilers/1.0.0 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-net-library.LICENSE b/src/licensedcode/data/licenses/ms-net-library.LICENSE index 2537988fc9c..295cfdf5ab4 100644 --- a/src/licensedcode/data/licenses/ms-net-library.LICENSE +++ b/src/licensedcode/data/licenses/ms-net-library.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-net-library +short_name: MS .NET Library License +name: Microsoft .NET Library License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm + from late 2014 until April 2016 It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 +spdx_license_key: LicenseRef-scancode-ms-net-library +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY @@ -199,4 +213,4 @@ dessus ne s’appliquera pas à votre égard. EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si -celles - ci ne le permettent pas. +celles - ci ne le permettent pas. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-net-library.yml b/src/licensedcode/data/licenses/ms-net-library.yml deleted file mode 100644 index 80eabac18c8..00000000000 --- a/src/licensedcode/data/licenses/ms-net-library.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-net-library -short_name: MS .NET Library License -name: Microsoft .NET Library License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm -notes: this is the version that existed at http://www.microsoft.com/net/dotnet_library_license.htm - from late 2014 until April 2016 It also existed as this URL in NuGet http://go.microsoft.com/fwlink/?LinkId=329770 -spdx_license_key: LicenseRef-scancode-ms-net-library -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-nt-resource-kit.LICENSE b/src/licensedcode/data/licenses/ms-nt-resource-kit.LICENSE index 3342ac90099..ff3cbf200db 100644 --- a/src/licensedcode/data/licenses/ms-nt-resource-kit.LICENSE +++ b/src/licensedcode/data/licenses/ms-nt-resource-kit.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-nt-resource-kit +short_name: MS NT Resource Kit License +name: Microsoft NT Resource Kit License +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-nt-resource-kit +--- + Microsoft NT Resource Kit License MICROSOFT WINDOWS NT RESOURCE KIT SUPPORT TOOLS END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE diff --git a/src/licensedcode/data/licenses/ms-nt-resource-kit.yml b/src/licensedcode/data/licenses/ms-nt-resource-kit.yml deleted file mode 100644 index 71480dc9384..00000000000 --- a/src/licensedcode/data/licenses/ms-nt-resource-kit.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: ms-nt-resource-kit -short_name: MS NT Resource Kit License -name: Microsoft NT Resource Kit License -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-nt-resource-kit diff --git a/src/licensedcode/data/licenses/ms-nuget-package-manager.LICENSE b/src/licensedcode/data/licenses/ms-nuget-package-manager.LICENSE index 2e48be3a32c..41e2df46434 100644 --- a/src/licensedcode/data/licenses/ms-nuget-package-manager.LICENSE +++ b/src/licensedcode/data/licenses/ms-nuget-package-manager.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-nuget-package-manager +short_name: MS NuGet-Based Package Manager License +name: Microsoft NuGet-Based Package Manager License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm +spdx_license_key: LicenseRef-scancode-ms-nuget-package-manager +ignorable_urls: + - http://docs.nuget.org/docs/reference/package-restore + - http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog + - http://www.microsoft.com/exporting + - http://www.microsoft.com/web/webpi/eula/package-manager-for-net-privacy.htm +--- + MICROSOFT SOFTWARE LICENSE TERMS NUGET-BASED MICROSOFT PACKAGE MANAGER diff --git a/src/licensedcode/data/licenses/ms-nuget-package-manager.yml b/src/licensedcode/data/licenses/ms-nuget-package-manager.yml deleted file mode 100644 index 286cf94b531..00000000000 --- a/src/licensedcode/data/licenses/ms-nuget-package-manager.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-nuget-package-manager -short_name: MS NuGet-Based Package Manager License -name: Microsoft NuGet-Based Package Manager License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm -spdx_license_key: LicenseRef-scancode-ms-nuget-package-manager -ignorable_urls: - - http://docs.nuget.org/docs/reference/package-restore - - http://docs.nuget.org/docs/start-here/managing-nuget-packages-using-the-dialog - - http://www.microsoft.com/exporting - - http://www.microsoft.com/web/webpi/eula/package-manager-for-net-privacy.htm diff --git a/src/licensedcode/data/licenses/ms-nuget.LICENSE b/src/licensedcode/data/licenses/ms-nuget.LICENSE index 80a1a22493d..70e1b9d80db 100644 --- a/src/licensedcode/data/licenses/ms-nuget.LICENSE +++ b/src/licensedcode/data/licenses/ms-nuget.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-nuget +short_name: MS Nuget +name: Microsoft Nuget License +category: Proprietary Free +owner: Microsoft +notes: | + this notice is often found in Nuget packages added by Microsoft on top of + other open source Attribution licenses, such as with jQuery. +spdx_license_key: LicenseRef-scancode-ms-nuget +--- + NUGET: BEGIN LICENSE TEXT Microsoft grants you the right to use these script files for the sole purpose of either: diff --git a/src/licensedcode/data/licenses/ms-nuget.yml b/src/licensedcode/data/licenses/ms-nuget.yml deleted file mode 100644 index 5ed7b96ad74..00000000000 --- a/src/licensedcode/data/licenses/ms-nuget.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-nuget -short_name: MS Nuget -name: Microsoft Nuget License -category: Proprietary Free -owner: Microsoft -notes: | - this notice is often found in Nuget packages added by Microsoft on top of - other open source Attribution licenses, such as with jQuery. -spdx_license_key: LicenseRef-scancode-ms-nuget diff --git a/src/licensedcode/data/licenses/ms-office-extensible-file.LICENSE b/src/licensedcode/data/licenses/ms-office-extensible-file.LICENSE index 19ec6c5e986..c5fc7743318 100644 --- a/src/licensedcode/data/licenses/ms-office-extensible-file.LICENSE +++ b/src/licensedcode/data/licenses/ms-office-extensible-file.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-office-extensible-file +short_name: MS Office Extensible File License +name: Microsoft Office Extensible File License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-office-extensible-file +text_urls: + - https://github.com/stephen-hardy/xlsx.js/blob/master/LICENSE.txt + - https://github.com/stephen-hardy/DOCX.js/blob/master/LICENSE.txt +other_urls: + - https://github.com/stephen-hardy/DOCX.js/issues/8 + - https://github.com/stephen-hardy/DOCX.js/issues/1 +--- + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/src/licensedcode/data/licenses/ms-office-extensible-file.yml b/src/licensedcode/data/licenses/ms-office-extensible-file.yml deleted file mode 100644 index 60c90719847..00000000000 --- a/src/licensedcode/data/licenses/ms-office-extensible-file.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-office-extensible-file -short_name: MS Office Extensible File License -name: Microsoft Office Extensible File License -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-office-extensible-file -text_urls: - - https://github.com/stephen-hardy/xlsx.js/blob/master/LICENSE.txt - - https://github.com/stephen-hardy/DOCX.js/blob/master/LICENSE.txt -other_urls: - - https://github.com/stephen-hardy/DOCX.js/issues/8 - - https://github.com/stephen-hardy/DOCX.js/issues/1 diff --git a/src/licensedcode/data/licenses/ms-office-system-programs-eula.LICENSE b/src/licensedcode/data/licenses/ms-office-system-programs-eula.LICENSE index 2e671ca081f..9267ed25d06 100644 --- a/src/licensedcode/data/licenses/ms-office-system-programs-eula.LICENSE +++ b/src/licensedcode/data/licenses/ms-office-system-programs-eula.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-office-system-programs-eula +short_name: MS Office System Programs Software EULA +name: Microsoft Office System Programs Software EULA +category: Commercial +owner: Microsoft +homepage_url: http://www.dmcwest.com/software/Microsoft/Office/Office%202003%20Interop%20Assemblies/o2003PIA_EULA.txt +notes: also contains some French language terms +spdx_license_key: LicenseRef-scancode-ms-office-system-programs-eula +ignorable_urls: + - http://www.microsoft.com/ +--- + SUPPLEMENTAL END USER LICENSE AGREEMENT FOR MICROSOFT OFFICE SYSTEM PROGRAMS SOFTWARE diff --git a/src/licensedcode/data/licenses/ms-office-system-programs-eula.yml b/src/licensedcode/data/licenses/ms-office-system-programs-eula.yml deleted file mode 100644 index 3ca9f5a1130..00000000000 --- a/src/licensedcode/data/licenses/ms-office-system-programs-eula.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-office-system-programs-eula -short_name: MS Office System Programs Software EULA -name: Microsoft Office System Programs Software EULA -category: Commercial -owner: Microsoft -homepage_url: http://www.dmcwest.com/software/Microsoft/Office/Office%202003%20Interop%20Assemblies/o2003PIA_EULA.txt -notes: also contains some French language terms -spdx_license_key: LicenseRef-scancode-ms-office-system-programs-eula -ignorable_urls: - - http://www.microsoft.com/ diff --git a/src/licensedcode/data/licenses/ms-patent-promise-mono.LICENSE b/src/licensedcode/data/licenses/ms-patent-promise-mono.LICENSE index e76e2a9fad3..9bd623eacc5 100644 --- a/src/licensedcode/data/licenses/ms-patent-promise-mono.LICENSE +++ b/src/licensedcode/data/licenses/ms-patent-promise-mono.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-patent-promise-mono +short_name: Microsoft Patent Promise for Mono +name: Microsoft Patent Promise for Mono +category: Patent License +owner: Microsoft +homepage_url: https://www.mono-project.com/docs/faq/licensing/ +spdx_license_key: LicenseRef-scancode-ms-patent-promise-mono +text_urls: + - https://github.com/mono/mono/blob/main/PATENTS.TXT +--- + Microsoft Patent Promise for Mono Microsoft Corporation and its affiliates (“Microsoft”) promise not to diff --git a/src/licensedcode/data/licenses/ms-patent-promise-mono.yml b/src/licensedcode/data/licenses/ms-patent-promise-mono.yml deleted file mode 100644 index 70fbfd54ad1..00000000000 --- a/src/licensedcode/data/licenses/ms-patent-promise-mono.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-patent-promise-mono -short_name: Microsoft Patent Promise for Mono -name: Microsoft Patent Promise for Mono -category: Patent License -owner: Microsoft -homepage_url: https://www.mono-project.com/docs/faq/licensing/ -spdx_license_key: LicenseRef-scancode-ms-patent-promise-mono -text_urls: - - https://github.com/mono/mono/blob/main/PATENTS.TXT diff --git a/src/licensedcode/data/licenses/ms-patent-promise.LICENSE b/src/licensedcode/data/licenses/ms-patent-promise.LICENSE index 6d7348e3ce0..6bb6507c84f 100644 --- a/src/licensedcode/data/licenses/ms-patent-promise.LICENSE +++ b/src/licensedcode/data/licenses/ms-patent-promise.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-patent-promise +short_name: MS Patent Promise for .NET +name: Microsoft Patent Promise for .NET Libraries and Runtime Components +category: Patent License +owner: Microsoft +homepage_url: https://github.com/dotnet/corefx/blob/master/PATENTS.TXT +spdx_license_key: LicenseRef-scancode-ms-patent-promise +other_urls: + - https://techcrunch.com/2016/11/16/google-signs-on-to-the-net-foundation-and-samsung-brings-net-support-to-tizen/ +ignorable_urls: + - https://github.com/dotnet/coreclr + - https://github.com/dotnet/corefx + - https://github.com/dotnet/corert +--- + Microsoft Patent Promise for .NET Libraries and Runtime Components Microsoft Corporation and its affiliates ("Microsoft") promise not to assert diff --git a/src/licensedcode/data/licenses/ms-patent-promise.yml b/src/licensedcode/data/licenses/ms-patent-promise.yml deleted file mode 100644 index 8b2f32c3646..00000000000 --- a/src/licensedcode/data/licenses/ms-patent-promise.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ms-patent-promise -short_name: MS Patent Promise for .NET -name: Microsoft Patent Promise for .NET Libraries and Runtime Components -category: Patent License -owner: Microsoft -homepage_url: https://github.com/dotnet/corefx/blob/master/PATENTS.TXT -spdx_license_key: LicenseRef-scancode-ms-patent-promise -other_urls: - - https://techcrunch.com/2016/11/16/google-signs-on-to-the-net-foundation-and-samsung-brings-net-support-to-tizen/ -ignorable_urls: - - https://github.com/dotnet/coreclr - - https://github.com/dotnet/corefx - - https://github.com/dotnet/corert diff --git a/src/licensedcode/data/licenses/ms-permissive-1.1.LICENSE b/src/licensedcode/data/licenses/ms-permissive-1.1.LICENSE index 7078d6335fb..ae9dc3f4661 100644 --- a/src/licensedcode/data/licenses/ms-permissive-1.1.LICENSE +++ b/src/licensedcode/data/licenses/ms-permissive-1.1.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-permissive-1.1 +is_deprecated: yes +short_name: MS-PL 1.1 +name: Microsoft Permissive License (MS-PL) v1.1 +category: Permissive +owner: Microsoft +homepage_url: https://web.archive.org/web/20180120185447/http://entlibcontrib.codeplex.com/license +notes: dupe of ms-pl +--- + Microsoft Permissive License (Ms-PL) v1.1 Microsoft Permissive License (Ms-PL) diff --git a/src/licensedcode/data/licenses/ms-permissive-1.1.yml b/src/licensedcode/data/licenses/ms-permissive-1.1.yml deleted file mode 100644 index 4211dfaba70..00000000000 --- a/src/licensedcode/data/licenses/ms-permissive-1.1.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-permissive-1.1 -is_deprecated: yes -short_name: MS-PL 1.1 -name: Microsoft Permissive License (MS-PL) v1.1 -category: Permissive -owner: Microsoft -homepage_url: https://web.archive.org/web/20180120185447/http://entlibcontrib.codeplex.com/license -notes: dupe of ms-pl diff --git a/src/licensedcode/data/licenses/ms-pl.LICENSE b/src/licensedcode/data/licenses/ms-pl.LICENSE index e277d68e0ff..08ead340147 100644 --- a/src/licensedcode/data/licenses/ms-pl.LICENSE +++ b/src/licensedcode/data/licenses/ms-pl.LICENSE @@ -1,3 +1,22 @@ +--- +key: ms-pl +short_name: MS-PL +name: Microsoft Public License +category: Permissive +owner: Microsoft +homepage_url: http://www.microsoft.com/opensource/licenses.mspx#Ms-PL +notes: also known as Microsoft Permissive License (Ms-PL) v1.1 +spdx_license_key: MS-PL +text_urls: + - http://www.microsoft.com/opensource/licenses.mspx#Ms-PL +osi_url: http://www.opensource.org/licenses/ms-pl.html +other_urls: + - http://www.microsoft.com/en-us/openness/licenses.aspx#MPL + - http://www.microsoft.com/opensource/licenses.mspx + - http://www.opensource.org/licenses/MS-PL + - https://opensource.org/licenses/MS-PL +--- + Microsoft Public License (Ms-PL) This license governs use of the accompanying software. If you use the software, diff --git a/src/licensedcode/data/licenses/ms-pl.yml b/src/licensedcode/data/licenses/ms-pl.yml deleted file mode 100644 index 714d4e18599..00000000000 --- a/src/licensedcode/data/licenses/ms-pl.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: ms-pl -short_name: MS-PL -name: Microsoft Public License -category: Permissive -owner: Microsoft -homepage_url: http://www.microsoft.com/opensource/licenses.mspx#Ms-PL -notes: also known as Microsoft Permissive License (Ms-PL) v1.1 -spdx_license_key: MS-PL -text_urls: - - http://www.microsoft.com/opensource/licenses.mspx#Ms-PL -osi_url: http://www.opensource.org/licenses/ms-pl.html -other_urls: - - http://www.microsoft.com/en-us/openness/licenses.aspx#MPL - - http://www.microsoft.com/opensource/licenses.mspx - - http://www.opensource.org/licenses/MS-PL - - https://opensource.org/licenses/MS-PL diff --git a/src/licensedcode/data/licenses/ms-platform-sdk.LICENSE b/src/licensedcode/data/licenses/ms-platform-sdk.LICENSE index de6d0f1b408..1aad3b66d9d 100644 --- a/src/licensedcode/data/licenses/ms-platform-sdk.LICENSE +++ b/src/licensedcode/data/licenses/ms-platform-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-platform-sdk +short_name: MS Platform SDK License +name: Microsoft Platform SDK License +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-platform-sdk +ignorable_copyrights: + - Copyright (c) 1999-2002 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://www.microsoft.com/exporting/ +--- + Microsoft Platform SDK License END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE MICROSOFT PLATFORM SOFTWARE DEVELOPMENT KIT diff --git a/src/licensedcode/data/licenses/ms-platform-sdk.yml b/src/licensedcode/data/licenses/ms-platform-sdk.yml deleted file mode 100644 index 3a8b2263b98..00000000000 --- a/src/licensedcode/data/licenses/ms-platform-sdk.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-platform-sdk -short_name: MS Platform SDK License -name: Microsoft Platform SDK License -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-platform-sdk -ignorable_copyrights: - - Copyright (c) 1999-2002 Microsoft Corporation -ignorable_holders: - - Microsoft Corporation -ignorable_urls: - - http://www.microsoft.com/exporting/ diff --git a/src/licensedcode/data/licenses/ms-programsynthesis-7.22.0.LICENSE b/src/licensedcode/data/licenses/ms-programsynthesis-7.22.0.LICENSE index d1bc67ca666..c878aed1aca 100644 --- a/src/licensedcode/data/licenses/ms-programsynthesis-7.22.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-programsynthesis-7.22.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-programsynthesis-7.22.0 +short_name: MS ProgramSynthesis 7.22.0 +name: Microsoft ProgramSynthesis 7.22.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.ProgramSynthesis/7.22.0/License +spdx_license_key: LicenseRef-scancode-ms-programsynthesis-7.22.0 +ignorable_urls: + - http://aka.ms/exporting + - https://go.microsoft.com/fwlink/?LinkId=521839 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT PROGRAM SYNTHESIS USING EXAMPLES diff --git a/src/licensedcode/data/licenses/ms-programsynthesis-7.22.0.yml b/src/licensedcode/data/licenses/ms-programsynthesis-7.22.0.yml deleted file mode 100644 index f1a45684819..00000000000 --- a/src/licensedcode/data/licenses/ms-programsynthesis-7.22.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-programsynthesis-7.22.0 -short_name: MS ProgramSynthesis 7.22.0 -name: Microsoft ProgramSynthesis 7.22.0 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.nuget.org/packages/Microsoft.ProgramSynthesis/7.22.0/License -spdx_license_key: LicenseRef-scancode-ms-programsynthesis-7.22.0 -ignorable_urls: - - http://aka.ms/exporting - - https://go.microsoft.com/fwlink/?LinkId=521839 diff --git a/src/licensedcode/data/licenses/ms-python-vscode-pylance-2021.LICENSE b/src/licensedcode/data/licenses/ms-python-vscode-pylance-2021.LICENSE index 66ff9a3e853..dc452ee6642 100644 --- a/src/licensedcode/data/licenses/ms-python-vscode-pylance-2021.LICENSE +++ b/src/licensedcode/data/licenses/ms-python-vscode-pylance-2021.LICENSE @@ -1,3 +1,20 @@ +--- +key: ms-python-vscode-pylance-2021 +short_name: MS Pylance Extension for VSCode License +name: Microsoft Pylance Extension for Visual Studio Code License +category: Commercial +owner: Microsoft +homepage_url: https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/license +spdx_license_key: LicenseRef-scancode-ms-python-vscode-pylance-2021 +faq_url: https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance +other_urls: + - https://github.com/microsoft/pyright +ignorable_urls: + - https://aka.ms/exporting + - https://aka.ms/privacy + - https://docs.microsoft.com/en-us/legal/gdpr +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT PYLANCE EXTENSION FOR VISUAL STUDIO CODE These license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft’s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. diff --git a/src/licensedcode/data/licenses/ms-python-vscode-pylance-2021.yml b/src/licensedcode/data/licenses/ms-python-vscode-pylance-2021.yml deleted file mode 100644 index 423b30a3539..00000000000 --- a/src/licensedcode/data/licenses/ms-python-vscode-pylance-2021.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: ms-python-vscode-pylance-2021 -short_name: MS Pylance Extension for VSCode License -name: Microsoft Pylance Extension for Visual Studio Code License -category: Commercial -owner: Microsoft -homepage_url: https://marketplace.visualstudio.com/items/ms-python.vscode-pylance/license -spdx_license_key: LicenseRef-scancode-ms-python-vscode-pylance-2021 -faq_url: https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance -other_urls: - - https://github.com/microsoft/pyright -ignorable_urls: - - https://aka.ms/exporting - - https://aka.ms/privacy - - https://docs.microsoft.com/en-us/legal/gdpr diff --git a/src/licensedcode/data/licenses/ms-reactive-extensions-eula.LICENSE b/src/licensedcode/data/licenses/ms-reactive-extensions-eula.LICENSE index a9be6fc3695..5371cdf57da 100644 --- a/src/licensedcode/data/licenses/ms-reactive-extensions-eula.LICENSE +++ b/src/licensedcode/data/licenses/ms-reactive-extensions-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-reactive-extensions-eula +short_name: MS Reactive Extensions EULA +name: Microsoft Reactive Extensions EULA +category: Proprietary Free +owner: Microsoft +homepage_url: https://msdn.microsoft.com/en-us/hh295787 +spdx_license_key: LicenseRef-scancode-ms-reactive-extensions-eula +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Reactive Extensions Eula To download the file you must agree to the following license: diff --git a/src/licensedcode/data/licenses/ms-reactive-extensions-eula.yml b/src/licensedcode/data/licenses/ms-reactive-extensions-eula.yml deleted file mode 100644 index 050289b66d4..00000000000 --- a/src/licensedcode/data/licenses/ms-reactive-extensions-eula.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-reactive-extensions-eula -short_name: MS Reactive Extensions EULA -name: Microsoft Reactive Extensions EULA -category: Proprietary Free -owner: Microsoft -homepage_url: https://msdn.microsoft.com/en-us/hh295787 -spdx_license_key: LicenseRef-scancode-ms-reactive-extensions-eula -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-refl.LICENSE b/src/licensedcode/data/licenses/ms-refl.LICENSE index d39b1200332..d6476531af5 100644 --- a/src/licensedcode/data/licenses/ms-refl.LICENSE +++ b/src/licensedcode/data/licenses/ms-refl.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-refl +short_name: MS Reference License +name: Microsoft Reference License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/resources/sharedsource/licensingbasics/referencelicense.mspx +notes: duplicate of ms-rsl +is_deprecated: yes +--- + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. 1. Definitions diff --git a/src/licensedcode/data/licenses/ms-refl.yml b/src/licensedcode/data/licenses/ms-refl.yml deleted file mode 100644 index 6b86dc89c84..00000000000 --- a/src/licensedcode/data/licenses/ms-refl.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-refl -short_name: MS Reference License -name: Microsoft Reference License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/resources/sharedsource/licensingbasics/referencelicense.mspx -notes: duplicate of ms-rsl -is_deprecated: yes \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-remote-ndis-usb-kit.LICENSE b/src/licensedcode/data/licenses/ms-remote-ndis-usb-kit.LICENSE index 0edb92bb9ad..245cc2974b9 100644 --- a/src/licensedcode/data/licenses/ms-remote-ndis-usb-kit.LICENSE +++ b/src/licensedcode/data/licenses/ms-remote-ndis-usb-kit.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-remote-ndis-usb-kit +short_name: MS Remote NDIS USB Kit EULA +name: Microsoft Remote NDIS USB Kit EULA +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-remote-ndis-usb-kit +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Microsoft Remote NDIS USB Kit EULA MICROSOFT REMOTE NDIS USB KIT END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE diff --git a/src/licensedcode/data/licenses/ms-remote-ndis-usb-kit.yml b/src/licensedcode/data/licenses/ms-remote-ndis-usb-kit.yml deleted file mode 100644 index cfb98af9592..00000000000 --- a/src/licensedcode/data/licenses/ms-remote-ndis-usb-kit.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-remote-ndis-usb-kit -short_name: MS Remote NDIS USB Kit EULA -name: Microsoft Remote NDIS USB Kit EULA -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-remote-ndis-usb-kit -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-research-shared-source.LICENSE b/src/licensedcode/data/licenses/ms-research-shared-source.LICENSE index e233bccfd54..65fed2ec89f 100644 --- a/src/licensedcode/data/licenses/ms-research-shared-source.LICENSE +++ b/src/licensedcode/data/licenses/ms-research-shared-source.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-research-shared-source +short_name: MS Research Shared Source License +name: Microsoft Research Shared Source License +category: Proprietary Free +owner: Microsoft +homepage_url: http://research.microsoft.com/downloads +spdx_license_key: LicenseRef-scancode-ms-research-shared-source +other_urls: + - http://research.microsoft.com/downloads +ignorable_copyrights: + - Copyright (c) Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://research.microsoft.com/downloads +--- + Microsoft Research Shared diff --git a/src/licensedcode/data/licenses/ms-research-shared-source.yml b/src/licensedcode/data/licenses/ms-research-shared-source.yml deleted file mode 100644 index b90407e91c5..00000000000 --- a/src/licensedcode/data/licenses/ms-research-shared-source.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ms-research-shared-source -short_name: MS Research Shared Source License -name: Microsoft Research Shared Source License -category: Proprietary Free -owner: Microsoft -homepage_url: http://research.microsoft.com/downloads -spdx_license_key: LicenseRef-scancode-ms-research-shared-source -other_urls: - - http://research.microsoft.com/downloads -ignorable_copyrights: - - Copyright (c) Microsoft Corporation -ignorable_holders: - - Microsoft Corporation -ignorable_urls: - - http://research.microsoft.com/downloads diff --git a/src/licensedcode/data/licenses/ms-rl.LICENSE b/src/licensedcode/data/licenses/ms-rl.LICENSE index ca60475a797..904a47d5372 100644 --- a/src/licensedcode/data/licenses/ms-rl.LICENSE +++ b/src/licensedcode/data/licenses/ms-rl.LICENSE @@ -1,3 +1,22 @@ +--- +key: ms-rl +short_name: MS-RL +name: Microsoft Reciprocal License +category: Copyleft Limited +owner: Microsoft +homepage_url: http://www.microsoft.com/opensource/licenses.mspx#Ms-RL +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MS-RL +text_urls: + - http://www.microsoft.com/opensource/licenses.mspx#Ms-RL +osi_url: http://www.opensource.org/licenses/ms-rl.html +other_urls: + - http://www.microsoft.com/en-us/openness/licenses.aspx#MRL + - http://www.microsoft.com/opensource/licenses.mspx + - http://www.opensource.org/licenses/MS-RL + - https://opensource.org/licenses/MS-RL +--- + Microsoft Reciprocal License (Ms-RL) This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/src/licensedcode/data/licenses/ms-rl.yml b/src/licensedcode/data/licenses/ms-rl.yml deleted file mode 100644 index beef2a4fd95..00000000000 --- a/src/licensedcode/data/licenses/ms-rl.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: ms-rl -short_name: MS-RL -name: Microsoft Reciprocal License -category: Copyleft Limited -owner: Microsoft -homepage_url: http://www.microsoft.com/opensource/licenses.mspx#Ms-RL -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: MS-RL -text_urls: - - http://www.microsoft.com/opensource/licenses.mspx#Ms-RL -osi_url: http://www.opensource.org/licenses/ms-rl.html -other_urls: - - http://www.microsoft.com/en-us/openness/licenses.aspx#MRL - - http://www.microsoft.com/opensource/licenses.mspx - - http://www.opensource.org/licenses/MS-RL - - https://opensource.org/licenses/MS-RL diff --git a/src/licensedcode/data/licenses/ms-rsl.LICENSE b/src/licensedcode/data/licenses/ms-rsl.LICENSE index d39b1200332..f5056d29f53 100644 --- a/src/licensedcode/data/licenses/ms-rsl.LICENSE +++ b/src/licensedcode/data/licenses/ms-rsl.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-rsl +short_name: MS Reference Source License +name: Microsoft Reference Source License +category: Proprietary Free +owner: Microsoft +homepage_url: http://referencesource.microsoft.com/license.html +notes: "This is a rarely seen license. It was used shortly in 2005/2007 with the release of\n\ + some .Net code. There are two versions one published in 2006 and this\nversion from March\ + \ 2007 . It is sometimes named Microsoft Reference License (Ms-RL)\nwith the exact same\ + \ text. \n" +spdx_license_key: LicenseRef-scancode-ms-rsl +text_urls: + - http://www.microsoft.com/resources/sharedsource/referencesourcelicense.mspx +--- + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. 1. Definitions diff --git a/src/licensedcode/data/licenses/ms-rsl.yml b/src/licensedcode/data/licenses/ms-rsl.yml deleted file mode 100644 index c216612b4d1..00000000000 --- a/src/licensedcode/data/licenses/ms-rsl.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ms-rsl -short_name: MS Reference Source License -name: Microsoft Reference Source License -category: Proprietary Free -owner: Microsoft -homepage_url: http://referencesource.microsoft.com/license.html -notes: "This is a rarely seen license. It was used shortly in 2005/2007 with the release of\n\ - some .Net code. There are two versions one published in 2006 and this\nversion from March\ - \ 2007 . It is sometimes named Microsoft Reference License (Ms-RL)\nwith the exact same\ - \ text. \n" -spdx_license_key: LicenseRef-scancode-ms-rsl -text_urls: - - http://www.microsoft.com/resources/sharedsource/referencesourcelicense.mspx diff --git a/src/licensedcode/data/licenses/ms-silverlight-3.LICENSE b/src/licensedcode/data/licenses/ms-silverlight-3.LICENSE index 5c1ca98619a..586f3fed634 100644 --- a/src/licensedcode/data/licenses/ms-silverlight-3.LICENSE +++ b/src/licensedcode/data/licenses/ms-silverlight-3.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-silverlight-3 +short_name: MS Silverlight 3 License +name: Microsoft Silverlight 3 License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-silverlight-3 +ignorable_urls: + - http://www.microsoft.com/exporting + - http://www.mpegla.com/ + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS MICROSOFT SILVERLIGHT 3 TOOLS FOR VISUAL STUDIO 2008, Service Pack 1 @@ -144,4 +157,4 @@ b. Outside the United States. If you acquired the software in any other country, This limitation applies to · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-silverlight-3.yml b/src/licensedcode/data/licenses/ms-silverlight-3.yml deleted file mode 100644 index 125a4998fc3..00000000000 --- a/src/licensedcode/data/licenses/ms-silverlight-3.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-silverlight-3 -short_name: MS Silverlight 3 License -name: Microsoft Silverlight 3 License -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-silverlight-3 -ignorable_urls: - - http://www.microsoft.com/exporting - - http://www.mpegla.com/ - - http://www.support.microsoft.com/common/international.aspx diff --git a/src/licensedcode/data/licenses/ms-sql-server-compact-4.0.LICENSE b/src/licensedcode/data/licenses/ms-sql-server-compact-4.0.LICENSE index cc4a712a786..387532f037b 100644 --- a/src/licensedcode/data/licenses/ms-sql-server-compact-4.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-sql-server-compact-4.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-sql-server-compact-4.0 +short_name: MS SQL Server Compact 4.0 License +name: Microsoft SQL Server Compact 4.0 License +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/SQLCE_EULA_ENU.rtf +spdx_license_key: LicenseRef-scancode-ms-sql-server-compact-4.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SQL SERVER COMPACT 4.0 diff --git a/src/licensedcode/data/licenses/ms-sql-server-compact-4.0.yml b/src/licensedcode/data/licenses/ms-sql-server-compact-4.0.yml deleted file mode 100644 index b2393246d31..00000000000 --- a/src/licensedcode/data/licenses/ms-sql-server-compact-4.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-sql-server-compact-4.0 -short_name: MS SQL Server Compact 4.0 License -name: Microsoft SQL Server Compact 4.0 License -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/SQLCE_EULA_ENU.rtf -spdx_license_key: LicenseRef-scancode-ms-sql-server-compact-4.0 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-sql-server-data-tools.LICENSE b/src/licensedcode/data/licenses/ms-sql-server-data-tools.LICENSE index a1738ebba2d..45f41167832 100644 --- a/src/licensedcode/data/licenses/ms-sql-server-data-tools.LICENSE +++ b/src/licensedcode/data/licenses/ms-sql-server-data-tools.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-sql-server-data-tools +short_name: MS SQL Server Data Tools License +name: Microsoft SQL Server Data Tools License +category: Proprietary Free +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/sql/ssdt/sql-server-data-tools-license-terms +spdx_license_key: LicenseRef-scancode-ms-sql-server-data-tools +ignorable_urls: + - http://go.microsoft.com/?linkid=9710837 + - http://go.microsoft.com/fwlink/?LinkID=248686 + - http://www.microsoft.com/exporting +--- + SQL Server Data Tools - License Terms MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT SQL SERVER DATA TOOLS diff --git a/src/licensedcode/data/licenses/ms-sql-server-data-tools.yml b/src/licensedcode/data/licenses/ms-sql-server-data-tools.yml deleted file mode 100644 index 371327b2e5d..00000000000 --- a/src/licensedcode/data/licenses/ms-sql-server-data-tools.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-sql-server-data-tools -short_name: MS SQL Server Data Tools License -name: Microsoft SQL Server Data Tools License -category: Proprietary Free -owner: Microsoft -homepage_url: https://docs.microsoft.com/en-us/sql/ssdt/sql-server-data-tools-license-terms -spdx_license_key: LicenseRef-scancode-ms-sql-server-data-tools -ignorable_urls: - - http://go.microsoft.com/?linkid=9710837 - - http://go.microsoft.com/fwlink/?LinkID=248686 - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-sspl.LICENSE b/src/licensedcode/data/licenses/ms-sspl.LICENSE index fc0e4d1639e..91e4c3387c1 100644 --- a/src/licensedcode/data/licenses/ms-sspl.LICENSE +++ b/src/licensedcode/data/licenses/ms-sspl.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-sspl +short_name: MS-SS-PL +name: Microsoft Shared Source Permissive License (SS-PL) +category: Permissive +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-sspl +--- + Microsoft Shared Source Permissive License (SS-PL) Published: October 18, 2005 diff --git a/src/licensedcode/data/licenses/ms-sspl.yml b/src/licensedcode/data/licenses/ms-sspl.yml deleted file mode 100644 index 75920c78400..00000000000 --- a/src/licensedcode/data/licenses/ms-sspl.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: ms-sspl -short_name: MS-SS-PL -name: Microsoft Shared Source Permissive License (SS-PL) -category: Permissive -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-sspl diff --git a/src/licensedcode/data/licenses/ms-sysinternals-sla.LICENSE b/src/licensedcode/data/licenses/ms-sysinternals-sla.LICENSE index eece5a239ef..a3be4e88d8c 100644 --- a/src/licensedcode/data/licenses/ms-sysinternals-sla.LICENSE +++ b/src/licensedcode/data/licenses/ms-sysinternals-sla.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-sysinternals-sla +short_name: MS Sysinternals SLA +name: Microsoft Sysinternals Software License Terms +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-sysinternals-sla +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Sysinternals Software License Terms 09/27/2009 diff --git a/src/licensedcode/data/licenses/ms-sysinternals-sla.yml b/src/licensedcode/data/licenses/ms-sysinternals-sla.yml deleted file mode 100644 index cbef8dffa84..00000000000 --- a/src/licensedcode/data/licenses/ms-sysinternals-sla.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-sysinternals-sla -short_name: MS Sysinternals SLA -name: Microsoft Sysinternals Software License Terms -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-sysinternals-sla -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-testplatform-17.0.0.LICENSE b/src/licensedcode/data/licenses/ms-testplatform-17.0.0.LICENSE index 7eeaac753d5..90c4cf4ba48 100644 --- a/src/licensedcode/data/licenses/ms-testplatform-17.0.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-testplatform-17.0.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-testplatform-17.0.0 +short_name: MS TestPlatform 17.0.0 +name: Microsoft Visual Studio TestPlatform 17.0.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.TestPlatform/17.0.0/license +spdx_license_key: LicenseRef-scancode-ms-testplatform-17.0.0 +ignorable_urls: + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkId=521839 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO TEST PLATFORM diff --git a/src/licensedcode/data/licenses/ms-testplatform-17.0.0.yml b/src/licensedcode/data/licenses/ms-testplatform-17.0.0.yml deleted file mode 100644 index 88f63e71379..00000000000 --- a/src/licensedcode/data/licenses/ms-testplatform-17.0.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-testplatform-17.0.0 -short_name: MS TestPlatform 17.0.0 -name: Microsoft Visual Studio TestPlatform 17.0.0 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.nuget.org/packages/Microsoft.TestPlatform/17.0.0/license -spdx_license_key: LicenseRef-scancode-ms-testplatform-17.0.0 -ignorable_urls: - - http://www.microsoft.com/exporting - - https://go.microsoft.com/fwlink/?LinkId=521839 diff --git a/src/licensedcode/data/licenses/ms-ttf-eula.LICENSE b/src/licensedcode/data/licenses/ms-ttf-eula.LICENSE index 856623cc948..d4eb3e945a2 100644 --- a/src/licensedcode/data/licenses/ms-ttf-eula.LICENSE +++ b/src/licensedcode/data/licenses/ms-ttf-eula.LICENSE @@ -1,3 +1,12 @@ +--- +key: ms-ttf-eula +short_name: MS TrueType Fonts EULA +name: Microsoft TrueType Fonts EULA +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-ttf-eula +--- + Microsoft TrueType Fonts END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE --------------------------------------------------- diff --git a/src/licensedcode/data/licenses/ms-ttf-eula.yml b/src/licensedcode/data/licenses/ms-ttf-eula.yml deleted file mode 100644 index 661bf04b166..00000000000 --- a/src/licensedcode/data/licenses/ms-ttf-eula.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: ms-ttf-eula -short_name: MS TrueType Fonts EULA -name: Microsoft TrueType Fonts EULA -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-ttf-eula diff --git a/src/licensedcode/data/licenses/ms-typescript-msbuild-4.1.4.LICENSE b/src/licensedcode/data/licenses/ms-typescript-msbuild-4.1.4.LICENSE index d5ec8e7b99a..85af919e7e0 100644 --- a/src/licensedcode/data/licenses/ms-typescript-msbuild-4.1.4.LICENSE +++ b/src/licensedcode/data/licenses/ms-typescript-msbuild-4.1.4.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-typescript-msbuild-4.1.4 +short_name: MS TypeScript MSBuild 4.1.4 +name: Microsoft TypeScript MSBuild 4.1.4 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild/4.1.4/License +spdx_license_key: LicenseRef-scancode-ms-typescript-msbuild-4.1.4 +ignorable_urls: + - http://www.microsoft.com/licensing/userights + - https://docs.microsoft.com/en-us/legal/gdpr + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://go.microsoft.com/fwlink/?linkid=823097 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT TYPESCRIPT SOFTWARE DEVELOPMENT KIT diff --git a/src/licensedcode/data/licenses/ms-typescript-msbuild-4.1.4.yml b/src/licensedcode/data/licenses/ms-typescript-msbuild-4.1.4.yml deleted file mode 100644 index 43de5f3f570..00000000000 --- a/src/licensedcode/data/licenses/ms-typescript-msbuild-4.1.4.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-typescript-msbuild-4.1.4 -short_name: MS TypeScript MSBuild 4.1.4 -name: Microsoft TypeScript MSBuild 4.1.4 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild/4.1.4/License -spdx_license_key: LicenseRef-scancode-ms-typescript-msbuild-4.1.4 -ignorable_urls: - - http://www.microsoft.com/licensing/userights - - https://docs.microsoft.com/en-us/legal/gdpr - - https://go.microsoft.com/fwlink/?LinkID=824704 - - https://go.microsoft.com/fwlink/?linkid=823097 diff --git a/src/licensedcode/data/licenses/ms-visual-2008-runtime.LICENSE b/src/licensedcode/data/licenses/ms-visual-2008-runtime.LICENSE index 0ee23442106..e45946eb79d 100644 --- a/src/licensedcode/data/licenses/ms-visual-2008-runtime.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-2008-runtime.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-visual-2008-runtime +short_name: MS Visual C++ 2008 Runtime Libraries License +name: Microsoft Visual C++ 2008 Runtime Libraries License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-visual-2008-runtime +other_urls: + - http://msdn.microsoft.com/en-us/library/vstudio/ms235299.aspx +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL C++ 2008 RUNTIME LIBRARIES (X86, IA64 AND X64) diff --git a/src/licensedcode/data/licenses/ms-visual-2008-runtime.yml b/src/licensedcode/data/licenses/ms-visual-2008-runtime.yml deleted file mode 100644 index 71bcc41cf4b..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-2008-runtime.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-visual-2008-runtime -short_name: MS Visual C++ 2008 Runtime Libraries License -name: Microsoft Visual C++ 2008 Runtime Libraries License -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-visual-2008-runtime -other_urls: - - http://msdn.microsoft.com/en-us/library/vstudio/ms235299.aspx -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-visual-2010-runtime.LICENSE b/src/licensedcode/data/licenses/ms-visual-2010-runtime.LICENSE index a14dbf56df3..ce5212e7520 100644 --- a/src/licensedcode/data/licenses/ms-visual-2010-runtime.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-2010-runtime.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-visual-2010-runtime +short_name: MS Visual C++ 2010 Runtime Libraries License +name: Microsoft Visual C++ 2010 Runtime Libraries License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-visual-2010-runtime +faq_url: http://msdn.microsoft.com/en-us/library/vstudio/ms235299(v=vs.100).aspx +other_urls: + - www.microsoft.com/exporting +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL C++ 2010 RUNTIME LIBRARIES diff --git a/src/licensedcode/data/licenses/ms-visual-2010-runtime.yml b/src/licensedcode/data/licenses/ms-visual-2010-runtime.yml deleted file mode 100644 index ca1610146b0..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-2010-runtime.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-visual-2010-runtime -short_name: MS Visual C++ 2010 Runtime Libraries License -name: Microsoft Visual C++ 2010 Runtime Libraries License -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-visual-2010-runtime -faq_url: http://msdn.microsoft.com/en-us/library/vstudio/ms235299(v=vs.100).aspx -other_urls: - - www.microsoft.com/exporting -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-visual-2015-sdk.LICENSE b/src/licensedcode/data/licenses/ms-visual-2015-sdk.LICENSE index b4c9ccf2016..2baefdb7b51 100644 --- a/src/licensedcode/data/licenses/ms-visual-2015-sdk.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-2015-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-visual-2015-sdk +short_name: MS Visual Studio 2015 SDK +name: Microsoft Visual Studio 2015 Software Development Kit License +category: Proprietary Free +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/mt171586/ +spdx_license_key: LicenseRef-scancode-ms-visual-2015-sdk +other_urls: + - http://go.microsoft.com/fwlink/?LinkID=614949 +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=528096 + - http://go.microsoft.com/fwlink/?LinkId=523763&clcid=0x409 +--- + MICROSOFT VISUAL STUDIO 2015 SOFTWARE DEVELOPMENT KIT These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have additional terms. diff --git a/src/licensedcode/data/licenses/ms-visual-2015-sdk.yml b/src/licensedcode/data/licenses/ms-visual-2015-sdk.yml deleted file mode 100644 index 18b378a1374..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-2015-sdk.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-visual-2015-sdk -short_name: MS Visual Studio 2015 SDK -name: Microsoft Visual Studio 2015 Software Development Kit License -category: Proprietary Free -owner: Microsoft -homepage_url: https://visualstudio.microsoft.com/license-terms/mt171586/ -spdx_license_key: LicenseRef-scancode-ms-visual-2015-sdk -other_urls: - - http://go.microsoft.com/fwlink/?LinkID=614949 -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=528096 - - http://go.microsoft.com/fwlink/?LinkId=523763&clcid=0x409 diff --git a/src/licensedcode/data/licenses/ms-visual-cpp-2015-runtime.LICENSE b/src/licensedcode/data/licenses/ms-visual-cpp-2015-runtime.LICENSE index 7efd5f94aa0..4524e45e1ff 100644 --- a/src/licensedcode/data/licenses/ms-visual-cpp-2015-runtime.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-cpp-2015-runtime.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-visual-cpp-2015-runtime +short_name: MS Visual C++ 2015-2022 Runtime +name: Microsoft Visual C++ 2015-2022 Runtime +category: Proprietary Free +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/vs2022-cruntime/ +spdx_license_key: LicenseRef-scancode-ms-visual-cpp-2015-runtime +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL C++ 2015 - 2022 RUNTIME diff --git a/src/licensedcode/data/licenses/ms-visual-cpp-2015-runtime.yml b/src/licensedcode/data/licenses/ms-visual-cpp-2015-runtime.yml deleted file mode 100644 index bdc3ebb6373..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-cpp-2015-runtime.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-visual-cpp-2015-runtime -short_name: MS Visual C++ 2015-2022 Runtime -name: Microsoft Visual C++ 2015-2022 Runtime -category: Proprietary Free -owner: Microsoft -homepage_url: https://visualstudio.microsoft.com/license-terms/vs2022-cruntime/ -spdx_license_key: LicenseRef-scancode-ms-visual-cpp-2015-runtime -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-visual-studio-2017-tools.LICENSE b/src/licensedcode/data/licenses/ms-visual-studio-2017-tools.LICENSE index eeb8c48c151..8b13cab54ac 100644 --- a/src/licensedcode/data/licenses/ms-visual-studio-2017-tools.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-studio-2017-tools.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-visual-studio-2017-tools +short_name: MS Visual Studio 2017 Tools +name: Microsoft Visual Studio 2017 Tools +category: Commercial +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/mlt552233/ +spdx_license_key: LicenseRef-scancode-ms-visual-studio-2017-tools +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://go.microsoft.com/fwlink/?linkid=823097 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO 2017 TOOLS, ADD-ONs and EXTENSIONS @@ -72,4 +87,4 @@ It also applies even if Microsoft knew or should have known about the possibilit limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. -EULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU \ No newline at end of file +EULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-visual-studio-2017-tools.yml b/src/licensedcode/data/licenses/ms-visual-studio-2017-tools.yml deleted file mode 100644 index 3d899e89265..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-studio-2017-tools.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-visual-studio-2017-tools -short_name: MS Visual Studio 2017 Tools -name: Microsoft Visual Studio 2017 Tools -category: Commercial -owner: Microsoft -homepage_url: https://visualstudio.microsoft.com/license-terms/mlt552233/ -spdx_license_key: LicenseRef-scancode-ms-visual-studio-2017-tools -ignorable_urls: - - http://go.microsoft.com/?linkid=9840733 - - http://www.microsoft.com/exporting - - https://go.microsoft.com/fwlink/?LinkID=824704 - - https://go.microsoft.com/fwlink/?linkid=823097 diff --git a/src/licensedcode/data/licenses/ms-visual-studio-2017.LICENSE b/src/licensedcode/data/licenses/ms-visual-studio-2017.LICENSE index 5d72ac2a191..8aea248b845 100644 --- a/src/licensedcode/data/licenses/ms-visual-studio-2017.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-studio-2017.LICENSE @@ -1,3 +1,26 @@ +--- +key: ms-visual-studio-2017 +short_name: MS Visual Studio 2017 +name: Microsoft Visual Studio 2017 +category: Commercial +owner: Microsoft +homepage_url: https://visualstudio.microsoft.com/license-terms/mlt687465/ +spdx_license_key: LicenseRef-scancode-ms-visual-studio-2017 +text_urls: + - See https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx + - https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx +faq_url: https://visualstudio.microsoft.com/wp-content/uploads/2017/11/Visual-Studio-2018-Licensing-Whitepaper-November-2017.pdf +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.howtotell.com/ + - http://www.microsoft.com/exporting + - http://www.microsoft.com/info/nareturns.htm + - http://www.microsoft.com/worldwide + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://go.microsoft.com/fwlink/?linkid=823097 + - https://support.microsoft.com/ +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO ENTERPRISE 2017, VISUAL STUDIO PROFESSIONAL 2017, VISUAL STUDIO TEST PROFESSIONAL 2017 AND TRIAL EDITION diff --git a/src/licensedcode/data/licenses/ms-visual-studio-2017.yml b/src/licensedcode/data/licenses/ms-visual-studio-2017.yml deleted file mode 100644 index 9b57cea8c48..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-studio-2017.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: ms-visual-studio-2017 -short_name: MS Visual Studio 2017 -name: Microsoft Visual Studio 2017 -category: Commercial -owner: Microsoft -homepage_url: https://visualstudio.microsoft.com/license-terms/mlt687465/ -spdx_license_key: LicenseRef-scancode-ms-visual-studio-2017 -text_urls: - - See https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx - - https://visualstudio.microsoft.com/wp-content/uploads/2018/03/VS_2017_ENT_PRO_TRIAL_RTW_ENU_Eula.1033.docx -faq_url: https://visualstudio.microsoft.com/wp-content/uploads/2017/11/Visual-Studio-2018-Licensing-Whitepaper-November-2017.pdf -ignorable_urls: - - http://go.microsoft.com/?linkid=9840733 - - http://www.howtotell.com/ - - http://www.microsoft.com/exporting - - http://www.microsoft.com/info/nareturns.htm - - http://www.microsoft.com/worldwide - - https://go.microsoft.com/fwlink/?LinkID=824704 - - https://go.microsoft.com/fwlink/?linkid=823097 - - https://support.microsoft.com/ diff --git a/src/licensedcode/data/licenses/ms-visual-studio-code-2018.LICENSE b/src/licensedcode/data/licenses/ms-visual-studio-code-2018.LICENSE index 6695e5513f7..5af05507db1 100644 --- a/src/licensedcode/data/licenses/ms-visual-studio-code-2018.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-studio-code-2018.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-visual-studio-code-2018 +short_name: MS Visual Studio Code License 2018 +name: Microsoft Visual Studio Code License 2018 +category: Proprietary Free +owner: Microsoft +homepage_url: https://code.visualstudio.com/license +spdx_license_key: LicenseRef-scancode-ms-visual-studio-code-2018 +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO CODE diff --git a/src/licensedcode/data/licenses/ms-visual-studio-code-2018.yml b/src/licensedcode/data/licenses/ms-visual-studio-code-2018.yml deleted file mode 100644 index f619c78054a..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-studio-code-2018.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-visual-studio-code-2018 -short_name: MS Visual Studio Code License 2018 -name: Microsoft Visual Studio Code License 2018 -category: Proprietary Free -owner: Microsoft -homepage_url: https://code.visualstudio.com/license -spdx_license_key: LicenseRef-scancode-ms-visual-studio-code-2018 -ignorable_urls: - - http://go.microsoft.com/?linkid=9840733 - - http://www.microsoft.com/exporting - - https://go.microsoft.com/fwlink/?LinkID=824704 diff --git a/src/licensedcode/data/licenses/ms-visual-studio-code-2022.LICENSE b/src/licensedcode/data/licenses/ms-visual-studio-code-2022.LICENSE index 1d225760715..2b333c6fd07 100644 --- a/src/licensedcode/data/licenses/ms-visual-studio-code-2022.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-studio-code-2022.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-visual-studio-code-2022 +short_name: MS Visual Studio Code License 2022 +name: Microsoft Visual Studio Code License 2022 +category: Proprietary Free +owner: Microsoft +homepage_url: https://code.visualstudio.com/license +spdx_license_key: LicenseRef-scancode-ms-visual-studio-code-2022 +ignorable_urls: + - https://aka.ms/vsmarketplace-ToU + - https://code.visualstudio.com/docs/supporting/faq#_how-to-disable + - https://docs.microsoft.com/legal/gdpr + - https://github.com/Microsoft/vscode + - https://go.microsoft.com/fwlink/?LinkID=616397 + - https://go.microsoft.com/fwlink/?LinkID=824704 + - https://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO CODE diff --git a/src/licensedcode/data/licenses/ms-visual-studio-code-2022.yml b/src/licensedcode/data/licenses/ms-visual-studio-code-2022.yml deleted file mode 100644 index bf6f0387d4c..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-studio-code-2022.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ms-visual-studio-code-2022 -short_name: MS Visual Studio Code License 2022 -name: Microsoft Visual Studio Code License 2022 -category: Proprietary Free -owner: Microsoft -homepage_url: https://code.visualstudio.com/license -spdx_license_key: LicenseRef-scancode-ms-visual-studio-code-2022 -ignorable_urls: - - https://aka.ms/vsmarketplace-ToU - - https://code.visualstudio.com/docs/supporting/faq#_how-to-disable - - https://docs.microsoft.com/legal/gdpr - - https://github.com/Microsoft/vscode - - https://go.microsoft.com/fwlink/?LinkID=616397 - - https://go.microsoft.com/fwlink/?LinkID=824704 - - https://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-visual-studio-code.LICENSE b/src/licensedcode/data/licenses/ms-visual-studio-code.LICENSE index 336ee512990..ddf2b75d6b0 100644 --- a/src/licensedcode/data/licenses/ms-visual-studio-code.LICENSE +++ b/src/licensedcode/data/licenses/ms-visual-studio-code.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-visual-studio-code +short_name: MS Visual Studio Code License +name: Microsoft Visual Studio Code License +category: Proprietary Free +owner: Microsoft +homepage_url: https://code.visualstudio.com/License/ +spdx_license_key: LicenseRef-scancode-ms-visual-studio-code +faq_url: https://code.visualstudio.com/ +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409 + - http://go.microsoft.com/fwlink/?LinkID=616397 + - http://thirdpartysource.microsoft.com/ + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO CODE @@ -138,4 +154,4 @@ extent permitted by applicable law. It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of -incidental, consequential or other damages. +incidental, consequential or other damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-visual-studio-code.yml b/src/licensedcode/data/licenses/ms-visual-studio-code.yml deleted file mode 100644 index 5bb90fe9f76..00000000000 --- a/src/licensedcode/data/licenses/ms-visual-studio-code.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ms-visual-studio-code -short_name: MS Visual Studio Code License -name: Microsoft Visual Studio Code License -category: Proprietary Free -owner: Microsoft -homepage_url: https://code.visualstudio.com/License/ -spdx_license_key: LicenseRef-scancode-ms-visual-studio-code -faq_url: https://code.visualstudio.com/ -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409 - - http://go.microsoft.com/fwlink/?LinkID=616397 - - http://thirdpartysource.microsoft.com/ - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-vs-addons-ext-17.2.0.LICENSE b/src/licensedcode/data/licenses/ms-vs-addons-ext-17.2.0.LICENSE index 98684ada8e1..5001b37879d 100644 --- a/src/licensedcode/data/licenses/ms-vs-addons-ext-17.2.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-vs-addons-ext-17.2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ms-vs-addons-ext-17.2.0 +short_name: MS VS Add-Ons and Extensions 17.2.0 +name: Microsoft Visual Studio Add-Ons and Extensions 17.2.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Microsoft.VisualStudio.Debugger.Contracts/17.2.0/License +spdx_license_key: LicenseRef-scancode-ms-vs-addons-ext-17.2.0 +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/2955 +ignorable_urls: + - http://www.microsoft.com/exporting + - https://docs.microsoft.com/en-us/legal/gdpr + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT VISUAL STUDIO ADD-ONs and EXTENSIONS diff --git a/src/licensedcode/data/licenses/ms-vs-addons-ext-17.2.0.yml b/src/licensedcode/data/licenses/ms-vs-addons-ext-17.2.0.yml deleted file mode 100644 index 51e4874c760..00000000000 --- a/src/licensedcode/data/licenses/ms-vs-addons-ext-17.2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ms-vs-addons-ext-17.2.0 -short_name: MS VS Add-Ons and Extensions 17.2.0 -name: Microsoft Visual Studio Add-Ons and Extensions 17.2.0 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.nuget.org/packages/Microsoft.VisualStudio.Debugger.Contracts/17.2.0/License -spdx_license_key: LicenseRef-scancode-ms-vs-addons-ext-17.2.0 -other_urls: - - https://github.com/nexB/scancode-toolkit/issues/2955 -ignorable_urls: - - http://www.microsoft.com/exporting - - https://docs.microsoft.com/en-us/legal/gdpr - - https://go.microsoft.com/fwlink/?LinkID=824704 diff --git a/src/licensedcode/data/licenses/ms-web-developer-tools-1.0.LICENSE b/src/licensedcode/data/licenses/ms-web-developer-tools-1.0.LICENSE index ed061986c13..f8348d3e4f1 100644 --- a/src/licensedcode/data/licenses/ms-web-developer-tools-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-web-developer-tools-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-web-developer-tools-1.0 +short_name: MS Web Developer Tools 1.0 +name: Microsoft Web Developer Tools 1.0 +category: Proprietary Free +owner: Microsoft +homepage_url: http://www.microsoft.com/web/webpi/eula/webdevelopertools_1_eula_enu.htm +spdx_license_key: LicenseRef-scancode-ms-web-developer-tools-1.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WEB DEVELOPER TOOLS 1.0 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -108,4 +120,4 @@ This limitation applies to · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ms-web-developer-tools-1.0.yml b/src/licensedcode/data/licenses/ms-web-developer-tools-1.0.yml deleted file mode 100644 index a32b134fe9e..00000000000 --- a/src/licensedcode/data/licenses/ms-web-developer-tools-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-web-developer-tools-1.0 -short_name: MS Web Developer Tools 1.0 -name: Microsoft Web Developer Tools 1.0 -category: Proprietary Free -owner: Microsoft -homepage_url: http://www.microsoft.com/web/webpi/eula/webdevelopertools_1_eula_enu.htm -spdx_license_key: LicenseRef-scancode-ms-web-developer-tools-1.0 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-windows-container-base-image-eula-2020.LICENSE b/src/licensedcode/data/licenses/ms-windows-container-base-image-eula-2020.LICENSE index 7c9aea44e36..73c6a74e9b3 100644 --- a/src/licensedcode/data/licenses/ms-windows-container-base-image-eula-2020.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-container-base-image-eula-2020.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-windows-container-base-image-eula-2020 +short_name: MS Windows Container Base Image EULA 2020 +name: Microsoft Windows Container Base Image EULA 2020 +category: Proprietary Free +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/virtualization/windowscontainers/images-eula +spdx_license_key: LicenseRef-scancode-ms-win-container-eula-2020 +other_spdx_license_keys: + - LicenseRef-scancode-ms-windows-container-base-image-eula-2020 +ignorable_urls: + - http://aka.ms/getsource + - http://aka.ms/thirdpartynotices +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE FOR WINDOWS CONTAINER BASE IMAGE diff --git a/src/licensedcode/data/licenses/ms-windows-container-base-image-eula-2020.yml b/src/licensedcode/data/licenses/ms-windows-container-base-image-eula-2020.yml deleted file mode 100644 index 73f9a002ffd..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-container-base-image-eula-2020.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-windows-container-base-image-eula-2020 -short_name: MS Windows Container Base Image EULA 2020 -name: Microsoft Windows Container Base Image EULA 2020 -category: Proprietary Free -owner: Microsoft -homepage_url: https://docs.microsoft.com/en-us/virtualization/windowscontainers/images-eula -spdx_license_key: LicenseRef-scancode-ms-win-container-eula-2020 -other_spdx_license_keys: - - LicenseRef-scancode-ms-windows-container-base-image-eula-2020 -ignorable_urls: - - http://aka.ms/getsource - - http://aka.ms/thirdpartynotices diff --git a/src/licensedcode/data/licenses/ms-windows-driver-kit.LICENSE b/src/licensedcode/data/licenses/ms-windows-driver-kit.LICENSE index 7e34b0432f2..c16b93c5801 100644 --- a/src/licensedcode/data/licenses/ms-windows-driver-kit.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-driver-kit.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-windows-driver-kit +short_name: MS Windows Driver Kit License +name: Microsoft Windows Driver Kit License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-driver-kit +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS DRIVER KIT These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft  updates, diff --git a/src/licensedcode/data/licenses/ms-windows-driver-kit.yml b/src/licensedcode/data/licenses/ms-windows-driver-kit.yml deleted file mode 100644 index 9afc6981153..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-driver-kit.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-windows-driver-kit -short_name: MS Windows Driver Kit License -name: Microsoft Windows Driver Kit License -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-windows-driver-kit -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-windows-identity-foundation.LICENSE b/src/licensedcode/data/licenses/ms-windows-identity-foundation.LICENSE index 364e29f7d28..a4c279e3528 100644 --- a/src/licensedcode/data/licenses/ms-windows-identity-foundation.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-identity-foundation.LICENSE @@ -1,3 +1,17 @@ +--- +key: ms-windows-identity-foundation +short_name: MS Windows Identity Foundation License +name: Microsoft Windows Identity Foundation License +category: Proprietary Free +owner: Microsoft +notes: also contains some French language terms +spdx_license_key: LicenseRef-scancode-ms-windows-identity-foundation +text_urls: + - http://download.microsoft.com/download/7/0/1/70118832-3749-4C75-B860-456FC0712870/wif-nuget-eula-rtm.rtf +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + MICROSOFT SOFTWARE SUPPLEMENTAL LICENSE TERMS WINDOWS IDENTITY FOUNDATION FOR MICROSOFT WINDOWS OPERATING SYSTEMS diff --git a/src/licensedcode/data/licenses/ms-windows-identity-foundation.yml b/src/licensedcode/data/licenses/ms-windows-identity-foundation.yml deleted file mode 100644 index 2a97f8f06d2..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-identity-foundation.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ms-windows-identity-foundation -short_name: MS Windows Identity Foundation License -name: Microsoft Windows Identity Foundation License -category: Proprietary Free -owner: Microsoft -notes: also contains some French language terms -spdx_license_key: LicenseRef-scancode-ms-windows-identity-foundation -text_urls: - - http://download.microsoft.com/download/7/0/1/70118832-3749-4C75-B860-456FC0712870/wif-nuget-eula-rtm.rtf -ignorable_urls: - - http://www.support.microsoft.com/common/international.aspx diff --git a/src/licensedcode/data/licenses/ms-windows-os-2018.LICENSE b/src/licensedcode/data/licenses/ms-windows-os-2018.LICENSE index 4fbc82a6be8..f561dc0c006 100644 --- a/src/licensedcode/data/licenses/ms-windows-os-2018.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-os-2018.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-windows-os-2018 +short_name: MS Windows OS 2018 +name: Microsoft Windows Operating System License 2019 +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-os-2018 +other_urls: + - https://github.com/nexB/scancode-toolkit/files/6909005/license.zip +--- + Last updated June 2018 MICROSOFT SOFTWARE LICENSE TERMS WINDOWS OPERATING SYSTEM diff --git a/src/licensedcode/data/licenses/ms-windows-os-2018.yml b/src/licensedcode/data/licenses/ms-windows-os-2018.yml deleted file mode 100644 index e650827b311..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-os-2018.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-windows-os-2018 -short_name: MS Windows OS 2018 -name: Microsoft Windows Operating System License 2019 -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-windows-os-2018 -other_urls: - - https://github.com/nexB/scancode-toolkit/files/6909005/license.zip diff --git a/src/licensedcode/data/licenses/ms-windows-sdk-server-2008-net-3.5.LICENSE b/src/licensedcode/data/licenses/ms-windows-sdk-server-2008-net-3.5.LICENSE index 64dc9f4358c..908af1718a4 100644 --- a/src/licensedcode/data/licenses/ms-windows-sdk-server-2008-net-3.5.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-sdk-server-2008-net-3.5.LICENSE @@ -1,3 +1,22 @@ +--- +key: ms-windows-sdk-server-2008-net-3.5 +short_name: MS Windows SDK Server 2008 .NET Framework 3.5 +name: Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5 +category: Commercial +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5 +other_spdx_license_keys: + - LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5 +ignorable_copyrights: + - Copyright (c) 2006 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=66406 + - http://www.microsoft.com/exporting + - http://www.microsoft.com/licensing/userights +--- + Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5 License MICROSOFT SOFTWARE LICENSE TERMS diff --git a/src/licensedcode/data/licenses/ms-windows-sdk-server-2008-net-3.5.yml b/src/licensedcode/data/licenses/ms-windows-sdk-server-2008-net-3.5.yml deleted file mode 100644 index 1bd902165e6..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-sdk-server-2008-net-3.5.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: ms-windows-sdk-server-2008-net-3.5 -short_name: MS Windows SDK Server 2008 .NET Framework 3.5 -name: Microsoft Windows SDK for Windows Server 2008 and .NET Framework 3.5 -category: Commercial -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5 -other_spdx_license_keys: - - LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5 -ignorable_copyrights: - - Copyright (c) 2006 Microsoft Corporation -ignorable_holders: - - Microsoft Corporation -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=66406 - - http://www.microsoft.com/exporting - - http://www.microsoft.com/licensing/userights diff --git a/src/licensedcode/data/licenses/ms-windows-sdk-win10.LICENSE b/src/licensedcode/data/licenses/ms-windows-sdk-win10.LICENSE index e96bd1b04c4..0768877c029 100644 --- a/src/licensedcode/data/licenses/ms-windows-sdk-win10.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-sdk-win10.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-windows-sdk-win10 +short_name: MS Enterprise Windows Driver Kit 2021 +name: Microsoft Enterprise Windows Driver Kit License 2021 +category: Commercial +owner: Microsoft +homepage_url: https://docs.microsoft.com/en-us/legal/windows-sdk/license-terms-ewdk +spdx_license_key: LicenseRef-scancode-ms-windows-sdk-win10 +ignorable_urls: + - http://www.mpegla.com/ + - https://go.microsoft.com/fwlink/?LinkID=21969 + - https://go.microsoft.com/fwlink/?LinkId=294840 + - https://go.microsoft.com/fwlink/?LinkId=521839 + - https://go.microsoft.com/fwlink/?LinkId=524838 + - https://go.microsoft.com/fwlink/?LinkId=524839 + - https://www.microsoft.com/en-us/legal/arbitration/default.aspx +--- + MICROSOFT SOFTWARE LICENSE TERMS 03/26/2021 diff --git a/src/licensedcode/data/licenses/ms-windows-sdk-win10.yml b/src/licensedcode/data/licenses/ms-windows-sdk-win10.yml deleted file mode 100644 index 09e207ecf6e..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-sdk-win10.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ms-windows-sdk-win10 -short_name: MS Enterprise Windows Driver Kit 2021 -name: Microsoft Enterprise Windows Driver Kit License 2021 -category: Commercial -owner: Microsoft -homepage_url: https://docs.microsoft.com/en-us/legal/windows-sdk/license-terms-ewdk -spdx_license_key: LicenseRef-scancode-ms-windows-sdk-win10 -ignorable_urls: - - http://www.mpegla.com/ - - https://go.microsoft.com/fwlink/?LinkID=21969 - - https://go.microsoft.com/fwlink/?LinkId=294840 - - https://go.microsoft.com/fwlink/?LinkId=521839 - - https://go.microsoft.com/fwlink/?LinkId=524838 - - https://go.microsoft.com/fwlink/?LinkId=524839 - - https://www.microsoft.com/en-us/legal/arbitration/default.aspx diff --git a/src/licensedcode/data/licenses/ms-windows-sdk-win7-net-4.LICENSE b/src/licensedcode/data/licenses/ms-windows-sdk-win7-net-4.LICENSE index 134f9fabf06..ff10e714978 100644 --- a/src/licensedcode/data/licenses/ms-windows-sdk-win7-net-4.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-sdk-win7-net-4.LICENSE @@ -1,3 +1,21 @@ +--- +key: ms-windows-sdk-win7-net-4 +short_name: MS Windows SDK Windows7 .NET Framework 4 +name: Microsoft Windows SDK for Windows 7 and .NET Framework 4 +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-sdk-win7-net-4 +ignorable_copyrights: + - Copyright (c) 2006 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=185267&clcid=0x409 + - http://go.microsoft.com/fwlink/?LinkID=185268&clcid=0x409 + - http://www.microsoft.com/exporting + - http://www.microsoft.com/licensing/userights +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT WINDOWS SOFTWARE DEVELOPMENT KIT FOR WINDOWS 7 and .NET FRAMEWORK 4 These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft diff --git a/src/licensedcode/data/licenses/ms-windows-sdk-win7-net-4.yml b/src/licensedcode/data/licenses/ms-windows-sdk-win7-net-4.yml deleted file mode 100644 index 1e4a2c76a09..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-sdk-win7-net-4.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ms-windows-sdk-win7-net-4 -short_name: MS Windows SDK Windows7 .NET Framework 4 -name: Microsoft Windows SDK for Windows 7 and .NET Framework 4 -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-windows-sdk-win7-net-4 -ignorable_copyrights: - - Copyright (c) 2006 Microsoft Corporation -ignorable_holders: - - Microsoft Corporation -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=185267&clcid=0x409 - - http://go.microsoft.com/fwlink/?LinkID=185268&clcid=0x409 - - http://www.microsoft.com/exporting - - http://www.microsoft.com/licensing/userights diff --git a/src/licensedcode/data/licenses/ms-windows-server-2003-ddk.LICENSE b/src/licensedcode/data/licenses/ms-windows-server-2003-ddk.LICENSE index 6ce13a4df0c..b61f342e799 100644 --- a/src/licensedcode/data/licenses/ms-windows-server-2003-ddk.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-server-2003-ddk.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-windows-server-2003-ddk +short_name: MS Windows Server 2003 DDK License +name: Microsoft Windows Server 2003 DDK License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-server-2003-ddk +ignorable_urls: + - http://www.microsoft.com/exporting/ +--- + Microsoft Windows Server 2003 DDK License END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE diff --git a/src/licensedcode/data/licenses/ms-windows-server-2003-ddk.yml b/src/licensedcode/data/licenses/ms-windows-server-2003-ddk.yml deleted file mode 100644 index 6c08b500666..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-server-2003-ddk.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-windows-server-2003-ddk -short_name: MS Windows Server 2003 DDK License -name: Microsoft Windows Server 2003 DDK License -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-windows-server-2003-ddk -ignorable_urls: - - http://www.microsoft.com/exporting/ diff --git a/src/licensedcode/data/licenses/ms-windows-server-2003-sdk.LICENSE b/src/licensedcode/data/licenses/ms-windows-server-2003-sdk.LICENSE index ff3ecf5763d..0e0a273be17 100644 --- a/src/licensedcode/data/licenses/ms-windows-server-2003-sdk.LICENSE +++ b/src/licensedcode/data/licenses/ms-windows-server-2003-sdk.LICENSE @@ -1,3 +1,18 @@ +--- +key: ms-windows-server-2003-sdk +short_name: MS Windows Server 2003 SP1 Platform SDK License +name: Microsoft Windows Server 2003 SP1 Platform SDK License +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-windows-server-2003-sdk +ignorable_copyrights: + - Copyright (c) 1999-2005 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Microsoft Windows Server 2003 SP1 Platform SDK License MICROSOFT SOFTWARE LICENSE TERMS diff --git a/src/licensedcode/data/licenses/ms-windows-server-2003-sdk.yml b/src/licensedcode/data/licenses/ms-windows-server-2003-sdk.yml deleted file mode 100644 index ac036f33333..00000000000 --- a/src/licensedcode/data/licenses/ms-windows-server-2003-sdk.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ms-windows-server-2003-sdk -short_name: MS Windows Server 2003 SP1 Platform SDK License -name: Microsoft Windows Server 2003 SP1 Platform SDK License -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-windows-server-2003-sdk -ignorable_copyrights: - - Copyright (c) 1999-2005 Microsoft Corporation -ignorable_holders: - - Microsoft Corporation -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-ws-routing-spec.LICENSE b/src/licensedcode/data/licenses/ms-ws-routing-spec.LICENSE index a8d802af7a3..ec7e4bfb59a 100644 --- a/src/licensedcode/data/licenses/ms-ws-routing-spec.LICENSE +++ b/src/licensedcode/data/licenses/ms-ws-routing-spec.LICENSE @@ -1,3 +1,16 @@ +--- +key: ms-ws-routing-spec +short_name: MS WS Routing Specifications License +name: Microsoft WS Routing Specifications License +category: Permissive +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-ws-routing-spec +ignorable_copyrights: + - Copyright 2001 Microsoft Corporation +ignorable_holders: + - Microsoft Corporation +--- + Microsoft WS Routing Specifications License WS/WS-Routing.xsd Copyright 2001 Microsoft Corporation. All rights reserved. diff --git a/src/licensedcode/data/licenses/ms-ws-routing-spec.yml b/src/licensedcode/data/licenses/ms-ws-routing-spec.yml deleted file mode 100644 index a3e8e3513ac..00000000000 --- a/src/licensedcode/data/licenses/ms-ws-routing-spec.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ms-ws-routing-spec -short_name: MS WS Routing Specifications License -name: Microsoft WS Routing Specifications License -category: Permissive -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-ws-routing-spec -ignorable_copyrights: - - Copyright 2001 Microsoft Corporation -ignorable_holders: - - Microsoft Corporation diff --git a/src/licensedcode/data/licenses/ms-xamarin-uitest3.2.0.LICENSE b/src/licensedcode/data/licenses/ms-xamarin-uitest3.2.0.LICENSE index 742e44da43a..28c971ca02a 100644 --- a/src/licensedcode/data/licenses/ms-xamarin-uitest3.2.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-xamarin-uitest3.2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ms-xamarin-uitest3.2.0 +short_name: MS Xamarin.UITest 3.2.0 +name: Microsoft Xamarin.UITest 3.2.0 +category: Proprietary Free +owner: Microsoft +homepage_url: https://www.nuget.org/packages/Xamarin.UITest/3.2.0/License +spdx_license_key: LicenseRef-scancode-ms-xamarin-uitest3.2.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Xamarin.UITest 3.2.0 License file MICROSOFT SOFTWARE LICENSE TERMS diff --git a/src/licensedcode/data/licenses/ms-xamarin-uitest3.2.0.yml b/src/licensedcode/data/licenses/ms-xamarin-uitest3.2.0.yml deleted file mode 100644 index 35c750f7025..00000000000 --- a/src/licensedcode/data/licenses/ms-xamarin-uitest3.2.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ms-xamarin-uitest3.2.0 -short_name: MS Xamarin.UITest 3.2.0 -name: Microsoft Xamarin.UITest 3.2.0 -category: Proprietary Free -owner: Microsoft -homepage_url: https://www.nuget.org/packages/Xamarin.UITest/3.2.0/License -spdx_license_key: LicenseRef-scancode-ms-xamarin-uitest3.2.0 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/ms-xml-core-4.0.LICENSE b/src/licensedcode/data/licenses/ms-xml-core-4.0.LICENSE index d2fbd42ace4..ea655653540 100644 --- a/src/licensedcode/data/licenses/ms-xml-core-4.0.LICENSE +++ b/src/licensedcode/data/licenses/ms-xml-core-4.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ms-xml-core-4.0 +short_name: MSXML 4.0 EULA +name: Microsoft XML Core Services (MSXML) 4.0 EULA +category: Proprietary Free +owner: Microsoft +spdx_license_key: LicenseRef-scancode-ms-xml-core-4.0 +ignorable_urls: + - http://www.microsoft.com/exporting +--- + Microsoft XML Core Services (MSXML) 4.0 EULA END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE Microsoft xml CORE SERVICES (MSXML) 4.0 diff --git a/src/licensedcode/data/licenses/ms-xml-core-4.0.yml b/src/licensedcode/data/licenses/ms-xml-core-4.0.yml deleted file mode 100644 index 00c04164ece..00000000000 --- a/src/licensedcode/data/licenses/ms-xml-core-4.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ms-xml-core-4.0 -short_name: MSXML 4.0 EULA -name: Microsoft XML Core Services (MSXML) 4.0 EULA -category: Proprietary Free -owner: Microsoft -spdx_license_key: LicenseRef-scancode-ms-xml-core-4.0 -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/licenses/msj-sample-code.LICENSE b/src/licensedcode/data/licenses/msj-sample-code.LICENSE index f824d815ce9..4d88962a35e 100644 --- a/src/licensedcode/data/licenses/msj-sample-code.LICENSE +++ b/src/licensedcode/data/licenses/msj-sample-code.LICENSE @@ -1,3 +1,12 @@ +--- +key: msj-sample-code +short_name: MS Systems Journal Sample Code License +name: Microsoft Systems Journal Sample Code License +category: Permissive +owner: Microsoft +spdx_license_key: LicenseRef-scancode-msj-sample-code +--- + Microsoft grants to you a royalty-free right to use and modify the source code version and to reproduce and distribute the object code version of the sample code, icons, cursors, and bitmaps provided within the Sample Code bin/folder on the SOFTWARE ("Sample Code") provided that you: distribute the Sample Code only in conjunction with and as a part of your software product that adds primary and significant functionality to the sample code; diff --git a/src/licensedcode/data/licenses/msj-sample-code.yml b/src/licensedcode/data/licenses/msj-sample-code.yml deleted file mode 100644 index b1b4a7ee111..00000000000 --- a/src/licensedcode/data/licenses/msj-sample-code.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: msj-sample-code -short_name: MS Systems Journal Sample Code License -name: Microsoft Systems Journal Sample Code License -category: Permissive -owner: Microsoft -spdx_license_key: LicenseRef-scancode-msj-sample-code diff --git a/src/licensedcode/data/licenses/msntp.LICENSE b/src/licensedcode/data/licenses/msntp.LICENSE index b458f4254ec..23242803545 100644 --- a/src/licensedcode/data/licenses/msntp.LICENSE +++ b/src/licensedcode/data/licenses/msntp.LICENSE @@ -1,3 +1,26 @@ +--- +key: msntp +short_name: MSNTP License +name: MSNTP software license +category: Copyleft +owner: Fedora +homepage_url: http://fedoraproject.org/wiki/Licensing/MSNTP +spdx_license_key: LicenseRef-scancode-msntp +text_urls: + - http://fedoraproject.org/wiki/Licensing/MSNTP +ignorable_copyrights: + - (c) Copyright N.M. Maclaren + - (c) Copyright University of Cambridge + - (c) Copyright, N.M. Maclaren, 1996, 1997, 2000 + - (c) Copyright, University of Cambridge, 1996, 1997, 2000 +ignorable_holders: + - N.M. Maclaren + - University of Cambridge +ignorable_authors: + - N.M. Maclaren + - the University of Cambridge +--- + General Public Licence for the software known as MSNTP ------------------------------------------------------ diff --git a/src/licensedcode/data/licenses/msntp.yml b/src/licensedcode/data/licenses/msntp.yml deleted file mode 100644 index 2fa9cd920fd..00000000000 --- a/src/licensedcode/data/licenses/msntp.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: msntp -short_name: MSNTP License -name: MSNTP software license -category: Copyleft -owner: Fedora -homepage_url: http://fedoraproject.org/wiki/Licensing/MSNTP -spdx_license_key: LicenseRef-scancode-msntp -text_urls: - - http://fedoraproject.org/wiki/Licensing/MSNTP -ignorable_copyrights: - - (c) Copyright N.M. Maclaren - - (c) Copyright University of Cambridge - - (c) Copyright, N.M. Maclaren, 1996, 1997, 2000 - - (c) Copyright, University of Cambridge, 1996, 1997, 2000 -ignorable_holders: - - N.M. Maclaren - - University of Cambridge -ignorable_authors: - - N.M. Maclaren - - the University of Cambridge diff --git a/src/licensedcode/data/licenses/msppl.LICENSE b/src/licensedcode/data/licenses/msppl.LICENSE index f7a1cb287f3..e5fe5a41803 100644 --- a/src/licensedcode/data/licenses/msppl.LICENSE +++ b/src/licensedcode/data/licenses/msppl.LICENSE @@ -1,3 +1,13 @@ +--- +key: msppl +short_name: MSPPL +name: Microsoft patterns & practices License +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/library/gg405489(v=pandp.40).aspx +spdx_license_key: LicenseRef-scancode-msppl +--- + Microsoft patterns & practices License patterns & practices Developer Center This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/src/licensedcode/data/licenses/msppl.yml b/src/licensedcode/data/licenses/msppl.yml deleted file mode 100644 index 5d5cb609ff0..00000000000 --- a/src/licensedcode/data/licenses/msppl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: msppl -short_name: MSPPL -name: Microsoft patterns & practices License -category: Proprietary Free -owner: Microsoft -homepage_url: http://msdn.microsoft.com/en-us/library/gg405489(v=pandp.40).aspx -spdx_license_key: LicenseRef-scancode-msppl diff --git a/src/licensedcode/data/licenses/mtll.LICENSE b/src/licensedcode/data/licenses/mtll.LICENSE index 62bc83b611f..ade9b531256 100644 --- a/src/licensedcode/data/licenses/mtll.LICENSE +++ b/src/licensedcode/data/licenses/mtll.LICENSE @@ -1,3 +1,21 @@ +--- +key: mtll +short_name: Matrix Template Library License +name: Matrix Template Library License +category: Permissive +owner: Indiana University +homepage_url: https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License +notes: | + Per Fedora, this license was found in the Matrix Template Library. It is + derived from the Apache Software License v1.1, but it is modified in + several ways. It is Free, but GPL-incompatible. +spdx_license_key: MTLL +ignorable_authors: + - at the University of Notre Dame, the Pervasive Technology Labs at Indiana University, + and Dresden University of Technology + - permission, please contact Indiana University Advanced Research & Technology +--- + Software License for MTL diff --git a/src/licensedcode/data/licenses/mtll.yml b/src/licensedcode/data/licenses/mtll.yml deleted file mode 100644 index ce88314d28b..00000000000 --- a/src/licensedcode/data/licenses/mtll.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: mtll -short_name: Matrix Template Library License -name: Matrix Template Library License -category: Permissive -owner: Indiana University -homepage_url: https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License -notes: | - Per Fedora, this license was found in the Matrix Template Library. It is - derived from the Apache Software License v1.1, but it is modified in - several ways. It is Free, but GPL-incompatible. -spdx_license_key: MTLL -ignorable_authors: - - at the University of Notre Dame, the Pervasive Technology Labs at Indiana University, - and Dresden University of Technology - - permission, please contact Indiana University Advanced Research & Technology diff --git a/src/licensedcode/data/licenses/mtx-licensing-statement.LICENSE b/src/licensedcode/data/licenses/mtx-licensing-statement.LICENSE index d48857c1e68..086a9dbecfd 100644 --- a/src/licensedcode/data/licenses/mtx-licensing-statement.LICENSE +++ b/src/licensedcode/data/licenses/mtx-licensing-statement.LICENSE @@ -1,3 +1,17 @@ +--- +key: mtx-licensing-statement +short_name: MicroType Express (MTX) License +name: MicroType Express (MTX) License +category: Proprietary Free +owner: Monotype +homepage_url: https://www.monotype.com/legal/mtx-licensing-statement +spdx_license_key: LicenseRef-scancode-mtx-licensing-statement +other_urls: + - http://www.w3.org/Submission/MTX/ +ignorable_urls: + - http://www.w3.org/Submission/MTX +--- + Patent License Grant. Monotype hereby grants to All a worldwide, non-exclusive, nocharge, royalty-free, irrevocable license under the Licensed Patents to make, use for any purpose, sell, and otherwise distribute and provide Licensed Products and Services, said license having a term until the last to expire of the Licensed Patents. Code and Format License. Monotype hereby grants to All a perpetual, worldwide, nonexclusive, no-charge, royalty-free, irrevocable license under its copyright rights to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and otherwise use in Licensed Products and Services the Licensed Software and the Licensed Format, said license having a term until expiration of the foregoing copyright rights. diff --git a/src/licensedcode/data/licenses/mtx-licensing-statement.yml b/src/licensedcode/data/licenses/mtx-licensing-statement.yml deleted file mode 100644 index ff6212450c4..00000000000 --- a/src/licensedcode/data/licenses/mtx-licensing-statement.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mtx-licensing-statement -short_name: MicroType Express (MTX) License -name: MicroType Express (MTX) License -category: Proprietary Free -owner: Monotype -homepage_url: https://www.monotype.com/legal/mtx-licensing-statement -spdx_license_key: LicenseRef-scancode-mtx-licensing-statement -other_urls: - - http://www.w3.org/Submission/MTX/ -ignorable_urls: - - http://www.w3.org/Submission/MTX diff --git a/src/licensedcode/data/licenses/mulanpsl-1.0-en.LICENSE b/src/licensedcode/data/licenses/mulanpsl-1.0-en.LICENSE index 3df82b646b8..8f1ba1b801e 100644 --- a/src/licensedcode/data/licenses/mulanpsl-1.0-en.LICENSE +++ b/src/licensedcode/data/licenses/mulanpsl-1.0-en.LICENSE @@ -1,3 +1,34 @@ +--- +key: mulanpsl-1.0-en +short_name: Mulan PSL v1.0 (En) +name: Mulan Permissive Software License, Version 1 (English) +category: Permissive +owner: COSCL - China Open Source Cloud League +homepage_url: https://license.coscl.org.cn/MulanPSL +notes: there is also a Chinese version of this text. +spdx_license_key: LicenseRef-scancode-mulanpsl-1.0-en +text_urls: + - https://license.coscl.org.cn/MulanPSL +other_urls: + - https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE +standard_notice: | + [Software Name] is licensed under the Mulan PSL v1. + You can use this software according to the terms and conditions of the + Mulan PSL v1. + You may obtain a copy of Mulan PSL v1 at: + http://license.coscl.org.cn/MulanPSL + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON- + INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. + See the Mulan PSL v1 for more details. +ignorable_copyrights: + - Copyright (c) 2019 name +ignorable_holders: + - name +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL +--- + Mulan Permissive Software License,Version 1 @@ -57,5 +88,4 @@ You may obtain a copy of Mulan PSL v1 at: THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. -See the Mulan PSL v1 for more details. - +See the Mulan PSL v1 for more details. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mulanpsl-1.0-en.yml b/src/licensedcode/data/licenses/mulanpsl-1.0-en.yml deleted file mode 100644 index 1c64bae773f..00000000000 --- a/src/licensedcode/data/licenses/mulanpsl-1.0-en.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: mulanpsl-1.0-en -short_name: Mulan PSL v1.0 (En) -name: Mulan Permissive Software License, Version 1 (English) -category: Permissive -owner: COSCL - China Open Source Cloud League -homepage_url: https://license.coscl.org.cn/MulanPSL -notes: there is also a Chinese version of this text. -spdx_license_key: LicenseRef-scancode-mulanpsl-1.0-en -text_urls: - - https://license.coscl.org.cn/MulanPSL -other_urls: - - https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE -standard_notice: | - [Software Name] is licensed under the Mulan PSL v1. - You can use this software according to the terms and conditions of the - Mulan PSL v1. - You may obtain a copy of Mulan PSL v1 at: - http://license.coscl.org.cn/MulanPSL - THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON- - INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. - See the Mulan PSL v1 for more details. -ignorable_copyrights: - - Copyright (c) 2019 name -ignorable_holders: - - name -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL diff --git a/src/licensedcode/data/licenses/mulanpsl-1.0.LICENSE b/src/licensedcode/data/licenses/mulanpsl-1.0.LICENSE index f2e754b619b..922c214482d 100644 --- a/src/licensedcode/data/licenses/mulanpsl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/mulanpsl-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: mulanpsl-1.0 +language: zh-hans +short_name: Mulan PSL v1 +name: Mulan Permissive Software License, Version 1 +category: Permissive +owner: COSCI +homepage_url: https://license.coscl.org.cn/MulanPSL/ +spdx_license_key: MulanPSL-1.0 +text_urls: + - https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE +ignorable_copyrights: + - Copyright (c) 2019 name +ignorable_holders: + - name +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL +--- + 木兰宽松许可证, 第1版 木兰宽松许可证, 第1版 diff --git a/src/licensedcode/data/licenses/mulanpsl-1.0.yml b/src/licensedcode/data/licenses/mulanpsl-1.0.yml deleted file mode 100644 index 28009da1357..00000000000 --- a/src/licensedcode/data/licenses/mulanpsl-1.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: mulanpsl-1.0 -language: zh-hans -short_name: Mulan PSL v1 -name: Mulan Permissive Software License, Version 1 -category: Permissive -owner: COSCI -homepage_url: https://license.coscl.org.cn/MulanPSL/ -spdx_license_key: MulanPSL-1.0 -text_urls: - - https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE -ignorable_copyrights: - - Copyright (c) 2019 name -ignorable_holders: - - name -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL diff --git a/src/licensedcode/data/licenses/mulanpsl-2.0-en.LICENSE b/src/licensedcode/data/licenses/mulanpsl-2.0-en.LICENSE index 1aae4dbed26..652f9844d15 100644 --- a/src/licensedcode/data/licenses/mulanpsl-2.0-en.LICENSE +++ b/src/licensedcode/data/licenses/mulanpsl-2.0-en.LICENSE @@ -1,3 +1,27 @@ +--- +key: mulanpsl-2.0-en +short_name: Mulan PSL v2.0 (En) +name: Mulan Permissive Software License, Version 2 (English) +category: Permissive +owner: COSCL - China Open Source Cloud League +homepage_url: https://license.coscl.org.cn/MulanPSL2 +notes: there is also a Chinese version of this text. +spdx_license_key: LicenseRef-scancode-mulanpsl-2.0-en +text_urls: + - https://license.coscl.org.cn/MulanPSL2 +standard_notice: | + [Software Name] is licensed under Mulan PSL v2. + You can use this software according to the terms and conditions of the Mulan PSL v2. + You may obtain a copy of Mulan PSL v2 at: + http://license.coscl.org.cn/MulanPSL2 + THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, + EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, + MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. + See the Mulan PSL v2 for more details. +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL2 +--- + Mulan Permissive Software License,Version 2 @@ -61,5 +85,4 @@ You may obtain a copy of Mulan PSL v2 at: THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. -See the Mulan PSL v2 for more details. - +See the Mulan PSL v2 for more details. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mulanpsl-2.0-en.yml b/src/licensedcode/data/licenses/mulanpsl-2.0-en.yml deleted file mode 100644 index 61d91c78249..00000000000 --- a/src/licensedcode/data/licenses/mulanpsl-2.0-en.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: mulanpsl-2.0-en -short_name: Mulan PSL v2.0 (En) -name: Mulan Permissive Software License, Version 2 (English) -category: Permissive -owner: COSCL - China Open Source Cloud League -homepage_url: https://license.coscl.org.cn/MulanPSL2 -notes: there is also a Chinese version of this text. -spdx_license_key: LicenseRef-scancode-mulanpsl-2.0-en -text_urls: - - https://license.coscl.org.cn/MulanPSL2 -standard_notice: | - [Software Name] is licensed under Mulan PSL v2. - You can use this software according to the terms and conditions of the Mulan PSL v2. - You may obtain a copy of Mulan PSL v2 at: - http://license.coscl.org.cn/MulanPSL2 - THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, - EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, - MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. - See the Mulan PSL v2 for more details. -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL2 diff --git a/src/licensedcode/data/licenses/mulanpsl-2.0.LICENSE b/src/licensedcode/data/licenses/mulanpsl-2.0.LICENSE index 3f63a091c40..25efa5520e7 100644 --- a/src/licensedcode/data/licenses/mulanpsl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/mulanpsl-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: mulanpsl-2.0 +language: zh-hans +short_name: Mulan PSL v2 +name: Mulan Permissive Software License, Version 2 +category: Permissive +owner: COSCI +homepage_url: https://license.coscl.org.cn/MulanPSL2/ +spdx_license_key: MulanPSL-2.0 +ignorable_copyrights: + - Copyright (c) Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei +ignorable_holders: + - Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL2 +--- + 木兰宽松许可证, 第2版 木兰宽松许可证, 第2版 diff --git a/src/licensedcode/data/licenses/mulanpsl-2.0.yml b/src/licensedcode/data/licenses/mulanpsl-2.0.yml deleted file mode 100644 index fc4b170524e..00000000000 --- a/src/licensedcode/data/licenses/mulanpsl-2.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: mulanpsl-2.0 -language: zh-hans -short_name: Mulan PSL v2 -name: Mulan Permissive Software License, Version 2 -category: Permissive -owner: COSCI -homepage_url: https://license.coscl.org.cn/MulanPSL2/ -spdx_license_key: MulanPSL-2.0 -ignorable_copyrights: - - Copyright (c) Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei -ignorable_holders: - - Zhong Guo Kai Yuan Yun Lian Meng Jing ICPBei -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL2 diff --git a/src/licensedcode/data/licenses/mule-source-1.1.3.LICENSE b/src/licensedcode/data/licenses/mule-source-1.1.3.LICENSE index 943716db778..1c23b342608 100644 --- a/src/licensedcode/data/licenses/mule-source-1.1.3.LICENSE +++ b/src/licensedcode/data/licenses/mule-source-1.1.3.LICENSE @@ -1,3 +1,25 @@ +--- +key: mule-source-1.1.3 +short_name: Mule Source PL 1.1.3 +name: Mule Source Public License version 1.1.3 +category: Copyleft Limited +owner: MuleSoft Inc. +homepage_url: http://www.MuleSource.com/MSPL +notes: This is a derivative of the MP-1.1 with extra terms +spdx_license_key: LicenseRef-scancode-mule-source-1.1.3 +text_urls: + - https://raw.githubusercontent.com/codehaus/mule-git/master/tags/mule-1.3.3/buildtools/src/main/resources/codecheck/LICENSE.txt +minimum_coverage: 97 +ignorable_copyrights: + - Copyright (c) 2003 MuleSource, Inc. +ignorable_holders: + - MuleSource, Inc. +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.mulesource.com/ + - http://www.mulesource.com/MSPL +--- + MuleSource Public License Version 1.1.3 @@ -440,4 +462,4 @@ the above, the dimensions of the "Powered by Mule" logo must be at least 130 x back to http://www.MuleSource.com. In addition, the copyright notice must remain visible to all users at all times at the bottom of the user interface screen. When users click on the copyright notice, it must direct them back to -http://www.MuleSource.com +http://www.MuleSource.com \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mule-source-1.1.3.yml b/src/licensedcode/data/licenses/mule-source-1.1.3.yml deleted file mode 100644 index 0f65f26fe19..00000000000 --- a/src/licensedcode/data/licenses/mule-source-1.1.3.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: mule-source-1.1.3 -short_name: Mule Source PL 1.1.3 -name: Mule Source Public License version 1.1.3 -category: Copyleft Limited -owner: MuleSoft Inc. -homepage_url: http://www.MuleSource.com/MSPL -notes: This is a derivative of the MP-1.1 with extra terms -spdx_license_key: LicenseRef-scancode-mule-source-1.1.3 -text_urls: - - https://raw.githubusercontent.com/codehaus/mule-git/master/tags/mule-1.3.3/buildtools/src/main/resources/codecheck/LICENSE.txt -minimum_coverage: 97 -ignorable_copyrights: - - Copyright (c) 2003 MuleSource, Inc. -ignorable_holders: - - MuleSource, Inc. -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.mulesource.com/ - - http://www.mulesource.com/MSPL diff --git a/src/licensedcode/data/licenses/mule-source-1.1.4.LICENSE b/src/licensedcode/data/licenses/mule-source-1.1.4.LICENSE index 1f0ab78772a..63189bf8eb6 100644 --- a/src/licensedcode/data/licenses/mule-source-1.1.4.LICENSE +++ b/src/licensedcode/data/licenses/mule-source-1.1.4.LICENSE @@ -1,3 +1,27 @@ +--- +key: mule-source-1.1.4 +short_name: Mule Source PL 1.1.4 +name: Mule Source Public License 1.1.4 +category: Copyleft Limited +owner: MuleSoft Inc. +homepage_url: http://www.MuleSource.com/MSPL +notes: This is a derivative of the MP-1.1 with extra terms +spdx_license_key: LicenseRef-scancode-mule-source-1.1.4 +text_urls: + - https://github.com/codehaus/mule-git/blob/14f4650366b05d691567ba66d14c36dcfbfba47e/tags/muleide-1.3.1-beta1/org.mule.ide/MULE_LICENSE.txt +minimum_coverage: 97 +ignorable_copyrights: + - (c) http://www.mulesource.com + - Copyright (c) 2003 MuleSource, Inc. +ignorable_holders: + - MuleSource, Inc. + - http://www.mulesource.com +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.mulesource.com/ + - http://www.mulesource.com/MSPL +--- + MuleSource Public License Version 1.1.4 @@ -437,4 +461,4 @@ of the Covered Code. : (a) MuleSource Inc. (b) Logo image: http://www.mulesource.com/images/mulesource_logo.gif -(c) http://www.mulesource.com +(c) http://www.mulesource.com \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mule-source-1.1.4.yml b/src/licensedcode/data/licenses/mule-source-1.1.4.yml deleted file mode 100644 index 2f8ce27a979..00000000000 --- a/src/licensedcode/data/licenses/mule-source-1.1.4.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: mule-source-1.1.4 -short_name: Mule Source PL 1.1.4 -name: Mule Source Public License 1.1.4 -category: Copyleft Limited -owner: MuleSoft Inc. -homepage_url: http://www.MuleSource.com/MSPL -notes: This is a derivative of the MP-1.1 with extra terms -spdx_license_key: LicenseRef-scancode-mule-source-1.1.4 -text_urls: - - https://github.com/codehaus/mule-git/blob/14f4650366b05d691567ba66d14c36dcfbfba47e/tags/muleide-1.3.1-beta1/org.mule.ide/MULE_LICENSE.txt -minimum_coverage: 97 -ignorable_copyrights: - - (c) http://www.mulesource.com - - Copyright (c) 2003 MuleSource, Inc. -ignorable_holders: - - MuleSource, Inc. - - http://www.mulesource.com -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.mulesource.com/ - - http://www.mulesource.com/MSPL diff --git a/src/licensedcode/data/licenses/mulle-kybernetik.LICENSE b/src/licensedcode/data/licenses/mulle-kybernetik.LICENSE index 70615146c5b..b7bd3d9abed 100644 --- a/src/licensedcode/data/licenses/mulle-kybernetik.LICENSE +++ b/src/licensedcode/data/licenses/mulle-kybernetik.LICENSE @@ -1,3 +1,13 @@ +--- +key: mulle-kybernetik +short_name: Mulle Kybernetik License +name: Mulle Kybernetik License +category: Permissive +owner: Mulle Kybernetik +homepage_url: http://www.mulle-kybernetik.com/en/index.html +spdx_license_key: LicenseRef-scancode-mulle-kybernetik +--- + Mulle Kybernetik License Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or modified versions, and any portions thereof, and that both notices appear in supporting documentation, and that credit is given to Mulle Kybernetik in all documents and publicity pertaining to direct or indirect use of this code or its derivatives. diff --git a/src/licensedcode/data/licenses/mulle-kybernetik.yml b/src/licensedcode/data/licenses/mulle-kybernetik.yml deleted file mode 100644 index e5335ba5e1f..00000000000 --- a/src/licensedcode/data/licenses/mulle-kybernetik.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: mulle-kybernetik -short_name: Mulle Kybernetik License -name: Mulle Kybernetik License -category: Permissive -owner: Mulle Kybernetik -homepage_url: http://www.mulle-kybernetik.com/en/index.html -spdx_license_key: LicenseRef-scancode-mulle-kybernetik diff --git a/src/licensedcode/data/licenses/multics.LICENSE b/src/licensedcode/data/licenses/multics.LICENSE index bf492f527dc..4dbb428bfc7 100644 --- a/src/licensedcode/data/licenses/multics.LICENSE +++ b/src/licensedcode/data/licenses/multics.LICENSE @@ -1,3 +1,29 @@ +--- +key: multics +short_name: Multics License +name: Multics License +category: Permissive +owner: Multics +homepage_url: http://www.multicians.org/ +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: Multics +text_urls: + - http://opensource.org/licenses/multics.txt +osi_url: http://opensource.org/licenses/multics.txt +other_urls: + - http://www.opensource.org/licenses/Multics + - https://opensource.org/licenses/Multics +ignorable_copyrights: + - Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems + Inc. + - Copyright 2006 by BULL HN Information Systems Inc. + - Copyright 2006 by Bull SAS +ignorable_holders: + - BULL HN Information Systems Inc. + - Bull SAS + - Massachusetts Institute of Technology and Honeywell Information Systems Inc. +--- + Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all diff --git a/src/licensedcode/data/licenses/multics.yml b/src/licensedcode/data/licenses/multics.yml deleted file mode 100644 index 5511d93a6f5..00000000000 --- a/src/licensedcode/data/licenses/multics.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: multics -short_name: Multics License -name: Multics License -category: Permissive -owner: Multics -homepage_url: http://www.multicians.org/ -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: Multics -text_urls: - - http://opensource.org/licenses/multics.txt -osi_url: http://opensource.org/licenses/multics.txt -other_urls: - - http://www.opensource.org/licenses/Multics - - https://opensource.org/licenses/Multics -ignorable_copyrights: - - Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems - Inc. - - Copyright 2006 by BULL HN Information Systems Inc. - - Copyright 2006 by Bull SAS -ignorable_holders: - - BULL HN Information Systems Inc. - - Bull SAS - - Massachusetts Institute of Technology and Honeywell Information Systems Inc. diff --git a/src/licensedcode/data/licenses/mup.LICENSE b/src/licensedcode/data/licenses/mup.LICENSE index 05157adb77b..735ed5c7883 100644 --- a/src/licensedcode/data/licenses/mup.LICENSE +++ b/src/licensedcode/data/licenses/mup.LICENSE @@ -1,3 +1,20 @@ +--- +key: mup +short_name: Mup License +name: Mup License +category: Permissive +owner: Arkkra Enterprises +homepage_url: http://www.arkkra.com/doc/license.html +notes: | + Per Fedora, this is a BSD derived Free license, but clause 3 makes it GPL- + incompatible, due to the need to include the reasons for the changes. A + copy of this license was taken from http://www.arkkra.com/doc/license.html + on 2013-02-15. +spdx_license_key: Mup +text_urls: + - https://fedoraproject.org/wiki/Licensing/Mup +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/mup.yml b/src/licensedcode/data/licenses/mup.yml deleted file mode 100644 index 246083eac3b..00000000000 --- a/src/licensedcode/data/licenses/mup.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: mup -short_name: Mup License -name: Mup License -category: Permissive -owner: Arkkra Enterprises -homepage_url: http://www.arkkra.com/doc/license.html -notes: | - Per Fedora, this is a BSD derived Free license, but clause 3 makes it GPL- - incompatible, due to the need to include the reasons for the changes. A - copy of this license was taken from http://www.arkkra.com/doc/license.html - on 2013-02-15. -spdx_license_key: Mup -text_urls: - - https://fedoraproject.org/wiki/Licensing/Mup diff --git a/src/licensedcode/data/licenses/musl-exception.LICENSE b/src/licensedcode/data/licenses/musl-exception.LICENSE index 9e7cace9bac..9324d3daaca 100644 --- a/src/licensedcode/data/licenses/musl-exception.LICENSE +++ b/src/licensedcode/data/licenses/musl-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: musl-exception +short_name: musl attribution exception +name: musl attribution exception +category: Permissive +owner: musl Project +homepage_url: http://www.musl-libc.org/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-musl-exception +--- + In addition, permission is hereby granted for all public header files (include/* and arch/*/bits/*) and crt files intended to be linked into applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit @@ -13,4 +24,4 @@ Richard Pennington Stefan Kristiansson Szabolcs Nagy -all of whom have explicitly granted such permission. +all of whom have explicitly granted such permission. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/musl-exception.yml b/src/licensedcode/data/licenses/musl-exception.yml deleted file mode 100644 index af7f9ad29e8..00000000000 --- a/src/licensedcode/data/licenses/musl-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: musl-exception -short_name: musl attribution exception -name: musl attribution exception -category: Permissive -owner: musl Project -homepage_url: http://www.musl-libc.org/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-musl-exception diff --git a/src/licensedcode/data/licenses/mvt-1.1.LICENSE b/src/licensedcode/data/licenses/mvt-1.1.LICENSE index 10784f77570..8a11022d301 100644 --- a/src/licensedcode/data/licenses/mvt-1.1.LICENSE +++ b/src/licensedcode/data/licenses/mvt-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: mvt-1.1 +short_name: MVT License 1.1 +name: MVT License 1.1 +category: Free Restricted +owner: MVT +homepage_url: https://github.com/mvt-project/license/blob/main/MVT%20License%201.1.txt +spdx_license_key: LicenseRef-scancode-mvt-1.1 +ignorable_urls: + - https://license.mvt.re/1.1 +--- + MVT License 1.1 =============== diff --git a/src/licensedcode/data/licenses/mvt-1.1.yml b/src/licensedcode/data/licenses/mvt-1.1.yml deleted file mode 100644 index 3060504d91a..00000000000 --- a/src/licensedcode/data/licenses/mvt-1.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: mvt-1.1 -short_name: MVT License 1.1 -name: MVT License 1.1 -category: Free Restricted -owner: MVT -homepage_url: https://github.com/mvt-project/license/blob/main/MVT%20License%201.1.txt -spdx_license_key: LicenseRef-scancode-mvt-1.1 -ignorable_urls: - - https://license.mvt.re/1.1 diff --git a/src/licensedcode/data/licenses/mx4j.LICENSE b/src/licensedcode/data/licenses/mx4j.LICENSE index 429fbf96b79..6874bd64577 100644 --- a/src/licensedcode/data/licenses/mx4j.LICENSE +++ b/src/licensedcode/data/licenses/mx4j.LICENSE @@ -1,3 +1,24 @@ +--- +key: mx4j +short_name: MX4J License 1.0 +name: MX4J License 1.0 +category: Permissive +owner: MX4J Project +spdx_license_key: LicenseRef-scancode-mx4j +other_urls: + - http://mx4j.sourceforge.net +ignorable_copyrights: + - Copyright (c) by the MX4J contributors +ignorable_holders: + - the MX4J contributors +ignorable_authors: + - the MX4J project (http://mx4j.sourceforge.net) +ignorable_urls: + - http://mx4j.sourceforge.net/ +ignorable_emails: + - biorn_steedom@users.sourceforge.net +--- + The MX4J License, Version 1.0 Copyright (c) by the MX4J contributors. All rights reserved. @@ -47,4 +68,4 @@ SUCH DAMAGE. This software consists of voluntary contributions made by many individuals on behalf of the MX4J project. For more information on MX4J, please see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mx4j.yml b/src/licensedcode/data/licenses/mx4j.yml deleted file mode 100644 index 6ee5999ca98..00000000000 --- a/src/licensedcode/data/licenses/mx4j.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: mx4j -short_name: MX4J License 1.0 -name: MX4J License 1.0 -category: Permissive -owner: MX4J Project -spdx_license_key: LicenseRef-scancode-mx4j -other_urls: - - http://mx4j.sourceforge.net -ignorable_copyrights: - - Copyright (c) by the MX4J contributors -ignorable_holders: - - the MX4J contributors -ignorable_authors: - - the MX4J project (http://mx4j.sourceforge.net) -ignorable_urls: - - http://mx4j.sourceforge.net/ -ignorable_emails: - - biorn_steedom@users.sourceforge.net diff --git a/src/licensedcode/data/licenses/mysql-connector-odbc-exception-2.0.LICENSE b/src/licensedcode/data/licenses/mysql-connector-odbc-exception-2.0.LICENSE index 3fd33d8e931..b9940cb8e25 100644 --- a/src/licensedcode/data/licenses/mysql-connector-odbc-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/mysql-connector-odbc-exception-2.0.LICENSE @@ -1,2 +1,22 @@ +--- +key: mysql-connector-odbc-exception-2.0 +short_name: MySQL Connector ODBC exception to GPL 2.0 +name: MySQL Connector ODBC exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +is_exception: yes +spdx_license_key: LicenseRef-scancode-mysql-con-odbc-exception-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-mysql-connector-odbc-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + + As a special exception to the MySQL Connector/ODBC GPL license, one is + allowed to use the product with any ODBC manager, even if the ODBC manager + is not licensed under the GPL. In other words: The ODBC manager itself is + not affected by the MySQL Connector/ODBC GPL license. +--- + As a special exception to the MySQL Connector/ODBC GPL license, one is allowed to use the product with any ODBC manager, even if the ODBC manager is not licensed under the GPL. In other words: The ODBC manager itself is not affected by the MySQL Connector/ODBC GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mysql-connector-odbc-exception-2.0.yml b/src/licensedcode/data/licenses/mysql-connector-odbc-exception-2.0.yml deleted file mode 100644 index f9e40165257..00000000000 --- a/src/licensedcode/data/licenses/mysql-connector-odbc-exception-2.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: mysql-connector-odbc-exception-2.0 -short_name: MySQL Connector ODBC exception to GPL 2.0 -name: MySQL Connector ODBC exception to GPL 2.0 -category: Copyleft Limited -owner: Oracle Corporation -is_exception: yes -spdx_license_key: LicenseRef-scancode-mysql-con-odbc-exception-2.0 -other_spdx_license_keys: - - LicenseRef-scancode-mysql-connector-odbc-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - - As a special exception to the MySQL Connector/ODBC GPL license, one is - allowed to use the product with any ODBC manager, even if the ODBC manager - is not licensed under the GPL. In other words: The ODBC manager itself is - not affected by the MySQL Connector/ODBC GPL license. diff --git a/src/licensedcode/data/licenses/mysql-floss-exception-2.0.LICENSE b/src/licensedcode/data/licenses/mysql-floss-exception-2.0.LICENSE index 1855bc573bd..098cc905da2 100644 --- a/src/licensedcode/data/licenses/mysql-floss-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/mysql-floss-exception-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: mysql-floss-exception-2.0 +short_name: MySQL FLOSS exception to GPL 2.0 +name: MySQL FLOSS exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception +is_exception: yes +spdx_license_key: LicenseRef-scancode-mysql-floss-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +ignorable_urls: + - http://www.gnu.org/philosophy/free-sw.html + - http://www.opensource.org/docs/definition.php +--- + MySQL FLOSS License Exception The MySQL AB Exception for Free/Libre and Open Source Software-only Applications Using MySQL Client Libraries (the "FLOSS Exception"). @@ -88,4 +104,4 @@ users. Compliance with one of the licenses noted under the "FLOSS license list" section remains a prerequisite. Package Name Qualifying License and Version - Apache Portable Runtime (APR) Apache Software License 2.0 + Apache Portable Runtime (APR) Apache Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/mysql-floss-exception-2.0.yml b/src/licensedcode/data/licenses/mysql-floss-exception-2.0.yml deleted file mode 100644 index 21b8647626b..00000000000 --- a/src/licensedcode/data/licenses/mysql-floss-exception-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: mysql-floss-exception-2.0 -short_name: MySQL FLOSS exception to GPL 2.0 -name: MySQL FLOSS exception to GPL 2.0 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: https://mariadb.com/kb/en/mariadb/mariadb-license/#the-floss-exception -is_exception: yes -spdx_license_key: LicenseRef-scancode-mysql-floss-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -ignorable_urls: - - http://www.gnu.org/philosophy/free-sw.html - - http://www.opensource.org/docs/definition.php diff --git a/src/licensedcode/data/licenses/mysql-linking-exception-2018.LICENSE b/src/licensedcode/data/licenses/mysql-linking-exception-2018.LICENSE index 80474e978c7..ddf5e024a85 100644 --- a/src/licensedcode/data/licenses/mysql-linking-exception-2018.LICENSE +++ b/src/licensedcode/data/licenses/mysql-linking-exception-2018.LICENSE @@ -1,3 +1,17 @@ +--- +key: mysql-linking-exception-2018 +short_name: MySQL linking exception 2018 +name: MySQL linking exception 2018 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://raw.githubusercontent.com/mysql/mysql-server/8.0/include/mysql.h +notes: this exception started showing up in all MySQL headers with MySQL 8.0 in 2018 See https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c +is_exception: yes +spdx_license_key: LicenseRef-scancode-mysql-linking-exception-2018 +other_urls: + - https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c +--- + This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license diff --git a/src/licensedcode/data/licenses/mysql-linking-exception-2018.yml b/src/licensedcode/data/licenses/mysql-linking-exception-2018.yml deleted file mode 100644 index 59ce0b9f66b..00000000000 --- a/src/licensedcode/data/licenses/mysql-linking-exception-2018.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: mysql-linking-exception-2018 -short_name: MySQL linking exception 2018 -name: MySQL linking exception 2018 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: https://raw.githubusercontent.com/mysql/mysql-server/8.0/include/mysql.h -notes: this exception started showing up in all MySQL headers with MySQL 8.0 in 2018 See https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c -is_exception: yes -spdx_license_key: LicenseRef-scancode-mysql-linking-exception-2018 -other_urls: - - https://github.com/mysql/mysql-server/commit/c019b26f951a6ace68629c731933c2dfaae2239c diff --git a/src/licensedcode/data/licenses/naist-2003.LICENSE b/src/licensedcode/data/licenses/naist-2003.LICENSE index 3c06b4ae67e..a3cdbee7f1c 100644 --- a/src/licensedcode/data/licenses/naist-2003.LICENSE +++ b/src/licensedcode/data/licenses/naist-2003.LICENSE @@ -1,3 +1,18 @@ +--- +key: naist-2003 +short_name: Nara Institute License 2003 +name: Nara Institute License 2003 +category: Permissive +owner: Nara Institute of Science and Technology +notes: this license references the icot-free license +spdx_license_key: NAIST-2003 +other_spdx_license_keys: + - LicenseRef-scancode-naist-2003 +other_urls: + - https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text + - https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343 +--- + Use, reproduction, and distribution of this software is permitted. Any copy of this software, whether in its original form or modified, must include both the above copyright notice and the following diff --git a/src/licensedcode/data/licenses/naist-2003.yml b/src/licensedcode/data/licenses/naist-2003.yml deleted file mode 100644 index 7ce7bc9a297..00000000000 --- a/src/licensedcode/data/licenses/naist-2003.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: naist-2003 -short_name: Nara Institute License 2003 -name: Nara Institute License 2003 -category: Permissive -owner: Nara Institute of Science and Technology -notes: this license references the icot-free license -spdx_license_key: NAIST-2003 -other_spdx_license_keys: - - LicenseRef-scancode-naist-2003 -other_urls: - - https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text - - https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343 diff --git a/src/licensedcode/data/licenses/nant-exception-2.0-plus.LICENSE b/src/licensedcode/data/licenses/nant-exception-2.0-plus.LICENSE index 421ded7c50e..b507a60851b 100644 --- a/src/licensedcode/data/licenses/nant-exception-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/nant-exception-2.0-plus.LICENSE @@ -1,3 +1,49 @@ +--- +key: nant-exception-2.0-plus +short_name: NAnt exception to GPL 2.0 or later +name: NAnt exception to GPL 2.0 or later +category: Copyleft Limited +owner: NAnt Project +is_exception: yes +spdx_license_key: LicenseRef-scancode-nant-exception-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + In addition, as a special exception, Gerry Shaw gives permission to link + the + code of this program with the Microsoft .NET library (or with modified + versions + of Microsoft .NET library that use the same license as the Microsoft .NET + library), and distribute linked combinations including the two. You must + obey + the GNU General Public License in all respects for all of the code used + other + than the Microsoft .NET library. If you modify this file, you may extend + this + exception to your version of the file, but you are not obligated to do so. + If + you do not wish to do so, delete this exception statement from your + version. + A copy of the GNU General Public License is available in the COPYING.txt + file + included with all NAnt distributions. + For more licensing information refer to the GNU General Public License on + the + GNU Project web site. + http://www.gnu.org/copyleft/gpl.html +--- + In addition, as a special exception, Gerry Shaw gives permission to link the code of this program with the Microsoft .NET library (or with modified versions of Microsoft .NET library that use the same license as the Microsoft .NET diff --git a/src/licensedcode/data/licenses/nant-exception-2.0-plus.yml b/src/licensedcode/data/licenses/nant-exception-2.0-plus.yml deleted file mode 100644 index 8571c807d51..00000000000 --- a/src/licensedcode/data/licenses/nant-exception-2.0-plus.yml +++ /dev/null @@ -1,43 +0,0 @@ -key: nant-exception-2.0-plus -short_name: NAnt exception to GPL 2.0 or later -name: NAnt exception to GPL 2.0 or later -category: Copyleft Limited -owner: NAnt Project -is_exception: yes -spdx_license_key: LicenseRef-scancode-nant-exception-2.0-plus -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - In addition, as a special exception, Gerry Shaw gives permission to link - the - code of this program with the Microsoft .NET library (or with modified - versions - of Microsoft .NET library that use the same license as the Microsoft .NET - library), and distribute linked combinations including the two. You must - obey - the GNU General Public License in all respects for all of the code used - other - than the Microsoft .NET library. If you modify this file, you may extend - this - exception to your version of the file, but you are not obligated to do so. - If - you do not wish to do so, delete this exception statement from your - version. - A copy of the GNU General Public License is available in the COPYING.txt - file - included with all NAnt distributions. - For more licensing information refer to the GNU General Public License on - the - GNU Project web site. - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/licenses/nasa-1.3.LICENSE b/src/licensedcode/data/licenses/nasa-1.3.LICENSE index 36460b23749..7371182128d 100644 --- a/src/licensedcode/data/licenses/nasa-1.3.LICENSE +++ b/src/licensedcode/data/licenses/nasa-1.3.LICENSE @@ -1,3 +1,27 @@ +--- +key: nasa-1.3 +short_name: NASA 1.3 +name: NASA Open Source License v1.3 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NASA-1.3 +osi_license_key: NASA-1.3 +text_urls: + - http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt +other_urls: + - http://ti.arc.nasa.gov/opensource/nosa/ + - http://www.gnu.org/licenses/license-list.html#NASA + - http://www.opensource.org/licenses/NASA-1.3 + - https://opensource.org/licenses/NASA-1.3 +minimum_coverage: 10 +ignorable_copyrights: + - Copyright YEAR United States Government as represented by +ignorable_holders: + - United States Government as represented by +--- + NASA OPEN SOURCE AGREEMENT VERSION 1.3 THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT AGENCY"). THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT. diff --git a/src/licensedcode/data/licenses/nasa-1.3.yml b/src/licensedcode/data/licenses/nasa-1.3.yml deleted file mode 100644 index 804fa115f52..00000000000 --- a/src/licensedcode/data/licenses/nasa-1.3.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: nasa-1.3 -short_name: NASA 1.3 -name: NASA Open Source License v1.3 -category: Copyleft Limited -owner: OSI - Open Source Initiative -homepage_url: http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: NASA-1.3 -osi_license_key: NASA-1.3 -text_urls: - - http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt -other_urls: - - http://ti.arc.nasa.gov/opensource/nosa/ - - http://www.gnu.org/licenses/license-list.html#NASA - - http://www.opensource.org/licenses/NASA-1.3 - - https://opensource.org/licenses/NASA-1.3 -minimum_coverage: 10 -ignorable_copyrights: - - Copyright YEAR United States Government as represented by -ignorable_holders: - - United States Government as represented by diff --git a/src/licensedcode/data/licenses/naughter.LICENSE b/src/licensedcode/data/licenses/naughter.LICENSE index b6686772cb6..5b18a842d80 100644 --- a/src/licensedcode/data/licenses/naughter.LICENSE +++ b/src/licensedcode/data/licenses/naughter.LICENSE @@ -1,3 +1,12 @@ +--- +key: naughter +short_name: Naughter Software License +name: Naughter Software License +category: Free Restricted +owner: Naughter Software +spdx_license_key: LicenseRef-scancode-naughter +--- + Naughter Software License You are allowed to include the source code in any product (commercial, shareware, freeware or otherwise) when your product is released in binary form. diff --git a/src/licensedcode/data/licenses/naughter.yml b/src/licensedcode/data/licenses/naughter.yml deleted file mode 100644 index 8d93eed5f43..00000000000 --- a/src/licensedcode/data/licenses/naughter.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: naughter -short_name: Naughter Software License -name: Naughter Software License -category: Free Restricted -owner: Naughter Software -spdx_license_key: LicenseRef-scancode-naughter diff --git a/src/licensedcode/data/licenses/naumen.LICENSE b/src/licensedcode/data/licenses/naumen.LICENSE index 4e910e96f05..c1edc815667 100644 --- a/src/licensedcode/data/licenses/naumen.LICENSE +++ b/src/licensedcode/data/licenses/naumen.LICENSE @@ -1,3 +1,24 @@ +--- +key: naumen +short_name: NAUMEN Public License +name: NAUMEN Public License +category: Permissive +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/naumen.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: Naumen +text_urls: + - http://www.opensource.org/licenses/naumen.php +osi_url: http://www.opensource.org/licenses/naumen.php +other_urls: + - http://www.opensource.org/licenses/Naumen + - https://opensource.org/licenses/Naumen +ignorable_copyrights: + - Copyright (c) NAUMEN (tm) and Contributors +ignorable_holders: + - NAUMEN (tm) and Contributors +--- + NAUMEN Public License This software is Copyright (c) NAUMEN (tm) and Contributors. All rights reserved. diff --git a/src/licensedcode/data/licenses/naumen.yml b/src/licensedcode/data/licenses/naumen.yml deleted file mode 100644 index 3f85979d9f3..00000000000 --- a/src/licensedcode/data/licenses/naumen.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: naumen -short_name: NAUMEN Public License -name: NAUMEN Public License -category: Permissive -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/naumen.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: Naumen -text_urls: - - http://www.opensource.org/licenses/naumen.php -osi_url: http://www.opensource.org/licenses/naumen.php -other_urls: - - http://www.opensource.org/licenses/Naumen - - https://opensource.org/licenses/Naumen -ignorable_copyrights: - - Copyright (c) NAUMEN (tm) and Contributors -ignorable_holders: - - NAUMEN (tm) and Contributors diff --git a/src/licensedcode/data/licenses/nbpl-1.0.LICENSE b/src/licensedcode/data/licenses/nbpl-1.0.LICENSE index d337579230d..bcb6b248bcb 100644 --- a/src/licensedcode/data/licenses/nbpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/nbpl-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: nbpl-1.0 +short_name: NBPL-1.0 +name: Net Boolean Public License 1.0 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894 +notes: | + Per SPDX.org, this license was released 22 August 1998. This license was + issued twice, but only with formatting differences. +spdx_license_key: NBPL-1.0 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894 +ignorable_copyrights: + - Copyright 1998, Net Boolean Incorporated, Redwood City, California, USA +ignorable_holders: + - Net Boolean Incorporated, Redwood City, California, USA +--- + The Net Boolean Public License Version 1, 22 August 1998 diff --git a/src/licensedcode/data/licenses/nbpl-1.0.yml b/src/licensedcode/data/licenses/nbpl-1.0.yml deleted file mode 100644 index 6b111561832..00000000000 --- a/src/licensedcode/data/licenses/nbpl-1.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: nbpl-1.0 -short_name: NBPL-1.0 -name: Net Boolean Public License 1.0 -category: Copyleft Limited -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894 -notes: | - Per SPDX.org, this license was released 22 August 1998. This license was - issued twice, but only with formatting differences. -spdx_license_key: NBPL-1.0 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=37b4b3f6cc4bf34e1d3dec61e69914b9819d8894 -ignorable_copyrights: - - Copyright 1998, Net Boolean Incorporated, Redwood City, California, USA -ignorable_holders: - - Net Boolean Incorporated, Redwood City, California, USA diff --git a/src/licensedcode/data/licenses/ncbi.LICENSE b/src/licensedcode/data/licenses/ncbi.LICENSE index d0e35b0e36c..42cb2e39cc2 100644 --- a/src/licensedcode/data/licenses/ncbi.LICENSE +++ b/src/licensedcode/data/licenses/ncbi.LICENSE @@ -1,3 +1,15 @@ +--- +key: ncbi +short_name: NCBI Public Domain Notice +name: NCBI Public Domain Notice +category: Public Domain +owner: NCBI +homepage_url: https://github.com/ncbi/ngs/blob/master/LICENSE#L8 +spdx_license_key: LicenseRef-scancode-ncbi +other_urls: + - https://blast.ncbi.nlm.nih.gov/Blast.cgi +--- + PUBLIC DOMAIN NOTICE National Center for Biotechnology Information diff --git a/src/licensedcode/data/licenses/ncbi.yml b/src/licensedcode/data/licenses/ncbi.yml deleted file mode 100644 index f4c49ee72c1..00000000000 --- a/src/licensedcode/data/licenses/ncbi.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ncbi -short_name: NCBI Public Domain Notice -name: NCBI Public Domain Notice -category: Public Domain -owner: NCBI -homepage_url: https://github.com/ncbi/ngs/blob/master/LICENSE#L8 -spdx_license_key: LicenseRef-scancode-ncbi -other_urls: - - https://blast.ncbi.nlm.nih.gov/Blast.cgi diff --git a/src/licensedcode/data/licenses/ncgl-uk-2.0.LICENSE b/src/licensedcode/data/licenses/ncgl-uk-2.0.LICENSE index 57806084a05..a59ac79d45a 100644 --- a/src/licensedcode/data/licenses/ncgl-uk-2.0.LICENSE +++ b/src/licensedcode/data/licenses/ncgl-uk-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ncgl-uk-2.0 +short_name: Non-Commercial Government Licence +name: Non-Commercial Government Licence +category: Free Restricted +owner: U.K. National Archives +homepage_url: http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/ +spdx_license_key: NCGL-UK-2.0 +other_urls: + - http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence-cymraeg/version/2/ + - https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml +--- + Non-Commercial Government Licence for public sector information diff --git a/src/licensedcode/data/licenses/ncgl-uk-2.0.yml b/src/licensedcode/data/licenses/ncgl-uk-2.0.yml deleted file mode 100644 index c3775a20130..00000000000 --- a/src/licensedcode/data/licenses/ncgl-uk-2.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ncgl-uk-2.0 -short_name: Non-Commercial Government Licence -name: Non-Commercial Government Licence -category: Free Restricted -owner: U.K. National Archives -homepage_url: http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/ -spdx_license_key: NCGL-UK-2.0 -other_urls: - - http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence-cymraeg/version/2/ - - https://github.com/spdx/license-list-XML/blob/master/src/Apache-2.0.xml diff --git a/src/licensedcode/data/licenses/nero-eula.LICENSE b/src/licensedcode/data/licenses/nero-eula.LICENSE index d559ef2079a..647dcf4c692 100644 --- a/src/licensedcode/data/licenses/nero-eula.LICENSE +++ b/src/licensedcode/data/licenses/nero-eula.LICENSE @@ -1,3 +1,68 @@ +--- +key: nero-eula +short_name: Nero EULA +name: Nero EULA +category: Commercial +owner: Nero AG +homepage_url: http://www.nero.com/enu/corp-legal/end-user-agreement.php +notes: composite +spdx_license_key: LicenseRef-scancode-nero-eula +faq_url: http://www.nero.com/enu/downloads/ +minimum_coverage: 80 +ignorable_copyrights: + - (c) 2012 Nero AG. + - (c) DTS, Inc. + - Copyright (c) 1991-2, RSA Data Security, Inc. + - Copyright (c) 1992-1999 Dolby Laboratories, Inc. + - Copyright (c) 1996-2012 Nero AG and its licensors + - Copyright (c) 1999-2002. Microsoft Corporation + - Copyright (c) 2008 Microsoft Corporation + - Copyright 2011 Dolby Laboratories + - copyright (c) 1998-2005 The OpenSSL Project + - copyright (c) 2000-2008 Gracenote + - copyright (c) 2000-2008 Gracenote. Gracenote Software + - copyright (c) 2002, Dr Brian Gladman, Worcester, UK. + - copyright 1997-2005 Simon Tatham + - copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen + Massar, Wez Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad + Khalifa, Markus Kuhn, and CORE SDI S.A. +ignorable_holders: + - DTS, Inc. + - Dolby Laboratories + - Dolby Laboratories, Inc. + - Dr Brian Gladman, Worcester, UK. + - Gracenote + - Gracenote. Gracenote Software + - Microsoft Corporation + - Nero AG and its licensors + - Nero AG. + - RSA Data Security, Inc. + - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez + Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus + Kuhn, and CORE SDI S.A. + - Simon Tatham + - The OpenSSL Project +ignorable_authors: + - Coding Technologies + - the OpenSSL Project +ignorable_urls: + - http://ffmpeg.mplayerhq.hu/ + - http://fp.gladman.plus.com/ + - http://www.7-zip.org/license.txt + - http://www.codingtechnologies.com/ + - http://www.gracenote.com/ + - http://www.mp3licensing.com/ + - http://www.mpeg4ip.net/ + - http://www.nero.com/ + - http://www.nero.com/link.php?topic_id=7106 + - http://www.nero.com/link.php?topic_id=7107 + - http://www.openssl.org/ +ignorable_emails: + - PRESS@NERO.COM + - legal@nero.com + - openssl-core@openssl.org +--- + Licensor: Nero AG ("Nero") THIS IS A LEGAL AGREEMENT BETWEEN YOU, THE "END USER", AND NERO AG, RÜPPURRER STRASSE 1A, 76307 KARLSRUHE, GERMANY. diff --git a/src/licensedcode/data/licenses/nero-eula.yml b/src/licensedcode/data/licenses/nero-eula.yml deleted file mode 100644 index 10a116e4e8d..00000000000 --- a/src/licensedcode/data/licenses/nero-eula.yml +++ /dev/null @@ -1,62 +0,0 @@ -key: nero-eula -short_name: Nero EULA -name: Nero EULA -category: Commercial -owner: Nero AG -homepage_url: http://www.nero.com/enu/corp-legal/end-user-agreement.php -notes: composite -spdx_license_key: LicenseRef-scancode-nero-eula -faq_url: http://www.nero.com/enu/downloads/ -minimum_coverage: 80 -ignorable_copyrights: - - (c) 2012 Nero AG. - - (c) DTS, Inc. - - Copyright (c) 1991-2, RSA Data Security, Inc. - - Copyright (c) 1992-1999 Dolby Laboratories, Inc. - - Copyright (c) 1996-2012 Nero AG and its licensors - - Copyright (c) 1999-2002. Microsoft Corporation - - Copyright (c) 2008 Microsoft Corporation - - Copyright 2011 Dolby Laboratories - - copyright (c) 1998-2005 The OpenSSL Project - - copyright (c) 2000-2008 Gracenote - - copyright (c) 2000-2008 Gracenote. Gracenote Software - - copyright (c) 2002, Dr Brian Gladman, Worcester, UK. - - copyright 1997-2005 Simon Tatham - - copyright Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen - Massar, Wez Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad - Khalifa, Markus Kuhn, and CORE SDI S.A. -ignorable_holders: - - DTS, Inc. - - Dolby Laboratories - - Dolby Laboratories, Inc. - - Dr Brian Gladman, Worcester, UK. - - Gracenote - - Gracenote. Gracenote Software - - Microsoft Corporation - - Nero AG and its licensors - - Nero AG. - - RSA Data Security, Inc. - - Robert de Bath, Joris van Rantwijk, Delian Delchev, Andreas Schultz, Jeroen Massar, Wez - Furlong, Nicolas Barry, Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus - Kuhn, and CORE SDI S.A. - - Simon Tatham - - The OpenSSL Project -ignorable_authors: - - Coding Technologies - - the OpenSSL Project -ignorable_urls: - - http://ffmpeg.mplayerhq.hu/ - - http://fp.gladman.plus.com/ - - http://www.7-zip.org/license.txt - - http://www.codingtechnologies.com/ - - http://www.gracenote.com/ - - http://www.mp3licensing.com/ - - http://www.mpeg4ip.net/ - - http://www.nero.com/ - - http://www.nero.com/link.php?topic_id=7106 - - http://www.nero.com/link.php?topic_id=7107 - - http://www.openssl.org/ -ignorable_emails: - - PRESS@NERO.COM - - legal@nero.com - - openssl-core@openssl.org diff --git a/src/licensedcode/data/licenses/net-snmp.LICENSE b/src/licensedcode/data/licenses/net-snmp.LICENSE index 9ac941a019b..fceaa08b71f 100644 --- a/src/licensedcode/data/licenses/net-snmp.LICENSE +++ b/src/licensedcode/data/licenses/net-snmp.LICENSE @@ -1,3 +1,41 @@ +--- +key: net-snmp +short_name: Net SNMP License +name: Net SNMP License +category: Permissive +owner: Net-SNMP +homepage_url: http://net-snmp.sourceforge.net/about/license.html +notes: composite +spdx_license_key: Net-SNMP +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 2001-2003, Networks Associates Technology, Inc + - Copyright (c) 2003 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California + 95054, U.S.A. + - Copyright (c) 2003-2006, Sparta, Inc + - Copyright (c) 2004, Cisco, Inc and Information Network Center of Beijing University of + Posts and Telecommunications + - Copyright (c) Fabasoft R&D Software GmbH & Co + - Copyright 1989, 1991, 1992 by Carnegie Mellon University + - Copyright 1996, 1998-2000 The Regents of the University of California + - copyright (c) 2001-2003, Cambridge Broadband Ltd. +ignorable_holders: + - Cambridge Broadband Ltd. + - Carnegie Mellon University + - Cisco, Inc and Information Network Center of Beijing University of Posts and Telecommunications + - Fabasoft R&D Software GmbH & Co + - Networks Associates Technology, Inc + - Sparta, Inc + - Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. + - The Regents of the University of California +ignorable_authors: + - Bernhard Penz +ignorable_urls: + - http://net-snmp.sourceforge.net/about/license.html +ignorable_emails: + - oss@fabasoft.com +--- + Net SNMP License http://net-snmp.sourceforge.net/about/license.html diff --git a/src/licensedcode/data/licenses/net-snmp.yml b/src/licensedcode/data/licenses/net-snmp.yml deleted file mode 100644 index 54d12afb0fe..00000000000 --- a/src/licensedcode/data/licenses/net-snmp.yml +++ /dev/null @@ -1,35 +0,0 @@ -key: net-snmp -short_name: Net SNMP License -name: Net SNMP License -category: Permissive -owner: Net-SNMP -homepage_url: http://net-snmp.sourceforge.net/about/license.html -notes: composite -spdx_license_key: Net-SNMP -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 2001-2003, Networks Associates Technology, Inc - - Copyright (c) 2003 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California - 95054, U.S.A. - - Copyright (c) 2003-2006, Sparta, Inc - - Copyright (c) 2004, Cisco, Inc and Information Network Center of Beijing University of - Posts and Telecommunications - - Copyright (c) Fabasoft R&D Software GmbH & Co - - Copyright 1989, 1991, 1992 by Carnegie Mellon University - - Copyright 1996, 1998-2000 The Regents of the University of California - - copyright (c) 2001-2003, Cambridge Broadband Ltd. -ignorable_holders: - - Cambridge Broadband Ltd. - - Carnegie Mellon University - - Cisco, Inc and Information Network Center of Beijing University of Posts and Telecommunications - - Fabasoft R&D Software GmbH & Co - - Networks Associates Technology, Inc - - Sparta, Inc - - Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. - - The Regents of the University of California -ignorable_authors: - - Bernhard Penz -ignorable_urls: - - http://net-snmp.sourceforge.net/about/license.html -ignorable_emails: - - oss@fabasoft.com diff --git a/src/licensedcode/data/licenses/netapp-sdk-aug2020.LICENSE b/src/licensedcode/data/licenses/netapp-sdk-aug2020.LICENSE index dd9f6744315..5d4722589cb 100644 --- a/src/licensedcode/data/licenses/netapp-sdk-aug2020.LICENSE +++ b/src/licensedcode/data/licenses/netapp-sdk-aug2020.LICENSE @@ -1,3 +1,15 @@ +--- +key: netapp-sdk-aug2020 +short_name: NetApp SDK License Agreement rev. Aug2020 +name: NetApp Manageability SDK License Agreement rev. Aug2020 +category: Proprietary Free +owner: NetApp +homepage_url: https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427 +spdx_license_key: LicenseRef-scancode-netapp-sdk-aug2020 +ignorable_urls: + - https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427 +--- + NETAPP MANAGEABILITY SDK LICENSE AGREEMENT This NetApp Manageability SDK License Agreement (“License”) is entered into between you (as an individual and/or on behalf of the company by which you are employed) (“You”, “Your” or “Licensee”) and NetApp, Inc., located at 1395 Crossman Avenue, Sunnyvale, California 94089 (“NetApp”), and provides the terms under which NetApp licenses the NetApp Manageability SDK (“SDK”) to You. diff --git a/src/licensedcode/data/licenses/netapp-sdk-aug2020.yml b/src/licensedcode/data/licenses/netapp-sdk-aug2020.yml deleted file mode 100644 index 229d6893acf..00000000000 --- a/src/licensedcode/data/licenses/netapp-sdk-aug2020.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: netapp-sdk-aug2020 -short_name: NetApp SDK License Agreement rev. Aug2020 -name: NetApp Manageability SDK License Agreement rev. Aug2020 -category: Proprietary Free -owner: NetApp -homepage_url: https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427 -spdx_license_key: LicenseRef-scancode-netapp-sdk-aug2020 -ignorable_urls: - - https://mysupport.netapp.com/documentation/productlibrary/index.html?productID=60427 diff --git a/src/licensedcode/data/licenses/netcat.LICENSE b/src/licensedcode/data/licenses/netcat.LICENSE index 8e9d7247b84..c1f348d4d73 100644 --- a/src/licensedcode/data/licenses/netcat.LICENSE +++ b/src/licensedcode/data/licenses/netcat.LICENSE @@ -1,3 +1,15 @@ +--- +key: netcat +short_name: Netcat License +name: Netcat License +category: Permissive +owner: Netcat Project +homepage_url: http://nc110.sourceforge.net/ +spdx_license_key: LicenseRef-scancode-netcat +ignorable_emails: + - nc110-devel@lists.sourceforge.net +--- + Netcat is entirely my own creation, although plenty of other code was used as examples. It is freely given away to the Internet community in the hope that it will be useful, with no restrictions except giving credit where it is due. diff --git a/src/licensedcode/data/licenses/netcat.yml b/src/licensedcode/data/licenses/netcat.yml deleted file mode 100644 index 71cdf0d3671..00000000000 --- a/src/licensedcode/data/licenses/netcat.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: netcat -short_name: Netcat License -name: Netcat License -category: Permissive -owner: Netcat Project -homepage_url: http://nc110.sourceforge.net/ -spdx_license_key: LicenseRef-scancode-netcat -ignorable_emails: - - nc110-devel@lists.sourceforge.net diff --git a/src/licensedcode/data/licenses/netcdf.LICENSE b/src/licensedcode/data/licenses/netcdf.LICENSE index ea669707c0b..0d952137fbc 100644 --- a/src/licensedcode/data/licenses/netcdf.LICENSE +++ b/src/licensedcode/data/licenses/netcdf.LICENSE @@ -1,3 +1,15 @@ +--- +key: netcdf +short_name: NetCDF License +name: NetCDF License +category: Permissive +owner: Unidata +homepage_url: http://www.unidata.ucar.edu/software/netcdf/copyright.html +spdx_license_key: NetCDF +ignorable_authors: + - the Unidata Program at the University Corporation for Atmospheric Research +--- + Portions of this software were developed by the Unidata Program at the University Corporation for Atmospheric Research. diff --git a/src/licensedcode/data/licenses/netcdf.yml b/src/licensedcode/data/licenses/netcdf.yml deleted file mode 100644 index b222b210606..00000000000 --- a/src/licensedcode/data/licenses/netcdf.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: netcdf -short_name: NetCDF License -name: NetCDF License -category: Permissive -owner: Unidata -homepage_url: http://www.unidata.ucar.edu/software/netcdf/copyright.html -spdx_license_key: NetCDF -ignorable_authors: - - the Unidata Program at the University Corporation for Atmospheric Research diff --git a/src/licensedcode/data/licenses/netcomponents.LICENSE b/src/licensedcode/data/licenses/netcomponents.LICENSE index b7ccf01b529..15c06f28dc3 100644 --- a/src/licensedcode/data/licenses/netcomponents.LICENSE +++ b/src/licensedcode/data/licenses/netcomponents.LICENSE @@ -1,3 +1,19 @@ +--- +key: netcomponents +short_name: NetComponents License +name: NetComponents License +category: Permissive +owner: Savarese.Org +homepage_url: http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html +spdx_license_key: LicenseRef-scancode-netcomponents +text_urls: + - http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html +ignorable_copyrights: + - Copyright (c) 1996-1999 Daniel F. Savarese +ignorable_holders: + - Daniel F. Savarese +--- + Savarese.Org Copyright © 1996-1999 Daniel F. Savarese. Copyright in this document and the software accompanying this document is owned by Daniel F. Savarese. All rights reserved. diff --git a/src/licensedcode/data/licenses/netcomponents.yml b/src/licensedcode/data/licenses/netcomponents.yml deleted file mode 100644 index 2135c7c677c..00000000000 --- a/src/licensedcode/data/licenses/netcomponents.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: netcomponents -short_name: NetComponents License -name: NetComponents License -category: Permissive -owner: Savarese.Org -homepage_url: http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html -spdx_license_key: LicenseRef-scancode-netcomponents -text_urls: - - http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html -ignorable_copyrights: - - Copyright (c) 1996-1999 Daniel F. Savarese -ignorable_holders: - - Daniel F. Savarese diff --git a/src/licensedcode/data/licenses/netron.LICENSE b/src/licensedcode/data/licenses/netron.LICENSE index d2d140e80dc..f9c61aa4e07 100644 --- a/src/licensedcode/data/licenses/netron.LICENSE +++ b/src/licensedcode/data/licenses/netron.LICENSE @@ -1,3 +1,16 @@ +--- +key: netron +short_name: Netron Project License +name: Netron Project License +category: Permissive +owner: Netron Project +spdx_license_key: LicenseRef-scancode-netron +other_urls: + - http://www.netronproject.com +ignorable_urls: + - http://www.netronproject.com/ +--- + END USER LICENSE AGREEMENT (∞2006); FRANCOIS VANDERSEYPEN "THE NETRON PROJECT". IMPORTANT PLEASE READ CAREFULLY diff --git a/src/licensedcode/data/licenses/netron.yml b/src/licensedcode/data/licenses/netron.yml deleted file mode 100644 index 0f24452065a..00000000000 --- a/src/licensedcode/data/licenses/netron.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: netron -short_name: Netron Project License -name: Netron Project License -category: Permissive -owner: Netron Project -spdx_license_key: LicenseRef-scancode-netron -other_urls: - - http://www.netronproject.com -ignorable_urls: - - http://www.netronproject.com/ diff --git a/src/licensedcode/data/licenses/netronome-firmware.LICENSE b/src/licensedcode/data/licenses/netronome-firmware.LICENSE index 987dd0dd46a..539dc427951 100644 --- a/src/licensedcode/data/licenses/netronome-firmware.LICENSE +++ b/src/licensedcode/data/licenses/netronome-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: netronome-firmware +short_name: Netronome Firmware License +name: Netronome Firmware License +category: Proprietary Free +owner: Netronome +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Netronome +spdx_license_key: LicenseRef-scancode-netronome-firmware +--- + Agilio(r) Firmware License Agreement (the "AGREEMENT") BY INSTALLING OR USING IN ANY MANNER THE SOFTWARE THAT ACCOMPANIES THIS diff --git a/src/licensedcode/data/licenses/netronome-firmware.yml b/src/licensedcode/data/licenses/netronome-firmware.yml deleted file mode 100644 index 750e4f88247..00000000000 --- a/src/licensedcode/data/licenses/netronome-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: netronome-firmware -short_name: Netronome Firmware License -name: Netronome Firmware License -category: Proprietary Free -owner: Netronome -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Netronome -spdx_license_key: LicenseRef-scancode-netronome-firmware diff --git a/src/licensedcode/data/licenses/network-time-protocol.LICENSE b/src/licensedcode/data/licenses/network-time-protocol.LICENSE index 5fe1659dfc9..d95b0806230 100644 --- a/src/licensedcode/data/licenses/network-time-protocol.LICENSE +++ b/src/licensedcode/data/licenses/network-time-protocol.LICENSE @@ -1,3 +1,16 @@ +--- +key: network-time-protocol +is_deprecated: yes +short_name: Duplicate Network Time Protocol License +name: Duplicate Network Time Protocol License +category: Permissive +owner: University of Delaware +homepage_url: http://www.eecis.udel.edu/~mills/ntp/html/copyright.html +text_urls: + - http://www.eecis.udel.edu/~mills/ntp/html/copyright.html +minimum_coverage: 20 +--- + Network Time Protocol License http://www.eecis.udel.edu/~mills/ntp/html/copyright.html diff --git a/src/licensedcode/data/licenses/network-time-protocol.yml b/src/licensedcode/data/licenses/network-time-protocol.yml deleted file mode 100644 index 854c13691f3..00000000000 --- a/src/licensedcode/data/licenses/network-time-protocol.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: network-time-protocol -is_deprecated: yes -short_name: Duplicate Network Time Protocol License -name: Duplicate Network Time Protocol License -category: Permissive -owner: University of Delaware -homepage_url: http://www.eecis.udel.edu/~mills/ntp/html/copyright.html -text_urls: - - http://www.eecis.udel.edu/~mills/ntp/html/copyright.html -minimum_coverage: 20 diff --git a/src/licensedcode/data/licenses/new-relic.LICENSE b/src/licensedcode/data/licenses/new-relic.LICENSE index dd585703a8f..bbdf6b4555b 100644 --- a/src/licensedcode/data/licenses/new-relic.LICENSE +++ b/src/licensedcode/data/licenses/new-relic.LICENSE @@ -1,3 +1,17 @@ +--- +key: new-relic +short_name: New Relic License +name: New Relic License +category: Proprietary Free +owner: New Relic +homepage_url: https://github.com/newrelic/rpm/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-new-relic +ignorable_copyrights: + - Copyright (c) 2008-2014 New Relic, Inc. +ignorable_holders: + - New Relic, Inc. +--- + All other components of this product are Copyright (c) 2008-2014 New Relic, Inc. All rights reserved. diff --git a/src/licensedcode/data/licenses/new-relic.yml b/src/licensedcode/data/licenses/new-relic.yml deleted file mode 100644 index 75077d68577..00000000000 --- a/src/licensedcode/data/licenses/new-relic.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: new-relic -short_name: New Relic License -name: New Relic License -category: Proprietary Free -owner: New Relic -homepage_url: https://github.com/newrelic/rpm/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-new-relic -ignorable_copyrights: - - Copyright (c) 2008-2014 New Relic, Inc. -ignorable_holders: - - New Relic, Inc. diff --git a/src/licensedcode/data/licenses/newlib-historical.LICENSE b/src/licensedcode/data/licenses/newlib-historical.LICENSE index afade798174..7d6e5cb6c46 100644 --- a/src/licensedcode/data/licenses/newlib-historical.LICENSE +++ b/src/licensedcode/data/licenses/newlib-historical.LICENSE @@ -1,3 +1,14 @@ +--- +key: newlib-historical +short_name: Newlib Historical License +name: Newlib Historical License +category: Permissive +owner: Red Hat +notes: this is a short historical permissive license seen in the newlib C library this license + text is also fully contained in the tcl license. +spdx_license_key: LicenseRef-scancode-newlib-historical +--- + The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this @@ -6,4 +17,4 @@ license, or royalty fee is required for any of the authorized uses. Modifications to this software may be copyrighted by their authors and need not follow the licensing terms described here, provided that the new terms are clearly indicated on the first page of each file where -they apply. +they apply. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/newlib-historical.yml b/src/licensedcode/data/licenses/newlib-historical.yml deleted file mode 100644 index 17af14a104a..00000000000 --- a/src/licensedcode/data/licenses/newlib-historical.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: newlib-historical -short_name: Newlib Historical License -name: Newlib Historical License -category: Permissive -owner: Red Hat -notes: this is a short historical permissive license seen in the newlib C library this license - text is also fully contained in the tcl license. -spdx_license_key: LicenseRef-scancode-newlib-historical diff --git a/src/licensedcode/data/licenses/newran.LICENSE b/src/licensedcode/data/licenses/newran.LICENSE index c7f42d9f393..7ec3899f59a 100644 --- a/src/licensedcode/data/licenses/newran.LICENSE +++ b/src/licensedcode/data/licenses/newran.LICENSE @@ -1,3 +1,13 @@ +--- +key: newran +short_name: Newran License +name: Newran License +category: Permissive +owner: Robert Davies +homepage_url: http://www.robertnz.net/nr02doc.htm +spdx_license_key: LicenseRef-scancode-newran +--- + There are no restrictions on the use of newran except that I take no liability for any problems that may arise from its use. I welcome its distribution as part of low cost CD-ROM collections. diff --git a/src/licensedcode/data/licenses/newran.yml b/src/licensedcode/data/licenses/newran.yml deleted file mode 100644 index c27e30198de..00000000000 --- a/src/licensedcode/data/licenses/newran.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: newran -short_name: Newran License -name: Newran License -category: Permissive -owner: Robert Davies -homepage_url: http://www.robertnz.net/nr02doc.htm -spdx_license_key: LicenseRef-scancode-newran diff --git a/src/licensedcode/data/licenses/newsletr.LICENSE b/src/licensedcode/data/licenses/newsletr.LICENSE index fa3b127810f..6bb7ccf3689 100644 --- a/src/licensedcode/data/licenses/newsletr.LICENSE +++ b/src/licensedcode/data/licenses/newsletr.LICENSE @@ -1,3 +1,17 @@ +--- +key: newsletr +short_name: Newsletr License +name: Newsletr License +category: Permissive +owner: Hunter Goatley +homepage_url: https://fedoraproject.org/wiki/Licensing/Newsletr +notes: | + Per Fedora, This is a zlib variant, less restrictive. It was found on the + component of texlive 2010. It is Free and GPL-compatible. +spdx_license_key: Newsletr +minimum_coverage: 50 +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: diff --git a/src/licensedcode/data/licenses/newsletr.yml b/src/licensedcode/data/licenses/newsletr.yml deleted file mode 100644 index 3ca4190bd48..00000000000 --- a/src/licensedcode/data/licenses/newsletr.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: newsletr -short_name: Newsletr License -name: Newsletr License -category: Permissive -owner: Hunter Goatley -homepage_url: https://fedoraproject.org/wiki/Licensing/Newsletr -notes: | - Per Fedora, This is a zlib variant, less restrictive. It was found on the - component of texlive 2010. It is Free and GPL-compatible. -spdx_license_key: Newsletr -minimum_coverage: 50 diff --git a/src/licensedcode/data/licenses/newton-king-cla.LICENSE b/src/licensedcode/data/licenses/newton-king-cla.LICENSE index 7941aeb8fda..9437e339f30 100644 --- a/src/licensedcode/data/licenses/newton-king-cla.LICENSE +++ b/src/licensedcode/data/licenses/newton-king-cla.LICENSE @@ -1,3 +1,14 @@ +--- +key: newton-king-cla +short_name: Newton-King CLA +name: James Newton-King CLA +category: Unstated License +owner: James Newton-King +homepage_url: https://github.com/JamesNK/Newtonsoft.Json/blob/ce7f283b94c86341036078ed2f4e241b907b816d/CONTRIBUTING.md +notes: this is a CLA +spdx_license_key: LicenseRef-scancode-newton-king-cla +--- + Contributor License Agreement By contributing your code to Json.NET you grant James Newton-King a non-exclusive, irrevocable, worldwide, diff --git a/src/licensedcode/data/licenses/newton-king-cla.yml b/src/licensedcode/data/licenses/newton-king-cla.yml deleted file mode 100644 index a409682236d..00000000000 --- a/src/licensedcode/data/licenses/newton-king-cla.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: newton-king-cla -short_name: Newton-King CLA -name: James Newton-King CLA -category: Unstated License -owner: James Newton-King -homepage_url: https://github.com/JamesNK/Newtonsoft.Json/blob/ce7f283b94c86341036078ed2f4e241b907b816d/CONTRIBUTING.md -notes: this is a CLA -spdx_license_key: LicenseRef-scancode-newton-king-cla diff --git a/src/licensedcode/data/licenses/nexb-eula-saas-1.1.0.LICENSE b/src/licensedcode/data/licenses/nexb-eula-saas-1.1.0.LICENSE index 0f3643f9f81..7e64ba293c2 100644 --- a/src/licensedcode/data/licenses/nexb-eula-saas-1.1.0.LICENSE +++ b/src/licensedcode/data/licenses/nexb-eula-saas-1.1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: nexb-eula-saas-1.1.0 +short_name: nexB EULA for SaaS 1.1.0 +name: nexB EULA for SaaS 1.1.0 +category: Commercial +owner: nexB +spdx_license_key: LicenseRef-scancode-nexb-eula-saas-1.1.0 +ignorable_urls: + - https://dejacode.zendesk.com/home +ignorable_emails: + - marketing@nexb.com +--- + NEXB INC. END USER AGREEMENT FOR SOFTWARE AS A SERVICE READ THIS AGREEMENT CAREFULLY. diff --git a/src/licensedcode/data/licenses/nexb-eula-saas-1.1.0.yml b/src/licensedcode/data/licenses/nexb-eula-saas-1.1.0.yml deleted file mode 100644 index b121e2d6e9a..00000000000 --- a/src/licensedcode/data/licenses/nexb-eula-saas-1.1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: nexb-eula-saas-1.1.0 -short_name: nexB EULA for SaaS 1.1.0 -name: nexB EULA for SaaS 1.1.0 -category: Commercial -owner: nexB -spdx_license_key: LicenseRef-scancode-nexb-eula-saas-1.1.0 -ignorable_urls: - - https://dejacode.zendesk.com/home -ignorable_emails: - - marketing@nexb.com diff --git a/src/licensedcode/data/licenses/nexb-ssla-1.1.0.LICENSE b/src/licensedcode/data/licenses/nexb-ssla-1.1.0.LICENSE index 2c85ae3962e..3c3002a8dfe 100644 --- a/src/licensedcode/data/licenses/nexb-ssla-1.1.0.LICENSE +++ b/src/licensedcode/data/licenses/nexb-ssla-1.1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: nexb-ssla-1.1.0 +short_name: nexB SSLA 1.1.0 +name: nexB Software Subscription License Agreement 1.1.0 +category: Commercial +owner: nexB +spdx_license_key: LicenseRef-scancode-nexb-ssla-1.1.0 +ignorable_emails: + - sales@nexb.com +--- + nexB Software Subscription License Agreement This Software Subscription License Agreement (the "Agreement) is entered into by and between nexB Inc., a California corporation, having its principal place of business at 735 Industrial Road Suite 101, San Carlos, CA 94070 and ___________________, a ______________ corporation, having its principal place of business at _________________________________________________ ("Licensee"). This Agreement is effective as of _________________ ("Effective Date"). diff --git a/src/licensedcode/data/licenses/nexb-ssla-1.1.0.yml b/src/licensedcode/data/licenses/nexb-ssla-1.1.0.yml deleted file mode 100644 index c93182c7575..00000000000 --- a/src/licensedcode/data/licenses/nexb-ssla-1.1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: nexb-ssla-1.1.0 -short_name: nexB SSLA 1.1.0 -name: nexB Software Subscription License Agreement 1.1.0 -category: Commercial -owner: nexB -spdx_license_key: LicenseRef-scancode-nexb-ssla-1.1.0 -ignorable_emails: - - sales@nexb.com diff --git a/src/licensedcode/data/licenses/ngpl.LICENSE b/src/licensedcode/data/licenses/ngpl.LICENSE index 05a11b3ef69..3193e91c527 100644 --- a/src/licensedcode/data/licenses/ngpl.LICENSE +++ b/src/licensedcode/data/licenses/ngpl.LICENSE @@ -1,3 +1,25 @@ +--- +key: ngpl +short_name: Nethack General Public License +name: Nethack General Public License +category: Copyleft Limited +owner: NetHack +homepage_url: http://www.nethack.org/common/license.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NGPL +text_urls: + - http://www.nethack.org/common/license.html +other_urls: + - http://www.opensource.org/licenses/NGPL + - https://opensource.org/licenses/NGPL +ignorable_copyrights: + - Copyright (c) 1989 M. Stephenson + - copyright 1988 Richard M. Stallman +ignorable_holders: + - M. Stephenson + - Richard M. Stallman +--- + Nethack General Public License Copyright (c) 1989 M. Stephenson (Based on the BISON general public license, copyright 1988 Richard M. Stallman) diff --git a/src/licensedcode/data/licenses/ngpl.yml b/src/licensedcode/data/licenses/ngpl.yml deleted file mode 100644 index d9e95915de3..00000000000 --- a/src/licensedcode/data/licenses/ngpl.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: ngpl -short_name: Nethack General Public License -name: Nethack General Public License -category: Copyleft Limited -owner: NetHack -homepage_url: http://www.nethack.org/common/license.html -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: NGPL -text_urls: - - http://www.nethack.org/common/license.html -other_urls: - - http://www.opensource.org/licenses/NGPL - - https://opensource.org/licenses/NGPL -ignorable_copyrights: - - Copyright (c) 1989 M. Stephenson - - copyright 1988 Richard M. Stallman -ignorable_holders: - - M. Stephenson - - Richard M. Stallman diff --git a/src/licensedcode/data/licenses/nice.LICENSE b/src/licensedcode/data/licenses/nice.LICENSE index dc4d9db8527..f07844b98ea 100644 --- a/src/licensedcode/data/licenses/nice.LICENSE +++ b/src/licensedcode/data/licenses/nice.LICENSE @@ -1,3 +1,13 @@ +--- +key: nice +short_name: Nice License +name: Nice License +category: Permissive +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-nice +--- + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. @@ -14,4 +24,4 @@ THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. I 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. +THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nice.yml b/src/licensedcode/data/licenses/nice.yml deleted file mode 100644 index 164b0e00168..00000000000 --- a/src/licensedcode/data/licenses/nice.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: nice -short_name: Nice License -name: Nice License -category: Permissive -owner: Unspecified -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-nice diff --git a/src/licensedcode/data/licenses/nicta-exception.LICENSE b/src/licensedcode/data/licenses/nicta-exception.LICENSE index 20b1b91cc25..f545b0ecb0b 100644 --- a/src/licensedcode/data/licenses/nicta-exception.LICENSE +++ b/src/licensedcode/data/licenses/nicta-exception.LICENSE @@ -1,6 +1,17 @@ +--- +key: nicta-exception +short_name: NICTA Exception to AGPL +name: NICTA Exception to AGPL +category: Copyleft +owner: NICTA +homepage_url: https://github.com/echronos/test-client-repo/blob/3ab330c3dcaa549d135c81c80e866184011c51d1/LICENSE_AGPLv3_with_additional_terms.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-nicta-exception +--- + No right, title or interest in or to any trade mark, service mark, logo or trade name of National ICT Australia Limited, ABN 62 102 206 173 (“NICTA”) or its licensors is granted. Modified versions of the Program must be plainly marked as such, and must not be distributed using “eChronos” as a trade mark or product name, or misrepresented as being -the original Program. +the original Program. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nicta-exception.yml b/src/licensedcode/data/licenses/nicta-exception.yml deleted file mode 100644 index 29d71344989..00000000000 --- a/src/licensedcode/data/licenses/nicta-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: nicta-exception -short_name: NICTA Exception to AGPL -name: NICTA Exception to AGPL -category: Copyleft -owner: NICTA -homepage_url: https://github.com/echronos/test-client-repo/blob/3ab330c3dcaa549d135c81c80e866184011c51d1/LICENSE_AGPLv3_with_additional_terms.txt -is_exception: yes -spdx_license_key: LicenseRef-scancode-nicta-exception diff --git a/src/licensedcode/data/licenses/nicta-psl.LICENSE b/src/licensedcode/data/licenses/nicta-psl.LICENSE index bd5d06d2966..a9502438a51 100644 --- a/src/licensedcode/data/licenses/nicta-psl.LICENSE +++ b/src/licensedcode/data/licenses/nicta-psl.LICENSE @@ -1,3 +1,24 @@ +--- +key: nicta-psl +short_name: NICTA Public Software Licence 1.0 +name: NICTA Public Software Licence 1.0 +category: Permissive +owner: NICTA +homepage_url: http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt +spdx_license_key: NICTA-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-nicta-psl +text_urls: + - http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt +other_urls: + - http://www.nicta.com.au/ + - https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt +ignorable_copyrights: + - Copyright (c) 2004 National ICT Australia Ltd +ignorable_holders: + - National ICT Australia Ltd +--- + NICTA Public Software Licence Version 1.0 diff --git a/src/licensedcode/data/licenses/nicta-psl.yml b/src/licensedcode/data/licenses/nicta-psl.yml deleted file mode 100644 index d7a83640ec0..00000000000 --- a/src/licensedcode/data/licenses/nicta-psl.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: nicta-psl -short_name: NICTA Public Software Licence 1.0 -name: NICTA Public Software Licence 1.0 -category: Permissive -owner: NICTA -homepage_url: http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt -spdx_license_key: NICTA-1.0 -other_spdx_license_keys: - - LicenseRef-scancode-nicta-psl -text_urls: - - http://www.opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt -other_urls: - - http://www.nicta.com.au/ - - https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt -ignorable_copyrights: - - Copyright (c) 2004 National ICT Australia Ltd -ignorable_holders: - - National ICT Australia Ltd diff --git a/src/licensedcode/data/licenses/niels-ferguson.LICENSE b/src/licensedcode/data/licenses/niels-ferguson.LICENSE index e22d6cc9115..a0069c19aa1 100644 --- a/src/licensedcode/data/licenses/niels-ferguson.LICENSE +++ b/src/licensedcode/data/licenses/niels-ferguson.LICENSE @@ -1,3 +1,16 @@ +--- +key: niels-ferguson +short_name: Niels Ferguson License +name: Niels Ferguson License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-niels-ferguson +ignorable_copyrights: + - Copyright (c) 2002 by Niels Ferguson +ignorable_holders: + - Niels Ferguson +--- + Copyright (c) 2002 by Niels Ferguson. The author hereby grants a perpetual license to everybody to use this @@ -20,4 +33,4 @@ to accept any liability of any form. This code, or the Twofish cipher, might very well be flawed; you have been warned. This software is provided as-is, without any kind of warrenty or guarantee. And that is really all you can expect when you download code for free from the -Internet. +Internet. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/niels-ferguson.yml b/src/licensedcode/data/licenses/niels-ferguson.yml deleted file mode 100644 index 004c310caf5..00000000000 --- a/src/licensedcode/data/licenses/niels-ferguson.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: niels-ferguson -short_name: Niels Ferguson License -name: Niels Ferguson License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-niels-ferguson -ignorable_copyrights: - - Copyright (c) 2002 by Niels Ferguson -ignorable_holders: - - Niels Ferguson diff --git a/src/licensedcode/data/licenses/nilsson-historical.LICENSE b/src/licensedcode/data/licenses/nilsson-historical.LICENSE index bd1d4255b45..9ee1c5df6b8 100644 --- a/src/licensedcode/data/licenses/nilsson-historical.LICENSE +++ b/src/licensedcode/data/licenses/nilsson-historical.LICENSE @@ -1,3 +1,13 @@ +--- +key: nilsson-historical +short_name: Nilsson Historical License +name: Nilsson Historical License +category: Permissive +owner: Hans-Peter Nilsson +notes: this is a short historical permissive license seen in the newlib C library +spdx_license_key: LicenseRef-scancode-nilsson-historical +--- + Permission to use, copy, modify, and distribute this software is freely granted, provided that the above copyright notice, this notice and the following disclaimer are preserved with no changes. @@ -5,4 +15,4 @@ and the following disclaimer are preserved with no changes. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. +PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nilsson-historical.yml b/src/licensedcode/data/licenses/nilsson-historical.yml deleted file mode 100644 index 6395aa0a174..00000000000 --- a/src/licensedcode/data/licenses/nilsson-historical.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: nilsson-historical -short_name: Nilsson Historical License -name: Nilsson Historical License -category: Permissive -owner: Hans-Peter Nilsson -notes: this is a short historical permissive license seen in the newlib C library -spdx_license_key: LicenseRef-scancode-nilsson-historical diff --git a/src/licensedcode/data/licenses/nist-pd-fallback.LICENSE b/src/licensedcode/data/licenses/nist-pd-fallback.LICENSE index cae378537e2..c32f32309e3 100644 --- a/src/licensedcode/data/licenses/nist-pd-fallback.LICENSE +++ b/src/licensedcode/data/licenses/nist-pd-fallback.LICENSE @@ -1,3 +1,15 @@ +--- +key: nist-pd-fallback +short_name: NIST Public Domain Notice with fallback +name: NIST Public Domain Notice with license fallback +category: Permissive +owner: NIST +homepage_url: https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE +spdx_license_key: NIST-PD-fallback +text_urls: + - https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst +--- + This software was developed by employees of the National Institute of Standards and Technology (NIST), an agency of the Federal Government and is being made available as a public service. Pursuant to title 17 United States Code Section diff --git a/src/licensedcode/data/licenses/nist-pd-fallback.yml b/src/licensedcode/data/licenses/nist-pd-fallback.yml deleted file mode 100644 index 63273a0ff00..00000000000 --- a/src/licensedcode/data/licenses/nist-pd-fallback.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: nist-pd-fallback -short_name: NIST Public Domain Notice with fallback -name: NIST Public Domain Notice with license fallback -category: Permissive -owner: NIST -homepage_url: https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE -spdx_license_key: NIST-PD-fallback -text_urls: - - https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst diff --git a/src/licensedcode/data/licenses/nist-pd.LICENSE b/src/licensedcode/data/licenses/nist-pd.LICENSE index f44d916d55e..6cdc9e61cb0 100644 --- a/src/licensedcode/data/licenses/nist-pd.LICENSE +++ b/src/licensedcode/data/licenses/nist-pd.LICENSE @@ -1,3 +1,19 @@ +--- +key: nist-pd +short_name: NIST Public Domain Notice +name: NIST Public Domain Notice +category: Public Domain +owner: NIST +homepage_url: https://github.com/usnistgov/jsip/blob/master/README#L122 +spdx_license_key: NIST-PD +text_urls: + - https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md#conditions-of-use + - https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt +other_urls: + - https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md + - https://github.com/usnistgov/jsip +--- + Conditions Of Use This software was developed by employees of the National Institute of diff --git a/src/licensedcode/data/licenses/nist-pd.yml b/src/licensedcode/data/licenses/nist-pd.yml deleted file mode 100644 index ffdd655714b..00000000000 --- a/src/licensedcode/data/licenses/nist-pd.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: nist-pd -short_name: NIST Public Domain Notice -name: NIST Public Domain Notice -category: Public Domain -owner: NIST -homepage_url: https://github.com/usnistgov/jsip/blob/master/README#L122 -spdx_license_key: NIST-PD -text_urls: - - https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md#conditions-of-use - - https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt -other_urls: - - https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md - - https://github.com/usnistgov/jsip diff --git a/src/licensedcode/data/licenses/nist-srd.LICENSE b/src/licensedcode/data/licenses/nist-srd.LICENSE index 2ed6504e7cd..089094a5e57 100644 --- a/src/licensedcode/data/licenses/nist-srd.LICENSE +++ b/src/licensedcode/data/licenses/nist-srd.LICENSE @@ -1 +1,13 @@ +--- +key: nist-srd +short_name: NIST SRD License +name: NIST Standard Reference Data License +category: Permissive +owner: NIST +homepage_url: https://www.nist.gov/open/copyright-fair-use-and-licensing-statements-srd-data-software-and-technical-series-publications#srd +spdx_license_key: LicenseRef-scancode-nist-srd +other_urls: + - https://lists.fedorahosted.org/archives/list/legal@lists.fedoraproject.org/thread/LSM6MO6TAHTIDNF5COCA6UWQDHWRF3AH/ +--- + Copyright protection on this compilation of data has been secured by the Secretary of the U.S. Department of Commerce on behalf of the United States in the United States and all countries that are parties to the Universal Copyright Convention, pursuant to Section 290(e) of Title 15 of the United States Code. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nist-srd.yml b/src/licensedcode/data/licenses/nist-srd.yml deleted file mode 100644 index d09af62edb7..00000000000 --- a/src/licensedcode/data/licenses/nist-srd.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: nist-srd -short_name: NIST SRD License -name: NIST Standard Reference Data License -category: Permissive -owner: NIST -homepage_url: https://www.nist.gov/open/copyright-fair-use-and-licensing-statements-srd-data-software-and-technical-series-publications#srd -spdx_license_key: LicenseRef-scancode-nist-srd -other_urls: - - https://lists.fedorahosted.org/archives/list/legal@lists.fedoraproject.org/thread/LSM6MO6TAHTIDNF5COCA6UWQDHWRF3AH/ diff --git a/src/licensedcode/data/licenses/nlod-1.0.LICENSE b/src/licensedcode/data/licenses/nlod-1.0.LICENSE index 520dd95cdff..01a4d9c80b8 100644 --- a/src/licensedcode/data/licenses/nlod-1.0.LICENSE +++ b/src/licensedcode/data/licenses/nlod-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: nlod-1.0 +short_name: NLOD-1.0 +name: Norwegian Licence for Open Government Data +category: Permissive +owner: Norway +homepage_url: http://data.norge.no/nlod/en/1.0 +spdx_license_key: NLOD-1.0 +other_urls: + - http://data.norge.no/nlod/no/1.0 +--- + Norwegian Licence for Open Government Data (NLOD) Preface of licence diff --git a/src/licensedcode/data/licenses/nlod-1.0.yml b/src/licensedcode/data/licenses/nlod-1.0.yml deleted file mode 100644 index 19bd95e8032..00000000000 --- a/src/licensedcode/data/licenses/nlod-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: nlod-1.0 -short_name: NLOD-1.0 -name: Norwegian Licence for Open Government Data -category: Permissive -owner: Norway -homepage_url: http://data.norge.no/nlod/en/1.0 -spdx_license_key: NLOD-1.0 -other_urls: - - http://data.norge.no/nlod/no/1.0 diff --git a/src/licensedcode/data/licenses/nlod-2.0.LICENSE b/src/licensedcode/data/licenses/nlod-2.0.LICENSE index 148e9782077..7b14cce9d81 100644 --- a/src/licensedcode/data/licenses/nlod-2.0.LICENSE +++ b/src/licensedcode/data/licenses/nlod-2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: nlod-2.0 +short_name: NLOD-2.0 +name: Norwegian Licence for Open Government Data (NLOD) 2.0 +category: Permissive +owner: Norway +homepage_url: https://data.norge.no/nlod/en/2.0/ +spdx_license_key: NLOD-2.0 +other_urls: + - http://data.norge.no/nlod/en/2.0 +--- + Norwegian Licence for Open Government Data (NLOD) 2.0 Preface of licence diff --git a/src/licensedcode/data/licenses/nlod-2.0.yml b/src/licensedcode/data/licenses/nlod-2.0.yml deleted file mode 100644 index c7b37036961..00000000000 --- a/src/licensedcode/data/licenses/nlod-2.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: nlod-2.0 -short_name: NLOD-2.0 -name: Norwegian Licence for Open Government Data (NLOD) 2.0 -category: Permissive -owner: Norway -homepage_url: https://data.norge.no/nlod/en/2.0/ -spdx_license_key: NLOD-2.0 -other_urls: - - http://data.norge.no/nlod/en/2.0 diff --git a/src/licensedcode/data/licenses/nlpl.LICENSE b/src/licensedcode/data/licenses/nlpl.LICENSE index d34ad6d20d8..8d77e7ef5a6 100644 --- a/src/licensedcode/data/licenses/nlpl.LICENSE +++ b/src/licensedcode/data/licenses/nlpl.LICENSE @@ -1,3 +1,22 @@ +--- +key: nlpl +short_name: NLPL +name: No Limit Public License +category: Public Domain +owner: Gilles Lamiral +homepage_url: https://fedoraproject.org/wiki/Licensing/NLPL +notes: | + Per Fedora, there is a certain irony in a Frenchman writing a license that + isn't wholly applicable in France, due to Moral Rights. But I digress. This + license is basically the same as the WTFPL (with slightly less profanity). + It is Free and GPL-Compatible. A copy of the license text was taken from + http://imapsync.lamiral.info/COPYING on 2012-07-09. +spdx_license_key: NLPL +text_urls: + - http://imapsync.lamiral.info/COPYING + - http://imapsync.lamiral.info/NOLIMIT +--- + NO LIMIT PUBLIC LICENSE Version 0, June 2012 diff --git a/src/licensedcode/data/licenses/nlpl.yml b/src/licensedcode/data/licenses/nlpl.yml deleted file mode 100644 index a8df5ceef8b..00000000000 --- a/src/licensedcode/data/licenses/nlpl.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: nlpl -short_name: NLPL -name: No Limit Public License -category: Public Domain -owner: Gilles Lamiral -homepage_url: https://fedoraproject.org/wiki/Licensing/NLPL -notes: | - Per Fedora, there is a certain irony in a Frenchman writing a license that - isn't wholly applicable in France, due to Moral Rights. But I digress. This - license is basically the same as the WTFPL (with slightly less profanity). - It is Free and GPL-Compatible. A copy of the license text was taken from - http://imapsync.lamiral.info/COPYING on 2012-07-09. -spdx_license_key: NLPL -text_urls: - - http://imapsync.lamiral.info/COPYING - - http://imapsync.lamiral.info/NOLIMIT diff --git a/src/licensedcode/data/licenses/no-license.LICENSE b/src/licensedcode/data/licenses/no-license.LICENSE new file mode 100644 index 00000000000..0aaf5d49285 --- /dev/null +++ b/src/licensedcode/data/licenses/no-license.LICENSE @@ -0,0 +1,10 @@ +--- +key: no-license +short_name: No License Stated +name: No License Stated +category: Unstated License +owner: Unspecified +is_unknown: yes +spdx_license_key: LicenseRef-scancode-no-license +notes: Scanning and analysis of a software object did not find any license information at all. +--- diff --git a/src/licensedcode/data/licenses/no-license.yml b/src/licensedcode/data/licenses/no-license.yml deleted file mode 100644 index 43920e893cb..00000000000 --- a/src/licensedcode/data/licenses/no-license.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: no-license -short_name: No License Stated -name: No License Stated -category: Unstated License -owner: Unspecified -notes: Scanning and analysis of a software object did not find any license information at all. -spdx_license_key: LicenseRef-scancode-no-license diff --git a/src/licensedcode/data/licenses/node-js.LICENSE b/src/licensedcode/data/licenses/node-js.LICENSE index e984d70e162..b8a4d32b411 100644 --- a/src/licensedcode/data/licenses/node-js.LICENSE +++ b/src/licensedcode/data/licenses/node-js.LICENSE @@ -1,3 +1,78 @@ +--- +key: node-js +short_name: Node License +name: Node License +category: Permissive +owner: Joyent +homepage_url: https://raw.githubusercontent.com/nodejs/node/master/LICENSE +notes: composite +spdx_license_key: LicenseRef-scancode-node-js +other_urls: + - https://nodejs.org/en/ +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler + - Copyright (c) 1998-2011 The OpenSSL Project + - Copyright (c) 2000-2006, The Perl Foundation + - Copyright (c) 2002-2012 Igor Sysoev + - Copyright (c) 2007, Google Inc. + - Copyright (c) 2009 Google Inc. + - Copyright (c) 2011, Ben Noordhuis + - Copyright (c) 2011,2012 Nginx, Inc. + - Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/) + - Copyright (c) Isaac Z. Schlueter + - Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com + - Copyright 1998 by the Massachusetts Institute of Technology + - Copyright 2006-2012, the V8 project authors + - Copyright 2011 Mathias Bynens + - Copyright Joyent, Inc. and other Node contributors + - copyright 2011 Mathias Bynens + - copyright Igor Sysoev + - copyright Joyent, Inc. and other Node contributors + - copyrighted by Apple Computer, Inc. + - copyrighted by Sun Microsystems Inc. + - copyrighted by the University of Cambridge and Google, Inc. +ignorable_holders: + - Apple Computer, Inc. + - Ben Noordhuis + - Christopher Jeffrey + - Google Inc. + - Igor Sysoev + - Isaac Z. Schlueter + - Jean-loup Gailly and Mark Adler + - Joyent, Inc. and other Node contributors + - Mathias Bynens + - Nginx, Inc. + - Sun Microsystems Inc. + - The OpenSSL Project + - The Perl Foundation + - Tjarda Koster + - the Massachusetts Institute of Technology + - the University of Cambridge and Google, Inc. + - the V8 project authors +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Mathias Pettersson and Brian Hammond + - The Perl Foundation + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://jelloween.deviantart.com/ + - http://mathiasbynens.be/ + - http://mths.be/mit + - http://mths.be/punycode + - http://www.apache.org/licenses/ + - http://www.openssl.org/ + - https://github.com/chjj +ignorable_emails: + - eay@cryptsoft.com + - info@bnoordhuis.nl + - jloup@gzip.org + - madler@alumni.caltech.edu + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + Node's license follows: ==== diff --git a/src/licensedcode/data/licenses/node-js.yml b/src/licensedcode/data/licenses/node-js.yml deleted file mode 100644 index eb8747fc1eb..00000000000 --- a/src/licensedcode/data/licenses/node-js.yml +++ /dev/null @@ -1,72 +0,0 @@ -key: node-js -short_name: Node License -name: Node License -category: Permissive -owner: Joyent -homepage_url: https://raw.githubusercontent.com/nodejs/node/master/LICENSE -notes: composite -spdx_license_key: LicenseRef-scancode-node-js -other_urls: - - https://nodejs.org/en/ -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 1995-2013 Jean-loup Gailly and Mark Adler - - Copyright (c) 1998-2011 The OpenSSL Project - - Copyright (c) 2000-2006, The Perl Foundation - - Copyright (c) 2002-2012 Igor Sysoev - - Copyright (c) 2007, Google Inc. - - Copyright (c) 2009 Google Inc. - - Copyright (c) 2011, Ben Noordhuis - - Copyright (c) 2011,2012 Nginx, Inc. - - Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/) - - Copyright (c) Isaac Z. Schlueter - - Copyright (c) by Tjarda Koster, http://jelloween.deviantart.com - - Copyright 1998 by the Massachusetts Institute of Technology - - Copyright 2006-2012, the V8 project authors - - Copyright 2011 Mathias Bynens - - Copyright Joyent, Inc. and other Node contributors - - copyright 2011 Mathias Bynens - - copyright Igor Sysoev - - copyright Joyent, Inc. and other Node contributors - - copyrighted by Apple Computer, Inc. - - copyrighted by Sun Microsystems Inc. - - copyrighted by the University of Cambridge and Google, Inc. -ignorable_holders: - - Apple Computer, Inc. - - Ben Noordhuis - - Christopher Jeffrey - - Google Inc. - - Igor Sysoev - - Isaac Z. Schlueter - - Jean-loup Gailly and Mark Adler - - Joyent, Inc. and other Node contributors - - Mathias Bynens - - Nginx, Inc. - - Sun Microsystems Inc. - - The OpenSSL Project - - The Perl Foundation - - Tjarda Koster - - the Massachusetts Institute of Technology - - the University of Cambridge and Google, Inc. - - the V8 project authors -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Mathias Pettersson and Brian Hammond - - The Perl Foundation - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://jelloween.deviantart.com/ - - http://mathiasbynens.be/ - - http://mths.be/mit - - http://mths.be/punycode - - http://www.apache.org/licenses/ - - http://www.openssl.org/ - - https://github.com/chjj -ignorable_emails: - - eay@cryptsoft.com - - info@bnoordhuis.nl - - jloup@gzip.org - - madler@alumni.caltech.edu - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/licenses/nokia-qt-exception-1.1.LICENSE b/src/licensedcode/data/licenses/nokia-qt-exception-1.1.LICENSE index 3c141bea29c..f3136d4a755 100644 --- a/src/licensedcode/data/licenses/nokia-qt-exception-1.1.LICENSE +++ b/src/licensedcode/data/licenses/nokia-qt-exception-1.1.LICENSE @@ -1,3 +1,39 @@ +--- +key: nokia-qt-exception-1.1 +short_name: Nokia Qt Exception to LGPL 2.1 +name: Nokia Qt Exception to LGPL 2.1 +category: Copyleft Limited +owner: Nokia +homepage_url: https://dev.keepassx.org/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION +is_exception: yes +is_deprecated: yes +notes: previously known as the SPDX id Nokia-Qt-exception-1.1 Replaced by qt-lgpl-exception-1.1 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + Nokia Qt LGPL Exception version 1.1 + As an additional permission to the GNU Lesser General Public License + version 2.1, the object code form of a "work that uses the Library" may + incorporate material from a header file that is part of the Library. You + may distribute such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + Moreover, you may apply this exception to a modified version of the + Library, provided that such modification does not involve copying material + from the Library into the modified Library's header files unless such + material is limited to + (i) numerical parameters; + (ii) data structure layouts; + (iii) accessors; and + (iv) small macros, templates and inline functions of five lines or less in + length. + Furthermore, you are not required to apply this additional permission to a + modified version of the Library. +--- + Nokia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/src/licensedcode/data/licenses/nokia-qt-exception-1.1.yml b/src/licensedcode/data/licenses/nokia-qt-exception-1.1.yml deleted file mode 100644 index abfb27acefa..00000000000 --- a/src/licensedcode/data/licenses/nokia-qt-exception-1.1.yml +++ /dev/null @@ -1,35 +0,0 @@ -key: nokia-qt-exception-1.1 -short_name: Nokia Qt Exception to LGPL 2.1 -name: Nokia Qt Exception to LGPL 2.1 -category: Copyleft Limited -owner: Nokia -homepage_url: https://dev.keepassx.org/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION -is_exception: yes -is_deprecated: yes - -notes: previously known as the SPDX id Nokia-Qt-exception-1.1 - Replaced by qt-lgpl-exception-1.1 -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -standard_notice: |- - Nokia Qt LGPL Exception version 1.1 - As an additional permission to the GNU Lesser General Public License - version 2.1, the object code form of a "work that uses the Library" may - incorporate material from a header file that is part of the Library. You - may distribute such object code under terms of your choice, provided that: - (i) the header files of the Library have not been modified; and - (ii) the incorporated material is limited to numerical parameters, data - structure layouts, accessors, macros, inline functions and templates; and - (iii) you comply with the terms of Section 6 of the GNU Lesser General - Public License version 2.1. - Moreover, you may apply this exception to a modified version of the - Library, provided that such modification does not involve copying material - from the Library into the modified Library's header files unless such - material is limited to - (i) numerical parameters; - (ii) data structure layouts; - (iii) accessors; and - (iv) small macros, templates and inline functions of five lines or less in - length. - Furthermore, you are not required to apply this additional permission to a - modified version of the Library. diff --git a/src/licensedcode/data/licenses/nokos-1.0a.LICENSE b/src/licensedcode/data/licenses/nokos-1.0a.LICENSE index d9445c357cc..c2ecdd26ac9 100644 --- a/src/licensedcode/data/licenses/nokos-1.0a.LICENSE +++ b/src/licensedcode/data/licenses/nokos-1.0a.LICENSE @@ -1,3 +1,24 @@ +--- +key: nokos-1.0a +short_name: NOKOS License 1.0a +name: Nokia Open Source License 1.0a +category: Copyleft Limited +owner: Nokia +homepage_url: http://www.opensource.org/licenses/nokia.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: Nokia +text_urls: + - http://www.opensource.org/licenses/nokia.html +osi_url: http://www.opensource.org/licenses/nokia.html +other_urls: + - http://www.opensource.org/licenses/nokia + - https://opensource.org/licenses/nokia +ignorable_copyrights: + - Copyright (c) Nokia and others +ignorable_holders: + - Nokia and others +--- + Nokia Open Source License (NOKOS License) Version 1.0a 1. DEFINITIONS. diff --git a/src/licensedcode/data/licenses/nokos-1.0a.yml b/src/licensedcode/data/licenses/nokos-1.0a.yml deleted file mode 100644 index dc9bffdbad6..00000000000 --- a/src/licensedcode/data/licenses/nokos-1.0a.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: nokos-1.0a -short_name: NOKOS License 1.0a -name: Nokia Open Source License 1.0a -category: Copyleft Limited -owner: Nokia -homepage_url: http://www.opensource.org/licenses/nokia.html -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: Nokia -text_urls: - - http://www.opensource.org/licenses/nokia.html -osi_url: http://www.opensource.org/licenses/nokia.html -other_urls: - - http://www.opensource.org/licenses/nokia - - https://opensource.org/licenses/nokia -ignorable_copyrights: - - Copyright (c) Nokia and others -ignorable_holders: - - Nokia and others diff --git a/src/licensedcode/data/licenses/non-violent-4.0.LICENSE b/src/licensedcode/data/licenses/non-violent-4.0.LICENSE index 284dba7455d..98b1fa1f663 100644 --- a/src/licensedcode/data/licenses/non-violent-4.0.LICENSE +++ b/src/licensedcode/data/licenses/non-violent-4.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: non-violent-4.0 +short_name: NVPL 4.0 +name: Non-Violent Public License v4 +category: Proprietary Free +owner: Thufie +homepage_url: https://thufie.lain.haus/NPL.html +spdx_license_key: LicenseRef-scancode-non-violent-4.0 +ignorable_urls: + - https://thufie.lain.haus/NPL.html +--- + NON-VIOLENT PUBLIC LICENSE v4 Preamble diff --git a/src/licensedcode/data/licenses/non-violent-4.0.yml b/src/licensedcode/data/licenses/non-violent-4.0.yml deleted file mode 100644 index 725595780b8..00000000000 --- a/src/licensedcode/data/licenses/non-violent-4.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: non-violent-4.0 -short_name: NVPL 4.0 -name: Non-Violent Public License v4 -category: Proprietary Free -owner: Thufie -homepage_url: https://thufie.lain.haus/NPL.html -spdx_license_key: LicenseRef-scancode-non-violent-4.0 -ignorable_urls: - - https://thufie.lain.haus/NPL.html diff --git a/src/licensedcode/data/licenses/nonexclusive.LICENSE b/src/licensedcode/data/licenses/nonexclusive.LICENSE index 1cf9d2498c3..bc5566e9854 100644 --- a/src/licensedcode/data/licenses/nonexclusive.LICENSE +++ b/src/licensedcode/data/licenses/nonexclusive.LICENSE @@ -1,3 +1,12 @@ +--- +key: nonexclusive +short_name: Nonexclusive License +name: Nonexclusive License +category: Permissive +owner: O'Reilly Media, Inc. +spdx_license_key: LicenseRef-scancode-nonexclusive +--- + The recipient, and any party obtaining a copy of these files from the recipient, directly or indirectly, is granted, free of charge, a full and unrestricted irrevocable, world-wide, paid up, royalty-free, @@ -7,4 +16,4 @@ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons who receive copies from any such party to do so. This license includes without limitation a license to do the foregoing actions under any patents of -the party supplying this software to the recipient. +the party supplying this software to the recipient. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nonexclusive.yml b/src/licensedcode/data/licenses/nonexclusive.yml deleted file mode 100644 index 5472950208e..00000000000 --- a/src/licensedcode/data/licenses/nonexclusive.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: nonexclusive -short_name: Nonexclusive License -name: Nonexclusive License -category: Permissive -owner: O'Reilly Media, Inc. -spdx_license_key: LicenseRef-scancode-nonexclusive diff --git a/src/licensedcode/data/licenses/nortel-dasa.LICENSE b/src/licensedcode/data/licenses/nortel-dasa.LICENSE index 971cd2b5509..9b9432c5735 100644 --- a/src/licensedcode/data/licenses/nortel-dasa.LICENSE +++ b/src/licensedcode/data/licenses/nortel-dasa.LICENSE @@ -1,3 +1,16 @@ +--- +key: nortel-dasa +short_name: Nortel DASA License +name: Nortel DASA License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-nortel-dasa +ignorable_emails: + - frank@comsys.dofn.de +ignorable_authors: + - F.Schnekenbuehl +--- + Nortel DASA License Created by F.Schnekenbuehl from clk_rcc8000.c @@ -6,4 +19,4 @@ A Joint venture of Daimler-Benz Aerospace and Nortel 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. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nortel-dasa.yml b/src/licensedcode/data/licenses/nortel-dasa.yml deleted file mode 100644 index 4dc4d28346d..00000000000 --- a/src/licensedcode/data/licenses/nortel-dasa.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: nortel-dasa -short_name: Nortel DASA License -name: Nortel DASA License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-nortel-dasa -ignorable_emails: - - frank@comsys.dofn.de -ignorable_authors: - - F.Schnekenbuehl - diff --git a/src/licensedcode/data/licenses/northwoods-sla-2021.LICENSE b/src/licensedcode/data/licenses/northwoods-sla-2021.LICENSE index 18efb96164c..d5ed86a48e1 100644 --- a/src/licensedcode/data/licenses/northwoods-sla-2021.LICENSE +++ b/src/licensedcode/data/licenses/northwoods-sla-2021.LICENSE @@ -1,3 +1,23 @@ +--- +key: northwoods-sla-2021 +short_name: Northwoods Software SLA 2021 +name: Northwoods Software SLA 2021 +category: Commercial +owner: Northwoods +homepage_url: https://gojs.net/latest/license.html +spdx_license_key: LicenseRef-scancode-northwoods-sla-2021 +other_urls: + - https://github.com/NorthwoodsSoftware/GoJS/blob/master/README.md#license +ignorable_copyrights: + - Copyright (c) 1999-2021 Northwoods Software Corporation +ignorable_holders: + - Northwoods Software Corporation +ignorable_urls: + - https://www.nwoods.com/ +ignorable_emails: + - GoSales@nwoods.com +--- + NORTHWOODS SOFTWARE CORPORATION Software License Agreement diff --git a/src/licensedcode/data/licenses/northwoods-sla-2021.yml b/src/licensedcode/data/licenses/northwoods-sla-2021.yml deleted file mode 100644 index 85932c79172..00000000000 --- a/src/licensedcode/data/licenses/northwoods-sla-2021.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: northwoods-sla-2021 -short_name: Northwoods Software SLA 2021 -name: Northwoods Software SLA 2021 -category: Commercial -owner: Northwoods -homepage_url: https://gojs.net/latest/license.html -spdx_license_key: LicenseRef-scancode-northwoods-sla-2021 -other_urls: - - https://github.com/NorthwoodsSoftware/GoJS/blob/master/README.md#license -ignorable_copyrights: - - Copyright (c) 1999-2021 Northwoods Software Corporation -ignorable_holders: - - Northwoods Software Corporation -ignorable_urls: - - https://www.nwoods.com/ -ignorable_emails: - - GoSales@nwoods.com diff --git a/src/licensedcode/data/licenses/nosl-1.0.LICENSE b/src/licensedcode/data/licenses/nosl-1.0.LICENSE index d46e49e984d..e092e4c0de3 100644 --- a/src/licensedcode/data/licenses/nosl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/nosl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: nosl-1.0 +short_name: NOSL 1.0 +name: Netizen Open Source License 1.0 +category: Copyleft Limited +owner: Netizen +homepage_url: http://bits.netizen.com.au/licenses/NOSL/ +spdx_license_key: NOSL +text_urls: + - http://bits.netizen.com.au/licenses/NOSL/nosl.txt +ignorable_urls: + - http://netizen.com.au/licenses/NOPL/ +--- + The Netizen Open Source License (NOSL) is a license based on the Mozilla Public License (MPL). NETIZEN OPEN SOURCE LICENSE Version 1.0 diff --git a/src/licensedcode/data/licenses/nosl-1.0.yml b/src/licensedcode/data/licenses/nosl-1.0.yml deleted file mode 100644 index 9081702c231..00000000000 --- a/src/licensedcode/data/licenses/nosl-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: nosl-1.0 -short_name: NOSL 1.0 -name: Netizen Open Source License 1.0 -category: Copyleft Limited -owner: Netizen -homepage_url: http://bits.netizen.com.au/licenses/NOSL/ -spdx_license_key: NOSL -text_urls: - - http://bits.netizen.com.au/licenses/NOSL/nosl.txt -ignorable_urls: - - http://netizen.com.au/licenses/NOPL/ diff --git a/src/licensedcode/data/licenses/nosl-3.0.LICENSE b/src/licensedcode/data/licenses/nosl-3.0.LICENSE index b423f837293..90011a76090 100644 --- a/src/licensedcode/data/licenses/nosl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/nosl-3.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: nosl-3.0 +short_name: Non-Profit OSL 3.0 +name: Non-Profit Open Software License 3.0 +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/NOSL3.0.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: NPOSL-3.0 +osi_license_key: NPOSL-3.0 +text_urls: + - http://www.opensource.org/licenses/NOSL3.0.html +osi_url: http://www.opensource.org/licenses/NOSL3.0.html +other_urls: + - http://www.opensource.org/licenses/NOSL3.0 + - https://opensource.org/licenses/NOSL3.0 +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + Non-Profit Open Software License ("Non-Profit OSL") 3.0 This Non-Profit Open Software License ("Non-Profit OSL") version 3.0 (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: diff --git a/src/licensedcode/data/licenses/nosl-3.0.yml b/src/licensedcode/data/licenses/nosl-3.0.yml deleted file mode 100644 index 1ebee9b3958..00000000000 --- a/src/licensedcode/data/licenses/nosl-3.0.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: nosl-3.0 -short_name: Non-Profit OSL 3.0 -name: Non-Profit Open Software License 3.0 -category: Copyleft -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/NOSL3.0.html -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: NPOSL-3.0 -osi_license_key: NPOSL-3.0 -text_urls: - - http://www.opensource.org/licenses/NOSL3.0.html -osi_url: http://www.opensource.org/licenses/NOSL3.0.html -other_urls: - - http://www.opensource.org/licenses/NOSL3.0 - - https://opensource.org/licenses/NOSL3.0 -ignorable_copyrights: - - Copyright (c) 2005 Lawrence Rosen -ignorable_holders: - - Lawrence Rosen diff --git a/src/licensedcode/data/licenses/notre-dame.LICENSE b/src/licensedcode/data/licenses/notre-dame.LICENSE index 0fe05588e60..fcf5fb44249 100644 --- a/src/licensedcode/data/licenses/notre-dame.LICENSE +++ b/src/licensedcode/data/licenses/notre-dame.LICENSE @@ -1,3 +1,19 @@ +--- +key: notre-dame +short_name: Notre Dame License +name: University of Notre Dame License +category: Permissive +owner: University of Notre Dame +homepage_url: https://github.com/RWTH-OS/MP-MPICH/blob/f2ae296477bb9d812fda587221b3419c09f85b4a/MPI-2-C%2B%2B/LICENSE +spdx_license_key: LicenseRef-scancode-notre-dame +ignorable_copyrights: + - Copyright 1997-2000, University of Notre Dame +ignorable_holders: + - University of Notre Dame +ignorable_authors: + - Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and Andrew Lumsdaine +--- + COPYRIGHT NOTICE: Copyright 1997-2000, University of Notre Dame. Authors: Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and diff --git a/src/licensedcode/data/licenses/notre-dame.yml b/src/licensedcode/data/licenses/notre-dame.yml deleted file mode 100644 index a72e7bb7494..00000000000 --- a/src/licensedcode/data/licenses/notre-dame.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: notre-dame -short_name: Notre Dame License -name: University of Notre Dame License -category: Permissive -owner: University of Notre Dame -homepage_url: https://github.com/RWTH-OS/MP-MPICH/blob/f2ae296477bb9d812fda587221b3419c09f85b4a/MPI-2-C%2B%2B/LICENSE -spdx_license_key: LicenseRef-scancode-notre-dame -ignorable_copyrights: - - Copyright 1997-2000, University of Notre Dame -ignorable_holders: - - University of Notre Dame -ignorable_authors: - - Jeremy G. Siek, Jeffery M. Squyres, Michael P. McNally, and Andrew Lumsdaine diff --git a/src/licensedcode/data/licenses/noweb.LICENSE b/src/licensedcode/data/licenses/noweb.LICENSE index f08f1c9ef14..cb7b948cb83 100644 --- a/src/licensedcode/data/licenses/noweb.LICENSE +++ b/src/licensedcode/data/licenses/noweb.LICENSE @@ -1,3 +1,15 @@ +--- +key: noweb +short_name: Noweb License +name: Noweb License +category: Copyleft Limited +owner: Norman Ramsey +homepage_url: https://fedoraproject.org/wiki/Licensing:Noweb?rd=Licensing/Noweb +spdx_license_key: Noweb +other_urls: + - https://fedoraproject.org/wiki/Licensing/Noweb +--- + Noweb is protected by copyright. It is not public-domain software or shareware, and it is not protected by a ``copyleft'' agreement like the one used by the Free Software Foundation. diff --git a/src/licensedcode/data/licenses/noweb.yml b/src/licensedcode/data/licenses/noweb.yml deleted file mode 100644 index b4b7b002bf0..00000000000 --- a/src/licensedcode/data/licenses/noweb.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: noweb -short_name: Noweb License -name: Noweb License -category: Copyleft Limited -owner: Norman Ramsey -homepage_url: https://fedoraproject.org/wiki/Licensing:Noweb?rd=Licensing/Noweb -spdx_license_key: Noweb -other_urls: - - https://fedoraproject.org/wiki/Licensing/Noweb diff --git a/src/licensedcode/data/licenses/npl-1.0.LICENSE b/src/licensedcode/data/licenses/npl-1.0.LICENSE index 9864fe1bce3..5484dce00ef 100644 --- a/src/licensedcode/data/licenses/npl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/npl-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: npl-1.0 +short_name: NPL 1.0 +name: Netscape Public License 1.0 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/NPL-1.0.html +spdx_license_key: NPL-1.0 +text_urls: + - http://www.mozilla.org/MPL/NPL-1.0.html +other_urls: + - http://www.mozilla.org/MPL/NPL/1.0/ + - http://www.mozilla.org/NPL/ +ignorable_copyrights: + - Copyright (c) 1998 Netscape Communications Corporation +ignorable_holders: + - Netscape Communications Corporation +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + NETSCAPE PUBLIC LICENSE Version 1.0 diff --git a/src/licensedcode/data/licenses/npl-1.0.yml b/src/licensedcode/data/licenses/npl-1.0.yml deleted file mode 100644 index 40c28cc328e..00000000000 --- a/src/licensedcode/data/licenses/npl-1.0.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: npl-1.0 -short_name: NPL 1.0 -name: Netscape Public License 1.0 -category: Copyleft Limited -owner: Mozilla -homepage_url: http://www.mozilla.org/MPL/NPL-1.0.html -spdx_license_key: NPL-1.0 -text_urls: - - http://www.mozilla.org/MPL/NPL-1.0.html -other_urls: - - http://www.mozilla.org/MPL/NPL/1.0/ - - http://www.mozilla.org/NPL/ -ignorable_copyrights: - - Copyright (c) 1998 Netscape Communications Corporation -ignorable_holders: - - Netscape Communications Corporation -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/licenses/npl-1.1.LICENSE b/src/licensedcode/data/licenses/npl-1.1.LICENSE index c7a67243e2d..2f2c3d4f885 100644 --- a/src/licensedcode/data/licenses/npl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/npl-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: npl-1.1 +short_name: NPL 1.1 +name: Netscape Public License 1.1 +category: Copyleft Limited +owner: Mozilla +homepage_url: http://www.mozilla.org/MPL/NPL-1.1.html +spdx_license_key: NPL-1.1 +text_urls: + - http://www.mozilla.org/MPL/NPL-1.1.html +other_urls: + - http://www.mozilla.org/MPL/NPL/1.1/ + - http://www.mozilla.org/NPL/ +ignorable_copyrights: + - Copyright (c) 1998-1999 Netscape Communications Corporation +ignorable_holders: + - Netscape Communications Corporation +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + AMENDMENTS The Netscape Public License Version 1.1 ("NPL") consists of the Mozilla Public License Version 1.1 with the following Amendments, including Exhibit A-Netscape Public License. Files identified with "Exhibit A-Netscape Public License" are governed by the Netscape Public License Version 1.1. diff --git a/src/licensedcode/data/licenses/npl-1.1.yml b/src/licensedcode/data/licenses/npl-1.1.yml deleted file mode 100644 index 01a4316417f..00000000000 --- a/src/licensedcode/data/licenses/npl-1.1.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: npl-1.1 -short_name: NPL 1.1 -name: Netscape Public License 1.1 -category: Copyleft Limited -owner: Mozilla -homepage_url: http://www.mozilla.org/MPL/NPL-1.1.html -spdx_license_key: NPL-1.1 -text_urls: - - http://www.mozilla.org/MPL/NPL-1.1.html -other_urls: - - http://www.mozilla.org/MPL/NPL/1.1/ - - http://www.mozilla.org/NPL/ -ignorable_copyrights: - - Copyright (c) 1998-1999 Netscape Communications Corporation -ignorable_holders: - - Netscape Communications Corporation -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/licenses/npsl-exception-0.93.LICENSE b/src/licensedcode/data/licenses/npsl-exception-0.93.LICENSE index f5210111890..335453b9e6b 100644 --- a/src/licensedcode/data/licenses/npsl-exception-0.93.LICENSE +++ b/src/licensedcode/data/licenses/npsl-exception-0.93.LICENSE @@ -1,3 +1,33 @@ +--- +key: npsl-exception-0.93 +short_name: Nmap NPSL Exception 0.93 +name: Nmap NPSL Exception 0.93 +category: Copyleft +owner: Insecure.Com +homepage_url: https://svn.nmap.org/nmap/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-npsl-exception-0.93 +faq_url: https://nmap.org/npsl/npsl-annotated.html +other_urls: + - https://nmap.org/book/man-legal.html + - https://nmap.org/npsl/ + - https://github.com/nmap/nmap/blob/master/zenmap/zenmap +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - https://nmap.org/ + - https://nmap.org/npsl/ + - https://nmap.org/oem + - https://npcap.org/ + - https://www.gnu.org/licenses/gpl-2.0.html#SEC4 +ignorable_emails: + - sales@nmap.com +--- + Nmap Public Source License Version 0.93 For more information on this license, see https://nmap.org/npsl/ diff --git a/src/licensedcode/data/licenses/npsl-exception-0.93.yml b/src/licensedcode/data/licenses/npsl-exception-0.93.yml deleted file mode 100644 index c3aa01a5c1e..00000000000 --- a/src/licensedcode/data/licenses/npsl-exception-0.93.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: npsl-exception-0.93 -short_name: Nmap NPSL Exception 0.93 -name: Nmap NPSL Exception 0.93 -category: Copyleft -owner: Insecure.Com -homepage_url: https://svn.nmap.org/nmap/LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-npsl-exception-0.93 -faq_url: https://nmap.org/npsl/npsl-annotated.html -other_urls: - - https://nmap.org/book/man-legal.html - - https://nmap.org/npsl/ - - https://github.com/nmap/nmap/blob/master/zenmap/zenmap -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation -ignorable_urls: - - https://nmap.org/ - - https://nmap.org/npsl/ - - https://nmap.org/oem - - https://npcap.org/ - - https://www.gnu.org/licenses/gpl-2.0.html#SEC4 -ignorable_emails: - - sales@nmap.com diff --git a/src/licensedcode/data/licenses/nrl-permission.LICENSE b/src/licensedcode/data/licenses/nrl-permission.LICENSE index 39360c003d2..654dc7728d8 100644 --- a/src/licensedcode/data/licenses/nrl-permission.LICENSE +++ b/src/licensedcode/data/licenses/nrl-permission.LICENSE @@ -1,3 +1,13 @@ +--- +key: nrl-permission +short_name: NRL permission +name: NRL permission +category: Permissive +owner: NRL +homepage_url: https://web.mit.edu/kerberos/krb5-1.14/doc/mitK5license.html +spdx_license_key: LicenseRef-scancode-nrl-permission +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, @@ -6,4 +16,4 @@ that both notices appear in supporting documentation. NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER -RESULTING FROM THE USE OF THIS SOFTWARE. +RESULTING FROM THE USE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nrl-permission.yml b/src/licensedcode/data/licenses/nrl-permission.yml deleted file mode 100644 index 863be399ef6..00000000000 --- a/src/licensedcode/data/licenses/nrl-permission.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: nrl-permission -short_name: NRL permission -name: NRL permission -category: Permissive -owner: NRL -homepage_url: https://web.mit.edu/kerberos/krb5-1.14/doc/mitK5license.html -spdx_license_key: LicenseRef-scancode-nrl-permission diff --git a/src/licensedcode/data/licenses/nrl.LICENSE b/src/licensedcode/data/licenses/nrl.LICENSE index 5a07508fd99..26a067e1386 100644 --- a/src/licensedcode/data/licenses/nrl.LICENSE +++ b/src/licensedcode/data/licenses/nrl.LICENSE @@ -1,3 +1,19 @@ +--- +key: nrl +short_name: NRL License +name: NRL License +category: Permissive +owner: NRL +homepage_url: http://web.mit.edu/network/isakmp/nrllicense.html +spdx_license_key: NRL +ignorable_copyrights: + - copyright by The Regents of the University of California +ignorable_holders: + - The Regents of the University of California +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + NRL License COPYRIGHT NOTICE diff --git a/src/licensedcode/data/licenses/nrl.yml b/src/licensedcode/data/licenses/nrl.yml deleted file mode 100644 index cb53a519179..00000000000 --- a/src/licensedcode/data/licenses/nrl.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: nrl -short_name: NRL License -name: NRL License -category: Permissive -owner: NRL -homepage_url: http://web.mit.edu/network/isakmp/nrllicense.html -spdx_license_key: NRL -ignorable_copyrights: - - copyright by The Regents of the University of California -ignorable_holders: - - The Regents of the University of California -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/licenses/ntlm.LICENSE b/src/licensedcode/data/licenses/ntlm.LICENSE index 533aeffd16c..b3daa5bc523 100644 --- a/src/licensedcode/data/licenses/ntlm.LICENSE +++ b/src/licensedcode/data/licenses/ntlm.LICENSE @@ -1,3 +1,26 @@ +--- +key: ntlm +short_name: NTLM License +name: NTLM License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-ntlm +minimum_coverage: 15 +ignorable_copyrights: + - Copyright (c) 1997 Eric S. Raymond + - Copyright (c) 2001 Mark Bush. + - Copyright (c) 2007 David (Buzz) Bussenschutt. + - Copyright (c) Andrew Tridgell 1992-1998 +ignorable_holders: + - Andrew Tridgell + - David (Buzz) Bussenschutt + - Eric S. Raymond + - Mark Bush +ignorable_emails: + - Mark.Bush@bushnet.demon.co.uk + - davidbuzz@gmail.com +--- + COPYRIGHT AND LICENCE This application is free software. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. You may freely use, copy and distribute this software as long as all copyright notices, including this notice, remain intact and that you do not try to claim it as your own or try to sell it. You may alter the code as long as you send me any diffs (this will ensure that you have an easier time of it when you upgrade ;). diff --git a/src/licensedcode/data/licenses/ntlm.yml b/src/licensedcode/data/licenses/ntlm.yml deleted file mode 100644 index 9b8931f1866..00000000000 --- a/src/licensedcode/data/licenses/ntlm.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: ntlm -short_name: NTLM License -name: NTLM License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-ntlm -minimum_coverage: 15 -ignorable_copyrights: - - Copyright (c) 1997 Eric S. Raymond - - Copyright (c) 2001 Mark Bush. - - Copyright (c) 2007 David (Buzz) Bussenschutt. - - Copyright (c) Andrew Tridgell 1992-1998 -ignorable_holders: - - Andrew Tridgell - - David (Buzz) Bussenschutt - - Eric S. Raymond - - Mark Bush -ignorable_emails: - - Mark.Bush@bushnet.demon.co.uk - - davidbuzz@gmail.com diff --git a/src/licensedcode/data/licenses/ntp-0.LICENSE b/src/licensedcode/data/licenses/ntp-0.LICENSE index d07f401c980..129cc812273 100644 --- a/src/licensedcode/data/licenses/ntp-0.LICENSE +++ b/src/licensedcode/data/licenses/ntp-0.LICENSE @@ -1,3 +1,14 @@ +--- +key: ntp-0 +short_name: NTP-0 +name: NTP No Attribution +category: Permissive +owner: MIT +homepage_url: https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c +spdx_license_key: NTP-0 +standard_notice: Copyright 1987 by MIT Student Information Processing Board +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted, provided that the names of M.I.T. and the M.I.T. S.I.P.B. not be used in diff --git a/src/licensedcode/data/licenses/ntp-0.yml b/src/licensedcode/data/licenses/ntp-0.yml deleted file mode 100644 index 3b63015a11e..00000000000 --- a/src/licensedcode/data/licenses/ntp-0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ntp-0 -short_name: NTP-0 -name: NTP No Attribution -category: Permissive -owner: MIT -homepage_url: https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c -spdx_license_key: NTP-0 -standard_notice: Copyright 1987 by MIT Student Information Processing Board diff --git a/src/licensedcode/data/licenses/ntpl-origin.LICENSE b/src/licensedcode/data/licenses/ntpl-origin.LICENSE index 626251b6c89..97cf79ded8c 100644 --- a/src/licensedcode/data/licenses/ntpl-origin.LICENSE +++ b/src/licensedcode/data/licenses/ntpl-origin.LICENSE @@ -1,3 +1,14 @@ +--- +key: ntpl-origin +short_name: NTP Origin License +name: NTP Origin License +category: Permissive +owner: Atos +notes: a rare, NTP-like license found in NTP. Origin B.V. was merged into Atos +spdx_license_key: LicenseRef-scancode-ntpl-origin +minimum_coverage: 90 +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and @@ -6,4 +17,4 @@ supporting documentation. This software is supported as is and without any express or implied warranties, including, without limitation, the implied warranties of merchantability and fitness for a particular purpose. The name Origin B.V. must not be used to endorse or promote -products derived from this software without prior written permission. +products derived from this software without prior written permission. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ntpl-origin.yml b/src/licensedcode/data/licenses/ntpl-origin.yml deleted file mode 100644 index e058454d689..00000000000 --- a/src/licensedcode/data/licenses/ntpl-origin.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ntpl-origin -short_name: NTP Origin License -name: NTP Origin License -category: Permissive -owner: Atos -notes: a rare, NTP-like license found in NTP. Origin B.V. was merged into Atos -spdx_license_key: LicenseRef-scancode-ntpl-origin -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/ntpl.LICENSE b/src/licensedcode/data/licenses/ntpl.LICENSE index 0e684de2ff2..157035cfb20 100644 --- a/src/licensedcode/data/licenses/ntpl.LICENSE +++ b/src/licensedcode/data/licenses/ntpl.LICENSE @@ -1,3 +1,21 @@ +--- +key: ntpl +is_deprecated: yes +short_name: NTP License +name: Network Time Protocol License +category: Permissive +owner: University of Delaware +homepage_url: https://www.eecis.udel.edu/~mills/ntp/html/copyright.html +text_urls: + - http://www.opensource.org/licenses/ntp-license.php +osi_url: http://www.opensource.org/licenses/ntp-license.php +faq_url: https://www.eecis.udel.edu/~mills/ntp/html/copyright.html +other_urls: + - http://www.opensource.org/licenses/NTP + - http://www.pgpool.net/mediawiki/index.php/pgpool-II_License +notes: replaced by mit-old-style-no-advert +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appears in all copies and diff --git a/src/licensedcode/data/licenses/ntpl.yml b/src/licensedcode/data/licenses/ntpl.yml deleted file mode 100644 index 2703622f0e4..00000000000 --- a/src/licensedcode/data/licenses/ntpl.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ntpl -is_deprecated: yes -short_name: NTP License -name: Network Time Protocol License -category: Permissive -owner: University of Delaware -homepage_url: https://www.eecis.udel.edu/~mills/ntp/html/copyright.html -text_urls: - - http://www.opensource.org/licenses/ntp-license.php -osi_url: http://www.opensource.org/licenses/ntp-license.php -faq_url: https://www.eecis.udel.edu/~mills/ntp/html/copyright.html -other_urls: - - http://www.opensource.org/licenses/NTP - - http://www.pgpool.net/mediawiki/index.php/pgpool-II_License -notes: replaced by mit-old-style-no-advert \ No newline at end of file diff --git a/src/licensedcode/data/licenses/numerical-recipes-notice.LICENSE b/src/licensedcode/data/licenses/numerical-recipes-notice.LICENSE index 3fa2ff8d27c..9feca6bfa6f 100644 --- a/src/licensedcode/data/licenses/numerical-recipes-notice.LICENSE +++ b/src/licensedcode/data/licenses/numerical-recipes-notice.LICENSE @@ -1,3 +1,16 @@ +--- +key: numerical-recipes-notice +short_name: Numerical Recipes Notice +name: Numerical Recipes Notice +category: Commercial +owner: Numerical Recipes +spdx_license_key: LicenseRef-scancode-numerical-recipes-notice +ignorable_urls: + - http://www.nr.com/ +ignorable_emails: + - orders@nr.com +--- + Types of License Offered Here are the types of licenses that we offer. Note that some types are diff --git a/src/licensedcode/data/licenses/numerical-recipes-notice.yml b/src/licensedcode/data/licenses/numerical-recipes-notice.yml deleted file mode 100644 index d8dbcf65be5..00000000000 --- a/src/licensedcode/data/licenses/numerical-recipes-notice.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: numerical-recipes-notice -short_name: Numerical Recipes Notice -name: Numerical Recipes Notice -category: Commercial -owner: Numerical Recipes -spdx_license_key: LicenseRef-scancode-numerical-recipes-notice -ignorable_urls: - - http://www.nr.com/ -ignorable_emails: - - orders@nr.com diff --git a/src/licensedcode/data/licenses/nunit-v2.LICENSE b/src/licensedcode/data/licenses/nunit-v2.LICENSE index 5af222988b9..c6602d9be7c 100644 --- a/src/licensedcode/data/licenses/nunit-v2.LICENSE +++ b/src/licensedcode/data/licenses/nunit-v2.LICENSE @@ -1,3 +1,19 @@ +--- +key: nunit-v2 +is_deprecated: yes +short_name: NUnit v2 License +name: NUnit v2 License +category: Permissive +owner: Charlie Poole +homepage_url: https://fedoraproject.org/wiki/Licensing:Nunit?rd=Licensing/Nunit +notes: this has been replaced by zlib-acknowledgement and used to be the Nunit SPDX id +text_urls: + - http://nunit.org/index.php?p=license&r=2.6 +other_urls: + - http://nunit.org/ + - https://fedoraproject.org/wiki/Licensing/Nunit +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: @@ -10,4 +26,4 @@ or Copyright © 2000-2002 Philip A. Craig 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nunit-v2.yml b/src/licensedcode/data/licenses/nunit-v2.yml deleted file mode 100644 index b03437329d4..00000000000 --- a/src/licensedcode/data/licenses/nunit-v2.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: nunit-v2 -is_deprecated: yes -short_name: NUnit v2 License -name: NUnit v2 License -category: Permissive -owner: Charlie Poole -homepage_url: https://fedoraproject.org/wiki/Licensing:Nunit?rd=Licensing/Nunit -notes: this has been replaced by zlib-acknowledgement and used to be the Nunit SPDX id -text_urls: - - http://nunit.org/index.php?p=license&r=2.6 -other_urls: - - http://nunit.org/ - - https://fedoraproject.org/wiki/Licensing/Nunit diff --git a/src/licensedcode/data/licenses/nvidia-2002.LICENSE b/src/licensedcode/data/licenses/nvidia-2002.LICENSE index c0c61ee93db..badc892d052 100644 --- a/src/licensedcode/data/licenses/nvidia-2002.LICENSE +++ b/src/licensedcode/data/licenses/nvidia-2002.LICENSE @@ -1,3 +1,12 @@ +--- +key: nvidia-2002 +short_name: NVIDIA 2002 License +name: NVIDIA 2002 License +category: Permissive +owner: NVIDIA +spdx_license_key: LicenseRef-scancode-nvidia-2002 +--- + NVIDIA Corporation("NVIDIA") supplies this software to you in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this NVIDIA software diff --git a/src/licensedcode/data/licenses/nvidia-2002.yml b/src/licensedcode/data/licenses/nvidia-2002.yml deleted file mode 100644 index ad40bd37da8..00000000000 --- a/src/licensedcode/data/licenses/nvidia-2002.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: nvidia-2002 -short_name: NVIDIA 2002 License -name: NVIDIA 2002 License -category: Permissive -owner: NVIDIA -spdx_license_key: LicenseRef-scancode-nvidia-2002 diff --git a/src/licensedcode/data/licenses/nvidia-apex-sdk-eula-2011.LICENSE b/src/licensedcode/data/licenses/nvidia-apex-sdk-eula-2011.LICENSE index c538ad5e168..2759cf6bc9e 100644 --- a/src/licensedcode/data/licenses/nvidia-apex-sdk-eula-2011.LICENSE +++ b/src/licensedcode/data/licenses/nvidia-apex-sdk-eula-2011.LICENSE @@ -1,3 +1,24 @@ +--- +key: nvidia-apex-sdk-eula-2011 +short_name: NVIDIA APEX SDK EULA 2011 +name: NVIDIA APEX SDK End User License Agreement 2011 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://developer.download.nvidia.com/assets/gamedev/docs/NVIDIA%20APEX%20EULA.pdf +spdx_license_key: LicenseRef-scancode-nvidia-apex-sdk-eula-2011 +other_urls: + - www.developer.nvidia.com/apex +ignorable_copyrights: + - Copyright 2011 NVIDIA Corporation +ignorable_holders: + - NVIDIA Corporation +ignorable_urls: + - http://www.developer.nvidia.com/apex +ignorable_emails: + - PHYSXLICENCING@NVIDIA.COM + - PHYSXLICENSING@NVIDIA.COM +--- + NVIDIA CORPORATION NVIDIA APEX SDK END USER LICENSE AGREEMENT Welcome to the new world of game development physical asset creation provided to you diff --git a/src/licensedcode/data/licenses/nvidia-apex-sdk-eula-2011.yml b/src/licensedcode/data/licenses/nvidia-apex-sdk-eula-2011.yml deleted file mode 100644 index b92a4feecfc..00000000000 --- a/src/licensedcode/data/licenses/nvidia-apex-sdk-eula-2011.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: nvidia-apex-sdk-eula-2011 -short_name: NVIDIA APEX SDK EULA 2011 -name: NVIDIA APEX SDK End User License Agreement 2011 -category: Proprietary Free -owner: NVIDIA -homepage_url: https://developer.download.nvidia.com/assets/gamedev/docs/NVIDIA%20APEX%20EULA.pdf -spdx_license_key: LicenseRef-scancode-nvidia-apex-sdk-eula-2011 -other_urls: - - www.developer.nvidia.com/apex -ignorable_copyrights: - - Copyright 2011 NVIDIA Corporation -ignorable_holders: - - NVIDIA Corporation -ignorable_urls: - - http://www.developer.nvidia.com/apex -ignorable_emails: - - PHYSXLICENCING@NVIDIA.COM - - PHYSXLICENSING@NVIDIA.COM diff --git a/src/licensedcode/data/licenses/nvidia-cuda-supplement-2020.LICENSE b/src/licensedcode/data/licenses/nvidia-cuda-supplement-2020.LICENSE index f642ab68e12..40317f552bc 100644 --- a/src/licensedcode/data/licenses/nvidia-cuda-supplement-2020.LICENSE +++ b/src/licensedcode/data/licenses/nvidia-cuda-supplement-2020.LICENSE @@ -1,3 +1,80 @@ +--- +key: nvidia-cuda-supplement-2020 +short_name: CUDA Toolkit Supplement to SLA for NVIDIA SDKs +name: CUDA Toolkit Supplement to SLA for NVIDIA SDKs +category: Proprietary Free +owner: NVIDIA +homepage_url: https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement +spdx_license_key: LicenseRef-scancode-nvidia-cuda-supplement-2020 +ignorable_copyrights: + - (c) Copyright 2013 King Abdullah University of Science and Technology + - Copyright (c) 1997-2012 University of Cambridge + - Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign + - Copyright (c) 2007-2009, Regents of the University of California + - Copyright (c) 2007-2012, Google Inc. + - Copyright (c) 2008-2009 Davide Barbieri University of Rome Tor Vergata + - Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima University + - Copyright (c) 2009-2012 Zoltan Herczeg + - Copyright (c) 2010 The University of Tennessee + - Copyright (c) 2010-2012 Zoltan Herczeg + - Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University + of Tokyo + - Copyright (c) 2011-2013, Yann Collet + - Copyright (c) 2012, The Science and Technology Facilities Council + - Copyright (c) 2012, University of Illinois + - Copyright (c) 2015-2017, Norbert Juffa + - Copyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc. + - Copyright (c) Microsoft Corporation + - Copyright 2010-2011, D. E. Shaw Research +ignorable_holders: + - D. E. Shaw Research + - Davide Barbieri University of Rome Tor Vergata + - Google Inc. + - King Abdullah University of Science and Technology + - Microsoft Corporation + - Mutsuo Saito, Makoto Matsumoto and Hiroshima University + - Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University of Tokyo + - Norbert Juffa + - OpenAI Google Inc. + - Regents of the University of California + - The Science and Technology Facilities Council + - The University of Tennessee + - University of Cambridge + - University of Illinois + - University of Illinois at Urbana-Champaign + - Yann Collet + - Zoltan Herczeg +ignorable_authors: + - Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa) David Keyes (david.keyes@kaust.edu.sa) + - Ahmad M. Abdelfattah, David Keyes, and Hatem Ltaief + - D. E. Shaw Research + - Davide Barbieri + - IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu + - Jonathan Hogg + - LLVM Team + - Li-Wen Chang + - Mutsuo Saito and Makoto Matsumoto + - Norbert Juffa + - Vasily Volkov + - the University of Tennessee +ignorable_urls: + - http://impact.crhc.illinois.edu/ + - http://llvm.org/ + - http://openai.com/ + - http://www.apache.org/licenses/LICENSE-2.0.html + - http://www.eclipse.org/ + - http://www.eclipse.org/legal/epl-v10.html + - http://www.gnu.org/licenses/gpl.txt + - http://www.opensource.org/licenses/bsd-license.php + - https://github.com/openai/openai-gemm/blob/master/LICENSE +ignorable_emails: + - ahmad.ahmad@kaust.edu.sa + - david.keyes@kaust.edu.sa + - hatem.ltaief@kaust.edu.sa + - nvidia-compute-license-questions@nvidia.com + - oss-requests@nvidia.com +--- + The terms in this supplement govern your use of the NVIDIA CUDA Toolkit SDK under the terms of your license agreement (“Agreement”) as modified by this supplement. Capitalized terms used but not defined below have the meaning assigned to them in the Agreement. This supplement is an exhibit to the Agreement and is incorporated as an integral part of the Agreement. In the event of conflict between the terms in this supplement and the terms in the Agreement, the terms in this supplement govern. diff --git a/src/licensedcode/data/licenses/nvidia-cuda-supplement-2020.yml b/src/licensedcode/data/licenses/nvidia-cuda-supplement-2020.yml deleted file mode 100644 index e6220a5930f..00000000000 --- a/src/licensedcode/data/licenses/nvidia-cuda-supplement-2020.yml +++ /dev/null @@ -1,74 +0,0 @@ -key: nvidia-cuda-supplement-2020 -short_name: CUDA Toolkit Supplement to SLA for NVIDIA SDKs -name: CUDA Toolkit Supplement to SLA for NVIDIA SDKs -category: Proprietary Free -owner: NVIDIA -homepage_url: https://docs.nvidia.com/cuda/eula/index.html#cuda-toolkit-supplement-license-agreement -spdx_license_key: LicenseRef-scancode-nvidia-cuda-supplement-2020 -ignorable_copyrights: - - (c) Copyright 2013 King Abdullah University of Science and Technology - - Copyright (c) 1997-2012 University of Cambridge - - Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign - - Copyright (c) 2007-2009, Regents of the University of California - - Copyright (c) 2007-2012, Google Inc. - - Copyright (c) 2008-2009 Davide Barbieri University of Rome Tor Vergata - - Copyright (c) 2009, 2010 Mutsuo Saito, Makoto Matsumoto and Hiroshima University - - Copyright (c) 2009-2012 Zoltan Herczeg - - Copyright (c) 2010 The University of Tennessee - - Copyright (c) 2010-2012 Zoltan Herczeg - - Copyright (c) 2011 Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University - of Tokyo - - Copyright (c) 2011-2013, Yann Collet - - Copyright (c) 2012, The Science and Technology Facilities Council - - Copyright (c) 2012, University of Illinois - - Copyright (c) 2015-2017, Norbert Juffa - - Copyright (c) 2016 OpenAI (http://openai.com), 2016 Google Inc. - - Copyright (c) Microsoft Corporation - - Copyright 2010-2011, D. E. Shaw Research -ignorable_holders: - - D. E. Shaw Research - - Davide Barbieri University of Rome Tor Vergata - - Google Inc. - - King Abdullah University of Science and Technology - - Microsoft Corporation - - Mutsuo Saito, Makoto Matsumoto and Hiroshima University - - Mutsuo Saito, Makoto Matsumoto, Hiroshima University and University of Tokyo - - Norbert Juffa - - OpenAI Google Inc. - - Regents of the University of California - - The Science and Technology Facilities Council - - The University of Tennessee - - University of Cambridge - - University of Illinois - - University of Illinois at Urbana-Champaign - - Yann Collet - - Zoltan Herczeg -ignorable_authors: - - Ahmad Abdelfattah (ahmad.ahmad@kaust.edu.sa) David Keyes (david.keyes@kaust.edu.sa) - - Ahmad M. Abdelfattah, David Keyes, and Hatem Ltaief - - D. E. Shaw Research - - Davide Barbieri - - IMPACT Group, University of Illinois, http://impact.crhc.illinois.edu - - Jonathan Hogg - - LLVM Team - - Li-Wen Chang - - Mutsuo Saito and Makoto Matsumoto - - Norbert Juffa - - Vasily Volkov - - the University of Tennessee -ignorable_urls: - - http://impact.crhc.illinois.edu/ - - http://llvm.org/ - - http://openai.com/ - - http://www.apache.org/licenses/LICENSE-2.0.html - - http://www.eclipse.org/ - - http://www.eclipse.org/legal/epl-v10.html - - http://www.gnu.org/licenses/gpl.txt - - http://www.opensource.org/licenses/bsd-license.php - - https://github.com/openai/openai-gemm/blob/master/LICENSE -ignorable_emails: - - ahmad.ahmad@kaust.edu.sa - - david.keyes@kaust.edu.sa - - hatem.ltaief@kaust.edu.sa - - nvidia-compute-license-questions@nvidia.com - - oss-requests@nvidia.com diff --git a/src/licensedcode/data/licenses/nvidia-gov.LICENSE b/src/licensedcode/data/licenses/nvidia-gov.LICENSE index 5bda1737da6..82752ce893d 100644 --- a/src/licensedcode/data/licenses/nvidia-gov.LICENSE +++ b/src/licensedcode/data/licenses/nvidia-gov.LICENSE @@ -1,3 +1,16 @@ +--- +key: nvidia-gov +short_name: NVIDIA License with Government Qualifications +name: NVIDIA License with Government Qualifications +category: Permissive +owner: NVIDIA +spdx_license_key: LicenseRef-scancode-nvidia-gov +ignorable_copyrights: + - Copyright 1993-2012 NVIDIA Corporation +ignorable_holders: + - NVIDIA Corporation +--- + Copyright 1993-2012 NVIDIA Corporation. All rights reserved. NOTICE TO USER: diff --git a/src/licensedcode/data/licenses/nvidia-gov.yml b/src/licensedcode/data/licenses/nvidia-gov.yml deleted file mode 100644 index dcbf2c554cf..00000000000 --- a/src/licensedcode/data/licenses/nvidia-gov.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: nvidia-gov -short_name: NVIDIA License with Government Qualifications -name: NVIDIA License with Government Qualifications -category: Permissive -owner: NVIDIA -spdx_license_key: LicenseRef-scancode-nvidia-gov -ignorable_copyrights: - - Copyright 1993-2012 NVIDIA Corporation -ignorable_holders: - - NVIDIA Corporation diff --git a/src/licensedcode/data/licenses/nvidia-isaac-eula-2019.1.LICENSE b/src/licensedcode/data/licenses/nvidia-isaac-eula-2019.1.LICENSE index 5f691ceac22..257b136bd0a 100644 --- a/src/licensedcode/data/licenses/nvidia-isaac-eula-2019.1.LICENSE +++ b/src/licensedcode/data/licenses/nvidia-isaac-eula-2019.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: nvidia-isaac-eula-2019.1 +short_name: NVIDIA ISAAC EULA v2019.1 +name: NVIDIA ISAAC EULA v2019.1 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://developer.nvidia.com/isaac-sdk +spdx_license_key: LicenseRef-scancode-nvidia-isaac-eula-2019.1 +faq_url: https://forums.developer.nvidia.com/t/when-do-i-get-charged-for-using-isaac-in-my-business-application/121294 +ignorable_urls: + - https://developer.nvidia.com/ +--- + SOFTWARE LICENSE AGREEMENT FOR NVIDIA SOFTWARE DEVELOPMENT KITS This Software License Agreement, including exhibits attached ("Agreement”) is a diff --git a/src/licensedcode/data/licenses/nvidia-isaac-eula-2019.1.yml b/src/licensedcode/data/licenses/nvidia-isaac-eula-2019.1.yml deleted file mode 100644 index d5e1fb9d690..00000000000 --- a/src/licensedcode/data/licenses/nvidia-isaac-eula-2019.1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: nvidia-isaac-eula-2019.1 -short_name: NVIDIA ISAAC EULA v2019.1 -name: NVIDIA ISAAC EULA v2019.1 -category: Proprietary Free -owner: NVIDIA -homepage_url: https://developer.nvidia.com/isaac-sdk -spdx_license_key: LicenseRef-scancode-nvidia-isaac-eula-2019.1 -faq_url: https://forums.developer.nvidia.com/t/when-do-i-get-charged-for-using-isaac-in-my-business-application/121294 -ignorable_urls: - - https://developer.nvidia.com/ diff --git a/src/licensedcode/data/licenses/nvidia-ngx-eula-2019.LICENSE b/src/licensedcode/data/licenses/nvidia-ngx-eula-2019.LICENSE index 67b14c02df3..ecfe283b126 100644 --- a/src/licensedcode/data/licenses/nvidia-ngx-eula-2019.LICENSE +++ b/src/licensedcode/data/licenses/nvidia-ngx-eula-2019.LICENSE @@ -1,3 +1,24 @@ +--- +key: nvidia-ngx-eula-2019 +short_name: NVIDIA NGX EULA 2019 +name: NVIDIA NGX EULA 2019 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://docs.nvidia.com/rtx/ngx/ngx-eula/index.html +spdx_license_key: LicenseRef-scancode-nvidia-ngx-eula-2019 +ignorable_copyrights: + - (c) Marketing and Promotion + - Copyright (c) 2019 NVIDIA Corporation +ignorable_holders: + - Marketing and Promotion + - NVIDIA Corporation +ignorable_urls: + - https://developer.nvidia.com/ + - https://developer.nvidia.com/sw-notification +ignorable_emails: + - nvidia-rtx-license-questions@nvidia.com +--- + Abstract This document is the End User License Agreement (EULA) for NVIDIA NGX. This document contains specific license terms and conditions for NVIDIA NGX. By accepting this agreement, you agree to comply with all the terms and conditions applicable to the specific product(s) included herein. diff --git a/src/licensedcode/data/licenses/nvidia-ngx-eula-2019.yml b/src/licensedcode/data/licenses/nvidia-ngx-eula-2019.yml deleted file mode 100644 index 22b05ea2b55..00000000000 --- a/src/licensedcode/data/licenses/nvidia-ngx-eula-2019.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: nvidia-ngx-eula-2019 -short_name: NVIDIA NGX EULA 2019 -name: NVIDIA NGX EULA 2019 -category: Proprietary Free -owner: NVIDIA -homepage_url: https://docs.nvidia.com/rtx/ngx/ngx-eula/index.html -spdx_license_key: LicenseRef-scancode-nvidia-ngx-eula-2019 -ignorable_copyrights: - - (c) Marketing and Promotion - - Copyright (c) 2019 NVIDIA Corporation -ignorable_holders: - - Marketing and Promotion - - NVIDIA Corporation -ignorable_urls: - - https://developer.nvidia.com/ - - https://developer.nvidia.com/sw-notification -ignorable_emails: - - nvidia-rtx-license-questions@nvidia.com diff --git a/src/licensedcode/data/licenses/nvidia-sdk-eula-v0.11.LICENSE b/src/licensedcode/data/licenses/nvidia-sdk-eula-v0.11.LICENSE index 0dfe39d1097..10fe654fbd8 100644 --- a/src/licensedcode/data/licenses/nvidia-sdk-eula-v0.11.LICENSE +++ b/src/licensedcode/data/licenses/nvidia-sdk-eula-v0.11.LICENSE @@ -1,3 +1,50 @@ +--- +key: nvidia-sdk-eula-v0.11 +short_name: NVIDIA SDK EULA v0.11 +name: License Agreement for NVIDIA Software Development Kits v0.11 +category: Proprietary Free +owner: NVIDIA +homepage_url: https://docs.nvidia.com/pdf/EULA.pdf +spdx_license_key: LicenseRef-scancode-nvidia-sdk-eula-v0.11 +standard_notice: | + Important Notice—Read before downloading, installing, copying or using the + licensed software: + This license agreement, including exhibits attached ("Agreement”) is a + legal agreement + between you and NVIDIA Corporation ("NVIDIA") and governs your use of a + NVIDIA + software development kit (“SDK”). + Each SDK has its own set of software and materials, but here is a + description of the types + of items that may be included in a SDK: source code, header files, APIs, + data sets and + assets (examples include images, textures, models, scenes, videos, native + API input/ + output files), binary software, sample code, libraries, utility programs, + programming + code and documentation. + This Agreement can be accepted only by an adult of legal age of majority in + the country + in which the SDK is used. + If you are entering into this Agreement on behalf of a company or other + legal entity, you + represent that you have the legal authority to bind the entity to this + Agreement, in which + case “you” will mean the entity you represent. + If you don’t have the required age or authority to accept this Agreement, + or if you don’t + accept all the terms and conditions of this Agreement, do not download, + install or use + the SDK. + You agree to use the SDK only for purposes that are permitted by (a) this + Agreement, + and (b) any applicable law, regulation or generally accepted practices or + guidelines in + the relevant jurisdictions. +ignorable_urls: + - http://www.nvidia.com/ +--- + License Agreement for NVIDIA Software Development Kits Release date: January 28, 2020 diff --git a/src/licensedcode/data/licenses/nvidia-sdk-eula-v0.11.yml b/src/licensedcode/data/licenses/nvidia-sdk-eula-v0.11.yml deleted file mode 100644 index c176e60779c..00000000000 --- a/src/licensedcode/data/licenses/nvidia-sdk-eula-v0.11.yml +++ /dev/null @@ -1,44 +0,0 @@ -key: nvidia-sdk-eula-v0.11 -short_name: NVIDIA SDK EULA v0.11 -name: License Agreement for NVIDIA Software Development Kits v0.11 -category: Proprietary Free -owner: NVIDIA -homepage_url: https://docs.nvidia.com/pdf/EULA.pdf -spdx_license_key: LicenseRef-scancode-nvidia-sdk-eula-v0.11 -standard_notice: | - Important Notice—Read before downloading, installing, copying or using the - licensed software: - This license agreement, including exhibits attached ("Agreement”) is a - legal agreement - between you and NVIDIA Corporation ("NVIDIA") and governs your use of a - NVIDIA - software development kit (“SDK”). - Each SDK has its own set of software and materials, but here is a - description of the types - of items that may be included in a SDK: source code, header files, APIs, - data sets and - assets (examples include images, textures, models, scenes, videos, native - API input/ - output files), binary software, sample code, libraries, utility programs, - programming - code and documentation. - This Agreement can be accepted only by an adult of legal age of majority in - the country - in which the SDK is used. - If you are entering into this Agreement on behalf of a company or other - legal entity, you - represent that you have the legal authority to bind the entity to this - Agreement, in which - case “you” will mean the entity you represent. - If you don’t have the required age or authority to accept this Agreement, - or if you don’t - accept all the terms and conditions of this Agreement, do not download, - install or use - the SDK. - You agree to use the SDK only for purposes that are permitted by (a) this - Agreement, - and (b) any applicable law, regulation or generally accepted practices or - guidelines in - the relevant jurisdictions. -ignorable_urls: - - http://www.nvidia.com/ diff --git a/src/licensedcode/data/licenses/nvidia-video-codec-agreement.LICENSE b/src/licensedcode/data/licenses/nvidia-video-codec-agreement.LICENSE index 56b1ad194a2..964565452bf 100644 --- a/src/licensedcode/data/licenses/nvidia-video-codec-agreement.LICENSE +++ b/src/licensedcode/data/licenses/nvidia-video-codec-agreement.LICENSE @@ -1,3 +1,13 @@ +--- +key: nvidia-video-codec-agreement +short_name: NVIDIA Video Codec SDK Agreement +name: NVIDIA Video Codec SDK Agreement +category: Proprietary Free +owner: NVIDIA +homepage_url: https://developer.nvidia.com/nvidia-video-codec-sdk-license-agreement +spdx_license_key: LicenseRef-scancode-nvidia-video-codec-agreement +--- + NVIDIA VIDEO CODEC SDK LICENSE AGREEMENT (“Agreement”) BY DOWNLOADING, INSTALLING OR USING THE SOFTWARE AND OTHER AVAILABLE MATERIALS, YOU (“LICENSEE”) AGREE TO BE BOUND BY THE FOLLOWING TERMS AND CONDITIONS OF THIS AGREEMENT. If Licensee does not agree to the terms and condition of this Agreement, THEN do not downLOAD, INSTALL OR USE the SOFTWARE AND MATERIALS. diff --git a/src/licensedcode/data/licenses/nvidia-video-codec-agreement.yml b/src/licensedcode/data/licenses/nvidia-video-codec-agreement.yml deleted file mode 100644 index 8a5c2bff8fe..00000000000 --- a/src/licensedcode/data/licenses/nvidia-video-codec-agreement.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: nvidia-video-codec-agreement -short_name: NVIDIA Video Codec SDK Agreement -name: NVIDIA Video Codec SDK Agreement -category: Proprietary Free -owner: NVIDIA -homepage_url: https://developer.nvidia.com/nvidia-video-codec-sdk-license-agreement -spdx_license_key: LicenseRef-scancode-nvidia-video-codec-agreement diff --git a/src/licensedcode/data/licenses/nvidia.LICENSE b/src/licensedcode/data/licenses/nvidia.LICENSE index 703e9a63afd..ddbc3eafc20 100644 --- a/src/licensedcode/data/licenses/nvidia.LICENSE +++ b/src/licensedcode/data/licenses/nvidia.LICENSE @@ -1,3 +1,19 @@ +--- +key: nvidia +short_name: NVIDIA License +name: NVIDIA License +category: Permissive +owner: NVIDIA +homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 +spdx_license_key: LicenseRef-scancode-nvidia +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 +ignorable_copyrights: + - Copyright (c) 1996-1998 NVIDIA, Corp. +ignorable_holders: + - NVIDIA, Corp. +--- + NOTICE TO USER: The source code is copyrighted under U.S. and international laws. NVIDIA, Corp. of Sunnyvale, California owns the copyright and as design patents pending on the design and interface of the NV chips. Users and possessors of this source code are hereby granted a nonexclusive, royalty-free copyright and design patent license to use this code in individual and commercial software. diff --git a/src/licensedcode/data/licenses/nvidia.yml b/src/licensedcode/data/licenses/nvidia.yml deleted file mode 100644 index 4792da727f3..00000000000 --- a/src/licensedcode/data/licenses/nvidia.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: nvidia -short_name: NVIDIA License -name: NVIDIA License -category: Permissive -owner: NVIDIA -homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 -spdx_license_key: LicenseRef-scancode-nvidia -text_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 -ignorable_copyrights: - - Copyright (c) 1996-1998 NVIDIA, Corp. -ignorable_holders: - - NVIDIA, Corp. diff --git a/src/licensedcode/data/licenses/nwhm.LICENSE b/src/licensedcode/data/licenses/nwhm.LICENSE index 906aba4b71f..a82a912f76d 100644 --- a/src/licensedcode/data/licenses/nwhm.LICENSE +++ b/src/licensedcode/data/licenses/nwhm.LICENSE @@ -1 +1,12 @@ -If you are not a white heterosexual male you are permitted to copy, sell and use this work in any manner you choose without need to include any attribution you do not see fit. You are asked as a courtesy to retain this license in any derivatives but you are not required. If you are a white heterosexual male you are provided the same permissions (reuse, modification, resale) but are required to include this license in any documentation and any public facing derivative. You are also required to include attribution to the original author or to an author responsible for redistribution of a derivative. +--- +key: nwhm +short_name: Non White Heterosexual Male +name: Non White Heterosexual Male +category: Permissive +owner: Unspecified +homepage_url: https://nonwhiteheterosexualmalelicense.org/ +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-nwhm +--- + +If you are not a white heterosexual male you are permitted to copy, sell and use this work in any manner you choose without need to include any attribution you do not see fit. You are asked as a courtesy to retain this license in any derivatives but you are not required. If you are a white heterosexual male you are provided the same permissions (reuse, modification, resale) but are required to include this license in any documentation and any public facing derivative. You are also required to include attribution to the original author or to an author responsible for redistribution of a derivative. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nwhm.yml b/src/licensedcode/data/licenses/nwhm.yml deleted file mode 100644 index ba57a57921d..00000000000 --- a/src/licensedcode/data/licenses/nwhm.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: nwhm -short_name: Non White Heterosexual Male -name: Non White Heterosexual Male -category: Permissive -owner: Unspecified -homepage_url: https://nonwhiteheterosexualmalelicense.org/ -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-nwhm diff --git a/src/licensedcode/data/licenses/nxp-firmware-patent.LICENSE b/src/licensedcode/data/licenses/nxp-firmware-patent.LICENSE index 919ad4ec1f6..636d1f1f4a1 100644 --- a/src/licensedcode/data/licenses/nxp-firmware-patent.LICENSE +++ b/src/licensedcode/data/licenses/nxp-firmware-patent.LICENSE @@ -1,3 +1,15 @@ +--- +key: nxp-firmware-patent +short_name: NXP Firmware with Patent License +name: NXP Firmware with Patent License +category: Proprietary Free +owner: NXP +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.sdma_firmware +spdx_license_key: LicenseRef-scancode-nxp-firmware-patent +ignorable_urls: + - git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ +--- + Redistribution. Reproduction and redistribution in binary form, without modification, for use solely in conjunction with a NXP chipset, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/nxp-firmware-patent.yml b/src/licensedcode/data/licenses/nxp-firmware-patent.yml deleted file mode 100644 index abd1aefe0a0..00000000000 --- a/src/licensedcode/data/licenses/nxp-firmware-patent.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: nxp-firmware-patent -short_name: NXP Firmware with Patent License -name: NXP Firmware with Patent License -category: Proprietary Free -owner: NXP -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.sdma_firmware -spdx_license_key: LicenseRef-scancode-nxp-firmware-patent -ignorable_urls: - - git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ diff --git a/src/licensedcode/data/licenses/nxp-linux-firmware.LICENSE b/src/licensedcode/data/licenses/nxp-linux-firmware.LICENSE index 61143b9ba47..8c2c9f77814 100644 --- a/src/licensedcode/data/licenses/nxp-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/nxp-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: nxp-linux-firmware +short_name: NXP Linux Firmware License +name: NXP Linux Firmware License +category: Proprietary Free +owner: NXP +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.NXP +spdx_license_key: LicenseRef-scancode-nxp-linux-firmware +--- + Redistribution and use in binary form is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/nxp-linux-firmware.yml b/src/licensedcode/data/licenses/nxp-linux-firmware.yml deleted file mode 100644 index da2fdd6f295..00000000000 --- a/src/licensedcode/data/licenses/nxp-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: nxp-linux-firmware -short_name: NXP Linux Firmware License -name: NXP Linux Firmware License -category: Proprietary Free -owner: NXP -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.NXP -spdx_license_key: LicenseRef-scancode-nxp-linux-firmware diff --git a/src/licensedcode/data/licenses/nxp-mc-firmware.LICENSE b/src/licensedcode/data/licenses/nxp-mc-firmware.LICENSE index 4013961bd19..a71ac43db79 100644 --- a/src/licensedcode/data/licenses/nxp-mc-firmware.LICENSE +++ b/src/licensedcode/data/licenses/nxp-mc-firmware.LICENSE @@ -1,3 +1,19 @@ +--- +key: nxp-mc-firmware +short_name: NXP MC Firmware License +name: NXP MC Firmware License +category: Proprietary Free +owner: NXP +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.nxp_mc_firmware +spdx_license_key: LicenseRef-scancode-nxp-mc-firmware +ignorable_copyrights: + - Copyright (c) 2006 David Gibson, IBM Corporation + - Copyright (c) 2006,2008-2011 Joseph Koshy +ignorable_holders: + - David Gibson, IBM Corporation + - Joseph Koshy +--- + Software License Agreement ("Agreement") ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE diff --git a/src/licensedcode/data/licenses/nxp-mc-firmware.yml b/src/licensedcode/data/licenses/nxp-mc-firmware.yml deleted file mode 100644 index aad01c40eaa..00000000000 --- a/src/licensedcode/data/licenses/nxp-mc-firmware.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: nxp-mc-firmware -short_name: NXP MC Firmware License -name: NXP MC Firmware License -category: Proprietary Free -owner: NXP -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.nxp_mc_firmware -spdx_license_key: LicenseRef-scancode-nxp-mc-firmware -ignorable_copyrights: - - Copyright (c) 2006 David Gibson, IBM Corporation - - Copyright (c) 2006,2008-2011 Joseph Koshy -ignorable_holders: - - David Gibson, IBM Corporation - - Joseph Koshy diff --git a/src/licensedcode/data/licenses/nxp-microcontroller-proprietary.LICENSE b/src/licensedcode/data/licenses/nxp-microcontroller-proprietary.LICENSE index e89b3b50669..d7e315bb71b 100644 --- a/src/licensedcode/data/licenses/nxp-microcontroller-proprietary.LICENSE +++ b/src/licensedcode/data/licenses/nxp-microcontroller-proprietary.LICENSE @@ -1,3 +1,14 @@ +--- +key: nxp-microcontroller-proprietary +short_name: NXP Microcontroller Proprietary +name: NXP Microcontroller Proprietary +category: Proprietary Free +owner: NXP +spdx_license_key: LicenseRef-scancode-nxp-microctl-proprietary +other_spdx_license_keys: + - LicenseRef-scancode-nxp-microcontroller-proprietary +--- + Software that is described herein is for illustrative purposes only which provides customers with programming information regarding the products. This software is supplied ""AS IS"" without any warranties. diff --git a/src/licensedcode/data/licenses/nxp-microcontroller-proprietary.yml b/src/licensedcode/data/licenses/nxp-microcontroller-proprietary.yml deleted file mode 100644 index c7ad37393b3..00000000000 --- a/src/licensedcode/data/licenses/nxp-microcontroller-proprietary.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: nxp-microcontroller-proprietary -short_name: NXP Microcontroller Proprietary -name: NXP Microcontroller Proprietary -category: Proprietary Free -owner: NXP -spdx_license_key: LicenseRef-scancode-nxp-microctl-proprietary -other_spdx_license_keys: - - LicenseRef-scancode-nxp-microcontroller-proprietary diff --git a/src/licensedcode/data/licenses/nxp-warranty-disclaimer.LICENSE b/src/licensedcode/data/licenses/nxp-warranty-disclaimer.LICENSE index 6d34cce9e60..73f8c1febf6 100644 --- a/src/licensedcode/data/licenses/nxp-warranty-disclaimer.LICENSE +++ b/src/licensedcode/data/licenses/nxp-warranty-disclaimer.LICENSE @@ -1,3 +1,12 @@ +--- +key: nxp-warranty-disclaimer +short_name: NXP Warranty Disclaimer +name: NXP Warranty Disclaimer +category: Proprietary Free +owner: NXP +spdx_license_key: LicenseRef-scancode-nxp-warranty-disclaimer +--- + Software that is described herein is for illustrative purposes only which provides customers with programming information regarding the products. This software is supplied "AS IS" without any warranties. diff --git a/src/licensedcode/data/licenses/nxp-warranty-disclaimer.yml b/src/licensedcode/data/licenses/nxp-warranty-disclaimer.yml deleted file mode 100644 index c63f5752552..00000000000 --- a/src/licensedcode/data/licenses/nxp-warranty-disclaimer.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: nxp-warranty-disclaimer -short_name: NXP Warranty Disclaimer -name: NXP Warranty Disclaimer -category: Proprietary Free -owner: NXP -spdx_license_key: LicenseRef-scancode-nxp-warranty-disclaimer diff --git a/src/licensedcode/data/licenses/nysl-0.9982-jp.LICENSE b/src/licensedcode/data/licenses/nysl-0.9982-jp.LICENSE index 6d4847dd119..c1a2e096f1c 100644 --- a/src/licensedcode/data/licenses/nysl-0.9982-jp.LICENSE +++ b/src/licensedcode/data/licenses/nysl-0.9982-jp.LICENSE @@ -1,3 +1,20 @@ +--- +key: nysl-0.9982-jp +language: ja +short_name: NYSL 0.9982 JP +name: NYSL 0.9982 Japanese +category: Permissive +owner: Kazuhiro Inaba +homepage_url: http://www.kmonos.net/nysl/index.en.html +spdx_license_key: LicenseRef-scancode-nysl-0.9982-jp +text_urls: + - https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt +faq_url: http://www.kmonos.net/nysl/readme.html +other_urls: + - http://www.kmonos.net/nysl/ + - http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/ +--- + NYSL Version 0.9982 ---------------------------------------- @@ -15,4 +32,4 @@ B. このソフトを利用することによって生じた損害等につい C. 著作者人格権は に帰属します。著作権は放棄します。 -D. 以上の3項は、ソース・実行バイナリの双方に適用されます。 +D. 以上の3項は、ソース・実行バイナリの双方に適用されます。 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nysl-0.9982-jp.yml b/src/licensedcode/data/licenses/nysl-0.9982-jp.yml deleted file mode 100644 index 7e4cf09e40e..00000000000 --- a/src/licensedcode/data/licenses/nysl-0.9982-jp.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: nysl-0.9982-jp -language: ja -short_name: NYSL 0.9982 JP -name: NYSL 0.9982 Japanese -category: Permissive -owner: Kazuhiro Inaba -homepage_url: http://www.kmonos.net/nysl/index.en.html -spdx_license_key: LicenseRef-scancode-nysl-0.9982-jp -text_urls: - - https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt -faq_url: http://www.kmonos.net/nysl/readme.html -other_urls: - - http://www.kmonos.net/nysl/ - - http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/ diff --git a/src/licensedcode/data/licenses/nysl-0.9982.LICENSE b/src/licensedcode/data/licenses/nysl-0.9982.LICENSE index adf20378507..ffbce0b0c00 100644 --- a/src/licensedcode/data/licenses/nysl-0.9982.LICENSE +++ b/src/licensedcode/data/licenses/nysl-0.9982.LICENSE @@ -1,3 +1,22 @@ +--- +key: nysl-0.9982 +short_name: NYSL 0.9982 +name: NYSL 0.9982 +category: Permissive +owner: Kazuhiro Inaba +homepage_url: http://www.kmonos.net/nysl/index.en.html +notes: | + the original version is in Japanese but we track the English text only for + now +spdx_license_key: LicenseRef-scancode-nysl-0.9982 +text_urls: + - https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt +faq_url: http://www.kmonos.net/nysl/readme.html +other_urls: + - http://www.kmonos.net/nysl/ + - http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/ +--- + NYSL Version 0.9982 (en) (Unofficial) ---------------------------------------- A. This software is "Everyone'sWare". It means: @@ -19,4 +38,4 @@ B. The author is not responsible for any kind of damages or loss C. Copyrighted to D. Above three clauses are applied both to source and binary - form of this software. + form of this software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/nysl-0.9982.yml b/src/licensedcode/data/licenses/nysl-0.9982.yml deleted file mode 100644 index 275143c7e0d..00000000000 --- a/src/licensedcode/data/licenses/nysl-0.9982.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: nysl-0.9982 -short_name: NYSL 0.9982 -name: NYSL 0.9982 -category: Permissive -owner: Kazuhiro Inaba -homepage_url: http://www.kmonos.net/nysl/index.en.html -notes: | - the original version is in Japanese but we track the English text only for - now -spdx_license_key: LicenseRef-scancode-nysl-0.9982 -text_urls: - - https://raw.githubusercontent.com/uasi/license-templates/0f48d7532fb4cc9c26fc6093db680e0601bf5738/LICENSE.NYSL.txt -faq_url: http://www.kmonos.net/nysl/readme.html -other_urls: - - http://www.kmonos.net/nysl/ - - http://search.cpan.org/~yakex/Software-License-NYSL-v0.0.1/ diff --git a/src/licensedcode/data/licenses/o-uda-1.0.LICENSE b/src/licensedcode/data/licenses/o-uda-1.0.LICENSE index 3c574b7aa25..e4be96674f3 100644 --- a/src/licensedcode/data/licenses/o-uda-1.0.LICENSE +++ b/src/licensedcode/data/licenses/o-uda-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: o-uda-1.0 +short_name: O-UDA-1.0 +name: Open Use of Data Agreement v1.0 +category: Permissive +owner: Microsoft +homepage_url: https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md +spdx_license_key: O-UDA-1.0 +other_urls: + - https://cdla.dev/open-use-of-data-agreement-v1-0/ +--- + Open Use of Data Agreement v1.0 This is the Open Use of Data Agreement, Version 1.0 (the "O-UDA"). Capitalized terms are defined in Section 5. Data Provider and you agree as follows: diff --git a/src/licensedcode/data/licenses/o-uda-1.0.yml b/src/licensedcode/data/licenses/o-uda-1.0.yml deleted file mode 100644 index 09001410203..00000000000 --- a/src/licensedcode/data/licenses/o-uda-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: o-uda-1.0 -short_name: O-UDA-1.0 -name: Open Use of Data Agreement v1.0 -category: Permissive -owner: Microsoft -homepage_url: https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md -spdx_license_key: O-UDA-1.0 -other_urls: - - https://cdla.dev/open-use-of-data-agreement-v1-0/ diff --git a/src/licensedcode/data/licenses/o-young-jong.LICENSE b/src/licensedcode/data/licenses/o-young-jong.LICENSE index 939a5c1740b..38fb0f7128f 100644 --- a/src/licensedcode/data/licenses/o-young-jong.LICENSE +++ b/src/licensedcode/data/licenses/o-young-jong.LICENSE @@ -1,3 +1,12 @@ +--- +key: o-young-jong +short_name: O Young Jong License +name: O Young Jong License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-o-young-jong +--- + Copying or modifying this code for any purpose is permitted, provided that this copyright notice is preserved in its entirety in all copies or modifications. diff --git a/src/licensedcode/data/licenses/o-young-jong.yml b/src/licensedcode/data/licenses/o-young-jong.yml deleted file mode 100644 index 8eb982506de..00000000000 --- a/src/licensedcode/data/licenses/o-young-jong.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: o-young-jong -short_name: O Young Jong License -name: O Young Jong License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-o-young-jong diff --git a/src/licensedcode/data/licenses/oasis-ipr-2013.LICENSE b/src/licensedcode/data/licenses/oasis-ipr-2013.LICENSE index 1b78a81d4bf..9b763d551f4 100644 --- a/src/licensedcode/data/licenses/oasis-ipr-2013.LICENSE +++ b/src/licensedcode/data/licenses/oasis-ipr-2013.LICENSE @@ -1,3 +1,24 @@ +--- +key: oasis-ipr-2013 +short_name: OASIS IPR 2013 +name: OASIS Intellectual Property Rights (IPR) Policy 2013 +category: Proprietary Free +owner: OASIS +homepage_url: https://www.oasis-open.org/policies-guidelines/ipr/ +spdx_license_key: LicenseRef-scancode-oasis-ipr-2013 +other_urls: + - https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L103Attac +ignorable_copyrights: + - Copyright (c) OASIS Open +ignorable_holders: + - OASIS Open +ignorable_urls: + - http://www.oasis-open.org/policies-guidelines/ipr + - http://www.oasis-open.org/who/intellectualproperty.php + - http://www.oasisopen.org/policies-guidelines/ipr + - http://www.oasisopen.org/who/intellectualproperty.php +--- + Intellectual Property Rights (IPR) Policy 1. INTRODUCTION 2. DEFINITIONS diff --git a/src/licensedcode/data/licenses/oasis-ipr-2013.yml b/src/licensedcode/data/licenses/oasis-ipr-2013.yml deleted file mode 100644 index a28b21099fd..00000000000 --- a/src/licensedcode/data/licenses/oasis-ipr-2013.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: oasis-ipr-2013 -short_name: OASIS IPR 2013 -name: OASIS Intellectual Property Rights (IPR) Policy 2013 -category: Proprietary Free -owner: OASIS -homepage_url: https://www.oasis-open.org/policies-guidelines/ipr/ -spdx_license_key: LicenseRef-scancode-oasis-ipr-2013 -other_urls: - - https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L103Attac -ignorable_copyrights: - - Copyright (c) OASIS Open -ignorable_holders: - - OASIS Open -ignorable_urls: - - http://www.oasis-open.org/policies-guidelines/ipr - - http://www.oasis-open.org/who/intellectualproperty.php - - http://www.oasisopen.org/policies-guidelines/ipr - - http://www.oasisopen.org/who/intellectualproperty.php diff --git a/src/licensedcode/data/licenses/oasis-ipr-policy-2014.LICENSE b/src/licensedcode/data/licenses/oasis-ipr-policy-2014.LICENSE index 28fb3614c40..cf6d5e1a2a8 100644 --- a/src/licensedcode/data/licenses/oasis-ipr-policy-2014.LICENSE +++ b/src/licensedcode/data/licenses/oasis-ipr-policy-2014.LICENSE @@ -1,3 +1,20 @@ +--- +key: oasis-ipr-policy-2014 +short_name: Oasis IPR Policy License 2014 +name: Oasis IPR Policy License 2014-10-15 +category: Proprietary Free +owner: OASIS +homepage_url: https://www.oasis-open.org/policies-guidelines/ipr +spdx_license_key: LicenseRef-scancode-oasis-ipr-policy-2014 +ignorable_copyrights: + - Copyright (c) OASIS Open +ignorable_holders: + - OASIS Open +ignorable_urls: + - http://www.oasis-open.org/policies-guidelines/ipr + - http://www.oasis-open.org/who/intellectualproperty.php +--- + Intellectual Property Rights (IPR) Policy @@ -276,4 +293,4 @@ Dates Approved: Wed, 2013-07-31 Effective: -Wed, 2014-10-15 +Wed, 2014-10-15 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/oasis-ipr-policy-2014.yml b/src/licensedcode/data/licenses/oasis-ipr-policy-2014.yml deleted file mode 100644 index 320edcf4a24..00000000000 --- a/src/licensedcode/data/licenses/oasis-ipr-policy-2014.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: oasis-ipr-policy-2014 -short_name: Oasis IPR Policy License 2014 -name: Oasis IPR Policy License 2014-10-15 -category: Proprietary Free -owner: OASIS -homepage_url: https://www.oasis-open.org/policies-guidelines/ipr -spdx_license_key: LicenseRef-scancode-oasis-ipr-policy-2014 -ignorable_copyrights: - - Copyright (c) OASIS Open -ignorable_holders: - - OASIS Open -ignorable_urls: - - http://www.oasis-open.org/policies-guidelines/ipr - - http://www.oasis-open.org/who/intellectualproperty.php diff --git a/src/licensedcode/data/licenses/oasis-ws-security-spec.LICENSE b/src/licensedcode/data/licenses/oasis-ws-security-spec.LICENSE index 56e6bafe060..1af4bc78ccb 100644 --- a/src/licensedcode/data/licenses/oasis-ws-security-spec.LICENSE +++ b/src/licensedcode/data/licenses/oasis-ws-security-spec.LICENSE @@ -1,3 +1,19 @@ +--- +key: oasis-ws-security-spec +short_name: Oasis WS Security Specification License +name: Oasis WS Security Specification License +category: Permissive +owner: OASIS +homepage_url: http://www.oasis-open.org/org +spdx_license_key: LicenseRef-scancode-oasis-ws-security-spec +text_urls: + - http://www.oasis-open.org/org +ignorable_copyrights: + - Copyright (c) OASIS Open 2002-2004 +ignorable_holders: + - OASIS Open +--- + Oasis WS Security Specification License OASIS takes no position regarding the validity or scope of any intellectual diff --git a/src/licensedcode/data/licenses/oasis-ws-security-spec.yml b/src/licensedcode/data/licenses/oasis-ws-security-spec.yml deleted file mode 100644 index 88c5e68af3f..00000000000 --- a/src/licensedcode/data/licenses/oasis-ws-security-spec.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: oasis-ws-security-spec -short_name: Oasis WS Security Specification License -name: Oasis WS Security Specification License -category: Permissive -owner: OASIS -homepage_url: http://www.oasis-open.org/org -spdx_license_key: LicenseRef-scancode-oasis-ws-security-spec -text_urls: - - http://www.oasis-open.org/org -ignorable_copyrights: - - Copyright (c) OASIS Open 2002-2004 -ignorable_holders: - - OASIS Open diff --git a/src/licensedcode/data/licenses/ocaml-lgpl-linking-exception.LICENSE b/src/licensedcode/data/licenses/ocaml-lgpl-linking-exception.LICENSE index b0e1881df24..836c07775be 100644 --- a/src/licensedcode/data/licenses/ocaml-lgpl-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/ocaml-lgpl-linking-exception.LICENSE @@ -1,3 +1,16 @@ +--- +key: ocaml-lgpl-linking-exception +short_name: OCaml LGPL Linking Exception +name: OCaml LGPL Linking Exception +category: Copyleft Limited +owner: OCaml +homepage_url: https://caml.inria.fr/ocaml/license.en.html +is_exception: yes +spdx_license_key: OCaml-LGPL-linking-exception +other_urls: + - https://caml.inria.fr/ocaml/license.en.html +--- + OCaml LGPL Linking Exception As a special exception to the GNU Lesser General Public License, you may link, diff --git a/src/licensedcode/data/licenses/ocaml-lgpl-linking-exception.yml b/src/licensedcode/data/licenses/ocaml-lgpl-linking-exception.yml deleted file mode 100644 index 552056a3317..00000000000 --- a/src/licensedcode/data/licenses/ocaml-lgpl-linking-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ocaml-lgpl-linking-exception -short_name: OCaml LGPL Linking Exception -name: OCaml LGPL Linking Exception -category: Copyleft Limited -owner: OCaml -homepage_url: https://caml.inria.fr/ocaml/license.en.html -is_exception: yes -spdx_license_key: OCaml-LGPL-linking-exception -other_urls: - - https://caml.inria.fr/ocaml/license.en.html diff --git a/src/licensedcode/data/licenses/ocb-non-military-2013.LICENSE b/src/licensedcode/data/licenses/ocb-non-military-2013.LICENSE index 81497763de5..b171a2a6c27 100644 --- a/src/licensedcode/data/licenses/ocb-non-military-2013.LICENSE +++ b/src/licensedcode/data/licenses/ocb-non-military-2013.LICENSE @@ -1,3 +1,15 @@ +--- +key: ocb-non-military-2013 +short_name: OCB for Non-MilitarySoftware Implementations2013 +name: License for Non-MilitarySoftware Implementations of OCB 2013 +category: Proprietary Free +owner: Phillip Rogaway +homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm +spdx_license_key: LicenseRef-scancode-ocb-non-military-2013 +text_urls: + - https://web.cs.ucdavis.edu/~rogaway/ocb/license2.pdf +--- + License for Non-Military Software Implementations of OCB January 10, 2013 1 Definitions @@ -24,5 +36,4 @@ If you or your affiliates institute patent litigation (including, but not limite 3 Disclaimer -YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. - +YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ocb-non-military-2013.yml b/src/licensedcode/data/licenses/ocb-non-military-2013.yml deleted file mode 100644 index 0ad7d506401..00000000000 --- a/src/licensedcode/data/licenses/ocb-non-military-2013.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ocb-non-military-2013 -short_name: OCB for Non-MilitarySoftware Implementations2013 -name: License for Non-MilitarySoftware Implementations of OCB 2013 -category: Proprietary Free -owner: Phillip Rogaway -homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm -spdx_license_key: LicenseRef-scancode-ocb-non-military-2013 -text_urls: - - https://web.cs.ucdavis.edu/~rogaway/ocb/license2.pdf diff --git a/src/licensedcode/data/licenses/ocb-open-source-2013.LICENSE b/src/licensedcode/data/licenses/ocb-open-source-2013.LICENSE index 32cac8da984..835fd0deab2 100644 --- a/src/licensedcode/data/licenses/ocb-open-source-2013.LICENSE +++ b/src/licensedcode/data/licenses/ocb-open-source-2013.LICENSE @@ -1,3 +1,15 @@ +--- +key: ocb-open-source-2013 +short_name: OCB for OpenSource 2013 +name: License for OpenSource Software Implementations of OCB 2013 +category: Proprietary Free +owner: Phillip Rogaway +homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm +spdx_license_key: LicenseRef-scancode-ocb-open-source-2013 +text_urls: + - https://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf +--- + License for Open Source Software Implementations of OCB January 9, 2013 1 Definitions @@ -12,4 +24,4 @@ January 9, 2013 royalty-free, irrevocable license to practice any invention claimed in the Licensed Patents in any Open Source Software Implementation. 2.2 Restriction. If you or your affiliates institute patent litigation (including, but not limited to, a cross-claim or counterclaim in a lawsuit) against any entity alleging that any Use authorized by this license infringes another patent, then any rights granted to you under this license automatically terminate as of the date such litigation is filed. 3 Disclaimer -YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. +YOUR USE OF THE LICENSED PATENTS IS AT YOUR OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT WILL LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELATED TO ANY USE OF THE LICENSED PATENTS, INCLUDING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ocb-open-source-2013.yml b/src/licensedcode/data/licenses/ocb-open-source-2013.yml deleted file mode 100644 index c19fdc5425f..00000000000 --- a/src/licensedcode/data/licenses/ocb-open-source-2013.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ocb-open-source-2013 -short_name: OCB for OpenSource 2013 -name: License for OpenSource Software Implementations of OCB 2013 -category: Proprietary Free -owner: Phillip Rogaway -homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm -spdx_license_key: LicenseRef-scancode-ocb-open-source-2013 -text_urls: - - https://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf diff --git a/src/licensedcode/data/licenses/ocb-patent-openssl-2013.LICENSE b/src/licensedcode/data/licenses/ocb-patent-openssl-2013.LICENSE index b16e6a96085..8a749dcab62 100644 --- a/src/licensedcode/data/licenses/ocb-patent-openssl-2013.LICENSE +++ b/src/licensedcode/data/licenses/ocb-patent-openssl-2013.LICENSE @@ -1,3 +1,15 @@ +--- +key: ocb-patent-openssl-2013 +short_name: OCB Patent License for OpenSSL 2013 +name: Patent License for OpenSSL of OCB 2013 +category: Proprietary Free +owner: Phillip Rogaway +homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm +spdx_license_key: LicenseRef-scancode-ocb-patent-openssl-2013 +text_urls: + - https://web.cs.ucdavis.edu/~rogaway/ocb/license3.pdf +--- + Patent License for OpenSSL 1. Definitions 1.1 " Licensor" means Phillip Rogaway. orOne Shields Avenue, Davis, CA 95616-8562. @@ -10,5 +22,4 @@ Patent License for OpenSSL 3. 1 LICENSEE'S USE OF THE LICENSED PATENTS IS AT LICENSEE'S OWN RISK AND UNLESS REQUIRED BY APPLICABLE LAW, LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNfNG THE LICENSED PATENTS OR ANY PRODUCT EMBODYING ANY LICENSED PATENT, EXPRESS OR IMPLIED, STATUTORY OR OTHERWISE, INCLUDfNG, WITHOUT LIM ITATION, WARRANTIES OF TITLE, MERCHANTIB ILlTY, FITNESS FOR A PARTICULAR PURPOSE, OR NON INFRfNGEMENT. fN NO EVENT W ILL LICENSOR BE LIABLE FOR ANY CLA IM, DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM OR RELAT ED TO ANY USE OF THE LICENSED PATENTS, INCLUD ING, WITHOUT LIMITATION, DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR SPECIAL DAMAGES, EVEN IF LICENSOR HAS BEEN ADV ISED OF THE POSSIBILITY OF SUCH DAMAGES PRIOR TO SUCH AN OCCURRENCE. Dated: November 13, 2013 -Phillip Rogaway - +Phillip Rogaway \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ocb-patent-openssl-2013.yml b/src/licensedcode/data/licenses/ocb-patent-openssl-2013.yml deleted file mode 100644 index 73725935610..00000000000 --- a/src/licensedcode/data/licenses/ocb-patent-openssl-2013.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ocb-patent-openssl-2013 -short_name: OCB Patent License for OpenSSL 2013 -name: Patent License for OpenSSL of OCB 2013 -category: Proprietary Free -owner: Phillip Rogaway -homepage_url: https://web.cs.ucdavis.edu/~rogaway/ocb/license.htm -spdx_license_key: LicenseRef-scancode-ocb-patent-openssl-2013 -text_urls: - - https://web.cs.ucdavis.edu/~rogaway/ocb/license3.pdf diff --git a/src/licensedcode/data/licenses/occt-exception-1.0.LICENSE b/src/licensedcode/data/licenses/occt-exception-1.0.LICENSE index 3a7232fc5ea..714ae582379 100644 --- a/src/licensedcode/data/licenses/occt-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/occt-exception-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: occt-exception-1.0 +short_name: Open CASCADE Exception to LGPL 2.1 +name: Open CASCADE Exception to LGPL 2.1 +category: Copyleft Limited +owner: Open Cascade +homepage_url: https://www.opencascade.com/content/licensing +is_exception: yes +spdx_license_key: OCCT-exception-1.0 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt + - http://www.opencascade.com/content/licensing +standard_notice: | + Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1. + The object code (i.e. not a source) form of a "work that uses the Library" + can incorporate material from a header file that is part of the Library. As + a special exception to the GNU Lesser General Public License version 2.1, + you may distribute such object code incorporating material from header + files provided with the Open CASCADE Technology libraries (including code + of CDL generic classes) under terms of your choice, provided that you give + prominent notice in supporting documentation to this code that it makes use + of or is based on facilities provided by the Open CASCADE Technology + software. +--- + Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1. The object code (i.e. not a source) form of a "work that uses the Library" can incorporate material from a header file that is part of the Library. As a special exception to the GNU Lesser General Public License version 2.1, you may distribute such object code incorporating material from header files provided with the Open CASCADE Technology libraries (including code of CDL generic classes) under terms of your choice, provided that you give prominent notice in supporting documentation to this code that it makes use of or is based on facilities provided by the Open CASCADE Technology software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/occt-exception-1.0.yml b/src/licensedcode/data/licenses/occt-exception-1.0.yml deleted file mode 100644 index 7cf6f8064a8..00000000000 --- a/src/licensedcode/data/licenses/occt-exception-1.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: occt-exception-1.0 -short_name: Open CASCADE Exception to LGPL 2.1 -name: Open CASCADE Exception to LGPL 2.1 -category: Copyleft Limited -owner: Open Cascade -homepage_url: https://www.opencascade.com/content/licensing -is_exception: yes -spdx_license_key: OCCT-exception-1.0 -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt - - http://www.opencascade.com/content/licensing -standard_notice: | - Open CASCADE Exception (version 1.0) to GNU LGPL version 2.1. - The object code (i.e. not a source) form of a "work that uses the Library" - can incorporate material from a header file that is part of the Library. As - a special exception to the GNU Lesser General Public License version 2.1, - you may distribute such object code incorporating material from header - files provided with the Open CASCADE Technology libraries (including code - of CDL generic classes) under terms of your choice, provided that you give - prominent notice in supporting documentation to this code that it makes use - of or is based on facilities provided by the Open CASCADE Technology - software. diff --git a/src/licensedcode/data/licenses/occt-pl.LICENSE b/src/licensedcode/data/licenses/occt-pl.LICENSE index 4b1e4954496..cd35e36cfd3 100644 --- a/src/licensedcode/data/licenses/occt-pl.LICENSE +++ b/src/licensedcode/data/licenses/occt-pl.LICENSE @@ -1,3 +1,19 @@ +--- +key: occt-pl +short_name: OCCT-PL +name: Open CASCADE Technology Public License +category: Copyleft Limited +owner: Open Cascade +homepage_url: http://www.opencascade.com/content/occt-public-license +spdx_license_key: OCCT-PL +ignorable_copyrights: + - copyright (c) OPEN CASCADE SAS, 2001 + - copyright (c) Open CASCADE SAS, 2001 +ignorable_holders: + - OPEN CASCADE SAS + - Open CASCADE SAS +--- + Open CASCADE Technology Public License Version 6.6, April 2013 OPEN CASCADE releases and makes publicly available the source code of the software Open CASCADE Technology to the free software development community under the terms and conditions of this license. diff --git a/src/licensedcode/data/licenses/occt-pl.yml b/src/licensedcode/data/licenses/occt-pl.yml deleted file mode 100644 index 3486c32a161..00000000000 --- a/src/licensedcode/data/licenses/occt-pl.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: occt-pl -short_name: OCCT-PL -name: Open CASCADE Technology Public License -category: Copyleft Limited -owner: Open Cascade -homepage_url: http://www.opencascade.com/content/occt-public-license -spdx_license_key: OCCT-PL -ignorable_copyrights: - - copyright (c) OPEN CASCADE SAS, 2001 - - copyright (c) Open CASCADE SAS, 2001 -ignorable_holders: - - OPEN CASCADE SAS - - Open CASCADE SAS diff --git a/src/licensedcode/data/licenses/oclc-1.0.LICENSE b/src/licensedcode/data/licenses/oclc-1.0.LICENSE index 955be4278a6..c8f952642e0 100644 --- a/src/licensedcode/data/licenses/oclc-1.0.LICENSE +++ b/src/licensedcode/data/licenses/oclc-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: oclc-1.0 +short_name: OCLC Research Public License 1.0 +name: OCLC Research Public License 1.0 +category: Copyleft Limited +owner: OCLC Research +homepage_url: http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php +spdx_license_key: LicenseRef-scancode-oclc-1.0 +text_urls: + - http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php +ignorable_copyrights: + - Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others + - Copyright (c) 2000. OCLC Research +ignorable_holders: + - OCLC OCLC Research and others + - OCLC Research +ignorable_urls: + - http://purl.oclc.org/oclc/research/ORPL + - http://www.oclc.org/oclc/research +--- + OCLC Research Public License 1.0 Terms & Conditions Of Use November, 2000 diff --git a/src/licensedcode/data/licenses/oclc-1.0.yml b/src/licensedcode/data/licenses/oclc-1.0.yml deleted file mode 100644 index c779e4b47c1..00000000000 --- a/src/licensedcode/data/licenses/oclc-1.0.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: oclc-1.0 -short_name: OCLC Research Public License 1.0 -name: OCLC Research Public License 1.0 -category: Copyleft Limited -owner: OCLC Research -homepage_url: http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php -spdx_license_key: LicenseRef-scancode-oclc-1.0 -text_urls: - - http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php -ignorable_copyrights: - - Copyright (c) 2000- (insert then current year) OCLC OCLC Research and others - - Copyright (c) 2000. OCLC Research -ignorable_holders: - - OCLC OCLC Research and others - - OCLC Research -ignorable_urls: - - http://purl.oclc.org/oclc/research/ORPL - - http://www.oclc.org/oclc/research diff --git a/src/licensedcode/data/licenses/oclc-2.0.LICENSE b/src/licensedcode/data/licenses/oclc-2.0.LICENSE index dd51133b5b6..d4ac6eaeb19 100644 --- a/src/licensedcode/data/licenses/oclc-2.0.LICENSE +++ b/src/licensedcode/data/licenses/oclc-2.0.LICENSE @@ -1,3 +1,34 @@ +--- +key: oclc-2.0 +short_name: OCLC Research Public License 2.0 +name: OCLC Research Public License 2.0 +category: Copyleft Limited +owner: OCLC Research +homepage_url: http://opensource.org/licenses/oclc2.php +notes: | + Per SPDX.org, this license is OSI certified. This license was released May + 2002 +spdx_license_key: OCLC-2.0 +osi_license_key: OCLC-2.0 +text_urls: + - http://opensource.org/licenses/oclc2.php +osi_url: http://opensource.org/licenses/oclc2.php +other_urls: + - http://www.oclc.org/research/activities/software/license/v2final.htm + - http://www.opensource.org/licenses/OCLC-2.0 + - https://opensource.org/licenses/OCLC-2.0 +ignorable_copyrights: + - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. + and other contributors + - Copyright (c) 2002. OCLC Research +ignorable_holders: + - OCLC Online Computer Library Center, Inc. and other contributors + - OCLC Research +ignorable_urls: + - http://purl.oclc.org/oclc/research/ORPL + - http://www.oclc.org/oclc/research +--- + OCLC Research Public License 2.0 Terms & Conditions Of Use May, 2002 diff --git a/src/licensedcode/data/licenses/oclc-2.0.yml b/src/licensedcode/data/licenses/oclc-2.0.yml deleted file mode 100644 index bbb75ba3adc..00000000000 --- a/src/licensedcode/data/licenses/oclc-2.0.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: oclc-2.0 -short_name: OCLC Research Public License 2.0 -name: OCLC Research Public License 2.0 -category: Copyleft Limited -owner: OCLC Research -homepage_url: http://opensource.org/licenses/oclc2.php -notes: | - Per SPDX.org, this license is OSI certified. This license was released May - 2002 -spdx_license_key: OCLC-2.0 -osi_license_key: OCLC-2.0 -text_urls: - - http://opensource.org/licenses/oclc2.php -osi_url: http://opensource.org/licenses/oclc2.php -other_urls: - - http://www.oclc.org/research/activities/software/license/v2final.htm - - http://www.opensource.org/licenses/OCLC-2.0 - - https://opensource.org/licenses/OCLC-2.0 -ignorable_copyrights: - - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. - and other contributors - - Copyright (c) 2002. OCLC Research -ignorable_holders: - - OCLC Online Computer Library Center, Inc. and other contributors - - OCLC Research -ignorable_urls: - - http://purl.oclc.org/oclc/research/ORPL - - http://www.oclc.org/oclc/research diff --git a/src/licensedcode/data/licenses/ocsl-1.0.LICENSE b/src/licensedcode/data/licenses/ocsl-1.0.LICENSE index afa60a3aabf..62f5d3d4ec7 100644 --- a/src/licensedcode/data/licenses/ocsl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ocsl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ocsl-1.0 +short_name: OCSL 1.0 +name: Oracle Community Source License v1.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://oss.oracle.com/licenses/OCSL +spdx_license_key: LicenseRef-scancode-ocsl-1.0 +ignorable_copyrights: + - Copyright 1999, 2000 Oracle Corporation +ignorable_holders: + - Oracle Corporation +--- + Version 1.0 ORACLE COMMUNITY SOURCE LICENSE @@ -45,6 +59,4 @@ You agree to comply fully with all laws and regulations of the United States and If any provision or provisions of this Agreement shall be held to be invalid, illegal or unenforceable, the validity, legality and enforceability of the remaining provisions shall not in any way be affected or impaired thereby. This Agreement will be governed by and construed under the laws of the State of California, without giving effect to such state's conflict of law principles. Any legal action or proceeding relating to this Agreement shall be instituted in a state or federal court in San Francisco or San Mateo County, California. You agree to submit to the jurisdiction of, and agree that venue is proper in, these courts in any such legal action or proceeding. -This Agreement constitutes the entire agreement of the parties concerning its subject matter and supersedes any and all prior or contemporaneous, written or oral negotiations, correspondence, understandings and agreements between the parties respecting the subject matter of this Agreement. Only Oracle may modify this Agreement. Oracle may choose to publish new versions of this Agreement from time to time. Each new version of this Agreement will be given a distinguishing version number. The Program may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, You may elect to distribute the Program under the new version. The failure of Oracle to enforce any of the provisions of this Agreement shall not be construed to be a waiver of the right of Oracle to later enforce such provisions. - - +This Agreement constitutes the entire agreement of the parties concerning its subject matter and supersedes any and all prior or contemporaneous, written or oral negotiations, correspondence, understandings and agreements between the parties respecting the subject matter of this Agreement. Only Oracle may modify this Agreement. Oracle may choose to publish new versions of this Agreement from time to time. Each new version of this Agreement will be given a distinguishing version number. The Program may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, You may elect to distribute the Program under the new version. The failure of Oracle to enforce any of the provisions of this Agreement shall not be construed to be a waiver of the right of Oracle to later enforce such provisions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ocsl-1.0.yml b/src/licensedcode/data/licenses/ocsl-1.0.yml deleted file mode 100644 index deedf23cbcb..00000000000 --- a/src/licensedcode/data/licenses/ocsl-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ocsl-1.0 -short_name: OCSL 1.0 -name: Oracle Community Source License v1.0 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: https://oss.oracle.com/licenses/OCSL -spdx_license_key: LicenseRef-scancode-ocsl-1.0 -ignorable_copyrights: - - Copyright 1999, 2000 Oracle Corporation -ignorable_holders: - - Oracle Corporation diff --git a/src/licensedcode/data/licenses/oculus-sdk-2020.LICENSE b/src/licensedcode/data/licenses/oculus-sdk-2020.LICENSE index f858916448e..f2828d3e428 100644 --- a/src/licensedcode/data/licenses/oculus-sdk-2020.LICENSE +++ b/src/licensedcode/data/licenses/oculus-sdk-2020.LICENSE @@ -1,3 +1,23 @@ +--- +key: oculus-sdk-2020 +short_name: Oculus SDK License Agreement 2020 +name: Oculus SDK License Agreement 2020 +category: Proprietary Free +owner: Facebook +homepage_url: https://developer.oculus.com/licenses/oculussdk/ +spdx_license_key: LicenseRef-scancode-oculus-sdk-2020 +other_urls: + - https://developer.oculus.com/downloads/ +ignorable_copyrights: + - (c) Facebook Technologies, LLC and its affiliates + - Copyright (c) Facebook Technologies, LLC and its affiliates +ignorable_holders: + - Facebook Technologies, LLC and its affiliates +ignorable_urls: + - https://developer.oculus.com/ + - https://developer.oculus.com/licenses/oculussdk/ +--- + Oculus SDK License Agreement Effective date: 10/13/2020 diff --git a/src/licensedcode/data/licenses/oculus-sdk-2020.yml b/src/licensedcode/data/licenses/oculus-sdk-2020.yml deleted file mode 100644 index fc095a9cad5..00000000000 --- a/src/licensedcode/data/licenses/oculus-sdk-2020.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: oculus-sdk-2020 -short_name: Oculus SDK License Agreement 2020 -name: Oculus SDK License Agreement 2020 -category: Proprietary Free -owner: Facebook -homepage_url: https://developer.oculus.com/licenses/oculussdk/ -spdx_license_key: LicenseRef-scancode-oculus-sdk-2020 -other_urls: - - https://developer.oculus.com/downloads/ -ignorable_copyrights: - - (c) Facebook Technologies, LLC and its affiliates - - Copyright (c) Facebook Technologies, LLC and its affiliates -ignorable_holders: - - Facebook Technologies, LLC and its affiliates -ignorable_urls: - - https://developer.oculus.com/ - - https://developer.oculus.com/licenses/oculussdk/ diff --git a/src/licensedcode/data/licenses/oculus-sdk-3.5.LICENSE b/src/licensedcode/data/licenses/oculus-sdk-3.5.LICENSE index 98c8ff1ca52..3042f55d3ce 100644 --- a/src/licensedcode/data/licenses/oculus-sdk-3.5.LICENSE +++ b/src/licensedcode/data/licenses/oculus-sdk-3.5.LICENSE @@ -1,3 +1,33 @@ +--- +key: oculus-sdk-3.5 +short_name: Oculus SDK License Agreement v3.5 +name: Oculus Software Development Kit License Agreement v3.5 +category: Proprietary Free +owner: Facebook +homepage_url: https://developer.oculus.com/licenses/sdk-3.5/ +spdx_license_key: LicenseRef-scancode-oculus-sdk-3.5 +standard_notice: | + Licensed under the Oculus SDK License Version 3.5 (the "License"); + you may not use the Oculus SDK except in compliance with the License, + which is provided at the time of installation or download, or which + otherwise accompanies this software in either electronic or hard copy form. + You may obtain a copy of the License at + https://developer.oculus.com/licenses/sdk-3.5/ + Unless required by applicable law or agreed to in writing, the Oculus SDK + 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. +ignorable_copyrights: + - (c) Facebook Technologies, LLC and its affiliates + - Copyright (c) Facebook Technologies, LLC and its affiliates +ignorable_holders: + - Facebook Technologies, LLC and its affiliates +ignorable_urls: + - https://developer.oculus.com/ + - https://developer.oculus.com/licenses/sdk-3.5/ +--- + Oculus Software Development Kit License Agreement Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved. diff --git a/src/licensedcode/data/licenses/oculus-sdk-3.5.yml b/src/licensedcode/data/licenses/oculus-sdk-3.5.yml deleted file mode 100644 index 9f3bd097fe3..00000000000 --- a/src/licensedcode/data/licenses/oculus-sdk-3.5.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: oculus-sdk-3.5 -short_name: Oculus SDK License Agreement v3.5 -name: Oculus Software Development Kit License Agreement v3.5 -category: Proprietary Free -owner: Facebook -homepage_url: https://developer.oculus.com/licenses/sdk-3.5/ -spdx_license_key: LicenseRef-scancode-oculus-sdk-3.5 -standard_notice: | - Licensed under the Oculus SDK License Version 3.5 (the "License"); - you may not use the Oculus SDK except in compliance with the License, - which is provided at the time of installation or download, or which - otherwise accompanies this software in either electronic or hard copy form. - You may obtain a copy of the License at - https://developer.oculus.com/licenses/sdk-3.5/ - Unless required by applicable law or agreed to in writing, the Oculus SDK - 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. -ignorable_copyrights: - - (c) Facebook Technologies, LLC and its affiliates - - Copyright (c) Facebook Technologies, LLC and its affiliates -ignorable_holders: - - Facebook Technologies, LLC and its affiliates -ignorable_urls: - - https://developer.oculus.com/ - - https://developer.oculus.com/licenses/sdk-3.5/ diff --git a/src/licensedcode/data/licenses/oculus-sdk.LICENSE b/src/licensedcode/data/licenses/oculus-sdk.LICENSE index 0dc8ff9991a..0563b531622 100644 --- a/src/licensedcode/data/licenses/oculus-sdk.LICENSE +++ b/src/licensedcode/data/licenses/oculus-sdk.LICENSE @@ -1,3 +1,22 @@ +--- +key: oculus-sdk +short_name: Oculus SDK License Agreement +name: Oculus SDK License Agreement +category: Copyleft Limited +owner: Facebook +homepage_url: https://www.oculus.com/ +spdx_license_key: LicenseRef-scancode-oculus-sdk +text_urls: + - https://developer.oculus.com/licenses/ +ignorable_copyrights: + - (c) Facebook Technologies, LLC and its affiliates + - Copyright (c) Facebook Technologies, LLC and its affiliates +ignorable_holders: + - Facebook Technologies, LLC and its affiliates +ignorable_urls: + - https://developer.oculus.com/ +--- + Effective date: 6/1/2020 Copyright © Facebook Technologies, LLC and its affiliates. All rights reserved. diff --git a/src/licensedcode/data/licenses/oculus-sdk.yml b/src/licensedcode/data/licenses/oculus-sdk.yml deleted file mode 100644 index d67252cf016..00000000000 --- a/src/licensedcode/data/licenses/oculus-sdk.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: oculus-sdk -short_name: Oculus SDK License Agreement -name: Oculus SDK License Agreement -category: Copyleft Limited -owner: Facebook -homepage_url: https://www.oculus.com/ -spdx_license_key: LicenseRef-scancode-oculus-sdk -text_urls: - - https://developer.oculus.com/licenses/ -ignorable_copyrights: - - (c) Facebook Technologies, LLC and its affiliates - - Copyright (c) Facebook Technologies, LLC and its affiliates -ignorable_holders: - - Facebook Technologies, LLC and its affiliates -ignorable_urls: - - https://developer.oculus.com/ diff --git a/src/licensedcode/data/licenses/odbl-1.0.LICENSE b/src/licensedcode/data/licenses/odbl-1.0.LICENSE index 5879840fb59..f510bbdd956 100644 --- a/src/licensedcode/data/licenses/odbl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/odbl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: odbl-1.0 +short_name: ODbL 1.0 +name: ODC Open Database License v1.0 +category: Copyleft +owner: Open Data Commons +homepage_url: http://www.opendatacommons.org/licenses/odbl/1.0/ +spdx_license_key: ODbL-1.0 +text_urls: + - https://www.opendatacommons.org/licenses/odbl/1.0/ +other_urls: + - https://opendatacommons.org/licenses/odbl/1-0/ +--- + ## ODC Open Database License (ODbL) ### Preamble diff --git a/src/licensedcode/data/licenses/odbl-1.0.yml b/src/licensedcode/data/licenses/odbl-1.0.yml deleted file mode 100644 index bc2b2e16795..00000000000 --- a/src/licensedcode/data/licenses/odbl-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: odbl-1.0 -short_name: ODbL 1.0 -name: ODC Open Database License v1.0 -category: Copyleft -owner: Open Data Commons -homepage_url: http://www.opendatacommons.org/licenses/odbl/1.0/ -spdx_license_key: ODbL-1.0 -text_urls: - - https://www.opendatacommons.org/licenses/odbl/1.0/ -other_urls: - - https://opendatacommons.org/licenses/odbl/1-0/ diff --git a/src/licensedcode/data/licenses/odc-1.0.LICENSE b/src/licensedcode/data/licenses/odc-1.0.LICENSE index 8d45e17923b..ef69d5a6840 100644 --- a/src/licensedcode/data/licenses/odc-1.0.LICENSE +++ b/src/licensedcode/data/licenses/odc-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: odc-1.0 +is_deprecated: yes +short_name: ODC-By +name: Open Data Commons Attribution License +category: Copyleft +owner: Open Data Commons +homepage_url: https://opendatacommons.org/ +notes: deprecated in favor of odc-by-1.0 +text_urls: + - http://www.opendatacommons.org/licenses/by/1.0/ +--- + ODC Attribution License (ODC-By) Preamble The Open Data Commons Attribution License is a license agreement @@ -410,4 +423,4 @@ sought to be enforced. If the standard suite of rights granted under applicable copyright law and Database Rights in the relevant jurisdiction includes additional rights not granted under this License, these additional rights are granted in this License in order to meet the -terms of this License. +terms of this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/odc-1.0.yml b/src/licensedcode/data/licenses/odc-1.0.yml deleted file mode 100644 index d266d8a70d0..00000000000 --- a/src/licensedcode/data/licenses/odc-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: odc-1.0 -is_deprecated: yes -short_name: ODC-By -name: Open Data Commons Attribution License -category: Copyleft -owner: Open Data Commons -homepage_url: https://opendatacommons.org/ -notes: deprecated in favor of odc-by-1.0 -text_urls: - - http://www.opendatacommons.org/licenses/by/1.0/ diff --git a/src/licensedcode/data/licenses/odc-by-1.0.LICENSE b/src/licensedcode/data/licenses/odc-by-1.0.LICENSE index a984223d94d..654c4d5b2d6 100644 --- a/src/licensedcode/data/licenses/odc-by-1.0.LICENSE +++ b/src/licensedcode/data/licenses/odc-by-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: odc-by-1.0 +short_name: ODC-By-1.0 +name: Open Data Commons Attribution License v1.0 +category: Permissive +owner: Open Data Commons +homepage_url: https://opendatacommons.org/licenses/by/ +spdx_license_key: ODC-By-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-odc-1.0 +other_urls: + - https://opendatacommons.org/licenses/by/1.0/ +standard_notice: | + This DATABASE is made available under the Open Data Commons + Attribution License: http://opendatacommons.org/licenses/by/1.0 +--- + Open Data Commons Attribution License (ODC-By) v1.0 ODC Attribution License (ODC-By) Preamble diff --git a/src/licensedcode/data/licenses/odc-by-1.0.yml b/src/licensedcode/data/licenses/odc-by-1.0.yml deleted file mode 100644 index c16cceaad69..00000000000 --- a/src/licensedcode/data/licenses/odc-by-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: odc-by-1.0 -short_name: ODC-By-1.0 -name: Open Data Commons Attribution License v1.0 -category: Permissive -owner: Open Data Commons -homepage_url: https://opendatacommons.org/licenses/by/ -spdx_license_key: ODC-By-1.0 -other_spdx_license_keys: - - LicenseRef-scancode-odc-1.0 -other_urls: - - https://opendatacommons.org/licenses/by/1.0/ -standard_notice: | - This DATABASE is made available under the Open Data Commons - Attribution License: http://opendatacommons.org/licenses/by/1.0 diff --git a/src/licensedcode/data/licenses/odl.LICENSE b/src/licensedcode/data/licenses/odl.LICENSE index 78b30cfce06..d19bc7a7a6f 100644 --- a/src/licensedcode/data/licenses/odl.LICENSE +++ b/src/licensedcode/data/licenses/odl.LICENSE @@ -1,3 +1,20 @@ +--- +key: odl +short_name: Open Directory License +name: Open Directory License +category: Permissive +owner: Open Directory +homepage_url: http://www.dmoz.org/license.html +spdx_license_key: LicenseRef-scancode-odl +text_urls: + - http://www.dmoz.org/license.html +other_urls: + - http://dmoz.org/become_an_editor +ignorable_urls: + - http://dmoz.org/ + - http://dmoz.org/become_an_editor +--- + Open Directory License The Open Directory is a compilation of many different editors' contributions. Netscape Communications Corporation (`Netscape') owns the copyright to the compilation of the different contributions, and makes the Open Directory available to you to use under the following license agreement terms and conditions (`Open Directory License'). For purposes of this Open Directory License, `Open Directory' means only the Open Directory Project currently hosted at http://dmoz.org (or at another site as may be designated by Netscape in the future), and does not include any other versions of directories, even if referred to as an `Open Directory,' that may be hosted by Netscape on other web pages (e.g., Netscape Netcenter). diff --git a/src/licensedcode/data/licenses/odl.yml b/src/licensedcode/data/licenses/odl.yml deleted file mode 100644 index 861d8153aa8..00000000000 --- a/src/licensedcode/data/licenses/odl.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: odl -short_name: Open Directory License -name: Open Directory License -category: Permissive -owner: Open Directory -homepage_url: http://www.dmoz.org/license.html -spdx_license_key: LicenseRef-scancode-odl -text_urls: - - http://www.dmoz.org/license.html -other_urls: - - http://dmoz.org/become_an_editor -ignorable_urls: - - http://dmoz.org/ - - http://dmoz.org/become_an_editor diff --git a/src/licensedcode/data/licenses/odmg.LICENSE b/src/licensedcode/data/licenses/odmg.LICENSE index eeb7ec5c2fe..9b2d52d45b4 100644 --- a/src/licensedcode/data/licenses/odmg.LICENSE +++ b/src/licensedcode/data/licenses/odmg.LICENSE @@ -1,3 +1,17 @@ +--- +key: odmg +short_name: ODMG License +name: ODMG License +category: Permissive +owner: ODBMS.org +homepage_url: http://www.odbms.org/odmg-standard/wray-johnson/ +spdx_license_key: LicenseRef-scancode-odmg +ignorable_authors: + - E. Wray Johnson +ignorable_urls: + - http://www.odmg.org/ +--- + License Agreement Redistribution of this software is permitted provided that the following diff --git a/src/licensedcode/data/licenses/odmg.yml b/src/licensedcode/data/licenses/odmg.yml deleted file mode 100644 index 963d45fa251..00000000000 --- a/src/licensedcode/data/licenses/odmg.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: odmg -short_name: ODMG License -name: ODMG License -category: Permissive -owner: ODBMS.org -homepage_url: http://www.odbms.org/odmg-standard/wray-johnson/ -spdx_license_key: LicenseRef-scancode-odmg -ignorable_authors: - - E. Wray Johnson -ignorable_urls: - - http://www.odmg.org/ diff --git a/src/licensedcode/data/licenses/ofl-1.0-no-rfn.LICENSE b/src/licensedcode/data/licenses/ofl-1.0-no-rfn.LICENSE index a6b548cb8b8..c001c208e57 100644 --- a/src/licensedcode/data/licenses/ofl-1.0-no-rfn.LICENSE +++ b/src/licensedcode/data/licenses/ofl-1.0-no-rfn.LICENSE @@ -1,3 +1,23 @@ +--- +key: ofl-1.0-no-rfn +short_name: OFL 1.0 no Reserved Font Name +name: SIL Open Font License 1.0 with no Reserved Font Name +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +notes: | + Per SPDX.org, this license has been superseded. This license was released + in November 2005. +spdx_license_key: OFL-1.0-no-RFN +text_urls: + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt +other_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +minimum_coverage: 99 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.0. with no Reserved Font Name for this Font Software. diff --git a/src/licensedcode/data/licenses/ofl-1.0-no-rfn.yml b/src/licensedcode/data/licenses/ofl-1.0-no-rfn.yml deleted file mode 100644 index 2fe7ca451a5..00000000000 --- a/src/licensedcode/data/licenses/ofl-1.0-no-rfn.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: ofl-1.0-no-rfn -short_name: OFL 1.0 no Reserved Font Name -name: SIL Open Font License 1.0 with no Reserved Font Name -category: Permissive -owner: SIL International -homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web -notes: | - Per SPDX.org, this license has been superseded. This license was released - in November 2005. -spdx_license_key: OFL-1.0-no-RFN -text_urls: - - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt -other_urls: - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web -minimum_coverage: 99 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/licenses/ofl-1.0-rfn.LICENSE b/src/licensedcode/data/licenses/ofl-1.0-rfn.LICENSE index 594b1af2326..6ead428889e 100644 --- a/src/licensedcode/data/licenses/ofl-1.0-rfn.LICENSE +++ b/src/licensedcode/data/licenses/ofl-1.0-rfn.LICENSE @@ -1,3 +1,23 @@ +--- +key: ofl-1.0-rfn +short_name: OFL 1.0 Reserved Font Name +name: SIL Open Font License 1.0 with Reserved Font Name +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +notes: | + Per SPDX.org, this license has been superseded. This license was released + in November 2005. +spdx_license_key: OFL-1.0-RFN +text_urls: + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt +other_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +minimum_coverage: 99 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + is a Reserved Font Name for this Font Software. is a Reserved Font Name for this Font Software. diff --git a/src/licensedcode/data/licenses/ofl-1.0-rfn.yml b/src/licensedcode/data/licenses/ofl-1.0-rfn.yml deleted file mode 100644 index d21e3e2fa1f..00000000000 --- a/src/licensedcode/data/licenses/ofl-1.0-rfn.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: ofl-1.0-rfn -short_name: OFL 1.0 Reserved Font Name -name: SIL Open Font License 1.0 with Reserved Font Name -category: Permissive -owner: SIL International -homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web -notes: | - Per SPDX.org, this license has been superseded. This license was released - in November 2005. -spdx_license_key: OFL-1.0-RFN -text_urls: - - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt -other_urls: - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web -minimum_coverage: 99 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/licenses/ofl-1.0.LICENSE b/src/licensedcode/data/licenses/ofl-1.0.LICENSE index bbe8cc23619..133eb0b8f18 100644 --- a/src/licensedcode/data/licenses/ofl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ofl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: ofl-1.0 +short_name: OFL 1.0 +name: SIL Open Font License 1.0 +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +notes: | + Per SPDX.org, this license has been superseded. This license was released + in November 2005. +spdx_license_key: OFL-1.0 +text_urls: + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt +other_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +--- + ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 ----------------------------------------------------------- diff --git a/src/licensedcode/data/licenses/ofl-1.0.yml b/src/licensedcode/data/licenses/ofl-1.0.yml deleted file mode 100644 index 7eb5f188725..00000000000 --- a/src/licensedcode/data/licenses/ofl-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: ofl-1.0 -short_name: OFL 1.0 -name: SIL Open Font License 1.0 -category: Permissive -owner: SIL International -homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web -notes: | - Per SPDX.org, this license has been superseded. This license was released - in November 2005. -spdx_license_key: OFL-1.0 -text_urls: - - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL10_plaintext&filename=OFL10.txt -other_urls: - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web diff --git a/src/licensedcode/data/licenses/ofl-1.1-no-rfn.LICENSE b/src/licensedcode/data/licenses/ofl-1.1-no-rfn.LICENSE index 4d961f81c1d..3aa1dbf2076 100644 --- a/src/licensedcode/data/licenses/ofl-1.1-no-rfn.LICENSE +++ b/src/licensedcode/data/licenses/ofl-1.1-no-rfn.LICENSE @@ -1,3 +1,29 @@ +--- +key: ofl-1.1-no-rfn +short_name: OFL 1.1 no Reserved Font Name +name: SIL Open Font License 1.1 with no Reserved Font Name +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web +notes: | + Per SPDX.org, this license was released 26 February 2007. This license is + OSI certified +spdx_license_key: OFL-1.1-no-RFN +osi_license_key: OFL-1.1 +text_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt +faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL +other_urls: + - http://scripts.sil.org/OFL + - http://www.opensource.org/licenses/OFL-1.1 + - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt + - https://opensource.org/licenses/OFL-1.1 +minimum_coverage: 99 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. with no Reserved Font Name for this Font Software. This license is copied below, and is also available with a FAQ at: diff --git a/src/licensedcode/data/licenses/ofl-1.1-no-rfn.yml b/src/licensedcode/data/licenses/ofl-1.1-no-rfn.yml deleted file mode 100644 index b8e66259df6..00000000000 --- a/src/licensedcode/data/licenses/ofl-1.1-no-rfn.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: ofl-1.1-no-rfn -short_name: OFL 1.1 no Reserved Font Name -name: SIL Open Font License 1.1 with no Reserved Font Name -category: Permissive -owner: SIL International -homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web -notes: | - Per SPDX.org, this license was released 26 February 2007. This license is - OSI certified -spdx_license_key: OFL-1.1-no-RFN -osi_license_key: OFL-1.1 -text_urls: - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web - - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt -faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL -other_urls: - - http://scripts.sil.org/OFL - - http://www.opensource.org/licenses/OFL-1.1 - - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt - - https://opensource.org/licenses/OFL-1.1 -minimum_coverage: 99 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/licenses/ofl-1.1-rfn.LICENSE b/src/licensedcode/data/licenses/ofl-1.1-rfn.LICENSE index d56b3ad17c0..26ba80a75c3 100644 --- a/src/licensedcode/data/licenses/ofl-1.1-rfn.LICENSE +++ b/src/licensedcode/data/licenses/ofl-1.1-rfn.LICENSE @@ -1,3 +1,29 @@ +--- +key: ofl-1.1-rfn +short_name: SIL Open Font License 1.1 with Reserved Font Name +name: OFL 1.1 Reserved Font Name +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web +notes: | + Per SPDX.org, this license was released 26 February 2007. This license is + OSI certified +spdx_license_key: OFL-1.1-RFN +osi_license_key: OFL-1.1 +text_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt +faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL +other_urls: + - http://scripts.sil.org/OFL + - http://www.opensource.org/licenses/OFL-1.1 + - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt + - https://opensource.org/licenses/OFL-1.1 +minimum_coverage: 99 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + with Reserved Font Name . with Reserved Font Name . diff --git a/src/licensedcode/data/licenses/ofl-1.1-rfn.yml b/src/licensedcode/data/licenses/ofl-1.1-rfn.yml deleted file mode 100644 index ce4ab05aaaa..00000000000 --- a/src/licensedcode/data/licenses/ofl-1.1-rfn.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: ofl-1.1-rfn -short_name: SIL Open Font License 1.1 with Reserved Font Name -name: OFL 1.1 Reserved Font Name -category: Permissive -owner: SIL International -homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web -notes: | - Per SPDX.org, this license was released 26 February 2007. This license is - OSI certified -spdx_license_key: OFL-1.1-RFN -osi_license_key: OFL-1.1 -text_urls: - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web - - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt -faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL -other_urls: - - http://scripts.sil.org/OFL - - http://www.opensource.org/licenses/OFL-1.1 - - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt - - https://opensource.org/licenses/OFL-1.1 -minimum_coverage: 99 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/licenses/ofl-1.1.LICENSE b/src/licensedcode/data/licenses/ofl-1.1.LICENSE index 04df8a50dc2..ab423cca62a 100644 --- a/src/licensedcode/data/licenses/ofl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/ofl-1.1.LICENSE @@ -1,3 +1,26 @@ +--- +key: ofl-1.1 +short_name: OFL 1.1 +name: SIL Open Font License 1.1 +category: Permissive +owner: SIL International +homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web +notes: | + Per SPDX.org, this license was released 26 February 2007. This license is + OSI certified +spdx_license_key: OFL-1.1 +osi_license_key: OFL-1.1 +text_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web + - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt +faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL +other_urls: + - http://scripts.sil.org/OFL + - http://www.opensource.org/licenses/OFL-1.1 + - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt + - https://opensource.org/licenses/OFL-1.1 +--- + ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- diff --git a/src/licensedcode/data/licenses/ofl-1.1.yml b/src/licensedcode/data/licenses/ofl-1.1.yml deleted file mode 100644 index 090375c5b0c..00000000000 --- a/src/licensedcode/data/licenses/ofl-1.1.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: ofl-1.1 -short_name: OFL 1.1 -name: SIL Open Font License 1.1 -category: Permissive -owner: SIL International -homepage_url: http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web -notes: | - Per SPDX.org, this license was released 26 February 2007. This license is - OSI certified -spdx_license_key: OFL-1.1 -osi_license_key: OFL-1.1 -text_urls: - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web - - https://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt -faq_url: http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL -other_urls: - - http://scripts.sil.org/OFL - - http://www.opensource.org/licenses/OFL-1.1 - - https://github.com/adobe-fonts/source-code-pro/blob/master/LICENSE.txt - - https://opensource.org/licenses/OFL-1.1 diff --git a/src/licensedcode/data/licenses/ogc-1.0.LICENSE b/src/licensedcode/data/licenses/ogc-1.0.LICENSE index 265f050c55c..8e828d954ac 100644 --- a/src/licensedcode/data/licenses/ogc-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ogc-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: ogc-1.0 +short_name: OGC 1.0 +name: OGC Software License, Version 1.0 +category: Permissive +owner: Open Geospatial Consortium +homepage_url: https://www.ogc.org/ogc/software/1.0 +spdx_license_key: OGC-1.0 +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.ogc.org/ogc/legal +--- + OGC Software License, Version 1.0 This OGC work (including software, documents, or other related items) is being diff --git a/src/licensedcode/data/licenses/ogc-1.0.yml b/src/licensedcode/data/licenses/ogc-1.0.yml deleted file mode 100644 index 3320ff8942c..00000000000 --- a/src/licensedcode/data/licenses/ogc-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: ogc-1.0 -short_name: OGC 1.0 -name: OGC Software License, Version 1.0 -category: Permissive -owner: Open Geospatial Consortium -homepage_url: https://www.ogc.org/ogc/software/1.0 -spdx_license_key: OGC-1.0 -ignorable_copyrights: - - Copyright (c) Open Geospatial Consortium, Inc. -ignorable_holders: - - Open Geospatial Consortium, Inc. -ignorable_urls: - - http://www.ogc.org/ogc/legal diff --git a/src/licensedcode/data/licenses/ogc-2006.LICENSE b/src/licensedcode/data/licenses/ogc-2006.LICENSE index 5d99c942fe5..5ccccf45fd3 100644 --- a/src/licensedcode/data/licenses/ogc-2006.LICENSE +++ b/src/licensedcode/data/licenses/ogc-2006.LICENSE @@ -1,3 +1,22 @@ +--- +key: ogc-2006 +is_deprecated: yes +notes: duplicate of ogc-1.0 +short_name: OGC Software Notice 2006 +name: OGC Software Notice 2006 +category: Permissive +owner: Open Geospatial Consortium +homepage_url: https://www.ogc.org/ogc/software +other_urls: + - http://www.opengeospatial.org/ogc/legal +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.opengeospatial.org/ogc/legal +--- + This OGC work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, @@ -35,4 +54,4 @@ CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all -times remain with copyright holders. +times remain with copyright holders. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ogc-2006.yml b/src/licensedcode/data/licenses/ogc-2006.yml deleted file mode 100644 index 5e680e852d3..00000000000 --- a/src/licensedcode/data/licenses/ogc-2006.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: ogc-2006 -is_deprecated: yes -notes: duplicate of ogc-1.0 -short_name: OGC Software Notice 2006 -name: OGC Software Notice 2006 -category: Permissive -owner: Open Geospatial Consortium -homepage_url: https://www.ogc.org/ogc/software -other_urls: - - http://www.opengeospatial.org/ogc/legal -ignorable_copyrights: - - Copyright (c) Open Geospatial Consortium, Inc. -ignorable_holders: - - Open Geospatial Consortium, Inc. -ignorable_urls: - - http://www.opengeospatial.org/ogc/legal - diff --git a/src/licensedcode/data/licenses/ogc-document-2020.LICENSE b/src/licensedcode/data/licenses/ogc-document-2020.LICENSE index 4db3ca66788..a72c321afb3 100644 --- a/src/licensedcode/data/licenses/ogc-document-2020.LICENSE +++ b/src/licensedcode/data/licenses/ogc-document-2020.LICENSE @@ -1,3 +1,22 @@ +--- +key: ogc-document-2020 +short_name: OGC Document Notice 2020 +name: OGC Document Notice 2020 +category: Proprietary Free +owner: Open Geospatial Consortium +homepage_url: https://www.ogc.org/ogc/Document +spdx_license_key: LicenseRef-scancode-ogc-document-2020 +faq_url: https://www.ogc.org/ogc/legalfaq +other_urls: + - http://www.opengeospatial.org/ogc/legal +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.opengeospatial.org/ogc/document +--- + Document Notice Public documents on the OGC site are provided by the copyright holders under the diff --git a/src/licensedcode/data/licenses/ogc-document-2020.yml b/src/licensedcode/data/licenses/ogc-document-2020.yml deleted file mode 100644 index 44022976d26..00000000000 --- a/src/licensedcode/data/licenses/ogc-document-2020.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: ogc-document-2020 -short_name: OGC Document Notice 2020 -name: OGC Document Notice 2020 -category: Proprietary Free -owner: Open Geospatial Consortium -homepage_url: https://www.ogc.org/ogc/Document -spdx_license_key: LicenseRef-scancode-ogc-document-2020 -faq_url: https://www.ogc.org/ogc/legalfaq -other_urls: - - http://www.opengeospatial.org/ogc/legal -ignorable_copyrights: - - Copyright (c) Open Geospatial Consortium, Inc. -ignorable_holders: - - Open Geospatial Consortium, Inc. -ignorable_urls: - - http://www.opengeospatial.org/ogc/document diff --git a/src/licensedcode/data/licenses/ogc.LICENSE b/src/licensedcode/data/licenses/ogc.LICENSE index d00722501a0..49203821723 100644 --- a/src/licensedcode/data/licenses/ogc.LICENSE +++ b/src/licensedcode/data/licenses/ogc.LICENSE @@ -1,3 +1,15 @@ +--- +key: ogc +short_name: OGC Software Notice +name: OGC Software Notice +category: Permissive +owner: Open Geospatial Consortium +homepage_url: https://www.ogc.org/ogc/software +spdx_license_key: LicenseRef-scancode-ogc +other_urls: + - http://www.opengeospatial.org/ogc/legal +--- + This OGC work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, diff --git a/src/licensedcode/data/licenses/ogc.yml b/src/licensedcode/data/licenses/ogc.yml deleted file mode 100644 index 1ce8e5bba88..00000000000 --- a/src/licensedcode/data/licenses/ogc.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ogc -short_name: OGC Software Notice -name: OGC Software Notice -category: Permissive -owner: Open Geospatial Consortium -homepage_url: https://www.ogc.org/ogc/software -spdx_license_key: LicenseRef-scancode-ogc -other_urls: - - http://www.opengeospatial.org/ogc/legal diff --git a/src/licensedcode/data/licenses/ogdl-taiwan-1.0.LICENSE b/src/licensedcode/data/licenses/ogdl-taiwan-1.0.LICENSE index 2850dbb6f9a..195f3901ad5 100644 --- a/src/licensedcode/data/licenses/ogdl-taiwan-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ogdl-taiwan-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: ogdl-taiwan-1.0 +short_name: Taiwan Open Government Data License, version 1.0 +name: Taiwan Open Government Data License, version 1.0 +category: Permissive +owner: Taiwan National Development Council +homepage_url: https://data.gov.tw/en/license +spdx_license_key: OGDL-Taiwan-1.0 +other_urls: + - https://data.gov.tw/license +ignorable_urls: + - https://data.gov.tw/license +--- + Open Government Data License, version 1.0 The Open Government Data License (the License) is intended to facilitate government data sharing and application among the public in outreaching and promotion method, and to advance government service efficacy and government data value and quality in collaboration with the creative private sector. diff --git a/src/licensedcode/data/licenses/ogdl-taiwan-1.0.yml b/src/licensedcode/data/licenses/ogdl-taiwan-1.0.yml deleted file mode 100644 index 6d88a04f601..00000000000 --- a/src/licensedcode/data/licenses/ogdl-taiwan-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ogdl-taiwan-1.0 -short_name: Taiwan Open Government Data License, version 1.0 -name: Taiwan Open Government Data License, version 1.0 -category: Permissive -owner: Taiwan National Development Council -homepage_url: https://data.gov.tw/en/license -spdx_license_key: OGDL-Taiwan-1.0 -other_urls: - - https://data.gov.tw/license -ignorable_urls: - - https://data.gov.tw/license diff --git a/src/licensedcode/data/licenses/ogl-1.0a.LICENSE b/src/licensedcode/data/licenses/ogl-1.0a.LICENSE index a9407f5dc77..882ef2000ab 100644 --- a/src/licensedcode/data/licenses/ogl-1.0a.LICENSE +++ b/src/licensedcode/data/licenses/ogl-1.0a.LICENSE @@ -1,3 +1,21 @@ +--- +key: ogl-1.0a +short_name: OGL 1.0a +name: Open Game License v1.0a +category: Permissive +owner: Anthony Ronda +homepage_url: https://raw.githubusercontent.com/anthonyronda/LicenseRef-OGL-1.0a/main/LICENSE +spdx_license_key: LicenseRef-scancode-ogl-1.0a +other_urls: + - https://github.com/anthonyronda/awesome-ogl +ignorable_copyrights: + - Copyright 2000 Wizards of the Coast, Inc 'Wizards + - Copyright 2000, Wizards of the Coast, Inc. +ignorable_holders: + - Wizards of the Coast, Inc 'Wizards + - Wizards of the Coast, Inc. +--- + OPEN GAME LICENSE Version 1.0a The following text is the property of Wizards of the Coast, Inc. and is diff --git a/src/licensedcode/data/licenses/ogl-1.0a.yml b/src/licensedcode/data/licenses/ogl-1.0a.yml deleted file mode 100644 index 94be8fea823..00000000000 --- a/src/licensedcode/data/licenses/ogl-1.0a.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: ogl-1.0a -short_name: OGL 1.0a -name: Open Game License v1.0a -category: Permissive -owner: Anthony Ronda -homepage_url: https://raw.githubusercontent.com/anthonyronda/LicenseRef-OGL-1.0a/main/LICENSE -spdx_license_key: LicenseRef-scancode-ogl-1.0a -other_urls: - - https://github.com/anthonyronda/awesome-ogl -ignorable_copyrights: - - Copyright 2000 Wizards of the Coast, Inc 'Wizards - - Copyright 2000, Wizards of the Coast, Inc. -ignorable_holders: - - Wizards of the Coast, Inc 'Wizards - - Wizards of the Coast, Inc. diff --git a/src/licensedcode/data/licenses/ogl-canada-2.0-fr.LICENSE b/src/licensedcode/data/licenses/ogl-canada-2.0-fr.LICENSE index c18961c039e..ec0147a4c03 100644 --- a/src/licensedcode/data/licenses/ogl-canada-2.0-fr.LICENSE +++ b/src/licensedcode/data/licenses/ogl-canada-2.0-fr.LICENSE @@ -1,3 +1,14 @@ +--- +key: ogl-canada-2.0-fr +language: fr +short_name: OGL Canada 2.0 Francais +name: Licence du gouvernement ouvert Canada 2.0 +category: Permissive +owner: Canada Government +homepage_url: https://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada +spdx_license_key: LicenseRef-scancode-ogl-canada-2.0-fr +--- + Licence du gouvernement ouvert – Canada diff --git a/src/licensedcode/data/licenses/ogl-canada-2.0-fr.yml b/src/licensedcode/data/licenses/ogl-canada-2.0-fr.yml deleted file mode 100644 index 3d9cdce5182..00000000000 --- a/src/licensedcode/data/licenses/ogl-canada-2.0-fr.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ogl-canada-2.0-fr -language: fr -short_name: OGL Canada 2.0 Francais -name: Licence du gouvernement ouvert Canada 2.0 -category: Permissive -owner: Canada Government -homepage_url: https://ouvert.canada.ca/fr/licence-du-gouvernement-ouvert-canada -spdx_license_key: LicenseRef-scancode-ogl-canada-2.0-fr diff --git a/src/licensedcode/data/licenses/ogl-uk-1.0.LICENSE b/src/licensedcode/data/licenses/ogl-uk-1.0.LICENSE index 24139e53dd7..e66a289741c 100644 --- a/src/licensedcode/data/licenses/ogl-uk-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ogl-uk-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ogl-uk-1.0 +short_name: OGL-UK-1.0 +name: U.K. Open Government License for Public Sector Information v1.0 +category: Permissive +owner: U.K. National Archives +homepage_url: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/ +spdx_license_key: OGL-UK-1.0 +other_urls: + - http://www.nationalarchives.gov.uk/doc/open-government-licence/ +--- + You are encouraged to use and re-use the Information that is available under this licence, the Open Government Licence, freely and flexibly, with only a few conditions. @@ -101,4 +113,4 @@ to use Information licensed under this version should you wish to do so. These terms have been aligned to be interoperable with any Creative Commons Attribution Licence, which covers copyright, and Open Data Commons Attribution License, which covers database rights and applicable copyrights. -Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. +Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ogl-uk-1.0.yml b/src/licensedcode/data/licenses/ogl-uk-1.0.yml deleted file mode 100644 index d6e9aa9ddc8..00000000000 --- a/src/licensedcode/data/licenses/ogl-uk-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ogl-uk-1.0 -short_name: OGL-UK-1.0 -name: U.K. Open Government License for Public Sector Information v1.0 -category: Permissive -owner: U.K. National Archives -homepage_url: http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/ -spdx_license_key: OGL-UK-1.0 -other_urls: - - http://www.nationalarchives.gov.uk/doc/open-government-licence/ diff --git a/src/licensedcode/data/licenses/ogl-uk-2.0.LICENSE b/src/licensedcode/data/licenses/ogl-uk-2.0.LICENSE index f5e9144d81f..ba984491faf 100644 --- a/src/licensedcode/data/licenses/ogl-uk-2.0.LICENSE +++ b/src/licensedcode/data/licenses/ogl-uk-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ogl-uk-2.0 +short_name: OGL-UK-2.0 +name: U.K. Open Government License for Public Sector Information v2.0 +category: Permissive +owner: U.K. National Archives +homepage_url: https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/ +spdx_license_key: OGL-UK-2.0 +other_urls: + - http://www.nationalarchives.gov.uk/doc/open-government-licence/ + - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/ +--- + You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions. Using Information under this licence diff --git a/src/licensedcode/data/licenses/ogl-uk-2.0.yml b/src/licensedcode/data/licenses/ogl-uk-2.0.yml deleted file mode 100644 index 5ec3f7ad29b..00000000000 --- a/src/licensedcode/data/licenses/ogl-uk-2.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ogl-uk-2.0 -short_name: OGL-UK-2.0 -name: U.K. Open Government License for Public Sector Information v2.0 -category: Permissive -owner: U.K. National Archives -homepage_url: https://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/ -spdx_license_key: OGL-UK-2.0 -other_urls: - - http://www.nationalarchives.gov.uk/doc/open-government-licence/ - - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/ diff --git a/src/licensedcode/data/licenses/ogl-uk-3.0.LICENSE b/src/licensedcode/data/licenses/ogl-uk-3.0.LICENSE index da34636e037..729e5ef8865 100644 --- a/src/licensedcode/data/licenses/ogl-uk-3.0.LICENSE +++ b/src/licensedcode/data/licenses/ogl-uk-3.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ogl-uk-3.0 +short_name: OGL-UK-3.0 +name: U.K. Open Government License for Public Sector Information v3.0 +category: Permissive +owner: U.K. National Archives +homepage_url: https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ +spdx_license_key: OGL-UK-3.0 +other_urls: + - http://www.nationalarchives.gov.uk/doc/open-government-licence/ + - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ +--- + You are encouraged to use and re-use the Information that is available under this licence freely and flexibly, with only a few conditions. Using Information under this licence diff --git a/src/licensedcode/data/licenses/ogl-uk-3.0.yml b/src/licensedcode/data/licenses/ogl-uk-3.0.yml deleted file mode 100644 index 72d59ef7486..00000000000 --- a/src/licensedcode/data/licenses/ogl-uk-3.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ogl-uk-3.0 -short_name: OGL-UK-3.0 -name: U.K. Open Government License for Public Sector Information v3.0 -category: Permissive -owner: U.K. National Archives -homepage_url: https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ -spdx_license_key: OGL-UK-3.0 -other_urls: - - http://www.nationalarchives.gov.uk/doc/open-government-licence/ - - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/ diff --git a/src/licensedcode/data/licenses/ogl-wpd-3.0.LICENSE b/src/licensedcode/data/licenses/ogl-wpd-3.0.LICENSE index a5719f3113a..6e90c8ef827 100644 --- a/src/licensedcode/data/licenses/ogl-wpd-3.0.LICENSE +++ b/src/licensedcode/data/licenses/ogl-wpd-3.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ogl-wpd-3.0 +short_name: OGL-WPD-3.0 +name: Western Power Distribution Open Data Licence v3.0 +category: Permissive +owner: Western Power Distribution +homepage_url: https://www.westernpower.co.uk/open-data-licence +notes: derived from the ogl-uk-3.0 license +spdx_license_key: LicenseRef-scancode-ogl-wpd-3.0 +ignorable_emails: + - dsodigitalisation@westernpower.co.uk +--- + Open Data Licence Below is WPD's Open Data Licence (latest version December 2020). These licence terms and conditions (the “Licence”) apply to the WPD's datasets as specified within the ‘Connected Data’ data access service. These terms are based on the Open Government Licence v3.0. @@ -84,4 +97,4 @@ The National Archives may, from time to time, issue new versions of the Open Gov The Open Government Licence 3.0 is compatible with the Creative Commons Attribution License 4.0 and the Open Data Commons Attribution License, both of which license copyright and database rights. This means that when the Information is adapted and licensed under either of those licences, you automatically satisfy the conditions of the OGL when you comply with the other licence. The OGLv3.0 is Open Definition compliant. -Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. +Further context, best practice and guidance can be found in the UK Government Licensing Framework section on The National Archives website. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ogl-wpd-3.0.yml b/src/licensedcode/data/licenses/ogl-wpd-3.0.yml deleted file mode 100644 index e7254bb51fa..00000000000 --- a/src/licensedcode/data/licenses/ogl-wpd-3.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ogl-wpd-3.0 -short_name: OGL-WPD-3.0 -name: Western Power Distribution Open Data Licence v3.0 -category: Permissive -owner: Western Power Distribution -homepage_url: https://www.westernpower.co.uk/open-data-licence -notes: derived from the ogl-uk-3.0 license -spdx_license_key: LicenseRef-scancode-ogl-wpd-3.0 -ignorable_emails: - - dsodigitalisation@westernpower.co.uk diff --git a/src/licensedcode/data/licenses/ohdl-1.0.LICENSE b/src/licensedcode/data/licenses/ohdl-1.0.LICENSE index b55ea6bfb25..bd4ad8a10b4 100644 --- a/src/licensedcode/data/licenses/ohdl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ohdl-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ohdl-1.0 +short_name: OHDL-1.0 +name: Open Hardware Description License Version 1.0 +category: Copyleft Limited +owner: FOSSi Foundation +homepage_url: http://juliusbaxter.net/ohdl/ohdl.txt +spdx_license_key: LicenseRef-scancode-ohdl-1.0 +faq_url: http://juliusbaxter.net/ohdl/ +ignorable_urls: + - http://juliusbaxter.net/ohdl/ohdl.txt +--- + Open Hardware Description License Version 1.0 (Based on the MPL 2.0 RC2) ======================================================== diff --git a/src/licensedcode/data/licenses/ohdl-1.0.yml b/src/licensedcode/data/licenses/ohdl-1.0.yml deleted file mode 100644 index c23dcfe5d67..00000000000 --- a/src/licensedcode/data/licenses/ohdl-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ohdl-1.0 -short_name: OHDL-1.0 -name: Open Hardware Description License Version 1.0 -category: Copyleft Limited -owner: FOSSi Foundation -homepage_url: http://juliusbaxter.net/ohdl/ohdl.txt -spdx_license_key: LicenseRef-scancode-ohdl-1.0 -faq_url: http://juliusbaxter.net/ohdl/ -ignorable_urls: - - http://juliusbaxter.net/ohdl/ohdl.txt diff --git a/src/licensedcode/data/licenses/okl.LICENSE b/src/licensedcode/data/licenses/okl.LICENSE index 8a8d4e9c7c2..3d45e8de17d 100644 --- a/src/licensedcode/data/licenses/okl.LICENSE +++ b/src/licensedcode/data/licenses/okl.LICENSE @@ -1,3 +1,14 @@ +--- +key: okl +short_name: OKL license +name: OKL license +category: Copyleft +owner: General Dynamics +homepage_url: https://gdmissionsystems.com/cyber/products/trusted-computing-cross-domain/microvisor-products/ +spdx_license_key: LicenseRef-scancode-okl +minimum_coverage: 80 +--- + 1. Redistribution and use of (Software) in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/okl.yml b/src/licensedcode/data/licenses/okl.yml deleted file mode 100644 index 7f33058cc73..00000000000 --- a/src/licensedcode/data/licenses/okl.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: okl -short_name: OKL license -name: OKL license -category: Copyleft -owner: General Dynamics -homepage_url: https://gdmissionsystems.com/cyber/products/trusted-computing-cross-domain/microvisor-products/ -spdx_license_key: LicenseRef-scancode-okl -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/olf-ccla-1.0.LICENSE b/src/licensedcode/data/licenses/olf-ccla-1.0.LICENSE index 5bc3a1afa16..7706078d1b9 100644 --- a/src/licensedcode/data/licenses/olf-ccla-1.0.LICENSE +++ b/src/licensedcode/data/licenses/olf-ccla-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: olf-ccla-1.0 +short_name: OLF-CCLA-1.0 +name: Open Logistics Foundation Corporate Contributor CLA 1.0 +category: Patent License +owner: Open Logistics Foundation +homepage_url: https://www.openlogisticsfoundation.org/licenses +spdx_license_key: LicenseRef-scancode-olf-ccla-1.0 +ignorable_authors: + - the Open Logistics Foundation +ignorable_urls: + - https://www.openlogisticsfoundation.org/licenses +ignorable_emails: + - info@openlogisticsfoundation.org +--- + Open Logistics Foundation Corporate Contributor License Agreement (“CLA”) Version 1.0, March 2022 diff --git a/src/licensedcode/data/licenses/olf-ccla-1.0.yml b/src/licensedcode/data/licenses/olf-ccla-1.0.yml deleted file mode 100644 index 848163b8df2..00000000000 --- a/src/licensedcode/data/licenses/olf-ccla-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: olf-ccla-1.0 -short_name: OLF-CCLA-1.0 -name: Open Logistics Foundation Corporate Contributor CLA 1.0 -category: Patent License -owner: Open Logistics Foundation -homepage_url: https://www.openlogisticsfoundation.org/licenses -spdx_license_key: LicenseRef-scancode-olf-ccla-1.0 -ignorable_authors: - - the Open Logistics Foundation -ignorable_urls: - - https://www.openlogisticsfoundation.org/licenses -ignorable_emails: - - info@openlogisticsfoundation.org diff --git a/src/licensedcode/data/licenses/oll-1.0.LICENSE b/src/licensedcode/data/licenses/oll-1.0.LICENSE index 189f7ad2a58..6fdd3bd4991 100644 --- a/src/licensedcode/data/licenses/oll-1.0.LICENSE +++ b/src/licensedcode/data/licenses/oll-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: oll-1.0 +short_name: OLL-1.0 +name: Open Logistics License Version 1.0 +category: Permissive +owner: Open Logistics Foundation +homepage_url: https://www.openlogisticsfoundation.org/licenses/ +spdx_license_key: LicenseRef-scancode-oll-1.0 +ignorable_urls: + - https://www.openlogisticsfoundation.org/licenses/ +--- + Open Logistics License Version 1.0, March 2022 https://www.openlogisticsfoundation.org/licenses/ diff --git a/src/licensedcode/data/licenses/oll-1.0.yml b/src/licensedcode/data/licenses/oll-1.0.yml deleted file mode 100644 index 479ca530c61..00000000000 --- a/src/licensedcode/data/licenses/oll-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: oll-1.0 -short_name: OLL-1.0 -name: Open Logistics License Version 1.0 -category: Permissive -owner: Open Logistics Foundation -homepage_url: https://www.openlogisticsfoundation.org/licenses/ -spdx_license_key: LicenseRef-scancode-oll-1.0 -ignorable_urls: - - https://www.openlogisticsfoundation.org/licenses/ diff --git a/src/licensedcode/data/licenses/open-diameter.LICENSE b/src/licensedcode/data/licenses/open-diameter.LICENSE index 470e9087342..be3ee944169 100644 --- a/src/licensedcode/data/licenses/open-diameter.LICENSE +++ b/src/licensedcode/data/licenses/open-diameter.LICENSE @@ -1,3 +1,18 @@ +--- +key: open-diameter +short_name: Open Diameter License +name: Open Diameter License +category: Copyleft +owner: Open Diameter Project +spdx_license_key: LicenseRef-scancode-open-diameter +ignorable_copyrights: + - Copyright (c) 2002-2007 Open Diameter Project +ignorable_holders: + - Open Diameter Project +ignorable_emails: + - diameter-developers@lists.sourceforge.net +--- + Open Diameter License Open Diameter: Open-source software for the Diameter and Diameter related protocols diff --git a/src/licensedcode/data/licenses/open-diameter.yml b/src/licensedcode/data/licenses/open-diameter.yml deleted file mode 100644 index 46f8c8f05de..00000000000 --- a/src/licensedcode/data/licenses/open-diameter.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: open-diameter -short_name: Open Diameter License -name: Open Diameter License -category: Copyleft -owner: Open Diameter Project -spdx_license_key: LicenseRef-scancode-open-diameter -ignorable_copyrights: - - Copyright (c) 2002-2007 Open Diameter Project -ignorable_holders: - - Open Diameter Project -ignorable_emails: - - diameter-developers@lists.sourceforge.net diff --git a/src/licensedcode/data/licenses/open-group.LICENSE b/src/licensedcode/data/licenses/open-group.LICENSE index 4313e902017..49bdfb94c5f 100644 --- a/src/licensedcode/data/licenses/open-group.LICENSE +++ b/src/licensedcode/data/licenses/open-group.LICENSE @@ -1,3 +1,15 @@ +--- +key: open-group +short_name: Open Group Public License +name: Open Group Public License +category: Copyleft Limited +owner: Open Group +homepage_url: http://www.opengroup.org/openmotif/license/ +spdx_license_key: LicenseRef-scancode-open-group +text_urls: + - http://www.opengroup.org/openmotif/license/ +--- + THE OPEN GROUP PUBLIC LICENSE MOTIF GRAPHICAL USER INTERFACE SOFTWARE diff --git a/src/licensedcode/data/licenses/open-group.yml b/src/licensedcode/data/licenses/open-group.yml deleted file mode 100644 index bd73a32c2ce..00000000000 --- a/src/licensedcode/data/licenses/open-group.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: open-group -short_name: Open Group Public License -name: Open Group Public License -category: Copyleft Limited -owner: Open Group -homepage_url: http://www.opengroup.org/openmotif/license/ -spdx_license_key: LicenseRef-scancode-open-group -text_urls: - - http://www.opengroup.org/openmotif/license/ diff --git a/src/licensedcode/data/licenses/open-public.LICENSE b/src/licensedcode/data/licenses/open-public.LICENSE index 1f6aaaf0f08..fd8c1b6dd91 100644 --- a/src/licensedcode/data/licenses/open-public.LICENSE +++ b/src/licensedcode/data/licenses/open-public.LICENSE @@ -1,3 +1,17 @@ +--- +key: open-public +short_name: Open Public License 1.0 +name: Open Public License v1.0 +category: Copyleft Limited +owner: Lutris Technologies, Inc. +homepage_url: http://ksoap.objectweb.org/software/license/opl.html +spdx_license_key: OPL-1.0 +text_urls: + - http://old.koalateam.com/jackaroo/OPL_1_0.TXT +other_urls: + - https://fedoraproject.org/wiki/Licensing/Open_Public_License +--- + OPEN PUBLIC LICENSE Version 1.0 diff --git a/src/licensedcode/data/licenses/open-public.yml b/src/licensedcode/data/licenses/open-public.yml deleted file mode 100644 index 3e9da20b088..00000000000 --- a/src/licensedcode/data/licenses/open-public.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: open-public -short_name: Open Public License 1.0 -name: Open Public License v1.0 -category: Copyleft Limited -owner: Lutris Technologies, Inc. -homepage_url: http://ksoap.objectweb.org/software/license/opl.html -spdx_license_key: OPL-1.0 -text_urls: - - http://old.koalateam.com/jackaroo/OPL_1_0.TXT -other_urls: - - https://fedoraproject.org/wiki/Licensing/Open_Public_License diff --git a/src/licensedcode/data/licenses/openbd-exception-3.0.LICENSE b/src/licensedcode/data/licenses/openbd-exception-3.0.LICENSE index 5bc0415dc3c..c70264fcbf4 100644 --- a/src/licensedcode/data/licenses/openbd-exception-3.0.LICENSE +++ b/src/licensedcode/data/licenses/openbd-exception-3.0.LICENSE @@ -1,3 +1,146 @@ +--- +key: openbd-exception-3.0 +short_name: OpenBD exception to GPL 3.0 +name: OpenBD exception to GPL 3.0 +category: Copyleft Limited +owner: OpenBD +is_exception: yes +spdx_license_key: LicenseRef-scancode-openbd-exception-3.0 +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + Open BlueDragon (OpenBD) is distributed under the GNU General Public + License (v3). A copy of this can be found in the COPYING.txt file or + at http://www.gnu.org/licenses/ + Additional Permission Granted by tagServlet Ltd: + tagServlet Ltd grants the user the exception to distribute the entire + Open BlueDragon runtime libraries without the web application (.cfml, + .html, + .js, .css, etc) that Open BlueDragon powers, from itself being licensed + under the GNU General Public License (v3), as long the entire runtime + remains intact and includes all license information. + This exception does not overrule the embedded JAR files and where + applicable + the entire Open BlueDragon runtime only, must be available for inspection + if + ever asked, complete with all these copyright and license information. + This applies only to distribution for the purpose of powering end-user CFML + applications. This exception does not include embedding/linking any part of + the + runtime of Open BlueDragon within any other application other than a + Servlet container + whose sole purpose is to render CFML applications. Linking or usage by any + Java application (even through CFML), is not permitted. + Any modification, enhancements, linking, to the Open BlueDragon runtime + still falls + under the GNU General Public License (v3). + ______ Building Prerequisites _______ + You will require the following to be able to build OpenBD from source: + x Java Developers Kit Virtual Machine 1.6 + x Apache Ant (http://ant.apache.org/) + Optional, OpenBD source drop includes an Eclipse project to enable + building and debugging under the Eclipse IDE (http://www.eclipse.org/). + ______ Deployment Prerequisites _______ + You will require the following to be able to run OpenBD: + x Java Virtual Machine 1.6 + x J2EE compliant server (ie Jetty, Apache Tomcat, Redhat JBoss) + ______ External JAR Dependency _______ + OpenBD utilises a number of external open source libraries to provide some + of the functionality contained within. This section details all the + external JAR's associated with building and/or deployment of OpenBD. + Permission under GNU GPL version 3 section 7 + If you modify this Program, or any covered work, by linking or combining + it with any of the JAR files listed below (or a modified version of that + library), containing parts covered by the terms of "Java JAX-RPC", the + licensors of this Program grant you additional permission to convey the + resulting work. + + activation.jar + mail.jar + https://glassfish.dev.java.net/javaee5/mail/ + + commons-dbcp-1.1.jar + commons-pool-1.1.jar + commons-codec-1.4.jar + commons-collections-3.2.1.jar + commons-discovery.jar + commons-fileupload-1.2.1.jar + commons-httpclient-3.1bd.jar + commons-io-1.4.jar + commons-logging.1.1.1.jar + commons-vfs.jar + http://commons.apache.org/ + + xmlrpc-1.2-b1.jar + http://ws.apache.org/xmlrpc/ + + jakarta-oro-2.0.8.jar + http://jakarta.apache.org/oro/ + + servlet23.jar + http://tomcat.apache.org/ + + javolution.jar + http://javolution.org/ + + jaxrpc.jar + https://jax-rpc.dev.java.net/ + + jcommon-1.0.0.jar + jfreechart-1.0.1.jar + http://www.jfree.org/ + + lucene-analyzers-3.x.jar + lucene-core-3.x.jar + lucene-highlighter-3.x.jar + lucene-snowball-3.x.jar + http://lucene.apache.org/ + + PDFBox-0.7.2.jar + http://www.pdfbox.org/ + + postgresql.jar + http://www.postgresql.org/ + + saaj.jar + https://saaj.dev.java.net/ + + webservices.jar + http://ws.apache.org/axis/ + + wsdl4j.jar + http://sourceforge.net/projects/wsdl4j + + h2.jar + http://www.h2database.com/html/main.html + + vfs-s3 + http://code.google.com/p/vfs-s3/ + + JetS3 + https://jets3t.dev.java.net/ + + JSON Library [org.json] + http://www.json.org/java/index.html + + Oracle 10g JDBC Driver + http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_1 + 0201.html + http://www.oracle.com/technology/software/popup-license/distribution- + license.html + + Microsoft SQL Server JDBC Driver + http://www.microsoft.com/downloads/details.aspx?FamilyId=C47053EB-3B64-4794 + -950D-81E1EC91C1BA + + jTDS SQL Server Driver + http://jtds.sourceforge.net/ + http://jtds.sourceforge.net/license.html + + jericho-html-3.1 + http://jerichohtml.sourceforge.net/doc/index.html + + flowplayer 3.0.5 Flash Video Player (GPL) + http://www.flowplayer.org/ + + Yahoo YUI Compressor BSD/RhinoGPL + yuicompressor-2.4.2 + + Jackson JSON library + http://jackson.codehaus.org/ + ______ Special Build JARs _______ + OpenBD has had to make certain modifications to existing open source + libraries. These + are available in the ./extra/ folder with everything required to rebuild + those library. + + XALAN + xalan-openbd-build.zip + + Jackson-1.8.3-openbd.jar + Support for YES|NO boolean + ______ Official OpenBD Wiki _______ + http://wiki.openbluedragon.org/ + ______ Official OpenBD Docs _______ + http://openbd.org/manual/ + ______ Support Mailing List _______ + You can subscribe to the public mailing list at: + http://groups.google.com/group/openbd +--- + Additional Permission Granted by tagServlet Ltd: tagServlet Ltd grants the user the exception to distribute the entire Open BlueDragon runtime libraries without the web application (.cfml, .html, diff --git a/src/licensedcode/data/licenses/openbd-exception-3.0.yml b/src/licensedcode/data/licenses/openbd-exception-3.0.yml deleted file mode 100644 index 1d80ab95d80..00000000000 --- a/src/licensedcode/data/licenses/openbd-exception-3.0.yml +++ /dev/null @@ -1,140 +0,0 @@ -key: openbd-exception-3.0 -short_name: OpenBD exception to GPL 3.0 -name: OpenBD exception to GPL 3.0 -category: Copyleft Limited -owner: OpenBD -is_exception: yes -spdx_license_key: LicenseRef-scancode-openbd-exception-3.0 -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt -standard_notice: | - Open BlueDragon (OpenBD) is distributed under the GNU General Public - License (v3). A copy of this can be found in the COPYING.txt file or - at http://www.gnu.org/licenses/ - Additional Permission Granted by tagServlet Ltd: - tagServlet Ltd grants the user the exception to distribute the entire - Open BlueDragon runtime libraries without the web application (.cfml, - .html, - .js, .css, etc) that Open BlueDragon powers, from itself being licensed - under the GNU General Public License (v3), as long the entire runtime - remains intact and includes all license information. - This exception does not overrule the embedded JAR files and where - applicable - the entire Open BlueDragon runtime only, must be available for inspection - if - ever asked, complete with all these copyright and license information. - This applies only to distribution for the purpose of powering end-user CFML - applications. This exception does not include embedding/linking any part of - the - runtime of Open BlueDragon within any other application other than a - Servlet container - whose sole purpose is to render CFML applications. Linking or usage by any - Java application (even through CFML), is not permitted. - Any modification, enhancements, linking, to the Open BlueDragon runtime - still falls - under the GNU General Public License (v3). - ______ Building Prerequisites _______ - You will require the following to be able to build OpenBD from source: - x Java Developers Kit Virtual Machine 1.6 - x Apache Ant (http://ant.apache.org/) - Optional, OpenBD source drop includes an Eclipse project to enable - building and debugging under the Eclipse IDE (http://www.eclipse.org/). - ______ Deployment Prerequisites _______ - You will require the following to be able to run OpenBD: - x Java Virtual Machine 1.6 - x J2EE compliant server (ie Jetty, Apache Tomcat, Redhat JBoss) - ______ External JAR Dependency _______ - OpenBD utilises a number of external open source libraries to provide some - of the functionality contained within. This section details all the - external JAR's associated with building and/or deployment of OpenBD. - Permission under GNU GPL version 3 section 7 - If you modify this Program, or any covered work, by linking or combining - it with any of the JAR files listed below (or a modified version of that - library), containing parts covered by the terms of "Java JAX-RPC", the - licensors of this Program grant you additional permission to convey the - resulting work. - + activation.jar - mail.jar - https://glassfish.dev.java.net/javaee5/mail/ - + commons-dbcp-1.1.jar - commons-pool-1.1.jar - commons-codec-1.4.jar - commons-collections-3.2.1.jar - commons-discovery.jar - commons-fileupload-1.2.1.jar - commons-httpclient-3.1bd.jar - commons-io-1.4.jar - commons-logging.1.1.1.jar - commons-vfs.jar - http://commons.apache.org/ - + xmlrpc-1.2-b1.jar - http://ws.apache.org/xmlrpc/ - + jakarta-oro-2.0.8.jar - http://jakarta.apache.org/oro/ - + servlet23.jar - http://tomcat.apache.org/ - + javolution.jar - http://javolution.org/ - + jaxrpc.jar - https://jax-rpc.dev.java.net/ - + jcommon-1.0.0.jar - jfreechart-1.0.1.jar - http://www.jfree.org/ - + lucene-analyzers-3.x.jar - lucene-core-3.x.jar - lucene-highlighter-3.x.jar - lucene-snowball-3.x.jar - http://lucene.apache.org/ - + PDFBox-0.7.2.jar - http://www.pdfbox.org/ - + postgresql.jar - http://www.postgresql.org/ - + saaj.jar - https://saaj.dev.java.net/ - + webservices.jar - http://ws.apache.org/axis/ - + wsdl4j.jar - http://sourceforge.net/projects/wsdl4j - + h2.jar - http://www.h2database.com/html/main.html - + vfs-s3 - http://code.google.com/p/vfs-s3/ - + JetS3 - https://jets3t.dev.java.net/ - + JSON Library [org.json] - http://www.json.org/java/index.html - + Oracle 10g JDBC Driver - http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc_1 - 0201.html - http://www.oracle.com/technology/software/popup-license/distribution- - license.html - + Microsoft SQL Server JDBC Driver - http://www.microsoft.com/downloads/details.aspx?FamilyId=C47053EB-3B64-4794 - -950D-81E1EC91C1BA - + jTDS SQL Server Driver - http://jtds.sourceforge.net/ - http://jtds.sourceforge.net/license.html - + jericho-html-3.1 - http://jerichohtml.sourceforge.net/doc/index.html - + flowplayer 3.0.5 Flash Video Player (GPL) - http://www.flowplayer.org/ - + Yahoo YUI Compressor BSD/RhinoGPL - yuicompressor-2.4.2 - + Jackson JSON library - http://jackson.codehaus.org/ - ______ Special Build JARs _______ - OpenBD has had to make certain modifications to existing open source - libraries. These - are available in the ./extra/ folder with everything required to rebuild - those library. - + XALAN - xalan-openbd-build.zip - + Jackson-1.8.3-openbd.jar - Support for YES|NO boolean - ______ Official OpenBD Wiki _______ - http://wiki.openbluedragon.org/ - ______ Official OpenBD Docs _______ - http://openbd.org/manual/ - ______ Support Mailing List _______ - You can subscribe to the public mailing list at: - http://groups.google.com/group/openbd diff --git a/src/licensedcode/data/licenses/opengroup.LICENSE b/src/licensedcode/data/licenses/opengroup.LICENSE index ea987ebb5e3..d498d0a4943 100644 --- a/src/licensedcode/data/licenses/opengroup.LICENSE +++ b/src/licensedcode/data/licenses/opengroup.LICENSE @@ -1,3 +1,22 @@ +--- +key: opengroup +short_name: Open Group Test Suite License +name: Open Group Test Suite License +category: Copyleft Limited +owner: Open Group +homepage_url: http://opensource.org/licenses/opengroup.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: OGTSL +osi_license_key: OGTSL +text_urls: + - http://opensource.org/licenses/opengroup.php +osi_url: http://opensource.org/licenses/opengroup.php +other_urls: + - http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt + - http://www.opensource.org/licenses/OGTSL + - https://opensource.org/licenses/OGTSL +--- + The Open Group Test Suite License Preamble diff --git a/src/licensedcode/data/licenses/opengroup.yml b/src/licensedcode/data/licenses/opengroup.yml deleted file mode 100644 index 426153dfc23..00000000000 --- a/src/licensedcode/data/licenses/opengroup.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: opengroup -short_name: Open Group Test Suite License -name: Open Group Test Suite License -category: Copyleft Limited -owner: Open Group -homepage_url: http://opensource.org/licenses/opengroup.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: OGTSL -osi_license_key: OGTSL -text_urls: - - http://opensource.org/licenses/opengroup.php -osi_url: http://opensource.org/licenses/opengroup.php -other_urls: - - http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt - - http://www.opensource.org/licenses/OGTSL - - https://opensource.org/licenses/OGTSL diff --git a/src/licensedcode/data/licenses/openi-pl-1.0.LICENSE b/src/licensedcode/data/licenses/openi-pl-1.0.LICENSE index c8321316919..ebcc1a2dd9a 100644 --- a/src/licensedcode/data/licenses/openi-pl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/openi-pl-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: openi-pl-1.0 +short_name: OpenI Public License 1.0 +name: OpenI Public License 1.0 +category: Copyleft Limited +owner: OpenI +homepage_url: http://openi.sourceforge.net/docs/LICENSE.txt +spdx_license_key: LicenseRef-scancode-openi-pl-1.0 +ignorable_copyrights: + - Copyright (c) 2005 Loyalty Matrix, Inc. +ignorable_holders: + - Loyalty Matrix, Inc. +ignorable_authors: + - Loyalty Matrix +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.openi.org/docs/opl-1.0.txt +--- + The OpenI Public License Version 1.0 ("OPL") consists of the Mozilla Public License Version 1.1, modified to be specific to OpenI, with the Additional Terms in Exhibit B. The original Mozilla Public License 1.1 can be found at: diff --git a/src/licensedcode/data/licenses/openi-pl-1.0.yml b/src/licensedcode/data/licenses/openi-pl-1.0.yml deleted file mode 100644 index d982eb3f61a..00000000000 --- a/src/licensedcode/data/licenses/openi-pl-1.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: openi-pl-1.0 -short_name: OpenI Public License 1.0 -name: OpenI Public License 1.0 -category: Copyleft Limited -owner: OpenI -homepage_url: http://openi.sourceforge.net/docs/LICENSE.txt -spdx_license_key: LicenseRef-scancode-openi-pl-1.0 -ignorable_copyrights: - - Copyright (c) 2005 Loyalty Matrix, Inc. -ignorable_holders: - - Loyalty Matrix, Inc. -ignorable_authors: - - Loyalty Matrix -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.openi.org/docs/opl-1.0.txt diff --git a/src/licensedcode/data/licenses/openjdk-assembly-exception-1.0.LICENSE b/src/licensedcode/data/licenses/openjdk-assembly-exception-1.0.LICENSE index 520cd28376e..485480cce56 100644 --- a/src/licensedcode/data/licenses/openjdk-assembly-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/openjdk-assembly-exception-1.0.LICENSE @@ -1,3 +1,42 @@ +--- +key: openjdk-assembly-exception-1.0 +short_name: OpenJDK Assembly exception to GPL 2.0 +name: OpenJDK Assembly exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://openjdk.java.net/legal/assembly-exception.html +is_exception: yes +spdx_license_key: OpenJDK-assembly-exception-1.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + OpenJDK Assembly Exception + The OpenJDK source code made available by Oracle America, Inc. (Oracle) at + openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU + General Public License version 2 + only ("GPL2"), with the following clarification and special exception. + Linking this OpenJDK Code statically or dynamically with other code + is making a combined work based on this library. Thus, the terms + and conditions of GPL2 cover the whole combination. + As a special exception, Oracle gives you permission to link this + OpenJDK Code with certain code licensed by Oracle as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, + regardless of the license terms of the Designated Exception Modules, + and to copy and distribute the resulting executable under GPL2, + provided that the Designated Exception Modules continue to be + governed by the licenses under which they were offered by Oracle. + As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code + to build an executable that includes those portions of necessary code that + Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 + with the Classpath exception). If you modify or add to the OpenJDK code, + that new GPL2 code may still be combined with Designated Exception Modules + if the new code is made subject to this exception by its copyright holder. +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception The OpenJDK source code made available by Oracle America, Inc. (Oracle) at diff --git a/src/licensedcode/data/licenses/openjdk-assembly-exception-1.0.yml b/src/licensedcode/data/licenses/openjdk-assembly-exception-1.0.yml deleted file mode 100644 index 450af331e47..00000000000 --- a/src/licensedcode/data/licenses/openjdk-assembly-exception-1.0.yml +++ /dev/null @@ -1,36 +0,0 @@ -key: openjdk-assembly-exception-1.0 -short_name: OpenJDK Assembly exception to GPL 2.0 -name: OpenJDK Assembly exception to GPL 2.0 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: http://openjdk.java.net/legal/assembly-exception.html -is_exception: yes -spdx_license_key: OpenJDK-assembly-exception-1.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - OpenJDK Assembly Exception - The OpenJDK source code made available by Oracle America, Inc. (Oracle) at - openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU - General Public License version 2 - only ("GPL2"), with the following clarification and special exception. - Linking this OpenJDK Code statically or dynamically with other code - is making a combined work based on this library. Thus, the terms - and conditions of GPL2 cover the whole combination. - As a special exception, Oracle gives you permission to link this - OpenJDK Code with certain code licensed by Oracle as indicated at - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - ("Designated Exception Modules") to produce an executable, - regardless of the license terms of the Designated Exception Modules, - and to copy and distribute the resulting executable under GPL2, - provided that the Designated Exception Modules continue to be - governed by the licenses under which they were offered by Oracle. - As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code - to build an executable that includes those portions of necessary code that - Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 - with the Classpath exception). If you modify or add to the OpenJDK code, - that new GPL2 code may still be combined with Designated Exception Modules - if the new code is made subject to this exception by its copyright holder. -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/licenses/openjdk-classpath-exception-2.0.LICENSE b/src/licensedcode/data/licenses/openjdk-classpath-exception-2.0.LICENSE index b0c6166cebe..e5cd0be907a 100644 --- a/src/licensedcode/data/licenses/openjdk-classpath-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/openjdk-classpath-exception-2.0.LICENSE @@ -1,3 +1,96 @@ +--- +key: openjdk-classpath-exception-2.0 +short_name: OpenJDK Classpath exception to GPL 2.0 +name: OpenJDK Classpath exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle (Sun) +is_exception: yes +spdx_license_key: LicenseRef-scancode-openjdk-classpath-exception2.0 +other_spdx_license_keys: + - LicenseRef-scancode-openjdk-classpath-exception-2.0 +faq_url: http://openjdk.java.net/legal/exception-modules-2007-05-08.html +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + "CLASSPATH" EXCEPTION TO THE GPL VERSION 2 + Certain source files distributed by Sun Microsystems, Inc. are subject to + the following clarification and special exception to the GPL Version 2, but + only where Sun has expressly included in the particular source file's + header the words + "Sun designates this particular file as subject to the "Classpath" + exception as provided by Sun in the License file that accompanied this + code." + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License Version 2 cover the whole combination. + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. + OPENJDK ASSEMBLY EXCEPTION + The OpenJDK source code made available openjdk.dev.java.net ("OpenJDK + Code") is distributed under the terms of the GNU General Public License + version 2 only ("GPL2"), with the + following clarification and special exception. + Linking this OpenJDK Code statically or dynamically with other code is + making a combined work based on this library. Thus, the terms and + conditions of GPL2 cover the whole combination. + As a special exception, Sun gives you permission to link this OpenJDK Code + with certain code licensed by Sun as indicated at + http://openjdk.java.net/legal/exception-modules-2007-05-08.html + ("Designated Exception Modules") to produce an executable, regardless of + the license terms of the Designated Exception Modules, and to copy and + distribute the resulting executable under GPL2, provided that the + Designated Exception Modules continue to be governed by the licenses under + which they were offered by Sun. + As such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to + build an executable that includes those portions of necessary code that Sun + could not provide under GPL2 (or that Sun has provided under GPL2 with the + Classpath exception). If you modify or add to the OpenJDK code, that new + GPL2 code may still be combined with Designated Exception Modules if the + new code is made subject to this exception by its copyright holder. + from http://openjdk.java.net/legal/exception-modules-2007-05-08.html + OpenJDK Designated Exception Modules + 8 May 2007 + For purposes of those files in the OpenJDK distribution that are subject to + the Assembly Exception, the following shall be deemed Designated Exception + Modules: + 1. Those files in the OpenJDK distribution available at openjdk.java.net, + openjdk.dev.java.net, and download.java.net to which Sun has applied the + Classpath Exception, + 2. Any of your derivative works of #1 above, to the extent you license them + under the GPLv2 with the Classpath Exception as defined in the OpenJDK + distribution available at openjdk.java.net, openjdk.dev.java.net, or + download.java.net, + 3. Any files in the OpenJDK distribution that are made available at + openjdk.java.net, openjdk.dev.java.net, or download.java.net under a binary + code license, and + 4. Any files in the OpenJDK distribution that are made available at + openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open + source license other than GPL, and your derivatives thereof that are in + compliance with the applicable open source license. +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + OPENJDK ASSEMBLY EXCEPTION The OpenJDK source code made available openjdk.dev.java.net ("OpenJDK Code") is distributed under diff --git a/src/licensedcode/data/licenses/openjdk-classpath-exception-2.0.yml b/src/licensedcode/data/licenses/openjdk-classpath-exception-2.0.yml deleted file mode 100644 index 034116c5b21..00000000000 --- a/src/licensedcode/data/licenses/openjdk-classpath-exception-2.0.yml +++ /dev/null @@ -1,90 +0,0 @@ -key: openjdk-classpath-exception-2.0 -short_name: OpenJDK Classpath exception to GPL 2.0 -name: OpenJDK Classpath exception to GPL 2.0 -category: Copyleft Limited -owner: Oracle (Sun) -is_exception: yes -spdx_license_key: LicenseRef-scancode-openjdk-classpath-exception2.0 -other_spdx_license_keys: - - LicenseRef-scancode-openjdk-classpath-exception-2.0 -faq_url: http://openjdk.java.net/legal/exception-modules-2007-05-08.html -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - "CLASSPATH" EXCEPTION TO THE GPL VERSION 2 - Certain source files distributed by Sun Microsystems, Inc. are subject to - the following clarification and special exception to the GPL Version 2, but - only where Sun has expressly included in the particular source file's - header the words - "Sun designates this particular file as subject to the "Classpath" - exception as provided by Sun in the License file that accompanied this - code." - Linking this library statically or dynamically with other modules is making - a combined work based on this library. Thus, the terms and conditions of - the GNU General Public License Version 2 cover the whole combination. - As a special exception, the copyright holders of this library give you - permission to link this library with independent modules to produce an - executable, regardless of the license terms of these independent modules, - and to copy and distribute the resulting executable under terms of your - choice, provided that you also meet, for each linked independent module, - the terms and conditions of the license of that module. An independent - module is a module which is not derived from or based on this library. If - you modify this library, you may extend this exception to your version of - the library, but you are not obligated to do so. If you do not wish to do - so, delete this exception statement from your version. - OPENJDK ASSEMBLY EXCEPTION - The OpenJDK source code made available openjdk.dev.java.net ("OpenJDK - Code") is distributed under the terms of the GNU General Public License - version 2 only ("GPL2"), with the - following clarification and special exception. - Linking this OpenJDK Code statically or dynamically with other code is - making a combined work based on this library. Thus, the terms and - conditions of GPL2 cover the whole combination. - As a special exception, Sun gives you permission to link this OpenJDK Code - with certain code licensed by Sun as indicated at - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - ("Designated Exception Modules") to produce an executable, regardless of - the license terms of the Designated Exception Modules, and to copy and - distribute the resulting executable under GPL2, provided that the - Designated Exception Modules continue to be governed by the licenses under - which they were offered by Sun. - As such, it allows licensees and sublicensees of Sun's GPL2 OpenJDK Code to - build an executable that includes those portions of necessary code that Sun - could not provide under GPL2 (or that Sun has provided under GPL2 with the - Classpath exception). If you modify or add to the OpenJDK code, that new - GPL2 code may still be combined with Designated Exception Modules if the - new code is made subject to this exception by its copyright holder. - from http://openjdk.java.net/legal/exception-modules-2007-05-08.html - OpenJDK Designated Exception Modules - 8 May 2007 - For purposes of those files in the OpenJDK distribution that are subject to - the Assembly Exception, the following shall be deemed Designated Exception - Modules: - 1. Those files in the OpenJDK distribution available at openjdk.java.net, - openjdk.dev.java.net, and download.java.net to which Sun has applied the - Classpath Exception, - 2. Any of your derivative works of #1 above, to the extent you license them - under the GPLv2 with the Classpath Exception as defined in the OpenJDK - distribution available at openjdk.java.net, openjdk.dev.java.net, or - download.java.net, - 3. Any files in the OpenJDK distribution that are made available at - openjdk.java.net, openjdk.dev.java.net, or download.java.net under a binary - code license, and - 4. Any files in the OpenJDK distribution that are made available at - openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open - source license other than GPL, and your derivatives thereof that are in - compliance with the applicable open source license. -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/licenses/openjdk-exception.LICENSE b/src/licensedcode/data/licenses/openjdk-exception.LICENSE index b68c193555a..639e4fd300a 100644 --- a/src/licensedcode/data/licenses/openjdk-exception.LICENSE +++ b/src/licensedcode/data/licenses/openjdk-exception.LICENSE @@ -1,3 +1,26 @@ +--- +key: openjdk-exception +short_name: OpenJDK Exception +name: OpenJDK Classpath and Assembly Exception +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://openjdk.java.net/legal/ +notes: | + this exception is the combination of the classpath exception with extra + terms and found only in the OpenJDK +is_exception: yes +spdx_license_key: LicenseRef-scancode-openjdk-exception +other_spdx_license_keys: + - Assembly-exception +text_urls: + - http://openjdk.java.net/legal/gplv2+ce.html + - http://openjdk.java.net/legal/assembly-exception.html + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + "CLASSPATH" EXCEPTION TO THE GPL Certain source files distributed by Oracle America and/or its affiliates are @@ -75,4 +98,4 @@ binary code license, and Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open source license other than GPL, and your derivatives thereof that -are in compliance with the applicable open source license. +are in compliance with the applicable open source license. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/openjdk-exception.yml b/src/licensedcode/data/licenses/openjdk-exception.yml deleted file mode 100644 index 400f1c38708..00000000000 --- a/src/licensedcode/data/licenses/openjdk-exception.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: openjdk-exception -short_name: OpenJDK Exception -name: OpenJDK Classpath and Assembly Exception -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: http://openjdk.java.net/legal/ -notes: | - this exception is the combination of the classpath exception with extra - terms and found only in the OpenJDK -is_exception: yes -spdx_license_key: LicenseRef-scancode-openjdk-exception -other_spdx_license_keys: - - Assembly-exception -text_urls: - - http://openjdk.java.net/legal/gplv2+ce.html - - http://openjdk.java.net/legal/assembly-exception.html - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/licenses/openldap-1.1.LICENSE b/src/licensedcode/data/licenses/openldap-1.1.LICENSE index ade7d3f0fb0..7e613b481cd 100644 --- a/src/licensedcode/data/licenses/openldap-1.1.LICENSE +++ b/src/licensedcode/data/licenses/openldap-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-1.1 +short_name: OpenLDAP Public License 1.1 +name: OpenLDAP Public License 1.1 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f +notes: Per SPDX.org, this license was released 25 August 1998. +spdx_license_key: OLDAP-1.1 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.1, 25 August 1998 diff --git a/src/licensedcode/data/licenses/openldap-1.1.yml b/src/licensedcode/data/licenses/openldap-1.1.yml deleted file mode 100644 index 57068a0c0d7..00000000000 --- a/src/licensedcode/data/licenses/openldap-1.1.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: openldap-1.1 -short_name: OpenLDAP Public License 1.1 -name: OpenLDAP Public License 1.1 -category: Copyleft Limited -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f -notes: Per SPDX.org, this license was released 25 August 1998. -spdx_license_key: OLDAP-1.1 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=806557a5ad59804ef3a44d5abfbe91d706b0791f -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1998, The OpenLDAP Foundation -ignorable_holders: - - The OpenLDAP Foundation diff --git a/src/licensedcode/data/licenses/openldap-1.2.LICENSE b/src/licensedcode/data/licenses/openldap-1.2.LICENSE index 52f6444dd0a..e40d24236d0 100644 --- a/src/licensedcode/data/licenses/openldap-1.2.LICENSE +++ b/src/licensedcode/data/licenses/openldap-1.2.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-1.2 +short_name: OpenLDAP Public License 1.2 +name: OpenLDAP Public License 1.2 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7 +notes: | + Per SPDX.org, this license was released 1 September 1998. This license was + issued four time, but only with formatting differences. +spdx_license_key: OLDAP-1.2 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.2, 1 September 1998 diff --git a/src/licensedcode/data/licenses/openldap-1.2.yml b/src/licensedcode/data/licenses/openldap-1.2.yml deleted file mode 100644 index b43c52b9223..00000000000 --- a/src/licensedcode/data/licenses/openldap-1.2.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: openldap-1.2 -short_name: OpenLDAP Public License 1.2 -name: OpenLDAP Public License 1.2 -category: Copyleft Limited -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7 -notes: | - Per SPDX.org, this license was released 1 September 1998. This license was - issued four time, but only with formatting differences. -spdx_license_key: OLDAP-1.2 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=42b0383c50c299977b5893ee695cf4e486fb0dc7 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1998, The OpenLDAP Foundation -ignorable_holders: - - The OpenLDAP Foundation diff --git a/src/licensedcode/data/licenses/openldap-1.3.LICENSE b/src/licensedcode/data/licenses/openldap-1.3.LICENSE index c72313707bc..1f584189349 100644 --- a/src/licensedcode/data/licenses/openldap-1.3.LICENSE +++ b/src/licensedcode/data/licenses/openldap-1.3.LICENSE @@ -1,3 +1,24 @@ +--- +key: openldap-1.3 +short_name: OpenLDAP Public License 1.3 +name: OpenLDAP Public License 1.3 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1 +notes: | + Per SPDX.org, this license was released 17 January 1999. This license was + issued twice in the same day with a minor correction. This is the corrected + (second) version. +spdx_license_key: OLDAP-1.3 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998-1999, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.3, 17 January 1999 diff --git a/src/licensedcode/data/licenses/openldap-1.3.yml b/src/licensedcode/data/licenses/openldap-1.3.yml deleted file mode 100644 index 325ae4902a7..00000000000 --- a/src/licensedcode/data/licenses/openldap-1.3.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: openldap-1.3 -short_name: OpenLDAP Public License 1.3 -name: OpenLDAP Public License 1.3 -category: Copyleft Limited -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1 -notes: | - Per SPDX.org, this license was released 17 January 1999. This license was - issued twice in the same day with a minor correction. This is the corrected - (second) version. -spdx_license_key: OLDAP-1.3 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=e5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1998-1999, The OpenLDAP Foundation -ignorable_holders: - - The OpenLDAP Foundation diff --git a/src/licensedcode/data/licenses/openldap-1.4.LICENSE b/src/licensedcode/data/licenses/openldap-1.4.LICENSE index 74eb993fc80..ef2d901200f 100644 --- a/src/licensedcode/data/licenses/openldap-1.4.LICENSE +++ b/src/licensedcode/data/licenses/openldap-1.4.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-1.4 +short_name: OpenLDAP Public License 1.4 +name: OpenLDAP Public License 1.4 +category: Copyleft Limited +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941 +notes: Per SPDX.org, this license was released 18 January 1999. +spdx_license_key: OLDAP-1.4 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998-1999, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.4, 18 January 1999 diff --git a/src/licensedcode/data/licenses/openldap-1.4.yml b/src/licensedcode/data/licenses/openldap-1.4.yml deleted file mode 100644 index 0bd4f04fd1d..00000000000 --- a/src/licensedcode/data/licenses/openldap-1.4.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: openldap-1.4 -short_name: OpenLDAP Public License 1.4 -name: OpenLDAP Public License 1.4 -category: Copyleft Limited -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941 -notes: Per SPDX.org, this license was released 18 January 1999. -spdx_license_key: OLDAP-1.4 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=c9f95c2f3f2ffb5e0ae55fe7388af75547660941 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1998-1999, The OpenLDAP Foundation -ignorable_holders: - - The OpenLDAP Foundation diff --git a/src/licensedcode/data/licenses/openldap-2.0.1.LICENSE b/src/licensedcode/data/licenses/openldap-2.0.1.LICENSE index 4a0326711eb..35177dcaa88 100644 --- a/src/licensedcode/data/licenses/openldap-2.0.1.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.0.1.LICENSE @@ -1,3 +1,28 @@ +--- +key: openldap-2.0.1 +short_name: OpenLDAP Public License 2.0.1 +name: OpenLDAP Public License 2.0.1 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e +notes: | + Per SPDX.org, this license was released 21 December 1999. This license is + the same as 2.0 with the word "registered" removed from in front of + "trademark." +spdx_license_key: OLDAP-2.0.1 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +ignorable_emails: + - foundation@openldap.org +--- + The OpenLDAP Public License Version 2.0.1, 21 December 1999 diff --git a/src/licensedcode/data/licenses/openldap-2.0.1.yml b/src/licensedcode/data/licenses/openldap-2.0.1.yml deleted file mode 100644 index b924b819a0f..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.0.1.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: openldap-2.0.1 -short_name: OpenLDAP Public License 2.0.1 -name: OpenLDAP Public License 2.0.1 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e -notes: | - Per SPDX.org, this license was released 21 December 1999. This license is - the same as 2.0 with the word "registered" removed from in front of - "trademark." -spdx_license_key: OLDAP-2.0.1 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b6d68acd14e51ca3aab4428bf26522aa74873f0e -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/ -ignorable_emails: - - foundation@openldap.org diff --git a/src/licensedcode/data/licenses/openldap-2.0.LICENSE b/src/licensedcode/data/licenses/openldap-2.0.LICENSE index 6ab3c060e3f..6f7078aad88 100644 --- a/src/licensedcode/data/licenses/openldap-2.0.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: openldap-2.0 +short_name: OpenLDAP Public License 2.0 +name: OpenLDAP Public License 2.0 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea +notes: Per SPDX.org, this license was released 7 June 1999. +spdx_license_key: OLDAP-2.0 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +ignorable_emails: + - foundation@openldap.org +--- + The OpenLDAP Public License Version 2.0, 7 June 1999 diff --git a/src/licensedcode/data/licenses/openldap-2.0.yml b/src/licensedcode/data/licenses/openldap-2.0.yml deleted file mode 100644 index 5eaa20064e6..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.0.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: openldap-2.0 -short_name: OpenLDAP Public License 2.0 -name: OpenLDAP Public License 2.0 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea -notes: Per SPDX.org, this license was released 7 June 1999. -spdx_license_key: OLDAP-2.0 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cbf50f4e1185a21abd4c0a54d3f4341fe28f36ea -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999, The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/ -ignorable_emails: - - foundation@openldap.org diff --git a/src/licensedcode/data/licenses/openldap-2.1.LICENSE b/src/licensedcode/data/licenses/openldap-2.1.LICENSE index e127574e5dd..fc6d447edb9 100644 --- a/src/licensedcode/data/licenses/openldap-2.1.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.1.LICENSE @@ -1,3 +1,25 @@ +--- +key: openldap-2.1 +short_name: OpenLDAP Public License 2.1 +name: OpenLDAP Public License 2.1 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715 +notes: Per SPDX.org, this license was released 29 February 2000. +spdx_license_key: OLDAP-2.1 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +ignorable_emails: + - foundation@openldap.org +--- + The OpenLDAP Public License Version 2.1, 29 February 2000 diff --git a/src/licensedcode/data/licenses/openldap-2.1.yml b/src/licensedcode/data/licenses/openldap-2.1.yml deleted file mode 100644 index 029a27948fb..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.1.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: openldap-2.1 -short_name: OpenLDAP Public License 2.1 -name: OpenLDAP Public License 2.1 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715 -notes: Per SPDX.org, this license was released 29 February 2000. -spdx_license_key: OLDAP-2.1 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=b0d176738e96a0d3b9f85cb51e140a86f21be715 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/ -ignorable_emails: - - foundation@openldap.org diff --git a/src/licensedcode/data/licenses/openldap-2.2.1.LICENSE b/src/licensedcode/data/licenses/openldap-2.2.1.LICENSE index 47673ac9fa6..55dd52d5dd7 100644 --- a/src/licensedcode/data/licenses/openldap-2.2.1.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.2.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-2.2.1 +short_name: OpenLDAP Public License 2.2.1 +name: OpenLDAP Public License 2.2.1 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e +notes: Per SPDX.org, this license was released 1 March 2000. +spdx_license_key: OLDAP-2.2.1 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +--- + The OpenLDAP Public License Version 2.2.1, 1 March 2000 diff --git a/src/licensedcode/data/licenses/openldap-2.2.1.yml b/src/licensedcode/data/licenses/openldap-2.2.1.yml deleted file mode 100644 index 8d9d6a862e0..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.2.1.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: openldap-2.2.1 -short_name: OpenLDAP Public License 2.2.1 -name: OpenLDAP Public License 2.2.1 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e -notes: Per SPDX.org, this license was released 1 March 2000. -spdx_license_key: OLDAP-2.2.1 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=4bc786f34b50aa301be6f5600f58a980070f481e -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/ diff --git a/src/licensedcode/data/licenses/openldap-2.2.2.LICENSE b/src/licensedcode/data/licenses/openldap-2.2.2.LICENSE index cdd0f561b0f..2dfc29f3dab 100644 --- a/src/licensedcode/data/licenses/openldap-2.2.2.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.2.2.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-2.2.2 +short_name: OpenLDAP Public License 2.2.2 +name: OpenLDAP Public License 2.2.2 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188 +notes: Per SPDX.org, this license was released 28 July 2000. +spdx_license_key: OLDAP-2.2.2 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +--- + The OpenLDAP Public License Version 2.2.2, 28 July 2000 diff --git a/src/licensedcode/data/licenses/openldap-2.2.2.yml b/src/licensedcode/data/licenses/openldap-2.2.2.yml deleted file mode 100644 index 7efdd7ab39f..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.2.2.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: openldap-2.2.2 -short_name: OpenLDAP Public License 2.2.2 -name: OpenLDAP Public License 2.2.2 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188 -notes: Per SPDX.org, this license was released 28 July 2000. -spdx_license_key: OLDAP-2.2.2 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=df2cc1e21eb7c160695f5b7cffd6296c151ba188 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/ diff --git a/src/licensedcode/data/licenses/openldap-2.2.LICENSE b/src/licensedcode/data/licenses/openldap-2.2.LICENSE index 3dc04ccd71d..dbc5cd521b4 100644 --- a/src/licensedcode/data/licenses/openldap-2.2.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.2.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-2.2 +short_name: OpenLDAP Public License 2.2 +name: OpenLDAP Public License 2.2 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3 +notes: Per SPDX.org, this license was released 1 March 2000. +spdx_license_key: OLDAP-2.2 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +--- + The OpenLDAP Public License Version 2.2, 1 March 2000 diff --git a/src/licensedcode/data/licenses/openldap-2.2.yml b/src/licensedcode/data/licenses/openldap-2.2.yml deleted file mode 100644 index 61cf7fb97ed..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.2.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: openldap-2.2 -short_name: OpenLDAP Public License 2.2 -name: OpenLDAP Public License 2.2 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3 -notes: Per SPDX.org, this license was released 1 March 2000. -spdx_license_key: OLDAP-2.2 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=470b0c18ec67621c85881b2733057fecf4a1acc3 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2000, The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/ diff --git a/src/licensedcode/data/licenses/openldap-2.3.LICENSE b/src/licensedcode/data/licenses/openldap-2.3.LICENSE index 32d7d45371d..fc6134b9dbf 100644 --- a/src/licensedcode/data/licenses/openldap-2.3.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.3.LICENSE @@ -1,3 +1,23 @@ +--- +key: openldap-2.3 +short_name: OpenLDAP Public License 2.3 +name: OpenLDAP Public License 2.3 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3 +notes: Per SPDX.org, this license was released 28 July 2000. +spdx_license_key: OLDAP-2.3 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/ +--- + The OpenLDAP Public License Version 2.3, 28 July 2000 diff --git a/src/licensedcode/data/licenses/openldap-2.3.yml b/src/licensedcode/data/licenses/openldap-2.3.yml deleted file mode 100644 index 281afe4ac59..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.3.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: openldap-2.3 -short_name: OpenLDAP Public License 2.3 -name: OpenLDAP Public License 2.3 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3 -notes: Per SPDX.org, this license was released 28 July 2000. -spdx_license_key: OLDAP-2.3 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=d32cf54a32d581ab475d23c810b0a7fbaf8d63c3 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/ diff --git a/src/licensedcode/data/licenses/openldap-2.4.LICENSE b/src/licensedcode/data/licenses/openldap-2.4.LICENSE index 9609ee05ef9..f52d22405e8 100644 --- a/src/licensedcode/data/licenses/openldap-2.4.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.4.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-2.4 +short_name: OpenLDAP Public License 2.4 +name: OpenLDAP Public License 2.4 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386 +notes: Per SPDX.org, this license was released 8 December 2000. +spdx_license_key: OLDAP-2.4 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.4, 8 December 2000 diff --git a/src/licensedcode/data/licenses/openldap-2.4.yml b/src/licensedcode/data/licenses/openldap-2.4.yml deleted file mode 100644 index ccd43ac27b7..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.4.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: openldap-2.4 -short_name: OpenLDAP Public License 2.4 -name: OpenLDAP Public License 2.4 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386 -notes: Per SPDX.org, this license was released 8 December 2000. -spdx_license_key: OLDAP-2.4 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=cd1284c4a91a8a380d904eee68d1583f989ed386 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2000 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. diff --git a/src/licensedcode/data/licenses/openldap-2.5.LICENSE b/src/licensedcode/data/licenses/openldap-2.5.LICENSE index c4f09b00f4a..464600573f8 100644 --- a/src/licensedcode/data/licenses/openldap-2.5.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.5.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-2.5 +short_name: OpenLDAP Public License 2.5 +name: OpenLDAP Public License 2.5 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf +notes: Per SPDX.org, this license was released 11 May 2001. +spdx_license_key: OLDAP-2.5 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.5, 11 May 2001 diff --git a/src/licensedcode/data/licenses/openldap-2.5.yml b/src/licensedcode/data/licenses/openldap-2.5.yml deleted file mode 100644 index ec419033634..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.5.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: openldap-2.5 -short_name: OpenLDAP Public License 2.5 -name: OpenLDAP Public License 2.5 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf -notes: Per SPDX.org, this license was released 11 May 2001. -spdx_license_key: OLDAP-2.5 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=6852b9d90022e8593c98205413380536b1b5a7cf -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. diff --git a/src/licensedcode/data/licenses/openldap-2.6.LICENSE b/src/licensedcode/data/licenses/openldap-2.6.LICENSE index d1d66bb1974..0d0556d264b 100644 --- a/src/licensedcode/data/licenses/openldap-2.6.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.6.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-2.6 +short_name: OpenLDAP Public License 2.6 +name: OpenLDAP Public License 2.6 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205 +notes: Per SPDX.org, this license was released 14 June 2001. +spdx_license_key: OLDAP-2.6 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.6, 14 June 2001 diff --git a/src/licensedcode/data/licenses/openldap-2.6.yml b/src/licensedcode/data/licenses/openldap-2.6.yml deleted file mode 100644 index 20f6d62054f..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.6.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: openldap-2.6 -short_name: OpenLDAP Public License 2.6 -name: OpenLDAP Public License 2.6 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205 -notes: Per SPDX.org, this license was released 14 June 2001. -spdx_license_key: OLDAP-2.6 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=1cae062821881f41b73012ba816434897abf4205 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. diff --git a/src/licensedcode/data/licenses/openldap-2.7.LICENSE b/src/licensedcode/data/licenses/openldap-2.7.LICENSE index bbfdec5803e..f0d35d1e7ea 100644 --- a/src/licensedcode/data/licenses/openldap-2.7.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.7.LICENSE @@ -1,3 +1,21 @@ +--- +key: openldap-2.7 +short_name: OpenLDAP Public License 2.7 +name: OpenLDAP Public License 2.7 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2 +notes: Per SPDX.org, this license was released 7 September 2001. +spdx_license_key: OLDAP-2.7 +text_urls: + - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2 +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.7, 7 September 2001 diff --git a/src/licensedcode/data/licenses/openldap-2.7.yml b/src/licensedcode/data/licenses/openldap-2.7.yml deleted file mode 100644 index 20a5179c28f..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.7.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: openldap-2.7 -short_name: OpenLDAP Public License 2.7 -name: OpenLDAP Public License 2.7 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2 -notes: Per SPDX.org, this license was released 7 September 2001. -spdx_license_key: OLDAP-2.7 -text_urls: - - http://www.openldap.org/devel/gitweb.cgi?p=openldap.git;a=blob;f=LICENSE;hb=47c2415c1df81556eeb39be6cad458ef87c534a2 -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. diff --git a/src/licensedcode/data/licenses/openldap-2.8.LICENSE b/src/licensedcode/data/licenses/openldap-2.8.LICENSE index 6295703c0a3..ddc7b1aea88 100644 --- a/src/licensedcode/data/licenses/openldap-2.8.LICENSE +++ b/src/licensedcode/data/licenses/openldap-2.8.LICENSE @@ -1,3 +1,20 @@ +--- +key: openldap-2.8 +short_name: OpenLDAP Public License 2.8 +name: OpenLDAP Public License 2.8 +category: Permissive +owner: OpenLDAP Foundation +homepage_url: http://www.openldap.org/software/release/license.html +spdx_license_key: OLDAP-2.8 +text_urls: + - http://www.openldap.org/software/release/license.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.8, 17 August 2003 diff --git a/src/licensedcode/data/licenses/openldap-2.8.yml b/src/licensedcode/data/licenses/openldap-2.8.yml deleted file mode 100644 index 31f8a07ef0b..00000000000 --- a/src/licensedcode/data/licenses/openldap-2.8.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: openldap-2.8 -short_name: OpenLDAP Public License 2.8 -name: OpenLDAP Public License 2.8 -category: Permissive -owner: OpenLDAP Foundation -homepage_url: http://www.openldap.org/software/release/license.html -spdx_license_key: OLDAP-2.8 -text_urls: - - http://www.openldap.org/software/release/license.html -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. diff --git a/src/licensedcode/data/licenses/openmap.LICENSE b/src/licensedcode/data/licenses/openmap.LICENSE index bd08225cf8e..bf0d9ac8fad 100644 --- a/src/licensedcode/data/licenses/openmap.LICENSE +++ b/src/licensedcode/data/licenses/openmap.LICENSE @@ -1,3 +1,15 @@ +--- +key: openmap +short_name: OpenMap Software License Agreement +name: OpenMap Software License Agreement +category: Copyleft Limited +owner: BBN +homepage_url: http://openmap-java.org/License.html +notes: this is highly similar to an artistic license +spdx_license_key: LicenseRef-scancode-openmap +minimum_coverage: 60 +--- + OpenMap Software License Agreement ---------------------------------- diff --git a/src/licensedcode/data/licenses/openmap.yml b/src/licensedcode/data/licenses/openmap.yml deleted file mode 100644 index fcb70ea7602..00000000000 --- a/src/licensedcode/data/licenses/openmap.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: openmap -short_name: OpenMap Software License Agreement -name: OpenMap Software License Agreement -category: Copyleft Limited -owner: BBN -homepage_url: http://openmap-java.org/License.html -notes: this is highly similar to an artistic license -spdx_license_key: LicenseRef-scancode-openmap -minimum_coverage: 60 diff --git a/src/licensedcode/data/licenses/openmarket-fastcgi.LICENSE b/src/licensedcode/data/licenses/openmarket-fastcgi.LICENSE index 09aec1fae9e..05ccf61ce94 100644 --- a/src/licensedcode/data/licenses/openmarket-fastcgi.LICENSE +++ b/src/licensedcode/data/licenses/openmarket-fastcgi.LICENSE @@ -1,3 +1,19 @@ +--- +key: openmarket-fastcgi +short_name: FastCGI License for Spec Implementation +name: FastCGI License for Spec Implementation +category: Permissive +owner: OpenMarket +homepage_url: http://www.fastcgi.com/drupal/node/8 +spdx_license_key: LicenseRef-scancode-openmarket-fastcgi +text_urls: + - http://www.fastcgi.com/drupal/node/8 +ignorable_copyrights: + - copyrighted by Open Market, Inc 'Open Market +ignorable_holders: + - Open Market, Inc 'Open Market +--- + OpenMarket FastCGI This FastCGI application library source and object code (the "Software") and its documentation (the "Documentation") are copyrighted by Open Market, Inc ("Open Market"). The following terms apply to all files associated with the Software and Documentation unless explicitly disclaimed in individual files. diff --git a/src/licensedcode/data/licenses/openmarket-fastcgi.yml b/src/licensedcode/data/licenses/openmarket-fastcgi.yml deleted file mode 100644 index 72d68a8bea0..00000000000 --- a/src/licensedcode/data/licenses/openmarket-fastcgi.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: openmarket-fastcgi -short_name: FastCGI License for Spec Implementation -name: FastCGI License for Spec Implementation -category: Permissive -owner: OpenMarket -homepage_url: http://www.fastcgi.com/drupal/node/8 -spdx_license_key: LicenseRef-scancode-openmarket-fastcgi -text_urls: - - http://www.fastcgi.com/drupal/node/8 -ignorable_copyrights: - - copyrighted by Open Market, Inc 'Open Market -ignorable_holders: - - Open Market, Inc 'Open Market diff --git a/src/licensedcode/data/licenses/openmotif-exception-2.0-plus.LICENSE b/src/licensedcode/data/licenses/openmotif-exception-2.0-plus.LICENSE index c3c65559c0a..8dd6fe01d7a 100644 --- a/src/licensedcode/data/licenses/openmotif-exception-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/openmotif-exception-2.0-plus.LICENSE @@ -1,3 +1,38 @@ +--- +key: openmotif-exception-2.0-plus +short_name: Open Motif exception to GPL 2.0 or later +name: Open Motif exception to GPL 2.0 or later +category: Copyleft Limited +owner: NEdit Project +homepage_url: http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-openmotif-exception-2.0-plus +faq_url: http://www.nedit.org/faq/ +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + In addition, as a special exception to the GNU GPL, the copyright holders + give permission to link the code of this program with the Motif and Open + Motif libraries (or with modified versions of these that use the same + license), and distribute linked combinations including the two. You + must obey the GNU General Public License in all respects for all of + the code used other than linking with Motif/Open Motif. If you modify + this file, you may extend this exception to your version of the file, + but you are not obligated to do so. If you do not wish to do so, + delete this exception statement from your version. +--- + In addition, as a special exception to the GNU GPL, the copyright holders give permission to link the code of this program with the Motif and Open Motif libraries (or with modified versions of these that use the same diff --git a/src/licensedcode/data/licenses/openmotif-exception-2.0-plus.yml b/src/licensedcode/data/licenses/openmotif-exception-2.0-plus.yml deleted file mode 100644 index 245d64bd159..00000000000 --- a/src/licensedcode/data/licenses/openmotif-exception-2.0-plus.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: openmotif-exception-2.0-plus -short_name: Open Motif exception to GPL 2.0 or later -name: Open Motif exception to GPL 2.0 or later -category: Copyleft Limited -owner: NEdit Project -homepage_url: http://nedit.sourcearchive.com/documentation/5.6~cvs20081118/grid3_8c-source.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-openmotif-exception-2.0-plus -faq_url: http://www.nedit.org/faq/ -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - In addition, as a special exception to the GNU GPL, the copyright holders - give permission to link the code of this program with the Motif and Open - Motif libraries (or with modified versions of these that use the same - license), and distribute linked combinations including the two. You - must obey the GNU General Public License in all respects for all of - the code used other than linking with Motif/Open Motif. If you modify - this file, you may extend this exception to your version of the file, - but you are not obligated to do so. If you do not wish to do so, - delete this exception statement from your version. diff --git a/src/licensedcode/data/licenses/opennetcf-shared-source.LICENSE b/src/licensedcode/data/licenses/opennetcf-shared-source.LICENSE index 5be15588c48..51ce81b328a 100644 --- a/src/licensedcode/data/licenses/opennetcf-shared-source.LICENSE +++ b/src/licensedcode/data/licenses/opennetcf-shared-source.LICENSE @@ -1,3 +1,17 @@ +--- +key: opennetcf-shared-source +short_name: OpenNETCF Shared Source License +name: OpenNETCF Shared Source License +category: Proprietary Free +owner: OpenNETCF Consulting +homepage_url: http://www.opennetcf.com/products/licenses.aspx +spdx_license_key: LicenseRef-scancode-opennetcf-shared-source +ignorable_copyrights: + - (c) 2006-2012 OpenNETCF Consulting, LLC. +ignorable_holders: + - OpenNETCF Consulting, LLC. +--- + NOTICE This license governs use of the accompanying software ("Software"), and your use of the Software constitutes acceptance of this license. Subject to the restrictions below, you may use the Software for any commercial or noncommercial purpose, including distributing derivative works. diff --git a/src/licensedcode/data/licenses/opennetcf-shared-source.yml b/src/licensedcode/data/licenses/opennetcf-shared-source.yml deleted file mode 100644 index d8d0489630a..00000000000 --- a/src/licensedcode/data/licenses/opennetcf-shared-source.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: opennetcf-shared-source -short_name: OpenNETCF Shared Source License -name: OpenNETCF Shared Source License -category: Proprietary Free -owner: OpenNETCF Consulting -homepage_url: http://www.opennetcf.com/products/licenses.aspx -spdx_license_key: LicenseRef-scancode-opennetcf-shared-source -ignorable_copyrights: - - (c) 2006-2012 OpenNETCF Consulting, LLC. -ignorable_holders: - - OpenNETCF Consulting, LLC. diff --git a/src/licensedcode/data/licenses/openorb-1.0.LICENSE b/src/licensedcode/data/licenses/openorb-1.0.LICENSE index 54cd654ac45..cd77ff11158 100644 --- a/src/licensedcode/data/licenses/openorb-1.0.LICENSE +++ b/src/licensedcode/data/licenses/openorb-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: openorb-1.0 +short_name: OpenORB Community License 1.0 +name: OpenORB Community Software License Version 1.0 +category: Permissive +owner: OpenORB Project +homepage_url: http://openorb.sourceforge.net/license.txt +spdx_license_key: LicenseRef-scancode-openorb-1.0 +text_urls: + - http://openorb.sourceforge.net/license.txt +ignorable_copyrights: + - Copyright (c) 2002 The OpenORB Project +ignorable_holders: + - The OpenORB Project +ignorable_authors: + - the OpenORB Community Project (http://sourceforge.net/projects/openorb/) +ignorable_urls: + - http://sourceforge.net/projects/openorb + - http://sourceforge.net/projects/openorb/ +--- + ================================================================================ The OpenORB Community Software License, Version 1.0 ================================================================================ diff --git a/src/licensedcode/data/licenses/openorb-1.0.yml b/src/licensedcode/data/licenses/openorb-1.0.yml deleted file mode 100644 index 46ce49899a4..00000000000 --- a/src/licensedcode/data/licenses/openorb-1.0.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: openorb-1.0 -short_name: OpenORB Community License 1.0 -name: OpenORB Community Software License Version 1.0 -category: Permissive -owner: OpenORB Project -homepage_url: http://openorb.sourceforge.net/license.txt -spdx_license_key: LicenseRef-scancode-openorb-1.0 -text_urls: - - http://openorb.sourceforge.net/license.txt -ignorable_copyrights: - - Copyright (c) 2002 The OpenORB Project -ignorable_holders: - - The OpenORB Project -ignorable_authors: - - the OpenORB Community Project (http://sourceforge.net/projects/openorb/) -ignorable_urls: - - http://sourceforge.net/projects/openorb - - http://sourceforge.net/projects/openorb/ diff --git a/src/licensedcode/data/licenses/openpbs-2.3.LICENSE b/src/licensedcode/data/licenses/openpbs-2.3.LICENSE index b2a79c705e2..699684b63e8 100644 --- a/src/licensedcode/data/licenses/openpbs-2.3.LICENSE +++ b/src/licensedcode/data/licenses/openpbs-2.3.LICENSE @@ -1,3 +1,29 @@ +--- +key: openpbs-2.3 +short_name: OpenPBS 2.3 +name: OpenPBS Software License v2.3 +category: Copyleft Limited +owner: Fedora +homepage_url: http://fedoraproject.org/wiki/Licensing/OpenPBS +spdx_license_key: LicenseRef-scancode-openpbs-2.3 +text_urls: + - http://fedoraproject.org/wiki/Licensing/OpenPBS +other_urls: + - www.OpenPBS.org +ignorable_copyrights: + - Copyright (c) 1999-2000 Veridian Information Solutions, Inc. +ignorable_holders: + - Veridian Information Solutions, Inc. +ignorable_authors: + - NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian Information + Solutions, Inc. +ignorable_urls: + - http://www.openpbs.org/ + - http://www.openpbs.org/credit.html +ignorable_emails: + - sales@OpenPBS.org +--- + OpenPBS (Portable Batch System) v2.3 Software License Copyright (c) 1999-2000 Veridian Information Solutions, Inc. diff --git a/src/licensedcode/data/licenses/openpbs-2.3.yml b/src/licensedcode/data/licenses/openpbs-2.3.yml deleted file mode 100644 index f738f14ef28..00000000000 --- a/src/licensedcode/data/licenses/openpbs-2.3.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: openpbs-2.3 -short_name: OpenPBS 2.3 -name: OpenPBS Software License v2.3 -category: Copyleft Limited -owner: Fedora -homepage_url: http://fedoraproject.org/wiki/Licensing/OpenPBS -spdx_license_key: LicenseRef-scancode-openpbs-2.3 -text_urls: - - http://fedoraproject.org/wiki/Licensing/OpenPBS -other_urls: - - www.OpenPBS.org -ignorable_copyrights: - - Copyright (c) 1999-2000 Veridian Information Solutions, Inc. -ignorable_holders: - - Veridian Information Solutions, Inc. -ignorable_authors: - - NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian Information - Solutions, Inc. -ignorable_urls: - - http://www.openpbs.org/ - - http://www.openpbs.org/credit.html -ignorable_emails: - - sales@OpenPBS.org diff --git a/src/licensedcode/data/licenses/openpub.LICENSE b/src/licensedcode/data/licenses/openpub.LICENSE index 7b1515a3605..6a0fd3e52fe 100644 --- a/src/licensedcode/data/licenses/openpub.LICENSE +++ b/src/licensedcode/data/licenses/openpub.LICENSE @@ -1,3 +1,25 @@ +--- +key: openpub +short_name: Open Publication License 1.0 +name: Open Publication License v1.0 +category: Permissive +owner: OpenContent +homepage_url: http://opencontent.org/openpub/ +spdx_license_key: OPUBL-1.0 +other_spdx_license_keys: + - LicenseRef-scancode-openpub +text_urls: + - https://opencontent.org/openpub/ +other_urls: + - http://works.opencontent.org/ + - http://www.opencontent.org/openpub/ + - https://opencontent.org/openpub/ + - https://www.ctan.org/license/opl + - https://www.debian.org/opl +ignorable_urls: + - http://www.opencontent.org/openpub +--- + Open Publication License v1.0, 8 June 1999 diff --git a/src/licensedcode/data/licenses/openpub.yml b/src/licensedcode/data/licenses/openpub.yml deleted file mode 100644 index c2fae726120..00000000000 --- a/src/licensedcode/data/licenses/openpub.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: openpub -short_name: Open Publication License 1.0 -name: Open Publication License v1.0 -category: Permissive -owner: OpenContent -homepage_url: http://opencontent.org/openpub/ -spdx_license_key: OPUBL-1.0 -other_spdx_license_keys: - - LicenseRef-scancode-openpub -text_urls: - - https://opencontent.org/openpub/ -other_urls: - - http://works.opencontent.org/ - - http://www.opencontent.org/openpub/ - - https://opencontent.org/openpub/ - - https://www.ctan.org/license/opl - - https://www.debian.org/opl -ignorable_urls: - - http://www.opencontent.org/openpub diff --git a/src/licensedcode/data/licenses/opensaml-1.0.LICENSE b/src/licensedcode/data/licenses/opensaml-1.0.LICENSE index 22e2e5ab1ac..56a6bee9221 100644 --- a/src/licensedcode/data/licenses/opensaml-1.0.LICENSE +++ b/src/licensedcode/data/licenses/opensaml-1.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: opensaml-1.0 +short_name: OpenSAML License v1 +name: OpenSAML License Version 1 +category: Permissive +owner: OpenSAML Project +spdx_license_key: LicenseRef-scancode-opensaml-1.0 +other_urls: + - https://wiki.shibboleth.net/confluence/display/OpenSAML/Home +ignorable_copyrights: + - Copyright (c) 2002 University Corporation for Advanced Internet Development, Inc. +ignorable_holders: + - University Corporation for Advanced Internet Development, Inc. +ignorable_authors: + - the University Corporation +ignorable_urls: + - http://www.ucaid.edu/ +ignorable_emails: + - opensaml@opensaml.org +--- + The OpenSAML License, Version 1. Copyright (c) 2002 University Corporation for Advanced Internet Development, Inc. diff --git a/src/licensedcode/data/licenses/opensaml-1.0.yml b/src/licensedcode/data/licenses/opensaml-1.0.yml deleted file mode 100644 index 9bd17329e5d..00000000000 --- a/src/licensedcode/data/licenses/opensaml-1.0.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: opensaml-1.0 -short_name: OpenSAML License v1 -name: OpenSAML License Version 1 -category: Permissive -owner: OpenSAML Project -spdx_license_key: LicenseRef-scancode-opensaml-1.0 -other_urls: - - https://wiki.shibboleth.net/confluence/display/OpenSAML/Home -ignorable_copyrights: - - Copyright (c) 2002 University Corporation for Advanced Internet Development, Inc. -ignorable_holders: - - University Corporation for Advanced Internet Development, Inc. -ignorable_authors: - - the University Corporation -ignorable_urls: - - http://www.ucaid.edu/ -ignorable_emails: - - opensaml@opensaml.org diff --git a/src/licensedcode/data/licenses/opensc-openssl-openpace-exception-gpl.LICENSE b/src/licensedcode/data/licenses/opensc-openssl-openpace-exception-gpl.LICENSE index e7f587cb829..c5cee3f2e41 100644 --- a/src/licensedcode/data/licenses/opensc-openssl-openpace-exception-gpl.LICENSE +++ b/src/licensedcode/data/licenses/opensc-openssl-openpace-exception-gpl.LICENSE @@ -1,3 +1,19 @@ +--- +key: opensc-openssl-openpace-exception-gpl +short_name: OpenSC OpenSSL linking exception GPL in OpenPace +name: OpenSC and OpenSSL linking exception to GPL in OpenPace +category: Copyleft +owner: OpenPACE Project +homepage_url: https://github.com/frankmorgner/openpace/blob/812ecb1f60188e6df89998c7a3704b8021c8bfd7/COPYING#L676 +is_exception: yes +spdx_license_key: LicenseRef-scancode-openpace-exception-gpl +other_spdx_license_keys: + - LicenseRef-scancode-opensc-openssl-openpace-exception-gpl +other_urls: + - https://github.com/frankmorgner/openpace/issues/46 + - https://github.com/frankmorgner/openpace/commit/3077280a49992c2d947fbde327ef53add8576587 +--- + Additional permission under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining it diff --git a/src/licensedcode/data/licenses/opensc-openssl-openpace-exception-gpl.yml b/src/licensedcode/data/licenses/opensc-openssl-openpace-exception-gpl.yml deleted file mode 100644 index 4bd28306829..00000000000 --- a/src/licensedcode/data/licenses/opensc-openssl-openpace-exception-gpl.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: opensc-openssl-openpace-exception-gpl -short_name: OpenSC OpenSSL linking exception GPL in OpenPace -name: OpenSC and OpenSSL linking exception to GPL in OpenPace -category: Copyleft -owner: OpenPACE Project -homepage_url: https://github.com/frankmorgner/openpace/blob/812ecb1f60188e6df89998c7a3704b8021c8bfd7/COPYING#L676 -is_exception: yes -spdx_license_key: LicenseRef-scancode-openpace-exception-gpl -other_spdx_license_keys: - - LicenseRef-scancode-opensc-openssl-openpace-exception-gpl -other_urls: - - https://github.com/frankmorgner/openpace/issues/46 - - https://github.com/frankmorgner/openpace/commit/3077280a49992c2d947fbde327ef53add8576587 diff --git a/src/licensedcode/data/licenses/openssh.LICENSE b/src/licensedcode/data/licenses/openssh.LICENSE index ca264777073..40a4edb361d 100644 --- a/src/licensedcode/data/licenses/openssh.LICENSE +++ b/src/licensedcode/data/licenses/openssh.LICENSE @@ -1,3 +1,47 @@ +--- +key: openssh +short_name: OpenSSH License +name: OpenSSH License +category: Permissive +owner: OpenBSD Project +homepage_url: https://github.com/openssh/openssh-portable/blob/V_7_3_P1/LICENCE +notes: composite +spdx_license_key: SSH-OpenSSH +other_urls: + - http://www.openssh.org/ + - https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1983, 1990, 1992, 1993, 1995 The Regents of the University of California + - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland + - Copyright (c) 1998 CORE SDI + - Copyright 1995, 1996 by David Mazieres + - Copyright Patrick Powell 1995 +ignorable_holders: + - CORE SDI + - David Mazieres + - Patrick Powell + - Tatu Ylonen , Espoo, Finland + - The Regents of the University of California +ignorable_authors: + - Antoon Bosselaers + - Patrick Powell (papowell@astart.com) + - Paulo Barreto + - Vincent Rijmen +ignorable_urls: + - http://www.core-sdi.com/ + - http://www.cs.hut.fi/crypto +ignorable_emails: + - antoon.bosselaers@esat.kuleuven.ac.be + - dm@lcs.mit.edu + - futo@core-sdi.com + - papowell@astart.com + - paulo.barreto@terra.com.br + - phk@login.dknet.dk + - vincent.rijmen@esat.kuleuven.ac.be + - ylo@cs.hut.fi +--- + This file is part of the OpenSSH software. The licences which components of this software fall under are as diff --git a/src/licensedcode/data/licenses/openssh.yml b/src/licensedcode/data/licenses/openssh.yml deleted file mode 100644 index c5c4894cbc6..00000000000 --- a/src/licensedcode/data/licenses/openssh.yml +++ /dev/null @@ -1,41 +0,0 @@ -key: openssh -short_name: OpenSSH License -name: OpenSSH License -category: Permissive -owner: OpenBSD Project -homepage_url: https://github.com/openssh/openssh-portable/blob/V_7_3_P1/LICENCE -notes: composite -spdx_license_key: SSH-OpenSSH -other_urls: - - http://www.openssh.org/ - - https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10 -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 1983, 1990, 1992, 1993, 1995 The Regents of the University of California - - Copyright (c) 1995 Tatu Ylonen , Espoo, Finland - - Copyright (c) 1998 CORE SDI - - Copyright 1995, 1996 by David Mazieres - - Copyright Patrick Powell 1995 -ignorable_holders: - - CORE SDI - - David Mazieres - - Patrick Powell - - Tatu Ylonen , Espoo, Finland - - The Regents of the University of California -ignorable_authors: - - Antoon Bosselaers - - Patrick Powell (papowell@astart.com) - - Paulo Barreto - - Vincent Rijmen -ignorable_urls: - - http://www.core-sdi.com/ - - http://www.cs.hut.fi/crypto -ignorable_emails: - - antoon.bosselaers@esat.kuleuven.ac.be - - dm@lcs.mit.edu - - futo@core-sdi.com - - papowell@astart.com - - paulo.barreto@terra.com.br - - phk@login.dknet.dk - - vincent.rijmen@esat.kuleuven.ac.be - - ylo@cs.hut.fi diff --git a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-monit.LICENSE b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-monit.LICENSE index 9678d9e967e..efb1547455e 100644 --- a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-monit.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-monit.LICENSE @@ -1,3 +1,16 @@ +--- +key: openssl-exception-agpl-3.0-monit +short_name: OpenSSL exception to AGPL 3.0 - Monit style +name: OpenSSL exception to AGPL 3.0 - Monit style +category: Copyleft +owner: Tildeslash +notes: Similar to openssl-exception-agpl-3.0 but cannot be removed. +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-agpl3.0monit +other_spdx_license_keys: + - LicenseRef-scancode-openssl-exception-agpl-3.0-monit +--- + * In addition, as a special exception, the copyright holders give * permission to link the code of portions of this program with the * OpenSSL library under certain conditions as described in each diff --git a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-monit.yml b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-monit.yml deleted file mode 100644 index a7cce9251fe..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-monit.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: openssl-exception-agpl-3.0-monit -short_name: OpenSSL exception to AGPL 3.0 - Monit style -name: OpenSSL exception to AGPL 3.0 - Monit style -category: Copyleft -owner: Tildeslash -notes: Similar to openssl-exception-agpl-3.0 but cannot be removed. -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-agpl3.0monit -other_spdx_license_keys: - - LicenseRef-scancode-openssl-exception-agpl-3.0-monit diff --git a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-plus.LICENSE b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-plus.LICENSE index bc40f803558..913f80d8790 100644 --- a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-plus.LICENSE @@ -1,3 +1,15 @@ +--- +key: openssl-exception-agpl-3.0-plus +short_name: OpenSSL exception to AGPL 3.0 or later +name: OpenSSL exception to AGPL 3.0 or later +category: Copyleft +owner: Unspecified +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-agpl3.0plus +other_spdx_license_keys: + - LicenseRef-scancode-openssl-exception-agpl-3.0-plus +--- + In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each @@ -10,4 +22,4 @@ above. If you modify file(s) with this exception, you may extend this exception to your version of the file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source files in the -program, then also delete it here. +program, then also delete it here. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-plus.yml b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-plus.yml deleted file mode 100644 index 8907cb6d0e5..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0-plus.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: openssl-exception-agpl-3.0-plus -short_name: OpenSSL exception to AGPL 3.0 or later -name: OpenSSL exception to AGPL 3.0 or later -category: Copyleft -owner: Unspecified -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-agpl3.0plus -other_spdx_license_keys: - - LicenseRef-scancode-openssl-exception-agpl-3.0-plus diff --git a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0.LICENSE b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0.LICENSE index d26283deb06..8bfc7903958 100644 --- a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0.LICENSE @@ -1,3 +1,43 @@ +--- +key: openssl-exception-agpl-3.0 +short_name: OpenSSL exception to AGPL 3.0 +name: OpenSSL exception to AGPL 3.0 +category: Copyleft +owner: MongoDB +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-agpl-3.0 +standard_notice: | + 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. + As a special exception, the copyright holders give permission to link the + code of portions of this program with the OpenSSL library under certain + conditions as described in each individual source file and distribute + linked combinations including the program with the OpenSSL library. You + must comply with the GNU Affero General Public License in all respects for + all of the code used other than as permitted herein. If you modify file(s) + with this exception, you may extend this exception to your version of the + file(s), but you are not obligated to do so. If you do not wish to do so, + delete this exception statement from your version. If you delete this + exception statement from all source files in the program, then also delete + it in the license file. +--- + As a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each individual source file and distribute diff --git a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0.yml b/src/licensedcode/data/licenses/openssl-exception-agpl-3.0.yml deleted file mode 100644 index afe5b594231..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-agpl-3.0.yml +++ /dev/null @@ -1,37 +0,0 @@ -key: openssl-exception-agpl-3.0 -short_name: OpenSSL exception to AGPL 3.0 -name: OpenSSL exception to AGPL 3.0 -category: Copyleft -owner: MongoDB -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-agpl-3.0 -standard_notice: | - 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. - As a special exception, the copyright holders give permission to link the - code of portions of this program with the OpenSSL library under certain - conditions as described in each individual source file and distribute - linked combinations including the program with the OpenSSL library. You - must comply with the GNU Affero General Public License in all respects for - all of the code used other than as permitted herein. If you modify file(s) - with this exception, you may extend this exception to your version of the - file(s), but you are not obligated to do so. If you do not wish to do so, - delete this exception statement from your version. If you delete this - exception statement from all source files in the program, then also delete - it in the license file. diff --git a/src/licensedcode/data/licenses/openssl-exception-gpl-2.0-plus.LICENSE b/src/licensedcode/data/licenses/openssl-exception-gpl-2.0-plus.LICENSE index 25209d5608c..be58274ec3f 100644 --- a/src/licensedcode/data/licenses/openssl-exception-gpl-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-gpl-2.0-plus.LICENSE @@ -1,3 +1,34 @@ +--- +key: openssl-exception-gpl-2.0-plus +short_name: OpenSSL exception to GPL 2.0 or later +name: OpenSSL exception to GPL 2.0 or later +category: Copyleft +owner: magnumripper +homepage_url: https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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. + As a special exception to the GNU General Public License terms, + permission is hereby granted to link the code of this program, with or + without modification, with any version of the OpenSSL library and/or any + version of unRAR, and to distribute such linked combinations. You must + obey the GNU GPL in all respects for all of the code used other than + OpenSSL and unRAR. If you modify this program, you may extend this + exception to your version of the program, but you are not obligated to + do so. (In other words, you may release your derived work under pure + GNU GPL version 2 or later as published by the FSF.) +--- + As a special exception to the GNU General Public License terms, permission is hereby granted to link the code of this program, with or without modification, with any version of the OpenSSL library and/or any diff --git a/src/licensedcode/data/licenses/openssl-exception-gpl-2.0-plus.yml b/src/licensedcode/data/licenses/openssl-exception-gpl-2.0-plus.yml deleted file mode 100644 index 27ca1aeefc2..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-gpl-2.0-plus.yml +++ /dev/null @@ -1,28 +0,0 @@ -key: openssl-exception-gpl-2.0-plus -short_name: OpenSSL exception to GPL 2.0 or later -name: OpenSSL exception to GPL 2.0 or later -category: Copyleft -owner: magnumripper -homepage_url: https://github.com/magnumripper/JohnTheRipper/blob/1.8.0/doc/LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-2.0-plus -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - 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. - As a special exception to the GNU General Public License terms, - permission is hereby granted to link the code of this program, with or - without modification, with any version of the OpenSSL library and/or any - version of unRAR, and to distribute such linked combinations. You must - obey the GNU GPL in all respects for all of the code used other than - OpenSSL and unRAR. If you modify this program, you may extend this - exception to your version of the program, but you are not obligated to - do so. (In other words, you may release your derived work under pure - GNU GPL version 2 or later as published by the FSF.) diff --git a/src/licensedcode/data/licenses/openssl-exception-gpl-2.0.LICENSE b/src/licensedcode/data/licenses/openssl-exception-gpl-2.0.LICENSE index f87ced8369e..c12aeb8414a 100644 --- a/src/licensedcode/data/licenses/openssl-exception-gpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-gpl-2.0.LICENSE @@ -1,3 +1,45 @@ +--- +key: openssl-exception-gpl-2.0 +short_name: OpenSSL exception to GPL 2.0 +name: OpenSSL exception to GPL 2.0 +category: Copyleft +owner: OpenSSL +homepage_url: http://www.openssl.org/source/license.html +notes: this is typically used with GPL 2.0 but sometimes seen with GPL 3.0 +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-2.0 +text_urls: + - http://www.openssl.org/source/license.html + - http://www.gnu.org/licenses/gpl-2.0.txt +faq_url: http://people.gnome.org/~markmc/openssl-and-the-gpl.html +standard_notice: | + The OpenSSL License is not compatible with the GPL, since it contains the + following two clauses: + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the OpenSSL Project + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + The OpenSSL Exception: + * In addition, as a special exception, the copyright holders give + * permission to link the code of portions of this program with the + * OpenSSL library under certain conditions as described in each + * individual source file, and distribute linked combinations + * including the two. + * You must obey the GNU General Public License in all respects + * for all of the code used other than OpenSSL. If you modify + * file(s) with this exception, you may extend this exception to your + * version of the file(s), but you are not obligated to do so. If you + * do not wish to do so, delete this exception statement from your + * version. If you delete this exception statement from all source + * files in the program, then also delete it here. + The OpenSSL Exception Discussion: + http://people.gnome.org/~markmc/openssl-and-the-gpl.html +--- + The OpenSSL Exception: In addition, as a special exception, the copyright holders give diff --git a/src/licensedcode/data/licenses/openssl-exception-gpl-2.0.yml b/src/licensedcode/data/licenses/openssl-exception-gpl-2.0.yml deleted file mode 100644 index 172ac3d6934..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-gpl-2.0.yml +++ /dev/null @@ -1,39 +0,0 @@ -key: openssl-exception-gpl-2.0 -short_name: OpenSSL exception to GPL 2.0 -name: OpenSSL exception to GPL 2.0 -category: Copyleft -owner: OpenSSL -homepage_url: http://www.openssl.org/source/license.html -notes: this is typically used with GPL 2.0 but sometimes seen with GPL 3.0 -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-2.0 -text_urls: - - http://www.openssl.org/source/license.html - - http://www.gnu.org/licenses/gpl-2.0.txt -faq_url: http://people.gnome.org/~markmc/openssl-and-the-gpl.html -standard_notice: | - The OpenSSL License is not compatible with the GPL, since it contains the - following two clauses: - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - The OpenSSL Exception: - * In addition, as a special exception, the copyright holders give - * permission to link the code of portions of this program with the - * OpenSSL library under certain conditions as described in each - * individual source file, and distribute linked combinations - * including the two. - * You must obey the GNU General Public License in all respects - * for all of the code used other than OpenSSL. If you modify - * file(s) with this exception, you may extend this exception to your - * version of the file(s), but you are not obligated to do so. If you - * do not wish to do so, delete this exception statement from your - * version. If you delete this exception statement from all source - * files in the program, then also delete it here. - The OpenSSL Exception Discussion: - http://people.gnome.org/~markmc/openssl-and-the-gpl.html diff --git a/src/licensedcode/data/licenses/openssl-exception-gpl-3.0-plus.LICENSE b/src/licensedcode/data/licenses/openssl-exception-gpl-3.0-plus.LICENSE index 957301011a6..4f558ee727e 100644 --- a/src/licensedcode/data/licenses/openssl-exception-gpl-3.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-gpl-3.0-plus.LICENSE @@ -1,3 +1,38 @@ +--- +key: openssl-exception-gpl-3.0-plus +short_name: OpenSSL exception to GPL 3.0 or later +name: OpenSSL exception to GPL 3.0 or later +category: Copyleft +owner: Tildeslash +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-3.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + 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 . + In addition, as a special exception, the copyright holders give permission + to link the code of portions of this program with the + OpenSSL library under certain conditions as described in each individual + source file, and distribute linked combinations + including the two. + You must obey the GNU General Public License in all respects for all of the + code used other than OpenSSL. If you modify + file(s) with this exception, you may extend this exception to your version + of the file(s), but you are not obligated to do so. If you + do not wish to do so, delete this exception statement from your version. If + you delete this exception statement from all source + files in the program, then also delete it here. +--- + In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each individual source file, and distribute linked diff --git a/src/licensedcode/data/licenses/openssl-exception-gpl-3.0-plus.yml b/src/licensedcode/data/licenses/openssl-exception-gpl-3.0-plus.yml deleted file mode 100644 index 7b23a08fd81..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-gpl-3.0-plus.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: openssl-exception-gpl-3.0-plus -short_name: OpenSSL exception to GPL 3.0 or later -name: OpenSSL exception to GPL 3.0 or later -category: Copyleft -owner: Tildeslash -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-gpl-3.0-plus -other_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt -standard_notice: | - 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 . - In addition, as a special exception, the copyright holders give permission - to link the code of portions of this program with the - OpenSSL library under certain conditions as described in each individual - source file, and distribute linked combinations - including the two. - You must obey the GNU General Public License in all respects for all of the - code used other than OpenSSL. If you modify - file(s) with this exception, you may extend this exception to your version - of the file(s), but you are not obligated to do so. If you - do not wish to do so, delete this exception statement from your version. If - you delete this exception statement from all source - files in the program, then also delete it here. diff --git a/src/licensedcode/data/licenses/openssl-exception-lgpl-2.0-plus.LICENSE b/src/licensedcode/data/licenses/openssl-exception-lgpl-2.0-plus.LICENSE index c9fd96b30f1..5e36376647b 100644 --- a/src/licensedcode/data/licenses/openssl-exception-lgpl-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-lgpl-2.0-plus.LICENSE @@ -1,3 +1,29 @@ +--- +key: openssl-exception-lgpl-2.0-plus +short_name: OpenSSL exception to LGPL 2.0 or later +name: OpenSSL exception to LGPL 2.0 or later +category: Copyleft Limited +owner: GTK+ Team +homepage_url: https://github.com/GNOME/glib-networking/blob/2.57.2/LICENSE_EXCEPTION +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl2.0plus +other_spdx_license_keys: + - LicenseRef-scancode-openssl-exception-lgpl-2.0-plus +standard_notice: | + LICENSE EXCEPTION FOR OPENSSL + * In addition, as a special exception, the copyright holders give + * permission to link the code of portions of this program with the + * OpenSSL library, and distribute linked combinations + * including the two. + * You must obey the GNU Library General Public License in all respects + * for all of the code used other than OpenSSL. If you modify + * file(s) with this exception, you may extend this exception to your + * version of the file(s), but you are not obligated to do so. If you + * do not wish to do so, delete this exception statement from your + * version. If you delete this exception statement from all source + * files in the program, then also delete it here. +--- + LICENSE EXCEPTION FOR OPENSSL In addition, as a special exception, the copyright holders give diff --git a/src/licensedcode/data/licenses/openssl-exception-lgpl-2.0-plus.yml b/src/licensedcode/data/licenses/openssl-exception-lgpl-2.0-plus.yml deleted file mode 100644 index bd787591343..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-lgpl-2.0-plus.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: openssl-exception-lgpl-2.0-plus -short_name: OpenSSL exception to LGPL 2.0 or later -name: OpenSSL exception to LGPL 2.0 or later -category: Copyleft Limited -owner: GTK+ Team -homepage_url: https://github.com/GNOME/glib-networking/blob/2.57.2/LICENSE_EXCEPTION -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl2.0plus -other_spdx_license_keys: - - LicenseRef-scancode-openssl-exception-lgpl-2.0-plus -standard_notice: | - LICENSE EXCEPTION FOR OPENSSL - * In addition, as a special exception, the copyright holders give - * permission to link the code of portions of this program with the - * OpenSSL library, and distribute linked combinations - * including the two. - * You must obey the GNU Library General Public License in all respects - * for all of the code used other than OpenSSL. If you modify - * file(s) with this exception, you may extend this exception to your - * version of the file(s), but you are not obligated to do so. If you - * do not wish to do so, delete this exception statement from your - * version. If you delete this exception statement from all source - * files in the program, then also delete it here. diff --git a/src/licensedcode/data/licenses/openssl-exception-lgpl-3.0-plus.LICENSE b/src/licensedcode/data/licenses/openssl-exception-lgpl-3.0-plus.LICENSE index 7efdb2692a7..5deb3831cc9 100644 --- a/src/licensedcode/data/licenses/openssl-exception-lgpl-3.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-lgpl-3.0-plus.LICENSE @@ -1,3 +1,41 @@ +--- +key: openssl-exception-lgpl-3.0-plus +short_name: OpenSSL exception to LGPL 3.0 or later +name: OpenSSL exception to LGPL 3.0 or later +category: Copyleft Limited +owner: psycopg +homepage_url: http://initd.org/psycopg/license/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl3.0plus +other_spdx_license_keys: + - LicenseRef-scancode-openssl-exception-lgpl-3.0-plus +other_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +standard_notice: | + 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 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 Lesser General Public License for + more details. + + In addition, as a special exception, the copyright holders give permission + to link this program with the OpenSSL library (or with modified versions of + OpenSSL that use the same license as OpenSSL), and distribute linked + combinations including the two. + You must obey the GNU Lesser General Public License in all respects for all + of the code used other than OpenSSL. If you modify file(s) with this + exception, you may extend this exception to your version of the file(s), + but you are not obligated to do so. If you do not wish to do so, delete + this exception statement from your version. If you delete this exception + statement from all source files in the program, then also delete it here. + You should have received a copy of the GNU Lesser General Public License + along with this (see the doc directory.) If not, see + http://www.gnu.org/licenses/. +--- + In addition, as a special exception, the copyright holders give permission to link this program with the OpenSSL library (or with modified versions of OpenSSL that use the same license as OpenSSL), and distribute linked combinations diff --git a/src/licensedcode/data/licenses/openssl-exception-lgpl-3.0-plus.yml b/src/licensedcode/data/licenses/openssl-exception-lgpl-3.0-plus.yml deleted file mode 100644 index 8282261cd04..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-lgpl-3.0-plus.yml +++ /dev/null @@ -1,35 +0,0 @@ -key: openssl-exception-lgpl-3.0-plus -short_name: OpenSSL exception to LGPL 3.0 or later -name: OpenSSL exception to LGPL 3.0 or later -category: Copyleft Limited -owner: psycopg -homepage_url: http://initd.org/psycopg/license/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl3.0plus -other_spdx_license_keys: - - LicenseRef-scancode-openssl-exception-lgpl-3.0-plus -other_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt -standard_notice: | - 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 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 Lesser General Public License for - more details. - - In addition, as a special exception, the copyright holders give permission - to link this program with the OpenSSL library (or with modified versions of - OpenSSL that use the same license as OpenSSL), and distribute linked - combinations including the two. - You must obey the GNU Lesser General Public License in all respects for all - of the code used other than OpenSSL. If you modify file(s) with this - exception, you may extend this exception to your version of the file(s), - but you are not obligated to do so. If you do not wish to do so, delete - this exception statement from your version. If you delete this exception - statement from all source files in the program, then also delete it here. - You should have received a copy of the GNU Lesser General Public License - along with this (see the doc directory.) If not, see - http://www.gnu.org/licenses/. diff --git a/src/licensedcode/data/licenses/openssl-exception-lgpl.LICENSE b/src/licensedcode/data/licenses/openssl-exception-lgpl.LICENSE index 68572edb2cd..9955bca2f56 100644 --- a/src/licensedcode/data/licenses/openssl-exception-lgpl.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-lgpl.LICENSE @@ -1,3 +1,14 @@ +--- +key: openssl-exception-lgpl +short_name: OpenSSL exception to LGPL +name: OpenSSL exception to LGPL +category: Copyleft Limited +owner: cryptsetup Project +homepage_url: https://gitlab.com/cryptsetup/cryptsetup/-/blob/master/COPYING.LGPL#L505 +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl +--- + In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each diff --git a/src/licensedcode/data/licenses/openssl-exception-lgpl.yml b/src/licensedcode/data/licenses/openssl-exception-lgpl.yml deleted file mode 100644 index ff7f75911a3..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-lgpl.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: openssl-exception-lgpl -short_name: OpenSSL exception to LGPL -name: OpenSSL exception to LGPL -category: Copyleft Limited -owner: cryptsetup Project -homepage_url: https://gitlab.com/cryptsetup/cryptsetup/-/blob/master/COPYING.LGPL#L505 -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-lgpl diff --git a/src/licensedcode/data/licenses/openssl-exception-mongodb-sspl.LICENSE b/src/licensedcode/data/licenses/openssl-exception-mongodb-sspl.LICENSE index 6e9b66cb3d3..0f75cf57c5f 100644 --- a/src/licensedcode/data/licenses/openssl-exception-mongodb-sspl.LICENSE +++ b/src/licensedcode/data/licenses/openssl-exception-mongodb-sspl.LICENSE @@ -1,3 +1,13 @@ +--- +key: openssl-exception-mongodb-sspl +short_name: OpenSSL exception to SSPL +name: OpenSSL exception to the Server Side Public License +category: Copyleft +owner: MongoDB +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-exception-mongodb-sspl +--- + As a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library under certain conditions as described in each individual source file and distribute diff --git a/src/licensedcode/data/licenses/openssl-exception-mongodb-sspl.yml b/src/licensedcode/data/licenses/openssl-exception-mongodb-sspl.yml deleted file mode 100644 index 6993df1d84b..00000000000 --- a/src/licensedcode/data/licenses/openssl-exception-mongodb-sspl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: openssl-exception-mongodb-sspl -short_name: OpenSSL exception to SSPL -name: OpenSSL exception to the Server Side Public License -category: Copyleft -owner: MongoDB -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-exception-mongodb-sspl diff --git a/src/licensedcode/data/licenses/openssl-nokia-psk-contribution.LICENSE b/src/licensedcode/data/licenses/openssl-nokia-psk-contribution.LICENSE index 90368119136..2a4a555f005 100644 --- a/src/licensedcode/data/licenses/openssl-nokia-psk-contribution.LICENSE +++ b/src/licensedcode/data/licenses/openssl-nokia-psk-contribution.LICENSE @@ -1,3 +1,16 @@ +--- +key: openssl-nokia-psk-contribution +short_name: Patent Disclaimer for OpenSSL +name: Patent Disclaimer for OpenSSL +category: Patent License +owner: Nokia +is_exception: yes +spdx_license_key: LicenseRef-scancode-openssl-nokia-psk-contribution +ignorable_authors: + - Mika Kousa and Pasi Eronen of Nokia Corporation + - Nokia Corporation +--- + The portions of the attached software ("Contribution") is developed by Nokia Corporation and is licensed pursuant to the OpenSSL open source license. @@ -19,4 +32,4 @@ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR -OTHERWISE. +OTHERWISE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/openssl-nokia-psk-contribution.yml b/src/licensedcode/data/licenses/openssl-nokia-psk-contribution.yml deleted file mode 100644 index 5e2fa2917fe..00000000000 --- a/src/licensedcode/data/licenses/openssl-nokia-psk-contribution.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: openssl-nokia-psk-contribution -short_name: Patent Disclaimer for OpenSSL -name: Patent Disclaimer for OpenSSL -category: Patent License -owner: Nokia -is_exception: yes -spdx_license_key: LicenseRef-scancode-openssl-nokia-psk-contribution -ignorable_authors: - - Mika Kousa and Pasi Eronen of Nokia Corporation - - Nokia Corporation diff --git a/src/licensedcode/data/licenses/openssl-ssleay.LICENSE b/src/licensedcode/data/licenses/openssl-ssleay.LICENSE index a5f72b37ebf..1284f363b11 100644 --- a/src/licensedcode/data/licenses/openssl-ssleay.LICENSE +++ b/src/licensedcode/data/licenses/openssl-ssleay.LICENSE @@ -1,3 +1,38 @@ +--- +key: openssl-ssleay +short_name: OpenSSL/SSLeay License +name: OpenSSL/SSLeay License +category: Permissive +owner: OpenSSL +homepage_url: http://www.openssl.org/source/license.html +notes: | + Per SPDX.org, the OpenSSL toolkit stays under a dual license, i.e. both the + conditions of the OpenSSL License and the original SSLeay license apply to + the toolkit. +spdx_license_key: OpenSSL +text_urls: + - http://www.openssl.org/source/license.html + - https://www.openssl.org/source/license-openssl-ssleay.txt +faq_url: http://www.openssl.org/support/faq.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== diff --git a/src/licensedcode/data/licenses/openssl-ssleay.yml b/src/licensedcode/data/licenses/openssl-ssleay.yml deleted file mode 100644 index c00240c92a6..00000000000 --- a/src/licensedcode/data/licenses/openssl-ssleay.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: openssl-ssleay -short_name: OpenSSL/SSLeay License -name: OpenSSL/SSLeay License -category: Permissive -owner: OpenSSL -homepage_url: http://www.openssl.org/source/license.html -notes: | - Per SPDX.org, the OpenSSL toolkit stays under a dual license, i.e. both the - conditions of the OpenSSL License and the original SSLeay license apply to - the toolkit. -spdx_license_key: OpenSSL -text_urls: - - http://www.openssl.org/source/license.html - - https://www.openssl.org/source/license-openssl-ssleay.txt -faq_url: http://www.openssl.org/support/faq.html -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/licenses/openssl.LICENSE b/src/licensedcode/data/licenses/openssl.LICENSE index bcb7f1dedb6..08f9aaa132e 100644 --- a/src/licensedcode/data/licenses/openssl.LICENSE +++ b/src/licensedcode/data/licenses/openssl.LICENSE @@ -1,3 +1,27 @@ +--- +key: openssl +short_name: OpenSSL License +name: OpenSSL License +category: Permissive +owner: OpenSSL +homepage_url: http://openssl.org/source/license.html +notes: | + This is the OpenSSL license proper, without the SSLEay part. The SPDX + OpenSSL identifier does not apply here. Instead it matches the openssl- + ssleay license. +spdx_license_key: LicenseRef-scancode-openssl +faq_url: http://www.openssl.org/support/faq.html +other_urls: + - http://www.openssl.org/source/license.html +minimum_coverage: 70 +ignorable_authors: + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - licensing@OpenSSL.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -40,4 +64,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/openssl.yml b/src/licensedcode/data/licenses/openssl.yml deleted file mode 100644 index 6c890354f31..00000000000 --- a/src/licensedcode/data/licenses/openssl.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: openssl -short_name: OpenSSL License -name: OpenSSL License -category: Permissive -owner: OpenSSL -homepage_url: http://openssl.org/source/license.html -notes: | - This is the OpenSSL license proper, without the SSLEay part. The SPDX - OpenSSL identifier does not apply here. Instead it matches the openssl- - ssleay license. -spdx_license_key: LicenseRef-scancode-openssl -faq_url: http://www.openssl.org/support/faq.html -other_urls: - - http://www.openssl.org/source/license.html -minimum_coverage: 70 -ignorable_authors: - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - licensing@OpenSSL.org diff --git a/src/licensedcode/data/licenses/openvpn-as-eula.LICENSE b/src/licensedcode/data/licenses/openvpn-as-eula.LICENSE index 8cdc8efd8e3..61072c94c5c 100644 --- a/src/licensedcode/data/licenses/openvpn-as-eula.LICENSE +++ b/src/licensedcode/data/licenses/openvpn-as-eula.LICENSE @@ -1,3 +1,21 @@ +--- +key: openvpn-as-eula +short_name: OpenVPN-AS EULA +name: OpenVPN Access Server EULA +category: Proprietary Free +owner: OpenVPN +homepage_url: http://openvpn.net/index.php/license.html +spdx_license_key: LicenseRef-scancode-openvpn-as-eula +other_urls: + - http://openvpn.net/index.php/license.html +ignorable_copyrights: + - Copyright (c) 2009-2013 OpenVPN Technologies, Inc. +ignorable_holders: + - OpenVPN Technologies, Inc. +ignorable_urls: + - http://openvpn.net/ +--- + OpenVPN Access Server End User License Agreement (OpenVPN-AS EULA) 1. Copyright Notice: OpenVPN Access Server License; @@ -113,4 +131,4 @@ purchase without notice. In case of price decreases or special promotions, OpenVPN Technologies, Inc. will not retrospectively apply credits or price adjustments toward any licenses that have already been issued. Furthermore, no discounts will be given for license maintenance renewals unless this is -specified in your contract with OpenVPN Technologies, Inc. +specified in your contract with OpenVPN Technologies, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/openvpn-as-eula.yml b/src/licensedcode/data/licenses/openvpn-as-eula.yml deleted file mode 100644 index 6c87e82aa8d..00000000000 --- a/src/licensedcode/data/licenses/openvpn-as-eula.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: openvpn-as-eula -short_name: OpenVPN-AS EULA -name: OpenVPN Access Server EULA -category: Proprietary Free -owner: OpenVPN -homepage_url: http://openvpn.net/index.php/license.html -spdx_license_key: LicenseRef-scancode-openvpn-as-eula -other_urls: - - http://openvpn.net/index.php/license.html -ignorable_copyrights: - - Copyright (c) 2009-2013 OpenVPN Technologies, Inc. -ignorable_holders: - - OpenVPN Technologies, Inc. -ignorable_urls: - - http://openvpn.net/ diff --git a/src/licensedcode/data/licenses/openvpn-openssl-exception.LICENSE b/src/licensedcode/data/licenses/openvpn-openssl-exception.LICENSE index 017ab7b5c21..d38544f0489 100644 --- a/src/licensedcode/data/licenses/openvpn-openssl-exception.LICENSE +++ b/src/licensedcode/data/licenses/openvpn-openssl-exception.LICENSE @@ -1,3 +1,17 @@ +--- +key: openvpn-openssl-exception +short_name: OpenVPN OpenSSL Exception to GPL +name: OpenVPN OpenSSL Exception to GPL +category: Copyleft Limited +owner: OpenVPN +homepage_url: https://spdx.org/licenses/openvpn-openssl-exception.html +is_exception: yes +spdx_license_key: openvpn-openssl-exception +other_urls: + - http://openvpn.net/index.php/license.html + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + Special exception for linking OpenVPN with OpenSSL: In addition, as a special exception, OpenVPN Technologies, Inc. gives permission diff --git a/src/licensedcode/data/licenses/openvpn-openssl-exception.yml b/src/licensedcode/data/licenses/openvpn-openssl-exception.yml deleted file mode 100644 index 2ac23ead716..00000000000 --- a/src/licensedcode/data/licenses/openvpn-openssl-exception.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: openvpn-openssl-exception -short_name: OpenVPN OpenSSL Exception to GPL -name: OpenVPN OpenSSL Exception to GPL -category: Copyleft Limited -owner: OpenVPN -homepage_url: https://spdx.org/licenses/openvpn-openssl-exception.html -is_exception: yes -spdx_license_key: openvpn-openssl-exception -other_urls: - - http://openvpn.net/index.php/license.html - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/licenses/opera-eula-2018.LICENSE b/src/licensedcode/data/licenses/opera-eula-2018.LICENSE index 78918081141..4cb598fadc7 100644 --- a/src/licensedcode/data/licenses/opera-eula-2018.LICENSE +++ b/src/licensedcode/data/licenses/opera-eula-2018.LICENSE @@ -1,3 +1,20 @@ +--- +key: opera-eula-2018 +short_name: Opera EULA 2018 +name: Opera for Computers EULA 2018 +category: Proprietary Free +owner: Opera Software ASA +homepage_url: https://www.opera.com/eula/computers +spdx_license_key: LicenseRef-scancode-opera-eula-2018 +ignorable_urls: + - http://sourcecode.opera.com/ + - https://www.opera.com/eula/computers + - https://www.opera.com/privacy + - https://www.opera.com/terms +ignorable_emails: + - opensource@opera.com +--- + End User License Agreement Opera for Computers Last updated: December 14, 2018 diff --git a/src/licensedcode/data/licenses/opera-eula-2018.yml b/src/licensedcode/data/licenses/opera-eula-2018.yml deleted file mode 100644 index efad60e4cdf..00000000000 --- a/src/licensedcode/data/licenses/opera-eula-2018.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: opera-eula-2018 -short_name: Opera EULA 2018 -name: Opera for Computers EULA 2018 -category: Proprietary Free -owner: Opera Software ASA -homepage_url: https://www.opera.com/eula/computers -spdx_license_key: LicenseRef-scancode-opera-eula-2018 -ignorable_urls: - - http://sourcecode.opera.com/ - - https://www.opera.com/eula/computers - - https://www.opera.com/privacy - - https://www.opera.com/terms -ignorable_emails: - - opensource@opera.com diff --git a/src/licensedcode/data/licenses/opera-eula-eea-2018.LICENSE b/src/licensedcode/data/licenses/opera-eula-eea-2018.LICENSE index ff9423f4322..191461f56ba 100644 --- a/src/licensedcode/data/licenses/opera-eula-eea-2018.LICENSE +++ b/src/licensedcode/data/licenses/opera-eula-eea-2018.LICENSE @@ -1,3 +1,20 @@ +--- +key: opera-eula-eea-2018 +short_name: Opera EULA EEA 2018 +name: Opera EULA for European Economic Area 2018 +category: Proprietary Free +owner: Opera Software ASA +homepage_url: https://www.opera.com/eula/computers/eea +spdx_license_key: LicenseRef-scancode-opera-eula-eea-2018 +ignorable_urls: + - http://sourcecode.opera.com/ + - https://www.opera.com/eula/computers + - https://www.opera.com/privacy + - https://www.opera.com/terms +ignorable_emails: + - opensource@opera.com +--- + End User License Agreement Opera for Computers Last updated: December 14, 2018 diff --git a/src/licensedcode/data/licenses/opera-eula-eea-2018.yml b/src/licensedcode/data/licenses/opera-eula-eea-2018.yml deleted file mode 100644 index c1db54f25a0..00000000000 --- a/src/licensedcode/data/licenses/opera-eula-eea-2018.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: opera-eula-eea-2018 -short_name: Opera EULA EEA 2018 -name: Opera EULA for European Economic Area 2018 -category: Proprietary Free -owner: Opera Software ASA -homepage_url: https://www.opera.com/eula/computers/eea -spdx_license_key: LicenseRef-scancode-opera-eula-eea-2018 -ignorable_urls: - - http://sourcecode.opera.com/ - - https://www.opera.com/eula/computers - - https://www.opera.com/privacy - - https://www.opera.com/terms -ignorable_emails: - - opensource@opera.com diff --git a/src/licensedcode/data/licenses/opera-widget-1.0.LICENSE b/src/licensedcode/data/licenses/opera-widget-1.0.LICENSE index 53c89dc43a5..e9f08fc1762 100644 --- a/src/licensedcode/data/licenses/opera-widget-1.0.LICENSE +++ b/src/licensedcode/data/licenses/opera-widget-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: opera-widget-1.0 +short_name: Opera Widget License 1.0 +name: Opera Widget License v1.0 +category: Proprietary Free +owner: Opera Software ASA +homepage_url: http://dev.opera.com/articles/view/opera-widgets-sdk/ +spdx_license_key: LicenseRef-scancode-opera-widget-1.0 +ignorable_copyrights: + - (c) Copyright 2006 Opera Software ASA. +ignorable_holders: + - Opera Software ASA. +--- + OPERA Widget License Version 1. 0 © Copyright 2006 Opera Software ASA. All rights reserved. diff --git a/src/licensedcode/data/licenses/opera-widget-1.0.yml b/src/licensedcode/data/licenses/opera-widget-1.0.yml deleted file mode 100644 index fd690eae3a6..00000000000 --- a/src/licensedcode/data/licenses/opera-widget-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: opera-widget-1.0 -short_name: Opera Widget License 1.0 -name: Opera Widget License v1.0 -category: Proprietary Free -owner: Opera Software ASA -homepage_url: http://dev.opera.com/articles/view/opera-widgets-sdk/ -spdx_license_key: LicenseRef-scancode-opera-widget-1.0 -ignorable_copyrights: - - (c) Copyright 2006 Opera Software ASA. -ignorable_holders: - - Opera Software ASA. diff --git a/src/licensedcode/data/licenses/opl-1.0.LICENSE b/src/licensedcode/data/licenses/opl-1.0.LICENSE index e5aaa4c118f..419b08937b8 100644 --- a/src/licensedcode/data/licenses/opl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/opl-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: opl-1.0 +short_name: OpenContent License 1.0 +name: OpenContent Public License v1.0 +category: Copyleft Limited +owner: OpenContent +homepage_url: http://opencontent.org/opl.shtml +spdx_license_key: LicenseRef-scancode-opl-1.0 +text_urls: + - http://opencontent.org/opl.shtml +other_urls: + - http://old.koalateam.com/jackaroo/OPL_1_0.TXT +ignorable_urls: + - http://www.opencontent.org/opl.html +--- + OpenContent License (OPL) Version 1.0, July 14. 1998 diff --git a/src/licensedcode/data/licenses/opl-1.0.yml b/src/licensedcode/data/licenses/opl-1.0.yml deleted file mode 100644 index 4c7d784a484..00000000000 --- a/src/licensedcode/data/licenses/opl-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: opl-1.0 -short_name: OpenContent License 1.0 -name: OpenContent Public License v1.0 -category: Copyleft Limited -owner: OpenContent -homepage_url: http://opencontent.org/opl.shtml -spdx_license_key: LicenseRef-scancode-opl-1.0 -text_urls: - - http://opencontent.org/opl.shtml -other_urls: - - http://old.koalateam.com/jackaroo/OPL_1_0.TXT -ignorable_urls: - - http://www.opencontent.org/opl.html diff --git a/src/licensedcode/data/licenses/opml-1.0.LICENSE b/src/licensedcode/data/licenses/opml-1.0.LICENSE index a379d1139f4..5efb6476667 100644 --- a/src/licensedcode/data/licenses/opml-1.0.LICENSE +++ b/src/licensedcode/data/licenses/opml-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: opml-1.0 +short_name: OPML 1.0 +name: OPML Specification License 1.0 +category: Permissive +owner: OPML +homepage_url: http://dev.opml.org/spec1.html +spdx_license_key: LicenseRef-scancode-opml-1.0 +--- + This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and these paragraphs are included on all such copies and derivative works. This document may not be modified in any way, such as by removing the copyright notice or references to UserLand or other organizations. Further, while these copyright restrictions apply to the written OPML specification, no claim of ownership is made by UserLand to the format it describes. Any party may, for commercial or non-commercial purposes, implement this protocol without royalty or license fee to UserLand. The limited permissions granted herein are perpetual and will not be revoked by UserLand or its successors or assigns. diff --git a/src/licensedcode/data/licenses/opml-1.0.yml b/src/licensedcode/data/licenses/opml-1.0.yml deleted file mode 100644 index bc6a4007b12..00000000000 --- a/src/licensedcode/data/licenses/opml-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: opml-1.0 -short_name: OPML 1.0 -name: OPML Specification License 1.0 -category: Permissive -owner: OPML -homepage_url: http://dev.opml.org/spec1.html -spdx_license_key: LicenseRef-scancode-opml-1.0 diff --git a/src/licensedcode/data/licenses/opnl-1.0.LICENSE b/src/licensedcode/data/licenses/opnl-1.0.LICENSE index 3b36d8c30fb..b3b2de3955d 100644 --- a/src/licensedcode/data/licenses/opnl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/opnl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: opnl-1.0 +short_name: OPNL-1.0 +name: Open Innovation License version 1.0 +category: Permissive +owner: Stark Drones Corporation +homepage_url: https://github.com/StarkDrones/OPNL +spdx_license_key: LicenseRef-scancode-opnl-1.0 +other_urls: + - https://github.com/StarkDrones/OPNLv1 +ignorable_copyrights: + - Copyright (c) 2020 Andrew Magdy Kamal + - Copyright (c) 2020 Stark Drones Corporation +ignorable_holders: + - Andrew Magdy Kamal + - Stark Drones Corporation +--- + Released under the Open Innovation License Version 1, 10th November 2020 diff --git a/src/licensedcode/data/licenses/opnl-1.0.yml b/src/licensedcode/data/licenses/opnl-1.0.yml deleted file mode 100644 index 4bd484fe3b5..00000000000 --- a/src/licensedcode/data/licenses/opnl-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: opnl-1.0 -short_name: OPNL-1.0 -name: Open Innovation License version 1.0 -category: Permissive -owner: Stark Drones Corporation -homepage_url: https://github.com/StarkDrones/OPNL -spdx_license_key: LicenseRef-scancode-opnl-1.0 -other_urls: - - https://github.com/StarkDrones/OPNLv1 -ignorable_copyrights: - - Copyright (c) 2020 Andrew Magdy Kamal - - Copyright (c) 2020 Stark Drones Corporation -ignorable_holders: - - Andrew Magdy Kamal - - Stark Drones Corporation diff --git a/src/licensedcode/data/licenses/opnl-2.0.LICENSE b/src/licensedcode/data/licenses/opnl-2.0.LICENSE index 2907108ff24..ff0949adb84 100644 --- a/src/licensedcode/data/licenses/opnl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/opnl-2.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: opnl-2.0 +short_name: OPNL-2.0 +name: Open Innovation License version 2.0 +category: Permissive +owner: Stark Drones Corporation +homepage_url: https://github.com/StarkDrones/OPNL +spdx_license_key: LicenseRef-scancode-opnl-2.0 +other_urls: + - https://github.com/StarkDrones/OPNLv2 +ignorable_copyrights: + - Copyright (c) 2020 Andrew Magdy Kamal + - Copyright (c) 2020 Stark Drones Corporation +ignorable_holders: + - Andrew Magdy Kamal + - Stark Drones Corporation +--- + The Open Innovation License Version 2, 28th December 2020 Copyright © 2020 Stark Drones Corporation diff --git a/src/licensedcode/data/licenses/opnl-2.0.yml b/src/licensedcode/data/licenses/opnl-2.0.yml deleted file mode 100644 index 1d30f30b13f..00000000000 --- a/src/licensedcode/data/licenses/opnl-2.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: opnl-2.0 -short_name: OPNL-2.0 -name: Open Innovation License version 2.0 -category: Permissive -owner: Stark Drones Corporation -homepage_url: https://github.com/StarkDrones/OPNL -spdx_license_key: LicenseRef-scancode-opnl-2.0 -other_urls: - - https://github.com/StarkDrones/OPNLv2 -ignorable_copyrights: - - Copyright (c) 2020 Andrew Magdy Kamal - - Copyright (c) 2020 Stark Drones Corporation -ignorable_holders: - - Andrew Magdy Kamal - - Stark Drones Corporation diff --git a/src/licensedcode/data/licenses/oracle-bcl-javaee.LICENSE b/src/licensedcode/data/licenses/oracle-bcl-javaee.LICENSE index 5642280c348..8951947638b 100644 --- a/src/licensedcode/data/licenses/oracle-bcl-javaee.LICENSE +++ b/src/licensedcode/data/licenses/oracle-bcl-javaee.LICENSE @@ -1,3 +1,16 @@ +--- +key: oracle-bcl-javaee +short_name: Oracle BCL for Java EE Technologies +name: Oracle BCL for Java EE Technologies +category: Proprietary Free +owner: Oracle Corporation +spdx_license_key: LicenseRef-scancode-oracle-bcl-javaee +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/technetwork/java/javaee/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for Java EE Technologies ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/src/licensedcode/data/licenses/oracle-bcl-javaee.yml b/src/licensedcode/data/licenses/oracle-bcl-javaee.yml deleted file mode 100644 index 6fd9bd7429a..00000000000 --- a/src/licensedcode/data/licenses/oracle-bcl-javaee.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: oracle-bcl-javaee -short_name: Oracle BCL for Java EE Technologies -name: Oracle BCL for Java EE Technologies -category: Proprietary Free -owner: Oracle Corporation -spdx_license_key: LicenseRef-scancode-oracle-bcl-javaee -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/technetwork/java/javaee/documentation/index.html - - http://www.oracle.com/us/legal/third-party-trademarks/index.html diff --git a/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.LICENSE b/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.LICENSE index 02326b817c4..104230b25c5 100644 --- a/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.LICENSE +++ b/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.LICENSE @@ -1,3 +1,26 @@ +--- +key: oracle-bcl-javase-javafx-2012 +short_name: Oracle BCL for JavaSE and JavaFX 2012 +name: Oracle BCL for Java SE Platform Products and JavaFX 2012 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html +spdx_license_key: LicenseRef-scancode-oracle-bcl-javase-javafx-2012 +text_urls: + - http://www.oracle.com/technetwork/java/javase/terms/license/index.html +faq_url: http://www.oracle.com/technetwork/java/javase/documentation/index.html +other_urls: + - http://www.oracle.com/technetwork/java/javase/documentation/index.html +ignorable_copyrights: + - Copyright YEAR Oracle America, Inc. +ignorable_holders: + - Oracle America, Inc. +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/technetwork/java/javase/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.yml b/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.yml deleted file mode 100644 index abea7b4ddea..00000000000 --- a/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2012.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: oracle-bcl-javase-javafx-2012 -short_name: Oracle BCL for JavaSE and JavaFX 2012 -name: Oracle BCL for Java SE Platform Products and JavaFX 2012 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html -spdx_license_key: LicenseRef-scancode-oracle-bcl-javase-javafx-2012 -text_urls: - - http://www.oracle.com/technetwork/java/javase/terms/license/index.html -faq_url: http://www.oracle.com/technetwork/java/javase/documentation/index.html -other_urls: - - http://www.oracle.com/technetwork/java/javase/documentation/index.html -ignorable_copyrights: - - Copyright YEAR Oracle America, Inc. -ignorable_holders: - - Oracle America, Inc. -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/technetwork/java/javase/documentation/index.html - - http://www.oracle.com/us/legal/third-party-trademarks/index.html diff --git a/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2013.LICENSE b/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2013.LICENSE index a14faa232ba..b07db9f08f5 100644 --- a/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2013.LICENSE +++ b/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2013.LICENSE @@ -1,3 +1,17 @@ +--- +key: oracle-bcl-javase-javafx-2013 +short_name: Oracle BCL for Java SE and JavaFX 2013 +name: Oracle BCL for Java SE and JavaFX Technologies 2013 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/downloads/java-se-archive-license-1382604.html +spdx_license_key: LicenseRef-scancode-oracle-bcl-javase-javafx-2013 +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/technetwork/java/javase/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for Java SE and JavaFX Technologies ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2013.yml b/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2013.yml deleted file mode 100644 index edd14657a0b..00000000000 --- a/src/licensedcode/data/licenses/oracle-bcl-javase-javafx-2013.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: oracle-bcl-javase-javafx-2013 -short_name: Oracle BCL for Java SE and JavaFX 2013 -name: Oracle BCL for Java SE and JavaFX Technologies 2013 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/java/javase/downloads/java-se-archive-license-1382604.html -spdx_license_key: LicenseRef-scancode-oracle-bcl-javase-javafx-2013 -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/technetwork/java/javase/documentation/index.html - - http://www.oracle.com/us/legal/third-party-trademarks/index.html diff --git a/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2013.LICENSE b/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2013.LICENSE index d77ac8d1f6e..1e50d09581e 100644 --- a/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2013.LICENSE +++ b/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2013.LICENSE @@ -1,3 +1,23 @@ +--- +key: oracle-bcl-javase-platform-javafx-2013 +short_name: Oracle BCL for Java SE and JavaFX 2013 Restricted +name: Oracle BCL for Java SE Platform Products and JavaFX 2013 Restricted +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html +spdx_license_key: LicenseRef-scancode-oracle-bcl-java-platform-2013 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013 +ignorable_copyrights: + - Copyright YEAR Oracle America, Inc. +ignorable_holders: + - Oracle America, Inc. +ignorable_urls: + - http://www.oracle.com/technetwork/java/javase/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html + - http://www.oracle.com/us/products/export +--- + Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2013.yml b/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2013.yml deleted file mode 100644 index a862b8498c4..00000000000 --- a/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2013.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: oracle-bcl-javase-platform-javafx-2013 -short_name: Oracle BCL for Java SE and JavaFX 2013 Restricted -name: Oracle BCL for Java SE Platform Products and JavaFX 2013 Restricted -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html -spdx_license_key: LicenseRef-scancode-oracle-bcl-java-platform-2013 -other_spdx_license_keys: - - LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013 -ignorable_copyrights: - - Copyright YEAR Oracle America, Inc. -ignorable_holders: - - Oracle America, Inc. -ignorable_urls: - - http://www.oracle.com/technetwork/java/javase/documentation/index.html - - http://www.oracle.com/us/legal/third-party-trademarks/index.html - - http://www.oracle.com/us/products/export diff --git a/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2017.LICENSE b/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2017.LICENSE index 94a76f2c22b..02be78bab61 100644 --- a/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2017.LICENSE +++ b/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2017.LICENSE @@ -1,3 +1,26 @@ +--- +key: oracle-bcl-javase-platform-javafx-2017 +short_name: Oracle BCL for Java SE and JavaFX 2017 Restricted +name: Oracle BCL for Java SE Platform Products and JavaFX 2017 Restricted +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html +spdx_license_key: LicenseRef-scancode-oracle-bcl-java-platform-2017 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017 +faq_url: https://www.oracle.com/technetwork/java/javase/documentation/index.html +other_urls: + - https://www.oracle.com/technetwork/java/javase/terms/products/index.html +ignorable_copyrights: + - Copyright YEAR Oracle America, Inc. +ignorable_holders: + - Oracle America, Inc. +ignorable_urls: + - http://www.oracle.com/technetwork/java/javase/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html + - http://www.oracle.com/us/products/export +--- + Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. diff --git a/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2017.yml b/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2017.yml deleted file mode 100644 index a3c1b7684fc..00000000000 --- a/src/licensedcode/data/licenses/oracle-bcl-javase-platform-javafx-2017.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: oracle-bcl-javase-platform-javafx-2017 -short_name: Oracle BCL for Java SE and JavaFX 2017 Restricted -name: Oracle BCL for Java SE Platform Products and JavaFX 2017 Restricted -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/java/javase/terms/license/index.html -spdx_license_key: LicenseRef-scancode-oracle-bcl-java-platform-2017 -other_spdx_license_keys: - - LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017 -faq_url: https://www.oracle.com/technetwork/java/javase/documentation/index.html -other_urls: - - https://www.oracle.com/technetwork/java/javase/terms/products/index.html -ignorable_copyrights: - - Copyright YEAR Oracle America, Inc. -ignorable_holders: - - Oracle America, Inc. -ignorable_urls: - - http://www.oracle.com/technetwork/java/javase/documentation/index.html - - http://www.oracle.com/us/legal/third-party-trademarks/index.html - - http://www.oracle.com/us/products/export diff --git a/src/licensedcode/data/licenses/oracle-bcl-jsse-1.0.3.LICENSE b/src/licensedcode/data/licenses/oracle-bcl-jsse-1.0.3.LICENSE index 28853b71f25..61f6c434b5a 100644 --- a/src/licensedcode/data/licenses/oracle-bcl-jsse-1.0.3.LICENSE +++ b/src/licensedcode/data/licenses/oracle-bcl-jsse-1.0.3.LICENSE @@ -1,3 +1,16 @@ +--- +key: oracle-bcl-jsse-1.0.3 +short_name: Oracle BCL for JSSE 1.0.3 for CDC 1.0.2 +name: Oracle BCL for JSSE 1.0.3 for CDC 1.0.2 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://download.oracle.com/otn-pub/java/licenses/OTN_JSSE_Legacy_Binary-Code-License_9Mar2012.pdf +spdx_license_key: LicenseRef-scancode-oracle-bcl-jsse-1.0.3 +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for Java Secure Sockets Extension 1.0.3 for Connected Device Configuration 1.0.2 diff --git a/src/licensedcode/data/licenses/oracle-bcl-jsse-1.0.3.yml b/src/licensedcode/data/licenses/oracle-bcl-jsse-1.0.3.yml deleted file mode 100644 index a9e55998aac..00000000000 --- a/src/licensedcode/data/licenses/oracle-bcl-jsse-1.0.3.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: oracle-bcl-jsse-1.0.3 -short_name: Oracle BCL for JSSE 1.0.3 for CDC 1.0.2 -name: Oracle BCL for JSSE 1.0.3 for CDC 1.0.2 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://download.oracle.com/otn-pub/java/licenses/OTN_JSSE_Legacy_Binary-Code-License_9Mar2012.pdf -spdx_license_key: LicenseRef-scancode-oracle-bcl-jsse-1.0.3 -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/us/legal/third-party-trademarks/index.html diff --git a/src/licensedcode/data/licenses/oracle-bsd-no-nuclear.LICENSE b/src/licensedcode/data/licenses/oracle-bsd-no-nuclear.LICENSE index 256acd4f60a..312d102e7ee 100644 --- a/src/licensedcode/data/licenses/oracle-bsd-no-nuclear.LICENSE +++ b/src/licensedcode/data/licenses/oracle-bsd-no-nuclear.LICENSE @@ -1,3 +1,17 @@ +--- +key: oracle-bsd-no-nuclear +short_name: Oracle BSD-Style with Nuclear Restrictions +name: Oracle BSD-Style with Nuclear Restrictions +category: Free Restricted +owner: Oracle Corporation +homepage_url: https://java.net/projects/javaeetutorial/pages/BerkeleyLicense +notes: this is a minor variation on similar licenses by Sun and Oracle. +spdx_license_key: BSD-3-Clause-No-Nuclear-License-2014 +other_urls: + - https://web.archive.org/web/20150906075957/https://java.net/projects/javaeetutorial/pages/BerkeleyLicense +minimum_coverage: 88 +--- + Use is subject to license terms. Redistribution and use in source and binary forms, with or without modification, diff --git a/src/licensedcode/data/licenses/oracle-bsd-no-nuclear.yml b/src/licensedcode/data/licenses/oracle-bsd-no-nuclear.yml deleted file mode 100644 index 0fd67c8ae43..00000000000 --- a/src/licensedcode/data/licenses/oracle-bsd-no-nuclear.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: oracle-bsd-no-nuclear -short_name: Oracle BSD-Style with Nuclear Restrictions -name: Oracle BSD-Style with Nuclear Restrictions -category: Free Restricted -owner: Oracle Corporation -homepage_url: https://java.net/projects/javaeetutorial/pages/BerkeleyLicense -notes: this is a minor variation on similar licenses by Sun and Oracle. -spdx_license_key: BSD-3-Clause-No-Nuclear-License-2014 -other_urls: - - https://web.archive.org/web/20150906075957/https://java.net/projects/javaeetutorial/pages/BerkeleyLicense -minimum_coverage: 88 diff --git a/src/licensedcode/data/licenses/oracle-code-samples-bsd.LICENSE b/src/licensedcode/data/licenses/oracle-code-samples-bsd.LICENSE index 4caa8502c4c..e98941c65aa 100644 --- a/src/licensedcode/data/licenses/oracle-code-samples-bsd.LICENSE +++ b/src/licensedcode/data/licenses/oracle-code-samples-bsd.LICENSE @@ -1,3 +1,12 @@ +--- +key: oracle-code-samples-bsd +short_name: Oracle Code Samples BSD-Style License +name: Oracle Code Samples BSD-Style License +category: Free Restricted +owner: Oracle Corporation +spdx_license_key: LicenseRef-scancode-oracle-code-samples-bsd +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -28,4 +37,4 @@ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. You acknowledge that this software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any -nuclear facility. +nuclear facility. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/oracle-code-samples-bsd.yml b/src/licensedcode/data/licenses/oracle-code-samples-bsd.yml deleted file mode 100644 index 214a5bbe702..00000000000 --- a/src/licensedcode/data/licenses/oracle-code-samples-bsd.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: oracle-code-samples-bsd -short_name: Oracle Code Samples BSD-Style License -name: Oracle Code Samples BSD-Style License -category: Free Restricted -owner: Oracle Corporation -spdx_license_key: LicenseRef-scancode-oracle-code-samples-bsd diff --git a/src/licensedcode/data/licenses/oracle-commercial-database-11g2.LICENSE b/src/licensedcode/data/licenses/oracle-commercial-database-11g2.LICENSE index 0222c8c520d..03b42903213 100644 --- a/src/licensedcode/data/licenses/oracle-commercial-database-11g2.LICENSE +++ b/src/licensedcode/data/licenses/oracle-commercial-database-11g2.LICENSE @@ -1 +1,16 @@ +--- +key: oracle-commercial-database-11g2 +short_name: Oracle Commercial Database License 11g2 +name: Oracle Commercial Database License 11g Release 2 (11.2) +category: Commercial +owner: Oracle Corporation +homepage_url: http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm +spdx_license_key: LicenseRef-scancode-oracle-commercial-db-11g2 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-commercial-database-11g2 +faq_url: http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm +ignorable_urls: + - http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm +--- + This Oracle database is subject to commercial licensing terms. Refer to http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm for complete details. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/oracle-commercial-database-11g2.yml b/src/licensedcode/data/licenses/oracle-commercial-database-11g2.yml deleted file mode 100644 index eeb267fd75e..00000000000 --- a/src/licensedcode/data/licenses/oracle-commercial-database-11g2.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: oracle-commercial-database-11g2 -short_name: Oracle Commercial Database License 11g2 -name: Oracle Commercial Database License 11g Release 2 (11.2) -category: Commercial -owner: Oracle Corporation -homepage_url: http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm -spdx_license_key: LicenseRef-scancode-oracle-commercial-db-11g2 -other_spdx_license_keys: - - LicenseRef-scancode-oracle-commercial-database-11g2 -faq_url: http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm -ignorable_urls: - - http://docs.oracle.com/cd/E11882_01/license.112/e47877/toc.htm diff --git a/src/licensedcode/data/licenses/oracle-devtools-vsnet-dev.LICENSE b/src/licensedcode/data/licenses/oracle-devtools-vsnet-dev.LICENSE index ef72641141a..cb7fcc368e7 100644 --- a/src/licensedcode/data/licenses/oracle-devtools-vsnet-dev.LICENSE +++ b/src/licensedcode/data/licenses/oracle-devtools-vsnet-dev.LICENSE @@ -1,3 +1,19 @@ +--- +key: oracle-devtools-vsnet-dev +short_name: Oracle DevTools for Visual Studio .NET Development +name: Oracle Developer Tools for Visual Studio .NET Development License +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/odt-lic-152011.html +spdx_license_key: LicenseRef-scancode-oracle-devtools-vsnet-dev +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html?content.html +--- + Oracle Technology Network Oracle Developer Tools for Visual Studio .NET Development License Terms diff --git a/src/licensedcode/data/licenses/oracle-devtools-vsnet-dev.yml b/src/licensedcode/data/licenses/oracle-devtools-vsnet-dev.yml deleted file mode 100644 index a90865c7dd0..00000000000 --- a/src/licensedcode/data/licenses/oracle-devtools-vsnet-dev.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: oracle-devtools-vsnet-dev -short_name: Oracle DevTools for Visual Studio .NET Development -name: Oracle Developer Tools for Visual Studio .NET Development License -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/licenses/odt-lic-152011.html -spdx_license_key: LicenseRef-scancode-oracle-devtools-vsnet-dev -minimum_coverage: 50 -ignorable_authors: - - the OTN Program -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/products/export/index.html?content.html diff --git a/src/licensedcode/data/licenses/oracle-entitlement-05-15.LICENSE b/src/licensedcode/data/licenses/oracle-entitlement-05-15.LICENSE index bc20d13aba5..c31d2ecb9cb 100644 --- a/src/licensedcode/data/licenses/oracle-entitlement-05-15.LICENSE +++ b/src/licensedcode/data/licenses/oracle-entitlement-05-15.LICENSE @@ -1,3 +1,16 @@ +--- +key: oracle-entitlement-05-15 +short_name: Oracle Entitlement 5 plus 15 +name: Oracle Entitlement 5 plus 15 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-eeplat-419426.html#javamail-1.4.4-oth-JPR +spdx_license_key: LicenseRef-scancode-oracle-entitlement-05-15 +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + Oracle Corporation ("ORACLE") ENTITLEMENT for SOFTWARE Licensee/Company: Entity receiving Software. @@ -334,4 +347,4 @@ of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. For inquiries please contact: Oracle Corporation, 500 Oracle Parkway, -Redwood Shores, California 94065, USA. +Redwood Shores, California 94065, USA. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/oracle-entitlement-05-15.yml b/src/licensedcode/data/licenses/oracle-entitlement-05-15.yml deleted file mode 100644 index ea613f47050..00000000000 --- a/src/licensedcode/data/licenses/oracle-entitlement-05-15.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: oracle-entitlement-05-15 -short_name: Oracle Entitlement 5 plus 15 -name: Oracle Entitlement 5 plus 15 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-eeplat-419426.html#javamail-1.4.4-oth-JPR -spdx_license_key: LicenseRef-scancode-oracle-entitlement-05-15 -ignorable_urls: - - http://www.java.net/ - - http://www.sun.com/service/servicelist diff --git a/src/licensedcode/data/licenses/oracle-java-ee-sdk-2010.LICENSE b/src/licensedcode/data/licenses/oracle-java-ee-sdk-2010.LICENSE index 8c5eb732679..3460f37516c 100644 --- a/src/licensedcode/data/licenses/oracle-java-ee-sdk-2010.LICENSE +++ b/src/licensedcode/data/licenses/oracle-java-ee-sdk-2010.LICENSE @@ -1,3 +1,19 @@ +--- +key: oracle-java-ee-sdk-2010 +short_name: OTN Developer License for JAVA EE SDK +name: OTN Developer License for JAVA EE SDK +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/java/javase/downloads/366879 +spdx_license_key: LicenseRef-scancode-oracle-java-ee-sdk-2010 +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html +--- + Oracle Technology Network Developer License Terms for JAVA EE SDK Export Controls on the Programs Selecting the "Accept License Agreement" button is a confirmation of your agreement that you comply, now and during the trial term, with each of the following statements: diff --git a/src/licensedcode/data/licenses/oracle-java-ee-sdk-2010.yml b/src/licensedcode/data/licenses/oracle-java-ee-sdk-2010.yml deleted file mode 100644 index a3f9741cd1b..00000000000 --- a/src/licensedcode/data/licenses/oracle-java-ee-sdk-2010.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: oracle-java-ee-sdk-2010 -short_name: OTN Developer License for JAVA EE SDK -name: OTN Developer License for JAVA EE SDK -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/java/javase/downloads/366879 -spdx_license_key: LicenseRef-scancode-oracle-java-ee-sdk-2010 -minimum_coverage: 50 -ignorable_authors: - - the OTN Program -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/products/export/index.html diff --git a/src/licensedcode/data/licenses/oracle-master-agreement.LICENSE b/src/licensedcode/data/licenses/oracle-master-agreement.LICENSE index 495bc912ee4..662893e9319 100644 --- a/src/licensedcode/data/licenses/oracle-master-agreement.LICENSE +++ b/src/licensedcode/data/licenses/oracle-master-agreement.LICENSE @@ -1,3 +1,15 @@ +--- +key: oracle-master-agreement +short_name: Oracle Master Agreement (OMA) +name: Oracle Master Agreement (OMA) +category: Commercial +owner: Oracle Corporation +homepage_url: http://www.oracle.com/us/corporate/contracts/oma/index.html +spdx_license_key: LicenseRef-scancode-oracle-master-agreement +ignorable_urls: + - http://www.oracle.com/us/corporate/contracts/oma/index.html +--- + The Oracle Master Agreement (OMA) is the standard agreement that is used to license Oracle programs and acquire related services. See http://www.oracle.com/us/corporate/contracts/oma/index.html diff --git a/src/licensedcode/data/licenses/oracle-master-agreement.yml b/src/licensedcode/data/licenses/oracle-master-agreement.yml deleted file mode 100644 index 031f0f3128a..00000000000 --- a/src/licensedcode/data/licenses/oracle-master-agreement.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: oracle-master-agreement -short_name: Oracle Master Agreement (OMA) -name: Oracle Master Agreement (OMA) -category: Commercial -owner: Oracle Corporation -homepage_url: http://www.oracle.com/us/corporate/contracts/oma/index.html -spdx_license_key: LicenseRef-scancode-oracle-master-agreement -ignorable_urls: - - http://www.oracle.com/us/corporate/contracts/oma/index.html diff --git a/src/licensedcode/data/licenses/oracle-mysql-foss-exception-2.0.LICENSE b/src/licensedcode/data/licenses/oracle-mysql-foss-exception-2.0.LICENSE index 6bd721c5e91..a3e38a6a8e3 100644 --- a/src/licensedcode/data/licenses/oracle-mysql-foss-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/oracle-mysql-foss-exception-2.0.LICENSE @@ -1,3 +1,42 @@ +--- +key: oracle-mysql-foss-exception-2.0 +short_name: Oracle MySQL FOSS exception to GPL 2.0 +name: Oracle MySQL FOSS exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://www.mysql.com/about/legal/licensing/foss-exception.html +notes: dated 2012-02-23 See https://web.archive.org/web/20120322105249/https://www.mysql.com/about/legal/licensing/foss-exception/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-oracle-mysql-foss-exception2.0 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-mysql-foss-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +minimum_coverage: 95 +standard_notice: | + This library 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. + 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + MySQL FOSS License Exception + We want free and open source software applications under certain licenses + to be able to use the GPL-licensed MySQL Connector (specified GPL-licensed + MySQL client libraries) despite the fact that not all such FOSS licenses + are compatible with version 2 of the GNU General Public License. + Therefore there are special exceptions to the terms and conditions of the + GPLv2 as applied to these client libraries, which are identified and + described in more detail in the FOSS License Exception at + + This software is OSI Certified Open Source Software. + OSI Certified is a certification mark of the Open Source Initiative. +--- + Oracle's FOSS License Exception Terms and Conditions 1. Definitions. "Derivative Work" means a derivative work, as defined @@ -112,5 +151,4 @@ FOSS License List ¹) When an Independent Work is licensed under a "Compatible License" pursuant to the EUPL, the Compatible License rather than the EUPL is the applicable license for purposes of these FOSS License Exception Terms and -Conditions. - +Conditions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/oracle-mysql-foss-exception-2.0.yml b/src/licensedcode/data/licenses/oracle-mysql-foss-exception-2.0.yml deleted file mode 100644 index 4ca0eeda7e4..00000000000 --- a/src/licensedcode/data/licenses/oracle-mysql-foss-exception-2.0.yml +++ /dev/null @@ -1,36 +0,0 @@ -key: oracle-mysql-foss-exception-2.0 -short_name: Oracle MySQL FOSS exception to GPL 2.0 -name: Oracle MySQL FOSS exception to GPL 2.0 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: http://www.mysql.com/about/legal/licensing/foss-exception.html -notes: dated 2012-02-23 See https://web.archive.org/web/20120322105249/https://www.mysql.com/about/legal/licensing/foss-exception/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-oracle-mysql-foss-exception2.0 -other_spdx_license_keys: - - LicenseRef-scancode-oracle-mysql-foss-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -minimum_coverage: 95 -standard_notice: | - This library 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. - 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - MySQL FOSS License Exception - We want free and open source software applications under certain licenses - to be able to use the GPL-licensed MySQL Connector (specified GPL-licensed - MySQL client libraries) despite the fact that not all such FOSS licenses - are compatible with version 2 of the GNU General Public License. - Therefore there are special exceptions to the terms and conditions of the - GPLv2 as applied to these client libraries, which are identified and - described in more detail in the FOSS License Exception at - - This software is OSI Certified Open Source Software. - OSI Certified is a certification mark of the Open Source Initiative. diff --git a/src/licensedcode/data/licenses/oracle-nftc-2021.LICENSE b/src/licensedcode/data/licenses/oracle-nftc-2021.LICENSE index 35541b7d934..32e2866ef90 100644 --- a/src/licensedcode/data/licenses/oracle-nftc-2021.LICENSE +++ b/src/licensedcode/data/licenses/oracle-nftc-2021.LICENSE @@ -1,3 +1,26 @@ +--- +key: oracle-nftc-2021 +short_name: Oracle NFTC 2021 +name: Oracle No-Fee Terms and Conditions (NFTC) 2021 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.oracle.com/downloads/licenses/no-fee-license.html +spdx_license_key: LicenseRef-scancode-oracle-nftc-2021 +other_urls: + - https://www.theregister.com/2021/09/16/oracle_jdk_free_license/ +standard_notice: | + Your use of this Program is governed by the No-Fee Terms and Conditions set + forth below, unless you have received this Program (alone or as part of + another Oracle product) under an Oracle license agreement (including but + not limited to the Oracle Master Agreement), in which case your use of this + Program is governed solely by such license agreement with Oracle. +ignorable_urls: + - http://www.oracle.com/documentation + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/privacy + - https://oss.oracle.com/sources/ +--- + Oracle No-Fee Terms and Conditions (NFTC) Definitions diff --git a/src/licensedcode/data/licenses/oracle-nftc-2021.yml b/src/licensedcode/data/licenses/oracle-nftc-2021.yml deleted file mode 100644 index 006ee3d880c..00000000000 --- a/src/licensedcode/data/licenses/oracle-nftc-2021.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: oracle-nftc-2021 -short_name: Oracle NFTC 2021 -name: Oracle No-Fee Terms and Conditions (NFTC) 2021 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://www.oracle.com/downloads/licenses/no-fee-license.html -spdx_license_key: LicenseRef-scancode-oracle-nftc-2021 -other_urls: - - https://www.theregister.com/2021/09/16/oracle_jdk_free_license/ -standard_notice: | - Your use of this Program is governed by the No-Fee Terms and Conditions set - forth below, unless you have received this Program (alone or as part of - another Oracle product) under an Oracle license agreement (including but - not limited to the Oracle Master Agreement), in which case your use of this - Program is governed solely by such license agreement with Oracle. -ignorable_urls: - - http://www.oracle.com/documentation - - http://www.oracle.com/goto/opensourcecode - - http://www.oracle.com/privacy - - https://oss.oracle.com/sources/ diff --git a/src/licensedcode/data/licenses/oracle-openjdk-classpath-exception-2.0.LICENSE b/src/licensedcode/data/licenses/oracle-openjdk-classpath-exception-2.0.LICENSE index ea79af22d82..b69b6cab6f6 100644 --- a/src/licensedcode/data/licenses/oracle-openjdk-classpath-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/oracle-openjdk-classpath-exception-2.0.LICENSE @@ -1,3 +1,54 @@ +--- +key: oracle-openjdk-classpath-exception-2.0 +short_name: Oracle OpenJDK classpath exception to GPL 2.0 +name: Oracle OpenJDK classpath exception to GPL 2.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: http://openjdk.java.net/legal/gplv2+ce.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-oracle-openjdk-exception-2.0 +other_spdx_license_keys: + - LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + "CLASSPATH" EXCEPTION TO THE GPL + Certain source files distributed by Oracle America and/or its affiliates + are + subject to the following clarification and special exception to the GPL, + but + only where Oracle has expressly included in the particular source file's + header + the words "Oracle designates this particular file as subject to the + "Classpath" + exception as provided by Oracle in the LICENSE file that accompanied this + code." + Linking this library statically or dynamically with other modules is making + a combined work based on this library. Thus, the terms and conditions of + the GNU General Public License cover the whole combination. + As a special exception, the copyright holders of this library give you + permission to link this library with independent modules to produce an + executable, regardless of the license terms of these independent modules, + and to copy and distribute the resulting executable under terms of your + choice, provided that you also meet, for each linked independent module, + the terms and conditions of the license of that module. An independent + module is a module which is not derived from or based on this library. If + you modify this library, you may extend this exception to your version of + the library, but you are not obligated to do so. If you do not wish to do + so, delete this exception statement from your version. +--- + "CLASSPATH" EXCEPTION TO THE GPL Certain source files distributed by Oracle America and/or its affiliates are diff --git a/src/licensedcode/data/licenses/oracle-openjdk-classpath-exception-2.0.yml b/src/licensedcode/data/licenses/oracle-openjdk-classpath-exception-2.0.yml deleted file mode 100644 index 20f99f30d2f..00000000000 --- a/src/licensedcode/data/licenses/oracle-openjdk-classpath-exception-2.0.yml +++ /dev/null @@ -1,48 +0,0 @@ -key: oracle-openjdk-classpath-exception-2.0 -short_name: Oracle OpenJDK classpath exception to GPL 2.0 -name: Oracle OpenJDK classpath exception to GPL 2.0 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: http://openjdk.java.net/legal/gplv2+ce.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-oracle-openjdk-exception-2.0 -other_spdx_license_keys: - - LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - "CLASSPATH" EXCEPTION TO THE GPL - Certain source files distributed by Oracle America and/or its affiliates - are - subject to the following clarification and special exception to the GPL, - but - only where Oracle has expressly included in the particular source file's - header - the words "Oracle designates this particular file as subject to the - "Classpath" - exception as provided by Oracle in the LICENSE file that accompanied this - code." - Linking this library statically or dynamically with other modules is making - a combined work based on this library. Thus, the terms and conditions of - the GNU General Public License cover the whole combination. - As a special exception, the copyright holders of this library give you - permission to link this library with independent modules to produce an - executable, regardless of the license terms of these independent modules, - and to copy and distribute the resulting executable under terms of your - choice, provided that you also meet, for each linked independent module, - the terms and conditions of the license of that module. An independent - module is a module which is not derived from or based on this library. If - you modify this library, you may extend this exception to your version of - the library, but you are not obligated to do so. If you do not wish to do - so, delete this exception statement from your version. diff --git a/src/licensedcode/data/licenses/oracle-otn-javase-2019.LICENSE b/src/licensedcode/data/licenses/oracle-otn-javase-2019.LICENSE index 328de16813e..e79d2843f3d 100644 --- a/src/licensedcode/data/licenses/oracle-otn-javase-2019.LICENSE +++ b/src/licensedcode/data/licenses/oracle-otn-javase-2019.LICENSE @@ -1,3 +1,25 @@ +--- +key: oracle-otn-javase-2019 +short_name: OTN for Oracle Java SE 2019 +name: Oracle Technology Network License Agreement for Oracle Java SE +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.oracle.com/downloads/licenses/oracle-javase-license.html +spdx_license_key: LicenseRef-scancode-oracle-otn-javase-2019 +faq_url: https://www.oracle.com/technetwork/java/javase/overview/oracle-jdk-faqs.html +other_urls: + - https://www.oracle.com/technetwork/java/javase/terms/oaa.html + - https://www.oracle.com/downloads/licenses/javase-license1.html +ignorable_urls: + - http://oracle.com/contracts + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/privacy + - https://docs.oracle.com/en/java + - https://java.com/oaa + - https://oss.oracle.com/sources/ + - https://www.oracle.com/technetwork/java/javase/documentation/ +--- + Oracle Technology Network License Agreement for Oracle Java SE Oracle is willing to authorize Your access to software associated with this License Agreement (“Agreement”) only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the "Accept License Agreement" button or box (or the equivalent) or installing or using the Programs, You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the “Accept License Agreement” button or box (or the equivalent) and do not download or access the software. diff --git a/src/licensedcode/data/licenses/oracle-otn-javase-2019.yml b/src/licensedcode/data/licenses/oracle-otn-javase-2019.yml deleted file mode 100644 index 631db63e1f3..00000000000 --- a/src/licensedcode/data/licenses/oracle-otn-javase-2019.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: oracle-otn-javase-2019 -short_name: OTN for Oracle Java SE 2019 -name: Oracle Technology Network License Agreement for Oracle Java SE -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://www.oracle.com/downloads/licenses/oracle-javase-license.html -spdx_license_key: LicenseRef-scancode-oracle-otn-javase-2019 -faq_url: https://www.oracle.com/technetwork/java/javase/overview/oracle-jdk-faqs.html -other_urls: - - https://www.oracle.com/technetwork/java/javase/terms/oaa.html - - https://www.oracle.com/downloads/licenses/javase-license1.html -ignorable_urls: - - http://oracle.com/contracts - - http://www.oracle.com/goto/opensourcecode - - http://www.oracle.com/privacy - - https://docs.oracle.com/en/java - - https://java.com/oaa - - https://oss.oracle.com/sources/ - - https://www.oracle.com/technetwork/java/javase/documentation/ diff --git a/src/licensedcode/data/licenses/oracle-sql-developer.LICENSE b/src/licensedcode/data/licenses/oracle-sql-developer.LICENSE index 0e90fe651a4..1a3ddec7ead 100644 --- a/src/licensedcode/data/licenses/oracle-sql-developer.LICENSE +++ b/src/licensedcode/data/licenses/oracle-sql-developer.LICENSE @@ -1,3 +1,20 @@ +--- +key: oracle-sql-developer +short_name: Oracle SQL Developer License Terms +name: Oracle SQL Developer License Terms +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/sqldev-license-152021.html +spdx_license_key: LicenseRef-scancode-oracle-sql-developer +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html?content.html + - http://www.oracle.com/technetwork/indexes/documentation/index.html +--- + Oracle SQL Developer License Terms Oracle SQL Developer Data Modeler License Terms diff --git a/src/licensedcode/data/licenses/oracle-sql-developer.yml b/src/licensedcode/data/licenses/oracle-sql-developer.yml deleted file mode 100644 index eebe0dfaea7..00000000000 --- a/src/licensedcode/data/licenses/oracle-sql-developer.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: oracle-sql-developer -short_name: Oracle SQL Developer License Terms -name: Oracle SQL Developer License Terms -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/licenses/sqldev-license-152021.html -spdx_license_key: LicenseRef-scancode-oracle-sql-developer -minimum_coverage: 50 -ignorable_authors: - - the OTN Program -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/products/export/index.html?content.html - - http://www.oracle.com/technetwork/indexes/documentation/index.html diff --git a/src/licensedcode/data/licenses/oracle-web-sites-tou.LICENSE b/src/licensedcode/data/licenses/oracle-web-sites-tou.LICENSE index b8927fc889c..1dc775e99e6 100644 --- a/src/licensedcode/data/licenses/oracle-web-sites-tou.LICENSE +++ b/src/licensedcode/data/licenses/oracle-web-sites-tou.LICENSE @@ -1,3 +1,24 @@ +--- +key: oracle-web-sites-tou +short_name: Oracle Web Sites TOU +name: Oracle Web Sites Terms of Use +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/html/terms.html +spdx_license_key: LicenseRef-scancode-oracle-web-sites-tou +text_urls: + - http://www.oracle.com/html/terms.html +ignorable_copyrights: + - Copyright (c) 1995, 2010, Oracle and/or its affiliates +ignorable_holders: + - Oracle and/or its affiliates +ignorable_urls: + - http://www.oracle.com/html/privacy.html + - http://www.oracle.com/html/terms.html +ignorable_emails: + - trademar_us@oracle.com +--- + Oracle Web Sites Terms of Use http://www.oracle.com/html/terms.html diff --git a/src/licensedcode/data/licenses/oracle-web-sites-tou.yml b/src/licensedcode/data/licenses/oracle-web-sites-tou.yml deleted file mode 100644 index 29765efa1ea..00000000000 --- a/src/licensedcode/data/licenses/oracle-web-sites-tou.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: oracle-web-sites-tou -short_name: Oracle Web Sites TOU -name: Oracle Web Sites Terms of Use -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/html/terms.html -spdx_license_key: LicenseRef-scancode-oracle-web-sites-tou -text_urls: - - http://www.oracle.com/html/terms.html -ignorable_copyrights: - - Copyright (c) 1995, 2010, Oracle and/or its affiliates -ignorable_holders: - - Oracle and/or its affiliates -ignorable_urls: - - http://www.oracle.com/html/privacy.html - - http://www.oracle.com/html/terms.html -ignorable_emails: - - trademar_us@oracle.com diff --git a/src/licensedcode/data/licenses/oreilly-notice.LICENSE b/src/licensedcode/data/licenses/oreilly-notice.LICENSE index 94c237dda58..1fdca469dbb 100644 --- a/src/licensedcode/data/licenses/oreilly-notice.LICENSE +++ b/src/licensedcode/data/licenses/oreilly-notice.LICENSE @@ -1,3 +1,15 @@ +--- +key: oreilly-notice +short_name: O'Reilly Code Sample Notice +name: O'Reilly Code Sample Notice +category: Permissive +owner: O'Reilly Media, Inc. +homepage_url: http://shop.oreilly.com/category/customer-service/faq-examples.do +spdx_license_key: LicenseRef-scancode-oreilly-notice +ignorable_emails: + - permissions@oreilly.com +--- + Our books are here to help you get your job done. In general, you may use the code in our books in your programs and documentation. You do not need to contact us for permission unless you're reproducing a significant portion of the code. diff --git a/src/licensedcode/data/licenses/oreilly-notice.yml b/src/licensedcode/data/licenses/oreilly-notice.yml deleted file mode 100644 index 88f550a8dd4..00000000000 --- a/src/licensedcode/data/licenses/oreilly-notice.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: oreilly-notice -short_name: O'Reilly Code Sample Notice -name: O'Reilly Code Sample Notice -category: Permissive -owner: O'Reilly Media, Inc. -homepage_url: http://shop.oreilly.com/category/customer-service/faq-examples.do -spdx_license_key: LicenseRef-scancode-oreilly-notice -ignorable_emails: - - permissions@oreilly.com diff --git a/src/licensedcode/data/licenses/oset-pl-2.1.LICENSE b/src/licensedcode/data/licenses/oset-pl-2.1.LICENSE index f29dd5ceb31..6023d0c84e6 100644 --- a/src/licensedcode/data/licenses/oset-pl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/oset-pl-2.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: oset-pl-2.1 +short_name: OSET-PL-2.1 +name: OSET Public License version 2.1 +category: Copyleft Limited +owner: OSET Foundation +homepage_url: http://www.osetfoundation.org/public-license/ +spdx_license_key: OSET-PL-2.1 +text_urls: + - http://www.osetfoundation.org/s/OPL_v21-plain.txt +osi_url: https://opensource.org/licenses/OPL-2.1 +faq_url: http://www.osetfoundation.org/public-license/ +other_urls: + - http://opensource.org/licenses/OPL-2.1 + - http://www.osetfoundation.org/public-license +ignorable_copyrights: + - (c) 2015 +ignorable_urls: + - http://www.osetfoundation.org/public-license +--- + OSET Public License (c) 2015 ALL RIGHTS RESERVED VERSION 2.1 diff --git a/src/licensedcode/data/licenses/oset-pl-2.1.yml b/src/licensedcode/data/licenses/oset-pl-2.1.yml deleted file mode 100644 index 3651cf5b221..00000000000 --- a/src/licensedcode/data/licenses/oset-pl-2.1.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: oset-pl-2.1 -short_name: OSET-PL-2.1 -name: OSET Public License version 2.1 -category: Copyleft Limited -owner: OSET Foundation -homepage_url: http://www.osetfoundation.org/public-license/ -spdx_license_key: OSET-PL-2.1 -text_urls: - - http://www.osetfoundation.org/s/OPL_v21-plain.txt -osi_url: https://opensource.org/licenses/OPL-2.1 -faq_url: http://www.osetfoundation.org/public-license/ -other_urls: - - http://opensource.org/licenses/OPL-2.1 - - http://www.osetfoundation.org/public-license -ignorable_copyrights: - - (c) 2015 -ignorable_urls: - - http://www.osetfoundation.org/public-license diff --git a/src/licensedcode/data/licenses/osetpl-2.1.LICENSE b/src/licensedcode/data/licenses/osetpl-2.1.LICENSE index f29dd5ceb31..dab005142da 100644 --- a/src/licensedcode/data/licenses/osetpl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/osetpl-2.1.LICENSE @@ -1,3 +1,14 @@ +--- +key: osetpl-2.1 +short_name: OSET 2.1 +name: OSET Public License v2.1 +category: Copyleft Limited +owner: OSET Foundation +homepage_url: http://www.osetfoundation.org/s/OPL_v21-plain.txt +is_deprecated: yes +notes: duplicate of oset-pl-2.1 +--- + OSET Public License (c) 2015 ALL RIGHTS RESERVED VERSION 2.1 diff --git a/src/licensedcode/data/licenses/osetpl-2.1.yml b/src/licensedcode/data/licenses/osetpl-2.1.yml deleted file mode 100644 index 6a290afa7ed..00000000000 --- a/src/licensedcode/data/licenses/osetpl-2.1.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: osetpl-2.1 -short_name: OSET 2.1 -name: OSET Public License v2.1 -category: Copyleft Limited -owner: OSET Foundation -homepage_url: http://www.osetfoundation.org/s/OPL_v21-plain.txt -is_deprecated: yes -notes: duplicate of oset-pl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/osf-1990.LICENSE b/src/licensedcode/data/licenses/osf-1990.LICENSE index 90f82085e81..3af078af73e 100644 --- a/src/licensedcode/data/licenses/osf-1990.LICENSE +++ b/src/licensedcode/data/licenses/osf-1990.LICENSE @@ -1,3 +1,15 @@ +--- +key: osf-1990 +short_name: OSF 1990 License +name: OSF 1990 License +category: Permissive +owner: Open Group +homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant +spdx_license_key: LicenseRef-scancode-osf-1990 +text_urls: + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant +--- + To anyone who acknowledges that this file is provided "AS IS" without any express or implied warranty: permission to use, copy, modify, and distribute this file diff --git a/src/licensedcode/data/licenses/osf-1990.yml b/src/licensedcode/data/licenses/osf-1990.yml deleted file mode 100644 index 5cb98de8f2f..00000000000 --- a/src/licensedcode/data/licenses/osf-1990.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: osf-1990 -short_name: OSF 1990 License -name: OSF 1990 License -category: Permissive -owner: Open Group -homepage_url: https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant -spdx_license_key: LicenseRef-scancode-osf-1990 -text_urls: - - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant diff --git a/src/licensedcode/data/licenses/osgi-spec-2.0.LICENSE b/src/licensedcode/data/licenses/osgi-spec-2.0.LICENSE index 9e5c4c938f5..f3871acbc78 100644 --- a/src/licensedcode/data/licenses/osgi-spec-2.0.LICENSE +++ b/src/licensedcode/data/licenses/osgi-spec-2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: osgi-spec-2.0 +short_name: OSGi Specification License 2.0 +name: OSGi Specification License Version 2.0 +category: Proprietary Free +owner: OSGi Alliance +homepage_url: https://www.osgi.org/developer/specifications/licensing/ +spdx_license_key: LicenseRef-scancode-osgi-spec-2.0 +ignorable_urls: + - http://www.osgi.org/ +--- + OSGi Specification License, Version 2.0. @@ -60,4 +72,4 @@ manner, including advertising or publicity pertaining to the Specification or its contents without specific, written prior permission. Title to copyright in the Specification will at all times remain with OSGi. -No other rights are granted by implication, estoppel or otherwise. +No other rights are granted by implication, estoppel or otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/osgi-spec-2.0.yml b/src/licensedcode/data/licenses/osgi-spec-2.0.yml deleted file mode 100644 index ed58006d3c0..00000000000 --- a/src/licensedcode/data/licenses/osgi-spec-2.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: osgi-spec-2.0 -short_name: OSGi Specification License 2.0 -name: OSGi Specification License Version 2.0 -category: Proprietary Free -owner: OSGi Alliance -homepage_url: https://www.osgi.org/developer/specifications/licensing/ -spdx_license_key: LicenseRef-scancode-osgi-spec-2.0 -ignorable_urls: - - http://www.osgi.org/ diff --git a/src/licensedcode/data/licenses/osl-1.0.LICENSE b/src/licensedcode/data/licenses/osl-1.0.LICENSE index 8d64fcf4eee..86de0a9bc23 100644 --- a/src/licensedcode/data/licenses/osl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/osl-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: osl-1.0 +short_name: OSL 1.0 +name: Open Software License 1.0 +category: Copyleft +owner: Lawrence Rosen +homepage_url: http://www.opensource.org/licenses/osl-1.0.txt +notes: | + Per SPDX.org, this license was OSI certified. This license has been + superseded. +spdx_license_key: OSL-1.0 +osi_license_key: OSL-1.0 +text_urls: + - http://www.opensource.org/licenses/osl-1.0.txt +osi_url: http://www.opensource.org/licenses/osl-1.0.txt +other_urls: + - http://opensource.org/licenses/OSL-1.0 + - http://www.gnu.org/licenses/license-list.html#OSL + - https://opensource.org/licenses/OSL-1.0 +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Open Software License, v 1.0 The Open Software License diff --git a/src/licensedcode/data/licenses/osl-1.0.yml b/src/licensedcode/data/licenses/osl-1.0.yml deleted file mode 100644 index e4b6388f50d..00000000000 --- a/src/licensedcode/data/licenses/osl-1.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: osl-1.0 -short_name: OSL 1.0 -name: Open Software License 1.0 -category: Copyleft -owner: Lawrence Rosen -homepage_url: http://www.opensource.org/licenses/osl-1.0.txt -notes: | - Per SPDX.org, this license was OSI certified. This license has been - superseded. -spdx_license_key: OSL-1.0 -osi_license_key: OSL-1.0 -text_urls: - - http://www.opensource.org/licenses/osl-1.0.txt -osi_url: http://www.opensource.org/licenses/osl-1.0.txt -other_urls: - - http://opensource.org/licenses/OSL-1.0 - - http://www.gnu.org/licenses/license-list.html#OSL - - https://opensource.org/licenses/OSL-1.0 -ignorable_copyrights: - - Copyright (c) 2002 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/licenses/osl-1.1.LICENSE b/src/licensedcode/data/licenses/osl-1.1.LICENSE index 10a62c82930..c1dc942005e 100644 --- a/src/licensedcode/data/licenses/osl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/osl-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: osl-1.1 +short_name: OSL 1.1 +name: Open Software License 1.1 +category: Copyleft +owner: Lawrence Rosen +homepage_url: https://fedoraproject.org/wiki/Licensing:OSL1.1?rd=Licensing/OSL1.1 +spdx_license_key: OSL-1.1 +other_urls: + - http://www.gnu.org/licenses/license-list.html#OSL + - https://fedoraproject.org/wiki/Licensing/OSL1.1 +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Open Software License v. 1.1 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: diff --git a/src/licensedcode/data/licenses/osl-1.1.yml b/src/licensedcode/data/licenses/osl-1.1.yml deleted file mode 100644 index 63ae9afa586..00000000000 --- a/src/licensedcode/data/licenses/osl-1.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: osl-1.1 -short_name: OSL 1.1 -name: Open Software License 1.1 -category: Copyleft -owner: Lawrence Rosen -homepage_url: https://fedoraproject.org/wiki/Licensing:OSL1.1?rd=Licensing/OSL1.1 -spdx_license_key: OSL-1.1 -other_urls: - - http://www.gnu.org/licenses/license-list.html#OSL - - https://fedoraproject.org/wiki/Licensing/OSL1.1 -ignorable_copyrights: - - Copyright (c) 2002 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/licenses/osl-2.0.LICENSE b/src/licensedcode/data/licenses/osl-2.0.LICENSE index 840c32d644d..ad2ebd958ce 100644 --- a/src/licensedcode/data/licenses/osl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/osl-2.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: osl-2.0 +short_name: OSL 2.0 +name: Open Software License 2.0 +category: Copyleft +owner: Lawrence Rosen +homepage_url: http://www.nexb.com/license/LICENSE-OSL-2.0.html +spdx_license_key: OSL-2.0 +text_urls: + - http://www.nexb.com/license/LICENSE-OSL-2.0.html +osi_url: http://www.opensource.org/licenses/osl-2.0.php +other_urls: + - http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html + - http://www.gnu.org/licenses/license-list.html#OSL +ignorable_copyrights: + - Copyright (c) 2003 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Open Software License v. 2.0 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: diff --git a/src/licensedcode/data/licenses/osl-2.0.yml b/src/licensedcode/data/licenses/osl-2.0.yml deleted file mode 100644 index def09d812b2..00000000000 --- a/src/licensedcode/data/licenses/osl-2.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: osl-2.0 -short_name: OSL 2.0 -name: Open Software License 2.0 -category: Copyleft -owner: Lawrence Rosen -homepage_url: http://www.nexb.com/license/LICENSE-OSL-2.0.html -spdx_license_key: OSL-2.0 -text_urls: - - http://www.nexb.com/license/LICENSE-OSL-2.0.html -osi_url: http://www.opensource.org/licenses/osl-2.0.php -other_urls: - - http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html - - http://www.gnu.org/licenses/license-list.html#OSL -ignorable_copyrights: - - Copyright (c) 2003 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/licenses/osl-2.1.LICENSE b/src/licensedcode/data/licenses/osl-2.1.LICENSE index 42a42421bfb..da80a3d14f2 100644 --- a/src/licensedcode/data/licenses/osl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/osl-2.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: osl-2.1 +short_name: OSL 2.1 +name: Open Software License 2.1 +category: Copyleft +owner: Lawrence Rosen +homepage_url: http://www.nexb.com/license/LICENSE-OSL-2.1.html +notes: | + Per SPDX.org, same as version 2.0 of this license except with changes to + section 10 +spdx_license_key: OSL-2.1 +osi_license_key: OSL-2.1 +text_urls: + - http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm +osi_url: http://www.opensource.org/licenses/osl-2.1.php +other_urls: + - http://opensource.org/licenses/OSL-2.1 + - http://www.gnu.org/licenses/license-list.html#OSL + - http://www.nexb.com/license/LICENSE-OSL-2.1.html + - https://opensource.org/licenses/OSL-2.1 +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Open Software License v. 2.1 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: diff --git a/src/licensedcode/data/licenses/osl-2.1.yml b/src/licensedcode/data/licenses/osl-2.1.yml deleted file mode 100644 index c0a59df0a66..00000000000 --- a/src/licensedcode/data/licenses/osl-2.1.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: osl-2.1 -short_name: OSL 2.1 -name: Open Software License 2.1 -category: Copyleft -owner: Lawrence Rosen -homepage_url: http://www.nexb.com/license/LICENSE-OSL-2.1.html -notes: | - Per SPDX.org, same as version 2.0 of this license except with changes to - section 10 -spdx_license_key: OSL-2.1 -osi_license_key: OSL-2.1 -text_urls: - - http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm -osi_url: http://www.opensource.org/licenses/osl-2.1.php -other_urls: - - http://opensource.org/licenses/OSL-2.1 - - http://www.gnu.org/licenses/license-list.html#OSL - - http://www.nexb.com/license/LICENSE-OSL-2.1.html - - https://opensource.org/licenses/OSL-2.1 -ignorable_copyrights: - - Copyright (c) 2003-2004 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/licenses/osl-3.0.LICENSE b/src/licensedcode/data/licenses/osl-3.0.LICENSE index 0b9dc99638f..ca199b9a5d9 100644 --- a/src/licensedcode/data/licenses/osl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/osl-3.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: osl-3.0 +short_name: OSL 3.0 +name: Open Software License 3.0 +category: Copyleft +owner: Lawrence Rosen +homepage_url: http://www.opensource.org/licenses/osl-3.0.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: OSL-3.0 +osi_license_key: OSL-3.0 +text_urls: + - http://www.opensource.org/licenses/osl-3.0.php +osi_url: http://opensource.org/licenses/osl-3.0.php +other_urls: + - http://www.gnu.org/licenses/license-list.html#OSL + - http://www.opensource.org/licenses/OSL-3.0 + - http://www.rosenlaw.com/OSL3.0.htm + - https://opensource.org/licenses/OSL-3.0 + - https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + Open Software License ("OSL") v. 3.0 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: diff --git a/src/licensedcode/data/licenses/osl-3.0.yml b/src/licensedcode/data/licenses/osl-3.0.yml deleted file mode 100644 index 2572505fee7..00000000000 --- a/src/licensedcode/data/licenses/osl-3.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: osl-3.0 -short_name: OSL 3.0 -name: Open Software License 3.0 -category: Copyleft -owner: Lawrence Rosen -homepage_url: http://www.opensource.org/licenses/osl-3.0.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: OSL-3.0 -osi_license_key: OSL-3.0 -text_urls: - - http://www.opensource.org/licenses/osl-3.0.php -osi_url: http://opensource.org/licenses/osl-3.0.php -other_urls: - - http://www.gnu.org/licenses/license-list.html#OSL - - http://www.opensource.org/licenses/OSL-3.0 - - http://www.rosenlaw.com/OSL3.0.htm - - https://opensource.org/licenses/OSL-3.0 - - https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm -ignorable_copyrights: - - Copyright (c) 2005 Lawrence Rosen -ignorable_holders: - - Lawrence Rosen diff --git a/src/licensedcode/data/licenses/ossn-3.0.LICENSE b/src/licensedcode/data/licenses/ossn-3.0.LICENSE index 8c0e1a5d886..7305d19859d 100644 --- a/src/licensedcode/data/licenses/ossn-3.0.LICENSE +++ b/src/licensedcode/data/licenses/ossn-3.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: ossn-3.0 +short_name: OSSN-3.0 +name: Open Source Social Network License v3.0 +category: Proprietary Free +owner: Open Source Social Network +homepage_url: http://www.opensource-socialnetwork.org/licence/ +spdx_license_key: LicenseRef-scancode-ossn-3.0 +text_urls: + - https://github.com/opensource-socialnetwork/opensource-socialnetwork/blob/v4.x/LICENSE.txt +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2014-2017 OPEN SOURCE SOCIAL NETWORK. +ignorable_holders: + - OPEN SOURCE SOCIAL NETWORK. +ignorable_urls: + - https://www.opensource-socialnetwork.org/ +--- + OPEN SOURCE SOCIAL NETWORK LICENSE (OSSN LICENSE) v3.0 Copyright (C) 2014-2017 OPEN SOURCE SOCIAL NETWORK. @@ -38,4 +57,4 @@ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY C 8. Interpretation of Sections 6 and 7 -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. +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. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ossn-3.0.yml b/src/licensedcode/data/licenses/ossn-3.0.yml deleted file mode 100644 index 37471506d55..00000000000 --- a/src/licensedcode/data/licenses/ossn-3.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: ossn-3.0 -short_name: OSSN-3.0 -name: Open Source Social Network License v3.0 -category: Proprietary Free -owner: Open Source Social Network -homepage_url: http://www.opensource-socialnetwork.org/licence/ -spdx_license_key: LicenseRef-scancode-ossn-3.0 -text_urls: - - https://github.com/opensource-socialnetwork/opensource-socialnetwork/blob/v4.x/LICENSE.txt -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 2014-2017 OPEN SOURCE SOCIAL NETWORK. -ignorable_holders: - - OPEN SOURCE SOCIAL NETWORK. -ignorable_urls: - - https://www.opensource-socialnetwork.org/ diff --git a/src/licensedcode/data/licenses/oswego-concurrent.LICENSE b/src/licensedcode/data/licenses/oswego-concurrent.LICENSE index b93f9af9e53..c599bb0cc0e 100644 --- a/src/licensedcode/data/licenses/oswego-concurrent.LICENSE +++ b/src/licensedcode/data/licenses/oswego-concurrent.LICENSE @@ -1,3 +1,24 @@ +--- +key: oswego-concurrent +short_name: Oswego Concurrent License +name: Oswego Concurrent License +category: Permissive +owner: Oswego SUNY +homepage_url: http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html +spdx_license_key: LicenseRef-scancode-oswego-concurrent +text_urls: + - http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html + - http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf +faq_url: http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html +ignorable_copyrights: + - Copyright (c) 1994-2000 Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html + - http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf +--- + http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html All classes are released to the public domain and may be used for any purpose diff --git a/src/licensedcode/data/licenses/oswego-concurrent.yml b/src/licensedcode/data/licenses/oswego-concurrent.yml deleted file mode 100644 index 17a1183b24f..00000000000 --- a/src/licensedcode/data/licenses/oswego-concurrent.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: oswego-concurrent -short_name: Oswego Concurrent License -name: Oswego Concurrent License -category: Permissive -owner: Oswego SUNY -homepage_url: http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html -spdx_license_key: LicenseRef-scancode-oswego-concurrent -text_urls: - - http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html - - http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf -faq_url: http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html -ignorable_copyrights: - - Copyright (c) 1994-2000 Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. -ignorable_urls: - - http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html - - http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf diff --git a/src/licensedcode/data/licenses/other-copyleft.LICENSE b/src/licensedcode/data/licenses/other-copyleft.LICENSE index 406ad086b5d..ec7cae8e9b7 100644 --- a/src/licensedcode/data/licenses/other-copyleft.LICENSE +++ b/src/licensedcode/data/licenses/other-copyleft.LICENSE @@ -1,4 +1,17 @@ +--- +key: other-copyleft +short_name: Other Copyleft Licenses +name: Other Copyleft Licenses +category: Copyleft +owner: nexB +notes: | + this is a catch all and ellipsis to deal with some cases when a large + number of ancillary yet similar licenses may be reported as one. +is_generic: yes +spdx_license_key: LicenseRef-scancode-other-copyleft +--- + This component contains third-party subcomponents licensed under one or more copyleft licenses in the style of GPL, LGPL, MPL or EPL. The license obligations of these subcomponents may apply when a subcomponent -depending on how the subcomponent is used and/or redistributed. +depending on how the subcomponent is used and/or redistributed. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/other-copyleft.yml b/src/licensedcode/data/licenses/other-copyleft.yml deleted file mode 100644 index cf559c4e561..00000000000 --- a/src/licensedcode/data/licenses/other-copyleft.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: other-copyleft -short_name: Other Copyleft Licenses -name: Other Copyleft Licenses -category: Copyleft -owner: nexB -notes: | - this is a catch all and ellipsis to deal with some cases when a large - number of ancillary yet similar licenses may be reported as one. -is_generic: yes -spdx_license_key: LicenseRef-scancode-other-copyleft diff --git a/src/licensedcode/data/licenses/other-permissive.LICENSE b/src/licensedcode/data/licenses/other-permissive.LICENSE index 3866d32d2e1..ac05c928063 100644 --- a/src/licensedcode/data/licenses/other-permissive.LICENSE +++ b/src/licensedcode/data/licenses/other-permissive.LICENSE @@ -1,2 +1,15 @@ +--- +key: other-permissive +short_name: Other Permissive Licenses +name: Other Permissive Licenses +category: Permissive +owner: nexB +notes: | + this is a catch all and ellipsis to deal with some cases when a large + number of ancillary yet similar licenses may be reported as one. +is_generic: yes +spdx_license_key: LicenseRef-scancode-other-permissive +--- + This component contains multiple third-party subcomponents licensed under permissive licenses in the style of MIT, BSD, X11, and/or Apache. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/other-permissive.yml b/src/licensedcode/data/licenses/other-permissive.yml deleted file mode 100644 index a425db91f9e..00000000000 --- a/src/licensedcode/data/licenses/other-permissive.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: other-permissive -short_name: Other Permissive Licenses -name: Other Permissive Licenses -category: Permissive -owner: nexB -notes: | - this is a catch all and ellipsis to deal with some cases when a large - number of ancillary yet similar licenses may be reported as one. -is_generic: yes -spdx_license_key: LicenseRef-scancode-other-permissive diff --git a/src/licensedcode/data/licenses/otn-dev-dist-2009.LICENSE b/src/licensedcode/data/licenses/otn-dev-dist-2009.LICENSE index 839fe74d3da..8870e7a3da9 100644 --- a/src/licensedcode/data/licenses/otn-dev-dist-2009.LICENSE +++ b/src/licensedcode/data/licenses/otn-dev-dist-2009.LICENSE @@ -1,3 +1,20 @@ +--- +key: otn-dev-dist-2009 +short_name: OTN License 2009 +name: Oracle Technology Network Free Developer License 2009 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/testcontent/standard-license-088383.html +spdx_license_key: LicenseRef-scancode-otn-dev-dist-2009 +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html?content.html + - http://www.oracle.com/technetwork/documentation/index.html +--- + Oracle Technology Network Developer License Terms Export Controls on the Programs diff --git a/src/licensedcode/data/licenses/otn-dev-dist-2009.yml b/src/licensedcode/data/licenses/otn-dev-dist-2009.yml deleted file mode 100644 index 042d4df6f9c..00000000000 --- a/src/licensedcode/data/licenses/otn-dev-dist-2009.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: otn-dev-dist-2009 -short_name: OTN License 2009 -name: Oracle Technology Network Free Developer License 2009 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/testcontent/standard-license-088383.html -spdx_license_key: LicenseRef-scancode-otn-dev-dist-2009 -minimum_coverage: 50 -ignorable_authors: - - the OTN Program -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/products/export/index.html?content.html - - http://www.oracle.com/technetwork/documentation/index.html diff --git a/src/licensedcode/data/licenses/otn-dev-dist-2014.LICENSE b/src/licensedcode/data/licenses/otn-dev-dist-2014.LICENSE index c4ed3e253e3..0053c2fd43d 100644 --- a/src/licensedcode/data/licenses/otn-dev-dist-2014.LICENSE +++ b/src/licensedcode/data/licenses/otn-dev-dist-2014.LICENSE @@ -1,3 +1,18 @@ +--- +key: otn-dev-dist-2014 +short_name: OTN License 2014 +name: Oracle Technology Network Free Developer License 2014 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/wls-dev-license-1703567.html +spdx_license_key: LicenseRef-scancode-otn-dev-dist-2014 +minimum_coverage: 50 +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/technetwork/indexes/documentation/index.html +--- + Oracle Technology Network Free Developer License Terms Export Controls on the Programs diff --git a/src/licensedcode/data/licenses/otn-dev-dist-2014.yml b/src/licensedcode/data/licenses/otn-dev-dist-2014.yml deleted file mode 100644 index 9ea05927b2a..00000000000 --- a/src/licensedcode/data/licenses/otn-dev-dist-2014.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: otn-dev-dist-2014 -short_name: OTN License 2014 -name: Oracle Technology Network Free Developer License 2014 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/licenses/wls-dev-license-1703567.html -spdx_license_key: LicenseRef-scancode-otn-dev-dist-2014 -minimum_coverage: 50 -ignorable_authors: - - the OTN Program -ignorable_urls: - - http://www.oracle.com/technetwork/indexes/documentation/index.html diff --git a/src/licensedcode/data/licenses/otn-dev-dist-2016.LICENSE b/src/licensedcode/data/licenses/otn-dev-dist-2016.LICENSE index 23ec445dc85..716deb19ca0 100644 --- a/src/licensedcode/data/licenses/otn-dev-dist-2016.LICENSE +++ b/src/licensedcode/data/licenses/otn-dev-dist-2016.LICENSE @@ -1,3 +1,18 @@ +--- +key: otn-dev-dist-2016 +short_name: OTN License 2016 +name: Oracle Technology Network License Agreement 2016 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +spdx_license_key: LicenseRef-scancode-otn-dev-dist-2016 +ignorable_urls: + - http://www.oracle.com/documentation + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/privacy + - https://oss.oracle.com/sources/ +--- + Oracle Technology Network License Agreement Oracle is willing to authorize Your access to software associated with this License Agreement ("Agreement") only upon the condition that You accept that this Agreement governs Your use of the software. By selecting the "Accept License Agreement" button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the "Accept License Agreement" button or box (or the equivalent) and do not download or access the software. diff --git a/src/licensedcode/data/licenses/otn-dev-dist-2016.yml b/src/licensedcode/data/licenses/otn-dev-dist-2016.yml deleted file mode 100644 index df336d6d1af..00000000000 --- a/src/licensedcode/data/licenses/otn-dev-dist-2016.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: otn-dev-dist-2016 -short_name: OTN License 2016 -name: Oracle Technology Network License Agreement 2016 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/licenses/distribution-license-152002.html -spdx_license_key: LicenseRef-scancode-otn-dev-dist-2016 -ignorable_urls: - - http://www.oracle.com/documentation - - http://www.oracle.com/goto/opensourcecode - - http://www.oracle.com/privacy - - https://oss.oracle.com/sources/ diff --git a/src/licensedcode/data/licenses/otn-dev-dist.LICENSE b/src/licensedcode/data/licenses/otn-dev-dist.LICENSE index 93f9e430625..7d03faa4414 100644 --- a/src/licensedcode/data/licenses/otn-dev-dist.LICENSE +++ b/src/licensedcode/data/licenses/otn-dev-dist.LICENSE @@ -1,3 +1,22 @@ +--- +key: otn-dev-dist +short_name: OTN License +name: Oracle Technology Network Development and Distribution License Terms +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +spdx_license_key: LicenseRef-scancode-otn-dev-dist +text_urls: + - http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/products/export/index.html?content.html + - http://www.oracle.com/technetwork/indexes/documentation/index.html + - http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +--- + Oracle Technology Network Development and Distribution License Terms http://www.oracle.com/technetwork/licenses/distribution-license-152002.html diff --git a/src/licensedcode/data/licenses/otn-dev-dist.yml b/src/licensedcode/data/licenses/otn-dev-dist.yml deleted file mode 100644 index ad55d586583..00000000000 --- a/src/licensedcode/data/licenses/otn-dev-dist.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: otn-dev-dist -short_name: OTN License -name: Oracle Technology Network Development and Distribution License Terms -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/licenses/distribution-license-152002.html -spdx_license_key: LicenseRef-scancode-otn-dev-dist -text_urls: - - http://www.oracle.com/technetwork/licenses/distribution-license-152002.html -ignorable_authors: - - the OTN Program -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/products/export/index.html?content.html - - http://www.oracle.com/technetwork/indexes/documentation/index.html - - http://www.oracle.com/technetwork/licenses/distribution-license-152002.html diff --git a/src/licensedcode/data/licenses/otn-early-adopter-2018.LICENSE b/src/licensedcode/data/licenses/otn-early-adopter-2018.LICENSE index 38d081bba7e..c85b8e2e392 100644 --- a/src/licensedcode/data/licenses/otn-early-adopter-2018.LICENSE +++ b/src/licensedcode/data/licenses/otn-early-adopter-2018.LICENSE @@ -1,3 +1,20 @@ +--- +key: otn-early-adopter-2018 +short_name: OTN Early Adopter 2018 +name: OTN Early Adopter Development License 2018 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.oracle.com/downloads/licenses/solaris-ea-license.html +spdx_license_key: LicenseRef-scancode-otn-early-adopter-2018 +other_urls: + - https://www.theregister.com/2022/03/04/solaris_common_build_environments_free/ +ignorable_urls: + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/legal/privacy/privacy-policy.html + - https://docs.oracle.com/en/ + - https://oss.oracle.com/sources/ +--- + Oracle Technology Network Early Adopter License Agreement for Oracle Solaris Oracle is willing to authorize Your access to Oracle Solaris pre-GA software under this License Agreement (“Agreement”) only upon the condition that You accept that this Agreement governs Your use of the pre-GA Oracle Solaris and any updated versions of such pre-GA software. By selecting the “Accept License Agreement” button or box (or the equivalent) or installing or using the Programs You indicate Your acceptance of this Agreement and Your agreement, as an authorized representative of Your company or organization (if being acquired for use by an entity) or as an individual, to comply with the license terms that apply to the software that You wish to download and access. If You are not willing to be bound by this Agreement, do not select the “Accept License Agreement” button or box (or the equivalent) and do not download or access the software. diff --git a/src/licensedcode/data/licenses/otn-early-adopter-2018.yml b/src/licensedcode/data/licenses/otn-early-adopter-2018.yml deleted file mode 100644 index 61faffb3228..00000000000 --- a/src/licensedcode/data/licenses/otn-early-adopter-2018.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: otn-early-adopter-2018 -short_name: OTN Early Adopter 2018 -name: OTN Early Adopter Development License 2018 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://www.oracle.com/downloads/licenses/solaris-ea-license.html -spdx_license_key: LicenseRef-scancode-otn-early-adopter-2018 -other_urls: - - https://www.theregister.com/2022/03/04/solaris_common_build_environments_free/ -ignorable_urls: - - http://www.oracle.com/goto/opensourcecode - - http://www.oracle.com/legal/privacy/privacy-policy.html - - https://docs.oracle.com/en/ - - https://oss.oracle.com/sources/ diff --git a/src/licensedcode/data/licenses/otn-early-adopter-development.LICENSE b/src/licensedcode/data/licenses/otn-early-adopter-development.LICENSE index 97a5d1f98b9..159c6dc20e1 100644 --- a/src/licensedcode/data/licenses/otn-early-adopter-development.LICENSE +++ b/src/licensedcode/data/licenses/otn-early-adopter-development.LICENSE @@ -1,3 +1,19 @@ +--- +key: otn-early-adopter-development +short_name: OTN Early Adopter Development License +name: OTN Early Adopter Development License Agreement +category: Proprietary Free +owner: Oracle Corporation +homepage_url: http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html +spdx_license_key: LicenseRef-scancode-otn-early-adopter-development +text_urls: + - http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html +ignorable_authors: + - the OTN Program +ignorable_urls: + - http://www.oracle.com/us/legal/privacy/index.html +--- + Oracle Technology Network Early Adopter Development License Agreement EXPORT CONTROLS diff --git a/src/licensedcode/data/licenses/otn-early-adopter-development.yml b/src/licensedcode/data/licenses/otn-early-adopter-development.yml deleted file mode 100644 index d96ae235440..00000000000 --- a/src/licensedcode/data/licenses/otn-early-adopter-development.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: otn-early-adopter-development -short_name: OTN Early Adopter Development License -name: OTN Early Adopter Development License Agreement -category: Proprietary Free -owner: Oracle Corporation -homepage_url: http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html -spdx_license_key: LicenseRef-scancode-otn-early-adopter-development -text_urls: - - http://www.oracle.com/technetwork/licenses/ea-license-noexhibits-1938914.html -ignorable_authors: - - the OTN Program -ignorable_urls: - - http://www.oracle.com/us/legal/privacy/index.html diff --git a/src/licensedcode/data/licenses/otn-standard-2014-09.LICENSE b/src/licensedcode/data/licenses/otn-standard-2014-09.LICENSE index f511fd8e6b1..3e5563790a9 100644 --- a/src/licensedcode/data/licenses/otn-standard-2014-09.LICENSE +++ b/src/licensedcode/data/licenses/otn-standard-2014-09.LICENSE @@ -1,3 +1,18 @@ +--- +key: otn-standard-2014-09 +short_name: OTN License 2014-09 +name: Oracle Technology Network License Agreement 2014-09 +category: Proprietary Free +owner: Oracle Corporation +homepage_url: https://www.oracle.com/technetwork/licenses/standard-license-152015.html +spdx_license_key: LicenseRef-scancode-otn-standard-2014-09 +ignorable_urls: + - http://www.oracle.com/documentation + - http://www.oracle.com/goto/opensourcecode + - http://www.oracle.com/privacy + - https://oss.oracle.com/sources/ +--- + Oracle Technology Network License Agreement @@ -71,4 +86,4 @@ Redwood City, CA 94065 Oracle Employees : Under no circumstances are Oracle Employees authorized to download software for the purpose of distributing it to customers. Oracle products are available to employees for internal use or demonstration purposes only. In keeping with Oracle's trade compliance obligations under U.S. and applicable multilateral law, failure to comply with this policy could result in disciplinary action up to and including termination. -Last updated: 09 September 2014 +Last updated: 09 September 2014 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/otn-standard-2014-09.yml b/src/licensedcode/data/licenses/otn-standard-2014-09.yml deleted file mode 100644 index 914ed679311..00000000000 --- a/src/licensedcode/data/licenses/otn-standard-2014-09.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: otn-standard-2014-09 -short_name: OTN License 2014-09 -name: Oracle Technology Network License Agreement 2014-09 -category: Proprietary Free -owner: Oracle Corporation -homepage_url: https://www.oracle.com/technetwork/licenses/standard-license-152015.html -spdx_license_key: LicenseRef-scancode-otn-standard-2014-09 -ignorable_urls: - - http://www.oracle.com/documentation - - http://www.oracle.com/goto/opensourcecode - - http://www.oracle.com/privacy - - https://oss.oracle.com/sources/ diff --git a/src/licensedcode/data/licenses/owal-1.0.LICENSE b/src/licensedcode/data/licenses/owal-1.0.LICENSE index 42f621f1486..612ed9cd3ad 100644 --- a/src/licensedcode/data/licenses/owal-1.0.LICENSE +++ b/src/licensedcode/data/licenses/owal-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: owal-1.0 +short_name: Opera Web Applications License 1.0 +name: Opera Web Applications License v1.0 +category: Proprietary Free +owner: Opera Software ASA +spdx_license_key: LicenseRef-scancode-owal-1.0 +minimum_coverage: 50 +ignorable_copyrights: + - (c) Copyright 2006 Opera Software ASA. +ignorable_holders: + - Opera Software ASA. +--- + OPERA Web Applications License Version 1.0 © Copyright 2006 Opera Software ASA. All rights reserved. OPERA SOFTWARE ASA ("OPERA") IS WILLING TO PERMIT USE OF THIS SOFTWARE diff --git a/src/licensedcode/data/licenses/owal-1.0.yml b/src/licensedcode/data/licenses/owal-1.0.yml deleted file mode 100644 index a1bf3390e93..00000000000 --- a/src/licensedcode/data/licenses/owal-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: owal-1.0 -short_name: Opera Web Applications License 1.0 -name: Opera Web Applications License v1.0 -category: Proprietary Free -owner: Opera Software ASA -spdx_license_key: LicenseRef-scancode-owal-1.0 -minimum_coverage: 50 -ignorable_copyrights: - - (c) Copyright 2006 Opera Software ASA. -ignorable_holders: - - Opera Software ASA. diff --git a/src/licensedcode/data/licenses/owf-cla-1.0-copyright-patent.LICENSE b/src/licensedcode/data/licenses/owf-cla-1.0-copyright-patent.LICENSE index ebe63595617..f89b0e1b4a9 100644 --- a/src/licensedcode/data/licenses/owf-cla-1.0-copyright-patent.LICENSE +++ b/src/licensedcode/data/licenses/owf-cla-1.0-copyright-patent.LICENSE @@ -1,3 +1,14 @@ +--- +key: owf-cla-1.0-copyright-patent +short_name: OWF CLA 1.0 - Copyright and Patent +name: OWF Contributor License Agreement 1.0 - Copyright and Patent +category: Patent License +owner: Open Web Foundation +homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright-and-patent +spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright-patent +faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq +--- + OWF Contributor License Agreement 1.0 - Copyright and Patent Open Web Foundation Contributor License Agreement (CLA 1.0) diff --git a/src/licensedcode/data/licenses/owf-cla-1.0-copyright-patent.yml b/src/licensedcode/data/licenses/owf-cla-1.0-copyright-patent.yml deleted file mode 100644 index edc3d41aad0..00000000000 --- a/src/licensedcode/data/licenses/owf-cla-1.0-copyright-patent.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: owf-cla-1.0-copyright-patent -short_name: OWF CLA 1.0 - Copyright and Patent -name: OWF Contributor License Agreement 1.0 - Copyright and Patent -category: Patent License -owner: Open Web Foundation -homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright-and-patent -spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright-patent -faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq diff --git a/src/licensedcode/data/licenses/owf-cla-1.0-copyright.LICENSE b/src/licensedcode/data/licenses/owf-cla-1.0-copyright.LICENSE index 043d3d4f72a..fa553617baa 100644 --- a/src/licensedcode/data/licenses/owf-cla-1.0-copyright.LICENSE +++ b/src/licensedcode/data/licenses/owf-cla-1.0-copyright.LICENSE @@ -1,3 +1,18 @@ +--- +key: owf-cla-1.0-copyright +short_name: OWF CLA 1.0 - Copyright +name: OWF Contributor License Agreement 1.0 - Copyright +category: Permissive +owner: Open Web Foundation +homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright +spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright +faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq +ignorable_copyrights: + - Copyright Open Web Foundation +ignorable_holders: + - Open Web Foundation +--- + OWF Contributor License Agreement 1.0 - Copyright Open Web Foundation Contributor License Agreement (CLA 1.0) diff --git a/src/licensedcode/data/licenses/owf-cla-1.0-copyright.yml b/src/licensedcode/data/licenses/owf-cla-1.0-copyright.yml deleted file mode 100644 index b8775597d08..00000000000 --- a/src/licensedcode/data/licenses/owf-cla-1.0-copyright.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: owf-cla-1.0-copyright -short_name: OWF CLA 1.0 - Copyright -name: OWF Contributor License Agreement 1.0 - Copyright -category: Permissive -owner: Open Web Foundation -homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owf-contributor-license-agreement-1-0-copyright -spdx_license_key: LicenseRef-scancode-owf-cla-1.0-copyright -faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq -ignorable_copyrights: - - Copyright Open Web Foundation -ignorable_holders: - - Open Web Foundation diff --git a/src/licensedcode/data/licenses/owfa-1-0-patent-only.LICENSE b/src/licensedcode/data/licenses/owfa-1-0-patent-only.LICENSE index b6a69a5987f..c75a7d78580 100644 --- a/src/licensedcode/data/licenses/owfa-1-0-patent-only.LICENSE +++ b/src/licensedcode/data/licenses/owfa-1-0-patent-only.LICENSE @@ -1,3 +1,14 @@ +--- +key: owfa-1-0-patent-only +short_name: OWFa 1.0 - Patent Only +name: OWFa 1.0 - Patent Only +category: Patent License +owner: Open Web Foundation +homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0-patent-only +spdx_license_key: LicenseRef-scancode-owfa-1.0-patent-only +faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq +--- + OWFa 1.0 - Patent Only Open Web Foundation Final Specification Agreement (OWFa 1.0) diff --git a/src/licensedcode/data/licenses/owfa-1-0-patent-only.yml b/src/licensedcode/data/licenses/owfa-1-0-patent-only.yml deleted file mode 100644 index da5caf57906..00000000000 --- a/src/licensedcode/data/licenses/owfa-1-0-patent-only.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: owfa-1-0-patent-only -short_name: OWFa 1.0 - Patent Only -name: OWFa 1.0 - Patent Only -category: Patent License -owner: Open Web Foundation -homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0-patent-only -spdx_license_key: LicenseRef-scancode-owfa-1.0-patent-only -faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq diff --git a/src/licensedcode/data/licenses/owfa-1.0.LICENSE b/src/licensedcode/data/licenses/owfa-1.0.LICENSE index eeb9336651b..c26d0bdb48e 100644 --- a/src/licensedcode/data/licenses/owfa-1.0.LICENSE +++ b/src/licensedcode/data/licenses/owfa-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: owfa-1.0 +short_name: OWFa 1.0 - Patent and Copyright Grants +name: OWFa 1.0 - Patent and Copyright Grants +category: Patent License +owner: Open Web Foundation +homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0 +spdx_license_key: LicenseRef-scancode-owfa-1.0 +text_urls: + - http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0 +faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq +--- + OWFa 1.0 Open Web Foundation Final Specification Agreement (OWFa 1.0) diff --git a/src/licensedcode/data/licenses/owfa-1.0.yml b/src/licensedcode/data/licenses/owfa-1.0.yml deleted file mode 100644 index 54485cc417f..00000000000 --- a/src/licensedcode/data/licenses/owfa-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: owfa-1.0 -short_name: OWFa 1.0 - Patent and Copyright Grants -name: OWFa 1.0 - Patent and Copyright Grants -category: Patent License -owner: Open Web Foundation -homepage_url: https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0 -spdx_license_key: LicenseRef-scancode-owfa-1.0 -text_urls: - - http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0 -faq_url: https://www.openwebfoundation.org/faqs/open-web-foundation-cla-1-0-owfa-1-0-faq diff --git a/src/licensedcode/data/licenses/owtchart.LICENSE b/src/licensedcode/data/licenses/owtchart.LICENSE index 1f3c5a5fc7c..f1b534974f7 100644 --- a/src/licensedcode/data/licenses/owtchart.LICENSE +++ b/src/licensedcode/data/licenses/owtchart.LICENSE @@ -1,3 +1,32 @@ +--- +key: owtchart +short_name: OWTChart License +name: OWTChart License +category: Permissive +owner: Unspecified +notes: composite +spdx_license_key: LicenseRef-scancode-owtchart +minimum_coverage: 85 +ignorable_copyrights: + - Copyright (c) 1998, 1999, Daniel Morissette + - Portions copyright 1994, 1995, 1996, 1997, 1998, by Cold Spring Harbor Laboratory + - Portions copyright 1996, 1997, 1998, by Boutell.Com, Inc. + - copyright 1990, 1991, 1993, by David Koblas (koblas@netcom.com) + - copyright 1998, by Hutchison Avenue Software Corporation +ignorable_holders: + - Boutell.Com, Inc. + - Cold Spring Harbor Laboratory + - Daniel Morissette + - David Koblas + - Hutchison Avenue Software Corporation +ignorable_authors: + - Daniel Morissette (danmo@videotron.ca) +ignorable_emails: + - brv@fred.net + - danmo@videotron.ca + - koblas@netcom.com +--- + OWTChart License Copyright and License Terms diff --git a/src/licensedcode/data/licenses/owtchart.yml b/src/licensedcode/data/licenses/owtchart.yml deleted file mode 100644 index 8985823c87c..00000000000 --- a/src/licensedcode/data/licenses/owtchart.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: owtchart -short_name: OWTChart License -name: OWTChart License -category: Permissive -owner: Unspecified -notes: composite -spdx_license_key: LicenseRef-scancode-owtchart -minimum_coverage: 85 -ignorable_copyrights: - - Copyright (c) 1998, 1999, Daniel Morissette - - Portions copyright 1994, 1995, 1996, 1997, 1998, by Cold Spring Harbor Laboratory - - Portions copyright 1996, 1997, 1998, by Boutell.Com, Inc. - - copyright 1990, 1991, 1993, by David Koblas (koblas@netcom.com) - - copyright 1998, by Hutchison Avenue Software Corporation -ignorable_holders: - - Boutell.Com, Inc. - - Cold Spring Harbor Laboratory - - Daniel Morissette - - David Koblas - - Hutchison Avenue Software Corporation -ignorable_authors: - - Daniel Morissette (danmo@videotron.ca) -ignorable_emails: - - brv@fred.net - - danmo@videotron.ca - - koblas@netcom.com diff --git a/src/licensedcode/data/licenses/oxygen-xml-webhelp-eula.LICENSE b/src/licensedcode/data/licenses/oxygen-xml-webhelp-eula.LICENSE index 0b3d982bb43..a223f5a3d92 100644 --- a/src/licensedcode/data/licenses/oxygen-xml-webhelp-eula.LICENSE +++ b/src/licensedcode/data/licenses/oxygen-xml-webhelp-eula.LICENSE @@ -1,3 +1,20 @@ +--- +key: oxygen-xml-webhelp-eula +short_name: Oxygen XML WebHelp EULA +name: Oxygen XML WebHelp End-User License Agreement +category: Commercial +owner: Syncro Soft +homepage_url: https://www.oxygenxml.com/eula_webhelp.html +spdx_license_key: LicenseRef-scancode-oxygen-xml-webhelp-eula +ignorable_urls: + - http://www.oxygenxml.com/ + - http://www.oxygenxml.com/privacy_policy.html + - http://www.oxygenxml.com/support.html + - http://www.oxygenxml.com/thirdparty/index.html +ignorable_emails: + - support@oxygenxml.com +--- + Oxygen XML WebHelp license IMPORTANT:THIS SOFTWARE END USER LICENSE AGREEMENT ("EULA") IS A LEGAL AGREEMENT BETWEEN YOU (EITHER AN INDIVIDUAL OR, IF PURCHASED OR OTHERWISE ACQUIRED BY OR FOR AN ENTITY, A SINGLE LEGAL ENTITY) AND SYNCRO. READ IT CAREFULLY BEFORE COMPLETING THE INSTALLATION PROCESS AND USING THIS SOFTWARE. IT PROVIDES A LICENSE TO USE THIS SOFTWARE AND CONTAINS WARRANTY INFORMATION AND LIABILITY DISCLAIMERS. BY DOWNLOADING OR INSTALLING THE SOFTWARE YOU ARE INDICATING YOUR ASSENT TO THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO ALL OF THE FOLLOWING TERMS, DO NOT DOWNLOAD OR INSTALL THE SOFTWARE OR DISCONTINUE USE IMMEDIATELY AND DESTROY ALL COPIES IN YOUR POSSESSION. YOU ALSO ACCEPT AND ASSENT TO THE SYNCRO PRIVACY POLICY LOCATED AT http://www.oxygenxml.com/privacy_policy.html AND YOU AGREE TO RECEIVE NOTICES FROM SYNCRO ELECTRONICALLY. diff --git a/src/licensedcode/data/licenses/oxygen-xml-webhelp-eula.yml b/src/licensedcode/data/licenses/oxygen-xml-webhelp-eula.yml deleted file mode 100644 index ad11ce2c1bd..00000000000 --- a/src/licensedcode/data/licenses/oxygen-xml-webhelp-eula.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: oxygen-xml-webhelp-eula -short_name: Oxygen XML WebHelp EULA -name: Oxygen XML WebHelp End-User License Agreement -category: Commercial -owner: Syncro Soft -homepage_url: https://www.oxygenxml.com/eula_webhelp.html -spdx_license_key: LicenseRef-scancode-oxygen-xml-webhelp-eula -ignorable_urls: - - http://www.oxygenxml.com/ - - http://www.oxygenxml.com/privacy_policy.html - - http://www.oxygenxml.com/support.html - - http://www.oxygenxml.com/thirdparty/index.html -ignorable_emails: - - support@oxygenxml.com diff --git a/src/licensedcode/data/licenses/ozplb-1.0.LICENSE b/src/licensedcode/data/licenses/ozplb-1.0.LICENSE index 12872700021..e99ce522bb3 100644 --- a/src/licensedcode/data/licenses/ozplb-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ozplb-1.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: ozplb-1.0 +short_name: OZPLB 1.0 +name: Australian Public Licence B Version 1.0 +category: Permissive +owner: ERTOS +homepage_url: http://www.ok-labs.com/licenses#ozplb +spdx_license_key: LicenseRef-scancode-ozplb-1.0 +text_urls: + - http://www.ok-labs.com/licenses#ozplb +other_urls: + - http://www.ertos.nicta.com.au +ignorable_copyrights: + - Copyright (c) 2006, National ICT Australia, Ltd +ignorable_holders: + - National ICT Australia, Ltd +ignorable_authors: + - Embedded, Real-time and Operating Systems Program (ERTOS) National ICT Australia http://www.ertos.nicta.com.au +ignorable_urls: + - http://www.ertos.nicta.com.au/ +--- + Australian Public Licence B Version 1-0 OZPLB Licence diff --git a/src/licensedcode/data/licenses/ozplb-1.0.yml b/src/licensedcode/data/licenses/ozplb-1.0.yml deleted file mode 100644 index f7ff5b10959..00000000000 --- a/src/licensedcode/data/licenses/ozplb-1.0.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: ozplb-1.0 -short_name: OZPLB 1.0 -name: Australian Public Licence B Version 1.0 -category: Permissive -owner: ERTOS -homepage_url: http://www.ok-labs.com/licenses#ozplb -spdx_license_key: LicenseRef-scancode-ozplb-1.0 -text_urls: - - http://www.ok-labs.com/licenses#ozplb -other_urls: - - http://www.ertos.nicta.com.au -ignorable_copyrights: - - Copyright (c) 2006, National ICT Australia, Ltd -ignorable_holders: - - National ICT Australia, Ltd -ignorable_authors: - - Embedded, Real-time and Operating Systems Program (ERTOS) National ICT Australia http://www.ertos.nicta.com.au -ignorable_urls: - - http://www.ertos.nicta.com.au/ diff --git a/src/licensedcode/data/licenses/ozplb-1.1.LICENSE b/src/licensedcode/data/licenses/ozplb-1.1.LICENSE index 5a06ca6603b..3dd4348c05b 100644 --- a/src/licensedcode/data/licenses/ozplb-1.1.LICENSE +++ b/src/licensedcode/data/licenses/ozplb-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: ozplb-1.1 +short_name: OZPLB 1.1 +name: Australian Public Licence B Version 1.1 +category: Permissive +owner: University of Melbourne P2P Group +homepage_url: http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE +spdx_license_key: LicenseRef-scancode-ozplb-1.1 +text_urls: + - http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE +ignorable_copyrights: + - Copyright (c) 2006, P2P Networks and Applications Research Group, The University of Melbourne +ignorable_holders: + - P2P Networks and Applications Research Group, The University of Melbourne +ignorable_authors: + - P2P Networks and Applications Research Group The University of Melbourne, Australia http://www.cs.mu.oz.au/p2p +ignorable_urls: + - http://www.cs.mu.oz.au/p2p + - http://www.opensource.org/licenses/UoI-NCSA.php +--- + Australian Public Licence B (OZPLB) Version 1-1 diff --git a/src/licensedcode/data/licenses/ozplb-1.1.yml b/src/licensedcode/data/licenses/ozplb-1.1.yml deleted file mode 100644 index 743d69f0054..00000000000 --- a/src/licensedcode/data/licenses/ozplb-1.1.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: ozplb-1.1 -short_name: OZPLB 1.1 -name: Australian Public Licence B Version 1.1 -category: Permissive -owner: University of Melbourne P2P Group -homepage_url: http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE -spdx_license_key: LicenseRef-scancode-ozplb-1.1 -text_urls: - - http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE -ignorable_copyrights: - - Copyright (c) 2006, P2P Networks and Applications Research Group, The University of Melbourne -ignorable_holders: - - P2P Networks and Applications Research Group, The University of Melbourne -ignorable_authors: - - P2P Networks and Applications Research Group The University of Melbourne, Australia http://www.cs.mu.oz.au/p2p -ignorable_urls: - - http://www.cs.mu.oz.au/p2p - - http://www.opensource.org/licenses/UoI-NCSA.php diff --git a/src/licensedcode/data/licenses/paint-net.LICENSE b/src/licensedcode/data/licenses/paint-net.LICENSE index 862c8f0aafc..861aeb43cb0 100644 --- a/src/licensedcode/data/licenses/paint-net.LICENSE +++ b/src/licensedcode/data/licenses/paint-net.LICENSE @@ -1,3 +1,18 @@ +--- +key: paint-net +short_name: Paint.NET License +name: Paint.NET License +category: Proprietary Free +owner: dotPDN +homepage_url: http://www.getpaint.net/license.html +spdx_license_key: LicenseRef-scancode-paint-net +ignorable_urls: + - http://www.everaldo.com/crystal + - http://www.getpaint.net/donate.html + - http://www.gnu.org/copyleft/lesser.html + - http://www.oxygen-icons.org/ +--- + Paint.NET is free for use in any environment, including but not necessarily limited to: personal, academic, commercial, government, business, non-profit, and for-profit. "Free" in the preceding sentence means that there is no cost or charge associated with the installation and use of Paint.NET. Donations are always appreciated, of course! http://www.getpaint.net/donate.html Permission is hereby granted, free of charge, to any person obtaining a copy of this software (the "Software"), to use the Software without restriction, including the rights to use, copy, publish, and distribute the Software, and to permit persons to whom the Software is furnished to do so. diff --git a/src/licensedcode/data/licenses/paint-net.yml b/src/licensedcode/data/licenses/paint-net.yml deleted file mode 100644 index 753b3e5ce79..00000000000 --- a/src/licensedcode/data/licenses/paint-net.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: paint-net -short_name: Paint.NET License -name: Paint.NET License -category: Proprietary Free -owner: dotPDN -homepage_url: http://www.getpaint.net/license.html -spdx_license_key: LicenseRef-scancode-paint-net -ignorable_urls: - - http://www.everaldo.com/crystal - - http://www.getpaint.net/donate.html - - http://www.gnu.org/copyleft/lesser.html - - http://www.oxygen-icons.org/ diff --git a/src/licensedcode/data/licenses/paolo-messina-2000.LICENSE b/src/licensedcode/data/licenses/paolo-messina-2000.LICENSE index a1bd8de9be5..e28765f5bd8 100644 --- a/src/licensedcode/data/licenses/paolo-messina-2000.LICENSE +++ b/src/licensedcode/data/licenses/paolo-messina-2000.LICENSE @@ -1,3 +1,12 @@ +--- +key: paolo-messina-2000 +short_name: Paolo Messina 2000 +name: Paolo Messina 2000 +category: Permissive +owner: Paolo Messina +spdx_license_key: LicenseRef-scancode-paolo-messina-2000 +--- + Free for non-commercial and commercial use, provided that the original author's name and copyright is quoted somewhere in the final executable and in the program's help or documentation. You may change the code to your needs, provided that credits to the original author are given in the modified files. diff --git a/src/licensedcode/data/licenses/paolo-messina-2000.yml b/src/licensedcode/data/licenses/paolo-messina-2000.yml deleted file mode 100644 index 45f5f9694cf..00000000000 --- a/src/licensedcode/data/licenses/paolo-messina-2000.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: paolo-messina-2000 -short_name: Paolo Messina 2000 -name: Paolo Messina 2000 -category: Permissive -owner: Paolo Messina -spdx_license_key: LicenseRef-scancode-paolo-messina-2000 diff --git a/src/licensedcode/data/licenses/paraview-1.2.LICENSE b/src/licensedcode/data/licenses/paraview-1.2.LICENSE index 56d20777cd1..8b89cb84ff2 100644 --- a/src/licensedcode/data/licenses/paraview-1.2.LICENSE +++ b/src/licensedcode/data/licenses/paraview-1.2.LICENSE @@ -1,3 +1,32 @@ +--- +key: paraview-1.2 +short_name: ParaView License 1.2 +name: ParaView License 1.2 +category: Permissive +owner: ParaView Project +spdx_license_key: LicenseRef-scancode-paraview-1.2 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2000-2005 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, + 12065, USA. + - Copyright (c) 2000-2006 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, + 12065, USA. + - Copyright (c) 2002 U.S. Army Research Laboratory + - Copyright (c) 2002-2005 Los Alamos National Laboratory + - Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc. + - Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the Board of Trustees of the + University of Illinois +ignorable_holders: + - Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA. + - Los Alamos National Laboratory + - Sandia Corporation, Kitware Inc. + - U.S. Army Research Laboratory + - the Board of Trustees of the University of Illinois +ignorable_authors: + - the National Center for Supercomputing Applications at the University of Illinois at Urbana-Champaign + - with support from the University of California, Lawrence Livermore National Laboratory +--- + Parts of ParaView are under the following licenses: ParaView License Version 1.2 diff --git a/src/licensedcode/data/licenses/paraview-1.2.yml b/src/licensedcode/data/licenses/paraview-1.2.yml deleted file mode 100644 index b6e09918a0f..00000000000 --- a/src/licensedcode/data/licenses/paraview-1.2.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: paraview-1.2 -short_name: ParaView License 1.2 -name: ParaView License 1.2 -category: Permissive -owner: ParaView Project -spdx_license_key: LicenseRef-scancode-paraview-1.2 -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2000-2005 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, - 12065, USA. - - Copyright (c) 2000-2006 Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, - 12065, USA. - - Copyright (c) 2002 U.S. Army Research Laboratory - - Copyright (c) 2002-2005 Los Alamos National Laboratory - - Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc. - - Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the Board of Trustees of the - University of Illinois -ignorable_holders: - - Kitware Inc. 28 Corporate Drive, Suite 204, Clifton Park, NY, 12065, USA. - - Los Alamos National Laboratory - - Sandia Corporation, Kitware Inc. - - U.S. Army Research Laboratory - - the Board of Trustees of the University of Illinois -ignorable_authors: - - the National Center for Supercomputing Applications at the University of Illinois at Urbana-Champaign - - with support from the University of California, Lawrence Livermore National Laboratory diff --git a/src/licensedcode/data/licenses/parity-6.0.0.LICENSE b/src/licensedcode/data/licenses/parity-6.0.0.LICENSE index 4dbd4e7b3db..bee9bb8cc16 100644 --- a/src/licensedcode/data/licenses/parity-6.0.0.LICENSE +++ b/src/licensedcode/data/licenses/parity-6.0.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: parity-6.0.0 +short_name: The Parity Public License 6.0.0 +name: The Parity Public License 6.0.0 +category: Copyleft +owner: Kyle Mitchell +homepage_url: https://paritylicense.com/versions/6.0.0.html +spdx_license_key: Parity-6.0.0 +other_urls: + - https://paritylicense.com/versions/6.0.0.html +--- + The Parity Public License 6.0.0 Contributor: contributor name diff --git a/src/licensedcode/data/licenses/parity-6.0.0.yml b/src/licensedcode/data/licenses/parity-6.0.0.yml deleted file mode 100644 index 8d5788a5563..00000000000 --- a/src/licensedcode/data/licenses/parity-6.0.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: parity-6.0.0 -short_name: The Parity Public License 6.0.0 -name: The Parity Public License 6.0.0 -category: Copyleft -owner: Kyle Mitchell -homepage_url: https://paritylicense.com/versions/6.0.0.html -spdx_license_key: Parity-6.0.0 -other_urls: - - https://paritylicense.com/versions/6.0.0.html diff --git a/src/licensedcode/data/licenses/parity-7.0.0.LICENSE b/src/licensedcode/data/licenses/parity-7.0.0.LICENSE index 24cb3e12ded..516a121b031 100644 --- a/src/licensedcode/data/licenses/parity-7.0.0.LICENSE +++ b/src/licensedcode/data/licenses/parity-7.0.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: parity-7.0.0 +short_name: The Parity Public License 7.0.0 +name: The Parity Public License 7.0.0 +category: Copyleft +owner: Kyle Mitchell +homepage_url: https://paritylicense.com/versions/7.0.0.html +spdx_license_key: Parity-7.0.0 +--- + The Parity Public License 7.0.0 Contributor: contributor name diff --git a/src/licensedcode/data/licenses/parity-7.0.0.yml b/src/licensedcode/data/licenses/parity-7.0.0.yml deleted file mode 100644 index 43a37694880..00000000000 --- a/src/licensedcode/data/licenses/parity-7.0.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: parity-7.0.0 -short_name: The Parity Public License 7.0.0 -name: The Parity Public License 7.0.0 -category: Copyleft -owner: Kyle Mitchell -homepage_url: https://paritylicense.com/versions/7.0.0.html -spdx_license_key: Parity-7.0.0 diff --git a/src/licensedcode/data/licenses/passive-aggressive.LICENSE b/src/licensedcode/data/licenses/passive-aggressive.LICENSE index 9f5d7c7549c..a6af5196ed9 100644 --- a/src/licensedcode/data/licenses/passive-aggressive.LICENSE +++ b/src/licensedcode/data/licenses/passive-aggressive.LICENSE @@ -1,3 +1,13 @@ +--- +key: passive-aggressive +short_name: Passive-Aggressive License +name: Passive-Aggressive License +category: Proprietary Free +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-passive-aggressive +--- + Permission is hereby given to the user, with free of charge, to any person obtaining a copy of this software and its all associated documentation files, to deal in the software without restriction, including without limitation the rights to copy, modify, merge, publish, distribute, sublicense, and/orsell copies of the Software, but NOT including the right to run, execute or use the Software or any executable binaries built from the source code. The above copyright notice and this permission notice shall be included in all @@ -9,4 +19,4 @@ 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 +SOFTWARE \ No newline at end of file diff --git a/src/licensedcode/data/licenses/passive-aggressive.yml b/src/licensedcode/data/licenses/passive-aggressive.yml deleted file mode 100644 index 10f5b57603c..00000000000 --- a/src/licensedcode/data/licenses/passive-aggressive.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: passive-aggressive -short_name: Passive-Aggressive License -name: Passive-Aggressive License -category: Proprietary Free -owner: Unspecified -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-passive-aggressive diff --git a/src/licensedcode/data/licenses/patent-disclaimer.LICENSE b/src/licensedcode/data/licenses/patent-disclaimer.LICENSE new file mode 100644 index 00000000000..0d5e695820b --- /dev/null +++ b/src/licensedcode/data/licenses/patent-disclaimer.LICENSE @@ -0,0 +1,9 @@ +--- +key: patent-disclaimer +short_name: Generic patent disclaimer +name: Generic patent disclaimer +category: Permissive +owner: Unspecified +is_generic: yes +spdx_license_key: LicenseRef-scancode-patent-disclaimer +--- diff --git a/src/licensedcode/data/licenses/patent-disclaimer.yml b/src/licensedcode/data/licenses/patent-disclaimer.yml deleted file mode 100644 index 0bd3f89c66e..00000000000 --- a/src/licensedcode/data/licenses/patent-disclaimer.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: patent-disclaimer -short_name: Generic patent disclaimer -name: Generic patent disclaimer -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-patent-disclaimer diff --git a/src/licensedcode/data/licenses/paul-hsieh-derivative.LICENSE b/src/licensedcode/data/licenses/paul-hsieh-derivative.LICENSE index 10d58107058..4e4e0a0683a 100644 --- a/src/licensedcode/data/licenses/paul-hsieh-derivative.LICENSE +++ b/src/licensedcode/data/licenses/paul-hsieh-derivative.LICENSE @@ -1,3 +1,17 @@ +--- +key: paul-hsieh-derivative +short_name: Paul Hsieh Derivative License +name: Paul Hsieh Derivative License +category: Free Restricted +owner: Paul Hsieh +homepage_url: http://www.azillionmonkeys.com/qed/weblicense.html +spdx_license_key: LicenseRef-scancode-paul-hsieh-derivative +text_urls: + - http://www.azillionmonkeys.com/qed/weblicense.html +other_urls: + - http://azillionmonkeys.com/qed/hash.html +--- + Paul Hsieh derivative license The derivative content includes raw computer source code, ideas, opinions, and @@ -14,4 +28,4 @@ license. Use and redistribution is limited to the following conditions: One may not attribute any derivative content to authors not involved in the creation of the content, though an attribution to the author is not - necessary. + necessary. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/paul-hsieh-derivative.yml b/src/licensedcode/data/licenses/paul-hsieh-derivative.yml deleted file mode 100644 index b00aa23a1ab..00000000000 --- a/src/licensedcode/data/licenses/paul-hsieh-derivative.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: paul-hsieh-derivative -short_name: Paul Hsieh Derivative License -name: Paul Hsieh Derivative License -category: Free Restricted -owner: Paul Hsieh -homepage_url: http://www.azillionmonkeys.com/qed/weblicense.html -spdx_license_key: LicenseRef-scancode-paul-hsieh-derivative -text_urls: - - http://www.azillionmonkeys.com/qed/weblicense.html -other_urls: - - http://azillionmonkeys.com/qed/hash.html diff --git a/src/licensedcode/data/licenses/paul-hsieh-exposition.LICENSE b/src/licensedcode/data/licenses/paul-hsieh-exposition.LICENSE index 2d6344d72d1..7f3bd65bf06 100644 --- a/src/licensedcode/data/licenses/paul-hsieh-exposition.LICENSE +++ b/src/licensedcode/data/licenses/paul-hsieh-exposition.LICENSE @@ -1,3 +1,17 @@ +--- +key: paul-hsieh-exposition +short_name: Paul Hsieh Exposition License +name: Paul Hsieh Exposition License +category: Free Restricted +owner: Paul Hsieh +homepage_url: http://www.azillionmonkeys.com/qed/weblicense.html +spdx_license_key: LicenseRef-scancode-paul-hsieh-exposition +text_urls: + - http://www.azillionmonkeys.com/qed/weblicense.html +other_urls: + - http://azillionmonkeys.com/qed/hash.html +--- + Paul Hsieh exposition license The content of all text, figures, tables and displayed layout is copyrighted by its author and owner Paul Hsieh unless specifically denoted otherwise. Redistribution is limited to the following conditions: diff --git a/src/licensedcode/data/licenses/paul-hsieh-exposition.yml b/src/licensedcode/data/licenses/paul-hsieh-exposition.yml deleted file mode 100644 index 05479516fc3..00000000000 --- a/src/licensedcode/data/licenses/paul-hsieh-exposition.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: paul-hsieh-exposition -short_name: Paul Hsieh Exposition License -name: Paul Hsieh Exposition License -category: Free Restricted -owner: Paul Hsieh -homepage_url: http://www.azillionmonkeys.com/qed/weblicense.html -spdx_license_key: LicenseRef-scancode-paul-hsieh-exposition -text_urls: - - http://www.azillionmonkeys.com/qed/weblicense.html -other_urls: - - http://azillionmonkeys.com/qed/hash.html diff --git a/src/licensedcode/data/licenses/paul-mackerras-binary.LICENSE b/src/licensedcode/data/licenses/paul-mackerras-binary.LICENSE index 543bc1cf6ca..229d126ee85 100644 --- a/src/licensedcode/data/licenses/paul-mackerras-binary.LICENSE +++ b/src/licensedcode/data/licenses/paul-mackerras-binary.LICENSE @@ -1,3 +1,17 @@ +--- +key: paul-mackerras-binary +short_name: Paul Mackerras Binary License +name: Paul Mackerras Binary License +category: Permissive +owner: Paul Mackerras +notes: this is very similar to the bsd-ack but there is a different warranty disclaimer +spdx_license_key: LicenseRef-scancode-paul-mackerras-binary +ignorable_authors: + - Paul Mackerras +ignorable_emails: + - paulus@samba.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/paul-mackerras-binary.yml b/src/licensedcode/data/licenses/paul-mackerras-binary.yml deleted file mode 100644 index b16aad76065..00000000000 --- a/src/licensedcode/data/licenses/paul-mackerras-binary.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: paul-mackerras-binary -short_name: Paul Mackerras Binary License -name: Paul Mackerras Binary License -category: Permissive -owner: Paul Mackerras -notes: this is very similar to the bsd-ack but there is a different warranty disclaimer -spdx_license_key: LicenseRef-scancode-paul-mackerras-binary -ignorable_authors: - - Paul Mackerras -ignorable_emails: - - paulus@samba.org diff --git a/src/licensedcode/data/licenses/paul-mackerras-new.LICENSE b/src/licensedcode/data/licenses/paul-mackerras-new.LICENSE index 957174b5d86..98d91e44f86 100644 --- a/src/licensedcode/data/licenses/paul-mackerras-new.LICENSE +++ b/src/licensedcode/data/licenses/paul-mackerras-new.LICENSE @@ -1,3 +1,13 @@ +--- +key: paul-mackerras-new +short_name: Paul Mackerras New License +name: Paul Mackerras New License +category: Permissive +owner: Paul Mackerras +notes: this is a paul-mackerras without advert +spdx_license_key: LicenseRef-scancode-paul-mackerras-new +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/paul-mackerras-new.yml b/src/licensedcode/data/licenses/paul-mackerras-new.yml deleted file mode 100644 index 5ad7f9938c7..00000000000 --- a/src/licensedcode/data/licenses/paul-mackerras-new.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: paul-mackerras-new -short_name: Paul Mackerras New License -name: Paul Mackerras New License -category: Permissive -owner: Paul Mackerras -notes: this is a paul-mackerras without advert -spdx_license_key: LicenseRef-scancode-paul-mackerras-new diff --git a/src/licensedcode/data/licenses/paul-mackerras-simplified.LICENSE b/src/licensedcode/data/licenses/paul-mackerras-simplified.LICENSE index eab0e4c65bb..ea62380955e 100644 --- a/src/licensedcode/data/licenses/paul-mackerras-simplified.LICENSE +++ b/src/licensedcode/data/licenses/paul-mackerras-simplified.LICENSE @@ -1,3 +1,13 @@ +--- +key: paul-mackerras-simplified +short_name: Paul Mackerras Simplified License +name: Paul Mackerras Simplified License +category: Permissive +owner: Paul Mackerras +notes: same as paul-mackerras but without advertizing clause +spdx_license_key: LicenseRef-scancode-paul-mackerras-simplified +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/paul-mackerras-simplified.yml b/src/licensedcode/data/licenses/paul-mackerras-simplified.yml deleted file mode 100644 index 38f513cfa0c..00000000000 --- a/src/licensedcode/data/licenses/paul-mackerras-simplified.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: paul-mackerras-simplified -short_name: Paul Mackerras Simplified License -name: Paul Mackerras Simplified License -category: Permissive -owner: Paul Mackerras -notes: same as paul-mackerras but without advertizing clause -spdx_license_key: LicenseRef-scancode-paul-mackerras-simplified diff --git a/src/licensedcode/data/licenses/paul-mackerras.LICENSE b/src/licensedcode/data/licenses/paul-mackerras.LICENSE index 5dc791397a3..95eaef674e7 100644 --- a/src/licensedcode/data/licenses/paul-mackerras.LICENSE +++ b/src/licensedcode/data/licenses/paul-mackerras.LICENSE @@ -1,3 +1,18 @@ +--- +key: paul-mackerras +short_name: Paul Mackerras License +name: Paul Mackerras License +category: Permissive +owner: Paul Mackerras +notes: there is no binaries clause and this is very similar to the bsd-ack but there is a different + warranty disclaimer +spdx_license_key: LicenseRef-scancode-paul-mackerras +ignorable_authors: + - Paul Mackerras +ignorable_emails: + - paulus@samba.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/paul-mackerras.yml b/src/licensedcode/data/licenses/paul-mackerras.yml deleted file mode 100644 index dcfabd4496e..00000000000 --- a/src/licensedcode/data/licenses/paul-mackerras.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: paul-mackerras -short_name: Paul Mackerras License -name: Paul Mackerras License -category: Permissive -owner: Paul Mackerras -notes: there is no binaries clause and this is very similar to the bsd-ack but there is a different - warranty disclaimer -spdx_license_key: LicenseRef-scancode-paul-mackerras -ignorable_authors: - - Paul Mackerras -ignorable_emails: - - paulus@samba.org diff --git a/src/licensedcode/data/licenses/paulo-soares.LICENSE b/src/licensedcode/data/licenses/paulo-soares.LICENSE index 58ee98d7dd3..5c60f47a782 100644 --- a/src/licensedcode/data/licenses/paulo-soares.LICENSE +++ b/src/licensedcode/data/licenses/paulo-soares.LICENSE @@ -1,3 +1,14 @@ +--- +key: paulo-soares +short_name: Paulo Soares License +name: Paulo Soares License +category: Permissive +owner: Paulo Soares +spdx_license_key: LicenseRef-scancode-paulo-soares +ignorable_authors: + - Paulo Soares +--- + These specific metrics files were created by Paulo Soares and may be used, copied, and distributed for any purpose and without charge, with or without modification. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/paulo-soares.yml b/src/licensedcode/data/licenses/paulo-soares.yml deleted file mode 100644 index 7e6e68a0e28..00000000000 --- a/src/licensedcode/data/licenses/paulo-soares.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: paulo-soares -short_name: Paulo Soares License -name: Paulo Soares License -category: Permissive -owner: Paulo Soares -spdx_license_key: LicenseRef-scancode-paulo-soares -ignorable_authors: - - Paulo Soares diff --git a/src/licensedcode/data/licenses/paypal-sdk-2013-2016.LICENSE b/src/licensedcode/data/licenses/paypal-sdk-2013-2016.LICENSE index ec10ea4f541..6d6a8977875 100644 --- a/src/licensedcode/data/licenses/paypal-sdk-2013-2016.LICENSE +++ b/src/licensedcode/data/licenses/paypal-sdk-2013-2016.LICENSE @@ -1,3 +1,21 @@ +--- +key: paypal-sdk-2013-2016 +short_name: PayPal SDK License 2013-2016 +name: PayPal SDK License 2013-2016 +category: Permissive +owner: PayPal +homepage_url: https://github.com/paypal/sdk-core-ruby/blob/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-paypal-sdk-2013-2016 +standard_notice: | + The PayPal SDK is released under the following license: + Copyright (c) 2013-2016 PAYPAL, INC. + SDK LICENSE +ignorable_copyrights: + - Copyright (c) 2013-2016 PAYPAL, INC. +ignorable_holders: + - PAYPAL, INC. +--- + The PayPal SDK is released under the following license: Copyright (c) 2013-2016 PAYPAL, INC. diff --git a/src/licensedcode/data/licenses/paypal-sdk-2013-2016.yml b/src/licensedcode/data/licenses/paypal-sdk-2013-2016.yml deleted file mode 100644 index d8d6cccb593..00000000000 --- a/src/licensedcode/data/licenses/paypal-sdk-2013-2016.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: paypal-sdk-2013-2016 -short_name: PayPal SDK License 2013-2016 -name: PayPal SDK License 2013-2016 -category: Permissive -owner: PayPal -homepage_url: https://github.com/paypal/sdk-core-ruby/blob/master/LICENSE.txt -spdx_license_key: LicenseRef-scancode-paypal-sdk-2013-2016 -standard_notice: | - The PayPal SDK is released under the following license: - Copyright (c) 2013-2016 PAYPAL, INC. - SDK LICENSE -ignorable_copyrights: - - Copyright (c) 2013-2016 PAYPAL, INC. -ignorable_holders: - - PAYPAL, INC. diff --git a/src/licensedcode/data/licenses/pbl-1.0.LICENSE b/src/licensedcode/data/licenses/pbl-1.0.LICENSE index 161bfd20eb3..d0923dd7ecf 100644 --- a/src/licensedcode/data/licenses/pbl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/pbl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: pbl-1.0 +short_name: PBL-1.0 +name: Permissive Binary License 1.0 +category: Free Restricted +owner: ARM +homepage_url: https://os.mbed.com/licenses/permissive-binary-license/ +spdx_license_key: LicenseRef-scancode-pbl-1.0 +text_urls: + - https://os.mbed.com/licenses/permissive-binary-license/ +--- + Permissive Binary License Version 1.0, September 2015 @@ -46,4 +58,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pbl-1.0.yml b/src/licensedcode/data/licenses/pbl-1.0.yml deleted file mode 100644 index 2b797f5c605..00000000000 --- a/src/licensedcode/data/licenses/pbl-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: pbl-1.0 -short_name: PBL-1.0 -name: Permissive Binary License 1.0 -category: Free Restricted -owner: ARM -homepage_url: https://os.mbed.com/licenses/permissive-binary-license/ -spdx_license_key: LicenseRef-scancode-pbl-1.0 -text_urls: - - https://os.mbed.com/licenses/permissive-binary-license/ diff --git a/src/licensedcode/data/licenses/pcre.LICENSE b/src/licensedcode/data/licenses/pcre.LICENSE index 3ed0b925a62..f09354a2dda 100644 --- a/src/licensedcode/data/licenses/pcre.LICENSE +++ b/src/licensedcode/data/licenses/pcre.LICENSE @@ -1,3 +1,27 @@ +--- +key: pcre +short_name: PCRE License +name: PCRE License +category: Permissive +owner: University of Cambridge +homepage_url: http://www.pcre.org/licence.txt +spdx_license_key: LicenseRef-scancode-pcre +text_urls: + - http://www.pcre.org/licence.txt +ignorable_copyrights: + - Copyright (c) 1997-2001 University of Cambridge + - copyright by the University of Cambridge, England +ignorable_holders: + - University of Cambridge + - the University of Cambridge, England +ignorable_authors: + - Philip Hazel +ignorable_urls: + - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +ignorable_emails: + - ph10@cam.ac.uk +--- + PCRE LICENCE ------------ diff --git a/src/licensedcode/data/licenses/pcre.yml b/src/licensedcode/data/licenses/pcre.yml deleted file mode 100644 index 47d0246fe1f..00000000000 --- a/src/licensedcode/data/licenses/pcre.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: pcre -short_name: PCRE License -name: PCRE License -category: Permissive -owner: University of Cambridge -homepage_url: http://www.pcre.org/licence.txt -spdx_license_key: LicenseRef-scancode-pcre -text_urls: - - http://www.pcre.org/licence.txt -ignorable_copyrights: - - Copyright (c) 1997-2001 University of Cambridge - - copyright by the University of Cambridge, England -ignorable_holders: - - University of Cambridge - - the University of Cambridge, England -ignorable_authors: - - Philip Hazel -ignorable_urls: - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ -ignorable_emails: - - ph10@cam.ac.uk diff --git a/src/licensedcode/data/licenses/pd-mit.LICENSE b/src/licensedcode/data/licenses/pd-mit.LICENSE index 167048cf398..6293f7707ee 100644 --- a/src/licensedcode/data/licenses/pd-mit.LICENSE +++ b/src/licensedcode/data/licenses/pd-mit.LICENSE @@ -1,3 +1,15 @@ +--- +key: pd-mit +short_name: Modified MIT License for Public Domain software +name: Modified MIT License for Public Domain software +category: Permissive +owner: CubicleSoft +homepage_url: http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html +spdx_license_key: LicenseRef-scancode-pd-mit +text_urls: + - http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html +--- + Modified MIT License for Public Domain software Public Domain or legal equivalent diff --git a/src/licensedcode/data/licenses/pd-mit.yml b/src/licensedcode/data/licenses/pd-mit.yml deleted file mode 100644 index f2baadf0100..00000000000 --- a/src/licensedcode/data/licenses/pd-mit.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: pd-mit -short_name: Modified MIT License for Public Domain software -name: Modified MIT License for Public Domain software -category: Permissive -owner: CubicleSoft -homepage_url: http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html -spdx_license_key: LicenseRef-scancode-pd-mit -text_urls: - - http://cubicspot.blogspot.com/2014/03/writing-software-without-copyright.html diff --git a/src/licensedcode/data/licenses/pd-programming.LICENSE b/src/licensedcode/data/licenses/pd-programming.LICENSE index 3c1826e14fd..981d233e60d 100644 --- a/src/licensedcode/data/licenses/pd-programming.LICENSE +++ b/src/licensedcode/data/licenses/pd-programming.LICENSE @@ -1,3 +1,14 @@ +--- +key: pd-programming +short_name: PD'Programming License +name: PD'Programming License +category: Permissive +owner: PD'Programming +spdx_license_key: LicenseRef-scancode-pd-programming +other_urls: + - http://www.pdmagic.com/ +--- + Coords.js is free for both commercial and non-commercial use and redistribution, provided that PD'Programming's copyright and disclaimer are @@ -8,4 +19,4 @@ modifications are clearly documented. 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. Please use it AT -YOUR OWN RISK. +YOUR OWN RISK. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pd-programming.yml b/src/licensedcode/data/licenses/pd-programming.yml deleted file mode 100644 index 3cd40062f88..00000000000 --- a/src/licensedcode/data/licenses/pd-programming.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: pd-programming -short_name: PD'Programming License -name: PD'Programming License -category: Permissive -owner: PD'Programming -spdx_license_key: LicenseRef-scancode-pd-programming -other_urls: - - http://www.pdmagic.com/ diff --git a/src/licensedcode/data/licenses/pddl-1.0.LICENSE b/src/licensedcode/data/licenses/pddl-1.0.LICENSE index d780e02a5af..f99d5a86382 100644 --- a/src/licensedcode/data/licenses/pddl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/pddl-1.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: pddl-1.0 +short_name: PDDL 1.0 +name: Public Domain Dedication & Licence (PDDL) +category: Public Domain +owner: Open Data Commons +homepage_url: http://opendatacommons.org/licenses/pddl/1-0/ +spdx_license_key: PDDL-1.0 +text_urls: + - http://opendatacommons.org/licenses/pddl/1-0/ +other_urls: + - http://opendatacommons.org/licenses/pddl/1.0/ + - https://opendatacommons.org/licenses/pddl/ +--- + Open Data Commons – Public Domain Dedication & Licence (PDDL) Preamble The Open Data Commons – Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents ("data"), either together or individually. diff --git a/src/licensedcode/data/licenses/pddl-1.0.yml b/src/licensedcode/data/licenses/pddl-1.0.yml deleted file mode 100644 index 7342218871b..00000000000 --- a/src/licensedcode/data/licenses/pddl-1.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: pddl-1.0 -short_name: PDDL 1.0 -name: Public Domain Dedication & Licence (PDDL) -category: Public Domain -owner: Open Data Commons -homepage_url: http://opendatacommons.org/licenses/pddl/1-0/ -spdx_license_key: PDDL-1.0 -text_urls: - - http://opendatacommons.org/licenses/pddl/1-0/ -other_urls: - - http://opendatacommons.org/licenses/pddl/1.0/ - - https://opendatacommons.org/licenses/pddl/ diff --git a/src/licensedcode/data/licenses/pdf-creator-pilot.LICENSE b/src/licensedcode/data/licenses/pdf-creator-pilot.LICENSE index 298586426da..9a71ead8e93 100644 --- a/src/licensedcode/data/licenses/pdf-creator-pilot.LICENSE +++ b/src/licensedcode/data/licenses/pdf-creator-pilot.LICENSE @@ -1,3 +1,19 @@ +--- +key: pdf-creator-pilot +short_name: PDF Creator Pilot License Agreement +name: PDF Creator Pilot License Agreement +category: Commercial +owner: Two Pilots +homepage_url: http://www.colorpilot.com/pdflibrary_eula.html +spdx_license_key: LicenseRef-scancode-pdf-creator-pilot +ignorable_copyrights: + - Copyright (c) 1999-2012 Two Pilots and its licensors +ignorable_holders: + - Two Pilots and its licensors +ignorable_urls: + - http://www.colorpilot.com/ +--- + PDF Creator Pilot License Agreement This is a legal agreement ('Agreement') between you, the end user, and Two Pilots. This agreement defines the licensing terms for the PDF Creator Pilot which is software shipped as a Windows Installer Package and includes all related documentation, examples, web pages, and other materials which support the use of the PDF Creator Pilot (collectively, the 'Software'). diff --git a/src/licensedcode/data/licenses/pdf-creator-pilot.yml b/src/licensedcode/data/licenses/pdf-creator-pilot.yml deleted file mode 100644 index cf9f28517c9..00000000000 --- a/src/licensedcode/data/licenses/pdf-creator-pilot.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: pdf-creator-pilot -short_name: PDF Creator Pilot License Agreement -name: PDF Creator Pilot License Agreement -category: Commercial -owner: Two Pilots -homepage_url: http://www.colorpilot.com/pdflibrary_eula.html -spdx_license_key: LicenseRef-scancode-pdf-creator-pilot -ignorable_copyrights: - - Copyright (c) 1999-2012 Two Pilots and its licensors -ignorable_holders: - - Two Pilots and its licensors -ignorable_urls: - - http://www.colorpilot.com/ diff --git a/src/licensedcode/data/licenses/pdl-1.0.LICENSE b/src/licensedcode/data/licenses/pdl-1.0.LICENSE index dac09c761d1..20d65920439 100644 --- a/src/licensedcode/data/licenses/pdl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/pdl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: pdl-1.0 +short_name: PDL-1.0 +name: Public Documentation License Version 1.0 +category: Copyleft Limited +owner: Apache Software Foundation +homepage_url: https://www.openoffice.org/licenses/PDL.html +notes: this is a derivative of the MPL used in legacy OpenOffice. +spdx_license_key: LicenseRef-scancode-pdl-1.0 +other_urls: + - https://www.openoffice.org/licenses/PDL.rtf + - https://www.openoffice.org/licenses/pdl.pdf +--- + PUBLIC DOCUMENTATION LICENSE Version 1.0 @@ -278,4 +292,4 @@ hyperlink/alias]). NOTE: The text of this Appendix may differ slightly from the text of the notices in the files of the Original Documentation. You should use the text of this Appendix rather than the text found in the Original -Documentation for Your Modifications. +Documentation for Your Modifications. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pdl-1.0.yml b/src/licensedcode/data/licenses/pdl-1.0.yml deleted file mode 100644 index 58031227ec3..00000000000 --- a/src/licensedcode/data/licenses/pdl-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: pdl-1.0 -short_name: PDL-1.0 -name: Public Documentation License Version 1.0 -category: Copyleft Limited -owner: Apache Software Foundation -homepage_url: https://www.openoffice.org/licenses/PDL.html -notes: this is a derivative of the MPL used in legacy OpenOffice. -spdx_license_key: LicenseRef-scancode-pdl-1.0 -other_urls: - - https://www.openoffice.org/licenses/PDL.rtf - - https://www.openoffice.org/licenses/pdl.pdf diff --git a/src/licensedcode/data/licenses/perl-1.0.LICENSE b/src/licensedcode/data/licenses/perl-1.0.LICENSE index 1826677e4a5..966a339d02a 100644 --- a/src/licensedcode/data/licenses/perl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/perl-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: perl-1.0 +short_name: Perl 1.0 +name: Perl 1.0 +category: Permissive +owner: Perl Foundation +spdx_license_key: LicenseRef-scancode-perl-1.0 +ignorable_copyrights: + - Copyright (c) 1987, Larry Wall +ignorable_holders: + - Larry Wall +--- + Perl Kit, Version 1.0 Copyright (c) 1987, Larry Wall diff --git a/src/licensedcode/data/licenses/perl-1.0.yml b/src/licensedcode/data/licenses/perl-1.0.yml deleted file mode 100644 index 71e9c5295c8..00000000000 --- a/src/licensedcode/data/licenses/perl-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: perl-1.0 -short_name: Perl 1.0 -name: Perl 1.0 -category: Permissive -owner: Perl Foundation -spdx_license_key: LicenseRef-scancode-perl-1.0 -ignorable_copyrights: - - Copyright (c) 1987, Larry Wall -ignorable_holders: - - Larry Wall diff --git a/src/licensedcode/data/licenses/peter-deutsch-document.LICENSE b/src/licensedcode/data/licenses/peter-deutsch-document.LICENSE index 361f39887be..2c549bf2e79 100644 --- a/src/licensedcode/data/licenses/peter-deutsch-document.LICENSE +++ b/src/licensedcode/data/licenses/peter-deutsch-document.LICENSE @@ -1,3 +1,15 @@ +--- +key: peter-deutsch-document +short_name: Peter Deutsch Document License +name: Peter Deutsch Document License +category: Permissive +owner: Peter Deutsch +homepage_url: http://www.ietf.org/rfc/rfc1952.txt +spdx_license_key: LicenseRef-scancode-peter-deutsch-document +text_urls: + - http://www.ietf.org/rfc/rfc1952.txt +--- + Permission is granted to copy and distribute this document for any purpose and without charge, including translations into other languages and incorporation into compilations, provided that the diff --git a/src/licensedcode/data/licenses/peter-deutsch-document.yml b/src/licensedcode/data/licenses/peter-deutsch-document.yml deleted file mode 100644 index 4c70018d91c..00000000000 --- a/src/licensedcode/data/licenses/peter-deutsch-document.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: peter-deutsch-document -short_name: Peter Deutsch Document License -name: Peter Deutsch Document License -category: Permissive -owner: Peter Deutsch -homepage_url: http://www.ietf.org/rfc/rfc1952.txt -spdx_license_key: LicenseRef-scancode-peter-deutsch-document -text_urls: - - http://www.ietf.org/rfc/rfc1952.txt diff --git a/src/licensedcode/data/licenses/pfe-proprietary-notice.LICENSE b/src/licensedcode/data/licenses/pfe-proprietary-notice.LICENSE index 4e26c5d74fd..ea9fca014a3 100644 --- a/src/licensedcode/data/licenses/pfe-proprietary-notice.LICENSE +++ b/src/licensedcode/data/licenses/pfe-proprietary-notice.LICENSE @@ -1,3 +1,13 @@ +--- +key: pfe-proprietary-notice +short_name: PFE Proprietary Notice +name: PFE Proprietary Notice +category: Proprietary Free +owner: Alan Phillips +homepage_url: https://www.lancaster.ac.uk/staff/steveb/cpaap/pfe/ +spdx_license_key: LicenseRef-scancode-pfe-proprietary-notice +--- + You expect me to believe that this stuff is free? I could get people to pay for this? Yes, it's completely free - you'll find the minimalist terms and conditions in the various readme files (you do look at readme files, don't you?) in the release ZIP archives and in the help file; but basically you can use PFE at home, at work, in the car and any improbable location of your choice without paying me a penny (or cent, if you're across the planet from where I am). diff --git a/src/licensedcode/data/licenses/pfe-proprietary-notice.yml b/src/licensedcode/data/licenses/pfe-proprietary-notice.yml deleted file mode 100644 index 13607c18a85..00000000000 --- a/src/licensedcode/data/licenses/pfe-proprietary-notice.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: pfe-proprietary-notice -short_name: PFE Proprietary Notice -name: PFE Proprietary Notice -category: Proprietary Free -owner: Alan Phillips -homepage_url: https://www.lancaster.ac.uk/staff/steveb/cpaap/pfe/ -spdx_license_key: LicenseRef-scancode-pfe-proprietary-notice diff --git a/src/licensedcode/data/licenses/pftijah-1.1.LICENSE b/src/licensedcode/data/licenses/pftijah-1.1.LICENSE index b27ef08492e..d80f81beda3 100644 --- a/src/licensedcode/data/licenses/pftijah-1.1.LICENSE +++ b/src/licensedcode/data/licenses/pftijah-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: pftijah-1.1 +short_name: PfTijah Public License 1.1 +name: PfTijah Public License v1.1 +category: Copyleft Limited +owner: University of Twente +homepage_url: http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html +spdx_license_key: LicenseRef-scancode-pftijah-1.1 +ignorable_urls: + - http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html +--- + PfTijah Public License Version 1.1 This License is a derivative of the MonetDB Public License Version 1.1, where the difference is that all references to "MonetDB" and "CWI" have been changed to "PfTijah" and "University of Twente" diff --git a/src/licensedcode/data/licenses/pftijah-1.1.yml b/src/licensedcode/data/licenses/pftijah-1.1.yml deleted file mode 100644 index 2063302e830..00000000000 --- a/src/licensedcode/data/licenses/pftijah-1.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: pftijah-1.1 -short_name: PfTijah Public License 1.1 -name: PfTijah Public License v1.1 -category: Copyleft Limited -owner: University of Twente -homepage_url: http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html -spdx_license_key: LicenseRef-scancode-pftijah-1.1 -ignorable_urls: - - http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html diff --git a/src/licensedcode/data/licenses/pftus-1.1.LICENSE b/src/licensedcode/data/licenses/pftus-1.1.LICENSE index 07f02ceb0d9..bba7d84eca9 100644 --- a/src/licensedcode/data/licenses/pftus-1.1.LICENSE +++ b/src/licensedcode/data/licenses/pftus-1.1.LICENSE @@ -1,3 +1,13 @@ +--- +key: pftus-1.1 +short_name: PFTUS-license +name: Protected Free To Use Software License +category: Proprietary Free +owner: Unspecified +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-pftus-1.1 +--- + The P.F.T.U.S(Protected Free To Use Software) License Version 1.1x @@ -48,4 +58,4 @@ original software). * github.com * AND any domain with written permissions Changing is not permitted, -redistribution is allowed. Some rights reserved. +redistribution is allowed. Some rights reserved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pftus-1.1.yml b/src/licensedcode/data/licenses/pftus-1.1.yml deleted file mode 100644 index 8a90f872c71..00000000000 --- a/src/licensedcode/data/licenses/pftus-1.1.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: pftus-1.1 -short_name: PFTUS-license -name: Protected Free To Use Software License -category: Proprietary Free -owner: Unspecified -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-pftus-1.1 diff --git a/src/licensedcode/data/licenses/phil-bunce.LICENSE b/src/licensedcode/data/licenses/phil-bunce.LICENSE index 04298518e4e..6dd6f881535 100644 --- a/src/licensedcode/data/licenses/phil-bunce.LICENSE +++ b/src/licensedcode/data/licenses/phil-bunce.LICENSE @@ -1 +1,11 @@ +--- +key: phil-bunce +short_name: Phil Bunce License +name: Phil Bunce License +category: Public Domain +owner: Phil Bunce +homepage_url: http://www.philbunce.com/pmon/ +spdx_license_key: LicenseRef-scancode-phil-bunce +--- + Feel free to use this code any way you wish, but please remember it comes without any sort of warranty. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/phil-bunce.yml b/src/licensedcode/data/licenses/phil-bunce.yml deleted file mode 100644 index e083f9a0d7e..00000000000 --- a/src/licensedcode/data/licenses/phil-bunce.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: phil-bunce -short_name: Phil Bunce License -name: Phil Bunce License -category: Public Domain -owner: Phil Bunce -homepage_url: http://www.philbunce.com/pmon/ -spdx_license_key: LicenseRef-scancode-phil-bunce diff --git a/src/licensedcode/data/licenses/philippe-de-muyter.LICENSE b/src/licensedcode/data/licenses/philippe-de-muyter.LICENSE index 5c320544657..770a9a19b5b 100644 --- a/src/licensedcode/data/licenses/philippe-de-muyter.LICENSE +++ b/src/licensedcode/data/licenses/philippe-de-muyter.LICENSE @@ -1,3 +1,13 @@ +--- +key: philippe-de-muyter +short_name: Philippe De Muyter License +name: Philippe De Muyter License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-philippe-de-muyter +minimum_coverage: 50 +--- + 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. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/philippe-de-muyter.yml b/src/licensedcode/data/licenses/philippe-de-muyter.yml deleted file mode 100644 index a5cc9d2ab50..00000000000 --- a/src/licensedcode/data/licenses/philippe-de-muyter.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: philippe-de-muyter -short_name: Philippe De Muyter License -name: Philippe De Muyter License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-philippe-de-muyter -minimum_coverage: 50 diff --git a/src/licensedcode/data/licenses/philips-proprietary-notice-2000.LICENSE b/src/licensedcode/data/licenses/philips-proprietary-notice-2000.LICENSE index 9bf662dffe3..d1bc6b44b98 100644 --- a/src/licensedcode/data/licenses/philips-proprietary-notice-2000.LICENSE +++ b/src/licensedcode/data/licenses/philips-proprietary-notice-2000.LICENSE @@ -1,3 +1,14 @@ +--- +key: philips-proprietary-notice-2000 +short_name: Philips Proprietary Notice 2000 +name: Philips Proprietary Notice 2000 +category: Commercial +owner: Philips Electronics +spdx_license_key: LicenseRef-scancode-philips-proprietary-notice2000 +other_spdx_license_keys: + - LicenseRef-scancode-philips-proprietary-notice-2000 +--- + This source code and any compilation or derivative thereof is the sole property of Philips Corporation and is provided pursuant to a Software diff --git a/src/licensedcode/data/licenses/philips-proprietary-notice-2000.yml b/src/licensedcode/data/licenses/philips-proprietary-notice-2000.yml deleted file mode 100644 index 28a03e7420e..00000000000 --- a/src/licensedcode/data/licenses/philips-proprietary-notice-2000.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: philips-proprietary-notice-2000 -short_name: Philips Proprietary Notice 2000 -name: Philips Proprietary Notice 2000 -category: Commercial -owner: Philips Electronics -spdx_license_key: LicenseRef-scancode-philips-proprietary-notice2000 -other_spdx_license_keys: - - LicenseRef-scancode-philips-proprietary-notice-2000 diff --git a/src/licensedcode/data/licenses/phorum-2.0.LICENSE b/src/licensedcode/data/licenses/phorum-2.0.LICENSE index 4104d0f1e11..90873c42ccb 100644 --- a/src/licensedcode/data/licenses/phorum-2.0.LICENSE +++ b/src/licensedcode/data/licenses/phorum-2.0.LICENSE @@ -1,3 +1,31 @@ +--- +key: phorum-2.0 +short_name: Phorum License 2.0 +name: Phorum License 2.0 +category: Permissive +owner: Phorum +homepage_url: http://www.phorum.org/license.txt +spdx_license_key: LicenseRef-scancode-phorum-2.0 +text_urls: + - http://www.phorum.org/license.txt +other_urls: + - http://phorum.org/ +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2001 The Phorum Development Team + - copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation + - The Phorum Development Team +ignorable_authors: + - the Phorum Development Team (http://phorum.org/) +ignorable_urls: + - http://phorum.org/ + - http://www.apache.org/ +ignorable_emails: + - core@phorum.org +--- + The Phorum License 2.0. Copyright (c) 2001 The Phorum Development Team. All rights @@ -59,4 +87,4 @@ The original version of the license is copyright (c) 2000 The Apache Software Foundation. All rights reserved. For more information on the Apache Software Foundation, please -see . +see . \ No newline at end of file diff --git a/src/licensedcode/data/licenses/phorum-2.0.yml b/src/licensedcode/data/licenses/phorum-2.0.yml deleted file mode 100644 index f0b64f9a151..00000000000 --- a/src/licensedcode/data/licenses/phorum-2.0.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: phorum-2.0 -short_name: Phorum License 2.0 -name: Phorum License 2.0 -category: Permissive -owner: Phorum -homepage_url: http://www.phorum.org/license.txt -spdx_license_key: LicenseRef-scancode-phorum-2.0 -text_urls: - - http://www.phorum.org/license.txt -other_urls: - - http://phorum.org/ -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2001 The Phorum Development Team - - copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation - - The Phorum Development Team -ignorable_authors: - - the Phorum Development Team (http://phorum.org/) -ignorable_urls: - - http://phorum.org/ - - http://www.apache.org/ -ignorable_emails: - - core@phorum.org diff --git a/src/licensedcode/data/licenses/php-2.0.2.LICENSE b/src/licensedcode/data/licenses/php-2.0.2.LICENSE index af5b01c49aa..e325cdbce5e 100644 --- a/src/licensedcode/data/licenses/php-2.0.2.LICENSE +++ b/src/licensedcode/data/licenses/php-2.0.2.LICENSE @@ -1,3 +1,25 @@ +--- +key: php-2.0.2 +short_name: PHP License 2.0.2 +name: PHP License 2.0.2 +category: Permissive +owner: PHP Project +homepage_url: http://www.php.net/license/2_02.txt +spdx_license_key: LicenseRef-scancode-php-2.0.2 +osi_url: http://www.opensource.org/licenses/php.html +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1999 - 2002 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.php.net/license/ZendGrant + - http://www.zend.com/license/ZendLicense +ignorable_emails: + - group@php.net +--- + -------------------------------------------------------------------- The PHP License, version 2.02 Copyright (c) 1999 - 2002 The PHP Group. All rights reserved. @@ -72,4 +94,4 @@ individuals on behalf of the PHP Group. The PHP Group can be contacted via Email at group@php.net. For more information on the PHP Group and the PHP project, -please see . +please see . \ No newline at end of file diff --git a/src/licensedcode/data/licenses/php-2.0.2.yml b/src/licensedcode/data/licenses/php-2.0.2.yml deleted file mode 100644 index 537643ac7b2..00000000000 --- a/src/licensedcode/data/licenses/php-2.0.2.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: php-2.0.2 -short_name: PHP License 2.0.2 -name: PHP License 2.0.2 -category: Permissive -owner: PHP Project -homepage_url: http://www.php.net/license/2_02.txt -spdx_license_key: LicenseRef-scancode-php-2.0.2 -osi_url: http://www.opensource.org/licenses/php.html -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1999 - 2002 The PHP Group -ignorable_holders: - - The PHP Group -ignorable_urls: - - http://www.php.net/ - - http://www.php.net/license/ZendGrant - - http://www.zend.com/license/ZendLicense -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/licenses/php-3.0.LICENSE b/src/licensedcode/data/licenses/php-3.0.LICENSE index 6fc5fc7ae1f..ccb3e741a74 100644 --- a/src/licensedcode/data/licenses/php-3.0.LICENSE +++ b/src/licensedcode/data/licenses/php-3.0.LICENSE @@ -1,3 +1,32 @@ +--- +key: php-3.0 +short_name: PHP License 3.0 +name: PHP License 3.0 +category: Permissive +owner: PHP Project +homepage_url: http://www.php.net/license/ +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: PHP-3.0 +text_urls: + - http://www.php.net/license/ +osi_url: http://www.opensource.org/licenses/php.html +faq_url: http://www.php.net/license/index.php#faq-lic +other_urls: + - http://www.opensource.org/licenses/PHP-3.0 + - http://www.php.net/license/3_0.txt + - https://opensource.org/licenses/PHP-3.0 +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1999 - 2006 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.zend.com/ +ignorable_emails: + - group@php.net +--- + -------------------------------------------------------------------- The PHP License, version 3.0 Copyright (c) 1999 - 2006 The PHP Group. All rights reserved. diff --git a/src/licensedcode/data/licenses/php-3.0.yml b/src/licensedcode/data/licenses/php-3.0.yml deleted file mode 100644 index ecc25f480ee..00000000000 --- a/src/licensedcode/data/licenses/php-3.0.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: php-3.0 -short_name: PHP License 3.0 -name: PHP License 3.0 -category: Permissive -owner: PHP Project -homepage_url: http://www.php.net/license/ -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: PHP-3.0 -text_urls: - - http://www.php.net/license/ -osi_url: http://www.opensource.org/licenses/php.html -faq_url: http://www.php.net/license/index.php#faq-lic -other_urls: - - http://www.opensource.org/licenses/PHP-3.0 - - http://www.php.net/license/3_0.txt - - https://opensource.org/licenses/PHP-3.0 -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1999 - 2006 The PHP Group -ignorable_holders: - - The PHP Group -ignorable_urls: - - http://www.php.net/ - - http://www.zend.com/ -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/licenses/php-3.01.LICENSE b/src/licensedcode/data/licenses/php-3.01.LICENSE index 319219b6fe1..6acf238a49e 100644 --- a/src/licensedcode/data/licenses/php-3.01.LICENSE +++ b/src/licensedcode/data/licenses/php-3.01.LICENSE @@ -1,3 +1,33 @@ +--- +key: php-3.01 +short_name: PHP License 3.01 +name: PHP License 3.01 +category: Permissive +owner: PHP Project +homepage_url: http://www.php.net/license/3_01.txt +notes: | + Per SPDX.org, the PHP License v3.01 is essentially the same as v3.0, with + the exceoption of a couple word differences and updated url in section 6. + v3.01 came into use with PHP version 4 and onward. +spdx_license_key: PHP-3.01 +text_urls: + - http://www.php.net/license/3_01.txt +other_urls: + - http://www.php.net/software/ + - http://www.zend.com +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1999 - 2012 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.php.net/software/ + - http://www.zend.com/ +ignorable_emails: + - group@php.net +--- + The PHP License, version 3.01 Copyright (c) 1999 - 2012 The PHP Group. All rights reserved. diff --git a/src/licensedcode/data/licenses/php-3.01.yml b/src/licensedcode/data/licenses/php-3.01.yml deleted file mode 100644 index 329ad625c46..00000000000 --- a/src/licensedcode/data/licenses/php-3.01.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: php-3.01 -short_name: PHP License 3.01 -name: PHP License 3.01 -category: Permissive -owner: PHP Project -homepage_url: http://www.php.net/license/3_01.txt -notes: | - Per SPDX.org, the PHP License v3.01 is essentially the same as v3.0, with - the exceoption of a couple word differences and updated url in section 6. - v3.01 came into use with PHP version 4 and onward. -spdx_license_key: PHP-3.01 -text_urls: - - http://www.php.net/license/3_01.txt -other_urls: - - http://www.php.net/software/ - - http://www.zend.com -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1999 - 2012 The PHP Group -ignorable_holders: - - The PHP Group -ignorable_urls: - - http://www.php.net/ - - http://www.php.net/software/ - - http://www.zend.com/ -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/licenses/pine.LICENSE b/src/licensedcode/data/licenses/pine.LICENSE index 48f37f41591..5446c1c1cfe 100644 --- a/src/licensedcode/data/licenses/pine.LICENSE +++ b/src/licensedcode/data/licenses/pine.LICENSE @@ -1,3 +1,21 @@ +--- +key: pine +short_name: Pine License +name: Pine License +category: Permissive +owner: University of Washington IT +homepage_url: http://www.washington.edu/pine/overview/legal.html +spdx_license_key: LicenseRef-scancode-pine +text_urls: + - http://www.washington.edu/pine/overview/legal.html +other_urls: + - http://www.washington.edu/pine/ +ignorable_copyrights: + - Copyright 1989-2007 by the University of Washington +ignorable_holders: + - the University of Washington +--- + Pine License and Legal Notices Pine and Pico are registered trademarks of the University of Washington. No commercial use of these diff --git a/src/licensedcode/data/licenses/pine.yml b/src/licensedcode/data/licenses/pine.yml deleted file mode 100644 index 39165881c0e..00000000000 --- a/src/licensedcode/data/licenses/pine.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: pine -short_name: Pine License -name: Pine License -category: Permissive -owner: University of Washington IT -homepage_url: http://www.washington.edu/pine/overview/legal.html -spdx_license_key: LicenseRef-scancode-pine -text_urls: - - http://www.washington.edu/pine/overview/legal.html -other_urls: - - http://www.washington.edu/pine/ -ignorable_copyrights: - - Copyright 1989-2007 by the University of Washington -ignorable_holders: - - the University of Washington diff --git a/src/licensedcode/data/licenses/pivotal-tou.LICENSE b/src/licensedcode/data/licenses/pivotal-tou.LICENSE index df0fb3301d7..aaac9af0852 100644 --- a/src/licensedcode/data/licenses/pivotal-tou.LICENSE +++ b/src/licensedcode/data/licenses/pivotal-tou.LICENSE @@ -1,3 +1,16 @@ +--- +key: pivotal-tou +short_name: Pivotal Software Terms of Use +name: Pivotal Software Terms of Use +category: Commercial +owner: Pivotal +homepage_url: https://pivotal.io/terms-of-use +spdx_license_key: LicenseRef-scancode-pivotal-tou +minimum_coverage: 90 +ignorable_urls: + - https://pivotal.io/terms-of-use +--- + Pivotal Software, Inc. Terms of Use See https://pivotal.io/terms-of-use for complete text. diff --git a/src/licensedcode/data/licenses/pivotal-tou.yml b/src/licensedcode/data/licenses/pivotal-tou.yml deleted file mode 100644 index dae7f887598..00000000000 --- a/src/licensedcode/data/licenses/pivotal-tou.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: pivotal-tou -short_name: Pivotal Software Terms of Use -name: Pivotal Software Terms of Use -category: Commercial -owner: Pivotal -homepage_url: https://pivotal.io/terms-of-use -spdx_license_key: LicenseRef-scancode-pivotal-tou -minimum_coverage: 90 -ignorable_urls: - - https://pivotal.io/terms-of-use diff --git a/src/licensedcode/data/licenses/pixabay-content.LICENSE b/src/licensedcode/data/licenses/pixabay-content.LICENSE index 9c6da5be1c3..b4832cadebe 100644 --- a/src/licensedcode/data/licenses/pixabay-content.LICENSE +++ b/src/licensedcode/data/licenses/pixabay-content.LICENSE @@ -1,3 +1,13 @@ +--- +key: pixabay-content +short_name: Pixabay Content License +name: Pixabay Content License +category: Free Restricted +owner: Pixabay +homepage_url: https://pixabay.com/service/terms/#license +spdx_license_key: LicenseRef-scancode-pixabay-content +--- + License for Content – Pixabay License Content on Pixabay is made available to you on the following terms ("Pixabay License"). Under the Pixabay License you are granted an irrevocable, worldwide, non-exclusive and royalty free right to use, download, copy, modify or adapt the Content for commercial or non-commercial purposes. Attribution of the photographer, videographer, musician or Pixabay is not required but is always appreciated. diff --git a/src/licensedcode/data/licenses/pixabay-content.yml b/src/licensedcode/data/licenses/pixabay-content.yml deleted file mode 100644 index 597a76f7863..00000000000 --- a/src/licensedcode/data/licenses/pixabay-content.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: pixabay-content -short_name: Pixabay Content License -name: Pixabay Content License -category: Free Restricted -owner: Pixabay -homepage_url: https://pixabay.com/service/terms/#license -spdx_license_key: LicenseRef-scancode-pixabay-content diff --git a/src/licensedcode/data/licenses/planet-source-code.LICENSE b/src/licensedcode/data/licenses/planet-source-code.LICENSE index 49ee30b7708..9b0aa94b171 100644 --- a/src/licensedcode/data/licenses/planet-source-code.LICENSE +++ b/src/licensedcode/data/licenses/planet-source-code.LICENSE @@ -1,3 +1,12 @@ +--- +key: planet-source-code +short_name: Planet Source Code License +name: Planet Source Code License +category: Free Restricted +owner: Planet Source Code +spdx_license_key: LicenseRef-scancode-planet-source-code +--- + Terms of Agreement: By using this code, you agree to the following terms... diff --git a/src/licensedcode/data/licenses/planet-source-code.yml b/src/licensedcode/data/licenses/planet-source-code.yml deleted file mode 100644 index 9a5ea6704f4..00000000000 --- a/src/licensedcode/data/licenses/planet-source-code.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: planet-source-code -short_name: Planet Source Code License -name: Planet Source Code License -category: Free Restricted -owner: Planet Source Code -spdx_license_key: LicenseRef-scancode-planet-source-code diff --git a/src/licensedcode/data/licenses/pml-2020.LICENSE b/src/licensedcode/data/licenses/pml-2020.LICENSE index 5b35038d22f..db3f7262d87 100644 --- a/src/licensedcode/data/licenses/pml-2020.LICENSE +++ b/src/licensedcode/data/licenses/pml-2020.LICENSE @@ -1,3 +1,15 @@ +--- +key: pml-2020 +short_name: Amazon PML 2020 +name: Amazon Program Materials License Agreement 2020 +category: Proprietary Free +owner: Amazon Web Services +homepage_url: https://developer.amazon.com/support/legal/pml +spdx_license_key: LicenseRef-scancode-pml-2020 +other_urls: + - https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L67 +--- + Last updated January 9, 2020 Current developers See what’s changed? diff --git a/src/licensedcode/data/licenses/pml-2020.yml b/src/licensedcode/data/licenses/pml-2020.yml deleted file mode 100644 index 2f05ba0fa26..00000000000 --- a/src/licensedcode/data/licenses/pml-2020.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: pml-2020 -short_name: Amazon PML 2020 -name: Amazon Program Materials License Agreement 2020 -category: Proprietary Free -owner: Amazon Web Services -homepage_url: https://developer.amazon.com/support/legal/pml -spdx_license_key: LicenseRef-scancode-pml-2020 -other_urls: - - https://github.com/alexa/avs-device-sdk/blob/703b06188eae146af396f58be4e47442d7ce5b1e/NOTICE.txt#L67 diff --git a/src/licensedcode/data/licenses/pngsuite.LICENSE b/src/licensedcode/data/licenses/pngsuite.LICENSE index ddd8f418577..d636987c083 100644 --- a/src/licensedcode/data/licenses/pngsuite.LICENSE +++ b/src/licensedcode/data/licenses/pngsuite.LICENSE @@ -1,2 +1,11 @@ +--- +key: pngsuite +short_name: PngSuite License +name: PngSuite License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-pngsuite +--- + Permission to use, copy, modify and distribute these images for any -purpose and without fee is hereby granted. +purpose and without fee is hereby granted. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pngsuite.yml b/src/licensedcode/data/licenses/pngsuite.yml deleted file mode 100644 index 43e4fd4716e..00000000000 --- a/src/licensedcode/data/licenses/pngsuite.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: pngsuite -short_name: PngSuite License -name: PngSuite License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-pngsuite diff --git a/src/licensedcode/data/licenses/politepix-pl-1.0.LICENSE b/src/licensedcode/data/licenses/politepix-pl-1.0.LICENSE index c7f231e651f..4167bfbffb9 100644 --- a/src/licensedcode/data/licenses/politepix-pl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/politepix-pl-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: politepix-pl-1.0 +short_name: Politepix Public License 1.0 +name: Politepix Public License 1.0 +category: Permissive +owner: Politepix +homepage_url: https://raw.githubusercontent.com/smkgeekfreak/OpenEarsPlaypen/master/License.txt +spdx_license_key: LicenseRef-scancode-politepix-pl-1.0 +ignorable_urls: + - http://cmusphinx.sourceforge.net/ + - http://www.politepix.com/contact + - http://www.politepix.com/openears +--- + Politepix Public License version 1.0 Definitions diff --git a/src/licensedcode/data/licenses/politepix-pl-1.0.yml b/src/licensedcode/data/licenses/politepix-pl-1.0.yml deleted file mode 100644 index 44e7178c443..00000000000 --- a/src/licensedcode/data/licenses/politepix-pl-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: politepix-pl-1.0 -short_name: Politepix Public License 1.0 -name: Politepix Public License 1.0 -category: Permissive -owner: Politepix -homepage_url: https://raw.githubusercontent.com/smkgeekfreak/OpenEarsPlaypen/master/License.txt -spdx_license_key: LicenseRef-scancode-politepix-pl-1.0 -ignorable_urls: - - http://cmusphinx.sourceforge.net/ - - http://www.politepix.com/contact - - http://www.politepix.com/openears diff --git a/src/licensedcode/data/licenses/polyform-defensive-1.0.0.LICENSE b/src/licensedcode/data/licenses/polyform-defensive-1.0.0.LICENSE index 93f03489dc5..5ac56bc957e 100644 --- a/src/licensedcode/data/licenses/polyform-defensive-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/polyform-defensive-1.0.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: polyform-defensive-1.0.0 +is_deprecated: yes +short_name: PolyForm Defensive License 1.0.0 +name: PolyForm Defensive License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/defensive-licenses/1.0.0/ +notes: renamed to polyform-shield-1.0 +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/defensive/1.0.0 +--- + # PolyForm Defensive License 1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-defensive-1.0.0.yml b/src/licensedcode/data/licenses/polyform-defensive-1.0.0.yml deleted file mode 100644 index 9cd86bc7ab7..00000000000 --- a/src/licensedcode/data/licenses/polyform-defensive-1.0.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: polyform-defensive-1.0.0 -is_deprecated: yes -short_name: PolyForm Defensive License 1.0.0 -name: PolyForm Defensive License 1.0.0 -category: Source-available -owner: Polyform -homepage_url: https://polyformproject.org/licenses/defensive-licenses/1.0.0/ -notes: renamed to polyform-shield-1.0 -ignorable_copyrights: - - Copyright Yoyodyne, Inc. (http://example.com) -ignorable_holders: - - Yoyodyne, Inc. -ignorable_urls: - - https://polyformproject.org/licenses/defensive/1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-free-trial-1.0.0.LICENSE b/src/licensedcode/data/licenses/polyform-free-trial-1.0.0.LICENSE index 78e8552ecfa..5c6324b1b75 100644 --- a/src/licensedcode/data/licenses/polyform-free-trial-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/polyform-free-trial-1.0.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: polyform-free-trial-1.0.0 +short_name: Polyform Free Trial License 1.0.0 +name: Polyform Free Trial License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/free-trial/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-free-trial-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Free-Trial-1.0.0.txt +ignorable_urls: + - https://polyformproject.org/licenses/free-trial/1.0.0 +--- + # Polyform Free Trial License 1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-free-trial-1.0.0.yml b/src/licensedcode/data/licenses/polyform-free-trial-1.0.0.yml deleted file mode 100644 index 05e4af5014e..00000000000 --- a/src/licensedcode/data/licenses/polyform-free-trial-1.0.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: polyform-free-trial-1.0.0 -short_name: Polyform Free Trial License 1.0.0 -name: Polyform Free Trial License 1.0.0 -category: Source-available -owner: Polyform -homepage_url: https://polyformproject.org/licenses/free-trial/1.0.0/ -spdx_license_key: LicenseRef-scancode-polyform-free-trial-1.0.0 -text_urls: - - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Free-Trial-1.0.0.txt -ignorable_urls: - - https://polyformproject.org/licenses/free-trial/1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-internal-use-1.0.0.LICENSE b/src/licensedcode/data/licenses/polyform-internal-use-1.0.0.LICENSE index b7aadd6aa4f..b1df6610f7f 100644 --- a/src/licensedcode/data/licenses/polyform-internal-use-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/polyform-internal-use-1.0.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: polyform-internal-use-1.0.0 +short_name: Polyform Internal Use License 1.0.0 +name: Polyform Internal Use License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/internal-use/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-internal-use-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Internal-Use-1.0.0.txt +ignorable_urls: + - https://polyformproject.org/licenses/internal-use/1.0.0 +--- + # Polyform Internal Use License 1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-internal-use-1.0.0.yml b/src/licensedcode/data/licenses/polyform-internal-use-1.0.0.yml deleted file mode 100644 index 02dbe84729e..00000000000 --- a/src/licensedcode/data/licenses/polyform-internal-use-1.0.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: polyform-internal-use-1.0.0 -short_name: Polyform Internal Use License 1.0.0 -name: Polyform Internal Use License 1.0.0 -category: Source-available -owner: Polyform -homepage_url: https://polyformproject.org/licenses/internal-use/1.0.0/ -spdx_license_key: LicenseRef-scancode-polyform-internal-use-1.0.0 -text_urls: - - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Internal-Use-1.0.0.txt -ignorable_urls: - - https://polyformproject.org/licenses/internal-use/1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-noncommercial-1.0.0.LICENSE b/src/licensedcode/data/licenses/polyform-noncommercial-1.0.0.LICENSE index 6a25e1654d3..1a0028412ad 100644 --- a/src/licensedcode/data/licenses/polyform-noncommercial-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/polyform-noncommercial-1.0.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: polyform-noncommercial-1.0.0 +short_name: Polyform Noncommercial License 1.0.0 +name: Polyform Noncommercial License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/noncommercial/1.0.0/ +spdx_license_key: PolyForm-Noncommercial-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Noncommercial-1.0.0.txt +other_urls: + - https://polyformproject.org/licenses/noncommercial/1.0.0 +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/noncommercial/1.0.0 +--- + # Polyform Noncommercial License 1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-noncommercial-1.0.0.yml b/src/licensedcode/data/licenses/polyform-noncommercial-1.0.0.yml deleted file mode 100644 index 26d20910268..00000000000 --- a/src/licensedcode/data/licenses/polyform-noncommercial-1.0.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: polyform-noncommercial-1.0.0 -short_name: Polyform Noncommercial License 1.0.0 -name: Polyform Noncommercial License 1.0.0 -category: Source-available -owner: Polyform -homepage_url: https://polyformproject.org/licenses/noncommercial/1.0.0/ -spdx_license_key: PolyForm-Noncommercial-1.0.0 -text_urls: - - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Noncommercial-1.0.0.txt -other_urls: - - https://polyformproject.org/licenses/noncommercial/1.0.0 -ignorable_copyrights: - - Copyright Yoyodyne, Inc. (http://example.com) -ignorable_holders: - - Yoyodyne, Inc. -ignorable_urls: - - https://polyformproject.org/licenses/noncommercial/1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-perimeter-1.0.0.LICENSE b/src/licensedcode/data/licenses/polyform-perimeter-1.0.0.LICENSE index 017a3d45ec1..86b532a5a73 100644 --- a/src/licensedcode/data/licenses/polyform-perimeter-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/polyform-perimeter-1.0.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: polyform-perimeter-1.0.0 +short_name: PolyForm Perimeter License 1.0.0 +name: PolyForm Perimeter License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/perimeter/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-perimeter-1.0.0 +other_urls: + - https://heathermeeker.com/2020/05/25/polyform-project-launches-licenses-limiting-competitive-uses-of-software/ +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/perimeter/1.0.0 +--- + # PolyForm Perimeter License 1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-perimeter-1.0.0.yml b/src/licensedcode/data/licenses/polyform-perimeter-1.0.0.yml deleted file mode 100644 index 7a428a2bd4b..00000000000 --- a/src/licensedcode/data/licenses/polyform-perimeter-1.0.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: polyform-perimeter-1.0.0 -short_name: PolyForm Perimeter License 1.0.0 -name: PolyForm Perimeter License 1.0.0 -category: Source-available -owner: Polyform -homepage_url: https://polyformproject.org/licenses/perimeter/1.0.0/ -spdx_license_key: LicenseRef-scancode-polyform-perimeter-1.0.0 -other_urls: - - https://heathermeeker.com/2020/05/25/polyform-project-launches-licenses-limiting-competitive-uses-of-software/ -ignorable_copyrights: - - Copyright Yoyodyne, Inc. (http://example.com) -ignorable_holders: - - Yoyodyne, Inc. -ignorable_urls: - - https://polyformproject.org/licenses/perimeter/1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-shield-1.0.0.LICENSE b/src/licensedcode/data/licenses/polyform-shield-1.0.0.LICENSE index 3f09b052c0f..f5b65469cee 100644 --- a/src/licensedcode/data/licenses/polyform-shield-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/polyform-shield-1.0.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: polyform-shield-1.0.0 +short_name: Polyform Shield License 1.0.0 +name: Polyform Shield License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/shield/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-shield-1.0.0 +other_spdx_license_keys: + - LicenseRef-scancode-polyform-defensive-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/shield/1.0.0 +--- + # PolyForm Shield License 1.0.0 @@ -161,4 +181,4 @@ indirect. software under these terms. **Use** means anything you do with the software requiring one -of your licenses. +of your licenses. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/polyform-shield-1.0.0.yml b/src/licensedcode/data/licenses/polyform-shield-1.0.0.yml deleted file mode 100644 index 5434ad553e7..00000000000 --- a/src/licensedcode/data/licenses/polyform-shield-1.0.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: polyform-shield-1.0.0 -short_name: Polyform Shield License 1.0.0 -name: Polyform Shield License 1.0.0 -category: Source-available -owner: Polyform -homepage_url: https://polyformproject.org/licenses/shield/1.0.0/ -spdx_license_key: LicenseRef-scancode-polyform-shield-1.0.0 -other_spdx_license_keys: - - LicenseRef-scancode-polyform-defensive-1.0.0 -text_urls: - - https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt -ignorable_copyrights: - - Copyright Yoyodyne, Inc. (http://example.com) -ignorable_holders: - - Yoyodyne, Inc. -ignorable_urls: - - https://polyformproject.org/licenses/shield/1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-small-business-1.0.0.LICENSE b/src/licensedcode/data/licenses/polyform-small-business-1.0.0.LICENSE index 3ddff5fa523..e8cf067b134 100644 --- a/src/licensedcode/data/licenses/polyform-small-business-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/polyform-small-business-1.0.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: polyform-small-business-1.0.0 +short_name: Polyform Small Business License 1.0.0 +name: Polyform Small Business License 1.0.0 +category: Source-available +owner: Polyform +homepage_url: https://polyformproject.org/licenses/small-business/1.0.0/ +spdx_license_key: PolyForm-Small-Business-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Small-Business-1.0.0.txt +other_urls: + - https://polyformproject.org/licenses/small-business/1.0.0 +ignorable_copyrights: + - Copyright Yoyodyne, Inc. (http://example.com) +ignorable_holders: + - Yoyodyne, Inc. +ignorable_urls: + - https://polyformproject.org/licenses/small-business/1.0.0 +--- + # Polyform Small Business License 1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-small-business-1.0.0.yml b/src/licensedcode/data/licenses/polyform-small-business-1.0.0.yml deleted file mode 100644 index 143d586399c..00000000000 --- a/src/licensedcode/data/licenses/polyform-small-business-1.0.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: polyform-small-business-1.0.0 -short_name: Polyform Small Business License 1.0.0 -name: Polyform Small Business License 1.0.0 -category: Source-available -owner: Polyform -homepage_url: https://polyformproject.org/licenses/small-business/1.0.0/ -spdx_license_key: PolyForm-Small-Business-1.0.0 -text_urls: - - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Small-Business-1.0.0.txt -other_urls: - - https://polyformproject.org/licenses/small-business/1.0.0 -ignorable_copyrights: - - Copyright Yoyodyne, Inc. (http://example.com) -ignorable_holders: - - Yoyodyne, Inc. -ignorable_urls: - - https://polyformproject.org/licenses/small-business/1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-strict-1.0.0.LICENSE b/src/licensedcode/data/licenses/polyform-strict-1.0.0.LICENSE index f531e3eb9fb..dfe5bf50e50 100644 --- a/src/licensedcode/data/licenses/polyform-strict-1.0.0.LICENSE +++ b/src/licensedcode/data/licenses/polyform-strict-1.0.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: polyform-strict-1.0.0 +short_name: Polyform Strict License 1.0.0 +name: Polyform Strict License 1.0.0 +category: Proprietary Free +owner: Polyform +homepage_url: https://polyformproject.org/licenses/strict/1.0.0/ +spdx_license_key: LicenseRef-scancode-polyform-strict-1.0.0 +text_urls: + - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Strict-1.0.0.txt +ignorable_urls: + - https://polyformproject.org/licenses/strict/1.0.0 +--- + # Polyform Strict License 1.0.0 diff --git a/src/licensedcode/data/licenses/polyform-strict-1.0.0.yml b/src/licensedcode/data/licenses/polyform-strict-1.0.0.yml deleted file mode 100644 index 527c6e9ed23..00000000000 --- a/src/licensedcode/data/licenses/polyform-strict-1.0.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: polyform-strict-1.0.0 -short_name: Polyform Strict License 1.0.0 -name: Polyform Strict License 1.0.0 -category: Proprietary Free -owner: Polyform -homepage_url: https://polyformproject.org/licenses/strict/1.0.0/ -spdx_license_key: LicenseRef-scancode-polyform-strict-1.0.0 -text_urls: - - https://polyformproject.org/wp-content/uploads/2019/07/Polyform-Strict-1.0.0.txt -ignorable_urls: - - https://polyformproject.org/licenses/strict/1.0.0 diff --git a/src/licensedcode/data/licenses/postgresql.LICENSE b/src/licensedcode/data/licenses/postgresql.LICENSE index 0ed1c43bc21..aa5f14587d6 100644 --- a/src/licensedcode/data/licenses/postgresql.LICENSE +++ b/src/licensedcode/data/licenses/postgresql.LICENSE @@ -1,3 +1,27 @@ +--- +key: postgresql +short_name: PostgreSQL License +name: PostgreSQL License +category: Permissive +owner: PostgreSQL +homepage_url: http://www.postgresql.org/about/licence +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: PostgreSQL +text_urls: + - http://www.opensource.org/licenses/postgresql + - http://www.postgresql.org/about/licence +osi_url: http://www.opensource.org/licenses/postgresql +other_urls: + - http://www.opensource.org/licenses/PostgreSQL + - https://opensource.org/licenses/PostgreSQL +ignorable_copyrights: + - Portions Copyright (c) 1994, The Regents of the University of California + - Portions Copyright (c) The PostgreSQL Global Development Group +ignorable_holders: + - The PostgreSQL Global Development Group + - The Regents of the University of California +--- + PostgreSQL is released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or MIT licenses. PostgreSQL Database Management System diff --git a/src/licensedcode/data/licenses/postgresql.yml b/src/licensedcode/data/licenses/postgresql.yml deleted file mode 100644 index 02ab4089487..00000000000 --- a/src/licensedcode/data/licenses/postgresql.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: postgresql -short_name: PostgreSQL License -name: PostgreSQL License -category: Permissive -owner: PostgreSQL -homepage_url: http://www.postgresql.org/about/licence -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: PostgreSQL -text_urls: - - http://www.opensource.org/licenses/postgresql - - http://www.postgresql.org/about/licence -osi_url: http://www.opensource.org/licenses/postgresql -other_urls: - - http://www.opensource.org/licenses/PostgreSQL - - https://opensource.org/licenses/PostgreSQL -ignorable_copyrights: - - Portions Copyright (c) 1994, The Regents of the University of California - - Portions Copyright (c) The PostgreSQL Global Development Group -ignorable_holders: - - The PostgreSQL Global Development Group - - The Regents of the University of California diff --git a/src/licensedcode/data/licenses/powervr-tools-software-eula.LICENSE b/src/licensedcode/data/licenses/powervr-tools-software-eula.LICENSE index 03de3cc6019..a3b5860a4b6 100644 --- a/src/licensedcode/data/licenses/powervr-tools-software-eula.LICENSE +++ b/src/licensedcode/data/licenses/powervr-tools-software-eula.LICENSE @@ -1,3 +1,16 @@ +--- +key: powervr-tools-software-eula +short_name: PowerVR Tools Software EULA +name: PowerVR Tools Software End User License Agreement +category: Proprietary Free +owner: Imagination +homepage_url: https://www.imgtec.com/developers/powervr-sdk-tools/powervr-tools-software-eula/ +spdx_license_key: LicenseRef-scancode-powervr-tools-software-eula +standard_notice: | + PLEASE READ THIS AGREEMENT CAREFULLY. BY USING ANY PORTION OF THE POWERVR + TOOLS SOFTWARE YOU WILL BE LEGALLY BOUND TO THESE TERMS. +--- + Imagination Technologies Limited ("Imagination") provides this Software subject to the terms of this Agreement. If you do not agree with any of these terms, then do not install or otherwise use the Software. Definitions diff --git a/src/licensedcode/data/licenses/powervr-tools-software-eula.yml b/src/licensedcode/data/licenses/powervr-tools-software-eula.yml deleted file mode 100644 index 428886bfae5..00000000000 --- a/src/licensedcode/data/licenses/powervr-tools-software-eula.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: powervr-tools-software-eula -short_name: PowerVR Tools Software EULA -name: PowerVR Tools Software End User License Agreement -category: Proprietary Free -owner: Imagination -homepage_url: https://www.imgtec.com/developers/powervr-sdk-tools/powervr-tools-software-eula/ -spdx_license_key: LicenseRef-scancode-powervr-tools-software-eula -standard_notice: | - PLEASE READ THIS AGREEMENT CAREFULLY. BY USING ANY PORTION OF THE POWERVR - TOOLS SOFTWARE YOU WILL BE LEGALLY BOUND TO THESE TERMS. diff --git a/src/licensedcode/data/licenses/ppp.LICENSE b/src/licensedcode/data/licenses/ppp.LICENSE index 5d2d4292ec1..adbb97b0cb0 100644 --- a/src/licensedcode/data/licenses/ppp.LICENSE +++ b/src/licensedcode/data/licenses/ppp.LICENSE @@ -1,3 +1,13 @@ +--- +key: ppp +short_name: ppp License +name: ppp License +category: Permissive +owner: globalban Project +homepage_url: http://www.scs.stanford.edu/histar/src/pkg/lwip/netif/ppp/pppdebug.h +spdx_license_key: LicenseRef-scancode-ppp +--- + The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and @@ -15,4 +25,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ppp.yml b/src/licensedcode/data/licenses/ppp.yml deleted file mode 100644 index 496e23dbda1..00000000000 --- a/src/licensedcode/data/licenses/ppp.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ppp -short_name: ppp License -name: ppp License -category: Permissive -owner: globalban Project -homepage_url: http://www.scs.stanford.edu/histar/src/pkg/lwip/netif/ppp/pppdebug.h -spdx_license_key: LicenseRef-scancode-ppp diff --git a/src/licensedcode/data/licenses/proguard-exception-2.0.LICENSE b/src/licensedcode/data/licenses/proguard-exception-2.0.LICENSE index e6d2f9f5871..5465f275da8 100644 --- a/src/licensedcode/data/licenses/proguard-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/proguard-exception-2.0.LICENSE @@ -1,3 +1,40 @@ +--- +key: proguard-exception-2.0 +short_name: ProGuard exception to GPL 2.0 +name: ProGuard exception to GPL 2.0 +category: Copyleft Limited +owner: ProGuard Project +homepage_url: http://proguard.sourceforge.net/index.html#license.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-proguard-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + License + ProGuard is free. You can use it freely for processing your applications, + commercial or not. Your code obviously remains yours after having been + processed, and its license can remain the same. + The ProGuard code itself is copyrighted, but its distribution license + provides you with some rights for modifying and redistributing its code and + its documentation. More specifically, ProGuard is distributed under the + terms of the GNU General Public License (GPL), version 2, as published by + the Free Software Foundation (FSF). In short, this means that you may + freely redistribute the program, modified or as is, on the condition that + you make the complete source code available as well. If you develop a + program that is linked with ProGuard, the program as a whole has to be + distributed at no charge under the GPL. I am granting a special exception + to the latter clause (in wording suggested by the FSF), for combinations + with the following stand-alone applications: Apache Ant, Apache Maven, the + Google Android SDK, the Eclipse ProGuardDT GUI, the EclipseME JME IDE, the + Oracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the Intel TXE + SDK, the Simple Build Tool for Scala, the NeoMAD Tools by Neomades, the + Javaground Tools, and the Sanaware Tools. + The ProGuard user documentation is copyrighted as well. It may only be + redistributed without changes, along with the unmodified version of the + code. + Copyright © 2002-2013 Eric Lafortune. +--- + ProGuard is free. You can use it freely for processing your applications, commercial or not. Your code obviously remains yours after having been processed, and its license can remain the same. diff --git a/src/licensedcode/data/licenses/proguard-exception-2.0.yml b/src/licensedcode/data/licenses/proguard-exception-2.0.yml deleted file mode 100644 index e55cbf13330..00000000000 --- a/src/licensedcode/data/licenses/proguard-exception-2.0.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: proguard-exception-2.0 -short_name: ProGuard exception to GPL 2.0 -name: ProGuard exception to GPL 2.0 -category: Copyleft Limited -owner: ProGuard Project -homepage_url: http://proguard.sourceforge.net/index.html#license.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-proguard-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - License - ProGuard is free. You can use it freely for processing your applications, - commercial or not. Your code obviously remains yours after having been - processed, and its license can remain the same. - The ProGuard code itself is copyrighted, but its distribution license - provides you with some rights for modifying and redistributing its code and - its documentation. More specifically, ProGuard is distributed under the - terms of the GNU General Public License (GPL), version 2, as published by - the Free Software Foundation (FSF). In short, this means that you may - freely redistribute the program, modified or as is, on the condition that - you make the complete source code available as well. If you develop a - program that is linked with ProGuard, the program as a whole has to be - distributed at no charge under the GPL. I am granting a special exception - to the latter clause (in wording suggested by the FSF), for combinations - with the following stand-alone applications: Apache Ant, Apache Maven, the - Google Android SDK, the Eclipse ProGuardDT GUI, the EclipseME JME IDE, the - Oracle NetBeans Java IDE, the Oracle JME Wireless Toolkit, the Intel TXE - SDK, the Simple Build Tool for Scala, the NeoMAD Tools by Neomades, the - Javaground Tools, and the Sanaware Tools. - The ProGuard user documentation is copyrighted as well. It may only be - redistributed without changes, along with the unmodified version of the - code. - Copyright © 2002-2013 Eric Lafortune. diff --git a/src/licensedcode/data/licenses/proprietary-license.LICENSE b/src/licensedcode/data/licenses/proprietary-license.LICENSE index 7203d72eead..865270c0b10 100644 --- a/src/licensedcode/data/licenses/proprietary-license.LICENSE +++ b/src/licensedcode/data/licenses/proprietary-license.LICENSE @@ -1,3 +1,19 @@ +--- +key: proprietary-license +short_name: Proprietary License +name: Proprietary License +category: Commercial +owner: Unspecified +notes: replaces the proprietary key npm before 3.1 recommended this "If you are using a license + that hasn't been assigned an SPDX identifier, or if you are using a custom license, use + the following valid SPDX expression "LicenseRef-LICENSE" +is_generic: yes +spdx_license_key: LicenseRef-scancode-proprietary-license +other_spdx_license_keys: + - LicenseRef-LICENSE + - LicenseRef-LICENSE.md +--- + This component is normally licensed under a proprietary license agreement with a supplier that has terms and conditions that restrict the use of the code, but may not require payment to the supplier. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/proprietary-license.yml b/src/licensedcode/data/licenses/proprietary-license.yml deleted file mode 100644 index ee276a31166..00000000000 --- a/src/licensedcode/data/licenses/proprietary-license.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: proprietary-license -short_name: Proprietary License -name: Proprietary License -category: Commercial -owner: Unspecified -notes: replaces the proprietary key npm before 3.1 recommended this "If you are using a license - that hasn't been assigned an SPDX identifier, or if you are using a custom license, use - the following valid SPDX expression "LicenseRef-LICENSE" -is_generic: yes -spdx_license_key: LicenseRef-scancode-proprietary-license -other_spdx_license_keys: - - LicenseRef-LICENSE - - LicenseRef-LICENSE.md diff --git a/src/licensedcode/data/licenses/proprietary.LICENSE b/src/licensedcode/data/licenses/proprietary.LICENSE new file mode 100644 index 00000000000..3b8f9b9f55b --- /dev/null +++ b/src/licensedcode/data/licenses/proprietary.LICENSE @@ -0,0 +1,10 @@ +--- +key: proprietary +is_deprecated: yes +short_name: Proprietary +name: Proprietary +category: Proprietary Free +owner: Unspecified +notes: see proprietary-license instead +is_generic: yes +--- diff --git a/src/licensedcode/data/licenses/proprietary.yml b/src/licensedcode/data/licenses/proprietary.yml deleted file mode 100644 index a03841e9c57..00000000000 --- a/src/licensedcode/data/licenses/proprietary.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: proprietary -is_deprecated: yes -short_name: Proprietary -name: Proprietary -category: Proprietary Free -owner: Unspecified -notes: see proprietary-license instead -is_generic: yes diff --git a/src/licensedcode/data/licenses/prosperity-1.0.1.LICENSE b/src/licensedcode/data/licenses/prosperity-1.0.1.LICENSE index d249c150e72..53b62b1b81b 100644 --- a/src/licensedcode/data/licenses/prosperity-1.0.1.LICENSE +++ b/src/licensedcode/data/licenses/prosperity-1.0.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: prosperity-1.0.1 +short_name: Prosperity Public License 1.0.1 +name: The Prosperity Public License 1.0.1 +category: Proprietary Free +owner: Kyle Mitchell +homepage_url: https://licensezero.com/licenses/prosperity +spdx_license_key: LicenseRef-scancode-prosperity-1.0.1 +text_urls: + - https://github.com/licensezero/prosperity-public-license/blob/master/LICENSE.mustache +other_urls: + - https://github.com/dependabot/dependabot-core/blob/master/LICENSE +--- + The Prosperity Public License 1.0.1 Copyright Notice: {Licensor Name} diff --git a/src/licensedcode/data/licenses/prosperity-1.0.1.yml b/src/licensedcode/data/licenses/prosperity-1.0.1.yml deleted file mode 100644 index 72a1738f266..00000000000 --- a/src/licensedcode/data/licenses/prosperity-1.0.1.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: prosperity-1.0.1 -short_name: Prosperity Public License 1.0.1 -name: The Prosperity Public License 1.0.1 -category: Proprietary Free -owner: Kyle Mitchell -homepage_url: https://licensezero.com/licenses/prosperity -spdx_license_key: LicenseRef-scancode-prosperity-1.0.1 -text_urls: - - https://github.com/licensezero/prosperity-public-license/blob/master/LICENSE.mustache -other_urls: - - https://github.com/dependabot/dependabot-core/blob/master/LICENSE diff --git a/src/licensedcode/data/licenses/prosperity-2.0.LICENSE b/src/licensedcode/data/licenses/prosperity-2.0.LICENSE index ff54bbebcfe..d2e5e09475c 100644 --- a/src/licensedcode/data/licenses/prosperity-2.0.LICENSE +++ b/src/licensedcode/data/licenses/prosperity-2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: prosperity-2.0 +short_name: Prosperity Public License 2.0 +name: The Prosperity Public License 2.0 +category: Source-available +owner: Kyle Mitchell +homepage_url: https://licensezero.com/licenses/prosperity +spdx_license_key: LicenseRef-scancode-prosperity-2.0 +text_urls: + - https://github.com/licensezero/prosperity-public-license/blob/v2.0.0/LICENSE.mustache +--- + The Prosperity Public License 2.0 Copyright Notice: {Licensor Name} @@ -36,4 +48,4 @@ learning you broke the rule. **This software comes as is, without any warranty at all. As far as the law allows, the contributor will not be liable for any damages related to this software or this license, for any kind of -legal claim.** +legal claim.** \ No newline at end of file diff --git a/src/licensedcode/data/licenses/prosperity-2.0.yml b/src/licensedcode/data/licenses/prosperity-2.0.yml deleted file mode 100644 index 893333acf68..00000000000 --- a/src/licensedcode/data/licenses/prosperity-2.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: prosperity-2.0 -short_name: Prosperity Public License 2.0 -name: The Prosperity Public License 2.0 -category: Source-available -owner: Kyle Mitchell -homepage_url: https://licensezero.com/licenses/prosperity -spdx_license_key: LicenseRef-scancode-prosperity-2.0 -text_urls: - - https://github.com/licensezero/prosperity-public-license/blob/v2.0.0/LICENSE.mustache diff --git a/src/licensedcode/data/licenses/prosperity-3.0.LICENSE b/src/licensedcode/data/licenses/prosperity-3.0.LICENSE index 430ae47fee4..ac8040b0825 100644 --- a/src/licensedcode/data/licenses/prosperity-3.0.LICENSE +++ b/src/licensedcode/data/licenses/prosperity-3.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: prosperity-3.0 +short_name: Prosperity Public License 3.0 +name: The Prosperity Public License 3.0 +category: Source-available +owner: Kyle Mitchell +homepage_url: https://licensezero.com/licenses/prosperity +spdx_license_key: LicenseRef-scancode-prosperity-3.0 +text_urls: + - https://raw.githubusercontent.com/licensezero/prosperity-public-license/v3.0.0/LICENSE.md +ignorable_urls: + - https://blueoakcouncil.org/license/1.0.0 + - https://spdx.org/licenses/BSD-2-Clause.html + - https://spdx.org/licenses/MIT.html + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + # The Prosperity Public License 3.0.0 Contributor: $name @@ -54,4 +71,4 @@ You're excused for unknowingly breaking [Notices](#notices) if you take all prac ## No Liability -***As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won't be liable to anyone for any damages related to this software or this license, under any kind of legal claim.*** +***As far as the law allows, this software comes as is, without any warranty or condition, and the contributor won't be liable to anyone for any damages related to this software or this license, under any kind of legal claim.*** \ No newline at end of file diff --git a/src/licensedcode/data/licenses/prosperity-3.0.yml b/src/licensedcode/data/licenses/prosperity-3.0.yml deleted file mode 100644 index 3f4e4d600df..00000000000 --- a/src/licensedcode/data/licenses/prosperity-3.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: prosperity-3.0 -short_name: Prosperity Public License 3.0 -name: The Prosperity Public License 3.0 -category: Source-available -owner: Kyle Mitchell -homepage_url: https://licensezero.com/licenses/prosperity -spdx_license_key: LicenseRef-scancode-prosperity-3.0 -text_urls: - - https://raw.githubusercontent.com/licensezero/prosperity-public-license/v3.0.0/LICENSE.md -ignorable_urls: - - https://blueoakcouncil.org/license/1.0.0 - - https://spdx.org/licenses/BSD-2-Clause.html - - https://spdx.org/licenses/MIT.html - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/licenses/protobuf.LICENSE b/src/licensedcode/data/licenses/protobuf.LICENSE index 0033f6036a8..eb3568ba620 100644 --- a/src/licensedcode/data/licenses/protobuf.LICENSE +++ b/src/licensedcode/data/licenses/protobuf.LICENSE @@ -1,3 +1,14 @@ +--- +key: protobuf +short_name: Protobuf License +name: Protobuf License +category: Permissive +owner: Google +homepage_url: http://protobuf.googlecode.com/svn/trunk/COPYING.txt +spdx_license_key: LicenseRef-scancode-protobuf +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/protobuf.yml b/src/licensedcode/data/licenses/protobuf.yml deleted file mode 100644 index 2a0756d898d..00000000000 --- a/src/licensedcode/data/licenses/protobuf.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: protobuf -short_name: Protobuf License -name: Protobuf License -category: Permissive -owner: Google -homepage_url: http://protobuf.googlecode.com/svn/trunk/COPYING.txt -spdx_license_key: LicenseRef-scancode-protobuf -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/ps-or-pdf-font-exception-20170817.LICENSE b/src/licensedcode/data/licenses/ps-or-pdf-font-exception-20170817.LICENSE index e7b2191e094..0c9fcb32828 100644 --- a/src/licensedcode/data/licenses/ps-or-pdf-font-exception-20170817.LICENSE +++ b/src/licensedcode/data/licenses/ps-or-pdf-font-exception-20170817.LICENSE @@ -1,3 +1,16 @@ +--- +key: ps-or-pdf-font-exception-20170817 +short_name: PS-or-PDF-font-exception-20170817 +name: PS/PDF font exception (2017-08-17) +category: Copyleft Limited +owner: Artifex Software +homepage_url: https://github.com/ArtifexSoftware/urw-base35-fonts/blob/master/LICENSE +is_exception: yes +spdx_license_key: PS-or-PDF-font-exception-20170817 +text_urls: + - https://github.com/ArtifexSoftware/urw-base35-fonts/blob/65962e27febc3883a17e651cdb23e783668c996f/LICENSE +--- + The font and related files in this directory are distributed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING), with the following exemption: diff --git a/src/licensedcode/data/licenses/ps-or-pdf-font-exception-20170817.yml b/src/licensedcode/data/licenses/ps-or-pdf-font-exception-20170817.yml deleted file mode 100644 index ba74d959a10..00000000000 --- a/src/licensedcode/data/licenses/ps-or-pdf-font-exception-20170817.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ps-or-pdf-font-exception-20170817 -short_name: PS-or-PDF-font-exception-20170817 -name: PS/PDF font exception (2017-08-17) -category: Copyleft Limited -owner: Artifex Software -homepage_url: https://github.com/ArtifexSoftware/urw-base35-fonts/blob/master/LICENSE -is_exception: yes -spdx_license_key: PS-or-PDF-font-exception-20170817 -text_urls: - - https://github.com/ArtifexSoftware/urw-base35-fonts/blob/65962e27febc3883a17e651cdb23e783668c996f/LICENSE diff --git a/src/licensedcode/data/licenses/psf-2.0.LICENSE b/src/licensedcode/data/licenses/psf-2.0.LICENSE index 89565571f09..9a7a635a848 100644 --- a/src/licensedcode/data/licenses/psf-2.0.LICENSE +++ b/src/licensedcode/data/licenses/psf-2.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: psf-2.0 +short_name: PSF-2.0 +name: PSF-2.0 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: https://opensource.org/licenses/Python-2.0 +spdx_license_key: PSF-2.0 +ignorable_copyrights: + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation +ignorable_holders: + - Python Software Foundation +--- + PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. diff --git a/src/licensedcode/data/licenses/psf-2.0.yml b/src/licensedcode/data/licenses/psf-2.0.yml deleted file mode 100644 index 92a1340591a..00000000000 --- a/src/licensedcode/data/licenses/psf-2.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: psf-2.0 -short_name: PSF-2.0 -name: PSF-2.0 -category: Permissive -owner: Python Software Foundation (PSF) -homepage_url: https://opensource.org/licenses/Python-2.0 -spdx_license_key: PSF-2.0 -ignorable_copyrights: - - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation -ignorable_holders: - - Python Software Foundation diff --git a/src/licensedcode/data/licenses/psf-3.7.2.LICENSE b/src/licensedcode/data/licenses/psf-3.7.2.LICENSE index 33cff8dae52..4526a69f776 100644 --- a/src/licensedcode/data/licenses/psf-3.7.2.LICENSE +++ b/src/licensedcode/data/licenses/psf-3.7.2.LICENSE @@ -1,3 +1,17 @@ +--- +key: psf-3.7.2 +short_name: PSF Python License 3.7.2 +name: PSF License Agreement for Python 3.7.2 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: https://docs.python.org/3/license.html#psf-license-agreement-for-python-release +spdx_license_key: LicenseRef-scancode-psf-3.7.2 +ignorable_copyrights: + - Copyright (c) 2001-2019 Python Software Foundation +ignorable_holders: + - Python Software Foundation +--- + PSF LICENSE AGREEMENT FOR PYTHON 3.7.2 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and diff --git a/src/licensedcode/data/licenses/psf-3.7.2.yml b/src/licensedcode/data/licenses/psf-3.7.2.yml deleted file mode 100644 index a4883bbd396..00000000000 --- a/src/licensedcode/data/licenses/psf-3.7.2.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: psf-3.7.2 -short_name: PSF Python License 3.7.2 -name: PSF License Agreement for Python 3.7.2 -category: Permissive -owner: Python Software Foundation (PSF) -homepage_url: https://docs.python.org/3/license.html#psf-license-agreement-for-python-release -spdx_license_key: LicenseRef-scancode-psf-3.7.2 -ignorable_copyrights: - - Copyright (c) 2001-2019 Python Software Foundation -ignorable_holders: - - Python Software Foundation diff --git a/src/licensedcode/data/licenses/psfrag.LICENSE b/src/licensedcode/data/licenses/psfrag.LICENSE index 71f91d99a86..998f783412b 100644 --- a/src/licensedcode/data/licenses/psfrag.LICENSE +++ b/src/licensedcode/data/licenses/psfrag.LICENSE @@ -1,3 +1,16 @@ +--- +key: psfrag +short_name: psfrag License +name: psfrag License +category: Permissive +owner: Craig Barratt +homepage_url: https://fedoraproject.org/wiki/Licensing/psfrag +notes: | + Per Fedora, this license is considered Free, but GPL-incompatible only when + used for TeX files. In all other use cases, this may not be true. +spdx_license_key: psfrag +--- + This system 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. Don't come complaining to us if you modify this file and diff --git a/src/licensedcode/data/licenses/psfrag.yml b/src/licensedcode/data/licenses/psfrag.yml deleted file mode 100644 index 56600a7f44d..00000000000 --- a/src/licensedcode/data/licenses/psfrag.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: psfrag -short_name: psfrag License -name: psfrag License -category: Permissive -owner: Craig Barratt -homepage_url: https://fedoraproject.org/wiki/Licensing/psfrag -notes: | - Per Fedora, this license is considered Free, but GPL-incompatible only when - used for TeX files. In all other use cases, this may not be true. -spdx_license_key: psfrag diff --git a/src/licensedcode/data/licenses/psutils.LICENSE b/src/licensedcode/data/licenses/psutils.LICENSE index 334e174b3b8..31481a5dc86 100644 --- a/src/licensedcode/data/licenses/psutils.LICENSE +++ b/src/licensedcode/data/licenses/psutils.LICENSE @@ -1,3 +1,19 @@ +--- +key: psutils +short_name: PS Utilities License +name: PS Utilities License +category: Permissive +owner: Angus J. C. Duggan +homepage_url: https://fedoraproject.org/wiki/Licensing:Psutils?rd=Licensing/psutils +spdx_license_key: psutils +other_urls: + - https://fedoraproject.org/wiki/Licensing/psutils +ignorable_copyrights: + - copyright (c) 1991-1995 Angus J. C. Duggan +ignorable_holders: + - Angus J. C. Duggan +--- + PS Utilities Package The constituent files of this package listed below are copyright (C) 1991-1995 Angus J. C. Duggan. diff --git a/src/licensedcode/data/licenses/psutils.yml b/src/licensedcode/data/licenses/psutils.yml deleted file mode 100644 index dd4d02034f1..00000000000 --- a/src/licensedcode/data/licenses/psutils.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: psutils -short_name: PS Utilities License -name: PS Utilities License -category: Permissive -owner: Angus J. C. Duggan -homepage_url: https://fedoraproject.org/wiki/Licensing:Psutils?rd=Licensing/psutils -spdx_license_key: psutils -other_urls: - - https://fedoraproject.org/wiki/Licensing/psutils -ignorable_copyrights: - - copyright (c) 1991-1995 Angus J. C. Duggan -ignorable_holders: - - Angus J. C. Duggan diff --git a/src/licensedcode/data/licenses/psytec-freesoft.LICENSE b/src/licensedcode/data/licenses/psytec-freesoft.LICENSE index 4bb3d7cf076..6da4b5ab978 100644 --- a/src/licensedcode/data/licenses/psytec-freesoft.LICENSE +++ b/src/licensedcode/data/licenses/psytec-freesoft.LICENSE @@ -1,3 +1,15 @@ +--- +key: psytec-freesoft +short_name: Psytec Free Software License +name: Psytec Free Software License +category: Permissive +owner: Psytec +homepage_url: http://www.psytec.co.jp/freesoft/02/#L04 +spdx_license_key: LicenseRef-scancode-psytec-freesoft +text_urls: + - http://www.psytec.co.jp/freesoft/02/#L04 +--- + (translated from the Japanese) About the license · Distribution of this software is free. diff --git a/src/licensedcode/data/licenses/psytec-freesoft.yml b/src/licensedcode/data/licenses/psytec-freesoft.yml deleted file mode 100644 index d9d28356e34..00000000000 --- a/src/licensedcode/data/licenses/psytec-freesoft.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: psytec-freesoft -short_name: Psytec Free Software License -name: Psytec Free Software License -category: Permissive -owner: Psytec -homepage_url: http://www.psytec.co.jp/freesoft/02/#L04 -spdx_license_key: LicenseRef-scancode-psytec-freesoft -text_urls: - - http://www.psytec.co.jp/freesoft/02/#L04 diff --git a/src/licensedcode/data/licenses/public-domain-disclaimer.LICENSE b/src/licensedcode/data/licenses/public-domain-disclaimer.LICENSE index 0de54b8177d..e0dadab10cc 100644 --- a/src/licensedcode/data/licenses/public-domain-disclaimer.LICENSE +++ b/src/licensedcode/data/licenses/public-domain-disclaimer.LICENSE @@ -1,3 +1,15 @@ +--- +key: public-domain-disclaimer +short_name: Public Domain Disclaimer +name: Public Domain Disclaimer +category: Public Domain +owner: Unspecified +notes: this is used also as a placeholder for similar public domain dedications texts and notices + that come with an additional warranty disclaimer +is_generic: yes +spdx_license_key: LicenseRef-scancode-public-domain-disclaimer +--- + This code is hereby placed in the public domain. THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS @@ -10,4 +22,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/public-domain-disclaimer.yml b/src/licensedcode/data/licenses/public-domain-disclaimer.yml deleted file mode 100644 index 531b1376a9c..00000000000 --- a/src/licensedcode/data/licenses/public-domain-disclaimer.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: public-domain-disclaimer -short_name: Public Domain Disclaimer -name: Public Domain Disclaimer -category: Public Domain -owner: Unspecified -notes: this is used also as a placeholder for similar public domain dedications texts and notices - that come with an additional warranty disclaimer -is_generic: yes -spdx_license_key: LicenseRef-scancode-public-domain-disclaimer diff --git a/src/licensedcode/data/licenses/public-domain.LICENSE b/src/licensedcode/data/licenses/public-domain.LICENSE new file mode 100644 index 00000000000..e2ece8aefdd --- /dev/null +++ b/src/licensedcode/data/licenses/public-domain.LICENSE @@ -0,0 +1,17 @@ +--- +key: public-domain +short_name: Public Domain +name: Public Domain +category: Public Domain +owner: Unspecified +homepage_url: http://www.linfo.org/publicdomain.html +spdx_license_key: LicenseRef-scancode-public-domain +other_spdx_license_keys: + - LicenseRef-PublicDomain +is_generic: yes +faq_url: http://www.linfo.org/publicdomain.html +other_urls: + - http://creativecommons.org/licenses/publicdomain/ + - http://en.wikipedia.org/wiki/Public_domain + - http://www.linfo.org/publicdomain.html +--- diff --git a/src/licensedcode/data/licenses/public-domain.yml b/src/licensedcode/data/licenses/public-domain.yml deleted file mode 100644 index c74d611d115..00000000000 --- a/src/licensedcode/data/licenses/public-domain.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: public-domain -short_name: Public Domain -name: Public Domain -category: Public Domain -owner: Unspecified -homepage_url: http://www.linfo.org/publicdomain.html -is_generic: yes -spdx_license_key: LicenseRef-scancode-public-domain -other_spdx_license_keys: - - LicenseRef-PublicDomain -faq_url: http://www.linfo.org/publicdomain.html -other_urls: - - http://creativecommons.org/licenses/publicdomain/ - - http://en.wikipedia.org/wiki/Public_domain - - http://www.linfo.org/publicdomain.html diff --git a/src/licensedcode/data/licenses/purdue-bsd.LICENSE b/src/licensedcode/data/licenses/purdue-bsd.LICENSE index d8be5ae1c3f..3fbd8119665 100644 --- a/src/licensedcode/data/licenses/purdue-bsd.LICENSE +++ b/src/licensedcode/data/licenses/purdue-bsd.LICENSE @@ -1,3 +1,14 @@ +--- +key: purdue-bsd +short_name: Purdue BSD-Style License +name: Purdue BSD-Style License +category: Permissive +owner: Purdue Research Foundation +notes: this is very similar to the hs-regexp license +spdx_license_key: LicenseRef-scancode-purdue-bsd +minimum_coverage: 70 +--- + This software is not subject to any license of the American Telephone and Telegraph Company or the Regents of the University of California. diff --git a/src/licensedcode/data/licenses/purdue-bsd.yml b/src/licensedcode/data/licenses/purdue-bsd.yml deleted file mode 100644 index 69d385e0572..00000000000 --- a/src/licensedcode/data/licenses/purdue-bsd.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: purdue-bsd -short_name: Purdue BSD-Style License -name: Purdue BSD-Style License -category: Permissive -owner: Purdue Research Foundation -notes: this is very similar to the hs-regexp license -spdx_license_key: LicenseRef-scancode-purdue-bsd -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/pybench.LICENSE b/src/licensedcode/data/licenses/pybench.LICENSE index feea9e14ee0..0525047a22c 100644 --- a/src/licensedcode/data/licenses/pybench.LICENSE +++ b/src/licensedcode/data/licenses/pybench.LICENSE @@ -1,3 +1,22 @@ +--- +key: pybench +short_name: pybench License +name: pybench License +category: Permissive +owner: eGenix +homepage_url: https://android.googlesource.com/platform/external/python/cpython2/+/965ad62600f69230e546a846414be6de9d8471df/Tools/pybench/LICENSE +spdx_license_key: LicenseRef-scancode-pybench +ignorable_copyrights: + - Copyright (c), 1997-2006, Marc-Andre Lemburg (mal@lemburg.com) + - Copyright (c), 2000-2006, eGenix.com Software GmbH (info@egenix.com) +ignorable_holders: + - Marc-Andre Lemburg + - eGenix.com Software GmbH +ignorable_emails: + - info@egenix.com + - mal@lemburg.com +--- + pybench License --------------- This copyright notice and license applies to all files in the pybench diff --git a/src/licensedcode/data/licenses/pybench.yml b/src/licensedcode/data/licenses/pybench.yml deleted file mode 100644 index c361718bcba..00000000000 --- a/src/licensedcode/data/licenses/pybench.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: pybench -short_name: pybench License -name: pybench License -category: Permissive -owner: eGenix -homepage_url: https://android.googlesource.com/platform/external/python/cpython2/+/965ad62600f69230e546a846414be6de9d8471df/Tools/pybench/LICENSE -spdx_license_key: LicenseRef-scancode-pybench -ignorable_copyrights: - - Copyright (c), 1997-2006, Marc-Andre Lemburg (mal@lemburg.com) - - Copyright (c), 2000-2006, eGenix.com Software GmbH (info@egenix.com) -ignorable_holders: - - Marc-Andre Lemburg - - eGenix.com Software GmbH -ignorable_emails: - - info@egenix.com - - mal@lemburg.com diff --git a/src/licensedcode/data/licenses/pycrypto.LICENSE b/src/licensedcode/data/licenses/pycrypto.LICENSE index a67453324f8..80458da71ef 100644 --- a/src/licensedcode/data/licenses/pycrypto.LICENSE +++ b/src/licensedcode/data/licenses/pycrypto.LICENSE @@ -1,3 +1,13 @@ +--- +key: pycrypto +short_name: PyCrypto License +name: PyCrypto License +category: Permissive +owner: Andrew M. Kuchling +homepage_url: http://dev.mysql.com/doc/workbench/en/license-pycrypto.html +spdx_license_key: LicenseRef-scancode-pycrypto +--- + PyCrypto License The following software may be included in this product: @@ -13,4 +23,4 @@ or implied. Use at your own risk or not at all. Incorporating the code into commercial products is permitted; you do not have to make source available or contribute your changes back -(though that would be nice). +(though that would be nice). \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pycrypto.yml b/src/licensedcode/data/licenses/pycrypto.yml deleted file mode 100644 index f552fe10b42..00000000000 --- a/src/licensedcode/data/licenses/pycrypto.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: pycrypto -short_name: PyCrypto License -name: PyCrypto License -category: Permissive -owner: Andrew M. Kuchling -homepage_url: http://dev.mysql.com/doc/workbench/en/license-pycrypto.html -spdx_license_key: LicenseRef-scancode-pycrypto diff --git a/src/licensedcode/data/licenses/pygres-2.2.LICENSE b/src/licensedcode/data/licenses/pygres-2.2.LICENSE index f94a8f0cc8b..6b06a01f209 100644 --- a/src/licensedcode/data/licenses/pygres-2.2.LICENSE +++ b/src/licensedcode/data/licenses/pygres-2.2.LICENSE @@ -1,3 +1,24 @@ +--- +key: pygres-2.2 +short_name: PyGres License 2.2 +name: PyGres License v2.2 +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-pygres-2.2 +text_urls: + - http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 +ignorable_copyrights: + - Copyright (c) 1995, Pascal Andre (andre@via.ecp.fr) + - copyright 1997, 1998, 1999 by D'Arcy J.M. Cain (darcy@druid.net) +ignorable_holders: + - D'Arcy J.M. Cain + - Pascal Andre +ignorable_emails: + - andre@chimay.via.ecp.fr + - andre@via.ecp.fr + - darcy@druid.net +--- + PyGres, version 2.2 A Python interface for PostgreSQL database. Written by D'Arcy J.M. Cain, (darcy@druid.net). Based heavily on code written by Pascal Andre, andre@chimay.via.ecp.fr. Copyright (c) 1995, Pascal Andre @@ -21,4 +42,4 @@ AUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. Further modifications copyright 1997, 1998, 1999 by D'Arcy J.M. Cain -(darcy@druid.net) subject to the same terms and conditions as above. +(darcy@druid.net) subject to the same terms and conditions as above. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/pygres-2.2.yml b/src/licensedcode/data/licenses/pygres-2.2.yml deleted file mode 100644 index 58587583cf1..00000000000 --- a/src/licensedcode/data/licenses/pygres-2.2.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: pygres-2.2 -short_name: PyGres License 2.2 -name: PyGres License v2.2 -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-pygres-2.2 -text_urls: - - http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 -ignorable_copyrights: - - Copyright (c) 1995, Pascal Andre (andre@via.ecp.fr) - - copyright 1997, 1998, 1999 by D'Arcy J.M. Cain (darcy@druid.net) -ignorable_holders: - - D'Arcy J.M. Cain - - Pascal Andre -ignorable_emails: - - andre@chimay.via.ecp.fr - - andre@via.ecp.fr - - darcy@druid.net diff --git a/src/licensedcode/data/licenses/python-2.0.1.LICENSE b/src/licensedcode/data/licenses/python-2.0.1.LICENSE index 5eff35b2999..a4fd003281c 100644 --- a/src/licensedcode/data/licenses/python-2.0.1.LICENSE +++ b/src/licensedcode/data/licenses/python-2.0.1.LICENSE @@ -1,3 +1,29 @@ +--- +key: python-2.0.1 +short_name: Python License 2.0.1 +name: Python Software Foundation License v2.0.1 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://docs.python.org/license.html +spdx_license_key: Python-2.0.1 +other_urls: + - https://docs.python.org/3/license.html + - https://github.com/python/cpython/blob/main/LICENSE + - https://www.python.org/download/releases/2.0.1/license/ +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, + 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.pythonlabs.com/logos.html +--- + PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 -------------------------------------------- diff --git a/src/licensedcode/data/licenses/python-2.0.1.yml b/src/licensedcode/data/licenses/python-2.0.1.yml deleted file mode 100644 index dc31927ed00..00000000000 --- a/src/licensedcode/data/licenses/python-2.0.1.yml +++ /dev/null @@ -1,23 +0,0 @@ -key: python-2.0.1 -short_name: Python License 2.0.1 -name: Python Software Foundation License v2.0.1 -category: Permissive -owner: Python Software Foundation (PSF) -homepage_url: http://docs.python.org/license.html -spdx_license_key: Python-2.0.1 -other_urls: - - https://docs.python.org/3/license.html - - https://github.com/python/cpython/blob/main/LICENSE - - https://www.python.org/download/releases/2.0.1/license/ -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, - 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.pythonlabs.com/logos.html diff --git a/src/licensedcode/data/licenses/python-cwi.LICENSE b/src/licensedcode/data/licenses/python-cwi.LICENSE index 47b2df9d528..43fe80f0e77 100644 --- a/src/licensedcode/data/licenses/python-cwi.LICENSE +++ b/src/licensedcode/data/licenses/python-cwi.LICENSE @@ -1,3 +1,18 @@ +--- +key: python-cwi +short_name: Python CWI License +name: Python CWI License Agreement +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://docs.python.org/license.html +notes: | + This is the old license of Python as used from inception from 0.9.0 thru + 1.2 versions. This is a MIT/BSD-style license that is rather rare these + days but also unique. It is also found at the bottom of the current Python + license text. +spdx_license_key: LicenseRef-scancode-python-cwi +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -13,4 +28,4 @@ FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, 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. +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/python-cwi.yml b/src/licensedcode/data/licenses/python-cwi.yml deleted file mode 100644 index 44c1d7376ce..00000000000 --- a/src/licensedcode/data/licenses/python-cwi.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: python-cwi -short_name: Python CWI License -name: Python CWI License Agreement -category: Permissive -owner: Python Software Foundation (PSF) -homepage_url: http://docs.python.org/license.html -notes: | - This is the old license of Python as used from inception from 0.9.0 thru - 1.2 versions. This is a MIT/BSD-style license that is rather rare these - days but also unique. It is also found at the bottom of the current Python - license text. -spdx_license_key: LicenseRef-scancode-python-cwi diff --git a/src/licensedcode/data/licenses/python.LICENSE b/src/licensedcode/data/licenses/python.LICENSE index 60e91cfe320..191919c7973 100644 --- a/src/licensedcode/data/licenses/python.LICENSE +++ b/src/licensedcode/data/licenses/python.LICENSE @@ -1,3 +1,31 @@ +--- +key: python +short_name: Python License 2.0 +name: Python Software Foundation License v2 +category: Permissive +owner: Python Software Foundation (PSF) +homepage_url: http://docs.python.org/license.html +spdx_license_key: Python-2.0 +text_urls: + - http://spdx.org/licenses/Python-2.0 +osi_url: http://www.opensource.org/licenses/Python-2.0 +other_urls: + - http://opensource.org/licenses/PythonSoftFoundation.php + - http://www.gnu.org/licenses/license-list.html#PythonOld + - https://opensource.org/licenses/Python-2.0 +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.pythonlabs.com/logos.html +--- + PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 -------------------------------------------- @@ -189,4 +217,4 @@ FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, 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. +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/python.yml b/src/licensedcode/data/licenses/python.yml deleted file mode 100644 index f65801e670a..00000000000 --- a/src/licensedcode/data/licenses/python.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: python -short_name: Python License 2.0 -name: Python Software Foundation License v2 -category: Permissive -owner: Python Software Foundation (PSF) -homepage_url: http://docs.python.org/license.html -spdx_license_key: Python-2.0 -text_urls: - - http://spdx.org/licenses/Python-2.0 -osi_url: http://www.opensource.org/licenses/Python-2.0 -other_urls: - - http://opensource.org/licenses/PythonSoftFoundation.php - - http://www.gnu.org/licenses/license-list.html#PythonOld - - https://opensource.org/licenses/Python-2.0 -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.pythonlabs.com/logos.html diff --git a/src/licensedcode/data/licenses/qaplug.LICENSE b/src/licensedcode/data/licenses/qaplug.LICENSE index 9abf5ebb1d4..eabc409c9bb 100644 --- a/src/licensedcode/data/licenses/qaplug.LICENSE +++ b/src/licensedcode/data/licenses/qaplug.LICENSE @@ -1,3 +1,13 @@ +--- +key: qaplug +short_name: QAPlug License +name: QAPlug License +category: Proprietary Free +owner: SolDevelo +homepage_url: http://qaplug.com/about/license-agreement/ +spdx_license_key: LicenseRef-scancode-qaplug +--- + END USER LICENSE AGREEMENT SolDevelo ("Licensor") will license the software application ("Software") to the User ("Licensee"), upon the condition that Licensee accept all of the Terms and Conditions of this End User License Agreement ("Agreement"). diff --git a/src/licensedcode/data/licenses/qaplug.yml b/src/licensedcode/data/licenses/qaplug.yml deleted file mode 100644 index 5fa838088fc..00000000000 --- a/src/licensedcode/data/licenses/qaplug.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: qaplug -short_name: QAPlug License -name: QAPlug License -category: Proprietary Free -owner: SolDevelo -homepage_url: http://qaplug.com/about/license-agreement/ -spdx_license_key: LicenseRef-scancode-qaplug diff --git a/src/licensedcode/data/licenses/qca-linux-firmware.LICENSE b/src/licensedcode/data/licenses/qca-linux-firmware.LICENSE index 51ee2dcaab1..167342e5a73 100644 --- a/src/licensedcode/data/licenses/qca-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/qca-linux-firmware.LICENSE @@ -1,3 +1,17 @@ +--- +key: qca-linux-firmware +short_name: QCA Linux Firmware License +name: QCA Linux Firmware License +category: Proprietary Free +owner: Qualcomm Atheros +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ath10k +spdx_license_key: LicenseRef-scancode-qca-linux-firmware +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ar3k +ignorable_urls: + - git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ +--- + Redistribution. Reproduction and redistribution in binary form, without modification, for use solely in conjunction with a Qualcomm Atheros, Inc. chipset, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/qca-linux-firmware.yml b/src/licensedcode/data/licenses/qca-linux-firmware.yml deleted file mode 100644 index 343633c9cc9..00000000000 --- a/src/licensedcode/data/licenses/qca-linux-firmware.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: qca-linux-firmware -short_name: QCA Linux Firmware License -name: QCA Linux Firmware License -category: Proprietary Free -owner: Qualcomm Atheros -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ath10k -spdx_license_key: LicenseRef-scancode-qca-linux-firmware -text_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.QualcommAtheros_ar3k -ignorable_urls: - - git://git.kernel.org/pub/scm/linux/kernel/git/firmware/ diff --git a/src/licensedcode/data/licenses/qca-technology.LICENSE b/src/licensedcode/data/licenses/qca-technology.LICENSE index 6cabeed2c3c..45a7e6a7974 100644 --- a/src/licensedcode/data/licenses/qca-technology.LICENSE +++ b/src/licensedcode/data/licenses/qca-technology.LICENSE @@ -1,3 +1,13 @@ +--- +key: qca-technology +short_name: QCA Technology License +name: Qualcomm Atheros Technology License +category: Proprietary Free +owner: Qualcomm Atheros +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.atheros_firmware +spdx_license_key: LicenseRef-scancode-qca-technology +--- + Redistribution and use in binary forms, without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/qca-technology.yml b/src/licensedcode/data/licenses/qca-technology.yml deleted file mode 100644 index 246114d3dbd..00000000000 --- a/src/licensedcode/data/licenses/qca-technology.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: qca-technology -short_name: QCA Technology License -name: Qualcomm Atheros Technology License -category: Proprietary Free -owner: Qualcomm Atheros -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.atheros_firmware -spdx_license_key: LicenseRef-scancode-qca-technology diff --git a/src/licensedcode/data/licenses/qcad-exception-gpl.LICENSE b/src/licensedcode/data/licenses/qcad-exception-gpl.LICENSE index 1b0342af23f..fdbc9214923 100644 --- a/src/licensedcode/data/licenses/qcad-exception-gpl.LICENSE +++ b/src/licensedcode/data/licenses/qcad-exception-gpl.LICENSE @@ -1,3 +1,14 @@ +--- +key: qcad-exception-gpl +short_name: QCAD Exception to GPL +name: QCAD Exception to GPL +category: Copyleft Limited +owner: RibbonSoft GmbH +homepage_url: https://github.com/qcad/qcad/blob/master/gpl-3.0-exceptions.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-qcad-exception-gpl +--- + Linking QCAD libraries statically or dynamically with other modules is making a combined work based on the QCAD libraries. Thus, the terms and conditions of the GNU General Public License cover the whole combination. diff --git a/src/licensedcode/data/licenses/qcad-exception-gpl.yml b/src/licensedcode/data/licenses/qcad-exception-gpl.yml deleted file mode 100644 index 3d687f2e75b..00000000000 --- a/src/licensedcode/data/licenses/qcad-exception-gpl.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: qcad-exception-gpl -short_name: QCAD Exception to GPL -name: QCAD Exception to GPL -category: Copyleft Limited -owner: RibbonSoft GmbH -homepage_url: https://github.com/qcad/qcad/blob/master/gpl-3.0-exceptions.txt -is_exception: yes -spdx_license_key: LicenseRef-scancode-qcad-exception-gpl diff --git a/src/licensedcode/data/licenses/qhull.LICENSE b/src/licensedcode/data/licenses/qhull.LICENSE index 9055f0892f3..56901b51a74 100644 --- a/src/licensedcode/data/licenses/qhull.LICENSE +++ b/src/licensedcode/data/licenses/qhull.LICENSE @@ -1,3 +1,27 @@ +--- +key: qhull +short_name: Qhull License +name: Qhull License +category: Copyleft Limited +owner: Geometry Center +homepage_url: https://fedoraproject.org/wiki/Licensing:Qhull?rd=Licensing/Qhull +spdx_license_key: Qhull +other_urls: + - https://fedoraproject.org/wiki/Licensing/Qhull +ignorable_copyrights: + - Qhull, Copyright (c) 1993-2003 The National Science and Technology Research Center for + Computation and Visualization of Geometric Structures (The Geometry Center) University + of Minnesota +ignorable_holders: + - Qhull, The National Science and Technology Research Center for Computation and Visualization + of Geometric Structures (The Geometry Center) University of Minnesota +ignorable_urls: + - http://www.qhull.org/ +ignorable_emails: + - qhull@qhull.org + - qhull_bug@qhull.org +--- + Qhull, Copyright (c) 1993-2003 The National Science and Technology Research Center for Computation and Visualization of Geometric Structures (The Geometry Center) University of Minnesota diff --git a/src/licensedcode/data/licenses/qhull.yml b/src/licensedcode/data/licenses/qhull.yml deleted file mode 100644 index 62e0c0b3bc7..00000000000 --- a/src/licensedcode/data/licenses/qhull.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: qhull -short_name: Qhull License -name: Qhull License -category: Copyleft Limited -owner: Geometry Center -homepage_url: https://fedoraproject.org/wiki/Licensing:Qhull?rd=Licensing/Qhull -spdx_license_key: Qhull -other_urls: - - https://fedoraproject.org/wiki/Licensing/Qhull -ignorable_copyrights: - - Qhull, Copyright (c) 1993-2003 The National Science and Technology Research Center for - Computation and Visualization of Geometric Structures (The Geometry Center) University - of Minnesota -ignorable_holders: - - Qhull, The National Science and Technology Research Center for Computation and Visualization - of Geometric Structures (The Geometry Center) University of Minnesota -ignorable_urls: - - http://www.qhull.org/ -ignorable_emails: - - qhull@qhull.org - - qhull_bug@qhull.org diff --git a/src/licensedcode/data/licenses/qlogic-firmware.LICENSE b/src/licensedcode/data/licenses/qlogic-firmware.LICENSE index fd41b7714c3..890a42cbf96 100644 --- a/src/licensedcode/data/licenses/qlogic-firmware.LICENSE +++ b/src/licensedcode/data/licenses/qlogic-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: qlogic-firmware +short_name: QLogic Firmware License +name: QLogic Firmware License +category: Proprietary Free +owner: QLogic +homepage_url: https://github.com/wkennington/linux-firmware/blob/master/LICENCE.qla2xxx +spdx_license_key: LicenseRef-scancode-qlogic-firmware +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.qla2xxx +--- + Redistribution and use in binary form, without modification, for use in conjunction with QLogic authorized products is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/qlogic-firmware.yml b/src/licensedcode/data/licenses/qlogic-firmware.yml deleted file mode 100644 index 88b65594f08..00000000000 --- a/src/licensedcode/data/licenses/qlogic-firmware.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: qlogic-firmware -short_name: QLogic Firmware License -name: QLogic Firmware License -category: Proprietary Free -owner: QLogic -homepage_url: https://github.com/wkennington/linux-firmware/blob/master/LICENCE.qla2xxx -spdx_license_key: LicenseRef-scancode-qlogic-firmware -text_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.qla2xxx diff --git a/src/licensedcode/data/licenses/qlogic-microcode.LICENSE b/src/licensedcode/data/licenses/qlogic-microcode.LICENSE index b6706151dec..07f954179b3 100644 --- a/src/licensedcode/data/licenses/qlogic-microcode.LICENSE +++ b/src/licensedcode/data/licenses/qlogic-microcode.LICENSE @@ -1,3 +1,13 @@ +--- +key: qlogic-microcode +short_name: QLogic Microcode +name: QLogic Microcode +category: Permissive +owner: QLogic +notes: this is a Linux firmware BSD-like license with some weird extra terms +spdx_license_key: LicenseRef-scancode-qlogic-microcode +--- + You may redistribute the hardware specific firmware binary file under the following terms: @@ -33,4 +43,4 @@ CREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN ANY OTHER QLOGIC HARDWARE OR SOFTWARE EITHER SOLELY OR IN -COMBINATION WITH THIS PROGRAM. +COMBINATION WITH THIS PROGRAM. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/qlogic-microcode.yml b/src/licensedcode/data/licenses/qlogic-microcode.yml deleted file mode 100644 index 45019761ee0..00000000000 --- a/src/licensedcode/data/licenses/qlogic-microcode.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: qlogic-microcode -short_name: QLogic Microcode -name: QLogic Microcode -category: Permissive -owner: QLogic -notes: this is a Linux firmware BSD-like license with some weird extra terms -spdx_license_key: LicenseRef-scancode-qlogic-microcode diff --git a/src/licensedcode/data/licenses/qpl-1.0.LICENSE b/src/licensedcode/data/licenses/qpl-1.0.LICENSE index 07a2efc9384..48dd3f6f3a0 100644 --- a/src/licensedcode/data/licenses/qpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/qpl-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: qpl-1.0 +short_name: QPL 1.0 +name: Q Public License Version 1.0 +category: Copyleft Limited +owner: Trolltech +homepage_url: http://doc.trolltech.com/4.0/qpl.html +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: QPL-1.0 +osi_license_key: QPL-1.0 +text_urls: + - http://doc.trolltech.com/4.0/qpl.html +other_urls: + - http://doc.qt.nokia.com/3.3/license.html + - http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses + - http://www.opensource.org/licenses/QPL-1.0 + - https://doc.qt.io/archives/3.3/license.html + - https://opensource.org/licenses/QPL-1.0 +ignorable_copyrights: + - Copyright (c) 1999 Trolltech AS, Norway +ignorable_holders: + - Trolltech AS, Norway +--- + The Q Public License Version 1.0 Copyright (C) 1999 Trolltech AS, Norway. diff --git a/src/licensedcode/data/licenses/qpl-1.0.yml b/src/licensedcode/data/licenses/qpl-1.0.yml deleted file mode 100644 index 2102e15e453..00000000000 --- a/src/licensedcode/data/licenses/qpl-1.0.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: qpl-1.0 -short_name: QPL 1.0 -name: Q Public License Version 1.0 -category: Copyleft Limited -owner: Trolltech -homepage_url: http://doc.trolltech.com/4.0/qpl.html -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: QPL-1.0 -osi_license_key: QPL-1.0 -text_urls: - - http://doc.trolltech.com/4.0/qpl.html -other_urls: - - http://doc.qt.nokia.com/3.3/license.html - - http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses - - http://www.opensource.org/licenses/QPL-1.0 - - https://doc.qt.io/archives/3.3/license.html - - https://opensource.org/licenses/QPL-1.0 -ignorable_copyrights: - - Copyright (c) 1999 Trolltech AS, Norway -ignorable_holders: - - Trolltech AS, Norway diff --git a/src/licensedcode/data/licenses/qpopper.LICENSE b/src/licensedcode/data/licenses/qpopper.LICENSE index 73981a109e2..2cb7b41d32c 100644 --- a/src/licensedcode/data/licenses/qpopper.LICENSE +++ b/src/licensedcode/data/licenses/qpopper.LICENSE @@ -1,3 +1,23 @@ +--- +key: qpopper +short_name: Qpopper License +name: Qpopper License +category: Permissive +owner: Qualcomm +homepage_url: http://www.eudora.com/products/unsupported/qpopper/license.html +spdx_license_key: LicenseRef-scancode-qpopper +text_urls: + - http://www.eudora.com/products/unsupported/qpopper/license.html +ignorable_copyrights: + - (c) Copyright 1989-1991 The Regents of the University of California + - Copyright 1993-2006 QUALCOMM Incorporated +ignorable_holders: + - QUALCOMM Incorporated + - The Regents of the University of California +ignorable_authors: + - Austin Shelton +--- + Qpopper(tm) is licensed by QUALCOMM Incorporated under the following terms and conditions. ANY USE OF QPOPPER CONSTITUTES AGREEMENT TO THESE TERMS. diff --git a/src/licensedcode/data/licenses/qpopper.yml b/src/licensedcode/data/licenses/qpopper.yml deleted file mode 100644 index 7d747ab4e68..00000000000 --- a/src/licensedcode/data/licenses/qpopper.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: qpopper -short_name: Qpopper License -name: Qpopper License -category: Permissive -owner: Qualcomm -homepage_url: http://www.eudora.com/products/unsupported/qpopper/license.html -spdx_license_key: LicenseRef-scancode-qpopper -text_urls: - - http://www.eudora.com/products/unsupported/qpopper/license.html -ignorable_copyrights: - - (c) Copyright 1989-1991 The Regents of the University of California - - Copyright 1993-2006 QUALCOMM Incorporated -ignorable_holders: - - QUALCOMM Incorporated - - The Regents of the University of California -ignorable_authors: - - Austin Shelton diff --git a/src/licensedcode/data/licenses/qt-commercial-1.1.LICENSE b/src/licensedcode/data/licenses/qt-commercial-1.1.LICENSE index dab586e4aa7..034bbad4601 100644 --- a/src/licensedcode/data/licenses/qt-commercial-1.1.LICENSE +++ b/src/licensedcode/data/licenses/qt-commercial-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: qt-commercial-1.1 +short_name: Qt Commercial License v1.1 +name: Qt for Application Development License Agreement v1.1 +category: Commercial +owner: Digia +homepage_url: http://www.qt.io/terms-conditions/#application_development +spdx_license_key: LicenseRef-scancode-qt-commercial-1.1 +faq_url: http://www.qt.io/faq/ +ignorable_urls: + - http://www.fsf.org/licensing/licenses/info/GPLv2.html + - http://www.gnu.org/copyleft/gpl-3.0.html + - http://www.gnu.org/licenses/lgpl-3.0.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + - http://www.qt.io/ +ignorable_emails: + - sales@qt.io +--- + Qt FOR APPLICATION DEVELOPMENT LICENSE AGREEMENT Agreement version 1.1 diff --git a/src/licensedcode/data/licenses/qt-commercial-1.1.yml b/src/licensedcode/data/licenses/qt-commercial-1.1.yml deleted file mode 100644 index c4fee2cec3f..00000000000 --- a/src/licensedcode/data/licenses/qt-commercial-1.1.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: qt-commercial-1.1 -short_name: Qt Commercial License v1.1 -name: Qt for Application Development License Agreement v1.1 -category: Commercial -owner: Digia -homepage_url: http://www.qt.io/terms-conditions/#application_development -spdx_license_key: LicenseRef-scancode-qt-commercial-1.1 -faq_url: http://www.qt.io/faq/ -ignorable_urls: - - http://www.fsf.org/licensing/licenses/info/GPLv2.html - - http://www.gnu.org/copyleft/gpl-3.0.html - - http://www.gnu.org/licenses/lgpl-3.0.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html - - http://www.qt.io/ -ignorable_emails: - - sales@qt.io diff --git a/src/licensedcode/data/licenses/qt-company-exception-2017-lgpl-2.1.LICENSE b/src/licensedcode/data/licenses/qt-company-exception-2017-lgpl-2.1.LICENSE index ea61032cae9..ff92d718dad 100644 --- a/src/licensedcode/data/licenses/qt-company-exception-2017-lgpl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/qt-company-exception-2017-lgpl-2.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: qt-company-exception-2017-lgpl-2.1 +short_name: Qt Company Exception to LGPL 2.1 2017 +name: Qt Company Exception to LGPL 2.1 2017 +category: Copyleft Limited +is_deprecated: yes +owner: Qt Company +is_exception: yes +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +notes: replaced by qt-lgpl-exception-1.1 +--- + As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute diff --git a/src/licensedcode/data/licenses/qt-company-exception-2017-lgpl-2.1.yml b/src/licensedcode/data/licenses/qt-company-exception-2017-lgpl-2.1.yml deleted file mode 100644 index 84679294100..00000000000 --- a/src/licensedcode/data/licenses/qt-company-exception-2017-lgpl-2.1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: qt-company-exception-2017-lgpl-2.1 -short_name: Qt Company Exception to LGPL 2.1 2017 -name: Qt Company Exception to LGPL 2.1 2017 -category: Copyleft Limited -is_deprecated: yes -owner: Qt Company -is_exception: yes -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -notes: replaced by qt-lgpl-exception-1.1 diff --git a/src/licensedcode/data/licenses/qt-company-exception-lgpl-2.1.LICENSE b/src/licensedcode/data/licenses/qt-company-exception-lgpl-2.1.LICENSE index 3feb192bc71..54bfc05c109 100644 --- a/src/licensedcode/data/licenses/qt-company-exception-lgpl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/qt-company-exception-lgpl-2.1.LICENSE @@ -1,3 +1,37 @@ +--- +key: qt-company-exception-lgpl-2.1 +short_name: Qt Company Exception to LGPL 2.1 +name: Qt Company Exception to LGPL 2.1 +category: Copyleft Limited +owner: Qt Company +notes: this is very similar to qt-lgpl-exception-1.1 but with a different text +is_exception: yes +spdx_license_key: LicenseRef-scancode-qt-company-exception-lgpl-2.1 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt + - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION +standard_notice: | + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or (at + your option) any later version. + This library is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + for more details. + You should have received a copy of the GNU Lesser General Public License + along with this library; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + As a special exception to the GNU Lesser General Public License version 2.1, the + object code form of a "work that uses the Library" may incorporate material from + a header file that is part of the Library. You may distribute such object code + under terms of your choice, provided that the incorporated material (i) does not + exceed more than 5% of the total size of the Library; and (ii) is limited to + numerical parameters, data structure layouts, accessors, macros, inline + functions and templates. +--- + As a special exception to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute such object code diff --git a/src/licensedcode/data/licenses/qt-company-exception-lgpl-2.1.yml b/src/licensedcode/data/licenses/qt-company-exception-lgpl-2.1.yml deleted file mode 100644 index 7dca11bb2d4..00000000000 --- a/src/licensedcode/data/licenses/qt-company-exception-lgpl-2.1.yml +++ /dev/null @@ -1,31 +0,0 @@ -key: qt-company-exception-lgpl-2.1 -short_name: Qt Company Exception to LGPL 2.1 -name: Qt Company Exception to LGPL 2.1 -category: Copyleft Limited -owner: Qt Company -notes: this is very similar to qt-lgpl-exception-1.1 but with a different text -is_exception: yes -spdx_license_key: LicenseRef-scancode-qt-company-exception-lgpl-2.1 -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt - - https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION -standard_notice: | - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation; either version 2.1 of the License, or (at - your option) any later version. - This library is distributed in the hope that it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License - for more details. - You should have received a copy of the GNU Lesser General Public License - along with this library; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - As a special exception to the GNU Lesser General Public License version 2.1, the - object code form of a "work that uses the Library" may incorporate material from - a header file that is part of the Library. You may distribute such object code - under terms of your choice, provided that the incorporated material (i) does not - exceed more than 5% of the total size of the Library; and (ii) is limited to - numerical parameters, data structure layouts, accessors, macros, inline - functions and templates. diff --git a/src/licensedcode/data/licenses/qt-gpl-exception-1.0.LICENSE b/src/licensedcode/data/licenses/qt-gpl-exception-1.0.LICENSE index fce4abe5d1d..0a1b41cc3ab 100644 --- a/src/licensedcode/data/licenses/qt-gpl-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/qt-gpl-exception-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: qt-gpl-exception-1.0 +short_name: Qt GPL exception 1.0 +name: Qt GPL exception 1.0 +category: Copyleft Limited +owner: Qt Company +homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LICENSE.GPL3-EXCEPT +is_exception: yes +spdx_license_key: Qt-GPL-exception-1.0 +--- + The Qt Company GPL Exception 1.0 Exception 1: diff --git a/src/licensedcode/data/licenses/qt-gpl-exception-1.0.yml b/src/licensedcode/data/licenses/qt-gpl-exception-1.0.yml deleted file mode 100644 index 1321a68294e..00000000000 --- a/src/licensedcode/data/licenses/qt-gpl-exception-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: qt-gpl-exception-1.0 -short_name: Qt GPL exception 1.0 -name: Qt GPL exception 1.0 -category: Copyleft Limited -owner: Qt Company -homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LICENSE.GPL3-EXCEPT -is_exception: yes -spdx_license_key: Qt-GPL-exception-1.0 diff --git a/src/licensedcode/data/licenses/qt-kde-linking-exception.LICENSE b/src/licensedcode/data/licenses/qt-kde-linking-exception.LICENSE index 36b03c19071..3705623e374 100644 --- a/src/licensedcode/data/licenses/qt-kde-linking-exception.LICENSE +++ b/src/licensedcode/data/licenses/qt-kde-linking-exception.LICENSE @@ -1,3 +1,30 @@ +--- +key: qt-kde-linking-exception +short_name: Qt LInking Exception to GPL 2.0 or later +name: Qt LInking Exception to GPL 2.0 or later +category: Copyleft Limited +owner: KDE Project +is_exception: yes +spdx_license_key: LicenseRef-scancode-qt-kde-linking-exception +other_urls: + - https://download.kde.org/stable/applications/18.04.0/src/eventviews-18.04.0.tar.xz +standard_notice: | + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, permission is given to link this program + with any edition of Qt, and distribute the resulting executable, + without including the source code for Qt in the source distribution. +--- + As a special exception, permission is given to link this program with any edition of Qt, and distribute the resulting executable, without including the source code for Qt in the source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/qt-kde-linking-exception.yml b/src/licensedcode/data/licenses/qt-kde-linking-exception.yml deleted file mode 100644 index 8793c3691ea..00000000000 --- a/src/licensedcode/data/licenses/qt-kde-linking-exception.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: qt-kde-linking-exception -short_name: Qt LInking Exception to GPL 2.0 or later -name: Qt LInking Exception to GPL 2.0 or later -category: Copyleft Limited -owner: KDE Project -is_exception: yes -spdx_license_key: LicenseRef-scancode-qt-kde-linking-exception -other_urls: - - https://download.kde.org/stable/applications/18.04.0/src/eventviews-18.04.0.tar.xz -standard_notice: | - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. diff --git a/src/licensedcode/data/licenses/qt-lgpl-exception-1.1.LICENSE b/src/licensedcode/data/licenses/qt-lgpl-exception-1.1.LICENSE index 10c639d3798..12c564e957c 100644 --- a/src/licensedcode/data/licenses/qt-lgpl-exception-1.1.LICENSE +++ b/src/licensedcode/data/licenses/qt-lgpl-exception-1.1.LICENSE @@ -1,3 +1,16 @@ +--- +key: qt-lgpl-exception-1.1 +short_name: Qt LGPL exception 1.1 +name: Qt LGPL exception 1.1 +category: Copyleft Limited +owner: Qt Company +homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt +is_exception: yes +spdx_license_key: Qt-LGPL-exception-1.1 +other_spdx_license_keys: + - Nokia-Qt-exception-1.1 +--- + The Qt Company Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/src/licensedcode/data/licenses/qt-lgpl-exception-1.1.yml b/src/licensedcode/data/licenses/qt-lgpl-exception-1.1.yml deleted file mode 100644 index 2214fe3a71f..00000000000 --- a/src/licensedcode/data/licenses/qt-lgpl-exception-1.1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: qt-lgpl-exception-1.1 -short_name: Qt LGPL exception 1.1 -name: Qt LGPL exception 1.1 -category: Copyleft Limited -owner: Qt Company -homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt -is_exception: yes -spdx_license_key: Qt-LGPL-exception-1.1 -other_spdx_license_keys: - - Nokia-Qt-exception-1.1 diff --git a/src/licensedcode/data/licenses/qt-qca-exception-2.0.LICENSE b/src/licensedcode/data/licenses/qt-qca-exception-2.0.LICENSE index da6dd3e6d61..8b2c6e44136 100644 --- a/src/licensedcode/data/licenses/qt-qca-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/qt-qca-exception-2.0.LICENSE @@ -1,3 +1,38 @@ +--- +key: qt-qca-exception-2.0 +short_name: Qt-QCA exception to GPL 2.0 +name: Qt-QCA exception to GPL 2.0 +category: Copyleft Limited +owner: Psi Project +is_exception: yes +spdx_license_key: LicenseRef-scancode-qt-qca-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2 +standard_notice: | + This library 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, version 2. + 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, the copyright holder(s) give permission to link + this program with the Qt Library (commercial or non-commercial edition), + and distribute the resulting executable, without including the source + code for the Qt library in the source distribution. + As a special exception, the copyright holder(s) give permission to link + this program with any other library, and distribute the resulting + executable, without including the source code for the library in the + source distribution, provided that the library interfaces with this + program only via the following plugin interfaces: + 1. The Qt Plugin APIs, only as authored by Trolltech + 2. The QCA Plugin API, only as authored by Justin Karneges +--- + As a special exception, the copyright holder(s) give permission to link this program with the Qt Library (commercial or non-commercial edition), and distribute the resulting executable, without including the source diff --git a/src/licensedcode/data/licenses/qt-qca-exception-2.0.yml b/src/licensedcode/data/licenses/qt-qca-exception-2.0.yml deleted file mode 100644 index 71c5a762390..00000000000 --- a/src/licensedcode/data/licenses/qt-qca-exception-2.0.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: qt-qca-exception-2.0 -short_name: Qt-QCA exception to GPL 2.0 -name: Qt-QCA exception to GPL 2.0 -category: Copyleft Limited -owner: Psi Project -is_exception: yes -spdx_license_key: LicenseRef-scancode-qt-qca-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://downloads.sourceforge.net/psi/psi-0.15.tar.bz2 -standard_notice: | - This library 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, version 2. - 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - As a special exception, the copyright holder(s) give permission to link - this program with the Qt Library (commercial or non-commercial edition), - and distribute the resulting executable, without including the source - code for the Qt library in the source distribution. - As a special exception, the copyright holder(s) give permission to link - this program with any other library, and distribute the resulting - executable, without including the source code for the library in the - source distribution, provided that the library interfaces with this - program only via the following plugin interfaces: - 1. The Qt Plugin APIs, only as authored by Trolltech - 2. The QCA Plugin API, only as authored by Justin Karneges diff --git a/src/licensedcode/data/licenses/qti-linux-firmware.LICENSE b/src/licensedcode/data/licenses/qti-linux-firmware.LICENSE index ba9ce3449d1..dc27caf1498 100644 --- a/src/licensedcode/data/licenses/qti-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/qti-linux-firmware.LICENSE @@ -1,3 +1,13 @@ +--- +key: qti-linux-firmware +short_name: QTI Linux Firmware +name: QTI Linux Firmware +category: Proprietary Free +owner: Qualcomm +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.qcom +spdx_license_key: LicenseRef-scancode-qti-linux-firmware +--- + PLEASE READ THIS LICENSE AGREEMENT ("AGREEMENT") CAREFULLY. THIS AGREEMENT IS A BINDING LEGAL AGREEMENT ENTERED INTO BY AND BETWEEN YOU (OR IF YOU ARE ENTERING INTO THIS AGREEMENT ON BEHALF OF AN ENTITY, THEN THE ENTITY THAT YOU diff --git a/src/licensedcode/data/licenses/qti-linux-firmware.yml b/src/licensedcode/data/licenses/qti-linux-firmware.yml deleted file mode 100644 index 3da118c14c6..00000000000 --- a/src/licensedcode/data/licenses/qti-linux-firmware.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: qti-linux-firmware -short_name: QTI Linux Firmware -name: QTI Linux Firmware -category: Proprietary Free -owner: Qualcomm -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENSE.qcom -spdx_license_key: LicenseRef-scancode-qti-linux-firmware diff --git a/src/licensedcode/data/licenses/qualcomm-iso.LICENSE b/src/licensedcode/data/licenses/qualcomm-iso.LICENSE index a9ad32be6e4..5d1a6552bb3 100644 --- a/src/licensedcode/data/licenses/qualcomm-iso.LICENSE +++ b/src/licensedcode/data/licenses/qualcomm-iso.LICENSE @@ -1,3 +1,20 @@ +--- +key: qualcomm-iso +short_name: Qualcomm ISO/IEC MPEG-B DASH License +name: Qualcomm ISO/IEC MPEG-B DASH License +category: Free Restricted +owner: Qualcomm +spdx_license_key: LicenseRef-scancode-qualcomm-iso +other_urls: + - https://www.iso.org/standard/65274.html +ignorable_copyrights: + - Copyright (c) ISO/IEC 2010 +ignorable_holders: + - ISO/IEC +ignorable_authors: + - Qualcomm, Inc. +--- + This software module was originally developed by Qualcomm, Inc. in the course of development of the ISO/IEC MPEG-B DASH standard for reference purposes and its performance may not have been optimized. diff --git a/src/licensedcode/data/licenses/qualcomm-iso.yml b/src/licensedcode/data/licenses/qualcomm-iso.yml deleted file mode 100644 index 26ce07aecbb..00000000000 --- a/src/licensedcode/data/licenses/qualcomm-iso.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: qualcomm-iso -short_name: Qualcomm ISO/IEC MPEG-B DASH License -name: Qualcomm ISO/IEC MPEG-B DASH License -category: Free Restricted -owner: Qualcomm -spdx_license_key: LicenseRef-scancode-qualcomm-iso -other_urls: - - https://www.iso.org/standard/65274.html -ignorable_copyrights: - - Copyright (c) ISO/IEC 2010 -ignorable_holders: - - ISO/IEC -ignorable_authors: - - Qualcomm, Inc. diff --git a/src/licensedcode/data/licenses/qualcomm-turing.LICENSE b/src/licensedcode/data/licenses/qualcomm-turing.LICENSE index 600b776480d..f6c89fa8078 100644 --- a/src/licensedcode/data/licenses/qualcomm-turing.LICENSE +++ b/src/licensedcode/data/licenses/qualcomm-turing.LICENSE @@ -1,3 +1,17 @@ +--- +key: qualcomm-turing +short_name: Qualcomm Turing License +name: Qualcomm Turing License +category: Permissive +owner: Qualcomm +homepage_url: https://github.com/arantius/tivodecode/blob/master/Turing.h +spdx_license_key: LicenseRef-scancode-qualcomm-turing +text_urls: + - https://github.com/arantius/tivodecode/blob/master/Turing.h +ignorable_authors: + - QUALCOMM Incorporated +--- + This software is free for commercial and non-commercial use subject to the following conditions: diff --git a/src/licensedcode/data/licenses/qualcomm-turing.yml b/src/licensedcode/data/licenses/qualcomm-turing.yml deleted file mode 100644 index d48bf8dce10..00000000000 --- a/src/licensedcode/data/licenses/qualcomm-turing.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: qualcomm-turing -short_name: Qualcomm Turing License -name: Qualcomm Turing License -category: Permissive -owner: Qualcomm -homepage_url: https://github.com/arantius/tivodecode/blob/master/Turing.h -spdx_license_key: LicenseRef-scancode-qualcomm-turing -text_urls: - - https://github.com/arantius/tivodecode/blob/master/Turing.h -ignorable_authors: - - QUALCOMM Incorporated diff --git a/src/licensedcode/data/licenses/quickfix-1.0.LICENSE b/src/licensedcode/data/licenses/quickfix-1.0.LICENSE index 9954d928446..88fa1d28a77 100644 --- a/src/licensedcode/data/licenses/quickfix-1.0.LICENSE +++ b/src/licensedcode/data/licenses/quickfix-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: quickfix-1.0 +short_name: QuickFix 1.0 +name: The QuickFIX Software License, Version 1.0 +category: Permissive +owner: QuickFix Project +homepage_url: https://www.quickfixj.org/documentation/license.html +spdx_license_key: LicenseRef-scancode-quickfix-1.0 +ignorable_authors: + - quickfixengine.org (http://www.quickfixengine.org/) +ignorable_urls: + - http://www.quickfixengine.org/ +ignorable_emails: + - ask@quickfixengine.org +--- + The QuickFIX Software License, Version 1.0 Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/licenses/quickfix-1.0.yml b/src/licensedcode/data/licenses/quickfix-1.0.yml deleted file mode 100644 index f6bf3067968..00000000000 --- a/src/licensedcode/data/licenses/quickfix-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: quickfix-1.0 -short_name: QuickFix 1.0 -name: The QuickFIX Software License, Version 1.0 -category: Permissive -owner: QuickFix Project -homepage_url: https://www.quickfixj.org/documentation/license.html -spdx_license_key: LicenseRef-scancode-quickfix-1.0 -ignorable_authors: - - quickfixengine.org (http://www.quickfixengine.org/) -ignorable_urls: - - http://www.quickfixengine.org/ -ignorable_emails: - - ask@quickfixengine.org diff --git a/src/licensedcode/data/licenses/quicktime.LICENSE b/src/licensedcode/data/licenses/quicktime.LICENSE index 6412d9d52ab..bb3bb6af8a4 100644 --- a/src/licensedcode/data/licenses/quicktime.LICENSE +++ b/src/licensedcode/data/licenses/quicktime.LICENSE @@ -1,3 +1,15 @@ +--- +key: quicktime +short_name: Apple Quicktime License +name: Apple Quicktime License +category: Proprietary Free +owner: Apple +homepage_url: http://store.apple.com/Catalog/US/Images/quicktime.html +spdx_license_key: LicenseRef-scancode-quicktime +ignorable_urls: + - http://www.mpegla.com/ +--- + Apple Computer, Inc. Software License Agreement For QuickTime diff --git a/src/licensedcode/data/licenses/quicktime.yml b/src/licensedcode/data/licenses/quicktime.yml deleted file mode 100644 index 8c9e95fe476..00000000000 --- a/src/licensedcode/data/licenses/quicktime.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: quicktime -short_name: Apple Quicktime License -name: Apple Quicktime License -category: Proprietary Free -owner: Apple -homepage_url: http://store.apple.com/Catalog/US/Images/quicktime.html -spdx_license_key: LicenseRef-scancode-quicktime -ignorable_urls: - - http://www.mpegla.com/ diff --git a/src/licensedcode/data/licenses/quin-street.LICENSE b/src/licensedcode/data/licenses/quin-street.LICENSE index af35c62c614..397b9112884 100644 --- a/src/licensedcode/data/licenses/quin-street.LICENSE +++ b/src/licensedcode/data/licenses/quin-street.LICENSE @@ -1,3 +1,25 @@ +--- +key: quin-street +short_name: QuinStreet License +name: QuinStreet License +category: Proprietary Free +owner: QuinStreet +homepage_url: http://www.codeguru.com/licensing.html +spdx_license_key: LicenseRef-scancode-quin-street +text_urls: + - http://www.codeguru.com/licensing.html + - http://www.freevbcode.com/licensing +other_urls: + - http://www.codeguru.com/cpp/controls/listview/article.php/c4189/Creating-a-CListCtrl-Class-with-Item-Style-Features-CListCtrlStyled-Class.htm + - http://www.codeguru.com/submission-guidelines.php#permission +ignorable_copyrights: + - Copyright 1999-2014 QuinStreet, Inc. +ignorable_holders: + - QuinStreet, Inc. +ignorable_emails: + - copyrightagent@quinstreet.com +--- + Content Licensing Linking to Our Content diff --git a/src/licensedcode/data/licenses/quin-street.yml b/src/licensedcode/data/licenses/quin-street.yml deleted file mode 100644 index 99fb5a90294..00000000000 --- a/src/licensedcode/data/licenses/quin-street.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: quin-street -short_name: QuinStreet License -name: QuinStreet License -category: Proprietary Free -owner: QuinStreet -homepage_url: http://www.codeguru.com/licensing.html -spdx_license_key: LicenseRef-scancode-quin-street -text_urls: - - http://www.codeguru.com/licensing.html - - http://www.freevbcode.com/licensing -other_urls: - - http://www.codeguru.com/cpp/controls/listview/article.php/c4189/Creating-a-CListCtrl-Class-with-Item-Style-Features-CListCtrlStyled-Class.htm - - http://www.codeguru.com/submission-guidelines.php#permission -ignorable_copyrights: - - Copyright 1999-2014 QuinStreet, Inc. -ignorable_holders: - - QuinStreet, Inc. -ignorable_emails: - - copyrightagent@quinstreet.com diff --git a/src/licensedcode/data/licenses/quirksmode.LICENSE b/src/licensedcode/data/licenses/quirksmode.LICENSE index 39b252d5f5d..714f850c7ea 100644 --- a/src/licensedcode/data/licenses/quirksmode.LICENSE +++ b/src/licensedcode/data/licenses/quirksmode.LICENSE @@ -1,3 +1,16 @@ +--- +key: quirksmode +short_name: Quirksmode Copyright Notice +name: Quirksmode Copyright Notice +category: Permissive +owner: Quirksmode +homepage_url: http://www.quirksmode.org/about/copyright.html +spdx_license_key: LicenseRef-scancode-quirksmode +ignorable_urls: + - http://www.quirksmode.org/ + - http://www.quirksmode.org/about/copyright.html +--- + Quirksmode Copyright Notice http://www.quirksmode.org/about/copyright.html diff --git a/src/licensedcode/data/licenses/quirksmode.yml b/src/licensedcode/data/licenses/quirksmode.yml deleted file mode 100644 index 78ec0b627b8..00000000000 --- a/src/licensedcode/data/licenses/quirksmode.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: quirksmode -short_name: Quirksmode Copyright Notice -name: Quirksmode Copyright Notice -category: Permissive -owner: Quirksmode -homepage_url: http://www.quirksmode.org/about/copyright.html -spdx_license_key: LicenseRef-scancode-quirksmode -ignorable_urls: - - http://www.quirksmode.org/ - - http://www.quirksmode.org/about/copyright.html diff --git a/src/licensedcode/data/licenses/qwt-1.0.LICENSE b/src/licensedcode/data/licenses/qwt-1.0.LICENSE index 6fca4a7f723..fa07e71902b 100644 --- a/src/licensedcode/data/licenses/qwt-1.0.LICENSE +++ b/src/licensedcode/data/licenses/qwt-1.0.LICENSE @@ -1,3 +1,14 @@ +--- +key: qwt-1.0 +is_deprecated: yes +short_name: Qwt License 1.0 Deprecated +name: Qwt License 1.0 Deprecated +category: Copyleft Limited +owner: Qwt Project +homepage_url: http://qwt.sourceforge.net/qwtlicense.html +notes: replaced by qwt-exception-1.0 +--- + Qwt License Version 1.0, January 1, 2003 The Qwt library and included programs are provided under the terms diff --git a/src/licensedcode/data/licenses/qwt-1.0.yml b/src/licensedcode/data/licenses/qwt-1.0.yml deleted file mode 100644 index dd430a8baad..00000000000 --- a/src/licensedcode/data/licenses/qwt-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: qwt-1.0 -is_deprecated: yes -short_name: Qwt License 1.0 Deprecated -name: Qwt License 1.0 Deprecated -category: Copyleft Limited -owner: Qwt Project -homepage_url: http://qwt.sourceforge.net/qwtlicense.html -notes: replaced by qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/qwt-exception-1.0.LICENSE b/src/licensedcode/data/licenses/qwt-exception-1.0.LICENSE index 1715c10f70a..5a71b4428f4 100644 --- a/src/licensedcode/data/licenses/qwt-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/qwt-exception-1.0.LICENSE @@ -1,3 +1,46 @@ +--- +key: qwt-exception-1.0 +short_name: Qwt exception to LGPL 2.1 +name: Qwt exception to LGPL 2.1 +category: Copyleft Limited +owner: Qwt Project +homepage_url: http://qwt.sourceforge.net/qwtlicense.html +is_exception: yes +spdx_license_key: Qwt-exception-1.0 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + Qwt License + Version 1.0, January 1, 2003 + The Qwt library and included programs are provided under the terms + of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following + exceptions: + 1. Widgets that are subclassed from Qwt widgets do not + constitute a derivative work. + 2. Static linking of applications and widgets to the + Qwt library does not constitute a derivative work + and does not require the author to provide source + code for the application or widget, use the shared + Qwt libraries, or link their applications or + widgets against a user-supplied version of Qwt. + If you link the application or widget to a modified + version of Qwt, then the changes to Qwt must be + provided under the terms of the LGPL in sections + 1, 2, and 4. + 3. You do not have to provide a copy of the Qwt license + with programs that are linked to the Qwt library, nor + do you have to identify the Qwt license in your + program or documentation as required by section 6 + of the LGPL. + However, programs must still identify their use of Qwt. + The following example statement can be included in user + documentation to satisfy this requirement: + [program/widget] is based in part on the work of + the Qwt project (http://qwt.sf.net). +ignorable_urls: + - http://qwt.sf.net/ +--- + Qwt License Version 1.0, January 1, 2003 The Qwt library and included programs are provided under the terms diff --git a/src/licensedcode/data/licenses/qwt-exception-1.0.yml b/src/licensedcode/data/licenses/qwt-exception-1.0.yml deleted file mode 100644 index 4d260fa4c5f..00000000000 --- a/src/licensedcode/data/licenses/qwt-exception-1.0.yml +++ /dev/null @@ -1,40 +0,0 @@ -key: qwt-exception-1.0 -short_name: Qwt exception to LGPL 2.1 -name: Qwt exception to LGPL 2.1 -category: Copyleft Limited -owner: Qwt Project -homepage_url: http://qwt.sourceforge.net/qwtlicense.html -is_exception: yes -spdx_license_key: Qwt-exception-1.0 -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -standard_notice: | - Qwt License - Version 1.0, January 1, 2003 - The Qwt library and included programs are provided under the terms - of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL) with the following - exceptions: - 1. Widgets that are subclassed from Qwt widgets do not - constitute a derivative work. - 2. Static linking of applications and widgets to the - Qwt library does not constitute a derivative work - and does not require the author to provide source - code for the application or widget, use the shared - Qwt libraries, or link their applications or - widgets against a user-supplied version of Qwt. - If you link the application or widget to a modified - version of Qwt, then the changes to Qwt must be - provided under the terms of the LGPL in sections - 1, 2, and 4. - 3. You do not have to provide a copy of the Qwt license - with programs that are linked to the Qwt library, nor - do you have to identify the Qwt license in your - program or documentation as required by section 6 - of the LGPL. - However, programs must still identify their use of Qwt. - The following example statement can be included in user - documentation to satisfy this requirement: - [program/widget] is based in part on the work of - the Qwt project (http://qwt.sf.net). -ignorable_urls: - - http://qwt.sf.net/ diff --git a/src/licensedcode/data/licenses/rackspace.LICENSE b/src/licensedcode/data/licenses/rackspace.LICENSE index a72adf828e8..74e2a478ae2 100644 --- a/src/licensedcode/data/licenses/rackspace.LICENSE +++ b/src/licensedcode/data/licenses/rackspace.LICENSE @@ -1,3 +1,12 @@ +--- +key: rackspace +short_name: Rackspace License +name: Rackspace License +category: Free Restricted +owner: Rackspace +spdx_license_key: LicenseRef-scancode-rackspace +--- + Subject to the terms of this notice, Rackspace, Inc. grants you a nonexclusive, nontransferable license, without the right to sublicense, to (a) install and execute one copy of these files on any diff --git a/src/licensedcode/data/licenses/rackspace.yml b/src/licensedcode/data/licenses/rackspace.yml deleted file mode 100644 index bd4d1bc44bc..00000000000 --- a/src/licensedcode/data/licenses/rackspace.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: rackspace -short_name: Rackspace License -name: Rackspace License -category: Free Restricted -owner: Rackspace -spdx_license_key: LicenseRef-scancode-rackspace diff --git a/src/licensedcode/data/licenses/radvd.LICENSE b/src/licensedcode/data/licenses/radvd.LICENSE index acf7dba504b..9f2e3c6354e 100644 --- a/src/licensedcode/data/licenses/radvd.LICENSE +++ b/src/licensedcode/data/licenses/radvd.LICENSE @@ -1,3 +1,17 @@ +--- +key: radvd +short_name: radvd License +name: radvd License +category: Permissive +owner: Unspecified +homepage_url: https://github.com/reubenhwk/radvd/blob/master/COPYRIGHT +spdx_license_key: LicenseRef-scancode-radvd +other_urls: + - http://www.litech.org/radvd/ + - https://github.com/radvd-project/radvd/blob/d3cc8882cb0a527d7abe986dff0228a0bc0b3f00/COPYRIGHT +minimum_coverage: 60 +--- + The author(s) grant permission for redistribution and use in source and binary forms, with or without modification, of the software and documentation provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/radvd.yml b/src/licensedcode/data/licenses/radvd.yml deleted file mode 100644 index 703cc6876cd..00000000000 --- a/src/licensedcode/data/licenses/radvd.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: radvd -short_name: radvd License -name: radvd License -category: Permissive -owner: Unspecified -homepage_url: https://github.com/reubenhwk/radvd/blob/master/COPYRIGHT -spdx_license_key: LicenseRef-scancode-radvd -other_urls: - - http://www.litech.org/radvd/ - - https://github.com/radvd-project/radvd/blob/d3cc8882cb0a527d7abe986dff0228a0bc0b3f00/COPYRIGHT -minimum_coverage: 60 diff --git a/src/licensedcode/data/licenses/ralf-corsepius.LICENSE b/src/licensedcode/data/licenses/ralf-corsepius.LICENSE index f55a5a8216c..53f1ab0cdca 100644 --- a/src/licensedcode/data/licenses/ralf-corsepius.LICENSE +++ b/src/licensedcode/data/licenses/ralf-corsepius.LICENSE @@ -1,2 +1,11 @@ +--- +key: ralf-corsepius +short_name: Ralf Corsepius License +name: Ralf Corsepius License +category: Permissive +owner: Unspecified +is_deprecated: yes +--- + Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice is preserved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ralf-corsepius.yml b/src/licensedcode/data/licenses/ralf-corsepius.yml deleted file mode 100644 index 59eb339d53c..00000000000 --- a/src/licensedcode/data/licenses/ralf-corsepius.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: ralf-corsepius -short_name: Ralf Corsepius License -name: Ralf Corsepius License -category: Permissive -owner: Unspecified -is_deprecated: yes \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ralink-firmware.LICENSE b/src/licensedcode/data/licenses/ralink-firmware.LICENSE index c2c819dc17d..46065b28e53 100644 --- a/src/licensedcode/data/licenses/ralink-firmware.LICENSE +++ b/src/licensedcode/data/licenses/ralink-firmware.LICENSE @@ -1,3 +1,15 @@ +--- +key: ralink-firmware +short_name: Ralink Firmware License +name: Ralink Firmware License +category: Proprietary Free +owner: MediaTek +homepage_url: http://iotdk.intel.com/repos/3.0/licenses/linux-firmware/LICENCE.ralink-firmware.txt +spdx_license_key: LicenseRef-scancode-ralink-firmware +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/ralink-firmware.yml b/src/licensedcode/data/licenses/ralink-firmware.yml deleted file mode 100644 index 662bcb126bb..00000000000 --- a/src/licensedcode/data/licenses/ralink-firmware.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ralink-firmware -short_name: Ralink Firmware License -name: Ralink Firmware License -category: Proprietary Free -owner: MediaTek -homepage_url: http://iotdk.intel.com/repos/3.0/licenses/linux-firmware/LICENCE.ralink-firmware.txt -spdx_license_key: LicenseRef-scancode-ralink-firmware -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/licenses/rar-winrar-eula.LICENSE b/src/licensedcode/data/licenses/rar-winrar-eula.LICENSE index c85a240d38a..fcbb84c6504 100644 --- a/src/licensedcode/data/licenses/rar-winrar-eula.LICENSE +++ b/src/licensedcode/data/licenses/rar-winrar-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: rar-winrar-eula +short_name: RAR and WinRAR EULA +name: RAR and WinRAR EULA +category: Commercial +owner: RAR +homepage_url: http://www.win-rar.com/ +spdx_license_key: LicenseRef-scancode-rar-winrar-eula +--- + RAR and WinRAR END USER LICENSE AGREEMENT (EULA) The following agreement regarding RAR (and its Windows version - WinRAR) archiver - referred to as "software" - is made between win.rar GmbH - referred to as "licensor" - and anyone who is installing, accessing or in any other way using the software - referred to as "user". diff --git a/src/licensedcode/data/licenses/rar-winrar-eula.yml b/src/licensedcode/data/licenses/rar-winrar-eula.yml deleted file mode 100644 index 8ccfaf1adbd..00000000000 --- a/src/licensedcode/data/licenses/rar-winrar-eula.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: rar-winrar-eula -short_name: RAR and WinRAR EULA -name: RAR and WinRAR EULA -category: Commercial -owner: RAR -homepage_url: http://www.win-rar.com/ -spdx_license_key: LicenseRef-scancode-rar-winrar-eula diff --git a/src/licensedcode/data/licenses/rcsl-2.0.LICENSE b/src/licensedcode/data/licenses/rcsl-2.0.LICENSE index caa23093445..eb099afd9b9 100644 --- a/src/licensedcode/data/licenses/rcsl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/rcsl-2.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: rcsl-2.0 +short_name: RCSL R&D 2.0 +name: RealNetworks Community Source License v2.0 +category: Proprietary Free +owner: RealNetworks +homepage_url: https://helixcommunity.org/content/rcsl +spdx_license_key: LicenseRef-scancode-rcsl-2.0 +text_urls: + - https://helixcommunity.org/content/rcsl +ignorable_urls: + - http://www.helixcommunity.org/ +ignorable_emails: + - press@helixcommunity.org +--- + REALNETWORKS COMMUNITY SOURCE LICENSE RESEARCH AND DEVELOPMENT USE (RCSL R&D) diff --git a/src/licensedcode/data/licenses/rcsl-2.0.yml b/src/licensedcode/data/licenses/rcsl-2.0.yml deleted file mode 100644 index 5150fdfcc1e..00000000000 --- a/src/licensedcode/data/licenses/rcsl-2.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: rcsl-2.0 -short_name: RCSL R&D 2.0 -name: RealNetworks Community Source License v2.0 -category: Proprietary Free -owner: RealNetworks -homepage_url: https://helixcommunity.org/content/rcsl -spdx_license_key: LicenseRef-scancode-rcsl-2.0 -text_urls: - - https://helixcommunity.org/content/rcsl -ignorable_urls: - - http://www.helixcommunity.org/ -ignorable_emails: - - press@helixcommunity.org diff --git a/src/licensedcode/data/licenses/rcsl-3.0.LICENSE b/src/licensedcode/data/licenses/rcsl-3.0.LICENSE index aecceb6dc79..8fd411cda13 100644 --- a/src/licensedcode/data/licenses/rcsl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/rcsl-3.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: rcsl-3.0 +short_name: RCSL R&D 3.0 +name: RealNetworks Community Source License v3.0 +category: Proprietary Free +owner: RealNetworks +homepage_url: https://helixcommunity.org/content/rcsl +spdx_license_key: LicenseRef-scancode-rcsl-3.0 +other_urls: + - http://en.wikipedia.org/wiki/Helix_project + - http://en.wikipedia.org/wiki/RealNetworks_Community_Source_License +ignorable_copyrights: + - Portions Copyright 1994-2007 (c) RealNetworks, Inc. +ignorable_holders: + - RealNetworks, Inc. +ignorable_urls: + - http://www.helixcommunity.org/ + - https://www.helixcommunity.org/content/rcsl +ignorable_emails: + - press@helixcommunity.org +--- + REALNETWORKS COMMUNITY SOURCE LICENSE RESEARCH AND DEVELOPMENT USE (RCSL R&D) diff --git a/src/licensedcode/data/licenses/rcsl-3.0.yml b/src/licensedcode/data/licenses/rcsl-3.0.yml deleted file mode 100644 index 312958191c1..00000000000 --- a/src/licensedcode/data/licenses/rcsl-3.0.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: rcsl-3.0 -short_name: RCSL R&D 3.0 -name: RealNetworks Community Source License v3.0 -category: Proprietary Free -owner: RealNetworks -homepage_url: https://helixcommunity.org/content/rcsl -spdx_license_key: LicenseRef-scancode-rcsl-3.0 -other_urls: - - http://en.wikipedia.org/wiki/Helix_project - - http://en.wikipedia.org/wiki/RealNetworks_Community_Source_License -ignorable_copyrights: - - Portions Copyright 1994-2007 (c) RealNetworks, Inc. -ignorable_holders: - - RealNetworks, Inc. -ignorable_urls: - - http://www.helixcommunity.org/ - - https://www.helixcommunity.org/content/rcsl -ignorable_emails: - - press@helixcommunity.org diff --git a/src/licensedcode/data/licenses/rdisc.LICENSE b/src/licensedcode/data/licenses/rdisc.LICENSE index 4351a0d86ec..b800ee4ec18 100644 --- a/src/licensedcode/data/licenses/rdisc.LICENSE +++ b/src/licensedcode/data/licenses/rdisc.LICENSE @@ -1,3 +1,18 @@ +--- +key: rdisc +short_name: Rdisc License +name: Rdisc License +category: Permissive +owner: Oracle (Sun) +homepage_url: https://fedoraproject.org/wiki/Licensing/Rdisc_License +notes: | + Per Fedora, this is a permissive style license from Sun, Free and GPL + compatible. +spdx_license_key: Rdisc +ignorable_authors: + - Sun Microsystems, Inc. +--- + Rdisc (this program) was developed by Sun Microsystems, Inc. and is provided for unrestricted use provided that this legend is included on all tape media and as a part of the software program in whole or part. Users may copy or modify Rdisc without charge, and they may freely distribute it. RDISC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. @@ -6,4 +21,4 @@ Rdisc is provided with no support and without any obligation on the part of Sun SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY RDISC OR ANY PART THEREOF. -In no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Sun has been advised of the possibility of such damages. +In no event will Sun Microsystems, Inc. be liable for any lost revenue or profits or other special, indirect and consequential damages, even if Sun has been advised of the possibility of such damages. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/rdisc.yml b/src/licensedcode/data/licenses/rdisc.yml deleted file mode 100644 index 089e4fb79a8..00000000000 --- a/src/licensedcode/data/licenses/rdisc.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: rdisc -short_name: Rdisc License -name: Rdisc License -category: Permissive -owner: Oracle (Sun) -homepage_url: https://fedoraproject.org/wiki/Licensing/Rdisc_License -notes: | - Per Fedora, this is a permissive style license from Sun, Free and GPL - compatible. -spdx_license_key: Rdisc -ignorable_authors: - - Sun Microsystems, Inc. diff --git a/src/licensedcode/data/licenses/realm-platform-extension-2017.LICENSE b/src/licensedcode/data/licenses/realm-platform-extension-2017.LICENSE index 256735d4cb8..92d553f7bdc 100644 --- a/src/licensedcode/data/licenses/realm-platform-extension-2017.LICENSE +++ b/src/licensedcode/data/licenses/realm-platform-extension-2017.LICENSE @@ -1,3 +1,20 @@ +--- +key: realm-platform-extension-2017 +short_name: Realm Platform Extensions License 2017 +name: Realm Platform Extensions License 2017 +category: Proprietary Free +owner: Realm +homepage_url: https://github.com/realm/realm-studio/blob/channel/major-10/LICENSE +spdx_license_key: LicenseRef-scancode-realm-platform-extension-2017 +faq_url: http://realm.io/pricing/ +ignorable_copyrights: + - Copyright (c) 2011-2017 Realm Inc +ignorable_holders: + - Realm Inc +ignorable_urls: + - http://realm.io/pricing +--- + Realm Platform Extensions License Copyright (c) 2011-2017 Realm Inc All rights reserved diff --git a/src/licensedcode/data/licenses/realm-platform-extension-2017.yml b/src/licensedcode/data/licenses/realm-platform-extension-2017.yml deleted file mode 100644 index db24709bb49..00000000000 --- a/src/licensedcode/data/licenses/realm-platform-extension-2017.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: realm-platform-extension-2017 -short_name: Realm Platform Extensions License 2017 -name: Realm Platform Extensions License 2017 -category: Proprietary Free -owner: Realm -homepage_url: https://github.com/realm/realm-studio/blob/channel/major-10/LICENSE -spdx_license_key: LicenseRef-scancode-realm-platform-extension-2017 -faq_url: http://realm.io/pricing/ -ignorable_copyrights: - - Copyright (c) 2011-2017 Realm Inc -ignorable_holders: - - Realm Inc -ignorable_urls: - - http://realm.io/pricing diff --git a/src/licensedcode/data/licenses/red-hat-attribution.LICENSE b/src/licensedcode/data/licenses/red-hat-attribution.LICENSE index f55a5a8216c..7e2fc5d4e1f 100644 --- a/src/licensedcode/data/licenses/red-hat-attribution.LICENSE +++ b/src/licensedcode/data/licenses/red-hat-attribution.LICENSE @@ -1,2 +1,12 @@ +--- +key: red-hat-attribution +short_name: Red Hat Attribution License +name: Red Hat Attribution License +category: Permissive +owner: Red Hat +notes: a very short permissive license, seen in newlib +spdx_license_key: LicenseRef-scancode-red-hat-attribution +--- + Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice is preserved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/red-hat-attribution.yml b/src/licensedcode/data/licenses/red-hat-attribution.yml deleted file mode 100644 index 294e561eeb9..00000000000 --- a/src/licensedcode/data/licenses/red-hat-attribution.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: red-hat-attribution -short_name: Red Hat Attribution License -name: Red Hat Attribution License -category: Permissive -owner: Red Hat -notes: a very short permissive license, seen in newlib -spdx_license_key: LicenseRef-scancode-red-hat-attribution diff --git a/src/licensedcode/data/licenses/red-hat-bsd-simplified.LICENSE b/src/licensedcode/data/licenses/red-hat-bsd-simplified.LICENSE index 43609d94097..45aa766bdf3 100644 --- a/src/licensedcode/data/licenses/red-hat-bsd-simplified.LICENSE +++ b/src/licensedcode/data/licenses/red-hat-bsd-simplified.LICENSE @@ -1,3 +1,15 @@ +--- +key: red-hat-bsd-simplified +short_name: Red Hat BSD-Simplified +name: Red Hat BSD-Simplified +category: Permissive +owner: Red Hat +homepage_url: https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html +spdx_license_key: LicenseRef-scancode-red-hat-bsd-simplified +other_urls: + - https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/red-hat-bsd-simplified.yml b/src/licensedcode/data/licenses/red-hat-bsd-simplified.yml deleted file mode 100644 index 7c83e084a13..00000000000 --- a/src/licensedcode/data/licenses/red-hat-bsd-simplified.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: red-hat-bsd-simplified -short_name: Red Hat BSD-Simplified -name: Red Hat BSD-Simplified -category: Permissive -owner: Red Hat -homepage_url: https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html -spdx_license_key: LicenseRef-scancode-red-hat-bsd-simplified -other_urls: - - https://www.rpmfind.net/linux/RPM/centos/6.7/i386/Packages/fipscheck-1.2.0-7.el6.i686.html diff --git a/src/licensedcode/data/licenses/red-hat-logos.LICENSE b/src/licensedcode/data/licenses/red-hat-logos.LICENSE index 5cb8eeed07e..7e7d0f99c1c 100644 --- a/src/licensedcode/data/licenses/red-hat-logos.LICENSE +++ b/src/licensedcode/data/licenses/red-hat-logos.LICENSE @@ -1,3 +1,13 @@ +--- +key: red-hat-logos +short_name: Red Hat Logos License +name: Red Hat Logos License +category: Proprietary Free +owner: Red Hat +homepage_url: http://webcache.googleusercontent.com/search?q=cache:http://www.sslug.dk/~chlor/rpm3html/pack/redhat-logos.html +spdx_license_key: LicenseRef-scancode-red-hat-logos +--- + Red Hat, Inc. grants you the right to use the Package during the normal operation of other software programs that call upon the Package. Red Hat, Inc. grants to you the right and license to copy @@ -25,4 +35,4 @@ 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 PACKAGE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/red-hat-logos.yml b/src/licensedcode/data/licenses/red-hat-logos.yml deleted file mode 100644 index 3cf8681db5a..00000000000 --- a/src/licensedcode/data/licenses/red-hat-logos.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: red-hat-logos -short_name: Red Hat Logos License -name: Red Hat Logos License -category: Proprietary Free -owner: Red Hat -homepage_url: http://webcache.googleusercontent.com/search?q=cache:http://www.sslug.dk/~chlor/rpm3html/pack/redhat-logos.html -spdx_license_key: LicenseRef-scancode-red-hat-logos diff --git a/src/licensedcode/data/licenses/red-hat-trademarks.LICENSE b/src/licensedcode/data/licenses/red-hat-trademarks.LICENSE index 8cc025b6d35..b39346e210c 100644 --- a/src/licensedcode/data/licenses/red-hat-trademarks.LICENSE +++ b/src/licensedcode/data/licenses/red-hat-trademarks.LICENSE @@ -1,3 +1,12 @@ +--- +key: red-hat-trademarks +short_name: Red Hat Trademarks License +name: Red Hat Trademarks License +category: Proprietary Free +owner: Red Hat +spdx_license_key: LicenseRef-scancode-red-hat-trademarks +--- + Red Hat®, Red Hat Enterprise Linux, and the Shadowman logo, either separately or in combination, are hereinafter referred to as "Red Hat Trademarks" and are trademarks of Red Hat, Inc., registered in the diff --git a/src/licensedcode/data/licenses/red-hat-trademarks.yml b/src/licensedcode/data/licenses/red-hat-trademarks.yml deleted file mode 100644 index 369f8d39768..00000000000 --- a/src/licensedcode/data/licenses/red-hat-trademarks.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: red-hat-trademarks -short_name: Red Hat Trademarks License -name: Red Hat Trademarks License -category: Proprietary Free -owner: Red Hat -spdx_license_key: LicenseRef-scancode-red-hat-trademarks diff --git a/src/licensedcode/data/licenses/redis-source-available-1.0.LICENSE b/src/licensedcode/data/licenses/redis-source-available-1.0.LICENSE index b17e628b4b2..7acb91fc616 100644 --- a/src/licensedcode/data/licenses/redis-source-available-1.0.LICENSE +++ b/src/licensedcode/data/licenses/redis-source-available-1.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: redis-source-available-1.0 +short_name: Redis Source Available License 1.0 +name: Redis Source Available License Agreement 1.0 +category: Source-available +owner: Redis Labs +homepage_url: https://github.com/RedisLabsModules/RedisGraph/blob/v1.0.14/LICENSE +spdx_license_key: LicenseRef-scancode-redis-source-available-1.0 +faq_url: https://redislabs.com/community/licenses/ +other_urls: + - https://techcrunch.com/2019/02/21/redis-labs-changes-its-open-source-license-again/ + - https://www.zdnet.com/article/redis-labs-drops-commons-clause-for-a-new-license/ +--- + REDIS SOURCE AVAILABLE LICENSE AGREEMENT Version 1, February 21, 2019 @@ -49,4 +63,4 @@ Your Application: an application developed by or for You, where such application 5. LIMITATION OF LIABILITY. TO THE EXTENT ALLOWABLE UNDER LAW, LICENSOR WILL NOT BE LIABLE FOR ANY DAMAGES OF ANY KIND, INCLUDING BUT NOT LIMITED TO, LOST PROFITS OR ANY CONSEQUENTIAL, SPECIAL, INCIDENTAL, INDIRECT, OR DIRECT DAMAGES, ARISING OUT OF OR RELATING TO THIS AGREEMENT. -6. GENERAL. You are not authorized to assign Your rights under this Agreement to any third party. Licensor may freely assign its rights under this Agreement to any third party. This Agreement is the entire agreement between the parties on the subject matter hereof. No amendment or modification hereof will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Failure by Licensor to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If You are located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If You are located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS before a single arbitrator in Santa Clara County, California. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof. +6. GENERAL. You are not authorized to assign Your rights under this Agreement to any third party. Licensor may freely assign its rights under this Agreement to any third party. This Agreement is the entire agreement between the parties on the subject matter hereof. No amendment or modification hereof will be valid or binding upon the parties unless made in writing and signed by the duly authorized representatives of both parties. In the event that any provision, including without limitation any condition, of this Agreement is held to be unenforceable, this Agreement and all licenses and rights granted hereunder will immediately terminate. Failure by Licensor to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right or as a waiver of any other right. This Agreement will be governed by and interpreted in accordance with the laws of the state of California, without reference to its conflict of laws principles. If You are located within the United States, all disputes arising out of this Agreement are subject to the exclusive jurisdiction of courts located in Santa Clara County, California. USA. If You are located outside of the United States, any dispute, controversy or claim arising out of or relating to this Agreement will be referred to and finally determined by arbitration in accordance with the JAMS before a single arbitrator in Santa Clara County, California. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction thereof. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/redis-source-available-1.0.yml b/src/licensedcode/data/licenses/redis-source-available-1.0.yml deleted file mode 100644 index f7198b0e504..00000000000 --- a/src/licensedcode/data/licenses/redis-source-available-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: redis-source-available-1.0 -short_name: Redis Source Available License 1.0 -name: Redis Source Available License Agreement 1.0 -category: Source-available -owner: Redis Labs -homepage_url: https://github.com/RedisLabsModules/RedisGraph/blob/v1.0.14/LICENSE -spdx_license_key: LicenseRef-scancode-redis-source-available-1.0 -faq_url: https://redislabs.com/community/licenses/ -other_urls: - - https://techcrunch.com/2019/02/21/redis-labs-changes-its-open-source-license-again/ - - https://www.zdnet.com/article/redis-labs-drops-commons-clause-for-a-new-license/ diff --git a/src/licensedcode/data/licenses/regexp.LICENSE b/src/licensedcode/data/licenses/regexp.LICENSE index a1f0f5987e3..f63c3e91604 100644 --- a/src/licensedcode/data/licenses/regexp.LICENSE +++ b/src/licensedcode/data/licenses/regexp.LICENSE @@ -1,3 +1,16 @@ +--- +key: regexp +short_name: Regexp License +name: Regexp License +category: Permissive +owner: Henry Spencer +homepage_url: https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License +spdx_license_key: Spencer-86 +other_spdx_license_keys: + - LicenseRef-scancode-regexp +minimum_coverage: 80 +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: @@ -10,4 +23,4 @@ subject to the following restrictions: by explicit claim or by omission. 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. + be misrepresented as being the original software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/regexp.yml b/src/licensedcode/data/licenses/regexp.yml deleted file mode 100644 index 3aa8315f2c5..00000000000 --- a/src/licensedcode/data/licenses/regexp.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: regexp -short_name: Regexp License -name: Regexp License -category: Permissive -owner: Henry Spencer -homepage_url: https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License -spdx_license_key: Spencer-86 -other_spdx_license_keys: - - LicenseRef-scancode-regexp -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/reportbug.LICENSE b/src/licensedcode/data/licenses/reportbug.LICENSE index b3517725e15..f0a403c728c 100644 --- a/src/licensedcode/data/licenses/reportbug.LICENSE +++ b/src/licensedcode/data/licenses/reportbug.LICENSE @@ -1,3 +1,17 @@ +--- +key: reportbug +short_name: Debian reportbug License +name: Debian reportbug License +category: Permissive +owner: Debian +homepage_url: https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6 +notes: found in Debian reportbug +spdx_license_key: LicenseRef-scancode-reportbug +text_urls: + - https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6 +minimum_coverage: 80 +--- + This program is freely distributable per the following license: Permission to use, copy, modify, and distribute this software and its diff --git a/src/licensedcode/data/licenses/reportbug.yml b/src/licensedcode/data/licenses/reportbug.yml deleted file mode 100644 index b2b81ef8f42..00000000000 --- a/src/licensedcode/data/licenses/reportbug.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: reportbug -short_name: Debian reportbug License -name: Debian reportbug License -category: Permissive -owner: Debian -homepage_url: https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6 -notes: found in Debian reportbug -spdx_license_key: LicenseRef-scancode-reportbug -text_urls: - - https://tracker.debian.org/media/packages/r/reportbug/copyright-6.6.6 -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/repoze.LICENSE b/src/licensedcode/data/licenses/repoze.LICENSE index 03a8ab9a655..9379d55ab92 100644 --- a/src/licensedcode/data/licenses/repoze.LICENSE +++ b/src/licensedcode/data/licenses/repoze.LICENSE @@ -1,3 +1,21 @@ +--- +key: repoze +short_name: Repoze License +name: Repoze License +category: Permissive +owner: Repoze +homepage_url: http://repoze.org/license.html +notes: found in Debian reportbug +spdx_license_key: BSD-3-Clause-Modification +other_spdx_license_keys: + - LicenseRef-scancode-repoze +text_urls: + - http://repoze.org/LICENSE.txt + - http://repoze.org/license.html +other_urls: + - https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant +--- + A copyright notice accompanies this license document that identifies the copyright holders. diff --git a/src/licensedcode/data/licenses/repoze.yml b/src/licensedcode/data/licenses/repoze.yml deleted file mode 100644 index 02b8b20d03d..00000000000 --- a/src/licensedcode/data/licenses/repoze.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: repoze -short_name: Repoze License -name: Repoze License -category: Permissive -owner: Repoze -homepage_url: http://repoze.org/license.html -notes: found in Debian reportbug -spdx_license_key: BSD-3-Clause-Modification -other_spdx_license_keys: - - LicenseRef-scancode-repoze -text_urls: - - http://repoze.org/LICENSE.txt - - http://repoze.org/license.html -other_urls: - - https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant diff --git a/src/licensedcode/data/licenses/rh-eula-lgpl.LICENSE b/src/licensedcode/data/licenses/rh-eula-lgpl.LICENSE index 366a3a2c387..b29be6a0e43 100644 --- a/src/licensedcode/data/licenses/rh-eula-lgpl.LICENSE +++ b/src/licensedcode/data/licenses/rh-eula-lgpl.LICENSE @@ -1,3 +1,20 @@ +--- +key: rh-eula-lgpl +short_name: Red Hat EULA JBoss Enterprise Middleware License +name: Red Hat EULA JBoss Enterprise Middleware License +category: Copyleft Limited +owner: Red Hat +homepage_url: https://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_JBoss_English_20101110.pdf +spdx_license_key: LicenseRef-scancode-rh-eula-lgpl +ignorable_copyrights: + - Copyright (c) 2010 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +ignorable_urls: + - http://www.redhat.com/about/corporate/trademark/ + - http://www.redhat.com/licenses/thirdparty/eula.html +--- + This end user license agreement ("EULA") governs the use of the JBoss Enterprise Middleware and any related updates, source code, appearance, structure and organization (the "Programs"), regardless of the delivery diff --git a/src/licensedcode/data/licenses/rh-eula-lgpl.yml b/src/licensedcode/data/licenses/rh-eula-lgpl.yml deleted file mode 100644 index 1b78d37773d..00000000000 --- a/src/licensedcode/data/licenses/rh-eula-lgpl.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: rh-eula-lgpl -short_name: Red Hat EULA JBoss Enterprise Middleware License -name: Red Hat EULA JBoss Enterprise Middleware License -category: Copyleft Limited -owner: Red Hat -homepage_url: https://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_JBoss_English_20101110.pdf -spdx_license_key: LicenseRef-scancode-rh-eula-lgpl -ignorable_copyrights: - - Copyright (c) 2010 Red Hat, Inc. -ignorable_holders: - - Red Hat, Inc. -ignorable_urls: - - http://www.redhat.com/about/corporate/trademark/ - - http://www.redhat.com/licenses/thirdparty/eula.html diff --git a/src/licensedcode/data/licenses/rh-eula.LICENSE b/src/licensedcode/data/licenses/rh-eula.LICENSE index 7ad61431046..29cff3cb5d5 100644 --- a/src/licensedcode/data/licenses/rh-eula.LICENSE +++ b/src/licensedcode/data/licenses/rh-eula.LICENSE @@ -1,3 +1,23 @@ +--- +key: rh-eula +short_name: Red Hat EULA +name: Red Hat EULA for Enterprise Linux and Applications +category: Copyleft +owner: Red Hat +homepage_url: http://www.redhat.com/en/about/red-hat-end-user-license-agreements +spdx_license_key: LicenseRef-scancode-rh-eula +text_urls: + - http://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_RHEL_English_20101110.pdf +ignorable_copyrights: + - Copyright (c) 2007 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +ignorable_urls: + - http://www.redhat.com/about/corporate/trademark/ + - http://www.redhat.com/licenses/products + - http://www.redhat.com/licenses/thirdparty/eula.html +--- + END USER LICENSE AGREEMENT RED HAT® ENTERPRISE LINUX® AND RED HAT APPLICATIONS diff --git a/src/licensedcode/data/licenses/rh-eula.yml b/src/licensedcode/data/licenses/rh-eula.yml deleted file mode 100644 index 79066dc77eb..00000000000 --- a/src/licensedcode/data/licenses/rh-eula.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: rh-eula -short_name: Red Hat EULA -name: Red Hat EULA for Enterprise Linux and Applications -category: Copyleft -owner: Red Hat -homepage_url: http://www.redhat.com/en/about/red-hat-end-user-license-agreements -spdx_license_key: LicenseRef-scancode-rh-eula -text_urls: - - http://www.redhat.com/f/pdf/licenses/GLOBAL_EULA_RHEL_English_20101110.pdf -ignorable_copyrights: - - Copyright (c) 2007 Red Hat, Inc. -ignorable_holders: - - Red Hat, Inc. -ignorable_urls: - - http://www.redhat.com/about/corporate/trademark/ - - http://www.redhat.com/licenses/products - - http://www.redhat.com/licenses/thirdparty/eula.html diff --git a/src/licensedcode/data/licenses/ricebsd.LICENSE b/src/licensedcode/data/licenses/ricebsd.LICENSE index eda70a25f20..f0e58c31b1b 100644 --- a/src/licensedcode/data/licenses/ricebsd.LICENSE +++ b/src/licensedcode/data/licenses/ricebsd.LICENSE @@ -1,3 +1,23 @@ +--- +key: ricebsd +short_name: RiceBSD +name: Rice BSD Software License +category: Permissive +owner: Rice University +homepage_url: https://web.archive.org/web/20060907200326/http://www.caam.rice.edu/software/ARPACK/RiceBSD.doc +spdx_license_key: LicenseRef-scancode-ricebsd +other_urls: + - https://github.com/pisilinux/uludag/blob/d202a1ddc0f5855acbad532ae0cf319f9f280c55/tags/pisi/2.2.18/licenses/RiceBSD + - https://github.com/search?q="Also%2C+we+ask+that+use+of+ARPACK+is+properly"&type=code + have this +ignorable_copyrights: + - (c) 2001, Rice University +ignorable_holders: + - Rice University +ignorable_authors: + - D.C. Sorensen, R.B. Lehoucq, C. Yang, and K. Maschhoff +--- + Rice BSD Software License Permits source and binary redistribution of the software ARPACK and P_ARPACK for both non-commercial and commercial use. diff --git a/src/licensedcode/data/licenses/ricebsd.yml b/src/licensedcode/data/licenses/ricebsd.yml deleted file mode 100644 index 3cf0d96ff86..00000000000 --- a/src/licensedcode/data/licenses/ricebsd.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: ricebsd -short_name: RiceBSD -name: Rice BSD Software License -category: Permissive -owner: Rice University -homepage_url: https://web.archive.org/web/20060907200326/http://www.caam.rice.edu/software/ARPACK/RiceBSD.doc -spdx_license_key: LicenseRef-scancode-ricebsd -other_urls: - - https://github.com/pisilinux/uludag/blob/d202a1ddc0f5855acbad532ae0cf319f9f280c55/tags/pisi/2.2.18/licenses/RiceBSD - - https://github.com/search?q="Also%2C+we+ask+that+use+of+ARPACK+is+properly"&type=code - have this -ignorable_copyrights: - - (c) 2001, Rice University -ignorable_holders: - - Rice University -ignorable_authors: - - D.C. Sorensen, R.B. Lehoucq, C. Yang, and K. Maschhoff diff --git a/src/licensedcode/data/licenses/richard-black.LICENSE b/src/licensedcode/data/licenses/richard-black.LICENSE index e8eff5f6edb..3bfaf8dca04 100644 --- a/src/licensedcode/data/licenses/richard-black.LICENSE +++ b/src/licensedcode/data/licenses/richard-black.LICENSE @@ -1 +1,15 @@ +--- +key: richard-black +short_name: Richard Black License +name: Richard Black License +category: Permissive +owner: Richard Black +homepage_url: https://www.cl.cam.ac.uk/research/srg/projects/fairisle/bluebook/21/crc/node6.html +spdx_license_key: LicenseRef-scancode-richard-black +ignorable_copyrights: + - copyright 1993 Richard Black +ignorable_holders: + - Richard Black +--- + This code is copyright 1993 Richard Black. All rights are reserved. You may use this code only if it includes a statement to that effect. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/richard-black.yml b/src/licensedcode/data/licenses/richard-black.yml deleted file mode 100644 index 0b3652535f6..00000000000 --- a/src/licensedcode/data/licenses/richard-black.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: richard-black -short_name: Richard Black License -name: Richard Black License -category: Permissive -owner: Richard Black -homepage_url: https://www.cl.cam.ac.uk/research/srg/projects/fairisle/bluebook/21/crc/node6.html -spdx_license_key: LicenseRef-scancode-richard-black -ignorable_copyrights: - - copyright 1993 Richard Black -ignorable_holders: - - Richard Black diff --git a/src/licensedcode/data/licenses/ricoh-1.0.LICENSE b/src/licensedcode/data/licenses/ricoh-1.0.LICENSE index 7caefecbeb8..d29816e765e 100644 --- a/src/licensedcode/data/licenses/ricoh-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ricoh-1.0.LICENSE @@ -1,3 +1,27 @@ +--- +key: ricoh-1.0 +short_name: Ricoh Source Code Public License 1.0 +name: Ricoh Source Code Public License v1.0 +category: Copyleft Limited +owner: Ricoh Global +homepage_url: http://opensource.org/licenses/ricohpl.php +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: RSCPL +text_urls: + - http://opensource.org/licenses/ricohpl.php +osi_url: http://opensource.org/licenses/ricohpl.php +other_urls: + - http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml + - http://www.opensource.org/licenses/RSCPL + - https://opensource.org/licenses/RSCPL +ignorable_copyrights: + - Copyright (c) 1995-1999 +ignorable_authors: + - Ricoh Silicon Valley, Inc. +ignorable_urls: + - http://www.risource.org/RPL +--- + Ricoh Source Code Public License Version 1.0 diff --git a/src/licensedcode/data/licenses/ricoh-1.0.yml b/src/licensedcode/data/licenses/ricoh-1.0.yml deleted file mode 100644 index 4c7a7e37572..00000000000 --- a/src/licensedcode/data/licenses/ricoh-1.0.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: ricoh-1.0 -short_name: Ricoh Source Code Public License 1.0 -name: Ricoh Source Code Public License v1.0 -category: Copyleft Limited -owner: Ricoh Global -homepage_url: http://opensource.org/licenses/ricohpl.php -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: RSCPL -text_urls: - - http://opensource.org/licenses/ricohpl.php -osi_url: http://opensource.org/licenses/ricohpl.php -other_urls: - - http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml - - http://www.opensource.org/licenses/RSCPL - - https://opensource.org/licenses/RSCPL -ignorable_copyrights: - - Copyright (c) 1995-1999 -ignorable_authors: - - Ricoh Silicon Valley, Inc. -ignorable_urls: - - http://www.risource.org/RPL diff --git a/src/licensedcode/data/licenses/riverbank-sip.LICENSE b/src/licensedcode/data/licenses/riverbank-sip.LICENSE index baa175d1eff..75f67b82741 100644 --- a/src/licensedcode/data/licenses/riverbank-sip.LICENSE +++ b/src/licensedcode/data/licenses/riverbank-sip.LICENSE @@ -1,3 +1,16 @@ +--- +key: riverbank-sip +short_name: Riverbank SIP License +name: Riverbank SIP License +category: Free Restricted +owner: Riverbank Computing +spdx_license_key: LicenseRef-scancode-riverbank-sip +ignorable_copyrights: + - Copyright (c) 2009 Riverbank Computing Limited +ignorable_holders: + - Riverbank Computing Limited +--- + RIVERBANK COMPUTING LIMITED LICENSE AGREEMENT FOR SIP 4.9.2 1. This LICENSE AGREEMENT is between Riverbank Computing Limited diff --git a/src/licensedcode/data/licenses/riverbank-sip.yml b/src/licensedcode/data/licenses/riverbank-sip.yml deleted file mode 100644 index 2f45932818b..00000000000 --- a/src/licensedcode/data/licenses/riverbank-sip.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: riverbank-sip -short_name: Riverbank SIP License -name: Riverbank SIP License -category: Free Restricted -owner: Riverbank Computing -spdx_license_key: LicenseRef-scancode-riverbank-sip -ignorable_copyrights: - - Copyright (c) 2009 Riverbank Computing Limited -ignorable_holders: - - Riverbank Computing Limited diff --git a/src/licensedcode/data/licenses/robert-hubley.LICENSE b/src/licensedcode/data/licenses/robert-hubley.LICENSE index b9838d3debe..6f19dd2f4a0 100644 --- a/src/licensedcode/data/licenses/robert-hubley.LICENSE +++ b/src/licensedcode/data/licenses/robert-hubley.LICENSE @@ -1,3 +1,13 @@ +--- +key: robert-hubley +short_name: Robert Hubley License +name: Robert Hubley License +category: Permissive +owner: Robert Hubley +homepage_url: http://www.bullzip.com/md5/vb/md5-vb-class.htm +spdx_license_key: LicenseRef-scancode-robert-hubley +--- + 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. diff --git a/src/licensedcode/data/licenses/robert-hubley.yml b/src/licensedcode/data/licenses/robert-hubley.yml deleted file mode 100644 index a1fbcbbb26e..00000000000 --- a/src/licensedcode/data/licenses/robert-hubley.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: robert-hubley -short_name: Robert Hubley License -name: Robert Hubley License -category: Permissive -owner: Robert Hubley -homepage_url: http://www.bullzip.com/md5/vb/md5-vb-class.htm -spdx_license_key: LicenseRef-scancode-robert-hubley diff --git a/src/licensedcode/data/licenses/rogue-wave.LICENSE b/src/licensedcode/data/licenses/rogue-wave.LICENSE index 0eeb4584a63..f98b7780521 100644 --- a/src/licensedcode/data/licenses/rogue-wave.LICENSE +++ b/src/licensedcode/data/licenses/rogue-wave.LICENSE @@ -1,3 +1,18 @@ +--- +key: rogue-wave +short_name: Rogue Wave Software License +name: Rogue Wave Software License +category: Commercial +owner: Rogue Wave Software, Inc. +spdx_license_key: LicenseRef-scancode-rogue-wave +other_urls: + - http://www.roguewave.com/products.aspx +ignorable_copyrights: + - (c) Copyright Rogue Wave Software, Inc. +ignorable_holders: + - Rogue Wave Software, Inc. +--- + Rogue Wave Software License (c) Copyright Rogue Wave Software, Inc. @@ -29,4 +44,4 @@ rights." Use, duplication or disclosure is subject to restrictions as set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial Computer Software-Restricted Rights (April 1985)." If the Clause at 18-52.227-74 "Rights in Data General" is specified in the contract, -then the "Alternate III" clause applies. +then the "Alternate III" clause applies. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/rogue-wave.yml b/src/licensedcode/data/licenses/rogue-wave.yml deleted file mode 100644 index faffdaa3421..00000000000 --- a/src/licensedcode/data/licenses/rogue-wave.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: rogue-wave -short_name: Rogue Wave Software License -name: Rogue Wave Software License -category: Commercial -owner: Rogue Wave Software, Inc. -spdx_license_key: LicenseRef-scancode-rogue-wave -other_urls: - - http://www.roguewave.com/products.aspx -ignorable_copyrights: - - (c) Copyright Rogue Wave Software, Inc. -ignorable_holders: - - Rogue Wave Software, Inc. diff --git a/src/licensedcode/data/licenses/rpl-1.1.LICENSE b/src/licensedcode/data/licenses/rpl-1.1.LICENSE index bb87c50abc7..d9611255376 100644 --- a/src/licensedcode/data/licenses/rpl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/rpl-1.1.LICENSE @@ -1,3 +1,30 @@ +--- +key: rpl-1.1 +short_name: RPL 1.1 +name: Reciprocal Public License 1.1 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://opensource.org/licenses/RPL-1.1 +notes: | + Per SPDX.org, this license has been superseded by the Reciprocal Public + License, version 1.5 +spdx_license_key: RPL-1.1 +osi_license_key: RPL-1.1 +text_urls: + - http://opensource.org/licenses/RPL-1.1 +osi_url: http://opensource.org/licenses/RPL-1.1 +other_urls: + - http://www.gnu.org/licenses/license-list.html#RPL + - https://opensource.org/licenses/RPL-1.1 +ignorable_copyrights: + - Copyright (c) 1999-2002 Technical Pursuit Inc. + - Copyright (c) 2001-2002 Technical Pursuit Inc. +ignorable_holders: + - Technical Pursuit Inc. +ignorable_urls: + - http://www.technicalpursuit.com/ +--- + Reciprocal Public License, version 1.1 Copyright (C) 2001-2002 Technical Pursuit Inc., diff --git a/src/licensedcode/data/licenses/rpl-1.1.yml b/src/licensedcode/data/licenses/rpl-1.1.yml deleted file mode 100644 index 051a792ac46..00000000000 --- a/src/licensedcode/data/licenses/rpl-1.1.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: rpl-1.1 -short_name: RPL 1.1 -name: Reciprocal Public License 1.1 -category: Copyleft Limited -owner: OSI - Open Source Initiative -homepage_url: http://opensource.org/licenses/RPL-1.1 -notes: | - Per SPDX.org, this license has been superseded by the Reciprocal Public - License, version 1.5 -spdx_license_key: RPL-1.1 -osi_license_key: RPL-1.1 -text_urls: - - http://opensource.org/licenses/RPL-1.1 -osi_url: http://opensource.org/licenses/RPL-1.1 -other_urls: - - http://www.gnu.org/licenses/license-list.html#RPL - - https://opensource.org/licenses/RPL-1.1 -ignorable_copyrights: - - Copyright (c) 1999-2002 Technical Pursuit Inc. - - Copyright (c) 2001-2002 Technical Pursuit Inc. -ignorable_holders: - - Technical Pursuit Inc. -ignorable_urls: - - http://www.technicalpursuit.com/ diff --git a/src/licensedcode/data/licenses/rpl-1.5.LICENSE b/src/licensedcode/data/licenses/rpl-1.5.LICENSE index b89ea8776c2..9435d0b556b 100644 --- a/src/licensedcode/data/licenses/rpl-1.5.LICENSE +++ b/src/licensedcode/data/licenses/rpl-1.5.LICENSE @@ -1,3 +1,28 @@ +--- +key: rpl-1.5 +short_name: RPL 1.5 +name: Reciprocal Public License 1.5 +category: Copyleft Limited +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/rpl1.5.txt +notes: | + Per SPDX.org, this license was released 15 July 2007 This license is OSI + certified. +spdx_license_key: RPL-1.5 +osi_license_key: RPL-1.5 +text_urls: + - http://www.opensource.org/licenses/rpl1.5.txt +osi_url: http://www.opensource.org/licenses/rpl1.5.txt +other_urls: + - http://www.gnu.org/licenses/license-list.html#RPL + - http://www.opensource.org/licenses/RPL-1.5 + - https://opensource.org/licenses/RPL-1.5 +ignorable_copyrights: + - Copyright (c) 2001-2007 Technical Pursuit Inc. +ignorable_holders: + - Technical Pursuit Inc. +--- + Reciprocal Public License (RPL) Version 1.5, July 15, 2007 diff --git a/src/licensedcode/data/licenses/rpl-1.5.yml b/src/licensedcode/data/licenses/rpl-1.5.yml deleted file mode 100644 index 69360257f69..00000000000 --- a/src/licensedcode/data/licenses/rpl-1.5.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: rpl-1.5 -short_name: RPL 1.5 -name: Reciprocal Public License 1.5 -category: Copyleft Limited -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/rpl1.5.txt -notes: | - Per SPDX.org, this license was released 15 July 2007 This license is OSI - certified. -spdx_license_key: RPL-1.5 -osi_license_key: RPL-1.5 -text_urls: - - http://www.opensource.org/licenses/rpl1.5.txt -osi_url: http://www.opensource.org/licenses/rpl1.5.txt -other_urls: - - http://www.gnu.org/licenses/license-list.html#RPL - - http://www.opensource.org/licenses/RPL-1.5 - - https://opensource.org/licenses/RPL-1.5 -ignorable_copyrights: - - Copyright (c) 2001-2007 Technical Pursuit Inc. -ignorable_holders: - - Technical Pursuit Inc. diff --git a/src/licensedcode/data/licenses/rpsl-1.0.LICENSE b/src/licensedcode/data/licenses/rpsl-1.0.LICENSE index 9f52508543e..7db45e41d10 100644 --- a/src/licensedcode/data/licenses/rpsl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/rpsl-1.0.LICENSE @@ -1,3 +1,33 @@ +--- +key: rpsl-1.0 +short_name: RealNetworks Public Source License 1.0 +name: RealNetworks Public Source License v1.0 +category: Copyleft Limited +owner: RealNetworks +homepage_url: http://opensource.org/licenses/real.php +notes: This license is OSI certified +spdx_license_key: RPSL-1.0 +osi_license_key: RPSL-1.0 +text_urls: + - http://opensource.org/licenses/real.php +osi_url: http://opensource.org/licenses/real.php +other_urls: + - http://www.opensource.org/licenses/RPSL-1.0 + - https://helixcommunity.org/content/rpsl + - https://opensource.org/licenses/RPSL-1.0 +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors + - Copyright (c) RealNetworks, Inc., 1995-2002 +ignorable_holders: + - RealNetworks, Inc. + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) diff --git a/src/licensedcode/data/licenses/rpsl-1.0.yml b/src/licensedcode/data/licenses/rpsl-1.0.yml deleted file mode 100644 index 8aa918fa986..00000000000 --- a/src/licensedcode/data/licenses/rpsl-1.0.yml +++ /dev/null @@ -1,27 +0,0 @@ -key: rpsl-1.0 -short_name: RealNetworks Public Source License 1.0 -name: RealNetworks Public Source License v1.0 -category: Copyleft Limited -owner: RealNetworks -homepage_url: http://opensource.org/licenses/real.php -notes: This license is OSI certified -spdx_license_key: RPSL-1.0 -osi_license_key: RPSL-1.0 -text_urls: - - http://opensource.org/licenses/real.php -osi_url: http://opensource.org/licenses/real.php -other_urls: - - http://www.opensource.org/licenses/RPSL-1.0 - - https://helixcommunity.org/content/rpsl - - https://opensource.org/licenses/RPSL-1.0 -ignorable_copyrights: - - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors - - Copyright (c) RealNetworks, Inc., 1995-2002 -ignorable_holders: - - RealNetworks, Inc. - - RealNetworks, Inc. and/or its licensors -ignorable_urls: - - http://www.realnetworks.com/info/helixlogo.html - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/licenses/rrdtool-floss-exception-2.0.LICENSE b/src/licensedcode/data/licenses/rrdtool-floss-exception-2.0.LICENSE index de724aaf767..d36fc8b0613 100644 --- a/src/licensedcode/data/licenses/rrdtool-floss-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/rrdtool-floss-exception-2.0.LICENSE @@ -1,3 +1,18 @@ +--- +key: rrdtool-floss-exception-2.0 +short_name: RRDtool FLOSS Exception to GPL 2.0 +name: RRDtool FLOSS Exception to GPL 2.0 +category: Copyleft Limited +owner: RRDtool Project +homepage_url: https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT +is_exception: yes +spdx_license_key: LicenseRef-scancode-rrdtool-floss-exception-2.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +ignorable_urls: + - http://www.mysql.com/company/legal/licensing/foss-exception.html +--- + FLOSS License Exception ======================= (Adapted from http://www.mysql.com/company/legal/licensing/foss-exception.html ) diff --git a/src/licensedcode/data/licenses/rrdtool-floss-exception-2.0.yml b/src/licensedcode/data/licenses/rrdtool-floss-exception-2.0.yml deleted file mode 100644 index 217dcc1c9b4..00000000000 --- a/src/licensedcode/data/licenses/rrdtool-floss-exception-2.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: rrdtool-floss-exception-2.0 -short_name: RRDtool FLOSS Exception to GPL 2.0 -name: RRDtool FLOSS Exception to GPL 2.0 -category: Copyleft Limited -owner: RRDtool Project -homepage_url: https://raw.github.com/oetiker/rrdtool-1.x/master/COPYRIGHT -is_exception: yes -spdx_license_key: LicenseRef-scancode-rrdtool-floss-exception-2.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -ignorable_urls: - - http://www.mysql.com/company/legal/licensing/foss-exception.html diff --git a/src/licensedcode/data/licenses/rsa-1990.LICENSE b/src/licensedcode/data/licenses/rsa-1990.LICENSE index ced67316b6e..a56ed740092 100644 --- a/src/licensedcode/data/licenses/rsa-1990.LICENSE +++ b/src/licensedcode/data/licenses/rsa-1990.LICENSE @@ -1,7 +1,19 @@ +--- +key: rsa-1990 +short_name: RSA 1990 +name: RSA Data Security Notice 1990 +category: Permissive +owner: RSA (the Security Division of EMC) +spdx_license_key: LicenseRef-scancode-rsa-1990 +text_urls: + - http://svn.apache.org/repos/asf/apr/apr/trunk/test/testmd4.c + - http://www.opensource.apple.com/source/libmd/libmd-3/mddriver.c?txt +--- + RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. These notices must be retained in any copies of any part of this -documentation and/or software. +documentation and/or software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/rsa-1990.yml b/src/licensedcode/data/licenses/rsa-1990.yml deleted file mode 100644 index 948d40ec799..00000000000 --- a/src/licensedcode/data/licenses/rsa-1990.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: rsa-1990 -short_name: RSA 1990 -name: RSA Data Security Notice 1990 -category: Permissive -owner: RSA (the Security Division of EMC) -spdx_license_key: LicenseRef-scancode-rsa-1990 -text_urls: - - http://svn.apache.org/repos/asf/apr/apr/trunk/test/testmd4.c - - http://www.opensource.apple.com/source/libmd/libmd-3/mddriver.c?txt diff --git a/src/licensedcode/data/licenses/rsa-cryptoki.LICENSE b/src/licensedcode/data/licenses/rsa-cryptoki.LICENSE index 4aba249a256..3c065d6978c 100644 --- a/src/licensedcode/data/licenses/rsa-cryptoki.LICENSE +++ b/src/licensedcode/data/licenses/rsa-cryptoki.LICENSE @@ -1,3 +1,15 @@ +--- +key: rsa-cryptoki +short_name: RSA Cryptoki License +name: RSA Cryptoki License +category: Permissive +owner: RSA (the Security Division of EMC) +homepage_url: http://www.rsa.com/rsalabs/node.asp?id=2133 +spdx_license_key: LicenseRef-scancode-rsa-cryptoki +text_urls: + - http://www.rsa.com/rsalabs/node.asp?id=2133 +--- + DISCLAIMER Regarding the header / include files: License to copy and use this software is granted provided that it is identified as "RSA Security Inc. PKCS #11 Cryptographic Token Interface (Cryptoki)" in all material mentioning or referencing this software or this function. diff --git a/src/licensedcode/data/licenses/rsa-cryptoki.yml b/src/licensedcode/data/licenses/rsa-cryptoki.yml deleted file mode 100644 index 9ab2e587b08..00000000000 --- a/src/licensedcode/data/licenses/rsa-cryptoki.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: rsa-cryptoki -short_name: RSA Cryptoki License -name: RSA Cryptoki License -category: Permissive -owner: RSA (the Security Division of EMC) -homepage_url: http://www.rsa.com/rsalabs/node.asp?id=2133 -spdx_license_key: LicenseRef-scancode-rsa-cryptoki -text_urls: - - http://www.rsa.com/rsalabs/node.asp?id=2133 diff --git a/src/licensedcode/data/licenses/rsa-demo.LICENSE b/src/licensedcode/data/licenses/rsa-demo.LICENSE index 7e97dc10f4d..3bb1a1a275f 100644 --- a/src/licensedcode/data/licenses/rsa-demo.LICENSE +++ b/src/licensedcode/data/licenses/rsa-demo.LICENSE @@ -1,3 +1,12 @@ +--- +key: rsa-demo +short_name: RSA Demo License +name: RSA Demo License +category: Permissive +owner: RSA (the Security Division of EMC) +spdx_license_key: LicenseRef-scancode-rsa-demo +--- + This file is used to demonstrate how to interface to an RSA Data Security, Inc. licensed development product. @@ -5,4 +14,4 @@ You have a royalty-free right to use, modify, reproduce and distribute this demonstration file (including any modified version), provided that you agree that RSA Data Security, Inc. has no warranty, implied or otherwise, or liability -for this demonstration file or any modified version. +for this demonstration file or any modified version. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/rsa-demo.yml b/src/licensedcode/data/licenses/rsa-demo.yml deleted file mode 100644 index 33ce87027c5..00000000000 --- a/src/licensedcode/data/licenses/rsa-demo.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: rsa-demo -short_name: RSA Demo License -name: RSA Demo License -category: Permissive -owner: RSA (the Security Division of EMC) -spdx_license_key: LicenseRef-scancode-rsa-demo diff --git a/src/licensedcode/data/licenses/rsa-md2.LICENSE b/src/licensedcode/data/licenses/rsa-md2.LICENSE index c9f0700e50f..bf537edaf75 100644 --- a/src/licensedcode/data/licenses/rsa-md2.LICENSE +++ b/src/licensedcode/data/licenses/rsa-md2.LICENSE @@ -1,3 +1,12 @@ +--- +key: rsa-md2 +short_name: RSA-MD2 License +name: RSA Data Security MD2 +category: Free Restricted +owner: RSA (the Security Division of EMC) +spdx_license_key: LicenseRef-scancode-rsa-md2 +--- + License to copy and use this software is granted for non-commercial Internet Privacy-Enhanced Mail provided that it is identified as the "RSA Data Security, Inc. MD2 Message Digest Algorithm" in all material mentioning or referencing this software or this function. RSA Data Security, Inc. makes no representations concerning either the merchantability of this software or the suitability of this software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. diff --git a/src/licensedcode/data/licenses/rsa-md2.yml b/src/licensedcode/data/licenses/rsa-md2.yml deleted file mode 100644 index 911a2285e2d..00000000000 --- a/src/licensedcode/data/licenses/rsa-md2.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: rsa-md2 -short_name: RSA-MD2 License -name: RSA Data Security MD2 -category: Free Restricted -owner: RSA (the Security Division of EMC) -spdx_license_key: LicenseRef-scancode-rsa-md2 diff --git a/src/licensedcode/data/licenses/rsa-md4.LICENSE b/src/licensedcode/data/licenses/rsa-md4.LICENSE index 211d6f3c14c..4012ddbf1e8 100644 --- a/src/licensedcode/data/licenses/rsa-md4.LICENSE +++ b/src/licensedcode/data/licenses/rsa-md4.LICENSE @@ -1,3 +1,12 @@ +--- +key: rsa-md4 +short_name: RSA-MD4 License +name: RSA Data Security MD4 +category: Permissive +owner: RSA (the Security Division of EMC) +spdx_license_key: LicenseRef-scancode-rsa-md4 +--- + License to copy and use this software is granted provided that it is identified as the "RSA Data Security, Inc. MD4 Message-Digest Algorithm" in all material mentioning or referencing this software diff --git a/src/licensedcode/data/licenses/rsa-md4.yml b/src/licensedcode/data/licenses/rsa-md4.yml deleted file mode 100644 index 85c562f2d67..00000000000 --- a/src/licensedcode/data/licenses/rsa-md4.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: rsa-md4 -short_name: RSA-MD4 License -name: RSA Data Security MD4 -category: Permissive -owner: RSA (the Security Division of EMC) -spdx_license_key: LicenseRef-scancode-rsa-md4 diff --git a/src/licensedcode/data/licenses/rsa-md5.LICENSE b/src/licensedcode/data/licenses/rsa-md5.LICENSE index a2d03825c1b..3a07941309a 100644 --- a/src/licensedcode/data/licenses/rsa-md5.LICENSE +++ b/src/licensedcode/data/licenses/rsa-md5.LICENSE @@ -1,3 +1,17 @@ +--- +key: rsa-md5 +short_name: RSA-MD5 License +name: RSA Data Security MD5 +category: Permissive +owner: RSA (the Security Division of EMC) +homepage_url: http://www.faqs.org/rfcs/rfc1321.html +spdx_license_key: RSA-MD +text_urls: + - http://www.ietf.org/rfc/rfc1321.txt +other_urls: + - http://www.faqs.org/rfcs/rfc1321.html +--- + License to copy and use this software is granted provided that it is identified as the "RSA Data Security, Inc. MD5 Message-Digest Algorithm" in all material mentioning or referencing this software @@ -14,4 +28,4 @@ software for any particular purpose. It is provided "as is" without express or implied warranty of any kind. These notices must be retained in any copies of any part of this -documentation and/or software. +documentation and/or software. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/rsa-md5.yml b/src/licensedcode/data/licenses/rsa-md5.yml deleted file mode 100644 index 381dff8d611..00000000000 --- a/src/licensedcode/data/licenses/rsa-md5.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: rsa-md5 -short_name: RSA-MD5 License -name: RSA Data Security MD5 -category: Permissive -owner: RSA (the Security Division of EMC) -homepage_url: http://www.faqs.org/rfcs/rfc1321.html -spdx_license_key: RSA-MD -text_urls: - - http://www.ietf.org/rfc/rfc1321.txt -other_urls: - - http://www.faqs.org/rfcs/rfc1321.html diff --git a/src/licensedcode/data/licenses/rsa-proprietary.LICENSE b/src/licensedcode/data/licenses/rsa-proprietary.LICENSE index f2bd6e4d5be..80a133a1a32 100644 --- a/src/licensedcode/data/licenses/rsa-proprietary.LICENSE +++ b/src/licensedcode/data/licenses/rsa-proprietary.LICENSE @@ -1,2 +1,16 @@ +--- +key: rsa-proprietary +short_name: RSA Proprietary +name: RSA Proprietary Shrinkwrap License +category: Commercial +owner: RSA (the Security Division of EMC) +homepage_url: https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf +spdx_license_key: LicenseRef-scancode-rsa-proprietary +text_urls: + - https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf +ignorable_urls: + - https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf +--- + The text of this license is secured, and may be viewed at https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf \ No newline at end of file diff --git a/src/licensedcode/data/licenses/rsa-proprietary.yml b/src/licensedcode/data/licenses/rsa-proprietary.yml deleted file mode 100644 index f77ab0760f4..00000000000 --- a/src/licensedcode/data/licenses/rsa-proprietary.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: rsa-proprietary -short_name: RSA Proprietary -name: RSA Proprietary Shrinkwrap License -category: Commercial -owner: RSA (the Security Division of EMC) -homepage_url: https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf -spdx_license_key: LicenseRef-scancode-rsa-proprietary -text_urls: - - https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf -ignorable_urls: - - https://www.emc.com/collateral/legal/shrinkwrap-license-combined.pdf diff --git a/src/licensedcode/data/licenses/rtools-util.LICENSE b/src/licensedcode/data/licenses/rtools-util.LICENSE index 110c18d67b3..10aaa8cd43e 100644 --- a/src/licensedcode/data/licenses/rtools-util.LICENSE +++ b/src/licensedcode/data/licenses/rtools-util.LICENSE @@ -1,3 +1,14 @@ +--- +key: rtools-util +short_name: RTools.Util License +name: RTools.Util License +category: Permissive +owner: Ryan Seghers +spdx_license_key: LicenseRef-scancode-rtools-util +other_urls: + - http://www.codeproject.com/Articles/3143/RTools-Util-C-Library +--- + This software is provided AS IS. No warranty is granted, neither expressed nor implied. USE THIS SOFTWARE AT YOUR OWN RISK. NO REPRESENTATION OF MERCHANTABILITY or FITNESS FOR ANY diff --git a/src/licensedcode/data/licenses/rtools-util.yml b/src/licensedcode/data/licenses/rtools-util.yml deleted file mode 100644 index cf00199ee05..00000000000 --- a/src/licensedcode/data/licenses/rtools-util.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: rtools-util -short_name: RTools.Util License -name: RTools.Util License -category: Permissive -owner: Ryan Seghers -spdx_license_key: LicenseRef-scancode-rtools-util -other_urls: - - http://www.codeproject.com/Articles/3143/RTools-Util-C-Library diff --git a/src/licensedcode/data/licenses/ruby.LICENSE b/src/licensedcode/data/licenses/ruby.LICENSE index 78c2c59f03a..25f5c6ed271 100644 --- a/src/licensedcode/data/licenses/ruby.LICENSE +++ b/src/licensedcode/data/licenses/ruby.LICENSE @@ -1,3 +1,25 @@ +--- +key: ruby +short_name: Ruby License +name: Ruby License +category: Copyleft Limited +owner: Ruby +homepage_url: http://www.ruby-lang.org/en/LICENSE.txt +notes: | + This version of the Ruby license is the latest found in the dual license + COPYING dated from 2010-09-15 Per SPDX.org, Ruby is disjunctively licensed + project that allows the choice of this license and another. The other + license choice has changed over time (from GPL originally, to BSD-2-Clause + currently), so one needs to be aware of that change. The Ruby License + itself is un-versioned, but has varied a bit over the years, the last + substantive variation being in 2002. +spdx_license_key: Ruby +text_urls: + - http://www.ruby-lang.org/en/LICENSE.txt +other_urls: + - https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING +--- + 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the diff --git a/src/licensedcode/data/licenses/ruby.yml b/src/licensedcode/data/licenses/ruby.yml deleted file mode 100644 index 0de2fdf37b0..00000000000 --- a/src/licensedcode/data/licenses/ruby.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: ruby -short_name: Ruby License -name: Ruby License -category: Copyleft Limited -owner: Ruby -homepage_url: http://www.ruby-lang.org/en/LICENSE.txt -notes: | - This version of the Ruby license is the latest found in the dual license - COPYING dated from 2010-09-15 Per SPDX.org, Ruby is disjunctively licensed - project that allows the choice of this license and another. The other - license choice has changed over time (from GPL originally, to BSD-2-Clause - currently), so one needs to be aware of that change. The Ruby License - itself is un-versioned, but has varied a bit over the years, the last - substantive variation being in 2002. -spdx_license_key: Ruby -text_urls: - - http://www.ruby-lang.org/en/LICENSE.txt -other_urls: - - https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING diff --git a/src/licensedcode/data/licenses/rubyencoder-commercial.LICENSE b/src/licensedcode/data/licenses/rubyencoder-commercial.LICENSE index 5325a03d7cf..4f918375c92 100644 --- a/src/licensedcode/data/licenses/rubyencoder-commercial.LICENSE +++ b/src/licensedcode/data/licenses/rubyencoder-commercial.LICENSE @@ -1,3 +1,19 @@ +--- +key: rubyencoder-commercial +short_name: RubyEncoder Commercial Licence +name: RubyEncoder Commercial Licence +category: Commercial +owner: RubyEncoder +homepage_url: https://www.rubyencoder.com/terms.html +spdx_license_key: LicenseRef-scancode-rubyencoder-commercial +other_urls: + - https://www.rubyencoder.com/loaders.html# +ignorable_urls: + - http://www.rubyencoder.com/ +ignorable_emails: + - support@rubyencoder.com +--- + Terms & Conditions PLEASE READ THIS CAREFULLY BEFORE USING MATERIALS: A IMPORTANT PROVISIONS diff --git a/src/licensedcode/data/licenses/rubyencoder-commercial.yml b/src/licensedcode/data/licenses/rubyencoder-commercial.yml deleted file mode 100644 index 7d3c03b8472..00000000000 --- a/src/licensedcode/data/licenses/rubyencoder-commercial.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: rubyencoder-commercial -short_name: RubyEncoder Commercial Licence -name: RubyEncoder Commercial Licence -category: Commercial -owner: RubyEncoder -homepage_url: https://www.rubyencoder.com/terms.html -spdx_license_key: LicenseRef-scancode-rubyencoder-commercial -other_urls: - - https://www.rubyencoder.com/loaders.html# -ignorable_urls: - - http://www.rubyencoder.com/ -ignorable_emails: - - support@rubyencoder.com diff --git a/src/licensedcode/data/licenses/rubyencoder-loader.LICENSE b/src/licensedcode/data/licenses/rubyencoder-loader.LICENSE index 861399a19b0..166b62f36b4 100644 --- a/src/licensedcode/data/licenses/rubyencoder-loader.LICENSE +++ b/src/licensedcode/data/licenses/rubyencoder-loader.LICENSE @@ -1,3 +1,22 @@ +--- +key: rubyencoder-loader +short_name: RubyEncoder Loader Licence +name: RubyEncoder Loader Licence +category: Proprietary Free +owner: RubyEncoder +homepage_url: https://www.rubyencoder.com/loaders.html +spdx_license_key: LicenseRef-scancode-rubyencoder-loader +other_urls: + - https://www.rubyencoder.com/terms.html +ignorable_authors: + - assurances as SourceGuardian Ltd +ignorable_urls: + - http://www.rubyencoder.com/ + - http://www.rubyencoder.com/terms.html +ignorable_emails: + - support@rubyencoder.com +--- + RUBYENCODER LOADER LICENCE This Licence applies to the use of the Loaders for RubyEncoder by End Users and is granted by SourceGuardian Ltd (registered number 05663267) which is referred to in this Licence as “RubyEncoder”. The licence terms for the use of RubyEncoder software are set out at http://www.rubyencoder.com/terms.html. If you are a licensee of RubyEncoder your use of the Loaders is governed by that licence. diff --git a/src/licensedcode/data/licenses/rubyencoder-loader.yml b/src/licensedcode/data/licenses/rubyencoder-loader.yml deleted file mode 100644 index 619069c94b4..00000000000 --- a/src/licensedcode/data/licenses/rubyencoder-loader.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: rubyencoder-loader -short_name: RubyEncoder Loader Licence -name: RubyEncoder Loader Licence -category: Proprietary Free -owner: RubyEncoder -homepage_url: https://www.rubyencoder.com/loaders.html -spdx_license_key: LicenseRef-scancode-rubyencoder-loader -other_urls: - - https://www.rubyencoder.com/terms.html -ignorable_authors: - - assurances as SourceGuardian Ltd -ignorable_urls: - - http://www.rubyencoder.com/ - - http://www.rubyencoder.com/terms.html -ignorable_emails: - - support@rubyencoder.com diff --git a/src/licensedcode/data/licenses/rute.LICENSE b/src/licensedcode/data/licenses/rute.LICENSE index 7980363e3cb..557fa3a759c 100644 --- a/src/licensedcode/data/licenses/rute.LICENSE +++ b/src/licensedcode/data/licenses/rute.LICENSE @@ -1,3 +1,20 @@ +--- +key: rute +short_name: Rute Users Tutorial and Exposition License 0.8.0 +name: Rute Users Tutorial and Exposition License v0.8.0 +category: Permissive +owner: Unspecified +homepage_url: http://rute.sourceforge.net/ +spdx_license_key: LicenseRef-scancode-rute +faq_url: http://rute.sourceforge.net/ +other_urls: + - http://rute.sourceforge.net/ + - http://rute.sourceforge.net/rute-HTML.tar.gz + - http://rute.sourceforge.net/rute.dvi.gz + - http://rute.sourceforge.net/rute.pdf + - http://rute.sourceforge.net/rute.ps.gz +--- + Copying This license dictates the conditions under which you may copy, modify and distribute this work. @@ -10,4 +27,4 @@ TERMS AND CONDITIONS 4. The work is not distributed to promote any product, computer program or operating system. Even if otherwise cited, all of the opinions expressed in the work are exclusively those of the author. The author withdraws any implication that any statement made within this work can be justified, verified or corroborated. NO WARRANTY 5. THE COPYRIGHT HOLDER(S) PROVIDE NO WARRANTY FOR THE ACCURACY OR COMPLETENESS OF THIS WORK, OR TO THE FUNCTIONALITY OF THE EXAMPLE PROGRAMS OR DATA CONTAINED THEREIN, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -6. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE WORK 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 WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +6. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE WORK 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 WORK (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES), 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/licenses/rute.yml b/src/licensedcode/data/licenses/rute.yml deleted file mode 100644 index 7adf168cd0b..00000000000 --- a/src/licensedcode/data/licenses/rute.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: rute -short_name: Rute Users Tutorial and Exposition License 0.8.0 -name: Rute Users Tutorial and Exposition License v0.8.0 -category: Permissive -owner: Unspecified -homepage_url: http://rute.sourceforge.net/ -spdx_license_key: LicenseRef-scancode-rute -faq_url: http://rute.sourceforge.net/ -other_urls: - - http://rute.sourceforge.net/ - - http://rute.sourceforge.net/rute-HTML.tar.gz - - http://rute.sourceforge.net/rute.dvi.gz - - http://rute.sourceforge.net/rute.pdf - - http://rute.sourceforge.net/rute.ps.gz diff --git a/src/licensedcode/data/licenses/rxtx-exception-lgpl-2.1.LICENSE b/src/licensedcode/data/licenses/rxtx-exception-lgpl-2.1.LICENSE index 7e9a26f3262..5f197070fc9 100644 --- a/src/licensedcode/data/licenses/rxtx-exception-lgpl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/rxtx-exception-lgpl-2.1.LICENSE @@ -1,3 +1,56 @@ +--- +key: rxtx-exception-lgpl-2.1 +short_name: RXTX exception to LGPL 2.1 +name: RXTX exception to LGPL 2.1 +category: Copyleft Limited +owner: RXTX +homepage_url: http://users.frii.com/jarvi/rxtx/license.html +is_exception: yes +spdx_license_key: LicenseRef-scancode-rxtx-exception-lgpl-2.1 +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. + RXTX is a native interface to serial ports in java. + Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who + actually wrote it. See individual source files for more information. + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + An executable that contains no derivative of any portion of RXTX, but + is designed to work with RXTX by being dynamically linked with it, + is considered a "work that uses the Library" subject to the terms and + conditions of the GNU Lesser General Public License. + The following has been added to the RXTX License to remove + any confusion about linking to RXTX. We want to allow in part what + section 5, paragraph 2 of the LGPL does not permit in the special + case of linking over a controlled interface. The intent is to add a + Java Specification Request or standards body defined interface in the + future as another exception but one is not currently available. + http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface + As a special exception, the copyright holders of RXTX give you + permission to link RXTX with independent modules that communicate with + RXTX solely through the Sun Microsytems CommAPI interface version 2, + regardless of the license terms of these independent modules, and to copy + and distribute the resulting combined work under terms of your choice, + provided that every copy of the combined work is accompanied by a complete + copy of the source code of RXTX (the version of RXTX used to produce the + combined work), being distributed under the terms of the GNU Lesser General + Public License plus this exception. An independent module is a + module which is not derived from or based on RXTX. + Note that people who make modified versions of RXTX are not obligated + to grant this special exception for their modified versions; it is + their choice whether to do so. The GNU Lesser General Public License + gives permission to release a modified version without this exception; this + exception also makes it possible to release a modified version which + carries forward this exception. +--- + As a special exception, the copyright holders of RXTX give you permission to link RXTX with independent modules that communicate with RXTX solely through the Sun Microsytems CommAPI interface version 2, diff --git a/src/licensedcode/data/licenses/rxtx-exception-lgpl-2.1.yml b/src/licensedcode/data/licenses/rxtx-exception-lgpl-2.1.yml deleted file mode 100644 index e0659368fce..00000000000 --- a/src/licensedcode/data/licenses/rxtx-exception-lgpl-2.1.yml +++ /dev/null @@ -1,50 +0,0 @@ -key: rxtx-exception-lgpl-2.1 -short_name: RXTX exception to LGPL 2.1 -name: RXTX exception to LGPL 2.1 -category: Copyleft Limited -owner: RXTX -homepage_url: http://users.frii.com/jarvi/rxtx/license.html -is_exception: yes -spdx_license_key: LicenseRef-scancode-rxtx-exception-lgpl-2.1 -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -standard_notice: | - RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. - RXTX is a native interface to serial ports in java. - Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who - actually wrote it. See individual source files for more information. - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - An executable that contains no derivative of any portion of RXTX, but - is designed to work with RXTX by being dynamically linked with it, - is considered a "work that uses the Library" subject to the terms and - conditions of the GNU Lesser General Public License. - The following has been added to the RXTX License to remove - any confusion about linking to RXTX. We want to allow in part what - section 5, paragraph 2 of the LGPL does not permit in the special - case of linking over a controlled interface. The intent is to add a - Java Specification Request or standards body defined interface in the - future as another exception but one is not currently available. - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface - As a special exception, the copyright holders of RXTX give you - permission to link RXTX with independent modules that communicate with - RXTX solely through the Sun Microsytems CommAPI interface version 2, - regardless of the license terms of these independent modules, and to copy - and distribute the resulting combined work under terms of your choice, - provided that every copy of the combined work is accompanied by a complete - copy of the source code of RXTX (the version of RXTX used to produce the - combined work), being distributed under the terms of the GNU Lesser General - Public License plus this exception. An independent module is a - module which is not derived from or based on RXTX. - Note that people who make modified versions of RXTX are not obligated - to grant this special exception for their modified versions; it is - their choice whether to do so. The GNU Lesser General Public License - gives permission to release a modified version without this exception; this - exception also makes it possible to release a modified version which - carries forward this exception. diff --git a/src/licensedcode/data/licenses/ryszard-szopa.LICENSE b/src/licensedcode/data/licenses/ryszard-szopa.LICENSE index 303a6a47f91..7867aa4264a 100644 --- a/src/licensedcode/data/licenses/ryszard-szopa.LICENSE +++ b/src/licensedcode/data/licenses/ryszard-szopa.LICENSE @@ -1,3 +1,12 @@ +--- +key: ryszard-szopa +short_name: Ryszard Szopa License +name: Ryszard Szopa License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-ryszard-szopa +--- + This work ‘as-is’ we provide. No warranty, express or implied. We’ve done our best, diff --git a/src/licensedcode/data/licenses/ryszard-szopa.yml b/src/licensedcode/data/licenses/ryszard-szopa.yml deleted file mode 100644 index 608cf8173ee..00000000000 --- a/src/licensedcode/data/licenses/ryszard-szopa.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: ryszard-szopa -short_name: Ryszard Szopa License -name: Ryszard Szopa License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-ryszard-szopa diff --git a/src/licensedcode/data/licenses/saas-mit.LICENSE b/src/licensedcode/data/licenses/saas-mit.LICENSE index 44bcf8cd330..6232892971d 100644 --- a/src/licensedcode/data/licenses/saas-mit.LICENSE +++ b/src/licensedcode/data/licenses/saas-mit.LICENSE @@ -1,3 +1,14 @@ +--- +key: saas-mit +short_name: SaaS MIT License +name: SaaS MIT License +category: Permissive +owner: CubesViewer +homepage_url: https://github.com/jjmontesl/cubesviewer/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-saas-mit +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights @@ -18,4 +29,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/saas-mit.yml b/src/licensedcode/data/licenses/saas-mit.yml deleted file mode 100644 index b4839366b6f..00000000000 --- a/src/licensedcode/data/licenses/saas-mit.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: saas-mit -short_name: SaaS MIT License -name: SaaS MIT License -category: Permissive -owner: CubesViewer -homepage_url: https://github.com/jjmontesl/cubesviewer/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-saas-mit -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/saf.LICENSE b/src/licensedcode/data/licenses/saf.LICENSE index e871de42e54..5e092f6963a 100644 --- a/src/licensedcode/data/licenses/saf.LICENSE +++ b/src/licensedcode/data/licenses/saf.LICENSE @@ -1,3 +1,16 @@ +--- +key: saf +short_name: Service Availability Forum License +name: Service Availability Forum License +category: Permissive +owner: Service Availability Forum +spdx_license_key: LicenseRef-scancode-saf +ignorable_copyrights: + - Copyright (c) Service Availability(TM) Forum +ignorable_holders: + - Service Availability(TM) Forum +--- + Service Availability Forum License OWNERSHIP OF SPECIFICATION AND COPYRIGHTS. The Specification and all worldwide copyrights therein are the exclusive property of Licensor. You may not remove, obscure, or alter any copyright or other proprietary rights notices that are in or on the copy of the Specification you download. You must reproduce all such notices on all copies of the Specification you make. Licensor may make changes to the Specification, or to items referenced therein, at any time without notice. Licensor is not obligated to support or update the Specification. diff --git a/src/licensedcode/data/licenses/saf.yml b/src/licensedcode/data/licenses/saf.yml deleted file mode 100644 index c38dccfb659..00000000000 --- a/src/licensedcode/data/licenses/saf.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: saf -short_name: Service Availability Forum License -name: Service Availability Forum License -category: Permissive -owner: Service Availability Forum -spdx_license_key: LicenseRef-scancode-saf -ignorable_copyrights: - - Copyright (c) Service Availability(TM) Forum -ignorable_holders: - - Service Availability(TM) Forum diff --git a/src/licensedcode/data/licenses/safecopy-eula.LICENSE b/src/licensedcode/data/licenses/safecopy-eula.LICENSE index 23be5008326..1f3f232bed0 100644 --- a/src/licensedcode/data/licenses/safecopy-eula.LICENSE +++ b/src/licensedcode/data/licenses/safecopy-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: safecopy-eula +short_name: SafeCopy EULA +name: SafeCopy EULA +category: Proprietary Free +owner: Elwinsoft +homepage_url: http://www.elwinsoft.com/ +spdx_license_key: LicenseRef-scancode-safecopy-eula +--- + The SafeCopy Free! utility is freeware. User is granted a non-exclusive license to use SafeCopy Free! utility, for any legal purpose, at a time. diff --git a/src/licensedcode/data/licenses/safecopy-eula.yml b/src/licensedcode/data/licenses/safecopy-eula.yml deleted file mode 100644 index 7f4da6a6b12..00000000000 --- a/src/licensedcode/data/licenses/safecopy-eula.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: safecopy-eula -short_name: SafeCopy EULA -name: SafeCopy EULA -category: Proprietary Free -owner: Elwinsoft -homepage_url: http://www.elwinsoft.com/ -spdx_license_key: LicenseRef-scancode-safecopy-eula diff --git a/src/licensedcode/data/licenses/san-francisco-font.LICENSE b/src/licensedcode/data/licenses/san-francisco-font.LICENSE index c143fbab845..e7043798463 100644 --- a/src/licensedcode/data/licenses/san-francisco-font.LICENSE +++ b/src/licensedcode/data/licenses/san-francisco-font.LICENSE @@ -1,3 +1,13 @@ +--- +key: san-francisco-font +short_name: San Francisco Font License +name: Apple San Francisco Font License +category: Proprietary Free +owner: Apple +homepage_url: https://sf.abarba.me/LICENSE.pdf +spdx_license_key: LicenseRef-scancode-san-francisco-font +--- + APPLE INC. LICENSE AGREEMENT FOR THE APPLE SAN FRANCISCO FONT For iOS, OS X and tvOS application uses only diff --git a/src/licensedcode/data/licenses/san-francisco-font.yml b/src/licensedcode/data/licenses/san-francisco-font.yml deleted file mode 100644 index ffc823a5037..00000000000 --- a/src/licensedcode/data/licenses/san-francisco-font.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: san-francisco-font -short_name: San Francisco Font License -name: Apple San Francisco Font License -category: Proprietary Free -owner: Apple -homepage_url: https://sf.abarba.me/LICENSE.pdf -spdx_license_key: LicenseRef-scancode-san-francisco-font diff --git a/src/licensedcode/data/licenses/sandeep.LICENSE b/src/licensedcode/data/licenses/sandeep.LICENSE index d4b310ab799..759f191d5aa 100644 --- a/src/licensedcode/data/licenses/sandeep.LICENSE +++ b/src/licensedcode/data/licenses/sandeep.LICENSE @@ -1,3 +1,19 @@ +--- +key: sandeep +short_name: Sandeep License +name: Sandeep License +category: Proprietary Free +owner: Sandeep Gangadharan +homepage_url: http://www.sivamdesign.com/scripts/ +spdx_license_key: LicenseRef-scancode-sandeep +ignorable_copyrights: + - Copyright (c) 2000 - 2014 Sandeep Gangadharan +ignorable_holders: + - Sandeep Gangadharan +ignorable_urls: + - http://www.sivamdesign.com/scripts/ +--- + Terms of Use All scripts available here are original scripts written by the author diff --git a/src/licensedcode/data/licenses/sandeep.yml b/src/licensedcode/data/licenses/sandeep.yml deleted file mode 100644 index 85c234b133c..00000000000 --- a/src/licensedcode/data/licenses/sandeep.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: sandeep -short_name: Sandeep License -name: Sandeep License -category: Proprietary Free -owner: Sandeep Gangadharan -homepage_url: http://www.sivamdesign.com/scripts/ -spdx_license_key: LicenseRef-scancode-sandeep -ignorable_copyrights: - - Copyright (c) 2000 - 2014 Sandeep Gangadharan -ignorable_holders: - - Sandeep Gangadharan -ignorable_urls: - - http://www.sivamdesign.com/scripts/ diff --git a/src/licensedcode/data/licenses/sane-exception-2.0-plus.LICENSE b/src/licensedcode/data/licenses/sane-exception-2.0-plus.LICENSE index db70bc8baa1..fbbccbb8f46 100644 --- a/src/licensedcode/data/licenses/sane-exception-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/sane-exception-2.0-plus.LICENSE @@ -1,3 +1,47 @@ +--- +key: sane-exception-2.0-plus +short_name: SANE exception to GPL 2.0 or later +name: SANE exception to GPL 2.0 or later +category: Copyleft Limited +owner: SANE Project +homepage_url: https://alioth.debian.org/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-sane-exception-2.0-plus +text_urls: + - https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + 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., 59 Temple Place - Suite 330, Boston, + MA 02111-1307, USA. + As a special exception, the authors of SANE give permission for + additional uses of the libraries contained in this release of SANE. + The exception is that, if you link a SANE library with other files + to produce an executable, this does not by itself cause the + resulting executable to be covered by the GNU General Public + License. Your use of that executable is in no way restricted on + account of linking the SANE library code into it. + This exception does not, however, invalidate any other reasons why + the executable file might be covered by the GNU General Public + License. + If you submit changes to SANE to the maintainers to be included in + a subsequent release, you agree by submitting the changes that + those changes may be distributed with this exception intact. + If you write modifications of your own for SANE, it is your choice + whether to permit this exception to apply to your modifications. + If you do not wish that, delete this exception notice. +--- + The exception is that, if you link a SANE library with other files to produce an executable, this does not by itself cause the resulting executable to be covered by the GNU General Public diff --git a/src/licensedcode/data/licenses/sane-exception-2.0-plus.yml b/src/licensedcode/data/licenses/sane-exception-2.0-plus.yml deleted file mode 100644 index 47e35dc7cd5..00000000000 --- a/src/licensedcode/data/licenses/sane-exception-2.0-plus.yml +++ /dev/null @@ -1,41 +0,0 @@ -key: sane-exception-2.0-plus -short_name: SANE exception to GPL 2.0 or later -name: SANE exception to GPL 2.0 or later -category: Copyleft Limited -owner: SANE Project -homepage_url: https://alioth.debian.org/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-sane-exception-2.0-plus -text_urls: - - https://alioth.debian.org/frs/download.php/file/4224/sane-backends-1.0.27.tar.gz -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - 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., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA. - As a special exception, the authors of SANE give permission for - additional uses of the libraries contained in this release of SANE. - The exception is that, if you link a SANE library with other files - to produce an executable, this does not by itself cause the - resulting executable to be covered by the GNU General Public - License. Your use of that executable is in no way restricted on - account of linking the SANE library code into it. - This exception does not, however, invalidate any other reasons why - the executable file might be covered by the GNU General Public - License. - If you submit changes to SANE to the maintainers to be included in - a subsequent release, you agree by submitting the changes that - those changes may be distributed with this exception intact. - If you write modifications of your own for SANE, it is your choice - whether to permit this exception to apply to your modifications. - If you do not wish that, delete this exception notice. diff --git a/src/licensedcode/data/licenses/sash.LICENSE b/src/licensedcode/data/licenses/sash.LICENSE index cacb2e36871..4e94022d83d 100644 --- a/src/licensedcode/data/licenses/sash.LICENSE +++ b/src/licensedcode/data/licenses/sash.LICENSE @@ -1,2 +1,12 @@ +--- +key: sash +short_name: Sash Notice +name: Sash Notice +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-sash +minimum_coverage: 99 +--- + Permission is granted to use, distribute, or modify this source, -provided that this copyright notice remains intact. +provided that this copyright notice remains intact. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sash.yml b/src/licensedcode/data/licenses/sash.yml deleted file mode 100644 index 88c520811f6..00000000000 --- a/src/licensedcode/data/licenses/sash.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: sash -short_name: Sash Notice -name: Sash Notice -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-sash -minimum_coverage: 99 diff --git a/src/licensedcode/data/licenses/sata.LICENSE b/src/licensedcode/data/licenses/sata.LICENSE index 636377268c9..130f4fc6864 100644 --- a/src/licensedcode/data/licenses/sata.LICENSE +++ b/src/licensedcode/data/licenses/sata.LICENSE @@ -1,3 +1,26 @@ +--- +key: sata +short_name: SATA License +name: Star And Thank Author License +category: Permissive +owner: zTrix +homepage_url: https://github.com/zTrix/sata-license/blob/a72e947589ac80df3a0e586f2cb3c154bb9923f0/LICENSE.txt +spdx_license_key: LicenseRef-scancode-sata +other_urls: + - https://github.com/zTrix/sata-license + - https://github.com/kongtianyi/sata-license +ignorable_copyrights: + - Copyright (c) 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com) +ignorable_holders: + - zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com) +ignorable_urls: + - https://github.com/kongtianyi/sata-license + - https://github.com/zTrix/sata-license +ignorable_emails: + - i@ztrix.me + - kongtianyi@foxmail.com +--- + The Star And Thank Author License (SATA) Copyright © 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com) diff --git a/src/licensedcode/data/licenses/sata.yml b/src/licensedcode/data/licenses/sata.yml deleted file mode 100644 index 15b6fb31876..00000000000 --- a/src/licensedcode/data/licenses/sata.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: sata -short_name: SATA License -name: Star And Thank Author License -category: Permissive -owner: zTrix -homepage_url: https://github.com/zTrix/sata-license/blob/a72e947589ac80df3a0e586f2cb3c154bb9923f0/LICENSE.txt -spdx_license_key: LicenseRef-scancode-sata -other_urls: - - https://github.com/zTrix/sata-license - - https://github.com/kongtianyi/sata-license -ignorable_copyrights: - - Copyright (c) 2014 zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com) -ignorable_holders: - - zTrix(i@ztrix.me) kongtianyi(kongtianyi@foxmail.com) -ignorable_urls: - - https://github.com/kongtianyi/sata-license - - https://github.com/zTrix/sata-license -ignorable_emails: - - i@ztrix.me - - kongtianyi@foxmail.com diff --git a/src/licensedcode/data/licenses/sax-pd.LICENSE b/src/licensedcode/data/licenses/sax-pd.LICENSE index b8bb2f6577e..4169720ab9d 100644 --- a/src/licensedcode/data/licenses/sax-pd.LICENSE +++ b/src/licensedcode/data/licenses/sax-pd.LICENSE @@ -1,3 +1,15 @@ +--- +key: sax-pd +short_name: SAX-PD +name: SAX Public Domain Notice +category: Public Domain +owner: SAX Project +homepage_url: http://www.saxproject.org/copying.html +spdx_license_key: SAX-PD +text_urls: + - http://www.saxproject.org/copying.html +--- + Copyright Status for SAX SAX is free! diff --git a/src/licensedcode/data/licenses/sax-pd.yml b/src/licensedcode/data/licenses/sax-pd.yml deleted file mode 100644 index 044c00606c5..00000000000 --- a/src/licensedcode/data/licenses/sax-pd.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sax-pd -short_name: SAX-PD -name: SAX Public Domain Notice -category: Public Domain -owner: SAX Project -homepage_url: http://www.saxproject.org/copying.html -spdx_license_key: SAX-PD -text_urls: - - http://www.saxproject.org/copying.html diff --git a/src/licensedcode/data/licenses/saxpath.LICENSE b/src/licensedcode/data/licenses/saxpath.LICENSE index 2c849485f6b..b37abab56ea 100644 --- a/src/licensedcode/data/licenses/saxpath.LICENSE +++ b/src/licensedcode/data/licenses/saxpath.LICENSE @@ -1,3 +1,24 @@ +--- +key: saxpath +short_name: Saxpath License +name: Saxpath License +category: Permissive +owner: Codehaus +homepage_url: https://fedoraproject.org/wiki/Licensing/Saxpath_License +notes: | + Per Fedora, this is a slightly modified version of Apache 1.1. The + documentation requirement in Apache 1.1 has been weakened to a suggestion, + but clause 4 still makes this license Free but GPL-incompatible. +spdx_license_key: Saxpath +ignorable_authors: + - the SAXPath Project (http://www.saxpath.org/) +ignorable_urls: + - http://www.saxpath.org/ +ignorable_emails: + - license@saxpath.org + - pm@saxpath.org +--- + Redistribution and use in source and binary forms, with or without modification, re permitted provided that the following conditions are met: @@ -34,4 +55,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/saxpath.yml b/src/licensedcode/data/licenses/saxpath.yml deleted file mode 100644 index a60c0956bad..00000000000 --- a/src/licensedcode/data/licenses/saxpath.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: saxpath -short_name: Saxpath License -name: Saxpath License -category: Permissive -owner: Codehaus -homepage_url: https://fedoraproject.org/wiki/Licensing/Saxpath_License -notes: | - Per Fedora, this is a slightly modified version of Apache 1.1. The - documentation requirement in Apache 1.1 has been weakened to a suggestion, - but clause 4 still makes this license Free but GPL-incompatible. -spdx_license_key: Saxpath -ignorable_authors: - - the SAXPath Project (http://www.saxpath.org/) -ignorable_urls: - - http://www.saxpath.org/ -ignorable_emails: - - license@saxpath.org - - pm@saxpath.org diff --git a/src/licensedcode/data/licenses/sbia-b.LICENSE b/src/licensedcode/data/licenses/sbia-b.LICENSE index f163479ece3..19ce551551f 100644 --- a/src/licensedcode/data/licenses/sbia-b.LICENSE +++ b/src/licensedcode/data/licenses/sbia-b.LICENSE @@ -1,3 +1,14 @@ +--- +key: sbia-b +short_name: SBIA Part B +name: SBIA Software license - Downloading Agreement +category: Permissive +owner: SBIA +homepage_url: https://www.cbica.upenn.edu/sbia/software/license.html +spdx_license_key: LicenseRef-scancode-sbia-b +minimum_coverage: 60 +--- + PART B. DOWNLOADING AGREEMENT - LICENSE FROM SBIA WITH RIGHT TO SUBLICENSE ("SOFTWARE LICENSE"). ------------------------------------------------------------------------------------------------ @@ -92,4 +103,4 @@ PART C. MISCELLANEOUS This Agreement shall be governed by and construed in accordance with the laws of The Commonwealth of Pennsylvania without regard to principles of conflicts of law. This Agreement shall supercede and replace any license terms that you -may have agreed to previously with respect to Software from SBIA. +may have agreed to previously with respect to Software from SBIA. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sbia-b.yml b/src/licensedcode/data/licenses/sbia-b.yml deleted file mode 100644 index f02f6670cc9..00000000000 --- a/src/licensedcode/data/licenses/sbia-b.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sbia-b -short_name: SBIA Part B -name: SBIA Software license - Downloading Agreement -category: Permissive -owner: SBIA -homepage_url: https://www.cbica.upenn.edu/sbia/software/license.html -spdx_license_key: LicenseRef-scancode-sbia-b -minimum_coverage: 60 diff --git a/src/licensedcode/data/licenses/scancode-acknowledgment.LICENSE b/src/licensedcode/data/licenses/scancode-acknowledgment.LICENSE index fe8f27c6354..ad335d1b165 100644 --- a/src/licensedcode/data/licenses/scancode-acknowledgment.LICENSE +++ b/src/licensedcode/data/licenses/scancode-acknowledgment.LICENSE @@ -1,6 +1,19 @@ +--- +key: scancode-acknowledgment +short_name: ScanCode acknowledgment +name: ScanCode generated data acknowledgment +category: Permissive +owner: nexB +homepage_url: https://github.com/nexB/scancode-toolkit/ +spdx_license_key: LicenseRef-scancode-scancode-acknowledgment +minimum_coverage: 95 +ignorable_urls: + - https://github.com/nexB/scancode-toolkit/ +--- + Generated with ScanCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. No content created from ScanCode should be considered or used as legal advice. Consult an Attorney for any legal advice. ScanCode is a free software code scanning tool from nexB Inc. and others. -Visit https://github.com/nexB/scancode-toolkit/ for support and download. +Visit https://github.com/nexB/scancode-toolkit/ for support and download. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/scancode-acknowledgment.yml b/src/licensedcode/data/licenses/scancode-acknowledgment.yml deleted file mode 100644 index 106599416c4..00000000000 --- a/src/licensedcode/data/licenses/scancode-acknowledgment.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: scancode-acknowledgment -short_name: ScanCode acknowledgment -name: ScanCode generated data acknowledgment -category: Permissive -owner: nexB -homepage_url: https://github.com/nexB/scancode-toolkit/ -spdx_license_key: LicenseRef-scancode-scancode-acknowledgment -minimum_coverage: 95 -ignorable_urls: - - https://github.com/nexB/scancode-toolkit/ diff --git a/src/licensedcode/data/licenses/scanlogd-license.LICENSE b/src/licensedcode/data/licenses/scanlogd-license.LICENSE index c3b8fa977b0..e42c615a9c0 100644 --- a/src/licensedcode/data/licenses/scanlogd-license.LICENSE +++ b/src/licensedcode/data/licenses/scanlogd-license.LICENSE @@ -1,3 +1,14 @@ +--- +key: scanlogd-license +short_name: scanlogd License +name: scanlogd License +category: Permissive +owner: Openwall +spdx_license_key: LicenseRef-scancode-scanlogd-license +other_urls: + - http://www.openwall.com/scanlogd/ +--- + You're allowed to do whatever you like with this software (including re-distribution in any form, with or without modification), provided that credit is given where it is due and any modified versions are diff --git a/src/licensedcode/data/licenses/scanlogd-license.yml b/src/licensedcode/data/licenses/scanlogd-license.yml deleted file mode 100644 index 2c7b947cb90..00000000000 --- a/src/licensedcode/data/licenses/scanlogd-license.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: scanlogd-license -short_name: scanlogd License -name: scanlogd License -category: Permissive -owner: Openwall -spdx_license_key: LicenseRef-scancode-scanlogd-license -other_urls: - - http://www.openwall.com/scanlogd/ diff --git a/src/licensedcode/data/licenses/scansoft-1.2.LICENSE b/src/licensedcode/data/licenses/scansoft-1.2.LICENSE index 451016a75c0..e1801bb746d 100644 --- a/src/licensedcode/data/licenses/scansoft-1.2.LICENSE +++ b/src/licensedcode/data/licenses/scansoft-1.2.LICENSE @@ -1,3 +1,22 @@ +--- +key: scansoft-1.2 +short_name: ScanSoft Public License 1.2 +name: ScanSoft Public License v1.2 +category: Permissive +owner: Nuance Communications +homepage_url: http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt +spdx_license_key: LicenseRef-scancode-scansoft-1.2 +text_urls: + - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt +other_urls: + - http://en.wikipedia.org/wiki/Nuance_Communications + - http://www.nuance.com/ +ignorable_copyrights: + - Copyright (c) 2000-2003, ScanSoft, Inc. +ignorable_holders: + - ScanSoft, Inc. +--- + The ScanSoft Public License - Software, Version 1.2 Copyright (c) 2000-2003, ScanSoft, Inc. diff --git a/src/licensedcode/data/licenses/scansoft-1.2.yml b/src/licensedcode/data/licenses/scansoft-1.2.yml deleted file mode 100644 index 27f1da0b56e..00000000000 --- a/src/licensedcode/data/licenses/scansoft-1.2.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: scansoft-1.2 -short_name: ScanSoft Public License 1.2 -name: ScanSoft Public License v1.2 -category: Permissive -owner: Nuance Communications -homepage_url: http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt -spdx_license_key: LicenseRef-scancode-scansoft-1.2 -text_urls: - - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt -other_urls: - - http://en.wikipedia.org/wiki/Nuance_Communications - - http://www.nuance.com/ -ignorable_copyrights: - - Copyright (c) 2000-2003, ScanSoft, Inc. -ignorable_holders: - - ScanSoft, Inc. diff --git a/src/licensedcode/data/licenses/scea-1.0.LICENSE b/src/licensedcode/data/licenses/scea-1.0.LICENSE index 04da0698161..c9a1b38b694 100644 --- a/src/licensedcode/data/licenses/scea-1.0.LICENSE +++ b/src/licensedcode/data/licenses/scea-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: scea-1.0 +short_name: SCEA Shared Source License 1.0 +name: SCEA Shared Source License 1.0 +category: Permissive +owner: Sony Computer Entertainment +homepage_url: http://research.scea.com/scea_shared_source_license.html +spdx_license_key: SCEA +ignorable_copyrights: + - Copyright 2005 Sony Computer Entertainment Inc. +ignorable_holders: + - Sony Computer Entertainment Inc. +ignorable_urls: + - http://research.scea.com/scea_shared_source_license.html +--- + SCEA Shared Source License 1.0 Terms and Conditions: diff --git a/src/licensedcode/data/licenses/scea-1.0.yml b/src/licensedcode/data/licenses/scea-1.0.yml deleted file mode 100644 index c09541bd741..00000000000 --- a/src/licensedcode/data/licenses/scea-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: scea-1.0 -short_name: SCEA Shared Source License 1.0 -name: SCEA Shared Source License 1.0 -category: Permissive -owner: Sony Computer Entertainment -homepage_url: http://research.scea.com/scea_shared_source_license.html -spdx_license_key: SCEA -ignorable_copyrights: - - Copyright 2005 Sony Computer Entertainment Inc. -ignorable_holders: - - Sony Computer Entertainment Inc. -ignorable_urls: - - http://research.scea.com/scea_shared_source_license.html diff --git a/src/licensedcode/data/licenses/schemereport.LICENSE b/src/licensedcode/data/licenses/schemereport.LICENSE index 645112e9e16..b4edfba35bc 100644 --- a/src/licensedcode/data/licenses/schemereport.LICENSE +++ b/src/licensedcode/data/licenses/schemereport.LICENSE @@ -1,5 +1,14 @@ +--- +key: schemereport +short_name: Scheme Language Report License +name: Scheme Language Report License +category: Permissive +owner: ChezScheme +spdx_license_key: SchemeReport +--- + ; We intend this report to belong to the entire Scheme community, and so ; we grant permission to copy it in whole or in part without fee. In ; particular, we encourage implementors of Scheme to use this report as ; a starting point for manuals and other documentation, modifying it as -; necessary. +; necessary. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/schemereport.yml b/src/licensedcode/data/licenses/schemereport.yml deleted file mode 100644 index 19f5f034373..00000000000 --- a/src/licensedcode/data/licenses/schemereport.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: schemereport -short_name: Scheme Language Report License -name: Scheme Language Report License -category: Permissive -owner: ChezScheme -spdx_license_key: SchemeReport diff --git a/src/licensedcode/data/licenses/scilab-en-2005.LICENSE b/src/licensedcode/data/licenses/scilab-en-2005.LICENSE index 40b42d380ce..e751e71f560 100644 --- a/src/licensedcode/data/licenses/scilab-en-2005.LICENSE +++ b/src/licensedcode/data/licenses/scilab-en-2005.LICENSE @@ -1,3 +1,23 @@ +--- +key: scilab-en-2005 +short_name: SCILAB en 2005 +name: SCILAB License 2005 +category: Proprietary Free +owner: Scilab Consortium (Digiteo) +homepage_url: http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html +spdx_license_key: LicenseRef-scancode-scilab-en +other_spdx_license_keys: + - LicenseRef-scancode-scilba-en +text_urls: + - https://directory.fsf.org/wiki/License:Scilab-old +ignorable_copyrights: + - Scilab (c) INRIA-ENPC. +ignorable_holders: + - Scilab INRIA-ENPC. +ignorable_authors: + - INRIA +--- + Important notice : this is a translation of the original license written in French @@ -135,4 +155,4 @@ You are not responsible for respect of the license by a third party. 9- Applicable law The present license and its effects are subject to French law and the -competent French courts. +competent French courts. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/scilab-en-2005.yml b/src/licensedcode/data/licenses/scilab-en-2005.yml deleted file mode 100644 index e6a06f6e24e..00000000000 --- a/src/licensedcode/data/licenses/scilab-en-2005.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: scilab-en-2005 -short_name: SCILAB en 2005 -name: SCILAB License 2005 -category: Proprietary Free -owner: Scilab Consortium (Digiteo) -homepage_url: http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html -spdx_license_key: LicenseRef-scancode-scilab-en -other_spdx_license_keys: - - LicenseRef-scancode-scilba-en -text_urls: - - https://directory.fsf.org/wiki/License:Scilab-old -ignorable_copyrights: - - Scilab (c) INRIA-ENPC. -ignorable_holders: - - Scilab INRIA-ENPC. -ignorable_authors: - - INRIA diff --git a/src/licensedcode/data/licenses/scilab-fr.LICENSE b/src/licensedcode/data/licenses/scilab-fr.LICENSE index a9efd7a2f24..6a325381e94 100644 --- a/src/licensedcode/data/licenses/scilab-fr.LICENSE +++ b/src/licensedcode/data/licenses/scilab-fr.LICENSE @@ -1,3 +1,26 @@ +--- +key: scilab-fr +language: fr +short_name: SCILAB FR +name: Licence SCILAB +category: Proprietary Free +owner: Scilab Consortium (Digiteo) +homepage_url: http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html +spdx_license_key: LicenseRef-scancode-scilab-fr +text_urls: + - https://directory.fsf.org/wiki/License:Scilab-old +ignorable_copyrights: + - (c) INRIA-ENPC + - Scilab (c) INRIA-ENPC + - Scilab (c) INRIA-ENPC. + - Scilab inside (c) INRIA-ENPC +ignorable_holders: + - INRIA-ENPC + - Scilab INRIA-ENPC + - Scilab INRIA-ENPC. + - Scilab inside INRIA-ENPC +--- + Licence SCILAB 1- Préambule @@ -141,4 +164,4 @@ Vous n'êtes pas responsable du respect de la licence par un tiers. 9- Loi applicable La présente licence et ses effets sont soumis au droit français et aux -tribunaux français compétents. +tribunaux français compétents. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/scilab-fr.yml b/src/licensedcode/data/licenses/scilab-fr.yml deleted file mode 100644 index 94c944b05c3..00000000000 --- a/src/licensedcode/data/licenses/scilab-fr.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: scilab-fr -language: fr -short_name: SCILAB FR -name: Licence SCILAB -category: Proprietary Free -owner: Scilab Consortium (Digiteo) -homepage_url: http://web.archive.org/web/20051212214843/http://www.scilab.org/legal/license.html -spdx_license_key: LicenseRef-scancode-scilab-fr -text_urls: - - https://directory.fsf.org/wiki/License:Scilab-old -ignorable_copyrights: - - (c) INRIA-ENPC - - Scilab (c) INRIA-ENPC - - Scilab (c) INRIA-ENPC. - - Scilab inside (c) INRIA-ENPC -ignorable_holders: - - INRIA-ENPC - - Scilab INRIA-ENPC - - Scilab INRIA-ENPC. - - Scilab inside INRIA-ENPC diff --git a/src/licensedcode/data/licenses/scintilla.LICENSE b/src/licensedcode/data/licenses/scintilla.LICENSE index 94e769f74bb..c3ced3e96ea 100644 --- a/src/licensedcode/data/licenses/scintilla.LICENSE +++ b/src/licensedcode/data/licenses/scintilla.LICENSE @@ -1,3 +1,13 @@ +--- +key: scintilla +short_name: Scintilla License +name: Scintilla License +category: Permissive +owner: Scintilla Project +homepage_url: https://www.scintilla.org/License.txt +spdx_license_key: LicenseRef-scancode-scintilla +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/licenses/scintilla.yml b/src/licensedcode/data/licenses/scintilla.yml deleted file mode 100644 index 9a21007f1b3..00000000000 --- a/src/licensedcode/data/licenses/scintilla.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: scintilla -short_name: Scintilla License -name: Scintilla License -category: Permissive -owner: Scintilla Project -homepage_url: https://www.scintilla.org/License.txt -spdx_license_key: LicenseRef-scancode-scintilla diff --git a/src/licensedcode/data/licenses/scola-en.LICENSE b/src/licensedcode/data/licenses/scola-en.LICENSE index 57278cd0fcd..2ff9661b107 100644 --- a/src/licensedcode/data/licenses/scola-en.LICENSE +++ b/src/licensedcode/data/licenses/scola-en.LICENSE @@ -1,3 +1,15 @@ +--- +key: scola-en +short_name: Statistics Canada Open Licence Agreement +name: Statistics Canada Open Licence Agreement +category: Proprietary Free +owner: Minister for Statistics Canada +homepage_url: https://www.statcan.gc.ca/eng/reference/licence +spdx_license_key: LicenseRef-scancode-scola-en +ignorable_emails: + - information@fip-pcim.gc.ca +--- + Statistics Canada Open Licence Agreement @@ -74,4 +86,4 @@ Survival All obligations which expressly or by their nature survive termination of this agreement shall continue in full force and effect. For greater clarity, and without limiting the generality of the foregoing, the following provisions survive expiration or termination of this agreement: Acknowledgment of Source, and No warranty and no Liability. Applicable Law -This agreement shall be governed and construed in accordance with the laws of the province of Ontario and the laws of Canada applicable therein. The parties hereby attorn to the exclusive jurisdiction of the Federal Court of Canada. +This agreement shall be governed and construed in accordance with the laws of the province of Ontario and the laws of Canada applicable therein. The parties hereby attorn to the exclusive jurisdiction of the Federal Court of Canada. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/scola-en.yml b/src/licensedcode/data/licenses/scola-en.yml deleted file mode 100644 index 68d962e608e..00000000000 --- a/src/licensedcode/data/licenses/scola-en.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: scola-en -short_name: Statistics Canada Open Licence Agreement -name: Statistics Canada Open Licence Agreement -category: Proprietary Free -owner: Minister for Statistics Canada -homepage_url: https://www.statcan.gc.ca/eng/reference/licence -spdx_license_key: LicenseRef-scancode-scola-en -ignorable_emails: - - information@fip-pcim.gc.ca diff --git a/src/licensedcode/data/licenses/scola-fr.LICENSE b/src/licensedcode/data/licenses/scola-fr.LICENSE index 062f0e60b3d..4b89652c5eb 100644 --- a/src/licensedcode/data/licenses/scola-fr.LICENSE +++ b/src/licensedcode/data/licenses/scola-fr.LICENSE @@ -1,3 +1,16 @@ +--- +key: scola-fr +language: fr +short_name: Statistics Canada Open Licence +name: Entente de licence ouverte de Statistique Canada +category: Proprietary Free +owner: Minister for Statistics Canada +homepage_url: https://www.statcan.gc.ca/fra/reference/licence +spdx_license_key: LicenseRef-scancode-scola-fr +ignorable_emails: + - information@fip-pcim.gc.ca +--- + Entente de licence ouverte de Statistique Canada @@ -74,4 +87,4 @@ Survie Les obligations qui survivent à la résiliation de la présente entente, expressément ou en raison de leur nature, demeureront en vigueur. Pour plus de clarté, et sans limiter la généralité de ce qui précède, les dispositions qui suivent survivent à l'expiration ou à la résiliation de la présente entente : « Mention de la source » et « Aucune garantie ni responsabilité ». Lois applicables -La présente entente est régie et interprétée conformément aux lois de la province de l'Ontario et aux lois du Canada qui sont applicables. Par la présente, les parties reconnaissent la compétence exclusive de la Cour fédérale du Canada. +La présente entente est régie et interprétée conformément aux lois de la province de l'Ontario et aux lois du Canada qui sont applicables. Par la présente, les parties reconnaissent la compétence exclusive de la Cour fédérale du Canada. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/scola-fr.yml b/src/licensedcode/data/licenses/scola-fr.yml deleted file mode 100644 index d7e540127fc..00000000000 --- a/src/licensedcode/data/licenses/scola-fr.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: scola-fr -language: fr -short_name: Statistics Canada Open Licence -name: Entente de licence ouverte de Statistique Canada -category: Proprietary Free -owner: Minister for Statistics Canada -homepage_url: https://www.statcan.gc.ca/fra/reference/licence -spdx_license_key: LicenseRef-scancode-scola-fr -ignorable_emails: - - information@fip-pcim.gc.ca diff --git a/src/licensedcode/data/licenses/scribbles.LICENSE b/src/licensedcode/data/licenses/scribbles.LICENSE index fc15c260588..a5ccd914e15 100644 --- a/src/licensedcode/data/licenses/scribbles.LICENSE +++ b/src/licensedcode/data/licenses/scribbles.LICENSE @@ -1,5 +1,14 @@ +--- +key: scribbles +short_name: Scribbles Demos Recognizer Notice +name: Scribbles Demos Recognizer Notice +category: Permissive +owner: HP - Hewlett Packard +spdx_license_key: LicenseRef-scancode-scribbles +--- + Copying or modifying this code for any purpose is permitted, provided that this copyright notice is preserved in its entirety in all copies or modifications COMPAQ COMPUTER CORPORATION MAKES NO WARRANTIES, EXPRESSED OR IIMPLIED, AS TO -THE USEFULNESS OR CORRECTNESS OF THIS CODE. +THE USEFULNESS OR CORRECTNESS OF THIS CODE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/scribbles.yml b/src/licensedcode/data/licenses/scribbles.yml deleted file mode 100644 index cec39bdc637..00000000000 --- a/src/licensedcode/data/licenses/scribbles.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: scribbles -short_name: Scribbles Demos Recognizer Notice -name: Scribbles Demos Recognizer Notice -category: Permissive -owner: HP - Hewlett Packard -spdx_license_key: LicenseRef-scancode-scribbles diff --git a/src/licensedcode/data/licenses/script-asylum.LICENSE b/src/licensedcode/data/licenses/script-asylum.LICENSE index 6c087245f95..f656999bfef 100644 --- a/src/licensedcode/data/licenses/script-asylum.LICENSE +++ b/src/licensedcode/data/licenses/script-asylum.LICENSE @@ -1,3 +1,13 @@ +--- +key: script-asylum +short_name: Script Asylum License +name: Script Asylum License +category: Permissive +owner: Script Asylum +homepage_url: http://web.archive.org/web/20030720033728/http://www.scriptasylum.com/faqpage.html#p7 +spdx_license_key: LicenseRef-scancode-script-asylum +--- + Use of these materials are limited to personal and commercial use as long as long as credits are left intact. Modification of the original material is permitted as long as credits for the original developer(s) are left intact and diff --git a/src/licensedcode/data/licenses/script-asylum.yml b/src/licensedcode/data/licenses/script-asylum.yml deleted file mode 100644 index f8f3cea8b3d..00000000000 --- a/src/licensedcode/data/licenses/script-asylum.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: script-asylum -short_name: Script Asylum License -name: Script Asylum License -category: Permissive -owner: Script Asylum -homepage_url: http://web.archive.org/web/20030720033728/http://www.scriptasylum.com/faqpage.html#p7 -spdx_license_key: LicenseRef-scancode-script-asylum diff --git a/src/licensedcode/data/licenses/script-nikhilk.LICENSE b/src/licensedcode/data/licenses/script-nikhilk.LICENSE index e8278c16215..f93d2cde0b4 100644 --- a/src/licensedcode/data/licenses/script-nikhilk.LICENSE +++ b/src/licensedcode/data/licenses/script-nikhilk.LICENSE @@ -1,3 +1,18 @@ +--- +key: script-nikhilk +short_name: Script# License +name: Script# License +category: Proprietary Free +owner: ScriptSharp +homepage_url: http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf +spdx_license_key: LicenseRef-scancode-script-nikhilk +text_urls: + - http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf +other_urls: + - http://www.amazon.com/exec/obidos/ASIN/0735615829/nikhilkothari-20 + - http://www.nikhilk.net/About.aspx +--- + End User License Agreement for Script# IT IS IMPORTANT THAT YOU CAREFULLY READ THIS NOTICE BEFORE INSTALLING THIS PRODUCT. BY INSTALLING, OR OTHERWISE USING THIS SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE AGREEMENT (THE "AGREEMENT") WHICH CONSTITUTES A LEGALLY BINDING CONTRACT BETWEEN THE LICENSOR (PROJECTS.NIKHILK.NET, HEREAFTER "WE", OR "US") AND THE LICENSEE (EITHER AN INDIVIDUAL OR ENTITY, HEREAFTER "YOU"). THIS AGREEMENT diff --git a/src/licensedcode/data/licenses/script-nikhilk.yml b/src/licensedcode/data/licenses/script-nikhilk.yml deleted file mode 100644 index df4086a4051..00000000000 --- a/src/licensedcode/data/licenses/script-nikhilk.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: script-nikhilk -short_name: Script# License -name: Script# License -category: Proprietary Free -owner: ScriptSharp -homepage_url: http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf -spdx_license_key: LicenseRef-scancode-script-nikhilk -text_urls: - - http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf -other_urls: - - http://www.amazon.com/exec/obidos/ASIN/0735615829/nikhilkothari-20 - - http://www.nikhilk.net/About.aspx diff --git a/src/licensedcode/data/licenses/scrub.LICENSE b/src/licensedcode/data/licenses/scrub.LICENSE index 687274a9d7a..568e9f0499f 100644 --- a/src/licensedcode/data/licenses/scrub.LICENSE +++ b/src/licensedcode/data/licenses/scrub.LICENSE @@ -1,3 +1,17 @@ +--- +key: scrub +short_name: SCRUB License +name: SCRUB License +category: Proprietary Free +owner: Duxbury Systems, Inc. +homepage_url: http://www.duxburysystems.com/ +spdx_license_key: LicenseRef-scancode-scrub +ignorable_copyrights: + - Copyright 1988-1993 Duxbury Systems, Inc. +ignorable_holders: + - Duxbury Systems, Inc. +--- + SCRUB - Simple Character String Replacer Documentation First Release: December 1988 diff --git a/src/licensedcode/data/licenses/scrub.yml b/src/licensedcode/data/licenses/scrub.yml deleted file mode 100644 index 711726821a8..00000000000 --- a/src/licensedcode/data/licenses/scrub.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: scrub -short_name: SCRUB License -name: SCRUB License -category: Proprietary Free -owner: Duxbury Systems, Inc. -homepage_url: http://www.duxburysystems.com/ -spdx_license_key: LicenseRef-scancode-scrub -ignorable_copyrights: - - Copyright 1988-1993 Duxbury Systems, Inc. -ignorable_holders: - - Duxbury Systems, Inc. diff --git a/src/licensedcode/data/licenses/scsl-3.0.LICENSE b/src/licensedcode/data/licenses/scsl-3.0.LICENSE index 2b6230aba2a..487780781d1 100644 --- a/src/licensedcode/data/licenses/scsl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/scsl-3.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: scsl-3.0 +short_name: Sun Community Source License 3.0 +name: Sun Community Source License 3.0 +category: Copyleft Limited +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-scsl-3.0 +other_urls: + - http://www.sun.com/software/jini/licensing/SCSL3_JiniTSA1.html +ignorable_urls: + - http://sun.com/software/communitysource +--- + Sun Community Source License v3.0 II. PURPOSES diff --git a/src/licensedcode/data/licenses/scsl-3.0.yml b/src/licensedcode/data/licenses/scsl-3.0.yml deleted file mode 100644 index 0565882a26e..00000000000 --- a/src/licensedcode/data/licenses/scsl-3.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: scsl-3.0 -short_name: Sun Community Source License 3.0 -name: Sun Community Source License 3.0 -category: Copyleft Limited -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-scsl-3.0 -other_urls: - - http://www.sun.com/software/jini/licensing/SCSL3_JiniTSA1.html -ignorable_urls: - - http://sun.com/software/communitysource diff --git a/src/licensedcode/data/licenses/secret-labs-2011.LICENSE b/src/licensedcode/data/licenses/secret-labs-2011.LICENSE index d5b02ee406b..0c78628594e 100644 --- a/src/licensedcode/data/licenses/secret-labs-2011.LICENSE +++ b/src/licensedcode/data/licenses/secret-labs-2011.LICENSE @@ -1,5 +1,15 @@ +--- +key: secret-labs-2011 +short_name: Secret Labs License 2011 +name: Secret Labs License 2011 +category: Permissive +owner: Secret Labs AB +homepage_url: http://www.pythonware.com/products/pil/license.htm +spdx_license_key: LicenseRef-scancode-secret-labs-2011 +--- + By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Secret Labs AB or the author not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. -SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR ANY SPECIAL, 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. +SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR ANY SPECIAL, 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/licenses/secret-labs-2011.yml b/src/licensedcode/data/licenses/secret-labs-2011.yml deleted file mode 100644 index 4f628dfdf79..00000000000 --- a/src/licensedcode/data/licenses/secret-labs-2011.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: secret-labs-2011 -short_name: Secret Labs License 2011 -name: Secret Labs License 2011 -category: Permissive -owner: Secret Labs AB -homepage_url: http://www.pythonware.com/products/pil/license.htm -spdx_license_key: LicenseRef-scancode-secret-labs-2011 diff --git a/src/licensedcode/data/licenses/see-license.LICENSE b/src/licensedcode/data/licenses/see-license.LICENSE new file mode 100644 index 00000000000..5f1ae81bfb7 --- /dev/null +++ b/src/licensedcode/data/licenses/see-license.LICENSE @@ -0,0 +1,10 @@ +--- +key: see-license +short_name: See License mention +name: See License mention +category: Unstated License +owner: Unspecified +is_deprecated: yes +is_unknown: yes +notes: replaced by unknown-license-reference +--- diff --git a/src/licensedcode/data/licenses/see-license.yml b/src/licensedcode/data/licenses/see-license.yml deleted file mode 100644 index 069252efcd2..00000000000 --- a/src/licensedcode/data/licenses/see-license.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: see-license -short_name: See License mention -name: See License mention -category: Unstated License -owner: Unspecified -is_deprecated: yes -is_unknown: yes -notes: replaced by unknown-license-reference \ No newline at end of file diff --git a/src/licensedcode/data/licenses/selinux-nsa-declaration-1.0.LICENSE b/src/licensedcode/data/licenses/selinux-nsa-declaration-1.0.LICENSE index 00a825fc791..7d8c3d1cf0c 100644 --- a/src/licensedcode/data/licenses/selinux-nsa-declaration-1.0.LICENSE +++ b/src/licensedcode/data/licenses/selinux-nsa-declaration-1.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: selinux-nsa-declaration-1.0 +short_name: selinux-nsa-declaration-1.0 +name: selinux-nsa-declaration-1.0 +category: Public Domain +owner: NSA +homepage_url: https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE +spdx_license_key: libselinux-1.0 +--- + This library (libselinux) is public domain software, i.e. not copyrighted. Warranty Exclusion diff --git a/src/licensedcode/data/licenses/selinux-nsa-declaration-1.0.yml b/src/licensedcode/data/licenses/selinux-nsa-declaration-1.0.yml deleted file mode 100644 index 6000fb56371..00000000000 --- a/src/licensedcode/data/licenses/selinux-nsa-declaration-1.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: selinux-nsa-declaration-1.0 -short_name: selinux-nsa-declaration-1.0 -name: selinux-nsa-declaration-1.0 -category: Public Domain -owner: NSA -homepage_url: https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE -spdx_license_key: libselinux-1.0 diff --git a/src/licensedcode/data/licenses/sencha-app-floss-exception.LICENSE b/src/licensedcode/data/licenses/sencha-app-floss-exception.LICENSE index b94df494031..12a7ecd5a98 100644 --- a/src/licensedcode/data/licenses/sencha-app-floss-exception.LICENSE +++ b/src/licensedcode/data/licenses/sencha-app-floss-exception.LICENSE @@ -1,3 +1,18 @@ +--- +key: sencha-app-floss-exception +short_name: Sencha GPL 3.0 Exception for Applications +name: Sencha Open Source License Exception for Applications +category: Copyleft +owner: Sencha +homepage_url: http://www.sencha.com/products/floss-exception.php +notes: Sencha stopped offering this exception in 2015. +is_exception: yes +spdx_license_key: LicenseRef-scancode-sencha-app-floss-exception +other_urls: + - http://web.archive.org/web/20140816133327/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/ + - http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/ +--- + Exception for Applications Version 1.04, January 18, 2013 @@ -61,4 +76,4 @@ W3C License "2001" X11 License "2001" Zimbra Public License 1.3 Zlib/libpng License - -Zope Public License 2.0 +Zope Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sencha-app-floss-exception.yml b/src/licensedcode/data/licenses/sencha-app-floss-exception.yml deleted file mode 100644 index 90d97f66999..00000000000 --- a/src/licensedcode/data/licenses/sencha-app-floss-exception.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sencha-app-floss-exception -short_name: Sencha GPL 3.0 Exception for Applications -name: Sencha Open Source License Exception for Applications -category: Copyleft -owner: Sencha -homepage_url: http://www.sencha.com/products/floss-exception.php -notes: Sencha stopped offering this exception in 2015. -is_exception: yes -spdx_license_key: LicenseRef-scancode-sencha-app-floss-exception -other_urls: - - http://web.archive.org/web/20140816133327/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/ - - http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-applications/ diff --git a/src/licensedcode/data/licenses/sencha-commercial-3.17.LICENSE b/src/licensedcode/data/licenses/sencha-commercial-3.17.LICENSE index 4a9f58427e9..ceb2c233e32 100644 --- a/src/licensedcode/data/licenses/sencha-commercial-3.17.LICENSE +++ b/src/licensedcode/data/licenses/sencha-commercial-3.17.LICENSE @@ -1,3 +1,16 @@ +--- +key: sencha-commercial-3.17 +short_name: Sencha Software License Agreement v3.17 +name: Sencha Software License Agreement v3.17 +category: Commercial +owner: Sencha +homepage_url: https://www.sencha.com/legal/sencha-software-license-agreement/ +spdx_license_key: LicenseRef-scancode-sencha-commercial-3.17 +faq_url: https://www.sencha.com/support/faqs/ +other_urls: + - https://www.sencha.com/legal/ +--- + Sencha Software License Agreement Version 3.17 diff --git a/src/licensedcode/data/licenses/sencha-commercial-3.17.yml b/src/licensedcode/data/licenses/sencha-commercial-3.17.yml deleted file mode 100644 index 647b5b753aa..00000000000 --- a/src/licensedcode/data/licenses/sencha-commercial-3.17.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: sencha-commercial-3.17 -short_name: Sencha Software License Agreement v3.17 -name: Sencha Software License Agreement v3.17 -category: Commercial -owner: Sencha -homepage_url: https://www.sencha.com/legal/sencha-software-license-agreement/ -spdx_license_key: LicenseRef-scancode-sencha-commercial-3.17 -faq_url: https://www.sencha.com/support/faqs/ -other_urls: - - https://www.sencha.com/legal/ diff --git a/src/licensedcode/data/licenses/sencha-commercial-3.9.LICENSE b/src/licensedcode/data/licenses/sencha-commercial-3.9.LICENSE index 9851cbf1791..7f087ebc772 100644 --- a/src/licensedcode/data/licenses/sencha-commercial-3.9.LICENSE +++ b/src/licensedcode/data/licenses/sencha-commercial-3.9.LICENSE @@ -1,3 +1,15 @@ +--- +key: sencha-commercial-3.9 +short_name: Sencha Software License Agreement 3.9 +name: Sencha Software License Agreement v3.9 +category: Commercial +owner: Sencha +homepage_url: https://www.sencha.com/legal/sencha-software-license-agreement/ +spdx_license_key: LicenseRef-scancode-sencha-commercial-3.9 +ignorable_emails: + - license@sencha.com +--- + Sencha Software License Agreement Summary of Important Use Restrictions diff --git a/src/licensedcode/data/licenses/sencha-commercial-3.9.yml b/src/licensedcode/data/licenses/sencha-commercial-3.9.yml deleted file mode 100644 index 28b917a47b9..00000000000 --- a/src/licensedcode/data/licenses/sencha-commercial-3.9.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sencha-commercial-3.9 -short_name: Sencha Software License Agreement 3.9 -name: Sencha Software License Agreement v3.9 -category: Commercial -owner: Sencha -homepage_url: https://www.sencha.com/legal/sencha-software-license-agreement/ -spdx_license_key: LicenseRef-scancode-sencha-commercial-3.9 -ignorable_emails: - - license@sencha.com diff --git a/src/licensedcode/data/licenses/sencha-commercial.LICENSE b/src/licensedcode/data/licenses/sencha-commercial.LICENSE index 5d2a80f94fb..20ae0d3e9fb 100644 --- a/src/licensedcode/data/licenses/sencha-commercial.LICENSE +++ b/src/licensedcode/data/licenses/sencha-commercial.LICENSE @@ -1,3 +1,15 @@ +--- +key: sencha-commercial +short_name: Sencha Commercial License 1.1 +name: Sencha Commercial License v1.1 +category: Commercial +owner: Sencha +homepage_url: http://www.sencha.com/legal/sencha-commercial-software-license-agreement/ +spdx_license_key: LicenseRef-scancode-sencha-commercial +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + Sencha Commercial License Sencha Commercial Software License Agreement: Ext JS, Sencha GXT, and/or Sencha Touch Charts Version 1.11 diff --git a/src/licensedcode/data/licenses/sencha-commercial.yml b/src/licensedcode/data/licenses/sencha-commercial.yml deleted file mode 100644 index 0b22458e004..00000000000 --- a/src/licensedcode/data/licenses/sencha-commercial.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sencha-commercial -short_name: Sencha Commercial License 1.1 -name: Sencha Commercial License v1.1 -category: Commercial -owner: Sencha -homepage_url: http://www.sencha.com/legal/sencha-commercial-software-license-agreement/ -spdx_license_key: LicenseRef-scancode-sencha-commercial -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/licenses/sencha-dev-floss-exception.LICENSE b/src/licensedcode/data/licenses/sencha-dev-floss-exception.LICENSE index 677821c1861..bddd27ce824 100644 --- a/src/licensedcode/data/licenses/sencha-dev-floss-exception.LICENSE +++ b/src/licensedcode/data/licenses/sencha-dev-floss-exception.LICENSE @@ -1,3 +1,20 @@ +--- +key: sencha-dev-floss-exception +short_name: Sencha GPL 3.0 Exception for Development +name: Sencha Open Source License Exception for Development +category: Copyleft +owner: Sencha +homepage_url: http://www.sencha.com/products/ux-exception.php +notes: Sencha stopped offering this exception in 2015. +is_exception: yes +spdx_license_key: LicenseRef-scancode-sencha-dev-floss-exception +other_urls: + - http://web.archive.org/web/20140816133230/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/ + - http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/ +ignorable_urls: + - http://www.sencha.com/license +--- + Exception for Development Version 1.04, January 18, 2013 diff --git a/src/licensedcode/data/licenses/sencha-dev-floss-exception.yml b/src/licensedcode/data/licenses/sencha-dev-floss-exception.yml deleted file mode 100644 index 5ce51bf1dd8..00000000000 --- a/src/licensedcode/data/licenses/sencha-dev-floss-exception.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: sencha-dev-floss-exception -short_name: Sencha GPL 3.0 Exception for Development -name: Sencha Open Source License Exception for Development -category: Copyleft -owner: Sencha -homepage_url: http://www.sencha.com/products/ux-exception.php -notes: Sencha stopped offering this exception in 2015. -is_exception: yes -spdx_license_key: LicenseRef-scancode-sencha-dev-floss-exception -other_urls: - - http://web.archive.org/web/20140816133230/http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/ - - http://www.sencha.com/legal/open-source-faq/open-source-license-exception-for-development/ -ignorable_urls: - - http://www.sencha.com/license diff --git a/src/licensedcode/data/licenses/sendmail-8.23.LICENSE b/src/licensedcode/data/licenses/sendmail-8.23.LICENSE index ca6fc8f8081..e070ad15177 100644 --- a/src/licensedcode/data/licenses/sendmail-8.23.LICENSE +++ b/src/licensedcode/data/licenses/sendmail-8.23.LICENSE @@ -1,3 +1,25 @@ +--- +key: sendmail-8.23 +short_name: Sendmail License 8.23 +name: Sendmail License 8.23 +category: Copyleft Limited +owner: Sendmail +homepage_url: https://www.proofpoint.com/sites/default/files/sendmail-license.pdf +spdx_license_key: Sendmail-8.23 +other_urls: + - https://www.proofpoint.com/sites/default/files/sendmail-license.pdf + - https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University ofCalifornia + - Copyright (c) 1998-2014 Proofpoint, Inc. +ignorable_holders: + - Proofpoint, Inc. + - The Regents of the University ofCalifornia +ignorable_emails: + - sendmail-license@proofpoint.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a redistribution agreement or other license is obtained from Proofpoint, Inc., 892 Ross Street, Sunnyvale, CA, 94089, USA, or by electronic mail at sendmail-license@proofpoint.com. diff --git a/src/licensedcode/data/licenses/sendmail-8.23.yml b/src/licensedcode/data/licenses/sendmail-8.23.yml deleted file mode 100644 index 9a08c4ab1d7..00000000000 --- a/src/licensedcode/data/licenses/sendmail-8.23.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: sendmail-8.23 -short_name: Sendmail License 8.23 -name: Sendmail License 8.23 -category: Copyleft Limited -owner: Sendmail -homepage_url: https://www.proofpoint.com/sites/default/files/sendmail-license.pdf -spdx_license_key: Sendmail-8.23 -other_urls: - - https://www.proofpoint.com/sites/default/files/sendmail-license.pdf - - https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1988, 1993 The Regents of the University ofCalifornia - - Copyright (c) 1998-2014 Proofpoint, Inc. -ignorable_holders: - - Proofpoint, Inc. - - The Regents of the University ofCalifornia -ignorable_emails: - - sendmail-license@proofpoint.com diff --git a/src/licensedcode/data/licenses/sendmail.LICENSE b/src/licensedcode/data/licenses/sendmail.LICENSE index ba0eb1e90e8..3f157c649f1 100644 --- a/src/licensedcode/data/licenses/sendmail.LICENSE +++ b/src/licensedcode/data/licenses/sendmail.LICENSE @@ -1,3 +1,28 @@ +--- +key: sendmail +short_name: Sendmail License +name: Sendmail License +category: Permissive +owner: Sendmail +homepage_url: http://www.sendmail.com/ +notes: this version of the license dates from 2004. There several minor variations publichsed + since. +spdx_license_key: Sendmail +text_urls: + - http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf +other_urls: + - https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University of California + - Copyright (c) 1998-2004 Sendmail, Inc. +ignorable_holders: + - Sendmail, Inc. + - The Regents of the University of California +ignorable_emails: + - license@sendmail.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a different diff --git a/src/licensedcode/data/licenses/sendmail.yml b/src/licensedcode/data/licenses/sendmail.yml deleted file mode 100644 index a2283a639b9..00000000000 --- a/src/licensedcode/data/licenses/sendmail.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: sendmail -short_name: Sendmail License -name: Sendmail License -category: Permissive -owner: Sendmail -homepage_url: http://www.sendmail.com/ -notes: this version of the license dates from 2004. There several minor variations publichsed - since. -spdx_license_key: Sendmail -text_urls: - - http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf -other_urls: - - https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 1988, 1993 The Regents of the University of California - - Copyright (c) 1998-2004 Sendmail, Inc. -ignorable_holders: - - Sendmail, Inc. - - The Regents of the University of California -ignorable_emails: - - license@sendmail.com diff --git a/src/licensedcode/data/licenses/service-comp-arch.LICENSE b/src/licensedcode/data/licenses/service-comp-arch.LICENSE index b866917be55..83acb7c325b 100644 --- a/src/licensedcode/data/licenses/service-comp-arch.LICENSE +++ b/src/licensedcode/data/licenses/service-comp-arch.LICENSE @@ -1,3 +1,16 @@ +--- +key: service-comp-arch +short_name: Service Component Architecture License +name: License for the Service Component Architecture JavaDoc, Interface Definition files and + XSD files +category: Permissive +owner: osoa +homepage_url: http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications +spdx_license_key: LicenseRef-scancode-service-comp-arch +ignorable_urls: + - http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications +--- + The Service Component Architecture JavaDoc, Interface Definition files, and XSD files are being provided by the copyright holders under the following license. By using and/or copying this work, you agree that diff --git a/src/licensedcode/data/licenses/service-comp-arch.yml b/src/licensedcode/data/licenses/service-comp-arch.yml deleted file mode 100644 index f55e84bf7c7..00000000000 --- a/src/licensedcode/data/licenses/service-comp-arch.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: service-comp-arch -short_name: Service Component Architecture License -name: License for the Service Component Architecture JavaDoc, Interface Definition files and - XSD files -category: Permissive -owner: osoa -homepage_url: http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications -spdx_license_key: LicenseRef-scancode-service-comp-arch -ignorable_urls: - - http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications diff --git a/src/licensedcode/data/licenses/sfl-license.LICENSE b/src/licensedcode/data/licenses/sfl-license.LICENSE index e02b9dd9f8d..536a571d382 100644 --- a/src/licensedcode/data/licenses/sfl-license.LICENSE +++ b/src/licensedcode/data/licenses/sfl-license.LICENSE @@ -1,3 +1,26 @@ +--- +key: sfl-license +short_name: SFL License Agreement +name: SFL License Agreement +category: Permissive +owner: iMatix +homepage_url: http://legacy.imatix.com/html/sfl/sfl4.htm +spdx_license_key: iMatix +text_urls: + - http://legacy.imatix.com/html/sfl/sfl4.htm +other_urls: + - http://legacy.imatix.com/html/sfl/sfl4.htm#license + - http://www.imatix.com +ignorable_copyrights: + - Copyright (c) 1991-2000 iMatix Corporation + - Copyright (c) 1991-2000 iMatix Corporation + - Parts copyright (c) 1991-2000 iMatix Corporation +ignorable_holders: + - iMatix Corporation +ignorable_urls: + - http://www.imatix.com/ +--- + The SFL License Agreement This license agreement covers your use of the iMatix STANDARD FUNCTION LIBRARY (SFL), its source code, documentation, and executable files, hereinafter referred to as "the Product". diff --git a/src/licensedcode/data/licenses/sfl-license.yml b/src/licensedcode/data/licenses/sfl-license.yml deleted file mode 100644 index 884f08dff4d..00000000000 --- a/src/licensedcode/data/licenses/sfl-license.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: sfl-license -short_name: SFL License Agreement -name: SFL License Agreement -category: Permissive -owner: iMatix -homepage_url: http://legacy.imatix.com/html/sfl/sfl4.htm -spdx_license_key: iMatix -text_urls: - - http://legacy.imatix.com/html/sfl/sfl4.htm -other_urls: - - http://legacy.imatix.com/html/sfl/sfl4.htm#license - - http://www.imatix.com -ignorable_copyrights: - - Copyright (c) 1991-2000 iMatix Corporation - - Copyright (c) 1991-2000 iMatix Corporation - - Parts copyright (c) 1991-2000 iMatix Corporation -ignorable_holders: - - iMatix Corporation -ignorable_urls: - - http://www.imatix.com/ diff --git a/src/licensedcode/data/licenses/sgi-cid-1.0.LICENSE b/src/licensedcode/data/licenses/sgi-cid-1.0.LICENSE index 2b61efb70c4..470c03056cc 100644 --- a/src/licensedcode/data/licenses/sgi-cid-1.0.LICENSE +++ b/src/licensedcode/data/licenses/sgi-cid-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: sgi-cid-1.0 +short_name: SGI CID Font Code Public License 1.0 +name: SGI CID Font Code Public License v1.0 +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://www.xfree86.org/current/LICENSE10.html +spdx_license_key: LicenseRef-scancode-sgi-cid-1.0 +text_urls: + - http://www.xfree86.org/current/LICENSE10.html +ignorable_copyrights: + - Copyright (c) 1994-1999 Silicon Graphics, Inc. +ignorable_holders: + - Silicon Graphics, Inc. +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://www.sgi.com/software/opensource/cid/license.html +--- + CID FONT CODE PUBLIC LICENSE Version 1.0 3/31/99 Subject to any applicable third party claims, Silicon Graphics, Inc. ("SGI") diff --git a/src/licensedcode/data/licenses/sgi-cid-1.0.yml b/src/licensedcode/data/licenses/sgi-cid-1.0.yml deleted file mode 100644 index 7b12a660600..00000000000 --- a/src/licensedcode/data/licenses/sgi-cid-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: sgi-cid-1.0 -short_name: SGI CID Font Code Public License 1.0 -name: SGI CID Font Code Public License v1.0 -category: Permissive -owner: SGI - Silicon Graphics -homepage_url: http://www.xfree86.org/current/LICENSE10.html -spdx_license_key: LicenseRef-scancode-sgi-cid-1.0 -text_urls: - - http://www.xfree86.org/current/LICENSE10.html -ignorable_copyrights: - - Copyright (c) 1994-1999 Silicon Graphics, Inc. -ignorable_holders: - - Silicon Graphics, Inc. -ignorable_authors: - - Silicon Graphics, Inc. -ignorable_urls: - - http://www.sgi.com/software/opensource/cid/license.html diff --git a/src/licensedcode/data/licenses/sgi-freeb-1.1.LICENSE b/src/licensedcode/data/licenses/sgi-freeb-1.1.LICENSE index 60264beee9a..ed690ed0a4a 100644 --- a/src/licensedcode/data/licenses/sgi-freeb-1.1.LICENSE +++ b/src/licensedcode/data/licenses/sgi-freeb-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: sgi-freeb-1.1 +short_name: SGI Free Software License B 1.1 +name: SGI Free Software License B v1.1 +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc +notes: Per SPDX.org, this license was released 22 February 2002 +spdx_license_key: SGI-B-1.1 +text_urls: + - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc +other_urls: + - http://oss.sgi.com/projects/FreeB/ +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB +--- + SGI FREE SOFTWARE LICENSE B (Version 1.1 [02/22/2000]) 2.License Grant and Restrictions. 2.1.SGI License Grant. Subject to the terms of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code and/or any Modifications provided by SGI alone and/or as part of a Larger Work; and (ii) under any Licensable Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions. The patent license shall apply to the Covered Code if, at the time any related Modification is added, such addition of the Modification causes such combination to be covered by the Licensed Patents. The patent license in Section 2.1(ii) shall not apply to any other combinations that include the Modification. No patent license is provided under SGI Patents for infringements of SGI Patents by Modifications not provided by SGI or combinations of Original Code and Modifications not provided by SGI. diff --git a/src/licensedcode/data/licenses/sgi-freeb-1.1.yml b/src/licensedcode/data/licenses/sgi-freeb-1.1.yml deleted file mode 100644 index 3941de03049..00000000000 --- a/src/licensedcode/data/licenses/sgi-freeb-1.1.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: sgi-freeb-1.1 -short_name: SGI Free Software License B 1.1 -name: SGI Free Software License B v1.1 -category: Permissive -owner: SGI - Silicon Graphics -homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc -notes: Per SPDX.org, this license was released 22 February 2002 -spdx_license_key: SGI-B-1.1 -text_urls: - - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc -other_urls: - - http://oss.sgi.com/projects/FreeB/ -ignorable_authors: - - Silicon Graphics, Inc. -ignorable_urls: - - http://oss.sgi.com/projects/FreeB diff --git a/src/licensedcode/data/licenses/sgi-freeb-2.0.LICENSE b/src/licensedcode/data/licenses/sgi-freeb-2.0.LICENSE index fb1e98c468c..6fedae7399c 100644 --- a/src/licensedcode/data/licenses/sgi-freeb-2.0.LICENSE +++ b/src/licensedcode/data/licenses/sgi-freeb-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: sgi-freeb-2.0 +short_name: SGI Free Software License B 2.0 +name: SGI Free Software License B v2.0 +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf +notes: Per SPDX.org, this license was released 18 Sept 2008 +spdx_license_key: SGI-B-2.0 +text_urls: + - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf +other_urls: + - http://oss.sgi.com/projects/FreeB/ +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -22,4 +39,4 @@ THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization -from Silicon Graphics, Inc. +from Silicon Graphics, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sgi-freeb-2.0.yml b/src/licensedcode/data/licenses/sgi-freeb-2.0.yml deleted file mode 100644 index 13fc5049846..00000000000 --- a/src/licensedcode/data/licenses/sgi-freeb-2.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: sgi-freeb-2.0 -short_name: SGI Free Software License B 2.0 -name: SGI Free Software License B v2.0 -category: Permissive -owner: SGI - Silicon Graphics -homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf -notes: Per SPDX.org, this license was released 18 Sept 2008 -spdx_license_key: SGI-B-2.0 -text_urls: - - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf -other_urls: - - http://oss.sgi.com/projects/FreeB/ -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/licenses/sgi-fslb-1.0.LICENSE b/src/licensedcode/data/licenses/sgi-fslb-1.0.LICENSE index 2290dfc3a08..6c5b136bc73 100644 --- a/src/licensedcode/data/licenses/sgi-fslb-1.0.LICENSE +++ b/src/licensedcode/data/licenses/sgi-fslb-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: sgi-fslb-1.0 +short_name: SGI Free Software License B 1.0 +name: SGI Free Software License B v1.0 +category: Free Restricted +owner: SGI - Silicon Graphics +homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html +notes: Per SPDX.org, this license was released 25 January 2000 +spdx_license_key: SGI-B-1.0 +text_urls: + - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html +--- + SGI FREE SOFTWARE LICENSE B @@ -36,4 +49,4 @@ SGI FREE SOFTWARE LICENSE B 10. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT. 11. Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient's use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient. 12. U.S. Government End Users. The Covered Code is a "commercial item" consisting of "commercial computer software" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License. - 13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. + 13. Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sgi-fslb-1.0.yml b/src/licensedcode/data/licenses/sgi-fslb-1.0.yml deleted file mode 100644 index 11a440d765f..00000000000 --- a/src/licensedcode/data/licenses/sgi-fslb-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: sgi-fslb-1.0 -short_name: SGI Free Software License B 1.0 -name: SGI Free Software License B v1.0 -category: Free Restricted -owner: SGI - Silicon Graphics -homepage_url: http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html -notes: Per SPDX.org, this license was released 25 January 2000 -spdx_license_key: SGI-B-1.0 -text_urls: - - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html diff --git a/src/licensedcode/data/licenses/sgi-glx-1.0.LICENSE b/src/licensedcode/data/licenses/sgi-glx-1.0.LICENSE index 92db9d9a691..be445c9b824 100644 --- a/src/licensedcode/data/licenses/sgi-glx-1.0.LICENSE +++ b/src/licensedcode/data/licenses/sgi-glx-1.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: sgi-glx-1.0 +short_name: SGI GLX Public License 1.0 +name: SGI GLX Public License v1.0 +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://www.sgi.com/products/software/opensource/glx/glxlicense.txt +spdx_license_key: LicenseRef-scancode-sgi-glx-1.0 +text_urls: + - http://velib.kyb.mpg.de/docu/GLX.html +ignorable_copyrights: + - (c) 1991-9 Silicon Graphics, Inc. +ignorable_holders: + - Silicon Graphics, Inc. +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://www.sgi.com/software/opensource/glx/license.html +--- + GLX PUBLIC LICENSE Version 1.0 2/11/99 License Subject to any third party claims, Silicon Graphics, Inc. ("SGI") hereby diff --git a/src/licensedcode/data/licenses/sgi-glx-1.0.yml b/src/licensedcode/data/licenses/sgi-glx-1.0.yml deleted file mode 100644 index 85692f196e7..00000000000 --- a/src/licensedcode/data/licenses/sgi-glx-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: sgi-glx-1.0 -short_name: SGI GLX Public License 1.0 -name: SGI GLX Public License v1.0 -category: Permissive -owner: SGI - Silicon Graphics -homepage_url: http://www.sgi.com/products/software/opensource/glx/glxlicense.txt -spdx_license_key: LicenseRef-scancode-sgi-glx-1.0 -text_urls: - - http://velib.kyb.mpg.de/docu/GLX.html -ignorable_copyrights: - - (c) 1991-9 Silicon Graphics, Inc. -ignorable_holders: - - Silicon Graphics, Inc. -ignorable_authors: - - Silicon Graphics, Inc. -ignorable_urls: - - http://www.sgi.com/software/opensource/glx/license.html diff --git a/src/licensedcode/data/licenses/sglib.LICENSE b/src/licensedcode/data/licenses/sglib.LICENSE index 436c13fa056..42592a42ec2 100644 --- a/src/licensedcode/data/licenses/sglib.LICENSE +++ b/src/licensedcode/data/licenses/sglib.LICENSE @@ -1,3 +1,16 @@ +--- +key: sglib +short_name: Sglib License +name: Sglib License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-sglib +other_urls: + - http://www.xref-tech.com/sglib/ +ignorable_urls: + - http://www.opensource.org/ +--- + Basically, I only care that you do not remove the Copyright notice from the source code when using Sglib. diff --git a/src/licensedcode/data/licenses/sglib.yml b/src/licensedcode/data/licenses/sglib.yml deleted file mode 100644 index 9d19ff14338..00000000000 --- a/src/licensedcode/data/licenses/sglib.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: sglib -short_name: Sglib License -name: Sglib License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-sglib -other_urls: - - http://www.xref-tech.com/sglib/ -ignorable_urls: - - http://www.opensource.org/ diff --git a/src/licensedcode/data/licenses/shavlik-eula.LICENSE b/src/licensedcode/data/licenses/shavlik-eula.LICENSE index 6bbfc04af99..621a4715ee5 100644 --- a/src/licensedcode/data/licenses/shavlik-eula.LICENSE +++ b/src/licensedcode/data/licenses/shavlik-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: shavlik-eula +short_name: Shavlik Technologies EULA +name: Shavlik Technologies EULA +category: Commercial +owner: Shavlik Technologies +homepage_url: http://www.shavlik.com/ +spdx_license_key: LicenseRef-scancode-shavlik-eula +ignorable_emails: + - info@shavlik.com +--- + Shavlik Technologies, LLC END USER LICENSE AGREEMENT CAREFULLY READ THE FOLLOWING TERMS AND CONDITIONS BEFORE LOADING THE SOFTWARE. THIS diff --git a/src/licensedcode/data/licenses/shavlik-eula.yml b/src/licensedcode/data/licenses/shavlik-eula.yml deleted file mode 100644 index 9674b6cb595..00000000000 --- a/src/licensedcode/data/licenses/shavlik-eula.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: shavlik-eula -short_name: Shavlik Technologies EULA -name: Shavlik Technologies EULA -category: Commercial -owner: Shavlik Technologies -homepage_url: http://www.shavlik.com/ -spdx_license_key: LicenseRef-scancode-shavlik-eula -ignorable_emails: - - info@shavlik.com diff --git a/src/licensedcode/data/licenses/shital-shah.LICENSE b/src/licensedcode/data/licenses/shital-shah.LICENSE index f69bc3e5adf..52cf0a5a699 100644 --- a/src/licensedcode/data/licenses/shital-shah.LICENSE +++ b/src/licensedcode/data/licenses/shital-shah.LICENSE @@ -1,3 +1,15 @@ +--- +key: shital-shah +short_name: Shital Shah License +name: Shital Shah License +category: Permissive +owner: Shital Shah +homepage_url: http://shitalshah.com/disclaimer/ +spdx_license_key: LicenseRef-scancode-shital-shah +text_urls: + - http://shitalshah.com/disclaimer/ +--- + You may freely copy, store, distribute and use any material published on this site free of charge and without my explicit permission, provided anyone else diff --git a/src/licensedcode/data/licenses/shital-shah.yml b/src/licensedcode/data/licenses/shital-shah.yml deleted file mode 100644 index 400446d77f1..00000000000 --- a/src/licensedcode/data/licenses/shital-shah.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: shital-shah -short_name: Shital Shah License -name: Shital Shah License -category: Permissive -owner: Shital Shah -homepage_url: http://shitalshah.com/disclaimer/ -spdx_license_key: LicenseRef-scancode-shital-shah -text_urls: - - http://shitalshah.com/disclaimer/ diff --git a/src/licensedcode/data/licenses/shl-0.5.LICENSE b/src/licensedcode/data/licenses/shl-0.5.LICENSE index 894e71e364f..3677c21f1d9 100644 --- a/src/licensedcode/data/licenses/shl-0.5.LICENSE +++ b/src/licensedcode/data/licenses/shl-0.5.LICENSE @@ -1,3 +1,28 @@ +--- +key: shl-0.5 +short_name: SolderPad Hardware License v0.5 +name: SolderPad Hardware License v0.5 +category: Permissive +owner: SolderPad +homepage_url: https://solderpad.org/licenses/SHL-0.5/ +spdx_license_key: SHL-0.5 +other_urls: + - https://solderpad.org/licenses/SHL-0.5/ +standard_notice: | + Copyright and related rights are + licensed under the Solderpad Hardware License, Version 0.5 (the "License"); + you may not use this file except in compliance with the License. You may + obtain a copy of the License at http://solderpad.org/licenses/SHL-0.5. + Unless required by applicable law or agreed to in writing, software, + hardware and materials distributed under this 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. +ignorable_urls: + - http://solderpad.org/licenses/SHL-0.5 + - http://www.apache.org/licenses/LICENSE-2.0 +--- + SOLDERPAD HARDWARE LICENSE version 0.5 This license is based closely on the Apache License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy of the non-modified Apache License 2.0 can be found at http://www.apache.org/licenses/LICENSE-2.0. diff --git a/src/licensedcode/data/licenses/shl-0.5.yml b/src/licensedcode/data/licenses/shl-0.5.yml deleted file mode 100644 index b54197370a2..00000000000 --- a/src/licensedcode/data/licenses/shl-0.5.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: shl-0.5 -short_name: SolderPad Hardware License v0.5 -name: SolderPad Hardware License v0.5 -category: Permissive -owner: SolderPad -homepage_url: https://solderpad.org/licenses/SHL-0.5/ -spdx_license_key: SHL-0.5 -other_urls: - - https://solderpad.org/licenses/SHL-0.5/ -standard_notice: | - Copyright and related rights are - licensed under the Solderpad Hardware License, Version 0.5 (the "License"); - you may not use this file except in compliance with the License. You may - obtain a copy of the License at http://solderpad.org/licenses/SHL-0.5. - Unless required by applicable law or agreed to in writing, software, - hardware and materials distributed under this 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. -ignorable_urls: - - http://solderpad.org/licenses/SHL-0.5 - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/licenses/shl-0.51.LICENSE b/src/licensedcode/data/licenses/shl-0.51.LICENSE index b0bf401b121..b8bb7faef2e 100644 --- a/src/licensedcode/data/licenses/shl-0.51.LICENSE +++ b/src/licensedcode/data/licenses/shl-0.51.LICENSE @@ -1,3 +1,28 @@ +--- +key: shl-0.51 +short_name: SolderPad Hardware License, Version 0.51 +name: SolderPad Hardware License, Version 0.51 +category: Permissive +owner: SolderPad +homepage_url: https://solderpad.org/licenses/SHL-0.51/ +spdx_license_key: SHL-0.51 +other_urls: + - https://solderpad.org/licenses/SHL-0.51/ +standard_notice: | + Copyright and related rights are + licensed under the Solderpad Hardware License, Version 0.51 (the + "License"); you may not use this file except in compliance with the + License. You may obtain a copy of the License at + http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law + or agreed to in writing, software, hardware and materials distributed under + this 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. +ignorable_urls: + - http://solderpad.org/licenses/SHL-0.51 + - http://www.apache.org/licenses/LICENSE-2.0 +--- + SOLDERPAD HARDWARE LICENSE version 0.51 This license is based closely on the Apache License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy of the non-modified Apache License 2.0 can be found at http://www.apache.org/licenses/LICENSE-2.0. diff --git a/src/licensedcode/data/licenses/shl-0.51.yml b/src/licensedcode/data/licenses/shl-0.51.yml deleted file mode 100644 index 642ea33f1ba..00000000000 --- a/src/licensedcode/data/licenses/shl-0.51.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: shl-0.51 -short_name: SolderPad Hardware License, Version 0.51 -name: SolderPad Hardware License, Version 0.51 -category: Permissive -owner: SolderPad -homepage_url: https://solderpad.org/licenses/SHL-0.51/ -spdx_license_key: SHL-0.51 -other_urls: - - https://solderpad.org/licenses/SHL-0.51/ -standard_notice: | - Copyright and related rights are - licensed under the Solderpad Hardware License, Version 0.51 (the - "License"); you may not use this file except in compliance with the - License. You may obtain a copy of the License at - http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law - or agreed to in writing, software, hardware and materials distributed under - this 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. -ignorable_urls: - - http://solderpad.org/licenses/SHL-0.51 - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/licenses/shl-2.0.LICENSE b/src/licensedcode/data/licenses/shl-2.0.LICENSE index 400585e33a0..ad8a2096b57 100644 --- a/src/licensedcode/data/licenses/shl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/shl-2.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: shl-2.0 +short_name: Solderpad Hardware License v2.0 +name: Solderpad Hardware License v2.0 +category: Permissive +owner: SolderPad +homepage_url: https://solderpad.org/licenses/SHL-2.0/ +is_exception: yes +spdx_license_key: SHL-2.0 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + Solderpad Hardware Licence v2.0 Solderpad Hardware Licence v2.0 diff --git a/src/licensedcode/data/licenses/shl-2.0.yml b/src/licensedcode/data/licenses/shl-2.0.yml deleted file mode 100644 index 628cba98124..00000000000 --- a/src/licensedcode/data/licenses/shl-2.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: shl-2.0 -short_name: Solderpad Hardware License v2.0 -name: Solderpad Hardware License v2.0 -category: Permissive -owner: SolderPad -homepage_url: https://solderpad.org/licenses/SHL-2.0/ -is_exception: yes -spdx_license_key: SHL-2.0 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/licenses/shl-2.1.LICENSE b/src/licensedcode/data/licenses/shl-2.1.LICENSE index 8b7e5af87c5..94fe13f5fd1 100644 --- a/src/licensedcode/data/licenses/shl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/shl-2.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: shl-2.1 +short_name: Solderpad Hardware License v2.1 +name: Solderpad Hardware License v2.1 +category: Permissive +owner: SolderPad +homepage_url: https://solderpad.org/licenses/SHL-2.1/ +is_exception: yes +spdx_license_key: SHL-2.1 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 + - https://solderpad.org/licenses/SHL-2.1/ +--- + Solderpad Hardware License v2.1 This license operates as a wraparound license to the Apache License Version 2.0 (the “Apache License”) and incorporates the terms and conditions of the Apache License (which can be found here: http://apache.org/licenses/LICENSE-2.0), with the following additions and modifications. It must be read in conjunction with the Apache License. Section 1 below modifies definitions and terminology in the Apache License and Section 2 below replaces Section 2 of the Apache License. The Appendix replaces the Appendix in the Apache License. You may, at your option, choose to treat any Work released under this license as released under the Apache License (thus ignoring all sections written below entirely). diff --git a/src/licensedcode/data/licenses/shl-2.1.yml b/src/licensedcode/data/licenses/shl-2.1.yml deleted file mode 100644 index 2044e732805..00000000000 --- a/src/licensedcode/data/licenses/shl-2.1.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: shl-2.1 -short_name: Solderpad Hardware License v2.1 -name: Solderpad Hardware License v2.1 -category: Permissive -owner: SolderPad -homepage_url: https://solderpad.org/licenses/SHL-2.1/ -is_exception: yes -spdx_license_key: SHL-2.1 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 - - https://solderpad.org/licenses/SHL-2.1/ diff --git a/src/licensedcode/data/licenses/signal-gpl-3.0-exception.LICENSE b/src/licensedcode/data/licenses/signal-gpl-3.0-exception.LICENSE index 60a46de4167..5d55875460f 100644 --- a/src/licensedcode/data/licenses/signal-gpl-3.0-exception.LICENSE +++ b/src/licensedcode/data/licenses/signal-gpl-3.0-exception.LICENSE @@ -1 +1,14 @@ +--- +key: signal-gpl-3.0-exception +short_name: Signal Exception to GPL 3.0 +name: Signal Exception to GPL 3.0 +category: Copyleft Limited +owner: signal.org +homepage_url: https://github.com/signalapp/libsignal-protocol-c/blob/master/README.md#license +is_exception: yes +spdx_license_key: LicenseRef-scancode-signal-gpl-3.0-exception +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0 +--- + Additional Permissions For Submission to Apple App Store: Provided that you are otherwise in compliance with the GPLv3 for each covered work you convey (including without limitation making the Corresponding Source available in compliance with Section 6 of the GPLv3), Open Whisper Systems also grants you the additional permission to convey through the Apple App Store non-source executable versions of the Program as incorporated into each applicable covered work as Executable Versions only under the Mozilla Public License version 2.0 (https://www.mozilla.org/en-US/MPL/2.0/). \ No newline at end of file diff --git a/src/licensedcode/data/licenses/signal-gpl-3.0-exception.yml b/src/licensedcode/data/licenses/signal-gpl-3.0-exception.yml deleted file mode 100644 index cb9c6e8aa62..00000000000 --- a/src/licensedcode/data/licenses/signal-gpl-3.0-exception.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: signal-gpl-3.0-exception -short_name: Signal Exception to GPL 3.0 -name: Signal Exception to GPL 3.0 -category: Copyleft Limited -owner: signal.org -homepage_url: https://github.com/signalapp/libsignal-protocol-c/blob/master/README.md#license -is_exception: yes -spdx_license_key: LicenseRef-scancode-signal-gpl-3.0-exception -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/2.0 diff --git a/src/licensedcode/data/licenses/simpl-1.1.LICENSE b/src/licensedcode/data/licenses/simpl-1.1.LICENSE index 0d5e25f3721..6868c9730ac 100644 --- a/src/licensedcode/data/licenses/simpl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/simpl-1.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: simpl-1.1 +short_name: SimPL 1.1 +name: Simple Public License Version 1.1 +category: Permissive +owner: Analysis and Solutions Company +homepage_url: http://www.analysisandsolutions.com/software/license.htm +spdx_license_key: LicenseRef-scancode-simpl-1.1 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) The Analysis and Solutions Company http://www.analysisandsolutions.com +ignorable_holders: + - The Analysis and Solutions Company +ignorable_urls: + - http://www.analysisandsolutions.com/ +--- + SIMPLE PUBLIC LICENSE VERSION 1.1 2003-01-21 Copyright (c) The Analysis and Solutions Company diff --git a/src/licensedcode/data/licenses/simpl-1.1.yml b/src/licensedcode/data/licenses/simpl-1.1.yml deleted file mode 100644 index 378a76dfbd4..00000000000 --- a/src/licensedcode/data/licenses/simpl-1.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: simpl-1.1 -short_name: SimPL 1.1 -name: Simple Public License Version 1.1 -category: Permissive -owner: Analysis and Solutions Company -homepage_url: http://www.analysisandsolutions.com/software/license.htm -spdx_license_key: LicenseRef-scancode-simpl-1.1 -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) The Analysis and Solutions Company http://www.analysisandsolutions.com -ignorable_holders: - - The Analysis and Solutions Company -ignorable_urls: - - http://www.analysisandsolutions.com/ diff --git a/src/licensedcode/data/licenses/simpl-2.0.LICENSE b/src/licensedcode/data/licenses/simpl-2.0.LICENSE index 85c818a2eac..546f5f835ef 100644 --- a/src/licensedcode/data/licenses/simpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/simpl-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: simpl-2.0 +short_name: SimPL 2.0 +name: Simple Public License Version 2.0 +category: Copyleft +owner: OSI - Open Source Initiative +homepage_url: http://www.opensource.org/licenses/simpl-2.0.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: SimPL-2.0 +text_urls: + - Simple Public License +osi_url: http://www.opensource.org/licenses/simpl-2.0.html +other_urls: + - http://www.opensource.org/licenses/SimPL-2.0 + - https://opensource.org/licenses/SimPL-2.0 +--- + Preamble This Simple Public License 2.0 (SimPL 2.0 for short) is a plain language implementation of GPL 2.0. The words are different, but the goal is the same - to guarantee for all users the freedom to share and change software. If anyone wonders about the meaning of the SimPL, they should interpret it as consistent with GPL 2.0. diff --git a/src/licensedcode/data/licenses/simpl-2.0.yml b/src/licensedcode/data/licenses/simpl-2.0.yml deleted file mode 100644 index c285dfa9a64..00000000000 --- a/src/licensedcode/data/licenses/simpl-2.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: simpl-2.0 -short_name: SimPL 2.0 -name: Simple Public License Version 2.0 -category: Copyleft -owner: OSI - Open Source Initiative -homepage_url: http://www.opensource.org/licenses/simpl-2.0.html -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: SimPL-2.0 -text_urls: - - Simple Public License -osi_url: http://www.opensource.org/licenses/simpl-2.0.html -other_urls: - - http://www.opensource.org/licenses/SimPL-2.0 - - https://opensource.org/licenses/SimPL-2.0 diff --git a/src/licensedcode/data/licenses/sleepycat.LICENSE b/src/licensedcode/data/licenses/sleepycat.LICENSE index a58c60e7934..3908153a6b8 100644 --- a/src/licensedcode/data/licenses/sleepycat.LICENSE +++ b/src/licensedcode/data/licenses/sleepycat.LICENSE @@ -1,3 +1,22 @@ +--- +key: sleepycat +short_name: Sleepycat License +name: Sleepycat License (Berkeley Database License) +category: Copyleft +owner: Oracle Corporation +homepage_url: http://opensource.org/licenses/sleepycat.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: Sleepycat +text_urls: + - http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html +osi_url: http://opensource.org/licenses/sleepycat.html +faq_url: https://docs.oracle.com/cd/E17076_05/html/license/license_db.html +other_urls: + - http://www.opensource.org/licenses/Sleepycat + - http://www.opensource.org/licenses/sleepycat.php + - https://opensource.org/licenses/Sleepycat +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/sleepycat.yml b/src/licensedcode/data/licenses/sleepycat.yml deleted file mode 100644 index 33843643252..00000000000 --- a/src/licensedcode/data/licenses/sleepycat.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: sleepycat -short_name: Sleepycat License -name: Sleepycat License (Berkeley Database License) -category: Copyleft -owner: Oracle Corporation -homepage_url: http://opensource.org/licenses/sleepycat.html -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: Sleepycat -text_urls: - - http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html -osi_url: http://opensource.org/licenses/sleepycat.html -faq_url: https://docs.oracle.com/cd/E17076_05/html/license/license_db.html -other_urls: - - http://www.opensource.org/licenses/Sleepycat - - http://www.opensource.org/licenses/sleepycat.php - - https://opensource.org/licenses/Sleepycat diff --git a/src/licensedcode/data/licenses/slf4j-2005.LICENSE b/src/licensedcode/data/licenses/slf4j-2005.LICENSE index c6cb9f68f06..5c913681111 100644 --- a/src/licensedcode/data/licenses/slf4j-2005.LICENSE +++ b/src/licensedcode/data/licenses/slf4j-2005.LICENSE @@ -1,3 +1,14 @@ +--- +key: slf4j-2005 +is_deprecated: yes +short_name: SLF4J License 2005 +name: SLF4J License 2005 +category: Permissive +owner: QOS Project +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/licenses/slf4j-2005.yml b/src/licensedcode/data/licenses/slf4j-2005.yml deleted file mode 100644 index 4f0364e3bd1..00000000000 --- a/src/licensedcode/data/licenses/slf4j-2005.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: slf4j-2005 -is_deprecated: yes -short_name: SLF4J License 2005 -name: SLF4J License 2005 -category: Permissive -owner: QOS Project -text_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html diff --git a/src/licensedcode/data/licenses/slf4j-2008.LICENSE b/src/licensedcode/data/licenses/slf4j-2008.LICENSE index 0c5508471fb..1d939724741 100644 --- a/src/licensedcode/data/licenses/slf4j-2008.LICENSE +++ b/src/licensedcode/data/licenses/slf4j-2008.LICENSE @@ -1,3 +1,14 @@ +--- +key: slf4j-2008 +is_deprecated: yes +short_name: SLF4J License 2008 +name: SLF4J License 2008 +category: Permissive +owner: QOS Project +homepage_url: http://www.slf4j.org/license.html +notes: composite +--- + Licensing terms for SLF4J SLF4J source code and binaries are distributed under the MIT license. diff --git a/src/licensedcode/data/licenses/slf4j-2008.yml b/src/licensedcode/data/licenses/slf4j-2008.yml deleted file mode 100644 index 0b20a10ef10..00000000000 --- a/src/licensedcode/data/licenses/slf4j-2008.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: slf4j-2008 -is_deprecated: yes -short_name: SLF4J License 2008 -name: SLF4J License 2008 -category: Permissive -owner: QOS Project -homepage_url: http://www.slf4j.org/license.html -notes: composite diff --git a/src/licensedcode/data/licenses/slysoft-eula.LICENSE b/src/licensedcode/data/licenses/slysoft-eula.LICENSE index 3db1704c601..8aede98ecce 100644 --- a/src/licensedcode/data/licenses/slysoft-eula.LICENSE +++ b/src/licensedcode/data/licenses/slysoft-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: slysoft-eula +short_name: SlySoft EULA +name: SlySoft EULA +category: Commercial +owner: SlySoft Inc. +homepage_url: http://www.slysoft.com/en/ +spdx_license_key: LicenseRef-scancode-slysoft-eula +--- + END USER LICENSE AGREEMENT for: All Software Products of SlySoft inc. IMPORTANT READ CAREFULLY and PRINT FOR YOUR REFERENCE: This End-User License Agreement ('EULA') is a legal agreement between you (either an individual person or a single legal entity, who will be referred to in this EULA as 'You') and SlySoft. It includes any associated media, printed materials and electronic documentation (the 'Software'). The Software also includes any software updates, add-on components, web services and/or supplements that SlySoft may provide to You or make available to You after the date You obtain Your initial copy of the Software to the extent that such items are not accompanied by a separate license agreement or terms of use. By installing, copying, downloading, accessing or otherwise using the Software, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, do not install, access or use the Software. For purposes of this EULA, the term 'Licensor' refers to SlySoft except in the event that You acquired the Software as a component of a SlySoft software product originally licensed from the manufacturer of your computer system or computer system component, then 'Licensor' or refers to such hardware manufacturer. By installing, copying, downloading, accessing or otherwise using the Software, You agree to be bound by the terms of this EULA. If You do not agree to the terms of this EULA, Licensor is unwilling to license the Software. In such event, You may not install, copy, download or otherwise use the Software. diff --git a/src/licensedcode/data/licenses/slysoft-eula.yml b/src/licensedcode/data/licenses/slysoft-eula.yml deleted file mode 100644 index f052e47ce1f..00000000000 --- a/src/licensedcode/data/licenses/slysoft-eula.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: slysoft-eula -short_name: SlySoft EULA -name: SlySoft EULA -category: Commercial -owner: SlySoft Inc. -homepage_url: http://www.slysoft.com/en/ -spdx_license_key: LicenseRef-scancode-slysoft-eula diff --git a/src/licensedcode/data/licenses/smail-gpl.LICENSE b/src/licensedcode/data/licenses/smail-gpl.LICENSE index ac94de5d4a9..6e5997ff7f5 100644 --- a/src/licensedcode/data/licenses/smail-gpl.LICENSE +++ b/src/licensedcode/data/licenses/smail-gpl.LICENSE @@ -1,3 +1,21 @@ +--- +key: smail-gpl +short_name: SMAIL GPL +name: SMAIL General Public License +category: Copyleft +owner: SMAIL Project +homepage_url: https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL +spdx_license_key: LicenseRef-scancode-smail-gpl +text_urls: + - https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL +ignorable_copyrights: + - Copyright (c) 1988 Landon Curt Noll & Ronald S. Karr + - Copyright (c) 1992 Ronald S. Karr +ignorable_holders: + - Landon Curt Noll & Ronald S. Karr + - Ronald S. Karr +--- + SMAIL GENERAL PUBLIC LICENSE (Clarified 11 Feb 1988) @@ -141,4 +159,4 @@ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY -ANY OTHER PARTY. +ANY OTHER PARTY. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/smail-gpl.yml b/src/licensedcode/data/licenses/smail-gpl.yml deleted file mode 100644 index a1e34010d87..00000000000 --- a/src/licensedcode/data/licenses/smail-gpl.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: smail-gpl -short_name: SMAIL GPL -name: SMAIL General Public License -category: Copyleft -owner: SMAIL Project -homepage_url: https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL -spdx_license_key: LicenseRef-scancode-smail-gpl -text_urls: - - https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL -ignorable_copyrights: - - Copyright (c) 1988 Landon Curt Noll & Ronald S. Karr - - Copyright (c) 1992 Ronald S. Karr -ignorable_holders: - - Landon Curt Noll & Ronald S. Karr - - Ronald S. Karr diff --git a/src/licensedcode/data/licenses/smartlabs-freeware.LICENSE b/src/licensedcode/data/licenses/smartlabs-freeware.LICENSE index 9c23b953b5f..dd560ba9492 100644 --- a/src/licensedcode/data/licenses/smartlabs-freeware.LICENSE +++ b/src/licensedcode/data/licenses/smartlabs-freeware.LICENSE @@ -1,3 +1,15 @@ +--- +key: smartlabs-freeware +short_name: SmartLabs Freeware License +name: SmartLabs Freeware License +category: Proprietary Free +owner: SmartLabs +homepage_url: http://www.videohelp.com/tools/tsMuxeR +spdx_license_key: LicenseRef-scancode-smartlabs-freeware +text_urls: + - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/SmartLabs +--- + Freeware Licence Agreement This licence agreement only applies to the free version of this software. diff --git a/src/licensedcode/data/licenses/smartlabs-freeware.yml b/src/licensedcode/data/licenses/smartlabs-freeware.yml deleted file mode 100644 index 961c6e9be21..00000000000 --- a/src/licensedcode/data/licenses/smartlabs-freeware.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: smartlabs-freeware -short_name: SmartLabs Freeware License -name: SmartLabs Freeware License -category: Proprietary Free -owner: SmartLabs -homepage_url: http://www.videohelp.com/tools/tsMuxeR -spdx_license_key: LicenseRef-scancode-smartlabs-freeware -text_urls: - - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/SmartLabs diff --git a/src/licensedcode/data/licenses/smppl.LICENSE b/src/licensedcode/data/licenses/smppl.LICENSE index cd90437e7b5..f43c50350eb 100644 --- a/src/licensedcode/data/licenses/smppl.LICENSE +++ b/src/licensedcode/data/licenses/smppl.LICENSE @@ -1,3 +1,19 @@ +--- +key: smppl +short_name: SMPPL +name: Secure Messaging Protocol Public License +category: Copyleft Limited +owner: National Security Agency +homepage_url: https://github.com/dcblake/SMP/blob/master/Documentation/License.txt +spdx_license_key: SMPPL +ignorable_copyrights: + - Copyright (c) 1997-2002 National Security Agency +ignorable_holders: + - National Security Agency +ignorable_authors: + - the U.S. Government. BAE Systems +--- + Secure Messaging Protocol (SMP) Libraries [ACL, CML, SFL] Distribution Rights diff --git a/src/licensedcode/data/licenses/smppl.yml b/src/licensedcode/data/licenses/smppl.yml deleted file mode 100644 index 0dc859add6a..00000000000 --- a/src/licensedcode/data/licenses/smppl.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: smppl -short_name: SMPPL -name: Secure Messaging Protocol Public License -category: Copyleft Limited -owner: National Security Agency -homepage_url: https://github.com/dcblake/SMP/blob/master/Documentation/License.txt -spdx_license_key: SMPPL -ignorable_copyrights: - - Copyright (c) 1997-2002 National Security Agency -ignorable_holders: - - National Security Agency -ignorable_authors: - - the U.S. Government. BAE Systems diff --git a/src/licensedcode/data/licenses/smsc-non-commercial-2012.LICENSE b/src/licensedcode/data/licenses/smsc-non-commercial-2012.LICENSE index 03b2cb955d5..6be16229f8a 100644 --- a/src/licensedcode/data/licenses/smsc-non-commercial-2012.LICENSE +++ b/src/licensedcode/data/licenses/smsc-non-commercial-2012.LICENSE @@ -1,3 +1,16 @@ +--- +key: smsc-non-commercial-2012 +short_name: SMSC Non-Commercial 2012 +name: SMSC Non-Commercial 2012 +category: Proprietary Free +owner: Microchip +spdx_license_key: LicenseRef-scancode-smsc-non-commercial-2012 +ignorable_copyrights: + - Copyright 2012 SMSC +ignorable_holders: + - SMSC +--- + Copyright 2012 SMSC THIS SOFTWARE PROVIDED BY STANDARD MICROSYSTEMS CORPORATION`("SMSC")IS SAMPLE diff --git a/src/licensedcode/data/licenses/smsc-non-commercial-2012.yml b/src/licensedcode/data/licenses/smsc-non-commercial-2012.yml deleted file mode 100644 index 788ab7c6b77..00000000000 --- a/src/licensedcode/data/licenses/smsc-non-commercial-2012.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: smsc-non-commercial-2012 -short_name: SMSC Non-Commercial 2012 -name: SMSC Non-Commercial 2012 -category: Proprietary Free -owner: Microchip -spdx_license_key: LicenseRef-scancode-smsc-non-commercial-2012 -ignorable_copyrights: - - Copyright 2012 SMSC -ignorable_holders: - - SMSC diff --git a/src/licensedcode/data/licenses/snapeda-design-exception-1.0.LICENSE b/src/licensedcode/data/licenses/snapeda-design-exception-1.0.LICENSE index b45a76f1d9d..b18f5bd63dc 100644 --- a/src/licensedcode/data/licenses/snapeda-design-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/snapeda-design-exception-1.0.LICENSE @@ -1 +1,16 @@ +--- +key: snapeda-design-exception-1.0 +short_name: SnapEDA Design Exception 1.0 +name: SnapEDA Design Exception 1.0 +category: Permissive +owner: SnapEDA +homepage_url: https://www.snapeda.com/about/terms/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-snapeda-design-exception-1.0 +faq_url: https://support.snapeda.com/en/articles/2957815-what-is-the-design-exception-1-0 +other_urls: + - 'https://support.snapeda.com/en/?q=license ' + - https://support.snapeda.com/en/articles/2957814-what-is-the-license-for-symbols-and-footprints +--- + Design Exception 1.0: You and your sub-licensees are hereby licensed to design, manufacture, use and distribute, circuit board designs and circuit boards formed by combining Design Files provided by SnapEDA with other circuit elements of your choosing. You may then convey such combinations under terms of your choice, and are not required to attribute SnapEDA as the source, even if such actions would otherwise violate the terms of the Creative Commons License. For clarity, any files shared publicly containing Design Files are still subject to the Site License restriction of 5.1.(g) \ No newline at end of file diff --git a/src/licensedcode/data/licenses/snapeda-design-exception-1.0.yml b/src/licensedcode/data/licenses/snapeda-design-exception-1.0.yml deleted file mode 100644 index f7064d44b8d..00000000000 --- a/src/licensedcode/data/licenses/snapeda-design-exception-1.0.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: snapeda-design-exception-1.0 -short_name: SnapEDA Design Exception 1.0 -name: SnapEDA Design Exception 1.0 -category: Permissive -owner: SnapEDA -homepage_url: https://www.snapeda.com/about/terms/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-snapeda-design-exception-1.0 -faq_url: https://support.snapeda.com/en/articles/2957815-what-is-the-design-exception-1-0 -other_urls: - - 'https://support.snapeda.com/en/?q=license ' - - https://support.snapeda.com/en/articles/2957814-what-is-the-license-for-symbols-and-footprints diff --git a/src/licensedcode/data/licenses/snia.LICENSE b/src/licensedcode/data/licenses/snia.LICENSE index 193b1c72489..dbbb63da4e7 100644 --- a/src/licensedcode/data/licenses/snia.LICENSE +++ b/src/licensedcode/data/licenses/snia.LICENSE @@ -1,3 +1,38 @@ +--- +key: snia +short_name: SNIA Public License 1.1 +name: SNIA Public License 1.1 +category: Copyleft +owner: SNIA +homepage_url: https://fedoraproject.org/wiki/Licensing/SNIA_Public_License +notes: | + Per Fedora, MPL 1.1 derived license with a few distinct changes They typoed + the version number in Exhibit A (it says it is 1.0, which confused me at + first, when I came across code using that attribution in its headers but + could not find a 1.0 license text). Section 8.2 (b) has been removed + entirely. The following text block has been removed from Section 11 "With + respect to disputes in which at least one party is a citizen of, or an + entity chartered or registered to do business in the United States of + America, any litigation relating to this License shall be subject to the + jurisdiction of the Federal Courts of the Northern District of California, + with venue lying in Santa Clara County, California, with the losing party + responsible for costs, including without limitation, court costs and + reasonable attorneys' fees and expenses." The following text block has been + removed from Exhibit A "Alternatively, the contents of this file may be + used under the terms of the _____ license (the "[___] License"), in which + case the provisions of [______] License are applicable instead of those + above. If you wish to allow use of your version of this file only under the + terms of the [____] License and not to allow others to use your version of + this file under the MPL, indicate your decision by deleting the provisions + above and replace them with the notice and other provisions required by the + [___] License. If you do not delete the provisions above,a recipient may + use your version of this file under either the MPL or the [___] License. +spdx_license_key: SNIA +ignorable_urls: + - http://www.snia.org/smi/developers/cim/ + - http://www.snia.org/smi/developers/open_source/ +--- + STORAGE NETWORKING INDUSTRY ASSOCIATION PUBLIC LICENSE Version 1.1 diff --git a/src/licensedcode/data/licenses/snia.yml b/src/licensedcode/data/licenses/snia.yml deleted file mode 100644 index 63815936c51..00000000000 --- a/src/licensedcode/data/licenses/snia.yml +++ /dev/null @@ -1,32 +0,0 @@ -key: snia -short_name: SNIA Public License 1.1 -name: SNIA Public License 1.1 -category: Copyleft -owner: SNIA -homepage_url: https://fedoraproject.org/wiki/Licensing/SNIA_Public_License -notes: | - Per Fedora, MPL 1.1 derived license with a few distinct changes They typoed - the version number in Exhibit A (it says it is 1.0, which confused me at - first, when I came across code using that attribution in its headers but - could not find a 1.0 license text). Section 8.2 (b) has been removed - entirely. The following text block has been removed from Section 11 "With - respect to disputes in which at least one party is a citizen of, or an - entity chartered or registered to do business in the United States of - America, any litigation relating to this License shall be subject to the - jurisdiction of the Federal Courts of the Northern District of California, - with venue lying in Santa Clara County, California, with the losing party - responsible for costs, including without limitation, court costs and - reasonable attorneys' fees and expenses." The following text block has been - removed from Exhibit A "Alternatively, the contents of this file may be - used under the terms of the _____ license (the "[___] License"), in which - case the provisions of [______] License are applicable instead of those - above. If you wish to allow use of your version of this file only under the - terms of the [____] License and not to allow others to use your version of - this file under the MPL, indicate your decision by deleting the provisions - above and replace them with the notice and other provisions required by the - [___] License. If you do not delete the provisions above,a recipient may - use your version of this file under either the MPL or the [___] License. -spdx_license_key: SNIA -ignorable_urls: - - http://www.snia.org/smi/developers/cim/ - - http://www.snia.org/smi/developers/open_source/ diff --git a/src/licensedcode/data/licenses/snmp4j-smi.LICENSE b/src/licensedcode/data/licenses/snmp4j-smi.LICENSE index 44feda609ac..fcca2542c92 100644 --- a/src/licensedcode/data/licenses/snmp4j-smi.LICENSE +++ b/src/licensedcode/data/licenses/snmp4j-smi.LICENSE @@ -1,3 +1,19 @@ +--- +key: snmp4j-smi +short_name: SNMP4J-SMI License +name: SNMP4J-SMI License +category: Commercial +owner: SNMP4J +homepage_url: http://www.snmp4j.com/smi/LICENSE.txt +spdx_license_key: LicenseRef-scancode-snmp4j-smi +faq_url: http://www.snmp4j.com/ +other_urls: + - http://www.snmp4j.com/html/buy.html +ignorable_urls: + - http://www.agentpp.com/ + - http://www.snmp4j.org/ +--- + SNMP4J-SMI LICENSE AGREEMENT ============================ diff --git a/src/licensedcode/data/licenses/snmp4j-smi.yml b/src/licensedcode/data/licenses/snmp4j-smi.yml deleted file mode 100644 index c41feb6ff74..00000000000 --- a/src/licensedcode/data/licenses/snmp4j-smi.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: snmp4j-smi -short_name: SNMP4J-SMI License -name: SNMP4J-SMI License -category: Commercial -owner: SNMP4J -homepage_url: http://www.snmp4j.com/smi/LICENSE.txt -spdx_license_key: LicenseRef-scancode-snmp4j-smi -faq_url: http://www.snmp4j.com/ -other_urls: - - http://www.snmp4j.com/html/buy.html -ignorable_urls: - - http://www.agentpp.com/ - - http://www.snmp4j.org/ diff --git a/src/licensedcode/data/licenses/snprintf.LICENSE b/src/licensedcode/data/licenses/snprintf.LICENSE index 76af88df9d6..8bc8cb848bb 100644 --- a/src/licensedcode/data/licenses/snprintf.LICENSE +++ b/src/licensedcode/data/licenses/snprintf.LICENSE @@ -1,2 +1,11 @@ +--- +key: snprintf +short_name: snprintf License +name: snprintf License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-snprintf +--- + It may be used for any purpose as long as this notice remains intact on all source code distributions. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/snprintf.yml b/src/licensedcode/data/licenses/snprintf.yml deleted file mode 100644 index 2ce67225aa3..00000000000 --- a/src/licensedcode/data/licenses/snprintf.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: snprintf -short_name: snprintf License -name: snprintf License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-snprintf diff --git a/src/licensedcode/data/licenses/softerra-ldap-browser-eula.LICENSE b/src/licensedcode/data/licenses/softerra-ldap-browser-eula.LICENSE index 16935d9e654..f6ba59fcbca 100644 --- a/src/licensedcode/data/licenses/softerra-ldap-browser-eula.LICENSE +++ b/src/licensedcode/data/licenses/softerra-ldap-browser-eula.LICENSE @@ -1,3 +1,13 @@ +--- +key: softerra-ldap-browser-eula +short_name: Softerra LDAP Browser EULA +name: Softerra LDAP Browser EULA +category: Proprietary Free +owner: Softerra +homepage_url: http://www.ldapadministrator.com/softerra-ldap-browser.htm +spdx_license_key: LicenseRef-scancode-softerra-ldap-browser-eula +--- + END-USER LICENSE AGREEMENT This end-user software license agreement is a legal agreement ("Agreement") between you ("Licensee") and Softerra, LLC ("Softerra"), which is the owner of the LDAP Browser Software ("Software"). This Agreement specifies the terms and conditions under which Licensee may use the Software. diff --git a/src/licensedcode/data/licenses/softerra-ldap-browser-eula.yml b/src/licensedcode/data/licenses/softerra-ldap-browser-eula.yml deleted file mode 100644 index 496c57df38a..00000000000 --- a/src/licensedcode/data/licenses/softerra-ldap-browser-eula.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: softerra-ldap-browser-eula -short_name: Softerra LDAP Browser EULA -name: Softerra LDAP Browser EULA -category: Proprietary Free -owner: Softerra -homepage_url: http://www.ldapadministrator.com/softerra-ldap-browser.htm -spdx_license_key: LicenseRef-scancode-softerra-ldap-browser-eula diff --git a/src/licensedcode/data/licenses/softfloat-2.0.LICENSE b/src/licensedcode/data/licenses/softfloat-2.0.LICENSE index b2619455e31..29ec16c5fab 100644 --- a/src/licensedcode/data/licenses/softfloat-2.0.LICENSE +++ b/src/licensedcode/data/licenses/softfloat-2.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: softfloat-2.0 +short_name: SoftFloat Legal Notice 2.0 +name: SoftFloat Legal Notice with Prominent Notice +category: Permissive +owner: John R. Hauser +homepage_url: http://www.jhauser.us/arithmetic/SoftFloat.html +notes: this license with extra requirements was used for Softfloat v2 and in the linux kernel. + The newest v3 uses a plain bsd-new license +spdx_license_key: LicenseRef-scancode-softfloat-2.0 +minimum_coverage: 90 +ignorable_authors: + - John R. Hauser +ignorable_urls: + - http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt +--- + SoftFloat Legal Notice Written by John R. Hauser. @@ -23,4 +40,4 @@ AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE. Derivative works are acceptable, even for commercial purposes, so long as (1) they include prominent notice that the work is derivative, and (2) they include prominent notice akin to these three paragraphs for those parts of -this code that are retained. +this code that are retained. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/softfloat-2.0.yml b/src/licensedcode/data/licenses/softfloat-2.0.yml deleted file mode 100644 index 0caf40e4544..00000000000 --- a/src/licensedcode/data/licenses/softfloat-2.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: softfloat-2.0 -short_name: SoftFloat Legal Notice 2.0 -name: SoftFloat Legal Notice with Prominent Notice -category: Permissive -owner: John R. Hauser -homepage_url: http://www.jhauser.us/arithmetic/SoftFloat.html -notes: this license with extra requirements was used for Softfloat v2 and in the linux kernel. - The newest v3 uses a plain bsd-new license -spdx_license_key: LicenseRef-scancode-softfloat-2.0 -minimum_coverage: 90 -ignorable_authors: - - John R. Hauser -ignorable_urls: - - http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt diff --git a/src/licensedcode/data/licenses/softfloat.LICENSE b/src/licensedcode/data/licenses/softfloat.LICENSE index 3e8737f2158..1869ea4e34d 100644 --- a/src/licensedcode/data/licenses/softfloat.LICENSE +++ b/src/licensedcode/data/licenses/softfloat.LICENSE @@ -1,3 +1,17 @@ +--- +key: softfloat +short_name: SoftFloat +name: SoftFloat Legal Notice +category: Permissive +owner: John R. Hauser +homepage_url: http://www.jhauser.us/arithmetic/SoftFloat.html +notes: this original license was used for Softfloat v1. The newest v3 uses a plain bsd-new license +spdx_license_key: LicenseRef-scancode-softfloat +minimum_coverage: 90 +ignorable_authors: + - John R. Hauser +--- + SoftFloat Legal Notice SoftFloat was written by John R. Hauser. diff --git a/src/licensedcode/data/licenses/softfloat.yml b/src/licensedcode/data/licenses/softfloat.yml deleted file mode 100644 index a63852ad2ee..00000000000 --- a/src/licensedcode/data/licenses/softfloat.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: softfloat -short_name: SoftFloat -name: SoftFloat Legal Notice -category: Permissive -owner: John R. Hauser -homepage_url: http://www.jhauser.us/arithmetic/SoftFloat.html -notes: this original license was used for Softfloat v1. The newest v3 uses a plain bsd-new license -spdx_license_key: LicenseRef-scancode-softfloat -minimum_coverage: 90 -ignorable_authors: - - John R. Hauser diff --git a/src/licensedcode/data/licenses/softsurfer.LICENSE b/src/licensedcode/data/licenses/softsurfer.LICENSE index d88f77eeafa..db3b25fcd4a 100644 --- a/src/licensedcode/data/licenses/softsurfer.LICENSE +++ b/src/licensedcode/data/licenses/softsurfer.LICENSE @@ -1,3 +1,15 @@ +--- +key: softsurfer +short_name: softSurfer License +name: softSurfer License +category: Permissive +owner: Dan Sunday +homepage_url: http://geomalgorithms.com/a05-_intersect-1.html#Intersection%20of%202%20Planes +spdx_license_key: LicenseRef-scancode-softsurfer +other_urls: + - http://geomalgorithms.com/index.html +--- + This code may be freely used and modified for any purpose providing that this copyright notice is included with it. Copyright holder makes no warranty for this code, and cannot be held diff --git a/src/licensedcode/data/licenses/softsurfer.yml b/src/licensedcode/data/licenses/softsurfer.yml deleted file mode 100644 index d0c6c3215ba..00000000000 --- a/src/licensedcode/data/licenses/softsurfer.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: softsurfer -short_name: softSurfer License -name: softSurfer License -category: Permissive -owner: Dan Sunday -homepage_url: http://geomalgorithms.com/a05-_intersect-1.html#Intersection%20of%202%20Planes -spdx_license_key: LicenseRef-scancode-softsurfer -other_urls: - - http://geomalgorithms.com/index.html diff --git a/src/licensedcode/data/licenses/solace-software-eula-2020.LICENSE b/src/licensedcode/data/licenses/solace-software-eula-2020.LICENSE index 5eca524295f..e26cb5f3cb6 100644 --- a/src/licensedcode/data/licenses/solace-software-eula-2020.LICENSE +++ b/src/licensedcode/data/licenses/solace-software-eula-2020.LICENSE @@ -1,3 +1,23 @@ +--- +key: solace-software-eula-2020 +short_name: Solace-Software-EULA-2020 +name: Solace-Software-EULA-2020 +category: Proprietary Free +owner: solace +homepage_url: https://solace.com/license-software/ +spdx_license_key: LicenseRef-scancode-solace-software-eula-2020 +text_urls: + - https://solace.com/wp-content/uploads/2019/03/Solace-Software-EULA.pdf +ignorable_urls: + - http://www.bis.doc.gov/ + - http://www.opensource.org/licenses/alphabetical + - http://www.treas.gov/offices/enforcement/ofac + - https://solace.com/support +ignorable_emails: + - support@solace.com + - support@solcae.com +--- + Version: APRIL 1, 2020 SOLACE CORPORATION diff --git a/src/licensedcode/data/licenses/solace-software-eula-2020.yml b/src/licensedcode/data/licenses/solace-software-eula-2020.yml deleted file mode 100644 index 66b3d97f8c0..00000000000 --- a/src/licensedcode/data/licenses/solace-software-eula-2020.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: solace-software-eula-2020 -short_name: Solace-Software-EULA-2020 -name: Solace-Software-EULA-2020 -category: Proprietary Free -owner: solace -homepage_url: https://solace.com/license-software/ -spdx_license_key: LicenseRef-scancode-solace-software-eula-2020 -text_urls: - - https://solace.com/wp-content/uploads/2019/03/Solace-Software-EULA.pdf -ignorable_urls: - - http://www.bis.doc.gov/ - - http://www.opensource.org/licenses/alphabetical - - http://www.treas.gov/offices/enforcement/ofac - - https://solace.com/support -ignorable_emails: - - support@solace.com - - support@solcae.com diff --git a/src/licensedcode/data/licenses/spark-jive.LICENSE b/src/licensedcode/data/licenses/spark-jive.LICENSE index 2c85d27914a..ce6f2767bf1 100644 --- a/src/licensedcode/data/licenses/spark-jive.LICENSE +++ b/src/licensedcode/data/licenses/spark-jive.LICENSE @@ -1,3 +1,14 @@ +--- +key: spark-jive +short_name: Spark Jive License +name: Spark Jive License +category: Proprietary Free +owner: Jive Software +homepage_url: http://download.igniterealtime.org/spark/docs/latest/README.html +spdx_license_key: LicenseRef-scancode-spark-jive +minimum_coverage: 15 +--- + License Agreement This is a legal agreement between You, the User of the Spark application diff --git a/src/licensedcode/data/licenses/spark-jive.yml b/src/licensedcode/data/licenses/spark-jive.yml deleted file mode 100644 index 1ffaf93e5d2..00000000000 --- a/src/licensedcode/data/licenses/spark-jive.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: spark-jive -short_name: Spark Jive License -name: Spark Jive License -category: Proprietary Free -owner: Jive Software -homepage_url: http://download.igniterealtime.org/spark/docs/latest/README.html -spdx_license_key: LicenseRef-scancode-spark-jive -minimum_coverage: 15 diff --git a/src/licensedcode/data/licenses/sparky.LICENSE b/src/licensedcode/data/licenses/sparky.LICENSE index dc9cd77a08d..5602f708cca 100644 --- a/src/licensedcode/data/licenses/sparky.LICENSE +++ b/src/licensedcode/data/licenses/sparky.LICENSE @@ -1,3 +1,21 @@ +--- +key: sparky +short_name: Sparky License +name: Sparky License +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.cgl.ucsf.edu/home/sparky/ +spdx_license_key: LicenseRef-scancode-sparky +text_urls: + - http://www.cgl.ucsf.edu/home/sparky/sparky-license.html +ignorable_copyrights: + - Copyright (c) 2009, The Regents of the University of California +ignorable_holders: + - The Regents of the University of California +ignorable_authors: + - the UCSF Resource +--- + Copyright, License, and Disclaimer The following copyright, license and disclaimer applies to the distributed diff --git a/src/licensedcode/data/licenses/sparky.yml b/src/licensedcode/data/licenses/sparky.yml deleted file mode 100644 index 272087a4f99..00000000000 --- a/src/licensedcode/data/licenses/sparky.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: sparky -short_name: Sparky License -name: Sparky License -category: Permissive -owner: Regents of the University of California -homepage_url: http://www.cgl.ucsf.edu/home/sparky/ -spdx_license_key: LicenseRef-scancode-sparky -text_urls: - - http://www.cgl.ucsf.edu/home/sparky/sparky-license.html -ignorable_copyrights: - - Copyright (c) 2009, The Regents of the University of California -ignorable_holders: - - The Regents of the University of California -ignorable_authors: - - the UCSF Resource diff --git a/src/licensedcode/data/licenses/speechworks-1.1.LICENSE b/src/licensedcode/data/licenses/speechworks-1.1.LICENSE index 0d428619f85..4a829f90bbf 100644 --- a/src/licensedcode/data/licenses/speechworks-1.1.LICENSE +++ b/src/licensedcode/data/licenses/speechworks-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: speechworks-1.1 +short_name: SpeechWorks Public License 1.1 +name: SpeechWorks Public License v1.1 +category: Permissive +owner: Nuance Communications +homepage_url: http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt +spdx_license_key: LicenseRef-scancode-speechworks-1.1 +text_urls: + - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt +other_urls: + - http://en.wikipedia.org/wiki/Nuance_Communications + - http://www.nuance.com/ +ignorable_copyrights: + - Copyright (c) 2000-2001, SpeechWorks International, Inc. +ignorable_holders: + - SpeechWorks International, Inc. +--- + The SpeechWorks Public License - Software, Version 1.1 Copyright (c) 2000-2001, SpeechWorks International, Inc. diff --git a/src/licensedcode/data/licenses/speechworks-1.1.yml b/src/licensedcode/data/licenses/speechworks-1.1.yml deleted file mode 100644 index d3fcd4745d3..00000000000 --- a/src/licensedcode/data/licenses/speechworks-1.1.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: speechworks-1.1 -short_name: SpeechWorks Public License 1.1 -name: SpeechWorks Public License v1.1 -category: Permissive -owner: Nuance Communications -homepage_url: http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt -spdx_license_key: LicenseRef-scancode-speechworks-1.1 -text_urls: - - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt -other_urls: - - http://en.wikipedia.org/wiki/Nuance_Communications - - http://www.nuance.com/ -ignorable_copyrights: - - Copyright (c) 2000-2001, SpeechWorks International, Inc. -ignorable_holders: - - SpeechWorks International, Inc. diff --git a/src/licensedcode/data/licenses/spell-checker-exception-lgpl-2.1-plus.LICENSE b/src/licensedcode/data/licenses/spell-checker-exception-lgpl-2.1-plus.LICENSE index d5ec132ae54..f8f0a961868 100644 --- a/src/licensedcode/data/licenses/spell-checker-exception-lgpl-2.1-plus.LICENSE +++ b/src/licensedcode/data/licenses/spell-checker-exception-lgpl-2.1-plus.LICENSE @@ -1,3 +1,42 @@ +--- +key: spell-checker-exception-lgpl-2.1-plus +short_name: Spell-Checker exception to LGPL 2.1 or later +name: Spell-Checker exception to LGPL 2.1 or later +category: Copyleft Limited +owner: AbiSource +is_exception: yes +spdx_license_key: LicenseRef-scancode-spell-exception-lgpl-2.1-plus +other_spdx_license_keys: + - LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus +text_urls: + - https://github.com/AbiWord/enchant/blob/master/src/enchant.h +other_urls: + - https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + In addition, as a special exception, Dom Lachowicz + gives permission to link the code of this program with + non-LGPL Spelling Provider libraries (eg: a MSFT Office + spell checker backend) and distribute linked combinations including + the two. You must obey the GNU Lesser General Public License in all + respects for all of the code used other than said providers. If you modify + this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to + do so, delete this exception statement from your version. +--- + In addition, as a special exception, Dom Lachowicz gives permission to link the code of this program with non-LGPL Spelling Provider libraries (eg: a MSFT Office diff --git a/src/licensedcode/data/licenses/spell-checker-exception-lgpl-2.1-plus.yml b/src/licensedcode/data/licenses/spell-checker-exception-lgpl-2.1-plus.yml deleted file mode 100644 index d8dc9481961..00000000000 --- a/src/licensedcode/data/licenses/spell-checker-exception-lgpl-2.1-plus.yml +++ /dev/null @@ -1,36 +0,0 @@ -key: spell-checker-exception-lgpl-2.1-plus -short_name: Spell-Checker exception to LGPL 2.1 or later -name: Spell-Checker exception to LGPL 2.1 or later -category: Copyleft Limited -owner: AbiSource -is_exception: yes -spdx_license_key: LicenseRef-scancode-spell-exception-lgpl-2.1-plus -other_spdx_license_keys: - - LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus -text_urls: - - https://github.com/AbiWord/enchant/blob/master/src/enchant.h -other_urls: - - https://github.com/AbiWord/enchant/archive/enchant-1-0-0.tar.gz - - http://www.gnu.org/licenses/lgpl-2.1.txt -standard_notice: | - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the - Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. - In addition, as a special exception, Dom Lachowicz - gives permission to link the code of this program with - non-LGPL Spelling Provider libraries (eg: a MSFT Office - spell checker backend) and distribute linked combinations including - the two. You must obey the GNU Lesser General Public License in all - respects for all of the code used other than said providers. If you modify - this file, you may extend this exception to your version of the - file, but you are not obligated to do so. If you do not wish to - do so, delete this exception statement from your version. diff --git a/src/licensedcode/data/licenses/spl-1.0.LICENSE b/src/licensedcode/data/licenses/spl-1.0.LICENSE index f5ad8d91235..74d48412324 100644 --- a/src/licensedcode/data/licenses/spl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/spl-1.0.LICENSE @@ -1,3 +1,26 @@ +--- +key: spl-1.0 +short_name: SPL 1.0 +name: Sun Public License 1.0 +category: Copyleft Limited +owner: Oracle (Sun) +homepage_url: http://www.netbeans.org/about/legal/spl.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: SPL-1.0 +osi_license_key: SPL-1.0 +text_urls: + - http://java.sun.com/spl.html + - https://fedoraproject.org/wiki/Licensing/Sun_Public_License +osi_url: http://opensource.org/licenses/sunpublic.php +faq_url: http://www.netbeans.org/kb/faqs/license.html +other_urls: + - http://www.gnu.org/licenses/license-list.html#SPL + - http://www.opensource.org/licenses/SPL-1.0 + - https://opensource.org/licenses/SPL-1.0 +ignorable_urls: + - http://www.sun.com/ +--- + 1. Definitions. 1.0.1. "Commercial Use" means distribution or otherwise making the diff --git a/src/licensedcode/data/licenses/spl-1.0.yml b/src/licensedcode/data/licenses/spl-1.0.yml deleted file mode 100644 index 992c02cb47f..00000000000 --- a/src/licensedcode/data/licenses/spl-1.0.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: spl-1.0 -short_name: SPL 1.0 -name: Sun Public License 1.0 -category: Copyleft Limited -owner: Oracle (Sun) -homepage_url: http://www.netbeans.org/about/legal/spl.html -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: SPL-1.0 -osi_license_key: SPL-1.0 -text_urls: - - http://java.sun.com/spl.html - - https://fedoraproject.org/wiki/Licensing/Sun_Public_License -osi_url: http://opensource.org/licenses/sunpublic.php -faq_url: http://www.netbeans.org/kb/faqs/license.html -other_urls: - - http://www.gnu.org/licenses/license-list.html#SPL - - http://www.opensource.org/licenses/SPL-1.0 - - https://opensource.org/licenses/SPL-1.0 -ignorable_urls: - - http://www.sun.com/ diff --git a/src/licensedcode/data/licenses/splunk-3pp-eula.LICENSE b/src/licensedcode/data/licenses/splunk-3pp-eula.LICENSE index edf3c0d9816..c46d073f25e 100644 --- a/src/licensedcode/data/licenses/splunk-3pp-eula.LICENSE +++ b/src/licensedcode/data/licenses/splunk-3pp-eula.LICENSE @@ -1,3 +1,15 @@ +--- +key: splunk-3pp-eula +short_name: Splunk EULA for Third-Party Content +name: Splunk EULA for Third-Party Content +category: Proprietary Free +owner: Splunk +homepage_url: https://d38o4gzaohghws.cloudfront.net/static/misc/eula.html +spdx_license_key: LicenseRef-scancode-splunk-3pp-eula +other_urls: + - https://splunkbase.splunk.com/app/3173/ +--- + End User License Agreement for Third-Party Content READ CAREFULLY: LICENSOR LICENSES THIS PROGRAM, TOOL, PLUG-IN, ADD-ON, APPLICATION, LIBRARY, CONTENT, DATA, SOLUTION, SERVICE OR OTHER ITEM OR MATERIAL (THE "CONTENT") TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS END USER LICENSE AGREEMENT ("AGREEMENT"). diff --git a/src/licensedcode/data/licenses/splunk-3pp-eula.yml b/src/licensedcode/data/licenses/splunk-3pp-eula.yml deleted file mode 100644 index 74441b11ff6..00000000000 --- a/src/licensedcode/data/licenses/splunk-3pp-eula.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: splunk-3pp-eula -short_name: Splunk EULA for Third-Party Content -name: Splunk EULA for Third-Party Content -category: Proprietary Free -owner: Splunk -homepage_url: https://d38o4gzaohghws.cloudfront.net/static/misc/eula.html -spdx_license_key: LicenseRef-scancode-splunk-3pp-eula -other_urls: - - https://splunkbase.splunk.com/app/3173/ diff --git a/src/licensedcode/data/licenses/splunk-mint-tos-2018.LICENSE b/src/licensedcode/data/licenses/splunk-mint-tos-2018.LICENSE index 8fdd52085c1..224f59e8094 100644 --- a/src/licensedcode/data/licenses/splunk-mint-tos-2018.LICENSE +++ b/src/licensedcode/data/licenses/splunk-mint-tos-2018.LICENSE @@ -1,3 +1,21 @@ +--- +key: splunk-mint-tos-2018 +short_name: Splunk MINT TOS 2018 +name: Splunk MINT Terms of Service 2018 +category: Proprietary Free +owner: Splunk +homepage_url: https://www.splunk.com/en_us/legal/terms/splunk-mint-terms-of-service.html +spdx_license_key: LicenseRef-scancode-splunk-mint-tos-2018 +ignorable_urls: + - http://docs.splunk.com/Documentation + - http://splunk.com/goto/splunkcloud_aup + - http://www.splunk.com/r/privacy + - http://www.splunk.com/view/SP-CAAAAAG + - http://www.splunk.com/view/SP-CAAAAAH +ignorable_emails: + - mobilesupport@splunk.com +--- + Splunk MINT Terms of Service Last revised: April 16, 2018 diff --git a/src/licensedcode/data/licenses/splunk-mint-tos-2018.yml b/src/licensedcode/data/licenses/splunk-mint-tos-2018.yml deleted file mode 100644 index 6520d94918f..00000000000 --- a/src/licensedcode/data/licenses/splunk-mint-tos-2018.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: splunk-mint-tos-2018 -short_name: Splunk MINT TOS 2018 -name: Splunk MINT Terms of Service 2018 -category: Proprietary Free -owner: Splunk -homepage_url: https://www.splunk.com/en_us/legal/terms/splunk-mint-terms-of-service.html -spdx_license_key: LicenseRef-scancode-splunk-mint-tos-2018 -ignorable_urls: - - http://docs.splunk.com/Documentation - - http://splunk.com/goto/splunkcloud_aup - - http://www.splunk.com/r/privacy - - http://www.splunk.com/view/SP-CAAAAAG - - http://www.splunk.com/view/SP-CAAAAAH -ignorable_emails: - - mobilesupport@splunk.com diff --git a/src/licensedcode/data/licenses/splunk-sla.LICENSE b/src/licensedcode/data/licenses/splunk-sla.LICENSE index 457119224dc..1188ac70144 100644 --- a/src/licensedcode/data/licenses/splunk-sla.LICENSE +++ b/src/licensedcode/data/licenses/splunk-sla.LICENSE @@ -1,3 +1,22 @@ +--- +key: splunk-sla +short_name: Splunk SLA +name: Splunk Software License Agreement +category: Commercial +owner: Splunk +homepage_url: https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html +spdx_license_key: LicenseRef-scancode-splunk-sla +text_urls: + - https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html +ignorable_urls: + - http://www.splunk.com/en_us/support-and-services/support-programs.html + - https://splunkbase.splunk.com/ + - https://www.splunk.com/en_us/legal/licensed-capacity.html + - https://www.splunk.com/en_us/legal/privacy/privacy-policy.html + - https://www.splunk.com/en_us/legal/professional-services-agreement.html + - https://www.splunk.com/en_us/legal/splunk-software-support-policy.html +--- + SPLUNK SOFTWARE LICENSE AGREEMENT THIS SPLUNK SOFTWARE LICENSE AGREEMENT (“AGREEMENT”) GOVERNS THE LICENSING, INSTALLATION AND USE OF SPLUNK SOFTWARE. BY DOWNLOADING AND/OR INSTALLING SPLUNK SOFTWARE: (a) you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the company, GOVERNMENT, or other entity for which you are acting (for example, as an employee OR GOVERNMENT OFFICIAL) or, if there is no company, GOVERNMENT or other entity for which you are acting, on behalf of yourself as an individual; and (b) you represent and warrant that you have the authority to act on behalf of and bind SUCH company, GOVERNMENT OR OTHER ENTITY (if any). diff --git a/src/licensedcode/data/licenses/splunk-sla.yml b/src/licensedcode/data/licenses/splunk-sla.yml deleted file mode 100644 index 079c04eab12..00000000000 --- a/src/licensedcode/data/licenses/splunk-sla.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: splunk-sla -short_name: Splunk SLA -name: Splunk Software License Agreement -category: Commercial -owner: Splunk -homepage_url: https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html -spdx_license_key: LicenseRef-scancode-splunk-sla -text_urls: - - https://www.splunk.com/en_us/legal/splunk-software-license-agreement.html -ignorable_urls: - - http://www.splunk.com/en_us/support-and-services/support-programs.html - - https://splunkbase.splunk.com/ - - https://www.splunk.com/en_us/legal/licensed-capacity.html - - https://www.splunk.com/en_us/legal/privacy/privacy-policy.html - - https://www.splunk.com/en_us/legal/professional-services-agreement.html - - https://www.splunk.com/en_us/legal/splunk-software-support-policy.html diff --git a/src/licensedcode/data/licenses/square-cla.LICENSE b/src/licensedcode/data/licenses/square-cla.LICENSE index 4eb11cabfd5..03ef57c8d85 100644 --- a/src/licensedcode/data/licenses/square-cla.LICENSE +++ b/src/licensedcode/data/licenses/square-cla.LICENSE @@ -1,3 +1,13 @@ +--- +key: square-cla +short_name: Square CLA +name: Square Inc. Individual Contributor License Agreement +category: Patent License +owner: Square, Inc. +homepage_url: https://docs.google.com/forms/d/e/1FAIpQLSeRVQ35-gq2vdSxD1kdh7CJwRdjmUA0EZ9gRXaWYoUeKPZEQQ/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1 +spdx_license_key: LicenseRef-scancode-square-cla +--- + Square Inc. Individual Contributor License Agreement An Individual Contributor License Agreement (an "Agreement") is required to establish and define the intellectual property license granted in connection with Contributions (defined below) from any person or entity to Square, Inc. (“Square”) for inclusion in any of the products owned or managed by Square (the “Work”). This Agreement is for your protection as well as Square’s. This Agreement does not alter your rights to use your own Contributions for other purposes. By executing this Agreement, you accept and agree to the following terms and conditions for any past, current, or future Contributions submitted to Square. Except for the license granted herein to Square and recipients of software distributed by Square, you reserve all right, title, and interest in and to the Contributions you create. diff --git a/src/licensedcode/data/licenses/square-cla.yml b/src/licensedcode/data/licenses/square-cla.yml deleted file mode 100644 index c633cddacd6..00000000000 --- a/src/licensedcode/data/licenses/square-cla.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: square-cla -short_name: Square CLA -name: Square Inc. Individual Contributor License Agreement -category: Patent License -owner: Square, Inc. -homepage_url: https://docs.google.com/forms/d/e/1FAIpQLSeRVQ35-gq2vdSxD1kdh7CJwRdjmUA0EZ9gRXaWYoUeKPZEQQ/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1 -spdx_license_key: LicenseRef-scancode-square-cla diff --git a/src/licensedcode/data/licenses/squeak.LICENSE b/src/licensedcode/data/licenses/squeak.LICENSE index f344f9100da..ed840cc3efa 100644 --- a/src/licensedcode/data/licenses/squeak.LICENSE +++ b/src/licensedcode/data/licenses/squeak.LICENSE @@ -1,3 +1,15 @@ +--- +key: squeak +short_name: Apple Squeak License +name: Apple Squeak License +category: Proprietary Free +owner: Apple +homepage_url: http://squeak.org/SqueakLicense/ +spdx_license_key: LicenseRef-scancode-squeak +text_urls: + - https://squeak.org/SqueakLicense/ +--- + Apple Computer, Inc. Software License PLEASE READ THIS SOFTWARE LICENSE AGREEMENT "LICENSE" CAREFULLY BEFORE DOWNLOADING THIS SOFTWARE. BY DOWNLOADING THIS SOFTWARE YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, DO NOT DOWNLOAD. diff --git a/src/licensedcode/data/licenses/squeak.yml b/src/licensedcode/data/licenses/squeak.yml deleted file mode 100644 index c2db7053bca..00000000000 --- a/src/licensedcode/data/licenses/squeak.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: squeak -short_name: Apple Squeak License -name: Apple Squeak License -category: Proprietary Free -owner: Apple -homepage_url: http://squeak.org/SqueakLicense/ -spdx_license_key: LicenseRef-scancode-squeak -text_urls: - - https://squeak.org/SqueakLicense/ diff --git a/src/licensedcode/data/licenses/srgb.LICENSE b/src/licensedcode/data/licenses/srgb.LICENSE index 4e9ecbf28ce..f07c4263e70 100644 --- a/src/licensedcode/data/licenses/srgb.LICENSE +++ b/src/licensedcode/data/licenses/srgb.LICENSE @@ -1,3 +1,15 @@ +--- +key: srgb +short_name: sRGB Profile Licensing Agreement +name: sRGB Profile Licensing Agreement +category: Proprietary Free +owner: HP - Hewlett Packard +homepage_url: https://web.archive.org/web/20011024060436/http://www.srgb.com/usingsrgb.html +spdx_license_key: LicenseRef-scancode-srgb +ignorable_authors: + - prior permission. Hewlett-Packard Company +--- + To anyone who acknowledges that the file "sRGB Color Space Profile.icm" is provided "AS IS" WITH NO EXPRESS OR IMPLIED WARRANTY: permission to use, copy and distribute this file for any purpose is hereby diff --git a/src/licensedcode/data/licenses/srgb.yml b/src/licensedcode/data/licenses/srgb.yml deleted file mode 100644 index 2755a39deae..00000000000 --- a/src/licensedcode/data/licenses/srgb.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: srgb -short_name: sRGB Profile Licensing Agreement -name: sRGB Profile Licensing Agreement -category: Proprietary Free -owner: HP - Hewlett Packard -homepage_url: https://web.archive.org/web/20011024060436/http://www.srgb.com/usingsrgb.html -spdx_license_key: LicenseRef-scancode-srgb -ignorable_authors: - - prior permission. Hewlett-Packard Company diff --git a/src/licensedcode/data/licenses/ssleay-windows.LICENSE b/src/licensedcode/data/licenses/ssleay-windows.LICENSE index 910d058b9a3..159bf85d26e 100644 --- a/src/licensedcode/data/licenses/ssleay-windows.LICENSE +++ b/src/licensedcode/data/licenses/ssleay-windows.LICENSE @@ -1,3 +1,27 @@ +--- +key: ssleay-windows +short_name: Original SSLeay License with Windows Clause +name: Original SSLeay License with Windows Clause +category: Permissive +owner: OpenSSL +homepage_url: https://www.openssl.org/source/license.html +spdx_license_key: LicenseRef-scancode-ssleay-windows +text_urls: + - http://www.openssl.org/source/license.html +other_urls: + - http://h71000.www7.hp.com/doc/83final/ba554_90007/apcs02.html +ignorable_copyrights: + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). The implementation was written so as to conform with Netscapes SSL. diff --git a/src/licensedcode/data/licenses/ssleay-windows.yml b/src/licensedcode/data/licenses/ssleay-windows.yml deleted file mode 100644 index eef7f66c435..00000000000 --- a/src/licensedcode/data/licenses/ssleay-windows.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: ssleay-windows -short_name: Original SSLeay License with Windows Clause -name: Original SSLeay License with Windows Clause -category: Permissive -owner: OpenSSL -homepage_url: https://www.openssl.org/source/license.html -spdx_license_key: LicenseRef-scancode-ssleay-windows -text_urls: - - http://www.openssl.org/source/license.html -other_urls: - - http://h71000.www7.hp.com/doc/83final/ba554_90007/apcs02.html -ignorable_copyrights: - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/licenses/ssleay.LICENSE b/src/licensedcode/data/licenses/ssleay.LICENSE index db772ac30b7..9cba41e5b2c 100644 --- a/src/licensedcode/data/licenses/ssleay.LICENSE +++ b/src/licensedcode/data/licenses/ssleay.LICENSE @@ -1,3 +1,24 @@ +--- +key: ssleay +short_name: Original SSLeay License +name: Original SSLeay License +category: Permissive +owner: OpenSSL +homepage_url: http://www.openssl.org/source/license.html +spdx_license_key: LicenseRef-scancode-ssleay +text_urls: + - http://www.openssl.org/source/license.html +ignorable_copyrights: + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). The implementation was written so as to conform with Netscapes SSL. diff --git a/src/licensedcode/data/licenses/ssleay.yml b/src/licensedcode/data/licenses/ssleay.yml deleted file mode 100644 index 44366191c1b..00000000000 --- a/src/licensedcode/data/licenses/ssleay.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: ssleay -short_name: Original SSLeay License -name: Original SSLeay License -category: Permissive -owner: OpenSSL -homepage_url: http://www.openssl.org/source/license.html -spdx_license_key: LicenseRef-scancode-ssleay -text_urls: - - http://www.openssl.org/source/license.html -ignorable_copyrights: - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/licenses/st-bsd-restricted.LICENSE b/src/licensedcode/data/licenses/st-bsd-restricted.LICENSE index 4bd1a7270d0..a553890337c 100755 --- a/src/licensedcode/data/licenses/st-bsd-restricted.LICENSE +++ b/src/licensedcode/data/licenses/st-bsd-restricted.LICENSE @@ -1,3 +1,13 @@ +--- +key: st-bsd-restricted +short_name: STMicro BSD Restricted +name: STMicro BSD Restricted +category: Free Restricted +owner: STMicroelectronics +homepage_url: https://www.st.com/ +spdx_license_key: LicenseRef-scancode-st-bsd-restricted +--- + Redistribution and use in source and binary forms, with or without modification, are permitted, provided that the following conditions are met: @@ -27,4 +37,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/st-bsd-restricted.yml b/src/licensedcode/data/licenses/st-bsd-restricted.yml deleted file mode 100755 index 990c66ea317..00000000000 --- a/src/licensedcode/data/licenses/st-bsd-restricted.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: st-bsd-restricted -short_name: STMicro BSD Restricted -name: STMicro BSD Restricted -category: Free Restricted -owner: STMicroelectronics -homepage_url: https://www.st.com/ -spdx_license_key: LicenseRef-scancode-st-bsd-restricted diff --git a/src/licensedcode/data/licenses/st-mcd-2.0.LICENSE b/src/licensedcode/data/licenses/st-mcd-2.0.LICENSE index 54e11203905..6eda496848f 100755 --- a/src/licensedcode/data/licenses/st-mcd-2.0.LICENSE +++ b/src/licensedcode/data/licenses/st-mcd-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: st-mcd-2.0 +short_name: STMicro Liberty License v2 +name: STMicro Liberty License v2 +category: Proprietary Free +owner: STMicroelectronics +homepage_url: https://www.st.com/software_license_agreement_liberty_v2 +notes: | + We have mess in here + https://www.st.com/software_license_agreement_liberty_v2 does redirect to different licenses over the years. + + Nov 2011 ... Dec 2012 + https://web.archive.org/web/20121208120907/http://www.st.com/internet/com/LEGAL_RESOURCES/LEGAL_AGREEMENT/LICENSE_AGREEMENT/software_license_agreement_liberty_v2.pdf + It carries this note at the bootom "Software License Agreement (Liberty V2) Nov 16 th , 2011" + + 2013 ... Oct 2013 + It now redirects to a new one, same content + http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf + https://web.archive.org/web/20131018182423/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf + + Sep 2014 ... Sep 2015 + Now at a new file name. But same content. + http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 + https://web.archive.org/web/20140923015837/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 + https://web.archive.org/web/20150908060438/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 + + 2015 ... Feb 2018 + This is no longer a PDF but a plain text file and a completly different agreement: + http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt + https://web.archive.org/web/20180207212429/http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt + + Feb 2018 ... May 2019 + https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt + This is the one I used for now as a text. It as has this header "SLA0044 Rev5/February 2018" +spdx_license_key: LicenseRef-scancode-st-mcd-2.0 +text_urls: + - https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt + - https://www.st.com/software_license_agreement_liberty_v2 +other_urls: + - https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/87/0c/3d/ad/0a/ba/44/26/DM00216740/files/DM00216740.pdf/jcr:content/translations/en.DM00216740.pdf +ignorable_urls: + - http://www.opensource.org/ +--- + SLA0044 Rev5/February 2018 BY INSTALLING COPYING, DOWNLOADING, ACCESSING OR OTHERWISE USING THIS SOFTWARE @@ -73,6 +117,4 @@ OF SUCH DAMAGE. 11. EXCEPT AS EXPRESSLY PERMITTED HEREUNDER, NO LICENSE OR OTHER RIGHTS, WHETHER EXPRESS OR IMPLIED, ARE GRANTED UNDER ANY PATENT OR OTHER INTELLECTUAL PROPERTY -RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY. - - +RIGHTS OF STMICROELECTRONICS OR ANY THIRD PARTY. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/st-mcd-2.0.yml b/src/licensedcode/data/licenses/st-mcd-2.0.yml deleted file mode 100755 index 3baf1a82c0f..00000000000 --- a/src/licensedcode/data/licenses/st-mcd-2.0.yml +++ /dev/null @@ -1,41 +0,0 @@ -key: st-mcd-2.0 -short_name: STMicro Liberty License v2 -name: STMicro Liberty License v2 -category: Proprietary Free -owner: STMicroelectronics -homepage_url: https://www.st.com/software_license_agreement_liberty_v2 -notes: | - We have mess in here - https://www.st.com/software_license_agreement_liberty_v2 does redirect to different licenses over the years. - - Nov 2011 ... Dec 2012 - https://web.archive.org/web/20121208120907/http://www.st.com/internet/com/LEGAL_RESOURCES/LEGAL_AGREEMENT/LICENSE_AGREEMENT/software_license_agreement_liberty_v2.pdf - It carries this note at the bootom "Software License Agreement (Liberty V2) Nov 16 th , 2011" - - 2013 ... Oct 2013 - It now redirects to a new one, same content - http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf - https://web.archive.org/web/20131018182423/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_image_v2.pdf - - Sep 2014 ... Sep 2015 - Now at a new file name. But same content. - http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 - https://web.archive.org/web/20140923015837/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 - https://web.archive.org/web/20150908060438/http://www.st.com/st-web-ui/static/active/en/resource/legal/legal_agreement/license_agreement/software_license_agreement_liberty_v2.pdf?sc=software_license_agreement_liberty_v2 - - 2015 ... Feb 2018 - This is no longer a PDF but a plain text file and a completly different agreement: - http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt - https://web.archive.org/web/20180207212429/http://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/de/fc/f7/32/a0/8b/4f/db/ultimate-liberty-v2.txt/files/ultimate-liberty-v2.txt/jcr:content/translations/en.ultimate-liberty-v2.txt - - Feb 2018 ... May 2019 - https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt - This is the one I used for now as a text. It as has this header "SLA0044 Rev5/February 2018" -spdx_license_key: LicenseRef-scancode-st-mcd-2.0 -text_urls: - - https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/59/57/63/12/cf/a6/47/65/SLA0044/files/SLA0044.txt/jcr:content/translations/en.SLA0044.txt - - https://www.st.com/software_license_agreement_liberty_v2 -other_urls: - - https://www.st.com/content/ccc/resource/legal/legal_agreement/license_agreement/group0/87/0c/3d/ad/0a/ba/44/26/DM00216740/files/DM00216740.pdf/jcr:content/translations/en.DM00216740.pdf -ignorable_urls: - - http://www.opensource.org/ diff --git a/src/licensedcode/data/licenses/standard-ml-nj.LICENSE b/src/licensedcode/data/licenses/standard-ml-nj.LICENSE index 7b42e055b56..c22f55d83e5 100644 --- a/src/licensedcode/data/licenses/standard-ml-nj.LICENSE +++ b/src/licensedcode/data/licenses/standard-ml-nj.LICENSE @@ -1,3 +1,32 @@ +--- +key: standard-ml-nj +short_name: Standard ML of New Jersey +name: Standard ML of New Jersey +category: Permissive +owner: Alcatel-Lucent +homepage_url: http://www.smlnj.org//license.html +notes: | + per SPDX.org, SPDX ended up with this license on the license list twice + once as of v1.17 with the short identifier SMLNJ and then added (again) as + of v1.20 with the short identifier StandardML-NJ. The former list entry has + been deprecated. Here, this license is not verbatim the SPDX SMLMJ, but + instead the more generic variant as used in the Java CUP parser generator + that has no specific references to Lucent and Bell Labs and is therefore a + better choice for reuse. +spdx_license_key: SMLNJ +other_spdx_license_keys: + - StandardML-NJ +text_urls: + - http://directory.fsf.org/wiki/License:StandardMLofNJ + - http://www.smlnj.org//license.html + - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Standard_ML_of_New_Jersey_Variant +faq_url: http://www.gnu.org/licenses/license-list.html#StandardMLofNJ +other_urls: + - http://www.gnu.org/licenses/license-list.html#StandardMLofNJ + - http://www2.cs.tum.edu/projects/cup/ + - https://www.smlnj.org/license.html +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/licenses/standard-ml-nj.yml b/src/licensedcode/data/licenses/standard-ml-nj.yml deleted file mode 100644 index 796af24a206..00000000000 --- a/src/licensedcode/data/licenses/standard-ml-nj.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: standard-ml-nj -short_name: Standard ML of New Jersey -name: Standard ML of New Jersey -category: Permissive -owner: Alcatel-Lucent -homepage_url: http://www.smlnj.org//license.html -notes: | - per SPDX.org, SPDX ended up with this license on the license list twice - once as of v1.17 with the short identifier SMLNJ and then added (again) as - of v1.20 with the short identifier StandardML-NJ. The former list entry has - been deprecated. Here, this license is not verbatim the SPDX SMLMJ, but - instead the more generic variant as used in the Java CUP parser generator - that has no specific references to Lucent and Bell Labs and is therefore a - better choice for reuse. -spdx_license_key: SMLNJ -other_spdx_license_keys: - - StandardML-NJ -text_urls: - - http://directory.fsf.org/wiki/License:StandardMLofNJ - - http://www.smlnj.org//license.html - - https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#Standard_ML_of_New_Jersey_Variant -faq_url: http://www.gnu.org/licenses/license-list.html#StandardMLofNJ -other_urls: - - http://www.gnu.org/licenses/license-list.html#StandardMLofNJ - - http://www2.cs.tum.edu/projects/cup/ - - https://www.smlnj.org/license.html diff --git a/src/licensedcode/data/licenses/stanford-mrouted.LICENSE b/src/licensedcode/data/licenses/stanford-mrouted.LICENSE index e2d3b89459f..8bc0cd57ff7 100644 --- a/src/licensedcode/data/licenses/stanford-mrouted.LICENSE +++ b/src/licensedcode/data/licenses/stanford-mrouted.LICENSE @@ -1,3 +1,18 @@ +--- +key: stanford-mrouted +short_name: Stanford mrouted License +name: Stanford mrouted License +category: Copyleft Limited +owner: Stanford University +homepage_url: http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html +spdx_license_key: LicenseRef-scancode-stanford-mrouted +faq_url: http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html +ignorable_copyrights: + - COPYRIGHT 1989 by The Board of Trustees of Leland Stanford Junior University +ignorable_holders: + - The Board of Trustees of Leland Stanford Junior University +--- + The mrouted program is covered by the following license. Use of the mrouted program represents acceptance of these terms and conditions. diff --git a/src/licensedcode/data/licenses/stanford-mrouted.yml b/src/licensedcode/data/licenses/stanford-mrouted.yml deleted file mode 100644 index 6ebafa528f4..00000000000 --- a/src/licensedcode/data/licenses/stanford-mrouted.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: stanford-mrouted -short_name: Stanford mrouted License -name: Stanford mrouted License -category: Copyleft Limited -owner: Stanford University -homepage_url: http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html -spdx_license_key: LicenseRef-scancode-stanford-mrouted -faq_url: http://www.mail-archive.com/debian-legal@lists.debian.org/msg04177.html -ignorable_copyrights: - - COPYRIGHT 1989 by The Board of Trustees of Leland Stanford Junior University -ignorable_holders: - - The Board of Trustees of Leland Stanford Junior University diff --git a/src/licensedcode/data/licenses/stanford-pvrg.LICENSE b/src/licensedcode/data/licenses/stanford-pvrg.LICENSE index 0b7da3528c7..5f6cc0e1f0a 100644 --- a/src/licensedcode/data/licenses/stanford-pvrg.LICENSE +++ b/src/licensedcode/data/licenses/stanford-pvrg.LICENSE @@ -1,3 +1,13 @@ +--- +key: stanford-pvrg +short_name: Stanford PVRG License +name: Stanford PVRG License +category: Permissive +owner: Stanford University +homepage_url: http://marathon.csee.usf.edu/Mammography/JpegInfo.html +spdx_license_key: LicenseRef-scancode-stanford-pvrg +--- + PUBLIC DOMAIN LICENSE: Stanford University Portable Video Research Group. If you use this software, you agree to the following: diff --git a/src/licensedcode/data/licenses/stanford-pvrg.yml b/src/licensedcode/data/licenses/stanford-pvrg.yml deleted file mode 100644 index e5ac2009a6d..00000000000 --- a/src/licensedcode/data/licenses/stanford-pvrg.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: stanford-pvrg -short_name: Stanford PVRG License -name: Stanford PVRG License -category: Permissive -owner: Stanford University -homepage_url: http://marathon.csee.usf.edu/Mammography/JpegInfo.html -spdx_license_key: LicenseRef-scancode-stanford-pvrg diff --git a/src/licensedcode/data/licenses/statewizard.LICENSE b/src/licensedcode/data/licenses/statewizard.LICENSE index d5ea2ac0b5c..6db6a712bd5 100644 --- a/src/licensedcode/data/licenses/statewizard.LICENSE +++ b/src/licensedcode/data/licenses/statewizard.LICENSE @@ -1,3 +1,25 @@ +--- +key: statewizard +short_name: StateWizard License +name: StateWizard License Agreement +category: Copyleft Limited +owner: Unspecified +homepage_url: http://web.archive.org/web/20090319003049/http://www.intelliwizard.com/license.htm +notes: | + This license is a tad complex making references to LGPL, commercial and + something that looks like a BSD license. Later version of the same home + page has references to the GPL instead of the LGPL. The original site is no + longer onlilne. +spdx_license_key: LicenseRef-scancode-statewizard +ignorable_authors: + - the IntelliWizard Project + - the Intelliwizard Project +ignorable_urls: + - http://www.intelliwizard.com/ +ignorable_emails: + - info@intelliwizard.com +--- + Redistribution and use of the StateWizard Engine in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -35,4 +57,4 @@ 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. +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/licenses/statewizard.yml b/src/licensedcode/data/licenses/statewizard.yml deleted file mode 100644 index 5bed1a8e418..00000000000 --- a/src/licensedcode/data/licenses/statewizard.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: statewizard -short_name: StateWizard License -name: StateWizard License Agreement -category: Copyleft Limited -owner: Unspecified -homepage_url: http://web.archive.org/web/20090319003049/http://www.intelliwizard.com/license.htm -notes: | - This license is a tad complex making references to LGPL, commercial and - something that looks like a BSD license. Later version of the same home - page has references to the GPL instead of the LGPL. The original site is no - longer onlilne. -spdx_license_key: LicenseRef-scancode-statewizard -ignorable_authors: - - the IntelliWizard Project - - the Intelliwizard Project -ignorable_urls: - - http://www.intelliwizard.com/ -ignorable_emails: - - info@intelliwizard.com diff --git a/src/licensedcode/data/licenses/stax.LICENSE b/src/licensedcode/data/licenses/stax.LICENSE index 59c4169ad87..1056331dcd2 100644 --- a/src/licensedcode/data/licenses/stax.LICENSE +++ b/src/licensedcode/data/licenses/stax.LICENSE @@ -1,3 +1,19 @@ +--- +key: stax +short_name: Stax License +name: Stax License +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://www.jcp.org/aboutJava/communityprocess/licenses/jsr173/JSR173_Spec_License_Streaming_API_XML-1_3-10_22_13.pdf +spdx_license_key: LicenseRef-scancode-stax +ignorable_copyrights: + - (c) 2002, 2003 BEA Systems, Inc. +ignorable_holders: + - BEA Systems, Inc. +ignorable_urls: + - http://www.bea.com/ +--- + Streaming API for XML (JSR-173) Specification Reference Implementation License Agreement READ THE TERMS OF THIS (THE "AGREEMENT") CAREFULLY BEFORE VIEWING OR USING THE SOFTWARE LICENSED HEREUNDER. BY VIEWING OR USING THE SOFTWARE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO ORIGINAL CONTRIBUTOR, DEFINED HEREIN. diff --git a/src/licensedcode/data/licenses/stax.yml b/src/licensedcode/data/licenses/stax.yml deleted file mode 100644 index 39d692fc7c7..00000000000 --- a/src/licensedcode/data/licenses/stax.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: stax -short_name: Stax License -name: Stax License -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: https://www.jcp.org/aboutJava/communityprocess/licenses/jsr173/JSR173_Spec_License_Streaming_API_XML-1_3-10_22_13.pdf -spdx_license_key: LicenseRef-scancode-stax -ignorable_copyrights: - - (c) 2002, 2003 BEA Systems, Inc. -ignorable_holders: - - BEA Systems, Inc. -ignorable_urls: - - http://www.bea.com/ diff --git a/src/licensedcode/data/licenses/stlport-2000.LICENSE b/src/licensedcode/data/licenses/stlport-2000.LICENSE index 3e6883374a7..351cae991ec 100644 --- a/src/licensedcode/data/licenses/stlport-2000.LICENSE +++ b/src/licensedcode/data/licenses/stlport-2000.LICENSE @@ -1,3 +1,23 @@ +--- +key: stlport-2000 +short_name: STLport License 2000 +name: STLport License 2000 +category: Permissive +owner: STLport Consulting +spdx_license_key: LicenseRef-scancode-stlport-2000 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright 1994 Hewlett-Packard Company + - Copyright 1996,97 Silicon Graphics Computer Systems, Inc. + - Copyright 1997 Moscow Center for SPARC Technology + - Copyright 1999,2000 Boris Fomitchev +ignorable_holders: + - Boris Fomitchev + - Hewlett-Packard Company + - Moscow Center for SPARC Technology + - Silicon Graphics Computer Systems, Inc. +--- + STLport License Agreement Boris Fomitchev grants Licensee a non-exclusive, non-transferable, royalty- free diff --git a/src/licensedcode/data/licenses/stlport-2000.yml b/src/licensedcode/data/licenses/stlport-2000.yml deleted file mode 100644 index e8c780f859d..00000000000 --- a/src/licensedcode/data/licenses/stlport-2000.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: stlport-2000 -short_name: STLport License 2000 -name: STLport License 2000 -category: Permissive -owner: STLport Consulting -spdx_license_key: LicenseRef-scancode-stlport-2000 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright 1994 Hewlett-Packard Company - - Copyright 1996,97 Silicon Graphics Computer Systems, Inc. - - Copyright 1997 Moscow Center for SPARC Technology - - Copyright 1999,2000 Boris Fomitchev -ignorable_holders: - - Boris Fomitchev - - Hewlett-Packard Company - - Moscow Center for SPARC Technology - - Silicon Graphics Computer Systems, Inc. diff --git a/src/licensedcode/data/licenses/stlport-4.5.LICENSE b/src/licensedcode/data/licenses/stlport-4.5.LICENSE index 3e0f2d3d7cd..8607a3c4824 100644 --- a/src/licensedcode/data/licenses/stlport-4.5.LICENSE +++ b/src/licensedcode/data/licenses/stlport-4.5.LICENSE @@ -1,3 +1,13 @@ +--- +key: stlport-4.5 +short_name: STLport License 4.5 +name: STLport License v4.5 +category: Permissive +owner: STLport Consulting +notes: stlport-4.5 and mozilla-gc are mostly the same +spdx_license_key: LicenseRef-scancode-stlport-4.5 +--- + This material is provided "as is", with absolutely no warranty expressed or implied. Any use is at your own risk. diff --git a/src/licensedcode/data/licenses/stlport-4.5.yml b/src/licensedcode/data/licenses/stlport-4.5.yml deleted file mode 100644 index b5f5eb501ed..00000000000 --- a/src/licensedcode/data/licenses/stlport-4.5.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: stlport-4.5 -short_name: STLport License 4.5 -name: STLport License v4.5 -category: Permissive -owner: STLport Consulting -notes: stlport-4.5 and mozilla-gc are mostly the same -spdx_license_key: LicenseRef-scancode-stlport-4.5 diff --git a/src/licensedcode/data/licenses/stmicroelectronics-centrallabs.LICENSE b/src/licensedcode/data/licenses/stmicroelectronics-centrallabs.LICENSE index a0aa8b3a114..32d26c254b0 100644 --- a/src/licensedcode/data/licenses/stmicroelectronics-centrallabs.LICENSE +++ b/src/licensedcode/data/licenses/stmicroelectronics-centrallabs.LICENSE @@ -1,3 +1,15 @@ +--- +key: stmicroelectronics-centrallabs +short_name: STMicroelectronics CentralLabs License +name: STMicroelectronics CentralLabs License +category: Free Restricted +owner: STMicroelectronics +homepage_url: https://github.com/STMicroelectronics-CentralLabs +spdx_license_key: LicenseRef-scancode-stmicroelectronics-centrallabs +text_urls: + - https://github.com/STMicroelectronics-CentralLabs/BlueSTSDK_GUI_iOS/blob/master/LICENSE +--- + The STMicroelectronics corporate logo is a trademark of STMicroelectronics Redistribution and use in source and binary forms, with or without modification, diff --git a/src/licensedcode/data/licenses/stmicroelectronics-centrallabs.yml b/src/licensedcode/data/licenses/stmicroelectronics-centrallabs.yml deleted file mode 100644 index 35533cd11d8..00000000000 --- a/src/licensedcode/data/licenses/stmicroelectronics-centrallabs.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: stmicroelectronics-centrallabs -short_name: STMicroelectronics CentralLabs License -name: STMicroelectronics CentralLabs License -category: Free Restricted -owner: STMicroelectronics -homepage_url: https://github.com/STMicroelectronics-CentralLabs -spdx_license_key: LicenseRef-scancode-stmicroelectronics-centrallabs -text_urls: - - https://github.com/STMicroelectronics-CentralLabs/BlueSTSDK_GUI_iOS/blob/master/LICENSE diff --git a/src/licensedcode/data/licenses/stmicroelectronics-linux-firmware.LICENSE b/src/licensedcode/data/licenses/stmicroelectronics-linux-firmware.LICENSE index 9aeb7e47e61..a6ce363c521 100644 --- a/src/licensedcode/data/licenses/stmicroelectronics-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/stmicroelectronics-linux-firmware.LICENSE @@ -1,3 +1,17 @@ +--- +key: stmicroelectronics-linux-firmware +short_name: STMicroelectronics Linux Firmware License +name: STMicroelectronics Linux Firmware License +category: Proprietary Free +owner: STMicroelectronics +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cw1200 +spdx_license_key: LicenseRef-scancode-stmicro-linux-firmware +other_spdx_license_keys: + - LicenseRef-scancode-stmicroelectronics-linux-firmware +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.tda7706-firmware.txt +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/stmicroelectronics-linux-firmware.yml b/src/licensedcode/data/licenses/stmicroelectronics-linux-firmware.yml deleted file mode 100644 index 380e91171d4..00000000000 --- a/src/licensedcode/data/licenses/stmicroelectronics-linux-firmware.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: stmicroelectronics-linux-firmware -short_name: STMicroelectronics Linux Firmware License -name: STMicroelectronics Linux Firmware License -category: Proprietary Free -owner: STMicroelectronics -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.cw1200 -spdx_license_key: LicenseRef-scancode-stmicro-linux-firmware -other_spdx_license_keys: - - LicenseRef-scancode-stmicroelectronics-linux-firmware -text_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.tda7706-firmware.txt diff --git a/src/licensedcode/data/licenses/stream-benchmark.LICENSE b/src/licensedcode/data/licenses/stream-benchmark.LICENSE index 4539a94b08d..3ad1d781aca 100644 --- a/src/licensedcode/data/licenses/stream-benchmark.LICENSE +++ b/src/licensedcode/data/licenses/stream-benchmark.LICENSE @@ -1,3 +1,21 @@ +--- +key: stream-benchmark +short_name: STREAM Benchmark License +name: STREAM Benchmark License +category: Permissive +owner: STREAM +homepage_url: https://www.cs.virginia.edu/stream/ref.html#runrules +spdx_license_key: LicenseRef-scancode-stream-benchmark +text_urls: + - https://www.cs.virginia.edu/stream/FTP/Code/stream.c +ignorable_copyrights: + - copyright holder, John McCalpin +ignorable_holders: + - John McCalpin +ignorable_urls: + - http://www.cs.virginia.edu/stream/ref.html +--- + License: 1. You are free to use this program and/or to redistribute this program. diff --git a/src/licensedcode/data/licenses/stream-benchmark.yml b/src/licensedcode/data/licenses/stream-benchmark.yml deleted file mode 100644 index f7232586bd5..00000000000 --- a/src/licensedcode/data/licenses/stream-benchmark.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: stream-benchmark -short_name: STREAM Benchmark License -name: STREAM Benchmark License -category: Permissive -owner: STREAM -homepage_url: https://www.cs.virginia.edu/stream/ref.html#runrules -spdx_license_key: LicenseRef-scancode-stream-benchmark -text_urls: - - https://www.cs.virginia.edu/stream/FTP/Code/stream.c -ignorable_copyrights: - - copyright holder, John McCalpin -ignorable_holders: - - John McCalpin -ignorable_urls: - - http://www.cs.virginia.edu/stream/ref.html diff --git a/src/licensedcode/data/licenses/strongswan-exception.LICENSE b/src/licensedcode/data/licenses/strongswan-exception.LICENSE index d5ea3f928ff..10d63a3069c 100644 --- a/src/licensedcode/data/licenses/strongswan-exception.LICENSE +++ b/src/licensedcode/data/licenses/strongswan-exception.LICENSE @@ -1,3 +1,13 @@ +--- +key: strongswan-exception +short_name: strongSwan exception to GPL +name: strongSwan exception to GPL +category: Copyleft +owner: Unspecified +is_exception: yes +spdx_license_key: LicenseRef-scancode-strongswan-exception +--- + Linking strongSwan statically or dynamically with other modules is making a combined work based on strongSwan. Thus, the terms and conditions of the GNU General Public License cover the whole combination. @@ -16,4 +26,4 @@ Note that people who make modified versions of strongSwan are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU General Public License gives permission to release a modified version without this exception; this exception also makes it possible -to release a modified version which carries forward this exception. +to release a modified version which carries forward this exception. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/strongswan-exception.yml b/src/licensedcode/data/licenses/strongswan-exception.yml deleted file mode 100644 index 6afd9e33c57..00000000000 --- a/src/licensedcode/data/licenses/strongswan-exception.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: strongswan-exception -short_name: strongSwan exception to GPL -name: strongSwan exception to GPL -category: Copyleft -owner: Unspecified -is_exception: yes -spdx_license_key: LicenseRef-scancode-strongswan-exception diff --git a/src/licensedcode/data/licenses/stu-nicholls.LICENSE b/src/licensedcode/data/licenses/stu-nicholls.LICENSE index 1d7658981ad..76949f43071 100644 --- a/src/licensedcode/data/licenses/stu-nicholls.LICENSE +++ b/src/licensedcode/data/licenses/stu-nicholls.LICENSE @@ -1,3 +1,20 @@ +--- +key: stu-nicholls +short_name: Stu Nicholls License +name: Stu Nicholls License +category: Permissive +owner: Stu Nicholls +spdx_license_key: LicenseRef-scancode-stu-nicholls +other_urls: + - http://www.stunicholls.com/menu/pro_drop_2.html +ignorable_copyrights: + - Copyright (c) 2005-2007 Stu Nicholls +ignorable_holders: + - Stu Nicholls +ignorable_urls: + - http://www.stunicholls.com/menu/pro_drop_2.html +--- + This copyright notice must be kept untouched in the stylesheet at all times. The original version of this stylesheet and the associated (x)html is available at diff --git a/src/licensedcode/data/licenses/stu-nicholls.yml b/src/licensedcode/data/licenses/stu-nicholls.yml deleted file mode 100644 index fab36f442aa..00000000000 --- a/src/licensedcode/data/licenses/stu-nicholls.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: stu-nicholls -short_name: Stu Nicholls License -name: Stu Nicholls License -category: Permissive -owner: Stu Nicholls -spdx_license_key: LicenseRef-scancode-stu-nicholls -other_urls: - - http://www.stunicholls.com/menu/pro_drop_2.html -ignorable_copyrights: - - Copyright (c) 2005-2007 Stu Nicholls -ignorable_holders: - - Stu Nicholls -ignorable_urls: - - http://www.stunicholls.com/menu/pro_drop_2.html diff --git a/src/licensedcode/data/licenses/subcommander-exception-2.0-plus.LICENSE b/src/licensedcode/data/licenses/subcommander-exception-2.0-plus.LICENSE index 3e57da1ef6e..12130eb7b21 100644 --- a/src/licensedcode/data/licenses/subcommander-exception-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/subcommander-exception-2.0-plus.LICENSE @@ -1,3 +1,40 @@ +--- +key: subcommander-exception-2.0-plus +short_name: Subcommander exception to GPL 2.0 or later +name: Subcommander exception to GPL 2.0 or later +category: Copyleft Limited +owner: Tigris Project +homepage_url: http://subversion.tigris.org/ +is_exception: yes +spdx_license_key: LicenseRef-scancode-subcommander-exception-2.0plus +other_spdx_license_keys: + - LicenseRef-scancode-subcommander-exception-2.0-plus +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + Subcommander 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. + Subcommander 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 Subcommander; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307, + USA. + In addition, as a special exception, the copyright holder + gives permission to link the code of this program with the Qt + library (or with modified versions of Qt that use the same license + as Qt), and distribute linked combinations including the two. You + must obey the GNU General Public License in all respects for all of + the code used other than Qt. If you modify a file to which this + license applies, you may extend this exception to your version of + the file, but you are not obligated to do so. If you do not wish + to do so, delete this exception statement from your version. +--- + In addition, as a special exception, the copyright holder gives permission to link the code of this program with the Qt library (or with modified versions of Qt that use the same license as Qt), and distribute linked combinations @@ -5,4 +42,4 @@ including the two. You must obey the GNU General Public License in all respects for all of the code used other than Qt. If you modify a file to which this license applies, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, delete this -exception statement from your version. +exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/subcommander-exception-2.0-plus.yml b/src/licensedcode/data/licenses/subcommander-exception-2.0-plus.yml deleted file mode 100644 index 8e29f4dfbed..00000000000 --- a/src/licensedcode/data/licenses/subcommander-exception-2.0-plus.yml +++ /dev/null @@ -1,34 +0,0 @@ -key: subcommander-exception-2.0-plus -short_name: Subcommander exception to GPL 2.0 or later -name: Subcommander exception to GPL 2.0 or later -category: Copyleft Limited -owner: Tigris Project -homepage_url: http://subversion.tigris.org/ -is_exception: yes -spdx_license_key: LicenseRef-scancode-subcommander-exception-2.0plus -other_spdx_license_keys: - - LicenseRef-scancode-subcommander-exception-2.0-plus -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - Subcommander 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. - Subcommander 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 Subcommander; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307, - USA. - In addition, as a special exception, the copyright holder - gives permission to link the code of this program with the Qt - library (or with modified versions of Qt that use the same license - as Qt), and distribute linked combinations including the two. You - must obey the GNU General Public License in all respects for all of - the code used other than Qt. If you modify a file to which this - license applies, you may extend this exception to your version of - the file, but you are not obligated to do so. If you do not wish - to do so, delete this exception statement from your version. diff --git a/src/licensedcode/data/licenses/sugarcrm-1.1.3.LICENSE b/src/licensedcode/data/licenses/sugarcrm-1.1.3.LICENSE index 7fe83bad81e..32dd3241c90 100644 --- a/src/licensedcode/data/licenses/sugarcrm-1.1.3.LICENSE +++ b/src/licensedcode/data/licenses/sugarcrm-1.1.3.LICENSE @@ -1,3 +1,26 @@ +--- +key: sugarcrm-1.1.3 +short_name: SugarCRM Public License 1.1.3 +name: SugarCRM Public License v1.1.3 +category: Copyleft +owner: SugarCRM +homepage_url: http://www.sugarcrm.com/crm/SPL +spdx_license_key: SugarCRM-1.1.3 +text_urls: + - http://www.sugarcrm.com/crm/SPL +other_urls: + - http://www.sugarcrm.com/page/sugarcrm-public-license/en +ignorable_copyrights: + - Copyright (c) 2004 SugarCRM, Inc. +ignorable_holders: + - SugarCRM, Inc. +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.sugarcrm.com/ + - http://www.sugarcrm.com/SPL + - http://www.sugarforge.org/ +--- + SUGARCRM PUBLIC LICENSE Version 1.1.3 diff --git a/src/licensedcode/data/licenses/sugarcrm-1.1.3.yml b/src/licensedcode/data/licenses/sugarcrm-1.1.3.yml deleted file mode 100644 index eec926f4f50..00000000000 --- a/src/licensedcode/data/licenses/sugarcrm-1.1.3.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: sugarcrm-1.1.3 -short_name: SugarCRM Public License 1.1.3 -name: SugarCRM Public License v1.1.3 -category: Copyleft -owner: SugarCRM -homepage_url: http://www.sugarcrm.com/crm/SPL -spdx_license_key: SugarCRM-1.1.3 -text_urls: - - http://www.sugarcrm.com/crm/SPL -other_urls: - - http://www.sugarcrm.com/page/sugarcrm-public-license/en -ignorable_copyrights: - - Copyright (c) 2004 SugarCRM, Inc. -ignorable_holders: - - SugarCRM, Inc. -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.sugarcrm.com/ - - http://www.sugarcrm.com/SPL - - http://www.sugarforge.org/ diff --git a/src/licensedcode/data/licenses/sun-bcl-11-06.LICENSE b/src/licensedcode/data/licenses/sun-bcl-11-06.LICENSE index 807e90eacc3..e1180f985f1 100644 --- a/src/licensedcode/data/licenses/sun-bcl-11-06.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-11-06.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-11-06 +short_name: Sun BCL 11 plus 6 +name: Sun BCL 11 plus 6 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-11-06 +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + License Agreement for {ProductName} Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-11-06.yml b/src/licensedcode/data/licenses/sun-bcl-11-06.yml deleted file mode 100644 index 5074b2378bd..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-11-06.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-11-06 -short_name: Sun BCL 11 plus 6 -name: Sun BCL 11 plus 6 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-11-06 -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-11-07.LICENSE b/src/licensedcode/data/licenses/sun-bcl-11-07.LICENSE index 744bc190a54..58ea2c340b6 100644 --- a/src/licensedcode/data/licenses/sun-bcl-11-07.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-11-07.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-11-07 +short_name: Sun BCL 11 plus 7 +name: Sun BCL 11 plus 7 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-11-07 +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-11-07.yml b/src/licensedcode/data/licenses/sun-bcl-11-07.yml deleted file mode 100644 index c44edf1876f..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-11-07.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-11-07 -short_name: Sun BCL 11 plus 7 -name: Sun BCL 11 plus 7 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-11-07 -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-11-08.LICENSE b/src/licensedcode/data/licenses/sun-bcl-11-08.LICENSE index 2e39ce40935..370b7065f2b 100644 --- a/src/licensedcode/data/licenses/sun-bcl-11-08.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-11-08.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-bcl-11-08 +short_name: Sun BCL 11 plus 8 +name: Sun BCL 11 plus 8 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt +spdx_license_key: LicenseRef-scancode-sun-bcl-11-08 +text_urls: + - http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt +ignorable_urls: + - http://www.java.sun.com/jdk/index.html + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-11-08.yml b/src/licensedcode/data/licenses/sun-bcl-11-08.yml deleted file mode 100644 index 1093842f9de..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-11-08.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sun-bcl-11-08 -short_name: Sun BCL 11 plus 8 -name: Sun BCL 11 plus 8 -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt -spdx_license_key: LicenseRef-scancode-sun-bcl-11-08 -text_urls: - - http://download.java.net/media/jai/builds/release/1_1_3/LICENSE-jai.txt -ignorable_urls: - - http://www.java.sun.com/jdk/index.html - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-j2re-1.2.x.LICENSE b/src/licensedcode/data/licenses/sun-bcl-j2re-1.2.x.LICENSE index 94abb16fbbf..5a67e20848c 100644 --- a/src/licensedcode/data/licenses/sun-bcl-j2re-1.2.x.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-j2re-1.2.x.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-j2re-1.2.x +short_name: Sun BCL J2RE 1.2.X +name: Sun BCL J2RE 1.2.X +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.2.x +ignorable_urls: + - http://java.sun.com/trademarks.html +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-j2re-1.2.x.yml b/src/licensedcode/data/licenses/sun-bcl-j2re-1.2.x.yml deleted file mode 100644 index f1acdd162c7..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-j2re-1.2.x.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-j2re-1.2.x -short_name: Sun BCL J2RE 1.2.X -name: Sun BCL J2RE 1.2.X -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.2.x -ignorable_urls: - - http://java.sun.com/trademarks.html diff --git a/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.LICENSE b/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.LICENSE index 61f08019015..0b30bd05784 100644 --- a/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-j2re-1.4.2 +short_name: Sun BCL J2RE 1.4.2 +name: Sun BCL J2RE 1.4.2 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.4.2 +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVATM 2 RUNTIME ENVIRONMENT (J2RE), STANDARD EDITION, VERSION 1.4.2_X SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. diff --git a/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.yml b/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.yml deleted file mode 100644 index 66c6f65a036..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.2.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-j2re-1.4.2 -short_name: Sun BCL J2RE 1.4.2 -name: Sun BCL J2RE 1.4.2 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.4.2 -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.x.LICENSE b/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.x.LICENSE index 4163e03c488..d6b3f4d3091 100644 --- a/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.x.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.x.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-bcl-j2re-1.4.x +short_name: Sun BCL J2RE 1.4.X +name: Sun BCL J2RE 1.4.X +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.4.x +ignorable_urls: + - http://oss.software.ibm.com/icu4j/ + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.x.yml b/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.x.yml deleted file mode 100644 index 15d567fbfd1..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-j2re-1.4.x.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sun-bcl-j2re-1.4.x -short_name: Sun BCL J2RE 1.4.X -name: Sun BCL J2RE 1.4.X -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-1.4.x -ignorable_urls: - - http://oss.software.ibm.com/icu4j/ - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-j2re-5.0.LICENSE b/src/licensedcode/data/licenses/sun-bcl-j2re-5.0.LICENSE index 079c64ef8dd..404af9d0416 100644 --- a/src/licensedcode/data/licenses/sun-bcl-j2re-5.0.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-j2re-5.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: sun-bcl-j2re-5.0 +short_name: Sun BCL J2RE 5.0 +name: Sun BCL J2RE 5.0 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-5.0 +text_urls: + - http://java.sun.com/j2se/1.5.0/jre-1_5_0_06-license.txt +ignorable_urls: + - http://java.com/data + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 PLATFORM STANDARD EDITION RUNTIME ENVIRONMENT 5.0 SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. diff --git a/src/licensedcode/data/licenses/sun-bcl-j2re-5.0.yml b/src/licensedcode/data/licenses/sun-bcl-j2re-5.0.yml deleted file mode 100644 index 61b07cef968..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-j2re-5.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: sun-bcl-j2re-5.0 -short_name: Sun BCL J2RE 5.0 -name: Sun BCL J2RE 5.0 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-j2re-5.0 -text_urls: - - http://java.sun.com/j2se/1.5.0/jre-1_5_0_06-license.txt -ignorable_urls: - - http://java.com/data - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-java-servlet-imp-2.1.1.LICENSE b/src/licensedcode/data/licenses/sun-bcl-java-servlet-imp-2.1.1.LICENSE index 0f3a500731d..100b9c48a8e 100644 --- a/src/licensedcode/data/licenses/sun-bcl-java-servlet-imp-2.1.1.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-java-servlet-imp-2.1.1.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-java-servlet-imp-2.1.1 +short_name: Sun BCL Java Servlet Implementation 2.1.1 +name: Sun BCL Java Servlet Implementation Classes 2.1.1 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1 +ignorable_urls: + - http://java.sun.com/ +--- + Java Servlet Implementation Classes Version 2.1.1 Binary Code License diff --git a/src/licensedcode/data/licenses/sun-bcl-java-servlet-imp-2.1.1.yml b/src/licensedcode/data/licenses/sun-bcl-java-servlet-imp-2.1.1.yml deleted file mode 100644 index c38e045020a..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-java-servlet-imp-2.1.1.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-java-servlet-imp-2.1.1 -short_name: Sun BCL Java Servlet Implementation 2.1.1 -name: Sun BCL Java Servlet Implementation Classes 2.1.1 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1 -ignorable_urls: - - http://java.sun.com/ diff --git a/src/licensedcode/data/licenses/sun-bcl-javahelp.LICENSE b/src/licensedcode/data/licenses/sun-bcl-javahelp.LICENSE index c7bb258bcef..dcb3ae728b7 100644 --- a/src/licensedcode/data/licenses/sun-bcl-javahelp.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-javahelp.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-bcl-javahelp +short_name: Sun BCL JavaHelp +name: Sun BCL JavaHelp +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-javahelp +ignorable_urls: + - http://www.java.sun.com/jdk/index.html + - http://www.sun.com/policies/trademarks +--- + SUN JavaHelp(TM) 2.0 Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-javahelp.yml b/src/licensedcode/data/licenses/sun-bcl-javahelp.yml deleted file mode 100644 index f275a2dd686..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-javahelp.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sun-bcl-javahelp -short_name: Sun BCL JavaHelp -name: Sun BCL JavaHelp -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-javahelp -ignorable_urls: - - http://www.java.sun.com/jdk/index.html - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-jimi-sdk.LICENSE b/src/licensedcode/data/licenses/sun-bcl-jimi-sdk.LICENSE index eb4b84ec209..0f104a2d8c7 100644 --- a/src/licensedcode/data/licenses/sun-bcl-jimi-sdk.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-jimi-sdk.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-jimi-sdk +short_name: Sun BCL JIMI SDK +name: Sun BCL JIMI SDK +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-jimi-sdk +ignorable_urls: + - http://java.sun.com/ +--- + SUN JIMI SDK JIMI SDK Version 2.0 Sun Microsystems, Inc. Please see the file classes/LICENSE_JIMI.txt diff --git a/src/licensedcode/data/licenses/sun-bcl-jimi-sdk.yml b/src/licensedcode/data/licenses/sun-bcl-jimi-sdk.yml deleted file mode 100644 index dc21ef06dc4..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-jimi-sdk.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-jimi-sdk -short_name: Sun BCL JIMI SDK -name: Sun BCL JIMI SDK -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-jimi-sdk -ignorable_urls: - - http://java.sun.com/ diff --git a/src/licensedcode/data/licenses/sun-bcl-jre6.LICENSE b/src/licensedcode/data/licenses/sun-bcl-jre6.LICENSE index 338253bd8d8..15c47210f7e 100644 --- a/src/licensedcode/data/licenses/sun-bcl-jre6.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-jre6.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-bcl-jre6 +short_name: Sun BCL JRE 6 +name: Sun BCL JRE 6 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-jre6 +ignorable_urls: + - http://java.com/data + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 6 SUN MICROSYSTEMS, INC. ("SUN") IS WILLING TO LICENSE THE SOFTWARE IDENTIFIED BELOW TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY DOWNLOADING OR INSTALLING THIS SOFTWARE, YOU ACCEPT THE TERMS OF THE AGREEMENT. INDICATE ACCEPTANCE BY SELECTING THE "ACCEPT" BUTTON AT THE BOTTOM OF THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY ALL THE TERMS, SELECT THE "DECLINE" BUTTON AT THE BOTTOM OF THE AGREEMENT AND THE DOWNLOAD OR INSTALL PROCESS WILL NOT CONTINUE. diff --git a/src/licensedcode/data/licenses/sun-bcl-jre6.yml b/src/licensedcode/data/licenses/sun-bcl-jre6.yml deleted file mode 100644 index 88675e69109..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-jre6.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sun-bcl-jre6 -short_name: Sun BCL JRE 6 -name: Sun BCL JRE 6 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-jre6 -ignorable_urls: - - http://java.com/data - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-jsmq.LICENSE b/src/licensedcode/data/licenses/sun-bcl-jsmq.LICENSE index 83956033f2f..a9601041025 100644 --- a/src/licensedcode/data/licenses/sun-bcl-jsmq.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-jsmq.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-jsmq +short_name: Sun BCL JSMQ +name: Sun BCL JSMQ +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-jsmq +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + SUN Java System Message Queue License Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-jsmq.yml b/src/licensedcode/data/licenses/sun-bcl-jsmq.yml deleted file mode 100644 index e7c4a6778aa..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-jsmq.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-jsmq -short_name: Sun BCL JSMQ -name: Sun BCL JSMQ -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-jsmq -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-opendmk.LICENSE b/src/licensedcode/data/licenses/sun-bcl-opendmk.LICENSE index f399068ea47..4294f44411c 100644 --- a/src/licensedcode/data/licenses/sun-bcl-opendmk.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-opendmk.LICENSE @@ -1,3 +1,13 @@ +--- +key: sun-bcl-opendmk +short_name: Sun BCL OpenDMK +name: Sun BCL OpenDMK +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: https://opendmk.java.net/legal_notices/LICENSE_BINARY.txt +spdx_license_key: LicenseRef-scancode-sun-bcl-opendmk +--- + Binary License for Project OpenDMK Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-opendmk.yml b/src/licensedcode/data/licenses/sun-bcl-opendmk.yml deleted file mode 100644 index 25b788b6f67..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-opendmk.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: sun-bcl-opendmk -short_name: Sun BCL OpenDMK -name: Sun BCL OpenDMK -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: https://opendmk.java.net/legal_notices/LICENSE_BINARY.txt -spdx_license_key: LicenseRef-scancode-sun-bcl-opendmk diff --git a/src/licensedcode/data/licenses/sun-bcl-openjdk.LICENSE b/src/licensedcode/data/licenses/sun-bcl-openjdk.LICENSE index 0843dd4356f..95288339d6e 100644 --- a/src/licensedcode/data/licenses/sun-bcl-openjdk.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-openjdk.LICENSE @@ -1,3 +1,17 @@ +--- +key: sun-bcl-openjdk +short_name: Sun BCL OpenJDK +name: Sun BCL OpenJDK +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://openjdk.java.net/legal/binary-license-2007-08-02.html +notes: | + this is the official old license for the OpenJDK binaries but is rarely + ever seen in practice as Sun/Oracle do not redistribute pre- built binaries + for the OpenJDK. +spdx_license_key: LicenseRef-scancode-sun-bcl-openjdk +--- + Binary License for OpenJDK Sun Microsystems, Inc. Binary Code License Agreement @@ -187,4 +201,4 @@ of the AWT if such modified version is distributed in association with dedicated circuitry in silicon. For purposes of this section, "AWT" means the abstract windowing toolkit class libraries implemented in the OpenJDK Code or any modified version of such abstract windowing toolkit that is -created and distributed by Sun or its licensees. +created and distributed by Sun or its licensees. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sun-bcl-openjdk.yml b/src/licensedcode/data/licenses/sun-bcl-openjdk.yml deleted file mode 100644 index cf2080a6ef0..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-openjdk.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: sun-bcl-openjdk -short_name: Sun BCL OpenJDK -name: Sun BCL OpenJDK -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://openjdk.java.net/legal/binary-license-2007-08-02.html -notes: | - this is the official old license for the OpenJDK binaries but is rarely - ever seen in practice as Sun/Oracle do not redistribute pre- built binaries - for the OpenJDK. -spdx_license_key: LicenseRef-scancode-sun-bcl-openjdk diff --git a/src/licensedcode/data/licenses/sun-bcl-sdk-1.3.LICENSE b/src/licensedcode/data/licenses/sun-bcl-sdk-1.3.LICENSE index 73f8b264d62..1c277d0c38f 100644 --- a/src/licensedcode/data/licenses/sun-bcl-sdk-1.3.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-sdk-1.3.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-sdk-1.3 +short_name: Sun BCL SDK 1.3 +name: Sun BCL SDK 1.3 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-1.3 +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Java 2 Software Development Kit (J2SDK), Standard Edition, Version 1.3.x Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-sdk-1.3.yml b/src/licensedcode/data/licenses/sun-bcl-sdk-1.3.yml deleted file mode 100644 index 7d8087b4bc3..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-sdk-1.3.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-sdk-1.3 -short_name: Sun BCL SDK 1.3 -name: Sun BCL SDK 1.3 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-1.3 -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.LICENSE b/src/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.LICENSE index d2c180945f2..beff823adde 100644 --- a/src/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-bcl-sdk-1.4.2 +short_name: Sun BCL SDK 1.4.2 +name: Sun BCL SDK 1.4.2 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-1.4.2 +ignorable_copyrights: + - Copyright 2003, Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 SOFTWARE DEVELOPMENT KIT (J2SDK), STANDARD EDITION, VERSION 1.4.2_X diff --git a/src/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.yml b/src/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.yml deleted file mode 100644 index f69a8014278..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-sdk-1.4.2.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sun-bcl-sdk-1.4.2 -short_name: Sun BCL SDK 1.4.2 -name: Sun BCL SDK 1.4.2 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-1.4.2 -ignorable_copyrights: - - Copyright 2003, Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-sdk-5.0.LICENSE b/src/licensedcode/data/licenses/sun-bcl-sdk-5.0.LICENSE index 2d1384dab68..09025d40e5d 100644 --- a/src/licensedcode/data/licenses/sun-bcl-sdk-5.0.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-sdk-5.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: sun-bcl-sdk-5.0 +short_name: Sun BCL SDK 5.0 +name: Sun BCL SDK 5.0 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://www.java.com/en/download/license.jsp +spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-5.0 +text_urls: + - http://www.java.com/en/download/license.jsp +ignorable_copyrights: + - Copyright 2004, Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA 2 PLATFORM STANDARD EDITION DEVELOPMENT KIT 5.0 diff --git a/src/licensedcode/data/licenses/sun-bcl-sdk-5.0.yml b/src/licensedcode/data/licenses/sun-bcl-sdk-5.0.yml deleted file mode 100644 index 967fe714644..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-sdk-5.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: sun-bcl-sdk-5.0 -short_name: Sun BCL SDK 5.0 -name: Sun BCL SDK 5.0 -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://www.java.com/en/download/license.jsp -spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-5.0 -text_urls: - - http://www.java.com/en/download/license.jsp -ignorable_copyrights: - - Copyright 2004, Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-sdk-6.0.LICENSE b/src/licensedcode/data/licenses/sun-bcl-sdk-6.0.LICENSE index c588d62f825..d752143cf43 100644 --- a/src/licensedcode/data/licenses/sun-bcl-sdk-6.0.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-sdk-6.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: sun-bcl-sdk-6.0 +short_name: Sun BCL SDK 6.0 +name: Sun BCL SDK 6.0 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-6.0 +ignorable_copyrights: + - Copyright 2006, Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://java.com/data + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVA SE DEVELOPMENT KIT (JDK), VERSION 6 diff --git a/src/licensedcode/data/licenses/sun-bcl-sdk-6.0.yml b/src/licensedcode/data/licenses/sun-bcl-sdk-6.0.yml deleted file mode 100644 index 31be1a9e5ea..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-sdk-6.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: sun-bcl-sdk-6.0 -short_name: Sun BCL SDK 6.0 -name: Sun BCL SDK 6.0 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-sdk-6.0 -ignorable_copyrights: - - Copyright 2006, Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. -ignorable_urls: - - http://java.com/data - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bcl-web-start.LICENSE b/src/licensedcode/data/licenses/sun-bcl-web-start.LICENSE index 3489cd6b113..8a8528df2d0 100644 --- a/src/licensedcode/data/licenses/sun-bcl-web-start.LICENSE +++ b/src/licensedcode/data/licenses/sun-bcl-web-start.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-bcl-web-start +short_name: Sun BCL Web Start +name: Sun BCL Web Start +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bcl-web-start +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + JAVATM WEB START VERSION 1.2.x Sun Microsystems, Inc. Binary Code License Agreement diff --git a/src/licensedcode/data/licenses/sun-bcl-web-start.yml b/src/licensedcode/data/licenses/sun-bcl-web-start.yml deleted file mode 100644 index 16351fdec5d..00000000000 --- a/src/licensedcode/data/licenses/sun-bcl-web-start.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-bcl-web-start -short_name: Sun BCL Web Start -name: Sun BCL Web Start -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bcl-web-start -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-bsd-extra.LICENSE b/src/licensedcode/data/licenses/sun-bsd-extra.LICENSE index 02f15b18fa3..545a181d42a 100644 --- a/src/licensedcode/data/licenses/sun-bsd-extra.LICENSE +++ b/src/licensedcode/data/licenses/sun-bsd-extra.LICENSE @@ -1,3 +1,13 @@ +--- +key: sun-bsd-extra +short_name: Sun BSD-Style with Additional Restrictions +name: Sun BSD-Style with Additional Restrictions +category: Free Restricted +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-bsd-extra +minimum_coverage: 50 +--- + Sun grants you ("Licensee") a non-exclusive, royalty free, license to use, modify and redistribute this software in source and binary code form, provided that diff --git a/src/licensedcode/data/licenses/sun-bsd-extra.yml b/src/licensedcode/data/licenses/sun-bsd-extra.yml deleted file mode 100644 index c9b3ec585f1..00000000000 --- a/src/licensedcode/data/licenses/sun-bsd-extra.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: sun-bsd-extra -short_name: Sun BSD-Style with Additional Restrictions -name: Sun BSD-Style with Additional Restrictions -category: Free Restricted -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-bsd-extra -minimum_coverage: 50 diff --git a/src/licensedcode/data/licenses/sun-bsd-no-nuclear.LICENSE b/src/licensedcode/data/licenses/sun-bsd-no-nuclear.LICENSE index 859af4b9d40..e8a8f72bde6 100644 --- a/src/licensedcode/data/licenses/sun-bsd-no-nuclear.LICENSE +++ b/src/licensedcode/data/licenses/sun-bsd-no-nuclear.LICENSE @@ -1,3 +1,16 @@ +--- +key: sun-bsd-no-nuclear +short_name: Sun BSD-Style with Nuclear Restrictions +name: Sun BSD-Style with Nuclear Restrictions +category: Free Restricted +owner: Oracle (Sun) +spdx_license_key: BSD-3-Clause-No-Nuclear-License +other_urls: + - http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc + - https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/sun-bsd-no-nuclear.yml b/src/licensedcode/data/licenses/sun-bsd-no-nuclear.yml deleted file mode 100644 index ed72c53fc4b..00000000000 --- a/src/licensedcode/data/licenses/sun-bsd-no-nuclear.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: sun-bsd-no-nuclear -short_name: Sun BSD-Style with Nuclear Restrictions -name: Sun BSD-Style with Nuclear Restrictions -category: Free Restricted -owner: Oracle (Sun) -spdx_license_key: BSD-3-Clause-No-Nuclear-License -other_urls: - - http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam=1467140197_43d516ce1776bd08a58235a7785be1cc - - https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/sun-communications-api.LICENSE b/src/licensedcode/data/licenses/sun-communications-api.LICENSE index 400ba4c4213..a183e1e2c52 100644 --- a/src/licensedcode/data/licenses/sun-communications-api.LICENSE +++ b/src/licensedcode/data/licenses/sun-communications-api.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-communications-api +short_name: Sun Communications API +name: Sun Communications API +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-communications-api +ignorable_copyrights: + - Copyright Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://java.sun.com/trademarks.html +--- + Sun Communications API comm.jar Java(TM) Communications API 2.0 Copyright Sun Microsystems, Inc. diff --git a/src/licensedcode/data/licenses/sun-communications-api.yml b/src/licensedcode/data/licenses/sun-communications-api.yml deleted file mode 100644 index 0dc39310856..00000000000 --- a/src/licensedcode/data/licenses/sun-communications-api.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sun-communications-api -short_name: Sun Communications API -name: Sun Communications API -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-communications-api -ignorable_copyrights: - - Copyright Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. -ignorable_urls: - - http://java.sun.com/trademarks.html diff --git a/src/licensedcode/data/licenses/sun-ejb-spec-2.1.LICENSE b/src/licensedcode/data/licenses/sun-ejb-spec-2.1.LICENSE index 0ad550458a6..a9b007a0913 100644 --- a/src/licensedcode/data/licenses/sun-ejb-spec-2.1.LICENSE +++ b/src/licensedcode/data/licenses/sun-ejb-spec-2.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-ejb-spec-2.1 +short_name: Sun EJB Specification 2.1 +name: Sun EJB Specification 2.1 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-ejb-spec-2.1 +minimum_coverage: 30 +ignorable_copyrights: + - Copyright 2003 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, + U.S.A +ignorable_holders: + - Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A +--- + Enterprise JavaBeansTM Specification ("Specification") Version: 2.1 Status: FCS diff --git a/src/licensedcode/data/licenses/sun-ejb-spec-2.1.yml b/src/licensedcode/data/licenses/sun-ejb-spec-2.1.yml deleted file mode 100644 index 64f3ce31efe..00000000000 --- a/src/licensedcode/data/licenses/sun-ejb-spec-2.1.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sun-ejb-spec-2.1 -short_name: Sun EJB Specification 2.1 -name: Sun EJB Specification 2.1 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-ejb-spec-2.1 -minimum_coverage: 30 -ignorable_copyrights: - - Copyright 2003 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, - U.S.A -ignorable_holders: - - Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A diff --git a/src/licensedcode/data/licenses/sun-ejb-spec-3.0.LICENSE b/src/licensedcode/data/licenses/sun-ejb-spec-3.0.LICENSE index 3af9da41e17..3eb3c44305e 100644 --- a/src/licensedcode/data/licenses/sun-ejb-spec-3.0.LICENSE +++ b/src/licensedcode/data/licenses/sun-ejb-spec-3.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: sun-ejb-spec-3.0 +short_name: Sun EJB Specification 3.0 +name: Sun EJB Specification 3.0 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-ejb-spec-3.0 +ignorable_copyrights: + - Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, + U.S.A +ignorable_holders: + - SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A +--- + Specification: JSR-000220 Enterprise JavaBeans v.3.0 ("Specification" Version: 3.0 Status: Final Release @@ -181,4 +195,4 @@ relating to its subject matter during the term of this Agreement. No modification to this Agreement will be binding, unless in writing and signed by an authorized representative of each party. -Rev. April, 2006 Sun/Final/Full +Rev. April, 2006 Sun/Final/Full \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sun-ejb-spec-3.0.yml b/src/licensedcode/data/licenses/sun-ejb-spec-3.0.yml deleted file mode 100644 index 2bbe8457670..00000000000 --- a/src/licensedcode/data/licenses/sun-ejb-spec-3.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: sun-ejb-spec-3.0 -short_name: Sun EJB Specification 3.0 -name: Sun EJB Specification 3.0 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-ejb-spec-3.0 -ignorable_copyrights: - - Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, - U.S.A -ignorable_holders: - - SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A diff --git a/src/licensedcode/data/licenses/sun-entitlement-03-15.LICENSE b/src/licensedcode/data/licenses/sun-entitlement-03-15.LICENSE index 7f83da06599..06bf2469438 100644 --- a/src/licensedcode/data/licenses/sun-entitlement-03-15.LICENSE +++ b/src/licensedcode/data/licenses/sun-entitlement-03-15.LICENSE @@ -1,3 +1,16 @@ +--- +key: sun-entitlement-03-15 +short_name: Sun Entitlement 3 plus 15 +name: Sun Entitlement 3 plus 15 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.java.net/media/jai-imageio/builds/release/1.1/LICENSE-jai_imageio.txt +spdx_license_key: LicenseRef-scancode-sun-entitlement-03-15 +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + License Agreement for {ProductName} Sun Microsystems, Inc. ("Sun") ENTITLEMENT for SOFTWARE diff --git a/src/licensedcode/data/licenses/sun-entitlement-03-15.yml b/src/licensedcode/data/licenses/sun-entitlement-03-15.yml deleted file mode 100644 index 47e62e79bdc..00000000000 --- a/src/licensedcode/data/licenses/sun-entitlement-03-15.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: sun-entitlement-03-15 -short_name: Sun Entitlement 3 plus 15 -name: Sun Entitlement 3 plus 15 -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://download.java.net/media/jai-imageio/builds/release/1.1/LICENSE-jai_imageio.txt -spdx_license_key: LicenseRef-scancode-sun-entitlement-03-15 -ignorable_urls: - - http://www.java.net/ - - http://www.sun.com/service/servicelist diff --git a/src/licensedcode/data/licenses/sun-entitlement-jaf.LICENSE b/src/licensedcode/data/licenses/sun-entitlement-jaf.LICENSE index 153fe2de3f2..6f1a7039130 100644 --- a/src/licensedcode/data/licenses/sun-entitlement-jaf.LICENSE +++ b/src/licensedcode/data/licenses/sun-entitlement-jaf.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-entitlement-jaf +short_name: Sun Entitlement JAF +name: Sun Entitlement JAF +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-entitlement-jaf +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + A. Sun Microsystems, Inc. ("Sun") ENTITLEMENT for SOFTWARE Licensee/Company: Entity receiving Software. diff --git a/src/licensedcode/data/licenses/sun-entitlement-jaf.yml b/src/licensedcode/data/licenses/sun-entitlement-jaf.yml deleted file mode 100644 index 1e529e6bfe1..00000000000 --- a/src/licensedcode/data/licenses/sun-entitlement-jaf.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sun-entitlement-jaf -short_name: Sun Entitlement JAF -name: Sun Entitlement JAF -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-entitlement-jaf -ignorable_urls: - - http://www.java.net/ - - http://www.sun.com/service/servicelist diff --git a/src/licensedcode/data/licenses/sun-glassfish.LICENSE b/src/licensedcode/data/licenses/sun-glassfish.LICENSE index e40cf8ee35b..9a04a33ad4f 100644 --- a/src/licensedcode/data/licenses/sun-glassfish.LICENSE +++ b/src/licensedcode/data/licenses/sun-glassfish.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-glassfish +short_name: Sun GlassFish License +name: Sun GlassFish License +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: https://glassfish.dev.java.net/public/BinariesLicense.html +spdx_license_key: LicenseRef-scancode-sun-glassfish +text_urls: + - https://glassfish.dev.java.net/public/BinariesLicense.html +minimum_coverage: 80 +ignorable_urls: + - http://www.java.net/ +--- + Sun GlassFish License 1. Definitions. diff --git a/src/licensedcode/data/licenses/sun-glassfish.yml b/src/licensedcode/data/licenses/sun-glassfish.yml deleted file mode 100644 index 7fa390e346f..00000000000 --- a/src/licensedcode/data/licenses/sun-glassfish.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sun-glassfish -short_name: Sun GlassFish License -name: Sun GlassFish License -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: https://glassfish.dev.java.net/public/BinariesLicense.html -spdx_license_key: LicenseRef-scancode-sun-glassfish -text_urls: - - https://glassfish.dev.java.net/public/BinariesLicense.html -minimum_coverage: 80 -ignorable_urls: - - http://www.java.net/ diff --git a/src/licensedcode/data/licenses/sun-iiop.LICENSE b/src/licensedcode/data/licenses/sun-iiop.LICENSE index fa53ac97a51..7009736a800 100644 --- a/src/licensedcode/data/licenses/sun-iiop.LICENSE +++ b/src/licensedcode/data/licenses/sun-iiop.LICENSE @@ -1,3 +1,12 @@ +--- +key: sun-iiop +short_name: Sun IIOP License +name: Sun IIOP License +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-iiop +--- + This software product (LICENSED PRODUCT), implementing the Object Management Group's "Internet Inter-ORB Protocol", is protected by copyright and is distributed under the following license restricting its use. Portions of LICENSED PRODUCT may be protected by one or more U.S. or foreign patents, or pending applications. LICENSED PRODUCT is made available for your use provided that you include this license and copyright notice on all media and documentation and the software program in which this product is incorporated in whole or part. @@ -18,4 +27,4 @@ IN NO EVENT WILL SUN OR ANY OF ITS SUBSIDIARIES OR AFFILIATES BE LIABLE FOR ANY Use, duplication, or disclosure by the government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 and FAR 52.227-19. -SunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are trademarks or registered trademarks of Sun Microsystems, Inc. +SunOS, SunSoft, Sun, Solaris, Sun Microsystems and the Sun logo are trademarks or registered trademarks of Sun Microsystems, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sun-iiop.yml b/src/licensedcode/data/licenses/sun-iiop.yml deleted file mode 100644 index bbcb8d29cf2..00000000000 --- a/src/licensedcode/data/licenses/sun-iiop.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: sun-iiop -short_name: Sun IIOP License -name: Sun IIOP License -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-iiop diff --git a/src/licensedcode/data/licenses/sun-java-transaction-api.LICENSE b/src/licensedcode/data/licenses/sun-java-transaction-api.LICENSE index cdb0c348506..21cc0ee5052 100644 --- a/src/licensedcode/data/licenses/sun-java-transaction-api.LICENSE +++ b/src/licensedcode/data/licenses/sun-java-transaction-api.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-java-transaction-api +short_name: Sun Java Transaction API License +name: Sun Java Transaction API License +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download +spdx_license_key: LicenseRef-scancode-sun-java-transaction-api +ignorable_urls: + - http://java.sun.com/trademarks.html +--- + License Agreement SUN MICROSYSTEMS, INC. (``SUN'') IS WILLING TO LICENSE ITS Java Transaction API diff --git a/src/licensedcode/data/licenses/sun-java-transaction-api.yml b/src/licensedcode/data/licenses/sun-java-transaction-api.yml deleted file mode 100644 index e26087dbc11..00000000000 --- a/src/licensedcode/data/licenses/sun-java-transaction-api.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sun-java-transaction-api -short_name: Sun Java Transaction API License -name: Sun Java Transaction API License -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download -spdx_license_key: LicenseRef-scancode-sun-java-transaction-api -ignorable_urls: - - http://java.sun.com/trademarks.html diff --git a/src/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.LICENSE b/src/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.LICENSE index 044e408aa68..2753117ac18 100644 --- a/src/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.LICENSE +++ b/src/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.LICENSE @@ -1,3 +1,17 @@ +--- +key: sun-java-web-services-dev-pack-1.6 +short_name: Sun Java Web Services Developer Pack 1.6 +name: Sun Java Web Services Developer Pack 1.6 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-java-web-services-dev-1.6 +other_spdx_license_keys: + - LicenseRef-scancode-sun-java-web-services-dev-pack-1.6 +ignorable_urls: + - http://www.java.sun.com/jdk/index.html + - http://www.sun.com/policies/trademarks +--- + JAVA WEB SERVICES DEVELOPER PACK, VERSION 1.6 Sun Microsystems Inc. Software License Agreement diff --git a/src/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.yml b/src/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.yml deleted file mode 100644 index 598af1e2c8e..00000000000 --- a/src/licensedcode/data/licenses/sun-java-web-services-dev-pack-1.6.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: sun-java-web-services-dev-pack-1.6 -short_name: Sun Java Web Services Developer Pack 1.6 -name: Sun Java Web Services Developer Pack 1.6 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-java-web-services-dev-1.6 -other_spdx_license_keys: - - LicenseRef-scancode-sun-java-web-services-dev-pack-1.6 -ignorable_urls: - - http://www.java.sun.com/jdk/index.html - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/licenses/sun-javamail.LICENSE b/src/licensedcode/data/licenses/sun-javamail.LICENSE index d39a352338c..ce08407724e 100644 --- a/src/licensedcode/data/licenses/sun-javamail.LICENSE +++ b/src/licensedcode/data/licenses/sun-javamail.LICENSE @@ -1,3 +1,14 @@ +--- +key: sun-javamail +short_name: Sun JavaMail +name: Sun JavaMail +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-javamail +ignorable_urls: + - http://java.sun.com/trademarks.html +--- + Sun JavaMail License Agreement diff --git a/src/licensedcode/data/licenses/sun-javamail.yml b/src/licensedcode/data/licenses/sun-javamail.yml deleted file mode 100644 index 4dd158e2bd4..00000000000 --- a/src/licensedcode/data/licenses/sun-javamail.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: sun-javamail -short_name: Sun JavaMail -name: Sun JavaMail -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-javamail -ignorable_urls: - - http://java.sun.com/trademarks.html diff --git a/src/licensedcode/data/licenses/sun-jsr-spec-04-2006.LICENSE b/src/licensedcode/data/licenses/sun-jsr-spec-04-2006.LICENSE index 15d355356d4..34b29430b22 100644 --- a/src/licensedcode/data/licenses/sun-jsr-spec-04-2006.LICENSE +++ b/src/licensedcode/data/licenses/sun-jsr-spec-04-2006.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-jsr-spec-04-2006 +short_name: Sun JSR Specification 04-2006 +name: Sun JSR Specification License April 2006 +category: Proprietary Free +owner: Oracle (Sun) +notes: a highly similar earlier version was published in January 2006. +spdx_license_key: LicenseRef-scancode-sun-jsr-spec-04-2006 +ignorable_copyrights: + - Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, + U.S.A +ignorable_holders: + - SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A +--- + Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A All rights reserved. diff --git a/src/licensedcode/data/licenses/sun-jsr-spec-04-2006.yml b/src/licensedcode/data/licenses/sun-jsr-spec-04-2006.yml deleted file mode 100644 index e5d8d1ac8cf..00000000000 --- a/src/licensedcode/data/licenses/sun-jsr-spec-04-2006.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sun-jsr-spec-04-2006 -short_name: Sun JSR Specification 04-2006 -name: Sun JSR Specification License April 2006 -category: Proprietary Free -owner: Oracle (Sun) -notes: a highly similar earlier version was published in January 2006. -spdx_license_key: LicenseRef-scancode-sun-jsr-spec-04-2006 -ignorable_copyrights: - - Copyright 2006 SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, - U.S.A -ignorable_holders: - - SUN MICROSYSTEMS, INC. 4150 Network Circle, Santa Clara, California 95054, U.S.A diff --git a/src/licensedcode/data/licenses/sun-jta-spec-1.0.1.LICENSE b/src/licensedcode/data/licenses/sun-jta-spec-1.0.1.LICENSE index b43a014df1b..8e650ec794f 100644 --- a/src/licensedcode/data/licenses/sun-jta-spec-1.0.1.LICENSE +++ b/src/licensedcode/data/licenses/sun-jta-spec-1.0.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: sun-jta-spec-1.0.1 +short_name: Sun JTA Specification License 1.0.1 +name: Sun JTA Specification License v1.0.1 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download +spdx_license_key: LicenseRef-scancode-sun-jta-spec-1.0.1 +ignorable_copyrights: + - Copyright 1997-1999 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California + 94303 U.S.A. +ignorable_holders: + - Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303 U.S.A. +ignorable_urls: + - http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download +--- + Sun JTA Specification License v1.0.1 http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download diff --git a/src/licensedcode/data/licenses/sun-jta-spec-1.0.1.yml b/src/licensedcode/data/licenses/sun-jta-spec-1.0.1.yml deleted file mode 100644 index c5dc4c87ca7..00000000000 --- a/src/licensedcode/data/licenses/sun-jta-spec-1.0.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: sun-jta-spec-1.0.1 -short_name: Sun JTA Specification License 1.0.1 -name: Sun JTA Specification License v1.0.1 -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download -spdx_license_key: LicenseRef-scancode-sun-jta-spec-1.0.1 -ignorable_copyrights: - - Copyright 1997-1999 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California - 94303 U.S.A. -ignorable_holders: - - Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303 U.S.A. -ignorable_urls: - - http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download diff --git a/src/licensedcode/data/licenses/sun-jta-spec-1.0.1b.LICENSE b/src/licensedcode/data/licenses/sun-jta-spec-1.0.1b.LICENSE index 4d73ee5fbca..1d0b224698d 100644 --- a/src/licensedcode/data/licenses/sun-jta-spec-1.0.1b.LICENSE +++ b/src/licensedcode/data/licenses/sun-jta-spec-1.0.1b.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-jta-spec-1.0.1b +short_name: Sun JTA Specification License 1.0.1B +name: Sun JTA Specification License v1.0.1B +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://download.oracle.com/otndocs/jcp/7083-jta-1.0.1B-mr-spec-oth-JSpec/7083-jta-1.0.1B-mr-spec-oth-JSpec-license.html +spdx_license_key: LicenseRef-scancode-sun-jta-spec-1.0.1b +minimum_coverage: 30 +ignorable_copyrights: + - Copyright 2002 Sun Micro systems, Inc. +ignorable_holders: + - Sun Micro systems, Inc. +--- + Java(TM) Transaction API (JTA) Specification ("Specification") Version: 1.0.1B @@ -172,4 +187,4 @@ without limitation the Feedback for any purpose related to the Specification and fut ure versions, implementations, and test suites thereof. -(LFI#121049/Form ID#011801) +(LFI#121049/Form ID#011801) \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sun-jta-spec-1.0.1b.yml b/src/licensedcode/data/licenses/sun-jta-spec-1.0.1b.yml deleted file mode 100644 index 4fb013526a6..00000000000 --- a/src/licensedcode/data/licenses/sun-jta-spec-1.0.1b.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sun-jta-spec-1.0.1b -short_name: Sun JTA Specification License 1.0.1B -name: Sun JTA Specification License v1.0.1B -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://download.oracle.com/otndocs/jcp/7083-jta-1.0.1B-mr-spec-oth-JSpec/7083-jta-1.0.1B-mr-spec-oth-JSpec-license.html -spdx_license_key: LicenseRef-scancode-sun-jta-spec-1.0.1b -minimum_coverage: 30 -ignorable_copyrights: - - Copyright 2002 Sun Micro systems, Inc. -ignorable_holders: - - Sun Micro systems, Inc. diff --git a/src/licensedcode/data/licenses/sun-no-high-risk-activities.LICENSE b/src/licensedcode/data/licenses/sun-no-high-risk-activities.LICENSE index 25f18750483..0273aa840b6 100644 --- a/src/licensedcode/data/licenses/sun-no-high-risk-activities.LICENSE +++ b/src/licensedcode/data/licenses/sun-no-high-risk-activities.LICENSE @@ -1,3 +1,16 @@ +--- +key: sun-no-high-risk-activities +short_name: Sun No High Risk Activities License +name: Sun No High Risk Activities License +category: Free Restricted +owner: Oracle (Sun) +homepage_url: https://web.archive.org/web/20061213092245/http://java.sun.com:80/developer/technicalArticles/Programming/sprintf/PrintfFormat.java +spdx_license_key: LicenseRef-scancode-sun-no-high-risk-activities +ignorable_urls: + - http://java.sun.com/nav/business/index.html + - http://www.sun.com/policies/trademarks/ +--- + Permission to use, copy, modify, and distribute this Software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted. diff --git a/src/licensedcode/data/licenses/sun-no-high-risk-activities.yml b/src/licensedcode/data/licenses/sun-no-high-risk-activities.yml deleted file mode 100644 index 2c0cc8514a3..00000000000 --- a/src/licensedcode/data/licenses/sun-no-high-risk-activities.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: sun-no-high-risk-activities -short_name: Sun No High Risk Activities License -name: Sun No High Risk Activities License -category: Free Restricted -owner: Oracle (Sun) -homepage_url: https://web.archive.org/web/20061213092245/http://java.sun.com:80/developer/technicalArticles/Programming/sprintf/PrintfFormat.java -spdx_license_key: LicenseRef-scancode-sun-no-high-risk-activities -ignorable_urls: - - http://java.sun.com/nav/business/index.html - - http://www.sun.com/policies/trademarks/ diff --git a/src/licensedcode/data/licenses/sun-project-x.LICENSE b/src/licensedcode/data/licenses/sun-project-x.LICENSE index 8ed2e0652df..1ee27d84d1c 100644 --- a/src/licensedcode/data/licenses/sun-project-x.LICENSE +++ b/src/licensedcode/data/licenses/sun-project-x.LICENSE @@ -1,3 +1,12 @@ +--- +key: sun-project-x +short_name: Sun Project X +name: Sun Project X +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-project-x +--- + Java Project X Technology Release 2 Source Software License Agreement 1. LICENSE GRANT (A) Definition of Software diff --git a/src/licensedcode/data/licenses/sun-project-x.yml b/src/licensedcode/data/licenses/sun-project-x.yml deleted file mode 100644 index 25257ebc321..00000000000 --- a/src/licensedcode/data/licenses/sun-project-x.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: sun-project-x -short_name: Sun Project X -name: Sun Project X -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-project-x diff --git a/src/licensedcode/data/licenses/sun-prop-non-commercial.LICENSE b/src/licensedcode/data/licenses/sun-prop-non-commercial.LICENSE index 651cf5e1b1e..5219822fcb3 100644 --- a/src/licensedcode/data/licenses/sun-prop-non-commercial.LICENSE +++ b/src/licensedcode/data/licenses/sun-prop-non-commercial.LICENSE @@ -1,3 +1,12 @@ +--- +key: sun-prop-non-commercial +short_name: Sun Proprietary Non-Commercial License +name: Sun Proprietary Non-Commercial License +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-prop-non-commercial +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL purposes and without fee is hereby granted provided that this copyright notice @@ -14,4 +23,4 @@ THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR -DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. +DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sun-prop-non-commercial.yml b/src/licensedcode/data/licenses/sun-prop-non-commercial.yml deleted file mode 100644 index d094d3de2dc..00000000000 --- a/src/licensedcode/data/licenses/sun-prop-non-commercial.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: sun-prop-non-commercial -short_name: Sun Proprietary Non-Commercial License -name: Sun Proprietary Non-Commercial License -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-prop-non-commercial diff --git a/src/licensedcode/data/licenses/sun-proprietary-jdk.LICENSE b/src/licensedcode/data/licenses/sun-proprietary-jdk.LICENSE index e0dfc26dfc0..1522f6652e2 100644 --- a/src/licensedcode/data/licenses/sun-proprietary-jdk.LICENSE +++ b/src/licensedcode/data/licenses/sun-proprietary-jdk.LICENSE @@ -1 +1,10 @@ +--- +key: sun-proprietary-jdk +short_name: Sun proprietary notice for Java sources +name: Sun proprietary notice for Java sources +is_deprecated: yes +category: Commercial +owner: Oracle Corporation +--- + SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sun-proprietary-jdk.yml b/src/licensedcode/data/licenses/sun-proprietary-jdk.yml deleted file mode 100644 index 89997b711c4..00000000000 --- a/src/licensedcode/data/licenses/sun-proprietary-jdk.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: sun-proprietary-jdk -short_name: Sun proprietary notice for Java sources -name: Sun proprietary notice for Java sources -is_deprecated: yes -category: Commercial -owner: Oracle Corporation diff --git a/src/licensedcode/data/licenses/sun-rpc.LICENSE b/src/licensedcode/data/licenses/sun-rpc.LICENSE index baece515d82..bdad6bc3337 100644 --- a/src/licensedcode/data/licenses/sun-rpc.LICENSE +++ b/src/licensedcode/data/licenses/sun-rpc.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-rpc +short_name: Sun RPC License +name: Sun RPC License +category: Permissive +owner: Oracle (Sun) +homepage_url: http://www.opensource.apple.com/license/sunrpc/ +spdx_license_key: LicenseRef-scancode-sun-rpc +text_urls: + - http://www.opensource.apple.com/license/sunrpc/ +--- + Sun RPC is a product of Sun Microsystems, Inc. and is provided for unrestricted use provided that this legend is included on all tape media and as a part of the software program in whole or part. Users diff --git a/src/licensedcode/data/licenses/sun-rpc.yml b/src/licensedcode/data/licenses/sun-rpc.yml deleted file mode 100644 index cae6ca9ef7b..00000000000 --- a/src/licensedcode/data/licenses/sun-rpc.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sun-rpc -short_name: Sun RPC License -name: Sun RPC License -category: Permissive -owner: Oracle (Sun) -homepage_url: http://www.opensource.apple.com/license/sunrpc/ -spdx_license_key: LicenseRef-scancode-sun-rpc -text_urls: - - http://www.opensource.apple.com/license/sunrpc/ diff --git a/src/licensedcode/data/licenses/sun-sdk-spec-1.1.LICENSE b/src/licensedcode/data/licenses/sun-sdk-spec-1.1.LICENSE index 2f4b2bcd951..fdbf972c60f 100644 --- a/src/licensedcode/data/licenses/sun-sdk-spec-1.1.LICENSE +++ b/src/licensedcode/data/licenses/sun-sdk-spec-1.1.LICENSE @@ -1,3 +1,18 @@ +--- +key: sun-sdk-spec-1.1 +short_name: Sun SDK Specification 1.1 +name: Sun SDK Specification 1.1 +category: Proprietary Free +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-sdk-spec-1.1 +minimum_coverage: 30 +ignorable_copyrights: + - Copyright 2002 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, + U.S.A +ignorable_holders: + - Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A +--- + Java(TM) Development Kit (JDK(TM)) ("Specification") Version: 1.1.8 Status: FCS diff --git a/src/licensedcode/data/licenses/sun-sdk-spec-1.1.yml b/src/licensedcode/data/licenses/sun-sdk-spec-1.1.yml deleted file mode 100644 index 95a76eb964f..00000000000 --- a/src/licensedcode/data/licenses/sun-sdk-spec-1.1.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: sun-sdk-spec-1.1 -short_name: Sun SDK Specification 1.1 -name: Sun SDK Specification 1.1 -category: Proprietary Free -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-sdk-spec-1.1 -minimum_coverage: 30 -ignorable_copyrights: - - Copyright 2002 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, - U.S.A -ignorable_holders: - - Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054, U.S.A diff --git a/src/licensedcode/data/licenses/sun-sissl-1.0.LICENSE b/src/licensedcode/data/licenses/sun-sissl-1.0.LICENSE index 927e605247b..de38d0692d1 100644 --- a/src/licensedcode/data/licenses/sun-sissl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/sun-sissl-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: sun-sissl-1.0 +short_name: Sun Industry Standards Source License 1.0 +name: Sun Industry Standards Source License 1.0 +category: Free Restricted +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sun-sissl-1.0 +ignorable_copyrights: + - Copyright 1998 by Sun Microsystems, Inc +ignorable_holders: + - Sun Microsystems, Inc +--- + Sun Industry Standards Source License 1.0 DEFINITIONS diff --git a/src/licensedcode/data/licenses/sun-sissl-1.0.yml b/src/licensedcode/data/licenses/sun-sissl-1.0.yml deleted file mode 100644 index 313f2c1aa68..00000000000 --- a/src/licensedcode/data/licenses/sun-sissl-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: sun-sissl-1.0 -short_name: Sun Industry Standards Source License 1.0 -name: Sun Industry Standards Source License 1.0 -category: Free Restricted -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sun-sissl-1.0 -ignorable_copyrights: - - Copyright 1998 by Sun Microsystems, Inc -ignorable_holders: - - Sun Microsystems, Inc diff --git a/src/licensedcode/data/licenses/sun-sissl-1.1.LICENSE b/src/licensedcode/data/licenses/sun-sissl-1.1.LICENSE index 6dfa6398fd8..87ca6b2a1ec 100644 --- a/src/licensedcode/data/licenses/sun-sissl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/sun-sissl-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: sun-sissl-1.1 +short_name: Sun Industry Standards Source License 1.1 +name: Sun Industry Standards Source License 1.1 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://www.openoffice.org/licenses/sissl_license.html +spdx_license_key: SISSL +osi_license_key: SISSL +text_urls: + - http://www.openoffice.org/licenses/sissl_license.html +other_urls: + - http://opensource.org/licenses/SISSL + - https://opensource.org/licenses/SISSL +ignorable_urls: + - http://api.openoffice.org/ + - http://xml.openoffice.org/ +--- + Sun Industry Standards Source License - Version 1.1 1.0 DEFINITIONS diff --git a/src/licensedcode/data/licenses/sun-sissl-1.1.yml b/src/licensedcode/data/licenses/sun-sissl-1.1.yml deleted file mode 100644 index 430d1b5463b..00000000000 --- a/src/licensedcode/data/licenses/sun-sissl-1.1.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: sun-sissl-1.1 -short_name: Sun Industry Standards Source License 1.1 -name: Sun Industry Standards Source License 1.1 -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://www.openoffice.org/licenses/sissl_license.html -spdx_license_key: SISSL -osi_license_key: SISSL -text_urls: - - http://www.openoffice.org/licenses/sissl_license.html -other_urls: - - http://opensource.org/licenses/SISSL - - https://opensource.org/licenses/SISSL -ignorable_urls: - - http://api.openoffice.org/ - - http://xml.openoffice.org/ diff --git a/src/licensedcode/data/licenses/sun-sissl-1.2.LICENSE b/src/licensedcode/data/licenses/sun-sissl-1.2.LICENSE index c0a775f7786..89ffc6fe2e4 100644 --- a/src/licensedcode/data/licenses/sun-sissl-1.2.LICENSE +++ b/src/licensedcode/data/licenses/sun-sissl-1.2.LICENSE @@ -1,3 +1,20 @@ +--- +key: sun-sissl-1.2 +short_name: Sun Industry Standards Source License 1.2 +name: Sun Industry Standards Source License 1.2 +category: Proprietary Free +owner: Oracle (Sun) +homepage_url: http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html +spdx_license_key: SISSL-1.2 +text_urls: + - http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2001 Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +--- + SUN INDUSTRY STANDARDS SOURCE LICENSE Version 1.2 diff --git a/src/licensedcode/data/licenses/sun-sissl-1.2.yml b/src/licensedcode/data/licenses/sun-sissl-1.2.yml deleted file mode 100644 index ff06f88ebc3..00000000000 --- a/src/licensedcode/data/licenses/sun-sissl-1.2.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: sun-sissl-1.2 -short_name: Sun Industry Standards Source License 1.2 -name: Sun Industry Standards Source License 1.2 -category: Proprietary Free -owner: Oracle (Sun) -homepage_url: http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html -spdx_license_key: SISSL-1.2 -text_urls: - - http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html -minimum_coverage: 50 -ignorable_copyrights: - - Copyright (c) 2001 Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. diff --git a/src/licensedcode/data/licenses/sun-source.LICENSE b/src/licensedcode/data/licenses/sun-source.LICENSE index 8e2a54e6200..736a746a114 100644 --- a/src/licensedcode/data/licenses/sun-source.LICENSE +++ b/src/licensedcode/data/licenses/sun-source.LICENSE @@ -1,3 +1,20 @@ +--- +key: sun-source +short_name: Sun source code License +name: Sun source code License +category: Permissive +owner: Oracle (Sun) +notes: This license is highly similar to the sun-rpc. It is found in old G711 audio codec code + released by Sun circa 1996 and reused in sox http://sox.sourceforge.net/ and a few oher + places +spdx_license_key: LicenseRef-scancode-sun-source +other_urls: + - http://web.mit.edu/audio/src/build/i386_linux2/sox-11gamma-cb/g711.c + - http://www.speech.kth.se/cost250/refsys/v1.0/src/g711.c + - https://www.ibiblio.org/pub/historic-linux/ftp-archives/sunsite.unc.edu/Sep-29-1996/Incoming/sox-11gamma-cb2.tar.gz + - https://sourceforge.net/p/sox/code/ci/98267de439714fcdff94c9588f34fb8a67df70c1/tree/src/g711.c +--- + This source code is a product of Sun Microsystems, Inc. and is provided for unrestricted use. Users may copy or modify this source code without charge. @@ -20,4 +37,4 @@ Sun has been advised of the possibility of such damages. Sun Microsystems, Inc. 2550 Garcia Avenue -Mountain View, California 94043 +Mountain View, California 94043 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sun-source.yml b/src/licensedcode/data/licenses/sun-source.yml deleted file mode 100644 index 95e0d0a7182..00000000000 --- a/src/licensedcode/data/licenses/sun-source.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: sun-source -short_name: Sun source code License -name: Sun source code License -category: Permissive -owner: Oracle (Sun) -notes: This license is highly similar to the sun-rpc. It is found in old G711 audio codec code - released by Sun circa 1996 and reused in sox http://sox.sourceforge.net/ and a few oher - places -spdx_license_key: LicenseRef-scancode-sun-source -other_urls: - - http://web.mit.edu/audio/src/build/i386_linux2/sox-11gamma-cb/g711.c - - http://www.speech.kth.se/cost250/refsys/v1.0/src/g711.c - - https://www.ibiblio.org/pub/historic-linux/ftp-archives/sunsite.unc.edu/Sep-29-1996/Incoming/sox-11gamma-cb2.tar.gz - - https://sourceforge.net/p/sox/code/ci/98267de439714fcdff94c9588f34fb8a67df70c1/tree/src/g711.c diff --git a/src/licensedcode/data/licenses/sun-ssscfr-1.1.LICENSE b/src/licensedcode/data/licenses/sun-ssscfr-1.1.LICENSE index a29dbe0181c..5a1376ddeaf 100644 --- a/src/licensedcode/data/licenses/sun-ssscfr-1.1.LICENSE +++ b/src/licensedcode/data/licenses/sun-ssscfr-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: sun-ssscfr-1.1 +short_name: Sun Solaris Source Code License 1.1 +name: Sun Solaris Source Code (Foundation Release) License 1.1 +category: Copyleft Limited +owner: Oracle (Sun) +homepage_url: http://www.mibsoftware.com/librock/librock/license/ssscfr.txt +spdx_license_key: LicenseRef-scancode-sun-ssscfr-1.1 +ignorable_urls: + - http://www.sun.com/solaris/source +--- + Sun Solaris Source Code (Foundation Release) License 1.1 READ ALL THE TERMS OF THIS LICENSE CAREFULLY BEFORE ACCEPTING. @@ -388,4 +400,4 @@ Printed Name: Date: SDLC Personal ID: Email Address: -Phone Number: +Phone Number: \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sun-ssscfr-1.1.yml b/src/licensedcode/data/licenses/sun-ssscfr-1.1.yml deleted file mode 100644 index fc9019843ef..00000000000 --- a/src/licensedcode/data/licenses/sun-ssscfr-1.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: sun-ssscfr-1.1 -short_name: Sun Solaris Source Code License 1.1 -name: Sun Solaris Source Code (Foundation Release) License 1.1 -category: Copyleft Limited -owner: Oracle (Sun) -homepage_url: http://www.mibsoftware.com/librock/librock/license/ssscfr.txt -spdx_license_key: LicenseRef-scancode-sun-ssscfr-1.1 -ignorable_urls: - - http://www.sun.com/solaris/source diff --git a/src/licensedcode/data/licenses/sunpro.LICENSE b/src/licensedcode/data/licenses/sunpro.LICENSE index 4bb26755c02..cc50ef8bc26 100644 --- a/src/licensedcode/data/licenses/sunpro.LICENSE +++ b/src/licensedcode/data/licenses/sunpro.LICENSE @@ -1,5 +1,14 @@ +--- +key: sunpro +short_name: SunPro Attribution License +name: SunPro Attribution License +category: Permissive +owner: Oracle (Sun) +spdx_license_key: LicenseRef-scancode-sunpro +--- + Developed at SunPro, a Sun Microsystems, Inc. business. Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice -is preserved. +is preserved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sunpro.yml b/src/licensedcode/data/licenses/sunpro.yml deleted file mode 100644 index 5af8d28e046..00000000000 --- a/src/licensedcode/data/licenses/sunpro.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: sunpro -short_name: SunPro Attribution License -name: SunPro Attribution License -category: Permissive -owner: Oracle (Sun) -spdx_license_key: LicenseRef-scancode-sunpro diff --git a/src/licensedcode/data/licenses/sunsoft.LICENSE b/src/licensedcode/data/licenses/sunsoft.LICENSE index aa2f5180299..7043e314cf6 100644 --- a/src/licensedcode/data/licenses/sunsoft.LICENSE +++ b/src/licensedcode/data/licenses/sunsoft.LICENSE @@ -1,3 +1,13 @@ +--- +key: sunsoft +short_name: Sunsoft License +name: Sunsoft License +category: Permissive +owner: Oracle (Sun) +notes: this is a legacy license that is highly simialr to the sgi-freeb-2.0 license +spdx_license_key: LicenseRef-scancode-sunsoft +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restrict- @@ -21,5 +31,4 @@ OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of SunSoft, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without written -authorization from SunSoft Inc. - +authorization from SunSoft Inc. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/sunsoft.yml b/src/licensedcode/data/licenses/sunsoft.yml deleted file mode 100644 index 33ecd705172..00000000000 --- a/src/licensedcode/data/licenses/sunsoft.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: sunsoft -short_name: Sunsoft License -name: Sunsoft License -category: Permissive -owner: Oracle (Sun) -notes: this is a legacy license that is highly simialr to the sgi-freeb-2.0 license -spdx_license_key: LicenseRef-scancode-sunsoft diff --git a/src/licensedcode/data/licenses/supervisor.LICENSE b/src/licensedcode/data/licenses/supervisor.LICENSE index f3d0ace4710..8142af6feeb 100644 --- a/src/licensedcode/data/licenses/supervisor.LICENSE +++ b/src/licensedcode/data/licenses/supervisor.LICENSE @@ -1,3 +1,36 @@ +--- +key: supervisor +short_name: Supervisor License +name: Supervisor License +category: Permissive +owner: Agendaless Consulting +homepage_url: https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt +notes: composite +spdx_license_key: LicenseRef-scancode-supervisor +other_urls: + - http://eikeon.com/ + - http://www.agendaless.com +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com + - Copyright (c) 2006-2011 Agendaless Consulting and Contributors. (http://www.agendaless.com) + - Copyright (c) 2007 Zope Corporation and Contributors + - Copyright (c) Sam Rushing + - Copyright (c) by Daniel Krech, http://eikeon.com/ +ignorable_holders: + - Agendaless Consulting and Contributors + - Daniel Krech + - Sam Rushing + - Zope Corporation and Contributors +ignorable_authors: + - Sam Rushing +ignorable_urls: + - http://eikeon.com/ + - http://www.agendaless.com/ + - http://www.repoze.org/LICENSE.txt + - https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt +--- + Supervisor License https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt diff --git a/src/licensedcode/data/licenses/supervisor.yml b/src/licensedcode/data/licenses/supervisor.yml deleted file mode 100644 index eca54d1e9db..00000000000 --- a/src/licensedcode/data/licenses/supervisor.yml +++ /dev/null @@ -1,30 +0,0 @@ -key: supervisor -short_name: Supervisor License -name: Supervisor License -category: Permissive -owner: Agendaless Consulting -homepage_url: https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt -notes: composite -spdx_license_key: LicenseRef-scancode-supervisor -other_urls: - - http://eikeon.com/ - - http://www.agendaless.com -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com - - Copyright (c) 2006-2011 Agendaless Consulting and Contributors. (http://www.agendaless.com) - - Copyright (c) 2007 Zope Corporation and Contributors - - Copyright (c) Sam Rushing - - Copyright (c) by Daniel Krech, http://eikeon.com/ -ignorable_holders: - - Agendaless Consulting and Contributors - - Daniel Krech - - Sam Rushing - - Zope Corporation and Contributors -ignorable_authors: - - Sam Rushing -ignorable_urls: - - http://eikeon.com/ - - http://www.agendaless.com/ - - http://www.repoze.org/LICENSE.txt - - https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt diff --git a/src/licensedcode/data/licenses/sustainable-use-1.0.LICENSE b/src/licensedcode/data/licenses/sustainable-use-1.0.LICENSE index 113cf001d41..d739ae57062 100644 --- a/src/licensedcode/data/licenses/sustainable-use-1.0.LICENSE +++ b/src/licensedcode/data/licenses/sustainable-use-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: sustainable-use-1.0 +short_name: Sustainable Use 1.0 +name: Sustainable Use License 1.0 +category: Free Restricted +owner: Fair-code +homepage_url: https://github.com/n8n-io/n8n/blob/master/LICENSE.md +spdx_license_key: LicenseRef-scancode-sustainable-use-1.0 +faq_url: https://faircode.io/#faq +other_urls: + - https://blog.n8n.io/announcing-new-sustainable-use-license/ +--- + # Sustainable Use License Version 1.0 diff --git a/src/licensedcode/data/licenses/sustainable-use-1.0.yml b/src/licensedcode/data/licenses/sustainable-use-1.0.yml deleted file mode 100644 index 322dc7ab764..00000000000 --- a/src/licensedcode/data/licenses/sustainable-use-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: sustainable-use-1.0 -short_name: Sustainable Use 1.0 -name: Sustainable Use License 1.0 -category: Free Restricted -owner: Fair-code -homepage_url: https://github.com/n8n-io/n8n/blob/master/LICENSE.md -spdx_license_key: LicenseRef-scancode-sustainable-use-1.0 -faq_url: https://faircode.io/#faq -other_urls: - - https://blog.n8n.io/announcing-new-sustainable-use-license/ diff --git a/src/licensedcode/data/licenses/svndiff.LICENSE b/src/licensedcode/data/licenses/svndiff.LICENSE index 5b090555a3e..1cf49da5c93 100644 --- a/src/licensedcode/data/licenses/svndiff.LICENSE +++ b/src/licensedcode/data/licenses/svndiff.LICENSE @@ -1,3 +1,13 @@ +--- +key: svndiff +short_name: svndiff License +name: svndiff License +category: Permissive +owner: CollabNet +spdx_license_key: LicenseRef-scancode-svndiff +minimum_coverage: 60 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/svndiff.yml b/src/licensedcode/data/licenses/svndiff.yml deleted file mode 100644 index 3a7cdfd02d2..00000000000 --- a/src/licensedcode/data/licenses/svndiff.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: svndiff -short_name: svndiff License -name: svndiff License -category: Permissive -owner: CollabNet -spdx_license_key: LicenseRef-scancode-svndiff -minimum_coverage: 60 diff --git a/src/licensedcode/data/licenses/swig.LICENSE b/src/licensedcode/data/licenses/swig.LICENSE index f645f014359..bdbcfd5cca1 100644 --- a/src/licensedcode/data/licenses/swig.LICENSE +++ b/src/licensedcode/data/licenses/swig.LICENSE @@ -1,4 +1,21 @@ +--- +key: swig +short_name: SWIG Library License +name: SWIG Library License +category: Permissive +owner: SWIG +homepage_url: http://www.swig.org/ +notes: | + SWIG is itself GPL-licensed. The SWIG library and examples, under the Lib + and Examples top level directories are distributed under the these terms. +spdx_license_key: LicenseRef-scancode-swig +text_urls: + - http://www.swig.org/Release/LICENSE +other_urls: + - http://www.swig.org/Release/COPYRIGHT +--- + You may copy, modify, distribute, and make derivative works based on this software, in source code or object code form, without restriction. If you distribute the software to others, you may do so according to the terms of your -choice. This software is offered as is, without warranty of any kind. +choice. This software is offered as is, without warranty of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/swig.yml b/src/licensedcode/data/licenses/swig.yml deleted file mode 100644 index 51153809eaa..00000000000 --- a/src/licensedcode/data/licenses/swig.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: swig -short_name: SWIG Library License -name: SWIG Library License -category: Permissive -owner: SWIG -homepage_url: http://www.swig.org/ -notes: | - SWIG is itself GPL-licensed. The SWIG library and examples, under the Lib - and Examples top level directories are distributed under the these terms. -spdx_license_key: LicenseRef-scancode-swig -text_urls: - - http://www.swig.org/Release/LICENSE -other_urls: - - http://www.swig.org/Release/COPYRIGHT diff --git a/src/licensedcode/data/licenses/swl.LICENSE b/src/licensedcode/data/licenses/swl.LICENSE index c89a755ffc5..0895304ba93 100644 --- a/src/licensedcode/data/licenses/swl.LICENSE +++ b/src/licensedcode/data/licenses/swl.LICENSE @@ -1,3 +1,23 @@ +--- +key: swl +short_name: Scheme Widget Library (SWL) Software License +name: Scheme Widget Library (SWL) Software License Agreement +category: Permissive +owner: Cadence Research Systems +homepage_url: http://www.scheme.com/download/swl-lic.html +notes: | + Per Fedora, this permissive license is derived from MIT, however, it has + significant rewording and merits being considered as an independent + license. It is Free and GPL-Compatible. A copy of the license text was + taken from http://www.scheme.com/download/swl-lic.html on November 27, + 2012. +spdx_license_key: SWL +text_urls: + - https://fedoraproject.org/wiki/Licensing/SWL +other_urls: + - https://puredata.info/about/pdlicense +--- + The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this notice is included verbatim in any distributions. No written agreement, license, or royalty fee is required for any of the authorized uses. Modifications to this software may be copyrighted by their authors and need not follow the licensing terms described here, provided that the new terms are clearly indicated on the first page of each file where they apply. IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. diff --git a/src/licensedcode/data/licenses/swl.yml b/src/licensedcode/data/licenses/swl.yml deleted file mode 100644 index 410e528c97a..00000000000 --- a/src/licensedcode/data/licenses/swl.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: swl -short_name: Scheme Widget Library (SWL) Software License -name: Scheme Widget Library (SWL) Software License Agreement -category: Permissive -owner: Cadence Research Systems -homepage_url: http://www.scheme.com/download/swl-lic.html -notes: | - Per Fedora, this permissive license is derived from MIT, however, it has - significant rewording and merits being considered as an independent - license. It is Free and GPL-Compatible. A copy of the license text was - taken from http://www.scheme.com/download/swl-lic.html on November 27, - 2012. -spdx_license_key: SWL -text_urls: - - https://fedoraproject.org/wiki/Licensing/SWL -other_urls: - - https://puredata.info/about/pdlicense diff --git a/src/licensedcode/data/licenses/sybase.LICENSE b/src/licensedcode/data/licenses/sybase.LICENSE index 6033e3069ef..c4d296bcd14 100644 --- a/src/licensedcode/data/licenses/sybase.LICENSE +++ b/src/licensedcode/data/licenses/sybase.LICENSE @@ -1,3 +1,27 @@ +--- +key: sybase +short_name: Open Watcom 1.0 +name: Sybase Open Watcom Public License v1.0 +category: Proprietary Free +owner: Sybase, Inc. (an SAP subsidiary) +homepage_url: http://opensource.org/licenses/sybase.php +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: Watcom-1.0 +osi_license_key: Watcom-1.0 +text_urls: + - http://opensource.org/licenses/sybase.php +osi_url: http://opensource.org/licenses/sybase.php +other_urls: + - http://www.opensource.org/licenses/Watcom-1.0 + - https://opensource.org/licenses/Watcom-1.0 +ignorable_copyrights: + - Portions Copyright (c) 1983-2002 Sybase, Inc. +ignorable_holders: + - Sybase, Inc. +ignorable_urls: + - http://www.sybase.com/developer/opensource +--- + USE OF THE SYBASE OPEN WATCOM SOFTWARE DESCRIBED BELOW ("SOFTWARE") IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THE SYBASE OPEN WATCOM PUBLIC LICENSE SET FORTH BELOW ("LICENSE"). YOU MAY NOT USE THE SOFTWARE diff --git a/src/licensedcode/data/licenses/sybase.yml b/src/licensedcode/data/licenses/sybase.yml deleted file mode 100644 index 779f203ca31..00000000000 --- a/src/licensedcode/data/licenses/sybase.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: sybase -short_name: Open Watcom 1.0 -name: Sybase Open Watcom Public License v1.0 -category: Proprietary Free -owner: Sybase, Inc. (an SAP subsidiary) -homepage_url: http://opensource.org/licenses/sybase.php -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: Watcom-1.0 -osi_license_key: Watcom-1.0 -text_urls: - - http://opensource.org/licenses/sybase.php -osi_url: http://opensource.org/licenses/sybase.php -other_urls: - - http://www.opensource.org/licenses/Watcom-1.0 - - https://opensource.org/licenses/Watcom-1.0 -ignorable_copyrights: - - Portions Copyright (c) 1983-2002 Sybase, Inc. -ignorable_holders: - - Sybase, Inc. -ignorable_urls: - - http://www.sybase.com/developer/opensource diff --git a/src/licensedcode/data/licenses/symphonysoft.LICENSE b/src/licensedcode/data/licenses/symphonysoft.LICENSE index 6f92c8d19dd..036f69537e7 100644 --- a/src/licensedcode/data/licenses/symphonysoft.LICENSE +++ b/src/licensedcode/data/licenses/symphonysoft.LICENSE @@ -1,3 +1,19 @@ +--- +key: symphonysoft +short_name: Symphonysoft +name: Symphonysoft License +category: Permissive +owner: Symphonysoft +notes: Symphonesoft was a predecessor to Mulesoft. This is similar to the Apache 1.0. +spdx_license_key: LicenseRef-scancode-symphonysoft +text_urls: + - https://github.com/codehaus/mule-git/blob/master/tags/mule-1.0/LICENSE.txt +ignorable_authors: + - SymphonySoft Limited (http://www.symphonysoft.com) +ignorable_urls: + - http://www.symphonysoft.com/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -32,4 +48,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE \ No newline at end of file diff --git a/src/licensedcode/data/licenses/symphonysoft.yml b/src/licensedcode/data/licenses/symphonysoft.yml deleted file mode 100644 index e030955c1c5..00000000000 --- a/src/licensedcode/data/licenses/symphonysoft.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: symphonysoft -short_name: Symphonysoft -name: Symphonysoft License -category: Permissive -owner: Symphonysoft -notes: Symphonesoft was a predecessor to Mulesoft. This is similar to the Apache 1.0. -spdx_license_key: LicenseRef-scancode-symphonysoft -text_urls: - - https://github.com/codehaus/mule-git/blob/master/tags/mule-1.0/LICENSE.txt -ignorable_authors: - - SymphonySoft Limited (http://www.symphonysoft.com) -ignorable_urls: - - http://www.symphonysoft.com/ diff --git a/src/licensedcode/data/licenses/synopsys-attribution.LICENSE b/src/licensedcode/data/licenses/synopsys-attribution.LICENSE index 92b70a43fb4..1e2005e9d04 100644 --- a/src/licensedcode/data/licenses/synopsys-attribution.LICENSE +++ b/src/licensedcode/data/licenses/synopsys-attribution.LICENSE @@ -1,3 +1,12 @@ +--- +key: synopsys-attribution +short_name: Synopsys Attribution License +name: Synopsys Attribution License +category: Free Restricted +owner: Synopsys +spdx_license_key: LicenseRef-scancode-synopsys-attribution +--- + Synopsys HS OTG Linux Software Driver and documentation (hereinafter, "Software") is an Unsupported proprietary work of Synopsys, Inc. unless otherwise expressly agreed to in writing between Synopsys and you. diff --git a/src/licensedcode/data/licenses/synopsys-attribution.yml b/src/licensedcode/data/licenses/synopsys-attribution.yml deleted file mode 100644 index 0b0b45b54e2..00000000000 --- a/src/licensedcode/data/licenses/synopsys-attribution.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: synopsys-attribution -short_name: Synopsys Attribution License -name: Synopsys Attribution License -category: Free Restricted -owner: Synopsys -spdx_license_key: LicenseRef-scancode-synopsys-attribution diff --git a/src/licensedcode/data/licenses/synopsys-mit.LICENSE b/src/licensedcode/data/licenses/synopsys-mit.LICENSE index 083e3e6d4a6..72c9b1b8b9e 100644 --- a/src/licensedcode/data/licenses/synopsys-mit.LICENSE +++ b/src/licensedcode/data/licenses/synopsys-mit.LICENSE @@ -1,3 +1,13 @@ +--- +key: synopsys-mit +short_name: Synopsys MIT License +name: Synopsys MIT License +category: Permissive +owner: Synopsys +spdx_license_key: LicenseRef-scancode-synopsys-mit +minimum_coverage: 80 +--- + The Synopsys DWC ETHER QOS Software Driver and documentation (hereinafter "Software") is an unsupported proprietary work of Synopsys, Inc. unless otherwise expressly agreed to in writing between Synopsys and you. @@ -25,4 +35,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/synopsys-mit.yml b/src/licensedcode/data/licenses/synopsys-mit.yml deleted file mode 100644 index d76535492c9..00000000000 --- a/src/licensedcode/data/licenses/synopsys-mit.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: synopsys-mit -short_name: Synopsys MIT License -name: Synopsys MIT License -category: Permissive -owner: Synopsys -spdx_license_key: LicenseRef-scancode-synopsys-mit -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/syntext-serna-exception-1.0.LICENSE b/src/licensedcode/data/licenses/syntext-serna-exception-1.0.LICENSE index 94e8745aae4..2124fe43fc5 100644 --- a/src/licensedcode/data/licenses/syntext-serna-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/syntext-serna-exception-1.0.LICENSE @@ -1,3 +1,111 @@ +--- +key: syntext-serna-exception-1.0 +short_name: Syntext Serna exception to GPL 2.0 or GPL 3.0 +name: Syntext Serna exception to GPL 2.0 or GPL 3.0 +category: Copyleft Limited +owner: Syntext +homepage_url: https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt +is_exception: yes +spdx_license_key: LicenseRef-scancode-syntext-serna-exception-1.0 +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/gpl-3.0.txt +standard_notice: | + Syntext, Inc. GPL License Exception for Syntext Serna Free Edition + Version 1.0 + Additional rights granted beyond the GPL (the "Exception"). + As a special exception to the terms and conditions of GPL version 2.0 + or GPL version 3.0, Syntext, Inc. hereby grants you the rights described + below, + provided you agree to the terms and conditions in this Exception, including + its + obligations and restrictions on use. + Nothing in this Exception gives you or anyone else the right to change the + licensing terms of the Syntext Serna Free Editon. + 1) Definitions + "FOSS Application" means a free and open source software application + distributed subject to a license listed in the section below titled + "FOSS License List." + "Licensed Software" shall refer to the software licensed under the GPL + version 2.0 or GPL version 3.0 and this exception. + "Derivative Work" means a derivative work, as defined under applicable + copyright law, formed entirely from the Licensed Software and one or more + FOSS + Applications. + "Independent Work" means portions of the Derivative Work that are not + derived + from the Licensed Software and can reasonably be considered independent and + separate works. + 2) The right to use open source licenses not compatible with the GNU + General + Public License version 2.0 or GNU General Public License version 3.0: You + may + distribute Derivative Work in object code or executable form, provided + that: + A) You distribute Independent Works subject to a license listed in the + section 4 below, titled "FOSS License List"; + and + B) You obey the GPL in all respects for the Licensed Software and all + portions + (including modifications and extensions) of the Licensed Software included + in + the Derivative Work (provided that this condition does not apply to + Independent Works); + C) You must, on request, make a complete package including the complete + source + code of Derivative Work (as defined in the GNU General Public License + version 2, section 3, but excluding anything excluded by the special + exception + in the same section) available to Syntext, Inc. under the same license as + that + granted to other recipients of the source code of Derivative Work; + and + D) Your or any other contributor's rights to: + i) distribute the source code of Derivative Work to anyone for any purpose; + and + ii) publicly discuss the development project for Derivative Work and its + goals + in any form and in any forum are not prohibited by any legal instrument, + including but not limited to contracts, non-disclosure agreements, and + employee contracts. + 3) Syntext, Inc. reserves all rights not expressly granted in these terms + and + conditions. If all of the above conditions are not met, then this FOSS + License + Exception does not apply to you or your Derivative Work. + 4) FOSS License List + License name Version + ----------------------------------------------------------------- + Academic Free License 2.0, 2.1, 3.0 + Apache Software License 1.0 or 1.1 + Apache License 2.0 + Apple Public Source License 2.0 + Artistic license (as set forth in the addendum file) + BSD license "July 22 1999" + Common Development and Distribution License (CDDL) 1.0 + Common Public License 1.0 + Eclipse Public License 1.0 + GNU Library or "Lesser" General Public License (LGPL) 2.0, 2.1, 3.0 + Jabber Open Source License 1.0 + MIT License (as set forth in the addendum file) + Mozilla Public License (MPL) 1.0 or 1.1 + Open Software License 2.0, 3.0 + OpenSSL license (with original SSLeay license) "2003" ("1998") + PHP License 3.0 + Python license (CNRI Python License) (as set forth in the addendum file) + Python Software Foundation License 2.1.1 + Q Public License 1.0 + Sleepycat License "1999" + W3C License "2001" + X11 License X11R6.6 + Zlib/libpng License (as set forth in the addendum file) + Zope Public License 2.0, 2.1 + (Licenses without a specific version number or date are reproduced in the + file + GPL_Exception_Addendum.txt in your source package). + ------------------------------------------------------------------ +--- + Syntext, Inc. GPL License Exception for Syntext Serna Free Edition Version 1.0 diff --git a/src/licensedcode/data/licenses/syntext-serna-exception-1.0.yml b/src/licensedcode/data/licenses/syntext-serna-exception-1.0.yml deleted file mode 100644 index 98a9728e919..00000000000 --- a/src/licensedcode/data/licenses/syntext-serna-exception-1.0.yml +++ /dev/null @@ -1,105 +0,0 @@ -key: syntext-serna-exception-1.0 -short_name: Syntext Serna exception to GPL 2.0 or GPL 3.0 -name: Syntext Serna exception to GPL 2.0 or GPL 3.0 -category: Copyleft Limited -owner: Syntext -homepage_url: https://github.com/ydirson/serna-free/blob/master/GPL_EXCEPTION.txt -is_exception: yes -spdx_license_key: LicenseRef-scancode-syntext-serna-exception-1.0 -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/licenses/gpl-3.0.txt -standard_notice: | - Syntext, Inc. GPL License Exception for Syntext Serna Free Edition - Version 1.0 - Additional rights granted beyond the GPL (the "Exception"). - As a special exception to the terms and conditions of GPL version 2.0 - or GPL version 3.0, Syntext, Inc. hereby grants you the rights described - below, - provided you agree to the terms and conditions in this Exception, including - its - obligations and restrictions on use. - Nothing in this Exception gives you or anyone else the right to change the - licensing terms of the Syntext Serna Free Editon. - 1) Definitions - "FOSS Application" means a free and open source software application - distributed subject to a license listed in the section below titled - "FOSS License List." - "Licensed Software" shall refer to the software licensed under the GPL - version 2.0 or GPL version 3.0 and this exception. - "Derivative Work" means a derivative work, as defined under applicable - copyright law, formed entirely from the Licensed Software and one or more - FOSS - Applications. - "Independent Work" means portions of the Derivative Work that are not - derived - from the Licensed Software and can reasonably be considered independent and - separate works. - 2) The right to use open source licenses not compatible with the GNU - General - Public License version 2.0 or GNU General Public License version 3.0: You - may - distribute Derivative Work in object code or executable form, provided - that: - A) You distribute Independent Works subject to a license listed in the - section 4 below, titled "FOSS License List"; - and - B) You obey the GPL in all respects for the Licensed Software and all - portions - (including modifications and extensions) of the Licensed Software included - in - the Derivative Work (provided that this condition does not apply to - Independent Works); - C) You must, on request, make a complete package including the complete - source - code of Derivative Work (as defined in the GNU General Public License - version 2, section 3, but excluding anything excluded by the special - exception - in the same section) available to Syntext, Inc. under the same license as - that - granted to other recipients of the source code of Derivative Work; - and - D) Your or any other contributor's rights to: - i) distribute the source code of Derivative Work to anyone for any purpose; - and - ii) publicly discuss the development project for Derivative Work and its - goals - in any form and in any forum are not prohibited by any legal instrument, - including but not limited to contracts, non-disclosure agreements, and - employee contracts. - 3) Syntext, Inc. reserves all rights not expressly granted in these terms - and - conditions. If all of the above conditions are not met, then this FOSS - License - Exception does not apply to you or your Derivative Work. - 4) FOSS License List - License name Version - ----------------------------------------------------------------- - Academic Free License 2.0, 2.1, 3.0 - Apache Software License 1.0 or 1.1 - Apache License 2.0 - Apple Public Source License 2.0 - Artistic license (as set forth in the addendum file) - BSD license "July 22 1999" - Common Development and Distribution License (CDDL) 1.0 - Common Public License 1.0 - Eclipse Public License 1.0 - GNU Library or "Lesser" General Public License (LGPL) 2.0, 2.1, 3.0 - Jabber Open Source License 1.0 - MIT License (as set forth in the addendum file) - Mozilla Public License (MPL) 1.0 or 1.1 - Open Software License 2.0, 3.0 - OpenSSL license (with original SSLeay license) "2003" ("1998") - PHP License 3.0 - Python license (CNRI Python License) (as set forth in the addendum file) - Python Software Foundation License 2.1.1 - Q Public License 1.0 - Sleepycat License "1999" - W3C License "2001" - X11 License X11R6.6 - Zlib/libpng License (as set forth in the addendum file) - Zope Public License 2.0, 2.1 - (Licenses without a specific version number or date are reproduced in the - file - GPL_Exception_Addendum.txt in your source package). - ------------------------------------------------------------------ diff --git a/src/licensedcode/data/licenses/synthesis-toolkit.LICENSE b/src/licensedcode/data/licenses/synthesis-toolkit.LICENSE index d813f342506..44e6fd4967c 100644 --- a/src/licensedcode/data/licenses/synthesis-toolkit.LICENSE +++ b/src/licensedcode/data/licenses/synthesis-toolkit.LICENSE @@ -1,3 +1,17 @@ +--- +key: synthesis-toolkit +short_name: Synthesis Toolkit License +name: Synthesis Toolkit License +category: Permissive +owner: Stanford University +homepage_url: https://ccrma.stanford.edu/software/stk/faq.html#license +spdx_license_key: LicenseRef-scancode-synthesis-toolkit +minimum_coverage: 70 +standard_notice: | + The Synthesis ToolKit in C++ (STK) + Copyright (c) 1995--2019 Perry R. Cook and Gary P. Scavone +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/licenses/synthesis-toolkit.yml b/src/licensedcode/data/licenses/synthesis-toolkit.yml deleted file mode 100644 index ded79990351..00000000000 --- a/src/licensedcode/data/licenses/synthesis-toolkit.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: synthesis-toolkit -short_name: Synthesis Toolkit License -name: Synthesis Toolkit License -category: Permissive -owner: Stanford University -homepage_url: https://ccrma.stanford.edu/software/stk/faq.html#license -spdx_license_key: LicenseRef-scancode-synthesis-toolkit -minimum_coverage: 70 -standard_notice: | - The Synthesis ToolKit in C++ (STK) - Copyright (c) 1995--2019 Perry R. Cook and Gary P. Scavone diff --git a/src/licensedcode/data/licenses/takao-abe.LICENSE b/src/licensedcode/data/licenses/takao-abe.LICENSE index 5a819e4ba4f..1ae0701afad 100644 --- a/src/licensedcode/data/licenses/takao-abe.LICENSE +++ b/src/licensedcode/data/licenses/takao-abe.LICENSE @@ -1,3 +1,12 @@ +--- +key: takao-abe +short_name: Takao Abe License +name: Takao Abe License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-takao-abe +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose is hereby granted without fee, provided that the following conditions are met: diff --git a/src/licensedcode/data/licenses/takao-abe.yml b/src/licensedcode/data/licenses/takao-abe.yml deleted file mode 100644 index b35ca835af9..00000000000 --- a/src/licensedcode/data/licenses/takao-abe.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: takao-abe -short_name: Takao Abe License -name: Takao Abe License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-takao-abe diff --git a/src/licensedcode/data/licenses/takuya-ooura.LICENSE b/src/licensedcode/data/licenses/takuya-ooura.LICENSE index c513ca40de0..7b0f5cc6a85 100644 --- a/src/licensedcode/data/licenses/takuya-ooura.LICENSE +++ b/src/licensedcode/data/licenses/takuya-ooura.LICENSE @@ -1,3 +1,13 @@ +--- +key: takuya-ooura +short_name: Takuya OOURA License +name: Takuya OOURA License +category: Permissive +owner: Unspecified +homepage_url: http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html +spdx_license_key: LicenseRef-scancode-takuya-ooura +--- + You may use, copy, modify and distribute this code for any purpose (include commercial use) and without fee. Please refer to this package when you modify this code. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/takuya-ooura.yml b/src/licensedcode/data/licenses/takuya-ooura.yml deleted file mode 100644 index 1cdb2d4bb1a..00000000000 --- a/src/licensedcode/data/licenses/takuya-ooura.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: takuya-ooura -short_name: Takuya OOURA License -name: Takuya OOURA License -category: Permissive -owner: Unspecified -homepage_url: http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html -spdx_license_key: LicenseRef-scancode-takuya-ooura diff --git a/src/licensedcode/data/licenses/taligent-jdk.LICENSE b/src/licensedcode/data/licenses/taligent-jdk.LICENSE index c6f139d0049..2323f375373 100644 --- a/src/licensedcode/data/licenses/taligent-jdk.LICENSE +++ b/src/licensedcode/data/licenses/taligent-jdk.LICENSE @@ -1,3 +1,14 @@ +--- +key: taligent-jdk +short_name: Taligent JDK Proprietary Notice +name: Taligent JDK Proprietary Notice +category: Proprietary Free +owner: Taligent +homepage_url: https://github.com/typetools/checker-framework/blob/3c427f380f61f234688893467d9bc433cf1a584c/checker/jdk/index/src/java/sun/util/resources/OpenListResourceBundle.java#L26-L39 +notes: This notice is common is OpenJDK and related Java code. +spdx_license_key: LicenseRef-scancode-taligent-jdk +--- + The original version of this source code and documentation is copyrighted and owned by Taligent, Inc., a wholly-owned subsidiary of IBM. These materials are provided under terms diff --git a/src/licensedcode/data/licenses/taligent-jdk.yml b/src/licensedcode/data/licenses/taligent-jdk.yml deleted file mode 100644 index ec329c82187..00000000000 --- a/src/licensedcode/data/licenses/taligent-jdk.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: taligent-jdk -short_name: Taligent JDK Proprietary Notice -name: Taligent JDK Proprietary Notice -category: Proprietary Free -owner: Taligent -homepage_url: https://github.com/typetools/checker-framework/blob/3c427f380f61f234688893467d9bc433cf1a584c/checker/jdk/index/src/java/sun/util/resources/OpenListResourceBundle.java#L26-L39 -notes: This notice is common is OpenJDK and related Java code. -spdx_license_key: LicenseRef-scancode-taligent-jdk diff --git a/src/licensedcode/data/licenses/tanuki-community-sla-1.0.LICENSE b/src/licensedcode/data/licenses/tanuki-community-sla-1.0.LICENSE index b5a77e27a31..7328d4d8b47 100644 --- a/src/licensedcode/data/licenses/tanuki-community-sla-1.0.LICENSE +++ b/src/licensedcode/data/licenses/tanuki-community-sla-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: tanuki-community-sla-1.0 +short_name: Tanuki Community SLA 1.0 +name: Tanuki Community Software License Agreement 1.0 +category: Copyleft +owner: Tanuki Software +homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.0 +minimum_coverage: 98 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2001 Silver Egg Technology + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Silver Egg Technology + - the Free Software Foundation +--- + Tanuki Software, Inc. Community Software License Agreement Version 1.0 diff --git a/src/licensedcode/data/licenses/tanuki-community-sla-1.0.yml b/src/licensedcode/data/licenses/tanuki-community-sla-1.0.yml deleted file mode 100644 index 55c622fcb89..00000000000 --- a/src/licensedcode/data/licenses/tanuki-community-sla-1.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: tanuki-community-sla-1.0 -short_name: Tanuki Community SLA 1.0 -name: Tanuki Community Software License Agreement 1.0 -category: Copyleft -owner: Tanuki Software -homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html -spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.0 -minimum_coverage: 98 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - Copyright (c) 2001 Silver Egg Technology - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - Silver Egg Technology - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/tanuki-community-sla-1.1.LICENSE b/src/licensedcode/data/licenses/tanuki-community-sla-1.1.LICENSE index 5f1b0da38e6..17a5f95dab3 100644 --- a/src/licensedcode/data/licenses/tanuki-community-sla-1.1.LICENSE +++ b/src/licensedcode/data/licenses/tanuki-community-sla-1.1.LICENSE @@ -1,3 +1,24 @@ +--- +key: tanuki-community-sla-1.1 +short_name: Tanuki Community SLA 1.1 +name: Tanuki Community Software License Agreement 1.1 +category: Copyleft +owner: Tanuki Software +homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.1 +minimum_coverage: 98 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2001 Silver Egg Technology + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Silver Egg Technology + - the Free Software Foundation +ignorable_urls: + - http://wrapper.tanukisoftware.org/ +--- + Tanuki Software, Ltd. Community Software License Agreement Version 1.1 diff --git a/src/licensedcode/data/licenses/tanuki-community-sla-1.1.yml b/src/licensedcode/data/licenses/tanuki-community-sla-1.1.yml deleted file mode 100644 index 6a338f86b79..00000000000 --- a/src/licensedcode/data/licenses/tanuki-community-sla-1.1.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: tanuki-community-sla-1.1 -short_name: Tanuki Community SLA 1.1 -name: Tanuki Community Software License Agreement 1.1 -category: Copyleft -owner: Tanuki Software -homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html -spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.1 -minimum_coverage: 98 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - Copyright (c) 2001 Silver Egg Technology - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - Silver Egg Technology - - the Free Software Foundation -ignorable_urls: - - http://wrapper.tanukisoftware.org/ diff --git a/src/licensedcode/data/licenses/tanuki-community-sla-1.2.LICENSE b/src/licensedcode/data/licenses/tanuki-community-sla-1.2.LICENSE index 58032c11bf1..d12d782ace6 100644 --- a/src/licensedcode/data/licenses/tanuki-community-sla-1.2.LICENSE +++ b/src/licensedcode/data/licenses/tanuki-community-sla-1.2.LICENSE @@ -1,3 +1,24 @@ +--- +key: tanuki-community-sla-1.2 +short_name: Tanuki Community SLA 1.2 +name: Tanuki Community Software License Agreement 1.2 +category: Copyleft +owner: Tanuki Software +homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.2 +minimum_coverage: 98 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2001 Silver Egg Technology + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Silver Egg Technology + - the Free Software Foundation +ignorable_urls: + - http://wrapper.tanukisoftware.org/ +--- + Tanuki Software, Ltd. Community Software License Agreement Version 1.2 diff --git a/src/licensedcode/data/licenses/tanuki-community-sla-1.2.yml b/src/licensedcode/data/licenses/tanuki-community-sla-1.2.yml deleted file mode 100644 index 1d3bff66e19..00000000000 --- a/src/licensedcode/data/licenses/tanuki-community-sla-1.2.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: tanuki-community-sla-1.2 -short_name: Tanuki Community SLA 1.2 -name: Tanuki Community Software License Agreement 1.2 -category: Copyleft -owner: Tanuki Software -homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html -spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.2 -minimum_coverage: 98 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - Copyright (c) 2001 Silver Egg Technology - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - Silver Egg Technology - - the Free Software Foundation -ignorable_urls: - - http://wrapper.tanukisoftware.org/ diff --git a/src/licensedcode/data/licenses/tanuki-community-sla-1.3.LICENSE b/src/licensedcode/data/licenses/tanuki-community-sla-1.3.LICENSE index 00432db6f73..8aed6a54b7d 100644 --- a/src/licensedcode/data/licenses/tanuki-community-sla-1.3.LICENSE +++ b/src/licensedcode/data/licenses/tanuki-community-sla-1.3.LICENSE @@ -1,3 +1,27 @@ +--- +key: tanuki-community-sla-1.3 +short_name: Tanuki Community SLA 1.3 +name: Tanuki Community Software License Agreement 1.3 +category: Copyleft +owner: Tanuki Software +homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.3 +text_urls: + - http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2001 Silver Egg Technology + - Copyright c 2007 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Silver Egg Technology + - the Free Software Foundation +ignorable_urls: + - http://fsf.org/ + - http://wrapper.tanukisoftware.org/ +--- + Tanuki Software, Ltd. Community Software License Agreement Version 1.3 diff --git a/src/licensedcode/data/licenses/tanuki-community-sla-1.3.yml b/src/licensedcode/data/licenses/tanuki-community-sla-1.3.yml deleted file mode 100644 index a6e83b55fbe..00000000000 --- a/src/licensedcode/data/licenses/tanuki-community-sla-1.3.yml +++ /dev/null @@ -1,21 +0,0 @@ -key: tanuki-community-sla-1.3 -short_name: Tanuki Community SLA 1.3 -name: Tanuki Community Software License Agreement 1.3 -category: Copyleft -owner: Tanuki Software -homepage_url: http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html -spdx_license_key: LicenseRef-scancode-tanuki-community-sla-1.3 -text_urls: - - http://wrapper.tanukisoftware.com/doc/english/licenseCommunity.html -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - Copyright (c) 2001 Silver Egg Technology - - Copyright c 2007 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - Silver Egg Technology - - the Free Software Foundation -ignorable_urls: - - http://fsf.org/ - - http://wrapper.tanukisoftware.org/ diff --git a/src/licensedcode/data/licenses/tanuki-development.LICENSE b/src/licensedcode/data/licenses/tanuki-development.LICENSE index bc3689d9136..7e22d12da20 100644 --- a/src/licensedcode/data/licenses/tanuki-development.LICENSE +++ b/src/licensedcode/data/licenses/tanuki-development.LICENSE @@ -1,3 +1,20 @@ +--- +key: tanuki-development +short_name: Tanuki Development License 1.3 +name: Tanuki Development Software License Agreement 1.3 +category: Commercial +owner: Tanuki Software +homepage_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#text +spdx_license_key: LicenseRef-scancode-tanuki-development +faq_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#overview +ignorable_copyrights: + - Copyright (c) 2001 Silver Egg Technology +ignorable_holders: + - Silver Egg Technology +ignorable_urls: + - http://wrapper.tanukisoftware.org/ +--- + Tanuki Software, Ltd. Development Software License Agreement Version 1.3 diff --git a/src/licensedcode/data/licenses/tanuki-development.yml b/src/licensedcode/data/licenses/tanuki-development.yml deleted file mode 100644 index d5ca4f68cf8..00000000000 --- a/src/licensedcode/data/licenses/tanuki-development.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: tanuki-development -short_name: Tanuki Development License 1.3 -name: Tanuki Development Software License Agreement 1.3 -category: Commercial -owner: Tanuki Software -homepage_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#text -spdx_license_key: LicenseRef-scancode-tanuki-development -faq_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#overview -ignorable_copyrights: - - Copyright (c) 2001 Silver Egg Technology -ignorable_holders: - - Silver Egg Technology -ignorable_urls: - - http://wrapper.tanukisoftware.org/ diff --git a/src/licensedcode/data/licenses/tanuki-maintenance.LICENSE b/src/licensedcode/data/licenses/tanuki-maintenance.LICENSE index 59a83a2d765..06052f97f11 100644 --- a/src/licensedcode/data/licenses/tanuki-maintenance.LICENSE +++ b/src/licensedcode/data/licenses/tanuki-maintenance.LICENSE @@ -1,3 +1,15 @@ +--- +key: tanuki-maintenance +short_name: Tanuki Maintenance Addendum 1.3 +name: Tanuki Maintenance Support Services Addendum 1.3 +category: Commercial +owner: Tanuki Software +homepage_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#maintenance +spdx_license_key: LicenseRef-scancode-tanuki-maintenance +ignorable_emails: + - wrapper-support@tanukisoftware.com +--- + Tanuki Software, Ltd. Maintenance Support Services Addendum Version 1.3 diff --git a/src/licensedcode/data/licenses/tanuki-maintenance.yml b/src/licensedcode/data/licenses/tanuki-maintenance.yml deleted file mode 100644 index 585255e2f6e..00000000000 --- a/src/licensedcode/data/licenses/tanuki-maintenance.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: tanuki-maintenance -short_name: Tanuki Maintenance Addendum 1.3 -name: Tanuki Maintenance Support Services Addendum 1.3 -category: Commercial -owner: Tanuki Software -homepage_url: https://wrapper.tanukisoftware.com/doc/english/licenseDevelopment.html#maintenance -spdx_license_key: LicenseRef-scancode-tanuki-maintenance -ignorable_emails: - - wrapper-support@tanukisoftware.com diff --git a/src/licensedcode/data/licenses/tapr-ohl-1.0.LICENSE b/src/licensedcode/data/licenses/tapr-ohl-1.0.LICENSE index c678fc3b9be..0692f7183cc 100644 --- a/src/licensedcode/data/licenses/tapr-ohl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/tapr-ohl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: tapr-ohl-1.0 +short_name: TAPR Open Hardware License v1.0 +name: TAPR Open Hardware License v1.0 +category: Copyleft Limited +owner: TAPR +homepage_url: https://www.tapr.org/OHL +spdx_license_key: TAPR-OHL-1.0 +other_urls: + - https://www.tapr.org/OHL +ignorable_copyrights: + - Copyright 2007 TAPR - http://www.tapr.org/OHL +ignorable_holders: + - TAPR +ignorable_urls: + - http://www.tapr.org/OHL +--- + The TAPR Open Hardware License Version 1.0 (May 25, 2007) Copyright 2007 TAPR - http://www.tapr.org/OHL PREAMBLE diff --git a/src/licensedcode/data/licenses/tapr-ohl-1.0.yml b/src/licensedcode/data/licenses/tapr-ohl-1.0.yml deleted file mode 100644 index 52faedccb74..00000000000 --- a/src/licensedcode/data/licenses/tapr-ohl-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: tapr-ohl-1.0 -short_name: TAPR Open Hardware License v1.0 -name: TAPR Open Hardware License v1.0 -category: Copyleft Limited -owner: TAPR -homepage_url: https://www.tapr.org/OHL -spdx_license_key: TAPR-OHL-1.0 -other_urls: - - https://www.tapr.org/OHL -ignorable_copyrights: - - Copyright 2007 TAPR - http://www.tapr.org/OHL -ignorable_holders: - - TAPR -ignorable_urls: - - http://www.tapr.org/OHL diff --git a/src/licensedcode/data/licenses/tatu-ylonen.LICENSE b/src/licensedcode/data/licenses/tatu-ylonen.LICENSE index bf6f8a0e628..2e1c6754743 100644 --- a/src/licensedcode/data/licenses/tatu-ylonen.LICENSE +++ b/src/licensedcode/data/licenses/tatu-ylonen.LICENSE @@ -1,5 +1,18 @@ +--- +key: tatu-ylonen +short_name: Tatu Ylonen License +name: Tatu Ylonen License +category: Permissive +owner: Secure Shell +spdx_license_key: SSH-short +other_urls: + - https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h + - http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1 + - https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp +--- + As far as I am concerned, the code I have written for this software can be used freely for any purpose. Any derived versions of this software must be clearly marked as such, and if the derived work is incompatible with the protocol description in the RFC file, it must be -called by a name other than "ssh" or "Secure Shell". +called by a name other than "ssh" or "Secure Shell". \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tatu-ylonen.yml b/src/licensedcode/data/licenses/tatu-ylonen.yml deleted file mode 100644 index fae2cc6dd5b..00000000000 --- a/src/licensedcode/data/licenses/tatu-ylonen.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: tatu-ylonen -short_name: Tatu Ylonen License -name: Tatu Ylonen License -category: Permissive -owner: Secure Shell -spdx_license_key: SSH-short -other_urls: - - https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h - - http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1 - - https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp diff --git a/src/licensedcode/data/licenses/tcl.LICENSE b/src/licensedcode/data/licenses/tcl.LICENSE index c52743f7fd4..2dc9ad1fa71 100644 --- a/src/licensedcode/data/licenses/tcl.LICENSE +++ b/src/licensedcode/data/licenses/tcl.LICENSE @@ -1,3 +1,24 @@ +--- +key: tcl +short_name: TCL/TK License +name: TCL/TK License +category: Permissive +owner: Tcl Developer Xchange +homepage_url: http://www.tcl.tk/software/tcltk/license.html +spdx_license_key: TCL +text_urls: + - http://www.tcl.tk/software/tcltk/license.html +other_urls: + - http://fedoraproject.org/wiki/Licensing/TCL + - https://fedoraproject.org/wiki/Licensing/TCL +ignorable_copyrights: + - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics + Corporation, ActiveState Corporation +ignorable_holders: + - the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, + ActiveState Corporation +--- + This software is copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation and other parties. The following terms apply to all files diff --git a/src/licensedcode/data/licenses/tcl.yml b/src/licensedcode/data/licenses/tcl.yml deleted file mode 100644 index 76c7b07e4a1..00000000000 --- a/src/licensedcode/data/licenses/tcl.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: tcl -short_name: TCL/TK License -name: TCL/TK License -category: Permissive -owner: Tcl Developer Xchange -homepage_url: http://www.tcl.tk/software/tcltk/license.html -spdx_license_key: TCL -text_urls: - - http://www.tcl.tk/software/tcltk/license.html -other_urls: - - http://fedoraproject.org/wiki/Licensing/TCL - - https://fedoraproject.org/wiki/Licensing/TCL -ignorable_copyrights: - - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics - Corporation, ActiveState Corporation -ignorable_holders: - - the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, - ActiveState Corporation diff --git a/src/licensedcode/data/licenses/tcp-wrappers.LICENSE b/src/licensedcode/data/licenses/tcp-wrappers.LICENSE index 1668a66166e..2796b5e29cb 100644 --- a/src/licensedcode/data/licenses/tcp-wrappers.LICENSE +++ b/src/licensedcode/data/licenses/tcp-wrappers.LICENSE @@ -1,3 +1,19 @@ +--- +key: tcp-wrappers +short_name: TCP Wrappers License +name: TCP Wrappers License +category: Permissive +owner: Wietse Venema +homepage_url: ftp://ftp.porcupine.org/pub/security/tcp_wrappers_license +spdx_license_key: TCP-wrappers +other_urls: + - http://rc.quest.com/topics/openssh/license.php#tcpwrappers +ignorable_copyrights: + - Copyright 1995 by Wietse Venema +ignorable_holders: + - Wietse Venema +--- + -----BEGIN PGP SIGNED MESSAGE----- As of June 1, 2001, the text below constitutes the TCP Wrappers license. diff --git a/src/licensedcode/data/licenses/tcp-wrappers.yml b/src/licensedcode/data/licenses/tcp-wrappers.yml deleted file mode 100644 index 5693821848c..00000000000 --- a/src/licensedcode/data/licenses/tcp-wrappers.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: tcp-wrappers -short_name: TCP Wrappers License -name: TCP Wrappers License -category: Permissive -owner: Wietse Venema -homepage_url: ftp://ftp.porcupine.org/pub/security/tcp_wrappers_license -spdx_license_key: TCP-wrappers -other_urls: - - http://rc.quest.com/topics/openssh/license.php#tcpwrappers -ignorable_copyrights: - - Copyright 1995 by Wietse Venema -ignorable_holders: - - Wietse Venema diff --git a/src/licensedcode/data/licenses/teamdev-services.LICENSE b/src/licensedcode/data/licenses/teamdev-services.LICENSE index 23423475f78..d9df1387674 100644 --- a/src/licensedcode/data/licenses/teamdev-services.LICENSE +++ b/src/licensedcode/data/licenses/teamdev-services.LICENSE @@ -1,3 +1,22 @@ +--- +key: teamdev-services +short_name: TeamDev Services License +name: TeamDev Services License +category: Commercial +owner: TeamDev +homepage_url: https://www.teamdev.com/services +spdx_license_key: LicenseRef-scancode-teamdev-services +minimum_coverage: 98 +ignorable_urls: + - http://google.com/+TeamDev + - http://twitter.com/TeamDev + - http://www.linkedin.com/company/teamdev-ltd + - https://www.facebook.com/TeamDev + - https://www.teamdev.com/services +ignorable_emails: + - sales@teamdev.com +--- + https://www.teamdev.com/services TeamDev diff --git a/src/licensedcode/data/licenses/teamdev-services.yml b/src/licensedcode/data/licenses/teamdev-services.yml deleted file mode 100644 index 6cb356530ea..00000000000 --- a/src/licensedcode/data/licenses/teamdev-services.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: teamdev-services -short_name: TeamDev Services License -name: TeamDev Services License -category: Commercial -owner: TeamDev -homepage_url: https://www.teamdev.com/services -spdx_license_key: LicenseRef-scancode-teamdev-services -minimum_coverage: 98 -ignorable_urls: - - http://google.com/+TeamDev - - http://twitter.com/TeamDev - - http://www.linkedin.com/company/teamdev-ltd - - https://www.facebook.com/TeamDev - - https://www.teamdev.com/services -ignorable_emails: - - sales@teamdev.com diff --git a/src/licensedcode/data/licenses/tekhvc.LICENSE b/src/licensedcode/data/licenses/tekhvc.LICENSE index e6cbf78d922..57e87d98ce8 100644 --- a/src/licensedcode/data/licenses/tekhvc.LICENSE +++ b/src/licensedcode/data/licenses/tekhvc.LICENSE @@ -1,3 +1,14 @@ +--- +key: tekhvc +short_name: TekHVC License +name: TekHVC License +category: Permissive +owner: Tektronix +spdx_license_key: LicenseRef-scancode-tekhvc +other_urls: + - https://www.x.org/releases/individual/lib/libX11-1.7.2.tar.bz2 +--- + Permission is hereby granted to use, copy, modify, sell, and otherwise distribute this software and its documentation for any purpose and without fee, provided that: diff --git a/src/licensedcode/data/licenses/tekhvc.yml b/src/licensedcode/data/licenses/tekhvc.yml deleted file mode 100644 index 4dfd1018e77..00000000000 --- a/src/licensedcode/data/licenses/tekhvc.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: tekhvc -short_name: TekHVC License -name: TekHVC License -category: Permissive -owner: Tektronix -spdx_license_key: LicenseRef-scancode-tekhvc -other_urls: - - https://www.x.org/releases/individual/lib/libX11-1.7.2.tar.bz2 diff --git a/src/licensedcode/data/licenses/telerik-eula.LICENSE b/src/licensedcode/data/licenses/telerik-eula.LICENSE index 780399d0c10..ca74f3af8aa 100644 --- a/src/licensedcode/data/licenses/telerik-eula.LICENSE +++ b/src/licensedcode/data/licenses/telerik-eula.LICENSE @@ -1,3 +1,19 @@ +--- +key: telerik-eula +short_name: Telerik EULA +name: Telerik EULA +category: Commercial +owner: Telerik +homepage_url: http://www.telerik.com/purchase/license-agreement/kendo-ui-professional +spdx_license_key: LicenseRef-scancode-telerik-eula +ignorable_urls: + - http://wixtoolset.org/ + - http://www.telerik.com/purchase/license-agreement/platform + - http://www.telerik.com/purchase/support-plans/kendo-ui + - https://github.com/kendo-labs/angular-kendo + - https://github.com/telerik/kendo-ui-core +--- + Telerik End User License Agreement for Kendo UI Professional (Last Updated July 16th, 2014) diff --git a/src/licensedcode/data/licenses/telerik-eula.yml b/src/licensedcode/data/licenses/telerik-eula.yml deleted file mode 100644 index 1fdee318d1a..00000000000 --- a/src/licensedcode/data/licenses/telerik-eula.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: telerik-eula -short_name: Telerik EULA -name: Telerik EULA -category: Commercial -owner: Telerik -homepage_url: http://www.telerik.com/purchase/license-agreement/kendo-ui-professional -spdx_license_key: LicenseRef-scancode-telerik-eula -ignorable_urls: - - http://wixtoolset.org/ - - http://www.telerik.com/purchase/license-agreement/platform - - http://www.telerik.com/purchase/support-plans/kendo-ui - - https://github.com/kendo-labs/angular-kendo - - https://github.com/telerik/kendo-ui-core diff --git a/src/licensedcode/data/licenses/tenable-nessus.LICENSE b/src/licensedcode/data/licenses/tenable-nessus.LICENSE index ad98987a417..82d44aaeedb 100644 --- a/src/licensedcode/data/licenses/tenable-nessus.LICENSE +++ b/src/licensedcode/data/licenses/tenable-nessus.LICENSE @@ -1,3 +1,22 @@ +--- +key: tenable-nessus +short_name: Tenable Nessus License +name: Tenable Nessus Software License and Subscription Agreement +category: Proprietary Free +owner: Tenable +homepage_url: https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf +spdx_license_key: LicenseRef-scancode-tenable-nessus +text_urls: + - https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf +ignorable_copyrights: + - copyrighted by Tenable +ignorable_holders: + - Tenable +ignorable_urls: + - http://www.nessus.org/ + - http://www.tenable.com/ +--- + TENABLE NETWORK SECURITY, INC. NESSUS SOFTWARE LICENSE AND SUBSCRIPTION AGREEMENT diff --git a/src/licensedcode/data/licenses/tenable-nessus.yml b/src/licensedcode/data/licenses/tenable-nessus.yml deleted file mode 100644 index 98f78cb7549..00000000000 --- a/src/licensedcode/data/licenses/tenable-nessus.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: tenable-nessus -short_name: Tenable Nessus License -name: Tenable Nessus Software License and Subscription Agreement -category: Proprietary Free -owner: Tenable -homepage_url: https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf -spdx_license_key: LicenseRef-scancode-tenable-nessus -text_urls: - - https://static.tenable.com/prod_docs/Nessus_6_SLA_and_Subscription_Agreement.pdf -ignorable_copyrights: - - copyrighted by Tenable -ignorable_holders: - - Tenable -ignorable_urls: - - http://www.nessus.org/ - - http://www.tenable.com/ diff --git a/src/licensedcode/data/licenses/term-readkey.LICENSE b/src/licensedcode/data/licenses/term-readkey.LICENSE index ef0a5b871fd..71ddb4c2129 100644 --- a/src/licensedcode/data/licenses/term-readkey.LICENSE +++ b/src/licensedcode/data/licenses/term-readkey.LICENSE @@ -1,2 +1,11 @@ +--- +key: term-readkey +short_name: Term Readkey License +name: Term Readkey License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-term-readkey +--- + Unlimited distribution and/or modification is allowed as long as this copyright notice remains intact. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/term-readkey.yml b/src/licensedcode/data/licenses/term-readkey.yml deleted file mode 100644 index a20209e6232..00000000000 --- a/src/licensedcode/data/licenses/term-readkey.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: term-readkey -short_name: Term Readkey License -name: Term Readkey License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-term-readkey diff --git a/src/licensedcode/data/licenses/tested-software.LICENSE b/src/licensedcode/data/licenses/tested-software.LICENSE index af06def5429..6667cd5ae60 100644 --- a/src/licensedcode/data/licenses/tested-software.LICENSE +++ b/src/licensedcode/data/licenses/tested-software.LICENSE @@ -1,7 +1,16 @@ +--- +key: tested-software +short_name: Tested Software License +name: Tested Software License +category: Permissive +owner: Autonomous Zone Industries +spdx_license_key: LicenseRef-scancode-tested-software +--- + License: This is free software. You may use this software for any purpose including modification/redistribution, so long as this header remains intact and that you do not claim any rights of ownership or authorship of this software. This software has been tested, but no warranty is expressed or -implied. +implied. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tested-software.yml b/src/licensedcode/data/licenses/tested-software.yml deleted file mode 100644 index b4eff42f521..00000000000 --- a/src/licensedcode/data/licenses/tested-software.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: tested-software -short_name: Tested Software License -name: Tested Software License -category: Permissive -owner: Autonomous Zone Industries -spdx_license_key: LicenseRef-scancode-tested-software diff --git a/src/licensedcode/data/licenses/tex-exception.LICENSE b/src/licensedcode/data/licenses/tex-exception.LICENSE index dae130df713..fa22e4e1feb 100644 --- a/src/licensedcode/data/licenses/tex-exception.LICENSE +++ b/src/licensedcode/data/licenses/tex-exception.LICENSE @@ -1,4 +1,14 @@ +--- +key: tex-exception +short_name: TeX exception to GPL 3.0 +name: TeX exception to GPL 3.0 +category: Copyleft Limited +owner: Unspecified +is_exception: yes +spdx_license_key: LicenseRef-scancode-tex-exception +--- + As a special exception, when this file is read by TeX when processing a Texinfo source document, you may use the result without restriction. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). +of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tex-exception.yml b/src/licensedcode/data/licenses/tex-exception.yml deleted file mode 100644 index 33b420e2221..00000000000 --- a/src/licensedcode/data/licenses/tex-exception.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: tex-exception -short_name: TeX exception to GPL 3.0 -name: TeX exception to GPL 3.0 -category: Copyleft Limited -owner: Unspecified -is_exception: yes -spdx_license_key: LicenseRef-scancode-tex-exception diff --git a/src/licensedcode/data/licenses/tex-live.LICENSE b/src/licensedcode/data/licenses/tex-live.LICENSE index e5beca0ec93..66c6fa75fa2 100644 --- a/src/licensedcode/data/licenses/tex-live.LICENSE +++ b/src/licensedcode/data/licenses/tex-live.LICENSE @@ -1,3 +1,25 @@ +--- +key: tex-live +short_name: TeX Live License +name: TeX Live License +category: Permissive +owner: Karl Berry +homepage_url: ftp://tug.org/historic/systems/texlive/2007/LICENSE.TL +spdx_license_key: LicenseRef-scancode-tex-live +ignorable_urls: + - http://latex-project.org/lppl.html + - http://www.ctan.org/tex-archive/help/Catalogue/ + - http://www.debian.org/intro/free + - http://www.gnu.org/licenses/license-list.html + - http://www.gnu.org/philosophy/free-sw.html + - http://www.tug.org/tex-live/ + - http://www.tug.org/texlive/ + - http://www.tug.org/usergroups.html + - https://www.tug.org/donate/dev.html +ignorable_emails: + - texlive@tug.org +--- + COPYING CONDITIONS FOR TeX Live: To the best of our knowledge, all software in the TeX Live distribution diff --git a/src/licensedcode/data/licenses/tex-live.yml b/src/licensedcode/data/licenses/tex-live.yml deleted file mode 100644 index d8bdb05d37f..00000000000 --- a/src/licensedcode/data/licenses/tex-live.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: tex-live -short_name: TeX Live License -name: TeX Live License -category: Permissive -owner: Karl Berry -homepage_url: ftp://tug.org/historic/systems/texlive/2007/LICENSE.TL -spdx_license_key: LicenseRef-scancode-tex-live -ignorable_urls: - - http://latex-project.org/lppl.html - - http://www.ctan.org/tex-archive/help/Catalogue/ - - http://www.debian.org/intro/free - - http://www.gnu.org/licenses/license-list.html - - http://www.gnu.org/philosophy/free-sw.html - - http://www.tug.org/tex-live/ - - http://www.tug.org/texlive/ - - http://www.tug.org/usergroups.html - - https://www.tug.org/donate/dev.html -ignorable_emails: - - texlive@tug.org diff --git a/src/licensedcode/data/licenses/tfl.LICENSE b/src/licensedcode/data/licenses/tfl.LICENSE index a514cf8bf22..dba4927ef0a 100644 --- a/src/licensedcode/data/licenses/tfl.LICENSE +++ b/src/licensedcode/data/licenses/tfl.LICENSE @@ -1,3 +1,18 @@ +--- +key: tfl +short_name: TFL +name: Truly Free License +category: Public Domain +owner: Tom Vajzovic +homepage_url: https://www.purposeful.co.uk/tfl/ +spdx_license_key: LicenseRef-scancode-tfl +other_urls: + - https://github.com/thoni56/gopt + - https://www.purposeful.co.uk/gopt/ +ignorable_urls: + - http://www.purposeful.co.uk/tfl/ +--- + I am the author of this software and its documentation and permanently abandon all copyright and other intellectual property rights in them, including the right to be identified as the author. diff --git a/src/licensedcode/data/licenses/tfl.yml b/src/licensedcode/data/licenses/tfl.yml deleted file mode 100644 index 9ca630d26eb..00000000000 --- a/src/licensedcode/data/licenses/tfl.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: tfl -short_name: TFL -name: Truly Free License -category: Public Domain -owner: Tom Vajzovic -homepage_url: https://www.purposeful.co.uk/tfl/ -spdx_license_key: LicenseRef-scancode-tfl -other_urls: - - https://github.com/thoni56/gopt - - https://www.purposeful.co.uk/gopt/ -ignorable_urls: - - http://www.purposeful.co.uk/tfl/ diff --git a/src/licensedcode/data/licenses/tgppl-1.0.LICENSE b/src/licensedcode/data/licenses/tgppl-1.0.LICENSE index 8b3ec36e50d..db066594ef9 100644 --- a/src/licensedcode/data/licenses/tgppl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/tgppl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: tgppl-1.0 +short_name: TGGPL 1.0 +name: Transitive Grace Period Public Licence 1.0 +category: Copyleft +owner: Tahoe-LAFS +homepage_url: http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html +spdx_license_key: LicenseRef-scancode-tgppl-1.0 +text_urls: + - https://tahoe-lafs.org/source/tahoe/trunk/COPYING.TGPPL.rst + - http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html +ignorable_copyrights: + - Copyright (c) 2007 Zooko +ignorable_holders: + - Zooko +--- + Transitive Grace Period Public Licence ("TGPPL") v. 1.0 This Transitive Grace Period Public Licence (the "License") applies to diff --git a/src/licensedcode/data/licenses/tgppl-1.0.yml b/src/licensedcode/data/licenses/tgppl-1.0.yml deleted file mode 100644 index 6ae54fecfe5..00000000000 --- a/src/licensedcode/data/licenses/tgppl-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: tgppl-1.0 -short_name: TGGPL 1.0 -name: Transitive Grace Period Public Licence 1.0 -category: Copyleft -owner: Tahoe-LAFS -homepage_url: http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html -spdx_license_key: LicenseRef-scancode-tgppl-1.0 -text_urls: - - https://tahoe-lafs.org/source/tahoe/trunk/COPYING.TGPPL.rst - - http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html -ignorable_copyrights: - - Copyright (c) 2007 Zooko -ignorable_holders: - - Zooko diff --git a/src/licensedcode/data/licenses/things-i-made-public-license.LICENSE b/src/licensedcode/data/licenses/things-i-made-public-license.LICENSE index 9ca32ab9a4f..df76ce1ba86 100644 --- a/src/licensedcode/data/licenses/things-i-made-public-license.LICENSE +++ b/src/licensedcode/data/licenses/things-i-made-public-license.LICENSE @@ -1,3 +1,20 @@ +--- +key: things-i-made-public-license +short_name: Things I Made (TIM) Public License +name: Things I Made (TIM) Public License +category: Permissive +owner: Marcus Crane +homepage_url: https://github.com/marcus-crane/pkgparse-node/blob/46446413cbdd1b7f67fad0e12188930920222b4a/LICENSE +notes: a rare license replaced by MIT since. +spdx_license_key: LicenseRef-scancode-things-i-made-public-license +ignorable_copyrights: + - Copyright (c) Marcus Crane +ignorable_holders: + - Marcus Crane +ignorable_emails: + - marcus@thingsima.de +--- + THINGS I MADE (TIM) PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION @@ -12,4 +29,4 @@ happy. 2. If it breaks, the author may try to help if it's a neat bug but they aren't obligated to provide support nor are they liable for any damages. -3. Beyond that, do whatever you feel like. +3. Beyond that, do whatever you feel like. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/things-i-made-public-license.yml b/src/licensedcode/data/licenses/things-i-made-public-license.yml deleted file mode 100644 index 7d5e654493f..00000000000 --- a/src/licensedcode/data/licenses/things-i-made-public-license.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: things-i-made-public-license -short_name: Things I Made (TIM) Public License -name: Things I Made (TIM) Public License -category: Permissive -owner: Marcus Crane -homepage_url: https://github.com/marcus-crane/pkgparse-node/blob/46446413cbdd1b7f67fad0e12188930920222b4a/LICENSE -notes: a rare license replaced by MIT since. -spdx_license_key: LicenseRef-scancode-things-i-made-public-license -ignorable_copyrights: - - Copyright (c) Marcus Crane -ignorable_holders: - - Marcus Crane -ignorable_emails: - - marcus@thingsima.de diff --git a/src/licensedcode/data/licenses/thomas-bandt.LICENSE b/src/licensedcode/data/licenses/thomas-bandt.LICENSE index 9fb68f63c25..bef4e2cfd9c 100644 --- a/src/licensedcode/data/licenses/thomas-bandt.LICENSE +++ b/src/licensedcode/data/licenses/thomas-bandt.LICENSE @@ -1,3 +1,13 @@ +--- +key: thomas-bandt +short_name: Thomas Bandt License +name: Thomas Bandt License +category: Free Restricted +owner: Thomas Bandt +homepage_url: https://github.com/aspnetde/UrlRewritingNet/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-thomas-bandt +--- + This Library is provided as is. No warrenty is expressed or implied. You can use these Library in free and commercial projects without a fee. @@ -13,4 +23,4 @@ include your modifications. This Copyright notice must be included in the modified source code. You are not allowed to build a commercial rewrite engine based on -this code. +this code. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/thomas-bandt.yml b/src/licensedcode/data/licenses/thomas-bandt.yml deleted file mode 100644 index c4bec8468b9..00000000000 --- a/src/licensedcode/data/licenses/thomas-bandt.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: thomas-bandt -short_name: Thomas Bandt License -name: Thomas Bandt License -category: Free Restricted -owner: Thomas Bandt -homepage_url: https://github.com/aspnetde/UrlRewritingNet/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-thomas-bandt diff --git a/src/licensedcode/data/licenses/thor-pl.LICENSE b/src/licensedcode/data/licenses/thor-pl.LICENSE index 89045401179..539fe0eba1d 100644 --- a/src/licensedcode/data/licenses/thor-pl.LICENSE +++ b/src/licensedcode/data/licenses/thor-pl.LICENSE @@ -1,3 +1,13 @@ +--- +key: thor-pl +short_name: Thor Public License +name: Thor Public License +category: Copyleft Limited +owner: Thor Project +homepage_url: https://fedoraproject.org/wiki/Licensing:ThorPublicLicense?rd=Licensing/ThorPublicLicense +spdx_license_key: LicenseRef-scancode-thor-pl +--- + THOR Public Licence (TPL) 0. Notes of Origin diff --git a/src/licensedcode/data/licenses/thor-pl.yml b/src/licensedcode/data/licenses/thor-pl.yml deleted file mode 100644 index 690c796e66b..00000000000 --- a/src/licensedcode/data/licenses/thor-pl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: thor-pl -short_name: Thor Public License -name: Thor Public License -category: Copyleft Limited -owner: Thor Project -homepage_url: https://fedoraproject.org/wiki/Licensing:ThorPublicLicense?rd=Licensing/ThorPublicLicense -spdx_license_key: LicenseRef-scancode-thor-pl diff --git a/src/licensedcode/data/licenses/ti-broadband-apps.LICENSE b/src/licensedcode/data/licenses/ti-broadband-apps.LICENSE index 590d12f7190..49c137e6af4 100644 --- a/src/licensedcode/data/licenses/ti-broadband-apps.LICENSE +++ b/src/licensedcode/data/licenses/ti-broadband-apps.LICENSE @@ -1,3 +1,14 @@ +--- +key: ti-broadband-apps +short_name: TI Broadband Applications License +name: Texas Instruments Broadband Applications License +category: Proprietary Free +owner: TI - Texas Instruments +spdx_license_key: LicenseRef-scancode-ti-broadband-apps +other_urls: + - http://www.ti.com/ +--- + 1. License - Texas Instruments (hereinafter "TI"), grants you a license to use the software program and documentation in this package ("Licensed Materials") for Texas Instruments broadband products. diff --git a/src/licensedcode/data/licenses/ti-broadband-apps.yml b/src/licensedcode/data/licenses/ti-broadband-apps.yml deleted file mode 100644 index c7cae6c0dc6..00000000000 --- a/src/licensedcode/data/licenses/ti-broadband-apps.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ti-broadband-apps -short_name: TI Broadband Applications License -name: Texas Instruments Broadband Applications License -category: Proprietary Free -owner: TI - Texas Instruments -spdx_license_key: LicenseRef-scancode-ti-broadband-apps -other_urls: - - http://www.ti.com/ diff --git a/src/licensedcode/data/licenses/ti-linux-firmware.LICENSE b/src/licensedcode/data/licenses/ti-linux-firmware.LICENSE index f8e41cb27f4..4615d7742b6 100644 --- a/src/licensedcode/data/licenses/ti-linux-firmware.LICENSE +++ b/src/licensedcode/data/licenses/ti-linux-firmware.LICENSE @@ -1,3 +1,17 @@ +--- +key: ti-linux-firmware +short_name: TI Linux Firmware License +name: TI Linux Firmware License +category: Proprietary Free +owner: TI - Texas Instruments +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.wl1251 +spdx_license_key: LicenseRef-scancode-ti-linux-firmware +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-tspa + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-keystone + - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-connectivity +--- + Limited License. Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive diff --git a/src/licensedcode/data/licenses/ti-linux-firmware.yml b/src/licensedcode/data/licenses/ti-linux-firmware.yml deleted file mode 100644 index 11de1b1676e..00000000000 --- a/src/licensedcode/data/licenses/ti-linux-firmware.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ti-linux-firmware -short_name: TI Linux Firmware License -name: TI Linux Firmware License -category: Proprietary Free -owner: TI - Texas Instruments -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.wl1251 -spdx_license_key: LicenseRef-scancode-ti-linux-firmware -text_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-tspa - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-keystone - - https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.ti-connectivity diff --git a/src/licensedcode/data/licenses/ti-restricted.LICENSE b/src/licensedcode/data/licenses/ti-restricted.LICENSE index 77148fe67df..b579072c7c1 100644 --- a/src/licensedcode/data/licenses/ti-restricted.LICENSE +++ b/src/licensedcode/data/licenses/ti-restricted.LICENSE @@ -1,3 +1,13 @@ +--- +key: ti-restricted +short_name: TI Restricted Use License +name: Texas Instruments Restricted Use License +category: Commercial +owner: TI - Texas Instruments +spdx_license_key: LicenseRef-scancode-ti-restricted +minimum_coverage: 50 +--- + Permission is hereby granted to licensees of Texas Instruments Incorporated (TI) products to use this computer program for the sole purpose of implementing a licensee product based on TI products. @@ -7,4 +17,4 @@ program, whether in part or in whole, are granted. TI makes no representation or warranties with respect to the performance of this computer program, and specifically disclaims any responsibility for any damages, special or consequential, -connected with the use of this program. +connected with the use of this program. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ti-restricted.yml b/src/licensedcode/data/licenses/ti-restricted.yml deleted file mode 100644 index 5586db2219b..00000000000 --- a/src/licensedcode/data/licenses/ti-restricted.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: ti-restricted -short_name: TI Restricted Use License -name: Texas Instruments Restricted Use License -category: Commercial -owner: TI - Texas Instruments -spdx_license_key: LicenseRef-scancode-ti-restricted -minimum_coverage: 50 diff --git a/src/licensedcode/data/licenses/tidy.LICENSE b/src/licensedcode/data/licenses/tidy.LICENSE index 1bddf677150..b6fb2b9cec9 100644 --- a/src/licensedcode/data/licenses/tidy.LICENSE +++ b/src/licensedcode/data/licenses/tidy.LICENSE @@ -1,3 +1,13 @@ +--- +key: tidy +short_name: Tidy License +name: Tidy License +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md +spdx_license_key: HTMLTIDY +--- + The contributing author(s) would like to thank all those who helped with testing, bug fixes and suggestions for improvements. This wouldn't have been possible without your help. @@ -27,4 +37,4 @@ source or altered source distribution. The copyright holders and contributing author(s) specifically permit, without fee, and encourage the use of this source code as a component for supporting the Hypertext Markup Language in commercial products. If you use this source code in -a product, acknowledgment is not required but would be appreciated. +a product, acknowledgment is not required but would be appreciated. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tidy.yml b/src/licensedcode/data/licenses/tidy.yml deleted file mode 100644 index 274ce9ad631..00000000000 --- a/src/licensedcode/data/licenses/tidy.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: tidy -short_name: Tidy License -name: Tidy License -category: Permissive -owner: W3C - World Wide Web Consortium -homepage_url: https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md -spdx_license_key: HTMLTIDY diff --git a/src/licensedcode/data/licenses/tiger-crypto.LICENSE b/src/licensedcode/data/licenses/tiger-crypto.LICENSE index 3d2ac71f8f2..c4171c4f0aa 100644 --- a/src/licensedcode/data/licenses/tiger-crypto.LICENSE +++ b/src/licensedcode/data/licenses/tiger-crypto.LICENSE @@ -1,3 +1,17 @@ +--- +key: tiger-crypto +short_name: Tiger Cryptography License +name: Tiger Cryptography License +category: Permissive +owner: Tiger +spdx_license_key: LicenseRef-scancode-tiger-crypto +faq_url: http://www.cs.technion.ac.il/~biham/Reports/Tiger/ +other_urls: + - http://www.cs.technion.ac.il/~biham/Reports/Tiger/ +ignorable_urls: + - http://www.cs.technion.ac.il/~biham/Reports/Tiger/ +--- + Tiger Cryptography This code comes from the reference implementation of the Tiger cryptographic hash function. The only modification made is to pull out the data types and the api into a header file (this file, tiger.h). The reference implementation is available at: diff --git a/src/licensedcode/data/licenses/tiger-crypto.yml b/src/licensedcode/data/licenses/tiger-crypto.yml deleted file mode 100644 index d696ec8f0c1..00000000000 --- a/src/licensedcode/data/licenses/tiger-crypto.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: tiger-crypto -short_name: Tiger Cryptography License -name: Tiger Cryptography License -category: Permissive -owner: Tiger -spdx_license_key: LicenseRef-scancode-tiger-crypto -faq_url: http://www.cs.technion.ac.il/~biham/Reports/Tiger/ -other_urls: - - http://www.cs.technion.ac.il/~biham/Reports/Tiger/ -ignorable_urls: - - http://www.cs.technion.ac.il/~biham/Reports/Tiger/ diff --git a/src/licensedcode/data/licenses/tigra-calendar-3.2.LICENSE b/src/licensedcode/data/licenses/tigra-calendar-3.2.LICENSE index e4cea890713..df01ebf6e96 100644 --- a/src/licensedcode/data/licenses/tigra-calendar-3.2.LICENSE +++ b/src/licensedcode/data/licenses/tigra-calendar-3.2.LICENSE @@ -1,3 +1,13 @@ +--- +key: tigra-calendar-3.2 +short_name: Tigra Calendar 3.2 License +name: Tigra Calendar v3.2 License +category: Permissive +owner: Softcomplex +homepage_url: http://www.softcomplex.com/products/tigra_calendar/ +spdx_license_key: LicenseRef-scancode-tigra-calendar-3.2 +--- + Tigra Calendar v3.2 License Permission given to use this script in ANY kind of applications if header lines are left unchanged. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tigra-calendar-3.2.yml b/src/licensedcode/data/licenses/tigra-calendar-3.2.yml deleted file mode 100644 index 6e42da757ec..00000000000 --- a/src/licensedcode/data/licenses/tigra-calendar-3.2.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: tigra-calendar-3.2 -short_name: Tigra Calendar 3.2 License -name: Tigra Calendar v3.2 License -category: Permissive -owner: Softcomplex -homepage_url: http://www.softcomplex.com/products/tigra_calendar/ -spdx_license_key: LicenseRef-scancode-tigra-calendar-3.2 diff --git a/src/licensedcode/data/licenses/tigra-calendar-4.0.LICENSE b/src/licensedcode/data/licenses/tigra-calendar-4.0.LICENSE index 371e5674c30..fe68f5b9c33 100644 --- a/src/licensedcode/data/licenses/tigra-calendar-4.0.LICENSE +++ b/src/licensedcode/data/licenses/tigra-calendar-4.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: tigra-calendar-4.0 +short_name: Tigra Calendar 4.0 License +name: Tigra Calendar v4.0 License +category: Permissive +owner: Softcomplex +homepage_url: http://www.javascript-calendar.com/docs/#license +spdx_license_key: LicenseRef-scancode-tigra-calendar-4.0 +ignorable_urls: + - http://www.javascript-calendar.com/docs/#license +--- + Tigra Calendar v4.0 License http://www.javascript-calendar.com/docs/#license diff --git a/src/licensedcode/data/licenses/tigra-calendar-4.0.yml b/src/licensedcode/data/licenses/tigra-calendar-4.0.yml deleted file mode 100644 index 77036ebf2a6..00000000000 --- a/src/licensedcode/data/licenses/tigra-calendar-4.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: tigra-calendar-4.0 -short_name: Tigra Calendar 4.0 License -name: Tigra Calendar v4.0 License -category: Permissive -owner: Softcomplex -homepage_url: http://www.javascript-calendar.com/docs/#license -spdx_license_key: LicenseRef-scancode-tigra-calendar-4.0 -ignorable_urls: - - http://www.javascript-calendar.com/docs/#license diff --git a/src/licensedcode/data/licenses/tim-janik-2003.LICENSE b/src/licensedcode/data/licenses/tim-janik-2003.LICENSE index 725906707f0..4f960529712 100644 --- a/src/licensedcode/data/licenses/tim-janik-2003.LICENSE +++ b/src/licensedcode/data/licenses/tim-janik-2003.LICENSE @@ -1,3 +1,13 @@ +--- +key: tim-janik-2003 +short_name: Tim Janik License 2003 +name: Tim Janik License 2003 +category: Permissive +owner: Tim Janik +homepage_url: https://gnome.pages.gitlab.gnome.org/glib/coverage/glib/gbsearcharray.h.gcov.html +spdx_license_key: LicenseRef-scancode-tim-janik-2003 +--- + This software is provided "as is"; redistribution and modification is permitted, provided that the following disclaimer is retained. diff --git a/src/licensedcode/data/licenses/tim-janik-2003.yml b/src/licensedcode/data/licenses/tim-janik-2003.yml deleted file mode 100644 index d20e5d9f88d..00000000000 --- a/src/licensedcode/data/licenses/tim-janik-2003.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: tim-janik-2003 -short_name: Tim Janik License 2003 -name: Tim Janik License 2003 -category: Permissive -owner: Tim Janik -homepage_url: https://gnome.pages.gitlab.gnome.org/glib/coverage/glib/gbsearcharray.h.gcov.html -spdx_license_key: LicenseRef-scancode-tim-janik-2003 diff --git a/src/licensedcode/data/licenses/timestamp-picker.LICENSE b/src/licensedcode/data/licenses/timestamp-picker.LICENSE index 1d27b390e26..e4b4bca32a6 100644 --- a/src/licensedcode/data/licenses/timestamp-picker.LICENSE +++ b/src/licensedcode/data/licenses/timestamp-picker.LICENSE @@ -1,3 +1,12 @@ +--- +key: timestamp-picker +short_name: Timestamp Picker License +name: Timestamp Picker License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-timestamp-picker +--- + Permission given to use this script in any kind of applications if header lines are left unchanged. Feel free to contact the author for feature requests and/or donations. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/timestamp-picker.yml b/src/licensedcode/data/licenses/timestamp-picker.yml deleted file mode 100644 index 43c93742932..00000000000 --- a/src/licensedcode/data/licenses/timestamp-picker.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: timestamp-picker -short_name: Timestamp Picker License -name: Timestamp Picker License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-timestamp-picker diff --git a/src/licensedcode/data/licenses/tizen-sdk.LICENSE b/src/licensedcode/data/licenses/tizen-sdk.LICENSE index bddb4b65f4b..672f45dc6f5 100644 --- a/src/licensedcode/data/licenses/tizen-sdk.LICENSE +++ b/src/licensedcode/data/licenses/tizen-sdk.LICENSE @@ -1,3 +1,13 @@ +--- +key: tizen-sdk +short_name: Tizen SDK License +name: Tizen SDK License +category: Proprietary Free +owner: Samsung +homepage_url: https://developer.tizen.org/tizen-sdk-license-agreement +spdx_license_key: LicenseRef-scancode-tizen-sdk +--- + Tizen SDK License Agreement TIZEN SOFTWARE DEVELOPMENT KIT ("SDK") LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/tizen-sdk.yml b/src/licensedcode/data/licenses/tizen-sdk.yml deleted file mode 100644 index 57bac03987f..00000000000 --- a/src/licensedcode/data/licenses/tizen-sdk.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: tizen-sdk -short_name: Tizen SDK License -name: Tizen SDK License -category: Proprietary Free -owner: Samsung -homepage_url: https://developer.tizen.org/tizen-sdk-license-agreement -spdx_license_key: LicenseRef-scancode-tizen-sdk diff --git a/src/licensedcode/data/licenses/tmate.LICENSE b/src/licensedcode/data/licenses/tmate.LICENSE index ab0989ba29b..6efbb6adfb6 100644 --- a/src/licensedcode/data/licenses/tmate.LICENSE +++ b/src/licensedcode/data/licenses/tmate.LICENSE @@ -1,3 +1,21 @@ +--- +key: tmate +short_name: TMate Open Source License +name: TMate Open Source License +category: Copyleft +owner: SVNKit (TMate) +homepage_url: http://svnkit.com/licensing.html +spdx_license_key: TMate +text_urls: + - http://svnkit.com/license.html +ignorable_copyrights: + - Copyright (c) 2004-2009 TMate Software +ignorable_holders: + - TMate Software +ignorable_emails: + - support@svnkit.com +--- + This license applies to all portions of TMate SVNKit library, which are not externally-maintained libraries (e.g. Ganymed SSH library). diff --git a/src/licensedcode/data/licenses/tmate.yml b/src/licensedcode/data/licenses/tmate.yml deleted file mode 100644 index 8327313137b..00000000000 --- a/src/licensedcode/data/licenses/tmate.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: tmate -short_name: TMate Open Source License -name: TMate Open Source License -category: Copyleft -owner: SVNKit (TMate) -homepage_url: http://svnkit.com/licensing.html -spdx_license_key: TMate -text_urls: - - http://svnkit.com/license.html -ignorable_copyrights: - - Copyright (c) 2004-2009 TMate Software -ignorable_holders: - - TMate Software -ignorable_emails: - - support@svnkit.com diff --git a/src/licensedcode/data/licenses/torque-1.1.LICENSE b/src/licensedcode/data/licenses/torque-1.1.LICENSE index 44612f2f40c..11840ef7806 100644 --- a/src/licensedcode/data/licenses/torque-1.1.LICENSE +++ b/src/licensedcode/data/licenses/torque-1.1.LICENSE @@ -1,3 +1,42 @@ +--- +key: torque-1.1 +short_name: TORQUE 1.1 +name: TORQUE v2.5+ Software License v1.1 +category: Copyleft Limited +owner: Adaptive Computing Enterprises +homepage_url: https://fedoraproject.org/wiki/Licensing/TORQUEv1.1 +notes: | + Per Fedora, when the licensing for TORQUE 2.4 expired, the TORQUE upstream + drafted a new license with updated contact information. The intention was + to have a lawyer retain the same functionality as the older licensing, but + because part of it was misread or accidentally ignored, v1.0 of the TORQUE + v2.5+ Software License contained commercial use restrictions which made it + non-free. After this issue was raised on the TORQUE mailing lists, the + TORQUE upstream revised the license to remove the commercial use + restrictions in v1.1. The TORQUE v2.5+ Software License v1.1 is Free, but + GPL incompatible because of the advertising clause. Also noteworthy is that + this license references the fact that much of the TORQUE v2.5 code is + derived from OpenPBS''s code, so the TORQUE v2.5+ software is properly dual + licensed TORQUEv1.1 and OpenPBS. This also means that this license is not + useful for other codebases without removing Note 1. +spdx_license_key: TORQUE-1.1 +ignorable_copyrights: + - Copyright (c) 2010-2011 Adaptive Computing Enterprises, Inc. +ignorable_holders: + - Adaptive Computing Enterprises, Inc. +ignorable_authors: + - NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian +ignorable_urls: + - http://www.adaptivecomputing.com/ + - http://www.clusterresources.com/ + - http://www.clusterresources.com/products/ + - http://www.pbsworks.com/ResLibSearchResult.aspx?keywords=openpbs&industry=All&pro + - http://www.supercluster.org/mailman/listinfo/torqueusers +ignorable_emails: + - torque-support@adaptivecomputing.com + - torqueusers@supercluster.org +--- + TORQUE v2.5+ Software License v1.1 Copyright (c) 2010-2011 Adaptive Computing Enterprises, Inc. All rights reserved. diff --git a/src/licensedcode/data/licenses/torque-1.1.yml b/src/licensedcode/data/licenses/torque-1.1.yml deleted file mode 100644 index ee6220e095d..00000000000 --- a/src/licensedcode/data/licenses/torque-1.1.yml +++ /dev/null @@ -1,36 +0,0 @@ -key: torque-1.1 -short_name: TORQUE 1.1 -name: TORQUE v2.5+ Software License v1.1 -category: Copyleft Limited -owner: Adaptive Computing Enterprises -homepage_url: https://fedoraproject.org/wiki/Licensing/TORQUEv1.1 -notes: | - Per Fedora, when the licensing for TORQUE 2.4 expired, the TORQUE upstream - drafted a new license with updated contact information. The intention was - to have a lawyer retain the same functionality as the older licensing, but - because part of it was misread or accidentally ignored, v1.0 of the TORQUE - v2.5+ Software License contained commercial use restrictions which made it - non-free. After this issue was raised on the TORQUE mailing lists, the - TORQUE upstream revised the license to remove the commercial use - restrictions in v1.1. The TORQUE v2.5+ Software License v1.1 is Free, but - GPL incompatible because of the advertising clause. Also noteworthy is that - this license references the fact that much of the TORQUE v2.5 code is - derived from OpenPBS''s code, so the TORQUE v2.5+ software is properly dual - licensed TORQUEv1.1 and OpenPBS. This also means that this license is not - useful for other codebases without removing Note 1. -spdx_license_key: TORQUE-1.1 -ignorable_copyrights: - - Copyright (c) 2010-2011 Adaptive Computing Enterprises, Inc. -ignorable_holders: - - Adaptive Computing Enterprises, Inc. -ignorable_authors: - - NASA Ames Research Center, Lawrence Livermore National Laboratory, and Veridian -ignorable_urls: - - http://www.adaptivecomputing.com/ - - http://www.clusterresources.com/ - - http://www.clusterresources.com/products/ - - http://www.pbsworks.com/ResLibSearchResult.aspx?keywords=openpbs&industry=All&pro - - http://www.supercluster.org/mailman/listinfo/torqueusers -ignorable_emails: - - torque-support@adaptivecomputing.com - - torqueusers@supercluster.org diff --git a/src/licensedcode/data/licenses/tosl.LICENSE b/src/licensedcode/data/licenses/tosl.LICENSE index d379fd2cc28..64732a6dcd9 100644 --- a/src/licensedcode/data/licenses/tosl.LICENSE +++ b/src/licensedcode/data/licenses/tosl.LICENSE @@ -1,3 +1,30 @@ +--- +key: tosl +short_name: TOSL 1.0a +name: Trusster Open Source License 1.0a +category: Copyleft +owner: Trusster +homepage_url: https://fedoraproject.org/wiki/Licensing/TOSL +notes: | + Per Fedora, the Trusster Open Source License (TOSL) is a derivation of the + Sleepycat License. The one significant difference is that where the + Sleepycat License says The source code must either be included in the + distribution or be available for no more than the cost of distribution plus + a nominal fee, and must be freely redistributable under reasonable + conditions. TOSL is somewhat more specific The source code must either be + included in the distribution or be available in a timely fashion for no + more than the cost of distribution plus a nominal fee, and must be freely + redistributable under reasonable and no more restrictive conditions. While + the Sleepycat License is considered to be a free, GPL-compatible license, + TOSL is GPL-incompatible because of the addition of the "no more + restrictive" language. +spdx_license_key: TOSL +ignorable_copyrights: + - copyright (c) 2006 Mike Mintz and Robert Ekendahl +ignorable_holders: + - Mike Mintz and Robert Ekendahl +--- + Trusster Open Source License version 1.0a (TRUST) copyright (c) 2006 Mike Mintz and Robert Ekendahl. All rights reserved. @@ -31,4 +58,4 @@ 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. +OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tosl.yml b/src/licensedcode/data/licenses/tosl.yml deleted file mode 100644 index 245a061c1d3..00000000000 --- a/src/licensedcode/data/licenses/tosl.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: tosl -short_name: TOSL 1.0a -name: Trusster Open Source License 1.0a -category: Copyleft -owner: Trusster -homepage_url: https://fedoraproject.org/wiki/Licensing/TOSL -notes: | - Per Fedora, the Trusster Open Source License (TOSL) is a derivation of the - Sleepycat License. The one significant difference is that where the - Sleepycat License says The source code must either be included in the - distribution or be available for no more than the cost of distribution plus - a nominal fee, and must be freely redistributable under reasonable - conditions. TOSL is somewhat more specific The source code must either be - included in the distribution or be available in a timely fashion for no - more than the cost of distribution plus a nominal fee, and must be freely - redistributable under reasonable and no more restrictive conditions. While - the Sleepycat License is considered to be a free, GPL-compatible license, - TOSL is GPL-incompatible because of the addition of the "no more - restrictive" language. -spdx_license_key: TOSL -ignorable_copyrights: - - copyright (c) 2006 Mike Mintz and Robert Ekendahl -ignorable_holders: - - Mike Mintz and Robert Ekendahl diff --git a/src/licensedcode/data/licenses/tpl-1.0.LICENSE b/src/licensedcode/data/licenses/tpl-1.0.LICENSE index 2e11c7ace3d..fb5dc9499a6 100644 --- a/src/licensedcode/data/licenses/tpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/tpl-1.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: tpl-1.0 +short_name: TPL 1.0 +name: Terracotta Public License 1.0 +category: Copyleft Limited +owner: Terracotta +homepage_url: http://terracotta.org/legal/terracotta-public-license +spdx_license_key: LicenseRef-scancode-tpl-1.0 +text_urls: + - http://terracotta.org/legal/terracotta-public-license +faq_url: http://terracotta.org/legal/licensing-faq +other_urls: + - http://terracotta.org/legal/licensing-overview +ignorable_urls: + - http://www.terracotta.org/TPL +--- + Terracotta Public License (version 1.0) 1. Definitions diff --git a/src/licensedcode/data/licenses/tpl-1.0.yml b/src/licensedcode/data/licenses/tpl-1.0.yml deleted file mode 100644 index b683761d4a2..00000000000 --- a/src/licensedcode/data/licenses/tpl-1.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: tpl-1.0 -short_name: TPL 1.0 -name: Terracotta Public License 1.0 -category: Copyleft Limited -owner: Terracotta -homepage_url: http://terracotta.org/legal/terracotta-public-license -spdx_license_key: LicenseRef-scancode-tpl-1.0 -text_urls: - - http://terracotta.org/legal/terracotta-public-license -faq_url: http://terracotta.org/legal/licensing-faq -other_urls: - - http://terracotta.org/legal/licensing-overview -ignorable_urls: - - http://www.terracotta.org/TPL diff --git a/src/licensedcode/data/licenses/trademark-notice.LICENSE b/src/licensedcode/data/licenses/trademark-notice.LICENSE new file mode 100644 index 00000000000..99728992e15 --- /dev/null +++ b/src/licensedcode/data/licenses/trademark-notice.LICENSE @@ -0,0 +1,9 @@ +--- +key: trademark-notice +is_deprecated: yes +short_name: Trademark Notice +name: Generic Trademark Notice +category: Unstated License +owner: Unspecified +notes: replaced by generic-trademark +--- diff --git a/src/licensedcode/data/licenses/trademark-notice.yml b/src/licensedcode/data/licenses/trademark-notice.yml deleted file mode 100644 index 3100b240ce9..00000000000 --- a/src/licensedcode/data/licenses/trademark-notice.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: trademark-notice -is_deprecated: yes -short_name: Trademark Notice -name: Generic Trademark Notice -category: Unstated License -owner: Unspecified -notes: replaced by generic-trademark \ No newline at end of file diff --git a/src/licensedcode/data/licenses/trca-odl-1.0.LICENSE b/src/licensedcode/data/licenses/trca-odl-1.0.LICENSE index 3cf3699f578..ab6bd8d4d8d 100644 --- a/src/licensedcode/data/licenses/trca-odl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/trca-odl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: trca-odl-1.0 +short_name: TRCA Open Data Licence 1.0 +name: Toronto Region Conservation Authority Open Data Licence 1.0 +category: Free Restricted +owner: Toronto Region Conservation Authority +homepage_url: https://trca.ca/datalicense +spdx_license_key: LicenseRef-scancode-trca-odl-1.0 +ignorable_urls: + - https://trca.ca/datalicense +--- + Toronto and Region Conservation Authority (TRCA) Open Data Licence v1.0 @@ -58,4 +70,4 @@ Versioning This is version 1.0 of the TRCA Open Data Licence. Disclaimer -The information provided herein (the "Data") is provided for general information purposes only and the Data does not constitute opinions or advice. Toronto and Region Conservation Authority ("TRCA") does not warrant or guarantee the accuracy or completeness of any Data provided to any user of Data (the "Recipient"). TRCA accepts and has no responsibility or liability whatsoever for any loss, costs, expense, damages or liabilities suffered or incurred by anyone as a result of the Data, or incompleteness or inaccuracy thereof, or the Licence granted herein to the Recipient, or as a result of any decision or action made on the basis of the Data or the Licence. The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities. In consideration for the Licence, the Recipient acknowledges and agrees that the use of the Data is at the sole risk of the Recipient and subject to the terms and conditions as set forth in the Licence, a copy of which may be accessed here: https://trca.ca/datalicense. By accessing the Data the Recipient agrees to the foregoing and to the terms of the Licence. +The information provided herein (the "Data") is provided for general information purposes only and the Data does not constitute opinions or advice. Toronto and Region Conservation Authority ("TRCA") does not warrant or guarantee the accuracy or completeness of any Data provided to any user of Data (the "Recipient"). TRCA accepts and has no responsibility or liability whatsoever for any loss, costs, expense, damages or liabilities suffered or incurred by anyone as a result of the Data, or incompleteness or inaccuracy thereof, or the Licence granted herein to the Recipient, or as a result of any decision or action made on the basis of the Data or the Licence. The Recipient hereby releases TRCA from, and waives as against TRCA, any claims and demands the Recipient may have arising from any such loss, costs, expense, damages or liabilities. In consideration for the Licence, the Recipient acknowledges and agrees that the use of the Data is at the sole risk of the Recipient and subject to the terms and conditions as set forth in the Licence, a copy of which may be accessed here: https://trca.ca/datalicense. By accessing the Data the Recipient agrees to the foregoing and to the terms of the Licence. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/trca-odl-1.0.yml b/src/licensedcode/data/licenses/trca-odl-1.0.yml deleted file mode 100644 index af755ad6a58..00000000000 --- a/src/licensedcode/data/licenses/trca-odl-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: trca-odl-1.0 -short_name: TRCA Open Data Licence 1.0 -name: Toronto Region Conservation Authority Open Data Licence 1.0 -category: Free Restricted -owner: Toronto Region Conservation Authority -homepage_url: https://trca.ca/datalicense -spdx_license_key: LicenseRef-scancode-trca-odl-1.0 -ignorable_urls: - - https://trca.ca/datalicense diff --git a/src/licensedcode/data/licenses/treeview-developer.LICENSE b/src/licensedcode/data/licenses/treeview-developer.LICENSE index 441a8b2b7de..45a4ecd624c 100644 --- a/src/licensedcode/data/licenses/treeview-developer.LICENSE +++ b/src/licensedcode/data/licenses/treeview-developer.LICENSE @@ -1,3 +1,22 @@ +--- +key: treeview-developer +short_name: TreeView Developer License +name: TreeView Developer License +category: Proprietary Free +owner: GubuSoft +homepage_url: http://www.treeview.net/tv/license_dev.asp +spdx_license_key: LicenseRef-scancode-treeview-developer +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com) +ignorable_holders: + - Conor O'Mahony +ignorable_urls: + - http://www.treeview.net/ +ignorable_emails: + - gubusoft@gubusoft.com +--- + TreeView License: Developer's License This License For Customer Use of GubuSoft TreeView Software ("LICENSE") is the agreement which governs use of the TreeView software by GubuSoft ("GUBUSOFT") downloadable herefrom, including computer software and associated documentation ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE. diff --git a/src/licensedcode/data/licenses/treeview-developer.yml b/src/licensedcode/data/licenses/treeview-developer.yml deleted file mode 100644 index 4d63cf053c5..00000000000 --- a/src/licensedcode/data/licenses/treeview-developer.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: treeview-developer -short_name: TreeView Developer License -name: TreeView Developer License -category: Proprietary Free -owner: GubuSoft -homepage_url: http://www.treeview.net/tv/license_dev.asp -spdx_license_key: LicenseRef-scancode-treeview-developer -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com) -ignorable_holders: - - Conor O'Mahony -ignorable_urls: - - http://www.treeview.net/ -ignorable_emails: - - gubusoft@gubusoft.com diff --git a/src/licensedcode/data/licenses/treeview-distributor.LICENSE b/src/licensedcode/data/licenses/treeview-distributor.LICENSE index 849d0dee4be..8a83cd4b6a0 100644 --- a/src/licensedcode/data/licenses/treeview-distributor.LICENSE +++ b/src/licensedcode/data/licenses/treeview-distributor.LICENSE @@ -1,3 +1,22 @@ +--- +key: treeview-distributor +short_name: TreeView Distributor License +name: TreeView Distributor License +category: Proprietary Free +owner: GubuSoft +homepage_url: http://www.treeview.net/tv/license_dist.asp +spdx_license_key: LicenseRef-scancode-treeview-distributor +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com) +ignorable_holders: + - Conor O'Mahony +ignorable_urls: + - http://www.treeview.net/ +ignorable_emails: + - gubusoft@gubusoft.com +--- + TreeView License: Distributor's License This License For Customer Use of GubuSoft TreeView Software ("LICENSE") is the agreement which governs use of the TreeView software by GubuSoft ("GUBUSOFT") downloadable herefrom, including computer software and associated documentation ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not use the SOFTWARE. diff --git a/src/licensedcode/data/licenses/treeview-distributor.yml b/src/licensedcode/data/licenses/treeview-distributor.yml deleted file mode 100644 index 7b6a601ce46..00000000000 --- a/src/licensedcode/data/licenses/treeview-distributor.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: treeview-distributor -short_name: TreeView Distributor License -name: TreeView Distributor License -category: Proprietary Free -owner: GubuSoft -homepage_url: http://www.treeview.net/tv/license_dist.asp -spdx_license_key: LicenseRef-scancode-treeview-distributor -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 2006 Conor O'Mahony (gubusoft@gubusoft.com) -ignorable_holders: - - Conor O'Mahony -ignorable_urls: - - http://www.treeview.net/ -ignorable_emails: - - gubusoft@gubusoft.com diff --git a/src/licensedcode/data/licenses/triptracker.LICENSE b/src/licensedcode/data/licenses/triptracker.LICENSE index d8e6aa6720a..7ff49480bb3 100644 --- a/src/licensedcode/data/licenses/triptracker.LICENSE +++ b/src/licensedcode/data/licenses/triptracker.LICENSE @@ -1,3 +1,15 @@ +--- +key: triptracker +short_name: TripTracker License +name: TripTracker Slideshow License +category: Proprietary Free +owner: Klika +homepage_url: http://slideshow.triptracker.net/ +spdx_license_key: LicenseRef-scancode-triptracker +ignorable_urls: + - http://slideshow.triptracker.net/ +--- + This code is the property of Klika d.o.o. The code may not be included in, invoked from, or otherwise used in any software, service, device, or process diff --git a/src/licensedcode/data/licenses/triptracker.yml b/src/licensedcode/data/licenses/triptracker.yml deleted file mode 100644 index 54a8883ad7e..00000000000 --- a/src/licensedcode/data/licenses/triptracker.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: triptracker -short_name: TripTracker License -name: TripTracker Slideshow License -category: Proprietary Free -owner: Klika -homepage_url: http://slideshow.triptracker.net/ -spdx_license_key: LicenseRef-scancode-triptracker -ignorable_urls: - - http://slideshow.triptracker.net/ diff --git a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.0.LICENSE b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.0.LICENSE index 690bb7586a7..6389eeaa28a 100644 --- a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: trolltech-gpl-exception-1.0 +short_name: Trolltech GPL Exception 1.0 +name: Trolltech GPL Exception version v1.0 +category: Copyleft +owner: Trolltech +homepage_url: http://www.trolltech.com/products/qt/gplexception/ +notes: Trolltech is now The Qt Company +is_exception: yes +spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.0 +--- + Trolltech GPL Exception version 1.0 Additional rights granted beyond the GPL (the "Exception"). @@ -76,4 +88,4 @@ of the Licensed Software: You may link applications with binary pre-installed versions of the Licensed Software, provided that such applications have been developed and are deployed in accordance in accordance with the terms and conditions of the Qt Commercial License -Agreement. +Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.0.yml b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.0.yml deleted file mode 100644 index b3f440e0a0e..00000000000 --- a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: trolltech-gpl-exception-1.0 -short_name: Trolltech GPL Exception 1.0 -name: Trolltech GPL Exception version v1.0 -category: Copyleft -owner: Trolltech -homepage_url: http://www.trolltech.com/products/qt/gplexception/ -notes: Trolltech is now The Qt Company -is_exception: yes -spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.0 diff --git a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.1.LICENSE b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.1.LICENSE index b74e6afc19a..210b33a20e5 100644 --- a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.1.LICENSE +++ b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.1.LICENSE @@ -1,3 +1,15 @@ +--- +key: trolltech-gpl-exception-1.1 +short_name: Trolltech GPL Exception 1.1 +name: Trolltech GPL Exception version v1.1 +category: Copyleft +owner: Trolltech +homepage_url: https://doc.qt.io/archives/4.3/license-gpl-exceptions.html +notes: Trolltech is now The Qt Company +is_exception: yes +spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.1 +--- + Trolltech GPL Exception Version 1.1 Additional rights granted beyond the GPL (the "Exception"). diff --git a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.1.yml b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.1.yml deleted file mode 100644 index d10e2e0c3c7..00000000000 --- a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: trolltech-gpl-exception-1.1 -short_name: Trolltech GPL Exception 1.1 -name: Trolltech GPL Exception version v1.1 -category: Copyleft -owner: Trolltech -homepage_url: https://doc.qt.io/archives/4.3/license-gpl-exceptions.html -notes: Trolltech is now The Qt Company -is_exception: yes -spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.1 diff --git a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.2.LICENSE b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.2.LICENSE index db5af95e36f..788e52a019c 100644 --- a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.2.LICENSE +++ b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.2.LICENSE @@ -1,3 +1,14 @@ +--- +key: trolltech-gpl-exception-1.2 +short_name: Trolltech GPL Exception 1.2 +name: Trolltech GPL Exception version v1.2 +category: Copyleft +owner: Trolltech +notes: Trolltech is now The Qt Company +is_exception: yes +spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.2 +--- + Trolltech GPL Exception version 1.2 =================================== @@ -88,6 +99,4 @@ contracts, non-disclosure agreements, and employee contracts. the Licensed Software: You may link applications with binary pre-installed versions of the Licensed Software, provided that such applications have been developed and are deployed in ac cordance with the terms and conditions of the -Qt Commercial License Agreement. - - +Qt Commercial License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.2.yml b/src/licensedcode/data/licenses/trolltech-gpl-exception-1.2.yml deleted file mode 100644 index 9abcc339d87..00000000000 --- a/src/licensedcode/data/licenses/trolltech-gpl-exception-1.2.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: trolltech-gpl-exception-1.2 -short_name: Trolltech GPL Exception 1.2 -name: Trolltech GPL Exception version v1.2 -category: Copyleft -owner: Trolltech -notes: Trolltech is now The Qt Company -is_exception: yes -spdx_license_key: LicenseRef-scancode-trolltech-gpl-exception-1.2 diff --git a/src/licensedcode/data/licenses/truecrypt-3.1.LICENSE b/src/licensedcode/data/licenses/truecrypt-3.1.LICENSE index a9a540ef3d3..4b0b5e9de29 100644 --- a/src/licensedcode/data/licenses/truecrypt-3.1.LICENSE +++ b/src/licensedcode/data/licenses/truecrypt-3.1.LICENSE @@ -1,3 +1,26 @@ +--- +key: truecrypt-3.1 +short_name: TrueCrypt License 3.1 +name: TrueCrypt License 3.1 +category: Copyleft Limited +owner: TrueCrypt +notes: this license embeds a few permissive licenses that are included in its text. +spdx_license_key: LicenseRef-scancode-truecrypt-3.1 +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1998-2000 Paul Le Roux + - Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. + - Copyright (c) 2002-2004 Mark Adler +ignorable_holders: + - Brian Gladman, Worcester, UK. + - Mark Adler + - Paul Le Roux +ignorable_authors: + - Paul Le Roux +ignorable_emails: + - pleroux@swprofessionals.com +--- + TrueCrypt License Version 3.1 Software distributed under this license is distributed on an "AS @@ -477,5 +500,4 @@ redistribute it freely, subject to the following restrictions: 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source - distribution. - \ No newline at end of file + distribution. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/truecrypt-3.1.yml b/src/licensedcode/data/licenses/truecrypt-3.1.yml deleted file mode 100644 index d6342f88c8d..00000000000 --- a/src/licensedcode/data/licenses/truecrypt-3.1.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: truecrypt-3.1 -short_name: TrueCrypt License 3.1 -name: TrueCrypt License 3.1 -category: Copyleft Limited -owner: TrueCrypt -notes: this license embeds a few permissive licenses that are included in its text. -spdx_license_key: LicenseRef-scancode-truecrypt-3.1 -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1998-2000 Paul Le Roux - - Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. - - Copyright (c) 2002-2004 Mark Adler -ignorable_holders: - - Brian Gladman, Worcester, UK. - - Mark Adler - - Paul Le Roux -ignorable_authors: - - Paul Le Roux -ignorable_emails: - - pleroux@swprofessionals.com diff --git a/src/licensedcode/data/licenses/tsl-2018.LICENSE b/src/licensedcode/data/licenses/tsl-2018.LICENSE index 0469723bd45..70ff445ddbe 100644 --- a/src/licensedcode/data/licenses/tsl-2018.LICENSE +++ b/src/licensedcode/data/licenses/tsl-2018.LICENSE @@ -1,3 +1,19 @@ +--- +key: tsl-2018 +short_name: TSL Agreement +name: Timescale License Agreement +category: Source-available +owner: Timescale +homepage_url: https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE +spdx_license_key: LicenseRef-scancode-tsl-2018 +ignorable_urls: + - https://github.com/timescale + - https://opensource.org/licenses/Apache-2.0 + - https://www.timescale.com/pricing +ignorable_emails: + - licensing@timescale.com +--- + TIMESCALE LICENSE AGREEMENT Posted Date: December 19, 2018 diff --git a/src/licensedcode/data/licenses/tsl-2018.yml b/src/licensedcode/data/licenses/tsl-2018.yml deleted file mode 100644 index 69b3c5d02b2..00000000000 --- a/src/licensedcode/data/licenses/tsl-2018.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: tsl-2018 -short_name: TSL Agreement -name: Timescale License Agreement -category: Source-available -owner: Timescale -homepage_url: https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE -spdx_license_key: LicenseRef-scancode-tsl-2018 -ignorable_urls: - - https://github.com/timescale - - https://opensource.org/licenses/Apache-2.0 - - https://www.timescale.com/pricing -ignorable_emails: - - licensing@timescale.com diff --git a/src/licensedcode/data/licenses/tsl-2020.LICENSE b/src/licensedcode/data/licenses/tsl-2020.LICENSE index 58eaf396da4..9bb013c73b8 100644 --- a/src/licensedcode/data/licenses/tsl-2020.LICENSE +++ b/src/licensedcode/data/licenses/tsl-2020.LICENSE @@ -1,3 +1,16 @@ +--- +key: tsl-2020 +short_name: TSL Agreement 2020 +name: Timescale License Agreement 2020 +category: Source-available +owner: Timescale +homepage_url: https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE +spdx_license_key: LicenseRef-scancode-tsl-2020 +ignorable_urls: + - https://github.com/timescale + - https://opensource.org/licenses/Apache-2.0 +--- + TIMESCALE LICENSE AGREEMENT Posted Date: September 24, 2020 diff --git a/src/licensedcode/data/licenses/tsl-2020.yml b/src/licensedcode/data/licenses/tsl-2020.yml deleted file mode 100644 index a87fdf39239..00000000000 --- a/src/licensedcode/data/licenses/tsl-2020.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: tsl-2020 -short_name: TSL Agreement 2020 -name: Timescale License Agreement 2020 -category: Source-available -owner: Timescale -homepage_url: https://github.com/timescale/timescaledb/blob/master/tsl/LICENSE-TIMESCALE -spdx_license_key: LicenseRef-scancode-tsl-2020 -ignorable_urls: - - https://github.com/timescale - - https://opensource.org/licenses/Apache-2.0 diff --git a/src/licensedcode/data/licenses/tso-license.LICENSE b/src/licensedcode/data/licenses/tso-license.LICENSE index 0b31f93226e..e9bb2f8df54 100644 --- a/src/licensedcode/data/licenses/tso-license.LICENSE +++ b/src/licensedcode/data/licenses/tso-license.LICENSE @@ -1,3 +1,14 @@ +--- +key: tso-license +short_name: Theodore Ts'o license +name: Theodore Ts'o license +category: Permissive +owner: Theodore Ts'o +notes: this license is used in e2fsprogs and is rather unique. The disclaimer is mostly based + on a truncated BSD license disclaimer +spdx_license_key: LicenseRef-scancode-tso-license +--- + Permission to use this file is granted for any purposes, as long as this copyright statement is kept intact and the author is not held liable for any damages resulting from the use of this program. @@ -10,5 +21,4 @@ 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. - +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tso-license.yml b/src/licensedcode/data/licenses/tso-license.yml deleted file mode 100644 index 487d0fd3366..00000000000 --- a/src/licensedcode/data/licenses/tso-license.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: tso-license -short_name: Theodore Ts'o license -name: Theodore Ts'o license -category: Permissive -owner: Theodore Ts'o -notes: this license is used in e2fsprogs and is rather unique. The disclaimer is mostly based - on a truncated BSD license disclaimer -spdx_license_key: LicenseRef-scancode-tso-license diff --git a/src/licensedcode/data/licenses/ttcl.LICENSE b/src/licensedcode/data/licenses/ttcl.LICENSE index 222a66d6902..f0c7d9d218b 100644 --- a/src/licensedcode/data/licenses/ttcl.LICENSE +++ b/src/licensedcode/data/licenses/ttcl.LICENSE @@ -1,3 +1,18 @@ +--- +key: ttcl +short_name: Talis Community License +name: The Talis Community License +category: Permissive +owner: Open Knowledge Foundation +homepage_url: https://opendefinition.org/licenses/tcl/ +spdx_license_key: LicenseRef-scancode-ttcl +text_urls: + - https://web.archive.org/web/20130923083859/http://tdnarchive.capita-libraries.co.uk/tcl +faq_url: https://opendefinition.org/licenses/tcl/ +ignorable_urls: + - http://tdnarchive.capita-libraries.co.uk/tcl +--- + The Talis Community Licence is intended to guarantee your freedom to use, share and modify data and to preserve the availability and accessibility of such data for the wider community. Definitions diff --git a/src/licensedcode/data/licenses/ttcl.yml b/src/licensedcode/data/licenses/ttcl.yml deleted file mode 100644 index 6744bfa67c1..00000000000 --- a/src/licensedcode/data/licenses/ttcl.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ttcl -short_name: Talis Community License -name: The Talis Community License -category: Permissive -owner: Open Knowledge Foundation -homepage_url: https://opendefinition.org/licenses/tcl/ -spdx_license_key: LicenseRef-scancode-ttcl -text_urls: - - https://web.archive.org/web/20130923083859/http://tdnarchive.capita-libraries.co.uk/tcl -faq_url: https://opendefinition.org/licenses/tcl/ -ignorable_urls: - - http://tdnarchive.capita-libraries.co.uk/tcl diff --git a/src/licensedcode/data/licenses/ttf2pt1.LICENSE b/src/licensedcode/data/licenses/ttf2pt1.LICENSE index a94577766d7..9b5dd01fa99 100644 --- a/src/licensedcode/data/licenses/ttf2pt1.LICENSE +++ b/src/licensedcode/data/licenses/ttf2pt1.LICENSE @@ -1,3 +1,14 @@ +--- +key: ttf2pt1 +is_deprecated: yes +short_name: TTF2PT1 Project License +name: TTF2PT1 Project License +category: Permissive +owner: Unspecified +notes: composite +minimum_coverage: 90 +--- + TTF2PT1 Project License The following copyright notice applies to all the files provided in this distribution unless explicitly noted otherwise (the most notable exception being t1asm.c). diff --git a/src/licensedcode/data/licenses/ttf2pt1.yml b/src/licensedcode/data/licenses/ttf2pt1.yml deleted file mode 100644 index 221afe079c6..00000000000 --- a/src/licensedcode/data/licenses/ttf2pt1.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: ttf2pt1 -is_deprecated: yes -short_name: TTF2PT1 Project License -name: TTF2PT1 Project License -category: Permissive -owner: Unspecified -notes: composite -minimum_coverage: 90 diff --git a/src/licensedcode/data/licenses/ttyp0.LICENSE b/src/licensedcode/data/licenses/ttyp0.LICENSE index 3df2e4c4e95..cccc9863632 100644 --- a/src/licensedcode/data/licenses/ttyp0.LICENSE +++ b/src/licensedcode/data/licenses/ttyp0.LICENSE @@ -1,3 +1,16 @@ +--- +key: ttyp0 +short_name: TTYP0 License +name: TTYP0 License +category: Permissive +owner: Uwe Waldmann +homepage_url: https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/ +spdx_license_key: LicenseRef-scancode-ttyp0 +other_urls: + - https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/uw-ttyp0-1.3.tar.gz +minimum_coverage: 70 +--- + THE TTYP0 LICENSE Permission is hereby granted, free of charge, to any person obtaining @@ -26,4 +39,4 @@ 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. +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ttyp0.yml b/src/licensedcode/data/licenses/ttyp0.yml deleted file mode 100644 index 966e754d125..00000000000 --- a/src/licensedcode/data/licenses/ttyp0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: ttyp0 -short_name: TTYP0 License -name: TTYP0 License -category: Permissive -owner: Uwe Waldmann -homepage_url: https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/ -spdx_license_key: LicenseRef-scancode-ttyp0 -other_urls: - - https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/uw-ttyp0-1.3.tar.gz -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/tu-berlin-2.0.LICENSE b/src/licensedcode/data/licenses/tu-berlin-2.0.LICENSE index 801a902ad32..18c3998c84b 100644 --- a/src/licensedcode/data/licenses/tu-berlin-2.0.LICENSE +++ b/src/licensedcode/data/licenses/tu-berlin-2.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: tu-berlin-2.0 +short_name: TU Berlin License 2.0 +name: Technische Universitaet Berlin License 2.0 +category: Permissive +owner: Technische Universitaet Berlin +homepage_url: https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt +spdx_license_key: TU-Berlin-2.0 +other_urls: + - https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt +--- + Any use of this software is permitted provided that this notice is not removed and that neither the authors nor the Technische Universitaet Berlin are deemed to have made any representations as to the suitability of this diff --git a/src/licensedcode/data/licenses/tu-berlin-2.0.yml b/src/licensedcode/data/licenses/tu-berlin-2.0.yml deleted file mode 100644 index 6cf2468547f..00000000000 --- a/src/licensedcode/data/licenses/tu-berlin-2.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: tu-berlin-2.0 -short_name: TU Berlin License 2.0 -name: Technische Universitaet Berlin License 2.0 -category: Permissive -owner: Technische Universitaet Berlin -homepage_url: https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt -spdx_license_key: TU-Berlin-2.0 -other_urls: - - https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt diff --git a/src/licensedcode/data/licenses/tu-berlin.LICENSE b/src/licensedcode/data/licenses/tu-berlin.LICENSE index a2b6e46309e..8e9f1d1eb47 100644 --- a/src/licensedcode/data/licenses/tu-berlin.LICENSE +++ b/src/licensedcode/data/licenses/tu-berlin.LICENSE @@ -1,3 +1,16 @@ +--- +key: tu-berlin +short_name: TU Berlin License 1.0 +name: Technische Universitaet Berlin Attribution License 1.0 +category: Permissive +owner: Technische Universitaet Berlin +homepage_url: https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT +spdx_license_key: TU-Berlin-1.0 +other_urls: + - ftp://svr-ftp.eng.cam.ac.uk/pub/comp.speech/coding/gsm-1.0.6.tar.gz + - https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT +--- + Any use of this software is permitted provided that this notice is not removed and that neither the authors nor the Technische Universitaet Berlin are deemed to have made any representations as to the suitability of this @@ -6,4 +19,4 @@ this software. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. As a matter of courtesy, the authors request to be informed about uses this software has found, about bugs in this software, and about any -improvements that may be of general interest. +improvements that may be of general interest. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/tu-berlin.yml b/src/licensedcode/data/licenses/tu-berlin.yml deleted file mode 100644 index dfa131d07d9..00000000000 --- a/src/licensedcode/data/licenses/tu-berlin.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: tu-berlin -short_name: TU Berlin License 1.0 -name: Technische Universitaet Berlin Attribution License 1.0 -category: Permissive -owner: Technische Universitaet Berlin -homepage_url: https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT -spdx_license_key: TU-Berlin-1.0 -other_urls: - - ftp://svr-ftp.eng.cam.ac.uk/pub/comp.speech/coding/gsm-1.0.6.tar.gz - - https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT diff --git a/src/licensedcode/data/licenses/tumbolia.LICENSE b/src/licensedcode/data/licenses/tumbolia.LICENSE index 08b0395360c..979afa61a17 100644 --- a/src/licensedcode/data/licenses/tumbolia.LICENSE +++ b/src/licensedcode/data/licenses/tumbolia.LICENSE @@ -1,3 +1,22 @@ +--- +key: tumbolia +short_name: Tumbolia Public License +name: Tumbolia Public License +category: Permissive +owner: Paul Davis +spdx_license_key: LicenseRef-scancode-tumbolia +other_urls: + - https://fedoraproject.org/wiki/Licensing/Tumbolia + - https://github.com/c-w/ghp-import/blob/aef95b550990374fa5e6598752813bf59bfab9cc/LICENSE +minimum_coverage: 95 +ignorable_copyrights: + - Copyright 2013, Paul Davis +ignorable_holders: + - Paul Davis +ignorable_emails: + - paul.joseph.davis@gmail.com +--- + Tumbolia Public License Copyright 2013, Paul Davis diff --git a/src/licensedcode/data/licenses/tumbolia.yml b/src/licensedcode/data/licenses/tumbolia.yml deleted file mode 100644 index 1ced22e1495..00000000000 --- a/src/licensedcode/data/licenses/tumbolia.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: tumbolia -short_name: Tumbolia Public License -name: Tumbolia Public License -category: Permissive -owner: Paul Davis -spdx_license_key: LicenseRef-scancode-tumbolia -other_urls: - - https://fedoraproject.org/wiki/Licensing/Tumbolia - - https://github.com/c-w/ghp-import/blob/aef95b550990374fa5e6598752813bf59bfab9cc/LICENSE -minimum_coverage: 95 -ignorable_copyrights: - - Copyright 2013, Paul Davis -ignorable_holders: - - Paul Davis -ignorable_emails: - - paul.joseph.davis@gmail.com diff --git a/src/licensedcode/data/licenses/twisted-snmp.LICENSE b/src/licensedcode/data/licenses/twisted-snmp.LICENSE index 3bb15d2b925..9241393bed3 100644 --- a/src/licensedcode/data/licenses/twisted-snmp.LICENSE +++ b/src/licensedcode/data/licenses/twisted-snmp.LICENSE @@ -1,3 +1,14 @@ +--- +key: twisted-snmp +short_name: TwistedSNMP License +name: TwistedSNMP License +category: Permissive +owner: TwistedSNMP +spdx_license_key: LicenseRef-scancode-twisted-snmp +other_urls: + - http://comments.gmane.org/gmane.linux.debian.devel.legal/25899 +--- + THIS SOFTWARE IS NOT FAULT TOLERANT AND SHOULD NOT BE USED IN ANY SITUATION ENDANGERING HUMAN LIFE OR PROPERTY. diff --git a/src/licensedcode/data/licenses/twisted-snmp.yml b/src/licensedcode/data/licenses/twisted-snmp.yml deleted file mode 100644 index b503d3e1a3b..00000000000 --- a/src/licensedcode/data/licenses/twisted-snmp.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: twisted-snmp -short_name: TwistedSNMP License -name: TwistedSNMP License -category: Permissive -owner: TwistedSNMP -spdx_license_key: LicenseRef-scancode-twisted-snmp -other_urls: - - http://comments.gmane.org/gmane.linux.debian.devel.legal/25899 diff --git a/src/licensedcode/data/licenses/txl-10.5.LICENSE b/src/licensedcode/data/licenses/txl-10.5.LICENSE index c5354391e07..b98849e6de5 100644 --- a/src/licensedcode/data/licenses/txl-10.5.LICENSE +++ b/src/licensedcode/data/licenses/txl-10.5.LICENSE @@ -1,3 +1,20 @@ +--- +key: txl-10.5 +short_name: TXL 10.5 License +name: TXL 10.5 License +category: Free Restricted +owner: Unspecified +homepage_url: http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt +spdx_license_key: LicenseRef-scancode-txl-10.5 +text_urls: + - http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt +ignorable_copyrights: + - Copyright 1988-2009 Queen's University at Kingston + - Copyright 2009 by Queen's University at Kingston +ignorable_holders: + - Queen's University at Kingston +--- + =================== TXL Version 10.5e Sept 2009 diff --git a/src/licensedcode/data/licenses/txl-10.5.yml b/src/licensedcode/data/licenses/txl-10.5.yml deleted file mode 100644 index 9863148bac3..00000000000 --- a/src/licensedcode/data/licenses/txl-10.5.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: txl-10.5 -short_name: TXL 10.5 License -name: TXL 10.5 License -category: Free Restricted -owner: Unspecified -homepage_url: http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt -spdx_license_key: LicenseRef-scancode-txl-10.5 -text_urls: - - http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt -ignorable_copyrights: - - Copyright 1988-2009 Queen's University at Kingston - - Copyright 2009 by Queen's University at Kingston -ignorable_holders: - - Queen's University at Kingston diff --git a/src/licensedcode/data/licenses/u-boot-exception-2.0.LICENSE b/src/licensedcode/data/licenses/u-boot-exception-2.0.LICENSE index 9f758588fd5..bf6607a8c6a 100644 --- a/src/licensedcode/data/licenses/u-boot-exception-2.0.LICENSE +++ b/src/licensedcode/data/licenses/u-boot-exception-2.0.LICENSE @@ -1,3 +1,47 @@ +--- +key: u-boot-exception-2.0 +short_name: U-Boot exception to GPL 2.0 +name: U-Boot exception to GPL 2.0 +category: Copyleft Limited +owner: U-Boot +is_exception: yes +spdx_license_key: u-boot-exception-2.0 +other_urls: + - http://git.denx.de/?p=u-boot.git;a=blob;f=Licenses/Exceptions + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + The U-Boot Exception: + NOTE! This copyright does *not* cover the so-called "standalone" + applications that use U-Boot services by means of the jump table provided + by U-Boot exactly for this purpose - this is merely considered normal use + of U-Boot, and does *not* fall under the heading of "derived work". + The header files "include/image.h" and "include/asm-*/u-boot.h" define + interfaces to U-Boot. Including these (unmodified) header files in another + file is considered normal use of U-Boot, and does *not* fall under the + heading of "derived work". + Also note that the GPL below is copyrighted by the Free Software + Foundation, but the instance of code that it refers to (the U-Boot source + code) is copyrighted by me and others who actually wrote it. + -- Wolfgang Denk +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + The U-Boot Exception: NOTE! This copyright does *not* cover the so-called "standalone" applications that use U-Boot services by means of the jump table provided by U-Boot exactly for this purpose - this is merely considered normal use of U-Boot, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/licenses/u-boot-exception-2.0.yml b/src/licensedcode/data/licenses/u-boot-exception-2.0.yml deleted file mode 100644 index 7abbdc9105a..00000000000 --- a/src/licensedcode/data/licenses/u-boot-exception-2.0.yml +++ /dev/null @@ -1,41 +0,0 @@ -key: u-boot-exception-2.0 -short_name: U-Boot exception to GPL 2.0 -name: U-Boot exception to GPL 2.0 -category: Copyleft Limited -owner: U-Boot -is_exception: yes -spdx_license_key: u-boot-exception-2.0 -other_urls: - - http://git.denx.de/?p=u-boot.git;a=blob;f=Licenses/Exceptions - - http://www.gnu.org/licenses/gpl-2.0.txt -standard_notice: | - This library 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, 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 General Public License for - more details. - You should have received a copy of the GNU General Public License along - with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - The U-Boot Exception: - NOTE! This copyright does *not* cover the so-called "standalone" - applications that use U-Boot services by means of the jump table provided - by U-Boot exactly for this purpose - this is merely considered normal use - of U-Boot, and does *not* fall under the heading of "derived work". - The header files "include/image.h" and "include/asm-*/u-boot.h" define - interfaces to U-Boot. Including these (unmodified) header files in another - file is considered normal use of U-Boot, and does *not* fall under the - heading of "derived work". - Also note that the GPL below is copyrighted by the Free Software - Foundation, but the instance of code that it refers to (the U-Boot source - code) is copyrighted by me and others who actually wrote it. - -- Wolfgang Denk -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/licenses/ubc.LICENSE b/src/licensedcode/data/licenses/ubc.LICENSE index 5e54460c173..784988b5563 100644 --- a/src/licensedcode/data/licenses/ubc.LICENSE +++ b/src/licensedcode/data/licenses/ubc.LICENSE @@ -1,3 +1,15 @@ +--- +key: ubc +short_name: University of British Columbia License +name: University of British Columbia License +category: Permissive +owner: University of British Columbia +homepage_url: https://raw.github.com/orgcandman/esnacc-ng/master/c++-lib/src/asn-len.cpp +spdx_license_key: LicenseRef-scancode-ubc +text_urls: + - https://github.com/esnacc/esnacc-ng/blob/55eb00bfb50439620f6fc64b1e8373dd2ad0abb5/cxx-lib/src/asn-len.cpp +--- + This library is free software; you can redistribute it and/or modify it provided that this copyright/license information is retained in original form. @@ -6,4 +18,4 @@ If you modify this file, you must clearly indicate your changes. This source code 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. +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ubc.yml b/src/licensedcode/data/licenses/ubc.yml deleted file mode 100644 index 66f3b6ebc80..00000000000 --- a/src/licensedcode/data/licenses/ubc.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ubc -short_name: University of British Columbia License -name: University of British Columbia License -category: Permissive -owner: University of British Columbia -homepage_url: https://raw.github.com/orgcandman/esnacc-ng/master/c++-lib/src/asn-len.cpp -spdx_license_key: LicenseRef-scancode-ubc -text_urls: - - https://github.com/esnacc/esnacc-ng/blob/55eb00bfb50439620f6fc64b1e8373dd2ad0abb5/cxx-lib/src/asn-len.cpp diff --git a/src/licensedcode/data/licenses/ubdl.LICENSE b/src/licensedcode/data/licenses/ubdl.LICENSE index 780ddcd775a..6c3ba52ae29 100644 --- a/src/licensedcode/data/licenses/ubdl.LICENSE +++ b/src/licensedcode/data/licenses/ubdl.LICENSE @@ -1,3 +1,17 @@ +--- +key: ubdl +short_name: Unmodified Binary Distribution Licence +name: Unmodified Binary Distribution Licence +category: Copyleft Limited +owner: Unspecified +homepage_url: http://ipxe.org +notes: this is a rare license that extends extra persmission on top of the GPL +is_exception: yes +spdx_license_key: LicenseRef-scancode-ubdl +text_urls: + - https://git.ipxe.org/ipxe.git/blob_plain/HEAD:/COPYING.UBDL +--- + UNMODIFIED BINARY DISTRIBUTION LICENCE @@ -56,4 +70,4 @@ likewise, subject to the following conditions: - when exercising your right to grant permissions under this Licence, you do not need to refer directly to the text of this Licence, but you may not grant permissions beyond those granted to you by this - Licence. + Licence. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ubdl.yml b/src/licensedcode/data/licenses/ubdl.yml deleted file mode 100644 index fa88255360a..00000000000 --- a/src/licensedcode/data/licenses/ubdl.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ubdl -short_name: Unmodified Binary Distribution Licence -name: Unmodified Binary Distribution Licence -category: Copyleft Limited -owner: Unspecified -homepage_url: http://ipxe.org -notes: this is a rare license that extends extra persmission on top of the GPL -is_exception: yes -spdx_license_key: LicenseRef-scancode-ubdl -text_urls: - - https://git.ipxe.org/ipxe.git/blob_plain/HEAD:/COPYING.UBDL diff --git a/src/licensedcode/data/licenses/ubuntu-font-1.0.LICENSE b/src/licensedcode/data/licenses/ubuntu-font-1.0.LICENSE index ae78a8f94ea..7dd749b710c 100644 --- a/src/licensedcode/data/licenses/ubuntu-font-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ubuntu-font-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: ubuntu-font-1.0 +short_name: Ubuntu Font Licence v1.0 +name: Ubuntu Font Licence v1.0 +category: Free Restricted +owner: Ubuntu Font Family +homepage_url: http://font.ubuntu.com/licence/ +spdx_license_key: LicenseRef-scancode-ubuntu-font-1.0 +text_urls: + - https://assets.ubuntu.com/v1/81e5605d-ubuntu-font-licence-1.0.txt +faq_url: https://www.ubuntu.com/legal/font-licence +other_urls: + - https://launchpad.net/ubuntu-font-licence + - https://design.ubuntu.com/font/ +standard_notice: | + This Font Software is licensed under the Ubuntu Font Licence, Version + 1.0. https://launchpad.net/ubuntu-font-licence +--- + ------------------------------- UBUNTU FONT LICENCE Version 1.0 ------------------------------- @@ -93,4 +112,4 @@ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER -DEALINGS IN THE FONT SOFTWARE. +DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ubuntu-font-1.0.yml b/src/licensedcode/data/licenses/ubuntu-font-1.0.yml deleted file mode 100644 index fe3a2162848..00000000000 --- a/src/licensedcode/data/licenses/ubuntu-font-1.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: ubuntu-font-1.0 -short_name: Ubuntu Font Licence v1.0 -name: Ubuntu Font Licence v1.0 -category: Free Restricted -owner: Ubuntu Font Family -homepage_url: http://font.ubuntu.com/licence/ -spdx_license_key: LicenseRef-scancode-ubuntu-font-1.0 -text_urls: - - https://assets.ubuntu.com/v1/81e5605d-ubuntu-font-licence-1.0.txt -faq_url: https://www.ubuntu.com/legal/font-licence -other_urls: - - https://launchpad.net/ubuntu-font-licence - - https://design.ubuntu.com/font/ -standard_notice: | - This Font Software is licensed under the Ubuntu Font Licence, Version - 1.0. https://launchpad.net/ubuntu-font-licence diff --git a/src/licensedcode/data/licenses/ucl-1.0.LICENSE b/src/licensedcode/data/licenses/ucl-1.0.LICENSE index 124735e8bf5..e28f7fe44ea 100644 --- a/src/licensedcode/data/licenses/ucl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ucl-1.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: ucl-1.0 +short_name: UCL-1.0 +name: Upstream Compatibility License v1.0 +category: Copyleft Limited +owner: Lawrence Rosen +homepage_url: https://opensource.org/licenses/UCL-1.0 +spdx_license_key: UCL-1.0 +text_urls: + - https://opensource.org/licenses/UCL-1.0 +osi_url: https://opensource.org/licenses/UCL-1.0 +other_urls: + - https://github.com/spdx/license-list-XML/issues/894 +standard_notice: Licensed under the Upstream Compatibility License 1.0 +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen + - Copyright (c) 2017 Nigel Tzeng +ignorable_holders: + - Lawrence Rosen + - Nigel Tzeng +--- + Upstream Compatibility License v. 1.0 (UCL-1.0) This Upstream Compatibility License (the "License") applies to any @@ -205,4 +227,4 @@ under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its -license review and certification process. +license review and certification process. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/ucl-1.0.yml b/src/licensedcode/data/licenses/ucl-1.0.yml deleted file mode 100644 index 55181cd4fe6..00000000000 --- a/src/licensedcode/data/licenses/ucl-1.0.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: ucl-1.0 -short_name: UCL-1.0 -name: Upstream Compatibility License v1.0 -category: Copyleft Limited -owner: Lawrence Rosen -homepage_url: https://opensource.org/licenses/UCL-1.0 -spdx_license_key: UCL-1.0 -text_urls: - - https://opensource.org/licenses/UCL-1.0 -osi_url: https://opensource.org/licenses/UCL-1.0 -other_urls: - - https://github.com/spdx/license-list-XML/issues/894 -standard_notice: Licensed under the Upstream Compatibility License 1.0 -ignorable_copyrights: - - Copyright (c) 2005 Lawrence Rosen - - Copyright (c) 2017 Nigel Tzeng -ignorable_holders: - - Lawrence Rosen - - Nigel Tzeng diff --git a/src/licensedcode/data/licenses/unbuntu-font-1.0.LICENSE b/src/licensedcode/data/licenses/unbuntu-font-1.0.LICENSE new file mode 100644 index 00000000000..511b1c34b87 --- /dev/null +++ b/src/licensedcode/data/licenses/unbuntu-font-1.0.LICENSE @@ -0,0 +1,15 @@ +--- +key: unbuntu-font-1.0 +is_deprecated: yes +short_name: Obsolete Font License 1.0 +name: Obsolete Font License 1.0 +category: Free Restricted +owner: Unspecified +homepage_url: http://font.ubuntu.com/licence/ +notes: replaced by ubuntu-font-1.0 (there was a typo in the key)s +text_urls: + - http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt +faq_url: http://font.ubuntu.com/ufl/FAQ.html +other_urls: + - http://font.ubuntu.com/ufl/copyright.txt +--- diff --git a/src/licensedcode/data/licenses/unbuntu-font-1.0.yml b/src/licensedcode/data/licenses/unbuntu-font-1.0.yml deleted file mode 100644 index c362423f45d..00000000000 --- a/src/licensedcode/data/licenses/unbuntu-font-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: unbuntu-font-1.0 -is_deprecated: yes -short_name: Obsolete Font License 1.0 -name: Obsolete Font License 1.0 -category: Free Restricted -owner: Unspecified -homepage_url: http://font.ubuntu.com/licence/ -notes: replaced by ubuntu-font-1.0 (there was a typo in the key)s -text_urls: - - http://font.ubuntu.com/ufl/ubuntu-font-licence-1.0.txt -faq_url: http://font.ubuntu.com/ufl/FAQ.html -other_urls: - - http://font.ubuntu.com/ufl/copyright.txt diff --git a/src/licensedcode/data/licenses/unicode-data-software.LICENSE b/src/licensedcode/data/licenses/unicode-data-software.LICENSE index 096ba7528f3..fb60a2f47e5 100644 --- a/src/licensedcode/data/licenses/unicode-data-software.LICENSE +++ b/src/licensedcode/data/licenses/unicode-data-software.LICENSE @@ -1,3 +1,16 @@ +--- +key: unicode-data-software +short_name: Unicode - Data Files and Software +name: Unicode License Agreement - Data Files and Software +category: Permissive +owner: Unicode Consortium +homepage_url: http://unicode.org/ +text_urls: + - http://unicode.org/copyright.html +is_deprecated: yes +notes: this is a duplicate of the unicode license +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining a @@ -36,4 +49,4 @@ authorization of the copyright holder. Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United States and other countries. All third party trademarks referenced -herein are the property of their respective owners. +herein are the property of their respective owners. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/unicode-data-software.yml b/src/licensedcode/data/licenses/unicode-data-software.yml deleted file mode 100644 index 30f3c6dc117..00000000000 --- a/src/licensedcode/data/licenses/unicode-data-software.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: unicode-data-software -short_name: Unicode - Data Files and Software -name: Unicode License Agreement - Data Files and Software -category: Permissive -owner: Unicode Consortium -homepage_url: http://unicode.org/ -text_urls: - - http://unicode.org/copyright.html -is_deprecated: yes -notes: this is a duplicate of the unicode license diff --git a/src/licensedcode/data/licenses/unicode-dfs-2015.LICENSE b/src/licensedcode/data/licenses/unicode-dfs-2015.LICENSE index f29ca6484e7..3319729ccaa 100644 --- a/src/licensedcode/data/licenses/unicode-dfs-2015.LICENSE +++ b/src/licensedcode/data/licenses/unicode-dfs-2015.LICENSE @@ -1,3 +1,25 @@ +--- +key: unicode-dfs-2015 +short_name: Unicode DFS 2015 +name: Unicode License Agreement - Data Files and Software (2015) +category: Permissive +owner: Unicode Consortium +homepage_url: https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html +spdx_license_key: Unicode-DFS-2015 +other_urls: + - https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1991-2015 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/src/licensedcode/data/licenses/unicode-dfs-2015.yml b/src/licensedcode/data/licenses/unicode-dfs-2015.yml deleted file mode 100644 index 4cdbd18c5f5..00000000000 --- a/src/licensedcode/data/licenses/unicode-dfs-2015.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: unicode-dfs-2015 -short_name: Unicode DFS 2015 -name: Unicode License Agreement - Data Files and Software (2015) -category: Permissive -owner: Unicode Consortium -homepage_url: https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html -spdx_license_key: Unicode-DFS-2015 -other_urls: - - https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 1991-2015 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/licenses/unicode-dfs-2016.LICENSE b/src/licensedcode/data/licenses/unicode-dfs-2016.LICENSE index be7d76fd4d7..e96cb824b06 100644 --- a/src/licensedcode/data/licenses/unicode-dfs-2016.LICENSE +++ b/src/licensedcode/data/licenses/unicode-dfs-2016.LICENSE @@ -1,3 +1,28 @@ +--- +key: unicode-dfs-2016 +short_name: Unicode DFS 2016 +name: Unicode License Agreement - Data Files and Software (2016) +category: Permissive +owner: Unicode Consortium +homepage_url: http://www.unicode.org/copyright.html +spdx_license_key: Unicode-DFS-2016 +other_urls: + - http://www.unicode.org/copyright.html +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1991-2016 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://source.icu-project.org/repos/icu + - http://source.icu/ + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports + - http://www.unicode.org/utility/trac/browser +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/src/licensedcode/data/licenses/unicode-dfs-2016.yml b/src/licensedcode/data/licenses/unicode-dfs-2016.yml deleted file mode 100644 index bf6c44b5cb1..00000000000 --- a/src/licensedcode/data/licenses/unicode-dfs-2016.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: unicode-dfs-2016 -short_name: Unicode DFS 2016 -name: Unicode License Agreement - Data Files and Software (2016) -category: Permissive -owner: Unicode Consortium -homepage_url: http://www.unicode.org/copyright.html -spdx_license_key: Unicode-DFS-2016 -other_urls: - - http://www.unicode.org/copyright.html -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 1991-2016 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://source.icu-project.org/repos/icu - - http://source.icu/ - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports - - http://www.unicode.org/utility/trac/browser diff --git a/src/licensedcode/data/licenses/unicode-icu-58.LICENSE b/src/licensedcode/data/licenses/unicode-icu-58.LICENSE index 248b447d45f..c0ce15fec1f 100644 --- a/src/licensedcode/data/licenses/unicode-icu-58.LICENSE +++ b/src/licensedcode/data/licenses/unicode-icu-58.LICENSE @@ -1,3 +1,54 @@ +--- +key: unicode-icu-58 +short_name: ICU License 58 and later +name: ICU License 58 and later +category: Permissive +owner: Unicode Consortium +homepage_url: https://www.open-xchange.com/fileadmin/user_upload/images/portfolio/license/ICU_License.pdf +notes: composite +spdx_license_key: LicenseRef-scancode-unicode-icu-58 +minimum_coverage: 80 +ignorable_copyrights: + - (c) 1999 TaBE Project + - Copyright (c) 1991-2016 Unicode, Inc. + - Copyright (c) 1995-2016 International Business Machines Corporation and others + - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, + Academia Sinica + - Copyright (c) 1999 Pai-Hsiang Hsiao + - Copyright (c) 2006-2008, Google Inc. + - Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell + - Copyright (c) 2013 International Business Machines Corporation and others + - Copyright (c) 2013, LeRoy Benjamin Sharon + - Copyright (c) 2014 International Business Machines Corporation and others + - Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu + http://casper.beckman.uiuc.edu/~c-tsai4 + - Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology + - Copyright 2006-2011, the V8 project authors +ignorable_holders: + - Brian Eugene Wilson, Robert Martin Campbell + - Chih-Hao Tsai Beckman Institute, University of Illinois + - Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica + - Google Inc. + - International Business Machines Corporation and others + - LeRoy Benjamin Sharon + - Nara Institute of Science and Technology + - Pai-Hsiang Hsiao + - TaBE Project + - Unicode, Inc. + - the V8 project authors +ignorable_urls: + - http://casper.beckman.uiuc.edu/~c-tsai4 + - http://chasen.aist-nara.ac.jp/chasen/distribution.html + - http://code.google.com/p/lao-dictionary/ + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt + - http://opensource.org/licenses/bsd-license.php + - http://www.unicode.org/copyright.html + - https://sourceforge.net/project/?group_id=1519 +ignorable_emails: + - c-tsai4@uiuc.edu +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2016 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/licenses/unicode-icu-58.yml b/src/licensedcode/data/licenses/unicode-icu-58.yml deleted file mode 100644 index 641ba221f94..00000000000 --- a/src/licensedcode/data/licenses/unicode-icu-58.yml +++ /dev/null @@ -1,48 +0,0 @@ -key: unicode-icu-58 -short_name: ICU License 58 and later -name: ICU License 58 and later -category: Permissive -owner: Unicode Consortium -homepage_url: https://www.open-xchange.com/fileadmin/user_upload/images/portfolio/license/ICU_License.pdf -notes: composite -spdx_license_key: LicenseRef-scancode-unicode-icu-58 -minimum_coverage: 80 -ignorable_copyrights: - - (c) 1999 TaBE Project - - Copyright (c) 1991-2016 Unicode, Inc. - - Copyright (c) 1995-2016 International Business Machines Corporation and others - - Copyright (c) 1999 Computer Systems and Communication Lab, Institute of Information Science, - Academia Sinica - - Copyright (c) 1999 Pai-Hsiang Hsiao - - Copyright (c) 2006-2008, Google Inc. - - Copyright (c) 2013 Brian Eugene Wilson, Robert Martin Campbell - - Copyright (c) 2013 International Business Machines Corporation and others - - Copyright (c) 2013, LeRoy Benjamin Sharon - - Copyright (c) 2014 International Business Machines Corporation and others - - Copyright 1996 Chih-Hao Tsai Beckman Institute, University of Illinois c-tsai4@uiuc.edu - http://casper.beckman.uiuc.edu/~c-tsai4 - - Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology - - Copyright 2006-2011, the V8 project authors -ignorable_holders: - - Brian Eugene Wilson, Robert Martin Campbell - - Chih-Hao Tsai Beckman Institute, University of Illinois - - Computer Systems and Communication Lab, Institute of Information Science, Academia Sinica - - Google Inc. - - International Business Machines Corporation and others - - LeRoy Benjamin Sharon - - Nara Institute of Science and Technology - - Pai-Hsiang Hsiao - - TaBE Project - - Unicode, Inc. - - the V8 project authors -ignorable_urls: - - http://casper.beckman.uiuc.edu/~c-tsai4 - - http://chasen.aist-nara.ac.jp/chasen/distribution.html - - http://code.google.com/p/lao-dictionary/ - - http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt - - http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt - - http://opensource.org/licenses/bsd-license.php - - http://www.unicode.org/copyright.html - - https://sourceforge.net/project/?group_id=1519 -ignorable_emails: - - c-tsai4@uiuc.edu diff --git a/src/licensedcode/data/licenses/unicode-mappings.LICENSE b/src/licensedcode/data/licenses/unicode-mappings.LICENSE index 63c300718a3..b1a61dacd58 100644 --- a/src/licensedcode/data/licenses/unicode-mappings.LICENSE +++ b/src/licensedcode/data/licenses/unicode-mappings.LICENSE @@ -1,3 +1,12 @@ +--- +key: unicode-mappings +short_name: Unicode Mappings License +name: Unicode Mappings License +category: Permissive +owner: Unicode Consortium +spdx_license_key: LicenseRef-scancode-unicode-mappings +--- + This file is provided as-is by Unicode, Inc. (The Unicode Consortium). No claims are made as to fitness for any particular purpose. No warranties of any kind are expressed or implied. The recipient diff --git a/src/licensedcode/data/licenses/unicode-mappings.yml b/src/licensedcode/data/licenses/unicode-mappings.yml deleted file mode 100644 index 906af354882..00000000000 --- a/src/licensedcode/data/licenses/unicode-mappings.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: unicode-mappings -short_name: Unicode Mappings License -name: Unicode Mappings License -category: Permissive -owner: Unicode Consortium -spdx_license_key: LicenseRef-scancode-unicode-mappings diff --git a/src/licensedcode/data/licenses/unicode-tou.LICENSE b/src/licensedcode/data/licenses/unicode-tou.LICENSE index b72f87bd86c..a2ae40a37a2 100644 --- a/src/licensedcode/data/licenses/unicode-tou.LICENSE +++ b/src/licensedcode/data/licenses/unicode-tou.LICENSE @@ -1,3 +1,17 @@ +--- +key: unicode-tou +short_name: Unicode Terms of Use +name: Unicode Terms of Use +category: Proprietary Free +owner: Unicode Consortium +homepage_url: http://www.unicode.org/copyright.html +spdx_license_key: Unicode-TOU +ignorable_copyrights: + - Copyright (c) Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +--- + Unicode Terms of Use For the general privacy policy governing access to this site, see the diff --git a/src/licensedcode/data/licenses/unicode-tou.yml b/src/licensedcode/data/licenses/unicode-tou.yml deleted file mode 100644 index 250a957a058..00000000000 --- a/src/licensedcode/data/licenses/unicode-tou.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: unicode-tou -short_name: Unicode Terms of Use -name: Unicode Terms of Use -category: Proprietary Free -owner: Unicode Consortium -homepage_url: http://www.unicode.org/copyright.html -spdx_license_key: Unicode-TOU -ignorable_copyrights: - - Copyright (c) Unicode, Inc. -ignorable_holders: - - Unicode, Inc. diff --git a/src/licensedcode/data/licenses/unicode.LICENSE b/src/licensedcode/data/licenses/unicode.LICENSE index 9ddea25dce6..f5cd85f370e 100644 --- a/src/licensedcode/data/licenses/unicode.LICENSE +++ b/src/licensedcode/data/licenses/unicode.LICENSE @@ -1,3 +1,26 @@ +--- +key: unicode +short_name: Unicode Inc License Agreement +name: Unicode Inc License Agreement +category: Permissive +owner: Unicode Consortium +homepage_url: http://unicode.org/ +spdx_license_key: LicenseRef-scancode-unicode +text_urls: + - http://unicode.org/copyright.html +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/src/licensedcode/data/licenses/unicode.yml b/src/licensedcode/data/licenses/unicode.yml deleted file mode 100644 index 759921b5148..00000000000 --- a/src/licensedcode/data/licenses/unicode.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: unicode -short_name: Unicode Inc License Agreement -name: Unicode Inc License Agreement -category: Permissive -owner: Unicode Consortium -homepage_url: http://unicode.org/ -spdx_license_key: LicenseRef-scancode-unicode -text_urls: - - http://unicode.org/copyright.html -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/cldr/data/ - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/licenses/universal-foss-exception-1.0.LICENSE b/src/licensedcode/data/licenses/universal-foss-exception-1.0.LICENSE index fb1f3f451e4..4c41929dcda 100644 --- a/src/licensedcode/data/licenses/universal-foss-exception-1.0.LICENSE +++ b/src/licensedcode/data/licenses/universal-foss-exception-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: universal-foss-exception-1.0 +short_name: Universal FOSS Exception v1.0 +name: Universal FOSS Exception v1.0 +category: Copyleft Limited +owner: Oracle Corporation +homepage_url: https://oss.oracle.com/licenses/universal-foss-exception/ +is_exception: yes +spdx_license_key: Universal-FOSS-exception-1.0 +other_urls: + - https://oss.oracle.com/licenses/universal-foss-exception/ +--- + The Universal FOSS Exception, Version 1.0 In addition to the rights set forth in the other license(s) included in the @@ -46,4 +59,4 @@ categorized as free, even if now deprecated or otherwise no longer recognized as approved or free. Nothing in this additional permission grants any right to distribute any portion of the Software on terms other than those of the Software License or grants any additional permission of any kind for use or distribution -of the Software in conjunction with software other than Other FOSS. +of the Software in conjunction with software other than Other FOSS. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/universal-foss-exception-1.0.yml b/src/licensedcode/data/licenses/universal-foss-exception-1.0.yml deleted file mode 100644 index 034e1ca1f60..00000000000 --- a/src/licensedcode/data/licenses/universal-foss-exception-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: universal-foss-exception-1.0 -short_name: Universal FOSS Exception v1.0 -name: Universal FOSS Exception v1.0 -category: Copyleft Limited -owner: Oracle Corporation -homepage_url: https://oss.oracle.com/licenses/universal-foss-exception/ -is_exception: yes -spdx_license_key: Universal-FOSS-exception-1.0 -other_urls: - - https://oss.oracle.com/licenses/universal-foss-exception/ diff --git a/src/licensedcode/data/licenses/unknown-license-reference.LICENSE b/src/licensedcode/data/licenses/unknown-license-reference.LICENSE new file mode 100644 index 00000000000..716bdad2241 --- /dev/null +++ b/src/licensedcode/data/licenses/unknown-license-reference.LICENSE @@ -0,0 +1,12 @@ +--- +key: unknown-license-reference +short_name: Unknown License reference +name: Unknown License file reference +category: Unstated License +owner: Unspecified +is_unknown: yes +spdx_license_key: LicenseRef-scancode-unknown-license-reference +notes: This applies to the case of a file with no clear license, which may be referenced + via URL or text such as "See license in..." or "This file is licensed under...", + but where the reference cannot be resolved to a specific named, public license. +--- diff --git a/src/licensedcode/data/licenses/unknown-license-reference.yml b/src/licensedcode/data/licenses/unknown-license-reference.yml deleted file mode 100644 index 99fd1952281..00000000000 --- a/src/licensedcode/data/licenses/unknown-license-reference.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: unknown-license-reference -short_name: Unknown License reference -name: Unknown License file reference -category: Unstated License -owner: Unspecified -notes: This applies to the case of a file with no clear license, which may be referenced via - URL or text such as "See license in..." or "This file is licensed under...", but where the - reference cannot be resolved to a specific named, public license. -is_unknown: yes -spdx_license_key: LicenseRef-scancode-unknown-license-reference diff --git a/src/licensedcode/data/licenses/unknown-spdx.LICENSE b/src/licensedcode/data/licenses/unknown-spdx.LICENSE new file mode 100644 index 00000000000..dfaa60aac2f --- /dev/null +++ b/src/licensedcode/data/licenses/unknown-spdx.LICENSE @@ -0,0 +1,10 @@ +--- +key: unknown-spdx +short_name: unknown SPDX +name: Unknown SPDX license detected but not recognized +category: Unstated License +owner: Unspecified +is_unknown: yes +spdx_license_key: LicenseRef-scancode-unknown-spdx +notes: This applies to an invalid reference to an SPDX license identifier. +--- diff --git a/src/licensedcode/data/licenses/unknown-spdx.yml b/src/licensedcode/data/licenses/unknown-spdx.yml deleted file mode 100644 index 02a960bcd90..00000000000 --- a/src/licensedcode/data/licenses/unknown-spdx.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: unknown-spdx -short_name: unknown SPDX -name: Unknown SPDX license detected but not recognized -category: Unstated License -owner: Unspecified -notes: This applies to an invalid reference to an SPDX license identifier. -is_unknown: yes -spdx_license_key: LicenseRef-scancode-unknown-spdx diff --git a/src/licensedcode/data/licenses/unknown.LICENSE b/src/licensedcode/data/licenses/unknown.LICENSE new file mode 100644 index 00000000000..67c595376db --- /dev/null +++ b/src/licensedcode/data/licenses/unknown.LICENSE @@ -0,0 +1,11 @@ +--- +key: unknown +short_name: unknown +name: Unknown license detected but not recognized +category: Unstated License +owner: Unspecified +is_unknown: yes +spdx_license_key: LicenseRef-scancode-unknown +notes: This applies to the case where there is text referring to a license, but it is not + possible to determine exactly which license. +--- diff --git a/src/licensedcode/data/licenses/unknown.yml b/src/licensedcode/data/licenses/unknown.yml deleted file mode 100644 index 76151aafe53..00000000000 --- a/src/licensedcode/data/licenses/unknown.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: unknown -short_name: unknown -name: Unknown license detected but not recognized -category: Unstated License -owner: Unspecified -notes: This applies to the case where there is text referring to a license, but it is not possible - to determine exactly which license. -is_unknown: yes -spdx_license_key: LicenseRef-scancode-unknown diff --git a/src/licensedcode/data/licenses/unlicense.LICENSE b/src/licensedcode/data/licenses/unlicense.LICENSE index 00d2e135a7e..2aa854573b3 100644 --- a/src/licensedcode/data/licenses/unlicense.LICENSE +++ b/src/licensedcode/data/licenses/unlicense.LICENSE @@ -1,3 +1,19 @@ +--- +key: unlicense +short_name: Unlicense +name: Unlicense +category: Public Domain +owner: Unlicense +homepage_url: http://unlicense.org/ +notes: Per SPDX.org, this is a public domain dedication +spdx_license_key: Unlicense +text_urls: + - https://unlicense.org/ +faq_url: http://unlicense.org/ +ignorable_urls: + - http://unlicense.org/ +--- + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or diff --git a/src/licensedcode/data/licenses/unlicense.yml b/src/licensedcode/data/licenses/unlicense.yml deleted file mode 100644 index e7dbd670bb9..00000000000 --- a/src/licensedcode/data/licenses/unlicense.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: unlicense -short_name: Unlicense -name: Unlicense -category: Public Domain -owner: Unlicense -homepage_url: http://unlicense.org/ -notes: Per SPDX.org, this is a public domain dedication -spdx_license_key: Unlicense -text_urls: - - https://unlicense.org/ -faq_url: http://unlicense.org/ -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/licenses/unlimited-binary-linking.LICENSE b/src/licensedcode/data/licenses/unlimited-binary-linking.LICENSE index 89c9f232319..6bb03a1ebbc 100644 --- a/src/licensedcode/data/licenses/unlimited-binary-linking.LICENSE +++ b/src/licensedcode/data/licenses/unlimited-binary-linking.LICENSE @@ -1,3 +1,13 @@ +--- +key: unlimited-binary-linking +short_name: Unlimited Binary Linking Exception +name: Unlimited Binary Linking Exception +category: Permissive +owner: nexB +is_exception: yes +spdx_license_key: LicenseRef-scancode-unlimited-binary-linking +--- + As a special exception, you may use, copy, link, modify and distribute under the user's own terms, binary object code versions of works based -on the library. +on the library. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/unlimited-binary-linking.yml b/src/licensedcode/data/licenses/unlimited-binary-linking.yml deleted file mode 100644 index b477b6a322a..00000000000 --- a/src/licensedcode/data/licenses/unlimited-binary-linking.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: unlimited-binary-linking -short_name: Unlimited Binary Linking Exception -name: Unlimited Binary Linking Exception -category: Permissive -owner: nexB -is_exception: yes -spdx_license_key: LicenseRef-scancode-unlimited-binary-linking diff --git a/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.LICENSE b/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.LICENSE index 2cf6203b861..5ef7501e808 100644 --- a/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.LICENSE +++ b/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.LICENSE @@ -1,3 +1,16 @@ +--- +key: unlimited-linking-exception-gpl +short_name: Unlimited linking exception to GPL +name: Unlimited linking exception to GPL +category: Copyleft +owner: Free Software Foundation (FSF) +notes: this is a rare variant of an LGPL exception foudn in glibc +is_exception: yes +spdx_license_key: LicenseRef-scancode-unlimited-link-exception-gpl +other_spdx_license_keys: + - LicenseRef-scancode-unlimited-linking-exception-gpl +--- + In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute diff --git a/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.yml b/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.yml deleted file mode 100644 index 47e6320f914..00000000000 --- a/src/licensedcode/data/licenses/unlimited-linking-exception-gpl.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: unlimited-linking-exception-gpl -short_name: Unlimited linking exception to GPL -name: Unlimited linking exception to GPL -category: Copyleft -owner: Free Software Foundation (FSF) -notes: this is a rare variant of an LGPL exception foudn in glibc -is_exception: yes -spdx_license_key: LicenseRef-scancode-unlimited-link-exception-gpl -other_spdx_license_keys: - - LicenseRef-scancode-unlimited-linking-exception-gpl diff --git a/src/licensedcode/data/licenses/unlimited-linking-exception-lgpl.LICENSE b/src/licensedcode/data/licenses/unlimited-linking-exception-lgpl.LICENSE index 3e448859b87..8de81d68eff 100644 --- a/src/licensedcode/data/licenses/unlimited-linking-exception-lgpl.LICENSE +++ b/src/licensedcode/data/licenses/unlimited-linking-exception-lgpl.LICENSE @@ -1,3 +1,43 @@ +--- +key: unlimited-linking-exception-lgpl +short_name: Unlimited linking exception to LGPL +name: Unlimited linking exception to LGPL +category: Copyleft Limited +owner: Free Software Foundation (FSF) +homepage_url: http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup +is_exception: yes +spdx_license_key: LicenseRef-scancode-unlimited-link-exception-lgpl +other_spdx_license_keys: + - LicenseRef-scancode-unlimited-linking-exception-lgpl +other_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +standard_notice: | + Copyright (C) 1996-2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + The GNU C Library is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation. + In addition to the permissions in the GNU Lesser General Public License, + the Free Software Foundation gives you unlimited permission to link the + compiled version of this file with other programs, and to distribute those + programs without any restriction coming from the use of this file. (The GNU + Lesser General Public License restrictions do apply in other respects; for + example, they cover modification of the file, and distribution when not + linked into another program.) + Note that people who make modified versions of this file are not obligated + to grant this special exception for their modified versions; it is their + choice whether to do so. The GNU Lesser General Public License gives + permission to release a modified version without this exception; this + exception also makes it possible to release a modified version which + carries forward this exception. + The GNU C 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 the GNU C Library; if not, see . +--- + In addition to the permissions in the GNU Lesser General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute those programs diff --git a/src/licensedcode/data/licenses/unlimited-linking-exception-lgpl.yml b/src/licensedcode/data/licenses/unlimited-linking-exception-lgpl.yml deleted file mode 100644 index 99edd01cf81..00000000000 --- a/src/licensedcode/data/licenses/unlimited-linking-exception-lgpl.yml +++ /dev/null @@ -1,37 +0,0 @@ -key: unlimited-linking-exception-lgpl -short_name: Unlimited linking exception to LGPL -name: Unlimited linking exception to LGPL -category: Copyleft Limited -owner: Free Software Foundation (FSF) -homepage_url: http://www.eglibc.org/cgi-bin/viewvc.cgi/branches/eglibc-2_18/libc/io/stat64.c?revision=23787&view=markup -is_exception: yes -spdx_license_key: LicenseRef-scancode-unlimited-link-exception-lgpl -other_spdx_license_keys: - - LicenseRef-scancode-unlimited-linking-exception-lgpl -other_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt -standard_notice: | - Copyright (C) 1996-2013 Free Software Foundation, Inc. - This file is part of the GNU C Library. - The GNU C Library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation. - In addition to the permissions in the GNU Lesser General Public License, - the Free Software Foundation gives you unlimited permission to link the - compiled version of this file with other programs, and to distribute those - programs without any restriction coming from the use of this file. (The GNU - Lesser General Public License restrictions do apply in other respects; for - example, they cover modification of the file, and distribution when not - linked into another program.) - Note that people who make modified versions of this file are not obligated - to grant this special exception for their modified versions; it is their - choice whether to do so. The GNU Lesser General Public License gives - permission to release a modified version without this exception; this - exception also makes it possible to release a modified version which - carries forward this exception. - The GNU C 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 the GNU C Library; if not, see . diff --git a/src/licensedcode/data/licenses/unpbook.LICENSE b/src/licensedcode/data/licenses/unpbook.LICENSE index 46a38f50ee8..def476ca9f8 100644 --- a/src/licensedcode/data/licenses/unpbook.LICENSE +++ b/src/licensedcode/data/licenses/unpbook.LICENSE @@ -1,3 +1,13 @@ +--- +key: unpbook +short_name: UNIX Network Programming Book License +name: UNIX Network Programming Book License +category: Permissive +owner: UNIX Network Programming Book Authors +homepage_url: http://www.unixnetworkprogramming.com/src.html +spdx_license_key: LicenseRef-scancode-unpbook +--- + Permission to use or modify this software for educational or for commercial purposes, and without fee, is hereby granted, provided that the above copyright notice appears in connection diff --git a/src/licensedcode/data/licenses/unpbook.yml b/src/licensedcode/data/licenses/unpbook.yml deleted file mode 100644 index ff872cac010..00000000000 --- a/src/licensedcode/data/licenses/unpbook.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: unpbook -short_name: UNIX Network Programming Book License -name: UNIX Network Programming Book License -category: Permissive -owner: UNIX Network Programming Book Authors -homepage_url: http://www.unixnetworkprogramming.com/src.html -spdx_license_key: LicenseRef-scancode-unpbook diff --git a/src/licensedcode/data/licenses/unpublished-source.LICENSE b/src/licensedcode/data/licenses/unpublished-source.LICENSE index ba19ae77003..899de550655 100644 --- a/src/licensedcode/data/licenses/unpublished-source.LICENSE +++ b/src/licensedcode/data/licenses/unpublished-source.LICENSE @@ -1,3 +1,13 @@ +--- +key: unpublished-source +short_name: Unpublished Source License +name: Unpublished Source License +category: Commercial +owner: Unspecified +is_generic: yes +spdx_license_key: LicenseRef-scancode-unpublished-source +--- + THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE of the Copyright Holder. The contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written diff --git a/src/licensedcode/data/licenses/unpublished-source.yml b/src/licensedcode/data/licenses/unpublished-source.yml deleted file mode 100644 index 11f457e2985..00000000000 --- a/src/licensedcode/data/licenses/unpublished-source.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: unpublished-source -short_name: Unpublished Source License -name: Unpublished Source License -category: Commercial -owner: Unspecified -is_generic: yes -spdx_license_key: LicenseRef-scancode-unpublished-source diff --git a/src/licensedcode/data/licenses/unrar.LICENSE b/src/licensedcode/data/licenses/unrar.LICENSE index b5e747dbc51..52efade4096 100644 --- a/src/licensedcode/data/licenses/unrar.LICENSE +++ b/src/licensedcode/data/licenses/unrar.LICENSE @@ -1,3 +1,14 @@ +--- +key: unrar +short_name: UnRar License +name: UnRar License +category: Source-available +owner: RAR +homepage_url: http://sharpnews.weebly.com/uploads/1/2/7/9/1279604/license.txt +spdx_license_key: LicenseRef-scancode-unrar +osi_url: http://www.rarlab.com/rar/unrarsrc-5.2.7.tar.gz +--- + ****** ***** ****** UnRAR - free utility for RAR archives ** ** ** ** ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ****** ******* ****** License for use and distribution of diff --git a/src/licensedcode/data/licenses/unrar.yml b/src/licensedcode/data/licenses/unrar.yml deleted file mode 100644 index 468b07e4258..00000000000 --- a/src/licensedcode/data/licenses/unrar.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: unrar -short_name: UnRar License -name: UnRar License -category: Source-available -owner: RAR -homepage_url: http://sharpnews.weebly.com/uploads/1/2/7/9/1279604/license.txt -spdx_license_key: LicenseRef-scancode-unrar -osi_url: http://www.rarlab.com/rar/unrarsrc-5.2.7.tar.gz diff --git a/src/licensedcode/data/licenses/unsplash.LICENSE b/src/licensedcode/data/licenses/unsplash.LICENSE index 52667475450..d6a7fb1653b 100644 --- a/src/licensedcode/data/licenses/unsplash.LICENSE +++ b/src/licensedcode/data/licenses/unsplash.LICENSE @@ -1,3 +1,14 @@ +--- +key: unsplash +short_name: Unsplash License +name: Unsplash License +category: Free Restricted +owner: Unsplash +homepage_url: https://unsplash.com/license +spdx_license_key: LicenseRef-scancode-unsplash +faq_url: https://help.unsplash.com/en/collections/1463188-unsplash-license +--- + Unsplash grants you an irrevocable, nonexclusive, worldwide copyright license to download, copy, modify, distribute, perform, and use photos from Unsplash for free, including for commercial purposes, without permission from or attributing the photographer diff --git a/src/licensedcode/data/licenses/unsplash.yml b/src/licensedcode/data/licenses/unsplash.yml deleted file mode 100644 index 1248493efb1..00000000000 --- a/src/licensedcode/data/licenses/unsplash.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: unsplash -short_name: Unsplash License -name: Unsplash License -category: Free Restricted -owner: Unsplash -homepage_url: https://unsplash.com/license -spdx_license_key: LicenseRef-scancode-unsplash -faq_url: https://help.unsplash.com/en/collections/1463188-unsplash-license diff --git a/src/licensedcode/data/licenses/uofu-rfpl.LICENSE b/src/licensedcode/data/licenses/uofu-rfpl.LICENSE index f6ff5678e3f..dbdc0d8e740 100644 --- a/src/licensedcode/data/licenses/uofu-rfpl.LICENSE +++ b/src/licensedcode/data/licenses/uofu-rfpl.LICENSE @@ -1,3 +1,21 @@ +--- +key: uofu-rfpl +short_name: UURF Public License +name: University of Utah Research Foundation Public License +category: Proprietary Free +owner: University of Utah Research Foundation (UURF) +homepage_url: http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt +spdx_license_key: LicenseRef-scancode-uofu-rfpl +text_urls: + - http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt +ignorable_copyrights: + - Copyright (c) 2001, 1998 University of Utah +ignorable_holders: + - University of Utah +ignorable_authors: + - the University of Utah +--- + UNIVERSITY OF UTAH RESEARCH FOUNDATION PUBLIC LICENSE 1. Definitions diff --git a/src/licensedcode/data/licenses/uofu-rfpl.yml b/src/licensedcode/data/licenses/uofu-rfpl.yml deleted file mode 100644 index e69935d7d9f..00000000000 --- a/src/licensedcode/data/licenses/uofu-rfpl.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: uofu-rfpl -short_name: UURF Public License -name: University of Utah Research Foundation Public License -category: Proprietary Free -owner: University of Utah Research Foundation (UURF) -homepage_url: http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt -spdx_license_key: LicenseRef-scancode-uofu-rfpl -text_urls: - - http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt -ignorable_copyrights: - - Copyright (c) 2001, 1998 University of Utah -ignorable_holders: - - University of Utah -ignorable_authors: - - the University of Utah diff --git a/src/licensedcode/data/licenses/uoi-ncsa.LICENSE b/src/licensedcode/data/licenses/uoi-ncsa.LICENSE index 4096b20d0de..c09f5362953 100644 --- a/src/licensedcode/data/licenses/uoi-ncsa.LICENSE +++ b/src/licensedcode/data/licenses/uoi-ncsa.LICENSE @@ -1,3 +1,24 @@ +--- +key: uoi-ncsa +short_name: NCSA Open Source License +name: University of Illinois/NCSA Open Source License +category: Permissive +owner: NCSA - University of Illinois +homepage_url: http://www.otm.illinois.edu/faculty/forms/opensource.asp +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: NCSA +text_urls: + - http://www.otm.illinois.edu/faculty/forms/opensource.asp +osi_url: http://www.opensource.org/licenses/UoI-NCSA.php +other_urls: + - http://otm.illinois.edu/uiuc_openSource + - http://www.ncsa.uiuc.edu/ + - http://www.opensource.org/licenses/NCSA + - http://www.stlinux.com/node/140 + - https://opensource.org/licenses/NCSA +minimum_coverage: 50 +--- + University of Illinois/NCSA Open Source License Permission is hereby granted, free of charge, to any person obtaining a copy of this @@ -23,4 +44,4 @@ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS 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 WITH THE SOFTWARE. +SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/uoi-ncsa.yml b/src/licensedcode/data/licenses/uoi-ncsa.yml deleted file mode 100644 index 229b9f9bfae..00000000000 --- a/src/licensedcode/data/licenses/uoi-ncsa.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: uoi-ncsa -short_name: NCSA Open Source License -name: University of Illinois/NCSA Open Source License -category: Permissive -owner: NCSA - University of Illinois -homepage_url: http://www.otm.illinois.edu/faculty/forms/opensource.asp -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: NCSA -text_urls: - - http://www.otm.illinois.edu/faculty/forms/opensource.asp -osi_url: http://www.opensource.org/licenses/UoI-NCSA.php -other_urls: - - http://otm.illinois.edu/uiuc_openSource - - http://www.ncsa.uiuc.edu/ - - http://www.opensource.org/licenses/NCSA - - http://www.stlinux.com/node/140 - - https://opensource.org/licenses/NCSA -minimum_coverage: 50 diff --git a/src/licensedcode/data/licenses/upl-1.0.LICENSE b/src/licensedcode/data/licenses/upl-1.0.LICENSE index 201e4a3fc0b..29ae8419ca3 100644 --- a/src/licensedcode/data/licenses/upl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/upl-1.0.LICENSE @@ -1,3 +1,19 @@ +--- +key: upl-1.0 +short_name: UPL 1.0 +name: Universal Permissive License (UPL) v1.0 +category: Permissive +owner: Oracle Corporation +homepage_url: http://opensource.org/licenses/UPL +spdx_license_key: UPL-1.0 +osi_url: http://opensource.org/licenses/UPL +other_urls: + - http://h30499.www3.hp.com/t5/HP-Software-Solutions-Blog/Use-Oracle-s-UPL-Abandon-Your-Intellectual-Property/ba-p/6485626#.VQsAeWTF8z0 + - https://opensource.org/licenses/UPL + - https://oss.oracle.com/licenses/upl/index.html + - https://www.jcp.org/aboutJava/communityprocess/ec-public/materials/2014-04-15/UPL.pdf +--- + The Universal Permissive License (UPL), Version 1.0 Subject to the condition set forth below, permission is hereby granted to any diff --git a/src/licensedcode/data/licenses/upl-1.0.yml b/src/licensedcode/data/licenses/upl-1.0.yml deleted file mode 100644 index be20b494a9a..00000000000 --- a/src/licensedcode/data/licenses/upl-1.0.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: upl-1.0 -short_name: UPL 1.0 -name: Universal Permissive License (UPL) v1.0 -category: Permissive -owner: Oracle Corporation -homepage_url: http://opensource.org/licenses/UPL -spdx_license_key: UPL-1.0 -osi_url: http://opensource.org/licenses/UPL -other_urls: - - http://h30499.www3.hp.com/t5/HP-Software-Solutions-Blog/Use-Oracle-s-UPL-Abandon-Your-Intellectual-Property/ba-p/6485626#.VQsAeWTF8z0 - - https://opensource.org/licenses/UPL - - https://oss.oracle.com/licenses/upl/index.html - - https://www.jcp.org/aboutJava/communityprocess/ec-public/materials/2014-04-15/UPL.pdf diff --git a/src/licensedcode/data/licenses/upx-exception-2.0-plus.LICENSE b/src/licensedcode/data/licenses/upx-exception-2.0-plus.LICENSE index 28accc1e3f9..fdf313e796e 100644 --- a/src/licensedcode/data/licenses/upx-exception-2.0-plus.LICENSE +++ b/src/licensedcode/data/licenses/upx-exception-2.0-plus.LICENSE @@ -1,3 +1,100 @@ +--- +key: upx-exception-2.0-plus +short_name: UPX exception to GPL 2.0 or later +name: UPX exception to GPL 2.0 or later +category: Copyleft Limited +owner: UPX +homepage_url: https://github.com/upx/upx/blob/master/LICENSE +is_exception: yes +spdx_license_key: LicenseRef-scancode-upx-exception-2.0-plus +other_urls: + - http://wildsau.idv.uni-linz.ac.at/mfx/upx.html + - http://www.nexus.hu/upx + - http://upx.tsx.org + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/gpl-3.0.txt +minimum_coverage: 50 +standard_notice: | + The Ultimate Packer for eXecutables + Copyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar + http://wildsau.idv.uni-linz.ac.at/mfx/upx.html + http://www.nexus.hu/upx + http://upx.tsx.org + PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN + TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. + ABSTRACT + ======== + UPX and UCL are copyrighted software distributed under the terms of the GNU + General Public License (hereinafter the "GPL"). + The stub which is imbedded in each UPX compressed program is part of UPX + and UCL, and contains code that is under our copyright. The terms of the + GNU General Public License still apply as compressing a program is a + special form of linking with our stub. + As a special exception we grant the free usage of UPX for all executables, + including commercial programs. + See below for details and restrictions. + COPYRIGHT + ========= + UPX and UCL are copyrighted software. All rights remain with the authors. + UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer + UPX is Copyright (C) 1996-2000 Laszlo Molnar + UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer + GNU GENERAL PUBLIC LICENSE + ========================== + UPX and the UCL library are free software; you can redistribute them and/or + modify them 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. + UPX and UCL are distributed in the hope that they 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; see the file COPYING. + SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES + ============================================ + The stub which is imbedded in each UPX compressed program is part of UPX + and UCL, and contains code that is under our copyright. The terms of the + GNU General Public License still apply as compressing a program is a + special form of linking with our stub. + Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special + permission to freely use and distribute all UPX compressed programs + (including commercial ones), subject to the following restrictions: + 1. You must compress your program with a completely unmodified UPX version; + either with our precompiled version, or (at your option) with a self + compiled version of the unmodified UPX sources as distributed by us. + 2. This also implies that the UPX stub must be completely unmodfied, + i.e.the stub imbedded in your compressed program must be byte-identical to + the stub that is produced by the official unmodified UPX version. + 3. The decompressor and any other code from the stub must exclusively get + used by the unmodified UPX stub for decompressing your program at program + startup. No portion of the stub may get read, copied, called or otherwise + get used or accessed by your program. + ANNOTATIONS + =========== + - You can use a modified UPX version or modified UPX stub only for programs + that are compatible with the GNU General Public License. + - We grant you special permission to freely use and distribute all UPX + compressed programs. But any modification of the UPX stub (such as, but not + limited to, removing our copyright string or making your program non- + decompressible) will immediately revoke your right to use and distribute a + UPX compressed program. + - UPX is not a software protection tool; by requiring that you use the + unmodified UPX version for your proprietary programs we + make sure that any user can decompress your program. This protects both you + and your users as nobody can hide malicious code - any program that cannot + be decompressed is highly suspicious by definition. + - You can integrate all or part of UPX and UCL into projects that are + compatible with the GNU GPL, but obviously you cannot grant any special + exceptions beyond the GPL for our code in your project. + - We want to actively support manufacturers of virus scanners and similar + security software. Please contact us if you would like to incorporate parts + of UPX or UCL into such a product. + Markus F.X.J. Oberhumer Laszlo Molnar + markus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu + Linz, Austria, 25 Feb 2000 +--- + SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES ============================================ diff --git a/src/licensedcode/data/licenses/upx-exception-2.0-plus.yml b/src/licensedcode/data/licenses/upx-exception-2.0-plus.yml deleted file mode 100644 index d48c9caf817..00000000000 --- a/src/licensedcode/data/licenses/upx-exception-2.0-plus.yml +++ /dev/null @@ -1,94 +0,0 @@ -key: upx-exception-2.0-plus -short_name: UPX exception to GPL 2.0 or later -name: UPX exception to GPL 2.0 or later -category: Copyleft Limited -owner: UPX -homepage_url: https://github.com/upx/upx/blob/master/LICENSE -is_exception: yes -spdx_license_key: LicenseRef-scancode-upx-exception-2.0-plus -other_urls: - - http://wildsau.idv.uni-linz.ac.at/mfx/upx.html - - http://www.nexus.hu/upx - - http://upx.tsx.org - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/licenses/gpl-3.0.txt -minimum_coverage: 50 -standard_notice: | - The Ultimate Packer for eXecutables - Copyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar - http://wildsau.idv.uni-linz.ac.at/mfx/upx.html - http://www.nexus.hu/upx - http://upx.tsx.org - PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN - TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. - ABSTRACT - ======== - UPX and UCL are copyrighted software distributed under the terms of the GNU - General Public License (hereinafter the "GPL"). - The stub which is imbedded in each UPX compressed program is part of UPX - and UCL, and contains code that is under our copyright. The terms of the - GNU General Public License still apply as compressing a program is a - special form of linking with our stub. - As a special exception we grant the free usage of UPX for all executables, - including commercial programs. - See below for details and restrictions. - COPYRIGHT - ========= - UPX and UCL are copyrighted software. All rights remain with the authors. - UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer - UPX is Copyright (C) 1996-2000 Laszlo Molnar - UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer - GNU GENERAL PUBLIC LICENSE - ========================== - UPX and the UCL library are free software; you can redistribute them and/or - modify them 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. - UPX and UCL are distributed in the hope that they 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; see the file COPYING. - SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES - ============================================ - The stub which is imbedded in each UPX compressed program is part of UPX - and UCL, and contains code that is under our copyright. The terms of the - GNU General Public License still apply as compressing a program is a - special form of linking with our stub. - Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special - permission to freely use and distribute all UPX compressed programs - (including commercial ones), subject to the following restrictions: - 1. You must compress your program with a completely unmodified UPX version; - either with our precompiled version, or (at your option) with a self - compiled version of the unmodified UPX sources as distributed by us. - 2. This also implies that the UPX stub must be completely unmodfied, - i.e.the stub imbedded in your compressed program must be byte-identical to - the stub that is produced by the official unmodified UPX version. - 3. The decompressor and any other code from the stub must exclusively get - used by the unmodified UPX stub for decompressing your program at program - startup. No portion of the stub may get read, copied, called or otherwise - get used or accessed by your program. - ANNOTATIONS - =========== - - You can use a modified UPX version or modified UPX stub only for programs - that are compatible with the GNU General Public License. - - We grant you special permission to freely use and distribute all UPX - compressed programs. But any modification of the UPX stub (such as, but not - limited to, removing our copyright string or making your program non- - decompressible) will immediately revoke your right to use and distribute a - UPX compressed program. - - UPX is not a software protection tool; by requiring that you use the - unmodified UPX version for your proprietary programs we - make sure that any user can decompress your program. This protects both you - and your users as nobody can hide malicious code - any program that cannot - be decompressed is highly suspicious by definition. - - You can integrate all or part of UPX and UCL into projects that are - compatible with the GNU GPL, but obviously you cannot grant any special - exceptions beyond the GPL for our code in your project. - - We want to actively support manufacturers of virus scanners and similar - security software. Please contact us if you would like to incorporate parts - of UPX or UCL into such a product. - Markus F.X.J. Oberhumer Laszlo Molnar - markus.oberhumer@jk.uni-linz.ac.at ml1050@cdata.tvnet.hu - Linz, Austria, 25 Feb 2000 diff --git a/src/licensedcode/data/licenses/us-govt-public-domain.LICENSE b/src/licensedcode/data/licenses/us-govt-public-domain.LICENSE index 17f25564942..c66e19c7dc8 100644 --- a/src/licensedcode/data/licenses/us-govt-public-domain.LICENSE +++ b/src/licensedcode/data/licenses/us-govt-public-domain.LICENSE @@ -1,3 +1,20 @@ +--- +key: us-govt-public-domain +short_name: US Government Public Domain +name: United States Government Public Domain +category: Public Domain +owner: US Government +notes: Per 17 U.S. Code § 105. Subject matter of copyright, United States Government works + Copyright protection under this title is not available for any work of the United States + Government +is_generic: yes +spdx_license_key: LicenseRef-scancode-us-govt-public-domain +other_urls: + - https://www.law.cornell.edu/uscode/text/17/105 + - https://en.wikipedia.org/wiki/Copyright_status_of_works_by_the_federal_government_of_the_United_States + - https://en.wikipedia.org/wiki/Wikipedia:Public_domain#U.S._government_works +--- + 17 U.S. Code $ 105. Subject matter of copyright: United States Government works Copyright protection under this title is not available for any work of the diff --git a/src/licensedcode/data/licenses/us-govt-public-domain.yml b/src/licensedcode/data/licenses/us-govt-public-domain.yml deleted file mode 100644 index 8be33292255..00000000000 --- a/src/licensedcode/data/licenses/us-govt-public-domain.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: us-govt-public-domain -short_name: US Government Public Domain -name: United States Government Public Domain -category: Public Domain -owner: US Government -notes: Per 17 U.S. Code § 105. Subject matter of copyright, United States Government works - Copyright protection under this title is not available for any work of the United States - Government -is_generic: yes -spdx_license_key: LicenseRef-scancode-us-govt-public-domain -other_urls: - - https://www.law.cornell.edu/uscode/text/17/105 - - https://en.wikipedia.org/wiki/Copyright_status_of_works_by_the_federal_government_of_the_United_States - - https://en.wikipedia.org/wiki/Wikipedia:Public_domain#U.S._government_works diff --git a/src/licensedcode/data/licenses/us-govt-unlimited-rights.LICENSE b/src/licensedcode/data/licenses/us-govt-unlimited-rights.LICENSE index 0b98c0a2645..53bfb6cc7b5 100644 --- a/src/licensedcode/data/licenses/us-govt-unlimited-rights.LICENSE +++ b/src/licensedcode/data/licenses/us-govt-unlimited-rights.LICENSE @@ -1,3 +1,17 @@ +--- +key: us-govt-unlimited-rights +short_name: US Government Unlimited Rights +name: US Government Grant of Unlimited Rights +category: Permissive +owner: US Government +spdx_license_key: LicenseRef-scancode-us-govt-unlimited-rights +text_urls: + - https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt +other_urls: + - https://github.com/fernando-rodriguez/freexc16/blob/95cad1ccc9568b9e83ddc25a28711011546a5c63/src/XC_GCC/gcc/gcc/testsuite/ada/acats/tests/a/a22006b.ada + - https://github.com/AppliedIS/tau-ui/blob/b6af0deb755b412e7d24e9f3d78a6173180d3619/COPYRIGHT.txt +--- + Grant of Unlimited Rights Under contracts , the U.S. Government obtained diff --git a/src/licensedcode/data/licenses/us-govt-unlimited-rights.yml b/src/licensedcode/data/licenses/us-govt-unlimited-rights.yml deleted file mode 100644 index 55de0c9217a..00000000000 --- a/src/licensedcode/data/licenses/us-govt-unlimited-rights.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: us-govt-unlimited-rights -short_name: US Government Unlimited Rights -name: US Government Grant of Unlimited Rights -category: Permissive -owner: US Government -spdx_license_key: LicenseRef-scancode-us-govt-unlimited-rights -text_urls: - - https://github.com/Slicer/Slicer/blob/v4.6.2/COPYRIGHT.txt -other_urls: - - https://github.com/fernando-rodriguez/freexc16/blob/95cad1ccc9568b9e83ddc25a28711011546a5c63/src/XC_GCC/gcc/gcc/testsuite/ada/acats/tests/a/a22006b.ada - - https://github.com/AppliedIS/tau-ui/blob/b6af0deb755b412e7d24e9f3d78a6173180d3619/COPYRIGHT.txt diff --git a/src/licensedcode/data/licenses/usrobotics-permissive.LICENSE b/src/licensedcode/data/licenses/usrobotics-permissive.LICENSE index ec9ae62926f..a68cff7e5a5 100644 --- a/src/licensedcode/data/licenses/usrobotics-permissive.LICENSE +++ b/src/licensedcode/data/licenses/usrobotics-permissive.LICENSE @@ -1,3 +1,31 @@ +--- +key: usrobotics-permissive +short_name: USRobotics Permissive License +name: USRobotics Permissive License +category: Permissive +owner: USRobotics +homepage_url: http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c +spdx_license_key: LicenseRef-scancode-usrobotics-permissive +standard_notice: | + /* + * + * Copyright (c) 1996 U.S. Robotics, Access Corp. + * All rights reserved. + * + * Permission to copy, display, distribute and make derivative works + * from this material in whole or in part for any purpose is granted + * provided that the above copyright notice and this paragraph are + * duplicated in all copies. THIS SOFTWARE IS PROVIDED "AS IS" AND + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT + * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE. + * + * If providing code not subject to a copyright please indicate that the + * code has been dedicated to the public. + * + */ +--- + Permission to copy, display, distribute and make derivative works from this material in whole or in part for any purpose is granted provided that the above copyright notice and this paragraph are diff --git a/src/licensedcode/data/licenses/usrobotics-permissive.yml b/src/licensedcode/data/licenses/usrobotics-permissive.yml deleted file mode 100644 index aade0add0c1..00000000000 --- a/src/licensedcode/data/licenses/usrobotics-permissive.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: usrobotics-permissive -short_name: USRobotics Permissive License -name: USRobotics Permissive License -category: Permissive -owner: USRobotics -homepage_url: http://web.mit.edu/kolya/.f/root/athena.mit.edu/net/project/radius/3.6B/src/resources.c -spdx_license_key: LicenseRef-scancode-usrobotics-permissive -standard_notice: | - /* - * - * Copyright (c) 1996 U.S. Robotics, Access Corp. - * All rights reserved. - * - * Permission to copy, display, distribute and make derivative works - * from this material in whole or in part for any purpose is granted - * provided that the above copyright notice and this paragraph are - * duplicated in all copies. THIS SOFTWARE IS PROVIDED "AS IS" AND - * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT - * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - * FOR A PARTICULAR PURPOSE. - * - * If providing code not subject to a copyright please indicate that the - * code has been dedicated to the public. - * - */ diff --git a/src/licensedcode/data/licenses/utopia.LICENSE b/src/licensedcode/data/licenses/utopia.LICENSE index a72d4526396..1a978656eb3 100644 --- a/src/licensedcode/data/licenses/utopia.LICENSE +++ b/src/licensedcode/data/licenses/utopia.LICENSE @@ -1,3 +1,22 @@ +--- +key: utopia +short_name: Utopia Typeface License +name: License to TeX Users Group for the Utopia Typeface +category: Permissive +owner: Adobe Systems +homepage_url: http://tug.org/fonts/utopia +spdx_license_key: LicenseRef-scancode-utopia +text_urls: + - https://tug.org/fonts/utopia/LICENSE-utopia.txt +ignorable_copyrights: + - Copyright 1989, 1991 Adobe Systems Incorporated +ignorable_holders: + - Adobe Systems Incorporated +ignorable_urls: + - http://tug.org/fonts/utopia + - http://www.adobe.com/misc/pdfs/TM +--- + The agreement below gives the TeX Users Group (TUG) the right to sublicense, and grant such sublicensees the right to further sublicense, any or all of the rights enumerated below. TUG hereby does so diff --git a/src/licensedcode/data/licenses/utopia.yml b/src/licensedcode/data/licenses/utopia.yml deleted file mode 100644 index c47e2c1fd9b..00000000000 --- a/src/licensedcode/data/licenses/utopia.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: utopia -short_name: Utopia Typeface License -name: License to TeX Users Group for the Utopia Typeface -category: Permissive -owner: Adobe Systems -homepage_url: http://tug.org/fonts/utopia -spdx_license_key: LicenseRef-scancode-utopia -text_urls: - - https://tug.org/fonts/utopia/LICENSE-utopia.txt -ignorable_copyrights: - - Copyright 1989, 1991 Adobe Systems Incorporated -ignorable_holders: - - Adobe Systems Incorporated -ignorable_urls: - - http://tug.org/fonts/utopia - - http://www.adobe.com/misc/pdfs/TM diff --git a/src/licensedcode/data/licenses/vbaccelerator.LICENSE b/src/licensedcode/data/licenses/vbaccelerator.LICENSE index 45282e6e959..5566a47c30f 100644 --- a/src/licensedcode/data/licenses/vbaccelerator.LICENSE +++ b/src/licensedcode/data/licenses/vbaccelerator.LICENSE @@ -1,3 +1,13 @@ +--- +key: vbaccelerator +short_name: vbAccelerator Distribution Notice +name: vbAccelerator Distribution Notice +category: Free Restricted +owner: vbAccelerator +homepage_url: http://vbaccelerator.com/ +spdx_license_key: LicenseRef-scancode-vbaccelerator +--- + Distribution notice: You are free to distribute this zip in it's original state to any @@ -14,4 +24,4 @@ If you wish to distribute this zip by any other means (i.e. if you want to include it on a CD or any other software media) then the EXPRESS PERMISSION of the author is REQUIRED. -Please report any bugs in the component to the author. +Please report any bugs in the component to the author. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/vbaccelerator.yml b/src/licensedcode/data/licenses/vbaccelerator.yml deleted file mode 100644 index 4ce2ec05ced..00000000000 --- a/src/licensedcode/data/licenses/vbaccelerator.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: vbaccelerator -short_name: vbAccelerator Distribution Notice -name: vbAccelerator Distribution Notice -category: Free Restricted -owner: vbAccelerator -homepage_url: http://vbaccelerator.com/ -spdx_license_key: LicenseRef-scancode-vbaccelerator diff --git a/src/licensedcode/data/licenses/vcalendar.LICENSE b/src/licensedcode/data/licenses/vcalendar.LICENSE index bc0f32340e2..8adbc8d23c4 100644 --- a/src/licensedcode/data/licenses/vcalendar.LICENSE +++ b/src/licensedcode/data/licenses/vcalendar.LICENSE @@ -1,3 +1,13 @@ +--- +key: vcalendar +short_name: VCalendar License +name: VCalendar License +category: Permissive +owner: VCalendar Project +homepage_url: https://github.com/libical/libical/blob/master/src/libicalvcal/vcaltmp.h +spdx_license_key: LicenseRef-scancode-vcalendar +--- + For purposes of this license notice, the term Licensors shall mean, collectively, Apple Computer, Inc., AT&T Corp., International Business Machines Corporation and Siemens Rolm Communications Inc. @@ -28,4 +38,4 @@ PURPOSE. The software is provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the government are subject to restrictions set forth in -DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable. \ No newline at end of file +DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/vcalendar.yml b/src/licensedcode/data/licenses/vcalendar.yml deleted file mode 100644 index 7b853c4ddfc..00000000000 --- a/src/licensedcode/data/licenses/vcalendar.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: vcalendar -short_name: VCalendar License -name: VCalendar License -category: Permissive -owner: VCalendar Project -homepage_url: https://github.com/libical/libical/blob/master/src/libicalvcal/vcaltmp.h -spdx_license_key: LicenseRef-scancode-vcalendar diff --git a/src/licensedcode/data/licenses/verbatim-manual.LICENSE b/src/licensedcode/data/licenses/verbatim-manual.LICENSE index f44cef4c609..b29925803cc 100644 --- a/src/licensedcode/data/licenses/verbatim-manual.LICENSE +++ b/src/licensedcode/data/licenses/verbatim-manual.LICENSE @@ -1,3 +1,21 @@ +--- +key: verbatim-manual +short_name: Verbatim Copies +name: Verbatim Copies Permission +category: Copyleft +owner: BPF Authors +notes: the latext2e, verbatim-manual and abstyles are similar licenses +spdx_license_key: Linux-man-pages-copyleft +other_spdx_license_keys: + - Verbatim-man-pages + - LicenseRef-scancode-verbatim-manual +text_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/bpf_helpers_doc.py?h=v5.0-rc4#n202 +other_urls: + - https://www.kernel.org/doc/man-pages/licenses.html +minimum_coverage: 70 +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. @@ -16,4 +34,4 @@ which is licensed free of charge, as they might when working professionally. Formatted or processed versions of this manual, if unaccompanied by -the source, must acknowledge the copyright and authors of this work. +the source, must acknowledge the copyright and authors of this work. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/verbatim-manual.yml b/src/licensedcode/data/licenses/verbatim-manual.yml deleted file mode 100644 index 919dd2ce848..00000000000 --- a/src/licensedcode/data/licenses/verbatim-manual.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: verbatim-manual -short_name: Verbatim Copies -name: Verbatim Copies Permission -category: Copyleft -owner: BPF Authors -notes: the latext2e, verbatim-manual and abstyles are similar licenses -spdx_license_key: Linux-man-pages-copyleft -other_spdx_license_keys: - - Verbatim-man-pages - - LicenseRef-scancode-verbatim-manual -text_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/bpf_helpers_doc.py?h=v5.0-rc4#n202 -other_urls: - - https://www.kernel.org/doc/man-pages/licenses.html -minimum_coverage: 70 diff --git a/src/licensedcode/data/licenses/verisign.LICENSE b/src/licensedcode/data/licenses/verisign.LICENSE index 19d73a9e3d5..f5b319f5b4f 100644 --- a/src/licensedcode/data/licenses/verisign.LICENSE +++ b/src/licensedcode/data/licenses/verisign.LICENSE @@ -1,3 +1,20 @@ +--- +key: verisign +short_name: VeriSign License +name: VeriSign License +category: Proprietary Free +owner: VeriSign, Inc. +spdx_license_key: LicenseRef-scancode-verisign +other_urls: + - http://www.verisign.com/repository/CPS +ignorable_copyrights: + - Copyright 1995 VeriSign, Inc. +ignorable_holders: + - VeriSign, Inc. +ignorable_urls: + - http://www.verisign.com/repository/CPS +--- + VERISIGN, INC. LICENSE AGREEMENT IMPORTANT - READ CAREFULLY BEFORE DOWNLOADING OR INSTALLING @@ -45,4 +62,4 @@ OR AVAILABLE FROM: Code Fragments and ASN.1 discussion are taken from the PKCS standards published by RSA Data Security, Inc. -Copyright 1995 VeriSign, Inc. All Rights Reserved. +Copyright 1995 VeriSign, Inc. All Rights Reserved. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/verisign.yml b/src/licensedcode/data/licenses/verisign.yml deleted file mode 100644 index 8a242bba248..00000000000 --- a/src/licensedcode/data/licenses/verisign.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: verisign -short_name: VeriSign License -name: VeriSign License -category: Proprietary Free -owner: VeriSign, Inc. -spdx_license_key: LicenseRef-scancode-verisign -other_urls: - - http://www.verisign.com/repository/CPS -ignorable_copyrights: - - Copyright 1995 VeriSign, Inc. -ignorable_holders: - - VeriSign, Inc. -ignorable_urls: - - http://www.verisign.com/repository/CPS diff --git a/src/licensedcode/data/licenses/vhfpl-1.1.LICENSE b/src/licensedcode/data/licenses/vhfpl-1.1.LICENSE index 92eb93880f5..bd6993c9690 100644 --- a/src/licensedcode/data/licenses/vhfpl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/vhfpl-1.1.LICENSE @@ -1,3 +1,23 @@ +--- +key: vhfpl-1.1 +short_name: vhfPL 1.1 +name: vhf Public License V 1.1 +category: Copyleft +owner: Cenon GmbH +homepage_url: http://www.cenon.de +notes: The original name of Cenon was vhf interservice GmbH at http://www.vhf-interservice.com/ + and http://www.vhf.de The company has websites under several different domain names. +spdx_license_key: LicenseRef-scancode-vhfpl-1.1 +ignorable_copyrights: + - Copyright (c) 2003 vhf interservice GmbH service@vhf.de + - Copyright (c) 2003/2004 vhf interservice GmbH, Im Marxle +ignorable_holders: + - vhf interservice GmbH + - vhf interservice GmbH, Im Marxle +ignorable_emails: + - service@vhf.de +--- + vhf Public License Below is a version of the license for the vhf Free Software. The license is diff --git a/src/licensedcode/data/licenses/vhfpl-1.1.yml b/src/licensedcode/data/licenses/vhfpl-1.1.yml deleted file mode 100644 index 75aec1965d1..00000000000 --- a/src/licensedcode/data/licenses/vhfpl-1.1.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: vhfpl-1.1 -short_name: vhfPL 1.1 -name: vhf Public License V 1.1 -category: Copyleft -owner: Cenon GmbH -homepage_url: http://www.cenon.de -notes: The original name of Cenon was vhf interservice GmbH at http://www.vhf-interservice.com/ - and http://www.vhf.de The company has websites under several different domain names. -spdx_license_key: LicenseRef-scancode-vhfpl-1.1 -ignorable_copyrights: - - Copyright (c) 2003 vhf interservice GmbH service@vhf.de - - Copyright (c) 2003/2004 vhf interservice GmbH, Im Marxle -ignorable_holders: - - vhf interservice GmbH - - vhf interservice GmbH, Im Marxle -ignorable_emails: - - service@vhf.de diff --git a/src/licensedcode/data/licenses/vic-metcalfe-pd.LICENSE b/src/licensedcode/data/licenses/vic-metcalfe-pd.LICENSE index 375014e83ac..35ff9ff93d3 100644 --- a/src/licensedcode/data/licenses/vic-metcalfe-pd.LICENSE +++ b/src/licensedcode/data/licenses/vic-metcalfe-pd.LICENSE @@ -1,3 +1,19 @@ +--- +key: vic-metcalfe-pd +short_name: Vic Metcalfe Public Domain +name: Vic Metcalfe Public Domain Notice +category: Public Domain +owner: Vic Metcalfe +homepage_url: http://www.utdallas.edu/~cantrell/ee6345/sockets/socket-faq-examples/sockhelp.c +spdx_license_key: LicenseRef-scancode-vic-metcalfe-pd +ignorable_authors: + - Vic Metcalfe (vic@brutus.tlug.org) +ignorable_urls: + - http://www.interlog.com/~vic/sock-faq +ignorable_emails: + - vic@brutus.tlug.org +--- + This file is provided for use with the unix-socket-faq. It is public domain, and may be copied freely. There is no copyright on it. The original work was by Vic Metcalfe (vic@brutus.tlug.org), and any @@ -8,4 +24,4 @@ If you have found a bug, please pass it on to me at the above address acknowledging that there will be no copyright on your work. The most recent version of this file, and the unix-socket-faq can be -found at http://www.interlog.com/~vic/sock-faq/. +found at http://www.interlog.com/~vic/sock-faq/. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/vic-metcalfe-pd.yml b/src/licensedcode/data/licenses/vic-metcalfe-pd.yml deleted file mode 100644 index 54a553a97d6..00000000000 --- a/src/licensedcode/data/licenses/vic-metcalfe-pd.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: vic-metcalfe-pd -short_name: Vic Metcalfe Public Domain -name: Vic Metcalfe Public Domain Notice -category: Public Domain -owner: Vic Metcalfe -homepage_url: http://www.utdallas.edu/~cantrell/ee6345/sockets/socket-faq-examples/sockhelp.c -spdx_license_key: LicenseRef-scancode-vic-metcalfe-pd -ignorable_authors: - - Vic Metcalfe (vic@brutus.tlug.org) -ignorable_urls: - - http://www.interlog.com/~vic/sock-faq -ignorable_emails: - - vic@brutus.tlug.org diff --git a/src/licensedcode/data/licenses/vicomsoft-software.LICENSE b/src/licensedcode/data/licenses/vicomsoft-software.LICENSE index a9a2248bba2..8aa08b59db6 100644 --- a/src/licensedcode/data/licenses/vicomsoft-software.LICENSE +++ b/src/licensedcode/data/licenses/vicomsoft-software.LICENSE @@ -1,3 +1,13 @@ +--- +key: vicomsoft-software +short_name: Vicomsoft Software License +name: Vicomsoft Software License +category: Commercial +owner: Vicomsoft Ltd. +homepage_url: http://www.vicomsoft.com/ +spdx_license_key: LicenseRef-scancode-vicomsoft-software +--- + VICOMSOFT SOFTWARE LICENSE Please read this document carefully before installing the Vicomsoft software. By installing the software you agree diff --git a/src/licensedcode/data/licenses/vicomsoft-software.yml b/src/licensedcode/data/licenses/vicomsoft-software.yml deleted file mode 100644 index 94ac5c06fab..00000000000 --- a/src/licensedcode/data/licenses/vicomsoft-software.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: vicomsoft-software -short_name: Vicomsoft Software License -name: Vicomsoft Software License -category: Commercial -owner: Vicomsoft Ltd. -homepage_url: http://www.vicomsoft.com/ -spdx_license_key: LicenseRef-scancode-vicomsoft-software diff --git a/src/licensedcode/data/licenses/viewflow-agpl-3.0-exception.LICENSE b/src/licensedcode/data/licenses/viewflow-agpl-3.0-exception.LICENSE index 71dd88b2c54..badea9070c1 100644 --- a/src/licensedcode/data/licenses/viewflow-agpl-3.0-exception.LICENSE +++ b/src/licensedcode/data/licenses/viewflow-agpl-3.0-exception.LICENSE @@ -1,3 +1,20 @@ +--- +key: viewflow-agpl-3.0-exception +short_name: Viewflow Library Exception to AGPL 3.0 +name: Viewflow Library Exception to AGPL 3.0 +category: Copyleft Limited +owner: Viewflow +homepage_url: https://github.com/viewflow/viewflow/blob/master/LICENSE_EXCEPTION +is_exception: yes +spdx_license_key: LicenseRef-scancode-viewflow-agpl-3.0-exception +ignorable_copyrights: + - Copyright (c) 2017 Mikhail Podgurskiy +ignorable_holders: + - Mikhail Podgurskiy +ignorable_emails: + - kmmbvnr@gmail.com +--- + VIEWFLOW LIBRARY EXCEPTION Copyright (c) 2017 Mikhail Podgurskiy diff --git a/src/licensedcode/data/licenses/viewflow-agpl-3.0-exception.yml b/src/licensedcode/data/licenses/viewflow-agpl-3.0-exception.yml deleted file mode 100644 index a7e5e812c1c..00000000000 --- a/src/licensedcode/data/licenses/viewflow-agpl-3.0-exception.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: viewflow-agpl-3.0-exception -short_name: Viewflow Library Exception to AGPL 3.0 -name: Viewflow Library Exception to AGPL 3.0 -category: Copyleft Limited -owner: Viewflow -homepage_url: https://github.com/viewflow/viewflow/blob/master/LICENSE_EXCEPTION -is_exception: yes -spdx_license_key: LicenseRef-scancode-viewflow-agpl-3.0-exception -ignorable_copyrights: - - Copyright (c) 2017 Mikhail Podgurskiy -ignorable_holders: - - Mikhail Podgurskiy -ignorable_emails: - - kmmbvnr@gmail.com diff --git a/src/licensedcode/data/licenses/vim.LICENSE b/src/licensedcode/data/licenses/vim.LICENSE index 0a709f6786e..c1c4f4767ff 100644 --- a/src/licensedcode/data/licenses/vim.LICENSE +++ b/src/licensedcode/data/licenses/vim.LICENSE @@ -1,3 +1,20 @@ +--- +key: vim +short_name: VIM License +name: VIM License +category: Copyleft +owner: VIM +homepage_url: http://vimdoc.sourceforge.net/htmldoc/uganda.html +spdx_license_key: Vim +other_urls: + - http://www.vim.org/docs.php +ignorable_urls: + - http://www.vim.org/ +ignorable_emails: + - Bram@vim.org + - maintainer@vim.org +--- + VIM LICENSE I) There are no restrictions on distributing unmodified copies of Vim except diff --git a/src/licensedcode/data/licenses/vim.yml b/src/licensedcode/data/licenses/vim.yml deleted file mode 100644 index fbee1c47fb8..00000000000 --- a/src/licensedcode/data/licenses/vim.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: vim -short_name: VIM License -name: VIM License -category: Copyleft -owner: VIM -homepage_url: http://vimdoc.sourceforge.net/htmldoc/uganda.html -spdx_license_key: Vim -other_urls: - - http://www.vim.org/docs.php -ignorable_urls: - - http://www.vim.org/ -ignorable_emails: - - Bram@vim.org - - maintainer@vim.org diff --git a/src/licensedcode/data/licenses/visual-idiot.LICENSE b/src/licensedcode/data/licenses/visual-idiot.LICENSE index e72394f7cb4..a5a36274193 100644 --- a/src/licensedcode/data/licenses/visual-idiot.LICENSE +++ b/src/licensedcode/data/licenses/visual-idiot.LICENSE @@ -1,3 +1,13 @@ +--- +key: visual-idiot +short_name: Visual Idiot +name: Visual Idiot License +category: Permissive +owner: visualidiot.com +homepage_url: https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/ +spdx_license_key: LicenseRef-scancode-visual-idiot +--- + By attaching this document to the given files (the “work”), you, the licensee, are hereby granted free usage in both personal and commerical environments, without any @@ -17,4 +27,4 @@ of the work. The work is provided “as is”, without warranty or support, express or implied. The author(s) are not liable for any damages, misuse, or other claim, whether from or as a -consequence of usage of the given work. +consequence of usage of the given work. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/visual-idiot.yml b/src/licensedcode/data/licenses/visual-idiot.yml deleted file mode 100644 index 5d8973c3e4f..00000000000 --- a/src/licensedcode/data/licenses/visual-idiot.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: visual-idiot -short_name: Visual Idiot -name: Visual Idiot License -category: Permissive -owner: visualidiot.com -homepage_url: https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/ -spdx_license_key: LicenseRef-scancode-visual-idiot diff --git a/src/licensedcode/data/licenses/visual-numerics.LICENSE b/src/licensedcode/data/licenses/visual-numerics.LICENSE index 63479d5f927..bfec3245ba4 100644 --- a/src/licensedcode/data/licenses/visual-numerics.LICENSE +++ b/src/licensedcode/data/licenses/visual-numerics.LICENSE @@ -1,3 +1,14 @@ +--- +key: visual-numerics +short_name: Visual Numerics License +name: Visual Numerics License +category: Permissive +owner: Rogue Wave Software, Inc. +spdx_license_key: LicenseRef-scancode-visual-numerics +other_urls: + - http://jtonedm.com/2009/05/05/rogue-wave-software-acquires-visual-numerics/ +--- + Permission to use, copy, modify, and distribute this software is freely granted by Visual Numerics, Inc., provided that the copyright notice above and the following warranty disclaimer are preserved in human readable form. diff --git a/src/licensedcode/data/licenses/visual-numerics.yml b/src/licensedcode/data/licenses/visual-numerics.yml deleted file mode 100644 index 502b81eca25..00000000000 --- a/src/licensedcode/data/licenses/visual-numerics.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: visual-numerics -short_name: Visual Numerics License -name: Visual Numerics License -category: Permissive -owner: Rogue Wave Software, Inc. -spdx_license_key: LicenseRef-scancode-visual-numerics -other_urls: - - http://jtonedm.com/2009/05/05/rogue-wave-software-acquires-visual-numerics/ diff --git a/src/licensedcode/data/licenses/vita-nuova-liberal.LICENSE b/src/licensedcode/data/licenses/vita-nuova-liberal.LICENSE index cc514958683..76dea617e1d 100644 --- a/src/licensedcode/data/licenses/vita-nuova-liberal.LICENSE +++ b/src/licensedcode/data/licenses/vita-nuova-liberal.LICENSE @@ -1,3 +1,20 @@ +--- +key: vita-nuova-liberal +short_name: Vita Nuova Liberal Source License +name: Vita Nuova Liberal Source License +category: Copyleft +owner: Vita Nuova +homepage_url: https://web.archive.org/web/20070227005341/https://www.vitanuova.com/inferno/liblicence.txt +spdx_license_key: LicenseRef-scancode-vita-nuova-liberal +text_urls: + - https://fedoraproject.org/wiki/Licensing/Vita_Nuova_Liberal_Source_License +other_urls: + - https://github.com/search?q="VITA+NUOVA+LIBERAL+SOURCE+LICENCE"&type=code + - https://github.com/dsummerfield/acme-sac/blob/a37310031957f93b176f483b33c10095d341af86/LICENCE#L1 +ignorable_urls: + - http://www.vitanuova.com/ +--- + VITA NUOVA LIBERAL SOURCE LICENCE 29 May 2003 IMPORTANT NOTICE - READ CAREFULLY: This Licence Agreement diff --git a/src/licensedcode/data/licenses/vita-nuova-liberal.yml b/src/licensedcode/data/licenses/vita-nuova-liberal.yml deleted file mode 100644 index e976b9bf874..00000000000 --- a/src/licensedcode/data/licenses/vita-nuova-liberal.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: vita-nuova-liberal -short_name: Vita Nuova Liberal Source License -name: Vita Nuova Liberal Source License -category: Copyleft -owner: Vita Nuova -homepage_url: https://web.archive.org/web/20070227005341/https://www.vitanuova.com/inferno/liblicence.txt -spdx_license_key: LicenseRef-scancode-vita-nuova-liberal -text_urls: - - https://fedoraproject.org/wiki/Licensing/Vita_Nuova_Liberal_Source_License -other_urls: - - https://github.com/search?q="VITA+NUOVA+LIBERAL+SOURCE+LICENCE"&type=code - - https://github.com/dsummerfield/acme-sac/blob/a37310031957f93b176f483b33c10095d341af86/LICENCE#L1 -ignorable_urls: - - http://www.vitanuova.com/ diff --git a/src/licensedcode/data/licenses/vitesse-prop.LICENSE b/src/licensedcode/data/licenses/vitesse-prop.LICENSE index 587692f23a5..44224779415 100644 --- a/src/licensedcode/data/licenses/vitesse-prop.LICENSE +++ b/src/licensedcode/data/licenses/vitesse-prop.LICENSE @@ -1,3 +1,12 @@ +--- +key: vitesse-prop +short_name: Vitesse Proprietary Notice +name: Vitesse Proprietary Notice +category: Proprietary Free +owner: Vitesse Semiconductor Corporation +spdx_license_key: LicenseRef-scancode-vitesse-prop +--- + Unpublished rights reserved under the copyright laws of the United States of America, other countries and international treaties. Permission to use, copy, store and modify, the software and its source code is granted. Permission to diff --git a/src/licensedcode/data/licenses/vitesse-prop.yml b/src/licensedcode/data/licenses/vitesse-prop.yml deleted file mode 100644 index 50c23b5b4b2..00000000000 --- a/src/licensedcode/data/licenses/vitesse-prop.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: vitesse-prop -short_name: Vitesse Proprietary Notice -name: Vitesse Proprietary Notice -category: Proprietary Free -owner: Vitesse Semiconductor Corporation -spdx_license_key: LicenseRef-scancode-vitesse-prop diff --git a/src/licensedcode/data/licenses/vixie-cron.LICENSE b/src/licensedcode/data/licenses/vixie-cron.LICENSE index cf379211322..e52c1390a16 100644 --- a/src/licensedcode/data/licenses/vixie-cron.LICENSE +++ b/src/licensedcode/data/licenses/vixie-cron.LICENSE @@ -1,3 +1,14 @@ +--- +key: vixie-cron +short_name: Vixie Cron License +name: Vixie Cron License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-vixie-cron +ignorable_emails: + - paul@vix.com +--- + Distribute freely, except: don't remove my name from the source or documentation (don't take credit for my work), mark your changes (don't get me blamed for your possible bugs), don't alter or remove this notice. May be sold if buildable diff --git a/src/licensedcode/data/licenses/vixie-cron.yml b/src/licensedcode/data/licenses/vixie-cron.yml deleted file mode 100644 index 049fc6cc5b3..00000000000 --- a/src/licensedcode/data/licenses/vixie-cron.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: vixie-cron -short_name: Vixie Cron License -name: Vixie Cron License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-vixie-cron -ignorable_emails: - - paul@vix.com diff --git a/src/licensedcode/data/licenses/vnc-viewer-ios.LICENSE b/src/licensedcode/data/licenses/vnc-viewer-ios.LICENSE index d45b89723dc..7ba5b14a9aa 100644 --- a/src/licensedcode/data/licenses/vnc-viewer-ios.LICENSE +++ b/src/licensedcode/data/licenses/vnc-viewer-ios.LICENSE @@ -1,3 +1,15 @@ +--- +key: vnc-viewer-ios +short_name: VNCViewer iOS EULA +name: VNCViewer for iOS EULA +category: Commercial +owner: RealVNCLimited +homepage_url: https://www.realvnc.com/products/ios/licensing.pdf +spdx_license_key: LicenseRef-scancode-vnc-viewer-ios +ignorable_emails: + - iphone-support@realvnc.com +--- + VNCViewer for iOS END-USER LICENCE AGREEMENT IMPORTANT INFORMATION: PLEASE READ THIS AGREEMENT CAREFULLY BEFORE diff --git a/src/licensedcode/data/licenses/vnc-viewer-ios.yml b/src/licensedcode/data/licenses/vnc-viewer-ios.yml deleted file mode 100644 index 61b56f955ab..00000000000 --- a/src/licensedcode/data/licenses/vnc-viewer-ios.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: vnc-viewer-ios -short_name: VNCViewer iOS EULA -name: VNCViewer for iOS EULA -category: Commercial -owner: RealVNCLimited -homepage_url: https://www.realvnc.com/products/ios/licensing.pdf -spdx_license_key: LicenseRef-scancode-vnc-viewer-ios -ignorable_emails: - - iphone-support@realvnc.com diff --git a/src/licensedcode/data/licenses/volatility-vsl-v1.0.LICENSE b/src/licensedcode/data/licenses/volatility-vsl-v1.0.LICENSE index baa4a18edb4..d7fe6668dd2 100644 --- a/src/licensedcode/data/licenses/volatility-vsl-v1.0.LICENSE +++ b/src/licensedcode/data/licenses/volatility-vsl-v1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: volatility-vsl-v1.0 +short_name: Volatility Software License Version 1.0 +name: Volatility Software License Version 1.0 +category: Copyleft Limited +owner: Volatility Foundation +homepage_url: https://www.volatilityfoundation.org/license/vsl-v1.0 +spdx_license_key: LicenseRef-scancode-volatility-vsl-v1.0 +text_urls: + - https://github.com/volatilityfoundation/dwarf2json/blob/master/LICENSE.txt +ignorable_copyrights: + - Copyright 2019 Volatility Foundation +ignorable_holders: + - Volatility Foundation +ignorable_urls: + - https://www.volatilityfoundation.org/license/vsl-v1.0 +--- + Volatility Software License Version 1.0 dated October 3, 2019. This license covers the Volatility software, Copyright 2019 Volatility Foundation. diff --git a/src/licensedcode/data/licenses/volatility-vsl-v1.0.yml b/src/licensedcode/data/licenses/volatility-vsl-v1.0.yml deleted file mode 100644 index 6879c907631..00000000000 --- a/src/licensedcode/data/licenses/volatility-vsl-v1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: volatility-vsl-v1.0 -short_name: Volatility Software License Version 1.0 -name: Volatility Software License Version 1.0 -category: Copyleft Limited -owner: Volatility Foundation -homepage_url: https://www.volatilityfoundation.org/license/vsl-v1.0 -spdx_license_key: LicenseRef-scancode-volatility-vsl-v1.0 -text_urls: - - https://github.com/volatilityfoundation/dwarf2json/blob/master/LICENSE.txt -ignorable_copyrights: - - Copyright 2019 Volatility Foundation -ignorable_holders: - - Volatility Foundation -ignorable_urls: - - https://www.volatilityfoundation.org/license/vsl-v1.0 diff --git a/src/licensedcode/data/licenses/vostrom.LICENSE b/src/licensedcode/data/licenses/vostrom.LICENSE index 7431afd4c68..fb27af83811 100644 --- a/src/licensedcode/data/licenses/vostrom.LICENSE +++ b/src/licensedcode/data/licenses/vostrom.LICENSE @@ -1,3 +1,21 @@ +--- +key: vostrom +short_name: VOSTROM Public License +name: VOSTROM Public License for Open Source +category: Copyleft +owner: VOSTROM +homepage_url: https://fedoraproject.org/wiki/Licensing:VOSTROM?rd=Licensing/VOSTROM +spdx_license_key: VOSTROM +other_urls: + - https://fedoraproject.org/wiki/Licensing/VOSTROM +ignorable_copyrights: + - Copyright (c) 2007 VOSTROM Holdings, Inc. +ignorable_holders: + - VOSTROM Holdings, Inc. +ignorable_emails: + - license@vostrom.com +--- + VOSTROM Public License for Open Source ---------- Copyright (c) 2007 VOSTROM Holdings, Inc. diff --git a/src/licensedcode/data/licenses/vostrom.yml b/src/licensedcode/data/licenses/vostrom.yml deleted file mode 100644 index e4ee7b738fd..00000000000 --- a/src/licensedcode/data/licenses/vostrom.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: vostrom -short_name: VOSTROM Public License -name: VOSTROM Public License for Open Source -category: Copyleft -owner: VOSTROM -homepage_url: https://fedoraproject.org/wiki/Licensing:VOSTROM?rd=Licensing/VOSTROM -spdx_license_key: VOSTROM -other_urls: - - https://fedoraproject.org/wiki/Licensing/VOSTROM -ignorable_copyrights: - - Copyright (c) 2007 VOSTROM Holdings, Inc. -ignorable_holders: - - VOSTROM Holdings, Inc. -ignorable_emails: - - license@vostrom.com diff --git a/src/licensedcode/data/licenses/vpl-1.1.LICENSE b/src/licensedcode/data/licenses/vpl-1.1.LICENSE index 1e176e67d6f..2b37d2e92e6 100644 --- a/src/licensedcode/data/licenses/vpl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/vpl-1.1.LICENSE @@ -1,3 +1,22 @@ +--- +key: vpl-1.1 +short_name: VPL 1.1 +name: Vtiger Public License 1.1 +category: Copyleft Limited +owner: vtiger +homepage_url: https://www.vtiger.com/open-source-crm/vtiger-public-license/ +spdx_license_key: LicenseRef-scancode-vpl-1.1 +faq_url: https://www.vtiger.com/open-source-crm/ +other_urls: + - https://www.vtiger.com/open-source-crm/ +ignorable_copyrights: + - Copyright (c) www.vtiger.com +ignorable_holders: + - www.vtiger.com +ignorable_urls: + - http://www.vtiger.com/ +--- + Vtiger Public License (VPL 1.1) 1. Definitions. diff --git a/src/licensedcode/data/licenses/vpl-1.1.yml b/src/licensedcode/data/licenses/vpl-1.1.yml deleted file mode 100644 index 255feb6e23d..00000000000 --- a/src/licensedcode/data/licenses/vpl-1.1.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: vpl-1.1 -short_name: VPL 1.1 -name: Vtiger Public License 1.1 -category: Copyleft Limited -owner: vtiger -homepage_url: https://www.vtiger.com/open-source-crm/vtiger-public-license/ -spdx_license_key: LicenseRef-scancode-vpl-1.1 -faq_url: https://www.vtiger.com/open-source-crm/ -other_urls: - - https://www.vtiger.com/open-source-crm/ -ignorable_copyrights: - - Copyright (c) www.vtiger.com -ignorable_holders: - - www.vtiger.com -ignorable_urls: - - http://www.vtiger.com/ diff --git a/src/licensedcode/data/licenses/vpl-1.2.LICENSE b/src/licensedcode/data/licenses/vpl-1.2.LICENSE index e531b9d51d4..bc60fdc5132 100644 --- a/src/licensedcode/data/licenses/vpl-1.2.LICENSE +++ b/src/licensedcode/data/licenses/vpl-1.2.LICENSE @@ -1,3 +1,20 @@ +--- +key: vpl-1.2 +short_name: VPL 1.2 +name: Vtiger Public License 1.2 +category: Copyleft Limited +owner: vtiger +spdx_license_key: LicenseRef-scancode-vpl-1.2 +other_urls: + - https://master.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.0.1/Core%20Product/vtigercrm7.0.1.tar.gz +ignorable_copyrights: + - Copyright (c) www.vtiger.com +ignorable_holders: + - www.vtiger.com +ignorable_urls: + - http://www.vtiger.com/ +--- + Vtiger Public License 1.2 (VPL 1.2) 1. Definitions. diff --git a/src/licensedcode/data/licenses/vpl-1.2.yml b/src/licensedcode/data/licenses/vpl-1.2.yml deleted file mode 100644 index 0ecde0b8aee..00000000000 --- a/src/licensedcode/data/licenses/vpl-1.2.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: vpl-1.2 -short_name: VPL 1.2 -name: Vtiger Public License 1.2 -category: Copyleft Limited -owner: vtiger -spdx_license_key: LicenseRef-scancode-vpl-1.2 -other_urls: - - https://master.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.0.1/Core%20Product/vtigercrm7.0.1.tar.gz -ignorable_copyrights: - - Copyright (c) www.vtiger.com -ignorable_holders: - - www.vtiger.com -ignorable_urls: - - http://www.vtiger.com/ diff --git a/src/licensedcode/data/licenses/vs10x-code-map.LICENSE b/src/licensedcode/data/licenses/vs10x-code-map.LICENSE index 509a573c008..cb19b9a9145 100644 --- a/src/licensedcode/data/licenses/vs10x-code-map.LICENSE +++ b/src/licensedcode/data/licenses/vs10x-code-map.LICENSE @@ -1,3 +1,13 @@ +--- +key: vs10x-code-map +short_name: VS10x Code Map +name: VS10x Code Map +category: Proprietary Free +owner: AxTools +homepage_url: http://visualstudiogallery.msdn.microsoft.com/site/1c54d1bd-d898-4705-903f-fa4a319b50f2/eula?licenseType=None +spdx_license_key: LicenseRef-scancode-vs10x-code-map +--- + VS10x Code Map - LIMITED PRODUCT WARRANTY Please read the below terms. Continuing with the installation of VS10x Code Map diff --git a/src/licensedcode/data/licenses/vs10x-code-map.yml b/src/licensedcode/data/licenses/vs10x-code-map.yml deleted file mode 100644 index a319faef3be..00000000000 --- a/src/licensedcode/data/licenses/vs10x-code-map.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: vs10x-code-map -short_name: VS10x Code Map -name: VS10x Code Map -category: Proprietary Free -owner: AxTools -homepage_url: http://visualstudiogallery.msdn.microsoft.com/site/1c54d1bd-d898-4705-903f-fa4a319b50f2/eula?licenseType=None -spdx_license_key: LicenseRef-scancode-vs10x-code-map diff --git a/src/licensedcode/data/licenses/vsl-1.0.LICENSE b/src/licensedcode/data/licenses/vsl-1.0.LICENSE index 3fe58adece2..a06c933f9b8 100644 --- a/src/licensedcode/data/licenses/vsl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/vsl-1.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: vsl-1.0 +short_name: Vovida Software License 1.0 +name: Vovida Software License v. 1.0 +category: Permissive +owner: Vovida +homepage_url: http://www.vovida.org/About/license.html +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: VSL-1.0 +osi_license_key: VSL-1.0 +text_urls: + - http://www.vovida.org/About/license.html +osi_url: http://opensource.org/licenses/vovidapl.php +other_urls: + - http://www.opensource.org/licenses/VSL-1.0 + - http://www.vovida.org + - https://opensource.org/licenses/VSL-1.0 +ignorable_copyrights: + - Copyright (c) 2000 Vovida Networks, Inc. +ignorable_holders: + - Vovida Networks, Inc. +ignorable_urls: + - http://www.vovida.org/ +ignorable_emails: + - vocal@vovida.org +--- + Vovida Software License v. 1.0 This license applies to all software incorporated in the "Vovida diff --git a/src/licensedcode/data/licenses/vsl-1.0.yml b/src/licensedcode/data/licenses/vsl-1.0.yml deleted file mode 100644 index c28ff5866df..00000000000 --- a/src/licensedcode/data/licenses/vsl-1.0.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: vsl-1.0 -short_name: Vovida Software License 1.0 -name: Vovida Software License v. 1.0 -category: Permissive -owner: Vovida -homepage_url: http://www.vovida.org/About/license.html -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: VSL-1.0 -osi_license_key: VSL-1.0 -text_urls: - - http://www.vovida.org/About/license.html -osi_url: http://opensource.org/licenses/vovidapl.php -other_urls: - - http://www.opensource.org/licenses/VSL-1.0 - - http://www.vovida.org - - https://opensource.org/licenses/VSL-1.0 -ignorable_copyrights: - - Copyright (c) 2000 Vovida Networks, Inc. -ignorable_holders: - - Vovida Networks, Inc. -ignorable_urls: - - http://www.vovida.org/ -ignorable_emails: - - vocal@vovida.org diff --git a/src/licensedcode/data/licenses/vuforia-2013-07-29.LICENSE b/src/licensedcode/data/licenses/vuforia-2013-07-29.LICENSE index e15a8722cc0..1807baeeb39 100644 --- a/src/licensedcode/data/licenses/vuforia-2013-07-29.LICENSE +++ b/src/licensedcode/data/licenses/vuforia-2013-07-29.LICENSE @@ -1,3 +1,20 @@ +--- +key: vuforia-2013-07-29 +short_name: Vuforia 2013-07-29 +name: Vuforia SDK License Agreement 2013-07-29 +category: Proprietary Free +owner: Qualcomm Austria Research Center GMBH +homepage_url: https://developer.vuforia.com/legal/license +spdx_license_key: LicenseRef-scancode-vuforia-2013-07-29 +text_urls: + - https://developer.vuforia.com/legal/license +ignorable_urls: + - http://www.bis.doc.gov/ + - http://www.opensource.org/licenses/alphabetical + - http://www.treas.gov/offices/enforcement/ofac + - https://developer.vuforia.com/resources/dev-guide/branding-guidelines +--- + Vuforia SDK License Agreement QUALCOMM AUSTRIA RESEARCH CENTER GMBH LICENSE AGREEMENT FOR VUFORIA™ SOFTWARE DEVELOPMENT KIT diff --git a/src/licensedcode/data/licenses/vuforia-2013-07-29.yml b/src/licensedcode/data/licenses/vuforia-2013-07-29.yml deleted file mode 100644 index e4eb8dc1279..00000000000 --- a/src/licensedcode/data/licenses/vuforia-2013-07-29.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: vuforia-2013-07-29 -short_name: Vuforia 2013-07-29 -name: Vuforia SDK License Agreement 2013-07-29 -category: Proprietary Free -owner: Qualcomm Austria Research Center GMBH -homepage_url: https://developer.vuforia.com/legal/license -spdx_license_key: LicenseRef-scancode-vuforia-2013-07-29 -text_urls: - - https://developer.vuforia.com/legal/license -ignorable_urls: - - http://www.bis.doc.gov/ - - http://www.opensource.org/licenses/alphabetical - - http://www.treas.gov/offices/enforcement/ofac - - https://developer.vuforia.com/resources/dev-guide/branding-guidelines diff --git a/src/licensedcode/data/licenses/w3c-docs-19990405.LICENSE b/src/licensedcode/data/licenses/w3c-docs-19990405.LICENSE index 149eb453310..8367c336e6b 100644 --- a/src/licensedcode/data/licenses/w3c-docs-19990405.LICENSE +++ b/src/licensedcode/data/licenses/w3c-docs-19990405.LICENSE @@ -1,3 +1,23 @@ +--- +key: w3c-docs-19990405 +short_name: W3C-DOCS-19990405 +name: W3C Document Notice and License (1999-04-05) +category: Free Restricted +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 +spdx_license_key: LicenseRef-scancode-w3c-docs-19990405 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + W3C® DOCUMENT NOTICE AND LICENSE Copyright © World Wide Web Consortium, (Massachusetts Institute of Technology, diff --git a/src/licensedcode/data/licenses/w3c-docs-19990405.yml b/src/licensedcode/data/licenses/w3c-docs-19990405.yml deleted file mode 100644 index db532e89633..00000000000 --- a/src/licensedcode/data/licenses/w3c-docs-19990405.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: w3c-docs-19990405 -short_name: W3C-DOCS-19990405 -name: W3C Document Notice and License (1999-04-05) -category: Free Restricted -owner: W3C - World Wide Web Consortium -homepage_url: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 -spdx_license_key: LicenseRef-scancode-w3c-docs-19990405 -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/licenses/w3c-docs-20021231.LICENSE b/src/licensedcode/data/licenses/w3c-docs-20021231.LICENSE index fe14fa754c2..371323ddcd2 100644 --- a/src/licensedcode/data/licenses/w3c-docs-20021231.LICENSE +++ b/src/licensedcode/data/licenses/w3c-docs-20021231.LICENSE @@ -1,3 +1,21 @@ +--- +key: w3c-docs-20021231 +short_name: W3C-DOCS-20021231 +name: W3C Document License (2002-12-31) +category: Free Restricted +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231 +spdx_license_key: LicenseRef-scancode-w3c-docs-20021231 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, European + Research Consortium for Informatics and Mathematics, Keio University, Beihang) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium + for Informatics and Mathematics, Keio University, Beihang) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231 +--- + W3C DOCUMENT LICENSE Public documents on the W3C site are provided by the copyright holders under the diff --git a/src/licensedcode/data/licenses/w3c-docs-20021231.yml b/src/licensedcode/data/licenses/w3c-docs-20021231.yml deleted file mode 100644 index cc10f3fe86c..00000000000 --- a/src/licensedcode/data/licenses/w3c-docs-20021231.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: w3c-docs-20021231 -short_name: W3C-DOCS-20021231 -name: W3C Document License (2002-12-31) -category: Free Restricted -owner: W3C - World Wide Web Consortium -homepage_url: http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231 -spdx_license_key: LicenseRef-scancode-w3c-docs-20021231 -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, European - Research Consortium for Informatics and Mathematics, Keio University, Beihang) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium - for Informatics and Mathematics, Keio University, Beihang) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231 diff --git a/src/licensedcode/data/licenses/w3c-documentation.LICENSE b/src/licensedcode/data/licenses/w3c-documentation.LICENSE index c2e7752a651..85cfe852bff 100644 --- a/src/licensedcode/data/licenses/w3c-documentation.LICENSE +++ b/src/licensedcode/data/licenses/w3c-documentation.LICENSE @@ -1,3 +1,25 @@ +--- +key: w3c-documentation +short_name: W3C Documentation License +name: W3C Documentation License +category: Free Restricted +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html +spdx_license_key: LicenseRef-scancode-w3c-documentation +text_urls: + - http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html +ignorable_copyrights: + - Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of Technology, + Institut National de Recherche en Informatique et en Automatique , Keio University ) + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology , Institut + National de Recherche en Informatique et en Automatique, Keio University ) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National + de Recherche en Informatique et en Automatique, Keio University + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique , Keio University +--- + Copyright Notice Copyright © 1998 World Wide Web Consortium , (Massachusetts Institute of diff --git a/src/licensedcode/data/licenses/w3c-documentation.yml b/src/licensedcode/data/licenses/w3c-documentation.yml deleted file mode 100644 index b79786a0361..00000000000 --- a/src/licensedcode/data/licenses/w3c-documentation.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: w3c-documentation -short_name: W3C Documentation License -name: W3C Documentation License -category: Free Restricted -owner: W3C - World Wide Web Consortium -homepage_url: http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html -spdx_license_key: LicenseRef-scancode-w3c-documentation -text_urls: - - http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html -ignorable_copyrights: - - Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of Technology, - Institut National de Recherche en Informatique et en Automatique , Keio University ) - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology , Institut - National de Recherche en Informatique et en Automatique, Keio University ) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology , Institut National - de Recherche en Informatique et en Automatique, Keio University - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique , Keio University diff --git a/src/licensedcode/data/licenses/w3c-software-19980720.LICENSE b/src/licensedcode/data/licenses/w3c-software-19980720.LICENSE index 4dbaf58dbcd..45ca11a2513 100644 --- a/src/licensedcode/data/licenses/w3c-software-19980720.LICENSE +++ b/src/licensedcode/data/licenses/w3c-software-19980720.LICENSE @@ -1,3 +1,26 @@ +--- +key: w3c-software-19980720 +short_name: W3C-SOFTWARE-19980720 +name: W3C Software Notice and License (1998-07-20) +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/copyright-software-19980720.html +spdx_license_key: W3C-19980720 +faq_url: https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf +ignorable_copyrights: + - Copyright (c) 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, + Institut National de Recherche en Informatique et en Automatique, Keio University) + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + W3C® SOFTWARE NOTICE AND LICENSE Copyright © 1994-2002 World Wide Web Consortium, (Massachusetts Institute of diff --git a/src/licensedcode/data/licenses/w3c-software-19980720.yml b/src/licensedcode/data/licenses/w3c-software-19980720.yml deleted file mode 100644 index 222e095a5b4..00000000000 --- a/src/licensedcode/data/licenses/w3c-software-19980720.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: w3c-software-19980720 -short_name: W3C-SOFTWARE-19980720 -name: W3C Software Notice and License (1998-07-20) -category: Permissive -owner: W3C - World Wide Web Consortium -homepage_url: http://www.w3.org/Consortium/Legal/copyright-software-19980720.html -spdx_license_key: W3C-19980720 -faq_url: https://cds.cern.ch/record/2126020/files/History%20of%20the%20CERN%20Web%20Software%20Public%20Releases.pdf -ignorable_copyrights: - - Copyright (c) 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, - Institut National de Recherche en Informatique et en Automatique, Keio University) - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/licenses/w3c-software-20021231.LICENSE b/src/licensedcode/data/licenses/w3c-software-20021231.LICENSE index 990a0284d0d..fce54a4b8cb 100644 --- a/src/licensedcode/data/licenses/w3c-software-20021231.LICENSE +++ b/src/licensedcode/data/licenses/w3c-software-20021231.LICENSE @@ -1,3 +1,13 @@ +--- +key: w3c-software-20021231 +is_deprecated: yes +short_name: W3C-SOFTWARE-20021231 +name: W3C Software Notice and License (2002-12-31) +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + W3C Software Notice and License Status: This license was applied to software published by W3C before 13 May, @@ -59,4 +69,4 @@ now a host of the W3C, includes references to this specific dated version of the license, and removes the ambiguous grant of "use". Otherwise, this version is the same as the previous version and is written so as to preserve the Free Software Foundation's assessment of GPL compatibility and OSI's certification -under the Open Source Definition. +under the Open Source Definition. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/w3c-software-20021231.yml b/src/licensedcode/data/licenses/w3c-software-20021231.yml deleted file mode 100644 index d6565a12f86..00000000000 --- a/src/licensedcode/data/licenses/w3c-software-20021231.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: w3c-software-20021231 -is_deprecated: yes -short_name: W3C-SOFTWARE-20021231 -name: W3C Software Notice and License (2002-12-31) -category: Permissive -owner: W3C - World Wide Web Consortium -homepage_url: https://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/licenses/w3c-software-doc-20150513.LICENSE b/src/licensedcode/data/licenses/w3c-software-doc-20150513.LICENSE index 98cd20e8c31..91aa53e9114 100644 --- a/src/licensedcode/data/licenses/w3c-software-doc-20150513.LICENSE +++ b/src/licensedcode/data/licenses/w3c-software-doc-20150513.LICENSE @@ -1,3 +1,26 @@ +--- +key: w3c-software-doc-20150513 +short_name: W3C-SOFTWARE-DOC-20150513 +name: W3C Software and Document (2015-05-13) +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document +notes: | + Previous version was http://www.w3.org/Consortium/Legal/2002/copyright- + software-20021231 This version makes clear that the license is applicable + to both software and text, by changing the name and substituting "work" for + instances of "software and its documentation." It moves "notice of changes + or modifications to the files" to the copyright notice, to make clear that + the license is compatible with other liberal licenses. There is also a + short notice version at https://www.w3.org/Consortium/Legal/2015/copyright- + software-short-notice.html +spdx_license_key: W3C-20150513 +ignorable_copyrights: + - Copyright (c) YEAR W3C(r) MIT, ERCIM, Keio +ignorable_holders: + - W3C(r) MIT, ERCIM, Keio +--- + W3C Software and Document Notice and License Status: This license takes effect 13 May, 2015. @@ -39,4 +62,4 @@ CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT. The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders. -Notes +Notes \ No newline at end of file diff --git a/src/licensedcode/data/licenses/w3c-software-doc-20150513.yml b/src/licensedcode/data/licenses/w3c-software-doc-20150513.yml deleted file mode 100644 index 1fed231cf3e..00000000000 --- a/src/licensedcode/data/licenses/w3c-software-doc-20150513.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: w3c-software-doc-20150513 -short_name: W3C-SOFTWARE-DOC-20150513 -name: W3C Software and Document (2015-05-13) -category: Permissive -owner: W3C - World Wide Web Consortium -homepage_url: https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document -notes: | - Previous version was http://www.w3.org/Consortium/Legal/2002/copyright- - software-20021231 This version makes clear that the license is applicable - to both software and text, by changing the name and substituting "work" for - instances of "software and its documentation." It moves "notice of changes - or modifications to the files" to the copyright notice, to make clear that - the license is compatible with other liberal licenses. There is also a - short notice version at https://www.w3.org/Consortium/Legal/2015/copyright- - software-short-notice.html -spdx_license_key: W3C-20150513 -ignorable_copyrights: - - Copyright (c) YEAR W3C(r) MIT, ERCIM, Keio -ignorable_holders: - - W3C(r) MIT, ERCIM, Keio diff --git a/src/licensedcode/data/licenses/w3c-test-suite.LICENSE b/src/licensedcode/data/licenses/w3c-test-suite.LICENSE index 9c0885a4886..be4998bcfbd 100644 --- a/src/licensedcode/data/licenses/w3c-test-suite.LICENSE +++ b/src/licensedcode/data/licenses/w3c-test-suite.LICENSE @@ -1,3 +1,24 @@ +--- +key: w3c-test-suite +short_name: W3C Test Suite +name: W3C Test Suite Licence +category: Free Restricted +owner: W3C - World Wide Web Consortium +homepage_url: https://www.w3.org/Consortium/Legal/2008/04-testsuite-license.html +spdx_license_key: LicenseRef-scancode-w3c-test-suite +text_urls: + - https://raw.githubusercontent.com/gonum/gonum/master/THIRD_PARTY_LICENSES/W3C-TestSuite-LICENSE +faq_url: https://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html#lic2 +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/2910 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others +ignorable_holders: + - World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html +--- + W3C Test Suite Licence This document, Test Suites and other documents that link to this statement are provided by the copyright holders under the following license: By using and/or copying this document, or the W3C document from which this statement is linked, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: diff --git a/src/licensedcode/data/licenses/w3c-test-suite.yml b/src/licensedcode/data/licenses/w3c-test-suite.yml deleted file mode 100644 index de99c928471..00000000000 --- a/src/licensedcode/data/licenses/w3c-test-suite.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: w3c-test-suite -short_name: W3C Test Suite -name: W3C Test Suite Licence -category: Free Restricted -owner: W3C - World Wide Web Consortium -homepage_url: https://www.w3.org/Consortium/Legal/2008/04-testsuite-license.html -spdx_license_key: LicenseRef-scancode-w3c-test-suite -text_urls: - - https://raw.githubusercontent.com/gonum/gonum/master/THIRD_PARTY_LICENSES/W3C-TestSuite-LICENSE -faq_url: https://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html#lic2 -other_urls: - - https://github.com/nexB/scancode-toolkit/issues/2910 -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others -ignorable_holders: - - World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang) and others -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html diff --git a/src/licensedcode/data/licenses/w3c.LICENSE b/src/licensedcode/data/licenses/w3c.LICENSE index 399e9383567..f928f3c6d55 100644 --- a/src/licensedcode/data/licenses/w3c.LICENSE +++ b/src/licensedcode/data/licenses/w3c.LICENSE @@ -1,3 +1,24 @@ +--- +key: w3c +short_name: W3C Software Notice and License +name: W3C Software Notice and License +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +notes: | + Per SPDX.org, this license was released 13 December 2002. This license is + OSI certified. +spdx_license_key: W3C +text_urls: + - http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +other_urls: + - http://www.opensource.org/licenses/W3C + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html http://www.opensource.org/licenses/W3C.php + - https://opensource.org/licenses/W3C +--- + By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions. diff --git a/src/licensedcode/data/licenses/w3c.yml b/src/licensedcode/data/licenses/w3c.yml deleted file mode 100644 index eec2c161a3f..00000000000 --- a/src/licensedcode/data/licenses/w3c.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: w3c -short_name: W3C Software Notice and License -name: W3C Software Notice and License -category: Permissive -owner: W3C - World Wide Web Consortium -homepage_url: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 -notes: | - Per SPDX.org, this license was released 13 December 2002. This license is - OSI certified. -spdx_license_key: W3C -text_urls: - - http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 -other_urls: - - http://www.opensource.org/licenses/W3C - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html http://www.opensource.org/licenses/W3C.php - - https://opensource.org/licenses/W3C diff --git a/src/licensedcode/data/licenses/warranty-disclaimer.LICENSE b/src/licensedcode/data/licenses/warranty-disclaimer.LICENSE new file mode 100644 index 00000000000..1363da14aa7 --- /dev/null +++ b/src/licensedcode/data/licenses/warranty-disclaimer.LICENSE @@ -0,0 +1,12 @@ +--- +key: warranty-disclaimer +short_name: Generic Bare Warranty Disclaimer +name: Generic Bare Warranty Disclaimer +category: Unstated License +owner: Unspecified +notes: | + This is a catch all license for plain, generic warranty disclaimers that do + not provide much rights. Often seen in Microsoft code. +is_generic: yes +spdx_license_key: LicenseRef-scancode-warranty-disclaimer +--- diff --git a/src/licensedcode/data/licenses/warranty-disclaimer.yml b/src/licensedcode/data/licenses/warranty-disclaimer.yml deleted file mode 100644 index 1558fd68d82..00000000000 --- a/src/licensedcode/data/licenses/warranty-disclaimer.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: warranty-disclaimer -short_name: Generic Bare Warranty Disclaimer -name: Generic Bare Warranty Disclaimer -category: Unstated License -owner: Unspecified -notes: | - This is a catch all license for plain, generic warranty disclaimers that do - not provide much rights. Often seen in Microsoft code. -is_generic: yes -spdx_license_key: LicenseRef-scancode-warranty-disclaimer diff --git a/src/licensedcode/data/licenses/waterfall-feed-parser.LICENSE b/src/licensedcode/data/licenses/waterfall-feed-parser.LICENSE index 61e91691347..49cd62d16b0 100644 --- a/src/licensedcode/data/licenses/waterfall-feed-parser.LICENSE +++ b/src/licensedcode/data/licenses/waterfall-feed-parser.LICENSE @@ -1,3 +1,13 @@ +--- +key: waterfall-feed-parser +short_name: Waterfall Feed Parser License +name: Waterfall Feed Parser License +category: Free Restricted +owner: Michael Waterfall +homepage_url: https://github.com/mwaterfall/MWFeedParser/blob/master/LICENSE.txt +spdx_license_key: LicenseRef-scancode-waterfall-feed-parser +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/licenses/waterfall-feed-parser.yml b/src/licensedcode/data/licenses/waterfall-feed-parser.yml deleted file mode 100644 index db636d52353..00000000000 --- a/src/licensedcode/data/licenses/waterfall-feed-parser.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: waterfall-feed-parser -short_name: Waterfall Feed Parser License -name: Waterfall Feed Parser License -category: Free Restricted -owner: Michael Waterfall -homepage_url: https://github.com/mwaterfall/MWFeedParser/blob/master/LICENSE.txt -spdx_license_key: LicenseRef-scancode-waterfall-feed-parser diff --git a/src/licensedcode/data/licenses/westhawk.LICENSE b/src/licensedcode/data/licenses/westhawk.LICENSE index 1c7cdc96496..4268d9b1330 100644 --- a/src/licensedcode/data/licenses/westhawk.LICENSE +++ b/src/licensedcode/data/licenses/westhawk.LICENSE @@ -1,3 +1,15 @@ +--- +key: westhawk +short_name: Westhawk License +name: Westhawk License +category: Permissive +owner: Westhawk +homepage_url: http://westhawksnmp.cvs.sourceforge.net/viewvc/westhawksnmp/westhawksnmp/src/uk/co/westhawk/snmp/ +spdx_license_key: LicenseRef-scancode-westhawk +other_urls: + - http://sourceforge.net/projects/westhawksnmp/?source=navbar +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notices appear in all copies and that both the copyright notice and this permission diff --git a/src/licensedcode/data/licenses/westhawk.yml b/src/licensedcode/data/licenses/westhawk.yml deleted file mode 100644 index 12011739b90..00000000000 --- a/src/licensedcode/data/licenses/westhawk.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: westhawk -short_name: Westhawk License -name: Westhawk License -category: Permissive -owner: Westhawk -homepage_url: http://westhawksnmp.cvs.sourceforge.net/viewvc/westhawksnmp/westhawksnmp/src/uk/co/westhawk/snmp/ -spdx_license_key: LicenseRef-scancode-westhawk -other_urls: - - http://sourceforge.net/projects/westhawksnmp/?source=navbar diff --git a/src/licensedcode/data/licenses/whistle.LICENSE b/src/licensedcode/data/licenses/whistle.LICENSE index 01ebdde5a57..06762269ac7 100644 --- a/src/licensedcode/data/licenses/whistle.LICENSE +++ b/src/licensedcode/data/licenses/whistle.LICENSE @@ -1,3 +1,12 @@ +--- +key: whistle +short_name: Whistle Communications License +name: Whistle Communications License +category: Permissive +owner: FreeBSD +spdx_license_key: LicenseRef-scancode-whistle +--- + Subject to the following obligations and disclaimer of warranty, use and redistribution of this software, in source or object code forms, with or without modifications are expressly permitted by Whistle Communications; @@ -26,4 +35,4 @@ SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER 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 WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY -OF SUCH DAMAGE. +OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/whistle.yml b/src/licensedcode/data/licenses/whistle.yml deleted file mode 100644 index 280398df855..00000000000 --- a/src/licensedcode/data/licenses/whistle.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: whistle -short_name: Whistle Communications License -name: Whistle Communications License -category: Permissive -owner: FreeBSD -spdx_license_key: LicenseRef-scancode-whistle diff --git a/src/licensedcode/data/licenses/whitecat.LICENSE b/src/licensedcode/data/licenses/whitecat.LICENSE index bd7bd1820fc..17521a7ce10 100644 --- a/src/licensedcode/data/licenses/whitecat.LICENSE +++ b/src/licensedcode/data/licenses/whitecat.LICENSE @@ -1,3 +1,13 @@ +--- +key: whitecat +short_name: Whitecat License +name: Whitecat License +category: Permissive +owner: Whitecat +homepage_url: https://github.com/whitecatboard/Lua-RTOS-ESP32/blob/master/components/mklfs/src/mklfs.c +spdx_license_key: LicenseRef-scancode-whitecat +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * diff --git a/src/licensedcode/data/licenses/whitecat.yml b/src/licensedcode/data/licenses/whitecat.yml deleted file mode 100644 index 2ad5a9e5903..00000000000 --- a/src/licensedcode/data/licenses/whitecat.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: whitecat -short_name: Whitecat License -name: Whitecat License -category: Permissive -owner: Whitecat -homepage_url: https://github.com/whitecatboard/Lua-RTOS-ESP32/blob/master/components/mklfs/src/mklfs.c -spdx_license_key: LicenseRef-scancode-whitecat diff --git a/src/licensedcode/data/licenses/wide-license.LICENSE b/src/licensedcode/data/licenses/wide-license.LICENSE index 88dd2ea5948..8a3977304bf 100644 --- a/src/licensedcode/data/licenses/wide-license.LICENSE +++ b/src/licensedcode/data/licenses/wide-license.LICENSE @@ -1,3 +1,14 @@ +--- +key: wide-license +short_name: WIDE License +name: WIDE License +category: Permissive +owner: WIDE Project +spdx_license_key: LicenseRef-scancode-wide-license +ignorable_authors: + - WIDE Project and its contributors +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided only with the following conditions are satisfied: @@ -23,4 +34,4 @@ IS NO WARRANTY IMPLIED OR OTHERWISE, NOR IS SUPPORT PROVIDED. Feedback of the results generated from any improvements or extensions made to this software would be much appreciated. -Any such feedback should be sent to: +Any such feedback should be sent to: \ No newline at end of file diff --git a/src/licensedcode/data/licenses/wide-license.yml b/src/licensedcode/data/licenses/wide-license.yml deleted file mode 100644 index aadc7bdb355..00000000000 --- a/src/licensedcode/data/licenses/wide-license.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: wide-license -short_name: WIDE License -name: WIDE License -category: Permissive -owner: WIDE Project -spdx_license_key: LicenseRef-scancode-wide-license -ignorable_authors: - - WIDE Project and its contributors diff --git a/src/licensedcode/data/licenses/wifi-alliance.LICENSE b/src/licensedcode/data/licenses/wifi-alliance.LICENSE index a78df4bfb9e..bb82eeb9225 100644 --- a/src/licensedcode/data/licenses/wifi-alliance.LICENSE +++ b/src/licensedcode/data/licenses/wifi-alliance.LICENSE @@ -1,3 +1,14 @@ +--- +key: wifi-alliance +short_name: Wi-Fi Alliance +name: Wi-Fi Alliance License +category: Commercial +owner: Wi-Fi Alliance +spdx_license_key: LicenseRef-scancode-wifi-alliance +ignorable_authors: + - permission from Wi-Fi Alliance +--- + Confidential not for redistribution ======================================================================= diff --git a/src/licensedcode/data/licenses/wifi-alliance.yml b/src/licensedcode/data/licenses/wifi-alliance.yml deleted file mode 100644 index d309716ed00..00000000000 --- a/src/licensedcode/data/licenses/wifi-alliance.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: wifi-alliance -short_name: Wi-Fi Alliance -name: Wi-Fi Alliance License -category: Commercial -owner: Wi-Fi Alliance -spdx_license_key: LicenseRef-scancode-wifi-alliance -ignorable_authors: - - permission from Wi-Fi Alliance diff --git a/src/licensedcode/data/licenses/william-alexander.LICENSE b/src/licensedcode/data/licenses/william-alexander.LICENSE index 974cb78aaa1..badb91bd7e1 100644 --- a/src/licensedcode/data/licenses/william-alexander.LICENSE +++ b/src/licensedcode/data/licenses/william-alexander.LICENSE @@ -1,2 +1,16 @@ +--- +key: william-alexander +short_name: William Alexander License +name: William Alexander License +category: Permissive +owner: Unspecified +homepage_url: http://www.java-samples.com/ +spdx_license_key: LicenseRef-scancode-william-alexander +text_urls: + - http://www.java-samples.com/ +other_urls: + - http://www.java-samples.com/java/zip_files_in_a_folder_using_java.htm +--- + free for use as long as this comment is included in the program as it is \ No newline at end of file diff --git a/src/licensedcode/data/licenses/william-alexander.yml b/src/licensedcode/data/licenses/william-alexander.yml deleted file mode 100644 index 88bcaeaa1b3..00000000000 --- a/src/licensedcode/data/licenses/william-alexander.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: william-alexander -short_name: William Alexander License -name: William Alexander License -category: Permissive -owner: Unspecified -homepage_url: http://www.java-samples.com/ -spdx_license_key: LicenseRef-scancode-william-alexander -text_urls: - - http://www.java-samples.com/ -other_urls: - - http://www.java-samples.com/java/zip_files_in_a_folder_using_java.htm diff --git a/src/licensedcode/data/licenses/wince-50-shared-source.LICENSE b/src/licensedcode/data/licenses/wince-50-shared-source.LICENSE index ff7d41f271e..1b14a793b0d 100644 --- a/src/licensedcode/data/licenses/wince-50-shared-source.LICENSE +++ b/src/licensedcode/data/licenses/wince-50-shared-source.LICENSE @@ -1,3 +1,15 @@ +--- +key: wince-50-shared-source +short_name: MS Windows CE 5.0 Shared Source License +name: Microsoft Windows CE 5.0 Shared Source License Agreement +category: Proprietary Free +owner: Microsoft +homepage_url: http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx +spdx_license_key: LicenseRef-scancode-wince-50-shared-source +text_urls: + - http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx +--- + Microsoft Windows CE 5.0 Shared Source License Agreement Microsoft gives you a Windows CE 5.0 Shared Source License Agreement ("License") to use the accompanying Software on the following terms: diff --git a/src/licensedcode/data/licenses/wince-50-shared-source.yml b/src/licensedcode/data/licenses/wince-50-shared-source.yml deleted file mode 100644 index 371eb15e803..00000000000 --- a/src/licensedcode/data/licenses/wince-50-shared-source.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: wince-50-shared-source -short_name: MS Windows CE 5.0 Shared Source License -name: Microsoft Windows CE 5.0 Shared Source License Agreement -category: Proprietary Free -owner: Microsoft -homepage_url: http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx -spdx_license_key: LicenseRef-scancode-wince-50-shared-source -text_urls: - - http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx diff --git a/src/licensedcode/data/licenses/windriver-commercial.LICENSE b/src/licensedcode/data/licenses/windriver-commercial.LICENSE index 01bdd25a940..30f31e788e9 100644 --- a/src/licensedcode/data/licenses/windriver-commercial.LICENSE +++ b/src/licensedcode/data/licenses/windriver-commercial.LICENSE @@ -1,3 +1,15 @@ +--- +key: windriver-commercial +short_name: Wind River License +name: Wind River License +category: Commercial +owner: Wind River Systems +homepage_url: http://www.windriver.com/licensing/ +spdx_license_key: LicenseRef-scancode-windriver-commercial +ignorable_urls: + - http://www.windriver.com/licensing/ +--- + Wind River LICENSING SUPPORT Product Activation diff --git a/src/licensedcode/data/licenses/windriver-commercial.yml b/src/licensedcode/data/licenses/windriver-commercial.yml deleted file mode 100644 index 773ca520749..00000000000 --- a/src/licensedcode/data/licenses/windriver-commercial.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: windriver-commercial -short_name: Wind River License -name: Wind River License -category: Commercial -owner: Wind River Systems -homepage_url: http://www.windriver.com/licensing/ -spdx_license_key: LicenseRef-scancode-windriver-commercial -ignorable_urls: - - http://www.windriver.com/licensing/ diff --git a/src/licensedcode/data/licenses/wingo.LICENSE b/src/licensedcode/data/licenses/wingo.LICENSE index 00e6365dec3..2368443a115 100644 --- a/src/licensedcode/data/licenses/wingo.LICENSE +++ b/src/licensedcode/data/licenses/wingo.LICENSE @@ -1,3 +1,22 @@ +--- +key: wingo +short_name: wingo License +name: wingo License +category: Permissive +owner: wingo +homepage_url: http://www.wingo.com/jt_/license.html +spdx_license_key: LicenseRef-scancode-wingo +text_urls: + - http://www.wingo.com/jt_/jt_license.html +ignorable_copyrights: + - Copyright (c) 2002-2010 Joseph.Oster, wingo.com +ignorable_holders: + - Joseph.Oster, wingo.com +ignorable_urls: + - http://www.wingo.com/jt_/ + - http://www.wingo.com/jt_/jt_license.html +--- + License for 'jt2_.js' (was 'jt_utils.js'), 'jt_DialogBox' and all related code: http://www.wingo.com/jt_/ @@ -28,4 +47,4 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================== Except where specifically noted in the source code, this software consists -solely of contributions made by Joseph Oster, wingo.com +solely of contributions made by Joseph Oster, wingo.com \ No newline at end of file diff --git a/src/licensedcode/data/licenses/wingo.yml b/src/licensedcode/data/licenses/wingo.yml deleted file mode 100644 index 69b21cb4754..00000000000 --- a/src/licensedcode/data/licenses/wingo.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: wingo -short_name: wingo License -name: wingo License -category: Permissive -owner: wingo -homepage_url: http://www.wingo.com/jt_/license.html -spdx_license_key: LicenseRef-scancode-wingo -text_urls: - - http://www.wingo.com/jt_/jt_license.html -ignorable_copyrights: - - Copyright (c) 2002-2010 Joseph.Oster, wingo.com -ignorable_holders: - - Joseph.Oster, wingo.com -ignorable_urls: - - http://www.wingo.com/jt_/ - - http://www.wingo.com/jt_/jt_license.html diff --git a/src/licensedcode/data/licenses/wink.LICENSE b/src/licensedcode/data/licenses/wink.LICENSE index 61db0bcfe94..e5dfe35a341 100644 --- a/src/licensedcode/data/licenses/wink.LICENSE +++ b/src/licensedcode/data/licenses/wink.LICENSE @@ -1,3 +1,13 @@ +--- +key: wink +short_name: Wink License +name: Wink License +category: Proprietary Free +owner: Satish Sampath +homepage_url: http://www.debugmode.com/ +spdx_license_key: LicenseRef-scancode-wink +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any consequences/damages arising from the use of this software. This program and the accompanied libraries/plugins/artwork are FREEWARE. You can use it for personal, business, educational or any other need of yours, subject to the following restrictions: diff --git a/src/licensedcode/data/licenses/wink.yml b/src/licensedcode/data/licenses/wink.yml deleted file mode 100644 index e3b54cc7a22..00000000000 --- a/src/licensedcode/data/licenses/wink.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: wink -short_name: Wink License -name: Wink License -category: Proprietary Free -owner: Satish Sampath -homepage_url: http://www.debugmode.com/ -spdx_license_key: LicenseRef-scancode-wink diff --git a/src/licensedcode/data/licenses/winzip-eula.LICENSE b/src/licensedcode/data/licenses/winzip-eula.LICENSE index f9e080d4083..873eceb5f63 100644 --- a/src/licensedcode/data/licenses/winzip-eula.LICENSE +++ b/src/licensedcode/data/licenses/winzip-eula.LICENSE @@ -1,3 +1,26 @@ +--- +key: winzip-eula +short_name: WinZip EULA +name: WinZip EULA +category: Commercial +owner: WinZip Computing LLC. +homepage_url: http://www.winzip.com/eula.html +spdx_license_key: LicenseRef-scancode-winzip-eula +ignorable_copyrights: + - Copyright (c) 20 Your name WinZip Computing, S.L. and its licensors +ignorable_holders: + - Your name WinZip Computing, S.L. and its licensors +ignorable_authors: + - WinZip's Self Extractor +ignorable_urls: + - http://winzip.com/en/eula.htm + - http://www.winzip.com/ + - http://www.winzip.com/privacy +ignorable_emails: + - HELP@WINZIP.COM + - help@winzip.com +--- + PERPETUAL PROVISIONS APPLICABLE TO WINZIP WINZIP COURIER diff --git a/src/licensedcode/data/licenses/winzip-eula.yml b/src/licensedcode/data/licenses/winzip-eula.yml deleted file mode 100644 index 82e946d1df2..00000000000 --- a/src/licensedcode/data/licenses/winzip-eula.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: winzip-eula -short_name: WinZip EULA -name: WinZip EULA -category: Commercial -owner: WinZip Computing LLC. -homepage_url: http://www.winzip.com/eula.html -spdx_license_key: LicenseRef-scancode-winzip-eula -ignorable_copyrights: - - Copyright (c) 20 Your name WinZip Computing, S.L. and its licensors -ignorable_holders: - - Your name WinZip Computing, S.L. and its licensors -ignorable_authors: - - WinZip's Self Extractor -ignorable_urls: - - http://winzip.com/en/eula.htm - - http://www.winzip.com/ - - http://www.winzip.com/privacy -ignorable_emails: - - HELP@WINZIP.COM - - help@winzip.com diff --git a/src/licensedcode/data/licenses/winzip-self-extractor.LICENSE b/src/licensedcode/data/licenses/winzip-self-extractor.LICENSE index 254c1110ca0..31fc63c96d9 100644 --- a/src/licensedcode/data/licenses/winzip-self-extractor.LICENSE +++ b/src/licensedcode/data/licenses/winzip-self-extractor.LICENSE @@ -1,3 +1,13 @@ +--- +key: winzip-self-extractor +short_name: WinZip Self-Extractor License +name: WinZip Self-Extractor License +category: Commercial +owner: WinZip Computing LLC. +homepage_url: http://kb.winzip.com/kb/entry/31/ +spdx_license_key: LicenseRef-scancode-winzip-self-extractor +--- + License requirements to distribute self-extracting Zip files If you are using a registered copy of WinZip Self-Extractor, you do not need any diff --git a/src/licensedcode/data/licenses/winzip-self-extractor.yml b/src/licensedcode/data/licenses/winzip-self-extractor.yml deleted file mode 100644 index 121604868d4..00000000000 --- a/src/licensedcode/data/licenses/winzip-self-extractor.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: winzip-self-extractor -short_name: WinZip Self-Extractor License -name: WinZip Self-Extractor License -category: Commercial -owner: WinZip Computing LLC. -homepage_url: http://kb.winzip.com/kb/entry/31/ -spdx_license_key: LicenseRef-scancode-winzip-self-extractor diff --git a/src/licensedcode/data/licenses/wol.LICENSE b/src/licensedcode/data/licenses/wol.LICENSE index f65dc47e47f..37104e919f8 100644 --- a/src/licensedcode/data/licenses/wol.LICENSE +++ b/src/licensedcode/data/licenses/wol.LICENSE @@ -1,3 +1,15 @@ +--- +key: wol +short_name: Wide Open License +name: Wide Open License +category: Permissive +owner: Iowegian International +homepage_url: http://www.dspguru.com/wide-open-license +spdx_license_key: LicenseRef-scancode-wol +ignorable_urls: + - http://www.dspguru.com/wide-open-license +--- + * The Wide Open License (WOL) * * Permission to use, copy, modify, distribute and sell this software and its diff --git a/src/licensedcode/data/licenses/wol.yml b/src/licensedcode/data/licenses/wol.yml deleted file mode 100644 index b2b8e50037d..00000000000 --- a/src/licensedcode/data/licenses/wol.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: wol -short_name: Wide Open License -name: Wide Open License -category: Permissive -owner: Iowegian International -homepage_url: http://www.dspguru.com/wide-open-license -spdx_license_key: LicenseRef-scancode-wol -ignorable_urls: - - http://www.dspguru.com/wide-open-license diff --git a/src/licensedcode/data/licenses/woodruff-2002.LICENSE b/src/licensedcode/data/licenses/woodruff-2002.LICENSE index 168c6012509..d756c443504 100644 --- a/src/licensedcode/data/licenses/woodruff-2002.LICENSE +++ b/src/licensedcode/data/licenses/woodruff-2002.LICENSE @@ -1,3 +1,15 @@ +--- +key: woodruff-2002 +short_name: Woodruff Restricted MIT 2002 +name: Woodruff Restricted MIT 2002 +category: Free Restricted +owner: William Woodruff +homepage_url: https://github.com/woodruffw/ff2mpv/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-woodruff-2002 +other_urls: + - https://github.com/search?p=2&q="The+MIT+License+(MIT)+with+restrictions"&type=Code +--- + The MIT License (MIT) with restrictions Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/licensedcode/data/licenses/woodruff-2002.yml b/src/licensedcode/data/licenses/woodruff-2002.yml deleted file mode 100644 index ff783136ce3..00000000000 --- a/src/licensedcode/data/licenses/woodruff-2002.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: woodruff-2002 -short_name: Woodruff Restricted MIT 2002 -name: Woodruff Restricted MIT 2002 -category: Free Restricted -owner: William Woodruff -homepage_url: https://github.com/woodruffw/ff2mpv/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-woodruff-2002 -other_urls: - - https://github.com/search?p=2&q="The+MIT+License+(MIT)+with+restrictions"&type=Code diff --git a/src/licensedcode/data/licenses/wordnet.LICENSE b/src/licensedcode/data/licenses/wordnet.LICENSE index 8e1c4275c5f..a8c6abdf0c6 100644 --- a/src/licensedcode/data/licenses/wordnet.LICENSE +++ b/src/licensedcode/data/licenses/wordnet.LICENSE @@ -1,3 +1,19 @@ +--- +key: wordnet +short_name: Wordnet License +name: Wordnet License +category: Permissive +owner: Princeton University +homepage_url: http://wordnetcode.princeton.edu +spdx_license_key: LicenseRef-scancode-wordnet +text_urls: + - http://wordnetcode.princeton.edu/3.0/LICENSE +ignorable_copyrights: + - Copyright by Princeton University +ignorable_holders: + - Princeton University +--- + This software and database is being provided to you, the LICENSEE, by Princeton University under the following license. By obtaining, using and/or copying this software and database, you agree that you have @@ -26,4 +42,4 @@ The name of Princeton University or Princeton may not be used in advertising or publicity pertaining to distribution of the software and/or database. Title to copyright in this software, database and any associated documentation shall at all times remain with -Princeton University and LICENSEE agrees to preserve same. \ No newline at end of file +Princeton University and LICENSEE agrees to preserve same. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/wordnet.yml b/src/licensedcode/data/licenses/wordnet.yml deleted file mode 100644 index d7a86b7000c..00000000000 --- a/src/licensedcode/data/licenses/wordnet.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: wordnet -short_name: Wordnet License -name: Wordnet License -category: Permissive -owner: Princeton University -homepage_url: http://wordnetcode.princeton.edu -spdx_license_key: LicenseRef-scancode-wordnet -text_urls: - - http://wordnetcode.princeton.edu/3.0/LICENSE -ignorable_copyrights: - - Copyright by Princeton University -ignorable_holders: - - Princeton University diff --git a/src/licensedcode/data/licenses/wrox-download.LICENSE b/src/licensedcode/data/licenses/wrox-download.LICENSE index 074a3978fa1..ca901c834ac 100644 --- a/src/licensedcode/data/licenses/wrox-download.LICENSE +++ b/src/licensedcode/data/licenses/wrox-download.LICENSE @@ -1,3 +1,14 @@ +--- +key: wrox-download +short_name: Wrox Download Terms and Conditions +name: Wrox Download Terms and Conditions +category: Source-available +owner: Wiley +homepage_url: http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms +spdx_license_key: LicenseRef-scancode-wrox-download +minimum_coverage: 30 +--- + While we try to make it as open as possible, for commercial reasons we do have to assert a few simple Terms and Conditions. By downloading the code you signify that you agree with these. They are: Wrox Press, the authors and distributors cannot be held responsible for any loss, damage or other claim caused by using the executable code or other files. diff --git a/src/licensedcode/data/licenses/wrox-download.yml b/src/licensedcode/data/licenses/wrox-download.yml deleted file mode 100644 index 4474dfc5678..00000000000 --- a/src/licensedcode/data/licenses/wrox-download.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: wrox-download -short_name: Wrox Download Terms and Conditions -name: Wrox Download Terms and Conditions -category: Source-available -owner: Wiley -homepage_url: http://web.archive.org/web/20030421055623/http://wrox.com/dynamic/books/download-info.aspx?ISBN=1861004257&email=&mode=#terms -spdx_license_key: LicenseRef-scancode-wrox-download -minimum_coverage: 30 diff --git a/src/licensedcode/data/licenses/wrox.LICENSE b/src/licensedcode/data/licenses/wrox.LICENSE index 7d2dca2b734..4e420b0e42d 100644 --- a/src/licensedcode/data/licenses/wrox.LICENSE +++ b/src/licensedcode/data/licenses/wrox.LICENSE @@ -1,3 +1,22 @@ +--- +key: wrox +short_name: Wrox Press License +name: Wrox Press License +category: Permissive +owner: Wiley +homepage_url: http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms +spdx_license_key: LicenseRef-scancode-wrox +text_urls: + - http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms +minimum_coverage: 30 +ignorable_copyrights: + - copyright John Wiley & Sons, Inc. +ignorable_holders: + - John Wiley & Sons, Inc. +ignorable_urls: + - http://www.wrox.com/ +--- + Many Wrox readers ask us "Can I use code from Wrox books in my applications?" Here's our answer: Yes, you may use code from any Wrox book published by Wiley & Sons, Inc. in your application, software, or service under the following diff --git a/src/licensedcode/data/licenses/wrox.yml b/src/licensedcode/data/licenses/wrox.yml deleted file mode 100644 index 636dcfd5b47..00000000000 --- a/src/licensedcode/data/licenses/wrox.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: wrox -short_name: Wrox Press License -name: Wrox Press License -category: Permissive -owner: Wiley -homepage_url: http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms -spdx_license_key: LicenseRef-scancode-wrox -text_urls: - - http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms -minimum_coverage: 30 -ignorable_copyrights: - - copyright John Wiley & Sons, Inc. -ignorable_holders: - - John Wiley & Sons, Inc. -ignorable_urls: - - http://www.wrox.com/ diff --git a/src/licensedcode/data/licenses/ws-addressing-spec.LICENSE b/src/licensedcode/data/licenses/ws-addressing-spec.LICENSE index c8e6cc07c8c..a2fa301e73b 100644 --- a/src/licensedcode/data/licenses/ws-addressing-spec.LICENSE +++ b/src/licensedcode/data/licenses/ws-addressing-spec.LICENSE @@ -1,3 +1,18 @@ +--- +key: ws-addressing-spec +short_name: WS-Addressing Specification License +name: WS-Addressing Specification License +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-ws-addressing-spec +ignorable_copyrights: + - Copyright (c) 2002-2004 BEA Systems Inc., International Business Machines Corporation, + Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc +ignorable_holders: + - BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, + Inc, SAP AG, and Sun Microsystems, Inc +--- + WS Addressing Specification License WS/WS-Addressing.xsd diff --git a/src/licensedcode/data/licenses/ws-addressing-spec.yml b/src/licensedcode/data/licenses/ws-addressing-spec.yml deleted file mode 100644 index 1a57c83ab89..00000000000 --- a/src/licensedcode/data/licenses/ws-addressing-spec.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ws-addressing-spec -short_name: WS-Addressing Specification License -name: WS-Addressing Specification License -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-ws-addressing-spec -ignorable_copyrights: - - Copyright (c) 2002-2004 BEA Systems Inc., International Business Machines Corporation, - Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc -ignorable_holders: - - BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, - Inc, SAP AG, and Sun Microsystems, Inc diff --git a/src/licensedcode/data/licenses/ws-policy-specification.LICENSE b/src/licensedcode/data/licenses/ws-policy-specification.LICENSE index 228e33f3700..53b20932685 100644 --- a/src/licensedcode/data/licenses/ws-policy-specification.LICENSE +++ b/src/licensedcode/data/licenses/ws-policy-specification.LICENSE @@ -1,3 +1,15 @@ +--- +key: ws-policy-specification +short_name: WS-Policy Specification +name: WS-Policy Specification +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://en.wikipedia.org/wiki/WS-Policy +spdx_license_key: LicenseRef-scancode-ws-policy-specification +other_urls: + - https://www.w3.org/TR/ws-policy-attach/ +--- + WS-Policy Specification Permission to copy and display the WS-Policy Specification (the "Specification", which includes WSDL and schema documents), in any medium without fee or royalty is hereby granted, provided that you include the following on ALL copies of the WS-Policy Specification, that you make: diff --git a/src/licensedcode/data/licenses/ws-policy-specification.yml b/src/licensedcode/data/licenses/ws-policy-specification.yml deleted file mode 100644 index 73c9cfe6d40..00000000000 --- a/src/licensedcode/data/licenses/ws-policy-specification.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ws-policy-specification -short_name: WS-Policy Specification -name: WS-Policy Specification -category: Permissive -owner: W3C - World Wide Web Consortium -homepage_url: https://en.wikipedia.org/wiki/WS-Policy -spdx_license_key: LicenseRef-scancode-ws-policy-specification -other_urls: - - https://www.w3.org/TR/ws-policy-attach/ diff --git a/src/licensedcode/data/licenses/ws-trust-specification.LICENSE b/src/licensedcode/data/licenses/ws-trust-specification.LICENSE index fdf7af2bb28..cba8fa19758 100644 --- a/src/licensedcode/data/licenses/ws-trust-specification.LICENSE +++ b/src/licensedcode/data/licenses/ws-trust-specification.LICENSE @@ -1,3 +1,15 @@ +--- +key: ws-trust-specification +short_name: WS-Trust Specification +name: WS-Trust Specification +category: Permissive +owner: W3C - World Wide Web Consortium +homepage_url: https://en.wikipedia.org/wiki/WS-Trust +spdx_license_key: LicenseRef-scancode-ws-trust-specification +other_urls: + - http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-stax/2.1.5/wss4j-ws-security-stax-2.1.5.jar +--- + WS-Trust Specification Permission to copy and display the WS-Trust Specification (the "Specification", which diff --git a/src/licensedcode/data/licenses/ws-trust-specification.yml b/src/licensedcode/data/licenses/ws-trust-specification.yml deleted file mode 100644 index f54af3d76eb..00000000000 --- a/src/licensedcode/data/licenses/ws-trust-specification.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ws-trust-specification -short_name: WS-Trust Specification -name: WS-Trust Specification -category: Permissive -owner: W3C - World Wide Web Consortium -homepage_url: https://en.wikipedia.org/wiki/WS-Trust -spdx_license_key: LicenseRef-scancode-ws-trust-specification -other_urls: - - http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-stax/2.1.5/wss4j-ws-security-stax-2.1.5.jar diff --git a/src/licensedcode/data/licenses/wsuipa.LICENSE b/src/licensedcode/data/licenses/wsuipa.LICENSE index c75f941eaca..9a5f136c1ba 100644 --- a/src/licensedcode/data/licenses/wsuipa.LICENSE +++ b/src/licensedcode/data/licenses/wsuipa.LICENSE @@ -1,3 +1,16 @@ +--- +key: wsuipa +short_name: Wsuipa License +name: Wsuipa License +category: Permissive +owner: Washington State University +homepage_url: https://fedoraproject.org/wiki/Licensing/Wsuipa +notes: | + Per Fedora, this license was found on the "wsuipa" component of texlive + 2010. It is Free, but GPL-incompatible. +spdx_license_key: Wsuipa +--- + This file was added by Clea F. Rees on 2008/11/30 with the permission of Dean Guenther and pointers to this file were added to all source files. diff --git a/src/licensedcode/data/licenses/wsuipa.yml b/src/licensedcode/data/licenses/wsuipa.yml deleted file mode 100644 index 0b94a6c014b..00000000000 --- a/src/licensedcode/data/licenses/wsuipa.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: wsuipa -short_name: Wsuipa License -name: Wsuipa License -category: Permissive -owner: Washington State University -homepage_url: https://fedoraproject.org/wiki/Licensing/Wsuipa -notes: | - Per Fedora, this license was found on the "wsuipa" component of texlive - 2010. It is Free, but GPL-incompatible. -spdx_license_key: Wsuipa diff --git a/src/licensedcode/data/licenses/wtfnmfpl-1.0.LICENSE b/src/licensedcode/data/licenses/wtfnmfpl-1.0.LICENSE index bdc43f64f57..e1d2001ec73 100644 --- a/src/licensedcode/data/licenses/wtfnmfpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/wtfnmfpl-1.0.LICENSE @@ -1,3 +1,30 @@ +--- +key: wtfnmfpl-1.0 +short_name: WTFNMFPL-1.0 +name: WTFNMFPL-1.0 +category: Permissive +owner: adversary.org +homepage_url: https://github.com/adversary-org/wtfnmf +notes: | + The Do What The Fuck You Want To But It's Not My Fault Public License + (WTFNMFPL or WTFNMFPLv1) is a variation on the Do What The Fuck You Want + Public License (WTFPL) by Sam Hocevar. Essentially it is the same as the + WTFPL, except with an additional clause to indemnify the author, creator, + developer or distributor against anything a third party might do or + encounter with or as a result of whatever's being licensed with it. This + license was first published at Organised Adversary in October, 2013. The + license is free to use by anyone as per the terms of itself. +spdx_license_key: LicenseRef-scancode-wtfnmfpl-1.0 +text_urls: + - https://github.com/adversary-org/wtfnmf/blob/master/COPYING.WTFNMFPL +ignorable_copyrights: + - Copyright (c) 2013 Ben McGinnes +ignorable_holders: + - Ben McGinnes +ignorable_emails: + - ben@adversary.org +--- + DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE Version 1, October 2013 @@ -14,4 +41,4 @@ 1. Do not hold the author(s), creator(s), developer(s) or distributor(s) liable for anything that happens or goes wrong - with your use of the work. + with your use of the work. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/wtfnmfpl-1.0.yml b/src/licensedcode/data/licenses/wtfnmfpl-1.0.yml deleted file mode 100644 index 31cb52b2aa0..00000000000 --- a/src/licensedcode/data/licenses/wtfnmfpl-1.0.yml +++ /dev/null @@ -1,24 +0,0 @@ -key: wtfnmfpl-1.0 -short_name: WTFNMFPL-1.0 -name: WTFNMFPL-1.0 -category: Permissive -owner: adversary.org -homepage_url: https://github.com/adversary-org/wtfnmf -notes: | - The Do What The Fuck You Want To But It's Not My Fault Public License - (WTFNMFPL or WTFNMFPLv1) is a variation on the Do What The Fuck You Want - Public License (WTFPL) by Sam Hocevar. Essentially it is the same as the - WTFPL, except with an additional clause to indemnify the author, creator, - developer or distributor against anything a third party might do or - encounter with or as a result of whatever's being licensed with it. This - license was first published at Organised Adversary in October, 2013. The - license is free to use by anyone as per the terms of itself. -spdx_license_key: LicenseRef-scancode-wtfnmfpl-1.0 -text_urls: - - https://github.com/adversary-org/wtfnmf/blob/master/COPYING.WTFNMFPL -ignorable_copyrights: - - Copyright (c) 2013 Ben McGinnes -ignorable_holders: - - Ben McGinnes -ignorable_emails: - - ben@adversary.org diff --git a/src/licensedcode/data/licenses/wtfpl-1.0.LICENSE b/src/licensedcode/data/licenses/wtfpl-1.0.LICENSE index c971e27c80e..f2372ef43d1 100644 --- a/src/licensedcode/data/licenses/wtfpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/wtfpl-1.0.LICENSE @@ -1,3 +1,31 @@ +--- +key: wtfpl-1.0 +short_name: WTFPL 1.0 +name: WTFPL 1.0 +category: Public Domain +owner: Sam Hocevar +homepage_url: https://en.wikipedia.org/wiki/WTFPL#Version_1 +notes: | + This license is found in the Windowmaker project with this mention in the + COPYING.WTFPL file The following artwork were created by Banlu Kemiyatorn + and are distributed through the license in this file GNUstepGlow.tiff [... + long list of files] do What The Fuck you want to Public License Version + 1.0, March 2000 Copyright (C) 2000 Banlu Kemiyatorn (]d). 136 Nives 7 + Jangwattana 14 Laksi Bangkok Everyone is permitted to copy and distribute + verbatim copies of this license document, but changing it is not allowed. + Ok, the purpose of this license is simple and you just DO WHAT THE FUCK YOU + WANT TO. +spdx_license_key: LicenseRef-scancode-wtfpl-1.0 +text_urls: + - http://hg.windowmaker.info/wmaker/file/0a3a3e370483/COPYING.WTFPL +other_urls: + - http://cvs.windowmaker.org/co.php/wm/COPYING.WTFPL +ignorable_copyrights: + - Copyright (c) 2000 Banlu Kemiyatorn +ignorable_holders: + - Banlu Kemiyatorn +--- + do What The Fuck you want to Public License Version 1.0, March 2000 @@ -9,4 +37,4 @@ of this license document, but changing it is not allowed. Ok, the purpose of this license is simple and you just -DO WHAT THE FUCK YOU WANT TO. +DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/wtfpl-1.0.yml b/src/licensedcode/data/licenses/wtfpl-1.0.yml deleted file mode 100644 index 821169688ed..00000000000 --- a/src/licensedcode/data/licenses/wtfpl-1.0.yml +++ /dev/null @@ -1,25 +0,0 @@ -key: wtfpl-1.0 -short_name: WTFPL 1.0 -name: WTFPL 1.0 -category: Public Domain -owner: Sam Hocevar -homepage_url: https://en.wikipedia.org/wiki/WTFPL#Version_1 -notes: | - This license is found in the Windowmaker project with this mention in the - COPYING.WTFPL file The following artwork were created by Banlu Kemiyatorn - and are distributed through the license in this file GNUstepGlow.tiff [... - long list of files] do What The Fuck you want to Public License Version - 1.0, March 2000 Copyright (C) 2000 Banlu Kemiyatorn (]d). 136 Nives 7 - Jangwattana 14 Laksi Bangkok Everyone is permitted to copy and distribute - verbatim copies of this license document, but changing it is not allowed. - Ok, the purpose of this license is simple and you just DO WHAT THE FUCK YOU - WANT TO. -spdx_license_key: LicenseRef-scancode-wtfpl-1.0 -text_urls: - - http://hg.windowmaker.info/wmaker/file/0a3a3e370483/COPYING.WTFPL -other_urls: - - http://cvs.windowmaker.org/co.php/wm/COPYING.WTFPL -ignorable_copyrights: - - Copyright (c) 2000 Banlu Kemiyatorn -ignorable_holders: - - Banlu Kemiyatorn diff --git a/src/licensedcode/data/licenses/wtfpl-2.0.LICENSE b/src/licensedcode/data/licenses/wtfpl-2.0.LICENSE index ade0b76c693..72f9f7a11f6 100644 --- a/src/licensedcode/data/licenses/wtfpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/wtfpl-2.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: wtfpl-2.0 +short_name: WTFPL 2.0 +name: WTFPL 2.0 +category: Public Domain +owner: Sam Hocevar +homepage_url: http://sam.zoy.org/wtfpl/ +spdx_license_key: WTFPL +text_urls: + - http://sam.zoy.org/wtfpl/COPYING +other_urls: + - http://fedoraproject.org/wiki/Licensing/WTFPL + - http://www.wtfpl.net/about/ +ignorable_copyrights: + - Copyright (c) 2004 Sam Hocevar +ignorable_holders: + - Sam Hocevar +--- + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 diff --git a/src/licensedcode/data/licenses/wtfpl-2.0.yml b/src/licensedcode/data/licenses/wtfpl-2.0.yml deleted file mode 100644 index 8c37fb27a81..00000000000 --- a/src/licensedcode/data/licenses/wtfpl-2.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: wtfpl-2.0 -short_name: WTFPL 2.0 -name: WTFPL 2.0 -category: Public Domain -owner: Sam Hocevar -homepage_url: http://sam.zoy.org/wtfpl/ -spdx_license_key: WTFPL -text_urls: - - http://sam.zoy.org/wtfpl/COPYING -other_urls: - - http://fedoraproject.org/wiki/Licensing/WTFPL - - http://www.wtfpl.net/about/ -ignorable_copyrights: - - Copyright (c) 2004 Sam Hocevar -ignorable_holders: - - Sam Hocevar diff --git a/src/licensedcode/data/licenses/wthpl-1.0.LICENSE b/src/licensedcode/data/licenses/wthpl-1.0.LICENSE index 1e1c2871ff3..b97b42ecddf 100644 --- a/src/licensedcode/data/licenses/wthpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/wthpl-1.0.LICENSE @@ -1,7 +1,19 @@ +--- +key: wthpl-1.0 +short_name: WTHPL 1.0 +name: DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE 1.0 +category: Public Domain +owner: Fabrício Matté +homepage_url: https://github.com/UltCombo/WTHPL +notes: a fork of the WTFPL +spdx_license_key: LicenseRef-scancode-wthpl-1.0 +minimum_coverage: 50 +--- + DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE Version 1.0.0, October 2014 DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. You just DO WHAT THE HELL YOU WANT TO. + 0. You just DO WHAT THE HELL YOU WANT TO. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/wthpl-1.0.yml b/src/licensedcode/data/licenses/wthpl-1.0.yml deleted file mode 100644 index 8468d6d975b..00000000000 --- a/src/licensedcode/data/licenses/wthpl-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: wthpl-1.0 -short_name: WTHPL 1.0 -name: DO WHAT THE HELL YOU WANT TO PUBLIC LICENSE 1.0 -category: Public Domain -owner: Fabrício Matté -homepage_url: https://github.com/UltCombo/WTHPL -notes: a fork of the WTFPL -spdx_license_key: LicenseRef-scancode-wthpl-1.0 -minimum_coverage: 50 diff --git a/src/licensedcode/data/licenses/wxwidgets.LICENSE b/src/licensedcode/data/licenses/wxwidgets.LICENSE index fc4c8da4973..6a6065ce322 100644 --- a/src/licensedcode/data/licenses/wxwidgets.LICENSE +++ b/src/licensedcode/data/licenses/wxwidgets.LICENSE @@ -1,3 +1,21 @@ +--- +key: wxwidgets +short_name: wxWidgets Licence +name: wxWidgets Licence +category: Permissive +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/licence.htm +spdx_license_key: LicenseRef-scancode-wxwidgets +text_urls: + - http://www.wxwidgets.org/about/licence.htm +ignorable_copyrights: + - Copyright (c) 1997 Julian Smart, Markus Holzem +ignorable_holders: + - Julian Smart, Markus Holzem +ignorable_emails: + - julian@wxwidgets.org +--- + wxWidgets Licence Copyright (C) 1997 Julian Smart, Markus Holzem diff --git a/src/licensedcode/data/licenses/wxwidgets.yml b/src/licensedcode/data/licenses/wxwidgets.yml deleted file mode 100644 index 369fadade02..00000000000 --- a/src/licensedcode/data/licenses/wxwidgets.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: wxwidgets -short_name: wxWidgets Licence -name: wxWidgets Licence -category: Permissive -owner: wxWidgets -homepage_url: http://www.wxwidgets.org/about/licence.htm -spdx_license_key: LicenseRef-scancode-wxwidgets -text_urls: - - http://www.wxwidgets.org/about/licence.htm -ignorable_copyrights: - - Copyright (c) 1997 Julian Smart, Markus Holzem -ignorable_holders: - - Julian Smart, Markus Holzem -ignorable_emails: - - julian@wxwidgets.org diff --git a/src/licensedcode/data/licenses/wxwindows-exception-3.1.LICENSE b/src/licensedcode/data/licenses/wxwindows-exception-3.1.LICENSE index df32f614aed..f39f145508d 100644 --- a/src/licensedcode/data/licenses/wxwindows-exception-3.1.LICENSE +++ b/src/licensedcode/data/licenses/wxwindows-exception-3.1.LICENSE @@ -1,3 +1,58 @@ +--- +key: wxwindows-exception-3.1 +short_name: WxWindows Library Exception to GNU Licenses +name: WxWindows Library Exception to GNU Licenses +category: Copyleft Limited +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/newlicen.htm +notes: formerly was SPDX id wxWindows +is_exception: yes +spdx_license_key: WxWindows-exception-3.1 +osi_url: https://opensource.org/licenses/WXwindows +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.opensource.org/licenses/WXwindows +standard_notice: | + The wxWindows Library Licence + Copyright (c) 1998 Julian Smart, Robert Roebling [, ...] + Everyone is permitted to copy and distribute verbatim copies of this + licence document, but changing it is not allowed. + WXWINDOWS LIBRARY LICENCE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Library General Public Licence as published by + the Free Software Foundation; either version 2 of the Licence, 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 Library General Public + Licence for more details. + You should have received a copy of the GNU Library General Public Licence + along with this software, usually in a file named COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, + Boston, MA 02111-1307 USA. + EXCEPTION NOTICE + 1. As a special exception, the copyright holders of this library give + permission for additional uses of the text contained in this release of the + library as licenced under the wxWindows Library Licence, applying either + version 3.1 of the Licence, or (at your option) any later version of the + Licence as published by the copyright holders of version 3.1 of the Licence + document. + 2. The exception is that you may use, copy, link, modify and distribute + under your own terms, binary object code versions of works based on + the Library. + 3. If you copy code from files distributed under the terms of the GNU + General Public Licence or the GNU Library General Public Licence into a + copy of this library, as this licence permits, the exception does not apply + to the code that you add in this way. To avoid misleading anyone as to the + status of such modified files, you must delete this exception notice from + such code and/or adjust the licensing conditions notice accordingly. + 4. If you write modifications of your own for this library, it is your + choice whether to permit this exception to apply to your modifications. If + you do not wish that, you must delete the exception notice from such code + and/or adjust the licensing conditions notice accordingly. +--- + EXCEPTION NOTICE 1. As a special exception, the copyright holders of this library give @@ -22,4 +77,4 @@ accordingly. 4. If you write modifications of your own for this library, it is your choice whether to permit this exception to apply to your modifications. If you do not wish that, you must delete the exception notice from such -code and/or adjust the licensing conditions notice accordingly. +code and/or adjust the licensing conditions notice accordingly. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/wxwindows-exception-3.1.yml b/src/licensedcode/data/licenses/wxwindows-exception-3.1.yml deleted file mode 100644 index dd0c8842303..00000000000 --- a/src/licensedcode/data/licenses/wxwindows-exception-3.1.yml +++ /dev/null @@ -1,52 +0,0 @@ -key: wxwindows-exception-3.1 -short_name: WxWindows Library Exception to GNU Licenses -name: WxWindows Library Exception to GNU Licenses -category: Copyleft Limited -owner: wxWidgets -homepage_url: http://www.wxwidgets.org/about/newlicen.htm -notes: formerly was SPDX id wxWindows -is_exception: yes -spdx_license_key: WxWindows-exception-3.1 -osi_url: https://opensource.org/licenses/WXwindows -other_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.opensource.org/licenses/WXwindows -standard_notice: | - The wxWindows Library Licence - Copyright (c) 1998 Julian Smart, Robert Roebling [, ...] - Everyone is permitted to copy and distribute verbatim copies of this - licence document, but changing it is not allowed. - WXWINDOWS LIBRARY LICENCE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public Licence as published by - the Free Software Foundation; either version 2 of the Licence, 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 Library General Public - Licence for more details. - You should have received a copy of the GNU Library General Public Licence - along with this software, usually in a file named COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA. - EXCEPTION NOTICE - 1. As a special exception, the copyright holders of this library give - permission for additional uses of the text contained in this release of the - library as licenced under the wxWindows Library Licence, applying either - version 3.1 of the Licence, or (at your option) any later version of the - Licence as published by the copyright holders of version 3.1 of the Licence - document. - 2. The exception is that you may use, copy, link, modify and distribute - under your own terms, binary object code versions of works based on - the Library. - 3. If you copy code from files distributed under the terms of the GNU - General Public Licence or the GNU Library General Public Licence into a - copy of this library, as this licence permits, the exception does not apply - to the code that you add in this way. To avoid misleading anyone as to the - status of such modified files, you must delete this exception notice from - such code and/or adjust the licensing conditions notice accordingly. - 4. If you write modifications of your own for this library, it is your - choice whether to permit this exception to apply to your modifications. If - you do not wish that, you must delete the exception notice from such code - and/or adjust the licensing conditions notice accordingly. diff --git a/src/licensedcode/data/licenses/wxwindows-r-3.0.LICENSE b/src/licensedcode/data/licenses/wxwindows-r-3.0.LICENSE index 8a2a3cc46bc..d3a81c0321d 100644 --- a/src/licensedcode/data/licenses/wxwindows-r-3.0.LICENSE +++ b/src/licensedcode/data/licenses/wxwindows-r-3.0.LICENSE @@ -1,3 +1,20 @@ +--- +key: wxwindows-r-3.0 +short_name: wxWindows Restricted Licence 3.0 +name: wxWindows Restricted Licence 3.0 +category: Copyleft Limited +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/licence.htm +spdx_license_key: LicenseRef-scancode-wxwindows-r-3.0 +text_urls: + - http://www.wxwidgets.org/about/licence.htm +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1998 Julian Smart, Robert Roebling +ignorable_holders: + - Julian Smart, Robert Roebling +--- + wxWindows Restricted Licence, Version 3 ======================================= diff --git a/src/licensedcode/data/licenses/wxwindows-r-3.0.yml b/src/licensedcode/data/licenses/wxwindows-r-3.0.yml deleted file mode 100644 index bc9bbee351d..00000000000 --- a/src/licensedcode/data/licenses/wxwindows-r-3.0.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: wxwindows-r-3.0 -short_name: wxWindows Restricted Licence 3.0 -name: wxWindows Restricted Licence 3.0 -category: Copyleft Limited -owner: wxWidgets -homepage_url: http://www.wxwidgets.org/about/licence.htm -spdx_license_key: LicenseRef-scancode-wxwindows-r-3.0 -text_urls: - - http://www.wxwidgets.org/about/licence.htm -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 1998 Julian Smart, Robert Roebling -ignorable_holders: - - Julian Smart, Robert Roebling diff --git a/src/licensedcode/data/licenses/wxwindows-u-3.0.LICENSE b/src/licensedcode/data/licenses/wxwindows-u-3.0.LICENSE index b030e19df15..d14b712329c 100644 --- a/src/licensedcode/data/licenses/wxwindows-u-3.0.LICENSE +++ b/src/licensedcode/data/licenses/wxwindows-u-3.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: wxwindows-u-3.0 +short_name: wxWindows Unrestricted Licence 3.0 +name: wxWindows Unrestricted Licence 3.0 +category: Permissive +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/licence.htm +spdx_license_key: LicenseRef-scancode-wxwindows-u-3.0 +text_urls: + - http://www.wxwidgets.org/about/licence.htm +faq_url: http://www.wxwidgets.org/about/newlicen.htm +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1997 Julian Smart, Robert Roebling +ignorable_holders: + - Julian Smart, Robert Roebling +--- + wxWindows Unrestricted Licence, Version 3 ========================================= diff --git a/src/licensedcode/data/licenses/wxwindows-u-3.0.yml b/src/licensedcode/data/licenses/wxwindows-u-3.0.yml deleted file mode 100644 index 40e9f835cd9..00000000000 --- a/src/licensedcode/data/licenses/wxwindows-u-3.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: wxwindows-u-3.0 -short_name: wxWindows Unrestricted Licence 3.0 -name: wxWindows Unrestricted Licence 3.0 -category: Permissive -owner: wxWidgets -homepage_url: http://www.wxwidgets.org/about/licence.htm -spdx_license_key: LicenseRef-scancode-wxwindows-u-3.0 -text_urls: - - http://www.wxwidgets.org/about/licence.htm -faq_url: http://www.wxwidgets.org/about/newlicen.htm -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 1997 Julian Smart, Robert Roebling -ignorable_holders: - - Julian Smart, Robert Roebling diff --git a/src/licensedcode/data/licenses/wxwindows.LICENSE b/src/licensedcode/data/licenses/wxwindows.LICENSE index 64eb948e5e8..f6b8c72bda0 100644 --- a/src/licensedcode/data/licenses/wxwindows.LICENSE +++ b/src/licensedcode/data/licenses/wxwindows.LICENSE @@ -1,3 +1,23 @@ +--- +key: wxwindows +is_deprecated: yes +short_name: wxWindows Library Licence 3.1 +name: wxWindows Library Licence 3.1 +category: Copyleft Limited +owner: wxWidgets +homepage_url: http://www.wxwidgets.org/about/newlicen.htm +notes: this has been replaced by the lgpl-2.0-plus WITH wxwindows-exception-3.1 and was formerly + using the wxWindows SPDX license id +spdx_license_key: wxWindows +text_urls: + - http://www.wxwidgets.org/about/newlicen.htm +osi_url: http://www.opensource.org/licenses/wxwindows.php +faq_url: http://www.wxwidgets.org/about/licence.htm +other_urls: + - http://www.opensource.org/licenses/WXwindows + - http://www.wxwidgets.org/about/licence3.txt +--- + wxWindows Library Licence, Version 3.1 ====================================== diff --git a/src/licensedcode/data/licenses/wxwindows.yml b/src/licensedcode/data/licenses/wxwindows.yml deleted file mode 100644 index a67fea5606e..00000000000 --- a/src/licensedcode/data/licenses/wxwindows.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: wxwindows -is_deprecated: yes -short_name: wxWindows Library Licence 3.1 -name: wxWindows Library Licence 3.1 -category: Copyleft Limited -owner: wxWidgets -homepage_url: http://www.wxwidgets.org/about/newlicen.htm -notes: this has been replaced by the lgpl-2.0-plus WITH wxwindows-exception-3.1 and was formerly - using the wxWindows SPDX license id -spdx_license_key: wxWindows -text_urls: - - http://www.wxwidgets.org/about/newlicen.htm -osi_url: http://www.opensource.org/licenses/wxwindows.php -faq_url: http://www.wxwidgets.org/about/licence.htm -other_urls: - - http://www.opensource.org/licenses/WXwindows - - http://www.wxwidgets.org/about/licence3.txt diff --git a/src/licensedcode/data/licenses/x11-acer.LICENSE b/src/licensedcode/data/licenses/x11-acer.LICENSE index ef1a53fe3ff..f63775d0490 100644 --- a/src/licensedcode/data/licenses/x11-acer.LICENSE +++ b/src/licensedcode/data/licenses/x11-acer.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-acer +short_name: X11-Style (Acer) +name: X11-Style (Acer) +category: Permissive +owner: Acer Labs +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Abilis +spdx_license_key: LicenseRef-scancode-x11-acer +other_urls: + - https://tracxn.com/d/companies/abilis.com +--- + 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 diff --git a/src/licensedcode/data/licenses/x11-acer.yml b/src/licensedcode/data/licenses/x11-acer.yml deleted file mode 100644 index 86a8aeb7cc3..00000000000 --- a/src/licensedcode/data/licenses/x11-acer.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: x11-acer -short_name: X11-Style (Acer) -name: X11-Style (Acer) -category: Permissive -owner: Acer Labs -homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/LICENCE.Abilis -spdx_license_key: LicenseRef-scancode-x11-acer -other_urls: - - https://tracxn.com/d/companies/abilis.com diff --git a/src/licensedcode/data/licenses/x11-adobe-dec.LICENSE b/src/licensedcode/data/licenses/x11-adobe-dec.LICENSE index f8701de298a..d1fa84a1a6c 100644 --- a/src/licensedcode/data/licenses/x11-adobe-dec.LICENSE +++ b/src/licensedcode/data/licenses/x11-adobe-dec.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-adobe-dec +short_name: X11-Style (Adobe-DEC) +name: X11-Style (Adobe-DEC) +category: Permissive +owner: Adobe Systems +spdx_license_key: LicenseRef-scancode-x11-adobe-dec +minimum_coverage: 85 +--- + Adobe is a trademark of Adobe Systems Incorporated which may be registered in certain jurisdictions. Permission to use these trademarks is hereby granted only in association with the images described in this file. diff --git a/src/licensedcode/data/licenses/x11-adobe-dec.yml b/src/licensedcode/data/licenses/x11-adobe-dec.yml deleted file mode 100644 index e595be0b78c..00000000000 --- a/src/licensedcode/data/licenses/x11-adobe-dec.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: x11-adobe-dec -short_name: X11-Style (Adobe-DEC) -name: X11-Style (Adobe-DEC) -category: Permissive -owner: Adobe Systems -spdx_license_key: LicenseRef-scancode-x11-adobe-dec -minimum_coverage: 85 diff --git a/src/licensedcode/data/licenses/x11-adobe.LICENSE b/src/licensedcode/data/licenses/x11-adobe.LICENSE index bf00f3332c7..0bb3fbc6cb8 100644 --- a/src/licensedcode/data/licenses/x11-adobe.LICENSE +++ b/src/licensedcode/data/licenses/x11-adobe.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-adobe +short_name: X11-Style (Adobe) +name: X11-Style (Adobe) +category: Permissive +owner: Adobe Systems +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-adobe +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +--- + Permission to use, copy, modify, distribute, and sublicense this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notices appear in all copies and that both those diff --git a/src/licensedcode/data/licenses/x11-adobe.yml b/src/licensedcode/data/licenses/x11-adobe.yml deleted file mode 100644 index 0748e278d50..00000000000 --- a/src/licensedcode/data/licenses/x11-adobe.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: x11-adobe -short_name: X11-Style (Adobe) -name: X11-Style (Adobe) -category: Permissive -owner: Adobe Systems -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: LicenseRef-scancode-x11-adobe -text_urls: - - http://www.xfree86.org/current/LICENSE5.html diff --git a/src/licensedcode/data/licenses/x11-bitstream.LICENSE b/src/licensedcode/data/licenses/x11-bitstream.LICENSE index ec69af0ce12..51519f7701a 100644 --- a/src/licensedcode/data/licenses/x11-bitstream.LICENSE +++ b/src/licensedcode/data/licenses/x11-bitstream.LICENSE @@ -1,3 +1,17 @@ +--- +key: x11-bitstream +short_name: X11-Style (Bitstream Charter) +name: X11-Style (Bitstream Charter) +category: Permissive +owner: Bitstream +notes: this is an historical license with an extra grant +spdx_license_key: LicenseRef-scancode-x11-bitstream +ignorable_copyrights: + - (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA. +ignorable_holders: + - Bitstream Inc., Cambridge, MA. +--- + The names "Bitstream" and "Charter" are registered trademarks of Bitstream, Inc. Permission to use these trademarks is hereby granted only in association with the images described in this file. diff --git a/src/licensedcode/data/licenses/x11-bitstream.yml b/src/licensedcode/data/licenses/x11-bitstream.yml deleted file mode 100644 index a9be746feea..00000000000 --- a/src/licensedcode/data/licenses/x11-bitstream.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: x11-bitstream -short_name: X11-Style (Bitstream Charter) -name: X11-Style (Bitstream Charter) -category: Permissive -owner: Bitstream -notes: this is an historical license with an extra grant -spdx_license_key: LicenseRef-scancode-x11-bitstream -ignorable_copyrights: - - (c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA. -ignorable_holders: - - Bitstream Inc., Cambridge, MA. diff --git a/src/licensedcode/data/licenses/x11-dec1.LICENSE b/src/licensedcode/data/licenses/x11-dec1.LICENSE index 7e0fe862042..c2ec8450850 100644 --- a/src/licensedcode/data/licenses/x11-dec1.LICENSE +++ b/src/licensedcode/data/licenses/x11-dec1.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-dec1 +short_name: X11-Style (DEC 1) +name: X11-Style (DEC 1) +category: Permissive +owner: DEC - Digital Equipment Corporation +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-dec1 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright diff --git a/src/licensedcode/data/licenses/x11-dec1.yml b/src/licensedcode/data/licenses/x11-dec1.yml deleted file mode 100644 index 2eabfd85107..00000000000 --- a/src/licensedcode/data/licenses/x11-dec1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: x11-dec1 -short_name: X11-Style (DEC 1) -name: X11-Style (DEC 1) -category: Permissive -owner: DEC - Digital Equipment Corporation -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: LicenseRef-scancode-x11-dec1 -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-dec2.LICENSE b/src/licensedcode/data/licenses/x11-dec2.LICENSE index c1f4e5d3241..b0a67c39720 100644 --- a/src/licensedcode/data/licenses/x11-dec2.LICENSE +++ b/src/licensedcode/data/licenses/x11-dec2.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-dec2 +short_name: X11-Style (DEC 2) +name: X11-Style (DEC 2) +category: Permissive +owner: DEC - Digital Equipment Corporation +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-dec2 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION. DIGITAL MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THIS SOFTWARE FOR ANY PURPOSE. IT IS diff --git a/src/licensedcode/data/licenses/x11-dec2.yml b/src/licensedcode/data/licenses/x11-dec2.yml deleted file mode 100644 index 6bae1e373b1..00000000000 --- a/src/licensedcode/data/licenses/x11-dec2.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: x11-dec2 -short_name: X11-Style (DEC 2) -name: X11-Style (DEC 2) -category: Permissive -owner: DEC - Digital Equipment Corporation -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: LicenseRef-scancode-x11-dec2 -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-doc.LICENSE b/src/licensedcode/data/licenses/x11-doc.LICENSE index 1793f3fe3f0..d2be52fc987 100644 --- a/src/licensedcode/data/licenses/x11-doc.LICENSE +++ b/src/licensedcode/data/licenses/x11-doc.LICENSE @@ -1,3 +1,19 @@ +--- +key: x11-doc +short_name: X11 Documentation License +name: X11 Documentation License +category: Permissive +owner: XFree86 Project, Inc +homepage_url: https://www.x.org/ +spdx_license_key: LicenseRef-scancode-x11-doc +text_urls: + - https://answers.launchpad.net/ubuntu-leb/oneiric/+source/libxext/+copyright + - https://www.x.org/releases/X11R7.7/doc/libXtst/xtestlib.txt +other_urls: + - https://books.google.com/books?id=DgzG_28omiYC&pg=PA393&lpg=PA393&dq=%22This+documentation+is+provided+%60%60as+is%27%27+without+express+or+implied+warranty.%22&source=bl&ots=dH16WA9q7t&sig=hS0ElVWtLI_JJ_D3WbCmnH56XdA&hl=en&sa=X&ved=0ahUKEwiZytPX2YrQAhXmr1QKHVOkA0YQ6AEIKzAD#v=onepage&q=%22This%20documentation%20is%20provided%20%60%60as%20is%27%27%20without%20express%20or%20implied%20warranty.%22&f=false +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this documentation for any purpose is hereby granted without fee, provided that the above copyright notice and this permission diff --git a/src/licensedcode/data/licenses/x11-doc.yml b/src/licensedcode/data/licenses/x11-doc.yml deleted file mode 100644 index b750402a56d..00000000000 --- a/src/licensedcode/data/licenses/x11-doc.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: x11-doc -short_name: X11 Documentation License -name: X11 Documentation License -category: Permissive -owner: XFree86 Project, Inc -homepage_url: https://www.x.org/ -spdx_license_key: LicenseRef-scancode-x11-doc -text_urls: - - https://answers.launchpad.net/ubuntu-leb/oneiric/+source/libxext/+copyright - - https://www.x.org/releases/X11R7.7/doc/libXtst/xtestlib.txt -other_urls: - - https://books.google.com/books?id=DgzG_28omiYC&pg=PA393&lpg=PA393&dq=%22This+documentation+is+provided+%60%60as+is%27%27+without+express+or+implied+warranty.%22&source=bl&ots=dH16WA9q7t&sig=hS0ElVWtLI_JJ_D3WbCmnH56XdA&hl=en&sa=X&ved=0ahUKEwiZytPX2YrQAhXmr1QKHVOkA0YQ6AEIKzAD#v=onepage&q=%22This%20documentation%20is%20provided%20%60%60as%20is%27%27%20without%20express%20or%20implied%20warranty.%22&f=false -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-dsc.LICENSE b/src/licensedcode/data/licenses/x11-dsc.LICENSE index aeba5cfde12..9cb0cdf8ff9 100644 --- a/src/licensedcode/data/licenses/x11-dsc.LICENSE +++ b/src/licensedcode/data/licenses/x11-dsc.LICENSE @@ -1,3 +1,19 @@ +--- +key: x11-dsc +short_name: X11-Style (DSC Technologies) +name: X11-Style (DSC Technologies) +category: Permissive +owner: Alcatel-Lucent +spdx_license_key: LicenseRef-scancode-x11-dsc +minimum_coverage: 90 +ignorable_copyrights: + - Copyright 1997 DSC Technologies Corporation + - copyrighted by DSC Technologies +ignorable_holders: + - DSC Technologies + - DSC Technologies Corporation +--- + This software is copyrighted by DSC Technologies and private individual contributors. The copyright holder is specifically listed in the header of each file. The following terms apply to all files associated with the software unless diff --git a/src/licensedcode/data/licenses/x11-dsc.yml b/src/licensedcode/data/licenses/x11-dsc.yml deleted file mode 100644 index b88bc7f6e62..00000000000 --- a/src/licensedcode/data/licenses/x11-dsc.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: x11-dsc -short_name: X11-Style (DSC Technologies) -name: X11-Style (DSC Technologies) -category: Permissive -owner: Alcatel-Lucent -spdx_license_key: LicenseRef-scancode-x11-dsc -minimum_coverage: 90 -ignorable_copyrights: - - Copyright 1997 DSC Technologies Corporation - - copyrighted by DSC Technologies -ignorable_holders: - - DSC Technologies - - DSC Technologies Corporation diff --git a/src/licensedcode/data/licenses/x11-fsf.LICENSE b/src/licensedcode/data/licenses/x11-fsf.LICENSE index c703c8f16de..394f400c4b3 100644 --- a/src/licensedcode/data/licenses/x11-fsf.LICENSE +++ b/src/licensedcode/data/licenses/x11-fsf.LICENSE @@ -1,3 +1,18 @@ +--- +key: x11-fsf +short_name: X11-Style (FSF) +name: X11-Style (FSF) +category: Permissive +owner: Free Software Foundation (FSF) +notes: named by SPDX as "X11 License Distribution Modification Variant" +spdx_license_key: X11-distribute-modifications-variant +other_spdx_license_keys: + - LicenseRef-scancode-x11-fsf +other_urls: + - https://github.com/mirror/ncurses/blob/master/COPYING +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/licenses/x11-fsf.yml b/src/licensedcode/data/licenses/x11-fsf.yml deleted file mode 100644 index 3bc8d71a159..00000000000 --- a/src/licensedcode/data/licenses/x11-fsf.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: x11-fsf -short_name: X11-Style (FSF) -name: X11-Style (FSF) -category: Permissive -owner: Free Software Foundation (FSF) -notes: named by SPDX as "X11 License Distribution Modification Variant" -spdx_license_key: X11-distribute-modifications-variant -other_spdx_license_keys: - - LicenseRef-scancode-x11-fsf -other_urls: - - https://github.com/mirror/ncurses/blob/master/COPYING -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-hanson.LICENSE b/src/licensedcode/data/licenses/x11-hanson.LICENSE index 33ab6af3932..4909075f96f 100644 --- a/src/licensedcode/data/licenses/x11-hanson.LICENSE +++ b/src/licensedcode/data/licenses/x11-hanson.LICENSE @@ -1,3 +1,14 @@ +--- +key: x11-hanson +short_name: X11-Style (David R. Hanson) +name: X11-Style (David R. Hanson) +category: Permissive +owner: David R. Hanson +homepage_url: http://www.research.microsoft.com/~drh/ +spdx_license_key: LicenseRef-scancode-x11-hanson +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose, subject to the provisions described below, without fee is hereby granted, provided that this entire notice is included in all @@ -8,4 +19,4 @@ such software. THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, THE AUTHOR DOES MAKE ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR -ITS FITNESS FOR ANY PARTICULAR PURPOSE. +ITS FITNESS FOR ANY PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/x11-hanson.yml b/src/licensedcode/data/licenses/x11-hanson.yml deleted file mode 100644 index 8d11349396e..00000000000 --- a/src/licensedcode/data/licenses/x11-hanson.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: x11-hanson -short_name: X11-Style (David R. Hanson) -name: X11-Style (David R. Hanson) -category: Permissive -owner: David R. Hanson -homepage_url: http://www.research.microsoft.com/~drh/ -spdx_license_key: LicenseRef-scancode-x11-hanson -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-ibm.LICENSE b/src/licensedcode/data/licenses/x11-ibm.LICENSE index 27005f6f58e..43ee79ccf2a 100644 --- a/src/licensedcode/data/licenses/x11-ibm.LICENSE +++ b/src/licensedcode/data/licenses/x11-ibm.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-ibm +short_name: IBM Derivative Works License +name: IBM Derivative Works License +category: Copyleft +owner: IBM +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-ibm +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + License to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that licensee provides a license to IBM, Corp. to use, copy, modify, and distribute derivative diff --git a/src/licensedcode/data/licenses/x11-ibm.yml b/src/licensedcode/data/licenses/x11-ibm.yml deleted file mode 100644 index ca44a7341e6..00000000000 --- a/src/licensedcode/data/licenses/x11-ibm.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: x11-ibm -short_name: IBM Derivative Works License -name: IBM Derivative Works License -category: Copyleft -owner: IBM -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: LicenseRef-scancode-x11-ibm -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-keith-packard.LICENSE b/src/licensedcode/data/licenses/x11-keith-packard.LICENSE index 1ed3a2fbfe2..9fd91edc993 100644 --- a/src/licensedcode/data/licenses/x11-keith-packard.LICENSE +++ b/src/licensedcode/data/licenses/x11-keith-packard.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-keith-packard +short_name: X11-Style (Keith Packard) +name: X11-Style (Keith Packard) +category: Permissive +owner: Unspecified +spdx_license_key: HPND-sell-variant +other_urls: + - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19 + - http://www.freedesktop.org/software/fontconfig/release/ +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appears in all copies, and that both that the copyright diff --git a/src/licensedcode/data/licenses/x11-keith-packard.yml b/src/licensedcode/data/licenses/x11-keith-packard.yml deleted file mode 100644 index 5ea057f01eb..00000000000 --- a/src/licensedcode/data/licenses/x11-keith-packard.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: x11-keith-packard -short_name: X11-Style (Keith Packard) -name: X11-Style (Keith Packard) -category: Permissive -owner: Unspecified -spdx_license_key: HPND-sell-variant -other_urls: - - https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h=v4.19 - - http://www.freedesktop.org/software/fontconfig/release/ diff --git a/src/licensedcode/data/licenses/x11-lucent-variant.LICENSE b/src/licensedcode/data/licenses/x11-lucent-variant.LICENSE index a6d5b7c5f07..ff8a7f55162 100644 --- a/src/licensedcode/data/licenses/x11-lucent-variant.LICENSE +++ b/src/licensedcode/data/licenses/x11-lucent-variant.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-lucent-variant +short_name: X11-Style (Lucent-variant) +name: X11-Style (Lucent-variant) +category: Permissive +owner: Alcatel-Lucent +homepage_url: http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdevifno.c;h=3a34cc1942d4a858a24d9b982907daf52a0c4c67;hb=HEAD +spdx_license_key: LicenseRef-scancode-x11-lucent-variant +--- + * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all copies of any software which is or includes a copy diff --git a/src/licensedcode/data/licenses/x11-lucent-variant.yml b/src/licensedcode/data/licenses/x11-lucent-variant.yml deleted file mode 100644 index c7a5065a098..00000000000 --- a/src/licensedcode/data/licenses/x11-lucent-variant.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: x11-lucent-variant -short_name: X11-Style (Lucent-variant) -name: X11-Style (Lucent-variant) -category: Permissive -owner: Alcatel-Lucent -homepage_url: http://git.ghostscript.com/?p=ghostpdl.git;a=blob;f=devices/gdevifno.c;h=3a34cc1942d4a858a24d9b982907daf52a0c4c67;hb=HEAD -spdx_license_key: LicenseRef-scancode-x11-lucent-variant diff --git a/src/licensedcode/data/licenses/x11-lucent.LICENSE b/src/licensedcode/data/licenses/x11-lucent.LICENSE index 8656a297124..e79fea755f6 100644 --- a/src/licensedcode/data/licenses/x11-lucent.LICENSE +++ b/src/licensedcode/data/licenses/x11-lucent.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-lucent +short_name: X11-Style (Lucent) +name: X11-Style (Lucent) +category: Permissive +owner: Alcatel-Lucent +spdx_license_key: LicenseRef-scancode-x11-lucent +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy @@ -7,4 +17,4 @@ documentation for such software. THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. +OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/x11-lucent.yml b/src/licensedcode/data/licenses/x11-lucent.yml deleted file mode 100644 index e644030bfa3..00000000000 --- a/src/licensedcode/data/licenses/x11-lucent.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: x11-lucent -short_name: X11-Style (Lucent) -name: X11-Style (Lucent) -category: Permissive -owner: Alcatel-Lucent -spdx_license_key: LicenseRef-scancode-x11-lucent -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-oar.LICENSE b/src/licensedcode/data/licenses/x11-oar.LICENSE index f22fb4af8e3..671c4eae242 100644 --- a/src/licensedcode/data/licenses/x11-oar.LICENSE +++ b/src/licensedcode/data/licenses/x11-oar.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-oar +short_name: X11-Style (OAR) +name: X11-Style (OAR) +category: Permissive +owner: OAR - On-Line Applications Research Corporation +spdx_license_key: LicenseRef-scancode-x11-oar +other_urls: + - http://www.oarcorp.com/index.htm +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy diff --git a/src/licensedcode/data/licenses/x11-oar.yml b/src/licensedcode/data/licenses/x11-oar.yml deleted file mode 100644 index 63752b3445a..00000000000 --- a/src/licensedcode/data/licenses/x11-oar.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: x11-oar -short_name: X11-Style (OAR) -name: X11-Style (OAR) -category: Permissive -owner: OAR - On-Line Applications Research Corporation -spdx_license_key: LicenseRef-scancode-x11-oar -other_urls: - - http://www.oarcorp.com/index.htm -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-opengl.LICENSE b/src/licensedcode/data/licenses/x11-opengl.LICENSE index c63cf4fee43..4b00c76021a 100644 --- a/src/licensedcode/data/licenses/x11-opengl.LICENSE +++ b/src/licensedcode/data/licenses/x11-opengl.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-opengl +short_name: X11-Style (OpenGL) +name: X11-Style (OpenGL) +category: Permissive +owner: SGI - Silicon Graphics +spdx_license_key: LicenseRef-scancode-x11-opengl +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both the copyright notice and this permission diff --git a/src/licensedcode/data/licenses/x11-opengl.yml b/src/licensedcode/data/licenses/x11-opengl.yml deleted file mode 100644 index fe2efb48bb7..00000000000 --- a/src/licensedcode/data/licenses/x11-opengl.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: x11-opengl -short_name: X11-Style (OpenGL) -name: X11-Style (OpenGL) -category: Permissive -owner: SGI - Silicon Graphics -spdx_license_key: LicenseRef-scancode-x11-opengl -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-opengroup.LICENSE b/src/licensedcode/data/licenses/x11-opengroup.LICENSE index b2cf186d5b4..c4de3560bae 100644 --- a/src/licensedcode/data/licenses/x11-opengroup.LICENSE +++ b/src/licensedcode/data/licenses/x11-opengroup.LICENSE @@ -1,3 +1,23 @@ +--- +key: x11-opengroup +short_name: X11-Style (Open Group) +name: X11-Style (Open Group) +category: Permissive +owner: Open Group +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: MIT-open-group +other_spdx_license_keys: + - LicenseRef-scancode-x11-opengroup +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +other_urls: + - https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING + - https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING + - https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING + - https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/licenses/x11-opengroup.yml b/src/licensedcode/data/licenses/x11-opengroup.yml deleted file mode 100644 index 33dc3fe5d64..00000000000 --- a/src/licensedcode/data/licenses/x11-opengroup.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: x11-opengroup -short_name: X11-Style (Open Group) -name: X11-Style (Open Group) -category: Permissive -owner: Open Group -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: MIT-open-group -other_spdx_license_keys: - - LicenseRef-scancode-x11-opengroup -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -other_urls: - - https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING - - https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING - - https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING - - https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-quarterdeck.LICENSE b/src/licensedcode/data/licenses/x11-quarterdeck.LICENSE index 9da1c3592cf..a411c01a0f8 100644 --- a/src/licensedcode/data/licenses/x11-quarterdeck.LICENSE +++ b/src/licensedcode/data/licenses/x11-quarterdeck.LICENSE @@ -1,3 +1,13 @@ +--- +key: x11-quarterdeck +short_name: X11-Style (Quarterdeck) +name: X11-Style (Quarterdeck) +category: Permissive +owner: Quarterdeck +spdx_license_key: LicenseRef-scancode-x11-quarterdeck +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this software and software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright diff --git a/src/licensedcode/data/licenses/x11-quarterdeck.yml b/src/licensedcode/data/licenses/x11-quarterdeck.yml deleted file mode 100644 index 34365c719ae..00000000000 --- a/src/licensedcode/data/licenses/x11-quarterdeck.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: x11-quarterdeck -short_name: X11-Style (Quarterdeck) -name: X11-Style (Quarterdeck) -category: Permissive -owner: Quarterdeck -spdx_license_key: LicenseRef-scancode-x11-quarterdeck -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-r75.LICENSE b/src/licensedcode/data/licenses/x11-r75.LICENSE index 2e7e2f9faa8..b143121046d 100644 --- a/src/licensedcode/data/licenses/x11-r75.LICENSE +++ b/src/licensedcode/data/licenses/x11-r75.LICENSE @@ -1,3 +1,20 @@ +--- +key: x11-r75 +is_deprecated: yes +short_name: X11-R7.5 +name: X.Org Preferred License +category: Permissive +owner: X.Org +homepage_url: https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16 +notes: The main difference between this license and the standard MIT License is the text " (including + the next paragraph)" in this license, which is not in the MIT license. This is not considered + as a material differences by the SPDX legal team. +faq_url: https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16 +other_urls: + - https://www.x.org/releases/individual/font/font-util-1.3.1.tar.bz2 +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +32,4 @@ 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. +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/x11-r75.yml b/src/licensedcode/data/licenses/x11-r75.yml deleted file mode 100644 index fceccb3ba16..00000000000 --- a/src/licensedcode/data/licenses/x11-r75.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: x11-r75 -is_deprecated: yes -short_name: X11-R7.5 -name: X.Org Preferred License -category: Permissive -owner: X.Org -homepage_url: https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16 -notes: The main difference between this license and the standard MIT License is the text " (including - the next paragraph)" in this license, which is not in the MIT license. - This is not considered as a material differences by the SPDX legal team. -faq_url: https://www.x.org/archive/X11R7.5/doc/LICENSE.html#AEN16 -other_urls: - - https://www.x.org/releases/individual/font/font-util-1.3.1.tar.bz2 -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-realmode.LICENSE b/src/licensedcode/data/licenses/x11-realmode.LICENSE index 42601378bd5..b767266ac88 100644 --- a/src/licensedcode/data/licenses/x11-realmode.LICENSE +++ b/src/licensedcode/data/licenses/x11-realmode.LICENSE @@ -1,3 +1,17 @@ +--- +key: x11-realmode +short_name: X11-Style (Realmode) +name: X11-Style (Realmode) +category: Permissive +owner: XFree86 Project, Inc +notes: a composite of x11-keith-packard and other license comments +spdx_license_key: LicenseRef-scancode-x11-realmode +minimum_coverage: 85 +ignorable_emails: + - KendallB@scitechsoft.com + - x86emu@linuxlabs.com +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice diff --git a/src/licensedcode/data/licenses/x11-realmode.yml b/src/licensedcode/data/licenses/x11-realmode.yml deleted file mode 100644 index 30ff77165fa..00000000000 --- a/src/licensedcode/data/licenses/x11-realmode.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: x11-realmode -short_name: X11-Style (Realmode) -name: X11-Style (Realmode) -category: Permissive -owner: XFree86 Project, Inc -notes: a composite of x11-keith-packard and other license comments -spdx_license_key: LicenseRef-scancode-x11-realmode -minimum_coverage: 85 -ignorable_emails: - - KendallB@scitechsoft.com - - x86emu@linuxlabs.com diff --git a/src/licensedcode/data/licenses/x11-sg.LICENSE b/src/licensedcode/data/licenses/x11-sg.LICENSE index 430ad367656..fd5da87274c 100644 --- a/src/licensedcode/data/licenses/x11-sg.LICENSE +++ b/src/licensedcode/data/licenses/x11-sg.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-sg +short_name: X11-Style (Silicon Graphics) +name: X11-Style (Silicon Graphics) +category: Permissive +owner: SGI - Silicon Graphics +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-sg +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both the copyright notice and this permission diff --git a/src/licensedcode/data/licenses/x11-sg.yml b/src/licensedcode/data/licenses/x11-sg.yml deleted file mode 100644 index 2ec077fdb1c..00000000000 --- a/src/licensedcode/data/licenses/x11-sg.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: x11-sg -short_name: X11-Style (Silicon Graphics) -name: X11-Style (Silicon Graphics) -category: Permissive -owner: SGI - Silicon Graphics -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: LicenseRef-scancode-x11-sg -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-stanford.LICENSE b/src/licensedcode/data/licenses/x11-stanford.LICENSE index 4725ef64084..ac05551aa6d 100644 --- a/src/licensedcode/data/licenses/x11-stanford.LICENSE +++ b/src/licensedcode/data/licenses/x11-stanford.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-stanford +short_name: X11-Style (Stanford University) +name: X11-Style (Stanford University) +category: Permissive +owner: Stanford University +homepage_url: https://github.com/mininet/openflow/blob/master/COPYING +notes: this is mostly similar to the x11-xconsortium license +spdx_license_key: LicenseRef-scancode-x11-stanford +minimum_coverage: 80 +--- + We are making the specification and associated documentation (Software) available for public use and benefit with the expectation that others will use, modify and enhance the Software and contribute diff --git a/src/licensedcode/data/licenses/x11-stanford.yml b/src/licensedcode/data/licenses/x11-stanford.yml deleted file mode 100644 index 16fe8a143a2..00000000000 --- a/src/licensedcode/data/licenses/x11-stanford.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: x11-stanford -short_name: X11-Style (Stanford University) -name: X11-Style (Stanford University) -category: Permissive -owner: Stanford University -homepage_url: https://github.com/mininet/openflow/blob/master/COPYING -notes: this is mostly similar to the x11-xconsortium license -spdx_license_key: LicenseRef-scancode-x11-stanford -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-tektronix.LICENSE b/src/licensedcode/data/licenses/x11-tektronix.LICENSE index 0b47226d2f0..f7e12072065 100644 --- a/src/licensedcode/data/licenses/x11-tektronix.LICENSE +++ b/src/licensedcode/data/licenses/x11-tektronix.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-tektronix +short_name: X11-Style (Tektronix) +name: X11-Style (Tektronix) +category: Permissive +owner: Tektronix +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-tektronix +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + This file is a component of an X Window System-specific implementation of Xcms based on the TekColor Color Management System. Permission is hereby granted to use, copy, modify, sell, and otherwise distribute this software and its diff --git a/src/licensedcode/data/licenses/x11-tektronix.yml b/src/licensedcode/data/licenses/x11-tektronix.yml deleted file mode 100644 index dba8197dec1..00000000000 --- a/src/licensedcode/data/licenses/x11-tektronix.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: x11-tektronix -short_name: X11-Style (Tektronix) -name: X11-Style (Tektronix) -category: Permissive -owner: Tektronix -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: LicenseRef-scancode-x11-tektronix -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-tiff.LICENSE b/src/licensedcode/data/licenses/x11-tiff.LICENSE index fdb05fda263..5d1f3e66134 100644 --- a/src/licensedcode/data/licenses/x11-tiff.LICENSE +++ b/src/licensedcode/data/licenses/x11-tiff.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11-tiff +short_name: X11-Style (Tiff) +name: X11-Style (Tiff) +category: Permissive +owner: SGI - Silicon Graphics +spdx_license_key: libtiff +text_urls: + - https://fedoraproject.org/wiki/Licensing/libtiff +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in diff --git a/src/licensedcode/data/licenses/x11-tiff.yml b/src/licensedcode/data/licenses/x11-tiff.yml deleted file mode 100644 index ba4739f5601..00000000000 --- a/src/licensedcode/data/licenses/x11-tiff.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: x11-tiff -short_name: X11-Style (Tiff) -name: X11-Style (Tiff) -category: Permissive -owner: SGI - Silicon Graphics -spdx_license_key: libtiff -text_urls: - - https://fedoraproject.org/wiki/Licensing/libtiff -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-x11r5.LICENSE b/src/licensedcode/data/licenses/x11-x11r5.LICENSE index 5bed8612d62..a47ff3dd603 100644 --- a/src/licensedcode/data/licenses/x11-x11r5.LICENSE +++ b/src/licensedcode/data/licenses/x11-x11r5.LICENSE @@ -1,3 +1,16 @@ +--- +key: x11-x11r5 +short_name: X11-R5 +name: X11-R5 +category: Permissive +owner: XFree86 Project, Inc +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-x11-x11r5 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 85 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright diff --git a/src/licensedcode/data/licenses/x11-x11r5.yml b/src/licensedcode/data/licenses/x11-x11r5.yml deleted file mode 100644 index e82189a8fef..00000000000 --- a/src/licensedcode/data/licenses/x11-x11r5.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: x11-x11r5 -short_name: X11-R5 -name: X11-R5 -category: Permissive -owner: XFree86 Project, Inc -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: LicenseRef-scancode-x11-x11r5 -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -minimum_coverage: 85 diff --git a/src/licensedcode/data/licenses/x11-xconsortium-veillard.LICENSE b/src/licensedcode/data/licenses/x11-xconsortium-veillard.LICENSE index 19f6805414d..9c9438faa43 100644 --- a/src/licensedcode/data/licenses/x11-xconsortium-veillard.LICENSE +++ b/src/licensedcode/data/licenses/x11-xconsortium-veillard.LICENSE @@ -1,3 +1,20 @@ +--- +key: x11-xconsortium-veillard +short_name: X11-Style (X Consortium Veillard) +name: X11-Style (X Consortium Veillard) +category: Permissive +owner: Daniel Veillard +notes: the license key has been renamed from the old x11-xconsortium_veillard +spdx_license_key: LicenseRef-scancode-x11-xconsortium-veillard +other_spdx_license_keys: + - LicenseRef-scancode-x11-xconsortium_veillard +standard_notice: | + Except where otherwise noted in the source code (e.g. the files hash.c, + list.c and the trio files, which are covered by a similar licence but + with different Copyright notices) all the files are: + Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is fur- nished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/licenses/x11-xconsortium-veillard.yml b/src/licensedcode/data/licenses/x11-xconsortium-veillard.yml deleted file mode 100644 index 8bb0204f996..00000000000 --- a/src/licensedcode/data/licenses/x11-xconsortium-veillard.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: x11-xconsortium-veillard -short_name: X11-Style (X Consortium Veillard) -name: X11-Style (X Consortium Veillard) -category: Permissive -owner: Daniel Veillard -notes: the license key has been renamed from the old x11-xconsortium_veillard -spdx_license_key: LicenseRef-scancode-x11-xconsortium-veillard -other_spdx_license_keys: - - LicenseRef-scancode-x11-xconsortium_veillard -standard_notice: | - Except where otherwise noted in the source code (e.g. the files hash.c, - list.c and the trio files, which are covered by a similar licence but - with different Copyright notices) all the files are: - Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. diff --git a/src/licensedcode/data/licenses/x11-xconsortium.LICENSE b/src/licensedcode/data/licenses/x11-xconsortium.LICENSE index f3321a08aa6..767bb02f74c 100644 --- a/src/licensedcode/data/licenses/x11-xconsortium.LICENSE +++ b/src/licensedcode/data/licenses/x11-xconsortium.LICENSE @@ -1,3 +1,18 @@ +--- +key: x11-xconsortium +short_name: X11-Style (X Consortium) +name: X11-Style (X Consortium) +category: Permissive +owner: X Consortium +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: X11 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +other_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/licenses/x11-xconsortium.yml b/src/licensedcode/data/licenses/x11-xconsortium.yml deleted file mode 100644 index 4498ba1c01f..00000000000 --- a/src/licensedcode/data/licenses/x11-xconsortium.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: x11-xconsortium -short_name: X11-Style (X Consortium) -name: X11-Style (X Consortium) -category: Permissive -owner: X Consortium -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: X11 -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -other_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/x11-xconsortium_veillard.LICENSE b/src/licensedcode/data/licenses/x11-xconsortium_veillard.LICENSE index 9a3ff29f32a..ba3e5e1d732 100644 --- a/src/licensedcode/data/licenses/x11-xconsortium_veillard.LICENSE +++ b/src/licensedcode/data/licenses/x11-xconsortium_veillard.LICENSE @@ -1,3 +1,17 @@ +--- +key: x11-xconsortium_veillard +is_deprecated: yes +short_name: X11-Style (X Consortium Veillard) - Deprecated +name: X11-Style (X Consortium Veillard) - Deprecated +category: Permissive +owner: Daniel Veillard +standard_notice: | + Except where otherwise noted in the source code (e.g. the files hash.c, + list.c and the trio files, which are covered by a similar licence but + with different Copyright notices) all the files are: + Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/licenses/x11-xconsortium_veillard.yml b/src/licensedcode/data/licenses/x11-xconsortium_veillard.yml deleted file mode 100644 index 6e56621fddf..00000000000 --- a/src/licensedcode/data/licenses/x11-xconsortium_veillard.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: x11-xconsortium_veillard -is_deprecated: yes -short_name: X11-Style (X Consortium Veillard) - Deprecated -name: X11-Style (X Consortium Veillard) - Deprecated -category: Permissive -owner: Daniel Veillard -standard_notice: | - Except where otherwise noted in the source code (e.g. the files hash.c, - list.c and the trio files, which are covered by a similar licence but - with different Copyright notices) all the files are: - Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved. diff --git a/src/licensedcode/data/licenses/x11.LICENSE b/src/licensedcode/data/licenses/x11.LICENSE index 85210e60cfa..21d6e033492 100644 --- a/src/licensedcode/data/licenses/x11.LICENSE +++ b/src/licensedcode/data/licenses/x11.LICENSE @@ -1,3 +1,20 @@ +--- +key: x11 +short_name: X11 License +name: X11 License +category: Permissive +owner: XFree86 Project, Inc +homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html +spdx_license_key: ICU +text_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +other_urls: + - http://source.icu-project.org/repos/icu/icu/trunk/license.html + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 60 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, diff --git a/src/licensedcode/data/licenses/x11.yml b/src/licensedcode/data/licenses/x11.yml deleted file mode 100644 index 11519f3f2fa..00000000000 --- a/src/licensedcode/data/licenses/x11.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: x11 -short_name: X11 License -name: X11 License -category: Permissive -owner: XFree86 Project, Inc -homepage_url: http://www.xfree86.org/3.3.6/COPYRIGHT2.html -spdx_license_key: ICU -text_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html -other_urls: - - http://source.icu-project.org/repos/icu/icu/trunk/license.html - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 - - http://www.xfree86.org/current/LICENSE5.html -minimum_coverage: 60 diff --git a/src/licensedcode/data/licenses/x11r5-authors.LICENSE b/src/licensedcode/data/licenses/x11r5-authors.LICENSE index c6a8ba6a338..3c390bfb379 100644 --- a/src/licensedcode/data/licenses/x11r5-authors.LICENSE +++ b/src/licensedcode/data/licenses/x11r5-authors.LICENSE @@ -1,3 +1,15 @@ +--- +key: x11r5-authors +is_deprecated: yes +short_name: X11-R5 Authors +name: X11-R5 Authors +category: Permissive +owner: XFree86 Project, Inc +other_urls: + - http://pypi.python.org/packages/source/C/Cheetah/Cheetah-2.4.4.tar.gz +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission diff --git a/src/licensedcode/data/licenses/x11r5-authors.yml b/src/licensedcode/data/licenses/x11r5-authors.yml deleted file mode 100644 index 1d758ea90c6..00000000000 --- a/src/licensedcode/data/licenses/x11r5-authors.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: x11r5-authors -is_deprecated: yes -short_name: X11-R5 Authors -name: X11-R5 Authors -category: Permissive -owner: XFree86 Project, Inc -other_urls: - - http://pypi.python.org/packages/source/C/Cheetah/Cheetah-2.4.4.tar.gz -minimum_coverage: 80 \ No newline at end of file diff --git a/src/licensedcode/data/licenses/xceed-community-2021.LICENSE b/src/licensedcode/data/licenses/xceed-community-2021.LICENSE index 1883386b3af..d13b29aaf74 100644 --- a/src/licensedcode/data/licenses/xceed-community-2021.LICENSE +++ b/src/licensedcode/data/licenses/xceed-community-2021.LICENSE @@ -1,3 +1,20 @@ +--- +key: xceed-community-2021 +short_name: Xceed Community License 2021 +name: Xceed Community License 2021 +category: Proprietary Free +owner: Xceed +homepage_url: https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md +spdx_license_key: LicenseRef-scancode-xceed-community-2021 +faq_url: https://github.com/xceedsoftware/wpftoolkit#license-information +other_urls: + - https://docs.microsoft.com/en-us/visualstudio/designers/getting-started-with-wpf?view=vs-2022 +ignorable_copyrights: + - (c) Copyright Xceed Software, Inc. +ignorable_holders: + - Xceed Software, Inc. +--- + XCEED SOFTWARE, INC. COMMUNITY LICENSE AGREEMENT (for non-commercial use) diff --git a/src/licensedcode/data/licenses/xceed-community-2021.yml b/src/licensedcode/data/licenses/xceed-community-2021.yml deleted file mode 100644 index 54b4700bbd5..00000000000 --- a/src/licensedcode/data/licenses/xceed-community-2021.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: xceed-community-2021 -short_name: Xceed Community License 2021 -name: Xceed Community License 2021 -category: Proprietary Free -owner: Xceed -homepage_url: https://github.com/xceedsoftware/wpftoolkit/blob/master/license.md -spdx_license_key: LicenseRef-scancode-xceed-community-2021 -faq_url: https://github.com/xceedsoftware/wpftoolkit#license-information -other_urls: - - https://docs.microsoft.com/en-us/visualstudio/designers/getting-started-with-wpf?view=vs-2022 -ignorable_copyrights: - - (c) Copyright Xceed Software, Inc. -ignorable_holders: - - Xceed Software, Inc. diff --git a/src/licensedcode/data/licenses/xenomai-gpl-exception.LICENSE b/src/licensedcode/data/licenses/xenomai-gpl-exception.LICENSE index 95bb63d63b2..90d6eb88ef8 100644 --- a/src/licensedcode/data/licenses/xenomai-gpl-exception.LICENSE +++ b/src/licensedcode/data/licenses/xenomai-gpl-exception.LICENSE @@ -1,3 +1,14 @@ +--- +key: xenomai-gpl-exception +short_name: Xenomai GPL Exception +name: Xenomai GPL Exception +category: Copyleft Limited +owner: Xenomai +homepage_url: https://source.denx.de/Xenomai/xenomai/blob/master/include/COPYING#L2-22 +is_exception: yes +spdx_license_key: LicenseRef-scancode-xenomai-gpl-exception +--- + As a special exception to the following license, the Xenomai project gives permission for additional uses of the header files contained in this directory. diff --git a/src/licensedcode/data/licenses/xenomai-gpl-exception.yml b/src/licensedcode/data/licenses/xenomai-gpl-exception.yml deleted file mode 100644 index a5f8c78afe6..00000000000 --- a/src/licensedcode/data/licenses/xenomai-gpl-exception.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: xenomai-gpl-exception -short_name: Xenomai GPL Exception -name: Xenomai GPL Exception -category: Copyleft Limited -owner: Xenomai -homepage_url: https://source.denx.de/Xenomai/xenomai/blob/master/include/COPYING#L2-22 -is_exception: yes -spdx_license_key: LicenseRef-scancode-xenomai-gpl-exception diff --git a/src/licensedcode/data/licenses/xfree86-1.0.LICENSE b/src/licensedcode/data/licenses/xfree86-1.0.LICENSE index 539176516dd..8545910a85b 100644 --- a/src/licensedcode/data/licenses/xfree86-1.0.LICENSE +++ b/src/licensedcode/data/licenses/xfree86-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: xfree86-1.0 +short_name: XFree86 License 1.0 +name: XFree86 License 1.0 +category: Permissive +owner: XFree86 Project, Inc +homepage_url: http://www.xfree86.org/current/LICENSE5.html +spdx_license_key: LicenseRef-scancode-xfree86-1.0 +text_urls: + - http://www.xfree86.org/current/LICENSE5.html +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/licenses/xfree86-1.0.yml b/src/licensedcode/data/licenses/xfree86-1.0.yml deleted file mode 100644 index 18892350d98..00000000000 --- a/src/licensedcode/data/licenses/xfree86-1.0.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: xfree86-1.0 -short_name: XFree86 License 1.0 -name: XFree86 License 1.0 -category: Permissive -owner: XFree86 Project, Inc -homepage_url: http://www.xfree86.org/current/LICENSE5.html -spdx_license_key: LicenseRef-scancode-xfree86-1.0 -text_urls: - - http://www.xfree86.org/current/LICENSE5.html -minimum_coverage: 80 diff --git a/src/licensedcode/data/licenses/xfree86-1.1.LICENSE b/src/licensedcode/data/licenses/xfree86-1.1.LICENSE index d1c7c620fcc..398e40185ec 100644 --- a/src/licensedcode/data/licenses/xfree86-1.1.LICENSE +++ b/src/licensedcode/data/licenses/xfree86-1.1.LICENSE @@ -1,3 +1,21 @@ +--- +key: xfree86-1.1 +short_name: XFree86 License 1.1 +name: XFree86 License 1.1 +category: Permissive +owner: XFree86 Project, Inc +homepage_url: http://www.xfree86.org/current/LICENSE4.html +spdx_license_key: XFree86-1.1 +text_urls: + - http://www.xfree86.org/current/LICENSE4.html +faq_url: http://www.xfree86.org/current/LICENSE4.html +minimum_coverage: 70 +ignorable_authors: + - The XFree86 Project, Inc (http://www.xfree86.org/) +ignorable_urls: + - http://www.xfree86.org/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/licenses/xfree86-1.1.yml b/src/licensedcode/data/licenses/xfree86-1.1.yml deleted file mode 100644 index 381652b2a5d..00000000000 --- a/src/licensedcode/data/licenses/xfree86-1.1.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: xfree86-1.1 -short_name: XFree86 License 1.1 -name: XFree86 License 1.1 -category: Permissive -owner: XFree86 Project, Inc -homepage_url: http://www.xfree86.org/current/LICENSE4.html -spdx_license_key: XFree86-1.1 -text_urls: - - http://www.xfree86.org/current/LICENSE4.html -faq_url: http://www.xfree86.org/current/LICENSE4.html -minimum_coverage: 70 -ignorable_authors: - - The XFree86 Project, Inc (http://www.xfree86.org/) -ignorable_urls: - - http://www.xfree86.org/ diff --git a/src/licensedcode/data/licenses/xilinx-2016.LICENSE b/src/licensedcode/data/licenses/xilinx-2016.LICENSE index 9d9b5de3a43..aeb7ad48811 100644 --- a/src/licensedcode/data/licenses/xilinx-2016.LICENSE +++ b/src/licensedcode/data/licenses/xilinx-2016.LICENSE @@ -1,3 +1,12 @@ +--- +key: xilinx-2016 +short_name: Xilinx License 2016 +name: Xilinx License 2016 +category: Free Restricted +owner: Xilinx +spdx_license_key: LicenseRef-scancode-xilinx-2016 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/licenses/xilinx-2016.yml b/src/licensedcode/data/licenses/xilinx-2016.yml deleted file mode 100644 index 287ed6b6a24..00000000000 --- a/src/licensedcode/data/licenses/xilinx-2016.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: xilinx-2016 -short_name: Xilinx License 2016 -name: Xilinx License 2016 -category: Free Restricted -owner: Xilinx -spdx_license_key: LicenseRef-scancode-xilinx-2016 diff --git a/src/licensedcode/data/licenses/xinetd.LICENSE b/src/licensedcode/data/licenses/xinetd.LICENSE index c1f0e3d7b28..25184703e55 100644 --- a/src/licensedcode/data/licenses/xinetd.LICENSE +++ b/src/licensedcode/data/licenses/xinetd.LICENSE @@ -1,3 +1,23 @@ +--- +key: xinetd +short_name: xinetd License +name: xinetd License +category: Permissive +owner: xinetd +homepage_url: https://fedoraproject.org/wiki/Licensing/Xinetd_License +spdx_license_key: xinetd +ignorable_copyrights: + - (c) Copyright 1992 by Panagiotis Tsirigotis + - Copyright 1998-2001 by Rob Braun + - Copyright 2001 by Steve Grubb +ignorable_holders: + - Panagiotis Tsirigotis + - Rob Braun + - Steve Grubb +ignorable_authors: + - Panagiotis Tsirigotis +--- + xinetd License ORIGINAL LICENSE: diff --git a/src/licensedcode/data/licenses/xinetd.yml b/src/licensedcode/data/licenses/xinetd.yml deleted file mode 100644 index 298b41ee582..00000000000 --- a/src/licensedcode/data/licenses/xinetd.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: xinetd -short_name: xinetd License -name: xinetd License -category: Permissive -owner: xinetd -homepage_url: https://fedoraproject.org/wiki/Licensing/Xinetd_License -spdx_license_key: xinetd -ignorable_copyrights: - - (c) Copyright 1992 by Panagiotis Tsirigotis - - Copyright 1998-2001 by Rob Braun - - Copyright 2001 by Steve Grubb -ignorable_holders: - - Panagiotis Tsirigotis - - Rob Braun - - Steve Grubb -ignorable_authors: - - Panagiotis Tsirigotis diff --git a/src/licensedcode/data/licenses/xming.LICENSE b/src/licensedcode/data/licenses/xming.LICENSE index 91232e0a785..83275b0890f 100644 --- a/src/licensedcode/data/licenses/xming.LICENSE +++ b/src/licensedcode/data/licenses/xming.LICENSE @@ -1,3 +1,13 @@ +--- +key: xming +short_name: Xming License +name: Xming License +category: Commercial +owner: Colin Harrison +homepage_url: http://www.straightrunning.com/XmingNotes/terms.php +spdx_license_key: LicenseRef-scancode-xming +--- + Xming Terms and Conditions 1. Component licenses diff --git a/src/licensedcode/data/licenses/xming.yml b/src/licensedcode/data/licenses/xming.yml deleted file mode 100644 index 7133cf5c918..00000000000 --- a/src/licensedcode/data/licenses/xming.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: xming -short_name: Xming License -name: Xming License -category: Commercial -owner: Colin Harrison -homepage_url: http://www.straightrunning.com/XmingNotes/terms.php -spdx_license_key: LicenseRef-scancode-xming diff --git a/src/licensedcode/data/licenses/xmldb-1.0.LICENSE b/src/licensedcode/data/licenses/xmldb-1.0.LICENSE index db04065dc16..e7a0933a769 100644 --- a/src/licensedcode/data/licenses/xmldb-1.0.LICENSE +++ b/src/licensedcode/data/licenses/xmldb-1.0.LICENSE @@ -1,3 +1,28 @@ +--- +key: xmldb-1.0 +short_name: XML:DB Initiative Software License 1.0 +name: XML:DB Initiative Software License 1.0 +category: Permissive +owner: XMLDB +homepage_url: http://xmldb-org.sourceforge.net/index.html +spdx_license_key: LicenseRef-scancode-xmldb-1.0 +text_urls: + - http://xmldb-org.sourceforge.net/legal.html +faq_url: http://xmldb-org.sourceforge.net/faqs.html +other_urls: + - http://www.xmldb.org/ +ignorable_copyrights: + - Copyright (c) 2000-2003 The XML:DB Initiative +ignorable_holders: + - The XML:DB Initiative +ignorable_authors: + - the XML:DB Initiative (http://www.xmldb.org/) +ignorable_urls: + - http://www.xmldb.org/ +ignorable_emails: + - info@xmldb.org +--- + The XML:DB Initiative Software License, Version 1.0 Copyright (c) 2000-2003 The XML:DB Initiative. All rights reserved. diff --git a/src/licensedcode/data/licenses/xmldb-1.0.yml b/src/licensedcode/data/licenses/xmldb-1.0.yml deleted file mode 100644 index 40d648336f6..00000000000 --- a/src/licensedcode/data/licenses/xmldb-1.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: xmldb-1.0 -short_name: XML:DB Initiative Software License 1.0 -name: XML:DB Initiative Software License 1.0 -category: Permissive -owner: XMLDB -homepage_url: http://xmldb-org.sourceforge.net/index.html -spdx_license_key: LicenseRef-scancode-xmldb-1.0 -text_urls: - - http://xmldb-org.sourceforge.net/legal.html -faq_url: http://xmldb-org.sourceforge.net/faqs.html -other_urls: - - http://www.xmldb.org/ -ignorable_copyrights: - - Copyright (c) 2000-2003 The XML:DB Initiative -ignorable_holders: - - The XML:DB Initiative -ignorable_authors: - - the XML:DB Initiative (http://www.xmldb.org/) -ignorable_urls: - - http://www.xmldb.org/ -ignorable_emails: - - info@xmldb.org diff --git a/src/licensedcode/data/licenses/xnet.LICENSE b/src/licensedcode/data/licenses/xnet.LICENSE index 41ec31add6c..2869b9083b9 100644 --- a/src/licensedcode/data/licenses/xnet.LICENSE +++ b/src/licensedcode/data/licenses/xnet.LICENSE @@ -1,3 +1,23 @@ +--- +key: xnet +short_name: Altera License +name: Altera License +category: Permissive +owner: Altera Corporation +homepage_url: http://www.opensource.org/licenses/xnet.php +notes: | + Per SPDX.org, this license is OSI certified. This License has been + voluntarily deprecated by its author. +spdx_license_key: Xnet +text_urls: + - http://www.opensource.org/licenses/xnet.php +osi_url: http://www.opensource.org/licenses/xnet.php +other_urls: + - http://opensource.org/licenses/Xnet + - https://opensource.org/licenses/Xnet +minimum_coverage: 99 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/licenses/xnet.yml b/src/licensedcode/data/licenses/xnet.yml deleted file mode 100644 index faf8774e7b1..00000000000 --- a/src/licensedcode/data/licenses/xnet.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: xnet -short_name: Altera License -name: Altera License -category: Permissive -owner: Altera Corporation -homepage_url: http://www.opensource.org/licenses/xnet.php -notes: | - Per SPDX.org, this license is OSI certified. This License has been - voluntarily deprecated by its author. -spdx_license_key: Xnet -text_urls: - - http://www.opensource.org/licenses/xnet.php -osi_url: http://www.opensource.org/licenses/xnet.php -other_urls: - - http://opensource.org/licenses/Xnet - - https://opensource.org/licenses/Xnet -minimum_coverage: 99 diff --git a/src/licensedcode/data/licenses/xskat.LICENSE b/src/licensedcode/data/licenses/xskat.LICENSE index 34241fb50eb..5df38446d33 100644 --- a/src/licensedcode/data/licenses/xskat.LICENSE +++ b/src/licensedcode/data/licenses/xskat.LICENSE @@ -1,3 +1,25 @@ +--- +key: xskat +short_name: XSkat License +name: XSkat License +category: Permissive +owner: XSkat +homepage_url: https://fedoraproject.org/wiki/Licensing/XSkat_License +notes: | + Per Fedora, this license is Free only when clause 2.b is used. It is always + GPL-incompatible. Packagers using code under this license in Fedora should + note that while the RPM changelog is sufficient to meet one requirement of + clause 2.b (to "clearly state who last changed the program"), the Release + field in the RPM is not enough to meet the other requirement of clause 2.b. + Packagers can meet the other requirement by simply adding a .0 to the end + of the upstream version in the RPM package. You need to do this, and not + simply use the regular NVR to fulfill 2.b, because the license explicitly + specifies the versioning schema x.y.z, which is different from how RPM + displays it (x.y-z). Just add a dummy .0 to the end of the version then + increment the Release field like any other package. +spdx_license_key: XSkat +--- + This program is free software; you can redistribute it freely. Use it at your own risk; there is NO WARRANTY. diff --git a/src/licensedcode/data/licenses/xskat.yml b/src/licensedcode/data/licenses/xskat.yml deleted file mode 100644 index 0407569f411..00000000000 --- a/src/licensedcode/data/licenses/xskat.yml +++ /dev/null @@ -1,19 +0,0 @@ -key: xskat -short_name: XSkat License -name: XSkat License -category: Permissive -owner: XSkat -homepage_url: https://fedoraproject.org/wiki/Licensing/XSkat_License -notes: | - Per Fedora, this license is Free only when clause 2.b is used. It is always - GPL-incompatible. Packagers using code under this license in Fedora should - note that while the RPM changelog is sufficient to meet one requirement of - clause 2.b (to "clearly state who last changed the program"), the Release - field in the RPM is not enough to meet the other requirement of clause 2.b. - Packagers can meet the other requirement by simply adding a .0 to the end - of the upstream version in the RPM package. You need to do this, and not - simply use the regular NVR to fulfill 2.b, because the license explicitly - specifies the versioning schema x.y.z, which is different from how RPM - displays it (x.y-z). Just add a dummy .0 to the end of the version then - increment the Release field like any other package. -spdx_license_key: XSkat diff --git a/src/licensedcode/data/licenses/xxd.LICENSE b/src/licensedcode/data/licenses/xxd.LICENSE index a9846df1664..ccb5d33a1bc 100644 --- a/src/licensedcode/data/licenses/xxd.LICENSE +++ b/src/licensedcode/data/licenses/xxd.LICENSE @@ -1,3 +1,13 @@ +--- +key: xxd +short_name: xxd License +name: xxd License +category: Permissive +owner: Juergen Weigert +homepage_url: https://github.com/unixdj/xxd/blob/master/README +spdx_license_key: LicenseRef-scancode-xxd +--- + Distribute freely and credit me, make money and share with me, lose money and don't ask me. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/xxd.yml b/src/licensedcode/data/licenses/xxd.yml deleted file mode 100644 index 69ea6c26616..00000000000 --- a/src/licensedcode/data/licenses/xxd.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: xxd -short_name: xxd License -name: xxd License -category: Permissive -owner: Juergen Weigert -homepage_url: https://github.com/unixdj/xxd/blob/master/README -spdx_license_key: LicenseRef-scancode-xxd diff --git a/src/licensedcode/data/licenses/yahoo-browserplus-eula.LICENSE b/src/licensedcode/data/licenses/yahoo-browserplus-eula.LICENSE index 3ee288b28e0..34431a10529 100644 --- a/src/licensedcode/data/licenses/yahoo-browserplus-eula.LICENSE +++ b/src/licensedcode/data/licenses/yahoo-browserplus-eula.LICENSE @@ -1,3 +1,19 @@ +--- +key: yahoo-browserplus-eula +short_name: Yahoo BrowserPlus EULA +name: Yahoo BrowserPlus End User License +category: Proprietary Free +owner: Yahoo +homepage_url: http://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html +spdx_license_key: LicenseRef-scancode-yahoo-browserplus-eula +faq_url: https://developer.yahoo.com/browserplus/ +ignorable_urls: + - http://privacy.yahoo.com/privacy/us/security/details.html + - https://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html + - https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html + - https://info.yahoo.com/privacy/us/yahoo/browserplus/ +--- + BrowserPlus End User License Introduction diff --git a/src/licensedcode/data/licenses/yahoo-browserplus-eula.yml b/src/licensedcode/data/licenses/yahoo-browserplus-eula.yml deleted file mode 100644 index 71d91d39713..00000000000 --- a/src/licensedcode/data/licenses/yahoo-browserplus-eula.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: yahoo-browserplus-eula -short_name: Yahoo BrowserPlus EULA -name: Yahoo BrowserPlus End User License -category: Proprietary Free -owner: Yahoo -homepage_url: http://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html -spdx_license_key: LicenseRef-scancode-yahoo-browserplus-eula -faq_url: https://developer.yahoo.com/browserplus/ -ignorable_urls: - - http://privacy.yahoo.com/privacy/us/security/details.html - - https://info.yahoo.com/legal/us/yahoo/browserplus/browserplus-2122.html - - https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html - - https://info.yahoo.com/privacy/us/yahoo/browserplus/ diff --git a/src/licensedcode/data/licenses/yahoo-messenger-eula.LICENSE b/src/licensedcode/data/licenses/yahoo-messenger-eula.LICENSE index f63d8e03d92..889f4c02771 100644 --- a/src/licensedcode/data/licenses/yahoo-messenger-eula.LICENSE +++ b/src/licensedcode/data/licenses/yahoo-messenger-eula.LICENSE @@ -1,3 +1,17 @@ +--- +key: yahoo-messenger-eula +short_name: Yahoo Messenger EULA +name: Yahoo Messenger EULA +category: Proprietary Free +owner: Yahoo +homepage_url: https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html +spdx_license_key: LicenseRef-scancode-yahoo-messenger-eula +ignorable_urls: + - http://privacy.yahoo.com/privacy/us/mesg/index.htm + - https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html + - https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html +--- + Yahoo Messenger Terms Of Service NO 911 OR EMERGENCY SERVICE. You acknowledge and understand that Yahoo does NOT currently allow you to access any 911 or similar emergency services (no traditional 911, E911, or similar access to emergency services). You should always have an alternative means of accessing 911 or similar emergency services. Please inform others who use your Yahoo Messenger and devices used to access Yahoo Messenger that they must access these numbers through a traditional landline or mobile phone. Yahoo Messenger is not intended to replace your primary phone service, such as traditional landline or mobile phone. diff --git a/src/licensedcode/data/licenses/yahoo-messenger-eula.yml b/src/licensedcode/data/licenses/yahoo-messenger-eula.yml deleted file mode 100644 index eadd8242794..00000000000 --- a/src/licensedcode/data/licenses/yahoo-messenger-eula.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: yahoo-messenger-eula -short_name: Yahoo Messenger EULA -name: Yahoo Messenger EULA -category: Proprietary Free -owner: Yahoo -homepage_url: https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html -spdx_license_key: LicenseRef-scancode-yahoo-messenger-eula -ignorable_urls: - - http://privacy.yahoo.com/privacy/us/mesg/index.htm - - https://info.yahoo.com/legal/us/yahoo/messenger/messengertos/messengertos-279.html - - https://info.yahoo.com/legal/us/yahoo/utos/utos-173.html diff --git a/src/licensedcode/data/licenses/yale-cas.LICENSE b/src/licensedcode/data/licenses/yale-cas.LICENSE index 575fce5925b..44d9932e3fa 100644 --- a/src/licensedcode/data/licenses/yale-cas.LICENSE +++ b/src/licensedcode/data/licenses/yale-cas.LICENSE @@ -1,3 +1,15 @@ +--- +key: yale-cas +short_name: Yale CAS License +name: Yale CAS License +category: Permissive +owner: Yale University +homepage_url: https://github.com/apereo/cas/blob/6e29bc0001e3c304375efc5f8cbb04918d8f8691/docs/cas-server-documentation/protocol/CAS-Protocol-V2-Specification.md#appendix-d-cas-license +spdx_license_key: LicenseRef-scancode-yale-cas +ignorable_authors: + - Yale University +--- + 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 EXPRESSLY diff --git a/src/licensedcode/data/licenses/yale-cas.yml b/src/licensedcode/data/licenses/yale-cas.yml deleted file mode 100644 index bf358e15f08..00000000000 --- a/src/licensedcode/data/licenses/yale-cas.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: yale-cas -short_name: Yale CAS License -name: Yale CAS License -category: Permissive -owner: Yale University -homepage_url: https://github.com/apereo/cas/blob/6e29bc0001e3c304375efc5f8cbb04918d8f8691/docs/cas-server-documentation/protocol/CAS-Protocol-V2-Specification.md#appendix-d-cas-license -spdx_license_key: LicenseRef-scancode-yale-cas -ignorable_authors: - - Yale University diff --git a/src/licensedcode/data/licenses/yensdesign.LICENSE b/src/licensedcode/data/licenses/yensdesign.LICENSE index 3d4f93c2d98..aeef4b80337 100644 --- a/src/licensedcode/data/licenses/yensdesign.LICENSE +++ b/src/licensedcode/data/licenses/yensdesign.LICENSE @@ -1 +1,11 @@ -license: Feel free to use it, but keep this credits please! +--- +key: yensdesign +short_name: Yensdesign License +name: Yensdesign License +category: Permissive +owner: yensdesign +homepage_url: http://www.yensdesign.com/ +spdx_license_key: LicenseRef-scancode-yensdesign +--- + +license: Feel free to use it, but keep this credits please! \ No newline at end of file diff --git a/src/licensedcode/data/licenses/yensdesign.yml b/src/licensedcode/data/licenses/yensdesign.yml deleted file mode 100644 index e97cc906ff7..00000000000 --- a/src/licensedcode/data/licenses/yensdesign.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: yensdesign -short_name: Yensdesign License -name: Yensdesign License -category: Permissive -owner: yensdesign -homepage_url: http://www.yensdesign.com/ -spdx_license_key: LicenseRef-scancode-yensdesign diff --git a/src/licensedcode/data/licenses/yolo-1.0.LICENSE b/src/licensedcode/data/licenses/yolo-1.0.LICENSE index 4cb9bccae1a..fabd65b38bb 100644 --- a/src/licensedcode/data/licenses/yolo-1.0.LICENSE +++ b/src/licensedcode/data/licenses/yolo-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: yolo-1.0 +short_name: YOLO License v1 +name: YOLO License v1 +category: Proprietary Free +owner: Joseph Redmon +notes: From https://github.com/ErikMcClure/bad-licenses +spdx_license_key: LicenseRef-scancode-yolo-1.0 +text_urls: + - https://github.com/shizukachan/darknet-nnpack/blob/master/LICENSE.v1 +--- + YOLO LICENSE Version 1, July 10 2015 @@ -9,4 +21,4 @@ THE FOLLOWING CONDITIONS: 1. #yolo 2. #swag -3. #blazeit +3. #blazeit \ No newline at end of file diff --git a/src/licensedcode/data/licenses/yolo-1.0.yml b/src/licensedcode/data/licenses/yolo-1.0.yml deleted file mode 100644 index c64d297f6ac..00000000000 --- a/src/licensedcode/data/licenses/yolo-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: yolo-1.0 -short_name: YOLO License v1 -name: YOLO License v1 -category: Proprietary Free -owner: Joseph Redmon -notes: From https://github.com/ErikMcClure/bad-licenses -spdx_license_key: LicenseRef-scancode-yolo-1.0 -text_urls: - - https://github.com/shizukachan/darknet-nnpack/blob/master/LICENSE.v1 diff --git a/src/licensedcode/data/licenses/yolo-2.0.LICENSE b/src/licensedcode/data/licenses/yolo-2.0.LICENSE index a97b9602211..390a82a5ae3 100644 --- a/src/licensedcode/data/licenses/yolo-2.0.LICENSE +++ b/src/licensedcode/data/licenses/yolo-2.0.LICENSE @@ -1,3 +1,13 @@ +--- +key: yolo-2.0 +short_name: YOLO License v2 +name: YOLO License v2 +category: Proprietary Free +owner: Joseph Redmon +homepage_url: https://github.com/pjreddie/darknet/blob/master/LICENSE +spdx_license_key: LicenseRef-scancode-yolo-2.0 +--- + YOLO LICENSE Version 2, July 29 2016 diff --git a/src/licensedcode/data/licenses/yolo-2.0.yml b/src/licensedcode/data/licenses/yolo-2.0.yml deleted file mode 100644 index de6192ecd6b..00000000000 --- a/src/licensedcode/data/licenses/yolo-2.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: yolo-2.0 -short_name: YOLO License v2 -name: YOLO License v2 -category: Proprietary Free -owner: Joseph Redmon -homepage_url: https://github.com/pjreddie/darknet/blob/master/LICENSE -spdx_license_key: LicenseRef-scancode-yolo-2.0 diff --git a/src/licensedcode/data/licenses/ypl-1.0.LICENSE b/src/licensedcode/data/licenses/ypl-1.0.LICENSE index ec85bef50a1..f5b6fe8c167 100644 --- a/src/licensedcode/data/licenses/ypl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/ypl-1.0.LICENSE @@ -1,3 +1,15 @@ +--- +key: ypl-1.0 +short_name: YPL 1.0 +name: Yahoo! Public License v1.0 +category: Copyleft Limited +owner: Yahoo +homepage_url: http://www.zimbra.com/license/yahoo_public_license_1.0.html +spdx_license_key: YPL-1.0 +text_urls: + - http://www.zimbra.com/license/yahoo_public_license_1.0.html +--- + Yahoo! Public License, Version 1.0 (YPL) This Yahoo! Public License (this "Agreement") is a legal agreement that diff --git a/src/licensedcode/data/licenses/ypl-1.0.yml b/src/licensedcode/data/licenses/ypl-1.0.yml deleted file mode 100644 index 0ec4e1f1197..00000000000 --- a/src/licensedcode/data/licenses/ypl-1.0.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: ypl-1.0 -short_name: YPL 1.0 -name: Yahoo! Public License v1.0 -category: Copyleft Limited -owner: Yahoo -homepage_url: http://www.zimbra.com/license/yahoo_public_license_1.0.html -spdx_license_key: YPL-1.0 -text_urls: - - http://www.zimbra.com/license/yahoo_public_license_1.0.html diff --git a/src/licensedcode/data/licenses/ypl-1.1.LICENSE b/src/licensedcode/data/licenses/ypl-1.1.LICENSE index b3da008e7f1..417876e8526 100644 --- a/src/licensedcode/data/licenses/ypl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/ypl-1.1.LICENSE @@ -1,3 +1,17 @@ +--- +key: ypl-1.1 +short_name: YPL 1.1 +name: Yahoo! Public License v1.1 +category: Copyleft +owner: Yahoo +homepage_url: http://www.zimbra.com/license/yahoo_public_license_1.1.html +spdx_license_key: YPL-1.1 +text_urls: + - http://www.zimbra.com/license/yahoo_public_license_1.1.html +other_urls: + - http://www.gnu.org/licenses/license-list.html#Yahoo +--- + Yahoo! Public License, Version 1.1 (YPL) This Yahoo! Public License (this "Agreement") is a legal agreement that diff --git a/src/licensedcode/data/licenses/ypl-1.1.yml b/src/licensedcode/data/licenses/ypl-1.1.yml deleted file mode 100644 index 784537806fb..00000000000 --- a/src/licensedcode/data/licenses/ypl-1.1.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: ypl-1.1 -short_name: YPL 1.1 -name: Yahoo! Public License v1.1 -category: Copyleft -owner: Yahoo -homepage_url: http://www.zimbra.com/license/yahoo_public_license_1.1.html -spdx_license_key: YPL-1.1 -text_urls: - - http://www.zimbra.com/license/yahoo_public_license_1.1.html -other_urls: - - http://www.gnu.org/licenses/license-list.html#Yahoo diff --git a/src/licensedcode/data/licenses/zapatec-calendar.LICENSE b/src/licensedcode/data/licenses/zapatec-calendar.LICENSE index 70d970e84cd..31b4d7c6dfb 100644 --- a/src/licensedcode/data/licenses/zapatec-calendar.LICENSE +++ b/src/licensedcode/data/licenses/zapatec-calendar.LICENSE @@ -1,3 +1,21 @@ +--- +key: zapatec-calendar +short_name: Zapatec Calendar License +name: Zapatec DHTML Javascript Calendar License Agreement +category: Commercial +owner: Zapatec +spdx_license_key: LicenseRef-scancode-zapatec-calendar +text_urls: + - http://www.kean.edu/~cpd/calendar/zapatec/zpcal/doc/license.html +minimum_coverage: 90 +ignorable_copyrights: + - (c) 2004-2006 Zapatec, Inc. +ignorable_holders: + - Zapatec, Inc. +ignorable_urls: + - http://www.zapatec.com/website/main/products/prod1/ +--- + Zapatec DHTML/Javascript Calendar License Agreement CAREFULLY READ THE FOLLOWING LICENSE AGREEMENT. YOU ACCEPT AND AGREE TO BE BOUND BY THIS LICENSE AGREEMENT BY DOWNLOADING, INSTALLING, USING, OR DISTRIBUTING THE SOFTWARE. IF YOU DO NOT AGREE TO THIS LICENSE, DO NOT CLICK ON THE DOWNLOAD LINK AND THE SOFTWARE WILL NOT BE DOWNLOADED. diff --git a/src/licensedcode/data/licenses/zapatec-calendar.yml b/src/licensedcode/data/licenses/zapatec-calendar.yml deleted file mode 100644 index 67e3dd610fe..00000000000 --- a/src/licensedcode/data/licenses/zapatec-calendar.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: zapatec-calendar -short_name: Zapatec Calendar License -name: Zapatec DHTML Javascript Calendar License Agreement -category: Commercial -owner: Zapatec -spdx_license_key: LicenseRef-scancode-zapatec-calendar -text_urls: - - http://www.kean.edu/~cpd/calendar/zapatec/zpcal/doc/license.html -minimum_coverage: 90 -ignorable_copyrights: - - (c) 2004-2006 Zapatec, Inc. -ignorable_holders: - - Zapatec, Inc. -ignorable_urls: - - http://www.zapatec.com/website/main/products/prod1/ diff --git a/src/licensedcode/data/licenses/zed.LICENSE b/src/licensedcode/data/licenses/zed.LICENSE index abd73465d4b..7239a557011 100644 --- a/src/licensedcode/data/licenses/zed.LICENSE +++ b/src/licensedcode/data/licenses/zed.LICENSE @@ -1,3 +1,15 @@ +--- +key: zed +short_name: Zed License +name: Zed License +category: Permissive +owner: Jim Davies +homepage_url: https://fedoraproject.org/wiki/Licensing/Zed +spdx_license_key: Zed +ignorable_emails: + - Jim.Davies@comlab.ox.ac.uk +--- + You may copy and distribute this file freely. Any queries and complaints should be forwarded to Jim.Davies@comlab.ox.ac.uk. If you make any changes to this file, please do not distribute the results under the name `zed-csp.sty'. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/zed.yml b/src/licensedcode/data/licenses/zed.yml deleted file mode 100644 index 518d185118c..00000000000 --- a/src/licensedcode/data/licenses/zed.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: zed -short_name: Zed License -name: Zed License -category: Permissive -owner: Jim Davies -homepage_url: https://fedoraproject.org/wiki/Licensing/Zed -spdx_license_key: Zed -ignorable_emails: - - Jim.Davies@comlab.ox.ac.uk diff --git a/src/licensedcode/data/licenses/zend-2.0.LICENSE b/src/licensedcode/data/licenses/zend-2.0.LICENSE index fa7b58f34fb..22f6bf6475e 100644 --- a/src/licensedcode/data/licenses/zend-2.0.LICENSE +++ b/src/licensedcode/data/licenses/zend-2.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: zend-2.0 +short_name: Zend Engine License 2.0 +name: Zend Engine License 2.0 +category: Permissive +owner: Zend Technologies Ltd. +homepage_url: https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt +spdx_license_key: Zend-2.0 +text_urls: + - https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt +ignorable_copyrights: + - Copyright (c) 1999-2002 Zend Technologies Ltd. +ignorable_holders: + - Zend Technologies Ltd. +ignorable_urls: + - http://www.zend.com/ +ignorable_emails: + - license@zend.com +--- + -------------------------------------------------------------------- The Zend Engine License, version 2.00 Copyright (c) 1999-2002 Zend Technologies Ltd. All rights reserved. diff --git a/src/licensedcode/data/licenses/zend-2.0.yml b/src/licensedcode/data/licenses/zend-2.0.yml deleted file mode 100644 index 23fa8e330b8..00000000000 --- a/src/licensedcode/data/licenses/zend-2.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: zend-2.0 -short_name: Zend Engine License 2.0 -name: Zend Engine License 2.0 -category: Permissive -owner: Zend Technologies Ltd. -homepage_url: https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt -spdx_license_key: Zend-2.0 -text_urls: - - https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt -ignorable_copyrights: - - Copyright (c) 1999-2002 Zend Technologies Ltd. -ignorable_holders: - - Zend Technologies Ltd. -ignorable_urls: - - http://www.zend.com/ -ignorable_emails: - - license@zend.com diff --git a/src/licensedcode/data/licenses/zeromq-exception-lgpl-3.0.LICENSE b/src/licensedcode/data/licenses/zeromq-exception-lgpl-3.0.LICENSE index f8cab7cc76e..408c5afd42b 100644 --- a/src/licensedcode/data/licenses/zeromq-exception-lgpl-3.0.LICENSE +++ b/src/licensedcode/data/licenses/zeromq-exception-lgpl-3.0.LICENSE @@ -1,3 +1,39 @@ +--- +key: zeromq-exception-lgpl-3.0 +short_name: ZeroMQ exception to LGPL 3.0 +name: ZeroMQ exception to LGPL 3.0 +category: Copyleft Limited +owner: ZeroMQ +homepage_url: https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER +is_exception: yes +spdx_license_key: LicenseRef-scancode-zeromq-exception-lgpl-3.0 +other_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +standard_notice: | + This library is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by the Free + Software Foundation; either version 3 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 library; if not, write to the Free Software Foundation, Inc., 51 + Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS + As a special exception, copyright holders give you permission to link this + library with independent modules to produce an executable, regardless of + the license terms of these independent modules, and to copy and distribute + the resulting executable under terms of your choice, provided that you also + meet, for each linked independent module, the terms and conditions of + the license of that module. An independent module is a module which is not + derived from or based on this library. If you modify this library, you must + extend this exception to your version of the library. +--- + SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS As a special exception, copyright holders give you permission to link this diff --git a/src/licensedcode/data/licenses/zeromq-exception-lgpl-3.0.yml b/src/licensedcode/data/licenses/zeromq-exception-lgpl-3.0.yml deleted file mode 100644 index cc7e3e6e0d7..00000000000 --- a/src/licensedcode/data/licenses/zeromq-exception-lgpl-3.0.yml +++ /dev/null @@ -1,33 +0,0 @@ -key: zeromq-exception-lgpl-3.0 -short_name: ZeroMQ exception to LGPL 3.0 -name: ZeroMQ exception to LGPL 3.0 -category: Copyleft Limited -owner: ZeroMQ -homepage_url: https://github.com/zeromq/zeromq3-x/blob/master/COPYING.LESSER -is_exception: yes -spdx_license_key: LicenseRef-scancode-zeromq-exception-lgpl-3.0 -other_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt -standard_notice: | - This library is free software; you can redistribute it and/or modify it under - the terms of the GNU Lesser General Public License as published by the Free - Software Foundation; either version 3 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 library; if not, write to the Free Software Foundation, Inc., 51 - Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS - As a special exception, copyright holders give you permission to link this - library with independent modules to produce an executable, regardless of - the license terms of these independent modules, and to copy and distribute - the resulting executable under terms of your choice, provided that you also - meet, for each linked independent module, the terms and conditions of - the license of that module. An independent module is a module which is not - derived from or based on this library. If you modify this library, you must - extend this exception to your version of the library. diff --git a/src/licensedcode/data/licenses/zeusbench.LICENSE b/src/licensedcode/data/licenses/zeusbench.LICENSE index 447c14b7db0..5ab565d2de5 100644 --- a/src/licensedcode/data/licenses/zeusbench.LICENSE +++ b/src/licensedcode/data/licenses/zeusbench.LICENSE @@ -1,3 +1,12 @@ +--- +key: zeusbench +short_name: ZeusBench notice +name: ZeusBench notice +category: Permissive +owner: Unspecified +spdx_license_key: LicenseRef-scancode-zeusbench +--- + This program may be used and copied freely providing this copyright notice is not removed. @@ -10,4 +19,4 @@ procurement of substitute good or services; loss of use, data, or profits; or business interruption) however caused and on 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. +possibility of such damage. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/zeusbench.yml b/src/licensedcode/data/licenses/zeusbench.yml deleted file mode 100644 index 2dce5dac200..00000000000 --- a/src/licensedcode/data/licenses/zeusbench.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: zeusbench -short_name: ZeusBench notice -name: ZeusBench notice -category: Permissive -owner: Unspecified -spdx_license_key: LicenseRef-scancode-zeusbench diff --git a/src/licensedcode/data/licenses/zhorn-stickies.LICENSE b/src/licensedcode/data/licenses/zhorn-stickies.LICENSE index 4149a4dd061..b44c0838d28 100644 --- a/src/licensedcode/data/licenses/zhorn-stickies.LICENSE +++ b/src/licensedcode/data/licenses/zhorn-stickies.LICENSE @@ -1,3 +1,13 @@ +--- +key: zhorn-stickies +short_name: Zhorn Stickies License +name: Zhorn Stickies License +category: Proprietary Free +owner: Zhorn Software +homepage_url: http://www.zhornsoftware.co.uk/stickies/download.html +spdx_license_key: LicenseRef-scancode-zhorn-stickies +--- + Copyright, licence and disclaimer Stickies is freeware. You may use this software on any number of computers for as long as you like, and you don't have to pay a penny. There are no crippled features for registered users only, no time delays and no stupid nag screens. diff --git a/src/licensedcode/data/licenses/zhorn-stickies.yml b/src/licensedcode/data/licenses/zhorn-stickies.yml deleted file mode 100644 index 7d8e9907f12..00000000000 --- a/src/licensedcode/data/licenses/zhorn-stickies.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: zhorn-stickies -short_name: Zhorn Stickies License -name: Zhorn Stickies License -category: Proprietary Free -owner: Zhorn Software -homepage_url: http://www.zhornsoftware.co.uk/stickies/download.html -spdx_license_key: LicenseRef-scancode-zhorn-stickies diff --git a/src/licensedcode/data/licenses/zimbra-1.3.LICENSE b/src/licensedcode/data/licenses/zimbra-1.3.LICENSE index 90336600ad7..adfe1724bdc 100644 --- a/src/licensedcode/data/licenses/zimbra-1.3.LICENSE +++ b/src/licensedcode/data/licenses/zimbra-1.3.LICENSE @@ -1,3 +1,17 @@ +--- +key: zimbra-1.3 +short_name: Zimbra PL 1.3 +name: Zimbra Public License v1.3 +category: Copyleft Limited +owner: Zimbra +homepage_url: http://www.zimbra.com/license/zimbra-public-license-1-3.html +spdx_license_key: Zimbra-1.3 +text_urls: + - http://www.zimbra.com/license/zimbra-public-license-1-3.html +other_urls: + - http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html +--- + Zimbra Public License, Version 1.3 (ZPL) This Zimbra Public License (this "Agreement") is a legal agreement that diff --git a/src/licensedcode/data/licenses/zimbra-1.3.yml b/src/licensedcode/data/licenses/zimbra-1.3.yml deleted file mode 100644 index 8fd79b08670..00000000000 --- a/src/licensedcode/data/licenses/zimbra-1.3.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: zimbra-1.3 -short_name: Zimbra PL 1.3 -name: Zimbra Public License v1.3 -category: Copyleft Limited -owner: Zimbra -homepage_url: http://www.zimbra.com/license/zimbra-public-license-1-3.html -spdx_license_key: Zimbra-1.3 -text_urls: - - http://www.zimbra.com/license/zimbra-public-license-1-3.html -other_urls: - - http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html diff --git a/src/licensedcode/data/licenses/zimbra-1.4.LICENSE b/src/licensedcode/data/licenses/zimbra-1.4.LICENSE index f59ed23cbb3..4c0171083dd 100644 --- a/src/licensedcode/data/licenses/zimbra-1.4.LICENSE +++ b/src/licensedcode/data/licenses/zimbra-1.4.LICENSE @@ -1,3 +1,13 @@ +--- +key: zimbra-1.4 +short_name: Zimbra PL 1.4 +name: Zimbra Public License v1.4 +category: Copyleft Limited +owner: Zimbra +homepage_url: http://www.zimbra.com/legal/zimbra-public-license-1-4 +spdx_license_key: Zimbra-1.4 +--- + Zimbra Public License, Version 1.4 (ZPL) This Zimbra Public License (this "Agreement") is a legal agreement that describes the terms under which Zimbra, Inc., a Texas corporation ("Zimbra") will provide software to you via download or otherwise ("Software"). By using the Software, you, an individual or an entity ("You") agree to the terms of this Agreement. diff --git a/src/licensedcode/data/licenses/zimbra-1.4.yml b/src/licensedcode/data/licenses/zimbra-1.4.yml deleted file mode 100644 index 39d989bb414..00000000000 --- a/src/licensedcode/data/licenses/zimbra-1.4.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: zimbra-1.4 -short_name: Zimbra PL 1.4 -name: Zimbra Public License v1.4 -category: Copyleft Limited -owner: Zimbra -homepage_url: http://www.zimbra.com/legal/zimbra-public-license-1-4 -spdx_license_key: Zimbra-1.4 diff --git a/src/licensedcode/data/licenses/zipeg.LICENSE b/src/licensedcode/data/licenses/zipeg.LICENSE index f351f540ced..6a3941a3f63 100644 --- a/src/licensedcode/data/licenses/zipeg.LICENSE +++ b/src/licensedcode/data/licenses/zipeg.LICENSE @@ -1,3 +1,15 @@ +--- +key: zipeg +short_name: Zipeg License +name: Zipeg License +category: Proprietary Free +owner: Leo Kuznetsov +homepage_url: http://www.zipeg.com/about +spdx_license_key: LicenseRef-scancode-zipeg +ignorable_urls: + - http://www.zipeg.com/ +--- + Zipeg License Redistribution and use in any forms, without modification, is permitted provided @@ -20,4 +32,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/zipeg.yml b/src/licensedcode/data/licenses/zipeg.yml deleted file mode 100644 index 991fdd930b8..00000000000 --- a/src/licensedcode/data/licenses/zipeg.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: zipeg -short_name: Zipeg License -name: Zipeg License -category: Proprietary Free -owner: Leo Kuznetsov -homepage_url: http://www.zipeg.com/about -spdx_license_key: LicenseRef-scancode-zipeg -ignorable_urls: - - http://www.zipeg.com/ diff --git a/src/licensedcode/data/licenses/ziplist5-geocode-duplication-addendum.LICENSE b/src/licensedcode/data/licenses/ziplist5-geocode-duplication-addendum.LICENSE index 62515c7b390..f516f1e9b95 100644 --- a/src/licensedcode/data/licenses/ziplist5-geocode-duplication-addendum.LICENSE +++ b/src/licensedcode/data/licenses/ziplist5-geocode-duplication-addendum.LICENSE @@ -1,3 +1,18 @@ +--- +key: ziplist5-geocode-duplication-addendum +short_name: ZIPList5 Geocode Duplication Addendum +name: ZIPList5 Geocode Duplication License Addendum +category: Commercial +owner: CD Light LLC +homepage_url: https://web.archive.org/web/20160908211546/http://zipinfo.com/products/z5LL/z5llld.htm +spdx_license_key: LicenseRef-scancode-ziplist5-geocode-dup-addendum +other_spdx_license_keys: + - LicenseRef-scancode-ziplist5-geocode-duplication-addendum +faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm +ignorable_emails: + - support@zipinfo.com +--- + ZIPList5 Geocode Duplication License Addendum diff --git a/src/licensedcode/data/licenses/ziplist5-geocode-duplication-addendum.yml b/src/licensedcode/data/licenses/ziplist5-geocode-duplication-addendum.yml deleted file mode 100644 index 72e94f4cc2e..00000000000 --- a/src/licensedcode/data/licenses/ziplist5-geocode-duplication-addendum.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ziplist5-geocode-duplication-addendum -short_name: ZIPList5 Geocode Duplication Addendum -name: ZIPList5 Geocode Duplication License Addendum -category: Commercial -owner: CD Light LLC -homepage_url: https://web.archive.org/web/20160908211546/http://zipinfo.com/products/z5LL/z5llld.htm -spdx_license_key: LicenseRef-scancode-ziplist5-geocode-dup-addendum -other_spdx_license_keys: - - LicenseRef-scancode-ziplist5-geocode-duplication-addendum -faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm -ignorable_emails: - - support@zipinfo.com diff --git a/src/licensedcode/data/licenses/ziplist5-geocode-end-user-enterprise.LICENSE b/src/licensedcode/data/licenses/ziplist5-geocode-end-user-enterprise.LICENSE index 782dea609c7..b76c1150e1e 100644 --- a/src/licensedcode/data/licenses/ziplist5-geocode-end-user-enterprise.LICENSE +++ b/src/licensedcode/data/licenses/ziplist5-geocode-end-user-enterprise.LICENSE @@ -1,3 +1,18 @@ +--- +key: ziplist5-geocode-end-user-enterprise +short_name: ZIPList5 Geocode End-User Enterprise License +name: ZIPList5 Geocode End-User Enterprise License Agreement +category: Commercial +owner: CD Light LLC +homepage_url: https://web.archive.org/web/20160908185536/http://zipinfo.com/products/z5LL/z5llle.htm +spdx_license_key: LicenseRef-scancode-ziplist5-geocode-enterprise +other_spdx_license_keys: + - LicenseRef-scancode-ziplist5-geocode-end-user-enterprise +faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm +ignorable_emails: + - support@zipinfo.com +--- + ZIPList5 Geocode End-User Enterprise License Agreement LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/ziplist5-geocode-end-user-enterprise.yml b/src/licensedcode/data/licenses/ziplist5-geocode-end-user-enterprise.yml deleted file mode 100644 index 721277bdf58..00000000000 --- a/src/licensedcode/data/licenses/ziplist5-geocode-end-user-enterprise.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ziplist5-geocode-end-user-enterprise -short_name: ZIPList5 Geocode End-User Enterprise License -name: ZIPList5 Geocode End-User Enterprise License Agreement -category: Commercial -owner: CD Light LLC -homepage_url: https://web.archive.org/web/20160908185536/http://zipinfo.com/products/z5LL/z5llle.htm -spdx_license_key: LicenseRef-scancode-ziplist5-geocode-enterprise -other_spdx_license_keys: - - LicenseRef-scancode-ziplist5-geocode-end-user-enterprise -faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm -ignorable_emails: - - support@zipinfo.com diff --git a/src/licensedcode/data/licenses/ziplist5-geocode-end-user-workstation.LICENSE b/src/licensedcode/data/licenses/ziplist5-geocode-end-user-workstation.LICENSE index fb7d0f3aa11..59ea4b5fc5c 100644 --- a/src/licensedcode/data/licenses/ziplist5-geocode-end-user-workstation.LICENSE +++ b/src/licensedcode/data/licenses/ziplist5-geocode-end-user-workstation.LICENSE @@ -1,3 +1,18 @@ +--- +key: ziplist5-geocode-end-user-workstation +short_name: ZIPList5 Geocode End-User Workstation License +name: ZIPList5 Geocode End-User Workstation (Single-User) License Agreement +category: Commercial +owner: CD Light LLC +homepage_url: https://web.archive.org/web/20160904120244/http://zipinfo.com/products/z5LL/z5lllw.htm +spdx_license_key: LicenseRef-scancode-ziplist5-geocode-workstation +other_spdx_license_keys: + - LicenseRef-scancode-ziplist5-geocode-end-user-workstation +faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm +ignorable_emails: + - support@zipinfo.com +--- + ZIPList5 Geocode End-User Workstation (Single-User) License Agreement LICENSE AGREEMENT diff --git a/src/licensedcode/data/licenses/ziplist5-geocode-end-user-workstation.yml b/src/licensedcode/data/licenses/ziplist5-geocode-end-user-workstation.yml deleted file mode 100644 index 5ecacc50497..00000000000 --- a/src/licensedcode/data/licenses/ziplist5-geocode-end-user-workstation.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: ziplist5-geocode-end-user-workstation -short_name: ZIPList5 Geocode End-User Workstation License -name: ZIPList5 Geocode End-User Workstation (Single-User) License Agreement -category: Commercial -owner: CD Light LLC -homepage_url: https://web.archive.org/web/20160904120244/http://zipinfo.com/products/z5LL/z5lllw.htm -spdx_license_key: LicenseRef-scancode-ziplist5-geocode-workstation -other_spdx_license_keys: - - LicenseRef-scancode-ziplist5-geocode-end-user-workstation -faq_url: https://web.archive.org/web/20160904120249/http://zipinfo.com/products/z5LL/z5lllo.htm -ignorable_emails: - - support@zipinfo.com diff --git a/src/licensedcode/data/licenses/zlib-acknowledgement.LICENSE b/src/licensedcode/data/licenses/zlib-acknowledgement.LICENSE index cb97523ecd7..698f9042a98 100644 --- a/src/licensedcode/data/licenses/zlib-acknowledgement.LICENSE +++ b/src/licensedcode/data/licenses/zlib-acknowledgement.LICENSE @@ -1,3 +1,32 @@ +--- +key: zlib-acknowledgement +short_name: ZLIB License with Acknowledgment +name: ZLIB License with Acknowledgment +category: Permissive +owner: Charlie Poole +homepage_url: https://fedoraproject.org/wiki/Licensing:ZlibWithAcknowledgement?rd=Licensing/ZlibWithAcknowledgement +notes: | + Per Fedora, this license is the same as zlib, except that it requires that + an acknowledgement be made in the product documentation. For Fedora, this + is our Release notes, so if you have any packages which use this license, + you MUST be sure to have the appropriate acknowledgement in the release + notes. +spdx_license_key: zlib-acknowledgement +other_spdx_license_keys: + - Nunit +other_urls: + - https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2000-2002 Philip A. Craig + - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov + - Portions Copyright (c) 2002-2007 Charlie Poole +ignorable_holders: + - Charlie Poole + - James W. Newkirk, Michael C. Two, Alexei A. Vorontsov + - Philip A. Craig +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/licenses/zlib-acknowledgement.yml b/src/licensedcode/data/licenses/zlib-acknowledgement.yml deleted file mode 100644 index 6baee654eb8..00000000000 --- a/src/licensedcode/data/licenses/zlib-acknowledgement.yml +++ /dev/null @@ -1,26 +0,0 @@ -key: zlib-acknowledgement -short_name: ZLIB License with Acknowledgment -name: ZLIB License with Acknowledgment -category: Permissive -owner: Charlie Poole -homepage_url: https://fedoraproject.org/wiki/Licensing:ZlibWithAcknowledgement?rd=Licensing/ZlibWithAcknowledgement -notes: | - Per Fedora, this license is the same as zlib, except that it requires that - an acknowledgement be made in the product documentation. For Fedora, this - is our Release notes, so if you have any packages which use this license, - you MUST be sure to have the appropriate acknowledgement in the release - notes. -spdx_license_key: zlib-acknowledgement -other_spdx_license_keys: - - Nunit -other_urls: - - https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement -minimum_coverage: 50 -ignorable_copyrights: - - Copyright (c) 2000-2002 Philip A. Craig - - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov - - Portions Copyright (c) 2002-2007 Charlie Poole -ignorable_holders: - - Charlie Poole - - James W. Newkirk, Michael C. Two, Alexei A. Vorontsov - - Philip A. Craig diff --git a/src/licensedcode/data/licenses/zlib.LICENSE b/src/licensedcode/data/licenses/zlib.LICENSE index 14d2ccb8540..38a9f9ee639 100644 --- a/src/licensedcode/data/licenses/zlib.LICENSE +++ b/src/licensedcode/data/licenses/zlib.LICENSE @@ -1,3 +1,23 @@ +--- +key: zlib +short_name: ZLIB License +name: ZLIB License +category: Permissive +owner: zlib +homepage_url: http://www.zlib.net/ +notes: Per SPDX.org, this is OSI certified +spdx_license_key: Zlib +text_urls: + - http://www.gzip.org/zlib/zlib_license.html +osi_url: http://www.opensource.org/licenses/zlib-license.php +faq_url: http://www.gzip.org/zlib/zlib-faq.html +other_urls: + - http://www.opensource.org/licenses/Zlib + - http://www.zlib.net/zlib_license.html + - https://opensource.org/licenses/Zlib +minimum_coverage: 50 +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -14,4 +34,4 @@ the following restrictions: 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/zlib.yml b/src/licensedcode/data/licenses/zlib.yml deleted file mode 100644 index 15b65dcdcae..00000000000 --- a/src/licensedcode/data/licenses/zlib.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: zlib -short_name: ZLIB License -name: ZLIB License -category: Permissive -owner: zlib -homepage_url: http://www.zlib.net/ -notes: Per SPDX.org, this is OSI certified -spdx_license_key: Zlib -text_urls: - - http://www.gzip.org/zlib/zlib_license.html -osi_url: http://www.opensource.org/licenses/zlib-license.php -faq_url: http://www.gzip.org/zlib/zlib-faq.html -other_urls: - - http://www.opensource.org/licenses/Zlib - - http://www.zlib.net/zlib_license.html - - https://opensource.org/licenses/Zlib -minimum_coverage: 50 diff --git a/src/licensedcode/data/licenses/zpl-1.0.LICENSE b/src/licensedcode/data/licenses/zpl-1.0.LICENSE index 61fc28e43a2..1026ea100db 100644 --- a/src/licensedcode/data/licenses/zpl-1.0.LICENSE +++ b/src/licensedcode/data/licenses/zpl-1.0.LICENSE @@ -1,3 +1,22 @@ +--- +key: zpl-1.0 +short_name: ZPL 1.0 +name: Zope Public License 1.0 +category: Permissive +owner: Zope Community +spdx_license_key: LicenseRef-scancode-zpl-1.0 +text_urls: + - http://old.zope.org/Members/ensane/PTK2CMF/copy_folders.py.1 +ignorable_copyrights: + - Copyright (c) Digital Creations +ignorable_holders: + - Digital Creations +ignorable_authors: + - Digital Creations +ignorable_urls: + - http://www.zope.org/ +--- + Zope Public License (ZPL) Version 1.0 ------------------------------------- @@ -77,6 +96,4 @@ Disclaimer This software consists of contributions made by Digital Creations and many individuals on behalf of Digital Creations. Specific -attributions are listed in the accompanying credits file. - - +attributions are listed in the accompanying credits file. \ No newline at end of file diff --git a/src/licensedcode/data/licenses/zpl-1.0.yml b/src/licensedcode/data/licenses/zpl-1.0.yml deleted file mode 100644 index 735be664ba6..00000000000 --- a/src/licensedcode/data/licenses/zpl-1.0.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: zpl-1.0 -short_name: ZPL 1.0 -name: Zope Public License 1.0 -category: Permissive -owner: Zope Community -spdx_license_key: LicenseRef-scancode-zpl-1.0 -text_urls: - - http://old.zope.org/Members/ensane/PTK2CMF/copy_folders.py.1 -ignorable_copyrights: - - Copyright (c) Digital Creations -ignorable_holders: - - Digital Creations -ignorable_authors: - - Digital Creations -ignorable_urls: - - http://www.zope.org/ diff --git a/src/licensedcode/data/licenses/zpl-1.1.LICENSE b/src/licensedcode/data/licenses/zpl-1.1.LICENSE index f3020f531bc..b30b926d625 100644 --- a/src/licensedcode/data/licenses/zpl-1.1.LICENSE +++ b/src/licensedcode/data/licenses/zpl-1.1.LICENSE @@ -1,3 +1,26 @@ +--- +key: zpl-1.1 +short_name: ZPL 1.1 +name: Zope Public License 1.1 +category: Permissive +owner: Zope Community +homepage_url: http://www.zope.org/Resources/License/ +spdx_license_key: ZPL-1.1 +text_urls: + - http://www.zope.org/Resources/License/ +other_urls: + - http://old.zope.org/Resources/License/ZPL-1.1 + - http://www.zope.com/ +ignorable_copyrights: + - Copyright (c) Zope Corporation +ignorable_holders: + - Zope Corporation +ignorable_authors: + - Zope Corporation +ignorable_urls: + - http://www.zope.com/ +--- + Zope Public License (ZPL) Version 1.1 Copyright (c) Zope Corporation. All rights reserved. diff --git a/src/licensedcode/data/licenses/zpl-1.1.yml b/src/licensedcode/data/licenses/zpl-1.1.yml deleted file mode 100644 index 47813da8414..00000000000 --- a/src/licensedcode/data/licenses/zpl-1.1.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: zpl-1.1 -short_name: ZPL 1.1 -name: Zope Public License 1.1 -category: Permissive -owner: Zope Community -homepage_url: http://www.zope.org/Resources/License/ -spdx_license_key: ZPL-1.1 -text_urls: - - http://www.zope.org/Resources/License/ -other_urls: - - http://old.zope.org/Resources/License/ZPL-1.1 - - http://www.zope.com/ -ignorable_copyrights: - - Copyright (c) Zope Corporation -ignorable_holders: - - Zope Corporation -ignorable_authors: - - Zope Corporation -ignorable_urls: - - http://www.zope.com/ diff --git a/src/licensedcode/data/licenses/zpl-2.0.LICENSE b/src/licensedcode/data/licenses/zpl-2.0.LICENSE index fa3515449c1..e58ab25c317 100644 --- a/src/licensedcode/data/licenses/zpl-2.0.LICENSE +++ b/src/licensedcode/data/licenses/zpl-2.0.LICENSE @@ -1,3 +1,24 @@ +--- +key: zpl-2.0 +short_name: ZPL 2.0 +name: Zope Public License 2.0 +category: Permissive +owner: Zope Community +homepage_url: http://www.zope.org/Resources/License/ +notes: Per SPDX.org, this license is OSI certified +spdx_license_key: ZPL-2.0 +osi_license_key: ZPL-2.0 +text_urls: + - http://www.zope.org/Resources/License/ +other_urls: + - http://old.zope.org/Resources/License/ZPL-2.0 + - http://opensource.org/licenses/ZPL-2.0 + - http://www.zope.com/Marks + - https://opensource.org/licenses/ZPL-2.0 +ignorable_urls: + - http://www.zope.com/Marks +--- + This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). diff --git a/src/licensedcode/data/licenses/zpl-2.0.yml b/src/licensedcode/data/licenses/zpl-2.0.yml deleted file mode 100644 index 6bc76430cd6..00000000000 --- a/src/licensedcode/data/licenses/zpl-2.0.yml +++ /dev/null @@ -1,18 +0,0 @@ -key: zpl-2.0 -short_name: ZPL 2.0 -name: Zope Public License 2.0 -category: Permissive -owner: Zope Community -homepage_url: http://www.zope.org/Resources/License/ -notes: Per SPDX.org, this license is OSI certified -spdx_license_key: ZPL-2.0 -osi_license_key: ZPL-2.0 -text_urls: - - http://www.zope.org/Resources/License/ -other_urls: - - http://old.zope.org/Resources/License/ZPL-2.0 - - http://opensource.org/licenses/ZPL-2.0 - - http://www.zope.com/Marks - - https://opensource.org/licenses/ZPL-2.0 -ignorable_urls: - - http://www.zope.com/Marks diff --git a/src/licensedcode/data/licenses/zpl-2.1.LICENSE b/src/licensedcode/data/licenses/zpl-2.1.LICENSE index c12c8e1e052..1a7b00b2d5c 100644 --- a/src/licensedcode/data/licenses/zpl-2.1.LICENSE +++ b/src/licensedcode/data/licenses/zpl-2.1.LICENSE @@ -1,3 +1,20 @@ +--- +key: zpl-2.1 +short_name: ZPL 2.1 +name: Zope Public License 2.1 +category: Permissive +owner: Zope Community +homepage_url: http://www.zope.org/Resources/License/ +notes: Per SPDX.org, this is a generic version of the ZPL 2.0 license +spdx_license_key: ZPL-2.1 +text_urls: + - http://www.zope.org/Resources/License/ +other_urls: + - http://old.zope.org/Resources/ZPL/ + - http://www.zope.org/Resources/License/ZPL-2.1 + - http://www.zope.org/Resources/ZPL +--- + This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). diff --git a/src/licensedcode/data/licenses/zpl-2.1.yml b/src/licensedcode/data/licenses/zpl-2.1.yml deleted file mode 100644 index 2017059ced7..00000000000 --- a/src/licensedcode/data/licenses/zpl-2.1.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: zpl-2.1 -short_name: ZPL 2.1 -name: Zope Public License 2.1 -category: Permissive -owner: Zope Community -homepage_url: http://www.zope.org/Resources/License/ -notes: Per SPDX.org, this is a generic version of the ZPL 2.0 license -spdx_license_key: ZPL-2.1 -text_urls: - - http://www.zope.org/Resources/License/ -other_urls: - - http://old.zope.org/Resources/ZPL/ - - http://www.zope.org/Resources/License/ZPL-2.1 - - http://www.zope.org/Resources/ZPL diff --git a/src/licensedcode/data/licenses/zsh.LICENSE b/src/licensedcode/data/licenses/zsh.LICENSE index aeedb6d157b..5e9c8b9ec57 100644 --- a/src/licensedcode/data/licenses/zsh.LICENSE +++ b/src/licensedcode/data/licenses/zsh.LICENSE @@ -1,3 +1,20 @@ +--- +key: zsh +short_name: zsh License +name: Z Shell License +category: Permissive +owner: Zsh Development Group +homepage_url: https://sourceforge.net/p/zsh/code/ci/master/tree/LICENCE +spdx_license_key: LicenseRef-scancode-zsh +minimum_coverage: 90 +ignorable_copyrights: + - copyright (c) 1992-2017 Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter + Stephenson, Sven Wischnowsky, and others +ignorable_holders: + - Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter Stephenson, Sven Wischnowsky, + and others +--- + Unless otherwise noted in the header of specific files, files in this distribution have the licence shown below. diff --git a/src/licensedcode/data/licenses/zsh.yml b/src/licensedcode/data/licenses/zsh.yml deleted file mode 100644 index 7035bd5f353..00000000000 --- a/src/licensedcode/data/licenses/zsh.yml +++ /dev/null @@ -1,14 +0,0 @@ -key: zsh -short_name: zsh License -name: Z Shell License -category: Permissive -owner: Zsh Development Group -homepage_url: https://sourceforge.net/p/zsh/code/ci/master/tree/LICENCE -spdx_license_key: LicenseRef-scancode-zsh -minimum_coverage: 90 -ignorable_copyrights: - - copyright (c) 1992-2017 Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter - Stephenson, Sven Wischnowsky, and others -ignorable_holders: - - Paul Falstad, Richard Coleman, Zoltan Hidvegi, Andrew Main, Peter Stephenson, Sven Wischnowsky, - and others diff --git a/src/licensedcode/data/licenses/zuora-software.LICENSE b/src/licensedcode/data/licenses/zuora-software.LICENSE index b791f1ed311..fb892242924 100644 --- a/src/licensedcode/data/licenses/zuora-software.LICENSE +++ b/src/licensedcode/data/licenses/zuora-software.LICENSE @@ -1,3 +1,13 @@ +--- +key: zuora-software +short_name: Zuora Software License +name: Zuora Software License +category: Permissive +owner: Zuora +homepage_url: https://github.com/zuora/rest-java-client/blob/legacy/LICENSE +spdx_license_key: LicenseRef-scancode-zuora-software +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to use copy, modify, merge, publish the Software and to distribute, and sublicense copies of diff --git a/src/licensedcode/data/licenses/zuora-software.yml b/src/licensedcode/data/licenses/zuora-software.yml deleted file mode 100644 index 56fe293e9c8..00000000000 --- a/src/licensedcode/data/licenses/zuora-software.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: zuora-software -short_name: Zuora Software License -name: Zuora Software License -category: Permissive -owner: Zuora -homepage_url: https://github.com/zuora/rest-java-client/blob/legacy/LICENSE -spdx_license_key: LicenseRef-scancode-zuora-software diff --git a/src/licensedcode/data/licenses/zveno-research.LICENSE b/src/licensedcode/data/licenses/zveno-research.LICENSE index b0bc8a11b25..1db7124837b 100644 --- a/src/licensedcode/data/licenses/zveno-research.LICENSE +++ b/src/licensedcode/data/licenses/zveno-research.LICENSE @@ -1,3 +1,14 @@ +--- +key: zveno-research +short_name: Zveno Research License +name: Zveno Research License +category: Permissive +owner: Zveno +spdx_license_key: LicenseRef-scancode-zveno-research +other_urls: + - http://sourceforge.net/p/tclxml/svn/HEAD/tree/trunk/LICENSE +--- + Zveno makes this software available free of charge for any purpose. This software may be copied, and distributed, with or without modifications; but this notice must be included on any copy. diff --git a/src/licensedcode/data/licenses/zveno-research.yml b/src/licensedcode/data/licenses/zveno-research.yml deleted file mode 100644 index 88303ba2668..00000000000 --- a/src/licensedcode/data/licenses/zveno-research.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: zveno-research -short_name: Zveno Research License -name: Zveno Research License -category: Permissive -owner: Zveno -spdx_license_key: LicenseRef-scancode-zveno-research -other_urls: - - http://sourceforge.net/p/tclxml/svn/HEAD/tree/trunk/LICENSE diff --git a/src/licensedcode/data/rules/389-exception_1.RULE b/src/licensedcode/data/rules/389-exception_1.RULE index c21c5c5104c..4ef255d05af 100644 --- a/src/licensedcode/data/rules/389-exception_1.RULE +++ b/src/licensedcode/data/rules/389-exception_1.RULE @@ -1 +1,7 @@ +--- +license_expression: 389-exception +is_license_reference: yes +relevance: 100 +--- + 389 Directory Server Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_1.yml b/src/licensedcode/data/rules/389-exception_1.yml deleted file mode 100644 index 8e6f3b36dc4..00000000000 --- a/src/licensedcode/data/rules/389-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/389-exception_10.RULE b/src/licensedcode/data/rules/389-exception_10.RULE index 211b49e37e3..ecf6c2de72e 100644 --- a/src/licensedcode/data/rules/389-exception_10.RULE +++ b/src/licensedcode/data/rules/389-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: 389-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/389-exception +--- + LICENSE {{389-exception}} https://spdx.org/licenses/389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_10.yml b/src/licensedcode/data/rules/389-exception_10.yml deleted file mode 100644 index 4a178e99e3e..00000000000 --- a/src/licensedcode/data/rules/389-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/389-exception diff --git a/src/licensedcode/data/rules/389-exception_11.RULE b/src/licensedcode/data/rules/389-exception_11.RULE index 6cd9096b2f8..3f61e1f0332 100644 --- a/src/licensedcode/data/rules/389-exception_11.RULE +++ b/src/licensedcode/data/rules/389-exception_11.RULE @@ -1 +1,9 @@ +--- +license_expression: 389-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/389-exception +--- + {{389-exception}} https://spdx.org/licenses/389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_11.yml b/src/licensedcode/data/rules/389-exception_11.yml deleted file mode 100644 index 4a178e99e3e..00000000000 --- a/src/licensedcode/data/rules/389-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/389-exception diff --git a/src/licensedcode/data/rules/389-exception_2.RULE b/src/licensedcode/data/rules/389-exception_2.RULE index b4e2d9cee54..42dff0c3226 100644 --- a/src/licensedcode/data/rules/389-exception_2.RULE +++ b/src/licensedcode/data/rules/389-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: 389-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: 389 Directory Server Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_2.yml b/src/licensedcode/data/rules/389-exception_2.yml deleted file mode 100644 index c137d651e80..00000000000 --- a/src/licensedcode/data/rules/389-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/389-exception_3.RULE b/src/licensedcode/data/rules/389-exception_3.RULE index 0a90023ed63..212a78eb0c2 100644 --- a/src/licensedcode/data/rules/389-exception_3.RULE +++ b/src/licensedcode/data/rules/389-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: 389-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + 389-exception 389 Directory Server Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_3.yml b/src/licensedcode/data/rules/389-exception_3.yml deleted file mode 100644 index c137d651e80..00000000000 --- a/src/licensedcode/data/rules/389-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/389-exception_4.RULE b/src/licensedcode/data/rules/389-exception_4.RULE index f4447a27f38..0544bcc3c6b 100644 --- a/src/licensedcode/data/rules/389-exception_4.RULE +++ b/src/licensedcode/data/rules/389-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: 389-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + 389 Directory Server Exception 389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_4.yml b/src/licensedcode/data/rules/389-exception_4.yml deleted file mode 100644 index c137d651e80..00000000000 --- a/src/licensedcode/data/rules/389-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/389-exception_5.RULE b/src/licensedcode/data/rules/389-exception_5.RULE index 7f796956240..e71ee7076f4 100644 --- a/src/licensedcode/data/rules/389-exception_5.RULE +++ b/src/licensedcode/data/rules/389-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: 389-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: 389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_5.yml b/src/licensedcode/data/rules/389-exception_5.yml deleted file mode 100644 index 4a7ab9321a1..00000000000 --- a/src/licensedcode/data/rules/389-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: 389-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/389-exception_6.RULE b/src/licensedcode/data/rules/389-exception_6.RULE index 4fa454bbd1e..2b9622935b9 100644 --- a/src/licensedcode/data/rules/389-exception_6.RULE +++ b/src/licensedcode/data/rules/389-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: 389-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: 389 Directory Server Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_6.yml b/src/licensedcode/data/rules/389-exception_6.yml deleted file mode 100644 index 4a7ab9321a1..00000000000 --- a/src/licensedcode/data/rules/389-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: 389-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/389-exception_7.RULE b/src/licensedcode/data/rules/389-exception_7.RULE index 3817c858c81..98dcedbdb85 100644 --- a/src/licensedcode/data/rules/389-exception_7.RULE +++ b/src/licensedcode/data/rules/389-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: 389-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: 389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_7.yml b/src/licensedcode/data/rules/389-exception_7.yml deleted file mode 100644 index 4a7ab9321a1..00000000000 --- a/src/licensedcode/data/rules/389-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: 389-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/389-exception_8.RULE b/src/licensedcode/data/rules/389-exception_8.RULE index 1570c37d651..7c3590c1acb 100644 --- a/src/licensedcode/data/rules/389-exception_8.RULE +++ b/src/licensedcode/data/rules/389-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: 389-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/389-exception +--- + https://licenses.nuget.org/389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_8.yml b/src/licensedcode/data/rules/389-exception_8.yml deleted file mode 100644 index 94275773adc..00000000000 --- a/src/licensedcode/data/rules/389-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/389-exception diff --git a/src/licensedcode/data/rules/389-exception_9.RULE b/src/licensedcode/data/rules/389-exception_9.RULE index c14799610a5..353138493ad 100644 --- a/src/licensedcode/data/rules/389-exception_9.RULE +++ b/src/licensedcode/data/rules/389-exception_9.RULE @@ -1 +1,7 @@ +--- +license_expression: 389-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_9.yml b/src/licensedcode/data/rules/389-exception_9.yml deleted file mode 100644 index 8e6f3b36dc4..00000000000 --- a/src/licensedcode/data/rules/389-exception_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/389-exception_url_1.RULE b/src/licensedcode/data/rules/389-exception_url_1.RULE index 1a7325736c9..ff20e2d393e 100644 --- a/src/licensedcode/data/rules/389-exception_url_1.RULE +++ b/src/licensedcode/data/rules/389-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: 389-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/389-exception +--- + https://spdx.org/licenses/389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_url_1.yml b/src/licensedcode/data/rules/389-exception_url_1.yml deleted file mode 100644 index a1cc0789925..00000000000 --- a/src/licensedcode/data/rules/389-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/389-exception diff --git a/src/licensedcode/data/rules/389-exception_url_2.RULE b/src/licensedcode/data/rules/389-exception_url_2.RULE index d95676c6747..4a77b55d76d 100644 --- a/src/licensedcode/data/rules/389-exception_url_2.RULE +++ b/src/licensedcode/data/rules/389-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: 389-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/389-exception.html +--- + https://spdx.org/licenses/389-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/389-exception_url_2.yml b/src/licensedcode/data/rules/389-exception_url_2.yml deleted file mode 100644 index 28ba8700445..00000000000 --- a/src/licensedcode/data/rules/389-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/389-exception.html diff --git a/src/licensedcode/data/rules/3com-microcode.RULE b/src/licensedcode/data/rules/3com-microcode.RULE index 58a9cd67913..25a5595f2c0 100644 --- a/src/licensedcode/data/rules/3com-microcode.RULE +++ b/src/licensedcode/data/rules/3com-microcode.RULE @@ -1,3 +1,9 @@ +--- +license_expression: 3com-microcode +is_license_text: yes +minimum_coverage: 80 +--- + Licence: /* * @@ -31,5 +37,4 @@ * COMBINATION WITH THE 3c990img.h MICROCODE SOFTWARE */ - Found in hex form in kernel source. - + Found in hex form in kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/3com-microcode.yml b/src/licensedcode/data/rules/3com-microcode.yml deleted file mode 100644 index 2e8fddc90f5..00000000000 --- a/src/licensedcode/data/rules/3com-microcode.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: 3com-microcode -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/3com-microcode2.RULE b/src/licensedcode/data/rules/3com-microcode2.RULE index 2926999b327..79d95a96329 100644 --- a/src/licensedcode/data/rules/3com-microcode2.RULE +++ b/src/licensedcode/data/rules/3com-microcode2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: 3com-microcode +is_license_text: yes +minimum_coverage: 80 +--- + /* * * Redistribution and use in source and binary forms of the 3c990img.h @@ -30,5 +36,4 @@ * COMBINATION WITH THE 3c990img.h MICROCODE SOFTWARE */ - Found in hex form in kernel source. - + Found in hex form in kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/3com-microcode2.yml b/src/licensedcode/data/rules/3com-microcode2.yml deleted file mode 100644 index 2e8fddc90f5..00000000000 --- a/src/licensedcode/data/rules/3com-microcode2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: 3com-microcode -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/3com-microcode3.RULE b/src/licensedcode/data/rules/3com-microcode3.RULE index 294631eebf8..f1c439bd155 100644 --- a/src/licensedcode/data/rules/3com-microcode3.RULE +++ b/src/licensedcode/data/rules/3com-microcode3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: 3com-microcode +is_license_text: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms of the 3c990img.h microcode software are permitted provided that the following conditions are met: @@ -25,4 +31,4 @@ IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN ANY OTHER 3COM HARDWARE OR SOFTWARE EITHER SOLELY OR IN - COMBINATION WITH THE 3c990img.h MICROCODE SOFTWARE + COMBINATION WITH THE 3c990img.h MICROCODE SOFTWARE \ No newline at end of file diff --git a/src/licensedcode/data/rules/3com-microcode3.yml b/src/licensedcode/data/rules/3com-microcode3.yml deleted file mode 100644 index 2e8fddc90f5..00000000000 --- a/src/licensedcode/data/rules/3com-microcode3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: 3com-microcode -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/3dslicer-1.0_1.RULE b/src/licensedcode/data/rules/3dslicer-1.0_1.RULE index 748212fd529..919760ffc4e 100644 --- a/src/licensedcode/data/rules/3dslicer-1.0_1.RULE +++ b/src/licensedcode/data/rules/3dslicer-1.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: 3dslicer-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT.txt +ignorable_urls: + - http://www.slicer.org/copyright/copyright.txt +--- + # See COPYRIGHT.txt # or http://www.slicer.org/copyright/copyright.txt for details. # diff --git a/src/licensedcode/data/rules/3dslicer-1.0_1.yml b/src/licensedcode/data/rules/3dslicer-1.0_1.yml deleted file mode 100644 index 270c440d58a..00000000000 --- a/src/licensedcode/data/rules/3dslicer-1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: 3dslicer-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT.txt -ignorable_urls: - - http://www.slicer.org/copyright/copyright.txt diff --git a/src/licensedcode/data/rules/996-icu-1.0_1.RULE b/src/licensedcode/data/rules/996-icu-1.0_1.RULE index 07d012653e9..544c26ea058 100644 --- a/src/licensedcode/data/rules/996-icu-1.0_1.RULE +++ b/src/licensedcode/data/rules/996-icu-1.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: 996-icu-1.0 +is_license_text: yes +relevance: 100 +notes: latest text variant as of 2021-04 +--- + Anti 996 License Version 1.0 (Draft) Permission is hereby granted to any individual or legal entity obtaining a copy diff --git a/src/licensedcode/data/rules/996-icu-1.0_1.yml b/src/licensedcode/data/rules/996-icu-1.0_1.yml deleted file mode 100644 index a724967330a..00000000000 --- a/src/licensedcode/data/rules/996-icu-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: 996-icu-1.0 -is_license_text: yes -relevance: 100 -notes: latest text variant as of 2021-04 diff --git a/src/licensedcode/data/rules/abstyles_1.RULE b/src/licensedcode/data/rules/abstyles_1.RULE index 280fee9c154..e321ced0104 100644 --- a/src/licensedcode/data/rules/abstyles_1.RULE +++ b/src/licensedcode/data/rules/abstyles_1.RULE @@ -1 +1,6 @@ +--- +license_expression: abstyles +is_license_reference: yes +--- + Abstyles Abstyles License \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_1.yml b/src/licensedcode/data/rules/abstyles_1.yml deleted file mode 100644 index cdfd95b647a..00000000000 --- a/src/licensedcode/data/rules/abstyles_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: abstyles -is_license_reference: yes diff --git a/src/licensedcode/data/rules/abstyles_10.RULE b/src/licensedcode/data/rules/abstyles_10.RULE index 853d6a52702..896c3b4fb7a 100644 --- a/src/licensedcode/data/rules/abstyles_10.RULE +++ b/src/licensedcode/data/rules/abstyles_10.RULE @@ -1 +1,9 @@ +--- +license_expression: abstyles +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Abstyles +--- + {{Abstyles}} https://spdx.org/licenses/Abstyles \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_10.yml b/src/licensedcode/data/rules/abstyles_10.yml deleted file mode 100644 index 6ec856933d1..00000000000 --- a/src/licensedcode/data/rules/abstyles_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: abstyles -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Abstyles diff --git a/src/licensedcode/data/rules/abstyles_11.RULE b/src/licensedcode/data/rules/abstyles_11.RULE index a8fa0358961..6406f0b3c34 100644 --- a/src/licensedcode/data/rules/abstyles_11.RULE +++ b/src/licensedcode/data/rules/abstyles_11.RULE @@ -1 +1,9 @@ +--- +license_expression: abstyles +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Abstyles +--- + LICENSE {{Abstyles}} https://spdx.org/licenses/Abstyles \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_11.yml b/src/licensedcode/data/rules/abstyles_11.yml deleted file mode 100644 index 6ec856933d1..00000000000 --- a/src/licensedcode/data/rules/abstyles_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: abstyles -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Abstyles diff --git a/src/licensedcode/data/rules/abstyles_2.RULE b/src/licensedcode/data/rules/abstyles_2.RULE index c9eda0ff604..26d62150068 100644 --- a/src/licensedcode/data/rules/abstyles_2.RULE +++ b/src/licensedcode/data/rules/abstyles_2.RULE @@ -1 +1,6 @@ +--- +license_expression: abstyles +is_license_reference: yes +--- + Abstyles License \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_2.yml b/src/licensedcode/data/rules/abstyles_2.yml deleted file mode 100644 index cdfd95b647a..00000000000 --- a/src/licensedcode/data/rules/abstyles_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: abstyles -is_license_reference: yes diff --git a/src/licensedcode/data/rules/abstyles_3.RULE b/src/licensedcode/data/rules/abstyles_3.RULE index 6f2223e7375..c7ef53dbbab 100644 --- a/src/licensedcode/data/rules/abstyles_3.RULE +++ b/src/licensedcode/data/rules/abstyles_3.RULE @@ -1 +1,10 @@ +--- +license_expression: abstyles +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Abstyles License \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_3.yml b/src/licensedcode/data/rules/abstyles_3.yml deleted file mode 100644 index 6abadb1c741..00000000000 --- a/src/licensedcode/data/rules/abstyles_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: abstyles -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/abstyles_4.RULE b/src/licensedcode/data/rules/abstyles_4.RULE index f059ae93426..6084ada590a 100644 --- a/src/licensedcode/data/rules/abstyles_4.RULE +++ b/src/licensedcode/data/rules/abstyles_4.RULE @@ -1 +1,10 @@ +--- +license_expression: abstyles +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Abstyles License Abstyles \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_4.yml b/src/licensedcode/data/rules/abstyles_4.yml deleted file mode 100644 index 6abadb1c741..00000000000 --- a/src/licensedcode/data/rules/abstyles_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: abstyles -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/abstyles_5.RULE b/src/licensedcode/data/rules/abstyles_5.RULE index 87404ce5528..2e668cf0692 100644 --- a/src/licensedcode/data/rules/abstyles_5.RULE +++ b/src/licensedcode/data/rules/abstyles_5.RULE @@ -1 +1,10 @@ +--- +license_expression: abstyles +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Abstyles \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_5.yml b/src/licensedcode/data/rules/abstyles_5.yml deleted file mode 100644 index 05d51f38ece..00000000000 --- a/src/licensedcode/data/rules/abstyles_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: abstyles -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/abstyles_6.RULE b/src/licensedcode/data/rules/abstyles_6.RULE index 98dbcd9515b..eb48af81cda 100644 --- a/src/licensedcode/data/rules/abstyles_6.RULE +++ b/src/licensedcode/data/rules/abstyles_6.RULE @@ -1 +1,10 @@ +--- +license_expression: abstyles +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Abstyles License \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_6.yml b/src/licensedcode/data/rules/abstyles_6.yml deleted file mode 100644 index 05d51f38ece..00000000000 --- a/src/licensedcode/data/rules/abstyles_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: abstyles -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/abstyles_7.RULE b/src/licensedcode/data/rules/abstyles_7.RULE index 60332d2a730..d505789fe5d 100644 --- a/src/licensedcode/data/rules/abstyles_7.RULE +++ b/src/licensedcode/data/rules/abstyles_7.RULE @@ -1 +1,10 @@ +--- +license_expression: abstyles +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Abstyles \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_7.yml b/src/licensedcode/data/rules/abstyles_7.yml deleted file mode 100644 index 05d51f38ece..00000000000 --- a/src/licensedcode/data/rules/abstyles_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: abstyles -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/abstyles_8.RULE b/src/licensedcode/data/rules/abstyles_8.RULE index 93008449341..b4d016ba53f 100644 --- a/src/licensedcode/data/rules/abstyles_8.RULE +++ b/src/licensedcode/data/rules/abstyles_8.RULE @@ -1 +1,9 @@ +--- +license_expression: abstyles +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Abstyles +--- + https://licenses.nuget.org/Abstyles \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_8.yml b/src/licensedcode/data/rules/abstyles_8.yml deleted file mode 100644 index 35735ae3c8e..00000000000 --- a/src/licensedcode/data/rules/abstyles_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: abstyles -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Abstyles diff --git a/src/licensedcode/data/rules/abstyles_9.RULE b/src/licensedcode/data/rules/abstyles_9.RULE index c9d32cc1ac8..8e6b4d4f609 100644 --- a/src/licensedcode/data/rules/abstyles_9.RULE +++ b/src/licensedcode/data/rules/abstyles_9.RULE @@ -1 +1,7 @@ +--- +license_expression: abstyles +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Abstyles \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_9.yml b/src/licensedcode/data/rules/abstyles_9.yml deleted file mode 100644 index 825326fb249..00000000000 --- a/src/licensedcode/data/rules/abstyles_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: abstyles -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/abstyles_url_1.RULE b/src/licensedcode/data/rules/abstyles_url_1.RULE index 6916a6f708c..36377f0162c 100644 --- a/src/licensedcode/data/rules/abstyles_url_1.RULE +++ b/src/licensedcode/data/rules/abstyles_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: abstyles +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/abstyles +--- + https://spdx.org/licenses/abstyles \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_url_1.yml b/src/licensedcode/data/rules/abstyles_url_1.yml deleted file mode 100644 index dd2edc97255..00000000000 --- a/src/licensedcode/data/rules/abstyles_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: abstyles -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/abstyles diff --git a/src/licensedcode/data/rules/abstyles_url_2.RULE b/src/licensedcode/data/rules/abstyles_url_2.RULE index 7cfa8a8906e..96b9a682c9e 100644 --- a/src/licensedcode/data/rules/abstyles_url_2.RULE +++ b/src/licensedcode/data/rules/abstyles_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: abstyles +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/abstyles.html +--- + https://spdx.org/licenses/abstyles.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/abstyles_url_2.yml b/src/licensedcode/data/rules/abstyles_url_2.yml deleted file mode 100644 index 3a4120207ab..00000000000 --- a/src/licensedcode/data/rules/abstyles_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: abstyles -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/abstyles.html diff --git a/src/licensedcode/data/rules/acdl-1.0.RULE b/src/licensedcode/data/rules/acdl-1.0.RULE index 216c9052ceb..e1954f6d413 100644 --- a/src/licensedcode/data/rules/acdl-1.0.RULE +++ b/src/licensedcode/data/rules/acdl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/Common_Documentation_License +--- + http://fedoraproject.org/wiki/Licensing/Common_Documentation_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0.yml b/src/licensedcode/data/rules/acdl-1.0.yml deleted file mode 100644 index e41ff4bdaae..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/Common_Documentation_License diff --git a/src/licensedcode/data/rules/acdl-1.0_1.RULE b/src/licensedcode/data/rules/acdl-1.0_1.RULE index c3daf42c844..4259e423bc1 100644 --- a/src/licensedcode/data/rules/acdl-1.0_1.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: acdl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/cdl/ +--- + This material has been released under and is subject to the terms of the Common Documentation License, v.1.0, the terms of which are hereby incorporated by reference. Please obtain a copy of the License at http://www.opensource.apple.com/cdl/ and read it before using this material. Your use of this material signifies your agreement to the terms of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_1.yml b/src/licensedcode/data/rules/acdl-1.0_1.yml deleted file mode 100644 index 23cac92738f..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: acdl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/cdl/ diff --git a/src/licensedcode/data/rules/acdl-1.0_10.RULE b/src/licensedcode/data/rules/acdl-1.0_10.RULE index af4644e3574..e7e1d2302a5 100644 --- a/src/licensedcode/data/rules/acdl-1.0_10.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: acdl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_10.yml b/src/licensedcode/data/rules/acdl-1.0_10.yml deleted file mode 100644 index 4ea58d13793..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: acdl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/acdl-1.0_11.RULE b/src/licensedcode/data/rules/acdl-1.0_11.RULE index 284671f3738..07b7d25b766 100644 --- a/src/licensedcode/data/rules/acdl-1.0_11.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CDL-1.0 +--- + https://licenses.nuget.org/CDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_11.yml b/src/licensedcode/data/rules/acdl-1.0_11.yml deleted file mode 100644 index f5172a5f10a..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CDL-1.0 diff --git a/src/licensedcode/data/rules/acdl-1.0_12.RULE b/src/licensedcode/data/rules/acdl-1.0_12.RULE index 68a86a5e99d..d1a1f0bdeb6 100644 --- a/src/licensedcode/data/rules/acdl-1.0_12.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_12.yml b/src/licensedcode/data/rules/acdl-1.0_12.yml deleted file mode 100644 index 81bf0342af0..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/acdl-1.0_13.RULE b/src/licensedcode/data/rules/acdl-1.0_13.RULE index 409c90ecd1e..9287f2666f1 100644 --- a/src/licensedcode/data/rules/acdl-1.0_13.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDL-1.0 +--- + LICENSE {{CDL-1.0}} https://spdx.org/licenses/CDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_13.yml b/src/licensedcode/data/rules/acdl-1.0_13.yml deleted file mode 100644 index 3354af764b7..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDL-1.0 diff --git a/src/licensedcode/data/rules/acdl-1.0_14.RULE b/src/licensedcode/data/rules/acdl-1.0_14.RULE index cb5da6faee0..155c99a1b33 100644 --- a/src/licensedcode/data/rules/acdl-1.0_14.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDL-1.0 +--- + {{CDL-1.0}} https://spdx.org/licenses/CDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_14.yml b/src/licensedcode/data/rules/acdl-1.0_14.yml deleted file mode 100644 index 3354af764b7..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDL-1.0 diff --git a/src/licensedcode/data/rules/acdl-1.0_2.RULE b/src/licensedcode/data/rules/acdl-1.0_2.RULE index 6a5aaeaca8e..e754e748385 100644 --- a/src/licensedcode/data/rules/acdl-1.0_2.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: acdl-1.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2001 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +ignorable_urls: + - http://www.opensource.apple.com/cdl/ +--- + Common Documentation License Version 1.0 - February 16, 2001 diff --git a/src/licensedcode/data/rules/acdl-1.0_2.yml b/src/licensedcode/data/rules/acdl-1.0_2.yml deleted file mode 100644 index 9c37004ceca..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: acdl-1.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2001 Apple Computer, Inc. -ignorable_holders: - - Apple Computer, Inc. -ignorable_urls: - - http://www.opensource.apple.com/cdl/ diff --git a/src/licensedcode/data/rules/acdl-1.0_3.RULE b/src/licensedcode/data/rules/acdl-1.0_3.RULE index 3677bc5fadf..836db441ebf 100644 --- a/src/licensedcode/data/rules/acdl-1.0_3.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Documentation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_3.yml b/src/licensedcode/data/rules/acdl-1.0_3.yml deleted file mode 100644 index 81bf0342af0..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/acdl-1.0_4.RULE b/src/licensedcode/data/rules/acdl-1.0_4.RULE index e10db2ebd05..19967fccce3 100644 --- a/src/licensedcode/data/rules/acdl-1.0_4.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Common Documentation License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_4.yml b/src/licensedcode/data/rules/acdl-1.0_4.yml deleted file mode 100644 index 80e2bf14aad..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/acdl-1.0_5.RULE b/src/licensedcode/data/rules/acdl-1.0_5.RULE index 4e5fff5ebae..4cca644b601 100644 --- a/src/licensedcode/data/rules/acdl-1.0_5.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Common Documentation License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_5.yml b/src/licensedcode/data/rules/acdl-1.0_5.yml deleted file mode 100644 index 80e2bf14aad..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/acdl-1.0_6.RULE b/src/licensedcode/data/rules/acdl-1.0_6.RULE index e15183fde43..8212811c159 100644 --- a/src/licensedcode/data/rules/acdl-1.0_6.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CDL-1.0 Common Documentation License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_6.yml b/src/licensedcode/data/rules/acdl-1.0_6.yml deleted file mode 100644 index 80e2bf14aad..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/acdl-1.0_7.RULE b/src/licensedcode/data/rules/acdl-1.0_7.RULE index df17d7ebcaa..e9965b8f6ce 100644 --- a/src/licensedcode/data/rules/acdl-1.0_7.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: acdl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Common Documentation License 1.0 CDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_7.yml b/src/licensedcode/data/rules/acdl-1.0_7.yml deleted file mode 100644 index 80e2bf14aad..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: acdl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/acdl-1.0_8.RULE b/src/licensedcode/data/rules/acdl-1.0_8.RULE index 9beb1d526ef..b34b415f421 100644 --- a/src/licensedcode/data/rules/acdl-1.0_8.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: acdl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_8.yml b/src/licensedcode/data/rules/acdl-1.0_8.yml deleted file mode 100644 index 4ea58d13793..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: acdl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/acdl-1.0_9.RULE b/src/licensedcode/data/rules/acdl-1.0_9.RULE index 39479039f09..e3e3cd60f89 100644 --- a/src/licensedcode/data/rules/acdl-1.0_9.RULE +++ b/src/licensedcode/data/rules/acdl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: acdl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Common Documentation License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/acdl-1.0_9.yml b/src/licensedcode/data/rules/acdl-1.0_9.yml deleted file mode 100644 index 4ea58d13793..00000000000 --- a/src/licensedcode/data/rules/acdl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: acdl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ace-tao.SPDX.RULE b/src/licensedcode/data/rules/ace-tao.SPDX.RULE index d41e100a4e8..5400c6d73ad 100644 --- a/src/licensedcode/data/rules/ace-tao.SPDX.RULE +++ b/src/licensedcode/data/rules/ace-tao.SPDX.RULE @@ -1,3 +1,18 @@ +--- +license_expression: ace-tao +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - copyrighted by Douglas C. Schmidt and his research group at Washington University, University + of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009 +ignorable_holders: + - Douglas C. Schmidt and his research group at Washington University, University of California, + Irvine, and Vanderbilt University +ignorable_authors: + - the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center +--- + Copyright and Licensing Information for ACE(TM), TAO(TM), CIAO(TM), DAnCE(TM), and CoSMIC(TM) ACE(TM), TAO(TM), CIAO(TM), DAnCE>(TM), and CoSMIC(TM) (henceforth referred to as "DOC software") are copyrighted by Douglas C. Schmidt and his research group at Washington University, University of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009, all rights reserved. Since DOC software is open-source, freely available software, you are free to use, modify, copy, and distribute--perpetually and irrevocably--the DOC software source code and object code produced from the source, as well as copy and distribute modified versions of this software. You must, however, include this copyright statement along with any code built using DOC software that you release. No copyright statement needs to be provided if you just ship binary executables of your software products. diff --git a/src/licensedcode/data/rules/ace-tao.SPDX.yml b/src/licensedcode/data/rules/ace-tao.SPDX.yml deleted file mode 100644 index 6cb91477e9f..00000000000 --- a/src/licensedcode/data/rules/ace-tao.SPDX.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: ace-tao -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - copyrighted by Douglas C. Schmidt and his research group at Washington University, University - of California, Irvine, and Vanderbilt University, Copyright (c) 1993-2009 -ignorable_holders: - - Douglas C. Schmidt and his research group at Washington University, University of California, - Irvine, and Vanderbilt University -ignorable_authors: - - the DOC Group at the Institute for Software Integrated Systems (ISIS) and the Center diff --git a/src/licensedcode/data/rules/ace-tao_1.RULE b/src/licensedcode/data/rules/ace-tao_1.RULE index 7c0ba4b9184..7d0831b070f 100644 --- a/src/licensedcode/data/rules/ace-tao_1.RULE +++ b/src/licensedcode/data/rules/ace-tao_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ace-tao +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cs.wustl.edu/~schmidt/ACE-copying.html +--- + http://www.cs.wustl.edu/~schmidt/ACE-copying.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_1.yml b/src/licensedcode/data/rules/ace-tao_1.yml deleted file mode 100644 index b0addb97582..00000000000 --- a/src/licensedcode/data/rules/ace-tao_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cs.wustl.edu/~schmidt/ACE-copying.html diff --git a/src/licensedcode/data/rules/ace-tao_10.RULE b/src/licensedcode/data/rules/ace-tao_10.RULE index a27f48ab4ee..f42bf840308 100644 --- a/src/licensedcode/data/rules/ace-tao_10.RULE +++ b/src/licensedcode/data/rules/ace-tao_10.RULE @@ -1 +1,10 @@ +--- +license_expression: ace-tao +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: DOC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_10.yml b/src/licensedcode/data/rules/ace-tao_10.yml deleted file mode 100644 index 9116ce58a51..00000000000 --- a/src/licensedcode/data/rules/ace-tao_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ace-tao -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ace-tao_11.RULE b/src/licensedcode/data/rules/ace-tao_11.RULE index 09640799ee9..53666cd5432 100644 --- a/src/licensedcode/data/rules/ace-tao_11.RULE +++ b/src/licensedcode/data/rules/ace-tao_11.RULE @@ -1 +1,10 @@ +--- +license_expression: ace-tao +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_11.yml b/src/licensedcode/data/rules/ace-tao_11.yml deleted file mode 100644 index 9116ce58a51..00000000000 --- a/src/licensedcode/data/rules/ace-tao_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ace-tao -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ace-tao_12.RULE b/src/licensedcode/data/rules/ace-tao_12.RULE index c484e3d32f4..648e02a9c03 100644 --- a/src/licensedcode/data/rules/ace-tao_12.RULE +++ b/src/licensedcode/data/rules/ace-tao_12.RULE @@ -1 +1,7 @@ +--- +license_expression: ace-tao +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_12.yml b/src/licensedcode/data/rules/ace-tao_12.yml deleted file mode 100644 index 623fd307415..00000000000 --- a/src/licensedcode/data/rules/ace-tao_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ace-tao_13.RULE b/src/licensedcode/data/rules/ace-tao_13.RULE index 9f0ee73fadf..3de1b43add5 100644 --- a/src/licensedcode/data/rules/ace-tao_13.RULE +++ b/src/licensedcode/data/rules/ace-tao_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ace-tao +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DOC +--- + {{DOC}} https://spdx.org/licenses/DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_13.yml b/src/licensedcode/data/rules/ace-tao_13.yml deleted file mode 100644 index 489b3f1f1d7..00000000000 --- a/src/licensedcode/data/rules/ace-tao_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DOC diff --git a/src/licensedcode/data/rules/ace-tao_14.RULE b/src/licensedcode/data/rules/ace-tao_14.RULE index 4d4d1685b62..1e252229149 100644 --- a/src/licensedcode/data/rules/ace-tao_14.RULE +++ b/src/licensedcode/data/rules/ace-tao_14.RULE @@ -1 +1,9 @@ +--- +license_expression: ace-tao +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DOC +--- + LICENSE {{DOC}} https://spdx.org/licenses/DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_14.yml b/src/licensedcode/data/rules/ace-tao_14.yml deleted file mode 100644 index 489b3f1f1d7..00000000000 --- a/src/licensedcode/data/rules/ace-tao_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DOC diff --git a/src/licensedcode/data/rules/ace-tao_2.RULE b/src/licensedcode/data/rules/ace-tao_2.RULE index a0be3fe43dc..3b6c987cefc 100644 --- a/src/licensedcode/data/rules/ace-tao_2.RULE +++ b/src/licensedcode/data/rules/ace-tao_2.RULE @@ -1 +1,8 @@ +--- +license_expression: ace-tao +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Warranty Information FaCE is provided 'as is' without warranties of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_2.yml b/src/licensedcode/data/rules/ace-tao_2.yml deleted file mode 100644 index 0f0b0b97fed..00000000000 --- a/src/licensedcode/data/rules/ace-tao_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ace-tao -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ace-tao_3.RULE b/src/licensedcode/data/rules/ace-tao_3.RULE index 7a9c0b719c0..b8e1a36beb4 100644 --- a/src/licensedcode/data/rules/ace-tao_3.RULE +++ b/src/licensedcode/data/rules/ace-tao_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ace-tao +is_license_notice: yes +relevance: 100 +--- + distributed with ACE and TAO under the same licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_3.yml b/src/licensedcode/data/rules/ace-tao_3.yml deleted file mode 100644 index 99d6f93d68c..00000000000 --- a/src/licensedcode/data/rules/ace-tao_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ace-tao -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ace-tao_4.RULE b/src/licensedcode/data/rules/ace-tao_4.RULE index 042e84cbbd9..25c079b0a8a 100644 --- a/src/licensedcode/data/rules/ace-tao_4.RULE +++ b/src/licensedcode/data/rules/ace-tao_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ace-tao +is_license_notice: yes +relevance: 100 +--- + Since ACE and TAO are open source, free software, you are free to use, modify, and distribute the ACE and TAO source code and object code produced from the source, as long as you include this copyright statement along with code built using ACE and TAO. Please refer to diff --git a/src/licensedcode/data/rules/ace-tao_4.yml b/src/licensedcode/data/rules/ace-tao_4.yml deleted file mode 100644 index 99d6f93d68c..00000000000 --- a/src/licensedcode/data/rules/ace-tao_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ace-tao -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ace-tao_5.RULE b/src/licensedcode/data/rules/ace-tao_5.RULE index 55e540a6239..f74b9a2c901 100644 --- a/src/licensedcode/data/rules/ace-tao_5.RULE +++ b/src/licensedcode/data/rules/ace-tao_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ace-tao +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DOC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_5.yml b/src/licensedcode/data/rules/ace-tao_5.yml deleted file mode 100644 index 6f398066a5e..00000000000 --- a/src/licensedcode/data/rules/ace-tao_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ace-tao_6.RULE b/src/licensedcode/data/rules/ace-tao_6.RULE index 220d621a207..88159f8661e 100644 --- a/src/licensedcode/data/rules/ace-tao_6.RULE +++ b/src/licensedcode/data/rules/ace-tao_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ace-tao +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: DOC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_6.yml b/src/licensedcode/data/rules/ace-tao_6.yml deleted file mode 100644 index 6f398066a5e..00000000000 --- a/src/licensedcode/data/rules/ace-tao_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ace-tao_7.RULE b/src/licensedcode/data/rules/ace-tao_7.RULE index 7995fc944e9..59d1d958b29 100644 --- a/src/licensedcode/data/rules/ace-tao_7.RULE +++ b/src/licensedcode/data/rules/ace-tao_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ace-tao +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DOC DOC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_7.yml b/src/licensedcode/data/rules/ace-tao_7.yml deleted file mode 100644 index 6f398066a5e..00000000000 --- a/src/licensedcode/data/rules/ace-tao_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ace-tao_8.RULE b/src/licensedcode/data/rules/ace-tao_8.RULE index ebc2cc663fe..69729d79d91 100644 --- a/src/licensedcode/data/rules/ace-tao_8.RULE +++ b/src/licensedcode/data/rules/ace-tao_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ace-tao +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DOC License DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_8.yml b/src/licensedcode/data/rules/ace-tao_8.yml deleted file mode 100644 index 6f398066a5e..00000000000 --- a/src/licensedcode/data/rules/ace-tao_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ace-tao_9.RULE b/src/licensedcode/data/rules/ace-tao_9.RULE index d399bc0bfb0..086409510df 100644 --- a/src/licensedcode/data/rules/ace-tao_9.RULE +++ b/src/licensedcode/data/rules/ace-tao_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ace-tao +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/DOC +--- + https://licenses.nuget.org/DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_9.yml b/src/licensedcode/data/rules/ace-tao_9.yml deleted file mode 100644 index bbf95876e4d..00000000000 --- a/src/licensedcode/data/rules/ace-tao_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/DOC diff --git a/src/licensedcode/data/rules/ace-tao_url_1.RULE b/src/licensedcode/data/rules/ace-tao_url_1.RULE index aad70df20a7..c84a4fec6ee 100644 --- a/src/licensedcode/data/rules/ace-tao_url_1.RULE +++ b/src/licensedcode/data/rules/ace-tao_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ace-tao +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/doc +--- + https://spdx.org/licenses/doc \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_url_1.yml b/src/licensedcode/data/rules/ace-tao_url_1.yml deleted file mode 100644 index ef33cc2190f..00000000000 --- a/src/licensedcode/data/rules/ace-tao_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/doc diff --git a/src/licensedcode/data/rules/ace-tao_url_2.RULE b/src/licensedcode/data/rules/ace-tao_url_2.RULE index a37ba75637c..c6863c1c97d 100644 --- a/src/licensedcode/data/rules/ace-tao_url_2.RULE +++ b/src/licensedcode/data/rules/ace-tao_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ace-tao +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/doc.html +--- + https://spdx.org/licenses/doc.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ace-tao_url_2.yml b/src/licensedcode/data/rules/ace-tao_url_2.yml deleted file mode 100644 index 8920f68398c..00000000000 --- a/src/licensedcode/data/rules/ace-tao_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ace-tao -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/doc.html diff --git a/src/licensedcode/data/rules/adapt-1.0_1.RULE b/src/licensedcode/data/rules/adapt-1.0_1.RULE index fc43e3f24d3..4838d995e37 100644 --- a/src/licensedcode/data/rules/adapt-1.0_1.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/apl1.0.php +--- + http://www.opensource.org/licenses/apl1.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_1.yml b/src/licensedcode/data/rules/adapt-1.0_1.yml deleted file mode 100644 index c0632ac4c33..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/apl1.0.php diff --git a/src/licensedcode/data/rules/adapt-1.0_10.RULE b/src/licensedcode/data/rules/adapt-1.0_10.RULE index 5243c8b9c71..03542002f74 100644 --- a/src/licensedcode/data/rules/adapt-1.0_10.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: adapt-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: APL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_10.yml b/src/licensedcode/data/rules/adapt-1.0_10.yml deleted file mode 100644 index 76eeefe270e..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adapt-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adapt-1.0_11.RULE b/src/licensedcode/data/rules/adapt-1.0_11.RULE index 70ccb557079..4da518ebe9b 100644 --- a/src/licensedcode/data/rules/adapt-1.0_11.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/APL-1.0 +--- + https://licenses.nuget.org/APL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_11.yml b/src/licensedcode/data/rules/adapt-1.0_11.yml deleted file mode 100644 index 16cb4d9e25c..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/APL-1.0 diff --git a/src/licensedcode/data/rules/adapt-1.0_12.RULE b/src/licensedcode/data/rules/adapt-1.0_12.RULE index bc15a8da2d8..9cb103bfff2 100644 --- a/src/licensedcode/data/rules/adapt-1.0_12.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/APL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_12.yml b/src/licensedcode/data/rules/adapt-1.0_12.yml deleted file mode 100644 index 7d615c687f0..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adapt-1.0_13.RULE b/src/licensedcode/data/rules/adapt-1.0_13.RULE index 62dec003dfc..cba564b4632 100644 --- a/src/licensedcode/data/rules/adapt-1.0_13.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APL-1.0 +--- + LICENSE {{APL-1.0}} https://spdx.org/licenses/APL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_13.yml b/src/licensedcode/data/rules/adapt-1.0_13.yml deleted file mode 100644 index 2b2f29e146d..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APL-1.0 diff --git a/src/licensedcode/data/rules/adapt-1.0_14.RULE b/src/licensedcode/data/rules/adapt-1.0_14.RULE index 531fe859575..456330a9f43 100644 --- a/src/licensedcode/data/rules/adapt-1.0_14.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APL-1.0 +--- + {{APL-1.0}} https://spdx.org/licenses/APL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_14.yml b/src/licensedcode/data/rules/adapt-1.0_14.yml deleted file mode 100644 index 2b2f29e146d..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APL-1.0 diff --git a/src/licensedcode/data/rules/adapt-1.0_2.RULE b/src/licensedcode/data/rules/adapt-1.0_2.RULE index 4ab5169b361..043fc20177f 100644 --- a/src/licensedcode/data/rules/adapt-1.0_2.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +--- + Adaptive Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_2.yml b/src/licensedcode/data/rules/adapt-1.0_2.yml deleted file mode 100644 index 7d615c687f0..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adapt-1.0_3.RULE b/src/licensedcode/data/rules/adapt-1.0_3.RULE index 49378597eba..1022c69d554 100644 --- a/src/licensedcode/data/rules/adapt-1.0_3.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +--- + You are free to use this software in compliance with the Adaptive Public License (APL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_3.yml b/src/licensedcode/data/rules/adapt-1.0_3.yml deleted file mode 100644 index 7d615c687f0..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adapt-1.0_4.RULE b/src/licensedcode/data/rules/adapt-1.0_4.RULE index a21a62c8472..c13d89e0d46 100644 --- a/src/licensedcode/data/rules/adapt-1.0_4.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_4.RULE @@ -1 +1,6 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +--- + Adaptive Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_4.yml b/src/licensedcode/data/rules/adapt-1.0_4.yml deleted file mode 100644 index fa41f3c4283..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/adapt-1.0_5.RULE b/src/licensedcode/data/rules/adapt-1.0_5.RULE index f5d4ebeb88c..cd67a3e8617 100644 --- a/src/licensedcode/data/rules/adapt-1.0_5.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_5.RULE @@ -1 +1,6 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +--- + APL-1.0 Adaptive Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_5.yml b/src/licensedcode/data/rules/adapt-1.0_5.yml deleted file mode 100644 index fa41f3c4283..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/adapt-1.0_6.RULE b/src/licensedcode/data/rules/adapt-1.0_6.RULE index 71b7d633d07..524f2de1a27 100644 --- a/src/licensedcode/data/rules/adapt-1.0_6.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Adaptive Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_6.yml b/src/licensedcode/data/rules/adapt-1.0_6.yml deleted file mode 100644 index 885e3a4ed6c..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adapt-1.0_7.RULE b/src/licensedcode/data/rules/adapt-1.0_7.RULE index 13a4d974fde..862fbceb1b8 100644 --- a/src/licensedcode/data/rules/adapt-1.0_7.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Adaptive Public License 1.0 APL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_7.yml b/src/licensedcode/data/rules/adapt-1.0_7.yml deleted file mode 100644 index 885e3a4ed6c..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adapt-1.0_8.RULE b/src/licensedcode/data/rules/adapt-1.0_8.RULE index cf625175808..0600c9815ec 100644 --- a/src/licensedcode/data/rules/adapt-1.0_8.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: adapt-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: APL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_8.yml b/src/licensedcode/data/rules/adapt-1.0_8.yml deleted file mode 100644 index 76eeefe270e..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adapt-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adapt-1.0_9.RULE b/src/licensedcode/data/rules/adapt-1.0_9.RULE index 0a8c12041e9..2200449c9e7 100644 --- a/src/licensedcode/data/rules/adapt-1.0_9.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: adapt-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Adaptive Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_9.yml b/src/licensedcode/data/rules/adapt-1.0_9.yml deleted file mode 100644 index 76eeefe270e..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adapt-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adapt-1.0_url_1.RULE b/src/licensedcode/data/rules/adapt-1.0_url_1.RULE index 9001af3e85d..661fa687968 100644 --- a/src/licensedcode/data/rules/adapt-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apl-1.0 +--- + https://spdx.org/licenses/apl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_url_1.yml b/src/licensedcode/data/rules/adapt-1.0_url_1.yml deleted file mode 100644 index 008252489c0..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apl-1.0 diff --git a/src/licensedcode/data/rules/adapt-1.0_url_2.RULE b/src/licensedcode/data/rules/adapt-1.0_url_2.RULE index ee04065f450..dea738127bd 100644 --- a/src/licensedcode/data/rules/adapt-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apl-1.0.html +--- + https://spdx.org/licenses/apl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_url_2.yml b/src/licensedcode/data/rules/adapt-1.0_url_2.yml deleted file mode 100644 index 401c5d961ad..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apl-1.0.html diff --git a/src/licensedcode/data/rules/adapt-1.0_url_glc_140.RULE b/src/licensedcode/data/rules/adapt-1.0_url_glc_140.RULE index d349d33042d..46005b804fb 100644 --- a/src/licensedcode/data/rules/adapt-1.0_url_glc_140.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_url_glc_140.RULE @@ -1 +1,9 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/apl-1.0 +--- + http://www.opensource.org/licenses/apl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_url_glc_140.yml b/src/licensedcode/data/rules/adapt-1.0_url_glc_140.yml deleted file mode 100644 index f372428817c..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_url_glc_140.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/apl-1.0 diff --git a/src/licensedcode/data/rules/adapt-1.0_url_glc_141.RULE b/src/licensedcode/data/rules/adapt-1.0_url_glc_141.RULE index 05b498ebbd7..8bc97318115 100644 --- a/src/licensedcode/data/rules/adapt-1.0_url_glc_141.RULE +++ b/src/licensedcode/data/rules/adapt-1.0_url_glc_141.RULE @@ -1 +1,9 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/apl-1.0 +--- + https://www.opensource.org/licenses/apl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adapt-1.0_url_glc_141.yml b/src/licensedcode/data/rules/adapt-1.0_url_glc_141.yml deleted file mode 100644 index 43b7ae007a4..00000000000 --- a/src/licensedcode/data/rules/adapt-1.0_url_glc_141.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/apl-1.0 diff --git a/src/licensedcode/data/rules/adi-bsd.RULE b/src/licensedcode/data/rules/adi-bsd.RULE index cd20fe86eed..1f19610f82a 100644 --- a/src/licensedcode/data/rules/adi-bsd.RULE +++ b/src/licensedcode/data/rules/adi-bsd.RULE @@ -1,2 +1,10 @@ +--- +license_expression: adi-bsd +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd +--- + Licensed under the ADI BSD license. - https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd + https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/adi-bsd.yml b/src/licensedcode/data/rules/adi-bsd.yml deleted file mode 100644 index c5450be08e7..00000000000 --- a/src/licensedcode/data/rules/adi-bsd.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adi-bsd -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://docs.blackfin.uclinux.org/doku.php?id=adi_bsd diff --git a/src/licensedcode/data/rules/adi-bsd2.RULE b/src/licensedcode/data/rules/adi-bsd2.RULE index 9758ee06e9e..106059a2b67 100644 --- a/src/licensedcode/data/rules/adi-bsd2.RULE +++ b/src/licensedcode/data/rules/adi-bsd2.RULE @@ -1 +1,7 @@ +--- +license_expression: adi-bsd +is_license_notice: yes +relevance: 100 +--- + Licensed under the ADI BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/adi-bsd2.yml b/src/licensedcode/data/rules/adi-bsd2.yml deleted file mode 100644 index fa7aa3dd1cd..00000000000 --- a/src/licensedcode/data/rules/adi-bsd2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adi-bsd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adi-bsd_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/adi-bsd_or_gpl-2.0-plus_1.RULE index d65c3651d9d..91d66c08f61 100644 --- a/src/licensedcode/data/rules/adi-bsd_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/adi-bsd_or_gpl-2.0-plus_1.RULE @@ -1 +1,7 @@ - * Licensed under the ADI BSD license or the GPL-2 (or later) +--- +license_expression: adi-bsd OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + + * Licensed under the ADI BSD license or the GPL-2 (or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/adi-bsd_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/adi-bsd_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 771e8fe88bf..00000000000 --- a/src/licensedcode/data/rules/adi-bsd_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adi-bsd OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adobe-acrobat-reader-eula.RULE b/src/licensedcode/data/rules/adobe-acrobat-reader-eula.RULE index 036f6603de7..e7010bcfebe 100644 --- a/src/licensedcode/data/rules/adobe-acrobat-reader-eula.RULE +++ b/src/licensedcode/data/rules/adobe-acrobat-reader-eula.RULE @@ -1,3 +1,10 @@ +--- +license_expression: adobe-acrobat-reader-eula +is_license_text: yes +ignorable_urls: + - http://www.adobe.com/ +--- + Adobe Acrobat Reader EULA ADOBE @@ -73,4 +80,4 @@ NOTICE TO USER: PLEASE READ THIS CONTRACT CAREFULLY. BY USING ALL OR ANY PORTI If you have any questions regarding this Agreement or if you wish to request any information from Adobe please use the address and contact information included with this product to contact the Adobe office serving your jurisdiction. -Adobe, Acrobat, Acrobat Reader, and After Effects are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. +Adobe, Acrobat, Acrobat Reader, and After Effects are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-acrobat-reader-eula.yml b/src/licensedcode/data/rules/adobe-acrobat-reader-eula.yml deleted file mode 100644 index 679bcc80785..00000000000 --- a/src/licensedcode/data/rules/adobe-acrobat-reader-eula.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: adobe-acrobat-reader-eula -is_license_text: yes -ignorable_urls: - - http://www.adobe.com/ diff --git a/src/licensedcode/data/rules/adobe-dng-sdk_1.RULE b/src/licensedcode/data/rules/adobe-dng-sdk_1.RULE index 876cca98479..c91fac0e72f 100644 --- a/src/licensedcode/data/rules/adobe-dng-sdk_1.RULE +++ b/src/licensedcode/data/rules/adobe-dng-sdk_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: adobe-dng-sdk +is_license_text: yes +ignorable_urls: + - http://www.adobe.com/ +--- + DNG SDK License Agreement NOTICE TO USER: Adobe Systems Incorporated provides the Software and Documentation for use under @@ -88,4 +95,4 @@ No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent in writing signed by an authorized signatory of Adobe. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of the Agreement, -which shall remain valid and enforceable according to its terms. +which shall remain valid and enforceable according to its terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-dng-sdk_1.yml b/src/licensedcode/data/rules/adobe-dng-sdk_1.yml deleted file mode 100644 index 9d5744fdea2..00000000000 --- a/src/licensedcode/data/rules/adobe-dng-sdk_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: adobe-dng-sdk -is_license_text: yes -ignorable_urls: - - http://www.adobe.com/ diff --git a/src/licensedcode/data/rules/adobe-dng-sdk_2.RULE b/src/licensedcode/data/rules/adobe-dng-sdk_2.RULE index 90cea57a291..49d47e75498 100644 --- a/src/licensedcode/data/rules/adobe-dng-sdk_2.RULE +++ b/src/licensedcode/data/rules/adobe-dng-sdk_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: adobe-dng-sdk +is_license_notice: yes +relevance: 95 +--- + This product includes DNG technology under license by Adobe Systems -Incorporated. +Incorporated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-dng-sdk_2.yml b/src/licensedcode/data/rules/adobe-dng-sdk_2.yml deleted file mode 100644 index 212804d87d9..00000000000 --- a/src/licensedcode/data/rules/adobe-dng-sdk_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adobe-dng-sdk -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/adobe-dng-sdk_3.RULE b/src/licensedcode/data/rules/adobe-dng-sdk_3.RULE index 9d19e5baede..0a32c1a23fe 100644 --- a/src/licensedcode/data/rules/adobe-dng-sdk_3.RULE +++ b/src/licensedcode/data/rules/adobe-dng-sdk_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: adobe-dng-sdk +is_license_text: yes +ignorable_urls: + - http://www.adobe.com/ +--- + This product includes DNG technology under license by Adobe Systems Incorporated. @@ -92,4 +99,4 @@ No variation of the terms of this Agreement will be enforceable against Adobe unless Adobe gives its express consent in writing signed by an authorized signatory of Adobe. If any part of this Agreement is found void and unenforceable, it will not affect the validity of the balance of the Agreement, -which shall remain valid and enforceable according to its terms. +which shall remain valid and enforceable according to its terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-dng-sdk_3.yml b/src/licensedcode/data/rules/adobe-dng-sdk_3.yml deleted file mode 100644 index 9d5744fdea2..00000000000 --- a/src/licensedcode/data/rules/adobe-dng-sdk_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: adobe-dng-sdk -is_license_text: yes -ignorable_urls: - - http://www.adobe.com/ diff --git a/src/licensedcode/data/rules/adobe-dng-sdk_4.RULE b/src/licensedcode/data/rules/adobe-dng-sdk_4.RULE index cfb34af2856..17255f8ba1e 100644 --- a/src/licensedcode/data/rules/adobe-dng-sdk_4.RULE +++ b/src/licensedcode/data/rules/adobe-dng-sdk_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: adobe-dng-sdk +is_license_notice: yes +notes: https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/source/dng_1d_function.cpp +--- + // NOTICE: Adobe permits you to use, modify, and distribute this file in // accordance with the terms of the Adobe license agreement accompanying it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-dng-sdk_4.yml b/src/licensedcode/data/rules/adobe-dng-sdk_4.yml deleted file mode 100644 index 21166158915..00000000000 --- a/src/licensedcode/data/rules/adobe-dng-sdk_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adobe-dng-sdk -is_license_notice: yes -notes: https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/source/dng_1d_function.cpp diff --git a/src/licensedcode/data/rules/adobe-dng-spec-patent_1.RULE b/src/licensedcode/data/rules/adobe-dng-spec-patent_1.RULE index 4d18854c4a8..bb4e9bdf3fa 100644 --- a/src/licensedcode/data/rules/adobe-dng-spec-patent_1.RULE +++ b/src/licensedcode/data/rules/adobe-dng-spec-patent_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: adobe-dng-spec-patent +is_license_text: yes +--- + Digital Negative (DNG) Specification patent license Adobe is the publisher of the Digital Negative (DNG) Specification describing an image file format for storing camera raw information diff --git a/src/licensedcode/data/rules/adobe-dng-spec-patent_1.yml b/src/licensedcode/data/rules/adobe-dng-spec-patent_1.yml deleted file mode 100644 index a0910b69843..00000000000 --- a/src/licensedcode/data/rules/adobe-dng-spec-patent_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: adobe-dng-spec-patent -is_license_text: yes diff --git a/src/licensedcode/data/rules/adobe-eula.RULE b/src/licensedcode/data/rules/adobe-eula.RULE index fe3861ac29d..bd854587761 100644 --- a/src/licensedcode/data/rules/adobe-eula.RULE +++ b/src/licensedcode/data/rules/adobe-eula.RULE @@ -1,3 +1,8 @@ +--- +license_expression: adobe-acrobat-reader-eula +is_license_notice: yes +--- + "Note: The font software contained in this package is being licensed to you solely for use with Adobe (R) Acrobat (R) Reader (R) software ("Acrobat Reader") and is subject to the terms and conditions of diff --git a/src/licensedcode/data/rules/adobe-eula.yml b/src/licensedcode/data/rules/adobe-eula.yml deleted file mode 100644 index 2c54f171077..00000000000 --- a/src/licensedcode/data/rules/adobe-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: adobe-acrobat-reader-eula -is_license_notice: yes diff --git a/src/licensedcode/data/rules/adobe-eula_2.RULE b/src/licensedcode/data/rules/adobe-eula_2.RULE index 50a67cccc58..621e3ab7101 100644 --- a/src/licensedcode/data/rules/adobe-eula_2.RULE +++ b/src/licensedcode/data/rules/adobe-eula_2.RULE @@ -1,5 +1,13 @@ +--- +license_expression: adobe-eula +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.adobe.com/products/eulas/ +--- + Patents pending in the United States and other countries. Adobe and Flash are either trademarks or registered trademarks in the United States and/or other countries. Adobe Flash Player End User License Agreement -http://www.adobe.com/products/eulas/ +http://www.adobe.com/products/eulas/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-eula_2.yml b/src/licensedcode/data/rules/adobe-eula_2.yml deleted file mode 100644 index fc06101788f..00000000000 --- a/src/licensedcode/data/rules/adobe-eula_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-eula -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.adobe.com/products/eulas/ diff --git a/src/licensedcode/data/rules/adobe-eula_and_gpl-1.0-plus.RULE b/src/licensedcode/data/rules/adobe-eula_and_gpl-1.0-plus.RULE index 46b6a3f7218..d94069db715 100644 --- a/src/licensedcode/data/rules/adobe-eula_and_gpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/adobe-eula_and_gpl-1.0-plus.RULE @@ -1,3 +1,16 @@ +--- +license_expression: adobe-eula AND gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 30 +notes: only the packaging is under the GPL +ignorable_copyrights: + - (c) 2001-2009, Takuo KITAME, Bart Martens, and Canonical, LTD +ignorable_holders: + - Takuo KITAME, Bart Martens, and Canonical, LTD +ignorable_urls: + - http://www.adobe.com/products/eulas/ +--- + Patents pending in the United States and other countries. Adobe and Flash are either trademarks or registered trademarks in the United States and/or other countries. @@ -7,4 +20,4 @@ Patents pending in the United States and http://www.adobe.com/products/eulas/ The Debian packaging is (C) 2001-2009, Takuo KITAME, Bart Martens, and -Canonical, LTD and is licensed under the GPL. +Canonical, LTD and is licensed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-eula_and_gpl-1.0-plus.yml b/src/licensedcode/data/rules/adobe-eula_and_gpl-1.0-plus.yml deleted file mode 100644 index fe4c9f968ee..00000000000 --- a/src/licensedcode/data/rules/adobe-eula_and_gpl-1.0-plus.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: adobe-eula AND gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 30 -notes: only the packaging is under the GPL -ignorable_copyrights: - - (c) 2001-2009, Takuo KITAME, Bart Martens, and Canonical, LTD -ignorable_holders: - - Takuo KITAME, Bart Martens, and Canonical, LTD -ignorable_urls: - - http://www.adobe.com/products/eulas/ diff --git a/src/licensedcode/data/rules/adobe-glyph_1.RULE b/src/licensedcode/data/rules/adobe-glyph_1.RULE index 0ae1ccd9c19..c3e5ab2e87f 100644 --- a/src/licensedcode/data/rules/adobe-glyph_1.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_1.RULE @@ -1 +1,6 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +--- + Adobe Glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_1.yml b/src/licensedcode/data/rules/adobe-glyph_1.yml deleted file mode 100644 index 50669591236..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes diff --git a/src/licensedcode/data/rules/adobe-glyph_10.RULE b/src/licensedcode/data/rules/adobe-glyph_10.RULE index 3b67d0797c2..5fb4de07ffe 100644 --- a/src/licensedcode/data/rules/adobe-glyph_10.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_10.RULE @@ -1 +1,7 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Adobe-Glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_10.yml b/src/licensedcode/data/rules/adobe-glyph_10.yml deleted file mode 100644 index b70c68c27f1..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adobe-glyph_11.RULE b/src/licensedcode/data/rules/adobe-glyph_11.RULE index 6f7d6712fd5..54b4de476af 100644 --- a/src/licensedcode/data/rules/adobe-glyph_11.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_11.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Adobe-Glyph +--- + LICENSE {{Adobe-Glyph}} https://spdx.org/licenses/Adobe-Glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_11.yml b/src/licensedcode/data/rules/adobe-glyph_11.yml deleted file mode 100644 index 674e852a963..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Adobe-Glyph diff --git a/src/licensedcode/data/rules/adobe-glyph_12.RULE b/src/licensedcode/data/rules/adobe-glyph_12.RULE index 3162140bcec..f30a52f755a 100644 --- a/src/licensedcode/data/rules/adobe-glyph_12.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_12.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Adobe-Glyph +--- + {{Adobe-Glyph}} https://spdx.org/licenses/Adobe-Glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_12.yml b/src/licensedcode/data/rules/adobe-glyph_12.yml deleted file mode 100644 index 674e852a963..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Adobe-Glyph diff --git a/src/licensedcode/data/rules/adobe-glyph_2.RULE b/src/licensedcode/data/rules/adobe-glyph_2.RULE index 8e404837008..266c5acf5fb 100644 --- a/src/licensedcode/data/rules/adobe-glyph_2.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_2.RULE @@ -1 +1,6 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +--- + Adobe Glyph List License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_2.yml b/src/licensedcode/data/rules/adobe-glyph_2.yml deleted file mode 100644 index 50669591236..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes diff --git a/src/licensedcode/data/rules/adobe-glyph_3.RULE b/src/licensedcode/data/rules/adobe-glyph_3.RULE index 6f844424064..b94a5a9a35c 100644 --- a/src/licensedcode/data/rules/adobe-glyph_3.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_3.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Adobe Glyph List License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_3.yml b/src/licensedcode/data/rules/adobe-glyph_3.yml deleted file mode 100644 index 9998cfb620c..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-glyph_4.RULE b/src/licensedcode/data/rules/adobe-glyph_4.RULE index 5594f0dbf6d..6f2fa48c522 100644 --- a/src/licensedcode/data/rules/adobe-glyph_4.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_4.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Adobe-Glyph Adobe Glyph List License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_4.yml b/src/licensedcode/data/rules/adobe-glyph_4.yml deleted file mode 100644 index 9998cfb620c..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-glyph_5.RULE b/src/licensedcode/data/rules/adobe-glyph_5.RULE index f6261bb2cd2..c418afe63f2 100644 --- a/src/licensedcode/data/rules/adobe-glyph_5.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_5.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Adobe Glyph List License Adobe-Glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_5.yml b/src/licensedcode/data/rules/adobe-glyph_5.yml deleted file mode 100644 index 9998cfb620c..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-glyph_6.RULE b/src/licensedcode/data/rules/adobe-glyph_6.RULE index db2c9f404f9..f26a8c59e34 100644 --- a/src/licensedcode/data/rules/adobe-glyph_6.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_6.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-glyph +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Adobe-Glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_6.yml b/src/licensedcode/data/rules/adobe-glyph_6.yml deleted file mode 100644 index 9da30c6e202..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-glyph -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-glyph_7.RULE b/src/licensedcode/data/rules/adobe-glyph_7.RULE index bac5e756121..200be7a3be1 100644 --- a/src/licensedcode/data/rules/adobe-glyph_7.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_7.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-glyph +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Adobe Glyph List License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_7.yml b/src/licensedcode/data/rules/adobe-glyph_7.yml deleted file mode 100644 index 9da30c6e202..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-glyph -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-glyph_8.RULE b/src/licensedcode/data/rules/adobe-glyph_8.RULE index 818015f91f1..84ee81bf96b 100644 --- a/src/licensedcode/data/rules/adobe-glyph_8.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_8.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-glyph +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Adobe-Glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_8.yml b/src/licensedcode/data/rules/adobe-glyph_8.yml deleted file mode 100644 index 9da30c6e202..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-glyph -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-glyph_9.RULE b/src/licensedcode/data/rules/adobe-glyph_9.RULE index 3092465cff1..2346c2d2831 100644 --- a/src/licensedcode/data/rules/adobe-glyph_9.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_9.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Adobe-Glyph +--- + https://licenses.nuget.org/Adobe-Glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_9.yml b/src/licensedcode/data/rules/adobe-glyph_9.yml deleted file mode 100644 index 9eeadacca3f..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Adobe-Glyph diff --git a/src/licensedcode/data/rules/adobe-glyph_url_1.RULE b/src/licensedcode/data/rules/adobe-glyph_url_1.RULE index c82488ada77..e37aa50ce5f 100644 --- a/src/licensedcode/data/rules/adobe-glyph_url_1.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/adobe-glyph +--- + https://spdx.org/licenses/adobe-glyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_url_1.yml b/src/licensedcode/data/rules/adobe-glyph_url_1.yml deleted file mode 100644 index 2ccdf9d6e2e..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/adobe-glyph diff --git a/src/licensedcode/data/rules/adobe-glyph_url_2.RULE b/src/licensedcode/data/rules/adobe-glyph_url_2.RULE index 0452a4e94e2..011cd809a9e 100644 --- a/src/licensedcode/data/rules/adobe-glyph_url_2.RULE +++ b/src/licensedcode/data/rules/adobe-glyph_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-glyph +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/adobe-glyph.html +--- + https://spdx.org/licenses/adobe-glyph.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-glyph_url_2.yml b/src/licensedcode/data/rules/adobe-glyph_url_2.yml deleted file mode 100644 index f5861178827..00000000000 --- a/src/licensedcode/data/rules/adobe-glyph_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-glyph -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/adobe-glyph.html diff --git a/src/licensedcode/data/rules/adobe-scl_1.RULE b/src/licensedcode/data/rules/adobe-scl_1.RULE index 4755ce91a21..38b0684901c 100644 --- a/src/licensedcode/data/rules/adobe-scl_1.RULE +++ b/src/licensedcode/data/rules/adobe-scl_1.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/AdobeLicense +--- + http://fedoraproject.org/wiki/Licensing/AdobeLicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_1.yml b/src/licensedcode/data/rules/adobe-scl_1.yml deleted file mode 100644 index 5da3c542e05..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/AdobeLicense diff --git a/src/licensedcode/data/rules/adobe-scl_10.RULE b/src/licensedcode/data/rules/adobe-scl_10.RULE index 1a27971fe10..bfc9e8028d6 100644 --- a/src/licensedcode/data/rules/adobe-scl_10.RULE +++ b/src/licensedcode/data/rules/adobe-scl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Adobe-2006 +--- + https://licenses.nuget.org/Adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_10.yml b/src/licensedcode/data/rules/adobe-scl_10.yml deleted file mode 100644 index b06f716aead..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Adobe-2006 diff --git a/src/licensedcode/data/rules/adobe-scl_11.RULE b/src/licensedcode/data/rules/adobe-scl_11.RULE index b6f6647b32d..06d1f13be06 100644 --- a/src/licensedcode/data/rules/adobe-scl_11.RULE +++ b/src/licensedcode/data/rules/adobe-scl_11.RULE @@ -1 +1,7 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_11.yml b/src/licensedcode/data/rules/adobe-scl_11.yml deleted file mode 100644 index 20b5c159975..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adobe-scl_12.RULE b/src/licensedcode/data/rules/adobe-scl_12.RULE index 9167fb9c274..249e61efc47 100644 --- a/src/licensedcode/data/rules/adobe-scl_12.RULE +++ b/src/licensedcode/data/rules/adobe-scl_12.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Adobe-2006 +--- + {{Adobe-2006}} https://spdx.org/licenses/Adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_12.yml b/src/licensedcode/data/rules/adobe-scl_12.yml deleted file mode 100644 index 666fdb127fb..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Adobe-2006 diff --git a/src/licensedcode/data/rules/adobe-scl_13.RULE b/src/licensedcode/data/rules/adobe-scl_13.RULE index d38941df2d7..c337910203f 100644 --- a/src/licensedcode/data/rules/adobe-scl_13.RULE +++ b/src/licensedcode/data/rules/adobe-scl_13.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Adobe-2006 +--- + LICENSE {{Adobe-2006}} https://spdx.org/licenses/Adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_13.yml b/src/licensedcode/data/rules/adobe-scl_13.yml deleted file mode 100644 index 666fdb127fb..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Adobe-2006 diff --git a/src/licensedcode/data/rules/adobe-scl_2.RULE b/src/licensedcode/data/rules/adobe-scl_2.RULE index 5df25037103..136081013ef 100644 --- a/src/licensedcode/data/rules/adobe-scl_2.RULE +++ b/src/licensedcode/data/rules/adobe-scl_2.RULE @@ -1 +1,8 @@ -Adobe Systems Incorporated(r) Source Code License Agreement \ No newline at end of file +--- +license_expression: adobe-scl +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + +Adobe Systems Incorporated(r) Source Code License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_2.yml b/src/licensedcode/data/rules/adobe-scl_2.yml deleted file mode 100644 index 31fe9b22b20..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/adobe-scl_3.RULE b/src/licensedcode/data/rules/adobe-scl_3.RULE index 6047e3b9ccb..79cd438f486 100644 --- a/src/licensedcode/data/rules/adobe-scl_3.RULE +++ b/src/licensedcode/data/rules/adobe-scl_3.RULE @@ -1 +1,6 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +--- + Adobe-2006 Adobe Systems Incorporated Source Code License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_3.yml b/src/licensedcode/data/rules/adobe-scl_3.yml deleted file mode 100644 index ff9cc5a5873..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes diff --git a/src/licensedcode/data/rules/adobe-scl_4.RULE b/src/licensedcode/data/rules/adobe-scl_4.RULE index ce5d7a50934..f03f5c23405 100644 --- a/src/licensedcode/data/rules/adobe-scl_4.RULE +++ b/src/licensedcode/data/rules/adobe-scl_4.RULE @@ -1 +1,6 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +--- + Adobe Systems Incorporated Source Code License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_4.yml b/src/licensedcode/data/rules/adobe-scl_4.yml deleted file mode 100644 index ff9cc5a5873..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes diff --git a/src/licensedcode/data/rules/adobe-scl_5.RULE b/src/licensedcode/data/rules/adobe-scl_5.RULE index c4829b7bf89..068bb40b639 100644 --- a/src/licensedcode/data/rules/adobe-scl_5.RULE +++ b/src/licensedcode/data/rules/adobe-scl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Adobe Systems Incorporated Source Code License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_5.yml b/src/licensedcode/data/rules/adobe-scl_5.yml deleted file mode 100644 index 31bbea9692f..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-scl_6.RULE b/src/licensedcode/data/rules/adobe-scl_6.RULE index 76c2499fef5..19d606c19e2 100644 --- a/src/licensedcode/data/rules/adobe-scl_6.RULE +++ b/src/licensedcode/data/rules/adobe-scl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Adobe Systems Incorporated Source Code License Agreement Adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_6.yml b/src/licensedcode/data/rules/adobe-scl_6.yml deleted file mode 100644 index 31bbea9692f..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-scl_7.RULE b/src/licensedcode/data/rules/adobe-scl_7.RULE index 16119fc8ffd..86c971b1155 100644 --- a/src/licensedcode/data/rules/adobe-scl_7.RULE +++ b/src/licensedcode/data/rules/adobe-scl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-scl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_7.yml b/src/licensedcode/data/rules/adobe-scl_7.yml deleted file mode 100644 index 3536d7b1bd0..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-scl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-scl_8.RULE b/src/licensedcode/data/rules/adobe-scl_8.RULE index 6a74eecb8b1..31bc2905337 100644 --- a/src/licensedcode/data/rules/adobe-scl_8.RULE +++ b/src/licensedcode/data/rules/adobe-scl_8.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-scl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Adobe Systems Incorporated Source Code License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_8.yml b/src/licensedcode/data/rules/adobe-scl_8.yml deleted file mode 100644 index 3536d7b1bd0..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-scl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-scl_9.RULE b/src/licensedcode/data/rules/adobe-scl_9.RULE index 62ef0389549..a9a98e895d3 100644 --- a/src/licensedcode/data/rules/adobe-scl_9.RULE +++ b/src/licensedcode/data/rules/adobe-scl_9.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-scl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_9.yml b/src/licensedcode/data/rules/adobe-scl_9.yml deleted file mode 100644 index 3536d7b1bd0..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-scl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adobe-scl_url_1.RULE b/src/licensedcode/data/rules/adobe-scl_url_1.RULE index e28dbab87a3..c8cadcaa93c 100644 --- a/src/licensedcode/data/rules/adobe-scl_url_1.RULE +++ b/src/licensedcode/data/rules/adobe-scl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/adobe-2006 +--- + https://spdx.org/licenses/adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_url_1.yml b/src/licensedcode/data/rules/adobe-scl_url_1.yml deleted file mode 100644 index 53cfa3361c4..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/adobe-2006 diff --git a/src/licensedcode/data/rules/adobe-scl_url_2.RULE b/src/licensedcode/data/rules/adobe-scl_url_2.RULE index 752b0343def..c67fb871360 100644 --- a/src/licensedcode/data/rules/adobe-scl_url_2.RULE +++ b/src/licensedcode/data/rules/adobe-scl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/adobe-2006.html +--- + https://spdx.org/licenses/adobe-2006.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/adobe-scl_url_2.yml b/src/licensedcode/data/rules/adobe-scl_url_2.yml deleted file mode 100644 index f9b2dd8c88e..00000000000 --- a/src/licensedcode/data/rules/adobe-scl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/adobe-2006.html diff --git a/src/licensedcode/data/rules/adsl_1.RULE b/src/licensedcode/data/rules/adsl_1.RULE index 7843addf53e..1369817ed26 100644 --- a/src/licensedcode/data/rules/adsl_1.RULE +++ b/src/licensedcode/data/rules/adsl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: adsl +is_license_reference: yes +relevance: 100 +--- + ADSL Amazon Digital Services License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_1.yml b/src/licensedcode/data/rules/adsl_1.yml deleted file mode 100644 index 774d91b5305..00000000000 --- a/src/licensedcode/data/rules/adsl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adsl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adsl_10.RULE b/src/licensedcode/data/rules/adsl_10.RULE index 5e96de7154b..3e43de756c4 100644 --- a/src/licensedcode/data/rules/adsl_10.RULE +++ b/src/licensedcode/data/rules/adsl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: adsl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ADSL +--- + {{ADSL}} https://spdx.org/licenses/ADSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_10.yml b/src/licensedcode/data/rules/adsl_10.yml deleted file mode 100644 index 618d3dabc7c..00000000000 --- a/src/licensedcode/data/rules/adsl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adsl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ADSL diff --git a/src/licensedcode/data/rules/adsl_11.RULE b/src/licensedcode/data/rules/adsl_11.RULE index 9cde565ee6a..1182bc807f0 100644 --- a/src/licensedcode/data/rules/adsl_11.RULE +++ b/src/licensedcode/data/rules/adsl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: adsl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ADSL +--- + LICENSE {{ADSL}} https://spdx.org/licenses/ADSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_11.yml b/src/licensedcode/data/rules/adsl_11.yml deleted file mode 100644 index 618d3dabc7c..00000000000 --- a/src/licensedcode/data/rules/adsl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adsl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ADSL diff --git a/src/licensedcode/data/rules/adsl_2.RULE b/src/licensedcode/data/rules/adsl_2.RULE index 1d25e3fe8d5..f398619d87a 100644 --- a/src/licensedcode/data/rules/adsl_2.RULE +++ b/src/licensedcode/data/rules/adsl_2.RULE @@ -1 +1,7 @@ +--- +license_expression: adsl +is_license_reference: yes +relevance: 100 +--- + Amazon Digital Services License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_2.yml b/src/licensedcode/data/rules/adsl_2.yml deleted file mode 100644 index 774d91b5305..00000000000 --- a/src/licensedcode/data/rules/adsl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adsl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adsl_3.RULE b/src/licensedcode/data/rules/adsl_3.RULE index 452940f8103..cc075ca714a 100644 --- a/src/licensedcode/data/rules/adsl_3.RULE +++ b/src/licensedcode/data/rules/adsl_3.RULE @@ -1 +1,10 @@ +--- +license_expression: adsl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Amazon Digital Services License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_3.yml b/src/licensedcode/data/rules/adsl_3.yml deleted file mode 100644 index 39fec1aaeb9..00000000000 --- a/src/licensedcode/data/rules/adsl_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adsl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adsl_4.RULE b/src/licensedcode/data/rules/adsl_4.RULE index 01d926b9903..8480e151a78 100644 --- a/src/licensedcode/data/rules/adsl_4.RULE +++ b/src/licensedcode/data/rules/adsl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: adsl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Amazon Digital Services License ADSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_4.yml b/src/licensedcode/data/rules/adsl_4.yml deleted file mode 100644 index 39fec1aaeb9..00000000000 --- a/src/licensedcode/data/rules/adsl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adsl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adsl_5.RULE b/src/licensedcode/data/rules/adsl_5.RULE index 4419530eaf2..e18e68db9f2 100644 --- a/src/licensedcode/data/rules/adsl_5.RULE +++ b/src/licensedcode/data/rules/adsl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: adsl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ADSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_5.yml b/src/licensedcode/data/rules/adsl_5.yml deleted file mode 100644 index ad5fe361e5d..00000000000 --- a/src/licensedcode/data/rules/adsl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adsl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adsl_6.RULE b/src/licensedcode/data/rules/adsl_6.RULE index f2384c3031c..8726720512a 100644 --- a/src/licensedcode/data/rules/adsl_6.RULE +++ b/src/licensedcode/data/rules/adsl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: adsl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Amazon Digital Services License \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_6.yml b/src/licensedcode/data/rules/adsl_6.yml deleted file mode 100644 index ad5fe361e5d..00000000000 --- a/src/licensedcode/data/rules/adsl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adsl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adsl_7.RULE b/src/licensedcode/data/rules/adsl_7.RULE index d7409450c44..d641ca66397 100644 --- a/src/licensedcode/data/rules/adsl_7.RULE +++ b/src/licensedcode/data/rules/adsl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: adsl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ADSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_7.yml b/src/licensedcode/data/rules/adsl_7.yml deleted file mode 100644 index ad5fe361e5d..00000000000 --- a/src/licensedcode/data/rules/adsl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adsl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/adsl_8.RULE b/src/licensedcode/data/rules/adsl_8.RULE index 03d6aa8b9a7..f8baf4b7571 100644 --- a/src/licensedcode/data/rules/adsl_8.RULE +++ b/src/licensedcode/data/rules/adsl_8.RULE @@ -1 +1,9 @@ +--- +license_expression: adsl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ADSL +--- + https://licenses.nuget.org/ADSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_8.yml b/src/licensedcode/data/rules/adsl_8.yml deleted file mode 100644 index e3f9ecd5df2..00000000000 --- a/src/licensedcode/data/rules/adsl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adsl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ADSL diff --git a/src/licensedcode/data/rules/adsl_9.RULE b/src/licensedcode/data/rules/adsl_9.RULE index ab975ad7eeb..fc124d55525 100644 --- a/src/licensedcode/data/rules/adsl_9.RULE +++ b/src/licensedcode/data/rules/adsl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: adsl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ADSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_9.yml b/src/licensedcode/data/rules/adsl_9.yml deleted file mode 100644 index 774d91b5305..00000000000 --- a/src/licensedcode/data/rules/adsl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: adsl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/adsl_url_1.RULE b/src/licensedcode/data/rules/adsl_url_1.RULE index c64555c4d30..b09b0627b29 100644 --- a/src/licensedcode/data/rules/adsl_url_1.RULE +++ b/src/licensedcode/data/rules/adsl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: adsl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/adsl +--- + https://spdx.org/licenses/adsl \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_url_1.yml b/src/licensedcode/data/rules/adsl_url_1.yml deleted file mode 100644 index 7bf24dc3d67..00000000000 --- a/src/licensedcode/data/rules/adsl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adsl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/adsl diff --git a/src/licensedcode/data/rules/adsl_url_2.RULE b/src/licensedcode/data/rules/adsl_url_2.RULE index ec889da77f6..6a9c9676cc3 100644 --- a/src/licensedcode/data/rules/adsl_url_2.RULE +++ b/src/licensedcode/data/rules/adsl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: adsl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/adsl.html +--- + https://spdx.org/licenses/adsl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/adsl_url_2.yml b/src/licensedcode/data/rules/adsl_url_2.yml deleted file mode 100644 index 7feeb035b5a..00000000000 --- a/src/licensedcode/data/rules/adsl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: adsl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/adsl.html diff --git a/src/licensedcode/data/rules/afl-1.1_1.RULE b/src/licensedcode/data/rules/afl-1.1_1.RULE index b73e8f7cab8..44630ca00e5 100644 --- a/src/licensedcode/data/rules/afl-1.1_1.RULE +++ b/src/licensedcode/data/rules/afl-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-1.1 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Academic Free License version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_1.yml b/src/licensedcode/data/rules/afl-1.1_1.yml deleted file mode 100644 index 2d3c2b91576..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-1.1_10.RULE b/src/licensedcode/data/rules/afl-1.1_10.RULE index b2ad58a9682..c2f5ee0d822 100644 --- a/src/licensedcode/data/rules/afl-1.1_10.RULE +++ b/src/licensedcode/data/rules/afl-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Academic Free License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_10.yml b/src/licensedcode/data/rules/afl-1.1_10.yml deleted file mode 100644 index 5de7e2be616..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.1_11.RULE b/src/licensedcode/data/rules/afl-1.1_11.RULE index 4dff348ed7c..897baa884e2 100644 --- a/src/licensedcode/data/rules/afl-1.1_11.RULE +++ b/src/licensedcode/data/rules/afl-1.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_11.yml b/src/licensedcode/data/rules/afl-1.1_11.yml deleted file mode 100644 index 5de7e2be616..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.1_12.RULE b/src/licensedcode/data/rules/afl-1.1_12.RULE index aa4b67a8742..ea8c7bcba65 100644 --- a/src/licensedcode/data/rules/afl-1.1_12.RULE +++ b/src/licensedcode/data/rules/afl-1.1_12.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-1.1 +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Academic Free License Version 1.1 diff --git a/src/licensedcode/data/rules/afl-1.1_12.yml b/src/licensedcode/data/rules/afl-1.1_12.yml deleted file mode 100644 index 10659e5e2b0..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-1.1 -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2002 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-1.1_13.RULE b/src/licensedcode/data/rules/afl-1.1_13.RULE index 1efe984029a..9bbd51936ce 100644 --- a/src/licensedcode/data/rules/afl-1.1_13.RULE +++ b/src/licensedcode/data/rules/afl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AFL-1.1 +--- + https://licenses.nuget.org/AFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_13.yml b/src/licensedcode/data/rules/afl-1.1_13.yml deleted file mode 100644 index 3c0948cf5de..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AFL-1.1 diff --git a/src/licensedcode/data/rules/afl-1.1_14.RULE b/src/licensedcode/data/rules/afl-1.1_14.RULE index 6d2c4ae1a18..b69101dca6f 100644 --- a/src/licensedcode/data/rules/afl-1.1_14.RULE +++ b/src/licensedcode/data/rules/afl-1.1_14.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_14.yml b/src/licensedcode/data/rules/afl-1.1_14.yml deleted file mode 100644 index 31d0d6d4bc1..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-1.1_15.RULE b/src/licensedcode/data/rules/afl-1.1_15.RULE index e0b181713e4..4786cd1b305 100644 --- a/src/licensedcode/data/rules/afl-1.1_15.RULE +++ b/src/licensedcode/data/rules/afl-1.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-1.1 +--- + {{AFL-1.1}} https://spdx.org/licenses/AFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_15.yml b/src/licensedcode/data/rules/afl-1.1_15.yml deleted file mode 100644 index 35e20322238..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-1.1 diff --git a/src/licensedcode/data/rules/afl-1.1_16.RULE b/src/licensedcode/data/rules/afl-1.1_16.RULE index c83bb58afe4..6bd2f98e9ff 100644 --- a/src/licensedcode/data/rules/afl-1.1_16.RULE +++ b/src/licensedcode/data/rules/afl-1.1_16.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-1.1 +--- + LICENSE {{AFL-1.1}} https://spdx.org/licenses/AFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_16.yml b/src/licensedcode/data/rules/afl-1.1_16.yml deleted file mode 100644 index 35e20322238..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-1.1 diff --git a/src/licensedcode/data/rules/afl-1.1_2.RULE b/src/licensedcode/data/rules/afl-1.1_2.RULE index 004e68e879a..b6d4ffce99b 100644 --- a/src/licensedcode/data/rules/afl-1.1_2.RULE +++ b/src/licensedcode/data/rules/afl-1.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/afl-1.1.txt +--- + http://www.opensource.org/licenses/afl-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_2.yml b/src/licensedcode/data/rules/afl-1.1_2.yml deleted file mode 100644 index 8e36242c03c..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/afl-1.1.txt diff --git a/src/licensedcode/data/rules/afl-1.1_3.RULE b/src/licensedcode/data/rules/afl-1.1_3.RULE index fa1b5dcae0c..074ec8e3ca4 100644 --- a/src/licensedcode/data/rules/afl-1.1_3.RULE +++ b/src/licensedcode/data/rules/afl-1.1_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-1.1 +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Academic Free License applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the diff --git a/src/licensedcode/data/rules/afl-1.1_3.yml b/src/licensedcode/data/rules/afl-1.1_3.yml deleted file mode 100644 index 3d7fdc03a1e..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-1.1 -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 2002 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-1.1_4.RULE b/src/licensedcode/data/rules/afl-1.1_4.RULE index 3d7b2d6f8f4..9e0b483f024 100644 --- a/src/licensedcode/data/rules/afl-1.1_4.RULE +++ b/src/licensedcode/data/rules/afl-1.1_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: afl-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Academic Free License Version 1.1 diff --git a/src/licensedcode/data/rules/afl-1.1_4.yml b/src/licensedcode/data/rules/afl-1.1_4.yml deleted file mode 100644 index 66040dd3811..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: afl-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2002 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-1.1_5.RULE b/src/licensedcode/data/rules/afl-1.1_5.RULE index 6a89a5694a7..daea8532d72 100644 --- a/src/licensedcode/data/rules/afl-1.1_5.RULE +++ b/src/licensedcode/data/rules/afl-1.1_5.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +relevance: 100 +--- + Academic Free License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_5.yml b/src/licensedcode/data/rules/afl-1.1_5.yml deleted file mode 100644 index 31d0d6d4bc1..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-1.1_6.RULE b/src/licensedcode/data/rules/afl-1.1_6.RULE index 97cddac50d5..69e3f49fd5e 100644 --- a/src/licensedcode/data/rules/afl-1.1_6.RULE +++ b/src/licensedcode/data/rules/afl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Academic Free License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_6.yml b/src/licensedcode/data/rules/afl-1.1_6.yml deleted file mode 100644 index 1f98b6f2734..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.1_7.RULE b/src/licensedcode/data/rules/afl-1.1_7.RULE index a2168ddaf45..7da3558cfad 100644 --- a/src/licensedcode/data/rules/afl-1.1_7.RULE +++ b/src/licensedcode/data/rules/afl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AFL-1.1 Academic Free License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_7.yml b/src/licensedcode/data/rules/afl-1.1_7.yml deleted file mode 100644 index 1f98b6f2734..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.1_8.RULE b/src/licensedcode/data/rules/afl-1.1_8.RULE index 4d01109b182..6801c74d55b 100644 --- a/src/licensedcode/data/rules/afl-1.1_8.RULE +++ b/src/licensedcode/data/rules/afl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Academic Free License v1.1 AFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_8.yml b/src/licensedcode/data/rules/afl-1.1_8.yml deleted file mode 100644 index 1f98b6f2734..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.1_9.RULE b/src/licensedcode/data/rules/afl-1.1_9.RULE index 4824aada206..fb447cd8631 100644 --- a/src/licensedcode/data/rules/afl-1.1_9.RULE +++ b/src/licensedcode/data/rules/afl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_9.yml b/src/licensedcode/data/rules/afl-1.1_9.yml deleted file mode 100644 index 5de7e2be616..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.1_url_1.RULE b/src/licensedcode/data/rules/afl-1.1_url_1.RULE index c2e7735896e..c49265a2d86 100644 --- a/src/licensedcode/data/rules/afl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/afl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-1.1 +--- + https://spdx.org/licenses/afl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_url_1.yml b/src/licensedcode/data/rules/afl-1.1_url_1.yml deleted file mode 100644 index 9ac8c973606..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-1.1 diff --git a/src/licensedcode/data/rules/afl-1.1_url_2.RULE b/src/licensedcode/data/rules/afl-1.1_url_2.RULE index 2a4f02f7e36..963c532a7c3 100644 --- a/src/licensedcode/data/rules/afl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/afl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-1.1.html +--- + https://spdx.org/licenses/afl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.1_url_2.yml b/src/licensedcode/data/rules/afl-1.1_url_2.yml deleted file mode 100644 index 19a05f59331..00000000000 --- a/src/licensedcode/data/rules/afl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-1.1.html diff --git a/src/licensedcode/data/rules/afl-1.2_1.RULE b/src/licensedcode/data/rules/afl-1.2_1.RULE index 89dd9a5447a..8b6931e0e08 100644 --- a/src/licensedcode/data/rules/afl-1.2_1.RULE +++ b/src/licensedcode/data/rules/afl-1.2_1.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +relevance: 100 +--- + Licensed under the Academic Free License version 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_1.yml b/src/licensedcode/data/rules/afl-1.2_1.yml deleted file mode 100644 index 54737674d14..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-1.2_10.RULE b/src/licensedcode/data/rules/afl-1.2_10.RULE index 0d63d5e585f..e844daf66d6 100644 --- a/src/licensedcode/data/rules/afl-1.2_10.RULE +++ b/src/licensedcode/data/rules/afl-1.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AFL-1.2 +--- + https://licenses.nuget.org/AFL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_10.yml b/src/licensedcode/data/rules/afl-1.2_10.yml deleted file mode 100644 index 54e2a139c03..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AFL-1.2 diff --git a/src/licensedcode/data/rules/afl-1.2_11.RULE b/src/licensedcode/data/rules/afl-1.2_11.RULE index 47953543e4f..6a4b2b54d8b 100644 --- a/src/licensedcode/data/rules/afl-1.2_11.RULE +++ b/src/licensedcode/data/rules/afl-1.2_11.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AFL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_11.yml b/src/licensedcode/data/rules/afl-1.2_11.yml deleted file mode 100644 index 54737674d14..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-1.2_12.RULE b/src/licensedcode/data/rules/afl-1.2_12.RULE index dc7310426f1..dc4f633851e 100644 --- a/src/licensedcode/data/rules/afl-1.2_12.RULE +++ b/src/licensedcode/data/rules/afl-1.2_12.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-1.2 +--- + {{AFL-1.2}} https://spdx.org/licenses/AFL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_12.yml b/src/licensedcode/data/rules/afl-1.2_12.yml deleted file mode 100644 index 0b75d96f7b4..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-1.2 diff --git a/src/licensedcode/data/rules/afl-1.2_13.RULE b/src/licensedcode/data/rules/afl-1.2_13.RULE index 44acb5485f4..aef75c66d75 100644 --- a/src/licensedcode/data/rules/afl-1.2_13.RULE +++ b/src/licensedcode/data/rules/afl-1.2_13.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-1.2 +--- + LICENSE {{AFL-1.2}} https://spdx.org/licenses/AFL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_13.yml b/src/licensedcode/data/rules/afl-1.2_13.yml deleted file mode 100644 index 0b75d96f7b4..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-1.2 diff --git a/src/licensedcode/data/rules/afl-1.2_2.RULE b/src/licensedcode/data/rules/afl-1.2_2.RULE index ec4916aa361..acfcd677b48 100644 --- a/src/licensedcode/data/rules/afl-1.2_2.RULE +++ b/src/licensedcode/data/rules/afl-1.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-1.2 +is_license_notice: yes +relevance: 100 +--- + # Copyright: Licensed under the Academic Free License version 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_2.yml b/src/licensedcode/data/rules/afl-1.2_2.yml deleted file mode 100644 index 4881fd6ac90..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-1.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-1.2_3.RULE b/src/licensedcode/data/rules/afl-1.2_3.RULE index 95f47c01953..3c07696ee35 100644 --- a/src/licensedcode/data/rules/afl-1.2_3.RULE +++ b/src/licensedcode/data/rules/afl-1.2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +relevance: 100 +--- + Academic Free License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_3.yml b/src/licensedcode/data/rules/afl-1.2_3.yml deleted file mode 100644 index 54737674d14..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-1.2_4.RULE b/src/licensedcode/data/rules/afl-1.2_4.RULE index a54a5acb1a8..81c41cd8253 100644 --- a/src/licensedcode/data/rules/afl-1.2_4.RULE +++ b/src/licensedcode/data/rules/afl-1.2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Academic Free License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_4.yml b/src/licensedcode/data/rules/afl-1.2_4.yml deleted file mode 100644 index 1ab90178f3b..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.2_5.RULE b/src/licensedcode/data/rules/afl-1.2_5.RULE index 7cef54fc6e8..9b814271f4c 100644 --- a/src/licensedcode/data/rules/afl-1.2_5.RULE +++ b/src/licensedcode/data/rules/afl-1.2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AFL-1.2 Academic Free License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_5.yml b/src/licensedcode/data/rules/afl-1.2_5.yml deleted file mode 100644 index 1ab90178f3b..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.2_6.RULE b/src/licensedcode/data/rules/afl-1.2_6.RULE index 294a1642b41..af401206c46 100644 --- a/src/licensedcode/data/rules/afl-1.2_6.RULE +++ b/src/licensedcode/data/rules/afl-1.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Academic Free License v1.2 AFL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_6.yml b/src/licensedcode/data/rules/afl-1.2_6.yml deleted file mode 100644 index 1ab90178f3b..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.2_7.RULE b/src/licensedcode/data/rules/afl-1.2_7.RULE index 3199925ef26..c00fca650a6 100644 --- a/src/licensedcode/data/rules/afl-1.2_7.RULE +++ b/src/licensedcode/data/rules/afl-1.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AFL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_7.yml b/src/licensedcode/data/rules/afl-1.2_7.yml deleted file mode 100644 index 3455d722616..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.2_8.RULE b/src/licensedcode/data/rules/afl-1.2_8.RULE index ced3f65d25d..f7b401af440 100644 --- a/src/licensedcode/data/rules/afl-1.2_8.RULE +++ b/src/licensedcode/data/rules/afl-1.2_8.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Academic Free License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_8.yml b/src/licensedcode/data/rules/afl-1.2_8.yml deleted file mode 100644 index 3455d722616..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.2_9.RULE b/src/licensedcode/data/rules/afl-1.2_9.RULE index 26a2373a162..fde268ebb9f 100644 --- a/src/licensedcode/data/rules/afl-1.2_9.RULE +++ b/src/licensedcode/data/rules/afl-1.2_9.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AFL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_9.yml b/src/licensedcode/data/rules/afl-1.2_9.yml deleted file mode 100644 index 3455d722616..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-1.2_url_1.RULE b/src/licensedcode/data/rules/afl-1.2_url_1.RULE index 0533722a913..a457a4f1f66 100644 --- a/src/licensedcode/data/rules/afl-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/afl-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-1.2 +--- + https://spdx.org/licenses/afl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_url_1.yml b/src/licensedcode/data/rules/afl-1.2_url_1.yml deleted file mode 100644 index b137f552494..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-1.2 diff --git a/src/licensedcode/data/rules/afl-1.2_url_2.RULE b/src/licensedcode/data/rules/afl-1.2_url_2.RULE index 583c214c7b4..29801a62062 100644 --- a/src/licensedcode/data/rules/afl-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/afl-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-1.2.html +--- + https://spdx.org/licenses/afl-1.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-1.2_url_2.yml b/src/licensedcode/data/rules/afl-1.2_url_2.yml deleted file mode 100644 index cbc4d7d9f4e..00000000000 --- a/src/licensedcode/data/rules/afl-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-1.2.html diff --git a/src/licensedcode/data/rules/afl-2.0.SPDX.RULE b/src/licensedcode/data/rules/afl-2.0.SPDX.RULE index 813400ae306..0c7bd48dd63 100644 --- a/src/licensedcode/data/rules/afl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/afl-2.0.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: afl-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2003 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Academic Free License v. 2.0 diff --git a/src/licensedcode/data/rules/afl-2.0.SPDX.yml b/src/licensedcode/data/rules/afl-2.0.SPDX.yml deleted file mode 100644 index ea50d0cbbb7..00000000000 --- a/src/licensedcode/data/rules/afl-2.0.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: afl-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2003 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-2.0_1.RULE b/src/licensedcode/data/rules/afl-2.0_1.RULE index 1ec1ceaa565..585c6a3a6cf 100644 --- a/src/licensedcode/data/rules/afl-2.0_1.RULE +++ b/src/licensedcode/data/rules/afl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Academic Free License version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_1.yml b/src/licensedcode/data/rules/afl-2.0_1.yml deleted file mode 100644 index f290e850a9a..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.0_10.RULE b/src/licensedcode/data/rules/afl-2.0_10.RULE index 9cbfa0657ef..3b7e2dfe498 100644 --- a/src/licensedcode/data/rules/afl-2.0_10.RULE +++ b/src/licensedcode/data/rules/afl-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AFL-2.0 +--- + https://licenses.nuget.org/AFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_10.yml b/src/licensedcode/data/rules/afl-2.0_10.yml deleted file mode 100644 index bcfb003b922..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AFL-2.0 diff --git a/src/licensedcode/data/rules/afl-2.0_11.RULE b/src/licensedcode/data/rules/afl-2.0_11.RULE index 8722731862c..6e50be84410 100644 --- a/src/licensedcode/data/rules/afl-2.0_11.RULE +++ b/src/licensedcode/data/rules/afl-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_11.yml b/src/licensedcode/data/rules/afl-2.0_11.yml deleted file mode 100644 index 80ce083e133..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.0_12.RULE b/src/licensedcode/data/rules/afl-2.0_12.RULE index 413ed375ce2..c54c61bd59f 100644 --- a/src/licensedcode/data/rules/afl-2.0_12.RULE +++ b/src/licensedcode/data/rules/afl-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-2.0 +--- + {{AFL-2.0}} https://spdx.org/licenses/AFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_12.yml b/src/licensedcode/data/rules/afl-2.0_12.yml deleted file mode 100644 index 2c1bbff6355..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-2.0 diff --git a/src/licensedcode/data/rules/afl-2.0_13.RULE b/src/licensedcode/data/rules/afl-2.0_13.RULE index 329bf8f9802..da9c77f7350 100644 --- a/src/licensedcode/data/rules/afl-2.0_13.RULE +++ b/src/licensedcode/data/rules/afl-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-2.0 +--- + LICENSE {{AFL-2.0}} https://spdx.org/licenses/AFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_13.yml b/src/licensedcode/data/rules/afl-2.0_13.yml deleted file mode 100644 index 2c1bbff6355..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-2.0 diff --git a/src/licensedcode/data/rules/afl-2.0_2.RULE b/src/licensedcode/data/rules/afl-2.0_2.RULE index c41f956984c..078f9d242a4 100644 --- a/src/licensedcode/data/rules/afl-2.0_2.RULE +++ b/src/licensedcode/data/rules/afl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 100 +--- + AFL-2.0 Academic Free License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_2.yml b/src/licensedcode/data/rules/afl-2.0_2.yml deleted file mode 100644 index 80ce083e133..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.0_3.RULE b/src/licensedcode/data/rules/afl-2.0_3.RULE index 4ef500a63b3..6deae4e6eb5 100644 --- a/src/licensedcode/data/rules/afl-2.0_3.RULE +++ b/src/licensedcode/data/rules/afl-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 100 +--- + Academic Free License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_3.yml b/src/licensedcode/data/rules/afl-2.0_3.yml deleted file mode 100644 index 80ce083e133..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.0_4.RULE b/src/licensedcode/data/rules/afl-2.0_4.RULE index a0ae9b84bc4..863cbf6ef5a 100644 --- a/src/licensedcode/data/rules/afl-2.0_4.RULE +++ b/src/licensedcode/data/rules/afl-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://flashlinux.org.uk/licenses/licenses/AFL-2.0.txt +--- + http://flashlinux.org.uk/licenses/licenses/AFL-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_4.yml b/src/licensedcode/data/rules/afl-2.0_4.yml deleted file mode 100644 index 864c00e80cb..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://flashlinux.org.uk/licenses/licenses/AFL-2.0.txt diff --git a/src/licensedcode/data/rules/afl-2.0_5.RULE b/src/licensedcode/data/rules/afl-2.0_5.RULE index 4a83d804b45..0b4dff4c530 100644 --- a/src/licensedcode/data/rules/afl-2.0_5.RULE +++ b/src/licensedcode/data/rules/afl-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Academic Free License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_5.yml b/src/licensedcode/data/rules/afl-2.0_5.yml deleted file mode 100644 index b18d87cb757..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.0_6.RULE b/src/licensedcode/data/rules/afl-2.0_6.RULE index ccf521f1142..037212d2ec4 100644 --- a/src/licensedcode/data/rules/afl-2.0_6.RULE +++ b/src/licensedcode/data/rules/afl-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Academic Free License v2.0 AFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_6.yml b/src/licensedcode/data/rules/afl-2.0_6.yml deleted file mode 100644 index b18d87cb757..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.0_7.RULE b/src/licensedcode/data/rules/afl-2.0_7.RULE index 193f8876e4f..1b5deef3a96 100644 --- a/src/licensedcode/data/rules/afl-2.0_7.RULE +++ b/src/licensedcode/data/rules/afl-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_7.yml b/src/licensedcode/data/rules/afl-2.0_7.yml deleted file mode 100644 index 1962ea96b30..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.0_8.RULE b/src/licensedcode/data/rules/afl-2.0_8.RULE index 41787fdccfb..58ed69f7a69 100644 --- a/src/licensedcode/data/rules/afl-2.0_8.RULE +++ b/src/licensedcode/data/rules/afl-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Academic Free License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_8.yml b/src/licensedcode/data/rules/afl-2.0_8.yml deleted file mode 100644 index 1962ea96b30..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.0_9.RULE b/src/licensedcode/data/rules/afl-2.0_9.RULE index f6de793fe30..083a304a648 100644 --- a/src/licensedcode/data/rules/afl-2.0_9.RULE +++ b/src/licensedcode/data/rules/afl-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_9.yml b/src/licensedcode/data/rules/afl-2.0_9.yml deleted file mode 100644 index 1962ea96b30..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus.RULE index c101e6afbb1..b607f9eefb6 100644 --- a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus.RULE @@ -1,3 +1,10 @@ +--- +license_expression: afl-2.0 OR lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +notes: the reference is LGPL 2v eventhough it mentions lesser (which would be 2.1+) +--- + Licensed under the Academic Free License version 2.0 Or under the following terms: This library is free software; you can redistribute it and/or @@ -11,4 +18,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. \ No newline at end of file +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus.yml b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus.yml deleted file mode 100644 index bfc3c00bbf2..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: afl-2.0 OR lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -notes: the reference is LGPL 2v eventhough it mentions lesser (which would be 2.1+) diff --git a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_1.RULE index 12213fdc5ea..b0197b88137 100644 --- a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: afl-2.0 OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * Licensed under the Academic Free License version 2.0 * Or under the following terms: * diff --git a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index 081831c0450..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.0 OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_2.RULE index 0d2c7109e40..c704071443a 100644 --- a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: afl-2.0 OR lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * Licensed under the Academic Free License version 2.0 * Or under the following terms: * diff --git a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index a24db9ef1b6..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.0 OR lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_3.RULE index b6ebe8dd39f..68ecb029f34 100644 --- a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-2.0 OR lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 2003 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + Licensed under the Academic Free License version 2.0 (below) Or under the following terms: diff --git a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_3.yml deleted file mode 100644 index 67c1301419c..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_or_lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-2.0 OR lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 2003 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-2.0_url_1.RULE b/src/licensedcode/data/rules/afl-2.0_url_1.RULE index ffdc3820157..78546f2f52e 100644 --- a/src/licensedcode/data/rules/afl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/afl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-2.0 +--- + https://spdx.org/licenses/afl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_url_1.yml b/src/licensedcode/data/rules/afl-2.0_url_1.yml deleted file mode 100644 index d8bf878fc3d..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-2.0 diff --git a/src/licensedcode/data/rules/afl-2.0_url_2.RULE b/src/licensedcode/data/rules/afl-2.0_url_2.RULE index 1607d64594c..39087c47d22 100644 --- a/src/licensedcode/data/rules/afl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/afl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-2.0.html +--- + https://spdx.org/licenses/afl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.0_url_2.yml b/src/licensedcode/data/rules/afl-2.0_url_2.yml deleted file mode 100644 index 66babf616ae..00000000000 --- a/src/licensedcode/data/rules/afl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-2.0.html diff --git a/src/licensedcode/data/rules/afl-2.1_1.RULE b/src/licensedcode/data/rules/afl-2.1_1.RULE index 60da64e4fc7..6ca99db13aa 100644 --- a/src/licensedcode/data/rules/afl-2.1_1.RULE +++ b/src/licensedcode/data/rules/afl-2.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +--- + Licensed under the Academic Free License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_1.yml b/src/licensedcode/data/rules/afl-2.1_1.yml deleted file mode 100644 index f3e7ef6ac0b..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_10.RULE b/src/licensedcode/data/rules/afl-2.1_10.RULE index f1f21f7e181..b9eaa8f6f3f 100644 --- a/src/licensedcode/data/rules/afl-2.1_10.RULE +++ b/src/licensedcode/data/rules/afl-2.1_10.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_tag: yes +relevance: 100 +--- + License: AFL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_10.yml b/src/licensedcode/data/rules/afl-2.1_10.yml deleted file mode 100644 index 329fcfcd73a..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_11.RULE b/src/licensedcode/data/rules/afl-2.1_11.RULE index fc0db4579c0..0bbdaccd1cd 100644 --- a/src/licensedcode/data/rules/afl-2.1_11.RULE +++ b/src/licensedcode/data/rules/afl-2.1_11.RULE @@ -1,2 +1,8 @@ +--- +license_expression: afl-2.1 +is_license_notice: yes +relevance: 100 +--- + License: AFL-2.1 This document is licensed under the Academic Free License, Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_11.yml b/src/licensedcode/data/rules/afl-2.1_11.yml deleted file mode 100644 index aeca0b77a3c..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_12.RULE b/src/licensedcode/data/rules/afl-2.1_12.RULE index 78f4f915a98..685c306dbf1 100644 --- a/src/licensedcode/data/rules/afl-2.1_12.RULE +++ b/src/licensedcode/data/rules/afl-2.1_12.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_notice: yes +relevance: 100 +--- + This document is licensed under the Academic Free License, Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_12.yml b/src/licensedcode/data/rules/afl-2.1_12.yml deleted file mode 100644 index aeca0b77a3c..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_13.RULE b/src/licensedcode/data/rules/afl-2.1_13.RULE index add23f4a548..e3410c21e7e 100644 --- a/src/licensedcode/data/rules/afl-2.1_13.RULE +++ b/src/licensedcode/data/rules/afl-2.1_13.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 90 +--- + END OF ACADEMIC FREE LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_13.yml b/src/licensedcode/data/rules/afl-2.1_13.yml deleted file mode 100644 index 0f621767633..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/afl-2.1_14.RULE b/src/licensedcode/data/rules/afl-2.1_14.RULE index 82bf13315d2..31a1dae15af 100644 --- a/src/licensedcode/data/rules/afl-2.1_14.RULE +++ b/src/licensedcode/data/rules/afl-2.1_14.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 90 +--- + ACADEMIC FREE LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_14.yml b/src/licensedcode/data/rules/afl-2.1_14.yml deleted file mode 100644 index 0f621767633..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/afl-2.1_15.RULE b/src/licensedcode/data/rules/afl-2.1_15.RULE index a455e5cc256..183b9ff316c 100644 --- a/src/licensedcode/data/rules/afl-2.1_15.RULE +++ b/src/licensedcode/data/rules/afl-2.1_15.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Academic Free License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_15.yml b/src/licensedcode/data/rules/afl-2.1_15.yml deleted file mode 100644 index e36bda2d2b9..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.1_16.RULE b/src/licensedcode/data/rules/afl-2.1_16.RULE index f5f26922827..0b3b4cc8cf9 100644 --- a/src/licensedcode/data/rules/afl-2.1_16.RULE +++ b/src/licensedcode/data/rules/afl-2.1_16.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AFL-2.1 Academic Free License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_16.yml b/src/licensedcode/data/rules/afl-2.1_16.yml deleted file mode 100644 index e36bda2d2b9..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.1_17.RULE b/src/licensedcode/data/rules/afl-2.1_17.RULE index f07e0eae9b0..11598408d1d 100644 --- a/src/licensedcode/data/rules/afl-2.1_17.RULE +++ b/src/licensedcode/data/rules/afl-2.1_17.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Academic Free License v2.1 AFL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_17.yml b/src/licensedcode/data/rules/afl-2.1_17.yml deleted file mode 100644 index e36bda2d2b9..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.1_18.RULE b/src/licensedcode/data/rules/afl-2.1_18.RULE index 017855fc81a..83ea45462cb 100644 --- a/src/licensedcode/data/rules/afl-2.1_18.RULE +++ b/src/licensedcode/data/rules/afl-2.1_18.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Academic Free License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_18.yml b/src/licensedcode/data/rules/afl-2.1_18.yml deleted file mode 100644 index fbff2de8591..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.1_19.RULE b/src/licensedcode/data/rules/afl-2.1_19.RULE index 1f233f13a16..5d6e8618ef6 100644 --- a/src/licensedcode/data/rules/afl-2.1_19.RULE +++ b/src/licensedcode/data/rules/afl-2.1_19.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AFL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_19.yml b/src/licensedcode/data/rules/afl-2.1_19.yml deleted file mode 100644 index fbff2de8591..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-2.1_2.RULE b/src/licensedcode/data/rules/afl-2.1_2.RULE index b0cc51428c6..9b55815ec91 100644 --- a/src/licensedcode/data/rules/afl-2.1_2.RULE +++ b/src/licensedcode/data/rules/afl-2.1_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: afl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Academic Free License, v. 2.1: ********************************** diff --git a/src/licensedcode/data/rules/afl-2.1_2.yml b/src/licensedcode/data/rules/afl-2.1_2.yml deleted file mode 100644 index 538e0ae08dc..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2003-2004 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-2.1_20.RULE b/src/licensedcode/data/rules/afl-2.1_20.RULE index 9f59be6c0c9..fe3c46112e0 100644 --- a/src/licensedcode/data/rules/afl-2.1_20.RULE +++ b/src/licensedcode/data/rules/afl-2.1_20.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-2.1 +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Academic Free License, v. 2.1: ********************************** diff --git a/src/licensedcode/data/rules/afl-2.1_20.yml b/src/licensedcode/data/rules/afl-2.1_20.yml deleted file mode 100644 index d1e62d0e7fd..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_20.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-2.1 -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2003-2004 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-2.1_21.RULE b/src/licensedcode/data/rules/afl-2.1_21.RULE index ea2fc5fd13b..50016323bcd 100644 --- a/src/licensedcode/data/rules/afl-2.1_21.RULE +++ b/src/licensedcode/data/rules/afl-2.1_21.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +--- + AFLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_21.yml b/src/licensedcode/data/rules/afl-2.1_21.yml deleted file mode 100644 index f3e7ef6ac0b..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_22.RULE b/src/licensedcode/data/rules/afl-2.1_22.RULE index a4518ee7353..5b367851654 100644 --- a/src/licensedcode/data/rules/afl-2.1_22.RULE +++ b/src/licensedcode/data/rules/afl-2.1_22.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AFL-2.1 +--- + https://licenses.nuget.org/AFL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_22.yml b/src/licensedcode/data/rules/afl-2.1_22.yml deleted file mode 100644 index 06bab3ef386..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AFL-2.1 diff --git a/src/licensedcode/data/rules/afl-2.1_23.RULE b/src/licensedcode/data/rules/afl-2.1_23.RULE index 4ba5e3aa9de..72775dad647 100644 --- a/src/licensedcode/data/rules/afl-2.1_23.RULE +++ b/src/licensedcode/data/rules/afl-2.1_23.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AFL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_23.yml b/src/licensedcode/data/rules/afl-2.1_23.yml deleted file mode 100644 index f3e7ef6ac0b..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_24.RULE b/src/licensedcode/data/rules/afl-2.1_24.RULE index 00f9135b408..bbeae691746 100644 --- a/src/licensedcode/data/rules/afl-2.1_24.RULE +++ b/src/licensedcode/data/rules/afl-2.1_24.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-2.1 +--- + LICENSE {{AFL-2.1}} https://spdx.org/licenses/AFL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_24.yml b/src/licensedcode/data/rules/afl-2.1_24.yml deleted file mode 100644 index ce674cbaa69..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-2.1 diff --git a/src/licensedcode/data/rules/afl-2.1_25.RULE b/src/licensedcode/data/rules/afl-2.1_25.RULE index 786fecc6819..540f3b8f918 100644 --- a/src/licensedcode/data/rules/afl-2.1_25.RULE +++ b/src/licensedcode/data/rules/afl-2.1_25.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-2.1 +--- + {{AFL-2.1}} https://spdx.org/licenses/AFL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_25.yml b/src/licensedcode/data/rules/afl-2.1_25.yml deleted file mode 100644 index ce674cbaa69..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-2.1 diff --git a/src/licensedcode/data/rules/afl-2.1_3.RULE b/src/licensedcode/data/rules/afl-2.1_3.RULE index f78746a5586..982109d9d4b 100644 --- a/src/licensedcode/data/rules/afl-2.1_3.RULE +++ b/src/licensedcode/data/rules/afl-2.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.rosenlaw.com/afl21.htm +--- + http://www.rosenlaw.com/afl21.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_3.yml b/src/licensedcode/data/rules/afl-2.1_3.yml deleted file mode 100644 index 1b29a32add7..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.rosenlaw.com/afl21.htm diff --git a/src/licensedcode/data/rules/afl-2.1_4.RULE b/src/licensedcode/data/rules/afl-2.1_4.RULE index 6b7d8e6f919..381b347c768 100644 --- a/src/licensedcode/data/rules/afl-2.1_4.RULE +++ b/src/licensedcode/data/rules/afl-2.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/afl-2.1.php +--- + http://opensource.org/licenses/afl-2.1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_4.yml b/src/licensedcode/data/rules/afl-2.1_4.yml deleted file mode 100644 index 995a107aa68..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/afl-2.1.php diff --git a/src/licensedcode/data/rules/afl-2.1_5.RULE b/src/licensedcode/data/rules/afl-2.1_5.RULE index adc0c828a17..9223bf3e336 100644 --- a/src/licensedcode/data/rules/afl-2.1_5.RULE +++ b/src/licensedcode/data/rules/afl-2.1_5.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +--- + Academic Free License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_5.yml b/src/licensedcode/data/rules/afl-2.1_5.yml deleted file mode 100644 index f3e7ef6ac0b..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_6.RULE b/src/licensedcode/data/rules/afl-2.1_6.RULE index 7a9c5554759..716c635bfef 100644 --- a/src/licensedcode/data/rules/afl-2.1_6.RULE +++ b/src/licensedcode/data/rules/afl-2.1_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: afl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + ------------------------------------------------------------------------------- The Academic Free License, v. 2.1: ********************************** @@ -151,4 +160,4 @@ to interfere with or be responsible for such uses by You. This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written -permission of its copyright owner. +permission of its copyright owner. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_6.yml b/src/licensedcode/data/rules/afl-2.1_6.yml deleted file mode 100644 index 538e0ae08dc..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2003-2004 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-2.1_7.RULE b/src/licensedcode/data/rules/afl-2.1_7.RULE index f5d1d58734c..2338df6fceb 100644 --- a/src/licensedcode/data/rules/afl-2.1_7.RULE +++ b/src/licensedcode/data/rules/afl-2.1_7.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +--- + Academic Free License v. 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_7.yml b/src/licensedcode/data/rules/afl-2.1_7.yml deleted file mode 100644 index f3e7ef6ac0b..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_8.RULE b/src/licensedcode/data/rules/afl-2.1_8.RULE index 0cfd0d4d27d..12c2530487f 100644 --- a/src/licensedcode/data/rules/afl-2.1_8.RULE +++ b/src/licensedcode/data/rules/afl-2.1_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-2.1 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: Licensed under the Academic Free License version 2.1 diff --git a/src/licensedcode/data/rules/afl-2.1_8.yml b/src/licensedcode/data/rules/afl-2.1_8.yml deleted file mode 100644 index 044aa32e03b..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-2.1 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2003-2004 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/afl-2.1_9.RULE b/src/licensedcode/data/rules/afl-2.1_9.RULE index b765486a4a1..94f21c138b4 100644 --- a/src/licensedcode/data/rules/afl-2.1_9.RULE +++ b/src/licensedcode/data/rules/afl-2.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 100 +--- + Academic Free License (AFL-2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_9.yml b/src/licensedcode/data/rules/afl-2.1_9.yml deleted file mode 100644 index f3e7ef6ac0b..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/afl-2.1_and_gpl-2.0-plus_1.RULE index 07c58274c92..13e10949bfa 100644 --- a/src/licensedcode/data/rules/afl-2.1_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/afl-2.1_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: afl-2.1 AND gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 99 +--- + Licensed under the Academic Free License version 2.1 This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/afl-2.1_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/afl-2.1_and_gpl-2.0-plus_1.yml deleted file mode 100644 index 5ddf888893c..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 AND gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new.RULE b/src/licensedcode/data/rules/afl-2.1_or_bsd-new.RULE index bd7182407b8..eacbe63137c 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_bsd-new.RULE @@ -1,2 +1,9 @@ +--- +license_expression: afl-2.1 OR bsd-new +is_license_reference: yes +ignorable_urls: + - http://dojotoolkit.org/license +--- + Available via Academic Free License >= 2.1 OR the modified BSD license. -see: http://dojotoolkit.org/license for details +see: http://dojotoolkit.org/license for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new.yml b/src/licensedcode/data/rules/afl-2.1_or_bsd-new.yml deleted file mode 100644 index 4a6c63b032c..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: afl-2.1 OR bsd-new -is_license_reference: yes -ignorable_urls: - - http://dojotoolkit.org/license diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_1.RULE b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_1.RULE index dc6ec7fc20d..6c81dafd60a 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 OR bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://dojotoolkit.org/license +--- + see: http://dojotoolkit.org/license for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_1.yml b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_1.yml deleted file mode 100644 index e20e99529e1..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 OR bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://dojotoolkit.org/license diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_2.RULE b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_2.RULE index 052bca0cc03..794ba0fe1c9 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_2.RULE @@ -1 +1,7 @@ -Available via Academic Free License >= 2.1 OR the modified BSD license. +--- +license_expression: afl-2.1 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + +Available via Academic Free License >= 2.1 OR the modified BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_2.yml b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_2.yml deleted file mode 100644 index 1b1bdf8671a..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_3.RULE b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_3.RULE index 3482e8341cf..e6de76e7339 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_3.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 OR bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://dojotoolkit.org/license +--- + http://dojotoolkit.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_3.yml b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_3.yml deleted file mode 100644 index e20e99529e1..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 OR bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://dojotoolkit.org/license diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_4.RULE b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_4.RULE index e01716831d4..abcb8279562 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_4.RULE @@ -1 +1,7 @@ -The text of the AFL and BSD licenses are reproduced below. \ No newline at end of file +--- +license_expression: afl-2.1 OR bsd-new +is_license_reference: yes +relevance: 100 +--- + +The text of the AFL and BSD licenses are reproduced below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_4.yml b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_4.yml deleted file mode 100644 index b94dc80beb0..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 OR bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_5.RULE b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_5.RULE index fa81759a6d3..c1bd8e42535 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_5.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_5.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-2.1 OR bsd-new +is_license_reference: yes +relevance: 99 +--- + AFL/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_5.yml b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_5.yml deleted file mode 100644 index c7fe775c337..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-2.1 OR bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_6.RULE b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_6.RULE index 5d666673156..86993e5f9d9 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_6.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_6.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 OR bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +notes: This is found in Dojo as a reference to Dojo's license +--- + // this file courtesy of the TurboAjax Group, licensed under a Dojo CLA \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_6.yml b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_6.yml deleted file mode 100644 index 1295971814f..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 OR bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -notes: This is found in Dojo as a reference to Dojo's license diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_7.RULE b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_7.RULE index c7e101b2cfc..c7d2bd6be9f 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_7.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_7.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 OR bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +notes: This is found in Dojo as a reference to Dojo's license +--- + licensed under a Dojo CLA \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_7.yml b/src/licensedcode/data/rules/afl-2.1_or_bsd-new_7.yml deleted file mode 100644 index 1295971814f..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_bsd-new_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 OR bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -notes: This is found in Dojo as a reference to Dojo's license diff --git a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0-plus_1.RULE index 97fe2ccff68..1b466cff9f3 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: afl-2.1 OR gpl-2.0-plus +is_license_notice: yes +--- + D-Bus is licensed to you under your choice of the Academic Free License version 2.1, or the GNU General Public License version 2 (or, at your option any later version). diff --git a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0-plus_1.yml deleted file mode 100644 index f9be7d64dfa..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: afl-2.1 OR gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_1.RULE index 660f55d96b5..6d89743949d 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: afl-2.1 OR gpl-2.0 +is_license_notice: yes +--- + is licensed to you under your choice of the Academic Free License version 2.1, or the GNU General Public License version 2. Both licenses are included here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_1.yml deleted file mode 100644 index 76b890ada1d..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: afl-2.1 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_and_gpl-2.0_1.RULE index f1af83f6fa9..b7a71ce2e3f 100644 --- a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_and_gpl-2.0_1.RULE @@ -1,5 +1,9 @@ +--- +license_expression: (afl-2.1 OR gpl-2.0) AND gpl-2.0 +is_license_notice: yes +--- + is licensed to you under your choice of the Academic Free License version 2.1, or the GNU General Public License version 2. Both licenses are included here. Some of the standalone binaries are -under the GPL only; - +under the GPL only; \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_and_gpl-2.0_1.yml deleted file mode 100644 index c254c35cad7..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_or_gpl-2.0_and_gpl-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: (afl-2.1 OR gpl-2.0) AND gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/afl-2.1_url_1.RULE b/src/licensedcode/data/rules/afl-2.1_url_1.RULE index c8abcbd5f94..a80ff70a946 100644 --- a/src/licensedcode/data/rules/afl-2.1_url_1.RULE +++ b/src/licensedcode/data/rules/afl-2.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-2.1 +--- + https://spdx.org/licenses/afl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_url_1.yml b/src/licensedcode/data/rules/afl-2.1_url_1.yml deleted file mode 100644 index e356309f8e0..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-2.1 diff --git a/src/licensedcode/data/rules/afl-2.1_url_2.RULE b/src/licensedcode/data/rules/afl-2.1_url_2.RULE index 4759c27475f..2f215cedf7d 100644 --- a/src/licensedcode/data/rules/afl-2.1_url_2.RULE +++ b/src/licensedcode/data/rules/afl-2.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-2.1.html +--- + https://spdx.org/licenses/afl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-2.1_url_2.yml b/src/licensedcode/data/rules/afl-2.1_url_2.yml deleted file mode 100644 index b1911733ec3..00000000000 --- a/src/licensedcode/data/rules/afl-2.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-2.1.html diff --git a/src/licensedcode/data/rules/afl-3.0.RULE b/src/licensedcode/data/rules/afl-3.0.RULE index 6e12cd38f09..6101b8182e9 100644 --- a/src/licensedcode/data/rules/afl-3.0.RULE +++ b/src/licensedcode/data/rules/afl-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/afl-3.0.php +--- + http://opensource.org/licenses/afl-3.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0.SPDX.RULE b/src/licensedcode/data/rules/afl-3.0.SPDX.RULE index 0e1aad8b86b..ba49e5f4538 100644 --- a/src/licensedcode/data/rules/afl-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/afl-3.0.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: afl-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright r 2005 Lawrence Rosen +ignorable_holders: + - r Lawrence Rosen +--- + Academic Free License ("AFL") v. 3.0 This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: Licensed under the Academic Free License version 3.0 diff --git a/src/licensedcode/data/rules/afl-3.0.SPDX.yml b/src/licensedcode/data/rules/afl-3.0.SPDX.yml deleted file mode 100644 index 7589f2a0af5..00000000000 --- a/src/licensedcode/data/rules/afl-3.0.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: afl-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright r 2005 Lawrence Rosen -ignorable_holders: - - r Lawrence Rosen diff --git a/src/licensedcode/data/rules/afl-3.0.yml b/src/licensedcode/data/rules/afl-3.0.yml deleted file mode 100644 index e10806193c2..00000000000 --- a/src/licensedcode/data/rules/afl-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_1.RULE b/src/licensedcode/data/rules/afl-3.0_1.RULE index 7da96f0fca1..6fc7abe6905 100644 --- a/src/licensedcode/data/rules/afl-3.0_1.RULE +++ b/src/licensedcode/data/rules/afl-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.rosenlaw.com/OSL3.0-explained.pdf +--- + http://www.rosenlaw.com/OSL3.0-explained.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_1.yml b/src/licensedcode/data/rules/afl-3.0_1.yml deleted file mode 100644 index cadb97022bb..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.rosenlaw.com/OSL3.0-explained.pdf diff --git a/src/licensedcode/data/rules/afl-3.0_10.RULE b/src/licensedcode/data/rules/afl-3.0_10.RULE index 48003e86c02..eefbb8eb474 100644 --- a/src/licensedcode/data/rules/afl-3.0_10.RULE +++ b/src/licensedcode/data/rules/afl-3.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/AFL-3.0 +--- + Licensed under the [Academic Free License](https://opensource.org/licenses/AFL-3.0) version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_10.yml b/src/licensedcode/data/rules/afl-3.0_10.yml deleted file mode 100644 index 613ebbe9c90..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/AFL-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_11.RULE b/src/licensedcode/data/rules/afl-3.0_11.RULE index d40bc135b8e..653dfed0aa5 100644 --- a/src/licensedcode/data/rules/afl-3.0_11.RULE +++ b/src/licensedcode/data/rules/afl-3.0_11.RULE @@ -1,3 +1,15 @@ +--- +license_expression: afl-3.0 +is_license_text: yes +relevance: 99 +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +ignorable_urls: + - https://opensource.org/licenses/AFL-3.0 +--- + Licensed under the [Academic Free License](https://opensource.org/licenses/AFL-3.0) version 3.0 1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following: diff --git a/src/licensedcode/data/rules/afl-3.0_11.yml b/src/licensedcode/data/rules/afl-3.0_11.yml deleted file mode 100644 index 5382b54b58c..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_11.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: afl-3.0 -is_license_text: yes -relevance: 99 -ignorable_copyrights: - - Copyright (c) 2005 Lawrence Rosen -ignorable_holders: - - Lawrence Rosen -ignorable_urls: - - https://opensource.org/licenses/AFL-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_12.RULE b/src/licensedcode/data/rules/afl-3.0_12.RULE index 0411cae0fa7..d2572b598e0 100644 --- a/src/licensedcode/data/rules/afl-3.0_12.RULE +++ b/src/licensedcode/data/rules/afl-3.0_12.RULE @@ -1,2 +1,8 @@ +--- +license_expression: afl-3.0 +is_license_tag: yes +relevance: 100 +--- + license": [ "AFL-3.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_12.yml b/src/licensedcode/data/rules/afl-3.0_12.yml deleted file mode 100644 index d02161f6148..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_13.RULE b/src/licensedcode/data/rules/afl-3.0_13.RULE index 1b97abce2bf..0d062692d6a 100644 --- a/src/licensedcode/data/rules/afl-3.0_13.RULE +++ b/src/licensedcode/data/rules/afl-3.0_13.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://opensource.org/licenses/afl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) diff --git a/src/licensedcode/data/rules/afl-3.0_13.yml b/src/licensedcode/data/rules/afl-3.0_13.yml deleted file mode 100644 index 5d7e24839e7..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_13.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_14.RULE b/src/licensedcode/data/rules/afl-3.0_14.RULE index ecc32b86ea3..865da218652 100644 --- a/src/licensedcode/data/rules/afl-3.0_14.RULE +++ b/src/licensedcode/data/rules/afl-3.0_14.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://opensource.org/licenses/afl-3.0.php +--- + * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: diff --git a/src/licensedcode/data/rules/afl-3.0_14.yml b/src/licensedcode/data/rules/afl-3.0_14.yml deleted file mode 100644 index 5d7e24839e7..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_15.RULE b/src/licensedcode/data/rules/afl-3.0_15.RULE index 1452d4bcfba..30d81e9ae8e 100644 --- a/src/licensedcode/data/rules/afl-3.0_15.RULE +++ b/src/licensedcode/data/rules/afl-3.0_15.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://opensource.org/licenses/afl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) diff --git a/src/licensedcode/data/rules/afl-3.0_15.yml b/src/licensedcode/data/rules/afl-3.0_15.yml deleted file mode 100644 index 5d7e24839e7..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_15.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_16.RULE b/src/licensedcode/data/rules/afl-3.0_16.RULE index a917e4b0c55..8ef226de876 100644 --- a/src/licensedcode/data/rules/afl-3.0_16.RULE +++ b/src/licensedcode/data/rules/afl-3.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/afl-3.0.php +--- + * @license https://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_16.yml b/src/licensedcode/data/rules/afl-3.0_16.yml deleted file mode 100644 index e1dfe58097f..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_17.RULE b/src/licensedcode/data/rules/afl-3.0_17.RULE index b8f387640e9..aa850113e33 100644 --- a/src/licensedcode/data/rules/afl-3.0_17.RULE +++ b/src/licensedcode/data/rules/afl-3.0_17.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://opensource.org/licenses/afl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) diff --git a/src/licensedcode/data/rules/afl-3.0_17.yml b/src/licensedcode/data/rules/afl-3.0_17.yml deleted file mode 100644 index f5140649ac5..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_17.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_18.RULE b/src/licensedcode/data/rules/afl-3.0_18.RULE index 4ab22724c96..c7bd4da423c 100644 --- a/src/licensedcode/data/rules/afl-3.0_18.RULE +++ b/src/licensedcode/data/rules/afl-3.0_18.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://opensource.org/licenses/afl-3.0.php +--- + * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: diff --git a/src/licensedcode/data/rules/afl-3.0_18.yml b/src/licensedcode/data/rules/afl-3.0_18.yml deleted file mode 100644 index f5140649ac5..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_18.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_19.RULE b/src/licensedcode/data/rules/afl-3.0_19.RULE index 024d287f326..fefb4f5de70 100644 --- a/src/licensedcode/data/rules/afl-3.0_19.RULE +++ b/src/licensedcode/data/rules/afl-3.0_19.RULE @@ -1,3 +1,13 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://opensource.org/licenses/afl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) diff --git a/src/licensedcode/data/rules/afl-3.0_19.yml b/src/licensedcode/data/rules/afl-3.0_19.yml deleted file mode 100644 index f5140649ac5..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_2.RULE b/src/licensedcode/data/rules/afl-3.0_2.RULE index 88a18ae6379..93a3999fbd9 100644 --- a/src/licensedcode/data/rules/afl-3.0_2.RULE +++ b/src/licensedcode/data/rules/afl-3.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under the Academic Free License, version 3.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_2.yml b/src/licensedcode/data/rules/afl-3.0_2.yml deleted file mode 100644 index bece7eb45d5..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_20.RULE b/src/licensedcode/data/rules/afl-3.0_20.RULE index b356ae25874..af5aa5452a5 100644 --- a/src/licensedcode/data/rules/afl-3.0_20.RULE +++ b/src/licensedcode/data/rules/afl-3.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/afl-3.0.php +--- + http://www.opensource.org/licenses/afl-3.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_20.yml b/src/licensedcode/data/rules/afl-3.0_20.yml deleted file mode 100644 index 72a129e5348..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_21.RULE b/src/licensedcode/data/rules/afl-3.0_21.RULE index c62d5f0d906..5b936db0e43 100644 --- a/src/licensedcode/data/rules/afl-3.0_21.RULE +++ b/src/licensedcode/data/rules/afl-3.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/afl-3.0 +--- + http://opensource.org/licenses/afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_21.yml b/src/licensedcode/data/rules/afl-3.0_21.yml deleted file mode 100644 index f9809f22caa..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/afl-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_22.RULE b/src/licensedcode/data/rules/afl-3.0_22.RULE index ca1c148d0b8..dc9a9b3480c 100644 --- a/src/licensedcode/data/rules/afl-3.0_22.RULE +++ b/src/licensedcode/data/rules/afl-3.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/afl-3.0.html +--- + http://opensource.org/licenses/afl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_22.yml b/src/licensedcode/data/rules/afl-3.0_22.yml deleted file mode 100644 index 96a96311328..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/afl-3.0.html diff --git a/src/licensedcode/data/rules/afl-3.0_23.RULE b/src/licensedcode/data/rules/afl-3.0_23.RULE index b8cf2d5d30e..6b5257f6a58 100644 --- a/src/licensedcode/data/rules/afl-3.0_23.RULE +++ b/src/licensedcode/data/rules/afl-3.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/afl-3.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_23.yml b/src/licensedcode/data/rules/afl-3.0_23.yml deleted file mode 100644 index 1a1a7043b3e..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_24.RULE b/src/licensedcode/data/rules/afl-3.0_24.RULE index c74df1f5cdc..05ba810ead6 100644 --- a/src/licensedcode/data/rules/afl-3.0_24.RULE +++ b/src/licensedcode/data/rules/afl-3.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/afl-3.0.php +--- + www.opensource.org/licenses/afl-3.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_24.yml b/src/licensedcode/data/rules/afl-3.0_24.yml deleted file mode 100644 index 72a129e5348..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_25.RULE b/src/licensedcode/data/rules/afl-3.0_25.RULE index 0cc16dfdc1d..361e53fcda4 100644 --- a/src/licensedcode/data/rules/afl-3.0_25.RULE +++ b/src/licensedcode/data/rules/afl-3.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_25.yml b/src/licensedcode/data/rules/afl-3.0_25.yml deleted file mode 100644 index 1a1a7043b3e..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_26.RULE b/src/licensedcode/data/rules/afl-3.0_26.RULE index 1afe7e45ac2..cc526bed9b9 100644 --- a/src/licensedcode/data/rules/afl-3.0_26.RULE +++ b/src/licensedcode/data/rules/afl-3.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/afl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_26.yml b/src/licensedcode/data/rules/afl-3.0_26.yml deleted file mode 100644 index 1a1a7043b3e..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_27.RULE b/src/licensedcode/data/rules/afl-3.0_27.RULE index b96e75fc685..0a1c36fef17 100644 --- a/src/licensedcode/data/rules/afl-3.0_27.RULE +++ b/src/licensedcode/data/rules/afl-3.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/afl-3.0.php +--- + https://opensource.org/licenses/afl-3.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_27.yml b/src/licensedcode/data/rules/afl-3.0_27.yml deleted file mode 100644 index 70548c3b65a..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_28.RULE b/src/licensedcode/data/rules/afl-3.0_28.RULE index a315d593768..f0ec1bf0b9f 100644 --- a/src/licensedcode/data/rules/afl-3.0_28.RULE +++ b/src/licensedcode/data/rules/afl-3.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/afl-3.0.php +--- + https://www.opensource.org/licenses/afl-3.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_28.yml b/src/licensedcode/data/rules/afl-3.0_28.yml deleted file mode 100644 index c6625568cf1..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_29.RULE b/src/licensedcode/data/rules/afl-3.0_29.RULE index 838a34e86e0..55448d15dc1 100644 --- a/src/licensedcode/data/rules/afl-3.0_29.RULE +++ b/src/licensedcode/data/rules/afl-3.0_29.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/afl-3.0 +--- + https://opensource.org/licenses/afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_29.yml b/src/licensedcode/data/rules/afl-3.0_29.yml deleted file mode 100644 index 6ea2f161ebb..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/afl-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_3.RULE b/src/licensedcode/data/rules/afl-3.0_3.RULE index c332bd606da..313c71723f5 100644 --- a/src/licensedcode/data/rules/afl-3.0_3.RULE +++ b/src/licensedcode/data/rules/afl-3.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/afl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) diff --git a/src/licensedcode/data/rules/afl-3.0_3.yml b/src/licensedcode/data/rules/afl-3.0_3.yml deleted file mode 100644 index cb9cc234ca3..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_30.RULE b/src/licensedcode/data/rules/afl-3.0_30.RULE index d15651703aa..2b42cb80715 100644 --- a/src/licensedcode/data/rules/afl-3.0_30.RULE +++ b/src/licensedcode/data/rules/afl-3.0_30.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/afl-3.0.html +--- + https://opensource.org/licenses/afl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_30.yml b/src/licensedcode/data/rules/afl-3.0_30.yml deleted file mode 100644 index 20dd84ff705..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/afl-3.0.html diff --git a/src/licensedcode/data/rules/afl-3.0_31.RULE b/src/licensedcode/data/rules/afl-3.0_31.RULE index 6cf905d2a47..35c26e5ef79 100644 --- a/src/licensedcode/data/rules/afl-3.0_31.RULE +++ b/src/licensedcode/data/rules/afl-3.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +--- + Academic Free License ("AFL") v. 3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_31.yml b/src/licensedcode/data/rules/afl-3.0_31.yml deleted file mode 100644 index 1a1a7043b3e..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_32.RULE b/src/licensedcode/data/rules/afl-3.0_32.RULE index 9a6f1856f9b..beb16c55e46 100644 --- a/src/licensedcode/data/rules/afl-3.0_32.RULE +++ b/src/licensedcode/data/rules/afl-3.0_32.RULE @@ -1,3 +1,15 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_AFL.txt +ignorable_urls: + - http://opensource.org/licenses/afl-3.0.php +ignorable_emails: + - license@magentocommerce.com +--- + * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) diff --git a/src/licensedcode/data/rules/afl-3.0_32.yml b/src/licensedcode/data/rules/afl-3.0_32.yml deleted file mode 100644 index 160aadcb618..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_32.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_AFL.txt -ignorable_urls: - - http://opensource.org/licenses/afl-3.0.php -ignorable_emails: - - license@magentocommerce.com diff --git a/src/licensedcode/data/rules/afl-3.0_33.RULE b/src/licensedcode/data/rules/afl-3.0_33.RULE index 4b4dddacb04..60912f4816e 100644 --- a/src/licensedcode/data/rules/afl-3.0_33.RULE +++ b/src/licensedcode/data/rules/afl-3.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 90 +--- + the Academic Free License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_33.yml b/src/licensedcode/data/rules/afl-3.0_33.yml deleted file mode 100644 index 0ba86d38fa9..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/afl-3.0_34.RULE b/src/licensedcode/data/rules/afl-3.0_34.RULE index cd27a3546f4..b4434f77af6 100644 --- a/src/licensedcode/data/rules/afl-3.0_34.RULE +++ b/src/licensedcode/data/rules/afl-3.0_34.RULE @@ -1 +1,6 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +--- + AFL-3.0 Academic Free License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_34.yml b/src/licensedcode/data/rules/afl-3.0_34.yml deleted file mode 100644 index b663e616635..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/afl-3.0_35.RULE b/src/licensedcode/data/rules/afl-3.0_35.RULE index d12509d2449..800c8ba738f 100644 --- a/src/licensedcode/data/rules/afl-3.0_35.RULE +++ b/src/licensedcode/data/rules/afl-3.0_35.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Academic Free License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_35.yml b/src/licensedcode/data/rules/afl-3.0_35.yml deleted file mode 100644 index 58d9ba66f48..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-3.0_36.RULE b/src/licensedcode/data/rules/afl-3.0_36.RULE index b6741639335..9d186a16b1e 100644 --- a/src/licensedcode/data/rules/afl-3.0_36.RULE +++ b/src/licensedcode/data/rules/afl-3.0_36.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Academic Free License v3.0 AFL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_36.yml b/src/licensedcode/data/rules/afl-3.0_36.yml deleted file mode 100644 index 58d9ba66f48..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-3.0_37.RULE b/src/licensedcode/data/rules/afl-3.0_37.RULE index 6e5e4060cc9..7c90525c8ff 100644 --- a/src/licensedcode/data/rules/afl-3.0_37.RULE +++ b/src/licensedcode/data/rules/afl-3.0_37.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Academic Free License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_37.yml b/src/licensedcode/data/rules/afl-3.0_37.yml deleted file mode 100644 index 87be6aae90d..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-3.0_38.RULE b/src/licensedcode/data/rules/afl-3.0_38.RULE index 454afdb10f7..722c9ec187f 100644 --- a/src/licensedcode/data/rules/afl-3.0_38.RULE +++ b/src/licensedcode/data/rules/afl-3.0_38.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AFL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_38.yml b/src/licensedcode/data/rules/afl-3.0_38.yml deleted file mode 100644 index 87be6aae90d..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_38.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afl-3.0_39.RULE b/src/licensedcode/data/rules/afl-3.0_39.RULE index e5ab997075b..e48ebeb8a9c 100644 --- a/src/licensedcode/data/rules/afl-3.0_39.RULE +++ b/src/licensedcode/data/rules/afl-3.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 90 +--- + wikipedia.org/wiki/Academic_Free_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_39.yml b/src/licensedcode/data/rules/afl-3.0_39.yml deleted file mode 100644 index 0ba86d38fa9..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/afl-3.0_4.RULE b/src/licensedcode/data/rules/afl-3.0_4.RULE index ed789882a23..51177c56050 100644 --- a/src/licensedcode/data/rules/afl-3.0_4.RULE +++ b/src/licensedcode/data/rules/afl-3.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +--- + Academic Free License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_4.yml b/src/licensedcode/data/rules/afl-3.0_4.yml deleted file mode 100644 index 1a1a7043b3e..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_40.RULE b/src/licensedcode/data/rules/afl-3.0_40.RULE index 2aa05fa5dd7..48bd41a7a90 100644 --- a/src/licensedcode/data/rules/afl-3.0_40.RULE +++ b/src/licensedcode/data/rules/afl-3.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Academic Free License, version 3.0. See Academic Free License (AFL) version 3.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_40.yml b/src/licensedcode/data/rules/afl-3.0_40.yml deleted file mode 100644 index bece7eb45d5..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_41.RULE b/src/licensedcode/data/rules/afl-3.0_41.RULE index 23422a335fd..31eef33d42b 100644 --- a/src/licensedcode/data/rules/afl-3.0_41.RULE +++ b/src/licensedcode/data/rules/afl-3.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +--- + Academic Free License, version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_41.yml b/src/licensedcode/data/rules/afl-3.0_41.yml deleted file mode 100644 index 1a1a7043b3e..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_42.RULE b/src/licensedcode/data/rules/afl-3.0_42.RULE index cc2d42b9084..27d58916e2d 100644 --- a/src/licensedcode/data/rules/afl-3.0_42.RULE +++ b/src/licensedcode/data/rules/afl-3.0_42.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AFL-3.0 +--- + https://licenses.nuget.org/AFL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_42.yml b/src/licensedcode/data/rules/afl-3.0_42.yml deleted file mode 100644 index 23619174d32..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AFL-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_43.RULE b/src/licensedcode/data/rules/afl-3.0_43.RULE index a0bbff0d3e3..394b22500af 100644 --- a/src/licensedcode/data/rules/afl-3.0_43.RULE +++ b/src/licensedcode/data/rules/afl-3.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AFL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_43.yml b/src/licensedcode/data/rules/afl-3.0_43.yml deleted file mode 100644 index 1a1a7043b3e..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_44.RULE b/src/licensedcode/data/rules/afl-3.0_44.RULE index b0d76a8e6d4..04a38789178 100644 --- a/src/licensedcode/data/rules/afl-3.0_44.RULE +++ b/src/licensedcode/data/rules/afl-3.0_44.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-3.0 +--- + {{AFL-3.0}} https://spdx.org/licenses/AFL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_44.yml b/src/licensedcode/data/rules/afl-3.0_44.yml deleted file mode 100644 index 921c9e02ffc..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_45.RULE b/src/licensedcode/data/rules/afl-3.0_45.RULE index 5d2e129a391..54111c44cb8 100644 --- a/src/licensedcode/data/rules/afl-3.0_45.RULE +++ b/src/licensedcode/data/rules/afl-3.0_45.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AFL-3.0 +--- + LICENSE {{AFL-3.0}} https://spdx.org/licenses/AFL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_45.yml b/src/licensedcode/data/rules/afl-3.0_45.yml deleted file mode 100644 index 921c9e02ffc..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AFL-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_5.RULE b/src/licensedcode/data/rules/afl-3.0_5.RULE index 81a95eae405..56fc0d5e420 100644 --- a/src/licensedcode/data/rules/afl-3.0_5.RULE +++ b/src/licensedcode/data/rules/afl-3.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +--- + Licensed under the Academic Free License version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_5.yml b/src/licensedcode/data/rules/afl-3.0_5.yml deleted file mode 100644 index 1a1a7043b3e..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afl-3.0_6.RULE b/src/licensedcode/data/rules/afl-3.0_6.RULE index e7b72a0b14a..fd79a6dd6ac 100644 --- a/src/licensedcode/data/rules/afl-3.0_6.RULE +++ b/src/licensedcode/data/rules/afl-3.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: afl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + Academic Free License ("AFL") v. 3.0 This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: @@ -43,4 +52,4 @@ e) to display the Original Work publicly. 15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. -16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. +16) Modification of This License. This License is Copyright © 2005 Lawrence Rosen. Permission is granted to copy, distribute, or communicate this License without modification. Nothing in this License permits You to modify this License as applied to the Original Work or to Derivative Works. However, You may modify the text of this License and copy, distribute or communicate your modified version (the "Modified License") and apply it to other original works of authorship subject to the following conditions: (i) You may not indicate in any way that your Modified License is the "Academic Free License" or "AFL" and you may not use those names in the name of your Modified License; (ii) You must replace the notice specified in the first paragraph above with the notice "Licensed under " or with a notice of your own that is not confusingly similar to the notice in this License; and (iii) You may not claim that your original works are open source software unless your Modified License has been approved by Open Source Initiative (OSI) and You comply with its license review and certification process. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_6.yml b/src/licensedcode/data/rules/afl-3.0_6.yml deleted file mode 100644 index 69a1707b7f8..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-3.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2005 Lawrence Rosen -ignorable_holders: - - Lawrence Rosen diff --git a/src/licensedcode/data/rules/afl-3.0_7.RULE b/src/licensedcode/data/rules/afl-3.0_7.RULE index a2eaaa00eda..d5d5223735f 100644 --- a/src/licensedcode/data/rules/afl-3.0_7.RULE +++ b/src/licensedcode/data/rules/afl-3.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/afl-3.0.php +--- + license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_7.yml b/src/licensedcode/data/rules/afl-3.0_7.yml deleted file mode 100644 index bd49fcba3f8..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/afl-3.0.php diff --git a/src/licensedcode/data/rules/afl-3.0_8.RULE b/src/licensedcode/data/rules/afl-3.0_8.RULE index 3220662a83e..ddfaaed2a5f 100644 --- a/src/licensedcode/data/rules/afl-3.0_8.RULE +++ b/src/licensedcode/data/rules/afl-3.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/afl-3.0 +--- + https://choosealicense.com/licenses/afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_8.yml b/src/licensedcode/data/rules/afl-3.0_8.yml deleted file mode 100644 index 2536c9cbc74..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/afl-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_9.RULE b/src/licensedcode/data/rules/afl-3.0_9.RULE index 447ddabe862..fc0fce3271d 100644 --- a/src/licensedcode/data/rules/afl-3.0_9.RULE +++ b/src/licensedcode/data/rules/afl-3.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/afl-3.0 +--- + http://choosealicense.com/licenses/afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_9.yml b/src/licensedcode/data/rules/afl-3.0_9.yml deleted file mode 100644 index 190a60cb172..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/afl-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_or_bsd-new_1.RULE b/src/licensedcode/data/rules/afl-3.0_or_bsd-new_1.RULE index 0e85f5ab9c2..913abb48ba4 100644 --- a/src/licensedcode/data/rules/afl-3.0_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/afl-3.0_or_bsd-new_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 OR bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/AFL-3.0 +--- + release under the [Academic Free License (AFL)](https://opensource.org/licenses/AFL-3.0) or the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_or_bsd-new_1.yml b/src/licensedcode/data/rules/afl-3.0_or_bsd-new_1.yml deleted file mode 100644 index 154cc526790..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_or_bsd-new_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 OR bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/AFL-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_url_1.RULE b/src/licensedcode/data/rules/afl-3.0_url_1.RULE index 7858391ef2f..ae2c23bfec1 100644 --- a/src/licensedcode/data/rules/afl-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/afl-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-3.0 +--- + https://spdx.org/licenses/afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_url_1.yml b/src/licensedcode/data/rules/afl-3.0_url_1.yml deleted file mode 100644 index cce889f9e13..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_url_2.RULE b/src/licensedcode/data/rules/afl-3.0_url_2.RULE index 67abab49c93..524fd2d2571 100644 --- a/src/licensedcode/data/rules/afl-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/afl-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afl-3.0.html +--- + https://spdx.org/licenses/afl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_url_2.yml b/src/licensedcode/data/rules/afl-3.0_url_2.yml deleted file mode 100644 index db4b2a04aa3..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afl-3.0.html diff --git a/src/licensedcode/data/rules/afl-3.0_url_glc_248.RULE b/src/licensedcode/data/rules/afl-3.0_url_glc_248.RULE index 990ba604622..2a0eb247cce 100644 --- a/src/licensedcode/data/rules/afl-3.0_url_glc_248.RULE +++ b/src/licensedcode/data/rules/afl-3.0_url_glc_248.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/afl-3.0 +--- + http://www.opensource.org/licenses/afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_url_glc_248.yml b/src/licensedcode/data/rules/afl-3.0_url_glc_248.yml deleted file mode 100644 index 9e997ab6f80..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_url_glc_248.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/afl-3.0 diff --git a/src/licensedcode/data/rules/afl-3.0_url_glc_249.RULE b/src/licensedcode/data/rules/afl-3.0_url_glc_249.RULE index 86186405a0f..3344c23e0f2 100644 --- a/src/licensedcode/data/rules/afl-3.0_url_glc_249.RULE +++ b/src/licensedcode/data/rules/afl-3.0_url_glc_249.RULE @@ -1 +1,9 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/afl-3.0 +--- + https://www.opensource.org/licenses/afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/afl-3.0_url_glc_249.yml b/src/licensedcode/data/rules/afl-3.0_url_glc_249.yml deleted file mode 100644 index e50f76dd33f..00000000000 --- a/src/licensedcode/data/rules/afl-3.0_url_glc_249.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/afl-3.0 diff --git a/src/licensedcode/data/rules/afmparse_1.RULE b/src/licensedcode/data/rules/afmparse_1.RULE index c6fbe495c13..9c72930cb89 100644 --- a/src/licensedcode/data/rules/afmparse_1.RULE +++ b/src/licensedcode/data/rules/afmparse_1.RULE @@ -1 +1,10 @@ +--- +license_expression: afmparse +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Afmparse License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_1.yml b/src/licensedcode/data/rules/afmparse_1.yml deleted file mode 100644 index 1501a1d2a65..00000000000 --- a/src/licensedcode/data/rules/afmparse_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afmparse_10.RULE b/src/licensedcode/data/rules/afmparse_10.RULE index 7b8eb711103..6681df7a40c 100644 --- a/src/licensedcode/data/rules/afmparse_10.RULE +++ b/src/licensedcode/data/rules/afmparse_10.RULE @@ -1 +1,9 @@ +--- +license_expression: afmparse +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Afmparse +--- + {{Afmparse}} https://spdx.org/licenses/Afmparse \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_10.yml b/src/licensedcode/data/rules/afmparse_10.yml deleted file mode 100644 index 9fc756c89ed..00000000000 --- a/src/licensedcode/data/rules/afmparse_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Afmparse diff --git a/src/licensedcode/data/rules/afmparse_11.RULE b/src/licensedcode/data/rules/afmparse_11.RULE index 34e8d4cbdbf..c8fe277222b 100644 --- a/src/licensedcode/data/rules/afmparse_11.RULE +++ b/src/licensedcode/data/rules/afmparse_11.RULE @@ -1 +1,9 @@ +--- +license_expression: afmparse +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Afmparse +--- + LICENSE {{Afmparse}} https://spdx.org/licenses/Afmparse \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_11.yml b/src/licensedcode/data/rules/afmparse_11.yml deleted file mode 100644 index 9fc756c89ed..00000000000 --- a/src/licensedcode/data/rules/afmparse_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Afmparse diff --git a/src/licensedcode/data/rules/afmparse_2.RULE b/src/licensedcode/data/rules/afmparse_2.RULE index b4ccf45fbde..4b7a02035d9 100644 --- a/src/licensedcode/data/rules/afmparse_2.RULE +++ b/src/licensedcode/data/rules/afmparse_2.RULE @@ -1 +1,10 @@ +--- +license_expression: afmparse +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Afmparse License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_2.yml b/src/licensedcode/data/rules/afmparse_2.yml deleted file mode 100644 index 1501a1d2a65..00000000000 --- a/src/licensedcode/data/rules/afmparse_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afmparse_3.RULE b/src/licensedcode/data/rules/afmparse_3.RULE index 924ff868887..24f33702c17 100644 --- a/src/licensedcode/data/rules/afmparse_3.RULE +++ b/src/licensedcode/data/rules/afmparse_3.RULE @@ -1 +1,10 @@ +--- +license_expression: afmparse +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Afmparse Afmparse License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_3.yml b/src/licensedcode/data/rules/afmparse_3.yml deleted file mode 100644 index 1501a1d2a65..00000000000 --- a/src/licensedcode/data/rules/afmparse_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afmparse_4.RULE b/src/licensedcode/data/rules/afmparse_4.RULE index ba11929d250..940d86aae75 100644 --- a/src/licensedcode/data/rules/afmparse_4.RULE +++ b/src/licensedcode/data/rules/afmparse_4.RULE @@ -1 +1,10 @@ +--- +license_expression: afmparse +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Afmparse License Afmparse \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_4.yml b/src/licensedcode/data/rules/afmparse_4.yml deleted file mode 100644 index 1501a1d2a65..00000000000 --- a/src/licensedcode/data/rules/afmparse_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afmparse_5.RULE b/src/licensedcode/data/rules/afmparse_5.RULE index 836f0a5f2a3..b461582dace 100644 --- a/src/licensedcode/data/rules/afmparse_5.RULE +++ b/src/licensedcode/data/rules/afmparse_5.RULE @@ -1 +1,10 @@ +--- +license_expression: afmparse +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Afmparse \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_5.yml b/src/licensedcode/data/rules/afmparse_5.yml deleted file mode 100644 index 8c402854c92..00000000000 --- a/src/licensedcode/data/rules/afmparse_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afmparse -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afmparse_6.RULE b/src/licensedcode/data/rules/afmparse_6.RULE index fde9bb33e99..3a7f462a812 100644 --- a/src/licensedcode/data/rules/afmparse_6.RULE +++ b/src/licensedcode/data/rules/afmparse_6.RULE @@ -1 +1,10 @@ +--- +license_expression: afmparse +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Afmparse License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_6.yml b/src/licensedcode/data/rules/afmparse_6.yml deleted file mode 100644 index 8c402854c92..00000000000 --- a/src/licensedcode/data/rules/afmparse_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afmparse -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afmparse_7.RULE b/src/licensedcode/data/rules/afmparse_7.RULE index 054de929652..e46ef9e3915 100644 --- a/src/licensedcode/data/rules/afmparse_7.RULE +++ b/src/licensedcode/data/rules/afmparse_7.RULE @@ -1 +1,10 @@ +--- +license_expression: afmparse +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Afmparse \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_7.yml b/src/licensedcode/data/rules/afmparse_7.yml deleted file mode 100644 index 8c402854c92..00000000000 --- a/src/licensedcode/data/rules/afmparse_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afmparse -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afmparse_8.RULE b/src/licensedcode/data/rules/afmparse_8.RULE index 7aca1896adf..c120622e8ae 100644 --- a/src/licensedcode/data/rules/afmparse_8.RULE +++ b/src/licensedcode/data/rules/afmparse_8.RULE @@ -1 +1,9 @@ +--- +license_expression: afmparse +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Afmparse +--- + https://licenses.nuget.org/Afmparse \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_8.yml b/src/licensedcode/data/rules/afmparse_8.yml deleted file mode 100644 index e7680e43e4c..00000000000 --- a/src/licensedcode/data/rules/afmparse_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Afmparse diff --git a/src/licensedcode/data/rules/afmparse_9.RULE b/src/licensedcode/data/rules/afmparse_9.RULE index 750e37688d0..2d08f128f5a 100644 --- a/src/licensedcode/data/rules/afmparse_9.RULE +++ b/src/licensedcode/data/rules/afmparse_9.RULE @@ -1 +1,7 @@ +--- +license_expression: afmparse +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Afmparse \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_9.yml b/src/licensedcode/data/rules/afmparse_9.yml deleted file mode 100644 index f6d4d0d6378..00000000000 --- a/src/licensedcode/data/rules/afmparse_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afmparse_url_1.RULE b/src/licensedcode/data/rules/afmparse_url_1.RULE index f24785be746..614dee04bff 100644 --- a/src/licensedcode/data/rules/afmparse_url_1.RULE +++ b/src/licensedcode/data/rules/afmparse_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afmparse +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afmparse +--- + https://spdx.org/licenses/afmparse \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_url_1.yml b/src/licensedcode/data/rules/afmparse_url_1.yml deleted file mode 100644 index 395862fbb9e..00000000000 --- a/src/licensedcode/data/rules/afmparse_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afmparse diff --git a/src/licensedcode/data/rules/afmparse_url_2.RULE b/src/licensedcode/data/rules/afmparse_url_2.RULE index d888bdc880a..be357002031 100644 --- a/src/licensedcode/data/rules/afmparse_url_2.RULE +++ b/src/licensedcode/data/rules/afmparse_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: afmparse +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/afmparse.html +--- + https://spdx.org/licenses/afmparse.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afmparse_url_2.yml b/src/licensedcode/data/rules/afmparse_url_2.yml deleted file mode 100644 index d0e6339954e..00000000000 --- a/src/licensedcode/data/rules/afmparse_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afmparse -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/afmparse.html diff --git a/src/licensedcode/data/rules/afpl-8.0_1.RULE b/src/licensedcode/data/rules/afpl-8.0_1.RULE index 7f2d1d3ae15..8c7081f8c2b 100644 --- a/src/licensedcode/data/rules/afpl-8.0_1.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: afpl-8.0 +is_license_text: yes +notes: Aladin FPL v8, short +--- + Aladdin Enterprises hereby grants to anyone the permission to apply this License to their own work, as long as the entire License (including the above notices and this paragraph) is copied with no changes, additions, or deletions except for changing the first paragraph of Section 0 to include a suitable description of the work to which the license is being applied and of the person or entity that holds the copyright in the work, and, if the License is being applied to a work created in a country other than the United States, replacing the first paragraph of Section 6 with an appropriate reference to the laws of the appropriate country. diff --git a/src/licensedcode/data/rules/afpl-8.0_1.yml b/src/licensedcode/data/rules/afpl-8.0_1.yml deleted file mode 100644 index 7f98b8a15dc..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-8.0 -is_license_text: yes -notes: Aladin FPL v8, short diff --git a/src/licensedcode/data/rules/afpl-8.0_10.RULE b/src/licensedcode/data/rules/afpl-8.0_10.RULE index bf4bd0470d2..114306ecb3a 100644 --- a/src/licensedcode/data/rules/afpl-8.0_10.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Aladdin +--- + https://licenses.nuget.org/Aladdin \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_10.yml b/src/licensedcode/data/rules/afpl-8.0_10.yml deleted file mode 100644 index 09490966658..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Aladdin diff --git a/src/licensedcode/data/rules/afpl-8.0_11.RULE b/src/licensedcode/data/rules/afpl-8.0_11.RULE index 01823cbb7f7..5f10ba13e0d 100644 --- a/src/licensedcode/data/rules/afpl-8.0_11.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Aladdin \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_11.yml b/src/licensedcode/data/rules/afpl-8.0_11.yml deleted file mode 100644 index 27e7584544a..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afpl-8.0_12.RULE b/src/licensedcode/data/rules/afpl-8.0_12.RULE index a65259c270b..67149d4b862 100644 --- a/src/licensedcode/data/rules/afpl-8.0_12.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Aladdin +--- + {{Aladdin}} https://spdx.org/licenses/Aladdin \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_12.yml b/src/licensedcode/data/rules/afpl-8.0_12.yml deleted file mode 100644 index f1ca208b466..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Aladdin diff --git a/src/licensedcode/data/rules/afpl-8.0_13.RULE b/src/licensedcode/data/rules/afpl-8.0_13.RULE index fe3b5f5034c..429c28c4734 100644 --- a/src/licensedcode/data/rules/afpl-8.0_13.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Aladdin +--- + LICENSE {{Aladdin}} https://spdx.org/licenses/Aladdin \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_13.yml b/src/licensedcode/data/rules/afpl-8.0_13.yml deleted file mode 100644 index f1ca208b466..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Aladdin diff --git a/src/licensedcode/data/rules/afpl-8.0_2.RULE b/src/licensedcode/data/rules/afpl-8.0_2.RULE index 938e6183674..c627a7723c4 100644 --- a/src/licensedcode/data/rules/afpl-8.0_2.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_2.RULE @@ -1 +1,7 @@ -distributed under the terms of the Aladdin Free Public License: +--- +license_expression: afpl-8.0 +is_license_notice: yes +relevance: 99 +--- + +distributed under the terms of the Aladdin Free Public License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_2.yml b/src/licensedcode/data/rules/afpl-8.0_2.yml deleted file mode 100644 index ba96988ddd3..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-8.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/afpl-8.0_3.RULE b/src/licensedcode/data/rules/afpl-8.0_3.RULE index de973f47792..d2cd20e7dc8 100644 --- a/src/licensedcode/data/rules/afpl-8.0_3.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_3.RULE @@ -1 +1,8 @@ -mesh generation is NOT covered by this license and is subject to its own terms. +--- +license_expression: afpl-8.0 +is_license_text: yes +relevance: 99 +minimum_coverage: 100 +--- + +mesh generation is NOT covered by this license and is subject to its own terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_3.yml b/src/licensedcode/data/rules/afpl-8.0_3.yml deleted file mode 100644 index 02565d7e3be..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: afpl-8.0 -is_license_text: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/afpl-8.0_4.RULE b/src/licensedcode/data/rules/afpl-8.0_4.RULE index 3eac34ba2b9..5a348ae3e78 100644 --- a/src/licensedcode/data/rules/afpl-8.0_4.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Aladdin Free Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_4.yml b/src/licensedcode/data/rules/afpl-8.0_4.yml deleted file mode 100644 index 729546e8116..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afpl-8.0_5.RULE b/src/licensedcode/data/rules/afpl-8.0_5.RULE index 14ba2476fd9..f1ca171f33c 100644 --- a/src/licensedcode/data/rules/afpl-8.0_5.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Aladdin Aladdin Free Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_5.yml b/src/licensedcode/data/rules/afpl-8.0_5.yml deleted file mode 100644 index 729546e8116..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afpl-8.0_6.RULE b/src/licensedcode/data/rules/afpl-8.0_6.RULE index 4d0347916f6..3aa317151a3 100644 --- a/src/licensedcode/data/rules/afpl-8.0_6.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Aladdin Free Public License Aladdin \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_6.yml b/src/licensedcode/data/rules/afpl-8.0_6.yml deleted file mode 100644 index 729546e8116..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afpl-8.0_7.RULE b/src/licensedcode/data/rules/afpl-8.0_7.RULE index 39c13b7f3d8..2070f04af03 100644 --- a/src/licensedcode/data/rules/afpl-8.0_7.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: afpl-8.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Aladdin \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_7.yml b/src/licensedcode/data/rules/afpl-8.0_7.yml deleted file mode 100644 index 5c2f2908372..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afpl-8.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afpl-8.0_8.RULE b/src/licensedcode/data/rules/afpl-8.0_8.RULE index 919e11ce2ee..572a7662938 100644 --- a/src/licensedcode/data/rules/afpl-8.0_8.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: afpl-8.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Aladdin Free Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_8.yml b/src/licensedcode/data/rules/afpl-8.0_8.yml deleted file mode 100644 index 5c2f2908372..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afpl-8.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afpl-8.0_9.RULE b/src/licensedcode/data/rules/afpl-8.0_9.RULE index 57cb3b2a156..4fd262a530e 100644 --- a/src/licensedcode/data/rules/afpl-8.0_9.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: afpl-8.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Aladdin \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_9.yml b/src/licensedcode/data/rules/afpl-8.0_9.yml deleted file mode 100644 index 5c2f2908372..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afpl-8.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/afpl-8.0_url_1.RULE b/src/licensedcode/data/rules/afpl-8.0_url_1.RULE index 25d11e781a6..4ca73909d78 100644 --- a/src/licensedcode/data/rules/afpl-8.0_url_1.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/aladdin +--- + https://spdx.org/licenses/aladdin \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_url_1.yml b/src/licensedcode/data/rules/afpl-8.0_url_1.yml deleted file mode 100644 index c9d31da4bca..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/aladdin diff --git a/src/licensedcode/data/rules/afpl-8.0_url_2.RULE b/src/licensedcode/data/rules/afpl-8.0_url_2.RULE index e59e3be3f5b..27c7faf2ada 100644 --- a/src/licensedcode/data/rules/afpl-8.0_url_2.RULE +++ b/src/licensedcode/data/rules/afpl-8.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: afpl-8.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/aladdin.html +--- + https://spdx.org/licenses/aladdin.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-8.0_url_2.yml b/src/licensedcode/data/rules/afpl-8.0_url_2.yml deleted file mode 100644 index 03620831f78..00000000000 --- a/src/licensedcode/data/rules/afpl-8.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-8.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/aladdin.html diff --git a/src/licensedcode/data/rules/afpl-9.0_1.RULE b/src/licensedcode/data/rules/afpl-9.0_1.RULE index 1b32f3436e3..bc0e06b69ec 100644 --- a/src/licensedcode/data/rules/afpl-9.0_1.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: afpl-9.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.artifex.com/downloads/doc/Public.htm +--- + http://www.artifex.com/downloads/doc/Public.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_1.yml b/src/licensedcode/data/rules/afpl-9.0_1.yml deleted file mode 100644 index 11e874a40b9..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-9.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.artifex.com/downloads/doc/Public.htm diff --git a/src/licensedcode/data/rules/afpl-9.0_10.RULE b/src/licensedcode/data/rules/afpl-9.0_10.RULE index c45f3f30f08..66bc1005d28 100644 --- a/src/licensedcode/data/rules/afpl-9.0_10.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: afpl-9.0 +is_license_reference: yes +relevance: 100 +--- + Aladdin Free Public License (AFPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_10.yml b/src/licensedcode/data/rules/afpl-9.0_10.yml deleted file mode 100644 index 75bc3469404..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-9.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afpl-9.0_2.RULE b/src/licensedcode/data/rules/afpl-9.0_2.RULE index 8cbcdad93f5..20a5441083e 100644 --- a/src/licensedcode/data/rules/afpl-9.0_2.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: afpl-9.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.artifex.com/downloads/doc/Public.htm +--- + subject to the -Aladdin Free Public License +Aladdin Free Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_2.yml b/src/licensedcode/data/rules/afpl-9.0_2.yml deleted file mode 100644 index 11e874a40b9..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-9.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.artifex.com/downloads/doc/Public.htm diff --git a/src/licensedcode/data/rules/afpl-9.0_3.RULE b/src/licensedcode/data/rules/afpl-9.0_3.RULE index 856722fa222..3b1d661afcd 100644 --- a/src/licensedcode/data/rules/afpl-9.0_3.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: afpl-9.0 +is_license_reference: yes +relevance: 100 +--- + subject to the -Aladdin Free Public License \ No newline at end of file +Aladdin Free Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_3.yml b/src/licensedcode/data/rules/afpl-9.0_3.yml deleted file mode 100644 index 75bc3469404..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-9.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afpl-9.0_4.RULE b/src/licensedcode/data/rules/afpl-9.0_4.RULE index c4525de2c5c..51736c570be 100644 --- a/src/licensedcode/data/rules/afpl-9.0_4.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: afpl-9.0 +is_license_reference: yes +relevance: 99 +--- + Aladdin Free Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_4.yml b/src/licensedcode/data/rules/afpl-9.0_4.yml deleted file mode 100644 index d05d3dd399e..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-9.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/afpl-9.0_5.RULE b/src/licensedcode/data/rules/afpl-9.0_5.RULE index dd6e4265e1d..076bca7536b 100644 --- a/src/licensedcode/data/rules/afpl-9.0_5.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: afpl-9.0 +is_license_reference: yes +relevance: 100 +--- + released under the Aladdin Free Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_5.yml b/src/licensedcode/data/rules/afpl-9.0_5.yml deleted file mode 100644 index 75bc3469404..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-9.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afpl-9.0_6.RULE b/src/licensedcode/data/rules/afpl-9.0_6.RULE index 586508de7f2..26a474bce6e 100644 --- a/src/licensedcode/data/rules/afpl-9.0_6.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: afpl-9.0 +is_license_reference: yes +relevance: 100 +--- + the Aladdin Free Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_6.yml b/src/licensedcode/data/rules/afpl-9.0_6.yml deleted file mode 100644 index 75bc3469404..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-9.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/afpl-9.0_7.RULE b/src/licensedcode/data/rules/afpl-9.0_7.RULE index d72dbc39e21..d8cbdf69a06 100644 --- a/src/licensedcode/data/rules/afpl-9.0_7.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: afpl-9.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - PUBLIC +--- + This program may also be distributed as part of AFPL Ghostscript, under the terms of the Aladdin Free Public License (the "License"). diff --git a/src/licensedcode/data/rules/afpl-9.0_7.yml b/src/licensedcode/data/rules/afpl-9.0_7.yml deleted file mode 100644 index 26af6d02541..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-9.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - PUBLIC diff --git a/src/licensedcode/data/rules/afpl-9.0_8.RULE b/src/licensedcode/data/rules/afpl-9.0_8.RULE index d9e79b06d0a..42442991b46 100644 --- a/src/licensedcode/data/rules/afpl-9.0_8.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: afpl-9.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - PUBLIC +--- + This program may also be distributed as part of AFPL Ghostscript, under the terms of the Aladdin Free Public License (the "License"). diff --git a/src/licensedcode/data/rules/afpl-9.0_8.yml b/src/licensedcode/data/rules/afpl-9.0_8.yml deleted file mode 100644 index 26af6d02541..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-9.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - PUBLIC diff --git a/src/licensedcode/data/rules/afpl-9.0_9.RULE b/src/licensedcode/data/rules/afpl-9.0_9.RULE index 2732c3fe03a..b86dfc537c8 100644 --- a/src/licensedcode/data/rules/afpl-9.0_9.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: afpl-9.0 +is_license_reference: yes +relevance: 90 +--- + AFPL Ghostscript \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_9.yml b/src/licensedcode/data/rules/afpl-9.0_9.yml deleted file mode 100644 index 7db8eff7f40..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-9.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/afpl-9.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/afpl-9.0_or_gpl-1.0-plus_1.RULE index d21905fe1a0..beaaa95689c 100644 --- a/src/licensedcode/data/rules/afpl-9.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/afpl-9.0_or_gpl-1.0-plus_1.RULE @@ -1 +1,7 @@ -available under a dual AFPL/GPL license +--- +license_expression: afpl-9.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 90 +--- + +available under a dual AFPL/GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/afpl-9.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/afpl-9.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index ba0e0828341..00000000000 --- a/src/licensedcode/data/rules/afpl-9.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: afpl-9.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agere-bsd_1.RULE b/src/licensedcode/data/rules/agere-bsd_1.RULE index 1db96ec8b27..7d8203e20a6 100644 --- a/src/licensedcode/data/rules/agere-bsd_1.RULE +++ b/src/licensedcode/data/rules/agere-bsd_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agere-bsd +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + This software is provided subject to the following terms and conditions, which you should read carefully before using the software. Using this software indicates your acceptance of these terms and conditions. If you do diff --git a/src/licensedcode/data/rules/agere-bsd_1.yml b/src/licensedcode/data/rules/agere-bsd_1.yml deleted file mode 100644 index 309ae15ea33..00000000000 --- a/src/licensedcode/data/rules/agere-bsd_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agere-bsd -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/agere-bsd_2.RULE b/src/licensedcode/data/rules/agere-bsd_2.RULE index f9ceec45617..3bfd60e1f71 100644 --- a/src/licensedcode/data/rules/agere-bsd_2.RULE +++ b/src/licensedcode/data/rules/agere-bsd_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agere-bsd +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) Agere Systems Inc. +ignorable_holders: + - Agere Systems Inc. +--- + SOFTWARE LICENSE This software is provided subject to the following terms and conditions, diff --git a/src/licensedcode/data/rules/agere-bsd_2.yml b/src/licensedcode/data/rules/agere-bsd_2.yml deleted file mode 100644 index eafc8cfef92..00000000000 --- a/src/licensedcode/data/rules/agere-bsd_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agere-bsd -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) Agere Systems Inc. -ignorable_holders: - - Agere Systems Inc. diff --git a/src/licensedcode/data/rules/agere-sla.RULE b/src/licensedcode/data/rules/agere-sla.RULE index d6b00b06557..b7c7a4f095a 100644 --- a/src/licensedcode/data/rules/agere-sla.RULE +++ b/src/licensedcode/data/rules/agere-sla.RULE @@ -1 +1,9 @@ +--- +license_expression: agere-sla +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License +--- + http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agere-sla.yml b/src/licensedcode/data/rules/agere-sla.yml deleted file mode 100644 index 9baadea6c63..00000000000 --- a/src/licensedcode/data/rules/agere-sla.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agere-sla -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/Agere_LT_Modem_Driver_License diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_1.RULE index 2d834327277..30bf92018ce 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_1.yml b/src/licensedcode/data/rules/agpl-1.0-plus_1.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_10.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_10.RULE index 7bc4aba688e..66951a9a5b2 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_10.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_10.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_10.yml b/src/licensedcode/data/rules/agpl-1.0-plus_10.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_11.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_11.RULE index c3a61f2dd88..4b687725058 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_11.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_11.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_11.yml b/src/licensedcode/data/rules/agpl-1.0-plus_11.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_12.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_12.RULE index cb6ad478b70..efc8a0ac7b1 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_12.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_12.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_12.yml b/src/licensedcode/data/rules/agpl-1.0-plus_12.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_13.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_13.RULE index 219eea9e23c..c39a60c68e5 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_13.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_13.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_13.yml b/src/licensedcode/data/rules/agpl-1.0-plus_13.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_14.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_14.RULE index 90b608f6b75..04f9a7b8ee4 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_14.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_14.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_14.yml b/src/licensedcode/data/rules/agpl-1.0-plus_14.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_15.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_15.RULE index 247e5c782a2..72df0fce49a 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_15.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_15.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_15.yml b/src/licensedcode/data/rules/agpl-1.0-plus_15.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_16.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_16.RULE index 1b702a158f4..4a8405a073d 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_16.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_16.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_16.yml b/src/licensedcode/data/rules/agpl-1.0-plus_16.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_17.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_17.RULE index 40beabefa47..a581d43d2df 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_17.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_17.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_17.yml b/src/licensedcode/data/rules/agpl-1.0-plus_17.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_18.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_18.RULE index 07954333cfe..349851d664b 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_18.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_18.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_18.yml b/src/licensedcode/data/rules/agpl-1.0-plus_18.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_19.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_19.RULE index 906fee9df5f..0bbd32fe224 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_19.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_19.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_19.yml b/src/licensedcode/data/rules/agpl-1.0-plus_19.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_2.RULE index b4433a662ae..c037b4ea4a2 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_2.yml b/src/licensedcode/data/rules/agpl-1.0-plus_2.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_20.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_20.RULE index 081515ccc79..67479f478f3 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_20.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_20.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_20.yml b/src/licensedcode/data/rules/agpl-1.0-plus_20.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_21.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_21.RULE index d8d26fca3f2..b6f2b652747 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_21.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_21.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPL1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_21.yml b/src/licensedcode/data/rules/agpl-1.0-plus_21.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_22.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_22.RULE index ba92a04f0cf..63f20e7594e 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_22.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_22.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPL10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_22.yml b/src/licensedcode/data/rules/agpl-1.0-plus_22.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_23.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_23.RULE index c10d48eb212..3d7cb30a9db 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_23.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_23.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_23.yml b/src/licensedcode/data/rules/agpl-1.0-plus_23.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_24.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_24.RULE index 308f9d8cec9..012c89132cd 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_24.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_24.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_24.yml b/src/licensedcode/data/rules/agpl-1.0-plus_24.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_25.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_25.RULE index f3f3b1aaf8a..03b5b80b6c4 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_25.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_25.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPL1PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_25.yml b/src/licensedcode/data/rules/agpl-1.0-plus_25.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_26.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_26.RULE index 7a8c885c8a6..222b7bff2ab 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_26.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_26.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPL10PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_26.yml b/src/licensedcode/data/rules/agpl-1.0-plus_26.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_27.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_27.RULE index 4f9e500f4b9..7a6876a69ba 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_27.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_27.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv1PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_27.yml b/src/licensedcode/data/rules/agpl-1.0-plus_27.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_28.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_28.RULE index 4a3fe18dd05..9672e6d283b 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_28.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_28.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv10PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_28.yml b/src/licensedcode/data/rules/agpl-1.0-plus_28.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_29.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_29.RULE index 1e5d1af9e08..ff0f0ca8ee9 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_29.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_29.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_29.yml b/src/licensedcode/data/rules/agpl-1.0-plus_29.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_3.RULE index 22de674cf8a..bc8426ff606 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_3.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLv1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_3.yml b/src/licensedcode/data/rules/agpl-1.0-plus_3.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_30.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_30.RULE index c6f9563f52f..79199dc8168 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_30.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_30.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_30.yml b/src/licensedcode/data/rules/agpl-1.0-plus_30.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_31.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_31.RULE index f3e0dcfa9a6..0cce6810048 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_31.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_31.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_31.yml b/src/licensedcode/data/rules/agpl-1.0-plus_31.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_32.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_32.RULE index bb3e12876fe..c2bef9d2405 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_32.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_32.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_32.yml b/src/licensedcode/data/rules/agpl-1.0-plus_32.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_33.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_33.RULE index f98eeda6228..5eaebc4014e 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_33.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_33.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_33.yml b/src/licensedcode/data/rules/agpl-1.0-plus_33.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_34.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_34.RULE index d6d16b512ce..2ff73b5cd56 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_34.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_34.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_34.yml b/src/licensedcode/data/rules/agpl-1.0-plus_34.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_35.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_35.RULE index 4c1ae39acc6..4e2ffeb2497 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_35.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_35.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_35.yml b/src/licensedcode/data/rules/agpl-1.0-plus_35.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_36.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_36.RULE index d3ff57b6e2b..d4999531ffb 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_36.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_36.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_36.yml b/src/licensedcode/data/rules/agpl-1.0-plus_36.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_37.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_37.RULE index 199a354a87b..47032332054 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_37.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_37.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_37.yml b/src/licensedcode/data/rules/agpl-1.0-plus_37.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_38.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_38.RULE index cb733e8b0e8..e3bf2383683 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_38.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_38.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_38.yml b/src/licensedcode/data/rules/agpl-1.0-plus_38.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_39.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_39.RULE index 2cf3adb33b9..48ad3bed5e9 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_39.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_39.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_39.yml b/src/licensedcode/data/rules/agpl-1.0-plus_39.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_4.RULE index 528c5c74da5..88422eecc5f 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_4.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLv10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_4.yml b/src/licensedcode/data/rules/agpl-1.0-plus_4.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_40.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_40.RULE index 764e9ea8a51..c5965d8982e 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_40.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_40.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_40.yml b/src/licensedcode/data/rules/agpl-1.0-plus_40.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_41.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_41.RULE index 2fe009f7868..ddaeef1d7b0 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_41.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_41.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_41.yml b/src/licensedcode/data/rules/agpl-1.0-plus_41.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_42.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_42.RULE index e1217032696..ad8c6b52247 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_42.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_42.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_42.yml b/src/licensedcode/data/rules/agpl-1.0-plus_42.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_43.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_43.RULE index 268b27faea1..f2631480e61 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_43.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_43.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_43.yml b/src/licensedcode/data/rules/agpl-1.0-plus_43.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_44.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_44.RULE index 6580603ea9b..5fadc775b94 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_44.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_44.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_44.yml b/src/licensedcode/data/rules/agpl-1.0-plus_44.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_45.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_45.RULE index 0005ce264b8..6c50783f330 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_45.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_45.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_45.yml b/src/licensedcode/data/rules/agpl-1.0-plus_45.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_46.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_46.RULE index 896f3093a66..9597ba63a65 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_46.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_46.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_46.yml b/src/licensedcode/data/rules/agpl-1.0-plus_46.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_47.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_47.RULE index 7488f91aa5d..bcacdd0661f 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_47.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_47.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_47.yml b/src/licensedcode/data/rules/agpl-1.0-plus_47.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_48.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_48.RULE index ff48eb6d51f..e803d4f5b82 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_48.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_48.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_48.yml b/src/licensedcode/data/rules/agpl-1.0-plus_48.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_49.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_49.RULE index c85b0a39bc5..24681706d89 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_49.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_49.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_49.yml b/src/licensedcode/data/rules/agpl-1.0-plus_49.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_5.RULE index e4e8a556b68..825ec5c3b1d 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_5.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL1PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_5.yml b/src/licensedcode/data/rules/agpl-1.0-plus_5.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_50.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_50.RULE index 817f745246e..31a6ea8ff65 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_50.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_50.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_50.yml b/src/licensedcode/data/rules/agpl-1.0-plus_50.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_51.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_51.RULE index 0693a78b778..bf5791c11b5 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_51.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_51.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_51.yml b/src/licensedcode/data/rules/agpl-1.0-plus_51.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_52.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_52.RULE index e207c34aec4..1a117580328 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_52.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_52.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_52.yml b/src/licensedcode/data/rules/agpl-1.0-plus_52.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_53.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_53.RULE index cceb25671bb..1fb2803d379 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_53.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_53.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_53.yml b/src/licensedcode/data/rules/agpl-1.0-plus_53.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_54.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_54.RULE index 57ee5dd047a..6854b368c06 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_54.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_54.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_54.yml b/src/licensedcode/data/rules/agpl-1.0-plus_54.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_55.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_55.RULE index 6ba2b3b54b1..eaa5947892c 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_55.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_55.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_55.yml b/src/licensedcode/data/rules/agpl-1.0-plus_55.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_56.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_56.RULE index d8eb09af3dd..b4e50d250a1 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_56.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_56.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_56.yml b/src/licensedcode/data/rules/agpl-1.0-plus_56.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_57.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_57.RULE index d0df35419b6..9a9fee37d7e 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_57.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_57.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_57.yml b/src/licensedcode/data/rules/agpl-1.0-plus_57.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_58.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_58.RULE index 99301274c22..e3b1a04e73f 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_58.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_58.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_58.yml b/src/licensedcode/data/rules/agpl-1.0-plus_58.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_59.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_59.RULE index dd2eab6d6d7..8ab015fbec4 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_59.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_59.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_59.yml b/src/licensedcode/data/rules/agpl-1.0-plus_59.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_6.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_6.RULE index 230dd933249..b9f86400996 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_6.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_6.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL10PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_6.yml b/src/licensedcode/data/rules/agpl-1.0-plus_6.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_60.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_60.RULE index 3f68f115824..ceefd37831e 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_60.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_60.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_60.yml b/src/licensedcode/data/rules/agpl-1.0-plus_60.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_61.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_61.RULE index a03b7ea28de..24970f0e183 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_61.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_61.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This is free software; you can redistribute it and/or modify it under the terms of the AFFERO GENERAL PUBLIC LICENSE as published by Affero Inc; either version 1, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_61.yml b/src/licensedcode/data/rules/agpl-1.0-plus_61.yml deleted file mode 100644 index 557350b7c26..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_62.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_62.RULE index 2f53ab019b1..e98561b03eb 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_62.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_62.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + AGPL-1.0+ Affero General Public License v1.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_62.yml b/src/licensedcode/data/rules/agpl-1.0-plus_62.yml deleted file mode 100644 index 964b28df2b9..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_62.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_63.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_63.RULE index 04c7c5f8ebb..f6ce0d51d67 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_63.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_63.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Affero General Public License v1.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_63.yml b/src/licensedcode/data/rules/agpl-1.0-plus_63.yml deleted file mode 100644 index 964b28df2b9..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_63.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_64.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_64.RULE index 3f0e51960de..1e07cae8800 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_64.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_64.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Affero General Public License v1.0 or later AGPL-1.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_64.yml b/src/licensedcode/data/rules/agpl-1.0-plus_64.yml deleted file mode 100644 index 964b28df2b9..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_64.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_65.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_65.RULE index 441e6d278c2..b8a546b0a78 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_65.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_65.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : AGPL-1.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_65.yml b/src/licensedcode/data/rules/agpl-1.0-plus_65.yml deleted file mode 100644 index d5c2ee6af9c..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_65.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_66.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_66.RULE index dcfa38f73b9..90e7cfd0494 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_66.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_66.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : AGPL-1.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_66.yml b/src/licensedcode/data/rules/agpl-1.0-plus_66.yml deleted file mode 100644 index 964b28df2b9..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_66.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_67.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_67.RULE index af5c92d3ff0..ec79eba4361 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_67.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_67.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : Affero General Public License v1.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_67.yml b/src/licensedcode/data/rules/agpl-1.0-plus_67.yml deleted file mode 100644 index 964b28df2b9..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_67.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_68.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_68.RULE index 47b63252711..6f4d639b4bf 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_68.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_68.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AGPL-1.0-or-later Affero General Public License v1.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_68.yml b/src/licensedcode/data/rules/agpl-1.0-plus_68.yml deleted file mode 100644 index 8c4bdd73eb1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_68.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_69.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_69.RULE index ba12c3a4163..be26b0019d1 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_69.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_69.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Affero General Public License v1.0 or later AGPL-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_69.yml b/src/licensedcode/data/rules/agpl-1.0-plus_69.yml deleted file mode 100644 index 8c4bdd73eb1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_69.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_7.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_7.RULE index 1915805336d..f79d4927084 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_7.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_7.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLv1PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_7.yml b/src/licensedcode/data/rules/agpl-1.0-plus_7.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_70.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_70.RULE index 6bb65d52260..fa562b4934b 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_70.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_70.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AGPL-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_70.yml b/src/licensedcode/data/rules/agpl-1.0-plus_70.yml deleted file mode 100644 index 0b0d289b3dd..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_70.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_71.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_71.RULE index 7b6bfc87db4..e6ebb3e56a3 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_71.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_71.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Affero General Public License v1.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_71.yml b/src/licensedcode/data/rules/agpl-1.0-plus_71.yml deleted file mode 100644 index 0b0d289b3dd..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_71.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_72.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_72.RULE index 90658d18056..c8640ef2ea3 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_72.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_72.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AGPL-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_72.yml b/src/licensedcode/data/rules/agpl-1.0-plus_72.yml deleted file mode 100644 index 0b0d289b3dd..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_72.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_73.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_73.RULE index 9947fc5b3d6..0d3affcfe9b 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_73.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_73.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AGPL-1.0-or-later +--- + https://licenses.nuget.org/AGPL-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_73.yml b/src/licensedcode/data/rules/agpl-1.0-plus_73.yml deleted file mode 100644 index 3f94dabd0d5..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AGPL-1.0-or-later diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_74.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_74.RULE index edcab1dc154..6f7342efef1 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_74.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_74.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AGPL-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_74.yml b/src/licensedcode/data/rules/agpl-1.0-plus_74.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_75.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_75.RULE index 0e384c4f2ed..1442d5aafff 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_75.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_75.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-1.0-or-later +--- + {{AGPL-1.0-or-later}} https://spdx.org/licenses/AGPL-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_75.yml b/src/licensedcode/data/rules/agpl-1.0-plus_75.yml deleted file mode 100644 index b9b48da0025..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-1.0-or-later diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_76.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_76.RULE index c79322c61c5..7c6e84a0fcb 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_76.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_76.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-1.0 +--- + LICENSE {{AGPL-1.0}} https://spdx.org/licenses/AGPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_76.yml b/src/licensedcode/data/rules/agpl-1.0-plus_76.yml deleted file mode 100644 index 69d32d4aed6..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_76.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-1.0 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_77.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_77.RULE index 6af4f112f19..2c0f5d66124 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_77.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_77.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-1.0-or-later +--- + LICENSE {{AGPL-1.0-or-later}} https://spdx.org/licenses/AGPL-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_77.yml b/src/licensedcode/data/rules/agpl-1.0-plus_77.yml deleted file mode 100644 index b9b48da0025..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-1.0-or-later diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_78.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_78.RULE index d7281440610..ff46153c98e 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_78.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_78.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-1.0 +--- + LICENSE {{AGPL-1.0+}} https://spdx.org/licenses/AGPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_78.yml b/src/licensedcode/data/rules/agpl-1.0-plus_78.yml deleted file mode 100644 index 69d32d4aed6..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-1.0 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_79.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_79.RULE index 0922b9eaabb..1efdb842ff2 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_79.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_79.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-1.0 +--- + {{AGPL-1.0+}} https://spdx.org/licenses/AGPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_79.yml b/src/licensedcode/data/rules/agpl-1.0-plus_79.yml deleted file mode 100644 index 69d32d4aed6..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-1.0 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_8.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_8.RULE index 9ed877bb693..163df2b52fc 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_8.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_8.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLv10PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_8.yml b/src/licensedcode/data/rules/agpl-1.0-plus_8.yml deleted file mode 100644 index de41f5bf6f1..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_9.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_9.RULE index 2eebe9852cd..3a68726d021 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_9.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_9.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_9.yml b/src/licensedcode/data/rules/agpl-1.0-plus_9.yml deleted file mode 100644 index 0b1134bb2c4..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_url_1.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_url_1.RULE index d31f13edb2a..63fff7e8925 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_url_1.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/agpl-1.0-or-later +--- + https://spdx.org/licenses/agpl-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_url_1.yml b/src/licensedcode/data/rules/agpl-1.0-plus_url_1.yml deleted file mode 100644 index 4e78e8f3cc9..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/agpl-1.0-or-later diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_url_2.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_url_2.RULE index ece801c0d18..bcd9212502a 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_url_2.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/agpl-1.0-or-later.html +--- + https://spdx.org/licenses/agpl-1.0-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_url_2.yml b/src/licensedcode/data/rules/agpl-1.0-plus_url_2.yml deleted file mode 100644 index e98abe29e37..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/agpl-1.0-or-later.html diff --git a/src/licensedcode/data/rules/agpl-1.0_1.RULE b/src/licensedcode/data/rules/agpl-1.0_1.RULE index cffbc49d4ac..416ee7e94b7 100644 --- a/src/licensedcode/data/rules/agpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + AGPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_1.yml b/src/licensedcode/data/rules/agpl-1.0_1.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_10.RULE b/src/licensedcode/data/rules/agpl-1.0_10.RULE index b8c205ddfa8..1883735abed 100644 --- a/src/licensedcode/data/rules/agpl-1.0_10.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + agpl 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_10.yml b/src/licensedcode/data/rules/agpl-1.0_10.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_11.RULE b/src/licensedcode/data/rules/agpl-1.0_11.RULE index 9c7af03dfdd..fe8ee5629d0 100644 --- a/src/licensedcode/data/rules/agpl-1.0_11.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + agpl 10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_11.yml b/src/licensedcode/data/rules/agpl-1.0_11.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_12.RULE b/src/licensedcode/data/rules/agpl-1.0_12.RULE index 2eb1926a1e4..e3f61ddd208 100644 --- a/src/licensedcode/data/rules/agpl-1.0_12.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + agpl v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_12.yml b/src/licensedcode/data/rules/agpl-1.0_12.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_13.RULE b/src/licensedcode/data/rules/agpl-1.0_13.RULE index 1f728ac4e4f..352b164492c 100644 --- a/src/licensedcode/data/rules/agpl-1.0_13.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + agpl v10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_13.yml b/src/licensedcode/data/rules/agpl-1.0_13.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_14.RULE b/src/licensedcode/data/rules/agpl-1.0_14.RULE index e96ad01533c..773d3c31a7c 100644 --- a/src/licensedcode/data/rules/agpl-1.0_14.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_14.yml b/src/licensedcode/data/rules/agpl-1.0_14.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_15.RULE b/src/licensedcode/data/rules/agpl-1.0_15.RULE index 6871427d452..5d72fedcc40 100644 --- a/src/licensedcode/data/rules/agpl-1.0_15.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPL10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_15.yml b/src/licensedcode/data/rules/agpl-1.0_15.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_16.RULE b/src/licensedcode/data/rules/agpl-1.0_16.RULE index 33abcf88ad6..3e8d6c476b2 100644 --- a/src/licensedcode/data/rules/agpl-1.0_16.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_16.yml b/src/licensedcode/data/rules/agpl-1.0_16.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_17.RULE b/src/licensedcode/data/rules/agpl-1.0_17.RULE index c69cdd18e03..60bd22447e0 100644 --- a/src/licensedcode/data/rules/agpl-1.0_17.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_17.yml b/src/licensedcode/data/rules/agpl-1.0_17.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_18.RULE b/src/licensedcode/data/rules/agpl-1.0_18.RULE index 2f9619e140b..4df78d71c0f 100644 --- a/src/licensedcode/data/rules/agpl-1.0_18.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_18.yml b/src/licensedcode/data/rules/agpl-1.0_18.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_19.RULE b/src/licensedcode/data/rules/agpl-1.0_19.RULE index d825499a0e7..c6833207424 100644 --- a/src/licensedcode/data/rules/agpl-1.0_19.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl 10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_19.yml b/src/licensedcode/data/rules/agpl-1.0_19.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_2.RULE b/src/licensedcode/data/rules/agpl-1.0_2.RULE index 370f986581a..721c7562830 100644 --- a/src/licensedcode/data/rules/agpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + // It's licensed under the AFFERO GENERAL PUBLIC LICENSE unless stated otherwise. // You can get copies of the licenses here: // affero.org: Affero General Public License version 1 (AGPLv1) diff --git a/src/licensedcode/data/rules/agpl-1.0_2.yml b/src/licensedcode/data/rules/agpl-1.0_2.yml deleted file mode 100644 index 5b7f3b1ea64..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-1.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-1.0_20.RULE b/src/licensedcode/data/rules/agpl-1.0_20.RULE index d23d6a560ab..1f5141b804b 100644 --- a/src/licensedcode/data/rules/agpl-1.0_20.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_20.yml b/src/licensedcode/data/rules/agpl-1.0_20.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_21.RULE b/src/licensedcode/data/rules/agpl-1.0_21.RULE index 68dbf002562..3fa8ceb6e6e 100644 --- a/src/licensedcode/data/rules/agpl-1.0_21.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl v10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_21.yml b/src/licensedcode/data/rules/agpl-1.0_21.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_22.RULE b/src/licensedcode/data/rules/agpl-1.0_22.RULE index 9b7ffc7602c..a6c37d397ab 100644 --- a/src/licensedcode/data/rules/agpl-1.0_22.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_22.yml b/src/licensedcode/data/rules/agpl-1.0_22.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_23.RULE b/src/licensedcode/data/rules/agpl-1.0_23.RULE index 6b9b2f11c27..dbf168cfb1a 100644 --- a/src/licensedcode/data/rules/agpl-1.0_23.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_23.yml b/src/licensedcode/data/rules/agpl-1.0_23.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_24.RULE b/src/licensedcode/data/rules/agpl-1.0_24.RULE index 9741525edd4..56eef1e9d72 100644 --- a/src/licensedcode/data/rules/agpl-1.0_24.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu agplv1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_24.yml b/src/licensedcode/data/rules/agpl-1.0_24.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_25.RULE b/src/licensedcode/data/rules/agpl-1.0_25.RULE index 005063feb83..f7d9924be4e 100644 --- a/src/licensedcode/data/rules/agpl-1.0_25.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu agplv10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_25.yml b/src/licensedcode/data/rules/agpl-1.0_25.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_26.RULE b/src/licensedcode/data/rules/agpl-1.0_26.RULE index b391e6cec32..c10679a16f5 100644 --- a/src/licensedcode/data/rules/agpl-1.0_26.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_26.yml b/src/licensedcode/data/rules/agpl-1.0_26.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_27.RULE b/src/licensedcode/data/rules/agpl-1.0_27.RULE index b0dfe1be2a9..4fe74ecc04b 100644 --- a/src/licensedcode/data/rules/agpl-1.0_27.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl 10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_27.yml b/src/licensedcode/data/rules/agpl-1.0_27.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_28.RULE b/src/licensedcode/data/rules/agpl-1.0_28.RULE index 3404a8cc691..e9c983595cb 100644 --- a/src/licensedcode/data/rules/agpl-1.0_28.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_28.yml b/src/licensedcode/data/rules/agpl-1.0_28.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_29.RULE b/src/licensedcode/data/rules/agpl-1.0_29.RULE index ea1b0df8fc9..62b05e7cddb 100644 --- a/src/licensedcode/data/rules/agpl-1.0_29.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl v10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_29.yml b/src/licensedcode/data/rules/agpl-1.0_29.yml deleted file mode 100644 index 97308bd7a85..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_3.RULE b/src/licensedcode/data/rules/agpl-1.0_3.RULE index 10ec0436a02..55092f095e7 100644 --- a/src/licensedcode/data/rules/agpl-1.0_3.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + AGPLv1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_3.yml b/src/licensedcode/data/rules/agpl-1.0_3.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_30.RULE b/src/licensedcode/data/rules/agpl-1.0_30.RULE index 69333e9bcb9..fd0d252ec0f 100644 --- a/src/licensedcode/data/rules/agpl-1.0_30.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_30.RULE @@ -1 +1,6 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +--- + AGPL-1.0 Affero General Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_30.yml b/src/licensedcode/data/rules/agpl-1.0_30.yml deleted file mode 100644 index cbb3ed940de..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/agpl-1.0_31.RULE b/src/licensedcode/data/rules/agpl-1.0_31.RULE index 07a42e97d7e..36a4fea9b72 100644 --- a/src/licensedcode/data/rules/agpl-1.0_31.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Affero General Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_31.yml b/src/licensedcode/data/rules/agpl-1.0_31.yml deleted file mode 100644 index 4f674fdf377..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0_32.RULE b/src/licensedcode/data/rules/agpl-1.0_32.RULE index 622b815f814..68cf72421bd 100644 --- a/src/licensedcode/data/rules/agpl-1.0_32.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Affero General Public License v1.0 AGPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_32.yml b/src/licensedcode/data/rules/agpl-1.0_32.yml deleted file mode 100644 index 4f674fdf377..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0_33.RULE b/src/licensedcode/data/rules/agpl-1.0_33.RULE index e32191926d7..eebcc36039d 100644 --- a/src/licensedcode/data/rules/agpl-1.0_33.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_33.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : AGPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_33.yml b/src/licensedcode/data/rules/agpl-1.0_33.yml deleted file mode 100644 index eaefae17fca..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0_34.RULE b/src/licensedcode/data/rules/agpl-1.0_34.RULE index d49a74c0522..724034359cb 100644 --- a/src/licensedcode/data/rules/agpl-1.0_34.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_34.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : AGPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_34.yml b/src/licensedcode/data/rules/agpl-1.0_34.yml deleted file mode 100644 index 4f674fdf377..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0_35.RULE b/src/licensedcode/data/rules/agpl-1.0_35.RULE index 2fae4e5f399..f0b0c0a6c05 100644 --- a/src/licensedcode/data/rules/agpl-1.0_35.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_35.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : Affero General Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_35.yml b/src/licensedcode/data/rules/agpl-1.0_35.yml deleted file mode 100644 index 4f674fdf377..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-1.0_36.RULE b/src/licensedcode/data/rules/agpl-1.0_36.RULE index a882a13e0ad..e97724e0b3f 100644 --- a/src/licensedcode/data/rules/agpl-1.0_36.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_36.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Affero General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_36.yml b/src/licensedcode/data/rules/agpl-1.0_36.yml deleted file mode 100644 index 85966d1979c..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0_37.RULE b/src/licensedcode/data/rules/agpl-1.0_37.RULE index 6cf1cf4d078..c2c3f2c8489 100644 --- a/src/licensedcode/data/rules/agpl-1.0_37.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_37.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Affero General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_37.yml b/src/licensedcode/data/rules/agpl-1.0_37.yml deleted file mode 100644 index 85966d1979c..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0_38.RULE b/src/licensedcode/data/rules/agpl-1.0_38.RULE index 8ea40eb462d..ba2703289a7 100644 --- a/src/licensedcode/data/rules/agpl-1.0_38.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_38.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AGPL-1.0-only Affero General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_38.yml b/src/licensedcode/data/rules/agpl-1.0_38.yml deleted file mode 100644 index 85966d1979c..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_38.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0_39.RULE b/src/licensedcode/data/rules/agpl-1.0_39.RULE index 5e2fe18c86d..a00ddabc4e9 100644 --- a/src/licensedcode/data/rules/agpl-1.0_39.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_39.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Affero General Public License v1.0 only AGPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_39.yml b/src/licensedcode/data/rules/agpl-1.0_39.yml deleted file mode 100644 index 85966d1979c..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_39.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0_4.RULE b/src/licensedcode/data/rules/agpl-1.0_4.RULE index efea59b61ba..25ce20663f5 100644 --- a/src/licensedcode/data/rules/agpl-1.0_4.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + Affero General Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_4.yml b/src/licensedcode/data/rules/agpl-1.0_4.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_40.RULE b/src/licensedcode/data/rules/agpl-1.0_40.RULE index f28e5beab20..0673851b51e 100644 --- a/src/licensedcode/data/rules/agpl-1.0_40.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_40.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AGPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_40.yml b/src/licensedcode/data/rules/agpl-1.0_40.yml deleted file mode 100644 index f611db0d11a..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_40.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0_41.RULE b/src/licensedcode/data/rules/agpl-1.0_41.RULE index 16ddcb48a20..cee65b2e63c 100644 --- a/src/licensedcode/data/rules/agpl-1.0_41.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_41.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Affero General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_41.yml b/src/licensedcode/data/rules/agpl-1.0_41.yml deleted file mode 100644 index f611db0d11a..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0_42.RULE b/src/licensedcode/data/rules/agpl-1.0_42.RULE index 2156bd36375..6b871acc0e6 100644 --- a/src/licensedcode/data/rules/agpl-1.0_42.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_42.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AGPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_42.yml b/src/licensedcode/data/rules/agpl-1.0_42.yml deleted file mode 100644 index f611db0d11a..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_42.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0_43.RULE b/src/licensedcode/data/rules/agpl-1.0_43.RULE index 9f16ff4effd..998f07f8a74 100644 --- a/src/licensedcode/data/rules/agpl-1.0_43.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_43.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Affero General Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_43.yml b/src/licensedcode/data/rules/agpl-1.0_43.yml deleted file mode 100644 index f611db0d11a..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_43.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-1.0_44.RULE b/src/licensedcode/data/rules/agpl-1.0_44.RULE index d4edfe9e076..f20dfa22666 100644 --- a/src/licensedcode/data/rules/agpl-1.0_44.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_44.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AGPL-1.0-only +--- + https://licenses.nuget.org/AGPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_44.yml b/src/licensedcode/data/rules/agpl-1.0_44.yml deleted file mode 100644 index 6f59151f4f2..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AGPL-1.0-only diff --git a/src/licensedcode/data/rules/agpl-1.0_45.RULE b/src/licensedcode/data/rules/agpl-1.0_45.RULE index de7475f911c..38e1291648b 100644 --- a/src/licensedcode/data/rules/agpl-1.0_45.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AGPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_45.yml b/src/licensedcode/data/rules/agpl-1.0_45.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_46.RULE b/src/licensedcode/data/rules/agpl-1.0_46.RULE index 0152d31c4ba..bd8d0d8e628 100644 --- a/src/licensedcode/data/rules/agpl-1.0_46.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_46.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-1.0-only +--- + LICENSE {{AGPL-1.0-only}} https://spdx.org/licenses/AGPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_46.yml b/src/licensedcode/data/rules/agpl-1.0_46.yml deleted file mode 100644 index c34f285e373..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-1.0-only diff --git a/src/licensedcode/data/rules/agpl-1.0_47.RULE b/src/licensedcode/data/rules/agpl-1.0_47.RULE index ea3025659a5..6caea8a0dae 100644 --- a/src/licensedcode/data/rules/agpl-1.0_47.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_47.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-1.0-only +--- + {{AGPL-1.0-only}} https://spdx.org/licenses/AGPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_47.yml b/src/licensedcode/data/rules/agpl-1.0_47.yml deleted file mode 100644 index c34f285e373..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-1.0-only diff --git a/src/licensedcode/data/rules/agpl-1.0_48.RULE b/src/licensedcode/data/rules/agpl-1.0_48.RULE index 09e1061dece..d12debde337 100644 --- a/src/licensedcode/data/rules/agpl-1.0_48.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_48.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-1.0 +--- + {{AGPL-1.0}} https://spdx.org/licenses/AGPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_48.yml b/src/licensedcode/data/rules/agpl-1.0_48.yml deleted file mode 100644 index 3ab46b4cfce..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-1.0 diff --git a/src/licensedcode/data/rules/agpl-1.0_5.RULE b/src/licensedcode/data/rules/agpl-1.0_5.RULE index b061bf0609b..6e1e0316310 100644 --- a/src/licensedcode/data/rules/agpl-1.0_5.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + // The source code packaged with this file is Free Software, // It's licensed under the AFFERO GENERAL PUBLIC LICENSE unless stated otherwise. // You can get copies of the licenses here: diff --git a/src/licensedcode/data/rules/agpl-1.0_5.yml b/src/licensedcode/data/rules/agpl-1.0_5.yml deleted file mode 100644 index 5b7f3b1ea64..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-1.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-1.0_6.RULE b/src/licensedcode/data/rules/agpl-1.0_6.RULE index c8abe6a3d75..3d88663f915 100644 --- a/src/licensedcode/data/rules/agpl-1.0_6.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.affero.org/oagpl.html +--- + http://www.affero.org/oagpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_6.yml b/src/licensedcode/data/rules/agpl-1.0_6.yml deleted file mode 100644 index 1bc8d4f56e5..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.affero.org/oagpl.html diff --git a/src/licensedcode/data/rules/agpl-1.0_7.RULE b/src/licensedcode/data/rules/agpl-1.0_7.RULE index c8accc8aaee..301828c2b96 100644 --- a/src/licensedcode/data/rules/agpl-1.0_7.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 95 +--- + AGPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_7.yml b/src/licensedcode/data/rules/agpl-1.0_7.yml deleted file mode 100644 index 2c6fcef0c5f..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/agpl-1.0_8.RULE b/src/licensedcode/data/rules/agpl-1.0_8.RULE index efe591433ef..32d360d5f96 100644 --- a/src/licensedcode/data/rules/agpl-1.0_8.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 95 +--- + AGPL10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_8.yml b/src/licensedcode/data/rules/agpl-1.0_8.yml deleted file mode 100644 index 2c6fcef0c5f..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/agpl-1.0_9.RULE b/src/licensedcode/data/rules/agpl-1.0_9.RULE index 154468d156f..d47dedcbaad 100644 --- a/src/licensedcode/data/rules/agpl-1.0_9.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 100 +--- + AGPLv10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_9.yml b/src/licensedcode/data/rules/agpl-1.0_9.yml deleted file mode 100644 index 01bd3156131..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0_url_1.RULE b/src/licensedcode/data/rules/agpl-1.0_url_1.RULE index 6f085da0557..668853afbc0 100644 --- a/src/licensedcode/data/rules/agpl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/agpl-1.0-only +--- + https://spdx.org/licenses/agpl-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_url_1.yml b/src/licensedcode/data/rules/agpl-1.0_url_1.yml deleted file mode 100644 index bb867e9f595..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/agpl-1.0-only diff --git a/src/licensedcode/data/rules/agpl-1.0_url_2.RULE b/src/licensedcode/data/rules/agpl-1.0_url_2.RULE index 7b1e66e5028..40b6d8c1f8c 100644 --- a/src/licensedcode/data/rules/agpl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/agpl-1.0-only.html +--- + https://spdx.org/licenses/agpl-1.0-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_url_2.yml b/src/licensedcode/data/rules/agpl-1.0_url_2.yml deleted file mode 100644 index 5c001d37ff2..00000000000 --- a/src/licensedcode/data/rules/agpl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/agpl-1.0-only.html diff --git a/src/licensedcode/data/rules/agpl-2.0_1.RULE b/src/licensedcode/data/rules/agpl-2.0_1.RULE index fad37ed3934..7d8038f7e3e 100644 --- a/src/licensedcode/data/rules/agpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Affero General Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_1.yml b/src/licensedcode/data/rules/agpl-2.0_1.yml deleted file mode 100644 index 54210fdc3bc..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_10.RULE b/src/licensedcode/data/rules/agpl-2.0_10.RULE index 74a7a911d7e..584a88b0d24 100644 --- a/src/licensedcode/data/rules/agpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + agpl 20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_10.yml b/src/licensedcode/data/rules/agpl-2.0_10.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_11.RULE b/src/licensedcode/data/rules/agpl-2.0_11.RULE index 34d7e76e3d3..7115c9795bd 100644 --- a/src/licensedcode/data/rules/agpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + agpl v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_11.yml b/src/licensedcode/data/rules/agpl-2.0_11.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_12.RULE b/src/licensedcode/data/rules/agpl-2.0_12.RULE index 4cc61840885..6c911e9e3e1 100644 --- a/src/licensedcode/data/rules/agpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + agpl v20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_12.yml b/src/licensedcode/data/rules/agpl-2.0_12.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_13.RULE b/src/licensedcode/data/rules/agpl-2.0_13.RULE index b2ed9c04ffe..77627fe5756 100644 --- a/src/licensedcode/data/rules/agpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + agpl v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_13.yml b/src/licensedcode/data/rules/agpl-2.0_13.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_14.RULE b/src/licensedcode/data/rules/agpl-2.0_14.RULE index 66931478385..c39afcc61ca 100644 --- a/src/licensedcode/data/rules/agpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_14.yml b/src/licensedcode/data/rules/agpl-2.0_14.yml deleted file mode 100644 index 54210fdc3bc..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_15.RULE b/src/licensedcode/data/rules/agpl-2.0_15.RULE index 78cdcba4153..475ec27ce10 100644 --- a/src/licensedcode/data/rules/agpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPL20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_15.yml b/src/licensedcode/data/rules/agpl-2.0_15.yml deleted file mode 100644 index 54210fdc3bc..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_16.RULE b/src/licensedcode/data/rules/agpl-2.0_16.RULE index 1dd8ee9cf89..8196da85bc3 100644 --- a/src/licensedcode/data/rules/agpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_16.yml b/src/licensedcode/data/rules/agpl-2.0_16.yml deleted file mode 100644 index 54210fdc3bc..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_17.RULE b/src/licensedcode/data/rules/agpl-2.0_17.RULE index dd0dc3ca533..fbdb6ce4031 100644 --- a/src/licensedcode/data/rules/agpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_17.yml b/src/licensedcode/data/rules/agpl-2.0_17.yml deleted file mode 100644 index 54210fdc3bc..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_18.RULE b/src/licensedcode/data/rules/agpl-2.0_18.RULE index aed7fe6349f..9180ccac46c 100644 --- a/src/licensedcode/data/rules/agpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_18.yml b/src/licensedcode/data/rules/agpl-2.0_18.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_19.RULE b/src/licensedcode/data/rules/agpl-2.0_19.RULE index 07593268c5c..784ea05b3d0 100644 --- a/src/licensedcode/data/rules/agpl-2.0_19.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl 20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_19.yml b/src/licensedcode/data/rules/agpl-2.0_19.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_2.RULE b/src/licensedcode/data/rules/agpl-2.0_2.RULE index 7cfec176222..e991110a05a 100644 --- a/src/licensedcode/data/rules/agpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 95 +--- + AGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_2.yml b/src/licensedcode/data/rules/agpl-2.0_2.yml deleted file mode 100644 index dd4d7874ac0..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/agpl-2.0_20.RULE b/src/licensedcode/data/rules/agpl-2.0_20.RULE index 9891d0cbf27..9a59553dc8e 100644 --- a/src/licensedcode/data/rules/agpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_20.yml b/src/licensedcode/data/rules/agpl-2.0_20.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_21.RULE b/src/licensedcode/data/rules/agpl-2.0_21.RULE index 0bd7fce4306..9b9a0b1353f 100644 --- a/src/licensedcode/data/rules/agpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl v20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_21.yml b/src/licensedcode/data/rules/agpl-2.0_21.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_22.RULE b/src/licensedcode/data/rules/agpl-2.0_22.RULE index 5db6772da12..7986df580e8 100644 --- a/src/licensedcode/data/rules/agpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_22.yml b/src/licensedcode/data/rules/agpl-2.0_22.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_23.RULE b/src/licensedcode/data/rules/agpl-2.0_23.RULE index 6544678ba3b..42eb68dba7e 100644 --- a/src/licensedcode/data/rules/agpl-2.0_23.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_23.yml b/src/licensedcode/data/rules/agpl-2.0_23.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_24.RULE b/src/licensedcode/data/rules/agpl-2.0_24.RULE index 99d6034e39a..78440f560c4 100644 --- a/src/licensedcode/data/rules/agpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_24.yml b/src/licensedcode/data/rules/agpl-2.0_24.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_25.RULE b/src/licensedcode/data/rules/agpl-2.0_25.RULE index c9609e0266e..1d10bd3fcd7 100644 --- a/src/licensedcode/data/rules/agpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_25.yml b/src/licensedcode/data/rules/agpl-2.0_25.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_26.RULE b/src/licensedcode/data/rules/agpl-2.0_26.RULE index b20248de176..b55f78bf902 100644 --- a/src/licensedcode/data/rules/agpl-2.0_26.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agplv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_26.yml b/src/licensedcode/data/rules/agpl-2.0_26.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_27.RULE b/src/licensedcode/data/rules/agpl-2.0_27.RULE index 6a1417b145d..e14bb2c01d4 100644 --- a/src/licensedcode/data/rules/agpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agplv20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_27.yml b/src/licensedcode/data/rules/agpl-2.0_27.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_28.RULE b/src/licensedcode/data/rules/agpl-2.0_28.RULE index 7abcbe6f734..64b625c49cc 100644 --- a/src/licensedcode/data/rules/agpl-2.0_28.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_28.yml b/src/licensedcode/data/rules/agpl-2.0_28.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_29.RULE b/src/licensedcode/data/rules/agpl-2.0_29.RULE index e5da6003b4e..12e5cd537c7 100644 --- a/src/licensedcode/data/rules/agpl-2.0_29.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl 20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_29.yml b/src/licensedcode/data/rules/agpl-2.0_29.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_3.RULE b/src/licensedcode/data/rules/agpl-2.0_3.RULE index 755c7505067..7ba62a8baf6 100644 --- a/src/licensedcode/data/rules/agpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.affero.org/agpl2.html +--- + http://www.affero.org/agpl2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_3.yml b/src/licensedcode/data/rules/agpl-2.0_3.yml deleted file mode 100644 index 6a808cf937f..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.affero.org/agpl2.html diff --git a/src/licensedcode/data/rules/agpl-2.0_30.RULE b/src/licensedcode/data/rules/agpl-2.0_30.RULE index 9ad2a15bef9..c1bea8bf580 100644 --- a/src/licensedcode/data/rules/agpl-2.0_30.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_30.yml b/src/licensedcode/data/rules/agpl-2.0_30.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_31.RULE b/src/licensedcode/data/rules/agpl-2.0_31.RULE index fb6fc01d73d..e776d4ef36e 100644 --- a/src/licensedcode/data/rules/agpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl v20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_31.yml b/src/licensedcode/data/rules/agpl-2.0_31.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_32.RULE b/src/licensedcode/data/rules/agpl-2.0_32.RULE index c165d1c735f..c0ded216eb3 100644 --- a/src/licensedcode/data/rules/agpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_32.yml b/src/licensedcode/data/rules/agpl-2.0_32.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_33.RULE b/src/licensedcode/data/rules/agpl-2.0_33.RULE index b5f847378e6..f2f4ed6bffd 100644 --- a/src/licensedcode/data/rules/agpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_33.yml b/src/licensedcode/data/rules/agpl-2.0_33.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_4.RULE b/src/licensedcode/data/rules/agpl-2.0_4.RULE index b1b730c6969..81aa9653efa 100644 --- a/src/licensedcode/data/rules/agpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +--- + AGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_4.yml b/src/licensedcode/data/rules/agpl-2.0_4.yml deleted file mode 100644 index 54210fdc3bc..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_5.RULE b/src/licensedcode/data/rules/agpl-2.0_5.RULE index 73e2e138212..61494aa8aa5 100644 --- a/src/licensedcode/data/rules/agpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.affero.org/oagf.html +--- + http://www.affero.org/oagf.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_5.yml b/src/licensedcode/data/rules/agpl-2.0_5.yml deleted file mode 100644 index 701539df82e..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.affero.org/oagf.html diff --git a/src/licensedcode/data/rules/agpl-2.0_6.RULE b/src/licensedcode/data/rules/agpl-2.0_6.RULE index 4e87c6ef312..df3639137af 100644 --- a/src/licensedcode/data/rules/agpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 95 +--- + AGPL20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_6.yml b/src/licensedcode/data/rules/agpl-2.0_6.yml deleted file mode 100644 index dd4d7874ac0..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/agpl-2.0_7.RULE b/src/licensedcode/data/rules/agpl-2.0_7.RULE index b7e9e529317..bc7ec9874a1 100644 --- a/src/licensedcode/data/rules/agpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +--- + AGPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_7.yml b/src/licensedcode/data/rules/agpl-2.0_7.yml deleted file mode 100644 index 54210fdc3bc..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_8.RULE b/src/licensedcode/data/rules/agpl-2.0_8.RULE index f8672597a1e..72b7e8c68c3 100644 --- a/src/licensedcode/data/rules/agpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_reference: yes +relevance: 100 +--- + AGPLv20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_8.yml b/src/licensedcode/data/rules/agpl-2.0_8.yml deleted file mode 100644 index 54210fdc3bc..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-2.0_9.RULE b/src/licensedcode/data/rules/agpl-2.0_9.RULE index d9dd154e2c8..db679bd403d 100644 --- a/src/licensedcode/data/rules/agpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/agpl-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-2.0 +is_license_tag: yes +relevance: 100 +--- + agpl 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-2.0_9.yml b/src/licensedcode/data/rules/agpl-2.0_9.yml deleted file mode 100644 index 824a2fef723..00000000000 --- a/src/licensedcode/data/rules/agpl-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_1.RULE index c11a448e56f..e3493f44073 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl +--- + licensed under the `AGPL v3` or later. http://www.gnu.org/licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_1.yml deleted file mode 100644 index 674585f88fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_10.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_10.RULE index 288effd0ce7..c4466cbc0a3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_10.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_10.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + is licensed under the AGPL3+ unless otherwise specified. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_10.yml b/src/licensedcode/data/rules/agpl-3.0-plus_10.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_100.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_100.RULE index 513f20753e5..519c00a0697 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_100.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_100.RULE @@ -1,2 +1,12 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.md +--- + Licensing This project is free and open-source software and is distributed under the terms of the GNU Affero General Public License v3 or any later version. It is subject to the license terms in the LICENSE file found in the top-level directory of this distribution and at https://www.gnu.org/licenses/agpl-3.0.md. By submitting a contribution to this project you agree and acknowledge that your contribution may be used under the terms of the GNU Affero General Public License v3 or any later version and you are authorized to submit the contribution on behalf of the copyright holder. No part of this project, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_100.yml b/src/licensedcode/data/rules/agpl-3.0-plus_100.yml deleted file mode 100644 index edf33400cdb..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_100.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.md diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_101.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_101.RULE index beca6c75c34..a693bfca514 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_101.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_101.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 80 +--- + AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_101.yml b/src/licensedcode/data/rules/agpl-3.0-plus_101.yml deleted file mode 100644 index 594b8787d58..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_102.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_102.RULE index c4b92a4bb96..ebd9eb12828 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_102.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_102.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the GNU AFFERO license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_102.yml b/src/licensedcode/data/rules/agpl-3.0-plus_102.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_103.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_103.RULE index 61f20650684..99f38c999b3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_103.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_103.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_103.yml b/src/licensedcode/data/rules/agpl-3.0-plus_103.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_104.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_104.RULE index 072ebb64e69..c119c30f7e0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_104.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_104.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License: AGPL 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_104.yml b/src/licensedcode/data/rules/agpl-3.0-plus_104.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_105.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_105.RULE index 5d3089ad951..43d3c507e3b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_105.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_105.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_105.yml b/src/licensedcode/data/rules/agpl-3.0-plus_105.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_106.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_106.RULE index f4f30766fb4..a6018cf6e2e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_106.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_106.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is licensed under the GNU Affero General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_106.yml b/src/licensedcode/data/rules/agpl-3.0-plus_106.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_107.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_107.RULE index 9d51c3066ca..7e0bfc235dc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_107.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_107.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + program is licensed under the GNU Affero General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_107.yml b/src/licensedcode/data/rules/agpl-3.0-plus_107.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_108.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_108.RULE index 41a06930fc0..b12cf7461c0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_108.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_108.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_108.yml b/src/licensedcode/data/rules/agpl-3.0-plus_108.yml deleted file mode 100644 index 38aee4f1557..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_109.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_109.RULE index 5047c1ef327..f555cfa5abc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_109.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_109.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_109.yml b/src/licensedcode/data/rules/agpl-3.0-plus_109.yml deleted file mode 100644 index 38aee4f1557..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt 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 aef3d9d4c69..8a117fb6d9d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-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 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. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_11.yml b/src/licensedcode/data/rules/agpl-3.0-plus_11.yml deleted file mode 100644 index 01f6ef65b32..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_110.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_110.RULE index cb8b9bbfdd2..a63618b0139 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_110.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_110.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_110.yml b/src/licensedcode/data/rules/agpl-3.0-plus_110.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_111.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_111.RULE index 1ea5ab11520..c06cfd1abee 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_111.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_111.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_111.yml b/src/licensedcode/data/rules/agpl-3.0-plus_111.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_112.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_112.RULE index 50f08d045ef..a21e7fcfb36 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_112.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_112.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 92 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: AGPL-3.0 This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_112.yml b/src/licensedcode/data/rules/agpl-3.0-plus_112.yml deleted file mode 100644 index 290df89bf62..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_112.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 92 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_113.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_113.RULE index fe257379af7..5691b779d69 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_113.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_113.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_113.yml b/src/licensedcode/data/rules/agpl-3.0-plus_113.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_114.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_114.RULE index fdd7089a4f8..8432759beeb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_114.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_114.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under AGPL-3.0+ and is free software \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_114.yml b/src/licensedcode/data/rules/agpl-3.0-plus_114.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_115.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_115.RULE index 7df65c12c53..f860cf22d7c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_115.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_115.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + * * The software in this package is published under the terms of the AGPL license * a copy of which has been included with this distribution in the license.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_115.yml b/src/licensedcode/data/rules/agpl-3.0-plus_115.yml deleted file mode 100644 index 1d921ec4668..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_116.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_116.RULE index c41fb90c0f6..eb1591c2552 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_116.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_116.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl +--- + License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_116.yml b/src/licensedcode/data/rules/agpl-3.0-plus_116.yml deleted file mode 100644 index 674585f88fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_117.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_117.RULE index dd9f2c83ff6..9dc701294ab 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_117.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_117.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - AGPLv3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This software's license gives you freedom; you can copy, convey, # propagate, redistribute and/or modify this program under the terms of # the GNU Affero General Public License (AGPL) as published by the Free diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_117.yml b/src/licensedcode/data/rules/agpl-3.0-plus_117.yml deleted file mode 100644 index b0f4a98d98a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_117.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - AGPLv3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_118.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_118.RULE index 9488103a043..ec1429e6cbf 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_118.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_118.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is distributed under the terms of the GNU Affero General Public License version 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_118.yml b/src/licensedcode/data/rules/agpl-3.0-plus_118.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_119.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_119.RULE index 4360a6cbd91..562ca31035d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_119.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_119.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.txt +--- + This program is distributed under the terms of the GNU Affero General Public License version 3.0 or later see http://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_119.yml b/src/licensedcode/data/rules/agpl-3.0-plus_119.yml deleted file mode 100644 index 890b2fb3fa2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_119.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_12.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_12.RULE index 3b552722377..b997f54a0bf 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_12.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.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 Affero General Public License as published by the Free Software Foundation, either version 3 of the @@ -9,4 +14,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_12.yml b/src/licensedcode/data/rules/agpl-3.0-plus_12.yml deleted file mode 100644 index 93b0cdb2405..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_120.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_120.RULE index 812caa0e370..a3ae14d1934 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_120.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_120.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_120.yml b/src/licensedcode/data/rules/agpl-3.0-plus_120.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_121.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_121.RULE index 7fcf85ef478..4bf0ca40b8f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_121.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_121.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/agpl.txt +--- + LICENSE 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, version 3 of the License or later. You should have received a copy of the GNU Affero General Public License along with this program. See the LICENSE file in the root directory. If not, see https://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_121.yml b/src/licensedcode/data/rules/agpl-3.0-plus_121.yml deleted file mode 100644 index 4c0c9ace41d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_121.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_122.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_122.RULE index 425c3f0c922..089ca542a9f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_122.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_122.RULE @@ -1 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/agpl.txt +--- + 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, version 3 of the License or later. You should have received a copy of the GNU Affero General Public License along with this program. See the LICENSE file in the root directory. If not, see https://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_122.yml b/src/licensedcode/data/rules/agpl-3.0-plus_122.yml deleted file mode 100644 index 4c0c9ace41d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_122.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_123.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_123.RULE index c9497f5b26a..8062adf7ca6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_123.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_123.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + * LICENSE: * This program is free software: you can redistribute it * and/or modify it under the terms of the GNU Affero diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_123.yml b/src/licensedcode/data/rules/agpl-3.0-plus_123.yml deleted file mode 100644 index 7a0d2ba0572..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_123.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_124.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_124.RULE index 6d5eddaca24..cb477daebdb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_124.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_124.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + # This software's license gives you freedom; you can copy, convey, # propagate, redistribute and/or modify this program under the terms of # the GNU Affero General Public License (AGPL) as published by the Free diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_124.yml b/src/licensedcode/data/rules/agpl-3.0-plus_124.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_125.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_125.RULE index 085548e281a..c4feab4c274 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_125.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_125.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl +--- + # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_125.yml b/src/licensedcode/data/rules/agpl-3.0-plus_125.yml deleted file mode 100644 index 4dcc43f6e29..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_125.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_126.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_126.RULE index f60ede18e9d..86c80b68262 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_126.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_126.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GNU AGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_126.yml b/src/licensedcode/data/rules/agpl-3.0-plus_126.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_127.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_127.RULE index ccec0f2961a..1c45ba3e868 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_127.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_127.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * License: GNU Affero General Public License version 3, or any later version * See top-level LICENSE file for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_127.yml b/src/licensedcode/data/rules/agpl-3.0-plus_127.yml deleted file mode 100644 index f9cb46a79dc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_128.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_128.RULE index 376a78aac24..ed38f1e6096 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_128.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_128.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + * License: GNU Affero General Public License version 3, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_128.yml b/src/licensedcode/data/rules/agpl-3.0-plus_128.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_129.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_129.RULE index f74a97b0193..a20e5815203 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_129.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_129.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed under the Affero General Public License version 3, the text of which can be found in COPYING, or any later version of the AGPL, unless otherwise noted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_129.yml b/src/licensedcode/data/rules/agpl-3.0-plus_129.yml deleted file mode 100644 index 57556f9573d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_13.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_13.RULE index 1b1b4898d8a..963aab8eee6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_13.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_13.RULE @@ -1,5 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + * 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. * - * \ No newline at end of file + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_13.yml b/src/licensedcode/data/rules/agpl-3.0-plus_13.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_130.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_130.RULE index 764e8aafade..71515d3a43d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_130.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_130.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + or any later version of the AGPL, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_130.yml b/src/licensedcode/data/rules/agpl-3.0-plus_130.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_131.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_131.RULE index 4851b6dbbf9..2f683986564 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_131.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_131.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the Affero General Public License version 3, or any later version of the AGPL, unless otherwise noted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_131.yml b/src/licensedcode/data/rules/agpl-3.0-plus_131.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_132.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_132.RULE index 344510c18aa..8a60a0b7125 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_132.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_132.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the Affero General Public License version 3, or any later version of the AGPL, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_132.yml b/src/licensedcode/data/rules/agpl-3.0-plus_132.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_133.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_133.RULE index 6d64f04a0a5..128c9e47e69 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_133.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_133.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + # Licensed under AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_133.yml b/src/licensedcode/data/rules/agpl-3.0-plus_133.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_134.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_134.RULE index 3db838e5773..7e6760d1085 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_134.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_134.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license='AGPL v3 or later', \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_134.yml b/src/licensedcode/data/rules/agpl-3.0-plus_134.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_135.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_135.RULE index 28d5b587f8d..1bbe5e16b7d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_135.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_135.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - GNU-AGPL-3.0 +--- + files herein are licensed under the Affero General Public License version 3, the text of which can be found in GNU-AGPL-3.0, or any later version of the AGPL, unless otherwise diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_135.yml b/src/licensedcode/data/rules/agpl-3.0-plus_135.yml deleted file mode 100644 index 74aadd531ef..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_135.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - GNU-AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_136.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_136.RULE index 6f6e31a75bd..0ab37798227 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_136.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_136.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - GNU-AGPL-3.0 +--- + licensed under the Affero General Public License version 3, the text of which can be found in GNU-AGPL-3.0, or any later version of the AGPL, unless otherwise noted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_136.yml b/src/licensedcode/data/rules/agpl-3.0-plus_136.yml deleted file mode 100644 index 74aadd531ef..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_136.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - GNU-AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_137.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_137.RULE index d83ec96bb9c..93e1a490d92 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_137.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_137.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_137.yml b/src/licensedcode/data/rules/agpl-3.0-plus_137.yml deleted file mode 100644 index d7c6c36cdd8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_137.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_138.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_138.RULE index 118e0ebf9ad..9f464f164e1 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_138.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_138.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_138.yml b/src/licensedcode/data/rules/agpl-3.0-plus_138.yml deleted file mode 100644 index d7c6c36cdd8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_138.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_139.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_139.RULE index 562cf6a6181..f3170d4bb49 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_139.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_139.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_139.yml b/src/licensedcode/data/rules/agpl-3.0-plus_139.yml deleted file mode 100644 index a24c77aefc9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_14.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_14.RULE index fdf12e44148..2405b09a23e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_14.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_14.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 80 +--- + "AGPL ed" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_14.yml b/src/licensedcode/data/rules/agpl-3.0-plus_14.yml deleted file mode 100644 index 48419b00383..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_140.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_140.RULE index e535724cebd..321849ddd55 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_140.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_140.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # This program is free software: you can redistribute it and/or modify # it under the terms of the Affero GNU General Public License as # published by the Free Software Foundation, either version 3 of the @@ -9,4 +16,4 @@ # GNU General Public License for more details. # # You should have received a copy of the Affero GNU General Public License -# along with this program. If not, see . +# along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_140.yml b/src/licensedcode/data/rules/agpl-3.0-plus_140.yml deleted file mode 100644 index 460b8061495..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_140.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_141.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_141.RULE index e4fc0cbf93f..620327777bb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_141.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_141.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_141.yml b/src/licensedcode/data/rules/agpl-3.0-plus_141.yml deleted file mode 100644 index a24c77aefc9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_141.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_142.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_142.RULE index 481a8de9135..f9c6386cd4e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_142.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_142.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL Ghostscript 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_142.yml b/src/licensedcode/data/rules/agpl-3.0-plus_142.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_143.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_143.RULE index 94690f85ee1..874fdc9e1e2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_143.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_143.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 90 +notes: an indirect reference +--- + GPL Ghostscript \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_143.yml b/src/licensedcode/data/rules/agpl-3.0-plus_143.yml deleted file mode 100644 index 4ef14b2ff91..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_143.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 90 -notes: an indirect reference diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_144.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_144.RULE index b075f817c88..8b2747cd152 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_144.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_144.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + Affero GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_144.yml b/src/licensedcode/data/rules/agpl-3.0-plus_144.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_145.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_145.RULE index 08d712a5fc0..ba88d016cb2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_145.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_145.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +notes: Ghostscript references +--- + Whereas, Raph Levien (hereinafter "Inventor") has obtained patent protection for related technology (hereinafter "Patented Technology"), Inventor wishes to aid the the GNU free software diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_145.yml b/src/licensedcode/data/rules/agpl-3.0-plus_145.yml deleted file mode 100644 index 61264dc4506..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_145.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -notes: Ghostscript references diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_146.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_146.RULE index ac24534624a..7a89a82f81b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_146.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_146.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_146.yml b/src/licensedcode/data/rules/agpl-3.0-plus_146.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_147.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_147.RULE index f9ebe914d89..4d006d71fee 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_147.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_147.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_147.yml b/src/licensedcode/data/rules/agpl-3.0-plus_147.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_148.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_148.RULE index e5ba2102f7a..834f6ca045d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_148.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_148.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.artifex.com/ +--- + This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_148.yml b/src/licensedcode/data/rules/agpl-3.0-plus_148.yml deleted file mode 100644 index 47b8a7d9335..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_148.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.artifex.com/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_149.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_149.RULE index 3ee72f72195..e5b0a0b13dc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_149.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_149.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.artifex.com/ +--- + This software is provided AS-IS with no warranty, either express or implied. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_149.yml b/src/licensedcode/data/rules/agpl-3.0-plus_149.yml deleted file mode 100644 index e1883ec6234..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_149.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.artifex.com/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_15.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_15.RULE index 66c706779ce..cc5fa934bee 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_15.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_15.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLed \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_15.yml b/src/licensedcode/data/rules/agpl-3.0-plus_15.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_150.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_150.RULE index c04fe076da4..626b3c13a72 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_150.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_150.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + jbig2dec is free software; you can redistribute it and/or modify it under the terms the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_150.yml b/src/licensedcode/data/rules/agpl-3.0-plus_150.yml deleted file mode 100644 index 57556f9573d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_150.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_151.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_151.RULE index 98d418c7526..e881db86088 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_151.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_151.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + is free software; you can redistribute it and/or modify it under the terms the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_151.yml b/src/licensedcode/data/rules/agpl-3.0-plus_151.yml deleted file mode 100644 index 57556f9573d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_151.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_152.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_152.RULE index f4ccde24b71..312d3bea842 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_152.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_152.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.ghostscript.com/ +--- + http://www.ghostscript.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_152.yml b/src/licensedcode/data/rules/agpl-3.0-plus_152.yml deleted file mode 100644 index 3c6d8365ef1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_152.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.ghostscript.com/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_153.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_153.RULE index 9ede5ccd08e..3889e42d8d8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_153.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_153.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 90 +--- + AGPL Ghostscript \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_153.yml b/src/licensedcode/data/rules/agpl-3.0-plus_153.yml deleted file mode 100644 index e5e9ed31c0e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_154.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_154.RULE index 42b76bd7446..c4dbd2847dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_154.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_154.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU Affero General Public License (the "AGPL"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_154.yml b/src/licensedcode/data/rules/agpl-3.0-plus_154.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_155.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_155.RULE index 88ba71187ce..fe5800d98a7 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_155.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_155.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU Affero General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_155.yml b/src/licensedcode/data/rules/agpl-3.0-plus_155.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_156.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_156.RULE index edb3b999ea2..939a1e30a4a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_156.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_156.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU Affero General Public License (the "AGPL"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_156.yml b/src/licensedcode/data/rules/agpl-3.0-plus_156.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_157.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_157.RULE index 2c2ecab1335..216fc23cf35 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_157.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_157.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the Affero GNU General Public License (AGPL3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_157.yml b/src/licensedcode/data/rules/agpl-3.0-plus_157.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_158.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_158.RULE index 16f86b9e98a..53993828693 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_158.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_158.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the Affero GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_158.yml b/src/licensedcode/data/rules/agpl-3.0-plus_158.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_159.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_159.RULE index 7a41f1d70a9..5436823c771 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_159.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_159.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 90 +--- + GPL MuPDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_159.yml b/src/licensedcode/data/rules/agpl-3.0-plus_159.yml deleted file mode 100644 index e5e9ed31c0e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_16.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_16.RULE index 6536e4f1d97..6df0225500e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_16.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_16.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_16.yml b/src/licensedcode/data/rules/agpl-3.0-plus_16.yml deleted file mode 100644 index 5826d062ee3..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_160.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_160.RULE index 0c233732ba0..16cc97e07f5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_160.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_160.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 90 +--- + AGPL MuPDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_160.yml b/src/licensedcode/data/rules/agpl-3.0-plus_160.yml deleted file mode 100644 index e5e9ed31c0e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 90 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 90a5989e3cc..3f04712788b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_161.yml b/src/licensedcode/data/rules/agpl-3.0-plus_161.yml deleted file mode 100644 index 57556f9573d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_162.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_162.RULE index b29a005ba85..5643d95db7f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_162.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_162.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This script is part of GNU Ghostscript and is distributed under the terms of the GNU Affero General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_162.yml b/src/licensedcode/data/rules/agpl-3.0-plus_162.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_163.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_163.RULE index ebccf6ffb93..0cbfdbca194 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_163.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_163.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This program 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_163.yml b/src/licensedcode/data/rules/agpl-3.0-plus_163.yml deleted file mode 100644 index 57556f9573d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_164.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_164.RULE index c453110320f..ce3e5471c5b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_164.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_164.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This software is supplied under the GNU AGPLv3 and comes with NO WARRANTY: see the file COPYING for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_164.yml b/src/licensedcode/data/rules/agpl-3.0-plus_164.yml deleted file mode 100644 index 57556f9573d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_165.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_165.RULE index 3d65888f6b8..35630850183 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_165.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_165.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + supplied under the GNU AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_165.yml b/src/licensedcode/data/rules/agpl-3.0-plus_165.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_166.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_166.RULE index 2873660aff7..fe34bf65711 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_166.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_166.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_166.yml b/src/licensedcode/data/rules/agpl-3.0-plus_166.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_167.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_167.RULE index 58b68dce61c..9e85f2eed87 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_167.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_167.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + It is licensed under the GNU Affero General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_167.yml b/src/licensedcode/data/rules/agpl-3.0-plus_167.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_168.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_168.RULE index 546c50331f9..3f1756a5533 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_168.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_168.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: AGPLV3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_168.yml b/src/licensedcode/data/rules/agpl-3.0-plus_168.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_169.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_169.RULE index b632e0d0580..190396d176a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_169.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_169.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: AGPL V3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_169.yml b/src/licensedcode/data/rules/agpl-3.0-plus_169.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_17.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_17.RULE index b03b56b4a55..a55739c46c7 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_17.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_17.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Affero General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_17.yml b/src/licensedcode/data/rules/agpl-3.0-plus_17.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_170.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_170.RULE index d6aa7aa8a23..c980490d24c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_170.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_170.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + Licence: AGPLV3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_170.yml b/src/licensedcode/data/rules/agpl-3.0-plus_170.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_171.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_171.RULE index 8062d0e036e..a0792c64f1a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_171.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_171.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + Licence: AGPL V3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_171.yml b/src/licensedcode/data/rules/agpl-3.0-plus_171.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_172.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_172.RULE index 3544daa532e..d954f4c7a59 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_172.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_172.RULE @@ -1,6 +1,16 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://salsa.debian.org/qa/debsources/blob/master/COPYING +--- + # Debsources 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. For more information # see the COPYING file at the top-level directory of this distribution and at -# https://salsa.debian.org/qa/debsources/blob/master/COPYING +# https://salsa.debian.org/qa/debsources/blob/master/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_172.yml b/src/licensedcode/data/rules/agpl-3.0-plus_172.yml deleted file mode 100644 index 3c227235555..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_172.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://salsa.debian.org/qa/debsources/blob/master/COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_173.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_173.RULE index 7d05f83cff2..baa5e8bab46 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_173.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_173.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 99 +--- + license='GNU AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_173.yml b/src/licensedcode/data/rules/agpl-3.0-plus_173.yml deleted file mode 100644 index c1f8cd013e2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_174.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_174.RULE index 91b1b78f8d7..6a796ddd892 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_174.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_174.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 99 +--- + GNU AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_174.yml b/src/licensedcode/data/rules/agpl-3.0-plus_174.yml deleted file mode 100644 index c1f8cd013e2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_175.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_175.RULE index 5b4882571f6..23a239996c3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_175.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_175.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + # License: GNU Affero General Public License v3 or later # A copy of GNU AGPL v3 should have been included in this software package in LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_175.yml b/src/licensedcode/data/rules/agpl-3.0-plus_175.yml deleted file mode 100644 index 38aee4f1557..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_175.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_176.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_176.RULE index 52cd7c3f7bc..adb1a2e0855 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_176.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_176.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license='GNU AGPL v3+' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_176.yml b/src/licensedcode/data/rules/agpl-3.0-plus_176.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_177.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_177.RULE index 03fe2749151..7846544e685 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_177.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_177.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL v3+' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_177.yml b/src/licensedcode/data/rules/agpl-3.0-plus_177.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_178.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_178.RULE index da056d63a74..a8467eae806 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_178.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_178.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_178.yml b/src/licensedcode/data/rules/agpl-3.0-plus_178.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_179.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_179.RULE index b711cbf34a9..5ee58657f6f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_179.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_179.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_179.yml b/src/licensedcode/data/rules/agpl-3.0-plus_179.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_18.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_18.RULE index 79179620e39..898c7a10661 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_18.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_18.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 90 +--- + Affero \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_18.yml b/src/licensedcode/data/rules/agpl-3.0-plus_18.yml deleted file mode 100644 index e5e9ed31c0e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_180.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_180.RULE index 82ae48f9836..0307b5c1480 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_180.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_180.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html +--- + license http://www.gnu.org/licenses/agpl.html GNU AGPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_180.yml b/src/licensedcode/data/rules/agpl-3.0-plus_180.yml deleted file mode 100644 index eecfed95617..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_180.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_181.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_181.RULE index 660100bfca4..dbbffa63a0a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_181.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_181.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + license https://www.gnu.org/licenses/agpl.html GNU AGPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_181.yml b/src/licensedcode/data/rules/agpl-3.0-plus_181.yml deleted file mode 100644 index b81a2d9e058..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_182.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_182.RULE index 70b36a92084..e2a407b8160 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_182.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_182.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html +--- + license http://www.gnu.org/licenses/agpl.html GNU AGPL v3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_182.yml b/src/licensedcode/data/rules/agpl-3.0-plus_182.yml deleted file mode 100644 index eecfed95617..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_183.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_183.RULE index bf15fc89d20..8c74e872ceb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_183.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_183.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + license https://www.gnu.org/licenses/agpl.html GNU AGPL v3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_183.yml b/src/licensedcode/data/rules/agpl-3.0-plus_183.yml deleted file mode 100644 index b81a2d9e058..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_183.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_184.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_184.RULE index 284a7c5e09a..6f083b37c01 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_184.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_184.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_184.yml b/src/licensedcode/data/rules/agpl-3.0-plus_184.yml deleted file mode 100644 index b81a2d9e058..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_185.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_185.RULE index 26891c2d844..065befef2c5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_185.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_185.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + license https://www.gnu.org/licenses/agpl.html GNU AGPL v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_185.yml b/src/licensedcode/data/rules/agpl-3.0-plus_185.yml deleted file mode 100644 index b81a2d9e058..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_186.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_186.RULE index 2167a840c9d..131ddc8080f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_186.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_186.RULE @@ -1 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://img.shields.io/badge/license-GNU%20AGPL%20v3+-663366 +--- + [![AGPL v3+](https://img.shields.io/badge/license-GNU%20AGPL%20v3%2B-663366)](./LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_186.yml b/src/licensedcode/data/rules/agpl-3.0-plus_186.yml deleted file mode 100644 index dd545e722f6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_186.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://img.shields.io/badge/license-GNU%20AGPL%20v3+-663366 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_187.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_187.RULE index 92788133400..8894980c27d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_187.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_187.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + ## Legal This software is licensed to anyone under the terms of the [GNU Affero General diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_187.yml b/src/licensedcode/data/rules/agpl-3.0-plus_187.yml deleted file mode 100644 index 37872d2d705..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_188.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_188.RULE index ff1289ea763..37ef1986a36 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_188.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_188.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + This software is licensed to anyone under the terms of the [GNU Affero General Public License, version 3](https://www.gnu.org/licenses/agpl-3.0.en.html) (or any higher version of the same license, at your option). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_188.yml b/src/licensedcode/data/rules/agpl-3.0-plus_188.yml deleted file mode 100644 index 37872d2d705..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_188.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_189.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_189.RULE index e545cbc8e48..1858410a8b5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_189.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_189.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + [![GNU AGPL v3+](https://www.gnu.org/graphics/agplv3-with-text-162x68.png \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_189.yml b/src/licensedcode/data/rules/agpl-3.0-plus_189.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_19.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_19.RULE index 78b1e118950..c1cbfcca5ae 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_19.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_19.RULE @@ -1,5 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + 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 any later version. - +Software Foundation, either version 3 of the License, or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_19.yml b/src/licensedcode/data/rules/agpl-3.0-plus_19.yml deleted file mode 100644 index 058e4ff47af..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_190.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_190.RULE index 79fa06cb5a2..57179600d9a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_190.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_190.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + "GNU AGPL v3+")](https://www.gnu.org/licenses/agpl-3.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_190.yml b/src/licensedcode/data/rules/agpl-3.0-plus_190.yml deleted file mode 100644 index 8bddd7ca20f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_190.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_191.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_191.RULE index 76cfdf6bed5..8dc4c754975 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_191.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_191.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3 or later, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_191.yml b/src/licensedcode/data/rules/agpl-3.0-plus_191.yml deleted file mode 100644 index 3ef094cb113..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_191.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_192.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_192.RULE index 737d518c567..abbf0b33777 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_192.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_192.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Affero General Public License, version 3 or later, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_192.yml b/src/licensedcode/data/rules/agpl-3.0-plus_192.yml deleted file mode 100644 index 6acd47f52e0..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_193.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_193.RULE index c4bf70e559b..2727b6fc9e5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_193.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_193.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: some words are truncated +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_193.yml b/src/licensedcode/data/rules/agpl-3.0-plus_193.yml deleted file mode 100644 index 1d240d89d41..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_193.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: some words are truncated -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_194.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_194.RULE index 64a08e41dc9..0fef0fe2e81 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_194.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_194.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: some words are truncated +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 Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_194.yml b/src/licensedcode/data/rules/agpl-3.0-plus_194.yml deleted file mode 100644 index e86433df74f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_194.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: some words are truncated -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_195.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_195.RULE index d4a9031fdea..2e22e0a0090 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_195.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_195.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://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) diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_195.yml b/src/licensedcode/data/rules/agpl-3.0-plus_195.yml deleted file mode 100644 index d7c6c36cdd8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_196.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_196.RULE index 9cdce9ae92b..eae8f844806 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_196.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_196.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_196.yml b/src/licensedcode/data/rules/agpl-3.0-plus_196.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_196.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_197.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_197.RULE index 00a4629f118..5b7e8c06db3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_197.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_197.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_197.yml b/src/licensedcode/data/rules/agpl-3.0-plus_197.yml deleted file mode 100644 index d7c6c36cdd8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_198.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_198.RULE index e0d1211a0e5..90c3a6da9a8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_198.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_198.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_198.yml b/src/licensedcode/data/rules/agpl-3.0-plus_198.yml deleted file mode 100644 index a24c77aefc9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_198.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_199.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_199.RULE index a41e9e92cf4..a5ee2240448 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_199.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_199.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_199.yml b/src/licensedcode/data/rules/agpl-3.0-plus_199.yml deleted file mode 100644 index d38f9f9cbd6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_199.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_2.RULE index 5134834735c..27bff0a4723 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_2.RULE @@ -1 +1,9 @@ -This project is brought to you under GNU Affero General Public Licence v3+. For further informations please read the provided COPYING file. +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +This project is brought to you under GNU Affero General Public Licence v3+. For further informations please read the provided COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_2.yml deleted file mode 100644 index 57556f9573d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_20.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_20.RULE index 7a053a20b62..d90bd429baf 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_20.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_20.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_20.yml b/src/licensedcode/data/rules/agpl-3.0-plus_20.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_200.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_200.RULE index a9946841ad1..cf3c5b699e3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_200.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_200.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under AGPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_200.yml b/src/licensedcode/data/rules/agpl-3.0-plus_200.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_201.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_201.RULE index 88f19c95ba2..e684be1c1eb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_201.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_201.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under AGPL v3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_201.yml b/src/licensedcode/data/rules/agpl-3.0-plus_201.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_202.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_202.RULE index f6e64591797..c30dde02171 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_202.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_202.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU AGPL version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_202.yml b/src/licensedcode/data/rules/agpl-3.0-plus_202.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_203.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_203.RULE index bb883642a81..3d3c15ddc16 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_203.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_203.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of AGPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_203.yml b/src/licensedcode/data/rules/agpl-3.0-plus_203.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_204.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_204.RULE index 167a47498f9..fc8512114c0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_204.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_204.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the AGPLv3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_204.yml b/src/licensedcode/data/rules/agpl-3.0-plus_204.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_205.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_205.RULE index 9a36b39ea0e..47f0ea72534 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_205.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_205.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the AGPL v3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_205.yml b/src/licensedcode/data/rules/agpl-3.0-plus_205.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_206.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_206.RULE index 935a8ad1a10..67cc2f4c19f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_206.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_206.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under AGPL3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_206.yml b/src/licensedcode/data/rules/agpl-3.0-plus_206.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_207.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_207.RULE index ee30b949f0c..dc7e407f746 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_207.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_207.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under AGPL 3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_207.yml b/src/licensedcode/data/rules/agpl-3.0-plus_207.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_208.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_208.RULE index 17a236b5ef8..8db95c93744 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_208.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_208.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU Affero GPL version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_208.yml b/src/licensedcode/data/rules/agpl-3.0-plus_208.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_209.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_209.RULE index a31cfc9baa8..06b947664ac 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_209.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_209.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the AGPL3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_209.yml b/src/licensedcode/data/rules/agpl-3.0-plus_209.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_21.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_21.RULE index e5feb4edd86..32a15c182a7 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_21.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_21.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_21.yml b/src/licensedcode/data/rules/agpl-3.0-plus_21.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_210.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_210.RULE index 07e6bf94277..47ba7451b7e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_210.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_210.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the AGPL 3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_210.yml b/src/licensedcode/data/rules/agpl-3.0-plus_210.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_211.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_211.RULE index e2191e9807c..2527f06d5ef 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_211.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_211.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of AGPL 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_211.yml b/src/licensedcode/data/rules/agpl-3.0-plus_211.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_212.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_212.RULE index 90e1e27b69e..016198ea3ee 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_212.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_212.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Affero General Public License v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_212.yml b/src/licensedcode/data/rules/agpl-3.0-plus_212.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_213.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_213.RULE index c1d5015af0c..4bd72b4646f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_213.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_213.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Affero General Public licence v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_213.yml b/src/licensedcode/data/rules/agpl-3.0-plus_213.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_214.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_214.RULE index 87b23a24820..22260395c2f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_214.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_214.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_214.yml b/src/licensedcode/data/rules/agpl-3.0-plus_214.yml deleted file mode 100644 index a24c77aefc9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_215.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_215.RULE index a4abaf095e7..fd0ec5321f0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_215.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_215.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU AGPL v 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_215.yml b/src/licensedcode/data/rules/agpl-3.0-plus_215.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_216.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_216.RULE index 1df851cfe0f..f0a4fa5486b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_216.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_216.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU AGPL v 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_216.yml b/src/licensedcode/data/rules/agpl-3.0-plus_216.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_217.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_217.RULE index 37444942f1b..322976ea25b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_217.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_217.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU AGPL v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_217.yml b/src/licensedcode/data/rules/agpl-3.0-plus_217.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_218.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_218.RULE index 31c509c3dfe..c8389723fec 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_218.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_218.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_218.yml b/src/licensedcode/data/rules/agpl-3.0-plus_218.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_219.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_219.RULE index c4eb66b8598..e0786a5f1ed 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_219.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_219.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under GNU AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_219.yml b/src/licensedcode/data/rules/agpl-3.0-plus_219.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_22.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_22.RULE index abb594d3f58..0ded4c9a9a4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_22.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_22.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_22.yml b/src/licensedcode/data/rules/agpl-3.0-plus_22.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_220.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_220.RULE index d736abdfb9b..961c2f52255 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_220.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_220.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms GNU AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_220.yml b/src/licensedcode/data/rules/agpl-3.0-plus_220.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_221.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_221.RULE index e74f22d0e0b..fbeadcc4318 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_221.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_221.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_221.yml b/src/licensedcode/data/rules/agpl-3.0-plus_221.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_222.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_222.RULE index aae545fe0c0..b2d76a22f02 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_222.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_222.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - agpl.lic +--- + agpl.lic \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_222.yml b/src/licensedcode/data/rules/agpl-3.0-plus_222.yml deleted file mode 100644 index cb704815ad1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_222.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - agpl.lic diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_223.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_223.RULE index 925bbe01083..b5e06e956d2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_223.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_223.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +notes: this is a mix up of AGPL and GPL notices +ignorable_urls: + - http://gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Affero GPL, version 3 or later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_223.yml b/src/licensedcode/data/rules/agpl-3.0-plus_223.yml deleted file mode 100644 index d3cd0935a85..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_223.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -notes: this is a mix up of AGPL and GPL notices -ignorable_urls: - - http://gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_224.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_224.RULE index e2fad4f70cd..130312cf3b6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_224.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_224.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: this is a mix up of AGPL and GPL notices +ignorable_urls: + - http://gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU GPL, version 3 or later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_224.yml b/src/licensedcode/data/rules/agpl-3.0-plus_224.yml deleted file mode 100644 index abbde45270e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_224.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: this is a mix up of AGPL and GPL notices -ignorable_urls: - - http://gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_225.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_225.RULE index d4c48e885bc..abc913f202d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_225.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_225.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Affero GPL, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_225.yml b/src/licensedcode/data/rules/agpl-3.0-plus_225.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_226.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_226.RULE index ae49e2f16b8..a20477ba4d2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_226.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_226.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + Affero GPL, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_226.yml b/src/licensedcode/data/rules/agpl-3.0-plus_226.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_227.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_227.RULE index edb96a6a88f..bcbc8dbd6b0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_227.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_227.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + The entire AGPL is below, in the manuals distributed \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_227.yml b/src/licensedcode/data/rules/agpl-3.0-plus_227.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_228.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_228.RULE index 206c7b972a1..e9947dd5eb5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_228.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_228.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + You may also obtain a copy of the AGPL (or LGPL) by writing to: Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_228.yml b/src/licensedcode/data/rules/agpl-3.0-plus_228.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_229.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_229.RULE index cd541c23ca6..99f54df69b6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_229.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_229.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Affero General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_229.yml b/src/licensedcode/data/rules/agpl-3.0-plus_229.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_23.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_23.RULE index 357a8d5bf47..076b4af34a0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_23.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_23.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_23.yml b/src/licensedcode/data/rules/agpl-3.0-plus_23.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_230.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_230.RULE index 209a5c326bd..0942b44aaa8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_230.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_230.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Affero General Public license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_230.yml b/src/licensedcode/data/rules/agpl-3.0-plus_230.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_231.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_231.RULE index 7f315ebbe05..5be09ac4136 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_231.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_231.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU AGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_231.yml b/src/licensedcode/data/rules/agpl-3.0-plus_231.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_232.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_232.RULE index 113b0782ff1..58a8b0c7818 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_232.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_232.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 99 +notes: Some GPL references are misleading +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_232.yml b/src/licensedcode/data/rules/agpl-3.0-plus_232.yml deleted file mode 100644 index bc97b2133eb..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_232.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 99 -notes: Some GPL references are misleading diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_233.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_233.RULE index 5fd27843d11..c0732bfba61 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_233.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_233.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under AGPLv3+ (as the AGPLv3 requires) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_233.yml b/src/licensedcode/data/rules/agpl-3.0-plus_233.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_234.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_234.RULE index 2e48d6a1970..8ec5a7ad1bc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_234.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_234.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under AGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_234.yml b/src/licensedcode/data/rules/agpl-3.0-plus_234.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_235.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_235.RULE index d590b802534..ad8f659a8f0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_235.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_235.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Code is licensed under AGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_235.yml b/src/licensedcode/data/rules/agpl-3.0-plus_235.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_235.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_236.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_236.RULE index 0297043a272..471b52e83c6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_236.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_236.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + All works are licensed under AGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_236.yml b/src/licensedcode/data/rules/agpl-3.0-plus_236.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_236.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_237.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_237.RULE index cc7e827c87e..16e9242d397 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_237.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_237.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + All licensed under AGPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_237.yml b/src/licensedcode/data/rules/agpl-3.0-plus_237.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_238.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_238.RULE index 725799c8c70..88bc26be7db 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_238.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_238.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Source code licensed under AGPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_238.yml b/src/licensedcode/data/rules/agpl-3.0-plus_238.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_239.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_239.RULE index 2fb602fc757..eadfa522b56 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_239.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_239.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + free and open source, licensed under AGPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_239.yml b/src/licensedcode/data/rules/agpl-3.0-plus_239.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_24.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_24.RULE index 5c1911b9340..c0db7e2912b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_24.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_24.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_24.yml b/src/licensedcode/data/rules/agpl-3.0-plus_24.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_240.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_240.RULE index c55c144c3a9..adf87c28f1f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_240.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_240.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_240.yml b/src/licensedcode/data/rules/agpl-3.0-plus_240.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_241.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_241.RULE index 3b1752d1cf5..1da8a4c285c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_241.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_241.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + an AGPL-licensed open source project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_241.yml b/src/licensedcode/data/rules/agpl-3.0-plus_241.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_242.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_242.RULE index d668f67b61f..22180e665a8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_242.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_242.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + AGPL-licensed open source project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_242.yml b/src/licensedcode/data/rules/agpl-3.0-plus_242.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_243.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_243.RULE index e1ea29ba3ef..44a57783c33 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_243.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_243.RULE @@ -1,2 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - AGPL-3 +--- + GNU Affero General Public License, version 3 or any later version. See AGPL-3 for the full text of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_243.yml b/src/licensedcode/data/rules/agpl-3.0-plus_243.yml deleted file mode 100644 index 1e4de91a3bb..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_243.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - AGPL-3 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_244.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_244.RULE index 0026cddf33f..01adada982e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_244.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_244.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +--- + GPL Ghostscript is free software; you can redistribute it and/or modify it under the terms the GNU Affero General Public License diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_244.yml b/src/licensedcode/data/rules/agpl-3.0-plus_244.yml deleted file mode 100644 index 93b0cdb2405..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_244.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_245.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_245.RULE index 43cbdd6b37e..d73f1c9f3a5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_245.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_245.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +--- + is free software; you can redistribute it and/or modify it under the terms the GNU Affero General Public License diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_245.yml b/src/licensedcode/data/rules/agpl-3.0-plus_245.yml deleted file mode 100644 index 93b0cdb2405..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_245.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_246.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_246.RULE index 78960115cbc..974e2ed1ba0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_246.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_246.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +--- + are free software; you can redistribute and/or modify them under the terms of the GNU Affero General Public License diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_246.yml b/src/licensedcode/data/rules/agpl-3.0-plus_246.yml deleted file mode 100644 index 93b0cdb2405..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_246.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_247.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_247.RULE index 60909cfaab5..1cbe254f841 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_247.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_247.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +--- + GhostPDL and GPL Ghostscript are free software; you can redistribute and/or modify them under the terms of the GNU Affero General Public License diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_247.yml b/src/licensedcode/data/rules/agpl-3.0-plus_247.yml deleted file mode 100644 index 93b0cdb2405..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_247.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_248.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_248.RULE index 1363e8b5fc7..42fb1773358 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_248.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_248.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +notes: this is a mix up of AGPL and GPL notices +ignorable_urls: + - http://gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Affero GPL, version 3 or later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_248.yml b/src/licensedcode/data/rules/agpl-3.0-plus_248.yml deleted file mode 100644 index 9f661f7ce90..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_248.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -notes: this is a mix up of AGPL and GPL notices -ignorable_urls: - - http://gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_249.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_249.RULE index e5262a72a37..c93a6907216 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_249.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_249.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + ("AGPL3" t "This program is free software: you can redistribute it and/or modify" @@ -11,4 +19,4 @@ "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 .") + "along with this program. If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_249.yml b/src/licensedcode/data/rules/agpl-3.0-plus_249.yml deleted file mode 100644 index d7c6c36cdd8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_249.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_25.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_25.RULE index 15dac8a34bf..dd97218b1a2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_25.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_25.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPL30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_25.yml b/src/licensedcode/data/rules/agpl-3.0-plus_25.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_250.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_250.RULE index 625dcb5c250..0b3e2cc1ae5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_250.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_250.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl +--- + licensed under the `AGPL v3` or later. https://www.gnu.org/licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_250.yml b/src/licensedcode/data/rules/agpl-3.0-plus_250.yml deleted file mode 100644 index 4dcc43f6e29..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_250.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_251.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_251.RULE index b46257eaefa..1e7c22f26db 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_251.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_251.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - AGPLv3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # This software's license gives you freedom; you can copy, convey, # propagate, redistribute and/or modify this program under the terms of # the GNU Affero General Public License (AGPL) as published by the Free diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_251.yml b/src/licensedcode/data/rules/agpl-3.0-plus_251.yml deleted file mode 100644 index 2a00e9d1f06..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_251.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - AGPLv3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_252.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_252.RULE index a3da6a1f1e0..d5a33ef4937 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_252.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_252.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +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 Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_252.yml b/src/licensedcode/data/rules/agpl-3.0-plus_252.yml deleted file mode 100644 index e88c7cfcb0e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_252.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_253.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_253.RULE index 26cacf28090..39245d9831d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_253.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_253.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 92 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: AGPL-3.0 This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_253.yml b/src/licensedcode/data/rules/agpl-3.0-plus_253.yml deleted file mode 100644 index 9ac83793aa7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_253.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 92 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_254.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_254.RULE index cab847f24f0..fd85336c335 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_254.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_254.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: this is a mix up of AGPL and GPL notices +ignorable_urls: + - http://gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU GPL, version 3 or later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_254.yml b/src/licensedcode/data/rules/agpl-3.0-plus_254.yml deleted file mode 100644 index 712f4b3c485..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_254.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: this is a mix up of AGPL and GPL notices -ignorable_urls: - - http://gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_255.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_255.RULE index 2e776200013..57c96ee57dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_255.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_255.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.txt +--- + This program is distributed under the terms of the GNU Affero General Public License version 3.0 or later see https://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_255.yml b/src/licensedcode/data/rules/agpl-3.0-plus_255.yml deleted file mode 100644 index 698e5dc001a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_255.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_256.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_256.RULE index b3ef88f1c6c..ebeac866422 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_256.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_256.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + All code in this repository is licensed under the AGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_256.yml b/src/licensedcode/data/rules/agpl-3.0-plus_256.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_257.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_257.RULE index 41490b81249..6b175d0b542 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_257.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_257.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + is AGPL licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_257.yml b/src/licensedcode/data/rules/agpl-3.0-plus_257.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_257.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_258.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_258.RULE index 973ccb4e86b..a7f139042d4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_258.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_258.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + only the server is AGPL licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_258.yml b/src/licensedcode/data/rules/agpl-3.0-plus_258.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_259.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_259.RULE index 2f35621875d..288d32d78bf 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_259.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_259.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_259.yml b/src/licensedcode/data/rules/agpl-3.0-plus_259.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_26.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_26.RULE index 6e373b63b92..a0b6802e158 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_26.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_26.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLv3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_26.yml b/src/licensedcode/data/rules/agpl-3.0-plus_26.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_260.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_260.RULE index dcd31d0d524..afc2994b136 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_260.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_260.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + (Affero General Public License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_260.yml b/src/licensedcode/data/rules/agpl-3.0-plus_260.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_261.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_261.RULE index 8e6cced0a23..4a6dcca4efc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_261.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_261.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + open source and free software released under the AGPL (Affero General Public License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_261.yml b/src/licensedcode/data/rules/agpl-3.0-plus_261.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_262.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_262.RULE index 7179de5c117..a7a22f8b2b5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_262.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_262.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the AGPL (Affero General Public License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_262.yml b/src/licensedcode/data/rules/agpl-3.0-plus_262.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_263.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_263.RULE index 2ff1011748a..41a10e9088e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_263.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_263.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + AGPL-3.0+ GNU Affero General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_263.yml b/src/licensedcode/data/rules/agpl-3.0-plus_263.yml deleted file mode 100644 index 39c9d2b3165..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_263.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_264.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_264.RULE index d9e9810926b..6db7e3d16c0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_264.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_264.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Affero General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_264.yml b/src/licensedcode/data/rules/agpl-3.0-plus_264.yml deleted file mode 100644 index 39c9d2b3165..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_264.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_265.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_265.RULE index 2ee7e624772..d08c727d408 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_265.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_265.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Affero General Public License v3.0 or later AGPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_265.yml b/src/licensedcode/data/rules/agpl-3.0-plus_265.yml deleted file mode 100644 index 39c9d2b3165..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_265.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_266.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_266.RULE index 1d1b589ca85..8d5a83a82d5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_266.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_266.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : AGPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_266.yml b/src/licensedcode/data/rules/agpl-3.0-plus_266.yml deleted file mode 100644 index 4d499fac9fe..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_266.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_267.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_267.RULE index 9ecf6137bda..b15449b2905 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_267.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_267.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : AGPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_267.yml b/src/licensedcode/data/rules/agpl-3.0-plus_267.yml deleted file mode 100644 index 39c9d2b3165..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_267.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_268.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_268.RULE index a43f8bca10f..b6d2f4738b4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_268.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_268.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Affero General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_268.yml b/src/licensedcode/data/rules/agpl-3.0-plus_268.yml deleted file mode 100644 index 39c9d2b3165..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_268.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_269.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_269.RULE index 90788703145..87fa4b85248 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_269.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_269.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AGPL-3.0-or-later GNU Affero General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_269.yml b/src/licensedcode/data/rules/agpl-3.0-plus_269.yml deleted file mode 100644 index 30954b0ccd7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_269.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_27.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_27.RULE index 18966230719..4206462bf95 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_27.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_27.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + AGPLv30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_27.yml b/src/licensedcode/data/rules/agpl-3.0-plus_27.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_270.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_270.RULE index 3b1a00bc350..cc0e65f099e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_270.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_270.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Affero General Public License v3.0 or later AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_270.yml b/src/licensedcode/data/rules/agpl-3.0-plus_270.yml deleted file mode 100644 index 30954b0ccd7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_270.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_271.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_271.RULE index 5277497bba8..679756b08c9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_271.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_271.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_271.yml b/src/licensedcode/data/rules/agpl-3.0-plus_271.yml deleted file mode 100644 index 8869eaa4493..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_271.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_272.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_272.RULE index ce49b15b47e..7abc8b68aa0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_272.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_272.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Affero General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_272.yml b/src/licensedcode/data/rules/agpl-3.0-plus_272.yml deleted file mode 100644 index 8869eaa4493..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_272.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_273.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_273.RULE index 01a942a307f..c0202839edb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_273.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_273.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_273.yml b/src/licensedcode/data/rules/agpl-3.0-plus_273.yml deleted file mode 100644 index 8869eaa4493..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_273.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_274.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_274.RULE index b8c7baf8c85..40834366e1b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_274.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_274.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['AFFERO', 'AGPL-3.0-or-later'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_274.yml b/src/licensedcode/data/rules/agpl-3.0-plus_274.yml deleted file mode 100644 index 3dc265afca7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_274.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_275.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_275.RULE index 4260fec2065..3ca9f4e2b79 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_275.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_275.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['AGPL', 'AGPL-3.0-or-later'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_275.yml b/src/licensedcode/data/rules/agpl-3.0-plus_275.yml deleted file mode 100644 index 3dc265afca7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_275.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_276.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_276.RULE index 374bf082584..0c43c4b7feb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_276.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_276.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + - LicenseRef-AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_276.yml b/src/licensedcode/data/rules/agpl-3.0-plus_276.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_277.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_277.RULE index 05dfc47e1de..cee26b1b242 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_277.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_277.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the AGPL3 (or later) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_277.yml b/src/licensedcode/data/rules/agpl-3.0-plus_277.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_277.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_278.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_278.RULE index a0b3095ff98..0a5438f93a8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_278.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_278.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the AGPL3 (or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_278.yml b/src/licensedcode/data/rules/agpl-3.0-plus_278.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_279.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_279.RULE index 7690c737687..3d52c5fe8cc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_279.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_279.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/GNU_Affero_General_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_279.yml b/src/licensedcode/data/rules/agpl-3.0-plus_279.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_279.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_28.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_28.RULE index e4ed1b20b31..d26d48fc95f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_28.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_28.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_28.yml b/src/licensedcode/data/rules/agpl-3.0-plus_28.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_280.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_280.RULE index 5904e79d5c2..1ded237c418 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_280.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_280.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AGPL-3.0-or-later +--- + https://licenses.nuget.org/AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_280.yml b/src/licensedcode/data/rules/agpl-3.0-plus_280.yml deleted file mode 100644 index 195f22f208b..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_280.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AGPL-3.0-or-later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_281.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_281.RULE index 4b1c7266a81..fbe845f1c63 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_281.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_281.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_281.yml b/src/licensedcode/data/rules/agpl-3.0-plus_281.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_282.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_282.RULE index de456a02c30..98047325032 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_282.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_282.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + licenses: AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_282.yml b/src/licensedcode/data/rules/agpl-3.0-plus_282.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_283.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_283.RULE index 0d65b5c86fd..3391c209637 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_283.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_283.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + AGPL 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. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_283.yml b/src/licensedcode/data/rules/agpl-3.0-plus_283.yml deleted file mode 100644 index 01f6ef65b32..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_283.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_284.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_284.RULE index cd561a6f417..4117d4dc3a6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_284.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_284.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0 +--- + LICENSE {{AGPL-3.0}} https://spdx.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_284.yml b/src/licensedcode/data/rules/agpl-3.0-plus_284.yml deleted file mode 100644 index 0049f1d0736..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_284.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_285.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_285.RULE index 699a5dc238d..3758683c9e7 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_285.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_285.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0-or-later +--- + {{AGPL-3.0-or-later}} https://spdx.org/licenses/AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_285.yml b/src/licensedcode/data/rules/agpl-3.0-plus_285.yml deleted file mode 100644 index 5a25ba5c022..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_285.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0-or-later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_286.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_286.RULE index e8e725f3fd4..accff91bfe3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_286.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_286.RULE @@ -1 +1,9 @@ -LICENSE {{AGPL-3.0-or-later https://spdx.org/licenses/AGPL-3.0-or-later }} +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0-or-later +--- + +LICENSE {{AGPL-3.0-or-later https://spdx.org/licenses/AGPL-3.0-or-later }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_286.yml b/src/licensedcode/data/rules/agpl-3.0-plus_286.yml deleted file mode 100644 index 5a25ba5c022..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_286.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0-or-later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_287.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_287.RULE index 4224109abfc..ce4bf5426f6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_287.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_287.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0 +--- + {{AGPL-3.0+}} https://spdx.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_287.yml b/src/licensedcode/data/rules/agpl-3.0-plus_287.yml deleted file mode 100644 index 0049f1d0736..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_287.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_288.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_288.RULE index f5c64a40332..f45a8eb5916 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_288.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_288.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0 +--- + LICENSE {{AGPL-3.0+}} https://spdx.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_288.yml b/src/licensedcode/data/rules/agpl-3.0-plus_288.yml deleted file mode 100644 index 0049f1d0736..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_288.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_289.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_289.RULE index c56e569a841..8f81db2316d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_289.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_289.RULE @@ -1,2 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://gnu.org/licenses/agpl.html +--- + License {{AGPLv3+}}: GNU {{Affero 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/agpl-3.0-plus_289.yml b/src/licensedcode/data/rules/agpl-3.0-plus_289.yml deleted file mode 100644 index 272569a6f2e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_289.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_29.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_29.RULE index 365941561d6..fd06d24714a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_29.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_29.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_29.yml b/src/licensedcode/data/rules/agpl-3.0-plus_29.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_290.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_290.RULE index fa7c03cafe6..eaef95208e2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_290.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_290.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GNU AFFERO GENERAL PUBLIC LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_290.yml b/src/licensedcode/data/rules/agpl-3.0-plus_290.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_291.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_291.RULE index b25f68cf393..345e395d748 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_291.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_291.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Everyone is free to use 'under the conditions of the AGPL-3.0 License (see LICENSE file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_291.yml b/src/licensedcode/data/rules/agpl-3.0-plus_291.yml deleted file mode 100644 index f9cb46a79dc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_291.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_3.RULE index 31760523da6..1075b13520f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public Licence as @@ -8,4 +15,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public Licence for more details. You should have received a copy of the GNU Affero General Public Licence -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_3.yml b/src/licensedcode/data/rules/agpl-3.0-plus_3.yml deleted file mode 100644 index 3991d9b0a77..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_30.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_30.RULE index 2c613e0de06..3fce2443453 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_30.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_30.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_30.yml b/src/licensedcode/data/rules/agpl-3.0-plus_30.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_31.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_31.RULE index 6a4806394b7..cd65a4b75b6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_31.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_31.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_31.yml b/src/licensedcode/data/rules/agpl-3.0-plus_31.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_32.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_32.RULE index 95d45ae1be8..feafe09f591 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_32.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_32.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_32.yml b/src/licensedcode/data/rules/agpl-3.0-plus_32.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_33.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_33.RULE index ff3b4d6143f..a7fc1bd14a8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_33.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_33.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_33.yml b/src/licensedcode/data/rules/agpl-3.0-plus_33.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_34.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_34.RULE index 29d3f7782aa..7649e4335be 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_34.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_34.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_34.yml b/src/licensedcode/data/rules/agpl-3.0-plus_34.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_35.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_35.RULE index 1292d16f8e7..2e0124d7531 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_35.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_35.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_35.yml b/src/licensedcode/data/rules/agpl-3.0-plus_35.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_36.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_36.RULE index e68353f8fdc..2e67bcedf89 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_36.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_36.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_36.yml b/src/licensedcode/data/rules/agpl-3.0-plus_36.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_37.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_37.RULE index e65f0accf6c..bab5d5f5a61 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_37.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_37.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_37.yml b/src/licensedcode/data/rules/agpl-3.0-plus_37.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_38.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_38.RULE index 35070ab558b..491a19ee86d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_38.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_38.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_38.yml b/src/licensedcode/data/rules/agpl-3.0-plus_38.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_39.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_39.RULE index 260585a7b3a..4a88c3f52df 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_39.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_39.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_39.yml b/src/licensedcode/data/rules/agpl-3.0-plus_39.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_4.RULE index f2296eb1c6a..7fa26d4ffe9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses +--- + Copyright / Licence Copyright GNU AGPL. Email me if you need another licence. @@ -12,5 +20,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public Licence for more details. You should have received a copy of the GNU Affero General Public Licence -along with this program. If not, see http://www.gnu.org/licenses/. - +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/agpl-3.0-plus_4.yml b/src/licensedcode/data/rules/agpl-3.0-plus_4.yml deleted file mode 100644 index d78e190ada4..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_40.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_40.RULE index 3aa75b1193c..48a93d6ca3a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_40.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_40.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_40.yml b/src/licensedcode/data/rules/agpl-3.0-plus_40.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_41.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_41.RULE index d45ea79e003..9e464013f91 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_41.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_41.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + agpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_41.yml b/src/licensedcode/data/rules/agpl-3.0-plus_41.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_42.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_42.RULE index 90a8a8b6ebf..15678b17c91 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_42.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_42.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + agpld \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_42.yml b/src/licensedcode/data/rules/agpl-3.0-plus_42.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_43.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_43.RULE index 069c0e1e3f9..c7f9d62a29f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_43.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_43.RULE @@ -1 +1,7 @@ -Agpl d +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + +Agpl d \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_43.yml b/src/licensedcode/data/rules/agpl-3.0-plus_43.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_44.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_44.RULE index a23e96ecd60..6cfa3af7a48 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_44.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_44.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_44.yml b/src/licensedcode/data/rules/agpl-3.0-plus_44.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_45.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_45.RULE index fcfcb5fabca..3880bc52a9a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_45.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_45.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPL30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_45.yml b/src/licensedcode/data/rules/agpl-3.0-plus_45.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_46.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_46.RULE index 7d2a6e13c4f..5997b3eb6e9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_46.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_46.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_46.yml b/src/licensedcode/data/rules/agpl-3.0-plus_46.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_47.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_47.RULE index d024978dcf4..7d92ac65ac3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_47.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_47.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_47.yml b/src/licensedcode/data/rules/agpl-3.0-plus_47.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_48.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_48.RULE index 8c2d8188dae..0bc3116dfd7 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_48.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_48.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPL3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_48.yml b/src/licensedcode/data/rules/agpl-3.0-plus_48.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_49.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_49.RULE index 3b149346697..714a46fcaa0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_49.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_49.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPL30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_49.yml b/src/licensedcode/data/rules/agpl-3.0-plus_49.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_5.RULE index fdbfc8a351c..09c3442d955 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses +--- + Copyright / license Copyright GNU AGPL. Email me if you need another license. @@ -12,5 +20,4 @@ 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 http://www.gnu.org/licenses/. - +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/agpl-3.0-plus_5.yml b/src/licensedcode/data/rules/agpl-3.0-plus_5.yml deleted file mode 100644 index afcb5b9be79..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_50.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_50.RULE index bcaa11dd705..76524e5fbd2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_50.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_50.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_50.yml b/src/licensedcode/data/rules/agpl-3.0-plus_50.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_51.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_51.RULE index 351b9f0eeac..07030327899 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_51.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_51.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_51.yml b/src/licensedcode/data/rules/agpl-3.0-plus_51.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_52.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_52.RULE index 750971f86a0..c125c8ab69a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_52.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_52.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_52.yml b/src/licensedcode/data/rules/agpl-3.0-plus_52.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_53.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_53.RULE index db32ff62b43..86892b48e16 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_53.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_53.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_53.yml b/src/licensedcode/data/rules/agpl-3.0-plus_53.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_54.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_54.RULE index b9e39aafc98..576aa465b57 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_54.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_54.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_54.yml b/src/licensedcode/data/rules/agpl-3.0-plus_54.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_55.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_55.RULE index b38c86b8e99..f50aeee3dd2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_55.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_55.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_55.yml b/src/licensedcode/data/rules/agpl-3.0-plus_55.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_56.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_56.RULE index 53e426ae08d..d4270bf15e1 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_56.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_56.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_56.yml b/src/licensedcode/data/rules/agpl-3.0-plus_56.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_57.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_57.RULE index 0e0ff4ffb48..5e234101dfb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_57.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_57.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_57.yml b/src/licensedcode/data/rules/agpl-3.0-plus_57.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_58.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_58.RULE index 772c3041eed..ec38ad23f49 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_58.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_58.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_58.yml b/src/licensedcode/data/rules/agpl-3.0-plus_58.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_59.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_59.RULE index d725ba92e52..ff1a73e139c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_59.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_59.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagplv3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_59.yml b/src/licensedcode/data/rules/agpl-3.0-plus_59.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_6.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_6.RULE index 6b87578f752..5d1695916a5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 +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 Affero General Public Licence as published by the Free Software Foundation, either version 3 of the Licence, or (at @@ -9,5 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public Licence for more details. You should have received a copy of the GNU Affero General Public Licence -along with this . If not, see http://www.gnu.org/licenses/. - +along with this . If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_6.yml b/src/licensedcode/data/rules/agpl-3.0-plus_6.yml deleted file mode 100644 index 2d5b061cd91..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_60.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_60.RULE index ad50db86932..18ee57933c9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_60.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_60.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_60.yml b/src/licensedcode/data/rules/agpl-3.0-plus_60.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_61.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_61.RULE index 52e13c4e53e..6fb90a530b3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_61.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_61.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_61.yml b/src/licensedcode/data/rules/agpl-3.0-plus_61.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_62.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_62.RULE index e8429081a12..3444a604396 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_62.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_62.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_62.yml b/src/licensedcode/data/rules/agpl-3.0-plus_62.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_63.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_63.RULE index 0c80d1b3a9e..d29d24c4da9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_63.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_63.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_63.yml b/src/licensedcode/data/rules/agpl-3.0-plus_63.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_64.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_64.RULE index 62bd7bcaf7b..e8094b4008f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_64.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_64.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_64.yml b/src/licensedcode/data/rules/agpl-3.0-plus_64.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_65.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_65.RULE index 2fc85a0dea9..f7556121265 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_65.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_65.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_65.yml b/src/licensedcode/data/rules/agpl-3.0-plus_65.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_66.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_66.RULE index 03fa20fdb25..ed40f73ebda 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_66.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_66.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_66.yml b/src/licensedcode/data/rules/agpl-3.0-plus_66.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_67.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_67.RULE index 1e43b0b40ff..e5e3fb3b572 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_67.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_67.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnuagpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_67.yml b/src/licensedcode/data/rules/agpl-3.0-plus_67.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_68.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_68.RULE index b2f75d4bf31..1b8410ad9d0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_68.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_68.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + gnuagpled \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_68.yml b/src/licensedcode/data/rules/agpl-3.0-plus_68.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_69.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_69.RULE index d95859a95db..f582367aa43 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_69.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_69.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + gnuagpld \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_69.yml b/src/licensedcode/data/rules/agpl-3.0-plus_69.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_7.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_7.RULE index 5c73d07f5b0..11a405565dc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_7.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 +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 Affero General Public license as published by the Free Software Foundation, either version 3 of the license, or (at @@ -9,5 +16,4 @@ 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 . If not, see http://www.gnu.org/licenses/. - +along with this . If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_7.yml b/src/licensedcode/data/rules/agpl-3.0-plus_7.yml deleted file mode 100644 index 2d5b061cd91..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_70.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_70.RULE index b6a19067863..e93ae0e378a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_70.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_70.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + gnuagpl ed \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_70.yml b/src/licensedcode/data/rules/agpl-3.0-plus_70.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_71.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_71.RULE index 7fc3057f029..a8540ec3685 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_71.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_71.RULE @@ -1 +1,7 @@ -gnuAgpl d +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + +gnuAgpl d \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_71.yml b/src/licensedcode/data/rules/agpl-3.0-plus_71.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_72.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_72.RULE index 1bf6afb81da..c45fa203116 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_72.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_72.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_72.yml b/src/licensedcode/data/rules/agpl-3.0-plus_72.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_73.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_73.RULE index 769f5bf89bf..a1e6f4266dc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_73.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_73.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_73.yml b/src/licensedcode/data/rules/agpl-3.0-plus_73.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_74.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_74.RULE index 6602321cabe..832185cf6b9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_74.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_74.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_74.yml b/src/licensedcode/data/rules/agpl-3.0-plus_74.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_75.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_75.RULE index 1f4dbc2f711..e6336cb36de 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_75.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_75.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_75.yml b/src/licensedcode/data/rules/agpl-3.0-plus_75.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_76.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_76.RULE index 5d0821fec3e..0ab7b837b05 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_76.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_76.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_76.yml b/src/licensedcode/data/rules/agpl-3.0-plus_76.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_77.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_77.RULE index 1fb2a867b9f..8141d31466f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_77.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_77.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_77.yml b/src/licensedcode/data/rules/agpl-3.0-plus_77.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_78.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_78.RULE index bab4f17f4df..1d4096559bb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_78.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_78.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_78.yml b/src/licensedcode/data/rules/agpl-3.0-plus_78.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_79.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_79.RULE index 8599d19a2ae..6e9c8ee400d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_79.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_79.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_79.yml b/src/licensedcode/data/rules/agpl-3.0-plus_79.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_8.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_8.RULE index 1e846ef056a..21a11b5c533 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_8.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + ("AGPL3" t "This program is free software: you can redistribute it and/or modify" @@ -11,4 +18,4 @@ "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 .") + "along with this program. If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_8.yml b/src/licensedcode/data/rules/agpl-3.0-plus_8.yml deleted file mode 100644 index 7eb124116f5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_80.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_80.RULE index 69b1991cb60..07fb6a27eb1 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_80.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_80.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_80.yml b/src/licensedcode/data/rules/agpl-3.0-plus_80.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_81.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_81.RULE index d8705c0aaa4..8dd056071b7 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_81.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_81.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_81.yml b/src/licensedcode/data/rules/agpl-3.0-plus_81.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_82.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_82.RULE index 6b78913c1a7..6e34a7b0227 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_82.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_82.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_82.yml b/src/licensedcode/data/rules/agpl-3.0-plus_82.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_83.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_83.RULE index 643700ab8e9..432e4158830 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_83.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_83.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_83.yml b/src/licensedcode/data/rules/agpl-3.0-plus_83.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_84.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_84.RULE index 64d84f61fe8..a12db47f011 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_84.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_84.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_84.yml b/src/licensedcode/data/rules/agpl-3.0-plus_84.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_85.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_85.RULE index 54ef5c66d35..6d041e9ad6b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_85.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_85.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_85.yml b/src/licensedcode/data/rules/agpl-3.0-plus_85.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_86.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_86.RULE index 89742ba525c..e57a5e13e6b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_86.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_86.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_86.yml b/src/licensedcode/data/rules/agpl-3.0-plus_86.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_87.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_87.RULE index a3ea27710b0..af3edee331a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_87.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_87.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agplv3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_87.yml b/src/licensedcode/data/rules/agpl-3.0-plus_87.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_88.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_88.RULE index c7c728deb00..a0eeede4468 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_88.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_88.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_88.yml b/src/licensedcode/data/rules/agpl-3.0-plus_88.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_89.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_89.RULE index 1d665b6e59b..f1268707203 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_89.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_89.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_89.yml b/src/licensedcode/data/rules/agpl-3.0-plus_89.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_9.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_9.RULE index 878aa990f09..ea1473fa4a4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_9.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + ~ This program is free software: you can redistribute it and/or modify ~ it under the terms of the GNU Affero General Public License as ~ published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_9.yml b/src/licensedcode/data/rules/agpl-3.0-plus_9.yml deleted file mode 100644 index 460b8061495..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_90.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_90.RULE index c47b2957044..9632be4273c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_90.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_90.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_90.yml b/src/licensedcode/data/rules/agpl-3.0-plus_90.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_91.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_91.RULE index 4b66bd8ef65..4817329d6da 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_91.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_91.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_91.yml b/src/licensedcode/data/rules/agpl-3.0-plus_91.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_92.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_92.RULE index 042b576be94..7eec64dee2c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_92.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_92.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_92.yml b/src/licensedcode/data/rules/agpl-3.0-plus_92.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_93.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_93.RULE index fe061bc687b..0bbd02bf290 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_93.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_93.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_93.yml b/src/licensedcode/data/rules/agpl-3.0-plus_93.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_93.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_94.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_94.RULE index 41bc8c8ae23..cf363804a73 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_94.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_94.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_94.yml b/src/licensedcode/data/rules/agpl-3.0-plus_94.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_95.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_95.RULE index bb1e9e676cb..c42bcfa7797 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_95.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_95.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu agpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_95.yml b/src/licensedcode/data/rules/agpl-3.0-plus_95.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_96.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_96.RULE index 0c2d6f493ba..de17b73cb0f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_96.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_96.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu agpled \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_96.yml b/src/licensedcode/data/rules/agpl-3.0-plus_96.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_97.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_97.RULE index fb38255fdc7..fab670be3a2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_97.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_97.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu agpld \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_97.yml b/src/licensedcode/data/rules/agpl-3.0-plus_97.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_98.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_98.RULE index 853f14948f3..91dc33e6d3e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_98.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_98.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu agpl ed \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_98.yml b/src/licensedcode/data/rules/agpl-3.0-plus_98.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_99.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_99.RULE index 0bea5d721f2..19ea6563c8c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_99.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_99.RULE @@ -1,3 +1,7 @@ -gnu Agpl d - +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- +gnu Agpl d \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_99.yml b/src/licensedcode/data/rules/agpl-3.0-plus_99.yml deleted file mode 100644 index 9993c3c1172..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_and_other-permissive_or_other-copyleft_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_and_other-permissive_or_other-copyleft_1.RULE index eb9ad0f5e22..c0e3b23a762 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_and_other-permissive_or_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_and_other-permissive_or_other-copyleft_1.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0-plus AND (other-permissive OR other-copyleft) +is_license_reference: yes +relevance: 99 +notes: a weak reference to other licenses compatible with the AGPL +--- + Affero GPL compatible license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_and_other-permissive_or_other-copyleft_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_and_other-permissive_or_other-copyleft_1.yml deleted file mode 100644 index d7176273bb9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_and_other-permissive_or_other-copyleft_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus AND (other-permissive OR other-copyleft) -is_license_reference: yes -relevance: 99 -notes: a weak reference to other licenses compatible with the AGPL diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_njs.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_njs.RULE index 37dead85c13..3e4f1b2eee8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_njs.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_njs.RULE @@ -1 +1,7 @@ -this software is licensed under 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 +--- +license_expression: agpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + +this software is licensed under 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 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_njs.yml b/src/licensedcode/data/rules/agpl-3.0-plus_njs.yml deleted file mode 100644 index fa16ff71590..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_njs.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_1.RULE index 0cda448b4bb..1861c0288df 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus OR afpl-9.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + jbig2dec is free software; you can redistribute it and/or modify it under the terms the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_1.yml deleted file mode 100644 index 6c4f0f35a6d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus OR afpl-9.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_2.RULE index 15c63b6d780..cf342ee6040 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus OR afpl-9.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + is free software; you can redistribute it and/or modify it under the terms the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_2.yml deleted file mode 100644 index 6c4f0f35a6d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_afpl-9.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus OR afpl-9.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_1.RULE index f9b755088b8..72faf8a940d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus OR apache-2.0 +is_license_notice: yes +relevance: 99 +notes: this ignores the "any later version" of the apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either: diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_1.yml deleted file mode 100644 index 6a0c6d7cbbb..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus OR apache-2.0 -is_license_notice: yes -relevance: 99 -notes: this ignores the "any later version" of the apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_2.RULE index 4702d94d6dd..b4b6e9c5b3c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus OR apache-2.0 +is_license_notice: yes +relevance: 99 +notes: this ignores the "any later version" of the apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either: 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. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_2.yml deleted file mode 100644 index 177f23f3fbc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus OR apache-2.0 -is_license_notice: yes -relevance: 99 -notes: this ignores the "any later version" of the apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_3.RULE index 73e2e931383..22270d5f8f4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus OR apache-2.0 +is_license_notice: yes +relevance: 99 +notes: this ignores the "any later version" of the apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/ + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either: diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_3.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_3.yml deleted file mode 100644 index 103f92dd734..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus OR apache-2.0 -is_license_notice: yes -relevance: 99 -notes: this ignores the "any later version" of the apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_4.RULE index 1130ddcdcd2..06608e77dc0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus OR apache-2.0 +is_license_notice: yes +relevance: 99 +notes: this ignores the "any later version" of the apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either: 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. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_4.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_4.yml deleted file mode 100644 index 380e047d327..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_apache-2.0_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus OR apache-2.0 -is_license_notice: yes -relevance: 99 -notes: this ignores the "any later version" of the apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_1.RULE index 5c2ea88474a..519f56fe634 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.AGPL + - LICENSE.BSD +--- + distributed under both the GNU Affero General Public # License version 3 and under the 3-clause BSD license. For more # information, see LICENSE.AGPL and LICENSE.BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_1.yml deleted file mode 100644 index 0250e46e625..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.AGPL - - LICENSE.BSD diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_2.RULE index aeef0956bf6..dd06792af23 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus OR bsd-new +is_license_tag: yes +relevance: 90 +referenced_filenames: + - LICENSE.AGPL + - LICENSE.BSD +--- + 'License :: OSI Approved :: BSD License', ('License :: OSI Approved :: ' 'GNU Affero General Public License v3 or later (AGPLv3+)'), \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_2.yml deleted file mode 100644 index b95d512b38c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus OR bsd-new -is_license_tag: yes -relevance: 90 -referenced_filenames: - - LICENSE.AGPL - - LICENSE.BSD diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_3.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_3.RULE index eb4109fdb73..4cce4599bc3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: (agpl-3.0-plus OR bsd-new) AND cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.AGPL + - LICENSE.BSD +--- + dual-licensed under the following two copyright licenses: the GNU Affero General Public License, either version 3 or (at your option) any later version diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_3.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_3.yml deleted file mode 100644 index 3c25137c7ea..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: (agpl-3.0-plus OR bsd-new) AND cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.AGPL - - LICENSE.BSD diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_4.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_4.RULE index d7b8e845371..7d5f984a528 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_4.RULE @@ -1,2 +1,11 @@ +--- +license_expression: agpl-3.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.AGPL + - LICENSE.BSD +--- + LICENSE.AGPL - one possible copyright license under which this program is distributed to you (the GNU Affero General Public License version 3) LICENSE.BSD - another possible copyright license under which this program is distributed to you (the 3-clause BSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_4.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_4.yml deleted file mode 100644 index 0250e46e625..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.AGPL - - LICENSE.BSD diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_5.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_5.RULE index 190b5dee539..d738bd73d23 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_5.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +--- + By contributing to this project, you are agreeing to license your code contributions under both the GNU Affero General Public License, either version 3 or any later version, and the 3-clause BSD License, and your documentation contributions under the Creative Commons Attribution-ShareAlike License version 4.0, as described in the copyright license section above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_5.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_5.yml deleted file mode 100644 index 0e3724e8668..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_6.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_6.RULE index e437cecdef6..856159a365e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_6.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus OR bsd-new +is_license_tag: yes +relevance: 100 +--- + license: GNU AGPLv3+ or BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_6.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_6.yml deleted file mode 100644 index 368f0970d9d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_bsd-new_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_1.RULE index 21ec0d06b76..af251509e49 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- + Dual licensed under Affero GPL and a commercial license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_1.yml deleted file mode 100644 index ea8f466cc05..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_10.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_10.RULE index 5677e9789fe..2408bd2bccd 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_10.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_10.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Affero GPL or Commercial' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_10.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_10.yml deleted file mode 100644 index 7232fb72c8c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_2.RULE index 922a2ed8be8..0fb9f2389d2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- + This program is licensed under the GNU Affero General Public License. If you need a commercial license, please contact us. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_2.yml deleted file mode 100644 index ea8f466cc05..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_3.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_3.RULE index cef85d089e1..161d4f31dbc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_3.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_3.yml deleted file mode 100644 index 47b8e2d5c48..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_4.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_4.RULE index 2649f6cf8d2..5b46b1c5e9d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_4.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_4.yml deleted file mode 100644 index 8ee204f0dbf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_5.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_5.RULE index 3a4478f9fcb..57e9e7ffda0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_5.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_5.yml deleted file mode 100644 index 8ee204f0dbf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_6.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_6.RULE index 38c229f553c..cd3752630fb 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +ignorable_emails: + - sales@artifex.com +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_6.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_6.yml deleted file mode 100644 index 3d2e6ba4731..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ -ignorable_emails: - - sales@artifex.com diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_7.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_7.RULE index 401e9a9881c..6230eae92d5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_7.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_7.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_reference: yes +relevance: 90 +--- + mupdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_7.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_7.yml deleted file mode 100644 index 1b9a6b8a02c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_8.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_8.RULE index 0796f48e8f0..b4343640395 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_8.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +ignorable_emails: + - sales@artifex.com +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_8.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_8.yml deleted file mode 100644 index e56e14b7fd4..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ -ignorable_emails: - - sales@artifex.com diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_9.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_9.RULE index 3b2aec1464a..ef4f25021f8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_9.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_9.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_9.yml deleted file mode 100644 index 47b8e2d5c48..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_and_proprietary-license_1.RULE index 3c8fb53c46a..3e332974394 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_and_proprietary-license_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (agpl-3.0-plus OR commercial-license) AND proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.technation.sucks/license +--- + Dual licensed under Affero GPL and a commercial license. - Across the globe: Affero GPL. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_and_proprietary-license_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_and_proprietary-license_1.yml deleted file mode 100644 index 6d59e464898..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_commercial-license_and_proprietary-license_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (agpl-3.0-plus OR commercial-license) AND proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.technation.sucks/license diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_vim_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_or_vim_1.RULE index 2e9dd119a8c..590565043ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_vim_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_or_vim_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus OR vim +is_license_notice: yes +relevance: 100 +--- + License: Your choice of GNU AGPL v3+ or the same license as vim v7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_or_vim_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_or_vim_1.yml deleted file mode 100644 index c9bfe6957b0..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_or_vim_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus OR vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_url_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_url_1.RULE index d5a478866d5..54f1ae20559 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_url_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/agpl-3.0-or-later +--- + https://spdx.org/licenses/agpl-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_url_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_url_1.yml deleted file mode 100644 index f97bbebc302..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/agpl-3.0-or-later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_url_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_url_2.RULE index 0a618540829..e2c11c20ef1 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_url_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/agpl-3.0-or-later.html +--- + https://spdx.org/licenses/agpl-3.0-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_url_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_url_2.yml deleted file mode 100644 index 7ce21d69897..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/agpl-3.0-or-later.html diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_1.RULE index 0b5cab2eb63..ceb0305f1f5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_1.RULE @@ -1,4 +1,10 @@ +--- +license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + If you modify this Program, or any covered work, by linking or combining it with other code, such other code is not for that reason alone subject to any of the requirements of the GNU Affero GPL -version 3. +version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_1.yml deleted file mode 100644 index 3fd694f4277..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_2.RULE index f03a2aed7d8..512032523d5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 +is_license_notice: yes +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. @@ -5,4 +10,4 @@ Software Foundation, either version 3 of the License, or any later version. Additional permission under the GNU Affero GPL version 3 section 7: If you modify this Program, or any covered work, by linking or combining it with other code, such other code is not for that reason -alone subject to any of the requirements of the GNU Affero GPL version 3. +alone subject to any of the requirements of the GNU Affero GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_2.yml deleted file mode 100644 index 1f883e079cf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_3.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_3.RULE index ee79e2ca861..d9b661d8530 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_3.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_3.yml deleted file mode 100644 index 6c832f6d0be..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_4.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_4.RULE index 310128ecbee..7629e4db620 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_4.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 +is_license_reference: yes +relevance: 90 +--- + license: LAGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_4.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_4.yml deleted file mode 100644 index fae9f274ccb..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-3.0-linking-exception_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_1.RULE index 73d9b364b89..aa437398c00 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_1.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://itextpdf.com/terms-of-use/ +--- + http://itextpdf.com/terms-of-use/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_1.yml deleted file mode 100644 index 7195b14a62f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://itextpdf.com/terms-of-use/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_10.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_10.RULE index 67243a6dd72..cbeeba853aa 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_10.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + The JavaScript code in this page is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License (GNU AGPL) as published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_10.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_10.yml deleted file mode 100644 index a0bc0a3e643..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_11.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_11.RULE index c6b390e933e..57b69e9d3dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_11.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * The JavaScript code in this page is free software: you can redistribute it * and/or modify it under the terms of the GNU Affero General Public License * (GNU AGPL) as published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_11.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_11.yml deleted file mode 100644 index 9b5f0122d60..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_12.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_12.RULE index 8c6c88c31df..cbbfae7a3f2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_12.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU Affero General Public License as * * published by the Free Software Foundation, either version 3 of the * diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_12.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_12.yml deleted file mode 100644 index 9b5f0122d60..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_13.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_13.RULE index fa3794b1c17..bb5ec32a4c2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_13.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + * Additional permission under GNU AGPL version 3 section 7 * * * * If you modify this program, or any covered work, by linking or * diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_13.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_13.yml deleted file mode 100644 index a0bc0a3e643..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_14.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_14.RULE index a36c99a1793..f079943353a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_14.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_14.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_14.yml deleted file mode 100644 index 9b5f0122d60..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_15.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_15.RULE index e3ec2b3919a..a1c74f019da 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_15.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + The Copyright and Authors attributions contained herein may not be removed or otherwise altered, except to add the Author attribution of a contributor to this work. (Additional Terms pursuant to Section 7b of the AGPL v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_15.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_15.yml deleted file mode 100644 index a0bc0a3e643..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_16.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_16.RULE index 0d26be05f5a..81863f87f59 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_16.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_16.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + (Additional Terms pursuant to Section 7b of the AGPL v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_16.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_16.yml deleted file mode 100644 index a0bc0a3e643..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_17.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_17.RULE index 08f49d16d1d..05c777cd2d6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_17.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + 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. The copyright holders grant you an additional permission under Section 7 of the GNU Affero General Public License, version 3, exempting you from the requirement in Section 6 of the GNU General Public License, version 3, to accompany Corresponding Source with Installation Information for the Program or any work based on the Program. You are still required to comply with all other Section 6 requirements to provide Corresponding Source. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_17.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_17.yml deleted file mode 100644 index a0bc0a3e643..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_18.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_18.RULE index d9a18394b04..eb2c7f83dd5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_18.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published # by the Free Software Foundation, either version 3 of the License, or (at diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_18.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_18.yml deleted file mode 100644 index 9b5f0122d60..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_19.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_19.RULE index ee0e983e0d6..64c7e895404 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_19.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +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 Affero General Public License as * diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_19.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_19.yml deleted file mode 100644 index 559ea7f54bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_2.RULE index 6d37bd45fc3..82026b5f796 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://itextpdf.com/terms-of-use/ + - http://www.gnu.org/licenses +ignorable_emails: + - sales@itextpdf.com +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation with the addition of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_2.yml deleted file mode 100644 index f035a5c77e8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://itextpdf.com/terms-of-use/ - - http://www.gnu.org/licenses -ignorable_emails: - - sales@itextpdf.com diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_20.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_20.RULE index 126a2ad2ff4..e506fe9ffce 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_20.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_20.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * The JavaScript code in this page is free software: you can redistribute it * and/or modify it under the terms of the GNU Affero General Public License * (GNU AGPL) as published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_20.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_20.yml deleted file mode 100644 index 559ea7f54bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_21.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_21.RULE index 38816b9976b..6b33a1954cc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_21.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published # by the Free Software Foundation, either version 3 of the License, or (at diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_21.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_21.yml deleted file mode 100644 index 559ea7f54bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_22.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_22.RULE index a0dab128527..6fb9b4f72b9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_22.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://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 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_22.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_22.yml deleted file mode 100644 index 559ea7f54bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_23.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_23.RULE index d8ddec12b67..73d6591d2d6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_23.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_23.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://itextpdf.com/terms-of-use/ + - https://www.gnu.org/licenses +ignorable_emails: + - sales@itextpdf.com +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation with the addition of the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_23.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_23.yml deleted file mode 100644 index 0dcd63d4fef..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_23.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://itextpdf.com/terms-of-use/ - - https://www.gnu.org/licenses -ignorable_emails: - - sales@itextpdf.com diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_24.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_24.RULE index 53bd58b6fd5..bd19487d7ee 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_24.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +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 Affero General Public License as * * published by the Free Software Foundation, either version 3 of the * diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_24.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_24.yml deleted file mode 100644 index 559ea7f54bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_25.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_25.RULE index 19cd0001e45..06b18398e39 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_25.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +notes: Seen in https://github.com/ca4ti/chiaki/blob/android-decoder-ndk-input-thread/LICENSES/AGPL-3.0-only-OpenSSL.txt +--- + Additional permission under {{GNU AGPL version 3}} section 7 If you modify this program, or any covered work, by linking or diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_25.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_25.yml deleted file mode 100644 index c1a0716d57e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -notes: Seen in https://github.com/ca4ti/chiaki/blob/android-decoder-ndk-input-thread/LICENSES/AGPL-3.0-only-OpenSSL.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_26.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_26.RULE index 4aac97bac91..c963ed4f792 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_26.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_26.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_tag: yes +relevance: 100 +notes: Seen in https://github.com/ca4ti/chiaki/ +--- + SPDX-License-Identifier: LicenseRef-GPL-3.0-or-later-OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_26.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_26.yml deleted file mode 100644 index 508e39ea80d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_tag: yes -relevance: 100 -notes: Seen in https://github.com/ca4ti/chiaki/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_3.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_3.RULE index 1cde81e468d..8002151bd9a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU Affero General Public License as * diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_3.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_3.yml deleted file mode 100644 index 9b5f0122d60..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_4.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_4.RULE index d47bd379c0f..18f7b7863c4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This file is part of MAgPIE and licensed under AGPL-3.0-or-later. Under Section 7 of AGPL-3.0, you are granted additional permissions described in the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_4.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_4.yml deleted file mode 100644 index f32f32b2e03..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_5.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_5.RULE index e905544ff64..5a2e1b80835 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/agpl.txt +--- + LICENSE 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, version 3 of the License or later. You should have received a copy of the GNU Affero General Public License along with this program. See the LICENSE file in the root directory. If not, see https://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_5.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_5.yml deleted file mode 100644 index 47c15d0bbb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_6.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_6.RULE index ecc3c0ec61e..6656295c410 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/agpl.txt +--- + 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, version 3 of the License or later. You should have received a copy of the GNU Affero General Public License along with this program. See the LICENSE file in the root directory. If not, see https://www.gnu.org/licenses/agpl.txt Under Section 7 of AGPL-3.0, you are granted additional permissions described in the MAgPIE License Exception, version 1.0 (see LICENSE file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_6.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_6.yml deleted file mode 100644 index 47c15d0bbb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_7.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_7.RULE index 279a0ea19a0..667ca45b18d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_7.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + The JavaScript code in this page is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License (GNU AGPL) as published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_7.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_7.yml deleted file mode 100644 index a0bc0a3e643..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_8.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_8.RULE index e661c3539b6..4c1685afd27 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_8.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + The JavaScript code in this page is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License (GNU AGPL) as published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_8.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_8.yml deleted file mode 100644 index a0bc0a3e643..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_9.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_9.RULE index a204f3edcf6..7a962e23315 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_9.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + The JavaScript code in this page is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License (GNU AGPL) as published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_9.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_9.yml deleted file mode 100644 index a0bc0a3e643..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_1.RULE index 63b1d0aa0fd..9c4ab6560f4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms AND lucre +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://github.com/benlaurie/lucre +--- + * LICENSE: * This program is free software: you can redistribute it * and/or modify it under the terms of the GNU Affero diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_1.yml deleted file mode 100644 index 52fe04c1233..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms AND lucre -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://github.com/benlaurie/lucre diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_2.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_2.RULE index 4fea00701c3..8a689428c90 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms AND lucre +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/benlaurie/lucre + - https://www.gnu.org/licenses/ +--- + * LICENSE: * This program is free software: you can redistribute it * and/or modify it under the terms of the GNU Affero diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_2.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_2.yml deleted file mode 100644 index 53eb06db70c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_agpl-generic-additional-terms_and_lucre_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus WITH agpl-generic-additional-terms AND lucre -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/benlaurie/lucre - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_linking-exception-agpl-3.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_linking-exception-agpl-3.0_1.RULE index a0c30e14cd9..acf8a8e2586 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_linking-exception-agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_linking-exception-agpl-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_linking-exception-agpl-3.0_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_linking-exception-agpl-3.0_1.yml deleted file mode 100644 index f3f55877c58..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_linking-exception-agpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH linking-exception-agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_magpie-exception-1.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_magpie-exception-1.0_1.RULE index 387d4b3aa3a..061077d185a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_magpie-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_magpie-exception-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH magpie-exception-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This file is part of and licensed under AGPL-3.0-or-later. Under Section 7 of AGPL-3.0, you are granted additional permissions described in the diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_magpie-exception-1.0_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_magpie-exception-1.0_1.yml deleted file mode 100644 index cb2512388c6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_magpie-exception-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH magpie-exception-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_openssl-exception-agpl-3.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_with_openssl-exception-agpl-3.0_1.RULE index 91048f52ae1..a9801be66ea 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_openssl-exception-agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_with_openssl-exception-agpl-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0-plus WITH openssl-exception-agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the @@ -26,4 +34,4 @@ file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source files in the program, then also delete - it in the license file. + it in the license file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_with_openssl-exception-agpl-3.0_1.yml b/src/licensedcode/data/rules/agpl-3.0-plus_with_openssl-exception-agpl-3.0_1.yml deleted file mode 100644 index fe68814c394..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0-plus_with_openssl-exception-agpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0-plus WITH openssl-exception-agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0.RULE b/src/licensedcode/data/rules/agpl-3.0.RULE index ba7aaad1393..59894c9b57e 100644 --- a/src/licensedcode/data/rules/agpl-3.0.RULE +++ b/src/licensedcode/data/rules/agpl-3.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +--- + 0. Definitions. "This License" refers to version 3 of the GNU Affero General Public License. @@ -554,4 +559,4 @@ 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. +copy of the Program in return for a fee. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0.SPDX.RULE b/src/licensedcode/data/rules/agpl-3.0.SPDX.RULE index c2672375707..f248bc5c85e 100644 --- a/src/licensedcode/data/rules/agpl-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/agpl-3.0.SPDX.RULE @@ -1,3 +1,17 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0.SPDX.yml b/src/licensedcode/data/rules/agpl-3.0.SPDX.yml deleted file mode 100644 index 1bb90dcb7f0..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0.SPDX.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0.yml b/src/licensedcode/data/rules/agpl-3.0.yml deleted file mode 100644 index d1fcfe6d057..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/agpl-3.0_0.RULE b/src/licensedcode/data/rules/agpl-3.0_0.RULE index ac101ef3314..640adad7962 100644 --- a/src/licensedcode/data/rules/agpl-3.0_0.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_0.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License diff --git a/src/licensedcode/data/rules/agpl-3.0_0.yml b/src/licensedcode/data/rules/agpl-3.0_0.yml deleted file mode 100644 index 4edba51752a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_01.RULE b/src/licensedcode/data/rules/agpl-3.0_01.RULE index 2edacaf6111..267c36563d6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_01.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_01.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + the GNU Affero General Public License, Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_01.yml b/src/licensedcode/data/rules/agpl-3.0_01.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_01.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0_1.RULE index b6d74ebdaf3..043727c691c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 95 +--- + AGPL30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_1.yml b/src/licensedcode/data/rules/agpl-3.0_1.yml deleted file mode 100644 index c3d27e2164b..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/agpl-3.0_10.RULE b/src/licensedcode/data/rules/agpl-3.0_10.RULE index 3a826d8429e..95a131ec824 100644 --- a/src/licensedcode/data/rules/agpl-3.0_10.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Affero General Public License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_10.yml b/src/licensedcode/data/rules/agpl-3.0_10.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_100.RULE b/src/licensedcode/data/rules/agpl-3.0_100.RULE index b7d8ddd731e..d2cb82ef273 100644 --- a/src/licensedcode/data/rules/agpl-3.0_100.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_100.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 80 +--- + plupload \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_100.yml b/src/licensedcode/data/rules/agpl-3.0_100.yml deleted file mode 100644 index 6dd3d3a550e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/agpl-3.0_101.RULE b/src/licensedcode/data/rules/agpl-3.0_101.RULE index 0638742c6e9..8a521279ad5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_101.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_101.RULE @@ -1,3 +1,18 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 85 +ignorable_copyrights: + - (c) 2009, Kristina Chodorow +ignorable_holders: + - Kristina Chodorow +ignorable_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html +ignorable_emails: + - kristina@10gen.com +--- + License: AGPL diff --git a/src/licensedcode/data/rules/agpl-3.0_101.yml b/src/licensedcode/data/rules/agpl-3.0_101.yml deleted file mode 100644 index db27dd64e21..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_101.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 85 -ignorable_copyrights: - - (c) 2009, Kristina Chodorow -ignorable_holders: - - Kristina Chodorow -ignorable_urls: - - http://www.fsf.org/licensing/licenses/agpl-3.0.html -ignorable_emails: - - kristina@10gen.com diff --git a/src/licensedcode/data/rules/agpl-3.0_102.RULE b/src/licensedcode/data/rules/agpl-3.0_102.RULE index ebcc1fcd4be..9467a8a2af4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_102.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_102.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html +--- + licensed under the AGPL, see `http://www.fsf.org/licensing/licenses/agpl-3.0.html'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_102.yml b/src/licensedcode/data/rules/agpl-3.0_102.yml deleted file mode 100644 index b62cd1e4a66..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_103.RULE b/src/licensedcode/data/rules/agpl-3.0_103.RULE index d12c2abab93..3b1aaab0e84 100644 --- a/src/licensedcode/data/rules/agpl-3.0_103.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_103.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_103.yml b/src/licensedcode/data/rules/agpl-3.0_103.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_104.RULE b/src/licensedcode/data/rules/agpl-3.0_104.RULE index ec19b32765b..460e62811a4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_104.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_104.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.zh-cn.html +--- + https://www.gnu.org/licenses/agpl-3.0.zh-cn.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_104.yml b/src/licensedcode/data/rules/agpl-3.0_104.yml deleted file mode 100644 index 0eae0f09ce8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_104.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.zh-cn.html diff --git a/src/licensedcode/data/rules/agpl-3.0_105.RULE b/src/licensedcode/data/rules/agpl-3.0_105.RULE index 951ca7bd523..3f8ddfa2d2f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_105.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_105.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + https://www.gnu.org/licenses/agpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_105.yml b/src/licensedcode/data/rules/agpl-3.0_105.yml deleted file mode 100644 index aa075e44352..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0_106.RULE b/src/licensedcode/data/rules/agpl-3.0_106.RULE index 82b13f5124c..1c405f5c0d8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_106.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_106.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.ca.html +--- + https://www.gnu.org/licenses/agpl-3.0.ca.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_106.yml b/src/licensedcode/data/rules/agpl-3.0_106.yml deleted file mode 100644 index 89d6c55c5a8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_106.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.ca.html diff --git a/src/licensedcode/data/rules/agpl-3.0_107.RULE b/src/licensedcode/data/rules/agpl-3.0_107.RULE index 9a2936a2b76..5a2464ed73b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_107.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_107.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.de.html +--- + https://www.gnu.org/licenses/agpl-3.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_107.yml b/src/licensedcode/data/rules/agpl-3.0_107.yml deleted file mode 100644 index 6c11c633e94..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.de.html diff --git a/src/licensedcode/data/rules/agpl-3.0_108.RULE b/src/licensedcode/data/rules/agpl-3.0_108.RULE index 483f9545ab0..3a06802a01a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_108.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_108.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.fr.html +--- + https://www.gnu.org/licenses/agpl-3.0.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_108.yml b/src/licensedcode/data/rules/agpl-3.0_108.yml deleted file mode 100644 index e66ffaba689..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.fr.html diff --git a/src/licensedcode/data/rules/agpl-3.0_109.RULE b/src/licensedcode/data/rules/agpl-3.0_109.RULE index 63993871e91..4c018d44a23 100644 --- a/src/licensedcode/data/rules/agpl-3.0_109.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_109.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.ja.html +--- + https://www.gnu.org/licenses/agpl-3.0.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_109.yml b/src/licensedcode/data/rules/agpl-3.0_109.yml deleted file mode 100644 index 94a795af777..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.ja.html diff --git a/src/licensedcode/data/rules/agpl-3.0_11.RULE b/src/licensedcode/data/rules/agpl-3.0_11.RULE index a4ecb06bc3e..bf83f09125f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_11.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Affero General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_11.yml b/src/licensedcode/data/rules/agpl-3.0_11.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_110.RULE b/src/licensedcode/data/rules/agpl-3.0_110.RULE index 33fe251b315..970f931d518 100644 --- a/src/licensedcode/data/rules/agpl-3.0_110.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_110.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.nl.html +--- + https://www.gnu.org/licenses/agpl-3.0.nl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_110.yml b/src/licensedcode/data/rules/agpl-3.0_110.yml deleted file mode 100644 index 53a51e8f0b1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.nl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_111.RULE b/src/licensedcode/data/rules/agpl-3.0_111.RULE index b01dca1ec44..b26fb825cfd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_111.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_111.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.pt-br.html +--- + https://www.gnu.org/licenses/agpl-3.0.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_111.yml b/src/licensedcode/data/rules/agpl-3.0_111.yml deleted file mode 100644 index 439164effc7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.pt-br.html diff --git a/src/licensedcode/data/rules/agpl-3.0_112.RULE b/src/licensedcode/data/rules/agpl-3.0_112.RULE index ca613e6e797..60137aa7dbc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_112.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_112.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.ru.html +--- + https://www.gnu.org/licenses/agpl-3.0.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_112.yml b/src/licensedcode/data/rules/agpl-3.0_112.yml deleted file mode 100644 index c4aafc45930..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.ru.html diff --git a/src/licensedcode/data/rules/agpl-3.0_113.RULE b/src/licensedcode/data/rules/agpl-3.0_113.RULE index befaa1846ce..5fa7d7023b6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_113.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_113.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.uk.html +--- + https://www.gnu.org/licenses/agpl-3.0.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_113.yml b/src/licensedcode/data/rules/agpl-3.0_113.yml deleted file mode 100644 index e509fdd1275..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_113.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.uk.html diff --git a/src/licensedcode/data/rules/agpl-3.0_114.RULE b/src/licensedcode/data/rules/agpl-3.0_114.RULE index 7782becfc70..15088b87305 100644 --- a/src/licensedcode/data/rules/agpl-3.0_114.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_114.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + It's released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. For license information, please see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_114.yml b/src/licensedcode/data/rules/agpl-3.0_114.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_115.RULE b/src/licensedcode/data/rules/agpl-3.0_115.RULE index a71167831fb..aa11aa446a4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_115.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_115.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + It's released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_115.yml b/src/licensedcode/data/rules/agpl-3.0_115.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_116.RULE b/src/licensedcode/data/rules/agpl-3.0_116.RULE index 5c29232259b..493032efa35 100644 --- a/src/licensedcode/data/rules/agpl-3.0_116.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_116.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + It's released under the GNU Affero GENERAL PUBLIC LICENSE, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_116.yml b/src/licensedcode/data/rules/agpl-3.0_116.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_117.RULE b/src/licensedcode/data/rules/agpl-3.0_117.RULE index e368b5df3db..e3835c7772f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_117.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_117.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. For license information, please see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_117.yml b/src/licensedcode/data/rules/agpl-3.0_117.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_118.RULE b/src/licensedcode/data/rules/agpl-3.0_118.RULE index 54c07fe90c3..67da81c0136 100644 --- a/src/licensedcode/data/rules/agpl-3.0_118.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_118.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_118.yml b/src/licensedcode/data/rules/agpl-3.0_118.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_119.RULE b/src/licensedcode/data/rules/agpl-3.0_119.RULE index 8b4c07a46e0..f67325d466a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_119.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_119.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the GNU Affero GENERAL PUBLIC LICENSE, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_119.yml b/src/licensedcode/data/rules/agpl-3.0_119.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_12.RULE b/src/licensedcode/data/rules/agpl-3.0_12.RULE index 8772e52ef9a..430519d9212 100644 --- a/src/licensedcode/data/rules/agpl-3.0_12.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_12.RULE @@ -1 +1,9 @@ -is an open source project, licenced under "http://www.gnu.org/licenses/agpl-3.0.html">version 3 of the Affero General Public Licence +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + +is an open source project, licenced under "http://www.gnu.org/licenses/agpl-3.0.html">version 3 of the Affero General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_12.yml b/src/licensedcode/data/rules/agpl-3.0_12.yml deleted file mode 100644 index 129cdca7767..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_120.RULE b/src/licensedcode/data/rules/agpl-3.0_120.RULE index fbf163d6e7f..a6f687cb01b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_120.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_120.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + It's released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_120.yml b/src/licensedcode/data/rules/agpl-3.0_120.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_121.RULE b/src/licensedcode/data/rules/agpl-3.0_121.RULE index 4dc81465eed..ba8d4d6f3b6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_121.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_121.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_121.yml b/src/licensedcode/data/rules/agpl-3.0_121.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_122.RULE b/src/licensedcode/data/rules/agpl-3.0_122.RULE index 53b164c78f0..a6468021069 100644 --- a/src/licensedcode/data/rules/agpl-3.0_122.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_122.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_122.yml b/src/licensedcode/data/rules/agpl-3.0_122.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_123.RULE b/src/licensedcode/data/rules/agpl-3.0_123.RULE index d749f81668f..eea4bd30e64 100644 --- a/src/licensedcode/data/rules/agpl-3.0_123.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_123.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Affero GENERAL PUBLIC LICENSE, Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_123.yml b/src/licensedcode/data/rules/agpl-3.0_123.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_124.RULE b/src/licensedcode/data/rules/agpl-3.0_124.RULE index 20749642eb8..5beb783fa01 100644 --- a/src/licensedcode/data/rules/agpl-3.0_124.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_124.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Affero GPL, Version 3, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_124.yml b/src/licensedcode/data/rules/agpl-3.0_124.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_125.RULE b/src/licensedcode/data/rules/agpl-3.0_125.RULE index 5ff4be525c6..66d43e7b9ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_125.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_125.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Affero GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_125.yml b/src/licensedcode/data/rules/agpl-3.0_125.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_126.RULE b/src/licensedcode/data/rules/agpl-3.0_126.RULE index 71899ad8402..88dd1a2970d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_126.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_126.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. For license information, please see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_126.yml b/src/licensedcode/data/rules/agpl-3.0_126.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_126.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_127.RULE b/src/licensedcode/data/rules/agpl-3.0_127.RULE index 0d3dc791841..8e31b562636 100644 --- a/src/licensedcode/data/rules/agpl-3.0_127.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_127.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_127.yml b/src/licensedcode/data/rules/agpl-3.0_127.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_128.RULE b/src/licensedcode/data/rules/agpl-3.0_128.RULE index 0cce9ae1133..93a414bba70 100644 --- a/src/licensedcode/data/rules/agpl-3.0_128.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_128.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Affero GENERAL PUBLIC LICENSE, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_128.yml b/src/licensedcode/data/rules/agpl-3.0_128.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_129.RULE b/src/licensedcode/data/rules/agpl-3.0_129.RULE index 5e258fc2609..ff9bcae7c75 100644 --- a/src/licensedcode/data/rules/agpl-3.0_129.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_129.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Affero GENERAL PUBLIC LICENSE, Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_129.yml b/src/licensedcode/data/rules/agpl-3.0_129.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_13.RULE b/src/licensedcode/data/rules/agpl-3.0_13.RULE index 4e8aba3cece..143cb38f165 100644 --- a/src/licensedcode/data/rules/agpl-3.0_13.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Unless permission is explicitly given this code is licensed under the GNU Affero GPL version 3 which can be found in the diff --git a/src/licensedcode/data/rules/agpl-3.0_13.yml b/src/licensedcode/data/rules/agpl-3.0_13.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_130.RULE b/src/licensedcode/data/rules/agpl-3.0_130.RULE index fc85f59781d..f6fbd5a3043 100644 --- a/src/licensedcode/data/rules/agpl-3.0_130.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_130.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License: AGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_130.yml b/src/licensedcode/data/rules/agpl-3.0_130.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_131.RULE b/src/licensedcode/data/rules/agpl-3.0_131.RULE index 2048c67be61..5e961446a36 100644 --- a/src/licensedcode/data/rules/agpl-3.0_131.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_131.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License: AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_131.yml b/src/licensedcode/data/rules/agpl-3.0_131.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_132.RULE b/src/licensedcode/data/rules/agpl-3.0_132.RULE index a78c64fe7fc..4db989c6e8c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_132.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_132.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Unless the folder itself contains a LICENSE stating otherwise, all the files distributed here are released under the GNU AFFERO GENERAL PUBLIC LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_132.yml b/src/licensedcode/data/rules/agpl-3.0_132.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_133.RULE b/src/licensedcode/data/rules/agpl-3.0_133.RULE index dcdcbc63dde..3426ccf1d9d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_133.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_133.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: AGPLv3 The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure @@ -650,4 +658,4 @@ License: AGPLv3 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_133.yml b/src/licensedcode/data/rules/agpl-3.0_133.yml deleted file mode 100644 index 246d60ac827..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_133.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_134.RULE b/src/licensedcode/data/rules/agpl-3.0_134.RULE index f552c61b37e..09c84bfc945 100644 --- a/src/licensedcode/data/rules/agpl-3.0_134.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_134.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under the GNU Affero General Public License, version 3 (AGPLv3). The full text of this license is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_134.yml b/src/licensedcode/data/rules/agpl-3.0_134.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_135.RULE b/src/licensedcode/data/rules/agpl-3.0_135.RULE index 0b8bde17c6d..20de8e3b559 100644 --- a/src/licensedcode/data/rules/agpl-3.0_135.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_135.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under the GNU Affero General Public License, version 3 (AGPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_135.yml b/src/licensedcode/data/rules/agpl-3.0_135.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_136.RULE b/src/licensedcode/data/rules/agpl-3.0_136.RULE index e00ba7da587..c4cc0fd98d2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_136.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_136.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Affero General Public License, version 3 (AGPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_136.yml b/src/licensedcode/data/rules/agpl-3.0_136.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_137.RULE b/src/licensedcode/data/rules/agpl-3.0_137.RULE index c5ce06aa2c9..d456285f3e1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_137.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_137.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + source code under the GNU Affero General Public License, version 3 (AGPL-3.0). The full text of this license is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_137.yml b/src/licensedcode/data/rules/agpl-3.0_137.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_138.RULE b/src/licensedcode/data/rules/agpl-3.0_138.RULE index faeca934b55..73566392b6f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_138.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_138.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + source code under the GNU Affero General Public License, version 3 (AGPL-3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_138.yml b/src/licensedcode/data/rules/agpl-3.0_138.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_139.RULE b/src/licensedcode/data/rules/agpl-3.0_139.RULE index 4acb71db198..992516ce076 100644 --- a/src/licensedcode/data/rules/agpl-3.0_139.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_139.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Affero General Public License, version 3 (AGPL-3.0). The full text of this license is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_139.yml b/src/licensedcode/data/rules/agpl-3.0_139.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_14.RULE b/src/licensedcode/data/rules/agpl-3.0_14.RULE index e5b7e3bd720..f4ffc6b3645 100644 --- a/src/licensedcode/data/rules/agpl-3.0_14.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Affero GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_14.yml b/src/licensedcode/data/rules/agpl-3.0_14.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_140.RULE b/src/licensedcode/data/rules/agpl-3.0_140.RULE index 382e488a17c..a7de627f82b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_140.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_140.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Affero General Public License, version 3 (AGPL-3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_140.yml b/src/licensedcode/data/rules/agpl-3.0_140.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_141.RULE b/src/licensedcode/data/rules/agpl-3.0_141.RULE index 5b0688e01d3..9c842e53c0e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_141.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_141.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + source code under the GNU Affero General Public License, version 3 ("AGPLv3"). The full text of this licence is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_141.yml b/src/licensedcode/data/rules/agpl-3.0_141.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_142.RULE b/src/licensedcode/data/rules/agpl-3.0_142.RULE index 4c37cf4f9a7..b1a385eaa52 100644 --- a/src/licensedcode/data/rules/agpl-3.0_142.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_142.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Affero General Public License, version 3 ("AGPLv3"). The full text of this licence is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_142.yml b/src/licensedcode/data/rules/agpl-3.0_142.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_143.RULE b/src/licensedcode/data/rules/agpl-3.0_143.RULE index 590111c3df0..db6bd588666 100644 --- a/src/licensedcode/data/rules/agpl-3.0_143.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_143.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + source code under the GNU Affero General Public License, version 3 ("AGPLv3"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_143.yml b/src/licensedcode/data/rules/agpl-3.0_143.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_144.RULE b/src/licensedcode/data/rules/agpl-3.0_144.RULE index a4f9ce105e8..92d1cc7af2b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_144.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_144.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + All code here, except where otherwise indicated, is licensed under the GNU Affero General Public License version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_144.yml b/src/licensedcode/data/rules/agpl-3.0_144.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_145.RULE b/src/licensedcode/data/rules/agpl-3.0_145.RULE index a6504488062..e6e3d58174a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_145.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_145.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU Affero General Public License version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_145.yml b/src/licensedcode/data/rules/agpl-3.0_145.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_146.RULE b/src/licensedcode/data/rules/agpl-3.0_146.RULE index f787fb186d3..861f1fdf7d9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_146.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_146.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU AGPL, a copy of which is provided below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_146.yml b/src/licensedcode/data/rules/agpl-3.0_146.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_147.RULE b/src/licensedcode/data/rules/agpl-3.0_147.RULE index ee9f0f6cfe3..cb7b5464550 100644 --- a/src/licensedcode/data/rules/agpl-3.0_147.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_147.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed to you under the AGPLv3, the terms of which are included below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_147.yml b/src/licensedcode/data/rules/agpl-3.0_147.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_148.RULE b/src/licensedcode/data/rules/agpl-3.0_148.RULE index b8af42e2f06..b36501f6cd0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_148.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_148.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed to you under the AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_148.yml b/src/licensedcode/data/rules/agpl-3.0_148.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_149.RULE b/src/licensedcode/data/rules/agpl-3.0_149.RULE index 10cd4399972..805e4162bd8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_149.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_149.RULE @@ -1,3 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +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/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_149.yml b/src/licensedcode/data/rules/agpl-3.0_149.yml deleted file mode 100644 index 0d0869ea6a6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_149.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -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/ diff --git a/src/licensedcode/data/rules/agpl-3.0_15.RULE b/src/licensedcode/data/rules/agpl-3.0_15.RULE index c64b5f27868..823c0e2866b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_15.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_15.RULE @@ -1 +1,7 @@ -license": "GNU Affero General Public Licence v3" +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +license": "GNU Affero General Public Licence v3" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_15.yml b/src/licensedcode/data/rules/agpl-3.0_15.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_150.RULE b/src/licensedcode/data/rules/agpl-3.0_150.RULE index ec8c8091749..2143dc9fe88 100644 --- a/src/licensedcode/data/rules/agpl-3.0_150.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_150.RULE @@ -1,3 +1,17 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses/ + - http://www.gnu.org/licenses/agpl.html +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 (http://www.gnu.org/licenses/agpl.html) diff --git a/src/licensedcode/data/rules/agpl-3.0_150.yml b/src/licensedcode/data/rules/agpl-3.0_150.yml deleted file mode 100644 index a4f6dc48ee7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_150.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ - - http://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_151.RULE b/src/licensedcode/data/rules/agpl-3.0_151.RULE index ea1b550751b..a1edfa39986 100644 --- a/src/licensedcode/data/rules/agpl-3.0_151.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_151.RULE @@ -1,4 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU AGPL v3 licence, which follows. - If it is not the case, this is clearly indicated in the files. + If it is not the case, this is clearly indicated in the files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_151.yml b/src/licensedcode/data/rules/agpl-3.0_151.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_152.RULE b/src/licensedcode/data/rules/agpl-3.0_152.RULE index d93e005c7c4..93e80f0fa21 100644 --- a/src/licensedcode/data/rules/agpl-3.0_152.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_152.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Most of the files are distributed under the GNU AGPL v3 licence, which follows. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_152.yml b/src/licensedcode/data/rules/agpl-3.0_152.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_153.RULE b/src/licensedcode/data/rules/agpl-3.0_153.RULE index 929f16f5c80..e220c7f4161 100644 --- a/src/licensedcode/data/rules/agpl-3.0_153.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_153.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU AGPL v3 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_153.yml b/src/licensedcode/data/rules/agpl-3.0_153.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_154.RULE b/src/licensedcode/data/rules/agpl-3.0_154.RULE index fe38d40eae6..c5d354f6c1d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_154.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_154.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU AGPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_154.yml b/src/licensedcode/data/rules/agpl-3.0_154.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_155.RULE b/src/licensedcode/data/rules/agpl-3.0_155.RULE index 12e74076c6d..3ebbb0814dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_155.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_155.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Most of the files are distributed under the GNU AGPL v3 licence, which follows. diff --git a/src/licensedcode/data/rules/agpl-3.0_155.yml b/src/licensedcode/data/rules/agpl-3.0_155.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_156.RULE b/src/licensedcode/data/rules/agpl-3.0_156.RULE index bc7ac73a1e9..8ba82fc0568 100644 --- a/src/licensedcode/data/rules/agpl-3.0_156.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_156.RULE @@ -1,3 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 95 +notes: truncated license text +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_156.yml b/src/licensedcode/data/rules/agpl-3.0_156.yml deleted file mode 100644 index 354efdd23ae..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_156.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 95 -notes: truncated license text -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ diff --git a/src/licensedcode/data/rules/agpl-3.0_157.RULE b/src/licensedcode/data/rules/agpl-3.0_157.RULE index 6e4bc099f4c..80dbd5bfec1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_157.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_157.RULE @@ -1,3 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 95 +notes: truncated text +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_157.yml b/src/licensedcode/data/rules/agpl-3.0_157.yml deleted file mode 100644 index 05b2873703f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_157.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 95 -notes: truncated text -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ diff --git a/src/licensedcode/data/rules/agpl-3.0_158.RULE b/src/licensedcode/data/rules/agpl-3.0_158.RULE index ee8e8fc24ce..4d1c9178b16 100644 --- a/src/licensedcode/data/rules/agpl-3.0_158.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_158.RULE @@ -1,3 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_158.yml b/src/licensedcode/data/rules/agpl-3.0_158.yml deleted file mode 100644 index 2c92712c6dc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_158.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_159.RULE b/src/licensedcode/data/rules/agpl-3.0_159.RULE index e420a9cca6e..b31b8e8b50e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_159.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_159.RULE @@ -1,3 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_159.yml b/src/licensedcode/data/rules/agpl-3.0_159.yml deleted file mode 100644 index 2c92712c6dc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_159.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_16.RULE b/src/licensedcode/data/rules/agpl-3.0_16.RULE index ad04d62428b..71c1b9b9f34 100644 --- a/src/licensedcode/data/rules/agpl-3.0_16.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl +--- + http://www.gnu.org/licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_16.yml b/src/licensedcode/data/rules/agpl-3.0_16.yml deleted file mode 100644 index 2b442cc7b62..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0_160.RULE b/src/licensedcode/data/rules/agpl-3.0_160.RULE index 3f24063d06b..1725b23429e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_160.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_160.RULE @@ -1,3 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +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/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 @@ -579,4 +592,4 @@ 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_160.yml b/src/licensedcode/data/rules/agpl-3.0_160.yml deleted file mode 100644 index 0d0869ea6a6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_160.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -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/ diff --git a/src/licensedcode/data/rules/agpl-3.0_161.RULE b/src/licensedcode/data/rules/agpl-3.0_161.RULE index ff248c3d3db..8557aa42bae 100644 --- a/src/licensedcode/data/rules/agpl-3.0_161.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_161.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3 (only), as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_161.yml b/src/licensedcode/data/rules/agpl-3.0_161.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_162.RULE b/src/licensedcode/data/rules/agpl-3.0_162.RULE index 0597fe7835c..289313b44a6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_162.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_162.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/AGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # The source code of this program is made available # under the terms of the GNU Affero General Public License version 3 # (GNU AGPL V3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_162.yml b/src/licensedcode/data/rules/agpl-3.0_162.yml deleted file mode 100644 index 8874efc48f2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_162.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/AGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_163.RULE b/src/licensedcode/data/rules/agpl-3.0_163.RULE index f0fa77513dc..ac749f407a6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_163.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_163.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under AGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_163.yml b/src/licensedcode/data/rules/agpl-3.0_163.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_164.RULE b/src/licensedcode/data/rules/agpl-3.0_164.RULE index de2dbbaedc1..53111171067 100644 --- a/src/licensedcode/data/rules/agpl-3.0_164.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_164.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/agpl.html +--- + GNU AFFERO GENERAL PUBLIC LICENSE (AGPL) Version 3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_164.yml b/src/licensedcode/data/rules/agpl-3.0_164.yml deleted file mode 100644 index 01f67a1efec..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_165.RULE b/src/licensedcode/data/rules/agpl-3.0_165.RULE index 12ffa0b556f..5ec996e51d1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_165.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_165.RULE @@ -1 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU Affero General +ignorable_holders: + - GNU Affero General +--- + copyright GNU Affero General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_165.yml b/src/licensedcode/data/rules/agpl-3.0_165.yml deleted file mode 100644 index 9085663aec6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_165.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU Affero General -ignorable_holders: - - GNU Affero General diff --git a/src/licensedcode/data/rules/agpl-3.0_166.RULE b/src/licensedcode/data/rules/agpl-3.0_166.RULE index 3276ed9ae3b..6b9172ff778 100644 --- a/src/licensedcode/data/rules/agpl-3.0_166.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_166.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License an Open Source project licensed under the terms of the AGPL license - The GNU Affero General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_166.yml b/src/licensedcode/data/rules/agpl-3.0_166.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_167.RULE b/src/licensedcode/data/rules/agpl-3.0_167.RULE index 31296938b66..7e5f28b2ccd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_167.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_167.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the AGPL license - The GNU Affero General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_167.yml b/src/licensedcode/data/rules/agpl-3.0_167.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_168.RULE b/src/licensedcode/data/rules/agpl-3.0_168.RULE index be9a5dfc278..8f4bf895886 100644 --- a/src/licensedcode/data/rules/agpl-3.0_168.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_168.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + project licensed under the terms of the AGPL license - `The GNU Affero General Public License v3.0 ` \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_168.yml b/src/licensedcode/data/rules/agpl-3.0_168.yml deleted file mode 100644 index 129cdca7767..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_169.RULE b/src/licensedcode/data/rules/agpl-3.0_169.RULE index d470686bb12..8633d56fc57 100644 --- a/src/licensedcode/data/rules/agpl-3.0_169.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_169.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * The JavaScript code in this page is free software: you can redistribute it * and/or modify it under the terms of the GNU Affero General Public License * (GNU AGPL) as published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0_169.yml b/src/licensedcode/data/rules/agpl-3.0_169.yml deleted file mode 100644 index 4edba51752a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_17.RULE b/src/licensedcode/data/rules/agpl-3.0_17.RULE index 7cde0e62438..73a175a028a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_17.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl +--- + license AGPL https://www.gnu.org/licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_17.yml b/src/licensedcode/data/rules/agpl-3.0_17.yml deleted file mode 100644 index 4d73ceb42d2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0_170.RULE b/src/licensedcode/data/rules/agpl-3.0_170.RULE index 635e9c82689..b7ef6d15fbd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_170.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_170.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + * This software is distributed under {{AGPL V3}} licence. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS @@ -11,4 +17,4 @@ * 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. + * POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_170.yml b/src/licensedcode/data/rules/agpl-3.0_170.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_171.RULE b/src/licensedcode/data/rules/agpl-3.0_171.RULE index acb65b5287e..c1321be013f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_171.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_171.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + * This software is distributed under AGPL V3 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_171.yml b/src/licensedcode/data/rules/agpl-3.0_171.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_172.RULE b/src/licensedcode/data/rules/agpl-3.0_172.RULE index 82ebbc81542..a494e22af52 100644 --- a/src/licensedcode/data/rules/agpl-3.0_172.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_172.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_172.yml b/src/licensedcode/data/rules/agpl-3.0_172.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_173.RULE b/src/licensedcode/data/rules/agpl-3.0_173.RULE index c19d4fc4c38..8fcd7f678c1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_173.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_173.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 99 +--- + LAGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_173.yml b/src/licensedcode/data/rules/agpl-3.0_173.yml deleted file mode 100644 index cf8723ba674..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/agpl-3.0_174.RULE b/src/licensedcode/data/rules/agpl-3.0_174.RULE index 9b64c0a161a..a5d9315f060 100644 --- a/src/licensedcode/data/rules/agpl-3.0_174.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_174.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + # The source code of this program is made available # under the terms of the GNU Affero General Public License version 3 # (GNU AGPL V3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_174.yml b/src/licensedcode/data/rules/agpl-3.0_174.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_175.RULE b/src/licensedcode/data/rules/agpl-3.0_175.RULE index 5a2de0320ff..2f2dbf7c5be 100644 --- a/src/licensedcode/data/rules/agpl-3.0_175.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_175.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + __license__ = "AGPL-3.0-only" """ Licensed under the GNU AGPL-3.0 License (the "License"); diff --git a/src/licensedcode/data/rules/agpl-3.0_175.yml b/src/licensedcode/data/rules/agpl-3.0_175.yml deleted file mode 100644 index 3363e7e48ff..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_175.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0_176.RULE b/src/licensedcode/data/rules/agpl-3.0_176.RULE index 7ba2be9e665..6ba252b88d0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_176.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_176.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + __license__ = "AGPL-3.0-only" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_176.yml b/src/licensedcode/data/rules/agpl-3.0_176.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_177.RULE b/src/licensedcode/data/rules/agpl-3.0_177.RULE index 9a95d72b75d..2fee482beb9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_177.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_177.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License: GNU AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_177.yml b/src/licensedcode/data/rules/agpl-3.0_177.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_178.RULE b/src/licensedcode/data/rules/agpl-3.0_178.RULE index 880d7f30e53..2a3fafe737f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_178.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_178.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + * License: GNU Affero General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_178.yml b/src/licensedcode/data/rules/agpl-3.0_178.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_179.RULE b/src/licensedcode/data/rules/agpl-3.0_179.RULE index 6e4f8d2ea71..3195476cf88 100644 --- a/src/licensedcode/data/rules/agpl-3.0_179.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_179.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed under the Affero General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_179.yml b/src/licensedcode/data/rules/agpl-3.0_179.yml deleted file mode 100644 index 642cc08c997..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0_18.RULE b/src/licensedcode/data/rules/agpl-3.0_18.RULE index f0d7d7724a3..911fbe48341 100644 --- a/src/licensedcode/data/rules/agpl-3.0_18.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl +--- + AGPL https://www.gnu.org/licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_18.yml b/src/licensedcode/data/rules/agpl-3.0_18.yml deleted file mode 100644 index 4d73ceb42d2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0_180.RULE b/src/licensedcode/data/rules/agpl-3.0_180.RULE index b40ced4402b..c480e948ad9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_180.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_180.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License: AGPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_180.yml b/src/licensedcode/data/rules/agpl-3.0_180.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_181.RULE b/src/licensedcode/data/rules/agpl-3.0_181.RULE index 08fd635c1c8..f5bcf483d91 100644 --- a/src/licensedcode/data/rules/agpl-3.0_181.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_181.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + # AGPL-v3 License The contents of this repository is available under the AGPL-v3 license, see the [AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_181.yml b/src/licensedcode/data/rules/agpl-3.0_181.yml deleted file mode 100644 index 3363e7e48ff..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0_182.RULE b/src/licensedcode/data/rules/agpl-3.0_182.RULE index e8f38901169..70b5c106fa1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_182.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_182.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + # AGPL-v3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_182.yml b/src/licensedcode/data/rules/agpl-3.0_182.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_183.RULE b/src/licensedcode/data/rules/agpl-3.0_183.RULE index 3c35a6ca081..5c65771629e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_183.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_183.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The contents of this repository is available under the AGPL-v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_183.yml b/src/licensedcode/data/rules/agpl-3.0_183.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_184.RULE b/src/licensedcode/data/rules/agpl-3.0_184.RULE index 78b9635b03f..ea631530e95 100644 --- a/src/licensedcode/data/rules/agpl-3.0_184.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_184.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + The contents of this repository is available under the AGPL-v3 license, see the [AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_184.yml b/src/licensedcode/data/rules/agpl-3.0_184.yml deleted file mode 100644 index 3363e7e48ff..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0_185.RULE b/src/licensedcode/data/rules/agpl-3.0_185.RULE index 5db23247267..b002bcfde23 100644 --- a/src/licensedcode/data/rules/agpl-3.0_185.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_185.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + see the [AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_185.yml b/src/licensedcode/data/rules/agpl-3.0_185.yml deleted file mode 100644 index 3363e7e48ff..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0_186.RULE b/src/licensedcode/data/rules/agpl-3.0_186.RULE index b11f83e258c..716b5ded5e8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_186.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_186.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - GNU-AGPL-3.0.txt +--- + GNU-AGPL-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_186.yml b/src/licensedcode/data/rules/agpl-3.0_186.yml deleted file mode 100644 index 5467640e635..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_186.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - GNU-AGPL-3.0.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_187.RULE b/src/licensedcode/data/rules/agpl-3.0_187.RULE index e44ae074320..84a0cb45804 100644 --- a/src/licensedcode/data/rules/agpl-3.0_187.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_187.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0 +--- + `AGPL-3.0` - [GNU Affero General Public License 3.0](https://www.gnu.org/licenses/agpl-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_187.yml b/src/licensedcode/data/rules/agpl-3.0_187.yml deleted file mode 100644 index f544d0a1846..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_188.RULE b/src/licensedcode/data/rules/agpl-3.0_188.RULE index 760a8b8e171..1ab626b18c3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_188.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_188.RULE @@ -1 +1,9 @@ -`{{AGPL-3.0-only}}` - {{[GNU Affero General Public License 3.0 only](https://spdx.org/licenses/AGPL-3.0-only.html)}} +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0-only.html +--- + +`{{AGPL-3.0-only}}` - {{[GNU Affero General Public License 3.0 only](https://spdx.org/licenses/AGPL-3.0-only.html)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_188.yml b/src/licensedcode/data/rules/agpl-3.0_188.yml deleted file mode 100644 index 57ae7bc53db..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_188.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0-only.html diff --git a/src/licensedcode/data/rules/agpl-3.0_189.RULE b/src/licensedcode/data/rules/agpl-3.0_189.RULE index 7e897c0120e..20a77f9083d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_189.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_189.RULE @@ -1,2 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/alexjc/neural-enhance/blob/master/LICENSE + - https://img.shields.io/badge/license-AGPL-blue.svg +--- + .. |License Type| image:: https://img.shields.io/badge/license-AGPL-blue.svg :target: https://github.com/alexjc/neural-enhance/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_189.yml b/src/licensedcode/data/rules/agpl-3.0_189.yml deleted file mode 100644 index 6628453f37d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_189.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/alexjc/neural-enhance/blob/master/LICENSE - - https://img.shields.io/badge/license-AGPL-blue.svg diff --git a/src/licensedcode/data/rules/agpl-3.0_19.RULE b/src/licensedcode/data/rules/agpl-3.0_19.RULE index 900b1c25197..403a861b8ef 100644 --- a/src/licensedcode/data/rules/agpl-3.0_19.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_19.RULE @@ -1 +1,7 @@ -AGPL v3.0 +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +AGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_19.yml b/src/licensedcode/data/rules/agpl-3.0_19.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_190.RULE b/src/licensedcode/data/rules/agpl-3.0_190.RULE index aa1d0ad8db3..65889cc47df 100644 --- a/src/licensedcode/data/rules/agpl-3.0_190.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_190.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-AGPL-blue.svg +--- + .. |License Type| image:: https://img.shields.io/badge/license-AGPL-blue.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_190.yml b/src/licensedcode/data/rules/agpl-3.0_190.yml deleted file mode 100644 index 08e69d7b725..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_190.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-AGPL-blue.svg diff --git a/src/licensedcode/data/rules/agpl-3.0_191.RULE b/src/licensedcode/data/rules/agpl-3.0_191.RULE index 29dde81be45..16ee44cf432 100644 --- a/src/licensedcode/data/rules/agpl-3.0_191.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_191.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + license-AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_191.yml b/src/licensedcode/data/rules/agpl-3.0_191.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_192.RULE b/src/licensedcode/data/rules/agpl-3.0_192.RULE index 00c90a25bdf..523e1c33160 100644 --- a/src/licensedcode/data/rules/agpl-3.0_192.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_192.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/alexjc/neural-enhance/blob/master/LICENSE +--- + https://github.com/alexjc/neural-enhance/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_192.yml b/src/licensedcode/data/rules/agpl-3.0_192.yml deleted file mode 100644 index ebcedfecff0..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/alexjc/neural-enhance/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_193.RULE b/src/licensedcode/data/rules/agpl-3.0_193.RULE index c1cd30b6293..a83bb2f3517 100644 --- a/src/licensedcode/data/rules/agpl-3.0_193.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_193.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + The font and related files in this directory are distributed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_193.yml b/src/licensedcode/data/rules/agpl-3.0_193.yml deleted file mode 100644 index 642cc08c997..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0_194.RULE b/src/licensedcode/data/rules/agpl-3.0_194.RULE index 7995fd10009..50733fbdc9a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_194.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_194.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + The font and related files in this directory are distributed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_194.yml b/src/licensedcode/data/rules/agpl-3.0_194.yml deleted file mode 100644 index 642cc08c997..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/agpl-3.0_195.RULE b/src/licensedcode/data/rules/agpl-3.0_195.RULE index cc402b3846f..c3ee0fdcfbd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_195.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_195.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_195.yml b/src/licensedcode/data/rules/agpl-3.0_195.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_196.RULE b/src/licensedcode/data/rules/agpl-3.0_196.RULE index b19d54a63f5..16428a66fdc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_196.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_196.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + licenses { license { name 'GNU Affero General Public License' diff --git a/src/licensedcode/data/rules/agpl-3.0_196.yml b/src/licensedcode/data/rules/agpl-3.0_196.yml deleted file mode 100644 index f263177ba57..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_197.RULE b/src/licensedcode/data/rules/agpl-3.0_197.RULE index f399f1e9fa6..4787148fdfc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_197.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_197.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + license { name 'GNU Affero General Public License' url 'https://www.gnu.org/licenses/agpl-3.0.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_197.yml b/src/licensedcode/data/rules/agpl-3.0_197.yml deleted file mode 100644 index f263177ba57..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_198.RULE b/src/licensedcode/data/rules/agpl-3.0_198.RULE index 50be8abbd38..cd5aef7b9af 100644 --- a/src/licensedcode/data/rules/agpl-3.0_198.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_198.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License The project is licensed under AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_198.yml b/src/licensedcode/data/rules/agpl-3.0_198.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_199.RULE b/src/licensedcode/data/rules/agpl-3.0_199.RULE index 0563965aa72..bd063d9b88f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_199.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_199.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The project is licensed under AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_199.yml b/src/licensedcode/data/rules/agpl-3.0_199.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_2.RULE b/src/licensedcode/data/rules/agpl-3.0_2.RULE index 8ecdad3f922..a14340f38dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html +--- + http://www.fsf.org/licensing/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_2.yml b/src/licensedcode/data/rules/agpl-3.0_2.yml deleted file mode 100644 index 0ddc46310e5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_20.RULE b/src/licensedcode/data/rules/agpl-3.0_20.RULE index c5e0f1a6386..87add01a37b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_20.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_20.RULE @@ -1 +1,7 @@ -AGPL3 +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 90 +--- + +AGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_20.yml b/src/licensedcode/data/rules/agpl-3.0_20.yml deleted file mode 100644 index 1c0cf5daf61..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agpl-3.0_200.RULE b/src/licensedcode/data/rules/agpl-3.0_200.RULE index fbd4afaac1a..392da11d5c5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_200.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_200.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License: AGPL V3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_200.yml b/src/licensedcode/data/rules/agpl-3.0_200.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_201.RULE b/src/licensedcode/data/rules/agpl-3.0_201.RULE index 3aa09f72c1e..bd28683fad7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_201.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_201.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Licence: AGPLV3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_201.yml b/src/licensedcode/data/rules/agpl-3.0_201.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_202.RULE b/src/licensedcode/data/rules/agpl-3.0_202.RULE index 13293117b7c..4b1020eee4b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_202.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_202.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Licence: AGPL V3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_202.yml b/src/licensedcode/data/rules/agpl-3.0_202.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_203.RULE b/src/licensedcode/data/rules/agpl-3.0_203.RULE index 7dec45f5b67..61888819cb2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_203.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_203.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the [GNU AGPL v3] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_203.yml b/src/licensedcode/data/rules/agpl-3.0_203.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_204.RULE b/src/licensedcode/data/rules/agpl-3.0_204.RULE index c51a3d692e0..e93eb9c3ef5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_204.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_204.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + OpenSource (GNU AGPL v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_204.yml b/src/licensedcode/data/rules/agpl-3.0_204.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_205.RULE b/src/licensedcode/data/rules/agpl-3.0_205.RULE index 22c83b9d0e2..12707117609 100644 --- a/src/licensedcode/data/rules/agpl-3.0_205.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_205.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 98 +notes: the extra conditions may or may not conflict with the AGPL +ignorable_urls: + - http://www.gnu.org/ +--- + The program users must agree to the following terms: License notices This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. diff --git a/src/licensedcode/data/rules/agpl-3.0_205.yml b/src/licensedcode/data/rules/agpl-3.0_205.yml deleted file mode 100644 index 4f5d8642e5a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_205.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 98 -notes: the extra conditions may or may not conflict with the AGPL -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/agpl-3.0_206.RULE b/src/licensedcode/data/rules/agpl-3.0_206.RULE index 00c0a4c6bac..9cd37e5e176 100644 --- a/src/licensedcode/data/rules/agpl-3.0_206.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_206.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + license='GNU AGPL v3', \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_206.yml b/src/licensedcode/data/rules/agpl-3.0_206.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_207.RULE b/src/licensedcode/data/rules/agpl-3.0_207.RULE index 1dd1843c189..778c3ebc1b1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_207.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_207.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_207.yml b/src/licensedcode/data/rules/agpl-3.0_207.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_208.RULE b/src/licensedcode/data/rules/agpl-3.0_208.RULE index 7ff03076154..5c86422ce0a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_208.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_208.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +notes: ticket +ignorable_urls: + - http://www.gnu.org/ +--- + The program users must agree to the following terms: License notices diff --git a/src/licensedcode/data/rules/agpl-3.0_208.yml b/src/licensedcode/data/rules/agpl-3.0_208.yml deleted file mode 100644 index 9733de3c5bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_208.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -notes: ticket -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/agpl-3.0_209.RULE b/src/licensedcode/data/rules/agpl-3.0_209.RULE index 87978d2e05e..28fe6ed6935 100644 --- a/src/licensedcode/data/rules/agpl-3.0_209.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_209.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +notes: ticket +ignorable_urls: + - http://www.gnu.org/ +--- + License notices This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_209.yml b/src/licensedcode/data/rules/agpl-3.0_209.yml deleted file mode 100644 index 9733de3c5bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_209.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -notes: ticket -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/agpl-3.0_21.RULE b/src/licensedcode/data/rules/agpl-3.0_21.RULE index 8456436d574..b45f2348920 100644 --- a/src/licensedcode/data/rules/agpl-3.0_21.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_21.RULE @@ -1 +1,7 @@ -AGPLv3 +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 90 +--- + +AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_21.yml b/src/licensedcode/data/rules/agpl-3.0_21.yml deleted file mode 100644 index 1c0cf5daf61..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agpl-3.0_210.RULE b/src/licensedcode/data/rules/agpl-3.0_210.RULE index da2ab5d7d80..dcee1a73cb6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_210.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_210.RULE @@ -1,2 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +notes: ticket +ignorable_urls: + - http://www.gnu.org/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_210.yml b/src/licensedcode/data/rules/agpl-3.0_210.yml deleted file mode 100644 index 9733de3c5bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_210.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -notes: ticket -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/agpl-3.0_211.RULE b/src/licensedcode/data/rules/agpl-3.0_211.RULE index 5225ff9a775..7b94544e5ff 100644 --- a/src/licensedcode/data/rules/agpl-3.0_211.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_211.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU AGPL v3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_211.yml b/src/licensedcode/data/rules/agpl-3.0_211.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_212.RULE b/src/licensedcode/data/rules/agpl-3.0_212.RULE index d2bdbfdeebe..eed6bd93d12 100644 --- a/src/licensedcode/data/rules/agpl-3.0_212.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_212.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + the GNU AGPL v3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_212.yml b/src/licensedcode/data/rules/agpl-3.0_212.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_213.RULE b/src/licensedcode/data/rules/agpl-3.0_213.RULE index 253164f36c5..8f7e65c4e9e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_213.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_213.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 98 +notes: the extra disclaimers and limitation may or may not be in conflict with the AGPL +ignorable_urls: + - http://www.gnu.org/ +--- + //The program users must agree to the following terms: // //Copyright notices diff --git a/src/licensedcode/data/rules/agpl-3.0_213.yml b/src/licensedcode/data/rules/agpl-3.0_213.yml deleted file mode 100644 index 75fe08e5932..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_213.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 98 -notes: the extra disclaimers and limitation may or may not be in conflict with the AGPL -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/agpl-3.0_214.RULE b/src/licensedcode/data/rules/agpl-3.0_214.RULE index 641ac75db64..e932f92f914 100644 --- a/src/licensedcode/data/rules/agpl-3.0_214.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_214.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 98 +ignorable_urls: + - http://www.gnu.org/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. diff --git a/src/licensedcode/data/rules/agpl-3.0_214.yml b/src/licensedcode/data/rules/agpl-3.0_214.yml deleted file mode 100644 index b82819336da..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 98 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/agpl-3.0_215.RULE b/src/licensedcode/data/rules/agpl-3.0_215.RULE index e1ee2f5ae8f..544f2e0c37d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_215.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_215.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + license='GNU AGPL v3.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_215.yml b/src/licensedcode/data/rules/agpl-3.0_215.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_216.RULE b/src/licensedcode/data/rules/agpl-3.0_216.RULE index e2649b0634b..cbb9a93d05a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_216.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_216.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + AGPL v3' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_216.yml b/src/licensedcode/data/rules/agpl-3.0_216.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_217.RULE b/src/licensedcode/data/rules/agpl-3.0_217.RULE index 2f1d898af50..93fb4dbc766 100644 --- a/src/licensedcode/data/rules/agpl-3.0_217.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_217.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU AGPL v3.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_217.yml b/src/licensedcode/data/rules/agpl-3.0_217.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_218.RULE b/src/licensedcode/data/rules/agpl-3.0_218.RULE index 907c8b6ba29..08f51df8d68 100644 --- a/src/licensedcode/data/rules/agpl-3.0_218.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_218.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU AGPL v3+' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_218.yml b/src/licensedcode/data/rules/agpl-3.0_218.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_219.RULE b/src/licensedcode/data/rules/agpl-3.0_219.RULE index 77d944dc270..db7abe1f73b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_219.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_219.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Open Source under GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_219.yml b/src/licensedcode/data/rules/agpl-3.0_219.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_22.RULE b/src/licensedcode/data/rules/agpl-3.0_22.RULE index 7f74842eb20..23535291ffd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_22.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_22.RULE @@ -1 +1,7 @@ -license": "GNU Affero General Public License v3" +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +license": "GNU Affero General Public License v3" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_22.yml b/src/licensedcode/data/rules/agpl-3.0_22.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_220.RULE b/src/licensedcode/data/rules/agpl-3.0_220.RULE index 68c7265b669..e4d60e501fd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_220.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_220.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + https://www.gnu.org/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_220.yml b/src/licensedcode/data/rules/agpl-3.0_220.yml deleted file mode 100644 index 1cb3a1c3f63..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_221.RULE b/src/licensedcode/data/rules/agpl-3.0_221.RULE index 0752e1946b2..344d3978f00 100644 --- a/src/licensedcode/data/rules/agpl-3.0_221.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_221.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU AGPL v3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_221.yml b/src/licensedcode/data/rules/agpl-3.0_221.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_222.RULE b/src/licensedcode/data/rules/agpl-3.0_222.RULE index 984c927cda6..477a437f4b7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_222.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_222.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + # License This project is licensed under the **GNU AGPL v3** \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_222.yml b/src/licensedcode/data/rules/agpl-3.0_222.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_223.RULE b/src/licensedcode/data/rules/agpl-3.0_223.RULE index 6ed9420a550..bd8a9d718ff 100644 --- a/src/licensedcode/data/rules/agpl-3.0_223.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_223.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the **GNU AGPL v3** \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_223.yml b/src/licensedcode/data/rules/agpl-3.0_223.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_224.RULE b/src/licensedcode/data/rules/agpl-3.0_224.RULE index e5736ec676d..57ac4965fbd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_224.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_224.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt + - AGPL-3.0.txt +--- + # License This project is licensed under the **GNU AGPL v3** For full details, please see `LICENSE.txt` and `AGPL-3.0.txt`. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_224.yml b/src/licensedcode/data/rules/agpl-3.0_224.yml deleted file mode 100644 index 9ddb7e59a92..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_224.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt - - AGPL-3.0.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_225.RULE b/src/licensedcode/data/rules/agpl-3.0_225.RULE index 44ef9fa4766..f27cdac0bd1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_225.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_225.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 95 +--- + licensed under GNU AGPL v3.0. This software is probably not suitable for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_225.yml b/src/licensedcode/data/rules/agpl-3.0_225.yml deleted file mode 100644 index 1cb728160e3..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/agpl-3.0_226.RULE b/src/licensedcode/data/rules/agpl-3.0_226.RULE index 0dcf157fd1d..c7d1c99123e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_226.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_226.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/agpl-3.0/ +--- + This project is licensed under the [GNU AGPL v3 License](https://choosealicense.com/licenses/agpl-3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_226.yml b/src/licensedcode/data/rules/agpl-3.0_226.yml deleted file mode 100644 index b2623254864..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_226.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/agpl-3.0/ diff --git a/src/licensedcode/data/rules/agpl-3.0_227.RULE b/src/licensedcode/data/rules/agpl-3.0_227.RULE index 145cd183f14..e1f2f2a38ec 100644 --- a/src/licensedcode/data/rules/agpl-3.0_227.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_227.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the [GNU AGPL v3 License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_227.yml b/src/licensedcode/data/rules/agpl-3.0_227.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_228.RULE b/src/licensedcode/data/rules/agpl-3.0_228.RULE index 8481f7ce11a..87ac7356928 100644 --- a/src/licensedcode/data/rules/agpl-3.0_228.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_228.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt + - AGPL-3.0.txt +--- + This project is licensed under the GNU AGPL v3 For full details, please see LICENSE.txt and AGPL-3.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_228.yml b/src/licensedcode/data/rules/agpl-3.0_228.yml deleted file mode 100644 index 9ddb7e59a92..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_228.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt - - AGPL-3.0.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_229.RULE b/src/licensedcode/data/rules/agpl-3.0_229.RULE index 419486b24bd..707584a9a01 100644 --- a/src/licensedcode/data/rules/agpl-3.0_229.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_229.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + See LICENSE.txt to the root of the program for the GNU AGPL v3.0. you should see README.txt as well, for information on how to use the program, use it in another program, etc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_229.yml b/src/licensedcode/data/rules/agpl-3.0_229.yml deleted file mode 100644 index 37d15335b4a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_229.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_23.RULE b/src/licensedcode/data/rules/agpl-3.0_23.RULE index 81af2ba40e8..7482dd737e5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_23.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_23.RULE @@ -1 +1,7 @@ -This software is offered under the terms of the GNU AFERO GENERAL PUBLIC LICENCE of 2007, +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +This software is offered under the terms of the GNU AFERO GENERAL PUBLIC LICENCE of 2007, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_23.yml b/src/licensedcode/data/rules/agpl-3.0_23.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_230.RULE b/src/licensedcode/data/rules/agpl-3.0_230.RULE index 9a0e2949d71..ef1ef98b0b3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_230.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_230.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + list-of-files-that-applies-to-the-gnu-agpl-v30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_230.yml b/src/licensedcode/data/rules/agpl-3.0_230.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_231.RULE b/src/licensedcode/data/rules/agpl-3.0_231.RULE index 524f5d55028..dca11477e80 100644 --- a/src/licensedcode/data/rules/agpl-3.0_231.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_231.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + List of files that applies to the GNU AGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_231.yml b/src/licensedcode/data/rules/agpl-3.0_231.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_232.RULE b/src/licensedcode/data/rules/agpl-3.0_232.RULE index 01f5e4aa7a3..9fac68aa582 100644 --- a/src/licensedcode/data/rules/agpl-3.0_232.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_232.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html +--- + license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_232.yml b/src/licensedcode/data/rules/agpl-3.0_232.yml deleted file mode 100644 index eb8dd2b7163..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_233.RULE b/src/licensedcode/data/rules/agpl-3.0_233.RULE index 2de38f03c9b..1bd01588294 100644 --- a/src/licensedcode/data/rules/agpl-3.0_233.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_233.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_233.yml b/src/licensedcode/data/rules/agpl-3.0_233.yml deleted file mode 100644 index abe05db4612..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_233.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_234.RULE b/src/licensedcode/data/rules/agpl-3.0_234.RULE index 2f3d5f05568..eb4ef845151 100644 --- a/src/licensedcode/data/rules/agpl-3.0_234.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_234.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html +--- + license http://www.gnu.org/licenses/agpl.html GNU AGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_234.yml b/src/licensedcode/data/rules/agpl-3.0_234.yml deleted file mode 100644 index eb8dd2b7163..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_234.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_235.RULE b/src/licensedcode/data/rules/agpl-3.0_235.RULE index a6390f15ddf..fae77e17821 100644 --- a/src/licensedcode/data/rules/agpl-3.0_235.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_235.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + license https://www.gnu.org/licenses/agpl.html GNU AGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_235.yml b/src/licensedcode/data/rules/agpl-3.0_235.yml deleted file mode 100644 index abe05db4612..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_235.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_236.RULE b/src/licensedcode/data/rules/agpl-3.0_236.RULE index af1e70b78ab..552e6b35e72 100644 --- a/src/licensedcode/data/rules/agpl-3.0_236.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_236.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + is free and open-source software. First-party web code is released under the [GNU AGPL v3](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_236.yml b/src/licensedcode/data/rules/agpl-3.0_236.yml deleted file mode 100644 index 37d15335b4a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_236.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_237.RULE b/src/licensedcode/data/rules/agpl-3.0_237.RULE index 53614795684..f82a61789d1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_237.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_237.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + code is released under the [GNU AGPL v3](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_237.yml b/src/licensedcode/data/rules/agpl-3.0_237.yml deleted file mode 100644 index 37d15335b4a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_237.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_238.RULE b/src/licensedcode/data/rules/agpl-3.0_238.RULE index 0b8ccf72439..69a2903fe7e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_238.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_238.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + originally released under the GNU AGPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_238.yml b/src/licensedcode/data/rules/agpl-3.0_238.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_239.RULE b/src/licensedcode/data/rules/agpl-3.0_239.RULE index 4664be1f999..65ba17d9bac 100644 --- a/src/licensedcode/data/rules/agpl-3.0_239.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_239.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + The source code of the software packages are under the terms of the GNU Affero General Public License version 3 (GNU AGPL v3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_239.yml b/src/licensedcode/data/rules/agpl-3.0_239.yml deleted file mode 100644 index 129cdca7767..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_239.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_24.RULE b/src/licensedcode/data/rules/agpl-3.0_24.RULE index 326d906991e..8517732e98d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_24.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_24.RULE @@ -1 +1,7 @@ -This software is offered under the terms of the GNU AFERO GENERAL PUBLIC LICENSE of 2007, +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +This software is offered under the terms of the GNU AFERO GENERAL PUBLIC LICENSE of 2007, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_24.yml b/src/licensedcode/data/rules/agpl-3.0_24.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_240.RULE b/src/licensedcode/data/rules/agpl-3.0_240.RULE index e2689cce679..175173caf40 100644 --- a/src/licensedcode/data/rules/agpl-3.0_240.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_240.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The code of the web" package is made available under the terms of the GNU Affero General Public License version 3 (GNU AGPL v3) as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_240.yml b/src/licensedcode/data/rules/agpl-3.0_240.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_241.RULE b/src/licensedcode/data/rules/agpl-3.0_241.RULE index 4f633cc080b..b944ffaa3bb 100644 --- a/src/licensedcode/data/rules/agpl-3.0_241.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_241.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + In the case you use the software under the terms of the GNU AGPL v3, the program is provided in the hope hat it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A diff --git a/src/licensedcode/data/rules/agpl-3.0_241.yml b/src/licensedcode/data/rules/agpl-3.0_241.yml deleted file mode 100644 index 129cdca7767..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_241.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_242.RULE b/src/licensedcode/data/rules/agpl-3.0_242.RULE index 593f99ec257..fd6c718f774 100644 --- a/src/licensedcode/data/rules/agpl-3.0_242.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_242.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under GNU AGPL v3 license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_242.yml b/src/licensedcode/data/rules/agpl-3.0_242.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_243.RULE b/src/licensedcode/data/rules/agpl-3.0_243.RULE index 43213d3c6ee..40deae1a760 100644 --- a/src/licensedcode/data/rules/agpl-3.0_243.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_243.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + It is licensed under GNU AGPL v3.0 * You should have received a copy of the license in this archive (see LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_243.yml b/src/licensedcode/data/rules/agpl-3.0_243.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_243.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_244.RULE b/src/licensedcode/data/rules/agpl-3.0_244.RULE index 7dc57bf254e..e5f092e9f38 100644 --- a/src/licensedcode/data/rules/agpl-3.0_244.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_244.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + AGLPv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_244.yml b/src/licensedcode/data/rules/agpl-3.0_244.yml deleted file mode 100644 index 5318b037107..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_244.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_245.RULE b/src/licensedcode/data/rules/agpl-3.0_245.RULE index 98c03b7ce53..038f7c02b03 100644 --- a/src/licensedcode/data/rules/agpl-3.0_245.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_245.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + Open source: Licensed under AGLPv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_245.yml b/src/licensedcode/data/rules/agpl-3.0_245.yml deleted file mode 100644 index 2b9df65f7fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_245.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_246.RULE b/src/licensedcode/data/rules/agpl-3.0_246.RULE index a1a7f384a6b..1dd0fb14e76 100644 --- a/src/licensedcode/data/rules/agpl-3.0_246.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_246.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + under AGLPv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_246.yml b/src/licensedcode/data/rules/agpl-3.0_246.yml deleted file mode 100644 index 2b9df65f7fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_246.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_247.RULE b/src/licensedcode/data/rules/agpl-3.0_247.RULE index 6bd1bf5c7ec..e6da349d230 100644 --- a/src/licensedcode/data/rules/agpl-3.0_247.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_247.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + This code is under the GNU AGPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_247.yml b/src/licensedcode/data/rules/agpl-3.0_247.yml deleted file mode 100644 index 2b9df65f7fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_247.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_248.RULE b/src/licensedcode/data/rules/agpl-3.0_248.RULE index 3ea849b7f1d..8bd95d63ca6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_248.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_248.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + license AGLPv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_248.yml b/src/licensedcode/data/rules/agpl-3.0_248.yml deleted file mode 100644 index 2b9df65f7fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_248.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_249.RULE b/src/licensedcode/data/rules/agpl-3.0_249.RULE index 94c3b2e9f14..30c3eb99572 100644 --- a/src/licensedcode/data/rules/agpl-3.0_249.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_249.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + License: Open-source license AGLPv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_249.yml b/src/licensedcode/data/rules/agpl-3.0_249.yml deleted file mode 100644 index 2b9df65f7fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_249.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_25.RULE b/src/licensedcode/data/rules/agpl-3.0_25.RULE index 76e9015a967..8e5afda8e03 100644 --- a/src/licensedcode/data/rules/agpl-3.0_25.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_25.RULE @@ -1 +1,7 @@ -This software is offered under the 2007 GNU AFERO GENERAL PUBLIC LICENCE. +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +This software is offered under the 2007 GNU AFERO GENERAL PUBLIC LICENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_25.yml b/src/licensedcode/data/rules/agpl-3.0_25.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_250.RULE b/src/licensedcode/data/rules/agpl-3.0_250.RULE index e51a8fc7de2..cb855a4fb52 100644 --- a/src/licensedcode/data/rules/agpl-3.0_250.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_250.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GNU AGLPv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_250.yml b/src/licensedcode/data/rules/agpl-3.0_250.yml deleted file mode 100644 index 5318b037107..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_250.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_251.RULE b/src/licensedcode/data/rules/agpl-3.0_251.RULE index 7a6a4b1c9f9..27cafb67546 100644 --- a/src/licensedcode/data/rules/agpl-3.0_251.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_251.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + Software unter AGLPv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_251.yml b/src/licensedcode/data/rules/agpl-3.0_251.yml deleted file mode 100644 index 2b9df65f7fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_251.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_252.RULE b/src/licensedcode/data/rules/agpl-3.0_252.RULE index e1c4d38353c..a4de183889d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_252.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_252.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +notes: typo in license id +--- + AGLPv3 (GNU Affero General Public License versio 3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_252.yml b/src/licensedcode/data/rules/agpl-3.0_252.yml deleted file mode 100644 index 958c0c9abf5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_252.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_253.RULE b/src/licensedcode/data/rules/agpl-3.0_253.RULE index 12bc6d0596e..c61acd9f7da 100644 --- a/src/licensedcode/data/rules/agpl-3.0_253.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_253.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the terms of the GNU Affero General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_253.yml b/src/licensedcode/data/rules/agpl-3.0_253.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_253.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_254.RULE b/src/licensedcode/data/rules/agpl-3.0_254.RULE index b2ad892b67f..7a3f6aa06fe 100644 --- a/src/licensedcode/data/rules/agpl-3.0_254.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_254.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GNU AGLPv3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_254.yml b/src/licensedcode/data/rules/agpl-3.0_254.yml deleted file mode 100644 index 5318b037107..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_254.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_255.RULE b/src/licensedcode/data/rules/agpl-3.0_255.RULE index cbcc1e803d5..e63becfb1fc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_255.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_255.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + licensed under AGLPv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_255.yml b/src/licensedcode/data/rules/agpl-3.0_255.yml deleted file mode 100644 index 2b9df65f7fd..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_255.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/agpl-3.0_256.RULE b/src/licensedcode/data/rules/agpl-3.0_256.RULE index c06749a4675..c27545e2060 100644 --- a/src/licensedcode/data/rules/agpl-3.0_256.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_256.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Affero General Public License (AGPL) v. 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_256.yml b/src/licensedcode/data/rules/agpl-3.0_256.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_257.RULE b/src/licensedcode/data/rules/agpl-3.0_257.RULE index 7471126e3d8..9e449991fe2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_257.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_257.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/agpl-3.0_257.yml b/src/licensedcode/data/rules/agpl-3.0_257.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_258.RULE b/src/licensedcode/data/rules/agpl-3.0_258.RULE index 1524ff4bf88..63e742cbab7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_258.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_258.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/agpl-3.0_258.yml b/src/licensedcode/data/rules/agpl-3.0_258.yml deleted file mode 100644 index 4edba51752a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_259.RULE b/src/licensedcode/data/rules/agpl-3.0_259.RULE index 6ec6efd6ec5..7d275ca173d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_259.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_259.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/agpl-3.0_259.yml b/src/licensedcode/data/rules/agpl-3.0_259.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_26.RULE b/src/licensedcode/data/rules/agpl-3.0_26.RULE index 49510a37769..d2e2380618d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_26.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is offered under the 2007 GNU AFERO GENERAL PUBLIC LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_26.yml b/src/licensedcode/data/rules/agpl-3.0_26.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_260.RULE b/src/licensedcode/data/rules/agpl-3.0_260.RULE index 6abad21bb28..71c6849462f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_260.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_260.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + 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, version 3 of the License. diff --git a/src/licensedcode/data/rules/agpl-3.0_260.yml b/src/licensedcode/data/rules/agpl-3.0_260.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_261.RULE b/src/licensedcode/data/rules/agpl-3.0_261.RULE index 51fe2e5a742..f9d41d4a349 100644 --- a/src/licensedcode/data/rules/agpl-3.0_261.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_261.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://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, version 3 of the License. diff --git a/src/licensedcode/data/rules/agpl-3.0_261.yml b/src/licensedcode/data/rules/agpl-3.0_261.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_261.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_262.RULE b/src/licensedcode/data/rules/agpl-3.0_262.RULE index 17e68bb5397..d81aadb277c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_262.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_262.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under AGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_262.yml b/src/licensedcode/data/rules/agpl-3.0_262.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_263.RULE b/src/licensedcode/data/rules/agpl-3.0_263.RULE index 9b20e492eb8..3720d56feb7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_263.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_263.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under AGPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_263.yml b/src/licensedcode/data/rules/agpl-3.0_263.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_264.RULE b/src/licensedcode/data/rules/agpl-3.0_264.RULE index 18fb42747b0..d88f61c36c8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_264.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_264.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU Affero General Public License (AGPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_264.yml b/src/licensedcode/data/rules/agpl-3.0_264.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_265.RULE b/src/licensedcode/data/rules/agpl-3.0_265.RULE index 61d98b3c6aa..7da5e592dc2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_265.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_265.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the AGPL v3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_265.yml b/src/licensedcode/data/rules/agpl-3.0_265.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_266.RULE b/src/licensedcode/data/rules/agpl-3.0_266.RULE index 3609987fd86..7cd392c6e24 100644 --- a/src/licensedcode/data/rules/agpl-3.0_266.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_266.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the AGPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_266.yml b/src/licensedcode/data/rules/agpl-3.0_266.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_267.RULE b/src/licensedcode/data/rules/agpl-3.0_267.RULE index 787c0b4f735..4b658ece36b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_267.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_267.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under GNU Affero General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_267.yml b/src/licensedcode/data/rules/agpl-3.0_267.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_268.RULE b/src/licensedcode/data/rules/agpl-3.0_268.RULE index 925feebff7a..14447944fbe 100644 --- a/src/licensedcode/data/rules/agpl-3.0_268.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_268.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under GNU Affero General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_268.yml b/src/licensedcode/data/rules/agpl-3.0_268.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_269.RULE b/src/licensedcode/data/rules/agpl-3.0_269.RULE index c3899f03e0a..a04d7a2d954 100644 --- a/src/licensedcode/data/rules/agpl-3.0_269.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_269.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU Affero General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_269.yml b/src/licensedcode/data/rules/agpl-3.0_269.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_27.RULE b/src/licensedcode/data/rules/agpl-3.0_27.RULE index a56c8a67ea5..d80d97eee50 100644 --- a/src/licensedcode/data/rules/agpl-3.0_27.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_27.RULE @@ -1,3 +1,15 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_27.yml b/src/licensedcode/data/rules/agpl-3.0_27.yml deleted file mode 100644 index f8e2513f152..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_27.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_270.RULE b/src/licensedcode/data/rules/agpl-3.0_270.RULE index 9ebde54e22c..5fd895ad334 100644 --- a/src/licensedcode/data/rules/agpl-3.0_270.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_270.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + is licensed under [GNU Affero General Public License version 3](https://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_270.yml b/src/licensedcode/data/rules/agpl-3.0_270.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_270.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_271.RULE b/src/licensedcode/data/rules/agpl-3.0_271.RULE index 0c0a979e77f..6c8fd3bbade 100644 --- a/src/licensedcode/data/rules/agpl-3.0_271.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_271.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + licensed under [GNU Affero General Public License version 3](https://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_271.yml b/src/licensedcode/data/rules/agpl-3.0_271.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_271.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_272.RULE b/src/licensedcode/data/rules/agpl-3.0_272.RULE index 4a001f1b43a..5ce922d42f4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_272.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_272.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + is licensed under [GNU Affero General Public License version 3](http://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_272.yml b/src/licensedcode/data/rules/agpl-3.0_272.yml deleted file mode 100644 index 129cdca7767..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_272.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_273.RULE b/src/licensedcode/data/rules/agpl-3.0_273.RULE index 82adfc48531..0ea98bd7ab6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_273.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_273.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + licensed under [GNU Affero General Public License version 3](http://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_273.yml b/src/licensedcode/data/rules/agpl-3.0_273.yml deleted file mode 100644 index 129cdca7767..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_273.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_274.RULE b/src/licensedcode/data/rules/agpl-3.0_274.RULE index eb8f0d03af4..8aa51e8ffc2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_274.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_274.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU Affero Public License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_274.yml b/src/licensedcode/data/rules/agpl-3.0_274.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_275.RULE b/src/licensedcode/data/rules/agpl-3.0_275.RULE index a7adbfbcb41..6398904fbd6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_275.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_275.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + AGPLv3 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_275.yml b/src/licensedcode/data/rules/agpl-3.0_275.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_276.RULE b/src/licensedcode/data/rules/agpl-3.0_276.RULE index 40a0b6bcf0f..8e2056e1f3d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_276.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_276.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - AGPL-3.0.LICENSE +--- + AGPL-3.0.LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_276.yml b/src/licensedcode/data/rules/agpl-3.0_276.yml deleted file mode 100644 index 7bfb3bcc391..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_276.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - AGPL-3.0.LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_277.RULE b/src/licensedcode/data/rules/agpl-3.0_277.RULE index dd294ee487e..3a54e95dc0c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_277.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_277.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + made available under the terms of the GNU Affero General Public License (AGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_277.yml b/src/licensedcode/data/rules/agpl-3.0_277.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_277.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_278.RULE b/src/licensedcode/data/rules/agpl-3.0_278.RULE index 35381c33e50..6e1d61eef5c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_278.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_278.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + made available under the terms of the GNU Affero General Public License 3.0 (AGPL 3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_278.yml b/src/licensedcode/data/rules/agpl-3.0_278.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_279.RULE b/src/licensedcode/data/rules/agpl-3.0_279.RULE index 3b1d6ef4f9d..26194056c3c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_279.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_279.RULE @@ -1,3 +1,17 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +notes: minor variant with copyright sign +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/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_279.yml b/src/licensedcode/data/rules/agpl-3.0_279.yml deleted file mode 100644 index c38e4efb3e7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_279.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -notes: minor variant with copyright sign -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/ diff --git a/src/licensedcode/data/rules/agpl-3.0_28.RULE b/src/licensedcode/data/rules/agpl-3.0_28.RULE index 50fc16bb4f0..84d57f9ca2c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_28.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_28.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/agpl.html +--- + is currently distributed under the GNU Affero General Public License https://gnu.org/licenses/agpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_28.yml b/src/licensedcode/data/rules/agpl-3.0_28.yml deleted file mode 100644 index 4d8a06f4446..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_280.RULE b/src/licensedcode/data/rules/agpl-3.0_280.RULE index 4d1dd4781a4..2490e034da1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_280.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_280.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE AGPL 3.0 THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_280.yml b/src/licensedcode/data/rules/agpl-3.0_280.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_280.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_281.RULE b/src/licensedcode/data/rules/agpl-3.0_281.RULE index 4900e5ccbd7..4ed7939d16d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_281.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_281.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE AGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_281.yml b/src/licensedcode/data/rules/agpl-3.0_281.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_282.RULE b/src/licensedcode/data/rules/agpl-3.0_282.RULE index a6f00c4fa85..eedded7a886 100644 --- a/src/licensedcode/data/rules/agpl-3.0_282.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_282.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU Affero General Public License, version 3, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_282.yml b/src/licensedcode/data/rules/agpl-3.0_282.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_283.RULE b/src/licensedcode/data/rules/agpl-3.0_283.RULE index 685dc47ce48..d0829741920 100644 --- a/src/licensedcode/data/rules/agpl-3.0_283.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_283.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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, version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_283.yml b/src/licensedcode/data/rules/agpl-3.0_283.yml deleted file mode 100644 index 4edba51752a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_283.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_284.RULE b/src/licensedcode/data/rules/agpl-3.0_284.RULE index 9838a9a1d5a..0f7dc37f30b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_284.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_284.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://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, version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_284.yml b/src/licensedcode/data/rules/agpl-3.0_284.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_284.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_285.RULE b/src/licensedcode/data/rules/agpl-3.0_285.RULE index 4c42cadc5a8..8cc180cd0aa 100644 --- a/src/licensedcode/data/rules/agpl-3.0_285.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_285.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_285.yml b/src/licensedcode/data/rules/agpl-3.0_285.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_285.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_286.RULE b/src/licensedcode/data/rules/agpl-3.0_286.RULE index 0a1601b28f9..1892e72bc44 100644 --- a/src/licensedcode/data/rules/agpl-3.0_286.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_286.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_286.yml b/src/licensedcode/data/rules/agpl-3.0_286.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_286.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_287.RULE b/src/licensedcode/data/rules/agpl-3.0_287.RULE index 7cf50d2abd6..3e49b155482 100644 --- a/src/licensedcode/data/rules/agpl-3.0_287.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_287.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_287.yml b/src/licensedcode/data/rules/agpl-3.0_287.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_287.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_288.RULE b/src/licensedcode/data/rules/agpl-3.0_288.RULE index faf4127207b..764ce1d9ff5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_288.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_288.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_288.yml b/src/licensedcode/data/rules/agpl-3.0_288.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_289.RULE b/src/licensedcode/data/rules/agpl-3.0_289.RULE index af86a294a98..2dd7b712a83 100644 --- a/src/licensedcode/data/rules/agpl-3.0_289.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_289.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + GNU AFFERO GENERAL PUBLIC LICENSE 3.0 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_289.yml b/src/licensedcode/data/rules/agpl-3.0_289.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_289.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_29.RULE b/src/licensedcode/data/rules/agpl-3.0_29.RULE index 43da187992e..d248996ead1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_29.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_29.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the @@ -18,4 +25,4 @@ 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. +programs; see section 13 for the specific requirements. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_29.yml b/src/licensedcode/data/rules/agpl-3.0_29.yml deleted file mode 100644 index 3991d9b0a77..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_290.RULE b/src/licensedcode/data/rules/agpl-3.0_290.RULE index 0f4e04ef719..3b77b03d384 100644 --- a/src/licensedcode/data/rules/agpl-3.0_290.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_290.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License : AGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_290.yml b/src/licensedcode/data/rules/agpl-3.0_290.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_291.RULE b/src/licensedcode/data/rules/agpl-3.0_291.RULE index d86f7e3a472..e8d60d78bf5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_291.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_291.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_291.yml b/src/licensedcode/data/rules/agpl-3.0_291.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_292.RULE b/src/licensedcode/data/rules/agpl-3.0_292.RULE index 6884146efbb..64e6da530b1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_292.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_292.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_292.yml b/src/licensedcode/data/rules/agpl-3.0_292.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_293.RULE b/src/licensedcode/data/rules/agpl-3.0_293.RULE index 4da01510da1..4a44cba561d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_293.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_293.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_293.yml b/src/licensedcode/data/rules/agpl-3.0_293.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_294.RULE b/src/licensedcode/data/rules/agpl-3.0_294.RULE index fe4269fb588..40adc3678ee 100644 --- a/src/licensedcode/data/rules/agpl-3.0_294.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_294.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Affero GPL, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_294.yml b/src/licensedcode/data/rules/agpl-3.0_294.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_295.RULE b/src/licensedcode/data/rules/agpl-3.0_295.RULE index 1fcbe6976bc..94303ba6ee8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_295.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_295.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/AGPL-3.0 + - https://oss.oracle.com/pipermail/bdb/2013-June/000056.html + - https://www.gnu.org/licenses/agpl-3.0.html +--- + Please note that some versions of Berkeley DB 6+ are under the GNU Affero General Public License, version 3: https://oss.oracle.com/pipermail/bdb/2013-June/000056.html diff --git a/src/licensedcode/data/rules/agpl-3.0_295.yml b/src/licensedcode/data/rules/agpl-3.0_295.yml deleted file mode 100644 index a84082b1032..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_295.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/AGPL-3.0 - - https://oss.oracle.com/pipermail/bdb/2013-June/000056.html - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_296.RULE b/src/licensedcode/data/rules/agpl-3.0_296.RULE index 0972c8aa5b5..afc3c8f86ac 100644 --- a/src/licensedcode/data/rules/agpl-3.0_296.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_296.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +notes: seen in Mattermost +--- + The software is released under the terms of the GNU Affero General Public License, version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_296.yml b/src/licensedcode/data/rules/agpl-3.0_296.yml deleted file mode 100644 index bf265d055b9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_296.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -notes: seen in Mattermost diff --git a/src/licensedcode/data/rules/agpl-3.0_297.RULE b/src/licensedcode/data/rules/agpl-3.0_297.RULE index c692a11ff97..12113a15dd8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_297.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_297.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +notes: seen in Mattermost +--- + The software is released under the terms of the GNU Affero General Public License, version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_297.yml b/src/licensedcode/data/rules/agpl-3.0_297.yml deleted file mode 100644 index bf265d055b9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_297.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -notes: seen in Mattermost diff --git a/src/licensedcode/data/rules/agpl-3.0_298.RULE b/src/licensedcode/data/rules/agpl-3.0_298.RULE index d1b105649cc..c3fe8f7f842 100644 --- a/src/licensedcode/data/rules/agpl-3.0_298.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_298.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_298.yml b/src/licensedcode/data/rules/agpl-3.0_298.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_299.RULE b/src/licensedcode/data/rules/agpl-3.0_299.RULE index e8c47e44e68..4e1d627f5f3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_299.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_299.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE AGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_299.yml b/src/licensedcode/data/rules/agpl-3.0_299.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_3.RULE b/src/licensedcode/data/rules/agpl-3.0_3.RULE index 32674c9f326..79112cb0118 100644 --- a/src/licensedcode/data/rules/agpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +notes: Name and Url combination +ignorable_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html +--- + GNU Affero General Public License v3 http://www.fsf.org/licensing/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_3.yml b/src/licensedcode/data/rules/agpl-3.0_3.yml deleted file mode 100644 index b61e5e728e9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -notes: Name and Url combination -ignorable_urls: - - http://www.fsf.org/licensing/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_30.RULE b/src/licensedcode/data/rules/agpl-3.0_30.RULE index bf564d63fce..6e40e3d01d6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_30.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_30.yml b/src/licensedcode/data/rules/agpl-3.0_30.yml deleted file mode 100644 index 3991d9b0a77..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_300.RULE b/src/licensedcode/data/rules/agpl-3.0_300.RULE index c95add41bb2..306084ff09f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_300.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_300.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Affero General Public License version 3 (GNU AGPL v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_300.yml b/src/licensedcode/data/rules/agpl-3.0_300.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_301.RULE b/src/licensedcode/data/rules/agpl-3.0_301.RULE index 1ee63906e0a..f4318ee3cf5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_301.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_301.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Seen in monit at https://bitbucket.org/tildeslash/monit +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License version 3. * diff --git a/src/licensedcode/data/rules/agpl-3.0_301.yml b/src/licensedcode/data/rules/agpl-3.0_301.yml deleted file mode 100644 index 7b179134fd1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_301.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Seen in monit at https://bitbucket.org/tildeslash/monit -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_302.RULE b/src/licensedcode/data/rules/agpl-3.0_302.RULE index 1ccb2f325b4..dbc38e2aff7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_302.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_302.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU Affero License v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_302.yml b/src/licensedcode/data/rules/agpl-3.0_302.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_303.RULE b/src/licensedcode/data/rules/agpl-3.0_303.RULE index 831e7457946..311fba4c2a5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_303.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_303.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under [AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_303.yml b/src/licensedcode/data/rules/agpl-3.0_303.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_303.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_304.RULE b/src/licensedcode/data/rules/agpl-3.0_304.RULE index 34a06ef9718..1ae6e5ea749 100644 --- a/src/licensedcode/data/rules/agpl-3.0_304.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_304.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under [AGPL-3.0-only] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_304.yml b/src/licensedcode/data/rules/agpl-3.0_304.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_305.RULE b/src/licensedcode/data/rules/agpl-3.0_305.RULE index a61593b7929..8da9b1c7c4a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_305.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_305.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released under [AGPL-3.0-only](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_305.yml b/src/licensedcode/data/rules/agpl-3.0_305.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_305.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_306.RULE b/src/licensedcode/data/rules/agpl-3.0_306.RULE index 3422b8ada2f..082504e778f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_306.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_306.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the AGPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_306.yml b/src/licensedcode/data/rules/agpl-3.0_306.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_306.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_307.RULE b/src/licensedcode/data/rules/agpl-3.0_307.RULE index 59ce78f0809..30882aaab4e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_307.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_307.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the AGPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_307.yml b/src/licensedcode/data/rules/agpl-3.0_307.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_308.RULE b/src/licensedcode/data/rules/agpl-3.0_308.RULE index cf68ee7be97..24651487cb7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_308.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_308.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + AGPL License:** \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_308.yml b/src/licensedcode/data/rules/agpl-3.0_308.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_308.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_309.RULE b/src/licensedcode/data/rules/agpl-3.0_309.RULE index be1a84d3f19..32f80b7abe9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_309.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_309.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + the GNU Affero General Public License (AGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_309.yml b/src/licensedcode/data/rules/agpl-3.0_309.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_31.RULE b/src/licensedcode/data/rules/agpl-3.0_31.RULE index b4ca130fe58..e18393b72e6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_31.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_31.RULE @@ -1,5 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + LICENSE Most MongoDB source files (src/mongo folder and below) are made available under the terms of the GNU Affero General Public License (GNU AGPLv3). See - individual files for details. + individual files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_31.yml b/src/licensedcode/data/rules/agpl-3.0_31.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_310.RULE b/src/licensedcode/data/rules/agpl-3.0_310.RULE index 28659202240..93f05cb4ef9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_310.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_310.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License This project is licensed under the AGPL v3 license, see LICENSE.txt (./LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_310.yml b/src/licensedcode/data/rules/agpl-3.0_310.yml deleted file mode 100644 index 37d15335b4a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_310.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_311.RULE b/src/licensedcode/data/rules/agpl-3.0_311.RULE index d74a10aa893..699e5d6eb33 100644 --- a/src/licensedcode/data/rules/agpl-3.0_311.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_311.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License This project is licensed under the AGPL v3 license, see LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_311.yml b/src/licensedcode/data/rules/agpl-3.0_311.yml deleted file mode 100644 index 37d15335b4a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_311.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_312.RULE b/src/licensedcode/data/rules/agpl-3.0_312.RULE index ccb45ee8720..7bc5f86e7dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_312.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_312.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This project is licensed under the AGPL v3 license, see LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_312.yml b/src/licensedcode/data/rules/agpl-3.0_312.yml deleted file mode 100644 index 37d15335b4a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_312.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_313.RULE b/src/licensedcode/data/rules/agpl-3.0_313.RULE index 1fb4913bab3..800eb9f749c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_313.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_313.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License This project is licensed under the AGPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_313.yml b/src/licensedcode/data/rules/agpl-3.0_313.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_314.RULE b/src/licensedcode/data/rules/agpl-3.0_314.RULE index 42995acadfc..255109149f7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_314.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_314.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license for this project is AGPL-3.0-only (LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_314.yml b/src/licensedcode/data/rules/agpl-3.0_314.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_314.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_315.RULE b/src/licensedcode/data/rules/agpl-3.0_315.RULE index ae62daecaea..00c3b89cce1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_315.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_315.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_315.yml b/src/licensedcode/data/rules/agpl-3.0_315.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_315.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_316.RULE b/src/licensedcode/data/rules/agpl-3.0_316.RULE index da95476f8fa..05e2e490f50 100644 --- a/src/licensedcode/data/rules/agpl-3.0_316.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_316.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under the AGPL-v3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_316.yml b/src/licensedcode/data/rules/agpl-3.0_316.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_316.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_317.RULE b/src/licensedcode/data/rules/agpl-3.0_317.RULE index 88bead378d4..01a50c3ac6e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_317.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_317.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under the # strong AGPL-v3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_317.yml b/src/licensedcode/data/rules/agpl-3.0_317.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_318.RULE b/src/licensedcode/data/rules/agpl-3.0_318.RULE index f94e5b81a88..29edabdd13e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_318.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_318.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This repository is licensed under [AGPL-3.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_318.yml b/src/licensedcode/data/rules/agpl-3.0_318.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_319.RULE b/src/licensedcode/data/rules/agpl-3.0_319.RULE index 14de0436030..5ca525d8334 100644 --- a/src/licensedcode/data/rules/agpl-3.0_319.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_319.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This repository is licensed under [AGPL-3.0](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_319.yml b/src/licensedcode/data/rules/agpl-3.0_319.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_319.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_32.RULE b/src/licensedcode/data/rules/agpl-3.0_32.RULE index d37171cb0ad..b5570c2c772 100644 --- a/src/licensedcode/data/rules/agpl-3.0_32.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_32.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + are made available under the terms of the GNU Affero General Public License (GNU AGPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_32.yml b/src/licensedcode/data/rules/agpl-3.0_32.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_320.RULE b/src/licensedcode/data/rules/agpl-3.0_320.RULE index a6c7ddd02dd..478403241bf 100644 --- a/src/licensedcode/data/rules/agpl-3.0_320.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_320.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under [AGPL-3.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_320.yml b/src/licensedcode/data/rules/agpl-3.0_320.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_320.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_321.RULE b/src/licensedcode/data/rules/agpl-3.0_321.RULE index c48608ffabf..270a568eab0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_321.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_321.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under [AGPL-3.0](/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_321.yml b/src/licensedcode/data/rules/agpl-3.0_321.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_321.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_322.RULE b/src/licensedcode/data/rules/agpl-3.0_322.RULE index 43bac41ef60..41621fd012c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_322.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_322.RULE @@ -1,2 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +--- + * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU Affero General Public License version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_322.yml b/src/licensedcode/data/rules/agpl-3.0_322.yml deleted file mode 100644 index aab3d541a4d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_322.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-3.0_323.RULE b/src/licensedcode/data/rules/agpl-3.0_323.RULE index f56173f6368..0307b0fe861 100644 --- a/src/licensedcode/data/rules/agpl-3.0_323.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_323.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + adaptations are AGPLv3 licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_323.yml b/src/licensedcode/data/rules/agpl-3.0_323.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_323.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_324.RULE b/src/licensedcode/data/rules/agpl-3.0_324.RULE index 04c6547f873..6c3a0789091 100644 --- a/src/licensedcode/data/rules/agpl-3.0_324.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_324.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + AGPLv3 licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_324.yml b/src/licensedcode/data/rules/agpl-3.0_324.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_324.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_325.RULE b/src/licensedcode/data/rules/agpl-3.0_325.RULE index b31bd2e7166..597390400ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_325.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_325.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + The source code of the software packages are under the terms of the GNU Affero General Public License version 3 (GNU AGPL v3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_325.yml b/src/licensedcode/data/rules/agpl-3.0_325.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_325.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_326.RULE b/src/licensedcode/data/rules/agpl-3.0_326.RULE index d303d468c63..686ff2fc53b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_326.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_326.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses +--- + Copyright / Licence Copyright GNU AGPL. Email me if you need another licence. @@ -12,5 +21,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public Licence for more details. You should have received a copy of the GNU Affero General Public Licence -along with this program. If not, see https://www.gnu.org/licenses/. - +along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_326.yml b/src/licensedcode/data/rules/agpl-3.0_326.yml deleted file mode 100644 index 575b3529e0f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_326.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_327.RULE b/src/licensedcode/data/rules/agpl-3.0_327.RULE index 1b95d04c23f..2e216487987 100644 --- a/src/licensedcode/data/rules/agpl-3.0_327.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_327.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + In the case you use the software under the terms of the GNU AGPL v3, the program is provided in the hope hat it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A diff --git a/src/licensedcode/data/rules/agpl-3.0_327.yml b/src/licensedcode/data/rules/agpl-3.0_327.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_327.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_328.RULE b/src/licensedcode/data/rules/agpl-3.0_328.RULE index ebb33429ddb..4ed9a479d40 100644 --- a/src/licensedcode/data/rules/agpl-3.0_328.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_328.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public Licence as @@ -8,4 +16,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public Licence for more details. You should have received a copy of the GNU Affero General Public Licence -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_328.yml b/src/licensedcode/data/rules/agpl-3.0_328.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_328.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_329.RULE b/src/licensedcode/data/rules/agpl-3.0_329.RULE index 59a818a077d..8778af18167 100644 --- a/src/licensedcode/data/rules/agpl-3.0_329.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_329.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + You can use, redistribute, and/or modify this code under the terms of the GNU Affero General Public License version 3. diff --git a/src/licensedcode/data/rules/agpl-3.0_329.yml b/src/licensedcode/data/rules/agpl-3.0_329.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_329.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_33.RULE b/src/licensedcode/data/rules/agpl-3.0_33.RULE index 408bf796b7b..1b1703fdc3f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_33.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_33.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + available under the terms of the GNU Affero General Public License (GNU AGPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_33.yml b/src/licensedcode/data/rules/agpl-3.0_33.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_330.RULE b/src/licensedcode/data/rules/agpl-3.0_330.RULE index 0c6abf6d561..06982d4cfdd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_330.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_330.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses +--- + Copyright / license Copyright GNU AGPL. Email me if you need another license. @@ -12,5 +21,4 @@ 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 https://www.gnu.org/licenses/. - +along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_330.yml b/src/licensedcode/data/rules/agpl-3.0_330.yml deleted file mode 100644 index 458660d3aee..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_330.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_331.RULE b/src/licensedcode/data/rules/agpl-3.0_331.RULE index a6a87395a5d..ef4fc265fb7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_331.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_331.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://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, # version 3, as published by the Free Software Foundation. @@ -12,4 +20,4 @@ # # # Licensed under the terms of the GNU Affero General Public License -# version 3 +# version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_331.yml b/src/licensedcode/data/rules/agpl-3.0_331.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_331.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_332.RULE b/src/licensedcode/data/rules/agpl-3.0_332.RULE index 2715b8fb1f3..dfa4593a9f1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_332.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_332.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License diff --git a/src/licensedcode/data/rules/agpl-3.0_332.yml b/src/licensedcode/data/rules/agpl-3.0_332.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_332.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_333.RULE b/src/licensedcode/data/rules/agpl-3.0_333.RULE index 7f436ff81cd..f2f9327cd7c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_333.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_333.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public license as published by the Free Software Foundation, either version 3 of the license, or (at @@ -9,5 +17,4 @@ 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 . If not, see https://www.gnu.org/licenses/. - +along with this . If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_333.yml b/src/licensedcode/data/rules/agpl-3.0_333.yml deleted file mode 100644 index 78e75193933..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_333.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_334.RULE b/src/licensedcode/data/rules/agpl-3.0_334.RULE index 9bfebc77d4d..38e025dca39 100644 --- a/src/licensedcode/data/rules/agpl-3.0_334.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_334.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * The JavaScript code in this page is free software: you can redistribute it * and/or modify it under the terms of the GNU Affero General Public License * (GNU AGPL) as published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0_334.yml b/src/licensedcode/data/rules/agpl-3.0_334.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_334.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_335.RULE b/src/licensedcode/data/rules/agpl-3.0_335.RULE index d4ef62b6739..57540949f12 100644 --- a/src/licensedcode/data/rules/agpl-3.0_335.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_335.RULE @@ -1,3 +1,17 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/agpl.html +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 (https://www.gnu.org/licenses/agpl.html) diff --git a/src/licensedcode/data/rules/agpl-3.0_335.yml b/src/licensedcode/data/rules/agpl-3.0_335.yml deleted file mode 100644 index f9599359d51..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_335.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_336.RULE b/src/licensedcode/data/rules/agpl-3.0_336.RULE index 53642f393aa..d0486c6d510 100644 --- a/src/licensedcode/data/rules/agpl-3.0_336.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_336.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by the Free Software Foundation, either version 3 of the @@ -18,4 +26,4 @@ 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. +programs; see section 13 for the specific requirements. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_336.yml b/src/licensedcode/data/rules/agpl-3.0_336.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_337.RULE b/src/licensedcode/data/rules/agpl-3.0_337.RULE index 0f41416c09e..225ab45ec88 100644 --- a/src/licensedcode/data/rules/agpl-3.0_337.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_337.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public Licence as published by the Free Software Foundation, either version 3 of the Licence, or (at @@ -9,5 +17,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public Licence for more details. You should have received a copy of the GNU Affero General Public Licence -along with this . If not, see https://www.gnu.org/licenses/. - +along with this . If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_337.yml b/src/licensedcode/data/rules/agpl-3.0_337.yml deleted file mode 100644 index 78e75193933..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_337.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_338.RULE b/src/licensedcode/data/rules/agpl-3.0_338.RULE index ab0d2b76e9c..107441e10b3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_338.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_338.RULE @@ -1,3 +1,18 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: oodoo agpl +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ +--- + OpenERP is published under the GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3), as included below. Some external libraries and contributions bundled with OpenERP may be published under other AGPLv3-compatible licenses. For @@ -666,4 +681,4 @@ 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_338.yml b/src/licensedcode/data/rules/agpl-3.0_338.yml deleted file mode 100644 index 4e09eb08009..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_338.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: oodoo agpl -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_339.RULE b/src/licensedcode/data/rules/agpl-3.0_339.RULE index 3ec5d4e7435..2643c3b4b26 100644 --- a/src/licensedcode/data/rules/agpl-3.0_339.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_339.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: AGPLv3 The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure @@ -650,4 +658,4 @@ License: AGPLv3 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_339.yml b/src/licensedcode/data/rules/agpl-3.0_339.yml deleted file mode 100644 index d4a136d7b71..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_34.RULE b/src/licensedcode/data/rules/agpl-3.0_34.RULE index 62ca1bf3276..f5f8821cc7a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_34.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU Affero General Public License (GNU AGPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_34.yml b/src/licensedcode/data/rules/agpl-3.0_34.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_340.RULE b/src/licensedcode/data/rules/agpl-3.0_340.RULE index f71a7953cf5..605c73c6b74 100644 --- a/src/licensedcode/data/rules/agpl-3.0_340.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_340.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +notes: https://github.com/balupton/jquery-history/tree/35d2afd33390d1678bb9da669a9bf77cef1a5d06 +ignorable_urls: + - http://github.com/balupton/jquery-history/blob/master/COPYING.txt + - https://www.gnu.org/licenses/agpl-3.0.html +--- + * jQuery History is free software; You can redistribute it and/or modify it under the terms of * the GNU Affero General Public License version 3 as published by the Free Software Foundation. * You don't have to do anything special to accept the license and you don’t have to notify diff --git a/src/licensedcode/data/rules/agpl-3.0_340.yml b/src/licensedcode/data/rules/agpl-3.0_340.yml deleted file mode 100644 index baea6c619b4..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_340.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -notes: https://github.com/balupton/jquery-history/tree/35d2afd33390d1678bb9da669a9bf77cef1a5d06 -ignorable_urls: - - http://github.com/balupton/jquery-history/blob/master/COPYING.txt - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_341.RULE b/src/licensedcode/data/rules/agpl-3.0_341.RULE index 59b1883970b..c4da74377c5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_341.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_341.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + project licensed under the terms of the AGPL license - `The GNU Affero General Public License v3.0 ` \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_341.yml b/src/licensedcode/data/rules/agpl-3.0_341.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_341.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_342.RULE b/src/licensedcode/data/rules/agpl-3.0_342.RULE index 85024a80439..fc33c72a08b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_342.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_342.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + //You should have received a copy of the GNU Affero General Public License //along with this program. If not, see . // diff --git a/src/licensedcode/data/rules/agpl-3.0_342.yml b/src/licensedcode/data/rules/agpl-3.0_342.yml deleted file mode 100644 index 1046dcb26f8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_342.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_343.RULE b/src/licensedcode/data/rules/agpl-3.0_343.RULE index e1257ba7332..ff80e2ebfa4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_343.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_343.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/AGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # The source code of this program is made available # under the terms of the GNU Affero General Public License version 3 # (GNU AGPL V3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_343.yml b/src/licensedcode/data/rules/agpl-3.0_343.yml deleted file mode 100644 index e0952a8ea00..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_343.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/AGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_344.RULE b/src/licensedcode/data/rules/agpl-3.0_344.RULE index 83615b0c279..b22a4f3ab5f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_344.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_344.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License, version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_344.yml b/src/licensedcode/data/rules/agpl-3.0_344.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_344.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_345.RULE b/src/licensedcode/data/rules/agpl-3.0_345.RULE index 83384922bb4..ca9fbd144dc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_345.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_345.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + @license GNU Affero General Public License version 3 {@link https://www.gnu.org/licenses/agpl-3.0.html} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_345.yml b/src/licensedcode/data/rules/agpl-3.0_345.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_345.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_346.RULE b/src/licensedcode/data/rules/agpl-3.0_346.RULE index ae98ac33a49..9f38203a6f2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_346.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_346.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Seen in monit at https://bitbucket.org/tildeslash/monit +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 Affero General Public License version 3. * diff --git a/src/licensedcode/data/rules/agpl-3.0_346.yml b/src/licensedcode/data/rules/agpl-3.0_346.yml deleted file mode 100644 index 02cb3fa2524..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_346.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Seen in monit at https://bitbucket.org/tildeslash/monit -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_347.RULE b/src/licensedcode/data/rules/agpl-3.0_347.RULE index 175ef9f522d..ca96020940c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_347.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_347.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://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, version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0_347.yml b/src/licensedcode/data/rules/agpl-3.0_347.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_347.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_348.RULE b/src/licensedcode/data/rules/agpl-3.0_348.RULE index 68e04473107..b8cc9bdf2f4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_348.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_348.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License, version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_348.yml b/src/licensedcode/data/rules/agpl-3.0_348.yml deleted file mode 100644 index 1f9a5b2ebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_348.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_349.RULE b/src/licensedcode/data/rules/agpl-3.0_349.RULE index eceeee04998..86bc2545b04 100644 --- a/src/licensedcode/data/rules/agpl-3.0_349.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_349.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + distributed under the terms of the AGPLv3 license (https://www.gnu.org/licenses/agpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_349.yml b/src/licensedcode/data/rules/agpl-3.0_349.yml deleted file mode 100644 index f41022d845b..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_349.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_35.RULE b/src/licensedcode/data/rules/agpl-3.0_35.RULE index fea895675c9..aa6a726a153 100644 --- a/src/licensedcode/data/rules/agpl-3.0_35.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_35.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, version 3 of diff --git a/src/licensedcode/data/rules/agpl-3.0_35.yml b/src/licensedcode/data/rules/agpl-3.0_35.yml deleted file mode 100644 index 3991d9b0a77..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_350.RULE b/src/licensedcode/data/rules/agpl-3.0_350.RULE index b1ba98c9e4c..a5dde4f8d2e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_350.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_350.RULE @@ -1 +1,9 @@ -is an open source project, licenced under "https://www.gnu.org/licenses/agpl-3.0.html">version 3 of the Affero General Public Licence +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + +is an open source project, licenced under "https://www.gnu.org/licenses/agpl-3.0.html">version 3 of the Affero General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_350.yml b/src/licensedcode/data/rules/agpl-3.0_350.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_350.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_351.RULE b/src/licensedcode/data/rules/agpl-3.0_351.RULE index 241b484ab51..4a109d6f1ba 100644 --- a/src/licensedcode/data/rules/agpl-3.0_351.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_351.RULE @@ -1,3 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_351.yml b/src/licensedcode/data/rules/agpl-3.0_351.yml deleted file mode 100644 index 2c92712c6dc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_351.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_352.RULE b/src/licensedcode/data/rules/agpl-3.0_352.RULE index 25885bd9b81..10b5aa88fbe 100644 --- a/src/licensedcode/data/rules/agpl-3.0_352.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_352.RULE @@ -1,3 +1,16 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +notes: uses an https URL +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/ +--- + GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 diff --git a/src/licensedcode/data/rules/agpl-3.0_352.yml b/src/licensedcode/data/rules/agpl-3.0_352.yml deleted file mode 100644 index 72d7ad35b66..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_352.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -notes: uses an https URL -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/ diff --git a/src/licensedcode/data/rules/agpl-3.0_353.RULE b/src/licensedcode/data/rules/agpl-3.0_353.RULE index d8ca518d312..c08960378c6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_353.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_353.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Licensing = "Licensed under the GNU Affero Public License 3.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_353.yml b/src/licensedcode/data/rules/agpl-3.0_353.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_353.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_354.RULE b/src/licensedcode/data/rules/agpl-3.0_354.RULE index 94410f65299..6728ecc0be8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_354.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_354.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the GNU Affero General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_354.yml b/src/licensedcode/data/rules/agpl-3.0_354.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_354.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_355.RULE b/src/licensedcode/data/rules/agpl-3.0_355.RULE index 2a04e559cf4..21cf0fd9963 100644 --- a/src/licensedcode/data/rules/agpl-3.0_355.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_355.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under GNU Affero General Public License version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_355.yml b/src/licensedcode/data/rules/agpl-3.0_355.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_355.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_356.RULE b/src/licensedcode/data/rules/agpl-3.0_356.RULE index 4863ab973c4..7f7e1450508 100644 --- a/src/licensedcode/data/rules/agpl-3.0_356.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_356.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + # License **Unless specified otherwise**, analyzers are released under the AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_356.yml b/src/licensedcode/data/rules/agpl-3.0_356.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_356.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_357.RULE b/src/licensedcode/data/rules/agpl-3.0_357.RULE index 79fd53b1c1d..e01635ecc87 100644 --- a/src/licensedcode/data/rules/agpl-3.0_357.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_357.RULE @@ -1 +1,6 @@ -{{AGPL-3.0 GNU Affero General Public License v3.0}} +--- +license_expression: agpl-3.0 +is_license_reference: yes +--- + +{{AGPL-3.0 GNU Affero General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_357.yml b/src/licensedcode/data/rules/agpl-3.0_357.yml deleted file mode 100644 index 82e09014aed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_357.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/agpl-3.0_358.RULE b/src/licensedcode/data/rules/agpl-3.0_358.RULE index 948dfda64a8..01b9f9ac85d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_358.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_358.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Affero General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_358.yml b/src/licensedcode/data/rules/agpl-3.0_358.yml deleted file mode 100644 index 9500b4347af..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_358.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0_359.RULE b/src/licensedcode/data/rules/agpl-3.0_359.RULE index 96c3db97d40..53a9c622a37 100644 --- a/src/licensedcode/data/rules/agpl-3.0_359.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_359.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Affero General Public License v3.0 AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_359.yml b/src/licensedcode/data/rules/agpl-3.0_359.yml deleted file mode 100644 index 9500b4347af..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_359.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0_36.RULE b/src/licensedcode/data/rules/agpl-3.0_36.RULE index 5768899ad0f..f7262cd72e3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_36.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_36.RULE @@ -1,2 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is free software you can redistribute it and or modify it under the terms of the GNU Affero General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_36.yml b/src/licensedcode/data/rules/agpl-3.0_36.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_360.RULE b/src/licensedcode/data/rules/agpl-3.0_360.RULE index 5c2b74d8a74..cf155d5db2b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_360.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_360.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_360.yml b/src/licensedcode/data/rules/agpl-3.0_360.yml deleted file mode 100644 index 9500b4347af..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_360.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0_361.RULE b/src/licensedcode/data/rules/agpl-3.0_361.RULE index 70b701919a3..6ed3dbe70dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_361.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_361.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Affero General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_361.yml b/src/licensedcode/data/rules/agpl-3.0_361.yml deleted file mode 100644 index 9500b4347af..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_361.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0_362.RULE b/src/licensedcode/data/rules/agpl-3.0_362.RULE index 650b7ff1b88..a3d69d95f7c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_362.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_362.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Affero General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_362.yml b/src/licensedcode/data/rules/agpl-3.0_362.yml deleted file mode 100644 index 985b91977b5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_362.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0_363.RULE b/src/licensedcode/data/rules/agpl-3.0_363.RULE index 60024445597..76d7aae4ad0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_363.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_363.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Affero General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_363.yml b/src/licensedcode/data/rules/agpl-3.0_363.yml deleted file mode 100644 index 985b91977b5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_363.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0_364.RULE b/src/licensedcode/data/rules/agpl-3.0_364.RULE index 806bd718b4b..5b0a85bdfe4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_364.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_364.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AGPL-3.0-only GNU Affero General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_364.yml b/src/licensedcode/data/rules/agpl-3.0_364.yml deleted file mode 100644 index 985b91977b5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_364.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0_365.RULE b/src/licensedcode/data/rules/agpl-3.0_365.RULE index 438a6de1f15..12e6417f380 100644 --- a/src/licensedcode/data/rules/agpl-3.0_365.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_365.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Affero General Public License v3.0 only AGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_365.yml b/src/licensedcode/data/rules/agpl-3.0_365.yml deleted file mode 100644 index 985b91977b5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_365.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0_366.RULE b/src/licensedcode/data/rules/agpl-3.0_366.RULE index 1e6cbee1065..6bddf10fe5a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_366.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_366.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Affero General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_366.yml b/src/licensedcode/data/rules/agpl-3.0_366.yml deleted file mode 100644 index 53d514a49ef..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_366.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0_367.RULE b/src/licensedcode/data/rules/agpl-3.0_367.RULE index 3c23d3b458a..3f7f186d6c1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_367.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_367.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_367.yml b/src/licensedcode/data/rules/agpl-3.0_367.yml deleted file mode 100644 index 53d514a49ef..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_367.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0_368.RULE b/src/licensedcode/data/rules/agpl-3.0_368.RULE index 3dfc9049880..11a0f24e778 100644 --- a/src/licensedcode/data/rules/agpl-3.0_368.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_368.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Affero General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_368.yml b/src/licensedcode/data/rules/agpl-3.0_368.yml deleted file mode 100644 index 53d514a49ef..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_368.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0_369.RULE b/src/licensedcode/data/rules/agpl-3.0_369.RULE index a2f2b52e61c..f7222247ba0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_369.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_369.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + apglv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_369.yml b/src/licensedcode/data/rules/agpl-3.0_369.yml deleted file mode 100644 index 7c002c26aa8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_369.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_37.RULE b/src/licensedcode/data/rules/agpl-3.0_37.RULE index 2a5f42c3a5b..71ecb18ab02 100644 --- a/src/licensedcode/data/rules/agpl-3.0_37.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_37.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 +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 Affero General Public License, version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_37.yml b/src/licensedcode/data/rules/agpl-3.0_37.yml deleted file mode 100644 index 3991d9b0a77..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_370.RULE b/src/licensedcode/data/rules/agpl-3.0_370.RULE index 1085f029460..6eb220607c5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_370.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_370.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + - LicenseRef-AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_370.yml b/src/licensedcode/data/rules/agpl-3.0_370.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_371.RULE b/src/licensedcode/data/rules/agpl-3.0_371.RULE index 768b09ad44d..ba39f027c27 100644 --- a/src/licensedcode/data/rules/agpl-3.0_371.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_371.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + license is AGPL-3.0-only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_371.yml b/src/licensedcode/data/rules/agpl-3.0_371.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_371.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_372.RULE b/src/licensedcode/data/rules/agpl-3.0_372.RULE index 6ef1c6cffaa..09bbd2738bb 100644 --- a/src/licensedcode/data/rules/agpl-3.0_372.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_372.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the AGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_372.yml b/src/licensedcode/data/rules/agpl-3.0_372.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_372.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_373.RULE b/src/licensedcode/data/rules/agpl-3.0_373.RULE index 94a7415afbe..9f663981120 100644 --- a/src/licensedcode/data/rules/agpl-3.0_373.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_373.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under the AGPL3 open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_373.yml b/src/licensedcode/data/rules/agpl-3.0_373.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_373.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_374.RULE b/src/licensedcode/data/rules/agpl-3.0_374.RULE index cd8f3709b33..7f2c680e89c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_374.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_374.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + open source project released under the AGPL3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_374.yml b/src/licensedcode/data/rules/agpl-3.0_374.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_374.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_375.RULE b/src/licensedcode/data/rules/agpl-3.0_375.RULE index cbcbece0335..13e2fed3fa8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_375.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_375.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the AGPL3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_375.yml b/src/licensedcode/data/rules/agpl-3.0_375.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_375.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_376.RULE b/src/licensedcode/data/rules/agpl-3.0_376.RULE index 0c690ed62c3..b8072c6b324 100644 --- a/src/licensedcode/data/rules/agpl-3.0_376.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_376.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 95 +--- + wikipedia.org/wiki/Affero_General_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_376.yml b/src/licensedcode/data/rules/agpl-3.0_376.yml deleted file mode 100644 index c3d27e2164b..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/agpl-3.0_377.RULE b/src/licensedcode/data/rules/agpl-3.0_377.RULE index 9cdcf3ae66b..f7c9208708b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_377.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_377.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_377.yml b/src/licensedcode/data/rules/agpl-3.0_377.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_378.RULE b/src/licensedcode/data/rules/agpl-3.0_378.RULE index 5745ceb3008..86d4d03fb9e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_378.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_378.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AGPL-3.0-only +--- + https://licenses.nuget.org/AGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_378.yml b/src/licensedcode/data/rules/agpl-3.0_378.yml deleted file mode 100644 index 0fff2a07738..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_378.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AGPL-3.0-only diff --git a/src/licensedcode/data/rules/agpl-3.0_379.RULE b/src/licensedcode/data/rules/agpl-3.0_379.RULE index 2e03dcf7aab..95686d27e72 100644 --- a/src/licensedcode/data/rules/agpl-3.0_379.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_379.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_379.yml b/src/licensedcode/data/rules/agpl-3.0_379.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_379.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_38.RULE b/src/licensedcode/data/rules/agpl-3.0_38.RULE index 0ae3644353a..d11c05a03f4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_38.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/agpl-3.0 +--- + License: [`agpl-3.0`](http://choosealicense.com/licenses/agpl-3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_38.yml b/src/licensedcode/data/rules/agpl-3.0_38.yml deleted file mode 100644 index a3be5132832..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/agpl-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_380.RULE b/src/licensedcode/data/rules/agpl-3.0_380.RULE index df59824e052..0d9bd7a038d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_380.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_380.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + licenses: AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_380.yml b/src/licensedcode/data/rules/agpl-3.0_380.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_380.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_381.RULE b/src/licensedcode/data/rules/agpl-3.0_381.RULE index f3df78dd05e..f6f8c27ce8b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_381.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_381.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + licenses: AGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_381.yml b/src/licensedcode/data/rules/agpl-3.0_381.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_381.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_382.RULE b/src/licensedcode/data/rules/agpl-3.0_382.RULE index 002cd44d151..f3e3bd1027d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_382.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_382.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0 +--- + {{AGPL-3.0}} https://spdx.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_382.yml b/src/licensedcode/data/rules/agpl-3.0_382.yml deleted file mode 100644 index 06332d4665f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_382.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_383.RULE b/src/licensedcode/data/rules/agpl-3.0_383.RULE index 453f5d95087..b72e84dba0e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_383.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_383.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0-only +--- + LICENSE {{AGPL-3.0-only}} https://spdx.org/licenses/AGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_383.yml b/src/licensedcode/data/rules/agpl-3.0_383.yml deleted file mode 100644 index 9e08a2ce2ef..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_383.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0-only diff --git a/src/licensedcode/data/rules/agpl-3.0_384.RULE b/src/licensedcode/data/rules/agpl-3.0_384.RULE index 87a9d8409ad..b72e3fac24e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_384.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_384.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0-only +--- + {{AGPL-3.0-only}} https://spdx.org/licenses/AGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_384.yml b/src/licensedcode/data/rules/agpl-3.0_384.yml deleted file mode 100644 index 9e08a2ce2ef..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_384.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AGPL-3.0-only diff --git a/src/licensedcode/data/rules/agpl-3.0_385.RULE b/src/licensedcode/data/rules/agpl-3.0_385.RULE index 8f82eea7187..0ce57450fd1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_385.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_385.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + under the conditions of the AGPL-3.0 License (see LICENSE file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_385.yml b/src/licensedcode/data/rules/agpl-3.0_385.yml deleted file mode 100644 index 5431969e2ed..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_385.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_386.RULE b/src/licensedcode/data/rules/agpl-3.0_386.RULE index 2a0e0fba1aa..3c44d81d828 100644 --- a/src/licensedcode/data/rules/agpl-3.0_386.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_386.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the conditions of the AGPL-3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_386.yml b/src/licensedcode/data/rules/agpl-3.0_386.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_387.RULE b/src/licensedcode/data/rules/agpl-3.0_387.RULE index a91c8117cef..a1d3a9c809b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_387.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_387.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License GNU Affero General Public License, version 3 (AGPL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_387.yml b/src/licensedcode/data/rules/agpl-3.0_387.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_388.RULE b/src/licensedcode/data/rules/agpl-3.0_388.RULE index aa3ae063dff..8e6c9e02732 100644 --- a/src/licensedcode/data/rules/agpl-3.0_388.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_388.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Affero General Public License, version 3 (AGPL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_388.yml b/src/licensedcode/data/rules/agpl-3.0_388.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_39.RULE b/src/licensedcode/data/rules/agpl-3.0_39.RULE index 4239614fed5..bd4096abd28 100644 --- a/src/licensedcode/data/rules/agpl-3.0_39.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_39.RULE @@ -1 +1,7 @@ -license: APGLv3 +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +license: APGLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_39.yml b/src/licensedcode/data/rules/agpl-3.0_39.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_4.RULE b/src/licensedcode/data/rules/agpl-3.0_4.RULE index 5df3f7fbd14..190512f51c8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_4.RULE @@ -1,3 +1,17 @@ +--- +license_expression: agpl-3.0 +is_license_text: yes +minimum_coverage: 99 +notes: oodoo agpl +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses/ +--- + OpenERP is published under the GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3), as included below. Some external libraries and contributions bundled with OpenERP may be published under other AGPLv3-compatible licenses. For @@ -666,4 +680,4 @@ 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_4.yml b/src/licensedcode/data/rules/agpl-3.0_4.yml deleted file mode 100644 index d5140665792..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_4.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: agpl-3.0 -is_license_text: yes -minimum_coverage: 99 -notes: oodoo agpl -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_40.RULE b/src/licensedcode/data/rules/agpl-3.0_40.RULE index f43649d481f..8cc833e7076 100644 --- a/src/licensedcode/data/rules/agpl-3.0_40.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_40.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +--- + * Alternatively, the contents of this file may be used under the * terms of the GNU Affero General Public License (the [AGPLv3] * License), in which case the provisions of [AGPLv3] License are diff --git a/src/licensedcode/data/rules/agpl-3.0_40.yml b/src/licensedcode/data/rules/agpl-3.0_40.yml deleted file mode 100644 index aab3d541a4d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-3.0_41.RULE b/src/licensedcode/data/rules/agpl-3.0_41.RULE index 78b6c400f96..e50b97d0a86 100644 --- a/src/licensedcode/data/rules/agpl-3.0_41.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_41.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License, # version 3, as published by the Free Software Foundation. @@ -12,4 +19,4 @@ # # # Licensed under the terms of the GNU Affero General Public License -# version 3 +# version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_41.yml b/src/licensedcode/data/rules/agpl-3.0_41.yml deleted file mode 100644 index 3991d9b0a77..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_41.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_42.RULE b/src/licensedcode/data/rules/agpl-3.0_42.RULE index 3f68ad6b3c6..b694c14a7c3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_42.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + # Licensed under the terms of the GNU Affero General Public License -# version 3 +# version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_42.yml b/src/licensedcode/data/rules/agpl-3.0_42.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_43.RULE b/src/licensedcode/data/rules/agpl-3.0_43.RULE index 57e3c8fc298..aabf2ba3887 100644 --- a/src/licensedcode/data/rules/agpl-3.0_43.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_43.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + @license GNU Affero General Public License version 3 {@link http://www.gnu.org/licenses/agpl-3.0.html} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_43.yml b/src/licensedcode/data/rules/agpl-3.0_43.yml deleted file mode 100644 index 129cdca7767..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_44.RULE b/src/licensedcode/data/rules/agpl-3.0_44.RULE index 239072c79a6..60191def47d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_44.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + spec.license = "GNU AGPL 3.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_44.yml b/src/licensedcode/data/rules/agpl-3.0_44.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_45.RULE b/src/licensedcode/data/rules/agpl-3.0_45.RULE index 94f59d40ef5..78ff78498b8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_45.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Software is free software released under the "GNU Affero General Public License v3.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_45.yml b/src/licensedcode/data/rules/agpl-3.0_45.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_46.RULE b/src/licensedcode/data/rules/agpl-3.0_46.RULE index 9333689f301..b1b41b34516 100644 --- a/src/licensedcode/data/rules/agpl-3.0_46.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_46.RULE @@ -1,4 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html +--- + GNU Affero General Public License v3 http://www.fsf.org/licensing/licenses/agpl-3.0.html - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_46.yml b/src/licensedcode/data/rules/agpl-3.0_46.yml deleted file mode 100644 index faf16f28831..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_47.RULE b/src/licensedcode/data/rules/agpl-3.0_47.RULE index b8a75a436bb..053e77569c1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_47.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_47.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + AGPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_47.yml b/src/licensedcode/data/rules/agpl-3.0_47.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_48.RULE b/src/licensedcode/data/rules/agpl-3.0_48.RULE index 9d363569709..9e9a18c0dd3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_48.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + See [COPYING.AGPLv3][agpllicense], \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_48.yml b/src/licensedcode/data/rules/agpl-3.0_48.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_49.RULE b/src/licensedcode/data/rules/agpl-3.0_49.RULE index 02d0717f4e4..fea0983d77d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_49.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_49.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + agpllicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_49.yml b/src/licensedcode/data/rules/agpl-3.0_49.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_5.RULE b/src/licensedcode/data/rules/agpl-3.0_5.RULE index 068e8768084..b2d893ae7a8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_5.yml b/src/licensedcode/data/rules/agpl-3.0_5.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_50.RULE b/src/licensedcode/data/rules/agpl-3.0_50.RULE index f1581bdd31c..8fe1c689b0e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_50.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + COPYING.AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_50.yml b/src/licensedcode/data/rules/agpl-3.0_50.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_500.RULE b/src/licensedcode/data/rules/agpl-3.0_500.RULE index 689be137571..cd6984cdc21 100644 --- a/src/licensedcode/data/rules/agpl-3.0_500.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_500.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the GNU Affero General Public License v3.0. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_500.yml b/src/licensedcode/data/rules/agpl-3.0_500.yml deleted file mode 100644 index 29089fc75c1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_500.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_501.RULE b/src/licensedcode/data/rules/agpl-3.0_501.RULE index 166ddc26864..20011b4243f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_501.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_501.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + //You should have received a copy of the GNU Affero General Public License //along with this program. If not, see . // diff --git a/src/licensedcode/data/rules/agpl-3.0_501.yml b/src/licensedcode/data/rules/agpl-3.0_501.yml deleted file mode 100644 index 2b078c63e82..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_501.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_51.RULE b/src/licensedcode/data/rules/agpl-3.0_51.RULE index 700b28a37b8..7cc5009955e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_51.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl +--- + https://www.gnu.org/licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_51.yml b/src/licensedcode/data/rules/agpl-3.0_51.yml deleted file mode 100644 index 4d73ceb42d2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0_52.RULE b/src/licensedcode/data/rules/agpl-3.0_52.RULE index 3670f7ac087..8b14efa1fbd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_52.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_52.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl +--- + www.gnu.org/licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_52.yml b/src/licensedcode/data/rules/agpl-3.0_52.yml deleted file mode 100644 index 2b442cc7b62..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0_53.RULE b/src/licensedcode/data/rules/agpl-3.0_53.RULE index 55ecd82f249..d181911b1e7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_53.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_53.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + http://www.gnu.org/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_53.yml b/src/licensedcode/data/rules/agpl-3.0_53.yml deleted file mode 100644 index dbb8aa46c1c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_54.RULE b/src/licensedcode/data/rules/agpl-3.0_54.RULE index 42b3614fb6f..d28865cb34e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_54.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_54.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + www.gnu.org/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_54.yml b/src/licensedcode/data/rules/agpl-3.0_54.yml deleted file mode 100644 index dbb8aa46c1c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_55.RULE b/src/licensedcode/data/rules/agpl-3.0_55.RULE index 0dd568cca86..c64d9c02059 100644 --- a/src/licensedcode/data/rules/agpl-3.0_55.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/agpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_55.yml b/src/licensedcode/data/rules/agpl-3.0_55.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_56.RULE b/src/licensedcode/data/rules/agpl-3.0_56.RULE index 081404d56f5..ee997bf2457 100644 --- a/src/licensedcode/data/rules/agpl-3.0_56.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_56.yml b/src/licensedcode/data/rules/agpl-3.0_56.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_57.RULE b/src/licensedcode/data/rules/agpl-3.0_57.RULE index 4f601d1c314..f958ed323d1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_57.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_57.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + Licensed under the AGPLv3: https://www.gnu.org/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_57.yml b/src/licensedcode/data/rules/agpl-3.0_57.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_58.RULE b/src/licensedcode/data/rules/agpl-3.0_58.RULE index d7148ea4d3e..9f11fe268f4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_58.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_58.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + License --------------------- diff --git a/src/licensedcode/data/rules/agpl-3.0_58.yml b/src/licensedcode/data/rules/agpl-3.0_58.yml deleted file mode 100644 index b862a7ebcb7..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_59.RULE b/src/licensedcode/data/rules/agpl-3.0_59.RULE index 7e9a7d149b1..5b6a6aee228 100644 --- a/src/licensedcode/data/rules/agpl-3.0_59.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_59.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_59.yml b/src/licensedcode/data/rules/agpl-3.0_59.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_6.RULE b/src/licensedcode/data/rules/agpl-3.0_6.RULE index a94e579ca51..d4da3c249c0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 90 +--- + AGPL 3.0 AGPL v3.0 AGPL3 diff --git a/src/licensedcode/data/rules/agpl-3.0_6.yml b/src/licensedcode/data/rules/agpl-3.0_6.yml deleted file mode 100644 index 1c0cf5daf61..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/agpl-3.0_60.RULE b/src/licensedcode/data/rules/agpl-3.0_60.RULE index 2c36d9f0f14..7337bc29c28 100644 --- a/src/licensedcode/data/rules/agpl-3.0_60.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + AGPLv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_60.yml b/src/licensedcode/data/rules/agpl-3.0_60.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_61.RULE b/src/licensedcode/data/rules/agpl-3.0_61.RULE index c19723e7d2e..750515b6617 100644 --- a/src/licensedcode/data/rules/agpl-3.0_61.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_61.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + agpl 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_61.yml b/src/licensedcode/data/rules/agpl-3.0_61.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_62.RULE b/src/licensedcode/data/rules/agpl-3.0_62.RULE index 4cc67a51b09..a0e8a1fb5ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_62.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_62.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + agpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_62.yml b/src/licensedcode/data/rules/agpl-3.0_62.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_63.RULE b/src/licensedcode/data/rules/agpl-3.0_63.RULE index 4826378d7ad..55b6db509db 100644 --- a/src/licensedcode/data/rules/agpl-3.0_63.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_63.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + agplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_63.yml b/src/licensedcode/data/rules/agpl-3.0_63.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_64.RULE b/src/licensedcode/data/rules/agpl-3.0_64.RULE index fe19a7e16f4..4fda0bcdeaf 100644 --- a/src/licensedcode/data/rules/agpl-3.0_64.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + agpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_64.yml b/src/licensedcode/data/rules/agpl-3.0_64.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_65.RULE b/src/licensedcode/data/rules/agpl-3.0_65.RULE index 6c37cf8e4b0..f67d2c2ca02 100644 --- a/src/licensedcode/data/rules/agpl-3.0_65.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_65.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + agpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_65.yml b/src/licensedcode/data/rules/agpl-3.0_65.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_66.RULE b/src/licensedcode/data/rules/agpl-3.0_66.RULE index c604938b0c8..3eb18d5521e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_66.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_66.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_66.yml b/src/licensedcode/data/rules/agpl-3.0_66.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_67.RULE b/src/licensedcode/data/rules/agpl-3.0_67.RULE index cf8a951ed74..52f98d3dc4a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_67.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_67.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPL30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_67.yml b/src/licensedcode/data/rules/agpl-3.0_67.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_68.RULE b/src/licensedcode/data/rules/agpl-3.0_68.RULE index 0e4a0ba3800..86cd5927b98 100644 --- a/src/licensedcode/data/rules/agpl-3.0_68.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_68.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_68.yml b/src/licensedcode/data/rules/agpl-3.0_68.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_69.RULE b/src/licensedcode/data/rules/agpl-3.0_69.RULE index 837b65e2ead..b3ddae92ed4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_69.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_69.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNUAGPLv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_69.yml b/src/licensedcode/data/rules/agpl-3.0_69.yml deleted file mode 100644 index b4bc93464d9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_7.RULE b/src/licensedcode/data/rules/agpl-3.0_7.RULE index 9ec15cf72e6..16b9cfc31f0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_7.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.txt +--- + http://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_7.yml b/src/licensedcode/data/rules/agpl-3.0_7.yml deleted file mode 100644 index 78450728627..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_70.RULE b/src/licensedcode/data/rules/agpl-3.0_70.RULE index b1a9167246c..a316145d645 100644 --- a/src/licensedcode/data/rules/agpl-3.0_70.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_70.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_70.yml b/src/licensedcode/data/rules/agpl-3.0_70.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_71.RULE b/src/licensedcode/data/rules/agpl-3.0_71.RULE index 97dd2f5d7d3..7fa1c3a6072 100644 --- a/src/licensedcode/data/rules/agpl-3.0_71.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_71.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_71.yml b/src/licensedcode/data/rules/agpl-3.0_71.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_72.RULE b/src/licensedcode/data/rules/agpl-3.0_72.RULE index 00b8285261c..58478e208ce 100644 --- a/src/licensedcode/data/rules/agpl-3.0_72.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_72.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_72.yml b/src/licensedcode/data/rules/agpl-3.0_72.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_73.RULE b/src/licensedcode/data/rules/agpl-3.0_73.RULE index 9ac7d32fd12..7ad9e1f0399 100644 --- a/src/licensedcode/data/rules/agpl-3.0_73.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_73.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnuagplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_73.yml b/src/licensedcode/data/rules/agpl-3.0_73.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_74.RULE b/src/licensedcode/data/rules/agpl-3.0_74.RULE index a02d3bd03b2..3e8cc692074 100644 --- a/src/licensedcode/data/rules/agpl-3.0_74.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_74.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_74.yml b/src/licensedcode/data/rules/agpl-3.0_74.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_75.RULE b/src/licensedcode/data/rules/agpl-3.0_75.RULE index 8c0e94db643..818aa2802d7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_75.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_75.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnuagpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_75.yml b/src/licensedcode/data/rules/agpl-3.0_75.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_76.RULE b/src/licensedcode/data/rules/agpl-3.0_76.RULE index fdf1be103dc..ac8d1e16efc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_76.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_76.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_76.yml b/src/licensedcode/data/rules/agpl-3.0_76.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_77.RULE b/src/licensedcode/data/rules/agpl-3.0_77.RULE index 81769df5b06..3fbabf0959d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_77.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_77.yml b/src/licensedcode/data/rules/agpl-3.0_77.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_78.RULE b/src/licensedcode/data/rules/agpl-3.0_78.RULE index 8977939859d..d213558b384 100644 --- a/src/licensedcode/data/rules/agpl-3.0_78.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_78.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agplv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_78.yml b/src/licensedcode/data/rules/agpl-3.0_78.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_79.RULE b/src/licensedcode/data/rules/agpl-3.0_79.RULE index 14e33726a69..1c9088c988a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_79.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_79.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agplv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_79.yml b/src/licensedcode/data/rules/agpl-3.0_79.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_8.RULE b/src/licensedcode/data/rules/agpl-3.0_8.RULE index 4567c49349f..38ea7467620 100644 --- a/src/licensedcode/data/rules/agpl-3.0_8.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_8.RULE @@ -1,6 +1,14 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/agpl-3.0.html +--- + GNU Affero General Public License v3 http://www.fsf.org/licensing/licenses/agpl-3.0.html - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_8.yml b/src/licensedcode/data/rules/agpl-3.0_8.yml deleted file mode 100644 index faf16f28831..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_80.RULE b/src/licensedcode/data/rules/agpl-3.0_80.RULE index d6c76a54575..11c95a7da1c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_80.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_80.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_80.yml b/src/licensedcode/data/rules/agpl-3.0_80.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_81.RULE b/src/licensedcode/data/rules/agpl-3.0_81.RULE index 47a1fb44cc2..c1aec138691 100644 --- a/src/licensedcode/data/rules/agpl-3.0_81.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_81.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_81.yml b/src/licensedcode/data/rules/agpl-3.0_81.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_82.RULE b/src/licensedcode/data/rules/agpl-3.0_82.RULE index fb50b238f55..020523496e0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_82.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_82.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_82.yml b/src/licensedcode/data/rules/agpl-3.0_82.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_83.RULE b/src/licensedcode/data/rules/agpl-3.0_83.RULE index 0b1f8fe622d..4a2b89f12d3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_83.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_83.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_83.yml b/src/licensedcode/data/rules/agpl-3.0_83.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_84.RULE b/src/licensedcode/data/rules/agpl-3.0_84.RULE index a132cb40b8e..f9f4a95260b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_84.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_84.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_84.yml b/src/licensedcode/data/rules/agpl-3.0_84.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_85.RULE b/src/licensedcode/data/rules/agpl-3.0_85.RULE index 0e0f8417d47..f8b5b5cc0d8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_85.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_85.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu agpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_85.yml b/src/licensedcode/data/rules/agpl-3.0_85.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_86.RULE b/src/licensedcode/data/rules/agpl-3.0_86.RULE index 4565378244d..230aff64527 100644 --- a/src/licensedcode/data/rules/agpl-3.0_86.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_86.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/agpl +--- + http://choosealicense.com//licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_86.yml b/src/licensedcode/data/rules/agpl-3.0_86.yml deleted file mode 100644 index 8dc7a0d5273..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0_87.RULE b/src/licensedcode/data/rules/agpl-3.0_87.RULE index beded409750..58c755f92fd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_87.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_87.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/agpl +--- + https://choosealicense.com//licenses/agpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_87.yml b/src/licensedcode/data/rules/agpl-3.0_87.yml deleted file mode 100644 index 86b6fd5ec08..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/agpl diff --git a/src/licensedcode/data/rules/agpl-3.0_88.RULE b/src/licensedcode/data/rules/agpl-3.0_88.RULE index 288df7da8d2..323f4f2f5fd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_88.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_88.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/agpl-3.0 +--- + https://choosealicense.com/licenses/agpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_88.yml b/src/licensedcode/data/rules/agpl-3.0_88.yml deleted file mode 100644 index 6d347b48471..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/agpl-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_89.RULE b/src/licensedcode/data/rules/agpl-3.0_89.RULE index 4ca7917cb1c..b7fbf639aca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_89.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_89.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/agpl-3.0 +--- + http://choosealicense.com/licenses/agpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_89.yml b/src/licensedcode/data/rules/agpl-3.0_89.yml deleted file mode 100644 index 443fd5b257b..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/agpl-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_9.RULE b/src/licensedcode/data/rules/agpl-3.0_9.RULE index ac7e8052b5c..6772051f15d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_9.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.opensource.org/licenses/agpl-v3.html +--- + http://www.opensource.org/licenses/agpl-v3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_9.yml b/src/licensedcode/data/rules/agpl-3.0_9.yml deleted file mode 100644 index 8eaeab3c5fa..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.opensource.org/licenses/agpl-v3.html diff --git a/src/licensedcode/data/rules/agpl-3.0_90.RULE b/src/licensedcode/data/rules/agpl-3.0_90.RULE index 7b1ad3a8754..73789c19cab 100644 --- a/src/licensedcode/data/rules/agpl-3.0_90.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_90.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the AGPLv3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_90.yml b/src/licensedcode/data/rules/agpl-3.0_90.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_91.RULE b/src/licensedcode/data/rules/agpl-3.0_91.RULE index 0a347598156..0fc0f92a016 100644 --- a/src/licensedcode/data/rules/agpl-3.0_91.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_91.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html +--- + distributed under the terms of the AGPLv3 license (http://www.gnu.org/licenses/agpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_91.yml b/src/licensedcode/data/rules/agpl-3.0_91.yml deleted file mode 100644 index 127810f69b6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_92.RULE b/src/licensedcode/data/rules/agpl-3.0_92.RULE index 8f2aa0b4ea1..16bd35eff5c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_92.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_92.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + It's distributed under the terms of the AGPLv3 license (https://www.gnu.org/licenses/agpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_92.yml b/src/licensedcode/data/rules/agpl-3.0_92.yml deleted file mode 100644 index f41022d845b..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_93.RULE b/src/licensedcode/data/rules/agpl-3.0_93.RULE index 1d4ec0aa0a2..2ccd468f9a6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_93.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_93.RULE @@ -1,2 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html +--- + It's distributed under the terms of the AGPLv3 license (http://www.gnu.org/licenses/agpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_93.yml b/src/licensedcode/data/rules/agpl-3.0_93.yml deleted file mode 100644 index 127810f69b6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_94.RULE b/src/licensedcode/data/rules/agpl-3.0_94.RULE index 4538c064f49..d3715f1ef99 100644 --- a/src/licensedcode/data/rules/agpl-3.0_94.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_94.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.AGPL +--- + The complete text of the AGPLv3 license can be found in LICENSE.AGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_94.yml b/src/licensedcode/data/rules/agpl-3.0_94.yml deleted file mode 100644 index 0d4e2ef17d2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.AGPL diff --git a/src/licensedcode/data/rules/agpl-3.0_95.RULE b/src/licensedcode/data/rules/agpl-3.0_95.RULE index b2651624803..5015a603ede 100644 --- a/src/licensedcode/data/rules/agpl-3.0_95.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_95.RULE @@ -1 +1,9 @@ -This script is licensed under AGPL version 3.0 https://opensource.org/licenses/AGPL-3.0 \ No newline at end of file +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/AGPL-3.0 +--- + +This script is licensed under AGPL version 3.0 https://opensource.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_95.yml b/src/licensedcode/data/rules/agpl-3.0_95.yml deleted file mode 100644 index a3d9f70f2f6..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_95.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_96.RULE b/src/licensedcode/data/rules/agpl-3.0_96.RULE index cd340bb6e41..5dfde0372fd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_96.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_96.RULE @@ -1 +1,9 @@ -https://opensource.org/licenses/AGPL-3.0 \ No newline at end of file +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/AGPL-3.0 +--- + +https://opensource.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_96.yml b/src/licensedcode/data/rules/agpl-3.0_96.yml deleted file mode 100644 index 89360acf2ee..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_97.RULE b/src/licensedcode/data/rules/agpl-3.0_97.RULE index c135cb4dbd3..d4634611c1e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_97.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_97.RULE @@ -1 +1,9 @@ -http://opensource.org/licenses/AGPL-3.0 \ No newline at end of file +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/AGPL-3.0 +--- + +http://opensource.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_97.yml b/src/licensedcode/data/rules/agpl-3.0_97.yml deleted file mode 100644 index ea47ca5c85d..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/AGPL-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_98.RULE b/src/licensedcode/data/rules/agpl-3.0_98.RULE index 5ff5d6a06e8..36113b21a24 100644 --- a/src/licensedcode/data/rules/agpl-3.0_98.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_98.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + You can use, redistribute, and/or modify this code under the terms of the GNU Affero General Public License version 3. diff --git a/src/licensedcode/data/rules/agpl-3.0_98.yml b/src/licensedcode/data/rules/agpl-3.0_98.yml deleted file mode 100644 index 4edba51752a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_99.RULE b/src/licensedcode/data/rules/agpl-3.0_99.RULE index 1c13b69f713..61c6e9f9b92 100644 --- a/src/licensedcode/data/rules/agpl-3.0_99.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_99.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under AGPL-3.0 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_99.yml b/src/licensedcode/data/rules/agpl-3.0_99.yml deleted file mode 100644 index b6548eaf117..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_afpl-9.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_afpl-9.0_1.RULE index b73f36d9939..92cd658a406 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_afpl-9.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_afpl-9.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 AND afpl-9.0 +is_license_notice: yes +relevance: 100 +--- + % for distribution under the GNU License and Aladdin Free Public License. % See the notice at the head of this Fontmap file for licensing terms. % Each of these fonts is individually covered by the license: diff --git a/src/licensedcode/data/rules/agpl-3.0_and_afpl-9.0_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_afpl-9.0_1.yml deleted file mode 100644 index 5bd1d83c221..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_afpl-9.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 AND afpl-9.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_1.RULE index 667ab7f7d9f..fc523a3a14c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 AND bsd-new AND lgpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + License The project is licensed under AGPL v3. Some parts licensed under BSD and LGPL. See the source code for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_1.yml deleted file mode 100644 index 29f5252c1ae..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 AND bsd-new AND lgpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_2.RULE index 337fb6c71b9..716653a380a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 AND bsd-new AND lgpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + The project is licensed under AGPL v3. Some parts licensed under BSD and LGPL. See the source code for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_2.yml deleted file mode 100644 index 29f5252c1ae..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_bsd-new_and_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 AND bsd-new AND lgpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_cc-by-4.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_cc-by-4.0_1.RULE index f3301ac64c9..be363a9052b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_cc-by-4.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_cc-by-4.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + project's main license is AGPL-3.0-only. Documentation is under CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_and_cc-by-4.0_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_cc-by-4.0_1.yml deleted file mode 100644 index 6defcc4634b..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_cc-by-4.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 AND cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_1.RULE index 3a4372722c9..e754d6a37b9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 AND other-copyleft +is_license_notice: yes +notes: See https://github.com/sugarcrm/Tidbit/blob/master/LICENSE +ignorable_urls: + - http://www.gnu.org/licenses +ignorable_emails: + - contact@sugarcrm.com +--- + * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License version 3 as published by the * Free Software Foundation with the addition of the following permission added diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_1.yml deleted file mode 100644 index 564eb38e3b1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 AND other-copyleft -is_license_notice: yes -notes: See https://github.com/sugarcrm/Tidbit/blob/master/LICENSE -ignorable_urls: - - http://www.gnu.org/licenses -ignorable_emails: - - contact@sugarcrm.com diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_2.RULE b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_2.RULE index 2e152b23ed2..c4daada4f39 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 AND other-copyleft +is_license_notice: yes +relevance: 100 +notes: See https://github.com/sugarcrm/Tidbit/blob/master/LICENSE +ignorable_urls: + - https://www.gnu.org/licenses +ignorable_emails: + - contact@sugarcrm.com +--- + * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License version 3 as published by the * Free Software Foundation with the addition of the following permission added diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_2.yml b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_2.yml deleted file mode 100644 index c517899e984..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 AND other-copyleft -is_license_notice: yes -relevance: 100 -notes: See https://github.com/sugarcrm/Tidbit/blob/master/LICENSE -ignorable_urls: - - https://www.gnu.org/licenses -ignorable_emails: - - contact@sugarcrm.com diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_proprietary-license_1.RULE index 6a537e839d4..4e2fcf4ea25 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_proprietary-license_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: agpl-3.0 AND other-copyleft AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: the AGPL extra terms may or may not conflict with the AGPL +ignorable_copyrights: + - Linagora (c) 2009-2020 +ignorable_holders: + - Linagora +ignorable_urls: + - http://www.linagora.com/ + - http://www.linshare.org/ +ignorable_emails: + - info@linagora.com +--- + GNU Affero General Public License version 3 – for LinShare software License and Additional Terms for LinShare software LinShare is an Free and Open source filesharing software, part of the LinPKI software suite. LinShare diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_proprietary-license_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_proprietary-license_1.yml deleted file mode 100644 index 9bfaad2a867..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_proprietary-license_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: agpl-3.0 AND other-copyleft AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: the AGPL extra terms may or may not conflict with the AGPL -ignorable_copyrights: - - Linagora (c) 2009-2020 -ignorable_holders: - - Linagora -ignorable_urls: - - http://www.linagora.com/ - - http://www.linshare.org/ -ignorable_emails: - - info@linagora.com diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_1.RULE index 429204725c2..7c9dfdb6d80 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 AND other-copyleft AND unknown +is_license_notice: yes +relevance: 100 +notes: contains several additions that may or may not be a problem wrt. compatibility with the + AGPL +ignorable_urls: + - http://www.gnu.org/licenses +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 (GNU AGPL v3) as published be the Free Software Foundation with the addition of the following diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_1.yml deleted file mode 100644 index ece16ac7033..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 AND other-copyleft AND unknown -is_license_notice: yes -relevance: 100 -notes: contains several additions that may or may not be a problem wrt. compatibility with the - AGPL -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_2.RULE b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_2.RULE index 72024d6c533..4e3e37c340c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 AND other-copyleft AND unknown +is_license_notice: yes +relevance: 100 +notes: contains several additions that may or may not be a problem wrt. compatibility with the + AGPL +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 Affero General Public License version 3 (GNU AGPL v3) as published be the Free Software Foundation with the addition of the following diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_2.yml b/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_2.yml deleted file mode 100644 index 8ad31e6cff4..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-copyleft_and_unknown_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 AND other-copyleft AND unknown -is_license_notice: yes -relevance: 100 -notes: contains several additions that may or may not be a problem wrt. compatibility with the - AGPL -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_1.RULE index aace0475e1e..ace58a0f6fc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 AND other-permissive +is_license_notice: yes +relevance: 100 +--- + Linking to the official server matching engine falls under copyleft AGPL, this library provides minimal matching capability with permissive license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_1.yml deleted file mode 100644 index 0ca985be04c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_1.RULE index ad1f7324f98..70efac7953e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 AND other-permissive AND other-copyleft +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html +--- + It's distributed under the terms of the AGPLv3 license (http://www.gnu.org/licenses/agpl.html). However, some files are licensed under other licenses: \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_1.yml deleted file mode 100644 index 5fb3fc13724..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 AND other-permissive AND other-copyleft -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_2.RULE b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_2.RULE index 471b4d0d4f2..7e9451a7725 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 AND other-permissive AND other-copyleft +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.html +--- + It's distributed under the terms of the AGPLv3 license (https://www.gnu.org/licenses/agpl.html). However, some files are licensed under other licenses: \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_2.yml b/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_2.yml deleted file mode 100644 index b1e86008347..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_other-permissive_and_other-copyleft_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 AND other-permissive AND other-copyleft -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.html diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_1.RULE index 13322e50db0..ba045b91359 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: trademarked materials are explicitly excluded from the AGPL, and are deemed prorpietary +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The source code of the software contained in this package as well as the source package itself are made available under the terms of the GNU Affero General Public License version 3 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_1.yml deleted file mode 100644 index 8a807da3997..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: trademarked materials are explicitly excluded from the AGPL, and are deemed prorpietary -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_2.RULE index d1c6b875d44..48b99ebcddb 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: trademarked materials are explicitly excluded from the AGPL, and are deemed prorpietary +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The source code of the software contained in this package as well as the source package itself are made available under the terms of the GNU Affero General Public License version 3 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_2.yml deleted file mode 100644 index 8a807da3997..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: trademarked materials are explicitly excluded from the AGPL, and are deemed prorpietary -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_3.RULE index 5349327d859..866a6ca1ca2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # The source code of this program is made available # under the terms of the GNU Affero General Public License version 3 # (GNU AGPL V3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_3.yml b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_3.yml deleted file mode 100644 index d76b3224460..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_4.RULE b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_4.RULE index 9b5ae77aa4a..0f2b16c7153 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: trademarked materials are explicitly excluded from the AGPL, and are deemed prorpietary +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The source code of the software contained in this package as well as the source package itself are made available under the terms of the GNU Affero General Public License version 3 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_4.yml b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_4.yml deleted file mode 100644 index 93f6d0c6e88..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: trademarked materials are explicitly excluded from the AGPL, and are deemed prorpietary -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_5.RULE b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_5.RULE index 88077603dd9..3d25c689de8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: trademarked materials are explicitly excluded from the AGPL, and are deemed prorpietary +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The source code of the software contained in this package as well as the source package itself are made available under the terms of the GNU Affero General Public License version 3 diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_5.yml b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_5.yml deleted file mode 100644 index 93f6d0c6e88..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: trademarked materials are explicitly excluded from the AGPL, and are deemed prorpietary -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_6.RULE b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_6.RULE index 1efc58d67f0..abeb921aebe 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # The source code of this program is made available # under the terms of the GNU Affero General Public License version 3 # (GNU AGPL V3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_6.yml b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_6.yml deleted file mode 100644 index 50ae3d72c2a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_7.RULE b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_7.RULE index 1861a2f68f8..636f13b2ede 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_7.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_7.RULE @@ -1 +1,8 @@ +--- +license_expression: agpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://raw.githubusercontent.com/mypdns/matrix/master/LICENSE +--- + GNU AGPLv3 MODIFIED FOR NON COMMERCIAL USE \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_7.yml b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_7.yml deleted file mode 100644 index c50d87c3d17..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://raw.githubusercontent.com/mypdns/matrix/master/LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_8.RULE b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_8.RULE index 18b14d52fc9..68d64ac3312 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_8.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_8.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 AND proprietary-license +is_license_notice: yes +notes: a complex AGPL rider that requires review +ignorable_urls: + - http://www.linagora.com/ + - https://smartsla.org/ +ignorable_emails: + - info@LINAGORA.com +--- + Pursuant to this license, you are therefore free to use the software and modify it according to the GNU Affero General Public License version 3, provided that you comply with its requirements, notably: - indicating, in a clear and unambiguous manner, that the software is a modification of original code; diff --git a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_8.yml b/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_8.yml deleted file mode 100644 index ec150fb0a82..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_proprietary-license_8.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 AND proprietary-license -is_license_notice: yes -notes: a complex AGPL rider that requires review -ignorable_urls: - - http://www.linagora.com/ - - https://smartsla.org/ -ignorable_emails: - - info@LINAGORA.com diff --git a/src/licensedcode/data/rules/agpl-3.0_and_unknown_1.RULE b/src/licensedcode/data/rules/agpl-3.0_and_unknown_1.RULE index 745d1c3b199..61d126d2941 100644 --- a/src/licensedcode/data/rules/agpl-3.0_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_and_unknown_1.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 AND unknown +is_license_tag: yes +relevance: 100 +notes: commercial use right are not clear +ignorable_urls: + - http://introjs.com/ +--- + GNU AGPL v3.0 : intro.js (if you commercial use, pay money / http://introjs.com/ ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_and_unknown_1.yml b/src/licensedcode/data/rules/agpl-3.0_and_unknown_1.yml deleted file mode 100644 index aea634857cf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_and_unknown_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 AND unknown -is_license_tag: yes -relevance: 100 -notes: commercial use right are not clear -ignorable_urls: - - http://introjs.com/ diff --git a/src/licensedcode/data/rules/agpl-3.0_jqh_1.RULE b/src/licensedcode/data/rules/agpl-3.0_jqh_1.RULE index 876aa750bd7..330c1f65cbc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_jqh_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_jqh_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +notes: https://github.com/balupton/jquery-history/tree/35d2afd33390d1678bb9da669a9bf77cef1a5d06 +ignorable_urls: + - http://github.com/balupton/jquery-history/blob/master/COPYING.txt + - http://www.gnu.org/licenses/agpl-3.0.html +--- + * jQuery History is free software; You can redistribute it and/or modify it under the terms of * the GNU Affero General Public License version 3 as published by the Free Software Foundation. * You don't have to do anything special to accept the license and you don’t have to notify diff --git a/src/licensedcode/data/rules/agpl-3.0_jqh_1.yml b/src/licensedcode/data/rules/agpl-3.0_jqh_1.yml deleted file mode 100644 index 2f116ba14b0..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_jqh_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_notice: yes -notes: https://github.com/balupton/jquery-history/tree/35d2afd33390d1678bb9da669a9bf77cef1a5d06 -ignorable_urls: - - http://github.com/balupton/jquery-history/blob/master/COPYING.txt - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license.RULE index 95b97b03c65..80beeeb61ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +notes: from https://github.com/humhub/humhub +--- + * The texts of the GNU Affero General Public License with an additional * permission and of our proprietary license can be found at and * in the LICENSE file you have received along with this program. @@ -9,5 +15,4 @@ * 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. - + * GNU Affero General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license.yml b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license.yml deleted file mode 100644 index 865634029f8..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 OR commercial-license -is_license_notice: yes -notes: from https://github.com/humhub/humhub diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_1.RULE index 14520d8272a..5b7c2e496b8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + available under a dual-licensing model. By default, this library can be used under AGPLv3 terms as detailed in the repository LICENSE file; however, organizations can request a release from the AGPL terms by contacting \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_1.yml deleted file mode 100644 index cb0a7ef6ae2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_2.RULE index 369e204360d..a7444a8681e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.plupload.com/license +--- + Released under AGPL-3.0 License. We also provide commercial license. diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_2.yml deleted file mode 100644 index 5a684cd1b13..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.plupload.com/license diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_3.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_3.RULE index 589cab9e392..717115dc6a8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_3.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.plupload.com/license +--- + * License: http://www.plupload.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_3.yml b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_3.yml deleted file mode 100644 index 5a684cd1b13..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.plupload.com/license diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_4.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_4.RULE index da27a43df22..d40d66eb1b5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # The source code of this program is made available # under the terms of the GNU Affero General Public License version 3 # (GNU AGPL V3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_4.yml b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_4.yml deleted file mode 100644 index 547d8f1a065..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_5.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_5.RULE index 85c76013f0c..cc6c9200d2b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +--- + This program is licensed under the terms of the GNU AGPL v3, or alternatively under a commercial licence. The terms of the AGPL v3 license can be found in the main directory of this diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_5.yml b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_5.yml deleted file mode 100644 index 8730bc433bf..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_6.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_6.RULE index 7324dfd2944..fed0b8bd2ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # The source code of this program is made available # under the terms of the GNU Affero General Public License version 3 # (GNU AGPL V3) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_6.yml b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_6.yml deleted file mode 100644 index b8e592ec15c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_7.RULE b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_7.RULE index d5a8ff518ef..d5cedeb8348 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_7.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_7.RULE @@ -1,2 +1,9 @@ +--- +license_expression: agpl-3.0 OR commercial-license +is_license_notice: yes +referenced_filenames: + - LICENSE_AGPLv3.0.txt +--- + offered under the GNU Affero General Public License v3.0 and as commercial software. A copy of the AGPL license can be found in LICENSE_AGPLv3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_7.yml b/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_7.yml deleted file mode 100644 index 632389c9f9f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_commercial-license_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 OR commercial-license -is_license_notice: yes -referenced_filenames: - - LICENSE_AGPLv3.0.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_or_proprietary-license_1.RULE b/src/licensedcode/data/rules/agpl-3.0_or_proprietary-license_1.RULE index fa1373dafff..418b5a7ed7d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_or_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_or_proprietary-license_1.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +--- + dual-licensed under AGPLv3 and the Proprietary License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_or_proprietary-license_1.yml b/src/licensedcode/data/rules/agpl-3.0_or_proprietary-license_1.yml deleted file mode 100644 index 384f9667521..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_or_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 OR proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_url_1.RULE b/src/licensedcode/data/rules/agpl-3.0_url_1.RULE index 37d0e648e46..409b7ad116a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/agpl-3.0-only +--- + https://spdx.org/licenses/agpl-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_url_1.yml b/src/licensedcode/data/rules/agpl-3.0_url_1.yml deleted file mode 100644 index a6eec74b394..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/agpl-3.0-only diff --git a/src/licensedcode/data/rules/agpl-3.0_url_2.RULE b/src/licensedcode/data/rules/agpl-3.0_url_2.RULE index 7fa115e0181..a5eefcbc96f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/agpl-3.0-only.html +--- + https://spdx.org/licenses/agpl-3.0-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_url_2.yml b/src/licensedcode/data/rules/agpl-3.0_url_2.yml deleted file mode 100644 index da6d35df61f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/agpl-3.0-only.html diff --git a/src/licensedcode/data/rules/agpl-3.0_url_badge.RULE b/src/licensedcode/data/rules/agpl-3.0_url_badge.RULE index 0b46baf1f7a..b8462a748f6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_url_badge.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-AGPL%20v3-blue.svg + - https://www.gnu.org/licenses/agpl-3.0 +--- + [![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_url_badge.yml b/src/licensedcode/data/rules/agpl-3.0_url_badge.yml deleted file mode 100644 index 55a57a2d48b..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-AGPL%20v3-blue.svg - - https://www.gnu.org/licenses/agpl-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_url_glc_119.RULE b/src/licensedcode/data/rules/agpl-3.0_url_glc_119.RULE index 2780471700a..64f45cd1707 100644 --- a/src/licensedcode/data/rules/agpl-3.0_url_glc_119.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_url_glc_119.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl.txt +--- + https://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_url_glc_119.yml b/src/licensedcode/data/rules/agpl-3.0_url_glc_119.yml deleted file mode 100644 index 004a4f86ed4..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_url_glc_119.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_url_glc_138.RULE b/src/licensedcode/data/rules/agpl-3.0_url_glc_138.RULE index 080a87ac033..ecba835cc96 100644 --- a/src/licensedcode/data/rules/agpl-3.0_url_glc_138.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_url_glc_138.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/agpl-3.0 +--- + http://www.opensource.org/licenses/agpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_url_glc_138.yml b/src/licensedcode/data/rules/agpl-3.0_url_glc_138.yml deleted file mode 100644 index 3b0b8b038c3..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_url_glc_138.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/agpl-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_url_glc_139.RULE b/src/licensedcode/data/rules/agpl-3.0_url_glc_139.RULE index 704614c9659..2fa22274c95 100644 --- a/src/licensedcode/data/rules/agpl-3.0_url_glc_139.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_url_glc_139.RULE @@ -1 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/agpl-3.0 +--- + https://www.opensource.org/licenses/agpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_url_glc_139.yml b/src/licensedcode/data/rules/agpl-3.0_url_glc_139.yml deleted file mode 100644 index 947330d48c5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_url_glc_139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/agpl-3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_1.RULE index c1f9c22b6d6..01cc182ff1b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_1.RULE @@ -1,3 +1,21 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_text: yes +relevance: 100 +notes: A set of complex additional terms found at https://github.com/globaleaks/GlobaLeaks/blob/381c2152055ca632ee44aa143c9964d4025960d4/LICENSE#L640 +ignorable_copyrights: + - (c) OF AGPLv3 Pursuant +ignorable_holders: + - AGPLv3 Pursuant +ignorable_authors: + - Hermes Center for Transparency and Digital Human + - attributions. To +ignorable_urls: + - https://www.globaleaks.org/ + - https://www.hermescenter.org/ + - https://www.whistleblowingsolutions.it/ +--- + ADDITIONAL TERMS PURSUANT TO SECTION 7 OF AGPLv3 GlobaLeaks is an open-source whistleblowing framework distributed under the GNU Affero GPL v3 License terms, with Additional Terms pursuant to Section 7 of said diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_1.yml deleted file mode 100644 index c519ed4d9dc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_text: yes -relevance: 100 -notes: A set of complex additional terms found at https://github.com/globaleaks/GlobaLeaks/blob/381c2152055ca632ee44aa143c9964d4025960d4/LICENSE#L640 -ignorable_copyrights: - - (c) OF AGPLv3 Pursuant -ignorable_holders: - - AGPLv3 Pursuant -ignorable_authors: - - Hermes Center for Transparency and Digital Human - - attributions. To -ignorable_urls: - - https://www.globaleaks.org/ - - https://www.hermescenter.org/ - - https://www.whistleblowingsolutions.it/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_10.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_10.RULE index 35d6ba05c82..29e77274c8d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_10.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_10.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_10.yml deleted file mode 100644 index 9e5eae9b4b5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_11.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_11.RULE index 878a21f9e3f..e9237f09621 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_11.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_11.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_11.yml deleted file mode 100644 index 9e5eae9b4b5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_12.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_12.RULE index 4d271a78841..2d813b973d8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_12.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_12.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +ignorable_urls: + - http://www.gnu.org/licenses +--- + * This file is free software: you may redistribute and/or modify it under * the terms of the GNU Affero General Public License as published by the * Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_12.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_12.yml deleted file mode 100644 index 3b40d0a39a3..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_13.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_13.RULE index 7c96e755acd..b68523dc38d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_13.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_13.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +ignorable_urls: + - http://www.gnu.org/licenses +--- + This Program is free software: you may redistribute and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_13.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_13.yml deleted file mode 100644 index 3b40d0a39a3..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_13.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_14.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_14.RULE index ed924cee192..a9b09ba9ab6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_14.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/magpiemodel +--- + MAgPIE NOTES Following the principles of good scientific practice it is recommended diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_14.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_14.yml deleted file mode 100644 index 35f358a0c58..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/magpiemodel diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_15.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_15.RULE index fd3dc8ef3f7..72fcecedcf4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_15.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + The main ogon codebase is licensed under the GNU Affero General Public License version 3 ("AGPL") and the "ogon Core AGPL Exceptions". In addition some components may be licensed under the "ogon Library AGPL diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_15.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_15.yml deleted file mode 100644 index 829febefa6c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_16.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_16.RULE index b45667d1dbe..2bff8192273 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_16.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + OGON CORE AGPL EXCEPTIONS Version 1.0, 1 May 2016 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_16.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_16.yml deleted file mode 100644 index 829febefa6c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_17.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_17.RULE index eba75c09ac3..429142ff276 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_17.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + OGON LIBRARY AGPL EXCEPTIONS Version 1.0, 1 May 2016 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_17.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_17.yml deleted file mode 100644 index 829febefa6c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_18.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_18.RULE index eea4266e9a5..aa94a94cf0e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_18.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.html +--- + * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_18.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_18.yml deleted file mode 100644 index 9e5eae9b4b5..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_19.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_19.RULE index 4aebb4a8cdc..782a2580d3c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_19.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +notes: seen in Mattermost +--- + We promise that we will not enforce the copyleft provisions in AGPL v3.0 against you if your application (a) does not link to directly, but exclusively uses 's Admin Tools and Configuration Files, and (b) you have not modified, added to or adapted the source code of in a way that results in the creation of diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_19.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_19.yml deleted file mode 100644 index dcee5803625..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -notes: seen in Mattermost diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_2.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_2.RULE index fe555cb4bf7..1c759235a39 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_EXCEPTION +--- + License Django JSONStore is an Open Source project licensed under the terms of the AGPL license - The GNU Affero General Public License v3.0 with the Additional Permissions described in LICENSE_EXCEPTION diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_2.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_2.yml deleted file mode 100644 index 793c6c7016f..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_EXCEPTION diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_20.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_20.RULE index b8f5212e0d7..5cfcc35d832 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_20.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_20.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_20.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_20.yml deleted file mode 100644 index 255b9255a9a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_21.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_21.RULE index f400135d646..f38a09f15bc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_21.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_21.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +ignorable_urls: + - https://www.gnu.org/licenses +--- + * This file is free software: you may redistribute and/or modify it under * the terms of the GNU Affero General Public License as published by the * Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_21.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_21.yml deleted file mode 100644 index c52f34feecc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_21.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_22.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_22.RULE index c78fd17a634..a910baa1dcc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_22.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_22.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +ignorable_urls: + - https://www.gnu.org/licenses +--- + This Program is free software: you may redistribute and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_22.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_22.yml deleted file mode 100644 index c52f34feecc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_22.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_23.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_23.RULE index 94038764a01..da3e6c9b369 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_23.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_23.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_EXCEPTION +ignorable_urls: + - http://www.affero.org/oagf.html + - https://www.gnu.org/licenses/agpl-3.0.html +--- + License is an Open Source project licensed under the terms of the AGPL license - `The GNU Affero General Public License v3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_23.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_23.yml deleted file mode 100644 index 247180ac532..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_23.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_EXCEPTION -ignorable_urls: - - http://www.affero.org/oagf.html - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_24.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_24.RULE index e40b0354a16..e73e9665b20 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_24.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_24.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_24.yml deleted file mode 100644 index 255b9255a9a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_25.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_25.RULE index 63fc711405d..d34b0268c81 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_25.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_25.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_EXCEPTION +ignorable_urls: + - http://www.affero.org/oagf.html + - https://www.gnu.org/licenses/agpl-3.0.html +--- + project licensed under the terms of the AGPL license - `The GNU Affero General Public License v3.0 `_ with the Additional Permissions diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_25.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_25.yml deleted file mode 100644 index 247180ac532..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_25.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_EXCEPTION -ignorable_urls: - - http://www.affero.org/oagf.html - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_26.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_26.RULE index bda63531a5a..8a83b9d4a09 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_26.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.html +--- + * This program is a free software product. You can redistribute it and/or * modify it under the terms of the GNU Affero General Public License (AGPL) * version 3 as published by the Free Software Foundation. In accordance with diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_26.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_26.yml deleted file mode 100644 index 255b9255a9a..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_27.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_27.RULE index f859c5dcbbe..080d6072308 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_27.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_27.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +notes: Seen in https://raw.githubusercontent.com/translate5/translate5/develop/plugin-exception.txt +ignorable_urls: + - http://www.translate5.net/license.txt +--- + License Exception for Development of plug-ins for translate5 - Version 1.1, March 30th, 2017 ==================== diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_27.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_27.yml deleted file mode 100644 index 796e398af23..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -notes: Seen in https://raw.githubusercontent.com/translate5/translate5/develop/plugin-exception.txt -ignorable_urls: - - http://www.translate5.net/license.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_28.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_28.RULE index a2ebe77ee14..09cc5086724 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_28.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_28.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +notes: See in https://github.com/translate5/translate5/blob/develop/license.txt +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html + - http://www.translate5.net/plugin-exception.txt +--- + Open Source License This version of translate5 is licensed under the terms of the Open Source GNU AFFERO GENERAL PUBLIC LICENSE version 3. diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_28.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_28.yml deleted file mode 100644 index 429de101b44..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -notes: See in https://github.com/translate5/translate5/blob/develop/license.txt -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html - - http://www.translate5.net/plugin-exception.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_29.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_29.RULE index 4ebd8a3ff84..13a470fa935 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_29.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_29.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +referenced_filenames: + - agpl3-license.txt +notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html + - http://www.translate5.net/plugin-exception.txt +--- + START LICENSE AND COPYRIGHT This file may be used under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE version 3 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_29.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_29.yml deleted file mode 100644 index 89a2bac88c2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_29.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -referenced_filenames: - - agpl3-license.txt -notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html - - http://www.translate5.net/plugin-exception.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_3.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_3.RULE index bac0cdb9e03..a6f40507869 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_EXCEPTION +ignorable_urls: + - http://www.affero.org/oagf.html + - http://www.gnu.org/licenses/agpl-3.0.html +--- + License is an Open Source project licensed under the terms of the AGPL license - `The GNU Affero General Public License v3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_3.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_3.yml deleted file mode 100644 index 98cbefe2953..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_EXCEPTION -ignorable_urls: - - http://www.affero.org/oagf.html - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_30.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_30.RULE index d0b1c23d367..57585811ff2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_30.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_30.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +referenced_filenames: + - agpl3-license.txt +notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html + - http://www.translate5.net/plugin-exception.txt +--- + 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 agpl3-license.txt included in the packaging of this file. Please review the following information diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_30.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_30.yml deleted file mode 100644 index 89a2bac88c2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_30.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -referenced_filenames: - - agpl3-license.txt -notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html - - http://www.translate5.net/plugin-exception.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_31.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_31.RULE index 6ae06cbc437..0a78576bc57 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_31.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_31.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +referenced_filenames: + - agpl3-license.txt +notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html + - http://www.translate5.net/plugin-exception.txt +--- + 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 agpl3-license.txt included in the packaging of this file. Please review the following information diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_31.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_31.yml deleted file mode 100644 index 89a2bac88c2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_31.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -referenced_filenames: - - agpl3-license.txt -notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html - - http://www.translate5.net/plugin-exception.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_32.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_32.RULE index 63e7c459977..802e366c2dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_32.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_32.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +referenced_filenames: + - agpl3-license.txt +notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html + - http://www.translate5.net/plugin-exception.txt +--- + 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 agpl3-license.txt included in the packaging of this file. Please review the following information diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_32.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_32.yml deleted file mode 100644 index 89a2bac88c2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_32.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -referenced_filenames: - - agpl3-license.txt -notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html - - http://www.translate5.net/plugin-exception.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_33.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_33.RULE index ed4ba230016..6d6df9e9024 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_33.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_33.RULE @@ -1,2 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html + - http://www.translate5.net/plugin-exception.txt +--- + @license GNU AFFERO GENERAL PUBLIC LICENSE version 3 with plugin-execption http://www.gnu.org/licenses/agpl.html http://www.translate5.net/plugin-exception.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_33.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_33.yml deleted file mode 100644 index e702c410985..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html - - http://www.translate5.net/plugin-exception.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_34.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_34.RULE index b7bf44af4a3..7127ecf8daa 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_34.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_34.RULE @@ -1,2 +1,11 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php +ignorable_urls: + - http://www.gnu.org/licenses/agpl.html + - http://www.translate5.net/plugin-exception.txt +--- + @license GNU AFFERO GENERAL PUBLIC LICENSE version 3 with plugin-exception http://www.gnu.org/licenses/agpl.html http://www.translate5.net/plugin-exception.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_34.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_34.yml deleted file mode 100644 index e702c410985..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -notes: Seen in https://github.com/translate5/translate5/blob/develop/Translate5/maintenance-cli.php -ignorable_urls: - - http://www.gnu.org/licenses/agpl.html - - http://www.translate5.net/plugin-exception.txt diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_4.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_4.RULE index a8dc0c3c8ef..c81b0448c3e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_EXCEPTION +ignorable_urls: + - http://www.affero.org/oagf.html + - http://www.gnu.org/licenses/agpl-3.0.html +--- + project licensed under the terms of the AGPL license - `The GNU Affero General Public License v3.0 `_ with the Additional Permissions diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_4.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_4.yml deleted file mode 100644 index 98cbefe2953..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_EXCEPTION -ignorable_urls: - - http://www.affero.org/oagf.html - - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_5.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_5.RULE index e42494161e2..993bc6eb41e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_5.RULE @@ -1,3 +1,15 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2013 Openlabs +ignorable_holders: + - Openlabs +ignorable_urls: + - http://openlabs.co.in/ +--- + AGPL with Openlabs Exception License Version 1, June 2013, 26th diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_5.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_5.yml deleted file mode 100644 index 938e1a5b0d3..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_5.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2013 Openlabs -ignorable_holders: - - Openlabs -ignorable_urls: - - http://openlabs.co.in/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_6.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_6.RULE index 93283756ac2..1ee87b4171f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + GNU Affero General Public License Usage Alternatively, the JavaScript code in this page is free software: you can diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_6.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_6.yml deleted file mode 100644 index 829febefa6c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_7.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_7.RULE index 5aa5d4495a8..d4611091c32 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_7.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + GNU Affero General Public License Usage Alternatively, the JavaScript code in this page is free software: you can diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_7.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_7.yml deleted file mode 100644 index 829febefa6c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_8.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_8.RULE index ac2cf15586a..d0261c12dd3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_8.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + As additional permission under GNU AGPL version 3 section 7, you may distribute non-source (e.g., minimized or compacted) forms of that code without the copy of the GNU GPL normally required by section 4, provided diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_8.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_8.yml deleted file mode 100644 index 829febefa6c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_9.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_9.RULE index 9d7fa15c58e..69af572d501 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_9.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + As a special exception to the AGPL, any HTML file which merely makes function calls to this code, and for that purpose includes it by reference shall be deemed a separate work for copyright law purposes. In addition, diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_9.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_9.yml deleted file mode 100644 index 829febefa6c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_and_cc0-1.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_and_cc0-1.0_1.RULE index 3fae39d3085..4877b2059d1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_and_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_and_cc0-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms AND cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + MakeHuman output AGPL exception . Exporting characters from MH application is making a combined work based on the diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_and_cc0-1.0_1.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_and_cc0-1.0_1.yml deleted file mode 100644 index 32bec88afb2..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_and_cc0-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms AND cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_or_commercial-license_1.RULE b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_or_commercial-license_1.RULE index 98cf34d2970..db093d18fda 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_or_commercial-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 WITH agpl-generic-additional-terms OR commercial-license +is_license_notice: yes +relevance: 100 +notes: seen in Mattermost +--- + You may be licensed to use source code to create compiled versions not produced by Inc. in one of two ways: 1. Under the Free Software Foundation’s GNU AGPL v.3.0, subject to the exceptions outlined in this policy; or diff --git a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_or_commercial-license_1.yml b/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_or_commercial-license_1.yml deleted file mode 100644 index 6d52c99e66c..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_agpl-generic-additional-terms_or_commercial-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 WITH agpl-generic-additional-terms OR commercial-license -is_license_notice: yes -relevance: 100 -notes: seen in Mattermost diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_1.RULE b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_1.RULE index a5dea827e51..a6a5b06167c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH nicta-exception +is_license_notice: yes +relevance: 100 +--- + # 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, version 3, provided that these additional diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_1.yml b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_1.yml deleted file mode 100644 index d5e12d5d0fe..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH nicta-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_2.RULE b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_2.RULE index aac31516263..9b23e5b1f02 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH nicta-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3, provided that these additional diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_2.yml b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_2.yml deleted file mode 100644 index 06ea4d0c7df..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH nicta-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_3.RULE b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_3.RULE index 8c2a3a5c855..fa5cf2b11bd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH nicta-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, version 3, provided that these additional diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_3.yml b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_3.yml deleted file mode 100644 index 06ea4d0c7df..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH nicta-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_4.RULE b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_4.RULE index 79238cfcc2f..d2962f55606 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_4.RULE @@ -1 +1,7 @@ +--- +license_expression: agpl-3.0 WITH nicta-exception +is_license_tag: yes +relevance: 100 +--- + # @TAG(NICTA_AGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_4.yml b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_4.yml deleted file mode 100644 index a92eb2714e1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH nicta-exception -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_5.RULE b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_5.RULE index 86622427d35..06bdb61bf64 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH nicta-exception +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by # the Free Software Foundation, version 3, provided that these additional diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_5.yml b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_5.yml deleted file mode 100644 index d158138eeae..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH nicta-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_6.RULE b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_6.RULE index af53261c149..f5f94626cc8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH nicta-exception +is_license_notice: yes +relevance: 100 +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 Affero General Public License as published by # the Free Software Foundation, version 3, provided that these additional diff --git a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_6.yml b/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_6.yml deleted file mode 100644 index d158138eeae..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_nicta-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH nicta-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_1.RULE b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_1.RULE index 98106477b23..81d8fbcc5f8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0-monit +is_license_notice: yes +relevance: 100 +notes: Seen in monit at https://bitbucket.org/tildeslash/monit +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License version 3. * diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_1.yml b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_1.yml deleted file mode 100644 index a981e488de9..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0-monit -is_license_notice: yes -relevance: 100 -notes: Seen in monit at https://bitbucket.org/tildeslash/monit -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_2.RULE b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_2.RULE index 1cecdb92e49..d416db964aa 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0-monit +is_license_notice: yes +relevance: 100 +notes: Seen in monit at https://bitbucket.org/tildeslash/monit +--- + * In addition, as a special exception, the copyright holders give * permission to link the code of portions of this program with the * OpenSSL library under certain conditions as described in each diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_2.yml b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_2.yml deleted file mode 100644 index aff060fdadc..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0-monit -is_license_notice: yes -relevance: 100 -notes: Seen in monit at https://bitbucket.org/tildeslash/monit diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_3.RULE b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_3.RULE index 000960f1429..bbfb37ca664 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0-monit +is_license_notice: yes +relevance: 100 +notes: Seen in monit at https://bitbucket.org/tildeslash/monit +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 Affero General Public License version 3. * diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_3.yml b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_3.yml deleted file mode 100644 index be23080cbb4..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0-monit_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0-monit -is_license_notice: yes -relevance: 100 -notes: Seen in monit at https://bitbucket.org/tildeslash/monit -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_1.RULE b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_1.RULE index ba043d4c496..115c58b233f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, as published by the Free Software Foundation. @@ -17,4 +24,4 @@ file(s) with this exception, you may extend this exception to your version of the file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source files in the program, -then also delete it in the license file. +then also delete it in the license file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_1.yml b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_1.yml deleted file mode 100644 index 1d0cb1f29f0..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_2.RULE b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_2.RULE index 01db88ee2ce..6136f8a043f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0 +is_license_notice: yes +relevance: 100 +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 Affero General Public License, version 3, as published by the Free Software Foundation. @@ -17,4 +25,4 @@ file(s) with this exception, you may extend this exception to your version of the file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source files in the program, -then also delete it in the license file. +then also delete it in the license file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_2.yml b/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_2.yml deleted file mode 100644 index 08ee3bc09a1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_openssl-exception-agpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: agpl-3.0 WITH openssl-exception-agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_1.RULE b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_1.RULE index d393f9fa212..0e8ec37701e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-3.0 WITH ps-or-pdf-font-exception-20170817 +is_license_notice: yes +relevance: 100 +--- + Additionally, the font files (in Resource/Font) are distributed under the AGPL with the following exemption: diff --git a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_1.yml b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_1.yml deleted file mode 100644 index dd04d368531..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 WITH ps-or-pdf-font-exception-20170817 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_2.RULE b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_2.RULE index 1838633f002..485ee8b7190 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_2.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: agpl-3.0 WITH ps-or-pdf-font-exception-20170817 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.artifex.com/ +--- + This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, diff --git a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_2.yml b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_2.yml deleted file mode 100644 index a104418ccc1..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: agpl-3.0 WITH ps-or-pdf-font-exception-20170817 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.artifex.com/ diff --git a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_3.RULE b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_3.RULE index 164fa95bd0b..92f97c6ba77 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0 WITH ps-or-pdf-font-exception-20170817 +is_license_notice: yes +relevance: 95 +notes: this is only the exception part +--- + As a special exception, permission is granted to include these font programs in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless diff --git a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_3.yml b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_3.yml deleted file mode 100644 index b664b722205..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0 WITH ps-or-pdf-font-exception-20170817 -is_license_notice: yes -relevance: 95 -notes: this is only the exception part diff --git a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_4.RULE b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_4.RULE index e3f3811b513..49294e5114b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_4.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: agpl-3.0 WITH ps-or-pdf-font-exception-20170817 +is_license_notice: yes +--- + As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document diff --git a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_4.yml b/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_4.yml deleted file mode 100644 index 40ecb25e58e..00000000000 --- a/src/licensedcode/data/rules/agpl-3.0_with_ps-or-pdf-font-exception-20170817_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: agpl-3.0 WITH ps-or-pdf-font-exception-20170817 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/agpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/agpl-generic-additional-terms_1.RULE index 52626e7205d..6b47d00d12d 100644 --- a/src/licensedcode/data/rules/agpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/agpl-generic-additional-terms_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + * If you modify this program, or any covered work, by linking or * * combining it with the OpenSSL project's OpenSSL library (or a * * modified version of that library), containing parts covered by the * diff --git a/src/licensedcode/data/rules/agpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/agpl-generic-additional-terms_1.yml deleted file mode 100644 index 5e18ffdebc5..00000000000 --- a/src/licensedcode/data/rules/agpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/aladdin-md5.RULE b/src/licensedcode/data/rules/aladdin-md5.RULE index 9168f14c1b9..d2ecf3f6e5a 100644 --- a/src/licensedcode/data/rules/aladdin-md5.RULE +++ b/src/licensedcode/data/rules/aladdin-md5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: zlib +is_license_notice: yes +ignorable_urls: + - http://www.ietf.org/rfc/rfc1321.txt +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -23,4 +30,4 @@ The code is derived from the text of the RFC, including the test suite (section A.5) but excluding the rest of Appendix A. It does not include any code or documentation that is identified in the RFC as being - copyrighted. + copyrighted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/aladdin-md5.yml b/src/licensedcode/data/rules/aladdin-md5.yml deleted file mode 100644 index 75b188fd3d9..00000000000 --- a/src/licensedcode/data/rules/aladdin-md5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_notice: yes -ignorable_urls: - - http://www.ietf.org/rfc/rfc1321.txt diff --git a/src/licensedcode/data/rules/allegro-4_1.RULE b/src/licensedcode/data/rules/allegro-4_1.RULE index 18420b721b8..c42b46f57db 100644 --- a/src/licensedcode/data/rules/allegro-4_1.RULE +++ b/src/licensedcode/data/rules/allegro-4_1.RULE @@ -1 +1,10 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Giftware License \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_1.yml b/src/licensedcode/data/rules/allegro-4_1.yml deleted file mode 100644 index e941a40875d..00000000000 --- a/src/licensedcode/data/rules/allegro-4_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/allegro-4_10.RULE b/src/licensedcode/data/rules/allegro-4_10.RULE index 77c6ed31a3b..dd3db5ae767 100644 --- a/src/licensedcode/data/rules/allegro-4_10.RULE +++ b/src/licensedcode/data/rules/allegro-4_10.RULE @@ -1 +1,9 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Giftware +--- + {{Giftware}} https://spdx.org/licenses/Giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_10.yml b/src/licensedcode/data/rules/allegro-4_10.yml deleted file mode 100644 index 884bef36ef7..00000000000 --- a/src/licensedcode/data/rules/allegro-4_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Giftware diff --git a/src/licensedcode/data/rules/allegro-4_11.RULE b/src/licensedcode/data/rules/allegro-4_11.RULE index 6452fa1b036..079bbe49407 100644 --- a/src/licensedcode/data/rules/allegro-4_11.RULE +++ b/src/licensedcode/data/rules/allegro-4_11.RULE @@ -1 +1,9 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Giftware +--- + LICENSE {{Giftware}} https://spdx.org/licenses/Giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_11.yml b/src/licensedcode/data/rules/allegro-4_11.yml deleted file mode 100644 index 884bef36ef7..00000000000 --- a/src/licensedcode/data/rules/allegro-4_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Giftware diff --git a/src/licensedcode/data/rules/allegro-4_2.RULE b/src/licensedcode/data/rules/allegro-4_2.RULE index 13518094fb5..1c1c1c7c1d9 100644 --- a/src/licensedcode/data/rules/allegro-4_2.RULE +++ b/src/licensedcode/data/rules/allegro-4_2.RULE @@ -1 +1,10 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Giftware License \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_2.yml b/src/licensedcode/data/rules/allegro-4_2.yml deleted file mode 100644 index e941a40875d..00000000000 --- a/src/licensedcode/data/rules/allegro-4_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/allegro-4_3.RULE b/src/licensedcode/data/rules/allegro-4_3.RULE index fa5e796ab51..10035a68647 100644 --- a/src/licensedcode/data/rules/allegro-4_3.RULE +++ b/src/licensedcode/data/rules/allegro-4_3.RULE @@ -1 +1,10 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Giftware Giftware License \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_3.yml b/src/licensedcode/data/rules/allegro-4_3.yml deleted file mode 100644 index e941a40875d..00000000000 --- a/src/licensedcode/data/rules/allegro-4_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/allegro-4_4.RULE b/src/licensedcode/data/rules/allegro-4_4.RULE index 1041698ff12..bd11883a84f 100644 --- a/src/licensedcode/data/rules/allegro-4_4.RULE +++ b/src/licensedcode/data/rules/allegro-4_4.RULE @@ -1 +1,10 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Giftware License Giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_4.yml b/src/licensedcode/data/rules/allegro-4_4.yml deleted file mode 100644 index e941a40875d..00000000000 --- a/src/licensedcode/data/rules/allegro-4_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/allegro-4_5.RULE b/src/licensedcode/data/rules/allegro-4_5.RULE index cd377bf1f8e..78115c1c167 100644 --- a/src/licensedcode/data/rules/allegro-4_5.RULE +++ b/src/licensedcode/data/rules/allegro-4_5.RULE @@ -1 +1,10 @@ +--- +license_expression: allegro-4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_5.yml b/src/licensedcode/data/rules/allegro-4_5.yml deleted file mode 100644 index 9e409485b64..00000000000 --- a/src/licensedcode/data/rules/allegro-4_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: allegro-4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/allegro-4_6.RULE b/src/licensedcode/data/rules/allegro-4_6.RULE index 72730a790d3..d4f0ea8d2e9 100644 --- a/src/licensedcode/data/rules/allegro-4_6.RULE +++ b/src/licensedcode/data/rules/allegro-4_6.RULE @@ -1 +1,10 @@ +--- +license_expression: allegro-4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Giftware License \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_6.yml b/src/licensedcode/data/rules/allegro-4_6.yml deleted file mode 100644 index 9e409485b64..00000000000 --- a/src/licensedcode/data/rules/allegro-4_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: allegro-4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/allegro-4_7.RULE b/src/licensedcode/data/rules/allegro-4_7.RULE index c9baed311e0..456eac37659 100644 --- a/src/licensedcode/data/rules/allegro-4_7.RULE +++ b/src/licensedcode/data/rules/allegro-4_7.RULE @@ -1 +1,10 @@ +--- +license_expression: allegro-4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_7.yml b/src/licensedcode/data/rules/allegro-4_7.yml deleted file mode 100644 index 9e409485b64..00000000000 --- a/src/licensedcode/data/rules/allegro-4_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: allegro-4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/allegro-4_8.RULE b/src/licensedcode/data/rules/allegro-4_8.RULE index eb5de2659d0..761dae943a0 100644 --- a/src/licensedcode/data/rules/allegro-4_8.RULE +++ b/src/licensedcode/data/rules/allegro-4_8.RULE @@ -1 +1,9 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Giftware +--- + https://licenses.nuget.org/Giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_8.yml b/src/licensedcode/data/rules/allegro-4_8.yml deleted file mode 100644 index 862447940cc..00000000000 --- a/src/licensedcode/data/rules/allegro-4_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Giftware diff --git a/src/licensedcode/data/rules/allegro-4_9.RULE b/src/licensedcode/data/rules/allegro-4_9.RULE index b202fd90ebc..507acfcbce0 100644 --- a/src/licensedcode/data/rules/allegro-4_9.RULE +++ b/src/licensedcode/data/rules/allegro-4_9.RULE @@ -1 +1,7 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_9.yml b/src/licensedcode/data/rules/allegro-4_9.yml deleted file mode 100644 index 0f59444e073..00000000000 --- a/src/licensedcode/data/rules/allegro-4_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/allegro-4_url_1.RULE b/src/licensedcode/data/rules/allegro-4_url_1.RULE index 084bababaf5..0291e288849 100644 --- a/src/licensedcode/data/rules/allegro-4_url_1.RULE +++ b/src/licensedcode/data/rules/allegro-4_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/giftware +--- + https://spdx.org/licenses/giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_url_1.yml b/src/licensedcode/data/rules/allegro-4_url_1.yml deleted file mode 100644 index fed5133422d..00000000000 --- a/src/licensedcode/data/rules/allegro-4_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/giftware diff --git a/src/licensedcode/data/rules/allegro-4_url_2.RULE b/src/licensedcode/data/rules/allegro-4_url_2.RULE index 5c8ab33e3f2..066e3950507 100644 --- a/src/licensedcode/data/rules/allegro-4_url_2.RULE +++ b/src/licensedcode/data/rules/allegro-4_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/giftware.html +--- + https://spdx.org/licenses/giftware.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/allegro-4_url_2.yml b/src/licensedcode/data/rules/allegro-4_url_2.yml deleted file mode 100644 index a17f2b479e7..00000000000 --- a/src/licensedcode/data/rules/allegro-4_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/giftware.html diff --git a/src/licensedcode/data/rules/amazon-sl.RULE b/src/licensedcode/data/rules/amazon-sl.RULE index c3c26b66d65..97ed1f0f739 100644 --- a/src/licensedcode/data/rules/amazon-sl.RULE +++ b/src/licensedcode/data/rules/amazon-sl.RULE @@ -1 +1,9 @@ +--- +license_expression: amazon-sl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://aws.amazon.com/asl/ +--- + http://aws.amazon.com/asl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl.yml b/src/licensedcode/data/rules/amazon-sl.yml deleted file mode 100644 index 6b436ba10e3..00000000000 --- a/src/licensedcode/data/rules/amazon-sl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: amazon-sl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://aws.amazon.com/asl/ diff --git a/src/licensedcode/data/rules/amazon-sl_1.RULE b/src/licensedcode/data/rules/amazon-sl_1.RULE index 9d3b971a3d4..28f8cf53ca5 100644 --- a/src/licensedcode/data/rules/amazon-sl_1.RULE +++ b/src/licensedcode/data/rules/amazon-sl_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: amazon-sl +is_license_text: yes +--- + Amazon Software License This Amazon Software License (“License”) governs your use, reproduction, and distribution of the accompanying software as specified below. 1. Definitions @@ -23,4 +28,4 @@ Works, including the Software, are “made available” under this License by in 4. Disclaimer of Warranty. THE WORK IS PROVIDED “AS IS” WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WARRANTIES OR CONDITIONS OF M ERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT. YOU BEAR THE RISK OF UNDERTAKING ANY ACTIVITIES UNDER THIS LICENSE. SOME STATES’ CONSUMER LAWS DO NOT ALLOW EXCLUSION OF AN IMPLIED WARRANTY, SO THIS DISCLAIMER MAY NOT APPLY TO YOU. 5. Limitation of Liability. -EXCEPT AS PROHIBITED BY APPLICABLE LAW, IN NO EVENT AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE SHALL ANY LICENSOR BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE, THE USE OR INABILITY TO USE THE WORK (INCLUDING BUT NOT LIMITED TO LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY OTHER COMM ERCIAL DAMAGES OR LOSSES), EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. +EXCEPT AS PROHIBITED BY APPLICABLE LAW, IN NO EVENT AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE SHALL ANY LICENSOR BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE, THE USE OR INABILITY TO USE THE WORK (INCLUDING BUT NOT LIMITED TO LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY OTHER COMM ERCIAL DAMAGES OR LOSSES), EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_1.yml b/src/licensedcode/data/rules/amazon-sl_1.yml deleted file mode 100644 index a6e175055f8..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: amazon-sl -is_license_text: yes diff --git a/src/licensedcode/data/rules/amazon-sl_10.RULE b/src/licensedcode/data/rules/amazon-sl_10.RULE index a2c92f12918..1bafc9f3409 100644 --- a/src/licensedcode/data/rules/amazon-sl_10.RULE +++ b/src/licensedcode/data/rules/amazon-sl_10.RULE @@ -1 +1,8 @@ +--- +license_expression: amazon-sl +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + {{Amazon Software License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_10.yml b/src/licensedcode/data/rules/amazon-sl_10.yml deleted file mode 100644 index 0413f4c09c0..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: amazon-sl -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/amazon-sl_11.RULE b/src/licensedcode/data/rules/amazon-sl_11.RULE index 35e5e076e27..99c2bd08690 100644 --- a/src/licensedcode/data/rules/amazon-sl_11.RULE +++ b/src/licensedcode/data/rules/amazon-sl_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: amazon-sl +is_license_text: yes +--- + Amazon Software License 1.0 This Amazon Software License ("License") governs your use, reproduction, and diff --git a/src/licensedcode/data/rules/amazon-sl_11.yml b/src/licensedcode/data/rules/amazon-sl_11.yml deleted file mode 100644 index a6e175055f8..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: amazon-sl -is_license_text: yes diff --git a/src/licensedcode/data/rules/amazon-sl_12.RULE b/src/licensedcode/data/rules/amazon-sl_12.RULE index 60f128d0ba2..03e823bb814 100644 --- a/src/licensedcode/data/rules/amazon-sl_12.RULE +++ b/src/licensedcode/data/rules/amazon-sl_12.RULE @@ -1 +1,9 @@ +--- +license_expression: amazon-sl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://aws.amazon.com/asl/ +--- + // Licensed under the {{Amazon Software License}} http://aws.amazon.com/asl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_12.yml b/src/licensedcode/data/rules/amazon-sl_12.yml deleted file mode 100644 index 95443ef3e94..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: amazon-sl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://aws.amazon.com/asl/ diff --git a/src/licensedcode/data/rules/amazon-sl_13.RULE b/src/licensedcode/data/rules/amazon-sl_13.RULE index 1a3432883d2..4976d162aa0 100644 --- a/src/licensedcode/data/rules/amazon-sl_13.RULE +++ b/src/licensedcode/data/rules/amazon-sl_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: amazon-sl +is_license_notice: yes +ignorable_urls: + - http://aws.amazon.com/asl/ +--- + * Licensed under the {{Amazon Software License}} (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at diff --git a/src/licensedcode/data/rules/amazon-sl_13.yml b/src/licensedcode/data/rules/amazon-sl_13.yml deleted file mode 100644 index d6173fe11ab..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: amazon-sl -is_license_notice: yes -ignorable_urls: - - http://aws.amazon.com/asl/ diff --git a/src/licensedcode/data/rules/amazon-sl_14.RULE b/src/licensedcode/data/rules/amazon-sl_14.RULE index 30190d99fef..b5137b76294 100644 --- a/src/licensedcode/data/rules/amazon-sl_14.RULE +++ b/src/licensedcode/data/rules/amazon-sl_14.RULE @@ -1 +1,7 @@ +--- +license_expression: amazon-sl +is_license_notice: yes +relevance: 100 +--- + This library is licensed under the Amazon Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_14.yml b/src/licensedcode/data/rules/amazon-sl_14.yml deleted file mode 100644 index 62085688f3c..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amazon-sl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/amazon-sl_15.RULE b/src/licensedcode/data/rules/amazon-sl_15.RULE index 1db49a57b62..84fa76e72c2 100644 --- a/src/licensedcode/data/rules/amazon-sl_15.RULE +++ b/src/licensedcode/data/rules/amazon-sl_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: amazon-sl +is_license_notice: yes +ignorable_urls: + - http://aws.amazon.com/asl/ +--- + You may not use this file except in compliance with the Amazon Software License. A copy of the {{Amazon Software License}} is located at: http://aws.amazon.com/asl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_15.yml b/src/licensedcode/data/rules/amazon-sl_15.yml deleted file mode 100644 index d6173fe11ab..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: amazon-sl -is_license_notice: yes -ignorable_urls: - - http://aws.amazon.com/asl/ diff --git a/src/licensedcode/data/rules/amazon-sl_2.RULE b/src/licensedcode/data/rules/amazon-sl_2.RULE index 09aa165a8ea..3a62d92f623 100644 --- a/src/licensedcode/data/rules/amazon-sl_2.RULE +++ b/src/licensedcode/data/rules/amazon-sl_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: amazon-sl +is_license_notice: yes +ignorable_urls: + - http://aws.amazon.com/asl/ +--- + * Licensed under the Amazon Software License (the "License"). * You may not use this file except in compliance with the * License. A copy of the License is located at diff --git a/src/licensedcode/data/rules/amazon-sl_2.yml b/src/licensedcode/data/rules/amazon-sl_2.yml deleted file mode 100644 index d6173fe11ab..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: amazon-sl -is_license_notice: yes -ignorable_urls: - - http://aws.amazon.com/asl/ diff --git a/src/licensedcode/data/rules/amazon-sl_3.RULE b/src/licensedcode/data/rules/amazon-sl_3.RULE index 1db36dcbe8b..44acfa752b4 100644 --- a/src/licensedcode/data/rules/amazon-sl_3.RULE +++ b/src/licensedcode/data/rules/amazon-sl_3.RULE @@ -1 +1,7 @@ +--- +license_expression: amazon-sl +is_license_reference: yes +relevance: 100 +--- + Amazon Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_3.yml b/src/licensedcode/data/rules/amazon-sl_3.yml deleted file mode 100644 index 79b64e8534d..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amazon-sl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/amazon-sl_4.RULE b/src/licensedcode/data/rules/amazon-sl_4.RULE index 5ae6a6f6c1c..27126f6ce25 100644 --- a/src/licensedcode/data/rules/amazon-sl_4.RULE +++ b/src/licensedcode/data/rules/amazon-sl_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: amazon-sl +is_license_text: yes +ignorable_copyrights: + - (c) 2008 Amazon.com, Inc. or its affiliates +ignorable_holders: + - Amazon.com, Inc. or its affiliates +--- + Amazon Software License diff --git a/src/licensedcode/data/rules/amazon-sl_4.yml b/src/licensedcode/data/rules/amazon-sl_4.yml deleted file mode 100644 index 620afd12779..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: amazon-sl -is_license_text: yes -ignorable_copyrights: - - (c) 2008 Amazon.com, Inc. or its affiliates -ignorable_holders: - - Amazon.com, Inc. or its affiliates diff --git a/src/licensedcode/data/rules/amazon-sl_5.RULE b/src/licensedcode/data/rules/amazon-sl_5.RULE index 57c7629df31..0cd91deffc2 100644 --- a/src/licensedcode/data/rules/amazon-sl_5.RULE +++ b/src/licensedcode/data/rules/amazon-sl_5.RULE @@ -1 +1,7 @@ +--- +license_expression: amazon-sl +is_license_reference: yes +relevance: 100 +--- + being licensed under the Amazon Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_5.yml b/src/licensedcode/data/rules/amazon-sl_5.yml deleted file mode 100644 index 79b64e8534d..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amazon-sl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/amazon-sl_6.RULE b/src/licensedcode/data/rules/amazon-sl_6.RULE index 307e72d69c0..93fff3a81e7 100644 --- a/src/licensedcode/data/rules/amazon-sl_6.RULE +++ b/src/licensedcode/data/rules/amazon-sl_6.RULE @@ -1 +1,7 @@ +--- +license_expression: amazon-sl +is_license_reference: yes +relevance: 100 +--- + licensed under the Amazon Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_6.yml b/src/licensedcode/data/rules/amazon-sl_6.yml deleted file mode 100644 index 79b64e8534d..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amazon-sl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/amazon-sl_7.RULE b/src/licensedcode/data/rules/amazon-sl_7.RULE index 6d2984526e3..cd54e081347 100644 --- a/src/licensedcode/data/rules/amazon-sl_7.RULE +++ b/src/licensedcode/data/rules/amazon-sl_7.RULE @@ -1 +1,7 @@ +--- +license_expression: amazon-sl +is_license_reference: yes +relevance: 100 +--- + license Amazon Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_7.yml b/src/licensedcode/data/rules/amazon-sl_7.yml deleted file mode 100644 index 79b64e8534d..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amazon-sl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/amazon-sl_8.RULE b/src/licensedcode/data/rules/amazon-sl_8.RULE index 26201d7df24..dd101219495 100644 --- a/src/licensedcode/data/rules/amazon-sl_8.RULE +++ b/src/licensedcode/data/rules/amazon-sl_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: amazon-sl +is_license_reference: yes +relevance: 100 +--- + License This library is licensed under the Amazon Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_8.yml b/src/licensedcode/data/rules/amazon-sl_8.yml deleted file mode 100644 index 79b64e8534d..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amazon-sl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/amazon-sl_9.RULE b/src/licensedcode/data/rules/amazon-sl_9.RULE index 3325c69a023..0cba5e18ab7 100644 --- a/src/licensedcode/data/rules/amazon-sl_9.RULE +++ b/src/licensedcode/data/rules/amazon-sl_9.RULE @@ -1,2 +1,7 @@ +--- +license_expression: amazon-sl +is_license_notice: yes +--- + licensed under the Amazon Software License. In accordance with the terms of such license, I am releasing my version also under the Amazon Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/amazon-sl_9.yml b/src/licensedcode/data/rules/amazon-sl_9.yml deleted file mode 100644 index c78f175ed33..00000000000 --- a/src/licensedcode/data/rules/amazon-sl_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: amazon-sl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/amd-historical1.RULE b/src/licensedcode/data/rules/amd-historical1.RULE index c545d1ea6bf..1513d1faeca 100644 --- a/src/licensedcode/data/rules/amd-historical1.RULE +++ b/src/licensedcode/data/rules/amd-historical1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: amd-historical +is_license_text: yes +minimum_coverage: 10 +--- + This software is the property of , Inc which specifically grants the user the right to modify, use and distribute this software provided this notice is not removed or altered. All other rights are @@ -6,4 +12,4 @@ reserved by . MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS SOFTWARE. IN NO EVENT SHALL BE LIABLE FOR INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING FROM -THE FURNISHING, PERFORMANCE, OR USE OF THIS SOFTWARE. +THE FURNISHING, PERFORMANCE, OR USE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/amd-historical1.yml b/src/licensedcode/data/rules/amd-historical1.yml deleted file mode 100644 index d917010652b..00000000000 --- a/src/licensedcode/data/rules/amd-historical1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amd-historical -is_license_text: yes -minimum_coverage: 10 diff --git a/src/licensedcode/data/rules/amd-historical2.RULE b/src/licensedcode/data/rules/amd-historical2.RULE index 6aa740c0c02..2723a873a96 100644 --- a/src/licensedcode/data/rules/amd-historical2.RULE +++ b/src/licensedcode/data/rules/amd-historical2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: amd-historical +is_license_text: yes +minimum_coverage: 10 +--- + This software is the property of , Inc which specifically grants the user the right to modify, use and distribute this diff --git a/src/licensedcode/data/rules/amd-historical2.yml b/src/licensedcode/data/rules/amd-historical2.yml deleted file mode 100644 index d917010652b..00000000000 --- a/src/licensedcode/data/rules/amd-historical2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amd-historical -is_license_text: yes -minimum_coverage: 10 diff --git a/src/licensedcode/data/rules/amd-historical3.RULE b/src/licensedcode/data/rules/amd-historical3.RULE index b30810ebc36..0cfd5a8dfee 100644 --- a/src/licensedcode/data/rules/amd-historical3.RULE +++ b/src/licensedcode/data/rules/amd-historical3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: amd-historical +is_license_text: yes +--- + This software is the property of , Inc which specifically grants the user the right to modify, use and distribute this @@ -11,4 +16,4 @@ USE OF THIS SOFTWARE. So that all may benefit from your experience, please report any problems -or suggestions about this software to the \ No newline at end of file +or suggestions about this software to the \ No newline at end of file diff --git a/src/licensedcode/data/rules/amd-historical3.yml b/src/licensedcode/data/rules/amd-historical3.yml deleted file mode 100644 index 3a2c1a8d84f..00000000000 --- a/src/licensedcode/data/rules/amd-historical3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: amd-historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/amd-historical4.RULE b/src/licensedcode/data/rules/amd-historical4.RULE index 7ae96721bdb..51f7e12fdc3 100644 --- a/src/licensedcode/data/rules/amd-historical4.RULE +++ b/src/licensedcode/data/rules/amd-historical4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: amd-historical +is_license_text: yes +--- + This software is the property of , Inc () which specifically grants the user the right to modify, use and distribute this software provided this notice is not removed or altered. All other rights are diff --git a/src/licensedcode/data/rules/amd-historical4.yml b/src/licensedcode/data/rules/amd-historical4.yml deleted file mode 100644 index 3a2c1a8d84f..00000000000 --- a/src/licensedcode/data/rules/amd-historical4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: amd-historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/amd-historical_1.RULE b/src/licensedcode/data/rules/amd-historical_1.RULE index 1adc6e306ce..a38d3d10f3b 100644 --- a/src/licensedcode/data/rules/amd-historical_1.RULE +++ b/src/licensedcode/data/rules/amd-historical_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: amd-historical +is_license_text: yes +relevance: 100 +notes: found in newlib +--- + This software is the property of Advanced Micro Devices, Inc (AMD) which specifically grants the user the right to modify, use and distribute this software provided this notice is not removed or altered. All other rights diff --git a/src/licensedcode/data/rules/amd-historical_1.yml b/src/licensedcode/data/rules/amd-historical_1.yml deleted file mode 100644 index 46240ce7b28..00000000000 --- a/src/licensedcode/data/rules/amd-historical_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: amd-historical -is_license_text: yes -relevance: 100 -notes: found in newlib diff --git a/src/licensedcode/data/rules/amdplpa_1.RULE b/src/licensedcode/data/rules/amdplpa_1.RULE index b7c6275b927..5a215d37125 100644 --- a/src/licensedcode/data/rules/amdplpa_1.RULE +++ b/src/licensedcode/data/rules/amdplpa_1.RULE @@ -1 +1,6 @@ +--- +license_expression: amdplpa +is_license_reference: yes +--- + AMDPLPA AMD's plpa_map.c License \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_1.yml b/src/licensedcode/data/rules/amdplpa_1.yml deleted file mode 100644 index ae01d260f61..00000000000 --- a/src/licensedcode/data/rules/amdplpa_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes diff --git a/src/licensedcode/data/rules/amdplpa_10.RULE b/src/licensedcode/data/rules/amdplpa_10.RULE index 4570a6dd721..2c3145b9d73 100644 --- a/src/licensedcode/data/rules/amdplpa_10.RULE +++ b/src/licensedcode/data/rules/amdplpa_10.RULE @@ -1 +1,9 @@ +--- +license_expression: amdplpa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AMDPLPA +--- + {{AMDPLPA}} https://spdx.org/licenses/AMDPLPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_10.yml b/src/licensedcode/data/rules/amdplpa_10.yml deleted file mode 100644 index 40f1f1f8a0c..00000000000 --- a/src/licensedcode/data/rules/amdplpa_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AMDPLPA diff --git a/src/licensedcode/data/rules/amdplpa_11.RULE b/src/licensedcode/data/rules/amdplpa_11.RULE index a73495160a0..56049b68508 100644 --- a/src/licensedcode/data/rules/amdplpa_11.RULE +++ b/src/licensedcode/data/rules/amdplpa_11.RULE @@ -1 +1,9 @@ +--- +license_expression: amdplpa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AMDPLPA +--- + LICENSE {{AMDPLPA}} https://spdx.org/licenses/AMDPLPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_11.yml b/src/licensedcode/data/rules/amdplpa_11.yml deleted file mode 100644 index 40f1f1f8a0c..00000000000 --- a/src/licensedcode/data/rules/amdplpa_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AMDPLPA diff --git a/src/licensedcode/data/rules/amdplpa_2.RULE b/src/licensedcode/data/rules/amdplpa_2.RULE index 57d3a8d5136..dede59013be 100644 --- a/src/licensedcode/data/rules/amdplpa_2.RULE +++ b/src/licensedcode/data/rules/amdplpa_2.RULE @@ -1 +1,10 @@ +--- +license_expression: amdplpa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AMD's plpa_map.c License \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_2.yml b/src/licensedcode/data/rules/amdplpa_2.yml deleted file mode 100644 index fbb80f46c7c..00000000000 --- a/src/licensedcode/data/rules/amdplpa_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/amdplpa_3.RULE b/src/licensedcode/data/rules/amdplpa_3.RULE index 44c11b35ba0..74254bf97ff 100644 --- a/src/licensedcode/data/rules/amdplpa_3.RULE +++ b/src/licensedcode/data/rules/amdplpa_3.RULE @@ -1 +1,10 @@ +--- +license_expression: amdplpa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: AMD's plpa_map.c License \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_3.yml b/src/licensedcode/data/rules/amdplpa_3.yml deleted file mode 100644 index fbb80f46c7c..00000000000 --- a/src/licensedcode/data/rules/amdplpa_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/amdplpa_4.RULE b/src/licensedcode/data/rules/amdplpa_4.RULE index c0f3d61ddbc..17fe437309b 100644 --- a/src/licensedcode/data/rules/amdplpa_4.RULE +++ b/src/licensedcode/data/rules/amdplpa_4.RULE @@ -1 +1,10 @@ +--- +license_expression: amdplpa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + AMD's plpa_map.c License AMDPLPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_4.yml b/src/licensedcode/data/rules/amdplpa_4.yml deleted file mode 100644 index fbb80f46c7c..00000000000 --- a/src/licensedcode/data/rules/amdplpa_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/amdplpa_5.RULE b/src/licensedcode/data/rules/amdplpa_5.RULE index 5ccfaff2cd3..587da6d96f7 100644 --- a/src/licensedcode/data/rules/amdplpa_5.RULE +++ b/src/licensedcode/data/rules/amdplpa_5.RULE @@ -1 +1,10 @@ +--- +license_expression: amdplpa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AMDPLPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_5.yml b/src/licensedcode/data/rules/amdplpa_5.yml deleted file mode 100644 index 9feca36fc0b..00000000000 --- a/src/licensedcode/data/rules/amdplpa_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: amdplpa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/amdplpa_6.RULE b/src/licensedcode/data/rules/amdplpa_6.RULE index 527de17699b..b169dbb1eb3 100644 --- a/src/licensedcode/data/rules/amdplpa_6.RULE +++ b/src/licensedcode/data/rules/amdplpa_6.RULE @@ -1 +1,10 @@ +--- +license_expression: amdplpa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AMD's plpa_map.c License \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_6.yml b/src/licensedcode/data/rules/amdplpa_6.yml deleted file mode 100644 index 9feca36fc0b..00000000000 --- a/src/licensedcode/data/rules/amdplpa_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: amdplpa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/amdplpa_7.RULE b/src/licensedcode/data/rules/amdplpa_7.RULE index 40e8979ecf6..c4f371a79b5 100644 --- a/src/licensedcode/data/rules/amdplpa_7.RULE +++ b/src/licensedcode/data/rules/amdplpa_7.RULE @@ -1 +1,10 @@ +--- +license_expression: amdplpa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AMDPLPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_7.yml b/src/licensedcode/data/rules/amdplpa_7.yml deleted file mode 100644 index 9feca36fc0b..00000000000 --- a/src/licensedcode/data/rules/amdplpa_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: amdplpa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/amdplpa_8.RULE b/src/licensedcode/data/rules/amdplpa_8.RULE index a7b5e9779aa..f4d705fe4c5 100644 --- a/src/licensedcode/data/rules/amdplpa_8.RULE +++ b/src/licensedcode/data/rules/amdplpa_8.RULE @@ -1 +1,9 @@ +--- +license_expression: amdplpa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AMDPLPA +--- + https://licenses.nuget.org/AMDPLPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_8.yml b/src/licensedcode/data/rules/amdplpa_8.yml deleted file mode 100644 index 20182a3d287..00000000000 --- a/src/licensedcode/data/rules/amdplpa_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AMDPLPA diff --git a/src/licensedcode/data/rules/amdplpa_9.RULE b/src/licensedcode/data/rules/amdplpa_9.RULE index e84f0bf854e..ae13b6ccf69 100644 --- a/src/licensedcode/data/rules/amdplpa_9.RULE +++ b/src/licensedcode/data/rules/amdplpa_9.RULE @@ -1 +1,7 @@ +--- +license_expression: amdplpa +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AMDPLPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_9.yml b/src/licensedcode/data/rules/amdplpa_9.yml deleted file mode 100644 index e392d0e3503..00000000000 --- a/src/licensedcode/data/rules/amdplpa_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/amdplpa_url_1.RULE b/src/licensedcode/data/rules/amdplpa_url_1.RULE index fa24f4c23f9..2115a7f9e1c 100644 --- a/src/licensedcode/data/rules/amdplpa_url_1.RULE +++ b/src/licensedcode/data/rules/amdplpa_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: amdplpa +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/amdplpa +--- + https://spdx.org/licenses/amdplpa \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_url_1.yml b/src/licensedcode/data/rules/amdplpa_url_1.yml deleted file mode 100644 index 4d61b7cfaeb..00000000000 --- a/src/licensedcode/data/rules/amdplpa_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/amdplpa diff --git a/src/licensedcode/data/rules/amdplpa_url_2.RULE b/src/licensedcode/data/rules/amdplpa_url_2.RULE index 7240457c312..8f9c817ce56 100644 --- a/src/licensedcode/data/rules/amdplpa_url_2.RULE +++ b/src/licensedcode/data/rules/amdplpa_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: amdplpa +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/amdplpa.html +--- + https://spdx.org/licenses/amdplpa.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/amdplpa_url_2.yml b/src/licensedcode/data/rules/amdplpa_url_2.yml deleted file mode 100644 index 18aa4ba8336..00000000000 --- a/src/licensedcode/data/rules/amdplpa_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/amdplpa.html diff --git a/src/licensedcode/data/rules/aml_1.RULE b/src/licensedcode/data/rules/aml_1.RULE index 08bc80283d4..469f770338f 100644 --- a/src/licensedcode/data/rules/aml_1.RULE +++ b/src/licensedcode/data/rules/aml_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: aml +is_license_text: yes +relevance: 100 +notes: https://opensource.apple.com/source/Security/Security-54.1.5/CertTool/cdsaUtils/pem.cpp +--- + disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in consideration of your agreement to diff --git a/src/licensedcode/data/rules/aml_1.yml b/src/licensedcode/data/rules/aml_1.yml deleted file mode 100644 index 1b7b9a3a7c6..00000000000 --- a/src/licensedcode/data/rules/aml_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: aml -is_license_text: yes -relevance: 100 -notes: https://opensource.apple.com/source/Security/Security-54.1.5/CertTool/cdsaUtils/pem.cpp diff --git a/src/licensedcode/data/rules/aml_10.RULE b/src/licensedcode/data/rules/aml_10.RULE index cf0ca61cc52..2e89202cc26 100644 --- a/src/licensedcode/data/rules/aml_10.RULE +++ b/src/licensedcode/data/rules/aml_10.RULE @@ -1 +1,7 @@ +--- +license_expression: aml +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AML \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_10.yml b/src/licensedcode/data/rules/aml_10.yml deleted file mode 100644 index f79b106a29b..00000000000 --- a/src/licensedcode/data/rules/aml_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: aml -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/aml_11.RULE b/src/licensedcode/data/rules/aml_11.RULE index bc7661f502b..08b2147bc9a 100644 --- a/src/licensedcode/data/rules/aml_11.RULE +++ b/src/licensedcode/data/rules/aml_11.RULE @@ -1 +1,9 @@ +--- +license_expression: aml +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AML +--- + {{AML}} https://spdx.org/licenses/AML \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_11.yml b/src/licensedcode/data/rules/aml_11.yml deleted file mode 100644 index 0e8e3df652b..00000000000 --- a/src/licensedcode/data/rules/aml_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: aml -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AML diff --git a/src/licensedcode/data/rules/aml_12.RULE b/src/licensedcode/data/rules/aml_12.RULE index 06747f662ea..a12d90c49e8 100644 --- a/src/licensedcode/data/rules/aml_12.RULE +++ b/src/licensedcode/data/rules/aml_12.RULE @@ -1 +1,9 @@ +--- +license_expression: aml +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AML +--- + LICENSE {{AML}} https://spdx.org/licenses/AML \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_12.yml b/src/licensedcode/data/rules/aml_12.yml deleted file mode 100644 index 0e8e3df652b..00000000000 --- a/src/licensedcode/data/rules/aml_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: aml -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AML diff --git a/src/licensedcode/data/rules/aml_2.RULE b/src/licensedcode/data/rules/aml_2.RULE index 0cad069c1ff..e7ed8654320 100644 --- a/src/licensedcode/data/rules/aml_2.RULE +++ b/src/licensedcode/data/rules/aml_2.RULE @@ -1 +1,6 @@ +--- +license_expression: aml +is_license_reference: yes +--- + AML Apple MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_2.yml b/src/licensedcode/data/rules/aml_2.yml deleted file mode 100644 index 3a16427c6ac..00000000000 --- a/src/licensedcode/data/rules/aml_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: aml -is_license_reference: yes diff --git a/src/licensedcode/data/rules/aml_3.RULE b/src/licensedcode/data/rules/aml_3.RULE index ae95fa69acd..6119aac4d24 100644 --- a/src/licensedcode/data/rules/aml_3.RULE +++ b/src/licensedcode/data/rules/aml_3.RULE @@ -1 +1,10 @@ +--- +license_expression: aml +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apple MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_3.yml b/src/licensedcode/data/rules/aml_3.yml deleted file mode 100644 index 94ead1aa341..00000000000 --- a/src/licensedcode/data/rules/aml_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: aml -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/aml_4.RULE b/src/licensedcode/data/rules/aml_4.RULE index 57b710fb0dc..d824ea9e296 100644 --- a/src/licensedcode/data/rules/aml_4.RULE +++ b/src/licensedcode/data/rules/aml_4.RULE @@ -1 +1,10 @@ +--- +license_expression: aml +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Apple MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_4.yml b/src/licensedcode/data/rules/aml_4.yml deleted file mode 100644 index 94ead1aa341..00000000000 --- a/src/licensedcode/data/rules/aml_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: aml -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/aml_5.RULE b/src/licensedcode/data/rules/aml_5.RULE index 70a7d43d492..8d31af37517 100644 --- a/src/licensedcode/data/rules/aml_5.RULE +++ b/src/licensedcode/data/rules/aml_5.RULE @@ -1 +1,10 @@ +--- +license_expression: aml +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apple MIT License AML \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_5.yml b/src/licensedcode/data/rules/aml_5.yml deleted file mode 100644 index 94ead1aa341..00000000000 --- a/src/licensedcode/data/rules/aml_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: aml -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/aml_6.RULE b/src/licensedcode/data/rules/aml_6.RULE index 1e1286ea159..d0a33695b13 100644 --- a/src/licensedcode/data/rules/aml_6.RULE +++ b/src/licensedcode/data/rules/aml_6.RULE @@ -1 +1,10 @@ +--- +license_expression: aml +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AML \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_6.yml b/src/licensedcode/data/rules/aml_6.yml deleted file mode 100644 index 37374a658fa..00000000000 --- a/src/licensedcode/data/rules/aml_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: aml -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/aml_7.RULE b/src/licensedcode/data/rules/aml_7.RULE index abe07c2292c..d974fbcbfab 100644 --- a/src/licensedcode/data/rules/aml_7.RULE +++ b/src/licensedcode/data/rules/aml_7.RULE @@ -1 +1,10 @@ +--- +license_expression: aml +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Apple MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_7.yml b/src/licensedcode/data/rules/aml_7.yml deleted file mode 100644 index 37374a658fa..00000000000 --- a/src/licensedcode/data/rules/aml_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: aml -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/aml_8.RULE b/src/licensedcode/data/rules/aml_8.RULE index 4edc3a7c6a6..d057eba7be8 100644 --- a/src/licensedcode/data/rules/aml_8.RULE +++ b/src/licensedcode/data/rules/aml_8.RULE @@ -1 +1,10 @@ +--- +license_expression: aml +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AML \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_8.yml b/src/licensedcode/data/rules/aml_8.yml deleted file mode 100644 index 37374a658fa..00000000000 --- a/src/licensedcode/data/rules/aml_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: aml -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/aml_9.RULE b/src/licensedcode/data/rules/aml_9.RULE index 182c2c06446..93de1dfa6e6 100644 --- a/src/licensedcode/data/rules/aml_9.RULE +++ b/src/licensedcode/data/rules/aml_9.RULE @@ -1 +1,9 @@ +--- +license_expression: aml +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AML +--- + https://licenses.nuget.org/AML \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_9.yml b/src/licensedcode/data/rules/aml_9.yml deleted file mode 100644 index eaf26947a9e..00000000000 --- a/src/licensedcode/data/rules/aml_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: aml -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AML diff --git a/src/licensedcode/data/rules/aml_url_1.RULE b/src/licensedcode/data/rules/aml_url_1.RULE index e6247dec417..0bc8428083b 100644 --- a/src/licensedcode/data/rules/aml_url_1.RULE +++ b/src/licensedcode/data/rules/aml_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: aml +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/aml +--- + https://spdx.org/licenses/aml \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_url_1.yml b/src/licensedcode/data/rules/aml_url_1.yml deleted file mode 100644 index de0bb7e458f..00000000000 --- a/src/licensedcode/data/rules/aml_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: aml -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/aml diff --git a/src/licensedcode/data/rules/aml_url_2.RULE b/src/licensedcode/data/rules/aml_url_2.RULE index dedb345034d..af378bbed41 100644 --- a/src/licensedcode/data/rules/aml_url_2.RULE +++ b/src/licensedcode/data/rules/aml_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: aml +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/aml.html +--- + https://spdx.org/licenses/aml.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/aml_url_2.yml b/src/licensedcode/data/rules/aml_url_2.yml deleted file mode 100644 index d598cf555c3..00000000000 --- a/src/licensedcode/data/rules/aml_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: aml -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/aml.html diff --git a/src/licensedcode/data/rules/ampas_1.RULE b/src/licensedcode/data/rules/ampas_1.RULE index 9bf69a86109..33b4fa7c992 100644 --- a/src/licensedcode/data/rules/ampas_1.RULE +++ b/src/licensedcode/data/rules/ampas_1.RULE @@ -1 +1,6 @@ +--- +license_expression: ampas +is_license_reference: yes +--- + AMPAS Academy of Motion Picture Arts and Sciences BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_1.yml b/src/licensedcode/data/rules/ampas_1.yml deleted file mode 100644 index dce21fb85c5..00000000000 --- a/src/licensedcode/data/rules/ampas_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ampas -is_license_reference: yes diff --git a/src/licensedcode/data/rules/ampas_10.RULE b/src/licensedcode/data/rules/ampas_10.RULE index 7ddc34519bf..9123e6ec06e 100644 --- a/src/licensedcode/data/rules/ampas_10.RULE +++ b/src/licensedcode/data/rules/ampas_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ampas +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AMPAS +--- + {{AMPAS}} https://spdx.org/licenses/AMPAS \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_10.yml b/src/licensedcode/data/rules/ampas_10.yml deleted file mode 100644 index 919791103a8..00000000000 --- a/src/licensedcode/data/rules/ampas_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ampas -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AMPAS diff --git a/src/licensedcode/data/rules/ampas_11.RULE b/src/licensedcode/data/rules/ampas_11.RULE index eeedae621e0..ff51c353b30 100644 --- a/src/licensedcode/data/rules/ampas_11.RULE +++ b/src/licensedcode/data/rules/ampas_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ampas +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AMPAS +--- + LICENSE {{AMPAS}} https://spdx.org/licenses/AMPAS \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_11.yml b/src/licensedcode/data/rules/ampas_11.yml deleted file mode 100644 index 919791103a8..00000000000 --- a/src/licensedcode/data/rules/ampas_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ampas -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AMPAS diff --git a/src/licensedcode/data/rules/ampas_2.RULE b/src/licensedcode/data/rules/ampas_2.RULE index b1cf369c5de..f0c5b56195e 100644 --- a/src/licensedcode/data/rules/ampas_2.RULE +++ b/src/licensedcode/data/rules/ampas_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ampas +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Academy of Motion Picture Arts and Sciences BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_2.yml b/src/licensedcode/data/rules/ampas_2.yml deleted file mode 100644 index 09c788c2982..00000000000 --- a/src/licensedcode/data/rules/ampas_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ampas -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ampas_3.RULE b/src/licensedcode/data/rules/ampas_3.RULE index cd29cee3cf0..df919b34e14 100644 --- a/src/licensedcode/data/rules/ampas_3.RULE +++ b/src/licensedcode/data/rules/ampas_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ampas +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Academy of Motion Picture Arts and Sciences BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_3.yml b/src/licensedcode/data/rules/ampas_3.yml deleted file mode 100644 index 09c788c2982..00000000000 --- a/src/licensedcode/data/rules/ampas_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ampas -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ampas_4.RULE b/src/licensedcode/data/rules/ampas_4.RULE index 5a27911cfdd..24fcb062a10 100644 --- a/src/licensedcode/data/rules/ampas_4.RULE +++ b/src/licensedcode/data/rules/ampas_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ampas +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Academy of Motion Picture Arts and Sciences BSD AMPAS \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_4.yml b/src/licensedcode/data/rules/ampas_4.yml deleted file mode 100644 index 09c788c2982..00000000000 --- a/src/licensedcode/data/rules/ampas_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ampas -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ampas_5.RULE b/src/licensedcode/data/rules/ampas_5.RULE index 5e4db2a8d18..25f9efa55c3 100644 --- a/src/licensedcode/data/rules/ampas_5.RULE +++ b/src/licensedcode/data/rules/ampas_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ampas +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AMPAS \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_5.yml b/src/licensedcode/data/rules/ampas_5.yml deleted file mode 100644 index f939cf6b272..00000000000 --- a/src/licensedcode/data/rules/ampas_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ampas -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ampas_6.RULE b/src/licensedcode/data/rules/ampas_6.RULE index fc9c41c1200..d2b648213a1 100644 --- a/src/licensedcode/data/rules/ampas_6.RULE +++ b/src/licensedcode/data/rules/ampas_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ampas +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Academy of Motion Picture Arts and Sciences BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_6.yml b/src/licensedcode/data/rules/ampas_6.yml deleted file mode 100644 index f939cf6b272..00000000000 --- a/src/licensedcode/data/rules/ampas_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ampas -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ampas_7.RULE b/src/licensedcode/data/rules/ampas_7.RULE index 13dc603c4af..ac835b5c928 100644 --- a/src/licensedcode/data/rules/ampas_7.RULE +++ b/src/licensedcode/data/rules/ampas_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ampas +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AMPAS \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_7.yml b/src/licensedcode/data/rules/ampas_7.yml deleted file mode 100644 index f939cf6b272..00000000000 --- a/src/licensedcode/data/rules/ampas_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ampas -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ampas_8.RULE b/src/licensedcode/data/rules/ampas_8.RULE index 31fd34dd5a3..8456379e380 100644 --- a/src/licensedcode/data/rules/ampas_8.RULE +++ b/src/licensedcode/data/rules/ampas_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ampas +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AMPAS +--- + https://licenses.nuget.org/AMPAS \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_8.yml b/src/licensedcode/data/rules/ampas_8.yml deleted file mode 100644 index ed19ab6b12a..00000000000 --- a/src/licensedcode/data/rules/ampas_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ampas -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AMPAS diff --git a/src/licensedcode/data/rules/ampas_9.RULE b/src/licensedcode/data/rules/ampas_9.RULE index bc85c008d0d..83acc909b05 100644 --- a/src/licensedcode/data/rules/ampas_9.RULE +++ b/src/licensedcode/data/rules/ampas_9.RULE @@ -1 +1,7 @@ +--- +license_expression: ampas +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AMPAS \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_9.yml b/src/licensedcode/data/rules/ampas_9.yml deleted file mode 100644 index 2aa8012376e..00000000000 --- a/src/licensedcode/data/rules/ampas_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ampas -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ampas_url_1.RULE b/src/licensedcode/data/rules/ampas_url_1.RULE index f02973cc5df..f3d3f78aa13 100644 --- a/src/licensedcode/data/rules/ampas_url_1.RULE +++ b/src/licensedcode/data/rules/ampas_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ampas +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ampas +--- + https://spdx.org/licenses/ampas \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_url_1.yml b/src/licensedcode/data/rules/ampas_url_1.yml deleted file mode 100644 index 31cb7195c78..00000000000 --- a/src/licensedcode/data/rules/ampas_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ampas -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ampas diff --git a/src/licensedcode/data/rules/ampas_url_2.RULE b/src/licensedcode/data/rules/ampas_url_2.RULE index 7dbfef01d8d..157b079e6b5 100644 --- a/src/licensedcode/data/rules/ampas_url_2.RULE +++ b/src/licensedcode/data/rules/ampas_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ampas +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ampas.html +--- + https://spdx.org/licenses/ampas.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ampas_url_2.yml b/src/licensedcode/data/rules/ampas_url_2.yml deleted file mode 100644 index 41fb20245cb..00000000000 --- a/src/licensedcode/data/rules/ampas_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ampas -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ampas.html diff --git a/src/licensedcode/data/rules/android-sdk-2012_1.RULE b/src/licensedcode/data/rules/android-sdk-2012_1.RULE index bf5854d19b0..37257e9a22e 100644 --- a/src/licensedcode/data/rules/android-sdk-2012_1.RULE +++ b/src/licensedcode/data/rules/android-sdk-2012_1.RULE @@ -1 +1,7 @@ +--- +license_expression: android-sdk-2012 +is_license_reference: yes +relevance: 99 +--- + Android Software Development Kit License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/android-sdk-2012_1.yml b/src/licensedcode/data/rules/android-sdk-2012_1.yml deleted file mode 100644 index caf665fd969..00000000000 --- a/src/licensedcode/data/rules/android-sdk-2012_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: android-sdk-2012 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/android-sdk-preview-2015_1.RULE b/src/licensedcode/data/rules/android-sdk-preview-2015_1.RULE index c6aa5201db7..d8a9bd6cc4c 100644 --- a/src/licensedcode/data/rules/android-sdk-preview-2015_1.RULE +++ b/src/licensedcode/data/rules/android-sdk-preview-2015_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: android-sdk-preview-2015 +is_license_text: yes +ignorable_urls: + - http://source.android.com/ + - http://www.google.com/policies/privacy +--- + License Agreement @@ -230,4 +238,4 @@ the exclusive jurisdiction of the courts located within the county of Santa Clar California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any -jurisdiction. +jurisdiction. \ No newline at end of file diff --git a/src/licensedcode/data/rules/android-sdk-preview-2015_1.yml b/src/licensedcode/data/rules/android-sdk-preview-2015_1.yml deleted file mode 100644 index 2a1c8c074e5..00000000000 --- a/src/licensedcode/data/rules/android-sdk-preview-2015_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: android-sdk-preview-2015 -is_license_text: yes -ignorable_urls: - - http://source.android.com/ - - http://www.google.com/policies/privacy diff --git a/src/licensedcode/data/rules/android-sdk-preview-2015_2.RULE b/src/licensedcode/data/rules/android-sdk-preview-2015_2.RULE index d20a3f4469d..d852d753564 100644 --- a/src/licensedcode/data/rules/android-sdk-preview-2015_2.RULE +++ b/src/licensedcode/data/rules/android-sdk-preview-2015_2.RULE @@ -1 +1,7 @@ +--- +license_expression: android-sdk-preview-2015 +is_license_reference: yes +relevance: 99 +--- + Android SDK Preview License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/android-sdk-preview-2015_2.yml b/src/licensedcode/data/rules/android-sdk-preview-2015_2.yml deleted file mode 100644 index e517f9d485c..00000000000 --- a/src/licensedcode/data/rules/android-sdk-preview-2015_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: android-sdk-preview-2015 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/android-sdk-preview-2015_3.RULE b/src/licensedcode/data/rules/android-sdk-preview-2015_3.RULE index b46b60819c5..160ba0d2233 100644 --- a/src/licensedcode/data/rules/android-sdk-preview-2015_3.RULE +++ b/src/licensedcode/data/rules/android-sdk-preview-2015_3.RULE @@ -1 +1,7 @@ -This is the Android SDK Preview License Agreement (the “License Agreement”). +--- +license_expression: android-sdk-preview-2015 +is_license_reference: yes +relevance: 99 +--- + +This is the Android SDK Preview License Agreement (the “License Agreement”). \ No newline at end of file diff --git a/src/licensedcode/data/rules/android-sdk-preview-2015_3.yml b/src/licensedcode/data/rules/android-sdk-preview-2015_3.yml deleted file mode 100644 index e517f9d485c..00000000000 --- a/src/licensedcode/data/rules/android-sdk-preview-2015_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: android-sdk-preview-2015 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/android-sdk-preview-2015_4.RULE b/src/licensedcode/data/rules/android-sdk-preview-2015_4.RULE index 7791c694018..f9b738e763b 100644 --- a/src/licensedcode/data/rules/android-sdk-preview-2015_4.RULE +++ b/src/licensedcode/data/rules/android-sdk-preview-2015_4.RULE @@ -1 +1,8 @@ +--- +license_expression: android-sdk-preview-2015 +is_license_notice: yes +relevance: 95 +minimum_coverage: 60 +--- + To get started with the Android SDK Preview, you must agree to the following terms and conditions. As described below, please note that this is a preview version of the Android SDK, subject to change, that you use at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/android-sdk-preview-2015_4.yml b/src/licensedcode/data/rules/android-sdk-preview-2015_4.yml deleted file mode 100644 index 5cf80a61645..00000000000 --- a/src/licensedcode/data/rules/android-sdk-preview-2015_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: android-sdk-preview-2015 -is_license_notice: yes -relevance: 95 -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/anti_capitalist1.RULE b/src/licensedcode/data/rules/anti_capitalist1.RULE index 191b982ab7b..5fdf120acae 100644 --- a/src/licensedcode/data/rules/anti_capitalist1.RULE +++ b/src/licensedcode/data/rules/anti_capitalist1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: anti-capitalist-1.4 +is_license_text: yes +--- + This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles. Permission is hereby granted, free of charge, to any person or organization (the "User") obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -9,4 +14,4 @@ Permission is hereby granted, free of charge, to any person or organization (the c. An organization of people that seeks shared profit for all its members 3. If the User is an organization with owners, then all owners are workers and all workers are owners. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 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/anti_capitalist1.yml b/src/licensedcode/data/rules/anti_capitalist1.yml deleted file mode 100644 index cf092813736..00000000000 --- a/src/licensedcode/data/rules/anti_capitalist1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: anti-capitalist-1.4 -is_license_text: yes diff --git a/src/licensedcode/data/rules/anti_capitalist2.RULE b/src/licensedcode/data/rules/anti_capitalist2.RULE index fdb0e7c9b05..f33b59a2500 100644 --- a/src/licensedcode/data/rules/anti_capitalist2.RULE +++ b/src/licensedcode/data/rules/anti_capitalist2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: anti-capitalist-1.4 +is_license_text: yes +--- + This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles. Permission is hereby granted, free of charge, to any person or organization (the "User") obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -9,4 +14,4 @@ Permission is hereby granted, free of charge, to any person or organization (the c. An organization of people that seeks shared profit for all its members and does not exploit the labor of non-members 3. If the User is an organization with owners, then all owners are workers and all workers are owners with equal share. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 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/anti_capitalist2.yml b/src/licensedcode/data/rules/anti_capitalist2.yml deleted file mode 100644 index cf092813736..00000000000 --- a/src/licensedcode/data/rules/anti_capitalist2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: anti-capitalist-1.4 -is_license_text: yes diff --git a/src/licensedcode/data/rules/anti_capitalist3.RULE b/src/licensedcode/data/rules/anti_capitalist3.RULE index a77af75abbe..8077dbe431a 100644 --- a/src/licensedcode/data/rules/anti_capitalist3.RULE +++ b/src/licensedcode/data/rules/anti_capitalist3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: anti-capitalist-1.4 +is_license_text: yes +--- + This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles. Permission is hereby granted, free of charge, to any person or organization (the "User") obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: @@ -10,4 +15,4 @@ Permission is hereby granted, free of charge, to any person or organization (the 3. If the User is an organization with owners, then all owners are workers and all workers are owners with equal share. 4. If the User is an organization, then the User is not law enforcement or military, or working under either. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 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/anti_capitalist3.yml b/src/licensedcode/data/rules/anti_capitalist3.yml deleted file mode 100644 index cf092813736..00000000000 --- a/src/licensedcode/data/rules/anti_capitalist3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: anti-capitalist-1.4 -is_license_text: yes diff --git a/src/licensedcode/data/rules/anti_capitalist4.RULE b/src/licensedcode/data/rules/anti_capitalist4.RULE index da11b374b26..7c23f92e112 100644 --- a/src/licensedcode/data/rules/anti_capitalist4.RULE +++ b/src/licensedcode/data/rules/anti_capitalist4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: anti-capitalist-1.4 +is_license_text: yes +notes: version 1.3 is the same as 1.4 hence treated as a rule +--- + ANTI-CAPITALIST SOFTWARE LICENSE (v 1.3) This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles. @@ -15,4 +21,4 @@ Permission is hereby granted, free of charge, to any person or organization (the 4. If the User is an organization, then the User is not law enforcement or military, or working under either. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 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/anti_capitalist4.yml b/src/licensedcode/data/rules/anti_capitalist4.yml deleted file mode 100644 index e8f74d67e76..00000000000 --- a/src/licensedcode/data/rules/anti_capitalist4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: anti-capitalist-1.4 -is_license_text: yes -notes: version 1.3 is the same as 1.4 hence treated as a rule diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_1.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_1.RULE index 7fe38a80621..91df0c133ae 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_1.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_1.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ANTLR Software Rights Notice with license fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_1.yml b/src/licensedcode/data/rules/antlr-pd-fallback_1.yml deleted file mode 100644 index 3fa23ec430d..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_10.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_10.RULE index e6f56a993f9..04484bfd40d 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_10.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_10.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd-fallback +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ANTLR-PD-fallback +--- + {{ANTLR-PD-fallback}} https://spdx.org/licenses/ANTLR-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_10.yml b/src/licensedcode/data/rules/antlr-pd-fallback_10.yml deleted file mode 100644 index 5d33f1639c4..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ANTLR-PD-fallback diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_11.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_11.RULE index 4a376483cec..0d8cbd1223b 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_11.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_11.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd-fallback +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ANTLR-PD-fallback +--- + LICENSE {{ANTLR-PD-fallback}} https://spdx.org/licenses/ANTLR-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_11.yml b/src/licensedcode/data/rules/antlr-pd-fallback_11.yml deleted file mode 100644 index 5d33f1639c4..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ANTLR-PD-fallback diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_2.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_2.RULE index a942403f61b..32dc5469761 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_2.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_2.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: ANTLR Software Rights Notice with license fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_2.yml b/src/licensedcode/data/rules/antlr-pd-fallback_2.yml deleted file mode 100644 index 3fa23ec430d..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_3.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_3.RULE index 7cff899f203..c8ebea03fa7 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_3.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_3.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ANTLR-PD-fallback ANTLR Software Rights Notice with license fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_3.yml b/src/licensedcode/data/rules/antlr-pd-fallback_3.yml deleted file mode 100644 index 3fa23ec430d..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_4.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_4.RULE index ced7be11a9e..e9768544dd8 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_4.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_4.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ANTLR Software Rights Notice with license fallback ANTLR-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_4.yml b/src/licensedcode/data/rules/antlr-pd-fallback_4.yml deleted file mode 100644 index 3fa23ec430d..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_5.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_5.RULE index a6c18a44a0a..7e4652b618b 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_5.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_5.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd-fallback +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ANTLR-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_5.yml b/src/licensedcode/data/rules/antlr-pd-fallback_5.yml deleted file mode 100644 index 24b7a4a5016..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_6.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_6.RULE index 3137d2b8ccd..abba5768170 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_6.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_6.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd-fallback +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ANTLR Software Rights Notice with license fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_6.yml b/src/licensedcode/data/rules/antlr-pd-fallback_6.yml deleted file mode 100644 index 24b7a4a5016..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_7.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_7.RULE index 2d00cc7f808..d9148472675 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_7.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_7.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd-fallback +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ANTLR-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_7.yml b/src/licensedcode/data/rules/antlr-pd-fallback_7.yml deleted file mode 100644 index 24b7a4a5016..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_8.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_8.RULE index e6aba1cca6b..672286ed501 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_8.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_8.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd-fallback +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ANTLR-PD-fallback +--- + https://licenses.nuget.org/ANTLR-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_8.yml b/src/licensedcode/data/rules/antlr-pd-fallback_8.yml deleted file mode 100644 index 304fd7533a4..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ANTLR-PD-fallback diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_9.RULE b/src/licensedcode/data/rules/antlr-pd-fallback_9.RULE index 9322d4d7472..fdb1a27ca36 100644 --- a/src/licensedcode/data/rules/antlr-pd-fallback_9.RULE +++ b/src/licensedcode/data/rules/antlr-pd-fallback_9.RULE @@ -1 +1,7 @@ +--- +license_expression: antlr-pd-fallback +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ANTLR-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd-fallback_9.yml b/src/licensedcode/data/rules/antlr-pd-fallback_9.yml deleted file mode 100644 index 9377f381efc..00000000000 --- a/src/licensedcode/data/rules/antlr-pd-fallback_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: antlr-pd-fallback -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/antlr-pd_1.RULE b/src/licensedcode/data/rules/antlr-pd_1.RULE index e7475c93708..9c3ac0bf3e3 100644 --- a/src/licensedcode/data/rules/antlr-pd_1.RULE +++ b/src/licensedcode/data/rules/antlr-pd_1.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.spdx.org/licenses/ANTLR-PD +--- + http://www.spdx.org/licenses/ANTLR-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_1.yml b/src/licensedcode/data/rules/antlr-pd_1.yml deleted file mode 100644 index d12d7aa762a..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.spdx.org/licenses/ANTLR-PD diff --git a/src/licensedcode/data/rules/antlr-pd_10.RULE b/src/licensedcode/data/rules/antlr-pd_10.RULE index 28b9c4c891f..517f5232c68 100644 --- a/src/licensedcode/data/rules/antlr-pd_10.RULE +++ b/src/licensedcode/data/rules/antlr-pd_10.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ANTLR Software Rights Notice ANTLR-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_10.yml b/src/licensedcode/data/rules/antlr-pd_10.yml deleted file mode 100644 index 1c04c31497e..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd_11.RULE b/src/licensedcode/data/rules/antlr-pd_11.RULE index 721e41ef4c4..67ec7986207 100644 --- a/src/licensedcode/data/rules/antlr-pd_11.RULE +++ b/src/licensedcode/data/rules/antlr-pd_11.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ANTLR-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_11.yml b/src/licensedcode/data/rules/antlr-pd_11.yml deleted file mode 100644 index 9adeccfbd1a..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd_12.RULE b/src/licensedcode/data/rules/antlr-pd_12.RULE index 8b64b71c676..b19fa31418f 100644 --- a/src/licensedcode/data/rules/antlr-pd_12.RULE +++ b/src/licensedcode/data/rules/antlr-pd_12.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ANTLR Software Rights Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_12.yml b/src/licensedcode/data/rules/antlr-pd_12.yml deleted file mode 100644 index 9adeccfbd1a..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd_13.RULE b/src/licensedcode/data/rules/antlr-pd_13.RULE index 6364d8bd02c..b1c1e3c1d20 100644 --- a/src/licensedcode/data/rules/antlr-pd_13.RULE +++ b/src/licensedcode/data/rules/antlr-pd_13.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ANTLR-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_13.yml b/src/licensedcode/data/rules/antlr-pd_13.yml deleted file mode 100644 index 9adeccfbd1a..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd_14.RULE b/src/licensedcode/data/rules/antlr-pd_14.RULE index d9f56ef0ef5..add8427a514 100644 --- a/src/licensedcode/data/rules/antlr-pd_14.RULE +++ b/src/licensedcode/data/rules/antlr-pd_14.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ANTLR-PD +--- + https://licenses.nuget.org/ANTLR-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_14.yml b/src/licensedcode/data/rules/antlr-pd_14.yml deleted file mode 100644 index d8d6a1a7454..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ANTLR-PD diff --git a/src/licensedcode/data/rules/antlr-pd_15.RULE b/src/licensedcode/data/rules/antlr-pd_15.RULE index 4f23050f1e0..82682a9eafa 100644 --- a/src/licensedcode/data/rules/antlr-pd_15.RULE +++ b/src/licensedcode/data/rules/antlr-pd_15.RULE @@ -1 +1,7 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ANTLR-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_15.yml b/src/licensedcode/data/rules/antlr-pd_15.yml deleted file mode 100644 index f368806f246..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/antlr-pd_16.RULE b/src/licensedcode/data/rules/antlr-pd_16.RULE index c950dfa8408..92ac3ebafbc 100644 --- a/src/licensedcode/data/rules/antlr-pd_16.RULE +++ b/src/licensedcode/data/rules/antlr-pd_16.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ANTLR-PD +--- + LICENSE {{ANTLR-PD}} https://spdx.org/licenses/ANTLR-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_16.yml b/src/licensedcode/data/rules/antlr-pd_16.yml deleted file mode 100644 index 74138705202..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ANTLR-PD diff --git a/src/licensedcode/data/rules/antlr-pd_17.RULE b/src/licensedcode/data/rules/antlr-pd_17.RULE index abd470df663..a4af36fd1bc 100644 --- a/src/licensedcode/data/rules/antlr-pd_17.RULE +++ b/src/licensedcode/data/rules/antlr-pd_17.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ANTLR-PD +--- + {{ANTLR-PD}} https://spdx.org/licenses/ANTLR-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_17.yml b/src/licensedcode/data/rules/antlr-pd_17.yml deleted file mode 100644 index 74138705202..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ANTLR-PD diff --git a/src/licensedcode/data/rules/antlr-pd_2.RULE b/src/licensedcode/data/rules/antlr-pd_2.RULE index 6a04ddd6fce..d2e3c8f7ed8 100644 --- a/src/licensedcode/data/rules/antlr-pd_2.RULE +++ b/src/licensedcode/data/rules/antlr-pd_2.RULE @@ -1 +1,7 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +relevance: 100 +--- + ANTLR Software Rights Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_2.yml b/src/licensedcode/data/rules/antlr-pd_2.yml deleted file mode 100644 index f368806f246..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/antlr-pd_3.RULE b/src/licensedcode/data/rules/antlr-pd_3.RULE index 0acf0fe5c80..3a1538f2897 100644 --- a/src/licensedcode/data/rules/antlr-pd_3.RULE +++ b/src/licensedcode/data/rules/antlr-pd_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: antlr-pd +is_license_notice: yes +notes: jGuru.com variant +--- + We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company may do whatever they wish with source code distributed with ANTLR or the code generated by ANTLR, including diff --git a/src/licensedcode/data/rules/antlr-pd_3.yml b/src/licensedcode/data/rules/antlr-pd_3.yml deleted file mode 100644 index 9ac9ac60b3e..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: antlr-pd -is_license_notice: yes -notes: jGuru.com variant diff --git a/src/licensedcode/data/rules/antlr-pd_4.RULE b/src/licensedcode/data/rules/antlr-pd_4.RULE index c39feef60ea..b42c63b2f16 100644 --- a/src/licensedcode/data/rules/antlr-pd_4.RULE +++ b/src/licensedcode/data/rules/antlr-pd_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: antlr-pd +is_license_notice: yes +--- + We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company may do whatever they wish with source code distributed with ANTLR or the code generated by ANTLR, including the incorporation of ANTLR, or its output, into commerical software. @@ -8,4 +13,4 @@ acknowledge this fact somewhere in the documentation, research report, etc... If and have developed a nice tool with the output, please mention that you developed it using ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these guidelines are kept, we expect to continue enhancing this system and expect to make other tools -available as they are completed. +available as they are completed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_4.yml b/src/licensedcode/data/rules/antlr-pd_4.yml deleted file mode 100644 index 7b2283ad7ad..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_notice: yes diff --git a/src/licensedcode/data/rules/antlr-pd_5.RULE b/src/licensedcode/data/rules/antlr-pd_5.RULE index 29ac0154cb4..22ec63bce6b 100644 --- a/src/licensedcode/data/rules/antlr-pd_5.RULE +++ b/src/licensedcode/data/rules/antlr-pd_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: antlr-pd +is_license_notice: yes +--- + ANTLR 2 License We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company @@ -10,4 +15,4 @@ acknowledge this fact somewhere in the documentation, research report, etc... If and have developed a nice tool with the output, please mention that you developed it using ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these guidelines are kept, we expect to continue enhancing this system and expect to make other tools -available as they are completed. +available as they are completed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_5.yml b/src/licensedcode/data/rules/antlr-pd_5.yml deleted file mode 100644 index 7b2283ad7ad..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_notice: yes diff --git a/src/licensedcode/data/rules/antlr-pd_6.RULE b/src/licensedcode/data/rules/antlr-pd_6.RULE index 057dedeac22..9136d126c32 100644 --- a/src/licensedcode/data/rules/antlr-pd_6.RULE +++ b/src/licensedcode/data/rules/antlr-pd_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: antlr-pd +is_license_notice: yes +--- + ANTLR 3 License We reserve no legal rights to the ANTLR--it is fully in the public domain. An @@ -13,4 +18,4 @@ research report, etc... If you like ANTLR and have developed a nice tool with th output, please mention that you developed it using ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these guidelines are kept, we expect to continue enhancing this system and expect to make other tools available -as they are completed. +as they are completed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_6.yml b/src/licensedcode/data/rules/antlr-pd_6.yml deleted file mode 100644 index 7b2283ad7ad..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_notice: yes diff --git a/src/licensedcode/data/rules/antlr-pd_7.RULE b/src/licensedcode/data/rules/antlr-pd_7.RULE index a426997e469..3774d0ee158 100644 --- a/src/licensedcode/data/rules/antlr-pd_7.RULE +++ b/src/licensedcode/data/rules/antlr-pd_7.RULE @@ -1 +1,6 @@ +--- +license_expression: antlr-pd +is_license_notice: yes +--- + ANTLR is fully in the public domain. An individual or company may do whatever they wish with source code distributed with ANTLR or the code generated by ANTLR, including the incorporation of ANTLR, or its output, into commercial software. See ANTLR 2.7 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_7.yml b/src/licensedcode/data/rules/antlr-pd_7.yml deleted file mode 100644 index 7b2283ad7ad..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_notice: yes diff --git a/src/licensedcode/data/rules/antlr-pd_8.RULE b/src/licensedcode/data/rules/antlr-pd_8.RULE index 4f94af5d359..54e3db60cae 100644 --- a/src/licensedcode/data/rules/antlr-pd_8.RULE +++ b/src/licensedcode/data/rules/antlr-pd_8.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: ANTLR Software Rights Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_8.yml b/src/licensedcode/data/rules/antlr-pd_8.yml deleted file mode 100644 index 1c04c31497e..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd_9.RULE b/src/licensedcode/data/rules/antlr-pd_9.RULE index 8146bb9cb87..542f0730d1a 100644 --- a/src/licensedcode/data/rules/antlr-pd_9.RULE +++ b/src/licensedcode/data/rules/antlr-pd_9.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ANTLR-PD ANTLR Software Rights Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_9.yml b/src/licensedcode/data/rules/antlr-pd_9.yml deleted file mode 100644 index 1c04c31497e..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/antlr-pd_url_1.RULE b/src/licensedcode/data/rules/antlr-pd_url_1.RULE index 483b56a9218..5b1b7b50bed 100644 --- a/src/licensedcode/data/rules/antlr-pd_url_1.RULE +++ b/src/licensedcode/data/rules/antlr-pd_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/antlr-pd +--- + https://spdx.org/licenses/antlr-pd \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_url_1.yml b/src/licensedcode/data/rules/antlr-pd_url_1.yml deleted file mode 100644 index 363f860c032..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/antlr-pd diff --git a/src/licensedcode/data/rules/antlr-pd_url_2.RULE b/src/licensedcode/data/rules/antlr-pd_url_2.RULE index a73319c7e8c..5bcb69d0eb4 100644 --- a/src/licensedcode/data/rules/antlr-pd_url_2.RULE +++ b/src/licensedcode/data/rules/antlr-pd_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/antlr-pd.html +--- + https://spdx.org/licenses/antlr-pd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/antlr-pd_url_2.yml b/src/licensedcode/data/rules/antlr-pd_url_2.yml deleted file mode 100644 index fd92b542196..00000000000 --- a/src/licensedcode/data/rules/antlr-pd_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/antlr-pd.html diff --git a/src/licensedcode/data/rules/anu-license.RULE b/src/licensedcode/data/rules/anu-license.RULE index eb46cd541f5..51d01d45995 100644 --- a/src/licensedcode/data/rules/anu-license.RULE +++ b/src/licensedcode/data/rules/anu-license.RULE @@ -1 +1,9 @@ -http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt +--- +license_expression: anu-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt +--- + +http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/anu-license.yml b/src/licensedcode/data/rules/anu-license.yml deleted file mode 100644 index af5d3ec44bc..00000000000 --- a/src/licensedcode/data/rules/anu-license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: anu-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt diff --git a/src/licensedcode/data/rules/apache-1.0.RULE b/src/licensedcode/data/rules/apache-1.0.RULE index b75d9aa934f..d0864d41ebf 100644 --- a/src/licensedcode/data/rules/apache-1.0.RULE +++ b/src/licensedcode/data/rules/apache-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-1.0 +--- + http://www.apache.org/licenses/LICENSE-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0.yml b/src/licensedcode/data/rules/apache-1.0.yml deleted file mode 100644 index 25271a701d7..00000000000 --- a/src/licensedcode/data/rules/apache-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-1.0 diff --git a/src/licensedcode/data/rules/apache-1.0_1.RULE b/src/licensedcode/data/rules/apache-1.0_1.RULE index a3500901dce..0d907332b31 100644 --- a/src/licensedcode/data/rules/apache-1.0_1.RULE +++ b/src/licensedcode/data/rules/apache-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +--- + Apache License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_1.yml b/src/licensedcode/data/rules/apache-1.0_1.yml deleted file mode 100644 index ffc7870a5df..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.0_10.RULE b/src/licensedcode/data/rules/apache-1.0_10.RULE index 94a52909904..e19ecddb4e1 100644 --- a/src/licensedcode/data/rules/apache-1.0_10.RULE +++ b/src/licensedcode/data/rules/apache-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apache License 1.0 Apache-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_10.yml b/src/licensedcode/data/rules/apache-1.0_10.yml deleted file mode 100644 index 562173d47fd..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.0_11.RULE b/src/licensedcode/data/rules/apache-1.0_11.RULE index 67357e7186d..fd79d48b9dd 100644 --- a/src/licensedcode/data/rules/apache-1.0_11.RULE +++ b/src/licensedcode/data/rules/apache-1.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Apache-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_11.yml b/src/licensedcode/data/rules/apache-1.0_11.yml deleted file mode 100644 index 105fdc9e3d7..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.0_12.RULE b/src/licensedcode/data/rules/apache-1.0_12.RULE index 4769e2eca30..a7c99ba3162 100644 --- a/src/licensedcode/data/rules/apache-1.0_12.RULE +++ b/src/licensedcode/data/rules/apache-1.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Apache License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_12.yml b/src/licensedcode/data/rules/apache-1.0_12.yml deleted file mode 100644 index 105fdc9e3d7..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.0_13.RULE b/src/licensedcode/data/rules/apache-1.0_13.RULE index dbfb321c827..773d63182ef 100644 --- a/src/licensedcode/data/rules/apache-1.0_13.RULE +++ b/src/licensedcode/data/rules/apache-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Apache-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_13.yml b/src/licensedcode/data/rules/apache-1.0_13.yml deleted file mode 100644 index 105fdc9e3d7..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.0_14.RULE b/src/licensedcode/data/rules/apache-1.0_14.RULE index f291ab70c11..989701d7462 100644 --- a/src/licensedcode/data/rules/apache-1.0_14.RULE +++ b/src/licensedcode/data/rules/apache-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Apache-1.0 +--- + https://licenses.nuget.org/Apache-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_14.yml b/src/licensedcode/data/rules/apache-1.0_14.yml deleted file mode 100644 index 4e5af37cf42..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Apache-1.0 diff --git a/src/licensedcode/data/rules/apache-1.0_15.RULE b/src/licensedcode/data/rules/apache-1.0_15.RULE index 09ebefe5bda..543ef4ebecb 100644 --- a/src/licensedcode/data/rules/apache-1.0_15.RULE +++ b/src/licensedcode/data/rules/apache-1.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Apache-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_15.yml b/src/licensedcode/data/rules/apache-1.0_15.yml deleted file mode 100644 index ffc7870a5df..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.0_16.RULE b/src/licensedcode/data/rules/apache-1.0_16.RULE index 6a66ae5bfb1..d1f66312230 100644 --- a/src/licensedcode/data/rules/apache-1.0_16.RULE +++ b/src/licensedcode/data/rules/apache-1.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-1.0 +--- + {{Apache-1.0}} https://spdx.org/licenses/Apache-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_16.yml b/src/licensedcode/data/rules/apache-1.0_16.yml deleted file mode 100644 index e90aa648a6b..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-1.0 diff --git a/src/licensedcode/data/rules/apache-1.0_17.RULE b/src/licensedcode/data/rules/apache-1.0_17.RULE index a8c311002a3..0eb6ba42741 100644 --- a/src/licensedcode/data/rules/apache-1.0_17.RULE +++ b/src/licensedcode/data/rules/apache-1.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-1.0 +--- + LICENSE {{Apache-1.0}} https://spdx.org/licenses/Apache-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_17.yml b/src/licensedcode/data/rules/apache-1.0_17.yml deleted file mode 100644 index e90aa648a6b..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-1.0 diff --git a/src/licensedcode/data/rules/apache-1.0_2.RULE b/src/licensedcode/data/rules/apache-1.0_2.RULE index b7b6702b147..7927c7dc96e 100644 --- a/src/licensedcode/data/rules/apache-1.0_2.RULE +++ b/src/licensedcode/data/rules/apache-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 95 +--- + asl 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_2.yml b/src/licensedcode/data/rules/apache-1.0_2.yml deleted file mode 100644 index 21d3a113f99..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-1.0_3.RULE b/src/licensedcode/data/rules/apache-1.0_3.RULE index a1518d6a543..cffaecc59ee 100644 --- a/src/licensedcode/data/rules/apache-1.0_3.RULE +++ b/src/licensedcode/data/rules/apache-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-1.0.txt +--- + https://www.apache.org/licenses/LICENSE-1.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_3.yml b/src/licensedcode/data/rules/apache-1.0_3.yml deleted file mode 100644 index f7aa06c857b..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-1.0.txt diff --git a/src/licensedcode/data/rules/apache-1.0_4.RULE b/src/licensedcode/data/rules/apache-1.0_4.RULE index de501566396..df547ff94b2 100644 --- a/src/licensedcode/data/rules/apache-1.0_4.RULE +++ b/src/licensedcode/data/rules/apache-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-1.0 +--- + https://www.apache.org/licenses/LICENSE-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_4.yml b/src/licensedcode/data/rules/apache-1.0_4.yml deleted file mode 100644 index 76d5c31ed50..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-1.0 diff --git a/src/licensedcode/data/rules/apache-1.0_5.RULE b/src/licensedcode/data/rules/apache-1.0_5.RULE index cdca2c4f99e..1ec55259e38 100644 --- a/src/licensedcode/data/rules/apache-1.0_5.RULE +++ b/src/licensedcode/data/rules/apache-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-1.0.txt +--- + http://www.apache.org/licenses/LICENSE-1.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_5.yml b/src/licensedcode/data/rules/apache-1.0_5.yml deleted file mode 100644 index cd508db7669..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-1.0.txt diff --git a/src/licensedcode/data/rules/apache-1.0_6.RULE b/src/licensedcode/data/rules/apache-1.0_6.RULE index 5d909910da0..9e2a8e1f85f 100644 --- a/src/licensedcode/data/rules/apache-1.0_6.RULE +++ b/src/licensedcode/data/rules/apache-1.0_6.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.0 +is_license_text: yes +relevance: 100 +ignorable_authors: + - the Apache Group +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/apache-1.0_6.yml b/src/licensedcode/data/rules/apache-1.0_6.yml deleted file mode 100644 index a3a20e4d95e..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_6.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.0 -is_license_text: yes -relevance: 100 -ignorable_authors: - - the Apache Group -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.0_7.RULE b/src/licensedcode/data/rules/apache-1.0_7.RULE index b7b6c05b532..0615dfe8949 100644 --- a/src/licensedcode/data/rules/apache-1.0_7.RULE +++ b/src/licensedcode/data/rules/apache-1.0_7.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.0 +is_license_text: yes +relevance: 100 +ignorable_authors: + - the Apache Group +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/apache-1.0_7.yml b/src/licensedcode/data/rules/apache-1.0_7.yml deleted file mode 100644 index a3a20e4d95e..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_7.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.0 -is_license_text: yes -relevance: 100 -ignorable_authors: - - the Apache Group -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.0_8.RULE b/src/licensedcode/data/rules/apache-1.0_8.RULE index ce33a3c93b6..1a524a6deeb 100644 --- a/src/licensedcode/data/rules/apache-1.0_8.RULE +++ b/src/licensedcode/data/rules/apache-1.0_8.RULE @@ -1 +1,6 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +--- + Apache-1.0 Apache License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_8.yml b/src/licensedcode/data/rules/apache-1.0_8.yml deleted file mode 100644 index 4b129cac7c4..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/apache-1.0_9.RULE b/src/licensedcode/data/rules/apache-1.0_9.RULE index 728a1819524..ede6fb2bfe8 100644 --- a/src/licensedcode/data/rules/apache-1.0_9.RULE +++ b/src/licensedcode/data/rules/apache-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Apache License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_9.yml b/src/licensedcode/data/rules/apache-1.0_9.yml deleted file mode 100644 index 562173d47fd..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.0_or_apache-1.1_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/apache-1.0_or_apache-1.1_or_apache-2.0_1.RULE index f80eae35f76..e796800ac19 100644 --- a/src/licensedcode/data/rules/apache-1.0_or_apache-1.1_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/apache-1.0_or_apache-1.1_or_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.0 OR apache-1.1 OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache Licence (any version) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_or_apache-1.1_or_apache-2.0_1.yml b/src/licensedcode/data/rules/apache-1.0_or_apache-1.1_or_apache-2.0_1.yml deleted file mode 100644 index ff0fc3ec70a..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_or_apache-1.1_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.0 OR apache-1.1 OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.0_url_1.RULE b/src/licensedcode/data/rules/apache-1.0_url_1.RULE index 19ee723f986..d99c4d5e240 100644 --- a/src/licensedcode/data/rules/apache-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/apache-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apache-1.0 +--- + https://spdx.org/licenses/apache-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_url_1.yml b/src/licensedcode/data/rules/apache-1.0_url_1.yml deleted file mode 100644 index ad601d7ce17..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apache-1.0 diff --git a/src/licensedcode/data/rules/apache-1.0_url_2.RULE b/src/licensedcode/data/rules/apache-1.0_url_2.RULE index ded29922cff..0ac6c020e53 100644 --- a/src/licensedcode/data/rules/apache-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/apache-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apache-1.0.html +--- + https://spdx.org/licenses/apache-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.0_url_2.yml b/src/licensedcode/data/rules/apache-1.0_url_2.yml deleted file mode 100644 index 2d52ffba48f..00000000000 --- a/src/licensedcode/data/rules/apache-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apache-1.0.html diff --git a/src/licensedcode/data/rules/apache-1.1.RULE b/src/licensedcode/data/rules/apache-1.1.RULE index 1669f550822..e3d15565b15 100644 --- a/src/licensedcode/data/rules/apache-1.1.RULE +++ b/src/licensedcode/data/rules/apache-1.1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +notes: The OpenSymphony Software License, Version 1.1 with XWork is an Apache variant +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/apache-1.1.SPDX.RULE b/src/licensedcode/data/rules/apache-1.1.SPDX.RULE index 59930f579bb..d3a6e95c4d7 100644 --- a/src/licensedcode/data/rules/apache-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/apache-1.1.SPDX.RULE @@ -1,3 +1,20 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX. It also contains a public domain reference +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + /* ==================================================================== * The Apache Software License, Version 1.1 * diff --git a/src/licensedcode/data/rules/apache-1.1.SPDX.yml b/src/licensedcode/data/rules/apache-1.1.SPDX.yml deleted file mode 100644 index a974a509413..00000000000 --- a/src/licensedcode/data/rules/apache-1.1.SPDX.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX. It also contains a public domain reference -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1.yml b/src/licensedcode/data/rules/apache-1.1.yml deleted file mode 100644 index 22fb418bf03..00000000000 --- a/src/licensedcode/data/rules/apache-1.1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -notes: The OpenSymphony Software License, Version 1.1 with XWork is an Apache variant diff --git a/src/licensedcode/data/rules/apache-1.1_0.RULE b/src/licensedcode/data/rules/apache-1.1_0.RULE index 3c2d3096068..ff3180ee279 100644 --- a/src/licensedcode/data/rules/apache-1.1_0.RULE +++ b/src/licensedcode/data/rules/apache-1.1_0.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + and is licensed under the Apache Software License, Version 1.1, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_0.yml b/src/licensedcode/data/rules/apache-1.1_0.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_1.RULE b/src/licensedcode/data/rules/apache-1.1_1.RULE index 241825f2df2..c590f88600c 100644 --- a/src/licensedcode/data/rules/apache-1.1_1.RULE +++ b/src/licensedcode/data/rules/apache-1.1_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-1.1 +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. @@ -10,4 +15,4 @@ Redistribution and use in source and binary forms, with or without modification, Products derived from this software may not be called nor may appear in their name, without prior written permission of -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 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. +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 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/apache-1.1_1.yml b/src/licensedcode/data/rules/apache-1.1_1.yml deleted file mode 100644 index e59196879c1..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/apache-1.1_10.RULE b/src/licensedcode/data/rules/apache-1.1_10.RULE index 803f226480a..b6ba6534042 100644 --- a/src/licensedcode/data/rules/apache-1.1_10.RULE +++ b/src/licensedcode/data/rules/apache-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE.txt +--- + http://www.apache.org/licenses/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_10.yml b/src/licensedcode/data/rules/apache-1.1_10.yml deleted file mode 100644 index cfe33cc38c3..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-1.1_100.RULE b/src/licensedcode/data/rules/apache-1.1_100.RULE index 89db59b66d0..e20c991640a 100644 --- a/src/licensedcode/data/rules/apache-1.1_100.RULE +++ b/src/licensedcode/data/rules/apache-1.1_100.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + under Apache 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_100.yml b/src/licensedcode/data/rules/apache-1.1_100.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_101.RULE b/src/licensedcode/data/rules/apache-1.1_101.RULE index 305cbe3b449..d802fbe90cf 100644 --- a/src/licensedcode/data/rules/apache-1.1_101.RULE +++ b/src/licensedcode/data/rules/apache-1.1_101.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-1.1 +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. diff --git a/src/licensedcode/data/rules/apache-1.1_101.yml b/src/licensedcode/data/rules/apache-1.1_101.yml deleted file mode 100644 index e59196879c1..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_101.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/apache-1.1_102.RULE b/src/licensedcode/data/rules/apache-1.1_102.RULE index 0aa5a2f99f1..c225918e010 100644 --- a/src/licensedcode/data/rules/apache-1.1_102.RULE +++ b/src/licensedcode/data/rules/apache-1.1_102.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +--- + Apache1_1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_102.yml b/src/licensedcode/data/rules/apache-1.1_102.yml deleted file mode 100644 index 21a5e9f387d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_103.RULE b/src/licensedcode/data/rules/apache-1.1_103.RULE index b3055f0b234..0122b3a208a 100644 --- a/src/licensedcode/data/rules/apache-1.1_103.RULE +++ b/src/licensedcode/data/rules/apache-1.1_103.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Apache-1.1 +--- + https://licenses.nuget.org/Apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_103.yml b/src/licensedcode/data/rules/apache-1.1_103.yml deleted file mode 100644 index da994994617..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Apache-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_104.RULE b/src/licensedcode/data/rules/apache-1.1_104.RULE index 38f8939539b..04caa8a0b7e 100644 --- a/src/licensedcode/data/rules/apache-1.1_104.RULE +++ b/src/licensedcode/data/rules/apache-1.1_104.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_104.yml b/src/licensedcode/data/rules/apache-1.1_104.yml deleted file mode 100644 index 21a5e9f387d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_105.RULE b/src/licensedcode/data/rules/apache-1.1_105.RULE index fdab5a98eaf..f5fb250e8d2 100644 --- a/src/licensedcode/data/rules/apache-1.1_105.RULE +++ b/src/licensedcode/data/rules/apache-1.1_105.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 99 +--- + {{OpenSymphony Software License}} Version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_105.yml b/src/licensedcode/data/rules/apache-1.1_105.yml deleted file mode 100644 index 3d9921968f8..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-1.1_106.RULE b/src/licensedcode/data/rules/apache-1.1_106.RULE index 36f9d7b8da7..d70960a1f3c 100644 --- a/src/licensedcode/data/rules/apache-1.1_106.RULE +++ b/src/licensedcode/data/rules/apache-1.1_106.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 99 +--- + licensed under {{OpenSymphony Software License}} Version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_106.yml b/src/licensedcode/data/rules/apache-1.1_106.yml deleted file mode 100644 index 16c78c4e8cf..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-1.1_107.RULE b/src/licensedcode/data/rules/apache-1.1_107.RULE index 4f23ad85999..5b1352eb035 100644 --- a/src/licensedcode/data/rules/apache-1.1_107.RULE +++ b/src/licensedcode/data/rules/apache-1.1_107.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + licensed under {{Apache License Version 1.1. }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_107.yml b/src/licensedcode/data/rules/apache-1.1_107.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_108.RULE b/src/licensedcode/data/rules/apache-1.1_108.RULE index 9b7bc66cd63..51da78a3855 100644 --- a/src/licensedcode/data/rules/apache-1.1_108.RULE +++ b/src/licensedcode/data/rules/apache-1.1_108.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + under {{Apache License Version 1.1.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_108.yml b/src/licensedcode/data/rules/apache-1.1_108.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_109.RULE b/src/licensedcode/data/rules/apache-1.1_109.RULE index d610883ec8d..3f15e5076d5 100644 --- a/src/licensedcode/data/rules/apache-1.1_109.RULE +++ b/src/licensedcode/data/rules/apache-1.1_109.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + is licensed under {{Apache License Version 1.1. }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_109.yml b/src/licensedcode/data/rules/apache-1.1_109.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_11.RULE b/src/licensedcode/data/rules/apache-1.1_11.RULE index ed4a19a89a2..81c3a3d28fc 100644 --- a/src/licensedcode/data/rules/apache-1.1_11.RULE +++ b/src/licensedcode/data/rules/apache-1.1_11.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 60 +notes: Apache 1.1 variant +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + * The Apache Software License, Version 1.1 * * Copyright (c) The Apache Software Foundation. All rights @@ -49,4 +64,4 @@ * individuals on behalf of the Apache Software Foundation . * For more information * on the Apache Software Foundation, please see - * . + * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_11.yml b/src/licensedcode/data/rules/apache-1.1_11.yml deleted file mode 100644 index 648b80748fb..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_11.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 60 -notes: Apache 1.1 variant -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-1.1_110.RULE b/src/licensedcode/data/rules/apache-1.1_110.RULE index 169a9a60276..87a5b5af3ae 100644 --- a/src/licensedcode/data/rules/apache-1.1_110.RULE +++ b/src/licensedcode/data/rules/apache-1.1_110.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-1.1 +--- + {{Apache-1.1}} https://spdx.org/licenses/Apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_110.yml b/src/licensedcode/data/rules/apache-1.1_110.yml deleted file mode 100644 index f8b5c8da33f..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_111.RULE b/src/licensedcode/data/rules/apache-1.1_111.RULE index e52238463b9..d789e36f528 100644 --- a/src/licensedcode/data/rules/apache-1.1_111.RULE +++ b/src/licensedcode/data/rules/apache-1.1_111.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-1.1 +--- + LICENSE {{Apache-1.1}} https://spdx.org/licenses/Apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_111.yml b/src/licensedcode/data/rules/apache-1.1_111.yml deleted file mode 100644 index f8b5c8da33f..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_12.RULE b/src/licensedcode/data/rules/apache-1.1_12.RULE index c30c8c6a5da..2550047c405 100644 --- a/src/licensedcode/data/rules/apache-1.1_12.RULE +++ b/src/licensedcode/data/rules/apache-1.1_12.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + /* * ============================================================================ * The Apache Software License, Version 1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_12.yml b/src/licensedcode/data/rules/apache-1.1_12.yml deleted file mode 100644 index 73068033786..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_12.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_13.RULE b/src/licensedcode/data/rules/apache-1.1_13.RULE index 2fdbb160023..1e73ce38ac4 100644 --- a/src/licensedcode/data/rules/apache-1.1_13.RULE +++ b/src/licensedcode/data/rules/apache-1.1_13.RULE @@ -1,3 +1,19 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1999-2000 The Apache Software Foundation + - copyright (c) 1999, International Business Machines, Inc., http://www.ibm.com +ignorable_holders: + - International Business Machines, Inc. + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ + - http://www.ibm.com/ +--- + // The Apache license appears below (as required). /* @@ -53,4 +69,4 @@ * originally based on software copyright (c) 1999, International * Business Machines, Inc., http://www.ibm.com . For more information * on the Apache Software Foundation, please see - * . + * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_13.yml b/src/licensedcode/data/rules/apache-1.1_13.yml deleted file mode 100644 index c3321c38930..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_13.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1999-2000 The Apache Software Foundation - - copyright (c) 1999, International Business Machines, Inc., http://www.ibm.com -ignorable_holders: - - International Business Machines, Inc. - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ - - http://www.ibm.com/ diff --git a/src/licensedcode/data/rules/apache-1.1_14.RULE b/src/licensedcode/data/rules/apache-1.1_14.RULE index 1c3109a4de3..7971819a3d6 100644 --- a/src/licensedcode/data/rules/apache-1.1_14.RULE +++ b/src/licensedcode/data/rules/apache-1.1_14.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 80 +notes: A variant a Apache 1.1 with typos as found in http://archive.apache.org/dist/jakarta/cactus/source/jakarta-cactus-src-1.7.1.zip +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + The Apache Software License, Version 1.1 Copyright (c) The Apache Software Foundation. All rights @@ -47,4 +62,4 @@ This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the Apache Software Foundation, please see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_14.yml b/src/licensedcode/data/rules/apache-1.1_14.yml deleted file mode 100644 index 44af732025a..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_14.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 80 -notes: A variant a Apache 1.1 with typos as found in http://archive.apache.org/dist/jakarta/cactus/source/jakarta-cactus-src-1.7.1.zip -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-1.1_15.RULE b/src/licensedcode/data/rules/apache-1.1_15.RULE index ea338d8212f..3ba4c53cfb2 100644 --- a/src/licensedcode/data/rules/apache-1.1_15.RULE +++ b/src/licensedcode/data/rules/apache-1.1_15.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_15.yml b/src/licensedcode/data/rules/apache-1.1_15.yml deleted file mode 100644 index e59196879c1..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/apache-1.1_16.RULE b/src/licensedcode/data/rules/apache-1.1_16.RULE index 22ae1912542..83420c0abc7 100644 --- a/src/licensedcode/data/rules/apache-1.1_16.RULE +++ b/src/licensedcode/data/rules/apache-1.1_16.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache Software License, Version 1.1, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_16.yml b/src/licensedcode/data/rules/apache-1.1_16.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_17.RULE b/src/licensedcode/data/rules/apache-1.1_17.RULE index 46b0d2bb47c..5ea59635f91 100644 --- a/src/licensedcode/data/rules/apache-1.1_17.RULE +++ b/src/licensedcode/data/rules/apache-1.1_17.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +notes: Batik variant of Apache 1.1 with hyphenation. This variant has been formatted with hyphenation + breaking some words in multiple words +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + ============================================================================ The Apache Software License, Version 1.1 ============================================================================ @@ -41,4 +54,4 @@ This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the - Apache Software Foundation, please see . + Apache Software Foundation, please see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_17.yml b/src/licensedcode/data/rules/apache-1.1_17.yml deleted file mode 100644 index 38e056c2cca..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_17.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -notes: Batik variant of Apache 1.1 with hyphenation. This variant has been formatted with hyphenation - breaking some words in multiple words -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_18.RULE b/src/licensedcode/data/rules/apache-1.1_18.RULE index ae2d99c3e0d..14d04b8762e 100644 --- a/src/licensedcode/data/rules/apache-1.1_18.RULE +++ b/src/licensedcode/data/rules/apache-1.1_18.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) The International Cooperation for the Integration of Processes in Prepress, + Press and Postpress (CIP4) +ignorable_holders: + - The International Cooperation for the Integration of Processes in Prepress, Press and + Postpress (CIP4) +ignorable_urls: + - http://www.cip4.org/ +ignorable_emails: + - info@cip4.org +--- + * The CIP4 Software License, Version 1.0 * * @@ -56,5 +71,4 @@ * This software consists of voluntary contributions made by many * individuals on behalf of the The International Cooperation for the Integration * of Processes in Prepress, Press and Postpress and was -* originally based on software - \ No newline at end of file +* originally based on software \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_18.yml b/src/licensedcode/data/rules/apache-1.1_18.yml deleted file mode 100644 index 8b5d15c8a59..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_18.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) The International Cooperation for the Integration of Processes in Prepress, - Press and Postpress (CIP4) -ignorable_holders: - - The International Cooperation for the Integration of Processes in Prepress, Press and - Postpress (CIP4) -ignorable_urls: - - http://www.cip4.org/ -ignorable_emails: - - info@cip4.org diff --git a/src/licensedcode/data/rules/apache-1.1_19.RULE b/src/licensedcode/data/rules/apache-1.1_19.RULE index 4e4dd57467e..5403fd59d41 100644 --- a/src/licensedcode/data/rules/apache-1.1_19.RULE +++ b/src/licensedcode/data/rules/apache-1.1_19.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +notes: This notice text is contained in the text at http://apache.org/licenses/LICENSE-1.1 but + it is really specific to an Apache Software Foundation component that contains public domain + software. +ignorable_authors: + - the the JRDF Project (http://jrdf.sf.net/) +ignorable_urls: + - http://jrdf.sf.net/ +ignorable_emails: + - newmana@users.sourceforge.net +--- + * The Apache Software License, Version 1.1 * * * Redistribution and use in source and binary forms, with or without @@ -44,4 +58,4 @@ * * This software consists of voluntary contributions made by many * individuals on behalf of the JRDF Project. For more - * information on JRDF, \ No newline at end of file + * information on JRDF, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_19.yml b/src/licensedcode/data/rules/apache-1.1_19.yml deleted file mode 100644 index bed37833e2c..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_19.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -notes: This notice text is contained in the text at http://apache.org/licenses/LICENSE-1.1 but - it is really specific to an Apache Software Foundation component that contains public domain - software. -ignorable_authors: - - the the JRDF Project (http://jrdf.sf.net/) -ignorable_urls: - - http://jrdf.sf.net/ -ignorable_emails: - - newmana@users.sourceforge.net diff --git a/src/licensedcode/data/rules/apache-1.1_2.RULE b/src/licensedcode/data/rules/apache-1.1_2.RULE index 536513d478e..cd4189eda2d 100644 --- a/src/licensedcode/data/rules/apache-1.1_2.RULE +++ b/src/licensedcode/data/rules/apache-1.1_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 70 +notes: Apache-1.1-style template +ignorable_emails: + - org@kannel.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,5 +26,4 @@ Alternately, this acknowledgment may appear in the software itself, if and where THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 KANNEL GROUP 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. -This software consists of voluntary contributions made by many individuals on behalf of the Group. For more information on the Group, please see - +This software consists of voluntary contributions made by many individuals on behalf of the Group. For more information on the Group, please see \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_2.yml b/src/licensedcode/data/rules/apache-1.1_2.yml deleted file mode 100644 index dd241913d87..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 70 -notes: Apache-1.1-style template -ignorable_emails: - - org@kannel.org diff --git a/src/licensedcode/data/rules/apache-1.1_20.RULE b/src/licensedcode/data/rules/apache-1.1_20.RULE index cb0d1194cb8..ad9bfc65256 100644 --- a/src/licensedcode/data/rules/apache-1.1_20.RULE +++ b/src/licensedcode/data/rules/apache-1.1_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +notes: Viola system apache 1.1 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -35,4 +41,4 @@ 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/apache-1.1_20.yml b/src/licensedcode/data/rules/apache-1.1_20.yml deleted file mode 100644 index 66472047399..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -notes: Viola system apache 1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_21.RULE b/src/licensedcode/data/rules/apache-1.1_21.RULE index 6e8628a168a..8965a8f04b2 100644 --- a/src/licensedcode/data/rules/apache-1.1_21.RULE +++ b/src/licensedcode/data/rules/apache-1.1_21.RULE @@ -1,3 +1,19 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +notes: Apache-1.1-style template +ignorable_copyrights: + - Copyright (c) 1999-2001 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + * The Apache Software License, Version 1.1 * diff --git a/src/licensedcode/data/rules/apache-1.1_21.yml b/src/licensedcode/data/rules/apache-1.1_21.yml deleted file mode 100644 index 9b15e7deb2d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_21.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -notes: Apache-1.1-style template -ignorable_copyrights: - - Copyright (c) 1999-2001 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_22.RULE b/src/licensedcode/data/rules/apache-1.1_22.RULE index d059b3118cc..2f5843a8196 100644 --- a/src/licensedcode/data/rules/apache-1.1_22.RULE +++ b/src/licensedcode/data/rules/apache-1.1_22.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +notes: Apache-1.1-style template +ignorable_authors: + - the the JRDF Project (http://jrdf.sf.net/) +ignorable_urls: + - http://jrdf.sf.net/ + - http://jrdf.sourceforge.net/ +ignorable_emails: + - newmana@users.sourceforge.net +--- + * The Apache Software License, Version 1.1 * * diff --git a/src/licensedcode/data/rules/apache-1.1_22.yml b/src/licensedcode/data/rules/apache-1.1_22.yml deleted file mode 100644 index 37ba14ff23f..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_22.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -notes: Apache-1.1-style template -ignorable_authors: - - the the JRDF Project (http://jrdf.sf.net/) -ignorable_urls: - - http://jrdf.sf.net/ - - http://jrdf.sourceforge.net/ -ignorable_emails: - - newmana@users.sourceforge.net diff --git a/src/licensedcode/data/rules/apache-1.1_22_os.RULE b/src/licensedcode/data/rules/apache-1.1_22_os.RULE index 45ee3c18fe0..c2fc07b566c 100644 --- a/src/licensedcode/data/rules/apache-1.1_22_os.RULE +++ b/src/licensedcode/data/rules/apache-1.1_22_os.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +notes: Apache 1.1, opensymphony variant +ignorable_authors: + - the OpenSymphony Group (http://www.opensymphony.com/) +ignorable_urls: + - http://www.apache.org/LICENSE.txt + - http://www.opensymphony.com/ +ignorable_emails: + - license@opensymphony.com +--- + The OpenSymphony Software License, Version 1.1 (this license is derived and fully compatible with the Apache Software License - @@ -39,4 +52,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_22_os.yml b/src/licensedcode/data/rules/apache-1.1_22_os.yml deleted file mode 100644 index 8c09a3a416e..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_22_os.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -notes: Apache 1.1, opensymphony variant -ignorable_authors: - - the OpenSymphony Group (http://www.opensymphony.com/) -ignorable_urls: - - http://www.apache.org/LICENSE.txt - - http://www.opensymphony.com/ -ignorable_emails: - - license@opensymphony.com diff --git a/src/licensedcode/data/rules/apache-1.1_23.RULE b/src/licensedcode/data/rules/apache-1.1_23.RULE index 11149fed003..ec4b55377f9 100644 --- a/src/licensedcode/data/rules/apache-1.1_23.RULE +++ b/src/licensedcode/data/rules/apache-1.1_23.RULE @@ -1,3 +1,22 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation + - copyright (c) International Business Machines, Inc., http://www.ibm.com +ignorable_holders: + - International Business Machines, Inc. + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ + - http://www.ibm.com/ +ignorable_emails: + - apache@apache.org +--- + * The Apache Software License, Version 1.1 * * diff --git a/src/licensedcode/data/rules/apache-1.1_23.yml b/src/licensedcode/data/rules/apache-1.1_23.yml deleted file mode 100644 index 1756ab9b339..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_23.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation - - copyright (c) International Business Machines, Inc., http://www.ibm.com -ignorable_holders: - - International Business Machines, Inc. - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ - - http://www.ibm.com/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_24.RULE b/src/licensedcode/data/rules/apache-1.1_24.RULE index 0b748ebf5eb..b4eae3a2c64 100644 --- a/src/licensedcode/data/rules/apache-1.1_24.RULE +++ b/src/licensedcode/data/rules/apache-1.1_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 80 +notes: Apache 1.1 JRDF variant +--- + * The Apache Software License, Version 1.1 * * @@ -43,5 +50,4 @@ * SUCH DAMAGE. * This software consists of voluntary contributions made by many * individuals on behalf of the . For more - * information on , please see - + * information on , please see \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_24.yml b/src/licensedcode/data/rules/apache-1.1_24.yml deleted file mode 100644 index 470bde9db8c..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 80 -notes: Apache 1.1 JRDF variant diff --git a/src/licensedcode/data/rules/apache-1.1_25.RULE b/src/licensedcode/data/rules/apache-1.1_25.RULE index ec2683a8c5b..7f43673524f 100644 --- a/src/licensedcode/data/rules/apache-1.1_25.RULE +++ b/src/licensedcode/data/rules/apache-1.1_25.RULE @@ -1,3 +1,19 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +notes: Cactus Apache 1.1 variant with some old Apache Group reference +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation http://www.apache.org +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Copyright (c) The Apache Software Foundation. All rights @@ -42,4 +58,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_25.yml b/src/licensedcode/data/rules/apache-1.1_25.yml deleted file mode 100644 index 0fdc8b510e9..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_25.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -notes: Cactus Apache 1.1 variant with some old Apache Group reference -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation http://www.apache.org -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_26.RULE b/src/licensedcode/data/rules/apache-1.1_26.RULE index c00c9d02697..c26a71d0b41 100644 --- a/src/licensedcode/data/rules/apache-1.1_26.RULE +++ b/src/licensedcode/data/rules/apache-1.1_26.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +notes: Apache 1.1 URL +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-1.1 +--- + http://www.apache.org/licenses/LICENSE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_26.yml b/src/licensedcode/data/rules/apache-1.1_26.yml deleted file mode 100644 index 847337ad91b..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -notes: Apache 1.1 URL -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_27.RULE b/src/licensedcode/data/rules/apache-1.1_27.RULE index d99a1fe2a3a..3fcc49b3676 100644 --- a/src/licensedcode/data/rules/apache-1.1_27.RULE +++ b/src/licensedcode/data/rules/apache-1.1_27.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 90 +notes: Infozone Template Usage +ignorable_authors: + - the Infozone Group (http://www.infozone-group.org/) +ignorable_urls: + - http://www.infozone-group.org/ +ignorable_emails: + - infozone@infozone-group.org +--- + * The Infozone Software License, Version 2.0 * * diff --git a/src/licensedcode/data/rules/apache-1.1_27.yml b/src/licensedcode/data/rules/apache-1.1_27.yml deleted file mode 100644 index cb1f0a9807e..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_27.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 90 -notes: Infozone Template Usage -ignorable_authors: - - the Infozone Group (http://www.infozone-group.org/) -ignorable_urls: - - http://www.infozone-group.org/ -ignorable_emails: - - infozone@infozone-group.org diff --git a/src/licensedcode/data/rules/apache-1.1_28.RULE b/src/licensedcode/data/rules/apache-1.1_28.RULE index fafe8e581f6..25380b44440 100644 --- a/src/licensedcode/data/rules/apache-1.1_28.RULE +++ b/src/licensedcode/data/rules/apache-1.1_28.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +referenced_filenames: + - LICENSE.xerces_2_5_0.txt +--- + and is licensed under the Apache Software License, Version 1.1, which is in the LICENSE.xerces_2_5_0.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_28.yml b/src/licensedcode/data/rules/apache-1.1_28.yml deleted file mode 100644 index ce03cfad226..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -referenced_filenames: - - LICENSE.xerces_2_5_0.txt diff --git a/src/licensedcode/data/rules/apache-1.1_29.RULE b/src/licensedcode/data/rules/apache-1.1_29.RULE index 0a8bcb7050f..4ff69f17641 100644 --- a/src/licensedcode/data/rules/apache-1.1_29.RULE +++ b/src/licensedcode/data/rules/apache-1.1_29.RULE @@ -1,3 +1,19 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +notes: Apache 1.1 variant +ignorable_copyrights: + - Copyright (c) 2000-2002 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + * The Apache Software License, Version 1.1 * * Copyright (c) 2000-2002 The Apache Software Foundation . All rights @@ -48,4 +64,4 @@ * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see - * . + * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_29.yml b/src/licensedcode/data/rules/apache-1.1_29.yml deleted file mode 100644 index b3d4c510fb4..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_29.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -notes: Apache 1.1 variant -ignorable_copyrights: - - Copyright (c) 2000-2002 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_3.RULE b/src/licensedcode/data/rules/apache-1.1_3.RULE index dd3e6a63fac..65e246584a4 100644 --- a/src/licensedcode/data/rules/apache-1.1_3.RULE +++ b/src/licensedcode/data/rules/apache-1.1_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + /* * * ==================================================================== @@ -54,4 +69,4 @@ * information on the Apache Software Foundation, please see * . * - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_3.yml b/src/licensedcode/data/rules/apache-1.1_3.yml deleted file mode 100644 index b484b7782ad..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_30.RULE b/src/licensedcode/data/rules/apache-1.1_30.RULE index eb2e2cdec37..1edbf9fe352 100644 --- a/src/licensedcode/data/rules/apache-1.1_30.RULE +++ b/src/licensedcode/data/rules/apache-1.1_30.RULE @@ -1,3 +1,21 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 70 +notes: Apache bsf declaration +ignorable_copyrights: + - Copyright (c) 2002 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - Sanjiva Weerawarana and others at International Business Machines + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Copyright (c) 2002 The Apache Software Foundation. All rights diff --git a/src/licensedcode/data/rules/apache-1.1_30.yml b/src/licensedcode/data/rules/apache-1.1_30.yml deleted file mode 100644 index 805f0f8fb08..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_30.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 70 -notes: Apache bsf declaration -ignorable_copyrights: - - Copyright (c) 2002 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - Sanjiva Weerawarana and others at International Business Machines - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_31.RULE b/src/licensedcode/data/rules/apache-1.1_31.RULE index 88fa3a59511..575c33c93e7 100644 --- a/src/licensedcode/data/rules/apache-1.1_31.RULE +++ b/src/licensedcode/data/rules/apache-1.1_31.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +minimum_coverage: 100 +notes: Notice found in http://apache.org/licenses/LICENSE-1.1 but it is really specific to + an Apache Software Foundation component. +ignorable_urls: + - http://www.apache.org/ +--- + * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see diff --git a/src/licensedcode/data/rules/apache-1.1_31.yml b/src/licensedcode/data/rules/apache-1.1_31.yml deleted file mode 100644 index 99d6bd0c5b6..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_31.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -minimum_coverage: 100 -notes: Notice found in http://apache.org/licenses/LICENSE-1.1 but it is really specific to - an Apache Software Foundation component. -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-1.1_32.RULE b/src/licensedcode/data/rules/apache-1.1_32.RULE index 01eccba42e9..e5a5bede746 100644 --- a/src/licensedcode/data/rules/apache-1.1_32.RULE +++ b/src/licensedcode/data/rules/apache-1.1_32.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +notes: Notice found in http://apache.org/licenses/LICENSE-1.1 but it is really specific to + an Apache Software Foundation component. " +--- + Apache License 1.1 ------------------ licenses/jrdf.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_32.yml b/src/licensedcode/data/rules/apache-1.1_32.yml deleted file mode 100644 index 5f3c90f3f71..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -notes: Notice found in http://apache.org/licenses/LICENSE-1.1 but it is really specific to - an Apache Software Foundation component. " diff --git a/src/licensedcode/data/rules/apache-1.1_33.RULE b/src/licensedcode/data/rules/apache-1.1_33.RULE index c9fac04b4a5..4868c5f8347 100644 --- a/src/licensedcode/data/rules/apache-1.1_33.RULE +++ b/src/licensedcode/data/rules/apache-1.1_33.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +notes: Viola system apache 1.1 template +ignorable_authors: + - Viola Systems (http://www.violasystems.com/) +ignorable_urls: + - http://www.violasystems.com/ +ignorable_emails: + - opentcp@opentcp.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -36,4 +48,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_33.yml b/src/licensedcode/data/rules/apache-1.1_33.yml deleted file mode 100644 index 3903c090f36..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_33.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -notes: Viola system apache 1.1 template -ignorable_authors: - - Viola Systems (http://www.violasystems.com/) -ignorable_urls: - - http://www.violasystems.com/ -ignorable_emails: - - opentcp@opentcp.org diff --git a/src/licensedcode/data/rules/apache-1.1_34.RULE b/src/licensedcode/data/rules/apache-1.1_34.RULE index 3bd42e40808..602d520267f 100644 --- a/src/licensedcode/data/rules/apache-1.1_34.RULE +++ b/src/licensedcode/data/rules/apache-1.1_34.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +notes: Release declaration +--- + released under Apache Software License, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_34.yml b/src/licensedcode/data/rules/apache-1.1_34.yml deleted file mode 100644 index 11a6a86baad..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 -notes: Release declaration diff --git a/src/licensedcode/data/rules/apache-1.1_35.RULE b/src/licensedcode/data/rules/apache-1.1_35.RULE index c5689f4ce99..e1b477380b2 100644 --- a/src/licensedcode/data/rules/apache-1.1_35.RULE +++ b/src/licensedcode/data/rules/apache-1.1_35.RULE @@ -1,3 +1,19 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +notes: Apache-1.1-style template +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Copyright (c) The Apache Software Foundation. All rights @@ -48,4 +64,4 @@ This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the Apache Software Foundation, please see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_35.yml b/src/licensedcode/data/rules/apache-1.1_35.yml deleted file mode 100644 index e7eddfeab8e..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_35.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -notes: Apache-1.1-style template -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_36.RULE b/src/licensedcode/data/rules/apache-1.1_36.RULE index b8ce7f3f1e0..943533695c5 100644 --- a/src/licensedcode/data/rules/apache-1.1_36.RULE +++ b/src/licensedcode/data/rules/apache-1.1_36.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Old, original Apache 1.1 URL +ignorable_urls: + - http://www.apache.org/licenses/LICENSE +--- + http://www.apache.org/licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_36.yml b/src/licensedcode/data/rules/apache-1.1_36.yml deleted file mode 100644 index 2cb8e6e10e2..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_36.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Old, original Apache 1.1 URL -ignorable_urls: - - http://www.apache.org/licenses/LICENSE diff --git a/src/licensedcode/data/rules/apache-1.1_37.RULE b/src/licensedcode/data/rules/apache-1.1_37.RULE index 488cd9ae446..01e2c99c3cb 100644 --- a/src/licensedcode/data/rules/apache-1.1_37.RULE +++ b/src/licensedcode/data/rules/apache-1.1_37.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +referenced_filenames: + - APACHE.txt +ignorable_urls: + - http://www.apache.org/LICENSE.txt +--- + This license is derived and fully compatible with the Apache Software license, see http://www.apache.org/LICENSE.txt @@ -42,4 +51,4 @@ ==================================================================== Portions of this software are based upon Apache Foundation Software - and are licensed under the terms described in the APACHE.txt file. + and are licensed under the terms described in the APACHE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_37.yml b/src/licensedcode/data/rules/apache-1.1_37.yml deleted file mode 100644 index 5c83fc90c13..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -referenced_filenames: - - APACHE.txt -ignorable_urls: - - http://www.apache.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-1.1_37_1.RULE b/src/licensedcode/data/rules/apache-1.1_37_1.RULE index e1d8ba6fe87..ad19e52f014 100644 --- a/src/licensedcode/data/rules/apache-1.1_37_1.RULE +++ b/src/licensedcode/data/rules/apache-1.1_37_1.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE +--- + Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_37_1.yml b/src/licensedcode/data/rules/apache-1.1_37_1.yml deleted file mode 100644 index 2ffe1f2d3cb..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_37_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_tag: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE diff --git a/src/licensedcode/data/rules/apache-1.1_38.RULE b/src/licensedcode/data/rules/apache-1.1_38.RULE index dfec46c7491..09e223c0b7f 100644 --- a/src/licensedcode/data/rules/apache-1.1_38.RULE +++ b/src/licensedcode/data/rules/apache-1.1_38.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_authors: + - the Caucho Technology (http://www.caucho.com/) +ignorable_urls: + - http://www.caucho.com/ +ignorable_emails: + - info@caucho.com +--- + * The Apache Software License, Version 1.1 * * Redistribution and use in source and binary forms, with or without @@ -39,4 +50,4 @@ * 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/apache-1.1_38.yml b/src/licensedcode/data/rules/apache-1.1_38.yml deleted file mode 100644 index d26317c886c..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_38.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_authors: - - the Caucho Technology (http://www.caucho.com/) -ignorable_urls: - - http://www.caucho.com/ -ignorable_emails: - - info@caucho.com diff --git a/src/licensedcode/data/rules/apache-1.1_39.RULE b/src/licensedcode/data/rules/apache-1.1_39.RULE index 5ee238485bf..96ff50938bf 100644 --- a/src/licensedcode/data/rules/apache-1.1_39.RULE +++ b/src/licensedcode/data/rules/apache-1.1_39.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_authors: + - the Caucho Technology (http://www.caucho.com/) +ignorable_urls: + - http://www.caucho.com/ +ignorable_emails: + - info@caucho.com +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -37,4 +48,4 @@ * 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/apache-1.1_39.yml b/src/licensedcode/data/rules/apache-1.1_39.yml deleted file mode 100644 index d26317c886c..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_39.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_authors: - - the Caucho Technology (http://www.caucho.com/) -ignorable_urls: - - http://www.caucho.com/ -ignorable_emails: - - info@caucho.com diff --git a/src/licensedcode/data/rules/apache-1.1_4.RULE b/src/licensedcode/data/rules/apache-1.1_4.RULE index 8712122336c..89703e32513 100644 --- a/src/licensedcode/data/rules/apache-1.1_4.RULE +++ b/src/licensedcode/data/rules/apache-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licenses/LICENSE-1.1 +--- + http://apache.org/licenses/LICENSE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_4.yml b/src/licensedcode/data/rules/apache-1.1_4.yml deleted file mode 100644 index d72b66cfed2..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://apache.org/licenses/LICENSE-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_40.RULE b/src/licensedcode/data/rules/apache-1.1_40.RULE index 7e58a683eb0..14501a454d9 100644 --- a/src/licensedcode/data/rules/apache-1.1_40.RULE +++ b/src/licensedcode/data/rules/apache-1.1_40.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_authors: + - the LOG4PLSQL project team +ignorable_urls: + - http://log4plsql.sourceforge.net/ +ignorable_emails: + - apache@apache.org + - log4plsql-all-info@lists.sourceforge.net +--- + /* * ============================================================================ * The LOG4PLSQL Software License, Version 1.0 @@ -48,4 +60,4 @@ * * This software consists of voluntary contributions made by many individuals * on behalf of the LOG4PLSQL project team. For more information on the - * LOG4PLSQL project team, please see + * LOG4PLSQL project team, please see \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_40.yml b/src/licensedcode/data/rules/apache-1.1_40.yml deleted file mode 100644 index 0655bc7fc6d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_40.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_authors: - - the LOG4PLSQL project team -ignorable_urls: - - http://log4plsql.sourceforge.net/ -ignorable_emails: - - apache@apache.org - - log4plsql-all-info@lists.sourceforge.net diff --git a/src/licensedcode/data/rules/apache-1.1_41.RULE b/src/licensedcode/data/rules/apache-1.1_41.RULE index a16f4b8d264..5ec838aa5b1 100644 --- a/src/licensedcode/data/rules/apache-1.1_41.RULE +++ b/src/licensedcode/data/rules/apache-1.1_41.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_authors: + - the LOG4PLSQL project team +ignorable_urls: + - http://log4plsql.sourceforge.net/ +ignorable_emails: + - apache@apache.org + - log4plsql-all-info@lists.sourceforge.net +--- + * Redistribution and use in source and binary forms, with or without modifica- * tion, are permitted provided that the following conditions are met: * @@ -42,4 +54,4 @@ * * This software consists of voluntary contributions made by many individuals * on behalf of the LOG4PLSQL project team. For more information on the - * LOG4PLSQL project team, please see + * LOG4PLSQL project team, please see \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_41.yml b/src/licensedcode/data/rules/apache-1.1_41.yml deleted file mode 100644 index 0655bc7fc6d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_41.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_authors: - - the LOG4PLSQL project team -ignorable_urls: - - http://log4plsql.sourceforge.net/ -ignorable_emails: - - apache@apache.org - - log4plsql-all-info@lists.sourceforge.net diff --git a/src/licensedcode/data/rules/apache-1.1_42.RULE b/src/licensedcode/data/rules/apache-1.1_42.RULE index de40b61eb35..7beabefcd9f 100644 --- a/src/licensedcode/data/rules/apache-1.1_42.RULE +++ b/src/licensedcode/data/rules/apache-1.1_42.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-1.1.txt +--- + The Apache Software License, Version 1.1 -http://www.apache.org/licenses/LICENSE-1.1.txt +http://www.apache.org/licenses/LICENSE-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_42.yml b/src/licensedcode/data/rules/apache-1.1_42.yml deleted file mode 100644 index 0b38e6ade44..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_42.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-1.1.txt diff --git a/src/licensedcode/data/rules/apache-1.1_43.RULE b/src/licensedcode/data/rules/apache-1.1_43.RULE index aec84b7f166..220d28f4f8e 100644 --- a/src/licensedcode/data/rules/apache-1.1_43.RULE +++ b/src/licensedcode/data/rules/apache-1.1_43.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Copyright (c) 2000 The Apache Software Foundation. All rights @@ -45,4 +60,4 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the Apache Software Foundation, please see . +This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the Apache Software Foundation, please see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_43.yml b/src/licensedcode/data/rules/apache-1.1_43.yml deleted file mode 100644 index e0e6c73c816..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_43.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_44.RULE b/src/licensedcode/data/rules/apache-1.1_44.RULE index 3e0c37a17f2..41c8cf6e340 100644 --- a/src/licensedcode/data/rules/apache-1.1_44.RULE +++ b/src/licensedcode/data/rules/apache-1.1_44.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_urls: + - http://www.apache.org/LICENSE.txt +--- + * * This license is derived and fully compatible with the Apache Software * license, see http://www.apache.org/LICENSE.txt @@ -40,4 +47,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_44.yml b/src/licensedcode/data/rules/apache-1.1_44.yml deleted file mode 100644 index 2aed6f736ac..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_44.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_urls: - - http://www.apache.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-1.1_45.RULE b/src/licensedcode/data/rules/apache-1.1_45.RULE index 5393169bd25..95f1337fffb 100644 --- a/src/licensedcode/data/rules/apache-1.1_45.RULE +++ b/src/licensedcode/data/rules/apache-1.1_45.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + APACHE 1.1 Redistribution and use in source and binary forms, with or without @@ -39,4 +48,4 @@ APACHE 1.1 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 + SUCH DAMAGE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_45.yml b/src/licensedcode/data/rules/apache-1.1_45.yml deleted file mode 100644 index cc3960f3d4e..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_45.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-1.1_46.RULE b/src/licensedcode/data/rules/apache-1.1_46.RULE index eaed525076e..a6c8fef9305 100644 --- a/src/licensedcode/data/rules/apache-1.1_46.RULE +++ b/src/licensedcode/data/rules/apache-1.1_46.RULE @@ -1,3 +1,22 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation + - copyright (c) 1999, International Business Machines, Inc., http://www.ibm.com +ignorable_holders: + - International Business Machines, Inc. + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ + - http://www.ibm.com/ +ignorable_emails: + - apache@apache.org +--- + The Apache license appears below (as required). @@ -53,4 +72,4 @@ individuals on behalf of the Apache Software Foundation, and was originally based on software copyright (c) 1999, International Business Machines, Inc., http://www.ibm.com . For more information on the Apache Software Foundation, please see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_46.yml b/src/licensedcode/data/rules/apache-1.1_46.yml deleted file mode 100644 index 4ac015d5837..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_46.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation - - copyright (c) 1999, International Business Machines, Inc., http://www.ibm.com -ignorable_holders: - - International Business Machines, Inc. - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ - - http://www.ibm.com/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_47.RULE b/src/licensedcode/data/rules/apache-1.1_47.RULE index bccceb952c0..b5a3d9711a4 100644 --- a/src/licensedcode/data/rules/apache-1.1_47.RULE +++ b/src/licensedcode/data/rules/apache-1.1_47.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +notes: Cactus Apache 1.1 variant with some old Apache Group reference +ignorable_authors: + - the Apache Software Foundation http://www.apache.org +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -38,4 +50,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_47.yml b/src/licensedcode/data/rules/apache-1.1_47.yml deleted file mode 100644 index e4c63f3240b..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_47.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -notes: Cactus Apache 1.1 variant with some old Apache Group reference -ignorable_authors: - - the Apache Software Foundation http://www.apache.org -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_48.RULE b/src/licensedcode/data/rules/apache-1.1_48.RULE index bb76d4f18d1..a9ea87e05b7 100644 --- a/src/licensedcode/data/rules/apache-1.1_48.RULE +++ b/src/licensedcode/data/rules/apache-1.1_48.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/LICENSE.txt +--- + (this license is derived and fully compatible with the Apache Software -License - see http://www.apache.org/LICENSE.txt) +License - see http://www.apache.org/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_48.yml b/src/licensedcode/data/rules/apache-1.1_48.yml deleted file mode 100644 index 4d447d253f8..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_48.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-1.1_49.RULE b/src/licensedcode/data/rules/apache-1.1_49.RULE index 5a4c9c368f7..c0b750b3278 100644 --- a/src/licensedcode/data/rules/apache-1.1_49.RULE +++ b/src/licensedcode/data/rules/apache-1.1_49.RULE @@ -1,4 +1,12 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +minimum_coverage: 100 +ignorable_urls: + - http://www.apache.org/LICENSE.txt +--- + The OpenSymphony Software License, Version 1.1 (this license is derived and fully compatible with the Apache Software -License - see http://www.apache.org/LICENSE.txt) +License - see http://www.apache.org/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_49.yml b/src/licensedcode/data/rules/apache-1.1_49.yml deleted file mode 100644 index 1eb7c09d6fb..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -minimum_coverage: 100 -ignorable_urls: - - http://www.apache.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-1.1_5.RULE b/src/licensedcode/data/rules/apache-1.1_5.RULE index 282818774da..295aa155fec 100644 --- a/src/licensedcode/data/rules/apache-1.1_5.RULE +++ b/src/licensedcode/data/rules/apache-1.1_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +--- + # This software is published under the terms of the Apache Software License # # version 1.1, a copy of which has been included with this distribution in # # the LICENSE file. # \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_5.yml b/src/licensedcode/data/rules/apache-1.1_5.yml deleted file mode 100644 index 48e15b487de..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-1.1_50.RULE b/src/licensedcode/data/rules/apache-1.1_50.RULE index 1988e6da0c6..ff4015860a1 100644 --- a/src/licensedcode/data/rules/apache-1.1_50.RULE +++ b/src/licensedcode/data/rules/apache-1.1_50.RULE @@ -1 +1,7 @@ -The OpenSymphony Software License, Version 1.1 +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +--- + +The OpenSymphony Software License, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_50.yml b/src/licensedcode/data/rules/apache-1.1_50.yml deleted file mode 100644 index 21a5e9f387d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_51.RULE b/src/licensedcode/data/rules/apache-1.1_51.RULE index 25601f134c5..4008b6e4d43 100644 --- a/src/licensedcode/data/rules/apache-1.1_51.RULE +++ b/src/licensedcode/data/rules/apache-1.1_51.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +--- + The Apache Software License, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_51.yml b/src/licensedcode/data/rules/apache-1.1_51.yml deleted file mode 100644 index 21a5e9f387d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_52.RULE b/src/licensedcode/data/rules/apache-1.1_52.RULE index 7ad34765946..6f0cb2576f6 100644 --- a/src/licensedcode/data/rules/apache-1.1_52.RULE +++ b/src/licensedcode/data/rules/apache-1.1_52.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/apache-1.1_52.yml b/src/licensedcode/data/rules/apache-1.1_52.yml deleted file mode 100644 index aa2f32e09fe..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_52.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_53.RULE b/src/licensedcode/data/rules/apache-1.1_53.RULE index 7d04dd5ae29..46e7099adf6 100644 --- a/src/licensedcode/data/rules/apache-1.1_53.RULE +++ b/src/licensedcode/data/rules/apache-1.1_53.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The complete text of the Apache Software License Version 1.1 is as follows: /* diff --git a/src/licensedcode/data/rules/apache-1.1_53.yml b/src/licensedcode/data/rules/apache-1.1_53.yml deleted file mode 100644 index 73068033786..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_53.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_54.RULE b/src/licensedcode/data/rules/apache-1.1_54.RULE index e2caa16f1d4..40eb0640a95 100644 --- a/src/licensedcode/data/rules/apache-1.1_54.RULE +++ b/src/licensedcode/data/rules/apache-1.1_54.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_54.yml b/src/licensedcode/data/rules/apache-1.1_54.yml deleted file mode 100644 index e59196879c1..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_54.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/apache-1.1_55.RULE b/src/licensedcode/data/rules/apache-1.1_55.RULE index c474581d29b..f4bd211078e 100644 --- a/src/licensedcode/data/rules/apache-1.1_55.RULE +++ b/src/licensedcode/data/rules/apache-1.1_55.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 80 +--- + License, Version 1.1 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_55.yml b/src/licensedcode/data/rules/apache-1.1_55.yml deleted file mode 100644 index 739faeff6f6..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/apache-1.1_56.RULE b/src/licensedcode/data/rules/apache-1.1_56.RULE index 62a44fa81ec..326ef82b895 100644 --- a/src/licensedcode/data/rules/apache-1.1_56.RULE +++ b/src/licensedcode/data/rules/apache-1.1_56.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-1.1 +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: @@ -33,4 +38,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_56.yml b/src/licensedcode/data/rules/apache-1.1_56.yml deleted file mode 100644 index e59196879c1..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/apache-1.1_57.RULE b/src/licensedcode/data/rules/apache-1.1_57.RULE index e98ad078725..501cb4ab909 100644 --- a/src/licensedcode/data/rules/apache-1.1_57.RULE +++ b/src/licensedcode/data/rules/apache-1.1_57.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 99 +ignorable_authors: + - Daisuke Okajima and Kohsuke Kawaguchi (http://relaxngcc.sf.net/) +ignorable_urls: + - http://relaxngcc.sf.net/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -34,4 +44,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_57.yml b/src/licensedcode/data/rules/apache-1.1_57.yml deleted file mode 100644 index f16a114c96b..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_57.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 99 -ignorable_authors: - - Daisuke Okajima and Kohsuke Kawaguchi (http://relaxngcc.sf.net/) -ignorable_urls: - - http://relaxngcc.sf.net/ diff --git a/src/licensedcode/data/rules/apache-1.1_58.RULE b/src/licensedcode/data/rules/apache-1.1_58.RULE index b5a32e1fbcd..438f4ee8cd8 100644 --- a/src/licensedcode/data/rules/apache-1.1_58.RULE +++ b/src/licensedcode/data/rules/apache-1.1_58.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Copyright (c) 2000 The Apache Software Foundation. All rights @@ -46,4 +61,4 @@ SUCH DAMAGE. This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the Apache -Software Foundation, please see . +Software Foundation, please see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_58.yml b/src/licensedcode/data/rules/apache-1.1_58.yml deleted file mode 100644 index e0e6c73c816..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_58.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_59.RULE b/src/licensedcode/data/rules/apache-1.1_59.RULE index ce1ea786f39..6b00d7bed23 100644 --- a/src/licensedcode/data/rules/apache-1.1_59.RULE +++ b/src/licensedcode/data/rules/apache-1.1_59.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + * The Apache Software License, Version 1.1 * * Copyright (c) The Apache Software Foundation. All rights @@ -48,4 +63,4 @@ * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see - * . + * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_59.yml b/src/licensedcode/data/rules/apache-1.1_59.yml deleted file mode 100644 index 73068033786..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_59.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_6.RULE b/src/licensedcode/data/rules/apache-1.1_6.RULE index 25bb18a12e5..25e8c2598f2 100644 --- a/src/licensedcode/data/rules/apache-1.1_6.RULE +++ b/src/licensedcode/data/rules/apache-1.1_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +notes: Jahia Template +ignorable_urls: + - http://www.apache.org/LICENSE.txt +--- + Open Software License, Version 1.1 * This license is derived and fully compatible with the Apache @@ -45,4 +53,4 @@ Open Software License, Version 1.1 * ==================================================================== * * Portions of this software are based upon Apache Foundation Software - * and are licensed under the terms described in the APACHE.txt file. + * and are licensed under the terms described in the APACHE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_6.yml b/src/licensedcode/data/rules/apache-1.1_6.yml deleted file mode 100644 index 3e3529ef35f..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -notes: Jahia Template -ignorable_urls: - - http://www.apache.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-1.1_60.RULE b/src/licensedcode/data/rules/apache-1.1_60.RULE index cf01bbae8e1..8d8b7e66bfc 100644 --- a/src/licensedcode/data/rules/apache-1.1_60.RULE +++ b/src/licensedcode/data/rules/apache-1.1_60.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -34,4 +40,4 @@ modification, are permitted provided that the following conditions are met: 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. + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_60.yml b/src/licensedcode/data/rules/apache-1.1_60.yml deleted file mode 100644 index 739faeff6f6..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/apache-1.1_61.RULE b/src/licensedcode/data/rules/apache-1.1_61.RULE index b6b001d2d17..4f1438970be 100644 --- a/src/licensedcode/data/rules/apache-1.1_61.RULE +++ b/src/licensedcode/data/rules/apache-1.1_61.RULE @@ -1,3 +1,19 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - copyright (c) 1999, International Business Machines, Inc., http://www.apache.org +ignorable_holders: + - International Business Machines, Inc. +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + /* * The Apache Software License, Version 1.1 * @@ -49,4 +65,4 @@ * originally based on software copyright (c) 1999, International * Business Machines, Inc., http://www.apache.org. For more * information on the Apache Software Foundation, please see - * . + * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_61.yml b/src/licensedcode/data/rules/apache-1.1_61.yml deleted file mode 100644 index 7edc0d26e52..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_61.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -minimum_coverage: 80 -ignorable_copyrights: - - copyright (c) 1999, International Business Machines, Inc., http://www.apache.org -ignorable_holders: - - International Business Machines, Inc. -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_62.RULE b/src/licensedcode/data/rules/apache-1.1_62.RULE index 561f83f5ed0..0b5f63a381b 100644 --- a/src/licensedcode/data/rules/apache-1.1_62.RULE +++ b/src/licensedcode/data/rules/apache-1.1_62.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + Apache Software License /* diff --git a/src/licensedcode/data/rules/apache-1.1_62.yml b/src/licensedcode/data/rules/apache-1.1_62.yml deleted file mode 100644 index 73068033786..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_62.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_63.RULE b/src/licensedcode/data/rules/apache-1.1_63.RULE index 6c47059fa52..431cd101e10 100644 --- a/src/licensedcode/data/rules/apache-1.1_63.RULE +++ b/src/licensedcode/data/rules/apache-1.1_63.RULE @@ -1,3 +1,21 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation + - copyright (c) 1999, International Business Machines, Inc., http://www.ibm.com +ignorable_holders: + - International Business Machines, Inc. + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ + - http://www.ibm.com/ +ignorable_emails: + - apache@apache.org +--- + is licensed under the Apache Software License, Version 1.1, which is reproduced below. diff --git a/src/licensedcode/data/rules/apache-1.1_63.yml b/src/licensedcode/data/rules/apache-1.1_63.yml deleted file mode 100644 index d5de3e4c75e..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_63.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation - - copyright (c) 1999, International Business Machines, Inc., http://www.ibm.com -ignorable_holders: - - International Business Machines, Inc. - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ - - http://www.ibm.com/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_64.RULE b/src/licensedcode/data/rules/apache-1.1_64.RULE index 188726ab84d..99540f13df4 100644 --- a/src/licensedcode/data/rules/apache-1.1_64.RULE +++ b/src/licensedcode/data/rules/apache-1.1_64.RULE @@ -1 +1,9 @@ -http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD", \ No newline at end of file +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD +--- + +http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD", \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_64.yml b/src/licensedcode/data/rules/apache-1.1_64.yml deleted file mode 100644 index f4b3b09aabf..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD diff --git a/src/licensedcode/data/rules/apache-1.1_65.RULE b/src/licensedcode/data/rules/apache-1.1_65.RULE index a629b19dae1..0864bb47deb 100644 --- a/src/licensedcode/data/rules/apache-1.1_65.RULE +++ b/src/licensedcode/data/rules/apache-1.1_65.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD +--- + "name": "The P6Spy Software License, Version 1.1", name "url": "http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD", url \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_65.yml b/src/licensedcode/data/rules/apache-1.1_65.yml deleted file mode 100644 index 074d25116a2..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://cvs.sourceforge.net/viewcvs.py/*checkout*/p6spy/p6spy/license.txt?rev=HEAD diff --git a/src/licensedcode/data/rules/apache-1.1_66.RULE b/src/licensedcode/data/rules/apache-1.1_66.RULE index 79d2e171971..9a66c242d20 100644 --- a/src/licensedcode/data/rules/apache-1.1_66.RULE +++ b/src/licensedcode/data/rules/apache-1.1_66.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +--- + The P6Spy Software License, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_66.yml b/src/licensedcode/data/rules/apache-1.1_66.yml deleted file mode 100644 index 21a5e9f387d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_67.RULE b/src/licensedcode/data/rules/apache-1.1_67.RULE index 162e0e6b14a..5043b7c65b6 100644 --- a/src/licensedcode/data/rules/apache-1.1_67.RULE +++ b/src/licensedcode/data/rules/apache-1.1_67.RULE @@ -1 +1,7 @@ -Available under the Apache 1.1 license. \ No newline at end of file +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + +Available under the Apache 1.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_67.yml b/src/licensedcode/data/rules/apache-1.1_67.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_68.RULE b/src/licensedcode/data/rules/apache-1.1_68.RULE index 8fe14f08ba6..01347a7baa5 100644 --- a/src/licensedcode/data/rules/apache-1.1_68.RULE +++ b/src/licensedcode/data/rules/apache-1.1_68.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + Available under the Apache 1.1 license. copyright and licensing has been reviewed and approved by the Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_68.yml b/src/licensedcode/data/rules/apache-1.1_68.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_69.RULE b/src/licensedcode/data/rules/apache-1.1_69.RULE index 5d5da4b4bdc..1ba30164d5d 100644 --- a/src/licensedcode/data/rules/apache-1.1_69.RULE +++ b/src/licensedcode/data/rules/apache-1.1_69.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + ==================================================================== The Apache Software License, Version 1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_69.yml b/src/licensedcode/data/rules/apache-1.1_69.yml deleted file mode 100644 index 73068033786..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_69.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_7.RULE b/src/licensedcode/data/rules/apache-1.1_7.RULE index 519548056f5..1a79b4030e9 100644 --- a/src/licensedcode/data/rules/apache-1.1_7.RULE +++ b/src/licensedcode/data/rules/apache-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +notes: Apache 1.1 text URL +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-1.1.txt +--- + http://www.apache.org/licenses/LICENSE-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_7.yml b/src/licensedcode/data/rules/apache-1.1_7.yml deleted file mode 100644 index bc9e071d321..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -notes: Apache 1.1 text URL -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-1.1.txt diff --git a/src/licensedcode/data/rules/apache-1.1_70.RULE b/src/licensedcode/data/rules/apache-1.1_70.RULE index 906721fd636..ac65c222e76 100644 --- a/src/licensedcode/data/rules/apache-1.1_70.RULE +++ b/src/licensedcode/data/rules/apache-1.1_70.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +relevance: 90 +notes: tag as documented in the Module-Build pod +--- + license apache_1_1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_70.yml b/src/licensedcode/data/rules/apache-1.1_70.yml deleted file mode 100644 index f80f9f4a93a..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_70.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_tag: yes -relevance: 90 -notes: tag as documented in the Module-Build pod diff --git a/src/licensedcode/data/rules/apache-1.1_71.RULE b/src/licensedcode/data/rules/apache-1.1_71.RULE index f345b6bfdbb..7b8d1c93fa5 100644 --- a/src/licensedcode/data/rules/apache-1.1_71.RULE +++ b/src/licensedcode/data/rules/apache-1.1_71.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + /* ==================================================================== * The Apache Software License, Version 1.1 * diff --git a/src/licensedcode/data/rules/apache-1.1_71.yml b/src/licensedcode/data/rules/apache-1.1_71.yml deleted file mode 100644 index e0e6c73c816..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_71.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_72.RULE b/src/licensedcode/data/rules/apache-1.1_72.RULE index f93c1cd4d92..bc73cd7d634 100644 --- a/src/licensedcode/data/rules/apache-1.1_72.RULE +++ b/src/licensedcode/data/rules/apache-1.1_72.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Copyright (c) 2000 The Apache Software Foundation. All rights diff --git a/src/licensedcode/data/rules/apache-1.1_72.yml b/src/licensedcode/data/rules/apache-1.1_72.yml deleted file mode 100644 index e0e6c73c816..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_72.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_73.RULE b/src/licensedcode/data/rules/apache-1.1_73.RULE index 9fe76a584f6..6e1983f79d6 100644 --- a/src/licensedcode/data/rules/apache-1.1_73.RULE +++ b/src/licensedcode/data/rules/apache-1.1_73.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://apache.org/licenses/LICENSE-1.1 +--- + The distribution is licensed under the Apache Software License, Version 1.1 (http://apache.org/licenses/LICENSE-1.1). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_73.yml b/src/licensedcode/data/rules/apache-1.1_73.yml deleted file mode 100644 index c7b4c17e570..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://apache.org/licenses/LICENSE-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_74.RULE b/src/licensedcode/data/rules/apache-1.1_74.RULE index 9f3f5b2f8f5..99dd72b30d6 100644 --- a/src/licensedcode/data/rules/apache-1.1_74.RULE +++ b/src/licensedcode/data/rules/apache-1.1_74.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 100 +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 The Apache Software License, Version 1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_74.yml b/src/licensedcode/data/rules/apache-1.1_74.yml deleted file mode 100644 index 8c8b399bafe..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_74.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 100 -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_75.RULE b/src/licensedcode/data/rules/apache-1.1_75.RULE index c05a96be483..e696115084a 100644 --- a/src/licensedcode/data/rules/apache-1.1_75.RULE +++ b/src/licensedcode/data/rules/apache-1.1_75.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 100 +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + The Apache Software License, Version 1.1 Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/apache-1.1_75.yml b/src/licensedcode/data/rules/apache-1.1_75.yml deleted file mode 100644 index 8c8b399bafe..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_75.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 100 -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_76.RULE b/src/licensedcode/data/rules/apache-1.1_76.RULE index 077fe02ee31..2fde6438186 100644 --- a/src/licensedcode/data/rules/apache-1.1_76.RULE +++ b/src/licensedcode/data/rules/apache-1.1_76.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +--- + Apache Software License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_76.yml b/src/licensedcode/data/rules/apache-1.1_76.yml deleted file mode 100644 index 21a5e9f387d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_77.RULE b/src/licensedcode/data/rules/apache-1.1_77.RULE index 8f460dfb36d..971f2a7b29a 100644 --- a/src/licensedcode/data/rules/apache-1.1_77.RULE +++ b/src/licensedcode/data/rules/apache-1.1_77.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 100 +ignorable_authors: + - University of Technology +--- + Redistribution and use in source and binary forms, with or without modification,are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/apache-1.1_77.yml b/src/licensedcode/data/rules/apache-1.1_77.yml deleted file mode 100644 index 3a77b4ddb18..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 100 -ignorable_authors: - - University of Technology diff --git a/src/licensedcode/data/rules/apache-1.1_78.RULE b/src/licensedcode/data/rules/apache-1.1_78.RULE index b3afce7e880..fb520e9f8e6 100644 --- a/src/licensedcode/data/rules/apache-1.1_78.RULE +++ b/src/licensedcode/data/rules/apache-1.1_78.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: a damaged text seen in OpenJDK notices +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + * Redistribution and use in source and binary forms, withor without * modification, are permitted provided that the followingconditions * are met: diff --git a/src/licensedcode/data/rules/apache-1.1_78.yml b/src/licensedcode/data/rules/apache-1.1_78.yml deleted file mode 100644 index 00ece4df464..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_78.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: a damaged text seen in OpenJDK notices -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_79.RULE b/src/licensedcode/data/rules/apache-1.1_79.RULE index 6898b195809..a51565ae532 100644 --- a/src/licensedcode/data/rules/apache-1.1_79.RULE +++ b/src/licensedcode/data/rules/apache-1.1_79.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +--- + Apache Software License, version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_79.yml b/src/licensedcode/data/rules/apache-1.1_79.yml deleted file mode 100644 index 21a5e9f387d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_8.RULE b/src/licensedcode/data/rules/apache-1.1_8.RULE index 4416a755116..08af3c44501 100644 --- a/src/licensedcode/data/rules/apache-1.1_8.RULE +++ b/src/licensedcode/data/rules/apache-1.1_8.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -37,4 +48,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_8.yml b/src/licensedcode/data/rules/apache-1.1_8.yml deleted file mode 100644 index aa2f32e09fe..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_8.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_80.RULE b/src/licensedcode/data/rules/apache-1.1_80.RULE index acdd70032b0..03d110b0ae2 100644 --- a/src/licensedcode/data/rules/apache-1.1_80.RULE +++ b/src/licensedcode/data/rules/apache-1.1_80.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 95 +--- + asl 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_80.yml b/src/licensedcode/data/rules/apache-1.1_80.yml deleted file mode 100644 index 1da61335dab..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-1.1_81.RULE b/src/licensedcode/data/rules/apache-1.1_81.RULE index cfe10a5b102..bd8f767490a 100644 --- a/src/licensedcode/data/rules/apache-1.1_81.RULE +++ b/src/licensedcode/data/rules/apache-1.1_81.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 100 +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/apache-1.1_81.yml b/src/licensedcode/data/rules/apache-1.1_81.yml deleted file mode 100644 index 8c8b399bafe..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_81.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 100 -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_82.RULE b/src/licensedcode/data/rules/apache-1.1_82.RULE index 3d642ef21a8..7921a9839fb 100644 --- a/src/licensedcode/data/rules/apache-1.1_82.RULE +++ b/src/licensedcode/data/rules/apache-1.1_82.RULE @@ -1,3 +1,19 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1999-2003 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + ========================= Apache-1.1 ========================= diff --git a/src/licensedcode/data/rules/apache-1.1_82.yml b/src/licensedcode/data/rules/apache-1.1_82.yml deleted file mode 100644 index 6291b137a4a..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_82.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1999-2003 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_83.RULE b/src/licensedcode/data/rules/apache-1.1_83.RULE index 7f495bad2e2..6191c1b2489 100644 --- a/src/licensedcode/data/rules/apache-1.1_83.RULE +++ b/src/licensedcode/data/rules/apache-1.1_83.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-1.1.txt +--- + The Apache Software License, Version 1.1 -https://www.apache.org/licenses/LICENSE-1.1.txt +https://www.apache.org/licenses/LICENSE-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_83.yml b/src/licensedcode/data/rules/apache-1.1_83.yml deleted file mode 100644 index 5e9507517da..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_83.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-1.1.txt diff --git a/src/licensedcode/data/rules/apache-1.1_84.RULE b/src/licensedcode/data/rules/apache-1.1_84.RULE index 550fce69ca1..6e685ac03d8 100644 --- a/src/licensedcode/data/rules/apache-1.1_84.RULE +++ b/src/licensedcode/data/rules/apache-1.1_84.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +notes: Apache 1.1 URL +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-1.1 +--- + https://www.apache.org/licenses/LICENSE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_84.yml b/src/licensedcode/data/rules/apache-1.1_84.yml deleted file mode 100644 index 9cc987fe011..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_84.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -notes: Apache 1.1 URL -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_85.RULE b/src/licensedcode/data/rules/apache-1.1_85.RULE index a9623f53783..ffb86f42d9d 100644 --- a/src/licensedcode/data/rules/apache-1.1_85.RULE +++ b/src/licensedcode/data/rules/apache-1.1_85.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Old, original Apache 1.1 URL +ignorable_urls: + - https://www.apache.org/licenses/LICENSE +--- + https://www.apache.org/licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_85.yml b/src/licensedcode/data/rules/apache-1.1_85.yml deleted file mode 100644 index b2db3e53f8e..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_85.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Old, original Apache 1.1 URL -ignorable_urls: - - https://www.apache.org/licenses/LICENSE diff --git a/src/licensedcode/data/rules/apache-1.1_86.RULE b/src/licensedcode/data/rules/apache-1.1_86.RULE index 76152c665dc..c36156d21e6 100644 --- a/src/licensedcode/data/rules/apache-1.1_86.RULE +++ b/src/licensedcode/data/rules/apache-1.1_86.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +notes: Apache 1.1 text URL +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-1.1.txt +--- + https://www.apache.org/licenses/LICENSE-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_86.yml b/src/licensedcode/data/rules/apache-1.1_86.yml deleted file mode 100644 index 5a8f4d164f8..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_86.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -notes: Apache 1.1 text URL -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-1.1.txt diff --git a/src/licensedcode/data/rules/apache-1.1_87.RULE b/src/licensedcode/data/rules/apache-1.1_87.RULE index 8120d852e13..133e9d0cd2a 100644 --- a/src/licensedcode/data/rules/apache-1.1_87.RULE +++ b/src/licensedcode/data/rules/apache-1.1_87.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE.txt +--- + https://www.apache.org/licenses/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_87.yml b/src/licensedcode/data/rules/apache-1.1_87.yml deleted file mode 100644 index a25fc2197fb..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-1.1_88.RULE b/src/licensedcode/data/rules/apache-1.1_88.RULE index 9b9fab48369..85690fc5680 100644 --- a/src/licensedcode/data/rules/apache-1.1_88.RULE +++ b/src/licensedcode/data/rules/apache-1.1_88.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE +--- + Apache Software License 1.1 (available at https://www.apache.org/licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_88.yml b/src/licensedcode/data/rules/apache-1.1_88.yml deleted file mode 100644 index d6b01eeeb14..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_88.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_tag: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE diff --git a/src/licensedcode/data/rules/apache-1.1_89.RULE b/src/licensedcode/data/rules/apache-1.1_89.RULE index ff340933578..d69509899b6 100644 --- a/src/licensedcode/data/rules/apache-1.1_89.RULE +++ b/src/licensedcode/data/rules/apache-1.1_89.RULE @@ -1,3 +1,19 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + Apache License 1.1 Copyright (c) 2000 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_89.yml b/src/licensedcode/data/rules/apache-1.1_89.yml deleted file mode 100644 index 2b8f1138600..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_89.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_9.RULE b/src/licensedcode/data/rules/apache-1.1_9.RULE index ff9793bb31a..f81118a8f2b 100644 --- a/src/licensedcode/data/rules/apache-1.1_9.RULE +++ b/src/licensedcode/data/rules/apache-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +--- + Apache License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_9.yml b/src/licensedcode/data/rules/apache-1.1_9.yml deleted file mode 100644 index 21a5e9f387d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_90.RULE b/src/licensedcode/data/rules/apache-1.1_90.RULE index 34d5ed3055e..8a63960ac27 100644 --- a/src/licensedcode/data/rules/apache-1.1_90.RULE +++ b/src/licensedcode/data/rules/apache-1.1_90.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://cglib.sourceforge.net/license.htm +--- + Licensed under the Apache License, Version 1.1:http://cglib.sourceforge.net/license.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_90.yml b/src/licensedcode/data/rules/apache-1.1_90.yml deleted file mode 100644 index 610b6892c95..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_90.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://cglib.sourceforge.net/license.htm diff --git a/src/licensedcode/data/rules/apache-1.1_91.RULE b/src/licensedcode/data/rules/apache-1.1_91.RULE index becd9d61639..18617ea228a 100644 --- a/src/licensedcode/data/rules/apache-1.1_91.RULE +++ b/src/licensedcode/data/rules/apache-1.1_91.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache software license. See Apache Software License version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_91.yml b/src/licensedcode/data/rules/apache-1.1_91.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_92.RULE b/src/licensedcode/data/rules/apache-1.1_92.RULE index 4d824c6157d..d4ad83961d6 100644 --- a/src/licensedcode/data/rules/apache-1.1_92.RULE +++ b/src/licensedcode/data/rules/apache-1.1_92.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +ignorable_emails: + - apache@apache.org +--- + Apache License 1.1 Copyright (c) 2000 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_92.yml b/src/licensedcode/data/rules/apache-1.1_92.yml deleted file mode 100644 index e0e6c73c816..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_92.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ -ignorable_emails: - - apache@apache.org diff --git a/src/licensedcode/data/rules/apache-1.1_93.RULE b/src/licensedcode/data/rules/apache-1.1_93.RULE index 8c45313f33a..3dc95fa13fd 100644 --- a/src/licensedcode/data/rules/apache-1.1_93.RULE +++ b/src/licensedcode/data/rules/apache-1.1_93.RULE @@ -1 +1,6 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +--- + Apache-1.1 Apache License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_93.yml b/src/licensedcode/data/rules/apache-1.1_93.yml deleted file mode 100644 index cc222703e99..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/apache-1.1_94.RULE b/src/licensedcode/data/rules/apache-1.1_94.RULE index e4c4d4a0795..cad3e7b68ac 100644 --- a/src/licensedcode/data/rules/apache-1.1_94.RULE +++ b/src/licensedcode/data/rules/apache-1.1_94.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Apache License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_94.yml b/src/licensedcode/data/rules/apache-1.1_94.yml deleted file mode 100644 index 99c6f479ee8..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_94.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.1_95.RULE b/src/licensedcode/data/rules/apache-1.1_95.RULE index 93706043c03..22b47cf2c05 100644 --- a/src/licensedcode/data/rules/apache-1.1_95.RULE +++ b/src/licensedcode/data/rules/apache-1.1_95.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apache License 1.1 Apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_95.yml b/src/licensedcode/data/rules/apache-1.1_95.yml deleted file mode 100644 index 99c6f479ee8..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_95.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.1_96.RULE b/src/licensedcode/data/rules/apache-1.1_96.RULE index 20112144768..f76255a8993 100644 --- a/src/licensedcode/data/rules/apache-1.1_96.RULE +++ b/src/licensedcode/data/rules/apache-1.1_96.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Apache License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_96.yml b/src/licensedcode/data/rules/apache-1.1_96.yml deleted file mode 100644 index dc01a0caeb5..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_96.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.1_97.RULE b/src/licensedcode/data/rules/apache-1.1_97.RULE index ec99743f9de..d7cde0f282d 100644 --- a/src/licensedcode/data/rules/apache-1.1_97.RULE +++ b/src/licensedcode/data/rules/apache-1.1_97.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_97.yml b/src/licensedcode/data/rules/apache-1.1_97.yml deleted file mode 100644 index dc01a0caeb5..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_97.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-1.1_98.RULE b/src/licensedcode/data/rules/apache-1.1_98.RULE index 662f59ce2f6..13a3d71a4a9 100644 --- a/src/licensedcode/data/rules/apache-1.1_98.RULE +++ b/src/licensedcode/data/rules/apache-1.1_98.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_text: yes +relevance: 99 +--- + Software License, Version 1.0 Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/apache-1.1_98.yml b/src/licensedcode/data/rules/apache-1.1_98.yml deleted file mode 100644 index 7077c4ff45d..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-1.1_99.RULE b/src/licensedcode/data/rules/apache-1.1_99.RULE index 6c5f98ed96d..dee7848f0aa 100644 --- a/src/licensedcode/data/rules/apache-1.1_99.RULE +++ b/src/licensedcode/data/rules/apache-1.1_99.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the OpenSymphony version 1.1 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_99.yml b/src/licensedcode/data/rules/apache-1.1_99.yml deleted file mode 100644 index 21d12de16d0..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_and_proprietary.RULE b/src/licensedcode/data/rules/apache-1.1_and_proprietary.RULE index e242eb44cd3..84afb6f4d85 100644 --- a/src/licensedcode/data/rules/apache-1.1_and_proprietary.RULE +++ b/src/licensedcode/data/rules/apache-1.1_and_proprietary.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.cip4.org/ +ignorable_emails: + - info@cip4.org +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -56,4 +65,4 @@ * For more information on The International Cooperation for the * Integration of Processes in Prepress, Press and Postpress , please see * . -* +* \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_and_proprietary.yml b/src/licensedcode/data/rules/apache-1.1_and_proprietary.yml deleted file mode 100644 index 7dca772690e..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_and_proprietary.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.cip4.org/ -ignorable_emails: - - info@cip4.org diff --git a/src/licensedcode/data/rules/apache-1.1_cyberneko_1.RULE b/src/licensedcode/data/rules/apache-1.1_cyberneko_1.RULE index cb487a2f9bd..684a0adc65d 100644 --- a/src/licensedcode/data/rules/apache-1.1_cyberneko_1.RULE +++ b/src/licensedcode/data/rules/apache-1.1_cyberneko_1.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + The CyberNeko Software License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_cyberneko_1.yml b/src/licensedcode/data/rules/apache-1.1_cyberneko_1.yml deleted file mode 100644 index 84aa23dade8..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_cyberneko_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-1.1_cyberneko_2.RULE b/src/licensedcode/data/rules/apache-1.1_cyberneko_2.RULE index f8c56a88abc..553c34e4af2 100644 --- a/src/licensedcode/data/rules/apache-1.1_cyberneko_2.RULE +++ b/src/licensedcode/data/rules/apache-1.1_cyberneko_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +minimum_coverage: 60 +--- + The CyberNeko Software License, Version 1.0 Redistribution and use in source and binary forms, with or without modification, diff --git a/src/licensedcode/data/rules/apache-1.1_cyberneko_2.yml b/src/licensedcode/data/rules/apache-1.1_cyberneko_2.yml deleted file mode 100644 index 65e2dd2c712..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_cyberneko_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/apache-1.1_cyberneko_3.RULE b/src/licensedcode/data/rules/apache-1.1_cyberneko_3.RULE index 98bc514f870..4aceadd1ddb 100644 --- a/src/licensedcode/data/rules/apache-1.1_cyberneko_3.RULE +++ b/src/licensedcode/data/rules/apache-1.1_cyberneko_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_notice: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/apache-1.1_cyberneko_3.yml b/src/licensedcode/data/rules/apache-1.1_cyberneko_3.yml deleted file mode 100644 index 6a6af24e13e..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_cyberneko_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-1.1 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/apache-1.1_url_1.RULE b/src/licensedcode/data/rules/apache-1.1_url_1.RULE index 1da392b688f..2d16bf9709c 100644 --- a/src/licensedcode/data/rules/apache-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/apache-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apache-1.1 +--- + https://spdx.org/licenses/apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_url_1.yml b/src/licensedcode/data/rules/apache-1.1_url_1.yml deleted file mode 100644 index ee5c84741b2..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apache-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_url_2.RULE b/src/licensedcode/data/rules/apache-1.1_url_2.RULE index 568a10fe2d2..18190c33cf6 100644 --- a/src/licensedcode/data/rules/apache-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/apache-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apache-1.1.html +--- + https://spdx.org/licenses/apache-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_url_2.yml b/src/licensedcode/data/rules/apache-1.1_url_2.yml deleted file mode 100644 index 0685209a661..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apache-1.1.html diff --git a/src/licensedcode/data/rules/apache-1.1_url_glc_64.RULE b/src/licensedcode/data/rules/apache-1.1_url_glc_64.RULE index e48b338cb41..1fdcb50f143 100644 --- a/src/licensedcode/data/rules/apache-1.1_url_glc_64.RULE +++ b/src/licensedcode/data/rules/apache-1.1_url_glc_64.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/apache-1.1 +--- + http://opensource.org/licenses/apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_url_glc_64.yml b/src/licensedcode/data/rules/apache-1.1_url_glc_64.yml deleted file mode 100644 index e59926d4860..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_url_glc_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/apache-1.1 diff --git a/src/licensedcode/data/rules/apache-1.1_url_glc_65.RULE b/src/licensedcode/data/rules/apache-1.1_url_glc_65.RULE index ca8879fafbc..aa06331f557 100644 --- a/src/licensedcode/data/rules/apache-1.1_url_glc_65.RULE +++ b/src/licensedcode/data/rules/apache-1.1_url_glc_65.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/apache-1.1 +--- + https://opensource.org/licenses/apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_url_glc_65.yml b/src/licensedcode/data/rules/apache-1.1_url_glc_65.yml deleted file mode 100644 index 4abea5426d7..00000000000 --- a/src/licensedcode/data/rules/apache-1.1_url_glc_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/apache-1.1 diff --git a/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.RULE b/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.RULE index 2a14863da49..e89ace94f7a 100644 --- a/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.RULE +++ b/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -13,4 +20,4 @@ * 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-oracle-glassfish.yml b/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0.RULE b/src/licensedcode/data/rules/apache-2.0.RULE index a3ffde0e79c..c1c02cffb65 100644 --- a/src/licensedcode/data/rules/apache-2.0.RULE +++ b/src/licensedcode/data/rules/apache-2.0.RULE @@ -1,4 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +notes: Common in Apache notices +--- + ============================================================================= = NOTICE file corresponding to section 4d of the Apache License Version 2.0 = ============================================================================= -This product includes software developed by +This product includes software developed by \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0.yml b/src/licensedcode/data/rules/apache-2.0.yml deleted file mode 100644 index 92873afcd15..00000000000 --- a/src/licensedcode/data/rules/apache-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 70 -notes: Common in Apache notices diff --git a/src/licensedcode/data/rules/apache-2.0_0.RULE b/src/licensedcode/data/rules/apache-2.0_0.RULE index a982475e03d..8c4a0016257 100644 --- a/src/licensedcode/data/rules/apache-2.0_0.RULE +++ b/src/licensedcode/data/rules/apache-2.0_0.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Apache v2 License. * * @licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_0.yml b/src/licensedcode/data/rules/apache-2.0_0.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_1.RULE index b61a8298b1b..3a8662b98c9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + Apache 2 http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_1.yml b/src/licensedcode/data/rules/apache-2.0_1.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_10.RULE b/src/licensedcode/data/rules/apache-2.0_10.RULE index 0edf953d7bb..331cc81594e 100644 --- a/src/licensedcode/data/rules/apache-2.0_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + License: Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_10.yml b/src/licensedcode/data/rules/apache-2.0_10.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_100.RULE b/src/licensedcode/data/rules/apache-2.0_100.RULE index a6c037077f7..dbd07219598 100644 --- a/src/licensedcode/data/rules/apache-2.0_100.RULE +++ b/src/licensedcode/data/rules/apache-2.0_100.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License This project is licensed under the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_100.yml b/src/licensedcode/data/rules/apache-2.0_100.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1000.RULE b/src/licensedcode/data/rules/apache-2.0_1000.RULE index b82d79e5ab1..93d9f94aef7 100644 --- a/src/licensedcode/data/rules/apache-2.0_1000.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1000.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + The APL v2.0: @@ -15,4 +26,4 @@ The APL v2.0: limitations under the License. On Debian systems, the text of the Apache License Version 2.0, -can be found in the /usr/share/common-licenses/Apache-2.0 file. +can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1000.yml b/src/licensedcode/data/rules/apache-2.0_1000.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1000.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1001.RULE b/src/licensedcode/data/rules/apache-2.0_1001.RULE index 183122f61fe..a6cd91746ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_1001.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1001.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the text of the Apache License Version 2.0, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1001.yml b/src/licensedcode/data/rules/apache-2.0_1001.yml deleted file mode 100644 index 008ca39176c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1001.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1002.RULE b/src/licensedcode/data/rules/apache-2.0_1002.RULE index 20424acbea9..296dcc823bc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1002.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1002.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_1002.yml b/src/licensedcode/data/rules/apache-2.0_1002.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1002.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1003.RULE b/src/licensedcode/data/rules/apache-2.0_1003.RULE index e5eb18c67e8..3db9510e0cc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1003.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1003.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +22,4 @@ limitations under the License. On Debian systems, the text of Apache License, Version 2.0 -can be found in /usr/share/common-licenses/Apache-2.0 file. +can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1003.yml b/src/licensedcode/data/rules/apache-2.0_1003.yml deleted file mode 100644 index 032abe42c01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1003.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1004.RULE b/src/licensedcode/data/rules/apache-2.0_1004.RULE index 0276ea0060b..f724c67193b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1004.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1004.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_1004.yml b/src/licensedcode/data/rules/apache-2.0_1004.yml deleted file mode 100644 index c9107072f6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1004.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1005.RULE b/src/licensedcode/data/rules/apache-2.0_1005.RULE index f46c614928f..50df725b91e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1005.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1005.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 98 +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +22,4 @@ Licensed under the Apache License, Version 2.0 (the "License"); limitations under the License. . {{ On Debian systems, the text of the Apache version 2.0 license}} - can be found in "/usr/share/common-licenses/Apache-2.0". + can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1005.yml b/src/licensedcode/data/rules/apache-2.0_1005.yml deleted file mode 100644 index a6394d56b61..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1005.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 98 -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1006.RULE b/src/licensedcode/data/rules/apache-2.0_1006.RULE index c40e055a7fb..c9be9b4d584 100644 --- a/src/licensedcode/data/rules/apache-2.0_1006.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1006.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +22,4 @@ limitations under the License. On Debian systems, the text of Apache License, Version 2.0 -can be found in /usr/share/common-licenses/Apache-2.0 file. +can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1006.yml b/src/licensedcode/data/rules/apache-2.0_1006.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1006.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1007.RULE b/src/licensedcode/data/rules/apache-2.0_1007.RULE index 33774223584..086daf0fae9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1007.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1007.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + The APL v2.0: @@ -15,4 +26,4 @@ The APL v2.0: limitations under the License. On Debian systems, the text of the Apache License Version 2.0, -can be found in the /usr/share/common-licenses/Apache-2.0 file. +can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1007.yml b/src/licensedcode/data/rules/apache-2.0_1007.yml deleted file mode 100644 index 032abe42c01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1007.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1008.RULE b/src/licensedcode/data/rules/apache-2.0_1008.RULE index 7d7b87057be..b89cf78c42e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1008.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1008.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1008.yml b/src/licensedcode/data/rules/apache-2.0_1008.yml deleted file mode 100644 index 1c887228525..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1008.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1009.RULE b/src/licensedcode/data/rules/apache-2.0_1009.RULE index f9674c2bfb3..fb8c5dfcaba 100644 --- a/src/licensedcode/data/rules/apache-2.0_1009.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1009.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_1009.yml b/src/licensedcode/data/rules/apache-2.0_1009.yml deleted file mode 100644 index 1a859bc03bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1009.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_101.RULE b/src/licensedcode/data/rules/apache-2.0_101.RULE index 6262d9e110a..34f4319f278 100644 --- a/src/licensedcode/data/rules/apache-2.0_101.RULE +++ b/src/licensedcode/data/rules/apache-2.0_101.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + ## License This project is licensed under the [Apache 2.0](LICENSE) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_101.yml b/src/licensedcode/data/rules/apache-2.0_101.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1010.RULE b/src/licensedcode/data/rules/apache-2.0_1010.RULE index 8d6bebefd87..d0bb5149854 100644 --- a/src/licensedcode/data/rules/apache-2.0_1010.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1010.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_1010.yml b/src/licensedcode/data/rules/apache-2.0_1010.yml deleted file mode 100644 index e3fbfa35f7f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1010.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1011.RULE b/src/licensedcode/data/rules/apache-2.0_1011.RULE index 831056469d2..5174140326f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1011.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1011.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +21,4 @@ Licensed under the Apache License, Version 2.0 (the "License"); limitations under the License. . On Debian systems, the text of the {{ Apache License, Version 2.0 }} can be - found at {{ /usr/share/common-licenses/Apache-2.0 }}. + found at {{ /usr/share/common-licenses/Apache-2.0 }}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1011.yml b/src/licensedcode/data/rules/apache-2.0_1011.yml deleted file mode 100644 index fcb2b191798..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1011.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1012.RULE b/src/licensedcode/data/rules/apache-2.0_1012.RULE index 2c61e4d9e44..9299e13c877 100644 --- a/src/licensedcode/data/rules/apache-2.0_1012.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1012.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. . diff --git a/src/licensedcode/data/rules/apache-2.0_1012.yml b/src/licensedcode/data/rules/apache-2.0_1012.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1012.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1013.RULE b/src/licensedcode/data/rules/apache-2.0_1013.RULE index 968e1adbad6..09262e1de3c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1013.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1013.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_1013.yml b/src/licensedcode/data/rules/apache-2.0_1013.yml deleted file mode 100644 index f0c04a8c08d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1013.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1014.RULE b/src/licensedcode/data/rules/apache-2.0_1014.RULE index c8fac10b672..08d82245b34 100644 --- a/src/licensedcode/data/rules/apache-2.0_1014.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1014.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the text of the Apache Software License version 2 can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1014.yml b/src/licensedcode/data/rules/apache-2.0_1014.yml deleted file mode 100644 index 915be00363a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1014.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1015.RULE b/src/licensedcode/data/rules/apache-2.0_1015.RULE index 4ef3329a58c..3cc3ff95d32 100644 --- a/src/licensedcode/data/rules/apache-2.0_1015.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1015.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the text of the Apache License, Version 2.0 can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1015.yml b/src/licensedcode/data/rules/apache-2.0_1015.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1015.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1016.RULE b/src/licensedcode/data/rules/apache-2.0_1016.RULE index 60c95218cb3..437dfc6ace9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1016.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1016.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_1016.yml b/src/licensedcode/data/rules/apache-2.0_1016.yml deleted file mode 100644 index 1a859bc03bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1016.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1017.RULE b/src/licensedcode/data/rules/apache-2.0_1017.RULE index 851d638ffdc..a0dd372a398 100644 --- a/src/licensedcode/data/rules/apache-2.0_1017.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1017.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the text of the Apache License, Version 2.0 can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1017.yml b/src/licensedcode/data/rules/apache-2.0_1017.yml deleted file mode 100644 index 1c887228525..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1017.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1018.RULE b/src/licensedcode/data/rules/apache-2.0_1018.RULE index 4623063a339..45403f84e94 100644 --- a/src/licensedcode/data/rules/apache-2.0_1018.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1018.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the full text of the Apache license version 2 can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1018.yml b/src/licensedcode/data/rules/apache-2.0_1018.yml deleted file mode 100644 index 61eb9344420..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1018.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1019.RULE b/src/licensedcode/data/rules/apache-2.0_1019.RULE index 22daf5af53c..cbecee776f3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1019.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1019.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +20,4 @@ Licensed under the Apache License, Version 2.0 (the "License"); limitations under the License. On Debian systems, the {{ Apache License, Version 2.0 }} can be found at - {{ /usr/share/common-licenses/Apache-2.0 }}. + {{ /usr/share/common-licenses/Apache-2.0 }}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1019.yml b/src/licensedcode/data/rules/apache-2.0_1019.yml deleted file mode 100644 index 9b18ef838cf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1019.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_102.RULE b/src/licensedcode/data/rules/apache-2.0_102.RULE index df93a0ad680..f334c53ab04 100644 --- a/src/licensedcode/data/rules/apache-2.0_102.RULE +++ b/src/licensedcode/data/rules/apache-2.0_102.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the [Apache 2.0](LICENSE) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_102.yml b/src/licensedcode/data/rules/apache-2.0_102.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1020.RULE b/src/licensedcode/data/rules/apache-2.0_1020.RULE index 783b668d62c..61cf12f59b1 100644 --- a/src/licensedcode/data/rules/apache-2.0_1020.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1020.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems the complete license text of the Apache license version 2.0 can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1020.yml b/src/licensedcode/data/rules/apache-2.0_1020.yml deleted file mode 100644 index 61eb9344420..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1020.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1021.RULE b/src/licensedcode/data/rules/apache-2.0_1021.RULE index 16987371a94..308781f48c4 100644 --- a/src/licensedcode/data/rules/apache-2.0_1021.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1021.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +--- + This software was submitted by Cisco Systems to the Apache Software Foundation in July 1997. Future revisions and derivatives of this source code must acknowledge Cisco Systems as the original contributor of this module. diff --git a/src/licensedcode/data/rules/apache-2.0_1021.yml b/src/licensedcode/data/rules/apache-2.0_1021.yml deleted file mode 100644 index 487153a7721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1021.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_1022.RULE b/src/licensedcode/data/rules/apache-2.0_1022.RULE index 99c45a9c69f..fbfe5b8eaa8 100644 --- a/src/licensedcode/data/rules/apache-2.0_1022.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1022.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Code is released under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1022.yml b/src/licensedcode/data/rules/apache-2.0_1022.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1022.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1023.RULE b/src/licensedcode/data/rules/apache-2.0_1023.RULE index 094abac0ecd..f84e31a4561 100644 --- a/src/licensedcode/data/rules/apache-2.0_1023.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1023.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +--- + That work is also covered by the Apache 2 License, following copyright: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR diff --git a/src/licensedcode/data/rules/apache-2.0_1023.yml b/src/licensedcode/data/rules/apache-2.0_1023.yml deleted file mode 100644 index 487153a7721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1023.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_1024.RULE b/src/licensedcode/data/rules/apache-2.0_1024.RULE index 3a26d8e560f..01624d3fb07 100644 --- a/src/licensedcode/data/rules/apache-2.0_1024.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1024.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + That work is also covered by the Apache 2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1024.yml b/src/licensedcode/data/rules/apache-2.0_1024.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1024.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1025.RULE b/src/licensedcode/data/rules/apache-2.0_1025.RULE index edf553478f1..e3738dcc83d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1025.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1025.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + covered by the Apache 2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1025.yml b/src/licensedcode/data/rules/apache-2.0_1025.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1025.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1026.RULE b/src/licensedcode/data/rules/apache-2.0_1026.RULE index 58bca330e1c..7381d13221b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1026.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1026.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1026.yml b/src/licensedcode/data/rules/apache-2.0_1026.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1026.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1027.RULE b/src/licensedcode/data/rules/apache-2.0_1027.RULE index d4da9c8be96..f343e9e52e9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1027.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1027.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + licensed under the http://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0] license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1027.yml b/src/licensedcode/data/rules/apache-2.0_1027.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1027.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_1028.RULE b/src/licensedcode/data/rules/apache-2.0_1028.RULE index bcd57db8da1..88510c733ea 100644 --- a/src/licensedcode/data/rules/apache-2.0_1028.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1028.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + licensed under the http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1028.yml b/src/licensedcode/data/rules/apache-2.0_1028.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1028.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_1029.RULE b/src/licensedcode/data/rules/apache-2.0_1029.RULE index 86aa0efd891..8f8bf3fdb5e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1029.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1029.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + The Apache 2.0 License text \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1029.yml b/src/licensedcode/data/rules/apache-2.0_1029.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1029.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_103.RULE b/src/licensedcode/data/rules/apache-2.0_103.RULE index 1d23fc36eef..4801d61abbf 100644 --- a/src/licensedcode/data/rules/apache-2.0_103.RULE +++ b/src/licensedcode/data/rules/apache-2.0_103.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Code made available under Apache License version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_103.yml b/src/licensedcode/data/rules/apache-2.0_103.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1030.RULE b/src/licensedcode/data/rules/apache-2.0_1030.RULE index 3aca07c8a44..bf0ba821888 100644 --- a/src/licensedcode/data/rules/apache-2.0_1030.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1030.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the Apache License, version 2 (“ALv2”), quoted below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1030.yml b/src/licensedcode/data/rules/apache-2.0_1030.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1030.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1031.RULE b/src/licensedcode/data/rules/apache-2.0_1031.RULE index 57a244ee037..7fbf22ff39f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1031.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1031.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - apache2.0.LICENSE.txt +--- + apache2.0.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1031.yml b/src/licensedcode/data/rules/apache-2.0_1031.yml deleted file mode 100644 index f027205dc96..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1031.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - apache2.0.LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_1032.RULE b/src/licensedcode/data/rules/apache-2.0_1032.RULE index c3662db4ec1..a030d59ccde 100644 --- a/src/licensedcode/data/rules/apache-2.0_1032.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1032.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/apache2.0.LICENSE.txt +--- + licenses/apache2.0.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1032.yml b/src/licensedcode/data/rules/apache-2.0_1032.yml deleted file mode 100644 index 06cc2d58c3f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1032.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/apache2.0.LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_1033.RULE b/src/licensedcode/data/rules/apache-2.0_1033.RULE index 624833452a4..ebe1953e3da 100644 --- a/src/licensedcode/data/rules/apache-2.0_1033.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1033.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, a copy of the Apache license is available in . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1033.yml b/src/licensedcode/data/rules/apache-2.0_1033.yml deleted file mode 100644 index 61eb9344420..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1033.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1034.RULE b/src/licensedcode/data/rules/apache-2.0_1034.RULE index 8ae1b54639c..c55f87bf01a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1034.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1034.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, a copy of the Apache license is available in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1034.yml b/src/licensedcode/data/rules/apache-2.0_1034.yml deleted file mode 100644 index 61eb9344420..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1034.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1035.RULE b/src/licensedcode/data/rules/apache-2.0_1035.RULE index b19413ac14f..17ac990e726 100644 --- a/src/licensedcode/data/rules/apache-2.0_1035.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1035.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + {{License: Apache-2.0 Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. @@ -12,4 +21,4 @@ limitations under the License. . {{On Debian systems, a copy of the Apache license is available}} in - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1035.yml b/src/licensedcode/data/rules/apache-2.0_1035.yml deleted file mode 100644 index 9b18ef838cf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1035.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1036.RULE b/src/licensedcode/data/rules/apache-2.0_1036.RULE index 0a799ec66b0..99ce38c9bba 100644 --- a/src/licensedcode/data/rules/apache-2.0_1036.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1036.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + {{Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +20,4 @@ limitations under the License. . On Debian systems, {{a copy of the Apache license}} is available in - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1036.yml b/src/licensedcode/data/rules/apache-2.0_1036.yml deleted file mode 100644 index 9b18ef838cf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1036.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1037.RULE b/src/licensedcode/data/rules/apache-2.0_1037.RULE index 4f8fb829df4..865434bd78c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1037.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1037.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: https://github.com/onap/portal/blob/97ede1a34fffb96a4708d1195e648995d4843897/portal-BE/src/main/java/org/onap/portal/service/restrictedUrl/FnRestrictedUrlDao.java + the code and documentation is treated differently +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Unless otherwise specified, all software contained herein is licensed under the Apache License, Version 2.0 (the "License"); you may not use this software except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_1037.yml b/src/licensedcode/data/rules/apache-2.0_1037.yml deleted file mode 100644 index 1d8f5836531..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1037.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: https://github.com/onap/portal/blob/97ede1a34fffb96a4708d1195e648995d4843897/portal-BE/src/main/java/org/onap/portal/service/restrictedUrl/FnRestrictedUrlDao.java - the code and documentation is treated differently -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1038.RULE b/src/licensedcode/data/rules/apache-2.0_1038.RULE index b66da8aac1b..8709729a76f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1038.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1038.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +--- + Apache Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1038.yml b/src/licensedcode/data/rules/apache-2.0_1038.yml deleted file mode 100644 index 2c7a0b33bd7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1038.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_1039.RULE b/src/licensedcode/data/rules/apache-2.0_1039.RULE index 4f4ebb024c0..017ae81ea0d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1039.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1039.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1039.yml b/src/licensedcode/data/rules/apache-2.0_1039.yml deleted file mode 100644 index 5f18f4a1a51..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1039.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-2.0_104.RULE b/src/licensedcode/data/rules/apache-2.0_104.RULE index e624f45e992..e522d808213 100644 --- a/src/licensedcode/data/rules/apache-2.0_104.RULE +++ b/src/licensedcode/data/rules/apache-2.0_104.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under Apache License version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_104.yml b/src/licensedcode/data/rules/apache-2.0_104.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1040.RULE b/src/licensedcode/data/rules/apache-2.0_1040.RULE index 71c4ff3c3a4..ba5ca11dd1d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1040.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1040.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +--- + Apache Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1040.yml b/src/licensedcode/data/rules/apache-2.0_1040.yml deleted file mode 100644 index 2c7a0b33bd7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1040.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_1041.RULE b/src/licensedcode/data/rules/apache-2.0_1041.RULE index 55dc7370d04..b800a863697 100644 --- a/src/licensedcode/data/rules/apache-2.0_1041.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1041.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1041.yml b/src/licensedcode/data/rules/apache-2.0_1041.yml deleted file mode 100644 index 547ea58138d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1041.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-2.0_1042.RULE b/src/licensedcode/data/rules/apache-2.0_1042.RULE index c76d56d6a01..25bd8115087 100644 --- a/src/licensedcode/data/rules/apache-2.0_1042.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1042.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1042.yml b/src/licensedcode/data/rules/apache-2.0_1042.yml deleted file mode 100644 index 2ea2796f822..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1042.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1043.RULE b/src/licensedcode/data/rules/apache-2.0_1043.RULE index 47f678ec1f2..f4b0a5d9951 100644 --- a/src/licensedcode/data/rules/apache-2.0_1043.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1043.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1043.yml b/src/licensedcode/data/rules/apache-2.0_1043.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1043.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1044.RULE b/src/licensedcode/data/rules/apache-2.0_1044.RULE index e3d2ee40f27..a8d01596d1d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1044.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1044.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Public Licence v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1044.yml b/src/licensedcode/data/rules/apache-2.0_1044.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1044.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1045.RULE b/src/licensedcode/data/rules/apache-2.0_1045.RULE index bd519900a35..ba715db769e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1045.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1045.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Public License Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1045.yml b/src/licensedcode/data/rules/apache-2.0_1045.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1045.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1046.RULE b/src/licensedcode/data/rules/apache-2.0_1046.RULE index 65f15f36918..094065c51bf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1046.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1046.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'APACHE20': 'Apache-2.0', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1046.yml b/src/licensedcode/data/rules/apache-2.0_1046.yml deleted file mode 100644 index 89677c108a2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1046.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1047.RULE b/src/licensedcode/data/rules/apache-2.0_1047.RULE index 329b121d483..119dba02bee 100644 --- a/src/licensedcode/data/rules/apache-2.0_1047.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1047.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Http://www.apache.org/licenses/LICENSE-2.0': 'Apache-2.0', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1047.yml b/src/licensedcode/data/rules/apache-2.0_1047.yml deleted file mode 100644 index 89677c108a2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1047.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1048.RULE b/src/licensedcode/data/rules/apache-2.0_1048.RULE index 2cd6b2a40b1..28b88d79f88 100644 --- a/src/licensedcode/data/rules/apache-2.0_1048.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1048.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.apache.org/licenses +--- + 'Apache 2.0 http://www.apache.org/licenses/': 'Apache-2.0', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1048.yml b/src/licensedcode/data/rules/apache-2.0_1048.yml deleted file mode 100644 index a5eceddf2d6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1048.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/apache-2.0_1049.RULE b/src/licensedcode/data/rules/apache-2.0_1049.RULE index 4c08e9f601a..128278f2a4a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1049.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1049.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + 'Apache 2.0 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1049.yml b/src/licensedcode/data/rules/apache-2.0_1049.yml deleted file mode 100644 index 167988d4514..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1049.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_105.RULE b/src/licensedcode/data/rules/apache-2.0_105.RULE index 8365becfeb6..500cc3ae569 100644 --- a/src/licensedcode/data/rules/apache-2.0_105.RULE +++ b/src/licensedcode/data/rules/apache-2.0_105.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + available under Apache License version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_105.yml b/src/licensedcode/data/rules/apache-2.0_105.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1050.RULE b/src/licensedcode/data/rules/apache-2.0_1050.RULE index 99414c02fcb..6e3c8c2d694 100644 --- a/src/licensedcode/data/rules/apache-2.0_1050.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1050.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + APACHE2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1050.yml b/src/licensedcode/data/rules/apache-2.0_1050.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1050.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1051.RULE b/src/licensedcode/data/rules/apache-2.0_1051.RULE index 7a61c526191..07e1687df14 100644 --- a/src/licensedcode/data/rules/apache-2.0_1051.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1051.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Licence 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1051.yml b/src/licensedcode/data/rules/apache-2.0_1051.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1051.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1052.RULE b/src/licensedcode/data/rules/apache-2.0_1052.RULE index 79e1526fd3a..b384a226f1c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1052.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1052.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Licence v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1052.yml b/src/licensedcode/data/rules/apache-2.0_1052.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1052.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1053.RULE b/src/licensedcode/data/rules/apache-2.0_1053.RULE index 2d0c58f6b9c..a2a06520228 100644 --- a/src/licensedcode/data/rules/apache-2.0_1053.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1053.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Licence v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1053.yml b/src/licensedcode/data/rules/apache-2.0_1053.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1053.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1054.RULE b/src/licensedcode/data/rules/apache-2.0_1054.RULE index 0ce3580701e..b7b6ba70e2d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1054.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1054.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Licence v 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1054.yml b/src/licensedcode/data/rules/apache-2.0_1054.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1054.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1055.RULE b/src/licensedcode/data/rules/apache-2.0_1055.RULE index c922c922d5f..0d214ff8565 100644 --- a/src/licensedcode/data/rules/apache-2.0_1055.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1055.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Licence v 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1055.yml b/src/licensedcode/data/rules/apache-2.0_1055.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1055.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1056.RULE b/src/licensedcode/data/rules/apache-2.0_1056.RULE index a555ce26798..12158882aba 100644 --- a/src/licensedcode/data/rules/apache-2.0_1056.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1056.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Licence Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1056.yml b/src/licensedcode/data/rules/apache-2.0_1056.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1056.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1057.RULE b/src/licensedcode/data/rules/apache-2.0_1057.RULE index f0b2f116c45..f75f9075d7d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1057.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1057.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache Licence Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1057.yml b/src/licensedcode/data/rules/apache-2.0_1057.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1057.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1058.RULE b/src/licensedcode/data/rules/apache-2.0_1058.RULE index 66ef2c07f34..b49e488bb36 100644 --- a/src/licensedcode/data/rules/apache-2.0_1058.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1058.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +--- + Apache Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1058.yml b/src/licensedcode/data/rules/apache-2.0_1058.yml deleted file mode 100644 index 2c7a0b33bd7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1058.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_1059.RULE b/src/licensedcode/data/rules/apache-2.0_1059.RULE index 22b8f3a72dd..83780afbf4a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1059.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1059.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +notes: truncated text +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_1059.yml b/src/licensedcode/data/rules/apache-2.0_1059.yml deleted file mode 100644 index 9c5cd3eeea1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1059.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -notes: truncated text -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_106.RULE b/src/licensedcode/data/rules/apache-2.0_106.RULE index 258b750391f..2fd87066ffd 100644 --- a/src/licensedcode/data/rules/apache-2.0_106.RULE +++ b/src/licensedcode/data/rules/apache-2.0_106.RULE @@ -1 +1,8 @@ -License: Apacache License 2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + +License: Apacache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_106.yml b/src/licensedcode/data/rules/apache-2.0_106.yml deleted file mode 100644 index c5a4ad41396..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_106.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1060.RULE b/src/licensedcode/data/rules/apache-2.0_1060.RULE index 015727a1e2f..e4a0ae97ec5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1060.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1060.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +--- + Copyrights in the project are retained by their contributors. No copyright assignment is required to contribute to the project. diff --git a/src/licensedcode/data/rules/apache-2.0_1060.yml b/src/licensedcode/data/rules/apache-2.0_1060.yml deleted file mode 100644 index 487153a7721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1060.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_1061.RULE b/src/licensedcode/data/rules/apache-2.0_1061.RULE index b6b2813e3e9..06181cc1781 100644 --- a/src/licensedcode/data/rules/apache-2.0_1061.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1061.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + * Software is 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: diff --git a/src/licensedcode/data/rules/apache-2.0_1061.yml b/src/licensedcode/data/rules/apache-2.0_1061.yml deleted file mode 100644 index c14a3af4fe1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1061.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1062.RULE b/src/licensedcode/data/rules/apache-2.0_1062.RULE index 412485ef84c..1513957254a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1062.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1062.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + available under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1062.yml b/src/licensedcode/data/rules/apache-2.0_1062.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1062.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1063.RULE b/src/licensedcode/data/rules/apache-2.0_1063.RULE index 33fc502a45d..abc649fc847 100644 --- a/src/licensedcode/data/rules/apache-2.0_1063.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1063.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Redistributed under the the Apache License 2.0 at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1063.yml b/src/licensedcode/data/rules/apache-2.0_1063.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1063.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1064.RULE b/src/licensedcode/data/rules/apache-2.0_1064.RULE index dca671ea915..20c8761f580 100644 --- a/src/licensedcode/data/rules/apache-2.0_1064.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1064.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + available under Apache Licence 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1064.yml b/src/licensedcode/data/rules/apache-2.0_1064.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1064.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1065.RULE b/src/licensedcode/data/rules/apache-2.0_1065.RULE index 68e78b26361..eed84f73028 100644 --- a/src/licensedcode/data/rules/apache-2.0_1065.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1065.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2 +--- + ## License This project is distributed under the Apache license, Version 2.0: http://www.apache.org/licenses/LICENSE-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1065.yml b/src/licensedcode/data/rules/apache-2.0_1065.yml deleted file mode 100644 index f43053083d9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1065.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2 diff --git a/src/licensedcode/data/rules/apache-2.0_1066.RULE b/src/licensedcode/data/rules/apache-2.0_1066.RULE index fd3e319c321..08a4b503ec2 100644 --- a/src/licensedcode/data/rules/apache-2.0_1066.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1066.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2 + - https://img.shields.io/badge/license-apache%20v2-brightgreen.svg +--- + ## License This project is distributed under the Apache license, Version 2.0: http://www.apache.org/licenses/LICENSE-2. [license-image]: https://img.shields.io/badge/license-apache%20v2-brightgreen.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1066.yml b/src/licensedcode/data/rules/apache-2.0_1066.yml deleted file mode 100644 index 8bfbdfd34e4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1066.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2 - - https://img.shields.io/badge/license-apache%20v2-brightgreen.svg diff --git a/src/licensedcode/data/rules/apache-2.0_1067.RULE b/src/licensedcode/data/rules/apache-2.0_1067.RULE index 87e60c61ea3..0f1c2b1021b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1067.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1067.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-apache%20v2-brightgreen.svg +--- + [license-image]: https://img.shields.io/badge/license-apache%20v2-brightgreen.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1067.yml b/src/licensedcode/data/rules/apache-2.0_1067.yml deleted file mode 100644 index 4a4602a2850..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1067.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-apache%20v2-brightgreen.svg diff --git a/src/licensedcode/data/rules/apache-2.0_1068.RULE b/src/licensedcode/data/rules/apache-2.0_1068.RULE index 0690bcfc38d..335ea37cdad 100644 --- a/src/licensedcode/data/rules/apache-2.0_1068.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1068.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Unless stated otherwise as described above, all files in this directory are licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the diff --git a/src/licensedcode/data/rules/apache-2.0_1068.yml b/src/licensedcode/data/rules/apache-2.0_1068.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1068.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1069.RULE b/src/licensedcode/data/rules/apache-2.0_1069.RULE index 87e438535af..41a48fceba1 100644 --- a/src/licensedcode/data/rules/apache-2.0_1069.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1069.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apache-2.0 Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1069.yml b/src/licensedcode/data/rules/apache-2.0_1069.yml deleted file mode 100644 index 5f18f4a1a51..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1069.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-2.0_107.RULE b/src/licensedcode/data/rules/apache-2.0_107.RULE index 01d0c095ea9..9576d1aa82e 100644 --- a/src/licensedcode/data/rules/apache-2.0_107.RULE +++ b/src/licensedcode/data/rules/apache-2.0_107.RULE @@ -1,2 +1,8 @@ -License: apace +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 80 +minimum_coverage: 100 +--- +License: apace \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_107.yml b/src/licensedcode/data/rules/apache-2.0_107.yml deleted file mode 100644 index 0742061f5b5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_107.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 80 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1070.RULE b/src/licensedcode/data/rules/apache-2.0_1070.RULE index 78f8e67f84a..8ba654a9c32 100644 --- a/src/licensedcode/data/rules/apache-2.0_1070.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1070.RULE @@ -1 +1,9 @@ -Apache lisence V2 +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + +Apache lisence V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1070.yml b/src/licensedcode/data/rules/apache-2.0_1070.yml deleted file mode 100644 index 89677c108a2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1070.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1071.RULE b/src/licensedcode/data/rules/apache-2.0_1071.RULE index 6e8b3db1d9f..9ab05f91141 100644 --- a/src/licensedcode/data/rules/apache-2.0_1071.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1071.RULE @@ -1 +1,9 @@ -Apache lisense 2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + +Apache lisense 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1071.yml b/src/licensedcode/data/rules/apache-2.0_1071.yml deleted file mode 100644 index 89677c108a2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1071.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1072.RULE b/src/licensedcode/data/rules/apache-2.0_1072.RULE index 1885ac1e577..89566c626db 100644 --- a/src/licensedcode/data/rules/apache-2.0_1072.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1072.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apache License 2.0 Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1072.yml b/src/licensedcode/data/rules/apache-2.0_1072.yml deleted file mode 100644 index 5f18f4a1a51..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1072.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apache-2.0_1073.RULE b/src/licensedcode/data/rules/apache-2.0_1073.RULE index d85b336a94c..48cbb2dfabe 100644 --- a/src/licensedcode/data/rules/apache-2.0_1073.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1073.RULE @@ -1 +1,9 @@ -Apache v2 License +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + +Apache v2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1073.yml b/src/licensedcode/data/rules/apache-2.0_1073.yml deleted file mode 100644 index 89677c108a2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1073.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1074.RULE b/src/licensedcode/data/rules/apache-2.0_1074.RULE index 8acaa5d010a..d86f511c93b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1074.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1074.RULE @@ -1 +1,9 @@ -ApacheV2 +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + +ApacheV2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1074.yml b/src/licensedcode/data/rules/apache-2.0_1074.yml deleted file mode 100644 index 89677c108a2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1074.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1075.RULE b/src/licensedcode/data/rules/apache-2.0_1075.RULE index e099156be1b..71e212ba7cc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1075.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1075.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +--- + also covered by the Apache 2 License, following copyright: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1075.yml b/src/licensedcode/data/rules/apache-2.0_1075.yml deleted file mode 100644 index 8366b1c60c3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1075.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/apache-2.0_1076.RULE b/src/licensedcode/data/rules/apache-2.0_1076.RULE index 412de1e5b4e..cac08684eb9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1076.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1076.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +relevance: 100 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + Licensed under the Apache License, Version 2.0, see LICENSE for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1076.yml b/src/licensedcode/data/rules/apache-2.0_1076.yml deleted file mode 100644 index 19701d49333..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1076.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -relevance: 100 -is_license_notice: yes -referenced_filenames: - - LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1077.RULE b/src/licensedcode/data/rules/apache-2.0_1077.RULE index 143c080aa40..61002a36091 100644 --- a/src/licensedcode/data/rules/apache-2.0_1077.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1077.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Apache_License#Apache_License_2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1077.yml b/src/licensedcode/data/rules/apache-2.0_1077.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1077.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1078.RULE b/src/licensedcode/data/rules/apache-2.0_1078.RULE index e2430aa7959..a39fcef5867 100644 --- a/src/licensedcode/data/rules/apache-2.0_1078.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1078.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +--- + See Apache License for terms and restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1078.yml b/src/licensedcode/data/rules/apache-2.0_1078.yml deleted file mode 100644 index 3b9c2faa046..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1078.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_1079.RULE b/src/licensedcode/data/rules/apache-2.0_1079.RULE index 8d8abcec9d9..de873474b46 100644 --- a/src/licensedcode/data/rules/apache-2.0_1079.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1079.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1079.yml b/src/licensedcode/data/rules/apache-2.0_1079.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1079.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_108.RULE b/src/licensedcode/data/rules/apache-2.0_108.RULE index dffd658cb9c..fab8f92d18d 100644 --- a/src/licensedcode/data/rules/apache-2.0_108.RULE +++ b/src/licensedcode/data/rules/apache-2.0_108.RULE @@ -1 +1,8 @@ -Apach-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + +Apach-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_108.yml b/src/licensedcode/data/rules/apache-2.0_108.yml deleted file mode 100644 index c5a4ad41396..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_108.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1080.RULE b/src/licensedcode/data/rules/apache-2.0_1080.RULE index acd2dffd70b..e2a2ab12cad 100644 --- a/src/licensedcode/data/rules/apache-2.0_1080.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1080.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - NOTICE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. licenses this file to you 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_1080.yml b/src/licensedcode/data/rules/apache-2.0_1080.yml deleted file mode 100644 index 67a8e269acd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1080.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - NOTICE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1081.RULE b/src/licensedcode/data/rules/apache-2.0_1081.RULE index fe450764f8d..b3a51f5a046 100644 --- a/src/licensedcode/data/rules/apache-2.0_1081.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1081.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + NOTICE file corresponding to section 4(d) of the Apache License, Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1081.yml b/src/licensedcode/data/rules/apache-2.0_1081.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1081.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1082.RULE b/src/licensedcode/data/rules/apache-2.0_1082.RULE index 32dcbf79194..a1ec908487d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1082.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1082.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +--- + wikipedia.org/wiki/Apache_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1082.yml b/src/licensedcode/data/rules/apache-2.0_1082.yml deleted file mode 100644 index ac7cac7e3b0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1082.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_1083.RULE b/src/licensedcode/data/rules/apache-2.0_1083.RULE index 6122cccf35c..3990a83e059 100644 --- a/src/licensedcode/data/rules/apache-2.0_1083.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1083.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + ASL, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1083.yml b/src/licensedcode/data/rules/apache-2.0_1083.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1083.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1084.RULE b/src/licensedcode/data/rules/apache-2.0_1084.RULE index 436f77d3584..39f4673815e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1084.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1084.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Apache-2.0 +--- + https://licenses.nuget.org/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1084.yml b/src/licensedcode/data/rules/apache-2.0_1084.yml deleted file mode 100644 index 4298799e11a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1084.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1085.RULE b/src/licensedcode/data/rules/apache-2.0_1085.RULE index 502628ef755..ff767b7df66 100644 --- a/src/licensedcode/data/rules/apache-2.0_1085.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1085.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1085.yml b/src/licensedcode/data/rules/apache-2.0_1085.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1085.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1086.RULE b/src/licensedcode/data/rules/apache-2.0_1086.RULE index e33c0f36ebc..4bf9ea89b4d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1086.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1086.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + licenses: apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1086.yml b/src/licensedcode/data/rules/apache-2.0_1086.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1086.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1087.RULE b/src/licensedcode/data/rules/apache-2.0_1087.RULE index 90a76dac92b..54bbb696c65 100644 --- a/src/licensedcode/data/rules/apache-2.0_1087.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1087.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +--- + is licensed under {{Apache Software License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1087.yml b/src/licensedcode/data/rules/apache-2.0_1087.yml deleted file mode 100644 index 5ea59db1cbc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1087.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_1088.RULE b/src/licensedcode/data/rules/apache-2.0_1088.RULE index 015a720e8b4..d807b0c9b1c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1088.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1088.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +--- + licensed under {{Apache Software License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1088.yml b/src/licensedcode/data/rules/apache-2.0_1088.yml deleted file mode 100644 index 5ea59db1cbc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1088.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_1089.RULE b/src/licensedcode/data/rules/apache-2.0_1089.RULE index a5bed8ca151..46229d7cb18 100644 --- a/src/licensedcode/data/rules/apache-2.0_1089.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1089.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + * You may modify and redistribute as long as this attribution remains. * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_1089.yml b/src/licensedcode/data/rules/apache-2.0_1089.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1089.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_109.RULE b/src/licensedcode/data/rules/apache-2.0_109.RULE index 2102dccb533..5d95fa69c84 100644 --- a/src/licensedcode/data/rules/apache-2.0_109.RULE +++ b/src/licensedcode/data/rules/apache-2.0_109.RULE @@ -1 +1,8 @@ -license: Apach-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + +license: Apach-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_109.yml b/src/licensedcode/data/rules/apache-2.0_109.yml deleted file mode 100644 index c5a4ad41396..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_109.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1090.RULE b/src/licensedcode/data/rules/apache-2.0_1090.RULE index c51bdc204d1..3fd8ea7b720 100644 --- a/src/licensedcode/data/rules/apache-2.0_1090.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1090.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://{{aws.amazon.com/apache2.0 +--- + You may not use this file except in compliance with the License. A copy of the License is located at diff --git a/src/licensedcode/data/rules/apache-2.0_1090.yml b/src/licensedcode/data/rules/apache-2.0_1090.yml deleted file mode 100644 index 50f1a523243..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1090.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://{{aws.amazon.com/apache2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1091.RULE b/src/licensedcode/data/rules/apache-2.0_1091.RULE index e92c117241f..ffe5d86e108 100644 --- a/src/licensedcode/data/rules/apache-2.0_1091.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1091.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache License, Version 2.0 (the "License"): \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1091.yml b/src/licensedcode/data/rules/apache-2.0_1091.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1091.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1092.RULE b/src/licensedcode/data/rules/apache-2.0_1092.RULE index 9632bc625e4..c17cd212fe5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1092.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1092.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING.txt +--- + # Licensed under the {{Apache License, Version 2.0}} (the "License"); # you may not use this file except in compliance with the License. # diff --git a/src/licensedcode/data/rules/apache-2.0_1092.yml b/src/licensedcode/data/rules/apache-2.0_1092.yml deleted file mode 100644 index 3bc66a3dbb4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1092.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING.txt diff --git a/src/licensedcode/data/rules/apache-2.0_1093.RULE b/src/licensedcode/data/rules/apache-2.0_1093.RULE index c178d48cd7d..7e2886c8358 100644 --- a/src/licensedcode/data/rules/apache-2.0_1093.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1093.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the Apache Software License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1093.yml b/src/licensedcode/data/rules/apache-2.0_1093.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1093.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1094.RULE b/src/licensedcode/data/rules/apache-2.0_1094.RULE index 6e92238a328..6ec0cf85393 100644 --- a/src/licensedcode/data/rules/apache-2.0_1094.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1094.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +notes: seen in pear packages +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1094.yml b/src/licensedcode/data/rules/apache-2.0_1094.yml deleted file mode 100644 index 071a4792bac..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1094.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -notes: seen in pear packages -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1095.RULE b/src/licensedcode/data/rules/apache-2.0_1095.RULE index 804fd639c1c..6119cc2d060 100644 --- a/src/licensedcode/data/rules/apache-2.0_1095.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1095.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under Apache License 2.0("{{ALv2}}"), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1095.yml b/src/licensedcode/data/rules/apache-2.0_1095.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1095.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1096.RULE b/src/licensedcode/data/rules/apache-2.0_1096.RULE index 2278dfe297a..ec35a21a1f2 100644 --- a/src/licensedcode/data/rules/apache-2.0_1096.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1096.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-2.0 +--- + {{Apache-2.0}} https://spdx.org/licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1096.yml b/src/licensedcode/data/rules/apache-2.0_1096.yml deleted file mode 100644 index 3cbaba64218..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1096.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1097.RULE b/src/licensedcode/data/rules/apache-2.0_1097.RULE index f4962b1bc14..b72626c062b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1097.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1097.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-2.0 +--- + LICENSE {{Apache-2.0}} https://spdx.org/licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1097.yml b/src/licensedcode/data/rules/apache-2.0_1097.yml deleted file mode 100644 index 3cbaba64218..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1097.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1098.RULE b/src/licensedcode/data/rules/apache-2.0_1098.RULE index f79689e35f2..84aa47d5c40 100644 --- a/src/licensedcode/data/rules/apache-2.0_1098.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1098.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-2.0 +--- + {{Apache-2.0+}} https://spdx.org/licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1098.yml b/src/licensedcode/data/rules/apache-2.0_1098.yml deleted file mode 100644 index 3cbaba64218..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1098.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1099.RULE b/src/licensedcode/data/rules/apache-2.0_1099.RULE index 9c84d22dc89..bafd0b5d15d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1099.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1099.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + {{Apache-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1099.yml b/src/licensedcode/data/rules/apache-2.0_1099.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1099.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_11.RULE b/src/licensedcode/data/rules/apache-2.0_11.RULE index ed17b1fb7d9..963cc396d4b 100644 --- a/src/licensedcode/data/rules/apache-2.0_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + This file is released under Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_11.yml b/src/licensedcode/data/rules/apache-2.0_11.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_110.RULE b/src/licensedcode/data/rules/apache-2.0_110.RULE index ef08a5d8be9..13fda045228 100644 --- a/src/licensedcode/data/rules/apache-2.0_110.RULE +++ b/src/licensedcode/data/rules/apache-2.0_110.RULE @@ -1 +1,8 @@ -license: Apache 0.2 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 80 +minimum_coverage: 100 +--- + +license: Apache 0.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_110.yml b/src/licensedcode/data/rules/apache-2.0_110.yml deleted file mode 100644 index 0742061f5b5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_110.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 80 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1100.RULE b/src/licensedcode/data/rules/apache-2.0_1100.RULE index 3b037ec1a79..b977c938dec 100644 --- a/src/licensedcode/data/rules/apache-2.0_1100.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1100.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + open source project licensed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1100.yml b/src/licensedcode/data/rules/apache-2.0_1100.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1100.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1101.RULE b/src/licensedcode/data/rules/apache-2.0_1101.RULE index ef07fa76d4b..03136d1ab74 100644 --- a/src/licensedcode/data/rules/apache-2.0_1101.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1101.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-2.0.html +--- + - [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1101.yml b/src/licensedcode/data/rules/apache-2.0_1101.yml deleted file mode 100644 index 9d550a81c8d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_1102.RULE b/src/licensedcode/data/rules/apache-2.0_1102.RULE index 170b5c458ed..5e07fe712f0 100644 --- a/src/licensedcode/data/rules/apache-2.0_1102.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1102.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + project is {{Apache 2.0}}(https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1102.yml b/src/licensedcode/data/rules/apache-2.0_1102.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1103.RULE b/src/licensedcode/data/rules/apache-2.0_1103.RULE index 57b65b14ae8..bdee293490b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1103.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1103.RULE @@ -1,2 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: | + Seen in runc Per https://github.com/opencontainers/runc/issues/2144#issuecomment-543116397 AkihiroSuda commented on Oct 17, 2019 https://github.com/AkihiroSuda/runc/commits/ebpf I'm trying to port over libcrun/ebpf.c from crun v0.10.2, which is licensed under LGPL3 (or later) and incompatible with Apache License 2.0 @giuseppe Do you think my code should be treated as a derivative of your C code? If so, any chance to relicense ebpf.c and cgroup.c as Apache License 2.0? + giuseppe (Giuseppe Scrivano ) Software engineer at Red Hat Inc.commented on Oct 17, 2019 I am fine to relicense these two files under the Apache License 2.0 license +ignorable_authors: + - Giuseppe Scrivano +ignorable_urls: + - https://github.com/opencontainers/runc/issues/2144#issuecomment-543116397 +--- + // Although ebpf.c is {{originally licensed under LGPL-3.0-or-later}}, the author (Giuseppe Scrivano) // agreed to {{relicense the file in Apache License 2.0}}: https://github.com/opencontainers/runc/issues/2144#issuecomment-543116397 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1103.yml b/src/licensedcode/data/rules/apache-2.0_1103.yml deleted file mode 100644 index 05dfb2fc5f3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1103.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: | - Seen in runc Per https://github.com/opencontainers/runc/issues/2144#issuecomment-543116397 AkihiroSuda commented on Oct 17, 2019 https://github.com/AkihiroSuda/runc/commits/ebpf I'm trying to port over libcrun/ebpf.c from crun v0.10.2, which is licensed under LGPL3 (or later) and incompatible with Apache License 2.0 @giuseppe Do you think my code should be treated as a derivative of your C code? If so, any chance to relicense ebpf.c and cgroup.c as Apache License 2.0? - giuseppe (Giuseppe Scrivano ) Software engineer at Red Hat Inc.commented on Oct 17, 2019 I am fine to relicense these two files under the Apache License 2.0 license -ignorable_authors: - - Giuseppe Scrivano -ignorable_urls: - - https://github.com/opencontainers/runc/issues/2144#issuecomment-543116397 diff --git a/src/licensedcode/data/rules/apache-2.0_1104.RULE b/src/licensedcode/data/rules/apache-2.0_1104.RULE index 3a8cd72f8c8..20b812466e1 100644 --- a/src/licensedcode/data/rules/apache-2.0_1104.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1104.RULE @@ -1,2 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: | + Seen in runc Per https://github.com/opencontainers/runc/issues/2144#issuecomment-543116397 AkihiroSuda commented on Oct 17, 2019 https://github.com/AkihiroSuda/runc/commits/ebpf I'm trying to port over libcrun/ebpf.c from crun v0.10.2, which is licensed under LGPL3 (or later) and incompatible with Apache License 2.0 @giuseppe Do you think my code should be treated as a derivative of your C code? If so, any chance to relicense ebpf.c and cgroup.c as Apache License 2.0? + giuseppe (Giuseppe Scrivano ) Software engineer at Red Hat Inc.commented on Oct 17, 2019 I am fine to relicense these two files under the Apache License 2.0 license +ignorable_authors: + - Giuseppe Scrivano +--- + // Although ebpf.c is originally licensed under LGPL-3.0-or-later, the author (Giuseppe Scrivano) // agreed to relicense the file in Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1104.yml b/src/licensedcode/data/rules/apache-2.0_1104.yml deleted file mode 100644 index cc22b68fbb8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1104.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: | - Seen in runc Per https://github.com/opencontainers/runc/issues/2144#issuecomment-543116397 AkihiroSuda commented on Oct 17, 2019 https://github.com/AkihiroSuda/runc/commits/ebpf I'm trying to port over libcrun/ebpf.c from crun v0.10.2, which is licensed under LGPL3 (or later) and incompatible with Apache License 2.0 @giuseppe Do you think my code should be treated as a derivative of your C code? If so, any chance to relicense ebpf.c and cgroup.c as Apache License 2.0? - giuseppe (Giuseppe Scrivano ) Software engineer at Red Hat Inc.commented on Oct 17, 2019 I am fine to relicense these two files under the Apache License 2.0 license -ignorable_authors: - - Giuseppe Scrivano diff --git a/src/licensedcode/data/rules/apache-2.0_1105.RULE b/src/licensedcode/data/rules/apache-2.0_1105.RULE index a86c3ee01b9..4fe16b2ff4d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1105.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1105.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project uses [the Apache 2.0 license](./LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1105.yml b/src/licensedcode/data/rules/apache-2.0_1105.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1106.RULE b/src/licensedcode/data/rules/apache-2.0_1106.RULE index 31a717cc2fb..cad3531c0ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_1106.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1106.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This project uses the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1106.yml b/src/licensedcode/data/rules/apache-2.0_1106.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1107.RULE b/src/licensedcode/data/rules/apache-2.0_1107.RULE index ae98c0a2921..effeb3ccbec 100644 --- a/src/licensedcode/data/rules/apache-2.0_1107.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1107.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + library and tools are licenced under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1107.yml b/src/licensedcode/data/rules/apache-2.0_1107.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1108.RULE b/src/licensedcode/data/rules/apache-2.0_1108.RULE index 73b38ac819a..bca54e4f453 100644 --- a/src/licensedcode/data/rules/apache-2.0_1108.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1108.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + library and tools are licenced under Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1108.yml b/src/licensedcode/data/rules/apache-2.0_1108.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1109.RULE b/src/licensedcode/data/rules/apache-2.0_1109.RULE index ba358134c61..d93fb9b45e6 100644 --- a/src/licensedcode/data/rules/apache-2.0_1109.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1109.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licenced under Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1109.yml b/src/licensedcode/data/rules/apache-2.0_1109.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_111.RULE b/src/licensedcode/data/rules/apache-2.0_111.RULE index 6b1245d8c27..157b342cc8e 100644 --- a/src/licensedcode/data/rules/apache-2.0_111.RULE +++ b/src/licensedcode/data/rules/apache-2.0_111.RULE @@ -1 +1,8 @@ -license: Apapche-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + +license: Apapche-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_111.yml b/src/licensedcode/data/rules/apache-2.0_111.yml deleted file mode 100644 index c5a4ad41396..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_111.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1110.RULE b/src/licensedcode/data/rules/apache-2.0_1110.RULE index 309dd283101..4258fff9c46 100644 --- a/src/licensedcode/data/rules/apache-2.0_1110.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1110.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: Contributions are already covered by the Apache license. +--- + License The software is provided under {{Apache-2.0}}. Contributions to this project are accepted under the same license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1110.yml b/src/licensedcode/data/rules/apache-2.0_1110.yml deleted file mode 100644 index 7fd24d5cb95..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: Contributions are already covered by the Apache license. diff --git a/src/licensedcode/data/rules/apache-2.0_1111.RULE b/src/licensedcode/data/rules/apache-2.0_1111.RULE index a4c96690a0d..7f5253f265a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1111.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1111.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The software is provided under Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1111.yml b/src/licensedcode/data/rules/apache-2.0_1111.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1112.RULE b/src/licensedcode/data/rules/apache-2.0_1112.RULE index 926d1921958..f8d57c2f1bc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1112.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1112.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License released under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1112.yml b/src/licensedcode/data/rules/apache-2.0_1112.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1113.RULE b/src/licensedcode/data/rules/apache-2.0_1113.RULE index 42c470f1ed5..dde2b0b3f21 100644 --- a/src/licensedcode/data/rules/apache-2.0_1113.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1113.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1113.yml b/src/licensedcode/data/rules/apache-2.0_1113.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1113.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1114.RULE b/src/licensedcode/data/rules/apache-2.0_1114.RULE index 0756020f48c..b0fe37fb9ae 100644 --- a/src/licensedcode/data/rules/apache-2.0_1114.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1114.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The toolkit itself is licensed as Apache Software License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1114.yml b/src/licensedcode/data/rules/apache-2.0_1114.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1115.RULE b/src/licensedcode/data/rules/apache-2.0_1115.RULE index c15a23092b9..13687949021 100644 --- a/src/licensedcode/data/rules/apache-2.0_1115.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1115.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://img.shields.io/badge/license-Apache%20v2-orange.svg +--- + [license](http://img.shields.io/badge/license-Apache%20v2-orange.svg) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1115.yml b/src/licensedcode/data/rules/apache-2.0_1115.yml deleted file mode 100644 index 16dd7820b24..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://img.shields.io/badge/license-Apache%20v2-orange.svg diff --git a/src/licensedcode/data/rules/apache-2.0_1116.RULE b/src/licensedcode/data/rules/apache-2.0_1116.RULE index ede8a123e8d..c6716edb0bf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1116.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1116.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache%20v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1116.yml b/src/licensedcode/data/rules/apache-2.0_1116.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1117.RULE b/src/licensedcode/data/rules/apache-2.0_1117.RULE index eb55975cdf5..46c2de7f1b1 100644 --- a/src/licensedcode/data/rules/apache-2.0_1117.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1117.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + license-Apache%20v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1117.yml b/src/licensedcode/data/rules/apache-2.0_1117.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1118.RULE b/src/licensedcode/data/rules/apache-2.0_1118.RULE index 0da594906d6..bcf15fd3aeb 100644 --- a/src/licensedcode/data/rules/apache-2.0_1118.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1118.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The generated code is also licensed under Apache Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1118.yml b/src/licensedcode/data/rules/apache-2.0_1118.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1119.RULE b/src/licensedcode/data/rules/apache-2.0_1119.RULE index 4f3481109a3..a23a5735df7 100644 --- a/src/licensedcode/data/rules/apache-2.0_1119.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1119.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + ### Apache License ### All the remaining project files are covered by the Apache license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1119.yml b/src/licensedcode/data/rules/apache-2.0_1119.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_112.RULE b/src/licensedcode/data/rules/apache-2.0_112.RULE index 9051228db89..e5c60068981 100644 --- a/src/licensedcode/data/rules/apache-2.0_112.RULE +++ b/src/licensedcode/data/rules/apache-2.0_112.RULE @@ -1,2 +1,8 @@ -license: Apcahe-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- +license: Apcahe-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_112.yml b/src/licensedcode/data/rules/apache-2.0_112.yml deleted file mode 100644 index c5a4ad41396..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_112.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1120.RULE b/src/licensedcode/data/rules/apache-2.0_1120.RULE index 0d95efba448..0da42a41a59 100644 --- a/src/licensedcode/data/rules/apache-2.0_1120.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1120.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + project files are covered by the {{Apache license:}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1120.yml b/src/licensedcode/data/rules/apache-2.0_1120.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1121.RULE b/src/licensedcode/data/rules/apache-2.0_1121.RULE index a0f345fb4b9..7e65aaf7dbf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1121.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1121.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + covered by the Apache license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1121.yml b/src/licensedcode/data/rules/apache-2.0_1121.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1122.RULE b/src/licensedcode/data/rules/apache-2.0_1122.RULE index 0090ec3f529..d8aef320316 100644 --- a/src/licensedcode/data/rules/apache-2.0_1122.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1122.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ../../../LICENSE +--- + ## License This code is licensed under {{Apache-2.0 }}(../../../LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1122.yml b/src/licensedcode/data/rules/apache-2.0_1122.yml deleted file mode 100644 index 657388845e9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1122.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ../../../LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1123.RULE b/src/licensedcode/data/rules/apache-2.0_1123.RULE index a136ffb45e2..ab7630a92fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1123.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1123.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ../../../LICENSE +--- + This code is licensed under {{Apache-2.0 }}(../../../LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1123.yml b/src/licensedcode/data/rules/apache-2.0_1123.yml deleted file mode 100644 index 657388845e9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ../../../LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1124.RULE b/src/licensedcode/data/rules/apache-2.0_1124.RULE index 6da8a69ecd7..6aa8d432ca3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1124.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1124.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + The package is licensed under the {{ Apache License 2.0. }} Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1124.yml b/src/licensedcode/data/rules/apache-2.0_1124.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1124.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1125.RULE b/src/licensedcode/data/rules/apache-2.0_1125.RULE index ce7d4baa155..b3ddb8a7efe 100644 --- a/src/licensedcode/data/rules/apache-2.0_1125.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1125.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the {{ Apache License 2.0. }} Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1125.yml b/src/licensedcode/data/rules/apache-2.0_1125.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1125.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1126.RULE b/src/licensedcode/data/rules/apache-2.0_1126.RULE index 87da4e13bb8..b1991567e1b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1126.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1126.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + ## License The code is licensed under the {{Apache 2.0 license.}} diff --git a/src/licensedcode/data/rules/apache-2.0_1126.yml b/src/licensedcode/data/rules/apache-2.0_1126.yml deleted file mode 100644 index 389a34b8413..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1126.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1127.RULE b/src/licensedcode/data/rules/apache-2.0_1127.RULE index 58715e779ac..fef346cca18 100644 --- a/src/licensedcode/data/rules/apache-2.0_1127.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1127.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + The code is licensed under the {{Apache 2.0 license.}} See [the license file](LICENSE) for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1127.yml b/src/licensedcode/data/rules/apache-2.0_1127.yml deleted file mode 100644 index 389a34b8413..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1127.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1128.RULE b/src/licensedcode/data/rules/apache-2.0_1128.RULE index 574484d6421..44540499c64 100644 --- a/src/licensedcode/data/rules/apache-2.0_1128.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1128.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + ## License The code is licensed under the {{Apache 2.0 license.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1128.yml b/src/licensedcode/data/rules/apache-2.0_1128.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1129.RULE b/src/licensedcode/data/rules/apache-2.0_1129.RULE index b0ad3f8e14f..45f37a0a725 100644 --- a/src/licensedcode/data/rules/apache-2.0_1129.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1129.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The code is licensed under the {{Apache 2.0 license.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1129.yml b/src/licensedcode/data/rules/apache-2.0_1129.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_113.RULE b/src/licensedcode/data/rules/apache-2.0_113.RULE index d4e2352e039..e7472391554 100644 --- a/src/licensedcode/data/rules/apache-2.0_113.RULE +++ b/src/licensedcode/data/rules/apache-2.0_113.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +--- + Licensed under APLv2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_113.yml b/src/licensedcode/data/rules/apache-2.0_113.yml deleted file mode 100644 index 83425f60d0b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_113.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1130.RULE b/src/licensedcode/data/rules/apache-2.0_1130.RULE index ed380f50b24..8cb5d0d900e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1130.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1130.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + licensed under the {{Apache License, Version 2.0.}} See [LICENSE](LICENSE) for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1130.yml b/src/licensedcode/data/rules/apache-2.0_1130.yml deleted file mode 100644 index 389a34b8413..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1130.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1131.RULE b/src/licensedcode/data/rules/apache-2.0_1131.RULE index 9dd532c9712..d49350970e5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1131.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1131.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License The package is licensed under the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1131.yml b/src/licensedcode/data/rules/apache-2.0_1131.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1132.RULE b/src/licensedcode/data/rules/apache-2.0_1132.RULE index f68fd9277a0..b376c534390 100644 --- a/src/licensedcode/data/rules/apache-2.0_1132.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1132.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The package is licensed under the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1132.yml b/src/licensedcode/data/rules/apache-2.0_1132.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1133.RULE b/src/licensedcode/data/rules/apache-2.0_1133.RULE index 3b13333aba4..40a98f4be82 100644 --- a/src/licensedcode/data/rules/apache-2.0_1133.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1133.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + package is licensed under the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1133.yml b/src/licensedcode/data/rules/apache-2.0_1133.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1134.RULE b/src/licensedcode/data/rules/apache-2.0_1134.RULE index 9142ac7485a..ea55affda36 100644 --- a/src/licensedcode/data/rules/apache-2.0_1134.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1134.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://img.shields.io/badge/license-apache_2.0-blue.svg +--- + [license](http://img.shields.io/badge/license-apache_2.0-blue.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1134.yml b/src/licensedcode/data/rules/apache-2.0_1134.yml deleted file mode 100644 index f66776723eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1134.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://img.shields.io/badge/license-apache_2.0-blue.svg diff --git a/src/licensedcode/data/rules/apache-2.0_1135.RULE b/src/licensedcode/data/rules/apache-2.0_1135.RULE index 03fe358627c..1c447998da7 100644 --- a/src/licensedcode/data/rules/apache-2.0_1135.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1135.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://img.shields.io/badge/license-apache_2.0 +--- + [license](http://img.shields.io/badge/license-apache_2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1135.yml b/src/licensedcode/data/rules/apache-2.0_1135.yml deleted file mode 100644 index 43f6594acbb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1135.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://img.shields.io/badge/license-apache_2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1136.RULE b/src/licensedcode/data/rules/apache-2.0_1136.RULE index 19b99eda25a..2f1e31be708 100644 --- a/src/licensedcode/data/rules/apache-2.0_1136.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1136.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-2.0.html +--- + See: https://spdx.org/licenses/Apache-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1136.yml b/src/licensedcode/data/rules/apache-2.0_1136.yml deleted file mode 100644 index 56c884f9770..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1136.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_1137.RULE b/src/licensedcode/data/rules/apache-2.0_1137.RULE index 1b2cd4d567f..5ca2a6172ab 100644 --- a/src/licensedcode/data/rules/apache-2.0_1137.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1137.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + spdx_license="Apache-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1137.yml b/src/licensedcode/data/rules/apache-2.0_1137.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1138.RULE b/src/licensedcode/data/rules/apache-2.0_1138.RULE index 26337777037..cc8b4bf0556 100644 --- a/src/licensedcode/data/rules/apache-2.0_1138.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1138.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +notes: See https://raw.githubusercontent.com/spring-projects/spring-framework/main/src/docs/dist/license.txt +--- + section 4d of the Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1138.yml b/src/licensedcode/data/rules/apache-2.0_1138.yml deleted file mode 100644 index 64916166c17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1138.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -notes: See https://raw.githubusercontent.com/spring-projects/spring-framework/main/src/docs/dist/license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_1139.RULE b/src/licensedcode/data/rules/apache-2.0_1139.RULE index 4bba6c413c8..3a8a402cefa 100644 --- a/src/licensedcode/data/rules/apache-2.0_1139.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1139.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License This software is licensed under the Apache License, version 2 ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1139.yml b/src/licensedcode/data/rules/apache-2.0_1139.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_114.RULE b/src/licensedcode/data/rules/apache-2.0_114.RULE index 527aa34dba5..efbed92430f 100644 --- a/src/licensedcode/data/rules/apache-2.0_114.RULE +++ b/src/licensedcode/data/rules/apache-2.0_114.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +--- + license: Licensed under APLv2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_114.yml b/src/licensedcode/data/rules/apache-2.0_114.yml deleted file mode 100644 index 83425f60d0b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_114.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1140.RULE b/src/licensedcode/data/rules/apache-2.0_1140.RULE index dc66fe96ae7..54ddc839cfc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1140.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1140.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the Apache Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1140.yml b/src/licensedcode/data/rules/apache-2.0_1140.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1141.RULE b/src/licensedcode/data/rules/apache-2.0_1141.RULE index 42f2e7c72db..686a51e1334 100644 --- a/src/licensedcode/data/rules/apache-2.0_1141.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1141.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + Licensed under the Apache-2.0 License. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1141.yml b/src/licensedcode/data/rules/apache-2.0_1141.yml deleted file mode 100644 index f71b311a6eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1141.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/apache-2.0_1142.RULE b/src/licensedcode/data/rules/apache-2.0_1142.RULE index 0ccd4d37739..2b8182a2cc3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1142.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1142.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/License-Apache%202.0-blue.svg +--- + [License](https://img.shields.io/badge/License-Apache%202.0-blue.svg) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1142.yml b/src/licensedcode/data/rules/apache-2.0_1142.yml deleted file mode 100644 index e3b77c1018f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1142.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/License-Apache%202.0-blue.svg diff --git a/src/licensedcode/data/rules/apache-2.0_1143.RULE b/src/licensedcode/data/rules/apache-2.0_1143.RULE index 06012d819b6..90f457dccf4 100644 --- a/src/licensedcode/data/rules/apache-2.0_1143.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1143.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/License-Apache%202.0-blue.svg +--- + https://img.shields.io/badge/License-Apache%202.0-blue.svg) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1143.yml b/src/licensedcode/data/rules/apache-2.0_1143.yml deleted file mode 100644 index 655b584ff24..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1143.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/License-Apache%202.0-blue.svg diff --git a/src/licensedcode/data/rules/apache-2.0_1144.RULE b/src/licensedcode/data/rules/apache-2.0_1144.RULE index 867f43104f4..78702169882 100644 --- a/src/licensedcode/data/rules/apache-2.0_1144.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1144.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +--- + This software component is licensed by ST under 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: diff --git a/src/licensedcode/data/rules/apache-2.0_1144.yml b/src/licensedcode/data/rules/apache-2.0_1144.yml deleted file mode 100644 index 487153a7721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1144.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_1145.RULE b/src/licensedcode/data/rules/apache-2.0_1145.RULE index 3a1c9e55a11..5934f57be6b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1145.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1145.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +--- + This software component is licensed by under 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: diff --git a/src/licensedcode/data/rules/apache-2.0_1145.yml b/src/licensedcode/data/rules/apache-2.0_1145.yml deleted file mode 100644 index 487153a7721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1145.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_1146.RULE b/src/licensedcode/data/rules/apache-2.0_1146.RULE index fae12560657..01b909db846 100644 --- a/src/licensedcode/data/rules/apache-2.0_1146.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1146.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1146.yml b/src/licensedcode/data/rules/apache-2.0_1146.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_1147.RULE b/src/licensedcode/data/rules/apache-2.0_1147.RULE index 6136b78335d..4e42afdccbb 100644 --- a/src/licensedcode/data/rules/apache-2.0_1147.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1147.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + libraries are under the Apache License 2.0 (see @url{http://www.apache.org/licenses/LICENSE-2.0} for details) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1147.yml b/src/licensedcode/data/rules/apache-2.0_1147.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_1147.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_115.RULE b/src/licensedcode/data/rules/apache-2.0_115.RULE index d80c9195ffe..d12df2e64c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_115.RULE +++ b/src/licensedcode/data/rules/apache-2.0_115.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +--- + code is licensed under the Apache-2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_115.yml b/src/licensedcode/data/rules/apache-2.0_115.yml deleted file mode 100644 index b055fbb5a1d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_116.RULE b/src/licensedcode/data/rules/apache-2.0_116.RULE index 51745fc208e..e26ddeaec23 100644 --- a/src/licensedcode/data/rules/apache-2.0_116.RULE +++ b/src/licensedcode/data/rules/apache-2.0_116.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + License ------- diff --git a/src/licensedcode/data/rules/apache-2.0_116.yml b/src/licensedcode/data/rules/apache-2.0_116.yml deleted file mode 100644 index 389a34b8413..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_116.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_117.RULE b/src/licensedcode/data/rules/apache-2.0_117.RULE index 4378b4df1cd..a156bccd3de 100644 --- a/src/licensedcode/data/rules/apache-2.0_117.RULE +++ b/src/licensedcode/data/rules/apache-2.0_117.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License Apache License @@ -86,6 +94,4 @@ To apply the Apache License to your work, attach the following boilerplate notic 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. - - + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_117.yml b/src/licensedcode/data/rules/apache-2.0_117.yml deleted file mode 100644 index 6c6bdf65fb3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_118.RULE b/src/licensedcode/data/rules/apache-2.0_118.RULE index 2a467a99087..c9cd29e1439 100644 --- a/src/licensedcode/data/rules/apache-2.0_118.RULE +++ b/src/licensedcode/data/rules/apache-2.0_118.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + This is licensed under the AL 2.0, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_118.yml b/src/licensedcode/data/rules/apache-2.0_118.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_119.RULE b/src/licensedcode/data/rules/apache-2.0_119.RULE index d3c590754eb..d19a928e7ea 100644 --- a/src/licensedcode/data/rules/apache-2.0_119.RULE +++ b/src/licensedcode/data/rules/apache-2.0_119.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + This is licensed under the AL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_119.yml b/src/licensedcode/data/rules/apache-2.0_119.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_12.RULE b/src/licensedcode/data/rules/apache-2.0_12.RULE index 29141ab6f57..ef903e233ef 100644 --- a/src/licensedcode/data/rules/apache-2.0_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_12.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - AL2.0 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + This copy of is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the @@ -9,4 +18,4 @@ https://www.apache.org/licenses/ A copy is also included in the downloadable source code package containing , in file "AL2.0", under the same directory -as this file. +as this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_12.yml b/src/licensedcode/data/rules/apache-2.0_12.yml deleted file mode 100644 index f7cc90f1905..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - AL2.0 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_120.RULE b/src/licensedcode/data/rules/apache-2.0_120.RULE index 7a2694197a1..5332f48ca29 100644 --- a/src/licensedcode/data/rules/apache-2.0_120.RULE +++ b/src/licensedcode/data/rules/apache-2.0_120.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_120.yml b/src/licensedcode/data/rules/apache-2.0_120.yml deleted file mode 100644 index adbe3d7521e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/apache-2.0_121.RULE b/src/licensedcode/data/rules/apache-2.0_121.RULE index 2515e6f57a3..9da1b6449c5 100644 --- a/src/licensedcode/data/rules/apache-2.0_121.RULE +++ b/src/licensedcode/data/rules/apache-2.0_121.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_121.yml b/src/licensedcode/data/rules/apache-2.0_121.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_121.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_122.RULE b/src/licensedcode/data/rules/apache-2.0_122.RULE index 11fc2af64cd..ab13210ebfe 100644 --- a/src/licensedcode/data/rules/apache-2.0_122.RULE +++ b/src/licensedcode/data/rules/apache-2.0_122.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License v2.0 -http://www.apache.org/licenses/LICENSE-2.0 +http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_122.yml b/src/licensedcode/data/rules/apache-2.0_122.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_122.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_122_2.RULE b/src/licensedcode/data/rules/apache-2.0_122_2.RULE index ee1bdd727ea..5f154614e57 100644 --- a/src/licensedcode/data/rules/apache-2.0_122_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_122_2.RULE @@ -1 +1,9 @@ -Licensed under http://www.apache.org/licenses/LICENSE-2.0 +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +Licensed under http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_122_2.yml b/src/licensedcode/data/rules/apache-2.0_122_2.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_122_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_122_3.RULE b/src/licensedcode/data/rules/apache-2.0_122_3.RULE index 3ece44115b3..93dcb180d90 100644 --- a/src/licensedcode/data/rules/apache-2.0_122_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_122_3.RULE @@ -1 +1,9 @@ -Licensed under https://www.apache.org/licenses/LICENSE-2.0 +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + +Licensed under https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_122_3.yml b/src/licensedcode/data/rules/apache-2.0_122_3.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_122_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_123.RULE b/src/licensedcode/data/rules/apache-2.0_123.RULE index 9e768d1e76b..82ecbfb678d 100644 --- a/src/licensedcode/data/rules/apache-2.0_123.RULE +++ b/src/licensedcode/data/rules/apache-2.0_123.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License v2.0 -https://www.apache.org/licenses/LICENSE-2.0 +https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_123.yml b/src/licensedcode/data/rules/apache-2.0_123.yml deleted file mode 100644 index b70d53fc0ac..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_124.RULE b/src/licensedcode/data/rules/apache-2.0_124.RULE index b1165259068..62bf8b8b307 100644 --- a/src/licensedcode/data/rules/apache-2.0_124.RULE +++ b/src/licensedcode/data/rules/apache-2.0_124.RULE @@ -1 +1,8 @@ -Apache License, versión 2.0. +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +notes: this is in spanish +--- + +Apache License, versión 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_124.yml b/src/licensedcode/data/rules/apache-2.0_124.yml deleted file mode 100644 index ef7dbd30002..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_124.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -notes: this is in spanish diff --git a/src/licensedcode/data/rules/apache-2.0_125.RULE b/src/licensedcode/data/rules/apache-2.0_125.RULE index 1d2766445fa..cb041a6ca12 100644 --- a/src/licensedcode/data/rules/apache-2.0_125.RULE +++ b/src/licensedcode/data/rules/apache-2.0_125.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + Licensed under the Apache License, Version 2.0. See License.txt in t \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_125.yml b/src/licensedcode/data/rules/apache-2.0_125.yml deleted file mode 100644 index adbe3d7521e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_125.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/apache-2.0_126.RULE b/src/licensedcode/data/rules/apache-2.0_126.RULE index 6f0ea1669c5..5258a581924 100644 --- a/src/licensedcode/data/rules/apache-2.0_126.RULE +++ b/src/licensedcode/data/rules/apache-2.0_126.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache 2.0 License Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,4 +20,4 @@ Apache 2.0 License See the License for the specific language governing permissions and limitations under the License. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. +See the Apache Version 2.0 License for 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_126.yml b/src/licensedcode/data/rules/apache-2.0_126.yml deleted file mode 100644 index d324a260289..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_126.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_127.RULE b/src/licensedcode/data/rules/apache-2.0_127.RULE index 02e19fe4575..10dcb943a39 100644 --- a/src/licensedcode/data/rules/apache-2.0_127.RULE +++ b/src/licensedcode/data/rules/apache-2.0_127.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_127.yml b/src/licensedcode/data/rules/apache-2.0_127.yml deleted file mode 100644 index 14a802dc7ff..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_128.RULE b/src/licensedcode/data/rules/apache-2.0_128.RULE index c0df8beb5b7..0bbd1fb2ee2 100644 --- a/src/licensedcode/data/rules/apache-2.0_128.RULE +++ b/src/licensedcode/data/rules/apache-2.0_128.RULE @@ -1 +1,9 @@ -Licensed under the Apache License, Version 2.0. See License.txt in the project root for license details. +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + +Licensed under the Apache License, Version 2.0. See License.txt in the project root for license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_128.yml b/src/licensedcode/data/rules/apache-2.0_128.yml deleted file mode 100644 index adbe3d7521e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_128.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/apache-2.0_129.RULE b/src/licensedcode/data/rules/apache-2.0_129.RULE index 80b29a4962a..124e384636f 100644 --- a/src/licensedcode/data/rules/apache-2.0_129.RULE +++ b/src/licensedcode/data/rules/apache-2.0_129.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Licensed under the Apache License, Version 2.0. See LICENSE.txt file in the project root for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_129.yml b/src/licensedcode/data/rules/apache-2.0_129.yml deleted file mode 100644 index 6f6558086ae..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_13.RULE b/src/licensedcode/data/rules/apache-2.0_13.RULE index 3a1a0391ccf..5c68a58b419 100644 --- a/src/licensedcode/data/rules/apache-2.0_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + - Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_13.yml b/src/licensedcode/data/rules/apache-2.0_13.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_130.RULE b/src/licensedcode/data/rules/apache-2.0_130.RULE index fb7c98451dd..134bc7db3d5 100644 --- a/src/licensedcode/data/rules/apache-2.0_130.RULE +++ b/src/licensedcode/data/rules/apache-2.0_130.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the Apache License, Version 2.0. See LICENSE file in the project root for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_130.yml b/src/licensedcode/data/rules/apache-2.0_130.yml deleted file mode 100644 index 14a802dc7ff..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_130.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_131.RULE b/src/licensedcode/data/rules/apache-2.0_131.RULE index 032d9c81735..be9fc2842ee 100644 --- a/src/licensedcode/data/rules/apache-2.0_131.RULE +++ b/src/licensedcode/data/rules/apache-2.0_131.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + This project is subject to the Apache Licence, Version 2.0. A copy of the license can be found in [License.txt](License.txt) at the root of this repo. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_131.yml b/src/licensedcode/data/rules/apache-2.0_131.yml deleted file mode 100644 index adbe3d7521e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_131.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/apache-2.0_132.RULE b/src/licensedcode/data/rules/apache-2.0_132.RULE index f896479fee5..79b03498dff 100644 --- a/src/licensedcode/data/rules/apache-2.0_132.RULE +++ b/src/licensedcode/data/rules/apache-2.0_132.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Apache 2.0 licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_132.yml b/src/licensedcode/data/rules/apache-2.0_132.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_133.RULE b/src/licensedcode/data/rules/apache-2.0_133.RULE index 24f48d5ecbb..5048f9ca596 100644 --- a/src/licensedcode/data/rules/apache-2.0_133.RULE +++ b/src/licensedcode/data/rules/apache-2.0_133.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + This project bundles the following dependencies under the Apache Software License 2.0. (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_133.yml b/src/licensedcode/data/rules/apache-2.0_133.yml deleted file mode 100644 index c203547eec7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_133.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_134.RULE b/src/licensedcode/data/rules/apache-2.0_134.RULE index d23828d41b5..210eb757ce3 100644 --- a/src/licensedcode/data/rules/apache-2.0_134.RULE +++ b/src/licensedcode/data/rules/apache-2.0_134.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -183,4 +190,4 @@ incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_134.yml b/src/licensedcode/data/rules/apache-2.0_134.yml deleted file mode 100644 index bad8c4eae56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_134.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_135.RULE b/src/licensedcode/data/rules/apache-2.0_135.RULE index c0b0c13ae6d..65720cc7d5a 100644 --- a/src/licensedcode/data/rules/apache-2.0_135.RULE +++ b/src/licensedcode/data/rules/apache-2.0_135.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Sources originally distributed under the following license headers: * CommonDigest.h - APSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_135.yml b/src/licensedcode/data/rules/apache-2.0_135.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_135_1.RULE b/src/licensedcode/data/rules/apache-2.0_135_1.RULE index 0e248751da1..248f57a6a35 100644 --- a/src/licensedcode/data/rules/apache-2.0_135_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_135_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt + - NOTICE.tx +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + distributed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0), see LICENSE.txt and NOTICE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_135_1.yml b/src/licensedcode/data/rules/apache-2.0_135_1.yml deleted file mode 100644 index 79a5155722c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_135_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt - - NOTICE.tx -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_136.RULE b/src/licensedcode/data/rules/apache-2.0_136.RULE index f52301686ab..cf10357692f 100644 --- a/src/licensedcode/data/rules/apache-2.0_136.RULE +++ b/src/licensedcode/data/rules/apache-2.0_136.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + The 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/apache-2.0_136.yml b/src/licensedcode/data/rules/apache-2.0_136.yml deleted file mode 100644 index 4b8e9b998e1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_136.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_137.RULE b/src/licensedcode/data/rules/apache-2.0_137.RULE index 89edbf33dc6..ec3f22ce472 100644 --- a/src/licensedcode/data/rules/apache-2.0_137.RULE +++ b/src/licensedcode/data/rules/apache-2.0_137.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License Permission to modify and redistribute is granted under the terms of the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_137.yml b/src/licensedcode/data/rules/apache-2.0_137.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_138.RULE b/src/licensedcode/data/rules/apache-2.0_138.RULE index 2d9d61a51fe..8d40ab0e0ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_138.RULE +++ b/src/licensedcode/data/rules/apache-2.0_138.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + // This source is released under the Apache 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_138.yml b/src/licensedcode/data/rules/apache-2.0_138.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_139.RULE b/src/licensedcode/data/rules/apache-2.0_139.RULE index e90e2b5abf2..9395c930978 100644 --- a/src/licensedcode/data/rules/apache-2.0_139.RULE +++ b/src/licensedcode/data/rules/apache-2.0_139.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + License is licensed under the terms of the Apache 2.0 license, the full version of which can be found in the LICENSE file included in the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_139.yml b/src/licensedcode/data/rules/apache-2.0_139.yml deleted file mode 100644 index 389a34b8413..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_139.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_14.RULE b/src/licensedcode/data/rules/apache-2.0_14.RULE index c05818f4e50..5360fcd80fa 100644 --- a/src/licensedcode/data/rules/apache-2.0_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_14.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +notes: Release declaration +--- + released under Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_14.yml b/src/licensedcode/data/rules/apache-2.0_14.yml deleted file mode 100644 index 06302c373f6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -notes: Release declaration diff --git a/src/licensedcode/data/rules/apache-2.0_140.RULE b/src/licensedcode/data/rules/apache-2.0_140.RULE index 74eb8168e1f..e0bf82906f1 100644 --- a/src/licensedcode/data/rules/apache-2.0_140.RULE +++ b/src/licensedcode/data/rules/apache-2.0_140.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + is licensed under the terms of the Apache 2.0 license, the full version of which can be found in the LICENSE file included in the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_140.yml b/src/licensedcode/data/rules/apache-2.0_140.yml deleted file mode 100644 index 389a34b8413..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_140.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_141.RULE b/src/licensedcode/data/rules/apache-2.0_141.RULE index c001f931318..3c088263799 100644 --- a/src/licensedcode/data/rules/apache-2.0_141.RULE +++ b/src/licensedcode/data/rules/apache-2.0_141.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed by SugarCRM under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_141.yml b/src/licensedcode/data/rules/apache-2.0_141.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_142.RULE b/src/licensedcode/data/rules/apache-2.0_142.RULE index bf69d5b0c91..63a12b5a6ce 100644 --- a/src/licensedcode/data/rules/apache-2.0_142.RULE +++ b/src/licensedcode/data/rules/apache-2.0_142.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + (Apache License v2.00) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_142.yml b/src/licensedcode/data/rules/apache-2.0_142.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_143.RULE b/src/licensedcode/data/rules/apache-2.0_143.RULE index 4e250394b88..79bfa8e03f5 100644 --- a/src/licensedcode/data/rules/apache-2.0_143.RULE +++ b/src/licensedcode/data/rules/apache-2.0_143.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_143.yml b/src/licensedcode/data/rules/apache-2.0_143.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_143.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_144.RULE b/src/licensedcode/data/rules/apache-2.0_144.RULE index cf5434f85e8..1f7edcb6d8c 100644 --- a/src/licensedcode/data/rules/apache-2.0_144.RULE +++ b/src/licensedcode/data/rules/apache-2.0_144.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is released under the Apache 2.0 license. -See LICENSE for the full license text. +See LICENSE for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_144.yml b/src/licensedcode/data/rules/apache-2.0_144.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_144.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_145.RULE b/src/licensedcode/data/rules/apache-2.0_145.RULE index 6b3c9d8228c..35e690ba03b 100644 --- a/src/licensedcode/data/rules/apache-2.0_145.RULE +++ b/src/licensedcode/data/rules/apache-2.0_145.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_145.yml b/src/licensedcode/data/rules/apache-2.0_145.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_145.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_146.RULE b/src/licensedcode/data/rules/apache-2.0_146.RULE index 5dd89973496..3834df731fb 100644 --- a/src/licensedcode/data/rules/apache-2.0_146.RULE +++ b/src/licensedcode/data/rules/apache-2.0_146.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + POM_LICENCE_NAME=The Apache Software License, Version 2.0 POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_146.yml b/src/licensedcode/data/rules/apache-2.0_146.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_146.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_147.RULE b/src/licensedcode/data/rules/apache-2.0_147.RULE index 8f7b1024446..a0d77684577 100644 --- a/src/licensedcode/data/rules/apache-2.0_147.RULE +++ b/src/licensedcode/data/rules/apache-2.0_147.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + LICENCE_NAME=The Apache Software License, Version 2.0 LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_147.yml b/src/licensedcode/data/rules/apache-2.0_147.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_147.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_148.RULE b/src/licensedcode/data/rules/apache-2.0_148.RULE index 002c2f84ec5..2549dd8d25c 100644 --- a/src/licensedcode/data/rules/apache-2.0_148.RULE +++ b/src/licensedcode/data/rules/apache-2.0_148.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +--- + under the terms of the Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_148.yml b/src/licensedcode/data/rules/apache-2.0_148.yml deleted file mode 100644 index 5ea59db1cbc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_149.RULE b/src/licensedcode/data/rules/apache-2.0_149.RULE index d8638f09334..c9342a5dba8 100644 --- a/src/licensedcode/data/rules/apache-2.0_149.RULE +++ b/src/licensedcode/data/rules/apache-2.0_149.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + The Apache Software License, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_149.yml b/src/licensedcode/data/rules/apache-2.0_149.yml deleted file mode 100644 index 8ffe40afc76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_149.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_15.RULE b/src/licensedcode/data/rules/apache-2.0_15.RULE index d6bf5105926..8f08387e9c9 100644 --- a/src/licensedcode/data/rules/apache-2.0_15.RULE +++ b/src/licensedcode/data/rules/apache-2.0_15.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_15.yml b/src/licensedcode/data/rules/apache-2.0_15.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_150.RULE b/src/licensedcode/data/rules/apache-2.0_150.RULE index c1c0f191863..b01c9460b38 100644 --- a/src/licensedcode/data/rules/apache-2.0_150.RULE +++ b/src/licensedcode/data/rules/apache-2.0_150.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + library is licensed under the Apache License, Version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_150.yml b/src/licensedcode/data/rules/apache-2.0_150.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_151.RULE b/src/licensedcode/data/rules/apache-2.0_151.RULE index 9a2efa341a6..af0669b4d9f 100644 --- a/src/licensedcode/data/rules/apache-2.0_151.RULE +++ b/src/licensedcode/data/rules/apache-2.0_151.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache License, Version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_151.yml b/src/licensedcode/data/rules/apache-2.0_151.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_152.RULE b/src/licensedcode/data/rules/apache-2.0_152.RULE index f928358c79b..6cc798d8c9e 100644 --- a/src/licensedcode/data/rules/apache-2.0_152.RULE +++ b/src/licensedcode/data/rules/apache-2.0_152.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under the Apache License, Version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_152.yml b/src/licensedcode/data/rules/apache-2.0_152.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_153.RULE b/src/licensedcode/data/rules/apache-2.0_153.RULE index 5dac70eca3d..968e8985d98 100644 --- a/src/licensedcode/data/rules/apache-2.0_153.RULE +++ b/src/licensedcode/data/rules/apache-2.0_153.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Javascript library is licensed under the Apache License, Version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_153.yml b/src/licensedcode/data/rules/apache-2.0_153.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_154.RULE b/src/licensedcode/data/rules/apache-2.0_154.RULE index 43819f8c592..dfe9fdcd109 100644 --- a/src/licensedcode/data/rules/apache-2.0_154.RULE +++ b/src/licensedcode/data/rules/apache-2.0_154.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Javascript library is licensed under the Apache License, Version 2.0: Licensed under the Apache License, Version 2.0 (the "License"); @@ -10,4 +19,4 @@ 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_154.yml b/src/licensedcode/data/rules/apache-2.0_154.yml deleted file mode 100644 index 1b4987d92d7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_154.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_155.RULE b/src/licensedcode/data/rules/apache-2.0_155.RULE index 40be26b87d3..98ed89faed6 100644 --- a/src/licensedcode/data/rules/apache-2.0_155.RULE +++ b/src/licensedcode/data/rules/apache-2.0_155.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_155.yml b/src/licensedcode/data/rules/apache-2.0_155.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_156.RULE b/src/licensedcode/data/rules/apache-2.0_156.RULE index 41c2fa5f12f..c87e086d2a4 100644 --- a/src/licensedcode/data/rules/apache-2.0_156.RULE +++ b/src/licensedcode/data/rules/apache-2.0_156.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + the Apache License, Version 2.0 (the "Apache License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_156.yml b/src/licensedcode/data/rules/apache-2.0_156.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_157.RULE b/src/licensedcode/data/rules/apache-2.0_157.RULE index 1e584adb631..2c2d2187265 100644 --- a/src/licensedcode/data/rules/apache-2.0_157.RULE +++ b/src/licensedcode/data/rules/apache-2.0_157.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -10,4 +18,4 @@ See the License for the specific language governing permissions and limitations under the License. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. +See the Apache Version 2.0 License for 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_157.yml b/src/licensedcode/data/rules/apache-2.0_157.yml deleted file mode 100644 index d324a260289..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_158.RULE b/src/licensedcode/data/rules/apache-2.0_158.RULE index 77b175b05c0..5f2d095ca2d 100644 --- a/src/licensedcode/data/rules/apache-2.0_158.RULE +++ b/src/licensedcode/data/rules/apache-2.0_158.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + # ===============LICENSE_START======================================================= # Apache-2.0 # =================================================================================== @@ -13,4 +21,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -# ===============LICENSE_END========================================================= +# ===============LICENSE_END========================================================= \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_158.yml b/src/licensedcode/data/rules/apache-2.0_158.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_158.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_159.RULE b/src/licensedcode/data/rules/apache-2.0_159.RULE index bc378b7ca2b..230d02fd679 100644 --- a/src/licensedcode/data/rules/apache-2.0_159.RULE +++ b/src/licensedcode/data/rules/apache-2.0_159.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ============LICENSE_START======================================================= ================================================================================ This software file is distributed by @@ -11,4 +19,4 @@ This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -============LICENSE_END========================================================= +============LICENSE_END========================================================= \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_159.yml b/src/licensedcode/data/rules/apache-2.0_159.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_159.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_16.RULE b/src/licensedcode/data/rules/apache-2.0_16.RULE index 604f9fe47a4..4544f51ebb6 100644 --- a/src/licensedcode/data/rules/apache-2.0_16.RULE +++ b/src/licensedcode/data/rules/apache-2.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + is Open Source and available under the Apache 2 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_16.yml b/src/licensedcode/data/rules/apache-2.0_16.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_160.RULE b/src/licensedcode/data/rules/apache-2.0_160.RULE index 8704cc358c7..c52c4459190 100644 --- a/src/licensedcode/data/rules/apache-2.0_160.RULE +++ b/src/licensedcode/data/rules/apache-2.0_160.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + 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 @@ -7,4 +15,4 @@ You may obtain a copy of the License at This file 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_160.yml b/src/licensedcode/data/rules/apache-2.0_160.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_160.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_161.RULE b/src/licensedcode/data/rules/apache-2.0_161.RULE index d3dfc492370..cac93ff67e8 100644 --- a/src/licensedcode/data/rules/apache-2.0_161.RULE +++ b/src/licensedcode/data/rules/apache-2.0_161.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 90 +--- + License: Apache \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_161.yml b/src/licensedcode/data/rules/apache-2.0_161.yml deleted file mode 100644 index 1748bc00b27..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_162.RULE b/src/licensedcode/data/rules/apache-2.0_162.RULE index e938307fe26..333a5b40ca7 100644 --- a/src/licensedcode/data/rules/apache-2.0_162.RULE +++ b/src/licensedcode/data/rules/apache-2.0_162.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - org/apache/LICENSE +--- + The command line interpreter is covered by the Apache Software License. See the org/apache/LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_162.yml b/src/licensedcode/data/rules/apache-2.0_162.yml deleted file mode 100644 index d32b3063539..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_162.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - org/apache/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_163.RULE b/src/licensedcode/data/rules/apache-2.0_163.RULE index 6eca89dcbc7..fe78d42f4b8 100644 --- a/src/licensedcode/data/rules/apache-2.0_163.RULE +++ b/src/licensedcode/data/rules/apache-2.0_163.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_163.yml b/src/licensedcode/data/rules/apache-2.0_163.yml deleted file mode 100644 index 487153a7721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_163.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_164.RULE b/src/licensedcode/data/rules/apache-2.0_164.RULE index 9046d0bd8be..fc82ada3287 100644 --- a/src/licensedcode/data/rules/apache-2.0_164.RULE +++ b/src/licensedcode/data/rules/apache-2.0_164.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 @@ -199,5 +208,4 @@ 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. - + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_164.yml b/src/licensedcode/data/rules/apache-2.0_164.yml deleted file mode 100644 index f434928cdfc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_164.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_165.RULE b/src/licensedcode/data/rules/apache-2.0_165.RULE index 24a8b7afc9f..8b3b08af2ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_165.RULE +++ b/src/licensedcode/data/rules/apache-2.0_165.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + The majority of the source code in the project is licensed under the terms of the Apache License, Version 2.0, available from: - http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_165.yml b/src/licensedcode/data/rules/apache-2.0_165.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_166.RULE b/src/licensedcode/data/rules/apache-2.0_166.RULE index 72272a053a4..b99f21e1c02 100644 --- a/src/licensedcode/data/rules/apache-2.0_166.RULE +++ b/src/licensedcode/data/rules/apache-2.0_166.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at http://www.apache.org/licenses/LICENSE-2.0 . You may also have @@ -7,4 +15,4 @@ additional legal rights not granted by this license. unless required by applicable law or agreed to in writing, is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied; not even the implied warranty -of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_166.yml b/src/licensedcode/data/rules/apache-2.0_166.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_167.RULE b/src/licensedcode/data/rules/apache-2.0_167.RULE index b0642c7297f..06936aeccfe 100644 --- a/src/licensedcode/data/rules/apache-2.0_167.RULE +++ b/src/licensedcode/data/rules/apache-2.0_167.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + is released under the Apache 2.0 license. See [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_167.yml b/src/licensedcode/data/rules/apache-2.0_167.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_168.RULE b/src/licensedcode/data/rules/apache-2.0_168.RULE index b3e6c78def1..d94f5590ec1 100644 --- a/src/licensedcode/data/rules/apache-2.0_168.RULE +++ b/src/licensedcode/data/rules/apache-2.0_168.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_168.yml b/src/licensedcode/data/rules/apache-2.0_168.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_169.RULE b/src/licensedcode/data/rules/apache-2.0_169.RULE index 124b74527c9..05a307095fb 100644 --- a/src/licensedcode/data/rules/apache-2.0_169.RULE +++ b/src/licensedcode/data/rules/apache-2.0_169.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + released under the [Apache License version 2](http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_169.yml b/src/licensedcode/data/rules/apache-2.0_169.yml deleted file mode 100644 index 2482730e8c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_17.RULE b/src/licensedcode/data/rules/apache-2.0_17.RULE index 533671897f3..302ca3875b4 100644 --- a/src/licensedcode/data/rules/apache-2.0_17.RULE +++ b/src/licensedcode/data/rules/apache-2.0_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 @@ -141,4 +148,4 @@ indemnify, defend, and hold each Contributor harmless for any liability incurred claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_17.yml b/src/licensedcode/data/rules/apache-2.0_17.yml deleted file mode 100644 index c2f2fa12758..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_170.RULE b/src/licensedcode/data/rules/apache-2.0_170.RULE index 8b844242eeb..2c21c0dc88e 100644 --- a/src/licensedcode/data/rules/apache-2.0_170.RULE +++ b/src/licensedcode/data/rules/apache-2.0_170.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + [Apache License version 2](http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_170.yml b/src/licensedcode/data/rules/apache-2.0_170.yml deleted file mode 100644 index d0f17c9ef33..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_170.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_171.RULE b/src/licensedcode/data/rules/apache-2.0_171.RULE index 0d9969471b4..0beb65725af 100644 --- a/src/licensedcode/data/rules/apache-2.0_171.RULE +++ b/src/licensedcode/data/rules/apache-2.0_171.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + :license: Apache2, see LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_171.yml b/src/licensedcode/data/rules/apache-2.0_171.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_171.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_172.RULE b/src/licensedcode/data/rules/apache-2.0_172.RULE index 46c969e139e..8b8e9a84e93 100644 --- a/src/licensedcode/data/rules/apache-2.0_172.RULE +++ b/src/licensedcode/data/rules/apache-2.0_172.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License is under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_172.yml b/src/licensedcode/data/rules/apache-2.0_172.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_173.RULE b/src/licensedcode/data/rules/apache-2.0_173.RULE index 82cb599f819..e863655be3d 100644 --- a/src/licensedcode/data/rules/apache-2.0_173.RULE +++ b/src/licensedcode/data/rules/apache-2.0_173.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_173.yml b/src/licensedcode/data/rules/apache-2.0_173.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_173.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_174.RULE b/src/licensedcode/data/rules/apache-2.0_174.RULE index b7a0e844010..ed2fa7fc3d5 100644 --- a/src/licensedcode/data/rules/apache-2.0_174.RULE +++ b/src/licensedcode/data/rules/apache-2.0_174.RULE @@ -1 +1,7 @@ -under the Apache 2.0 license. \ No newline at end of file +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_174.yml b/src/licensedcode/data/rules/apache-2.0_174.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_175.RULE b/src/licensedcode/data/rules/apache-2.0_175.RULE index 004dc83c9bc..d5378cd51c1 100644 --- a/src/licensedcode/data/rules/apache-2.0_175.RULE +++ b/src/licensedcode/data/rules/apache-2.0_175.RULE @@ -1 +1,7 @@ -the Apache 2.0 license. \ No newline at end of file +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + +the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_175.yml b/src/licensedcode/data/rules/apache-2.0_175.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_176.RULE b/src/licensedcode/data/rules/apache-2.0_176.RULE index 63e670dca96..c162d24537e 100644 --- a/src/licensedcode/data/rules/apache-2.0_176.RULE +++ b/src/licensedcode/data/rules/apache-2.0_176.RULE @@ -1 +1,7 @@ -Apache 2.0 license. \ No newline at end of file +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + +Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_176.yml b/src/licensedcode/data/rules/apache-2.0_176.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_177.RULE b/src/licensedcode/data/rules/apache-2.0_177.RULE index ebe52b75e5a..4d6a3e9c8ea 100644 --- a/src/licensedcode/data/rules/apache-2.0_177.RULE +++ b/src/licensedcode/data/rules/apache-2.0_177.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + License: Apache 2.0 On Debian GNU/Linux system you can find the complete text of the diff --git a/src/licensedcode/data/rules/apache-2.0_177.yml b/src/licensedcode/data/rules/apache-2.0_177.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_177.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_178.RULE b/src/licensedcode/data/rules/apache-2.0_178.RULE index a2d97e37f78..9bf1d6d2259 100644 --- a/src/licensedcode/data/rules/apache-2.0_178.RULE +++ b/src/licensedcode/data/rules/apache-2.0_178.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian GNU/Linux system you can find the complete text of the Apache-2.0 license in `/usr/share/common-licenses/Apache-2.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_178.yml b/src/licensedcode/data/rules/apache-2.0_178.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_178.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_179.RULE b/src/licensedcode/data/rules/apache-2.0_179.RULE index adfebb1a138..d540344da20 100644 --- a/src/licensedcode/data/rules/apache-2.0_179.RULE +++ b/src/licensedcode/data/rules/apache-2.0_179.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License This project is under Apache v2 License. See the [LICENSE](LICENSE) file for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_179.yml b/src/licensedcode/data/rules/apache-2.0_179.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_18.RULE b/src/licensedcode/data/rules/apache-2.0_18.RULE index f326f9a7dec..f2870b23325 100644 --- a/src/licensedcode/data/rules/apache-2.0_18.RULE +++ b/src/licensedcode/data/rules/apache-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + is covered by the Apache License version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_18.yml b/src/licensedcode/data/rules/apache-2.0_18.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_180.RULE b/src/licensedcode/data/rules/apache-2.0_180.RULE index 8aa4605bea8..5d67e6541af 100644 --- a/src/licensedcode/data/rules/apache-2.0_180.RULE +++ b/src/licensedcode/data/rules/apache-2.0_180.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- -This project is under Apache v2 License. \ No newline at end of file + +This project is under Apache v2 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_180.yml b/src/licensedcode/data/rules/apache-2.0_180.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_181.RULE b/src/licensedcode/data/rules/apache-2.0_181.RULE index 286c338cd79..8680dfaa52a 100644 --- a/src/licensedcode/data/rules/apache-2.0_181.RULE +++ b/src/licensedcode/data/rules/apache-2.0_181.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://img.shields.io/badge/License-Apache%202.0-blue.svg +--- + [![Apache 2.0 License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_181.yml b/src/licensedcode/data/rules/apache-2.0_181.yml deleted file mode 100644 index 045eab09850..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_181.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://img.shields.io/badge/License-Apache%202.0-blue.svg diff --git a/src/licensedcode/data/rules/apache-2.0_182.RULE b/src/licensedcode/data/rules/apache-2.0_182.RULE index ad777ee9792..2e6ef4e1987 100644 --- a/src/licensedcode/data/rules/apache-2.0_182.RULE +++ b/src/licensedcode/data/rules/apache-2.0_182.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + The Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_182.yml b/src/licensedcode/data/rules/apache-2.0_182.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_183.RULE b/src/licensedcode/data/rules/apache-2.0_183.RULE index 91c871f1204..e5bfbe815a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_183.RULE +++ b/src/licensedcode/data/rules/apache-2.0_183.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + All code and contributions are under Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_183.yml b/src/licensedcode/data/rules/apache-2.0_183.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_184.RULE b/src/licensedcode/data/rules/apache-2.0_184.RULE index bf9a1f72ecf..e4ffc2ac052 100644 --- a/src/licensedcode/data/rules/apache-2.0_184.RULE +++ b/src/licensedcode/data/rules/apache-2.0_184.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + * All code and contributions are under link:/LICENSE.txt[Apache License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_184.yml b/src/licensedcode/data/rules/apache-2.0_184.yml deleted file mode 100644 index 6f6558086ae..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_185.RULE b/src/licensedcode/data/rules/apache-2.0_185.RULE index 3706592317c..f2eaa25e039 100644 --- a/src/licensedcode/data/rules/apache-2.0_185.RULE +++ b/src/licensedcode/data/rules/apache-2.0_185.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Based on code from Snap.svg (Apache 2 license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_185.yml b/src/licensedcode/data/rules/apache-2.0_185.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_186.RULE b/src/licensedcode/data/rules/apache-2.0_186.RULE index 42eef984b7a..a86a672f11d 100644 --- a/src/licensedcode/data/rules/apache-2.0_186.RULE +++ b/src/licensedcode/data/rules/apache-2.0_186.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_186.yml b/src/licensedcode/data/rules/apache-2.0_186.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_186.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_187.RULE b/src/licensedcode/data/rules/apache-2.0_187.RULE index 44b4fccec14..241ac177ef0 100644 --- a/src/licensedcode/data/rules/apache-2.0_187.RULE +++ b/src/licensedcode/data/rules/apache-2.0_187.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_187.yml b/src/licensedcode/data/rules/apache-2.0_187.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_188.RULE b/src/licensedcode/data/rules/apache-2.0_188.RULE index ea778c2f3d7..d1208f50918 100644 --- a/src/licensedcode/data/rules/apache-2.0_188.RULE +++ b/src/licensedcode/data/rules/apache-2.0_188.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_188.yml b/src/licensedcode/data/rules/apache-2.0_188.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_188.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_189.RULE b/src/licensedcode/data/rules/apache-2.0_189.RULE index aaae31fbd4e..cc88028ed53 100644 --- a/src/licensedcode/data/rules/apache-2.0_189.RULE +++ b/src/licensedcode/data/rules/apache-2.0_189.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_189.yml b/src/licensedcode/data/rules/apache-2.0_189.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_189.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_19.RULE b/src/licensedcode/data/rules/apache-2.0_19.RULE index 565b7fc0953..9a27bafaf81 100644 --- a/src/licensedcode/data/rules/apache-2.0_19.RULE +++ b/src/licensedcode/data/rules/apache-2.0_19.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + Acknowlegdement ----------------- includes free software developed by the Apache Software Foundation (http://www.apache.org/) and other organizations -For more Information see legal/LIBRARIES-FAQ +For more Information see legal/LIBRARIES-FAQ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_19.yml b/src/licensedcode/data/rules/apache-2.0_19.yml deleted file mode 100644 index bdc07c75ec3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_190.RULE b/src/licensedcode/data/rules/apache-2.0_190.RULE index 1abfc9b8452..55a85210654 100644 --- a/src/licensedcode/data/rules/apache-2.0_190.RULE +++ b/src/licensedcode/data/rules/apache-2.0_190.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_190.yml b/src/licensedcode/data/rules/apache-2.0_190.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_190.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_191.RULE b/src/licensedcode/data/rules/apache-2.0_191.RULE index 69f1e682bb5..1feb6fee07a 100644 --- a/src/licensedcode/data/rules/apache-2.0_191.RULE +++ b/src/licensedcode/data/rules/apache-2.0_191.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + License: Apache License 2.0 (http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_191.yml b/src/licensedcode/data/rules/apache-2.0_191.yml deleted file mode 100644 index c6a6b6184c6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_191.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_192.RULE b/src/licensedcode/data/rules/apache-2.0_192.RULE index adbe3682359..6e6e77f15d1 100644 --- a/src/licensedcode/data/rules/apache-2.0_192.RULE +++ b/src/licensedcode/data/rules/apache-2.0_192.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_192.yml b/src/licensedcode/data/rules/apache-2.0_192.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_193.RULE b/src/licensedcode/data/rules/apache-2.0_193.RULE index 4398d488eed..9582a438677 100644 --- a/src/licensedcode/data/rules/apache-2.0_193.RULE +++ b/src/licensedcode/data/rules/apache-2.0_193.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://github.com/amplab/tachyon/blob/master/LICENSE +--- + License: Apache License (https://github.com/amplab/tachyon/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_193.yml b/src/licensedcode/data/rules/apache-2.0_193.yml deleted file mode 100644 index 21bbde81fb2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://github.com/amplab/tachyon/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_194.RULE b/src/licensedcode/data/rules/apache-2.0_194.RULE index 438f57783cf..20306042cc3 100644 --- a/src/licensedcode/data/rules/apache-2.0_194.RULE +++ b/src/licensedcode/data/rules/apache-2.0_194.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache License (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_194.yml b/src/licensedcode/data/rules/apache-2.0_194.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_195.RULE b/src/licensedcode/data/rules/apache-2.0_195.RULE index 9d8e5546dc6..c4104c380de 100644 --- a/src/licensedcode/data/rules/apache-2.0_195.RULE +++ b/src/licensedcode/data/rules/apache-2.0_195.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache License (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_195.yml b/src/licensedcode/data/rules/apache-2.0_195.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_196.RULE b/src/licensedcode/data/rules/apache-2.0_196.RULE index f94cdcf7c8e..ae154afa211 100644 --- a/src/licensedcode/data/rules/apache-2.0_196.RULE +++ b/src/licensedcode/data/rules/apache-2.0_196.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License: Apache License (../LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_196.yml b/src/licensedcode/data/rules/apache-2.0_196.yml deleted file mode 100644 index 4356ed384a7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_197.RULE b/src/licensedcode/data/rules/apache-2.0_197.RULE index 3005e93bfd8..d418e80d5ae 100644 --- a/src/licensedcode/data/rules/apache-2.0_197.RULE +++ b/src/licensedcode/data/rules/apache-2.0_197.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://aws.amazon.com/apache2.0 +--- + https://aws.amazon.com/apache2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_197.yml b/src/licensedcode/data/rules/apache-2.0_197.yml deleted file mode 100644 index 9cc7e2c9d25..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://aws.amazon.com/apache2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_198.RULE b/src/licensedcode/data/rules/apache-2.0_198.RULE index 23744f5af50..52690e3525d 100644 --- a/src/licensedcode/data/rules/apache-2.0_198.RULE +++ b/src/licensedcode/data/rules/apache-2.0_198.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache License (v2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_198.yml b/src/licensedcode/data/rules/apache-2.0_198.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_198.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_199.RULE b/src/licensedcode/data/rules/apache-2.0_199.RULE index 5ad6dce7b03..5f74f28d5ea 100644 --- a/src/licensedcode/data/rules/apache-2.0_199.RULE +++ b/src/licensedcode/data/rules/apache-2.0_199.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://aws.amazon.com/apache2.0 +--- + License: Apache License, Version 2.0 (https://aws.amazon.com/apache2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_199.yml b/src/licensedcode/data/rules/apache-2.0_199.yml deleted file mode 100644 index f4cfed8f381..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_199.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://aws.amazon.com/apache2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_2.RULE b/src/licensedcode/data/rules/apache-2.0_2.RULE index a767324c5e7..0fd0c1af347 100644 --- a/src/licensedcode/data/rules/apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_2.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - NOTICE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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. - +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_2.yml b/src/licensedcode/data/rules/apache-2.0_2.yml deleted file mode 100644 index 86ab1d9d09e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - NOTICE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_20.RULE b/src/licensedcode/data/rules/apache-2.0_20.RULE index 5b5e45b3670..96f0a30bdf7 100644 --- a/src/licensedcode/data/rules/apache-2.0_20.RULE +++ b/src/licensedcode/data/rules/apache-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_20.yml b/src/licensedcode/data/rules/apache-2.0_20.yml deleted file mode 100644 index b6ef26c5b77..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_200.RULE b/src/licensedcode/data/rules/apache-2.0_200.RULE index 831e2126dbe..24aceaed8ad 100644 --- a/src/licensedcode/data/rules/apache-2.0_200.RULE +++ b/src/licensedcode/data/rules/apache-2.0_200.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_200.yml b/src/licensedcode/data/rules/apache-2.0_200.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_200.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_201.RULE b/src/licensedcode/data/rules/apache-2.0_201.RULE index 21095225146..0e1b0bdef02 100644 --- a/src/licensedcode/data/rules/apache-2.0_201.RULE +++ b/src/licensedcode/data/rules/apache-2.0_201.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License: Apache License Version 2.0 (LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_201.yml b/src/licensedcode/data/rules/apache-2.0_201.yml deleted file mode 100644 index 4356ed384a7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_202.RULE b/src/licensedcode/data/rules/apache-2.0_202.RULE index 700206405e2..ca8228464b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_202.RULE +++ b/src/licensedcode/data/rules/apache-2.0_202.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache Public License 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_202.yml b/src/licensedcode/data/rules/apache-2.0_202.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_203.RULE b/src/licensedcode/data/rules/apache-2.0_203.RULE index 8c3ff41e1ba..a89143a8491 100644 --- a/src/licensedcode/data/rules/apache-2.0_203.RULE +++ b/src/licensedcode/data/rules/apache-2.0_203.RULE @@ -1 +1,9 @@ -License: Apache Software License - Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +License: Apache Software License - Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_203.yml b/src/licensedcode/data/rules/apache-2.0_203.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_203.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_204.RULE b/src/licensedcode/data/rules/apache-2.0_204.RULE index eaa59f819a9..a5d9e616f80 100644 --- a/src/licensedcode/data/rules/apache-2.0_204.RULE +++ b/src/licensedcode/data/rules/apache-2.0_204.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache v2 (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_204.yml b/src/licensedcode/data/rules/apache-2.0_204.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_204.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_205.RULE b/src/licensedcode/data/rules/apache-2.0_205.RULE index a3fdca7520a..dc50fe47058 100644 --- a/src/licensedcode/data/rules/apache-2.0_205.RULE +++ b/src/licensedcode/data/rules/apache-2.0_205.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: ASF 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_205.yml b/src/licensedcode/data/rules/apache-2.0_205.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_205.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_206.RULE b/src/licensedcode/data/rules/apache-2.0_206.RULE index ba4b04434ad..3fe8fbda1c7 100644 --- a/src/licensedcode/data/rules/apache-2.0_206.RULE +++ b/src/licensedcode/data/rules/apache-2.0_206.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://github.com/json4s/json4s/raw/HEAD/LICENSE +--- + License: ASL (http://github.com/json4s/json4s/raw/HEAD/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_206.yml b/src/licensedcode/data/rules/apache-2.0_206.yml deleted file mode 100644 index 8b10fdb6ba1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_206.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://github.com/json4s/json4s/raw/HEAD/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_207.RULE b/src/licensedcode/data/rules/apache-2.0_207.RULE index 9c4b685560c..9809febf1b3 100644 --- a/src/licensedcode/data/rules/apache-2.0_207.RULE +++ b/src/licensedcode/data/rules/apache-2.0_207.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: the Apache License, ASL Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_207.yml b/src/licensedcode/data/rules/apache-2.0_207.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_208.RULE b/src/licensedcode/data/rules/apache-2.0_208.RULE index 250c1904951..36bc0eb8540 100644 --- a/src/licensedcode/data/rules/apache-2.0_208.RULE +++ b/src/licensedcode/data/rules/apache-2.0_208.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: The 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/apache-2.0_208.yml b/src/licensedcode/data/rules/apache-2.0_208.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_208.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_209.RULE b/src/licensedcode/data/rules/apache-2.0_209.RULE index c046aa1ed25..67aa34cb7b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_209.RULE +++ b/src/licensedcode/data/rules/apache-2.0_209.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: The Apache Software License, Version 2.0 (file://${basedir}/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_209.yml b/src/licensedcode/data/rules/apache-2.0_209.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_21.RULE b/src/licensedcode/data/rules/apache-2.0_21.RULE index 36c9603ab5e..732911e4be0 100644 --- a/src/licensedcode/data/rules/apache-2.0_21.RULE +++ b/src/licensedcode/data/rules/apache-2.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/apache2.0.php +--- + http://opensource.org/licenses/apache2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_21.yml b/src/licensedcode/data/rules/apache-2.0_21.yml deleted file mode 100644 index 503190b121d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/apache2.0.php diff --git a/src/licensedcode/data/rules/apache-2.0_210.RULE b/src/licensedcode/data/rules/apache-2.0_210.RULE index cca37cda972..4bf7ffdfea6 100644 --- a/src/licensedcode/data/rules/apache-2.0_210.RULE +++ b/src/licensedcode/data/rules/apache-2.0_210.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://jpam.sourceforge.net/LICENSE.txt +--- + License: The Apache Software License, Version 2.0 (http://jpam.sourceforge.net/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_210.yml b/src/licensedcode/data/rules/apache-2.0_210.yml deleted file mode 100644 index 1adfbcee9dc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_210.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://jpam.sourceforge.net/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_211.RULE b/src/licensedcode/data/rules/apache-2.0_211.RULE index dc5f24cfcee..5cb78898da0 100644 --- a/src/licensedcode/data/rules/apache-2.0_211.RULE +++ b/src/licensedcode/data/rules/apache-2.0_211.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_211.yml b/src/licensedcode/data/rules/apache-2.0_211.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_211.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_212.RULE b/src/licensedcode/data/rules/apache-2.0_212.RULE index e58e6bd3364..07faedc3169 100644 --- a/src/licensedcode/data/rules/apache-2.0_212.RULE +++ b/src/licensedcode/data/rules/apache-2.0_212.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: The Apache Software 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/apache-2.0_212.yml b/src/licensedcode/data/rules/apache-2.0_212.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_212.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_213.RULE b/src/licensedcode/data/rules/apache-2.0_213.RULE index c34ad529581..27eaeda28cc 100644 --- a/src/licensedcode/data/rules/apache-2.0_213.RULE +++ b/src/licensedcode/data/rules/apache-2.0_213.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://aws.amazon.com/apache-2-0/ +--- + https://aws.amazon.com/apache-2-0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_213.yml b/src/licensedcode/data/rules/apache-2.0_213.yml deleted file mode 100644 index af8f10e0628..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_213.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://aws.amazon.com/apache-2-0/ diff --git a/src/licensedcode/data/rules/apache-2.0_214.RULE b/src/licensedcode/data/rules/apache-2.0_214.RULE index 343611d0877..44125479946 100644 --- a/src/licensedcode/data/rules/apache-2.0_214.RULE +++ b/src/licensedcode/data/rules/apache-2.0_214.RULE @@ -1 +1,9 @@ -License: $license.name (http://www.apache.org/licenses/LICENSE-2.0.txt +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + +License: $license.name (http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_214.yml b/src/licensedcode/data/rules/apache-2.0_214.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_215.RULE b/src/licensedcode/data/rules/apache-2.0_215.RULE index e7377065c81..8b93a52fa4e 100644 --- a/src/licensedcode/data/rules/apache-2.0_215.RULE +++ b/src/licensedcode/data/rules/apache-2.0_215.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + published under the terms of the Apache Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_215.yml b/src/licensedcode/data/rules/apache-2.0_215.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_216.RULE b/src/licensedcode/data/rules/apache-2.0_216.RULE index af39820766d..9f64502db9d 100644 --- a/src/licensedcode/data/rules/apache-2.0_216.RULE +++ b/src/licensedcode/data/rules/apache-2.0_216.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_216.yml b/src/licensedcode/data/rules/apache-2.0_216.yml deleted file mode 100644 index 65d0cf686e3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_216.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_217.RULE b/src/licensedcode/data/rules/apache-2.0_217.RULE index 03f2a767326..7dcefd319f5 100644 --- a/src/licensedcode/data/rules/apache-2.0_217.RULE +++ b/src/licensedcode/data/rules/apache-2.0_217.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Apache 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_217.yml b/src/licensedcode/data/rules/apache-2.0_217.yml deleted file mode 100644 index 89677c108a2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_217.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_218.RULE b/src/licensedcode/data/rules/apache-2.0_218.RULE index 0b30a5d9a97..5b5781ec5fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_218.RULE +++ b/src/licensedcode/data/rules/apache-2.0_218.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_218.yml b/src/licensedcode/data/rules/apache-2.0_218.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_219.RULE b/src/licensedcode/data/rules/apache-2.0_219.RULE index 9324d0dca5e..7a02c3df34f 100644 --- a/src/licensedcode/data/rules/apache-2.0_219.RULE +++ b/src/licensedcode/data/rules/apache-2.0_219.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + The license is the standard wording from the Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_219.yml b/src/licensedcode/data/rules/apache-2.0_219.yml deleted file mode 100644 index 2a032ed2993..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_219.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_22.RULE b/src/licensedcode/data/rules/apache-2.0_22.RULE index c70743ad285..471ab93fc98 100644 --- a/src/licensedcode/data/rules/apache-2.0_22.RULE +++ b/src/licensedcode/data/rules/apache-2.0_22.RULE @@ -1,5 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: Educational Community License Variant +ignorable_urls: + - http://www.osgi.org/ +--- + - OSGi Alliance Notice ---------------------------------------------------------------------- This product includes the OSGi Service Platform API code from the OSGi Alliance provided under an Apache 2 license. -http://www.osgi.org +http://www.osgi.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_22.yml b/src/licensedcode/data/rules/apache-2.0_22.yml deleted file mode 100644 index aa437b93318..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: Educational Community License Variant -ignorable_urls: - - http://www.osgi.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_220.RULE b/src/licensedcode/data/rules/apache-2.0_220.RULE index 03a9174544b..167bec4074e 100644 --- a/src/licensedcode/data/rules/apache-2.0_220.RULE +++ b/src/licensedcode/data/rules/apache-2.0_220.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache Software License - Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_220.yml b/src/licensedcode/data/rules/apache-2.0_220.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_221.RULE b/src/licensedcode/data/rules/apache-2.0_221.RULE index c12e171a62c..49ab6c9cf56 100644 --- a/src/licensedcode/data/rules/apache-2.0_221.RULE +++ b/src/licensedcode/data/rules/apache-2.0_221.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + ASF 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_221.yml b/src/licensedcode/data/rules/apache-2.0_221.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_222.RULE b/src/licensedcode/data/rules/apache-2.0_222.RULE index d0c50ca175d..a48205192c8 100644 --- a/src/licensedcode/data/rules/apache-2.0_222.RULE +++ b/src/licensedcode/data/rules/apache-2.0_222.RULE @@ -1 +1,9 @@ -http://ehcache.sourceforge.net/LICENSE.txt +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://ehcache.sourceforge.net/LICENSE.txt +--- + +http://ehcache.sourceforge.net/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_222.yml b/src/licensedcode/data/rules/apache-2.0_222.yml deleted file mode 100644 index bd2c68f4719..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_222.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://ehcache.sourceforge.net/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_223.RULE b/src/licensedcode/data/rules/apache-2.0_223.RULE index 32eaccc86e7..c81926e1411 100644 --- a/src/licensedcode/data/rules/apache-2.0_223.RULE +++ b/src/licensedcode/data/rules/apache-2.0_223.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + the Apache License, ASL Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_223.yml b/src/licensedcode/data/rules/apache-2.0_223.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_224.RULE b/src/licensedcode/data/rules/apache-2.0_224.RULE index a7f97720db7..f74d957b091 100644 --- a/src/licensedcode/data/rules/apache-2.0_224.RULE +++ b/src/licensedcode/data/rules/apache-2.0_224.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + and is Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_224.yml b/src/licensedcode/data/rules/apache-2.0_224.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_225.RULE b/src/licensedcode/data/rules/apache-2.0_225.RULE index e3e22dafddd..da6c01ba20f 100644 --- a/src/licensedcode/data/rules/apache-2.0_225.RULE +++ b/src/licensedcode/data/rules/apache-2.0_225.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + is Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_225.yml b/src/licensedcode/data/rules/apache-2.0_225.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_226.RULE b/src/licensedcode/data/rules/apache-2.0_226.RULE index b94016391d0..128096a4055 100644 --- a/src/licensedcode/data/rules/apache-2.0_226.RULE +++ b/src/licensedcode/data/rules/apache-2.0_226.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://ehcache.sourceforge.net/LICENSE.txt +--- + The Apache Software License, Version 2.0 @@ -8,4 +17,4 @@ owner. - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_226.yml b/src/licensedcode/data/rules/apache-2.0_226.yml deleted file mode 100644 index 39adc025d84..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_226.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://ehcache.sourceforge.net/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_227.RULE b/src/licensedcode/data/rules/apache-2.0_227.RULE index 2e21e1948a1..7f3b5d38cf4 100644 --- a/src/licensedcode/data/rules/apache-2.0_227.RULE +++ b/src/licensedcode/data/rules/apache-2.0_227.RULE @@ -1,4 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://ehcache.sourceforge.net/LICENSE.txt +--- + The Apache Software License, Version 2.0 - http://ehcache.sourceforge.net/LICENSE.txt + http://ehcache.sourceforge.net/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_227.yml b/src/licensedcode/data/rules/apache-2.0_227.yml deleted file mode 100644 index 39adc025d84..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_227.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://ehcache.sourceforge.net/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_228.RULE b/src/licensedcode/data/rules/apache-2.0_228.RULE index 61ad3e864ac..d65b97540ea 100644 --- a/src/licensedcode/data/rules/apache-2.0_228.RULE +++ b/src/licensedcode/data/rules/apache-2.0_228.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + The license is the standard wording from the Apache license, but with Greg Luck as copyright - owner. + owner. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_228.yml b/src/licensedcode/data/rules/apache-2.0_228.yml deleted file mode 100644 index 3c7fdea81f4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_228.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_229.RULE b/src/licensedcode/data/rules/apache-2.0_229.RULE index 286aefc5427..0856a8d51ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_229.RULE +++ b/src/licensedcode/data/rules/apache-2.0_229.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + code is licensed under the Apache Software License 2.0, which is in the LICENSE in the root directory of this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_229.yml b/src/licensedcode/data/rules/apache-2.0_229.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_229.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_23.RULE b/src/licensedcode/data/rules/apache-2.0_23.RULE index 53894ef4e6f..f7714e8f337 100644 --- a/src/licensedcode/data/rules/apache-2.0_23.RULE +++ b/src/licensedcode/data/rules/apache-2.0_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0(the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_23.yml b/src/licensedcode/data/rules/apache-2.0_23.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_230.RULE b/src/licensedcode/data/rules/apache-2.0_230.RULE index 30fb4563edb..83ca455e299 100644 --- a/src/licensedcode/data/rules/apache-2.0_230.RULE +++ b/src/licensedcode/data/rules/apache-2.0_230.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + is Apache licensed and can be freely used and modified \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_230.yml b/src/licensedcode/data/rules/apache-2.0_230.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_231.RULE b/src/licensedcode/data/rules/apache-2.0_231.RULE index 5d6192d0670..30850b6aa1f 100644 --- a/src/licensedcode/data/rules/apache-2.0_231.RULE +++ b/src/licensedcode/data/rules/apache-2.0_231.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_231.yml b/src/licensedcode/data/rules/apache-2.0_231.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_231.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_232.RULE b/src/licensedcode/data/rules/apache-2.0_232.RULE index c6265616dc2..1d0be4ec6ef 100644 --- a/src/licensedcode/data/rules/apache-2.0_232.RULE +++ b/src/licensedcode/data/rules/apache-2.0_232.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the complete text of the Apache License Version 2.0, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_232.yml b/src/licensedcode/data/rules/apache-2.0_232.yml deleted file mode 100644 index 008ca39176c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_232.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_233.RULE b/src/licensedcode/data/rules/apache-2.0_233.RULE index 12185a13fc8..c85094d19c1 100644 --- a/src/licensedcode/data/rules/apache-2.0_233.RULE +++ b/src/licensedcode/data/rules/apache-2.0_233.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + This program and the accompanying materials are made available under the terms of the under the Apache License, Version 2.0 (the "License”); you may not use this file except in compliance diff --git a/src/licensedcode/data/rules/apache-2.0_233.yml b/src/licensedcode/data/rules/apache-2.0_233.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_233.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_234.RULE b/src/licensedcode/data/rules/apache-2.0_234.RULE index bbd7e21ca02..62faa452d8b 100644 --- a/src/licensedcode/data/rules/apache-2.0_234.RULE +++ b/src/licensedcode/data/rules/apache-2.0_234.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + which is covered by an Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_234.yml b/src/licensedcode/data/rules/apache-2.0_234.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_235.RULE b/src/licensedcode/data/rules/apache-2.0_235.RULE index e34a1916ffa..56f4dff588f 100644 --- a/src/licensedcode/data/rules/apache-2.0_235.RULE +++ b/src/licensedcode/data/rules/apache-2.0_235.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_235.yml b/src/licensedcode/data/rules/apache-2.0_235.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_235.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_236.RULE b/src/licensedcode/data/rules/apache-2.0_236.RULE index 3652d04dfd9..f604a8c130f 100644 --- a/src/licensedcode/data/rules/apache-2.0_236.RULE +++ b/src/licensedcode/data/rules/apache-2.0_236.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + * The Project licenses this file to you 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: @@ -8,4 +16,4 @@ * 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. + * under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_236.yml b/src/licensedcode/data/rules/apache-2.0_236.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_236.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_237.RULE b/src/licensedcode/data/rules/apache-2.0_237.RULE index 64bda24dce0..839fe597b13 100644 --- a/src/licensedcode/data/rules/apache-2.0_237.RULE +++ b/src/licensedcode/data/rules/apache-2.0_237.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_237.yml b/src/licensedcode/data/rules/apache-2.0_237.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_238.RULE b/src/licensedcode/data/rules/apache-2.0_238.RULE index 983ed76cbad..abff7f6390b 100644 --- a/src/licensedcode/data/rules/apache-2.0_238.RULE +++ b/src/licensedcode/data/rules/apache-2.0_238.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_238.yml b/src/licensedcode/data/rules/apache-2.0_238.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_239.RULE b/src/licensedcode/data/rules/apache-2.0_239.RULE index 83019bea99b..a98398c44a4 100644 --- a/src/licensedcode/data/rules/apache-2.0_239.RULE +++ b/src/licensedcode/data/rules/apache-2.0_239.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This material is licensed under the Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_239.yml b/src/licensedcode/data/rules/apache-2.0_239.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_24.RULE b/src/licensedcode/data/rules/apache-2.0_24.RULE index edcae022a06..e0d6fcdd0bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_24.RULE +++ b/src/licensedcode/data/rules/apache-2.0_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: Amazon Apache +ignorable_urls: + - http://aws.amazon.com/apache2.0 +--- + * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_24.yml b/src/licensedcode/data/rules/apache-2.0_24.yml deleted file mode 100644 index d4953d90a7f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: Amazon Apache -ignorable_urls: - - http://aws.amazon.com/apache2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_240.RULE b/src/licensedcode/data/rules/apache-2.0_240.RULE index 7cb5ddd6612..cb34082db2f 100644 --- a/src/licensedcode/data/rules/apache-2.0_240.RULE +++ b/src/licensedcode/data/rules/apache-2.0_240.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2 http://www.apache.org/licenses/LICENSE-2.0 - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_240.yml b/src/licensedcode/data/rules/apache-2.0_240.yml deleted file mode 100644 index a17677ae77e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_240.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_241.RULE b/src/licensedcode/data/rules/apache-2.0_241.RULE index dacf42223ca..104e3e748f7 100644 --- a/src/licensedcode/data/rules/apache-2.0_241.RULE +++ b/src/licensedcode/data/rules/apache-2.0_241.RULE @@ -1,5 +1,16 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt + - NOTICE.tx +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ## License This SDK is distributed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0), -see LICENSE.txt and NOTICE.txt for more information. +see LICENSE.txt and NOTICE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_241.yml b/src/licensedcode/data/rules/apache-2.0_241.yml deleted file mode 100644 index 79a5155722c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_241.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt - - NOTICE.tx -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_242.RULE b/src/licensedcode/data/rules/apache-2.0_242.RULE index 1d3db9a97be..7f4a92f1584 100644 --- a/src/licensedcode/data/rules/apache-2.0_242.RULE +++ b/src/licensedcode/data/rules/apache-2.0_242.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + released under the Apache 2.0 license. See [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_242.yml b/src/licensedcode/data/rules/apache-2.0_242.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_242.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_243.RULE b/src/licensedcode/data/rules/apache-2.0_243.RULE index 93f49eda497..29a2c4cc660 100644 --- a/src/licensedcode/data/rules/apache-2.0_243.RULE +++ b/src/licensedcode/data/rules/apache-2.0_243.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License license diff --git a/src/licensedcode/data/rules/apache-2.0_243.yml b/src/licensedcode/data/rules/apache-2.0_243.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_243.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_244.RULE b/src/licensedcode/data/rules/apache-2.0_244.RULE index 6edc5e42369..ec3a61f0bb2 100644 --- a/src/licensedcode/data/rules/apache-2.0_244.RULE +++ b/src/licensedcode/data/rules/apache-2.0_244.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Project source code files are made available under the Apache License, Version 2.0 (Apache-2.0), located in the [LICENSE](LICENSE) file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_244.yml b/src/licensedcode/data/rules/apache-2.0_244.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_244.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_245.RULE b/src/licensedcode/data/rules/apache-2.0_245.RULE index dd9f12d595f..fd57957f60a 100644 --- a/src/licensedcode/data/rules/apache-2.0_245.RULE +++ b/src/licensedcode/data/rules/apache-2.0_245.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.code +--- + Code is released under the [Apache 2.0 license](LICENSE.code). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_245.yml b/src/licensedcode/data/rules/apache-2.0_245.yml deleted file mode 100644 index b75750997cb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_245.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.code diff --git a/src/licensedcode/data/rules/apache-2.0_246.RULE b/src/licensedcode/data/rules/apache-2.0_246.RULE index e77376d2571..b7bef18b923 100644 --- a/src/licensedcode/data/rules/apache-2.0_246.RULE +++ b/src/licensedcode/data/rules/apache-2.0_246.RULE @@ -1,3 +1,10 @@ -The source code of these files contains the appropriate copyright notices -as described in the Appendix of http://www.apache.org/licenses/LICENSE-2.0 +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- +The source code of these files contains the appropriate copyright notices +as described in the Appendix of http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_246.yml b/src/licensedcode/data/rules/apache-2.0_246.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_246.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_247.RULE b/src/licensedcode/data/rules/apache-2.0_247.RULE index 120e0a42aae..7686b5743fa 100644 --- a/src/licensedcode/data/rules/apache-2.0_247.RULE +++ b/src/licensedcode/data/rules/apache-2.0_247.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The software is released under the terms of the Apache License, version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_247.yml b/src/licensedcode/data/rules/apache-2.0_247.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_248.RULE b/src/licensedcode/data/rules/apache-2.0_248.RULE index aa5d8b3d9ea..b0dd073ead1 100644 --- a/src/licensedcode/data/rules/apache-2.0_248.RULE +++ b/src/licensedcode/data/rules/apache-2.0_248.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License terms: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_248.yml b/src/licensedcode/data/rules/apache-2.0_248.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_248.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_249.RULE b/src/licensedcode/data/rules/apache-2.0_249.RULE index 4e69e9494b2..eddee1860a2 100644 --- a/src/licensedcode/data/rules/apache-2.0_249.RULE +++ b/src/licensedcode/data/rules/apache-2.0_249.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License terms: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_249.yml b/src/licensedcode/data/rules/apache-2.0_249.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_249.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_25.RULE b/src/licensedcode/data/rules/apache-2.0_25.RULE index 0f3335224e0..0f1d596735a 100644 --- a/src/licensedcode/data/rules/apache-2.0_25.RULE +++ b/src/licensedcode/data/rules/apache-2.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_25.yml b/src/licensedcode/data/rules/apache-2.0_25.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_250.RULE b/src/licensedcode/data/rules/apache-2.0_250.RULE index 5caf05dbe50..fbfa37333d2 100644 --- a/src/licensedcode/data/rules/apache-2.0_250.RULE +++ b/src/licensedcode/data/rules/apache-2.0_250.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + redistributed under the Apache Software License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_250.yml b/src/licensedcode/data/rules/apache-2.0_250.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_251.RULE b/src/licensedcode/data/rules/apache-2.0_251.RULE index 35055afb2b4..a4fd5bfdf74 100644 --- a/src/licensedcode/data/rules/apache-2.0_251.RULE +++ b/src/licensedcode/data/rules/apache-2.0_251.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + the Apache Software License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_251.yml b/src/licensedcode/data/rules/apache-2.0_251.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_252.RULE b/src/licensedcode/data/rules/apache-2.0_252.RULE index cb94c50af10..51fb8ce31ee 100644 --- a/src/licensedcode/data/rules/apache-2.0_252.RULE +++ b/src/licensedcode/data/rules/apache-2.0_252.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The complete text of the Apache 2.0 License is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_252.yml b/src/licensedcode/data/rules/apache-2.0_252.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_253.RULE b/src/licensedcode/data/rules/apache-2.0_253.RULE index 7be2e22a8aa..0229d69c7d3 100644 --- a/src/licensedcode/data/rules/apache-2.0_253.RULE +++ b/src/licensedcode/data/rules/apache-2.0_253.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released under the Apache 2.0 license. See LICENSE for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_253.yml b/src/licensedcode/data/rules/apache-2.0_253.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_253.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_254.RULE b/src/licensedcode/data/rules/apache-2.0_254.RULE index a70cf649883..b0611af055c 100644 --- a/src/licensedcode/data/rules/apache-2.0_254.RULE +++ b/src/licensedcode/data/rules/apache-2.0_254.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Per the LICENSE file licensed under the Apache License, version 2.0, the text of which is included above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_254.yml b/src/licensedcode/data/rules/apache-2.0_254.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_254.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_255.RULE b/src/licensedcode/data/rules/apache-2.0_255.RULE index 20e4bd85661..921604d83ed 100644 --- a/src/licensedcode/data/rules/apache-2.0_255.RULE +++ b/src/licensedcode/data/rules/apache-2.0_255.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +notes: uses https instead of http +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ @@ -198,4 +207,4 @@ 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_255.yml b/src/licensedcode/data/rules/apache-2.0_255.yml deleted file mode 100644 index 35b2cbf7f95..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_255.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -notes: uses https instead of http -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_256.RULE b/src/licensedcode/data/rules/apache-2.0_256.RULE index 80e88db7a91..cfbd5f91100 100644 --- a/src/licensedcode/data/rules/apache-2.0_256.RULE +++ b/src/licensedcode/data/rules/apache-2.0_256.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + apache2 Apache License Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html + http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_256.yml b/src/licensedcode/data/rules/apache-2.0_256.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_256.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_257.RULE b/src/licensedcode/data/rules/apache-2.0_257.RULE index e3979ada163..39eeb3565fb 100644 --- a/src/licensedcode/data/rules/apache-2.0_257.RULE +++ b/src/licensedcode/data/rules/apache-2.0_257.RULE @@ -1,6 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + "licenses": [ { "type": "Apache-2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0" } - ], + ], \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_257.yml b/src/licensedcode/data/rules/apache-2.0_257.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_258.RULE b/src/licensedcode/data/rules/apache-2.0_258.RULE index 100e894aad7..727b2e8e16c 100644 --- a/src/licensedcode/data/rules/apache-2.0_258.RULE +++ b/src/licensedcode/data/rules/apache-2.0_258.RULE @@ -1,7 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + "license": "Apache-2.0", "licenses": [ { "type": "Apache-2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0" } - ], + ], \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_258.yml b/src/licensedcode/data/rules/apache-2.0_258.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_259.RULE b/src/licensedcode/data/rules/apache-2.0_259.RULE index 447c6c45094..d8289bbcfe7 100644 --- a/src/licensedcode/data/rules/apache-2.0_259.RULE +++ b/src/licensedcode/data/rules/apache-2.0_259.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + SPDX-License-Identifier: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/src/licensedcode/data/rules/apache-2.0_259.yml b/src/licensedcode/data/rules/apache-2.0_259.yml deleted file mode 100644 index 4d52ba9c0cd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_259.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_25_notice.RULE b/src/licensedcode/data/rules/apache-2.0_25_notice.RULE index 54e8b8d00f5..39404ad2ae9 100644 --- a/src/licensedcode/data/rules/apache-2.0_25_notice.RULE +++ b/src/licensedcode/data/rules/apache-2.0_25_notice.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information diff --git a/src/licensedcode/data/rules/apache-2.0_25_notice.yml b/src/licensedcode/data/rules/apache-2.0_25_notice.yml deleted file mode 100644 index 6bc1491e82a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_25_notice.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_26.RULE b/src/licensedcode/data/rules/apache-2.0_26.RULE index b989ea71895..abc55995853 100644 --- a/src/licensedcode/data/rules/apache-2.0_26.RULE +++ b/src/licensedcode/data/rules/apache-2.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + and is provided under the same license as the Apache web server. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_26.yml b/src/licensedcode/data/rules/apache-2.0_26.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_260.RULE b/src/licensedcode/data/rules/apache-2.0_260.RULE index 84c88533b4c..9ec694d4ae0 100644 --- a/src/licensedcode/data/rules/apache-2.0_260.RULE +++ b/src/licensedcode/data/rules/apache-2.0_260.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: Thrift Software License is a boost-1.0 +--- + The following files contain some portions of code contributed under the Thrift Software License (see doc/old-thrift-license.txt), and relicensed -under the Apache 2.0 License: +under the Apache 2.0 License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_260.yml b/src/licensedcode/data/rules/apache-2.0_260.yml deleted file mode 100644 index 4f6faf1b9bb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_260.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: Thrift Software License is a boost-1.0 diff --git a/src/licensedcode/data/rules/apache-2.0_261.RULE b/src/licensedcode/data/rules/apache-2.0_261.RULE index fbe7992a7a6..3dff8dbb3f1 100644 --- a/src/licensedcode/data/rules/apache-2.0_261.RULE +++ b/src/licensedcode/data/rules/apache-2.0_261.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This package and the Debian packaging is licensed under the Apache License, see `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_261.yml b/src/licensedcode/data/rules/apache-2.0_261.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_262.RULE b/src/licensedcode/data/rules/apache-2.0_262.RULE index 581c6876204..e540f0cf658 100644 --- a/src/licensedcode/data/rules/apache-2.0_262.RULE +++ b/src/licensedcode/data/rules/apache-2.0_262.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_262.yml b/src/licensedcode/data/rules/apache-2.0_262.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_263.RULE b/src/licensedcode/data/rules/apache-2.0_263.RULE index b75f85cee1a..1ed637e82fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_263.RULE +++ b/src/licensedcode/data/rules/apache-2.0_263.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information @@ -13,4 +21,4 @@ "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. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_263.yml b/src/licensedcode/data/rules/apache-2.0_263.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_263.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_264.RULE b/src/licensedcode/data/rules/apache-2.0_264.RULE index fc1049b11fe..06e8e041d8a 100644 --- a/src/licensedcode/data/rules/apache-2.0_264.RULE +++ b/src/licensedcode/data/rules/apache-2.0_264.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: Apache License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_264.yml b/src/licensedcode/data/rules/apache-2.0_264.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_265.RULE b/src/licensedcode/data/rules/apache-2.0_265.RULE index f3ee43464a2..4d6f7843bba 100644 --- a/src/licensedcode/data/rules/apache-2.0_265.RULE +++ b/src/licensedcode/data/rules/apache-2.0_265.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html#contribu +--- + Legal aspects on Submission of Contributions (Patches)](http://www.apache.org/licenses/LICENSE-2.0.html#contribu 18 tions \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_265.yml b/src/licensedcode/data/rules/apache-2.0_265.yml deleted file mode 100644 index 6645447f519..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_265.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html#contribu diff --git a/src/licensedcode/data/rules/apache-2.0_266.RULE b/src/licensedcode/data/rules/apache-2.0_266.RULE index 9359328cff4..478a9f469bb 100644 --- a/src/licensedcode/data/rules/apache-2.0_266.RULE +++ b/src/licensedcode/data/rules/apache-2.0_266.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_266.yml b/src/licensedcode/data/rules/apache-2.0_266.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_267.RULE b/src/licensedcode/data/rules/apache-2.0_267.RULE index c1240454d29..150451880a2 100644 --- a/src/licensedcode/data/rules/apache-2.0_267.RULE +++ b/src/licensedcode/data/rules/apache-2.0_267.RULE @@ -1,4 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licenses { license { name 'The Apache Software License, Version 2.0' - url "${project.license}" + url "${project.license}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_267.yml b/src/licensedcode/data/rules/apache-2.0_267.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_268.RULE b/src/licensedcode/data/rules/apache-2.0_268.RULE index 434b05453a7..abdadc94069 100644 --- a/src/licensedcode/data/rules/apache-2.0_268.RULE +++ b/src/licensedcode/data/rules/apache-2.0_268.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + license" : "Apache License, Version 2.0" -url" : "http://www.apache.org/licenses/LICENSE-2.0" +url" : "http://www.apache.org/licenses/LICENSE-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_268.yml b/src/licensedcode/data/rules/apache-2.0_268.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_268.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_269.RULE b/src/licensedcode/data/rules/apache-2.0_269.RULE index 55a5dcf6b77..9d46cb8e8c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_269.RULE +++ b/src/licensedcode/data/rules/apache-2.0_269.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/apache +--- + https://choosealicense.com//licenses/apache \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_269.yml b/src/licensedcode/data/rules/apache-2.0_269.yml deleted file mode 100644 index 3623e7f1297..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_269.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/apache diff --git a/src/licensedcode/data/rules/apache-2.0_27.RULE b/src/licensedcode/data/rules/apache-2.0_27.RULE index 0f9fefa28c0..879f63378e4 100644 --- a/src/licensedcode/data/rules/apache-2.0_27.RULE +++ b/src/licensedcode/data/rules/apache-2.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + is released under the [Apache License, Version 2.0]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_27.yml b/src/licensedcode/data/rules/apache-2.0_27.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_270.RULE b/src/licensedcode/data/rules/apache-2.0_270.RULE index 281e224a3c5..fd3506c50b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_270.RULE +++ b/src/licensedcode/data/rules/apache-2.0_270.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/apache +--- + http://choosealicense.com//licenses/apache \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_270.yml b/src/licensedcode/data/rules/apache-2.0_270.yml deleted file mode 100644 index 9272821c382..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_270.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/apache diff --git a/src/licensedcode/data/rules/apache-2.0_271.RULE b/src/licensedcode/data/rules/apache-2.0_271.RULE index a8f065c5d7c..e191af9180c 100644 --- a/src/licensedcode/data/rules/apache-2.0_271.RULE +++ b/src/licensedcode/data/rules/apache-2.0_271.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/sushihangover/Realm.Json.Extensions +--- + https://github.com/sushihangover/Realm.Json.Extensions \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_271.yml b/src/licensedcode/data/rules/apache-2.0_271.yml deleted file mode 100644 index 750567ed67b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_271.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/sushihangover/Realm.Json.Extensions diff --git a/src/licensedcode/data/rules/apache-2.0_272.RULE b/src/licensedcode/data/rules/apache-2.0_272.RULE index d1af6877645..41b70ffd988 100644 --- a/src/licensedcode/data/rules/apache-2.0_272.RULE +++ b/src/licensedcode/data/rules/apache-2.0_272.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://aws.amazon.com/apache2.0/ +--- + http://aws.amazon.com/apache2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_272.yml b/src/licensedcode/data/rules/apache-2.0_272.yml deleted file mode 100644 index f2f3a9f617c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_272.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://aws.amazon.com/apache2.0/ diff --git a/src/licensedcode/data/rules/apache-2.0_273.RULE b/src/licensedcode/data/rules/apache-2.0_273.RULE index 54aa55a0f61..e42014f6922 100644 --- a/src/licensedcode/data/rules/apache-2.0_273.RULE +++ b/src/licensedcode/data/rules/apache-2.0_273.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://aws.amazon.com/apache-2-0/ +--- + http://aws.amazon.com/apache-2-0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_273.yml b/src/licensedcode/data/rules/apache-2.0_273.yml deleted file mode 100644 index bc6a157320a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_273.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://aws.amazon.com/apache-2-0/ diff --git a/src/licensedcode/data/rules/apache-2.0_274.RULE b/src/licensedcode/data/rules/apache-2.0_274.RULE index 21611da5001..65e7335df9a 100644 --- a/src/licensedcode/data/rules/apache-2.0_274.RULE +++ b/src/licensedcode/data/rules/apache-2.0_274.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://graphicsmagick.codeplex.com/license +--- + https://graphicsmagick.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_274.yml b/src/licensedcode/data/rules/apache-2.0_274.yml deleted file mode 100644 index dfdd0d87750..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_274.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://graphicsmagick.codeplex.com/license diff --git a/src/licensedcode/data/rules/apache-2.0_275.RULE b/src/licensedcode/data/rules/apache-2.0_275.RULE index cda58e9811c..165eb643a69 100644 --- a/src/licensedcode/data/rules/apache-2.0_275.RULE +++ b/src/licensedcode/data/rules/apache-2.0_275.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://indentationsplitter.codeplex.com/license +--- + https://indentationsplitter.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_275.yml b/src/licensedcode/data/rules/apache-2.0_275.yml deleted file mode 100644 index 73c16cd2278..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_275.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://indentationsplitter.codeplex.com/license diff --git a/src/licensedcode/data/rules/apache-2.0_276.RULE b/src/licensedcode/data/rules/apache-2.0_276.RULE index 20707fd4112..3c15e1665e1 100644 --- a/src/licensedcode/data/rules/apache-2.0_276.RULE +++ b/src/licensedcode/data/rules/apache-2.0_276.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://nmf.codeplex.com/license +--- + http://nmf.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_276.yml b/src/licensedcode/data/rules/apache-2.0_276.yml deleted file mode 100644 index b56f9499689..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_276.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://nmf.codeplex.com/license diff --git a/src/licensedcode/data/rules/apache-2.0_277.RULE b/src/licensedcode/data/rules/apache-2.0_277.RULE index 7ab1131cf28..db249e96b8f 100644 --- a/src/licensedcode/data/rules/apache-2.0_277.RULE +++ b/src/licensedcode/data/rules/apache-2.0_277.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/apache-2.0 +--- + https://choosealicense.com/licenses/apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_277.yml b/src/licensedcode/data/rules/apache-2.0_277.yml deleted file mode 100644 index 93abfae4f43..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_277.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_278.RULE b/src/licensedcode/data/rules/apache-2.0_278.RULE index 2e4e371d439..83db5eaa19c 100644 --- a/src/licensedcode/data/rules/apache-2.0_278.RULE +++ b/src/licensedcode/data/rules/apache-2.0_278.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/apache-2.0 +--- + http://choosealicense.com/licenses/apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_278.yml b/src/licensedcode/data/rules/apache-2.0_278.yml deleted file mode 100644 index 9fe3b9ebfc6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_278.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_279.RULE b/src/licensedcode/data/rules/apache-2.0_279.RULE index ab41bc11c42..8ddb824e670 100644 --- a/src/licensedcode/data/rules/apache-2.0_279.RULE +++ b/src/licensedcode/data/rules/apache-2.0_279.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/SignalR/SignalR/blob/dev/LICENSE.md +--- + https://github.com/SignalR/SignalR/blob/dev/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_279.yml b/src/licensedcode/data/rules/apache-2.0_279.yml deleted file mode 100644 index 9e1c58055e0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_279.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/SignalR/SignalR/blob/dev/LICENSE.md diff --git a/src/licensedcode/data/rules/apache-2.0_28.RULE b/src/licensedcode/data/rules/apache-2.0_28.RULE index 16c91024764..2033a8932bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_28.RULE +++ b/src/licensedcode/data/rules/apache-2.0_28.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: Weird apache notice, gpl-style +--- + This program is free software; you can redistribute it and/or modify it under the terms of the Apache License, Version 2.0 as published by the Apache Software Foundation. diff --git a/src/licensedcode/data/rules/apache-2.0_28.yml b/src/licensedcode/data/rules/apache-2.0_28.yml deleted file mode 100644 index feab55ba0b6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: Weird apache notice, gpl-style diff --git a/src/licensedcode/data/rules/apache-2.0_280.RULE b/src/licensedcode/data/rules/apache-2.0_280.RULE index e4c8b4fbede..6c0fd986d02 100644 --- a/src/licensedcode/data/rules/apache-2.0_280.RULE +++ b/src/licensedcode/data/rules/apache-2.0_280.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/IdentityModel/IdentityModel2/blob/release/LICENSE +--- + https://github.com/IdentityModel/IdentityModel2/blob/release/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_280.yml b/src/licensedcode/data/rules/apache-2.0_280.yml deleted file mode 100644 index fb39aab4d3d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_280.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/IdentityModel/IdentityModel2/blob/release/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_281.RULE b/src/licensedcode/data/rules/apache-2.0_281.RULE index eebff79f92d..1b194135c87 100644 --- a/src/licensedcode/data/rules/apache-2.0_281.RULE +++ b/src/licensedcode/data/rules/apache-2.0_281.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/pinch-perfect/Infrastructure-As-Code/license.md +--- + https://github.com/pinch-perfect/Infrastructure-As-Code/license.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_281.yml b/src/licensedcode/data/rules/apache-2.0_281.yml deleted file mode 100644 index f76478360b2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_281.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/pinch-perfect/Infrastructure-As-Code/license.md diff --git a/src/licensedcode/data/rules/apache-2.0_282.RULE b/src/licensedcode/data/rules/apache-2.0_282.RULE index 14f74466685..126c76e027a 100644 --- a/src/licensedcode/data/rules/apache-2.0_282.RULE +++ b/src/licensedcode/data/rules/apache-2.0_282.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/esendex/TokenBucket/blob/master/LICENSE +--- + https://github.com/esendex/TokenBucket/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_282.yml b/src/licensedcode/data/rules/apache-2.0_282.yml deleted file mode 100644 index a2e10acefae..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_282.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/esendex/TokenBucket/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_283.RULE b/src/licensedcode/data/rules/apache-2.0_283.RULE index 5307bee2948..d7305e23720 100644 --- a/src/licensedcode/data/rules/apache-2.0_283.RULE +++ b/src/licensedcode/data/rules/apache-2.0_283.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/esendex/TokenBucket/LICENSE +--- + https://github.com/esendex/TokenBucket/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_283.yml b/src/licensedcode/data/rules/apache-2.0_283.yml deleted file mode 100644 index 253c9624724..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_283.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/esendex/TokenBucket/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_284.RULE b/src/licensedcode/data/rules/apache-2.0_284.RULE index 2c19e3d6816..06e2cb5901f 100644 --- a/src/licensedcode/data/rules/apache-2.0_284.RULE +++ b/src/licensedcode/data/rules/apache-2.0_284.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Apache Software License 2.0 (see license text below) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_284.yml b/src/licensedcode/data/rules/apache-2.0_284.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_284.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_285.RULE b/src/licensedcode/data/rules/apache-2.0_285.RULE index e0ac8e9642e..7cf69ef109a 100644 --- a/src/licensedcode/data/rules/apache-2.0_285.RULE +++ b/src/licensedcode/data/rules/apache-2.0_285.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_285.yml b/src/licensedcode/data/rules/apache-2.0_285.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_285.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_286.RULE b/src/licensedcode/data/rules/apache-2.0_286.RULE index 005edb33b00..a114649bc41 100644 --- a/src/licensedcode/data/rules/apache-2.0_286.RULE +++ b/src/licensedcode/data/rules/apache-2.0_286.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://tldrlegal.com/license/apache-license-2.0- +--- + https://tldrlegal.com/license/apache-license-2.0-(apache-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_286.yml b/src/licensedcode/data/rules/apache-2.0_286.yml deleted file mode 100644 index bb6b7e2e760..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_286.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://tldrlegal.com/license/apache-license-2.0- diff --git a/src/licensedcode/data/rules/apache-2.0_287.RULE b/src/licensedcode/data/rules/apache-2.0_287.RULE index a7acd7cc686..e60efbf4e30 100644 --- a/src/licensedcode/data/rules/apache-2.0_287.RULE +++ b/src/licensedcode/data/rules/apache-2.0_287.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.eyecatch.no/licenses/apache-20/ +--- + http://www.eyecatch.no/licenses/apache-20/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_287.yml b/src/licensedcode/data/rules/apache-2.0_287.yml deleted file mode 100644 index 3c70070cb40..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_287.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.eyecatch.no/licenses/apache-20/ diff --git a/src/licensedcode/data/rules/apache-2.0_288.RULE b/src/licensedcode/data/rules/apache-2.0_288.RULE index 03764ca5721..123841a9e1c 100644 --- a/src/licensedcode/data/rules/apache-2.0_288.RULE +++ b/src/licensedcode/data/rules/apache-2.0_288.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://raw.githubusercontent.com/SolrNet/SolrNet/master/license.txt +--- + https://raw.githubusercontent.com/SolrNet/SolrNet/master/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_288.yml b/src/licensedcode/data/rules/apache-2.0_288.yml deleted file mode 100644 index 8a44db93d29..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_288.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://raw.githubusercontent.com/SolrNet/SolrNet/master/license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_289.RULE b/src/licensedcode/data/rules/apache-2.0_289.RULE index b9b7a883912..a67048b059b 100644 --- a/src/licensedcode/data/rules/apache-2.0_289.RULE +++ b/src/licensedcode/data/rules/apache-2.0_289.RULE @@ -1 +1,9 @@ - The distribution is {{licensed under the Apache License, Version 2.0 (http://apache.org/licenses/LICENSE-2.0).}} +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + + The distribution is {{licensed under the Apache License, Version 2.0 (http://apache.org/licenses/LICENSE-2.0).}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_289.yml b/src/licensedcode/data/rules/apache-2.0_289.yml deleted file mode 100644 index 66dd3ceca4c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_289.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_29.RULE b/src/licensedcode/data/rules/apache-2.0_29.RULE index 80bb2a6f55e..03b022d4739 100644 --- a/src/licensedcode/data/rules/apache-2.0_29.RULE +++ b/src/licensedcode/data/rules/apache-2.0_29.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License This library is licensed under the Apache 2.0 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_29.yml b/src/licensedcode/data/rules/apache-2.0_29.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_290.RULE b/src/licensedcode/data/rules/apache-2.0_290.RULE index 0415834fbf7..a1b1867cc98 100644 --- a/src/licensedcode/data/rules/apache-2.0_290.RULE +++ b/src/licensedcode/data/rules/apache-2.0_290.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the {{Apache License, Version 2.0}} (the “License”). -Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. +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_290.yml b/src/licensedcode/data/rules/apache-2.0_290.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_291.RULE b/src/licensedcode/data/rules/apache-2.0_291.RULE index bae1195c7ec..b199f15e3d6 100644 --- a/src/licensedcode/data/rules/apache-2.0_291.RULE +++ b/src/licensedcode/data/rules/apache-2.0_291.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Apache License, Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_291.yml b/src/licensedcode/data/rules/apache-2.0_291.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_292.RULE b/src/licensedcode/data/rules/apache-2.0_292.RULE index 1f532fdcde1..c486c5cc1e3 100644 --- a/src/licensedcode/data/rules/apache-2.0_292.RULE +++ b/src/licensedcode/data/rules/apache-2.0_292.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + license: Apache Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_292.yml b/src/licensedcode/data/rules/apache-2.0_292.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_293.RULE b/src/licensedcode/data/rules/apache-2.0_293.RULE index e31f4d552c1..9fc16532a29 100644 --- a/src/licensedcode/data/rules/apache-2.0_293.RULE +++ b/src/licensedcode/data/rules/apache-2.0_293.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + license: Apache Software license_family: Apache \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_293.yml b/src/licensedcode/data/rules/apache-2.0_293.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_294.RULE b/src/licensedcode/data/rules/apache-2.0_294.RULE index fda626f2f1b..fa64cc04c1c 100644 --- a/src/licensedcode/data/rules/apache-2.0_294.RULE +++ b/src/licensedcode/data/rules/apache-2.0_294.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license: Apache Software license_family: Apache license_file: LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_294.yml b/src/licensedcode/data/rules/apache-2.0_294.yml deleted file mode 100644 index 0281c4e5819..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_294.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_295.RULE b/src/licensedcode/data/rules/apache-2.0_295.RULE index 58551a4516b..1f57ba9c3af 100644 --- a/src/licensedcode/data/rules/apache-2.0_295.RULE +++ b/src/licensedcode/data/rules/apache-2.0_295.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. See the Apache Version 2.0 License for 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_295.yml b/src/licensedcode/data/rules/apache-2.0_295.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_295.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_296.RULE b/src/licensedcode/data/rules/apache-2.0_296.RULE index 4fa3df8c309..0eca2794b69 100644 --- a/src/licensedcode/data/rules/apache-2.0_296.RULE +++ b/src/licensedcode/data/rules/apache-2.0_296.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE +--- + This script falls under the Apache License. See http://www.apache.org/licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_296.yml b/src/licensedcode/data/rules/apache-2.0_296.yml deleted file mode 100644 index 6c4812520ac..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_296.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_297.RULE b/src/licensedcode/data/rules/apache-2.0_297.RULE index b25563a90c9..f417500b19a 100644 --- a/src/licensedcode/data/rules/apache-2.0_297.RULE +++ b/src/licensedcode/data/rules/apache-2.0_297.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + * The Apache 2.0 License http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_297.yml b/src/licensedcode/data/rules/apache-2.0_297.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_297.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_298.RULE b/src/licensedcode/data/rules/apache-2.0_298.RULE index 5a81c2d8dfb..69901846518 100644 --- a/src/licensedcode/data/rules/apache-2.0_298.RULE +++ b/src/licensedcode/data/rules/apache-2.0_298.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + * The Apache 2.0 License https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_298.yml b/src/licensedcode/data/rules/apache-2.0_298.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_298.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_299.RULE b/src/licensedcode/data/rules/apache-2.0_299.RULE index a488bf66614..d4a7a8110bc 100644 --- a/src/licensedcode/data/rules/apache-2.0_299.RULE +++ b/src/licensedcode/data/rules/apache-2.0_299.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Project uses the Apache License Version 2.0 software license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_299.yml b/src/licensedcode/data/rules/apache-2.0_299.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_2_1.RULE b/src/licensedcode/data/rules/apache-2.0_2_1.RULE index dc56d59d7b4..c224f473800 100644 --- a/src/licensedcode/data/rules/apache-2.0_2_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_2_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + If licensing your own work: Copyright [yyyy] [name of copyright owner] diff --git a/src/licensedcode/data/rules/apache-2.0_2_1.yml b/src/licensedcode/data/rules/apache-2.0_2_1.yml deleted file mode 100644 index 961c1ad1e8b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_3.RULE b/src/licensedcode/data/rules/apache-2.0_3.RULE index 5410b6a11a7..8e6f59f7b3d 100644 --- a/src/licensedcode/data/rules/apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 50 +--- + Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_3.yml b/src/licensedcode/data/rules/apache-2.0_3.yml deleted file mode 100644 index b2374c07d69..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/apache-2.0_30.RULE b/src/licensedcode/data/rules/apache-2.0_30.RULE index 9eeeacd1ec9..c0a5f1277b1 100644 --- a/src/licensedcode/data/rules/apache-2.0_30.RULE +++ b/src/licensedcode/data/rules/apache-2.0_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 20 +notes: Apache license variant +--- + Apache, the Apache feather logo, and OpenOffice are trademarks of The Apache Software Foundation. OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. Other names appearing on the site may be trademarks of their respective owners. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_30.yml b/src/licensedcode/data/rules/apache-2.0_30.yml deleted file mode 100644 index 3c003091749..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 20 -notes: Apache license variant diff --git a/src/licensedcode/data/rules/apache-2.0_300.RULE b/src/licensedcode/data/rules/apache-2.0_300.RULE index 9782b740e8c..c53d8213fd4 100644 --- a/src/licensedcode/data/rules/apache-2.0_300.RULE +++ b/src/licensedcode/data/rules/apache-2.0_300.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + == NOTICE file corresponding to section 4 d of the Apache License, == == Version 2.0 == \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_300.yml b/src/licensedcode/data/rules/apache-2.0_300.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_301.RULE b/src/licensedcode/data/rules/apache-2.0_301.RULE index 1f229c552a8..bd9593f8af8 100644 --- a/src/licensedcode/data/rules/apache-2.0_301.RULE +++ b/src/licensedcode/data/rules/apache-2.0_301.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - NOTICE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_301.yml b/src/licensedcode/data/rules/apache-2.0_301.yml deleted file mode 100644 index 0e907cca0c8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_301.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - NOTICE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_302.RULE b/src/licensedcode/data/rules/apache-2.0_302.RULE index 5fbf628b245..721e60d7e09 100644 --- a/src/licensedcode/data/rules/apache-2.0_302.RULE +++ b/src/licensedcode/data/rules/apache-2.0_302.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +--- + under Apache Licnece 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_302.yml b/src/licensedcode/data/rules/apache-2.0_302.yml deleted file mode 100644 index ac7cac7e3b0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_303.RULE b/src/licensedcode/data/rules/apache-2.0_303.RULE index d27fb05f22f..15d6ebcb489 100644 --- a/src/licensedcode/data/rules/apache-2.0_303.RULE +++ b/src/licensedcode/data/rules/apache-2.0_303.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License This software is licensed under the Apache 2.0 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_303.yml b/src/licensedcode/data/rules/apache-2.0_303.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_303.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_304.RULE b/src/licensedcode/data/rules/apache-2.0_304.RULE index fb4a2477a55..ec253fc952a 100644 --- a/src/licensedcode/data/rules/apache-2.0_304.RULE +++ b/src/licensedcode/data/rules/apache-2.0_304.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Apache 2 license; see COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_304.yml b/src/licensedcode/data/rules/apache-2.0_304.yml deleted file mode 100644 index a582cc34ec0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_304.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/apache-2.0_305.RULE b/src/licensedcode/data/rules/apache-2.0_305.RULE index f74da59a75c..4412f646d4e 100644 --- a/src/licensedcode/data/rules/apache-2.0_305.RULE +++ b/src/licensedcode/data/rules/apache-2.0_305.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache 2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_305.yml b/src/licensedcode/data/rules/apache-2.0_305.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_306.RULE b/src/licensedcode/data/rules/apache-2.0_306.RULE index db7fcaecd4e..16b685fce34 100644 --- a/src/licensedcode/data/rules/apache-2.0_306.RULE +++ b/src/licensedcode/data/rules/apache-2.0_306.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is distributed under the same license as the Puppet automation framework package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_306.yml b/src/licensedcode/data/rules/apache-2.0_306.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_306.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_307.RULE b/src/licensedcode/data/rules/apache-2.0_307.RULE index 878e3e515f2..1c3e4dbde39 100644 --- a/src/licensedcode/data/rules/apache-2.0_307.RULE +++ b/src/licensedcode/data/rules/apache-2.0_307.RULE @@ -1,2 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - LICENSE.TXT +ignorable_urls: + - http://nltk.org/ +--- + # URL: # For license information, see LICENSE.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_307.yml b/src/licensedcode/data/rules/apache-2.0_307.yml deleted file mode 100644 index 71417f6c217..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_307.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - LICENSE.TXT -ignorable_urls: - - http://nltk.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_308.RULE b/src/licensedcode/data/rules/apache-2.0_308.RULE index c2a82409625..ce7ebe526f3 100644 --- a/src/licensedcode/data/rules/apache-2.0_308.RULE +++ b/src/licensedcode/data/rules/apache-2.0_308.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - LICENSE +--- + distributed under the Apache 2 license; the text of this license can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_308.yml b/src/licensedcode/data/rules/apache-2.0_308.yml deleted file mode 100644 index e6127b5112e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_308.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_309.RULE b/src/licensedcode/data/rules/apache-2.0_309.RULE index 0b784ec52bb..b2a4805a551 100644 --- a/src/licensedcode/data/rules/apache-2.0_309.RULE +++ b/src/licensedcode/data/rules/apache-2.0_309.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + License licensed under the [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_309.yml b/src/licensedcode/data/rules/apache-2.0_309.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_309.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_31.RULE b/src/licensedcode/data/rules/apache-2.0_31.RULE index b21b6f1410c..d72339af2fd 100644 --- a/src/licensedcode/data/rules/apache-2.0_31.RULE +++ b/src/licensedcode/data/rules/apache-2.0_31.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Apache v2 License. -* +* \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_31.yml b/src/licensedcode/data/rules/apache-2.0_31.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_310.RULE b/src/licensedcode/data/rules/apache-2.0_310.RULE index cd0349abb9a..01ab5aed381 100644 --- a/src/licensedcode/data/rules/apache-2.0_310.RULE +++ b/src/licensedcode/data/rules/apache-2.0_310.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + licensed under the [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_310.yml b/src/licensedcode/data/rules/apache-2.0_310.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_310.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_311.RULE b/src/licensedcode/data/rules/apache-2.0_311.RULE index 5218f5b71b2..9132a7234b3 100644 --- a/src/licensedcode/data/rules/apache-2.0_311.RULE +++ b/src/licensedcode/data/rules/apache-2.0_311.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_311.yml b/src/licensedcode/data/rules/apache-2.0_311.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_311.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_312.RULE b/src/licensedcode/data/rules/apache-2.0_312.RULE index bd3dae50b62..32a0932938b 100644 --- a/src/licensedcode/data/rules/apache-2.0_312.RULE +++ b/src/licensedcode/data/rules/apache-2.0_312.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + subcomponent licensed under the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_312.yml b/src/licensedcode/data/rules/apache-2.0_312.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_312.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_313.RULE b/src/licensedcode/data/rules/apache-2.0_313.RULE index 8fc64149e6f..bce1257ef91 100644 --- a/src/licensedcode/data/rules/apache-2.0_313.RULE +++ b/src/licensedcode/data/rules/apache-2.0_313.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_313.yml b/src/licensedcode/data/rules/apache-2.0_313.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_314.RULE b/src/licensedcode/data/rules/apache-2.0_314.RULE index 7dc1d763989..4e6cf7e3bdd 100644 --- a/src/licensedcode/data/rules/apache-2.0_314.RULE +++ b/src/licensedcode/data/rules/apache-2.0_314.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license/LICENSE.txt +--- + Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file." \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_314.yml b/src/licensedcode/data/rules/apache-2.0_314.yml deleted file mode 100644 index 6bc21a25d74..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_314.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_315.RULE b/src/licensedcode/data/rules/apache-2.0_315.RULE index 4c3959dd632..48e03cbafa2 100644 --- a/src/licensedcode/data/rules/apache-2.0_315.RULE +++ b/src/licensedcode/data/rules/apache-2.0_315.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + licenses = ["notice"], # Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_315.yml b/src/licensedcode/data/rules/apache-2.0_315.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_315.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_316.RULE b/src/licensedcode/data/rules/apache-2.0_316.RULE index 032f9b1a16b..6350bc2d9f7 100644 --- a/src/licensedcode/data/rules/apache-2.0_316.RULE +++ b/src/licensedcode/data/rules/apache-2.0_316.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + under the Apache 2.0 license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_316.yml b/src/licensedcode/data/rules/apache-2.0_316.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_316.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_317.RULE b/src/licensedcode/data/rules/apache-2.0_317.RULE index 4d847fa826a..2178f5cdf2f 100644 --- a/src/licensedcode/data/rules/apache-2.0_317.RULE +++ b/src/licensedcode/data/rules/apache-2.0_317.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under Apache 2.0 License. More details in LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_317.yml b/src/licensedcode/data/rules/apache-2.0_317.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_317.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_318.RULE b/src/licensedcode/data/rules/apache-2.0_318.RULE index 2159645843d..da8400cfb5f 100644 --- a/src/licensedcode/data/rules/apache-2.0_318.RULE +++ b/src/licensedcode/data/rules/apache-2.0_318.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License This code is licensed under Apache License, Version 2.0 (ASL2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_318.yml b/src/licensedcode/data/rules/apache-2.0_318.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_319.RULE b/src/licensedcode/data/rules/apache-2.0_319.RULE index d5d90d6c401..4bc9e8ccce9 100644 --- a/src/licensedcode/data/rules/apache-2.0_319.RULE +++ b/src/licensedcode/data/rules/apache-2.0_319.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This code is licensed under Apache License, Version 2.0 (ASL2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_319.yml b/src/licensedcode/data/rules/apache-2.0_319.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_319.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_32.RULE b/src/licensedcode/data/rules/apache-2.0_32.RULE index b05e84d26b2..f13a9b030ba 100644 --- a/src/licensedcode/data/rules/apache-2.0_32.RULE +++ b/src/licensedcode/data/rules/apache-2.0_32.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +notes: Declaration in difference language +--- + Open Source unter der Apache License Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_32.yml b/src/licensedcode/data/rules/apache-2.0_32.yml deleted file mode 100644 index b5f2942c4f2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_32.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -notes: Declaration in difference language diff --git a/src/licensedcode/data/rules/apache-2.0_320.RULE b/src/licensedcode/data/rules/apache-2.0_320.RULE index aa4fca38da9..0fdc437d11d 100644 --- a/src/licensedcode/data/rules/apache-2.0_320.RULE +++ b/src/licensedcode/data/rules/apache-2.0_320.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under Apache License, Version 2.0 (ASL2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_320.yml b/src/licensedcode/data/rules/apache-2.0_320.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_320.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_321.RULE b/src/licensedcode/data/rules/apache-2.0_321.RULE index 7cb92e365a4..568e3f4f084 100644 --- a/src/licensedcode/data/rules/apache-2.0_321.RULE +++ b/src/licensedcode/data/rules/apache-2.0_321.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under Apache License, Version 2.0, as found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_321.yml b/src/licensedcode/data/rules/apache-2.0_321.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_321.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_322.RULE b/src/licensedcode/data/rules/apache-2.0_322.RULE index 1e323ac77be..8339abcbbd2 100644 --- a/src/licensedcode/data/rules/apache-2.0_322.RULE +++ b/src/licensedcode/data/rules/apache-2.0_322.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + Apache Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_322.yml b/src/licensedcode/data/rules/apache-2.0_322.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_322.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_323.RULE b/src/licensedcode/data/rules/apache-2.0_323.RULE index 3acd83f695f..dec33fc7222 100644 --- a/src/licensedcode/data/rules/apache-2.0_323.RULE +++ b/src/licensedcode/data/rules/apache-2.0_323.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + Apache Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_323.yml b/src/licensedcode/data/rules/apache-2.0_323.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_323.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_324.RULE b/src/licensedcode/data/rules/apache-2.0_324.RULE index 94c856cd799..c4a77247d72 100644 --- a/src/licensedcode/data/rules/apache-2.0_324.RULE +++ b/src/licensedcode/data/rules/apache-2.0_324.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) diff --git a/src/licensedcode/data/rules/apache-2.0_324.yml b/src/licensedcode/data/rules/apache-2.0_324.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_324.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_325.RULE b/src/licensedcode/data/rules/apache-2.0_325.RULE index 10ab2a2a020..420aa045826 100644 --- a/src/licensedcode/data/rules/apache-2.0_325.RULE +++ b/src/licensedcode/data/rules/apache-2.0_325.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + The content developed by is distributed under the following license: I am providing code and resources in this repository to you under an open source diff --git a/src/licensedcode/data/rules/apache-2.0_325.yml b/src/licensedcode/data/rules/apache-2.0_325.yml deleted file mode 100644 index e8a26dd23aa..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_325.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_326.RULE b/src/licensedcode/data/rules/apache-2.0_326.RULE index 25857678334..29f3f1f11f4 100644 --- a/src/licensedcode/data/rules/apache-2.0_326.RULE +++ b/src/licensedcode/data/rules/apache-2.0_326.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_COLORBREWER +--- + The palettes have been included under the terms of an Apache-stype license (for details, see the file LICENSE_COLORBREWER in the license directory of the matplotlib diff --git a/src/licensedcode/data/rules/apache-2.0_326.yml b/src/licensedcode/data/rules/apache-2.0_326.yml deleted file mode 100644 index 1d04016f598..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_326.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_COLORBREWER diff --git a/src/licensedcode/data/rules/apache-2.0_327.RULE b/src/licensedcode/data/rules/apache-2.0_327.RULE index c9f251d0a6d..4d0a45612f8 100644 --- a/src/licensedcode/data/rules/apache-2.0_327.RULE +++ b/src/licensedcode/data/rules/apache-2.0_327.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This project is licensed under the terms of the Apache 2.0 open source license. Please refer to LICENSE for the full terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_327.yml b/src/licensedcode/data/rules/apache-2.0_327.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_327.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_328.RULE b/src/licensedcode/data/rules/apache-2.0_328.RULE index 1d32cb4bc7f..8c452923a1e 100644 --- a/src/licensedcode/data/rules/apache-2.0_328.RULE +++ b/src/licensedcode/data/rules/apache-2.0_328.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + License This project is licensed under the terms of the Apache 2.0 open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_328.yml b/src/licensedcode/data/rules/apache-2.0_328.yml deleted file mode 100644 index 1adf7d7a3d3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_328.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/apache-2.0_329.RULE b/src/licensedcode/data/rules/apache-2.0_329.RULE index 3f426ebc5c8..76bfbb856e9 100644 --- a/src/licensedcode/data/rules/apache-2.0_329.RULE +++ b/src/licensedcode/data/rules/apache-2.0_329.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the terms of the Apache 2.0 open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_329.yml b/src/licensedcode/data/rules/apache-2.0_329.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_329.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_33.RULE b/src/licensedcode/data/rules/apache-2.0_33.RULE index 3431185f604..da26cd69a58 100644 --- a/src/licensedcode/data/rules/apache-2.0_33.RULE +++ b/src/licensedcode/data/rules/apache-2.0_33.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. The ASF licenses this work to You under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance @@ -6,4 +17,4 @@ with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 On a Debian system, the license can be found at -/usr/share/common-licenses/Apache-2.0 . +/usr/share/common-licenses/Apache-2.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_33.yml b/src/licensedcode/data/rules/apache-2.0_33.yml deleted file mode 100644 index f7002ec2497..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_33.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_330.RULE b/src/licensedcode/data/rules/apache-2.0_330.RULE index 0abd5931ce0..68b2fbb5d0c 100644 --- a/src/licensedcode/data/rules/apache-2.0_330.RULE +++ b/src/licensedcode/data/rules/apache-2.0_330.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ## License and Copyright Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_330.yml b/src/licensedcode/data/rules/apache-2.0_330.yml deleted file mode 100644 index dabac6dc7d4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_330.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_331.RULE b/src/licensedcode/data/rules/apache-2.0_331.RULE index ba5240b2093..16e0e1ff0a8 100644 --- a/src/licensedcode/data/rules/apache-2.0_331.RULE +++ b/src/licensedcode/data/rules/apache-2.0_331.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 97 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License:: Apache License, Version 2.0 Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_331.yml b/src/licensedcode/data/rules/apache-2.0_331.yml deleted file mode 100644 index 58f7e348ddc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_331.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 97 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_332.RULE b/src/licensedcode/data/rules/apache-2.0_332.RULE index c8c04e60f75..04675aa9f7e 100644 --- a/src/licensedcode/data/rules/apache-2.0_332.RULE +++ b/src/licensedcode/data/rules/apache-2.0_332.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + published under the Apache License, Version 2.0, January 2004 if not stated otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_332.yml b/src/licensedcode/data/rules/apache-2.0_332.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_333.RULE b/src/licensedcode/data/rules/apache-2.0_333.RULE index fd034a8aa02..292751bc899 100644 --- a/src/licensedcode/data/rules/apache-2.0_333.RULE +++ b/src/licensedcode/data/rules/apache-2.0_333.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_333.yml b/src/licensedcode/data/rules/apache-2.0_333.yml deleted file mode 100644 index dabac6dc7d4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_333.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_334.RULE b/src/licensedcode/data/rules/apache-2.0_334.RULE index a2cf9a60da4..b03cef450ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_334.RULE +++ b/src/licensedcode/data/rules/apache-2.0_334.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_334.yml b/src/licensedcode/data/rules/apache-2.0_334.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_334.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_335.RULE b/src/licensedcode/data/rules/apache-2.0_335.RULE index e6afe42d4b0..f8fa8bec80a 100644 --- a/src/licensedcode/data/rules/apache-2.0_335.RULE +++ b/src/licensedcode/data/rules/apache-2.0_335.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 92 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_335.yml b/src/licensedcode/data/rules/apache-2.0_335.yml deleted file mode 100644 index ddb4ac5e0f6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_335.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 92 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_336.RULE b/src/licensedcode/data/rules/apache-2.0_336.RULE index a0623850fb9..51afe9d3296 100644 --- a/src/licensedcode/data/rules/apache-2.0_336.RULE +++ b/src/licensedcode/data/rules/apache-2.0_336.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + license: "Apache v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_336.yml b/src/licensedcode/data/rules/apache-2.0_336.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_336.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_337.RULE b/src/licensedcode/data/rules/apache-2.0_337.RULE index 6118d2f3442..53ddcd3a191 100644 --- a/src/licensedcode/data/rules/apache-2.0_337.RULE +++ b/src/licensedcode/data/rules/apache-2.0_337.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licenced under apache license 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_337.yml b/src/licensedcode/data/rules/apache-2.0_337.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_337.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_338.RULE b/src/licensedcode/data/rules/apache-2.0_338.RULE index 0f212942437..b2a4a90d396 100644 --- a/src/licensedcode/data/rules/apache-2.0_338.RULE +++ b/src/licensedcode/data/rules/apache-2.0_338.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + made available under the terms of the Apache License 2.0. See the LICENSE file that accompanies this distribution for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_338.yml b/src/licensedcode/data/rules/apache-2.0_338.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_338.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_339.RULE b/src/licensedcode/data/rules/apache-2.0_339.RULE index 1e8c3606a0b..e81e1cd1159 100644 --- a/src/licensedcode/data/rules/apache-2.0_339.RULE +++ b/src/licensedcode/data/rules/apache-2.0_339.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + available under the terms of the Apache License 2.0. See the LICENSE file that accompanies this distribution for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_339.yml b/src/licensedcode/data/rules/apache-2.0_339.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_34.RULE b/src/licensedcode/data/rules/apache-2.0_34.RULE index 3fe9b8091ba..f01f6403341 100644 --- a/src/licensedcode/data/rules/apache-2.0_34.RULE +++ b/src/licensedcode/data/rules/apache-2.0_34.RULE @@ -1 +1,8 @@ -Apacache License 2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + +Apacache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_34.yml b/src/licensedcode/data/rules/apache-2.0_34.yml deleted file mode 100644 index c5a4ad41396..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_340.RULE b/src/licensedcode/data/rules/apache-2.0_340.RULE index b7ee23bbf7d..cee0719bdd3 100644 --- a/src/licensedcode/data/rules/apache-2.0_340.RULE +++ b/src/licensedcode/data/rules/apache-2.0_340.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_340.yml b/src/licensedcode/data/rules/apache-2.0_340.yml deleted file mode 100644 index b6ef26c5b77..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_340.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_341.RULE b/src/licensedcode/data/rules/apache-2.0_341.RULE index d16f35d9619..c66daca0425 100644 --- a/src/licensedcode/data/rules/apache-2.0_341.RULE +++ b/src/licensedcode/data/rules/apache-2.0_341.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_341.yml b/src/licensedcode/data/rules/apache-2.0_341.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_342.RULE b/src/licensedcode/data/rules/apache-2.0_342.RULE index 5f3ab1716b6..ce548ea0b0b 100644 --- a/src/licensedcode/data/rules/apache-2.0_342.RULE +++ b/src/licensedcode/data/rules/apache-2.0_342.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_342.yml b/src/licensedcode/data/rules/apache-2.0_342.yml deleted file mode 100644 index 4b8e9b998e1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_342.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_343.RULE b/src/licensedcode/data/rules/apache-2.0_343.RULE index b04405942e1..2e5186b7c65 100644 --- a/src/licensedcode/data/rules/apache-2.0_343.RULE +++ b/src/licensedcode/data/rules/apache-2.0_343.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_343.yml b/src/licensedcode/data/rules/apache-2.0_343.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_343.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_344.RULE b/src/licensedcode/data/rules/apache-2.0_344.RULE index 952f5cc6ee3..661bcbf4455 100644 --- a/src/licensedcode/data/rules/apache-2.0_344.RULE +++ b/src/licensedcode/data/rules/apache-2.0_344.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_344.yml b/src/licensedcode/data/rules/apache-2.0_344.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_344.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_345.RULE b/src/licensedcode/data/rules/apache-2.0_345.RULE index 7407e73ecea..1b908d01f51 100644 --- a/src/licensedcode/data/rules/apache-2.0_345.RULE +++ b/src/licensedcode/data/rules/apache-2.0_345.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_345.yml b/src/licensedcode/data/rules/apache-2.0_345.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_345.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_346.RULE b/src/licensedcode/data/rules/apache-2.0_346.RULE index 1c5546d36da..612adb12dc5 100644 --- a/src/licensedcode/data/rules/apache-2.0_346.RULE +++ b/src/licensedcode/data/rules/apache-2.0_346.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +--- + apache.org/licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_346.yml b/src/licensedcode/data/rules/apache-2.0_346.yml deleted file mode 100644 index 36d02f77612..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_346.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_347.RULE b/src/licensedcode/data/rules/apache-2.0_347.RULE index 0ca4e1b7e40..9df45448b3f 100644 --- a/src/licensedcode/data/rules/apache-2.0_347.RULE +++ b/src/licensedcode/data/rules/apache-2.0_347.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + aws.amazon.com/apache2.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_347.yml b/src/licensedcode/data/rules/apache-2.0_347.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_347.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_348.RULE b/src/licensedcode/data/rules/apache-2.0_348.RULE index d2f1b0bf161..71d0ebf18e2 100644 --- a/src/licensedcode/data/rules/apache-2.0_348.RULE +++ b/src/licensedcode/data/rules/apache-2.0_348.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + amazon.com/apache2.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_348.yml b/src/licensedcode/data/rules/apache-2.0_348.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_348.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_349.RULE b/src/licensedcode/data/rules/apache-2.0_349.RULE index e4850cc4f42..b4ce85afd4b 100644 --- a/src/licensedcode/data/rules/apache-2.0_349.RULE +++ b/src/licensedcode/data/rules/apache-2.0_349.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - license-apache.txt +--- + 'license-apache.txt', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_349.yml b/src/licensedcode/data/rules/apache-2.0_349.yml deleted file mode 100644 index a7873de04a9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_349.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -referenced_filenames: - - license-apache.txt diff --git a/src/licensedcode/data/rules/apache-2.0_35.RULE b/src/licensedcode/data/rules/apache-2.0_35.RULE index b22d772351f..e7d5084e98f 100644 --- a/src/licensedcode/data/rules/apache-2.0_35.RULE +++ b/src/licensedcode/data/rules/apache-2.0_35.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_35.yml b/src/licensedcode/data/rules/apache-2.0_35.yml deleted file mode 100644 index df98620e671..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_350.RULE b/src/licensedcode/data/rules/apache-2.0_350.RULE index b3140454ffe..5d18f814deb 100644 --- a/src/licensedcode/data/rules/apache-2.0_350.RULE +++ b/src/licensedcode/data/rules/apache-2.0_350.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - license-apache.md +--- + 'license-apache.md', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_350.yml b/src/licensedcode/data/rules/apache-2.0_350.yml deleted file mode 100644 index 54c299ad7f7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_350.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -referenced_filenames: - - license-apache.md diff --git a/src/licensedcode/data/rules/apache-2.0_351.RULE b/src/licensedcode/data/rules/apache-2.0_351.RULE index 7e5dfc7a63b..68c95f6a88f 100644 --- a/src/licensedcode/data/rules/apache-2.0_351.RULE +++ b/src/licensedcode/data/rules/apache-2.0_351.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - license-apache.html +--- + 'license-apache.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_351.yml b/src/licensedcode/data/rules/apache-2.0_351.yml deleted file mode 100644 index 1335ee5cdc2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_351.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -referenced_filenames: - - license-apache.html diff --git a/src/licensedcode/data/rules/apache-2.0_352.RULE b/src/licensedcode/data/rules/apache-2.0_352.RULE index 17f288edfbc..4effe8dad0c 100644 --- a/src/licensedcode/data/rules/apache-2.0_352.RULE +++ b/src/licensedcode/data/rules/apache-2.0_352.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/Apache-2.0 +--- + http://opensource.org/licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_352.yml b/src/licensedcode/data/rules/apache-2.0_352.yml deleted file mode 100644 index dce9cc9866b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_352.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_353.RULE b/src/licensedcode/data/rules/apache-2.0_353.RULE index 7bd925c1bfe..d475e3c0b0f 100644 --- a/src/licensedcode/data/rules/apache-2.0_353.RULE +++ b/src/licensedcode/data/rules/apache-2.0_353.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/Apache-2.0 +--- + https://opensource.org/licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_353.yml b/src/licensedcode/data/rules/apache-2.0_353.yml deleted file mode 100644 index 2403c5a7fc2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_353.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_354.RULE b/src/licensedcode/data/rules/apache-2.0_354.RULE index d1c168d54d2..32deb0e83da 100644 --- a/src/licensedcode/data/rules/apache-2.0_354.RULE +++ b/src/licensedcode/data/rules/apache-2.0_354.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License This project is licensed under the Apache 2.0 License - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_354.yml b/src/licensedcode/data/rules/apache-2.0_354.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_354.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_355.RULE b/src/licensedcode/data/rules/apache-2.0_355.RULE index 866a04362a2..0d2fa456fb6 100644 --- a/src/licensedcode/data/rules/apache-2.0_355.RULE +++ b/src/licensedcode/data/rules/apache-2.0_355.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This project is licensed under the Apache 2.0 License - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_355.yml b/src/licensedcode/data/rules/apache-2.0_355.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_355.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_356.RULE b/src/licensedcode/data/rules/apache-2.0_356.RULE index 11d176c11f9..fc8fcfc3ff9 100644 --- a/src/licensedcode/data/rules/apache-2.0_356.RULE +++ b/src/licensedcode/data/rules/apache-2.0_356.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + license: name: Apache 2.0 url: http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_356.yml b/src/licensedcode/data/rules/apache-2.0_356.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_356.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_357.RULE b/src/licensedcode/data/rules/apache-2.0_357.RULE index 5e14830c703..5618f13a87e 100644 --- a/src/licensedcode/data/rules/apache-2.0_357.RULE +++ b/src/licensedcode/data/rules/apache-2.0_357.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + license: name: Apache 2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_357.yml b/src/licensedcode/data/rules/apache-2.0_357.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_357.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_358.RULE b/src/licensedcode/data/rules/apache-2.0_358.RULE index 1a84b64d22a..c14d7ed1cf9 100644 --- a/src/licensedcode/data/rules/apache-2.0_358.RULE +++ b/src/licensedcode/data/rules/apache-2.0_358.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + SPDX-License-Identifier: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may diff --git a/src/licensedcode/data/rules/apache-2.0_358.yml b/src/licensedcode/data/rules/apache-2.0_358.yml deleted file mode 100644 index 71d6c3dde92..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_358.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_359.RULE b/src/licensedcode/data/rules/apache-2.0_359.RULE index c3479914087..c61715f1448 100644 --- a/src/licensedcode/data/rules/apache-2.0_359.RULE +++ b/src/licensedcode/data/rules/apache-2.0_359.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License is open source software under the [Apache License 2.0](LICENSE). Complete license and copyright information can be found in the source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_359.yml b/src/licensedcode/data/rules/apache-2.0_359.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_359.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_36.RULE b/src/licensedcode/data/rules/apache-2.0_36.RULE index 88fecd7eae1..9d0d47383be 100644 --- a/src/licensedcode/data/rules/apache-2.0_36.RULE +++ b/src/licensedcode/data/rules/apache-2.0_36.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + licenses this file to you 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: @@ -8,4 +15,4 @@ * 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. + * under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_36.yml b/src/licensedcode/data/rules/apache-2.0_36.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_360.RULE b/src/licensedcode/data/rules/apache-2.0_360.RULE index 8aa9be22a94..a81246c1743 100644 --- a/src/licensedcode/data/rules/apache-2.0_360.RULE +++ b/src/licensedcode/data/rules/apache-2.0_360.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + open source software under the [Apache License 2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_360.yml b/src/licensedcode/data/rules/apache-2.0_360.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_360.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_361.RULE b/src/licensedcode/data/rules/apache-2.0_361.RULE index 3c411c761ad..83a1aa0897c 100644 --- a/src/licensedcode/data/rules/apache-2.0_361.RULE +++ b/src/licensedcode/data/rules/apache-2.0_361.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Any code that you want to contribute to the project must be licensed under the [Apache License 2.0](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_361.yml b/src/licensedcode/data/rules/apache-2.0_361.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_361.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_362.RULE b/src/licensedcode/data/rules/apache-2.0_362.RULE index e5cd76219cd..aa8742dcd27 100644 --- a/src/licensedcode/data/rules/apache-2.0_362.RULE +++ b/src/licensedcode/data/rules/apache-2.0_362.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the [Apache License 2.0](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_362.yml b/src/licensedcode/data/rules/apache-2.0_362.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_362.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_363.RULE b/src/licensedcode/data/rules/apache-2.0_363.RULE index 9bea72bcee0..6e4fbaf7d3e 100644 --- a/src/licensedcode/data/rules/apache-2.0_363.RULE +++ b/src/licensedcode/data/rules/apache-2.0_363.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +--- + available under an Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_363.yml b/src/licensedcode/data/rules/apache-2.0_363.yml deleted file mode 100644 index 5ea59db1cbc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_363.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_364.RULE b/src/licensedcode/data/rules/apache-2.0_364.RULE index 18a98266b68..02a49469c62 100644 --- a/src/licensedcode/data/rules/apache-2.0_364.RULE +++ b/src/licensedcode/data/rules/apache-2.0_364.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + The software in this package is published under the terms of the Apache License, Version 2.0 (the "License"), a copy of which has been included with this distribution in the LICENSE.md file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_364.yml b/src/licensedcode/data/rules/apache-2.0_364.yml deleted file mode 100644 index 42d16c9b23b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_364.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/apache-2.0_365.RULE b/src/licensedcode/data/rules/apache-2.0_365.RULE index b809d06af4b..95b5daca0c4 100644 --- a/src/licensedcode/data/rules/apache-2.0_365.RULE +++ b/src/licensedcode/data/rules/apache-2.0_365.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + License The environment is licensed under the Apache License, Version 2.0 library is licensed under the Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_365.yml b/src/licensedcode/data/rules/apache-2.0_365.yml deleted file mode 100644 index 1adf7d7a3d3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_365.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/apache-2.0_366.RULE b/src/licensedcode/data/rules/apache-2.0_366.RULE index 55de4001331..d6ab690d040 100644 --- a/src/licensedcode/data/rules/apache-2.0_366.RULE +++ b/src/licensedcode/data/rules/apache-2.0_366.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License The environment is licensed under the Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_366.yml b/src/licensedcode/data/rules/apache-2.0_366.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_366.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_367.RULE b/src/licensedcode/data/rules/apache-2.0_367.RULE index fd24bbf8716..6903647a2f6 100644 --- a/src/licensedcode/data/rules/apache-2.0_367.RULE +++ b/src/licensedcode/data/rules/apache-2.0_367.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The environment is licensed under the Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_367.yml b/src/licensedcode/data/rules/apache-2.0_367.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_367.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_368.RULE b/src/licensedcode/data/rules/apache-2.0_368.RULE index 08e0ebd4fd1..cbced49f241 100644 --- a/src/licensedcode/data/rules/apache-2.0_368.RULE +++ b/src/licensedcode/data/rules/apache-2.0_368.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Released under the terms of the Apache license. See LICENSE for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_368.yml b/src/licensedcode/data/rules/apache-2.0_368.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_368.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_369.RULE b/src/licensedcode/data/rules/apache-2.0_369.RULE index 905601d446b..0ac47baeb1a 100644 --- a/src/licensedcode/data/rules/apache-2.0_369.RULE +++ b/src/licensedcode/data/rules/apache-2.0_369.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Released under the terms of the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_369.yml b/src/licensedcode/data/rules/apache-2.0_369.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_369.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_37.RULE b/src/licensedcode/data/rules/apache-2.0_37.RULE index 00d708cbf59..717ee9442a5 100644 --- a/src/licensedcode/data/rules/apache-2.0_37.RULE +++ b/src/licensedcode/data/rules/apache-2.0_37.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +--- + APACHE 2.0 Licensed under the Apache License, Version 20 \(the "License"\); @@ -10,5 +15,4 @@ 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 - +limitations under the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_37.yml b/src/licensedcode/data/rules/apache-2.0_37.yml deleted file mode 100644 index 487153a7721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_370.RULE b/src/licensedcode/data/rules/apache-2.0_370.RULE index 15bd08f4493..c5d08eb0a13 100644 --- a/src/licensedcode/data/rules/apache-2.0_370.RULE +++ b/src/licensedcode/data/rules/apache-2.0_370.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under the Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_370.yml b/src/licensedcode/data/rules/apache-2.0_370.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_371.RULE b/src/licensedcode/data/rules/apache-2.0_371.RULE index 02cd69a04e3..bbefdc37e77 100644 --- a/src/licensedcode/data/rules/apache-2.0_371.RULE +++ b/src/licensedcode/data/rules/apache-2.0_371.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed to you under the Apache 2.0 open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_371.yml b/src/licensedcode/data/rules/apache-2.0_371.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_371.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_372.RULE b/src/licensedcode/data/rules/apache-2.0_372.RULE index 4d4d55d346f..0b7221601d8 100644 --- a/src/licensedcode/data/rules/apache-2.0_372.RULE +++ b/src/licensedcode/data/rules/apache-2.0_372.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under the Apache 2.0 open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_372.yml b/src/licensedcode/data/rules/apache-2.0_372.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_372.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_373.RULE b/src/licensedcode/data/rules/apache-2.0_373.RULE index f8d43719b7f..d3662c23faa 100644 --- a/src/licensedcode/data/rules/apache-2.0_373.RULE +++ b/src/licensedcode/data/rules/apache-2.0_373.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + original work created at the University of Michigan, and is licensed under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_373.yml b/src/licensedcode/data/rules/apache-2.0_373.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_373.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_374.RULE b/src/licensedcode/data/rules/apache-2.0_374.RULE index 981f3182920..5444cea957f 100644 --- a/src/licensedcode/data/rules/apache-2.0_374.RULE +++ b/src/licensedcode/data/rules/apache-2.0_374.RULE @@ -1,2 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - copyright Regents of the University of Michigan +ignorable_holders: + - Regents of the University of Michigan +--- + All other files are copyright Regents of the University of Michigan, and fall under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_374.yml b/src/licensedcode/data/rules/apache-2.0_374.yml deleted file mode 100644 index faa287af20c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_374.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - copyright Regents of the University of Michigan -ignorable_holders: - - Regents of the University of Michigan diff --git a/src/licensedcode/data/rules/apache-2.0_375.RULE b/src/licensedcode/data/rules/apache-2.0_375.RULE index 9fe710eb8a5..4f962655130 100644 --- a/src/licensedcode/data/rules/apache-2.0_375.RULE +++ b/src/licensedcode/data/rules/apache-2.0_375.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses +--- + * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_375.yml b/src/licensedcode/data/rules/apache-2.0_375.yml deleted file mode 100644 index 5f5282c6f67..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_375.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/apache-2.0_376.RULE b/src/licensedcode/data/rules/apache-2.0_376.RULE index 514f5e89dcf..cb448f83c9e 100644 --- a/src/licensedcode/data/rules/apache-2.0_376.RULE +++ b/src/licensedcode/data/rules/apache-2.0_376.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + * This code is released under the * Apache License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_376.yml b/src/licensedcode/data/rules/apache-2.0_376.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_377.RULE b/src/licensedcode/data/rules/apache-2.0_377.RULE index 152c4fadf0a..eda0db64b9b 100644 --- a/src/licensedcode/data/rules/apache-2.0_377.RULE +++ b/src/licensedcode/data/rules/apache-2.0_377.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the Apache Software License, v.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_377.yml b/src/licensedcode/data/rules/apache-2.0_377.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_378.RULE b/src/licensedcode/data/rules/apache-2.0_378.RULE index 1ade6288e8e..545b3dc0fce 100644 --- a/src/licensedcode/data/rules/apache-2.0_378.RULE +++ b/src/licensedcode/data/rules/apache-2.0_378.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +--- + includes only Apache 2.0 licensed code: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_378.yml b/src/licensedcode/data/rules/apache-2.0_378.yml deleted file mode 100644 index 3b9c2faa046..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_378.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_379.RULE b/src/licensedcode/data/rules/apache-2.0_379.RULE index d067768b78c..e5d71e3906b 100644 --- a/src/licensedcode/data/rules/apache-2.0_379.RULE +++ b/src/licensedcode/data/rules/apache-2.0_379.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +--- + Apache 2.0 licensed code: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_379.yml b/src/licensedcode/data/rules/apache-2.0_379.yml deleted file mode 100644 index 3b9c2faa046..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_379.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_38.RULE b/src/licensedcode/data/rules/apache-2.0_38.RULE index 4e26a8bb909..db7813b89cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_38.RULE +++ b/src/licensedcode/data/rules/apache-2.0_38.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + LICENSE * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -11,4 +19,4 @@ LICENSE * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. -LICENSE +LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_38.yml b/src/licensedcode/data/rules/apache-2.0_38.yml deleted file mode 100644 index acfeb99266a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_380.RULE b/src/licensedcode/data/rules/apache-2.0_380.RULE index ca0ac63551f..88375bb96f4 100644 --- a/src/licensedcode/data/rules/apache-2.0_380.RULE +++ b/src/licensedcode/data/rules/apache-2.0_380.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright 1999-2005 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +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/ diff --git a/src/licensedcode/data/rules/apache-2.0_380.yml b/src/licensedcode/data/rules/apache-2.0_380.yml deleted file mode 100644 index 4ca524620e2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_380.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright 1999-2005 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_381.RULE b/src/licensedcode/data/rules/apache-2.0_381.RULE index f54b27e25f3..f7fc5db3efd 100644 --- a/src/licensedcode/data/rules/apache-2.0_381.RULE +++ b/src/licensedcode/data/rules/apache-2.0_381.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - APACHE-LICENSE-2.0.txt +--- + APACHE-LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_381.yml b/src/licensedcode/data/rules/apache-2.0_381.yml deleted file mode 100644 index 8c4638f3c53..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_381.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - APACHE-LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_382.RULE b/src/licensedcode/data/rules/apache-2.0_382.RULE index 467e017fb73..2bb3af4f8b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_382.RULE +++ b/src/licensedcode/data/rules/apache-2.0_382.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This product includes software from the Spring Framework, under the Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_382.yml b/src/licensedcode/data/rules/apache-2.0_382.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_382.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_383.RULE b/src/licensedcode/data/rules/apache-2.0_383.RULE index cea3e39b337..6b271f1a686 100644 --- a/src/licensedcode/data/rules/apache-2.0_383.RULE +++ b/src/licensedcode/data/rules/apache-2.0_383.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under the Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_383.yml b/src/licensedcode/data/rules/apache-2.0_383.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_383.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_384.RULE b/src/licensedcode/data/rules/apache-2.0_384.RULE index a655670528d..2dd615b1f98 100644 --- a/src/licensedcode/data/rules/apache-2.0_384.RULE +++ b/src/licensedcode/data/rules/apache-2.0_384.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This product includes software under the Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_384.yml b/src/licensedcode/data/rules/apache-2.0_384.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_384.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_385.RULE b/src/licensedcode/data/rules/apache-2.0_385.RULE index 2183e4c9749..c31b3b51477 100644 --- a/src/licensedcode/data/rules/apache-2.0_385.RULE +++ b/src/licensedcode/data/rules/apache-2.0_385.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the Apache License, version 2 ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_385.yml b/src/licensedcode/data/rules/apache-2.0_385.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_385.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_386.RULE b/src/licensedcode/data/rules/apache-2.0_386.RULE index 6098e931bc3..89299d81226 100644 --- a/src/licensedcode/data/rules/apache-2.0_386.RULE +++ b/src/licensedcode/data/rules/apache-2.0_386.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the Apache License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_386.yml b/src/licensedcode/data/rules/apache-2.0_386.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_387.RULE b/src/licensedcode/data/rules/apache-2.0_387.RULE index 606d76890a0..d3f51cfd371 100644 --- a/src/licensedcode/data/rules/apache-2.0_387.RULE +++ b/src/licensedcode/data/rules/apache-2.0_387.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under the Apache License, version 2 ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_387.yml b/src/licensedcode/data/rules/apache-2.0_387.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_388.RULE b/src/licensedcode/data/rules/apache-2.0_388.RULE index 1c35a00c9d8..2fec3017ad5 100644 --- a/src/licensedcode/data/rules/apache-2.0_388.RULE +++ b/src/licensedcode/data/rules/apache-2.0_388.RULE @@ -1 +1,7 @@ -ALv2 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +--- + +ALv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_388.yml b/src/licensedcode/data/rules/apache-2.0_388.yml deleted file mode 100644 index ac7cac7e3b0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_389.RULE b/src/licensedcode/data/rules/apache-2.0_389.RULE index c4e94a082e8..fd48ad93f6c 100644 --- a/src/licensedcode/data/rules/apache-2.0_389.RULE +++ b/src/licensedcode/data/rules/apache-2.0_389.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + the Apache License, version 2 ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_389.yml b/src/licensedcode/data/rules/apache-2.0_389.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_389.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_39.RULE b/src/licensedcode/data/rules/apache-2.0_39.RULE index a8d599679dd..a681fa6d481 100644 --- a/src/licensedcode/data/rules/apache-2.0_39.RULE +++ b/src/licensedcode/data/rules/apache-2.0_39.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2 http://www.apache.org/licenses/LICENSE-2.0 - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_39.yml b/src/licensedcode/data/rules/apache-2.0_39.yml deleted file mode 100644 index 71d6c3dde92..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_39.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_390.RULE b/src/licensedcode/data/rules/apache-2.0_390.RULE index dbcdbb545f4..1a6619dc0fa 100644 --- a/src/licensedcode/data/rules/apache-2.0_390.RULE +++ b/src/licensedcode/data/rules/apache-2.0_390.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache License, version 2 ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_390.yml b/src/licensedcode/data/rules/apache-2.0_390.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_390.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_391.RULE b/src/licensedcode/data/rules/apache-2.0_391.RULE index ae0d6b58c98..d039bfbddd3 100644 --- a/src/licensedcode/data/rules/apache-2.0_391.RULE +++ b/src/licensedcode/data/rules/apache-2.0_391.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_391.yml b/src/licensedcode/data/rules/apache-2.0_391.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_392.RULE b/src/licensedcode/data/rules/apache-2.0_392.RULE index 85dbae54dfb..4fba9f584d7 100644 --- a/src/licensedcode/data/rules/apache-2.0_392.RULE +++ b/src/licensedcode/data/rules/apache-2.0_392.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + the Apache License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_392.yml b/src/licensedcode/data/rules/apache-2.0_392.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_392.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_393.RULE b/src/licensedcode/data/rules/apache-2.0_393.RULE index 6eb0de34d87..adc5f9ffc35 100644 --- a/src/licensedcode/data/rules/apache-2.0_393.RULE +++ b/src/licensedcode/data/rules/apache-2.0_393.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://github.com/elastic/elasticsearch-perl/blob/master/LICENSE.txt +--- + This is free software, licensed under: https://github.com/elastic/elasticsearch-perl/blob/master/LICENSE.txt[The Apache License Version 2.0]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_393.yml b/src/licensedcode/data/rules/apache-2.0_393.yml deleted file mode 100644 index e6654199a51..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_393.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://github.com/elastic/elasticsearch-perl/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_394.RULE b/src/licensedcode/data/rules/apache-2.0_394.RULE index 92fd4d9ae80..db735b1997a 100644 --- a/src/licensedcode/data/rules/apache-2.0_394.RULE +++ b/src/licensedcode/data/rules/apache-2.0_394.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the diff --git a/src/licensedcode/data/rules/apache-2.0_394.yml b/src/licensedcode/data/rules/apache-2.0_394.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_394.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_395.RULE b/src/licensedcode/data/rules/apache-2.0_395.RULE index d690d8fb26f..04bf73b6d97 100644 --- a/src/licensedcode/data/rules/apache-2.0_395.RULE +++ b/src/licensedcode/data/rules/apache-2.0_395.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + This is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the diff --git a/src/licensedcode/data/rules/apache-2.0_395.yml b/src/licensedcode/data/rules/apache-2.0_395.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_395.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_396.RULE b/src/licensedcode/data/rules/apache-2.0_396.RULE index 7c129a97a4c..6d8e9e35c7e 100644 --- a/src/licensedcode/data/rules/apache-2.0_396.RULE +++ b/src/licensedcode/data/rules/apache-2.0_396.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the diff --git a/src/licensedcode/data/rules/apache-2.0_396.yml b/src/licensedcode/data/rules/apache-2.0_396.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_396.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_397.RULE b/src/licensedcode/data/rules/apache-2.0_397.RULE index a35791f861a..e80ee77646d 100644 --- a/src/licensedcode/data/rules/apache-2.0_397.RULE +++ b/src/licensedcode/data/rules/apache-2.0_397.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - http://www.eclipse.org/ +--- + License The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the diff --git a/src/licensedcode/data/rules/apache-2.0_397.yml b/src/licensedcode/data/rules/apache-2.0_397.yml deleted file mode 100644 index 57aa9d4f4b2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_397.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - http://www.eclipse.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_398.RULE b/src/licensedcode/data/rules/apache-2.0_398.RULE index 08872a7c7b2..3a448fa5f51 100644 --- a/src/licensedcode/data/rules/apache-2.0_398.RULE +++ b/src/licensedcode/data/rules/apache-2.0_398.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +--- + Apache License Version 2.0, January 2004 diff --git a/src/licensedcode/data/rules/apache-2.0_398.yml b/src/licensedcode/data/rules/apache-2.0_398.yml deleted file mode 100644 index 0e6d73199d8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_399.RULE b/src/licensedcode/data/rules/apache-2.0_399.RULE index 7df2b446d08..ad05cc3702e 100644 --- a/src/licensedcode/data/rules/apache-2.0_399.RULE +++ b/src/licensedcode/data/rules/apache-2.0_399.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + NOTICE file for use with the Apache License, Version 2.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_399.yml b/src/licensedcode/data/rules/apache-2.0_399.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_399.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_4.RULE b/src/licensedcode/data/rules/apache-2.0_4.RULE index bb8cfe3ad7c..494c064aa87 100644 --- a/src/licensedcode/data/rules/apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache License V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_4.yml b/src/licensedcode/data/rules/apache-2.0_4.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_40.RULE b/src/licensedcode/data/rules/apache-2.0_40.RULE index 1c9771a8e44..644352ec4e6 100644 --- a/src/licensedcode/data/rules/apache-2.0_40.RULE +++ b/src/licensedcode/data/rules/apache-2.0_40.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + name: The Apache Software License, Version 2.0 -url: http://www.apache.org/licenses/LICENSE-2.0.txt +url: http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_40.yml b/src/licensedcode/data/rules/apache-2.0_40.yml deleted file mode 100644 index 968e6205164..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_40.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_400.RULE b/src/licensedcode/data/rules/apache-2.0_400.RULE index d78d7778f92..f4b64426dbd 100644 --- a/src/licensedcode/data/rules/apache-2.0_400.RULE +++ b/src/licensedcode/data/rules/apache-2.0_400.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - NOTICE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed by under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_400.yml b/src/licensedcode/data/rules/apache-2.0_400.yml deleted file mode 100644 index 0e907cca0c8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_400.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - NOTICE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_401.RULE b/src/licensedcode/data/rules/apache-2.0_401.RULE index 01c620a5f29..6d1a515421e 100644 --- a/src/licensedcode/data/rules/apache-2.0_401.RULE +++ b/src/licensedcode/data/rules/apache-2.0_401.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - NOTICE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed by SAS under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_401.yml b/src/licensedcode/data/rules/apache-2.0_401.yml deleted file mode 100644 index 7160c0cd228..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_401.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - NOTICE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_402.RULE b/src/licensedcode/data/rules/apache-2.0_402.RULE index 075240e415c..fd0927f06e8 100644 --- a/src/licensedcode/data/rules/apache-2.0_402.RULE +++ b/src/licensedcode/data/rules/apache-2.0_402.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + system that is Apache 2.0 Licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_402.yml b/src/licensedcode/data/rules/apache-2.0_402.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_402.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_403.RULE b/src/licensedcode/data/rules/apache-2.0_403.RULE index a7b7d57f609..52aab2bcb0f 100644 --- a/src/licensedcode/data/rules/apache-2.0_403.RULE +++ b/src/licensedcode/data/rules/apache-2.0_403.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License is licensed under the Apache License, Version 2.0 (LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_403.yml b/src/licensedcode/data/rules/apache-2.0_403.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_403.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_404.RULE b/src/licensedcode/data/rules/apache-2.0_404.RULE index 2b2d5374b5a..ab35b8b8ed3 100644 --- a/src/licensedcode/data/rules/apache-2.0_404.RULE +++ b/src/licensedcode/data/rules/apache-2.0_404.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License licensed under the Apache License, Version 2.0 (LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_404.yml b/src/licensedcode/data/rules/apache-2.0_404.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_404.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_405.RULE b/src/licensedcode/data/rules/apache-2.0_405.RULE index 2ce4eef14bc..7dd8c93dd6f 100644 --- a/src/licensedcode/data/rules/apache-2.0_405.RULE +++ b/src/licensedcode/data/rules/apache-2.0_405.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + ## License licensed under the Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_405.yml b/src/licensedcode/data/rules/apache-2.0_405.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_405.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_406.RULE b/src/licensedcode/data/rules/apache-2.0_406.RULE index 2fe87187bf8..41f503de377 100644 --- a/src/licensedcode/data/rules/apache-2.0_406.RULE +++ b/src/licensedcode/data/rules/apache-2.0_406.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the Apache License, Version 2.0 (LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_406.yml b/src/licensedcode/data/rules/apache-2.0_406.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_406.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_407.RULE b/src/licensedcode/data/rules/apache-2.0_407.RULE index c71903f6a74..c5a9d0ca17c 100644 --- a/src/licensedcode/data/rules/apache-2.0_407.RULE +++ b/src/licensedcode/data/rules/apache-2.0_407.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + ## License is licensed under the Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_407.yml b/src/licensedcode/data/rules/apache-2.0_407.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_407.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_408.RULE b/src/licensedcode/data/rules/apache-2.0_408.RULE index cfb9891765b..626e4d20743 100644 --- a/src/licensedcode/data/rules/apache-2.0_408.RULE +++ b/src/licensedcode/data/rules/apache-2.0_408.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Open Source Software Licensed Under the Apache License, Version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_408.yml b/src/licensedcode/data/rules/apache-2.0_408.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_408.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_409.RULE b/src/licensedcode/data/rules/apache-2.0_409.RULE index da9c4f73b61..2df3382c378 100644 --- a/src/licensedcode/data/rules/apache-2.0_409.RULE +++ b/src/licensedcode/data/rules/apache-2.0_409.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Terms of the Apache License, Version 2.0: Apache License diff --git a/src/licensedcode/data/rules/apache-2.0_409.yml b/src/licensedcode/data/rules/apache-2.0_409.yml deleted file mode 100644 index 5f1a1048d24..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_409.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_40_1.RULE b/src/licensedcode/data/rules/apache-2.0_40_1.RULE index 3932b2a042b..0114ba8c01c 100644 --- a/src/licensedcode/data/rules/apache-2.0_40_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_40_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + The Apache Software License, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_40_1.yml b/src/licensedcode/data/rules/apache-2.0_40_1.yml deleted file mode 100644 index c203547eec7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_40_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_41.RULE b/src/licensedcode/data/rules/apache-2.0_41.RULE index 366a16ef187..617293c2299 100644 --- a/src/licensedcode/data/rules/apache-2.0_41.RULE +++ b/src/licensedcode/data/rules/apache-2.0_41.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + The APL v2.0: @@ -15,4 +26,4 @@ The APL v2.0: limitations under the License. On Debian systems, the complete text of the Apache License Version 2.0, -can be found in the /usr/share/common-licenses/Apache-2.0 file. +can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_41.yml b/src/licensedcode/data/rules/apache-2.0_41.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_41.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_410.RULE b/src/licensedcode/data/rules/apache-2.0_410.RULE index 2628dbc41bc..6eee6f9914b 100644 --- a/src/licensedcode/data/rules/apache-2.0_410.RULE +++ b/src/licensedcode/data/rules/apache-2.0_410.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_410.yml b/src/licensedcode/data/rules/apache-2.0_410.yml deleted file mode 100644 index e3fbfa35f7f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_410.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_411.RULE b/src/licensedcode/data/rules/apache-2.0_411.RULE index 446a2199cec..7aa5e8ff889 100644 --- a/src/licensedcode/data/rules/apache-2.0_411.RULE +++ b/src/licensedcode/data/rules/apache-2.0_411.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + libraries are under the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_411.yml b/src/licensedcode/data/rules/apache-2.0_411.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_411.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_412.RULE b/src/licensedcode/data/rules/apache-2.0_412.RULE index 458e85fc6ad..f982a469c31 100644 --- a/src/licensedcode/data/rules/apache-2.0_412.RULE +++ b/src/licensedcode/data/rules/apache-2.0_412.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + All code in this repository is licensed under Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_412.yml b/src/licensedcode/data/rules/apache-2.0_412.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_412.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_413.RULE b/src/licensedcode/data/rules/apache-2.0_413.RULE index c041a57e25a..6e0de00115a 100644 --- a/src/licensedcode/data/rules/apache-2.0_413.RULE +++ b/src/licensedcode/data/rules/apache-2.0_413.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_413.yml b/src/licensedcode/data/rules/apache-2.0_413.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_413.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_414.RULE b/src/licensedcode/data/rules/apache-2.0_414.RULE index 7f2d0889a97..33e304e1f91 100644 --- a/src/licensedcode/data/rules/apache-2.0_414.RULE +++ b/src/licensedcode/data/rules/apache-2.0_414.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +--- + This is released under the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_414.yml b/src/licensedcode/data/rules/apache-2.0_414.yml deleted file mode 100644 index 5ea59db1cbc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_414.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_415.RULE b/src/licensedcode/data/rules/apache-2.0_415.RULE index 93214cbcdf3..0ef15fc7073 100644 --- a/src/licensedcode/data/rules/apache-2.0_415.RULE +++ b/src/licensedcode/data/rules/apache-2.0_415.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +--- + released under the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_415.yml b/src/licensedcode/data/rules/apache-2.0_415.yml deleted file mode 100644 index 5ea59db1cbc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_415.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_416.RULE b/src/licensedcode/data/rules/apache-2.0_416.RULE index 4af4a7d9901..93baa4bfbce 100644 --- a/src/licensedcode/data/rules/apache-2.0_416.RULE +++ b/src/licensedcode/data/rules/apache-2.0_416.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +--- + under the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_416.yml b/src/licensedcode/data/rules/apache-2.0_416.yml deleted file mode 100644 index 5ea59db1cbc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_416.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_417.RULE b/src/licensedcode/data/rules/apache-2.0_417.RULE index c6de8ce968b..952ae19e1a8 100644 --- a/src/licensedcode/data/rules/apache-2.0_417.RULE +++ b/src/licensedcode/data/rules/apache-2.0_417.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +--- + the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_417.yml b/src/licensedcode/data/rules/apache-2.0_417.yml deleted file mode 100644 index 36d02f77612..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_417.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_418.RULE b/src/licensedcode/data/rules/apache-2.0_418.RULE index 9c47b2a85f2..01d3c2008ca 100644 --- a/src/licensedcode/data/rules/apache-2.0_418.RULE +++ b/src/licensedcode/data/rules/apache-2.0_418.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://raw.githubusercontent.com/ARMmbed/mbedtls/master/LICENSE +--- + License: https://raw.githubusercontent.com/ARMmbed/mbedtls/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_418.yml b/src/licensedcode/data/rules/apache-2.0_418.yml deleted file mode 100644 index d2ed15819c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_418.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://raw.githubusercontent.com/ARMmbed/mbedtls/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_419.RULE b/src/licensedcode/data/rules/apache-2.0_419.RULE index 97df0e645d3..08c61c4dd4e 100644 --- a/src/licensedcode/data/rules/apache-2.0_419.RULE +++ b/src/licensedcode/data/rules/apache-2.0_419.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - apache-2.0.txt +--- + Unless specifically indicated otherwise in a file, files are licensed under the Apache 2.0 license, as can be found in: apache-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_419.yml b/src/licensedcode/data/rules/apache-2.0_419.yml deleted file mode 100644 index 9cb88ef346d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_419.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - apache-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_42.RULE b/src/licensedcode/data/rules/apache-2.0_42.RULE index 5456b5aa739..984bcef59ea 100644 --- a/src/licensedcode/data/rules/apache-2.0_42.RULE +++ b/src/licensedcode/data/rules/apache-2.0_42.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_42.yml b/src/licensedcode/data/rules/apache-2.0_42.yml deleted file mode 100644 index 590b6cb7f81..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_420.RULE b/src/licensedcode/data/rules/apache-2.0_420.RULE index 70dda6ac9d3..8fb34383b3b 100644 --- a/src/licensedcode/data/rules/apache-2.0_420.RULE +++ b/src/licensedcode/data/rules/apache-2.0_420.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Terms of the Apache License Version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_420.yml b/src/licensedcode/data/rules/apache-2.0_420.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_420.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_421.RULE b/src/licensedcode/data/rules/apache-2.0_421.RULE index 3f0ba2b6684..cbbdd238f49 100644 --- a/src/licensedcode/data/rules/apache-2.0_421.RULE +++ b/src/licensedcode/data/rules/apache-2.0_421.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Software Licensed under the Apache License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_421.yml b/src/licensedcode/data/rules/apache-2.0_421.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_421.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_422.RULE b/src/licensedcode/data/rules/apache-2.0_422.RULE index 85600f15f66..7506f82e792 100644 --- a/src/licensedcode/data/rules/apache-2.0_422.RULE +++ b/src/licensedcode/data/rules/apache-2.0_422.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License version 2.0 Apache License diff --git a/src/licensedcode/data/rules/apache-2.0_422.yml b/src/licensedcode/data/rules/apache-2.0_422.yml deleted file mode 100644 index 61103d2922a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_422.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_423.RULE b/src/licensedcode/data/rules/apache-2.0_423.RULE index affe3f434c5..814732d2804 100644 --- a/src/licensedcode/data/rules/apache-2.0_423.RULE +++ b/src/licensedcode/data/rules/apache-2.0_423.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_423.yml b/src/licensedcode/data/rules/apache-2.0_423.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_423.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_424.RULE b/src/licensedcode/data/rules/apache-2.0_424.RULE index d1aba0e087a..027bf98d6e3 100644 --- a/src/licensedcode/data/rules/apache-2.0_424.RULE +++ b/src/licensedcode/data/rules/apache-2.0_424.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + The Apache 2 license (given in full in [LICENSE.txt](LICENSE.txt)) applies to all code in this repository \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_424.yml b/src/licensedcode/data/rules/apache-2.0_424.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_424.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_425.RULE b/src/licensedcode/data/rules/apache-2.0_425.RULE index 7500812f965..cee278250c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_425.RULE +++ b/src/licensedcode/data/rules/apache-2.0_425.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/aosp_license.txt +--- + [aosp]: third_party/aosp_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_425.yml b/src/licensedcode/data/rules/apache-2.0_425.yml deleted file mode 100644 index dd8aa3355a3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_425.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/aosp_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_426.RULE b/src/licensedcode/data/rules/apache-2.0_426.RULE index addeff3067e..00c881b067f 100644 --- a/src/licensedcode/data/rules/apache-2.0_426.RULE +++ b/src/licensedcode/data/rules/apache-2.0_426.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/aosp_license.txt +--- + License: Apache 2 ([license/third_party/aosp_license.txt][aosp]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_426.yml b/src/licensedcode/data/rules/apache-2.0_426.yml deleted file mode 100644 index 5406f884866..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_426.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/aosp_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_427.RULE b/src/licensedcode/data/rules/apache-2.0_427.RULE index c892403e2fd..a8cb87e12ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_427.RULE +++ b/src/licensedcode/data/rules/apache-2.0_427.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/closure-compiler_LICENSE.txt +--- + [closure-compiler]: third_party/closure-compiler_LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_427.yml b/src/licensedcode/data/rules/apache-2.0_427.yml deleted file mode 100644 index 01a946cfa10..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_427.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/closure-compiler_LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_428.RULE b/src/licensedcode/data/rules/apache-2.0_428.RULE index 8820b535162..56d1bbafd47 100644 --- a/src/licensedcode/data/rules/apache-2.0_428.RULE +++ b/src/licensedcode/data/rules/apache-2.0_428.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/closure-compiler_LICENSE.txt +--- + License: Apache 2 ([license/third_party/closure-compiler_LICENSE.txt][closure-compiler]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_428.yml b/src/licensedcode/data/rules/apache-2.0_428.yml deleted file mode 100644 index 3d77cfe667f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_428.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/closure-compiler_LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_429.RULE b/src/licensedcode/data/rules/apache-2.0_429.RULE index 6eed8006719..ab0295e3c58 100644 --- a/src/licensedcode/data/rules/apache-2.0_429.RULE +++ b/src/licensedcode/data/rules/apache-2.0_429.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/gradle_license.txt +--- + [gradle]: third_party/gradle_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_429.yml b/src/licensedcode/data/rules/apache-2.0_429.yml deleted file mode 100644 index d0feb0796a9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_429.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/gradle_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_43.RULE b/src/licensedcode/data/rules/apache-2.0_43.RULE index 8cab7e29e63..cfaae7b2017 100644 --- a/src/licensedcode/data/rules/apache-2.0_43.RULE +++ b/src/licensedcode/data/rules/apache-2.0_43.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +22,4 @@ limitations under the License. On Debian systems, the complete text of Apache License, Version 2.0 -can be found in /usr/share/common-licenses/Apache-2.0 file. +can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_43.yml b/src/licensedcode/data/rules/apache-2.0_43.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_43.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_430.RULE b/src/licensedcode/data/rules/apache-2.0_430.RULE index 5e29fc69a2f..766f5fb7f90 100644 --- a/src/licensedcode/data/rules/apache-2.0_430.RULE +++ b/src/licensedcode/data/rules/apache-2.0_430.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/gradle_license.txt +--- + License: Apache 2 ([license/third_party/gradle_license.txt][gradle]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_430.yml b/src/licensedcode/data/rules/apache-2.0_430.yml deleted file mode 100644 index 524135d4f7d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_430.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/gradle_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_431.RULE b/src/licensedcode/data/rules/apache-2.0_431.RULE index 97610d10bbf..b4595c6326e 100644 --- a/src/licensedcode/data/rules/apache-2.0_431.RULE +++ b/src/licensedcode/data/rules/apache-2.0_431.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/guava_license.txt +--- + License: Apache 2 ([license/third_party/guava_license.txt][guava]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_431.yml b/src/licensedcode/data/rules/apache-2.0_431.yml deleted file mode 100644 index a06efff8c2f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_431.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/guava_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_432.RULE b/src/licensedcode/data/rules/apache-2.0_432.RULE index 22a34064e05..4d42bf9e41a 100644 --- a/src/licensedcode/data/rules/apache-2.0_432.RULE +++ b/src/licensedcode/data/rules/apache-2.0_432.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/guava_license.txt +--- + [guava]: third_party/guava_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_432.yml b/src/licensedcode/data/rules/apache-2.0_432.yml deleted file mode 100644 index 2f801842c8a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_432.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/guava_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_433.RULE b/src/licensedcode/data/rules/apache-2.0_433.RULE index a68309c11f3..4a471ebfdc7 100644 --- a/src/licensedcode/data/rules/apache-2.0_433.RULE +++ b/src/licensedcode/data/rules/apache-2.0_433.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/gwt_license.txt +--- + License: Apache 2 ([license/third_party/gwt_license.txt][gwt]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_433.yml b/src/licensedcode/data/rules/apache-2.0_433.yml deleted file mode 100644 index 9b33308db4c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_433.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/gwt_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_434.RULE b/src/licensedcode/data/rules/apache-2.0_434.RULE index c138ea8f2c2..50894b22448 100644 --- a/src/licensedcode/data/rules/apache-2.0_434.RULE +++ b/src/licensedcode/data/rules/apache-2.0_434.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/gwt_license.txt +--- + [gwt]: third_party/gwt_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_434.yml b/src/licensedcode/data/rules/apache-2.0_434.yml deleted file mode 100644 index b4e523b2093..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_434.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/gwt_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_435.RULE b/src/licensedcode/data/rules/apache-2.0_435.RULE index cfc0257e79f..cc3a8221140 100644 --- a/src/licensedcode/data/rules/apache-2.0_435.RULE +++ b/src/licensedcode/data/rules/apache-2.0_435.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/testdata/dagger_license.txt +--- + [dagger]: third_party/testdata/dagger_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_435.yml b/src/licensedcode/data/rules/apache-2.0_435.yml deleted file mode 100644 index e80b30e0e8e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_435.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/testdata/dagger_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_436.RULE b/src/licensedcode/data/rules/apache-2.0_436.RULE index 6511e3c5976..c09d38cf3ee 100644 --- a/src/licensedcode/data/rules/apache-2.0_436.RULE +++ b/src/licensedcode/data/rules/apache-2.0_436.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/testdata/dagger_license.txt +--- + License: Apache 2 ([license/third_party/testdata/dagger_license.txt][dagger]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_436.yml b/src/licensedcode/data/rules/apache-2.0_436.yml deleted file mode 100644 index fe274b73751..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_436.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/testdata/dagger_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_437.RULE b/src/licensedcode/data/rules/apache-2.0_437.RULE index 7b33267f89d..25318d96127 100644 --- a/src/licensedcode/data/rules/apache-2.0_437.RULE +++ b/src/licensedcode/data/rules/apache-2.0_437.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/testdata/rxjava_license.txt +--- + License: Apache 2 ([license/third_party/testdata/rxjava_license.txt][rxjava]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_437.yml b/src/licensedcode/data/rules/apache-2.0_437.yml deleted file mode 100644 index 5eec40c0c71..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_437.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/testdata/rxjava_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_438.RULE b/src/licensedcode/data/rules/apache-2.0_438.RULE index e07067075b8..aa2306d142f 100644 --- a/src/licensedcode/data/rules/apache-2.0_438.RULE +++ b/src/licensedcode/data/rules/apache-2.0_438.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/testdata/rxjava_license.txt +--- + [rxjava]: third_party/testdata/rxjava_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_438.yml b/src/licensedcode/data/rules/apache-2.0_438.yml deleted file mode 100644 index 1326c16a3e6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_438.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/testdata/rxjava_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_439.RULE b/src/licensedcode/data/rules/apache-2.0_439.RULE index 2f83b71d6cc..11e3b9cbb71 100644 --- a/src/licensedcode/data/rules/apache-2.0_439.RULE +++ b/src/licensedcode/data/rules/apache-2.0_439.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/testdata/spring_license.txt +--- + License: Apache 2 ([license/third_party/testdata/spring_license.txt][spring]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_439.yml b/src/licensedcode/data/rules/apache-2.0_439.yml deleted file mode 100644 index 59371518ae9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_439.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/testdata/spring_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_44.RULE b/src/licensedcode/data/rules/apache-2.0_44.RULE index 66f6141adea..ae4eab366a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_44.RULE +++ b/src/licensedcode/data/rules/apache-2.0_44.RULE @@ -1,4 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: Educational Community License Variant +--- + * This software was submitted by Cisco Systems to the Apache Group in July * 1997. Future revisions and derivatives of this source code must * acknowledge Cisco Systems as the original contributor of this module. - * All other licensing and usage conditions are those of the Apache Group. + * All other licensing and usage conditions are those of the Apache Group. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_44.yml b/src/licensedcode/data/rules/apache-2.0_44.yml deleted file mode 100644 index d20487313bc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: Educational Community License Variant diff --git a/src/licensedcode/data/rules/apache-2.0_440.RULE b/src/licensedcode/data/rules/apache-2.0_440.RULE index b54e03bc39d..272d4a1d06a 100644 --- a/src/licensedcode/data/rules/apache-2.0_440.RULE +++ b/src/licensedcode/data/rules/apache-2.0_440.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/testdata/spring_license.txt +--- + [spring]: third_party/testdata/spring_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_440.yml b/src/licensedcode/data/rules/apache-2.0_440.yml deleted file mode 100644 index 835f3a4522d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_440.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/testdata/spring_license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_441.RULE b/src/licensedcode/data/rules/apache-2.0_441.RULE index 84834fd2eed..c3d21eec1e7 100644 --- a/src/licensedcode/data/rules/apache-2.0_441.RULE +++ b/src/licensedcode/data/rules/apache-2.0_441.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + distributed under the Apache 2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_441.yml b/src/licensedcode/data/rules/apache-2.0_441.yml deleted file mode 100644 index 2a032ed2993..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_441.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_442.RULE b/src/licensedcode/data/rules/apache-2.0_442.RULE index d5981fde6da..07fd11df5d0 100644 --- a/src/licensedcode/data/rules/apache-2.0_442.RULE +++ b/src/licensedcode/data/rules/apache-2.0_442.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Use of this source code is governed by the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_442.yml b/src/licensedcode/data/rules/apache-2.0_442.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_442.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_443.RULE b/src/licensedcode/data/rules/apache-2.0_443.RULE index e325cf76e10..cc00eb0dde8 100644 --- a/src/licensedcode/data/rules/apache-2.0_443.RULE +++ b/src/licensedcode/data/rules/apache-2.0_443.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +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/ diff --git a/src/licensedcode/data/rules/apache-2.0_443.yml b/src/licensedcode/data/rules/apache-2.0_443.yml deleted file mode 100644 index af313582d5a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_443.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_444.RULE b/src/licensedcode/data/rules/apache-2.0_444.RULE index 31de28fe360..d0338368668 100644 --- a/src/licensedcode/data/rules/apache-2.0_444.RULE +++ b/src/licensedcode/data/rules/apache-2.0_444.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + is released under the [Apache License, Version 2.0]. [Apache License, Version 2.0]:LICENSE-APACHE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_444.yml b/src/licensedcode/data/rules/apache-2.0_444.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_444.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_445.RULE b/src/licensedcode/data/rules/apache-2.0_445.RULE index f8a26e62853..9856b8ae765 100644 --- a/src/licensedcode/data/rules/apache-2.0_445.RULE +++ b/src/licensedcode/data/rules/apache-2.0_445.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License AMP HTML is licensed under the [Apache License, Version 2.0](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_445.yml b/src/licensedcode/data/rules/apache-2.0_445.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_445.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_446.RULE b/src/licensedcode/data/rules/apache-2.0_446.RULE index 32c7b7a80e7..c08ebb1efdb 100644 --- a/src/licensedcode/data/rules/apache-2.0_446.RULE +++ b/src/licensedcode/data/rules/apache-2.0_446.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat +--- + (https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat ](http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_446.yml b/src/licensedcode/data/rules/apache-2.0_446.yml deleted file mode 100644 index f095d9c6065..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_446.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat diff --git a/src/licensedcode/data/rules/apache-2.0_447.RULE b/src/licensedcode/data/rules/apache-2.0_447.RULE index 5b9aa7f5449..7721289ae5c 100644 --- a/src/licensedcode/data/rules/apache-2.0_447.RULE +++ b/src/licensedcode/data/rules/apache-2.0_447.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg +--- + (https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_447.yml b/src/licensedcode/data/rules/apache-2.0_447.yml deleted file mode 100644 index f4f48cead7b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_447.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg diff --git a/src/licensedcode/data/rules/apache-2.0_448.RULE b/src/licensedcode/data/rules/apache-2.0_448.RULE index a36f67ac008..f9d64076298 100644 --- a/src/licensedcode/data/rules/apache-2.0_448.RULE +++ b/src/licensedcode/data/rules/apache-2.0_448.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache 2.0 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_448.yml b/src/licensedcode/data/rules/apache-2.0_448.yml deleted file mode 100644 index d0f17c9ef33..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_448.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_449.RULE b/src/licensedcode/data/rules/apache-2.0_449.RULE index ddf7c798675..1bd83b3a47d 100644 --- a/src/licensedcode/data/rules/apache-2.0_449.RULE +++ b/src/licensedcode/data/rules/apache-2.0_449.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Apache 2.0 2004 https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_449.yml b/src/licensedcode/data/rules/apache-2.0_449.yml deleted file mode 100644 index 537a90d6cfc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_449.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_45.RULE b/src/licensedcode/data/rules/apache-2.0_45.RULE index 682118379fc..71469bb2770 100644 --- a/src/licensedcode/data/rules/apache-2.0_45.RULE +++ b/src/licensedcode/data/rules/apache-2.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + and licensed under the Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_45.yml b/src/licensedcode/data/rules/apache-2.0_45.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_450.RULE b/src/licensedcode/data/rules/apache-2.0_450.RULE index 78a02160a2a..17fa3877515 100644 --- a/src/licensedcode/data/rules/apache-2.0_450.RULE +++ b/src/licensedcode/data/rules/apache-2.0_450.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: [Apache v2][Apache v2] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_450.yml b/src/licensedcode/data/rules/apache-2.0_450.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_450.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_451.RULE b/src/licensedcode/data/rules/apache-2.0_451.RULE index 2281f609ed1..1ff3e1c01aa 100644 --- a/src/licensedcode/data/rules/apache-2.0_451.RULE +++ b/src/licensedcode/data/rules/apache-2.0_451.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + [Apache v2]: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_451.yml b/src/licensedcode/data/rules/apache-2.0_451.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_451.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_452.RULE b/src/licensedcode/data/rules/apache-2.0_452.RULE index 4af95e31fbb..c033e9b4c3f 100644 --- a/src/licensedcode/data/rules/apache-2.0_452.RULE +++ b/src/licensedcode/data/rules/apache-2.0_452.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses +--- + `Apache-2.0` - [Apache, Version 2.0](http://www.apache.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_452.yml b/src/licensedcode/data/rules/apache-2.0_452.yml deleted file mode 100644 index f626a7620b3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_452.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/apache-2.0_453.RULE b/src/licensedcode/data/rules/apache-2.0_453.RULE index f82f8ca1dc1..abb7f42e6c9 100644 --- a/src/licensedcode/data/rules/apache-2.0_453.RULE +++ b/src/licensedcode/data/rules/apache-2.0_453.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + ## License source code is licensed under the Apache Licence, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_453.yml b/src/licensedcode/data/rules/apache-2.0_453.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_453.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_454.RULE b/src/licensedcode/data/rules/apache-2.0_454.RULE index 811748cf483..1665b530f22 100644 --- a/src/licensedcode/data/rules/apache-2.0_454.RULE +++ b/src/licensedcode/data/rules/apache-2.0_454.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + source code is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_454.yml b/src/licensedcode/data/rules/apache-2.0_454.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_454.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_455.RULE b/src/licensedcode/data/rules/apache-2.0_455.RULE index ba63f29f828..c53ab368329 100644 --- a/src/licensedcode/data/rules/apache-2.0_455.RULE +++ b/src/licensedcode/data/rules/apache-2.0_455.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + source code is licensed under the Apache Licence, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_455.yml b/src/licensedcode/data/rules/apache-2.0_455.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_455.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_456.RULE b/src/licensedcode/data/rules/apache-2.0_456.RULE index 17db1114b64..615c84e59e6 100644 --- a/src/licensedcode/data/rules/apache-2.0_456.RULE +++ b/src/licensedcode/data/rules/apache-2.0_456.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + ## License source code is licensed under the Apache Licence, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_456.yml b/src/licensedcode/data/rules/apache-2.0_456.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_456.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_457.RULE b/src/licensedcode/data/rules/apache-2.0_457.RULE index 0115f6b5733..11cb16b4cd4 100644 --- a/src/licensedcode/data/rules/apache-2.0_457.RULE +++ b/src/licensedcode/data/rules/apache-2.0_457.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + source code is licensed under the Apache Licence, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_457.yml b/src/licensedcode/data/rules/apache-2.0_457.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_457.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_458.RULE b/src/licensedcode/data/rules/apache-2.0_458.RULE index f3963641c86..73f87275f7b 100644 --- a/src/licensedcode/data/rules/apache-2.0_458.RULE +++ b/src/licensedcode/data/rules/apache-2.0_458.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. . diff --git a/src/licensedcode/data/rules/apache-2.0_458.yml b/src/licensedcode/data/rules/apache-2.0_458.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_458.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_459.RULE b/src/licensedcode/data/rules/apache-2.0_459.RULE index d40e8fee8cd..e997bad5c8a 100644 --- a/src/licensedcode/data/rules/apache-2.0_459.RULE +++ b/src/licensedcode/data/rules/apache-2.0_459.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_459.yml b/src/licensedcode/data/rules/apache-2.0_459.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_459.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_46.RULE b/src/licensedcode/data/rules/apache-2.0_46.RULE index e930263b6b0..8b7a9a6db48 100644 --- a/src/licensedcode/data/rules/apache-2.0_46.RULE +++ b/src/licensedcode/data/rules/apache-2.0_46.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/apache2.0.php +--- + // The Apache License v2.0 is available at -// http://www.opensource.org/licenses/apache2.0.php +// http://www.opensource.org/licenses/apache2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_46.yml b/src/licensedcode/data/rules/apache-2.0_46.yml deleted file mode 100644 index c945e305476..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_46.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/apache2.0.php diff --git a/src/licensedcode/data/rules/apache-2.0_460.RULE b/src/licensedcode/data/rules/apache-2.0_460.RULE index c22a7cf4940..9f163af86b5 100644 --- a/src/licensedcode/data/rules/apache-2.0_460.RULE +++ b/src/licensedcode/data/rules/apache-2.0_460.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the Apache License Version 2.0. See the file "LICENSE" for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_460.yml b/src/licensedcode/data/rules/apache-2.0_460.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_460.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_461.RULE b/src/licensedcode/data/rules/apache-2.0_461.RULE index 324f047eb47..697f3ac909f 100644 --- a/src/licensedcode/data/rules/apache-2.0_461.RULE +++ b/src/licensedcode/data/rules/apache-2.0_461.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Apache 2.0-licensed, open-source \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_461.yml b/src/licensedcode/data/rules/apache-2.0_461.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_461.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_462.RULE b/src/licensedcode/data/rules/apache-2.0_462.RULE index 2b7b9824e24..6121fc55b9a 100644 --- a/src/licensedcode/data/rules/apache-2.0_462.RULE +++ b/src/licensedcode/data/rules/apache-2.0_462.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_462.yml b/src/licensedcode/data/rules/apache-2.0_462.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_462.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_463.RULE b/src/licensedcode/data/rules/apache-2.0_463.RULE index 6af8cf2d22c..c8514502035 100644 --- a/src/licensedcode/data/rules/apache-2.0_463.RULE +++ b/src/licensedcode/data/rules/apache-2.0_463.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the Apache License, Version 2.0. See [LICENSE] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_463.yml b/src/licensedcode/data/rules/apache-2.0_463.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_463.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_464.RULE b/src/licensedcode/data/rules/apache-2.0_464.RULE index 36399caa860..26b95d84fd0 100644 --- a/src/licensedcode/data/rules/apache-2.0_464.RULE +++ b/src/licensedcode/data/rules/apache-2.0_464.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the Apache License, Version 2.0. See [LICENSE] for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_464.yml b/src/licensedcode/data/rules/apache-2.0_464.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_464.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_465.RULE b/src/licensedcode/data/rules/apache-2.0_465.RULE index d5426983279..118eeaab4d0 100644 --- a/src/licensedcode/data/rules/apache-2.0_465.RULE +++ b/src/licensedcode/data/rules/apache-2.0_465.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the Apache License, Version 2.0. See [LICENSE] for the license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_465.yml b/src/licensedcode/data/rules/apache-2.0_465.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_465.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_466.RULE b/src/licensedcode/data/rules/apache-2.0_466.RULE index 7544d15f2b9..11aaa5a1379 100644 --- a/src/licensedcode/data/rules/apache-2.0_466.RULE +++ b/src/licensedcode/data/rules/apache-2.0_466.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-Apache%202-4EB1BA.svg + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + [![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_466.yml b/src/licensedcode/data/rules/apache-2.0_466.yml deleted file mode 100644 index 43ac9676293..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_466.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-Apache%202-4EB1BA.svg - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_467.RULE b/src/licensedcode/data/rules/apache-2.0_467.RULE index 593f022025e..a2b3b93b9c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_467.RULE +++ b/src/licensedcode/data/rules/apache-2.0_467.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + # License [Apache License v2](http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_467.yml b/src/licensedcode/data/rules/apache-2.0_467.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_467.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_468.RULE b/src/licensedcode/data/rules/apache-2.0_468.RULE index ee090d3b44e..daa4de24dbc 100644 --- a/src/licensedcode/data/rules/apache-2.0_468.RULE +++ b/src/licensedcode/data/rules/apache-2.0_468.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + [Apache License v2](http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_468.yml b/src/licensedcode/data/rules/apache-2.0_468.yml deleted file mode 100644 index cb93143f8db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_468.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_469.RULE b/src/licensedcode/data/rules/apache-2.0_469.RULE index 90189c47120..06cc4202eb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_469.RULE +++ b/src/licensedcode/data/rules/apache-2.0_469.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + ### *License* released under the [Apache 2.0 license](license.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_469.yml b/src/licensedcode/data/rules/apache-2.0_469.yml deleted file mode 100644 index a0556153e9a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_469.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_47.RULE b/src/licensedcode/data/rules/apache-2.0_47.RULE index 9351393a3c1..6837f439b92 100644 --- a/src/licensedcode/data/rules/apache-2.0_47.RULE +++ b/src/licensedcode/data/rules/apache-2.0_47.RULE @@ -1,4 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Currently it has been re-released under the Apache License, Version 2.0. Details of the Apache License, Version 2.0 can be found at: -http://www.apache.org/licenses/ +http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_47.yml b/src/licensedcode/data/rules/apache-2.0_47.yml deleted file mode 100644 index c2f2fa12758..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_47.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_470.RULE b/src/licensedcode/data/rules/apache-2.0_470.RULE index 384dfd43813..5951fdf1163 100644 --- a/src/licensedcode/data/rules/apache-2.0_470.RULE +++ b/src/licensedcode/data/rules/apache-2.0_470.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License Licensed under an [Apache-2](/LICENSE) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_470.yml b/src/licensedcode/data/rules/apache-2.0_470.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_470.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_471.RULE b/src/licensedcode/data/rules/apache-2.0_471.RULE index c6b4f16fdc1..e549a9bc3f1 100644 --- a/src/licensedcode/data/rules/apache-2.0_471.RULE +++ b/src/licensedcode/data/rules/apache-2.0_471.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under an [Apache-2](/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_471.yml b/src/licensedcode/data/rules/apache-2.0_471.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_471.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_472.RULE b/src/licensedcode/data/rules/apache-2.0_472.RULE index fe950f78552..fa5169516d5 100644 --- a/src/licensedcode/data/rules/apache-2.0_472.RULE +++ b/src/licensedcode/data/rules/apache-2.0_472.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License Licensed under an [Apache-2] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_472.yml b/src/licensedcode/data/rules/apache-2.0_472.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_472.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_473.RULE b/src/licensedcode/data/rules/apache-2.0_473.RULE index b52ad1cf3b4..14fa2081cf9 100644 --- a/src/licensedcode/data/rules/apache-2.0_473.RULE +++ b/src/licensedcode/data/rules/apache-2.0_473.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under an [Apache-2] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_473.yml b/src/licensedcode/data/rules/apache-2.0_473.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_473.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_474.RULE b/src/licensedcode/data/rules/apache-2.0_474.RULE index 5c04a0ec6ea..2b1b415762d 100644 --- a/src/licensedcode/data/rules/apache-2.0_474.RULE +++ b/src/licensedcode/data/rules/apache-2.0_474.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_474.yml b/src/licensedcode/data/rules/apache-2.0_474.yml deleted file mode 100644 index dabac6dc7d4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_474.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_475.RULE b/src/licensedcode/data/rules/apache-2.0_475.RULE index 410a10690bf..82075ed5561 100644 --- a/src/licensedcode/data/rules/apache-2.0_475.RULE +++ b/src/licensedcode/data/rules/apache-2.0_475.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_475.yml b/src/licensedcode/data/rules/apache-2.0_475.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_475.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_476.RULE b/src/licensedcode/data/rules/apache-2.0_476.RULE index c581f2118ac..499a02ad364 100644 --- a/src/licensedcode/data/rules/apache-2.0_476.RULE +++ b/src/licensedcode/data/rules/apache-2.0_476.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_476.yml b/src/licensedcode/data/rules/apache-2.0_476.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_476.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_477.RULE b/src/licensedcode/data/rules/apache-2.0_477.RULE index 69764023359..4bfa7f474d1 100644 --- a/src/licensedcode/data/rules/apache-2.0_477.RULE +++ b/src/licensedcode/data/rules/apache-2.0_477.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + the Apache License, Version 2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_477.yml b/src/licensedcode/data/rules/apache-2.0_477.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_477.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_478.RULE b/src/licensedcode/data/rules/apache-2.0_478.RULE index f1a185eb457..b2e4b2ef432 100644 --- a/src/licensedcode/data/rules/apache-2.0_478.RULE +++ b/src/licensedcode/data/rules/apache-2.0_478.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + under the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_478.yml b/src/licensedcode/data/rules/apache-2.0_478.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_478.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_479.RULE b/src/licensedcode/data/rules/apache-2.0_479.RULE index 123c44f8e98..868c247d4e5 100644 --- a/src/licensedcode/data/rules/apache-2.0_479.RULE +++ b/src/licensedcode/data/rules/apache-2.0_479.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_479.yml b/src/licensedcode/data/rules/apache-2.0_479.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_479.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_48.RULE b/src/licensedcode/data/rules/apache-2.0_48.RULE index 9620d5bcfce..916f1853b0b 100644 --- a/src/licensedcode/data/rules/apache-2.0_48.RULE +++ b/src/licensedcode/data/rules/apache-2.0_48.RULE @@ -1 +1,7 @@ -Apache License, Version 2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + +Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_48.yml b/src/licensedcode/data/rules/apache-2.0_48.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_480.RULE b/src/licensedcode/data/rules/apache-2.0_480.RULE index 28277b0a1e3..b142a596a53 100644 --- a/src/licensedcode/data/rules/apache-2.0_480.RULE +++ b/src/licensedcode/data/rules/apache-2.0_480.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + under the Apache License, Version 2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_480.yml b/src/licensedcode/data/rules/apache-2.0_480.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_480.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_481.RULE b/src/licensedcode/data/rules/apache-2.0_481.RULE index 419e1681b70..d7b87c1faf6 100644 --- a/src/licensedcode/data/rules/apache-2.0_481.RULE +++ b/src/licensedcode/data/rules/apache-2.0_481.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_481.yml b/src/licensedcode/data/rules/apache-2.0_481.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_481.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_482.RULE b/src/licensedcode/data/rules/apache-2.0_482.RULE index 868391c9e14..19ebe870a33 100644 --- a/src/licensedcode/data/rules/apache-2.0_482.RULE +++ b/src/licensedcode/data/rules/apache-2.0_482.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache License, Version 2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_482.yml b/src/licensedcode/data/rules/apache-2.0_482.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_482.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_483.RULE b/src/licensedcode/data/rules/apache-2.0_483.RULE index fcc0620ffe3..7176c28b847 100644 --- a/src/licensedcode/data/rules/apache-2.0_483.RULE +++ b/src/licensedcode/data/rules/apache-2.0_483.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache Licence (apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_483.yml b/src/licensedcode/data/rules/apache-2.0_483.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_483.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_484.RULE b/src/licensedcode/data/rules/apache-2.0_484.RULE index 45751c42f03..7dd387e4dd6 100644 --- a/src/licensedcode/data/rules/apache-2.0_484.RULE +++ b/src/licensedcode/data/rules/apache-2.0_484.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + source code is licensed under the Apache Licence 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_484.yml b/src/licensedcode/data/rules/apache-2.0_484.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_484.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_485.RULE b/src/licensedcode/data/rules/apache-2.0_485.RULE index 2b17b407f41..e03a9312a4c 100644 --- a/src/licensedcode/data/rules/apache-2.0_485.RULE +++ b/src/licensedcode/data/rules/apache-2.0_485.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Apache Licence v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_485.yml b/src/licensedcode/data/rules/apache-2.0_485.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_485.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_486.RULE b/src/licensedcode/data/rules/apache-2.0_486.RULE index d21b4c80867..648ffaeb3f0 100644 --- a/src/licensedcode/data/rules/apache-2.0_486.RULE +++ b/src/licensedcode/data/rules/apache-2.0_486.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Apache Licence v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_486.yml b/src/licensedcode/data/rules/apache-2.0_486.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_486.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_487.RULE b/src/licensedcode/data/rules/apache-2.0_487.RULE index 3776ffce8d4..56e26206d34 100644 --- a/src/licensedcode/data/rules/apache-2.0_487.RULE +++ b/src/licensedcode/data/rules/apache-2.0_487.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Apache Licence, Version 2.0 (the "License"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_487.yml b/src/licensedcode/data/rules/apache-2.0_487.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_487.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_488.RULE b/src/licensedcode/data/rules/apache-2.0_488.RULE index d9f3fe8ffe1..e3e16b29ed5 100644 --- a/src/licensedcode/data/rules/apache-2.0_488.RULE +++ b/src/licensedcode/data/rules/apache-2.0_488.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + SDK is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_488.yml b/src/licensedcode/data/rules/apache-2.0_488.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_488.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_489.RULE b/src/licensedcode/data/rules/apache-2.0_489.RULE index 6edb1016f14..76f1f9dc468 100644 --- a/src/licensedcode/data/rules/apache-2.0_489.RULE +++ b/src/licensedcode/data/rules/apache-2.0_489.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + itself is licensed under the Apache Licence Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_489.yml b/src/licensedcode/data/rules/apache-2.0_489.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_489.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_49.RULE b/src/licensedcode/data/rules/apache-2.0_49.RULE index b79c79776cb..81ab6e85a39 100644 --- a/src/licensedcode/data/rules/apache-2.0_49.RULE +++ b/src/licensedcode/data/rules/apache-2.0_49.RULE @@ -1,4 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache License 2.0 ------------------ -licenses/apache2.0.LICENSE.txt +licenses/apache2.0.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_49.yml b/src/licensedcode/data/rules/apache-2.0_49.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_490.RULE b/src/licensedcode/data/rules/apache-2.0_490.RULE index aa354203a60..9d8077e548d 100644 --- a/src/licensedcode/data/rules/apache-2.0_490.RULE +++ b/src/licensedcode/data/rules/apache-2.0_490.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + It is licensed under the Apache Licence, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_490.yml b/src/licensedcode/data/rules/apache-2.0_490.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_490.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_491.RULE b/src/licensedcode/data/rules/apache-2.0_491.RULE index 6ebf94b5043..3b76fb4f9a1 100644 --- a/src/licensedcode/data/rules/apache-2.0_491.RULE +++ b/src/licensedcode/data/rules/apache-2.0_491.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache Licence 2.0 (http://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_491.yml b/src/licensedcode/data/rules/apache-2.0_491.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_491.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_492.RULE b/src/licensedcode/data/rules/apache-2.0_492.RULE index 26f01c7fd38..4ccb43ebc7a 100644 --- a/src/licensedcode/data/rules/apache-2.0_492.RULE +++ b/src/licensedcode/data/rules/apache-2.0_492.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This source code is licensed under the Apache Licence 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_492.yml b/src/licensedcode/data/rules/apache-2.0_492.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_492.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_493.RULE b/src/licensedcode/data/rules/apache-2.0_493.RULE index 0bc1339f776..77359e4370a 100644 --- a/src/licensedcode/data/rules/apache-2.0_493.RULE +++ b/src/licensedcode/data/rules/apache-2.0_493.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The tool is licensed under the Apache Licence 2.0 and the code can be provided upon request. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_493.yml b/src/licensedcode/data/rules/apache-2.0_493.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_493.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_494.RULE b/src/licensedcode/data/rules/apache-2.0_494.RULE index eab9330df79..90389ac26b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_494.RULE +++ b/src/licensedcode/data/rules/apache-2.0_494.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + this is licensed under the Apache licence (see the disclaimer and legal info below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_494.yml b/src/licensedcode/data/rules/apache-2.0_494.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_494.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_495.RULE b/src/licensedcode/data/rules/apache-2.0_495.RULE index 0d2a00e70e1..d24b64343f9 100644 --- a/src/licensedcode/data/rules/apache-2.0_495.RULE +++ b/src/licensedcode/data/rules/apache-2.0_495.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + software is being licensed under the Apache licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_495.yml b/src/licensedcode/data/rules/apache-2.0_495.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_495.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_496.RULE b/src/licensedcode/data/rules/apache-2.0_496.RULE index 43fbc1b0a68..d6f74273e05 100644 --- a/src/licensedcode/data/rules/apache-2.0_496.RULE +++ b/src/licensedcode/data/rules/apache-2.0_496.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + All work is licensed under the Apache licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_496.yml b/src/licensedcode/data/rules/apache-2.0_496.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_496.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_497.RULE b/src/licensedcode/data/rules/apache-2.0_497.RULE index 4ea02b6e636..9ae327a7a38 100644 --- a/src/licensedcode/data/rules/apache-2.0_497.RULE +++ b/src/licensedcode/data/rules/apache-2.0_497.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the Apache licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_497.yml b/src/licensedcode/data/rules/apache-2.0_497.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_497.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_498.RULE b/src/licensedcode/data/rules/apache-2.0_498.RULE index f95c491c39f..3c15378cd4a 100644 --- a/src/licensedcode/data/rules/apache-2.0_498.RULE +++ b/src/licensedcode/data/rules/apache-2.0_498.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + The interface software includes software licensed under the Apache Licence, 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/apache-2.0_498.yml b/src/licensedcode/data/rules/apache-2.0_498.yml deleted file mode 100644 index 1070d7f3510..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_498.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_499.RULE b/src/licensedcode/data/rules/apache-2.0_499.RULE index a75c409c154..54c8f26e642 100644 --- a/src/licensedcode/data/rules/apache-2.0_499.RULE +++ b/src/licensedcode/data/rules/apache-2.0_499.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + free software licensed under the Apache Licence, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_499.yml b/src/licensedcode/data/rules/apache-2.0_499.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_499.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_5.RULE b/src/licensedcode/data/rules/apache-2.0_5.RULE index de004ea4f2e..9e56bd8f1e8 100644 --- a/src/licensedcode/data/rules/apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + The Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_5.yml b/src/licensedcode/data/rules/apache-2.0_5.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_50.RULE b/src/licensedcode/data/rules/apache-2.0_50.RULE index 9fe0a3d62dd..a056f63626a 100644 --- a/src/licensedcode/data/rules/apache-2.0_50.RULE +++ b/src/licensedcode/data/rules/apache-2.0_50.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + license: Apache License 2.0 -licenses/apache2.0.LICENSE.txt +licenses/apache2.0.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_50.yml b/src/licensedcode/data/rules/apache-2.0_50.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_500.RULE b/src/licensedcode/data/rules/apache-2.0_500.RULE index 55f594779ba..1195d3d9c72 100644 --- a/src/licensedcode/data/rules/apache-2.0_500.RULE +++ b/src/licensedcode/data/rules/apache-2.0_500.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_500.yml b/src/licensedcode/data/rules/apache-2.0_500.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_500.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_501.RULE b/src/licensedcode/data/rules/apache-2.0_501.RULE index 28fda6d0508..1e7bc7e6dba 100644 --- a/src/licensedcode/data/rules/apache-2.0_501.RULE +++ b/src/licensedcode/data/rules/apache-2.0_501.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/ +--- + licensed under the `Apache Licence The Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_52.yml b/src/licensedcode/data/rules/apache-2.0_52.yml deleted file mode 100644 index 4b8e9b998e1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_520.RULE b/src/licensedcode/data/rules/apache-2.0_520.RULE index e9f94f7ec96..29e11241d06 100644 --- a/src/licensedcode/data/rules/apache-2.0_520.RULE +++ b/src/licensedcode/data/rules/apache-2.0_520.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensing is licensed under the Apache License, Version 2.0. See [LICENSE][] for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_520.yml b/src/licensedcode/data/rules/apache-2.0_520.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_520.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_521.RULE b/src/licensedcode/data/rules/apache-2.0_521.RULE index 28c9fc97fb0..e760243daba 100644 --- a/src/licensedcode/data/rules/apache-2.0_521.RULE +++ b/src/licensedcode/data/rules/apache-2.0_521.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + all the code in this distribution is now licensed under the Apache License: diff --git a/src/licensedcode/data/rules/apache-2.0_521.yml b/src/licensedcode/data/rules/apache-2.0_521.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_521.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_522.RULE b/src/licensedcode/data/rules/apache-2.0_522.RULE index 1dfc802f382..99472b7e2ce 100644 --- a/src/licensedcode/data/rules/apache-2.0_522.RULE +++ b/src/licensedcode/data/rules/apache-2.0_522.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This distribution includes software libraries developed by The Apache Software Foundation (http://www.apache.org/). diff --git a/src/licensedcode/data/rules/apache-2.0_522.yml b/src/licensedcode/data/rules/apache-2.0_522.yml deleted file mode 100644 index 75d44c8d089..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_522.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_authors: - - The Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_523.RULE b/src/licensedcode/data/rules/apache-2.0_523.RULE index 6ee2dc02a43..c74342a54f1 100644 --- a/src/licensedcode/data/rules/apache-2.0_523.RULE +++ b/src/licensedcode/data/rules/apache-2.0_523.RULE @@ -1,2 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + This distribution includes software libraries developed by The Apache Software Foundation (http://www.apache.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_523.yml b/src/licensedcode/data/rules/apache-2.0_523.yml deleted file mode 100644 index 9e6110cead9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_523.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_authors: - - The Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_524.RULE b/src/licensedcode/data/rules/apache-2.0_524.RULE index 3e1890dfc41..61a46e583d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_524.RULE +++ b/src/licensedcode/data/rules/apache-2.0_524.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Under the Apache Software License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0): \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_524.yml b/src/licensedcode/data/rules/apache-2.0_524.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_524.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_525.RULE b/src/licensedcode/data/rules/apache-2.0_525.RULE index c1a91103a28..697a239edc8 100644 --- a/src/licensedcode/data/rules/apache-2.0_525.RULE +++ b/src/licensedcode/data/rules/apache-2.0_525.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + This distribution includes software libraries developed by The Apache Software Foundation (http://www.apache.org/). diff --git a/src/licensedcode/data/rules/apache-2.0_525.yml b/src/licensedcode/data/rules/apache-2.0_525.yml deleted file mode 100644 index 37a53a79dd7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_525.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_authors: - - The Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_526.RULE b/src/licensedcode/data/rules/apache-2.0_526.RULE index 1accee10715..246ca7c37ae 100644 --- a/src/licensedcode/data/rules/apache-2.0_526.RULE +++ b/src/licensedcode/data/rules/apache-2.0_526.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation (https://www.apache.org/) +ignorable_urls: + - https://www.apache.org/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This distribution includes software libraries developed by The Apache Software Foundation (https://www.apache.org/). diff --git a/src/licensedcode/data/rules/apache-2.0_526.yml b/src/licensedcode/data/rules/apache-2.0_526.yml deleted file mode 100644 index 935824278cc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_526.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_authors: - - The Apache Software Foundation (https://www.apache.org/) -ignorable_urls: - - https://www.apache.org/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_527.RULE b/src/licensedcode/data/rules/apache-2.0_527.RULE index 94185cecb93..6025130ff2d 100644 --- a/src/licensedcode/data/rules/apache-2.0_527.RULE +++ b/src/licensedcode/data/rules/apache-2.0_527.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation (https://www.apache.org/) +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.apache.org/ +--- + This distribution includes software libraries developed by The Apache Software Foundation (https://www.apache.org/). diff --git a/src/licensedcode/data/rules/apache-2.0_527.yml b/src/licensedcode/data/rules/apache-2.0_527.yml deleted file mode 100644 index e5c6967ec15..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_527.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_authors: - - The Apache Software Foundation (https://www.apache.org/) -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_528.RULE b/src/licensedcode/data/rules/apache-2.0_528.RULE index 4e1d0d1d013..1de38992291 100644 --- a/src/licensedcode/data/rules/apache-2.0_528.RULE +++ b/src/licensedcode/data/rules/apache-2.0_528.RULE @@ -1,2 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation (https://www.apache.org/) +ignorable_urls: + - https://www.apache.org/ +--- + This distribution includes software libraries developed by The Apache Software Foundation (https://www.apache.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_528.yml b/src/licensedcode/data/rules/apache-2.0_528.yml deleted file mode 100644 index dbbaa6758d0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_528.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_authors: - - The Apache Software Foundation (https://www.apache.org/) -ignorable_urls: - - https://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_529.RULE b/src/licensedcode/data/rules/apache-2.0_529.RULE index 450c63b5b97..e53895b0b91 100644 --- a/src/licensedcode/data/rules/apache-2.0_529.RULE +++ b/src/licensedcode/data/rules/apache-2.0_529.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Under the Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0): \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_529.yml b/src/licensedcode/data/rules/apache-2.0_529.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_529.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_53.RULE b/src/licensedcode/data/rules/apache-2.0_53.RULE index e5a3a88bee3..e467555ec1a 100644 --- a/src/licensedcode/data/rules/apache-2.0_53.RULE +++ b/src/licensedcode/data/rules/apache-2.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + * This file is licensed under the Apache 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_53.yml b/src/licensedcode/data/rules/apache-2.0_53.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_530.RULE b/src/licensedcode/data/rules/apache-2.0_530.RULE index 1b072c1a3c4..d561564e156 100644 --- a/src/licensedcode/data/rules/apache-2.0_530.RULE +++ b/src/licensedcode/data/rules/apache-2.0_530.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Under the Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_530.yml b/src/licensedcode/data/rules/apache-2.0_530.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_530.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_531.RULE b/src/licensedcode/data/rules/apache-2.0_531.RULE index 58e962ffb04..21cead9e761 100644 --- a/src/licensedcode/data/rules/apache-2.0_531.RULE +++ b/src/licensedcode/data/rules/apache-2.0_531.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +--- + asl 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_531.yml b/src/licensedcode/data/rules/apache-2.0_531.yml deleted file mode 100644 index ac7cac7e3b0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_531.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_532.RULE b/src/licensedcode/data/rules/apache-2.0_532.RULE index 7f610b9893f..0c00a22f8eb 100644 --- a/src/licensedcode/data/rules/apache-2.0_532.RULE +++ b/src/licensedcode/data/rules/apache-2.0_532.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/ +--- + This product includes software developed at The Apache Software Foundation (http://www.apache.org/). This product includes software from the Spring Framework, under the Apache diff --git a/src/licensedcode/data/rules/apache-2.0_532.yml b/src/licensedcode/data/rules/apache-2.0_532.yml deleted file mode 100644 index 3869ec5f762..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_532.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_533.RULE b/src/licensedcode/data/rules/apache-2.0_533.RULE index 06697bdd2f5..4291f5c546a 100644 --- a/src/licensedcode/data/rules/apache-2.0_533.RULE +++ b/src/licensedcode/data/rules/apache-2.0_533.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/ +--- + This product includes software developed at The Apache Software Foundation (https://www.apache.org/). This product includes software from the Spring Framework, under the Apache diff --git a/src/licensedcode/data/rules/apache-2.0_533.yml b/src/licensedcode/data/rules/apache-2.0_533.yml deleted file mode 100644 index 3f2a733fad9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_533.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_534.RULE b/src/licensedcode/data/rules/apache-2.0_534.RULE index 8cc47ae1da2..6d65deda121 100644 --- a/src/licensedcode/data/rules/apache-2.0_534.RULE +++ b/src/licensedcode/data/rules/apache-2.0_534.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache License, version 2.0 (Apache2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_534.yml b/src/licensedcode/data/rules/apache-2.0_534.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_534.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_535.RULE b/src/licensedcode/data/rules/apache-2.0_535.RULE index 3de590ad0c1..8528de1f406 100644 --- a/src/licensedcode/data/rules/apache-2.0_535.RULE +++ b/src/licensedcode/data/rules/apache-2.0_535.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + The Apache License, version 2.0 (Apache2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_535.yml b/src/licensedcode/data/rules/apache-2.0_535.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_535.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_536.RULE b/src/licensedcode/data/rules/apache-2.0_536.RULE index ddb2f3ed945..72ea0a3817d 100644 --- a/src/licensedcode/data/rules/apache-2.0_536.RULE +++ b/src/licensedcode/data/rules/apache-2.0_536.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License Unless otherwise noted, the source files are distributed diff --git a/src/licensedcode/data/rules/apache-2.0_536.yml b/src/licensedcode/data/rules/apache-2.0_536.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_536.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_537.RULE b/src/licensedcode/data/rules/apache-2.0_537.RULE index a6dd3374094..f1b36e7b99e 100644 --- a/src/licensedcode/data/rules/apache-2.0_537.RULE +++ b/src/licensedcode/data/rules/apache-2.0_537.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Unless otherwise noted, the source files are distributed under the Apache Version 2.0 license found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_537.yml b/src/licensedcode/data/rules/apache-2.0_537.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_537.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_538.RULE b/src/licensedcode/data/rules/apache-2.0_538.RULE index 77fba3add30..eadebf1e8fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_538.RULE +++ b/src/licensedcode/data/rules/apache-2.0_538.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the Apache Version 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_538.yml b/src/licensedcode/data/rules/apache-2.0_538.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_538.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_539.RULE b/src/licensedcode/data/rules/apache-2.0_539.RULE index 82d444d581c..6a2b1e4f858 100644 --- a/src/licensedcode/data/rules/apache-2.0_539.RULE +++ b/src/licensedcode/data/rules/apache-2.0_539.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under the Apache Version 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_539.yml b/src/licensedcode/data/rules/apache-2.0_539.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_539.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_54.RULE b/src/licensedcode/data/rules/apache-2.0_54.RULE index e17bb7348d0..2e7a2262796 100644 --- a/src/licensedcode/data/rules/apache-2.0_54.RULE +++ b/src/licensedcode/data/rules/apache-2.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + * This file is licensed under the Apache 2.0 License (except where otherwise indicated). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_54.yml b/src/licensedcode/data/rules/apache-2.0_54.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_540.RULE b/src/licensedcode/data/rules/apache-2.0_540.RULE index e7833ace4d5..f5a7e669ea5 100644 --- a/src/licensedcode/data/rules/apache-2.0_540.RULE +++ b/src/licensedcode/data/rules/apache-2.0_540.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache Version 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_540.yml b/src/licensedcode/data/rules/apache-2.0_540.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_540.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_541.RULE b/src/licensedcode/data/rules/apache-2.0_541.RULE index 57eca000140..ff77f2df5b7 100644 --- a/src/licensedcode/data/rules/apache-2.0_541.RULE +++ b/src/licensedcode/data/rules/apache-2.0_541.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: reported by Dennis Clarck +--- + // Licensed under Apache License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_541.yml b/src/licensedcode/data/rules/apache-2.0_541.yml deleted file mode 100644 index 3fe1e095856..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_541.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: reported by Dennis Clarck diff --git a/src/licensedcode/data/rules/apache-2.0_542.RULE b/src/licensedcode/data/rules/apache-2.0_542.RULE index 3a66ee3e24c..5f069ed5f3f 100644 --- a/src/licensedcode/data/rules/apache-2.0_542.RULE +++ b/src/licensedcode/data/rules/apache-2.0_542.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License The scripts and documentation in this project are released under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_542.yml b/src/licensedcode/data/rules/apache-2.0_542.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_542.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_543.RULE b/src/licensedcode/data/rules/apache-2.0_543.RULE index 339f66908ae..50af27954c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_543.RULE +++ b/src/licensedcode/data/rules/apache-2.0_543.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The scripts and documentation in this project are released under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_543.yml b/src/licensedcode/data/rules/apache-2.0_543.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_543.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_544.RULE b/src/licensedcode/data/rules/apache-2.0_544.RULE index ad17a846ee1..4f7b0ef66c2 100644 --- a/src/licensedcode/data/rules/apache-2.0_544.RULE +++ b/src/licensedcode/data/rules/apache-2.0_544.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +notes: the "or later" is rather ncommon for APache and ignored here +--- + Script License: Apache License, Version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_544.yml b/src/licensedcode/data/rules/apache-2.0_544.yml deleted file mode 100644 index c145b7b0129..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_544.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -notes: the "or later" is rather ncommon for APache and ignored here diff --git a/src/licensedcode/data/rules/apache-2.0_545.RULE b/src/licensedcode/data/rules/apache-2.0_545.RULE index 02b9621fdce..4eb1a35d7d8 100644 --- a/src/licensedcode/data/rules/apache-2.0_545.RULE +++ b/src/licensedcode/data/rules/apache-2.0_545.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_545.yml b/src/licensedcode/data/rules/apache-2.0_545.yml deleted file mode 100644 index 315b336330f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_545.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_546.RULE b/src/licensedcode/data/rules/apache-2.0_546.RULE index d0fecfa4446..b4452b69507 100644 --- a/src/licensedcode/data/rules/apache-2.0_546.RULE +++ b/src/licensedcode/data/rules/apache-2.0_546.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Permission to modify and redistribute is granted under the terms of the Apache 2.0 license. See the LICENSE file for the full license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_546.yml b/src/licensedcode/data/rules/apache-2.0_546.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_546.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_547.RULE b/src/licensedcode/data/rules/apache-2.0_547.RULE index f3e459e0b00..8bda2780878 100644 --- a/src/licensedcode/data/rules/apache-2.0_547.RULE +++ b/src/licensedcode/data/rules/apache-2.0_547.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + [2]: , which is reproduced below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_547.yml b/src/licensedcode/data/rules/apache-2.0_547.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_547.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_548.RULE b/src/licensedcode/data/rules/apache-2.0_548.RULE index fc00a55442b..238efe5ccd5 100644 --- a/src/licensedcode/data/rules/apache-2.0_548.RULE +++ b/src/licensedcode/data/rules/apache-2.0_548.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the {{Apache License, version 2.0}}, the text of which -is included above. +is included above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_548.yml b/src/licensedcode/data/rules/apache-2.0_548.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_548.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_549.RULE b/src/licensedcode/data/rules/apache-2.0_549.RULE index 0d0e4b7e756..06f5896ad0a 100644 --- a/src/licensedcode/data/rules/apache-2.0_549.RULE +++ b/src/licensedcode/data/rules/apache-2.0_549.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + This product is licensed to you under the Apache License, Version 2.0 (the "License"). You may not use this product except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_549.yml b/src/licensedcode/data/rules/apache-2.0_549.yml deleted file mode 100644 index a0556153e9a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_549.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_55.RULE b/src/licensedcode/data/rules/apache-2.0_55.RULE index dfbaf7aeccd..16b83c4b522 100644 --- a/src/licensedcode/data/rules/apache-2.0_55.RULE +++ b/src/licensedcode/data/rules/apache-2.0_55.RULE @@ -1,4 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0; you may not use this file except in compliance with the License. - http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_55.yml b/src/licensedcode/data/rules/apache-2.0_55.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_55.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_550.RULE b/src/licensedcode/data/rules/apache-2.0_550.RULE index c0a8bd64a8d..598eea2b573 100644 --- a/src/licensedcode/data/rules/apache-2.0_550.RULE +++ b/src/licensedcode/data/rules/apache-2.0_550.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + released under [Apache License 2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_550.yml b/src/licensedcode/data/rules/apache-2.0_550.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_550.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_551.RULE b/src/licensedcode/data/rules/apache-2.0_551.RULE index b623dcbc1c3..3a649daa367 100644 --- a/src/licensedcode/data/rules/apache-2.0_551.RULE +++ b/src/licensedcode/data/rules/apache-2.0_551.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the Apache 2.0 Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_551.yml b/src/licensedcode/data/rules/apache-2.0_551.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_551.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_552.RULE b/src/licensedcode/data/rules/apache-2.0_552.RULE index 3548317847e..9c746270cdf 100644 --- a/src/licensedcode/data/rules/apache-2.0_552.RULE +++ b/src/licensedcode/data/rules/apache-2.0_552.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + released under the [Apache 2.0 Licence](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_552.yml b/src/licensedcode/data/rules/apache-2.0_552.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_552.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_553.RULE b/src/licensedcode/data/rules/apache-2.0_553.RULE index 19140eef8fa..07244642521 100644 --- a/src/licensedcode/data/rules/apache-2.0_553.RULE +++ b/src/licensedcode/data/rules/apache-2.0_553.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + offered to the community under the terms of the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_553.yml b/src/licensedcode/data/rules/apache-2.0_553.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_553.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_554.RULE b/src/licensedcode/data/rules/apache-2.0_554.RULE index 55612282128..a1ff153d239 100644 --- a/src/licensedcode/data/rules/apache-2.0_554.RULE +++ b/src/licensedcode/data/rules/apache-2.0_554.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_554.yml b/src/licensedcode/data/rules/apache-2.0_554.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_554.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_555.RULE b/src/licensedcode/data/rules/apache-2.0_555.RULE index 596d8ee3625..35618b10639 100644 --- a/src/licensedcode/data/rules/apache-2.0_555.RULE +++ b/src/licensedcode/data/rules/apache-2.0_555.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + /* This software may be modified and distributed under the terms /* of the Apache-2.0 license. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_555.yml b/src/licensedcode/data/rules/apache-2.0_555.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_555.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_556.RULE b/src/licensedcode/data/rules/apache-2.0_556.RULE index e97439756c4..b5562f17902 100644 --- a/src/licensedcode/data/rules/apache-2.0_556.RULE +++ b/src/licensedcode/data/rules/apache-2.0_556.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +--- + APACHE Lisence : \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_556.yml b/src/licensedcode/data/rules/apache-2.0_556.yml deleted file mode 100644 index b055fbb5a1d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_556.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_557.RULE b/src/licensedcode/data/rules/apache-2.0_557.RULE index ef7cd0e153c..48e7fe3719e 100644 --- a/src/licensedcode/data/rules/apache-2.0_557.RULE +++ b/src/licensedcode/data/rules/apache-2.0_557.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_557.yml b/src/licensedcode/data/rules/apache-2.0_557.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_557.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_558.RULE b/src/licensedcode/data/rules/apache-2.0_558.RULE index 84be6b52e5e..435d0c9abb5 100644 --- a/src/licensedcode/data/rules/apache-2.0_558.RULE +++ b/src/licensedcode/data/rules/apache-2.0_558.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache License, Version 2.0 (the "License"); you may not use the software 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_558.yml b/src/licensedcode/data/rules/apache-2.0_558.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_558.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_559.RULE b/src/licensedcode/data/rules/apache-2.0_559.RULE index ddaedab53af..b89cbe70247 100644 --- a/src/licensedcode/data/rules/apache-2.0_559.RULE +++ b/src/licensedcode/data/rules/apache-2.0_559.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache License, Version 2.0 (the "License"); you may not use the software except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_559.yml b/src/licensedcode/data/rules/apache-2.0_559.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_559.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_56.RULE b/src/licensedcode/data/rules/apache-2.0_56.RULE index 54307220035..8884d6a39ca 100644 --- a/src/licensedcode/data/rules/apache-2.0_56.RULE +++ b/src/licensedcode/data/rules/apache-2.0_56.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the @@ -8,4 +15,4 @@ 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_56.yml b/src/licensedcode/data/rules/apache-2.0_56.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_56.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_560.RULE b/src/licensedcode/data/rules/apache-2.0_560.RULE index ab7cc63e8f7..810cc7cdf81 100644 --- a/src/licensedcode/data/rules/apache-2.0_560.RULE +++ b/src/licensedcode/data/rules/apache-2.0_560.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + is licensed under the Apache License, Version 2.0 (the "License"); you may not use the software except in compliance with the License. You may obtain a copy of diff --git a/src/licensedcode/data/rules/apache-2.0_560.yml b/src/licensedcode/data/rules/apache-2.0_560.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_560.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_561.RULE b/src/licensedcode/data/rules/apache-2.0_561.RULE index ddad23f83a5..c108e96819e 100644 --- a/src/licensedcode/data/rules/apache-2.0_561.RULE +++ b/src/licensedcode/data/rules/apache-2.0_561.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_561.yml b/src/licensedcode/data/rules/apache-2.0_561.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_561.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_562.RULE b/src/licensedcode/data/rules/apache-2.0_562.RULE index 73fbaa74657..bd6fa9a8433 100644 --- a/src/licensedcode/data/rules/apache-2.0_562.RULE +++ b/src/licensedcode/data/rules/apache-2.0_562.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.datadoghq.com/ +--- + // Unless explicitly stated otherwise all files in this repository are licensed // under the Apache License Version 2.0. // This product includes software developed at Datadog (https://www.datadoghq.com/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_562.yml b/src/licensedcode/data/rules/apache-2.0_562.yml deleted file mode 100644 index a1e60565d21..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_562.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.datadoghq.com/ diff --git a/src/licensedcode/data/rules/apache-2.0_563.RULE b/src/licensedcode/data/rules/apache-2.0_563.RULE index ffccaed5c17..02f9c6b5817 100644 --- a/src/licensedcode/data/rules/apache-2.0_563.RULE +++ b/src/licensedcode/data/rules/apache-2.0_563.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 80 +notes: most DDcode is Apache-2.0-licensed +ignorable_urls: + - https://www.datadoghq.com/ +--- + This product includes software developed at Datadog (https://www.datadoghq.com/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_563.yml b/src/licensedcode/data/rules/apache-2.0_563.yml deleted file mode 100644 index 67700f737f4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_563.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 80 -notes: most DDcode is Apache-2.0-licensed -ignorable_urls: - - https://www.datadoghq.com/ diff --git a/src/licensedcode/data/rules/apache-2.0_564.RULE b/src/licensedcode/data/rules/apache-2.0_564.RULE index b6f62f6a6b9..dacc58dcbe4 100644 --- a/src/licensedcode/data/rules/apache-2.0_564.RULE +++ b/src/licensedcode/data/rules/apache-2.0_564.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +notes: https://raw.githubusercontent.com/oliver-moran/jimp/master/README.md +--- + licensed under the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_564.yml b/src/licensedcode/data/rules/apache-2.0_564.yml deleted file mode 100644 index 7dd751fb89f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_564.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 -notes: https://raw.githubusercontent.com/oliver-moran/jimp/master/README.md diff --git a/src/licensedcode/data/rules/apache-2.0_565.RULE b/src/licensedcode/data/rules/apache-2.0_565.RULE index 263cc0c3e1e..76acec416b6 100644 --- a/src/licensedcode/data/rules/apache-2.0_565.RULE +++ b/src/licensedcode/data/rules/apache-2.0_565.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 90 +--- + is licensed under the Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_565.yml b/src/licensedcode/data/rules/apache-2.0_565.yml deleted file mode 100644 index 5ea59db1cbc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_565.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_566.RULE b/src/licensedcode/data/rules/apache-2.0_566.RULE index ad5bb925a5e..511f4c99a10 100644 --- a/src/licensedcode/data/rules/apache-2.0_566.RULE +++ b/src/licensedcode/data/rules/apache-2.0_566.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + provided under the Apache License, 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_566.yml b/src/licensedcode/data/rules/apache-2.0_566.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_566.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_567.RULE b/src/licensedcode/data/rules/apache-2.0_567.RULE index 80455914111..f5c6d0c99d0 100644 --- a/src/licensedcode/data/rules/apache-2.0_567.RULE +++ b/src/licensedcode/data/rules/apache-2.0_567.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache Software License, version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_567.yml b/src/licensedcode/data/rules/apache-2.0_567.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_567.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_568.RULE b/src/licensedcode/data/rules/apache-2.0_568.RULE index fbc9ef82fb7..27f971b3da5 100644 --- a/src/licensedcode/data/rules/apache-2.0_568.RULE +++ b/src/licensedcode/data/rules/apache-2.0_568.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the Apache 2 license, quoted below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_568.yml b/src/licensedcode/data/rules/apache-2.0_568.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_568.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_569.RULE b/src/licensedcode/data/rules/apache-2.0_569.RULE index c1783e21f37..f764fd34367 100644 --- a/src/licensedcode/data/rules/apache-2.0_569.RULE +++ b/src/licensedcode/data/rules/apache-2.0_569.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the Apache 2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_569.yml b/src/licensedcode/data/rules/apache-2.0_569.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_569.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_57.RULE b/src/licensedcode/data/rules/apache-2.0_57.RULE index e5ea7bbf4b4..949a950f5e2 100644 --- a/src/licensedcode/data/rules/apache-2.0_57.RULE +++ b/src/licensedcode/data/rules/apache-2.0_57.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_57.yml b/src/licensedcode/data/rules/apache-2.0_57.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_570.RULE b/src/licensedcode/data/rules/apache-2.0_570.RULE index 5c659c2c084..442ba05d5ba 100644 --- a/src/licensedcode/data/rules/apache-2.0_570.RULE +++ b/src/licensedcode/data/rules/apache-2.0_570.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_570.yml b/src/licensedcode/data/rules/apache-2.0_570.yml deleted file mode 100644 index d0f17c9ef33..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_570.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_571.RULE b/src/licensedcode/data/rules/apache-2.0_571.RULE index 71781a4845d..7e8e85896f6 100644 --- a/src/licensedcode/data/rules/apache-2.0_571.RULE +++ b/src/licensedcode/data/rules/apache-2.0_571.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://repository.jboss.org/licenses/apache-2.0.txt +--- + {{Apache License 2.0}} diff --git a/src/licensedcode/data/rules/apache-2.0_571.yml b/src/licensedcode/data/rules/apache-2.0_571.yml deleted file mode 100644 index e1e3606cfdf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_571.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://repository.jboss.org/licenses/apache-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_572.RULE b/src/licensedcode/data/rules/apache-2.0_572.RULE index 50e73024c51..3bdb9ad07f0 100644 --- a/src/licensedcode/data/rules/apache-2.0_572.RULE +++ b/src/licensedcode/data/rules/apache-2.0_572.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://repository.jboss.org/licenses/apache-2.0.txt +--- + http://repository.jboss.org/licenses/apache-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_572.yml b/src/licensedcode/data/rules/apache-2.0_572.yml deleted file mode 100644 index a296220ff4c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_572.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://repository.jboss.org/licenses/apache-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_573.RULE b/src/licensedcode/data/rules/apache-2.0_573.RULE index eb12ee9d1ee..a766980d7fb 100644 --- a/src/licensedcode/data/rules/apache-2.0_573.RULE +++ b/src/licensedcode/data/rules/apache-2.0_573.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache Version 2.0, January 2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_573.yml b/src/licensedcode/data/rules/apache-2.0_573.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_573.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_574.RULE b/src/licensedcode/data/rules/apache-2.0_574.RULE index 8f7d626d6a4..86b1f03b5c5 100644 --- a/src/licensedcode/data/rules/apache-2.0_574.RULE +++ b/src/licensedcode/data/rules/apache-2.0_574.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache License, V2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_574.yml b/src/licensedcode/data/rules/apache-2.0_574.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_574.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_575.RULE b/src/licensedcode/data/rules/apache-2.0_575.RULE index 2b3540e3536..1847968af3c 100644 --- a/src/licensedcode/data/rules/apache-2.0_575.RULE +++ b/src/licensedcode/data/rules/apache-2.0_575.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache Software License (Apache-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_575.yml b/src/licensedcode/data/rules/apache-2.0_575.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_575.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_576.RULE b/src/licensedcode/data/rules/apache-2.0_576.RULE index 6ef8fe88a5c..1d28ab7bbfa 100644 --- a/src/licensedcode/data/rules/apache-2.0_576.RULE +++ b/src/licensedcode/data/rules/apache-2.0_576.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache Software License, Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_576.yml b/src/licensedcode/data/rules/apache-2.0_576.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_576.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_577.RULE b/src/licensedcode/data/rules/apache-2.0_577.RULE index 2647e84e63f..f994491d99a 100644 --- a/src/licensedcode/data/rules/apache-2.0_577.RULE +++ b/src/licensedcode/data/rules/apache-2.0_577.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache v 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_577.yml b/src/licensedcode/data/rules/apache-2.0_577.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_577.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_578.RULE b/src/licensedcode/data/rules/apache-2.0_578.RULE index 9cfbc995202..74276bb4681 100644 --- a/src/licensedcode/data/rules/apache-2.0_578.RULE +++ b/src/licensedcode/data/rules/apache-2.0_578.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_578.yml b/src/licensedcode/data/rules/apache-2.0_578.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_578.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_579.RULE b/src/licensedcode/data/rules/apache-2.0_579.RULE index 3c40bfeb696..ff11fc2522d 100644 --- a/src/licensedcode/data/rules/apache-2.0_579.RULE +++ b/src/licensedcode/data/rules/apache-2.0_579.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache v 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_579.yml b/src/licensedcode/data/rules/apache-2.0_579.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_579.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_58.RULE b/src/licensedcode/data/rules/apache-2.0_58.RULE index 84162876450..76b973b58e2 100644 --- a/src/licensedcode/data/rules/apache-2.0_58.RULE +++ b/src/licensedcode/data/rules/apache-2.0_58.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 98 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License, Version 2.0: Licensed under the Apache License, Version 2.0 (the "License"); you may not @@ -8,5 +16,4 @@ 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. - +under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_58.yml b/src/licensedcode/data/rules/apache-2.0_58.yml deleted file mode 100644 index 711b1b80d26..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 98 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_580.RULE b/src/licensedcode/data/rules/apache-2.0_580.RULE index 60750517413..a9bd4abd4a8 100644 --- a/src/licensedcode/data/rules/apache-2.0_580.RULE +++ b/src/licensedcode/data/rules/apache-2.0_580.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_580.yml b/src/licensedcode/data/rules/apache-2.0_580.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_580.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_581.RULE b/src/licensedcode/data/rules/apache-2.0_581.RULE index d6eebd0ef4c..03fee157044 100644 --- a/src/licensedcode/data/rules/apache-2.0_581.RULE +++ b/src/licensedcode/data/rules/apache-2.0_581.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Apache version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_581.yml b/src/licensedcode/data/rules/apache-2.0_581.yml deleted file mode 100644 index b2e87f5f7b9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_581.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_582.RULE b/src/licensedcode/data/rules/apache-2.0_582.RULE index 1cd4214d09d..b8961a1deca 100644 --- a/src/licensedcode/data/rules/apache-2.0_582.RULE +++ b/src/licensedcode/data/rules/apache-2.0_582.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +--- + Apache Software Licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_582.yml b/src/licensedcode/data/rules/apache-2.0_582.yml deleted file mode 100644 index ac7cac7e3b0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_582.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_583.RULE b/src/licensedcode/data/rules/apache-2.0_583.RULE index c6d260aa770..683219d13eb 100644 --- a/src/licensedcode/data/rules/apache-2.0_583.RULE +++ b/src/licensedcode/data/rules/apache-2.0_583.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, version 2.0 (the "License"): http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_583.yml b/src/licensedcode/data/rules/apache-2.0_583.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_583.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_584.RULE b/src/licensedcode/data/rules/apache-2.0_584.RULE index 1f51d3ba63d..de6839ff4f4 100644 --- a/src/licensedcode/data/rules/apache-2.0_584.RULE +++ b/src/licensedcode/data/rules/apache-2.0_584.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE.txt +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_584.yml b/src/licensedcode/data/rules/apache-2.0_584.yml deleted file mode 100644 index 664a9cdfe2a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_584.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE.txt -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_585.RULE b/src/licensedcode/data/rules/apache-2.0_585.RULE index 9740fb8ac31..28acee96b4c 100644 --- a/src/licensedcode/data/rules/apache-2.0_585.RULE +++ b/src/licensedcode/data/rules/apache-2.0_585.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://github.com/quantumblacklabs/kedro/blob/master/LICENSE.md +--- + licensed under the [Apache 2.0](https://github.com/quantumblacklabs/kedro/blob/master/LICENSE.md) License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_585.yml b/src/licensedcode/data/rules/apache-2.0_585.yml deleted file mode 100644 index 50634832df5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_585.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://github.com/quantumblacklabs/kedro/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/apache-2.0_586.RULE b/src/licensedcode/data/rules/apache-2.0_586.RULE index 367268e073f..da108b4589e 100644 --- a/src/licensedcode/data/rules/apache-2.0_586.RULE +++ b/src/licensedcode/data/rules/apache-2.0_586.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache 2.0 License Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. diff --git a/src/licensedcode/data/rules/apache-2.0_586.yml b/src/licensedcode/data/rules/apache-2.0_586.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_586.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_587.RULE b/src/licensedcode/data/rules/apache-2.0_587.RULE index 58029dca1e6..6e35c655e35 100644 --- a/src/licensedcode/data/rules/apache-2.0_587.RULE +++ b/src/licensedcode/data/rules/apache-2.0_587.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: see https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_587.yml b/src/licensedcode/data/rules/apache-2.0_587.yml deleted file mode 100644 index 8bba9a5b8ba..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_587.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: see https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_588.RULE b/src/licensedcode/data/rules/apache-2.0_588.RULE index 52090f8fd30..dd93d2f9ecf 100644 --- a/src/licensedcode/data/rules/apache-2.0_588.RULE +++ b/src/licensedcode/data/rules/apache-2.0_588.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 99 +notes: modified with alternative numbering of section 4 using numbers and not letters seen in + https://github.com/ninject/Ninject/blob/3ff6bdaad8cde418724b8b18edb3a457b9785f8e/LICENSE.txt +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_588.yml b/src/licensedcode/data/rules/apache-2.0_588.yml deleted file mode 100644 index c54e98ba219..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_588.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 99 -notes: modified with alternative numbering of section 4 using numbers and not letters seen in - https://github.com/ninject/Ninject/blob/3ff6bdaad8cde418724b8b18edb3a457b9785f8e/LICENSE.txt -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_589.RULE b/src/licensedcode/data/rules/apache-2.0_589.RULE index 03bf7329f23..2cf1f92f8eb 100644 --- a/src/licensedcode/data/rules/apache-2.0_589.RULE +++ b/src/licensedcode/data/rules/apache-2.0_589.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: seen in https://github.com/varlink/go/blob/0ad3cc7fadf04a0a303a285643e6ed43e4afc5cd/COPYRIGHT +--- + Except as otherwise noted (below and/or in individual files), is licensed under the Apache License, Version 2.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_589.yml b/src/licensedcode/data/rules/apache-2.0_589.yml deleted file mode 100644 index dc37bc1e62b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_589.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: seen in https://github.com/varlink/go/blob/0ad3cc7fadf04a0a303a285643e6ed43e4afc5cd/COPYRIGHT diff --git a/src/licensedcode/data/rules/apache-2.0_59.RULE b/src/licensedcode/data/rules/apache-2.0_59.RULE index 81e03084505..a2c87cef4cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_59.RULE +++ b/src/licensedcode/data/rules/apache-2.0_59.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_59.yml b/src/licensedcode/data/rules/apache-2.0_59.yml deleted file mode 100644 index e3fbfa35f7f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_59.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_590.RULE b/src/licensedcode/data/rules/apache-2.0_590.RULE index 1e1dcab244d..b3c5b299cc5 100644 --- a/src/licensedcode/data/rules/apache-2.0_590.RULE +++ b/src/licensedcode/data/rules/apache-2.0_590.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use the file in this project except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_590.yml b/src/licensedcode/data/rules/apache-2.0_590.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_590.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_591.RULE b/src/licensedcode/data/rules/apache-2.0_591.RULE index b46a325c6dc..313c2060ecf 100644 --- a/src/licensedcode/data/rules/apache-2.0_591.RULE +++ b/src/licensedcode/data/rules/apache-2.0_591.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: ASL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_591.yml b/src/licensedcode/data/rules/apache-2.0_591.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_591.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_592.RULE b/src/licensedcode/data/rules/apache-2.0_592.RULE index 4deb4d30365..d20eedb0214 100644 --- a/src/licensedcode/data/rules/apache-2.0_592.RULE +++ b/src/licensedcode/data/rules/apache-2.0_592.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: See in https://github.com/vmware/go-vcloud-director/blob/bd4843992153364e688c5f1533f803a31eea0e47/LICENSE#L5 +--- + The Apache 2.0 license (the "License") set forth below applies to all parts of the project except as noted below. You may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_592.yml b/src/licensedcode/data/rules/apache-2.0_592.yml deleted file mode 100644 index a3139c03200..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_592.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: See in https://github.com/vmware/go-vcloud-director/blob/bd4843992153364e688c5f1533f803a31eea0e47/LICENSE#L5 diff --git a/src/licensedcode/data/rules/apache-2.0_593.RULE b/src/licensedcode/data/rules/apache-2.0_593.RULE index aaf9bdab3f5..728a39d0306 100644 --- a/src/licensedcode/data/rules/apache-2.0_593.RULE +++ b/src/licensedcode/data/rules/apache-2.0_593.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +--- + Apache License, Version 2.0 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/src/licensedcode/data/rules/apache-2.0_593.yml b/src/licensedcode/data/rules/apache-2.0_593.yml deleted file mode 100644 index 0e6d73199d8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_593.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_594.RULE b/src/licensedcode/data/rules/apache-2.0_594.RULE index 2cda47d8a26..d057e3f0592 100644 --- a/src/licensedcode/data/rules/apache-2.0_594.RULE +++ b/src/licensedcode/data/rules/apache-2.0_594.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later. diff --git a/src/licensedcode/data/rules/apache-2.0_594.yml b/src/licensedcode/data/rules/apache-2.0_594.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_594.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_595.RULE b/src/licensedcode/data/rules/apache-2.0_595.RULE index 42e22debe3c..0ed27449fb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_595.RULE +++ b/src/licensedcode/data/rules/apache-2.0_595.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later. The container image in this repository 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 Apache Software License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_595.yml b/src/licensedcode/data/rules/apache-2.0_595.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_595.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_596.RULE b/src/licensedcode/data/rules/apache-2.0_596.RULE index ec5a962c85f..76d06f3f1cc 100644 --- a/src/licensedcode/data/rules/apache-2.0_596.RULE +++ b/src/licensedcode/data/rules/apache-2.0_596.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_596.yml b/src/licensedcode/data/rules/apache-2.0_596.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_596.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_597.RULE b/src/licensedcode/data/rules/apache-2.0_597.RULE index db02b4b896f..4cdd2cc8276 100644 --- a/src/licensedcode/data/rules/apache-2.0_597.RULE +++ b/src/licensedcode/data/rules/apache-2.0_597.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the Apache2 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_597.yml b/src/licensedcode/data/rules/apache-2.0_597.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_597.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_598.RULE b/src/licensedcode/data/rules/apache-2.0_598.RULE index eda138e0206..786a1d3ca3e 100644 --- a/src/licensedcode/data/rules/apache-2.0_598.RULE +++ b/src/licensedcode/data/rules/apache-2.0_598.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache 2.0 License: You may not use the identified files except in compliance with the Apache License, Version 2.0 (the "License.") diff --git a/src/licensedcode/data/rules/apache-2.0_598.yml b/src/licensedcode/data/rules/apache-2.0_598.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_598.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_599.RULE b/src/licensedcode/data/rules/apache-2.0_599.RULE index 3b09551ecfe..4e5437750c1 100644 --- a/src/licensedcode/data/rules/apache-2.0_599.RULE +++ b/src/licensedcode/data/rules/apache-2.0_599.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licenced under the Apache 2.0 Licence: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_599.yml b/src/licensedcode/data/rules/apache-2.0_599.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_599.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_6.RULE b/src/licensedcode/data/rules/apache-2.0_6.RULE index d18f9580418..a756b9c94fd 100644 --- a/src/licensedcode/data/rules/apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + is covered by the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_6.yml b/src/licensedcode/data/rules/apache-2.0_6.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_60.RULE b/src/licensedcode/data/rules/apache-2.0_60.RULE index 63910edef40..61fc73dc85d 100644 --- a/src/licensedcode/data/rules/apache-2.0_60.RULE +++ b/src/licensedcode/data/rules/apache-2.0_60.RULE @@ -1,4 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 -http://www.apache.org/licenses/LICENSE-2.0 +http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_60.yml b/src/licensedcode/data/rules/apache-2.0_60.yml deleted file mode 100644 index 0dd17ba214a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_600.RULE b/src/licensedcode/data/rules/apache-2.0_600.RULE index df4d1a0c513..52b1670c874 100644 --- a/src/licensedcode/data/rules/apache-2.0_600.RULE +++ b/src/licensedcode/data/rules/apache-2.0_600.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the Apache2 Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_600.yml b/src/licensedcode/data/rules/apache-2.0_600.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_600.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_601.RULE b/src/licensedcode/data/rules/apache-2.0_601.RULE index df03f40016d..057d76d596d 100644 --- a/src/licensedcode/data/rules/apache-2.0_601.RULE +++ b/src/licensedcode/data/rules/apache-2.0_601.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + This app uses third-party librarys that are licenced under the Apache 2.0 licence. Get the full text of the licence at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_601.yml b/src/licensedcode/data/rules/apache-2.0_601.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_601.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_602.RULE b/src/licensedcode/data/rules/apache-2.0_602.RULE index 108e51a8a3e..861f4004d05 100644 --- a/src/licensedcode/data/rules/apache-2.0_602.RULE +++ b/src/licensedcode/data/rules/apache-2.0_602.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This library is licenced under the Apache 2.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_602.yml b/src/licensedcode/data/rules/apache-2.0_602.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_602.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_603.RULE b/src/licensedcode/data/rules/apache-2.0_603.RULE index 0b884f98135..b3c05a78425 100644 --- a/src/licensedcode/data/rules/apache-2.0_603.RULE +++ b/src/licensedcode/data/rules/apache-2.0_603.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + open source and licenced under the Apache 2.0 Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_603.yml b/src/licensedcode/data/rules/apache-2.0_603.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_603.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_604.RULE b/src/licensedcode/data/rules/apache-2.0_604.RULE index 79c248bcc6e..232cf1deabb 100644 --- a/src/licensedcode/data/rules/apache-2.0_604.RULE +++ b/src/licensedcode/data/rules/apache-2.0_604.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + translation are licenced under the Apache-2.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_604.yml b/src/licensedcode/data/rules/apache-2.0_604.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_604.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_605.RULE b/src/licensedcode/data/rules/apache-2.0_605.RULE index 98e679aa3d1..138b0ba6387 100644 --- a/src/licensedcode/data/rules/apache-2.0_605.RULE +++ b/src/licensedcode/data/rules/apache-2.0_605.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This project is open source and licenced under the Apache 2.0 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_605.yml b/src/licensedcode/data/rules/apache-2.0_605.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_605.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_606.RULE b/src/licensedcode/data/rules/apache-2.0_606.RULE index 035f28578c8..f58f5adf15e 100644 --- a/src/licensedcode/data/rules/apache-2.0_606.RULE +++ b/src/licensedcode/data/rules/apache-2.0_606.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensing. This project is open source and licenced under the Apache 2.0 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_606.yml b/src/licensedcode/data/rules/apache-2.0_606.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_606.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_607.RULE b/src/licensedcode/data/rules/apache-2.0_607.RULE index dde169d0516..e580b12367f 100644 --- a/src/licensedcode/data/rules/apache-2.0_607.RULE +++ b/src/licensedcode/data/rules/apache-2.0_607.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + freeware and licenced under the Apache 2.0 licence. (http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_607.yml b/src/licensedcode/data/rules/apache-2.0_607.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_607.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_608.RULE b/src/licensedcode/data/rules/apache-2.0_608.RULE index ef38414701e..721cef50db2 100644 --- a/src/licensedcode/data/rules/apache-2.0_608.RULE +++ b/src/licensedcode/data/rules/apache-2.0_608.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licence. Licenced under the Apache 2.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_608.yml b/src/licensedcode/data/rules/apache-2.0_608.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_608.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_609.RULE b/src/licensedcode/data/rules/apache-2.0_609.RULE index 7c357a51994..b458f55a6d0 100644 --- a/src/licensedcode/data/rules/apache-2.0_609.RULE +++ b/src/licensedcode/data/rules/apache-2.0_609.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + All products are licenced under the Apache 2.0 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_609.yml b/src/licensedcode/data/rules/apache-2.0_609.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_609.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_61.RULE b/src/licensedcode/data/rules/apache-2.0_61.RULE index b5cf289e072..7db29ea5e84 100644 --- a/src/licensedcode/data/rules/apache-2.0_61.RULE +++ b/src/licensedcode/data/rules/apache-2.0_61.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements; and to You under the Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_61.yml b/src/licensedcode/data/rules/apache-2.0_61.yml deleted file mode 100644 index c265816c1db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_610.RULE b/src/licensedcode/data/rules/apache-2.0_610.RULE index b3718bf1841..3e733a70ab2 100644 --- a/src/licensedcode/data/rules/apache-2.0_610.RULE +++ b/src/licensedcode/data/rules/apache-2.0_610.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENCE-2.0.txt. +--- + licenced under the Apache 2.0 licence. A copy of the licence is included with the software. For details see the file LICENCE-2.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_610.yml b/src/licensedcode/data/rules/apache-2.0_610.yml deleted file mode 100644 index 58f9d2e681b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_610.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENCE-2.0.txt. diff --git a/src/licensedcode/data/rules/apache-2.0_611.RULE b/src/licensedcode/data/rules/apache-2.0_611.RULE index 295c0846890..7305df5f0d8 100644 --- a/src/licensedcode/data/rules/apache-2.0_611.RULE +++ b/src/licensedcode/data/rules/apache-2.0_611.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This library is licensed under the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_611.yml b/src/licensedcode/data/rules/apache-2.0_611.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_611.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_612.RULE b/src/licensedcode/data/rules/apache-2.0_612.RULE index d609c90f49b..a0ad89ce672 100644 --- a/src/licensedcode/data/rules/apache-2.0_612.RULE +++ b/src/licensedcode/data/rules/apache-2.0_612.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + open source and licensed under the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_612.yml b/src/licensedcode/data/rules/apache-2.0_612.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_612.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_613.RULE b/src/licensedcode/data/rules/apache-2.0_613.RULE index fdae317896b..042b09db11b 100644 --- a/src/licensedcode/data/rules/apache-2.0_613.RULE +++ b/src/licensedcode/data/rules/apache-2.0_613.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + translation are licensed under the Apache-2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_613.yml b/src/licensedcode/data/rules/apache-2.0_613.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_613.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_614.RULE b/src/licensedcode/data/rules/apache-2.0_614.RULE index 108802f889a..6260a44b293 100644 --- a/src/licensedcode/data/rules/apache-2.0_614.RULE +++ b/src/licensedcode/data/rules/apache-2.0_614.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This project is open source and licensed under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_614.yml b/src/licensedcode/data/rules/apache-2.0_614.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_614.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_615.RULE b/src/licensedcode/data/rules/apache-2.0_615.RULE index 323dada8ca9..b7065c41e88 100644 --- a/src/licensedcode/data/rules/apache-2.0_615.RULE +++ b/src/licensedcode/data/rules/apache-2.0_615.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensing. This project is open source and licensed under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_615.yml b/src/licensedcode/data/rules/apache-2.0_615.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_615.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_616.RULE b/src/licensedcode/data/rules/apache-2.0_616.RULE index eacaa8cff3f..1c966dd41a6 100644 --- a/src/licensedcode/data/rules/apache-2.0_616.RULE +++ b/src/licensedcode/data/rules/apache-2.0_616.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + freeware and licensed under the Apache 2.0 license. (http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_616.yml b/src/licensedcode/data/rules/apache-2.0_616.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_616.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_617.RULE b/src/licensedcode/data/rules/apache-2.0_617.RULE index 103c63d4184..ad2f768c02e 100644 --- a/src/licensedcode/data/rules/apache-2.0_617.RULE +++ b/src/licensedcode/data/rules/apache-2.0_617.RULE @@ -1 +1,7 @@ -license. licensed under the {{Apache 2.0}} license +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +license. licensed under the {{Apache 2.0}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_617.yml b/src/licensedcode/data/rules/apache-2.0_617.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_617.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_618.RULE b/src/licensedcode/data/rules/apache-2.0_618.RULE index e8b2ef08574..cdc7bf4bf62 100644 --- a/src/licensedcode/data/rules/apache-2.0_618.RULE +++ b/src/licensedcode/data/rules/apache-2.0_618.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + All products are licensed under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_618.yml b/src/licensedcode/data/rules/apache-2.0_618.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_618.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_619.RULE b/src/licensedcode/data/rules/apache-2.0_619.RULE index e6c0da99928..fa354097e73 100644 --- a/src/licensedcode/data/rules/apache-2.0_619.RULE +++ b/src/licensedcode/data/rules/apache-2.0_619.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licences +--- + License: Apache 2.0 (http://www.apache.org/licences) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_619.yml b/src/licensedcode/data/rules/apache-2.0_619.yml deleted file mode 100644 index a3172af6451..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_619.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licences diff --git a/src/licensedcode/data/rules/apache-2.0_62.RULE b/src/licensedcode/data/rules/apache-2.0_62.RULE index 58d82c2224f..a4e6bac0996 100644 --- a/src/licensedcode/data/rules/apache-2.0_62.RULE +++ b/src/licensedcode/data/rules/apache-2.0_62.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 99 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + EasyMock is provided under the terms of the Apache 2 license, which is one of the most liberal and complete open source licenses available. EasyMock License @@ -60,4 +69,4 @@ 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. +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_62.yml b/src/licensedcode/data/rules/apache-2.0_62.yml deleted file mode 100644 index 47deb7913df..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_62.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 99 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_620.RULE b/src/licensedcode/data/rules/apache-2.0_620.RULE index 9df14d7e66d..297ed0e5490 100644 --- a/src/licensedcode/data/rules/apache-2.0_620.RULE +++ b/src/licensedcode/data/rules/apache-2.0_620.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licences/LICENCE-2.0 +--- + licence http://www.apache.org/licences/LICENCE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_620.yml b/src/licensedcode/data/rules/apache-2.0_620.yml deleted file mode 100644 index 7e4d1336826..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_620.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licences/LICENCE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_621.RULE b/src/licensedcode/data/rules/apache-2.0_621.RULE index 81db9a17a3c..c35c63abc19 100644 --- a/src/licensedcode/data/rules/apache-2.0_621.RULE +++ b/src/licensedcode/data/rules/apache-2.0_621.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licences/LICENCE-2.0 +--- + http://www.apache.org/licences/LICENCE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_621.yml b/src/licensedcode/data/rules/apache-2.0_621.yml deleted file mode 100644 index 7f3f5421b1b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_621.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licences/LICENCE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_622.RULE b/src/licensedcode/data/rules/apache-2.0_622.RULE index 933b588fd84..83493499955 100644 --- a/src/licensedcode/data/rules/apache-2.0_622.RULE +++ b/src/licensedcode/data/rules/apache-2.0_622.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licences/LICENCE-2.0 +--- + https://www.apache.org/licences/LICENCE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_622.yml b/src/licensedcode/data/rules/apache-2.0_622.yml deleted file mode 100644 index d2f06344773..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_622.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licences/LICENCE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_623.RULE b/src/licensedcode/data/rules/apache-2.0_623.RULE index 9bd8e92e35a..3817d8ba304 100644 --- a/src/licensedcode/data/rules/apache-2.0_623.RULE +++ b/src/licensedcode/data/rules/apache-2.0_623.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licences/LICENCE-2.0 +--- + http://apache.org/licences/LICENCE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_623.yml b/src/licensedcode/data/rules/apache-2.0_623.yml deleted file mode 100644 index 3cc9641a035..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_623.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://apache.org/licences/LICENCE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_624.RULE b/src/licensedcode/data/rules/apache-2.0_624.RULE index 1ed05e20363..d067b1c3be7 100644 --- a/src/licensedcode/data/rules/apache-2.0_624.RULE +++ b/src/licensedcode/data/rules/apache-2.0_624.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://apache.org/licences/LICENCE-2.0 +--- + https://apache.org/licences/LICENCE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_624.yml b/src/licensedcode/data/rules/apache-2.0_624.yml deleted file mode 100644 index 668b487f21d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_624.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://apache.org/licences/LICENCE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_625.RULE b/src/licensedcode/data/rules/apache-2.0_625.RULE index 4d69e9e827b..6d5cca86915 100644 --- a/src/licensedcode/data/rules/apache-2.0_625.RULE +++ b/src/licensedcode/data/rules/apache-2.0_625.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licences/LICENCE-2.0.html +--- + licence http://www.apache.org/licences/LICENCE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_625.yml b/src/licensedcode/data/rules/apache-2.0_625.yml deleted file mode 100644 index ae71e36dc41..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_625.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licences/LICENCE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_626.RULE b/src/licensedcode/data/rules/apache-2.0_626.RULE index f59e7bfff94..f1295c1870a 100644 --- a/src/licensedcode/data/rules/apache-2.0_626.RULE +++ b/src/licensedcode/data/rules/apache-2.0_626.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licences/LICENCE-2.0 +--- + licence https://www.apache.org/licences/LICENCE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_626.yml b/src/licensedcode/data/rules/apache-2.0_626.yml deleted file mode 100644 index b16eef0eab1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_626.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licences/LICENCE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_627.RULE b/src/licensedcode/data/rules/apache-2.0_627.RULE index b2603aef677..ea22637d786 100644 --- a/src/licensedcode/data/rules/apache-2.0_627.RULE +++ b/src/licensedcode/data/rules/apache-2.0_627.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licences/LICENCE-2.0.html +--- + licence https://www.apache.org/licences/LICENCE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_627.yml b/src/licensedcode/data/rules/apache-2.0_627.yml deleted file mode 100644 index 22ff58a7845..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_627.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licences/LICENCE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_628.RULE b/src/licensedcode/data/rules/apache-2.0_628.RULE index 581be031eb3..fe140c0125e 100644 --- a/src/licensedcode/data/rules/apache-2.0_628.RULE +++ b/src/licensedcode/data/rules/apache-2.0_628.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licences/LICENCE-2.0.html +--- + http://www.apache.org/licences/LICENCE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_628.yml b/src/licensedcode/data/rules/apache-2.0_628.yml deleted file mode 100644 index 9b09a2e31da..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_628.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licences/LICENCE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_629.RULE b/src/licensedcode/data/rules/apache-2.0_629.RULE index b84c3d2a267..45d6c90719f 100644 --- a/src/licensedcode/data/rules/apache-2.0_629.RULE +++ b/src/licensedcode/data/rules/apache-2.0_629.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licences/LICENCE-2.0.html +--- + https://www.apache.org/licences/LICENCE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_629.yml b/src/licensedcode/data/rules/apache-2.0_629.yml deleted file mode 100644 index 8d64828c506..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_629.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licences/LICENCE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_63.RULE b/src/licensedcode/data/rules/apache-2.0_63.RULE index e73fb9aba1a..d6f6d583ec8 100644 --- a/src/licensedcode/data/rules/apache-2.0_63.RULE +++ b/src/licensedcode/data/rules/apache-2.0_63.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + This is free software, licensed under the Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_63.yml b/src/licensedcode/data/rules/apache-2.0_63.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_630.RULE b/src/licensedcode/data/rules/apache-2.0_630.RULE index eb154d0e8cf..86c81dfb792 100644 --- a/src/licensedcode/data/rules/apache-2.0_630.RULE +++ b/src/licensedcode/data/rules/apache-2.0_630.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licences/LICENCE-2.0.html +--- + http://apache.org/licences/LICENCE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_630.yml b/src/licensedcode/data/rules/apache-2.0_630.yml deleted file mode 100644 index fb3a8a22fcd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_630.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://apache.org/licences/LICENCE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_631.RULE b/src/licensedcode/data/rules/apache-2.0_631.RULE index 4cdf66b0dba..f7c7c05ba94 100644 --- a/src/licensedcode/data/rules/apache-2.0_631.RULE +++ b/src/licensedcode/data/rules/apache-2.0_631.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://apache.org/licences/LICENCE-2.0.html +--- + https://apache.org/licences/LICENCE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_631.yml b/src/licensedcode/data/rules/apache-2.0_631.yml deleted file mode 100644 index 70ec9f1174f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_631.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://apache.org/licences/LICENCE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_632.RULE b/src/licensedcode/data/rules/apache-2.0_632.RULE index 3684dcbbf89..f07be64fb93 100644 --- a/src/licensedcode/data/rules/apache-2.0_632.RULE +++ b/src/licensedcode/data/rules/apache-2.0_632.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + http://www.apache.org.licences/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_632.yml b/src/licensedcode/data/rules/apache-2.0_632.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_632.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_633.RULE b/src/licensedcode/data/rules/apache-2.0_633.RULE index f7177d7e846..3c6418d773f 100644 --- a/src/licensedcode/data/rules/apache-2.0_633.RULE +++ b/src/licensedcode/data/rules/apache-2.0_633.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + http://apache.org.licences/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_633.yml b/src/licensedcode/data/rules/apache-2.0_633.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_633.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_634.RULE b/src/licensedcode/data/rules/apache-2.0_634.RULE index f8c5248022d..8124b839b5d 100644 --- a/src/licensedcode/data/rules/apache-2.0_634.RULE +++ b/src/licensedcode/data/rules/apache-2.0_634.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + http://www.apache.org.licences/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_634.yml b/src/licensedcode/data/rules/apache-2.0_634.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_634.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_635.RULE b/src/licensedcode/data/rules/apache-2.0_635.RULE index e14af56d872..b2200bc4c7d 100644 --- a/src/licensedcode/data/rules/apache-2.0_635.RULE +++ b/src/licensedcode/data/rules/apache-2.0_635.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + http://apache.org.licences/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_635.yml b/src/licensedcode/data/rules/apache-2.0_635.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_635.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_636.RULE b/src/licensedcode/data/rules/apache-2.0_636.RULE index ec363e4528b..74bc494255e 100644 --- a/src/licensedcode/data/rules/apache-2.0_636.RULE +++ b/src/licensedcode/data/rules/apache-2.0_636.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + https://www.apache.org.licences/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_636.yml b/src/licensedcode/data/rules/apache-2.0_636.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_636.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_637.RULE b/src/licensedcode/data/rules/apache-2.0_637.RULE index f2b866a6439..7dcb52506d0 100644 --- a/src/licensedcode/data/rules/apache-2.0_637.RULE +++ b/src/licensedcode/data/rules/apache-2.0_637.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + https://apache.org.licences/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_637.yml b/src/licensedcode/data/rules/apache-2.0_637.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_637.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_638.RULE b/src/licensedcode/data/rules/apache-2.0_638.RULE index 8ac8e021709..335d3212dd3 100644 --- a/src/licensedcode/data/rules/apache-2.0_638.RULE +++ b/src/licensedcode/data/rules/apache-2.0_638.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + https://www.apache.org.licences/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_638.yml b/src/licensedcode/data/rules/apache-2.0_638.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_638.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_639.RULE b/src/licensedcode/data/rules/apache-2.0_639.RULE index be04d4c3459..ab9117dd084 100644 --- a/src/licensedcode/data/rules/apache-2.0_639.RULE +++ b/src/licensedcode/data/rules/apache-2.0_639.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + https://apache.org.licences/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_639.yml b/src/licensedcode/data/rules/apache-2.0_639.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_639.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_64.RULE b/src/licensedcode/data/rules/apache-2.0_64.RULE index 6c86060f672..8917b70ce3d 100644 --- a/src/licensedcode/data/rules/apache-2.0_64.RULE +++ b/src/licensedcode/data/rules/apache-2.0_64.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -12,4 +23,4 @@ License: Apache-2.0 limitations under the License. . On Debian-based systems the full text of the Apache version 2.0 license - can be found in `/usr/share/common-licenses/Apache-2.0'. + can be found in `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_64.yml b/src/licensedcode/data/rules/apache-2.0_64.yml deleted file mode 100644 index 95d0f729e1b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_64.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_640.RULE b/src/licensedcode/data/rules/apache-2.0_640.RULE index d4536e10e21..5e390c23215 100644 --- a/src/licensedcode/data/rules/apache-2.0_640.RULE +++ b/src/licensedcode/data/rules/apache-2.0_640.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache PublicLicense 2.0 (APL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_640.yml b/src/licensedcode/data/rules/apache-2.0_640.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_640.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_641.RULE b/src/licensedcode/data/rules/apache-2.0_641.RULE index 24bd15b5945..6ca8e3278e9 100644 --- a/src/licensedcode/data/rules/apache-2.0_641.RULE +++ b/src/licensedcode/data/rules/apache-2.0_641.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: See https://github.com/jorenberg/KnotDB/blob/679d637c41241844022a4b1b86444a36cd374873/do.py#L6 +--- + # Licensed under the Apache License (the "License, version 2.0"); # you may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_641.yml b/src/licensedcode/data/rules/apache-2.0_641.yml deleted file mode 100644 index 19278bed677..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_641.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: See https://github.com/jorenberg/KnotDB/blob/679d637c41241844022a4b1b86444a36cd374873/do.py#L6 diff --git a/src/licensedcode/data/rules/apache-2.0_642.RULE b/src/licensedcode/data/rules/apache-2.0_642.RULE index b34151ef380..00002fa8620 100644 --- a/src/licensedcode/data/rules/apache-2.0_642.RULE +++ b/src/licensedcode/data/rules/apache-2.0_642.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + software licensed under the Apache License Version 2.0 (APLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_642.yml b/src/licensedcode/data/rules/apache-2.0_642.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_642.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_643.RULE b/src/licensedcode/data/rules/apache-2.0_643.RULE index 85d86fbef0a..208792bc236 100644 --- a/src/licensedcode/data/rules/apache-2.0_643.RULE +++ b/src/licensedcode/data/rules/apache-2.0_643.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software licensed under the Apache License Version 2.0 (APLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_643.yml b/src/licensedcode/data/rules/apache-2.0_643.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_643.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_644.RULE b/src/licensedcode/data/rules/apache-2.0_644.RULE index d58c3b0a366..bd1f581b94f 100644 --- a/src/licensedcode/data/rules/apache-2.0_644.RULE +++ b/src/licensedcode/data/rules/apache-2.0_644.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +--- + License This project is licensed under the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_644.yml b/src/licensedcode/data/rules/apache-2.0_644.yml deleted file mode 100644 index 3b9c2faa046..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_644.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_645.RULE b/src/licensedcode/data/rules/apache-2.0_645.RULE index fcc1895efd3..5c5f2bb97f2 100644 --- a/src/licensedcode/data/rules/apache-2.0_645.RULE +++ b/src/licensedcode/data/rules/apache-2.0_645.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +--- + This project is licensed under the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_645.yml b/src/licensedcode/data/rules/apache-2.0_645.yml deleted file mode 100644 index 3b9c2faa046..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_645.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_646.RULE b/src/licensedcode/data/rules/apache-2.0_646.RULE index d66e7be78d0..c095c3b2e73 100644 --- a/src/licensedcode/data/rules/apache-2.0_646.RULE +++ b/src/licensedcode/data/rules/apache-2.0_646.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + license : Apache, version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_646.yml b/src/licensedcode/data/rules/apache-2.0_646.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_646.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_647.RULE b/src/licensedcode/data/rules/apache-2.0_647.RULE index 3edecd91c4c..7816b8974dc 100644 --- a/src/licensedcode/data/rules/apache-2.0_647.RULE +++ b/src/licensedcode/data/rules/apache-2.0_647.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache License, the short form os which is below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_647.yml b/src/licensedcode/data/rules/apache-2.0_647.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_647.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_648.RULE b/src/licensedcode/data/rules/apache-2.0_648.RULE index e67abf01bb0..72bc0d13163 100644 --- a/src/licensedcode/data/rules/apache-2.0_648.RULE +++ b/src/licensedcode/data/rules/apache-2.0_648.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache License, the short form of which is below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_648.yml b/src/licensedcode/data/rules/apache-2.0_648.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_648.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_649.RULE b/src/licensedcode/data/rules/apache-2.0_649.RULE index 8c7082d67b6..7ab4e1409e7 100644 --- a/src/licensedcode/data/rules/apache-2.0_649.RULE +++ b/src/licensedcode/data/rules/apache-2.0_649.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Webfonts: Open Sans and Droid Serif is licensed under Apache License, version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_649.yml b/src/licensedcode/data/rules/apache-2.0_649.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_649.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_65.RULE b/src/licensedcode/data/rules/apache-2.0_65.RULE index f243fdcea2b..ff39dc98edf 100644 --- a/src/licensedcode/data/rules/apache-2.0_65.RULE +++ b/src/licensedcode/data/rules/apache-2.0_65.RULE @@ -1 +1,7 @@ -license: Apache-2.0 +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + +license: Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_65.yml b/src/licensedcode/data/rules/apache-2.0_65.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_650.RULE b/src/licensedcode/data/rules/apache-2.0_650.RULE index 6cca2cc75ee..8628d2bee47 100644 --- a/src/licensedcode/data/rules/apache-2.0_650.RULE +++ b/src/licensedcode/data/rules/apache-2.0_650.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the GPL-compatible [http://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_650.yml b/src/licensedcode/data/rules/apache-2.0_650.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_650.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_651.RULE b/src/licensedcode/data/rules/apache-2.0_651.RULE index 159e521a426..5d09bc978bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_651.RULE +++ b/src/licensedcode/data/rules/apache-2.0_651.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + * The script is licensed under the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_651.yml b/src/licensedcode/data/rules/apache-2.0_651.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_651.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_652.RULE b/src/licensedcode/data/rules/apache-2.0_652.RULE index edd558fa9ef..b86c2351976 100644 --- a/src/licensedcode/data/rules/apache-2.0_652.RULE +++ b/src/licensedcode/data/rules/apache-2.0_652.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The user agents data from the ua-parser project is licensed under the Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_652.yml b/src/licensedcode/data/rules/apache-2.0_652.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_652.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_653.RULE b/src/licensedcode/data/rules/apache-2.0_653.RULE index 4a146035c78..df2b1709813 100644 --- a/src/licensedcode/data/rules/apache-2.0_653.RULE +++ b/src/licensedcode/data/rules/apache-2.0_653.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + software licenced under the Apache License Version 2.0 (APLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_653.yml b/src/licensedcode/data/rules/apache-2.0_653.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_653.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_654.RULE b/src/licensedcode/data/rules/apache-2.0_654.RULE index 187c0682c91..3dc130e7748 100644 --- a/src/licensedcode/data/rules/apache-2.0_654.RULE +++ b/src/licensedcode/data/rules/apache-2.0_654.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software licenced under the Apache License Version 2.0 (APLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_654.yml b/src/licensedcode/data/rules/apache-2.0_654.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_654.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_655.RULE b/src/licensedcode/data/rules/apache-2.0_655.RULE index a183c633579..ab2205cab1b 100644 --- a/src/licensedcode/data/rules/apache-2.0_655.RULE +++ b/src/licensedcode/data/rules/apache-2.0_655.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +--- + License This project is licenced under the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_655.yml b/src/licensedcode/data/rules/apache-2.0_655.yml deleted file mode 100644 index 3b9c2faa046..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_655.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_656.RULE b/src/licensedcode/data/rules/apache-2.0_656.RULE index c5b9935529c..6c35b620496 100644 --- a/src/licensedcode/data/rules/apache-2.0_656.RULE +++ b/src/licensedcode/data/rules/apache-2.0_656.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +--- + This project is licenced under the Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_656.yml b/src/licensedcode/data/rules/apache-2.0_656.yml deleted file mode 100644 index 3b9c2faa046..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_656.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_657.RULE b/src/licensedcode/data/rules/apache-2.0_657.RULE index 3f170efbb28..73f64ad5896 100644 --- a/src/licensedcode/data/rules/apache-2.0_657.RULE +++ b/src/licensedcode/data/rules/apache-2.0_657.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + licence : Apache, version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_657.yml b/src/licensedcode/data/rules/apache-2.0_657.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_657.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_658.RULE b/src/licensedcode/data/rules/apache-2.0_658.RULE index 1de1241838f..3a0fb000c64 100644 --- a/src/licensedcode/data/rules/apache-2.0_658.RULE +++ b/src/licensedcode/data/rules/apache-2.0_658.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licenced under the Apache License, the short form os which is below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_658.yml b/src/licensedcode/data/rules/apache-2.0_658.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_658.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_659.RULE b/src/licensedcode/data/rules/apache-2.0_659.RULE index b59e87f1296..bd9bbb46511 100644 --- a/src/licensedcode/data/rules/apache-2.0_659.RULE +++ b/src/licensedcode/data/rules/apache-2.0_659.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licenced under the Apache License, the short form of which is below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_659.yml b/src/licensedcode/data/rules/apache-2.0_659.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_659.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_66.RULE b/src/licensedcode/data/rules/apache-2.0_66.RULE index bcfe438e472..6754d0dfa68 100644 --- a/src/licensedcode/data/rules/apache-2.0_66.RULE +++ b/src/licensedcode/data/rules/apache-2.0_66.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + provided under an Apache 2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_66.yml b/src/licensedcode/data/rules/apache-2.0_66.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_660.RULE b/src/licensedcode/data/rules/apache-2.0_660.RULE index 4c826be0380..3d076d3162b 100644 --- a/src/licensedcode/data/rules/apache-2.0_660.RULE +++ b/src/licensedcode/data/rules/apache-2.0_660.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + licenced under the GPL-compatible [http://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_660.yml b/src/licensedcode/data/rules/apache-2.0_660.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_660.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_661.RULE b/src/licensedcode/data/rules/apache-2.0_661.RULE index e3bac09f638..f8c8b3a8b9f 100644 --- a/src/licensedcode/data/rules/apache-2.0_661.RULE +++ b/src/licensedcode/data/rules/apache-2.0_661.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + * The script is licenced under the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_661.yml b/src/licensedcode/data/rules/apache-2.0_661.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_661.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_662.RULE b/src/licensedcode/data/rules/apache-2.0_662.RULE index 89e0873c278..bcd1947ee96 100644 --- a/src/licensedcode/data/rules/apache-2.0_662.RULE +++ b/src/licensedcode/data/rules/apache-2.0_662.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The user agents data from the ua-parser project is licenced under the Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_662.yml b/src/licensedcode/data/rules/apache-2.0_662.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_662.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_663.RULE b/src/licensedcode/data/rules/apache-2.0_663.RULE index b15318b0d0e..e319be12141 100644 --- a/src/licensedcode/data/rules/apache-2.0_663.RULE +++ b/src/licensedcode/data/rules/apache-2.0_663.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_663.yml b/src/licensedcode/data/rules/apache-2.0_663.yml deleted file mode 100644 index 032abe42c01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_663.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_664.RULE b/src/licensedcode/data/rules/apache-2.0_664.RULE index b33b130cacc..1e92c94a474 100644 --- a/src/licensedcode/data/rules/apache-2.0_664.RULE +++ b/src/licensedcode/data/rules/apache-2.0_664.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the full text of the Apache Software License version 2 can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_664.yml b/src/licensedcode/data/rules/apache-2.0_664.yml deleted file mode 100644 index 915be00363a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_664.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_665.RULE b/src/licensedcode/data/rules/apache-2.0_665.RULE index 252cb4c3dcd..418184dfb81 100644 --- a/src/licensedcode/data/rules/apache-2.0_665.RULE +++ b/src/licensedcode/data/rules/apache-2.0_665.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_665.yml b/src/licensedcode/data/rules/apache-2.0_665.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_665.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_666.RULE b/src/licensedcode/data/rules/apache-2.0_666.RULE index bbfd88fb765..62b744dabf1 100644 --- a/src/licensedcode/data/rules/apache-2.0_666.RULE +++ b/src/licensedcode/data/rules/apache-2.0_666.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_666.yml b/src/licensedcode/data/rules/apache-2.0_666.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_666.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_667.RULE b/src/licensedcode/data/rules/apache-2.0_667.RULE index 4809ca0354f..6d0828f3051 100644 --- a/src/licensedcode/data/rules/apache-2.0_667.RULE +++ b/src/licensedcode/data/rules/apache-2.0_667.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_667.yml b/src/licensedcode/data/rules/apache-2.0_667.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_667.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_668.RULE b/src/licensedcode/data/rules/apache-2.0_668.RULE index 29660796b6c..8e33c2aecd0 100644 --- a/src/licensedcode/data/rules/apache-2.0_668.RULE +++ b/src/licensedcode/data/rules/apache-2.0_668.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + copyrighted software made available under Version 2.0 of the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_668.yml b/src/licensedcode/data/rules/apache-2.0_668.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_668.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_669.RULE b/src/licensedcode/data/rules/apache-2.0_669.RULE index 632726d63df..8f376af6cca 100644 --- a/src/licensedcode/data/rules/apache-2.0_669.RULE +++ b/src/licensedcode/data/rules/apache-2.0_669.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under Version 2.0 of the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_669.yml b/src/licensedcode/data/rules/apache-2.0_669.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_669.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_67.RULE b/src/licensedcode/data/rules/apache-2.0_67.RULE index 1914f856a20..4070c349333 100644 --- a/src/licensedcode/data/rules/apache-2.0_67.RULE +++ b/src/licensedcode/data/rules/apache-2.0_67.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 99 +notes: in this rare and minor modification, the conditions in section 4 are numbered from 1 + to 4 as opposed of being numbered from a to d. +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -52,4 +63,4 @@ You may add Your own copyright statement to Your modifications and may provide a 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 +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_67.yml b/src/licensedcode/data/rules/apache-2.0_67.yml deleted file mode 100644 index 4375d82762e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_67.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 99 -notes: in this rare and minor modification, the conditions in section 4 are numbered from 1 - to 4 as opposed of being numbered from a to d. -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_670.RULE b/src/licensedcode/data/rules/apache-2.0_670.RULE index e2ac4471c58..b351fce8b70 100644 --- a/src/licensedcode/data/rules/apache-2.0_670.RULE +++ b/src/licensedcode/data/rules/apache-2.0_670.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + available under Version 2.0 of the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_670.yml b/src/licensedcode/data/rules/apache-2.0_670.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_670.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_671.RULE b/src/licensedcode/data/rules/apache-2.0_671.RULE index 7ad6484f5b6..948ff2c8b63 100644 --- a/src/licensedcode/data/rules/apache-2.0_671.RULE +++ b/src/licensedcode/data/rules/apache-2.0_671.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Version 2.0 of the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_671.yml b/src/licensedcode/data/rules/apache-2.0_671.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_671.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_672.RULE b/src/licensedcode/data/rules/apache-2.0_672.RULE index 2f98b04b3f9..b7cb5f19a6c 100644 --- a/src/licensedcode/data/rules/apache-2.0_672.RULE +++ b/src/licensedcode/data/rules/apache-2.0_672.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + software made available under Version 2.0 of the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_672.yml b/src/licensedcode/data/rules/apache-2.0_672.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_672.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_673.RULE b/src/licensedcode/data/rules/apache-2.0_673.RULE index 41fd3257c3d..9384bc9d88a 100644 --- a/src/licensedcode/data/rules/apache-2.0_673.RULE +++ b/src/licensedcode/data/rules/apache-2.0_673.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + made available under Version 2.0 of the Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_673.yml b/src/licensedcode/data/rules/apache-2.0_673.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_673.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_674.RULE b/src/licensedcode/data/rules/apache-2.0_674.RULE index 1dbc0013983..d76050b1616 100644 --- a/src/licensedcode/data/rules/apache-2.0_674.RULE +++ b/src/licensedcode/data/rules/apache-2.0_674.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: a fragment of Apache used as-is +--- + copyrighted software made available under Version 2.0 of the Apache License You must give any other recipients of the Work or Derivative Works a copy of diff --git a/src/licensedcode/data/rules/apache-2.0_674.yml b/src/licensedcode/data/rules/apache-2.0_674.yml deleted file mode 100644 index 097ee75322c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_674.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: a fragment of Apache used as-is diff --git a/src/licensedcode/data/rules/apache-2.0_675.RULE b/src/licensedcode/data/rules/apache-2.0_675.RULE index cba9eaeb373..3503dbd2b2f 100644 --- a/src/licensedcode/data/rules/apache-2.0_675.RULE +++ b/src/licensedcode/data/rules/apache-2.0_675.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license +--- + licenced under apache license 2.0, see licence for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_675.yml b/src/licensedcode/data/rules/apache-2.0_675.yml deleted file mode 100644 index 326a8703f2e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_675.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license diff --git a/src/licensedcode/data/rules/apache-2.0_676.RULE b/src/licensedcode/data/rules/apache-2.0_676.RULE index d8bbf9c6379..8e6873c595b 100644 --- a/src/licensedcode/data/rules/apache-2.0_676.RULE +++ b/src/licensedcode/data/rules/apache-2.0_676.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - APPENDIX +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + The default license for search engine is the Apache License, Version 2.0 (ALv2). The license text can be found at http://www.apache.org/licenses/LICENSE-2.0.txt and it is reproduced below. diff --git a/src/licensedcode/data/rules/apache-2.0_676.yml b/src/licensedcode/data/rules/apache-2.0_676.yml deleted file mode 100644 index edb8b0fd1d6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_676.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - APPENDIX -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_677.RULE b/src/licensedcode/data/rules/apache-2.0_677.RULE index 7947bf25a21..36c66167254 100644 --- a/src/licensedcode/data/rules/apache-2.0_677.RULE +++ b/src/licensedcode/data/rules/apache-2.0_677.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache License, Version 2.0 (ALv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_677.yml b/src/licensedcode/data/rules/apache-2.0_677.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_677.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_678.RULE b/src/licensedcode/data/rules/apache-2.0_678.RULE index 079ccd3deb5..dc5030cc4b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_678.RULE +++ b/src/licensedcode/data/rules/apache-2.0_678.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +--- + the ALv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_678.yml b/src/licensedcode/data/rules/apache-2.0_678.yml deleted file mode 100644 index b055fbb5a1d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_678.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_679.RULE b/src/licensedcode/data/rules/apache-2.0_679.RULE index e858c2f5f2c..e0f07795c21 100644 --- a/src/licensedcode/data/rules/apache-2.0_679.RULE +++ b/src/licensedcode/data/rules/apache-2.0_679.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - Magnesium.h +notes: https://github.com/ErikMcClure/magnesium/blob/25ad607e59cef1fb4a22852f753dadb602fba089/include/magnesium/Magnesium.h +--- + For conditions of distribution and use, see copyright notice in Magnesium.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_679.yml b/src/licensedcode/data/rules/apache-2.0_679.yml deleted file mode 100644 index 9c043b2c0de..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_679.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - Magnesium.h -notes: https://github.com/ErikMcClure/magnesium/blob/25ad607e59cef1fb4a22852f753dadb602fba089/include/magnesium/Magnesium.h diff --git a/src/licensedcode/data/rules/apache-2.0_68.RULE b/src/licensedcode/data/rules/apache-2.0_68.RULE index 47e19526f9b..abc5bfdad33 100644 --- a/src/licensedcode/data/rules/apache-2.0_68.RULE +++ b/src/licensedcode/data/rules/apache-2.0_68.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + __license__ = "Apache License, Version 2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_68.yml b/src/licensedcode/data/rules/apache-2.0_68.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_680.RULE b/src/licensedcode/data/rules/apache-2.0_680.RULE index 9a87e9541dd..adbd3e94b8d 100644 --- a/src/licensedcode/data/rules/apache-2.0_680.RULE +++ b/src/licensedcode/data/rules/apache-2.0_680.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache licence 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_680.yml b/src/licensedcode/data/rules/apache-2.0_680.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_680.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_681.RULE b/src/licensedcode/data/rules/apache-2.0_681.RULE index 7b284b08fd6..5895bebd6c9 100644 --- a/src/licensedcode/data/rules/apache-2.0_681.RULE +++ b/src/licensedcode/data/rules/apache-2.0_681.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This project is under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_681.yml b/src/licensedcode/data/rules/apache-2.0_681.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_681.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_682.RULE b/src/licensedcode/data/rules/apache-2.0_682.RULE index 8f70e282f7b..75745782d61 100644 --- a/src/licensedcode/data/rules/apache-2.0_682.RULE +++ b/src/licensedcode/data/rules/apache-2.0_682.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_682.yml b/src/licensedcode/data/rules/apache-2.0_682.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_682.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_683.RULE b/src/licensedcode/data/rules/apache-2.0_683.RULE index 6713103d982..830289b2a9f 100644 --- a/src/licensedcode/data/rules/apache-2.0_683.RULE +++ b/src/licensedcode/data/rules/apache-2.0_683.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is under the Apache License 2.0 - see the (LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_683.yml b/src/licensedcode/data/rules/apache-2.0_683.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_683.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_684.RULE b/src/licensedcode/data/rules/apache-2.0_684.RULE index bcc6a30e1a8..20636182593 100644 --- a/src/licensedcode/data/rules/apache-2.0_684.RULE +++ b/src/licensedcode/data/rules/apache-2.0_684.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_684.yml b/src/licensedcode/data/rules/apache-2.0_684.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_684.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_685.RULE b/src/licensedcode/data/rules/apache-2.0_685.RULE index a66f9bdcc0a..6133b86b00f 100644 --- a/src/licensedcode/data/rules/apache-2.0_685.RULE +++ b/src/licensedcode/data/rules/apache-2.0_685.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + under Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_685.yml b/src/licensedcode/data/rules/apache-2.0_685.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_685.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_686.RULE b/src/licensedcode/data/rules/apache-2.0_686.RULE index 8970474eb6e..4fb34655694 100644 --- a/src/licensedcode/data/rules/apache-2.0_686.RULE +++ b/src/licensedcode/data/rules/apache-2.0_686.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-2.0.txt +ignorable_urls: + - http://www.apache.org/licenses/ +--- + provided to you under the terms and conditions of the Apache License, Version 2.0. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_686.yml b/src/licensedcode/data/rules/apache-2.0_686.yml deleted file mode 100644 index 2168cb4a804..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_686.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-2.0.txt -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_687.RULE b/src/licensedcode/data/rules/apache-2.0_687.RULE index a5a26da89e1..82d1eb09eeb 100644 --- a/src/licensedcode/data/rules/apache-2.0_687.RULE +++ b/src/licensedcode/data/rules/apache-2.0_687.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-2.0.txt +ignorable_urls: + - http://www.apache.org/licenses/ +--- + The OSGi Materials are provided to you under the terms and conditions of the Apache License, Version 2.0. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_687.yml b/src/licensedcode/data/rules/apache-2.0_687.yml deleted file mode 100644 index 2168cb4a804..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_687.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-2.0.txt -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_688.RULE b/src/licensedcode/data/rules/apache-2.0_688.RULE index 99c0cdcd0b9..be898f2e0f3 100644 --- a/src/licensedcode/data/rules/apache-2.0_688.RULE +++ b/src/licensedcode/data/rules/apache-2.0_688.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-2.0.txt +ignorable_urls: + - http://www.apache.org/licenses/ +--- + The OSGi Materials are provided to you under the terms and conditions of the Apache License, Version 2.0. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_688.yml b/src/licensedcode/data/rules/apache-2.0_688.yml deleted file mode 100644 index 2168cb4a804..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_688.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-2.0.txt -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_689.RULE b/src/licensedcode/data/rules/apache-2.0_689.RULE index 6859217f36a..fa1eb323de6 100644 --- a/src/licensedcode/data/rules/apache-2.0_689.RULE +++ b/src/licensedcode/data/rules/apache-2.0_689.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-2.0.txt + - NOTICE.TXT +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + code is subject to the terms and conditions of the Apache License, Version 2.0. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http:// diff --git a/src/licensedcode/data/rules/apache-2.0_689.yml b/src/licensedcode/data/rules/apache-2.0_689.yml deleted file mode 100644 index 56febc9327b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_689.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-2.0.txt - - NOTICE.TXT -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_69.RULE b/src/licensedcode/data/rules/apache-2.0_69.RULE index e93cdbbd75e..653cedc3e2d 100644 --- a/src/licensedcode/data/rules/apache-2.0_69.RULE +++ b/src/licensedcode/data/rules/apache-2.0_69.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + __license__ = "http://www.apache.org/licenses/LICENSE-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_69.yml b/src/licensedcode/data/rules/apache-2.0_69.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_690.RULE b/src/licensedcode/data/rules/apache-2.0_690.RULE index dbd009d96bb..7f852473e09 100644 --- a/src/licensedcode/data/rules/apache-2.0_690.RULE +++ b/src/licensedcode/data/rules/apache-2.0_690.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-2.0.txt +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + code is subject to the terms and conditions of the Apache License, Version 2.0. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http:// diff --git a/src/licensedcode/data/rules/apache-2.0_690.yml b/src/licensedcode/data/rules/apache-2.0_690.yml deleted file mode 100644 index a784f569339..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_690.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-2.0.txt -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_691.RULE b/src/licensedcode/data/rules/apache-2.0_691.RULE index 1bfd0a797c7..115cf521559 100644 --- a/src/licensedcode/data/rules/apache-2.0_691.RULE +++ b/src/licensedcode/data/rules/apache-2.0_691.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + code is subject to the terms and conditions of the Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_691.yml b/src/licensedcode/data/rules/apache-2.0_691.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_691.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_692.RULE b/src/licensedcode/data/rules/apache-2.0_692.RULE index 7754608bc1e..4338facbe9d 100644 --- a/src/licensedcode/data/rules/apache-2.0_692.RULE +++ b/src/licensedcode/data/rules/apache-2.0_692.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + subject to the terms and conditions of the Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_692.yml b/src/licensedcode/data/rules/apache-2.0_692.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_692.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_693.RULE b/src/licensedcode/data/rules/apache-2.0_693.RULE index f67edeb8438..502eaf3007e 100644 --- a/src/licensedcode/data/rules/apache-2.0_693.RULE +++ b/src/licensedcode/data/rules/apache-2.0_693.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation +--- + The plug-in includes software developed by The Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_693.yml b/src/licensedcode/data/rules/apache-2.0_693.yml deleted file mode 100644 index d24065f18e6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_693.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_authors: - - The Apache Software Foundation diff --git a/src/licensedcode/data/rules/apache-2.0_694.RULE b/src/licensedcode/data/rules/apache-2.0_694.RULE index 7b2166bf5b1..d778ba53123 100644 --- a/src/licensedcode/data/rules/apache-2.0_694.RULE +++ b/src/licensedcode/data/rules/apache-2.0_694.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ========================= Apache-2.0 ========================= diff --git a/src/licensedcode/data/rules/apache-2.0_694.yml b/src/licensedcode/data/rules/apache-2.0_694.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_694.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_695.RULE b/src/licensedcode/data/rules/apache-2.0_695.RULE index 3894f84a993..73e51736bcb 100644 --- a/src/licensedcode/data/rules/apache-2.0_695.RULE +++ b/src/licensedcode/data/rules/apache-2.0_695.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Permission to modify and redistribute is granted under the terms of the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_695.yml b/src/licensedcode/data/rules/apache-2.0_695.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_695.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_696.RULE b/src/licensedcode/data/rules/apache-2.0_696.RULE index 73b57062189..850eefb4c82 100644 --- a/src/licensedcode/data/rules/apache-2.0_696.RULE +++ b/src/licensedcode/data/rules/apache-2.0_696.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + # LICENSE This project falls under the Apache License 2.0, see the included LICENSE.txt file for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_696.yml b/src/licensedcode/data/rules/apache-2.0_696.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_696.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_697.RULE b/src/licensedcode/data/rules/apache-2.0_697.RULE index 038e8b17b0b..72aaa1d71a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_697.RULE +++ b/src/licensedcode/data/rules/apache-2.0_697.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This project falls under the Apache License 2.0, see the included LICENSE.txt file for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_697.yml b/src/licensedcode/data/rules/apache-2.0_697.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_697.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_698.RULE b/src/licensedcode/data/rules/apache-2.0_698.RULE index f5a17d6fdfa..d725ea66174 100644 --- a/src/licensedcode/data/rules/apache-2.0_698.RULE +++ b/src/licensedcode/data/rules/apache-2.0_698.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + falls under the Apache License v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_698.yml b/src/licensedcode/data/rules/apache-2.0_698.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_698.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_699.RULE b/src/licensedcode/data/rules/apache-2.0_699.RULE index b615bd5b580..dd15237252c 100644 --- a/src/licensedcode/data/rules/apache-2.0_699.RULE +++ b/src/licensedcode/data/rules/apache-2.0_699.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Apache License, V2.0 Apache License, V2.0 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_699.yml b/src/licensedcode/data/rules/apache-2.0_699.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_699.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_7.RULE b/src/licensedcode/data/rules/apache-2.0_7.RULE index 4f27991628c..5b1e7f0fec7 100644 --- a/src/licensedcode/data/rules/apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: apache 2.0 with disclaimer +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -8,4 +16,4 @@ # 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. +# limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_7.yml b/src/licensedcode/data/rules/apache-2.0_7.yml deleted file mode 100644 index 9cf9165d354..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: apache 2.0 with disclaimer -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_70.RULE b/src/licensedcode/data/rules/apache-2.0_70.RULE index e97bf01c50d..b93ed916ced 100644 --- a/src/licensedcode/data/rules/apache-2.0_70.RULE +++ b/src/licensedcode/data/rules/apache-2.0_70.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -171,5 +178,4 @@ 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. - + of your accepting any such warranty or additional liability. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_70.yml b/src/licensedcode/data/rules/apache-2.0_70.yml deleted file mode 100644 index c2f2fa12758..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_70.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_700.RULE b/src/licensedcode/data/rules/apache-2.0_700.RULE index 9e56adafca2..dba5689e686 100644 --- a/src/licensedcode/data/rules/apache-2.0_700.RULE +++ b/src/licensedcode/data/rules/apache-2.0_700.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Apache License, V2.0 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_700.yml b/src/licensedcode/data/rules/apache-2.0_700.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_700.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_701.RULE b/src/licensedcode/data/rules/apache-2.0_701.RULE index 22c85841225..b5b0d5a5576 100644 --- a/src/licensedcode/data/rules/apache-2.0_701.RULE +++ b/src/licensedcode/data/rules/apache-2.0_701.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This product is licensed to you under the Apache License version 2.0 (the License). You may not use this product except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_701.yml b/src/licensedcode/data/rules/apache-2.0_701.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_701.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_702.RULE b/src/licensedcode/data/rules/apache-2.0_702.RULE index 04b1a75aaca..76e4ee2fa11 100644 --- a/src/licensedcode/data/rules/apache-2.0_702.RULE +++ b/src/licensedcode/data/rules/apache-2.0_702.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This product is licensed to you under the Apache License version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_702.yml b/src/licensedcode/data/rules/apache-2.0_702.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_702.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_703.RULE b/src/licensedcode/data/rules/apache-2.0_703.RULE index 01cc384b0f8..0e8df16e7f1 100644 --- a/src/licensedcode/data/rules/apache-2.0_703.RULE +++ b/src/licensedcode/data/rules/apache-2.0_703.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + made under the terms of the Apache V2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_703.yml b/src/licensedcode/data/rules/apache-2.0_703.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_703.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_704.RULE b/src/licensedcode/data/rules/apache-2.0_704.RULE index 06fc8c0b3ad..637dacb74a1 100644 --- a/src/licensedcode/data/rules/apache-2.0_704.RULE +++ b/src/licensedcode/data/rules/apache-2.0_704.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: Seen in python-registry +--- + released under the Apache 2.0 license. Before that, was released under the GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_704.yml b/src/licensedcode/data/rules/apache-2.0_704.yml deleted file mode 100644 index 76befc328d2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_704.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: Seen in python-registry diff --git a/src/licensedcode/data/rules/apache-2.0_705.RULE b/src/licensedcode/data/rules/apache-2.0_705.RULE index 3d1c65a3d22..c2a01455709 100644 --- a/src/licensedcode/data/rules/apache-2.0_705.RULE +++ b/src/licensedcode/data/rules/apache-2.0_705.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: seen in pyzmq +--- + and inherits the Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_705.yml b/src/licensedcode/data/rules/apache-2.0_705.yml deleted file mode 100644 index f3aab03a428..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_705.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: seen in pyzmq diff --git a/src/licensedcode/data/rules/apache-2.0_706.RULE b/src/licensedcode/data/rules/apache-2.0_706.RULE index f810720d6af..32f394691c1 100644 --- a/src/licensedcode/data/rules/apache-2.0_706.RULE +++ b/src/licensedcode/data/rules/apache-2.0_706.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + All code in this package, old and new, is licensed under the Apache-2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_706.yml b/src/licensedcode/data/rules/apache-2.0_706.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_706.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_707.RULE b/src/licensedcode/data/rules/apache-2.0_707.RULE index f80dc52d0bb..7b660b69ed9 100644 --- a/src/licensedcode/data/rules/apache-2.0_707.RULE +++ b/src/licensedcode/data/rules/apache-2.0_707.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + published under the Apache License 2.0, see http://www.apache.org/licenses/LICENSE-2.0 for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_707.yml b/src/licensedcode/data/rules/apache-2.0_707.yml deleted file mode 100644 index ffe89d5bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_707.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_708.RULE b/src/licensedcode/data/rules/apache-2.0_708.RULE index b6e90b327da..0cf6ac9b4c5 100644 --- a/src/licensedcode/data/rules/apache-2.0_708.RULE +++ b/src/licensedcode/data/rules/apache-2.0_708.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 99 +notes: Seen in dulwich. This is an uncommon license reference to or later for apache For now + we report only apache-2.0 +--- + License: Apachev2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_708.yml b/src/licensedcode/data/rules/apache-2.0_708.yml deleted file mode 100644 index 3c271aba596..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_708.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 99 -notes: Seen in dulwich. This is an uncommon license reference to or later for apache For now - we report only apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_709.RULE b/src/licensedcode/data/rules/apache-2.0_709.RULE index 6e4a74b2cdd..6e539453ec2 100644 --- a/src/licensedcode/data/rules/apache-2.0_709.RULE +++ b/src/licensedcode/data/rules/apache-2.0_709.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: Debian copyright file paragraph footer +--- + License: Apache-2 On Debian systems the full text of the Apache License version 2 can be found in the `/usr/share/common-licenses/Apache-2.0' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_709.yml b/src/licensedcode/data/rules/apache-2.0_709.yml deleted file mode 100644 index 7ddd0eb7984..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_709.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: Debian copyright file paragraph footer diff --git a/src/licensedcode/data/rules/apache-2.0_71.RULE b/src/licensedcode/data/rules/apache-2.0_71.RULE index d5dad42913f..6c238cd9c44 100644 --- a/src/licensedcode/data/rules/apache-2.0_71.RULE +++ b/src/licensedcode/data/rules/apache-2.0_71.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_71.yml b/src/licensedcode/data/rules/apache-2.0_71.yml deleted file mode 100644 index e4069c974fd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_710.RULE b/src/licensedcode/data/rules/apache-2.0_710.RULE index 779ef0a3414..c5353d48f7e 100644 --- a/src/licensedcode/data/rules/apache-2.0_710.RULE +++ b/src/licensedcode/data/rules/apache-2.0_710.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +notes: Seen in dulwich. This is an uncommon license reference to a future Apache license version. + For now we report only apache-2.0 +--- + Apache License (version 2.0 or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_710.yml b/src/licensedcode/data/rules/apache-2.0_710.yml deleted file mode 100644 index 66f44457098..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_710.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -notes: Seen in dulwich. This is an uncommon license reference to a future Apache license version. - For now we report only apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_711.RULE b/src/licensedcode/data/rules/apache-2.0_711.RULE index e054e420498..51797952f88 100644 --- a/src/licensedcode/data/rules/apache-2.0_711.RULE +++ b/src/licensedcode/data/rules/apache-2.0_711.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License Unless otherwise noted, all original files are licensed under an diff --git a/src/licensedcode/data/rules/apache-2.0_711.yml b/src/licensedcode/data/rules/apache-2.0_711.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_711.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_712.RULE b/src/licensedcode/data/rules/apache-2.0_712.RULE index 059ff171673..eae08c1987a 100644 --- a/src/licensedcode/data/rules/apache-2.0_712.RULE +++ b/src/licensedcode/data/rules/apache-2.0_712.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_712.yml b/src/licensedcode/data/rules/apache-2.0_712.yml deleted file mode 100644 index 6443824cc09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_712.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_713.RULE b/src/licensedcode/data/rules/apache-2.0_713.RULE index af369193512..52e32341aa4 100644 --- a/src/licensedcode/data/rules/apache-2.0_713.RULE +++ b/src/licensedcode/data/rules/apache-2.0_713.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Apache 2.0 licensed project \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_713.yml b/src/licensedcode/data/rules/apache-2.0_713.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_713.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_714.RULE b/src/licensedcode/data/rules/apache-2.0_714.RULE index 4cd301b6a9e..2e6189195ca 100644 --- a/src/licensedcode/data/rules/apache-2.0_714.RULE +++ b/src/licensedcode/data/rules/apache-2.0_714.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + LICENSE INFORMATION: Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_714.yml b/src/licensedcode/data/rules/apache-2.0_714.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_714.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_715.RULE b/src/licensedcode/data/rules/apache-2.0_715.RULE index 2c3623c1d91..3268d703b57 100644 --- a/src/licensedcode/data/rules/apache-2.0_715.RULE +++ b/src/licensedcode/data/rules/apache-2.0_715.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the Apache License, Version 2.0, January 2004, a copy of which can be found in the LICENSE file at the root of this repository. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_715.yml b/src/licensedcode/data/rules/apache-2.0_715.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_715.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_716.RULE b/src/licensedcode/data/rules/apache-2.0_716.RULE index 7a534518352..c05fad74df5 100644 --- a/src/licensedcode/data/rules/apache-2.0_716.RULE +++ b/src/licensedcode/data/rules/apache-2.0_716.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.ASL20 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_716.yml b/src/licensedcode/data/rules/apache-2.0_716.yml deleted file mode 100644 index 637747e6117..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_716.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.ASL20 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_717.RULE b/src/licensedcode/data/rules/apache-2.0_717.RULE index bc98e36f761..8cb45c10ec5 100644 --- a/src/licensedcode/data/rules/apache-2.0_717.RULE +++ b/src/licensedcode/data/rules/apache-2.0_717.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licenced under the Apache License, 2.0: http:opensource.org/licenses/apache2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_717.yml b/src/licensedcode/data/rules/apache-2.0_717.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_717.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_718.RULE b/src/licensedcode/data/rules/apache-2.0_718.RULE index 76e2da212b2..22b7730e25c 100644 --- a/src/licensedcode/data/rules/apache-2.0_718.RULE +++ b/src/licensedcode/data/rules/apache-2.0_718.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licenced under the Apache License, 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_718.yml b/src/licensedcode/data/rules/apache-2.0_718.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_718.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_719.RULE b/src/licensedcode/data/rules/apache-2.0_719.RULE index 4c8e616842a..1b92c044e0a 100644 --- a/src/licensedcode/data/rules/apache-2.0_719.RULE +++ b/src/licensedcode/data/rules/apache-2.0_719.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 99 +--- + License: Apache License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_719.yml b/src/licensedcode/data/rules/apache-2.0_719.yml deleted file mode 100644 index cd387919657..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_719.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_72.RULE b/src/licensedcode/data/rules/apache-2.0_72.RULE index 18b25ed39a1..4b419417dbc 100644 --- a/src/licensedcode/data/rules/apache-2.0_72.RULE +++ b/src/licensedcode/data/rules/apache-2.0_72.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +--- + The project is licensed under the Apache License, Version 2.0. All new code created for contribution to the project is licensed under the Apache license. The project may contain files under different licenses in the event code was borrowed diff --git a/src/licensedcode/data/rules/apache-2.0_72.yml b/src/licensedcode/data/rules/apache-2.0_72.yml deleted file mode 100644 index 487153a7721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_72.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_720.RULE b/src/licensedcode/data/rules/apache-2.0_720.RULE index b78160a7592..ffa1a2ccaea 100644 --- a/src/licensedcode/data/rules/apache-2.0_720.RULE +++ b/src/licensedcode/data/rules/apache-2.0_720.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ========================= Apache-2.0 ========================= diff --git a/src/licensedcode/data/rules/apache-2.0_720.yml b/src/licensedcode/data/rules/apache-2.0_720.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_720.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_721.RULE b/src/licensedcode/data/rules/apache-2.0_721.RULE index 5fb6f662855..b236752cfb9 100644 --- a/src/licensedcode/data/rules/apache-2.0_721.RULE +++ b/src/licensedcode/data/rules/apache-2.0_721.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use the file in this project except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_721.yml b/src/licensedcode/data/rules/apache-2.0_721.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_721.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_722.RULE b/src/licensedcode/data/rules/apache-2.0_722.RULE index d49254b978f..ebeb4024c77 100644 --- a/src/licensedcode/data/rules/apache-2.0_722.RULE +++ b/src/licensedcode/data/rules/apache-2.0_722.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information diff --git a/src/licensedcode/data/rules/apache-2.0_722.yml b/src/licensedcode/data/rules/apache-2.0_722.yml deleted file mode 100644 index 810e3916ec3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_722.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_723.RULE b/src/licensedcode/data/rules/apache-2.0_723.RULE index 997c64af61a..942e7a68950 100644 --- a/src/licensedcode/data/rules/apache-2.0_723.RULE +++ b/src/licensedcode/data/rules/apache-2.0_723.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + # License [Apache License v2](https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_723.yml b/src/licensedcode/data/rules/apache-2.0_723.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_723.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_724.RULE b/src/licensedcode/data/rules/apache-2.0_724.RULE index f86ead3653a..47db62798c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_724.RULE +++ b/src/licensedcode/data/rules/apache-2.0_724.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.apache.org/ +--- + This product includes software developed by many people, and distributed under Contributor License Agreements to The Apache Software Foundation (http://www.apache.org/). See the accompanying COMMITTERS file and the diff --git a/src/licensedcode/data/rules/apache-2.0_724.yml b/src/licensedcode/data/rules/apache-2.0_724.yml deleted file mode 100644 index f00910af66a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_724.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_725.RULE b/src/licensedcode/data/rules/apache-2.0_725.RULE index 9b403fd3b55..45d02cb5640 100644 --- a/src/licensedcode/data/rules/apache-2.0_725.RULE +++ b/src/licensedcode/data/rules/apache-2.0_725.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. The ASF licenses this work to You under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance @@ -6,4 +17,4 @@ with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 On a Debian system, the license can be found at -/usr/share/common-licenses/Apache-2.0 . +/usr/share/common-licenses/Apache-2.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_725.yml b/src/licensedcode/data/rules/apache-2.0_725.yml deleted file mode 100644 index 2ff35000e94..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_725.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_726.RULE b/src/licensedcode/data/rules/apache-2.0_726.RULE index 61e9312548b..b997303ad34 100644 --- a/src/licensedcode/data/rules/apache-2.0_726.RULE +++ b/src/licensedcode/data/rules/apache-2.0_726.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_726.yml b/src/licensedcode/data/rules/apache-2.0_726.yml deleted file mode 100644 index 0301a9b8879..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_726.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_727.RULE b/src/licensedcode/data/rules/apache-2.0_727.RULE index 152ff210c28..db3ceac54c2 100644 --- a/src/licensedcode/data/rules/apache-2.0_727.RULE +++ b/src/licensedcode/data/rules/apache-2.0_727.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + under the Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_727.yml b/src/licensedcode/data/rules/apache-2.0_727.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_727.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_728.RULE b/src/licensedcode/data/rules/apache-2.0_728.RULE index 4b5f5c39848..6b0b718e477 100644 --- a/src/licensedcode/data/rules/apache-2.0_728.RULE +++ b/src/licensedcode/data/rules/apache-2.0_728.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 99 +notes: modified with alternative numbering of section 4 using numbers and not letters seen in + https://github.com/ninject/Ninject/blob/3ff6bdaad8cde418724b8b18edb3a457b9785f8e/LICENSE.txt +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_728.yml b/src/licensedcode/data/rules/apache-2.0_728.yml deleted file mode 100644 index 5f25757467f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_728.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 99 -notes: modified with alternative numbering of section 4 using numbers and not letters seen in - https://github.com/ninject/Ninject/blob/3ff6bdaad8cde418724b8b18edb3a457b9785f8e/LICENSE.txt -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_729.RULE b/src/licensedcode/data/rules/apache-2.0_729.RULE index d857e050f90..49708807afc 100644 --- a/src/licensedcode/data/rules/apache-2.0_729.RULE +++ b/src/licensedcode/data/rules/apache-2.0_729.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_729.yml b/src/licensedcode/data/rules/apache-2.0_729.yml deleted file mode 100644 index f0c04a8c08d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_729.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_73.RULE b/src/licensedcode/data/rules/apache-2.0_73.RULE index 24fead7325a..881eed19e8d 100644 --- a/src/licensedcode/data/rules/apache-2.0_73.RULE +++ b/src/licensedcode/data/rules/apache-2.0_73.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 80 +--- + is licensed under [Apache] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_73.yml b/src/licensedcode/data/rules/apache-2.0_73.yml deleted file mode 100644 index 6e209b4bd3c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/apache-2.0_730.RULE b/src/licensedcode/data/rules/apache-2.0_730.RULE index 505d4e1b9f9..6b0411ff79d 100644 --- a/src/licensedcode/data/rules/apache-2.0_730.RULE +++ b/src/licensedcode/data/rules/apache-2.0_730.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -10,4 +18,4 @@ See the License for the specific language governing permissions and limitations under the License. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. +See the Apache Version 2.0 License for 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_730.yml b/src/licensedcode/data/rules/apache-2.0_730.yml deleted file mode 100644 index 01c2666ecfa..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_730.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_731.RULE b/src/licensedcode/data/rules/apache-2.0_731.RULE index 9f30989e5fe..49abb2272b3 100644 --- a/src/licensedcode/data/rules/apache-2.0_731.RULE +++ b/src/licensedcode/data/rules/apache-2.0_731.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - NOTICE +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed by SAS under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_731.yml b/src/licensedcode/data/rules/apache-2.0_731.yml deleted file mode 100644 index f39e771a110..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_731.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - NOTICE -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_732.RULE b/src/licensedcode/data/rules/apache-2.0_732.RULE index f450c5aafce..35a9533d5c9 100644 --- a/src/licensedcode/data/rules/apache-2.0_732.RULE +++ b/src/licensedcode/data/rules/apache-2.0_732.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 97 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License:: Apache License, Version 2.0 Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_732.yml b/src/licensedcode/data/rules/apache-2.0_732.yml deleted file mode 100644 index 880c41b4afc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_732.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 97 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_733.RULE b/src/licensedcode/data/rules/apache-2.0_733.RULE index 4c928c7fef7..5e1d55ab741 100644 --- a/src/licensedcode/data/rules/apache-2.0_733.RULE +++ b/src/licensedcode/data/rules/apache-2.0_733.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) diff --git a/src/licensedcode/data/rules/apache-2.0_733.yml b/src/licensedcode/data/rules/apache-2.0_733.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_733.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_734.RULE b/src/licensedcode/data/rules/apache-2.0_734.RULE index 11326941e5b..711324e8f0a 100644 --- a/src/licensedcode/data/rules/apache-2.0_734.RULE +++ b/src/licensedcode/data/rules/apache-2.0_734.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under the Apache License v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_734.yml b/src/licensedcode/data/rules/apache-2.0_734.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_734.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_735.RULE b/src/licensedcode/data/rules/apache-2.0_735.RULE index 40e57d35b74..e058f75ea1e 100644 --- a/src/licensedcode/data/rules/apache-2.0_735.RULE +++ b/src/licensedcode/data/rules/apache-2.0_735.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_735.yml b/src/licensedcode/data/rules/apache-2.0_735.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_735.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_736.RULE b/src/licensedcode/data/rules/apache-2.0_736.RULE index 9ab98bbe823..a023ff17805 100644 --- a/src/licensedcode/data/rules/apache-2.0_736.RULE +++ b/src/licensedcode/data/rules/apache-2.0_736.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_736.yml b/src/licensedcode/data/rules/apache-2.0_736.yml deleted file mode 100644 index 032abe42c01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_736.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_737.RULE b/src/licensedcode/data/rules/apache-2.0_737.RULE index 88d4713f313..88e22d5a561 100644 --- a/src/licensedcode/data/rules/apache-2.0_737.RULE +++ b/src/licensedcode/data/rules/apache-2.0_737.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + is licensed under the Apache License, Version 2.0 (the "License"); you may not use the software except in compliance with the License. You may obtain a copy of diff --git a/src/licensedcode/data/rules/apache-2.0_737.yml b/src/licensedcode/data/rules/apache-2.0_737.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_737.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_738.RULE b/src/licensedcode/data/rules/apache-2.0_738.RULE index b4459d31171..e89d499999d 100644 --- a/src/licensedcode/data/rules/apache-2.0_738.RULE +++ b/src/licensedcode/data/rules/apache-2.0_738.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 98 +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ @@ -211,4 +220,4 @@ APPENDIX: How to apply the Apache License to your work 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_738.yml b/src/licensedcode/data/rules/apache-2.0_738.yml deleted file mode 100644 index f7bf5aaa1b7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_738.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 98 -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_739.RULE b/src/licensedcode/data/rules/apache-2.0_739.RULE index bb21942de62..b1d0fb3d314 100644 --- a/src/licensedcode/data/rules/apache-2.0_739.RULE +++ b/src/licensedcode/data/rules/apache-2.0_739.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ============LICENSE_START======================================================= ================================================================================ This software file is distributed by @@ -11,4 +19,4 @@ This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -============LICENSE_END========================================================= +============LICENSE_END========================================================= \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_739.yml b/src/licensedcode/data/rules/apache-2.0_739.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_739.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_74.RULE b/src/licensedcode/data/rules/apache-2.0_74.RULE index 71d1a6bcf98..dc787da73ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_74.RULE +++ b/src/licensedcode/data/rules/apache-2.0_74.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Code released under the Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_74.yml b/src/licensedcode/data/rules/apache-2.0_74.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_740.RULE b/src/licensedcode/data/rules/apache-2.0_740.RULE index c2ad78bde70..909c5f1f38c 100644 --- a/src/licensedcode/data/rules/apache-2.0_740.RULE +++ b/src/licensedcode/data/rules/apache-2.0_740.RULE @@ -1,7 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + "license": "Apache-2.0", "licenses": [ { "type": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0" } - ], + ], \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_740.yml b/src/licensedcode/data/rules/apache-2.0_740.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_740.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_741.RULE b/src/licensedcode/data/rules/apache-2.0_741.RULE index b93da760a96..0d06bb09f03 100644 --- a/src/licensedcode/data/rules/apache-2.0_741.RULE +++ b/src/licensedcode/data/rules/apache-2.0_741.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + This product includes software developed by The Apache Software Foundation (http://www.apache.org/). // NOTICE file corresponding to the section 4d of The Apache License, diff --git a/src/licensedcode/data/rules/apache-2.0_741.yml b/src/licensedcode/data/rules/apache-2.0_741.yml deleted file mode 100644 index 9e6110cead9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_741.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_authors: - - The Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_742.RULE b/src/licensedcode/data/rules/apache-2.0_742.RULE index 606856a85ec..2f92312c8e3 100644 --- a/src/licensedcode/data/rules/apache-2.0_742.RULE +++ b/src/licensedcode/data/rules/apache-2.0_742.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the GPL-compatible [https://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_742.yml b/src/licensedcode/data/rules/apache-2.0_742.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_742.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_743.RULE b/src/licensedcode/data/rules/apache-2.0_743.RULE index 1a21925bfaa..69d56965347 100644 --- a/src/licensedcode/data/rules/apache-2.0_743.RULE +++ b/src/licensedcode/data/rules/apache-2.0_743.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache 2.0 License (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_743.yml b/src/licensedcode/data/rules/apache-2.0_743.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_743.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_744.RULE b/src/licensedcode/data/rules/apache-2.0_744.RULE index 0b443c930dc..65e9a919808 100644 --- a/src/licensedcode/data/rules/apache-2.0_744.RULE +++ b/src/licensedcode/data/rules/apache-2.0_744.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + The APL v2.0: @@ -15,4 +26,4 @@ The APL v2.0: limitations under the License. On Debian systems, the complete text of the Apache License Version 2.0, -can be found in the /usr/share/common-licenses/Apache-2.0 file. +can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_744.yml b/src/licensedcode/data/rules/apache-2.0_744.yml deleted file mode 100644 index 032abe42c01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_744.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_745.RULE b/src/licensedcode/data/rules/apache-2.0_745.RULE index 02e78a577c0..f6380eef3e3 100644 --- a/src/licensedcode/data/rules/apache-2.0_745.RULE +++ b/src/licensedcode/data/rules/apache-2.0_745.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_745.yml b/src/licensedcode/data/rules/apache-2.0_745.yml deleted file mode 100644 index 537a90d6cfc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_745.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_746.RULE b/src/licensedcode/data/rules/apache-2.0_746.RULE index 8305fcb8363..aa01797b930 100644 --- a/src/licensedcode/data/rules/apache-2.0_746.RULE +++ b/src/licensedcode/data/rules/apache-2.0_746.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_746.yml b/src/licensedcode/data/rules/apache-2.0_746.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_746.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_747.RULE b/src/licensedcode/data/rules/apache-2.0_747.RULE index 426cc656bfc..4e4b554dcff 100644 --- a/src/licensedcode/data/rules/apache-2.0_747.RULE +++ b/src/licensedcode/data/rules/apache-2.0_747.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + SDK is licensed under the Apache Licence, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_747.yml b/src/licensedcode/data/rules/apache-2.0_747.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_747.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_748.RULE b/src/licensedcode/data/rules/apache-2.0_748.RULE index 08ea5ae6489..3f17d16b20f 100644 --- a/src/licensedcode/data/rules/apache-2.0_748.RULE +++ b/src/licensedcode/data/rules/apache-2.0_748.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.eclipse.org/ + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + License The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the diff --git a/src/licensedcode/data/rules/apache-2.0_748.yml b/src/licensedcode/data/rules/apache-2.0_748.yml deleted file mode 100644 index 3f421261f20..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_748.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.eclipse.org/ - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_749.RULE b/src/licensedcode/data/rules/apache-2.0_749.RULE index ee641607d22..af1cbab4433 100644 --- a/src/licensedcode/data/rules/apache-2.0_749.RULE +++ b/src/licensedcode/data/rules/apache-2.0_749.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + The majority of the source code in the project is licensed under the terms of the Apache License, Version 2.0, available from: - {{ https://www.apache.org/licenses/LICENSE-2.0 }} + {{ https://www.apache.org/licenses/LICENSE-2.0 }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_749.yml b/src/licensedcode/data/rules/apache-2.0_749.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_749.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_75.RULE b/src/licensedcode/data/rules/apache-2.0_75.RULE index e304c41ac67..464bff4fab3 100644 --- a/src/licensedcode/data/rules/apache-2.0_75.RULE +++ b/src/licensedcode/data/rules/apache-2.0_75.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +notes: converted to markdown +--- + License ------------ diff --git a/src/licensedcode/data/rules/apache-2.0_75.yml b/src/licensedcode/data/rules/apache-2.0_75.yml deleted file mode 100644 index 59146d01363..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_75.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -notes: converted to markdown diff --git a/src/licensedcode/data/rules/apache-2.0_750.RULE b/src/licensedcode/data/rules/apache-2.0_750.RULE index 54280cbdf9f..f2b60f4aba4 100644 --- a/src/licensedcode/data/rules/apache-2.0_750.RULE +++ b/src/licensedcode/data/rules/apache-2.0_750.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: the Apache License, ASL Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_750.yml b/src/licensedcode/data/rules/apache-2.0_750.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_750.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_751.RULE b/src/licensedcode/data/rules/apache-2.0_751.RULE index 8c80a9f44ab..f98b78ab38d 100644 --- a/src/licensedcode/data/rules/apache-2.0_751.RULE +++ b/src/licensedcode/data/rules/apache-2.0_751.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0(the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_751.yml b/src/licensedcode/data/rules/apache-2.0_751.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_751.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_752.RULE b/src/licensedcode/data/rules/apache-2.0_752.RULE index ac0c47d928c..9af7c2ba73f 100644 --- a/src/licensedcode/data/rules/apache-2.0_752.RULE +++ b/src/licensedcode/data/rules/apache-2.0_752.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + freeware and licensed under the Apache 2.0 license. (https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_752.yml b/src/licensedcode/data/rules/apache-2.0_752.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_752.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_753.RULE b/src/licensedcode/data/rules/apache-2.0_753.RULE index deb1e8748a4..1fde498b18b 100644 --- a/src/licensedcode/data/rules/apache-2.0_753.RULE +++ b/src/licensedcode/data/rules/apache-2.0_753.RULE @@ -1,4 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 Licensed under the Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 -https://www.apache.org/licenses/LICENSE-2.0 +https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_753.yml b/src/licensedcode/data/rules/apache-2.0_753.yml deleted file mode 100644 index b5ecd1691fd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_753.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_754.RULE b/src/licensedcode/data/rules/apache-2.0_754.RULE index 1118cd7c166..89b9a40e189 100644 --- a/src/licensedcode/data/rules/apache-2.0_754.RULE +++ b/src/licensedcode/data/rules/apache-2.0_754.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_754.yml b/src/licensedcode/data/rules/apache-2.0_754.yml deleted file mode 100644 index f0c04a8c08d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_754.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_755.RULE b/src/licensedcode/data/rules/apache-2.0_755.RULE index 9ef87c6566a..e6d90a11a14 100644 --- a/src/licensedcode/data/rules/apache-2.0_755.RULE +++ b/src/licensedcode/data/rules/apache-2.0_755.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache Software License 2.0 (available at https://www.apache.org/licenses/LICENSE-2.0">https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_755.yml b/src/licensedcode/data/rules/apache-2.0_755.yml deleted file mode 100644 index ada8dfb5d98..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_755.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_756.RULE b/src/licensedcode/data/rules/apache-2.0_756.RULE index c9d624eca14..bbb76552ebd 100644 --- a/src/licensedcode/data/rules/apache-2.0_756.RULE +++ b/src/licensedcode/data/rules/apache-2.0_756.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache License, Version 2.0 (the "License"); you may not use the software except in compliance with the License. You may obtain a copy of the License at https://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_756.yml b/src/licensedcode/data/rules/apache-2.0_756.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_756.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_757.RULE b/src/licensedcode/data/rules/apache-2.0_757.RULE index 7ccac65e43c..1c51af505ae 100644 --- a/src/licensedcode/data/rules/apache-2.0_757.RULE +++ b/src/licensedcode/data/rules/apache-2.0_757.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The Apache Software License, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_757.yml b/src/licensedcode/data/rules/apache-2.0_757.yml deleted file mode 100644 index 79666cfe401..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_757.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_758.RULE b/src/licensedcode/data/rules/apache-2.0_758.RULE index 68ac8429d93..00d5734f62b 100644 --- a/src/licensedcode/data/rules/apache-2.0_758.RULE +++ b/src/licensedcode/data/rules/apache-2.0_758.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_758.yml b/src/licensedcode/data/rules/apache-2.0_758.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_758.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_759.RULE b/src/licensedcode/data/rules/apache-2.0_759.RULE index 561a29f9fca..161a981a4e9 100644 --- a/src/licensedcode/data/rules/apache-2.0_759.RULE +++ b/src/licensedcode/data/rules/apache-2.0_759.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Javascript library is licensed under the Apache License, Version 2.0: Licensed under the Apache License, Version 2.0 (the "License"); @@ -10,4 +19,4 @@ 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_759.yml b/src/licensedcode/data/rules/apache-2.0_759.yml deleted file mode 100644 index 9a2d8a5547e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_759.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_76.RULE b/src/licensedcode/data/rules/apache-2.0_76.RULE index 2773eb103f7..2d829234b88 100644 --- a/src/licensedcode/data/rules/apache-2.0_76.RULE +++ b/src/licensedcode/data/rules/apache-2.0_76.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +notes: converted to markdown +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + http://www.apache.org/licenses/LICENSE-2.0.txt - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_76.yml b/src/licensedcode/data/rules/apache-2.0_76.yml deleted file mode 100644 index 6ce40a10738..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_76.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -notes: converted to markdown -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_760.RULE b/src/licensedcode/data/rules/apache-2.0_760.RULE index 69e3b0b5248..cd19866ebe6 100644 --- a/src/licensedcode/data/rules/apache-2.0_760.RULE +++ b/src/licensedcode/data/rules/apache-2.0_760.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache License (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_760.yml b/src/licensedcode/data/rules/apache-2.0_760.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_760.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_761.RULE b/src/licensedcode/data/rules/apache-2.0_761.RULE index c7a9953832e..4b647864076 100644 --- a/src/licensedcode/data/rules/apache-2.0_761.RULE +++ b/src/licensedcode/data/rules/apache-2.0_761.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The Apache Software License, Version 2.0 -https://www.apache.org/licenses/LICENSE-2.0.txt +https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_761.yml b/src/licensedcode/data/rules/apache-2.0_761.yml deleted file mode 100644 index 65d0cf686e3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_761.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_762.RULE b/src/licensedcode/data/rules/apache-2.0_762.RULE index 0fc6f60d7e9..3c8d40145b8 100644 --- a/src/licensedcode/data/rules/apache-2.0_762.RULE +++ b/src/licensedcode/data/rules/apache-2.0_762.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +--- + is Apache-licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_762.yml b/src/licensedcode/data/rules/apache-2.0_762.yml deleted file mode 100644 index 24046f9733d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_762.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_763.RULE b/src/licensedcode/data/rules/apache-2.0_763.RULE index 395db776e70..da82bc4350b 100644 --- a/src/licensedcode/data/rules/apache-2.0_763.RULE +++ b/src/licensedcode/data/rules/apache-2.0_763.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_763.yml b/src/licensedcode/data/rules/apache-2.0_763.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_763.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_764.RULE b/src/licensedcode/data/rules/apache-2.0_764.RULE index 523530ef087..f5970dd39ae 100644 --- a/src/licensedcode/data/rules/apache-2.0_764.RULE +++ b/src/licensedcode/data/rules/apache-2.0_764.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache 2.0 License Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,4 +20,4 @@ Apache 2.0 License See the License for the specific language governing permissions and limitations under the License. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. +See the Apache Version 2.0 License for 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_764.yml b/src/licensedcode/data/rules/apache-2.0_764.yml deleted file mode 100644 index 01c2666ecfa..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_764.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_765.RULE b/src/licensedcode/data/rules/apache-2.0_765.RULE index 665337a97c0..d17d6dd2d4e 100644 --- a/src/licensedcode/data/rules/apache-2.0_765.RULE +++ b/src/licensedcode/data/rules/apache-2.0_765.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + # ===============LICENSE_START======================================================= # Apache-2.0 # =================================================================================== @@ -13,4 +21,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -# ===============LICENSE_END========================================================= +# ===============LICENSE_END========================================================= \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_765.yml b/src/licensedcode/data/rules/apache-2.0_765.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_765.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_766.RULE b/src/licensedcode/data/rules/apache-2.0_766.RULE index e34e8586682..9ff55be4d84 100644 --- a/src/licensedcode/data/rules/apache-2.0_766.RULE +++ b/src/licensedcode/data/rules/apache-2.0_766.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + LICENSE * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -11,4 +19,4 @@ LICENSE * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. -LICENSE +LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_766.yml b/src/licensedcode/data/rules/apache-2.0_766.yml deleted file mode 100644 index 2ee23016eeb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_766.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_767.RULE b/src/licensedcode/data/rules/apache-2.0_767.RULE index 2257fc1bd3f..d26eea8f2dc 100644 --- a/src/licensedcode/data/rules/apache-2.0_767.RULE +++ b/src/licensedcode/data/rules/apache-2.0_767.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + [Apache License version 2](https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_767.yml b/src/licensedcode/data/rules/apache-2.0_767.yml deleted file mode 100644 index 537a90d6cfc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_767.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_768.RULE b/src/licensedcode/data/rules/apache-2.0_768.RULE index b51eb772881..1414e3bc454 100644 --- a/src/licensedcode/data/rules/apache-2.0_768.RULE +++ b/src/licensedcode/data/rules/apache-2.0_768.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +ignorable_urls: + - http://www.apache.org/ +--- + This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/src/licensedcode/data/rules/apache-2.0_768.yml b/src/licensedcode/data/rules/apache-2.0_768.yml deleted file mode 100644 index 05dc451e668..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_768.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_769.RULE b/src/licensedcode/data/rules/apache-2.0_769.RULE index 082f3ce5b86..8d2305cb32b 100644 --- a/src/licensedcode/data/rules/apache-2.0_769.RULE +++ b/src/licensedcode/data/rules/apache-2.0_769.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +--- + Includes software from other Apache Software Foundation projects, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_769.yml b/src/licensedcode/data/rules/apache-2.0_769.yml deleted file mode 100644 index 24046f9733d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_769.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_77.RULE b/src/licensedcode/data/rules/apache-2.0_77.RULE index dfb7aef6ee7..dad9fc2b79e 100644 --- a/src/licensedcode/data/rules/apache-2.0_77.RULE +++ b/src/licensedcode/data/rules/apache-2.0_77.RULE @@ -1 +1,9 @@ -https://www.apache.org/licenses/LICENSE-2.0 Apache-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + +https://www.apache.org/licenses/LICENSE-2.0 Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_77.yml b/src/licensedcode/data/rules/apache-2.0_77.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_770.RULE b/src/licensedcode/data/rules/apache-2.0_770.RULE index a0dd4381dae..3bccaf29378 100644 --- a/src/licensedcode/data/rules/apache-2.0_770.RULE +++ b/src/licensedcode/data/rules/apache-2.0_770.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache v2 (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_770.yml b/src/licensedcode/data/rules/apache-2.0_770.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_770.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_771.RULE b/src/licensedcode/data/rules/apache-2.0_771.RULE index 449bf04d514..f1430c14f2b 100644 --- a/src/licensedcode/data/rules/apache-2.0_771.RULE +++ b/src/licensedcode/data/rules/apache-2.0_771.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + name: Apache Public License 2.0 url: https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_771.yml b/src/licensedcode/data/rules/apache-2.0_771.yml deleted file mode 100644 index 65d0cf686e3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_771.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_772.RULE b/src/licensedcode/data/rules/apache-2.0_772.RULE index 0dc82066262..cef4b6f127b 100644 --- a/src/licensedcode/data/rules/apache-2.0_772.RULE +++ b/src/licensedcode/data/rules/apache-2.0_772.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + This project bundles the following dependencies under the Apache Software License 2.0. (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_772.yml b/src/licensedcode/data/rules/apache-2.0_772.yml deleted file mode 100644 index 79666cfe401..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_772.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_773.RULE b/src/licensedcode/data/rules/apache-2.0_773.RULE index e5626ee2ba2..eefa0415cf7 100644 --- a/src/licensedcode/data/rules/apache-2.0_773.RULE +++ b/src/licensedcode/data/rules/apache-2.0_773.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache Public License 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_773.yml b/src/licensedcode/data/rules/apache-2.0_773.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_773.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_774.RULE b/src/licensedcode/data/rules/apache-2.0_774.RULE index e6a796f692e..86da7c55c7c 100644 --- a/src/licensedcode/data/rules/apache-2.0_774.RULE +++ b/src/licensedcode/data/rules/apache-2.0_774.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: The Apache Software License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_774.yml b/src/licensedcode/data/rules/apache-2.0_774.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_774.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_775.RULE b/src/licensedcode/data/rules/apache-2.0_775.RULE index 1a229b5ecf9..3164b068dbd 100644 --- a/src/licensedcode/data/rules/apache-2.0_775.RULE +++ b/src/licensedcode/data/rules/apache-2.0_775.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + https://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_775.yml b/src/licensedcode/data/rules/apache-2.0_775.yml deleted file mode 100644 index 65d0cf686e3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_775.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_776.RULE b/src/licensedcode/data/rules/apache-2.0_776.RULE index a12fc63d9a8..ab7dee2cc95 100644 --- a/src/licensedcode/data/rules/apache-2.0_776.RULE +++ b/src/licensedcode/data/rules/apache-2.0_776.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + under Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_776.yml b/src/licensedcode/data/rules/apache-2.0_776.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_776.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_777.RULE b/src/licensedcode/data/rules/apache-2.0_777.RULE index 4d467ebf012..5ce92e65eab 100644 --- a/src/licensedcode/data/rules/apache-2.0_777.RULE +++ b/src/licensedcode/data/rules/apache-2.0_777.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + source code is licensed under the Apache Licence, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html). relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_777.yml b/src/licensedcode/data/rules/apache-2.0_777.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_777.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_778.RULE b/src/licensedcode/data/rules/apache-2.0_778.RULE index 2fbbb9573f8..c12e7281ae2 100644 --- a/src/licensedcode/data/rules/apache-2.0_778.RULE +++ b/src/licensedcode/data/rules/apache-2.0_778.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +--- + Apache-licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_778.yml b/src/licensedcode/data/rules/apache-2.0_778.yml deleted file mode 100644 index 24046f9733d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_778.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_779.RULE b/src/licensedcode/data/rules/apache-2.0_779.RULE index d6334ac0757..32ed105e5dd 100644 --- a/src/licensedcode/data/rules/apache-2.0_779.RULE +++ b/src/licensedcode/data/rules/apache-2.0_779.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE.txt +ignorable_authors: + - The Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + This product includes software developed by The Apache Software Foundation (http://www.apache.org/). See the LICENSE.txt for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_779.yml b/src/licensedcode/data/rules/apache-2.0_779.yml deleted file mode 100644 index eed34b0a1dd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_779.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE.txt -ignorable_authors: - - The Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_78.RULE b/src/licensedcode/data/rules/apache-2.0_78.RULE index 89b8c02f969..34a76974ca6 100644 --- a/src/licensedcode/data/rules/apache-2.0_78.RULE +++ b/src/licensedcode/data/rules/apache-2.0_78.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + project is licensed under the terms of the Apache License, Version 2.0, available from: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_78.yml b/src/licensedcode/data/rules/apache-2.0_78.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_78.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_780.RULE b/src/licensedcode/data/rules/apache-2.0_780.RULE index 05429e5e306..3b6bc3c4fd7 100644 --- a/src/licensedcode/data/rules/apache-2.0_780.RULE +++ b/src/licensedcode/data/rules/apache-2.0_780.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + license" : "Apache License, Version 2.0" -url" : "https://www.apache.org/licenses/LICENSE-2.0" +url" : "https://www.apache.org/licenses/LICENSE-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_780.yml b/src/licensedcode/data/rules/apache-2.0_780.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_780.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_781.RULE b/src/licensedcode/data/rules/apache-2.0_781.RULE index bb11e7981dc..849e7bb98e3 100644 --- a/src/licensedcode/data/rules/apache-2.0_781.RULE +++ b/src/licensedcode/data/rules/apache-2.0_781.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache 2 (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_781.yml b/src/licensedcode/data/rules/apache-2.0_781.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_781.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_782.RULE b/src/licensedcode/data/rules/apache-2.0_782.RULE index 3be8e98403e..bbba1d6189a 100644 --- a/src/licensedcode/data/rules/apache-2.0_782.RULE +++ b/src/licensedcode/data/rules/apache-2.0_782.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright 1999-2005 The Apache Software Foundation +ignorable_holders: + - The Apache Software Foundation +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_782.yml b/src/licensedcode/data/rules/apache-2.0_782.yml deleted file mode 100644 index 5f562f627c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_782.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright 1999-2005 The Apache Software Foundation -ignorable_holders: - - The Apache Software Foundation -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_783.RULE b/src/licensedcode/data/rules/apache-2.0_783.RULE index 2ad94b2cfc6..b9f385fb03a 100644 --- a/src/licensedcode/data/rules/apache-2.0_783.RULE +++ b/src/licensedcode/data/rules/apache-2.0_783.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 99 +notes: in this rare and minor modification, the conditions in section 4 are numbered from 1 + to 4 as opposed of being numbered from a to d. +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ @@ -52,4 +63,4 @@ You may add Your own copyright statement to Your modifications and may provide a 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 +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_783.yml b/src/licensedcode/data/rules/apache-2.0_783.yml deleted file mode 100644 index b6c38f871bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_783.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 99 -notes: in this rare and minor modification, the conditions in section 4 are numbered from 1 - to 4 as opposed of being numbered from a to d. -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_784.RULE b/src/licensedcode/data/rules/apache-2.0_784.RULE index 215292d34fb..01e2f1f3a0c 100644 --- a/src/licensedcode/data/rules/apache-2.0_784.RULE +++ b/src/licensedcode/data/rules/apache-2.0_784.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_784.yml b/src/licensedcode/data/rules/apache-2.0_784.yml deleted file mode 100644 index c9107072f6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_784.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_785.RULE b/src/licensedcode/data/rules/apache-2.0_785.RULE index c54fa4d0e17..b7c629e5452 100644 --- a/src/licensedcode/data/rules/apache-2.0_785.RULE +++ b/src/licensedcode/data/rules/apache-2.0_785.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + License Apache License Version 2.0, January 2004 diff --git a/src/licensedcode/data/rules/apache-2.0_785.yml b/src/licensedcode/data/rules/apache-2.0_785.yml deleted file mode 100644 index 2482730e8c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_785.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_786.RULE b/src/licensedcode/data/rules/apache-2.0_786.RULE index 67a9741ce7c..7465f71dc83 100644 --- a/src/licensedcode/data/rules/apache-2.0_786.RULE +++ b/src/licensedcode/data/rules/apache-2.0_786.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_786.yml b/src/licensedcode/data/rules/apache-2.0_786.yml deleted file mode 100644 index 2482730e8c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_786.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_787.RULE b/src/licensedcode/data/rules/apache-2.0_787.RULE index 23c81a9d1f1..b809db7df78 100644 --- a/src/licensedcode/data/rules/apache-2.0_787.RULE +++ b/src/licensedcode/data/rules/apache-2.0_787.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - NOTICE +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_787.yml b/src/licensedcode/data/rules/apache-2.0_787.yml deleted file mode 100644 index 42edae61bd7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_787.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - NOTICE -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_788.RULE b/src/licensedcode/data/rules/apache-2.0_788.RULE index 343b586b668..199e130c8cf 100644 --- a/src/licensedcode/data/rules/apache-2.0_788.RULE +++ b/src/licensedcode/data/rules/apache-2.0_788.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + freeware and licenced under the Apache 2.0 licence. (https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_788.yml b/src/licensedcode/data/rules/apache-2.0_788.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_788.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_789.RULE b/src/licensedcode/data/rules/apache-2.0_789.RULE index c6e4703cf4f..f87b95d289a 100644 --- a/src/licensedcode/data/rules/apache-2.0_789.RULE +++ b/src/licensedcode/data/rules/apache-2.0_789.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_789.yml b/src/licensedcode/data/rules/apache-2.0_789.yml deleted file mode 100644 index d359bff4181..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_789.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_79.RULE b/src/licensedcode/data/rules/apache-2.0_79.RULE index 739907d1297..04aeee2aabb 100644 --- a/src/licensedcode/data/rules/apache-2.0_79.RULE +++ b/src/licensedcode/data/rules/apache-2.0_79.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Apache License, Version 2.0, January 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_79.yml b/src/licensedcode/data/rules/apache-2.0_79.yml deleted file mode 100644 index c2f2fa12758..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_79.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_790.RULE b/src/licensedcode/data/rules/apache-2.0_790.RULE index a100d73a1c4..6ce8da5f01a 100644 --- a/src/licensedcode/data/rules/apache-2.0_790.RULE +++ b/src/licensedcode/data/rules/apache-2.0_790.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_790.yml b/src/licensedcode/data/rules/apache-2.0_790.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_790.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_791.RULE b/src/licensedcode/data/rules/apache-2.0_791.RULE index e807cdd4417..0db86a735a8 100644 --- a/src/licensedcode/data/rules/apache-2.0_791.RULE +++ b/src/licensedcode/data/rules/apache-2.0_791.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_791.yml b/src/licensedcode/data/rules/apache-2.0_791.yml deleted file mode 100644 index 2482730e8c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_791.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_792.RULE b/src/licensedcode/data/rules/apache-2.0_792.RULE index 368c161d51e..d32ef8a895d 100644 --- a/src/licensedcode/data/rules/apache-2.0_792.RULE +++ b/src/licensedcode/data/rules/apache-2.0_792.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat + - https://www.apache.org/licenses/LICENSE-2.0 +--- + (https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat ](https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_792.yml b/src/licensedcode/data/rules/apache-2.0_792.yml deleted file mode 100644 index 2ad9b5b5291..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_792.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_793.RULE b/src/licensedcode/data/rules/apache-2.0_793.RULE index 38ea1c82192..fa67989bd00 100644 --- a/src/licensedcode/data/rules/apache-2.0_793.RULE +++ b/src/licensedcode/data/rules/apache-2.0_793.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE.txt +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_793.yml b/src/licensedcode/data/rules/apache-2.0_793.yml deleted file mode 100644 index c5e9b01f2b1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_793.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE.txt -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_794.RULE b/src/licensedcode/data/rules/apache-2.0_794.RULE index cf8598b094a..52bbe9baab2 100644 --- a/src/licensedcode/data/rules/apache-2.0_794.RULE +++ b/src/licensedcode/data/rules/apache-2.0_794.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache 2.0 License: You may not use the identified files except in compliance with the Apache License, Version 2.0 (the "License.") diff --git a/src/licensedcode/data/rules/apache-2.0_794.yml b/src/licensedcode/data/rules/apache-2.0_794.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_794.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_795.RULE b/src/licensedcode/data/rules/apache-2.0_795.RULE index 7a0eb8ca95b..0e5c8021b76 100644 --- a/src/licensedcode/data/rules/apache-2.0_795.RULE +++ b/src/licensedcode/data/rules/apache-2.0_795.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 @@ -141,4 +148,4 @@ indemnify, defend, and hold each Contributor harmless for any liability incurred claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_795.yml b/src/licensedcode/data/rules/apache-2.0_795.yml deleted file mode 100644 index e1f029fd835..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_795.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_796.RULE b/src/licensedcode/data/rules/apache-2.0_796.RULE index f984f01933a..61426a912da 100644 --- a/src/licensedcode/data/rules/apache-2.0_796.RULE +++ b/src/licensedcode/data/rules/apache-2.0_796.RULE @@ -1,6 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + "licenses": [ { "type": "Apache-2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0" } - ], + ], \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_796.yml b/src/licensedcode/data/rules/apache-2.0_796.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_796.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_797.RULE b/src/licensedcode/data/rules/apache-2.0_797.RULE index fe6f335687a..1c2274957bf 100644 --- a/src/licensedcode/data/rules/apache-2.0_797.RULE +++ b/src/licensedcode/data/rules/apache-2.0_797.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://www.apache.org/licenses/LICENSE-2.0 . You may also have @@ -7,4 +15,4 @@ additional legal rights not granted by this license. unless required by applicable law or agreed to in writing, is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied; not even the implied warranty -of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_797.yml b/src/licensedcode/data/rules/apache-2.0_797.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_797.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_798.RULE b/src/licensedcode/data/rules/apache-2.0_798.RULE index d4f913501a0..30796581ca0 100644 --- a/src/licensedcode/data/rules/apache-2.0_798.RULE +++ b/src/licensedcode/data/rules/apache-2.0_798.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0https:/www.apache.org/licenses/LICENSE-2 +--- + This Font Software is licensed under the Apache License, Version 2.0. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0https://www.apache.org/licenses/LICENSE-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_798.yml b/src/licensedcode/data/rules/apache-2.0_798.yml deleted file mode 100644 index 0b856a4f885..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_798.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0https:/www.apache.org/licenses/LICENSE-2 diff --git a/src/licensedcode/data/rules/apache-2.0_799.RULE b/src/licensedcode/data/rules/apache-2.0_799.RULE index e3b527c7738..007943d3e62 100644 --- a/src/licensedcode/data/rules/apache-2.0_799.RULE +++ b/src/licensedcode/data/rules/apache-2.0_799.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 92 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_799.yml b/src/licensedcode/data/rules/apache-2.0_799.yml deleted file mode 100644 index 70387ed5162..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_799.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 92 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_8.RULE b/src/licensedcode/data/rules/apache-2.0_8.RULE index 08fac2f743e..f5ec92c5232 100644 --- a/src/licensedcode/data/rules/apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + The Apache Software License, Version 2.0 -http://www.apache.org/licenses/LICENSE-2.0.txt +http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_8.yml b/src/licensedcode/data/rules/apache-2.0_8.yml deleted file mode 100644 index 4b8e9b998e1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_80.RULE b/src/licensedcode/data/rules/apache-2.0_80.RULE index 9cbf6322d80..e7842762931 100644 --- a/src/licensedcode/data/rules/apache-2.0_80.RULE +++ b/src/licensedcode/data/rules/apache-2.0_80.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + is released under the [Apache License, Version 2.0]. [Apache License, Version 2.0]: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_80.yml b/src/licensedcode/data/rules/apache-2.0_80.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_800.RULE b/src/licensedcode/data/rules/apache-2.0_800.RULE index 5245af8d3b4..e61415ebaa8 100644 --- a/src/licensedcode/data/rules/apache-2.0_800.RULE +++ b/src/licensedcode/data/rules/apache-2.0_800.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses +--- + License: ASL, version 2 (https://www.apache.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_800.yml b/src/licensedcode/data/rules/apache-2.0_800.yml deleted file mode 100644 index 5bc966d273c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_800.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/apache-2.0_801.RULE b/src/licensedcode/data/rules/apache-2.0_801.RULE index cfd05fa9dc6..aa0079fded9 100644 --- a/src/licensedcode/data/rules/apache-2.0_801.RULE +++ b/src/licensedcode/data/rules/apache-2.0_801.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This program and the accompanying materials are made available under the terms of the under the Apache License, Version 2.0 (the "License”); you may not use this file except in compliance diff --git a/src/licensedcode/data/rules/apache-2.0_801.yml b/src/licensedcode/data/rules/apache-2.0_801.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_801.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_802.RULE b/src/licensedcode/data/rules/apache-2.0_802.RULE index d486476328b..c1ce78ead5a 100644 --- a/src/licensedcode/data/rules/apache-2.0_802.RULE +++ b/src/licensedcode/data/rules/apache-2.0_802.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Font Software is licensed under the Apache License, Version 2.0. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_802.yml b/src/licensedcode/data/rules/apache-2.0_802.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_802.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_803.RULE b/src/licensedcode/data/rules/apache-2.0_803.RULE index 8d8c2bf023d..a01742124ad 100644 --- a/src/licensedcode/data/rules/apache-2.0_803.RULE +++ b/src/licensedcode/data/rules/apache-2.0_803.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Version 2.0, January 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_803.yml b/src/licensedcode/data/rules/apache-2.0_803.yml deleted file mode 100644 index 2482730e8c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_803.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_804.RULE b/src/licensedcode/data/rules/apache-2.0_804.RULE index ae6b0246edd..e8571fa8a03 100644 --- a/src/licensedcode/data/rules/apache-2.0_804.RULE +++ b/src/licensedcode/data/rules/apache-2.0_804.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + apache2 Apache License Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.html + https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_804.yml b/src/licensedcode/data/rules/apache-2.0_804.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_804.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_805.RULE b/src/licensedcode/data/rules/apache-2.0_805.RULE index 80411cfb0a8..5ae370e1127 100644 --- a/src/licensedcode/data/rules/apache-2.0_805.RULE +++ b/src/licensedcode/data/rules/apache-2.0_805.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache Public License 2.0 (https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_805.yml b/src/licensedcode/data/rules/apache-2.0_805.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_805.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_806.RULE b/src/licensedcode/data/rules/apache-2.0_806.RULE index ed45609fc80..42424788fc6 100644 --- a/src/licensedcode/data/rules/apache-2.0_806.RULE +++ b/src/licensedcode/data/rules/apache-2.0_806.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 99 +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + EasyMock is provided under the terms of the Apache 2 license, which is one of the most liberal and complete open source licenses available. EasyMock License @@ -60,4 +69,4 @@ 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 https://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. +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 https://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_806.yml b/src/licensedcode/data/rules/apache-2.0_806.yml deleted file mode 100644 index 605f7cc0847..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_806.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 99 -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_807.RULE b/src/licensedcode/data/rules/apache-2.0_807.RULE index 398b00068a6..a610d58bfdb 100644 --- a/src/licensedcode/data/rules/apache-2.0_807.RULE +++ b/src/licensedcode/data/rules/apache-2.0_807.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + License Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_807.yml b/src/licensedcode/data/rules/apache-2.0_807.yml deleted file mode 100644 index 2482730e8c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_807.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_808.RULE b/src/licensedcode/data/rules/apache-2.0_808.RULE index d587ade5bb1..952e20a994b 100644 --- a/src/licensedcode/data/rules/apache-2.0_808.RULE +++ b/src/licensedcode/data/rules/apache-2.0_808.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information @@ -13,4 +21,4 @@ "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. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_808.yml b/src/licensedcode/data/rules/apache-2.0_808.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_808.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_809.RULE b/src/licensedcode/data/rules/apache-2.0_809.RULE index 7596dba7815..8dfee0197da 100644 --- a/src/licensedcode/data/rules/apache-2.0_809.RULE +++ b/src/licensedcode/data/rules/apache-2.0_809.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache License (v2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_809.yml b/src/licensedcode/data/rules/apache-2.0_809.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_809.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_81.RULE b/src/licensedcode/data/rules/apache-2.0_81.RULE index 76d9df0a83b..9dcb46a96df 100644 --- a/src/licensedcode/data/rules/apache-2.0_81.RULE +++ b/src/licensedcode/data/rules/apache-2.0_81.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + is licensed under the [Apache License, Version 2.0](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_81.yml b/src/licensedcode/data/rules/apache-2.0_81.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_810.RULE b/src/licensedcode/data/rules/apache-2.0_810.RULE index bd8ed0adf48..cadf70ab1de 100644 --- a/src/licensedcode/data/rules/apache-2.0_810.RULE +++ b/src/licensedcode/data/rules/apache-2.0_810.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: The Apache Software License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_810.yml b/src/licensedcode/data/rules/apache-2.0_810.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_810.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_811.RULE b/src/licensedcode/data/rules/apache-2.0_811.RULE index 9aa463a3dfc..a6b798d7d82 100644 --- a/src/licensedcode/data/rules/apache-2.0_811.RULE +++ b/src/licensedcode/data/rules/apache-2.0_811.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -183,4 +190,4 @@ incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_811.yml b/src/licensedcode/data/rules/apache-2.0_811.yml deleted file mode 100644 index 41c3bdd4bcd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_811.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_812.RULE b/src/licensedcode/data/rules/apache-2.0_812.RULE index eb1ae5e66b2..68d3ab717c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_812.RULE +++ b/src/licensedcode/data/rules/apache-2.0_812.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_812.yml b/src/licensedcode/data/rules/apache-2.0_812.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_812.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_813.RULE b/src/licensedcode/data/rules/apache-2.0_813.RULE index 7f7079ced62..cfb66a78676 100644 --- a/src/licensedcode/data/rules/apache-2.0_813.RULE +++ b/src/licensedcode/data/rules/apache-2.0_813.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_813.yml b/src/licensedcode/data/rules/apache-2.0_813.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_813.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_814.RULE b/src/licensedcode/data/rules/apache-2.0_814.RULE index 5167bd24c30..73f65b59eeb 100644 --- a/src/licensedcode/data/rules/apache-2.0_814.RULE +++ b/src/licensedcode/data/rules/apache-2.0_814.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + [Apache License v2](https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_814.yml b/src/licensedcode/data/rules/apache-2.0_814.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_814.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_815.RULE b/src/licensedcode/data/rules/apache-2.0_815.RULE index ddb95f3135b..b6917c730e7 100644 --- a/src/licensedcode/data/rules/apache-2.0_815.RULE +++ b/src/licensedcode/data/rules/apache-2.0_815.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + If licensing your own work: Copyright [yyyy] [name of copyright owner] diff --git a/src/licensedcode/data/rules/apache-2.0_815.yml b/src/licensedcode/data/rules/apache-2.0_815.yml deleted file mode 100644 index 34c34db1b7e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_815.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_816.RULE b/src/licensedcode/data/rules/apache-2.0_816.RULE index 1726c1568ee..edb81a569ab 100644 --- a/src/licensedcode/data/rules/apache-2.0_816.RULE +++ b/src/licensedcode/data/rules/apache-2.0_816.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html#contribu +--- + Legal aspects on Submission of Contributions (Patches)](https://www.apache.org/licenses/LICENSE-2.0.html#contribu 18 tions \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_816.yml b/src/licensedcode/data/rules/apache-2.0_816.yml deleted file mode 100644 index 180f6ab0b55..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_816.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html#contribu diff --git a/src/licensedcode/data/rules/apache-2.0_817.RULE b/src/licensedcode/data/rules/apache-2.0_817.RULE index 86b710388ef..0513951d500 100644 --- a/src/licensedcode/data/rules/apache-2.0_817.RULE +++ b/src/licensedcode/data/rules/apache-2.0_817.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 80 +--- + Apache-Style Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_817.yml b/src/licensedcode/data/rules/apache-2.0_817.yml deleted file mode 100644 index 6e209b4bd3c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_817.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/apache-2.0_818.RULE b/src/licensedcode/data/rules/apache-2.0_818.RULE index 41eee9dcbbc..420205301af 100644 --- a/src/licensedcode/data/rules/apache-2.0_818.RULE +++ b/src/licensedcode/data/rules/apache-2.0_818.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Apache License, Version 2.0, January 2004 https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_818.yml b/src/licensedcode/data/rules/apache-2.0_818.yml deleted file mode 100644 index e1f029fd835..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_818.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_819.RULE b/src/licensedcode/data/rules/apache-2.0_819.RULE index 907ce831ecc..bcd05332386 100644 --- a/src/licensedcode/data/rules/apache-2.0_819.RULE +++ b/src/licensedcode/data/rules/apache-2.0_819.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-2.0.txt +ignorable_urls: + - https://www.apache.org/licenses/ +--- + The OSGi Materials are provided to you under the terms and conditions of the Apache License, Version 2.0. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_819.yml b/src/licensedcode/data/rules/apache-2.0_819.yml deleted file mode 100644 index 088e4f49bb6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_819.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-2.0.txt -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_82.RULE b/src/licensedcode/data/rules/apache-2.0_82.RULE index 8919a52ce43..dba381e5ad9 100644 --- a/src/licensedcode/data/rules/apache-2.0_82.RULE +++ b/src/licensedcode/data/rules/apache-2.0_82.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + license-Apache%20License%202.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_82.yml b/src/licensedcode/data/rules/apache-2.0_82.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_820.RULE b/src/licensedcode/data/rules/apache-2.0_820.RULE index 0ad4560c5ad..356ad8025a2 100644 --- a/src/licensedcode/data/rules/apache-2.0_820.RULE +++ b/src/licensedcode/data/rules/apache-2.0_820.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt + - NOTICE.tx +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + distributed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0), see LICENSE.txt and NOTICE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_820.yml b/src/licensedcode/data/rules/apache-2.0_820.yml deleted file mode 100644 index 31c0ad754de..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_820.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt - - NOTICE.tx -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_821.RULE b/src/licensedcode/data/rules/apache-2.0_821.RULE index 39e2b1e3ab2..9610130b617 100644 --- a/src/licensedcode/data/rules/apache-2.0_821.RULE +++ b/src/licensedcode/data/rules/apache-2.0_821.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + The content developed by is distributed under the following license: I am providing code and resources in this repository to you under an open source diff --git a/src/licensedcode/data/rules/apache-2.0_821.yml b/src/licensedcode/data/rules/apache-2.0_821.yml deleted file mode 100644 index 096459e959c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_821.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_822.RULE b/src/licensedcode/data/rules/apache-2.0_822.RULE index 6acdabc497c..65939372730 100644 --- a/src/licensedcode/data/rules/apache-2.0_822.RULE +++ b/src/licensedcode/data/rules/apache-2.0_822.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0https:/www.apache.org/licenses/LICENSE-2.0 +--- + This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_822.yml b/src/licensedcode/data/rules/apache-2.0_822.yml deleted file mode 100644 index 52a5ea866cb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_822.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0https:/www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_823.RULE b/src/licensedcode/data/rules/apache-2.0_823.RULE index 963f1a0a53f..751518c9d14 100644 --- a/src/licensedcode/data/rules/apache-2.0_823.RULE +++ b/src/licensedcode/data/rules/apache-2.0_823.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + https://www.apache.org/licenses/LICENSE-2.0.html Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_823.yml b/src/licensedcode/data/rules/apache-2.0_823.yml deleted file mode 100644 index 59cd8902320..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_823.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_824.RULE b/src/licensedcode/data/rules/apache-2.0_824.RULE index c3c2a625873..03f45daacec 100644 --- a/src/licensedcode/data/rules/apache-2.0_824.RULE +++ b/src/licensedcode/data/rules/apache-2.0_824.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + fonts are licensed under the Apache 2.0 License. You may obtain a copy of the license at: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_824.yml b/src/licensedcode/data/rules/apache-2.0_824.yml deleted file mode 100644 index a601be1b922..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_824.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_825.RULE b/src/licensedcode/data/rules/apache-2.0_825.RULE index 6f0b34f16db..cf8cdd04414 100644 --- a/src/licensedcode/data/rules/apache-2.0_825.RULE +++ b/src/licensedcode/data/rules/apache-2.0_825.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + // Licensed under the Apache License, Version 2.0 (the "License"); // You may not use this file except in compliance with the License. // You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_825.yml b/src/licensedcode/data/rules/apache-2.0_825.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_825.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_826.RULE b/src/licensedcode/data/rules/apache-2.0_826.RULE index ef90406fb8a..70c84467aee 100644 --- a/src/licensedcode/data/rules/apache-2.0_826.RULE +++ b/src/licensedcode/data/rules/apache-2.0_826.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - APPENDIX +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The default license for search engine is the Apache License, Version 2.0 (ALv2). The license text can be found at https://www.apache.org/licenses/LICENSE-2.0.txt and it is reproduced below. diff --git a/src/licensedcode/data/rules/apache-2.0_826.yml b/src/licensedcode/data/rules/apache-2.0_826.yml deleted file mode 100644 index da56d73fb63..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_826.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - APPENDIX -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_827.RULE b/src/licensedcode/data/rules/apache-2.0_827.RULE index 58ab6f5a374..bdf59d7d254 100644 --- a/src/licensedcode/data/rules/apache-2.0_827.RULE +++ b/src/licensedcode/data/rules/apache-2.0_827.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + all the code in this distribution is now licensed under the Apache License: diff --git a/src/licensedcode/data/rules/apache-2.0_827.yml b/src/licensedcode/data/rules/apache-2.0_827.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_827.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_828.RULE b/src/licensedcode/data/rules/apache-2.0_828.RULE index c4207c6a2cb..0078097868c 100644 --- a/src/licensedcode/data/rules/apache-2.0_828.RULE +++ b/src/licensedcode/data/rules/apache-2.0_828.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_828.yml b/src/licensedcode/data/rules/apache-2.0_828.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_828.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_829.RULE b/src/licensedcode/data/rules/apache-2.0_829.RULE index bff2bce1015..3ef94556e27 100644 --- a/src/licensedcode/data/rules/apache-2.0_829.RULE +++ b/src/licensedcode/data/rules/apache-2.0_829.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + project is licensed under the terms of the Apache License, Version 2.0, available from: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_829.yml b/src/licensedcode/data/rules/apache-2.0_829.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_829.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_83.RULE b/src/licensedcode/data/rules/apache-2.0_83.RULE index 86e6e688b3f..da2b166501f 100644 --- a/src/licensedcode/data/rules/apache-2.0_83.RULE +++ b/src/licensedcode/data/rules/apache-2.0_83.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is provided under the [Apache-2.0 license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_83.yml b/src/licensedcode/data/rules/apache-2.0_83.yml deleted file mode 100644 index 14a802dc7ff..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_830.RULE b/src/licensedcode/data/rules/apache-2.0_830.RULE index 1207780a81f..b8449cac3f0 100644 --- a/src/licensedcode/data/rules/apache-2.0_830.RULE +++ b/src/licensedcode/data/rules/apache-2.0_830.RULE @@ -1 +1,9 @@ -License: $license.name (https://www.apache.org/licenses/LICENSE-2.0.txt +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + +License: $license.name (https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_830.yml b/src/licensedcode/data/rules/apache-2.0_830.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_830.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_831.RULE b/src/licensedcode/data/rules/apache-2.0_831.RULE index 1a688fa6c27..f8f55ea03e2 100644 --- a/src/licensedcode/data/rules/apache-2.0_831.RULE +++ b/src/licensedcode/data/rules/apache-2.0_831.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The interface software includes software licensed under the Apache Licence, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_831.yml b/src/licensedcode/data/rules/apache-2.0_831.yml deleted file mode 100644 index 1803b4253c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_831.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_832.RULE b/src/licensedcode/data/rules/apache-2.0_832.RULE index 714812ca0ff..f26947aceee 100644 --- a/src/licensedcode/data/rules/apache-2.0_832.RULE +++ b/src/licensedcode/data/rules/apache-2.0_832.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: ASF 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_832.yml b/src/licensedcode/data/rules/apache-2.0_832.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_832.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_833.RULE b/src/licensedcode/data/rules/apache-2.0_833.RULE index f379282ab07..ca06c4a1aff 100644 --- a/src/licensedcode/data/rules/apache-2.0_833.RULE +++ b/src/licensedcode/data/rules/apache-2.0_833.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + License licensed under the [Apache 2 license](https://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_833.yml b/src/licensedcode/data/rules/apache-2.0_833.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_833.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_834.RULE b/src/licensedcode/data/rules/apache-2.0_834.RULE index 6f377783785..6e32371530b 100644 --- a/src/licensedcode/data/rules/apache-2.0_834.RULE +++ b/src/licensedcode/data/rules/apache-2.0_834.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the diff --git a/src/licensedcode/data/rules/apache-2.0_834.yml b/src/licensedcode/data/rules/apache-2.0_834.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_834.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_835.RULE b/src/licensedcode/data/rules/apache-2.0_835.RULE index c1aedc377c6..1bc8dbc80dd 100644 --- a/src/licensedcode/data/rules/apache-2.0_835.RULE +++ b/src/licensedcode/data/rules/apache-2.0_835.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2 https://www.apache.org/licenses/LICENSE-2.0 - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_835.yml b/src/licensedcode/data/rules/apache-2.0_835.yml deleted file mode 100644 index 4d52ba9c0cd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_835.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_836.RULE b/src/licensedcode/data/rules/apache-2.0_836.RULE index 13ba1539c60..40c0bca62c4 100644 --- a/src/licensedcode/data/rules/apache-2.0_836.RULE +++ b/src/licensedcode/data/rules/apache-2.0_836.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_836.yml b/src/licensedcode/data/rules/apache-2.0_836.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_836.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_837.RULE b/src/licensedcode/data/rules/apache-2.0_837.RULE index d9983e5c57f..c4e8b73f2ef 100644 --- a/src/licensedcode/data/rules/apache-2.0_837.RULE +++ b/src/licensedcode/data/rules/apache-2.0_837.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licenses this file to you 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: @@ -8,4 +15,4 @@ * 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. + * under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_837.yml b/src/licensedcode/data/rules/apache-2.0_837.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_837.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_838.RULE b/src/licensedcode/data/rules/apache-2.0_838.RULE index 5230212eaa7..757e6a3e244 100644 --- a/src/licensedcode/data/rules/apache-2.0_838.RULE +++ b/src/licensedcode/data/rules/apache-2.0_838.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_838.yml b/src/licensedcode/data/rules/apache-2.0_838.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_838.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_839.RULE b/src/licensedcode/data/rules/apache-2.0_839.RULE index 31b3d61cd9f..6c262ca34be 100644 --- a/src/licensedcode/data/rules/apache-2.0_839.RULE +++ b/src/licensedcode/data/rules/apache-2.0_839.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + Apache 2 https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_839.yml b/src/licensedcode/data/rules/apache-2.0_839.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_839.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_84.RULE b/src/licensedcode/data/rules/apache-2.0_84.RULE index a22ca030e47..ea02a138027 100644 --- a/src/licensedcode/data/rules/apache-2.0_84.RULE +++ b/src/licensedcode/data/rules/apache-2.0_84.RULE @@ -1 +1,7 @@ - [Apache License v2] +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + + [Apache License v2] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_84.yml b/src/licensedcode/data/rules/apache-2.0_84.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_840.RULE b/src/licensedcode/data/rules/apache-2.0_840.RULE index c07cbde1a16..742e58b0d2d 100644 --- a/src/licensedcode/data/rules/apache-2.0_840.RULE +++ b/src/licensedcode/data/rules/apache-2.0_840.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_840.yml b/src/licensedcode/data/rules/apache-2.0_840.yml deleted file mode 100644 index 1a859bc03bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_840.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_841.RULE b/src/licensedcode/data/rules/apache-2.0_841.RULE index 74fd0e4aabc..90544f04ecb 100644 --- a/src/licensedcode/data/rules/apache-2.0_841.RULE +++ b/src/licensedcode/data/rules/apache-2.0_841.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + published under the Apache License 2.0, see https://www.apache.org/licenses/LICENSE-2.0 for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_841.yml b/src/licensedcode/data/rules/apache-2.0_841.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_841.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_842.RULE b/src/licensedcode/data/rules/apache-2.0_842.RULE index 03fd92aa177..1f18093c1ad 100644 --- a/src/licensedcode/data/rules/apache-2.0_842.RULE +++ b/src/licensedcode/data/rules/apache-2.0_842.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This Font Software is licensed under the Apache License, Version 2.0. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_842.yml b/src/licensedcode/data/rules/apache-2.0_842.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_842.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_843.RULE b/src/licensedcode/data/rules/apache-2.0_843.RULE index b3b55333a41..eb781a67554 100644 --- a/src/licensedcode/data/rules/apache-2.0_843.RULE +++ b/src/licensedcode/data/rules/apache-2.0_843.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + * The Project licenses this file to you 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: @@ -8,4 +16,4 @@ * 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. + * under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_843.yml b/src/licensedcode/data/rules/apache-2.0_843.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_843.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_844.RULE b/src/licensedcode/data/rules/apache-2.0_844.RULE index 784e031d735..b9e29fa7461 100644 --- a/src/licensedcode/data/rules/apache-2.0_844.RULE +++ b/src/licensedcode/data/rules/apache-2.0_844.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + [2]: , which is reproduced below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_844.yml b/src/licensedcode/data/rules/apache-2.0_844.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_844.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_845.RULE b/src/licensedcode/data/rules/apache-2.0_845.RULE index 0e6457403ac..72a03140661 100644 --- a/src/licensedcode/data/rules/apache-2.0_845.RULE +++ b/src/licensedcode/data/rules/apache-2.0_845.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 95 +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +22,4 @@ Licensed under the Apache License, Version 2.0 (the "License"); limitations under the License. . {{On Debian systems}}, the complete text of the Apache version 2.0 license - can be found in {{"/usr/share/common-licenses/Apache-2.0"}}. + can be found in {{"/usr/share/common-licenses/Apache-2.0"}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_845.yml b/src/licensedcode/data/rules/apache-2.0_845.yml deleted file mode 100644 index 3b4818f6497..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_845.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 95 -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_846.RULE b/src/licensedcode/data/rules/apache-2.0_846.RULE index 06cbc2063ef..ee572e92d19 100644 --- a/src/licensedcode/data/rules/apache-2.0_846.RULE +++ b/src/licensedcode/data/rules/apache-2.0_846.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + 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 @@ -7,4 +15,4 @@ You may obtain a copy of the License at This file 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_846.yml b/src/licensedcode/data/rules/apache-2.0_846.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_846.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_847.RULE b/src/licensedcode/data/rules/apache-2.0_847.RULE index a626b19812f..99d69c85f00 100644 --- a/src/licensedcode/data/rules/apache-2.0_847.RULE +++ b/src/licensedcode/data/rules/apache-2.0_847.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +22,4 @@ limitations under the License. On Debian systems, the complete text of Apache License, Version 2.0 -can be found in /usr/share/common-licenses/Apache-2.0 file. +can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_847.yml b/src/licensedcode/data/rules/apache-2.0_847.yml deleted file mode 100644 index 032abe42c01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_847.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_848.RULE b/src/licensedcode/data/rules/apache-2.0_848.RULE index da8a183731b..b906a71bee1 100644 --- a/src/licensedcode/data/rules/apache-2.0_848.RULE +++ b/src/licensedcode/data/rules/apache-2.0_848.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache 2.0 License (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_848.yml b/src/licensedcode/data/rules/apache-2.0_848.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_848.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_849.RULE b/src/licensedcode/data/rules/apache-2.0_849.RULE index 4f5d3162920..b4684719e83 100644 --- a/src/licensedcode/data/rules/apache-2.0_849.RULE +++ b/src/licensedcode/data/rules/apache-2.0_849.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache 2.0 License Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. diff --git a/src/licensedcode/data/rules/apache-2.0_849.yml b/src/licensedcode/data/rules/apache-2.0_849.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_849.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_85.RULE b/src/licensedcode/data/rules/apache-2.0_85.RULE index 277c9737e34..270c8e1f361 100644 --- a/src/licensedcode/data/rules/apache-2.0_85.RULE +++ b/src/licensedcode/data/rules/apache-2.0_85.RULE @@ -1 +1,9 @@ - [Apache License V2](https://www.apache.org/licenses/LICENSE-2.0) +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + + [Apache License V2](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_85.yml b/src/licensedcode/data/rules/apache-2.0_85.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_850.RULE b/src/licensedcode/data/rules/apache-2.0_850.RULE index 5321d103659..82311a739ab 100644 --- a/src/licensedcode/data/rules/apache-2.0_850.RULE +++ b/src/licensedcode/data/rules/apache-2.0_850.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 90 +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 @@ -199,5 +208,4 @@ 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. - + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_850.yml b/src/licensedcode/data/rules/apache-2.0_850.yml deleted file mode 100644 index 19645f38e37..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_850.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 90 -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_851.RULE b/src/licensedcode/data/rules/apache-2.0_851.RULE index c55abb2651a..b51950bf686 100644 --- a/src/licensedcode/data/rules/apache-2.0_851.RULE +++ b/src/licensedcode/data/rules/apache-2.0_851.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_851.yml b/src/licensedcode/data/rules/apache-2.0_851.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_851.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_852.RULE b/src/licensedcode/data/rules/apache-2.0_852.RULE index c1a2dc04036..b7b0d152076 100644 --- a/src/licensedcode/data/rules/apache-2.0_852.RULE +++ b/src/licensedcode/data/rules/apache-2.0_852.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + LICENCE_NAME=The Apache Software License, Version 2.0 LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_852.yml b/src/licensedcode/data/rules/apache-2.0_852.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_852.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_853.RULE b/src/licensedcode/data/rules/apache-2.0_853.RULE index 29ab60c3b9d..913bbe95603 100644 --- a/src/licensedcode/data/rules/apache-2.0_853.RULE +++ b/src/licensedcode/data/rules/apache-2.0_853.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + - Apache 2.0 : https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_853.yml b/src/licensedcode/data/rules/apache-2.0_853.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_853.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_854.RULE b/src/licensedcode/data/rules/apache-2.0_854.RULE index cc52e999848..b25afdb4bb8 100644 --- a/src/licensedcode/data/rules/apache-2.0_854.RULE +++ b/src/licensedcode/data/rules/apache-2.0_854.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License (https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_854.yml b/src/licensedcode/data/rules/apache-2.0_854.yml deleted file mode 100644 index 241a1d5fb48..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_854.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_855.RULE b/src/licensedcode/data/rules/apache-2.0_855.RULE index 52c9bd711ac..899dd869174 100644 --- a/src/licensedcode/data/rules/apache-2.0_855.RULE +++ b/src/licensedcode/data/rules/apache-2.0_855.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_855.yml b/src/licensedcode/data/rules/apache-2.0_855.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_855.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_856.RULE b/src/licensedcode/data/rules/apache-2.0_856.RULE index 318fc5a025c..d0a7c341931 100644 --- a/src/licensedcode/data/rules/apache-2.0_856.RULE +++ b/src/licensedcode/data/rules/apache-2.0_856.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ## License and Copyright Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_856.yml b/src/licensedcode/data/rules/apache-2.0_856.yml deleted file mode 100644 index 0301a9b8879..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_856.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_857.RULE b/src/licensedcode/data/rules/apache-2.0_857.RULE index d4a21c9bf5e..f4a45cdbc90 100644 --- a/src/licensedcode/data/rules/apache-2.0_857.RULE +++ b/src/licensedcode/data/rules/apache-2.0_857.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: see https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_857.yml b/src/licensedcode/data/rules/apache-2.0_857.yml deleted file mode 100644 index 2eb24f735ac..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_857.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: see https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_858.RULE b/src/licensedcode/data/rules/apache-2.0_858.RULE index 198d94725af..33b70277b24 100644 --- a/src/licensedcode/data/rules/apache-2.0_858.RULE +++ b/src/licensedcode/data/rules/apache-2.0_858.RULE @@ -1,5 +1,16 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt + - NOTICE.tx +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ## License This SDK is distributed under the [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0), -see LICENSE.txt and NOTICE.txt for more information. +see LICENSE.txt and NOTICE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_858.yml b/src/licensedcode/data/rules/apache-2.0_858.yml deleted file mode 100644 index 31c0ad754de..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_858.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt - - NOTICE.tx -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_859.RULE b/src/licensedcode/data/rules/apache-2.0_859.RULE index 5ed7ade70ab..3619f3bdf94 100644 --- a/src/licensedcode/data/rules/apache-2.0_859.RULE +++ b/src/licensedcode/data/rules/apache-2.0_859.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses +--- + * This code is released under the * Apache License Version 2.0 https://www.apache.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_859.yml b/src/licensedcode/data/rules/apache-2.0_859.yml deleted file mode 100644 index c84fed21289..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_859.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/apache-2.0_86.RULE b/src/licensedcode/data/rules/apache-2.0_86.RULE index 4f6bf906784..a230b06a06c 100644 --- a/src/licensedcode/data/rules/apache-2.0_86.RULE +++ b/src/licensedcode/data/rules/apache-2.0_86.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + is published under the Apache License, Version 2.0, January 2004 if not stated otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_86.yml b/src/licensedcode/data/rules/apache-2.0_86.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_860.RULE b/src/licensedcode/data/rules/apache-2.0_860.RULE index 2bcdbc100fb..f333cd2c544 100644 --- a/src/licensedcode/data/rules/apache-2.0_860.RULE +++ b/src/licensedcode/data/rules/apache-2.0_860.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This app uses third-party librarys that are licenced under the Apache 2.0 licence. Get the full text of the licence at https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_860.yml b/src/licensedcode/data/rules/apache-2.0_860.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_860.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_861.RULE b/src/licensedcode/data/rules/apache-2.0_861.RULE index 4d6d6c489c1..c552ff3ffec 100644 --- a/src/licensedcode/data/rules/apache-2.0_861.RULE +++ b/src/licensedcode/data/rules/apache-2.0_861.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ @@ -171,5 +178,4 @@ 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. - + of your accepting any such warranty or additional liability. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_861.yml b/src/licensedcode/data/rules/apache-2.0_861.yml deleted file mode 100644 index e1f029fd835..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_861.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_862.RULE b/src/licensedcode/data/rules/apache-2.0_862.RULE index 591cb5d1d82..71e71c5c52e 100644 --- a/src/licensedcode/data/rules/apache-2.0_862.RULE +++ b/src/licensedcode/data/rules/apache-2.0_862.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + licensed under the Apache Licence, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_862.yml b/src/licensedcode/data/rules/apache-2.0_862.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_862.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_863.RULE b/src/licensedcode/data/rules/apache-2.0_863.RULE index da16e3d9039..50ea1aba928 100644 --- a/src/licensedcode/data/rules/apache-2.0_863.RULE +++ b/src/licensedcode/data/rules/apache-2.0_863.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2 https://www.apache.org/licenses/LICENSE-2.0 - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_863.yml b/src/licensedcode/data/rules/apache-2.0_863.yml deleted file mode 100644 index 7442f9ea054..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_863.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_864.RULE b/src/licensedcode/data/rules/apache-2.0_864.RULE index 7bd56a5b046..71ed9ead3d4 100644 --- a/src/licensedcode/data/rules/apache-2.0_864.RULE +++ b/src/licensedcode/data/rules/apache-2.0_864.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE +--- + This script falls under the Apache License. See https://www.apache.org/licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_864.yml b/src/licensedcode/data/rules/apache-2.0_864.yml deleted file mode 100644 index e9dc73adbe9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_864.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_865.RULE b/src/licensedcode/data/rules/apache-2.0_865.RULE index a23f0d41a3d..05deea65ba8 100644 --- a/src/licensedcode/data/rules/apache-2.0_865.RULE +++ b/src/licensedcode/data/rules/apache-2.0_865.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_865.yml b/src/licensedcode/data/rules/apache-2.0_865.yml deleted file mode 100644 index 1c887228525..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_865.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_866.RULE b/src/licensedcode/data/rules/apache-2.0_866.RULE index 18cf4c54470..cc81dd3aeee 100644 --- a/src/licensedcode/data/rules/apache-2.0_866.RULE +++ b/src/licensedcode/data/rules/apache-2.0_866.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The Apache Software License, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_866.yml b/src/licensedcode/data/rules/apache-2.0_866.yml deleted file mode 100644 index c9c3202ba2c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_866.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_867.RULE b/src/licensedcode/data/rules/apache-2.0_867.RULE index 869229af99f..50f4886144a 100644 --- a/src/licensedcode/data/rules/apache-2.0_867.RULE +++ b/src/licensedcode/data/rules/apache-2.0_867.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, version 2.0 (the "License"): https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_867.yml b/src/licensedcode/data/rules/apache-2.0_867.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_867.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_868.RULE b/src/licensedcode/data/rules/apache-2.0_868.RULE index 7a0feb284f6..562a7361c17 100644 --- a/src/licensedcode/data/rules/apache-2.0_868.RULE +++ b/src/licensedcode/data/rules/apache-2.0_868.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + .. _`Apache Software License 2.0`: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_868.yml b/src/licensedcode/data/rules/apache-2.0_868.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_868.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_869.RULE b/src/licensedcode/data/rules/apache-2.0_869.RULE index cd48646523e..34c33e0ed82 100644 --- a/src/licensedcode/data/rules/apache-2.0_869.RULE +++ b/src/licensedcode/data/rules/apache-2.0_869.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-2.0.txt +ignorable_urls: + - https://www.apache.org/licenses/ +--- + provided to you under the terms and conditions of the Apache License, Version 2.0. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_869.yml b/src/licensedcode/data/rules/apache-2.0_869.yml deleted file mode 100644 index 088e4f49bb6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_869.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-2.0.txt -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_87.RULE b/src/licensedcode/data/rules/apache-2.0_87.RULE index f8b6c13c22e..154f0aaaa23 100644 --- a/src/licensedcode/data/rules/apache-2.0_87.RULE +++ b/src/licensedcode/data/rules/apache-2.0_87.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + source code is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html). relevance: 100 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_87.yml b/src/licensedcode/data/rules/apache-2.0_87.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_870.RULE b/src/licensedcode/data/rules/apache-2.0_870.RULE index d2993d904d5..763c56fb00c 100644 --- a/src/licensedcode/data/rules/apache-2.0_870.RULE +++ b/src/licensedcode/data/rules/apache-2.0_870.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: The Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_870.yml b/src/licensedcode/data/rules/apache-2.0_870.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_870.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_871.RULE b/src/licensedcode/data/rules/apache-2.0_871.RULE index b0143e9e2dc..64159cabe3b 100644 --- a/src/licensedcode/data/rules/apache-2.0_871.RULE +++ b/src/licensedcode/data/rules/apache-2.0_871.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0https:/www.apache.org/licenses/LICENSE-2.0 +--- + This Font Software is licensed under the Apache License, Version 2.0. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_871.yml b/src/licensedcode/data/rules/apache-2.0_871.yml deleted file mode 100644 index 52a5ea866cb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_871.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0https:/www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_872.RULE b/src/licensedcode/data/rules/apache-2.0_872.RULE index abc663a6e98..f540959340b 100644 --- a/src/licensedcode/data/rules/apache-2.0_872.RULE +++ b/src/licensedcode/data/rules/apache-2.0_872.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - notice.md +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + * See the notice.md file distributed with this work for additional * information regarding copyright ownership. * diff --git a/src/licensedcode/data/rules/apache-2.0_872.yml b/src/licensedcode/data/rules/apache-2.0_872.yml deleted file mode 100644 index eaab47560f0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_872.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - notice.md -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_873.RULE b/src/licensedcode/data/rules/apache-2.0_873.RULE index 1dcaa2e96cb..228a9125662 100644 --- a/src/licensedcode/data/rules/apache-2.0_873.RULE +++ b/src/licensedcode/data/rules/apache-2.0_873.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the diff --git a/src/licensedcode/data/rules/apache-2.0_873.yml b/src/licensedcode/data/rules/apache-2.0_873.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_873.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_874.RULE b/src/licensedcode/data/rules/apache-2.0_874.RULE index ae473716811..c49c4a73329 100644 --- a/src/licensedcode/data/rules/apache-2.0_874.RULE +++ b/src/licensedcode/data/rules/apache-2.0_874.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache Licence, version 2.0: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_874.yml b/src/licensedcode/data/rules/apache-2.0_874.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_874.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_875.RULE b/src/licensedcode/data/rules/apache-2.0_875.RULE index 71d9a25cd6f..12034859723 100644 --- a/src/licensedcode/data/rules/apache-2.0_875.RULE +++ b/src/licensedcode/data/rules/apache-2.0_875.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 @@ -170,4 +177,4 @@ 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 +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_875.yml b/src/licensedcode/data/rules/apache-2.0_875.yml deleted file mode 100644 index 41c3bdd4bcd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_875.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_876.RULE b/src/licensedcode/data/rules/apache-2.0_876.RULE index 96fcfd8ca16..eb74e90a61e 100644 --- a/src/licensedcode/data/rules/apache-2.0_876.RULE +++ b/src/licensedcode/data/rules/apache-2.0_876.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 98 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License, Version 2.0: Licensed under the Apache License, Version 2.0 (the "License"); you may not @@ -8,5 +16,4 @@ 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. - +under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_876.yml b/src/licensedcode/data/rules/apache-2.0_876.yml deleted file mode 100644 index 07c9e425ffa..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_876.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 98 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_877.RULE b/src/licensedcode/data/rules/apache-2.0_877.RULE index 64612738538..48197b49bde 100644 --- a/src/licensedcode/data/rules/apache-2.0_877.RULE +++ b/src/licensedcode/data/rules/apache-2.0_877.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/licensedcode/data/rules/apache-2.0_877.yml b/src/licensedcode/data/rules/apache-2.0_877.yml deleted file mode 100644 index 0301a9b8879..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_877.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_878.RULE b/src/licensedcode/data/rules/apache-2.0_878.RULE index eabfdabaeed..87c808c06af 100644 --- a/src/licensedcode/data/rules/apache-2.0_878.RULE +++ b/src/licensedcode/data/rules/apache-2.0_878.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - NOTICE +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed by under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_878.yml b/src/licensedcode/data/rules/apache-2.0_878.yml deleted file mode 100644 index 42edae61bd7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_878.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - NOTICE -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_879.RULE b/src/licensedcode/data/rules/apache-2.0_879.RULE index c143e6ebaa7..7274ef12197 100644 --- a/src/licensedcode/data/rules/apache-2.0_879.RULE +++ b/src/licensedcode/data/rules/apache-2.0_879.RULE @@ -1 +1,9 @@ -Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.txt +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + +Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_879.yml b/src/licensedcode/data/rules/apache-2.0_879.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_879.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_88.RULE b/src/licensedcode/data/rules/apache-2.0_88.RULE index 4ff87469472..aa6896c9488 100644 --- a/src/licensedcode/data/rules/apache-2.0_88.RULE +++ b/src/licensedcode/data/rules/apache-2.0_88.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + is licensed under the Apache Licence, Version 2.0 -(http://www.apache.org/licenses/LICENSE-2.0.html). +(http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_88.yml b/src/licensedcode/data/rules/apache-2.0_88.yml deleted file mode 100644 index f4be30dcf09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_880.RULE b/src/licensedcode/data/rules/apache-2.0_880.RULE index 4d308e9fa79..1b76705f504 100644 --- a/src/licensedcode/data/rules/apache-2.0_880.RULE +++ b/src/licensedcode/data/rules/apache-2.0_880.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + released under the [Apache License version 2](https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_880.yml b/src/licensedcode/data/rules/apache-2.0_880.yml deleted file mode 100644 index e2482af0102..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_880.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_881.RULE b/src/licensedcode/data/rules/apache-2.0_881.RULE index 0d955221adc..45ceaeff141 100644 --- a/src/licensedcode/data/rules/apache-2.0_881.RULE +++ b/src/licensedcode/data/rules/apache-2.0_881.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License Apache License @@ -86,6 +94,4 @@ To apply the Apache License to your work, attach the following boilerplate notic 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. - - + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_881.yml b/src/licensedcode/data/rules/apache-2.0_881.yml deleted file mode 100644 index f5d3c03148e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_881.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_882.RULE b/src/licensedcode/data/rules/apache-2.0_882.RULE index fac58c0b04e..604858d9b12 100644 --- a/src/licensedcode/data/rules/apache-2.0_882.RULE +++ b/src/licensedcode/data/rules/apache-2.0_882.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released to the public under the terms of the Apache 2.0 license. A copy can be found under the LICENSE file in the project root. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_882.yml b/src/licensedcode/data/rules/apache-2.0_882.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_882.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_883.RULE b/src/licensedcode/data/rules/apache-2.0_883.RULE index 376f337ed36..ef4aa1a0ce1 100644 --- a/src/licensedcode/data/rules/apache-2.0_883.RULE +++ b/src/licensedcode/data/rules/apache-2.0_883.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -12,4 +23,4 @@ License: Apache-2.0 limitations under the License. . On Debian-based systems the full text of the Apache version 2.0 license - can be found in `/usr/share/common-licenses/Apache-2.0'. + can be found in `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_883.yml b/src/licensedcode/data/rules/apache-2.0_883.yml deleted file mode 100644 index c9107072f6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_883.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_884.RULE b/src/licensedcode/data/rules/apache-2.0_884.RULE index d3ad88e2a45..58be2fd99ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_884.RULE +++ b/src/licensedcode/data/rules/apache-2.0_884.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + name: The Apache Software License, Version 2.0 -url: https://www.apache.org/licenses/LICENSE-2.0.txt +url: https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_884.yml b/src/licensedcode/data/rules/apache-2.0_884.yml deleted file mode 100644 index 47c1b6209bc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_884.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_885.RULE b/src/licensedcode/data/rules/apache-2.0_885.RULE index 507d4692c58..485ae67dac4 100644 --- a/src/licensedcode/data/rules/apache-2.0_885.RULE +++ b/src/licensedcode/data/rules/apache-2.0_885.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses +--- + `Apache-2.0` - [Apache, Version 2.0](https://www.apache.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_885.yml b/src/licensedcode/data/rules/apache-2.0_885.yml deleted file mode 100644 index de1d1a33629..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_885.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/apache-2.0_886.RULE b/src/licensedcode/data/rules/apache-2.0_886.RULE index 94b506994c1..f204ef49855 100644 --- a/src/licensedcode/data/rules/apache-2.0_886.RULE +++ b/src/licensedcode/data/rules/apache-2.0_886.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: Apache 2 (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_886.yml b/src/licensedcode/data/rules/apache-2.0_886.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_886.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_887.RULE b/src/licensedcode/data/rules/apache-2.0_887.RULE index 4f2563e776f..0321e77cb6f 100644 --- a/src/licensedcode/data/rules/apache-2.0_887.RULE +++ b/src/licensedcode/data/rules/apache-2.0_887.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + It is made available under the Apache 2 license. See the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_887.yml b/src/licensedcode/data/rules/apache-2.0_887.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_887.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_888.RULE b/src/licensedcode/data/rules/apache-2.0_888.RULE index 747a7da01fe..7409af7d45b 100644 --- a/src/licensedcode/data/rules/apache-2.0_888.RULE +++ b/src/licensedcode/data/rules/apache-2.0_888.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 95 +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 @@ -187,4 +196,4 @@ 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_888.yml b/src/licensedcode/data/rules/apache-2.0_888.yml deleted file mode 100644 index ce79da8edae..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_888.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 95 -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_889.RULE b/src/licensedcode/data/rules/apache-2.0_889.RULE index 9055e75e690..0f005e2fe1a 100644 --- a/src/licensedcode/data/rules/apache-2.0_889.RULE +++ b/src/licensedcode/data/rules/apache-2.0_889.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + POM_LICENCE_NAME=The Apache Software License, Version 2.0 POM_LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_889.yml b/src/licensedcode/data/rules/apache-2.0_889.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_889.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_89.RULE b/src/licensedcode/data/rules/apache-2.0_89.RULE index f54e3f8ebcc..a532578b5cb 100644 --- a/src/licensedcode/data/rules/apache-2.0_89.RULE +++ b/src/licensedcode/data/rules/apache-2.0_89.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_89.yml b/src/licensedcode/data/rules/apache-2.0_89.yml deleted file mode 100644 index 5fca6e6aa8e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_890.RULE b/src/licensedcode/data/rules/apache-2.0_890.RULE index f693ca272bc..8eeb832e9c2 100644 --- a/src/licensedcode/data/rules/apache-2.0_890.RULE +++ b/src/licensedcode/data/rules/apache-2.0_890.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the @@ -8,4 +15,4 @@ 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_890.yml b/src/licensedcode/data/rules/apache-2.0_890.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_890.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_891.RULE b/src/licensedcode/data/rules/apache-2.0_891.RULE index c7fa4e2ce54..74479562b2c 100644 --- a/src/licensedcode/data/rules/apache-2.0_891.RULE +++ b/src/licensedcode/data/rules/apache-2.0_891.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_891.yml b/src/licensedcode/data/rules/apache-2.0_891.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_891.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_892.RULE b/src/licensedcode/data/rules/apache-2.0_892.RULE index deb2e7b7c5f..476e2c51f0d 100644 --- a/src/licensedcode/data/rules/apache-2.0_892.RULE +++ b/src/licensedcode/data/rules/apache-2.0_892.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licensed under the Apache Licence 2.0 (https://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_892.yml b/src/licensedcode/data/rules/apache-2.0_892.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_892.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_893.RULE b/src/licensedcode/data/rules/apache-2.0_893.RULE index 134eaef245b..b1f55f42a4b 100644 --- a/src/licensedcode/data/rules/apache-2.0_893.RULE +++ b/src/licensedcode/data/rules/apache-2.0_893.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_893.yml b/src/licensedcode/data/rules/apache-2.0_893.yml deleted file mode 100644 index 65d0cf686e3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_893.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_894.RULE b/src/licensedcode/data/rules/apache-2.0_894.RULE index 7fbf750e9ab..e46833b4ba3 100644 --- a/src/licensedcode/data/rules/apache-2.0_894.RULE +++ b/src/licensedcode/data/rules/apache-2.0_894.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + is licensed under the Apache Licence, Version 2.0 -(https://www.apache.org/licenses/LICENSE-2.0.html). +(https://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_894.yml b/src/licensedcode/data/rules/apache-2.0_894.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_894.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_895.RULE b/src/licensedcode/data/rules/apache-2.0_895.RULE index e458a35fad6..9eb98e65294 100644 --- a/src/licensedcode/data/rules/apache-2.0_895.RULE +++ b/src/licensedcode/data/rules/apache-2.0_895.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_895.yml b/src/licensedcode/data/rules/apache-2.0_895.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_895.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_896.RULE b/src/licensedcode/data/rules/apache-2.0_896.RULE index 8dfd0e9194c..fbc89530453 100644 --- a/src/licensedcode/data/rules/apache-2.0_896.RULE +++ b/src/licensedcode/data/rules/apache-2.0_896.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - NOTICE +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with diff --git a/src/licensedcode/data/rules/apache-2.0_896.yml b/src/licensedcode/data/rules/apache-2.0_896.yml deleted file mode 100644 index c8de49118e2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_896.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - NOTICE -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_897.RULE b/src/licensedcode/data/rules/apache-2.0_897.RULE index d3b80009c97..6063443fcea 100644 --- a/src/licensedcode/data/rules/apache-2.0_897.RULE +++ b/src/licensedcode/data/rules/apache-2.0_897.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Terms of the Apache License, Version 2.0: Apache License diff --git a/src/licensedcode/data/rules/apache-2.0_897.yml b/src/licensedcode/data/rules/apache-2.0_897.yml deleted file mode 100644 index b31d071476b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_897.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_898.RULE b/src/licensedcode/data/rules/apache-2.0_898.RULE index 2a83bd23798..2be38f1cebf 100644 --- a/src/licensedcode/data/rules/apache-2.0_898.RULE +++ b/src/licensedcode/data/rules/apache-2.0_898.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +notes: converted to markdown +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + https://www.apache.org/licenses/LICENSE-2.0.txt - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_898.yml b/src/licensedcode/data/rules/apache-2.0_898.yml deleted file mode 100644 index 066554a08f2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_898.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -notes: converted to markdown -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_899.RULE b/src/licensedcode/data/rules/apache-2.0_899.RULE index ac7f6fbb2da..9ef1b18cef8 100644 --- a/src/licensedcode/data/rules/apache-2.0_899.RULE +++ b/src/licensedcode/data/rules/apache-2.0_899.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + the Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_899.yml b/src/licensedcode/data/rules/apache-2.0_899.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_899.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_9.RULE b/src/licensedcode/data/rules/apache-2.0_9.RULE index 28fb3e60692..08cb757696b 100644 --- a/src/licensedcode/data/rules/apache-2.0_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_9.RULE @@ -1 +1,7 @@ -licensed under the {{Apache 2}} license +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + +licensed under the {{Apache 2}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_9.yml b/src/licensedcode/data/rules/apache-2.0_9.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_90.RULE b/src/licensedcode/data/rules/apache-2.0_90.RULE index 3446fbcae47..14903be1b0e 100644 --- a/src/licensedcode/data/rules/apache-2.0_90.RULE +++ b/src/licensedcode/data/rules/apache-2.0_90.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + ## License This project is made available under the [Apache-2.0 License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_90.yml b/src/licensedcode/data/rules/apache-2.0_90.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_900.RULE b/src/licensedcode/data/rules/apache-2.0_900.RULE index 3c2073f3d59..35a5cb606f6 100644 --- a/src/licensedcode/data/rules/apache-2.0_900.RULE +++ b/src/licensedcode/data/rules/apache-2.0_900.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_900.yml b/src/licensedcode/data/rules/apache-2.0_900.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_900.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_901.RULE b/src/licensedcode/data/rules/apache-2.0_901.RULE index 7ebcb838025..b90e5fa5eff 100644 --- a/src/licensedcode/data/rules/apache-2.0_901.RULE +++ b/src/licensedcode/data/rules/apache-2.0_901.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Apache License version 2.0 Apache License diff --git a/src/licensedcode/data/rules/apache-2.0_901.yml b/src/licensedcode/data/rules/apache-2.0_901.yml deleted file mode 100644 index c34f4744e0d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_901.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_902.RULE b/src/licensedcode/data/rules/apache-2.0_902.RULE index 07b65fd588a..61213e0ca58 100644 --- a/src/licensedcode/data/rules/apache-2.0_902.RULE +++ b/src/licensedcode/data/rules/apache-2.0_902.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-2.0.txt +ignorable_urls: + - https://www.apache.org/licenses/ +--- + The OSGi Materials are provided to you under the terms and conditions of the Apache License, Version 2.0. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_902.yml b/src/licensedcode/data/rules/apache-2.0_902.yml deleted file mode 100644 index 088e4f49bb6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_902.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-2.0.txt -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_903.RULE b/src/licensedcode/data/rules/apache-2.0_903.RULE index 0176cddfa9c..12ff1b9695f 100644 --- a/src/licensedcode/data/rules/apache-2.0_903.RULE +++ b/src/licensedcode/data/rules/apache-2.0_903.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + licensed under the -{{Apache 2 license}}(https://www.apache.org/licenses/LICENSE-2.0.html). +{{Apache 2 license}}(https://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_903.yml b/src/licensedcode/data/rules/apache-2.0_903.yml deleted file mode 100644 index c4c26534368..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_903.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_904.RULE b/src/licensedcode/data/rules/apache-2.0_904.RULE index 5f081a8c983..ee47a13044a 100644 --- a/src/licensedcode/data/rules/apache-2.0_904.RULE +++ b/src/licensedcode/data/rules/apache-2.0_904.RULE @@ -1,4 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/ +--- + Currently it has been re-released under the Apache License, Version 2.0. Details of the Apache License, Version 2.0 can be found at: -https://www.apache.org/licenses/ +https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_904.yml b/src/licensedcode/data/rules/apache-2.0_904.yml deleted file mode 100644 index e1f029fd835..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_904.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_905.RULE b/src/licensedcode/data/rules/apache-2.0_905.RULE index 890108c6063..7c9ddcba50c 100644 --- a/src/licensedcode/data/rules/apache-2.0_905.RULE +++ b/src/licensedcode/data/rules/apache-2.0_905.RULE @@ -1 +1,9 @@ -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 https://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + +Licensed under the {{Apache License, Version 2.0}} (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. See the Apache Version 2.0 License for 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_905.yml b/src/licensedcode/data/rules/apache-2.0_905.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_905.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_906.RULE b/src/licensedcode/data/rules/apache-2.0_906.RULE index 1e20cfc46b0..c7f88e55fed 100644 --- a/src/licensedcode/data/rules/apache-2.0_906.RULE +++ b/src/licensedcode/data/rules/apache-2.0_906.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + __license__ = "https://www.apache.org/licenses/LICENSE-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_906.yml b/src/licensedcode/data/rules/apache-2.0_906.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_906.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_907.RULE b/src/licensedcode/data/rules/apache-2.0_907.RULE index a1db48bd825..aefe4d539bb 100644 --- a/src/licensedcode/data/rules/apache-2.0_907.RULE +++ b/src/licensedcode/data/rules/apache-2.0_907.RULE @@ -1 +1,9 @@ -License: Apache Software License - Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + +License: Apache Software License - Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_907.yml b/src/licensedcode/data/rules/apache-2.0_907.yml deleted file mode 100644 index 00139bd8c56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_907.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_908.RULE b/src/licensedcode/data/rules/apache-2.0_908.RULE index d3e7363d35d..afb613e2b56 100644 --- a/src/licensedcode/data/rules/apache-2.0_908.RULE +++ b/src/licensedcode/data/rules/apache-2.0_908.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + License: Apache License (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_908.yml b/src/licensedcode/data/rules/apache-2.0_908.yml deleted file mode 100644 index b5d2c2ab40d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_908.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_909.RULE b/src/licensedcode/data/rules/apache-2.0_909.RULE index c5148e94564..280413c48d4 100644 --- a/src/licensedcode/data/rules/apache-2.0_909.RULE +++ b/src/licensedcode/data/rules/apache-2.0_909.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the diff --git a/src/licensedcode/data/rules/apache-2.0_909.yml b/src/licensedcode/data/rules/apache-2.0_909.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_909.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_91.RULE b/src/licensedcode/data/rules/apache-2.0_91.RULE index f4e49ecd890..62481422005 100644 --- a/src/licensedcode/data/rules/apache-2.0_91.RULE +++ b/src/licensedcode/data/rules/apache-2.0_91.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +--- + license-Apache%202 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_91.yml b/src/licensedcode/data/rules/apache-2.0_91.yml deleted file mode 100644 index ac7cac7e3b0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_910.RULE b/src/licensedcode/data/rules/apache-2.0_910.RULE index f6397dfe527..bcbb8dc8ffb 100644 --- a/src/licensedcode/data/rules/apache-2.0_910.RULE +++ b/src/licensedcode/data/rules/apache-2.0_910.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_910.yml b/src/licensedcode/data/rules/apache-2.0_910.yml deleted file mode 100644 index 1e0b2f9baf6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_910.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_911.RULE b/src/licensedcode/data/rules/apache-2.0_911.RULE index ea5cc36473a..b7833ab6b27 100644 --- a/src/licensedcode/data/rules/apache-2.0_911.RULE +++ b/src/licensedcode/data/rules/apache-2.0_911.RULE @@ -1,4 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the {{Apache License}}, Version 2.0; you may not use this file except in compliance with the License. - https://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_911.yml b/src/licensedcode/data/rules/apache-2.0_911.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_911.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_912.RULE b/src/licensedcode/data/rules/apache-2.0_912.RULE index 6dcac2fe816..c0eed014fd4 100644 --- a/src/licensedcode/data/rules/apache-2.0_912.RULE +++ b/src/licensedcode/data/rules/apache-2.0_912.RULE @@ -1,3 +1,10 @@ -The source code of these files contains the appropriate copyright notices -as described in the Appendix of https://www.apache.org/licenses/LICENSE-2.0 +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- +The source code of these files contains the appropriate copyright notices +as described in the Appendix of https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_912.yml b/src/licensedcode/data/rules/apache-2.0_912.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_912.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_913.RULE b/src/licensedcode/data/rules/apache-2.0_913.RULE index 31db849ec16..cfcc545d50b 100644 --- a/src/licensedcode/data/rules/apache-2.0_913.RULE +++ b/src/licensedcode/data/rules/apache-2.0_913.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + License: Apache License 2.0 (https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_913.yml b/src/licensedcode/data/rules/apache-2.0_913.yml deleted file mode 100644 index 2a1d3b9e3a7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_913.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_914.RULE b/src/licensedcode/data/rules/apache-2.0_914.RULE index 0db54036c2e..718cb12ff31 100644 --- a/src/licensedcode/data/rules/apache-2.0_914.RULE +++ b/src/licensedcode/data/rules/apache-2.0_914.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + licenced under the GPL-compatible [https://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_914.yml b/src/licensedcode/data/rules/apache-2.0_914.yml deleted file mode 100644 index 6bd58b118c4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_914.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_915.RULE b/src/licensedcode/data/rules/apache-2.0_915.RULE index 111463ccc8d..05aaa6a4eef 100644 --- a/src/licensedcode/data/rules/apache-2.0_915.RULE +++ b/src/licensedcode/data/rules/apache-2.0_915.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -13,4 +20,4 @@ * 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_915.yml b/src/licensedcode/data/rules/apache-2.0_915.yml deleted file mode 100644 index bfe734b2e76..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_915.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_916.RULE b/src/licensedcode/data/rules/apache-2.0_916.RULE index 98c6c1b8cfc..7563e13ce91 100644 --- a/src/licensedcode/data/rules/apache-2.0_916.RULE +++ b/src/licensedcode/data/rules/apache-2.0_916.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.ASL20 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_916.yml b/src/licensedcode/data/rules/apache-2.0_916.yml deleted file mode 100644 index ee6d53d0b1b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_916.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.ASL20 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_917.RULE b/src/licensedcode/data/rules/apache-2.0_917.RULE index 5d007af4299..3719275df07 100644 --- a/src/licensedcode/data/rules/apache-2.0_917.RULE +++ b/src/licensedcode/data/rules/apache-2.0_917.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License Contributors Licensed under an [Apache-2.0](LICENSE) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_917.yml b/src/licensedcode/data/rules/apache-2.0_917.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_917.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_918.RULE b/src/licensedcode/data/rules/apache-2.0_918.RULE index c150b555713..7ab881bf86a 100644 --- a/src/licensedcode/data/rules/apache-2.0_918.RULE +++ b/src/licensedcode/data/rules/apache-2.0_918.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 98 +notes: | + incorrect Apache license text found in EasyEclipse + there is a minor typo in section 2 where "in License" is used instead + of "in this License" +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 @@ -199,4 +212,4 @@ 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_918.yml b/src/licensedcode/data/rules/apache-2.0_918.yml deleted file mode 100644 index 684ab334cd5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_918.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 98 -notes: | - incorrect Apache license text found in EasyEclipse - there is a minor typo in section 2 where "in License" is used instead - of "in this License" -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_919.RULE b/src/licensedcode/data/rules/apache-2.0_919.RULE index 3d56099fa2c..9872e2122b8 100644 --- a/src/licensedcode/data/rules/apache-2.0_919.RULE +++ b/src/licensedcode/data/rules/apache-2.0_919.RULE @@ -1,3 +1,9 @@ -Comment: On Debian systems the complete license text is available in - /usr/share/common-licenses/Apache-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- +Comment: On Debian systems the complete license text is available in + /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_919.yml b/src/licensedcode/data/rules/apache-2.0_919.yml deleted file mode 100644 index 61eb9344420..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_919.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_92.RULE b/src/licensedcode/data/rules/apache-2.0_92.RULE index 26890aeda36..40fdcaaf459 100644 --- a/src/licensedcode/data/rules/apache-2.0_92.RULE +++ b/src/licensedcode/data/rules/apache-2.0_92.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/apache-2.0 +--- + License: [`apache-2.0`](http://choosealicense.com/licenses/apache-2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_92.yml b/src/licensedcode/data/rules/apache-2.0_92.yml deleted file mode 100644 index 9fe3b9ebfc6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_920.RULE b/src/licensedcode/data/rules/apache-2.0_920.RULE index b7b12253c5c..3695e045c7f 100644 --- a/src/licensedcode/data/rules/apache-2.0_920.RULE +++ b/src/licensedcode/data/rules/apache-2.0_920.RULE @@ -1 +1,8 @@ -On Debian systems the complete text of the license can be found in /usr/share/common-licenses/Apache-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + +On Debian systems the complete text of the license can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_920.yml b/src/licensedcode/data/rules/apache-2.0_920.yml deleted file mode 100644 index 61eb9344420..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_920.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_921.RULE b/src/licensedcode/data/rules/apache-2.0_921.RULE index e943a1e296b..77175868460 100644 --- a/src/licensedcode/data/rules/apache-2.0_921.RULE +++ b/src/licensedcode/data/rules/apache-2.0_921.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + License: Apache-2.0 On Debian systems the complete text of the license can be found in - /usr/share/common-licenses/Apache-2.0 + /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_921.yml b/src/licensedcode/data/rules/apache-2.0_921.yml deleted file mode 100644 index f5fee8fe51a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_921.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_922.RULE b/src/licensedcode/data/rules/apache-2.0_922.RULE index bd5a32c7091..f87fe719884 100644 --- a/src/licensedcode/data/rules/apache-2.0_922.RULE +++ b/src/licensedcode/data/rules/apache-2.0_922.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -12,4 +22,4 @@ {{License: Apache-2.0 On Debian systems the complete text of the license can be found in - /usr/share/common-licenses/Apache-2.0 }} + /usr/share/common-licenses/Apache-2.0 }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_922.yml b/src/licensedcode/data/rules/apache-2.0_922.yml deleted file mode 100644 index e4e05134f51..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_922.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_923.RULE b/src/licensedcode/data/rules/apache-2.0_923.RULE index 451b50410c6..2349457d5b1 100644 --- a/src/licensedcode/data/rules/apache-2.0_923.RULE +++ b/src/licensedcode/data/rules/apache-2.0_923.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Comment: On Debian systems the complete license text is available in /usr/share/common-licenses/Apache-2.0 License @@ -11,4 +20,4 @@ License # 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. + # limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_923.yml b/src/licensedcode/data/rules/apache-2.0_923.yml deleted file mode 100644 index 9b18ef838cf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_923.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_924.RULE b/src/licensedcode/data/rules/apache-2.0_924.RULE index 8aa3d918977..6d8db95d9d5 100644 --- a/src/licensedcode/data/rules/apache-2.0_924.RULE +++ b/src/licensedcode/data/rules/apache-2.0_924.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work @@ -7,4 +16,4 @@ Licensed to the Apache Software Foundation (ASF) you may not use this file except in compliance with the License. You may obtain a copy of the License - at + at \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_924.yml b/src/licensedcode/data/rules/apache-2.0_924.yml deleted file mode 100644 index 9b18ef838cf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_924.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_925.RULE b/src/licensedcode/data/rules/apache-2.0_925.RULE index 720cd7c7621..4b2354790cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_925.RULE +++ b/src/licensedcode/data/rules/apache-2.0_925.RULE @@ -1,2 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: seen in https://raw.githubusercontent.com/swagger-api/swagger-codegen/v3.0.25/samples/composed/html2/index.html + was incorrectly detected as "apache-2.0 OR mit" +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + license-info">Apache 2.0
http://www.apache.org/licenses/LICENSE-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_925.yml b/src/licensedcode/data/rules/apache-2.0_925.yml deleted file mode 100644 index 7ac465ac5aa..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_925.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: seen in https://raw.githubusercontent.com/swagger-api/swagger-codegen/v3.0.25/samples/composed/html2/index.html - was incorrectly detected as "apache-2.0 OR mit" -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_926.RULE b/src/licensedcode/data/rules/apache-2.0_926.RULE index afcbd6acdc2..ba27178d9a1 100644 --- a/src/licensedcode/data/rules/apache-2.0_926.RULE +++ b/src/licensedcode/data/rules/apache-2.0_926.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + governed by the Apache License version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_926.yml b/src/licensedcode/data/rules/apache-2.0_926.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_926.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_927.RULE b/src/licensedcode/data/rules/apache-2.0_927.RULE index e76caa503d8..c17e6cd1455 100644 --- a/src/licensedcode/data/rules/apache-2.0_927.RULE +++ b/src/licensedcode/data/rules/apache-2.0_927.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: Seen in https://github.com/swagger-api/swagger-codegen/blob/ca9a00261f08f024dd19fa45c9ff2098fed67451/modules/swagger-codegen/src/main/java/io/swagger/codegen/DefaultGenerator.java#L6980 +--- + * The following code adds default LICENSE (Apache-2.0) for all generators * To use license other than Apache2.0, update the following file: * modules/swagger-codegen/src/main/resources/_common/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_927.yml b/src/licensedcode/data/rules/apache-2.0_927.yml deleted file mode 100644 index 747a51fe8bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_927.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: Seen in https://github.com/swagger-api/swagger-codegen/blob/ca9a00261f08f024dd19fa45c9ff2098fed67451/modules/swagger-codegen/src/main/java/io/swagger/codegen/DefaultGenerator.java#L6980 diff --git a/src/licensedcode/data/rules/apache-2.0_928.RULE b/src/licensedcode/data/rules/apache-2.0_928.RULE index ae43048b58a..3b24da5c023 100644 --- a/src/licensedcode/data/rules/apache-2.0_928.RULE +++ b/src/licensedcode/data/rules/apache-2.0_928.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: Seen in https://github.com/swagger-api/swagger-codegen/blob/ca9a00261f08f024dd19fa45c9ff2098fed67451/modules/swagger-codegen/src/main/java/io/swagger/codegen/DefaultGenerator.java#L6980 +--- + apache2License = "LICENSE"; \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_928.yml b/src/licensedcode/data/rules/apache-2.0_928.yml deleted file mode 100644 index 747a51fe8bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_928.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: Seen in https://github.com/swagger-api/swagger-codegen/blob/ca9a00261f08f024dd19fa45c9ff2098fed67451/modules/swagger-codegen/src/main/java/io/swagger/codegen/DefaultGenerator.java#L6980 diff --git a/src/licensedcode/data/rules/apache-2.0_929.RULE b/src/licensedcode/data/rules/apache-2.0_929.RULE index 3539b6293ed..8b91032f6c1 100644 --- a/src/licensedcode/data/rules/apache-2.0_929.RULE +++ b/src/licensedcode/data/rules/apache-2.0_929.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +notes: Seen in https://github.com/swagger-api/swagger-codegen/blob/ca9a00261f08f024dd19fa45c9ff2098fed67451/modules/swagger-codegen/src/main/java/io/swagger/codegen/DefaultGenerator.java#L6980 +--- + apache2License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_929.yml b/src/licensedcode/data/rules/apache-2.0_929.yml deleted file mode 100644 index b3b664c44a8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_929.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -notes: Seen in https://github.com/swagger-api/swagger-codegen/blob/ca9a00261f08f024dd19fa45c9ff2098fed67451/modules/swagger-codegen/src/main/java/io/swagger/codegen/DefaultGenerator.java#L6980 diff --git a/src/licensedcode/data/rules/apache-2.0_93.RULE b/src/licensedcode/data/rules/apache-2.0_93.RULE index abe8d0dff2b..e4bea5de326 100644 --- a/src/licensedcode/data/rules/apache-2.0_93.RULE +++ b/src/licensedcode/data/rules/apache-2.0_93.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +ignorable_urls: + - http://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 @@ -170,4 +177,4 @@ 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 +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_93.yml b/src/licensedcode/data/rules/apache-2.0_93.yml deleted file mode 100644 index bad8c4eae56..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_93.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_930.RULE b/src/licensedcode/data/rules/apache-2.0_930.RULE index 2a852b50911..9f2147d9e20 100644 --- a/src/licensedcode/data/rules/apache-2.0_930.RULE +++ b/src/licensedcode/data/rules/apache-2.0_930.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + available under the Apache-2 license. See the top-level LICENSE file for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_930.yml b/src/licensedcode/data/rules/apache-2.0_930.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_930.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_931.RULE b/src/licensedcode/data/rules/apache-2.0_931.RULE index 1b58ff43a34..42fef953d54 100644 --- a/src/licensedcode/data/rules/apache-2.0_931.RULE +++ b/src/licensedcode/data/rules/apache-2.0_931.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_931.yml b/src/licensedcode/data/rules/apache-2.0_931.yml deleted file mode 100644 index a344badaa8b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_931.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_932.RULE b/src/licensedcode/data/rules/apache-2.0_932.RULE index a74f3389ec4..34e0483d78e 100644 --- a/src/licensedcode/data/rules/apache-2.0_932.RULE +++ b/src/licensedcode/data/rules/apache-2.0_932.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: Truncated start +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_932.yml b/src/licensedcode/data/rules/apache-2.0_932.yml deleted file mode 100644 index b1e0f12046c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_932.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: Truncated start -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_933.RULE b/src/licensedcode/data/rules/apache-2.0_933.RULE index 95c80d7deb4..93b3c592a55 100644 --- a/src/licensedcode/data/rules/apache-2.0_933.RULE +++ b/src/licensedcode/data/rules/apache-2.0_933.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + LICENSE This program is licensed under the Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_933.yml b/src/licensedcode/data/rules/apache-2.0_933.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_933.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_934.RULE b/src/licensedcode/data/rules/apache-2.0_934.RULE index c847564659f..453be12dac4 100644 --- a/src/licensedcode/data/rules/apache-2.0_934.RULE +++ b/src/licensedcode/data/rules/apache-2.0_934.RULE @@ -1,6 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + LICENSE This program is licensed under the {{Apache License 2.0}}. This means you may use this program in any project. You are allowed to modify the program as you like. -For further details take a look at {{LICENSE.txt}}. +For further details take a look at {{LICENSE.txt}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_934.yml b/src/licensedcode/data/rules/apache-2.0_934.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_934.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_935.RULE b/src/licensedcode/data/rules/apache-2.0_935.RULE index f70d2131474..7181eea5072 100644 --- a/src/licensedcode/data/rules/apache-2.0_935.RULE +++ b/src/licensedcode/data/rules/apache-2.0_935.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache Software License (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_935.yml b/src/licensedcode/data/rules/apache-2.0_935.yml deleted file mode 100644 index 9d17bf1d950..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_935.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_936.RULE b/src/licensedcode/data/rules/apache-2.0_936.RULE index 8ee20495fa7..b9836c9ebba 100644 --- a/src/licensedcode/data/rules/apache-2.0_936.RULE +++ b/src/licensedcode/data/rules/apache-2.0_936.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This project is licensed under the Apache Public License, see COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_936.yml b/src/licensedcode/data/rules/apache-2.0_936.yml deleted file mode 100644 index c4ed4689375..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_936.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/apache-2.0_937.RULE b/src/licensedcode/data/rules/apache-2.0_937.RULE index 5a4f02974e7..0d0ad5b4ea1 100644 --- a/src/licensedcode/data/rules/apache-2.0_937.RULE +++ b/src/licensedcode/data/rules/apache-2.0_937.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + License This project is licensed under the Apache Public License, see COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_937.yml b/src/licensedcode/data/rules/apache-2.0_937.yml deleted file mode 100644 index c4ed4689375..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_937.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/apache-2.0_938.RULE b/src/licensedcode/data/rules/apache-2.0_938.RULE index 47737ea84a6..40f7429e33a 100644 --- a/src/licensedcode/data/rules/apache-2.0_938.RULE +++ b/src/licensedcode/data/rules/apache-2.0_938.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + under the Apache license, v2 (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_938.yml b/src/licensedcode/data/rules/apache-2.0_938.yml deleted file mode 100644 index 08ee159d05b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_938.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_939.RULE b/src/licensedcode/data/rules/apache-2.0_939.RULE index b87ec7cba9a..4b9ecb62a4f 100644 --- a/src/licensedcode/data/rules/apache-2.0_939.RULE +++ b/src/licensedcode/data/rules/apache-2.0_939.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 85 +notes: Seen in https://github.com/SparkPost/gosparkpost/blob/5b781faf9f19ed7dbcb7f604c83dec1d0bb9087b/LICENSE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + Licensed under the Apache License, Version 2.0 (the "License"). You may not use this software except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_939.yml b/src/licensedcode/data/rules/apache-2.0_939.yml deleted file mode 100644 index 379929d22e8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_939.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 85 -notes: Seen in https://github.com/SparkPost/gosparkpost/blob/5b781faf9f19ed7dbcb7f604c83dec1d0bb9087b/LICENSE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_94.RULE b/src/licensedcode/data/rules/apache-2.0_94.RULE index 198fe0c2bd4..6f6668f9ebc 100644 --- a/src/licensedcode/data/rules/apache-2.0_94.RULE +++ b/src/licensedcode/data/rules/apache-2.0_94.RULE @@ -1 +1,7 @@ -license: Apache V2 \ No newline at end of file +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + +license: Apache V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_94.yml b/src/licensedcode/data/rules/apache-2.0_94.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_940.RULE b/src/licensedcode/data/rules/apache-2.0_940.RULE index cf039bf1d7c..4faed304534 100644 --- a/src/licensedcode/data/rules/apache-2.0_940.RULE +++ b/src/licensedcode/data/rules/apache-2.0_940.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The code is published under an Apache license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_940.yml b/src/licensedcode/data/rules/apache-2.0_940.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_940.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_941.RULE b/src/licensedcode/data/rules/apache-2.0_941.RULE index 8ff526f5af4..f4c48da6118 100644 --- a/src/licensedcode/data/rules/apache-2.0_941.RULE +++ b/src/licensedcode/data/rules/apache-2.0_941.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + @APPLE_APACHE_LICENSE_HEADER_START@ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_941.yml b/src/licensedcode/data/rules/apache-2.0_941.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_941.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_942.RULE b/src/licensedcode/data/rules/apache-2.0_942.RULE index 0c0c1911bcd..a2a0af89716 100644 --- a/src/licensedcode/data/rules/apache-2.0_942.RULE +++ b/src/licensedcode/data/rules/apache-2.0_942.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + @APPLE_APACHE_LICENSE_HEADER_END@ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_942.yml b/src/licensedcode/data/rules/apache-2.0_942.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_942.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_943.RULE b/src/licensedcode/data/rules/apache-2.0_943.RULE index 80817c08b2e..6c10f76e6bf 100644 --- a/src/licensedcode/data/rules/apache-2.0_943.RULE +++ b/src/licensedcode/data/rules/apache-2.0_943.RULE @@ -1,6 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + {{ @APPLE_APACHE_LICENSE_HEADER_START@ }} {{ 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. -{{ @APPLE_APACHE_LICENSE_HEADER_END@ }} +{{ @APPLE_APACHE_LICENSE_HEADER_END@ }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_943.yml b/src/licensedcode/data/rules/apache-2.0_943.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_943.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_944.RULE b/src/licensedcode/data/rules/apache-2.0_944.RULE index c554cf6491e..8b8e834547e 100644 --- a/src/licensedcode/data/rules/apache-2.0_944.RULE +++ b/src/licensedcode/data/rules/apache-2.0_944.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under Apache License v2.0. See the file "LICENSE" for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_944.yml b/src/licensedcode/data/rules/apache-2.0_944.yml deleted file mode 100644 index d892e977716..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_944.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_945.RULE b/src/licensedcode/data/rules/apache-2.0_945.RULE index 0b4aba67034..f3916c60920 100644 --- a/src/licensedcode/data/rules/apache-2.0_945.RULE +++ b/src/licensedcode/data/rules/apache-2.0_945.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems a full copy of the Apache 2.0 can be found at /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_945.yml b/src/licensedcode/data/rules/apache-2.0_945.yml deleted file mode 100644 index f5fee8fe51a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_945.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_946.RULE b/src/licensedcode/data/rules/apache-2.0_946.RULE index 401c79dc35a..e0fc4c648e0 100644 --- a/src/licensedcode/data/rules/apache-2.0_946.RULE +++ b/src/licensedcode/data/rules/apache-2.0_946.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + used under the Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_946.yml b/src/licensedcode/data/rules/apache-2.0_946.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_946.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_947.RULE b/src/licensedcode/data/rules/apache-2.0_947.RULE index e8707f4739e..cf6cfe45d23 100644 --- a/src/licensedcode/data/rules/apache-2.0_947.RULE +++ b/src/licensedcode/data/rules/apache-2.0_947.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +notes: the inbound == outbound CLA is already built-in in the Apache license. +--- + License [Apache-2.0](LICENSE). By providing a contribution, you agree the contribution is licensed under Apache-2.0. This code is provided as-is with no warranty. Use at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_947.yml b/src/licensedcode/data/rules/apache-2.0_947.yml deleted file mode 100644 index ff08ba9887a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_947.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -notes: the inbound == outbound CLA is already built-in in the Apache license. diff --git a/src/licensedcode/data/rules/apache-2.0_948.RULE b/src/licensedcode/data/rules/apache-2.0_948.RULE index 7579079340a..a2718a4186f 100644 --- a/src/licensedcode/data/rules/apache-2.0_948.RULE +++ b/src/licensedcode/data/rules/apache-2.0_948.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems a copy of the Apache License, Version 2.0 can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_948.yml b/src/licensedcode/data/rules/apache-2.0_948.yml deleted file mode 100644 index 61eb9344420..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_948.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_949.RULE b/src/licensedcode/data/rules/apache-2.0_949.RULE index e30dc533316..aec8fdc5d50 100644 --- a/src/licensedcode/data/rules/apache-2.0_949.RULE +++ b/src/licensedcode/data/rules/apache-2.0_949.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_949.yml b/src/licensedcode/data/rules/apache-2.0_949.yml deleted file mode 100644 index 4c146db4d6a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_949.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_95.RULE b/src/licensedcode/data/rules/apache-2.0_95.RULE index aa8fb16e0a9..d054534547a 100644 --- a/src/licensedcode/data/rules/apache-2.0_95.RULE +++ b/src/licensedcode/data/rules/apache-2.0_95.RULE @@ -1 +1,8 @@ -Apache V2 \ No newline at end of file +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +--- + +Apache V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_95.yml b/src/licensedcode/data/rules/apache-2.0_95.yml deleted file mode 100644 index d558f240c7a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_95.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_950.RULE b/src/licensedcode/data/rules/apache-2.0_950.RULE index d9f485d82cc..594d6baaa2a 100644 --- a/src/licensedcode/data/rules/apache-2.0_950.RULE +++ b/src/licensedcode/data/rules/apache-2.0_950.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the full text of the Apache License, Version 2.0 can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_950.yml b/src/licensedcode/data/rules/apache-2.0_950.yml deleted file mode 100644 index 61eb9344420..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_950.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_951.RULE b/src/licensedcode/data/rules/apache-2.0_951.RULE index 0d4591544b8..4edf690bf47 100644 --- a/src/licensedcode/data/rules/apache-2.0_951.RULE +++ b/src/licensedcode/data/rules/apache-2.0_951.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_951.yml b/src/licensedcode/data/rules/apache-2.0_951.yml deleted file mode 100644 index 9b18ef838cf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_951.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_952.RULE b/src/licensedcode/data/rules/apache-2.0_952.RULE index b1552b9a30f..42558e8b02d 100644 --- a/src/licensedcode/data/rules/apache-2.0_952.RULE +++ b/src/licensedcode/data/rules/apache-2.0_952.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian systems, the full text of the Apache License, Version 2.0 can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_952.yml b/src/licensedcode/data/rules/apache-2.0_952.yml deleted file mode 100644 index f5fee8fe51a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_952.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_953.RULE b/src/licensedcode/data/rules/apache-2.0_953.RULE index 49e6d1266cb..1e07e6355ce 100644 --- a/src/licensedcode/data/rules/apache-2.0_953.RULE +++ b/src/licensedcode/data/rules/apache-2.0_953.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Free software: Apache Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_953.yml b/src/licensedcode/data/rules/apache-2.0_953.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_953.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_954.RULE b/src/licensedcode/data/rules/apache-2.0_954.RULE index b867a48fe47..69a1833f5d8 100644 --- a/src/licensedcode/data/rules/apache-2.0_954.RULE +++ b/src/licensedcode/data/rules/apache-2.0_954.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License Free software: Apache Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_954.yml b/src/licensedcode/data/rules/apache-2.0_954.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_954.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_955.RULE b/src/licensedcode/data/rules/apache-2.0_955.RULE index 8a119d29f6f..0d76af8c0c1 100644 --- a/src/licensedcode/data/rules/apache-2.0_955.RULE +++ b/src/licensedcode/data/rules/apache-2.0_955.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +--- + licensed under the Apache software license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_955.yml b/src/licensedcode/data/rules/apache-2.0_955.yml deleted file mode 100644 index 3b9c2faa046..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_955.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_956.RULE b/src/licensedcode/data/rules/apache-2.0_956.RULE index aa09940bb32..5d7ea007c22 100644 --- a/src/licensedcode/data/rules/apache-2.0_956.RULE +++ b/src/licensedcode/data/rules/apache-2.0_956.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache software license. See Apache Software License version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_956.yml b/src/licensedcode/data/rules/apache-2.0_956.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_956.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_957.RULE b/src/licensedcode/data/rules/apache-2.0_957.RULE index 08f0f6d610e..3c8f3195dfd 100644 --- a/src/licensedcode/data/rules/apache-2.0_957.RULE +++ b/src/licensedcode/data/rules/apache-2.0_957.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - NOTICE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under diff --git a/src/licensedcode/data/rules/apache-2.0_957.yml b/src/licensedcode/data/rules/apache-2.0_957.yml deleted file mode 100644 index 67a8e269acd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_957.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - NOTICE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_958.RULE b/src/licensedcode/data/rules/apache-2.0_958.RULE index 638ea309196..13a260f0d50 100644 --- a/src/licensedcode/data/rules/apache-2.0_958.RULE +++ b/src/licensedcode/data/rules/apache-2.0_958.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 99 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to Apereo under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Apereo licenses this file to you 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 the following location: http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_958.yml b/src/licensedcode/data/rules/apache-2.0_958.yml deleted file mode 100644 index 19a7d357cbf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_958.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 99 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_959.RULE b/src/licensedcode/data/rules/apache-2.0_959.RULE index c2d78e0cdfb..43ad27edf8c 100644 --- a/src/licensedcode/data/rules/apache-2.0_959.RULE +++ b/src/licensedcode/data/rules/apache-2.0_959.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License, Version 2.0 You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_959.yml b/src/licensedcode/data/rules/apache-2.0_959.yml deleted file mode 100644 index 89659108e4b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_959.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_96.RULE b/src/licensedcode/data/rules/apache-2.0_96.RULE index bc985c70017..5af6265e780 100644 --- a/src/licensedcode/data/rules/apache-2.0_96.RULE +++ b/src/licensedcode/data/rules/apache-2.0_96.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +--- + The APL v2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_96.yml b/src/licensedcode/data/rules/apache-2.0_96.yml deleted file mode 100644 index b055fbb5a1d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_960.RULE b/src/licensedcode/data/rules/apache-2.0_960.RULE index b62466255d0..a966e11dd0b 100644 --- a/src/licensedcode/data/rules/apache-2.0_960.RULE +++ b/src/licensedcode/data/rules/apache-2.0_960.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This software may be distributed under the terms of the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_960.yml b/src/licensedcode/data/rules/apache-2.0_960.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_960.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_961.RULE b/src/licensedcode/data/rules/apache-2.0_961.RULE index a1f9cbb0e33..af8d65a56f9 100644 --- a/src/licensedcode/data/rules/apache-2.0_961.RULE +++ b/src/licensedcode/data/rules/apache-2.0_961.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: minor typos +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is Xlocated at diff --git a/src/licensedcode/data/rules/apache-2.0_961.yml b/src/licensedcode/data/rules/apache-2.0_961.yml deleted file mode 100644 index c5ea80f6735..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_961.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: minor typos -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_962.RULE b/src/licensedcode/data/rules/apache-2.0_962.RULE index 3dac7e447a6..78326b72ed2 100644 --- a/src/licensedcode/data/rules/apache-2.0_962.RULE +++ b/src/licensedcode/data/rules/apache-2.0_962.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License This project is licensed under the Apache-2.0 license (http://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_962.yml b/src/licensedcode/data/rules/apache-2.0_962.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_962.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_963.RULE b/src/licensedcode/data/rules/apache-2.0_963.RULE index cd1503fd09c..5df5079e783 100644 --- a/src/licensedcode/data/rules/apache-2.0_963.RULE +++ b/src/licensedcode/data/rules/apache-2.0_963.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + This project is licensed under the Apache-2.0 license (http://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_963.yml b/src/licensedcode/data/rules/apache-2.0_963.yml deleted file mode 100644 index ebb6d1a4bee..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_963.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_964.RULE b/src/licensedcode/data/rules/apache-2.0_964.RULE index 7d137607389..afd7ce3fb5d 100644 --- a/src/licensedcode/data/rules/apache-2.0_964.RULE +++ b/src/licensedcode/data/rules/apache-2.0_964.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - opencv/doc/license.txt +notes: opencv switched from BSD to Apache +--- + see the opencv/doc/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_964.yml b/src/licensedcode/data/rules/apache-2.0_964.yml deleted file mode 100644 index e47c071280d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_964.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - opencv/doc/license.txt -notes: opencv switched from BSD to Apache diff --git a/src/licensedcode/data/rules/apache-2.0_965.RULE b/src/licensedcode/data/rules/apache-2.0_965.RULE index b87534c33d4..22490b8e10a 100644 --- a/src/licensedcode/data/rules/apache-2.0_965.RULE +++ b/src/licensedcode/data/rules/apache-2.0_965.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: opencv switched from BSD to Apache +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_965.yml b/src/licensedcode/data/rules/apache-2.0_965.yml deleted file mode 100644 index d31f849e41f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_965.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: opencv switched from BSD to Apache diff --git a/src/licensedcode/data/rules/apache-2.0_966.RULE b/src/licensedcode/data/rules/apache-2.0_966.RULE index f7c5e9a03dc..cff0b002bb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_966.RULE +++ b/src/licensedcode/data/rules/apache-2.0_966.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ +--- + License Agreement For Open Source Computer Vision Library (Apache 2.0 License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_966.yml b/src/licensedcode/data/rules/apache-2.0_966.yml deleted file mode 100644 index 99f215bf524..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_966.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ diff --git a/src/licensedcode/data/rules/apache-2.0_967.RULE b/src/licensedcode/data/rules/apache-2.0_967.RULE index 0f33678b1cf..b36250fd284 100644 --- a/src/licensedcode/data/rules/apache-2.0_967.RULE +++ b/src/licensedcode/data/rules/apache-2.0_967.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ +ignorable_urls: + - http://opencv.org/license.html +--- + License Agreement For Open Source Computer Vision Library (Apache 2.0 License) diff --git a/src/licensedcode/data/rules/apache-2.0_967.yml b/src/licensedcode/data/rules/apache-2.0_967.yml deleted file mode 100644 index a1da491f70b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_967.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ -ignorable_urls: - - http://opencv.org/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_968.RULE b/src/licensedcode/data/rules/apache-2.0_968.RULE index d8d40228018..d3293db2c65 100644 --- a/src/licensedcode/data/rules/apache-2.0_968.RULE +++ b/src/licensedcode/data/rules/apache-2.0_968.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - LICENSE +notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ +--- + See LICENSE file in the root OpenCV directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_968.yml b/src/licensedcode/data/rules/apache-2.0_968.yml deleted file mode 100644 index 2f1a2ca6fcf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_968.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - LICENSE -notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ diff --git a/src/licensedcode/data/rules/apache-2.0_969.RULE b/src/licensedcode/data/rules/apache-2.0_969.RULE index bd5fe6f1be2..aaf4d85f63a 100644 --- a/src/licensedcode/data/rules/apache-2.0_969.RULE +++ b/src/licensedcode/data/rules/apache-2.0_969.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ +ignorable_urls: + - http://opencv.org/license.html +--- + This file is part of OpenCV project. It is subject to the license terms in the LICENSE file found in the top-level directory of this distribution and at http://opencv.org/license.html. diff --git a/src/licensedcode/data/rules/apache-2.0_969.yml b/src/licensedcode/data/rules/apache-2.0_969.yml deleted file mode 100644 index 4b55e0be137..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_969.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ -ignorable_urls: - - http://opencv.org/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_97.RULE b/src/licensedcode/data/rules/apache-2.0_97.RULE index 92c87aad7f0..e54362ee4e6 100644 --- a/src/licensedcode/data/rules/apache-2.0_97.RULE +++ b/src/licensedcode/data/rules/apache-2.0_97.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + DIST_LICENSE = 'Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_97.yml b/src/licensedcode/data/rules/apache-2.0_97.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_970.RULE b/src/licensedcode/data/rules/apache-2.0_970.RULE index 178131cf782..c08bf866d18 100644 --- a/src/licensedcode/data/rules/apache-2.0_970.RULE +++ b/src/licensedcode/data/rules/apache-2.0_970.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ +--- + // This file is part of OpenCV project. // It is subject to the license terms in the LICENSE file found in the top-level directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_970.yml b/src/licensedcode/data/rules/apache-2.0_970.yml deleted file mode 100644 index 38292a33e72..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_970.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ diff --git a/src/licensedcode/data/rules/apache-2.0_971.RULE b/src/licensedcode/data/rules/apache-2.0_971.RULE index 66c9e2be629..9b5866fe5d8 100644 --- a/src/licensedcode/data/rules/apache-2.0_971.RULE +++ b/src/licensedcode/data/rules/apache-2.0_971.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_971.yml b/src/licensedcode/data/rules/apache-2.0_971.yml deleted file mode 100644 index 4c146db4d6a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_971.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_972.RULE b/src/licensedcode/data/rules/apache-2.0_972.RULE index 35ab3ce7b60..e4ca9289d32 100644 --- a/src/licensedcode/data/rules/apache-2.0_972.RULE +++ b/src/licensedcode/data/rules/apache-2.0_972.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_972.yml b/src/licensedcode/data/rules/apache-2.0_972.yml deleted file mode 100644 index 1a859bc03bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_972.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_973.RULE b/src/licensedcode/data/rules/apache-2.0_973.RULE index d5d2f5dc0d2..1fc984038bc 100644 --- a/src/licensedcode/data/rules/apache-2.0_973.RULE +++ b/src/licensedcode/data/rules/apache-2.0_973.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_973.yml b/src/licensedcode/data/rules/apache-2.0_973.yml deleted file mode 100644 index e3fbfa35f7f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_973.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_974.RULE b/src/licensedcode/data/rules/apache-2.0_974.RULE index ee86a754712..f03a9e58b19 100644 --- a/src/licensedcode/data/rules/apache-2.0_974.RULE +++ b/src/licensedcode/data/rules/apache-2.0_974.RULE @@ -1,3 +1,10 @@ -Comment: On Debian GNU/Linux systems the complete license text is available in - /usr/share/common-licenses/Apache-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- +Comment: On Debian GNU/Linux systems the complete license text is available in + /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_974.yml b/src/licensedcode/data/rules/apache-2.0_974.yml deleted file mode 100644 index 1c887228525..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_974.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_975.RULE b/src/licensedcode/data/rules/apache-2.0_975.RULE index 349354d4578..9b1acc2e29e 100644 --- a/src/licensedcode/data/rules/apache-2.0_975.RULE +++ b/src/licensedcode/data/rules/apache-2.0_975.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + The APL v2.0: @@ -15,4 +26,4 @@ The APL v2.0: limitations under the License. On Debian GNU/Linux systems, the complete text of the Apache License Version 2.0, -can be found in the /usr/share/common-licenses/Apache-2.0 file. +can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_975.yml b/src/licensedcode/data/rules/apache-2.0_975.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_975.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_976.RULE b/src/licensedcode/data/rules/apache-2.0_976.RULE index 4d3f8cc7f90..544d5190066 100644 --- a/src/licensedcode/data/rules/apache-2.0_976.RULE +++ b/src/licensedcode/data/rules/apache-2.0_976.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_976.yml b/src/licensedcode/data/rules/apache-2.0_976.yml deleted file mode 100644 index fcb2b191798..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_976.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_977.RULE b/src/licensedcode/data/rules/apache-2.0_977.RULE index deb1fd171d1..2ed7eabf4b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_977.RULE +++ b/src/licensedcode/data/rules/apache-2.0_977.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -12,4 +22,4 @@ License: {{ Apache-2.0 }} On Debian GNU/Linux systems the complete text of the license can be found in - {{ /usr/share/common-licenses/Apache-2.0 }} + {{ /usr/share/common-licenses/Apache-2.0 }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_977.yml b/src/licensedcode/data/rules/apache-2.0_977.yml deleted file mode 100644 index fcb2b191798..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_977.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_978.RULE b/src/licensedcode/data/rules/apache-2.0_978.RULE index 1bd643a5c68..e0cd3da68a5 100644 --- a/src/licensedcode/data/rules/apache-2.0_978.RULE +++ b/src/licensedcode/data/rules/apache-2.0_978.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian GNU/Linux systems, the complete text of the Apache License Version 2.0, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_978.yml b/src/licensedcode/data/rules/apache-2.0_978.yml deleted file mode 100644 index 008ca39176c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_978.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_979.RULE b/src/licensedcode/data/rules/apache-2.0_979.RULE index 73c5b921aa3..edaee9d60cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_979.RULE +++ b/src/licensedcode/data/rules/apache-2.0_979.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +notes: Debian copyright file paragraph footer +--- + License: Apache-2 On Debian GNU/Linux systems the full text of the Apache License version 2 can be found in the `/usr/share/common-licenses/Apache-2.0' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_979.yml b/src/licensedcode/data/rules/apache-2.0_979.yml deleted file mode 100644 index 7ddd0eb7984..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_979.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -notes: Debian copyright file paragraph footer diff --git a/src/licensedcode/data/rules/apache-2.0_98.RULE b/src/licensedcode/data/rules/apache-2.0_98.RULE index 40dfa823acd..f3545406a8b 100644 --- a/src/licensedcode/data/rules/apache-2.0_98.RULE +++ b/src/licensedcode/data/rules/apache-2.0_98.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + license: apache2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_98.yml b/src/licensedcode/data/rules/apache-2.0_98.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_980.RULE b/src/licensedcode/data/rules/apache-2.0_980.RULE index f3630d514cc..6d933dc41e9 100644 --- a/src/licensedcode/data/rules/apache-2.0_980.RULE +++ b/src/licensedcode/data/rules/apache-2.0_980.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_980.yml b/src/licensedcode/data/rules/apache-2.0_980.yml deleted file mode 100644 index 95d0f729e1b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_980.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_981.RULE b/src/licensedcode/data/rules/apache-2.0_981.RULE index 810e2566b3b..c5f3056aadf 100644 --- a/src/licensedcode/data/rules/apache-2.0_981.RULE +++ b/src/licensedcode/data/rules/apache-2.0_981.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. . diff --git a/src/licensedcode/data/rules/apache-2.0_981.yml b/src/licensedcode/data/rules/apache-2.0_981.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_981.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_982.RULE b/src/licensedcode/data/rules/apache-2.0_982.RULE index f1d34a906a6..f3695773b47 100644 --- a/src/licensedcode/data/rules/apache-2.0_982.RULE +++ b/src/licensedcode/data/rules/apache-2.0_982.RULE @@ -1 +1,9 @@ -On Debian GNU/Linux systems the complete text of the license can be found in /usr/share/common-licenses/Apache-2.0 +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + +On Debian GNU/Linux systems the complete text of the license can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_982.yml b/src/licensedcode/data/rules/apache-2.0_982.yml deleted file mode 100644 index 1c887228525..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_982.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_983.RULE b/src/licensedcode/data/rules/apache-2.0_983.RULE index a74699124d0..2f51461d3dc 100644 --- a/src/licensedcode/data/rules/apache-2.0_983.RULE +++ b/src/licensedcode/data/rules/apache-2.0_983.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian GNU/Linux systems a copy of the Apache License, Version 2.0 can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_983.yml b/src/licensedcode/data/rules/apache-2.0_983.yml deleted file mode 100644 index 1c887228525..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_983.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_984.RULE b/src/licensedcode/data/rules/apache-2.0_984.RULE index 86cc8f0a094..66921a98df0 100644 --- a/src/licensedcode/data/rules/apache-2.0_984.RULE +++ b/src/licensedcode/data/rules/apache-2.0_984.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +22,4 @@ limitations under the License. On Debian GNU/Linux systems, the complete text of Apache License, Version 2.0 -can be found in /usr/share/common-licenses/Apache-2.0 file. +can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_984.yml b/src/licensedcode/data/rules/apache-2.0_984.yml deleted file mode 100644 index 032abe42c01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_984.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_985.RULE b/src/licensedcode/data/rules/apache-2.0_985.RULE index 60f24fdd600..0568311d0be 100644 --- a/src/licensedcode/data/rules/apache-2.0_985.RULE +++ b/src/licensedcode/data/rules/apache-2.0_985.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_985.yml b/src/licensedcode/data/rules/apache-2.0_985.yml deleted file mode 100644 index f0c04a8c08d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_985.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_986.RULE b/src/licensedcode/data/rules/apache-2.0_986.RULE index b19e23bd1a0..3d49846aab0 100644 --- a/src/licensedcode/data/rules/apache-2.0_986.RULE +++ b/src/licensedcode/data/rules/apache-2.0_986.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_986.yml b/src/licensedcode/data/rules/apache-2.0_986.yml deleted file mode 100644 index c9107072f6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_986.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_987.RULE b/src/licensedcode/data/rules/apache-2.0_987.RULE index 337e82e406e..a2f15281d26 100644 --- a/src/licensedcode/data/rules/apache-2.0_987.RULE +++ b/src/licensedcode/data/rules/apache-2.0_987.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_987.yml b/src/licensedcode/data/rules/apache-2.0_987.yml deleted file mode 100644 index 1a859bc03bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_987.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_988.RULE b/src/licensedcode/data/rules/apache-2.0_988.RULE index 9b9597b5872..25950aa9a5b 100644 --- a/src/licensedcode/data/rules/apache-2.0_988.RULE +++ b/src/licensedcode/data/rules/apache-2.0_988.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +22,4 @@ limitations under the License. On Debian GNU/Linux systems, the complete text of Apache License, Version 2.0 -can be found in /usr/share/common-licenses/Apache-2.0 file. +can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_988.yml b/src/licensedcode/data/rules/apache-2.0_988.yml deleted file mode 100644 index 2adfb48f7c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_988.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_989.RULE b/src/licensedcode/data/rules/apache-2.0_989.RULE index 3d10469c1df..2385477074d 100644 --- a/src/licensedcode/data/rules/apache-2.0_989.RULE +++ b/src/licensedcode/data/rules/apache-2.0_989.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian GNU/Linux systems, the full text of the Apache Software License version 2 can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_989.yml b/src/licensedcode/data/rules/apache-2.0_989.yml deleted file mode 100644 index 915be00363a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_989.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_99.RULE b/src/licensedcode/data/rules/apache-2.0_99.RULE index 2a6dc295cdd..3b3c6060758 100644 --- a/src/licensedcode/data/rules/apache-2.0_99.RULE +++ b/src/licensedcode/data/rules/apache-2.0_99.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + This project is licensed under the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_99.yml b/src/licensedcode/data/rules/apache-2.0_99.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_990.RULE b/src/licensedcode/data/rules/apache-2.0_990.RULE index 01a9523b171..688a51f6b5f 100644 --- a/src/licensedcode/data/rules/apache-2.0_990.RULE +++ b/src/licensedcode/data/rules/apache-2.0_990.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Comment: On Debian GNU/Linux systems the complete license text is available in /usr/share/common-licenses/Apache-2.0 License @@ -11,4 +21,4 @@ License # 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. + # limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_990.yml b/src/licensedcode/data/rules/apache-2.0_990.yml deleted file mode 100644 index fcb2b191798..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_990.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_991.RULE b/src/licensedcode/data/rules/apache-2.0_991.RULE index 067601e60f1..a1e72c472d4 100644 --- a/src/licensedcode/data/rules/apache-2.0_991.RULE +++ b/src/licensedcode/data/rules/apache-2.0_991.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + The APL v2.0: @@ -15,4 +26,4 @@ The APL v2.0: limitations under the License. On Debian GNU/Linux systems, the complete text of the Apache License Version 2.0, -can be found in the /usr/share/common-licenses/Apache-2.0 file. +can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_991.yml b/src/licensedcode/data/rules/apache-2.0_991.yml deleted file mode 100644 index 032abe42c01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_991.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_992.RULE b/src/licensedcode/data/rules/apache-2.0_992.RULE index dad39a50561..3fc103e5470 100644 --- a/src/licensedcode/data/rules/apache-2.0_992.RULE +++ b/src/licensedcode/data/rules/apache-2.0_992.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian GNU/Linux systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_992.yml b/src/licensedcode/data/rules/apache-2.0_992.yml deleted file mode 100644 index 1c887228525..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_992.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_993.RULE b/src/licensedcode/data/rules/apache-2.0_993.RULE index 30b779e24be..b98f52c9abc 100644 --- a/src/licensedcode/data/rules/apache-2.0_993.RULE +++ b/src/licensedcode/data/rules/apache-2.0_993.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + License: Apache-2.0 On Debian GNU/Linux systems the complete text of the license can be found in - /usr/share/common-licenses/Apache-2.0 + /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_993.yml b/src/licensedcode/data/rules/apache-2.0_993.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_993.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_994.RULE b/src/licensedcode/data/rules/apache-2.0_994.RULE index a605822139e..20d655bf668 100644 --- a/src/licensedcode/data/rules/apache-2.0_994.RULE +++ b/src/licensedcode/data/rules/apache-2.0_994.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian GNU/Linux systems a full copy of the Apache 2.0 can be found at /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_994.yml b/src/licensedcode/data/rules/apache-2.0_994.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_994.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_995.RULE b/src/licensedcode/data/rules/apache-2.0_995.RULE index 6facba57a81..a75a76d48db 100644 --- a/src/licensedcode/data/rules/apache-2.0_995.RULE +++ b/src/licensedcode/data/rules/apache-2.0_995.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_995.yml b/src/licensedcode/data/rules/apache-2.0_995.yml deleted file mode 100644 index 1a859bc03bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_995.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_996.RULE b/src/licensedcode/data/rules/apache-2.0_996.RULE index 0fcf6f0a142..4cf9b1b9a62 100644 --- a/src/licensedcode/data/rules/apache-2.0_996.RULE +++ b/src/licensedcode/data/rules/apache-2.0_996.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian GNU/Linux systems, the full text of the Apache License, Version 2.0 can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_996.yml b/src/licensedcode/data/rules/apache-2.0_996.yml deleted file mode 100644 index b02ccba6477..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_996.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_997.RULE b/src/licensedcode/data/rules/apache-2.0_997.RULE index 60f91600469..b852371ddd5 100644 --- a/src/licensedcode/data/rules/apache-2.0_997.RULE +++ b/src/licensedcode/data/rules/apache-2.0_997.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/apache-2.0_997.yml b/src/licensedcode/data/rules/apache-2.0_997.yml deleted file mode 100644 index 1a859bc03bf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_997.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_998.RULE b/src/licensedcode/data/rules/apache-2.0_998.RULE index 1407bacc76b..cdeda845100 100644 --- a/src/licensedcode/data/rules/apache-2.0_998.RULE +++ b/src/licensedcode/data/rules/apache-2.0_998.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +--- + On Debian GNU/Linux systems, the full text of the Apache License, Version 2.0 can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_998.yml b/src/licensedcode/data/rules/apache-2.0_998.yml deleted file mode 100644 index 1c887228525..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_998.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_999.RULE b/src/licensedcode/data/rules/apache-2.0_999.RULE index bdafeb08684..f1ff391fc5a 100644 --- a/src/licensedcode/data/rules/apache-2.0_999.RULE +++ b/src/licensedcode/data/rules/apache-2.0_999.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Apache-2.0.html +--- + license: https://spdx.org/licenses/Apache-2.0.html Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_999.yml b/src/licensedcode/data/rules/apache-2.0_999.yml deleted file mode 100644 index 9d550a81c8d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_999.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Apache-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_1.RULE index 7558b2df1e9..a7715f97b80 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND bsd-new +is_license_tag: yes +relevance: 100 +--- + License: Apache-2.0 and BSD-3-clause-Cambridge \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_1.yml deleted file mode 100644 index cda1e38886c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_2.RULE index f7ef44e199a..89628a98459 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 AND bsd-new +is_license_notice: yes +relevance: 99 +--- + Some source files in the project carry Apache License 2.0 licenses or BSD licenses. Both of these cases are allowed under the GPLv3 and LGPLv3. The combined work is licensed as described in the previous paragraph. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_2.yml b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_2.yml deleted file mode 100644 index 9074e7ff701..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_1.RULE index fb984e4ebc3..f2155169207 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 AND bsd-new AND mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - NOTICE +--- + Scala is licensed under the Apache License, Version 2.0 (the “License”). Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_1.yml b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_1.yml deleted file mode 100644 index 108f8c2022c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND bsd-new AND mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - NOTICE diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_2.RULE index c9d435a116a..eaa54a55006 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND bsd-new AND mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - doc/LICENSE.md +--- + Licensed under the Apache License, Version 2.0 (the "License"). Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_2.yml b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_2.yml deleted file mode 100644 index 9e971cdbce9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND bsd-new AND mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - doc/LICENSE.md diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_1.RULE index 0ca1a24fee5..de47da3d602 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND bsd-new AND mit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://www.scala-lang.org/license.html +--- + http://www.scala-lang.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_1.yml b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_1.yml deleted file mode 100644 index 0f7681bf3f5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND bsd-new AND mit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://www.scala-lang.org/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_2.RULE index 4319059bcd7..e69995f9b5c 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND bsd-new AND mit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://www.scala-lang.org/license.html +--- + https://www.scala-lang.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_2.yml b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_2.yml deleted file mode 100644 index 9cd161804b6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND bsd-new AND mit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://www.scala-lang.org/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_3.RULE index f19052fa312..00088ad3966 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND bsd-new AND mit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://www.scala-lang.org/downloads/license.html +--- + http://www.scala-lang.org/downloads/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_3.yml b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_3.yml deleted file mode 100644 index e6f46e206cb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND bsd-new AND mit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://www.scala-lang.org/downloads/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_4.RULE b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_4.RULE index 4d350c81078..6febb2247ed 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND bsd-new AND mit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://www.scala-lang.org/downloads/license.html +--- + https://www.scala-lang.org/downloads/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_4.yml b/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_4.yml deleted file mode 100644 index 0fdf20d183f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_bsd-new_and_mit_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND bsd-new AND mit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://www.scala-lang.org/downloads/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_1.RULE index dbb1ecaf599..4437c390982 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 AND cc-by-2.5 +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5 + - http://www.apache.org/licenses/ + - http://www.jcip.net/ +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_1.yml b/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_1.yml deleted file mode 100644 index bf242b90c7b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 AND cc-by-2.5 -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5 - - http://www.apache.org/licenses/ - - http://www.jcip.net/ diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_2.RULE index 421234fbb50..b64621058b3 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 AND cc-by-2.5 +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5 + - http://www.jcip.net/ + - https://www.apache.org/licenses/ +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_2.yml b/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_2.yml deleted file mode 100644 index 1b0db6a48d9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-2.5_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 AND cc-by-2.5 -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5 - - http://www.jcip.net/ - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE index d236b399fab..bf4e218c4ef 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +notes: ScanCode notice +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ScanCode software is licensed under the Apache License version 2.0. ScanCode data is licensed under CC-BY-4.0. diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.yml b/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.yml deleted file mode 100644 index 50ae357b0b8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -notes: ScanCode notice -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/legalcode - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-nc-nd-3.0_and_other-permissive_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_cc-by-nc-nd-3.0_and_other-permissive_and_proprietary-license_1.RULE index b657836d714..302b2d380bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-nc-nd-3.0_and_other-permissive_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cc-by-nc-nd-3.0_and_other-permissive_and_proprietary-license_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 AND cc-by-nc-nd-3.0 AND other-permissive AND proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + For license information, see [LICENSE.txt](LICENSE.txt). @@ -11,4 +19,4 @@ For license information, see [LICENSE.txt](LICENSE.txt). Attribution-Noncommercial-No Derivative Works 3.0 United States license. - NLTK corpora are provided under the terms given in the README file for each corpus; all are redistributable and available for non-commercial use. -- NLTK may be freely redistributed, subject to the provisions of these licenses. +- NLTK may be freely redistributed, subject to the provisions of these licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-nc-nd-3.0_and_other-permissive_and_proprietary-license_1.yml b/src/licensedcode/data/rules/apache-2.0_and_cc-by-nc-nd-3.0_and_other-permissive_and_proprietary-license_1.yml deleted file mode 100644 index 4d049846cac..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-nc-nd-3.0_and_other-permissive_and_proprietary-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND cc-by-nc-nd-3.0 AND other-permissive AND proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-3.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-3.0_1.RULE index c4d3c221cfb..cc9fb467a4a 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-3.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Full text of Apache License 2.0 and Creative Commons License 3.0 below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-3.0_1.yml b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-3.0_1.yml deleted file mode 100644 index bdac30aaf7d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_1.RULE index 1ed6d49eb5a..e27f05f3104 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND cc-by-sa-4.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + There are two licenses, one for the software library, and one for the data. @@ -43,4 +52,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 -DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_1.yml b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_1.yml deleted file mode 100644 index c996dc4b9f6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND cc-by-sa-4.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_2.RULE index 414362cedc8..d59a9038b83 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_2.RULE @@ -1 +1,13 @@ +--- +license_expression: apache-2.0 AND cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - CONTRIBUTING.md + - LICENSE.docs +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 +--- + Code is released under the [{{Apache 2.0}} license](LICENSE). This `README.md` file and the [`CONTRIBUTING.md`](CONTRIBUTING.md) file are licensed under the {{Creative Commons Attribution 4.0 International License}} under the terms and conditions set forth in the file [`LICENSE.docs`](LICENSE.docs). You may obtain a duplicate copy of the same license, titled CC BY-SA 4.0, at http://creativecommons.org/licenses/by-sa/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_2.yml b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_2.yml deleted file mode 100644 index cac9ce1dabd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 AND cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - CONTRIBUTING.md - - LICENSE.docs -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_3.RULE index d5d828c998a..c23959f8517 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND cc-by-sa-4.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode + - https://www.apache.org/licenses/LICENSE-2.0 +--- + There are two licenses, one for the software library, and one for the data. @@ -43,4 +52,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 -DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_3.yml b/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_3.yml deleted file mode 100644 index eb9c5c1e63b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cc-by-sa-4.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND cc-by-sa-4.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/legalcode - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_cddl-1.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_cddl-1.0_1.RULE index 42e9d9f84e8..c578cb7d6dc 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cddl-1.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cddl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + Apache License, Version 2.0 and Common Development And Distribution License (CDDL) Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_cddl-1.0_1.yml b/src/licensedcode/data/rules/apache-2.0_and_cddl-1.0_1.yml deleted file mode 100644 index 700e610c5c7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cddl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_cockroach_and_mit_and_bsd-new_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_cockroach_and_mit_and_bsd-new_1.RULE index 0c63b8427d0..6923060b6ce 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_cockroach_and_mit_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_cockroach_and_mit_and_bsd-new_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND cockroach AND mit AND bsd-new +is_license_notice: yes +relevance: 100 +--- + Source code in this repository is variously licensed under the Apache Public License 2.0 (APL), the CockroachDB Community License (CCL), the MIT license, and BSD-style licenses. A copy of each license can be found in the licenses diff --git a/src/licensedcode/data/rules/apache-2.0_and_cockroach_and_mit_and_bsd-new_1.yml b/src/licensedcode/data/rules/apache-2.0_and_cockroach_and_mit_and_bsd-new_1.yml deleted file mode 100644 index 45b401150fe..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_cockroach_and_mit_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND cockroach AND mit AND bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_1.RULE index 32d9b8365e6..41c1b890ee9 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND dco-1.1 +is_license_notice: yes +minimum_coverage: 80 +--- + New source code contributions are made under the Apache-2.0 license and the contributor must sign off each commit under the -Developer Certificate of Origin (DCO) version 1.1. \ No newline at end of file +Developer Certificate of Origin (DCO) version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_1.yml b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_1.yml deleted file mode 100644 index da693847edc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND dco-1.1 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_2.RULE index b898f30981d..03cf2907177 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 AND dco-1.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - LICENSE + - DCO.md + - CONTRIBUTING.md +--- + ## Contributing The project can only accept contributions which are licensed under the [Apache License 2.0](LICENSE) and are signed according to the [Developer's Certificate of Origin](DCO.md). For further information please see our [Contribution Guidelines](CONTRIBUTING.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_2.yml b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_2.yml deleted file mode 100644 index c91faf4003c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 AND dco-1.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - LICENSE - - DCO.md - - CONTRIBUTING.md diff --git a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_3.RULE index 82e19016b42..1961753a648 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_3.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 AND dco-1.1 +is_license_notice: yes +referenced_filenames: + - LICENSE + - DCO1.1.txt +--- + This project uses [the Apache 2.0 license](./LICENSE). Contribution to this project requires the [DCO 1.1](./DCO1.1.txt) process to be followed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_3.yml b/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_3.yml deleted file mode 100644 index 6b8b8d1372f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_dco-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND dco-1.1 -is_license_notice: yes -referenced_filenames: - - LICENSE - - DCO1.1.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_dgraph-cla_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_dgraph-cla_1.RULE index 10764591f74..51fd73b4d09 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_dgraph-cla_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_dgraph-cla_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND dgraph-cla +is_license_notice: yes +relevance: 100 +--- + Source code in this repository is variously licensed under the Apache Public License 2.0 (APL) and the Dgraph Community License (DCL). A copy of each license can be found in the licenses directory. diff --git a/src/licensedcode/data/rules/apache-2.0_and_dgraph-cla_1.yml b/src/licensedcode/data/rules/apache-2.0_and_dgraph-cla_1.yml deleted file mode 100644 index 611fcad6511..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_dgraph-cla_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND dgraph-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_1.RULE index b824ec89927..4b4d2876462 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_1.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 AND elastic-license-2018 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - APACHE-LICENSE-2.0.txt + - ELASTIC-LICENSE.txt +--- + APACHE-LICENSE-2.0.txt' : 'ELASTIC-LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_1.yml b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_1.yml deleted file mode 100644 index c02167e98be..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND elastic-license-2018 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - APACHE-LICENSE-2.0.txt - - ELASTIC-LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_2.RULE index 12008d810b9..0f47e5862ab 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND elastic-license-2018 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - APACHE-LICENSE-2.0.txt + - ELASTIC-LICENSE.txt +--- + licenseFilename = "APACHE-LICENSE-2.0.txt" } else { licenseFilename = "ELASTIC-LICENSE.txt" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_2.yml b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_2.yml deleted file mode 100644 index c02167e98be..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND elastic-license-2018 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - APACHE-LICENSE-2.0.txt - - ELASTIC-LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_3.RULE index 91956938f3e..d98228881e0 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_3.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND elastic-license-2018 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - APACHE-LICENSE-2.0.txt +--- + licenseFilename = "APACHE-LICENSE-2.0.txt" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_3.yml b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_3.yml deleted file mode 100644 index 51dcab206f2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND elastic-license-2018 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - APACHE-LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.RULE b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.RULE index 7dba974f0f3..97b12d5b46a 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND elastic-license-2018 +is_license_notice: yes +relevance: 100 +--- + The build produces two sets of binaries - one set that falls under the Elastic License and another set that falls under Apache License 2.0. The binaries that contain `-oss` in the artifact name are licensed under Apache License 2.0 and diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.yml b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.yml deleted file mode 100644 index fa3c7e2b19c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND elastic-license-2018 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_and_other-permissive_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_and_other-permissive_1.RULE index c5f136c86a3..751e8fc66d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND elastic-license-2018 AND other-permissive +is_license_notice: yes +relevance: 100 +--- + Source code in this repository is covered by one of three licenses: (i) the Apache License 2.0 (ii) an Apache License 2.0 compatible license (iii) the Elastic License. The default license throughout the repository is Apache License diff --git a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_and_other-permissive_1.yml b/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_and_other-permissive_1.yml deleted file mode 100644 index 35334bcd20e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_elastic-license-2018_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND elastic-license-2018 AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_1.RULE index 454f8cf1013..d130d66bd7b 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND free-unknown +is_license_tag: yes +relevance: 100 +--- + License: GPL-3+ or Custom \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_1.yml b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_1.yml deleted file mode 100644 index 7de55b54e0d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND free-unknown -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_2.RULE index b4507cf5edf..09d51f54f2f 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 AND free-unknown +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - docs/THIRDPARTY +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -13,6 +23,4 @@ limitations under the License. The software includes some works released by third parties under other free and open source licenses. Those works are redistributed under the license terms under which the works were received. For more details, -see the ``docs/THIRDPARTY`` file included with this distribution. - - +see the ``docs/THIRDPARTY`` file included with this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_2.yml b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_2.yml deleted file mode 100644 index 3815773c9bb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 AND free-unknown -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - docs/THIRDPARTY -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_zulip.RULE b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_zulip.RULE index 6ec6453f129..deaadc5d2dd 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_zulip.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_zulip.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 AND free-unknown +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - docs/THIRDPARTY +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -13,6 +23,4 @@ limitations under the License. The software includes some works released by third parties under other free and open source licenses. Those works are redistributed under the license terms under which the works were received. For more details, -see the ``docs/THIRDPARTY`` file included with this distribution. - - +see the ``docs/THIRDPARTY`` file included with this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_zulip.yml b/src/licensedcode/data/rules/apache-2.0_and_free-unknown_zulip.yml deleted file mode 100644 index 9faabfead4a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_free-unknown_zulip.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 AND free-unknown -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - docs/THIRDPARTY -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_generic-cla_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_generic-cla_1.RULE index c362c02873b..01fb7fe2f40 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_generic-cla_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_generic-cla_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND generic-cla +is_license_notice: yes +relevance: 100 +--- + By contributing code to this repository, you agree to make your contribution available under an Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_generic-cla_1.yml b/src/licensedcode/data/rules/apache-2.0_and_generic-cla_1.yml deleted file mode 100644 index 9c0c5853954..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_generic-cla_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND generic-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_generic-cla_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_generic-cla_2.RULE index 8ce773130d8..5308fb6e989 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_generic-cla_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_generic-cla_2.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 AND generic-cla +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + By submitting a patch, you agree to allow the project owners to license your work under the [Apache 2.0 License](./LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_generic-cla_2.yml b/src/licensedcode/data/rules/apache-2.0_and_generic-cla_2.yml deleted file mode 100644 index 39df2d3df7b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_generic-cla_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 AND generic-cla -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_gpl-2.0_1.RULE index d0dde87351d..52c7fb48cb9 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_gpl-2.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 AND gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + Under Apache license 2.0 and GNU GLP V2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/apache-2.0_and_gpl-2.0_1.yml deleted file mode 100644 index 13da65279fb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_gpl-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 AND gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/apache-2.0_and_isc_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_isc_1.RULE index 2386c251a23..047ffd8389c 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_isc_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_isc_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under Apache 2.0 and ISC. For more information, see the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_isc_1.yml b/src/licensedcode/data/rules/apache-2.0_and_isc_1.yml deleted file mode 100644 index 4a353d06812..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_isc_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_and_isc_and_mit_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_isc_and_mit_1.RULE index 4427a669b7c..0e382233105 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_isc_and_mit_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_isc_and_mit_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 AND isc AND mit +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - copyright Regents of the University of Michigan +ignorable_holders: + - Regents of the University of Michigan +--- + original work created at the University of Michigan, and is licensed under the Apache 2.0 license. Files that were created by Google, and new files in forks of packages maintained by Google have a Google copyright and fall under diff --git a/src/licensedcode/data/rules/apache-2.0_and_isc_and_mit_1.yml b/src/licensedcode/data/rules/apache-2.0_and_isc_and_mit_1.yml deleted file mode 100644 index 45483061da9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_isc_and_mit_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 AND isc AND mit -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - copyright Regents of the University of Michigan -ignorable_holders: - - Regents of the University of Michigan diff --git a/src/licensedcode/data/rules/apache-2.0_and_jmx_and_nsis_and_ecj.RULE b/src/licensedcode/data/rules/apache-2.0_and_jmx_and_nsis_and_ecj.RULE index a1d8e4986aa..086535f6cdb 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_jmx_and_nsis_and_ecj.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_jmx_and_nsis_and_ecj.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apache-2.0 AND mx4j AND zlib AND bzip2-libbzip-2010 AND cpl-1.0 AND lzma-cpl-exception + AND epl-1.0 +is_license_reference: yes +notes: complex NSIS notices, not a choice. Found in Tomcat +ignorable_authors: + - The Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://mx4j.sourceforge.net/ + - http://nsis.sourceforge.net/ + - http://www.apache.org/ + - http://www.eclipse.org/ +--- + This product includes software developed by The Apache Software Foundation (http://www.apache.org/). diff --git a/src/licensedcode/data/rules/apache-2.0_and_jmx_and_nsis_and_ecj.yml b/src/licensedcode/data/rules/apache-2.0_and_jmx_and_nsis_and_ecj.yml deleted file mode 100644 index e28bb436ec3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_jmx_and_nsis_and_ecj.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apache-2.0 AND mx4j AND zlib AND bzip2-libbzip-2010 AND cpl-1.0 AND lzma-cpl-exception - AND epl-1.0 -is_license_reference: yes -notes: complex NSIS notices, not a choice. Found in Tomcat -ignorable_authors: - - The Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://mx4j.sourceforge.net/ - - http://nsis.sourceforge.net/ - - http://www.apache.org/ - - http://www.eclipse.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.0-plus.RULE index 45d4c1e8aeb..ff350922f53 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.0-plus.RULE @@ -1,2 +1,7 @@ +--- +license_expression: apache-2.0 AND lgpl-2.0-plus +is_license_notice: yes +--- + This optional package contains code licensed under the Apache 2 license, and some code licensed under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.0-plus.yml b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.0-plus.yml deleted file mode 100644 index 0bacbd4142a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 AND lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_1.RULE index b46fccf294d..810aa064583 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPL + - COPYING.ASL2 +--- + distributed pursuant to the terms of two different licenses. The user interface (located in ui/ in this distribution) is governed by the Apache License version 2.0. The rest of this distribution is diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_1.yml b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_1.yml deleted file mode 100644 index 3db0805312a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPL - - COPYING.ASL2 diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_2.RULE index 079d278356d..53a8c181354 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +notes: this is likely some typo See https://salsa.debian.org/owncloud-team/nextcloud-desktop/-/merge_requests/9#note_256687 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_2.yml b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_2.yml deleted file mode 100644 index 626ac2099d3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -notes: this is likely some typo See https://salsa.debian.org/owncloud-team/nextcloud-desktop/-/merge_requests/9#note_256687 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_3.RULE index 3a1a844f7f4..cb4e9bcf4d3 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_3.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 AND lgpl-2.1 +is_license_reference: yes +relevance: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +notes: this is likely some typo See https://salsa.debian.org/owncloud-team/nextcloud-desktop/-/merge_requests/9#note_256687 +--- + On Debian systems a full copy of the LGPL 2.1 can be found at /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_3.yml b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_3.yml deleted file mode 100644 index a451287dac1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND lgpl-2.1 -is_license_reference: yes -relevance: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -notes: this is likely some typo See https://salsa.debian.org/owncloud-team/nextcloud-desktop/-/merge_requests/9#note_256687 diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_4.RULE b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_4.RULE index c9aea7911b8..6d35ee88d21 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_4.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +notes: this is likely some typo See https://salsa.debian.org/owncloud-team/nextcloud-desktop/-/merge_requests/9#note_256687 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -11,4 +23,4 @@ Licensed under the Apache License, Version 2.0 (the "License"); limitations under the License. . On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found at - /usr/share/common-licenses/Apache-2.0 + /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_4.yml b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_4.yml deleted file mode 100644 index 520bb61422e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_4.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -notes: this is likely some typo See https://salsa.debian.org/owncloud-team/nextcloud-desktop/-/merge_requests/9#note_256687 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_5.RULE b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_5.RULE index 672c75e3c9e..b7ef3d782ca 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_5.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 AND lgpl-2.1 +is_license_reference: yes +relevance: 90 +referenced_filenames: + - /usr/share/common-licenses/Apache-2.0 +notes: this is likely some typo See https://salsa.debian.org/owncloud-team/nextcloud-desktop/-/merge_requests/9#note_256687 +--- + On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found at /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_5.yml b/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_5.yml deleted file mode 100644 index a451287dac1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-2.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND lgpl-2.1 -is_license_reference: yes -relevance: 90 -referenced_filenames: - - /usr/share/common-licenses/Apache-2.0 -notes: this is likely some typo See https://salsa.debian.org/owncloud-team/nextcloud-desktop/-/merge_requests/9#note_256687 diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_1.RULE index 16329118b77..bd9607767df 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND lgpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPL + - COPYING.ASL2 +--- + distributed pursuant to the terms of two different licenses. The user interface (located in ui/ in this distribution) is governed by the Apache License version 2.0. The rest of this distribution is diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_1.yml b/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_1.yml deleted file mode 100644 index 7f61e3258a5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND lgpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPL - - COPYING.ASL2 diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_or_gpl-3.0_1.RULE index b3e1787cefb..87f52226d39 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_or_gpl-3.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 AND (lgpl-3.0 OR gpl-3.0) +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + libraries are under the Apache License 2.0 (see @url{http://www.apache.org/licenses/LICENSE-2.0} for details), which is incompatible to the LGPL version 2.1 and GPL version 2. You have to diff --git a/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_or_gpl-3.0_1.yml deleted file mode 100644 index 3ee4804dfc3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_lgpl-3.0_or_gpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 AND (lgpl-3.0 OR gpl-3.0) -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_1.RULE index 4c83043819c..8e88923ac0d 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 AND maxmind-odl +is_license_notice: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) MaxMind, Inc. +ignorable_holders: + - MaxMind, Inc. +ignorable_urls: + - http://maxmind.com/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + There are two licenses, one for the software library, and one for the data. This product includes GeoLite data created by MaxMind, available from http://maxmind.com/ @@ -50,4 +63,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 -DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_1.yml b/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_1.yml deleted file mode 100644 index d1734668643..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 AND maxmind-odl -is_license_notice: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) MaxMind, Inc. -ignorable_holders: - - MaxMind, Inc. -ignorable_urls: - - http://maxmind.com/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_2.RULE index 0c0fedc5581..27422713f9b 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 AND maxmind-odl +is_license_notice: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) MaxMind, Inc. +ignorable_holders: + - MaxMind, Inc. +ignorable_urls: + - http://maxmind.com/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + There are two licenses, one for the software library, and one for the data. This product includes GeoLite data created by MaxMind, available from http://maxmind.com/ @@ -50,4 +63,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 -DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_2.yml b/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_2.yml deleted file mode 100644 index e1c58f8308d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_maxmind-odl_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 AND maxmind-odl -is_license_notice: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) MaxMind, Inc. -ignorable_holders: - - MaxMind, Inc. -ignorable_urls: - - http://maxmind.com/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_mit_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_mit_1.RULE index 5ecae53330a..70ad33472fd 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_mit_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 AND mit +is_license_notice: yes +relevance: 100 +--- + License This code is licensed under permissive Apache 2 and MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_mit_1.yml b/src/licensedcode/data/rules/apache-2.0_and_mit_1.yml deleted file mode 100644 index a65f6302cfd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_mit_and_bsd-simplified_and_epl-1.0_and_public-domain_and_and_others_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_mit_and_bsd-simplified_and_epl-1.0_and_public-domain_and_and_others_1.RULE index 0be1238bcea..f032b99bd57 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_mit_and_bsd-simplified_and_epl-1.0_and_public-domain_and_and_others_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_mit_and_bsd-simplified_and_epl-1.0_and_public-domain_and_and_others_1.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 AND mit AND bsd-simplified AND epl-1.0 AND public-domain AND + cc0-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://github.com/amplab/tachyon/blob/master/LICENSE +--- + https://github.com/amplab/tachyon/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_mit_and_bsd-simplified_and_epl-1.0_and_public-domain_and_and_others_1.yml b/src/licensedcode/data/rules/apache-2.0_and_mit_and_bsd-simplified_and_epl-1.0_and_public-domain_and_and_others_1.yml deleted file mode 100644 index 70ceb7b7432..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_mit_and_bsd-simplified_and_epl-1.0_and_public-domain_and_and_others_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND mit AND bsd-simplified AND epl-1.0 AND public-domain AND - cc0-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://github.com/amplab/tachyon/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_and_mit_nuget_url_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_mit_nuget_url_1.RULE index 42e4de02c43..20125ab7427 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_mit_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_mit_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/mausch/OpenX.Net/raw/master/license.txt +--- + https://github.com/mausch/OpenX.Net/raw/master/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_mit_nuget_url_1.yml b/src/licensedcode/data/rules/apache-2.0_and_mit_nuget_url_1.yml deleted file mode 100644 index 2f52e733097..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_mit_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/mausch/OpenX.Net/raw/master/license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_ms-pl_or_apache-2.0_and_ms-pl_nuget_url_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_ms-pl_or_apache-2.0_and_ms-pl_nuget_url_1.RULE index 689e5b449b3..30b295f55ea 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_ms-pl_or_apache-2.0_and_ms-pl_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_ms-pl_or_apache-2.0_and_ms-pl_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND (ms-pl OR apache-2.0) AND ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/fsharp/FAKE/blob/d86e9b5b8e7ebbb5a3d81c08d2e59518cf9d6da9/License.txt +--- + https://github.com/fsharp/FAKE/blob/d86e9b5b8e7ebbb5a3d81c08d2e59518cf9d6da9/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_ms-pl_or_apache-2.0_and_ms-pl_nuget_url_1.yml b/src/licensedcode/data/rules/apache-2.0_and_ms-pl_or_apache-2.0_and_ms-pl_nuget_url_1.yml deleted file mode 100644 index 3e7256c5747..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_ms-pl_or_apache-2.0_and_ms-pl_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND (ms-pl OR apache-2.0) AND ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/fsharp/FAKE/blob/d86e9b5b8e7ebbb5a3d81c08d2e59518cf9d6da9/License.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_ofl-1.1_nuget_url_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_ofl-1.1_nuget_url_1.RULE index f6502398bd2..3485f6e4ab3 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_ofl-1.1_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_ofl-1.1_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 AND ofl-1.1 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/JoanZapata/android-iconify/master/LICENSE.txt +--- + https://raw.githubusercontent.com/JoanZapata/android-iconify/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_ofl-1.1_nuget_url_1.yml b/src/licensedcode/data/rules/apache-2.0_and_ofl-1.1_nuget_url_1.yml deleted file mode 100644 index e77294fb765..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_ofl-1.1_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND ofl-1.1 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/JoanZapata/android-iconify/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_1.RULE index a463afea605..437daeae83c 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 AND other-permissive +is_license_notice: yes +relevance: 95 +ignorable_urls: + - https://github.com/CindyJS/CindyJS/tree/$gitid +--- + Mostly licensed under the Apache License 2.0, but subprojects may use different licensing. See https://github.com/CindyJS/CindyJS/tree/$gitid$ for corresponding sources and their respective licensing conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_1.yml deleted file mode 100644 index 49c8c3bbf0f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND other-permissive -is_license_notice: yes -relevance: 95 -ignorable_urls: - - https://github.com/CindyJS/CindyJS/tree/$gitid diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_2.RULE index 283afc13317..04ffd960398 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND other-permissive +is_license_notice: yes +relevance: 95 +--- + In addition, this product includes software dependencies. See the accompanying LICENSE.txt for a listing of dependencies that are NOT Apache licensed (with pointers to their licensing) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_2.yml b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_2.yml deleted file mode 100644 index ad1ff3347e0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND other-permissive -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_3.RULE index 27745bbad48..397823760b6 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND other-permissive +is_license_notice: yes +minimum_coverage: 90 +--- + The Apache HTTP Server includes a number of subcomponents with separate copyright notices and license terms. Your use of the source code for the these subcomponents is subject to the terms and diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_3.yml b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_3.yml deleted file mode 100644 index c7d60238f01..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND other-permissive -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_4.RULE b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_4.RULE index b1670fbe066..324cfcd08cf 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND other-permissive +is_license_notice: yes +minimum_coverage: 100 +--- + Apache Tomcat includes a number of subcomponents with separate copyright notices and license terms. Your use of the source code for the these subcomponents is subject to the terms and conditions of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_4.yml b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_4.yml deleted file mode 100644 index 157be8649cc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND other-permissive -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_and_gpl-3.0_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_and_gpl-3.0_and_other-copyleft_1.RULE index 44d13ffc16e..3df67447517 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_and_gpl-3.0_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_and_gpl-3.0_and_other-copyleft_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 AND other-permissive AND gpl-3.0 AND other-copyleft +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + software is released under the Apache 2.0 license. In addition, each module may contain numerous 3rd party components (libraries, icons, etc.) diff --git a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_and_gpl-3.0_and_other-copyleft_1.yml b/src/licensedcode/data/rules/apache-2.0_and_other-permissive_and_gpl-3.0_and_other-copyleft_1.yml deleted file mode 100644 index 56db651f7af..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_other-permissive_and_gpl-3.0_and_other-copyleft_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND other-permissive AND gpl-3.0 AND other-copyleft -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_and_polyform-free-trial-1.0.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_polyform-free-trial-1.0.0_1.RULE index 2c4b886a8c8..77ec2d766d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_polyform-free-trial-1.0.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_polyform-free-trial-1.0.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND polyform-free-trial-1.0.0 +is_license_notice: yes +relevance: 100 +--- + License Source code in this repository is variously licensed under the Apache License 2.0 and the Polyform Free Trial License 1.0.0. A copy of each license can be found in the licenses directory. @@ -5,4 +11,4 @@ Source code in this repository is variously licensed under the Apache License 2. The build produces two sets of binaries: The entire database with all its features (including the enterprise ones) are licensed under the Apache License 2.0 - The binaries that contain -managed in the artifact and help run a managed service are licensed under the Polyform Free Trial License 1.0.0. + The binaries that contain -managed in the artifact and help run a managed service are licensed under the Polyform Free Trial License 1.0.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_polyform-free-trial-1.0.0_1.yml b/src/licensedcode/data/rules/apache-2.0_and_polyform-free-trial-1.0.0_1.yml deleted file mode 100644 index 16de1f09de0..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_polyform-free-trial-1.0.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND polyform-free-trial-1.0.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_1.RULE index 7a2f8a8469e..1ff7ea60fa2 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + License Source code in this repository is variously licensed under the Apache License 2.0 and the Polyform Free Trial License 1.0.0. A copy of each license can be found in the licenses directory. @@ -7,4 +13,4 @@ The build produces two sets of binaries: The entire database with all its features are licensed under the Apache License 2.0 The binaries that contain -managed in the artifact and help run a managed service are licensed under the Polyform Free Trial License 1.0.0. - By default, the build options generate only the Apache License 2.0 binaries. + By default, the build options generate only the Apache License 2.0 binaries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_1.yml deleted file mode 100644 index 4467d171c90..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_2.RULE index 87aff2007d8..d467e9f2844 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - BUILDING_OSS +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + The Drone Community Edition is licensed under the Apache License, Version 2.0 (the "Apache License"). You may obtain a copy of the Apache License at diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_2.yml deleted file mode 100644 index 530863da50f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - BUILDING_OSS -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_3.RULE index 3ac1d15b0d5..ef446fb86fa 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: See in https://github.com/OPSN/MVP-discuss/blob/19fe27cefe8a224a5dba685b0877b7ba7d0f4cba/README.md#L24 + The patent grant may be problematic +--- + Note that everything contributed to this repo falls under the Apache license, version 2.0. In particular, that means that if you suggest any ideas in this repository, you're granting everyone the right to use any patents you might own, diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_3.yml b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_3.yml deleted file mode 100644 index b679c7de116..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: See in https://github.com/OPSN/MVP-discuss/blob/19fe27cefe8a224a5dba685b0877b7ba7d0f4cba/README.md#L24 - The patent grant may be problematic diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_4.RULE b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_4.RULE index c59ddc76935..9969bfb9b84 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - BUILDING_OSS +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + The Drone Community Edition is licensed under the Apache License, Version 2.0 (the "Apache License"). You may obtain a copy of the Apache License at diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_4.yml b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_4.yml deleted file mode 100644 index 6c87f2bd252..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - BUILDING_OSS -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_5.RULE b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_5.RULE index 258959e0b1b..e1d8fe18bfb 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: See in Firebase iOS SDK +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://firebase.google.com/terms +--- + ## License The contents of this repository is licensed under the diff --git a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_5.yml b/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_5.yml deleted file mode 100644 index ea24add490d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_proprietary-license_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: See in Firebase iOS SDK -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://firebase.google.com/terms diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment.RULE b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment.RULE index 4c584d84928..5a93378168f 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND scancode-acknowledgment +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 + - https://github.com/nexB/scancode-toolkit/ +--- + The ScanCode software is licensed under the Apache License version 2.0. Data generated with ScanCode require an acknowledgment. @@ -18,4 +27,4 @@ derivative work, you must accompany this data with the following acknowledgment: ScanCode should be considered or used as legal advice. Consult an Attorney for any legal advice. ScanCode is a free software code scanning tool from nexB Inc. and others. - Visit https://github.com/nexB/scancode-toolkit/ for support and download. + Visit https://github.com/nexB/scancode-toolkit/ for support and download. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment.yml b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment.yml deleted file mode 100644 index 1516746b541..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND scancode-acknowledgment -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 - - https://github.com/nexB/scancode-toolkit/ diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_1.RULE index 05cfcc3a430..6949e33bcd8 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND scancode-acknowledgment +is_license_tag: yes +relevance: 100 +--- + apache-2.0 AND scancode-acknowledgment \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_1.yml b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_1.yml deleted file mode 100644 index ea08024bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND scancode-acknowledgment -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_2.RULE index 020eef80656..8c92f61c01f 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 AND scancode-acknowledgment +is_license_notice: yes +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + # The ScanCode software is licensed under the Apache License version 2.0. # Data generated with ScanCode require an acknowledgment. # ScanCode is a trademark of nexB Inc. @@ -7,5 +14,4 @@ # 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. - +# specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_2.yml b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_2.yml deleted file mode 100644 index f01c41b0b04..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 AND scancode-acknowledgment -is_license_notice: yes -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_3.RULE index e3b4b59397b..fe0301f15dc 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_3.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apache-2.0 AND scancode-acknowledgment AND cc0-1.0 AND other-permissive + AND other-copyleft +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 + - http://creativecommons.org/publicdomain/zero/1.0/ + - https://github.com/nexB/scancode-thirdparty-src/ + - https://github.com/nexB/scancode-toolkit/ +ignorable_emails: + - info@nexb.com +--- + Software license ================ @@ -48,4 +62,4 @@ License for ScanCode datasets ScanCode includes datasets (e.g. for license detection) that are dedicated to the Public Domain using the Creative Commons CC0 1.0 Universal (CC0 1.0) -Public Domain Dedication: http://creativecommons.org/publicdomain/zero/1.0/ +Public Domain Dedication: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_3.yml b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_3.yml deleted file mode 100644 index a425a48e0de..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_3.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apache-2.0 AND scancode-acknowledgment AND cc0-1.0 AND other-permissive - AND other-copyleft -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 - - http://creativecommons.org/publicdomain/zero/1.0/ - - https://github.com/nexB/scancode-thirdparty-src/ - - https://github.com/nexB/scancode-toolkit/ -ignorable_emails: - - info@nexb.com diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_4.RULE b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_4.RULE index f0443ffa2c2..7ed64f2ce90 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_4.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND scancode-acknowledgment +is_license_tag: yes +relevance: 100 +--- + license=apache-2.0 AND scancode-acknowledgment \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_4.yml b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_4.yml deleted file mode 100644 index ea08024bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND scancode-acknowledgment -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_5.RULE b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_5.RULE index 0ca255a1af7..e202e22329c 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_5.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND scancode-acknowledgment +is_license_tag: yes +relevance: 100 +--- + Apache-2.0 with ScanCode acknowledgment', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_5.yml b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_5.yml deleted file mode 100644 index ea08024bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND scancode-acknowledgment -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_6.RULE b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_6.RULE index 78c2db4d16f..68f73c92084 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_6.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 AND scancode-acknowledgment +is_license_tag: yes +relevance: 100 +--- + license='Apache-2.0 with ScanCode acknowledgment', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_6.yml b/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_6.yml deleted file mode 100644 index ea08024bd64..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_scancode-acknowledgment_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND scancode-acknowledgment -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_1.RULE index 6e1de89c603..eafcba30a27 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND generic-trademark +is_license_notice: yes +relevance: 100 +notes: see https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_1.yml b/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_1.yml deleted file mode 100644 index 4f800748831..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND generic-trademark -is_license_notice: yes -relevance: 100 -notes: see https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_2.RULE index 3a246d3075e..da3690567eb 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 AND generic-trademark +is_license_notice: yes +relevance: 100 +notes: see https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_2.yml b/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_2.yml deleted file mode 100644 index 194c58d5f55..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_trademark-notice_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND generic-trademark -is_license_notice: yes -relevance: 100 -notes: see https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_1.RULE index 4de891549af..2d3973c56df 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_1.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 AND unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: seen in VMWare open source projects +--- + This project is licensed to you under the {{Apache License, Version 2.0 }} (the "License"). You may not use this project except in compliance with the License. This project may {{ include a number of subcomponents with separate copyright notices and license terms}}. Your use of these subcomponents is subject to the terms and -conditions of the {{subcomponent's license}}, as noted in the LICENSE file. +conditions of the {{subcomponent's license}}, as noted in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_1.yml deleted file mode 100644 index 9542363b871..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: seen in VMWare open source projects diff --git a/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_2.RULE index 597a3b0cc3e..3c107b24c8c 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_2.RULE @@ -1,8 +1,15 @@ +--- +license_expression: apache-2.0 AND unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This product is licensed to you {{under the Apache License, Version 2.0}} (the "License"). You may not use this product except in compliance with the License. This product may {{include a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions -of the subcomponent's license}}, as noted in the LICENSE file. - +of the subcomponent's license}}, as noted in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_2.yml b/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_2.yml deleted file mode 100644 index 5579c463322..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_unknown-license-reference_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 AND unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_1.RULE b/src/licensedcode/data/rules/apache-2.0_and_vim_1.RULE index 582232d4272..4834c42a306 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_vim_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 AND vim +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the Apache 2.0 license, except for parts of Neovim that were contributed under the Vim license (see below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_1.yml b/src/licensedcode/data/rules/apache-2.0_and_vim_1.yml deleted file mode 100644 index 7c2a2ee6742..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_2.RULE b/src/licensedcode/data/rules/apache-2.0_and_vim_2.RULE index a27e2de4ba4..88012f04aea 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_vim_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND vim +is_license_notice: yes +relevance: 100 +--- + Any parts of Neovim that were contributed under the Vim license are licensed under the Vim license unless the copyright holder gave permission to license those contributions under the Apache 2.0 license. diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_2.yml b/src/licensedcode/data/rules/apache-2.0_and_vim_2.yml deleted file mode 100644 index 7c2a2ee6742..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_3.RULE b/src/licensedcode/data/rules/apache-2.0_and_vim_3.RULE index 94d46e72871..f0ff19999d6 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_vim_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 AND vim +is_license_notice: yes +relevance: 100 +--- + Neovim is licensed under the terms of the Apache 2.0 license, except for parts of Neovim that were contributed under the Vim license (see below). diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_3.yml b/src/licensedcode/data/rules/apache-2.0_and_vim_3.yml deleted file mode 100644 index 7c2a2ee6742..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_4.RULE b/src/licensedcode/data/rules/apache-2.0_and_vim_4.RULE index 952fa118d52..adca013ffb1 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_vim_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 AND vim +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the Apache 2.0 license, except for parts that were contributed under the Vim license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_4.yml b/src/licensedcode/data/rules/apache-2.0_and_vim_4.yml deleted file mode 100644 index 7c2a2ee6742..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 AND vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_5.RULE b/src/licensedcode/data/rules/apache-2.0_and_vim_5.RULE index b878cb9d35f..618d54e98e6 100644 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_and_vim_5.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 AND vim +is_license_notice: yes +relevance: 100 +notes: https://github.com/neovim/neovim/blob/master/LICENSE +--- + Neovim is licensed under the terms of the Apache 2.0 license, except for parts of Neovim that were contributed under the Vim license (see below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_and_vim_5.yml b/src/licensedcode/data/rules/apache-2.0_and_vim_5.yml deleted file mode 100644 index fe15fdfbe4e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_and_vim_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 AND vim -is_license_notice: yes -relevance: 100 -notes: https://github.com/neovim/neovim/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_ant.RULE b/src/licensedcode/data/rules/apache-2.0_ant.RULE index 1fb6dde4779..41cbed8522f 100644 --- a/src/licensedcode/data/rules/apache-2.0_ant.RULE +++ b/src/licensedcode/data/rules/apache-2.0_ant.RULE @@ -1,3 +1,18 @@ +--- +license_expression: apache-2.0 AND sax-pd AND w3c +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - NOTICE + - LICENSE +ignorable_authors: + - The Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ + - http://www.saxproject.org/ + - http://www.w3c.org/ +--- + ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, == @@ -12,4 +27,4 @@ - the SAX project (http://www.saxproject.org) Please read the different LICENSE files present in the root directory of - this distribution. + this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_ant.yml b/src/licensedcode/data/rules/apache-2.0_ant.yml deleted file mode 100644 index 893ec148ccf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_ant.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: apache-2.0 AND sax-pd AND w3c -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - NOTICE - - LICENSE -ignorable_authors: - - The Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ - - http://www.saxproject.org/ - - http://www.w3c.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_distributed.RULE b/src/licensedcode/data/rules/apache-2.0_distributed.RULE index 1dd7abb14ba..797f179f0fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_distributed.RULE +++ b/src/licensedcode/data/rules/apache-2.0_distributed.RULE @@ -1 +1,7 @@ -This library is distributed under terms of Apache License 2.0 +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +This library is distributed under terms of Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_distributed.yml b/src/licensedcode/data/rules/apache-2.0_distributed.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_distributed.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_easyeclipse.RULE b/src/licensedcode/data/rules/apache-2.0_easyeclipse.RULE index bc2bf589699..e4a6bc863b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_easyeclipse.RULE +++ b/src/licensedcode/data/rules/apache-2.0_easyeclipse.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 98 +notes: | + incorrect Apache license text found in EasyEclipse + there is a minor typo in section 2 where "in License" is used instead + of "in this License" +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 @@ -199,4 +212,4 @@ 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_easyeclipse.yml b/src/licensedcode/data/rules/apache-2.0_easyeclipse.yml deleted file mode 100644 index 8d309581882..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_easyeclipse.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 98 -notes: | - incorrect Apache license text found in EasyEclipse - there is a minor typo in section 2 where "in License" is used instead - of "in this License" -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_elastic.RULE b/src/licensedcode/data/rules/apache-2.0_elastic.RULE index 4bd06c6e6c8..9964a322d15 100644 --- a/src/licensedcode/data/rules/apache-2.0_elastic.RULE +++ b/src/licensedcode/data/rules/apache-2.0_elastic.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - NOTICE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with diff --git a/src/licensedcode/data/rules/apache-2.0_elastic.yml b/src/licensedcode/data/rules/apache-2.0_elastic.yml deleted file mode 100644 index 30477f6b85f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_elastic.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - NOTICE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_governed.RULE b/src/licensedcode/data/rules/apache-2.0_governed.RULE index 17f9469935c..8420f8f2c5c 100644 --- a/src/licensedcode/data/rules/apache-2.0_governed.RULE +++ b/src/licensedcode/data/rules/apache-2.0_governed.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_governed.yml b/src/licensedcode/data/rules/apache-2.0_governed.yml deleted file mode 100644 index 389a34b8413..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_governed.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_jna1.RULE b/src/licensedcode/data/rules/apache-2.0_jna1.RULE index 2318da1caac..3a3f26fc6a7 100644 --- a/src/licensedcode/data/rules/apache-2.0_jna1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_jna1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - AL2.0 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + This copy of is licensed under the Apache (Software) License, version 2.0 ("the License"). See the License for details about distribution rights, and the @@ -9,4 +18,4 @@ http://www.apache.org/licenses/ A copy is also included in the downloadable source code package containing , in file "AL2.0", under the same directory -as this file. +as this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_jna1.yml b/src/licensedcode/data/rules/apache-2.0_jna1.yml deleted file mode 100644 index a31f75f4207..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_jna1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - AL2.0 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_not_gpl.RULE b/src/licensedcode/data/rules/apache-2.0_not_gpl.RULE index e232f3429e8..24de08da370 100644 --- a/src/licensedcode/data/rules/apache-2.0_not_gpl.RULE +++ b/src/licensedcode/data/rules/apache-2.0_not_gpl.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +--- + the Apache Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_not_gpl.yml b/src/licensedcode/data/rules/apache-2.0_not_gpl.yml deleted file mode 100644 index b055fbb5a1d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_not_gpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_not_gpl_1.RULE b/src/licensedcode/data/rules/apache-2.0_not_gpl_1.RULE index ad0064cfbce..77136a7973c 100644 --- a/src/licensedcode/data/rules/apache-2.0_not_gpl_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_not_gpl_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - notice.md +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + * See the notice.md file distributed with this work for additional * information regarding copyright ownership. * diff --git a/src/licensedcode/data/rules/apache-2.0_not_gpl_1.yml b/src/licensedcode/data/rules/apache-2.0_not_gpl_1.yml deleted file mode 100644 index ecf604a4d69..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_not_gpl_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - notice.md -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_notice_1.RULE b/src/licensedcode/data/rules/apache-2.0_notice_1.RULE index 5c8e27b524a..11034337283 100644 --- a/src/licensedcode/data/rules/apache-2.0_notice_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_notice_1.RULE @@ -1,4 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + ========================================================================= == NOTICE file corresponding to the section 4 d of == == the Apache License, Version 2.0, == - == in this case for the \ No newline at end of file + == in this case for the \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_notice_1.yml b/src/licensedcode/data/rules/apache-2.0_notice_1.yml deleted file mode 100644 index 013fbf37142..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_notice_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_1.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_1.RULE index 60ea62efd8d..a6bdbcd3aeb 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://github.com/buybackoff/QuikSharp/blob/master/LICENSE.txt +--- + http://github.com/buybackoff/QuikSharp/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_1.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_1.yml deleted file mode 100644 index 5ea68f9c448..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://github.com/buybackoff/QuikSharp/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_10.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_10.RULE index 5163e3ff67e..caf470595a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_10.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/inthefabric/RexConnectClient/blob/master/LICENSE.md +--- + https://github.com/inthefabric/RexConnectClient/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_10.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_10.yml deleted file mode 100644 index 7340c242a54..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/inthefabric/RexConnectClient/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_11.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_11.RULE index b9b152b16a4..db4db9188d7 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_11.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/inthefabric/Weaver/blob/master/LICENSE.md +--- + https://github.com/inthefabric/Weaver/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_11.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_11.yml deleted file mode 100644 index be33b4f1878..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/inthefabric/Weaver/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_12.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_12.RULE index 519b5ab015d..43d9ea3d0c5 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_12.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/JaCraig/SQLHelper/blob/master/LICENSE +--- + https://github.com/JaCraig/SQLHelper/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_12.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_12.yml deleted file mode 100644 index 17170178614..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/JaCraig/SQLHelper/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_13.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_13.RULE index 9450c3a7b44..c0a97efc3cf 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_13.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jasperdk/NPloy/blob/master/LICENSE +--- + https://github.com/jasperdk/NPloy/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_13.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_13.yml deleted file mode 100644 index f221085bc0a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jasperdk/NPloy/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_14.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_14.RULE index 19442d647a4..d5e6164a27c 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_14.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jezzsantos/ServiceStack.Webhooks/blob/master/LICENSE +--- + https://github.com/jezzsantos/ServiceStack.Webhooks/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_14.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_14.yml deleted file mode 100644 index 5580535d30d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jezzsantos/ServiceStack.Webhooks/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_15.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_15.RULE index aef9ab35a6a..804a6c6be9f 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_15.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_15.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jirimatejka/xamarin-logger/blob/master/LICENSE +--- + https://github.com/jirimatejka/xamarin-logger/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_15.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_15.yml deleted file mode 100644 index 8c1f1c7a452..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jirimatejka/xamarin-logger/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_16.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_16.RULE index d75b1a31db5..cc654f349ba 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_16.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_16.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/keannan5390/serilog-sinks-hockeyapp/blob/master/LICENSE +--- + https://github.com/keannan5390/serilog-sinks-hockeyapp/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_16.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_16.yml deleted file mode 100644 index 2b5726c551b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/keannan5390/serilog-sinks-hockeyapp/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_17.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_17.RULE index 49540859877..8949ab7a56c 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_17.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_17.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/KevinWG/OSS.Http/blob/master/LICENSE +--- + https://github.com/KevinWG/OSS.Http/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_17.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_17.yml deleted file mode 100644 index 40f511bce6c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/KevinWG/OSS.Http/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_18.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_18.RULE index 48d6df38f8f..2e9f4d84069 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_18.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_18.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/lukeryannetnz/quartznet-dynamodb/blob/master/LICENSE +--- + https://github.com/lukeryannetnz/quartznet-dynamodb/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_18.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_18.yml deleted file mode 100644 index db161b2bca5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/lukeryannetnz/quartznet-dynamodb/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_19.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_19.RULE index 9b6cb9ebcbb..0b393e2d0a0 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_19.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_19.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Marfusios/bitfinex-client-websocket/blob/master/LICENSE +--- + https://github.com/Marfusios/bitfinex-client-websocket/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_19.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_19.yml deleted file mode 100644 index 2236bd14d0f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Marfusios/bitfinex-client-websocket/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_2.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_2.RULE index 05c8443364b..d11ccb543da 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/dalenewman/Cfg-NET/blob/master/LICENSE.md +--- + https://github.com/dalenewman/Cfg-NET/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_2.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_2.yml deleted file mode 100644 index fd4842fc8de..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/dalenewman/Cfg-NET/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_20.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_20.RULE index ff0ec256460..929946d8a3b 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_20.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_20.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/martincostello/xunit-logging/blob/master/LICENSE +--- + https://github.com/martincostello/xunit-logging/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_20.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_20.yml deleted file mode 100644 index 4da805015df..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/martincostello/xunit-logging/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_21.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_21.RULE index 92528b81c4e..fdc702499df 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_21.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_21.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/msiddiqi/AmazonS3Sink/blob/master/LICENSE +--- + https://github.com/msiddiqi/AmazonS3Sink/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_21.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_21.yml deleted file mode 100644 index 6121a8c894e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/msiddiqi/AmazonS3Sink/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_22.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_22.RULE index a1cef3b27f7..51b1b050787 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_22.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_22.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/purplebricks/Pat.Sender/blob/master/LICENSE +--- + https://github.com/purplebricks/Pat.Sender/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_22.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_22.yml deleted file mode 100644 index c42a4e643d8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/purplebricks/Pat.Sender/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_23.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_23.RULE index 9a3feadaf07..ea8b921e496 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_23.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_23.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/purplebricks/Pat.Subscriber/blob/master/LICENSE +--- + https://github.com/purplebricks/Pat.Subscriber/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_23.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_23.yml deleted file mode 100644 index e20b541992f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/purplebricks/Pat.Subscriber/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_24.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_24.RULE index 7d686d5a94d..29e5f75b37c 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_24.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_24.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/riganti/infrastructure/blob/master/LICENSE +--- + https://github.com/riganti/infrastructure/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_24.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_24.yml deleted file mode 100644 index 78a272165ac..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/riganti/infrastructure/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_25.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_25.RULE index f667afdda95..d96711e1096 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_25.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_25.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/rogeralsing/Microphone/blob/master/LICENSE +--- + https://github.com/rogeralsing/Microphone/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_25.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_25.yml deleted file mode 100644 index 74808f2c160..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/rogeralsing/Microphone/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_26.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_26.RULE index f99730abdce..557eef1255d 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_26.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_26.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/sergey-shandar/getboost/blob/master/LICENSE +--- + https://github.com/sergey-shandar/getboost/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_26.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_26.yml deleted file mode 100644 index b5c08366053..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/sergey-shandar/getboost/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_27.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_27.RULE index 44eb97c4fed..cbacbfd5be4 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_27.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_27.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/seven1986/OAuthLogin/blob/master/LICENSE +--- + https://github.com/seven1986/OAuthLogin/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_27.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_27.yml deleted file mode 100644 index a6bf592709d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/seven1986/OAuthLogin/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_28.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_28.RULE index 1f4fe0a1449..de9f76b3ed1 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_28.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_28.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/unitycontainer/NLog/blob/master/LICENSE +--- + https://github.com/unitycontainer/NLog/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_28.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_28.yml deleted file mode 100644 index 1579c1429de..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/unitycontainer/NLog/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_29.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_29.RULE index d021dd3c328..6560c003d47 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_29.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_29.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/wintoncode/Winton.Extensions.Threading.Actor/blob/master/LICENSE +--- + https://github.com/wintoncode/Winton.Extensions.Threading.Actor/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_29.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_29.yml deleted file mode 100644 index 96ea2fb1810..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/wintoncode/Winton.Extensions.Threading.Actor/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_3.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_3.RULE index 47c0b6bdd23..aa02b619953 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/DarthFubuMVC/fubumvc/raw/master/license.txt +--- + https://github.com/DarthFubuMVC/fubumvc/raw/master/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_3.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_3.yml deleted file mode 100644 index 8341b352d18..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/DarthFubuMVC/fubumvc/raw/master/license.txt diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_30.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_30.RULE index bdb111cb6bd..a1aa77c5c3d 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_30.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_30.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/XForms/Xamarin-Forms-Labs/blob/master/LICENSE +--- + https://github.com/XForms/Xamarin-Forms-Labs/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_30.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_30.yml deleted file mode 100644 index cab27af4b2c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/XForms/Xamarin-Forms-Labs/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_31.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_31.RULE index 9daed505561..c832f0b6913 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_31.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_31.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/AttackPattern/CSharpAnalytics/master/Source/LICENCE.txt +--- + https://raw.github.com/AttackPattern/CSharpAnalytics/master/Source/LICENCE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_31.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_31.yml deleted file mode 100644 index e00275917b1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/AttackPattern/CSharpAnalytics/master/Source/LICENCE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_32.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_32.RULE index 24cb41ef07d..299e0737bcf 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_32.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_32.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/camalot/camalot.common/master/License.md +--- + https://raw.github.com/camalot/camalot.common/master/License.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_32.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_32.yml deleted file mode 100644 index 315cf6aa1ea..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/camalot/camalot.common/master/License.md diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_33.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_33.RULE index 8f7125e61ad..b4308b13a0a 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_33.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_33.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/camalot/EndpointMvc/master/LICENSE.md +--- + https://raw.github.com/camalot/EndpointMvc/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_33.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_33.yml deleted file mode 100644 index 365e7502da8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/camalot/EndpointMvc/master/LICENSE.md diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_34.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_34.RULE index 97d99932cdf..81a8b57e85a 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_34.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_34.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/ericsink/SQLitePCL.raw/master/LICENSE.TXT +--- + https://raw.github.com/ericsink/SQLitePCL.raw/master/LICENSE.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_34.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_34.yml deleted file mode 100644 index 27b86a936f6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/ericsink/SQLitePCL.raw/master/LICENSE.TXT diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_35.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_35.RULE index 7de0bcd0ade..718cb8ffe38 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_35.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_35.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/ferventcoder/this.Log/master/LICENSE +--- + https://raw.github.com/ferventcoder/this.Log/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_35.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_35.yml deleted file mode 100644 index bb84f0e08c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/ferventcoder/this.Log/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_36.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_36.RULE index 1fde21cb47e..ba99da8d369 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_36.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_36.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/owin/gate/HEAD/LICENSE.txt +--- + https://raw.github.com/owin/gate/HEAD/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_36.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_36.yml deleted file mode 100644 index 9b213289579..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/owin/gate/HEAD/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_37.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_37.RULE index 56924d61abf..fe315378fdc 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_37.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_37.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/monemihir/webextras/master/LICENSE +--- + https://raw.githubusercontent.com/monemihir/webextras/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_37.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_37.yml deleted file mode 100644 index 52748c998c6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/monemihir/webextras/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_38.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_38.RULE index 24b5daa04a7..71172d9eee6 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_38.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_38.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/akkadotnet/akka.net/blob/master/LICENSE +--- + https://github.com/akkadotnet/akka.net/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_38.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_38.yml deleted file mode 100644 index 963d527739f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/akkadotnet/akka.net/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_39.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_39.RULE index 1aecb55843d..c634c38f1b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_39.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_39.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/bcuff/DynamoDBMapper/blob/master/LICENSE +--- + https://github.com/bcuff/DynamoDBMapper/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_39.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_39.yml deleted file mode 100644 index ceb48e2a3b3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/bcuff/DynamoDBMapper/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_4.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_4.RULE index 27059f5b056..20fca647710 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/dfensgmbh/biz.dfch.CS.Commons/blob/master/LICENSE +--- + https://github.com/dfensgmbh/biz.dfch.CS.Commons/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_4.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_4.yml deleted file mode 100644 index 6e38f9f400b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/dfensgmbh/biz.dfch.CS.Commons/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_40.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_40.RULE index bd34df0d70d..fe7634c7ccc 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_40.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_40.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/burakince/DependencyCheck.Runner.Tool/blob/master/LICENSE +--- + https://github.com/burakince/DependencyCheck.Runner.Tool/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_40.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_40.yml deleted file mode 100644 index 73c423220cf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/burakince/DependencyCheck.Runner.Tool/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_41.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_41.RULE index 880ff87c591..a5670b52c99 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_41.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_41.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Cheesebaron/SGTabbedPager/blob/master/LICENSE +--- + https://github.com/Cheesebaron/SGTabbedPager/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_41.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_41.yml deleted file mode 100644 index 94f8deca39c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Cheesebaron/SGTabbedPager/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_5.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_5.RULE index a71ea02579c..dff582a5fb5 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_5.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://github.com/Horusiath/Akkling/blob/master/LICENSE +--- + http://github.com/Horusiath/Akkling/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_5.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_5.yml deleted file mode 100644 index d372497730f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://github.com/Horusiath/Akkling/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_6.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_6.RULE index eaa1fc3c170..78e626545cc 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_6.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/dvabuzyarov/Ninject.Extensions.MetadataRegistration/blob/master/LICENSE +--- + https://github.com/dvabuzyarov/Ninject.Extensions.MetadataRegistration/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_6.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_6.yml deleted file mode 100644 index f1da9c7eecb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/dvabuzyarov/Ninject.Extensions.MetadataRegistration/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_7.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_7.RULE index 63acee8e958..5666cdce9e8 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_7.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Esri/file-geodatabase-api/blob/master/FileGDB_API_1.5/License.txt +--- + https://github.com/Esri/file-geodatabase-api/blob/master/FileGDB_API_1.5/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_7.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_7.yml deleted file mode 100644 index 4568948250f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Esri/file-geodatabase-api/blob/master/FileGDB_API_1.5/License.txt diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_8.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_8.RULE index 47e9519d947..1d26b80fd84 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_8.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/hug3id/Xamarin.Forms.BaiduMaps/blob/master/LICENSE +--- + https://github.com/hug3id/Xamarin.Forms.BaiduMaps/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_8.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_8.yml deleted file mode 100644 index 36a7afdfaf6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/hug3id/Xamarin.Forms.BaiduMaps/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_9.RULE b/src/licensedcode/data/rules/apache-2.0_nuget_url_9.RULE index 190a31abebc..5cfb16421e1 100644 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_nuget_url_9.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/InfoTechBridge/OrmToolkit/blob/master/LICENSE +--- + https://github.com/InfoTechBridge/OrmToolkit/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_nuget_url_9.yml b/src/licensedcode/data/rules/apache-2.0_nuget_url_9.yml deleted file mode 100644 index e61d6d1a151..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_nuget_url_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/InfoTechBridge/OrmToolkit/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_opencv_1.RULE b/src/licensedcode/data/rules/apache-2.0_opencv_1.RULE index d59727eee31..d062083a5f7 100644 --- a/src/licensedcode/data/rules/apache-2.0_opencv_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_opencv_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 99 +notes: the license of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ +referenced_filenames: + - LICENSE +ignorable_urls: + - http://opencv.org/license.html +--- + This file is part of OpenCV project. It is subject to the license terms in the LICENSE file found in the top-level directory of this distribution and at http://opencv.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_opencv_1.yml b/src/licensedcode/data/rules/apache-2.0_opencv_1.yml deleted file mode 100644 index 1663c578cf2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_opencv_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 99 -notes: the license of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ -referenced_filenames: - - LICENSE -ignorable_urls: - - http://opencv.org/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_opticon.RULE b/src/licensedcode/data/rules/apache-2.0_opticon.RULE index 993375b59dc..cad5f402af2 100644 --- a/src/licensedcode/data/rules/apache-2.0_opticon.RULE +++ b/src/licensedcode/data/rules/apache-2.0_opticon.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 @@ -187,4 +196,4 @@ 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_opticon.yml b/src/licensedcode/data/rules/apache-2.0_opticon.yml deleted file mode 100644 index 7bcd0d462ff..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_opticon.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new.RULE index 307552d6790..3f83d716d9b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +notes: seen in https://pypi.python.org/pypi/python-subunit +--- + Licensed under either the Apache License, Version 2.0 or the BSD 3-clause license at the users choice. A copy of both licenses are available in the project source as Apache-2.0 and BSD. You may not use this file except in compliance with one of these diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new.yml deleted file mode 100644 index e457cf3c985..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes -notes: seen in https://pypi.python.org/pypi/python-subunit diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new2.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new2.RULE index 7949a2bca55..bd12b5a2092 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 75 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under both the Apache License, Version 2.0 (the "Apache License") and the BSD License (the "BSD License"), with licensee being free to choose either of the two at their discretion. @@ -43,4 +51,4 @@ following notice applies to you: 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. + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new2.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new2.yml deleted file mode 100644 index fab4b5cd62a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 75 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new3.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new3.RULE index 9e9145fb596..dfde49a6f6e 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new3.RULE @@ -1,6 +1,11 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +--- + Licensed under both the Apache License, Version 2.0 (the "Apache License") and the BSD License (the "BSD License"), with licensee being free to choose either of the two at their discretion. You may not use this file except in compliance with either the Apache -License or the BSD License. +License or the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new3.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new3.yml deleted file mode 100644 index 595ba99dcc5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_1.RULE index 01cf85bac30..9ce1c5e2480 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +--- + # is provided for use under two licenses: Apache OR BSD. # Users may opt to use either license depending on the license # restictions of the systems with which they plan to integrate diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_1.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_1.yml deleted file mode 100644 index 595ba99dcc5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_10.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_10.RULE index 9b13b79452b..4e30278415e 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +notes: https://bazaar.launchpad.net/~testing-cabal/testscenarios/master/view/head:/COPYING +--- + licensed under two licenses, the Apache License, Version 2.0 or the 3-clause BSD License. You may use this project under either of these licenses - choose the one that works best for you. diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_10.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_10.yml deleted file mode 100644 index fbd254316b7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes -notes: https://bazaar.launchpad.net/~testing-cabal/testscenarios/master/view/head:/COPYING diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_2.RULE index ff5ba0d2cc5..3f5a768c215 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +--- + # is provided for use under two licenses: Apache OR BSD. # Users may opt to use either license depending on the license # restrictions of the systems with which they plan to integrate diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_2.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_2.yml deleted file mode 100644 index 595ba99dcc5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_3.RULE index 9bbae06420c..ede7a6ef279 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_3.RULE @@ -1,4 +1,9 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +--- + # is provided for use under two licenses: Apache OR BSD. # Users may opt to use either license depending on the license # restictions of the systems with which they plan to integrate -# the \ No newline at end of file +# the \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_3.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_3.yml deleted file mode 100644 index 595ba99dcc5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_4.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_4.RULE index 2e0cee2d049..627c4ef7120 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_4.RULE @@ -1,4 +1,9 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +--- + # is provided for use under two licenses: Apache OR BSD. # Users may opt to use either license depending on the license # restrictions of the systems with which they plan to integrate -# the \ No newline at end of file +# the \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_4.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_4.yml deleted file mode 100644 index 595ba99dcc5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_5.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_5.RULE index 42ecf41d1fb..36e4957c419 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + License This work is dual-licensed under Apache 2.0 or BSD3. You may select, at your option, one of the above-listed licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_5.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_5.yml deleted file mode 100644 index da45f36f505..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_6.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_6.RULE index 6c4c14989f8..e99723e15da 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + This work is dual-licensed under Apache 2.0 or BSD3. You may select, at your option, one of the above-listed licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_6.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_6.yml deleted file mode 100644 index da45f36f505..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_7.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_7.RULE index a35585de811..99b83733ad8 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_7.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + This work is dual-licensed under Apache 2.0 or BSD3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_7.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_7.yml deleted file mode 100644 index da45f36f505..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_8.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_8.RULE index fc34d979ba1..9f2f526ed26 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_8.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.APACHE + - LICENSE.BSD +--- + This software is made available under the terms of *either* of the licenses found in LICENSE.APACHE or LICENSE.BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_8.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_8.yml deleted file mode 100644 index 1843faa5774..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.APACHE - - LICENSE.BSD diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_9.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_9.RULE index cf9c6ae50a6..139e0c86625 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under both the Apache License, Version 2.0 (the "Apache License") and the BSD License (the "BSD License"), with licensee being free to choose either of the two at their discretion. @@ -43,4 +51,4 @@ following notice applies to you: 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. + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_9.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_9.yml deleted file mode 100644 index 7f4fd61bd24..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_or_cc-by-nc-sa-4.0_or_epl-1.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_or_cc-by-nc-sa-4.0_or_epl-1.0_1.RULE index 2edf97565d0..85dff2afde8 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_or_cc-by-nc-sa-4.0_or_epl-1.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_or_cc-by-nc-sa-4.0_or_epl-1.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR bsd-new OR cc-by-nc-sa-4.0 OR epl-1.0 OR agpl-3.0 OR gpl-2.0 + OR gpl-3.0 OR lgpl-3.0 OR mit OR artistic-2.0 OR ruby +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://spdx.org/licenses/ +--- + # License Use any license below. Reference https://spdx.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_or_cc-by-nc-sa-4.0_or_epl-1.0_1.yml b/src/licensedcode/data/rules/apache-2.0_or_bsd-new_or_cc-by-nc-sa-4.0_or_epl-1.0_1.yml deleted file mode 100644 index 73bf4bf034b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_bsd-new_or_cc-by-nc-sa-4.0_or_epl-1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR bsd-new OR cc-by-nc-sa-4.0 OR epl-1.0 OR agpl-3.0 OR gpl-2.0 - OR gpl-3.0 OR lgpl-3.0 OR mit OR artistic-2.0 OR ruby -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://spdx.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_or_epl-1.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_epl-1.0_1.RULE index c8b7de6d116..bf059f2d963 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_epl-1.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_epl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR epl-1.0 +is_license_notice: yes +relevance: 100 +--- + dual licensed under the Apache Licence 2.0 and/or the Eclipse Public License 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_epl-1.0_1.yml b/src/licensedcode/data/rules/apache-2.0_or_epl-1.0_1.yml deleted file mode 100644 index f04e9895927..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_epl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_1.RULE index 643fbc95194..4f43a82e9cb 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR epl-2.0 +is_license_tag: yes +relevance: 99 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - http://www.eclipse.org/legal/epl-v20.html +--- + {{The Apache Software License}}, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_1.yml b/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_1.yml deleted file mode 100644 index 887170d1d93..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR epl-2.0 -is_license_tag: yes -relevance: 99 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_2.RULE index 43fb89b4d30..d9e4cc5597b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR epl-2.0 +is_license_tag: yes +relevance: 99 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The {{Apache Software License, Version 2.0}} diff --git a/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_2.yml b/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_2.yml deleted file mode 100644 index 660d509baf6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_epl-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR epl-2.0 -is_license_tag: yes -relevance: 99 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_free-unknown_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_free-unknown_1.RULE index f762f8412bd..0f21b3dda30 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_free-unknown_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR free-unknown +is_license_notice: yes +relevance: 100 +--- + dual licenced under the Apache 2.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_free-unknown_1.yml b/src/licensedcode/data/rules/apache-2.0_or_free-unknown_1.yml deleted file mode 100644 index 94f3cb4b994..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_free-unknown_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_free-unknown_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_free-unknown_2.RULE index 7541dc8b232..66dd911151b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_free-unknown_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_free-unknown_2.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR free-unknown +is_license_notice: yes +relevance: 100 +--- + dual licensed under the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_free-unknown_2.yml b/src/licensedcode/data/rules/apache-2.0_or_free-unknown_2.yml deleted file mode 100644 index 94f3cb4b994..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_free-unknown_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_1.RULE index baa4d7c8635..1f6eec9cd5f 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 601874ff572..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_2.RULE index f1eec57fbf6..e7cab10b645 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_2.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - http://www.fsf.org/licensing/licenses/lgpl.txt +--- + The Apache Software License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0.txtrepoGNU Lesser General Public License (LGPL), Version 2.1http://www.fsf.org/licensing/licenses/lgpl.txtrepo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_2.yml deleted file mode 100644 index a94b5045b5e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - http://www.fsf.org/licensing/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_3.RULE index cf5115a56b7..df4dfe021c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_3.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 OR gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - http://www.fsf.org/licensing/licenses/lgpl.txt +--- + The {{Apache Software License}}, Version 2.0http://www.apache.org/licenses/LICENSE-2.0.txtrepo{{GNU Lesser General Public License}} (LGPL), Version 2.1http://www.fsf.org/licensing/licenses/lgpl.txtrepo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_3.yml deleted file mode 100644 index 7180b7bdb65..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - http://www.fsf.org/licensing/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_4.RULE index d803aab426f..b252bb81beb 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_4.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 OR gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/lgpl.txt + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The {{Apache Software License}}, Version 2.0https://www.apache.org/licenses/LICENSE-2.0.txtrepo{{GNU Lesser General Public License}} (LGPL), Version 2.1http://www.fsf.org/licensing/licenses/lgpl.txtrepo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_4.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_4.yml deleted file mode 100644 index 9d89cab5462..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/lgpl.txt - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_5.RULE index db6fb1b5876..bd6a2495ac5 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_5.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/lgpl.txt + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + The {{Apache Software License}}, Version 2.0https://www.apache.org/licenses/LICENSE-2.0.txtrepo{{GNU Lesser General Public License}} (LGPL), Version 2.1http://www.fsf.org/licensing/licenses/lgpl.txtrepo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_5.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_5.yml deleted file mode 100644 index 3a9db750594..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-1.0-plus_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/lgpl.txt - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_1.RULE index 6d76432e256..14396c5e3fb 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + may be used under the conditions of either of two licenses, the Apache License (version 2.0 or later) or the GNU General Public License, version 2.0 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_1.yml deleted file mode 100644 index c033c0d22db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_10.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_10.RULE index 9ecb2bc9c8d..91244e32ad7 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_reference: yes +relevance: 99 +minimum_coverage: 80 +notes: Seen in dulwich. This is an uncommon license reference to a future Apache license version. + For now we report only apache-2.0 +--- + Changed license from "GNU General Public License, version 2.0 or later" to "Apache License, version 2.0 or later or GNU General Public License, version 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_10.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_10.yml deleted file mode 100644 index 972dd7c15be..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_reference: yes -relevance: 99 -minimum_coverage: 80 -notes: Seen in dulwich. This is an uncommon license reference to a future Apache license version. - For now we report only apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_11.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_11.RULE index 7c18c05d4eb..ce47da40ea1 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_11.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in dulwich. +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + is dual-licensed under the Apache License, Version 2.0 and the GNU General Public License as public by the Free Software Foundation; version 2.0 or (at your option) any later version. You can redistribute it and/or diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_11.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_11.yml deleted file mode 100644 index 4cfb4bd2113..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in dulwich. -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_12.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_12.RULE index 1270ae74fcd..136c5b19c1f 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_12.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in dulwich. +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/ +--- + is dual-licensed under the Apache License, Version 2.0 and the GNU General Public License as public by the Free Software Foundation; version 2.0 or (at your option) any later version. You can redistribute it and/or diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_12.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_12.yml deleted file mode 100644 index c09197285bc..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in dulwich. -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_13.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_13.RULE index 8587032bbfa..9c130a80b08 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_13.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in dulwich. +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/ +--- + is dual-licensed under the Apache License, Version 2.0 and the GNU General Public License as public by the Free Software Foundation; version 2.0 or (at your option) any later version. You can redistribute it and/or diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_13.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_13.yml deleted file mode 100644 index fd376fa554b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_13.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in dulwich. -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_14.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_14.RULE index c680f766ded..c544099337d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_14.RULE @@ -1,6 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +notes: https://github.com/swinslow/spdxify/blob/master/LICENSE-code.txt +--- + source code is provided and may be used, at your option, under either: * {{Apache License, version 2.0 (Apache-2.0), OR * GNU General Public License, version 2.0 or later (GPL-2.0-or-later)}}. -Copies of both licenses are included below. +Copies of both licenses are included below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_14.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_14.yml deleted file mode 100644 index d09990de4e2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -notes: https://github.com/swinslow/spdxify/blob/master/LICENSE-code.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_2.RULE index 71422d7f985..aecf0e7b109 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + the Apache License (version 2.0 or later) or the GNU General Public License, version 2.0 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_2.yml deleted file mode 100644 index c033c0d22db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_3.RULE index 8f1929ea783..3cac85acfc0 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_3.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: Apache-2.0 or GPL-2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_3.yml deleted file mode 100644 index 00c5d00c026..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_4.RULE index e2143797b0b..103f1583f67 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in dulwich. +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/ +--- + is dual-licensed under the Apache License, Version 2.0 and the GNU General Public License as public by the Free Software Foundation; version 2.0 or (at your option) any later version. You can redistribute it and/or diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_4.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_4.yml deleted file mode 100644 index 0e1b37b0552..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in dulwich. -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_5.RULE index 1f4127271ce..1dcbd45279e 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_5.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in dulwich. +--- + dual-licensed under the Apache version 2.0 license and the GNU General Public License, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_5.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_5.yml deleted file mode 100644 index afed5ded630..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in dulwich. diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_6.RULE index 7fbde8e9a1b..f8847ee5f67 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_reference: yes +relevance: 99 +notes: Seen in dulwich. This is an uncommon license reference to a future Apache license version. + For now we report only apache-2.0 +--- + Licensing All contributions should be made under the same license that itself diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_6.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_6.yml deleted file mode 100644 index 34d8030f78f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_reference: yes -relevance: 99 -notes: Seen in dulwich. This is an uncommon license reference to a future Apache license version. - For now we report only apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_7.RULE index 146497e780b..5aa4cb5d21a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_7.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: Seen in dulwich +--- + Apache License, version 2 or GNU General Public License, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_7.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_7.yml deleted file mode 100644 index dc44a5a806a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: Seen in dulwich diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_8.RULE index 1a9068debda..a2853e726e7 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_8.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_tag: yes +relevance: 100 +notes: Seen in dulwich +--- + **License**: Apache License, version 2 or GNU General Public License, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_8.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_8.yml deleted file mode 100644 index 6974423638e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_tag: yes -relevance: 100 -notes: Seen in dulwich diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_9.RULE index cba7b24781d..c2763a4f426 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_9.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under dual GPLv2+/Apache-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_9.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_9.yml deleted file mode 100644 index c033c0d22db..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_1.RULE index ccb372c333b..6b7a301dc24 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/ + - http://www.gnu.org/software/classpath/license.html +--- + * Licensed either under the Apache License, Version 2.0, or (at your option) * under the terms of the GNU General Public License as published by * the Free Software Foundation (subject to the "Classpath" exception), diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_1.yml deleted file mode 100644 index fd755d7f876..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/ - - http://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_10.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_10.RULE index 0620c6d9dc7..9b350219fb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_10.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/ + - https://www.gnu.org/software/classpath/license.html +--- + {{Apache License, Version 2.0}} diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_10.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_10.yml deleted file mode 100644 index c12d76250ba..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/ - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.RULE index dd45ce85c41..e078339bb00 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/ + - http://www.gnu.org/software/classpath/license.html +--- + Apache License, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.yml deleted file mode 100644 index 26bf7bfc503..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/ - - http://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.RULE index 56b39d2049b..9421ef61cf1 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.RULE @@ -1 +1,6 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_reference: yes +--- + Offer the Apache License, Version 2.0, as a new choice of license, in addition to the GPLv2 with Classpath exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 1716c9135e4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_4.RULE index cb7cc4b8a5c..9e9fffe5d52 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +--- + You may use this work under the terms of either the Apache License, Version 2.0, or the GNU General Public License (GPL), either version 2, or any later version, with "Classpath" exception (details below). diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_4.yml deleted file mode 100644 index d461e59d63e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_5.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_5.RULE index 3f7691f8322..37f278bf98d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://www.gnu.org/licenses/ + - http://www.gnu.org/software/classpath/license.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + * Licensed either under the Apache License, Version 2.0, or (at your option) * under the terms of the GNU General Public License as published by * the Free Software Foundation (subject to the "Classpath" exception), diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_5.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_5.yml deleted file mode 100644 index fc992720bc2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://www.gnu.org/licenses/ - - http://www.gnu.org/software/classpath/license.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_6.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_6.RULE index 4a7b9c4b0b6..4abbb43984a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ + - http://www.gnu.org/software/classpath/license.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_6.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_6.yml deleted file mode 100644 index 20d7c26a38e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ - - http://www.gnu.org/software/classpath/license.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_7.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_7.RULE index 6101351b0a4..0aceebbe8f9 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/ + - https://www.gnu.org/software/classpath/license.html +--- + {{Apache License}}, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_7.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_7.yml deleted file mode 100644 index b0e68ea3c00..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/ - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_8.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_8.RULE index b4656c4a40d..8615ad50efd 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_8.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/ + - https://www.gnu.org/software/classpath/license.html +--- + * Licensed either under the Apache License, Version 2.0, or (at your option) * under the terms of the GNU General Public License as published by * the Free Software Foundation (subject to the "Classpath" exception), diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_8.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_8.yml deleted file mode 100644 index 95e7ae7922b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_8.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/ - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_9.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_9.RULE index 68f9a79e53c..4fb1d06982b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_9.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/ + - https://www.gnu.org/software/classpath/license.html +--- + * Licensed either under the Apache License, Version 2.0, or (at your option) * under the terms of the GNU General Public License as published by * the Free Software Foundation (subject to the "Classpath" exception), diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_9.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_9.yml deleted file mode 100644 index fae22f31211..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0-plus_with_classpath-exception-2.0_9.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/ - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0.RULE index e3663ec174f..8d8a6a4415f 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0.RULE @@ -1,2 +1,7 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +--- + Dual-licensed for under the Apache License Version 2.0 or the General Public License (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0.yml deleted file mode 100644 index 4605122ffdb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_1.RULE index 250c7283e33..d174687a768 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache @@ -11,4 +19,4 @@ http://www.gnu.org/licenses/gpl-2.0.html Unless required by applicable law or agreed to in writing, software distributed under the Apache License or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for the specific language governing -permissions and limitations under the Apache License and the GPL License. +permissions and limitations under the Apache License and the GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_1.yml deleted file mode 100644 index 3ae57dc58ae..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_10.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_10.RULE index 404c9ea5580..4f75601973d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_tag: yes +relevance: 99 +notes: Seen in dulwich. This is an uncommon license reference to or later for apache For now + we report only apache-2.0 +--- + Apachev2 or later or GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_10.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_10.yml deleted file mode 100644 index 61ffbd9be55..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_tag: yes -relevance: 99 -notes: Seen in dulwich. This is an uncommon license reference to or later for apache For now - we report only apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_11.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_11.RULE index 352a09c60c0..65409bc870a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache @@ -11,4 +19,4 @@ You may obtain a copy of the Apache License and the GPL License at: Unless required by applicable law or agreed to in writing, software distributed under the Apache License or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for -the specific language governing permissions and limitations under the Apache License and the GPL License. +the specific language governing permissions and limitations under the Apache License and the GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_11.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_11.yml deleted file mode 100644 index f6f918bfe13..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_12.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_12.RULE index ac04aa1457d..2e759284187 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_12.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache License or the GPL License. You may obtain a copy of the Apache License and the GPL License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_12.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_12.yml deleted file mode 100644 index fd47b89254e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_13.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_13.RULE index 6afe23f8a01..6cf71fb03c7 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache @@ -11,4 +19,4 @@ http://www.gnu.org/licenses/gpl-2.0.html Unless required by applicable law or agreed to in writing, software distributed under the Apache License or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for the specific language governing -permissions and limitations under the Apache License and the GPL License. +permissions and limitations under the Apache License and the GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_13.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_13.yml deleted file mode 100644 index f6f918bfe13..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_14.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_14.RULE index 892432bdddd..a2579a31c15 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_14.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ## Copyright and License diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_14.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_14.yml deleted file mode 100644 index fd47b89254e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_15.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_15.RULE index f66091f89ef..f82672fd54e 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_15.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + "licenses": [ { "type": "Apache License", diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_15.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_15.yml deleted file mode 100644 index df8173cb76f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_16.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_16.RULE index e38897793d6..581b6b3e3b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_16.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache @@ -11,4 +20,4 @@ You may obtain a copy of the Apache License and the GPL License at: Unless required by applicable law or agreed to in writing, software distributed under the Apache License or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for -the specific language governing permissions and limitations under the Apache License and the GPL License. +the specific language governing permissions and limitations under the Apache License and the GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_16.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_16.yml deleted file mode 100644 index 0d22bf21de8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_17.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_17.RULE index 23268a522a6..fa6d9e705f9 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + "licenses": [ { "type": "Apache License", diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_17.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_17.yml deleted file mode 100644 index 11ebbdec352..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_18.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_18.RULE index 9858ead6e21..e3f819891ba 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_18.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache @@ -11,4 +20,4 @@ You may obtain a copy of the Apache License and the GPL License at: Unless required by applicable law or agreed to in writing, software distributed under the Apache License or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for -the specific language governing permissions and limitations under the Apache License and the GPL License. +the specific language governing permissions and limitations under the Apache License and the GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_18.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_18.yml deleted file mode 100644 index fcb0f63a1f2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_19.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_19.RULE index 66e3a175b35..8b6e41893ac 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_19.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_19.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + ## Copyright and License diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_19.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_19.yml deleted file mode 100644 index 0d22bf21de8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_2.RULE index ffefb47710d..1b58a5b15a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +--- + This file is dual licensed. It may be redistributed and/or modified under the terms of the Apache 2.0 License OR version 2 of the GNU -General Public License. +General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_2.yml deleted file mode 100644 index 4605122ffdb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_20.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_20.RULE index aba1a568a73..663a51fa88b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_20.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache License or the GPL License. You may obtain a copy of the Apache License and the GPL License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_20.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_20.yml deleted file mode 100644 index fcb0f63a1f2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_21.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_21.RULE index be7bbe0976b..2bfee92240d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache @@ -11,4 +20,4 @@ https://www.gnu.org/licenses/gpl-2.0.html Unless required by applicable law or agreed to in writing, software distributed under the Apache License or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for the specific language governing -permissions and limitations under the Apache License and the GPL License. +permissions and limitations under the Apache License and the GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_21.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_21.yml deleted file mode 100644 index fcb0f63a1f2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_22.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_22.RULE index 7c2454a74fe..f705e9b2a3c 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache @@ -11,4 +20,4 @@ https://www.gnu.org/licenses/gpl-2.0.html Unless required by applicable law or agreed to in writing, software distributed under the Apache License or the GPL Licesnse is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for the specific language governing -permissions and limitations under the Apache License and the GPL License. +permissions and limitations under the Apache License and the GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_22.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_22.yml deleted file mode 100644 index 0d22bf21de8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_23.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_23.RULE index 497462bab95..ed91fb563ad 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_23.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_23.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + ## Copyright and License diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_23.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_23.yml deleted file mode 100644 index fcb0f63a1f2..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE index d9a8bbb39c0..34f6631567a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + "licenses": [ { "type": "Apache License", diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.yml deleted file mode 100644 index 46717ffcd60..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_25.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_25.RULE index 470fcd91f8e..71ffb8db0e3 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_25.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache License or the GPL License. You may obtain a copy of the Apache License and the GPL License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_25.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_25.yml deleted file mode 100644 index 0d22bf21de8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_3.RULE index 095028cf66d..5ea4a2af936 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 15 +--- + Licensing All files contained with this distribution are licenced either under the Apache License v2.0 or the GNU General Public License v2.0. You must agree to the terms of these licenses and abide by them before viewing, utilizing, modifying, or distributing the source code contained within this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_3.yml deleted file mode 100644 index a9bc615f3f1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 15 diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_4.RULE index 7d2707bf05d..fb7f3ee13ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache @@ -11,4 +19,4 @@ You may obtain a copy of the Apache License and the GPL License at: Unless required by applicable law or agreed to in writing, software distributed under the Apache License or the GPL License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License and the GPL License for -the specific language governing permissions and limitations under the Apache License and the GPL License. +the specific language governing permissions and limitations under the Apache License and the GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_4.yml deleted file mode 100644 index 3ae57dc58ae..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_5.RULE index d5dc1521db5..9c79d523362 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_5.RULE @@ -1,4 +1,13 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING + - LICENSE.Apache +notes: seen in RocksDB +--- + # This source code is licensed under both the Apache 2.0 license (found in the # LICENSE file in the root directory of this source tree) and the GPLv2 (found # in the COPYING file in the root directory of this source tree). -# You may select, at your option, one of the above-listed licenses +# You may select, at your option, one of the above-listed licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_5.yml deleted file mode 100644 index 41746474c20..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING - - LICENSE.Apache -notes: seen in RocksDB diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_6.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_6.RULE index ca5f5fed2b7..696aca9fc51 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This software is licensed under the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License"). You may choose either license to govern your use of this software only upon the condition that you accept all of the terms of either the Apache License or the GPL License. You may obtain a copy of the Apache License and the GPL License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_6.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_6.yml deleted file mode 100644 index e95b4b18459..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_7.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_7.RULE index f1d3840c559..4245083e526 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/gpl-2.0.html +--- + "licenses": [ { "type": "Apache License", diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_7.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_7.yml deleted file mode 100644 index f08369eecc9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_8.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_8.RULE index 7dbb5ee27c1..a464df7c34f 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/gpl-2.0.html +--- + ## Copyright and License diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_8.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_8.yml deleted file mode 100644 index e95b4b18459..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_9.RULE b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_9.RULE index 3bf7768916e..fc7ae7ea7ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 OR gpl-2.0 +is_license_tag: yes +relevance: 99 +notes: Seen in dulwich. This is an uncommon license reference to or later for apache For now + we report only apache-2.0 +--- + License: Apachev2 or later or GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_9.yml b/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_9.yml deleted file mode 100644 index 61ffbd9be55..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR gpl-2.0 -is_license_tag: yes -relevance: 99 -notes: Seen in dulwich. This is an uncommon license reference to or later for apache For now - we report only apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_1.RULE index 7cdc6e51abe..9ef5a5ef900 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 OR lgpl-3.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE-apache2 + - LICENSE-lgpl +--- + This product is dual licensed under both the Apache2 and LGPL licenses. See LICENSE-apache2 and LICENSE-lgpl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_1.yml b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_1.yml deleted file mode 100644 index 029016c116c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR lgpl-3.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE-apache2 - - LICENSE-lgpl diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_2.RULE index 54a16c610d7..cd4da06de3b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 OR lgpl-3.0 +is_license_tag: yes +relevance: 95 +minimum_coverage: 70 +referenced_filenames: + - LICENSE-apache2 + - LICENSE-lgpl +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- + Apache 2 diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_2.yml b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_2.yml deleted file mode 100644 index 5b84aff97b6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR lgpl-3.0 -is_license_tag: yes -relevance: 95 -minimum_coverage: 70 -referenced_filenames: - - LICENSE-apache2 - - LICENSE-lgpl -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_3.RULE index e89f4ce28d5..6318a916f26 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_3.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 OR lgpl-3.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE-apache2 + - LICENSE-lgpl +--- + This product is dual licensed under a choice of either the Apache-2.0 or the LGPL-3.0 license. See LICENSE-apache2 and LICENSE-lgpl for the full text of the licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_3.yml b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_3.yml deleted file mode 100644 index 029016c116c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR lgpl-3.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE-apache2 - - LICENSE-lgpl diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_4.RULE b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_4.RULE index e9658e76fad..f54223202cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_4.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 OR lgpl-3.0 +is_license_tag: yes +relevance: 95 +minimum_coverage: 70 +referenced_filenames: + - LICENSE-apache2 + - LICENSE-lgpl +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + Apache 2 diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_4.yml b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_4.yml deleted file mode 100644 index 43ebe0bd1a3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_4.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR lgpl-3.0 -is_license_tag: yes -relevance: 95 -minimum_coverage: 70 -referenced_filenames: - - LICENSE-apache2 - - LICENSE-lgpl -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_5.RULE b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_5.RULE index 67dcae856ca..ffd1bf5046d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_5.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 OR lgpl-3.0 +is_license_tag: yes +relevance: 95 +minimum_coverage: 70 +referenced_filenames: + - LICENSE-apache2 + - LICENSE-lgpl +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + Apache 2 diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_5.yml b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_5.yml deleted file mode 100644 index c52be08a6a7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_5.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR lgpl-3.0 -is_license_tag: yes -relevance: 95 -minimum_coverage: 70 -referenced_filenames: - - LICENSE-apache2 - - LICENSE-lgpl -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_6.RULE b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_6.RULE index 546a422d3b5..f5ffce6d0ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_6.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 OR lgpl-3.0 +is_license_tag: yes +relevance: 95 +minimum_coverage: 70 +referenced_filenames: + - LICENSE-apache2 + - LICENSE-lgpl +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + Apache 2 diff --git a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_6.yml b/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_6.yml deleted file mode 100644 index a3c9310f22f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_lgpl-3.0_6.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR lgpl-3.0 -is_license_tag: yes -relevance: 95 -minimum_coverage: 70 -referenced_filenames: - - LICENSE-apache2 - - LICENSE-lgpl -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit.RULE index b73bc4fe909..f8f4c5b4444 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit.RULE @@ -1,4 +1,10 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + is distributed under the terms of {{either Apache License, Version 2.0 MIT License}} -at your option. +at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit.yml b/src/licensedcode/data/rules/apache-2.0_or_mit.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_1.RULE index 62874d1ca76..36cf39abdf5 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License Licensed under either of @@ -5,4 +17,4 @@ Licensed under either of {{Apache License, Version 2.0 }}(LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) {{MIT license }}(LICENSE-MIT or http://opensource.org/licenses/MIT) -{{at your option.}} +{{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_1.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_1.yml deleted file mode 100644 index 8e14c37c65a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_10.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_10.RULE index 74f12f978bd..c35432f3245 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_10.RULE @@ -1 +1,7 @@ -This is {{same as the Rust Project's own license}}. +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 95 +--- + +This is {{same as the Rust Project's own license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_10.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_10.yml deleted file mode 100644 index 4eb784db171..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_11.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_11.RULE index b2a23232224..7e66506cb4c 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_11.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License Licensed under either of @@ -8,4 +17,4 @@ Licensed under either of {{at your option}}. Contribution -Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the {{Apache-2.0 license}}, shall be {{dual licensed}} as above, without any additional terms or conditions. +Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the {{Apache-2.0 license}}, shall be {{dual licensed}} as above, without any additional terms or conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_11.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_11.yml deleted file mode 100644 index 6a8aaee0b81..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_12.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_12.RULE index 58c9a6b5e82..a81b9647d12 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_12.RULE @@ -1,6 +1,19 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under either of {{Apache License, Version 2.0}} (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) -{{at your option}}. +{{at your option}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_12.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_12.yml deleted file mode 100644 index afbd4842b0e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_12.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_13.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_13.RULE index 5b92aec6d2e..418e1fe9458 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_13.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ## License Licensed under either of @@ -7,4 +20,4 @@ Licensed under either of * {{MIT license}} ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) -{{at your option.}} +{{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_13.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_13.yml deleted file mode 100644 index afbd4842b0e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_13.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_14.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_14.RULE index 9508c31dc0a..5980d1da0fd 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_14.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under either of * {{Apache License, Version 2.0}} @@ -5,4 +19,4 @@ Licensed under either of * {{MIT license}} ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) -{{at your option.}} +{{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_14.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_14.yml deleted file mode 100644 index c8906b9ee14..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_14.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_15.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_15.RULE index f59b5df6c7e..95f647d2971 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_15.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_15.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Intellectual Property Notice is licensed under the {{Apache License, Version 2.0}} @@ -6,4 +18,4 @@ the {{MIT license}} (see LICENSE-MIT or http://opensource.org/licenses/MIT), {{at your option.}} Copyrights and patents in the project are retained by contributors. -No copyright assignment is required to contribute to +No copyright assignment is required to contribute to \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_15.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_15.yml deleted file mode 100644 index ee09230e6fb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_15.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_16.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_16.RULE index c4f1fc84f98..f8fbfda4a77 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_16.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_16.RULE @@ -1,6 +1,18 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Intellectual Property Notice is licensed under the {{Apache License, Version 2.0}} (see LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) or the {{MIT license}} (see LICENSE-MIT or http://opensource.org/licenses/MIT), -{{at your option.}} +{{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_16.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_16.yml deleted file mode 100644 index b11e813a2b6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_16.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_17.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_17.RULE index 9dcdc92214d..7f4de7607f3 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_17.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_17.RULE @@ -1,4 +1,16 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the {{Apache License, Version 2.0}} (see LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) or the {{MIT license}} (see LICENSE-MIT or http://opensource.org/licenses/MIT), -{{at your option.}} +{{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_17.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_17.yml deleted file mode 100644 index b11e813a2b6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_17.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_18.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_18.RULE index 9812d786887..dea91fbb3e6 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_18.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_18.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ## License is {{dual licensed}} under both @@ -10,4 +20,4 @@ and * The {{MIT License}} http://opensource.org/licenses/MIT - may be distributed under either license. + may be distributed under either license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_18.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_18.yml deleted file mode 100644 index a7b13193065..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_18.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_19.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_19.RULE index a3f1ebce016..1c31131f2e4 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_19.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_19.RULE @@ -1,3 +1,16 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ## License Licensed under either of @@ -7,4 +20,4 @@ Licensed under either of * {{MIT license}} ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) -{{at your option}}. +{{at your option}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_19.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_19.yml deleted file mode 100644 index 15a93d006f3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_19.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_2.RULE index 0f717688d87..c88ee48b901 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 OR mit +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 +--- + License @@ -11,4 +22,4 @@ Contribution See CONTRIBUTING.md for hacking. -Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the {{Apache-2.0 license}}, shall be {{dual licensed}} as above, without any additional terms or conditions. +Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the {{Apache-2.0 license}}, shall be {{dual licensed}} as above, without any additional terms or conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_2.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_2.yml deleted file mode 100644 index 05c7d9f83c5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 OR mit -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 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_20.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_20.RULE index 8cffd2e3477..b8d59da2bfd 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_20.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_20.RULE @@ -1,4 +1,12 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Except as otherwise noted (below and/or in individual files), is licensed under the {{Apache License, Version 2.0}} or or the {{MIT license}} - or , {{at your option.}} + or , {{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_20.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_20.yml deleted file mode 100644 index 02e0e48fd9b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_21.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_21.RULE index b169a51f56b..751598eb30f 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_21.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_21.RULE @@ -1,3 +1,14 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License @@ -11,4 +22,4 @@ Contribution See CONTRIBUTING.md for hacking. -Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. +Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_21.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_21.yml deleted file mode 100644 index 748994709e3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_21.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_22.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_22.RULE index af51ac78075..5455fb5ee3c 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_22.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_22.RULE @@ -1,6 +1,18 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Intellectual Property Notice is licensed under the {{Apache License, Version 2.0}} (see LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) or the {{MIT license}} (see LICENSE-MIT or http://opensource.org/licenses/MIT), -{{at your option}}. +{{at your option}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_22.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_22.yml deleted file mode 100644 index a5647242bce..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_22.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_23.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_23.RULE index 28dd210af1f..a92a942fcce 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_23.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_23.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under either of * {{Apache License}}, Version 2.0 @@ -5,4 +19,4 @@ Licensed under either of * {{MIT license}} ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) -{{at your option}}. +{{at your option}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_23.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_23.yml deleted file mode 100644 index 05c3a722ffb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_23.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_24.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_24.RULE index 3c33b78a91e..ea7e6eac18a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_24.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_24.RULE @@ -1,6 +1,19 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under either of {{Apache License}}, Version 2.0 (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) -{{at your option}}. +{{at your option}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_24.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_24.yml deleted file mode 100644 index 15a93d006f3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_24.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -notes: see https://github.com/prixa-ai/sqlx/blob/ac896e3af10317d80edfc4e8c91a12dc5b302c93/README.md -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_25.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_25.RULE index 0604dad6133..dda9a02a88a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_25.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_25.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License Licensed under either of @@ -8,4 +17,4 @@ Licensed under either of {{at your option}}. Contribution -Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. +Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_25.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_25.yml deleted file mode 100644 index 6de4c5a6cdf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_26.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_26.RULE index ca0be483500..3741877829b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_26.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_26.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License Licensed under either of @@ -5,4 +17,4 @@ Licensed under either of {{Apache License}}, Version 2.0 (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) -{{at your option}}. +{{at your option}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_26.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_26.yml deleted file mode 100644 index 34057ddce6a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_26.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_27.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_27.RULE index 02d2e0441ed..cab225e8c05 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_27.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_27.RULE @@ -1,6 +1,18 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License Licensed {{under either}} of these: {{Apache License}}, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) - {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) + {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_27.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_27.yml deleted file mode 100644 index a5647242bce..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_27.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_28.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_28.RULE index d2c4e9686ba..151078d5228 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_28.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_28.RULE @@ -1,4 +1,16 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the {{Apache License}}, Version 2.0 (see LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) or the {{MIT license}} (see LICENSE-MIT or http://opensource.org/licenses/MIT), -{{at your option}}. +{{at your option}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_28.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_28.yml deleted file mode 100644 index a5647242bce..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_28.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_29.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_29.RULE index 0b5042a6bfd..746c6cf3733 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_29.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_29.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + {{dual licensed under both}} * The {{Apache 2.0 License}} https://www.apache.org/licenses/LICENSE-2.0 and * The {{MIT License}} - http://opensource.org/licenses/MIT + http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_29.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_29.yml deleted file mode 100644 index 6de4c5a6cdf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_3.RULE index 3f436156aa1..d068f1857a6 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ## License is dual licensed under both @@ -10,4 +20,4 @@ and * The {{MIT License}} http://opensource.org/licenses/MIT -{{ may be distributed under either license.}} +{{ may be distributed under either license.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_3.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_3.yml deleted file mode 100644 index fe406ab8297..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_30.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_30.RULE index 2885fd5b078..36aaaa35f93 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_30.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_30.RULE @@ -1,4 +1,17 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +minimum_coverage: 60 +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed {{under either}} of these: {{Apache License, Version 2.0}}, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) - {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) + {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_30.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_30.yml deleted file mode 100644 index b1c5cdda58b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_30.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -minimum_coverage: 60 -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_31.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_31.RULE index 0dfd475fbef..09719dc462f 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_31.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_31.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Intellectual Property Notice is licensed under the {{Apache License, Version 2.0}} @@ -6,4 +18,4 @@ the {{MIT license}} (see LICENSE-MIT or http://opensource.org/licenses/MIT), {{at your option.}} Copyrights and patents in the project are retained by contributors. -No copyright assignment is required to contribute to +No copyright assignment is required to contribute to \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_31.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_31.yml deleted file mode 100644 index f967fa9d0f6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_31.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_32.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_32.RULE index 309d66cf4dd..531f6de7cc5 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_32.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_32.RULE @@ -1,3 +1,15 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License This program is licensed under either of @@ -11,4 +23,4 @@ Contribution Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed -as above, without any additional terms or conditions. +as above, without any additional terms or conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_32.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_32.yml deleted file mode 100644 index b11e813a2b6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_32.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_33.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_33.RULE index c6063f5a8ca..2b18f522709 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_33.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_33.RULE @@ -1 +1,7 @@ -This project is licensed under the terms of {{both the MIT license and the Apache License}} Version 2.0. +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + +This project is licensed 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/apache-2.0_or_mit_33.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_33.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_34.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_34.RULE index 085d2d925bd..30ffbfa4d5b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_34.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_34.RULE @@ -1,3 +1,11 @@ +--- +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 All crates licensed under either of @@ -5,4 +13,4 @@ All crates licensed under either of - {{Apache License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0) - {{MIT license}} (http://opensource.org/licenses/MIT) -{{at your option.}} +{{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_34.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_34.yml deleted file mode 100644 index b9eec1cf7d8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -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 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_35.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_35.RULE index fb21d2623c8..95c87fc609a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_35.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_35.RULE @@ -1,2 +1,11 @@ +--- +license_expression: apache-2.0 OR mit +is_license_reference: yes +relevance: 99 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +--- + {{LICENSE-APACHE -LICENSE-MIT}} +LICENSE-MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_35.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_35.yml deleted file mode 100644 index 168c336010d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_reference: yes -relevance: 99 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_36.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_36.RULE index 1238552849b..08bfebe1e0b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_36.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_36.RULE @@ -1 +1,7 @@ -{{apache-2.0 OR MIT}} +--- +license_expression: apache-2.0 OR mit +is_license_reference: yes +relevance: 100 +--- + +{{apache-2.0 OR MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_36.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_36.yml deleted file mode 100644 index a8ff1314480..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_37.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_37.RULE index e5fc2f56da0..4d3a36903ef 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_37.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_37.RULE @@ -1 +1,7 @@ -license = "{{Apache-2.0 OR MIT}}" +--- +license_expression: apache-2.0 OR mit +is_license_tag: yes +relevance: 100 +--- + +license = "{{Apache-2.0 OR MIT}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_37.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_37.yml deleted file mode 100644 index 3a4e6c6c738..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_38.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_38.RULE index 34e80b8860b..14a82c4115b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_38.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_38.RULE @@ -1 +1,7 @@ -licensed {{under both the Apache 2 and MIT}} licenses. +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + +licensed {{under both the Apache 2 and MIT}} licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_38.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_38.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_39.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_39.RULE index e38829fff52..ca89c32af83 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_39.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_39.RULE @@ -1 +1,7 @@ -licensed {{under both the Apache 2.0 and MIT}} licenses +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + +licensed {{under both the Apache 2.0 and MIT}} licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_39.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_39.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_4.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_4.RULE index 0aa84056620..f8f4ce73a06 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_4.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + dual licensed {{under both}} * The {{Apache 2.0 License}} http://www.apache.org/licenses/LICENSE-2.0 and * The {{MIT License}} - http://opensource.org/licenses/MIT + http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_4.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_4.yml deleted file mode 100644 index 6a8aaee0b81..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_40.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_40.RULE index 2c13f3ce16d..07c326d7396 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_40.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_40.RULE @@ -1 +1,7 @@ -{{under both the Apache 2 and MIT}} licenses. +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + +{{under both the Apache 2 and MIT}} licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_40.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_40.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_41.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_41.RULE index eb2bdca37cb..a6bdb8cb7a0 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_41.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_41.RULE @@ -1 +1,7 @@ -{{under both the Apache 2.0 and MIT}} licenses +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + +{{under both the Apache 2.0 and MIT}} licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_41.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_41.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_42.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_42.RULE index 4538fdfd594..4e01466ec71 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_42.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_42.RULE @@ -1,4 +1,12 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +ignorable_urls: + - https://choosealicense.com/licenses/apache-2.0 + - https://choosealicense.com/licenses/mit +--- + is distributed under the {{terms of both}} -{{ `Apache License, Version 2.0}} `_ -- {{`MIT License }} `_ +- {{`MIT License }} `_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_42.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_42.yml deleted file mode 100644 index f61115bf13f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -ignorable_urls: - - https://choosealicense.com/licenses/apache-2.0 - - https://choosealicense.com/licenses/mit diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_43.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_43.RULE index e2c73e37998..0f478c2151d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_43.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_43.RULE @@ -1,6 +1,11 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +--- + License is distributed under the terms of both {{Apache License, Version 2.0}} {{MIT License }} -{{at your option.}} +{{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_43.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_43.yml deleted file mode 100644 index 671fdf9af1c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_43.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_44.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_44.RULE index 78f934a69e6..20917a2cbbc 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_44.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_44.RULE @@ -1 +1,7 @@ -license='{{MIT/Apache-2.0}}', +--- +license_expression: apache-2.0 OR mit +is_license_tag: yes +relevance: 100 +--- + +license='{{MIT/Apache-2.0}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_44.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_44.yml deleted file mode 100644 index 3a4e6c6c738..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_45.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_45.RULE index 5c08dd0e48e..c066f951a65 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_45.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_45.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 OR mit +is_license_tag: yes +relevance: 100 +--- + 'License :: OSI Approved :: {{MIT License}}', -'License :: OSI Approved :: {{Apache Software License}}', +'License :: OSI Approved :: {{Apache Software License}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_45.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_45.yml deleted file mode 100644 index 3a4e6c6c738..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_46.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_46.RULE index 4fe66ac1178..e239f32cb5d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_46.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_46.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + dual-licensed under Apache License, version 2 and MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_46.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_46.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_47.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_47.RULE index 98fb571c098..526eab844a8 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_47.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_47.RULE @@ -1,4 +1,12 @@ +--- +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 +--- + Except as otherwise noted (below and/or in individual files), is licensed under the {{Apache License, Version 2.0}} or or the {{MIT license}} - or , {{at your option.}} + or , {{at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_47.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_47.yml deleted file mode 100644 index b9eec1cf7d8..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -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 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_48.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_48.RULE index 442979cd483..789a3f0048f 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_48.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_48.RULE @@ -1 +1,7 @@ -{{Apache-2.0/MIT}} +--- +license_expression: apache-2.0 OR mit +is_license_reference: yes +relevance: 99 +--- + +{{Apache-2.0/MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_48.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_48.yml deleted file mode 100644 index 63cdb9e58a3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_49.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_49.RULE index cad8d69cd44..48fa001a5f1 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_49.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_49.RULE @@ -1 +1,7 @@ -license: {{Apache-2.0/MIT}} +--- +license_expression: apache-2.0 OR mit +is_license_reference: yes +relevance: 99 +--- + +license: {{Apache-2.0/MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_49.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_49.yml deleted file mode 100644 index 63cdb9e58a3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_5.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_5.RULE index c1fef0e31ef..6665edeeb39 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_5.RULE @@ -1,6 +1,15 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + dual licensed {{under both}} * The {{Apache 2.0 License}} https://www.apache.org/licenses/LICENSE-2.0 and * The {{MIT License}} - https://opensource.org/licenses/MIT + https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_5.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_5.yml deleted file mode 100644 index 82eecfa12eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_6.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_6.RULE index 97a092f0a35..9b9ab8f29e2 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_6.RULE @@ -1,6 +1,18 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License Licensed {{under either}} of these: {{Apache License, Version 2.0}}, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) - {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) + {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_6.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_6.yml deleted file mode 100644 index b11e813a2b6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_6.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_7.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_7.RULE index b8a78cb942f..d28cc92eae9 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_7.RULE @@ -1,4 +1,16 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed {{under either}} of these: {{Apache License, Version 2.0}}, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) - {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) + {{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_7.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_7.yml deleted file mode 100644 index b11e813a2b6..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_7.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_8.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_8.RULE index fe551ae1e32..41b216136e8 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_8.RULE @@ -1,6 +1,12 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of both {{Apache License, Version 2.0}} {{MIT License -at your option.}} +at your option.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_8.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_8.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_9.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_9.RULE index c5de402e6d1..92e4af3d871 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_9.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + {{dual-licensed under The MIT License}} [1] and -{{Apache 2.0 License}} [2] +{{Apache 2.0 License}} [2] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_9.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_9.yml deleted file mode 100644 index e626370dff4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_and_generic-cla_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_mit_and_generic-cla_1.RULE index 9a195fe8597..fe3d6b67201 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_and_generic-cla_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mit_and_generic-cla_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: (apache-2.0 OR mit) AND generic-cla +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/apache/ + - https://choosealicense.com/licenses/mit/ +--- + Licensed under either of - {{Apache License, Version 2.0}} (LICENSE.apache or ) @@ -7,4 +16,4 @@ Licensed under either of Any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any -additional terms or conditions. +additional terms or conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mit_and_generic-cla_1.yml b/src/licensedcode/data/rules/apache-2.0_or_mit_and_generic-cla_1.yml deleted file mode 100644 index 0d49832373a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mit_and_generic-cla_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: (apache-2.0 OR mit) AND generic-cla -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/apache/ - - https://choosealicense.com/licenses/mit/ diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_1.RULE index f341144fb60..84bf5f444a8 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: apache-2.0 OR mpl-1.1 +is_license_notice: yes +--- + This source code is dual-licensed under the Apache License, version -2.0, and the Mozilla Public License, version 1.1. +2.0, and the Mozilla Public License, version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_1.yml b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_1.yml deleted file mode 100644 index a443267ac03..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 OR mpl-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_2.RULE index 2ec29b0b868..4f4ea327e52 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR mpl-1.1 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.rabbitmq.com/mpl.html +--- + This source code is dual-licensed under the Apache License, version 2.0, and the Mozilla Public License, version 1.1. @@ -29,4 +38,4 @@ The MPL v1.1: Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations - under the License. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_2.yml b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_2.yml deleted file mode 100644 index a7df2faf91e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR mpl-1.1 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.rabbitmq.com/mpl.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_3.RULE index a02bc9139fa..82ee1557a2a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 OR mpl-1.1 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.rabbitmq.com/mpl.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This source code is dual-licensed under the Apache License, version 2.0, and the Mozilla Public License, version 1.1. @@ -29,4 +38,4 @@ The MPL v1.1: Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations - under the License. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_3.yml b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_3.yml deleted file mode 100644 index 99e97fb8e8e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 OR mpl-1.1 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.rabbitmq.com/mpl.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_4.RULE b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_4.RULE index 19435ef6fed..63818561fbe 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR mpl-1.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.rabbitmq.com/mpl.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This source code is dual-licensed under the Apache License, version 2.0, and the Mozilla Public License, version 1.1. @@ -29,4 +39,4 @@ The MPL v1.1: Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations - under the License. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_4.yml b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_4.yml deleted file mode 100644 index 316c0b7b7a9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR mpl-1.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.rabbitmq.com/mpl.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_5.RULE b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_5.RULE index 05b9ad726a3..1218f79f79b 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR mpl-1.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.rabbitmq.com/mpl.html +--- + This source code is dual-licensed under the Apache License, version 2.0, and the Mozilla Public License, version 1.1. @@ -29,4 +39,4 @@ The MPL v1.1: Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations - under the License. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_5.yml b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_5.yml deleted file mode 100644 index f35a10c2b2e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR mpl-1.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.rabbitmq.com/mpl.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_6.RULE b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_6.RULE index b2d0c966c67..f3e8c4f06c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR mpl-1.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.rabbitmq.com/mpl.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This source code is dual-licensed under the Apache License, version 2.0, and the Mozilla Public License, version 1.1. @@ -29,4 +39,4 @@ The MPL v1.1: Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations - under the License. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_6.yml b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_6.yml deleted file mode 100644 index 316c0b7b7a9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR mpl-1.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.rabbitmq.com/mpl.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_7.RULE b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_7.RULE index 02c06ac4367..87864d41be4 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 OR mpl-1.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.rabbitmq.com/mpl.html +--- + This source code is dual-licensed under the Apache License, version 2.0, and the Mozilla Public License, version 1.1. @@ -29,4 +39,4 @@ The MPL v1.1: Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations - under the License. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_7.yml b/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_7.yml deleted file mode 100644 index f35a10c2b2e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_mpl-1.1_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 OR mpl-1.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.rabbitmq.com/mpl.html diff --git a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_1.RULE index b0fb9f6a085..f0c693f369a 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 OR ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ninject/ninject.web.mvc/raw/master/mvc3/LICENSE.txt +--- + https://github.com/ninject/ninject.web.mvc/raw/master/mvc3/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_1.yml b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_1.yml deleted file mode 100644 index 4309f7c1a2d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ninject/ninject.web.mvc/raw/master/mvc3/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_2.RULE index e8cd8035e85..2feae0885d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 OR ms-pl +is_license_notice: yes +relevance: 100 +--- + Ninject.Web.Mvc is intended to be used in both open-source and commercial environments. To allow its use in as many situations as possible, Ninject is dual-licensed. You may choose to use Ninject.Web.Mvc under either the Apache License, Version 2.0, or the Microsoft Public License (Ms-PL). These licenses are essentially identical, but you are diff --git a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_2.yml b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_2.yml deleted file mode 100644 index 5a36c303d52..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR ms-pl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_3.RULE b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_3.RULE index d725fdc0f9b..43739a5822d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 OR ms-pl +is_license_notice: yes +relevance: 100 +--- + is intended to be used in both open-source and commercial environments. To allow its use in as many situations as possible, is dual-licensed. You may choose to use under either the Apache License, Version 2.0, or the Microsoft Public License (Ms-PL). These licenses are essentially identical, but you are diff --git a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_3.yml b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_3.yml deleted file mode 100644 index 5a36c303d52..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR ms-pl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_and_apache-2.0_and_ms-pl_nuget_url_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_and_apache-2.0_and_ms-pl_nuget_url_1.RULE index bc6fc13dee2..ae6a2e73158 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_and_apache-2.0_and_ms-pl_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_and_apache-2.0_and_ms-pl_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: (apache-2.0 OR ms-pl) AND apache-2.0 AND ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/JZO001/Forge/blob/master/LICENSE +--- + https://github.com/JZO001/Forge/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_and_apache-2.0_and_ms-pl_nuget_url_1.yml b/src/licensedcode/data/rules/apache-2.0_or_ms-pl_and_apache-2.0_and_ms-pl_nuget_url_1.yml deleted file mode 100644 index e8052983721..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_ms-pl_and_apache-2.0_and_ms-pl_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (apache-2.0 OR ms-pl) AND apache-2.0 AND ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/JZO001/Forge/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_1.RULE index ce81ac15b84..d66baff5133 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR other-permissive +is_license_tag: yes +relevance: 100 +--- + License: Apache-2.0 and MD5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_1.yml b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_1.yml deleted file mode 100644 index 4ac8b679476..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR other-permissive -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_2.RULE b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_2.RULE index e76d56fe340..1d19cfbd472 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_2.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR other-permissive +is_license_tag: yes +relevance: 100 +--- + License: Apache-2.0 and Cisco \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_2.yml b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_2.yml deleted file mode 100644 index 4ac8b679476..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR other-permissive -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_or_tsl-2020_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_or_tsl-2020_1.RULE index df38743b857..a8cb63a064d 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_or_tsl-2020_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_or_tsl-2020_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 OR other-permissive OR tsl-2020 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE-APACHE +--- + Source code in this repository is variously licensed under the Apache License Version 2.0, an Apache-compatible license, or the Timescale License. Please see * For a copy of the Apache License Version 2.0, please see LICENSE-APACHE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_or_tsl-2020_1.yml b/src/licensedcode/data/rules/apache-2.0_or_other-permissive_or_tsl-2020_1.yml deleted file mode 100644 index 28dd3a30db7..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_other-permissive_or_tsl-2020_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 OR other-permissive OR tsl-2020 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE-APACHE diff --git a/src/licensedcode/data/rules/apache-2.0_or_wtfpl-2.0_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_wtfpl-2.0_1.RULE index d06955da846..90aaeb5ca06 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_wtfpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_wtfpl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR wtfpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is dual-licensed under Apache 2.0 and WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_wtfpl-2.0_1.yml b/src/licensedcode/data/rules/apache-2.0_or_wtfpl-2.0_1.yml deleted file mode 100644 index b687afa858f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_wtfpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR wtfpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_or_zeusbench_1.RULE b/src/licensedcode/data/rules/apache-2.0_or_zeusbench_1.RULE index 274e16e0fa0..b08fb4f6eb9 100644 --- a/src/licensedcode/data/rules/apache-2.0_or_zeusbench_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_or_zeusbench_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 OR zeusbench +is_license_tag: yes +relevance: 100 +--- + License: Apache-2.0 and Zeus \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_or_zeusbench_1.yml b/src/licensedcode/data/rules/apache-2.0_or_zeusbench_1.yml deleted file mode 100644 index ed81cc8ec55..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_or_zeusbench_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 OR zeusbench -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_osgi.RULE b/src/licensedcode/data/rules/apache-2.0_osgi.RULE index df4995576a3..f80fd733aba 100644 --- a/src/licensedcode/data/rules/apache-2.0_osgi.RULE +++ b/src/licensedcode/data/rules/apache-2.0_osgi.RULE @@ -1 +1,9 @@ -Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + +Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_osgi.yml b/src/licensedcode/data/rules/apache-2.0_osgi.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_osgi.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_product_includes_1.RULE b/src/licensedcode/data/rules/apache-2.0_product_includes_1.RULE index 5ce83339ac5..03d883e0d82 100644 --- a/src/licensedcode/data/rules/apache-2.0_product_includes_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_product_includes_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +ignorable_urls: + - https://www.apache.org/ +--- + This product includes software developed at The Apache Software Foundation (https://www.apache.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_product_includes_1.yml b/src/licensedcode/data/rules/apache-2.0_product_includes_1.yml deleted file mode 100644 index 8ceb6435da9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_product_includes_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 -ignorable_urls: - - https://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_product_includes_2.RULE b/src/licensedcode/data/rules/apache-2.0_product_includes_2.RULE index 1e8e163d5c1..452fa012f29 100644 --- a/src/licensedcode/data/rules/apache-2.0_product_includes_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_product_includes_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://www.apache.org/ +--- + This product includes software developed at The Apache Software Foundation (http://www.apache.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_product_includes_2.yml b/src/licensedcode/data/rules/apache-2.0_product_includes_2.yml deleted file mode 100644 index d53d5981932..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_product_includes_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache-2.0_public.RULE b/src/licensedcode/data/rules/apache-2.0_public.RULE index ad24453a867..d66685f3d1c 100644 --- a/src/licensedcode/data/rules/apache-2.0_public.RULE +++ b/src/licensedcode/data/rules/apache-2.0_public.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache Public License 2.0 (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_public.yml b/src/licensedcode/data/rules/apache-2.0_public.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_public.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_public2.RULE b/src/licensedcode/data/rules/apache-2.0_public2.RULE index 3595d281786..d8722cb0a5d 100644 --- a/src/licensedcode/data/rules/apache-2.0_public2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_public2.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Apache Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_public2.yml b/src/licensedcode/data/rules/apache-2.0_public2.yml deleted file mode 100644 index 6b15a3a68eb..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_public2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_public3.RULE b/src/licensedcode/data/rules/apache-2.0_public3.RULE index 6188ff37b00..3533e4c902f 100644 --- a/src/licensedcode/data/rules/apache-2.0_public3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_public3.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + name: Apache Public License 2.0 url: http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_public3.yml b/src/licensedcode/data/rules/apache-2.0_public3.yml deleted file mode 100644 index 4b8e9b998e1..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_public3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_scancode.RULE b/src/licensedcode/data/rules/apache-2.0_scancode.RULE index 2e5b77040ef..00c8b369a3b 100644 --- a/src/licensedcode/data/rules/apache-2.0_scancode.RULE +++ b/src/licensedcode/data/rules/apache-2.0_scancode.RULE @@ -1,6 +1,14 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + You may not use this software except in compliance with the License. You may obtain a copy of the License at: http://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. +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_scancode.yml b/src/licensedcode/data/rules/apache-2.0_scancode.yml deleted file mode 100644 index 7eab77c819b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_scancode.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_see_1.RULE b/src/licensedcode/data/rules/apache-2.0_see_1.RULE index d091d8c92b0..56e082cce6f 100644 --- a/src/licensedcode/data/rules/apache-2.0_see_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_see_1.RULE @@ -1 +1,8 @@ -Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms. +--- +license_expression: apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + +Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_see_1.yml b/src/licensedcode/data/rules/apache-2.0_see_1.yml deleted file mode 100644 index 389a34b8413..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_see_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_short_mention.RULE b/src/licensedcode/data/rules/apache-2.0_short_mention.RULE index 263999105ce..746cf1f599a 100644 --- a/src/licensedcode/data/rules/apache-2.0_short_mention.RULE +++ b/src/licensedcode/data/rules/apache-2.0_short_mention.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + License: Apache License, Version 2.0 (http://apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_short_mention.yml b/src/licensedcode/data/rules/apache-2.0_short_mention.yml deleted file mode 100644 index e0f4d140b6c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_short_mention.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_1.RULE b/src/licensedcode/data/rules/apache-2.0_url_1.RULE index 51511180fb3..8059cec0973 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_1.yml b/src/licensedcode/data/rules/apache-2.0_url_1.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_10.RULE b/src/licensedcode/data/rules/apache-2.0_url_10.RULE index 3b1d1cf1440..c2ddb4229ce 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_10.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0.txt +--- + http://apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_10.yml b/src/licensedcode/data/rules/apache-2.0_url_10.yml deleted file mode 100644 index a9d76a55841..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_url_11.RULE b/src/licensedcode/data/rules/apache-2.0_url_11.RULE index 78ac659a0da..a316ca3502a 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_11.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://apache.org/licenses/LICENSE-2.0.txt +--- + https://apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_11.yml b/src/licensedcode/data/rules/apache-2.0_url_11.yml deleted file mode 100644 index 03673e1b342..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_url_12.RULE b/src/licensedcode/data/rules/apache-2.0_url_12.RULE index be529762a34..f93d5f983f0 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_12.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + {{Apache License}}, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_12.yml b/src/licensedcode/data/rules/apache-2.0_url_12.yml deleted file mode 100644 index 080f5a1230e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_13.RULE b/src/licensedcode/data/rules/apache-2.0_url_13.RULE index 81b27c9d51c..f6b6e7f465d 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_13.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://apache.org/licenses/LICENSE-2.0 +--- + {{Apache License}}, Version 2.0 https://apache.org/licenses/LICENSE-2.0 repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_13.yml b/src/licensedcode/data/rules/apache-2.0_url_13.yml deleted file mode 100644 index 99bf1df5777..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_14.RULE b/src/licensedcode/data/rules/apache-2.0_url_14.RULE index 39a6bfa866b..0a6b997ea9f 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_14.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_14.yml b/src/licensedcode/data/rules/apache-2.0_url_14.yml deleted file mode 100644 index 4372627d27d..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_15.RULE b/src/licensedcode/data/rules/apache-2.0_url_15.RULE index fb6b60a5b2c..20252826fbd 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_15.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_15.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + {{Apache License}}, Version 2.0 http://apache.org/licenses/LICENSE-2.0 repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_15.yml b/src/licensedcode/data/rules/apache-2.0_url_15.yml deleted file mode 100644 index e0f4d140b6c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_2.RULE b/src/licensedcode/data/rules/apache-2.0_url_2.RULE index feb7b3b1da0..f639c489110 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apache-2.0 +--- + https://spdx.org/licenses/apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_2.yml b/src/licensedcode/data/rules/apache-2.0_url_2.yml deleted file mode 100644 index 0b84d9185b5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_3.RULE b/src/licensedcode/data/rules/apache-2.0_url_3.RULE index f3a6488ebc1..bfaccce897b 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apache-2.0.html +--- + https://spdx.org/licenses/apache-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_3.yml b/src/licensedcode/data/rules/apache-2.0_url_3.yml deleted file mode 100644 index f7a607b9a94..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apache-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_url_4.RULE b/src/licensedcode/data/rules/apache-2.0_url_4.RULE index b3e505d9e94..2268d8a5ee7 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://github.com/json4s/json4s/raw/HEAD/LICENSE +--- + http://github.com/json4s/json4s/raw/HEAD/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_4.yml b/src/licensedcode/data/rules/apache-2.0_url_4.yml deleted file mode 100644 index ded13be8249..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://github.com/json4s/json4s/raw/HEAD/LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_url_5.RULE b/src/licensedcode/data/rules/apache-2.0_url_5.RULE index 20eb9a9cba2..c8b3280d5cb 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_5.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://jpam.sourceforge.net/LICENSE.txt +--- + http://jpam.sourceforge.net/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_5.yml b/src/licensedcode/data/rules/apache-2.0_url_5.yml deleted file mode 100644 index bb3f7185e73..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://jpam.sourceforge.net/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_url_6.RULE b/src/licensedcode/data/rules/apache-2.0_url_6.RULE index 6249afb9c95..677016719c6 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_6.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + http://apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_6.yml b/src/licensedcode/data/rules/apache-2.0_url_6.yml deleted file mode 100644 index e0f4d140b6c..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_7.RULE b/src/licensedcode/data/rules/apache-2.0_url_7.RULE index c81c0ccf8e2..b3048f13c73 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_7.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://apache.org/licenses/LICENSE-2.0 +--- + https://apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_7.yml b/src/licensedcode/data/rules/apache-2.0_url_7.yml deleted file mode 100644 index 99bf1df5777..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_8.RULE b/src/licensedcode/data/rules/apache-2.0_url_8.RULE index 06f1b75cb83..703a1f5e097 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_8.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0.html +--- + http://apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_8.yml b/src/licensedcode/data/rules/apache-2.0_url_8.yml deleted file mode 100644 index 267b3eef1ec..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_url_9.RULE b/src/licensedcode/data/rules/apache-2.0_url_9.RULE index ab366078522..cf55726e843 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_9.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://apache.org/licenses/LICENSE-2.0.html +--- + https://apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_9.yml b/src/licensedcode/data/rules/apache-2.0_url_9.yml deleted file mode 100644 index 01bb1780ce5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_url_badge.RULE b/src/licensedcode/data/rules/apache-2.0_url_badge.RULE index d4656ca89a0..a04911ba998 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_badge.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg + - https://opensource.org/licenses/Apache-2.0 +--- + [![License](https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg)](https://opensource.org/licenses/Apache-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_badge.yml b/src/licensedcode/data/rules/apache-2.0_url_badge.yml deleted file mode 100644 index 281a3bc9d63..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg - - https://opensource.org/licenses/Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_glc_142.RULE b/src/licensedcode/data/rules/apache-2.0_url_glc_142.RULE index 098db06d64b..50802bea880 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_glc_142.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_glc_142.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/apache-2.0 +--- + http://www.opensource.org/licenses/apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_glc_142.yml b/src/licensedcode/data/rules/apache-2.0_url_glc_142.yml deleted file mode 100644 index 0344c3d6ab5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_glc_142.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_url_glc_143.RULE b/src/licensedcode/data/rules/apache-2.0_url_glc_143.RULE index 435c526fd91..f4791b8495b 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_glc_143.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_glc_143.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/apache-2.0 +--- + https://www.opensource.org/licenses/apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_glc_143.yml b/src/licensedcode/data/rules/apache-2.0_url_glc_143.yml deleted file mode 100644 index a6e19dbda08..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_url_glc_143.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_1.RULE b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_1.RULE index d231675f6b7..4a0c17babc3 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_1.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 WITH apple-runtime-library-exception +is_license_notice: yes +relevance: 100 +notes: reported by Dennis Clarck +--- + // Licensed under Apache License v2.0 with Runtime Library Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_1.yml b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_1.yml deleted file mode 100644 index 1cf808091f9..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 WITH apple-runtime-library-exception -is_license_notice: yes -relevance: 100 -notes: reported by Dennis Clarck diff --git a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_2.RULE b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_2.RULE index 02b7f8cc224..7d9f58ffe04 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_2.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 WITH apple-runtime-library-exception +is_license_reference: yes +relevance: 100 +notes: reported by Dennis Clarck +--- + Apache License v2.0 with Runtime Library Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_2.yml b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_2.yml deleted file mode 100644 index e2ba8673ce3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 WITH apple-runtime-library-exception -is_license_reference: yes -relevance: 100 -notes: reported by Dennis Clarck diff --git a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_3.RULE b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_3.RULE index ccfc44599ea..8786e6f1c5a 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 WITH apple-runtime-library-exception +is_license_reference: yes +relevance: 100 +notes: See https://github.com/Minionguyjpro/Swift/blob/bd112ca8e57862776591937bd8160146b71759b2/utils/swift_build_support/swift_build_support/products/swiftformat.py#L66 +ignorable_urls: + - https://swift.org/LICENSE.txt +--- + # See https://swift.org/LICENSE.txt for license information \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_3.yml b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_3.yml deleted file mode 100644 index 7d4f6dbaaaa..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 WITH apple-runtime-library-exception -is_license_reference: yes -relevance: 100 -notes: See https://github.com/Minionguyjpro/Swift/blob/bd112ca8e57862776591937bd8160146b71759b2/utils/swift_build_support/swift_build_support/products/swiftformat.py#L66 -ignorable_urls: - - https://swift.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_4.RULE b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_4.RULE index b3e590d17fb..39568b7bd48 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 WITH apple-runtime-library-exception +is_license_notice: yes +notes: See https://github.com/Minionguyjpro/Swift/blob/bd112ca8e57862776591937bd8160146b71759b2/utils/swift_build_support/swift_build_support/products/swiftformat.py#L66 +ignorable_urls: + - https://swift.org/LICENSE.txt +--- + # Licensed under Apache License v2.0 with Runtime Library Exception # See https://swift.org/LICENSE.txt for license information \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_4.yml b/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_4.yml deleted file mode 100644 index b1a85850303..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_apple-runtime-library-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH apple-runtime-library-exception -is_license_notice: yes -notes: See https://github.com/Minionguyjpro/Swift/blob/bd112ca8e57862776591937bd8160146b71759b2/utils/swift_build_support/swift_build_support/products/swiftformat.py#L66 -ignorable_urls: - - https://swift.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.RULE index 8d163a3fe5a..692d35d47fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.yml deleted file mode 100644 index a2e7d2718dd..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.RULE index fc1cea0c473..708b8feabd5 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +--- + License n8n is fair-code licensed under Apache 2.0 with Commons Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.yml deleted file mode 100644 index 5a3066f7382..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.RULE index b5534b1b760..eb46cfc17d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +--- + License is fair-code licensed under Apache 2.0 with Commons Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.yml deleted file mode 100644 index 5a3066f7382..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.RULE index 637f5320af2..241744eba43 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +--- + fair-code licensed under Apache 2.0 with Commons Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.yml deleted file mode 100644 index 5a3066f7382..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.RULE index 5553542c8ab..ea3e22e1f91 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +--- + licensed under Apache 2.0 with Commons Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.yml deleted file mode 100644 index 5a3066f7382..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.RULE index cbd3caa8092..6cacd8652a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.yml deleted file mode 100644 index 45e4829ebaf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.RULE index 5e60e8a6612..91ac97e1a01 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.yml deleted file mode 100644 index 45e4829ebaf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.RULE index 54c3b9e175c..5d1a6fb87a1 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.yml deleted file mode 100644 index 45e4829ebaf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.RULE index 2d3a92f99bd..d85a68fd95a 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.yml deleted file mode 100644 index 45e4829ebaf..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.RULE index c0a1683cc96..37d64438195 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.yml deleted file mode 100644 index de6247ee913..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.RULE index 349b54fdbef..bd871ac8e46 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.yml deleted file mode 100644 index de6247ee913..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.RULE index 3c3ec549d71..bf195eeed53 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +--- + * This file is available under the Apache License, Version 2.0, * with the Commons Clause restriction. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.yml deleted file mode 100644 index 5a3066f7382..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.RULE index 52196336d62..e5427201bc8 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.yml deleted file mode 100644 index de6247ee913..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.RULE index ec0c9834ff8..cc6ff99d7a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") modified with Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.yml deleted file mode 100644 index d1b41e4f1a4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.RULE index fe1b438a023..5fb8e3f1f62 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.yml deleted file mode 100644 index 4bfe808af48..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.RULE index 22c94dc55c2..6740e5fd60e 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") modified with Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.yml deleted file mode 100644 index d1b41e4f1a4..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.RULE index e04b0fd4c09..f88ae565558 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") and the Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.yml deleted file mode 100644 index de6247ee913..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.RULE index 0fdbdc107aa..a95a5741f9a 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_reference: yes +relevance: 100 +--- + licensed Apache 2.0 modified with Commons Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.yml deleted file mode 100644 index 6ff1ccdd28b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.RULE index d7ce8f0c12c..d7fef1fff26 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_reference: yes +relevance: 100 +--- + Apache 2.0 with Commons Clause - see LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.yml deleted file mode 100644 index 6ff1ccdd28b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.RULE index 68a5429b87a..fcbd5e24702 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.RULE @@ -1 +1,7 @@ -Apache 2.0 with Commons Clause \ No newline at end of file +--- +license_expression: apache-2.0 WITH commons-clause +is_license_reference: yes +relevance: 100 +--- + +Apache 2.0 with Commons Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.yml deleted file mode 100644 index 6ff1ccdd28b..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.RULE index 4739246a800..5d0c2e0ad97 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") modified with Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.yml deleted file mode 100644 index a6357593726..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.RULE index d88abee72ff..1cac41cd47c 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 (the "License") modified with Commons Clause Restriction; you may not use this file except in compliance with the License. You may obtain a diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.yml deleted file mode 100644 index a6357593726..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.RULE index 0b5f78f3b2c..3a487fcc66b 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_tag: yes +relevance: 100 +--- + license: Apache 2.0 with Commons Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.yml deleted file mode 100644 index 40349628d97..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.RULE index 34c0ad2e023..f5164956a25 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 WITH commons-clause +is_license_notice: yes +relevance: 100 +--- + “Commons Clause” License Condition v1.0 The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.yml b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.yml deleted file mode 100644 index 5a3066f7382..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH commons-clause -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_1.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_1.RULE index 86f2322c52a..640db9c6aee 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_1.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_reference: yes +relevance: 100 +notes: Seen in Clamav debian copyright file +--- + Apache-2.0 with GPL exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_1.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_1.yml deleted file mode 100644 index 4f9eaa89735..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_reference: yes -relevance: 100 -notes: Seen in Clamav debian copyright file diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_2.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_2.RULE index 04b6fe97462..2c45c6bef92 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_notice: yes +notes: https://github.com/michaelrsweet/lprint/commit/f2d706673a382eb83a3646b86984437450b39f87#diff-dfb14fbb9e7d095209ec4cfd621069437bf9c442ff9de9d4ce889781bd0fefcf +--- + Exceptions to the Apache 2.0 License: In addition, if you combine or link compiled forms of this Software with diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_2.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_2.yml deleted file mode 100644 index 5c74a83fd5e..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_notice: yes -notes: https://github.com/michaelrsweet/lprint/commit/f2d706673a382eb83a3646b86984437450b39f87#diff-dfb14fbb9e7d095209ec4cfd621069437bf9c442ff9de9d4ce889781bd0fefcf diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_3.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_3.RULE index 5d516a8e83b..65343f0c097 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_3.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_reference: yes +relevance: 100 +notes: https://github.com/michaelrsweet/lprint/blob/6e2eea1b9a40da6176814eb00c9497f1e092b110/CONTRIBUTING.md +--- + (Apache 2.0 with the GPL2 exception). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_3.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_3.yml deleted file mode 100644 index 8bc3afc3c84..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_reference: yes -relevance: 100 -notes: https://github.com/michaelrsweet/lprint/blob/6e2eea1b9a40da6176814eb00c9497f1e092b110/CONTRIBUTING.md diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_4.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_4.RULE index 4dca2e0646e..5642e9b166e 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_notice: yes +referenced_filenames: + - LICENSE + - NOTICE +notes: https://github.com/michaelrsweet/lprint/blob/6e2eea1b9a40da6176814eb00c9497f1e092b110/DOCUMENTATION.md#L7 +--- + licensed under the Apache License Version 2.0 with an (optional) exception to allow linking against GPL2/LGPL2 software (like older versions of CUPS), so it can be used freely in any project you'd like. diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_4.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_4.yml deleted file mode 100644 index 02f5dbcedf3..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_notice: yes -referenced_filenames: - - LICENSE - - NOTICE -notes: https://github.com/michaelrsweet/lprint/blob/6e2eea1b9a40da6176814eb00c9497f1e092b110/DOCUMENTATION.md#L7 diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_5.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_5.RULE index 8dce506301b..638109331b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_notice: yes +--- + In addition, if you combine or link compiled forms of this Software with software that is licensed under the GPLv2 or LGPLv2 (“Combined Software”) and if a court of competent jurisdiction determines that the patent provision (Section diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_5.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_5.yml deleted file mode 100644 index 5569a7a3a09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_6.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_6.RULE index d39c7732068..2b241afeebb 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_6.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_notice: yes +referenced_filenames: + - LICENSE + - NOTICE +--- + licensed under the Apache License Version 2.0 with an exception to allow linking against GPL2/LGPL2 software (like older versions of CUPS). See the files "LICENSE" and "NOTICE" for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_6.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_6.yml deleted file mode 100644 index 516de627b8f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_notice: yes -referenced_filenames: - - LICENSE - - NOTICE diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_7.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_7.RULE index 38bffbe67c4..1df9238c2af 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_7.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_notice: yes +referenced_filenames: + - LICENSE + - NOTICE +--- + Thsi software is licensed under the Apache License Version 2.0 with an exception to allow linking against GPL2/LGPL2 software (like older versions of CUPS). See the files "LICENSE" and "NOTICE" for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_7.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_7.yml deleted file mode 100644 index 516de627b8f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_notice: yes -referenced_filenames: - - LICENSE - - NOTICE diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_8.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_8.RULE index c0698ef3ced..1c6478b7062 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_notice: yes +referenced_filenames: + - LICENSE + - NOTICE +--- + library is licensed under the Apache License Version 2.0 with an *optional* exception to allow linking against GPL2/LGPL2-only software. See the files "LICENSE" and "NOTICE" for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_8.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_8.yml deleted file mode 100644 index 516de627b8f..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_notice: yes -referenced_filenames: - - LICENSE - - NOTICE diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_9.RULE b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_9.RULE index 355457e9713..3eeeba7e0a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apache-2.0 WITH generic-exception +is_license_notice: yes +--- + (Optional) Exceptions to the Apache 2.0 License: ================================================ diff --git a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_9.yml b/src/licensedcode/data/rules/apache-2.0_with_generic-exception_9.yml deleted file mode 100644 index 5569a7a3a09..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_generic-exception_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-2.0 WITH generic-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_1.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_1.RULE index b6b29ce5854..9b5f870ff65 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_notice: yes +relevance: 100 +--- + The LLVM Project is under the Apache License v2.0 with LLVM Exceptions: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_1.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_1.yml deleted file mode 100644 index c463fce5608..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_10.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_10.RULE index 5c2a1c99de6..13017e433d6 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_10.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the {{Apache 2.0}} license with the {{LLVM exception}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_10.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_10.yml deleted file mode 100644 index c463fce5608..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_11.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_11.RULE index 097a0a00bcc..de5fd2e94ba 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_11.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_text: yes +minimum_coverage: 95 +notes: Seen in https://github.com/bytecodealliance/wasi +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/ diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_11.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_11.yml deleted file mode 100644 index ffc65474cad..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_text: yes -minimum_coverage: 95 -notes: Seen in https://github.com/bytecodealliance/wasi -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_2.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_2.RULE index 573a61644e5..e00073d52aa 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_2.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_notice: yes +relevance: 100 +--- + Project is under the Apache License v2.0 with LLVM Exceptions: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_2.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_2.yml deleted file mode 100644 index c463fce5608..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_3.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_3.RULE index 3c5187ee6af..09f9c910da4 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_3.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_notice: yes +relevance: 100 +--- + Apache License v2.0 with LLVM Exceptions: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_3.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_3.yml deleted file mode 100644 index c463fce5608..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_4.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_4.RULE index 58967b5c41c..7eaefaf7ead 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://llvm.org/LICENSE.txt +--- + # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. # See https://llvm.org/LICENSE.txt for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_4.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_4.yml deleted file mode 100644 index 0ba83ef964a..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://llvm.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_5.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_5.RULE index 2dc41649703..b9c45a48a15 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_notice: yes +relevance: 100 +--- + CUPS Exceptions to the Apache 2.0 License As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into an Object form of such source code, you may redistribute such embedded portions in such Object form without complying with the conditions of Sections 4(a), 4(b) and 4(d) of the License. diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_5.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_5.yml deleted file mode 100644 index c463fce5608..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_6.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_6.RULE index b281524eb1b..cf9ce3392fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_6.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_reference: yes +relevance: 100 +--- + CUPS Exceptions to the Apache 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_6.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_6.yml deleted file mode 100644 index f8043ab53ca..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_7.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_7.RULE index 601fd2da69e..ea82645a549 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_7.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_reference: yes +relevance: 80 +--- + CUPS Exceptions \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_7.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_7.yml deleted file mode 100644 index f1e60139f82..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_8.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_8.RULE index 01e897ec25b..a7b1f2197f5 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + License This project is licensed under the {{Apache 2.0}} license with the {{LLVM exception}}. diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_8.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_8.yml deleted file mode 100644 index 96b567260a5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_9.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_9.RULE index 33d92757841..5450f0a22a6 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_9.RULE @@ -1,2 +1,9 @@ +--- +license_expression: apache-2.0 WITH llvm-exception +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This project is licensed under the {{Apache 2.0}} license with the {{LLVM exception}}. See LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_9.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_9.yml deleted file mode 100644 index 96b567260a5..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_and_generic-cla_1.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_and_generic-cla_1.RULE index a0ca2db364d..4b6ae51a857 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_and_generic-cla_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_and_generic-cla_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 WITH llvm-exception AND generic-cla +is_license_notice: yes +referenced_filenames: + - LICENSE +notes: Seen in https://github.com/bytecodealliance/wasi +--- + License This project is licensed under the Apache 2.0 license with the LLVM exception. See LICENSE for more details. diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_and_generic-cla_1.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_and_generic-cla_1.yml deleted file mode 100644 index 7990cdc3444..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_and_generic-cla_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception AND generic-cla -is_license_notice: yes -referenced_filenames: - - LICENSE -notes: Seen in https://github.com/bytecodealliance/wasi diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_or_apache-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_or_apache-2.0_or_mit_1.RULE index 5c22f44b257..d952463ad74 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_or_apache-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_or_apache-2.0_or_mit_1.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 WITH llvm-exception OR apache-2.0 OR mit +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/bytecodealliance/wasi +--- + license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_or_apache-2.0_or_mit_1.yml b/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_or_apache-2.0_or_mit_1.yml deleted file mode 100644 index ca97d07a371..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_llvm-exception_or_apache-2.0_or_mit_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 WITH llvm-exception OR apache-2.0 OR mit -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/bytecodealliance/wasi diff --git a/src/licensedcode/data/rules/apache-2.0_with_notice.RULE b/src/licensedcode/data/rules/apache-2.0_with_notice.RULE index a5f4c8753b8..bd1dcfd5fc1 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_notice.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_notice.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_text: yes +minimum_coverage: 98 +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/ @@ -211,4 +220,4 @@ APPENDIX: How to apply the Apache License to your work 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_with_notice.yml b/src/licensedcode/data/rules/apache-2.0_with_notice.yml deleted file mode 100644 index 663182a0658..00000000000 --- a/src/licensedcode/data/rules/apache-2.0_with_notice.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_text: yes -minimum_coverage: 98 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-exception-llvm.RULE b/src/licensedcode/data/rules/apache-exception-llvm.RULE index c23ab9d7f97..66e617922e0 100644 --- a/src/licensedcode/data/rules/apache-exception-llvm.RULE +++ b/src/licensedcode/data/rules/apache-exception-llvm.RULE @@ -1,3 +1,8 @@ +--- +license_expression: llvm-exception +is_license_text: yes +--- + As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into an Object form of such source code, you may redistribute such embedded portions in such Object form without complying @@ -10,4 +15,4 @@ court of competent jurisdiction determines that the patent provision (Section conflicts with the conditions of the GPLv2, you may retroactively and prospectively choose to deem waived or otherwise exclude such Section(s) of the License, but only in their entirety and only with respect to the Combined -Software. +Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-exception-llvm.yml b/src/licensedcode/data/rules/apache-exception-llvm.yml deleted file mode 100644 index 263e0dfa57a..00000000000 --- a/src/licensedcode/data/rules/apache-exception-llvm.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: llvm-exception -is_license_text: yes diff --git a/src/licensedcode/data/rules/apache_no-version_1.RULE b/src/licensedcode/data/rules/apache_no-version_1.RULE index 50d2e948830..f411205f47f 100644 --- a/src/licensedcode/data/rules/apache_no-version_1.RULE +++ b/src/licensedcode/data/rules/apache_no-version_1.RULE @@ -1 +1,13 @@ -This product includes software developed by the Apache Software Foundation (http://www.apache.org/) +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + +This product includes software developed by the Apache Software Foundation (http://www.apache.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_1.yml b/src/licensedcode/data/rules/apache_no-version_1.yml deleted file mode 100644 index 7ef25949fec..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache_no-version_10.RULE b/src/licensedcode/data/rules/apache_no-version_10.RULE index 1bc3e78145e..d783ac87b8a 100644 --- a/src/licensedcode/data/rules/apache_no-version_10.RULE +++ b/src/licensedcode/data/rules/apache_no-version_10.RULE @@ -1 +1,13 @@ -includes free software developed by the Apache Software Foundation (https://apache.org/) and other organizations +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_authors: + - the Apache Software Foundation (https://apache.org/) +ignorable_urls: + - https://apache.org/ +--- + +includes free software developed by the Apache Software Foundation (https://apache.org/) and other organizations \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_10.yml b/src/licensedcode/data/rules/apache_no-version_10.yml deleted file mode 100644 index 591a6657c33..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_10.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_authors: - - the Apache Software Foundation (https://apache.org/) -ignorable_urls: - - https://apache.org/ diff --git a/src/licensedcode/data/rules/apache_no-version_11.RULE b/src/licensedcode/data/rules/apache_no-version_11.RULE index a40574fd67d..99a0af13a17 100644 --- a/src/licensedcode/data/rules/apache_no-version_11.RULE +++ b/src/licensedcode/data/rules/apache_no-version_11.RULE @@ -1 +1,12 @@ -https://www.apache.org/foundation/license-faq.html +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - https://www.apache.org/foundation/license-faq.html +--- + +https://www.apache.org/foundation/license-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_11.yml b/src/licensedcode/data/rules/apache_no-version_11.yml deleted file mode 100644 index 8334fb3811e..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_11.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - https://www.apache.org/foundation/license-faq.html diff --git a/src/licensedcode/data/rules/apache_no-version_12.RULE b/src/licensedcode/data/rules/apache_no-version_12.RULE index 6b832c44897..24420597af0 100644 --- a/src/licensedcode/data/rules/apache_no-version_12.RULE +++ b/src/licensedcode/data/rules/apache_no-version_12.RULE @@ -1 +1,12 @@ -https://apache.org/foundation/license-faq.html +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - https://apache.org/foundation/license-faq.html +--- + +https://apache.org/foundation/license-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_12.yml b/src/licensedcode/data/rules/apache_no-version_12.yml deleted file mode 100644 index 4593e790ff9..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_12.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - https://apache.org/foundation/license-faq.html diff --git a/src/licensedcode/data/rules/apache_no-version_13.RULE b/src/licensedcode/data/rules/apache_no-version_13.RULE index 7817a1bb6c8..9fe2113950c 100644 --- a/src/licensedcode/data/rules/apache_no-version_13.RULE +++ b/src/licensedcode/data/rules/apache_no-version_13.RULE @@ -1 +1,12 @@ -http://apache.org/foundation/license-faq.html +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - http://apache.org/foundation/license-faq.html +--- + +http://apache.org/foundation/license-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_13.yml b/src/licensedcode/data/rules/apache_no-version_13.yml deleted file mode 100644 index f46658e2bf3..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_13.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - http://apache.org/foundation/license-faq.html diff --git a/src/licensedcode/data/rules/apache_no-version_14.RULE b/src/licensedcode/data/rules/apache_no-version_14.RULE index 65bfe3afda4..5b6106f4298 100644 --- a/src/licensedcode/data/rules/apache_no-version_14.RULE +++ b/src/licensedcode/data/rules/apache_no-version_14.RULE @@ -1 +1,9 @@ -This script falls under the Apache License. +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +--- + +This script falls under the Apache License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_14.yml b/src/licensedcode/data/rules/apache_no-version_14.yml deleted file mode 100644 index d0054932ecc..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 diff --git a/src/licensedcode/data/rules/apache_no-version_15.RULE b/src/licensedcode/data/rules/apache_no-version_15.RULE index b8ab8ae0054..7a265a49f44 100644 --- a/src/licensedcode/data/rules/apache_no-version_15.RULE +++ b/src/licensedcode/data/rules/apache_no-version_15.RULE @@ -1 +1,9 @@ -falls under the Apache License. +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +--- + +falls under the Apache License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_15.yml b/src/licensedcode/data/rules/apache_no-version_15.yml deleted file mode 100644 index d0054932ecc..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 diff --git a/src/licensedcode/data/rules/apache_no-version_16.RULE b/src/licensedcode/data/rules/apache_no-version_16.RULE index 307a3e95663..3556d4e1938 100644 --- a/src/licensedcode/data/rules/apache_no-version_16.RULE +++ b/src/licensedcode/data/rules/apache_no-version_16.RULE @@ -1 +1,12 @@ -https://www.apache.org/licenses/ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + +https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_16.yml b/src/licensedcode/data/rules/apache_no-version_16.yml deleted file mode 100644 index 321a0bbdc48..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_16.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache_no-version_17.RULE b/src/licensedcode/data/rules/apache_no-version_17.RULE index 7f43aec5a6c..96f11bbef9f 100644 --- a/src/licensedcode/data/rules/apache_no-version_17.RULE +++ b/src/licensedcode/data/rules/apache_no-version_17.RULE @@ -1 +1,12 @@ -https://apache.org/licenses/ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - https://apache.org/licenses/ +--- + +https://apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_17.yml b/src/licensedcode/data/rules/apache_no-version_17.yml deleted file mode 100644 index 027604310eb..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_17.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - https://apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache_no-version_18.RULE b/src/licensedcode/data/rules/apache_no-version_18.RULE index 77cb8f3f860..fecc11b0a3a 100644 --- a/src/licensedcode/data/rules/apache_no-version_18.RULE +++ b/src/licensedcode/data/rules/apache_no-version_18.RULE @@ -1 +1,12 @@ -http://apache.org/licenses/ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - http://apache.org/licenses/ +--- + +http://apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_18.yml b/src/licensedcode/data/rules/apache_no-version_18.yml deleted file mode 100644 index 6ea17563d9d..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_18.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - http://apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache_no-version_19.RULE b/src/licensedcode/data/rules/apache_no-version_19.RULE index fab919fbe5c..e13dc33e2c5 100644 --- a/src/licensedcode/data/rules/apache_no-version_19.RULE +++ b/src/licensedcode/data/rules/apache_no-version_19.RULE @@ -1 +1,11 @@ -This product includes software developed by the Apache Software Foundation +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_authors: + - the Apache Software Foundation +--- + +This product includes software developed by the Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_19.yml b/src/licensedcode/data/rules/apache_no-version_19.yml deleted file mode 100644 index 59a71fb03a0..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_authors: - - the Apache Software Foundation diff --git a/src/licensedcode/data/rules/apache_no-version_2.RULE b/src/licensedcode/data/rules/apache_no-version_2.RULE index 92354cc7c3c..eaad780d8f0 100644 --- a/src/licensedcode/data/rules/apache_no-version_2.RULE +++ b/src/licensedcode/data/rules/apache_no-version_2.RULE @@ -1 +1,13 @@ -includes free software developed by the Apache Software Foundation (http://www.apache.org/) and other organizations +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 99 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org/) +ignorable_urls: + - http://www.apache.org/ +--- + +includes free software developed by the Apache Software Foundation (http://www.apache.org/) and other organizations \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_2.yml b/src/licensedcode/data/rules/apache_no-version_2.yml deleted file mode 100644 index 74dd85fdda3..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 99 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org/) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache_no-version_20.RULE b/src/licensedcode/data/rules/apache_no-version_20.RULE index 59bf79e3a41..eca95d58a38 100644 --- a/src/licensedcode/data/rules/apache_no-version_20.RULE +++ b/src/licensedcode/data/rules/apache_no-version_20.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE.txt +notes: No version specified. But v2.0 is the most common one. +--- + falls under the Apache License as laid out in LICENSE.txt in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_20.yml b/src/licensedcode/data/rules/apache_no-version_20.yml deleted file mode 100644 index e7b56162aa1..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE.txt -notes: No version specified. But v2.0 is the most common one. diff --git a/src/licensedcode/data/rules/apache_no-version_3.RULE b/src/licensedcode/data/rules/apache_no-version_3.RULE index 088d78636d2..e0fb4e80e68 100644 --- a/src/licensedcode/data/rules/apache_no-version_3.RULE +++ b/src/licensedcode/data/rules/apache_no-version_3.RULE @@ -1 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - http://www.apache.org/foundation/license-faq.html +--- + http://www.apache.org/foundation/license-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_3.yml b/src/licensedcode/data/rules/apache_no-version_3.yml deleted file mode 100644 index c6e920eb6ed..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - http://www.apache.org/foundation/license-faq.html diff --git a/src/licensedcode/data/rules/apache_no-version_4.RULE b/src/licensedcode/data/rules/apache_no-version_4.RULE index ac69c0fd76b..36451125f8a 100644 --- a/src/licensedcode/data/rules/apache_no-version_4.RULE +++ b/src/licensedcode/data/rules/apache_no-version_4.RULE @@ -1 +1,11 @@ -This script falls under the Apache License. See http://www.apache.org/docs/LICENSE +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - http://www.apache.org/docs/LICENSE +--- + +This script falls under the Apache License. See http://www.apache.org/docs/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_4.yml b/src/licensedcode/data/rules/apache_no-version_4.yml deleted file mode 100644 index 37edd4580a8..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - http://www.apache.org/docs/LICENSE diff --git a/src/licensedcode/data/rules/apache_no-version_5.RULE b/src/licensedcode/data/rules/apache_no-version_5.RULE index d72fa218321..1dbd83609f3 100644 --- a/src/licensedcode/data/rules/apache_no-version_5.RULE +++ b/src/licensedcode/data/rules/apache_no-version_5.RULE @@ -1 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - APACHE.txt +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +--- + are licensed under the terms described in the APACHE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_5.yml b/src/licensedcode/data/rules/apache_no-version_5.yml deleted file mode 100644 index 68763e43016..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - APACHE.txt -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 diff --git a/src/licensedcode/data/rules/apache_no-version_6.RULE b/src/licensedcode/data/rules/apache_no-version_6.RULE index 206500deb2d..00277de6374 100644 --- a/src/licensedcode/data/rules/apache_no-version_6.RULE +++ b/src/licensedcode/data/rules/apache_no-version_6.RULE @@ -1 +1,12 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_6.yml b/src/licensedcode/data/rules/apache_no-version_6.yml deleted file mode 100644 index b8bd0b538eb..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache_no-version_7.RULE b/src/licensedcode/data/rules/apache_no-version_7.RULE index 46221de6138..43fb59c8363 100644 --- a/src/licensedcode/data/rules/apache_no-version_7.RULE +++ b/src/licensedcode/data/rules/apache_no-version_7.RULE @@ -1 +1,13 @@ -This product includes software developed by the Apache Software Foundation (https://www.apache.org/) +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_authors: + - the Apache Software Foundation (https://www.apache.org/) +ignorable_urls: + - https://www.apache.org/ +--- + +This product includes software developed by the Apache Software Foundation (https://www.apache.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_7.yml b/src/licensedcode/data/rules/apache_no-version_7.yml deleted file mode 100644 index 9fb26b3b3e1..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_7.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_authors: - - the Apache Software Foundation (https://www.apache.org/) -ignorable_urls: - - https://www.apache.org/ diff --git a/src/licensedcode/data/rules/apache_no-version_8.RULE b/src/licensedcode/data/rules/apache_no-version_8.RULE index 7a6696b4c7c..1678d6a0b48 100644 --- a/src/licensedcode/data/rules/apache_no-version_8.RULE +++ b/src/licensedcode/data/rules/apache_no-version_8.RULE @@ -1 +1,13 @@ -This product includes software developed by the Apache Software Foundation (https://apache.org/) +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_authors: + - the Apache Software Foundation (https://apache.org/) +ignorable_urls: + - https://apache.org/ +--- + +This product includes software developed by the Apache Software Foundation (https://apache.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_8.yml b/src/licensedcode/data/rules/apache_no-version_8.yml deleted file mode 100644 index afc5ee9c504..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_8.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_authors: - - the Apache Software Foundation (https://apache.org/) -ignorable_urls: - - https://apache.org/ diff --git a/src/licensedcode/data/rules/apache_no-version_9.RULE b/src/licensedcode/data/rules/apache_no-version_9.RULE index 3f5f757c176..2a31af76c3b 100644 --- a/src/licensedcode/data/rules/apache_no-version_9.RULE +++ b/src/licensedcode/data/rules/apache_no-version_9.RULE @@ -1 +1,13 @@ -This product includes software developed by the Apache Software Foundation (http://apache.org/) +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +ignorable_authors: + - the Apache Software Foundation (http://apache.org/) +ignorable_urls: + - http://apache.org/ +--- + +This product includes software developed by the Apache Software Foundation (http://apache.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_9.yml b/src/licensedcode/data/rules/apache_no-version_9.yml deleted file mode 100644 index e785eedd56e..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_9.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 -ignorable_authors: - - the Apache Software Foundation (http://apache.org/) -ignorable_urls: - - http://apache.org/ diff --git a/src/licensedcode/data/rules/apache_no-version_and_ijg_and_proprietary.RULE b/src/licensedcode/data/rules/apache_no-version_and_ijg_and_proprietary.RULE index 24c6e105c6b..18ee063c5ac 100644 --- a/src/licensedcode/data/rules/apache_no-version_and_ijg_and_proprietary.RULE +++ b/src/licensedcode/data/rules/apache_no-version_and_ijg_and_proprietary.RULE @@ -1,3 +1,21 @@ +--- +license_expression: apache-2.0 AND proprietary-license AND ijg +is_license_reference: yes +minimum_coverage: 90 +notes: found in SUN/Oracle JREs. The actual version of the license is not provided but the most + common one is the Apache 2.0 +ignorable_copyrights: + - Copyright property of CompuServe Incorporated + - Portions Copyright Eastman Kodak Company 1992 +ignorable_holders: + - CompuServe Incorporated + - Eastman Kodak Company +ignorable_authors: + - the Apache Software Foundation (http://www.apache.org) +ignorable_urls: + - http://www.apache.org/ +--- + Third-party software, including font technology, is copyrighted and licensed from Sun suppliers. Portions Copyright Eastman Kodak Company 1992. This product includes code licensed from RSA Data @@ -5,4 +23,4 @@ Security. This product includes software developed by the Apache Software Foundation (http://www.apache.org). Portions licensed from Taligent, Inc. This software is based in part on the work of the Independent JPEG Group. The Graphics Interchange Format is the -Copyright property of CompuServe Incorporated. \ No newline at end of file +Copyright property of CompuServe Incorporated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_and_ijg_and_proprietary.yml b/src/licensedcode/data/rules/apache_no-version_and_ijg_and_proprietary.yml deleted file mode 100644 index 43afb866560..00000000000 --- a/src/licensedcode/data/rules/apache_no-version_and_ijg_and_proprietary.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: apache-2.0 AND proprietary-license AND ijg -is_license_reference: yes -minimum_coverage: 90 -notes: found in SUN/Oracle JREs. The actual version of the license is not provided but the most - common one is the Apache 2.0 -ignorable_copyrights: - - Copyright property of CompuServe Incorporated - - Portions Copyright Eastman Kodak Company 1992 -ignorable_holders: - - CompuServe Incorporated - - Eastman Kodak Company -ignorable_authors: - - the Apache Software Foundation (http://www.apache.org) -ignorable_urls: - - http://www.apache.org/ diff --git a/src/licensedcode/data/rules/apafml_1.RULE b/src/licensedcode/data/rules/apafml_1.RULE index 445c9cac541..2081afe16b6 100644 --- a/src/licensedcode/data/rules/apafml_1.RULE +++ b/src/licensedcode/data/rules/apafml_1.RULE @@ -1 +1,10 @@ +--- +license_expression: apafml +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Adobe Postscript AFM License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_1.yml b/src/licensedcode/data/rules/apafml_1.yml deleted file mode 100644 index 07818dd1003..00000000000 --- a/src/licensedcode/data/rules/apafml_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apafml -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apafml_10.RULE b/src/licensedcode/data/rules/apafml_10.RULE index 6a019835651..06a2f7664e4 100644 --- a/src/licensedcode/data/rules/apafml_10.RULE +++ b/src/licensedcode/data/rules/apafml_10.RULE @@ -1 +1,9 @@ +--- +license_expression: apafml +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APAFML +--- + {{APAFML}} https://spdx.org/licenses/APAFML \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_10.yml b/src/licensedcode/data/rules/apafml_10.yml deleted file mode 100644 index 13d9c596fb4..00000000000 --- a/src/licensedcode/data/rules/apafml_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apafml -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APAFML diff --git a/src/licensedcode/data/rules/apafml_11.RULE b/src/licensedcode/data/rules/apafml_11.RULE index 9e607cef587..42bc8efc5e1 100644 --- a/src/licensedcode/data/rules/apafml_11.RULE +++ b/src/licensedcode/data/rules/apafml_11.RULE @@ -1 +1,9 @@ +--- +license_expression: apafml +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APAFML +--- + LICENSE {{APAFML}} https://spdx.org/licenses/APAFML \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_11.yml b/src/licensedcode/data/rules/apafml_11.yml deleted file mode 100644 index 13d9c596fb4..00000000000 --- a/src/licensedcode/data/rules/apafml_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apafml -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APAFML diff --git a/src/licensedcode/data/rules/apafml_2.RULE b/src/licensedcode/data/rules/apafml_2.RULE index cfd1981b5c8..ad9a69977ea 100644 --- a/src/licensedcode/data/rules/apafml_2.RULE +++ b/src/licensedcode/data/rules/apafml_2.RULE @@ -1 +1,10 @@ +--- +license_expression: apafml +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Adobe Postscript AFM License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_2.yml b/src/licensedcode/data/rules/apafml_2.yml deleted file mode 100644 index 07818dd1003..00000000000 --- a/src/licensedcode/data/rules/apafml_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apafml -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apafml_3.RULE b/src/licensedcode/data/rules/apafml_3.RULE index 27c66d0f938..c72e83f57ff 100644 --- a/src/licensedcode/data/rules/apafml_3.RULE +++ b/src/licensedcode/data/rules/apafml_3.RULE @@ -1 +1,10 @@ +--- +license_expression: apafml +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + APAFML Adobe Postscript AFM License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_3.yml b/src/licensedcode/data/rules/apafml_3.yml deleted file mode 100644 index 07818dd1003..00000000000 --- a/src/licensedcode/data/rules/apafml_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apafml -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apafml_4.RULE b/src/licensedcode/data/rules/apafml_4.RULE index d0f183e7a7c..a4b81d5a7f5 100644 --- a/src/licensedcode/data/rules/apafml_4.RULE +++ b/src/licensedcode/data/rules/apafml_4.RULE @@ -1 +1,10 @@ +--- +license_expression: apafml +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Adobe Postscript AFM License APAFML \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_4.yml b/src/licensedcode/data/rules/apafml_4.yml deleted file mode 100644 index 07818dd1003..00000000000 --- a/src/licensedcode/data/rules/apafml_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apafml -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apafml_5.RULE b/src/licensedcode/data/rules/apafml_5.RULE index db5f456db1b..a63b16789e5 100644 --- a/src/licensedcode/data/rules/apafml_5.RULE +++ b/src/licensedcode/data/rules/apafml_5.RULE @@ -1 +1,10 @@ +--- +license_expression: apafml +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: APAFML \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_5.yml b/src/licensedcode/data/rules/apafml_5.yml deleted file mode 100644 index f7d2ff3c5fd..00000000000 --- a/src/licensedcode/data/rules/apafml_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apafml -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apafml_6.RULE b/src/licensedcode/data/rules/apafml_6.RULE index e4656e1a8a1..c0b427f95dd 100644 --- a/src/licensedcode/data/rules/apafml_6.RULE +++ b/src/licensedcode/data/rules/apafml_6.RULE @@ -1 +1,10 @@ +--- +license_expression: apafml +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Adobe Postscript AFM License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_6.yml b/src/licensedcode/data/rules/apafml_6.yml deleted file mode 100644 index f7d2ff3c5fd..00000000000 --- a/src/licensedcode/data/rules/apafml_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apafml -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apafml_7.RULE b/src/licensedcode/data/rules/apafml_7.RULE index a6ecc0b3321..be8bb774a94 100644 --- a/src/licensedcode/data/rules/apafml_7.RULE +++ b/src/licensedcode/data/rules/apafml_7.RULE @@ -1 +1,10 @@ +--- +license_expression: apafml +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: APAFML \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_7.yml b/src/licensedcode/data/rules/apafml_7.yml deleted file mode 100644 index f7d2ff3c5fd..00000000000 --- a/src/licensedcode/data/rules/apafml_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apafml -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apafml_8.RULE b/src/licensedcode/data/rules/apafml_8.RULE index aa0fb57eb04..924b9bd0b5a 100644 --- a/src/licensedcode/data/rules/apafml_8.RULE +++ b/src/licensedcode/data/rules/apafml_8.RULE @@ -1 +1,9 @@ +--- +license_expression: apafml +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/APAFML +--- + https://licenses.nuget.org/APAFML \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_8.yml b/src/licensedcode/data/rules/apafml_8.yml deleted file mode 100644 index db30bab3571..00000000000 --- a/src/licensedcode/data/rules/apafml_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apafml -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/APAFML diff --git a/src/licensedcode/data/rules/apafml_9.RULE b/src/licensedcode/data/rules/apafml_9.RULE index 306f8533d4a..45d79cc9b65 100644 --- a/src/licensedcode/data/rules/apafml_9.RULE +++ b/src/licensedcode/data/rules/apafml_9.RULE @@ -1 +1,7 @@ +--- +license_expression: apafml +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/APAFML \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_9.yml b/src/licensedcode/data/rules/apafml_9.yml deleted file mode 100644 index 8d400376110..00000000000 --- a/src/licensedcode/data/rules/apafml_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apafml -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apafml_url_1.RULE b/src/licensedcode/data/rules/apafml_url_1.RULE index fa0f4770ae2..6ea15b6885b 100644 --- a/src/licensedcode/data/rules/apafml_url_1.RULE +++ b/src/licensedcode/data/rules/apafml_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apafml +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apafml +--- + https://spdx.org/licenses/apafml \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_url_1.yml b/src/licensedcode/data/rules/apafml_url_1.yml deleted file mode 100644 index d8c710651b3..00000000000 --- a/src/licensedcode/data/rules/apafml_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apafml -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apafml diff --git a/src/licensedcode/data/rules/apafml_url_2.RULE b/src/licensedcode/data/rules/apafml_url_2.RULE index 673a5a00319..713b2e76438 100644 --- a/src/licensedcode/data/rules/apafml_url_2.RULE +++ b/src/licensedcode/data/rules/apafml_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apafml +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apafml.html +--- + https://spdx.org/licenses/apafml.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apafml_url_2.yml b/src/licensedcode/data/rules/apafml_url_2.yml deleted file mode 100644 index af83d9dab3e..00000000000 --- a/src/licensedcode/data/rules/apafml_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apafml -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apafml.html diff --git a/src/licensedcode/data/rules/app-s2p_1.RULE b/src/licensedcode/data/rules/app-s2p_1.RULE index 77c7a2e76b6..889ede76c55 100644 --- a/src/licensedcode/data/rules/app-s2p_1.RULE +++ b/src/licensedcode/data/rules/app-s2p_1.RULE @@ -1 +1,9 @@ +--- +license_expression: app-s2p +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/App-s2p +--- + https://licenses.nuget.org/App-s2p \ No newline at end of file diff --git a/src/licensedcode/data/rules/app-s2p_1.yml b/src/licensedcode/data/rules/app-s2p_1.yml deleted file mode 100644 index 646f52a3815..00000000000 --- a/src/licensedcode/data/rules/app-s2p_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: app-s2p -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/App-s2p diff --git a/src/licensedcode/data/rules/app-s2p_2.RULE b/src/licensedcode/data/rules/app-s2p_2.RULE index 573e20deef9..a07cb5b1de1 100644 --- a/src/licensedcode/data/rules/app-s2p_2.RULE +++ b/src/licensedcode/data/rules/app-s2p_2.RULE @@ -1 +1,7 @@ +--- +license_expression: app-s2p +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/App-s2p \ No newline at end of file diff --git a/src/licensedcode/data/rules/app-s2p_2.yml b/src/licensedcode/data/rules/app-s2p_2.yml deleted file mode 100644 index fea15f7e990..00000000000 --- a/src/licensedcode/data/rules/app-s2p_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: app-s2p -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/app-s2p_3.RULE b/src/licensedcode/data/rules/app-s2p_3.RULE index df50d08c924..15cb0db751f 100644 --- a/src/licensedcode/data/rules/app-s2p_3.RULE +++ b/src/licensedcode/data/rules/app-s2p_3.RULE @@ -1 +1,9 @@ +--- +license_expression: app-s2p +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/App-s2p +--- + LICENSE {{App-s2p}} https://spdx.org/licenses/App-s2p \ No newline at end of file diff --git a/src/licensedcode/data/rules/app-s2p_3.yml b/src/licensedcode/data/rules/app-s2p_3.yml deleted file mode 100644 index fbe034c9fbe..00000000000 --- a/src/licensedcode/data/rules/app-s2p_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: app-s2p -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/App-s2p diff --git a/src/licensedcode/data/rules/app-s2p_4.RULE b/src/licensedcode/data/rules/app-s2p_4.RULE index b7cbaec90dd..f371e4e2681 100644 --- a/src/licensedcode/data/rules/app-s2p_4.RULE +++ b/src/licensedcode/data/rules/app-s2p_4.RULE @@ -1 +1,9 @@ +--- +license_expression: app-s2p +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/App-s2p +--- + {{App-s2p}} https://spdx.org/licenses/App-s2p \ No newline at end of file diff --git a/src/licensedcode/data/rules/app-s2p_4.yml b/src/licensedcode/data/rules/app-s2p_4.yml deleted file mode 100644 index fbe034c9fbe..00000000000 --- a/src/licensedcode/data/rules/app-s2p_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: app-s2p -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/App-s2p diff --git a/src/licensedcode/data/rules/apple-attribution-1997_1.RULE b/src/licensedcode/data/rules/apple-attribution-1997_1.RULE index 1fb6bbd0c22..1a130a236e8 100644 --- a/src/licensedcode/data/rules/apple-attribution-1997_1.RULE +++ b/src/licensedcode/data/rules/apple-attribution-1997_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: apple-attribution-1997 +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and @@ -12,4 +17,4 @@ IN NO EVENT SHALL BE LIABLE FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION -WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-attribution-1997_1.yml b/src/licensedcode/data/rules/apple-attribution-1997_1.yml deleted file mode 100644 index 4c6e757079f..00000000000 --- a/src/licensedcode/data/rules/apple-attribution-1997_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apple-attribution-1997 -is_license_text: yes diff --git a/src/licensedcode/data/rules/apple-attribution.RULE b/src/licensedcode/data/rules/apple-attribution.RULE index cb965c14eaf..0735ae1370e 100644 --- a/src/licensedcode/data/rules/apple-attribution.RULE +++ b/src/licensedcode/data/rules/apple-attribution.RULE @@ -1,3 +1,12 @@ +--- +license_expression: apple-attribution +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1988-1991 Apple Computer, Inc. +ignorable_holders: + - Apple Computer, Inc. +--- + * Copyright (C) 1988-1991 Apple Computer, Inc. * All Rights Reserved. * diff --git a/src/licensedcode/data/rules/apple-attribution.yml b/src/licensedcode/data/rules/apple-attribution.yml deleted file mode 100644 index 429b35199fa..00000000000 --- a/src/licensedcode/data/rules/apple-attribution.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apple-attribution -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1988-1991 Apple Computer, Inc. -ignorable_holders: - - Apple Computer, Inc. diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_1.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_1.RULE index df07df1d493..a068cbc1790 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_1.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Swift Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_1.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_1.yml deleted file mode 100644 index c5daaaa6da3..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_2.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_2.RULE index 2595ae5344c..4e19df9e0ff 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_2.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Swift Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_2.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_2.yml deleted file mode 100644 index c5daaaa6da3..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_3.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_3.RULE index 7dec30be003..3be5a5abd48 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_3.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Swift-exception Swift Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_3.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_3.yml deleted file mode 100644 index c5daaaa6da3..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_4.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_4.RULE index 271ac9c673b..255935b2612 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_4.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: apple-runtime-library-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Swift-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_4.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_4.yml deleted file mode 100644 index 2953fe177b6..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_5.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_5.RULE index 8ef4ae570a8..0e1dd1e6bf0 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_5.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: apple-runtime-library-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Swift-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_5.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_5.yml deleted file mode 100644 index 2953fe177b6..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_6.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_6.RULE index f389cd0eb1d..64776094187 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_6.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_6.RULE @@ -1 +1,9 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Swift-exception +--- + https://licenses.nuget.org/Swift-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_6.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_6.yml deleted file mode 100644 index 9f03ec54cf5..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Swift-exception diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_7.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_7.RULE index 9b6c2666f11..590f3a8732a 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_7.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_7.RULE @@ -1 +1,7 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Swift-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_7.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_7.yml deleted file mode 100644 index d75b1aded34..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_8.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_8.RULE index 2a4386f6053..961ec7a20ad 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_8.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Swift-exception +--- + {{Swift-exception}} https://spdx.org/licenses/Swift-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_8.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_8.yml deleted file mode 100644 index eead5b5b166..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Swift-exception diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_9.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_9.RULE index 3dca34a1d18..6b974b878a7 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_9.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_9.RULE @@ -1 +1,9 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Swift-exception +--- + LICENSE {{Swift-exception}} https://spdx.org/licenses/Swift-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_9.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_9.yml deleted file mode 100644 index eead5b5b166..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Swift-exception diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_url_1.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_url_1.RULE index ad5558d1a54..1f9dac098b8 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_url_1.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/swift-exception +--- + https://spdx.org/licenses/swift-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_url_1.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_url_1.yml deleted file mode 100644 index 6f96e9437f7..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/swift-exception diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_url_2.RULE b/src/licensedcode/data/rules/apple-runtime-library-exception_url_2.RULE index 1facc97d3e1..5304d37d863 100644 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_url_2.RULE +++ b/src/licensedcode/data/rules/apple-runtime-library-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apple-runtime-library-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/swift-exception.html +--- + https://spdx.org/licenses/swift-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apple-runtime-library-exception_url_2.yml b/src/licensedcode/data/rules/apple-runtime-library-exception_url_2.yml deleted file mode 100644 index 93fd978e330..00000000000 --- a/src/licensedcode/data/rules/apple-runtime-library-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apple-runtime-library-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/swift-exception.html diff --git a/src/licensedcode/data/rules/apsl-1.0.RULE b/src/licensedcode/data/rules/apsl-1.0.RULE index 692f15fd7c3..1c12d77eab3 100644 --- a/src/licensedcode/data/rules/apsl-1.0.RULE +++ b/src/licensedcode/data/rules/apsl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE +--- + http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0.yml b/src/licensedcode/data/rules/apsl-1.0.yml deleted file mode 100644 index fbad05ae600..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/source/architecture/architecture-229/APPLE_LICENSE diff --git a/src/licensedcode/data/rules/apsl-1.0_1.RULE b/src/licensedcode/data/rules/apsl-1.0_1.RULE index 3c59206424a..34f60068c34 100644 --- a/src/licensedcode/data/rules/apsl-1.0_1.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0 +--- + https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_1.yml b/src/licensedcode/data/rules/apsl-1.0_1.yml deleted file mode 100644 index 49391613a74..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0 diff --git a/src/licensedcode/data/rules/apsl-1.0_10.RULE b/src/licensedcode/data/rules/apsl-1.0_10.RULE index 410532ef628..e4afb223342 100644 --- a/src/licensedcode/data/rules/apsl-1.0_10.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: APSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_10.yml b/src/licensedcode/data/rules/apsl-1.0_10.yml deleted file mode 100644 index 611cdb52d38..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.0_11.RULE b/src/licensedcode/data/rules/apsl-1.0_11.RULE index a6252a41f07..f85ea115114 100644 --- a/src/licensedcode/data/rules/apsl-1.0_11.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 95 +--- + wikipedia.org/wiki/Apple_Public_Source_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_11.yml b/src/licensedcode/data/rules/apsl-1.0_11.yml deleted file mode 100644 index 200719fc58d..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/apsl-1.0_12.RULE b/src/licensedcode/data/rules/apsl-1.0_12.RULE index aa8f505fb03..f5be00b2837 100644 --- a/src/licensedcode/data/rules/apsl-1.0_12.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/APSL-1.0 +--- + https://licenses.nuget.org/APSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_12.yml b/src/licensedcode/data/rules/apsl-1.0_12.yml deleted file mode 100644 index 5d453740496..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/APSL-1.0 diff --git a/src/licensedcode/data/rules/apsl-1.0_13.RULE b/src/licensedcode/data/rules/apsl-1.0_13.RULE index fd5cce68f04..e73cf26b0e5 100644 --- a/src/licensedcode/data/rules/apsl-1.0_13.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/APSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_13.yml b/src/licensedcode/data/rules/apsl-1.0_13.yml deleted file mode 100644 index bc4cbca7855..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.0_14.RULE b/src/licensedcode/data/rules/apsl-1.0_14.RULE index cb895f0cd74..88ed391bc31 100644 --- a/src/licensedcode/data/rules/apsl-1.0_14.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APSL-1.0 +--- + {{APSL-1.0}} https://spdx.org/licenses/APSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_14.yml b/src/licensedcode/data/rules/apsl-1.0_14.yml deleted file mode 100644 index b6319220e40..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APSL-1.0 diff --git a/src/licensedcode/data/rules/apsl-1.0_15.RULE b/src/licensedcode/data/rules/apsl-1.0_15.RULE index c67809a0ab8..9d78b9bf38a 100644 --- a/src/licensedcode/data/rules/apsl-1.0_15.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APSL-1.0 +--- + LICENSE {{APSL-1.0}} https://spdx.org/licenses/APSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_15.yml b/src/licensedcode/data/rules/apsl-1.0_15.yml deleted file mode 100644 index b6319220e40..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APSL-1.0 diff --git a/src/licensedcode/data/rules/apsl-1.0_2.RULE b/src/licensedcode/data/rules/apsl-1.0_2.RULE index e3ea565262e..77850a4280b 100644 --- a/src/licensedcode/data/rules/apsl-1.0_2.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apsl-1.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.apple.com/publicsource +--- + This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Apple Public @@ -12,4 +20,4 @@ EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and limitations -under the License. +under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_2.yml b/src/licensedcode/data/rules/apsl-1.0_2.yml deleted file mode 100644 index 2bdbe109444..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.apple.com/publicsource diff --git a/src/licensedcode/data/rules/apsl-1.0_3.RULE b/src/licensedcode/data/rules/apsl-1.0_3.RULE index 6cd1f15d2eb..ccef343f85c 100644 --- a/src/licensedcode/data/rules/apsl-1.0_3.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 100 +--- + Apple Public Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_3.yml b/src/licensedcode/data/rules/apsl-1.0_3.yml deleted file mode 100644 index bc4cbca7855..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.0_4.RULE b/src/licensedcode/data/rules/apsl-1.0_4.RULE index 736b77f07df..07f1c8de507 100644 --- a/src/licensedcode/data/rules/apsl-1.0_4.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_4.RULE @@ -1 +1,6 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +--- + APSL-1.0 Apple Public Source License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_4.yml b/src/licensedcode/data/rules/apsl-1.0_4.yml deleted file mode 100644 index edf1ef6e3e2..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/apsl-1.0_5.RULE b/src/licensedcode/data/rules/apsl-1.0_5.RULE index d0d9590f3dd..46cc136e120 100644 --- a/src/licensedcode/data/rules/apsl-1.0_5.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_5.RULE @@ -1 +1,6 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +--- + Apple Public Source License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_5.yml b/src/licensedcode/data/rules/apsl-1.0_5.yml deleted file mode 100644 index edf1ef6e3e2..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/apsl-1.0_6.RULE b/src/licensedcode/data/rules/apsl-1.0_6.RULE index 516d27cc629..6c57ba105d3 100644 --- a/src/licensedcode/data/rules/apsl-1.0_6.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Apple Public Source License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_6.yml b/src/licensedcode/data/rules/apsl-1.0_6.yml deleted file mode 100644 index 6a74b56a649..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.0_7.RULE b/src/licensedcode/data/rules/apsl-1.0_7.RULE index d3dfba81ad2..36a293b6bb7 100644 --- a/src/licensedcode/data/rules/apsl-1.0_7.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apple Public Source License 1.0 APSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_7.yml b/src/licensedcode/data/rules/apsl-1.0_7.yml deleted file mode 100644 index 6a74b56a649..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.0_8.RULE b/src/licensedcode/data/rules/apsl-1.0_8.RULE index 7f79c04e880..fe998ebdc85 100644 --- a/src/licensedcode/data/rules/apsl-1.0_8.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: APSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_8.yml b/src/licensedcode/data/rules/apsl-1.0_8.yml deleted file mode 100644 index 611cdb52d38..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.0_9.RULE b/src/licensedcode/data/rules/apsl-1.0_9.RULE index 988e457819e..1ec29c13fa8 100644 --- a/src/licensedcode/data/rules/apsl-1.0_9.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Apple Public Source License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_9.yml b/src/licensedcode/data/rules/apsl-1.0_9.yml deleted file mode 100644 index 611cdb52d38..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.0_url_1.RULE b/src/licensedcode/data/rules/apsl-1.0_url_1.RULE index b7b0ea1fb7e..d5a860388da 100644 --- a/src/licensedcode/data/rules/apsl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apsl-1.0 +--- + https://spdx.org/licenses/apsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_url_1.yml b/src/licensedcode/data/rules/apsl-1.0_url_1.yml deleted file mode 100644 index 398b17933a4..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apsl-1.0 diff --git a/src/licensedcode/data/rules/apsl-1.0_url_2.RULE b/src/licensedcode/data/rules/apsl-1.0_url_2.RULE index 2bba51b7836..ef5c8be3274 100644 --- a/src/licensedcode/data/rules/apsl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/apsl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apsl-1.0.html +--- + https://spdx.org/licenses/apsl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.0_url_2.yml b/src/licensedcode/data/rules/apsl-1.0_url_2.yml deleted file mode 100644 index ddf410e28cd..00000000000 --- a/src/licensedcode/data/rules/apsl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apsl-1.0.html diff --git a/src/licensedcode/data/rules/apsl-1.1.RULE b/src/licensedcode/data/rules/apsl-1.1.RULE index f23ebe84ff1..1b3e8a8d80e 100644 --- a/src/licensedcode/data/rules/apsl-1.1.RULE +++ b/src/licensedcode/data/rules/apsl-1.1.RULE @@ -1 +1,9 @@ -https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1 +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1 +--- + +https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1.yml b/src/licensedcode/data/rules/apsl-1.1.yml deleted file mode 100644 index df156db9bac..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.1 diff --git a/src/licensedcode/data/rules/apsl-1.1_1.RULE b/src/licensedcode/data/rules/apsl-1.1_1.RULE index 7a74da0a2e1..b1039e6b1df 100644 --- a/src/licensedcode/data/rules/apsl-1.1_1.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_1.RULE @@ -1 +1,6 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +--- + APSL-1.1 Apple Public Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_1.yml b/src/licensedcode/data/rules/apsl-1.1_1.yml deleted file mode 100644 index de7d4de68b3..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/apsl-1.1_10.RULE b/src/licensedcode/data/rules/apsl-1.1_10.RULE index f705a407953..ce502a62265 100644 --- a/src/licensedcode/data/rules/apsl-1.1_10.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: APSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_10.yml b/src/licensedcode/data/rules/apsl-1.1_10.yml deleted file mode 100644 index 6f18897a5dd..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.1_11.RULE b/src/licensedcode/data/rules/apsl-1.1_11.RULE index 12269683c01..a05803ee580 100644 --- a/src/licensedcode/data/rules/apsl-1.1_11.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Apple Public Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_11.yml b/src/licensedcode/data/rules/apsl-1.1_11.yml deleted file mode 100644 index 6f18897a5dd..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.1_12.RULE b/src/licensedcode/data/rules/apsl-1.1_12.RULE index a5e29db6f38..49ed9bb592d 100644 --- a/src/licensedcode/data/rules/apsl-1.1_12.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: APSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_12.yml b/src/licensedcode/data/rules/apsl-1.1_12.yml deleted file mode 100644 index 6f18897a5dd..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.1_13.RULE b/src/licensedcode/data/rules/apsl-1.1_13.RULE index 598b7f0d781..c4e17184b1c 100644 --- a/src/licensedcode/data/rules/apsl-1.1_13.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/APSL-1.1 +--- + https://licenses.nuget.org/APSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_13.yml b/src/licensedcode/data/rules/apsl-1.1_13.yml deleted file mode 100644 index ba3e07c1cbf..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/APSL-1.1 diff --git a/src/licensedcode/data/rules/apsl-1.1_14.RULE b/src/licensedcode/data/rules/apsl-1.1_14.RULE index c1cdce7aed7..f7636ab85f1 100644 --- a/src/licensedcode/data/rules/apsl-1.1_14.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_14.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/APSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_14.yml b/src/licensedcode/data/rules/apsl-1.1_14.yml deleted file mode 100644 index 07c3e7c853a..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.1_15.RULE b/src/licensedcode/data/rules/apsl-1.1_15.RULE index cb82dd98624..f3ee4911666 100644 --- a/src/licensedcode/data/rules/apsl-1.1_15.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APSL-1.1 +--- + LICENSE {{APSL-1.1}} https://spdx.org/licenses/APSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_15.yml b/src/licensedcode/data/rules/apsl-1.1_15.yml deleted file mode 100644 index 81d331be320..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APSL-1.1 diff --git a/src/licensedcode/data/rules/apsl-1.1_16.RULE b/src/licensedcode/data/rules/apsl-1.1_16.RULE index 9d694119010..d40af425011 100644 --- a/src/licensedcode/data/rules/apsl-1.1_16.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_16.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APSL-1.1 +--- + {{APSL-1.1}} https://spdx.org/licenses/APSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_16.yml b/src/licensedcode/data/rules/apsl-1.1_16.yml deleted file mode 100644 index 81d331be320..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APSL-1.1 diff --git a/src/licensedcode/data/rules/apsl-1.1_2.RULE b/src/licensedcode/data/rules/apsl-1.1_2.RULE index 273679ea657..4aff1ddbffc 100644 --- a/src/licensedcode/data/rules/apsl-1.1_2.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apsl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.apple.com/publicsource +--- + This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Apple Public Source License Version 1.1 (the "License"). You may not use this file @@ -11,4 +18,4 @@ EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the License for the specific language governing rights and limitations -under the License. +under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_2.yml b/src/licensedcode/data/rules/apsl-1.1_2.yml deleted file mode 100644 index b2e9b7d9e88..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apsl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.apple.com/publicsource diff --git a/src/licensedcode/data/rules/apsl-1.1_3.RULE b/src/licensedcode/data/rules/apsl-1.1_3.RULE index 40385c6e98f..af993cc1d39 100644 --- a/src/licensedcode/data/rules/apsl-1.1_3.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apsl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.apple.com/publicsource +--- + @APPLE_LICENSE_HEADER_START@ The contents of this file constitute Original Code as defined in and @@ -14,4 +21,4 @@ FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and limitations under the License. -@APPLE_LICENSE_HEADER_END@ +@APPLE_LICENSE_HEADER_END@ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_3.yml b/src/licensedcode/data/rules/apsl-1.1_3.yml deleted file mode 100644 index b2e9b7d9e88..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apsl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.apple.com/publicsource diff --git a/src/licensedcode/data/rules/apsl-1.1_4.RULE b/src/licensedcode/data/rules/apsl-1.1_4.RULE index a8aa3347315..5aee475deeb 100644 --- a/src/licensedcode/data/rules/apsl-1.1_4.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/apsl/1.1.txt +--- + http://www.opensource.apple.com/apsl/1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_4.yml b/src/licensedcode/data/rules/apsl-1.1_4.yml deleted file mode 100644 index 0cb76fdb3a3..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/apsl/1.1.txt diff --git a/src/licensedcode/data/rules/apsl-1.1_5.RULE b/src/licensedcode/data/rules/apsl-1.1_5.RULE index 5ec6267d405..cb86fb331e7 100644 --- a/src/licensedcode/data/rules/apsl-1.1_5.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_5.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +--- + APSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_5.yml b/src/licensedcode/data/rules/apsl-1.1_5.yml deleted file mode 100644 index 07c3e7c853a..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.1_6.RULE b/src/licensedcode/data/rules/apsl-1.1_6.RULE index 20eb8544195..3d291dcf3cc 100644 --- a/src/licensedcode/data/rules/apsl-1.1_6.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_6.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE +--- + http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_6.yml b/src/licensedcode/data/rules/apsl-1.1_6.yml deleted file mode 100644 index dd0f4a03f66..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE diff --git a/src/licensedcode/data/rules/apsl-1.1_7.RULE b/src/licensedcode/data/rules/apsl-1.1_7.RULE index 3fd36df9588..b3aff559d1e 100644 --- a/src/licensedcode/data/rules/apsl-1.1_7.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_7.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 100 +--- + Apple Public Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_7.yml b/src/licensedcode/data/rules/apsl-1.1_7.yml deleted file mode 100644 index 07c3e7c853a..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.1_8.RULE b/src/licensedcode/data/rules/apsl-1.1_8.RULE index 775713ae0c4..2e0ec014d8d 100644 --- a/src/licensedcode/data/rules/apsl-1.1_8.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Apple Public Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_8.yml b/src/licensedcode/data/rules/apsl-1.1_8.yml deleted file mode 100644 index 92eb5f9b17e..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.1_9.RULE b/src/licensedcode/data/rules/apsl-1.1_9.RULE index 67aceb8b437..f6607bbfab1 100644 --- a/src/licensedcode/data/rules/apsl-1.1_9.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apple Public Source License 1.1 APSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_9.yml b/src/licensedcode/data/rules/apsl-1.1_9.yml deleted file mode 100644 index 92eb5f9b17e..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.1_url_1.RULE b/src/licensedcode/data/rules/apsl-1.1_url_1.RULE index 39e89f2aa2f..471c3be50c9 100644 --- a/src/licensedcode/data/rules/apsl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apsl-1.1 +--- + https://spdx.org/licenses/apsl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_url_1.yml b/src/licensedcode/data/rules/apsl-1.1_url_1.yml deleted file mode 100644 index b253a753e86..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apsl-1.1 diff --git a/src/licensedcode/data/rules/apsl-1.1_url_2.RULE b/src/licensedcode/data/rules/apsl-1.1_url_2.RULE index 94848337ff8..7f8d1d90931 100644 --- a/src/licensedcode/data/rules/apsl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/apsl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apsl-1.1.html +--- + https://spdx.org/licenses/apsl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.1_url_2.yml b/src/licensedcode/data/rules/apsl-1.1_url_2.yml deleted file mode 100644 index 45160fcc974..00000000000 --- a/src/licensedcode/data/rules/apsl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apsl-1.1.html diff --git a/src/licensedcode/data/rules/apsl-1.2.RULE b/src/licensedcode/data/rules/apsl-1.2.RULE index 9ccd462edb5..c41f696d047 100644 --- a/src/licensedcode/data/rules/apsl-1.2.RULE +++ b/src/licensedcode/data/rules/apsl-1.2.RULE @@ -1 +1,9 @@ -https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2 +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2 +--- + +https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2.yml b/src/licensedcode/data/rules/apsl-1.2.yml deleted file mode 100644 index 0c307ca2637..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.2 diff --git a/src/licensedcode/data/rules/apsl-1.2_1.RULE b/src/licensedcode/data/rules/apsl-1.2_1.RULE index 2bb98d6a842..c0eaceec89e 100644 --- a/src/licensedcode/data/rules/apsl-1.2_1.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apsl-1.2 +is_license_notice: yes +ignorable_urls: + - http://www.apple.com/publicsource +--- + This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Apple Public Source License Version 1.2 (the 'License'). You may not use this file except in compliance with the License. Please obtain a copy of the License at http://www.apple.com/publicsource and read it before using this file. The Original Code and all software distributed under the License are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_1.yml b/src/licensedcode/data/rules/apsl-1.2_1.yml deleted file mode 100644 index d4037e11c35..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apsl-1.2 -is_license_notice: yes -ignorable_urls: - - http://www.apple.com/publicsource diff --git a/src/licensedcode/data/rules/apsl-1.2_10.RULE b/src/licensedcode/data/rules/apsl-1.2_10.RULE index c4a25c78d29..0c4083c9c10 100644 --- a/src/licensedcode/data/rules/apsl-1.2_10.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/philosophy/historical-apsl.html +--- + https://www.gnu.org/philosophy/historical-apsl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_10.yml b/src/licensedcode/data/rules/apsl-1.2_10.yml deleted file mode 100644 index d54a2bab949..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/philosophy/historical-apsl.html diff --git a/src/licensedcode/data/rules/apsl-1.2_11.RULE b/src/licensedcode/data/rules/apsl-1.2_11.RULE index ddb5be76173..ba1f94cdb07 100644 --- a/src/licensedcode/data/rules/apsl-1.2_11.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_11.RULE @@ -1 +1,6 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +--- + APSL-1.2 Apple Public Source License 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_11.yml b/src/licensedcode/data/rules/apsl-1.2_11.yml deleted file mode 100644 index 6e4b1c69d83..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/apsl-1.2_12.RULE b/src/licensedcode/data/rules/apsl-1.2_12.RULE index de6b3430b9d..dc6227e0fdc 100644 --- a/src/licensedcode/data/rules/apsl-1.2_12.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_12.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Apple Public Source License 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_12.yml b/src/licensedcode/data/rules/apsl-1.2_12.yml deleted file mode 100644 index 35e40cb6186..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.2_13.RULE b/src/licensedcode/data/rules/apsl-1.2_13.RULE index 937c5ea40f6..deaf14ba7c4 100644 --- a/src/licensedcode/data/rules/apsl-1.2_13.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_13.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apple Public Source License 1.2 APSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_13.yml b/src/licensedcode/data/rules/apsl-1.2_13.yml deleted file mode 100644 index 35e40cb6186..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.2_14.RULE b/src/licensedcode/data/rules/apsl-1.2_14.RULE index 1396bc9a550..92ecd058286 100644 --- a/src/licensedcode/data/rules/apsl-1.2_14.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_14.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: APSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_14.yml b/src/licensedcode/data/rules/apsl-1.2_14.yml deleted file mode 100644 index 312d1b86e64..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.2_15.RULE b/src/licensedcode/data/rules/apsl-1.2_15.RULE index c18410d212f..aab7b900088 100644 --- a/src/licensedcode/data/rules/apsl-1.2_15.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_15.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Apple Public Source License 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_15.yml b/src/licensedcode/data/rules/apsl-1.2_15.yml deleted file mode 100644 index 312d1b86e64..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.2_16.RULE b/src/licensedcode/data/rules/apsl-1.2_16.RULE index 0c4f22bafc0..4157e2526b0 100644 --- a/src/licensedcode/data/rules/apsl-1.2_16.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_16.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: APSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_16.yml b/src/licensedcode/data/rules/apsl-1.2_16.yml deleted file mode 100644 index 312d1b86e64..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-1.2_17.RULE b/src/licensedcode/data/rules/apsl-1.2_17.RULE index 4379c577987..b45b8edfc14 100644 --- a/src/licensedcode/data/rules/apsl-1.2_17.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_17.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/APSL-1.2 +--- + https://licenses.nuget.org/APSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_17.yml b/src/licensedcode/data/rules/apsl-1.2_17.yml deleted file mode 100644 index 004be8317b9..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/APSL-1.2 diff --git a/src/licensedcode/data/rules/apsl-1.2_18.RULE b/src/licensedcode/data/rules/apsl-1.2_18.RULE index 4c907cb8701..0f01654390c 100644 --- a/src/licensedcode/data/rules/apsl-1.2_18.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_18.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/APSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_18.yml b/src/licensedcode/data/rules/apsl-1.2_18.yml deleted file mode 100644 index f674ac1ce70..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.2_19.RULE b/src/licensedcode/data/rules/apsl-1.2_19.RULE index 3c1aadd393e..286dc712753 100644 --- a/src/licensedcode/data/rules/apsl-1.2_19.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_19.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APSL-1.2 +--- + {{APSL-1.2}} https://spdx.org/licenses/APSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_19.yml b/src/licensedcode/data/rules/apsl-1.2_19.yml deleted file mode 100644 index 4091e55b504..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APSL-1.2 diff --git a/src/licensedcode/data/rules/apsl-1.2_2.RULE b/src/licensedcode/data/rules/apsl-1.2_2.RULE index 7941df5629f..21556e98c7f 100644 --- a/src/licensedcode/data/rules/apsl-1.2_2.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.samurajdata.se/opensource/mirror/licenses/apsl.php +--- + http://www.samurajdata.se/opensource/mirror/licenses/apsl.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_2.yml b/src/licensedcode/data/rules/apsl-1.2_2.yml deleted file mode 100644 index f2bf4f31d38..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.samurajdata.se/opensource/mirror/licenses/apsl.php diff --git a/src/licensedcode/data/rules/apsl-1.2_20.RULE b/src/licensedcode/data/rules/apsl-1.2_20.RULE index 3a797cf0f40..d1ecb41fbf7 100644 --- a/src/licensedcode/data/rules/apsl-1.2_20.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_20.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APSL-1.2 +--- + LICENSE {{APSL-1.2}} https://spdx.org/licenses/APSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_20.yml b/src/licensedcode/data/rules/apsl-1.2_20.yml deleted file mode 100644 index 4091e55b504..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APSL-1.2 diff --git a/src/licensedcode/data/rules/apsl-1.2_3.RULE b/src/licensedcode/data/rules/apsl-1.2_3.RULE index 9caf2b06ea6..fc269ca030a 100644 --- a/src/licensedcode/data/rules/apsl-1.2_3.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +--- + Apple Public Source License 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_3.yml b/src/licensedcode/data/rules/apsl-1.2_3.yml deleted file mode 100644 index f674ac1ce70..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.2_4.RULE b/src/licensedcode/data/rules/apsl-1.2_4.RULE index 9d05884a8fb..fbed7f6f67f 100644 --- a/src/licensedcode/data/rules/apsl-1.2_4.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/apsl.html +--- + http://www.opensource.org/licenses/apsl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_4.yml b/src/licensedcode/data/rules/apsl-1.2_4.yml deleted file mode 100644 index 9da91816330..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/apsl.html diff --git a/src/licensedcode/data/rules/apsl-1.2_5.RULE b/src/licensedcode/data/rules/apsl-1.2_5.RULE index 40029fdca5f..ba86aa6cb10 100644 --- a/src/licensedcode/data/rules/apsl-1.2_5.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_5.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.2 AND unknown +is_license_reference: yes +relevance: 100 +--- + This license is based on the Apple Public Source License version 1.2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_5.yml b/src/licensedcode/data/rules/apsl-1.2_5.yml deleted file mode 100644 index a7c40c9f1bf..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.2 AND unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.2_6.RULE b/src/licensedcode/data/rules/apsl-1.2_6.RULE index c9bb35505ef..2eb27f3e995 100644 --- a/src/licensedcode/data/rules/apsl-1.2_6.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_6.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +--- + Apple Public Source License Ver. 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_6.yml b/src/licensedcode/data/rules/apsl-1.2_6.yml deleted file mode 100644 index f674ac1ce70..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.2_7.RULE b/src/licensedcode/data/rules/apsl-1.2_7.RULE index 901404786ec..ecb371f06fb 100644 --- a/src/licensedcode/data/rules/apsl-1.2_7.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_7.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/apsl/1.2.txt +--- + http://www.opensource.apple.com/apsl/1.2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_7.yml b/src/licensedcode/data/rules/apsl-1.2_7.yml deleted file mode 100644 index a4773a99af8..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/apsl/1.2.txt diff --git a/src/licensedcode/data/rules/apsl-1.2_8.RULE b/src/licensedcode/data/rules/apsl-1.2_8.RULE index 9987165f4a3..7d503969b9d 100644 --- a/src/licensedcode/data/rules/apsl-1.2_8.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/philosophy/historical-apsl.html +--- + http://www.gnu.org/philosophy/historical-apsl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_8.yml b/src/licensedcode/data/rules/apsl-1.2_8.yml deleted file mode 100644 index 4f73a6748a0..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/philosophy/historical-apsl.html diff --git a/src/licensedcode/data/rules/apsl-1.2_9.RULE b/src/licensedcode/data/rules/apsl-1.2_9.RULE index bda4324d4f8..4d583bdfa80 100644 --- a/src/licensedcode/data/rules/apsl-1.2_9.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_9.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +--- + Apple Public Source License V. 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_9.yml b/src/licensedcode/data/rules/apsl-1.2_9.yml deleted file mode 100644 index f674ac1ce70..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-1.2_url_1.RULE b/src/licensedcode/data/rules/apsl-1.2_url_1.RULE index b5d2d9eee9b..57d24a8c801 100644 --- a/src/licensedcode/data/rules/apsl-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apsl-1.2 +--- + https://spdx.org/licenses/apsl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_url_1.yml b/src/licensedcode/data/rules/apsl-1.2_url_1.yml deleted file mode 100644 index b4f36e5e23e..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apsl-1.2 diff --git a/src/licensedcode/data/rules/apsl-1.2_url_2.RULE b/src/licensedcode/data/rules/apsl-1.2_url_2.RULE index 6dd6ad61201..41f45d18348 100644 --- a/src/licensedcode/data/rules/apsl-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/apsl-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apsl-1.2.html +--- + https://spdx.org/licenses/apsl-1.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-1.2_url_2.yml b/src/licensedcode/data/rules/apsl-1.2_url_2.yml deleted file mode 100644 index cf8e58bf3d6..00000000000 --- a/src/licensedcode/data/rules/apsl-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apsl-1.2.html diff --git a/src/licensedcode/data/rules/apsl-2.0.RULE b/src/licensedcode/data/rules/apsl-2.0.RULE index cc044903118..92e5ef57ac9 100644 --- a/src/licensedcode/data/rules/apsl-2.0.RULE +++ b/src/licensedcode/data/rules/apsl-2.0.RULE @@ -1 +1,9 @@ -http://www.opensource.apple.com/license/apsl/ \ No newline at end of file +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/license/apsl/ +--- + +http://www.opensource.apple.com/license/apsl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0.SPDX.RULE b/src/licensedcode/data/rules/apsl-2.0.SPDX.RULE index de55f04cd62..b0858d22377 100644 --- a/src/licensedcode/data/rules/apsl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/apsl-2.0.SPDX.RULE @@ -1,3 +1,17 @@ +--- +license_expression: apsl-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Portions Copyright (c) 1999-2007 Apple Inc. +ignorable_holders: + - Apple Inc. +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.opensource.apple.com/apsl/ +--- + APPLE PUBLIC SOURCE LICENSE Version 2.0 - August 6, 2003 diff --git a/src/licensedcode/data/rules/apsl-2.0.SPDX.yml b/src/licensedcode/data/rules/apsl-2.0.SPDX.yml deleted file mode 100644 index 713b9ec9d2f..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0.SPDX.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: apsl-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Portions Copyright (c) 1999-2007 Apple Inc. -ignorable_holders: - - Apple Inc. -ignorable_urls: - - http://www.apple.com/legal/guidelinesfor3rdparties.html - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0.yml b/src/licensedcode/data/rules/apsl-2.0.yml deleted file mode 100644 index dcd5c9e7305..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/license/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0_1.RULE b/src/licensedcode/data/rules/apsl-2.0_1.RULE index c386b19933f..5335f30fcd8 100644 --- a/src/licensedcode/data/rules/apsl-2.0_1.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +--- + Apple Public Source License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_1.yml b/src/licensedcode/data/rules/apsl-2.0_1.yml deleted file mode 100644 index 542715cbb90..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-2.0_10.RULE b/src/licensedcode/data/rules/apsl-2.0_10.RULE index 86587d0e11e..335012f5792 100644 --- a/src/licensedcode/data/rules/apsl-2.0_10.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apsl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/apsl/ +--- + @APPLE_OSREFERENCE_LICENSE_HEADER_START@ This file contains Original Code and/or Modifications of Original Code @@ -20,4 +28,4 @@ FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and limitations under the License. -@APPLE_OSREFERENCE_LICENSE_HEADER_END@ +@APPLE_OSREFERENCE_LICENSE_HEADER_END@ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_10.yml b/src/licensedcode/data/rules/apsl-2.0_10.yml deleted file mode 100644 index 7fc5841cc81..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0_11.RULE b/src/licensedcode/data/rules/apsl-2.0_11.RULE index 6a6a2e7cdd5..5332dd3fe28 100644 --- a/src/licensedcode/data/rules/apsl-2.0_11.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apsl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/apsl/ +--- + This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Apple Public Source License Version 2.0 (the 'License'). You may not use this file except in @@ -16,4 +24,4 @@ EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and -limitations under the License. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_11.yml b/src/licensedcode/data/rules/apsl-2.0_11.yml deleted file mode 100644 index 7fc5841cc81..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0_12.RULE b/src/licensedcode/data/rules/apsl-2.0_12.RULE index 617f2e7e8ff..2e1a23a842e 100644 --- a/src/licensedcode/data/rules/apsl-2.0_12.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apsl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/apsl/ +--- + @APPLE_LICENSE_HEADER_START@ This file contains Original Code and/or Modifications of Original Code @@ -15,4 +23,4 @@ FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and limitations under the License. -@APPLE_LICENSE_HEADER_END@ +@APPLE_LICENSE_HEADER_END@ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_12.yml b/src/licensedcode/data/rules/apsl-2.0_12.yml deleted file mode 100644 index 7fc5841cc81..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0_13.RULE b/src/licensedcode/data/rules/apsl-2.0_13.RULE index 277b211f307..6dda7b8903e 100644 --- a/src/licensedcode/data/rules/apsl-2.0_13.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/APSL-2.0 +--- + `APSL-2.0` - [Apple Public Source License, Version 2.0](https://opensource.org/licenses/APSL-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_13.yml b/src/licensedcode/data/rules/apsl-2.0_13.yml deleted file mode 100644 index 9c0f3b36644..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/APSL-2.0 diff --git a/src/licensedcode/data/rules/apsl-2.0_14.RULE b/src/licensedcode/data/rules/apsl-2.0_14.RULE index 22c7106e57b..df29a8829e1 100644 --- a/src/licensedcode/data/rules/apsl-2.0_14.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_14.RULE @@ -1,3 +1,13 @@ +--- +license_expression: apsl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: See https://github.com/netty/netty/issues/10772 and https://github.com/netty/netty/pull/10773 +ignorable_urls: + - https://www.opensource.apple.com/source/configd/configd-453.19/dnsinfo/dnsinfo.h +--- + * LICENSE: * license/LICENSE.dnsinfo.txt (Apache License 2.0) * HOMEPAGE: diff --git a/src/licensedcode/data/rules/apsl-2.0_14.yml b/src/licensedcode/data/rules/apsl-2.0_14.yml deleted file mode 100644 index 80175c9526b..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: apsl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: See https://github.com/netty/netty/issues/10772 and https://github.com/netty/netty/pull/10773 -ignorable_urls: - - https://www.opensource.apple.com/source/configd/configd-453.19/dnsinfo/dnsinfo.h diff --git a/src/licensedcode/data/rules/apsl-2.0_15.RULE b/src/licensedcode/data/rules/apsl-2.0_15.RULE index b192d764893..ce105cf318d 100644 --- a/src/licensedcode/data/rules/apsl-2.0_15.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/philosophy/apsl.html +--- + https://www.gnu.org/philosophy/apsl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_15.yml b/src/licensedcode/data/rules/apsl-2.0_15.yml deleted file mode 100644 index c9dc6617489..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/philosophy/apsl.html diff --git a/src/licensedcode/data/rules/apsl-2.0_16.RULE b/src/licensedcode/data/rules/apsl-2.0_16.RULE index bd77a4a13ac..b5dc04c20da 100644 --- a/src/licensedcode/data/rules/apsl-2.0_16.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_16.RULE @@ -1 +1,6 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +--- + APSL-2.0 Apple Public Source License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_16.yml b/src/licensedcode/data/rules/apsl-2.0_16.yml deleted file mode 100644 index 765ea2280df..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/apsl-2.0_17.RULE b/src/licensedcode/data/rules/apsl-2.0_17.RULE index 6d5af9057a1..2def3ea5439 100644 --- a/src/licensedcode/data/rules/apsl-2.0_17.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Apple Public Source License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_17.yml b/src/licensedcode/data/rules/apsl-2.0_17.yml deleted file mode 100644 index b282c62eb90..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-2.0_18.RULE b/src/licensedcode/data/rules/apsl-2.0_18.RULE index bea085af45d..8351db1a4d8 100644 --- a/src/licensedcode/data/rules/apsl-2.0_18.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Apple Public Source License 2.0 APSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_18.yml b/src/licensedcode/data/rules/apsl-2.0_18.yml deleted file mode 100644 index b282c62eb90..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-2.0_19.RULE b/src/licensedcode/data/rules/apsl-2.0_19.RULE index 89c62be7032..fa091588408 100644 --- a/src/licensedcode/data/rules/apsl-2.0_19.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_19.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: APSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_19.yml b/src/licensedcode/data/rules/apsl-2.0_19.yml deleted file mode 100644 index 7ba34bfd172..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-2.0_2.RULE b/src/licensedcode/data/rules/apsl-2.0_2.RULE index 7348bcb582e..236bcbb1c02 100644 --- a/src/licensedcode/data/rules/apsl-2.0_2.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/philosophy/apsl.html +--- + http://www.gnu.org/philosophy/apsl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_2.yml b/src/licensedcode/data/rules/apsl-2.0_2.yml deleted file mode 100644 index d76b97adcb5..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/philosophy/apsl.html diff --git a/src/licensedcode/data/rules/apsl-2.0_20.RULE b/src/licensedcode/data/rules/apsl-2.0_20.RULE index 8acd8a6ade1..8e9c4be0809 100644 --- a/src/licensedcode/data/rules/apsl-2.0_20.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_20.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Apple Public Source License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_20.yml b/src/licensedcode/data/rules/apsl-2.0_20.yml deleted file mode 100644 index 7ba34bfd172..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-2.0_21.RULE b/src/licensedcode/data/rules/apsl-2.0_21.RULE index e362dfed99b..4547e5376a5 100644 --- a/src/licensedcode/data/rules/apsl-2.0_21.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_21.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: APSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_21.yml b/src/licensedcode/data/rules/apsl-2.0_21.yml deleted file mode 100644 index 7ba34bfd172..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/apsl-2.0_22.RULE b/src/licensedcode/data/rules/apsl-2.0_22.RULE index e7eac89dbb9..021e7ae81ab 100644 --- a/src/licensedcode/data/rules/apsl-2.0_22.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/APSL-2.0 +--- + https://licenses.nuget.org/APSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_22.yml b/src/licensedcode/data/rules/apsl-2.0_22.yml deleted file mode 100644 index d90d42d6391..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/APSL-2.0 diff --git a/src/licensedcode/data/rules/apsl-2.0_23.RULE b/src/licensedcode/data/rules/apsl-2.0_23.RULE index 2723214d255..fe0e019673f 100644 --- a/src/licensedcode/data/rules/apsl-2.0_23.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/APSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_23.yml b/src/licensedcode/data/rules/apsl-2.0_23.yml deleted file mode 100644 index 542715cbb90..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/apsl-2.0_24.RULE b/src/licensedcode/data/rules/apsl-2.0_24.RULE index 1fd01b43472..899d1fa6af5 100644 --- a/src/licensedcode/data/rules/apsl-2.0_24.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APSL-2.0 +--- + {{APSL-2.0}} https://spdx.org/licenses/APSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_24.yml b/src/licensedcode/data/rules/apsl-2.0_24.yml deleted file mode 100644 index 6df54b67cb4..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APSL-2.0 diff --git a/src/licensedcode/data/rules/apsl-2.0_25.RULE b/src/licensedcode/data/rules/apsl-2.0_25.RULE index a3ca37ad914..b363cb21a41 100644 --- a/src/licensedcode/data/rules/apsl-2.0_25.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/APSL-2.0 +--- + LICENSE {{APSL-2.0}} https://spdx.org/licenses/APSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_25.yml b/src/licensedcode/data/rules/apsl-2.0_25.yml deleted file mode 100644 index 6df54b67cb4..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/APSL-2.0 diff --git a/src/licensedcode/data/rules/apsl-2.0_3.RULE b/src/licensedcode/data/rules/apsl-2.0_3.RULE index b3f95aa1bc8..2d833366327 100644 --- a/src/licensedcode/data/rules/apsl-2.0_3.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.apple.com/apsl/ +--- + This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Apple Public Source License Version 2.0 (the 'License'). You may not use this file except in compliance with the License. Please obtain a copy of the License at http://www.opensource.apple.com/apsl/ and read it before using this file. The Original Code and all software distributed under the License are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing rights an limitations under the License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_3.yml b/src/licensedcode/data/rules/apsl-2.0_3.yml deleted file mode 100644 index 83cc6f5a989..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apsl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0_4.RULE b/src/licensedcode/data/rules/apsl-2.0_4.RULE index b92ed699c1d..284c13b7664 100644 --- a/src/licensedcode/data/rules/apsl-2.0_4.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/apsl-2.0.php +--- + http://opensource.org/licenses/apsl-2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_4.yml b/src/licensedcode/data/rules/apsl-2.0_4.yml deleted file mode 100644 index 15677ef09f2..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/apsl-2.0.php diff --git a/src/licensedcode/data/rules/apsl-2.0_5.RULE b/src/licensedcode/data/rules/apsl-2.0_5.RULE index 4d02c88b680..b6eb120670f 100644 --- a/src/licensedcode/data/rules/apsl-2.0_5.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_text: yes +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html +--- + Apple Public Source License Version 2.0 - August 6, 2003 diff --git a/src/licensedcode/data/rules/apsl-2.0_5.yml b/src/licensedcode/data/rules/apsl-2.0_5.yml deleted file mode 100644 index 59f7ebab183..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apsl-2.0 -is_license_text: yes -ignorable_urls: - - http://www.apple.com/legal/guidelinesfor3rdparties.html diff --git a/src/licensedcode/data/rules/apsl-2.0_6.RULE b/src/licensedcode/data/rules/apsl-2.0_6.RULE index 2a9cf013f0e..965a1d7fb19 100644 --- a/src/licensedcode/data/rules/apsl-2.0_6.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_text: yes +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html +--- + Please read this License carefully before downloading this software. By downloading or using this software, you are agreeing to be bound by the terms of this License. If you do not or cannot agree to the terms of this License, please do not download or use the software. Apple Note: In January 2007, Apple changed its corporate name from "Apple Computer, Inc." to "Apple Inc." This change has been reflected below and copyright years updated, but no other changes have been made to the APSL 2.0. @@ -86,4 +93,4 @@ Apple Note: In January 2007, Apple changed its corporate name from "Apple Compu 13.7 Entire Agreement; Governing Law. This License constitutes the entire agreement between the parties with respect to the subject matter hereof. This License shall be governed by the laws of the United States and the State of California, except that body of California law concerning conflicts of law. -Where You are located in the province of Quebec, Canada, the following clause applies: The parties hereby confirm that they have requested that this License and all related documents be drafted in English. Les parties ont exigé que le présent contrat et tous les documents connexes soient rédigés en anglais. +Where You are located in the province of Quebec, Canada, the following clause applies: The parties hereby confirm that they have requested that this License and all related documents be drafted in English. Les parties ont exigé que le présent contrat et tous les documents connexes soient rédigés en anglais. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_6.yml b/src/licensedcode/data/rules/apsl-2.0_6.yml deleted file mode 100644 index 59f7ebab183..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apsl-2.0 -is_license_text: yes -ignorable_urls: - - http://www.apple.com/legal/guidelinesfor3rdparties.html diff --git a/src/licensedcode/data/rules/apsl-2.0_7.RULE b/src/licensedcode/data/rules/apsl-2.0_7.RULE index 8859472fc4c..f4a198c7d1a 100644 --- a/src/licensedcode/data/rules/apsl-2.0_7.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apsl-2.0 +is_license_text: yes +ignorable_urls: + - http://www.apple.com/legal/guidelinesfor3rdparties.html + - http://www.opensource.apple.com/apsl/ +--- + APPLE PUBLIC SOURCE LICENSE Version 2.0 - August 6, 2003 @@ -105,4 +113,4 @@ distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. -Please see the License for the specific language governing rights and limitations under the License." +Please see the License for the specific language governing rights and limitations under the License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_7.yml b/src/licensedcode/data/rules/apsl-2.0_7.yml deleted file mode 100644 index 29dfd5cc331..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_text: yes -ignorable_urls: - - http://www.apple.com/legal/guidelinesfor3rdparties.html - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0_8.RULE b/src/licensedcode/data/rules/apsl-2.0_8.RULE index 9a9def5303b..9a3e577f239 100644 --- a/src/licensedcode/data/rules/apsl-2.0_8.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.apple.com/apsl/ +--- + This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Apple Public Source License Version 2.0 (the 'License'). You may not use this file except in compliance with the License. @@ -8,4 +15,4 @@ distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. -Please see the License for the specific language governing rights and limitations under the License." +Please see the License for the specific language governing rights and limitations under the License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_8.yml b/src/licensedcode/data/rules/apsl-2.0_8.yml deleted file mode 100644 index 83cc6f5a989..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apsl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0_9.RULE b/src/licensedcode/data/rules/apsl-2.0_9.RULE index 8924bd0c274..71e89245b20 100644 --- a/src/licensedcode/data/rules/apsl-2.0_9.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/apsl/ +--- + http://www.opensource.apple.com/apsl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_9.yml b/src/licensedcode/data/rules/apsl-2.0_9.yml deleted file mode 100644 index 5ac91a906e5..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/apsl/ diff --git a/src/licensedcode/data/rules/apsl-2.0_url_1.RULE b/src/licensedcode/data/rules/apsl-2.0_url_1.RULE index 74c2986473c..1d6ac0b8ca8 100644 --- a/src/licensedcode/data/rules/apsl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apsl-2.0 +--- + https://spdx.org/licenses/apsl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_url_1.yml b/src/licensedcode/data/rules/apsl-2.0_url_1.yml deleted file mode 100644 index 457f0eedb9f..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apsl-2.0 diff --git a/src/licensedcode/data/rules/apsl-2.0_url_2.RULE b/src/licensedcode/data/rules/apsl-2.0_url_2.RULE index c88fa34538a..2dbe302d209 100644 --- a/src/licensedcode/data/rules/apsl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/apsl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/apsl-2.0.html +--- + https://spdx.org/licenses/apsl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apsl-2.0_url_2.yml b/src/licensedcode/data/rules/apsl-2.0_url_2.yml deleted file mode 100644 index 05cdeffcdc6..00000000000 --- a/src/licensedcode/data/rules/apsl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/apsl-2.0.html diff --git a/src/licensedcode/data/rules/aptana-1.0.RULE b/src/licensedcode/data/rules/aptana-1.0.RULE index 540993d4f7a..828b3c58afb 100644 --- a/src/licensedcode/data/rules/aptana-1.0.RULE +++ b/src/licensedcode/data/rules/aptana-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: aptana-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://aptana.com/legal/apl/ +--- + http://aptana.com/legal/apl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/aptana-1.0.yml b/src/licensedcode/data/rules/aptana-1.0.yml deleted file mode 100644 index 32b2658078f..00000000000 --- a/src/licensedcode/data/rules/aptana-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: aptana-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://aptana.com/legal/apl/ diff --git a/src/licensedcode/data/rules/aptana-1.0_1.RULE b/src/licensedcode/data/rules/aptana-1.0_1.RULE index 6d31c061f3e..9c93a709041 100644 --- a/src/licensedcode/data/rules/aptana-1.0_1.RULE +++ b/src/licensedcode/data/rules/aptana-1.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: aptana-1.0 +is_license_text: yes +ignorable_emails: + - license@aptana.com +--- + Aptana Public License 1.0 The Aptana Public License is designed to allow you the freedom to use Aptana products without restriction, except for redistribution. We at Aptana want you to not only use Aptana for web development, but also freely share scripts, snippets, websites and other items with friends and coworkers, and to encourage others to use and adopt Aptana as well. However, we require that you do not redistribute Aptana Studio itself. If you are interested in redistributing Aptana or have a question, please contact us at license@aptana.com. Please view the Frequently Asked Questions if you have additional questions not answered here. @@ -26,4 +33,4 @@ This License represents the complete agreement concerning subject matter hereof. Except as expressly stated in Section 2 above, You receive no rights or licenses to the intellectual property of Aptana under this License, whether expressly, by implication, estoppel or otherwise. In particular, without limitation, this License does not grant permission to use the trade names, trademarks, service marks, or product names of Aptana. All rights in the Program not expressly granted under this License are reserved. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Program shall terminate as of the date such litigation is filed. All Your rights under this License shall terminate if You fail to comply with any of the terms or conditions of this License and do not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Your rights under this License terminate, You agree to cease use of the Program as soon as reasonably practicable. However, Your obligations under this License, and this Section 6, shall continue and survive. -This Agreement is governed by the laws of the State of California and the intellectual property laws of the United States of America, without reference to conflicts of laws principles that would require the application of the laws of any other jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. No party to this License will bring a legal action under this License more than one year after the cause of action arose. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You exercise rights under this License. +This Agreement is governed by the laws of the State of California and the intellectual property laws of the United States of America, without reference to conflicts of laws principles that would require the application of the laws of any other jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. No party to this License will bring a legal action under this License more than one year after the cause of action arose. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You exercise rights under this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/aptana-1.0_1.yml b/src/licensedcode/data/rules/aptana-1.0_1.yml deleted file mode 100644 index fb8ada9f058..00000000000 --- a/src/licensedcode/data/rules/aptana-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: aptana-1.0 -is_license_text: yes -ignorable_emails: - - license@aptana.com diff --git a/src/licensedcode/data/rules/arm-llvm-sga_1.RULE b/src/licensedcode/data/rules/arm-llvm-sga_1.RULE index 1b2e4b8a625..6d8869506f4 100644 --- a/src/licensedcode/data/rules/arm-llvm-sga_1.RULE +++ b/src/licensedcode/data/rules/arm-llvm-sga_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: arm-llvm-sga +is_license_text: yes +relevance: 99 +ignorable_urls: + - http://llvm.org/ +--- + Software Grant License Agreement ("Agreement") Except for the license granted herein to you, Intel Corporation ("Intel") reserves diff --git a/src/licensedcode/data/rules/arm-llvm-sga_1.yml b/src/licensedcode/data/rules/arm-llvm-sga_1.yml deleted file mode 100644 index 7bb4cf5f9f0..00000000000 --- a/src/licensedcode/data/rules/arm-llvm-sga_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: arm-llvm-sga -is_license_text: yes -relevance: 99 -ignorable_urls: - - http://llvm.org/ diff --git a/src/licensedcode/data/rules/arphic-public.RULE b/src/licensedcode/data/rules/arphic-public.RULE index 1b4a0dbdcc0..08ecbdab872 100644 --- a/src/licensedcode/data/rules/arphic-public.RULE +++ b/src/licensedcode/data/rules/arphic-public.RULE @@ -1 +1,9 @@ +--- +license_expression: arphic-public +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE +--- + http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/arphic-public.yml b/src/licensedcode/data/rules/arphic-public.yml deleted file mode 100644 index b7c7da87450..00000000000 --- a/src/licensedcode/data/rules/arphic-public.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: arphic-public -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE diff --git a/src/licensedcode/data/rules/arphic-public_2.RULE b/src/licensedcode/data/rules/arphic-public_2.RULE index fe50fbb10d5..08ff331dac8 100644 --- a/src/licensedcode/data/rules/arphic-public_2.RULE +++ b/src/licensedcode/data/rules/arphic-public_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: arphic-public +is_license_reference: yes +relevance: 100 +--- + All rights reserved except as specified below. Everyone is permitted to copy and distribute verbatim copies of this license @@ -125,5 +131,4 @@ Legal Terms INCIDENTAL, SPECIAL OR EXEMPLARY DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE FONT (INCLUDING BUT NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA OR PROFITS; OR BUSINESS INTERRUPTION), EVEN IF SUCH - HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - + HOLDERS OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/arphic-public_2.yml b/src/licensedcode/data/rules/arphic-public_2.yml deleted file mode 100644 index 4322683d509..00000000000 --- a/src/licensedcode/data/rules/arphic-public_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: arphic-public -is_license_reference: yes -relevance: 100 - diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_1.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_1.RULE index f662003633a..01d08db3484 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_1.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_text: yes +ignorable_urls: + - http://ftp.uu.net/ +--- + The Artistic License Preamble diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_1.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_1.yml deleted file mode 100644 index 231e773cc01..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_text: yes -ignorable_urls: - - http://ftp.uu.net/ diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_10.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_10.RULE index b4c3c2fe231..6cfe75a1d10 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_10.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_10.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_10.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_10.yml deleted file mode 100644 index 6717f3a65e4..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_11.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_11.RULE index bcfcf551955..7963d6ef8f4 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_11.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_11.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Artistic-1.0-cl8 +--- + LICENSE {{Artistic-1.0-cl8}} https://spdx.org/licenses/Artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_11.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_11.yml deleted file mode 100644 index b6035aa0670..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Artistic-1.0-cl8 diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_12.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_12.RULE index dc54ee10929..bd0a2910dac 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_12.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_12.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Artistic-1.0-cl8 +--- + {{Artistic-1.0-cl8}} https://spdx.org/licenses/Artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_12.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_12.yml deleted file mode 100644 index b6035aa0670..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Artistic-1.0-cl8 diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_2.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_2.RULE index 479e7d078ab..c42a1890cc0 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_2.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_2.RULE @@ -1 +1,6 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +--- + Artistic-1.0-cl8 Artistic License 1.0 w/clause 8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_2.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_2.yml deleted file mode 100644 index b950224125a..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_3.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_3.RULE index 15f3e902e58..5b24ce7dde4 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_3.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_3.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Artistic License 1.0 w/clause 8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_3.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_3.yml deleted file mode 100644 index 049f0d962a1..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_4.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_4.RULE index 3666222515a..e4e54c96088 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_4.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_4.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Artistic License 1.0 w/clause 8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_4.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_4.yml deleted file mode 100644 index 049f0d962a1..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_5.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_5.RULE index f9f113aa375..9675f40870a 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_5.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_5.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Artistic License 1.0 w/clause 8 Artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_5.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_5.yml deleted file mode 100644 index 049f0d962a1..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_6.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_6.RULE index 6905c36a3be..a7d50cc8771 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_6.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_6.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_6.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_6.yml deleted file mode 100644 index 7d53b8c3b63..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_7.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_7.RULE index 6044cbea4a5..358179da875 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_7.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_7.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Artistic License 1.0 w/clause 8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_7.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_7.yml deleted file mode 100644 index 7d53b8c3b63..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_8.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_8.RULE index acf9d095116..73b84d8538f 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_8.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_8.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_8.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_8.yml deleted file mode 100644 index 7d53b8c3b63..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_9.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_9.RULE index 5381c84a492..940b8a77ac9 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_9.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_9.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Artistic-1.0-cl8 +--- + https://licenses.nuget.org/Artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_9.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_9.yml deleted file mode 100644 index 19956ae47b0..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Artistic-1.0-cl8 diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_url_1.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_url_1.RULE index 80d1291f485..8aebd36bbf5 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_url_1.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/artistic-1.0-cl8 +--- + https://spdx.org/licenses/artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_url_1.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_url_1.yml deleted file mode 100644 index c35e858da27..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/artistic-1.0-cl8 diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_url_2.RULE b/src/licensedcode/data/rules/artistic-1.0-cl8_url_2.RULE index d389af02219..9af40f5990c 100644 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_url_2.RULE +++ b/src/licensedcode/data/rules/artistic-1.0-cl8_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/artistic-1.0-cl8.html +--- + https://spdx.org/licenses/artistic-1.0-cl8.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0-cl8_url_2.yml b/src/licensedcode/data/rules/artistic-1.0-cl8_url_2.yml deleted file mode 100644 index e3f2ef95332..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0-cl8_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/artistic-1.0-cl8.html diff --git a/src/licensedcode/data/rules/artistic-1.0.RULE b/src/licensedcode/data/rules/artistic-1.0.RULE index 70cfa8a8215..b5d918cdc73 100644 --- a/src/licensedcode/data/rules/artistic-1.0.RULE +++ b/src/licensedcode/data/rules/artistic-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.perl.com/pub/a/language/misc/Artistic.html +--- + http://www.perl.com/pub/a/language/misc/Artistic.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0.SPDX.RULE b/src/licensedcode/data/rules/artistic-1.0.SPDX.RULE index a8cccda2b9d..cf8fd4a842b 100644 --- a/src/licensedcode/data/rules/artistic-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/artistic-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: artistic-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://ftp.uu.net/ +--- + The Artistic License Preamble diff --git a/src/licensedcode/data/rules/artistic-1.0.SPDX.yml b/src/licensedcode/data/rules/artistic-1.0.SPDX.yml deleted file mode 100644 index 7be54345742..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://ftp.uu.net/ diff --git a/src/licensedcode/data/rules/artistic-1.0.yml b/src/licensedcode/data/rules/artistic-1.0.yml deleted file mode 100644 index c88c181ef91..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.perl.com/pub/a/language/misc/Artistic.html diff --git a/src/licensedcode/data/rules/artistic-1.0_1.RULE b/src/licensedcode/data/rules/artistic-1.0_1.RULE index e97043a698c..12d1c3063f7 100644 --- a/src/licensedcode/data/rules/artistic-1.0_1.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_1.RULE @@ -1,5 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +relevance: 100 +--- + The Artistic License 1.0 --- This is free software, licensed under: - The Artistic License 1.0 - \ No newline at end of file + The Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_1.yml b/src/licensedcode/data/rules/artistic-1.0_1.yml deleted file mode 100644 index ac0366b7d99..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_10.RULE b/src/licensedcode/data/rules/artistic-1.0_10.RULE index 47cd2f25b52..76cdd78960f 100644 --- a/src/licensedcode/data/rules/artistic-1.0_10.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_10.RULE @@ -1,7 +1,14 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/artistic-license.html +--- + * This software may be copied only under the terms of the * Artistic License, which can be found in the project documentation * and at http://www.opensource.org/licenses/artistic-license.html. * * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_10.yml b/src/licensedcode/data/rules/artistic-1.0_10.yml deleted file mode 100644 index 7fd4c27e5f4..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/artistic-license.html diff --git a/src/licensedcode/data/rules/artistic-1.0_11.RULE b/src/licensedcode/data/rules/artistic-1.0_11.RULE index 0a490832e67..b0328be4c86 100644 --- a/src/licensedcode/data/rules/artistic-1.0_11.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 90 +--- + the "Artistic License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_11.yml b/src/licensedcode/data/rules/artistic-1.0_11.yml deleted file mode 100644 index 2e64dc8c23a..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/artistic-1.0_12.RULE b/src/licensedcode/data/rules/artistic-1.0_12.RULE index 6187a7522bb..6ddfa70a217 100644 --- a/src/licensedcode/data/rules/artistic-1.0_12.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +minimum_coverage: 20 +ignorable_urls: + - http://www.opensource.org/licenses/artistic-license.html +--- + * This software may be copied only under the terms of the * Artistic License, which can be found in the project documentation - * and at http://www.opensource.org/licenses/artistic-license.html. + * and at http://www.opensource.org/licenses/artistic-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_12.yml b/src/licensedcode/data/rules/artistic-1.0_12.yml deleted file mode 100644 index d92dad2989d..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -minimum_coverage: 20 -ignorable_urls: - - http://www.opensource.org/licenses/artistic-license.html diff --git a/src/licensedcode/data/rules/artistic-1.0_13.RULE b/src/licensedcode/data/rules/artistic-1.0_13.RULE index 6b9c5026d63..3f7624cee8e 100644 --- a/src/licensedcode/data/rules/artistic-1.0_13.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +relevance: 100 +--- + under The Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_13.yml b/src/licensedcode/data/rules/artistic-1.0_13.yml deleted file mode 100644 index ac0366b7d99..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_14.RULE b/src/licensedcode/data/rules/artistic-1.0_14.RULE index ed415f859bb..473c944616f 100644 --- a/src/licensedcode/data/rules/artistic-1.0_14.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +relevance: 100 +notes: Seen in dist +--- + This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, a copy of which can be found with this package. diff --git a/src/licensedcode/data/rules/artistic-1.0_14.yml b/src/licensedcode/data/rules/artistic-1.0_14.yml deleted file mode 100644 index 6d05f8509ce..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -relevance: 100 -notes: Seen in dist diff --git a/src/licensedcode/data/rules/artistic-1.0_15.RULE b/src/licensedcode/data/rules/artistic-1.0_15.RULE index 28f5013c10c..5b8e4bd527e 100644 --- a/src/licensedcode/data/rules/artistic-1.0_15.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Artistic License. See Artistic License for DisplayTag Library . \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_15.yml b/src/licensedcode/data/rules/artistic-1.0_15.yml deleted file mode 100644 index ac0366b7d99..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_16.RULE b/src/licensedcode/data/rules/artistic-1.0_16.RULE index 33de01b4ef9..3cc3cac8445 100644 --- a/src/licensedcode/data/rules/artistic-1.0_16.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +--- + Artistic License for DisplayTag Library . \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_16.yml b/src/licensedcode/data/rules/artistic-1.0_16.yml deleted file mode 100644 index 7c8b3d9d0e3..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_17.RULE b/src/licensedcode/data/rules/artistic-1.0_17.RULE index a564b50a375..2c3955cc225 100644 --- a/src/licensedcode/data/rules/artistic-1.0_17.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_17.RULE @@ -1 +1,6 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +--- + Artistic-1.0 Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_17.yml b/src/licensedcode/data/rules/artistic-1.0_17.yml deleted file mode 100644 index dcae75bbf8e..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/artistic-1.0_18.RULE b/src/licensedcode/data/rules/artistic-1.0_18.RULE index 927af53adc3..0bbaeb18650 100644 --- a/src/licensedcode/data/rules/artistic-1.0_18.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_18.yml b/src/licensedcode/data/rules/artistic-1.0_18.yml deleted file mode 100644 index 25c03b3fc80..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0_19.RULE b/src/licensedcode/data/rules/artistic-1.0_19.RULE index d2087cf4daf..6d38c6f854d 100644 --- a/src/licensedcode/data/rules/artistic-1.0_19.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_19.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Artistic License 1.0 Artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_19.yml b/src/licensedcode/data/rules/artistic-1.0_19.yml deleted file mode 100644 index 25c03b3fc80..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0_2.RULE b/src/licensedcode/data/rules/artistic-1.0_2.RULE index 378d0c0fefa..f3061f99e58 100644 --- a/src/licensedcode/data/rules/artistic-1.0_2.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +--- + Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_2.yml b/src/licensedcode/data/rules/artistic-1.0_2.yml deleted file mode 100644 index 7c8b3d9d0e3..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_20.RULE b/src/licensedcode/data/rules/artistic-1.0_20.RULE index 40343d18b48..ff710870ca9 100644 --- a/src/licensedcode/data/rules/artistic-1.0_20.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_20.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_20.yml b/src/licensedcode/data/rules/artistic-1.0_20.yml deleted file mode 100644 index eca5e56b3e0..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0_21.RULE b/src/licensedcode/data/rules/artistic-1.0_21.RULE index 3e3d9cdbf9a..b0f50733ceb 100644 --- a/src/licensedcode/data/rules/artistic-1.0_21.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_21.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_21.yml b/src/licensedcode/data/rules/artistic-1.0_21.yml deleted file mode 100644 index eca5e56b3e0..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0_22.RULE b/src/licensedcode/data/rules/artistic-1.0_22.RULE index a5bc77f8f37..173f0e2fb99 100644 --- a/src/licensedcode/data/rules/artistic-1.0_22.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_22.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_22.yml b/src/licensedcode/data/rules/artistic-1.0_22.yml deleted file mode 100644 index eca5e56b3e0..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-1.0_23.RULE b/src/licensedcode/data/rules/artistic-1.0_23.RULE index f288bcfa207..e4c2b687f1f 100644 --- a/src/licensedcode/data/rules/artistic-1.0_23.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Artistic-1.0 +--- + https://licenses.nuget.org/Artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_23.yml b/src/licensedcode/data/rules/artistic-1.0_23.yml deleted file mode 100644 index 9f0c27511e4..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Artistic-1.0 diff --git a/src/licensedcode/data/rules/artistic-1.0_24.RULE b/src/licensedcode/data/rules/artistic-1.0_24.RULE index 70fb52595f9..daf605643de 100644 --- a/src/licensedcode/data/rules/artistic-1.0_24.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_24.yml b/src/licensedcode/data/rules/artistic-1.0_24.yml deleted file mode 100644 index 7c8b3d9d0e3..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_25.RULE b/src/licensedcode/data/rules/artistic-1.0_25.RULE index 02668339a19..904c72763e6 100644 --- a/src/licensedcode/data/rules/artistic-1.0_25.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Artistic-1.0 +--- + {{Artistic-1.0}} https://spdx.org/licenses/Artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_25.yml b/src/licensedcode/data/rules/artistic-1.0_25.yml deleted file mode 100644 index 353ea93d669..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Artistic-1.0 diff --git a/src/licensedcode/data/rules/artistic-1.0_26.RULE b/src/licensedcode/data/rules/artistic-1.0_26.RULE index d9daa42630b..1c62787a32e 100644 --- a/src/licensedcode/data/rules/artistic-1.0_26.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_26.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Artistic-1.0 +--- + LICENSE {{Artistic-1.0}} https://spdx.org/licenses/Artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_26.yml b/src/licensedcode/data/rules/artistic-1.0_26.yml deleted file mode 100644 index 353ea93d669..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Artistic-1.0 diff --git a/src/licensedcode/data/rules/artistic-1.0_3.RULE b/src/licensedcode/data/rules/artistic-1.0_3.RULE index 8f2f6789032..ca59ffbd5f3 100644 --- a/src/licensedcode/data/rules/artistic-1.0_3.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/artistic-license-1.0 +--- + http://opensource.org/licenses/artistic-license-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_3.yml b/src/licensedcode/data/rules/artistic-1.0_3.yml deleted file mode 100644 index 0becc43e3c6..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/artistic-license-1.0 diff --git a/src/licensedcode/data/rules/artistic-1.0_4.RULE b/src/licensedcode/data/rules/artistic-1.0_4.RULE index c2f750f0377..dd113e61f91 100644 --- a/src/licensedcode/data/rules/artistic-1.0_4.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: artistic-1.0 +is_license_text: yes +notes: License text without warranty disclaimer +ignorable_urls: + - http://ftp.uu.net/ +--- + Preamble The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. @@ -40,4 +48,4 @@ d) make other distribution arrangements with the Copyright Holder. 7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. -8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. +8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_4.yml b/src/licensedcode/data/rules/artistic-1.0_4.yml deleted file mode 100644 index 8ff70dbf6c7..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_text: yes -notes: License text without warranty disclaimer -ignorable_urls: - - http://ftp.uu.net/ diff --git a/src/licensedcode/data/rules/artistic-1.0_5.RULE b/src/licensedcode/data/rules/artistic-1.0_5.RULE index f4bd50fb010..6cbaea27bb8 100644 --- a/src/licensedcode/data/rules/artistic-1.0_5.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/artistic-license-1.0 +--- + http://www.opensource.org/licenses/artistic-license-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_5.yml b/src/licensedcode/data/rules/artistic-1.0_5.yml deleted file mode 100644 index d42453cea3c..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/artistic-license-1.0 diff --git a/src/licensedcode/data/rules/artistic-1.0_6.RULE b/src/licensedcode/data/rules/artistic-1.0_6.RULE index 59e80c501d0..b9d6da67b5d 100644 --- a/src/licensedcode/data/rules/artistic-1.0_6.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +ignorable_urls: + - http://ftp.uu.net/ +--- + The Artistic License Preamble diff --git a/src/licensedcode/data/rules/artistic-1.0_6.yml b/src/licensedcode/data/rules/artistic-1.0_6.yml deleted file mode 100644 index 56586c217ec..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -ignorable_urls: - - http://ftp.uu.net/ diff --git a/src/licensedcode/data/rules/artistic-1.0_7.RULE b/src/licensedcode/data/rules/artistic-1.0_7.RULE index 6d5519f9526..a8bd7aa8bf1 100644 --- a/src/licensedcode/data/rules/artistic-1.0_7.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_7.RULE @@ -1,4 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +relevance: 100 +--- + This is free software, licensed under: - The Artistic License 1.0 - \ No newline at end of file + The Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_7.yml b/src/licensedcode/data/rules/artistic-1.0_7.yml deleted file mode 100644 index ac0366b7d99..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_8.RULE b/src/licensedcode/data/rules/artistic-1.0_8.RULE index 3f0c6ab813f..63b1c2d81c6 100644 --- a/src/licensedcode/data/rules/artistic-1.0_8.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_notice: yes +relevance: 100 +--- + The Artistic License 1.0 This software is diff --git a/src/licensedcode/data/rules/artistic-1.0_8.yml b/src/licensedcode/data/rules/artistic-1.0_8.yml deleted file mode 100644 index ac0366b7d99..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_9.RULE b/src/licensedcode/data/rules/artistic-1.0_9.RULE index 1e5b4a7f134..038b2d8e252 100644 --- a/src/licensedcode/data/rules/artistic-1.0_9.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +--- + The Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_9.yml b/src/licensedcode/data/rules/artistic-1.0_9.yml deleted file mode 100644 index 7c8b3d9d0e3..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-1.0_mahon.RULE b/src/licensedcode/data/rules/artistic-1.0_mahon.RULE index d6c7486f9d6..3fc0dded258 100644 --- a/src/licensedcode/data/rules/artistic-1.0_mahon.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_mahon.RULE @@ -1,3 +1,14 @@ +--- +license_expression: artistic-1.0 +is_license_text: yes +relevance: 95 +notes: this is a rare variant of the artistic 1.0 with extra woring in Clause 7 "7. C subroutines + supplied by you and linked into this Package in order to emulate subroutines and variables + of the language defined by this Package shall not be considered part of this Package, but + are the equivalent of input as in Paragraph 6, provided these subroutines do not change + the language in any way that would cause it to fail the regression tests for the language." +--- + The "Artistic License" Preamble diff --git a/src/licensedcode/data/rules/artistic-1.0_mahon.yml b/src/licensedcode/data/rules/artistic-1.0_mahon.yml deleted file mode 100644 index 1ec26091b2a..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_mahon.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: artistic-1.0 -is_license_text: yes -relevance: 95 -notes: this is a rare variant of the artistic 1.0 with extra woring in Clause 7 "7. C subroutines - supplied by you and linked into this Package in order to emulate subroutines and variables - of the language defined by this Package shall not be considered part of this Package, but - are the equivalent of input as in Paragraph 6, provided these subroutines do not change - the language in any way that would cause it to fail the regression tests for the language." diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_1.RULE index c4bf415db7f..4fdf30b312d 100644 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: artistic-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL + - /usr/share/common-licenses/Artistic +--- + License: This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. Perl is distributed under licenses: diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index e0a888bc938..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL - - /usr/share/common-licenses/Artistic diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_2.RULE index 1c3de9a337e..7b7dbd1806a 100644 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + License: This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. Perl is distributed under licenses: diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 48b32ecacd9..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_3.RULE index 2044513f772..a47e67173ed 100644 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: artistic-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c +--- + /* This package is free software; you can use, modify and redistribute */ /* it under the same terms as Perl itself, i.e., under the terms of */ /* the "Artistic License" or the "GNU General Public License". */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_3.yml deleted file mode 100644 index 574f7116003..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE index df8174b1578..c87ba821d2d 100644 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (artistic-1.0 OR gpl-1.0-plus) AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c +--- + /* LICENSE: */ /*****************************************************************************/ /* This package is free software; you can use, modify and redistribute */ diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index cf61916709d..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (artistic-1.0 OR gpl-1.0-plus) AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE index 3b2e7baf499..a2bf696b6c3 100644 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (artistic-1.0 OR gpl-1.0-plus) AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c +--- + /* This package is free software; you can use, modify and redistribute */ /* it under the same terms as Perl itself, i.e., under the terms of */ /* the "Artistic License" or the "GNU General Public License". */ diff --git a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index cf61916709d..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_or_gpl-1.0-plus_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (artistic-1.0 OR gpl-1.0-plus) AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c diff --git a/src/licensedcode/data/rules/artistic-1.0_url_1.RULE b/src/licensedcode/data/rules/artistic-1.0_url_1.RULE index 585a0dc2cad..40e1ad53518 100644 --- a/src/licensedcode/data/rules/artistic-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/artistic-1.0 +--- + https://spdx.org/licenses/artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_url_1.yml b/src/licensedcode/data/rules/artistic-1.0_url_1.yml deleted file mode 100644 index f4b6dffd299..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/artistic-1.0 diff --git a/src/licensedcode/data/rules/artistic-1.0_url_2.RULE b/src/licensedcode/data/rules/artistic-1.0_url_2.RULE index e0c7a2a563c..4bc4be51bcb 100644 --- a/src/licensedcode/data/rules/artistic-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/artistic-1.0.html +--- + https://spdx.org/licenses/artistic-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_url_2.yml b/src/licensedcode/data/rules/artistic-1.0_url_2.yml deleted file mode 100644 index ce19a9211e8..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/artistic-1.0.html diff --git a/src/licensedcode/data/rules/artistic-1.0_url_glc_66.RULE b/src/licensedcode/data/rules/artistic-1.0_url_glc_66.RULE index 0e794ead564..67cb6554f3d 100644 --- a/src/licensedcode/data/rules/artistic-1.0_url_glc_66.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_url_glc_66.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/artistic-1.0 +--- + http://opensource.org/licenses/artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_url_glc_66.yml b/src/licensedcode/data/rules/artistic-1.0_url_glc_66.yml deleted file mode 100644 index 926d637e9fb..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_url_glc_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/artistic-1.0 diff --git a/src/licensedcode/data/rules/artistic-1.0_url_glc_67.RULE b/src/licensedcode/data/rules/artistic-1.0_url_glc_67.RULE index 6bb6baecb9a..4e4a99484e6 100644 --- a/src/licensedcode/data/rules/artistic-1.0_url_glc_67.RULE +++ b/src/licensedcode/data/rules/artistic-1.0_url_glc_67.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/artistic-1.0 +--- + https://opensource.org/licenses/artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-1.0_url_glc_67.yml b/src/licensedcode/data/rules/artistic-1.0_url_glc_67.yml deleted file mode 100644 index 4df8188d876..00000000000 --- a/src/licensedcode/data/rules/artistic-1.0_url_glc_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/artistic-1.0 diff --git a/src/licensedcode/data/rules/artistic-2.0.RULE b/src/licensedcode/data/rules/artistic-2.0.RULE index ecaa74e84bf..3f0feae106a 100644 --- a/src/licensedcode/data/rules/artistic-2.0.RULE +++ b/src/licensedcode/data/rules/artistic-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt +--- + http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0.yml b/src/licensedcode/data/rules/artistic-2.0.yml deleted file mode 100644 index aa4016c227b..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.perlfoundation.org/attachment/legal/artistic-2_0.txt diff --git a/src/licensedcode/data/rules/artistic-2.0_1.RULE b/src/licensedcode/data/rules/artistic-2.0_1.RULE index 22e1c3ee5dd..36f0ec7b990 100644 --- a/src/licensedcode/data/rules/artistic-2.0_1.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/artistic-license-2.0.php +--- + http://www.opensource.org/licenses/artistic-license-2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_1.yml b/src/licensedcode/data/rules/artistic-2.0_1.yml deleted file mode 100644 index 3cce2d30472..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/artistic-license-2.0.php diff --git a/src/licensedcode/data/rules/artistic-2.0_10.RULE b/src/licensedcode/data/rules/artistic-2.0_10.RULE index a07dc482084..4a70a825876 100644 --- a/src/licensedcode/data/rules/artistic-2.0_10.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +--- + This is free software and you may distribute it under the same terms as perl itself. There is no warranty. diff --git a/src/licensedcode/data/rules/artistic-2.0_10.yml b/src/licensedcode/data/rules/artistic-2.0_10.yml deleted file mode 100644 index 64b4bd544f5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-2.0_11.RULE b/src/licensedcode/data/rules/artistic-2.0_11.RULE index 90de8cf737f..57ba35675a6 100644 --- a/src/licensedcode/data/rules/artistic-2.0_11.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/artistic-license.html +--- + http://www.opensource.org/licenses/artistic-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_11.yml b/src/licensedcode/data/rules/artistic-2.0_11.yml deleted file mode 100644 index a04d644911e..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/artistic-license.html diff --git a/src/licensedcode/data/rules/artistic-2.0_12.RULE b/src/licensedcode/data/rules/artistic-2.0_12.RULE index 61092ee5b3e..050886a03ba 100644 --- a/src/licensedcode/data/rules/artistic-2.0_12.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_text: yes +ignorable_authors: + - The Perl Foundation +--- + Artistic License 2.0 @@ -70,4 +77,4 @@ General Provisions (13) This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed. -(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_12.yml b/src/licensedcode/data/rules/artistic-2.0_12.yml deleted file mode 100644 index 485e36b90d9..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-2.0 -is_license_text: yes -ignorable_authors: - - The Perl Foundation diff --git a/src/licensedcode/data/rules/artistic-2.0_13.RULE b/src/licensedcode/data/rules/artistic-2.0_13.RULE index fb9ca3f03b6..1554cb082b3 100644 --- a/src/licensedcode/data/rules/artistic-2.0_13.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5 or, at your option, -any later version of Perl you may have available (perl and glue code). +any later version of Perl you may have available (perl and glue code). \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_13.yml b/src/licensedcode/data/rules/artistic-2.0_13.yml deleted file mode 100644 index 64b4bd544f5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-2.0_14.RULE b/src/licensedcode/data/rules/artistic-2.0_14.RULE index 60eba9c9ea8..831056e42af 100644 --- a/src/licensedcode/data/rules/artistic-2.0_14.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +--- + This project is licensed under the Artistic License 2.0, full text below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_14.yml b/src/licensedcode/data/rules/artistic-2.0_14.yml deleted file mode 100644 index a5ae1784daa..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_15.RULE b/src/licensedcode/data/rules/artistic-2.0_15.RULE index e002f7c045f..19464678013 100644 --- a/src/licensedcode/data/rules/artistic-2.0_15.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_15.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + You may copy and distribute this program under the -same terms as Perl iteself. +same terms as Perl iteself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_15.yml b/src/licensedcode/data/rules/artistic-2.0_15.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_16.RULE b/src/licensedcode/data/rules/artistic-2.0_16.RULE index 261dabd1a50..2f568c8963a 100644 --- a/src/licensedcode/data/rules/artistic-2.0_16.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_16.RULE @@ -1,3 +1,14 @@ +--- +license_expression: artistic-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000-2006, The Perl Foundation +ignorable_holders: + - The Perl Foundation +ignorable_authors: + - The Perl Foundation +--- + This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) diff --git a/src/licensedcode/data/rules/artistic-2.0_16.yml b/src/licensedcode/data/rules/artistic-2.0_16.yml deleted file mode 100644 index 717ff1fc543..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_16.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: artistic-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000-2006, The Perl Foundation -ignorable_holders: - - The Perl Foundation -ignorable_authors: - - The Perl Foundation diff --git a/src/licensedcode/data/rules/artistic-2.0_17.RULE b/src/licensedcode/data/rules/artistic-2.0_17.RULE index 0552a1c5cfa..e59fc83fa58 100644 --- a/src/licensedcode/data/rules/artistic-2.0_17.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + You may distribute, use and modify this module under the terms of the Artistic License 2.0 as published by The Perl Foundation. See the file for -details. +details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_17.yml b/src/licensedcode/data/rules/artistic-2.0_17.yml deleted file mode 100644 index 5b1c7f0830c..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/artistic-2.0_18.RULE b/src/licensedcode/data/rules/artistic-2.0_18.RULE index 19f2c206eac..d68b5160603 100644 --- a/src/licensedcode/data/rules/artistic-2.0_18.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +--- + Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_18.yml b/src/licensedcode/data/rules/artistic-2.0_18.yml deleted file mode 100644 index a5ae1784daa..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_19.RULE b/src/licensedcode/data/rules/artistic-2.0_19.RULE index 962bf6183d9..48ee89a682c 100644 --- a/src/licensedcode/data/rules/artistic-2.0_19.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_19.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + This is free software, licensed under: The Artistic License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_19.yml b/src/licensedcode/data/rules/artistic-2.0_19.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_2.RULE b/src/licensedcode/data/rules/artistic-2.0_2.RULE index b80821adf79..7adcea0c80e 100644 --- a/src/licensedcode/data/rules/artistic-2.0_2.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.perlfoundation.org/artistic-2-0-notes +--- + http://www.perlfoundation.org/artistic-2-0-notes \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_2.yml b/src/licensedcode/data/rules/artistic-2.0_2.yml deleted file mode 100644 index 6754f014614..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.perlfoundation.org/artistic-2-0-notes diff --git a/src/licensedcode/data/rules/artistic-2.0_20.RULE b/src/licensedcode/data/rules/artistic-2.0_20.RULE index 2d7cb79b311..f7eed793e99 100644 --- a/src/licensedcode/data/rules/artistic-2.0_20.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/artistic +--- + https://choosealicense.com/licenses/artistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_20.yml b/src/licensedcode/data/rules/artistic-2.0_20.yml deleted file mode 100644 index f2a96895b8f..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/artistic diff --git a/src/licensedcode/data/rules/artistic-2.0_21.RULE b/src/licensedcode/data/rules/artistic-2.0_21.RULE index 403fc765349..a9d6f9266e3 100644 --- a/src/licensedcode/data/rules/artistic-2.0_21.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_21.RULE @@ -1,2 +1,9 @@ -http://choosealicense.com/licenses/artistic +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/artistic +--- +http://choosealicense.com/licenses/artistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_21.yml b/src/licensedcode/data/rules/artistic-2.0_21.yml deleted file mode 100644 index 7fd4c8326f1..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/artistic diff --git a/src/licensedcode/data/rules/artistic-2.0_22.RULE b/src/licensedcode/data/rules/artistic-2.0_22.RULE index 2f603853eec..2d865ebd510 100644 --- a/src/licensedcode/data/rules/artistic-2.0_22.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/artistic-2.0 +--- + https://choosealicense.com/licenses/artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_22.yml b/src/licensedcode/data/rules/artistic-2.0_22.yml deleted file mode 100644 index 72d3ba4d39a..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_23.RULE b/src/licensedcode/data/rules/artistic-2.0_23.RULE index 3289e507b6d..bdf7ae00273 100644 --- a/src/licensedcode/data/rules/artistic-2.0_23.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/artistic-2.0 +--- + http://choosealicense.com/licenses/artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_23.yml b/src/licensedcode/data/rules/artistic-2.0_23.yml deleted file mode 100644 index 816618cb226..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_24.RULE b/src/licensedcode/data/rules/artistic-2.0_24.RULE index ec4528d5e29..e5f80ad9862 100644 --- a/src/licensedcode/data/rules/artistic-2.0_24.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 90 +--- + # Released under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_24.yml b/src/licensedcode/data/rules/artistic-2.0_24.yml deleted file mode 100644 index 96aa11cc29a..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/artistic-2.0_25.RULE b/src/licensedcode/data/rules/artistic-2.0_25.RULE index d5510ce64c3..e5699a551bb 100644 --- a/src/licensedcode/data/rules/artistic-2.0_25.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_25.RULE @@ -1 +1,7 @@ - The distribution may be copied and redistributed under the same terms as Perl itself (this is by far the most common licensing option for modules on CPAN). This is a dual license, in which the user may choose between either the GPL or the Artistic license. +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 90 +--- + + The distribution may be copied and redistributed under the same terms as Perl itself (this is by far the most common licensing option for modules on CPAN). This is a dual license, in which the user may choose between either the GPL or the Artistic license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_25.yml b/src/licensedcode/data/rules/artistic-2.0_25.yml deleted file mode 100644 index 96aa11cc29a..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/artistic-2.0_26.RULE b/src/licensedcode/data/rules/artistic-2.0_26.RULE index 6591dae8690..6828b845573 100644 --- a/src/licensedcode/data/rules/artistic-2.0_26.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_26.RULE @@ -1,2 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Artistic +--- + On Debian systems, the text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_26.yml b/src/licensedcode/data/rules/artistic-2.0_26.yml deleted file mode 100644 index 3cd4d0df37e..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Artistic diff --git a/src/licensedcode/data/rules/artistic-2.0_27.RULE b/src/licensedcode/data/rules/artistic-2.0_27.RULE index e0abc2a949d..6ccdf99a35a 100644 --- a/src/licensedcode/data/rules/artistic-2.0_27.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 90 +--- + The distribution is licensed under the Artistic License, as specified by the Artistic file in the standard Perl distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_27.yml b/src/licensedcode/data/rules/artistic-2.0_27.yml deleted file mode 100644 index 96aa11cc29a..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/artistic-2.0_28.RULE b/src/licensedcode/data/rules/artistic-2.0_28.RULE index 7966230ad8f..8a067132fe4 100644 --- a/src/licensedcode/data/rules/artistic-2.0_28.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_28.RULE @@ -1 +1,8 @@ -license artistic_2 +--- +license_expression: artistic-2.0 +is_license_tag: yes +relevance: 90 +notes: tag as documented in the Module-Build pod +--- + +license artistic_2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_28.yml b/src/licensedcode/data/rules/artistic-2.0_28.yml deleted file mode 100644 index 60b44e5f295..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-2.0 -is_license_tag: yes -relevance: 90 -notes: tag as documented in the Module-Build pod diff --git a/src/licensedcode/data/rules/artistic-2.0_29.RULE b/src/licensedcode/data/rules/artistic-2.0_29.RULE index 281a468aad0..73853e90cdf 100644 --- a/src/licensedcode/data/rules/artistic-2.0_29.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_29.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://opensource.org/licenses/artistic-license-2.0.php +--- + The distribution is licensed under the Artistic 2.0 License (http://opensource.org/licenses/artistic-license-2.0.php.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_29.yml b/src/licensedcode/data/rules/artistic-2.0_29.yml deleted file mode 100644 index 4f956ea7398..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://opensource.org/licenses/artistic-license-2.0.php diff --git a/src/licensedcode/data/rules/artistic-2.0_3.RULE b/src/licensedcode/data/rules/artistic-2.0_3.RULE index df9833d389a..272210d5daa 100644 --- a/src/licensedcode/data/rules/artistic-2.0_3.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_3.RULE @@ -1 +1,8 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +notes: Short "Artistic License" +--- + the "Artistic License" which comes with Perl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_3.yml b/src/licensedcode/data/rules/artistic-2.0_3.yml deleted file mode 100644 index 15a64406380..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -notes: Short "Artistic License" diff --git a/src/licensedcode/data/rules/artistic-2.0_30.RULE b/src/licensedcode/data/rules/artistic-2.0_30.RULE index ac27fce6969..2207d8feccd 100644 --- a/src/licensedcode/data/rules/artistic-2.0_30.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_30.RULE @@ -1 +1,7 @@ -This document is available under the same terms as Perl itself. \ No newline at end of file +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + +This document is available under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_30.yml b/src/licensedcode/data/rules/artistic-2.0_30.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_31.RULE b/src/licensedcode/data/rules/artistic-2.0_31.RULE index ce432019bf9..28d30ab21ad 100644 --- a/src/licensedcode/data/rules/artistic-2.0_31.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_31.yml b/src/licensedcode/data/rules/artistic-2.0_31.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_32.RULE b/src/licensedcode/data/rules/artistic-2.0_32.RULE index 79067342e9b..67bc7e73e61 100644 --- a/src/licensedcode/data/rules/artistic-2.0_32.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed on the terms of The Artistic License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_32.yml b/src/licensedcode/data/rules/artistic-2.0_32.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_33.RULE b/src/licensedcode/data/rules/artistic-2.0_33.RULE index a2e5f121f05..114827077d2 100644 --- a/src/licensedcode/data/rules/artistic-2.0_33.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +--- + The Artistic License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_33.yml b/src/licensedcode/data/rules/artistic-2.0_33.yml deleted file mode 100644 index a5ae1784daa..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_34.RULE b/src/licensedcode/data/rules/artistic-2.0_34.RULE index 531040e5039..116bdcb8d2d 100644 --- a/src/licensedcode/data/rules/artistic-2.0_34.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_34.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/Artistic-2.0 +--- + `Artistic-2.0` - [Artistic License Version 2.0](http://opensource.org/licenses/Artistic-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_34.yml b/src/licensedcode/data/rules/artistic-2.0_34.yml deleted file mode 100644 index cd8bacd72d6..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/Artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_35.RULE b/src/licensedcode/data/rules/artistic-2.0_35.RULE index 0daade335c2..81612f1f14d 100644 --- a/src/licensedcode/data/rules/artistic-2.0_35.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + under The Artistic License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_35.yml b/src/licensedcode/data/rules/artistic-2.0_35.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_36.RULE b/src/licensedcode/data/rules/artistic-2.0_36.RULE index 5690f7a447e..cee6f18876f 100644 --- a/src/licensedcode/data/rules/artistic-2.0_36.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_36.RULE @@ -1,3 +1,16 @@ +--- +license_expression: artistic-2.0 +is_license_text: yes +relevance: 100 +notes: text without title +ignorable_copyrights: + - Copyright (c) 2000-2006, The Perl Foundation +ignorable_holders: + - The Perl Foundation +ignorable_authors: + - The Perl Foundation +--- + Copyright (c) 2000-2006, The Perl Foundation. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff --git a/src/licensedcode/data/rules/artistic-2.0_36.yml b/src/licensedcode/data/rules/artistic-2.0_36.yml deleted file mode 100644 index 1947400b888..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_36.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: artistic-2.0 -is_license_text: yes -relevance: 100 -notes: text without title -ignorable_copyrights: - - Copyright (c) 2000-2006, The Perl Foundation -ignorable_holders: - - The Perl Foundation -ignorable_authors: - - The Perl Foundation diff --git a/src/licensedcode/data/rules/artistic-2.0_37.RULE b/src/licensedcode/data/rules/artistic-2.0_37.RULE index 2923a6d6f30..29cd63d89f0 100644 --- a/src/licensedcode/data/rules/artistic-2.0_37.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_37.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: Artistic Comment: This program is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/artistic-2.0_37.yml b/src/licensedcode/data/rules/artistic-2.0_37.yml deleted file mode 100644 index 2e5aeccc68e..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/artistic-2.0_38.RULE b/src/licensedcode/data/rules/artistic-2.0_38.RULE index ad592ce60e5..5d32398e385 100644 --- a/src/licensedcode/data/rules/artistic-2.0_38.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_38.RULE @@ -1,2 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the the Artistic License (2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_38.yml b/src/licensedcode/data/rules/artistic-2.0_38.yml deleted file mode 100644 index 2e5aeccc68e..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_38.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/artistic-2.0_39.RULE b/src/licensedcode/data/rules/artistic-2.0_39.RULE index e52f933e83b..aee62e06f92 100644 --- a/src/licensedcode/data/rules/artistic-2.0_39.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_39.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +--- + This software may be distributed under the terms of version 2 of the Artistic License which may be found in the source distribution. It is provided "as is" without express diff --git a/src/licensedcode/data/rules/artistic-2.0_39.yml b/src/licensedcode/data/rules/artistic-2.0_39.yml deleted file mode 100644 index 64b4bd544f5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-2.0_4.RULE b/src/licensedcode/data/rules/artistic-2.0_4.RULE index 6889e3f682b..15674162755 100644 --- a/src/licensedcode/data/rules/artistic-2.0_4.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_4.RULE @@ -1,5 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +--- + License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. On Debian GNU/Linux systems, the complete text of the Artistic License - can be found in /usr/share/common-licenses/Artistic + can be found in /usr/share/common-licenses/Artistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_4.yml b/src/licensedcode/data/rules/artistic-2.0_4.yml deleted file mode 100644 index 64b4bd544f5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-2.0_40.RULE b/src/licensedcode/data/rules/artistic-2.0_40.RULE index c30d45f5780..c4b1c0b657b 100644 --- a/src/licensedcode/data/rules/artistic-2.0_40.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_40.RULE @@ -1,2 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Artistic +--- + On Debian GNU/Linux systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_40.yml b/src/licensedcode/data/rules/artistic-2.0_40.yml deleted file mode 100644 index 3cd4d0df37e..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Artistic diff --git a/src/licensedcode/data/rules/artistic-2.0_41.RULE b/src/licensedcode/data/rules/artistic-2.0_41.RULE index cbfee46a223..3df052bfd41 100644 --- a/src/licensedcode/data/rules/artistic-2.0_41.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + This is free software and you may distribute it under the same terms as perl itself. There is no warranty. diff --git a/src/licensedcode/data/rules/artistic-2.0_41.yml b/src/licensedcode/data/rules/artistic-2.0_41.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_42.RULE b/src/licensedcode/data/rules/artistic-2.0_42.RULE index de4acd3efb6..69c0153f600 100644 --- a/src/licensedcode/data/rules/artistic-2.0_42.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + This is free software and you may distribute it under the same terms as perl itself. There is no warranty. diff --git a/src/licensedcode/data/rules/artistic-2.0_42.yml b/src/licensedcode/data/rules/artistic-2.0_42.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_43.RULE b/src/licensedcode/data/rules/artistic-2.0_43.RULE index 3b9459e24d2..035797cf0f9 100644 --- a/src/licensedcode/data/rules/artistic-2.0_43.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_43.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Artistic License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_43.yml b/src/licensedcode/data/rules/artistic-2.0_43.yml deleted file mode 100644 index 974c18bb9f6..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_43.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-2.0_44.RULE b/src/licensedcode/data/rules/artistic-2.0_44.RULE index 5fc710eee56..8fa2e5ace78 100644 --- a/src/licensedcode/data/rules/artistic-2.0_44.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_44.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Artistic-2.0 Artistic License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_44.yml b/src/licensedcode/data/rules/artistic-2.0_44.yml deleted file mode 100644 index 974c18bb9f6..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_44.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-2.0_45.RULE b/src/licensedcode/data/rules/artistic-2.0_45.RULE index 2270ef2cef5..1ac43ba8086 100644 --- a/src/licensedcode/data/rules/artistic-2.0_45.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_45.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Artistic License 2.0 Artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_45.yml b/src/licensedcode/data/rules/artistic-2.0_45.yml deleted file mode 100644 index 974c18bb9f6..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_45.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-2.0_46.RULE b/src/licensedcode/data/rules/artistic-2.0_46.RULE index cf4a6919792..a77c791d202 100644 --- a/src/licensedcode/data/rules/artistic-2.0_46.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_46.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_46.yml b/src/licensedcode/data/rules/artistic-2.0_46.yml deleted file mode 100644 index 293dfbd154f..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_46.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-2.0_47.RULE b/src/licensedcode/data/rules/artistic-2.0_47.RULE index 9476f9eb77e..9797249fde6 100644 --- a/src/licensedcode/data/rules/artistic-2.0_47.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_47.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Artistic License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_47.yml b/src/licensedcode/data/rules/artistic-2.0_47.yml deleted file mode 100644 index 293dfbd154f..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_47.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-2.0_48.RULE b/src/licensedcode/data/rules/artistic-2.0_48.RULE index 692a472396b..69af52307ef 100644 --- a/src/licensedcode/data/rules/artistic-2.0_48.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_48.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_48.yml b/src/licensedcode/data/rules/artistic-2.0_48.yml deleted file mode 100644 index 293dfbd154f..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_48.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-2.0_49.RULE b/src/licensedcode/data/rules/artistic-2.0_49.RULE index e85b135913e..34e1e5d7998 100644 --- a/src/licensedcode/data/rules/artistic-2.0_49.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_49.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['ARTISTIC', 'Artistic-2.0'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_49.yml b/src/licensedcode/data/rules/artistic-2.0_49.yml deleted file mode 100644 index 31b5a3bfcc0..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_5.RULE b/src/licensedcode/data/rules/artistic-2.0_5.RULE index 5d9689b51c3..c980ec55dbb 100644 --- a/src/licensedcode/data/rules/artistic-2.0_5.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: artistic-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000-2006, The Perl Foundation +ignorable_holders: + - The Perl Foundation +ignorable_authors: + - The Perl Foundation +--- + Artistic License 2.0 Copyright (c) 2000-2006, The Perl Foundation. diff --git a/src/licensedcode/data/rules/artistic-2.0_5.yml b/src/licensedcode/data/rules/artistic-2.0_5.yml deleted file mode 100644 index 717ff1fc543..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: artistic-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000-2006, The Perl Foundation -ignorable_holders: - - The Perl Foundation -ignorable_authors: - - The Perl Foundation diff --git a/src/licensedcode/data/rules/artistic-2.0_50.RULE b/src/licensedcode/data/rules/artistic-2.0_50.RULE index 0d7c3b21d13..fb73fb01133 100644 --- a/src/licensedcode/data/rules/artistic-2.0_50.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 95 +--- + wikipedia.org/wiki/Artistic_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_50.yml b/src/licensedcode/data/rules/artistic-2.0_50.yml deleted file mode 100644 index 79c5f88df1c..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-2.0_51.RULE b/src/licensedcode/data/rules/artistic-2.0_51.RULE index fbf672bfcc8..9c1964f924d 100644 --- a/src/licensedcode/data/rules/artistic-2.0_51.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Artistic-2.0 +--- + https://licenses.nuget.org/Artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_51.yml b/src/licensedcode/data/rules/artistic-2.0_51.yml deleted file mode 100644 index 1dbafcff29e..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_52.RULE b/src/licensedcode/data/rules/artistic-2.0_52.RULE index d1857a3213a..02c531f4e2f 100644 --- a/src/licensedcode/data/rules/artistic-2.0_52.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_52.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_52.yml b/src/licensedcode/data/rules/artistic-2.0_52.yml deleted file mode 100644 index a5ae1784daa..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_53.RULE b/src/licensedcode/data/rules/artistic-2.0_53.RULE index 1c0daaa470c..9b14519f843 100644 --- a/src/licensedcode/data/rules/artistic-2.0_53.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the terms of the Artistic License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_53.yml b/src/licensedcode/data/rules/artistic-2.0_53.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_54.RULE b/src/licensedcode/data/rules/artistic-2.0_54.RULE index 8623fa6b108..ae1b704e6b8 100644 --- a/src/licensedcode/data/rules/artistic-2.0_54.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_54.RULE @@ -1,2 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.perlfoundation.org/artistic-license-20 +--- + Licensed under the {{Artistic License, Version 2.0}} (the "License"); https://www.perlfoundation.org/artistic-license-20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_54.yml b/src/licensedcode/data/rules/artistic-2.0_54.yml deleted file mode 100644 index d3389fe6950..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.perlfoundation.org/artistic-license-20 diff --git a/src/licensedcode/data/rules/artistic-2.0_55.RULE b/src/licensedcode/data/rules/artistic-2.0_55.RULE index 518a6e3be2a..faaf9f9c1e6 100644 --- a/src/licensedcode/data/rules/artistic-2.0_55.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_55.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.perlfoundation.org/artistic-license-20 +--- + https://www.perlfoundation.org/artistic-license-20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_55.yml b/src/licensedcode/data/rules/artistic-2.0_55.yml deleted file mode 100644 index b7edd819d33..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.perlfoundation.org/artistic-license-20 diff --git a/src/licensedcode/data/rules/artistic-2.0_56.RULE b/src/licensedcode/data/rules/artistic-2.0_56.RULE index 9084f43b7ca..a5b705efd67 100644 --- a/src/licensedcode/data/rules/artistic-2.0_56.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_56.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Artistic-2.0 +--- + LICENSE {{Artistic-2.0}} https://spdx.org/licenses/Artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_56.yml b/src/licensedcode/data/rules/artistic-2.0_56.yml deleted file mode 100644 index a5bedf701b6..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_57.RULE b/src/licensedcode/data/rules/artistic-2.0_57.RULE index 6420b0d77e9..676e2067053 100644 --- a/src/licensedcode/data/rules/artistic-2.0_57.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_57.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Artistic-2.0 +--- + {{Artistic-2.0}} https://spdx.org/licenses/Artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_57.yml b/src/licensedcode/data/rules/artistic-2.0_57.yml deleted file mode 100644 index a5bedf701b6..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_58.RULE b/src/licensedcode/data/rules/artistic-2.0_58.RULE index aa21c766440..6d69670fbce 100644 --- a/src/licensedcode/data/rules/artistic-2.0_58.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + npm is released under the Artistic License 2.0, subject to additional terms that are listed below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_58.yml b/src/licensedcode/data/rules/artistic-2.0_58.yml deleted file mode 100644 index 81bca965ca5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_59.RULE b/src/licensedcode/data/rules/artistic-2.0_59.RULE index faa49762257..d8a944df789 100644 --- a/src/licensedcode/data/rules/artistic-2.0_59.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_59.RULE @@ -1 +1,6 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +--- + The text of the npm License follows and the text of the additional terms follows the Artistic License 2.0 terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_59.yml b/src/licensedcode/data/rules/artistic-2.0_59.yml deleted file mode 100644 index 64b4bd544f5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-2.0_6.RULE b/src/licensedcode/data/rules/artistic-2.0_6.RULE index 2036cc416ef..fb25508d286 100644 --- a/src/licensedcode/data/rules/artistic-2.0_6.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/Artistic +--- + On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_6.yml b/src/licensedcode/data/rules/artistic-2.0_6.yml deleted file mode 100644 index 3cd4d0df37e..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/Artistic diff --git a/src/licensedcode/data/rules/artistic-2.0_7.RULE b/src/licensedcode/data/rules/artistic-2.0_7.RULE index 0d1842b9936..4c805177c80 100644 --- a/src/licensedcode/data/rules/artistic-2.0_7.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +notes: http://www.perlfoundation.org/artistic_license_2_0 +ignorable_urls: + - http://www.perlfoundation.org/artistic_license_2_0 +--- + http://www.perlfoundation.org/artistic_license_2_0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_7.yml b/src/licensedcode/data/rules/artistic-2.0_7.yml deleted file mode 100644 index 0297bff0e04..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -notes: http://www.perlfoundation.org/artistic_license_2_0 -ignorable_urls: - - http://www.perlfoundation.org/artistic_license_2_0 diff --git a/src/licensedcode/data/rules/artistic-2.0_8.RULE b/src/licensedcode/data/rules/artistic-2.0_8.RULE index 5c9ac3e97e2..4399687a319 100644 --- a/src/licensedcode/data/rules/artistic-2.0_8.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: artistic-2.0 +is_license_text: yes +notes: License text without warranty disclaimer +ignorable_authors: + - The Perl Foundation +--- + Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble diff --git a/src/licensedcode/data/rules/artistic-2.0_8.yml b/src/licensedcode/data/rules/artistic-2.0_8.yml deleted file mode 100644 index cdb96204ac2..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_text: yes -notes: License text without warranty disclaimer -ignorable_authors: - - The Perl Foundation diff --git a/src/licensedcode/data/rules/artistic-2.0_9.RULE b/src/licensedcode/data/rules/artistic-2.0_9.RULE index e57b4931ba3..6145edd8802 100644 --- a/src/licensedcode/data/rules/artistic-2.0_9.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +--- + Artistic License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_9.yml b/src/licensedcode/data/rules/artistic-2.0_9.yml deleted file mode 100644 index a5ae1784daa..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_and_public-domain-disclaimer_1.RULE b/src/licensedcode/data/rules/artistic-2.0_and_public-domain-disclaimer_1.RULE index ed52eaa6023..e7c616c19c4 100644 --- a/src/licensedcode/data/rules/artistic-2.0_and_public-domain-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_and_public-domain-disclaimer_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-2.0 AND public-domain-disclaimer +is_license_notice: yes +relevance: 100 +--- + This document is available under the same terms as Perl itself. Code examples in all the perlfaq documents are in the public domain. Use them as you see fit (and at your own risk with no warranty from anyone). \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_and_public-domain-disclaimer_1.yml b/src/licensedcode/data/rules/artistic-2.0_and_public-domain-disclaimer_1.yml deleted file mode 100644 index c46f48bb9bf..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_and_public-domain-disclaimer_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 AND public-domain-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_and_public-domain_1.RULE b/src/licensedcode/data/rules/artistic-2.0_and_public-domain_1.RULE index 4a02aeae5be..cd3ec9d419d 100644 --- a/src/licensedcode/data/rules/artistic-2.0_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_and_public-domain_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-2.0 AND public-domain-disclaimer +is_license_notice: yes +--- + You may distribute, use and modify this module under the terms of the Artistic License 2.0 as published by The Perl Foundation. See the file for diff --git a/src/licensedcode/data/rules/artistic-2.0_and_public-domain_1.yml b/src/licensedcode/data/rules/artistic-2.0_and_public-domain_1.yml deleted file mode 100644 index 64018263404..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_and_public-domain_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 AND public-domain-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-2.0_notice.RULE b/src/licensedcode/data/rules/artistic-2.0_notice.RULE index 9279a5e4a77..7d19f18ac4a 100644 --- a/src/licensedcode/data/rules/artistic-2.0_notice.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_notice.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.perlfoundation.org/artistic_license_2_0 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at: @@ -32,4 +39,4 @@ PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_notice.yml b/src/licensedcode/data/rules/artistic-2.0_notice.yml deleted file mode 100644 index 181a9b6bf51..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_notice.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.perlfoundation.org/artistic_license_2_0 diff --git a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_1.RULE index 10d6a4a6843..ef9e21b7e52 100644 --- a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: artistic-2.0 OR bsd-new OR lgpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - COPYING + - COPYING.LESSER +--- + Blitz++ is distributed under the Perl Artistic License 2.0 (see LICENSE), the simplified BSD license (see below), and the GNU LGPL v3 (see COPYING and COPYING.LESSER). Please choose whichever license best suits your needs. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_1.yml b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_1.yml deleted file mode 100644 index 73df3697343..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 OR bsd-new OR lgpl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - COPYING - - COPYING.LESSER diff --git a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_2.RULE b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_2.RULE index effe7a5242b..d6446e6d5f5 100644 --- a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: artistic-2.0 OR bsd-new OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LESSER + - COPYRIGHT + - LICENSE +--- + The Blitz++ library is licensed under the Lesser GPL version 3 license, the BSD license, and the more permissive Perl Artistic License version 2.0. Please use Blitz++ under the license that best suits the needs of your project. diff --git a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_2.yml b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_2.yml deleted file mode 100644 index e50246bbc8a..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: artistic-2.0 OR bsd-new OR lgpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LESSER - - COPYRIGHT - - LICENSE diff --git a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_3.RULE b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_3.RULE index bee16468166..a2bea09cd93 100644 --- a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: artistic-2.0 OR bsd-new OR lgpl-3.0 +is_license_notice: yes +referenced_filenames: + - COPYRIGHT + - COPYING + - COPYING.LESSER +--- + Blitz++ is distributed under the Perl Artistic License version 2.0 (see below), the simplified BSD license (see COPYRIGHT), or the GNU Lesser General Public License, version 3 (see COPYING and COPYING.LESSER) or any later version. diff --git a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_3.yml b/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_3.yml deleted file mode 100644 index 7577bad7054..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_or_bsd-new_or_lgpl-3.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 OR bsd-new OR lgpl-3.0 -is_license_notice: yes -referenced_filenames: - - COPYRIGHT - - COPYING - - COPYING.LESSER diff --git a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_1.RULE index 0e4b6e68215..9a64f9440d0 100644 --- a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_1.RULE @@ -1,7 +1,15 @@ +--- +license_expression: artistic-2.0 OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/Artistic-2.0 + - http://strongloop.com/license +--- + uses a dual license model. You may use this library under the terms of the [Artistic 2.0 license][], or under the terms of the [StrongLoop Subscription Agreement][]. [Artistic 2.0 license]: http://opensource.org/licenses/Artistic-2.0 -[StrongLoop Subscription Agreement]: http://strongloop.com/license +[StrongLoop Subscription Agreement]: http://strongloop.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_1.yml deleted file mode 100644 index 7ef79b7426b..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 OR commercial-license -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/Artistic-2.0 - - http://strongloop.com/license diff --git a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_2.RULE index 31490f896a9..eaeac9ba535 100644 --- a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-2.0 OR commercial-license +is_license_notice: yes +--- + You may use this library under the terms of the [Artistic 2.0 license][], -or under the terms of the [StrongLoop Subscription Agreement][]. +or under the terms of the [StrongLoop Subscription Agreement][]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_2.yml deleted file mode 100644 index dc548fb1262..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 OR commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_3.RULE b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_3.RULE index 2b569157cca..9279362f658 100644 --- a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_3.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-2.0 OR commercial-license +is_license_tag: yes +relevance: 100 +--- + Dual Artistic/StrongLoop \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_3.yml b/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_3.yml deleted file mode 100644 index ec5032037bd..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_or_commercial-license_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-2.0 OR commercial-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-2.0_or_later_or_gpl-2.0.RULE b/src/licensedcode/data/rules/artistic-2.0_or_later_or_gpl-2.0.RULE index da56b2c7100..6ab6c5aad7f 100644 --- a/src/licensedcode/data/rules/artistic-2.0_or_later_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_or_later_or_gpl-2.0.RULE @@ -1,7 +1,14 @@ +--- +license_expression: artistic-2.0 OR gpl-2.0 +is_license_notice: yes +notes: technically the license is artistic-2.0 or any later version of that licenses as used + in Perl 5. This is a rare notice so we only report artistic-2.0 +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available. Alternatively, this software may be distributed under the terms of the GNU General Public License ("GPL") version 2 as published by the Free -Software Foundation. +Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_or_later_or_gpl-2.0.yml b/src/licensedcode/data/rules/artistic-2.0_or_later_or_gpl-2.0.yml deleted file mode 100644 index dc8c566542d..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_or_later_or_gpl-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-2.0 OR gpl-2.0 -is_license_notice: yes -notes: technically the license is artistic-2.0 or any later version of that licenses as used - in Perl 5. This is a rare notice so we only report artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_url_1.RULE b/src/licensedcode/data/rules/artistic-2.0_url_1.RULE index 8c1bbf18a8d..10f04fd86e0 100644 --- a/src/licensedcode/data/rules/artistic-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/artistic-2.0 +--- + https://spdx.org/licenses/artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_url_1.yml b/src/licensedcode/data/rules/artistic-2.0_url_1.yml deleted file mode 100644 index 81cd62e6308..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_url_2.RULE b/src/licensedcode/data/rules/artistic-2.0_url_2.RULE index b5bb770714a..bcdda65bac3 100644 --- a/src/licensedcode/data/rules/artistic-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/artistic-2.0.html +--- + https://spdx.org/licenses/artistic-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_url_2.yml b/src/licensedcode/data/rules/artistic-2.0_url_2.yml deleted file mode 100644 index 1ebf747b45a..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/artistic-2.0.html diff --git a/src/licensedcode/data/rules/artistic-2.0_url_badge.RULE b/src/licensedcode/data/rules/artistic-2.0_url_badge.RULE index 2083424ad2b..8ee41c2f8a5 100644 --- a/src/licensedcode/data/rules/artistic-2.0_url_badge.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-Artistic%202.0-0298c3.svg + - https://opensource.org/licenses/Artistic-2.0 +--- + [![License: Artistic-2.0](https://img.shields.io/badge/License-Artistic%202.0-0298c3.svg)](https://opensource.org/licenses/Artistic-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_url_badge.yml b/src/licensedcode/data/rules/artistic-2.0_url_badge.yml deleted file mode 100644 index 16e3e889058..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-Artistic%202.0-0298c3.svg - - https://opensource.org/licenses/Artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_url_badge_1.RULE b/src/licensedcode/data/rules/artistic-2.0_url_badge_1.RULE index b03a9996c70..c4c9838cbf2 100644 --- a/src/licensedcode/data/rules/artistic-2.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_url_badge_1.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-Perl-0298c3.svg + - https://opensource.org/licenses/Artistic-2.0 +--- + [![License: Artistic-2.0](https://img.shields.io/badge/License-Perl-0298c3.svg)](https://opensource.org/licenses/Artistic-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_url_badge_1.yml b/src/licensedcode/data/rules/artistic-2.0_url_badge_1.yml deleted file mode 100644 index 496490e24d5..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_url_badge_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-Perl-0298c3.svg - - https://opensource.org/licenses/Artistic-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_url_glc_250.RULE b/src/licensedcode/data/rules/artistic-2.0_url_glc_250.RULE index 80039ac3f20..9db5d7da18c 100644 --- a/src/licensedcode/data/rules/artistic-2.0_url_glc_250.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_url_glc_250.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/artistic-license-2.0 +--- + http://www.opensource.org/licenses/artistic-license-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_url_glc_250.yml b/src/licensedcode/data/rules/artistic-2.0_url_glc_250.yml deleted file mode 100644 index ae52a1a4447..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_url_glc_250.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/artistic-license-2.0 diff --git a/src/licensedcode/data/rules/artistic-2.0_url_glc_251.RULE b/src/licensedcode/data/rules/artistic-2.0_url_glc_251.RULE index e7c08689fb9..0332ff2ece1 100644 --- a/src/licensedcode/data/rules/artistic-2.0_url_glc_251.RULE +++ b/src/licensedcode/data/rules/artistic-2.0_url_glc_251.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/artistic-license-2.0 +--- + https://www.opensource.org/licenses/artistic-license-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-2.0_url_glc_251.yml b/src/licensedcode/data/rules/artistic-2.0_url_glc_251.yml deleted file mode 100644 index eb77397705f..00000000000 --- a/src/licensedcode/data/rules/artistic-2.0_url_glc_251.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/artistic-license-2.0 diff --git a/src/licensedcode/data/rules/artistic-clarified.RULE b/src/licensedcode/data/rules/artistic-clarified.RULE index 6dd547964a0..7f3f0d3d6b3 100644 --- a/src/licensedcode/data/rules/artistic-clarified.RULE +++ b/src/licensedcode/data/rules/artistic-clarified.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ncftp.com/ncftp/doc/LICENSE.txt +--- + http://www.ncftp.com/ncftp/doc/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified.yml b/src/licensedcode/data/rules/artistic-clarified.yml deleted file mode 100644 index 64033bb547a..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ncftp.com/ncftp/doc/LICENSE.txt diff --git a/src/licensedcode/data/rules/artistic-clarified_1.RULE b/src/licensedcode/data/rules/artistic-clarified_1.RULE index fb8b03e31e9..1288b9376ab 100644 --- a/src/licensedcode/data/rules/artistic-clarified_1.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_1.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/ArtisticClarified +--- + https://fedoraproject.org/wiki/Licensing/ArtisticClarified \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_1.yml b/src/licensedcode/data/rules/artistic-clarified_1.yml deleted file mode 100644 index d5d294d70b1..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/ArtisticClarified diff --git a/src/licensedcode/data/rules/artistic-clarified_10.RULE b/src/licensedcode/data/rules/artistic-clarified_10.RULE index 49853dde6d6..fb5aeb6639c 100644 --- a/src/licensedcode/data/rules/artistic-clarified_10.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_10.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ClArtistic +--- + https://licenses.nuget.org/ClArtistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_10.yml b/src/licensedcode/data/rules/artistic-clarified_10.yml deleted file mode 100644 index efba66c6bc8..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ClArtistic diff --git a/src/licensedcode/data/rules/artistic-clarified_11.RULE b/src/licensedcode/data/rules/artistic-clarified_11.RULE index af52bd122fe..178aaa2d924 100644 --- a/src/licensedcode/data/rules/artistic-clarified_11.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_11.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ClArtistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_11.yml b/src/licensedcode/data/rules/artistic-clarified_11.yml deleted file mode 100644 index d372660584f..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-clarified_12.RULE b/src/licensedcode/data/rules/artistic-clarified_12.RULE index bc238eb391a..f28da12799c 100644 --- a/src/licensedcode/data/rules/artistic-clarified_12.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_12.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ClArtistic +--- + {{ClArtistic}} https://spdx.org/licenses/ClArtistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_12.yml b/src/licensedcode/data/rules/artistic-clarified_12.yml deleted file mode 100644 index 2cedf2a9204..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ClArtistic diff --git a/src/licensedcode/data/rules/artistic-clarified_13.RULE b/src/licensedcode/data/rules/artistic-clarified_13.RULE index 21ebdf84f19..b6ee95cce83 100644 --- a/src/licensedcode/data/rules/artistic-clarified_13.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_13.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ClArtistic +--- + LICENSE {{ClArtistic}} https://spdx.org/licenses/ClArtistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_13.yml b/src/licensedcode/data/rules/artistic-clarified_13.yml deleted file mode 100644 index 2cedf2a9204..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ClArtistic diff --git a/src/licensedcode/data/rules/artistic-clarified_2.RULE b/src/licensedcode/data/rules/artistic-clarified_2.RULE index 302bba12327..09b05a2adf0 100644 --- a/src/licensedcode/data/rules/artistic-clarified_2.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +ignorable_urls: + - http://www.jpaulmorrison.com/fbp/artistic2.htm +--- + * This program is free software; you can redistribute it and/or modify * it under the terms of the Clarified Artistic License. * @@ -8,4 +15,4 @@ * * You should have received a copy of the Clarified Artistic License * along with this program; if not you can get it here -* http://www.jpaulmorrison.com/fbp/artistic2.htm. +* http://www.jpaulmorrison.com/fbp/artistic2.htm. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_2.yml b/src/licensedcode/data/rules/artistic-clarified_2.yml deleted file mode 100644 index bdfa97fd120..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -ignorable_urls: - - http://www.jpaulmorrison.com/fbp/artistic2.htm diff --git a/src/licensedcode/data/rules/artistic-clarified_3.RULE b/src/licensedcode/data/rules/artistic-clarified_3.RULE index 8b17d3f17d3..a0c5f5df74b 100644 --- a/src/licensedcode/data/rules/artistic-clarified_3.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_3.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Clarified Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_3.yml b/src/licensedcode/data/rules/artistic-clarified_3.yml deleted file mode 100644 index 027f918e601..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-clarified_4.RULE b/src/licensedcode/data/rules/artistic-clarified_4.RULE index c9ea9c9a777..1d7b15cb70e 100644 --- a/src/licensedcode/data/rules/artistic-clarified_4.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_4.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Clarified Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_4.yml b/src/licensedcode/data/rules/artistic-clarified_4.yml deleted file mode 100644 index 027f918e601..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-clarified_5.RULE b/src/licensedcode/data/rules/artistic-clarified_5.RULE index 27a79817dc9..fb16bf4f9ae 100644 --- a/src/licensedcode/data/rules/artistic-clarified_5.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_5.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ClArtistic Clarified Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_5.yml b/src/licensedcode/data/rules/artistic-clarified_5.yml deleted file mode 100644 index 027f918e601..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-clarified_6.RULE b/src/licensedcode/data/rules/artistic-clarified_6.RULE index 59c0a969498..460d11d42ec 100644 --- a/src/licensedcode/data/rules/artistic-clarified_6.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_6.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Clarified Artistic License ClArtistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_6.yml b/src/licensedcode/data/rules/artistic-clarified_6.yml deleted file mode 100644 index 027f918e601..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-clarified_7.RULE b/src/licensedcode/data/rules/artistic-clarified_7.RULE index f36a8cc3b8b..495a454c519 100644 --- a/src/licensedcode/data/rules/artistic-clarified_7.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_7.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ClArtistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_7.yml b/src/licensedcode/data/rules/artistic-clarified_7.yml deleted file mode 100644 index a350de79bb7..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-clarified -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-clarified_8.RULE b/src/licensedcode/data/rules/artistic-clarified_8.RULE index e772b9c4e98..2df69ec3dda 100644 --- a/src/licensedcode/data/rules/artistic-clarified_8.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_8.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Clarified Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_8.yml b/src/licensedcode/data/rules/artistic-clarified_8.yml deleted file mode 100644 index a350de79bb7..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-clarified -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-clarified_9.RULE b/src/licensedcode/data/rules/artistic-clarified_9.RULE index 5673015fc81..e71ecf751c7 100644 --- a/src/licensedcode/data/rules/artistic-clarified_9.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_9.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ClArtistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_9.yml b/src/licensedcode/data/rules/artistic-clarified_9.yml deleted file mode 100644 index a350de79bb7..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-clarified -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-clarified_url_1.RULE b/src/licensedcode/data/rules/artistic-clarified_url_1.RULE index 78180bca1a1..f20b9565cde 100644 --- a/src/licensedcode/data/rules/artistic-clarified_url_1.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/clartistic +--- + https://spdx.org/licenses/clartistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_url_1.yml b/src/licensedcode/data/rules/artistic-clarified_url_1.yml deleted file mode 100644 index fd96cdd5ab6..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/clartistic diff --git a/src/licensedcode/data/rules/artistic-clarified_url_2.RULE b/src/licensedcode/data/rules/artistic-clarified_url_2.RULE index 3d41a6d3bde..0c40660d9d9 100644 --- a/src/licensedcode/data/rules/artistic-clarified_url_2.RULE +++ b/src/licensedcode/data/rules/artistic-clarified_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/clartistic.html +--- + https://spdx.org/licenses/clartistic.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-clarified_url_2.yml b/src/licensedcode/data/rules/artistic-clarified_url_2.yml deleted file mode 100644 index bdcc6de4cf7..00000000000 --- a/src/licensedcode/data/rules/artistic-clarified_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/clartistic.html diff --git a/src/licensedcode/data/rules/artistic-dist-1.0_1.RULE b/src/licensedcode/data/rules/artistic-dist-1.0_1.RULE index eb18364c857..584521f1433 100644 --- a/src/licensedcode/data/rules/artistic-dist-1.0_1.RULE +++ b/src/licensedcode/data/rules/artistic-dist-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-dist-1.0 +is_license_tag: yes +relevance: 100 +--- + License: Artistic-dist \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-dist-1.0_1.yml b/src/licensedcode/data/rules/artistic-dist-1.0_1.yml deleted file mode 100644 index ccbe464c31b..00000000000 --- a/src/licensedcode/data/rules/artistic-dist-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-dist-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-dist-1.0_2.RULE b/src/licensedcode/data/rules/artistic-dist-1.0_2.RULE index 0b9614affe5..e79a9817572 100644 --- a/src/licensedcode/data/rules/artistic-dist-1.0_2.RULE +++ b/src/licensedcode/data/rules/artistic-dist-1.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: artistic-dist-1.0 +is_license_text: yes +relevance: 100 +notes: whomever vs. whoever change Seen in multiple places such as https://raw.githubusercontent.com/window-maker/dockapps/f9629b30334411d0fe6318c4a191c2e290f31306/fookb/LICENSE + and https://github.com/Gepetto/robotpkg/blob/89607f0d3e47cbb485463b5d592df07fb58faf59/licenses/artistic +--- + The "Artistic License" Preamble diff --git a/src/licensedcode/data/rules/artistic-dist-1.0_2.yml b/src/licensedcode/data/rules/artistic-dist-1.0_2.yml deleted file mode 100644 index 56dfce42bbb..00000000000 --- a/src/licensedcode/data/rules/artistic-dist-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-dist-1.0 -is_license_text: yes -relevance: 100 -notes: whomever vs. whoever change Seen in multiple places such as https://raw.githubusercontent.com/window-maker/dockapps/f9629b30334411d0fe6318c4a191c2e290f31306/fookb/LICENSE - and https://github.com/Gepetto/robotpkg/blob/89607f0d3e47cbb485463b5d592df07fb58faf59/licenses/artistic diff --git a/src/licensedcode/data/rules/artistic-dist-1.0_3.RULE b/src/licensedcode/data/rules/artistic-dist-1.0_3.RULE index 31694b71643..382961b9c50 100644 --- a/src/licensedcode/data/rules/artistic-dist-1.0_3.RULE +++ b/src/licensedcode/data/rules/artistic-dist-1.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-dist-1.0 +is_license_notice: yes +--- + This subdirectory contains unmodified 'dist' code that is licensed under the modified Artistic license detailed below under the "Artistic-dist" tag. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-dist-1.0_3.yml b/src/licensedcode/data/rules/artistic-dist-1.0_3.yml deleted file mode 100644 index 4e4656f5abb..00000000000 --- a/src/licensedcode/data/rules/artistic-dist-1.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-dist-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-dist-1.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/artistic-dist-1.0_or_gpl-1.0-plus_1.RULE index dcc13ce54bb..d1bb8604b9b 100644 --- a/src/licensedcode/data/rules/artistic-dist-1.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/artistic-dist-1.0_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-dist-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + dist is distributed under a modified version of the Perl Artistic License. Clause 7 of this modified license as contained in dist-3.0-pl60 provides: . diff --git a/src/licensedcode/data/rules/artistic-dist-1.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/artistic-dist-1.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 9b7dc381b95..00000000000 --- a/src/licensedcode/data/rules/artistic-dist-1.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-dist-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0.RULE b/src/licensedcode/data/rules/artistic-perl-1.0.RULE index 3e2b1e06550..e65b6f12315 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 100 +notes: The two URLs used here refer to the 10-clause version +ignorable_urls: + - http://www.perlfoundation.org/artistic_license_1_0 +--- + http://www.perlfoundation.org/artistic_license_1_0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0.yml b/src/licensedcode/data/rules/artistic-perl-1.0.yml deleted file mode 100644 index 86093842691..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 100 -notes: The two URLs used here refer to the 10-clause version -ignorable_urls: - - http://www.perlfoundation.org/artistic_license_1_0 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_1.RULE index 05bcc1688b4..af76145ee16 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_text: yes +notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version + is really the Artistic License (Perl) 1.0 +--- + The Artistic License August 15, 1997 Preamble diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_1.yml deleted file mode 100644 index 5419a66a474..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_text: yes -notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version - is really the Artistic License (Perl) 1.0 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_10.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_10.RULE index 3199653048a..364420279d0 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_10.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + under Perl's Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_10.yml b/src/licensedcode/data/rules/artistic-perl-1.0_10.yml deleted file mode 100644 index 36791c4db8a..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_11.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_11.RULE index 514cb7ca8ff..803730e453f 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_11.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_11.RULE @@ -1 +1,8 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + Perl's Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_11.yml b/src/licensedcode/data/rules/artistic-perl-1.0_11.yml deleted file mode 100644 index 848bb507362..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_12.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_12.RULE index 51b3787a0b9..5b3d7ac376f 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_12.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +--- + The license notice in the document is: . When included as an integrated part of the Standard Distribution diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_12.yml b/src/licensedcode/data/rules/artistic-perl-1.0_12.yml deleted file mode 100644 index 67a6bc49d88..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_13.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_13.RULE index d71e7e466a2..d634a1bdb08 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_13.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/Artistic +--- + This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_13.yml b/src/licensedcode/data/rules/artistic-perl-1.0_13.yml deleted file mode 100644 index d724ac14209..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/Artistic diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_14.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_14.RULE index 2fa1dfd80d1..4342b02a138 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_14.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_14.RULE @@ -1 +1,6 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +--- + Artistic-1.0-Perl Artistic License 1.0 (Perl) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_14.yml b/src/licensedcode/data/rules/artistic-perl-1.0_14.yml deleted file mode 100644 index 8536b428917..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_15.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_15.RULE index 364cf18ef72..4635ab0c9bc 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_15.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Artistic License 1.0 (Perl) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_15.yml b/src/licensedcode/data/rules/artistic-perl-1.0_15.yml deleted file mode 100644 index 7478cc0b066..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_16.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_16.RULE index 8bf5f6395b8..2334cb28429 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_16.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Artistic License 1.0 (Perl) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_16.yml b/src/licensedcode/data/rules/artistic-perl-1.0_16.yml deleted file mode 100644 index 7478cc0b066..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_17.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_17.RULE index 83009a483d9..35aa21fab88 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_17.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Artistic License 1.0 (Perl) Artistic-1.0-Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_17.yml b/src/licensedcode/data/rules/artistic-perl-1.0_17.yml deleted file mode 100644 index 7478cc0b066..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_18.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_18.RULE index 434e06a0da0..ae85c161cde 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_18.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Artistic-1.0-Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_18.yml b/src/licensedcode/data/rules/artistic-perl-1.0_18.yml deleted file mode 100644 index 2ffddd87629..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_19.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_19.RULE index cdb6da9785c..71452b1e997 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_19.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_19.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Artistic License 1.0 (Perl) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_19.yml b/src/licensedcode/data/rules/artistic-perl-1.0_19.yml deleted file mode 100644 index 2ffddd87629..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_2.RULE index 281672e9569..7ea854ada5e 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of the Artistic Licence can be found in `/usr/share/common-licenses/Artistic'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_2.yml deleted file mode 100644 index 36791c4db8a..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_20.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_20.RULE index 846b571cb01..6b7e9ea8f86 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_20.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_20.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Artistic-1.0-Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_20.yml b/src/licensedcode/data/rules/artistic-perl-1.0_20.yml deleted file mode 100644 index 2ffddd87629..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_21.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_21.RULE index 4c772affbb0..bd88bf34fbd 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_21.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + The following Perl libraries are all licensed subject to the Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_21.yml b/src/licensedcode/data/rules/artistic-perl-1.0_21.yml deleted file mode 100644 index 36791c4db8a..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_22.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_22.RULE index 823dbef50dd..1357d20221e 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_22.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Artistic-1.0-Perl +--- + https://licenses.nuget.org/Artistic-1.0-Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_22.yml b/src/licensedcode/data/rules/artistic-perl-1.0_22.yml deleted file mode 100644 index 74a9903dcaf..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Artistic-1.0-Perl diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_23.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_23.RULE index 07981c79048..f00df2008b3 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_23.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Artistic-1.0-Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_23.yml b/src/licensedcode/data/rules/artistic-perl-1.0_23.yml deleted file mode 100644 index 65bc4bfd65f..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_24.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_24.RULE index 245361df742..e1019286d8d 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_24.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Artistic-1.0-Perl +--- + {{Artistic-1.0-Perl}} https://spdx.org/licenses/Artistic-1.0-Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_24.yml b/src/licensedcode/data/rules/artistic-perl-1.0_24.yml deleted file mode 100644 index 2eb1669fb0d..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Artistic-1.0-Perl diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_25.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_25.RULE index 1467c533cab..7e085f42a89 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_25.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Artistic-1.0-Perl +--- + LICENSE {{Artistic-1.0-Perl}} https://spdx.org/licenses/Artistic-1.0-Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_25.yml b/src/licensedcode/data/rules/artistic-perl-1.0_25.yml deleted file mode 100644 index 2eb1669fb0d..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Artistic-1.0-Perl diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_26.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_26.RULE index 7e1e32872ae..affb6f9ee4c 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_26.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_26.RULE @@ -1 +1,8 @@ -license: artistic +--- +license_expression: artistic-perl-1.0 +is_license_tag: yes +relevance: 99 +notes: artistic-perl-1.0 is the most common artistic +--- + +license: artistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_26.yml b/src/licensedcode/data/rules/artistic-perl-1.0_26.yml deleted file mode 100644 index b97160be1d7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_tag: yes -relevance: 99 -notes: artistic-perl-1.0 is the most common artistic diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_3.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_3.RULE index 3ed4582ee25..b4136c3788d 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_3.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + License: Artistic On Debian GNU/Linux systems, the complete text of the Artistic Licence can be found in `/usr/share/common-licenses/Artistic'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_3.yml b/src/licensedcode/data/rules/artistic-perl-1.0_3.yml deleted file mode 100644 index 36791c4db8a..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_4.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_4.RULE index cfe66831457..9d9d110e070 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_4.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 100 +--- + perlartistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_4.yml b/src/licensedcode/data/rules/artistic-perl-1.0_4.yml deleted file mode 100644 index 65bc4bfd65f..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_5.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_5.RULE index e53fce03ed0..662a081ac94 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_5.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_5.RULE @@ -1,2 +1,9 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +notes: Seen in FreeBSD +--- + This software may be distributed under the terms of Larry Wall's Artistic license, a copy of which is included in this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_5.yml b/src/licensedcode/data/rules/artistic-perl-1.0_5.yml deleted file mode 100644 index fbee5747733..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_6.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_6.RULE index 6fa2ee57205..9ab94a3efdc 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_6.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Artistic +--- + On Debian GNU/Linux systems, the complete text of the Artistic -license is in `/usr/share/common-licenses/Artistic' +license is in `/usr/share/common-licenses/Artistic' \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_6.yml b/src/licensedcode/data/rules/artistic-perl-1.0_6.yml deleted file mode 100644 index 7af9db530d7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Artistic diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_7.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_7.RULE index 09b1f67a8c8..471af4178b2 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_7.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +relevance: 99 +--- + This program is distributed under the Artistic License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_7.yml b/src/licensedcode/data/rules/artistic-perl-1.0_7.yml deleted file mode 100644 index 0d68a797a80..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_8.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_8.RULE index 1a462630045..96a09b486b4 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_8.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + this works is covered under Perl's Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_8.yml b/src/licensedcode/data/rules/artistic-perl-1.0_8.yml deleted file mode 100644 index 36791c4db8a..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_9.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_9.RULE index df566322afe..9d47300ba0d 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_9.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + covered under Perl's Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_9.yml b/src/licensedcode/data/rules/artistic-perl-1.0_9.yml deleted file mode 100644 index 36791c4db8a..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_1.RULE index 2653287934e..c6a1915ce74 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR artistic-dist-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + You may distribute the files contained in this distribution under the terms of either . diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 560c7c97665..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR artistic-dist-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_2.RULE index 6b59a44179f..f510cdbf625 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR artistic-dist-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + You may distribute the files contained in this distribution under the terms of either . diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 560c7c97665..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_artistic-dist-1.0_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR artistic-dist-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_1.RULE index 6ca50d78563..d52ff1e297d 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of either: @@ -9,5 +14,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL' and - the Artistic Licence in `/usr/share/common-licenses/Artistic'. - + the Artistic Licence in `/usr/share/common-licenses/Artistic'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_10.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_10.RULE index 6c97e6c8a4f..acf17094043 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_10.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_10.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_10.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_10.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_11.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_11.RULE index b897f0cf5e5..000abd197f1 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_11.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_11.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Same licence as Perl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_11.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_11.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_12.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_12.RULE index c3a58f14f4d..07a34ba65d3 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_12.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_12.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_12.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_12.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_13.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_13.RULE index affb5d50cec..64ec0fbfa60 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_13.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This library is free software; you may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file. diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_13.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_13.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_14.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_14.RULE index a3250e44425..7f1a174c3db 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_14.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_14.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + License-Alias: Perl -License: Artistic | GPL-1+ +License: Artistic | GPL-1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_14.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_14.yml deleted file mode 100644 index 6647ba9fe8c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_15.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_15.RULE index 12bd6dba220..ce53ef95de2 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_15.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_15.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This is free software; you can redistribute it and/or modify it under the same terms as perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_15.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_15.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_16.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_16.RULE index 00abcb23775..cf48c0c0b2f 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_16.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_16.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This module is free software; you can redistribute it or modify it -under the same terms as Perl itself. +under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_16.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_16.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_17.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_17.RULE index 93188734036..d4aa42bffbe 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_17.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_17.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This module is free software; you may redistribute it and/or - modify it under the same terms as Perl itself. + modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_17.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_17.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_18.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_18.RULE index df85bc80cc9..2b43318843d 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_18.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - README +--- + This library is free software; you may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_18.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_18.yml deleted file mode 100644 index e97fe7cf791..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_19.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_19.RULE index 84f7f1e1d91..e2ba8d53c54 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_19.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_19.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_tag: yes +--- + You may distribute under the terms of either the GNU General Public License -or the Artistic License (the same terms as Perl itself) +or the Artistic License (the same terms as Perl itself) \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_19.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_19.yml deleted file mode 100644 index 213ba99db21..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_tag: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_2.RULE index f11705a1ad1..04828d141cc 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. @@ -7,4 +12,4 @@ The full text of the GPL is available on Debian systems in /usr/share/common-licenses/GPL The full text of the Artistic Licence is available on Debian systems in -/usr/share/common-licenses/Artistic. +/usr/share/common-licenses/Artistic. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_20.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_20.RULE index ae7acb28d84..2ab55a59970 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_20.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_20.RULE @@ -1 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_tag: yes +relevance: 90 +notes: tag as documented in the Module-Build pod +--- + license perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_20.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_20.yml deleted file mode 100644 index a58c599f191..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_tag: yes -relevance: 90 -notes: tag as documented in the Module-Build pod diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_21.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_21.RULE index d06944e29b6..8d2e8a5eff4 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_21.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://perldoc.perl.org/perlartistic.html + - http://www.gnu.org/licenses/gpl.html +--- + You may distribute this under the same terms as Perl itself, under your choice of the Artist or GPL licenses. See: diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_21.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_21.yml deleted file mode 100644 index 984c9cf76e3..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://perldoc.perl.org/perlartistic.html - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_22.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_22.RULE index 163df998462..d7d1c81c9db 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_22.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_22.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + You may distribute this under the same terms as Perl itself, under your choice of the Artist or GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_22.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_22.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_23.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_23.RULE index 49bc8a51427..48547a36166 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_23.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_23.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 99 +--- + can be modified and distributed under the terms of Perl itself (see the license at the end of the presentation). \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_23.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_23.yml deleted file mode 100644 index c9ba9aa6f80..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_24.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_24.RULE index 4e935efe768..2f869dee873 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_24.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_24.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_24.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_24.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_25.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_25.RULE index e1d6d47c94a..6502add1b6b 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_25.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_25.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you may redistribute and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_25.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_25.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_26.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_26.RULE index 1580d0f1492..3715aa432f2 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_26.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.0 or, at your option, any later version of Perl 5 you may have available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_26.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_26.yml deleted file mode 100644 index 9b8bdcaebc4..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_27.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_27.RULE index 1db4f9f02db..83833d770b9 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_27.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5 or, at your option, any later version of Perl 5 you may have available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_27.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_27.yml deleted file mode 100644 index da718e48075..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_28.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_28.RULE index f98f498f82c..8f4d9e7e070 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_28.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_28.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + It is assumed that the test code is licensed under the same terms as Perl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_28.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_28.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_29.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_29.RULE index b48196c579f..bbebde14eb8 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_29.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_29.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the same terms as Perl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_29.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_29.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_3.RULE index cebbb2d7e7c..8b8fcfbd164 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 15 +--- + License-Alias: Perl License: Artistic | GPL-1+ It is assumed that debian/* files carry the same license as upstream @@ -14,4 +20,4 @@ License: GPL-1+ the Free Software Foundation; either version 1, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL' + Public License can be found in `/usr/share/common-licenses/GPL' \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_3.yml deleted file mode 100644 index 8c986ec05ae..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 15 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_30.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_30.RULE index a2c7376d7ec..86d1bdeeae9 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_30.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_30.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + port is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_30.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_30.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_31.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_31.RULE index 6b91a2c4d1c..ac0cfb60013 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_31.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_31.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + The port is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_31.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_31.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_32.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_32.RULE index b45f5b39110..3651563cfc9 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_32.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_32.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + The class is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_32.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_32.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_33.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_33.RULE index 2902e8614b6..7c8b14a0ac9 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_33.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_33.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + class is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_33.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_33.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_34.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_34.RULE index c5f15c43ebf..58214db3222 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_34.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_34.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + All files are licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_34.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_34.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_35.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_35.RULE index f1e233bcecd..cbcdcdd47f5 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_35.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_35.RULE @@ -1,3 +1,12 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Artistic + - /usr/share/coomon-licenses/GPL +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL', the Artistic -license in `/usr/share/common-licenses/Artistic' +license in `/usr/share/common-licenses/Artistic' \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_35.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_35.yml deleted file mode 100644 index b118f98ef8b..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Artistic - - /usr/share/coomon-licenses/GPL diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_36.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_36.RULE index 1f51cd797b2..55d24078799 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_36.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_36.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 95 +--- + may be redistributed and/or modified under the same terms as Perl itself. It is assumed that other contributors have placed their contributions under a compatible diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_36.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_36.yml deleted file mode 100644 index f9c25c3551c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_37.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_37.RULE index f95f62b42d5..a974489ce89 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_37.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_37.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 95 +--- + There is no copyright or license information in this distribution. It is assumed that it is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_37.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_37.yml deleted file mode 100644 index f9c25c3551c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_38.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_38.RULE index 0a89d5aebdf..f9591e51814 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_38.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_38.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 95 +--- + As above, it is assumed that this file is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_38.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_38.yml deleted file mode 100644 index f9c25c3551c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_39.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_39.RULE index 6c4d11ca649..c60ff9f3701 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_39.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_39.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 95 +--- + There is no license information in this distribution. It is assumed that it is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_39.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_39.yml deleted file mode 100644 index f9c25c3551c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_4.RULE index 486d615c303..02f3d5cc520 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_tag: yes +--- + License-Alias: Perl License: Artistic | GPL-1+ -It is assumed that debian/* files carry the same license as upstream +It is assumed that debian/* files carry the same license as upstream \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_4.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_4.yml deleted file mode 100644 index 213ba99db21..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_tag: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_40.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_40.RULE index eb81dbf8078..191f7d21da5 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_40.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_40.RULE @@ -1 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 95 +--- + It is assumed that this file is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_40.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_40.yml deleted file mode 100644 index f9c25c3551c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_41.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_41.RULE index ff9560e8a15..cd407167819 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_41.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 95 +--- + There is no license information included that clearly applies to the whole of this distribution. It is assumed that it is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_41.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_41.yml deleted file mode 100644 index f9c25c3551c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_42.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_42.RULE index dce1ff5c1b3..b2ce118bb31 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_42.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_42.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 95 +--- + There is no license information included. It is assumed that this distribution is licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_42.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_42.yml deleted file mode 100644 index f9c25c3551c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_43.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_43.RULE index ef5fa578bfc..571d4f2ecba 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_43.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_43.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + It may be used, redistributed and/or modified under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_43.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_43.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_44.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_44.RULE index 879cbf090ee..901ac5b2a91 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_44.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_44.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This package is free software and is provided "as is" without express or implied warranty. It may be used, redistributed and/or modified under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_44.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_44.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_45.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_45.RULE index 8de46067408..b04336e9409 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_45.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_45.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the same terms as Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_45.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_45.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_46.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_46.RULE index 98892f51e38..3349a3783f8 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_46.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_46.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This module is distributed under the same terms as Perl itself. Feel free to use, modify and redistribute it as long as you retain the correct attribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_46.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_46.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_46.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_47.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_47.RULE index c1d5ff8c6f0..c7cbed9a0ac 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_47.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_47.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This module is free software; you can redistribute and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_47.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_47.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_47.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_48.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_48.RULE index 852d267ef5e..e31cc2aaf22 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_48.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_48.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + You can redistribute and/or modify this document under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_48.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_48.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_49.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_49.RULE index b5ba3710354..7733586bc59 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_49.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_49.RULE @@ -1,2 +1,7 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This program is free software; you can redistribute and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_49.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_49.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_49.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_5.RULE index d9e48717c87..70f2795a1f6 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. @@ -10,4 +15,4 @@ License: GPL-1+ the Free Software Foundation; either version 1, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL' + Public License can be found in `/usr/share/common-licenses/GPL' \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_5.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_5.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_50.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_50.RULE index b5bf45fcfe1..6ac08a2b273 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_50.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_50.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 95 +--- + source code was licensed under the same terms as Perl itself \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_50.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_50.yml deleted file mode 100644 index f9c25c3551c..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_51.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_51.RULE index b74324bb2d7..cf8a3ad1573 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_51.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_51.RULE @@ -1,3 +1,12 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://perldoc.perl.org/perlartistic.html + - https://www.gnu.org/licenses/gpl.html +--- + You may distribute this under the same terms as Perl itself, under your choice of the Artist or GPL licenses. See: diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_51.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_51.yml deleted file mode 100644 index 2b289bc0ee6..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_51.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://perldoc.perl.org/perlartistic.html - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_52.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_52.RULE index bb4d2d5b25a..33f44200e62 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_52.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_52.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 99 +--- + There is no copyright or license information in these distributions. It is assumed that they are licensed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_52.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_52.yml deleted file mode 100644 index c9ba9aa6f80..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_6.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_6.RULE index 1c891a925b9..503f93ab007 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_6.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + You may distribute this module under the terms of either the Gnu GPL, or the Artistic License (the same terms -as Perl itself). +as Perl itself). \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_6.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_6.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_7.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_7.RULE index 800d2320f94..2003496ef57 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_7.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_7.RULE @@ -1,2 +1,9 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - README +--- + You may distribute under the terms of either the GNU General Public -License or the Artistic License, as specified in the README file. +License or the Artistic License, as specified in the README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_7.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_7.yml deleted file mode 100644 index e97fe7cf791..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_8.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_8.RULE index f8d10f08166..bd7a9c60768 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_8.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_8.RULE @@ -1,2 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + You may distribute under the terms of either the GNU General Public -License or the Artistic License +License or the Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_8.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_8.yml deleted file mode 100644 index 43166db5d9e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_9.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_9.RULE index c65298d70f0..a9c52f29111 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_9.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. That means either (a) the GNU General Public -License or (b) the Artistic License. +License or (b) the Artistic License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_9.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_9.yml deleted file mode 100644 index 829a7c164c7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_1.RULE index 0bf7069c7b4..01f7c658ed3 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: (artistic-perl-1.0 OR gpl-1.0-plus) AND bsd-new +is_license_tag: yes +relevance: 100 +--- + License: Perl / BSD This module is free software; you may redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_1.yml deleted file mode 100644 index d79b7b9ab45..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (artistic-perl-1.0 OR gpl-1.0-plus) AND bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_2.RULE index ca4fc80a26f..34c9fa477fa 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: (artistic-perl-1.0 OR gpl-1.0-plus) AND bsd-new +is_license_notice: yes +--- + The main license applies to most of the code: . This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_2.yml deleted file mode 100644 index 743a6fab392..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0-plus_and_bsd-new_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: (artistic-perl-1.0 OR gpl-1.0-plus) AND bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_1.RULE index b1ccb747b5b..afe4e06ab94 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_1.RULE @@ -1,2 +1,9 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +--- + License for redistribution is by either the Artistic License or -the GNU General Public License (v1). +the GNU General Public License (v1). \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_1.yml deleted file mode 100644 index 212adfd1b4a..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_2.RULE index 7d363767ce5..f156fd769a1 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_2.RULE @@ -1,6 +1,15 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-1.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/Artistic + - /usr/share/coomon-licenses/GPL +--- + License for redistribution is by either the Artistic License or the GNU General Public License (v1). On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL', the Artistic -license in `/usr/share/common-licenses/Artistic' +license in `/usr/share/common-licenses/Artistic' \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_2.yml deleted file mode 100644 index c9bc7374c0d..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-1.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/Artistic - - /usr/share/coomon-licenses/GPL diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_1.RULE index 50b8739b9af..4b63aaeaf71 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 75 +referenced_filenames: + - COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms of either: @@ -12,4 +20,4 @@ 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. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_1.yml deleted file mode 100644 index cc0a0759217..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 75 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_2.RULE index 325837cc64c..debb473076c 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you may redistribute it and/or modify it under the same terms as Perl itself. . diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_2.yml deleted file mode 100644 index eb6ce218c00..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_3.RULE index f20a83c8ed1..bb9ceb047a6 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the Perl Artistic License or the GNU General Public License as published by the Free Software diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_3.yml deleted file mode 100644 index eb6ce218c00..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_1.RULE index e125d85c3cd..23d83d56d6d 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_1.RULE @@ -1 +1,6 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-2.0 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself, i.e., under the terms of the Artistic License or the GNU General Public License version 2 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_1.yml deleted file mode 100644 index 974d1bcef26..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_2.RULE index 3fe1a8a1c0f..4b74feefa21 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_2.RULE @@ -1 +1,6 @@ +--- +license_expression: artistic-perl-1.0 OR gpl-2.0 +is_license_notice: yes +--- + This package is free software; you can use, modify and redistribute it under the same terms as Perl itself, i.e., under the terms of the Artistic License or the GNU General Public License version 2 . The C library at the core of this Perl module can additionally be used, modified and redistributed under the terms of the GNU General Public License version 2 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_2.yml deleted file mode 100644 index 974d1bcef26..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_or_gpl-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-perl-1.0 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_1.RULE index d71de439f9a..50c4f343563 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version + is really the Artistic License (Perl) 1.0 +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.2 or, at your option, any -later version of Perl 5 you may have available. +later version of Perl 5 you may have available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_1.yml deleted file mode 100644 index 38dcafa31b7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version - is really the Artistic License (Perl) 1.0 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_2.RULE index 5cd4cc13ce6..7ddb6767bf1 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_notice: yes +notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version + is really the Artistic License (Perl) 1.0 +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_2.yml deleted file mode 100644 index 38dcafa31b7..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_notice: yes -notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version - is really the Artistic License (Perl) 1.0 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_3.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_3.RULE index 0f2a6d889d0..47865005bf6 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_3.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version + is really the Artistic License (Perl) 1.0 +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.0 or, at your option, any later version of Perl 5 you may have available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_3.yml b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_3.yml deleted file mode 100644 index 549558652cd..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version - is really the Artistic License (Perl) 1.0 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_4.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_4.RULE index 7783b8880f3..506d0b7b3cd 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_4.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version + is really the Artistic License (Perl) 1.0 +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_4.yml b/src/licensedcode/data/rules/artistic-perl-1.0_perl5_4.yml deleted file mode 100644 index 549558652cd..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_perl5_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -notes: Per http://opensource.org/licenses/artistic-license-1.0 The alternative 10-clause version - is really the Artistic License (Perl) 1.0 diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_url_1.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_url_1.RULE index a352d3e3cc5..b426f794318 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/artistic-1.0-perl +--- + https://spdx.org/licenses/artistic-1.0-perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_url_1.yml b/src/licensedcode/data/rules/artistic-perl-1.0_url_1.yml deleted file mode 100644 index 907e643116e..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/artistic-1.0-perl diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_url_2.RULE b/src/licensedcode/data/rules/artistic-perl-1.0_url_2.RULE index dab8bb858eb..448b51bf874 100644 --- a/src/licensedcode/data/rules/artistic-perl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/artistic-perl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/artistic-1.0-perl.html +--- + https://spdx.org/licenses/artistic-1.0-perl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic-perl-1.0_url_2.yml b/src/licensedcode/data/rules/artistic-perl-1.0_url_2.yml deleted file mode 100644 index 0f0aff9db70..00000000000 --- a/src/licensedcode/data/rules/artistic-perl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/artistic-1.0-perl.html diff --git a/src/licensedcode/data/rules/artistic_and_bsd-new.RULE b/src/licensedcode/data/rules/artistic_and_bsd-new.RULE index 5d2ca1749ac..595e7f98edb 100644 --- a/src/licensedcode/data/rules/artistic_and_bsd-new.RULE +++ b/src/licensedcode/data/rules/artistic_and_bsd-new.RULE @@ -1 +1,7 @@ +--- +license_expression: (artistic-perl-1.0 OR gpl-1.0-plus) AND bsd-new +is_license_tag: yes +relevance: 90 +--- + License: Perl / BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic_and_bsd-new.yml b/src/licensedcode/data/rules/artistic_and_bsd-new.yml deleted file mode 100644 index 24b4662eb9a..00000000000 --- a/src/licensedcode/data/rules/artistic_and_bsd-new.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (artistic-perl-1.0 OR gpl-1.0-plus) AND bsd-new -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/artistic_and_bsd-new_and_gpl.RULE b/src/licensedcode/data/rules/artistic_and_bsd-new_and_gpl.RULE index 86aea6d09bd..b5a73e7b7b7 100644 --- a/src/licensedcode/data/rules/artistic_and_bsd-new_and_gpl.RULE +++ b/src/licensedcode/data/rules/artistic_and_bsd-new_and_gpl.RULE @@ -1,3 +1,8 @@ +--- +license_expression: artistic-2.0 AND bsd-new AND gpl-2.0 +is_license_notice: yes +--- + The actual text of the licenses can either be found in /usr/share/common-licenses (for artistic,bsd,gpl) or in "3.2 Text of the licenses" below. For BSD-like licenses that just exchange the diff --git a/src/licensedcode/data/rules/artistic_and_bsd-new_and_gpl.yml b/src/licensedcode/data/rules/artistic_and_bsd-new_and_gpl.yml deleted file mode 100644 index eb98c33e887..00000000000 --- a/src/licensedcode/data/rules/artistic_and_bsd-new_and_gpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 AND bsd-new AND gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/artistic_and_public-domain.RULE b/src/licensedcode/data/rules/artistic_and_public-domain.RULE index 9937807824a..496e46281ab 100644 --- a/src/licensedcode/data/rules/artistic_and_public-domain.RULE +++ b/src/licensedcode/data/rules/artistic_and_public-domain.RULE @@ -1,7 +1,12 @@ +--- +license_expression: artistic-2.0 AND public-domain +is_license_notice: yes +--- + C. Artistic D. PD (Public domain): The file or package contains a statement equivalent to "This file is in the public domain. You may freely use, modify and -distribute it". +distribute it". \ No newline at end of file diff --git a/src/licensedcode/data/rules/artistic_and_public-domain.yml b/src/licensedcode/data/rules/artistic_and_public-domain.yml deleted file mode 100644 index 9ebd09f81e1..00000000000 --- a/src/licensedcode/data/rules/artistic_and_public-domain.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: artistic-2.0 AND public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/asmus.RULE b/src/licensedcode/data/rules/asmus.RULE index 629161d392e..e45486d9f2e 100644 --- a/src/licensedcode/data/rules/asmus.RULE +++ b/src/licensedcode/data/rules/asmus.RULE @@ -1 +1,9 @@ +--- +license_expression: asmus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://home.ix.netcom.com/~asmus-inc/index.html +--- + http://home.ix.netcom.com/~asmus-inc/index.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/asmus.yml b/src/licensedcode/data/rules/asmus.yml deleted file mode 100644 index 2d0f8229d64..00000000000 --- a/src/licensedcode/data/rules/asmus.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: asmus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://home.ix.netcom.com/~asmus-inc/index.html diff --git a/src/licensedcode/data/rules/ati-eula.RULE b/src/licensedcode/data/rules/ati-eula.RULE index 81510943fdc..7018f09243a 100644 --- a/src/licensedcode/data/rules/ati-eula.RULE +++ b/src/licensedcode/data/rules/ati-eula.RULE @@ -1 +1,9 @@ +--- +license_expression: ati-eula +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.amd.com/us/pages/amdhomepage.aspx +--- + http://www.amd.com/us/pages/amdhomepage.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/ati-eula.yml b/src/licensedcode/data/rules/ati-eula.yml deleted file mode 100644 index ce919a69988..00000000000 --- a/src/licensedcode/data/rules/ati-eula.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ati-eula -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.amd.com/us/pages/amdhomepage.aspx diff --git a/src/licensedcode/data/rules/attribution.RULE b/src/licensedcode/data/rules/attribution.RULE index d49489d6c1e..31b0953f7f8 100644 --- a/src/licensedcode/data/rules/attribution.RULE +++ b/src/licensedcode/data/rules/attribution.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/attribution.php +--- + http://opensource.org/licenses/attribution.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution.SPDX.RULE b/src/licensedcode/data/rules/attribution.SPDX.RULE index c2962150717..41e7afaccdd 100644 --- a/src/licensedcode/data/rules/attribution.SPDX.RULE +++ b/src/licensedcode/data/rules/attribution.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: attribution +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Attribution Assurance License PROFESSIONAL IDENTIFICATION * URL "PROMOTIONAL SLOGAN FOR AUTHOR'S PROFESSIONAL PRACTICE" diff --git a/src/licensedcode/data/rules/attribution.SPDX.yml b/src/licensedcode/data/rules/attribution.SPDX.yml deleted file mode 100644 index 7af779c614e..00000000000 --- a/src/licensedcode/data/rules/attribution.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: attribution -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/attribution.yml b/src/licensedcode/data/rules/attribution.yml deleted file mode 100644 index d622f8e1196..00000000000 --- a/src/licensedcode/data/rules/attribution.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/attribution.php diff --git a/src/licensedcode/data/rules/attribution_1.RULE b/src/licensedcode/data/rules/attribution_1.RULE index 1dba43c60b5..c0b152cc254 100644 --- a/src/licensedcode/data/rules/attribution_1.RULE +++ b/src/licensedcode/data/rules/attribution_1.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/attribution.php +--- + http://www.opensource.org/licenses/attribution.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_1.yml b/src/licensedcode/data/rules/attribution_1.yml deleted file mode 100644 index 8d24926a4c1..00000000000 --- a/src/licensedcode/data/rules/attribution_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/attribution.php diff --git a/src/licensedcode/data/rules/attribution_10.RULE b/src/licensedcode/data/rules/attribution_10.RULE index 1c0ebbe07d5..e9b964f95e5 100644 --- a/src/licensedcode/data/rules/attribution_10.RULE +++ b/src/licensedcode/data/rules/attribution_10.RULE @@ -1 +1,7 @@ +--- +license_expression: attribution +is_license_notice: yes +relevance: 100 +--- + released under the Attribution Assurance License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_10.yml b/src/licensedcode/data/rules/attribution_10.yml deleted file mode 100644 index 4bfdf2ca0e3..00000000000 --- a/src/licensedcode/data/rules/attribution_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/attribution_11.RULE b/src/licensedcode/data/rules/attribution_11.RULE index fa9564871ee..f9b3e944286 100644 --- a/src/licensedcode/data/rules/attribution_11.RULE +++ b/src/licensedcode/data/rules/attribution_11.RULE @@ -1 +1,7 @@ +--- +license_expression: attribution +is_license_notice: yes +relevance: 100 +--- + under the Attribution Assurance License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_11.yml b/src/licensedcode/data/rules/attribution_11.yml deleted file mode 100644 index 4bfdf2ca0e3..00000000000 --- a/src/licensedcode/data/rules/attribution_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/attribution_12.RULE b/src/licensedcode/data/rules/attribution_12.RULE index 5d4ee2382ad..80b1bc09619 100644 --- a/src/licensedcode/data/rules/attribution_12.RULE +++ b/src/licensedcode/data/rules/attribution_12.RULE @@ -1 +1,7 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +--- + AAL Attribution Assurance License \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_12.yml b/src/licensedcode/data/rules/attribution_12.yml deleted file mode 100644 index efe7466d8d5..00000000000 --- a/src/licensedcode/data/rules/attribution_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/attribution_13.RULE b/src/licensedcode/data/rules/attribution_13.RULE index 0127ad47c22..2aa481c0882 100644 --- a/src/licensedcode/data/rules/attribution_13.RULE +++ b/src/licensedcode/data/rules/attribution_13.RULE @@ -1 +1,10 @@ +--- +license_expression: attribution +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Attribution Assurance License \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_13.yml b/src/licensedcode/data/rules/attribution_13.yml deleted file mode 100644 index 2c0ffa12a9c..00000000000 --- a/src/licensedcode/data/rules/attribution_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: attribution -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/attribution_14.RULE b/src/licensedcode/data/rules/attribution_14.RULE index 89a933656c9..b2e03844999 100644 --- a/src/licensedcode/data/rules/attribution_14.RULE +++ b/src/licensedcode/data/rules/attribution_14.RULE @@ -1 +1,10 @@ +--- +license_expression: attribution +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Attribution Assurance License AAL \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_14.yml b/src/licensedcode/data/rules/attribution_14.yml deleted file mode 100644 index 2c0ffa12a9c..00000000000 --- a/src/licensedcode/data/rules/attribution_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: attribution -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/attribution_15.RULE b/src/licensedcode/data/rules/attribution_15.RULE index 92b19c93016..5b48c0840af 100644 --- a/src/licensedcode/data/rules/attribution_15.RULE +++ b/src/licensedcode/data/rules/attribution_15.RULE @@ -1 +1,10 @@ +--- +license_expression: attribution +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: AAL \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_15.yml b/src/licensedcode/data/rules/attribution_15.yml deleted file mode 100644 index 4acaf128115..00000000000 --- a/src/licensedcode/data/rules/attribution_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: attribution -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/attribution_16.RULE b/src/licensedcode/data/rules/attribution_16.RULE index 4986657ff5b..48ee5174542 100644 --- a/src/licensedcode/data/rules/attribution_16.RULE +++ b/src/licensedcode/data/rules/attribution_16.RULE @@ -1 +1,10 @@ +--- +license_expression: attribution +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: AAL \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_16.yml b/src/licensedcode/data/rules/attribution_16.yml deleted file mode 100644 index 4acaf128115..00000000000 --- a/src/licensedcode/data/rules/attribution_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: attribution -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/attribution_17.RULE b/src/licensedcode/data/rules/attribution_17.RULE index 9697ff421ba..067b4570043 100644 --- a/src/licensedcode/data/rules/attribution_17.RULE +++ b/src/licensedcode/data/rules/attribution_17.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/AAL +--- + https://licenses.nuget.org/AAL \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_17.yml b/src/licensedcode/data/rules/attribution_17.yml deleted file mode 100644 index 9c320143fd5..00000000000 --- a/src/licensedcode/data/rules/attribution_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/AAL diff --git a/src/licensedcode/data/rules/attribution_18.RULE b/src/licensedcode/data/rules/attribution_18.RULE index 446e935d99e..4dcbe19670c 100644 --- a/src/licensedcode/data/rules/attribution_18.RULE +++ b/src/licensedcode/data/rules/attribution_18.RULE @@ -1 +1,7 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/AAL \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_18.yml b/src/licensedcode/data/rules/attribution_18.yml deleted file mode 100644 index efe7466d8d5..00000000000 --- a/src/licensedcode/data/rules/attribution_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/attribution_19.RULE b/src/licensedcode/data/rules/attribution_19.RULE index 33a60ac6aaf..0876140fd52 100644 --- a/src/licensedcode/data/rules/attribution_19.RULE +++ b/src/licensedcode/data/rules/attribution_19.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AAL +--- + LICENSE {{AAL}} https://spdx.org/licenses/AAL \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_19.yml b/src/licensedcode/data/rules/attribution_19.yml deleted file mode 100644 index 5020aa39831..00000000000 --- a/src/licensedcode/data/rules/attribution_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AAL diff --git a/src/licensedcode/data/rules/attribution_2.RULE b/src/licensedcode/data/rules/attribution_2.RULE index 1dc0dfcf9f8..a09ca69175c 100644 --- a/src/licensedcode/data/rules/attribution_2.RULE +++ b/src/licensedcode/data/rules/attribution_2.RULE @@ -1 +1,7 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +--- + Attribution Assurance License \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_2.yml b/src/licensedcode/data/rules/attribution_2.yml deleted file mode 100644 index efe7466d8d5..00000000000 --- a/src/licensedcode/data/rules/attribution_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/attribution_20.RULE b/src/licensedcode/data/rules/attribution_20.RULE index db8e86819f3..f7906681ace 100644 --- a/src/licensedcode/data/rules/attribution_20.RULE +++ b/src/licensedcode/data/rules/attribution_20.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AAL +--- + {{AAL}} https://spdx.org/licenses/AAL \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_20.yml b/src/licensedcode/data/rules/attribution_20.yml deleted file mode 100644 index 5020aa39831..00000000000 --- a/src/licensedcode/data/rules/attribution_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/AAL diff --git a/src/licensedcode/data/rules/attribution_3.RULE b/src/licensedcode/data/rules/attribution_3.RULE index ece8b067161..d8956953d53 100644 --- a/src/licensedcode/data/rules/attribution_3.RULE +++ b/src/licensedcode/data/rules/attribution_3.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/AAL +--- + `AAL` - [Attribution Assurance License](https://opensource.org/licenses/AAL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_3.yml b/src/licensedcode/data/rules/attribution_3.yml deleted file mode 100644 index 347e2621bbd..00000000000 --- a/src/licensedcode/data/rules/attribution_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/AAL diff --git a/src/licensedcode/data/rules/attribution_4.RULE b/src/licensedcode/data/rules/attribution_4.RULE index ce73fc751b4..05749650a5b 100644 --- a/src/licensedcode/data/rules/attribution_4.RULE +++ b/src/licensedcode/data/rules/attribution_4.RULE @@ -1,3 +1,15 @@ +--- +license_expression: attribution +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - (c) URL 'https://www.invoiceninja.com +ignorable_holders: + - URL +ignorable_urls: + - https://www.invoiceninja.com/ +--- + All Rights Reserved ATTRIBUTION ASSURANCE LICENSE (adapted from the original BSD license) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/attribution_4.yml b/src/licensedcode/data/rules/attribution_4.yml deleted file mode 100644 index 4e3a7ec1034..00000000000 --- a/src/licensedcode/data/rules/attribution_4.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: attribution -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - (c) URL 'https://www.invoiceninja.com -ignorable_holders: - - URL -ignorable_urls: - - https://www.invoiceninja.com/ diff --git a/src/licensedcode/data/rules/attribution_5.RULE b/src/licensedcode/data/rules/attribution_5.RULE index 020b75295a5..fcc33b5f66d 100644 --- a/src/licensedcode/data/rules/attribution_5.RULE +++ b/src/licensedcode/data/rules/attribution_5.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + License Attribution Assurance License \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_5.yml b/src/licensedcode/data/rules/attribution_5.yml deleted file mode 100644 index 3f1439b97aa..00000000000 --- a/src/licensedcode/data/rules/attribution_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/attribution_6.RULE b/src/licensedcode/data/rules/attribution_6.RULE index 24b2d9adfb4..06b5efbb835 100644 --- a/src/licensedcode/data/rules/attribution_6.RULE +++ b/src/licensedcode/data/rules/attribution_6.RULE @@ -1 +1,7 @@ +--- +license_expression: attribution +is_license_tag: yes +relevance: 100 +--- + License Attribution Assurance \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_6.yml b/src/licensedcode/data/rules/attribution_6.yml deleted file mode 100644 index f7d21e2669f..00000000000 --- a/src/licensedcode/data/rules/attribution_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/attribution_7.RULE b/src/licensedcode/data/rules/attribution_7.RULE index 9c72594d6c6..833528593a9 100644 --- a/src/licensedcode/data/rules/attribution_7.RULE +++ b/src/licensedcode/data/rules/attribution_7.RULE @@ -1 +1,7 @@ +--- +license_expression: attribution +is_license_tag: yes +relevance: 100 +--- + Attribution Assurance Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_7.yml b/src/licensedcode/data/rules/attribution_7.yml deleted file mode 100644 index f7d21e2669f..00000000000 --- a/src/licensedcode/data/rules/attribution_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/attribution_8.RULE b/src/licensedcode/data/rules/attribution_8.RULE index 3a558215d04..a7d51ea4ef7 100644 --- a/src/licensedcode/data/rules/attribution_8.RULE +++ b/src/licensedcode/data/rules/attribution_8.RULE @@ -1 +1,7 @@ +--- +license_expression: attribution +is_license_tag: yes +relevance: 100 +--- + Licence Attribution Assurance Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_8.yml b/src/licensedcode/data/rules/attribution_8.yml deleted file mode 100644 index f7d21e2669f..00000000000 --- a/src/licensedcode/data/rules/attribution_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/attribution_9.RULE b/src/licensedcode/data/rules/attribution_9.RULE index 1502e385311..ce3788cfc59 100644 --- a/src/licensedcode/data/rules/attribution_9.RULE +++ b/src/licensedcode/data/rules/attribution_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: attribution +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released under the Attribution Assurance License. See [LICENSE](LICENSE) for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_9.yml b/src/licensedcode/data/rules/attribution_9.yml deleted file mode 100644 index d66bb5dcdd4..00000000000 --- a/src/licensedcode/data/rules/attribution_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/attribution_url_1.RULE b/src/licensedcode/data/rules/attribution_url_1.RULE index 4240a1d6b67..1db35c5ee3c 100644 --- a/src/licensedcode/data/rules/attribution_url_1.RULE +++ b/src/licensedcode/data/rules/attribution_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/aal +--- + https://spdx.org/licenses/aal \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_url_1.yml b/src/licensedcode/data/rules/attribution_url_1.yml deleted file mode 100644 index 9b62a8878eb..00000000000 --- a/src/licensedcode/data/rules/attribution_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/aal diff --git a/src/licensedcode/data/rules/attribution_url_2.RULE b/src/licensedcode/data/rules/attribution_url_2.RULE index e79df1490c6..c85a0c38dad 100644 --- a/src/licensedcode/data/rules/attribution_url_2.RULE +++ b/src/licensedcode/data/rules/attribution_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/aal.html +--- + https://spdx.org/licenses/aal.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_url_2.yml b/src/licensedcode/data/rules/attribution_url_2.yml deleted file mode 100644 index f6dfa7da25b..00000000000 --- a/src/licensedcode/data/rules/attribution_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/aal.html diff --git a/src/licensedcode/data/rules/attribution_url_glc_252.RULE b/src/licensedcode/data/rules/attribution_url_glc_252.RULE index 1788267f7f2..320a3dbfd55 100644 --- a/src/licensedcode/data/rules/attribution_url_glc_252.RULE +++ b/src/licensedcode/data/rules/attribution_url_glc_252.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/attribution +--- + http://www.opensource.org/licenses/attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_url_glc_252.yml b/src/licensedcode/data/rules/attribution_url_glc_252.yml deleted file mode 100644 index b4cba007d7f..00000000000 --- a/src/licensedcode/data/rules/attribution_url_glc_252.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/attribution diff --git a/src/licensedcode/data/rules/attribution_url_glc_253.RULE b/src/licensedcode/data/rules/attribution_url_glc_253.RULE index 03d0abfc1b0..7aeffd4d047 100644 --- a/src/licensedcode/data/rules/attribution_url_glc_253.RULE +++ b/src/licensedcode/data/rules/attribution_url_glc_253.RULE @@ -1 +1,9 @@ +--- +license_expression: attribution +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/attribution +--- + https://www.opensource.org/licenses/attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/attribution_url_glc_253.yml b/src/licensedcode/data/rules/attribution_url_glc_253.yml deleted file mode 100644 index cf3e3338db4..00000000000 --- a/src/licensedcode/data/rules/attribution_url_glc_253.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: attribution -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/attribution diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_1.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_1.RULE index 704747138c6..9d09ae550be 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_text: yes +--- + Autoconf Exception As a special exception, the Free Software Foundation gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of Autoconf appear in them. The GNU General Public License (GPL) does govern all other use of the material that constitutes the Autoconf program. diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_1.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_1.yml deleted file mode 100644 index 9f32036ef94..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_2.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_2.RULE index 95a4e025e7f..09b6c2d23a7 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Autoconf exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_2.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_2.yml deleted file mode 100644 index d3864a74d28..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_3.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_3.RULE index e497d8fe495..8c6a11548a3 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Autoconf-exception-2.0 Autoconf exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_3.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_3.yml deleted file mode 100644 index d3864a74d28..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_4.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_4.RULE index 43e5c7a80d4..8bab008eacf 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_4.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_4.yml deleted file mode 100644 index 41907efde9a..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_5.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_5.RULE index 6b3422de419..cc9d153b6d9 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_5.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_5.yml deleted file mode 100644 index 41907efde9a..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_6.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_6.RULE index 064cf1ebce0..ab256b70505 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Autoconf-exception-2.0 +--- + https://licenses.nuget.org/Autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_6.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_6.yml deleted file mode 100644 index a9b8947a205..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Autoconf-exception-2.0 diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_7.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_7.RULE index 155659f8551..0def762d2ca 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_7.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_7.yml deleted file mode 100644 index a50d21c52ad..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_8.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_8.RULE index 27991f412a4..afc35d4ce77 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Autoconf-exception-2.0 +--- + LICENSE {{Autoconf-exception-2.0}} https://spdx.org/licenses/Autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_8.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_8.yml deleted file mode 100644 index b1e2e08798a..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Autoconf-exception-2.0 diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_9.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_9.RULE index 5f38df8b986..4c45c115181 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Autoconf-exception-2.0 +--- + {{Autoconf-exception-2.0}} https://spdx.org/licenses/Autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_9.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_9.yml deleted file mode 100644 index b1e2e08798a..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Autoconf-exception-2.0 diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_url_1.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_url_1.RULE index a98da2a6224..ec4338ab2be 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/autoconf-exception-2.0 +--- + https://spdx.org/licenses/autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_url_1.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_url_1.yml deleted file mode 100644 index e8f016490c9..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/autoconf-exception-2.0 diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_url_2.RULE b/src/licensedcode/data/rules/autoconf-exception-2.0_url_2.RULE index 25149f7be22..3391acc6e5a 100644 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/autoconf-exception-2.0.html +--- + https://spdx.org/licenses/autoconf-exception-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-2.0_url_2.yml b/src/licensedcode/data/rules/autoconf-exception-2.0_url_2.yml deleted file mode 100644 index 2458fb5eafa..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/autoconf-exception-2.0.html diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_1.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_1.RULE index f9b886a0ecf..c9ef7aa065e 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_1.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/autoconf-exception-3.0.html +--- + http://www.gnu.org/licenses/autoconf-exception-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_1.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_1.yml deleted file mode 100644 index 997480706d2..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/autoconf-exception-3.0.html diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_10.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_10.RULE index fdb7d9ae6f9..00fcfdacdcc 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_10.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_10.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_10.yml deleted file mode 100644 index 349d0eb028e..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_11.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_11.RULE index aa59280e69e..6c63508fab7 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_11.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_11.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_11.yml deleted file mode 100644 index 349d0eb028e..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_12.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_12.RULE index 0872428b3dd..ddd7f50d6dc 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_12.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Autoconf-exception-3.0 +--- + https://licenses.nuget.org/Autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_12.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_12.yml deleted file mode 100644 index 23530409eb4..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Autoconf-exception-3.0 diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_13.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_13.RULE index 5e7c5725edd..d13b17fa793 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_13.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_13.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_13.yml deleted file mode 100644 index c011f7ddb27..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_14.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_14.RULE index 37e74c8ce05..b36642f5c3f 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_14.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Autoconf-exception-3.0 +--- + {{Autoconf-exception-3.0}} https://spdx.org/licenses/Autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_14.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_14.yml deleted file mode 100644 index 679259d773c..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Autoconf-exception-3.0 diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_15.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_15.RULE index acde5b7c456..3417b2521c8 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_15.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Autoconf-exception-3.0 +--- + LICENSE {{Autoconf-exception-3.0}} https://spdx.org/licenses/Autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_15.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_15.yml deleted file mode 100644 index 679259d773c..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Autoconf-exception-3.0 diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_2.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_2.RULE index 07e7ff0024d..2b26cab5579 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_2.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/autoconf-exception-3.0.html +--- + https://www.gnu.org/licenses/autoconf-exception-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_2.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_2.yml deleted file mode 100644 index 3149a40eee8..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/autoconf-exception-3.0.html diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_3.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_3.RULE index 654b7815090..ba165c320fe 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_3.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_3.RULE @@ -1 +1,8 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 99 +notes: See https://www.gnu.org/licenses/exceptions.en.html +--- + Autoconf Configure Script Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_3.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_3.yml deleted file mode 100644 index 027474f624c..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 99 -notes: See https://www.gnu.org/licenses/exceptions.en.html diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_4.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_4.RULE index b4e6110e0b2..6ae991f2b00 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_4.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +--- + Autoconf Configure Script Exception v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_4.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_4.yml deleted file mode 100644 index c011f7ddb27..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_5.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_5.RULE index 47048cc2d48..1ade7f861f1 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_5.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +--- + AUTOCONF CONFIGURE SCRIPT EXCEPTION Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_5.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_5.yml deleted file mode 100644 index c011f7ddb27..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_6.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_6.RULE index 4d0db205434..feb91912450 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_6.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +notes: See https://www.gnu.org/licenses/exceptions.en.html +ignorable_urls: + - https://www.gnu.org/licenses/autoconf-exception.html +--- + https://www.gnu.org/licenses/autoconf-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_6.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_6.yml deleted file mode 100644 index d490341d666..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 -notes: See https://www.gnu.org/licenses/exceptions.en.html -ignorable_urls: - - https://www.gnu.org/licenses/autoconf-exception.html diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_7.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_7.RULE index 7f13e2f2f4d..cfe3235eb33 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_7.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 99 +--- + Autoconf exception: \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_7.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_7.yml deleted file mode 100644 index a8d3d2617cf..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_8.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_8.RULE index 3f79100affb..fa23614d4de 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_8.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Autoconf exception 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_8.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_8.yml deleted file mode 100644 index 236eaa7f648..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_9.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_9.RULE index cfb6069bc62..7cbdbff5fc7 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_9.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Autoconf-exception-3.0 Autoconf exception 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_9.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_9.yml deleted file mode 100644 index 236eaa7f648..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_url_1.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_url_1.RULE index 9979abd0a25..b72f27b1fa2 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/autoconf-exception-3.0 +--- + https://spdx.org/licenses/autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_url_1.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_url_1.yml deleted file mode 100644 index ab58f2e1b77..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/autoconf-exception-3.0 diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_url_2.RULE b/src/licensedcode/data/rules/autoconf-exception-3.0_url_2.RULE index 95712bc1af2..f6395a68ea4 100644 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/autoconf-exception-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/autoconf-exception-3.0.html +--- + https://spdx.org/licenses/autoconf-exception-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-exception-3.0_url_2.yml b/src/licensedcode/data/rules/autoconf-exception-3.0_url_2.yml deleted file mode 100644 index df8b129897f..00000000000 --- a/src/licensedcode/data/rules/autoconf-exception-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/autoconf-exception-3.0.html diff --git a/src/licensedcode/data/rules/autoconf-macro-exception_1.RULE b/src/licensedcode/data/rules/autoconf-macro-exception_1.RULE index 92794a30f7b..cff010c82b8 100644 --- a/src/licensedcode/data/rules/autoconf-macro-exception_1.RULE +++ b/src/licensedcode/data/rules/autoconf-macro-exception_1.RULE @@ -1,4 +1,9 @@ +--- +license_expression: autoconf-macro-exception +is_license_notice: yes +--- + As a special exception, the you may copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public -License when using or distributing such scripts. +License when using or distributing such scripts. \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-macro-exception_1.yml b/src/licensedcode/data/rules/autoconf-macro-exception_1.yml deleted file mode 100644 index 2682eafa542..00000000000 --- a/src/licensedcode/data/rules/autoconf-macro-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: autoconf-macro-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/autoconf-macro-exception_2.RULE b/src/licensedcode/data/rules/autoconf-macro-exception_2.RULE index 5f35480308a..83a5c805e5c 100644 --- a/src/licensedcode/data/rules/autoconf-macro-exception_2.RULE +++ b/src/licensedcode/data/rules/autoconf-macro-exception_2.RULE @@ -1,7 +1,12 @@ +--- +license_expression: autoconf-macro-exception +is_license_notice: yes +--- + As a special exception, the above copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of the Macro appear in them. The GNU General Public License (GPL) does govern - all other use of the material that constitutes the Autoconf Macro. + all other use of the material that constitutes the Autoconf Macro. \ No newline at end of file diff --git a/src/licensedcode/data/rules/autoconf-macro-exception_2.yml b/src/licensedcode/data/rules/autoconf-macro-exception_2.yml deleted file mode 100644 index 2682eafa542..00000000000 --- a/src/licensedcode/data/rules/autoconf-macro-exception_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: autoconf-macro-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/autoconf-simple-exception-2.0_1.RULE b/src/licensedcode/data/rules/autoconf-simple-exception-2.0_1.RULE index 78dfb2490b6..628fd9da8ca 100644 --- a/src/licensedcode/data/rules/autoconf-simple-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/autoconf-simple-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: autoconf-simple-exception-2.0 +is_license_text: yes +relevance: 100 +--- + As a special exception to the FreeType project license, this file may be distributed as part of a program that contains a configuration script generated by Autoconf, under the same distribution terms as the rest of diff --git a/src/licensedcode/data/rules/autoconf-simple-exception-2.0_1.yml b/src/licensedcode/data/rules/autoconf-simple-exception-2.0_1.yml deleted file mode 100644 index 89dce5bdaef..00000000000 --- a/src/licensedcode/data/rules/autoconf-simple-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: autoconf-simple-exception-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/autoconf-simple-exception-2.0_2.RULE b/src/licensedcode/data/rules/autoconf-simple-exception-2.0_2.RULE index 7bf539ed0e9..1b39165e47d 100644 --- a/src/licensedcode/data/rules/autoconf-simple-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/autoconf-simple-exception-2.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: autoconf-simple-exception-2.0 +is_license_text: yes +relevance: 100 +--- + As a special exception, this file may be distributed as part of a program that contains a configuration script generated by Autoconf, under the same distribution terms as the rest of diff --git a/src/licensedcode/data/rules/autoconf-simple-exception-2.0_2.yml b/src/licensedcode/data/rules/autoconf-simple-exception-2.0_2.yml deleted file mode 100644 index 89dce5bdaef..00000000000 --- a/src/licensedcode/data/rules/autoconf-simple-exception-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: autoconf-simple-exception-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bahyph_1.RULE b/src/licensedcode/data/rules/bahyph_1.RULE index fef5e0a94e1..265a059f66c 100644 --- a/src/licensedcode/data/rules/bahyph_1.RULE +++ b/src/licensedcode/data/rules/bahyph_1.RULE @@ -1 +1,10 @@ +--- +license_expression: bahyph +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Bahyph License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_1.yml b/src/licensedcode/data/rules/bahyph_1.yml deleted file mode 100644 index a228eca52ce..00000000000 --- a/src/licensedcode/data/rules/bahyph_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bahyph_10.RULE b/src/licensedcode/data/rules/bahyph_10.RULE index 028d14223b5..36e56a81723 100644 --- a/src/licensedcode/data/rules/bahyph_10.RULE +++ b/src/licensedcode/data/rules/bahyph_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bahyph +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Bahyph +--- + LICENSE {{Bahyph}} https://spdx.org/licenses/Bahyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_10.yml b/src/licensedcode/data/rules/bahyph_10.yml deleted file mode 100644 index 48aa33a3da6..00000000000 --- a/src/licensedcode/data/rules/bahyph_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Bahyph diff --git a/src/licensedcode/data/rules/bahyph_11.RULE b/src/licensedcode/data/rules/bahyph_11.RULE index 2ebabfa258c..76d820413e8 100644 --- a/src/licensedcode/data/rules/bahyph_11.RULE +++ b/src/licensedcode/data/rules/bahyph_11.RULE @@ -1 +1,9 @@ +--- +license_expression: bahyph +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Bahyph +--- + {{Bahyph}} https://spdx.org/licenses/Bahyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_11.yml b/src/licensedcode/data/rules/bahyph_11.yml deleted file mode 100644 index 48aa33a3da6..00000000000 --- a/src/licensedcode/data/rules/bahyph_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Bahyph diff --git a/src/licensedcode/data/rules/bahyph_2.RULE b/src/licensedcode/data/rules/bahyph_2.RULE index 80af8cca02d..6c3b813af19 100644 --- a/src/licensedcode/data/rules/bahyph_2.RULE +++ b/src/licensedcode/data/rules/bahyph_2.RULE @@ -1 +1,10 @@ +--- +license_expression: bahyph +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Bahyph License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_2.yml b/src/licensedcode/data/rules/bahyph_2.yml deleted file mode 100644 index a228eca52ce..00000000000 --- a/src/licensedcode/data/rules/bahyph_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bahyph_3.RULE b/src/licensedcode/data/rules/bahyph_3.RULE index f92c95e0a24..15187c2c97d 100644 --- a/src/licensedcode/data/rules/bahyph_3.RULE +++ b/src/licensedcode/data/rules/bahyph_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bahyph +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Bahyph Bahyph License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_3.yml b/src/licensedcode/data/rules/bahyph_3.yml deleted file mode 100644 index a228eca52ce..00000000000 --- a/src/licensedcode/data/rules/bahyph_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bahyph_4.RULE b/src/licensedcode/data/rules/bahyph_4.RULE index d8c4ec54461..dcb3c9b3951 100644 --- a/src/licensedcode/data/rules/bahyph_4.RULE +++ b/src/licensedcode/data/rules/bahyph_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bahyph +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Bahyph License Bahyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_4.yml b/src/licensedcode/data/rules/bahyph_4.yml deleted file mode 100644 index a228eca52ce..00000000000 --- a/src/licensedcode/data/rules/bahyph_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bahyph_5.RULE b/src/licensedcode/data/rules/bahyph_5.RULE index 96b3944a716..fd22ddc1424 100644 --- a/src/licensedcode/data/rules/bahyph_5.RULE +++ b/src/licensedcode/data/rules/bahyph_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bahyph +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Bahyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_5.yml b/src/licensedcode/data/rules/bahyph_5.yml deleted file mode 100644 index cb8c6e87c01..00000000000 --- a/src/licensedcode/data/rules/bahyph_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bahyph -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bahyph_6.RULE b/src/licensedcode/data/rules/bahyph_6.RULE index 3eca493f3e4..dbf13ce8d65 100644 --- a/src/licensedcode/data/rules/bahyph_6.RULE +++ b/src/licensedcode/data/rules/bahyph_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bahyph +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Bahyph License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_6.yml b/src/licensedcode/data/rules/bahyph_6.yml deleted file mode 100644 index cb8c6e87c01..00000000000 --- a/src/licensedcode/data/rules/bahyph_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bahyph -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bahyph_7.RULE b/src/licensedcode/data/rules/bahyph_7.RULE index e3fa265f5a2..e3a6aa917b9 100644 --- a/src/licensedcode/data/rules/bahyph_7.RULE +++ b/src/licensedcode/data/rules/bahyph_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bahyph +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Bahyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_7.yml b/src/licensedcode/data/rules/bahyph_7.yml deleted file mode 100644 index cb8c6e87c01..00000000000 --- a/src/licensedcode/data/rules/bahyph_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bahyph -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bahyph_8.RULE b/src/licensedcode/data/rules/bahyph_8.RULE index da88d224b52..001bab9740b 100644 --- a/src/licensedcode/data/rules/bahyph_8.RULE +++ b/src/licensedcode/data/rules/bahyph_8.RULE @@ -1 +1,9 @@ +--- +license_expression: bahyph +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Bahyph +--- + https://licenses.nuget.org/Bahyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_8.yml b/src/licensedcode/data/rules/bahyph_8.yml deleted file mode 100644 index d36fe3d5173..00000000000 --- a/src/licensedcode/data/rules/bahyph_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Bahyph diff --git a/src/licensedcode/data/rules/bahyph_9.RULE b/src/licensedcode/data/rules/bahyph_9.RULE index 6c84b7c9aa8..4a3b5149620 100644 --- a/src/licensedcode/data/rules/bahyph_9.RULE +++ b/src/licensedcode/data/rules/bahyph_9.RULE @@ -1 +1,7 @@ +--- +license_expression: bahyph +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Bahyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_9.yml b/src/licensedcode/data/rules/bahyph_9.yml deleted file mode 100644 index 32e5496b0cd..00000000000 --- a/src/licensedcode/data/rules/bahyph_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bahyph_url_1.RULE b/src/licensedcode/data/rules/bahyph_url_1.RULE index 30de5f54f89..c8361e62b36 100644 --- a/src/licensedcode/data/rules/bahyph_url_1.RULE +++ b/src/licensedcode/data/rules/bahyph_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bahyph +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bahyph +--- + https://spdx.org/licenses/bahyph \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_url_1.yml b/src/licensedcode/data/rules/bahyph_url_1.yml deleted file mode 100644 index a6b625de158..00000000000 --- a/src/licensedcode/data/rules/bahyph_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bahyph diff --git a/src/licensedcode/data/rules/bahyph_url_2.RULE b/src/licensedcode/data/rules/bahyph_url_2.RULE index 65b0c54f041..59e1a126857 100644 --- a/src/licensedcode/data/rules/bahyph_url_2.RULE +++ b/src/licensedcode/data/rules/bahyph_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bahyph +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bahyph.html +--- + https://spdx.org/licenses/bahyph.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bahyph_url_2.yml b/src/licensedcode/data/rules/bahyph_url_2.yml deleted file mode 100644 index e4e363bdc6b..00000000000 --- a/src/licensedcode/data/rules/bahyph_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bahyph -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bahyph.html diff --git a/src/licensedcode/data/rules/bakoma-fonts-1995_1.RULE b/src/licensedcode/data/rules/bakoma-fonts-1995_1.RULE index 8649b458036..0ec1103c322 100644 --- a/src/licensedcode/data/rules/bakoma-fonts-1995_1.RULE +++ b/src/licensedcode/data/rules/bakoma-fonts-1995_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bakoma-fonts-1995 +is_license_notice: yes +ignorable_urls: + - http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma +--- + Permission to copy and distribute these fonts for any purpose is hereby granted without fee, provided that the above copyright notice, author statement and this permission notice appear in all copies of @@ -11,4 +18,4 @@ Permission to use these fonts (embedding into PostScript, PDF, SVG and printing by using any software) is hereby granted without fee. - It is not required to provide any notices about using these fonts. + It is not required to provide any notices about using these fonts. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bakoma-fonts-1995_1.yml b/src/licensedcode/data/rules/bakoma-fonts-1995_1.yml deleted file mode 100644 index 0d5fe318518..00000000000 --- a/src/licensedcode/data/rules/bakoma-fonts-1995_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bakoma-fonts-1995 -is_license_notice: yes -ignorable_urls: - - http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma diff --git a/src/licensedcode/data/rules/bapl-1.0_1.RULE b/src/licensedcode/data/rules/bapl-1.0_1.RULE index 0281c8073cf..c3e92142258 100644 --- a/src/licensedcode/data/rules/bapl-1.0_1.RULE +++ b/src/licensedcode/data/rules/bapl-1.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: bapl-1.0 +is_license_notice: yes +ignorable_urls: + - http://boozallen.github.io/licenses/bapl +--- + This software package is licensed under the Booz Allen Public License. The license can be found in the License file or at http://boozallen.github.io/licenses/bapl \ No newline at end of file diff --git a/src/licensedcode/data/rules/bapl-1.0_1.yml b/src/licensedcode/data/rules/bapl-1.0_1.yml deleted file mode 100644 index 2a316101c27..00000000000 --- a/src/licensedcode/data/rules/bapl-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bapl-1.0 -is_license_notice: yes -ignorable_urls: - - http://boozallen.github.io/licenses/bapl diff --git a/src/licensedcode/data/rules/bapl-1.0_2.RULE b/src/licensedcode/data/rules/bapl-1.0_2.RULE index f7f19c08efb..0751b9e5c11 100644 --- a/src/licensedcode/data/rules/bapl-1.0_2.RULE +++ b/src/licensedcode/data/rules/bapl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bapl-1.0 +is_license_notice: yes +relevance: 100 +--- + This software package is licensed under the Booz Allen Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bapl-1.0_2.yml b/src/licensedcode/data/rules/bapl-1.0_2.yml deleted file mode 100644 index 67586430ff6..00000000000 --- a/src/licensedcode/data/rules/bapl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bapl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bapl-1.0_3.RULE b/src/licensedcode/data/rules/bapl-1.0_3.RULE index 2441fe0018a..cf9db851f16 100644 --- a/src/licensedcode/data/rules/bapl-1.0_3.RULE +++ b/src/licensedcode/data/rules/bapl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bapl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://boozallen.github.io/licenses/bapl +--- + http://boozallen.github.io/licenses/bapl \ No newline at end of file diff --git a/src/licensedcode/data/rules/bapl-1.0_3.yml b/src/licensedcode/data/rules/bapl-1.0_3.yml deleted file mode 100644 index 45c6c633c31..00000000000 --- a/src/licensedcode/data/rules/bapl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bapl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://boozallen.github.io/licenses/bapl diff --git a/src/licensedcode/data/rules/bapl-1.0_4.RULE b/src/licensedcode/data/rules/bapl-1.0_4.RULE index 900304f69a5..7542626ed5e 100644 --- a/src/licensedcode/data/rules/bapl-1.0_4.RULE +++ b/src/licensedcode/data/rules/bapl-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bapl-1.0 +is_license_reference: yes +relevance: 100 +--- + Booz Allen Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bapl-1.0_4.yml b/src/licensedcode/data/rules/bapl-1.0_4.yml deleted file mode 100644 index 9c45b5fc9d3..00000000000 --- a/src/licensedcode/data/rules/bapl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bapl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/barr-tex_1.RULE b/src/licensedcode/data/rules/barr-tex_1.RULE index b760599b9df..4d5bbe39956 100644 --- a/src/licensedcode/data/rules/barr-tex_1.RULE +++ b/src/licensedcode/data/rules/barr-tex_1.RULE @@ -1 +1,10 @@ +--- +license_expression: barr-tex +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Barr License \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_1.yml b/src/licensedcode/data/rules/barr-tex_1.yml deleted file mode 100644 index f7b101c8671..00000000000 --- a/src/licensedcode/data/rules/barr-tex_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/barr-tex_10.RULE b/src/licensedcode/data/rules/barr-tex_10.RULE index daf80cfca88..ea36687b9fb 100644 --- a/src/licensedcode/data/rules/barr-tex_10.RULE +++ b/src/licensedcode/data/rules/barr-tex_10.RULE @@ -1 +1,9 @@ +--- +license_expression: barr-tex +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Barr +--- + {{Barr}} https://spdx.org/licenses/Barr \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_10.yml b/src/licensedcode/data/rules/barr-tex_10.yml deleted file mode 100644 index 083a80fbd5a..00000000000 --- a/src/licensedcode/data/rules/barr-tex_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Barr diff --git a/src/licensedcode/data/rules/barr-tex_11.RULE b/src/licensedcode/data/rules/barr-tex_11.RULE index 08a128a168a..99afbae4006 100644 --- a/src/licensedcode/data/rules/barr-tex_11.RULE +++ b/src/licensedcode/data/rules/barr-tex_11.RULE @@ -1 +1,9 @@ +--- +license_expression: barr-tex +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Barr +--- + LICENSE {{Barr}} https://spdx.org/licenses/Barr \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_11.yml b/src/licensedcode/data/rules/barr-tex_11.yml deleted file mode 100644 index 083a80fbd5a..00000000000 --- a/src/licensedcode/data/rules/barr-tex_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Barr diff --git a/src/licensedcode/data/rules/barr-tex_2.RULE b/src/licensedcode/data/rules/barr-tex_2.RULE index 99c0b65bc6c..21c15793296 100644 --- a/src/licensedcode/data/rules/barr-tex_2.RULE +++ b/src/licensedcode/data/rules/barr-tex_2.RULE @@ -1 +1,10 @@ +--- +license_expression: barr-tex +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Barr License \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_2.yml b/src/licensedcode/data/rules/barr-tex_2.yml deleted file mode 100644 index f7b101c8671..00000000000 --- a/src/licensedcode/data/rules/barr-tex_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/barr-tex_3.RULE b/src/licensedcode/data/rules/barr-tex_3.RULE index deb7ab84476..ce7a9531330 100644 --- a/src/licensedcode/data/rules/barr-tex_3.RULE +++ b/src/licensedcode/data/rules/barr-tex_3.RULE @@ -1 +1,10 @@ +--- +license_expression: barr-tex +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Barr Barr License \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_3.yml b/src/licensedcode/data/rules/barr-tex_3.yml deleted file mode 100644 index f7b101c8671..00000000000 --- a/src/licensedcode/data/rules/barr-tex_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/barr-tex_4.RULE b/src/licensedcode/data/rules/barr-tex_4.RULE index 9390fc24b0c..060f14f8367 100644 --- a/src/licensedcode/data/rules/barr-tex_4.RULE +++ b/src/licensedcode/data/rules/barr-tex_4.RULE @@ -1 +1,10 @@ +--- +license_expression: barr-tex +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Barr License Barr \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_4.yml b/src/licensedcode/data/rules/barr-tex_4.yml deleted file mode 100644 index f7b101c8671..00000000000 --- a/src/licensedcode/data/rules/barr-tex_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/barr-tex_5.RULE b/src/licensedcode/data/rules/barr-tex_5.RULE index a330f52253c..9f285d88ff7 100644 --- a/src/licensedcode/data/rules/barr-tex_5.RULE +++ b/src/licensedcode/data/rules/barr-tex_5.RULE @@ -1 +1,10 @@ +--- +license_expression: barr-tex +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Barr \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_5.yml b/src/licensedcode/data/rules/barr-tex_5.yml deleted file mode 100644 index e4972294cb7..00000000000 --- a/src/licensedcode/data/rules/barr-tex_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: barr-tex -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/barr-tex_6.RULE b/src/licensedcode/data/rules/barr-tex_6.RULE index 33174e14f2f..5dcc77a2be5 100644 --- a/src/licensedcode/data/rules/barr-tex_6.RULE +++ b/src/licensedcode/data/rules/barr-tex_6.RULE @@ -1 +1,10 @@ +--- +license_expression: barr-tex +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Barr License \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_6.yml b/src/licensedcode/data/rules/barr-tex_6.yml deleted file mode 100644 index e4972294cb7..00000000000 --- a/src/licensedcode/data/rules/barr-tex_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: barr-tex -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/barr-tex_7.RULE b/src/licensedcode/data/rules/barr-tex_7.RULE index b17b0ecc7bb..67a8c7fc5c9 100644 --- a/src/licensedcode/data/rules/barr-tex_7.RULE +++ b/src/licensedcode/data/rules/barr-tex_7.RULE @@ -1 +1,10 @@ +--- +license_expression: barr-tex +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Barr \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_7.yml b/src/licensedcode/data/rules/barr-tex_7.yml deleted file mode 100644 index e4972294cb7..00000000000 --- a/src/licensedcode/data/rules/barr-tex_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: barr-tex -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/barr-tex_8.RULE b/src/licensedcode/data/rules/barr-tex_8.RULE index 7f49f9ec686..c28c45baee2 100644 --- a/src/licensedcode/data/rules/barr-tex_8.RULE +++ b/src/licensedcode/data/rules/barr-tex_8.RULE @@ -1 +1,9 @@ +--- +license_expression: barr-tex +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Barr +--- + https://licenses.nuget.org/Barr \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_8.yml b/src/licensedcode/data/rules/barr-tex_8.yml deleted file mode 100644 index 5eb60ef9be9..00000000000 --- a/src/licensedcode/data/rules/barr-tex_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Barr diff --git a/src/licensedcode/data/rules/barr-tex_9.RULE b/src/licensedcode/data/rules/barr-tex_9.RULE index 3007fe604e4..d8951bbc615 100644 --- a/src/licensedcode/data/rules/barr-tex_9.RULE +++ b/src/licensedcode/data/rules/barr-tex_9.RULE @@ -1 +1,7 @@ +--- +license_expression: barr-tex +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Barr \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_9.yml b/src/licensedcode/data/rules/barr-tex_9.yml deleted file mode 100644 index 468f527a7a0..00000000000 --- a/src/licensedcode/data/rules/barr-tex_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/barr-tex_url_1.RULE b/src/licensedcode/data/rules/barr-tex_url_1.RULE index 5f7f1621cd3..bdef04f2c10 100644 --- a/src/licensedcode/data/rules/barr-tex_url_1.RULE +++ b/src/licensedcode/data/rules/barr-tex_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: barr-tex +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/barr +--- + https://spdx.org/licenses/barr \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_url_1.yml b/src/licensedcode/data/rules/barr-tex_url_1.yml deleted file mode 100644 index d40886c3718..00000000000 --- a/src/licensedcode/data/rules/barr-tex_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/barr diff --git a/src/licensedcode/data/rules/barr-tex_url_2.RULE b/src/licensedcode/data/rules/barr-tex_url_2.RULE index 689f051560e..31b0ed8fd98 100644 --- a/src/licensedcode/data/rules/barr-tex_url_2.RULE +++ b/src/licensedcode/data/rules/barr-tex_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: barr-tex +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/barr.html +--- + https://spdx.org/licenses/barr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/barr-tex_url_2.yml b/src/licensedcode/data/rules/barr-tex_url_2.yml deleted file mode 100644 index 3a3e0db5c9c..00000000000 --- a/src/licensedcode/data/rules/barr-tex_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: barr-tex -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/barr.html diff --git a/src/licensedcode/data/rules/base64_multichoice.RULE b/src/licensedcode/data/rules/base64_multichoice.RULE index a49efbd7a19..1e5d0782509 100644 --- a/src/licensedcode/data/rules/base64_multichoice.RULE +++ b/src/licensedcode/data/rules/base64_multichoice.RULE @@ -1,3 +1,19 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR agpl-3.0-plus OR apache-2.0 + OR bsd-new OR mit +is_license_notice: yes +minimum_coverage: 95 +notes: seen in http://www.source-code.biz/base64coder/java/Base64Coder.java.txt +ignorable_urls: + - http://www.apache.org/licenses + - http://www.eclipse.org/legal + - http://www.gnu.org/licenses/agpl.html + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html + - http://www.opensource.org/licenses/MIT + - http://www.opensource.org/licenses/bsd-license.php +--- + // This module is multi-licensed and may be used under the terms // of any of the following licenses: // diff --git a/src/licensedcode/data/rules/base64_multichoice.yml b/src/licensedcode/data/rules/base64_multichoice.yml deleted file mode 100644 index f30b9c7cb1d..00000000000 --- a/src/licensedcode/data/rules/base64_multichoice.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR agpl-3.0-plus OR apache-2.0 - OR bsd-new OR mit -is_license_notice: yes -minimum_coverage: 95 -notes: seen in http://www.source-code.biz/base64coder/java/Base64Coder.java.txt -ignorable_urls: - - http://www.apache.org/licenses - - http://www.eclipse.org/legal - - http://www.gnu.org/licenses/agpl.html - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html - - http://www.opensource.org/licenses/MIT - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/beautifulsoup4_mit.RULE b/src/licensedcode/data/rules/beautifulsoup4_mit.RULE index d82f5dc1527..e0ba9ad9405 100644 --- a/src/licensedcode/data/rules/beautifulsoup4_mit.RULE +++ b/src/licensedcode/data/rules/beautifulsoup4_mit.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +notes: this variant has the word DAMMIT inside, so we set relevance to less than 100 note that + the author has since switchted to a proper MIT license +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -17,5 +26,4 @@ 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, DAMMIT. - + SOFTWARE, DAMMIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/beautifulsoup4_mit.yml b/src/licensedcode/data/rules/beautifulsoup4_mit.yml deleted file mode 100644 index c03d2636392..00000000000 --- a/src/licensedcode/data/rules/beautifulsoup4_mit.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -notes: this variant has the word DAMMIT inside, so we set relevance to less than 100 note that - the author has since switchted to a proper MIT license diff --git a/src/licensedcode/data/rules/beautifulsoup4_mit2.RULE b/src/licensedcode/data/rules/beautifulsoup4_mit2.RULE index 9e992b19799..7d27ad41cf2 100644 --- a/src/licensedcode/data/rules/beautifulsoup4_mit2.RULE +++ b/src/licensedcode/data/rules/beautifulsoup4_mit2.RULE @@ -1 +1,7 @@ -made available under the MIT license: +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +made available under the MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/beautifulsoup4_mit2.yml b/src/licensedcode/data/rules/beautifulsoup4_mit2.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/beautifulsoup4_mit2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/beautifulsoup_bsd.RULE b/src/licensedcode/data/rules/beautifulsoup_bsd.RULE index c6b032ca96e..6dd1b82fc23 100644 --- a/src/licensedcode/data/rules/beautifulsoup_bsd.RULE +++ b/src/licensedcode/data/rules/beautifulsoup_bsd.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: this variant has the word DAMMIT inside, so we set relevance to less than 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -25,4 +32,4 @@ 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, DAMMIT. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE, DAMMIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/beautifulsoup_bsd.yml b/src/licensedcode/data/rules/beautifulsoup_bsd.yml deleted file mode 100644 index b195f28062d..00000000000 --- a/src/licensedcode/data/rules/beautifulsoup_bsd.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: this variant has the word DAMMIT inside, so we set relevance to less than 100 diff --git a/src/licensedcode/data/rules/beerware.RULE b/src/licensedcode/data/rules/beerware.RULE index c7d86b1f33d..9db3a21fe26 100644 --- a/src/licensedcode/data/rules/beerware.RULE +++ b/src/licensedcode/data/rules/beerware.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://people.freebsd.org/~phk/ +--- + http://people.freebsd.org/~phk/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware.yml b/src/licensedcode/data/rules/beerware.yml deleted file mode 100644 index 20516e3c23b..00000000000 --- a/src/licensedcode/data/rules/beerware.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://people.freebsd.org/~phk/ diff --git a/src/licensedcode/data/rules/beerware_1.RULE b/src/licensedcode/data/rules/beerware_1.RULE index c09e68be35b..c81a37a1a85 100644 --- a/src/licensedcode/data/rules/beerware_1.RULE +++ b/src/licensedcode/data/rules/beerware_1.RULE @@ -1,4 +1,11 @@ +--- +license_expression: beerware +is_license_notice: yes +ignorable_emails: + - phk@login.dknet.dk +--- + * "THE BEER-WARE LICENSE" (Revision 42): * wrote this file. As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think - * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp + * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_1.yml b/src/licensedcode/data/rules/beerware_1.yml deleted file mode 100644 index 8438cff6f35..00000000000 --- a/src/licensedcode/data/rules/beerware_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: beerware -is_license_notice: yes -ignorable_emails: - - phk@login.dknet.dk diff --git a/src/licensedcode/data/rules/beerware_10.RULE b/src/licensedcode/data/rules/beerware_10.RULE index 2e0fe45dc33..965129878e1 100644 --- a/src/licensedcode/data/rules/beerware_10.RULE +++ b/src/licensedcode/data/rules/beerware_10.RULE @@ -1 +1,7 @@ +--- +license_expression: beerware +is_license_notice: yes +relevance: 100 +--- + released under the "beerware" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_10.yml b/src/licensedcode/data/rules/beerware_10.yml deleted file mode 100644 index da42ff7ba7d..00000000000 --- a/src/licensedcode/data/rules/beerware_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: beerware -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/beerware_11.RULE b/src/licensedcode/data/rules/beerware_11.RULE index a75101ebea7..83f7f8cbf86 100644 --- a/src/licensedcode/data/rules/beerware_11.RULE +++ b/src/licensedcode/data/rules/beerware_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: beerware +is_license_text: yes +relevance: 100 +--- + THE BEERWARE LICENSE (Revision 42) wrote this code. As long as you retain this notice, you can do whatever you want with this stuff. If we diff --git a/src/licensedcode/data/rules/beerware_11.yml b/src/licensedcode/data/rules/beerware_11.yml deleted file mode 100644 index 2a2891cae84..00000000000 --- a/src/licensedcode/data/rules/beerware_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: beerware -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/beerware_12.RULE b/src/licensedcode/data/rules/beerware_12.RULE index a48e71947b4..8739bc92e62 100644 --- a/src/licensedcode/data/rules/beerware_12.RULE +++ b/src/licensedcode/data/rules/beerware_12.RULE @@ -1 +1,8 @@ +--- +license_expression: beerware +is_license_tag: yes +relevance: 90 +notes: seen in https://github.com/tumb1er/coverage2clover/blob/master/setup.py +--- + license="Beer License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_12.yml b/src/licensedcode/data/rules/beerware_12.yml deleted file mode 100644 index 6a4795c971c..00000000000 --- a/src/licensedcode/data/rules/beerware_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: beerware -is_license_tag: yes -relevance: 90 -notes: seen in https://github.com/tumb1er/coverage2clover/blob/master/setup.py diff --git a/src/licensedcode/data/rules/beerware_13.RULE b/src/licensedcode/data/rules/beerware_13.RULE index d03fe33a342..d496f45dac3 100644 --- a/src/licensedcode/data/rules/beerware_13.RULE +++ b/src/licensedcode/data/rules/beerware_13.RULE @@ -1 +1,10 @@ +--- +license_expression: beerware +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Beerware License \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_13.yml b/src/licensedcode/data/rules/beerware_13.yml deleted file mode 100644 index 70a8705862e..00000000000 --- a/src/licensedcode/data/rules/beerware_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: beerware -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/beerware_14.RULE b/src/licensedcode/data/rules/beerware_14.RULE index 090dbd3d3a0..1d5e7bc7468 100644 --- a/src/licensedcode/data/rules/beerware_14.RULE +++ b/src/licensedcode/data/rules/beerware_14.RULE @@ -1 +1,10 @@ +--- +license_expression: beerware +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Beerware License \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_14.yml b/src/licensedcode/data/rules/beerware_14.yml deleted file mode 100644 index 70a8705862e..00000000000 --- a/src/licensedcode/data/rules/beerware_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: beerware -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/beerware_15.RULE b/src/licensedcode/data/rules/beerware_15.RULE index 13cffbc3898..8cbb1aa5f00 100644 --- a/src/licensedcode/data/rules/beerware_15.RULE +++ b/src/licensedcode/data/rules/beerware_15.RULE @@ -1 +1,10 @@ +--- +license_expression: beerware +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Beerware Beerware License \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_15.yml b/src/licensedcode/data/rules/beerware_15.yml deleted file mode 100644 index 70a8705862e..00000000000 --- a/src/licensedcode/data/rules/beerware_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: beerware -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/beerware_16.RULE b/src/licensedcode/data/rules/beerware_16.RULE index 0e8f86343a4..b0564fc204f 100644 --- a/src/licensedcode/data/rules/beerware_16.RULE +++ b/src/licensedcode/data/rules/beerware_16.RULE @@ -1 +1,10 @@ +--- +license_expression: beerware +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Beerware License Beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_16.yml b/src/licensedcode/data/rules/beerware_16.yml deleted file mode 100644 index 70a8705862e..00000000000 --- a/src/licensedcode/data/rules/beerware_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: beerware -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/beerware_17.RULE b/src/licensedcode/data/rules/beerware_17.RULE index 542531ab6b3..451e3eedc5a 100644 --- a/src/licensedcode/data/rules/beerware_17.RULE +++ b/src/licensedcode/data/rules/beerware_17.RULE @@ -1 +1,10 @@ +--- +license_expression: beerware +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_17.yml b/src/licensedcode/data/rules/beerware_17.yml deleted file mode 100644 index 7ca30f56ff5..00000000000 --- a/src/licensedcode/data/rules/beerware_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: beerware -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/beerware_18.RULE b/src/licensedcode/data/rules/beerware_18.RULE index a975536b1a2..821f9d080ca 100644 --- a/src/licensedcode/data/rules/beerware_18.RULE +++ b/src/licensedcode/data/rules/beerware_18.RULE @@ -1 +1,10 @@ +--- +license_expression: beerware +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Beerware License \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_18.yml b/src/licensedcode/data/rules/beerware_18.yml deleted file mode 100644 index 7ca30f56ff5..00000000000 --- a/src/licensedcode/data/rules/beerware_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: beerware -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/beerware_19.RULE b/src/licensedcode/data/rules/beerware_19.RULE index 25cb99a283e..91f0bf02c17 100644 --- a/src/licensedcode/data/rules/beerware_19.RULE +++ b/src/licensedcode/data/rules/beerware_19.RULE @@ -1 +1,10 @@ +--- +license_expression: beerware +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_19.yml b/src/licensedcode/data/rules/beerware_19.yml deleted file mode 100644 index 7ca30f56ff5..00000000000 --- a/src/licensedcode/data/rules/beerware_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: beerware -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/beerware_2.RULE b/src/licensedcode/data/rules/beerware_2.RULE index e3cefb28953..4af6c01a9ac 100644 --- a/src/licensedcode/data/rules/beerware_2.RULE +++ b/src/licensedcode/data/rules/beerware_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: beerware +is_license_notice: yes +--- + "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_2.yml b/src/licensedcode/data/rules/beerware_2.yml deleted file mode 100644 index 6235e13fb1c..00000000000 --- a/src/licensedcode/data/rules/beerware_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: beerware -is_license_notice: yes diff --git a/src/licensedcode/data/rules/beerware_20.RULE b/src/licensedcode/data/rules/beerware_20.RULE index 9a3eabaeb1e..1249a0732b1 100644 --- a/src/licensedcode/data/rules/beerware_20.RULE +++ b/src/licensedcode/data/rules/beerware_20.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['BEER', 'Beerware'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_20.yml b/src/licensedcode/data/rules/beerware_20.yml deleted file mode 100644 index db34a3c5cc0..00000000000 --- a/src/licensedcode/data/rules/beerware_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/beerware_21.RULE b/src/licensedcode/data/rules/beerware_21.RULE index 299d75c8ad9..a7de51cb45c 100644 --- a/src/licensedcode/data/rules/beerware_21.RULE +++ b/src/licensedcode/data/rules/beerware_21.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Beer-Ware': 'Beerware', \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_21.yml b/src/licensedcode/data/rules/beerware_21.yml deleted file mode 100644 index db34a3c5cc0..00000000000 --- a/src/licensedcode/data/rules/beerware_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/beerware_22.RULE b/src/licensedcode/data/rules/beerware_22.RULE index 1b6a02e9c9c..e655a917014 100644 --- a/src/licensedcode/data/rules/beerware_22.RULE +++ b/src/licensedcode/data/rules/beerware_22.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Beerware': 'Beerware', \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_22.yml b/src/licensedcode/data/rules/beerware_22.yml deleted file mode 100644 index db34a3c5cc0..00000000000 --- a/src/licensedcode/data/rules/beerware_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/beerware_23.RULE b/src/licensedcode/data/rules/beerware_23.RULE index 8a4e6f740c5..cc65af1c2f7 100644 --- a/src/licensedcode/data/rules/beerware_23.RULE +++ b/src/licensedcode/data/rules/beerware_23.RULE @@ -1 +1,7 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_23.yml b/src/licensedcode/data/rules/beerware_23.yml deleted file mode 100644 index 78041ca829d..00000000000 --- a/src/licensedcode/data/rules/beerware_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/beerware_24.RULE b/src/licensedcode/data/rules/beerware_24.RULE index 5a3b5f06830..57ae675186c 100644 --- a/src/licensedcode/data/rules/beerware_24.RULE +++ b/src/licensedcode/data/rules/beerware_24.RULE @@ -1 +1,6 @@ +--- +license_expression: beerware +is_license_notice: yes +--- + licensed under the following: "THE BEER-WARE LICENSE" (Revision 42): Sergey Lyubka wrote this software. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return. \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_24.yml b/src/licensedcode/data/rules/beerware_24.yml deleted file mode 100644 index 6235e13fb1c..00000000000 --- a/src/licensedcode/data/rules/beerware_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: beerware -is_license_notice: yes diff --git a/src/licensedcode/data/rules/beerware_25.RULE b/src/licensedcode/data/rules/beerware_25.RULE index 53d132158d2..c8e13bdae76 100644 --- a/src/licensedcode/data/rules/beerware_25.RULE +++ b/src/licensedcode/data/rules/beerware_25.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Beerware +--- + https://licenses.nuget.org/Beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_25.yml b/src/licensedcode/data/rules/beerware_25.yml deleted file mode 100644 index 7148453409c..00000000000 --- a/src/licensedcode/data/rules/beerware_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Beerware diff --git a/src/licensedcode/data/rules/beerware_26.RULE b/src/licensedcode/data/rules/beerware_26.RULE index 4076dd72153..ea7ad064dfe 100644 --- a/src/licensedcode/data/rules/beerware_26.RULE +++ b/src/licensedcode/data/rules/beerware_26.RULE @@ -1 +1,7 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_26.yml b/src/licensedcode/data/rules/beerware_26.yml deleted file mode 100644 index 78041ca829d..00000000000 --- a/src/licensedcode/data/rules/beerware_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/beerware_27.RULE b/src/licensedcode/data/rules/beerware_27.RULE index 8e5bd253f45..8dc83d57fd2 100644 --- a/src/licensedcode/data/rules/beerware_27.RULE +++ b/src/licensedcode/data/rules/beerware_27.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Beerware +--- + {{Beerware}} https://spdx.org/licenses/Beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_27.yml b/src/licensedcode/data/rules/beerware_27.yml deleted file mode 100644 index 5231559c812..00000000000 --- a/src/licensedcode/data/rules/beerware_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Beerware diff --git a/src/licensedcode/data/rules/beerware_28.RULE b/src/licensedcode/data/rules/beerware_28.RULE index 9fe63074572..fb2ab723576 100644 --- a/src/licensedcode/data/rules/beerware_28.RULE +++ b/src/licensedcode/data/rules/beerware_28.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Beerware +--- + LICENSE {{Beerware}} https://spdx.org/licenses/Beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_28.yml b/src/licensedcode/data/rules/beerware_28.yml deleted file mode 100644 index 5231559c812..00000000000 --- a/src/licensedcode/data/rules/beerware_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Beerware diff --git a/src/licensedcode/data/rules/beerware_3.RULE b/src/licensedcode/data/rules/beerware_3.RULE index 32a27aefdc0..58bc59c49c8 100644 --- a/src/licensedcode/data/rules/beerware_3.RULE +++ b/src/licensedcode/data/rules/beerware_3.RULE @@ -1,2 +1,7 @@ +--- +license_expression: beerware +is_license_notice: yes +--- + "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return Poul-Henning Kamp \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_3.yml b/src/licensedcode/data/rules/beerware_3.yml deleted file mode 100644 index 6235e13fb1c..00000000000 --- a/src/licensedcode/data/rules/beerware_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: beerware -is_license_notice: yes diff --git a/src/licensedcode/data/rules/beerware_4.RULE b/src/licensedcode/data/rules/beerware_4.RULE index e30645d7002..02e57dc8c5e 100644 --- a/src/licensedcode/data/rules/beerware_4.RULE +++ b/src/licensedcode/data/rules/beerware_4.RULE @@ -1,4 +1,11 @@ +--- +license_expression: beerware +is_license_notice: yes +ignorable_emails: + - phk@login.dkuug.dk +--- + "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think - this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp + this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_4.yml b/src/licensedcode/data/rules/beerware_4.yml deleted file mode 100644 index 26d58f8644b..00000000000 --- a/src/licensedcode/data/rules/beerware_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: beerware -is_license_notice: yes -ignorable_emails: - - phk@login.dkuug.dk diff --git a/src/licensedcode/data/rules/beerware_5.RULE b/src/licensedcode/data/rules/beerware_5.RULE index cc4bd038a60..1630ca17cdf 100644 --- a/src/licensedcode/data/rules/beerware_5.RULE +++ b/src/licensedcode/data/rules/beerware_5.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Beerware.html +--- + `Beerware` - [Beerware License](https://spdx.org/licenses/Beerware.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_5.yml b/src/licensedcode/data/rules/beerware_5.yml deleted file mode 100644 index dbd203be7ec..00000000000 --- a/src/licensedcode/data/rules/beerware_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Beerware.html diff --git a/src/licensedcode/data/rules/beerware_6.RULE b/src/licensedcode/data/rules/beerware_6.RULE index c77c0f3ef04..2db5afbc49a 100644 --- a/src/licensedcode/data/rules/beerware_6.RULE +++ b/src/licensedcode/data/rules/beerware_6.RULE @@ -1 +1,7 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +--- + "THE BEER-WARE LICENSE" \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_6.yml b/src/licensedcode/data/rules/beerware_6.yml deleted file mode 100644 index 78041ca829d..00000000000 --- a/src/licensedcode/data/rules/beerware_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/beerware_7.RULE b/src/licensedcode/data/rules/beerware_7.RULE index 7673a36943c..6cfc84cbec2 100644 --- a/src/licensedcode/data/rules/beerware_7.RULE +++ b/src/licensedcode/data/rules/beerware_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: beerware +is_license_text: yes +relevance: 100 +ignorable_emails: + - phk@FreeBSD.ORG +--- + "THE BEER-WARE LICENSE" (Revision 42): wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think diff --git a/src/licensedcode/data/rules/beerware_7.yml b/src/licensedcode/data/rules/beerware_7.yml deleted file mode 100644 index cab6ebe0ed5..00000000000 --- a/src/licensedcode/data/rules/beerware_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_text: yes -relevance: 100 -ignorable_emails: - - phk@FreeBSD.ORG diff --git a/src/licensedcode/data/rules/beerware_8.RULE b/src/licensedcode/data/rules/beerware_8.RULE index c4606cdcf4b..6da609db0c6 100644 --- a/src/licensedcode/data/rules/beerware_8.RULE +++ b/src/licensedcode/data/rules/beerware_8.RULE @@ -1 +1,7 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 100 +--- + Beer-Ware License (MIT-Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_8.yml b/src/licensedcode/data/rules/beerware_8.yml deleted file mode 100644 index 78041ca829d..00000000000 --- a/src/licensedcode/data/rules/beerware_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/beerware_9.RULE b/src/licensedcode/data/rules/beerware_9.RULE index 4d99e644087..b108817b3ce 100644 --- a/src/licensedcode/data/rules/beerware_9.RULE +++ b/src/licensedcode/data/rules/beerware_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: beerware +is_license_text: yes +relevance: 100 +--- + THE BEER-WARE LICENSE FreeBSD.ORG> wrote this file. As long as you retain this notice you diff --git a/src/licensedcode/data/rules/beerware_9.yml b/src/licensedcode/data/rules/beerware_9.yml deleted file mode 100644 index 2a2891cae84..00000000000 --- a/src/licensedcode/data/rules/beerware_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: beerware -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/beerware_url_1.RULE b/src/licensedcode/data/rules/beerware_url_1.RULE index d4ebce45df5..a0647abf416 100644 --- a/src/licensedcode/data/rules/beerware_url_1.RULE +++ b/src/licensedcode/data/rules/beerware_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/beerware +--- + https://spdx.org/licenses/beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_url_1.yml b/src/licensedcode/data/rules/beerware_url_1.yml deleted file mode 100644 index d76724edbad..00000000000 --- a/src/licensedcode/data/rules/beerware_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/beerware diff --git a/src/licensedcode/data/rules/beerware_url_2.RULE b/src/licensedcode/data/rules/beerware_url_2.RULE index 155c0d97f57..e49502818c8 100644 --- a/src/licensedcode/data/rules/beerware_url_2.RULE +++ b/src/licensedcode/data/rules/beerware_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: beerware +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/beerware.html +--- + https://spdx.org/licenses/beerware.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/beerware_url_2.yml b/src/licensedcode/data/rules/beerware_url_2.yml deleted file mode 100644 index d39fde1fe22..00000000000 --- a/src/licensedcode/data/rules/beerware_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: beerware -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/beerware.html diff --git a/src/licensedcode/data/rules/bigdigits_1.RULE b/src/licensedcode/data/rules/bigdigits_1.RULE index 85609f541f1..3000a704193 100644 --- a/src/licensedcode/data/rules/bigdigits_1.RULE +++ b/src/licensedcode/data/rules/bigdigits_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bigdigits +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.di-mgt.com.au/bigdigitsCopyright.txt +--- + http://www.di-mgt.com.au/bigdigitsCopyright.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bigdigits_1.yml b/src/licensedcode/data/rules/bigdigits_1.yml deleted file mode 100644 index 7528b5bd5b5..00000000000 --- a/src/licensedcode/data/rules/bigdigits_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bigdigits -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.di-mgt.com.au/bigdigitsCopyright.txt diff --git a/src/licensedcode/data/rules/bigdigits_2.RULE b/src/licensedcode/data/rules/bigdigits_2.RULE index 6d598b9b865..57ed7f281bb 100644 --- a/src/licensedcode/data/rules/bigdigits_2.RULE +++ b/src/licensedcode/data/rules/bigdigits_2.RULE @@ -1,3 +1,18 @@ +--- +license_expression: bigdigits +is_license_text: yes +ignorable_copyrights: + - copyright (c) 2001-11 D.I. Management Services Pty Limited + - copyright (c) 2001-11 by D.I. Management Services Pty Limited +ignorable_holders: + - D.I. Management Services Pty Limited +ignorable_authors: + - David Ireland +ignorable_urls: + - http://www.di-mgt.com.au/ + - http://www.di-mgt.com.au/bigdigits.html +--- + /******************** COPYRIGHT AND LICENCE NOTICE ******************** This source code is part of the BIGDIGITS multiple-precision arithmetic library Version 2.3 originally written by David Ireland, @@ -29,4 +44,4 @@ The latest version of the source code can be downloaded from . Last updated: 11 November 2011. -*************** END OF COPYRIGHT AND LICENCE NOTICE ******************/ +*************** END OF COPYRIGHT AND LICENCE NOTICE ******************/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bigdigits_2.yml b/src/licensedcode/data/rules/bigdigits_2.yml deleted file mode 100644 index b010c39376a..00000000000 --- a/src/licensedcode/data/rules/bigdigits_2.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: bigdigits -is_license_text: yes -ignorable_copyrights: - - copyright (c) 2001-11 D.I. Management Services Pty Limited - - copyright (c) 2001-11 by D.I. Management Services Pty Limited -ignorable_holders: - - D.I. Management Services Pty Limited -ignorable_authors: - - David Ireland -ignorable_urls: - - http://www.di-mgt.com.au/ - - http://www.di-mgt.com.au/bigdigits.html diff --git a/src/licensedcode/data/rules/bigdigits_3.RULE b/src/licensedcode/data/rules/bigdigits_3.RULE index 6f669f3c5ff..82cc23d2ab8 100644 --- a/src/licensedcode/data/rules/bigdigits_3.RULE +++ b/src/licensedcode/data/rules/bigdigits_3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: bigdigits +is_license_notice: yes +ignorable_copyrights: + - copyright (c) 2001-5 D.I. Management Services Pty Limited +ignorable_holders: + - D.I. Management Services Pty Limited +ignorable_authors: + - David Ireland +ignorable_urls: + - http://www.di-mgt.com.au/bigdigits.html +--- + /******************** SHORT COPYRIGHT NOTICE************************** This source code is part of the BigDigits multiple-precision arithmetic library Version 2.0 originally written by David Ireland, @@ -7,4 +20,4 @@ this software under the terms of the full copyright notice "bigdigitsCopyright.txt" that should have been included with this library or can be obtained from . This notice must always be retained in any copy. -******************* END OF COPYRIGHT NOTICE***************************/ +******************* END OF COPYRIGHT NOTICE***************************/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bigdigits_3.yml b/src/licensedcode/data/rules/bigdigits_3.yml deleted file mode 100644 index b82c85656b8..00000000000 --- a/src/licensedcode/data/rules/bigdigits_3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: bigdigits -is_license_notice: yes -ignorable_copyrights: - - copyright (c) 2001-5 D.I. Management Services Pty Limited -ignorable_holders: - - D.I. Management Services Pty Limited -ignorable_authors: - - David Ireland -ignorable_urls: - - http://www.di-mgt.com.au/bigdigits.html diff --git a/src/licensedcode/data/rules/biopython.RULE b/src/licensedcode/data/rules/biopython.RULE index 72bb72d067e..db123ba8c5e 100644 --- a/src/licensedcode/data/rules/biopython.RULE +++ b/src/licensedcode/data/rules/biopython.RULE @@ -1 +1,9 @@ +--- +license_expression: biopython +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.biopython.org/DIST/LICENSE +--- + http://www.biopython.org/DIST/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/biopython.yml b/src/licensedcode/data/rules/biopython.yml deleted file mode 100644 index d7a220580ac..00000000000 --- a/src/licensedcode/data/rules/biopython.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: biopython -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.biopython.org/DIST/LICENSE diff --git a/src/licensedcode/data/rules/biopython_1.RULE b/src/licensedcode/data/rules/biopython_1.RULE index 7f5253de01b..0fa511ddc05 100644 --- a/src/licensedcode/data/rules/biopython_1.RULE +++ b/src/licensedcode/data/rules/biopython_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: biopython +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation with or without modifications and for any purpose and without fee is hereby granted, provided that any copyright notices diff --git a/src/licensedcode/data/rules/biopython_1.yml b/src/licensedcode/data/rules/biopython_1.yml deleted file mode 100644 index 928a6652171..00000000000 --- a/src/licensedcode/data/rules/biopython_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: biopython -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/biopython_2.RULE b/src/licensedcode/data/rules/biopython_2.RULE index 46a7ed1524a..f08d9b08628 100644 --- a/src/licensedcode/data/rules/biopython_2.RULE +++ b/src/licensedcode/data/rules/biopython_2.RULE @@ -1 +1,7 @@ +--- +license_expression: biopython +is_license_reference: yes +relevance: 100 +--- + Biopython License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/biopython_2.yml b/src/licensedcode/data/rules/biopython_2.yml deleted file mode 100644 index e73633cb1e4..00000000000 --- a/src/licensedcode/data/rules/biopython_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: biopython -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_1.RULE b/src/licensedcode/data/rules/bison-exception-2.2_1.RULE index 8e10d0862ec..139a49a8953 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_1.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bison-exception-2.2 +is_license_notice: yes +--- + Bison Exception As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. diff --git a/src/licensedcode/data/rules/bison-exception-2.2_1.yml b/src/licensedcode/data/rules/bison-exception-2.2_1.yml deleted file mode 100644 index 93b9d70a28c..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bison-exception-2.2_10.RULE b/src/licensedcode/data/rules/bison-exception-2.2_10.RULE index d4bae492a63..f52b6ff53b8 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_10.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_10.RULE @@ -1 +1,7 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_10.yml b/src/licensedcode/data/rules/bison-exception-2.2_10.yml deleted file mode 100644 index 38e799008bf..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_11.RULE b/src/licensedcode/data/rules/bison-exception-2.2_11.RULE index 50b3f716d11..9eb462768d7 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_11.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Bison-exception-2.2 +--- + {{Bison-exception-2.2}} https://spdx.org/licenses/Bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_11.yml b/src/licensedcode/data/rules/bison-exception-2.2_11.yml deleted file mode 100644 index cea89559bea..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Bison-exception-2.2 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_12.RULE b/src/licensedcode/data/rules/bison-exception-2.2_12.RULE index 3255d4e6540..aa42e5275ac 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_12.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_12.RULE @@ -1 +1,9 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Bison-exception-2.2 +--- + LICENSE {{Bison-exception-2.2}} https://spdx.org/licenses/Bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_12.yml b/src/licensedcode/data/rules/bison-exception-2.2_12.yml deleted file mode 100644 index cea89559bea..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Bison-exception-2.2 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_2.RULE b/src/licensedcode/data/rules/bison-exception-2.2_2.RULE index ebe256e8ff9..a20e87b7cc7 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_2.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bison-exception-2.2 +is_license_notice: yes +--- + As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton diff --git a/src/licensedcode/data/rules/bison-exception-2.2_2.yml b/src/licensedcode/data/rules/bison-exception-2.2_2.yml deleted file mode 100644 index 93b9d70a28c..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bison-exception-2.2_3.RULE b/src/licensedcode/data/rules/bison-exception-2.2_3.RULE index 6e206366c32..f7c64c1e190 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_3.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 99 +--- + BISON PARSER EXCEPTION \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_3.yml b/src/licensedcode/data/rules/bison-exception-2.2_3.yml deleted file mode 100644 index 64b2814c04a..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_4.RULE b/src/licensedcode/data/rules/bison-exception-2.2_4.RULE index 2a86579a06e..f5da586ab8f 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_4.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 95 +--- + Bison parsers exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_4.yml b/src/licensedcode/data/rules/bison-exception-2.2_4.yml deleted file mode 100644 index 17529ccc921..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_5.RULE b/src/licensedcode/data/rules/bison-exception-2.2_5.RULE index ab53a839fd1..212b774db68 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_5.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_5.RULE @@ -1 +1,7 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 100 +--- + Bison-exception-2.2 Bison exception 2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_5.yml b/src/licensedcode/data/rules/bison-exception-2.2_5.yml deleted file mode 100644 index 38e799008bf..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_6.RULE b/src/licensedcode/data/rules/bison-exception-2.2_6.RULE index 22eadcde811..e80ab1d4ee4 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_6.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Bison exception 2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_6.yml b/src/licensedcode/data/rules/bison-exception-2.2_6.yml deleted file mode 100644 index 03f7cbfa5eb..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bison-exception-2.2_7.RULE b/src/licensedcode/data/rules/bison-exception-2.2_7.RULE index aeb93e6a52c..dacd3f04e2a 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_7.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bison-exception-2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_7.yml b/src/licensedcode/data/rules/bison-exception-2.2_7.yml deleted file mode 100644 index c37c60d66d4..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bison-exception-2.2_8.RULE b/src/licensedcode/data/rules/bison-exception-2.2_8.RULE index e7002cef3a6..eee60f1c650 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_8.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bison-exception-2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_8.yml b/src/licensedcode/data/rules/bison-exception-2.2_8.yml deleted file mode 100644 index c37c60d66d4..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bison-exception-2.2_9.RULE b/src/licensedcode/data/rules/bison-exception-2.2_9.RULE index ac15d99edaf..9a100305de9 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_9.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_9.RULE @@ -1 +1,9 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Bison-exception-2.2 +--- + https://licenses.nuget.org/Bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_9.yml b/src/licensedcode/data/rules/bison-exception-2.2_9.yml deleted file mode 100644 index 8fe5bfd5060..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Bison-exception-2.2 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_url_1.RULE b/src/licensedcode/data/rules/bison-exception-2.2_url_1.RULE index b848016f3cf..95df5870fa4 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_url_1.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bison-exception-2.2 +--- + https://spdx.org/licenses/bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_url_1.yml b/src/licensedcode/data/rules/bison-exception-2.2_url_1.yml deleted file mode 100644 index 715b0293ad7..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bison-exception-2.2 diff --git a/src/licensedcode/data/rules/bison-exception-2.2_url_2.RULE b/src/licensedcode/data/rules/bison-exception-2.2_url_2.RULE index 02f96f98b1c..041d733e992 100644 --- a/src/licensedcode/data/rules/bison-exception-2.2_url_2.RULE +++ b/src/licensedcode/data/rules/bison-exception-2.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bison-exception-2.2.html +--- + https://spdx.org/licenses/bison-exception-2.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bison-exception-2.2_url_2.yml b/src/licensedcode/data/rules/bison-exception-2.2_url_2.yml deleted file mode 100644 index 3519909ce15..00000000000 --- a/src/licensedcode/data/rules/bison-exception-2.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bison-exception-2.2.html diff --git a/src/licensedcode/data/rules/bitstream-vera.RULE b/src/licensedcode/data/rules/bitstream-vera.RULE index 53c9285c2d9..7393a7e9fc3 100644 --- a/src/licensedcode/data/rules/bitstream-vera.RULE +++ b/src/licensedcode/data/rules/bitstream-vera.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bitstream +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2003 by Bitstream, Inc. +ignorable_holders: + - Bitstream, Inc. +--- + Copyright Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. diff --git a/src/licensedcode/data/rules/bitstream-vera.yml b/src/licensedcode/data/rules/bitstream-vera.yml deleted file mode 100644 index 9666d6f79cd..00000000000 --- a/src/licensedcode/data/rules/bitstream-vera.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bitstream -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2003 by Bitstream, Inc. -ignorable_holders: - - Bitstream, Inc. diff --git a/src/licensedcode/data/rules/bitstream.RULE b/src/licensedcode/data/rules/bitstream.RULE index c5bee706553..e616e6419f8 100644 --- a/src/licensedcode/data/rules/bitstream.RULE +++ b/src/licensedcode/data/rules/bitstream.RULE @@ -1 +1,9 @@ +--- +license_expression: bitstream +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts +--- + http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream.yml b/src/licensedcode/data/rules/bitstream.yml deleted file mode 100644 index c02827adf8c..00000000000 --- a/src/licensedcode/data/rules/bitstream.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bitstream -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts diff --git a/src/licensedcode/data/rules/bitstream2.RULE b/src/licensedcode/data/rules/bitstream2.RULE index d54c749a0ea..8632f98dbb9 100644 --- a/src/licensedcode/data/rules/bitstream2.RULE +++ b/src/licensedcode/data/rules/bitstream2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bitstream +is_license_notice: yes +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce @@ -38,4 +44,4 @@ OTHER DEALINGS IN THE FONT SOFTWARE. Except as contained in this notice, the name of shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization -from . For further information, contact: fonts at gnome dot org +from . For further information, contact: fonts at gnome dot org \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream2.yml b/src/licensedcode/data/rules/bitstream2.yml deleted file mode 100644 index 9fd9eac49b1..00000000000 --- a/src/licensedcode/data/rules/bitstream2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/bitstream_1.RULE b/src/licensedcode/data/rules/bitstream_1.RULE index 248f1b6591d..db84a0a5132 100644 --- a/src/licensedcode/data/rules/bitstream_1.RULE +++ b/src/licensedcode/data/rules/bitstream_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bitstream +is_license_notice: yes +relevance: 100 +--- + licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_1.yml b/src/licensedcode/data/rules/bitstream_1.yml deleted file mode 100644 index 920685e41fc..00000000000 --- a/src/licensedcode/data/rules/bitstream_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitstream_2.RULE b/src/licensedcode/data/rules/bitstream_2.RULE index e61d74dd8a7..8212c9353f7 100644 --- a/src/licensedcode/data/rules/bitstream_2.RULE +++ b/src/licensedcode/data/rules/bitstream_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bitstream +is_license_notice: yes +relevance: 100 +--- + licensed under the Bitstream Vera License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_2.yml b/src/licensedcode/data/rules/bitstream_2.yml deleted file mode 100644 index 920685e41fc..00000000000 --- a/src/licensedcode/data/rules/bitstream_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitstream_3.RULE b/src/licensedcode/data/rules/bitstream_3.RULE index a4da90d51c2..a199429b848 100644 --- a/src/licensedcode/data/rules/bitstream_3.RULE +++ b/src/licensedcode/data/rules/bitstream_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bitstream +is_license_reference: yes +relevance: 100 +--- + the Bitstream Vera License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_3.yml b/src/licensedcode/data/rules/bitstream_3.yml deleted file mode 100644 index d54da358b6d..00000000000 --- a/src/licensedcode/data/rules/bitstream_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitstream_4.RULE b/src/licensedcode/data/rules/bitstream_4.RULE index e0dec450111..ea600499604 100644 --- a/src/licensedcode/data/rules/bitstream_4.RULE +++ b/src/licensedcode/data/rules/bitstream_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bitstream +is_license_reference: yes +relevance: 100 +--- + Bitstream Vera License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_4.yml b/src/licensedcode/data/rules/bitstream_4.yml deleted file mode 100644 index d54da358b6d..00000000000 --- a/src/licensedcode/data/rules/bitstream_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitstream_5.RULE b/src/licensedcode/data/rules/bitstream_5.RULE index 3fb97711ac5..24e475ad01b 100644 --- a/src/licensedcode/data/rules/bitstream_5.RULE +++ b/src/licensedcode/data/rules/bitstream_5.RULE @@ -1 +1,7 @@ +--- +license_expression: bitstream +is_license_reference: yes +relevance: 100 +--- + Bitstream License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_5.yml b/src/licensedcode/data/rules/bitstream_5.yml deleted file mode 100644 index d54da358b6d..00000000000 --- a/src/licensedcode/data/rules/bitstream_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitstream_6.RULE b/src/licensedcode/data/rules/bitstream_6.RULE index 0019d530ca8..67859ca9153 100644 --- a/src/licensedcode/data/rules/bitstream_6.RULE +++ b/src/licensedcode/data/rules/bitstream_6.RULE @@ -1 +1,7 @@ +--- +license_expression: bitstream +is_license_notice: yes +relevance: 100 +--- + licensed under the Bitstream License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_6.yml b/src/licensedcode/data/rules/bitstream_6.yml deleted file mode 100644 index 920685e41fc..00000000000 --- a/src/licensedcode/data/rules/bitstream_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitstream_7.RULE b/src/licensedcode/data/rules/bitstream_7.RULE index a5cf21273e8..4a17c890de3 100644 --- a/src/licensedcode/data/rules/bitstream_7.RULE +++ b/src/licensedcode/data/rules/bitstream_7.RULE @@ -1 +1,7 @@ +--- +license_expression: bitstream +is_license_tag: yes +relevance: 100 +--- + License: Bitstream Vera Fonts Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_7.yml b/src/licensedcode/data/rules/bitstream_7.yml deleted file mode 100644 index 7acc559a57a..00000000000 --- a/src/licensedcode/data/rules/bitstream_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitstream_8.RULE b/src/licensedcode/data/rules/bitstream_8.RULE index a3e8a1ec4a5..573b72a1461 100644 --- a/src/licensedcode/data/rules/bitstream_8.RULE +++ b/src/licensedcode/data/rules/bitstream_8.RULE @@ -1 +1,7 @@ +--- +license_expression: bitstream +is_license_reference: yes +relevance: 100 +--- + Bitstream Vera Fonts Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_8.yml b/src/licensedcode/data/rules/bitstream_8.yml deleted file mode 100644 index d54da358b6d..00000000000 --- a/src/licensedcode/data/rules/bitstream_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitstream_9.RULE b/src/licensedcode/data/rules/bitstream_9.RULE index 79ca27be456..af0d5c5917b 100644 --- a/src/licensedcode/data/rules/bitstream_9.RULE +++ b/src/licensedcode/data/rules/bitstream_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bitstream +is_license_text: yes +relevance: 99 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce diff --git a/src/licensedcode/data/rules/bitstream_9.yml b/src/licensedcode/data/rules/bitstream_9.yml deleted file mode 100644 index 1cbf0516a09..00000000000 --- a/src/licensedcode/data/rules/bitstream_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bitstream -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_1.RULE b/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_1.RULE index 5e610b73c92..cf561f00d56 100644 --- a/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_1.RULE @@ -1 +1,8 @@ +--- +license_expression: bitstream AND bitstream AND public-domain +is_license_reference: yes +relevance: 99 +notes: the dejavu fonts licenses is composed of two bitstream licenses and a public-domain reference +--- + DejaVu Fonts License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_1.yml b/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_1.yml deleted file mode 100644 index 2dfe063ee4c..00000000000 --- a/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bitstream AND bitstream AND public-domain -is_license_reference: yes -relevance: 99 -notes: the dejavu fonts licenses is composed of two bitstream licenses and a public-domain reference diff --git a/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_2.RULE b/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_2.RULE index b9535061c0d..da9b37083ba 100644 --- a/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_2.RULE +++ b/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_2.RULE @@ -1 +1,8 @@ +--- +license_expression: bitstream AND bitstream AND public-domain +is_license_reference: yes +relevance: 99 +notes: the dejavu fonts licenses is composed of tow bitstream licenses and a public-domain reference +--- + DejaVu Fonts License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_2.yml b/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_2.yml deleted file mode 100644 index 62d7c0eb2c5..00000000000 --- a/src/licensedcode/data/rules/bitstream_and_bitstream_and_public-domain_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bitstream AND bitstream AND public-domain -is_license_reference: yes -relevance: 99 -notes: the dejavu fonts licenses is composed of tow bitstream licenses and a public-domain reference diff --git a/src/licensedcode/data/rules/bitstream_and_public-domain_1.RULE b/src/licensedcode/data/rules/bitstream_and_public-domain_1.RULE index ac77cab6eba..c1842a7e6db 100644 --- a/src/licensedcode/data/rules/bitstream_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/bitstream_and_public-domain_1.RULE @@ -1 +1,8 @@ +--- +license_expression: bitstream AND public-domain +is_license_reference: yes +relevance: 99 +notes: the dejavu fonts licenses is composed of two bitstream licenses and a public-domain reference +--- + based upon the Open Source font Bitstream Vera and the public domain font Deja Vu \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_and_public-domain_1.yml b/src/licensedcode/data/rules/bitstream_and_public-domain_1.yml deleted file mode 100644 index e6924bee979..00000000000 --- a/src/licensedcode/data/rules/bitstream_and_public-domain_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bitstream AND public-domain -is_license_reference: yes -relevance: 99 -notes: the dejavu fonts licenses is composed of two bitstream licenses and a public-domain reference diff --git a/src/licensedcode/data/rules/bitstream_and_public-domain_2.RULE b/src/licensedcode/data/rules/bitstream_and_public-domain_2.RULE index f853b8e9c3c..49e3789d34c 100644 --- a/src/licensedcode/data/rules/bitstream_and_public-domain_2.RULE +++ b/src/licensedcode/data/rules/bitstream_and_public-domain_2.RULE @@ -1 +1,8 @@ +--- +license_expression: bitstream AND public-domain +is_license_notice: yes +relevance: 100 +notes: See https://github.com/pombredanne/plan9port/blob/master/postscript/font/dejavu/LICENSE.dejavu +--- + Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitstream_and_public-domain_2.yml b/src/licensedcode/data/rules/bitstream_and_public-domain_2.yml deleted file mode 100644 index ead050bee93..00000000000 --- a/src/licensedcode/data/rules/bitstream_and_public-domain_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bitstream AND public-domain -is_license_notice: yes -relevance: 100 -notes: See https://github.com/pombredanne/plan9port/blob/master/postscript/font/dejavu/LICENSE.dejavu diff --git a/src/licensedcode/data/rules/bittorrent-1.0.RULE b/src/licensedcode/data/rules/bittorrent-1.0.RULE index a55e5ebbead..10e1194b281 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.bittorrent.com/license/ +--- + http://www.bittorrent.com/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0.yml b/src/licensedcode/data/rules/bittorrent-1.0.yml deleted file mode 100644 index 3087f9960e8..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.bittorrent.com/license/ diff --git a/src/licensedcode/data/rules/bittorrent-1.0_1.RULE b/src/licensedcode/data/rules/bittorrent-1.0_1.RULE index d0de772dd99..583197c53b4 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_1.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_1.RULE @@ -1,5 +1,12 @@ +--- +license_expression: bittorrent-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.bittorrent.com/license +--- + The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at -http://www.bittorrent.com/license/. +http://www.bittorrent.com/license/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_1.yml b/src/licensedcode/data/rules/bittorrent-1.0_1.yml deleted file mode 100644 index 886b2d6ae94..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.bittorrent.com/license diff --git a/src/licensedcode/data/rules/bittorrent-1.0_10.RULE b/src/licensedcode/data/rules/bittorrent-1.0_10.RULE index e25bf9406ef..0be2be981c9 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_10.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BitTorrent-1.0 +--- + https://licenses.nuget.org/BitTorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_10.yml b/src/licensedcode/data/rules/bittorrent-1.0_10.yml deleted file mode 100644 index f9eed8d2cfc..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BitTorrent-1.0 diff --git a/src/licensedcode/data/rules/bittorrent-1.0_11.RULE b/src/licensedcode/data/rules/bittorrent-1.0_11.RULE index 7848d9276a0..13f53656cc5 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_11.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BitTorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_11.yml b/src/licensedcode/data/rules/bittorrent-1.0_11.yml deleted file mode 100644 index a0e226dedfa..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bittorrent-1.0_12.RULE b/src/licensedcode/data/rules/bittorrent-1.0_12.RULE index a0cafb44a30..05d10259625 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_12.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BitTorrent-1.0 +--- + {{BitTorrent-1.0}} https://spdx.org/licenses/BitTorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_12.yml b/src/licensedcode/data/rules/bittorrent-1.0_12.yml deleted file mode 100644 index 5ba94ffa0f9..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BitTorrent-1.0 diff --git a/src/licensedcode/data/rules/bittorrent-1.0_13.RULE b/src/licensedcode/data/rules/bittorrent-1.0_13.RULE index ced59f1c253..69923964baa 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_13.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BitTorrent-1.0 +--- + LICENSE {{BitTorrent-1.0}} https://spdx.org/licenses/BitTorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_13.yml b/src/licensedcode/data/rules/bittorrent-1.0_13.yml deleted file mode 100644 index 5ba94ffa0f9..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BitTorrent-1.0 diff --git a/src/licensedcode/data/rules/bittorrent-1.0_2.RULE b/src/licensedcode/data/rules/bittorrent-1.0_2.RULE index 2524ec726f2..e88de2c644c 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_2.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bittorrent-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.bittorrent.com/license +--- + # The contents of this file are subject to the BitTorrent Open Source License # Version 1.0 (the License). You may not copy or use this file, in either # source code or executable form, except in compliance with the License. You @@ -6,4 +13,4 @@ # Software distributed under the License is distributed on an AS IS basis, # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License # for the specific language governing rights and limitations under the -# License. +# License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_2.yml b/src/licensedcode/data/rules/bittorrent-1.0_2.yml deleted file mode 100644 index 886b2d6ae94..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.bittorrent.com/license diff --git a/src/licensedcode/data/rules/bittorrent-1.0_3.RULE b/src/licensedcode/data/rules/bittorrent-1.0_3.RULE index e1398e8732f..31f3745c8e8 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_3.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 100 +--- + BitTorrent-1.0 BitTorrent Open Source License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_3.yml b/src/licensedcode/data/rules/bittorrent-1.0_3.yml deleted file mode 100644 index a0e226dedfa..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bittorrent-1.0_4.RULE b/src/licensedcode/data/rules/bittorrent-1.0_4.RULE index 4765d14bc81..67b29e00513 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_4.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 100 +--- + BitTorrent Open Source License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_4.yml b/src/licensedcode/data/rules/bittorrent-1.0_4.yml deleted file mode 100644 index a0e226dedfa..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bittorrent-1.0_5.RULE b/src/licensedcode/data/rules/bittorrent-1.0_5.RULE index 97d8156c67b..bf87d7f7215 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_5.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BitTorrent Open Source License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_5.yml b/src/licensedcode/data/rules/bittorrent-1.0_5.yml deleted file mode 100644 index 008925f4ff5..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.0_6.RULE b/src/licensedcode/data/rules/bittorrent-1.0_6.RULE index aa154575f8e..b9eab7a4784 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_6.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BitTorrent Open Source License v1.0 BitTorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_6.yml b/src/licensedcode/data/rules/bittorrent-1.0_6.yml deleted file mode 100644 index 008925f4ff5..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.0_7.RULE b/src/licensedcode/data/rules/bittorrent-1.0_7.RULE index 0bd9d1eb304..68bfe7450da 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_7.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BitTorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_7.yml b/src/licensedcode/data/rules/bittorrent-1.0_7.yml deleted file mode 100644 index ba53f96d0fd..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.0_8.RULE b/src/licensedcode/data/rules/bittorrent-1.0_8.RULE index 08ea315b2fd..42d8b66f271 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_8.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BitTorrent Open Source License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_8.yml b/src/licensedcode/data/rules/bittorrent-1.0_8.yml deleted file mode 100644 index ba53f96d0fd..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.0_9.RULE b/src/licensedcode/data/rules/bittorrent-1.0_9.RULE index e6e252693e6..04dededcb26 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_9.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BitTorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_9.yml b/src/licensedcode/data/rules/bittorrent-1.0_9.yml deleted file mode 100644 index ba53f96d0fd..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.0_url_1.RULE b/src/licensedcode/data/rules/bittorrent-1.0_url_1.RULE index 7d7af3fa595..42acab07caa 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bittorrent-1.0 +--- + https://spdx.org/licenses/bittorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_url_1.yml b/src/licensedcode/data/rules/bittorrent-1.0_url_1.yml deleted file mode 100644 index 0f3ccb93c00..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bittorrent-1.0 diff --git a/src/licensedcode/data/rules/bittorrent-1.0_url_2.RULE b/src/licensedcode/data/rules/bittorrent-1.0_url_2.RULE index e440e58d747..4ba1dfceccc 100644 --- a/src/licensedcode/data/rules/bittorrent-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bittorrent-1.0.html +--- + https://spdx.org/licenses/bittorrent-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.0_url_2.yml b/src/licensedcode/data/rules/bittorrent-1.0_url_2.yml deleted file mode 100644 index 76d6df8ebec..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bittorrent-1.0.html diff --git a/src/licensedcode/data/rules/bittorrent-1.1.SPDX.RULE b/src/licensedcode/data/rules/bittorrent-1.1.SPDX.RULE index 955689c2d3c..fe3da033372 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bittorrent-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://www.bittorrent.com/license +--- + BitTorrent Open Source License Version 1.1 diff --git a/src/licensedcode/data/rules/bittorrent-1.1.SPDX.yml b/src/licensedcode/data/rules/bittorrent-1.1.SPDX.yml deleted file mode 100644 index 255d9a663f6..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://www.bittorrent.com/license diff --git a/src/licensedcode/data/rules/bittorrent-1.1_1.RULE b/src/licensedcode/data/rules/bittorrent-1.1_1.RULE index c051829109b..6b966ad5fbf 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_1.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.bittorrent.com/legal/bittorrent-open-source-license +--- + http://www.bittorrent.com/legal/bittorrent-open-source-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_1.yml b/src/licensedcode/data/rules/bittorrent-1.1_1.yml deleted file mode 100644 index b1a322f8c2a..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.bittorrent.com/legal/bittorrent-open-source-license diff --git a/src/licensedcode/data/rules/bittorrent-1.1_10.RULE b/src/licensedcode/data/rules/bittorrent-1.1_10.RULE index c07c27cdb50..fd9722d64be 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_10.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BitTorrent-1.1 +--- + https://licenses.nuget.org/BitTorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_10.yml b/src/licensedcode/data/rules/bittorrent-1.1_10.yml deleted file mode 100644 index e5495b0f515..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BitTorrent-1.1 diff --git a/src/licensedcode/data/rules/bittorrent-1.1_11.RULE b/src/licensedcode/data/rules/bittorrent-1.1_11.RULE index 37edd4bd9d3..29af41a9f9e 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_11.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_11.RULE @@ -1 +1,7 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BitTorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_11.yml b/src/licensedcode/data/rules/bittorrent-1.1_11.yml deleted file mode 100644 index db7ec776460..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bittorrent-1.1_12.RULE b/src/licensedcode/data/rules/bittorrent-1.1_12.RULE index 934fa073870..1bee70c5981 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_12.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BitTorrent-1.1 +--- + {{BitTorrent-1.1}} https://spdx.org/licenses/BitTorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_12.yml b/src/licensedcode/data/rules/bittorrent-1.1_12.yml deleted file mode 100644 index 72727e3f59e..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BitTorrent-1.1 diff --git a/src/licensedcode/data/rules/bittorrent-1.1_13.RULE b/src/licensedcode/data/rules/bittorrent-1.1_13.RULE index e3e49b24c58..cda693b2c91 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_13.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BitTorrent-1.1 +--- + LICENSE {{BitTorrent-1.1}} https://spdx.org/licenses/BitTorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_13.yml b/src/licensedcode/data/rules/bittorrent-1.1_13.yml deleted file mode 100644 index 72727e3f59e..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BitTorrent-1.1 diff --git a/src/licensedcode/data/rules/bittorrent-1.1_2.RULE b/src/licensedcode/data/rules/bittorrent-1.1_2.RULE index 110095bd3c6..3a6d1477182 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_2.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +ignorable_urls: + - http://www.bittorrent.com/license +--- + # The contents of this file are subject to the BitTorrent Open Source License # Version 1.1 (the License). You may not copy or use this file, in either # source code or executable form, except in compliance with the License. You diff --git a/src/licensedcode/data/rules/bittorrent-1.1_2.yml b/src/licensedcode/data/rules/bittorrent-1.1_2.yml deleted file mode 100644 index 7627c9a065b..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -ignorable_urls: - - http://www.bittorrent.com/license diff --git a/src/licensedcode/data/rules/bittorrent-1.1_3.RULE b/src/licensedcode/data/rules/bittorrent-1.1_3.RULE index f18850783eb..bf93ee9f427 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_3.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 100 +--- + BitTorrent-1.1 BitTorrent Open Source License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_3.yml b/src/licensedcode/data/rules/bittorrent-1.1_3.yml deleted file mode 100644 index db7ec776460..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bittorrent-1.1_4.RULE b/src/licensedcode/data/rules/bittorrent-1.1_4.RULE index e4f2f37b55a..1ac1eb4d607 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_4.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 100 +--- + BitTorrent Open Source License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_4.yml b/src/licensedcode/data/rules/bittorrent-1.1_4.yml deleted file mode 100644 index db7ec776460..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bittorrent-1.1_5.RULE b/src/licensedcode/data/rules/bittorrent-1.1_5.RULE index 2febdc83924..7fe6af71dd9 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_5.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BitTorrent Open Source License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_5.yml b/src/licensedcode/data/rules/bittorrent-1.1_5.yml deleted file mode 100644 index 91202bbaa1f..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.1_6.RULE b/src/licensedcode/data/rules/bittorrent-1.1_6.RULE index 917d9be4587..9ce049287a1 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_6.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BitTorrent Open Source License v1.1 BitTorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_6.yml b/src/licensedcode/data/rules/bittorrent-1.1_6.yml deleted file mode 100644 index 91202bbaa1f..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.1_7.RULE b/src/licensedcode/data/rules/bittorrent-1.1_7.RULE index ea0db667ac8..c963d84b7f3 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_7.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BitTorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_7.yml b/src/licensedcode/data/rules/bittorrent-1.1_7.yml deleted file mode 100644 index 0e6e0f8c846..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.1_8.RULE b/src/licensedcode/data/rules/bittorrent-1.1_8.RULE index f84d7042981..a891475d800 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_8.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BitTorrent Open Source License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_8.yml b/src/licensedcode/data/rules/bittorrent-1.1_8.yml deleted file mode 100644 index 0e6e0f8c846..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.1_9.RULE b/src/licensedcode/data/rules/bittorrent-1.1_9.RULE index 4b55497b871..f5a02910e4b 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_9.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BitTorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_9.yml b/src/licensedcode/data/rules/bittorrent-1.1_9.yml deleted file mode 100644 index 0e6e0f8c846..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bittorrent-1.1_url_1.RULE b/src/licensedcode/data/rules/bittorrent-1.1_url_1.RULE index bc85ade1668..92e1240e96b 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bittorrent-1.1 +--- + https://spdx.org/licenses/bittorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_url_1.yml b/src/licensedcode/data/rules/bittorrent-1.1_url_1.yml deleted file mode 100644 index e7b28773d68..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bittorrent-1.1 diff --git a/src/licensedcode/data/rules/bittorrent-1.1_url_2.RULE b/src/licensedcode/data/rules/bittorrent-1.1_url_2.RULE index cc888c8d418..0fb568cf3fc 100644 --- a/src/licensedcode/data/rules/bittorrent-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bittorrent-1.1.html +--- + https://spdx.org/licenses/bittorrent-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.1_url_2.yml b/src/licensedcode/data/rules/bittorrent-1.1_url_2.yml deleted file mode 100644 index d62cf57c210..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bittorrent-1.1.html diff --git a/src/licensedcode/data/rules/bittorrent-1.2_1.RULE b/src/licensedcode/data/rules/bittorrent-1.2_1.RULE index 00fef3ac992..73cc47a973e 100644 --- a/src/licensedcode/data/rules/bittorrent-1.2_1.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.2_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bittorrent-1.2 +is_license_reference: yes +relevance: 100 +--- + BitTorrent-1.2 BitTorrent Open Source License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.2_1.yml b/src/licensedcode/data/rules/bittorrent-1.2_1.yml deleted file mode 100644 index 6e5c1deec22..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bittorrent-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bittorrent-1.2_2.RULE b/src/licensedcode/data/rules/bittorrent-1.2_2.RULE index fb9252c9ab0..01c41415c90 100644 --- a/src/licensedcode/data/rules/bittorrent-1.2_2.RULE +++ b/src/licensedcode/data/rules/bittorrent-1.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bittorrent-1.2 +is_license_reference: yes +relevance: 100 +--- + BitTorrent Open Source License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bittorrent-1.2_2.yml b/src/licensedcode/data/rules/bittorrent-1.2_2.yml deleted file mode 100644 index 6e5c1deec22..00000000000 --- a/src/licensedcode/data/rules/bittorrent-1.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bittorrent-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bitzi-pd.RULE b/src/licensedcode/data/rules/bitzi-pd.RULE index c4bafd527f9..b39d571a25b 100644 --- a/src/licensedcode/data/rules/bitzi-pd.RULE +++ b/src/licensedcode/data/rules/bitzi-pd.RULE @@ -1 +1,10 @@ +--- +license_expression: bitzi-pd +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://bitzi.com/publicdomain +--- + http://bitzi.com/publicdomain \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitzi-pd.yml b/src/licensedcode/data/rules/bitzi-pd.yml deleted file mode 100644 index 9cbde2cbd2e..00000000000 --- a/src/licensedcode/data/rules/bitzi-pd.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bitzi-pd -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://bitzi.com/publicdomain diff --git a/src/licensedcode/data/rules/bitzi-pd_1.RULE b/src/licensedcode/data/rules/bitzi-pd_1.RULE index 819d748c77c..502b89831f6 100644 --- a/src/licensedcode/data/rules/bitzi-pd_1.RULE +++ b/src/licensedcode/data/rules/bitzi-pd_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bitzi-pd +is_license_text: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://bitzi.com/publicdomain +ignorable_emails: + - info@bitzi.com +--- + BITZI PUBLIC DOMAIN NOTICES UPDATED July 13, 2006 @@ -73,4 +84,4 @@ include a version of this longer explanation: We hope you find our public-domain source code useful, but remember that we can provide absolutely no support or assurances about it; your use is entirely at your -own risk. +own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bitzi-pd_1.yml b/src/licensedcode/data/rules/bitzi-pd_1.yml deleted file mode 100644 index e88a7958688..00000000000 --- a/src/licensedcode/data/rules/bitzi-pd_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bitzi-pd -is_license_text: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://bitzi.com/publicdomain -ignorable_emails: - - info@bitzi.com diff --git a/src/licensedcode/data/rules/blessing_1.RULE b/src/licensedcode/data/rules/blessing_1.RULE index 7a8d46ea73a..ce319aa0817 100644 --- a/src/licensedcode/data/rules/blessing_1.RULE +++ b/src/licensedcode/data/rules/blessing_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: blessing +is_license_notice: yes +relevance: 100 +--- + ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_1.yml b/src/licensedcode/data/rules/blessing_1.yml deleted file mode 100644 index c5871ae79e7..00000000000 --- a/src/licensedcode/data/rules/blessing_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: blessing -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/blessing_10.RULE b/src/licensedcode/data/rules/blessing_10.RULE index 238bb95b4aa..4be1cea81f8 100644 --- a/src/licensedcode/data/rules/blessing_10.RULE +++ b/src/licensedcode/data/rules/blessing_10.RULE @@ -1 +1,7 @@ +--- +license_expression: blessing +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_10.yml b/src/licensedcode/data/rules/blessing_10.yml deleted file mode 100644 index 20cc9915206..00000000000 --- a/src/licensedcode/data/rules/blessing_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: blessing -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/blessing_11.RULE b/src/licensedcode/data/rules/blessing_11.RULE index 724289c06d1..1c31ba97d12 100644 --- a/src/licensedcode/data/rules/blessing_11.RULE +++ b/src/licensedcode/data/rules/blessing_11.RULE @@ -1 +1,9 @@ +--- +license_expression: blessing +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/blessing +--- + {{blessing}} https://spdx.org/licenses/blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_11.yml b/src/licensedcode/data/rules/blessing_11.yml deleted file mode 100644 index b8baf5fb277..00000000000 --- a/src/licensedcode/data/rules/blessing_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blessing -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/blessing diff --git a/src/licensedcode/data/rules/blessing_12.RULE b/src/licensedcode/data/rules/blessing_12.RULE index 13477e2e726..582e28df6e1 100644 --- a/src/licensedcode/data/rules/blessing_12.RULE +++ b/src/licensedcode/data/rules/blessing_12.RULE @@ -1 +1,9 @@ +--- +license_expression: blessing +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/blessing +--- + LICENSE {{blessing}} https://spdx.org/licenses/blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_12.yml b/src/licensedcode/data/rules/blessing_12.yml deleted file mode 100644 index b8baf5fb277..00000000000 --- a/src/licensedcode/data/rules/blessing_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blessing -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/blessing diff --git a/src/licensedcode/data/rules/blessing_2.RULE b/src/licensedcode/data/rules/blessing_2.RULE index 423919ace44..8b258acd415 100644 --- a/src/licensedcode/data/rules/blessing_2.RULE +++ b/src/licensedcode/data/rules/blessing_2.RULE @@ -1 +1,10 @@ +--- +license_expression: blessing +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SQLite Blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_2.yml b/src/licensedcode/data/rules/blessing_2.yml deleted file mode 100644 index 06897bea5c8..00000000000 --- a/src/licensedcode/data/rules/blessing_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blessing -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blessing_3.RULE b/src/licensedcode/data/rules/blessing_3.RULE index 45c5035196c..7bbba1529bf 100644 --- a/src/licensedcode/data/rules/blessing_3.RULE +++ b/src/licensedcode/data/rules/blessing_3.RULE @@ -1 +1,10 @@ +--- +license_expression: blessing +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SQLite Blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_3.yml b/src/licensedcode/data/rules/blessing_3.yml deleted file mode 100644 index 06897bea5c8..00000000000 --- a/src/licensedcode/data/rules/blessing_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blessing -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blessing_4.RULE b/src/licensedcode/data/rules/blessing_4.RULE index d449a0bcf83..3bf515c233f 100644 --- a/src/licensedcode/data/rules/blessing_4.RULE +++ b/src/licensedcode/data/rules/blessing_4.RULE @@ -1 +1,10 @@ +--- +license_expression: blessing +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + blessing SQLite Blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_4.yml b/src/licensedcode/data/rules/blessing_4.yml deleted file mode 100644 index 06897bea5c8..00000000000 --- a/src/licensedcode/data/rules/blessing_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blessing -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blessing_5.RULE b/src/licensedcode/data/rules/blessing_5.RULE index c78beddfff5..130dcab9921 100644 --- a/src/licensedcode/data/rules/blessing_5.RULE +++ b/src/licensedcode/data/rules/blessing_5.RULE @@ -1 +1,10 @@ +--- +license_expression: blessing +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SQLite Blessing blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_5.yml b/src/licensedcode/data/rules/blessing_5.yml deleted file mode 100644 index 06897bea5c8..00000000000 --- a/src/licensedcode/data/rules/blessing_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blessing -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blessing_6.RULE b/src/licensedcode/data/rules/blessing_6.RULE index 7b7f8d7cc0a..71b80053505 100644 --- a/src/licensedcode/data/rules/blessing_6.RULE +++ b/src/licensedcode/data/rules/blessing_6.RULE @@ -1 +1,10 @@ +--- +license_expression: blessing +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_6.yml b/src/licensedcode/data/rules/blessing_6.yml deleted file mode 100644 index 7b984d4cb10..00000000000 --- a/src/licensedcode/data/rules/blessing_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blessing -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blessing_7.RULE b/src/licensedcode/data/rules/blessing_7.RULE index 6cf434efdb7..1ee53d9ec2e 100644 --- a/src/licensedcode/data/rules/blessing_7.RULE +++ b/src/licensedcode/data/rules/blessing_7.RULE @@ -1 +1,10 @@ +--- +license_expression: blessing +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SQLite Blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_7.yml b/src/licensedcode/data/rules/blessing_7.yml deleted file mode 100644 index 7b984d4cb10..00000000000 --- a/src/licensedcode/data/rules/blessing_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blessing -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blessing_8.RULE b/src/licensedcode/data/rules/blessing_8.RULE index d6d07af8891..41ca8f4003e 100644 --- a/src/licensedcode/data/rules/blessing_8.RULE +++ b/src/licensedcode/data/rules/blessing_8.RULE @@ -1 +1,10 @@ +--- +license_expression: blessing +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_8.yml b/src/licensedcode/data/rules/blessing_8.yml deleted file mode 100644 index 7b984d4cb10..00000000000 --- a/src/licensedcode/data/rules/blessing_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blessing -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blessing_9.RULE b/src/licensedcode/data/rules/blessing_9.RULE index 610e56d7f04..1dbd4d1d811 100644 --- a/src/licensedcode/data/rules/blessing_9.RULE +++ b/src/licensedcode/data/rules/blessing_9.RULE @@ -1 +1,9 @@ +--- +license_expression: blessing +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/blessing +--- + https://licenses.nuget.org/blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_9.yml b/src/licensedcode/data/rules/blessing_9.yml deleted file mode 100644 index ee8688c5a31..00000000000 --- a/src/licensedcode/data/rules/blessing_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blessing -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/blessing diff --git a/src/licensedcode/data/rules/blessing_url_1.RULE b/src/licensedcode/data/rules/blessing_url_1.RULE index a17384baa4a..9d0d4db366a 100644 --- a/src/licensedcode/data/rules/blessing_url_1.RULE +++ b/src/licensedcode/data/rules/blessing_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: blessing +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/blessing +--- + https://spdx.org/licenses/blessing \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_url_1.yml b/src/licensedcode/data/rules/blessing_url_1.yml deleted file mode 100644 index 2e0ff9f28ea..00000000000 --- a/src/licensedcode/data/rules/blessing_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blessing -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/blessing diff --git a/src/licensedcode/data/rules/blessing_url_2.RULE b/src/licensedcode/data/rules/blessing_url_2.RULE index f9f3eeab55f..9b42d1962b5 100644 --- a/src/licensedcode/data/rules/blessing_url_2.RULE +++ b/src/licensedcode/data/rules/blessing_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: blessing +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/blessing.html +--- + https://spdx.org/licenses/blessing.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/blessing_url_2.yml b/src/licensedcode/data/rules/blessing_url_2.yml deleted file mode 100644 index 1f260d8a95a..00000000000 --- a/src/licensedcode/data/rules/blessing_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blessing -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/blessing.html diff --git a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_1.RULE index 03a79b4936c..e959a86b649 100644 --- a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: blitz-artistic OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - GPL + - LICENSE +--- + The Blitz++ library is currently in transition from the GPL to the more permissive "Blitz++ Artistic License". Blitz++ is currently distributed with both licenses, and you may pick either. They diff --git a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_1.yml deleted file mode 100644 index d18ed13068c..00000000000 --- a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blitz-artistic OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - GPL - - LICENSE diff --git a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_2.RULE index a747c8228d5..112e880bf65 100644 --- a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: blitz-artistic OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Blitz++ is licensed under the GPL or, if desired, under the ”Blitz++ Artistic License” \ No newline at end of file diff --git a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_2.yml deleted file mode 100644 index 516df8bdaa4..00000000000 --- a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: blitz-artistic OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_3.RULE index 469443d9b33..619fb60337e 100644 --- a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: blitz-artistic OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - GPL + - LICENSE +--- + The Blitz++ library is licensed under both the GPL and the more permissive "Blitz++ Artistic License". Take your pick. They are detailed in GPL and LICENSE, respectively. The artistic license is more appropriate for diff --git a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_3.yml deleted file mode 100644 index cac66897606..00000000000 --- a/src/licensedcode/data/rules/blitz-artistic_or_gpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blitz-artistic OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - GPL - - LICENSE diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_1.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_1.RULE index 292fd2165e6..ba92bdd171f 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_1.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Blue Oak Model License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_1.yml b/src/licensedcode/data/rules/blueoak-1.0.0_1.yml deleted file mode 100644 index 1720ccefffb..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_10.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_10.RULE index 43d3abcbc33..751c6d98a28 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_10.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BlueOak-1.0.0 +--- + LICENSE {{BlueOak-1.0.0}} https://spdx.org/licenses/BlueOak-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_10.yml b/src/licensedcode/data/rules/blueoak-1.0.0_10.yml deleted file mode 100644 index 76382110d1b..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BlueOak-1.0.0 diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_11.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_11.RULE index 6106aafb4d0..444c5a5a744 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_11.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BlueOak-1.0.0 +--- + {{BlueOak-1.0.0}} https://spdx.org/licenses/BlueOak-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_11.yml b/src/licensedcode/data/rules/blueoak-1.0.0_11.yml deleted file mode 100644 index 76382110d1b..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BlueOak-1.0.0 diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_2.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_2.RULE index 3d593cb47a1..fd1dcb6c451 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_2.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Blue Oak Model License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_2.yml b/src/licensedcode/data/rules/blueoak-1.0.0_2.yml deleted file mode 100644 index 1720ccefffb..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_3.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_3.RULE index 27dfeeddc38..6baf1c29ede 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_3.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BlueOak-1.0.0 Blue Oak Model License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_3.yml b/src/licensedcode/data/rules/blueoak-1.0.0_3.yml deleted file mode 100644 index 1720ccefffb..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_4.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_4.RULE index 3759cf24750..0bb0dc92382 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_4.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Blue Oak Model License 1.0.0 BlueOak-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_4.yml b/src/licensedcode/data/rules/blueoak-1.0.0_4.yml deleted file mode 100644 index 1720ccefffb..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_5.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_5.RULE index 83a2df337f6..72d41970560 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_5.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: blueoak-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BlueOak-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_5.yml b/src/licensedcode/data/rules/blueoak-1.0.0_5.yml deleted file mode 100644 index 0b9b5ec88fd..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_6.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_6.RULE index 589ebfc74ed..942b5110741 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_6.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: blueoak-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Blue Oak Model License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_6.yml b/src/licensedcode/data/rules/blueoak-1.0.0_6.yml deleted file mode 100644 index 0b9b5ec88fd..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_7.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_7.RULE index 87aca7a11c6..da2175b85c6 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_7.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: blueoak-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BlueOak-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_7.yml b/src/licensedcode/data/rules/blueoak-1.0.0_7.yml deleted file mode 100644 index 0b9b5ec88fd..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_8.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_8.RULE index b8e890b7520..5dd07701242 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_8.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BlueOak-1.0.0 +--- + https://licenses.nuget.org/BlueOak-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_8.yml b/src/licensedcode/data/rules/blueoak-1.0.0_8.yml deleted file mode 100644 index 046498361bf..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BlueOak-1.0.0 diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_9.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_9.RULE index 5650feabf16..0fcc133f1f2 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_9.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BlueOak-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_9.yml b/src/licensedcode/data/rules/blueoak-1.0.0_9.yml deleted file mode 100644 index 9c8abb7560f..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_url_1.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_url_1.RULE index dae279a89e0..cddbb2d1eb4 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_url_1.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/blueoak-1.0.0 +--- + https://spdx.org/licenses/blueoak-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_url_1.yml b/src/licensedcode/data/rules/blueoak-1.0.0_url_1.yml deleted file mode 100644 index bbeaaec6cdb..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/blueoak-1.0.0 diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_url_2.RULE b/src/licensedcode/data/rules/blueoak-1.0.0_url_2.RULE index 17e22f82c80..b5d7636ed45 100644 --- a/src/licensedcode/data/rules/blueoak-1.0.0_url_2.RULE +++ b/src/licensedcode/data/rules/blueoak-1.0.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: blueoak-1.0.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/blueoak-1.0.0.html +--- + https://spdx.org/licenses/blueoak-1.0.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/blueoak-1.0.0_url_2.yml b/src/licensedcode/data/rules/blueoak-1.0.0_url_2.yml deleted file mode 100644 index 0e381e25ad7..00000000000 --- a/src/licensedcode/data/rules/blueoak-1.0.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: blueoak-1.0.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/blueoak-1.0.0.html diff --git a/src/licensedcode/data/rules/boost-1.0_1.RULE b/src/licensedcode/data/rules/boost-1.0_1.RULE index 34c591425ca..209cd37d5ff 100644 --- a/src/licensedcode/data/rules/boost-1.0_1.RULE +++ b/src/licensedcode/data/rules/boost-1.0_1.RULE @@ -1,2 +1,12 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_1_0.txt +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Distributed under the Boost Software License, Version 1.0. -(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_1.yml b/src/licensedcode/data/rules/boost-1.0_1.yml deleted file mode 100644 index ffc118dd5bb..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_1_0.txt -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_10.RULE b/src/licensedcode/data/rules/boost-1.0_10.RULE index 05ab77a2bae..719b7e888a1 100644 --- a/src/licensedcode/data/rules/boost-1.0_10.RULE +++ b/src/licensedcode/data/rules/boost-1.0_10.RULE @@ -1,2 +1,9 @@ -// Distributed under the Boost Software License, Version 1.0. +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_1_0.txt +--- +// Distributed under the Boost Software License, Version 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_10.yml b/src/licensedcode/data/rules/boost-1.0_10.yml deleted file mode 100644 index 332274d56a4..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_11.RULE b/src/licensedcode/data/rules/boost-1.0_11.RULE index 4c4fe00b977..8da835d020b 100644 --- a/src/licensedcode/data/rules/boost-1.0_11.RULE +++ b/src/licensedcode/data/rules/boost-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 99 +--- + Boost License \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_11.yml b/src/licensedcode/data/rules/boost-1.0_11.yml deleted file mode 100644 index 5cc6e18ca8d..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/boost-1.0_12.RULE b/src/licensedcode/data/rules/boost-1.0_12.RULE index a936c629dae..24b18c06176 100644 --- a/src/licensedcode/data/rules/boost-1.0_12.RULE +++ b/src/licensedcode/data/rules/boost-1.0_12.RULE @@ -1,4 +1,15 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://developers.facebook.com/thrift/ +--- + Distributed under the Thrift Software License See accompanying file LICENSE or visit the Thrift site at: -http://developers.facebook.com/thrift/ +http://developers.facebook.com/thrift/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_12.yml b/src/licensedcode/data/rules/boost-1.0_12.yml deleted file mode 100644 index 4437c5e0e27..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_12.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://developers.facebook.com/thrift/ diff --git a/src/licensedcode/data/rules/boost-1.0_13.RULE b/src/licensedcode/data/rules/boost-1.0_13.RULE index c966c37420e..f41e0079100 100644 --- a/src/licensedcode/data/rules/boost-1.0_13.RULE +++ b/src/licensedcode/data/rules/boost-1.0_13.RULE @@ -1,2 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under the Thrift Software License. See the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_13.yml b/src/licensedcode/data/rules/boost-1.0_13.yml deleted file mode 100644 index b6a30e3629d..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/boost-1.0_14.RULE b/src/licensedcode/data/rules/boost-1.0_14.RULE index b4866e535dc..05860db5206 100644 --- a/src/licensedcode/data/rules/boost-1.0_14.RULE +++ b/src/licensedcode/data/rules/boost-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/bsl-1.0 +--- + https://choosealicense.com/licenses/bsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_14.yml b/src/licensedcode/data/rules/boost-1.0_14.yml deleted file mode 100644 index 34c0fa46d6a..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/bsl-1.0 diff --git a/src/licensedcode/data/rules/boost-1.0_15.RULE b/src/licensedcode/data/rules/boost-1.0_15.RULE index a5ef52a0e30..eeae0c29893 100644 --- a/src/licensedcode/data/rules/boost-1.0_15.RULE +++ b/src/licensedcode/data/rules/boost-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/bsl-1.0 +--- + http://choosealicense.com/licenses/bsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_15.yml b/src/licensedcode/data/rules/boost-1.0_15.yml deleted file mode 100644 index 59615c4b95a..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/bsl-1.0 diff --git a/src/licensedcode/data/rules/boost-1.0_16.RULE b/src/licensedcode/data/rules/boost-1.0_16.RULE index a2d7b05e16f..35f8de37eb3 100644 --- a/src/licensedcode/data/rules/boost-1.0_16.RULE +++ b/src/licensedcode/data/rules/boost-1.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_text: yes +relevance: 100 +--- + Boost Software License - Version 1.0 - August 17, 2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_16.yml b/src/licensedcode/data/rules/boost-1.0_16.yml deleted file mode 100644 index cb41ef4cad5..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_17.RULE b/src/licensedcode/data/rules/boost-1.0_17.RULE index 21c22ec885c..c9289e3c5fa 100644 --- a/src/licensedcode/data/rules/boost-1.0_17.RULE +++ b/src/licensedcode/data/rules/boost-1.0_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_text: yes +relevance: 100 +--- + Boost Software License - Version 1.0 - August 17, 2003 Permission is hereby granted, free of charge, to any person or organization @@ -20,4 +26,4 @@ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_17.yml b/src/licensedcode/data/rules/boost-1.0_17.yml deleted file mode 100644 index cb41ef4cad5..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_18.RULE b/src/licensedcode/data/rules/boost-1.0_18.RULE index dcc23608741..e744e0058d3 100644 --- a/src/licensedcode/data/rules/boost-1.0_18.RULE +++ b/src/licensedcode/data/rules/boost-1.0_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + License: Use, modification & distribution is subject to Boost Software License Ver 1. http://www.boost.org/LICENSE_1_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_18.yml b/src/licensedcode/data/rules/boost-1.0_18.yml deleted file mode 100644 index 93113bae8ef..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_19.RULE b/src/licensedcode/data/rules/boost-1.0_19.RULE index 5a0ce8a35f1..0c8af499ab9 100644 --- a/src/licensedcode/data/rules/boost-1.0_19.RULE +++ b/src/licensedcode/data/rules/boost-1.0_19.RULE @@ -1,2 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Use, modification & distribution is subject to Boost Software License Ver 1. http://www.boost.org/LICENSE_1_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_19.yml b/src/licensedcode/data/rules/boost-1.0_19.yml deleted file mode 100644 index 93113bae8ef..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_1_markup.RULE b/src/licensedcode/data/rules/boost-1.0_1_markup.RULE index 9399b441ce1..eea70e5a1cb 100644 --- a/src/licensedcode/data/rules/boost-1.0_1_markup.RULE +++ b/src/licensedcode/data/rules/boost-1.0_1_markup.RULE @@ -1,2 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Distributed under the Boost Software License, Version 1.0. (See accompanying -file LICENSE_1_0.txt or copy at "http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt ) +file LICENSE_1_0.txt or copy at "http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_1_markup.yml b/src/licensedcode/data/rules/boost-1.0_1_markup.yml deleted file mode 100644 index fdb5135bc0e..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_1_markup.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_2.RULE b/src/licensedcode/data/rules/boost-1.0_2.RULE index 93a87e76fb4..63109855a2f 100644 --- a/src/licensedcode/data/rules/boost-1.0_2.RULE +++ b/src/licensedcode/data/rules/boost-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under the Boost Software License, Version 1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_2.yml b/src/licensedcode/data/rules/boost-1.0_2.yml deleted file mode 100644 index 4cfb24fc84f..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_20.RULE b/src/licensedcode/data/rules/boost-1.0_20.RULE index ce4eb86e594..7a07e135f27 100644 --- a/src/licensedcode/data/rules/boost-1.0_20.RULE +++ b/src/licensedcode/data/rules/boost-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +--- + Use, modification & distribution is subject to Boost Software License Ver 1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_20.yml b/src/licensedcode/data/rules/boost-1.0_20.yml deleted file mode 100644 index 4cfb24fc84f..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_21.RULE b/src/licensedcode/data/rules/boost-1.0_21.RULE index 6568e9d4bfd..5a58e2cb6fb 100644 --- a/src/licensedcode/data/rules/boost-1.0_21.RULE +++ b/src/licensedcode/data/rules/boost-1.0_21.RULE @@ -1,2 +1,12 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE_1_0.txt +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Use, modification and distribution are subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_21.yml b/src/licensedcode/data/rules/boost-1.0_21.yml deleted file mode 100644 index ffc118dd5bb..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_21.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE_1_0.txt -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_22.RULE b/src/licensedcode/data/rules/boost-1.0_22.RULE index ab0b25c5a45..5e53bfe9137 100644 --- a/src/licensedcode/data/rules/boost-1.0_22.RULE +++ b/src/licensedcode/data/rules/boost-1.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +--- + Use, modification and distribution are subject to the Boost Software License, Version 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_22.yml b/src/licensedcode/data/rules/boost-1.0_22.yml deleted file mode 100644 index 4cfb24fc84f..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_23.RULE b/src/licensedcode/data/rules/boost-1.0_23.RULE index a983db88016..235db312f59 100644 --- a/src/licensedcode/data/rules/boost-1.0_23.RULE +++ b/src/licensedcode/data/rules/boost-1.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.boost.org/LICENSE_1_0.txt +--- + https://www.boost.org/LICENSE_1_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_23.yml b/src/licensedcode/data/rules/boost-1.0_23.yml deleted file mode 100644 index 2f29812ceb7..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_24.RULE b/src/licensedcode/data/rules/boost-1.0_24.RULE index 5f0f3a71460..fd402133a22 100644 --- a/src/licensedcode/data/rules/boost-1.0_24.RULE +++ b/src/licensedcode/data/rules/boost-1.0_24.RULE @@ -1,3 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_text: yes +relevance: 100 +--- + Boost Software License - Version 1.0 Permission is hereby granted, free of charge, to any person or organization diff --git a/src/licensedcode/data/rules/boost-1.0_24.yml b/src/licensedcode/data/rules/boost-1.0_24.yml deleted file mode 100644 index cb41ef4cad5..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_25.RULE b/src/licensedcode/data/rules/boost-1.0_25.RULE index 5805ea97e0a..f3028b5596e 100644 --- a/src/licensedcode/data/rules/boost-1.0_25.RULE +++ b/src/licensedcode/data/rules/boost-1.0_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_text: yes +relevance: 100 +--- + Boost Software License Permission is hereby granted, free of charge, to any person or organization diff --git a/src/licensedcode/data/rules/boost-1.0_25.yml b/src/licensedcode/data/rules/boost-1.0_25.yml deleted file mode 100644 index cb41ef4cad5..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_26.RULE b/src/licensedcode/data/rules/boost-1.0_26.RULE index 69537212e63..2244c8d9d59 100644 --- a/src/licensedcode/data/rules/boost-1.0_26.RULE +++ b/src/licensedcode/data/rules/boost-1.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 95 +--- + LICENSE-Boost \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_26.yml b/src/licensedcode/data/rules/boost-1.0_26.yml deleted file mode 100644 index ca4895812a5..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/boost-1.0_27.RULE b/src/licensedcode/data/rules/boost-1.0_27.RULE index 1ec0dae24b6..044790210db 100644 --- a/src/licensedcode/data/rules/boost-1.0_27.RULE +++ b/src/licensedcode/data/rules/boost-1.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +--- + Open Source Software Licensed under the Boost Software License-Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_27.yml b/src/licensedcode/data/rules/boost-1.0_27.yml deleted file mode 100644 index 4cfb24fc84f..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_28.RULE b/src/licensedcode/data/rules/boost-1.0_28.RULE index 7fedf6bb346..5d590a52541 100644 --- a/src/licensedcode/data/rules/boost-1.0_28.RULE +++ b/src/licensedcode/data/rules/boost-1.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Boost Software License-Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_28.yml b/src/licensedcode/data/rules/boost-1.0_28.yml deleted file mode 100644 index 4cfb24fc84f..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_29.RULE b/src/licensedcode/data/rules/boost-1.0_29.RULE index 609d84ab1b3..15469e3d044 100644 --- a/src/licensedcode/data/rules/boost-1.0_29.RULE +++ b/src/licensedcode/data/rules/boost-1.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +--- + the Boost Software License-Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_29.yml b/src/licensedcode/data/rules/boost-1.0_29.yml deleted file mode 100644 index 2fe38f428f6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_3.RULE b/src/licensedcode/data/rules/boost-1.0_3.RULE index 2748569a6db..4b627da9303 100644 --- a/src/licensedcode/data/rules/boost-1.0_3.RULE +++ b/src/licensedcode/data/rules/boost-1.0_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE_1_0.txt +ignorable_urls: + - http://www.boost.org/ + - http://www.boost.org/LICENSE_1_0.txt +--- + // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) diff --git a/src/licensedcode/data/rules/boost-1.0_3.yml b/src/licensedcode/data/rules/boost-1.0_3.yml deleted file mode 100644 index 9522e9d14a6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE_1_0.txt -ignorable_urls: - - http://www.boost.org/ - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_30.RULE b/src/licensedcode/data/rules/boost-1.0_30.RULE index c10036654ab..9fd045d05ba 100644 --- a/src/licensedcode/data/rules/boost-1.0_30.RULE +++ b/src/licensedcode/data/rules/boost-1.0_30.RULE @@ -1,3 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_text: yes +relevance: 100 +--- + Terms of the Boost Software License-Version 1.0: Boost Software License - Version 1.0 - August 17th, 2003 diff --git a/src/licensedcode/data/rules/boost-1.0_30.yml b/src/licensedcode/data/rules/boost-1.0_30.yml deleted file mode 100644 index cb41ef4cad5..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_31.RULE b/src/licensedcode/data/rules/boost-1.0_31.RULE index 5147cc693eb..20b7f56a6ea 100644 --- a/src/licensedcode/data/rules/boost-1.0_31.RULE +++ b/src/licensedcode/data/rules/boost-1.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/boost_LICENSE.txt +--- + [boost]: third_party/boost_LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_31.yml b/src/licensedcode/data/rules/boost-1.0_31.yml deleted file mode 100644 index 86bd5e15073..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: boost-1.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/boost_LICENSE.txt diff --git a/src/licensedcode/data/rules/boost-1.0_32.RULE b/src/licensedcode/data/rules/boost-1.0_32.RULE index 925105459ea..84b62e7c0c0 100644 --- a/src/licensedcode/data/rules/boost-1.0_32.RULE +++ b/src/licensedcode/data/rules/boost-1.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/boost_LICENSE.txt +--- + License: Boost Software License 1.0 ([license/third_party/boost_LICENSE.txt][boost]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_32.yml b/src/licensedcode/data/rules/boost-1.0_32.yml deleted file mode 100644 index 1602e43573d..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: boost-1.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/boost_LICENSE.txt diff --git a/src/licensedcode/data/rules/boost-1.0_33.RULE b/src/licensedcode/data/rules/boost-1.0_33.RULE index d60349c34f0..b1f9b6a1b02 100644 --- a/src/licensedcode/data/rules/boost-1.0_33.RULE +++ b/src/licensedcode/data/rules/boost-1.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_tag: yes +relevance: 100 +--- + License: BSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_33.yml b/src/licensedcode/data/rules/boost-1.0_33.yml deleted file mode 100644 index 6bf0f6570cd..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_34.RULE b/src/licensedcode/data/rules/boost-1.0_34.RULE index f3527e72447..883ea52e830 100644 --- a/src/licensedcode/data/rules/boost-1.0_34.RULE +++ b/src/licensedcode/data/rules/boost-1.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +--- + // Distributed under the Boost Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_34.yml b/src/licensedcode/data/rules/boost-1.0_34.yml deleted file mode 100644 index 4cfb24fc84f..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_35.RULE b/src/licensedcode/data/rules/boost-1.0_35.RULE index 6813d117344..b0ae682e02d 100644 --- a/src/licensedcode/data/rules/boost-1.0_35.RULE +++ b/src/licensedcode/data/rules/boost-1.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +--- + under the Boost Software License, Version 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_35.yml b/src/licensedcode/data/rules/boost-1.0_35.yml deleted file mode 100644 index 4cfb24fc84f..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_36.RULE b/src/licensedcode/data/rules/boost-1.0_36.RULE index a4d9d67939f..37db193dc71 100644 --- a/src/licensedcode/data/rules/boost-1.0_36.RULE +++ b/src/licensedcode/data/rules/boost-1.0_36.RULE @@ -1,2 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.boost.org/LICENSE_1_0.txt +--- + // Distributed under the Boost Software License, Version 1.0. // (See https://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_36.yml b/src/licensedcode/data/rules/boost-1.0_36.yml deleted file mode 100644 index d6db562b4f0..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_37.RULE b/src/licensedcode/data/rules/boost-1.0_37.RULE index 6e72e92c1fa..2d7885d62d5 100644 --- a/src/licensedcode/data/rules/boost-1.0_37.RULE +++ b/src/licensedcode/data/rules/boost-1.0_37.RULE @@ -1,2 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + // Distributed under the Boost Software License, Version 1.0. // (See http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_37.yml b/src/licensedcode/data/rules/boost-1.0_37.yml deleted file mode 100644 index 93113bae8ef..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_38.RULE b/src/licensedcode/data/rules/boost-1.0_38.RULE index a2efac514fc..645d4ee1fd4 100644 --- a/src/licensedcode/data/rules/boost-1.0_38.RULE +++ b/src/licensedcode/data/rules/boost-1.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + (See http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_38.yml b/src/licensedcode/data/rules/boost-1.0_38.yml deleted file mode 100644 index 30e427ac167..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_39.RULE b/src/licensedcode/data/rules/boost-1.0_39.RULE index 9d48e0e2d8c..06921e2d6ee 100644 --- a/src/licensedcode/data/rules/boost-1.0_39.RULE +++ b/src/licensedcode/data/rules/boost-1.0_39.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.boost.org/LICENSE_1_0.txt +--- + (See https://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_39.yml b/src/licensedcode/data/rules/boost-1.0_39.yml deleted file mode 100644 index 2f29812ceb7..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_4.RULE b/src/licensedcode/data/rules/boost-1.0_4.RULE index a71632b45cf..889311d3d55 100644 --- a/src/licensedcode/data/rules/boost-1.0_4.RULE +++ b/src/licensedcode/data/rules/boost-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +--- + Boost Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_4.yml b/src/licensedcode/data/rules/boost-1.0_4.yml deleted file mode 100644 index 2fe38f428f6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_40.RULE b/src/licensedcode/data/rules/boost-1.0_40.RULE index 9b91cab52bc..576aaca3326 100644 --- a/src/licensedcode/data/rules/boost-1.0_40.RULE +++ b/src/licensedcode/data/rules/boost-1.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +--- + > Boost Software License 1.0 (MIT- Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_40.yml b/src/licensedcode/data/rules/boost-1.0_40.yml deleted file mode 100644 index 2fe38f428f6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_41.RULE b/src/licensedcode/data/rules/boost-1.0_41.RULE index 64bf04d6926..3854fcfeb6b 100644 --- a/src/licensedcode/data/rules/boost-1.0_41.RULE +++ b/src/licensedcode/data/rules/boost-1.0_41.RULE @@ -1 +1,11 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_41.yml b/src/licensedcode/data/rules/boost-1.0_41.yml deleted file mode 100644 index d3fc62300f0..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_41.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_42.RULE b/src/licensedcode/data/rules/boost-1.0_42.RULE index e319e87ea25..846b20ff477 100644 --- a/src/licensedcode/data/rules/boost-1.0_42.RULE +++ b/src/licensedcode/data/rules/boost-1.0_42.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_42.yml b/src/licensedcode/data/rules/boost-1.0_42.yml deleted file mode 100644 index 87e4fa68c8e..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/boost-1.0_43.RULE b/src/licensedcode/data/rules/boost-1.0_43.RULE index 9fe2f005c49..0802645421e 100644 --- a/src/licensedcode/data/rules/boost-1.0_43.RULE +++ b/src/licensedcode/data/rules/boost-1.0_43.RULE @@ -1,3 +1,14 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE_1_0.txt +ignorable_urls: + - https://www.boost.org/LICENSE_1_0.txt +--- + Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_43.yml b/src/licensedcode/data/rules/boost-1.0_43.yml deleted file mode 100644 index 747a4da9b77..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_43.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE_1_0.txt -ignorable_urls: - - https://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_44.RULE b/src/licensedcode/data/rules/boost-1.0_44.RULE index 14f83d47674..a302aaacebf 100644 --- a/src/licensedcode/data/rules/boost-1.0_44.RULE +++ b/src/licensedcode/data/rules/boost-1.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Boost Software License, Version 1.0. See Boost Software License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_44.yml b/src/licensedcode/data/rules/boost-1.0_44.yml deleted file mode 100644 index 4cfb24fc84f..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_45.RULE b/src/licensedcode/data/rules/boost-1.0_45.RULE index 7d8eed602c2..27b6274dec0 100644 --- a/src/licensedcode/data/rules/boost-1.0_45.RULE +++ b/src/licensedcode/data/rules/boost-1.0_45.RULE @@ -1,2 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Use modification and distribution are subject to the boost Software License, Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_45.yml b/src/licensedcode/data/rules/boost-1.0_45.yml deleted file mode 100644 index 1ea43e817ce..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_45.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_46.RULE b/src/licensedcode/data/rules/boost-1.0_46.RULE index ada9418f079..3b8b53bd428 100644 --- a/src/licensedcode/data/rules/boost-1.0_46.RULE +++ b/src/licensedcode/data/rules/boost-1.0_46.RULE @@ -1,2 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +ignorable_urls: + - https://www.boost.org/LICENSE_1_0.txt +--- + Use modification and distribution are subject to the boost Software License, Version 1.0. (See https://www.boost.org/LICENSE_1_0.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_46.yml b/src/licensedcode/data/rules/boost-1.0_46.yml deleted file mode 100644 index 7df0e9c614d..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_46.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -ignorable_urls: - - https://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_47.RULE b/src/licensedcode/data/rules/boost-1.0_47.RULE index d905c055387..cd95b8f230c 100644 --- a/src/licensedcode/data/rules/boost-1.0_47.RULE +++ b/src/licensedcode/data/rules/boost-1.0_47.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +--- + Boost Software License - Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_47.yml b/src/licensedcode/data/rules/boost-1.0_47.yml deleted file mode 100644 index 2fe38f428f6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_48.RULE b/src/licensedcode/data/rules/boost-1.0_48.RULE index ba74eb0c820..bee7b71f413 100644 --- a/src/licensedcode/data/rules/boost-1.0_48.RULE +++ b/src/licensedcode/data/rules/boost-1.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 50 +--- + BSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_48.yml b/src/licensedcode/data/rules/boost-1.0_48.yml deleted file mode 100644 index 1a4d6e21b95..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/boost-1.0_49.RULE b/src/licensedcode/data/rules/boost-1.0_49.RULE index 47cb4ac39a0..0bcedd5dafe 100644 --- a/src/licensedcode/data/rules/boost-1.0_49.RULE +++ b/src/licensedcode/data/rules/boost-1.0_49.RULE @@ -1 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Boost Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_49.yml b/src/licensedcode/data/rules/boost-1.0_49.yml deleted file mode 100644 index aee502076c6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_49.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/boost-1.0_5.RULE b/src/licensedcode/data/rules/boost-1.0_5.RULE index 0c92a085d51..70cd06e3894 100644 --- a/src/licensedcode/data/rules/boost-1.0_5.RULE +++ b/src/licensedcode/data/rules/boost-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsl1.0.html +--- + http://www.opensource.org/licenses/bsl1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_5.yml b/src/licensedcode/data/rules/boost-1.0_5.yml deleted file mode 100644 index bea580601ce..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsl1.0.html diff --git a/src/licensedcode/data/rules/boost-1.0_50.RULE b/src/licensedcode/data/rules/boost-1.0_50.RULE index 7f93bbf1fd4..460e6cfc95c 100644 --- a/src/licensedcode/data/rules/boost-1.0_50.RULE +++ b/src/licensedcode/data/rules/boost-1.0_50.RULE @@ -1 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSL-1.0 Boost Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_50.yml b/src/licensedcode/data/rules/boost-1.0_50.yml deleted file mode 100644 index aee502076c6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_50.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/boost-1.0_51.RULE b/src/licensedcode/data/rules/boost-1.0_51.RULE index 23cafd70b27..f87de7a1049 100644 --- a/src/licensedcode/data/rules/boost-1.0_51.RULE +++ b/src/licensedcode/data/rules/boost-1.0_51.RULE @@ -1 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Boost Software License 1.0 BSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_51.yml b/src/licensedcode/data/rules/boost-1.0_51.yml deleted file mode 100644 index aee502076c6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_51.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/boost-1.0_52.RULE b/src/licensedcode/data/rules/boost-1.0_52.RULE index 99c73886163..2fe4686cbd1 100644 --- a/src/licensedcode/data/rules/boost-1.0_52.RULE +++ b/src/licensedcode/data/rules/boost-1.0_52.RULE @@ -1 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Boost Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_52.yml b/src/licensedcode/data/rules/boost-1.0_52.yml deleted file mode 100644 index 181a4bb6919..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_52.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: boost-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/boost-1.0_53.RULE b/src/licensedcode/data/rules/boost-1.0_53.RULE index 065138a96fd..3f499bc69c8 100644 --- a/src/licensedcode/data/rules/boost-1.0_53.RULE +++ b/src/licensedcode/data/rules/boost-1.0_53.RULE @@ -1 +1,10 @@ +--- +license_expression: boost-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_53.yml b/src/licensedcode/data/rules/boost-1.0_53.yml deleted file mode 100644 index 181a4bb6919..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_53.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: boost-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/boost-1.0_54.RULE b/src/licensedcode/data/rules/boost-1.0_54.RULE index 274aff7855e..23f29d7f65a 100644 --- a/src/licensedcode/data/rules/boost-1.0_54.RULE +++ b/src/licensedcode/data/rules/boost-1.0_54.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['BOOST', 'BSL-1.0'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_54.yml b/src/licensedcode/data/rules/boost-1.0_54.yml deleted file mode 100644 index 0957595d580..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_55.RULE b/src/licensedcode/data/rules/boost-1.0_55.RULE index bcc5d93a0fb..352c6e78c6c 100644 --- a/src/licensedcode/data/rules/boost-1.0_55.RULE +++ b/src/licensedcode/data/rules/boost-1.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Boost_Software_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_55.yml b/src/licensedcode/data/rules/boost-1.0_55.yml deleted file mode 100644 index 2fe38f428f6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_56.RULE b/src/licensedcode/data/rules/boost-1.0_56.RULE index e01ce9be020..aa4a40907f9 100644 --- a/src/licensedcode/data/rules/boost-1.0_56.RULE +++ b/src/licensedcode/data/rules/boost-1.0_56.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSL-1.0 +--- + https://licenses.nuget.org/BSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_56.yml b/src/licensedcode/data/rules/boost-1.0_56.yml deleted file mode 100644 index d576ea43d31..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSL-1.0 diff --git a/src/licensedcode/data/rules/boost-1.0_57.RULE b/src/licensedcode/data/rules/boost-1.0_57.RULE index 7cc5079d4bd..050321f5109 100644 --- a/src/licensedcode/data/rules/boost-1.0_57.RULE +++ b/src/licensedcode/data/rules/boost-1.0_57.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_57.yml b/src/licensedcode/data/rules/boost-1.0_57.yml deleted file mode 100644 index 2fe38f428f6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/boost-1.0_58.RULE b/src/licensedcode/data/rules/boost-1.0_58.RULE index d88f22e2617..02c2a7ef94b 100644 --- a/src/licensedcode/data/rules/boost-1.0_58.RULE +++ b/src/licensedcode/data/rules/boost-1.0_58.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSL-1.0 +--- + LICENSE {{BSL-1.0}} https://spdx.org/licenses/BSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_58.yml b/src/licensedcode/data/rules/boost-1.0_58.yml deleted file mode 100644 index 9ac8fe970b6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSL-1.0 diff --git a/src/licensedcode/data/rules/boost-1.0_59.RULE b/src/licensedcode/data/rules/boost-1.0_59.RULE index 7e5b5d9540c..0367b116036 100644 --- a/src/licensedcode/data/rules/boost-1.0_59.RULE +++ b/src/licensedcode/data/rules/boost-1.0_59.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSL-1.0 +--- + {{BSL-1.0}} https://spdx.org/licenses/BSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_59.yml b/src/licensedcode/data/rules/boost-1.0_59.yml deleted file mode 100644 index 9ac8fe970b6..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSL-1.0 diff --git a/src/licensedcode/data/rules/boost-1.0_6.RULE b/src/licensedcode/data/rules/boost-1.0_6.RULE index 2f2f957ce4f..92a6497823b 100644 --- a/src/licensedcode/data/rules/boost-1.0_6.RULE +++ b/src/licensedcode/data/rules/boost-1.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: boost-1.0 +is_license_text: yes +minimum_coverage: 70 +notes: Boost with SPDX seen here https://raw.githubusercontent.com/pocoproject/poco/develop/LICENSE +ignorable_urls: + - http://spdx.org/licenses/ +--- + Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization @@ -29,4 +38,4 @@ Individual files contain the following tag instead of the full license text. SPDX-License-Identifier: BSL-1.0 This enables machine processing of license information based on the SPDX -License Identifiers that are here available: http://spdx.org/licenses/ +License Identifiers that are here available: http://spdx.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_6.yml b/src/licensedcode/data/rules/boost-1.0_6.yml deleted file mode 100644 index 789a0d0ed9c..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: boost-1.0 -is_license_text: yes -minimum_coverage: 70 -notes: Boost with SPDX seen here https://raw.githubusercontent.com/pocoproject/poco/develop/LICENSE -ignorable_urls: - - http://spdx.org/licenses/ diff --git a/src/licensedcode/data/rules/boost-1.0_60.RULE b/src/licensedcode/data/rules/boost-1.0_60.RULE index 905804f4e04..700aa2c4798 100644 --- a/src/licensedcode/data/rules/boost-1.0_60.RULE +++ b/src/licensedcode/data/rules/boost-1.0_60.RULE @@ -1,3 +1,13 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE_1_0.txt +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_60.yml b/src/licensedcode/data/rules/boost-1.0_60.yml deleted file mode 100644 index 6c9708dbafe..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_60.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE_1_0.txt -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_61.RULE b/src/licensedcode/data/rules/boost-1.0_61.RULE index 11fefe53473..ac53e70b2ef 100644 --- a/src/licensedcode/data/rules/boost-1.0_61.RULE +++ b/src/licensedcode/data/rules/boost-1.0_61.RULE @@ -1,2 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +--- + Use, modification and distribution is subject to the Boost Software License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_61.yml b/src/licensedcode/data/rules/boost-1.0_61.yml deleted file mode 100644 index 6f2096f0069..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_61.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp diff --git a/src/licensedcode/data/rules/boost-1.0_62.RULE b/src/licensedcode/data/rules/boost-1.0_62.RULE index faaa9971f03..bdade6bdc1b 100644 --- a/src/licensedcode/data/rules/boost-1.0_62.RULE +++ b/src/licensedcode/data/rules/boost-1.0_62.RULE @@ -1,2 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +--- + Use, modification and distribution is subject to Boost Software License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_62.yml b/src/licensedcode/data/rules/boost-1.0_62.yml deleted file mode 100644 index 6f2096f0069..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_62.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp diff --git a/src/licensedcode/data/rules/boost-1.0_63.RULE b/src/licensedcode/data/rules/boost-1.0_63.RULE index b2a2f01ee47..77c45684035 100644 --- a/src/licensedcode/data/rules/boost-1.0_63.RULE +++ b/src/licensedcode/data/rules/boost-1.0_63.RULE @@ -1,2 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +--- + Use, modification and distribution are subject to Boost Software License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_63.yml b/src/licensedcode/data/rules/boost-1.0_63.yml deleted file mode 100644 index 6f2096f0069..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_63.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp diff --git a/src/licensedcode/data/rules/boost-1.0_64.RULE b/src/licensedcode/data/rules/boost-1.0_64.RULE index 81810cf5e47..a2fc62aad89 100644 --- a/src/licensedcode/data/rules/boost-1.0_64.RULE +++ b/src/licensedcode/data/rules/boost-1.0_64.RULE @@ -1,3 +1,13 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE_1_0.txt +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Use, modification and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at diff --git a/src/licensedcode/data/rules/boost-1.0_64.yml b/src/licensedcode/data/rules/boost-1.0_64.yml deleted file mode 100644 index 6c9708dbafe..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_64.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE_1_0.txt -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_65.RULE b/src/licensedcode/data/rules/boost-1.0_65.RULE index d5f5427fbd8..142a19042b7 100644 --- a/src/licensedcode/data/rules/boost-1.0_65.RULE +++ b/src/licensedcode/data/rules/boost-1.0_65.RULE @@ -1,3 +1,13 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE_1_0.txt +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Use, modification and distribution are subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at diff --git a/src/licensedcode/data/rules/boost-1.0_65.yml b/src/licensedcode/data/rules/boost-1.0_65.yml deleted file mode 100644 index 6c9708dbafe..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_65.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE_1_0.txt -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_66.RULE b/src/licensedcode/data/rules/boost-1.0_66.RULE index 8a80d3e1502..698a0fd78f8 100644 --- a/src/licensedcode/data/rules/boost-1.0_66.RULE +++ b/src/licensedcode/data/rules/boost-1.0_66.RULE @@ -1,3 +1,13 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE_1_0.txt +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + Subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_66.yml b/src/licensedcode/data/rules/boost-1.0_66.yml deleted file mode 100644 index 6c9708dbafe..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_66.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE_1_0.txt -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_67.RULE b/src/licensedcode/data/rules/boost-1.0_67.RULE index 5a7d4e258c6..0ccbfd51730 100644 --- a/src/licensedcode/data/rules/boost-1.0_67.RULE +++ b/src/licensedcode/data/rules/boost-1.0_67.RULE @@ -1,3 +1,13 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE_1_0.txt +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/src/licensedcode/data/rules/boost-1.0_67.yml b/src/licensedcode/data/rules/boost-1.0_67.yml deleted file mode 100644 index 6c9708dbafe..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_67.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE_1_0.txt -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_68.RULE b/src/licensedcode/data/rules/boost-1.0_68.RULE index 97adf730e59..eb3dd4e1880 100644 --- a/src/licensedcode/data/rules/boost-1.0_68.RULE +++ b/src/licensedcode/data/rules/boost-1.0_68.RULE @@ -1 +1,8 @@ +--- +license_expression: boost-1.0 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +--- + distributed under Boost Software License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_68.yml b/src/licensedcode/data/rules/boost-1.0_68.yml deleted file mode 100644 index 6f2096f0069..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_68.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-1.0 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp diff --git a/src/licensedcode/data/rules/boost-1.0_7.RULE b/src/licensedcode/data/rules/boost-1.0_7.RULE index d11423a1e7f..1a52b3d4cee 100644 --- a/src/licensedcode/data/rules/boost-1.0_7.RULE +++ b/src/licensedcode/data/rules/boost-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.boost.org/LICENSE_1_0.txt +--- + http://www.boost.org/LICENSE_1_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_7.yml b/src/licensedcode/data/rules/boost-1.0_7.yml deleted file mode 100644 index 30e427ac167..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/boost-1.0_8.RULE b/src/licensedcode/data/rules/boost-1.0_8.RULE index cddd1c87029..e0eb223c13c 100644 --- a/src/licensedcode/data/rules/boost-1.0_8.RULE +++ b/src/licensedcode/data/rules/boost-1.0_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: boost-1.0 +is_license_text: yes +--- + Distributed under the Boost Software License, Version 1.0. Permission is hereby granted, free of charge, to any person or organization @@ -20,4 +25,4 @@ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_8.yml b/src/licensedcode/data/rules/boost-1.0_8.yml deleted file mode 100644 index 4769bbb8288..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: boost-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/boost-1.0_9.RULE b/src/licensedcode/data/rules/boost-1.0_9.RULE index ae3da63563c..2e1de97bb53 100644 --- a/src/licensedcode/data/rules/boost-1.0_9.RULE +++ b/src/licensedcode/data/rules/boost-1.0_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: boost-1.0 +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, @@ -18,4 +23,4 @@ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_9.yml b/src/licensedcode/data/rules/boost-1.0_9.yml deleted file mode 100644 index 4769bbb8288..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: boost-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/boost-1.0_or_mit_1.RULE b/src/licensedcode/data/rules/boost-1.0_or_mit_1.RULE index b6314e01c61..d596298766c 100644 --- a/src/licensedcode/data/rules/boost-1.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/boost-1.0_or_mit_1.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 OR mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://rapidxml.sourceforge.net/license.txt +--- + http://rapidxml.sourceforge.net/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_or_mit_1.yml b/src/licensedcode/data/rules/boost-1.0_or_mit_1.yml deleted file mode 100644 index 263f3d8e457..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_or_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 OR mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://rapidxml.sourceforge.net/license.txt diff --git a/src/licensedcode/data/rules/boost-1.0_or_mit_2.RULE b/src/licensedcode/data/rules/boost-1.0_or_mit_2.RULE index 57000d551cb..5d53ca725ad 100644 --- a/src/licensedcode/data/rules/boost-1.0_or_mit_2.RULE +++ b/src/licensedcode/data/rules/boost-1.0_or_mit_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: boost-1.0 OR mit +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + Use of this software is granted under one of the following two licenses, to be chosen freely by the user. @@ -44,4 +51,4 @@ 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. +IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_or_mit_2.yml b/src/licensedcode/data/rules/boost-1.0_or_mit_2.yml deleted file mode 100644 index e5111ae49e9..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_or_mit_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-1.0 OR mit -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/boost-1.0_url_1.RULE b/src/licensedcode/data/rules/boost-1.0_url_1.RULE index 70d880f4f10..d29213d5e69 100644 --- a/src/licensedcode/data/rules/boost-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/boost-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsl-1.0 +--- + https://spdx.org/licenses/bsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_url_1.yml b/src/licensedcode/data/rules/boost-1.0_url_1.yml deleted file mode 100644 index 3b85909b666..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsl-1.0 diff --git a/src/licensedcode/data/rules/boost-1.0_url_2.RULE b/src/licensedcode/data/rules/boost-1.0_url_2.RULE index 8c043b22439..5a1e4152df6 100644 --- a/src/licensedcode/data/rules/boost-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/boost-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsl-1.0.html +--- + https://spdx.org/licenses/bsl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_url_2.yml b/src/licensedcode/data/rules/boost-1.0_url_2.yml deleted file mode 100644 index e545324a69b..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsl-1.0.html diff --git a/src/licensedcode/data/rules/boost-1.0_url_glc_148.RULE b/src/licensedcode/data/rules/boost-1.0_url_glc_148.RULE index 8913af80e7c..4feeaa7995f 100644 --- a/src/licensedcode/data/rules/boost-1.0_url_glc_148.RULE +++ b/src/licensedcode/data/rules/boost-1.0_url_glc_148.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsl-1.0 +--- + http://www.opensource.org/licenses/bsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_url_glc_148.yml b/src/licensedcode/data/rules/boost-1.0_url_glc_148.yml deleted file mode 100644 index 5fad5d4abe7..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_url_glc_148.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsl-1.0 diff --git a/src/licensedcode/data/rules/boost-1.0_url_glc_149.RULE b/src/licensedcode/data/rules/boost-1.0_url_glc_149.RULE index 13b21b290d9..ffa170f484a 100644 --- a/src/licensedcode/data/rules/boost-1.0_url_glc_149.RULE +++ b/src/licensedcode/data/rules/boost-1.0_url_glc_149.RULE @@ -1 +1,9 @@ +--- +license_expression: boost-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/bsl-1.0 +--- + https://www.opensource.org/licenses/bsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_url_glc_149.yml b/src/licensedcode/data/rules/boost-1.0_url_glc_149.yml deleted file mode 100644 index ec893d67a63..00000000000 --- a/src/licensedcode/data/rules/boost-1.0_url_glc_149.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: boost-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/bsl-1.0 diff --git a/src/licensedcode/data/rules/boost-original.RULE b/src/licensedcode/data/rules/boost-original.RULE index e915542f250..807759f80c1 100644 --- a/src/licensedcode/data/rules/boost-original.RULE +++ b/src/licensedcode/data/rules/boost-original.RULE @@ -1 +1,8 @@ -Anti-Grain Geometry Public License v2.4 +--- +license_expression: boost-original +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + +Anti-Grain Geometry Public License v2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-original.yml b/src/licensedcode/data/rules/boost-original.yml deleted file mode 100644 index df305f6aaad..00000000000 --- a/src/licensedcode/data/rules/boost-original.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-original -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/boost-original_1.RULE b/src/licensedcode/data/rules/boost-original_1.RULE index 714d48b1f5c..76037302a5b 100644 --- a/src/licensedcode/data/rules/boost-original_1.RULE +++ b/src/licensedcode/data/rules/boost-original_1.RULE @@ -1,7 +1,13 @@ +--- +license_expression: boost-original +is_license_notice: yes +minimum_coverage: 80 +--- + // Permission to copy, use, modify, sell and // distribute this software is granted provided this copyright notice appears // in all copies. This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. * The Boost copyright applies only to those parts of the interface and implementation - * that are common to the software on the Boost site. + * that are common to the software on the Boost site. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-original_1.yml b/src/licensedcode/data/rules/boost-original_1.yml deleted file mode 100644 index 8bf285cc54b..00000000000 --- a/src/licensedcode/data/rules/boost-original_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-original -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/boost-original_2.RULE b/src/licensedcode/data/rules/boost-original_2.RULE index 62e00b28523..ef470d70a40 100644 --- a/src/licensedcode/data/rules/boost-original_2.RULE +++ b/src/licensedcode/data/rules/boost-original_2.RULE @@ -1,4 +1,11 @@ +--- +license_expression: boost-original +is_license_notice: yes +relevance: 90 +notes: Truncated text found in some old openoffice +--- + // Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears in all copies. // This software is provided "as is" without express or implied - // warranty, and with no claim as to its suitability for any \ No newline at end of file + // warranty, and with no claim as to its suitability for any \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-original_2.yml b/src/licensedcode/data/rules/boost-original_2.yml deleted file mode 100644 index 7d46d8ef497..00000000000 --- a/src/licensedcode/data/rules/boost-original_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: boost-original -is_license_notice: yes -relevance: 90 -notes: Truncated text found in some old openoffice diff --git a/src/licensedcode/data/rules/bootloader-exception_1.RULE b/src/licensedcode/data/rules/bootloader-exception_1.RULE index 085893e4880..8a5d9097665 100644 --- a/src/licensedcode/data/rules/bootloader-exception_1.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Bootloader Distribution Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_1.yml b/src/licensedcode/data/rules/bootloader-exception_1.yml deleted file mode 100644 index a988473a0e0..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bootloader-exception_10.RULE b/src/licensedcode/data/rules/bootloader-exception_10.RULE index a7bc7c7331a..cb8ef8610d4 100644 --- a/src/licensedcode/data/rules/bootloader-exception_10.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Bootloader-exception +--- + {{Bootloader-exception}} https://spdx.org/licenses/Bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_10.yml b/src/licensedcode/data/rules/bootloader-exception_10.yml deleted file mode 100644 index 859396e3360..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Bootloader-exception diff --git a/src/licensedcode/data/rules/bootloader-exception_11.RULE b/src/licensedcode/data/rules/bootloader-exception_11.RULE index cca01230ab6..57ce746e2cd 100644 --- a/src/licensedcode/data/rules/bootloader-exception_11.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_11.RULE @@ -1 +1,9 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Bootloader-exception +--- + LICENSE {{Bootloader-exception}} https://spdx.org/licenses/Bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_11.yml b/src/licensedcode/data/rules/bootloader-exception_11.yml deleted file mode 100644 index 859396e3360..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Bootloader-exception diff --git a/src/licensedcode/data/rules/bootloader-exception_2.RULE b/src/licensedcode/data/rules/bootloader-exception_2.RULE index 3cac2fbaeaf..976ef9378d9 100644 --- a/src/licensedcode/data/rules/bootloader-exception_2.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Bootloader Distribution Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_2.yml b/src/licensedcode/data/rules/bootloader-exception_2.yml deleted file mode 100644 index a988473a0e0..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bootloader-exception_3.RULE b/src/licensedcode/data/rules/bootloader-exception_3.RULE index db874c05aab..6a0f830d25c 100644 --- a/src/licensedcode/data/rules/bootloader-exception_3.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Bootloader-exception Bootloader Distribution Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_3.yml b/src/licensedcode/data/rules/bootloader-exception_3.yml deleted file mode 100644 index a988473a0e0..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bootloader-exception_4.RULE b/src/licensedcode/data/rules/bootloader-exception_4.RULE index a96688136ff..d6473dbbd47 100644 --- a/src/licensedcode/data/rules/bootloader-exception_4.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Bootloader Distribution Exception Bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_4.yml b/src/licensedcode/data/rules/bootloader-exception_4.yml deleted file mode 100644 index a988473a0e0..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bootloader-exception_5.RULE b/src/licensedcode/data/rules/bootloader-exception_5.RULE index 422ca2aec7d..81139715c37 100644 --- a/src/licensedcode/data/rules/bootloader-exception_5.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bootloader-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_5.yml b/src/licensedcode/data/rules/bootloader-exception_5.yml deleted file mode 100644 index df0b7e90569..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bootloader-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bootloader-exception_6.RULE b/src/licensedcode/data/rules/bootloader-exception_6.RULE index df5e9ccd0db..8891f080183 100644 --- a/src/licensedcode/data/rules/bootloader-exception_6.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bootloader-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Bootloader Distribution Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_6.yml b/src/licensedcode/data/rules/bootloader-exception_6.yml deleted file mode 100644 index df0b7e90569..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bootloader-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bootloader-exception_7.RULE b/src/licensedcode/data/rules/bootloader-exception_7.RULE index 254b0844ca0..566c62d8b49 100644 --- a/src/licensedcode/data/rules/bootloader-exception_7.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bootloader-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_7.yml b/src/licensedcode/data/rules/bootloader-exception_7.yml deleted file mode 100644 index df0b7e90569..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bootloader-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bootloader-exception_8.RULE b/src/licensedcode/data/rules/bootloader-exception_8.RULE index e10569c5cb9..610a81e8351 100644 --- a/src/licensedcode/data/rules/bootloader-exception_8.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Bootloader-exception +--- + https://licenses.nuget.org/Bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_8.yml b/src/licensedcode/data/rules/bootloader-exception_8.yml deleted file mode 100644 index 7baa86fe861..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Bootloader-exception diff --git a/src/licensedcode/data/rules/bootloader-exception_9.RULE b/src/licensedcode/data/rules/bootloader-exception_9.RULE index 572d358a44f..9176142e3db 100644 --- a/src/licensedcode/data/rules/bootloader-exception_9.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_9.RULE @@ -1 +1,7 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_9.yml b/src/licensedcode/data/rules/bootloader-exception_9.yml deleted file mode 100644 index 156a0867975..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bootloader-exception_url_1.RULE b/src/licensedcode/data/rules/bootloader-exception_url_1.RULE index 38b45958a44..81b98942f3c 100644 --- a/src/licensedcode/data/rules/bootloader-exception_url_1.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bootloader-exception +--- + https://spdx.org/licenses/bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_url_1.yml b/src/licensedcode/data/rules/bootloader-exception_url_1.yml deleted file mode 100644 index 49f6e1e2530..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bootloader-exception diff --git a/src/licensedcode/data/rules/bootloader-exception_url_2.RULE b/src/licensedcode/data/rules/bootloader-exception_url_2.RULE index d27a771742e..b385234887d 100644 --- a/src/licensedcode/data/rules/bootloader-exception_url_2.RULE +++ b/src/licensedcode/data/rules/bootloader-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bootloader-exception.html +--- + https://spdx.org/licenses/bootloader-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bootloader-exception_url_2.yml b/src/licensedcode/data/rules/bootloader-exception_url_2.yml deleted file mode 100644 index dab9f3dab92..00000000000 --- a/src/licensedcode/data/rules/bootloader-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bootloader-exception.html diff --git a/src/licensedcode/data/rules/borceux_1.RULE b/src/licensedcode/data/rules/borceux_1.RULE index 888e34dd92b..9dcaf6068c3 100644 --- a/src/licensedcode/data/rules/borceux_1.RULE +++ b/src/licensedcode/data/rules/borceux_1.RULE @@ -1 +1,7 @@ +--- +license_expression: borceux +is_license_reference: yes +relevance: 100 +--- + Borceux Borceux license \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_1.yml b/src/licensedcode/data/rules/borceux_1.yml deleted file mode 100644 index 893a7b7078f..00000000000 --- a/src/licensedcode/data/rules/borceux_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: borceux -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/borceux_10.RULE b/src/licensedcode/data/rules/borceux_10.RULE index a8a615acd66..14153190697 100644 --- a/src/licensedcode/data/rules/borceux_10.RULE +++ b/src/licensedcode/data/rules/borceux_10.RULE @@ -1 +1,9 @@ +--- +license_expression: borceux +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Borceux +--- + {{Borceux}} https://spdx.org/licenses/Borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_10.yml b/src/licensedcode/data/rules/borceux_10.yml deleted file mode 100644 index cfdd8a9f626..00000000000 --- a/src/licensedcode/data/rules/borceux_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: borceux -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Borceux diff --git a/src/licensedcode/data/rules/borceux_11.RULE b/src/licensedcode/data/rules/borceux_11.RULE index c588247d399..301f0416ca0 100644 --- a/src/licensedcode/data/rules/borceux_11.RULE +++ b/src/licensedcode/data/rules/borceux_11.RULE @@ -1 +1,9 @@ +--- +license_expression: borceux +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Borceux +--- + LICENSE {{Borceux}} https://spdx.org/licenses/Borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_11.yml b/src/licensedcode/data/rules/borceux_11.yml deleted file mode 100644 index cfdd8a9f626..00000000000 --- a/src/licensedcode/data/rules/borceux_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: borceux -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Borceux diff --git a/src/licensedcode/data/rules/borceux_2.RULE b/src/licensedcode/data/rules/borceux_2.RULE index c10a6697859..daf187137d8 100644 --- a/src/licensedcode/data/rules/borceux_2.RULE +++ b/src/licensedcode/data/rules/borceux_2.RULE @@ -1 +1,10 @@ +--- +license_expression: borceux +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Borceux license \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_2.yml b/src/licensedcode/data/rules/borceux_2.yml deleted file mode 100644 index 70c0265eba7..00000000000 --- a/src/licensedcode/data/rules/borceux_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: borceux -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/borceux_3.RULE b/src/licensedcode/data/rules/borceux_3.RULE index 5ba6841399d..e284c557e66 100644 --- a/src/licensedcode/data/rules/borceux_3.RULE +++ b/src/licensedcode/data/rules/borceux_3.RULE @@ -1 +1,10 @@ +--- +license_expression: borceux +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Borceux license \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_3.yml b/src/licensedcode/data/rules/borceux_3.yml deleted file mode 100644 index 70c0265eba7..00000000000 --- a/src/licensedcode/data/rules/borceux_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: borceux -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/borceux_4.RULE b/src/licensedcode/data/rules/borceux_4.RULE index b8bd1a43510..02dba4cbb38 100644 --- a/src/licensedcode/data/rules/borceux_4.RULE +++ b/src/licensedcode/data/rules/borceux_4.RULE @@ -1 +1,10 @@ +--- +license_expression: borceux +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Borceux license Borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_4.yml b/src/licensedcode/data/rules/borceux_4.yml deleted file mode 100644 index 70c0265eba7..00000000000 --- a/src/licensedcode/data/rules/borceux_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: borceux -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/borceux_5.RULE b/src/licensedcode/data/rules/borceux_5.RULE index e2fc6b6c37a..2f8b63e19a4 100644 --- a/src/licensedcode/data/rules/borceux_5.RULE +++ b/src/licensedcode/data/rules/borceux_5.RULE @@ -1 +1,10 @@ +--- +license_expression: borceux +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_5.yml b/src/licensedcode/data/rules/borceux_5.yml deleted file mode 100644 index 03fdd29905e..00000000000 --- a/src/licensedcode/data/rules/borceux_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: borceux -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/borceux_6.RULE b/src/licensedcode/data/rules/borceux_6.RULE index b7769432b28..c3561fba488 100644 --- a/src/licensedcode/data/rules/borceux_6.RULE +++ b/src/licensedcode/data/rules/borceux_6.RULE @@ -1 +1,10 @@ +--- +license_expression: borceux +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Borceux license \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_6.yml b/src/licensedcode/data/rules/borceux_6.yml deleted file mode 100644 index 03fdd29905e..00000000000 --- a/src/licensedcode/data/rules/borceux_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: borceux -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/borceux_7.RULE b/src/licensedcode/data/rules/borceux_7.RULE index 8ed11d0eebd..642b7d082f9 100644 --- a/src/licensedcode/data/rules/borceux_7.RULE +++ b/src/licensedcode/data/rules/borceux_7.RULE @@ -1 +1,10 @@ +--- +license_expression: borceux +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_7.yml b/src/licensedcode/data/rules/borceux_7.yml deleted file mode 100644 index 03fdd29905e..00000000000 --- a/src/licensedcode/data/rules/borceux_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: borceux -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/borceux_8.RULE b/src/licensedcode/data/rules/borceux_8.RULE index d52d16480b0..b47bfb3cef2 100644 --- a/src/licensedcode/data/rules/borceux_8.RULE +++ b/src/licensedcode/data/rules/borceux_8.RULE @@ -1 +1,9 @@ +--- +license_expression: borceux +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Borceux +--- + https://licenses.nuget.org/Borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_8.yml b/src/licensedcode/data/rules/borceux_8.yml deleted file mode 100644 index 5d74c52fea1..00000000000 --- a/src/licensedcode/data/rules/borceux_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: borceux -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Borceux diff --git a/src/licensedcode/data/rules/borceux_9.RULE b/src/licensedcode/data/rules/borceux_9.RULE index 24f11831a48..32b26b2cc13 100644 --- a/src/licensedcode/data/rules/borceux_9.RULE +++ b/src/licensedcode/data/rules/borceux_9.RULE @@ -1 +1,7 @@ +--- +license_expression: borceux +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_9.yml b/src/licensedcode/data/rules/borceux_9.yml deleted file mode 100644 index 893a7b7078f..00000000000 --- a/src/licensedcode/data/rules/borceux_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: borceux -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/borceux_url_1.RULE b/src/licensedcode/data/rules/borceux_url_1.RULE index bcc9a776a54..5d25df72eb3 100644 --- a/src/licensedcode/data/rules/borceux_url_1.RULE +++ b/src/licensedcode/data/rules/borceux_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: borceux +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/borceux +--- + https://spdx.org/licenses/borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_url_1.yml b/src/licensedcode/data/rules/borceux_url_1.yml deleted file mode 100644 index 3ea65c484ca..00000000000 --- a/src/licensedcode/data/rules/borceux_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: borceux -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/borceux diff --git a/src/licensedcode/data/rules/borceux_url_2.RULE b/src/licensedcode/data/rules/borceux_url_2.RULE index 5c703918916..9279a69de05 100644 --- a/src/licensedcode/data/rules/borceux_url_2.RULE +++ b/src/licensedcode/data/rules/borceux_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: borceux +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/borceux.html +--- + https://spdx.org/licenses/borceux.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/borceux_url_2.yml b/src/licensedcode/data/rules/borceux_url_2.yml deleted file mode 100644 index df70f654e88..00000000000 --- a/src/licensedcode/data/rules/borceux_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: borceux -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/borceux.html diff --git a/src/licensedcode/data/rules/bpel4ws-spec.RULE b/src/licensedcode/data/rules/bpel4ws-spec.RULE index a031fa61c67..abebbc3e726 100644 --- a/src/licensedcode/data/rules/bpel4ws-spec.RULE +++ b/src/licensedcode/data/rules/bpel4ws-spec.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bpel4ws-spec +is_license_notice: yes +--- + Permission to copy and display the "Business Process Execution Language for Web Services Specification, version 1.1 dated May 5, 2003" (hereafter "the BPEL4WS Specification"), in any medium without fee or royalty is hereby @@ -33,4 +38,4 @@ permission. Title to copyright in the BPEL4WS Specification will at all times remain with the Authors. - No other rights are granted by implication, estoppel or otherwise. + No other rights are granted by implication, estoppel or otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bpel4ws-spec.yml b/src/licensedcode/data/rules/bpel4ws-spec.yml deleted file mode 100644 index 99a07a884f5..00000000000 --- a/src/licensedcode/data/rules/bpel4ws-spec.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bpel4ws-spec -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bpel4ws-spec2.RULE b/src/licensedcode/data/rules/bpel4ws-spec2.RULE index 6b30208edd9..ae1544df35a 100644 --- a/src/licensedcode/data/rules/bpel4ws-spec2.RULE +++ b/src/licensedcode/data/rules/bpel4ws-spec2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bpel4ws-spec +is_license_notice: yes +--- + BEA, IBM, Microsoft, SAP AG and Siebel Systems (collectively, the "Authors") agree to grant you a royalty-free license, under reasonable, non-discriminatory terms and conditions, to patents that they deem necessary to implement the Business Process Execution Language for Web Services diff --git a/src/licensedcode/data/rules/bpel4ws-spec2.yml b/src/licensedcode/data/rules/bpel4ws-spec2.yml deleted file mode 100644 index 99a07a884f5..00000000000 --- a/src/licensedcode/data/rules/bpel4ws-spec2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bpel4ws-spec -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bpmn-io_1.RULE b/src/licensedcode/data/rules/bpmn-io_1.RULE index f09223888a0..cd9eb674a75 100644 --- a/src/licensedcode/data/rules/bpmn-io_1.RULE +++ b/src/licensedcode/data/rules/bpmn-io_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bpmn-io +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://bpmn.io/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/bpmn-io_1.yml b/src/licensedcode/data/rules/bpmn-io_1.yml deleted file mode 100644 index 3801cc72b00..00000000000 --- a/src/licensedcode/data/rules/bpmn-io_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bpmn-io -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://bpmn.io/ diff --git a/src/licensedcode/data/rules/brian-clapper.RULE b/src/licensedcode/data/rules/brian-clapper.RULE index 359cfb401b6..74ff1d6f193 100644 --- a/src/licensedcode/data/rules/brian-clapper.RULE +++ b/src/licensedcode/data/rules/brian-clapper.RULE @@ -1,3 +1,12 @@ +--- +license_expression: brian-clapper +is_license_notice: yes +ignorable_authors: + - Brian M. Clapper +ignorable_emails: + - bmc@clapper.org +--- + LICENSE This software is released under the following license: diff --git a/src/licensedcode/data/rules/brian-clapper.yml b/src/licensedcode/data/rules/brian-clapper.yml deleted file mode 100644 index 869cfb64859..00000000000 --- a/src/licensedcode/data/rules/brian-clapper.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: brian-clapper -is_license_notice: yes -ignorable_authors: - - Brian M. Clapper -ignorable_emails: - - bmc@clapper.org diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause.RULE index 383e2b968b6..df7964deae6 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_notice: yes +notes: http://gladman.plushost.co.uk/oldsite/AES/aes-src-11-01-11.zip +--- + LICENSE TERMS The redistribution and use of this software (with or without changes) @@ -16,4 +22,4 @@ This software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness - and/or fitness for purpose. + and/or fitness for purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause.yml b/src/licensedcode/data/rules/brian-gladman-3-clause.yml deleted file mode 100644 index e18ee659354..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_notice: yes -notes: http://gladman.plushost.co.uk/oldsite/AES/aes-src-11-01-11.zip diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_1.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_1.RULE index d85a13ccf27..1ef7e12feb4 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_1.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: brian-gladman-3-clause +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php +--- + Based on Dr Brian Gladman's (GPL'd) work published at http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php -See the original copyright notice below. +See the original copyright notice below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_1.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_1.yml deleted file mode 100644 index 46523662830..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_2.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_2.RULE index 190a5e3799f..cdafca43f14 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_2.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_text: yes +relevance: 100 +--- + LICENSE TERMS The free distribution and use of this software in both source and diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_2.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_2.yml deleted file mode 100644 index cbd7344aa7f..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_3.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_3.RULE index f2f5f7933c7..745e604fc16 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_3.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_text: yes +relevance: 100 +--- + The free distribution and use of this software in both source and binary form is allowed (with or without changes) provided that: diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_3.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_3.yml deleted file mode 100644 index cbd7344aa7f..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_4.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_4.RULE index 2aec83cd4ab..81530b8d595 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_4.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_text: yes +relevance: 100 +--- + LICENSE TERMS The free distribution and use of this software in both source and diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_4.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_4.yml deleted file mode 100644 index cbd7344aa7f..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_5.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_5.RULE index 2c34fb2bfc1..a82305feee3 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_5.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_text: yes +relevance: 100 +--- + The free distribution and use of this software in both source and binary form is allowed (with or without changes) provided that: diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_5.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_5.yml deleted file mode 100644 index cbd7344aa7f..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_6.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_6.RULE index 67cd4d99968..bb8b03ab095 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_6.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_text: yes +relevance: 100 +--- + LICENSE TERMS The free distribution and use of this software in both source and diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_6.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_6.yml deleted file mode 100644 index cbd7344aa7f..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_7.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_7.RULE index d2a05505851..b1b067ae9da 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_7.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_text: yes +relevance: 100 +--- + The free distribution and use of this software in both source and binary form is allowed (with or without changes) provided that: diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_7.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_7.yml deleted file mode 100644 index cbd7344aa7f..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_8.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_8.RULE index 618370c79c3..8f9b0d394be 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_8.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_text: yes +relevance: 100 +--- + LICENSE TERMS The free distribution and use of this software in both source and diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_8.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_8.yml deleted file mode 100644 index cbd7344aa7f..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_9.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_9.RULE index 1a5761687c6..2b91ff03a1e 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_9.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause +is_license_text: yes +relevance: 100 +--- + The free distribution and use of this software in both source and binary form is allowed (with or without changes) provided that: diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_9.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_9.yml deleted file mode 100644 index cbd7344aa7f..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_1.RULE index 06b1e8a7499..d519c7ecbda 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: brian-gladman-3-clause OR gpl-1.0-plus +is_license_notice: yes +--- + LICENSE TERMS The free distribution and use of this software in both source and binary @@ -23,4 +28,4 @@ This software is provided 'as is' with no explicit or implied warranties in respect of its properties including, but not limited to, correctness - and fitness for purpose. + and fitness for purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 78de76917f8..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: brian-gladman-3-clause OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_2.RULE index 9ddcefc2b00..1467b146ccd 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: brian-gladman-3-clause OR gpl-1.0-plus +is_license_notice: yes +--- + LICENSE TERMS The free distribution and use of this software in both source and binary diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 78de76917f8..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: brian-gladman-3-clause OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_3.RULE index 40c238f74aa..683d2f6986e 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: brian-gladman-3-clause OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + LICENSE TERMS The free distribution and use of this software in both source and binary diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_3.yml deleted file mode 100644 index 677f8a41e20..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: brian-gladman-3-clause OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_1.RULE index b8aafce1ab9..7cdbc118c0a 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: brian-gladman-3-clause OR gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php +--- + * Based on Dr Brian Gladman's (GPL'd) work published at * http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php * See the original copyright notice below. @@ -34,4 +41,4 @@ DISCLAIMER This software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness -and/or fitness for purpose. +and/or fitness for purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 74a55c3ccbe..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: brian-gladman-3-clause OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_2.RULE index be9ecae3c85..d3ffdddd272 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: brian-gladman-3-clause OR gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://fp.gladman.plus.com/cryptography_technology/index.htm +--- + * Based on Dr Brian Gladman's (GPL'd) work published at * http://fp.gladman.plus.com/cryptography_technology/index.htm * See the original copyright notice below. @@ -33,4 +40,4 @@ This software is provided 'as is' with no explicit or implied warranties in respect of its properties, including, but not limited to, correctness - and/or fitness for purpose. + and/or fitness for purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_2.yml deleted file mode 100644 index b18f4e80064..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: brian-gladman-3-clause OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://fp.gladman.plus.com/cryptography_technology/index.htm diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_3.RULE index 7e82c5b9d5c..c7e7e1d2820 100644 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: brian-gladman-3-clause OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php +--- + Based on Dr Brian Gladman's (GPL'd) work published at http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php See the original copyright notice below. @@ -5,4 +13,4 @@ See the original copyright notice below. 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. +any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_3.yml deleted file mode 100644 index b728a01e773..00000000000 --- a/src/licensedcode/data/rules/brian-gladman-3-clause_or_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: brian-gladman-3-clause OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gladman.plushost.co.uk/oldsite/cryptography_technology/index.php diff --git a/src/licensedcode/data/rules/brian-gladman.RULE b/src/licensedcode/data/rules/brian-gladman.RULE index 85240045136..58fe8cade59 100644 --- a/src/licensedcode/data/rules/brian-gladman.RULE +++ b/src/licensedcode/data/rules/brian-gladman.RULE @@ -1 +1,9 @@ +--- +license_expression: brian-gladman +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gladman.me.uk/AES +--- + http://www.gladman.me.uk/AES \ No newline at end of file diff --git a/src/licensedcode/data/rules/brian-gladman.yml b/src/licensedcode/data/rules/brian-gladman.yml deleted file mode 100644 index abcaead0e93..00000000000 --- a/src/licensedcode/data/rules/brian-gladman.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: brian-gladman -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gladman.me.uk/AES diff --git a/src/licensedcode/data/rules/brian-gladman_1.RULE b/src/licensedcode/data/rules/brian-gladman_1.RULE index 78578c67d17..7526f854e47 100644 --- a/src/licensedcode/data/rules/brian-gladman_1.RULE +++ b/src/licensedcode/data/rules/brian-gladman_1.RULE @@ -1 +1,9 @@ +--- +license_expression: brian-gladman +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gladman.plushost.co.uk/oldsite/AES/aes-src-12-09-11.zip +--- + http://gladman.plushost.co.uk/oldsite/AES/aes-src-12-09-11.zip \ No newline at end of file diff --git a/src/licensedcode/data/rules/brian-gladman_1.yml b/src/licensedcode/data/rules/brian-gladman_1.yml deleted file mode 100644 index 4b781d16a3c..00000000000 --- a/src/licensedcode/data/rules/brian-gladman_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: brian-gladman -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gladman.plushost.co.uk/oldsite/AES/aes-src-12-09-11.zip diff --git a/src/licensedcode/data/rules/broadcom-cfe_1.RULE b/src/licensedcode/data/rules/broadcom-cfe_1.RULE index f9699504650..9c27557f3da 100644 --- a/src/licensedcode/data/rules/broadcom-cfe_1.RULE +++ b/src/licensedcode/data/rules/broadcom-cfe_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: broadcom-cfe +is_license_text: yes +--- + * This software is furnished under license and may be used and * copied only in accordance with the following terms and * conditions. Subject to these conditions, you may download, diff --git a/src/licensedcode/data/rules/broadcom-cfe_1.yml b/src/licensedcode/data/rules/broadcom-cfe_1.yml deleted file mode 100644 index 490195ccdd6..00000000000 --- a/src/licensedcode/data/rules/broadcom-cfe_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: broadcom-cfe -is_license_text: yes diff --git a/src/licensedcode/data/rules/broadcom-confidential_1.RULE b/src/licensedcode/data/rules/broadcom-confidential_1.RULE index e6ba2558b09..c4eb5955079 100644 --- a/src/licensedcode/data/rules/broadcom-confidential_1.RULE +++ b/src/licensedcode/data/rules/broadcom-confidential_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: broadcom-confidential +is_license_text: yes +--- + No portions of this material may be reproduced in any form without the written permission of: Broadcom Corporation 16215 Alton Parkway diff --git a/src/licensedcode/data/rules/broadcom-confidential_1.yml b/src/licensedcode/data/rules/broadcom-confidential_1.yml deleted file mode 100644 index 4304f5db478..00000000000 --- a/src/licensedcode/data/rules/broadcom-confidential_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: broadcom-confidential -is_license_text: yes diff --git a/src/licensedcode/data/rules/broadcom-confidential_2.RULE b/src/licensedcode/data/rules/broadcom-confidential_2.RULE index 7255e24c473..a4bbe7f8662 100644 --- a/src/licensedcode/data/rules/broadcom-confidential_2.RULE +++ b/src/licensedcode/data/rules/broadcom-confidential_2.RULE @@ -1,7 +1,12 @@ +--- +license_expression: broadcom-confidential +is_license_text: yes +--- + No portions of this material may be reproduced in any form without the written permission of: Broadcom Corporation 5300 California Avenue, Irvine, California 92618 All information contained in this document is Broadcom Corporation -company private, proprietary, and trade secret. +company private, proprietary, and trade secret. \ No newline at end of file diff --git a/src/licensedcode/data/rules/broadcom-confidential_2.yml b/src/licensedcode/data/rules/broadcom-confidential_2.yml deleted file mode 100644 index 4304f5db478..00000000000 --- a/src/licensedcode/data/rules/broadcom-confidential_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: broadcom-confidential -is_license_text: yes diff --git a/src/licensedcode/data/rules/broadcom-proprietary.RULE b/src/licensedcode/data/rules/broadcom-proprietary.RULE index 58fdb18cb1c..893b967af19 100644 --- a/src/licensedcode/data/rules/broadcom-proprietary.RULE +++ b/src/licensedcode/data/rules/broadcom-proprietary.RULE @@ -1,3 +1,21 @@ +--- +license_expression: broadcom-proprietary +is_license_text: yes +notes: https://launchpad.net/ubuntu/precise/+source/broadcom-sta/+copyright +ignorable_copyrights: + - (c) 2009 Daniel Baumann + - Copyright (c) 2009 Cyril Lacoux + - Copyright (c) Broadcom Corporation +ignorable_holders: + - Broadcom Corporation + - Cyril Lacoux + - Daniel Baumann +ignorable_authors: + - Broadcom Corporation +ignorable_urls: + - http://www.broadcom.com/support/802.11/linux_sta.php +--- + Author: Broadcom Corporation Download: http://www.broadcom.com/support/802.11/linux_sta.php diff --git a/src/licensedcode/data/rules/broadcom-proprietary.yml b/src/licensedcode/data/rules/broadcom-proprietary.yml deleted file mode 100644 index 4b98078febc..00000000000 --- a/src/licensedcode/data/rules/broadcom-proprietary.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: broadcom-proprietary -is_license_text: yes -notes: https://launchpad.net/ubuntu/precise/+source/broadcom-sta/+copyright -ignorable_copyrights: - - (c) 2009 Daniel Baumann - - Copyright (c) 2009 Cyril Lacoux - - Copyright (c) Broadcom Corporation -ignorable_holders: - - Broadcom Corporation - - Cyril Lacoux - - Daniel Baumann -ignorable_authors: - - Broadcom Corporation -ignorable_urls: - - http://www.broadcom.com/support/802.11/linux_sta.php diff --git a/src/licensedcode/data/rules/broadcom-proprietary_1.RULE b/src/licensedcode/data/rules/broadcom-proprietary_1.RULE index e2cf868f3ec..98f851ca845 100644 --- a/src/licensedcode/data/rules/broadcom-proprietary_1.RULE +++ b/src/licensedcode/data/rules/broadcom-proprietary_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: broadcom-proprietary +is_license_text: yes +--- + SOFTWARE LICENSE AGREEMENT Unless you and Broadcom Corporation (“Broadcom”) execute a separate written @@ -201,5 +206,4 @@ default. between the parties and supersedes any and all prior proposals, agreements and representations between them, whether written or oral concerning the Software. This Agreement may be changed only by mutual agreement of the parties in -writing. - +writing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/broadcom-proprietary_1.yml b/src/licensedcode/data/rules/broadcom-proprietary_1.yml deleted file mode 100644 index 4bb50d376fe..00000000000 --- a/src/licensedcode/data/rules/broadcom-proprietary_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: broadcom-proprietary -is_license_text: yes diff --git a/src/licensedcode/data/rules/broadcom-standard-terms_1.RULE b/src/licensedcode/data/rules/broadcom-standard-terms_1.RULE index e4494332b10..89b2821e59e 100644 --- a/src/licensedcode/data/rules/broadcom-standard-terms_1.RULE +++ b/src/licensedcode/data/rules/broadcom-standard-terms_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: broadcom-standard-terms +is_license_text: yes +--- + * <:copyright-BRCM:2005:proprietary:standard @@ -39,4 +44,4 @@ * SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE LIMITATIONS * SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY * LIMITED REMEDY. -* :> +* :> \ No newline at end of file diff --git a/src/licensedcode/data/rules/broadcom-standard-terms_1.yml b/src/licensedcode/data/rules/broadcom-standard-terms_1.yml deleted file mode 100644 index 8faa297f2c9..00000000000 --- a/src/licensedcode/data/rules/broadcom-standard-terms_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: broadcom-standard-terms -is_license_text: yes diff --git a/src/licensedcode/data/rules/broadcom-standard-terms_2.RULE b/src/licensedcode/data/rules/broadcom-standard-terms_2.RULE index d47fb147686..a0f8f7b47bc 100644 --- a/src/licensedcode/data/rules/broadcom-standard-terms_2.RULE +++ b/src/licensedcode/data/rules/broadcom-standard-terms_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: broadcom-standard-terms +is_license_text: yes +--- + The term "Broadcom" refers to Broadcom Limited and/or its subsidiaries. # # This program is the proprietary software of Broadcom and/or its licensors, @@ -32,4 +37,4 @@ The term "Broadcom" refers to Broadcom Limited and/or its subsidiaries. # THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF THE AMOUNT # ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE # LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF -# ANY LIMITED REMEDY. +# ANY LIMITED REMEDY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/broadcom-standard-terms_2.yml b/src/licensedcode/data/rules/broadcom-standard-terms_2.yml deleted file mode 100644 index 8faa297f2c9..00000000000 --- a/src/licensedcode/data/rules/broadcom-standard-terms_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: broadcom-standard-terms -is_license_text: yes diff --git a/src/licensedcode/data/rules/broadcom-standard-terms_3.RULE b/src/licensedcode/data/rules/broadcom-standard-terms_3.RULE index 005568afa99..ddb93cf3b37 100644 --- a/src/licensedcode/data/rules/broadcom-standard-terms_3.RULE +++ b/src/licensedcode/data/rules/broadcom-standard-terms_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: broadcom-standard-terms +is_license_text: yes +--- + Broadcom Proprietary and Confidential. This program is the proprietary software of Broadcom and/or its licensors, @@ -32,4 +37,4 @@ USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF BROADCOM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF THE AMOUNT ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF -ANY LIMITED REMEDY. +ANY LIMITED REMEDY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/broadcom-standard-terms_3.yml b/src/licensedcode/data/rules/broadcom-standard-terms_3.yml deleted file mode 100644 index 8faa297f2c9..00000000000 --- a/src/licensedcode/data/rules/broadcom-standard-terms_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: broadcom-standard-terms -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-1-clause.RULE b/src/licensedcode/data/rules/bsd-1-clause.RULE index a6e03980575..73f6cf2bf97 100644 --- a/src/licensedcode/data/rules/bsd-1-clause.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_text: yes +minimum_coverage: 85 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -14,4 +20,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause.yml b/src/licensedcode/data/rules/bsd-1-clause.yml deleted file mode 100644 index 1a15222997e..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-1-clause2.RULE b/src/licensedcode/data/rules/bsd-1-clause2.RULE index 120c125f945..bf70d086dd8 100644 --- a/src/licensedcode/data/rules/bsd-1-clause2.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_text: yes +minimum_coverage: 85 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -14,4 +20,4 @@ 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. + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause2.yml b/src/licensedcode/data/rules/bsd-1-clause2.yml deleted file mode 100644 index 1a15222997e..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-1-clause3.RULE b/src/licensedcode/data/rules/bsd-1-clause3.RULE index e58de3826bd..1d0198c8eca 100644 --- a/src/licensedcode/data/rules/bsd-1-clause3.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_text: yes +minimum_coverage: 85 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -14,4 +20,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause3.yml b/src/licensedcode/data/rules/bsd-1-clause3.yml deleted file mode 100644 index 1a15222997e..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-1-clause4.RULE b/src/licensedcode/data/rules/bsd-1-clause4.RULE index 2cb09b0e7c4..905df8f1d0b 100644 --- a/src/licensedcode/data/rules/bsd-1-clause4.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_text: yes +minimum_coverage: 85 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-1-clause4.yml b/src/licensedcode/data/rules/bsd-1-clause4.yml deleted file mode 100644 index 1a15222997e..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-1-clause_1.RULE b/src/licensedcode/data/rules/bsd-1-clause_1.RULE index 7f54b3f552f..dd1b10c92dc 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_1.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or * * without modification, are permitted provided that the following * * condition is met: * diff --git a/src/licensedcode/data/rules/bsd-1-clause_1.yml b/src/licensedcode/data/rules/bsd-1-clause_1.yml deleted file mode 100644 index 16b3042569a..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-1-clause_10.RULE b/src/licensedcode/data/rules/bsd-1-clause_10.RULE index 96e345678f1..ac382f3203a 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_10.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_10.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-1-clause +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD 1-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_10.yml b/src/licensedcode/data/rules/bsd-1-clause_10.yml deleted file mode 100644 index ebc17f35a92..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-1-clause -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-1-clause_11.RULE b/src/licensedcode/data/rules/bsd-1-clause_11.RULE index 42ff5358216..c15ee4d7cb9 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_11.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_11.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-1-clause +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-1-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_11.yml b/src/licensedcode/data/rules/bsd-1-clause_11.yml deleted file mode 100644 index ebc17f35a92..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-1-clause -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-1-clause_12.RULE b/src/licensedcode/data/rules/bsd-1-clause_12.RULE index aa47baf5318..7b71c135213 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_12.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_12.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-1-Clause +--- + https://licenses.nuget.org/BSD-1-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_12.yml b/src/licensedcode/data/rules/bsd-1-clause_12.yml deleted file mode 100644 index 724c67d9184..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-1-Clause diff --git a/src/licensedcode/data/rules/bsd-1-clause_13.RULE b/src/licensedcode/data/rules/bsd-1-clause_13.RULE index 1be8dc62396..390dec7a2ef 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_13.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_13.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-1-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_13.yml b/src/licensedcode/data/rules/bsd-1-clause_13.yml deleted file mode 100644 index caf9f6fbdfc..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-1-clause_14.RULE b/src/licensedcode/data/rules/bsd-1-clause_14.RULE index 745cba91d15..89b7e17cd1d 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_14.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_14.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-1-Clause +--- + LICENSE {{BSD-1-Clause}} https://spdx.org/licenses/BSD-1-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_14.yml b/src/licensedcode/data/rules/bsd-1-clause_14.yml deleted file mode 100644 index 707aac1fab0..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-1-Clause diff --git a/src/licensedcode/data/rules/bsd-1-clause_15.RULE b/src/licensedcode/data/rules/bsd-1-clause_15.RULE index 6f0c9abd867..81640cf5738 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_15.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_15.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-1-Clause +--- + {{BSD-1-Clause}} https://spdx.org/licenses/BSD-1-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_15.yml b/src/licensedcode/data/rules/bsd-1-clause_15.yml deleted file mode 100644 index 707aac1fab0..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-1-Clause diff --git a/src/licensedcode/data/rules/bsd-1-clause_2.RULE b/src/licensedcode/data/rules/bsd-1-clause_2.RULE index 90961187784..63fa6e91b52 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_2.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or * * without modification, are permitted provided that the following * * condition is met: * diff --git a/src/licensedcode/data/rules/bsd-1-clause_2.yml b/src/licensedcode/data/rules/bsd-1-clause_2.yml deleted file mode 100644 index 16b3042569a..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-1-clause_3.RULE b/src/licensedcode/data/rules/bsd-1-clause_3.RULE index 99aeb9ffc6b..bc40be257f9 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_3.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-1-clause_3.yml b/src/licensedcode/data/rules/bsd-1-clause_3.yml deleted file mode 100644 index 16b3042569a..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-1-clause_4.RULE b/src/licensedcode/data/rules/bsd-1-clause_4.RULE index 9db5a286ce8..fc204148a2f 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_4.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-1-clause +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: diff --git a/src/licensedcode/data/rules/bsd-1-clause_4.yml b/src/licensedcode/data/rules/bsd-1-clause_4.yml deleted file mode 100644 index ddf6b5b24a0..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-1-clause_5.RULE b/src/licensedcode/data/rules/bsd-1-clause_5.RULE index 84ad6f4e302..d6896f6efae 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_5.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 1-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_5.yml b/src/licensedcode/data/rules/bsd-1-clause_5.yml deleted file mode 100644 index 506ea2ed86f..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-1-clause_6.RULE b/src/licensedcode/data/rules/bsd-1-clause_6.RULE index 0de57681979..668a17a76ca 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_6.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 1-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_6.yml b/src/licensedcode/data/rules/bsd-1-clause_6.yml deleted file mode 100644 index 506ea2ed86f..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-1-clause_7.RULE b/src/licensedcode/data/rules/bsd-1-clause_7.RULE index 5ae39492f11..dfd7aa4beea 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_7.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-1-Clause BSD 1-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_7.yml b/src/licensedcode/data/rules/bsd-1-clause_7.yml deleted file mode 100644 index 506ea2ed86f..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-1-clause_8.RULE b/src/licensedcode/data/rules/bsd-1-clause_8.RULE index 7142870f49d..5e692ce3152 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_8.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 1-Clause License BSD-1-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_8.yml b/src/licensedcode/data/rules/bsd-1-clause_8.yml deleted file mode 100644 index 506ea2ed86f..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-1-clause_9.RULE b/src/licensedcode/data/rules/bsd-1-clause_9.RULE index cc6e78a9fc7..21b480c6124 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_9.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_9.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-1-clause +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-1-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_9.yml b/src/licensedcode/data/rules/bsd-1-clause_9.yml deleted file mode 100644 index ebc17f35a92..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-1-clause -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-1-clause_url_1.RULE b/src/licensedcode/data/rules/bsd-1-clause_url_1.RULE index 32d68826c4e..5cb9beac35c 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-1-clause +--- + https://spdx.org/licenses/bsd-1-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_url_1.yml b/src/licensedcode/data/rules/bsd-1-clause_url_1.yml deleted file mode 100644 index e7e43fffe89..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-1-clause diff --git a/src/licensedcode/data/rules/bsd-1-clause_url_2.RULE b/src/licensedcode/data/rules/bsd-1-clause_url_2.RULE index 0d7b3274aac..047a809885c 100644 --- a/src/licensedcode/data/rules/bsd-1-clause_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-1-clause_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-1-clause.html +--- + https://spdx.org/licenses/bsd-1-clause.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-1-clause_url_2.yml b/src/licensedcode/data/rules/bsd-1-clause_url_2.yml deleted file mode 100644 index a5b8c8619f5..00000000000 --- a/src/licensedcode/data/rules/bsd-1-clause_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-1-clause.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd.RULE index 836499e1b56..f55881b3617 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + http://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd.SPDX.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd.SPDX.RULE index ecce36d7f52..068f83bac17 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd.SPDX.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + The FreeBSD Copyright diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd.SPDX.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd.SPDX.yml deleted file mode 100644 index b5f1c56bba6..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd.yml deleted file mode 100644 index 8174c92c025..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.RULE index 2eb35244062..d140afc8958 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +--- + BSD-2-Clause-FreeBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.yml deleted file mode 100644 index c5c84593309..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_10.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_10.RULE index 5bfffdd6a90..f6a598dc152 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_10.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_10.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +--- + BSD 2-Clause License (a.k.a Simplified or FreeBSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_10.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_10.yml deleted file mode 100644 index c5c84593309..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_11.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_11.RULE index 507760f6bd1..09f241a607f 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_11.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +minimum_coverage: 95 +--- + BSD 2-Clause License (a.k.a Simplified or FreeBSD License) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_11.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_11.yml deleted file mode 100644 index 393d62daadc..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_12.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_12.RULE index 757b19d7c74..5d478b2daaa 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_12.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_12.RULE @@ -1 +1,9 @@ -https://bitbucket.org/MikeJansen/jirarestclient.net/wiki/License +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://bitbucket.org/MikeJansen/jirarestclient.net/wiki/License +--- + +https://bitbucket.org/MikeJansen/jirarestclient.net/wiki/License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_12.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_12.yml deleted file mode 100644 index ffeff820ba2..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://bitbucket.org/MikeJansen/jirarestclient.net/wiki/License diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_13.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_13.RULE index d6fad2b89c6..94ced5eca68 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_13.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + 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. @@ -6,4 +12,4 @@ Redistributions in binary form must reproduce the above copyright notice, this l THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT 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 FREEBSD PROJECT 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. -The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project or FreeBSD, Inc. +The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project or FreeBSD, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_13.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_13.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_2.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_2.RULE index ab4ec3f20ab..7987c313259 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_2.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-2-clause-views +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. @@ -5,4 +10,4 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT ``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 FREEBSD PROJECT 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. -The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. +The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_2.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_2.yml deleted file mode 100644 index e3bf6fbb0e5..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.RULE index 11a76e7ceaf..bbef8d2e80e 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +--- + BSD 2-clause "FreeBSD" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.yml deleted file mode 100644 index c5c84593309..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_4.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_4.RULE index b3d2ccd277c..da1610d2055 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_4.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/BSD-2-Clause-FreeBSD +--- + http://spdx.org/licenses/BSD-2-Clause-FreeBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_4.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_4.yml deleted file mode 100644 index ef7f22e0014..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/BSD-2-Clause-FreeBSD diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_5.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_5.RULE index c2382628960..c7db39247a5 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_5.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_5.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +--- + The FreeBSD Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_5.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_5.yml deleted file mode 100644 index 9cd3415e69e..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_6.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_6.RULE index e5bf59a768e..af33ce3e38f 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_6.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +notes: FreeBSD, template +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +28,4 @@ POSSIBILITY OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official -policies, either expressed or implied, of the copyright holder. +policies, either expressed or implied, of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_6.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_6.yml deleted file mode 100644 index 2ebcf24d6c9..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -notes: FreeBSD, template diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_7.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_7.RULE index 609fb75df68..e1670bfcc6f 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_7.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +notes: FreeBSD, template +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +28,4 @@ POSSIBILITY OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official -policies, either expressed or implied, of the copyright holder. +policies, either expressed or implied, of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_7.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_7.yml deleted file mode 100644 index 2ebcf24d6c9..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -notes: FreeBSD, template diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_8.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_8.RULE index 6a647293137..5a9e1f0b645 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_8.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +--- + BSD-2 @@ -24,4 +29,4 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, -either expressed or implied, of the FreeBSD Project. +either expressed or implied, of the FreeBSD Project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_8.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_8.yml deleted file mode 100644 index e3bf6fbb0e5..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_9.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_9.RULE index 7c7bb0b55d6..cbc7e863ec6 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_9.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-2-clause-views +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: diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_9.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_9.yml deleted file mode 100644 index e3bf6fbb0e5..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_nuget_url_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_nuget_url_1.RULE index 3c21cdbe5ea..07e71072279 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/mntone/RtmpClient/blob/master/license.md +--- + https://github.com/mntone/RtmpClient/blob/master/license.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_nuget_url_1.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_nuget_url_1.yml deleted file mode 100644 index b50e053a9d2..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/mntone/RtmpClient/blob/master/license.md diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_or_gpl-2.0.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_or_gpl-2.0.RULE index c65e19d8e9e..722ba2b6f99 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_or_gpl-2.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-2-clause-views OR gpl-2.0 +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -28,4 +33,4 @@ SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing -official policies, either expressed or implied, of the COPYRIGHT HOLDER. +official policies, either expressed or implied, of the COPYRIGHT HOLDER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_or_gpl-2.0.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_or_gpl-2.0.yml deleted file mode 100644 index 49622ea2310..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_or_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-2-clause-views OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_1.RULE index efbb48bb757..5e611fc9a94 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-2-clause-freebsd +--- + https://spdx.org/licenses/bsd-2-clause-freebsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_1.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_1.yml deleted file mode 100644 index 72d2e393764..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-2-clause-freebsd diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_2.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_2.RULE index 3db88765403..311a5210312 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-2-clause-freebsd.html +--- + https://spdx.org/licenses/bsd-2-clause-freebsd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_2.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_2.yml deleted file mode 100644 index cc163855152..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-2-clause-freebsd.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_badge.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_badge.RULE index bb661bf0b5f..e9ae9eaac0b 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_badge.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-BSD%202--Clause-orange.svg + - https://opensource.org/licenses/BSD-2-Clause +--- + [![License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)](https://opensource.org/licenses/BSD-2-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_badge.yml b/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_badge.yml deleted file mode 100644 index 854887935ce..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-BSD%202--Clause-orange.svg - - https://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_1.RULE index 5f48a0ffa05..42c524d231d 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-2-clause-netbsd +--- + https://spdx.org/licenses/bsd-2-clause-netbsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_1.yml b/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_1.yml deleted file mode 100644 index a55f3fec087..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-2-clause-netbsd diff --git a/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_2.RULE b/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_2.RULE index 6517f145b1f..008dd25c322 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-2-clause-netbsd.html +--- + https://spdx.org/licenses/bsd-2-clause-netbsd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_2.yml b/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_2.yml deleted file mode 100644 index 585988ab9b6..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-netbsd_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-2-clause-netbsd.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_1.RULE index 33650d0b25e..9447cbc5218 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-2-clause-plus-advertizing +is_license_text: yes +ignorable_authors: + - its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_1.yml b/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_1.yml deleted file mode 100644 index 2aab4a74f83..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-plus-advertizing -is_license_text: yes -ignorable_authors: - - its contributors diff --git a/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_2.RULE b/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_2.RULE index 172a1560df2..33ef1b15cf0 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_2.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-2-clause-plus-advertizing +is_license_text: yes +ignorable_authors: + - the project and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_2.yml b/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_2.yml deleted file mode 100644 index f854ce539cf..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-plus-advertizing_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-plus-advertizing -is_license_text: yes -ignorable_authors: - - the project and its contributors diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_1.RULE index ed5d54c71f1..8e3c53bd041 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_1.yml b/src/licensedcode/data/rules/bsd-2-clause-views_1.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_10.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_10.RULE index 1cbb8a3b418..32b224f7d95 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_10.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_10.yml b/src/licensedcode/data/rules/bsd-2-clause-views_10.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_11.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_11.RULE index 09b06c3562b..39ccd50f235 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_11.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_11.yml b/src/licensedcode/data/rules/bsd-2-clause-views_11.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_12.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_12.RULE index d9dbd403436..3cfdbcb4f9a 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_12.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +--- + All files are licensed under the FreeBSD license, except for third party components, which are subject to their respective licenses as specified in their source files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_12.yml b/src/licensedcode/data/rules/bsd-2-clause-views_12.yml deleted file mode 100644 index d7eea8acfd0..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_13.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_13.RULE index 1fc101c79bd..d9f119190c9 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_13.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_13.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +--- + licensed under the FreeBSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_13.yml b/src/licensedcode/data/rules/bsd-2-clause-views_13.yml deleted file mode 100644 index f9a46533876..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_14.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_14.RULE index 75171656b61..9eefd46f666 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_14.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_14.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +--- + The library is distributed under the FreeBSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_14.yml b/src/licensedcode/data/rules/bsd-2-clause-views_14.yml deleted file mode 100644 index f9a46533876..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_15.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_15.RULE index 0a5e7dd2a93..e07fb9dcbda 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_15.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the the FreeBSD License . You may obtain a copy of the full license at: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_15.yml b/src/licensedcode/data/rules/bsd-2-clause-views_15.yml deleted file mode 100644 index 776902debbc..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_16.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_16.RULE index ce735ffd73a..1cf8a8c4760 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_16.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_16.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + This project may adopt snippets of FreeBSD under the simplified BSD license. (http://www.freebsd.org/copyright/freebsd-license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_16.yml b/src/licensedcode/data/rules/bsd-2-clause-views_16.yml deleted file mode 100644 index 776902debbc..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_164.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_164.RULE index dc521bcec5c..344aab64a4c 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_164.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_164.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_164.yml b/src/licensedcode/data/rules/bsd-2-clause-views_164.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_17.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_17.RULE index 283c97cc562..ad44db71f51 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_17.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_17.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + license https://www.freebsd.org/copyright/freebsd-license.html BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_17.yml b/src/licensedcode/data/rules/bsd-2-clause-views_17.yml deleted file mode 100644 index ee9aac5219b..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_18.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_18.RULE index b4471f498a9..e8e5555e263 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_18.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_18.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + license FreeBSD {@link http://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_18.yml b/src/licensedcode/data/rules/bsd-2-clause-views_18.yml deleted file mode 100644 index fcc9623ed64..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_19.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_19.RULE index cd881721c17..0426ed997a3 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_19.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_19.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + license https://www.freebsd.org/copyright/freebsd-license.html FreeBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_19.yml b/src/licensedcode/data/rules/bsd-2-clause-views_19.yml deleted file mode 100644 index ee9aac5219b..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_2.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_2.RULE index 9284af152c2..cb2b0226d32 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_2.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_2.yml b/src/licensedcode/data/rules/bsd-2-clause-views_2.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_20.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_20.RULE index 23b627602cc..6d1af9fa689 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_20.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_20.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + license http://www.freebsd.org/copyright/freebsd-license.html BSD License (2 Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_20.yml b/src/licensedcode/data/rules/bsd-2-clause-views_20.yml deleted file mode 100644 index fcc9623ed64..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_21.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_21.RULE index 2d4b100368a..0b4170b0225 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_21.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_21.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + license http://www.freebsd.org/copyright/freebsd-license.html BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_21.yml b/src/licensedcode/data/rules/bsd-2-clause-views_21.yml deleted file mode 100644 index fcc9623ed64..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_22.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_22.RULE index 4cacdc28892..3373fb508cb 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_22.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_22.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + License: BSD License URI: https://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_22.yml b/src/licensedcode/data/rules/bsd-2-clause-views_22.yml deleted file mode 100644 index ee9aac5219b..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_23.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_23.RULE index c10428668b3..644cb9d927e 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_23.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_23.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + license https://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_23.yml b/src/licensedcode/data/rules/bsd-2-clause-views_23.yml deleted file mode 100644 index ee9aac5219b..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_24.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_24.RULE index caaf631234c..f8a48386a7a 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_24.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_24.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + License The package is released under the [Simplified BSD License](http://www.freebsd.org/copyright/freebsd-license.html) See file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_24.yml b/src/licensedcode/data/rules/bsd-2-clause-views_24.yml deleted file mode 100644 index 1371f7aad62..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_25.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_25.RULE index f120680947d..1d749d19be2 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_25.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_25.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +referenced_filenames: + - license.txt +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + has a reduced [BSD](https://www.freebsd.org/copyright/freebsd-license.html) license. Which regulates the use of the binary code. See [license.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_25.yml b/src/licensedcode/data/rules/bsd-2-clause-views_25.yml deleted file mode 100644 index da5e746dec0..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -referenced_filenames: - - license.txt -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_26.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_26.RULE index e9b7223d62d..ad12146e889 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_26.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_26.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + Distributed under the FreeBSD license, see the accompanying file LICENSE or copy at http://www.freebsd.org/copyright/freebsd-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_26.yml b/src/licensedcode/data/rules/bsd-2-clause-views_26.yml deleted file mode 100644 index 1371f7aad62..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_27.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_27.RULE index f0df1731057..b387be94246 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_27.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + # This Source Code Form is subject to the terms of the Simplified BSD License. # If a copy of the Simplified BSD License was not distributed alongside this file, you can # obtain one at https://www.freebsd.org/copyright/freebsd-license.html . This software diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_27.yml b/src/licensedcode/data/rules/bsd-2-clause-views_27.yml deleted file mode 100644 index d2916b3e55c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_28.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_28.RULE index e383c1d1c6f..68156331a29 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_28.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_28.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + _license='License BSD, http://www.freebsd.org/copyright/freebsd-license.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_28.yml b/src/licensedcode/data/rules/bsd-2-clause-views_28.yml deleted file mode 100644 index 21dbd52b1b1..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_29.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_29.RULE index 45b7ee3547b..5c819865bf0 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_29.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_29.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + # THIS SOFTWARE USES FREEBSD LICENSE (ALSO KNOWN AS 2-CLAUSE BSD LICENSE) # https://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_29.yml b/src/licensedcode/data/rules/bsd-2-clause-views_29.yml deleted file mode 100644 index d2916b3e55c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_3.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_3.RULE index 6adaabbf729..01f24330cfd 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_3.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_3.yml b/src/licensedcode/data/rules/bsd-2-clause-views_3.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_30.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_30.RULE index 1bc4d57528f..c3a0b874b5e 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_30.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + License Terms: Permission is hereby granted to use this software freely under the terms of the free bsd license: https://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_30.yml b/src/licensedcode/data/rules/bsd-2-clause-views_30.yml deleted file mode 100644 index d2916b3e55c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_31.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_31.RULE index e943573ad76..158bdbc101c 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_31.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_31.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + Licesensed under FreeBSD License. (http://www.freebsd.org/copyright/freebsd-license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_31.yml b/src/licensedcode/data/rules/bsd-2-clause-views_31.yml deleted file mode 100644 index 21dbd52b1b1..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_32.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_32.RULE index 06c57d66554..fb0d2851fee 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_32.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_32.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + BSD 3-Clause License : http://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_32.yml b/src/licensedcode/data/rules/bsd-2-clause-views_32.yml deleted file mode 100644 index 844749c0b9a..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_33.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_33.RULE index 892a5bca410..f6482331184 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_33.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_33.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + This piece of software code is licensed under the FreeBSD license.. # # Visit http://www.freebsd.org/copyright/freebsd-license.html for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_33.yml b/src/licensedcode/data/rules/bsd-2-clause-views_33.yml deleted file mode 100644 index 776902debbc..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_33.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_34.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_34.RULE index 5d05ef76702..58e99533865 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_34.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_34.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + icensed under the FreeBSD license. # # http://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_34.yml b/src/licensedcode/data/rules/bsd-2-clause-views_34.yml deleted file mode 100644 index 21dbd52b1b1..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_35.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_35.RULE index b458bd7fd7d..16067529513 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_35.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_35.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + ## License It uses a [FreeBSD License](http://www.freebsd.org/copyright/freebsd-license.html). diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_35.yml b/src/licensedcode/data/rules/bsd-2-clause-views_35.yml deleted file mode 100644 index 1371f7aad62..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_36.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_36.RULE index 6f58826e3d6..4bc1e3871a5 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_36.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_36.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + the overarching FreeBSD license is assumed, which is available at: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_36.yml b/src/licensedcode/data/rules/bsd-2-clause-views_36.yml deleted file mode 100644 index d3a726e8ace..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_37.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_37.RULE index 2760a49eb99..34078f891aa 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_37.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_37.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license.html +--- + License Under the FreeBSD License, which allows maximum reuse, contribution and the freedom of commercialization for 3rd parties. Please check the specific terms and conditions linked to this open source license at https://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_37.yml b/src/licensedcode/data/rules/bsd-2-clause-views_37.yml deleted file mode 100644 index d2916b3e55c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_38.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_38.RULE index e421a06be31..2c3d68a8922 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_38.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_38.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + License](http://www.freebsd.org/copyright/freebsd-license.html) See file "LICENSE" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_38.yml b/src/licensedcode/data/rules/bsd-2-clause-views_38.yml deleted file mode 100644 index 4977eef242b..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_38.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_39.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_39.RULE index ff5d8a19c54..6a1f1588ebb 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_39.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_39.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + License [FreeBSD License](http://www.freebsd.org/copyright/freebsd-license.html). diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_39.yml b/src/licensedcode/data/rules/bsd-2-clause-views_39.yml deleted file mode 100644 index 1371f7aad62..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_39.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_4.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_4.RULE index 07e04a96bb4..2fb838cfbf0 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_4.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_4.yml b/src/licensedcode/data/rules/bsd-2-clause-views_4.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_40.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_40.RULE index 65296239d23..b47a05e586b 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_40.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_40.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +referenced_filenames: + - License.txt +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + it is licensed under [The BSD License](http://www.freebsd.org/copyright/freebsd-license.html). Check License.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_40.yml b/src/licensedcode/data/rules/bsd-2-clause-views_40.yml deleted file mode 100644 index a27dc5f0606..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_40.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -referenced_filenames: - - License.txt -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_41.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_41.RULE index 1fd1f7078b0..d9ec4c31af6 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_41.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_41.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + The package is released under the [Simplified BSD License](http://www.freebsd.org/copyright/freebsd-license.html) See file "LICENSE" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_41.yml b/src/licensedcode/data/rules/bsd-2-clause-views_41.yml deleted file mode 100644 index 1371f7aad62..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_42.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_42.RULE index d2c80a298a7..2d171c8a683 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_42.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_42.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + License BSD, http://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_42.yml b/src/licensedcode/data/rules/bsd-2-clause-views_42.yml deleted file mode 100644 index 21dbd52b1b1..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_43.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_43.RULE index a464becea8d..ccc8e24ba58 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_43.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_43.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + It is licensed under [The BSD License](http://www.freebsd.org/copyright/freebsd-license.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_43.yml b/src/licensedcode/data/rules/bsd-2-clause-views_43.yml deleted file mode 100644 index 21dbd52b1b1..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_44.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_44.RULE index 98e59bf9ef4..561ddfb76f0 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_44.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_44.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + Available as a 2 clause [BSD license](http://www.freebsd.org/copyright/freebsd-license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_44.yml b/src/licensedcode/data/rules/bsd-2-clause-views_44.yml deleted file mode 100644 index 21dbd52b1b1..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_45.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_45.RULE index 535e5f80e6e..e25b886ce10 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_45.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_45.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + released under the http://www.freebsd.org/copyright/freebsd-license.html FreeBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_45.yml b/src/licensedcode/data/rules/bsd-2-clause-views_45.yml deleted file mode 100644 index 21dbd52b1b1..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_46.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_46.RULE index 011a2ea3584..9f877074bdc 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_46.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_46.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + [FreeBSD license](http://www.freebsd.org/copyright/freebsd-license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_46.yml b/src/licensedcode/data/rules/bsd-2-clause-views_46.yml deleted file mode 100644 index 8174c92c025..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_47.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_47.RULE index 38cb2ee631d..7b269f586fc 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_47.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_47.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + BSD License](http://www.freebsd.org/copyright/freebsd-license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_47.yml b/src/licensedcode/data/rules/bsd-2-clause-views_47.yml deleted file mode 100644 index 8174c92c025..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_48.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_48.RULE index df6c68e1fa1..14eeb33da02 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_48.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_48.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + [Simplified BSD License]: http://www.freebsd.org/copyright/freebsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_48.yml b/src/licensedcode/data/rules/bsd-2-clause-views_48.yml deleted file mode 100644 index 8174c92c025..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_49.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_49.RULE index 5a671b9f074..afd555c4415 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_49.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_49.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +--- + This work is licensed under FREEBSD license. (2 Clause BSD license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_49.yml b/src/licensedcode/data/rules/bsd-2-clause-views_49.yml deleted file mode 100644 index f9a46533876..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_5.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_5.RULE index 72d92dd5266..1ae20827668 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_5.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_5.yml b/src/licensedcode/data/rules/bsd-2-clause-views_5.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_50.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_50.RULE index 0ebac36997c..925ffa81c34 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_50.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_50.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +--- + ## License This work is licensed under FREEBSD license. (2 Clause BSD license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_50.yml b/src/licensedcode/data/rules/bsd-2-clause-views_50.yml deleted file mode 100644 index f9a46533876..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_51.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_51.RULE index 72b5f679262..1984f92eaa3 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_51.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_51.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + http://www.freebsd.org/copyright/freebsd-license.html BSD License (2 Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_51.yml b/src/licensedcode/data/rules/bsd-2-clause-views_51.yml deleted file mode 100644 index 8174c92c025..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_52.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_52.RULE index 8820a418588..e28383009cc 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_52.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_52.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + this version is released and distributed under the [FreeBSD License](http://www.freebsd.org/copyright/freebsd-license.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_52.yml b/src/licensedcode/data/rules/bsd-2-clause-views_52.yml deleted file mode 100644 index 776902debbc..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_52.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_53.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_53.RULE index ee3030e03c9..0707e540df5 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_53.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_53.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license.html +--- + released under the [2 clause BSD license](http://www.freebsd.org/copyright/freebsd-license.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_53.yml b/src/licensedcode/data/rules/bsd-2-clause-views_53.yml deleted file mode 100644 index 21dbd52b1b1..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license.html diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_54.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_54.RULE index 6906f0f6fcd..247124d2939 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_54.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_54.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +--- + licensed under FreeBSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_54.yml b/src/licensedcode/data/rules/bsd-2-clause-views_54.yml deleted file mode 100644 index f9a46533876..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_55.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_55.RULE index e81c69639fd..1a8dac439a6 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_55.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_55.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +--- + FreeBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_55.yml b/src/licensedcode/data/rules/bsd-2-clause-views_55.yml deleted file mode 100644 index c5c84593309..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_56.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_56.RULE index 5fb5297c42f..f37cb3e3894 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_56.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_56.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.freebsd.org/copyright/freebsd-license/ +--- + https://www.freebsd.org/copyright/freebsd-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_56.yml b/src/licensedcode/data/rules/bsd-2-clause-views_56.yml deleted file mode 100644 index 81661359eb6..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.freebsd.org/copyright/freebsd-license/ diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_57.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_57.RULE index e8a3317998c..30f30b7414e 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_57.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_57.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/freebsd-license/ +--- + http://www.freebsd.org/copyright/freebsd-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_57.yml b/src/licensedcode/data/rules/bsd-2-clause-views_57.yml deleted file mode 100644 index 0b8ea1c662c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/freebsd-license/ diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_58.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_58.RULE index 28b7fc40b49..5475952390d 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_58.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_58.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-2-clause-views +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: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_58.yml b/src/licensedcode/data/rules/bsd-2-clause-views_58.yml deleted file mode 100644 index e3bf6fbb0e5..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_58.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_59.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_59.RULE index 65b3fdc2b95..9903f37517c 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_59.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_59.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +notes: SPDX id +--- + BSD-2-Clause-Views \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_59.yml b/src/licensedcode/data/rules/bsd-2-clause-views_59.yml deleted file mode 100644 index cda5e4fb25b..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_59.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -notes: SPDX id diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_6.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_6.RULE index 3f15ddc35bc..e7c8a170d98 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_6.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_6.yml b/src/licensedcode/data/rules/bsd-2-clause-views_6.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_60.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_60.RULE index 489f86dfcc4..9e980a2c3bd 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_60.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_60.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + BSD-2-Clause-FreeBSD BSD 2-Clause FreeBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_60.yml b/src/licensedcode/data/rules/bsd-2-clause-views_60.yml deleted file mode 100644 index 76d5ed95d26..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_60.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_61.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_61.RULE index 429b6dcbe3d..48afc03fa22 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_61.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_61.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + BSD 2-Clause FreeBSD License BSD-2-Clause-FreeBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_61.yml b/src/licensedcode/data/rules/bsd-2-clause-views_61.yml deleted file mode 100644 index 76d5ed95d26..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_61.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_62.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_62.RULE index af67437e559..ef686a5a0e2 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_62.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_62.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : BSD-2-Clause-FreeBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_62.yml b/src/licensedcode/data/rules/bsd-2-clause-views_62.yml deleted file mode 100644 index 9ca0154e514..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_62.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_63.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_63.RULE index 1339e956fc1..833aa648b33 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_63.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_63.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : BSD-2-Clause-FreeBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_63.yml b/src/licensedcode/data/rules/bsd-2-clause-views_63.yml deleted file mode 100644 index 76d5ed95d26..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_63.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_64.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_64.RULE index 35678d11f8a..095c8c066fe 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_64.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_64.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : BSD 2-Clause FreeBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_64.yml b/src/licensedcode/data/rules/bsd-2-clause-views_64.yml deleted file mode 100644 index 76d5ed95d26..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_64.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_65.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_65.RULE index 59675886028..2d25139ba9a 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_65.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_65.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD 2-Clause FreeBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_65.yml b/src/licensedcode/data/rules/bsd-2-clause-views_65.yml deleted file mode 100644 index f042b70492c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_65.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_66.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_66.RULE index 19bbf986057..4841dbd403a 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_66.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_66.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 2-Clause with views sentence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_66.yml b/src/licensedcode/data/rules/bsd-2-clause-views_66.yml deleted file mode 100644 index 111289f8045..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_66.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_67.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_67.RULE index d30a9fc496c..949a7f0e702 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_67.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_67.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 2-Clause with views sentence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_67.yml b/src/licensedcode/data/rules/bsd-2-clause-views_67.yml deleted file mode 100644 index 111289f8045..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_67.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_68.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_68.RULE index 7bc4e6976ff..8efe2cf913e 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_68.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_68.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-2-Clause-Views BSD 2-Clause with views sentence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_68.yml b/src/licensedcode/data/rules/bsd-2-clause-views_68.yml deleted file mode 100644 index 111289f8045..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_68.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_69.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_69.RULE index 28932b9f72c..cf6ec1c9853 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_69.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_69.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 2-Clause with views sentence BSD-2-Clause-Views \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_69.yml b/src/licensedcode/data/rules/bsd-2-clause-views_69.yml deleted file mode 100644 index 111289f8045..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_69.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_7.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_7.RULE index d30f630eb05..0d33115d2cb 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_7.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_7.yml b/src/licensedcode/data/rules/bsd-2-clause-views_7.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_70.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_70.RULE index 5d91c346d46..a39364cee6d 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_70.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_70.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-2-Clause-Views \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_70.yml b/src/licensedcode/data/rules/bsd-2-clause-views_70.yml deleted file mode 100644 index f042b70492c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_70.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_71.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_71.RULE index 0c2cc202133..1319f475369 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_71.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_71.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD 2-Clause with views sentence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_71.yml b/src/licensedcode/data/rules/bsd-2-clause-views_71.yml deleted file mode 100644 index f042b70492c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_71.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_72.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_72.RULE index 8e1556fe224..066bed786df 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_72.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_72.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-2-clause-views +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-2-Clause-Views \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_72.yml b/src/licensedcode/data/rules/bsd-2-clause-views_72.yml deleted file mode 100644 index f042b70492c..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_72.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name 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 198ebb74c93..51739e2acca 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_73.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_73.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-2-Clause-Views +--- + https://licenses.nuget.org/BSD-2-Clause-Views \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_73.yml b/src/licensedcode/data/rules/bsd-2-clause-views_73.yml deleted file mode 100644 index 5d90543f0a0..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-2-Clause-Views diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_74.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_74.RULE index 63ca406414a..a11abe25b8c 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_74.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_74.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-2-Clause-Views \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_74.yml b/src/licensedcode/data/rules/bsd-2-clause-views_74.yml deleted file mode 100644 index c5c84593309..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_75.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_75.RULE index f1fdf512065..1d3214ec453 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_75.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_75.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-FreeBSD +--- + LICENSE {{BSD-2-Clause-FreeBSD}} https://spdx.org/licenses/BSD-2-Clause-FreeBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_75.yml b/src/licensedcode/data/rules/bsd-2-clause-views_75.yml deleted file mode 100644 index 5d48f858e50..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-FreeBSD diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_76.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_76.RULE index b72f4fca232..33ffd9d8ea0 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_76.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_76.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-Views +--- + {{BSD-2-Clause-Views}} https://spdx.org/licenses/BSD-2-Clause-Views \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_76.yml b/src/licensedcode/data/rules/bsd-2-clause-views_76.yml deleted file mode 100644 index b772382972b..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_76.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-Views diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_77.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_77.RULE index ae4a5b7176a..4b903c4120f 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_77.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_77.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-Views +--- + LICENSE {{BSD-2-Clause-Views}} https://spdx.org/licenses/BSD-2-Clause-Views \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_77.yml b/src/licensedcode/data/rules/bsd-2-clause-views_77.yml deleted file mode 100644 index b772382972b..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-Views diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_78.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_78.RULE index 0d4e22dd67b..ab9f87dd97e 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_78.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_78.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-FreeBSD +--- + {{BSD-2-Clause-FreeBSD}} https://spdx.org/licenses/BSD-2-Clause-FreeBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_78.yml b/src/licensedcode/data/rules/bsd-2-clause-views_78.yml deleted file mode 100644 index 5d48f858e50..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-FreeBSD diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_8.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_8.RULE index 68481bee628..def259162c4 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_8.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_8.yml b/src/licensedcode/data/rules/bsd-2-clause-views_8.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_9.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_9.RULE index 4bab670057f..0fc88de194d 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_9.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_9.yml b/src/licensedcode/data/rules/bsd-2-clause-views_9.yml deleted file mode 100644 index f24c7f45b51..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_alac_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_alac_1.RULE index e79fba7a008..3c3acc9739b 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_alac_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_alac_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-2-clause-views +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +30,4 @@ SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing -official policies, either expressed or implied, of , Inc. +official policies, either expressed or implied, of , Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_alac_1.yml b/src/licensedcode/data/rules/bsd-2-clause-views_alac_1.yml deleted file mode 100644 index f9a46533876..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_alac_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-2-clause-views -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_and_bsd-simplified_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_and_bsd-simplified_1.RULE index 32fa46d4938..aa835454455 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_and_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_and_bsd-simplified_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-2-clause-views AND bsd-simplified +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: typo in SPDX license key found in FreeBSD +--- + SPDX-License-Identifier: BSD-2-Clause-FreeBSD AND BSD-2-Clause NetBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_and_bsd-simplified_1.yml b/src/licensedcode/data/rules/bsd-2-clause-views_and_bsd-simplified_1.yml deleted file mode 100644 index 3650aab145f..00000000000 --- a/src/licensedcode/data/rules/bsd-2-clause-views_and_bsd-simplified_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-2-clause-views AND bsd-simplified -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: typo in SPDX license key found in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-3-clause-jtag_1.RULE b/src/licensedcode/data/rules/bsd-3-clause-jtag_1.RULE index b1d15922fb2..088b8f03eae 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-jtag_1.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-jtag_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-3-clause-jtag +is_license_text: yes +relevance: 99 +minimum_coverage: 75 +notes: Minor differences with bsd-3-clause-jtag +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-3-clause-jtag_1.yml b/src/licensedcode/data/rules/bsd-3-clause-jtag_1.yml deleted file mode 100644 index a04ffcb73a7..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-jtag_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-jtag -is_license_text: yes -relevance: 99 -minimum_coverage: 75 -notes: Minor differences with bsd-3-clause-jtag diff --git a/src/licensedcode/data/rules/bsd-3-clause-jtag_2.RULE b/src/licensedcode/data/rules/bsd-3-clause-jtag_2.RULE index 0fdff69c662..fa46c7e5afa 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-jtag_2.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-jtag_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-3-clause-jtag +is_license_text: yes +relevance: 99 +notes: Minor differences with bsd-3-clause-jtag +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-3-clause-jtag_2.yml b/src/licensedcode/data/rules/bsd-3-clause-jtag_2.yml deleted file mode 100644 index a4032091f1b..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-jtag_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-3-clause-jtag -is_license_text: yes -relevance: 99 -notes: Minor differences with bsd-3-clause-jtag diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_1.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_1.RULE index a70ae8a639c..f08da3193a4 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_1.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_1.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 3-Clause No Military License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_1.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_1.yml deleted file mode 100644 index 07b992e0001..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_2.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_2.RULE index 91c8f91b2fc..bbf9b3a47c8 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_2.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_2.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 3-Clause No Military License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_2.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_2.yml deleted file mode 100644 index 07b992e0001..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_3.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_3.RULE index b3529b281e3..843d7eee4ff 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_3.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-3-Clause-No-Military-License BSD 3-Clause No Military License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_3.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_3.yml deleted file mode 100644 index 07b992e0001..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_4.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_4.RULE index b30dc385cae..21f808f8781 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_4.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-No-Military-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_4.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_4.yml deleted file mode 100644 index 483105dfd8f..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_5.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_5.RULE index 2e64069edf4..da35ded7624 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_5.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-No-Military-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_5.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_5.yml deleted file mode 100644 index 483105dfd8f..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_6.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_6.RULE index 32d6510f142..041b5319c97 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_6.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_6.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-No-Military-License +--- + https://licenses.nuget.org/BSD-3-Clause-No-Military-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_6.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_6.yml deleted file mode 100644 index 903e4c885e3..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-No-Military-License diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_7.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_7.RULE index 602e2dcdfd0..88c064412b6 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_7.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_7.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-No-Military-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_7.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_7.yml deleted file mode 100644 index 731b7326c67..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_8.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_8.RULE index d259486c6aa..dc26b72e8f8 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_8.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_8.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-No-Military-License +--- + {{BSD-3-Clause-No-Military-License}} https://spdx.org/licenses/BSD-3-Clause-No-Military-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_8.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_8.yml deleted file mode 100644 index 52103f4d0fb..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-No-Military-License diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_9.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-military_9.RULE index f794c9246b3..d6b75762c4b 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_9.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-military_9.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-no-military +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-No-Military-License +--- + LICENSE {{BSD-3-Clause-No-Military-License}} https://spdx.org/licenses/BSD-3-Clause-No-Military-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-military_9.yml b/src/licensedcode/data/rules/bsd-3-clause-no-military_9.yml deleted file mode 100644 index 52103f4d0fb..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-military_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-no-military -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-No-Military-License diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_1.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_1.RULE index 9ee05b343d9..ab9cca48f92 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_1.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +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: * diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_1.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_1.yml deleted file mode 100644 index 7477a67db9a..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_10.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_10.RULE index 37f69a11086..f3702e31d0d 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_10.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty +--- + LICENSE {{BSD-3-Clause-No-Nuclear-Warranty}} https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_10.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_10.yml deleted file mode 100644 index 2c8e89a5c1f..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_11.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_11.RULE index c31c3e5bcca..af43a21c7ba 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_11.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_11.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty +--- + {{BSD-3-Clause-No-Nuclear-Warranty}} https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_11.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_11.yml deleted file mode 100644 index 2c8e89a5c1f..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_2.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_2.RULE index aaac8d586d8..08d5334a39d 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_2.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_2.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_2.yml deleted file mode 100644 index 877988d7616..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_3.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_3.RULE index 74e22b4b4ba..330fd477be6 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_3.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 3-Clause No Nuclear Warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_3.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_3.yml deleted file mode 100644 index cc3f2f4bda6..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_4.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_4.RULE index 6988015fb20..02be2ea55b1 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_4.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-3-Clause-No-Nuclear-Warranty BSD 3-Clause No Nuclear Warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_4.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_4.yml deleted file mode 100644 index cc3f2f4bda6..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_5.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_5.RULE index 0c4e3e8ed97..8adff4b4967 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_5.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-No-Nuclear-Warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_5.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_5.yml deleted file mode 100644 index df1b7ab0a7a..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_6.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_6.RULE index b634ac21ac6..513ce8fbe79 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_6.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-No-Nuclear-Warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_6.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_6.yml deleted file mode 100644 index df1b7ab0a7a..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_7.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_7.RULE index ce8e729213f..1d5b10db4ca 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_7.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_7.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-Warranty +--- + https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-Warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_7.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_7.yml deleted file mode 100644 index 54a4b20ff14..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-Warranty diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_8.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_8.RULE index 58df362030c..4363f7c5ed1 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_8.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_8.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-No-Nuclear-Warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_8.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_8.yml deleted file mode 100644 index 17eda5f3520..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_9.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_9.RULE index f8043abda70..a48d68747fb 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_9.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_9.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +relevance: 100 +--- + BSD 3-clause License w/nuclear disclaimer" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_9.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_9.yml deleted file mode 100644 index 17eda5f3520..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_1.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_1.RULE index 0cc5c72bf30..84328a34185 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-no-nuclear-warranty +--- + https://spdx.org/licenses/bsd-3-clause-no-nuclear-warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_1.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_1.yml deleted file mode 100644 index 22386506791..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-no-nuclear-warranty diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_2.RULE b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_2.RULE index 83b454bf0ba..8519c4abc3c 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-no-nuclear-warranty.html +--- + https://spdx.org/licenses/bsd-3-clause-no-nuclear-warranty.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_2.yml b/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_2.yml deleted file mode 100644 index ffe7682654f..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-no-nuclear-warranty_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-no-nuclear-warranty.html diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_1.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_1.RULE index 06f411eff77..1f674c5458d 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_1.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_1.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 3-Clause Open MPI variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_1.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_1.yml deleted file mode 100644 index 9f94fdf799c..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_10.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_10.RULE index 4d4edba9065..05c5a1cb425 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_10.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-Open-MPI +--- + LICENSE {{BSD-3-Clause-Open-MPI}} https://spdx.org/licenses/BSD-3-Clause-Open-MPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_10.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_10.yml deleted file mode 100644 index 443f4c349ee..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-Open-MPI diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_11.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_11.RULE index 170be1b7ca8..3a02d88125a 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_11.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_11.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-Open-MPI +--- + {{BSD-3-Clause-Open-MPI}} https://spdx.org/licenses/BSD-3-Clause-Open-MPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_11.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_11.yml deleted file mode 100644 index 443f4c349ee..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-Open-MPI diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_2.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_2.RULE index 666065e635c..d8eac7bd516 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_2.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_2.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 3-Clause Open MPI variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_2.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_2.yml deleted file mode 100644 index 9f94fdf799c..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_3.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_3.RULE index 742bb368382..6798598265f 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_3.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-3-Clause-Open-MPI BSD 3-Clause Open MPI variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_3.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_3.yml deleted file mode 100644 index 9f94fdf799c..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_4.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_4.RULE index 730321b18c0..d73358f1de1 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_4.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 3-Clause Open MPI variant BSD-3-Clause-Open-MPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_4.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_4.yml deleted file mode 100644 index 9f94fdf799c..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_5.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_5.RULE index ebd600390b5..8ca0cd6651a 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_5.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-Open-MPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_5.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_5.yml deleted file mode 100644 index b17cf577867..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_6.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_6.RULE index d61567cb8de..f8953af0243 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_6.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD 3-Clause Open MPI variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_6.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_6.yml deleted file mode 100644 index b17cf577867..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_7.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_7.RULE index 7cbbe71b648..ded61b8c8cd 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_7.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-Open-MPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_7.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_7.yml deleted file mode 100644 index b17cf577867..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_8.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_8.RULE index 5fcdfb50086..8b3893e9deb 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_8.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_8.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-Open-MPI +--- + https://licenses.nuget.org/BSD-3-Clause-Open-MPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_8.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_8.yml deleted file mode 100644 index 9f71e84db3c..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-Open-MPI diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_9.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_9.RULE index afdb90838c1..82f6af1e247 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_9.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_9.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-Open-MPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_9.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_9.yml deleted file mode 100644 index c2515371fba..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_1.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_1.RULE index 7e859a67b05..d3e1a315706 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-open-mpi +--- + https://spdx.org/licenses/bsd-3-clause-open-mpi \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_1.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_1.yml deleted file mode 100644 index e81d9accccf..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-open-mpi diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_2.RULE b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_2.RULE index 22e55ea5f0d..dacf2c7c4c5 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-3-clause-open-mpi +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-open-mpi.html +--- + https://spdx.org/licenses/bsd-3-clause-open-mpi.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_2.yml b/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_2.yml deleted file mode 100644 index 555005c709b..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-open-mpi_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-3-clause-open-mpi -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-open-mpi.html diff --git a/src/licensedcode/data/rules/bsd-3-clause-sun_1.RULE b/src/licensedcode/data/rules/bsd-3-clause-sun_1.RULE index 82e9f939e6a..4753af410a7 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-sun_1.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-sun_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-3-clause-sun +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-3-clause-sun_1.yml b/src/licensedcode/data/rules/bsd-3-clause-sun_1.yml deleted file mode 100644 index 3772c6b8f14..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-sun_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-3-clause-sun -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-3-clause-sun_2.RULE b/src/licensedcode/data/rules/bsd-3-clause-sun_2.RULE index c8bf4ee8073..880e2587835 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-sun_2.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-sun_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-3-clause-sun +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-3-clause-sun_2.yml b/src/licensedcode/data/rules/bsd-3-clause-sun_2.yml deleted file mode 100644 index 3772c6b8f14..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-sun_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-3-clause-sun -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-3-clause-sun_3.RULE b/src/licensedcode/data/rules/bsd-3-clause-sun_3.RULE index 383b753f681..aabbef8d27e 100644 --- a/src/licensedcode/data/rules/bsd-3-clause-sun_3.RULE +++ b/src/licensedcode/data/rules/bsd-3-clause-sun_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-3-clause-sun +is_license_text: yes +relevance: 100 +notes: typo in MIDROSYSTEMS +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-3-clause-sun_3.yml b/src/licensedcode/data/rules/bsd-3-clause-sun_3.yml deleted file mode 100644 index 95c60274ab9..00000000000 --- a/src/licensedcode/data/rules/bsd-3-clause-sun_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-3-clause-sun -is_license_text: yes -relevance: 100 -notes: typo in MIDROSYSTEMS diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_1.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_1.RULE index 7bbc2456a5a..6a47dab623a 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_1.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: this is not exactly the bsd-original-uc text but a rare and close enough variant that + once existed in the early/mid 1990's as part of tpcpdump in bsdi 2.1 +ignorable_authors: + - the University of California, Lawrence Berkeley Laboratory and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that: @@ -18,4 +29,4 @@ to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. +FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_1.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_1.yml deleted file mode 100644 index 7ef1d229dd6..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_text: yes -relevance: 99 -minimum_coverage: 90 -notes: this is not exactly the bsd-original-uc text but a rare and close enough variant that - once existed in the early/mid 1990's as part of tpcpdump in bsdi 2.1 -ignorable_authors: - - the University of California, Lawrence Berkeley Laboratory and its contributors diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_10.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_10.RULE index 9bf42ac831e..62dbced829c 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_10.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-4-Clause-Shortened +--- + LICENSE {{BSD-4-Clause-Shortened}} https://spdx.org/licenses/BSD-4-Clause-Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_10.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_10.yml deleted file mode 100644 index a82f4f8b7be..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-4-Clause-Shortened diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_2.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_2.RULE index c7a3beca099..b5e129eb1c2 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_2.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_tag: yes +relevance: 100 +--- + License: BSD-4-Clause-Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_2.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_2.yml deleted file mode 100644 index 1eda41a8976..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_3.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_3.RULE index b73a1048f12..cfde3deea08 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_3.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 4 Clause Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_3.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_3.yml deleted file mode 100644 index 8a25a43274c..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_4.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_4.RULE index bc8a00e95e6..404df417700 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_4.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 4 Clause Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_4.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_4.yml deleted file mode 100644 index 8a25a43274c..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_5.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_5.RULE index 319106a1f2c..cabc5655bfc 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_5.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-4-Clause-Shortened BSD 4 Clause Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_5.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_5.yml deleted file mode 100644 index 8a25a43274c..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_6.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_6.RULE index 1f6648e1003..63c93d6ce58 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_6.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-4-Clause-Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_6.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_6.yml deleted file mode 100644 index c52bd22421f..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_7.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_7.RULE index 6db191fbe71..edec5ce7ed3 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_7.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_7.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-4-Clause-Shortened +--- + https://licenses.nuget.org/BSD-4-Clause-Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_7.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_7.yml deleted file mode 100644 index 3a32c8cab85..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-4-Clause-Shortened diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_8.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_8.RULE index d8edd3b19ea..b3e9d1f4de8 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_8.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_8.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-4-Clause-Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_8.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_8.yml deleted file mode 100644 index cb1d944d886..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_9.RULE b/src/licensedcode/data/rules/bsd-4-clause-shortened_9.RULE index 1258198c5a9..2fed4ff2374 100644 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_9.RULE +++ b/src/licensedcode/data/rules/bsd-4-clause-shortened_9.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-4-clause-shortened +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-4-Clause-Shortened +--- + {{BSD-4-Clause-Shortened}} https://spdx.org/licenses/BSD-4-Clause-Shortened \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-4-clause-shortened_9.yml b/src/licensedcode/data/rules/bsd-4-clause-shortened_9.yml deleted file mode 100644 index a82f4f8b7be..00000000000 --- a/src/licensedcode/data/rules/bsd-4-clause-shortened_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-4-clause-shortened -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-4-Clause-Shortened diff --git a/src/licensedcode/data/rules/bsd-ack_1.RULE b/src/licensedcode/data/rules/bsd-ack_1.RULE index 171dafa164c..600f6f75cfd 100644 --- a/src/licensedcode/data/rules/bsd-ack_1.RULE +++ b/src/licensedcode/data/rules/bsd-ack_1.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +--- + BSD-3-Clause-Attribution BSD with attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_1.yml b/src/licensedcode/data/rules/bsd-ack_1.yml deleted file mode 100644 index ea82e1f7ba0..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-ack_10.RULE b/src/licensedcode/data/rules/bsd-ack_10.RULE index a2b1bd40f3e..bbd1bace59a 100644 --- a/src/licensedcode/data/rules/bsd-ack_10.RULE +++ b/src/licensedcode/data/rules/bsd-ack_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-Attribution +--- + LICENSE {{BSD-3-Clause-Attribution}} https://spdx.org/licenses/BSD-3-Clause-Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_10.yml b/src/licensedcode/data/rules/bsd-ack_10.yml deleted file mode 100644 index 7274e42fb67..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-Attribution diff --git a/src/licensedcode/data/rules/bsd-ack_11.RULE b/src/licensedcode/data/rules/bsd-ack_11.RULE index bec64d7bc5c..f6a2a5ffecd 100644 --- a/src/licensedcode/data/rules/bsd-ack_11.RULE +++ b/src/licensedcode/data/rules/bsd-ack_11.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-Attribution +--- + {{BSD-3-Clause-Attribution}} https://spdx.org/licenses/BSD-3-Clause-Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_11.yml b/src/licensedcode/data/rules/bsd-ack_11.yml deleted file mode 100644 index 7274e42fb67..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-Attribution diff --git a/src/licensedcode/data/rules/bsd-ack_2.RULE b/src/licensedcode/data/rules/bsd-ack_2.RULE index c44e39110d4..695ada50ab9 100644 --- a/src/licensedcode/data/rules/bsd-ack_2.RULE +++ b/src/licensedcode/data/rules/bsd-ack_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +--- + BSD with attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_2.yml b/src/licensedcode/data/rules/bsd-ack_2.yml deleted file mode 100644 index fc26d491d45..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-ack_3.RULE b/src/licensedcode/data/rules/bsd-ack_3.RULE index 0becb3f114b..fcf2cd4fb46 100644 --- a/src/licensedcode/data/rules/bsd-ack_3.RULE +++ b/src/licensedcode/data/rules/bsd-ack_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD with attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_3.yml b/src/licensedcode/data/rules/bsd-ack_3.yml deleted file mode 100644 index fa8f71a266e..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-ack_4.RULE b/src/licensedcode/data/rules/bsd-ack_4.RULE index cb7797b333d..08614f44b99 100644 --- a/src/licensedcode/data/rules/bsd-ack_4.RULE +++ b/src/licensedcode/data/rules/bsd-ack_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD with attribution BSD-3-Clause-Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_4.yml b/src/licensedcode/data/rules/bsd-ack_4.yml deleted file mode 100644 index fa8f71a266e..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-ack_5.RULE b/src/licensedcode/data/rules/bsd-ack_5.RULE index 1ff1efd20f6..fe7484d4b54 100644 --- a/src/licensedcode/data/rules/bsd-ack_5.RULE +++ b/src/licensedcode/data/rules/bsd-ack_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-ack +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_5.yml b/src/licensedcode/data/rules/bsd-ack_5.yml deleted file mode 100644 index 1559b467b27..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-ack -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-ack_6.RULE b/src/licensedcode/data/rules/bsd-ack_6.RULE index c27de4abc82..312d36a757e 100644 --- a/src/licensedcode/data/rules/bsd-ack_6.RULE +++ b/src/licensedcode/data/rules/bsd-ack_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-ack +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD with attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_6.yml b/src/licensedcode/data/rules/bsd-ack_6.yml deleted file mode 100644 index 1559b467b27..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-ack -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-ack_7.RULE b/src/licensedcode/data/rules/bsd-ack_7.RULE index 6bd8c2672ee..cb8b87796b7 100644 --- a/src/licensedcode/data/rules/bsd-ack_7.RULE +++ b/src/licensedcode/data/rules/bsd-ack_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-ack +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_7.yml b/src/licensedcode/data/rules/bsd-ack_7.yml deleted file mode 100644 index 1559b467b27..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-ack -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-ack_8.RULE b/src/licensedcode/data/rules/bsd-ack_8.RULE index 5969c8b96c9..0b0477056e6 100644 --- a/src/licensedcode/data/rules/bsd-ack_8.RULE +++ b/src/licensedcode/data/rules/bsd-ack_8.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-Attribution +--- + https://licenses.nuget.org/BSD-3-Clause-Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_8.yml b/src/licensedcode/data/rules/bsd-ack_8.yml deleted file mode 100644 index 226a7b392f3..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-Attribution diff --git a/src/licensedcode/data/rules/bsd-ack_9.RULE b/src/licensedcode/data/rules/bsd-ack_9.RULE index 8e395ae7e3e..428933d7ca2 100644 --- a/src/licensedcode/data/rules/bsd-ack_9.RULE +++ b/src/licensedcode/data/rules/bsd-ack_9.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_9.yml b/src/licensedcode/data/rules/bsd-ack_9.yml deleted file mode 100644 index 367e509bafc..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-ack_url_1.RULE b/src/licensedcode/data/rules/bsd-ack_url_1.RULE index 09334c618be..92ffaf7fd51 100644 --- a/src/licensedcode/data/rules/bsd-ack_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-ack_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-attribution +--- + https://spdx.org/licenses/bsd-3-clause-attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_url_1.yml b/src/licensedcode/data/rules/bsd-ack_url_1.yml deleted file mode 100644 index 5844ecd743d..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-attribution diff --git a/src/licensedcode/data/rules/bsd-ack_url_2.RULE b/src/licensedcode/data/rules/bsd-ack_url_2.RULE index 38784cbfad5..6b933645ec9 100644 --- a/src/licensedcode/data/rules/bsd-ack_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-ack_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-attribution.html +--- + https://spdx.org/licenses/bsd-3-clause-attribution.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-ack_url_2.yml b/src/licensedcode/data/rules/bsd-ack_url_2.yml deleted file mode 100644 index 1f513091658..00000000000 --- a/src/licensedcode/data/rules/bsd-ack_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-attribution.html diff --git a/src/licensedcode/data/rules/bsd-artwork_1.RULE b/src/licensedcode/data/rules/bsd-artwork_1.RULE index 577684b29c2..8937360cc9c 100644 --- a/src/licensedcode/data/rules/bsd-artwork_1.RULE +++ b/src/licensedcode/data/rules/bsd-artwork_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-artwork +is_license_text: yes +relevance: 99 +--- + This logo or a modified version may be used by anyone to refer to the project, but does not indicate endorsement by the project. Redistribution and use in source (the SVG files) and binary forms (rendered PNG files etc.) of the image, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-artwork_1.yml b/src/licensedcode/data/rules/bsd-artwork_1.yml deleted file mode 100644 index 596c74811a6..00000000000 --- a/src/licensedcode/data/rules/bsd-artwork_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-artwork -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-atmel_1.RULE b/src/licensedcode/data/rules/bsd-atmel_1.RULE index d7257b634ca..e32ad37cfd8 100644 --- a/src/licensedcode/data/rules/bsd-atmel_1.RULE +++ b/src/licensedcode/data/rules/bsd-atmel_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-atmel +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-atmel_1.yml b/src/licensedcode/data/rules/bsd-atmel_1.yml deleted file mode 100644 index d14bce9b01f..00000000000 --- a/src/licensedcode/data/rules/bsd-atmel_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-atmel -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl-2.0-plus.RULE index 61bc57391fd..89924a3d97c 100644 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl-2.0-plus.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-axis-nomod OR gpl-2.0-plus +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +27,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl-2.0-plus.yml b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl-2.0-plus.yml deleted file mode 100644 index 0e2eee40299..00000000000 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl-2.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-axis-nomod OR gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl.RULE b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl.RULE index f002459043c..d65658e4970 100644 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl.RULE +++ b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-axis-nomod OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -21,4 +27,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl.yml b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl.yml deleted file mode 100644 index 28a88b97640..00000000000 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-axis-nomod OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl2.RULE b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl2.RULE index 14a09f599de..832d8f08710 100644 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl2.RULE +++ b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-axis-nomod OR gpl-1.0-plus +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -8,4 +13,4 @@ are met: derived from this software without specific prior written permission. Alternatively, this software may be distributed under the terms of the -GNU General Public License ("GPL"). +GNU General Public License ("GPL"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl2.yml b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl2.yml deleted file mode 100644 index 0dbc508e753..00000000000 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-axis-nomod OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl3.RULE b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl3.RULE index f9de299f7ad..2c5ed7969eb 100644 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl3.RULE +++ b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-axis-nomod OR gpl-1.0-plus +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -18,4 +23,4 @@ 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 +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl3.yml b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl3.yml deleted file mode 100644 index 0dbc508e753..00000000000 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-axis-nomod OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl4.RULE b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl4.RULE index 0ad4cb4444d..365ed4b9b7f 100644 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl4.RULE +++ b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-axis-nomod OR gpl-1.0-plus +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +25,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl4.yml b/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl4.yml deleted file mode 100644 index 0dbc508e753..00000000000 --- a/src/licensedcode/data/rules/bsd-axis-nomod_or_gpl4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-axis-nomod OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-axis_1.RULE b/src/licensedcode/data/rules/bsd-axis_1.RULE index f27f1b01563..c94ab35d884 100644 --- a/src/licensedcode/data/rules/bsd-axis_1.RULE +++ b/src/licensedcode/data/rules/bsd-axis_1.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-axis_1.yml b/src/licensedcode/data/rules/bsd-axis_1.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-axis_11.RULE b/src/licensedcode/data/rules/bsd-axis_11.RULE index 486fbd69488..2dc16437edb 100644 --- a/src/licensedcode/data/rules/bsd-axis_11.RULE +++ b/src/licensedcode/data/rules/bsd-axis_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +--- + License: BSD-2 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/bsd-axis_11.yml b/src/licensedcode/data/rules/bsd-axis_11.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-axis_12.RULE b/src/licensedcode/data/rules/bsd-axis_12.RULE index 6f0da46304e..004c30c2085 100644 --- a/src/licensedcode/data/rules/bsd-axis_12.RULE +++ b/src/licensedcode/data/rules/bsd-axis_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + License: BSD-2 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/bsd-axis_12.yml b/src/licensedcode/data/rules/bsd-axis_12.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-axis_13.RULE b/src/licensedcode/data/rules/bsd-axis_13.RULE index e0f7b531ecd..8717944db2e 100644 --- a/src/licensedcode/data/rules/bsd-axis_13.RULE +++ b/src/licensedcode/data/rules/bsd-axis_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-axis_13.yml b/src/licensedcode/data/rules/bsd-axis_13.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-axis_14.RULE b/src/licensedcode/data/rules/bsd-axis_14.RULE index 3039ba4e383..b64ad9efcb7 100644 --- a/src/licensedcode/data/rules/bsd-axis_14.RULE +++ b/src/licensedcode/data/rules/bsd-axis_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-axis_14.yml b/src/licensedcode/data/rules/bsd-axis_14.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-axis_15.RULE b/src/licensedcode/data/rules/bsd-axis_15.RULE index 48a085a7962..6ae414a17d2 100644 --- a/src/licensedcode/data/rules/bsd-axis_15.RULE +++ b/src/licensedcode/data/rules/bsd-axis_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-axis_15.yml b/src/licensedcode/data/rules/bsd-axis_15.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-axis_2.RULE b/src/licensedcode/data/rules/bsd-axis_2.RULE index 21140ca8e92..9ffe44ec1fd 100644 --- a/src/licensedcode/data/rules/bsd-axis_2.RULE +++ b/src/licensedcode/data/rules/bsd-axis_2.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. */ + POSSIBILITY OF SUCH DAMAGE. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-axis_2.yml b/src/licensedcode/data/rules/bsd-axis_2.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-axis_3.RULE b/src/licensedcode/data/rules/bsd-axis_3.RULE index 40bad53f630..f38c0c5e03d 100644 --- a/src/licensedcode/data/rules/bsd-axis_3.RULE +++ b/src/licensedcode/data/rules/bsd-axis_3.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -17,4 +22,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-axis_3.yml b/src/licensedcode/data/rules/bsd-axis_3.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-axis_4.RULE b/src/licensedcode/data/rules/bsd-axis_4.RULE index cfffd768f3f..172c3f4cd42 100644 --- a/src/licensedcode/data/rules/bsd-axis_4.RULE +++ b/src/licensedcode/data/rules/bsd-axis_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 99 +notes: minor variant +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-axis_4.yml b/src/licensedcode/data/rules/bsd-axis_4.yml deleted file mode 100644 index a12238bfb86..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 99 -notes: minor variant diff --git a/src/licensedcode/data/rules/bsd-axis_5.RULE b/src/licensedcode/data/rules/bsd-axis_5.RULE index d2d5728dea0..479dc4397b1 100644 --- a/src/licensedcode/data/rules/bsd-axis_5.RULE +++ b/src/licensedcode/data/rules/bsd-axis_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-axis_5.yml b/src/licensedcode/data/rules/bsd-axis_5.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-axis_6.RULE b/src/licensedcode/data/rules/bsd-axis_6.RULE index ca8ff66d2bc..771243ac997 100644 --- a/src/licensedcode/data/rules/bsd-axis_6.RULE +++ b/src/licensedcode/data/rules/bsd-axis_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-axis_6.yml b/src/licensedcode/data/rules/bsd-axis_6.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-axis_7.RULE b/src/licensedcode/data/rules/bsd-axis_7.RULE index fe3a2b3d597..5a633e429ae 100644 --- a/src/licensedcode/data/rules/bsd-axis_7.RULE +++ b/src/licensedcode/data/rules/bsd-axis_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-axis_7.yml b/src/licensedcode/data/rules/bsd-axis_7.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-axis_8.RULE b/src/licensedcode/data/rules/bsd-axis_8.RULE index 4f90c4a8b1d..e70e590b298 100644 --- a/src/licensedcode/data/rules/bsd-axis_8.RULE +++ b/src/licensedcode/data/rules/bsd-axis_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 95 +minimum_coverage: 95 +referenced_filenames: + - LICENSE +--- + released under a modified version of the 3-clause BSD license. See the LICENSE file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-axis_8.yml b/src/licensedcode/data/rules/bsd-axis_8.yml deleted file mode 100644 index 9adec4a081b..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 95 -minimum_coverage: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-axis_9.RULE b/src/licensedcode/data/rules/bsd-axis_9.RULE index bd6b1c6fb40..0619a7f3180 100644 --- a/src/licensedcode/data/rules/bsd-axis_9.RULE +++ b/src/licensedcode/data/rules/bsd-axis_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-axis_9.yml b/src/licensedcode/data/rules/bsd-axis_9.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-axis_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-dpt.RULE b/src/licensedcode/data/rules/bsd-dpt.RULE index ba976406aa6..a70414bae5c 100644 --- a/src/licensedcode/data/rules/bsd-dpt.RULE +++ b/src/licensedcode/data/rules/bsd-dpt.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-dpt +is_license_text: yes +minimum_coverage: 95 +--- + Redistribution and use in source form, with or without modification, are permitted provided that redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. @@ -12,4 +18,4 @@ substitute goods or services; loss of use, data, or profits; or business interruptions) 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 driver software, even if advised -of the possibility of such damage. +of the possibility of such damage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-dpt.yml b/src/licensedcode/data/rules/bsd-dpt.yml deleted file mode 100644 index 2886b6d1345..00000000000 --- a/src/licensedcode/data/rules/bsd-dpt.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-dpt -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-dpt_1.RULE b/src/licensedcode/data/rules/bsd-dpt_1.RULE index c7e2140325b..abaed6eee26 100644 --- a/src/licensedcode/data/rules/bsd-dpt_1.RULE +++ b/src/licensedcode/data/rules/bsd-dpt_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-dpt +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source form, with or without modification, are permitted provided that redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. diff --git a/src/licensedcode/data/rules/bsd-dpt_1.yml b/src/licensedcode/data/rules/bsd-dpt_1.yml deleted file mode 100644 index 4395007590a..00000000000 --- a/src/licensedcode/data/rules/bsd-dpt_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-dpt -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-export.RULE b/src/licensedcode/data/rules/bsd-export.RULE index f123f38fea3..c233ae6d862 100644 --- a/src/licensedcode/data/rules/bsd-export.RULE +++ b/src/licensedcode/data/rules/bsd-export.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-export +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: @@ -27,4 +32,4 @@ DEFECTS, AND SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE -RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU. +RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-export.yml b/src/licensedcode/data/rules/bsd-export.yml deleted file mode 100644 index 56863394ab7..00000000000 --- a/src/licensedcode/data/rules/bsd-export.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-export -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-export_cavium.RULE b/src/licensedcode/data/rules/bsd-export_cavium.RULE index 31e29548aed..6b1c9f62344 100644 --- a/src/licensedcode/data/rules/bsd-export_cavium.RULE +++ b/src/licensedcode/data/rules/bsd-export_cavium.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-export +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: diff --git a/src/licensedcode/data/rules/bsd-export_cavium.yml b/src/licensedcode/data/rules/bsd-export_cavium.yml deleted file mode 100644 index 56863394ab7..00000000000 --- a/src/licensedcode/data/rules/bsd-export_cavium.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-export -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-export_cavium2.RULE b/src/licensedcode/data/rules/bsd-export_cavium2.RULE index b7a615008b8..946b0c2a340 100644 --- a/src/licensedcode/data/rules/bsd-export_cavium2.RULE +++ b/src/licensedcode/data/rules/bsd-export_cavium2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-export +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: @@ -29,4 +34,4 @@ MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR - PERFORMANCE OF THE SOFTWARE LIES WITH YOU. + PERFORMANCE OF THE SOFTWARE LIES WITH YOU. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-export_cavium2.yml b/src/licensedcode/data/rules/bsd-export_cavium2.yml deleted file mode 100644 index 56863394ab7..00000000000 --- a/src/licensedcode/data/rules/bsd-export_cavium2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-export -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-innosys.RULE b/src/licensedcode/data/rules/bsd-innosys.RULE index 6715a4ed80d..529beed8e1d 100644 --- a/src/licensedcode/data/rules/bsd-innosys.RULE +++ b/src/licensedcode/data/rules/bsd-innosys.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-innosys +is_license_text: yes +relevance: 99 +minimum_coverage: 70 +--- + This file is available under a BSD-style copyright Keyspan USB Async Message Formats for the USA28X @@ -28,4 +35,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-innosys.yml b/src/licensedcode/data/rules/bsd-innosys.yml deleted file mode 100644 index 5c16d965a0a..00000000000 --- a/src/licensedcode/data/rules/bsd-innosys.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-innosys -is_license_text: yes -relevance: 99 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/bsd-innosys2.RULE b/src/licensedcode/data/rules/bsd-innosys2.RULE index 230f70d837c..68a1e16a61b 100644 --- a/src/licensedcode/data/rules/bsd-innosys2.RULE +++ b/src/licensedcode/data/rules/bsd-innosys2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-innosys +is_license_text: yes +minimum_coverage: 70 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +30,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-innosys2.yml b/src/licensedcode/data/rules/bsd-innosys2.yml deleted file mode 100644 index 6d536e1afba..00000000000 --- a/src/licensedcode/data/rules/bsd-innosys2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-innosys -is_license_text: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/bsd-innosys3.RULE b/src/licensedcode/data/rules/bsd-innosys3.RULE index de500d3674e..a1a111564d8 100644 --- a/src/licensedcode/data/rules/bsd-innosys3.RULE +++ b/src/licensedcode/data/rules/bsd-innosys3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-innosys +is_license_notice: yes +minimum_coverage: 70 +--- + This file is available under a BSD-style copyright Keyspan USB Async Message Formats for the USA26X @@ -28,5 +34,4 @@ 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. - + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-innosys3.yml b/src/licensedcode/data/rules/bsd-innosys3.yml deleted file mode 100644 index 75ce12c5738..00000000000 --- a/src/licensedcode/data/rules/bsd-innosys3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-innosys -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/bsd-innosys4.RULE b/src/licensedcode/data/rules/bsd-innosys4.RULE index 992f0c089a0..66e32020773 100644 --- a/src/licensedcode/data/rules/bsd-innosys4.RULE +++ b/src/licensedcode/data/rules/bsd-innosys4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-innosys +is_license_notice: yes +minimum_coverage: 70 +--- + This file is available under a BSD-style copyright Keyspan USB Async Message Formats for the USA19HS @@ -28,4 +34,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-innosys4.yml b/src/licensedcode/data/rules/bsd-innosys4.yml deleted file mode 100644 index 75ce12c5738..00000000000 --- a/src/licensedcode/data/rules/bsd-innosys4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-innosys -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/bsd-innosys5.RULE b/src/licensedcode/data/rules/bsd-innosys5.RULE index 3fdcec37284..700dbce37a5 100644 --- a/src/licensedcode/data/rules/bsd-innosys5.RULE +++ b/src/licensedcode/data/rules/bsd-innosys5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-innosys +is_license_notice: yes +minimum_coverage: 70 +--- + This file is available under a BSD-style copyright Keyspan USB Async Firmware to run on Anchor FX1 @@ -32,4 +38,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-innosys5.yml b/src/licensedcode/data/rules/bsd-innosys5.yml deleted file mode 100644 index 75ce12c5738..00000000000 --- a/src/licensedcode/data/rules/bsd-innosys5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-innosys -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/bsd-intel_1.RULE b/src/licensedcode/data/rules/bsd-intel_1.RULE index f716d64ea54..900058fb9e4 100644 --- a/src/licensedcode/data/rules/bsd-intel_1.RULE +++ b/src/licensedcode/data/rules/bsd-intel_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Intel License Agreement Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-intel_1.yml b/src/licensedcode/data/rules/bsd-intel_1.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-intel_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-intel_2.RULE b/src/licensedcode/data/rules/bsd-intel_2.RULE index 39da0c994d4..f3e2852f9fb 100644 --- a/src/licensedcode/data/rules/bsd-intel_2.RULE +++ b/src/licensedcode/data/rules/bsd-intel_2.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-intel_2.yml b/src/licensedcode/data/rules/bsd-intel_2.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-intel_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-intel_3.RULE b/src/licensedcode/data/rules/bsd-intel_3.RULE index 03ccdfb89ad..dc095d5c114 100644 --- a/src/licensedcode/data/rules/bsd-intel_3.RULE +++ b/src/licensedcode/data/rules/bsd-intel_3.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-intel_3.yml b/src/licensedcode/data/rules/bsd-intel_3.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-intel_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-intel_4.RULE b/src/licensedcode/data/rules/bsd-intel_4.RULE index cc02e6676b6..92f5e08d109 100644 --- a/src/licensedcode/data/rules/bsd-intel_4.RULE +++ b/src/licensedcode/data/rules/bsd-intel_4.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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. + 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-intel_4.yml b/src/licensedcode/data/rules/bsd-intel_4.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-intel_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-intel_5.RULE b/src/licensedcode/data/rules/bsd-intel_5.RULE index 0ebcaf6d47c..24de39bf6c8 100644 --- a/src/licensedcode/data/rules/bsd-intel_5.RULE +++ b/src/licensedcode/data/rules/bsd-intel_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + BSD LICENSE diff --git a/src/licensedcode/data/rules/bsd-intel_5.yml b/src/licensedcode/data/rules/bsd-intel_5.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-intel_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-intel_6.RULE b/src/licensedcode/data/rules/bsd-intel_6.RULE index b6061f1de15..e8b29f7fd48 100644 --- a/src/licensedcode/data/rules/bsd-intel_6.RULE +++ b/src/licensedcode/data/rules/bsd-intel_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Intel Open Source License Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-intel_6.yml b/src/licensedcode/data/rules/bsd-intel_6.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-intel_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new-derivative_1.RULE b/src/licensedcode/data/rules/bsd-new-derivative_1.RULE index d28d8dc2a39..ef711023fc6 100644 --- a/src/licensedcode/data/rules/bsd-new-derivative_1.RULE +++ b/src/licensedcode/data/rules/bsd-new-derivative_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new-derivative +is_license_text: yes +--- + * covered by the following terms: * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new-derivative_1.yml b/src/licensedcode/data/rules/bsd-new-derivative_1.yml deleted file mode 100644 index 9eca5b25fc9..00000000000 --- a/src/licensedcode/data/rules/bsd-new-derivative_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new-derivative -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new-link.RULE b/src/licensedcode/data/rules/bsd-new-link.RULE index 5b587d53fd6..0ca3dfa164d 100644 --- a/src/licensedcode/data/rules/bsd-new-link.RULE +++ b/src/licensedcode/data/rules/bsd-new-link.RULE @@ -1,7 +1,14 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License that accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php. THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new-link.yml b/src/licensedcode/data/rules/bsd-new-link.yml deleted file mode 100644 index baefca57109..00000000000 --- a/src/licensedcode/data/rules/bsd-new-link.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new-link2.RULE b/src/licensedcode/data/rules/bsd-new-link2.RULE index 6616c48dd58..ac63777ab72 100644 --- a/src/licensedcode/data/rules/bsd-new-link2.RULE +++ b/src/licensedcode/data/rules/bsd-new-link2.RULE @@ -1,7 +1,14 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/bsd-license +--- + This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License that accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license. THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new-link2.yml b/src/licensedcode/data/rules/bsd-new-link2.yml deleted file mode 100644 index d693eb63f0c..00000000000 --- a/src/licensedcode/data/rules/bsd-new-link2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new-nomod_1.RULE b/src/licensedcode/data/rules/bsd-new-nomod_1.RULE index aac5e2a8037..817524e3066 100644 --- a/src/licensedcode/data/rules/bsd-new-nomod_1.RULE +++ b/src/licensedcode/data/rules/bsd-new-nomod_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new-nomod +is_license_text: yes +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +27,4 @@ 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. +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-nomod_1.yml b/src/licensedcode/data/rules/bsd-new-nomod_1.yml deleted file mode 100644 index 603b6417729..00000000000 --- a/src/licensedcode/data/rules/bsd-new-nomod_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new-nomod -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_2.RULE index 46c699c1c27..226cd38ee5e 100644 --- a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new-nomod OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -26,4 +32,4 @@ 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. +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-nomod_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_2.yml deleted file mode 100644 index 77239ae5cdc..00000000000 --- a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new-nomod OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_4.RULE index 16630cd6c9d..5387710aaf3 100644 --- a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new-nomod OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -26,4 +32,4 @@ 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. +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-nomod_or_gpl-2.0-plus_4.yml b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_4.yml deleted file mode 100644 index 77239ae5cdc..00000000000 --- a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new-nomod OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0.RULE b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0.RULE index 6f444629311..b0ccd189f9b 100644 --- a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new-nomod OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +notes: Dual BSD/GPL, seen in omap, formerly reported as dual-bsd-gpl. It contains an extra + and rare "without modification" condition. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -25,4 +33,4 @@ 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. + 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-nomod_or_gpl-2.0.yml b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0.yml deleted file mode 100644 index ccd83da7de3..00000000000 --- a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new-nomod OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 -notes: Dual BSD/GPL, seen in omap, formerly reported as dual-bsd-gpl. It contains an extra - and rare "without modification" condition. diff --git a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0_8.RULE b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0_8.RULE index 291968d55a5..1dd10ef5991 100644 --- a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new-nomod OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -26,4 +32,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0_8.yml b/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0_8.yml deleted file mode 100644 index 345b41bb2d1..00000000000 --- a/src/licensedcode/data/rules/bsd-new-nomod_or_gpl-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new-nomod OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new-oracle-glassfish.RULE b/src/licensedcode/data/rules/bsd-new-oracle-glassfish.RULE index 641e041f72e..0626fe320f1 100644 --- a/src/licensedcode/data/rules/bsd-new-oracle-glassfish.RULE +++ b/src/licensedcode/data/rules/bsd-new-oracle-glassfish.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + /* * * Redistribution and use in source and binary forms, with or without @@ -26,4 +31,4 @@ * 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-oracle-glassfish.yml b/src/licensedcode/data/rules/bsd-new-oracle-glassfish.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new-oracle-glassfish.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new-sun-glassfish.RULE b/src/licensedcode/data/rules/bsd-new-sun-glassfish.RULE index 6ed3185cef7..b74af4af978 100644 --- a/src/licensedcode/data/rules/bsd-new-sun-glassfish.RULE +++ b/src/licensedcode/data/rules/bsd-new-sun-glassfish.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + /* * * Redistribution and use in source and binary forms, with or without @@ -26,4 +31,4 @@ * 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-sun-glassfish.yml b/src/licensedcode/data/rules/bsd-new-sun-glassfish.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new-sun-glassfish.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new-tcpdump_1.RULE b/src/licensedcode/data/rules/bsd-new-tcpdump_1.RULE index 168c6260d2a..ceffe00b10b 100644 --- a/src/licensedcode/data/rules/bsd-new-tcpdump_1.RULE +++ b/src/licensedcode/data/rules/bsd-new-tcpdump_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new-tcpdump +is_license_text: yes +relevance: 100 +notes: seen in libpcap +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that: (1) source code distributions retain the above copyright notice and this paragraph in its entirety, (2) diff --git a/src/licensedcode/data/rules/bsd-new-tcpdump_1.yml b/src/licensedcode/data/rules/bsd-new-tcpdump_1.yml deleted file mode 100644 index 649742880c8..00000000000 --- a/src/licensedcode/data/rules/bsd-new-tcpdump_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new-tcpdump -is_license_text: yes -relevance: 100 -notes: seen in libpcap diff --git a/src/licensedcode/data/rules/bsd-new-tcpdump_2.RULE b/src/licensedcode/data/rules/bsd-new-tcpdump_2.RULE index 9a26dca9d09..b5590c3baff 100644 --- a/src/licensedcode/data/rules/bsd-new-tcpdump_2.RULE +++ b/src/licensedcode/data/rules/bsd-new-tcpdump_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new-tcpdump +is_license_text: yes +relevance: 100 +notes: seen in libpcap +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that: (1) source code distributions retain the above copyright notice and this paragraph in its entirety, (2) diff --git a/src/licensedcode/data/rules/bsd-new-tcpdump_2.yml b/src/licensedcode/data/rules/bsd-new-tcpdump_2.yml deleted file mode 100644 index 649742880c8..00000000000 --- a/src/licensedcode/data/rules/bsd-new-tcpdump_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new-tcpdump -is_license_text: yes -relevance: 100 -notes: seen in libpcap diff --git a/src/licensedcode/data/rules/bsd-new-tcpdump_3.RULE b/src/licensedcode/data/rules/bsd-new-tcpdump_3.RULE index 44d972e369b..24a7666b1f5 100644 --- a/src/licensedcode/data/rules/bsd-new-tcpdump_3.RULE +++ b/src/licensedcode/data/rules/bsd-new-tcpdump_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new-tcpdump +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that: (1) source code distributions retain the above copyright notice and this paragraph diff --git a/src/licensedcode/data/rules/bsd-new-tcpdump_3.yml b/src/licensedcode/data/rules/bsd-new-tcpdump_3.yml deleted file mode 100644 index aea8ffa16fe..00000000000 --- a/src/licensedcode/data/rules/bsd-new-tcpdump_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new-tcpdump -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new.RULE b/src/licensedcode/data/rules/bsd-new.RULE index 83943aa1927..2fca797ade6 100644 --- a/src/licensedcode/data/rules/bsd-new.RULE +++ b/src/licensedcode/data/rules/bsd-new.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://framework.zend.com/license/new-bsd +--- + http://framework.zend.com/license/new-bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new.yml b/src/licensedcode/data/rules/bsd-new.yml deleted file mode 100644 index 43ddfddd535..00000000000 --- a/src/licensedcode/data/rules/bsd-new.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://framework.zend.com/license/new-bsd diff --git a/src/licensedcode/data/rules/bsd-new_0.RULE b/src/licensedcode/data/rules/bsd-new_0.RULE index a2dc7e81acb..ceadf3015fa 100644 --- a/src/licensedcode/data/rules/bsd-new_0.RULE +++ b/src/licensedcode/data/rules/bsd-new_0.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Licensing terms -This project is licensed under the terms of the Modified BSD License (also known as New or Revised or 3-Clause BSD), \ No newline at end of file +This project is licensed under the terms of the Modified BSD License (also known as New or Revised or 3-Clause BSD), \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_0.yml b/src/licensedcode/data/rules/bsd-new_0.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1.RULE b/src/licensedcode/data/rules/bsd-new_1.RULE index 788fc9fd609..7ec80b5fa97 100644 --- a/src/licensedcode/data/rules/bsd-new_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/bsd-3-clause +--- + https://choosealicense.com/licenses/bsd-3-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1.yml b/src/licensedcode/data/rules/bsd-new_1.yml deleted file mode 100644 index cd446e122d4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/bsd-3-clause diff --git a/src/licensedcode/data/rules/bsd-new_10.RULE b/src/licensedcode/data/rules/bsd-new_10.RULE index 3deff3f6d6f..7039f8f5364 100644 --- a/src/licensedcode/data/rules/bsd-new_10.RULE +++ b/src/licensedcode/data/rules/bsd-new_10.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_10.yml b/src/licensedcode/data/rules/bsd-new_10.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_100.RULE b/src/licensedcode/data/rules/bsd-new_100.RULE index 5395a57008b..fe380d2b928 100644 --- a/src/licensedcode/data/rules/bsd-new_100.RULE +++ b/src/licensedcode/data/rules/bsd-new_100.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 100 +--- + License: BSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -22,4 +28,4 @@ License: BSD 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_100.yml b/src/licensedcode/data/rules/bsd-new_100.yml deleted file mode 100644 index 4cef1e4e19d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1000.RULE b/src/licensedcode/data/rules/bsd-new_1000.RULE index 43ef92afd2d..85aa012df26 100644 --- a/src/licensedcode/data/rules/bsd-new_1000.RULE +++ b/src/licensedcode/data/rules/bsd-new_1000.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * [This program is licensed under the "3-clause ('new') BSD License"] * Please see the file COPYING in the source * distribution of this software for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1000.yml b/src/licensedcode/data/rules/bsd-new_1000.yml deleted file mode 100644 index 3309358c29c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1000.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_1001.RULE b/src/licensedcode/data/rules/bsd-new_1001.RULE index 9b4f56d8627..c7735891241 100644 --- a/src/licensedcode/data/rules/bsd-new_1001.RULE +++ b/src/licensedcode/data/rules/bsd-new_1001.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This program is licensed under the "3-clause ('new') BSD License"] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1001.yml b/src/licensedcode/data/rules/bsd-new_1001.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1001.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1002.RULE b/src/licensedcode/data/rules/bsd-new_1002.RULE index 4a9fa45f521..3b83a81416d 100644 --- a/src/licensedcode/data/rules/bsd-new_1002.RULE +++ b/src/licensedcode/data/rules/bsd-new_1002.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: This is a sun-bsd-no-nuclear stripped from the nuclear clause which is essentially a + bsd-3-clause +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1002.yml b/src/licensedcode/data/rules/bsd-new_1002.yml deleted file mode 100644 index a20c4d2f930..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1002.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: This is a sun-bsd-no-nuclear stripped from the nuclear clause which is essentially a - bsd-3-clause diff --git a/src/licensedcode/data/rules/bsd-new_1003.RULE b/src/licensedcode/data/rules/bsd-new_1003.RULE index ce31da5c90f..53670659749 100644 --- a/src/licensedcode/data/rules/bsd-new_1003.RULE +++ b/src/licensedcode/data/rules/bsd-new_1003.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: This is a sun-bsd-no-nuclear stripped from the nuclear clause which is essentially a + bsd-3-clause See https://archive.softwareheritage.org/browse/content/sha1_git:152044fdb0e884d04ea9efb4df809a01484f6461/raw/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1003.yml b/src/licensedcode/data/rules/bsd-new_1003.yml deleted file mode 100644 index aa7d5dc0d47..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1003.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: This is a sun-bsd-no-nuclear stripped from the nuclear clause which is essentially a - bsd-3-clause See https://archive.softwareheritage.org/browse/content/sha1_git:152044fdb0e884d04ea9efb4df809a01484f6461/raw/ diff --git a/src/licensedcode/data/rules/bsd-new_1004.RULE b/src/licensedcode/data/rules/bsd-new_1004.RULE index fbb76e0c43d..296a626668e 100644 --- a/src/licensedcode/data/rules/bsd-new_1004.RULE +++ b/src/licensedcode/data/rules/bsd-new_1004.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: This is a sun-bsd-no-nuclear stripped from the nuclear clause which is essentially a + bsd-3-clause See https://archive.softwareheritage.org/browse/content/sha1_git:152044fdb0e884d04ea9efb4df809a01484f6461/raw/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1004.yml b/src/licensedcode/data/rules/bsd-new_1004.yml deleted file mode 100644 index aa7d5dc0d47..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1004.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: This is a sun-bsd-no-nuclear stripped from the nuclear clause which is essentially a - bsd-3-clause See https://archive.softwareheritage.org/browse/content/sha1_git:152044fdb0e884d04ea9efb4df809a01484f6461/raw/ diff --git a/src/licensedcode/data/rules/bsd-new_1005.RULE b/src/licensedcode/data/rules/bsd-new_1005.RULE index f2bec6202b7..164b9fc35b1 100644 --- a/src/licensedcode/data/rules/bsd-new_1005.RULE +++ b/src/licensedcode/data/rules/bsd-new_1005.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + * This software program is licensed subject to the BSD License, * available at http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1005.yml b/src/licensedcode/data/rules/bsd-new_1005.yml deleted file mode 100644 index 2467ca52d37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1005.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_1006.RULE b/src/licensedcode/data/rules/bsd-new_1006.RULE index 5b92daf96ad..c9cbbee6b67 100644 --- a/src/licensedcode/data/rules/bsd-new_1006.RULE +++ b/src/licensedcode/data/rules/bsd-new_1006.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: @@ -23,6 +28,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE - - +THIS 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_1006.yml b/src/licensedcode/data/rules/bsd-new_1006.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1006.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1007.RULE b/src/licensedcode/data/rules/bsd-new_1007.RULE index c0a5f1b741c..e8539607fc9 100644 --- a/src/licensedcode/data/rules/bsd-new_1007.RULE +++ b/src/licensedcode/data/rules/bsd-new_1007.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + License: BSD-3-Clause . Redistribution and use in source and binary forms, with or without @@ -20,4 +25,4 @@ License: BSD-3-Clause 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. + 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_1007.yml b/src/licensedcode/data/rules/bsd-new_1007.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1007.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1008.RULE b/src/licensedcode/data/rules/bsd-new_1008.RULE index c94c46269d0..fb1b028c38e 100644 --- a/src/licensedcode/data/rules/bsd-new_1008.RULE +++ b/src/licensedcode/data/rules/bsd-new_1008.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_1008.yml b/src/licensedcode/data/rules/bsd-new_1008.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1008.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1009.RULE b/src/licensedcode/data/rules/bsd-new_1009.RULE index b9aa1bf2d60..fcad3e933ad 100644 --- a/src/licensedcode/data/rules/bsd-new_1009.RULE +++ b/src/licensedcode/data/rules/bsd-new_1009.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + # 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 diff --git a/src/licensedcode/data/rules/bsd-new_1009.yml b/src/licensedcode/data/rules/bsd-new_1009.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1009.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_101.RULE b/src/licensedcode/data/rules/bsd-new_101.RULE index 4968c742f46..6890332bc80 100644 --- a/src/licensedcode/data/rules/bsd-new_101.RULE +++ b/src/licensedcode/data/rules/bsd-new_101.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: | + In contrast with the main text, this version uses + 3. [rescinded 22 July 1999] as opposed to 3. . + Since this is a bsd-original-uc with the advert + claused removed, this becomes de facto a bsd-new +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_101.yml b/src/licensedcode/data/rules/bsd-new_101.yml deleted file mode 100644 index 26423490199..00000000000 --- a/src/licensedcode/data/rules/bsd-new_101.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: | - In contrast with the main text, this version uses - 3. [rescinded 22 July 1999] as opposed to 3. . - Since this is a bsd-original-uc with the advert - claused removed, this becomes de facto a bsd-new diff --git a/src/licensedcode/data/rules/bsd-new_1010.RULE b/src/licensedcode/data/rules/bsd-new_1010.RULE index d58d78bf44a..a9b936e26b5 100644 --- a/src/licensedcode/data/rules/bsd-new_1010.RULE +++ b/src/licensedcode/data/rules/bsd-new_1010.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1010.yml b/src/licensedcode/data/rules/bsd-new_1010.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1010.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1011.RULE b/src/licensedcode/data/rules/bsd-new_1011.RULE index 9de8a4cd398..0496149fda7 100644 --- a/src/licensedcode/data/rules/bsd-new_1011.RULE +++ b/src/licensedcode/data/rules/bsd-new_1011.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1011.yml b/src/licensedcode/data/rules/bsd-new_1011.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1011.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1012.RULE b/src/licensedcode/data/rules/bsd-new_1012.RULE index 5f1156622f2..da071e0ded1 100644 --- a/src/licensedcode/data/rules/bsd-new_1012.RULE +++ b/src/licensedcode/data/rules/bsd-new_1012.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: seen in https://github.com/MegEngine/MegEngine/blob/af62cf6f051255a9f9b9789b2c917ac13ae5f10e/dnn/src/x86/simd_macro/sse_helper_typedef.h#L1 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1012.yml b/src/licensedcode/data/rules/bsd-new_1012.yml deleted file mode 100644 index af8905153f2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1012.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: seen in https://github.com/MegEngine/MegEngine/blob/af62cf6f051255a9f9b9789b2c917ac13ae5f10e/dnn/src/x86/simd_macro/sse_helper_typedef.h#L1 diff --git a/src/licensedcode/data/rules/bsd-new_1013.RULE b/src/licensedcode/data/rules/bsd-new_1013.RULE index eccd001dd31..deccad2b0b0 100644 --- a/src/licensedcode/data/rules/bsd-new_1013.RULE +++ b/src/licensedcode/data/rules/bsd-new_1013.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: seen in https://github.com/MegEngine/MegEngine/blob/af62cf6f051255a9f9b9789b2c917ac13ae5f10e/dnn/src/x86/simd_macro/sse_helper_typedef.h#L1 +--- + IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. By downloading, copying, installing or using the software you agree to this license. diff --git a/src/licensedcode/data/rules/bsd-new_1013.yml b/src/licensedcode/data/rules/bsd-new_1013.yml deleted file mode 100644 index af8905153f2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1013.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: seen in https://github.com/MegEngine/MegEngine/blob/af62cf6f051255a9f9b9789b2c917ac13ae5f10e/dnn/src/x86/simd_macro/sse_helper_typedef.h#L1 diff --git a/src/licensedcode/data/rules/bsd-new_1014.RULE b/src/licensedcode/data/rules/bsd-new_1014.RULE index b0163b9c67a..2c7b405e84e 100644 --- a/src/licensedcode/data/rules/bsd-new_1014.RULE +++ b/src/licensedcode/data/rules/bsd-new_1014.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1014.yml b/src/licensedcode/data/rules/bsd-new_1014.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1014.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1015.RULE b/src/licensedcode/data/rules/bsd-new_1015.RULE index 0ecad5fec61..64bae679745 100644 --- a/src/licensedcode/data/rules/bsd-new_1015.RULE +++ b/src/licensedcode/data/rules/bsd-new_1015.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: Seen in flac +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1015.yml b/src/licensedcode/data/rules/bsd-new_1015.yml deleted file mode 100644 index d61f2039c6e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1015.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: Seen in flac diff --git a/src/licensedcode/data/rules/bsd-new_1016.RULE b/src/licensedcode/data/rules/bsd-new_1016.RULE index f59a3bfb5ac..b1f20939cb7 100644 --- a/src/licensedcode/data/rules/bsd-new_1016.RULE +++ b/src/licensedcode/data/rules/bsd-new_1016.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 90 +--- + License: BSDish \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1016.yml b/src/licensedcode/data/rules/bsd-new_1016.yml deleted file mode 100644 index a9782d20a54..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1016.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_1017.RULE b/src/licensedcode/data/rules/bsd-new_1017.RULE index 24e360404e9..318b7af4460 100644 --- a/src/licensedcode/data/rules/bsd-new_1017.RULE +++ b/src/licensedcode/data/rules/bsd-new_1017.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + license = '3-Clause BSD License' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1017.yml b/src/licensedcode/data/rules/bsd-new_1017.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1017.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1018.RULE b/src/licensedcode/data/rules/bsd-new_1018.RULE index 4eddf24c3fb..51ba271435c 100644 --- a/src/licensedcode/data/rules/bsd-new_1018.RULE +++ b/src/licensedcode/data/rules/bsd-new_1018.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 90 +--- + license = { :type => 'BSD-Like' } \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1018.yml b/src/licensedcode/data/rules/bsd-new_1018.yml deleted file mode 100644 index a9782d20a54..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1018.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_1019.RULE b/src/licensedcode/data/rules/bsd-new_1019.RULE index fc0682dbb55..8b09e946e93 100644 --- a/src/licensedcode/data/rules/bsd-new_1019.RULE +++ b/src/licensedcode/data/rules/bsd-new_1019.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + project is now BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1019.yml b/src/licensedcode/data/rules/bsd-new_1019.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1019.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_102.RULE b/src/licensedcode/data/rules/bsd-new_102.RULE index 9497bf17ac5..29f3582895a 100644 --- a/src/licensedcode/data/rules/bsd-new_102.RULE +++ b/src/licensedcode/data/rules/bsd-new_102.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_102.yml b/src/licensedcode/data/rules/bsd-new_102.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_102.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1020.RULE b/src/licensedcode/data/rules/bsd-new_1020.RULE index 71517f492df..4fdcb1d8700 100644 --- a/src/licensedcode/data/rules/bsd-new_1020.RULE +++ b/src/licensedcode/data/rules/bsd-new_1020.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This software is provided under under the BSD 3-Clause License. See the accompanying LICENSE file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1020.yml b/src/licensedcode/data/rules/bsd-new_1020.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1020.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1021.RULE b/src/licensedcode/data/rules/bsd-new_1021.RULE index 61083983988..74457fa2f88 100644 --- a/src/licensedcode/data/rules/bsd-new_1021.RULE +++ b/src/licensedcode/data/rules/bsd-new_1021.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + provided under a BSD-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1021.yml b/src/licensedcode/data/rules/bsd-new_1021.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1021.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_1022.RULE b/src/licensedcode/data/rules/bsd-new_1022.RULE index 4e9a7cb3398..4e170d70f53 100644 --- a/src/licensedcode/data/rules/bsd-new_1022.RULE +++ b/src/licensedcode/data/rules/bsd-new_1022.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + released under BSD style licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1022.yml b/src/licensedcode/data/rules/bsd-new_1022.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1022.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_1023.RULE b/src/licensedcode/data/rules/bsd-new_1023.RULE index 234c5f5f521..7dd7231e2ab 100644 --- a/src/licensedcode/data/rules/bsd-new_1023.RULE +++ b/src/licensedcode/data/rules/bsd-new_1023.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + under BSD style licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1023.yml b/src/licensedcode/data/rules/bsd-new_1023.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1023.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_1024.RULE b/src/licensedcode/data/rules/bsd-new_1024.RULE index ff0504dbe5b..5ca09621b54 100644 --- a/src/licensedcode/data/rules/bsd-new_1024.RULE +++ b/src/licensedcode/data/rules/bsd-new_1024.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + BSD licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1024.yml b/src/licensedcode/data/rules/bsd-new_1024.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1024.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_1025.RULE b/src/licensedcode/data/rules/bsd-new_1025.RULE index 2788408331c..68f73d510fb 100644 --- a/src/licensedcode/data/rules/bsd-new_1025.RULE +++ b/src/licensedcode/data/rules/bsd-new_1025.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + released under the 3-clause New BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1025.yml b/src/licensedcode/data/rules/bsd-new_1025.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1025.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1026.RULE b/src/licensedcode/data/rules/bsd-new_1026.RULE index ac4048f97ea..f596576da9d 100644 --- a/src/licensedcode/data/rules/bsd-new_1026.RULE +++ b/src/licensedcode/data/rules/bsd-new_1026.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + released under the New BSD License: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1026.yml b/src/licensedcode/data/rules/bsd-new_1026.yml deleted file mode 100644 index 1a6b1a6d080..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1026.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_1027.RULE b/src/licensedcode/data/rules/bsd-new_1027.RULE index 723500d4384..3bf2208605a 100644 --- a/src/licensedcode/data/rules/bsd-new_1027.RULE +++ b/src/licensedcode/data/rules/bsd-new_1027.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + under the BSD license, as shown in that file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1027.yml b/src/licensedcode/data/rules/bsd-new_1027.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1027.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1028.RULE b/src/licensedcode/data/rules/bsd-new_1028.RULE index 04419310e47..6a58691107e 100644 --- a/src/licensedcode/data/rules/bsd-new_1028.RULE +++ b/src/licensedcode/data/rules/bsd-new_1028.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + This software is distributed under the terms of the BSD license. BSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1028.yml b/src/licensedcode/data/rules/bsd-new_1028.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1028.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1029.RULE b/src/licensedcode/data/rules/bsd-new_1029.RULE index b75505108a2..1c4848e638e 100644 --- a/src/licensedcode/data/rules/bsd-new_1029.RULE +++ b/src/licensedcode/data/rules/bsd-new_1029.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.Xiph +--- + it may be distributed under the Xiph.Org license, which is the least restrictive of those mentioned above. See the file COPYING.Xiph in this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1029.yml b/src/licensedcode/data/rules/bsd-new_1029.yml deleted file mode 100644 index 08fa9f82c04..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1029.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.Xiph diff --git a/src/licensedcode/data/rules/bsd-new_103.RULE b/src/licensedcode/data/rules/bsd-new_103.RULE index 1befadf44a8..c73548e2a3b 100644 --- a/src/licensedcode/data/rules/bsd-new_103.RULE +++ b/src/licensedcode/data/rules/bsd-new_103.RULE @@ -1 +1,7 @@ -New BSD License (BSD) +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + +New BSD License (BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_103.yml b/src/licensedcode/data/rules/bsd-new_103.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1030.RULE b/src/licensedcode/data/rules/bsd-new_1030.RULE index d5a36180e82..f5424eac834 100644 --- a/src/licensedcode/data/rules/bsd-new_1030.RULE +++ b/src/licensedcode/data/rules/bsd-new_1030.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Xiph.Org license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1030.yml b/src/licensedcode/data/rules/bsd-new_1030.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1030.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1031.RULE b/src/licensedcode/data/rules/bsd-new_1031.RULE index a9589f882c0..0331401a813 100644 --- a/src/licensedcode/data/rules/bsd-new_1031.RULE +++ b/src/licensedcode/data/rules/bsd-new_1031.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: mildly damaged text +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1031.yml b/src/licensedcode/data/rules/bsd-new_1031.yml deleted file mode 100644 index dd984467943..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1031.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: mildly damaged text diff --git a/src/licensedcode/data/rules/bsd-new_1032.RULE b/src/licensedcode/data/rules/bsd-new_1032.RULE index b3db30c3934..725cfc0ad98 100644 --- a/src/licensedcode/data/rules/bsd-new_1032.RULE +++ b/src/licensedcode/data/rules/bsd-new_1032.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + License All contributions released under the `BSD 3-Clause License `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1032.yml b/src/licensedcode/data/rules/bsd-new_1032.yml deleted file mode 100644 index c3e5d658602..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1032.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1033.RULE b/src/licensedcode/data/rules/bsd-new_1033.RULE index 090936dbd1f..e08ec350afa 100644 --- a/src/licensedcode/data/rules/bsd-new_1033.RULE +++ b/src/licensedcode/data/rules/bsd-new_1033.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + All contributions released under the `BSD 3-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1033.yml b/src/licensedcode/data/rules/bsd-new_1033.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1033.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1034.RULE b/src/licensedcode/data/rules/bsd-new_1034.RULE index 4ab5db0a17e..532810b8105 100644 --- a/src/licensedcode/data/rules/bsd-new_1034.RULE +++ b/src/licensedcode/data/rules/bsd-new_1034.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + All contributions released under the `BSD 3-Clause License `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1034.yml b/src/licensedcode/data/rules/bsd-new_1034.yml deleted file mode 100644 index c3e5d658602..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1034.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1035.RULE b/src/licensedcode/data/rules/bsd-new_1035.RULE index a95b41717f7..255350327de 100644 --- a/src/licensedcode/data/rules/bsd-new_1035.RULE +++ b/src/licensedcode/data/rules/bsd-new_1035.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: A truncated bsd-new missing parts of the disclaimer See in https://github.com/gweis/isodate/blob/27cebc56a0f6a900eeb897512879d545095f410b/src/isodate/duration.py +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1035.yml b/src/licensedcode/data/rules/bsd-new_1035.yml deleted file mode 100644 index 2c6852d6a2f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1035.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: A truncated bsd-new missing parts of the disclaimer See in https://github.com/gweis/isodate/blob/27cebc56a0f6a900eeb897512879d545095f410b/src/isodate/duration.py diff --git a/src/licensedcode/data/rules/bsd-new_1036.RULE b/src/licensedcode/data/rules/bsd-new_1036.RULE index 80dba106265..f633dde18ee 100644 --- a/src/licensedcode/data/rules/bsd-new_1036.RULE +++ b/src/licensedcode/data/rules/bsd-new_1036.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +notes: truncated text +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1036.yml b/src/licensedcode/data/rules/bsd-new_1036.yml deleted file mode 100644 index 735705fcc89..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1036.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 -notes: truncated text diff --git a/src/licensedcode/data/rules/bsd-new_1037.RULE b/src/licensedcode/data/rules/bsd-new_1037.RULE index 2b7379d79bb..6264a89cb6c 100644 --- a/src/licensedcode/data/rules/bsd-new_1037.RULE +++ b/src/licensedcode/data/rules/bsd-new_1037.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the BSD-3-Clause GENERIC license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1037.yml b/src/licensedcode/data/rules/bsd-new_1037.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1037.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1038.RULE b/src/licensedcode/data/rules/bsd-new_1038.RULE index c8322ef194a..754d7364487 100644 --- a/src/licensedcode/data/rules/bsd-new_1038.RULE +++ b/src/licensedcode/data/rules/bsd-new_1038.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/bsd-new_1038.yml b/src/licensedcode/data/rules/bsd-new_1038.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1038.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1039.RULE b/src/licensedcode/data/rules/bsd-new_1039.RULE index 0b7564b78be..39aecb6b032 100644 --- a/src/licensedcode/data/rules/bsd-new_1039.RULE +++ b/src/licensedcode/data/rules/bsd-new_1039.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + used under the BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1039.yml b/src/licensedcode/data/rules/bsd-new_1039.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1039.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_104.RULE b/src/licensedcode/data/rules/bsd-new_104.RULE index 75926c7511e..6dbe3605a21 100644 --- a/src/licensedcode/data/rules/bsd-new_104.RULE +++ b/src/licensedcode/data/rules/bsd-new_104.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + is distributed under these terms: * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_104.yml b/src/licensedcode/data/rules/bsd-new_104.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_104.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1040.RULE b/src/licensedcode/data/rules/bsd-new_1040.RULE index ab6b72a0dc4..6cd85285850 100644 --- a/src/licensedcode/data/rules/bsd-new_1040.RULE +++ b/src/licensedcode/data/rules/bsd-new_1040.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1040.yml b/src/licensedcode/data/rules/bsd-new_1040.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1040.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1041.RULE b/src/licensedcode/data/rules/bsd-new_1041.RULE index 04970921a6f..b1d5bee7b7c 100644 --- a/src/licensedcode/data/rules/bsd-new_1041.RULE +++ b/src/licensedcode/data/rules/bsd-new_1041.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + # # LICENSE TERMS # diff --git a/src/licensedcode/data/rules/bsd-new_1041.yml b/src/licensedcode/data/rules/bsd-new_1041.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1041.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1042.RULE b/src/licensedcode/data/rules/bsd-new_1042.RULE index 503b06ac388..b99465aba4c 100644 --- a/src/licensedcode/data/rules/bsd-new_1042.RULE +++ b/src/licensedcode/data/rules/bsd-new_1042.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1042.yml b/src/licensedcode/data/rules/bsd-new_1042.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1042.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1043.RULE b/src/licensedcode/data/rules/bsd-new_1043.RULE index 7754bb86746..d4ed9b9e6c2 100644 --- a/src/licensedcode/data/rules/bsd-new_1043.RULE +++ b/src/licensedcode/data/rules/bsd-new_1043.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + This file is distributed under the same license as the debian files of the p11-kit package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1043.yml b/src/licensedcode/data/rules/bsd-new_1043.yml deleted file mode 100644 index 01cbfcfa3a0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1043.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1044.RULE b/src/licensedcode/data/rules/bsd-new_1044.RULE index fe1fb3c2426..cf8fb25b183 100644 --- a/src/licensedcode/data/rules/bsd-new_1044.RULE +++ b/src/licensedcode/data/rules/bsd-new_1044.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 100 +--- + License: same-as-rest-of-p11kit This file is distributed under the same license as the p11-kit package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1044.yml b/src/licensedcode/data/rules/bsd-new_1044.yml deleted file mode 100644 index 9b72fc8912a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1044.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1045.RULE b/src/licensedcode/data/rules/bsd-new_1045.RULE index 8dffd9ea61a..27349f29a71 100644 --- a/src/licensedcode/data/rules/bsd-new_1045.RULE +++ b/src/licensedcode/data/rules/bsd-new_1045.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +minimum_coverage: 95 +notes: reorganized section with warranty placed at the top +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_1045.yml b/src/licensedcode/data/rules/bsd-new_1045.yml deleted file mode 100644 index 758687963c3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1045.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -minimum_coverage: 95 -notes: reorganized section with warranty placed at the top diff --git a/src/licensedcode/data/rules/bsd-new_1046.RULE b/src/licensedcode/data/rules/bsd-new_1046.RULE index 9952b5a99eb..797bf167528 100644 --- a/src/licensedcode/data/rules/bsd-new_1046.RULE +++ b/src/licensedcode/data/rules/bsd-new_1046.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/bsd-new_1046.yml b/src/licensedcode/data/rules/bsd-new_1046.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1046.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1047.RULE b/src/licensedcode/data/rules/bsd-new_1047.RULE index 948337167e5..7bb066639d1 100644 --- a/src/licensedcode/data/rules/bsd-new_1047.RULE +++ b/src/licensedcode/data/rules/bsd-new_1047.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/bsd-new_1047.yml b/src/licensedcode/data/rules/bsd-new_1047.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1047.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1048.RULE b/src/licensedcode/data/rules/bsd-new_1048.RULE index 9db6a494022..261ef2f7be6 100644 --- a/src/licensedcode/data/rules/bsd-new_1048.RULE +++ b/src/licensedcode/data/rules/bsd-new_1048.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1048.yml b/src/licensedcode/data/rules/bsd-new_1048.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1048.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1049.RULE b/src/licensedcode/data/rules/bsd-new_1049.RULE index a3a30249cfa..9b4f890632c 100644 --- a/src/licensedcode/data/rules/bsd-new_1049.RULE +++ b/src/licensedcode/data/rules/bsd-new_1049.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1049.yml b/src/licensedcode/data/rules/bsd-new_1049.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1049.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_105.RULE b/src/licensedcode/data/rules/bsd-new_105.RULE index ee23f19b395..7d629e4e3c4 100644 --- a/src/licensedcode/data/rules/bsd-new_105.RULE +++ b/src/licensedcode/data/rules/bsd-new_105.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_105.yml b/src/licensedcode/data/rules/bsd-new_105.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_105.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1050.RULE b/src/licensedcode/data/rules/bsd-new_1050.RULE index c11a7a789bd..d75f2c26d35 100644 --- a/src/licensedcode/data/rules/bsd-new_1050.RULE +++ b/src/licensedcode/data/rules/bsd-new_1050.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1050.yml b/src/licensedcode/data/rules/bsd-new_1050.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1050.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1051.RULE b/src/licensedcode/data/rules/bsd-new_1051.RULE index 54f247148ea..5297d234798 100644 --- a/src/licensedcode/data/rules/bsd-new_1051.RULE +++ b/src/licensedcode/data/rules/bsd-new_1051.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + distributed under the BSD licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1051.yml b/src/licensedcode/data/rules/bsd-new_1051.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1051.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1052.RULE b/src/licensedcode/data/rules/bsd-new_1052.RULE index ffcfa13e8c7..e4044c8e84f 100644 --- a/src/licensedcode/data/rules/bsd-new_1052.RULE +++ b/src/licensedcode/data/rules/bsd-new_1052.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. By downloading, copying, installing or using the software you agree to this license. diff --git a/src/licensedcode/data/rules/bsd-new_1052.yml b/src/licensedcode/data/rules/bsd-new_1052.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1052.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1053.RULE b/src/licensedcode/data/rules/bsd-new_1053.RULE index 504903389ab..4a3c30379ad 100644 --- a/src/licensedcode/data/rules/bsd-new_1053.RULE +++ b/src/licensedcode/data/rules/bsd-new_1053.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + code is licensed under the BSD 3-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1053.yml b/src/licensedcode/data/rules/bsd-new_1053.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1053.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1054.RULE b/src/licensedcode/data/rules/bsd-new_1054.RULE index fc3b811ba0a..b6175d5b52b 100644 --- a/src/licensedcode/data/rules/bsd-new_1054.RULE +++ b/src/licensedcode/data/rules/bsd-new_1054.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + A copy of the BSD 3-Clause License is included in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1054.yml b/src/licensedcode/data/rules/bsd-new_1054.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1054.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1055.RULE b/src/licensedcode/data/rules/bsd-new_1055.RULE index 1218715e47f..2b849ef60f9 100644 --- a/src/licensedcode/data/rules/bsd-new_1055.RULE +++ b/src/licensedcode/data/rules/bsd-new_1055.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + source code is licensed under the BSD 3-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1055.yml b/src/licensedcode/data/rules/bsd-new_1055.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1055.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1056.RULE b/src/licensedcode/data/rules/bsd-new_1056.RULE index 7bfc38c630b..42084c55733 100644 --- a/src/licensedcode/data/rules/bsd-new_1056.RULE +++ b/src/licensedcode/data/rules/bsd-new_1056.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + binary is licensed under the BSD 3-Clause License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1056.yml b/src/licensedcode/data/rules/bsd-new_1056.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1056.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1057.RULE b/src/licensedcode/data/rules/bsd-new_1057.RULE index d5d104cf1a1..c51bb58e138 100644 --- a/src/licensedcode/data/rules/bsd-new_1057.RULE +++ b/src/licensedcode/data/rules/bsd-new_1057.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under the BSD license. See BSD License for CAS Java Client . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1057.yml b/src/licensedcode/data/rules/bsd-new_1057.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1057.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1058.RULE b/src/licensedcode/data/rules/bsd-new_1058.RULE index 8d77e9eb8ef..d93e8865f45 100644 --- a/src/licensedcode/data/rules/bsd-new_1058.RULE +++ b/src/licensedcode/data/rules/bsd-new_1058.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + "Based on FreeBSD, which is BSD licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1058.yml b/src/licensedcode/data/rules/bsd-new_1058.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1058.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1059.RULE b/src/licensedcode/data/rules/bsd-new_1059.RULE index b9647a9ef84..77954db579f 100644 --- a/src/licensedcode/data/rules/bsd-new_1059.RULE +++ b/src/licensedcode/data/rules/bsd-new_1059.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + licensed under the BSD license. See BSD License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1059.yml b/src/licensedcode/data/rules/bsd-new_1059.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1059.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_106.RULE b/src/licensedcode/data/rules/bsd-new_106.RULE index fbb1a8293fc..005c3ce10cc 100644 --- a/src/licensedcode/data/rules/bsd-new_106.RULE +++ b/src/licensedcode/data/rules/bsd-new_106.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + uses a BSD license (DFSG-compatible) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_106.yml b/src/licensedcode/data/rules/bsd-new_106.yml deleted file mode 100644 index 3c43e265100..00000000000 --- a/src/licensedcode/data/rules/bsd-new_106.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1060.RULE b/src/licensedcode/data/rules/bsd-new_1060.RULE index c4df262be8e..1a786ceabea 100644 --- a/src/licensedcode/data/rules/bsd-new_1060.RULE +++ b/src/licensedcode/data/rules/bsd-new_1060.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + License terms appear in ekhtml . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1060.yml b/src/licensedcode/data/rules/bsd-new_1060.yml deleted file mode 100644 index 01cbfcfa3a0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1060.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1061.RULE b/src/licensedcode/data/rules/bsd-new_1061.RULE index c6b0889b31a..0d75d72485e 100644 --- a/src/licensedcode/data/rules/bsd-new_1061.RULE +++ b/src/licensedcode/data/rules/bsd-new_1061.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed under the BSD style license. See BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1061.yml b/src/licensedcode/data/rules/bsd-new_1061.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1061.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1062.RULE b/src/licensedcode/data/rules/bsd-new_1062.RULE index 36701cb28a6..a89d6bb9207 100644 --- a/src/licensedcode/data/rules/bsd-new_1062.RULE +++ b/src/licensedcode/data/rules/bsd-new_1062.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed under the new BSD license. See BSD License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1062.yml b/src/licensedcode/data/rules/bsd-new_1062.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1062.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1063.RULE b/src/licensedcode/data/rules/bsd-new_1063.RULE index 2cae387480d..05f2672c9cf 100644 --- a/src/licensedcode/data/rules/bsd-new_1063.RULE +++ b/src/licensedcode/data/rules/bsd-new_1063.RULE @@ -1,3 +1,8 @@ +--- +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: . diff --git a/src/licensedcode/data/rules/bsd-new_1063.yml b/src/licensedcode/data/rules/bsd-new_1063.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1063.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1064.RULE b/src/licensedcode/data/rules/bsd-new_1064.RULE index 456b037818d..eb586c2a631 100644 --- a/src/licensedcode/data/rules/bsd-new_1064.RULE +++ b/src/licensedcode/data/rules/bsd-new_1064.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1064.yml b/src/licensedcode/data/rules/bsd-new_1064.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1064.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1065.RULE b/src/licensedcode/data/rules/bsd-new_1065.RULE index 5c2b372a0fa..8e59c1b2e3f 100644 --- a/src/licensedcode/data/rules/bsd-new_1065.RULE +++ b/src/licensedcode/data/rules/bsd-new_1065.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + is licensed under the BSD-like license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1065.yml b/src/licensedcode/data/rules/bsd-new_1065.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1065.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1066.RULE b/src/licensedcode/data/rules/bsd-new_1066.RULE index 04f67bea791..1182155074b 100644 --- a/src/licensedcode/data/rules/bsd-new_1066.RULE +++ b/src/licensedcode/data/rules/bsd-new_1066.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/bsd-new_1066.yml b/src/licensedcode/data/rules/bsd-new_1066.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1066.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1067.RULE b/src/licensedcode/data/rules/bsd-new_1067.RULE index feec284bfda..080aed300a1 100644 --- a/src/licensedcode/data/rules/bsd-new_1067.RULE +++ b/src/licensedcode/data/rules/bsd-new_1067.RULE @@ -1,3 +1,8 @@ +--- +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: . diff --git a/src/licensedcode/data/rules/bsd-new_1067.yml b/src/licensedcode/data/rules/bsd-new_1067.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1067.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1068.RULE b/src/licensedcode/data/rules/bsd-new_1068.RULE index b20c14255a2..1dfe9421aa2 100644 --- a/src/licensedcode/data/rules/bsd-new_1068.RULE +++ b/src/licensedcode/data/rules/bsd-new_1068.RULE @@ -1,3 +1,8 @@ +--- +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: . diff --git a/src/licensedcode/data/rules/bsd-new_1068.yml b/src/licensedcode/data/rules/bsd-new_1068.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1068.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1069.RULE b/src/licensedcode/data/rules/bsd-new_1069.RULE index b25f177a2d3..781a05df787 100644 --- a/src/licensedcode/data/rules/bsd-new_1069.RULE +++ b/src/licensedcode/data/rules/bsd-new_1069.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1069.yml b/src/licensedcode/data/rules/bsd-new_1069.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1069.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_107.RULE b/src/licensedcode/data/rules/bsd-new_107.RULE index bd8c33cae36..161e7179777 100644 --- a/src/licensedcode/data/rules/bsd-new_107.RULE +++ b/src/licensedcode/data/rules/bsd-new_107.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + BSD: The BSD license applies to all files in the directory @@ -23,5 +28,4 @@ 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. - + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_107.yml b/src/licensedcode/data/rules/bsd-new_107.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_107.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1070.RULE b/src/licensedcode/data/rules/bsd-new_1070.RULE index 172513de748..691144d139b 100644 --- a/src/licensedcode/data/rules/bsd-new_1070.RULE +++ b/src/licensedcode/data/rules/bsd-new_1070.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Redistribution and use in source and binary forms are permitted provided that the following conditions are met: 1. Redistribution of source code must retain the above copyright diff --git a/src/licensedcode/data/rules/bsd-new_1070.yml b/src/licensedcode/data/rules/bsd-new_1070.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1070.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1071.RULE b/src/licensedcode/data/rules/bsd-new_1071.RULE index ff678a56632..ba82ad0302f 100644 --- a/src/licensedcode/data/rules/bsd-new_1071.RULE +++ b/src/licensedcode/data/rules/bsd-new_1071.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1071.yml b/src/licensedcode/data/rules/bsd-new_1071.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1071.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1072.RULE b/src/licensedcode/data/rules/bsd-new_1072.RULE index 6950354ff2b..21aba00d23f 100644 --- a/src/licensedcode/data/rules/bsd-new_1072.RULE +++ b/src/licensedcode/data/rules/bsd-new_1072.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1072.yml b/src/licensedcode/data/rules/bsd-new_1072.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1072.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1073.RULE b/src/licensedcode/data/rules/bsd-new_1073.RULE index 524e838a3ef..c53e1b44284 100644 --- a/src/licensedcode/data/rules/bsd-new_1073.RULE +++ b/src/licensedcode/data/rules/bsd-new_1073.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 99 +notes: truncated text +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1073.yml b/src/licensedcode/data/rules/bsd-new_1073.yml deleted file mode 100644 index 4e619ba248d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1073.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 99 -notes: truncated text diff --git a/src/licensedcode/data/rules/bsd-new_1074.RULE b/src/licensedcode/data/rules/bsd-new_1074.RULE index 1a1f7817dfa..68adc962f5f 100644 --- a/src/licensedcode/data/rules/bsd-new_1074.RULE +++ b/src/licensedcode/data/rules/bsd-new_1074.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD 3 Clause License (BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1074.yml b/src/licensedcode/data/rules/bsd-new_1074.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1074.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1075.RULE b/src/licensedcode/data/rules/bsd-new_1075.RULE index a3b481ad204..196c41d9838 100644 --- a/src/licensedcode/data/rules/bsd-new_1075.RULE +++ b/src/licensedcode/data/rules/bsd-new_1075.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + you can redistribute it and/or modify # it under the terms of the Revised BSD License; see LICENSE file for # more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1075.yml b/src/licensedcode/data/rules/bsd-new_1075.yml deleted file mode 100644 index 46cf842e29b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1075.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1076.RULE b/src/licensedcode/data/rules/bsd-new_1076.RULE index f365896a43f..8d04970d109 100644 --- a/src/licensedcode/data/rules/bsd-new_1076.RULE +++ b/src/licensedcode/data/rules/bsd-new_1076.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + freely distributable under the terms of a new BSD licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1076.yml b/src/licensedcode/data/rules/bsd-new_1076.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1076.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1077.RULE b/src/licensedcode/data/rules/bsd-new_1077.RULE index dc66fcdfe67..53f4050b612 100644 --- a/src/licensedcode/data/rules/bsd-new_1077.RULE +++ b/src/licensedcode/data/rules/bsd-new_1077.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + available under the terms of the BSD 3-Clause License. Please check the LICENSE file for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1077.yml b/src/licensedcode/data/rules/bsd-new_1077.yml deleted file mode 100644 index 46cf842e29b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1077.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1078.RULE b/src/licensedcode/data/rules/bsd-new_1078.RULE index a46c4bd5bd8..64151df0352 100644 --- a/src/licensedcode/data/rules/bsd-new_1078.RULE +++ b/src/licensedcode/data/rules/bsd-new_1078.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING.txt +--- + # Distributed under the terms of the {{Modified BSD License}}. # # The full license is in the file {{COPYING.txt}}, distributed with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1078.yml b/src/licensedcode/data/rules/bsd-new_1078.yml deleted file mode 100644 index 79878cc6800..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1078.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING.txt diff --git a/src/licensedcode/data/rules/bsd-new_1079.RULE b/src/licensedcode/data/rules/bsd-new_1079.RULE index 6bf64a89504..b30e1b9649b 100644 --- a/src/licensedcode/data/rules/bsd-new_1079.RULE +++ b/src/licensedcode/data/rules/bsd-new_1079.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.txt +--- + distributed under a BSD license; see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1079.yml b/src/licensedcode/data/rules/bsd-new_1079.yml deleted file mode 100644 index f8fd8d4728c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1079.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_108.RULE b/src/licensedcode/data/rules/bsd-new_108.RULE index 53baa6d1d04..ed201ffd70e 100644 --- a/src/licensedcode/data/rules/bsd-new_108.RULE +++ b/src/licensedcode/data/rules/bsd-new_108.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 100 +referenced_filenames: + - /usr/share/common-licenses/BSD +--- + Full text of 3-clause BSD license can be found on Debian systems in /usr/share/common-licenses/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_108.yml b/src/licensedcode/data/rules/bsd-new_108.yml deleted file mode 100644 index 4b06fc8e7b1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 100 -referenced_filenames: - - /usr/share/common-licenses/BSD diff --git a/src/licensedcode/data/rules/bsd-new_1080.RULE b/src/licensedcode/data/rules/bsd-new_1080.RULE index af6c73a06e9..1aaa7efc4f2 100644 --- a/src/licensedcode/data/rules/bsd-new_1080.RULE +++ b/src/licensedcode/data/rules/bsd-new_1080.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://developer.yahoo.com/yui/license.html +--- + Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1080.yml b/src/licensedcode/data/rules/bsd-new_1080.yml deleted file mode 100644 index 6e3dbcab771..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1080.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://developer.yahoo.com/yui/license.html diff --git a/src/licensedcode/data/rules/bsd-new_1081.RULE b/src/licensedcode/data/rules/bsd-new_1081.RULE index 7d9ffd18952..21d1d3ddae7 100644 --- a/src/licensedcode/data/rules/bsd-new_1081.RULE +++ b/src/licensedcode/data/rules/bsd-new_1081.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + new, original code should be BSD licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1081.yml b/src/licensedcode/data/rules/bsd-new_1081.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1081.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1082.RULE b/src/licensedcode/data/rules/bsd-new_1082.RULE index 8fe9bb2c814..2c5c6b16ce5 100644 --- a/src/licensedcode/data/rules/bsd-new_1082.RULE +++ b/src/licensedcode/data/rules/bsd-new_1082.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD Three Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1082.yml b/src/licensedcode/data/rules/bsd-new_1082.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1082.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1083.RULE b/src/licensedcode/data/rules/bsd-new_1083.RULE index a13dd2916b8..f04995b0189 100644 --- a/src/licensedcode/data/rules/bsd-new_1083.RULE +++ b/src/licensedcode/data/rules/bsd-new_1083.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +--- + BSD 3-clause "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1083.yml b/src/licensedcode/data/rules/bsd-new_1083.yml deleted file mode 100644 index be882a0c3ec..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1083.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1084.RULE b/src/licensedcode/data/rules/bsd-new_1084.RULE index 153f84ad0d8..7c947b50ab1 100644 --- a/src/licensedcode/data/rules/bsd-new_1084.RULE +++ b/src/licensedcode/data/rules/bsd-new_1084.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 3-Clause "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1084.yml b/src/licensedcode/data/rules/bsd-new_1084.yml deleted file mode 100644 index 165320c795f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1084.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-new_1085.RULE b/src/licensedcode/data/rules/bsd-new_1085.RULE index d85306752b5..d57c77daa4c 100644 --- a/src/licensedcode/data/rules/bsd-new_1085.RULE +++ b/src/licensedcode/data/rules/bsd-new_1085.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 3-Clause "New" or "Revised" License BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1085.yml b/src/licensedcode/data/rules/bsd-new_1085.yml deleted file mode 100644 index 165320c795f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1085.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-new_1086.RULE b/src/licensedcode/data/rules/bsd-new_1086.RULE index b7002e7ae70..fdf6f0fd067 100644 --- a/src/licensedcode/data/rules/bsd-new_1086.RULE +++ b/src/licensedcode/data/rules/bsd-new_1086.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['3 CLAUSE', 'BSD-3-Clause'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1086.yml b/src/licensedcode/data/rules/bsd-new_1086.yml deleted file mode 100644 index e94898f6c96..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1086.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1087.RULE b/src/licensedcode/data/rules/bsd-new_1087.RULE index 2f792dc3713..d675a99556d 100644 --- a/src/licensedcode/data/rules/bsd-new_1087.RULE +++ b/src/licensedcode/data/rules/bsd-new_1087.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'BSD3': 'BSD-3-Clause', \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1087.yml b/src/licensedcode/data/rules/bsd-new_1087.yml deleted file mode 100644 index e94898f6c96..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1087.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1088.RULE b/src/licensedcode/data/rules/bsd-new_1088.RULE index 5888ec25af8..e9f0a987830 100644 --- a/src/licensedcode/data/rules/bsd-new_1088.RULE +++ b/src/licensedcode/data/rules/bsd-new_1088.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'BSD3-Clause': 'BSD-3-Clause', \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1088.yml b/src/licensedcode/data/rules/bsd-new_1088.yml deleted file mode 100644 index e94898f6c96..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1088.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1089.RULE b/src/licensedcode/data/rules/bsd-new_1089.RULE index b11283c8c0f..60fae3a72f4 100644 --- a/src/licensedcode/data/rules/bsd-new_1089.RULE +++ b/src/licensedcode/data/rules/bsd-new_1089.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Standard 3-clause BSD': 'BSD-3-Clause', \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1089.yml b/src/licensedcode/data/rules/bsd-new_1089.yml deleted file mode 100644 index e94898f6c96..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1089.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_109.RULE b/src/licensedcode/data/rules/bsd-new_109.RULE index ac5eaed9d83..f582fe5c55d 100644 --- a/src/licensedcode/data/rules/bsd-new_109.RULE +++ b/src/licensedcode/data/rules/bsd-new_109.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + You can use, modify, distribute and sell this package under the terms of BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_109.yml b/src/licensedcode/data/rules/bsd-new_109.yml deleted file mode 100644 index 3c43e265100..00000000000 --- a/src/licensedcode/data/rules/bsd-new_109.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1090.RULE b/src/licensedcode/data/rules/bsd-new_1090.RULE index 5941c105a72..3c31e4ace74 100644 --- a/src/licensedcode/data/rules/bsd-new_1090.RULE +++ b/src/licensedcode/data/rules/bsd-new_1090.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: damaged text +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_1090.yml b/src/licensedcode/data/rules/bsd-new_1090.yml deleted file mode 100644 index 19ba78d8a3b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1090.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: damaged text diff --git a/src/licensedcode/data/rules/bsd-new_1091.RULE b/src/licensedcode/data/rules/bsd-new_1091.RULE index 01343ef44e2..d455f712375 100644 --- a/src/licensedcode/data/rules/bsd-new_1091.RULE +++ b/src/licensedcode/data/rules/bsd-new_1091.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: damaged text +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_1091.yml b/src/licensedcode/data/rules/bsd-new_1091.yml deleted file mode 100644 index 19ba78d8a3b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1091.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: damaged text diff --git a/src/licensedcode/data/rules/bsd-new_1092.RULE b/src/licensedcode/data/rules/bsd-new_1092.RULE index f0c24097818..38df6035b90 100644 --- a/src/licensedcode/data/rules/bsd-new_1092.RULE +++ b/src/licensedcode/data/rules/bsd-new_1092.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: damaged text +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_1092.yml b/src/licensedcode/data/rules/bsd-new_1092.yml deleted file mode 100644 index 19ba78d8a3b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1092.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: damaged text diff --git a/src/licensedcode/data/rules/bsd-new_1093.RULE b/src/licensedcode/data/rules/bsd-new_1093.RULE index e43787ce8c3..3b26243f8d6 100644 --- a/src/licensedcode/data/rules/bsd-new_1093.RULE +++ b/src/licensedcode/data/rules/bsd-new_1093.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: damaged text +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_1093.yml b/src/licensedcode/data/rules/bsd-new_1093.yml deleted file mode 100644 index 19ba78d8a3b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1093.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: damaged text diff --git a/src/licensedcode/data/rules/bsd-new_1094.RULE b/src/licensedcode/data/rules/bsd-new_1094.RULE index e4ba1f567f2..e26c604fbfc 100644 --- a/src/licensedcode/data/rules/bsd-new_1094.RULE +++ b/src/licensedcode/data/rules/bsd-new_1094.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: damaged text +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_1094.yml b/src/licensedcode/data/rules/bsd-new_1094.yml deleted file mode 100644 index 19ba78d8a3b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1094.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: damaged text diff --git a/src/licensedcode/data/rules/bsd-new_1095.RULE b/src/licensedcode/data/rules/bsd-new_1095.RULE index 1e6e3e287b7..15609cd627f 100644 --- a/src/licensedcode/data/rules/bsd-new_1095.RULE +++ b/src/licensedcode/data/rules/bsd-new_1095.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + License This project is under BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1095.yml b/src/licensedcode/data/rules/bsd-new_1095.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1095.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1096.RULE b/src/licensedcode/data/rules/bsd-new_1096.RULE index 2d677d9065f..6f58fb1a376 100644 --- a/src/licensedcode/data/rules/bsd-new_1096.RULE +++ b/src/licensedcode/data/rules/bsd-new_1096.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1096.yml b/src/licensedcode/data/rules/bsd-new_1096.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1096.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1097.RULE b/src/licensedcode/data/rules/bsd-new_1097.RULE index a82099a6767..352d3aedf86 100644 --- a/src/licensedcode/data/rules/bsd-new_1097.RULE +++ b/src/licensedcode/data/rules/bsd-new_1097.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1097.yml b/src/licensedcode/data/rules/bsd-new_1097.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1097.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1098.RULE b/src/licensedcode/data/rules/bsd-new_1098.RULE index 164cf092fb3..e450dbf16ac 100644 --- a/src/licensedcode/data/rules/bsd-new_1098.RULE +++ b/src/licensedcode/data/rules/bsd-new_1098.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + available under a "3-clause BSD" license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1098.yml b/src/licensedcode/data/rules/bsd-new_1098.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1098.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1099.RULE b/src/licensedcode/data/rules/bsd-new_1099.RULE index 6305ef30c58..502b465e180 100644 --- a/src/licensedcode/data/rules/bsd-new_1099.RULE +++ b/src/licensedcode/data/rules/bsd-new_1099.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This library is released under BSD Clause 3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1099.yml b/src/licensedcode/data/rules/bsd-new_1099.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1099.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_11.RULE b/src/licensedcode/data/rules/bsd-new_11.RULE index c776ff53570..fa73ddaa979 100644 --- a/src/licensedcode/data/rules/bsd-new_11.RULE +++ b/src/licensedcode/data/rules/bsd-new_11.RULE @@ -1 +1,7 @@ -This software is distributed under the "modified BSD licence". +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +This software is distributed under the "modified BSD licence". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_11.yml b/src/licensedcode/data/rules/bsd-new_11.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_110.RULE b/src/licensedcode/data/rules/bsd-new_110.RULE index 6c374deacf9..a8f5865557f 100644 --- a/src/licensedcode/data/rules/bsd-new_110.RULE +++ b/src/licensedcode/data/rules/bsd-new_110.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_110.yml b/src/licensedcode/data/rules/bsd-new_110.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_110.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1100.RULE b/src/licensedcode/data/rules/bsd-new_1100.RULE index 158a17ce452..cd87eff42e1 100644 --- a/src/licensedcode/data/rules/bsd-new_1100.RULE +++ b/src/licensedcode/data/rules/bsd-new_1100.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This is free software; you can redistribute it and/or # modify it under the terms of the Revised BSD License; see LICENSE # file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1100.yml b/src/licensedcode/data/rules/bsd-new_1100.yml deleted file mode 100644 index 46cf842e29b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1100.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1101.RULE b/src/licensedcode/data/rules/bsd-new_1101.RULE index 45e81dc1914..0da856fa133 100644 --- a/src/licensedcode/data/rules/bsd-new_1101.RULE +++ b/src/licensedcode/data/rules/bsd-new_1101.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + free software; you can redistribute it and/or # modify it under the terms of the Revised BSD License; see LICENSE # file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1101.yml b/src/licensedcode/data/rules/bsd-new_1101.yml deleted file mode 100644 index 46cf842e29b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1101.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1102.RULE b/src/licensedcode/data/rules/bsd-new_1102.RULE index ddc5252d460..a9439c374e0 100644 --- a/src/licensedcode/data/rules/bsd-new_1102.RULE +++ b/src/licensedcode/data/rules/bsd-new_1102.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +notes: https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/README.version +--- + License: BSD like License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1102.yml b/src/licensedcode/data/rules/bsd-new_1102.yml deleted file mode 100644 index 8c3a5fe892e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1102.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 -notes: https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/README.version diff --git a/src/licensedcode/data/rules/bsd-new_1103.RULE b/src/licensedcode/data/rules/bsd-new_1103.RULE index 7e32c6d480e..6202da3e073 100644 --- a/src/licensedcode/data/rules/bsd-new_1103.RULE +++ b/src/licensedcode/data/rules/bsd-new_1103.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1103.yml b/src/licensedcode/data/rules/bsd-new_1103.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1103.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1104.RULE b/src/licensedcode/data/rules/bsd-new_1104.RULE index ef6dc3c21bf..820d8c7b051 100644 --- a/src/licensedcode/data/rules/bsd-new_1104.RULE +++ b/src/licensedcode/data/rules/bsd-new_1104.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1104.yml b/src/licensedcode/data/rules/bsd-new_1104.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1104.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1105.RULE b/src/licensedcode/data/rules/bsd-new_1105.RULE index 708cfac2cbf..53376f08414 100644 --- a/src/licensedcode/data/rules/bsd-new_1105.RULE +++ b/src/licensedcode/data/rules/bsd-new_1105.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + {{THE "BSD" LICENCE}} Redistribution and use in source and binary forms, with or without @@ -25,4 +30,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1105.yml b/src/licensedcode/data/rules/bsd-new_1105.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1105.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1106.RULE b/src/licensedcode/data/rules/bsd-new_1106.RULE index 8dc30a1ca39..3454eccb245 100644 --- a/src/licensedcode/data/rules/bsd-new_1106.RULE +++ b/src/licensedcode/data/rules/bsd-new_1106.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/BSD_licenses#3-clause_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1106.yml b/src/licensedcode/data/rules/bsd-new_1106.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1107.RULE b/src/licensedcode/data/rules/bsd-new_1107.RULE index abb59ca5399..194450c7fd2 100644 --- a/src/licensedcode/data/rules/bsd-new_1107.RULE +++ b/src/licensedcode/data/rules/bsd-new_1107.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 98 +--- + License: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/bsd-new_1107.yml b/src/licensedcode/data/rules/bsd-new_1107.yml deleted file mode 100644 index 6d85ccc491d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/bsd-new_1108.RULE b/src/licensedcode/data/rules/bsd-new_1108.RULE index 62c9cee34ed..b66f6926cc5 100644 --- a/src/licensedcode/data/rules/bsd-new_1108.RULE +++ b/src/licensedcode/data/rules/bsd-new_1108.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 98 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1108.yml b/src/licensedcode/data/rules/bsd-new_1108.yml deleted file mode 100644 index 6d85ccc491d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/bsd-new_1109.RULE b/src/licensedcode/data/rules/bsd-new_1109.RULE index acfa4aa21cd..f81493813d6 100644 --- a/src/licensedcode/data/rules/bsd-new_1109.RULE +++ b/src/licensedcode/data/rules/bsd-new_1109.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Licensed openly under the BSD 3 Clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1109.yml b/src/licensedcode/data/rules/bsd-new_1109.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_111.RULE b/src/licensedcode/data/rules/bsd-new_111.RULE index 5bffce087b3..b61ac1ae3c5 100644 --- a/src/licensedcode/data/rules/bsd-new_111.RULE +++ b/src/licensedcode/data/rules/bsd-new_111.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + are also licensed under the 3-clause BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_111.yml b/src/licensedcode/data/rules/bsd-new_111.yml deleted file mode 100644 index e5227476bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_111.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1110.RULE b/src/licensedcode/data/rules/bsd-new_1110.RULE index 056264eaedc..1f9626c6d7e 100644 --- a/src/licensedcode/data/rules/bsd-new_1110.RULE +++ b/src/licensedcode/data/rules/bsd-new_1110.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + {{Source Code License Redistribution and use in source and binary forms}}, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1110.yml b/src/licensedcode/data/rules/bsd-new_1110.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1110.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1111.RULE b/src/licensedcode/data/rules/bsd-new_1111.RULE index a12c42d7485..164c01d8d41 100644 --- a/src/licensedcode/data/rules/bsd-new_1111.RULE +++ b/src/licensedcode/data/rules/bsd-new_1111.RULE @@ -1,3 +1,8 @@ +--- +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. diff --git a/src/licensedcode/data/rules/bsd-new_1111.yml b/src/licensedcode/data/rules/bsd-new_1111.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1111.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1112.RULE b/src/licensedcode/data/rules/bsd-new_1112.RULE index 7b87a2825c8..cab764c76c0 100644 --- a/src/licensedcode/data/rules/bsd-new_1112.RULE +++ b/src/licensedcode/data/rules/bsd-new_1112.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Software {{License Redistribution and use in source and binary forms}}, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1112.yml b/src/licensedcode/data/rules/bsd-new_1112.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1112.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1113.RULE b/src/licensedcode/data/rules/bsd-new_1113.RULE index fa1a912573b..448aa7891c2 100644 --- a/src/licensedcode/data/rules/bsd-new_1113.RULE +++ b/src/licensedcode/data/rules/bsd-new_1113.RULE @@ -1,3 +1,8 @@ +--- +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. diff --git a/src/licensedcode/data/rules/bsd-new_1113.yml b/src/licensedcode/data/rules/bsd-new_1113.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1113.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1114.RULE b/src/licensedcode/data/rules/bsd-new_1114.RULE index 7e45f1ba995..df501905bf5 100644 --- a/src/licensedcode/data/rules/bsd-new_1114.RULE +++ b/src/licensedcode/data/rules/bsd-new_1114.RULE @@ -1,3 +1,8 @@ +--- +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. diff --git a/src/licensedcode/data/rules/bsd-new_1114.yml b/src/licensedcode/data/rules/bsd-new_1114.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1114.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1115.RULE b/src/licensedcode/data/rules/bsd-new_1115.RULE index 42002d30dde..c0d2e513f8d 100644 --- a/src/licensedcode/data/rules/bsd-new_1115.RULE +++ b/src/licensedcode/data/rules/bsd-new_1115.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed under a BSD-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1115.yml b/src/licensedcode/data/rules/bsd-new_1115.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1116.RULE b/src/licensedcode/data/rules/bsd-new_1116.RULE index 9bb9e27fbec..081e4ef607c 100644 --- a/src/licensedcode/data/rules/bsd-new_1116.RULE +++ b/src/licensedcode/data/rules/bsd-new_1116.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + For license terms, see BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1116.yml b/src/licensedcode/data/rules/bsd-new_1116.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1117.RULE b/src/licensedcode/data/rules/bsd-new_1117.RULE index b1a97c02dae..00637440a7a 100644 --- a/src/licensedcode/data/rules/bsd-new_1117.RULE +++ b/src/licensedcode/data/rules/bsd-new_1117.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under the BSD License for PostgreSQL JDBC Driver . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1117.yml b/src/licensedcode/data/rules/bsd-new_1117.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1118.RULE b/src/licensedcode/data/rules/bsd-new_1118.RULE index bcdf2d46046..02ce25c19f1 100644 --- a/src/licensedcode/data/rules/bsd-new_1118.RULE +++ b/src/licensedcode/data/rules/bsd-new_1118.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + License terms appear in {{TCMalloc License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1118.yml b/src/licensedcode/data/rules/bsd-new_1118.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1119.RULE b/src/licensedcode/data/rules/bsd-new_1119.RULE index f289c74bff5..6fed1fbca35 100644 --- a/src/licensedcode/data/rules/bsd-new_1119.RULE +++ b/src/licensedcode/data/rules/bsd-new_1119.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + License terms appear in {{Yahoo! UI Library License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1119.yml b/src/licensedcode/data/rules/bsd-new_1119.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_112.RULE b/src/licensedcode/data/rules/bsd-new_112.RULE index 17a79f5ab8f..8a3a9a96c8f 100644 --- a/src/licensedcode/data/rules/bsd-new_112.RULE +++ b/src/licensedcode/data/rules/bsd-new_112.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_112.yml b/src/licensedcode/data/rules/bsd-new_112.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_112.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1120.RULE b/src/licensedcode/data/rules/bsd-new_1120.RULE index ca4fa99d4da..109d4160782 100644 --- a/src/licensedcode/data/rules/bsd-new_1120.RULE +++ b/src/licensedcode/data/rules/bsd-new_1120.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed under the BSD software license. See BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1120.yml b/src/licensedcode/data/rules/bsd-new_1120.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1121.RULE b/src/licensedcode/data/rules/bsd-new_1121.RULE index f6bcf7368cc..61ebbaec5fc 100644 --- a/src/licensedcode/data/rules/bsd-new_1121.RULE +++ b/src/licensedcode/data/rules/bsd-new_1121.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_1121.yml b/src/licensedcode/data/rules/bsd-new_1121.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1121.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1122.RULE b/src/licensedcode/data/rules/bsd-new_1122.RULE index 7f8a95726c6..2c5725577ff 100644 --- a/src/licensedcode/data/rules/bsd-new_1122.RULE +++ b/src/licensedcode/data/rules/bsd-new_1122.RULE @@ -1,3 +1,8 @@ +--- +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. diff --git a/src/licensedcode/data/rules/bsd-new_1122.yml b/src/licensedcode/data/rules/bsd-new_1122.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1122.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1123.RULE b/src/licensedcode/data/rules/bsd-new_1123.RULE index 10f224122c1..849c46d7957 100644 --- a/src/licensedcode/data/rules/bsd-new_1123.RULE +++ b/src/licensedcode/data/rules/bsd-new_1123.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + distributed under a BSD style open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1123.yml b/src/licensedcode/data/rules/bsd-new_1123.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1124.RULE b/src/licensedcode/data/rules/bsd-new_1124.RULE index ace1f8e9d82..b579f641eed 100644 --- a/src/licensedcode/data/rules/bsd-new_1124.RULE +++ b/src/licensedcode/data/rules/bsd-new_1124.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD License for PostgreSQL JDBC Driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1124.yml b/src/licensedcode/data/rules/bsd-new_1124.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1125.RULE b/src/licensedcode/data/rules/bsd-new_1125.RULE index 344fcff50fc..ca83bb6e9a8 100644 --- a/src/licensedcode/data/rules/bsd-new_1125.RULE +++ b/src/licensedcode/data/rules/bsd-new_1125.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 99 +--- + Open source software, made available under {{a BSD license}}. 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 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_1125.yml b/src/licensedcode/data/rules/bsd-new_1125.yml deleted file mode 100644 index 459840db079..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1126.RULE b/src/licensedcode/data/rules/bsd-new_1126.RULE index eb2207413ad..8806b9cb22d 100644 --- a/src/licensedcode/data/rules/bsd-new_1126.RULE +++ b/src/licensedcode/data/rules/bsd-new_1126.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + open source software, made available under a BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1126.yml b/src/licensedcode/data/rules/bsd-new_1126.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1127.RULE b/src/licensedcode/data/rules/bsd-new_1127.RULE index 68928cee738..791fad4fbe5 100644 --- a/src/licensedcode/data/rules/bsd-new_1127.RULE +++ b/src/licensedcode/data/rules/bsd-new_1127.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + made available under a BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1127.yml b/src/licensedcode/data/rules/bsd-new_1127.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1128.RULE b/src/licensedcode/data/rules/bsd-new_1128.RULE index 366f410a5df..0ea74136e50 100644 --- a/src/licensedcode/data/rules/bsd-new_1128.RULE +++ b/src/licensedcode/data/rules/bsd-new_1128.RULE @@ -1 +1,6 @@ +--- +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 the name of Yahoo! Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Yahoo! Inc. 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_1128.yml b/src/licensedcode/data/rules/bsd-new_1128.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1128.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1129.RULE b/src/licensedcode/data/rules/bsd-new_1129.RULE index 3a07c06a650..27cd4e6f6ed 100644 --- a/src/licensedcode/data/rules/bsd-new_1129.RULE +++ b/src/licensedcode/data/rules/bsd-new_1129.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: minor variant from RICE. See https://web.archive.org/web/20100607100320/http://www.caam.rice.edu/software/ARPACK/RiceBSD.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1129.yml b/src/licensedcode/data/rules/bsd-new_1129.yml deleted file mode 100644 index fe1df83f0a1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: minor variant from RICE. See https://web.archive.org/web/20100607100320/http://www.caam.rice.edu/software/ARPACK/RiceBSD.txt diff --git a/src/licensedcode/data/rules/bsd-new_113.RULE b/src/licensedcode/data/rules/bsd-new_113.RULE index fdbf5a8d88b..199d31b6305 100644 --- a/src/licensedcode/data/rules/bsd-new_113.RULE +++ b/src/licensedcode/data/rules/bsd-new_113.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_113.yml b/src/licensedcode/data/rules/bsd-new_113.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_113.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1130.RULE b/src/licensedcode/data/rules/bsd-new_1130.RULE index e272adae2a8..a6d0fc74fe9 100644 --- a/src/licensedcode/data/rules/bsd-new_1130.RULE +++ b/src/licensedcode/data/rules/bsd-new_1130.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/BSD_licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1130.yml b/src/licensedcode/data/rules/bsd-new_1130.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1131.RULE b/src/licensedcode/data/rules/bsd-new_1131.RULE index 7f7138b24fb..d8bc2cd8f71 100644 --- a/src/licensedcode/data/rules/bsd-new_1131.RULE +++ b/src/licensedcode/data/rules/bsd-new_1131.RULE @@ -1 +1,6 @@ +--- +license_expression: bsd-new +is_license_reference: yes +--- + BSD_licenses#3-clause_license_(%22BSD_License_2.0%22,_%22Revised_BSD_License%22,_%22New_BSD_License%22,_or_%22Modified_BSD_License%22) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1131.yml b/src/licensedcode/data/rules/bsd-new_1131.yml deleted file mode 100644 index f19629f4b37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1131.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes diff --git a/src/licensedcode/data/rules/bsd-new_1132.RULE b/src/licensedcode/data/rules/bsd-new_1132.RULE index dd1bb779abd..e5397b2f503 100644 --- a/src/licensedcode/data/rules/bsd-new_1132.RULE +++ b/src/licensedcode/data/rules/bsd-new_1132.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD_licenses#3-clause_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1132.yml b/src/licensedcode/data/rules/bsd-new_1132.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1133.RULE b/src/licensedcode/data/rules/bsd-new_1133.RULE index 944a49e1e99..96a1209c8e2 100644 --- a/src/licensedcode/data/rules/bsd-new_1133.RULE +++ b/src/licensedcode/data/rules/bsd-new_1133.RULE @@ -1 +1,6 @@ +--- +license_expression: bsd-new +is_license_reference: yes +--- + (%22BSD_License_2.0%22,_%22Revised_BSD_License%22,_%22New_BSD_License%22,_or_%22Modified_BSD_License%22) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1133.yml b/src/licensedcode/data/rules/bsd-new_1133.yml deleted file mode 100644 index f19629f4b37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1133.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes diff --git a/src/licensedcode/data/rules/bsd-new_1134.RULE b/src/licensedcode/data/rules/bsd-new_1134.RULE index 051f788e198..4ded4b7bdec 100644 --- a/src/licensedcode/data/rules/bsd-new_1134.RULE +++ b/src/licensedcode/data/rules/bsd-new_1134.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + New BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1134.yml b/src/licensedcode/data/rules/bsd-new_1134.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1135.RULE b/src/licensedcode/data/rules/bsd-new_1135.RULE index 06547dd9017..f153fb14e80 100644 --- a/src/licensedcode/data/rules/bsd-new_1135.RULE +++ b/src/licensedcode/data/rules/bsd-new_1135.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + NewBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1135.yml b/src/licensedcode/data/rules/bsd-new_1135.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1136.RULE b/src/licensedcode/data/rules/bsd-new_1136.RULE index 41065610ff7..9cf74a48839 100644 --- a/src/licensedcode/data/rules/bsd-new_1136.RULE +++ b/src/licensedcode/data/rules/bsd-new_1136.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + "license": { "name": "New BSD", "url": "http://opensource.org/licenses/BSD-3-Clause" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1136.yml b/src/licensedcode/data/rules/bsd-new_1136.yml deleted file mode 100644 index 08679dbeaa6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1136.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1137.RULE b/src/licensedcode/data/rules/bsd-new_1137.RULE index 96355cc8804..60988e3c28e 100644 --- a/src/licensedcode/data/rules/bsd-new_1137.RULE +++ b/src/licensedcode/data/rules/bsd-new_1137.RULE @@ -1 +1,7 @@ -{{licenses: bsd}} +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +--- + +{{licenses: bsd}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1137.yml b/src/licensedcode/data/rules/bsd-new_1137.yml deleted file mode 100644 index 90976ddc8c6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1138.RULE b/src/licensedcode/data/rules/bsd-new_1138.RULE index 7e3414c3c0b..bb3fa787de7 100644 --- a/src/licensedcode/data/rules/bsd-new_1138.RULE +++ b/src/licensedcode/data/rules/bsd-new_1138.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause +--- + https://licenses.nuget.org/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1138.yml b/src/licensedcode/data/rules/bsd-new_1138.yml deleted file mode 100644 index 22c9457e89d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1138.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1139.RULE b/src/licensedcode/data/rules/bsd-new_1139.RULE index 9b92b06a067..5333643337e 100644 --- a/src/licensedcode/data/rules/bsd-new_1139.RULE +++ b/src/licensedcode/data/rules/bsd-new_1139.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1139.yml b/src/licensedcode/data/rules/bsd-new_1139.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_114.RULE b/src/licensedcode/data/rules/bsd-new_114.RULE index 20447941c1c..7319eef115e 100644 --- a/src/licensedcode/data/rules/bsd-new_114.RULE +++ b/src/licensedcode/data/rules/bsd-new_114.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_114.yml b/src/licensedcode/data/rules/bsd-new_114.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_114.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1140.RULE b/src/licensedcode/data/rules/bsd-new_1140.RULE index dc6db7b2d9d..b643302bd47 100644 --- a/src/licensedcode/data/rules/bsd-new_1140.RULE +++ b/src/licensedcode/data/rules/bsd-new_1140.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Revised BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1140.yml b/src/licensedcode/data/rules/bsd-new_1140.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1141.RULE b/src/licensedcode/data/rules/bsd-new_1141.RULE index f33e8d8db3a..8960fb34ad3 100644 --- a/src/licensedcode/data/rules/bsd-new_1141.RULE +++ b/src/licensedcode/data/rules/bsd-new_1141.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + license: Revised BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1141.yml b/src/licensedcode/data/rules/bsd-new_1141.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1142.RULE b/src/licensedcode/data/rules/bsd-new_1142.RULE index a24750f468f..343e7821434 100644 --- a/src/licensedcode/data/rules/bsd-new_1142.RULE +++ b/src/licensedcode/data/rules/bsd-new_1142.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + licenses: Revised BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1142.yml b/src/licensedcode/data/rules/bsd-new_1142.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1143.RULE b/src/licensedcode/data/rules/bsd-new_1143.RULE index 013527ee789..cc359b8787a 100644 --- a/src/licensedcode/data/rules/bsd-new_1143.RULE +++ b/src/licensedcode/data/rules/bsd-new_1143.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + may be freely distributed under the terms of the BSD license. For all licensing information, details, and documention: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1143.yml b/src/licensedcode/data/rules/bsd-new_1143.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1144.RULE b/src/licensedcode/data/rules/bsd-new_1144.RULE index 5dbc36336f5..bf0f189c2ef 100644 --- a/src/licensedcode/data/rules/bsd-new_1144.RULE +++ b/src/licensedcode/data/rules/bsd-new_1144.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2010-2021, Deusty, LLC +ignorable_holders: + - Deusty, LLC +--- + BSD 3-Clause License Copyright (c) 2010-2021, Deusty, LLC diff --git a/src/licensedcode/data/rules/bsd-new_1144.yml b/src/licensedcode/data/rules/bsd-new_1144.yml deleted file mode 100644 index ab0c1c53073..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1144.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2010-2021, Deusty, LLC -ignorable_holders: - - Deusty, LLC diff --git a/src/licensedcode/data/rules/bsd-new_1145.RULE b/src/licensedcode/data/rules/bsd-new_1145.RULE index 36cf19b7481..01d95826246 100644 --- a/src/licensedcode/data/rules/bsd-new_1145.RULE +++ b/src/licensedcode/data/rules/bsd-new_1145.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2010-2021, Deusty, LLC +ignorable_holders: + - Deusty, LLC +--- + BSD 3-Clause License Copyright (c) 2010-2021, Deusty, LLC diff --git a/src/licensedcode/data/rules/bsd-new_1145.yml b/src/licensedcode/data/rules/bsd-new_1145.yml deleted file mode 100644 index ab0c1c53073..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1145.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2010-2021, Deusty, LLC -ignorable_holders: - - Deusty, LLC diff --git a/src/licensedcode/data/rules/bsd-new_1146.RULE b/src/licensedcode/data/rules/bsd-new_1146.RULE index 76da0eb5964..71062b4c203 100644 --- a/src/licensedcode/data/rules/bsd-new_1146.RULE +++ b/src/licensedcode/data/rules/bsd-new_1146.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_1146.yml b/src/licensedcode/data/rules/bsd-new_1146.yml deleted file mode 100644 index c81f8dc5384..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1147.RULE b/src/licensedcode/data/rules/bsd-new_1147.RULE index 49a5427b50c..1119f77fe1c 100644 --- a/src/licensedcode/data/rules/bsd-new_1147.RULE +++ b/src/licensedcode/data/rules/bsd-new_1147.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + under the 3-clause BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1147.yml b/src/licensedcode/data/rules/bsd-new_1147.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1148.RULE b/src/licensedcode/data/rules/bsd-new_1148.RULE index ce7c2441fb6..39f5e0336eb 100644 --- a/src/licensedcode/data/rules/bsd-new_1148.RULE +++ b/src/licensedcode/data/rules/bsd-new_1148.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + distributed under the following BSD 3-clause license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1148.yml b/src/licensedcode/data/rules/bsd-new_1148.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1149.RULE b/src/licensedcode/data/rules/bsd-new_1149.RULE index a8802a29b1d..d731e10dc46 100644 --- a/src/licensedcode/data/rules/bsd-new_1149.RULE +++ b/src/licensedcode/data/rules/bsd-new_1149.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + released under the terms of the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1149.yml b/src/licensedcode/data/rules/bsd-new_1149.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_114_2.RULE b/src/licensedcode/data/rules/bsd-new_114_2.RULE index f43408a6ecb..7e10808de73 100644 --- a/src/licensedcode/data/rules/bsd-new_114_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_114_2.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EV 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_114_2.yml b/src/licensedcode/data/rules/bsd-new_114_2.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_114_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_114_3.RULE b/src/licensedcode/data/rules/bsd-new_114_3.RULE index 39b9c43a50d..03a88542391 100644 --- a/src/licensedcode/data/rules/bsd-new_114_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_114_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Open source under the BSD License. @@ -21,5 +26,4 @@ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 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. - +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_114_3.yml b/src/licensedcode/data/rules/bsd-new_114_3.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_114_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_114_4.RULE b/src/licensedcode/data/rules/bsd-new_114_4.RULE index 4039e74a29f..bbee3cdb95f 100644 --- a/src/licensedcode/data/rules/bsd-new_114_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_114_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + TERMS OF USE Open source under the BSD License. @@ -21,4 +26,4 @@ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_114_4.yml b/src/licensedcode/data/rules/bsd-new_114_4.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_114_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_114_6.RULE b/src/licensedcode/data/rules/bsd-new_114_6.RULE index 919f54255fc..59017b4a84f 100644 --- a/src/licensedcode/data/rules/bsd-new_114_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_114_6.RULE @@ -1 +1,7 @@ -Open source under the BSD License. \ No newline at end of file +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + +Open source under the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_114_6.yml b/src/licensedcode/data/rules/bsd-new_114_6.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_114_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_115.RULE b/src/licensedcode/data/rules/bsd-new_115.RULE index a95b4335d4c..bf5a765c99c 100644 --- a/src/licensedcode/data/rules/bsd-new_115.RULE +++ b/src/licensedcode/data/rules/bsd-new_115.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_115.yml b/src/licensedcode/data/rules/bsd-new_115.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_115.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1150.RULE b/src/licensedcode/data/rules/bsd-new_1150.RULE index 249ddb7f059..89ef0ae90e2 100644 --- a/src/licensedcode/data/rules/bsd-new_1150.RULE +++ b/src/licensedcode/data/rules/bsd-new_1150.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 95 +notes: seen in pear packages +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1150.yml b/src/licensedcode/data/rules/bsd-new_1150.yml deleted file mode 100644 index de603444e02..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1150.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 95 -notes: seen in pear packages -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_1151.RULE b/src/licensedcode/data/rules/bsd-new_1151.RULE index fa7f075a50f..ea0cedfadc8 100644 --- a/src/licensedcode/data/rules/bsd-new_1151.RULE +++ b/src/licensedcode/data/rules/bsd-new_1151.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 95 +notes: seen in pear packages +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + BSD Style \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1151.yml b/src/licensedcode/data/rules/bsd-new_1151.yml deleted file mode 100644 index 1f743e8b562..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1151.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 95 -notes: seen in pear packages -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_1152.RULE b/src/licensedcode/data/rules/bsd-new_1152.RULE index 97e0aa369cf..ff57f264fb3 100644 --- a/src/licensedcode/data/rules/bsd-new_1152.RULE +++ b/src/licensedcode/data/rules/bsd-new_1152.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: seen in pear packages +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + New BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1152.yml b/src/licensedcode/data/rules/bsd-new_1152.yml deleted file mode 100644 index 68cb646c607..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1152.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: seen in pear packages -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_1153.RULE b/src/licensedcode/data/rules/bsd-new_1153.RULE index e6aa40ba3b8..f87e4075fbd 100644 --- a/src/licensedcode/data/rules/bsd-new_1153.RULE +++ b/src/licensedcode/data/rules/bsd-new_1153.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: seen in pear packages +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause +--- + BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1153.yml b/src/licensedcode/data/rules/bsd-new_1153.yml deleted file mode 100644 index 64b24cc200e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1153.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: seen in pear packages -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1154.RULE b/src/licensedcode/data/rules/bsd-new_1154.RULE index 3c9f116ad25..55f2dd65dcf 100644 --- a/src/licensedcode/data/rules/bsd-new_1154.RULE +++ b/src/licensedcode/data/rules/bsd-new_1154.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: seen in pear packages +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + New BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1154.yml b/src/licensedcode/data/rules/bsd-new_1154.yml deleted file mode 100644 index b5a42051250..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1154.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: seen in pear packages -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_1155.RULE b/src/licensedcode/data/rules/bsd-new_1155.RULE index 83d26dcb5f9..3374ace82da 100644 --- a/src/licensedcode/data/rules/bsd-new_1155.RULE +++ b/src/licensedcode/data/rules/bsd-new_1155.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause +--- + LICENSE {{BSD-3-Clause}} https://spdx.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1155.yml b/src/licensedcode/data/rules/bsd-new_1155.yml deleted file mode 100644 index 89920fcff1a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1156.RULE b/src/licensedcode/data/rules/bsd-new_1156.RULE index abe7263ceb8..8066629d30f 100644 --- a/src/licensedcode/data/rules/bsd-new_1156.RULE +++ b/src/licensedcode/data/rules/bsd-new_1156.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause +--- + {{BSD-3-Clause}} https://spdx.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1156.yml b/src/licensedcode/data/rules/bsd-new_1156.yml deleted file mode 100644 index 89920fcff1a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1156.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1157.RULE b/src/licensedcode/data/rules/bsd-new_1157.RULE index bf931ab7fc6..1cfc9f36028 100644 --- a/src/licensedcode/data/rules/bsd-new_1157.RULE +++ b/src/licensedcode/data/rules/bsd-new_1157.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + License information can be found in the LICENSE file. Based on work by released under BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1157.yml b/src/licensedcode/data/rules/bsd-new_1157.yml deleted file mode 100644 index b6c8dec56ad..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1158.RULE b/src/licensedcode/data/rules/bsd-new_1158.RULE index 65c07d8e97e..0f40ae37e06 100644 --- a/src/licensedcode/data/rules/bsd-new_1158.RULE +++ b/src/licensedcode/data/rules/bsd-new_1158.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + released under BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1158.yml b/src/licensedcode/data/rules/bsd-new_1158.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_1159.RULE b/src/licensedcode/data/rules/bsd-new_1159.RULE index 3c1a384acf3..f66870f9da6 100644 --- a/src/licensedcode/data/rules/bsd-new_1159.RULE +++ b/src/licensedcode/data/rules/bsd-new_1159.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://golang.org/LICENSE + - http://opensource.org/licenses/BSD-3-Clause +--- + ## License [BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license, as diff --git a/src/licensedcode/data/rules/bsd-new_1159.yml b/src/licensedcode/data/rules/bsd-new_1159.yml deleted file mode 100644 index 3cd3ac0ed8b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1159.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://golang.org/LICENSE - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_116.RULE b/src/licensedcode/data/rules/bsd-new_116.RULE index 1ee7e127bc6..b5310a79361 100644 --- a/src/licensedcode/data/rules/bsd-new_116.RULE +++ b/src/licensedcode/data/rules/bsd-new_116.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + BSD: The BSD license applies to all files in the directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_116.yml b/src/licensedcode/data/rules/bsd-new_116.yml deleted file mode 100644 index 3c43e265100..00000000000 --- a/src/licensedcode/data/rules/bsd-new_116.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1160.RULE b/src/licensedcode/data/rules/bsd-new_1160.RULE index 93c6f48f719..7461ce0b5e9 100644 --- a/src/licensedcode/data/rules/bsd-new_1160.RULE +++ b/src/licensedcode/data/rules/bsd-new_1160.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://golang.org/LICENSE + - http://opensource.org/licenses/BSD-3-Clause +--- + [BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license, as [Go language](http://golang.org/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1160.yml b/src/licensedcode/data/rules/bsd-new_1160.yml deleted file mode 100644 index 3cd3ac0ed8b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1160.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://golang.org/LICENSE - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1161.RULE b/src/licensedcode/data/rules/bsd-new_1161.RULE index 48a79100ef7..b4ec8ac8d05 100644 --- a/src/licensedcode/data/rules/bsd-new_1161.RULE +++ b/src/licensedcode/data/rules/bsd-new_1161.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + ## License [BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1161.yml b/src/licensedcode/data/rules/bsd-new_1161.yml deleted file mode 100644 index 5db108de180..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1162.RULE b/src/licensedcode/data/rules/bsd-new_1162.RULE index 4eb35d10975..a2d6706a17b 100644 --- a/src/licensedcode/data/rules/bsd-new_1162.RULE +++ b/src/licensedcode/data/rules/bsd-new_1162.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + [BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1162.yml b/src/licensedcode/data/rules/bsd-new_1162.yml deleted file mode 100644 index c73f22b6109..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1163.RULE b/src/licensedcode/data/rules/bsd-new_1163.RULE index 685ddaa263c..cec415809c0 100644 --- a/src/licensedcode/data/rules/bsd-new_1163.RULE +++ b/src/licensedcode/data/rules/bsd-new_1163.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://{{golang.org/LICENSE +--- + [Go language](http://{{golang.org/LICENSE}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1163.yml b/src/licensedcode/data/rules/bsd-new_1163.yml deleted file mode 100644 index 03dfc65a883..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://{{golang.org/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1164.RULE b/src/licensedcode/data/rules/bsd-new_1164.RULE index 3933973674f..d13151b4d7a 100644 --- a/src/licensedcode/data/rules/bsd-new_1164.RULE +++ b/src/licensedcode/data/rules/bsd-new_1164.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License Unless otherwise specified, a BSD 3-clause license applies (see LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1164.yml b/src/licensedcode/data/rules/bsd-new_1164.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1165.RULE b/src/licensedcode/data/rules/bsd-new_1165.RULE index 1bbde5cfa98..cd447814cf2 100644 --- a/src/licensedcode/data/rules/bsd-new_1165.RULE +++ b/src/licensedcode/data/rules/bsd-new_1165.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Unless otherwise specified, a BSD 3-clause license applies (see LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1165.yml b/src/licensedcode/data/rules/bsd-new_1165.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1166.RULE b/src/licensedcode/data/rules/bsd-new_1166.RULE index ef66c0be2d1..75413fcfe42 100644 --- a/src/licensedcode/data/rules/bsd-new_1166.RULE +++ b/src/licensedcode/data/rules/bsd-new_1166.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + BSD 3-clause license applies (see LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1166.yml b/src/licensedcode/data/rules/bsd-new_1166.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1167.RULE b/src/licensedcode/data/rules/bsd-new_1167.RULE index 90a4d10526e..b747be375cc 100644 --- a/src/licensedcode/data/rules/bsd-new_1167.RULE +++ b/src/licensedcode/data/rules/bsd-new_1167.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1167.yml b/src/licensedcode/data/rules/bsd-new_1167.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1167.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1168.RULE b/src/licensedcode/data/rules/bsd-new_1168.RULE index 787ea6dc14d..2d8d4e8d4ae 100644 --- a/src/licensedcode/data/rules/bsd-new_1168.RULE +++ b/src/licensedcode/data/rules/bsd-new_1168.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_1168.yml b/src/licensedcode/data/rules/bsd-new_1168.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1168.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1169.RULE b/src/licensedcode/data/rules/bsd-new_1169.RULE index 2ae8b760d5a..2f3e6a0b446 100644 --- a/src/licensedcode/data/rules/bsd-new_1169.RULE +++ b/src/licensedcode/data/rules/bsd-new_1169.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer +--- + Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1169.yml b/src/licensedcode/data/rules/bsd-new_1169.yml deleted file mode 100644 index 445e83d3efc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1169.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE -notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer diff --git a/src/licensedcode/data/rules/bsd-new_117.RULE b/src/licensedcode/data/rules/bsd-new_117.RULE index 8df694c69dd..87f2aef76cd 100644 --- a/src/licensedcode/data/rules/bsd-new_117.RULE +++ b/src/licensedcode/data/rules/bsd-new_117.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_117.yml b/src/licensedcode/data/rules/bsd-new_117.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_117.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_1170.RULE b/src/licensedcode/data/rules/bsd-new_1170.RULE index 6e2348ecddf..5864ee0dbff 100644 --- a/src/licensedcode/data/rules/bsd-new_1170.RULE +++ b/src/licensedcode/data/rules/bsd-new_1170.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 98 +referenced_filenames: + - LICENSE.BSD +notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer +--- + Use of this source code is governed by a BSD-style license that can be found in the LICENSE.BSD file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1170.yml b/src/licensedcode/data/rules/bsd-new_1170.yml deleted file mode 100644 index a7f97be8c9e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1170.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 98 -referenced_filenames: - - LICENSE.BSD -notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer diff --git a/src/licensedcode/data/rules/bsd-new_1171.RULE b/src/licensedcode/data/rules/bsd-new_1171.RULE index 166f1c335fe..e7ce7ea2838 100644 --- a/src/licensedcode/data/rules/bsd-new_1171.RULE +++ b/src/licensedcode/data/rules/bsd-new_1171.RULE @@ -1,3 +1,15 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) Yann Collet +ignorable_holders: + - Yann Collet +--- + Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. Based on work Copyright (c) Yann Collet, released under BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1171.yml b/src/licensedcode/data/rules/bsd-new_1171.yml deleted file mode 100644 index b7e651c6ff5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1171.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) Yann Collet -ignorable_holders: - - Yann Collet diff --git a/src/licensedcode/data/rules/bsd-new_1172.RULE b/src/licensedcode/data/rules/bsd-new_1172.RULE index 3561befd08b..7e3e786d90e 100644 --- a/src/licensedcode/data/rules/bsd-new_1172.RULE +++ b/src/licensedcode/data/rules/bsd-new_1172.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. Based on work Copyright (c) released under BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1172.yml b/src/licensedcode/data/rules/bsd-new_1172.yml deleted file mode 100644 index f165bfd52c7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1173.RULE b/src/licensedcode/data/rules/bsd-new_1173.RULE index 17a6cf7dcb1..c6b4b0f8530 100644 --- a/src/licensedcode/data/rules/bsd-new_1173.RULE +++ b/src/licensedcode/data/rules/bsd-new_1173.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + Based on work released under BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1173.yml b/src/licensedcode/data/rules/bsd-new_1173.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1174.RULE b/src/licensedcode/data/rules/bsd-new_1174.RULE index 2ed9eee3b2e..db6a77eea3e 100644 --- a/src/licensedcode/data/rules/bsd-new_1174.RULE +++ b/src/licensedcode/data/rules/bsd-new_1174.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer +--- + Unless otherwise noted, the source files are distributed under the BSD-style license found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1174.yml b/src/licensedcode/data/rules/bsd-new_1174.yml deleted file mode 100644 index 445e83d3efc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1174.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE -notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer diff --git a/src/licensedcode/data/rules/bsd-new_1175.RULE b/src/licensedcode/data/rules/bsd-new_1175.RULE index 93a7bcbb612..d29035cf9ad 100644 --- a/src/licensedcode/data/rules/bsd-new_1175.RULE +++ b/src/licensedcode/data/rules/bsd-new_1175.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer +--- + source files are distributed under the BSD-style license found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1175.yml b/src/licensedcode/data/rules/bsd-new_1175.yml deleted file mode 100644 index 445e83d3efc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1175.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE -notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer diff --git a/src/licensedcode/data/rules/bsd-new_1176.RULE b/src/licensedcode/data/rules/bsd-new_1176.RULE index a7ed89ed959..e8078ccc769 100644 --- a/src/licensedcode/data/rules/bsd-new_1176.RULE +++ b/src/licensedcode/data/rules/bsd-new_1176.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer +--- + Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1176.yml b/src/licensedcode/data/rules/bsd-new_1176.yml deleted file mode 100644 index 445e83d3efc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1176.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE -notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer diff --git a/src/licensedcode/data/rules/bsd-new_1177.RULE b/src/licensedcode/data/rules/bsd-new_1177.RULE index ebdd01b056d..b2094a50a47 100644 --- a/src/licensedcode/data/rules/bsd-new_1177.RULE +++ b/src/licensedcode/data/rules/bsd-new_1177.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer +--- + Use of this source code is governed by a BSD-style license that can be found in the Go distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1177.yml b/src/licensedcode/data/rules/bsd-new_1177.yml deleted file mode 100644 index 44d75d95664..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1177.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer diff --git a/src/licensedcode/data/rules/bsd-new_1178.RULE b/src/licensedcode/data/rules/bsd-new_1178.RULE index 7b349f7cc78..4713a8c3ce3 100644 --- a/src/licensedcode/data/rules/bsd-new_1178.RULE +++ b/src/licensedcode/data/rules/bsd-new_1178.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + This library is bsd licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1178.yml b/src/licensedcode/data/rules/bsd-new_1178.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1179.RULE b/src/licensedcode/data/rules/bsd-new_1179.RULE index 91e5ffa1f96..c350d902582 100644 --- a/src/licensedcode/data/rules/bsd-new_1179.RULE +++ b/src/licensedcode/data/rules/bsd-new_1179.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + This library is BSD licensed so feel free to use it in any project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1179.yml b/src/licensedcode/data/rules/bsd-new_1179.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_118.RULE b/src/licensedcode/data/rules/bsd-new_118.RULE index fe7aff83c03..377512337c6 100644 --- a/src/licensedcode/data/rules/bsd-new_118.RULE +++ b/src/licensedcode/data/rules/bsd-new_118.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + made available under a BSD-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_118.yml b/src/licensedcode/data/rules/bsd-new_118.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1180.RULE b/src/licensedcode/data/rules/bsd-new_1180.RULE index 75852788771..14fdf03f918 100644 --- a/src/licensedcode/data/rules/bsd-new_1180.RULE +++ b/src/licensedcode/data/rules/bsd-new_1180.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + library is bsd licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1180.yml b/src/licensedcode/data/rules/bsd-new_1180.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1181.RULE b/src/licensedcode/data/rules/bsd-new_1181.RULE index 00309a3730e..2cb74be32df 100644 --- a/src/licensedcode/data/rules/bsd-new_1181.RULE +++ b/src/licensedcode/data/rules/bsd-new_1181.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + This project is BSD licensed. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1181.yml b/src/licensedcode/data/rules/bsd-new_1181.yml deleted file mode 100644 index f165bfd52c7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1182.RULE b/src/licensedcode/data/rules/bsd-new_1182.RULE index 95e75962389..82dc938bc4e 100644 --- a/src/licensedcode/data/rules/bsd-new_1182.RULE +++ b/src/licensedcode/data/rules/bsd-new_1182.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + This project is BSD-licensed open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1182.yml b/src/licensedcode/data/rules/bsd-new_1182.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1183.RULE b/src/licensedcode/data/rules/bsd-new_1183.RULE index 629dbf6a141..b8b5f71b099 100644 --- a/src/licensedcode/data/rules/bsd-new_1183.RULE +++ b/src/licensedcode/data/rules/bsd-new_1183.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + License This project is BSD-licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1183.yml b/src/licensedcode/data/rules/bsd-new_1183.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1184.RULE b/src/licensedcode/data/rules/bsd-new_1184.RULE index 05f147d0e35..d9428d93d23 100644 --- a/src/licensedcode/data/rules/bsd-new_1184.RULE +++ b/src/licensedcode/data/rules/bsd-new_1184.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + This project is BSD-licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1184.yml b/src/licensedcode/data/rules/bsd-new_1184.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1185.RULE b/src/licensedcode/data/rules/bsd-new_1185.RULE index 4f0f8733122..b20c6491fc2 100644 --- a/src/licensedcode/data/rules/bsd-new_1185.RULE +++ b/src/licensedcode/data/rules/bsd-new_1185.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + project is BSD-licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1185.yml b/src/licensedcode/data/rules/bsd-new_1185.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1186.RULE b/src/licensedcode/data/rules/bsd-new_1186.RULE index cbf9dc0473a..bd06a34cf10 100644 --- a/src/licensedcode/data/rules/bsd-new_1186.RULE +++ b/src/licensedcode/data/rules/bsd-new_1186.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This program is BSD-licensed (3 clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1186.yml b/src/licensedcode/data/rules/bsd-new_1186.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_1187.RULE b/src/licensedcode/data/rules/bsd-new_1187.RULE index 88c5e76d548..86f5e9c9763 100644 --- a/src/licensedcode/data/rules/bsd-new_1187.RULE +++ b/src/licensedcode/data/rules/bsd-new_1187.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This program is BSD-licensed (3 clause). See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1187.yml b/src/licensedcode/data/rules/bsd-new_1187.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_1188.RULE b/src/licensedcode/data/rules/bsd-new_1188.RULE index 26362973a40..049cc918520 100644 --- a/src/licensedcode/data/rules/bsd-new_1188.RULE +++ b/src/licensedcode/data/rules/bsd-new_1188.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + This program is BSD licensed software, \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1188.yml b/src/licensedcode/data/rules/bsd-new_1188.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_1189.RULE b/src/licensedcode/data/rules/bsd-new_1189.RULE index e8da53c1bf9..b46bde76861 100644 --- a/src/licensedcode/data/rules/bsd-new_1189.RULE +++ b/src/licensedcode/data/rules/bsd-new_1189.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: Seen in https://github.com/WebKit/WebKit/blob/aff5e1addc0ed7ff4198f0407e692bbddc70d094/Source/cmake/DetectSSE2.cmake + See also https://github.com/nexB/scancode-toolkit/issues/3039 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1189.yml b/src/licensedcode/data/rules/bsd-new_1189.yml deleted file mode 100644 index d79b11eca1a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1189.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: Seen in https://github.com/WebKit/WebKit/blob/aff5e1addc0ed7ff4198f0407e692bbddc70d094/Source/cmake/DetectSSE2.cmake - See also https://github.com/nexB/scancode-toolkit/issues/3039 diff --git a/src/licensedcode/data/rules/bsd-new_119.RULE b/src/licensedcode/data/rules/bsd-new_119.RULE index dc577b421df..e58d76886ea 100644 --- a/src/licensedcode/data/rules/bsd-new_119.RULE +++ b/src/licensedcode/data/rules/bsd-new_119.RULE @@ -1 +1,8 @@ -The "New" BSD License: +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +--- + +The "New" BSD License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_119.yml b/src/licensedcode/data/rules/bsd-new_119.yml deleted file mode 100644 index 964171227d4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_119.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_1190.RULE b/src/licensedcode/data/rules/bsd-new_1190.RULE index a64d8def1f5..ca822d27794 100644 --- a/src/licensedcode/data/rules/bsd-new_1190.RULE +++ b/src/licensedcode/data/rules/bsd-new_1190.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +notes: Seen in chromium-cronet +--- + license BSD 2/3 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1190.yml b/src/licensedcode/data/rules/bsd-new_1190.yml deleted file mode 100644 index 4c967b83054..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1190.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 -notes: Seen in chromium-cronet diff --git a/src/licensedcode/data/rules/bsd-new_1191.RULE b/src/licensedcode/data/rules/bsd-new_1191.RULE index 5db547d701c..6556561047a 100644 --- a/src/licensedcode/data/rules/bsd-new_1191.RULE +++ b/src/licensedcode/data/rules/bsd-new_1191.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 99 +notes: Seen in chromium-cronet +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: diff --git a/src/licensedcode/data/rules/bsd-new_1191.yml b/src/licensedcode/data/rules/bsd-new_1191.yml deleted file mode 100644 index 493eb103e94..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1191.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 99 -notes: Seen in chromium-cronet diff --git a/src/licensedcode/data/rules/bsd-new_1192.RULE b/src/licensedcode/data/rules/bsd-new_1192.RULE index cc1b3564efd..78380fdd626 100644 --- a/src/licensedcode/data/rules/bsd-new_1192.RULE +++ b/src/licensedcode/data/rules/bsd-new_1192.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + ## License The [BSD 3-Clause license][bsd]. [bsd]: http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1192.yml b/src/licensedcode/data/rules/bsd-new_1192.yml deleted file mode 100644 index 5db108de180..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1193.RULE b/src/licensedcode/data/rules/bsd-new_1193.RULE index 01e7d96d6a4..4c9f557d1a5 100644 --- a/src/licensedcode/data/rules/bsd-new_1193.RULE +++ b/src/licensedcode/data/rules/bsd-new_1193.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + The [BSD 3-Clause license][bsd]. [bsd]: http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1193.yml b/src/licensedcode/data/rules/bsd-new_1193.yml deleted file mode 100644 index 5db108de180..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1194.RULE b/src/licensedcode/data/rules/bsd-new_1194.RULE index 75bff720afc..58e119fe9fd 100644 --- a/src/licensedcode/data/rules/bsd-new_1194.RULE +++ b/src/licensedcode/data/rules/bsd-new_1194.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: Seen in ffmpeg +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1194.yml b/src/licensedcode/data/rules/bsd-new_1194.yml deleted file mode 100644 index a98e3323c38..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: Seen in ffmpeg diff --git a/src/licensedcode/data/rules/bsd-new_1195.RULE b/src/licensedcode/data/rules/bsd-new_1195.RULE index 71baa3f8d6c..77b3d52436a 100644 --- a/src/licensedcode/data/rules/bsd-new_1195.RULE +++ b/src/licensedcode/data/rules/bsd-new_1195.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + and on BSD-licensed SHA-2 code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1195.yml b/src/licensedcode/data/rules/bsd-new_1195.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_1195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_12.RULE b/src/licensedcode/data/rules/bsd-new_12.RULE index 24482ed8661..f37b11712d6 100644 --- a/src/licensedcode/data/rules/bsd-new_12.RULE +++ b/src/licensedcode/data/rules/bsd-new_12.RULE @@ -1,3 +1,8 @@ +--- +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. diff --git a/src/licensedcode/data/rules/bsd-new_12.yml b/src/licensedcode/data/rules/bsd-new_12.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_120.RULE b/src/licensedcode/data/rules/bsd-new_120.RULE index ac2d2a057dd..a60f7831dba 100644 --- a/src/licensedcode/data/rules/bsd-new_120.RULE +++ b/src/licensedcode/data/rules/bsd-new_120.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_120.yml b/src/licensedcode/data/rules/bsd-new_120.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_120.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_121.RULE b/src/licensedcode/data/rules/bsd-new_121.RULE index 589135dea88..33c73cd4ee6 100644 --- a/src/licensedcode/data/rules/bsd-new_121.RULE +++ b/src/licensedcode/data/rules/bsd-new_121.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://framework.zend.com/license/new-bsd +--- + Code subject to the new BSD license (http://framework.zend.com/license/new-bsd). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_121.yml b/src/licensedcode/data/rules/bsd-new_121.yml deleted file mode 100644 index 8a36216802e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_121.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://framework.zend.com/license/new-bsd diff --git a/src/licensedcode/data/rules/bsd-new_122.RULE b/src/licensedcode/data/rules/bsd-new_122.RULE index cff69d32dde..5f0090fa795 100644 --- a/src/licensedcode/data/rules/bsd-new_122.RULE +++ b/src/licensedcode/data/rules/bsd-new_122.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the conditions mentioned - in the accompanying LICENSE file are met (BSD-3-Clause). + in the accompanying LICENSE file are met (BSD-3-Clause). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_122.yml b/src/licensedcode/data/rules/bsd-new_122.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_122.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_123.RULE b/src/licensedcode/data/rules/bsd-new_123.RULE index 0b59f00b81e..8789ec6e99e 100644 --- a/src/licensedcode/data/rules/bsd-new_123.RULE +++ b/src/licensedcode/data/rules/bsd-new_123.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://framework.zend.com/license/new-bsd +--- + license http://framework.zend.com/license/new-bsd New BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_123.yml b/src/licensedcode/data/rules/bsd-new_123.yml deleted file mode 100644 index 43ddfddd535..00000000000 --- a/src/licensedcode/data/rules/bsd-new_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://framework.zend.com/license/new-bsd diff --git a/src/licensedcode/data/rules/bsd-new_124.RULE b/src/licensedcode/data/rules/bsd-new_124.RULE index ed682a827be..a9bfeb6a3b0 100644 --- a/src/licensedcode/data/rules/bsd-new_124.RULE +++ b/src/licensedcode/data/rules/bsd-new_124.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + released under the new BSD license (code and documentation) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_124.yml b/src/licensedcode/data/rules/bsd-new_124.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_125.RULE b/src/licensedcode/data/rules/bsd-new_125.RULE index 110bae33442..2cbfc047f1e 100644 --- a/src/licensedcode/data/rules/bsd-new_125.RULE +++ b/src/licensedcode/data/rules/bsd-new_125.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + BSD 3-Clause License: Redistribution and use in source and binary forms, with or without @@ -21,4 +26,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_125.yml b/src/licensedcode/data/rules/bsd-new_125.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_125.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_126.RULE b/src/licensedcode/data/rules/bsd-new_126.RULE index ef57b38c333..45575167053 100644 --- a/src/licensedcode/data/rules/bsd-new_126.RULE +++ b/src/licensedcode/data/rules/bsd-new_126.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + license.txt New BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_126.yml b/src/licensedcode/data/rules/bsd-new_126.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_127.RULE b/src/licensedcode/data/rules/bsd-new_127.RULE index c61e8fb2e5e..4295f019e7e 100644 --- a/src/licensedcode/data/rules/bsd-new_127.RULE +++ b/src/licensedcode/data/rules/bsd-new_127.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + Licensed under the New BSD license. See LICENSE or: 5 * http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_127.yml b/src/licensedcode/data/rules/bsd-new_127.yml deleted file mode 100644 index 5db108de180..00000000000 --- a/src/licensedcode/data/rules/bsd-new_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_128.RULE b/src/licensedcode/data/rules/bsd-new_128.RULE index 59e9c91dd7d..1f7efe832df 100644 --- a/src/licensedcode/data/rules/bsd-new_128.RULE +++ b/src/licensedcode/data/rules/bsd-new_128.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://framework.zend.com/license/new-bsd +ignorable_emails: + - license@zend.com +--- + LICENSE This source file is subject to the new BSD license that is bundled @@ -6,4 +15,4 @@ http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email - to license@zend.com so we can send you a copy immediately. + to license@zend.com so we can send you a copy immediately. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_128.yml b/src/licensedcode/data/rules/bsd-new_128.yml deleted file mode 100644 index 56de157c897..00000000000 --- a/src/licensedcode/data/rules/bsd-new_128.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://framework.zend.com/license/new-bsd -ignorable_emails: - - license@zend.com diff --git a/src/licensedcode/data/rules/bsd-new_129.RULE b/src/licensedcode/data/rules/bsd-new_129.RULE index 6df09f51716..f0b5f6f7ed0 100644 --- a/src/licensedcode/data/rules/bsd-new_129.RULE +++ b/src/licensedcode/data/rules/bsd-new_129.RULE @@ -1 +1,9 @@ -BSD 3-Clause http://www.opensource.org/licenses/BSD-3-Clause +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +--- + +BSD 3-Clause http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_129.yml b/src/licensedcode/data/rules/bsd-new_129.yml deleted file mode 100644 index dcc11d21236..00000000000 --- a/src/licensedcode/data/rules/bsd-new_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_13.RULE b/src/licensedcode/data/rules/bsd-new_13.RULE index 96f8244f5d2..377d5ec9db5 100644 --- a/src/licensedcode/data/rules/bsd-new_13.RULE +++ b/src/licensedcode/data/rules/bsd-new_13.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD-Modified \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_13.yml b/src/licensedcode/data/rules/bsd-new_13.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_130.RULE b/src/licensedcode/data/rules/bsd-new_130.RULE index f796778e7be..7f01e475bb4 100644 --- a/src/licensedcode/data/rules/bsd-new_130.RULE +++ b/src/licensedcode/data/rules/bsd-new_130.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + under a open-source 3-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_130.yml b/src/licensedcode/data/rules/bsd-new_130.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_131.RULE b/src/licensedcode/data/rules/bsd-new_131.RULE index 98a514d53a3..61954778752 100644 --- a/src/licensedcode/data/rules/bsd-new_131.RULE +++ b/src/licensedcode/data/rules/bsd-new_131.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + ####BSDCOPYRIGHTBEGIN#### ------------------------------------------- @@ -7,4 +13,4 @@ and are covered by the appropriate copyright disclaimers included herein. ------------------------------------------- -####BSDCOPYRIGHTEND#### +####BSDCOPYRIGHTEND#### \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_131.yml b/src/licensedcode/data/rules/bsd-new_131.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_131_2.RULE b/src/licensedcode/data/rules/bsd-new_131_2.RULE index dbf4cba1412..10cfca5f892 100644 --- a/src/licensedcode/data/rules/bsd-new_131_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_131_2.RULE @@ -1,7 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + ####BSDCOPYRIGHTBEGIN#### ------------------------------------------- Portions of this software may have been derived from OpenBSD or other sources, -and are covered by the appropriate copyright disclaimers included herein. - +and are covered by the appropriate copyright disclaimers included herein. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_131_2.yml b/src/licensedcode/data/rules/bsd-new_131_2.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_131_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_131_3.RULE b/src/licensedcode/data/rules/bsd-new_131_3.RULE index ec9c5432a90..d8237d226e3 100644 --- a/src/licensedcode/data/rules/bsd-new_131_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_131_3.RULE @@ -1,8 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + ####BSDCOPYRIGHTBEGIN#### ------------------------------------------- Portions of this software may have been derived from OpenBSD, FreeBSD or other sources, and are covered by the appropriate - copyright disclaimers included herein. - + copyright disclaimers included herein. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_131_3.yml b/src/licensedcode/data/rules/bsd-new_131_3.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_131_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_132.RULE b/src/licensedcode/data/rules/bsd-new_132.RULE index 198ab040128..1ecd6dca118 100644 --- a/src/licensedcode/data/rules/bsd-new_132.RULE +++ b/src/licensedcode/data/rules/bsd-new_132.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + License 2: Modified BSD @@ -22,4 +27,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_132.yml b/src/licensedcode/data/rules/bsd-new_132.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_132.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_133.RULE b/src/licensedcode/data/rules/bsd-new_133.RULE index bce458daee9..88b475ff0a3 100644 --- a/src/licensedcode/data/rules/bsd-new_133.RULE +++ b/src/licensedcode/data/rules/bsd-new_133.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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. +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_133.yml b/src/licensedcode/data/rules/bsd-new_133.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_133.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_134.RULE b/src/licensedcode/data/rules/bsd-new_134.RULE index f0e95e0a6c6..9dcdc9195bd 100644 --- a/src/licensedcode/data/rules/bsd-new_134.RULE +++ b/src/licensedcode/data/rules/bsd-new_134.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ * 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. +* 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_134.yml b/src/licensedcode/data/rules/bsd-new_134.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_134.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_135.RULE b/src/licensedcode/data/rules/bsd-new_135.RULE index 2bbe89da14b..fb150f723b3 100644 --- a/src/licensedcode/data/rules/bsd-new_135.RULE +++ b/src/licensedcode/data/rules/bsd-new_135.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -26,4 +31,4 @@ 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. +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_135.yml b/src/licensedcode/data/rules/bsd-new_135.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_135.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_136.RULE b/src/licensedcode/data/rules/bsd-new_136.RULE index e169360d8b4..23772a5b9b6 100644 --- a/src/licensedcode/data/rules/bsd-new_136.RULE +++ b/src/licensedcode/data/rules/bsd-new_136.RULE @@ -1 +1,7 @@ -complies with Open Source BSD License. +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + +complies with Open Source BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_136.yml b/src/licensedcode/data/rules/bsd-new_136.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_137.RULE b/src/licensedcode/data/rules/bsd-new_137.RULE index b69d08f1f8c..8ad729a7d44 100644 --- a/src/licensedcode/data/rules/bsd-new_137.RULE +++ b/src/licensedcode/data/rules/bsd-new_137.RULE @@ -1 +1,7 @@ -This header is BSD licensed +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + +This header is BSD licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_137.yml b/src/licensedcode/data/rules/bsd-new_137.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_138.RULE b/src/licensedcode/data/rules/bsd-new_138.RULE index 94b97c4ed70..0d16a798187 100644 --- a/src/licensedcode/data/rules/bsd-new_138.RULE +++ b/src/licensedcode/data/rules/bsd-new_138.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + This header is BSD licensed so -anyone can use the definitions to implement compatible remote processors +anyone can use the definitions to implement compatible remote processors \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_138.yml b/src/licensedcode/data/rules/bsd-new_138.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_139.RULE b/src/licensedcode/data/rules/bsd-new_139.RULE index 3ec0591eb64..01d33cd0570 100644 --- a/src/licensedcode/data/rules/bsd-new_139.RULE +++ b/src/licensedcode/data/rules/bsd-new_139.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + This header is BSD licensed so anyone can use the definitions to implement -compatible drivers/servers. */ +compatible drivers/servers. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_139.yml b/src/licensedcode/data/rules/bsd-new_139.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_14.RULE b/src/licensedcode/data/rules/bsd-new_14.RULE index 5a05515fd94..8f0e0e7af66 100644 --- a/src/licensedcode/data/rules/bsd-new_14.RULE +++ b/src/licensedcode/data/rules/bsd-new_14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: This has a minor variation in the lowercased disclaimer block from the typical bsd-new + text. Foudn in the joblib Python library +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +30,4 @@ 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.** + damage.** \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_14.yml b/src/licensedcode/data/rules/bsd-new_14.yml deleted file mode 100644 index 9e8d92054e3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: This has a minor variation in the lowercased disclaimer block from the typical bsd-new - text. Foudn in the joblib Python library diff --git a/src/licensedcode/data/rules/bsd-new_140.RULE b/src/licensedcode/data/rules/bsd-new_140.RULE index d6a8b071f1b..bc4ea8fa59c 100644 --- a/src/licensedcode/data/rules/bsd-new_140.RULE +++ b/src/licensedcode/data/rules/bsd-new_140.RULE @@ -1 +1,8 @@ - This file is available under a BSD-style copyright +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +minimum_coverage: 99 +--- + + This file is available under a BSD-style copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_140.yml b/src/licensedcode/data/rules/bsd-new_140.yml deleted file mode 100644 index 3ae3fcd1951..00000000000 --- a/src/licensedcode/data/rules/bsd-new_140.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_141.RULE b/src/licensedcode/data/rules/bsd-new_141.RULE index ca91dc65a15..70b533f0e47 100644 --- a/src/licensedcode/data/rules/bsd-new_141.RULE +++ b/src/licensedcode/data/rules/bsd-new_141.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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. +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_141.yml b/src/licensedcode/data/rules/bsd-new_141.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_141.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_142.RULE b/src/licensedcode/data/rules/bsd-new_142.RULE index 3020abb2017..b6cbe365221 100644 --- a/src/licensedcode/data/rules/bsd-new_142.RULE +++ b/src/licensedcode/data/rules/bsd-new_142.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 90 +notes: an odd formatting of a bsd from Adobe +--- + %%Copyright: Redistribution and use in source and binary forms, with or %%Copyright: without modification, are permitted provided that the %%Copyright: following conditions are met: @@ -28,4 +35,4 @@ %%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN %%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR %%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -%%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +%%Copyright: 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_142.yml b/src/licensedcode/data/rules/bsd-new_142.yml deleted file mode 100644 index a46eb96e98d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_142.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 90 -notes: an odd formatting of a bsd from Adobe diff --git a/src/licensedcode/data/rules/bsd-new_143.RULE b/src/licensedcode/data/rules/bsd-new_143.RULE index a2f028a0a49..f3cc05dda24 100644 --- a/src/licensedcode/data/rules/bsd-new_143.RULE +++ b/src/licensedcode/data/rules/bsd-new_143.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + :license: BSD, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_143.yml b/src/licensedcode/data/rules/bsd-new_143.yml deleted file mode 100644 index 33ea6bf86ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_143.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_144.RULE b/src/licensedcode/data/rules/bsd-new_144.RULE index a4d656216a3..2fca74fdeed 100644 --- a/src/licensedcode/data/rules/bsd-new_144.RULE +++ b/src/licensedcode/data/rules/bsd-new_144.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD 3-Clause License (a.k.a Revised, New, or Modified) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_144.yml b/src/licensedcode/data/rules/bsd-new_144.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_145.RULE b/src/licensedcode/data/rules/bsd-new_145.RULE index 583b29772fe..777ecb02156 100644 --- a/src/licensedcode/data/rules/bsd-new_145.RULE +++ b/src/licensedcode/data/rules/bsd-new_145.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + The BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_145.yml b/src/licensedcode/data/rules/bsd-new_145.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_146.RULE b/src/licensedcode/data/rules/bsd-new_146.RULE index c8e02e165e1..9f444ca28c1 100644 --- a/src/licensedcode/data/rules/bsd-new_146.RULE +++ b/src/licensedcode/data/rules/bsd-new_146.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + This header is BSD licensed so anyone can use the definitions to implement compatible drivers/servers: @@ -23,5 +28,4 @@ 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. - +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_146.yml b/src/licensedcode/data/rules/bsd-new_146.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_146.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_147.RULE b/src/licensedcode/data/rules/bsd-new_147.RULE index d9e987e5486..a95df125d3a 100644 --- a/src/licensedcode/data/rules/bsd-new_147.RULE +++ b/src/licensedcode/data/rules/bsd-new_147.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_147.yml b/src/licensedcode/data/rules/bsd-new_147.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_147.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_148.RULE b/src/licensedcode/data/rules/bsd-new_148.RULE index e6be383a64b..76c818b45a8 100644 --- a/src/licensedcode/data/rules/bsd-new_148.RULE +++ b/src/licensedcode/data/rules/bsd-new_148.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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. +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_148.yml b/src/licensedcode/data/rules/bsd-new_148.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_148.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_149.RULE b/src/licensedcode/data/rules/bsd-new_149.RULE index 2074634042e..2ef109a1c34 100644 --- a/src/licensedcode/data/rules/bsd-new_149.RULE +++ b/src/licensedcode/data/rules/bsd-new_149.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + THIS 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_149.yml b/src/licensedcode/data/rules/bsd-new_149.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_149.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_15.RULE b/src/licensedcode/data/rules/bsd-new_15.RULE index ce0514443fe..5fbeace46ee 100644 --- a/src/licensedcode/data/rules/bsd-new_15.RULE +++ b/src/licensedcode/data/rules/bsd-new_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: markup format +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +29,4 @@ 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. +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_15.yml b/src/licensedcode/data/rules/bsd-new_15.yml deleted file mode 100644 index 0b1ce8631aa..00000000000 --- a/src/licensedcode/data/rules/bsd-new_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: markup format diff --git a/src/licensedcode/data/rules/bsd-new_150.RULE b/src/licensedcode/data/rules/bsd-new_150.RULE index d13e4bf9f62..50793d1c5a4 100644 --- a/src/licensedcode/data/rules/bsd-new_150.RULE +++ b/src/licensedcode/data/rules/bsd-new_150.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -18,4 +23,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_150.yml b/src/licensedcode/data/rules/bsd-new_150.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_150.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_151.RULE b/src/licensedcode/data/rules/bsd-new_151.RULE index 208d383fbb6..a173ab7644a 100644 --- a/src/licensedcode/data/rules/bsd-new_151.RULE +++ b/src/licensedcode/data/rules/bsd-new_151.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_151.yml b/src/licensedcode/data/rules/bsd-new_151.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_151.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_152.RULE b/src/licensedcode/data/rules/bsd-new_152.RULE index 9f0a46830c7..8f919d9552a 100644 --- a/src/licensedcode/data/rules/bsd-new_152.RULE +++ b/src/licensedcode/data/rules/bsd-new_152.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -24,4 +29,4 @@ 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. +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_152.yml b/src/licensedcode/data/rules/bsd-new_152.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_152.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_153.RULE b/src/licensedcode/data/rules/bsd-new_153.RULE index 98f034a41ce..a60e109606d 100644 --- a/src/licensedcode/data/rules/bsd-new_153.RULE +++ b/src/licensedcode/data/rules/bsd-new_153.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. +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_153.yml b/src/licensedcode/data/rules/bsd-new_153.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_153.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_154.RULE b/src/licensedcode/data/rules/bsd-new_154.RULE index 7fd214cd79d..5b062170876 100644 --- a/src/licensedcode/data/rules/bsd-new_154.RULE +++ b/src/licensedcode/data/rules/bsd-new_154.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Use of this source code is governed by a BSD-style license that can be found in the LICENSE file @@ -23,4 +28,4 @@ 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. +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_154.yml b/src/licensedcode/data/rules/bsd-new_154.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_154.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_155.RULE b/src/licensedcode/data/rules/bsd-new_155.RULE index 9e629412000..0571600802a 100644 --- a/src/licensedcode/data/rules/bsd-new_155.RULE +++ b/src/licensedcode/data/rules/bsd-new_155.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_155.yml b/src/licensedcode/data/rules/bsd-new_155.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_155.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_156.RULE b/src/licensedcode/data/rules/bsd-new_156.RULE index 5b85d2b937b..e902d8ca91e 100644 --- a/src/licensedcode/data/rules/bsd-new_156.RULE +++ b/src/licensedcode/data/rules/bsd-new_156.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_156.yml b/src/licensedcode/data/rules/bsd-new_156.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_156.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_157.RULE b/src/licensedcode/data/rules/bsd-new_157.RULE index fe718ae9af7..44c2309a8ce 100644 --- a/src/licensedcode/data/rules/bsd-new_157.RULE +++ b/src/licensedcode/data/rules/bsd-new_157.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -24,4 +29,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_157.yml b/src/licensedcode/data/rules/bsd-new_157.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_157.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_158.RULE b/src/licensedcode/data/rules/bsd-new_158.RULE index 6e43e2af92c..90af8ee4a67 100644 --- a/src/licensedcode/data/rules/bsd-new_158.RULE +++ b/src/licensedcode/data/rules/bsd-new_158.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_158.yml b/src/licensedcode/data/rules/bsd-new_158.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_158.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_159.RULE b/src/licensedcode/data/rules/bsd-new_159.RULE index 479349195a3..5385ab97d01 100644 --- a/src/licensedcode/data/rules/bsd-new_159.RULE +++ b/src/licensedcode/data/rules/bsd-new_159.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_159.yml b/src/licensedcode/data/rules/bsd-new_159.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_159.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_16.RULE b/src/licensedcode/data/rules/bsd-new_16.RULE index aae4e9411f8..631f4af39d9 100644 --- a/src/licensedcode/data/rules/bsd-new_16.RULE +++ b/src/licensedcode/data/rules/bsd-new_16.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + The source code is distributed under BSD license, see the file License.txt at the top-level directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_16.yml b/src/licensedcode/data/rules/bsd-new_16.yml deleted file mode 100644 index 696ad8e0678..00000000000 --- a/src/licensedcode/data/rules/bsd-new_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/bsd-new_160.RULE b/src/licensedcode/data/rules/bsd-new_160.RULE index 452d4ff30cd..d0200a4eb39 100644 --- a/src/licensedcode/data/rules/bsd-new_160.RULE +++ b/src/licensedcode/data/rules/bsd-new_160.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_160.yml b/src/licensedcode/data/rules/bsd-new_160.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_160.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_161.RULE b/src/licensedcode/data/rules/bsd-new_161.RULE index fd33afe429f..76384e3b2da 100644 --- a/src/licensedcode/data/rules/bsd-new_161.RULE +++ b/src/licensedcode/data/rules/bsd-new_161.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + The BSD License http://opensource.org/licenses/bsd-license.php @@ -24,4 +32,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_161.yml b/src/licensedcode/data/rules/bsd-new_161.yml deleted file mode 100644 index e9d6c1b57dc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_162.RULE b/src/licensedcode/data/rules/bsd-new_162.RULE index 05081e70c7b..da7167cdf02 100644 --- a/src/licensedcode/data/rules/bsd-new_162.RULE +++ b/src/licensedcode/data/rules/bsd-new_162.RULE @@ -1,6 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +--- + License ------- The software is provided under a BSD-3-Clause `license`_. Contributions to this project are accepted under the same license with developer sign-off as -described in the `Contributing Guidelines`_. +described in the `Contributing Guidelines`_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_162.yml b/src/licensedcode/data/rules/bsd-new_162.yml deleted file mode 100644 index f19629f4b37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_162.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes diff --git a/src/licensedcode/data/rules/bsd-new_163.RULE b/src/licensedcode/data/rules/bsd-new_163.RULE index ffa8fe4a786..ec4da77f18e 100644 --- a/src/licensedcode/data/rules/bsd-new_163.RULE +++ b/src/licensedcode/data/rules/bsd-new_163.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_163.yml b/src/licensedcode/data/rules/bsd-new_163.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_163.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_164.RULE b/src/licensedcode/data/rules/bsd-new_164.RULE index 2f6d2cdab46..9635f643eff 100644 --- a/src/licensedcode/data/rules/bsd-new_164.RULE +++ b/src/licensedcode/data/rules/bsd-new_164.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -14,4 +20,4 @@ are met: THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_164.yml b/src/licensedcode/data/rules/bsd-new_164.yml deleted file mode 100644 index a08d385a35b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_164_1.RULE b/src/licensedcode/data/rules/bsd-new_164_1.RULE index 4312e36b203..4c884a29eec 100644 --- a/src/licensedcode/data/rules/bsd-new_164_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_164_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + License: BSD Redistribution and use in source and binary forms, with or without modification, @@ -7,4 +13,4 @@ are permitted provided that the following conditions are met: 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. The names of the authors 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file +THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_164_1.yml b/src/licensedcode/data/rules/bsd-new_164_1.yml deleted file mode 100644 index a08d385a35b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_164_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_164_2.RULE b/src/licensedcode/data/rules/bsd-new_164_2.RULE index c7a347b692f..1cca45a94c9 100644 --- a/src/licensedcode/data/rules/bsd-new_164_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_164_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -12,4 +18,4 @@ other materials provided with the distribution. The names of the authors 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file +THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_164_2.yml b/src/licensedcode/data/rules/bsd-new_164_2.yml deleted file mode 100644 index a08d385a35b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_164_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_164_3.RULE b/src/licensedcode/data/rules/bsd-new_164_3.RULE index 8bfd4a2726d..cbaaa14ec45 100644 --- a/src/licensedcode/data/rules/bsd-new_164_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_164_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + License: BSD Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -8,4 +14,4 @@ Redistribution and use in source and binary forms, with or without modification, 3. The names of the authors 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_164_3.yml b/src/licensedcode/data/rules/bsd-new_164_3.yml deleted file mode 100644 index a08d385a35b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_164_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_165.RULE b/src/licensedcode/data/rules/bsd-new_165.RULE index 7f643eab48c..4e126d66ad5 100644 --- a/src/licensedcode/data/rules/bsd-new_165.RULE +++ b/src/licensedcode/data/rules/bsd-new_165.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + This header is BSD licensed so anyone can use the definitions to implement compatible drivers/servers. @@ -22,4 +27,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_165.yml b/src/licensedcode/data/rules/bsd-new_165.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_165.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_166.RULE b/src/licensedcode/data/rules/bsd-new_166.RULE index 69f712c06bf..8410d946037 100644 --- a/src/licensedcode/data/rules/bsd-new_166.RULE +++ b/src/licensedcode/data/rules/bsd-new_166.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_166.yml b/src/licensedcode/data/rules/bsd-new_166.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_166.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_167.RULE b/src/licensedcode/data/rules/bsd-new_167.RULE index acdbbdfad29..4de91033427 100644 --- a/src/licensedcode/data/rules/bsd-new_167.RULE +++ b/src/licensedcode/data/rules/bsd-new_167.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +--- + This product includes the ASM byte code manipulation library from INRIA (BSD Style License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_167.yml b/src/licensedcode/data/rules/bsd-new_167.yml deleted file mode 100644 index 964171227d4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_167.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_168.RULE b/src/licensedcode/data/rules/bsd-new_168.RULE index 0badb2583d4..69bafe89547 100644 --- a/src/licensedcode/data/rules/bsd-new_168.RULE +++ b/src/licensedcode/data/rules/bsd-new_168.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +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_168.yml b/src/licensedcode/data/rules/bsd-new_168.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_168.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_169.RULE b/src/licensedcode/data/rules/bsd-new_169.RULE index 1eebacee5d6..673cabe0ce9 100644 --- a/src/licensedcode/data/rules/bsd-new_169.RULE +++ b/src/licensedcode/data/rules/bsd-new_169.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + BSD licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_169.yml b/src/licensedcode/data/rules/bsd-new_169.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_17.RULE b/src/licensedcode/data/rules/bsd-new_17.RULE index 0a0de01da03..3231c381478 100644 --- a/src/licensedcode/data/rules/bsd-new_17.RULE +++ b/src/licensedcode/data/rules/bsd-new_17.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +notes: Debian BSD license +--- + licensed with the standard 3-clause BSD license. On Debian GNU/Linux systems, this license can be found in `/usr/share/common-licenses/BSD'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_17.yml b/src/licensedcode/data/rules/bsd-new_17.yml deleted file mode 100644 index 1d7da8ab4bf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -notes: Debian BSD license diff --git a/src/licensedcode/data/rules/bsd-new_170.RULE b/src/licensedcode/data/rules/bsd-new_170.RULE index b71a42e2067..0c4c80f7009 100644 --- a/src/licensedcode/data/rules/bsd-new_170.RULE +++ b/src/licensedcode/data/rules/bsd-new_170.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 99 +notes: NASA variant +--- + BSD Style License Redistribution and use in source and binary forms, with or without modification, @@ -21,4 +28,4 @@ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_170.yml b/src/licensedcode/data/rules/bsd-new_170.yml deleted file mode 100644 index cdf874b6dba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_170.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 99 -notes: NASA variant diff --git a/src/licensedcode/data/rules/bsd-new_171.RULE b/src/licensedcode/data/rules/bsd-new_171.RULE index 8d1c1b8763d..a40567d1bf2 100644 --- a/src/licensedcode/data/rules/bsd-new_171.RULE +++ b/src/licensedcode/data/rules/bsd-new_171.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + You may use this project under the terms of the New BSD license as follows: Redistribution and use in source and binary forms, with or without @@ -20,4 +25,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_171.yml b/src/licensedcode/data/rules/bsd-new_171.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_171.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_172.RULE b/src/licensedcode/data/rules/bsd-new_172.RULE index a4e8e73cae2..ffcecf0e9ae 100644 --- a/src/licensedcode/data/rules/bsd-new_172.RULE +++ b/src/licensedcode/data/rules/bsd-new_172.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + __license__ = 'BSD license' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_172.yml b/src/licensedcode/data/rules/bsd-new_172.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_173.RULE b/src/licensedcode/data/rules/bsd-new_173.RULE index 1c89558b7bc..fb4b6697c13 100644 --- a/src/licensedcode/data/rules/bsd-new_173.RULE +++ b/src/licensedcode/data/rules/bsd-new_173.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + __license__ = 'Modified BSD' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_173.yml b/src/licensedcode/data/rules/bsd-new_173.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_174.RULE b/src/licensedcode/data/rules/bsd-new_174.RULE index dbcf90f5c62..db57fce6bc9 100644 --- a/src/licensedcode/data/rules/bsd-new_174.RULE +++ b/src/licensedcode/data/rules/bsd-new_174.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + is available for use under the following license, commonly known as the 3-clause (or "modified") BSD license: @@ -26,4 +31,4 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Portions of are based on works by others, also made available by them under the three-clause BSD license above. The copyright notices are -available in the corresponding source files; the license is as above. \ No newline at end of file +available in the corresponding source files; the license is as above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_174.yml b/src/licensedcode/data/rules/bsd-new_174.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_174.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_175.RULE b/src/licensedcode/data/rules/bsd-new_175.RULE index a06a11df70a..b5af9df9b42 100644 --- a/src/licensedcode/data/rules/bsd-new_175.RULE +++ b/src/licensedcode/data/rules/bsd-new_175.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -19,4 +24,4 @@ Redistribution and use in source and binary forms, with or without 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. + DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_175.yml b/src/licensedcode/data/rules/bsd-new_175.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_175.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_176.RULE b/src/licensedcode/data/rules/bsd-new_176.RULE index aff3ed58c6c..d313939d3d1 100644 --- a/src/licensedcode/data/rules/bsd-new_176.RULE +++ b/src/licensedcode/data/rules/bsd-new_176.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_176.yml b/src/licensedcode/data/rules/bsd-new_176.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_176.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_176_1.RULE b/src/licensedcode/data/rules/bsd-new_176_1.RULE index a1b3ba69d18..46d71b5fb79 100644 --- a/src/licensedcode/data/rules/bsd-new_176_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_176_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - https://www.eclipse.org/licenses/edl-v1.0.html + - https://www.eclipse.org/licenses/edl-v10.html +--- + Eclipse Distribution License Version 1.0 (available at https://www.eclipse.org/licenses/edl-v1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_176_1.yml b/src/licensedcode/data/rules/bsd-new_176_1.yml deleted file mode 100644 index b13f8281168..00000000000 --- a/src/licensedcode/data/rules/bsd-new_176_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - https://www.eclipse.org/licenses/edl-v1.0.html - - https://www.eclipse.org/licenses/edl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_177.RULE b/src/licensedcode/data/rules/bsd-new_177.RULE index bdd8f958a9f..b02735a1d04 100644 --- a/src/licensedcode/data/rules/bsd-new_177.RULE +++ b/src/licensedcode/data/rules/bsd-new_177.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + is available for use under the following license, commonly known as the 3-clause (or "modified") BSD license: @@ -22,4 +27,4 @@ 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_177.yml b/src/licensedcode/data/rules/bsd-new_177.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_177.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_178.RULE b/src/licensedcode/data/rules/bsd-new_178.RULE index 63d36fda371..457f2a85415 100644 --- a/src/licensedcode/data/rules/bsd-new_178.RULE +++ b/src/licensedcode/data/rules/bsd-new_178.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -18,4 +23,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_178.yml b/src/licensedcode/data/rules/bsd-new_178.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_178.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_179.RULE b/src/licensedcode/data/rules/bsd-new_179.RULE index fd43148114d..15995bdcfad 100644 --- a/src/licensedcode/data/rules/bsd-new_179.RULE +++ b/src/licensedcode/data/rules/bsd-new_179.RULE @@ -1,2 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: Found in Chromium +ignorable_urls: + - https://cs.chromium.org/chromium/src/LICENSE +--- + Use of this source code is governed by a BSD-style license that may -be found in the LICENSE file https://cs.chromium.org/chromium/src/LICENSE +be found in the LICENSE file https://cs.chromium.org/chromium/src/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_179.yml b/src/licensedcode/data/rules/bsd-new_179.yml deleted file mode 100644 index 3b1a47c83bc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_179.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: Found in Chromium -ignorable_urls: - - https://cs.chromium.org/chromium/src/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_18.RULE b/src/licensedcode/data/rules/bsd-new_18.RULE index 71a69630b04..78a2d25e532 100644 --- a/src/licensedcode/data/rules/bsd-new_18.RULE +++ b/src/licensedcode/data/rules/bsd-new_18.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: See ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change for details BSD Original + with advert clause rescinded +ignorable_urls: + - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -22,4 +31,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_18.yml b/src/licensedcode/data/rules/bsd-new_18.yml deleted file mode 100644 index 5cdd41eba35..00000000000 --- a/src/licensedcode/data/rules/bsd-new_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: See ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change for details BSD Original - with advert clause rescinded -ignorable_urls: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change diff --git a/src/licensedcode/data/rules/bsd-new_180.RULE b/src/licensedcode/data/rules/bsd-new_180.RULE index 9d7d5bb1c7c..83a031d3c0e 100644 --- a/src/licensedcode/data/rules/bsd-new_180.RULE +++ b/src/licensedcode/data/rules/bsd-new_180.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +notes: a weird, damagedd notice found in NTP generated code +ignorable_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the Modified (3 clause) Berkeley Software Distribution License @@ -25,4 +33,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_180.yml b/src/licensedcode/data/rules/bsd-new_180.yml deleted file mode 100644 index c4538f933ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_180.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -notes: a weird, damagedd notice found in NTP generated code -ignorable_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html diff --git a/src/licensedcode/data/rules/bsd-new_181.RULE b/src/licensedcode/data/rules/bsd-new_181.RULE index b3ef12043c9..ffce94387f1 100644 --- a/src/licensedcode/data/rules/bsd-new_181.RULE +++ b/src/licensedcode/data/rules/bsd-new_181.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_181.yml b/src/licensedcode/data/rules/bsd-new_181.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_181.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_182.RULE b/src/licensedcode/data/rules/bsd-new_182.RULE index 18a5651a3be..f4374ae8144 100644 --- a/src/licensedcode/data/rules/bsd-new_182.RULE +++ b/src/licensedcode/data/rules/bsd-new_182.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -24,4 +29,4 @@ 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. +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_182.yml b/src/licensedcode/data/rules/bsd-new_182.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_182.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_183.RULE b/src/licensedcode/data/rules/bsd-new_183.RULE index 1eac67b6e64..be0913197e4 100644 --- a/src/licensedcode/data/rules/bsd-new_183.RULE +++ b/src/licensedcode/data/rules/bsd-new_183.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -19,4 +24,4 @@ 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. + 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_183.yml b/src/licensedcode/data/rules/bsd-new_183.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_183.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_184.RULE b/src/licensedcode/data/rules/bsd-new_184.RULE index 6a130cb79d9..1b12d71df48 100644 --- a/src/licensedcode/data/rules/bsd-new_184.RULE +++ b/src/licensedcode/data/rules/bsd-new_184.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING +notes: a partial notice found in NTP. The Sun license in NET-SNMP is a bsd-new. TODO We should + use the netSNMP license instead in the future +--- + Portions of this file are copyrighted by: Use is subject to license terms specified in the COPYING file -distributed with the Net-SNMP package. +distributed with the Net-SNMP package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_184.yml b/src/licensedcode/data/rules/bsd-new_184.yml deleted file mode 100644 index 3e5e7b2a2e3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_184.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING -notes: a partial notice found in NTP. The Sun license in NET-SNMP is a bsd-new. TODO We should - use the netSNMP license instead in the future diff --git a/src/licensedcode/data/rules/bsd-new_185.RULE b/src/licensedcode/data/rules/bsd-new_185.RULE index 30b8000daf4..f92a7bc1ff3 100644 --- a/src/licensedcode/data/rules/bsd-new_185.RULE +++ b/src/licensedcode/data/rules/bsd-new_185.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: a partial notice found in NTP. The Sun license in NET-SNMP is a bsd-new. TODO We should + use the netSNMP license instead in the future +--- + Use is subject to license terms specified in the COPYING file -distributed with the Net-SNMP package. +distributed with the Net-SNMP package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_185.yml b/src/licensedcode/data/rules/bsd-new_185.yml deleted file mode 100644 index 518b08064a5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_185.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: a partial notice found in NTP. The Sun license in NET-SNMP is a bsd-new. TODO We should - use the netSNMP license instead in the future diff --git a/src/licensedcode/data/rules/bsd-new_186.RULE b/src/licensedcode/data/rules/bsd-new_186.RULE index e49121bdeb7..5849768d710 100644 --- a/src/licensedcode/data/rules/bsd-new_186.RULE +++ b/src/licensedcode/data/rules/bsd-new_186.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -18,4 +23,4 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + THIS 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_186.yml b/src/licensedcode/data/rules/bsd-new_186.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_186.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_187.RULE b/src/licensedcode/data/rules/bsd-new_187.RULE index 1378185f920..b455c34d1e4 100644 --- a/src/licensedcode/data/rules/bsd-new_187.RULE +++ b/src/licensedcode/data/rules/bsd-new_187.RULE @@ -1,6 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://trustee.ietf.org/license-info +--- + Redistribution and use in source and binary forms, with or without modification, is permitted pursuant to, and subject to the license terms contained in, the Simplified BSD License set forth in Section 4.c of the IETF Trust's Legal Provisions Relating to IETF Documents - (http://trustee.ietf.org/license-info)." + (http://trustee.ietf.org/license-info)." \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_187.yml b/src/licensedcode/data/rules/bsd-new_187.yml deleted file mode 100644 index b3b4b2a9788..00000000000 --- a/src/licensedcode/data/rules/bsd-new_187.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://trustee.ietf.org/license-info diff --git a/src/licensedcode/data/rules/bsd-new_188.RULE b/src/licensedcode/data/rules/bsd-new_188.RULE index 2d967af4bf1..a2a027a038a 100644 --- a/src/licensedcode/data/rules/bsd-new_188.RULE +++ b/src/licensedcode/data/rules/bsd-new_188.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -18,5 +23,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. - +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_188.yml b/src/licensedcode/data/rules/bsd-new_188.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_188.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_189.RULE b/src/licensedcode/data/rules/bsd-new_189.RULE index df056aea4cd..8f3897db9f9 100644 --- a/src/licensedcode/data/rules/bsd-new_189.RULE +++ b/src/licensedcode/data/rules/bsd-new_189.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_189.yml b/src/licensedcode/data/rules/bsd-new_189.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_189.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_19.RULE b/src/licensedcode/data/rules/bsd-new_19.RULE index ddd880372bc..7894594afe2 100644 --- a/src/licensedcode/data/rules/bsd-new_19.RULE +++ b/src/licensedcode/data/rules/bsd-new_19.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_19.yml b/src/licensedcode/data/rules/bsd-new_19.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_190.RULE b/src/licensedcode/data/rules/bsd-new_190.RULE index 8a45e913cde..d9dd1eb6d41 100644 --- a/src/licensedcode/data/rules/bsd-new_190.RULE +++ b/src/licensedcode/data/rules/bsd-new_190.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + It is licensed under a BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_190.yml b/src/licensedcode/data/rules/bsd-new_190.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_191.RULE b/src/licensedcode/data/rules/bsd-new_191.RULE index 7c661984449..0cc18763a3b 100644 --- a/src/licensedcode/data/rules/bsd-new_191.RULE +++ b/src/licensedcode/data/rules/bsd-new_191.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + are also licensed under the 3-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_191.yml b/src/licensedcode/data/rules/bsd-new_191.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_192.RULE b/src/licensedcode/data/rules/bsd-new_192.RULE index 94b731e9c7e..c18dc719dea 100644 --- a/src/licensedcode/data/rules/bsd-new_192.RULE +++ b/src/licensedcode/data/rules/bsd-new_192.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + Distributed under the BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_192.yml b/src/licensedcode/data/rules/bsd-new_192.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_193.RULE b/src/licensedcode/data/rules/bsd-new_193.RULE index 01c6eeef940..59d51da7bdc 100644 --- a/src/licensedcode/data/rules/bsd-new_193.RULE +++ b/src/licensedcode/data/rules/bsd-new_193.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + // This library is free software; you can redistribute it and/or modify it // under the terms of the New BSD License, a copy of which should have // been delivered along with this distribution. @@ -12,4 +17,4 @@ // 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. +// 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_193.yml b/src/licensedcode/data/rules/bsd-new_193.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_193.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_194.RULE b/src/licensedcode/data/rules/bsd-new_194.RULE index a024e15f31e..a8084fdb934 100644 --- a/src/licensedcode/data/rules/bsd-new_194.RULE +++ b/src/licensedcode/data/rules/bsd-new_194.RULE @@ -1 +1,6 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_194.yml b/src/licensedcode/data/rules/bsd-new_194.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_194.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_195.RULE b/src/licensedcode/data/rules/bsd-new_195.RULE index e6b69bcb576..c62e4032e14 100644 --- a/src/licensedcode/data/rules/bsd-new_195.RULE +++ b/src/licensedcode/data/rules/bsd-new_195.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + license BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_195.yml b/src/licensedcode/data/rules/bsd-new_195.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_196.RULE b/src/licensedcode/data/rules/bsd-new_196.RULE index 3d72bb714ec..936a3d1938d 100644 --- a/src/licensedcode/data/rules/bsd-new_196.RULE +++ b/src/licensedcode/data/rules/bsd-new_196.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_196.yml b/src/licensedcode/data/rules/bsd-new_196.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_197.RULE b/src/licensedcode/data/rules/bsd-new_197.RULE index b1a9c3c583b..7c0b9ab2fe5 100644 --- a/src/licensedcode/data/rules/bsd-new_197.RULE +++ b/src/licensedcode/data/rules/bsd-new_197.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + ("BSD-3" t "Redistribution and use in source and binary forms, with or" diff --git a/src/licensedcode/data/rules/bsd-new_197.yml b/src/licensedcode/data/rules/bsd-new_197.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_197.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_198.RULE b/src/licensedcode/data/rules/bsd-new_198.RULE index 62e66d04722..912e257fde8 100644 --- a/src/licensedcode/data/rules/bsd-new_198.RULE +++ b/src/licensedcode/data/rules/bsd-new_198.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under the bsd-3-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_198.yml b/src/licensedcode/data/rules/bsd-new_198.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_199.RULE b/src/licensedcode/data/rules/bsd-new_199.RULE index 95be7c717fa..f13fb3f7ffd 100644 --- a/src/licensedcode/data/rules/bsd-new_199.RULE +++ b/src/licensedcode/data/rules/bsd-new_199.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + It's licensed under the terms of the 3-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_199.yml b/src/licensedcode/data/rules/bsd-new_199.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_2.RULE b/src/licensedcode/data/rules/bsd-new_2.RULE index a2c8946b5f2..501e101561b 100644 --- a/src/licensedcode/data/rules/bsd-new_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/bsd-3-clause +--- + http://choosealicense.com/licenses/bsd-3-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_2.yml b/src/licensedcode/data/rules/bsd-new_2.yml deleted file mode 100644 index 6846c2407e0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/bsd-3-clause diff --git a/src/licensedcode/data/rules/bsd-new_20.RULE b/src/licensedcode/data/rules/bsd-new_20.RULE index 5dd626bc163..fd9bcce08f3 100644 --- a/src/licensedcode/data/rules/bsd-new_20.RULE +++ b/src/licensedcode/data/rules/bsd-new_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_20.yml b/src/licensedcode/data/rules/bsd-new_20.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_200.RULE b/src/licensedcode/data/rules/bsd-new_200.RULE index c91dfa1e066..21f5bdac15b 100644 --- a/src/licensedcode/data/rules/bsd-new_200.RULE +++ b/src/licensedcode/data/rules/bsd-new_200.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -18,4 +23,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_200.yml b/src/licensedcode/data/rules/bsd-new_200.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_200.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_201.RULE b/src/licensedcode/data/rules/bsd-new_201.RULE index 828167ad07a..ac08dd3c2e9 100644 --- a/src/licensedcode/data/rules/bsd-new_201.RULE +++ b/src/licensedcode/data/rules/bsd-new_201.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + under a BSD-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_201.yml b/src/licensedcode/data/rules/bsd-new_201.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_202.RULE b/src/licensedcode/data/rules/bsd-new_202.RULE index 62348d2032a..4b076188209 100644 --- a/src/licensedcode/data/rules/bsd-new_202.RULE +++ b/src/licensedcode/data/rules/bsd-new_202.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + contributed by under a BSD-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_202.yml b/src/licensedcode/data/rules/bsd-new_202.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_202_1.RULE b/src/licensedcode/data/rules/bsd-new_202_1.RULE index 760aa189e3a..93c3a008f3f 100644 --- a/src/licensedcode/data/rules/bsd-new_202_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_202_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + available under a BSD-style copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_202_1.yml b/src/licensedcode/data/rules/bsd-new_202_1.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_202_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_203.RULE b/src/licensedcode/data/rules/bsd-new_203.RULE index d668b1538d3..f2f70588e9c 100644 --- a/src/licensedcode/data/rules/bsd-new_203.RULE +++ b/src/licensedcode/data/rules/bsd-new_203.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + under the Revised BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_203.yml b/src/licensedcode/data/rules/bsd-new_203.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_204.RULE b/src/licensedcode/data/rules/bsd-new_204.RULE index b7ca1de9b9e..780505a16e8 100644 --- a/src/licensedcode/data/rules/bsd-new_204.RULE +++ b/src/licensedcode/data/rules/bsd-new_204.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_204.yml b/src/licensedcode/data/rules/bsd-new_204.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_204.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_205.RULE b/src/licensedcode/data/rules/bsd-new_205.RULE index 68495d97fce..e02207631b2 100644 --- a/src/licensedcode/data/rules/bsd-new_205.RULE +++ b/src/licensedcode/data/rules/bsd-new_205.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_205.yml b/src/licensedcode/data/rules/bsd-new_205.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_205.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_206.RULE b/src/licensedcode/data/rules/bsd-new_206.RULE index 3dab9ff2bd3..96375ff51f7 100644 --- a/src/licensedcode/data/rules/bsd-new_206.RULE +++ b/src/licensedcode/data/rules/bsd-new_206.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_206.yml b/src/licensedcode/data/rules/bsd-new_206.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_206.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_207.RULE b/src/licensedcode/data/rules/bsd-new_207.RULE index 4794fe86a8d..9b0dcd84465 100644 --- a/src/licensedcode/data/rules/bsd-new_207.RULE +++ b/src/licensedcode/data/rules/bsd-new_207.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_207.yml b/src/licensedcode/data/rules/bsd-new_207.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_207.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_208.RULE b/src/licensedcode/data/rules/bsd-new_208.RULE index 059d57c371a..83cb4127b5b 100644 --- a/src/licensedcode/data/rules/bsd-new_208.RULE +++ b/src/licensedcode/data/rules/bsd-new_208.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -24,4 +29,4 @@ 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. +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_208.yml b/src/licensedcode/data/rules/bsd-new_208.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_208.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_209.RULE b/src/licensedcode/data/rules/bsd-new_209.RULE index dbe8dbdb564..b83de86c6fc 100644 --- a/src/licensedcode/data/rules/bsd-new_209.RULE +++ b/src/licensedcode/data/rules/bsd-new_209.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -24,4 +29,4 @@ 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. +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_209.yml b/src/licensedcode/data/rules/bsd-new_209.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_209.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_21.RULE b/src/licensedcode/data/rules/bsd-new_21.RULE index 827a8ac43d3..e8efb8e8dca 100644 --- a/src/licensedcode/data/rules/bsd-new_21.RULE +++ b/src/licensedcode/data/rules/bsd-new_21.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 80 +--- + version claims to be BSD licensed: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_21.yml b/src/licensedcode/data/rules/bsd-new_21.yml deleted file mode 100644 index 9d5dde691d6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/bsd-new_210.RULE b/src/licensedcode/data/rules/bsd-new_210.RULE index a31489004da..5a6b6fb9647 100644 --- a/src/licensedcode/data/rules/bsd-new_210.RULE +++ b/src/licensedcode/data/rules/bsd-new_210.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + is licensed under the terms of the "Three-Clause BSD License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_210.yml b/src/licensedcode/data/rules/bsd-new_210.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_211.RULE b/src/licensedcode/data/rules/bsd-new_211.RULE index c9a5aa50533..584383501d7 100644 --- a/src/licensedcode/data/rules/bsd-new_211.RULE +++ b/src/licensedcode/data/rules/bsd-new_211.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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. +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_211.yml b/src/licensedcode/data/rules/bsd-new_211.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_211.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_212.RULE b/src/licensedcode/data/rules/bsd-new_212.RULE index 9f42c25043e..59a919be824 100644 --- a/src/licensedcode/data/rules/bsd-new_212.RULE +++ b/src/licensedcode/data/rules/bsd-new_212.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + source code is released under the BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_212.yml b/src/licensedcode/data/rules/bsd-new_212.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_213.RULE b/src/licensedcode/data/rules/bsd-new_213.RULE index 68d08a8e025..f37ab402062 100644 --- a/src/licensedcode/data/rules/bsd-new_213.RULE +++ b/src/licensedcode/data/rules/bsd-new_213.RULE @@ -1 +1,6 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + source code is released under the BSD License. This license is very simple, and is friendly to all kinds of projects, whether open source or not. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_213.yml b/src/licensedcode/data/rules/bsd-new_213.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_213.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_214.RULE b/src/licensedcode/data/rules/bsd-new_214.RULE index 2c7274cc17a..400e70aa900 100644 --- a/src/licensedcode/data/rules/bsd-new_214.RULE +++ b/src/licensedcode/data/rules/bsd-new_214.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + ## License -This package is licensed under the [BSD 3-Clause license](http://opensource.org/licenses/BSD-3-Clause). +This package is licensed under the [BSD 3-Clause license](http://opensource.org/licenses/BSD-3-Clause). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_214.yml b/src/licensedcode/data/rules/bsd-new_214.yml deleted file mode 100644 index 28ef3aac2e5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_214.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_215.RULE b/src/licensedcode/data/rules/bsd-new_215.RULE index 52e7176cc63..a5f3aaf4003 100644 --- a/src/licensedcode/data/rules/bsd-new_215.RULE +++ b/src/licensedcode/data/rules/bsd-new_215.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + is BSD-licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_215.yml b/src/licensedcode/data/rules/bsd-new_215.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_216.RULE b/src/licensedcode/data/rules/bsd-new_216.RULE index 9152da8f077..1bda9d25cb0 100644 --- a/src/licensedcode/data/rules/bsd-new_216.RULE +++ b/src/licensedcode/data/rules/bsd-new_216.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/bsd-3-clause +--- + License: [`bsd-3-clause`](http://choosealicense.com/licenses/bsd-3-clause/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_216.yml b/src/licensedcode/data/rules/bsd-new_216.yml deleted file mode 100644 index 6846c2407e0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_216.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/bsd-3-clause diff --git a/src/licensedcode/data/rules/bsd-new_217.RULE b/src/licensedcode/data/rules/bsd-new_217.RULE index 368737007df..ceae1357b71 100644 --- a/src/licensedcode/data/rules/bsd-new_217.RULE +++ b/src/licensedcode/data/rules/bsd-new_217.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Code License: [BSD 3-Clause License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_217.yml b/src/licensedcode/data/rules/bsd-new_217.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_218.RULE b/src/licensedcode/data/rules/bsd-new_218.RULE index 78a2c9f5732..55e3563daec 100644 --- a/src/licensedcode/data/rules/bsd-new_218.RULE +++ b/src/licensedcode/data/rules/bsd-new_218.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + license-BSD3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_218.yml b/src/licensedcode/data/rules/bsd-new_218.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_219.RULE b/src/licensedcode/data/rules/bsd-new_219.RULE index 3dfe2f3f145..8711b374f87 100644 --- a/src/licensedcode/data/rules/bsd-new_219.RULE +++ b/src/licensedcode/data/rules/bsd-new_219.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 85 +ignorable_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +--- + is licensed under The BSD License (3 Clause, also known as the new BSD license). The license is an OSI approved Open Source license and is GPL-compatible(1). diff --git a/src/licensedcode/data/rules/bsd-new_219.yml b/src/licensedcode/data/rules/bsd-new_219.yml deleted file mode 100644 index f7d05b69d6a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_219.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 85 -ignorable_urls: - - http://www.opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_22.RULE b/src/licensedcode/data/rules/bsd-new_22.RULE index ca3c8fd4333..af8bf64c878 100644 --- a/src/licensedcode/data/rules/bsd-new_22.RULE +++ b/src/licensedcode/data/rules/bsd-new_22.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: Apple Mozilla variant +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: @@ -21,5 +27,4 @@ * 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. - + * 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_22.yml b/src/licensedcode/data/rules/bsd-new_22.yml deleted file mode 100644 index aba373adc96..00000000000 --- a/src/licensedcode/data/rules/bsd-new_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: Apple Mozilla variant diff --git a/src/licensedcode/data/rules/bsd-new_220.RULE b/src/licensedcode/data/rules/bsd-new_220.RULE index d1f8acf0f92..ed603266808 100644 --- a/src/licensedcode/data/rules/bsd-new_220.RULE +++ b/src/licensedcode/data/rules/bsd-new_220.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: openib +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_220.yml b/src/licensedcode/data/rules/bsd-new_220.yml deleted file mode 100644 index a4d219d37a9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: openib diff --git a/src/licensedcode/data/rules/bsd-new_221.RULE b/src/licensedcode/data/rules/bsd-new_221.RULE index b430b5418c9..3485754bbe7 100644 --- a/src/licensedcode/data/rules/bsd-new_221.RULE +++ b/src/licensedcode/data/rules/bsd-new_221.RULE @@ -1 +1,9 @@ -https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + +https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_221.yml b/src/licensedcode/data/rules/bsd-new_221.yml deleted file mode 100644 index a881da83bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_221.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_222.RULE b/src/licensedcode/data/rules/bsd-new_222.RULE index 13c88371228..a73a5c8a7b4 100644 --- a/src/licensedcode/data/rules/bsd-new_222.RULE +++ b/src/licensedcode/data/rules/bsd-new_222.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/bsd-new_222.yml b/src/licensedcode/data/rules/bsd-new_222.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_222.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_223.RULE b/src/licensedcode/data/rules/bsd-new_223.RULE index 3bc009a8715..e0281a7cdfa 100644 --- a/src/licensedcode/data/rules/bsd-new_223.RULE +++ b/src/licensedcode/data/rules/bsd-new_223.RULE @@ -1,7 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + .. _license: License ======= This software is licensed under the `New BSD License`. See the ``LICENSE`` -file in the top distribution directory for the full license text. +file in the top distribution directory for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_223.yml b/src/licensedcode/data/rules/bsd-new_223.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_223.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_224.RULE b/src/licensedcode/data/rules/bsd-new_224.RULE index 77bb62332da..a555344307a 100644 --- a/src/licensedcode/data/rules/bsd-new_224.RULE +++ b/src/licensedcode/data/rules/bsd-new_224.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + BSD License - :target: https://opensource.org/licenses/BSD-3-Clause + :target: https://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_224.yml b/src/licensedcode/data/rules/bsd-new_224.yml deleted file mode 100644 index a881da83bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_224.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_225.RULE b/src/licensedcode/data/rules/bsd-new_225.RULE index 3c28f60c3b2..514a18d7311 100644 --- a/src/licensedcode/data/rules/bsd-new_225.RULE +++ b/src/licensedcode/data/rules/bsd-new_225.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -18,4 +23,4 @@ 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. +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_225.yml b/src/licensedcode/data/rules/bsd-new_225.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_225.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_226.RULE b/src/licensedcode/data/rules/bsd-new_226.RULE index 9df4ca68718..8223c9840d6 100644 --- a/src/licensedcode/data/rules/bsd-new_226.RULE +++ b/src/licensedcode/data/rules/bsd-new_226.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_226.yml b/src/licensedcode/data/rules/bsd-new_226.yml deleted file mode 100644 index c73f22b6109..00000000000 --- a/src/licensedcode/data/rules/bsd-new_226.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_227.RULE b/src/licensedcode/data/rules/bsd-new_227.RULE index cf49d1b9699..94bb765edee 100644 --- a/src/licensedcode/data/rules/bsd-new_227.RULE +++ b/src/licensedcode/data/rules/bsd-new_227.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 80 +notes: this is used to point to a mentalis license in some rare usage. +--- + is available under the BSD license. See the [LICENSE file] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_227.yml b/src/licensedcode/data/rules/bsd-new_227.yml deleted file mode 100644 index 9fb207d7c18..00000000000 --- a/src/licensedcode/data/rules/bsd-new_227.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 80 -notes: this is used to point to a mentalis license in some rare usage. diff --git a/src/licensedcode/data/rules/bsd-new_228.RULE b/src/licensedcode/data/rules/bsd-new_228.RULE index bf9e51d088e..9f88ee6590c 100644 --- a/src/licensedcode/data/rules/bsd-new_228.RULE +++ b/src/licensedcode/data/rules/bsd-new_228.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + New BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_228.yml b/src/licensedcode/data/rules/bsd-new_228.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_229.RULE b/src/licensedcode/data/rules/bsd-new_229.RULE index 64b2a15c3ff..45d8e6ffcae 100644 --- a/src/licensedcode/data/rules/bsd-new_229.RULE +++ b/src/licensedcode/data/rules/bsd-new_229.RULE @@ -1 +1,6 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + is open source software licensed under the New BSD License. See the [LICENSE.txt](LICENSE.txt) file for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_229.yml b/src/licensedcode/data/rules/bsd-new_229.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_229.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_23.RULE b/src/licensedcode/data/rules/bsd-new_23.RULE index e61a2bcc6fd..1a7cb68261c 100644 --- a/src/licensedcode/data/rules/bsd-new_23.RULE +++ b/src/licensedcode/data/rules/bsd-new_23.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + code incorporated from 4.4 BSD is distributed under the following license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_23.yml b/src/licensedcode/data/rules/bsd-new_23.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_230.RULE b/src/licensedcode/data/rules/bsd-new_230.RULE index 593872d8485..3d263690533 100644 --- a/src/licensedcode/data/rules/bsd-new_230.RULE +++ b/src/licensedcode/data/rules/bsd-new_230.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -27,4 +32,4 @@ * 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 + * THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_230.yml b/src/licensedcode/data/rules/bsd-new_230.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_230.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_231.RULE b/src/licensedcode/data/rules/bsd-new_231.RULE index 8cd1a8beb6c..e94d5332c4f 100644 --- a/src/licensedcode/data/rules/bsd-new_231.RULE +++ b/src/licensedcode/data/rules/bsd-new_231.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + License: BSD-C3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_231.yml b/src/licensedcode/data/rules/bsd-new_231.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_232.RULE b/src/licensedcode/data/rules/bsd-new_232.RULE index fadbd17c995..6f85e0335f1 100644 --- a/src/licensedcode/data/rules/bsd-new_232.RULE +++ b/src/licensedcode/data/rules/bsd-new_232.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_232.yml b/src/licensedcode/data/rules/bsd-new_232.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_232.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_233.RULE b/src/licensedcode/data/rules/bsd-new_233.RULE index f61aaae8f83..0d9384236d5 100644 --- a/src/licensedcode/data/rules/bsd-new_233.RULE +++ b/src/licensedcode/data/rules/bsd-new_233.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_233.yml b/src/licensedcode/data/rules/bsd-new_233.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_233.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_234.RULE b/src/licensedcode/data/rules/bsd-new_234.RULE index e081a7f253d..b63a952c774 100644 --- a/src/licensedcode/data/rules/bsd-new_234.RULE +++ b/src/licensedcode/data/rules/bsd-new_234.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.php +--- + It is provided to you under the terms and conditions of the Eclipse Distribution License v1.0 which is available at http://www.eclipse.org/org/documents/edl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_234.yml b/src/licensedcode/data/rules/bsd-new_234.yml deleted file mode 100644 index 1f06cafbe9e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_234.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_235.RULE b/src/licensedcode/data/rules/bsd-new_235.RULE index 7fbe183e868..7040fa50460 100644 --- a/src/licensedcode/data/rules/bsd-new_235.RULE +++ b/src/licensedcode/data/rules/bsd-new_235.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_235.yml b/src/licensedcode/data/rules/bsd-new_235.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_235.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_236.RULE b/src/licensedcode/data/rules/bsd-new_236.RULE index e9ee9fb8e3f..bd666a8e691 100644 --- a/src/licensedcode/data/rules/bsd-new_236.RULE +++ b/src/licensedcode/data/rules/bsd-new_236.RULE @@ -1,3 +1,8 @@ +--- +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 Google 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 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 OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_236.yml b/src/licensedcode/data/rules/bsd-new_236.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_236.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_237.RULE b/src/licensedcode/data/rules/bsd-new_237.RULE index 13c3114e0db..9080db47ded 100644 --- a/src/licensedcode/data/rules/bsd-new_237.RULE +++ b/src/licensedcode/data/rules/bsd-new_237.RULE @@ -1,5 +1,10 @@ +--- +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 Google 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. +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_237.yml b/src/licensedcode/data/rules/bsd-new_237.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_237.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_238.RULE b/src/licensedcode/data/rules/bsd-new_238.RULE index 7fd38b1426d..913b09fed74 100644 --- a/src/licensedcode/data/rules/bsd-new_238.RULE +++ b/src/licensedcode/data/rules/bsd-new_238.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -18,4 +23,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_238.yml b/src/licensedcode/data/rules/bsd-new_238.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_238.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_239.RULE b/src/licensedcode/data/rules/bsd-new_239.RULE index 3cfb330b98a..4d04fc3fb74 100644 --- a/src/licensedcode/data/rules/bsd-new_239.RULE +++ b/src/licensedcode/data/rules/bsd-new_239.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + // The following code has the following copyright: Redistribution and use in source and binary forms, with or without @@ -20,7 +25,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. - - - +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_239.yml b/src/licensedcode/data/rules/bsd-new_239.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_239.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_24.RULE b/src/licensedcode/data/rules/bsd-new_24.RULE index 1dc88add7ac..59ed19f2aaa 100644 --- a/src/licensedcode/data/rules/bsd-new_24.RULE +++ b/src/licensedcode/data/rules/bsd-new_24.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + All code incorporated from 4.4 BSD is distributed under the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_24.yml b/src/licensedcode/data/rules/bsd-new_24.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_240.RULE b/src/licensedcode/data/rules/bsd-new_240.RULE index 8df63a0c1c6..7bdd93dacdc 100644 --- a/src/licensedcode/data/rules/bsd-new_240.RULE +++ b/src/licensedcode/data/rules/bsd-new_240.RULE @@ -1,6 +1,14 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + ***** BEGIN LICENSE BLOCK ***** THIS FILE IS PART OF THE MOZILLA NPAPI SDK BASIC PLUGIN SAMPLE SOURCE CODE. USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS -SOURCE IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. +SOURCE IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_240.yml b/src/licensedcode/data/rules/bsd-new_240.yml deleted file mode 100644 index 17b644d33ee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_240.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_241.RULE b/src/licensedcode/data/rules/bsd-new_241.RULE index 7eeb07796cc..e51dc12d329 100644 --- a/src/licensedcode/data/rules/bsd-new_241.RULE +++ b/src/licensedcode/data/rules/bsd-new_241.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.mozilla.com/ +--- + /* ***** BEGIN LICENSE BLOCK ***** * * THIS FILE IS PART OF THE MOZILLA NPAPI SDK BASIC PLUGIN SAMPLE diff --git a/src/licensedcode/data/rules/bsd-new_241.yml b/src/licensedcode/data/rules/bsd-new_241.yml deleted file mode 100644 index 33d24dcfb9d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_241.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.mozilla.com/ diff --git a/src/licensedcode/data/rules/bsd-new_241_1.RULE b/src/licensedcode/data/rules/bsd-new_241_1.RULE index 24ba7bbfdbb..c16feafa1c9 100644 --- a/src/licensedcode/data/rules/bsd-new_241_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_241_1.RULE @@ -1,4 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - COPYING +--- + * THIS FILE IS PART OF THE MOZILLA NPAPI SDK BASIC PLUGIN SAMPLE * SOURCE CODE. USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE * IS GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS - * SOURCE IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. + * SOURCE IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_241_1.yml b/src/licensedcode/data/rules/bsd-new_241_1.yml deleted file mode 100644 index 7053b97bfa8..00000000000 --- a/src/licensedcode/data/rules/bsd-new_241_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_241_2.RULE b/src/licensedcode/data/rules/bsd-new_241_2.RULE index 4243a2c61d7..3a0f7c7d634 100644 --- a/src/licensedcode/data/rules/bsd-new_241_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_241_2.RULE @@ -1,6 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + * THIS FILE IS PART OF THE SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * - * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * - \ No newline at end of file + * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_241_2.yml b/src/licensedcode/data/rules/bsd-new_241_2.yml deleted file mode 100644 index 17b644d33ee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_241_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_241_3.RULE b/src/licensedcode/data/rules/bsd-new_241_3.RULE index 779a75ae35e..013953add63 100644 --- a/src/licensedcode/data/rules/bsd-new_241_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_241_3.RULE @@ -1,4 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * - * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * - \ No newline at end of file + * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_241_3.yml b/src/licensedcode/data/rules/bsd-new_241_3.yml deleted file mode 100644 index 17b644d33ee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_241_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_241_4.RULE b/src/licensedcode/data/rules/bsd-new_241_4.RULE index 845c3723df7..44d82aefc9b 100644 --- a/src/licensedcode/data/rules/bsd-new_241_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_241_4.RULE @@ -1,4 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * - * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * - \ No newline at end of file + * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_241_4.yml b/src/licensedcode/data/rules/bsd-new_241_4.yml deleted file mode 100644 index 17b644d33ee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_241_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_242.RULE b/src/licensedcode/data/rules/bsd-new_242.RULE index 048a64e1217..cd46e91bb71 100644 --- a/src/licensedcode/data/rules/bsd-new_242.RULE +++ b/src/licensedcode/data/rules/bsd-new_242.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + is licensed under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_242.yml b/src/licensedcode/data/rules/bsd-new_242.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_243.RULE b/src/licensedcode/data/rules/bsd-new_243.RULE index aa7a25285cc..eaf11d4098e 100644 --- a/src/licensedcode/data/rules/bsd-new_243.RULE +++ b/src/licensedcode/data/rules/bsd-new_243.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + The BSD License http://opensource.org/licenses/bsd-license.php @@ -8,4 +15,4 @@ Redistributions of source code must retain the above copyright notice, this list 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 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 OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +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 OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_243.yml b/src/licensedcode/data/rules/bsd-new_243.yml deleted file mode 100644 index ddc57668b80..00000000000 --- a/src/licensedcode/data/rules/bsd-new_243.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_244.RULE b/src/licensedcode/data/rules/bsd-new_244.RULE index 1f52bb1a391..c77164be583 100644 --- a/src/licensedcode/data/rules/bsd-new_244.RULE +++ b/src/licensedcode/data/rules/bsd-new_244.RULE @@ -1 +1,7 @@ -License: BS3 3-Clause +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 80 +--- + +License: BS3 3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_244.yml b/src/licensedcode/data/rules/bsd-new_244.yml deleted file mode 100644 index 40d734736e2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/bsd-new_245.RULE b/src/licensedcode/data/rules/bsd-new_245.RULE index da14b926f0d..9983e8bcc44 100644 --- a/src/licensedcode/data/rules/bsd-new_245.RULE +++ b/src/licensedcode/data/rules/bsd-new_245.RULE @@ -1,2 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + All the software is licensed under the Modified BSD license. So you are free to use it and incorporate it into any package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_245.yml b/src/licensedcode/data/rules/bsd-new_245.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_245.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_246.RULE b/src/licensedcode/data/rules/bsd-new_246.RULE index e2618a72cc9..9ff7a52c533 100644 --- a/src/licensedcode/data/rules/bsd-new_246.RULE +++ b/src/licensedcode/data/rules/bsd-new_246.RULE @@ -1,2 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +--- + is open source software licensed under the BSD 3-Clause License. See the LICENSE.txt file for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_246.yml b/src/licensedcode/data/rules/bsd-new_246.yml deleted file mode 100644 index f19629f4b37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_246.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes diff --git a/src/licensedcode/data/rules/bsd-new_247.RULE b/src/licensedcode/data/rules/bsd-new_247.RULE index 4dc6180d9be..90ad95959cf 100644 --- a/src/licensedcode/data/rules/bsd-new_247.RULE +++ b/src/licensedcode/data/rules/bsd-new_247.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 96 +--- + This is licensed under the BSD license: Redistribution and use in source and binary forms, with or without @@ -23,5 +29,4 @@ 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. - +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_247.yml b/src/licensedcode/data/rules/bsd-new_247.yml deleted file mode 100644 index bffe351d0c3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 96 diff --git a/src/licensedcode/data/rules/bsd-new_248.RULE b/src/licensedcode/data/rules/bsd-new_248.RULE index e0e85d14883..592cf83871b 100644 --- a/src/licensedcode/data/rules/bsd-new_248.RULE +++ b/src/licensedcode/data/rules/bsd-new_248.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + This is licensed under the BSD license, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_248.yml b/src/licensedcode/data/rules/bsd-new_248.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_249.RULE b/src/licensedcode/data/rules/bsd-new_249.RULE index f2283e485ca..b23891c2525 100644 --- a/src/licensedcode/data/rules/bsd-new_249.RULE +++ b/src/licensedcode/data/rules/bsd-new_249.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + This is licensed under the BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_249.yml b/src/licensedcode/data/rules/bsd-new_249.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_25.RULE b/src/licensedcode/data/rules/bsd-new_25.RULE index 124c6767c74..8d6136dbff6 100644 --- a/src/licensedcode/data/rules/bsd-new_25.RULE +++ b/src/licensedcode/data/rules/bsd-new_25.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +notes: Found in Chromium and Go. There are also some use of the same notice with a bsd-simplified +--- + Use of this source code is i{{ governed by a BSD-style license }} that can be found in the -LICENSE file. +LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_25.yml b/src/licensedcode/data/rules/bsd-new_25.yml deleted file mode 100644 index 9293f12dcbb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE -notes: Found in Chromium and Go. There are also some use of the same notice with a bsd-simplified diff --git a/src/licensedcode/data/rules/bsd-new_250.RULE b/src/licensedcode/data/rules/bsd-new_250.RULE index 10ffc2106c5..cea9caa15bd 100644 --- a/src/licensedcode/data/rules/bsd-new_250.RULE +++ b/src/licensedcode/data/rules/bsd-new_250.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -14,5 +19,4 @@ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR 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. - +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_250.yml b/src/licensedcode/data/rules/bsd-new_250.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_250.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_251.RULE b/src/licensedcode/data/rules/bsd-new_251.RULE index 183bec17e1d..5d0e9a58b05 100644 --- a/src/licensedcode/data/rules/bsd-new_251.RULE +++ b/src/licensedcode/data/rules/bsd-new_251.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -6,4 +11,4 @@ Redistribution and use in source and binary forms, with or without modification, * Neither the name of , 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 MERCHANT ABILITY 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. +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 MERCHANT ABILITY 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_251.yml b/src/licensedcode/data/rules/bsd-new_251.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_251.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_252.RULE b/src/licensedcode/data/rules/bsd-new_252.RULE index 0ea96007fbc..f32f0f0107b 100644 --- a/src/licensedcode/data/rules/bsd-new_252.RULE +++ b/src/licensedcode/data/rules/bsd-new_252.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - License.txt +--- + Licensed under the BSD 3-Clause License; see License.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_252.yml b/src/licensedcode/data/rules/bsd-new_252.yml deleted file mode 100644 index f9685b24989..00000000000 --- a/src/licensedcode/data/rules/bsd-new_252.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/bsd-new_253.RULE b/src/licensedcode/data/rules/bsd-new_253.RULE index 9c3e825abff..27d133c2e9c 100644 --- a/src/licensedcode/data/rules/bsd-new_253.RULE +++ b/src/licensedcode/data/rules/bsd-new_253.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.txt +--- + Licensed under the BSD License. See LICENSE.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_253.yml b/src/licensedcode/data/rules/bsd-new_253.yml deleted file mode 100644 index f8fd8d4728c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_253.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_254.RULE b/src/licensedcode/data/rules/bsd-new_254.RULE index 0b87b965e12..d8f6d082510 100644 --- a/src/licensedcode/data/rules/bsd-new_254.RULE +++ b/src/licensedcode/data/rules/bsd-new_254.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + Licensed under the BSD License. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_254.yml b/src/licensedcode/data/rules/bsd-new_254.yml deleted file mode 100644 index b6c8dec56ad..00000000000 --- a/src/licensedcode/data/rules/bsd-new_254.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_255.RULE b/src/licensedcode/data/rules/bsd-new_255.RULE index 1975e68abca..b5fb2d93b7c 100644 --- a/src/licensedcode/data/rules/bsd-new_255.RULE +++ b/src/licensedcode/data/rules/bsd-new_255.RULE @@ -1 +1,7 @@ -Open Source Software Licensed Under the BSD License: +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + +Open Source Software Licensed Under the BSD License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_255.yml b/src/licensedcode/data/rules/bsd-new_255.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_255.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_256.RULE b/src/licensedcode/data/rules/bsd-new_256.RULE index 8f876e8410a..24a0807aec9 100644 --- a/src/licensedcode/data/rules/bsd-new_256.RULE +++ b/src/licensedcode/data/rules/bsd-new_256.RULE @@ -1,7 +1,12 @@ +--- +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 copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. +THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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-new_256.yml b/src/licensedcode/data/rules/bsd-new_256.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_256.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_257.RULE b/src/licensedcode/data/rules/bsd-new_257.RULE index cb48e42fbf4..33d39d4dd13 100644 --- a/src/licensedcode/data/rules/bsd-new_257.RULE +++ b/src/licensedcode/data/rules/bsd-new_257.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Open Source Software Licensed Under the BSD License: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -6,4 +11,4 @@ Redistribution and use in source and binary forms, with or without modification, * 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 copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. +THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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-new_257.yml b/src/licensedcode/data/rules/bsd-new_257.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_257.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_258.RULE b/src/licensedcode/data/rules/bsd-new_258.RULE index 51f8a26a72c..f6d6ee5045b 100644 --- a/src/licensedcode/data/rules/bsd-new_258.RULE +++ b/src/licensedcode/data/rules/bsd-new_258.RULE @@ -1 +1,7 @@ -License New BSD License +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + +License New BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_258.yml b/src/licensedcode/data/rules/bsd-new_258.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_259.RULE b/src/licensedcode/data/rules/bsd-new_259.RULE index 60f0e8aab4d..a2ee5d9098d 100644 --- a/src/licensedcode/data/rules/bsd-new_259.RULE +++ b/src/licensedcode/data/rules/bsd-new_259.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +referenced_filenames: + - COPYING-CMAKE-SCRIPTS +--- + Redistribution and use is allowed according to the terms of the BSD license. -For details see the accompanying COPYING-CMAKE-SCRIPTS file. +For details see the accompanying COPYING-CMAKE-SCRIPTS file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_259.yml b/src/licensedcode/data/rules/bsd-new_259.yml deleted file mode 100644 index ec64ad4ac45..00000000000 --- a/src/licensedcode/data/rules/bsd-new_259.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -referenced_filenames: - - COPYING-CMAKE-SCRIPTS diff --git a/src/licensedcode/data/rules/bsd-new_25_1.RULE b/src/licensedcode/data/rules/bsd-new_25_1.RULE index 39670a7aaff..562f626f51d 100644 --- a/src/licensedcode/data/rules/bsd-new_25_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_25_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +referenced_filenames: + - BSD_LICENSE +--- + Use of this source code is governed by a BSD-style license that can be found in the BSD_LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_25_1.yml b/src/licensedcode/data/rules/bsd-new_25_1.yml deleted file mode 100644 index 102e324f4fa..00000000000 --- a/src/licensedcode/data/rules/bsd-new_25_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 -referenced_filenames: - - BSD_LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_25_2.RULE b/src/licensedcode/data/rules/bsd-new_25_2.RULE index 1a5cb54b63e..8ae12dfa237 100644 --- a/src/licensedcode/data/rules/bsd-new_25_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_25_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + available under the same style of BSD license as the Go language, which can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_25_2.yml b/src/licensedcode/data/rules/bsd-new_25_2.yml deleted file mode 100644 index 46cf842e29b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_25_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_26.RULE b/src/licensedcode/data/rules/bsd-new_26.RULE index 7a4ba3e472c..1c7638335b4 100644 --- a/src/licensedcode/data/rules/bsd-new_26.RULE +++ b/src/licensedcode/data/rules/bsd-new_26.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_26.yml b/src/licensedcode/data/rules/bsd-new_26.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_260.RULE b/src/licensedcode/data/rules/bsd-new_260.RULE index 4abf3481fb5..d32ef9c6c25 100644 --- a/src/licensedcode/data/rules/bsd-new_260.RULE +++ b/src/licensedcode/data/rules/bsd-new_260.RULE @@ -1 +1,7 @@ -Redistribution and use is allowed according to the terms of the BSD license. +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +Redistribution and use is allowed according to the terms of the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_260.yml b/src/licensedcode/data/rules/bsd-new_260.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_261.RULE b/src/licensedcode/data/rules/bsd-new_261.RULE index 979e586b9a9..f4425af23d0 100644 --- a/src/licensedcode/data/rules/bsd-new_261.RULE +++ b/src/licensedcode/data/rules/bsd-new_261.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license +--- + http://www.opensource.org/licenses/bsd-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_261.yml b/src/licensedcode/data/rules/bsd-new_261.yml deleted file mode 100644 index 36d9813db6e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_261.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new_262.RULE b/src/licensedcode/data/rules/bsd-new_262.RULE index 8ef78cfa39a..2806fad1c37 100644 --- a/src/licensedcode/data/rules/bsd-new_262.RULE +++ b/src/licensedcode/data/rules/bsd-new_262.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/bsd-license +--- + https://www.opensource.org/licenses/bsd-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_262.yml b/src/licensedcode/data/rules/bsd-new_262.yml deleted file mode 100644 index 2729beca475..00000000000 --- a/src/licensedcode/data/rules/bsd-new_262.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new_263.RULE b/src/licensedcode/data/rules/bsd-new_263.RULE index 77062595bd7..082430cad48 100644 --- a/src/licensedcode/data/rules/bsd-new_263.RULE +++ b/src/licensedcode/data/rules/bsd-new_263.RULE @@ -1 +1,9 @@ -(BSD License: http://www.opensource.org/licenses/bsd-license) +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license +--- + +(BSD License: http://www.opensource.org/licenses/bsd-license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_263.yml b/src/licensedcode/data/rules/bsd-new_263.yml deleted file mode 100644 index 18354fdf8b2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_263.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new_264.RULE b/src/licensedcode/data/rules/bsd-new_264.RULE index a22285ad577..ed78fcb3bf0 100644 --- a/src/licensedcode/data/rules/bsd-new_264.RULE +++ b/src/licensedcode/data/rules/bsd-new_264.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license +--- + (BSD License: http://www.opensource.org/licenses/bsd-license) Redistribution and use in source and binary forms, with or @@ -31,4 +38,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_264.yml b/src/licensedcode/data/rules/bsd-new_264.yml deleted file mode 100644 index fd592b10969..00000000000 --- a/src/licensedcode/data/rules/bsd-new_264.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new_265.RULE b/src/licensedcode/data/rules/bsd-new_265.RULE index fd93f89afcc..0fb6108c0aa 100644 --- a/src/licensedcode/data/rules/bsd-new_265.RULE +++ b/src/licensedcode/data/rules/bsd-new_265.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 99 +--- + Software License Agreement (BSD License) ======================================== @@ -25,5 +31,4 @@ 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. - +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_265.yml b/src/licensedcode/data/rules/bsd-new_265.yml deleted file mode 100644 index af5b7b99c3e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_266.RULE b/src/licensedcode/data/rules/bsd-new_266.RULE index b44da9bd204..868fdbba173 100644 --- a/src/licensedcode/data/rules/bsd-new_266.RULE +++ b/src/licensedcode/data/rules/bsd-new_266.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +referenced_filenames: + - README +--- + This software may be distributed under the terms of the BSD license. See README for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_266.yml b/src/licensedcode/data/rules/bsd-new_266.yml deleted file mode 100644 index 2fcd31f9e15..00000000000 --- a/src/licensedcode/data/rules/bsd-new_266.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/bsd-new_267.RULE b/src/licensedcode/data/rules/bsd-new_267.RULE index c762d7c8404..82d04dbe204 100644 --- a/src/licensedcode/data/rules/bsd-new_267.RULE +++ b/src/licensedcode/data/rules/bsd-new_267.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -27,4 +35,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This is the standard "new" BSD license: - http://www.opensource.org/licenses/bsd-license.php + http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_267.yml b/src/licensedcode/data/rules/bsd-new_267.yml deleted file mode 100644 index 63e617cf8fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_267.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_268.RULE b/src/licensedcode/data/rules/bsd-new_268.RULE index a7d62cb44ee..84208b431b7 100644 --- a/src/licensedcode/data/rules/bsd-new_268.RULE +++ b/src/licensedcode/data/rules/bsd-new_268.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + This is the standard "new" BSD license: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_268.yml b/src/licensedcode/data/rules/bsd-new_268.yml deleted file mode 100644 index 61e08468ac4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_268.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_269.RULE b/src/licensedcode/data/rules/bsd-new_269.RULE index aaabddf5789..42c485979a8 100644 --- a/src/licensedcode/data/rules/bsd-new_269.RULE +++ b/src/licensedcode/data/rules/bsd-new_269.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 @@ -18,4 +24,4 @@ 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. + 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_269.yml b/src/licensedcode/data/rules/bsd-new_269.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_27.RULE b/src/licensedcode/data/rules/bsd-new_27.RULE index 3d54d6046c1..b5dd98ea7b6 100644 --- a/src/licensedcode/data/rules/bsd-new_27.RULE +++ b/src/licensedcode/data/rules/bsd-new_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 90 +notes: BSD new variant, Wasabi +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +27,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_27.yml b/src/licensedcode/data/rules/bsd-new_27.yml deleted file mode 100644 index 62593f2fdee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 90 -notes: BSD new variant, Wasabi diff --git a/src/licensedcode/data/rules/bsd-new_270.RULE b/src/licensedcode/data/rules/bsd-new_270.RULE index dfb665ef09d..6758132f9bf 100644 --- a/src/licensedcode/data/rules/bsd-new_270.RULE +++ b/src/licensedcode/data/rules/bsd-new_270.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +notes: in the past this URL was pointing to a bsd-new and now bsd-simplified +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + # The BSD License - # http://opensource.org/licenses/bsd-license.php + # http://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_270.yml b/src/licensedcode/data/rules/bsd-new_270.yml deleted file mode 100644 index f1b483bb656..00000000000 --- a/src/licensedcode/data/rules/bsd-new_270.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -notes: in the past this URL was pointing to a bsd-new and now bsd-simplified -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_271.RULE b/src/licensedcode/data/rules/bsd-new_271.RULE index 72fbd014447..30dc8a5a362 100644 --- a/src/licensedcode/data/rules/bsd-new_271.RULE +++ b/src/licensedcode/data/rules/bsd-new_271.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_271.yml b/src/licensedcode/data/rules/bsd-new_271.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_271.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_272.RULE b/src/licensedcode/data/rules/bsd-new_272.RULE index 8fee4cb1073..1cf8bd01d8b 100644 --- a/src/licensedcode/data/rules/bsd-new_272.RULE +++ b/src/licensedcode/data/rules/bsd-new_272.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_272.yml b/src/licensedcode/data/rules/bsd-new_272.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_272.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_273.RULE b/src/licensedcode/data/rules/bsd-new_273.RULE index 558a150ff55..2ebf4c9dc54 100644 --- a/src/licensedcode/data/rules/bsd-new_273.RULE +++ b/src/licensedcode/data/rules/bsd-new_273.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_273.yml b/src/licensedcode/data/rules/bsd-new_273.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_273.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_274.RULE b/src/licensedcode/data/rules/bsd-new_274.RULE index fc64bd61cf7..3d5aa3bec9b 100644 --- a/src/licensedcode/data/rules/bsd-new_274.RULE +++ b/src/licensedcode/data/rules/bsd-new_274.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +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_274.yml b/src/licensedcode/data/rules/bsd-new_274.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_274.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_275.RULE b/src/licensedcode/data/rules/bsd-new_275.RULE index c09662afd69..1430b41b948 100644 --- a/src/licensedcode/data/rules/bsd-new_275.RULE +++ b/src/licensedcode/data/rules/bsd-new_275.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + This software is distributed under the terms of the BSD License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the @@ -23,4 +28,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_275.yml b/src/licensedcode/data/rules/bsd-new_275.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_275.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_276.RULE b/src/licensedcode/data/rules/bsd-new_276.RULE index fb8184466f0..d674a3e868e 100644 --- a/src/licensedcode/data/rules/bsd-new_276.RULE +++ b/src/licensedcode/data/rules/bsd-new_276.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_276.yml b/src/licensedcode/data/rules/bsd-new_276.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_276.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_277.RULE b/src/licensedcode/data/rules/bsd-new_277.RULE index f4a65c3cb07..a972c946d94 100644 --- a/src/licensedcode/data/rules/bsd-new_277.RULE +++ b/src/licensedcode/data/rules/bsd-new_277.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: there is a typos +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_277.yml b/src/licensedcode/data/rules/bsd-new_277.yml deleted file mode 100644 index 1fec5ca35e7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_277.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: there is a typos diff --git a/src/licensedcode/data/rules/bsd-new_278.RULE b/src/licensedcode/data/rules/bsd-new_278.RULE index 6cb1b6828c8..e363f07245a 100644 --- a/src/licensedcode/data/rules/bsd-new_278.RULE +++ b/src/licensedcode/data/rules/bsd-new_278.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/bsd-new_278.yml b/src/licensedcode/data/rules/bsd-new_278.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_278.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_279.RULE b/src/licensedcode/data/rules/bsd-new_279.RULE index 750d933400c..0cb17c9acd1 100644 --- a/src/licensedcode/data/rules/bsd-new_279.RULE +++ b/src/licensedcode/data/rules/bsd-new_279.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +25,4 @@ 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. + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_279.yml b/src/licensedcode/data/rules/bsd-new_279.yml deleted file mode 100644 index f19629f4b37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_279.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes diff --git a/src/licensedcode/data/rules/bsd-new_28.RULE b/src/licensedcode/data/rules/bsd-new_28.RULE index 5c1a9cb29e2..30cd33f2b7e 100644 --- a/src/licensedcode/data/rules/bsd-new_28.RULE +++ b/src/licensedcode/data/rules/bsd-new_28.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +notes: bsdn notice variant, debian style +--- + License: Software licensed under the BSD license, see /usr/share/common-licenses/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_28.yml b/src/licensedcode/data/rules/bsd-new_28.yml deleted file mode 100644 index 847cb9da475..00000000000 --- a/src/licensedcode/data/rules/bsd-new_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -notes: bsdn notice variant, debian style diff --git a/src/licensedcode/data/rules/bsd-new_280.RULE b/src/licensedcode/data/rules/bsd-new_280.RULE index b17042ae5dd..20a6220f130 100644 --- a/src/licensedcode/data/rules/bsd-new_280.RULE +++ b/src/licensedcode/data/rules/bsd-new_280.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +--- + If you choose to use this file in compliance with the BSD License, the following notice applies to you: @@ -23,4 +28,4 @@ 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. + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_280.yml b/src/licensedcode/data/rules/bsd-new_280.yml deleted file mode 100644 index f19629f4b37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_280.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes diff --git a/src/licensedcode/data/rules/bsd-new_281.RULE b/src/licensedcode/data/rules/bsd-new_281.RULE index dffd618b183..765e09dbf13 100644 --- a/src/licensedcode/data/rules/bsd-new_281.RULE +++ b/src/licensedcode/data/rules/bsd-new_281.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under the New BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_281.yml b/src/licensedcode/data/rules/bsd-new_281.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_282.RULE b/src/licensedcode/data/rules/bsd-new_282.RULE index ef7b6a40bd1..3bcbcd8c2cd 100644 --- a/src/licensedcode/data/rules/bsd-new_282.RULE +++ b/src/licensedcode/data/rules/bsd-new_282.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + under the BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_282.yml b/src/licensedcode/data/rules/bsd-new_282.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_283.RULE b/src/licensedcode/data/rules/bsd-new_283.RULE index dfe9ede0d89..0ec73bc71b4 100644 --- a/src/licensedcode/data/rules/bsd-new_283.RULE +++ b/src/licensedcode/data/rules/bsd-new_283.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + The terms of use of the software are governed by the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_283.yml b/src/licensedcode/data/rules/bsd-new_283.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_283.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_284.RULE b/src/licensedcode/data/rules/bsd-new_284.RULE index f68c47c0879..c0f5734c242 100644 --- a/src/licensedcode/data/rules/bsd-new_284.RULE +++ b/src/licensedcode/data/rules/bsd-new_284.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + is released under the new BSD 3-clause license. See LICENSE.txt for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_284.yml b/src/licensedcode/data/rules/bsd-new_284.yml deleted file mode 100644 index 9eae0edd739..00000000000 --- a/src/licensedcode/data/rules/bsd-new_284.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_285.RULE b/src/licensedcode/data/rules/bsd-new_285.RULE index f1a011ee7a3..cd69481913a 100644 --- a/src/licensedcode/data/rules/bsd-new_285.RULE +++ b/src/licensedcode/data/rules/bsd-new_285.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + License You may use under the terms of the BSD-style license described in the enclosed LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_285.yml b/src/licensedcode/data/rules/bsd-new_285.yml deleted file mode 100644 index f894fca76cd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_285.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_286.RULE b/src/licensedcode/data/rules/bsd-new_286.RULE index 4d5185e92c7..c8a056df3c2 100644 --- a/src/licensedcode/data/rules/bsd-new_286.RULE +++ b/src/licensedcode/data/rules/bsd-new_286.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + which have been permitted for use under the -BSD license. +BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_286.yml b/src/licensedcode/data/rules/bsd-new_286.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_286.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_287.RULE b/src/licensedcode/data/rules/bsd-new_287.RULE index 9df14276c39..8377c2e459e 100644 --- a/src/licensedcode/data/rules/bsd-new_287.RULE +++ b/src/licensedcode/data/rules/bsd-new_287.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/lxml/lxml +--- + Parts are from lxml (https://github.com/lxml/lxml \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_287.yml b/src/licensedcode/data/rules/bsd-new_287.yml deleted file mode 100644 index 9c7e43e4491..00000000000 --- a/src/licensedcode/data/rules/bsd-new_287.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/lxml/lxml diff --git a/src/licensedcode/data/rules/bsd-new_288.RULE b/src/licensedcode/data/rules/bsd-new_288.RULE index 392ba41246a..dddb538d319 100644 --- a/src/licensedcode/data/rules/bsd-new_288.RULE +++ b/src/licensedcode/data/rules/bsd-new_288.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + source used under the New BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_288.yml b/src/licensedcode/data/rules/bsd-new_288.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_289.RULE b/src/licensedcode/data/rules/bsd-new_289.RULE index e3fc105c7f2..46236b218da 100644 --- a/src/licensedcode/data/rules/bsd-new_289.RULE +++ b/src/licensedcode/data/rules/bsd-new_289.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + is licensed under the terms of the Modified BSD License (also known as New or Revised BSD), as follows: diff --git a/src/licensedcode/data/rules/bsd-new_289.yml b/src/licensedcode/data/rules/bsd-new_289.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_289.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_29.RULE b/src/licensedcode/data/rules/bsd-new_29.RULE index c732e1039a2..de1a23bbe73 100644 --- a/src/licensedcode/data/rules/bsd-new_29.RULE +++ b/src/licensedcode/data/rules/bsd-new_29.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -23,5 +28,4 @@ * 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 + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_29.yml b/src/licensedcode/data/rules/bsd-new_29.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_290.RULE b/src/licensedcode/data/rules/bsd-new_290.RULE index 405e1367500..d60a88bdb0d 100644 --- a/src/licensedcode/data/rules/bsd-new_290.RULE +++ b/src/licensedcode/data/rules/bsd-new_290.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + This project bundles the following dependencies under the BSD license. See bundled license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_290.yml b/src/licensedcode/data/rules/bsd-new_290.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_291.RULE b/src/licensedcode/data/rules/bsd-new_291.RULE index a7a519de673..8fa5d1e7018 100644 --- a/src/licensedcode/data/rules/bsd-new_291.RULE +++ b/src/licensedcode/data/rules/bsd-new_291.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + # Software is free software released under the "Modified BSD license" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_291.yml b/src/licensedcode/data/rules/bsd-new_291.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_292.RULE b/src/licensedcode/data/rules/bsd-new_292.RULE index 2227f171e4d..4819edd5a7a 100644 --- a/src/licensedcode/data/rules/bsd-new_292.RULE +++ b/src/licensedcode/data/rules/bsd-new_292.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_continuous: yes +relevance: 90 +--- + a BSD-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_292.yml b/src/licensedcode/data/rules/bsd-new_292.yml deleted file mode 100644 index beaf38c4478..00000000000 --- a/src/licensedcode/data/rules/bsd-new_292.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -is_continuous: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_293.RULE b/src/licensedcode/data/rules/bsd-new_293.RULE index 9bb21ef902e..02cecdcc7b6 100644 --- a/src/licensedcode/data/rules/bsd-new_293.RULE +++ b/src/licensedcode/data/rules/bsd-new_293.RULE @@ -1,6 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING +--- + ## License ## THIS FILE IS PART OF THE SOFTWARE SOURCE CODE. USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE -IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. +IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_293.yml b/src/licensedcode/data/rules/bsd-new_293.yml deleted file mode 100644 index a093b9b7e36..00000000000 --- a/src/licensedcode/data/rules/bsd-new_293.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_294.RULE b/src/licensedcode/data/rules/bsd-new_294.RULE index fc7b1541ff6..3bbae88fda2 100644 --- a/src/licensedcode/data/rules/bsd-new_294.RULE +++ b/src/licensedcode/data/rules/bsd-new_294.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + a BSD-license implementation of the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_294.yml b/src/licensedcode/data/rules/bsd-new_294.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_295.RULE b/src/licensedcode/data/rules/bsd-new_295.RULE index 4e9f113b9ba..b75ebd78ca6 100644 --- a/src/licensedcode/data/rules/bsd-new_295.RULE +++ b/src/licensedcode/data/rules/bsd-new_295.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +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_295.yml b/src/licensedcode/data/rules/bsd-new_295.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_295.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_296.RULE b/src/licensedcode/data/rules/bsd-new_296.RULE index f144c997674..75929e1e657 100644 --- a/src/licensedcode/data/rules/bsd-new_296.RULE +++ b/src/licensedcode/data/rules/bsd-new_296.RULE @@ -1,4 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING +--- + * THIS FILE IS PART OF THE SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * - * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * + * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_296.yml b/src/licensedcode/data/rules/bsd-new_296.yml deleted file mode 100644 index a093b9b7e36..00000000000 --- a/src/licensedcode/data/rules/bsd-new_296.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_297.RULE b/src/licensedcode/data/rules/bsd-new_297.RULE index 10f637e91de..2165b86894b 100644 --- a/src/licensedcode/data/rules/bsd-new_297.RULE +++ b/src/licensedcode/data/rules/bsd-new_297.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 85 +--- + This program is licensed under the BSD license (the one with advertisement clause removed). diff --git a/src/licensedcode/data/rules/bsd-new_297.yml b/src/licensedcode/data/rules/bsd-new_297.yml deleted file mode 100644 index ef50c898bae..00000000000 --- a/src/licensedcode/data/rules/bsd-new_297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_298.RULE b/src/licensedcode/data/rules/bsd-new_298.RULE index b62cbe7d5f6..af42bcd6556 100644 --- a/src/licensedcode/data/rules/bsd-new_298.RULE +++ b/src/licensedcode/data/rules/bsd-new_298.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 90 +--- + This program is licensed under the BSD license (the one with advertisement clause removed). diff --git a/src/licensedcode/data/rules/bsd-new_298.yml b/src/licensedcode/data/rules/bsd-new_298.yml deleted file mode 100644 index cb9b802838d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_299.RULE b/src/licensedcode/data/rules/bsd-new_299.RULE index ee41e29ec9c..f14af4f61cc 100644 --- a/src/licensedcode/data/rules/bsd-new_299.RULE +++ b/src/licensedcode/data/rules/bsd-new_299.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 99 +--- + diff --git a/src/licensedcode/data/rules/bsd-new_299.yml b/src/licensedcode/data/rules/bsd-new_299.yml deleted file mode 100644 index af5b7b99c3e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_3.RULE b/src/licensedcode/data/rules/bsd-new_3.RULE index 7d45715bf75..8b68613920e 100644 --- a/src/licensedcode/data/rules/bsd-new_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_3.RULE @@ -1,7 +1,13 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: ISC as used in DHCP +--- + 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 Internet Software Consortium - DHCP 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 INTERNET SOFTWARE CONSORTIUM 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 INTERNET SOFTWARE CONSORTIUM 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 + THIS SOFTWARE IS PROVIDED BY INTERNET SOFTWARE CONSORTIUM 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 INTERNET SOFTWARE CONSORTIUM 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_3.yml b/src/licensedcode/data/rules/bsd-new_3.yml deleted file mode 100644 index 7ab63583b07..00000000000 --- a/src/licensedcode/data/rules/bsd-new_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: ISC as used in DHCP diff --git a/src/licensedcode/data/rules/bsd-new_30.RULE b/src/licensedcode/data/rules/bsd-new_30.RULE index 8499d3d5d05..96302fdad65 100644 --- a/src/licensedcode/data/rules/bsd-new_30.RULE +++ b/src/licensedcode/data/rules/bsd-new_30.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_30.yml b/src/licensedcode/data/rules/bsd-new_30.yml deleted file mode 100644 index 61e08468ac4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_300.RULE b/src/licensedcode/data/rules/bsd-new_300.RULE index 96a99f6ec9e..d7d25878af6 100644 --- a/src/licensedcode/data/rules/bsd-new_300.RULE +++ b/src/licensedcode/data/rules/bsd-new_300.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This program is licensed under the BSD license (the one with -advertisement clause removed). +advertisement clause removed). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_300.yml b/src/licensedcode/data/rules/bsd-new_300.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_301.RULE b/src/licensedcode/data/rules/bsd-new_301.RULE index ed54df486dd..aa7bb240f12 100644 --- a/src/licensedcode/data/rules/bsd-new_301.RULE +++ b/src/licensedcode/data/rules/bsd-new_301.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + See the README file for the current license terms. This software was previously distributed under BSD/GPL v2 dual license diff --git a/src/licensedcode/data/rules/bsd-new_301.yml b/src/licensedcode/data/rules/bsd-new_301.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_301.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_302.RULE b/src/licensedcode/data/rules/bsd-new_302.RULE index 8db44656592..049440e6358 100644 --- a/src/licensedcode/data/rules/bsd-new_302.RULE +++ b/src/licensedcode/data/rules/bsd-new_302.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + "License": "BSD 3-clause \"New\" or \"Revised\" License", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_302.yml b/src/licensedcode/data/rules/bsd-new_302.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_303.RULE b/src/licensedcode/data/rules/bsd-new_303.RULE index 3cafe7a3a9b..2c58f25cc53 100644 --- a/src/licensedcode/data/rules/bsd-new_303.RULE +++ b/src/licensedcode/data/rules/bsd-new_303.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +--- + "License": "BSD 3-clause \"New\" or \"Revised\" License", "LicenseFile": "LicenseId": "BSD-3-Clause", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_303.yml b/src/licensedcode/data/rules/bsd-new_303.yml deleted file mode 100644 index c1333ceacd2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_303.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_304.RULE b/src/licensedcode/data/rules/bsd-new_304.RULE index 18f110f81e0..24478950a71 100644 --- a/src/licensedcode/data/rules/bsd-new_304.RULE +++ b/src/licensedcode/data/rules/bsd-new_304.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + "LicenseId": "BSD-3-Clause", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_304.yml b/src/licensedcode/data/rules/bsd-new_304.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_305.RULE b/src/licensedcode/data/rules/bsd-new_305.RULE index 0ed5c875403..0c9c8cca4e2 100644 --- a/src/licensedcode/data/rules/bsd-new_305.RULE +++ b/src/licensedcode/data/rules/bsd-new_305.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_305.yml b/src/licensedcode/data/rules/bsd-new_305.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_305.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_306.RULE b/src/licensedcode/data/rules/bsd-new_306.RULE index 494ceb1faec..deaf7e47a0d 100644 --- a/src/licensedcode/data/rules/bsd-new_306.RULE +++ b/src/licensedcode/data/rules/bsd-new_306.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License -3-clause BSD. See LICENSE file. +3-clause BSD. See LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_306.yml b/src/licensedcode/data/rules/bsd-new_306.yml deleted file mode 100644 index ed8a5c142f3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_306.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_307.RULE b/src/licensedcode/data/rules/bsd-new_307.RULE index bc55b99249e..55fc9033e8a 100644 --- a/src/licensedcode/data/rules/bsd-new_307.RULE +++ b/src/licensedcode/data/rules/bsd-new_307.RULE @@ -1 +1,7 @@ -License 3-clause BSD. +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + +License 3-clause BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_307.yml b/src/licensedcode/data/rules/bsd-new_307.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_308.RULE b/src/licensedcode/data/rules/bsd-new_308.RULE index aa3f9f99b33..6aa3b27e98b 100644 --- a/src/licensedcode/data/rules/bsd-new_308.RULE +++ b/src/licensedcode/data/rules/bsd-new_308.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- -3-clause BSD. \ No newline at end of file + +3-clause BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_308.yml b/src/licensedcode/data/rules/bsd-new_308.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_308.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_309.RULE b/src/licensedcode/data/rules/bsd-new_309.RULE index 8592b165f9f..be0a7e424d8 100644 --- a/src/licensedcode/data/rules/bsd-new_309.RULE +++ b/src/licensedcode/data/rules/bsd-new_309.RULE @@ -1 +1,9 @@ -Licensing: 3-clause BSD. See googletest/LICENSE file. +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +referenced_filenames: + - googletest/LICENSE +--- + +Licensing: 3-clause BSD. See googletest/LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_309.yml b/src/licensedcode/data/rules/bsd-new_309.yml deleted file mode 100644 index 73bb09b59d2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_309.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -referenced_filenames: - - googletest/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_31.RULE b/src/licensedcode/data/rules/bsd-new_31.RULE index b2d544f7411..a512eb4036e 100644 --- a/src/licensedcode/data/rules/bsd-new_31.RULE +++ b/src/licensedcode/data/rules/bsd-new_31.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_31.yml b/src/licensedcode/data/rules/bsd-new_31.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_310.RULE b/src/licensedcode/data/rules/bsd-new_310.RULE index 83a3eab17f3..0af8f3b1d12 100644 --- a/src/licensedcode/data/rules/bsd-new_310.RULE +++ b/src/licensedcode/data/rules/bsd-new_310.RULE @@ -1 +1,7 @@ -Licensing: 3-clause BSD. +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + +Licensing: 3-clause BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_310.yml b/src/licensedcode/data/rules/bsd-new_310.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_311.RULE b/src/licensedcode/data/rules/bsd-new_311.RULE index 31de1a47ba7..4ca1baecf3c 100644 --- a/src/licensedcode/data/rules/bsd-new_311.RULE +++ b/src/licensedcode/data/rules/bsd-new_311.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + * The copyrights embodied in the content of this file are licensed * by Inc. under the BSD (revised) open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_311.yml b/src/licensedcode/data/rules/bsd-new_311.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_312.RULE b/src/licensedcode/data/rules/bsd-new_312.RULE index 34f831770e4..4d5ba5ba27b 100644 --- a/src/licensedcode/data/rules/bsd-new_312.RULE +++ b/src/licensedcode/data/rules/bsd-new_312.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_312.yml b/src/licensedcode/data/rules/bsd-new_312.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_312.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_313.RULE b/src/licensedcode/data/rules/bsd-new_313.RULE index b59b6bf0abf..6b8708bd271 100644 --- a/src/licensedcode/data/rules/bsd-new_313.RULE +++ b/src/licensedcode/data/rules/bsd-new_313.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_313.yml b/src/licensedcode/data/rules/bsd-new_313.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_313.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_314.RULE b/src/licensedcode/data/rules/bsd-new_314.RULE index f19e8e69c34..e2edfb82b3a 100644 --- a/src/licensedcode/data/rules/bsd-new_314.RULE +++ b/src/licensedcode/data/rules/bsd-new_314.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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. +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_314.yml b/src/licensedcode/data/rules/bsd-new_314.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_314.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_315.RULE b/src/licensedcode/data/rules/bsd-new_315.RULE index 567ccedefb3..dbff0c50e09 100644 --- a/src/licensedcode/data/rules/bsd-new_315.RULE +++ b/src/licensedcode/data/rules/bsd-new_315.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -19,4 +24,4 @@ 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. + 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_315.yml b/src/licensedcode/data/rules/bsd-new_315.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_315.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_316.RULE b/src/licensedcode/data/rules/bsd-new_316.RULE index 7d38071620f..d8f0ef54695 100644 --- a/src/licensedcode/data/rules/bsd-new_316.RULE +++ b/src/licensedcode/data/rules/bsd-new_316.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_316.yml b/src/licensedcode/data/rules/bsd-new_316.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_316.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_317.RULE b/src/licensedcode/data/rules/bsd-new_317.RULE index 86bb4f33928..164f4feb3cb 100644 --- a/src/licensedcode/data/rules/bsd-new_317.RULE +++ b/src/licensedcode/data/rules/bsd-new_317.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_317.yml b/src/licensedcode/data/rules/bsd-new_317.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_317.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_318.RULE b/src/licensedcode/data/rules/bsd-new_318.RULE index c071557ed7e..6a036eddd8a 100644 --- a/src/licensedcode/data/rules/bsd-new_318.RULE +++ b/src/licensedcode/data/rules/bsd-new_318.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -19,4 +24,4 @@ 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. +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_318.yml b/src/licensedcode/data/rules/bsd-new_318.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_318.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_319.RULE b/src/licensedcode/data/rules/bsd-new_319.RULE index 66306bc9d79..86e31fd5241 100644 --- a/src/licensedcode/data/rules/bsd-new_319.RULE +++ b/src/licensedcode/data/rules/bsd-new_319.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 79 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -19,4 +25,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_319.yml b/src/licensedcode/data/rules/bsd-new_319.yml deleted file mode 100644 index 4bbb3134fe8..00000000000 --- a/src/licensedcode/data/rules/bsd-new_319.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 79 diff --git a/src/licensedcode/data/rules/bsd-new_32.RULE b/src/licensedcode/data/rules/bsd-new_32.RULE index d12794959b9..d88d02ea2e1 100644 --- a/src/licensedcode/data/rules/bsd-new_32.RULE +++ b/src/licensedcode/data/rules/bsd-new_32.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: NASA variant +--- + # * Redistribution and use in source and binary forms, with or without # * modification, are permitted provided that the following conditions # * are met: @@ -21,4 +27,4 @@ # * 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. +# * POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_32.yml b/src/licensedcode/data/rules/bsd-new_32.yml deleted file mode 100644 index 712f6ae1547..00000000000 --- a/src/licensedcode/data/rules/bsd-new_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: NASA variant diff --git a/src/licensedcode/data/rules/bsd-new_320.RULE b/src/licensedcode/data/rules/bsd-new_320.RULE index 0a957b05e0b..b1e372699f3 100644 --- a/src/licensedcode/data/rules/bsd-new_320.RULE +++ b/src/licensedcode/data/rules/bsd-new_320.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -24,4 +29,4 @@ 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. +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_320.yml b/src/licensedcode/data/rules/bsd-new_320.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_320.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_321.RULE b/src/licensedcode/data/rules/bsd-new_321.RULE index b67ca7d7b73..27521e7ac7f 100644 --- a/src/licensedcode/data/rules/bsd-new_321.RULE +++ b/src/licensedcode/data/rules/bsd-new_321.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -18,4 +23,4 @@ Redistribution and use in source and binary forms, with or without 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. + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_321.yml b/src/licensedcode/data/rules/bsd-new_321.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_321.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_322.RULE b/src/licensedcode/data/rules/bsd-new_322.RULE index 361118beb88..ee32877dabc 100644 --- a/src/licensedcode/data/rules/bsd-new_322.RULE +++ b/src/licensedcode/data/rules/bsd-new_322.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -19,4 +24,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_322.yml b/src/licensedcode/data/rules/bsd-new_322.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_322.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_323.RULE b/src/licensedcode/data/rules/bsd-new_323.RULE index 20db152d4a8..548d5b00585 100644 --- a/src/licensedcode/data/rules/bsd-new_323.RULE +++ b/src/licensedcode/data/rules/bsd-new_323.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ * 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. + * 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_323.yml b/src/licensedcode/data/rules/bsd-new_323.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_323.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_324.RULE b/src/licensedcode/data/rules/bsd-new_324.RULE index 58259144665..b2c6e7f01be 100644 --- a/src/licensedcode/data/rules/bsd-new_324.RULE +++ b/src/licensedcode/data/rules/bsd-new_324.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + To accommodate license compatibility with the widest possible range of client code licenses, the shared library code, which is linked at runtime into the same address space as the client using it, is diff --git a/src/licensedcode/data/rules/bsd-new_324.yml b/src/licensedcode/data/rules/bsd-new_324.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_324.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_325.RULE b/src/licensedcode/data/rules/bsd-new_325.RULE index b4f404a0b1a..fd8a781b63d 100644 --- a/src/licensedcode/data/rules/bsd-new_325.RULE +++ b/src/licensedcode/data/rules/bsd-new_325.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_325.yml b/src/licensedcode/data/rules/bsd-new_325.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_325.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_326.RULE b/src/licensedcode/data/rules/bsd-new_326.RULE index 78897d16889..492da6de574 100644 --- a/src/licensedcode/data/rules/bsd-new_326.RULE +++ b/src/licensedcode/data/rules/bsd-new_326.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_326.yml b/src/licensedcode/data/rules/bsd-new_326.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_326.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_327.RULE b/src/licensedcode/data/rules/bsd-new_327.RULE index a067d492da9..c6763d44c76 100644 --- a/src/licensedcode/data/rules/bsd-new_327.RULE +++ b/src/licensedcode/data/rules/bsd-new_327.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_327.yml b/src/licensedcode/data/rules/bsd-new_327.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_327.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_328.RULE b/src/licensedcode/data/rules/bsd-new_328.RULE index e7807da4a5a..9f3fed66b80 100644 --- a/src/licensedcode/data/rules/bsd-new_328.RULE +++ b/src/licensedcode/data/rules/bsd-new_328.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_328.yml b/src/licensedcode/data/rules/bsd-new_328.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_328.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_329.RULE b/src/licensedcode/data/rules/bsd-new_329.RULE index c3c980b3cdc..e5918319f17 100644 --- a/src/licensedcode/data/rules/bsd-new_329.RULE +++ b/src/licensedcode/data/rules/bsd-new_329.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 85 +--- + Use is subject to license terms below. diff --git a/src/licensedcode/data/rules/bsd-new_329.yml b/src/licensedcode/data/rules/bsd-new_329.yml deleted file mode 100644 index ef50c898bae..00000000000 --- a/src/licensedcode/data/rules/bsd-new_329.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_33.RULE b/src/licensedcode/data/rules/bsd-new_33.RULE index 8089260e1fb..a8c05193d62 100644 --- a/src/licensedcode/data/rules/bsd-new_33.RULE +++ b/src/licensedcode/data/rules/bsd-new_33.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + copyright notice (BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_33.yml b/src/licensedcode/data/rules/bsd-new_33.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_330.RULE b/src/licensedcode/data/rules/bsd-new_330.RULE index 5c87b0f09a2..2d7413d2690 100644 --- a/src/licensedcode/data/rules/bsd-new_330.RULE +++ b/src/licensedcode/data/rules/bsd-new_330.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_330.yml b/src/licensedcode/data/rules/bsd-new_330.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_330.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_331.RULE b/src/licensedcode/data/rules/bsd-new_331.RULE index 2d881d3dbc0..87041d8955b 100644 --- a/src/licensedcode/data/rules/bsd-new_331.RULE +++ b/src/licensedcode/data/rules/bsd-new_331.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_331.yml b/src/licensedcode/data/rules/bsd-new_331.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_331.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_332.RULE b/src/licensedcode/data/rules/bsd-new_332.RULE index 5aa2f94943f..f9df4f2a56e 100644 --- a/src/licensedcode/data/rules/bsd-new_332.RULE +++ b/src/licensedcode/data/rules/bsd-new_332.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_332.yml b/src/licensedcode/data/rules/bsd-new_332.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_332.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_333.RULE b/src/licensedcode/data/rules/bsd-new_333.RULE index 100343c5592..567e868da50 100644 --- a/src/licensedcode/data/rules/bsd-new_333.RULE +++ b/src/licensedcode/data/rules/bsd-new_333.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_333.yml b/src/licensedcode/data/rules/bsd-new_333.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_333.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_334.RULE b/src/licensedcode/data/rules/bsd-new_334.RULE index a25c6f50883..84b4f51041a 100644 --- a/src/licensedcode/data/rules/bsd-new_334.RULE +++ b/src/licensedcode/data/rules/bsd-new_334.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +--- + ** BSD License Usage ** Alternatively, you may use this file under the terms of the BSD license ** as follows: @@ -26,4 +32,4 @@ ** 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." +** 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_334.yml b/src/licensedcode/data/rules/bsd-new_334.yml deleted file mode 100644 index c81f8dc5384..00000000000 --- a/src/licensedcode/data/rules/bsd-new_334.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_335.RULE b/src/licensedcode/data/rules/bsd-new_335.RULE index 52f19d396bf..807128425da 100644 --- a/src/licensedcode/data/rules/bsd-new_335.RULE +++ b/src/licensedcode/data/rules/bsd-new_335.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_335.yml b/src/licensedcode/data/rules/bsd-new_335.yml deleted file mode 100644 index 535b476fcbd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_335.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_336.RULE b/src/licensedcode/data/rules/bsd-new_336.RULE index 93b8974b365..b55335e5a82 100644 --- a/src/licensedcode/data/rules/bsd-new_336.RULE +++ b/src/licensedcode/data/rules/bsd-new_336.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + License: 3-Clause BSD License (https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_336.yml b/src/licensedcode/data/rules/bsd-new_336.yml deleted file mode 100644 index 98e85336274..00000000000 --- a/src/licensedcode/data/rules/bsd-new_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_337.RULE b/src/licensedcode/data/rules/bsd-new_337.RULE index 61c99b40141..d89d04503d2 100644 --- a/src/licensedcode/data/rules/bsd-new_337.RULE +++ b/src/licensedcode/data/rules/bsd-new_337.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + License: BSD 3 Clause (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_337.yml b/src/licensedcode/data/rules/bsd-new_337.yml deleted file mode 100644 index 08679dbeaa6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_337.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_338.RULE b/src/licensedcode/data/rules/bsd-new_338.RULE index 2d1355b1e51..707fe748891 100644 --- a/src/licensedcode/data/rules/bsd-new_338.RULE +++ b/src/licensedcode/data/rules/bsd-new_338.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + 3-Clause BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_338.yml b/src/licensedcode/data/rules/bsd-new_338.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_338.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_339.RULE b/src/licensedcode/data/rules/bsd-new_339.RULE index c82fc54958a..b2f9734e350 100644 --- a/src/licensedcode/data/rules/bsd-new_339.RULE +++ b/src/licensedcode/data/rules/bsd-new_339.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.scala-lang.org/license.html +--- + License: BSD 3-Clause (http://www.scala-lang.org/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_339.yml b/src/licensedcode/data/rules/bsd-new_339.yml deleted file mode 100644 index 7eb64cfbeab..00000000000 --- a/src/licensedcode/data/rules/bsd-new_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.scala-lang.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_34.RULE b/src/licensedcode/data/rules/bsd-new_34.RULE index 2428c83319d..be345ccb38b 100644 --- a/src/licensedcode/data/rules/bsd-new_34.RULE +++ b/src/licensedcode/data/rules/bsd-new_34.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: BSD text corrected for typo in the previous versions See http://code.google.com/p/msinttypes/source/browse/trunk/inttypes.h +--- + // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // @@ -21,4 +27,4 @@ // 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. +// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_34.yml b/src/licensedcode/data/rules/bsd-new_34.yml deleted file mode 100644 index 0ee1e5106da..00000000000 --- a/src/licensedcode/data/rules/bsd-new_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: BSD text corrected for typo in the previous versions See http://code.google.com/p/msinttypes/source/browse/trunk/inttypes.h diff --git a/src/licensedcode/data/rules/bsd-new_340.RULE b/src/licensedcode/data/rules/bsd-new_340.RULE index 1bfdbd62ab4..a2599b82332 100644 --- a/src/licensedcode/data/rules/bsd-new_340.RULE +++ b/src/licensedcode/data/rules/bsd-new_340.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + License: BSD 3-Clause License (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_340.yml b/src/licensedcode/data/rules/bsd-new_340.yml deleted file mode 100644 index 08679dbeaa6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_340.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_341.RULE b/src/licensedcode/data/rules/bsd-new_341.RULE index f00158fc517..7c6933576eb 100644 --- a/src/licensedcode/data/rules/bsd-new_341.RULE +++ b/src/licensedcode/data/rules/bsd-new_341.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://asm.ow2.org/license.html +--- + License: BSD (http://asm.ow2.org/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_341.yml b/src/licensedcode/data/rules/bsd-new_341.yml deleted file mode 100644 index efa49bf6429..00000000000 --- a/src/licensedcode/data/rules/bsd-new_341.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://asm.ow2.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_342.RULE b/src/licensedcode/data/rules/bsd-new_342.RULE index 2590d3c32e6..87bd10bf288 100644 --- a/src/licensedcode/data/rules/bsd-new_342.RULE +++ b/src/licensedcode/data/rules/bsd-new_342.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://software.clapper.org/grizzled-slf4j/license.html +--- + License: BSD (http://software.clapper.org/grizzled-slf4j/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_342.yml b/src/licensedcode/data/rules/bsd-new_342.yml deleted file mode 100644 index 585a2f3922d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_342.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://software.clapper.org/grizzled-slf4j/license.html diff --git a/src/licensedcode/data/rules/bsd-new_343.RULE b/src/licensedcode/data/rules/bsd-new_343.RULE index 7e3c5e863c1..7fec5b27b05 100644 --- a/src/licensedcode/data/rules/bsd-new_343.RULE +++ b/src/licensedcode/data/rules/bsd-new_343.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + License: BSD (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_343.yml b/src/licensedcode/data/rules/bsd-new_343.yml deleted file mode 100644 index 1dab731ccb9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_343.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_344.RULE b/src/licensedcode/data/rules/bsd-new_344.RULE index 4f35343ef64..79b427aecd5 100644 --- a/src/licensedcode/data/rules/bsd-new_344.RULE +++ b/src/licensedcode/data/rules/bsd-new_344.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://antlr.org/license.html +--- + License: BSD licence (http://antlr.org/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_344.yml b/src/licensedcode/data/rules/bsd-new_344.yml deleted file mode 100644 index 7c03875b214..00000000000 --- a/src/licensedcode/data/rules/bsd-new_344.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://antlr.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_345.RULE b/src/licensedcode/data/rules/bsd-new_345.RULE index 120e8ff6ba7..9e9d6e5a5ce 100644 --- a/src/licensedcode/data/rules/bsd-new_345.RULE +++ b/src/licensedcode/data/rules/bsd-new_345.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.antlr.org/license.html +--- + License: BSD License (http://www.antlr.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_345.yml b/src/licensedcode/data/rules/bsd-new_345.yml deleted file mode 100644 index 367a9267899..00000000000 --- a/src/licensedcode/data/rules/bsd-new_345.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.antlr.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_346.RULE b/src/licensedcode/data/rules/bsd-new_346.RULE index b8e3503f1ce..5e267eea092 100644 --- a/src/licensedcode/data/rules/bsd-new_346.RULE +++ b/src/licensedcode/data/rules/bsd-new_346.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.scala-lang.org/downloads/license.html +--- + License: BSD-like (http://www.scala-lang.org/downloads/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_346.yml b/src/licensedcode/data/rules/bsd-new_346.yml deleted file mode 100644 index 7c6b902c4ce..00000000000 --- a/src/licensedcode/data/rules/bsd-new_346.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.scala-lang.org/downloads/license.html diff --git a/src/licensedcode/data/rules/bsd-new_347.RULE b/src/licensedcode/data/rules/bsd-new_347.RULE index 46dc89a693a..d5d94f2207b 100644 --- a/src/licensedcode/data/rules/bsd-new_347.RULE +++ b/src/licensedcode/data/rules/bsd-new_347.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: https://web.archive.org/web/20070215121443/http://xstream.codehaus.org/license.html +ignorable_urls: + - http://xstream.codehaus.org/license.html +--- + License: BSD style (http://xstream.codehaus.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_347.yml b/src/licensedcode/data/rules/bsd-new_347.yml deleted file mode 100644 index c307a5154cf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_347.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: https://web.archive.org/web/20070215121443/http://xstream.codehaus.org/license.html -ignorable_urls: - - http://xstream.codehaus.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_348.RULE b/src/licensedcode/data/rules/bsd-new_348.RULE index f50bacff2ef..5e96e690db0 100644 --- a/src/licensedcode/data/rules/bsd-new_348.RULE +++ b/src/licensedcode/data/rules/bsd-new_348.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: https://web.archive.org/web/20150505224412/http://dist.codehaus.org/janino/new_bsd_license.txt +ignorable_urls: + - http://dist.codehaus.org/janino/new_bsd_license.txt +--- + License: New BSD License (http://dist.codehaus.org/janino/new_bsd_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_348.yml b/src/licensedcode/data/rules/bsd-new_348.yml deleted file mode 100644 index 02bd521b39f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_348.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: https://web.archive.org/web/20150505224412/http://dist.codehaus.org/janino/new_bsd_license.txt -ignorable_urls: - - http://dist.codehaus.org/janino/new_bsd_license.txt diff --git a/src/licensedcode/data/rules/bsd-new_349.RULE b/src/licensedcode/data/rules/bsd-new_349.RULE index cff7259101a..3d5c8d33718 100644 --- a/src/licensedcode/data/rules/bsd-new_349.RULE +++ b/src/licensedcode/data/rules/bsd-new_349.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE +--- + License: New BSD License (https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_349.yml b/src/licensedcode/data/rules/bsd-new_349.yml deleted file mode 100644 index 0cb7812eee4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_349.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_35.RULE b/src/licensedcode/data/rules/bsd-new_35.RULE index 03edacd86e6..b21ebabe52c 100644 --- a/src/licensedcode/data/rules/bsd-new_35.RULE +++ b/src/licensedcode/data/rules/bsd-new_35.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + QT_BEGIN_LICENSE:BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_35.yml b/src/licensedcode/data/rules/bsd-new_35.yml deleted file mode 100644 index 3c43e265100..00000000000 --- a/src/licensedcode/data/rules/bsd-new_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_350.RULE b/src/licensedcode/data/rules/bsd-new_350.RULE index f7be57e81e5..d7f836666e0 100644 --- a/src/licensedcode/data/rules/bsd-new_350.RULE +++ b/src/licensedcode/data/rules/bsd-new_350.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +--- + License: The BSD 3-Clause License (http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_350.yml b/src/licensedcode/data/rules/bsd-new_350.yml deleted file mode 100644 index e60fb547abd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_350.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_351.RULE b/src/licensedcode/data/rules/bsd-new_351.RULE index 087323be091..b650c15ce51 100644 --- a/src/licensedcode/data/rules/bsd-new_351.RULE +++ b/src/licensedcode/data/rules/bsd-new_351.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.antlr.org/license.html +--- + License: The BSD License (http://www.antlr.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_351.yml b/src/licensedcode/data/rules/bsd-new_351.yml deleted file mode 100644 index 367a9267899..00000000000 --- a/src/licensedcode/data/rules/bsd-new_351.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.antlr.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_352.RULE b/src/licensedcode/data/rules/bsd-new_352.RULE index ced389f4746..e07565e4b02 100644 --- a/src/licensedcode/data/rules/bsd-new_352.RULE +++ b/src/licensedcode/data/rules/bsd-new_352.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://jodd.org/license.html +--- + License: The New BSD License (http://jodd.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_352.yml b/src/licensedcode/data/rules/bsd-new_352.yml deleted file mode 100644 index d4fced3d445..00000000000 --- a/src/licensedcode/data/rules/bsd-new_352.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://jodd.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_353.RULE b/src/licensedcode/data/rules/bsd-new_353.RULE index b18bf0c94a7..61898d770bf 100644 --- a/src/licensedcode/data/rules/bsd-new_353.RULE +++ b/src/licensedcode/data/rules/bsd-new_353.RULE @@ -1 +1,9 @@ -License: The New BSD License (http://www.opensource.org/licenses/bsd-license.html +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + +License: The New BSD License (http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_353.yml b/src/licensedcode/data/rules/bsd-new_353.yml deleted file mode 100644 index 28b9a2a8939..00000000000 --- a/src/licensedcode/data/rules/bsd-new_353.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_354.RULE b/src/licensedcode/data/rules/bsd-new_354.RULE index 110c943cad7..a061cdbba05 100644 --- a/src/licensedcode/data/rules/bsd-new_354.RULE +++ b/src/licensedcode/data/rules/bsd-new_354.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://hsqldb.org/web/hsqlLicense.html +--- + License: HSQLDB License (http://hsqldb.org/web/hsqlLicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_354.yml b/src/licensedcode/data/rules/bsd-new_354.yml deleted file mode 100644 index 94c69112d76..00000000000 --- a/src/licensedcode/data/rules/bsd-new_354.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://hsqldb.org/web/hsqlLicense.html diff --git a/src/licensedcode/data/rules/bsd-new_355.RULE b/src/licensedcode/data/rules/bsd-new_355.RULE index 9d3f69c6cd9..70b36169f3a 100644 --- a/src/licensedcode/data/rules/bsd-new_355.RULE +++ b/src/licensedcode/data/rules/bsd-new_355.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://asm.ow2.org/license.html +--- + License: $license.name (http://asm.ow2.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_355.yml b/src/licensedcode/data/rules/bsd-new_355.yml deleted file mode 100644 index efa49bf6429..00000000000 --- a/src/licensedcode/data/rules/bsd-new_355.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://asm.ow2.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_356.RULE b/src/licensedcode/data/rules/bsd-new_356.RULE index d0de8964fe0..613b9cbdbf4 100644 --- a/src/licensedcode/data/rules/bsd-new_356.RULE +++ b/src/licensedcode/data/rules/bsd-new_356.RULE @@ -1 +1,9 @@ -https://opensource.org/licenses/BSD-3-Clause", \ No newline at end of file +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + +https://opensource.org/licenses/BSD-3-Clause", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_356.yml b/src/licensedcode/data/rules/bsd-new_356.yml deleted file mode 100644 index a881da83bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_356.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_357.RULE b/src/licensedcode/data/rules/bsd-new_357.RULE index 9822fb65bd0..b599f8356d3 100644 --- a/src/licensedcode/data/rules/bsd-new_357.RULE +++ b/src/licensedcode/data/rules/bsd-new_357.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + The 3-Clause BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_357.yml b/src/licensedcode/data/rules/bsd-new_357.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_357.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_358.RULE b/src/licensedcode/data/rules/bsd-new_358.RULE index f153a47e6e8..3e5e4dc8824 100644 --- a/src/licensedcode/data/rules/bsd-new_358.RULE +++ b/src/licensedcode/data/rules/bsd-new_358.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + "name": "The 3-Clause BSD License", - "url": "https://opensource.org/licenses/BSD-3-Clause", \ No newline at end of file + "url": "https://opensource.org/licenses/BSD-3-Clause", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_358.yml b/src/licensedcode/data/rules/bsd-new_358.yml deleted file mode 100644 index 98e85336274..00000000000 --- a/src/licensedcode/data/rules/bsd-new_358.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_359.RULE b/src/licensedcode/data/rules/bsd-new_359.RULE index 6f6cdc7381f..78d0fe827a7 100644 --- a/src/licensedcode/data/rules/bsd-new_359.RULE +++ b/src/licensedcode/data/rules/bsd-new_359.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + * Licensed under the New BSD license. See LICENSE or: - * http://opensource.org/licenses/BSD-3-Clause + * http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_359.yml b/src/licensedcode/data/rules/bsd-new_359.yml deleted file mode 100644 index 968a7cc4414..00000000000 --- a/src/licensedcode/data/rules/bsd-new_359.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_36.RULE b/src/licensedcode/data/rules/bsd-new_36.RULE index 3948b593442..18d68d27e91 100644 --- a/src/licensedcode/data/rules/bsd-new_36.RULE +++ b/src/licensedcode/data/rules/bsd-new_36.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +--- + http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_36.yml b/src/licensedcode/data/rules/bsd-new_36.yml deleted file mode 100644 index dcc11d21236..00000000000 --- a/src/licensedcode/data/rules/bsd-new_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_360.RULE b/src/licensedcode/data/rules/bsd-new_360.RULE index baa447515bb..b01a28fd9a1 100644 --- a/src/licensedcode/data/rules/bsd-new_360.RULE +++ b/src/licensedcode/data/rules/bsd-new_360.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD 3-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_360.yml b/src/licensedcode/data/rules/bsd-new_360.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_360.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_361.RULE b/src/licensedcode/data/rules/bsd-new_361.RULE index d4ee35a836d..47c15a7154f 100644 --- a/src/licensedcode/data/rules/bsd-new_361.RULE +++ b/src/licensedcode/data/rules/bsd-new_361.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_361.yml b/src/licensedcode/data/rules/bsd-new_361.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_361.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_362.RULE b/src/licensedcode/data/rules/bsd-new_362.RULE index 39ab87e54a0..855c64fae9a 100644 --- a/src/licensedcode/data/rules/bsd-new_362.RULE +++ b/src/licensedcode/data/rules/bsd-new_362.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause +--- + @license https://spdx.org/licenses/BSD-3-Clause BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_362.yml b/src/licensedcode/data/rules/bsd-new_362.yml deleted file mode 100644 index 73034bc65ac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_362.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_363.RULE b/src/licensedcode/data/rules/bsd-new_363.RULE index eca1266dac1..8265d9b0268 100644 --- a/src/licensedcode/data/rules/bsd-new_363.RULE +++ b/src/licensedcode/data/rules/bsd-new_363.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + HSQLDB License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_363.yml b/src/licensedcode/data/rules/bsd-new_363.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_363.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_364.RULE b/src/licensedcode/data/rules/bsd-new_364.RULE index a710dc1d46e..1b6abbdd46e 100644 --- a/src/licensedcode/data/rules/bsd-new_364.RULE +++ b/src/licensedcode/data/rules/bsd-new_364.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + The BSD 3-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_364.yml b/src/licensedcode/data/rules/bsd-new_364.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_364.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_365.RULE b/src/licensedcode/data/rules/bsd-new_365.RULE index 2bd976830a9..3ce58294985 100644 --- a/src/licensedcode/data/rules/bsd-new_365.RULE +++ b/src/licensedcode/data/rules/bsd-new_365.RULE @@ -1 +1,7 @@ -default stopword list that is BSD-licensed \ No newline at end of file +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +default stopword list that is BSD-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_365.yml b/src/licensedcode/data/rules/bsd-new_365.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_365.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_366.RULE b/src/licensedcode/data/rules/bsd-new_366.RULE index baed62c0bc3..f33a820153f 100644 --- a/src/licensedcode/data/rules/bsd-new_366.RULE +++ b/src/licensedcode/data/rules/bsd-new_366.RULE @@ -1 +1,7 @@ - are based on BSD-licensed reference implementations \ No newline at end of file +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + + are based on BSD-licensed reference implementations \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_366.yml b/src/licensedcode/data/rules/bsd-new_366.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_366.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_367.RULE b/src/licensedcode/data/rules/bsd-new_367.RULE index acb4084b91c..ad9ca626a08 100644 --- a/src/licensedcode/data/rules/bsd-new_367.RULE +++ b/src/licensedcode/data/rules/bsd-new_367.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + includes BSD-licensed software developed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_367.yml b/src/licensedcode/data/rules/bsd-new_367.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_367.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_368.RULE b/src/licensedcode/data/rules/bsd-new_368.RULE index 5c2160742e8..a5b9e24f2bf 100644 --- a/src/licensedcode/data/rules/bsd-new_368.RULE +++ b/src/licensedcode/data/rules/bsd-new_368.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_368.yml b/src/licensedcode/data/rules/bsd-new_368.yml deleted file mode 100644 index 89cf46073a3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_368.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_369.RULE b/src/licensedcode/data/rules/bsd-new_369.RULE index dc7914e88ea..af4e1f4860f 100644 --- a/src/licensedcode/data/rules/bsd-new_369.RULE +++ b/src/licensedcode/data/rules/bsd-new_369.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + includes BSD-licensed software \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_369.yml b/src/licensedcode/data/rules/bsd-new_369.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_369.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_37.RULE b/src/licensedcode/data/rules/bsd-new_37.RULE index 3850f0c2251..682a5b6570b 100644 --- a/src/licensedcode/data/rules/bsd-new_37.RULE +++ b/src/licensedcode/data/rules/bsd-new_37.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + * The program is distributed under terms of BSD license. * You can obtain the copy of the license by visiting: * diff --git a/src/licensedcode/data/rules/bsd-new_37.yml b/src/licensedcode/data/rules/bsd-new_37.yml deleted file mode 100644 index 1a6b1a6d080..00000000000 --- a/src/licensedcode/data/rules/bsd-new_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_370.RULE b/src/licensedcode/data/rules/bsd-new_370.RULE index 3ae27d817d4..f711908eda8 100644 --- a/src/licensedcode/data/rules/bsd-new_370.RULE +++ b/src/licensedcode/data/rules/bsd-new_370.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + from BSD-licensed dictionary \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_370.yml b/src/licensedcode/data/rules/bsd-new_370.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_371.RULE b/src/licensedcode/data/rules/bsd-new_371.RULE index e112f1b314e..22139d0363a 100644 --- a/src/licensedcode/data/rules/bsd-new_371.RULE +++ b/src/licensedcode/data/rules/bsd-new_371.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_371.yml b/src/licensedcode/data/rules/bsd-new_371.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_371.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_372.RULE b/src/licensedcode/data/rules/bsd-new_372.RULE index 44c6dbfb514..54e22bdd04b 100644 --- a/src/licensedcode/data/rules/bsd-new_372.RULE +++ b/src/licensedcode/data/rules/bsd-new_372.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + The "New" BSD License (bsd): ---------------------- @@ -23,6 +28,4 @@ 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. - - +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_372.yml b/src/licensedcode/data/rules/bsd-new_372.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_372.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_373.RULE b/src/licensedcode/data/rules/bsd-new_373.RULE index f3ede62fc7c..96decde0704 100644 --- a/src/licensedcode/data/rules/bsd-new_373.RULE +++ b/src/licensedcode/data/rules/bsd-new_373.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + "New" BSD License (bsd): ---------------------- @@ -23,6 +28,4 @@ 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. - - +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_373.yml b/src/licensedcode/data/rules/bsd-new_373.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_373.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_374.RULE b/src/licensedcode/data/rules/bsd-new_374.RULE index 89c1758487d..73f58832908 100644 --- a/src/licensedcode/data/rules/bsd-new_374.RULE +++ b/src/licensedcode/data/rules/bsd-new_374.RULE @@ -1,7 +1,12 @@ +--- +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 Consortium 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 +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_374.yml b/src/licensedcode/data/rules/bsd-new_374.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_374.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_375.RULE b/src/licensedcode/data/rules/bsd-new_375.RULE index 2ebc09570dd..0f9a699dd35 100644 --- a/src/licensedcode/data/rules/bsd-new_375.RULE +++ b/src/licensedcode/data/rules/bsd-new_375.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_375.yml b/src/licensedcode/data/rules/bsd-new_375.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_375.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_376.RULE b/src/licensedcode/data/rules/bsd-new_376.RULE index e36665a98ed..41fe0c5e874 100644 --- a/src/licensedcode/data/rules/bsd-new_376.RULE +++ b/src/licensedcode/data/rules/bsd-new_376.RULE @@ -1,4 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.voidspace.org.uk/python/license.shtml +--- + # This software is licensed under the terms of the BSD license. # http://www.voidspace.org.uk/python/license.shtml # Basically you're free to copy, modify, distribute and relicense it, -# So long as you keep a copy of the license with it. +# So long as you keep a copy of the license with it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_376.yml b/src/licensedcode/data/rules/bsd-new_376.yml deleted file mode 100644 index 258f1f364c1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_376.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.voidspace.org.uk/python/license.shtml diff --git a/src/licensedcode/data/rules/bsd-new_377.RULE b/src/licensedcode/data/rules/bsd-new_377.RULE index 7953bf32c01..1ef19db94d6 100644 --- a/src/licensedcode/data/rules/bsd-new_377.RULE +++ b/src/licensedcode/data/rules/bsd-new_377.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_377.yml b/src/licensedcode/data/rules/bsd-new_377.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_377.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_378.RULE b/src/licensedcode/data/rules/bsd-new_378.RULE index 7b8ff9251c8..99bc043a21b 100644 --- a/src/licensedcode/data/rules/bsd-new_378.RULE +++ b/src/licensedcode/data/rules/bsd-new_378.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_378.yml b/src/licensedcode/data/rules/bsd-new_378.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_378.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_379.RULE b/src/licensedcode/data/rules/bsd-new_379.RULE index 2401d48b512..d0702b14f33 100644 --- a/src/licensedcode/data/rules/bsd-new_379.RULE +++ b/src/licensedcode/data/rules/bsd-new_379.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_379.yml b/src/licensedcode/data/rules/bsd-new_379.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_379.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_38.RULE b/src/licensedcode/data/rules/bsd-new_38.RULE index 8f5fe56471d..f1a6603be77 100644 --- a/src/licensedcode/data/rules/bsd-new_38.RULE +++ b/src/licensedcode/data/rules/bsd-new_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: hp bsd +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +26,4 @@ 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. + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_38.yml b/src/licensedcode/data/rules/bsd-new_38.yml deleted file mode 100644 index f47848200c0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: hp bsd diff --git a/src/licensedcode/data/rules/bsd-new_380.RULE b/src/licensedcode/data/rules/bsd-new_380.RULE index b03013b5878..15e532ef13a 100644 --- a/src/licensedcode/data/rules/bsd-new_380.RULE +++ b/src/licensedcode/data/rules/bsd-new_380.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. +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_380.yml b/src/licensedcode/data/rules/bsd-new_380.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_380.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_381.RULE b/src/licensedcode/data/rules/bsd-new_381.RULE index 65850bdb8a6..e975c9517cf 100644 --- a/src/licensedcode/data/rules/bsd-new_381.RULE +++ b/src/licensedcode/data/rules/bsd-new_381.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 Word Lists, 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. +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_381.yml b/src/licensedcode/data/rules/bsd-new_381.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_381.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_382.RULE b/src/licensedcode/data/rules/bsd-new_382.RULE index c8c39fb5f87..dd470d690ca 100644 --- a/src/licensedcode/data/rules/bsd-new_382.RULE +++ b/src/licensedcode/data/rules/bsd-new_382.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +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_382.yml b/src/licensedcode/data/rules/bsd-new_382.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_382.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_383.RULE b/src/licensedcode/data/rules/bsd-new_383.RULE index 05afe7fb3a3..22d888d3d11 100644 --- a/src/licensedcode/data/rules/bsd-new_383.RULE +++ b/src/licensedcode/data/rules/bsd-new_383.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. + 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_383.yml b/src/licensedcode/data/rules/bsd-new_383.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_383.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_384.RULE b/src/licensedcode/data/rules/bsd-new_384.RULE index 7b08886d680..b9d62ef8e8e 100644 --- a/src/licensedcode/data/rules/bsd-new_384.RULE +++ b/src/licensedcode/data/rules/bsd-new_384.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_384.yml b/src/licensedcode/data/rules/bsd-new_384.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_384.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_385.RULE b/src/licensedcode/data/rules/bsd-new_385.RULE index 5dcece4fc0a..482932b3138 100644 --- a/src/licensedcode/data/rules/bsd-new_385.RULE +++ b/src/licensedcode/data/rules/bsd-new_385.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + BSD LICENSE Redistribution and use in source and binary forms, with or without @@ -23,4 +28,4 @@ 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. + 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_385.yml b/src/licensedcode/data/rules/bsd-new_385.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_385.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_386.RULE b/src/licensedcode/data/rules/bsd-new_386.RULE index 734ba868cb3..4286c4ccef5 100644 --- a/src/licensedcode/data/rules/bsd-new_386.RULE +++ b/src/licensedcode/data/rules/bsd-new_386.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + BSD LICENSE @@ -26,4 +31,4 @@ 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. +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_386.yml b/src/licensedcode/data/rules/bsd-new_386.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_386.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_387.RULE b/src/licensedcode/data/rules/bsd-new_387.RULE index 9f577664838..5120cd60dcd 100644 --- a/src/licensedcode/data/rules/bsd-new_387.RULE +++ b/src/licensedcode/data/rules/bsd-new_387.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + The user DOES NOT get ANY WARRANTIES when using this tool. This software is released under the BSD 3-Clause License. By using this software, the user implicitly agrees to the licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_387.yml b/src/licensedcode/data/rules/bsd-new_387.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_388.RULE b/src/licensedcode/data/rules/bsd-new_388.RULE index 69c9181e8fb..534a0cd7533 100644 --- a/src/licensedcode/data/rules/bsd-new_388.RULE +++ b/src/licensedcode/data/rules/bsd-new_388.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://sourceforge.net/project/?group_id=1519 +--- + # * Libtabe (Chinese) # - https://sourceforge.net/project/?group_id=1519 # - Its license terms and conditions are shown below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_388.yml b/src/licensedcode/data/rules/bsd-new_388.yml deleted file mode 100644 index 3c31c68df1f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_388.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://sourceforge.net/project/?group_id=1519 diff --git a/src/licensedcode/data/rules/bsd-new_389.RULE b/src/licensedcode/data/rules/bsd-new_389.RULE index 47b4218b62b..4c571483c35 100644 --- a/src/licensedcode/data/rules/bsd-new_389.RULE +++ b/src/licensedcode/data/rules/bsd-new_389.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/bsd-license.php +--- + # The BSD License - # https://opensource.org/licenses/bsd-license.php \ No newline at end of file + # https://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_389.yml b/src/licensedcode/data/rules/bsd-new_389.yml deleted file mode 100644 index 8651bed051f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_389.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_39.RULE b/src/licensedcode/data/rules/bsd-new_39.RULE index 1f41d9c88cc..ddb51eaabfa 100644 --- a/src/licensedcode/data/rules/bsd-new_39.RULE +++ b/src/licensedcode/data/rules/bsd-new_39.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -19,4 +24,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_39.yml b/src/licensedcode/data/rules/bsd-new_39.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_390.RULE b/src/licensedcode/data/rules/bsd-new_390.RULE index 9ec5b61dcab..f14ee393b03 100644 --- a/src/licensedcode/data/rules/bsd-new_390.RULE +++ b/src/licensedcode/data/rules/bsd-new_390.RULE @@ -1 +1,7 @@ -Copyright License Agreement (BSD License) +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + +Copyright License Agreement (BSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_390.yml b/src/licensedcode/data/rules/bsd-new_390.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_390.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_391.RULE b/src/licensedcode/data/rules/bsd-new_391.RULE index 1f28dfc62a7..2b19c7bbd57 100644 --- a/src/licensedcode/data/rules/bsd-new_391.RULE +++ b/src/licensedcode/data/rules/bsd-new_391.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 90 +--- + COPYRIGHTS AND LICENSES (based on BSD License) Redistribution and use in source and binary forms, with or without @@ -24,4 +30,4 @@ 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. +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_391.yml b/src/licensedcode/data/rules/bsd-new_391.yml deleted file mode 100644 index cb9b802838d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_392.RULE b/src/licensedcode/data/rules/bsd-new_392.RULE index f6d634b95d1..41887c3c8d4 100644 --- a/src/licensedcode/data/rules/bsd-new_392.RULE +++ b/src/licensedcode/data/rules/bsd-new_392.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + distributed under these terms: * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_392.yml b/src/licensedcode/data/rules/bsd-new_392.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_392.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_393.RULE b/src/licensedcode/data/rules/bsd-new_393.RULE index 34b96cb6678..31d365c4648 100644 --- a/src/licensedcode/data/rules/bsd-new_393.RULE +++ b/src/licensedcode/data/rules/bsd-new_393.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + BSD3 License | git.io/hljslicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_393.yml b/src/licensedcode/data/rules/bsd-new_393.yml deleted file mode 100644 index e5227476bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_393.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_394.RULE b/src/licensedcode/data/rules/bsd-new_394.RULE index 15810765cc3..925d7023cda 100644 --- a/src/licensedcode/data/rules/bsd-new_394.RULE +++ b/src/licensedcode/data/rules/bsd-new_394.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + BSD3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_394.yml b/src/licensedcode/data/rules/bsd-new_394.yml deleted file mode 100644 index e5227476bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_394.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_395.RULE b/src/licensedcode/data/rules/bsd-new_395.RULE index 4e6daebbaab..8e7d1bee8bb 100644 --- a/src/licensedcode/data/rules/bsd-new_395.RULE +++ b/src/licensedcode/data/rules/bsd-new_395.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed -under the BSD-Modified license: +under the BSD-Modified license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_395.yml b/src/licensedcode/data/rules/bsd-new_395.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_395.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_396.RULE b/src/licensedcode/data/rules/bsd-new_396.RULE index a7a4caea3bb..9d628a4cb2a 100644 --- a/src/licensedcode/data/rules/bsd-new_396.RULE +++ b/src/licensedcode/data/rules/bsd-new_396.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + available under a BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_396.yml b/src/licensedcode/data/rules/bsd-new_396.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_396.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_397.RULE b/src/licensedcode/data/rules/bsd-new_397.RULE index 100188e0092..1c129fa9726 100644 --- a/src/licensedcode/data/rules/bsd-new_397.RULE +++ b/src/licensedcode/data/rules/bsd-new_397.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -25,4 +31,4 @@ 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. +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_397.yml b/src/licensedcode/data/rules/bsd-new_397.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_397.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_398.RULE b/src/licensedcode/data/rules/bsd-new_398.RULE index 4150337e49f..87942d2867d 100644 --- a/src/licensedcode/data/rules/bsd-new_398.RULE +++ b/src/licensedcode/data/rules/bsd-new_398.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the BSD Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_398.yml b/src/licensedcode/data/rules/bsd-new_398.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_399.RULE b/src/licensedcode/data/rules/bsd-new_399.RULE index 138a792664f..05858a0ed25 100644 --- a/src/licensedcode/data/rules/bsd-new_399.RULE +++ b/src/licensedcode/data/rules/bsd-new_399.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + This -- and only this -- header file may also be distributed under - the terms of the BSD Licence as follows: + the terms of the BSD Licence as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_399.yml b/src/licensedcode/data/rules/bsd-new_399.yml deleted file mode 100644 index a20608d2f89..00000000000 --- a/src/licensedcode/data/rules/bsd-new_399.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_4.RULE b/src/licensedcode/data/rules/bsd-new_4.RULE index 6e9d5d93efc..11b3eff3841 100644 --- a/src/licensedcode/data/rules/bsd-new_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_4.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. + 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_4.yml b/src/licensedcode/data/rules/bsd-new_4.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_40.RULE b/src/licensedcode/data/rules/bsd-new_40.RULE index b165c6c84c6..5de62079c65 100644 --- a/src/licensedcode/data/rules/bsd-new_40.RULE +++ b/src/licensedcode/data/rules/bsd-new_40.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +notes: bsd notice +--- + * Alternatively, this software may be distributed under the terms of BSD * license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_40.yml b/src/licensedcode/data/rules/bsd-new_40.yml deleted file mode 100644 index 2cfd879bf78..00000000000 --- a/src/licensedcode/data/rules/bsd-new_40.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -notes: bsd notice diff --git a/src/licensedcode/data/rules/bsd-new_400.RULE b/src/licensedcode/data/rules/bsd-new_400.RULE index b932d396c6a..b5a581e121c 100644 --- a/src/licensedcode/data/rules/bsd-new_400.RULE +++ b/src/licensedcode/data/rules/bsd-new_400.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + available for use under the following license, commonly known as the 3-clause (or "modified") BSD license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_400.yml b/src/licensedcode/data/rules/bsd-new_400.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_400.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_401.RULE b/src/licensedcode/data/rules/bsd-new_401.RULE index a2f621eadec..a89434af280 100644 --- a/src/licensedcode/data/rules/bsd-new_401.RULE +++ b/src/licensedcode/data/rules/bsd-new_401.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + made available by them under the three-clause BSD license above \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_401.yml b/src/licensedcode/data/rules/bsd-new_401.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_401.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_402.RULE b/src/licensedcode/data/rules/bsd-new_402.RULE index d08be4fe7ed..720309e1170 100644 --- a/src/licensedcode/data/rules/bsd-new_402.RULE +++ b/src/licensedcode/data/rules/bsd-new_402.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_402.yml b/src/licensedcode/data/rules/bsd-new_402.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_402.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_403.RULE b/src/licensedcode/data/rules/bsd-new_403.RULE index f38b67ce4e8..547a1f83e00 100644 --- a/src/licensedcode/data/rules/bsd-new_403.RULE +++ b/src/licensedcode/data/rules/bsd-new_403.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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 +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_403.yml b/src/licensedcode/data/rules/bsd-new_403.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_403.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_404.RULE b/src/licensedcode/data/rules/bsd-new_404.RULE index 47b8bc530a4..7cb051e1d66 100644 --- a/src/licensedcode/data/rules/bsd-new_404.RULE +++ b/src/licensedcode/data/rules/bsd-new_404.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_404.yml b/src/licensedcode/data/rules/bsd-new_404.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_404.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_405.RULE b/src/licensedcode/data/rules/bsd-new_405.RULE index 2c5a46695cd..0e353335e3b 100644 --- a/src/licensedcode/data/rules/bsd-new_405.RULE +++ b/src/licensedcode/data/rules/bsd-new_405.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_405.yml b/src/licensedcode/data/rules/bsd-new_405.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_405.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_406.RULE b/src/licensedcode/data/rules/bsd-new_406.RULE index e79acdaf1e7..9a4d4ce6d85 100644 --- a/src/licensedcode/data/rules/bsd-new_406.RULE +++ b/src/licensedcode/data/rules/bsd-new_406.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + Berkeley Software Distribution style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_406.yml b/src/licensedcode/data/rules/bsd-new_406.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_406.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_407.RULE b/src/licensedcode/data/rules/bsd-new_407.RULE index a2c5743818e..7d26aac9dfa 100644 --- a/src/licensedcode/data/rules/bsd-new_407.RULE +++ b/src/licensedcode/data/rules/bsd-new_407.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -19,4 +24,4 @@ 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. +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_407.yml b/src/licensedcode/data/rules/bsd-new_407.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_407.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_408.RULE b/src/licensedcode/data/rules/bsd-new_408.RULE index 38c740fd715..6034c1707d0 100644 --- a/src/licensedcode/data/rules/bsd-new_408.RULE +++ b/src/licensedcode/data/rules/bsd-new_408.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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 +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_408.yml b/src/licensedcode/data/rules/bsd-new_408.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_408.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_409.RULE b/src/licensedcode/data/rules/bsd-new_409.RULE index dc5bd5fc877..7705733ab1f 100644 --- a/src/licensedcode/data/rules/bsd-new_409.RULE +++ b/src/licensedcode/data/rules/bsd-new_409.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_409.yml b/src/licensedcode/data/rules/bsd-new_409.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_409.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_40_1.RULE b/src/licensedcode/data/rules/bsd-new_40_1.RULE index e7798468efd..486d5a43865 100644 --- a/src/licensedcode/data/rules/bsd-new_40_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_40_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + * this software may be distributed under the terms of BSD * license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_40_1.yml b/src/licensedcode/data/rules/bsd-new_40_1.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_40_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_41.RULE b/src/licensedcode/data/rules/bsd-new_41.RULE index d956016ae26..e25fbb67b27 100644 --- a/src/licensedcode/data/rules/bsd-new_41.RULE +++ b/src/licensedcode/data/rules/bsd-new_41.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + based on BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_41.yml b/src/licensedcode/data/rules/bsd-new_41.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_410.RULE b/src/licensedcode/data/rules/bsd-new_410.RULE index c94aeaab258..2268cc57742 100644 --- a/src/licensedcode/data/rules/bsd-new_410.RULE +++ b/src/licensedcode/data/rules/bsd-new_410.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. +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_410.yml b/src/licensedcode/data/rules/bsd-new_410.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_410.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_411.RULE b/src/licensedcode/data/rules/bsd-new_411.RULE index b0b0b695a05..61bdf23e0b7 100644 --- a/src/licensedcode/data/rules/bsd-new_411.RULE +++ b/src/licensedcode/data/rules/bsd-new_411.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_411.yml b/src/licensedcode/data/rules/bsd-new_411.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_411.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_412.RULE b/src/licensedcode/data/rules/bsd-new_412.RULE index 6a171ca74d6..8ae55776e23 100644 --- a/src/licensedcode/data/rules/bsd-new_412.RULE +++ b/src/licensedcode/data/rules/bsd-new_412.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_412.yml b/src/licensedcode/data/rules/bsd-new_412.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_412.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_413.RULE b/src/licensedcode/data/rules/bsd-new_413.RULE index 5d6af3714a0..63547080501 100644 --- a/src/licensedcode/data/rules/bsd-new_413.RULE +++ b/src/licensedcode/data/rules/bsd-new_413.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Simplified BSD License 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. @@ -5,4 +10,4 @@ Redistribution and use in source and binary forms, with or without modification, * Neither the name of nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. * Neither the name of 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. +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_413.yml b/src/licensedcode/data/rules/bsd-new_413.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_413.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_414.RULE b/src/licensedcode/data/rules/bsd-new_414.RULE index f70ee60ba67..ce85d1f88f2 100644 --- a/src/licensedcode/data/rules/bsd-new_414.RULE +++ b/src/licensedcode/data/rules/bsd-new_414.RULE @@ -1,7 +1,12 @@ +--- +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 its contributors may be used to endorse or promote products derived from this software without specific prior written permission. * Neither the name of 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. +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_414.yml b/src/licensedcode/data/rules/bsd-new_414.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_414.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_415.RULE b/src/licensedcode/data/rules/bsd-new_415.RULE index b1054221100..27a41c120c4 100644 --- a/src/licensedcode/data/rules/bsd-new_415.RULE +++ b/src/licensedcode/data/rules/bsd-new_415.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Under BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_415.yml b/src/licensedcode/data/rules/bsd-new_415.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_415.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_416.RULE b/src/licensedcode/data/rules/bsd-new_416.RULE index 745b5d0478d..bb450c5475d 100644 --- a/src/licensedcode/data/rules/bsd-new_416.RULE +++ b/src/licensedcode/data/rules/bsd-new_416.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +notes: seen in FreeBSD +--- + BSD3CLAUSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_416.yml b/src/licensedcode/data/rules/bsd-new_416.yml deleted file mode 100644 index e1cd148b7a7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_416.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-new_417.RULE b/src/licensedcode/data/rules/bsd-new_417.RULE index fa7e0d1ff4f..706757f2a1c 100644 --- a/src/licensedcode/data/rules/bsd-new_417.RULE +++ b/src/licensedcode/data/rules/bsd-new_417.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 90 +--- + License: BSD-like \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_417.yml b/src/licensedcode/data/rules/bsd-new_417.yml deleted file mode 100644 index a9782d20a54..00000000000 --- a/src/licensedcode/data/rules/bsd-new_417.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_418.RULE b/src/licensedcode/data/rules/bsd-new_418.RULE index 3e867ee731d..f76606cf2ed 100644 --- a/src/licensedcode/data/rules/bsd-new_418.RULE +++ b/src/licensedcode/data/rules/bsd-new_418.RULE @@ -1 +1,7 @@ -FILE_LICENCE ( BSD3 ); +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + +FILE_LICENCE ( BSD3 ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_418.yml b/src/licensedcode/data/rules/bsd-new_418.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_418.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_419.RULE b/src/licensedcode/data/rules/bsd-new_419.RULE index cb932735344..5f6915cb241 100644 --- a/src/licensedcode/data/rules/bsd-new_419.RULE +++ b/src/licensedcode/data/rules/bsd-new_419.RULE @@ -1 +1,7 @@ - freely and openly available under the BSD 3-clause license +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + + freely and openly available under the BSD 3-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_419.yml b/src/licensedcode/data/rules/bsd-new_419.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_419.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_42.RULE b/src/licensedcode/data/rules/bsd-new_42.RULE index 45f2aed2f4c..245c5b97dd6 100644 --- a/src/licensedcode/data/rules/bsd-new_42.RULE +++ b/src/licensedcode/data/rules/bsd-new_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: BSD new variant, original with clause 3 removed +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +26,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_42.yml b/src/licensedcode/data/rules/bsd-new_42.yml deleted file mode 100644 index 76ca3c29a5e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: BSD new variant, original with clause 3 removed diff --git a/src/licensedcode/data/rules/bsd-new_420.RULE b/src/licensedcode/data/rules/bsd-new_420.RULE index 9885e532873..76b7c6c2e0f 100644 --- a/src/licensedcode/data/rules/bsd-new_420.RULE +++ b/src/licensedcode/data/rules/bsd-new_420.RULE @@ -1 +1,7 @@ -available under the BSD 3-clause license +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +available under the BSD 3-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_420.yml b/src/licensedcode/data/rules/bsd-new_420.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_420.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_421.RULE b/src/licensedcode/data/rules/bsd-new_421.RULE index f64607a7b41..b52e06df5e9 100644 --- a/src/licensedcode/data/rules/bsd-new_421.RULE +++ b/src/licensedcode/data/rules/bsd-new_421.RULE @@ -1 +1,7 @@ -under the BSD 3-clause license +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +under the BSD 3-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_421.yml b/src/licensedcode/data/rules/bsd-new_421.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_421.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_422.RULE b/src/licensedcode/data/rules/bsd-new_422.RULE index 731bd05a278..ab9423f0ff8 100644 --- a/src/licensedcode/data/rules/bsd-new_422.RULE +++ b/src/licensedcode/data/rules/bsd-new_422.RULE @@ -1,7 +1,15 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License # which accompanies this distribution. The full text of the license may be found at # http://opensource.org/licenses/bsd-license.php # # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_422.yml b/src/licensedcode/data/rules/bsd-new_422.yml deleted file mode 100644 index d9db10989df..00000000000 --- a/src/licensedcode/data/rules/bsd-new_422.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_423.RULE b/src/licensedcode/data/rules/bsd-new_423.RULE index df0c233200e..dcdb4929afa 100644 --- a/src/licensedcode/data/rules/bsd-new_423.RULE +++ b/src/licensedcode/data/rules/bsd-new_423.RULE @@ -1 +1,7 @@ -The complete text of the BSD license can be is as follows: +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + +The complete text of the BSD license can be is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_423.yml b/src/licensedcode/data/rules/bsd-new_423.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_423.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_424.RULE b/src/licensedcode/data/rules/bsd-new_424.RULE index aca03e294d7..99eb9cf0771 100644 --- a/src/licensedcode/data/rules/bsd-new_424.RULE +++ b/src/licensedcode/data/rules/bsd-new_424.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_424.yml b/src/licensedcode/data/rules/bsd-new_424.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_424.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_425.RULE b/src/licensedcode/data/rules/bsd-new_425.RULE index 4c2fa368446..e80ff09dd45 100644 --- a/src/licensedcode/data/rules/bsd-new_425.RULE +++ b/src/licensedcode/data/rules/bsd-new_425.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +--- + # This file contains code that was {{originally under the following license}}: # # Redistribution and use in source and binary forms, with or without @@ -21,4 +27,4 @@ # 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. +# 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_425.yml b/src/licensedcode/data/rules/bsd-new_425.yml deleted file mode 100644 index c81f8dc5384..00000000000 --- a/src/licensedcode/data/rules/bsd-new_425.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_426.RULE b/src/licensedcode/data/rules/bsd-new_426.RULE index fc850eac9be..a0207399618 100644 --- a/src/licensedcode/data/rules/bsd-new_426.RULE +++ b/src/licensedcode/data/rules/bsd-new_426.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/bsd-license.php +--- + https://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_426.yml b/src/licensedcode/data/rules/bsd-new_426.yml deleted file mode 100644 index c5fe50196ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_426.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_427.RULE b/src/licensedcode/data/rules/bsd-new_427.RULE index fe58b700989..c14ef912621 100644 --- a/src/licensedcode/data/rules/bsd-new_427.RULE +++ b/src/licensedcode/data/rules/bsd-new_427.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + distributed under the OSI-approved BSD 3-clause License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_427.yml b/src/licensedcode/data/rules/bsd-new_427.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_427.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_428.RULE b/src/licensedcode/data/rules/bsd-new_428.RULE index 70cb12eb3a6..1b36692e689 100644 --- a/src/licensedcode/data/rules/bsd-new_428.RULE +++ b/src/licensedcode/data/rules/bsd-new_428.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + New BSD Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_428.yml b/src/licensedcode/data/rules/bsd-new_428.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_428.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_429.RULE b/src/licensedcode/data/rules/bsd-new_429.RULE index dc00d4872b2..93793cdddca 100644 --- a/src/licensedcode/data/rules/bsd-new_429.RULE +++ b/src/licensedcode/data/rules/bsd-new_429.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + distributed under the OSI-approved BSD 3-clause License. Please see its Copyright.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_429.yml b/src/licensedcode/data/rules/bsd-new_429.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_429.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_43.RULE b/src/licensedcode/data/rules/bsd-new_43.RULE index 009b4559352..01af522a494 100644 --- a/src/licensedcode/data/rules/bsd-new_43.RULE +++ b/src/licensedcode/data/rules/bsd-new_43.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + Berkeley Software Distribution (BSD) License -http://www.opensource.org/licenses/bsd-license.html +http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_43.yml b/src/licensedcode/data/rules/bsd-new_43.yml deleted file mode 100644 index 535b476fcbd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_430.RULE b/src/licensedcode/data/rules/bsd-new_430.RULE index e22b02a8668..a7302ca32b3 100644 --- a/src/licensedcode/data/rules/bsd-new_430.RULE +++ b/src/licensedcode/data/rules/bsd-new_430.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://cmake.org/licensing +--- + Distributed under the OSI-approved BSD 3-Clause License. See https://cmake.org/licensing for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_430.yml b/src/licensedcode/data/rules/bsd-new_430.yml deleted file mode 100644 index adcbfd22173..00000000000 --- a/src/licensedcode/data/rules/bsd-new_430.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://cmake.org/licensing diff --git a/src/licensedcode/data/rules/bsd-new_431.RULE b/src/licensedcode/data/rules/bsd-new_431.RULE index e192dffca4c..2ba0113fea3 100644 --- a/src/licensedcode/data/rules/bsd-new_431.RULE +++ b/src/licensedcode/data/rules/bsd-new_431.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://cmake.org/licensing +--- + https://cmake.org/licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_431.yml b/src/licensedcode/data/rules/bsd-new_431.yml deleted file mode 100644 index c3bf0b9d042..00000000000 --- a/src/licensedcode/data/rules/bsd-new_431.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://cmake.org/licensing diff --git a/src/licensedcode/data/rules/bsd-new_432.RULE b/src/licensedcode/data/rules/bsd-new_432.RULE index 0fdf1ecc8b8..30484f4e4bd 100644 --- a/src/licensedcode/data/rules/bsd-new_432.RULE +++ b/src/licensedcode/data/rules/bsd-new_432.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://cmake.org/licensing +--- + http://cmake.org/licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_432.yml b/src/licensedcode/data/rules/bsd-new_432.yml deleted file mode 100644 index dc2a73985a3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_432.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://cmake.org/licensing diff --git a/src/licensedcode/data/rules/bsd-new_433.RULE b/src/licensedcode/data/rules/bsd-new_433.RULE index 2a660054d4d..7bf3b12d467 100644 --- a/src/licensedcode/data/rules/bsd-new_433.RULE +++ b/src/licensedcode/data/rules/bsd-new_433.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -19,4 +24,4 @@ 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. +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_433.yml b/src/licensedcode/data/rules/bsd-new_433.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_433.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_434.RULE b/src/licensedcode/data/rules/bsd-new_434.RULE index d94f9039bb7..d97d63057ef 100644 --- a/src/licensedcode/data/rules/bsd-new_434.RULE +++ b/src/licensedcode/data/rules/bsd-new_434.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 99 +--- + (hereinafter referred to as the author) * * Redistribution and use in source and binary forms, with or without @@ -21,4 +27,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_434.yml b/src/licensedcode/data/rules/bsd-new_434.yml deleted file mode 100644 index af5b7b99c3e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_434.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_435.RULE b/src/licensedcode/data/rules/bsd-new_435.RULE index 441738659b1..78e165cb925 100644 --- a/src/licensedcode/data/rules/bsd-new_435.RULE +++ b/src/licensedcode/data/rules/bsd-new_435.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_435.yml b/src/licensedcode/data/rules/bsd-new_435.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_435.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_436.RULE b/src/licensedcode/data/rules/bsd-new_436.RULE index fb2a463e20a..a62c6153ebd 100644 --- a/src/licensedcode/data/rules/bsd-new_436.RULE +++ b/src/licensedcode/data/rules/bsd-new_436.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + bsd Berkeley License - http://www.opensource.org/licenses/bsd-license.php + http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_436.yml b/src/licensedcode/data/rules/bsd-new_436.yml deleted file mode 100644 index 1a6b1a6d080..00000000000 --- a/src/licensedcode/data/rules/bsd-new_436.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_437.RULE b/src/licensedcode/data/rules/bsd-new_437.RULE index 7052b458aba..dd47fe3e1a7 100644 --- a/src/licensedcode/data/rules/bsd-new_437.RULE +++ b/src/licensedcode/data/rules/bsd-new_437.RULE @@ -1,4 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + This software is distributable under the BSD license. See the terms of the BSD license in the documentation provided with this software. -http://www.opensource.org/licenses/bsd-license.php +http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_437.yml b/src/licensedcode/data/rules/bsd-new_437.yml deleted file mode 100644 index 1a6b1a6d080..00000000000 --- a/src/licensedcode/data/rules/bsd-new_437.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_438.RULE b/src/licensedcode/data/rules/bsd-new_438.RULE index 3ba59ca8279..ce1a1d2ee56 100644 --- a/src/licensedcode/data/rules/bsd-new_438.RULE +++ b/src/licensedcode/data/rules/bsd-new_438.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + https://opensource.org/licenses/BSD-3-Clause Redistribution and use in source and binary forms, with or @@ -28,4 +36,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_438.yml b/src/licensedcode/data/rules/bsd-new_438.yml deleted file mode 100644 index dce75654413..00000000000 --- a/src/licensedcode/data/rules/bsd-new_438.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_439.RULE b/src/licensedcode/data/rules/bsd-new_439.RULE index 4ddad1c3e18..d1aa0c0ad6a 100644 --- a/src/licensedcode/data/rules/bsd-new_439.RULE +++ b/src/licensedcode/data/rules/bsd-new_439.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + http://www.opensource.org/licenses/bsd-license.php Redistribution and use in source and binary forms, with or @@ -28,4 +36,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_439.yml b/src/licensedcode/data/rules/bsd-new_439.yml deleted file mode 100644 index 81fa965c748..00000000000 --- a/src/licensedcode/data/rules/bsd-new_439.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_44.RULE b/src/licensedcode/data/rules/bsd-new_44.RULE index c1e42f9f7d8..3cdd8b5e6f6 100644 --- a/src/licensedcode/data/rules/bsd-new_44.RULE +++ b/src/licensedcode/data/rules/bsd-new_44.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + License (based on BSD license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_44.yml b/src/licensedcode/data/rules/bsd-new_44.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_440.RULE b/src/licensedcode/data/rules/bsd-new_440.RULE index 3e7a5c09cef..76bc3e6246b 100644 --- a/src/licensedcode/data/rules/bsd-new_440.RULE +++ b/src/licensedcode/data/rules/bsd-new_440.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + uses BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_440.yml b/src/licensedcode/data/rules/bsd-new_440.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_440.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_441.RULE b/src/licensedcode/data/rules/bsd-new_441.RULE index 269b22b7c5e..1587104519b 100644 --- a/src/licensedcode/data/rules/bsd-new_441.RULE +++ b/src/licensedcode/data/rules/bsd-new_441.RULE @@ -1,7 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: 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 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 +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_441.yml b/src/licensedcode/data/rules/bsd-new_441.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_441.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_442.RULE b/src/licensedcode/data/rules/bsd-new_442.RULE index 1fa40976607..00f6239e100 100644 --- a/src/licensedcode/data/rules/bsd-new_442.RULE +++ b/src/licensedcode/data/rules/bsd-new_442.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://netfx.codeplex.com/license +--- + http://netfx.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_442.yml b/src/licensedcode/data/rules/bsd-new_442.yml deleted file mode 100644 index d6bab9cd18a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_442.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://netfx.codeplex.com/license diff --git a/src/licensedcode/data/rules/bsd-new_443.RULE b/src/licensedcode/data/rules/bsd-new_443.RULE index 584f9db1552..34ea4fa8bc1 100644 --- a/src/licensedcode/data/rules/bsd-new_443.RULE +++ b/src/licensedcode/data/rules/bsd-new_443.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_443.yml b/src/licensedcode/data/rules/bsd-new_443.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_443.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_444.RULE b/src/licensedcode/data/rules/bsd-new_444.RULE index 9fea2883054..e805d9763b9 100644 --- a/src/licensedcode/data/rules/bsd-new_444.RULE +++ b/src/licensedcode/data/rules/bsd-new_444.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_444.yml b/src/licensedcode/data/rules/bsd-new_444.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_444.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_445.RULE b/src/licensedcode/data/rules/bsd-new_445.RULE index 361e79b7acc..c3dbe8109ef 100644 --- a/src/licensedcode/data/rules/bsd-new_445.RULE +++ b/src/licensedcode/data/rules/bsd-new_445.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/bsd-new_445.yml b/src/licensedcode/data/rules/bsd-new_445.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_445.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_446.RULE b/src/licensedcode/data/rules/bsd-new_446.RULE index 6aa947d3e34..3e04a2ecd3c 100644 --- a/src/licensedcode/data/rules/bsd-new_446.RULE +++ b/src/licensedcode/data/rules/bsd-new_446.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_446.yml b/src/licensedcode/data/rules/bsd-new_446.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_446.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_447.RULE b/src/licensedcode/data/rules/bsd-new_447.RULE index 289eed51cbf..bbedd441309 100644 --- a/src/licensedcode/data/rules/bsd-new_447.RULE +++ b/src/licensedcode/data/rules/bsd-new_447.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -26,4 +32,4 @@ 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 +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_447.yml b/src/licensedcode/data/rules/bsd-new_447.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_447.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_448.RULE b/src/licensedcode/data/rules/bsd-new_448.RULE index a1705651e50..ec6e846a6ca 100644 --- a/src/licensedcode/data/rules/bsd-new_448.RULE +++ b/src/licensedcode/data/rules/bsd-new_448.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under the Revised BSD License. The See LICENSE file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_448.yml b/src/licensedcode/data/rules/bsd-new_448.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_448.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_449.RULE b/src/licensedcode/data/rules/bsd-new_449.RULE index f4c64eeed35..183d1ddc099 100644 --- a/src/licensedcode/data/rules/bsd-new_449.RULE +++ b/src/licensedcode/data/rules/bsd-new_449.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + library is distributed under the New BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_449.yml b/src/licensedcode/data/rules/bsd-new_449.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_449.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_45.RULE b/src/licensedcode/data/rules/bsd-new_45.RULE index 5fce11b50f7..f7f436da806 100644 --- a/src/licensedcode/data/rules/bsd-new_45.RULE +++ b/src/licensedcode/data/rules/bsd-new_45.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + This file is entirely BSD licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_45.yml b/src/licensedcode/data/rules/bsd-new_45.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_450.RULE b/src/licensedcode/data/rules/bsd-new_450.RULE index c76d0d7bde7..03cec146f5d 100644 --- a/src/licensedcode/data/rules/bsd-new_450.RULE +++ b/src/licensedcode/data/rules/bsd-new_450.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + covered by his BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_450.yml b/src/licensedcode/data/rules/bsd-new_450.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_450.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_451.RULE b/src/licensedcode/data/rules/bsd-new_451.RULE index 1300ef97333..49a46c1e103 100644 --- a/src/licensedcode/data/rules/bsd-new_451.RULE +++ b/src/licensedcode/data/rules/bsd-new_451.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + The distribution is licensed under the BSD License (http://www.opensource.org/licenses/bsd-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_451.yml b/src/licensedcode/data/rules/bsd-new_451.yml deleted file mode 100644 index 511a866c0b0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_451.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_452.RULE b/src/licensedcode/data/rules/bsd-new_452.RULE index 501e46c7f1f..48b0c079dbc 100644 --- a/src/licensedcode/data/rules/bsd-new_452.RULE +++ b/src/licensedcode/data/rules/bsd-new_452.RULE @@ -1 +1,11 @@ -# See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - Copyright.txt +ignorable_urls: + - http://www.cmake.org/HTML/Copyright.html +--- + +# See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_452.yml b/src/licensedcode/data/rules/bsd-new_452.yml deleted file mode 100644 index c09e55b5fa5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_452.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - Copyright.txt -ignorable_urls: - - http://www.cmake.org/HTML/Copyright.html diff --git a/src/licensedcode/data/rules/bsd-new_453.RULE b/src/licensedcode/data/rules/bsd-new_453.RULE index f567635a162..ccb19f5b22b 100644 --- a/src/licensedcode/data/rules/bsd-new_453.RULE +++ b/src/licensedcode/data/rules/bsd-new_453.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD style license (3-clause BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_453.yml b/src/licensedcode/data/rules/bsd-new_453.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_453.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_454.RULE b/src/licensedcode/data/rules/bsd-new_454.RULE index bf22b5e8adc..b7c46dde2cb 100644 --- a/src/licensedcode/data/rules/bsd-new_454.RULE +++ b/src/licensedcode/data/rules/bsd-new_454.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.BSD +--- + The complete text of the Modified BSD licence can be found in LICENSE.BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_454.yml b/src/licensedcode/data/rules/bsd-new_454.yml deleted file mode 100644 index 090c1944594..00000000000 --- a/src/licensedcode/data/rules/bsd-new_454.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.BSD diff --git a/src/licensedcode/data/rules/bsd-new_455.RULE b/src/licensedcode/data/rules/bsd-new_455.RULE index 76424b2a24f..a283989e48c 100644 --- a/src/licensedcode/data/rules/bsd-new_455.RULE +++ b/src/licensedcode/data/rules/bsd-new_455.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_455.yml b/src/licensedcode/data/rules/bsd-new_455.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_455.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_456.RULE b/src/licensedcode/data/rules/bsd-new_456.RULE index 5a0c064b99b..9ea88fd90e4 100644 --- a/src/licensedcode/data/rules/bsd-new_456.RULE +++ b/src/licensedcode/data/rules/bsd-new_456.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +27,4 @@ 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. +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_456.yml b/src/licensedcode/data/rules/bsd-new_456.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_456.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_457.RULE b/src/licensedcode/data/rules/bsd-new_457.RULE index 60da4c4dce9..75ab7a3585e 100644 --- a/src/licensedcode/data/rules/bsd-new_457.RULE +++ b/src/licensedcode/data/rules/bsd-new_457.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + under BSD licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_457.yml b/src/licensedcode/data/rules/bsd-new_457.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_457.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_458.RULE b/src/licensedcode/data/rules/bsd-new_458.RULE index beb16d90cd8..2c3cb126858 100644 --- a/src/licensedcode/data/rules/bsd-new_458.RULE +++ b/src/licensedcode/data/rules/bsd-new_458.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + under BSD-new licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_458.yml b/src/licensedcode/data/rules/bsd-new_458.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_458.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_459.RULE b/src/licensedcode/data/rules/bsd-new_459.RULE index ec50ac62028..c758926336b 100644 --- a/src/licensedcode/data/rules/bsd-new_459.RULE +++ b/src/licensedcode/data/rules/bsd-new_459.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + under BSD 3-clause licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_459.yml b/src/licensedcode/data/rules/bsd-new_459.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_459.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_46.RULE b/src/licensedcode/data/rules/bsd-new_46.RULE index ef23c58a8e7..d9ac0e4f1ea 100644 --- a/src/licensedcode/data/rules/bsd-new_46.RULE +++ b/src/licensedcode/data/rules/bsd-new_46.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Distributed with a BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_46.yml b/src/licensedcode/data/rules/bsd-new_46.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_460.RULE b/src/licensedcode/data/rules/bsd-new_460.RULE index 523e2236e4b..5eb342d949b 100644 --- a/src/licensedcode/data/rules/bsd-new_460.RULE +++ b/src/licensedcode/data/rules/bsd-new_460.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Three-clause BSD licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_460.yml b/src/licensedcode/data/rules/bsd-new_460.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_460.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_461.RULE b/src/licensedcode/data/rules/bsd-new_461.RULE index 2cf53778cba..9fd348adbe0 100644 --- a/src/licensedcode/data/rules/bsd-new_461.RULE +++ b/src/licensedcode/data/rules/bsd-new_461.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + 3-term BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_461.yml b/src/licensedcode/data/rules/bsd-new_461.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_461.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_462.RULE b/src/licensedcode/data/rules/bsd-new_462.RULE index 48398ca3259..09068d9fda3 100644 --- a/src/licensedcode/data/rules/bsd-new_462.RULE +++ b/src/licensedcode/data/rules/bsd-new_462.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under a 3-term BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_462.yml b/src/licensedcode/data/rules/bsd-new_462.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_462.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_463.RULE b/src/licensedcode/data/rules/bsd-new_463.RULE index c4809b5cc63..5fc2825f711 100644 --- a/src/licensedcode/data/rules/bsd-new_463.RULE +++ b/src/licensedcode/data/rules/bsd-new_463.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + under a 3-term BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_463.yml b/src/licensedcode/data/rules/bsd-new_463.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_463.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_464.RULE b/src/licensedcode/data/rules/bsd-new_464.RULE index de1f58c36de..85af47ad8af 100644 --- a/src/licensedcode/data/rules/bsd-new_464.RULE +++ b/src/licensedcode/data/rules/bsd-new_464.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Some code is licensed under a 3-term BSD license, to the following copyright holders: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_464.yml b/src/licensedcode/data/rules/bsd-new_464.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_464.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_465.RULE b/src/licensedcode/data/rules/bsd-new_465.RULE index 0a53a533637..3ae0a3eb65d 100644 --- a/src/licensedcode/data/rules/bsd-new_465.RULE +++ b/src/licensedcode/data/rules/bsd-new_465.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + One component of the ssh source code is under a 3-clause BSD license, held by the University of California, since we pulled these parts from original Berkeley code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_465.yml b/src/licensedcode/data/rules/bsd-new_465.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_465.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_466.RULE b/src/licensedcode/data/rules/bsd-new_466.RULE index 8433d66584e..2df96fdd6f1 100644 --- a/src/licensedcode/data/rules/bsd-new_466.RULE +++ b/src/licensedcode/data/rules/bsd-new_466.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + source code is under a 3-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_466.yml b/src/licensedcode/data/rules/bsd-new_466.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_466.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_467.RULE b/src/licensedcode/data/rules/bsd-new_467.RULE index f84a23ca39d..3b0247b4c72 100644 --- a/src/licensedcode/data/rules/bsd-new_467.RULE +++ b/src/licensedcode/data/rules/bsd-new_467.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + * Licensed under the New BSD License * See: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_467.yml b/src/licensedcode/data/rules/bsd-new_467.yml deleted file mode 100644 index 9179a28ecea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_467.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_468.RULE b/src/licensedcode/data/rules/bsd-new_468.RULE index 363db3368ed..8eca99f4f60 100644 --- a/src/licensedcode/data/rules/bsd-new_468.RULE +++ b/src/licensedcode/data/rules/bsd-new_468.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - https://www.opensource.org/licenses/bsd-license.php +--- + * Licensed under the New BSD License - * See: https://www.opensource.org/licenses/bsd-license.php + * See: https://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_468.yml b/src/licensedcode/data/rules/bsd-new_468.yml deleted file mode 100644 index 0df54950ac7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_468.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - https://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_469.RULE b/src/licensedcode/data/rules/bsd-new_469.RULE index 3e842003dbb..3fcd7e8e962 100644 --- a/src/licensedcode/data/rules/bsd-new_469.RULE +++ b/src/licensedcode/data/rules/bsd-new_469.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.phyast.pitt.edu/~micheles/python/documentation.html +--- + distributed under the terms of the BSD License (see below). http://www.phyast.pitt.edu/~micheles/python/documentation.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_469.yml b/src/licensedcode/data/rules/bsd-new_469.yml deleted file mode 100644 index 07acd27395c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_469.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.phyast.pitt.edu/~micheles/python/documentation.html diff --git a/src/licensedcode/data/rules/bsd-new_47.RULE b/src/licensedcode/data/rules/bsd-new_47.RULE index 684d2fa8be8..703f79d0e20 100644 --- a/src/licensedcode/data/rules/bsd-new_47.RULE +++ b/src/licensedcode/data/rules/bsd-new_47.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -25,4 +31,4 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * This software has been written for the Internet Software Consortium + * This software has been written for the Internet Software Consortium \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_47.yml b/src/licensedcode/data/rules/bsd-new_47.yml deleted file mode 100644 index 5731e985836..00000000000 --- a/src/licensedcode/data/rules/bsd-new_47.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 - diff --git a/src/licensedcode/data/rules/bsd-new_470.RULE b/src/licensedcode/data/rules/bsd-new_470.RULE index 38cd3eced30..ddf3b4726a7 100644 --- a/src/licensedcode/data/rules/bsd-new_470.RULE +++ b/src/licensedcode/data/rules/bsd-new_470.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the BSD License (see below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_470.yml b/src/licensedcode/data/rules/bsd-new_470.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_470.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_471.RULE b/src/licensedcode/data/rules/bsd-new_471.RULE index 08e6e255a1a..cfe73a36457 100644 --- a/src/licensedcode/data/rules/bsd-new_471.RULE +++ b/src/licensedcode/data/rules/bsd-new_471.RULE @@ -1 +1,7 @@ -distributed under the terms of the BSD License \ No newline at end of file +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + +distributed under the terms of the BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_471.yml b/src/licensedcode/data/rules/bsd-new_471.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_471.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_472.RULE b/src/licensedcode/data/rules/bsd-new_472.RULE index a1721a434dd..fecf66007b5 100644 --- a/src/licensedcode/data/rules/bsd-new_472.RULE +++ b/src/licensedcode/data/rules/bsd-new_472.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + The BSD 3-Clause "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_472.yml b/src/licensedcode/data/rules/bsd-new_472.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_472.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_473.RULE b/src/licensedcode/data/rules/bsd-new_473.RULE index 13a53bb6386..e260fc0fac1 100644 --- a/src/licensedcode/data/rules/bsd-new_473.RULE +++ b/src/licensedcode/data/rules/bsd-new_473.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_473.yml b/src/licensedcode/data/rules/bsd-new_473.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_473.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_474.RULE b/src/licensedcode/data/rules/bsd-new_474.RULE index 56aafd097f0..7dc61e629b6 100644 --- a/src/licensedcode/data/rules/bsd-new_474.RULE +++ b/src/licensedcode/data/rules/bsd-new_474.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + Licensed under the BSD license, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_474.yml b/src/licensedcode/data/rules/bsd-new_474.yml deleted file mode 100644 index f165bfd52c7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_474.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_475.RULE b/src/licensedcode/data/rules/bsd-new_475.RULE index 5b6eaa9c576..d82722c3dcf 100644 --- a/src/licensedcode/data/rules/bsd-new_475.RULE +++ b/src/licensedcode/data/rules/bsd-new_475.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + License -cIFrex is completely free. You can use, copy and modify it on the base of BSDv2 license. \ No newline at end of file +cIFrex is completely free. You can use, copy and modify it on the base of BSDv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_475.yml b/src/licensedcode/data/rules/bsd-new_475.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_475.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_476.RULE b/src/licensedcode/data/rules/bsd-new_476.RULE index 7e2da29d608..b4940f1e2d2 100644 --- a/src/licensedcode/data/rules/bsd-new_476.RULE +++ b/src/licensedcode/data/rules/bsd-new_476.RULE @@ -1 +1,7 @@ -You can use, copy and modify it on the base of BSDv2 license. +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + +You can use, copy and modify it on the base of BSDv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_476.yml b/src/licensedcode/data/rules/bsd-new_476.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_476.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_477.RULE b/src/licensedcode/data/rules/bsd-new_477.RULE index 3f3cb8d5bd2..49768b728fa 100644 --- a/src/licensedcode/data/rules/bsd-new_477.RULE +++ b/src/licensedcode/data/rules/bsd-new_477.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + software is open source software with portions licensed under a BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_477.yml b/src/licensedcode/data/rules/bsd-new_477.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_477.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_478.RULE b/src/licensedcode/data/rules/bsd-new_478.RULE index afd61993bc9..5deebb5cbcd 100644 --- a/src/licensedcode/data/rules/bsd-new_478.RULE +++ b/src/licensedcode/data/rules/bsd-new_478.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under a BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_478.yml b/src/licensedcode/data/rules/bsd-new_478.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_478.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_479.RULE b/src/licensedcode/data/rules/bsd-new_479.RULE index 03ec306078d..f6b626cbedb 100644 --- a/src/licensedcode/data/rules/bsd-new_479.RULE +++ b/src/licensedcode/data/rules/bsd-new_479.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + portions licensed under a BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_479.yml b/src/licensedcode/data/rules/bsd-new_479.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_479.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_48.RULE b/src/licensedcode/data/rules/bsd-new_48.RULE index 8c607ee61fd..a3f841155be 100644 --- a/src/licensedcode/data/rules/bsd-new_48.RULE +++ b/src/licensedcode/data/rules/bsd-new_48.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_48.yml b/src/licensedcode/data/rules/bsd-new_48.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_48.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_480.RULE b/src/licensedcode/data/rules/bsd-new_480.RULE index 76acfc04ad7..0f75f882724 100644 --- a/src/licensedcode/data/rules/bsd-new_480.RULE +++ b/src/licensedcode/data/rules/bsd-new_480.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + BSD LICENSE Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_480.yml b/src/licensedcode/data/rules/bsd-new_480.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_480.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_481.RULE b/src/licensedcode/data/rules/bsd-new_481.RULE index e50a8b7dc95..2be9546dffd 100644 --- a/src/licensedcode/data/rules/bsd-new_481.RULE +++ b/src/licensedcode/data/rules/bsd-new_481.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -7,4 +13,4 @@ Redistribution and use in source and binary forms, with or without modification, * The name of Intel Corporation may not 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 Intel Corporation or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage. +This 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 Intel Corporation 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_481.yml b/src/licensedcode/data/rules/bsd-new_481.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_481.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_482.RULE b/src/licensedcode/data/rules/bsd-new_482.RULE index 59d8dd530c7..401b985f141 100644 --- a/src/licensedcode/data/rules/bsd-new_482.RULE +++ b/src/licensedcode/data/rules/bsd-new_482.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 80 +--- + Intel License Agreement For Open Source Computer Vision Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_482.yml b/src/licensedcode/data/rules/bsd-new_482.yml deleted file mode 100644 index 9d5dde691d6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_482.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/bsd-new_483.RULE b/src/licensedcode/data/rules/bsd-new_483.RULE index 38bec662c01..149f1239e61 100644 --- a/src/licensedcode/data/rules/bsd-new_483.RULE +++ b/src/licensedcode/data/rules/bsd-new_483.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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. @@ -6,4 +12,4 @@ Redistribution and use in source and binary forms, with or without modification, 3. The name of Wasabi Systems, Inc. may not be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``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 WASABI SYSTEMS, INC BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``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 WASABI SYSTEMS, INC 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_483.yml b/src/licensedcode/data/rules/bsd-new_483.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_483.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_484.RULE b/src/licensedcode/data/rules/bsd-new_484.RULE index 8e82cee2ff8..9dbb60d5483 100644 --- a/src/licensedcode/data/rules/bsd-new_484.RULE +++ b/src/licensedcode/data/rules/bsd-new_484.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_484.yml b/src/licensedcode/data/rules/bsd-new_484.yml deleted file mode 100644 index 81fa965c748..00000000000 --- a/src/licensedcode/data/rules/bsd-new_484.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_485.RULE b/src/licensedcode/data/rules/bsd-new_485.RULE index 1a3f1e6810d..2e92f152669 100644 --- a/src/licensedcode/data/rules/bsd-new_485.RULE +++ b/src/licensedcode/data/rules/bsd-new_485.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + * 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. diff --git a/src/licensedcode/data/rules/bsd-new_485.yml b/src/licensedcode/data/rules/bsd-new_485.yml deleted file mode 100644 index 81fa965c748..00000000000 --- a/src/licensedcode/data/rules/bsd-new_485.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_486.RULE b/src/licensedcode/data/rules/bsd-new_486.RULE index 741666a66de..41d5c8fd788 100644 --- a/src/licensedcode/data/rules/bsd-new_486.RULE +++ b/src/licensedcode/data/rules/bsd-new_486.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + * 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. diff --git a/src/licensedcode/data/rules/bsd-new_486.yml b/src/licensedcode/data/rules/bsd-new_486.yml deleted file mode 100644 index 81fa965c748..00000000000 --- a/src/licensedcode/data/rules/bsd-new_486.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_487.RULE b/src/licensedcode/data/rules/bsd-new_487.RULE index 332b686add5..85a1177650d 100644 --- a/src/licensedcode/data/rules/bsd-new_487.RULE +++ b/src/licensedcode/data/rules/bsd-new_487.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + * http://www.opensource.org/licenses/bsd-license.php * * See scriptaculous.js for full scriptaculous licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_487.yml b/src/licensedcode/data/rules/bsd-new_487.yml deleted file mode 100644 index 61e08468ac4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_487.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_488.RULE b/src/licensedcode/data/rules/bsd-new_488.RULE index 9cb08f55012..7892ec3eb2c 100644 --- a/src/licensedcode/data/rules/bsd-new_488.RULE +++ b/src/licensedcode/data/rules/bsd-new_488.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + * See scriptaculous.js for full scriptaculous licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_488.yml b/src/licensedcode/data/rules/bsd-new_488.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_488.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_489.RULE b/src/licensedcode/data/rules/bsd-new_489.RULE index c7395a1b94a..66d4f88ed27 100644 --- a/src/licensedcode/data/rules/bsd-new_489.RULE +++ b/src/licensedcode/data/rules/bsd-new_489.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + Original License : BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_489.yml b/src/licensedcode/data/rules/bsd-new_489.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_489.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_49.RULE b/src/licensedcode/data/rules/bsd-new_49.RULE index 8facc13a2f8..0972eef0608 100644 --- a/src/licensedcode/data/rules/bsd-new_49.RULE +++ b/src/licensedcode/data/rules/bsd-new_49.RULE @@ -1,3 +1,8 @@ +--- +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. diff --git a/src/licensedcode/data/rules/bsd-new_49.yml b/src/licensedcode/data/rules/bsd-new_49.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_49.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_490.RULE b/src/licensedcode/data/rules/bsd-new_490.RULE index e8927db1417..930704fd588 100644 --- a/src/licensedcode/data/rules/bsd-new_490.RULE +++ b/src/licensedcode/data/rules/bsd-new_490.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_490.yml b/src/licensedcode/data/rules/bsd-new_490.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_490.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_491.RULE b/src/licensedcode/data/rules/bsd-new_491.RULE index 3102594afb9..7d760655ef9 100644 --- a/src/licensedcode/data/rules/bsd-new_491.RULE +++ b/src/licensedcode/data/rules/bsd-new_491.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_491.yml b/src/licensedcode/data/rules/bsd-new_491.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_491.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_492.RULE b/src/licensedcode/data/rules/bsd-new_492.RULE index a43e25c5706..f49913bcd4f 100644 --- a/src/licensedcode/data/rules/bsd-new_492.RULE +++ b/src/licensedcode/data/rules/bsd-new_492.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + By downloading, copying, installing or using the software you agree to this license. If you do not agree to this license, do not download, install, copy or use the software. diff --git a/src/licensedcode/data/rules/bsd-new_492.yml b/src/licensedcode/data/rules/bsd-new_492.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_492.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_493.RULE b/src/licensedcode/data/rules/bsd-new_493.RULE index 55164430ca4..dff401271eb 100644 --- a/src/licensedcode/data/rules/bsd-new_493.RULE +++ b/src/licensedcode/data/rules/bsd-new_493.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_493.yml b/src/licensedcode/data/rules/bsd-new_493.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_493.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_494.RULE b/src/licensedcode/data/rules/bsd-new_494.RULE index e3a22cbd4aa..3ee804b0da9 100644 --- a/src/licensedcode/data/rules/bsd-new_494.RULE +++ b/src/licensedcode/data/rules/bsd-new_494.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + Update modules from the NetBSD source tree (the old 4-clause BSD license changed to the new 3-clause one). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_494.yml b/src/licensedcode/data/rules/bsd-new_494.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_494.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_495.RULE b/src/licensedcode/data/rules/bsd-new_495.RULE index 5862dfcb380..8fca40c7032 100644 --- a/src/licensedcode/data/rules/bsd-new_495.RULE +++ b/src/licensedcode/data/rules/bsd-new_495.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +referenced_filenames: + - LICENSE +--- + is now covered by a modified BSD license. See LICENSE for the new terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_495.yml b/src/licensedcode/data/rules/bsd-new_495.yml deleted file mode 100644 index fb32e3c94a3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_495.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_496.RULE b/src/licensedcode/data/rules/bsd-new_496.RULE index f034e4122c7..7c31c5ed881 100644 --- a/src/licensedcode/data/rules/bsd-new_496.RULE +++ b/src/licensedcode/data/rules/bsd-new_496.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_496.yml b/src/licensedcode/data/rules/bsd-new_496.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_496.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_497.RULE b/src/licensedcode/data/rules/bsd-new_497.RULE index 8b542b9789b..3db510fd9c8 100644 --- a/src/licensedcode/data/rules/bsd-new_497.RULE +++ b/src/licensedcode/data/rules/bsd-new_497.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_497.yml b/src/licensedcode/data/rules/bsd-new_497.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_497.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_498.RULE b/src/licensedcode/data/rules/bsd-new_498.RULE index 2d914d76924..dad279cac9c 100644 --- a/src/licensedcode/data/rules/bsd-new_498.RULE +++ b/src/licensedcode/data/rules/bsd-new_498.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Distributed under the BSD 3-clause License, \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_498.yml b/src/licensedcode/data/rules/bsd-new_498.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_498.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_499.RULE b/src/licensedcode/data/rules/bsd-new_499.RULE index 19ab1641d99..a7789f4dc0d 100644 --- a/src/licensedcode/data/rules/bsd-new_499.RULE +++ b/src/licensedcode/data/rules/bsd-new_499.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_499.yml b/src/licensedcode/data/rules/bsd-new_499.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_499.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_5.RULE b/src/licensedcode/data/rules/bsd-new_5.RULE index 70ecf6b2af6..65bd650c207 100644 --- a/src/licensedcode/data/rules/bsd-new_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_5.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -6,5 +11,4 @@ Redistribution and use in source and binary forms, with or without modification, THIS SOFTWARE IS PROVIDED BY 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 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. - +IN NO EVENT SHALL THE 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_5.yml b/src/licensedcode/data/rules/bsd-new_5.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_50.RULE b/src/licensedcode/data/rules/bsd-new_50.RULE index 06dc368776d..31a2e802fd4 100644 --- a/src/licensedcode/data/rules/bsd-new_50.RULE +++ b/src/licensedcode/data/rules/bsd-new_50.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +minimum_coverage: 70 +notes: missing first statement +--- + 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 its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/src/licensedcode/data/rules/bsd-new_50.yml b/src/licensedcode/data/rules/bsd-new_50.yml deleted file mode 100644 index dfce5f2cbe5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 -minimum_coverage: 70 -notes: missing first statement diff --git a/src/licensedcode/data/rules/bsd-new_500.RULE b/src/licensedcode/data/rules/bsd-new_500.RULE index bb68d510d41..47511d1022c 100644 --- a/src/licensedcode/data/rules/bsd-new_500.RULE +++ b/src/licensedcode/data/rules/bsd-new_500.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: the license of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_500.yml b/src/licensedcode/data/rules/bsd-new_500.yml deleted file mode 100644 index 91b0ac76c44..00000000000 --- a/src/licensedcode/data/rules/bsd-new_500.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: the license of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ diff --git a/src/licensedcode/data/rules/bsd-new_501.RULE b/src/licensedcode/data/rules/bsd-new_501.RULE index f65b5bcf4ba..2c648636f16 100644 --- a/src/licensedcode/data/rules/bsd-new_501.RULE +++ b/src/licensedcode/data/rules/bsd-new_501.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: seen in pear packages +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + BSD 3-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_501.yml b/src/licensedcode/data/rules/bsd-new_501.yml deleted file mode 100644 index f3020fe45c2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_501.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: seen in pear packages -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_502.RULE b/src/licensedcode/data/rules/bsd-new_502.RULE index 3c659db1594..3d3c2460a1e 100644 --- a/src/licensedcode/data/rules/bsd-new_502.RULE +++ b/src/licensedcode/data/rules/bsd-new_502.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + This file is based on files from packages softfloat and fdlibm issued with the following licenses: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_502.yml b/src/licensedcode/data/rules/bsd-new_502.yml deleted file mode 100644 index 3c43e265100..00000000000 --- a/src/licensedcode/data/rules/bsd-new_502.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_503.RULE b/src/licensedcode/data/rules/bsd-new_503.RULE index dd199e8cb27..702e737658b 100644 --- a/src/licensedcode/data/rules/bsd-new_503.RULE +++ b/src/licensedcode/data/rules/bsd-new_503.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_503.yml b/src/licensedcode/data/rules/bsd-new_503.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_503.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_504.RULE b/src/licensedcode/data/rules/bsd-new_504.RULE index fc475fde4e9..22a79012ff2 100644 --- a/src/licensedcode/data/rules/bsd-new_504.RULE +++ b/src/licensedcode/data/rules/bsd-new_504.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_504.yml b/src/licensedcode/data/rules/bsd-new_504.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_504.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_505.RULE b/src/licensedcode/data/rules/bsd-new_505.RULE index 4db4564e59a..f3f4ae29dde 100644 --- a/src/licensedcode/data/rules/bsd-new_505.RULE +++ b/src/licensedcode/data/rules/bsd-new_505.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) Intel Corporation +ignorable_holders: + - Intel Corporation +--- + IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. By downloading, copying, installing or using the software you agree to this license. diff --git a/src/licensedcode/data/rules/bsd-new_505.yml b/src/licensedcode/data/rules/bsd-new_505.yml deleted file mode 100644 index b35b5c4f92b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_505.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) Intel Corporation -ignorable_holders: - - Intel Corporation diff --git a/src/licensedcode/data/rules/bsd-new_506.RULE b/src/licensedcode/data/rules/bsd-new_506.RULE index a5823fc1567..09cdb07d403 100644 --- a/src/licensedcode/data/rules/bsd-new_506.RULE +++ b/src/licensedcode/data/rules/bsd-new_506.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_506.yml b/src/licensedcode/data/rules/bsd-new_506.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_506.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_507.RULE b/src/licensedcode/data/rules/bsd-new_507.RULE index 0819b5bde2d..9bafcf83e18 100644 --- a/src/licensedcode/data/rules/bsd-new_507.RULE +++ b/src/licensedcode/data/rules/bsd-new_507.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. By downloading, copying, installing or using the software you agree to this license. diff --git a/src/licensedcode/data/rules/bsd-new_507.yml b/src/licensedcode/data/rules/bsd-new_507.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_507.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_508.RULE b/src/licensedcode/data/rules/bsd-new_508.RULE index bb83244bf8d..80380c977c6 100644 --- a/src/licensedcode/data/rules/bsd-new_508.RULE +++ b/src/licensedcode/data/rules/bsd-new_508.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_508.yml b/src/licensedcode/data/rules/bsd-new_508.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_508.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_509.RULE b/src/licensedcode/data/rules/bsd-new_509.RULE index 1b5d8886f55..32a3f10f2b8 100644 --- a/src/licensedcode/data/rules/bsd-new_509.RULE +++ b/src/licensedcode/data/rules/bsd-new_509.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + Software License Agreement (BSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_509.yml b/src/licensedcode/data/rules/bsd-new_509.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_509.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_51.RULE b/src/licensedcode/data/rules/bsd-new_51.RULE index eecd9715e9d..415b4a50bc3 100644 --- a/src/licensedcode/data/rules/bsd-new_51.RULE +++ b/src/licensedcode/data/rules/bsd-new_51.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Distributed with a BSD license; see LICENSE.txt:: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_51.yml b/src/licensedcode/data/rules/bsd-new_51.yml deleted file mode 100644 index 9eae0edd739..00000000000 --- a/src/licensedcode/data/rules/bsd-new_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_510.RULE b/src/licensedcode/data/rules/bsd-new_510.RULE index 05ffb194d4d..2d7f3f367b4 100644 --- a/src/licensedcode/data/rules/bsd-new_510.RULE +++ b/src/licensedcode/data/rules/bsd-new_510.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + subject in whole or in part to a 3-clause UC Regents copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_510.yml b/src/licensedcode/data/rules/bsd-new_510.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_510.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_511.RULE b/src/licensedcode/data/rules/bsd-new_511.RULE index 4bb4355e664..fe5516ccc2e 100644 --- a/src/licensedcode/data/rules/bsd-new_511.RULE +++ b/src/licensedcode/data/rules/bsd-new_511.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. By downloading, copying, installing or using the software you agree to this license. diff --git a/src/licensedcode/data/rules/bsd-new_511.yml b/src/licensedcode/data/rules/bsd-new_511.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_511.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_512.RULE b/src/licensedcode/data/rules/bsd-new_512.RULE index 0d61d4f57d4..5308e1c4fe4 100644 --- a/src/licensedcode/data/rules/bsd-new_512.RULE +++ b/src/licensedcode/data/rules/bsd-new_512.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opencv.org/license.html +--- + License Agreement For Open Source Computer Vision Library (3-clause BSD License) diff --git a/src/licensedcode/data/rules/bsd-new_512.yml b/src/licensedcode/data/rules/bsd-new_512.yml deleted file mode 100644 index c802ea69f9f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_512.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opencv.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_513.RULE b/src/licensedcode/data/rules/bsd-new_513.RULE index 7324daa4a6d..78cb9910079 100644 --- a/src/licensedcode/data/rules/bsd-new_513.RULE +++ b/src/licensedcode/data/rules/bsd-new_513.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opencv.org/license.html +--- + License Agreement For Open Source Computer Vision Library (3-clause BSD License) http://opencv.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_513.yml b/src/licensedcode/data/rules/bsd-new_513.yml deleted file mode 100644 index c802ea69f9f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_513.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opencv.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_514.RULE b/src/licensedcode/data/rules/bsd-new_514.RULE index 5d7f18b00b0..69dc33ddf8d 100644 --- a/src/licensedcode/data/rules/bsd-new_514.RULE +++ b/src/licensedcode/data/rules/bsd-new_514.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opencv.org/license.html +--- + License Agreement For Open Source Computer Vision Library (3-clause BSD License) http://opencv.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_514.yml b/src/licensedcode/data/rules/bsd-new_514.yml deleted file mode 100644 index bfc96385ea5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_514.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opencv.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_515.RULE b/src/licensedcode/data/rules/bsd-new_515.RULE index 550846a6683..1b309526133 100644 --- a/src/licensedcode/data/rules/bsd-new_515.RULE +++ b/src/licensedcode/data/rules/bsd-new_515.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + License Agreement For Open Source Computer Vision Library (3-clause BSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_515.yml b/src/licensedcode/data/rules/bsd-new_515.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_515.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_516.RULE b/src/licensedcode/data/rules/bsd-new_516.RULE index 4ef9860f15b..8669343776c 100644 --- a/src/licensedcode/data/rules/bsd-new_516.RULE +++ b/src/licensedcode/data/rules/bsd-new_516.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opencv.org/license.html +--- + http://opencv.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_516.yml b/src/licensedcode/data/rules/bsd-new_516.yml deleted file mode 100644 index bfc96385ea5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_516.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opencv.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_517.RULE b/src/licensedcode/data/rules/bsd-new_517.RULE index 6cac1372f05..605df4cc7d4 100644 --- a/src/licensedcode/data/rules/bsd-new_517.RULE +++ b/src/licensedcode/data/rules/bsd-new_517.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_517.yml b/src/licensedcode/data/rules/bsd-new_517.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_517.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_518.RULE b/src/licensedcode/data/rules/bsd-new_518.RULE index 011eaa869f4..648a7f7aa79 100644 --- a/src/licensedcode/data/rules/bsd-new_518.RULE +++ b/src/licensedcode/data/rules/bsd-new_518.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_518.yml b/src/licensedcode/data/rules/bsd-new_518.yml deleted file mode 100644 index 163390d8890..00000000000 --- a/src/licensedcode/data/rules/bsd-new_518.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_519.RULE b/src/licensedcode/data/rules/bsd-new_519.RULE index 29bd07377a7..72445a78c2b 100644 --- a/src/licensedcode/data/rules/bsd-new_519.RULE +++ b/src/licensedcode/data/rules/bsd-new_519.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 95 +--- + License: BSD Same license text as \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_519.yml b/src/licensedcode/data/rules/bsd-new_519.yml deleted file mode 100644 index 888c5d071c1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_519.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_52.RULE b/src/licensedcode/data/rules/bsd-new_52.RULE index 409cd945e35..0dd76d4b0e9 100644 --- a/src/licensedcode/data/rules/bsd-new_52.RULE +++ b/src/licensedcode/data/rules/bsd-new_52.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: Sample +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_52.yml b/src/licensedcode/data/rules/bsd-new_52.yml deleted file mode 100644 index b19a96bfc9a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: Sample diff --git a/src/licensedcode/data/rules/bsd-new_520.RULE b/src/licensedcode/data/rules/bsd-new_520.RULE index 659f4047d1a..e205a359b9f 100644 --- a/src/licensedcode/data/rules/bsd-new_520.RULE +++ b/src/licensedcode/data/rules/bsd-new_520.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 95 +--- + License: BSD-like Same license text as \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_520.yml b/src/licensedcode/data/rules/bsd-new_520.yml deleted file mode 100644 index 888c5d071c1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_520.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_521.RULE b/src/licensedcode/data/rules/bsd-new_521.RULE index 73a0d53ec61..32249426246 100644 --- a/src/licensedcode/data/rules/bsd-new_521.RULE +++ b/src/licensedcode/data/rules/bsd-new_521.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_521.yml b/src/licensedcode/data/rules/bsd-new_521.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_521.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_522.RULE b/src/licensedcode/data/rules/bsd-new_522.RULE index fdbbb627169..24d5d5ac8f5 100644 --- a/src/licensedcode/data/rules/bsd-new_522.RULE +++ b/src/licensedcode/data/rules/bsd-new_522.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - AUTHORS + - LICENSE +--- + the Dart project authors. Please see the AUTHORS file for details. All rights reserved. Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file." +license that can be found in the LICENSE file." \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_522.yml b/src/licensedcode/data/rules/bsd-new_522.yml deleted file mode 100644 index aa86336d7ed..00000000000 --- a/src/licensedcode/data/rules/bsd-new_522.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - AUTHORS - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_523.RULE b/src/licensedcode/data/rules/bsd-new_523.RULE index f6f55bd569f..5d53b1b3dc8 100644 --- a/src/licensedcode/data/rules/bsd-new_523.RULE +++ b/src/licensedcode/data/rules/bsd-new_523.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_523.yml b/src/licensedcode/data/rules/bsd-new_523.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_523.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_524.RULE b/src/licensedcode/data/rules/bsd-new_524.RULE index 7fb9f01e073..50498db97e4 100644 --- a/src/licensedcode/data/rules/bsd-new_524.RULE +++ b/src/licensedcode/data/rules/bsd-new_524.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +is_continuous: yes +relevance: 90 +--- + BSD-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_524.yml b/src/licensedcode/data/rules/bsd-new_524.yml deleted file mode 100644 index 908dd2a84f5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_524.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -is_continuous: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_525.RULE b/src/licensedcode/data/rules/bsd-new_525.RULE index 1fdf5cfc95e..32fa7f69ab3 100644 --- a/src/licensedcode/data/rules/bsd-new_525.RULE +++ b/src/licensedcode/data/rules/bsd-new_525.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://creativecommons.org/licenses/BSD/ +--- + BSD License (BSD) link: http://creativecommons.org/licenses/BSD/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_525.yml b/src/licensedcode/data/rules/bsd-new_525.yml deleted file mode 100644 index df2c336e6fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_525.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://creativecommons.org/licenses/BSD/ diff --git a/src/licensedcode/data/rules/bsd-new_526.RULE b/src/licensedcode/data/rules/bsd-new_526.RULE index 3826b208a09..fcfaba916cb 100644 --- a/src/licensedcode/data/rules/bsd-new_526.RULE +++ b/src/licensedcode/data/rules/bsd-new_526.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Modified BSD aka New BSD aka 3-clause BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_526.yml b/src/licensedcode/data/rules/bsd-new_526.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_526.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_527.RULE b/src/licensedcode/data/rules/bsd-new_527.RULE index 7e68b15ee6e..8764467e841 100644 --- a/src/licensedcode/data/rules/bsd-new_527.RULE +++ b/src/licensedcode/data/rules/bsd-new_527.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Modified BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_527.yml b/src/licensedcode/data/rules/bsd-new_527.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_527.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_528.RULE b/src/licensedcode/data/rules/bsd-new_528.RULE index 945fec5814e..33c42e40d13 100644 --- a/src/licensedcode/data/rules/bsd-new_528.RULE +++ b/src/licensedcode/data/rules/bsd-new_528.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + New BSD aka 3-clause BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_528.yml b/src/licensedcode/data/rules/bsd-new_528.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_528.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_529.RULE b/src/licensedcode/data/rules/bsd-new_529.RULE index cb27fa8117a..976c401d63f 100644 --- a/src/licensedcode/data/rules/bsd-new_529.RULE +++ b/src/licensedcode/data/rules/bsd-new_529.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Modified BSD aka New BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_529.yml b/src/licensedcode/data/rules/bsd-new_529.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_529.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_53.RULE b/src/licensedcode/data/rules/bsd-new_53.RULE index 1ae35aaf581..fb619f9bda4 100644 --- a/src/licensedcode/data/rules/bsd-new_53.RULE +++ b/src/licensedcode/data/rules/bsd-new_53.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +notes: 3-clause revised BSD +--- + 3-clause revised BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_53.yml b/src/licensedcode/data/rules/bsd-new_53.yml deleted file mode 100644 index be82820d61a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_53.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -notes: 3-clause revised BSD diff --git a/src/licensedcode/data/rules/bsd-new_530.RULE b/src/licensedcode/data/rules/bsd-new_530.RULE index 1ea546fc6e2..ed8b82d2a8d 100644 --- a/src/licensedcode/data/rules/bsd-new_530.RULE +++ b/src/licensedcode/data/rules/bsd-new_530.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + BSD (3-clause): http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_530.yml b/src/licensedcode/data/rules/bsd-new_530.yml deleted file mode 100644 index c73f22b6109..00000000000 --- a/src/licensedcode/data/rules/bsd-new_530.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_531.RULE b/src/licensedcode/data/rules/bsd-new_531.RULE index 18f41e4e378..3320ab680dc 100644 --- a/src/licensedcode/data/rules/bsd-new_531.RULE +++ b/src/licensedcode/data/rules/bsd-new_531.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + {{Berkeley Software Distribution}} (BSD) License diff --git a/src/licensedcode/data/rules/bsd-new_531.yml b/src/licensedcode/data/rules/bsd-new_531.yml deleted file mode 100644 index 28b9a2a8939..00000000000 --- a/src/licensedcode/data/rules/bsd-new_531.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_532.RULE b/src/licensedcode/data/rules/bsd-new_532.RULE index 7b16ea915c4..922342db8b8 100644 --- a/src/licensedcode/data/rules/bsd-new_532.RULE +++ b/src/licensedcode/data/rules/bsd-new_532.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + Berkeley Software Distribution (BSD) License http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_532.yml b/src/licensedcode/data/rules/bsd-new_532.yml deleted file mode 100644 index 28b9a2a8939..00000000000 --- a/src/licensedcode/data/rules/bsd-new_532.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_533.RULE b/src/licensedcode/data/rules/bsd-new_533.RULE index e4e9e624462..c60fe075720 100644 --- a/src/licensedcode/data/rules/bsd-new_533.RULE +++ b/src/licensedcode/data/rules/bsd-new_533.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Berkeley Software Distribution (BSD) License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_533.yml b/src/licensedcode/data/rules/bsd-new_533.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_533.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_534.RULE b/src/licensedcode/data/rules/bsd-new_534.RULE index 9c943379aab..8d74c7ac198 100644 --- a/src/licensedcode/data/rules/bsd-new_534.RULE +++ b/src/licensedcode/data/rules/bsd-new_534.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Software License Agreement (BSD License) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_534.yml b/src/licensedcode/data/rules/bsd-new_534.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_534.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_535.RULE b/src/licensedcode/data/rules/bsd-new_535.RULE index 576c8dd5b00..bf8f023bf64 100644 --- a/src/licensedcode/data/rules/bsd-new_535.RULE +++ b/src/licensedcode/data/rules/bsd-new_535.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_535.yml b/src/licensedcode/data/rules/bsd-new_535.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_535.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_536.RULE b/src/licensedcode/data/rules/bsd-new_536.RULE index ef26bf73d65..452e2df59b1 100644 --- a/src/licensedcode/data/rules/bsd-new_536.RULE +++ b/src/licensedcode/data/rules/bsd-new_536.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://developers.google.com/open-source/licenses/bsd +--- + Use of this source code is governed by a BSD-style license that can be found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_536.yml b/src/licensedcode/data/rules/bsd-new_536.yml deleted file mode 100644 index 762bc97966d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_536.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://developers.google.com/open-source/licenses/bsd diff --git a/src/licensedcode/data/rules/bsd-new_537.RULE b/src/licensedcode/data/rules/bsd-new_537.RULE index 491dd75e06b..5c7efeedac9 100644 --- a/src/licensedcode/data/rules/bsd-new_537.RULE +++ b/src/licensedcode/data/rules/bsd-new_537.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +--- + licensed under The BSD License (3 Clause, also known as the new BSD license). The license is an OSI approved Open Source license and is GPL-compatible(1). diff --git a/src/licensedcode/data/rules/bsd-new_537.yml b/src/licensedcode/data/rules/bsd-new_537.yml deleted file mode 100644 index c908480be1b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_537.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_538.RULE b/src/licensedcode/data/rules/bsd-new_538.RULE index dd8648bcb9d..94f597bc604 100644 --- a/src/licensedcode/data/rules/bsd-new_538.RULE +++ b/src/licensedcode/data/rules/bsd-new_538.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/dart-lang/stagehand/blob/master/LICENSE +--- + Created from templates made available by Stagehand under a BSD-style [license](https://github.com/dart-lang/stagehand/blob/master/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_538.yml b/src/licensedcode/data/rules/bsd-new_538.yml deleted file mode 100644 index bb92e7a1ef2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_538.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/dart-lang/stagehand/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_539.RULE b/src/licensedcode/data/rules/bsd-new_539.RULE index 6d811df164a..cec6f5ad5e4 100644 --- a/src/licensedcode/data/rules/bsd-new_539.RULE +++ b/src/licensedcode/data/rules/bsd-new_539.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Created from templates made available by Stagehand under a BSD-style [license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_539.yml b/src/licensedcode/data/rules/bsd-new_539.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_539.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_54.RULE b/src/licensedcode/data/rules/bsd-new_54.RULE index 2df18c59764..72ad4a853b3 100644 --- a/src/licensedcode/data/rules/bsd-new_54.RULE +++ b/src/licensedcode/data/rules/bsd-new_54.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Redistribution and modifications are permitted subject to BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_54.yml b/src/licensedcode/data/rules/bsd-new_54.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_540.RULE b/src/licensedcode/data/rules/bsd-new_540.RULE index 8aa079574b9..425bf95b990 100644 --- a/src/licensedcode/data/rules/bsd-new_540.RULE +++ b/src/licensedcode/data/rules/bsd-new_540.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + Use of this source code is governed by the BSD license that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_540.yml b/src/licensedcode/data/rules/bsd-new_540.yml deleted file mode 100644 index f165bfd52c7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_540.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_541.RULE b/src/licensedcode/data/rules/bsd-new_541.RULE index e5fca232e3b..ab523d63c10 100644 --- a/src/licensedcode/data/rules/bsd-new_541.RULE +++ b/src/licensedcode/data/rules/bsd-new_541.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + License BSD 3-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_541.yml b/src/licensedcode/data/rules/bsd-new_541.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_541.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_542.RULE b/src/licensedcode/data/rules/bsd-new_542.RULE index f6f1fa1309f..a0489a0b91e 100644 --- a/src/licensedcode/data/rules/bsd-new_542.RULE +++ b/src/licensedcode/data/rules/bsd-new_542.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_542.yml b/src/licensedcode/data/rules/bsd-new_542.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_542.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_543.RULE b/src/licensedcode/data/rules/bsd-new_543.RULE index 73e489480e7..7974e6fc4cf 100644 --- a/src/licensedcode/data/rules/bsd-new_543.RULE +++ b/src/licensedcode/data/rules/bsd-new_543.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + Licensed under the Modified BSD License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: diff --git a/src/licensedcode/data/rules/bsd-new_543.yml b/src/licensedcode/data/rules/bsd-new_543.yml deleted file mode 100644 index da575798ef0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_543.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_544.RULE b/src/licensedcode/data/rules/bsd-new_544.RULE index f848294fed1..87c2a3d6914 100644 --- a/src/licensedcode/data/rules/bsd-new_544.RULE +++ b/src/licensedcode/data/rules/bsd-new_544.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + is free software; you can redistribute it and/or modify it under the terms of the BSD License as published by the Open Source Initiative, revised version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_544.yml b/src/licensedcode/data/rules/bsd-new_544.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_544.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_545.RULE b/src/licensedcode/data/rules/bsd-new_545.RULE index b36e66e5377..0166bb00533 100644 --- a/src/licensedcode/data/rules/bsd-new_545.RULE +++ b/src/licensedcode/data/rules/bsd-new_545.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or modify it under the terms of the BSD License as published by the Open Source Initiative, revised version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_545.yml b/src/licensedcode/data/rules/bsd-new_545.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_545.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_546.RULE b/src/licensedcode/data/rules/bsd-new_546.RULE index 1d68600c6c3..75a56db5e84 100644 --- a/src/licensedcode/data/rules/bsd-new_546.RULE +++ b/src/licensedcode/data/rules/bsd-new_546.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This code is free software; you can redistribute it and/or modify it under the terms of the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_546.yml b/src/licensedcode/data/rules/bsd-new_546.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_546.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_547.RULE b/src/licensedcode/data/rules/bsd-new_547.RULE index 262a1bd3c7d..25ce85a9be6 100644 --- a/src/licensedcode/data/rules/bsd-new_547.RULE +++ b/src/licensedcode/data/rules/bsd-new_547.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_547.yml b/src/licensedcode/data/rules/bsd-new_547.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_547.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_548.RULE b/src/licensedcode/data/rules/bsd-new_548.RULE index 84103860f29..8d2dc7200d2 100644 --- a/src/licensedcode/data/rules/bsd-new_548.RULE +++ b/src/licensedcode/data/rules/bsd-new_548.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/BSD +--- + Copyright This program is free software; you can redistribute it and/or modify it under the terms of the BSD License. diff --git a/src/licensedcode/data/rules/bsd-new_548.yml b/src/licensedcode/data/rules/bsd-new_548.yml deleted file mode 100644 index 86f8dab8069..00000000000 --- a/src/licensedcode/data/rules/bsd-new_548.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/BSD diff --git a/src/licensedcode/data/rules/bsd-new_549.RULE b/src/licensedcode/data/rules/bsd-new_549.RULE index 8f6308bccb2..c28c348e73f 100644 --- a/src/licensedcode/data/rules/bsd-new_549.RULE +++ b/src/licensedcode/data/rules/bsd-new_549.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + is free software; you can redistribute it and/or modify it under the terms of the BSD License. This programme 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 BSD License for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_549.yml b/src/licensedcode/data/rules/bsd-new_549.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_549.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_55.RULE b/src/licensedcode/data/rules/bsd-new_55.RULE index 3ddfd8956a7..f9d1b339ee2 100644 --- a/src/licensedcode/data/rules/bsd-new_55.RULE +++ b/src/licensedcode/data/rules/bsd-new_55.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + subject to BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_55.yml b/src/licensedcode/data/rules/bsd-new_55.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_550.RULE b/src/licensedcode/data/rules/bsd-new_550.RULE index 2e2d2c21aec..6e06ae3e25f 100644 --- a/src/licensedcode/data/rules/bsd-new_550.RULE +++ b/src/licensedcode/data/rules/bsd-new_550.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License is free software: you can redistribute it and/or modify it under the terms of the BSD License. A copy of this license is provided in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_550.yml b/src/licensedcode/data/rules/bsd-new_550.yml deleted file mode 100644 index 9eae0edd739..00000000000 --- a/src/licensedcode/data/rules/bsd-new_550.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_551.RULE b/src/licensedcode/data/rules/bsd-new_551.RULE index 21f8cf06f8e..8705d247ac6 100644 --- a/src/licensedcode/data/rules/bsd-new_551.RULE +++ b/src/licensedcode/data/rules/bsd-new_551.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + is free software: you can redistribute it and/or modify it under the terms of the BSD License. A copy of this license is provided in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_551.yml b/src/licensedcode/data/rules/bsd-new_551.yml deleted file mode 100644 index 9eae0edd739..00000000000 --- a/src/licensedcode/data/rules/bsd-new_551.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_552.RULE b/src/licensedcode/data/rules/bsd-new_552.RULE index 2b773188cdb..a392b8b3ffb 100644 --- a/src/licensedcode/data/rules/bsd-new_552.RULE +++ b/src/licensedcode/data/rules/bsd-new_552.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + you can redistribute it and/or modify it under the terms of the BSD License. A copy of this license is provided in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_552.yml b/src/licensedcode/data/rules/bsd-new_552.yml deleted file mode 100644 index 9eae0edd739..00000000000 --- a/src/licensedcode/data/rules/bsd-new_552.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_553.RULE b/src/licensedcode/data/rules/bsd-new_553.RULE index b4e4c6d71bf..806b86d273b 100644 --- a/src/licensedcode/data/rules/bsd-new_553.RULE +++ b/src/licensedcode/data/rules/bsd-new_553.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This module is free software; you can redistribute it and/or modify it under the terms of the BSD license. See the LICENSE file included with this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_553.yml b/src/licensedcode/data/rules/bsd-new_553.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_553.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_554.RULE b/src/licensedcode/data/rules/bsd-new_554.RULE index c4ac6a745ad..5f408851dfe 100644 --- a/src/licensedcode/data/rules/bsd-new_554.RULE +++ b/src/licensedcode/data/rules/bsd-new_554.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This module is free software; you can redistribute it and/or modify it under the terms of the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_554.yml b/src/licensedcode/data/rules/bsd-new_554.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_554.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_555.RULE b/src/licensedcode/data/rules/bsd-new_555.RULE index ab307096831..080f6e4b08c 100644 --- a/src/licensedcode/data/rules/bsd-new_555.RULE +++ b/src/licensedcode/data/rules/bsd-new_555.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + The library package is free software; you can redistribute it and/or modify it under the terms of the BSD License as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_555.yml b/src/licensedcode/data/rules/bsd-new_555.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_555.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_556.RULE b/src/licensedcode/data/rules/bsd-new_556.RULE index a37ef604c03..01b63a45ec0 100644 --- a/src/licensedcode/data/rules/bsd-new_556.RULE +++ b/src/licensedcode/data/rules/bsd-new_556.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + is open source software. You can redistribute it and/or modify it under the terms of the BSD License. See the COPYING file included with this software package for more details regarding distribution. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_556.yml b/src/licensedcode/data/rules/bsd-new_556.yml deleted file mode 100644 index 3309358c29c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_556.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_557.RULE b/src/licensedcode/data/rules/bsd-new_557.RULE index 7dac592a65b..99841d7e6b7 100644 --- a/src/licensedcode/data/rules/bsd-new_557.RULE +++ b/src/licensedcode/data/rules/bsd-new_557.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + is open source software. You can redistribute it and/or modify it under the terms of the BSD License. See the COPYING file included with this software package for more details regarding distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_557.yml b/src/licensedcode/data/rules/bsd-new_557.yml deleted file mode 100644 index 3309358c29c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_557.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_558.RULE b/src/licensedcode/data/rules/bsd-new_558.RULE index fca70e27b6a..d862c002f82 100644 --- a/src/licensedcode/data/rules/bsd-new_558.RULE +++ b/src/licensedcode/data/rules/bsd-new_558.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + is open source software. You can redistribute it and/or modify it under the terms of the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_558.yml b/src/licensedcode/data/rules/bsd-new_558.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_558.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_559.RULE b/src/licensedcode/data/rules/bsd-new_559.RULE index 5c7f7b250cf..1e85717d35c 100644 --- a/src/licensedcode/data/rules/bsd-new_559.RULE +++ b/src/licensedcode/data/rules/bsd-new_559.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSEBSD +--- + This file is free software; you can redistribute it and/or modify it under the terms of the BSD License. This program is distributed in the hope that it will be useful, diff --git a/src/licensedcode/data/rules/bsd-new_559.yml b/src/licensedcode/data/rules/bsd-new_559.yml deleted file mode 100644 index 1961b4c6b0d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_559.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSEBSD diff --git a/src/licensedcode/data/rules/bsd-new_56.RULE b/src/licensedcode/data/rules/bsd-new_56.RULE index 055700fb921..0ba802dc673 100644 --- a/src/licensedcode/data/rules/bsd-new_56.RULE +++ b/src/licensedcode/data/rules/bsd-new_56.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: BSD new variant, Wasabi +--- + 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, diff --git a/src/licensedcode/data/rules/bsd-new_56.yml b/src/licensedcode/data/rules/bsd-new_56.yml deleted file mode 100644 index f5f0abe7379..00000000000 --- a/src/licensedcode/data/rules/bsd-new_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: BSD new variant, Wasabi diff --git a/src/licensedcode/data/rules/bsd-new_560.RULE b/src/licensedcode/data/rules/bsd-new_560.RULE index d82b16dcfbf..5d16a46d9b3 100644 --- a/src/licensedcode/data/rules/bsd-new_560.RULE +++ b/src/licensedcode/data/rules/bsd-new_560.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://opensource.org/licenses/bsd-license +--- + https://opensource.org/licenses/bsd-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_560.yml b/src/licensedcode/data/rules/bsd-new_560.yml deleted file mode 100644 index 793833ad835..00000000000 --- a/src/licensedcode/data/rules/bsd-new_560.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new_561.RULE b/src/licensedcode/data/rules/bsd-new_561.RULE index 07cc3040d78..595a66f6d8a 100644 --- a/src/licensedcode/data/rules/bsd-new_561.RULE +++ b/src/licensedcode/data/rules/bsd-new_561.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://opensource.org/licenses/bsd-license +--- + http://opensource.org/licenses/bsd-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_561.yml b/src/licensedcode/data/rules/bsd-new_561.yml deleted file mode 100644 index e67ab55cc19..00000000000 --- a/src/licensedcode/data/rules/bsd-new_561.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new_562.RULE b/src/licensedcode/data/rules/bsd-new_562.RULE index d78484b4418..0115e6a4e86 100644 --- a/src/licensedcode/data/rules/bsd-new_562.RULE +++ b/src/licensedcode/data/rules/bsd-new_562.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://www.opensource.org/licenses/bsd-license.html +--- + https://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_562.yml b/src/licensedcode/data/rules/bsd-new_562.yml deleted file mode 100644 index 00b9804027d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_562.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_563.RULE b/src/licensedcode/data/rules/bsd-new_563.RULE index 97bb657d720..5d9700c8048 100644 --- a/src/licensedcode/data/rules/bsd-new_563.RULE +++ b/src/licensedcode/data/rules/bsd-new_563.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://opensource.org/licenses/bsd-license.html +--- + https://opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_563.yml b/src/licensedcode/data/rules/bsd-new_563.yml deleted file mode 100644 index 7fb7c048335..00000000000 --- a/src/licensedcode/data/rules/bsd-new_563.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_564.RULE b/src/licensedcode/data/rules/bsd-new_564.RULE index 17938a7f99a..7fb565d0c30 100644 --- a/src/licensedcode/data/rules/bsd-new_564.RULE +++ b/src/licensedcode/data/rules/bsd-new_564.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.html +--- + http://opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_564.yml b/src/licensedcode/data/rules/bsd-new_564.yml deleted file mode 100644 index c90c4a46f5d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_564.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_565.RULE b/src/licensedcode/data/rules/bsd-new_565.RULE index 15f3727a8b3..334da2779ff 100644 --- a/src/licensedcode/data/rules/bsd-new_565.RULE +++ b/src/licensedcode/data/rules/bsd-new_565.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.debian.org/misc/bsd.license +--- + http://www.debian.org/misc/bsd.license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_565.yml b/src/licensedcode/data/rules/bsd-new_565.yml deleted file mode 100644 index 42a58c826ec..00000000000 --- a/src/licensedcode/data/rules/bsd-new_565.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.debian.org/misc/bsd.license diff --git a/src/licensedcode/data/rules/bsd-new_566.RULE b/src/licensedcode/data/rules/bsd-new_566.RULE index 939b08a7249..7013c2b74c1 100644 --- a/src/licensedcode/data/rules/bsd-new_566.RULE +++ b/src/licensedcode/data/rules/bsd-new_566.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.debian.org/misc/bsd.license +--- + https://www.debian.org/misc/bsd.license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_566.yml b/src/licensedcode/data/rules/bsd-new_566.yml deleted file mode 100644 index c12d88e45a8..00000000000 --- a/src/licensedcode/data/rules/bsd-new_566.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.debian.org/misc/bsd.license diff --git a/src/licensedcode/data/rules/bsd-new_567.RULE b/src/licensedcode/data/rules/bsd-new_567.RULE index c02e2e724ed..abc13aed60b 100644 --- a/src/licensedcode/data/rules/bsd-new_567.RULE +++ b/src/licensedcode/data/rules/bsd-new_567.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://debian.org/misc/bsd.license +--- + http://debian.org/misc/bsd.license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_567.yml b/src/licensedcode/data/rules/bsd-new_567.yml deleted file mode 100644 index 966880e4229..00000000000 --- a/src/licensedcode/data/rules/bsd-new_567.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://debian.org/misc/bsd.license diff --git a/src/licensedcode/data/rules/bsd-new_568.RULE b/src/licensedcode/data/rules/bsd-new_568.RULE index 07a02a80ddb..6f1c3efa341 100644 --- a/src/licensedcode/data/rules/bsd-new_568.RULE +++ b/src/licensedcode/data/rules/bsd-new_568.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.debian.org/misc/bsd.license +--- + license http://www.debian.org/misc/bsd.license BSD License (3 Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_568.yml b/src/licensedcode/data/rules/bsd-new_568.yml deleted file mode 100644 index 7656c7ebe5a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_568.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.debian.org/misc/bsd.license diff --git a/src/licensedcode/data/rules/bsd-new_569.RULE b/src/licensedcode/data/rules/bsd-new_569.RULE index 5b03102044b..178e0fcd24b 100644 --- a/src/licensedcode/data/rules/bsd-new_569.RULE +++ b/src/licensedcode/data/rules/bsd-new_569.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://debian.org/misc/bsd.license +--- + https://debian.org/misc/bsd.license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_569.yml b/src/licensedcode/data/rules/bsd-new_569.yml deleted file mode 100644 index 4596569579b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_569.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://debian.org/misc/bsd.license diff --git a/src/licensedcode/data/rules/bsd-new_57.RULE b/src/licensedcode/data/rules/bsd-new_57.RULE index 4fc75560872..0f9e9edc8f9 100644 --- a/src/licensedcode/data/rules/bsd-new_57.RULE +++ b/src/licensedcode/data/rules/bsd-new_57.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_57.yml b/src/licensedcode/data/rules/bsd-new_57.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_570.RULE b/src/licensedcode/data/rules/bsd-new_570.RULE index 64088fbb636..e2824b66e1e 100644 --- a/src/licensedcode/data/rules/bsd-new_570.RULE +++ b/src/licensedcode/data/rules/bsd-new_570.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.debian.org/misc/bsd.license +--- + www.debian.org/misc/bsd.license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_570.yml b/src/licensedcode/data/rules/bsd-new_570.yml deleted file mode 100644 index 42a58c826ec..00000000000 --- a/src/licensedcode/data/rules/bsd-new_570.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.debian.org/misc/bsd.license diff --git a/src/licensedcode/data/rules/bsd-new_571.RULE b/src/licensedcode/data/rules/bsd-new_571.RULE index 4d43ef85884..7b2009d5eed 100644 --- a/src/licensedcode/data/rules/bsd-new_571.RULE +++ b/src/licensedcode/data/rules/bsd-new_571.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + debian.org/misc/bsd.license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_571.yml b/src/licensedcode/data/rules/bsd-new_571.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_571.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_572.RULE b/src/licensedcode/data/rules/bsd-new_572.RULE index 971f395c055..42ffb9d6921 100644 --- a/src/licensedcode/data/rules/bsd-new_572.RULE +++ b/src/licensedcode/data/rules/bsd-new_572.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/BSD-3-Clause +--- + https://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_572.yml b/src/licensedcode/data/rules/bsd-new_572.yml deleted file mode 100644 index 72f0b5191cd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_572.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_573.RULE b/src/licensedcode/data/rules/bsd-new_573.RULE index 9fe9c465521..948b2f10d6b 100644 --- a/src/licensedcode/data/rules/bsd-new_573.RULE +++ b/src/licensedcode/data/rules/bsd-new_573.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_573.yml b/src/licensedcode/data/rules/bsd-new_573.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_573.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_574.RULE b/src/licensedcode/data/rules/bsd-new_574.RULE index f417447d15e..942c9e6429c 100644 --- a/src/licensedcode/data/rules/bsd-new_574.RULE +++ b/src/licensedcode/data/rules/bsd-new_574.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + software and hardware, are licensed under the BSD 3-clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_574.yml b/src/licensedcode/data/rules/bsd-new_574.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_574.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_575.RULE b/src/licensedcode/data/rules/bsd-new_575.RULE index 53a32545c27..e3d9e233ed3 100644 --- a/src/licensedcode/data/rules/bsd-new_575.RULE +++ b/src/licensedcode/data/rules/bsd-new_575.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is free software; you can redistribute it and/or modify # it under the terms of the Revised BSD License; see LICENSE file for # more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_575.yml b/src/licensedcode/data/rules/bsd-new_575.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_575.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_576.RULE b/src/licensedcode/data/rules/bsd-new_576.RULE index babe5f0f87c..9da7133a0e0 100644 --- a/src/licensedcode/data/rules/bsd-new_576.RULE +++ b/src/licensedcode/data/rules/bsd-new_576.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + BSD 3-Clause License Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_576.yml b/src/licensedcode/data/rules/bsd-new_576.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_576.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_577.RULE b/src/licensedcode/data/rules/bsd-new_577.RULE index 0f6e82880a3..ec15f6009f2 100644 --- a/src/licensedcode/data/rules/bsd-new_577.RULE +++ b/src/licensedcode/data/rules/bsd-new_577.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_577.yml b/src/licensedcode/data/rules/bsd-new_577.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_577.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_578.RULE b/src/licensedcode/data/rules/bsd-new_578.RULE index 0617c5fa0f7..14a7f01d340 100644 --- a/src/licensedcode/data/rules/bsd-new_578.RULE +++ b/src/licensedcode/data/rules/bsd-new_578.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +--- + Software License Agreement (BSD License) Redistribution and use in source and binary forms, with or without @@ -25,4 +32,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_578.yml b/src/licensedcode/data/rules/bsd-new_578.yml deleted file mode 100644 index 93f1cb11377..00000000000 --- a/src/licensedcode/data/rules/bsd-new_578.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_579.RULE b/src/licensedcode/data/rules/bsd-new_579.RULE index 24988120bef..4e02516edc1 100644 --- a/src/licensedcode/data/rules/bsd-new_579.RULE +++ b/src/licensedcode/data/rules/bsd-new_579.RULE @@ -1 +1,7 @@ -License Agreement (BSD License) +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + +License Agreement (BSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_579.yml b/src/licensedcode/data/rules/bsd-new_579.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_579.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_58.RULE b/src/licensedcode/data/rules/bsd-new_58.RULE index f841492b404..600391d0b51 100644 --- a/src/licensedcode/data/rules/bsd-new_58.RULE +++ b/src/licensedcode/data/rules/bsd-new_58.RULE @@ -1,6 +1,15 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: BSD tag in Maven POM +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + {{Berkeley Software Distribution (BSD) License}} http://www.opensource.org/licenses/bsd-license.html - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_58.yml b/src/licensedcode/data/rules/bsd-new_58.yml deleted file mode 100644 index 9f7778ef1a1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_58.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: BSD tag in Maven POM -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_580.RULE b/src/licensedcode/data/rules/bsd-new_580.RULE index d7f4a128ba4..80b3e99c4c7 100644 --- a/src/licensedcode/data/rules/bsd-new_580.RULE +++ b/src/licensedcode/data/rules/bsd-new_580.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Software License Agreement (BSD License) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_580.yml b/src/licensedcode/data/rules/bsd-new_580.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_580.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_581.RULE b/src/licensedcode/data/rules/bsd-new_581.RULE index 06def314137..372f9b9baff 100644 --- a/src/licensedcode/data/rules/bsd-new_581.RULE +++ b/src/licensedcode/data/rules/bsd-new_581.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_581.yml b/src/licensedcode/data/rules/bsd-new_581.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_581.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_582.RULE b/src/licensedcode/data/rules/bsd-new_582.RULE index 1b22239f36a..1b6e6b9857a 100644 --- a/src/licensedcode/data/rules/bsd-new_582.RULE +++ b/src/licensedcode/data/rules/bsd-new_582.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + (BSD-licensed code) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_582.yml b/src/licensedcode/data/rules/bsd-new_582.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_582.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_583.RULE b/src/licensedcode/data/rules/bsd-new_583.RULE index 3eef9dcff60..f51536899ce 100644 --- a/src/licensedcode/data/rules/bsd-new_583.RULE +++ b/src/licensedcode/data/rules/bsd-new_583.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Software License Agreement (BSD License) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_583.yml b/src/licensedcode/data/rules/bsd-new_583.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_583.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_584.RULE b/src/licensedcode/data/rules/bsd-new_584.RULE index 7e2644b84f0..f6886738718 100644 --- a/src/licensedcode/data/rules/bsd-new_584.RULE +++ b/src/licensedcode/data/rules/bsd-new_584.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_584.yml b/src/licensedcode/data/rules/bsd-new_584.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_584.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_585.RULE b/src/licensedcode/data/rules/bsd-new_585.RULE index e61576680c1..c074b045fd0 100644 --- a/src/licensedcode/data/rules/bsd-new_585.RULE +++ b/src/licensedcode/data/rules/bsd-new_585.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_585.yml b/src/licensedcode/data/rules/bsd-new_585.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_585.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_586.RULE b/src/licensedcode/data/rules/bsd-new_586.RULE index 3b9d39e4617..479200a5d08 100644 --- a/src/licensedcode/data/rules/bsd-new_586.RULE +++ b/src/licensedcode/data/rules/bsd-new_586.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_586.yml b/src/licensedcode/data/rules/bsd-new_586.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_586.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_587.RULE b/src/licensedcode/data/rules/bsd-new_587.RULE index 91906ffd28d..851e61c7e1c 100644 --- a/src/licensedcode/data/rules/bsd-new_587.RULE +++ b/src/licensedcode/data/rules/bsd-new_587.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_587.yml b/src/licensedcode/data/rules/bsd-new_587.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_587.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_588.RULE b/src/licensedcode/data/rules/bsd-new_588.RULE index 8b430f637de..6cc45cd533d 100644 --- a/src/licensedcode/data/rules/bsd-new_588.RULE +++ b/src/licensedcode/data/rules/bsd-new_588.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_588.yml b/src/licensedcode/data/rules/bsd-new_588.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_588.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_589.RULE b/src/licensedcode/data/rules/bsd-new_589.RULE index 2334feea021..448314d525e 100644 --- a/src/licensedcode/data/rules/bsd-new_589.RULE +++ b/src/licensedcode/data/rules/bsd-new_589.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_589.yml b/src/licensedcode/data/rules/bsd-new_589.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_589.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_59.RULE b/src/licensedcode/data/rules/bsd-new_59.RULE index 106f676fe7e..da2ced93eaf 100644 --- a/src/licensedcode/data/rules/bsd-new_59.RULE +++ b/src/licensedcode/data/rules/bsd-new_59.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_59.yml b/src/licensedcode/data/rules/bsd-new_59.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_590.RULE b/src/licensedcode/data/rules/bsd-new_590.RULE index e60a5362353..94ce52960cd 100644 --- a/src/licensedcode/data/rules/bsd-new_590.RULE +++ b/src/licensedcode/data/rules/bsd-new_590.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_590.yml b/src/licensedcode/data/rules/bsd-new_590.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_590.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_591.RULE b/src/licensedcode/data/rules/bsd-new_591.RULE index 96a369476f3..e409161b82a 100644 --- a/src/licensedcode/data/rules/bsd-new_591.RULE +++ b/src/licensedcode/data/rules/bsd-new_591.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_591.yml b/src/licensedcode/data/rules/bsd-new_591.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_591.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_592.RULE b/src/licensedcode/data/rules/bsd-new_592.RULE index 4aa145c3d6d..612f5c5a713 100644 --- a/src/licensedcode/data/rules/bsd-new_592.RULE +++ b/src/licensedcode/data/rules/bsd-new_592.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + under the following CMU license: Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_592.yml b/src/licensedcode/data/rules/bsd-new_592.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_592.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_593.RULE b/src/licensedcode/data/rules/bsd-new_593.RULE index f477d84500b..570c7e12a7b 100644 --- a/src/licensedcode/data/rules/bsd-new_593.RULE +++ b/src/licensedcode/data/rules/bsd-new_593.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + The following license covers the files from Intel's "Highly Optimized Mathematical Functions for Itanium" collection: diff --git a/src/licensedcode/data/rules/bsd-new_593.yml b/src/licensedcode/data/rules/bsd-new_593.yml deleted file mode 100644 index 963e47e127a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_593.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_594.RULE b/src/licensedcode/data/rules/bsd-new_594.RULE index 6f7ba875616..c980c3f1218 100644 --- a/src/licensedcode/data/rules/bsd-new_594.RULE +++ b/src/licensedcode/data/rules/bsd-new_594.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_594.yml b/src/licensedcode/data/rules/bsd-new_594.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_594.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_595.RULE b/src/licensedcode/data/rules/bsd-new_595.RULE index 0c65a6b09a0..bc3d3e7546b 100644 --- a/src/licensedcode/data/rules/bsd-new_595.RULE +++ b/src/licensedcode/data/rules/bsd-new_595.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the terms of the Modified BSD License (also known as New or Revised or 3-Clause BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_595.yml b/src/licensedcode/data/rules/bsd-new_595.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_595.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_596.RULE b/src/licensedcode/data/rules/bsd-new_596.RULE index a7f294e936c..2ca4e9046ef 100644 --- a/src/licensedcode/data/rules/bsd-new_596.RULE +++ b/src/licensedcode/data/rules/bsd-new_596.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the terms of the Modified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_596.yml b/src/licensedcode/data/rules/bsd-new_596.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_596.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_597.RULE b/src/licensedcode/data/rules/bsd-new_597.RULE index 750f48f009d..ed37dac5722 100644 --- a/src/licensedcode/data/rules/bsd-new_597.RULE +++ b/src/licensedcode/data/rules/bsd-new_597.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.txt +--- + The software in this package is published under the terms of the BSD style license a copy of which has been included with this distribution in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_597.yml b/src/licensedcode/data/rules/bsd-new_597.yml deleted file mode 100644 index f8fd8d4728c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_597.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_598.RULE b/src/licensedcode/data/rules/bsd-new_598.RULE index c3762819fee..79bb21f6646 100644 --- a/src/licensedcode/data/rules/bsd-new_598.RULE +++ b/src/licensedcode/data/rules/bsd-new_598.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + (BSD Style License) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_598.yml b/src/licensedcode/data/rules/bsd-new_598.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_598.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_599.RULE b/src/licensedcode/data/rules/bsd-new_599.RULE index 3352e937ca5..0fc40960c7e 100644 --- a/src/licensedcode/data/rules/bsd-new_599.RULE +++ b/src/licensedcode/data/rules/bsd-new_599.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + Free software: BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_599.yml b/src/licensedcode/data/rules/bsd-new_599.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_599.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_6.RULE b/src/licensedcode/data/rules/bsd-new_6.RULE index a99a1f8cb82..122de48425a 100644 --- a/src/licensedcode/data/rules/bsd-new_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: This weird version contains a mistake (corrected later by the author) allowing to use + the author name in endorsements. +--- + // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // @@ -20,4 +27,4 @@ // 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. +// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_6.yml b/src/licensedcode/data/rules/bsd-new_6.yml deleted file mode 100644 index 32c221f599f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: This weird version contains a mistake (corrected later by the author) allowing to use - the author name in endorsements. diff --git a/src/licensedcode/data/rules/bsd-new_60.RULE b/src/licensedcode/data/rules/bsd-new_60.RULE index 8747e3a855e..51a165f09cd 100644 --- a/src/licensedcode/data/rules/bsd-new_60.RULE +++ b/src/licensedcode/data/rules/bsd-new_60.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -25,4 +30,4 @@ 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. +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_60.yml b/src/licensedcode/data/rules/bsd-new_60.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_60.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_600.RULE b/src/licensedcode/data/rules/bsd-new_600.RULE index 7dd4973e018..d6021abb0d7 100644 --- a/src/licensedcode/data/rules/bsd-new_600.RULE +++ b/src/licensedcode/data/rules/bsd-new_600.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_600.yml b/src/licensedcode/data/rules/bsd-new_600.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_600.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_601.RULE b/src/licensedcode/data/rules/bsd-new_601.RULE index d5d7b4bcc16..b027a5fe585 100644 --- a/src/licensedcode/data/rules/bsd-new_601.RULE +++ b/src/licensedcode/data/rules/bsd-new_601.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_601.yml b/src/licensedcode/data/rules/bsd-new_601.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_601.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_602.RULE b/src/licensedcode/data/rules/bsd-new_602.RULE index b6232c0f91d..0e5c8f30dc7 100644 --- a/src/licensedcode/data/rules/bsd-new_602.RULE +++ b/src/licensedcode/data/rules/bsd-new_602.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + License: BSD 3-clause Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_602.yml b/src/licensedcode/data/rules/bsd-new_602.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_602.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_603.RULE b/src/licensedcode/data/rules/bsd-new_603.RULE index 0d99b86f7a5..6c7d59e016d 100644 --- a/src/licensedcode/data/rules/bsd-new_603.RULE +++ b/src/licensedcode/data/rules/bsd-new_603.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 90 +referenced_filenames: + - LICENSE +--- + :license: BSD, see LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_603.yml b/src/licensedcode/data/rules/bsd-new_603.yml deleted file mode 100644 index 40cc2e58344..00000000000 --- a/src/licensedcode/data/rules/bsd-new_603.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 90 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_604.RULE b/src/licensedcode/data/rules/bsd-new_604.RULE index 47d558a7a44..031750cd7cf 100644 --- a/src/licensedcode/data/rules/bsd-new_604.RULE +++ b/src/licensedcode/data/rules/bsd-new_604.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - README + - COPYING +--- + * This program is free software; you can redistribute it and/or modify * it under the terms of BSD license * diff --git a/src/licensedcode/data/rules/bsd-new_604.yml b/src/licensedcode/data/rules/bsd-new_604.yml deleted file mode 100644 index 0d4d554ceaa..00000000000 --- a/src/licensedcode/data/rules/bsd-new_604.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - README - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_605.RULE b/src/licensedcode/data/rules/bsd-new_605.RULE index 53a8280d1fa..e44673a40a8 100644 --- a/src/licensedcode/data/rules/bsd-new_605.RULE +++ b/src/licensedcode/data/rules/bsd-new_605.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_605.yml b/src/licensedcode/data/rules/bsd-new_605.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_605.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_606.RULE b/src/licensedcode/data/rules/bsd-new_606.RULE index e34fb1f41bd..89415e55c34 100644 --- a/src/licensedcode/data/rules/bsd-new_606.RULE +++ b/src/licensedcode/data/rules/bsd-new_606.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_606.yml b/src/licensedcode/data/rules/bsd-new_606.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_606.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_607.RULE b/src/licensedcode/data/rules/bsd-new_607.RULE index 858ffc02785..a9a9ad5affb 100644 --- a/src/licensedcode/data/rules/bsd-new_607.RULE +++ b/src/licensedcode/data/rules/bsd-new_607.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +ignorable_emails: + - info@ciir.cs.umass.edu +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_607.yml b/src/licensedcode/data/rules/bsd-new_607.yml deleted file mode 100644 index e5c30225f27..00000000000 --- a/src/licensedcode/data/rules/bsd-new_607.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -ignorable_emails: - - info@ciir.cs.umass.edu diff --git a/src/licensedcode/data/rules/bsd-new_608.RULE b/src/licensedcode/data/rules/bsd-new_608.RULE index cdecbecacff..1d568e8bfc3 100644 --- a/src/licensedcode/data/rules/bsd-new_608.RULE +++ b/src/licensedcode/data/rules/bsd-new_608.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_608.yml b/src/licensedcode/data/rules/bsd-new_608.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_608.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_609.RULE b/src/licensedcode/data/rules/bsd-new_609.RULE index 4922fcd8789..5ee0e0f7d9d 100644 --- a/src/licensedcode/data/rules/bsd-new_609.RULE +++ b/src/licensedcode/data/rules/bsd-new_609.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License Code licensed under the BSD 3-Clause license. See LICENSE file for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_609.yml b/src/licensedcode/data/rules/bsd-new_609.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_609.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_61.RULE b/src/licensedcode/data/rules/bsd-new_61.RULE index 5379cee7ae9..9fb490bc6f0 100644 --- a/src/licensedcode/data/rules/bsd-new_61.RULE +++ b/src/licensedcode/data/rules/bsd-new_61.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + is distributed under a BSD license; see LICENSE.txt for more # information \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_61.yml b/src/licensedcode/data/rules/bsd-new_61.yml deleted file mode 100644 index 9eae0edd739..00000000000 --- a/src/licensedcode/data/rules/bsd-new_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_610.RULE b/src/licensedcode/data/rules/bsd-new_610.RULE index fe64402f0ca..a7a04a7228f 100644 --- a/src/licensedcode/data/rules/bsd-new_610.RULE +++ b/src/licensedcode/data/rules/bsd-new_610.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Code licensed under the BSD 3-Clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_610.yml b/src/licensedcode/data/rules/bsd-new_610.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_610.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_611.RULE b/src/licensedcode/data/rules/bsd-new_611.RULE index 35eee9e5013..cef2dbe00fa 100644 --- a/src/licensedcode/data/rules/bsd-new_611.RULE +++ b/src/licensedcode/data/rules/bsd-new_611.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Code licensed under the BSD 3-Clause license. See LICENSE file for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_611.yml b/src/licensedcode/data/rules/bsd-new_611.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_611.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_612.RULE b/src/licensedcode/data/rules/bsd-new_612.RULE index 4a44fa16a6b..8041e961f34 100644 --- a/src/licensedcode/data/rules/bsd-new_612.RULE +++ b/src/licensedcode/data/rules/bsd-new_612.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + and BSD licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_612.yml b/src/licensedcode/data/rules/bsd-new_612.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_612.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_613.RULE b/src/licensedcode/data/rules/bsd-new_613.RULE index 8fc39ceb835..42cbff168df 100644 --- a/src/licensedcode/data/rules/bsd-new_613.RULE +++ b/src/licensedcode/data/rules/bsd-new_613.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.php +--- + ## Declared Project Licenses This program and the accompanying materials are made available under the terms diff --git a/src/licensedcode/data/rules/bsd-new_613.yml b/src/licensedcode/data/rules/bsd-new_613.yml deleted file mode 100644 index a0fc1ccbfbb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_613.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_614.RULE b/src/licensedcode/data/rules/bsd-new_614.RULE index ca883c17994..60134d51f0d 100644 --- a/src/licensedcode/data/rules/bsd-new_614.RULE +++ b/src/licensedcode/data/rules/bsd-new_614.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v. 1.0, which is available at http://www.eclipse.org/org/documents/edl-v10.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_614.yml b/src/licensedcode/data/rules/bsd-new_614.yml deleted file mode 100644 index a0fc1ccbfbb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_614.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_615.RULE b/src/licensedcode/data/rules/bsd-new_615.RULE index 188bda476e2..b511a9e2af1 100644 --- a/src/licensedcode/data/rules/bsd-new_615.RULE +++ b/src/licensedcode/data/rules/bsd-new_615.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + ## Declared Project Licenses This program and the accompanying materials are made available under the terms diff --git a/src/licensedcode/data/rules/bsd-new_615.yml b/src/licensedcode/data/rules/bsd-new_615.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_615.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_616.RULE b/src/licensedcode/data/rules/bsd-new_616.RULE index edd46596c24..1cbef6c3ab1 100644 --- a/src/licensedcode/data/rules/bsd-new_616.RULE +++ b/src/licensedcode/data/rules/bsd-new_616.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.php +--- + ## Declared Project Licenses This program and the accompanying materials are made available under the terms diff --git a/src/licensedcode/data/rules/bsd-new_616.yml b/src/licensedcode/data/rules/bsd-new_616.yml deleted file mode 100644 index 75fe5f313e4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_616.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_617.RULE b/src/licensedcode/data/rules/bsd-new_617.RULE index 391ebf0bfd3..dc685769b24 100644 --- a/src/licensedcode/data/rules/bsd-new_617.RULE +++ b/src/licensedcode/data/rules/bsd-new_617.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + These programs are licensed under the BSD license (the one with advertisement clause removed). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_617.yml b/src/licensedcode/data/rules/bsd-new_617.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_617.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_618.RULE b/src/licensedcode/data/rules/bsd-new_618.RULE index 6c8df35cf95..1820766e954 100644 --- a/src/licensedcode/data/rules/bsd-new_618.RULE +++ b/src/licensedcode/data/rules/bsd-new_618.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + This software may be distributed, used, and modified under the terms of BSD license: diff --git a/src/licensedcode/data/rules/bsd-new_618.yml b/src/licensedcode/data/rules/bsd-new_618.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_618.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_619.RULE b/src/licensedcode/data/rules/bsd-new_619.RULE index 55a77a221a3..7880ccd69d7 100644 --- a/src/licensedcode/data/rules/bsd-new_619.RULE +++ b/src/licensedcode/data/rules/bsd-new_619.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_619.yml b/src/licensedcode/data/rules/bsd-new_619.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_619.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_62.RULE b/src/licensedcode/data/rules/bsd-new_62.RULE index c58ad835fa6..53c6dbd465c 100644 --- a/src/licensedcode/data/rules/bsd-new_62.RULE +++ b/src/licensedcode/data/rules/bsd-new_62.RULE @@ -1,5 +1,14 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.kitware.com/Copyright.htm +--- + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notice for more information. + PURPOSE. See the above copyright notice for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_62.yml b/src/licensedcode/data/rules/bsd-new_62.yml deleted file mode 100644 index 1b7cf6337cc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_62.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.kitware.com/Copyright.htm diff --git a/src/licensedcode/data/rules/bsd-new_620.RULE b/src/licensedcode/data/rules/bsd-new_620.RULE index f33d7c918b5..7fcd94ea5f7 100644 --- a/src/licensedcode/data/rules/bsd-new_620.RULE +++ b/src/licensedcode/data/rules/bsd-new_620.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + License This software may be distributed, used, and modified under the terms of diff --git a/src/licensedcode/data/rules/bsd-new_620.yml b/src/licensedcode/data/rules/bsd-new_620.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_620.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_621.RULE b/src/licensedcode/data/rules/bsd-new_621.RULE index 5c85b81d953..8d163a0e4a0 100644 --- a/src/licensedcode/data/rules/bsd-new_621.RULE +++ b/src/licensedcode/data/rules/bsd-new_621.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + This software may be distributed, used, and modified under the terms of BSD license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_621.yml b/src/licensedcode/data/rules/bsd-new_621.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_621.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_622.RULE b/src/licensedcode/data/rules/bsd-new_622.RULE index 9f49b3e97c7..8fcc8e13a65 100644 --- a/src/licensedcode/data/rules/bsd-new_622.RULE +++ b/src/licensedcode/data/rules/bsd-new_622.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + the project has chosen to use only the BSD license option for future distribution. As such, the GPL v2 license option is no longer used and the contributions are not required to be diff --git a/src/licensedcode/data/rules/bsd-new_622.yml b/src/licensedcode/data/rules/bsd-new_622.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_622.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_623.RULE b/src/licensedcode/data/rules/bsd-new_623.RULE index 4369ac3d09b..aeec2f8a39d 100644 --- a/src/licensedcode/data/rules/bsd-new_623.RULE +++ b/src/licensedcode/data/rules/bsd-new_623.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Modified BSD license (no advertisement clause): \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_623.yml b/src/licensedcode/data/rules/bsd-new_623.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_623.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_624.RULE b/src/licensedcode/data/rules/bsd-new_624.RULE index 96057827035..fe99875e761 100644 --- a/src/licensedcode/data/rules/bsd-new_624.RULE +++ b/src/licensedcode/data/rules/bsd-new_624.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 96 +--- + Modified BSD license (no advertisement clause): Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_624.yml b/src/licensedcode/data/rules/bsd-new_624.yml deleted file mode 100644 index 4ad43a31b61..00000000000 --- a/src/licensedcode/data/rules/bsd-new_624.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 96 diff --git a/src/licensedcode/data/rules/bsd-new_625.RULE b/src/licensedcode/data/rules/bsd-new_625.RULE index 0116cac0f0b..97f0bec9e92 100644 --- a/src/licensedcode/data/rules/bsd-new_625.RULE +++ b/src/licensedcode/data/rules/bsd-new_625.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + license is BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_625.yml b/src/licensedcode/data/rules/bsd-new_625.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_625.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_626.RULE b/src/licensedcode/data/rules/bsd-new_626.RULE index 3e05dce8667..cdbc99002ee 100644 --- a/src/licensedcode/data/rules/bsd-new_626.RULE +++ b/src/licensedcode/data/rules/bsd-new_626.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + 3-clause BSD license retained \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_626.yml b/src/licensedcode/data/rules/bsd-new_626.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_626.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_627.RULE b/src/licensedcode/data/rules/bsd-new_627.RULE index cd066cfcc99..6ed811968b7 100644 --- a/src/licensedcode/data/rules/bsd-new_627.RULE +++ b/src/licensedcode/data/rules/bsd-new_627.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - README +--- + license This software may be distributed under the terms of the BSD license See README for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_627.yml b/src/licensedcode/data/rules/bsd-new_627.yml deleted file mode 100644 index 38977c78f1d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_627.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/bsd-new_628.RULE b/src/licensedcode/data/rules/bsd-new_628.RULE index f446f22dac0..a9084d01760 100644 --- a/src/licensedcode/data/rules/bsd-new_628.RULE +++ b/src/licensedcode/data/rules/bsd-new_628.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + This software may be distributed under the terms of the BSD license. Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_628.yml b/src/licensedcode/data/rules/bsd-new_628.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_628.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_629.RULE b/src/licensedcode/data/rules/bsd-new_629.RULE index fed6b62b204..3daf432cf50 100644 --- a/src/licensedcode/data/rules/bsd-new_629.RULE +++ b/src/licensedcode/data/rules/bsd-new_629.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_629.yml b/src/licensedcode/data/rules/bsd-new_629.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_629.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_63.RULE b/src/licensedcode/data/rules/bsd-new_63.RULE index 6706acf4a5d..27c1c8c4b9f 100644 --- a/src/licensedcode/data/rules/bsd-new_63.RULE +++ b/src/licensedcode/data/rules/bsd-new_63.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +referenced_filenames: + - LICENSE +notes: Found in Chromium Debian copyright files +--- + Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.: -License: global BSD-style \ No newline at end of file +License: global BSD-style \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_63.yml b/src/licensedcode/data/rules/bsd-new_63.yml deleted file mode 100644 index 9e23dd5b09a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_63.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -referenced_filenames: - - LICENSE -notes: Found in Chromium Debian copyright files diff --git a/src/licensedcode/data/rules/bsd-new_630.RULE b/src/licensedcode/data/rules/bsd-new_630.RULE index 341b266339b..da15f0d26ad 100644 --- a/src/licensedcode/data/rules/bsd-new_630.RULE +++ b/src/licensedcode/data/rules/bsd-new_630.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - wps_upnp.c +notes: this is unique to wpa_supplicant +--- + See wps_upnp.c for more details on licensing and code history. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_630.yml b/src/licensedcode/data/rules/bsd-new_630.yml deleted file mode 100644 index ba948bec978..00000000000 --- a/src/licensedcode/data/rules/bsd-new_630.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - wps_upnp.c -notes: this is unique to wpa_supplicant diff --git a/src/licensedcode/data/rules/bsd-new_631.RULE b/src/licensedcode/data/rules/bsd-new_631.RULE index 9f20ea5ed0c..1da3b20fb50 100644 --- a/src/licensedcode/data/rules/bsd-new_631.RULE +++ b/src/licensedcode/data/rules/bsd-new_631.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + License: [BSD-3][BSD-3] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_631.yml b/src/licensedcode/data/rules/bsd-new_631.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_631.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_632.RULE b/src/licensedcode/data/rules/bsd-new_632.RULE index a1872e238d8..84040130690 100644 --- a/src/licensedcode/data/rules/bsd-new_632.RULE +++ b/src/licensedcode/data/rules/bsd-new_632.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_632.yml b/src/licensedcode/data/rules/bsd-new_632.yml deleted file mode 100644 index ba2624cca1b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_632.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_633.RULE b/src/licensedcode/data/rules/bsd-new_633.RULE index 490761656f1..30888256678 100644 --- a/src/licensedcode/data/rules/bsd-new_633.RULE +++ b/src/licensedcode/data/rules/bsd-new_633.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_633.yml b/src/licensedcode/data/rules/bsd-new_633.yml deleted file mode 100644 index ba2624cca1b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_633.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_634.RULE b/src/licensedcode/data/rules/bsd-new_634.RULE index f4004d774be..26a07b3faf2 100644 --- a/src/licensedcode/data/rules/bsd-new_634.RULE +++ b/src/licensedcode/data/rules/bsd-new_634.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + License (based on BSD license) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_634.yml b/src/licensedcode/data/rules/bsd-new_634.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_634.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_635.RULE b/src/licensedcode/data/rules/bsd-new_635.RULE index 22c9c05a561..0b9b6c2b36a 100644 --- a/src/licensedcode/data/rules/bsd-new_635.RULE +++ b/src/licensedcode/data/rules/bsd-new_635.RULE @@ -1,7 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Distributed under the OSI-approved BSD License (the "License"); see accompanying file Copyright.txt for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the License for more information. - \ No newline at end of file + See the License for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_635.yml b/src/licensedcode/data/rules/bsd-new_635.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_635.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_636.RULE b/src/licensedcode/data/rules/bsd-new_636.RULE index 77288b765cf..93e8116e930 100644 --- a/src/licensedcode/data/rules/bsd-new_636.RULE +++ b/src/licensedcode/data/rules/bsd-new_636.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Released under the terms of the following BSD License. Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_636.yml b/src/licensedcode/data/rules/bsd-new_636.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_636.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_637.RULE b/src/licensedcode/data/rules/bsd-new_637.RULE index e13dd4c786d..14b40ed9a6c 100644 --- a/src/licensedcode/data/rules/bsd-new_637.RULE +++ b/src/licensedcode/data/rules/bsd-new_637.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + BSD-3 licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_637.yml b/src/licensedcode/data/rules/bsd-new_637.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_637.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_638.RULE b/src/licensedcode/data/rules/bsd-new_638.RULE index e866413b05c..3e49c679573 100644 --- a/src/licensedcode/data/rules/bsd-new_638.RULE +++ b/src/licensedcode/data/rules/bsd-new_638.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + LICENSE.txt [BSD-3] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_638.yml b/src/licensedcode/data/rules/bsd-new_638.yml deleted file mode 100644 index 4db018eb4d0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_638.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_639.RULE b/src/licensedcode/data/rules/bsd-new_639.RULE index 96429ac412f..514b1ef7b17 100644 --- a/src/licensedcode/data/rules/bsd-new_639.RULE +++ b/src/licensedcode/data/rules/bsd-new_639.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_639.yml b/src/licensedcode/data/rules/bsd-new_639.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_639.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_64.RULE b/src/licensedcode/data/rules/bsd-new_64.RULE index aa31fa801c5..80b4fa9d95e 100644 --- a/src/licensedcode/data/rules/bsd-new_64.RULE +++ b/src/licensedcode/data/rules/bsd-new_64.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -11,4 +16,4 @@ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 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. +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_64.yml b/src/licensedcode/data/rules/bsd-new_64.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_64.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_640.RULE b/src/licensedcode/data/rules/bsd-new_640.RULE index 65948d0ca8a..33df533198e 100644 --- a/src/licensedcode/data/rules/bsd-new_640.RULE +++ b/src/licensedcode/data/rules/bsd-new_640.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_640.yml b/src/licensedcode/data/rules/bsd-new_640.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_640.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_641.RULE b/src/licensedcode/data/rules/bsd-new_641.RULE index 1362c4ab629..401132b9fd6 100644 --- a/src/licensedcode/data/rules/bsd-new_641.RULE +++ b/src/licensedcode/data/rules/bsd-new_641.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the Modified BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_641.yml b/src/licensedcode/data/rules/bsd-new_641.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_641.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_642.RULE b/src/licensedcode/data/rules/bsd-new_642.RULE index ae7210fb0ee..dcf50a1e89b 100644 --- a/src/licensedcode/data/rules/bsd-new_642.RULE +++ b/src/licensedcode/data/rules/bsd-new_642.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Framework is provided under the 3-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_642.yml b/src/licensedcode/data/rules/bsd-new_642.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_642.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_643.RULE b/src/licensedcode/data/rules/bsd-new_643.RULE index 32997208865..69a545b6f12 100644 --- a/src/licensedcode/data/rules/bsd-new_643.RULE +++ b/src/licensedcode/data/rules/bsd-new_643.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + provided under the 3-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_643.yml b/src/licensedcode/data/rules/bsd-new_643.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_643.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_644.RULE b/src/licensedcode/data/rules/bsd-new_644.RULE index c32a91d1f14..e5a9848342a 100644 --- a/src/licensedcode/data/rules/bsd-new_644.RULE +++ b/src/licensedcode/data/rules/bsd-new_644.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Three clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_644.yml b/src/licensedcode/data/rules/bsd-new_644.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_644.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_645.RULE b/src/licensedcode/data/rules/bsd-new_645.RULE index b2a5e53ee3c..ccc0a5aefa1 100644 --- a/src/licensedcode/data/rules/bsd-new_645.RULE +++ b/src/licensedcode/data/rules/bsd-new_645.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + PCRE is distributed under the terms of the "BSD" licence, as specified below. The documentation for PCRE, supplied in the "doc" directory, is distributed under the same terms as the software itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_645.yml b/src/licensedcode/data/rules/bsd-new_645.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_645.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_646.RULE b/src/licensedcode/data/rules/bsd-new_646.RULE index ad73f446818..9c4acedb104 100644 --- a/src/licensedcode/data/rules/bsd-new_646.RULE +++ b/src/licensedcode/data/rules/bsd-new_646.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + The copyright notice and license are embedded in regexp-pcre.js. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_646.yml b/src/licensedcode/data/rules/bsd-new_646.yml deleted file mode 100644 index e5227476bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_646.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_647.RULE b/src/licensedcode/data/rules/bsd-new_647.RULE index 5a586aa39fd..8871239f9da 100644 --- a/src/licensedcode/data/rules/bsd-new_647.RULE +++ b/src/licensedcode/data/rules/bsd-new_647.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + released under a 3-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_647.yml b/src/licensedcode/data/rules/bsd-new_647.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_647.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_648.RULE b/src/licensedcode/data/rules/bsd-new_648.RULE index 3edd54b8f9a..34a529c342c 100644 --- a/src/licensedcode/data/rules/bsd-new_648.RULE +++ b/src/licensedcode/data/rules/bsd-new_648.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This is released under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_648.yml b/src/licensedcode/data/rules/bsd-new_648.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_648.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_649.RULE b/src/licensedcode/data/rules/bsd-new_649.RULE index a74e03a8197..04c466ad033 100644 --- a/src/licensedcode/data/rules/bsd-new_649.RULE +++ b/src/licensedcode/data/rules/bsd-new_649.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + released under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_649.yml b/src/licensedcode/data/rules/bsd-new_649.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_649.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_65.RULE b/src/licensedcode/data/rules/bsd-new_65.RULE index 86fc49bf8bd..4ad56dc2124 100644 --- a/src/licensedcode/data/rules/bsd-new_65.RULE +++ b/src/licensedcode/data/rules/bsd-new_65.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + It is BSD licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_65.yml b/src/licensedcode/data/rules/bsd-new_65.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_650.RULE b/src/licensedcode/data/rules/bsd-new_650.RULE index eb520f5bc84..fe1955baa25 100644 --- a/src/licensedcode/data/rules/bsd-new_650.RULE +++ b/src/licensedcode/data/rules/bsd-new_650.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Open Source Software Licensed under the BSD 3-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_650.yml b/src/licensedcode/data/rules/bsd-new_650.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_650.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_651.RULE b/src/licensedcode/data/rules/bsd-new_651.RULE index ace323347e7..c2385b6cf22 100644 --- a/src/licensedcode/data/rules/bsd-new_651.RULE +++ b/src/licensedcode/data/rules/bsd-new_651.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Terms of the BSD 3-Clause License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_651.yml b/src/licensedcode/data/rules/bsd-new_651.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_651.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_652.RULE b/src/licensedcode/data/rules/bsd-new_652.RULE index b55a228805b..b325c6c702b 100644 --- a/src/licensedcode/data/rules/bsd-new_652.RULE +++ b/src/licensedcode/data/rules/bsd-new_652.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Terms of the BSD 3-Clause License: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_652.yml b/src/licensedcode/data/rules/bsd-new_652.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_652.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_653.RULE b/src/licensedcode/data/rules/bsd-new_653.RULE index 98572f19251..3e3f6949f22 100644 --- a/src/licensedcode/data/rules/bsd-new_653.RULE +++ b/src/licensedcode/data/rules/bsd-new_653.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Go is used under the terms of the BSD like license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_653.yml b/src/licensedcode/data/rules/bsd-new_653.yml deleted file mode 100644 index 01cbfcfa3a0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_653.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_654.RULE b/src/licensedcode/data/rules/bsd-new_654.RULE index 920559e3af6..691b49a536d 100644 --- a/src/licensedcode/data/rules/bsd-new_654.RULE +++ b/src/licensedcode/data/rules/bsd-new_654.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_654.yml b/src/licensedcode/data/rules/bsd-new_654.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_654.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_655.RULE b/src/licensedcode/data/rules/bsd-new_655.RULE index b6812c21ce8..9f39dc78450 100644 --- a/src/licensedcode/data/rules/bsd-new_655.RULE +++ b/src/licensedcode/data/rules/bsd-new_655.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_655.yml b/src/licensedcode/data/rules/bsd-new_655.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_655.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_656.RULE b/src/licensedcode/data/rules/bsd-new_656.RULE index 80487c0f383..55c0476be67 100644 --- a/src/licensedcode/data/rules/bsd-new_656.RULE +++ b/src/licensedcode/data/rules/bsd-new_656.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/asm_license.txt +--- + License: BSD ([license/third_party/asm_license.txt][asm]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_656.yml b/src/licensedcode/data/rules/bsd-new_656.yml deleted file mode 100644 index 85d35698c37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_656.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/asm_license.txt diff --git a/src/licensedcode/data/rules/bsd-new_657.RULE b/src/licensedcode/data/rules/bsd-new_657.RULE index 0582f0f9f4c..a8a6b1fca0d 100644 --- a/src/licensedcode/data/rules/bsd-new_657.RULE +++ b/src/licensedcode/data/rules/bsd-new_657.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/asm_license.txt +--- + [asm]: third_party/asm_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_657.yml b/src/licensedcode/data/rules/bsd-new_657.yml deleted file mode 100644 index 36e8b017940..00000000000 --- a/src/licensedcode/data/rules/bsd-new_657.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/asm_license.txt diff --git a/src/licensedcode/data/rules/bsd-new_658.RULE b/src/licensedcode/data/rules/bsd-new_658.RULE index ca32c9efc18..0dd5b5d9741 100644 --- a/src/licensedcode/data/rules/bsd-new_658.RULE +++ b/src/licensedcode/data/rules/bsd-new_658.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/dart_LICENSE.txt +--- + [dart]: third_party/dart_LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_658.yml b/src/licensedcode/data/rules/bsd-new_658.yml deleted file mode 100644 index 661531d5ba9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_658.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/dart_LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_659.RULE b/src/licensedcode/data/rules/bsd-new_659.RULE index c3f8d3cb050..83e2c127ccc 100644 --- a/src/licensedcode/data/rules/bsd-new_659.RULE +++ b/src/licensedcode/data/rules/bsd-new_659.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/dart_LICENSE.txt +--- + License: BSD ([license/third_party/dart_LICENSE.txt][dart]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_659.yml b/src/licensedcode/data/rules/bsd-new_659.yml deleted file mode 100644 index 853e1ce8904..00000000000 --- a/src/licensedcode/data/rules/bsd-new_659.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/dart_LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_66.RULE b/src/licensedcode/data/rules/bsd-new_66.RULE index 46b46ec5fd9..b0ee57a3a54 100644 --- a/src/licensedcode/data/rules/bsd-new_66.RULE +++ b/src/licensedcode/data/rules/bsd-new_66.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_66.yml b/src/licensedcode/data/rules/bsd-new_66.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_66.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_660.RULE b/src/licensedcode/data/rules/bsd-new_660.RULE index bcdf220d70e..40c8d8f761e 100644 --- a/src/licensedcode/data/rules/bsd-new_660.RULE +++ b/src/licensedcode/data/rules/bsd-new_660.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/testdata/eclipse_distribution_license.txt +--- + [eclipse-distribution]: third_party/testdata/eclipse_distribution_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_660.yml b/src/licensedcode/data/rules/bsd-new_660.yml deleted file mode 100644 index bcec601f664..00000000000 --- a/src/licensedcode/data/rules/bsd-new_660.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/testdata/eclipse_distribution_license.txt diff --git a/src/licensedcode/data/rules/bsd-new_661.RULE b/src/licensedcode/data/rules/bsd-new_661.RULE index b9ba614a8b7..3edc329ecd1 100644 --- a/src/licensedcode/data/rules/bsd-new_661.RULE +++ b/src/licensedcode/data/rules/bsd-new_661.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-new_661.yml b/src/licensedcode/data/rules/bsd-new_661.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_661.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_662.RULE b/src/licensedcode/data/rules/bsd-new_662.RULE index 9b49a5eaaa4..0f0f08bb19c 100644 --- a/src/licensedcode/data/rules/bsd-new_662.RULE +++ b/src/licensedcode/data/rules/bsd-new_662.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + 3-Clause BSD https://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_662.yml b/src/licensedcode/data/rules/bsd-new_662.yml deleted file mode 100644 index a881da83bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_662.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_663.RULE b/src/licensedcode/data/rules/bsd-new_663.RULE index 93e352d6614..a02080482b6 100644 --- a/src/licensedcode/data/rules/bsd-new_663.RULE +++ b/src/licensedcode/data/rules/bsd-new_663.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + 3-Clause BSD http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_663.yml b/src/licensedcode/data/rules/bsd-new_663.yml deleted file mode 100644 index c73f22b6109..00000000000 --- a/src/licensedcode/data/rules/bsd-new_663.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_664.RULE b/src/licensedcode/data/rules/bsd-new_664.RULE index 1c75c56efce..1f0d200d225 100644 --- a/src/licensedcode/data/rules/bsd-new_664.RULE +++ b/src/licensedcode/data/rules/bsd-new_664.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.php +--- + Eclipse Distribution License 1.0 https://www.eclipse.org/org/documents/edl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_664.yml b/src/licensedcode/data/rules/bsd-new_664.yml deleted file mode 100644 index 439387b930f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_664.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_665.RULE b/src/licensedcode/data/rules/bsd-new_665.RULE index c37f17d2ba5..50631317b17 100644 --- a/src/licensedcode/data/rules/bsd-new_665.RULE +++ b/src/licensedcode/data/rules/bsd-new_665.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Eclipse Distribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_665.yml b/src/licensedcode/data/rules/bsd-new_665.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_665.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_666.RULE b/src/licensedcode/data/rules/bsd-new_666.RULE index 9e5e86fe62c..07e00dd090d 100644 --- a/src/licensedcode/data/rules/bsd-new_666.RULE +++ b/src/licensedcode/data/rules/bsd-new_666.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.php +--- + https://www.eclipse.org/org/documents/edl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_666.yml b/src/licensedcode/data/rules/bsd-new_666.yml deleted file mode 100644 index 439387b930f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_666.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_667.RULE b/src/licensedcode/data/rules/bsd-new_667.RULE index 5e9679c2143..d273f5c0797 100644 --- a/src/licensedcode/data/rules/bsd-new_667.RULE +++ b/src/licensedcode/data/rules/bsd-new_667.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + eclipse.org/org/documents/edl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_667.yml b/src/licensedcode/data/rules/bsd-new_667.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_667.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_668.RULE b/src/licensedcode/data/rules/bsd-new_668.RULE index 378b6f41e05..c3ab9df95cd 100644 --- a/src/licensedcode/data/rules/bsd-new_668.RULE +++ b/src/licensedcode/data/rules/bsd-new_668.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: this has this exatr term "for any purpose with or without fee " +--- + Permission to use, copy, modify, and distribute this software in source or binary form for any purpose with or without fee is hereby granted, provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_668.yml b/src/licensedcode/data/rules/bsd-new_668.yml deleted file mode 100644 index ec916c4aeef..00000000000 --- a/src/licensedcode/data/rules/bsd-new_668.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: this has this exatr term "for any purpose with or without fee " diff --git a/src/licensedcode/data/rules/bsd-new_669.RULE b/src/licensedcode/data/rules/bsd-new_669.RULE index ca4d7eac405..8c36f45c21f 100644 --- a/src/licensedcode/data/rules/bsd-new_669.RULE +++ b/src/licensedcode/data/rules/bsd-new_669.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: this has this exatr term "for any purpose with or without fee " +--- + LICENSE Permission to use, copy, modify, and distribute this software in source or binary form for any purpose with or without fee is hereby granted, diff --git a/src/licensedcode/data/rules/bsd-new_669.yml b/src/licensedcode/data/rules/bsd-new_669.yml deleted file mode 100644 index ec916c4aeef..00000000000 --- a/src/licensedcode/data/rules/bsd-new_669.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: this has this exatr term "for any purpose with or without fee " diff --git a/src/licensedcode/data/rules/bsd-new_67.RULE b/src/licensedcode/data/rules/bsd-new_67.RULE index 63f5927eddb..10376ef5f5a 100644 --- a/src/licensedcode/data/rules/bsd-new_67.RULE +++ b/src/licensedcode/data/rules/bsd-new_67.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 95 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_67.yml b/src/licensedcode/data/rules/bsd-new_67.yml deleted file mode 100644 index c81f8dc5384..00000000000 --- a/src/licensedcode/data/rules/bsd-new_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_670.RULE b/src/licensedcode/data/rules/bsd-new_670.RULE index 6a0bd921113..1fb4d381dc1 100644 --- a/src/licensedcode/data/rules/bsd-new_670.RULE +++ b/src/licensedcode/data/rules/bsd-new_670.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: this has this exatr term "for any purpose with or without fee " +--- + Permission to use, copy, modify, and distribute this software in source or binary form for any purpose with or without fee is hereby granted, provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_670.yml b/src/licensedcode/data/rules/bsd-new_670.yml deleted file mode 100644 index ec916c4aeef..00000000000 --- a/src/licensedcode/data/rules/bsd-new_670.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: this has this exatr term "for any purpose with or without fee " diff --git a/src/licensedcode/data/rules/bsd-new_671.RULE b/src/licensedcode/data/rules/bsd-new_671.RULE index 2510dcc8c2b..7ce66243948 100644 --- a/src/licensedcode/data/rules/bsd-new_671.RULE +++ b/src/licensedcode/data/rules/bsd-new_671.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 99 +notes: this has this exatr term "for any purpose with or without fee " +--- + LICENSE Permission to use, copy, modify, and distribute this software in source or binary form for any purpose with or without fee is hereby granted, diff --git a/src/licensedcode/data/rules/bsd-new_671.yml b/src/licensedcode/data/rules/bsd-new_671.yml deleted file mode 100644 index ec916c4aeef..00000000000 --- a/src/licensedcode/data/rules/bsd-new_671.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 99 -notes: this has this exatr term "for any purpose with or without fee " diff --git a/src/licensedcode/data/rules/bsd-new_672.RULE b/src/licensedcode/data/rules/bsd-new_672.RULE index f472034f3e3..89f0443a233 100644 --- a/src/licensedcode/data/rules/bsd-new_672.RULE +++ b/src/licensedcode/data/rules/bsd-new_672.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + [BSD-3]: http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_672.yml b/src/licensedcode/data/rules/bsd-new_672.yml deleted file mode 100644 index 08679dbeaa6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_672.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_673.RULE b/src/licensedcode/data/rules/bsd-new_673.RULE index 08468da1c96..11af270ff4e 100644 --- a/src/licensedcode/data/rules/bsd-new_673.RULE +++ b/src/licensedcode/data/rules/bsd-new_673.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + `BSD-3-Clause` - [BSD 3-Clause "New" or "Revised"](https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_673.yml b/src/licensedcode/data/rules/bsd-new_673.yml deleted file mode 100644 index a881da83bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_673.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_674.RULE b/src/licensedcode/data/rules/bsd-new_674.RULE index d98f6c62e07..43a446ddc32 100644 --- a/src/licensedcode/data/rules/bsd-new_674.RULE +++ b/src/licensedcode/data/rules/bsd-new_674.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + golang.org/x/net/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_674.yml b/src/licensedcode/data/rules/bsd-new_674.yml deleted file mode 100644 index e5227476bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_674.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_675.RULE b/src/licensedcode/data/rules/bsd-new_675.RULE index e3a38509486..f1f695b28db 100644 --- a/src/licensedcode/data/rules/bsd-new_675.RULE +++ b/src/licensedcode/data/rules/bsd-new_675.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + golang.org/x/text/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_675.yml b/src/licensedcode/data/rules/bsd-new_675.yml deleted file mode 100644 index e5227476bcf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_675.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_676.RULE b/src/licensedcode/data/rules/bsd-new_676.RULE index 90b4ac79b4e..e9095a3bd8a 100644 --- a/src/licensedcode/data/rules/bsd-new_676.RULE +++ b/src/licensedcode/data/rules/bsd-new_676.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + BSD-style licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_676.yml b/src/licensedcode/data/rules/bsd-new_676.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_676.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_677.RULE b/src/licensedcode/data/rules/bsd-new_677.RULE index 107f873167e..fd27679152b 100644 --- a/src/licensedcode/data/rules/bsd-new_677.RULE +++ b/src/licensedcode/data/rules/bsd-new_677.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + |license :alt: BSD License :target: https://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_677.yml b/src/licensedcode/data/rules/bsd-new_677.yml deleted file mode 100644 index 98e85336274..00000000000 --- a/src/licensedcode/data/rules/bsd-new_677.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_678.RULE b/src/licensedcode/data/rules/bsd-new_678.RULE index 678a61658b8..2bb26e4cd05 100644 --- a/src/licensedcode/data/rules/bsd-new_678.RULE +++ b/src/licensedcode/data/rules/bsd-new_678.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License is available under the BSD license. See the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_678.yml b/src/licensedcode/data/rules/bsd-new_678.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_678.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_679.RULE b/src/licensedcode/data/rules/bsd-new_679.RULE index 8d2b3d50166..341338c9bd3 100644 --- a/src/licensedcode/data/rules/bsd-new_679.RULE +++ b/src/licensedcode/data/rules/bsd-new_679.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + New BSD License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_679.yml b/src/licensedcode/data/rules/bsd-new_679.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_679.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_68.RULE b/src/licensedcode/data/rules/bsd-new_68.RULE index 1c99fffcc21..b68a0f0dd4e 100644 --- a/src/licensedcode/data/rules/bsd-new_68.RULE +++ b/src/licensedcode/data/rules/bsd-new_68.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_68.yml b/src/licensedcode/data/rules/bsd-new_68.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_68.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_680.RULE b/src/licensedcode/data/rules/bsd-new_680.RULE index c462d42fa15..352d9edbab8 100644 --- a/src/licensedcode/data/rules/bsd-new_680.RULE +++ b/src/licensedcode/data/rules/bsd-new_680.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Contributions will be licensed under the [3-clause BSD license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_680.yml b/src/licensedcode/data/rules/bsd-new_680.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_680.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_681.RULE b/src/licensedcode/data/rules/bsd-new_681.RULE index 0dd66252736..3aa063b9c9c 100644 --- a/src/licensedcode/data/rules/bsd-new_681.RULE +++ b/src/licensedcode/data/rules/bsd-new_681.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under the [3-clause BSD license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_681.yml b/src/licensedcode/data/rules/bsd-new_681.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_681.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_682.RULE b/src/licensedcode/data/rules/bsd-new_682.RULE index 4b49e7f3c2f..03873c5c912 100644 --- a/src/licensedcode/data/rules/bsd-new_682.RULE +++ b/src/licensedcode/data/rules/bsd-new_682.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + under the [3-clause BSD license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_682.yml b/src/licensedcode/data/rules/bsd-new_682.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_682.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_683.RULE b/src/licensedcode/data/rules/bsd-new_683.RULE index f6e41cf9d0d..af127c68dd8 100644 --- a/src/licensedcode/data/rules/bsd-new_683.RULE +++ b/src/licensedcode/data/rules/bsd-new_683.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_683.yml b/src/licensedcode/data/rules/bsd-new_683.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_683.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_684.RULE b/src/licensedcode/data/rules/bsd-new_684.RULE index 6d14faf4f3f..f324357faeb 100644 --- a/src/licensedcode/data/rules/bsd-new_684.RULE +++ b/src/licensedcode/data/rules/bsd-new_684.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_684.yml b/src/licensedcode/data/rules/bsd-new_684.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_684.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_685.RULE b/src/licensedcode/data/rules/bsd-new_685.RULE index 23fc31d519e..97ce353735a 100644 --- a/src/licensedcode/data/rules/bsd-new_685.RULE +++ b/src/licensedcode/data/rules/bsd-new_685.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + license Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/bsd-new_685.yml b/src/licensedcode/data/rules/bsd-new_685.yml deleted file mode 100644 index 86ff9df55e2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_685.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_686.RULE b/src/licensedcode/data/rules/bsd-new_686.RULE index ea99c56d1fe..1930a4058b6 100644 --- a/src/licensedcode/data/rules/bsd-new_686.RULE +++ b/src/licensedcode/data/rules/bsd-new_686.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_686.yml b/src/licensedcode/data/rules/bsd-new_686.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_686.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_687.RULE b/src/licensedcode/data/rules/bsd-new_687.RULE index 523d445d7d2..014029a9bad 100644 --- a/src/licensedcode/data/rules/bsd-new_687.RULE +++ b/src/licensedcode/data/rules/bsd-new_687.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + {{license Redistribution and use in source and binary forms}}, with or without modification, are permitted provided that the @@ -29,4 +36,4 @@ 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. +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_687.yml b/src/licensedcode/data/rules/bsd-new_687.yml deleted file mode 100644 index 4e9289a55c5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_687.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_688.RULE b/src/licensedcode/data/rules/bsd-new_688.RULE index cef1b34ae4d..9e536bbd573 100644 --- a/src/licensedcode/data/rules/bsd-new_688.RULE +++ b/src/licensedcode/data/rules/bsd-new_688.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + BSD License diff --git a/src/licensedcode/data/rules/bsd-new_688.yml b/src/licensedcode/data/rules/bsd-new_688.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_688.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_689.RULE b/src/licensedcode/data/rules/bsd-new_689.RULE index 0ac205da463..52454a5197c 100644 --- a/src/licensedcode/data/rules/bsd-new_689.RULE +++ b/src/licensedcode/data/rules/bsd-new_689.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + This is release under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_689.yml b/src/licensedcode/data/rules/bsd-new_689.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_689.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_69.RULE b/src/licensedcode/data/rules/bsd-new_69.RULE index 120dcbabe39..d617abe3fc3 100644 --- a/src/licensedcode/data/rules/bsd-new_69.RULE +++ b/src/licensedcode/data/rules/bsd-new_69.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 85 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_69.yml b/src/licensedcode/data/rules/bsd-new_69.yml deleted file mode 100644 index ef50c898bae..00000000000 --- a/src/licensedcode/data/rules/bsd-new_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_690.RULE b/src/licensedcode/data/rules/bsd-new_690.RULE index ee9e95a1677..bc9f3147e87 100644 --- a/src/licensedcode/data/rules/bsd-new_690.RULE +++ b/src/licensedcode/data/rules/bsd-new_690.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . diff --git a/src/licensedcode/data/rules/bsd-new_690.yml b/src/licensedcode/data/rules/bsd-new_690.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_690.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_691.RULE b/src/licensedcode/data/rules/bsd-new_691.RULE index 87241658b83..999044a9f45 100644 --- a/src/licensedcode/data/rules/bsd-new_691.RULE +++ b/src/licensedcode/data/rules/bsd-new_691.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_691.yml b/src/licensedcode/data/rules/bsd-new_691.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_691.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_692.RULE b/src/licensedcode/data/rules/bsd-new_692.RULE index 03612b22844..8f6c47fca1f 100644 --- a/src/licensedcode/data/rules/bsd-new_692.RULE +++ b/src/licensedcode/data/rules/bsd-new_692.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_692.yml b/src/licensedcode/data/rules/bsd-new_692.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_692.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_693.RULE b/src/licensedcode/data/rules/bsd-new_693.RULE index 833544c3f16..68ff36b2139 100644 --- a/src/licensedcode/data/rules/bsd-new_693.RULE +++ b/src/licensedcode/data/rules/bsd-new_693.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_693.yml b/src/licensedcode/data/rules/bsd-new_693.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_693.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_694.RULE b/src/licensedcode/data/rules/bsd-new_694.RULE index cadd0077a2d..8e0b6fa7206 100644 --- a/src/licensedcode/data/rules/bsd-new_694.RULE +++ b/src/licensedcode/data/rules/bsd-new_694.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_694.yml b/src/licensedcode/data/rules/bsd-new_694.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_694.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_695.RULE b/src/licensedcode/data/rules/bsd-new_695.RULE index 6aeaf78a82a..45d1462a4f9 100644 --- a/src/licensedcode/data/rules/bsd-new_695.RULE +++ b/src/licensedcode/data/rules/bsd-new_695.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 90 +notes: an odd formatting of a bsd from Adobe +--- + %Copyright: Redistribution and use in source and binary forms, with or %Copyright: without modification, are permitted provided that the %Copyright: following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_695.yml b/src/licensedcode/data/rules/bsd-new_695.yml deleted file mode 100644 index a46eb96e98d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_695.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 90 -notes: an odd formatting of a bsd from Adobe diff --git a/src/licensedcode/data/rules/bsd-new_696.RULE b/src/licensedcode/data/rules/bsd-new_696.RULE index 2cbdb228f98..1b4b532a7a8 100644 --- a/src/licensedcode/data/rules/bsd-new_696.RULE +++ b/src/licensedcode/data/rules/bsd-new_696.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Released under the BSD-style license that can be found in Go's LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_696.yml b/src/licensedcode/data/rules/bsd-new_696.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_696.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_697.RULE b/src/licensedcode/data/rules/bsd-new_697.RULE index 9e75d6a0469..9a65e98b512 100644 --- a/src/licensedcode/data/rules/bsd-new_697.RULE +++ b/src/licensedcode/data/rules/bsd-new_697.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_697.yml b/src/licensedcode/data/rules/bsd-new_697.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_697.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_698.RULE b/src/licensedcode/data/rules/bsd-new_698.RULE index 0434eb29db5..786d3be40a8 100644 --- a/src/licensedcode/data/rules/bsd-new_698.RULE +++ b/src/licensedcode/data/rules/bsd-new_698.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + Distribution of this font is governed by the following license. If you do not agree to this license, including the disclaimer, do not distribute or modify this font. diff --git a/src/licensedcode/data/rules/bsd-new_698.yml b/src/licensedcode/data/rules/bsd-new_698.yml deleted file mode 100644 index d29be7f06ee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_698.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_699.RULE b/src/licensedcode/data/rules/bsd-new_699.RULE index 73b5c6d84e1..86cafb781de 100644 --- a/src/licensedcode/data/rules/bsd-new_699.RULE +++ b/src/licensedcode/data/rules/bsd-new_699.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_699.yml b/src/licensedcode/data/rules/bsd-new_699.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_699.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_7.RULE b/src/licensedcode/data/rules/bsd-new_7.RULE index 32ccc0edce1..a8b2b2f54ac 100644 --- a/src/licensedcode/data/rules/bsd-new_7.RULE +++ b/src/licensedcode/data/rules/bsd-new_7.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_7.yml b/src/licensedcode/data/rules/bsd-new_7.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_70.RULE b/src/licensedcode/data/rules/bsd-new_70.RULE index 31a616a286f..01bc8b7eb97 100644 --- a/src/licensedcode/data/rules/bsd-new_70.RULE +++ b/src/licensedcode/data/rules/bsd-new_70.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: NASA variant +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_70.yml b/src/licensedcode/data/rules/bsd-new_70.yml deleted file mode 100644 index 712f6ae1547..00000000000 --- a/src/licensedcode/data/rules/bsd-new_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: NASA variant diff --git a/src/licensedcode/data/rules/bsd-new_700.RULE b/src/licensedcode/data/rules/bsd-new_700.RULE index 4bc1ae5578e..89ed4f61ae9 100644 --- a/src/licensedcode/data/rules/bsd-new_700.RULE +++ b/src/licensedcode/data/rules/bsd-new_700.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + The framework is free software. It is released under the terms of the following BSD License. diff --git a/src/licensedcode/data/rules/bsd-new_700.yml b/src/licensedcode/data/rules/bsd-new_700.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_700.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_701.RULE b/src/licensedcode/data/rules/bsd-new_701.RULE index 10569befe90..c3bfab64818 100644 --- a/src/licensedcode/data/rules/bsd-new_701.RULE +++ b/src/licensedcode/data/rules/bsd-new_701.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + // Redistribution and use in source and binary forms, with or without modification, are // permitted provided that the following conditions are met: // diff --git a/src/licensedcode/data/rules/bsd-new_701.yml b/src/licensedcode/data/rules/bsd-new_701.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_701.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_702.RULE b/src/licensedcode/data/rules/bsd-new_702.RULE index 97ee7437185..37afea8cdda 100644 --- a/src/licensedcode/data/rules/bsd-new_702.RULE +++ b/src/licensedcode/data/rules/bsd-new_702.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + // Redistribution and use in source and binary forms, with or without modification, are // permitted provided that the following conditions are met: // diff --git a/src/licensedcode/data/rules/bsd-new_702.yml b/src/licensedcode/data/rules/bsd-new_702.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_702.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_703.RULE b/src/licensedcode/data/rules/bsd-new_703.RULE index eb57c5ebfcf..3cdef61e707 100644 --- a/src/licensedcode/data/rules/bsd-new_703.RULE +++ b/src/licensedcode/data/rules/bsd-new_703.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed under the BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_703.yml b/src/licensedcode/data/rules/bsd-new_703.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_703.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_704.RULE b/src/licensedcode/data/rules/bsd-new_704.RULE index f6a73f5fe0c..03406647141 100644 --- a/src/licensedcode/data/rules/bsd-new_704.RULE +++ b/src/licensedcode/data/rules/bsd-new_704.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: reported by Luis Villa +--- + BSD 3-Clause license; see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_704.yml b/src/licensedcode/data/rules/bsd-new_704.yml deleted file mode 100644 index 791ad276fac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_704.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: reported by Luis Villa diff --git a/src/licensedcode/data/rules/bsd-new_705.RULE b/src/licensedcode/data/rules/bsd-new_705.RULE index e4ef4155e88..3ef54ddf3fd 100644 --- a/src/licensedcode/data/rules/bsd-new_705.RULE +++ b/src/licensedcode/data/rules/bsd-new_705.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + Berkeley-style Licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_705.yml b/src/licensedcode/data/rules/bsd-new_705.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_705.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_706.RULE b/src/licensedcode/data/rules/bsd-new_706.RULE index c2ceed8de28..4991d66af4d 100644 --- a/src/licensedcode/data/rules/bsd-new_706.RULE +++ b/src/licensedcode/data/rules/bsd-new_706.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + 3-Clause BSD License (the revised BSD license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_706.yml b/src/licensedcode/data/rules/bsd-new_706.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_706.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_707.RULE b/src/licensedcode/data/rules/bsd-new_707.RULE index b1a9014e81f..6da78cdda29 100644 --- a/src/licensedcode/data/rules/bsd-new_707.RULE +++ b/src/licensedcode/data/rules/bsd-new_707.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + (the revised BSD license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_707.yml b/src/licensedcode/data/rules/bsd-new_707.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_707.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_708.RULE b/src/licensedcode/data/rules/bsd-new_708.RULE index d4a2f06d414..af83c027b15 100644 --- a/src/licensedcode/data/rules/bsd-new_708.RULE +++ b/src/licensedcode/data/rules/bsd-new_708.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + revised BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_708.yml b/src/licensedcode/data/rules/bsd-new_708.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_708.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_709.RULE b/src/licensedcode/data/rules/bsd-new_709.RULE index b4c39a52399..143060ded85 100644 --- a/src/licensedcode/data/rules/bsd-new_709.RULE +++ b/src/licensedcode/data/rules/bsd-new_709.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSED.BSD +--- + * This program is licensed under the BSD license, read LICENSE.BSD * for further information \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_709.yml b/src/licensedcode/data/rules/bsd-new_709.yml deleted file mode 100644 index 6eeb424a7de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_709.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSED.BSD diff --git a/src/licensedcode/data/rules/bsd-new_71.RULE b/src/licensedcode/data/rules/bsd-new_71.RULE index f3361c3b3f9..a2ef280255b 100644 --- a/src/licensedcode/data/rules/bsd-new_71.RULE +++ b/src/licensedcode/data/rules/bsd-new_71.RULE @@ -1 +1,10 @@ -License: BSD (see docs/LICENSE for details) +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +referenced_filenames: + - docs/LICENSE +notes: very short mention +--- + +License: BSD (see docs/LICENSE for details) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_71.yml b/src/licensedcode/data/rules/bsd-new_71.yml deleted file mode 100644 index 8b1db5bfbab..00000000000 --- a/src/licensedcode/data/rules/bsd-new_71.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -referenced_filenames: - - docs/LICENSE -notes: very short mention diff --git a/src/licensedcode/data/rules/bsd-new_710.RULE b/src/licensedcode/data/rules/bsd-new_710.RULE index c00c477834f..a8275ec5308 100644 --- a/src/licensedcode/data/rules/bsd-new_710.RULE +++ b/src/licensedcode/data/rules/bsd-new_710.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + BSD license without advertising clause. (see http://www.opensource.org/licenses/bsd-license.php for further details) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_710.yml b/src/licensedcode/data/rules/bsd-new_710.yml deleted file mode 100644 index 9179a28ecea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_710.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_711.RULE b/src/licensedcode/data/rules/bsd-new_711.RULE index 7447b4e0ff4..c3f277e0917 100644 --- a/src/licensedcode/data/rules/bsd-new_711.RULE +++ b/src/licensedcode/data/rules/bsd-new_711.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + which is released under the Revised BSD License # See file LICENSE for full license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_711.yml b/src/licensedcode/data/rules/bsd-new_711.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_711.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_712.RULE b/src/licensedcode/data/rules/bsd-new_712.RULE index 6a6891912b5..48afc13b236 100644 --- a/src/licensedcode/data/rules/bsd-new_712.RULE +++ b/src/licensedcode/data/rules/bsd-new_712.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_712.yml b/src/licensedcode/data/rules/bsd-new_712.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_712.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_713.RULE b/src/licensedcode/data/rules/bsd-new_713.RULE index fcac9f3ed40..b6cba81061b 100644 --- a/src/licensedcode/data/rules/bsd-new_713.RULE +++ b/src/licensedcode/data/rules/bsd-new_713.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is licensed under the BSD 3-clause “New” or “Revised”. License See LICENSE for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_713.yml b/src/licensedcode/data/rules/bsd-new_713.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_713.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_714.RULE b/src/licensedcode/data/rules/bsd-new_714.RULE index 7ceef777f76..786d19a7c3d 100644 --- a/src/licensedcode/data/rules/bsd-new_714.RULE +++ b/src/licensedcode/data/rules/bsd-new_714.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + (This is the OSI approved 3-clause "New BSD License".) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_714.yml b/src/licensedcode/data/rules/bsd-new_714.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_714.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_715.RULE b/src/licensedcode/data/rules/bsd-new_715.RULE index 5988d43e737..294231552fd 100644 --- a/src/licensedcode/data/rules/bsd-new_715.RULE +++ b/src/licensedcode/data/rules/bsd-new_715.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + OSI approved 3-clause "New BSD License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_715.yml b/src/licensedcode/data/rules/bsd-new_715.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_715.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_716.RULE b/src/licensedcode/data/rules/bsd-new_716.RULE index 8ec62bb2e0b..924cadd65db 100644 --- a/src/licensedcode/data/rules/bsd-new_716.RULE +++ b/src/licensedcode/data/rules/bsd-new_716.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + 3-clause "New BSD License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_716.yml b/src/licensedcode/data/rules/bsd-new_716.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_716.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_717.RULE b/src/licensedcode/data/rules/bsd-new_717.RULE index 50d0a5373a0..e51828a257b 100644 --- a/src/licensedcode/data/rules/bsd-new_717.RULE +++ b/src/licensedcode/data/rules/bsd-new_717.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under BSD-like 3-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_717.yml b/src/licensedcode/data/rules/bsd-new_717.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_717.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_718.RULE b/src/licensedcode/data/rules/bsd-new_718.RULE index d44411a2362..d874ae09c42 100644 --- a/src/licensedcode/data/rules/bsd-new_718.RULE +++ b/src/licensedcode/data/rules/bsd-new_718.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_718.yml b/src/licensedcode/data/rules/bsd-new_718.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_718.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_719.RULE b/src/licensedcode/data/rules/bsd-new_719.RULE index e890d7f5826..6d48cfa9f86 100644 --- a/src/licensedcode/data/rules/bsd-new_719.RULE +++ b/src/licensedcode/data/rules/bsd-new_719.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed BSD-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_719.yml b/src/licensedcode/data/rules/bsd-new_719.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_719.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_72.RULE b/src/licensedcode/data/rules/bsd-new_72.RULE index 93a396a393d..4b77f1b3127 100644 --- a/src/licensedcode/data/rules/bsd-new_72.RULE +++ b/src/licensedcode/data/rules/bsd-new_72.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. @@ -18,4 +23,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_72.yml b/src/licensedcode/data/rules/bsd-new_72.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_72.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_720.RULE b/src/licensedcode/data/rules/bsd-new_720.RULE index daa416fb5b7..99c248f25d8 100644 --- a/src/licensedcode/data/rules/bsd-new_720.RULE +++ b/src/licensedcode/data/rules/bsd-new_720.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + /* This code is originally from Tor. Used with permission. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_720.yml b/src/licensedcode/data/rules/bsd-new_720.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_720.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_721.RULE b/src/licensedcode/data/rules/bsd-new_721.RULE index 67882463b00..bf67171175d 100644 --- a/src/licensedcode/data/rules/bsd-new_721.RULE +++ b/src/licensedcode/data/rules/bsd-new_721.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Tor is distributed under the "3-clause BSD" license, a commonly used software license that means Tor is both free software and open source: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_721.yml b/src/licensedcode/data/rules/bsd-new_721.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_721.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_722.RULE b/src/licensedcode/data/rules/bsd-new_722.RULE index 4a65abbd93e..522dca2a11f 100644 --- a/src/licensedcode/data/rules/bsd-new_722.RULE +++ b/src/licensedcode/data/rules/bsd-new_722.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +notes: See https://github.com/nexB/scancode-toolkit/issues/2171 +--- + # This software may be modified and distributed under the terms # of the BSD license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_722.yml b/src/licensedcode/data/rules/bsd-new_722.yml deleted file mode 100644 index 9136d165ec0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_722.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 80 -referenced_filenames: - - LICENSE -notes: See https://github.com/nexB/scancode-toolkit/issues/2171 diff --git a/src/licensedcode/data/rules/bsd-new_723.RULE b/src/licensedcode/data/rules/bsd-new_723.RULE index 93bc879bcb9..27542385617 100644 --- a/src/licensedcode/data/rules/bsd-new_723.RULE +++ b/src/licensedcode/data/rules/bsd-new_723.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +notes: See https://github.com/nexB/scancode-toolkit/issues/2171 +--- + # This software may be modified and distributed under the terms # of the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_723.yml b/src/licensedcode/data/rules/bsd-new_723.yml deleted file mode 100644 index 3fcb14a0041..00000000000 --- a/src/licensedcode/data/rules/bsd-new_723.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -notes: See https://github.com/nexB/scancode-toolkit/issues/2171 diff --git a/src/licensedcode/data/rules/bsd-new_724.RULE b/src/licensedcode/data/rules/bsd-new_724.RULE index ce60e2a8d6a..6691a283df1 100644 --- a/src/licensedcode/data/rules/bsd-new_724.RULE +++ b/src/licensedcode/data/rules/bsd-new_724.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING +--- + * This software may be modified and distributed under the terms of * a BSD-style license. See the COPYING file in the package base * directory for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_724.yml b/src/licensedcode/data/rules/bsd-new_724.yml deleted file mode 100644 index fc53b599889..00000000000 --- a/src/licensedcode/data/rules/bsd-new_724.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_725.RULE b/src/licensedcode/data/rules/bsd-new_725.RULE index 1f2b20388b8..7d24e3d4888 100644 --- a/src/licensedcode/data/rules/bsd-new_725.RULE +++ b/src/licensedcode/data/rules/bsd-new_725.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + * This software may be modified and distributed under the terms of * a BSD-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_725.yml b/src/licensedcode/data/rules/bsd-new_725.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_725.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_726.RULE b/src/licensedcode/data/rules/bsd-new_726.RULE index fc124e6b188..2df62d5ad0f 100644 --- a/src/licensedcode/data/rules/bsd-new_726.RULE +++ b/src/licensedcode/data/rules/bsd-new_726.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.txt +--- + * This software may be modified and distributed under the terms * of the BSD license. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_726.yml b/src/licensedcode/data/rules/bsd-new_726.yml deleted file mode 100644 index f8fd8d4728c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_726.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_727.RULE b/src/licensedcode/data/rules/bsd-new_727.RULE index 598b6d7356a..a7afd1157a6 100644 --- a/src/licensedcode/data/rules/bsd-new_727.RULE +++ b/src/licensedcode/data/rules/bsd-new_727.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * This software may be modified and distributed under the terms * of the BSD 3-clause license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_727.yml b/src/licensedcode/data/rules/bsd-new_727.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_727.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_728.RULE b/src/licensedcode/data/rules/bsd-new_728.RULE index 978f2e54acc..9c3713c7419 100644 --- a/src/licensedcode/data/rules/bsd-new_728.RULE +++ b/src/licensedcode/data/rules/bsd-new_728.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * This software may be modified and distributed under the terms * of the 3-clause BSD license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_728.yml b/src/licensedcode/data/rules/bsd-new_728.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_728.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_729.RULE b/src/licensedcode/data/rules/bsd-new_729.RULE index 7cd6cdd5951..d30791a145f 100644 --- a/src/licensedcode/data/rules/bsd-new_729.RULE +++ b/src/licensedcode/data/rules/bsd-new_729.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + * This software may be modified and distributed under the terms * of the BSD 3-Clause license. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_729.yml b/src/licensedcode/data/rules/bsd-new_729.yml deleted file mode 100644 index 9eae0edd739..00000000000 --- a/src/licensedcode/data/rules/bsd-new_729.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_73.RULE b/src/licensedcode/data/rules/bsd-new_73.RULE index 44690261c9e..66605ff3388 100644 --- a/src/licensedcode/data/rules/bsd-new_73.RULE +++ b/src/licensedcode/data/rules/bsd-new_73.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_73.yml b/src/licensedcode/data/rules/bsd-new_73.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_73.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_730.RULE b/src/licensedcode/data/rules/bsd-new_730.RULE index 4b28a79aa3e..c037a28f12c 100644 --- a/src/licensedcode/data/rules/bsd-new_730.RULE +++ b/src/licensedcode/data/rules/bsd-new_730.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + # This software may be modified and distributed under the terms of the # BSD-3-Clause license. See the accompanying LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_730.yml b/src/licensedcode/data/rules/bsd-new_730.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_730.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_731.RULE b/src/licensedcode/data/rules/bsd-new_731.RULE index 3eb50e35072..b52a0d11c53 100644 --- a/src/licensedcode/data/rules/bsd-new_731.RULE +++ b/src/licensedcode/data/rules/bsd-new_731.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + BSD License This section pertains to the “three-clause” or “new” BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_731.yml b/src/licensedcode/data/rules/bsd-new_731.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_731.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_732.RULE b/src/licensedcode/data/rules/bsd-new_732.RULE index c8d18ddf408..465ec92c86a 100644 --- a/src/licensedcode/data/rules/bsd-new_732.RULE +++ b/src/licensedcode/data/rules/bsd-new_732.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + * 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 diff --git a/src/licensedcode/data/rules/bsd-new_732.yml b/src/licensedcode/data/rules/bsd-new_732.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_732.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_733.RULE b/src/licensedcode/data/rules/bsd-new_733.RULE index fed943fc5af..db84d3f6482 100644 --- a/src/licensedcode/data/rules/bsd-new_733.RULE +++ b/src/licensedcode/data/rules/bsd-new_733.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + * 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 diff --git a/src/licensedcode/data/rules/bsd-new_733.yml b/src/licensedcode/data/rules/bsd-new_733.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_733.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_734.RULE b/src/licensedcode/data/rules/bsd-new_734.RULE index 2314d1c7df8..244ca5cbe4f 100644 --- a/src/licensedcode/data/rules/bsd-new_734.RULE +++ b/src/licensedcode/data/rules/bsd-new_734.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 96 +--- + BSD License Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_734.yml b/src/licensedcode/data/rules/bsd-new_734.yml deleted file mode 100644 index 4ad43a31b61..00000000000 --- a/src/licensedcode/data/rules/bsd-new_734.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 96 diff --git a/src/licensedcode/data/rules/bsd-new_735.RULE b/src/licensedcode/data/rules/bsd-new_735.RULE index 54fa2d4b31d..a073c08e62d 100644 --- a/src/licensedcode/data/rules/bsd-new_735.RULE +++ b/src/licensedcode/data/rules/bsd-new_735.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + Licensed under a 3-clause BSD style license - see LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_735.yml b/src/licensedcode/data/rules/bsd-new_735.yml deleted file mode 100644 index da51bf4d915..00000000000 --- a/src/licensedcode/data/rules/bsd-new_735.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/bsd-new_736.RULE b/src/licensedcode/data/rules/bsd-new_736.RULE index 6cbd726411d..46e0257c855 100644 --- a/src/licensedcode/data/rules/bsd-new_736.RULE +++ b/src/licensedcode/data/rules/bsd-new_736.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 80 +--- + License: BSD derived \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_736.yml b/src/licensedcode/data/rules/bsd-new_736.yml deleted file mode 100644 index 40d734736e2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_736.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/bsd-new_737.RULE b/src/licensedcode/data/rules/bsd-new_737.RULE index be31c5de8a1..e159ae1e33f 100644 --- a/src/licensedcode/data/rules/bsd-new_737.RULE +++ b/src/licensedcode/data/rules/bsd-new_737.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Licensed under a 3-clause BSD style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_737.yml b/src/licensedcode/data/rules/bsd-new_737.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_737.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_738.RULE b/src/licensedcode/data/rules/bsd-new_738.RULE index b0ea10bbd01..c12a8206e62 100644 --- a/src/licensedcode/data/rules/bsd-new_738.RULE +++ b/src/licensedcode/data/rules/bsd-new_738.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Release is covered under the terms of the Eclipse Distribution License v. 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_738.yml b/src/licensedcode/data/rules/bsd-new_738.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_738.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_739.RULE b/src/licensedcode/data/rules/bsd-new_739.RULE index 1e24112029e..00d3ede490f 100644 --- a/src/licensedcode/data/rules/bsd-new_739.RULE +++ b/src/licensedcode/data/rules/bsd-new_739.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, is reproduced below, and is diff --git a/src/licensedcode/data/rules/bsd-new_739.yml b/src/licensedcode/data/rules/bsd-new_739.yml deleted file mode 100644 index a0fc1ccbfbb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_739.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_74.RULE b/src/licensedcode/data/rules/bsd-new_74.RULE index a4d3ab2b04c..8e78791816b 100644 --- a/src/licensedcode/data/rules/bsd-new_74.RULE +++ b/src/licensedcode/data/rules/bsd-new_74.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Redistribution and use in source and binary forms of the software as well as documentation, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_74.yml b/src/licensedcode/data/rules/bsd-new_74.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_740.RULE b/src/licensedcode/data/rules/bsd-new_740.RULE index 8bcd17914b4..9f3dd088ae4 100644 --- a/src/licensedcode/data/rules/bsd-new_740.RULE +++ b/src/licensedcode/data/rules/bsd-new_740.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, is reproduced below, and is diff --git a/src/licensedcode/data/rules/bsd-new_740.yml b/src/licensedcode/data/rules/bsd-new_740.yml deleted file mode 100644 index 75fe5f313e4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_740.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_741.RULE b/src/licensedcode/data/rules/bsd-new_741.RULE index 57250b5b08d..4855e5189ad 100644 --- a/src/licensedcode/data/rules/bsd-new_741.RULE +++ b/src/licensedcode/data/rules/bsd-new_741.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.html +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/bsd-new_741.yml b/src/licensedcode/data/rules/bsd-new_741.yml deleted file mode 100644 index 31469bcbf49..00000000000 --- a/src/licensedcode/data/rules/bsd-new_741.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_742.RULE b/src/licensedcode/data/rules/bsd-new_742.RULE index 90c21276857..713c3585f4c 100644 --- a/src/licensedcode/data/rules/bsd-new_742.RULE +++ b/src/licensedcode/data/rules/bsd-new_742.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.html +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/bsd-new_742.yml b/src/licensedcode/data/rules/bsd-new_742.yml deleted file mode 100644 index 72dd6c8d162..00000000000 --- a/src/licensedcode/data/rules/bsd-new_742.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_743.RULE b/src/licensedcode/data/rules/bsd-new_743.RULE index bd83c53155d..a036a0a8b4b 100644 --- a/src/licensedcode/data/rules/bsd-new_743.RULE +++ b/src/licensedcode/data/rules/bsd-new_743.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.php +--- + License: EDL-1 This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which diff --git a/src/licensedcode/data/rules/bsd-new_743.yml b/src/licensedcode/data/rules/bsd-new_743.yml deleted file mode 100644 index a0fc1ccbfbb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_743.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_744.RULE b/src/licensedcode/data/rules/bsd-new_744.RULE index bbe81b8360e..aafec760925 100644 --- a/src/licensedcode/data/rules/bsd-new_744.RULE +++ b/src/licensedcode/data/rules/bsd-new_744.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.php +--- + License: EDL-1 This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v1.0 which diff --git a/src/licensedcode/data/rules/bsd-new_744.yml b/src/licensedcode/data/rules/bsd-new_744.yml deleted file mode 100644 index 75fe5f313e4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_744.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_745.RULE b/src/licensedcode/data/rules/bsd-new_745.RULE index d8ec60e9d83..bf619974c62 100644 --- a/src/licensedcode/data/rules/bsd-new_745.RULE +++ b/src/licensedcode/data/rules/bsd-new_745.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.html +--- + https://www.eclipse.org/org/documents/edl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_745.yml b/src/licensedcode/data/rules/bsd-new_745.yml deleted file mode 100644 index 5a380c0b380..00000000000 --- a/src/licensedcode/data/rules/bsd-new_745.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_746.RULE b/src/licensedcode/data/rules/bsd-new_746.RULE index 2f40ce65ad4..fdb6efdb3ba 100644 --- a/src/licensedcode/data/rules/bsd-new_746.RULE +++ b/src/licensedcode/data/rules/bsd-new_746.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + https://.eclipse.org/org/documents/edl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_746.yml b/src/licensedcode/data/rules/bsd-new_746.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_746.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_747.RULE b/src/licensedcode/data/rules/bsd-new_747.RULE index 0c12f919636..d821b62d924 100644 --- a/src/licensedcode/data/rules/bsd-new_747.RULE +++ b/src/licensedcode/data/rules/bsd-new_747.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + https://.eclipse.org/org/documents/edl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_747.yml b/src/licensedcode/data/rules/bsd-new_747.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_747.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_748.RULE b/src/licensedcode/data/rules/bsd-new_748.RULE index a8150ba3856..ffa9fef5ccb 100644 --- a/src/licensedcode/data/rules/bsd-new_748.RULE +++ b/src/licensedcode/data/rules/bsd-new_748.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + http://.eclipse.org/org/documents/edl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_748.yml b/src/licensedcode/data/rules/bsd-new_748.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_748.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_749.RULE b/src/licensedcode/data/rules/bsd-new_749.RULE index af92bd47b7e..580da273734 100644 --- a/src/licensedcode/data/rules/bsd-new_749.RULE +++ b/src/licensedcode/data/rules/bsd-new_749.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + http://.eclipse.org/org/documents/edl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_749.yml b/src/licensedcode/data/rules/bsd-new_749.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_749.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_75.RULE b/src/licensedcode/data/rules/bsd-new_75.RULE index aea347049ea..a09f757b90a 100644 --- a/src/licensedcode/data/rules/bsd-new_75.RULE +++ b/src/licensedcode/data/rules/bsd-new_75.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_75.yml b/src/licensedcode/data/rules/bsd-new_75.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_75.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_750.RULE b/src/licensedcode/data/rules/bsd-new_750.RULE index 002fe3b0bbe..f1b9e7acf33 100644 --- a/src/licensedcode/data/rules/bsd-new_750.RULE +++ b/src/licensedcode/data/rules/bsd-new_750.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + eclipse.org/org/documents/edl-v10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_750.yml b/src/licensedcode/data/rules/bsd-new_750.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_750.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_751.RULE b/src/licensedcode/data/rules/bsd-new_751.RULE index 61d47d903cc..0704c5dc6b3 100644 --- a/src/licensedcode/data/rules/bsd-new_751.RULE +++ b/src/licensedcode/data/rules/bsd-new_751.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + License: EDL-1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_751.yml b/src/licensedcode/data/rules/bsd-new_751.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_751.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_752.RULE b/src/licensedcode/data/rules/bsd-new_752.RULE index 742b6d930f0..5d9b0087dce 100644 --- a/src/licensedcode/data/rules/bsd-new_752.RULE +++ b/src/licensedcode/data/rules/bsd-new_752.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_752.yml b/src/licensedcode/data/rules/bsd-new_752.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_752.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_753.RULE b/src/licensedcode/data/rules/bsd-new_753.RULE index cd9987f0327..0ef31195dd5 100644 --- a/src/licensedcode/data/rules/bsd-new_753.RULE +++ b/src/licensedcode/data/rules/bsd-new_753.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - LICENSE.txt +notes: seen in cpuinfo.py +--- + Permission to use, modify, and distribute this software is given under the terms of the NumPy (BSD style) license. See LICENSE.txt that came with this distribution for specifics. diff --git a/src/licensedcode/data/rules/bsd-new_753.yml b/src/licensedcode/data/rules/bsd-new_753.yml deleted file mode 100644 index 875cfefd8cd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_753.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - LICENSE.txt -notes: seen in cpuinfo.py diff --git a/src/licensedcode/data/rules/bsd-new_754.RULE b/src/licensedcode/data/rules/bsd-new_754.RULE index 979e2a21581..36af703ae24 100644 --- a/src/licensedcode/data/rules/bsd-new_754.RULE +++ b/src/licensedcode/data/rules/bsd-new_754.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: seen in cpuinfo.py +--- + Permission to use, modify, and distribute this software is given under the terms of the NumPy License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_754.yml b/src/licensedcode/data/rules/bsd-new_754.yml deleted file mode 100644 index 982b5a5eceb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_754.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: seen in cpuinfo.py diff --git a/src/licensedcode/data/rules/bsd-new_755.RULE b/src/licensedcode/data/rules/bsd-new_755.RULE index d3717e8b7e9..846273edd59 100644 --- a/src/licensedcode/data/rules/bsd-new_755.RULE +++ b/src/licensedcode/data/rules/bsd-new_755.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: seen in cpuinfo.py +--- + Permission to use, modify, and distribute this software is given under the terms of the NumPy License. diff --git a/src/licensedcode/data/rules/bsd-new_755.yml b/src/licensedcode/data/rules/bsd-new_755.yml deleted file mode 100644 index 982b5a5eceb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_755.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: seen in cpuinfo.py diff --git a/src/licensedcode/data/rules/bsd-new_756.RULE b/src/licensedcode/data/rules/bsd-new_756.RULE index 43ecf72b263..8bd5332211e 100644 --- a/src/licensedcode/data/rules/bsd-new_756.RULE +++ b/src/licensedcode/data/rules/bsd-new_756.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - LICENSE.txt +notes: seen in cpuinfo.py +--- + Permission to use, modify, and distribute this software is given under the terms of the NumPy (BSD style) license. See LICENSE.txt that came with this distribution for specifics. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_756.yml b/src/licensedcode/data/rules/bsd-new_756.yml deleted file mode 100644 index 875cfefd8cd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_756.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - LICENSE.txt -notes: seen in cpuinfo.py diff --git a/src/licensedcode/data/rules/bsd-new_757.RULE b/src/licensedcode/data/rules/bsd-new_757.RULE index c5862a6e437..636074ed21e 100644 --- a/src/licensedcode/data/rules/bsd-new_757.RULE +++ b/src/licensedcode/data/rules/bsd-new_757.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_757.yml b/src/licensedcode/data/rules/bsd-new_757.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_757.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_758.RULE b/src/licensedcode/data/rules/bsd-new_758.RULE index 90b9afc02d3..d8b380310e1 100644 --- a/src/licensedcode/data/rules/bsd-new_758.RULE +++ b/src/licensedcode/data/rules/bsd-new_758.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_758.yml b/src/licensedcode/data/rules/bsd-new_758.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_758.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_759.RULE b/src/licensedcode/data/rules/bsd-new_759.RULE index c26839fe861..1b06747f65b 100644 --- a/src/licensedcode/data/rules/bsd-new_759.RULE +++ b/src/licensedcode/data/rules/bsd-new_759.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v. 1.0, which is available at https://www.eclipse.org/org/documents/edl-v10.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_759.yml b/src/licensedcode/data/rules/bsd-new_759.yml deleted file mode 100644 index 75fe5f313e4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_759.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_76.RULE b/src/licensedcode/data/rules/bsd-new_76.RULE index c3fc7b966aa..f3c94d99166 100644 --- a/src/licensedcode/data/rules/bsd-new_76.RULE +++ b/src/licensedcode/data/rules/bsd-new_76.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -18,4 +23,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_76.yml b/src/licensedcode/data/rules/bsd-new_76.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_76.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_760.RULE b/src/licensedcode/data/rules/bsd-new_760.RULE index 5d9a2d53e23..0437f5fb6b9 100644 --- a/src/licensedcode/data/rules/bsd-new_760.RULE +++ b/src/licensedcode/data/rules/bsd-new_760.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.html +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v. 1.0, which is available at http://www.eclipse.org/org/documents/edl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_760.yml b/src/licensedcode/data/rules/bsd-new_760.yml deleted file mode 100644 index 31469bcbf49..00000000000 --- a/src/licensedcode/data/rules/bsd-new_760.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_761.RULE b/src/licensedcode/data/rules/bsd-new_761.RULE index fd0dc10deb1..86d7a050601 100644 --- a/src/licensedcode/data/rules/bsd-new_761.RULE +++ b/src/licensedcode/data/rules/bsd-new_761.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.html +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v. 1.0, which is available at https://www.eclipse.org/org/documents/edl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_761.yml b/src/licensedcode/data/rules/bsd-new_761.yml deleted file mode 100644 index 72dd6c8d162..00000000000 --- a/src/licensedcode/data/rules/bsd-new_761.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_762.RULE b/src/licensedcode/data/rules/bsd-new_762.RULE index f88d44a20bd..69f70d4702b 100644 --- a/src/licensedcode/data/rules/bsd-new_762.RULE +++ b/src/licensedcode/data/rules/bsd-new_762.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + component licensed under the BSL-3CL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_762.yml b/src/licensedcode/data/rules/bsd-new_762.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_762.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_763.RULE b/src/licensedcode/data/rules/bsd-new_763.RULE index 1100ab8d2ef..196b1873204 100644 --- a/src/licensedcode/data/rules/bsd-new_763.RULE +++ b/src/licensedcode/data/rules/bsd-new_763.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the BSD-3-Clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_763.yml b/src/licensedcode/data/rules/bsd-new_763.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_763.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_764.RULE b/src/licensedcode/data/rules/bsd-new_764.RULE index a55485b8c43..7490d978ab3 100644 --- a/src/licensedcode/data/rules/bsd-new_764.RULE +++ b/src/licensedcode/data/rules/bsd-new_764.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + BSD-3CL licensed file \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_764.yml b/src/licensedcode/data/rules/bsd-new_764.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_764.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_765.RULE b/src/licensedcode/data/rules/bsd-new_765.RULE index fda5ccfcd77..e2a64356ae3 100644 --- a/src/licensedcode/data/rules/bsd-new_765.RULE +++ b/src/licensedcode/data/rules/bsd-new_765.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + under the BSD-3CL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_765.yml b/src/licensedcode/data/rules/bsd-new_765.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_765.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_766.RULE b/src/licensedcode/data/rules/bsd-new_766.RULE index 492abd11329..f575b6ff6cd 100644 --- a/src/licensedcode/data/rules/bsd-new_766.RULE +++ b/src/licensedcode/data/rules/bsd-new_766.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + Licence: BSD-3cl \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_766.yml b/src/licensedcode/data/rules/bsd-new_766.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_766.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_767.RULE b/src/licensedcode/data/rules/bsd-new_767.RULE index ba31e5c5a71..b5e313e2305 100644 --- a/src/licensedcode/data/rules/bsd-new_767.RULE +++ b/src/licensedcode/data/rules/bsd-new_767.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + License: BSD-3cl \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_767.yml b/src/licensedcode/data/rules/bsd-new_767.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_767.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_768.RULE b/src/licensedcode/data/rules/bsd-new_768.RULE index 9e8d8580f89..d68198e272d 100644 --- a/src/licensedcode/data/rules/bsd-new_768.RULE +++ b/src/licensedcode/data/rules/bsd-new_768.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://directory.fsf.org/wiki/License:BSD_3Clause +--- + Licence: [BSD-3cl](http://directory.fsf.org/wiki/License:BSD_3Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_768.yml b/src/licensedcode/data/rules/bsd-new_768.yml deleted file mode 100644 index 69b410e1c30..00000000000 --- a/src/licensedcode/data/rules/bsd-new_768.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://directory.fsf.org/wiki/License:BSD_3Clause diff --git a/src/licensedcode/data/rules/bsd-new_769.RULE b/src/licensedcode/data/rules/bsd-new_769.RULE index 66c66c8fe4f..1e983d7358a 100644 --- a/src/licensedcode/data/rules/bsd-new_769.RULE +++ b/src/licensedcode/data/rules/bsd-new_769.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://directory.fsf.org/wiki/License:BSD_3Clause +--- + License: [BSD-3cl](http://directory.fsf.org/wiki/License:BSD_3Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_769.yml b/src/licensedcode/data/rules/bsd-new_769.yml deleted file mode 100644 index 69b410e1c30..00000000000 --- a/src/licensedcode/data/rules/bsd-new_769.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://directory.fsf.org/wiki/License:BSD_3Clause diff --git a/src/licensedcode/data/rules/bsd-new_77.RULE b/src/licensedcode/data/rules/bsd-new_77.RULE index 5ce48bdd6c8..577341d67a6 100644 --- a/src/licensedcode/data/rules/bsd-new_77.RULE +++ b/src/licensedcode/data/rules/bsd-new_77.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_77.yml b/src/licensedcode/data/rules/bsd-new_77.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_77.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_770.RULE b/src/licensedcode/data/rules/bsd-new_770.RULE index 19b82899dca..6dfba100694 100644 --- a/src/licensedcode/data/rules/bsd-new_770.RULE +++ b/src/licensedcode/data/rules/bsd-new_770.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://directory.fsf.org/wiki/License:BSD_3Clause +--- + [BSD-3cl](http://directory.fsf.org/wiki/License:BSD_3Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_770.yml b/src/licensedcode/data/rules/bsd-new_770.yml deleted file mode 100644 index e90859236b2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_770.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://directory.fsf.org/wiki/License:BSD_3Clause diff --git a/src/licensedcode/data/rules/bsd-new_771.RULE b/src/licensedcode/data/rules/bsd-new_771.RULE index 95f51ad2c52..0603fef1ac0 100644 --- a/src/licensedcode/data/rules/bsd-new_771.RULE +++ b/src/licensedcode/data/rules/bsd-new_771.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://directory.fsf.org/wiki/License:BSD_3Clause +--- + http://directory.fsf.org/wiki/License:BSD_3Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_771.yml b/src/licensedcode/data/rules/bsd-new_771.yml deleted file mode 100644 index e90859236b2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_771.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://directory.fsf.org/wiki/License:BSD_3Clause diff --git a/src/licensedcode/data/rules/bsd-new_772.RULE b/src/licensedcode/data/rules/bsd-new_772.RULE index 616b4a09a55..705e84846bb 100644 --- a/src/licensedcode/data/rules/bsd-new_772.RULE +++ b/src/licensedcode/data/rules/bsd-new_772.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + under the BSD 3cl licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_772.yml b/src/licensedcode/data/rules/bsd-new_772.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_772.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_773.RULE b/src/licensedcode/data/rules/bsd-new_773.RULE index a999d2b36bd..96f2fdadbc6 100644 --- a/src/licensedcode/data/rules/bsd-new_773.RULE +++ b/src/licensedcode/data/rules/bsd-new_773.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + BSD (3cl.) licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_773.yml b/src/licensedcode/data/rules/bsd-new_773.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_773.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_774.RULE b/src/licensedcode/data/rules/bsd-new_774.RULE index 41076d82e55..05371fb7e5e 100644 --- a/src/licensedcode/data/rules/bsd-new_774.RULE +++ b/src/licensedcode/data/rules/bsd-new_774.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +referenced_filenames: + - COPYING +--- + License BSD (See COPYING) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_774.yml b/src/licensedcode/data/rules/bsd-new_774.yml deleted file mode 100644 index d17846e0e73..00000000000 --- a/src/licensedcode/data/rules/bsd-new_774.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_775.RULE b/src/licensedcode/data/rules/bsd-new_775.RULE index bd63958f14e..223f3660605 100644 --- a/src/licensedcode/data/rules/bsd-new_775.RULE +++ b/src/licensedcode/data/rules/bsd-new_775.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Copyright.txt +ignorable_urls: + - https://cmake.org/licensing +--- + Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_775.yml b/src/licensedcode/data/rules/bsd-new_775.yml deleted file mode 100644 index 0e2ff88fb2a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_775.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - Copyright.txt -ignorable_urls: - - https://cmake.org/licensing diff --git a/src/licensedcode/data/rules/bsd-new_776.RULE b/src/licensedcode/data/rules/bsd-new_776.RULE index 5061430404b..a9ff71159aa 100644 --- a/src/licensedcode/data/rules/bsd-new_776.RULE +++ b/src/licensedcode/data/rules/bsd-new_776.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Copyright.txt +ignorable_urls: + - https://cmake.org/licensing +--- + Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. diff --git a/src/licensedcode/data/rules/bsd-new_776.yml b/src/licensedcode/data/rules/bsd-new_776.yml deleted file mode 100644 index 0e2ff88fb2a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_776.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - Copyright.txt -ignorable_urls: - - https://cmake.org/licensing diff --git a/src/licensedcode/data/rules/bsd-new_777.RULE b/src/licensedcode/data/rules/bsd-new_777.RULE index 7821fd46aa7..5c3651c128c 100644 --- a/src/licensedcode/data/rules/bsd-new_777.RULE +++ b/src/licensedcode/data/rules/bsd-new_777.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Copyright.txt +--- + Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_777.yml b/src/licensedcode/data/rules/bsd-new_777.yml deleted file mode 100644 index cdf9cc909f8..00000000000 --- a/src/licensedcode/data/rules/bsd-new_777.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - Copyright.txt diff --git a/src/licensedcode/data/rules/bsd-new_778.RULE b/src/licensedcode/data/rules/bsd-new_778.RULE index ba0d7d4e347..aef91f5d67a 100644 --- a/src/licensedcode/data/rules/bsd-new_778.RULE +++ b/src/licensedcode/data/rules/bsd-new_778.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_778.yml b/src/licensedcode/data/rules/bsd-new_778.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_778.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_779.RULE b/src/licensedcode/data/rules/bsd-new_779.RULE index b8dba20ca3d..705f2b7df2b 100644 --- a/src/licensedcode/data/rules/bsd-new_779.RULE +++ b/src/licensedcode/data/rules/bsd-new_779.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +notes: Go uses a bsd-new license +ignorable_urls: + - http://golang.org/ +--- + Subject to the BSD-style license found at http://golang.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_779.yml b/src/licensedcode/data/rules/bsd-new_779.yml deleted file mode 100644 index c42943f3bab..00000000000 --- a/src/licensedcode/data/rules/bsd-new_779.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -notes: Go uses a bsd-new license -ignorable_urls: - - http://golang.org/ diff --git a/src/licensedcode/data/rules/bsd-new_78.RULE b/src/licensedcode/data/rules/bsd-new_78.RULE index 29400c874ab..bd11c92d1fb 100644 --- a/src/licensedcode/data/rules/bsd-new_78.RULE +++ b/src/licensedcode/data/rules/bsd-new_78.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://developer.yahoo.net/yui/license.txt +--- + Code licensed under the BSD License: * http://developer.yahoo.net/yui/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_78.yml b/src/licensedcode/data/rules/bsd-new_78.yml deleted file mode 100644 index e615b583bee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://developer.yahoo.net/yui/license.txt diff --git a/src/licensedcode/data/rules/bsd-new_780.RULE b/src/licensedcode/data/rules/bsd-new_780.RULE index dc265f19395..84a471c07be 100644 --- a/src/licensedcode/data/rules/bsd-new_780.RULE +++ b/src/licensedcode/data/rules/bsd-new_780.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +notes: Go uses a bsd-new license +ignorable_urls: + - http://golang.org/ +--- + (license at http://golang.org) where indicated \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_780.yml b/src/licensedcode/data/rules/bsd-new_780.yml deleted file mode 100644 index c42943f3bab..00000000000 --- a/src/licensedcode/data/rules/bsd-new_780.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -notes: Go uses a bsd-new license -ignorable_urls: - - http://golang.org/ diff --git a/src/licensedcode/data/rules/bsd-new_781.RULE b/src/licensedcode/data/rules/bsd-new_781.RULE index e4ea865a872..d9b5161b779 100644 --- a/src/licensedcode/data/rules/bsd-new_781.RULE +++ b/src/licensedcode/data/rules/bsd-new_781.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_781.yml b/src/licensedcode/data/rules/bsd-new_781.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_781.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_782.RULE b/src/licensedcode/data/rules/bsd-new_782.RULE index 5a959b80d61..5088f20aa75 100644 --- a/src/licensedcode/data/rules/bsd-new_782.RULE +++ b/src/licensedcode/data/rules/bsd-new_782.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_782.yml b/src/licensedcode/data/rules/bsd-new_782.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_782.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_783.RULE b/src/licensedcode/data/rules/bsd-new_783.RULE index 7f40167a776..8636f36acf4 100644 --- a/src/licensedcode/data/rules/bsd-new_783.RULE +++ b/src/licensedcode/data/rules/bsd-new_783.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_783.yml b/src/licensedcode/data/rules/bsd-new_783.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_783.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_784.RULE b/src/licensedcode/data/rules/bsd-new_784.RULE index 6e7b4f54d73..a3c75aede5b 100644 --- a/src/licensedcode/data/rules/bsd-new_784.RULE +++ b/src/licensedcode/data/rules/bsd-new_784.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . diff --git a/src/licensedcode/data/rules/bsd-new_784.yml b/src/licensedcode/data/rules/bsd-new_784.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_784.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_785.RULE b/src/licensedcode/data/rules/bsd-new_785.RULE index 9e6fca1b61c..fe771b5ee98 100644 --- a/src/licensedcode/data/rules/bsd-new_785.RULE +++ b/src/licensedcode/data/rules/bsd-new_785.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . diff --git a/src/licensedcode/data/rules/bsd-new_785.yml b/src/licensedcode/data/rules/bsd-new_785.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_785.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_786.RULE b/src/licensedcode/data/rules/bsd-new_786.RULE index ec5163f5179..531414683d5 100644 --- a/src/licensedcode/data/rules/bsd-new_786.RULE +++ b/src/licensedcode/data/rules/bsd-new_786.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . diff --git a/src/licensedcode/data/rules/bsd-new_786.yml b/src/licensedcode/data/rules/bsd-new_786.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_786.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_787.RULE b/src/licensedcode/data/rules/bsd-new_787.RULE index ee2ef0b75c5..79d5318e17e 100644 --- a/src/licensedcode/data/rules/bsd-new_787.RULE +++ b/src/licensedcode/data/rules/bsd-new_787.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_787.yml b/src/licensedcode/data/rules/bsd-new_787.yml deleted file mode 100644 index 6bf279e8860..00000000000 --- a/src/licensedcode/data/rules/bsd-new_787.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_788.RULE b/src/licensedcode/data/rules/bsd-new_788.RULE index ec59a2b15a2..d8156dc5a31 100644 --- a/src/licensedcode/data/rules/bsd-new_788.RULE +++ b/src/licensedcode/data/rules/bsd-new_788.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + under the terms of the BSD 3-clause "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_788.yml b/src/licensedcode/data/rules/bsd-new_788.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_788.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_789.RULE b/src/licensedcode/data/rules/bsd-new_789.RULE index 9f49046225e..dbce6267d45 100644 --- a/src/licensedcode/data/rules/bsd-new_789.RULE +++ b/src/licensedcode/data/rules/bsd-new_789.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_789.yml b/src/licensedcode/data/rules/bsd-new_789.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_789.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_79.RULE b/src/licensedcode/data/rules/bsd-new_79.RULE index 3148b5eb80e..b84b88d5314 100644 --- a/src/licensedcode/data/rules/bsd-new_79.RULE +++ b/src/licensedcode/data/rules/bsd-new_79.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + Code licensed under the BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_79.yml b/src/licensedcode/data/rules/bsd-new_79.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_790.RULE b/src/licensedcode/data/rules/bsd-new_790.RULE index ec85ec41a41..2d6bfc46a60 100644 --- a/src/licensedcode/data/rules/bsd-new_790.RULE +++ b/src/licensedcode/data/rules/bsd-new_790.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + Distributable under the BSD license. See the terms of the BSD license in the documentation provided with this software. http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_790.yml b/src/licensedcode/data/rules/bsd-new_790.yml deleted file mode 100644 index 9179a28ecea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_790.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_791.RULE b/src/licensedcode/data/rules/bsd-new_791.RULE index 7a4ce8de9e2..7b5062908e3 100644 --- a/src/licensedcode/data/rules/bsd-new_791.RULE +++ b/src/licensedcode/data/rules/bsd-new_791.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - https://www.opensource.org/licenses/bsd-license.php +--- + Distributable under the BSD license. See the terms of the BSD license in the documentation provided with this software. https://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_791.yml b/src/licensedcode/data/rules/bsd-new_791.yml deleted file mode 100644 index 0df54950ac7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_791.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - https://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_792.RULE b/src/licensedcode/data/rules/bsd-new_792.RULE index 4b4be2fe9d0..1d8cf3c2030 100644 --- a/src/licensedcode/data/rules/bsd-new_792.RULE +++ b/src/licensedcode/data/rules/bsd-new_792.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + // Use of this source code is governed by a BSD-style // license that can be found src the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_792.yml b/src/licensedcode/data/rules/bsd-new_792.yml deleted file mode 100644 index b6c8dec56ad..00000000000 --- a/src/licensedcode/data/rules/bsd-new_792.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_793.RULE b/src/licensedcode/data/rules/bsd-new_793.RULE index 2d97207fd5a..d8cf46c6ed9 100644 --- a/src/licensedcode/data/rules/bsd-new_793.RULE +++ b/src/licensedcode/data/rules/bsd-new_793.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + Distributable under the BSD license. See the terms of the BSD license in the documentation provided with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_793.yml b/src/licensedcode/data/rules/bsd-new_793.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_793.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_794.RULE b/src/licensedcode/data/rules/bsd-new_794.RULE index 994b5c569d9..f6a4cc26251 100644 --- a/src/licensedcode/data/rules/bsd-new_794.RULE +++ b/src/licensedcode/data/rules/bsd-new_794.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + freely distributable under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_794.yml b/src/licensedcode/data/rules/bsd-new_794.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_794.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_795.RULE b/src/licensedcode/data/rules/bsd-new_795.RULE index 822d4ec239e..24c9ed89c76 100644 --- a/src/licensedcode/data/rules/bsd-new_795.RULE +++ b/src/licensedcode/data/rules/bsd-new_795.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + Distributable under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_795.yml b/src/licensedcode/data/rules/bsd-new_795.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_795.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_796.RULE b/src/licensedcode/data/rules/bsd-new_796.RULE index 26b2fdf0ce2..730727f367f 100644 --- a/src/licensedcode/data/rules/bsd-new_796.RULE +++ b/src/licensedcode/data/rules/bsd-new_796.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + This software is distributable under the BSD license. See the terms of the BSD license in the documentation provided with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_796.yml b/src/licensedcode/data/rules/bsd-new_796.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_796.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_797.RULE b/src/licensedcode/data/rules/bsd-new_797.RULE index c6aa1dcb548..1df69812366 100644 --- a/src/licensedcode/data/rules/bsd-new_797.RULE +++ b/src/licensedcode/data/rules/bsd-new_797.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + This software is distributable under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_797.yml b/src/licensedcode/data/rules/bsd-new_797.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_797.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_798.RULE b/src/licensedcode/data/rules/bsd-new_798.RULE index ffc3d0b2330..fc02fdae28e 100644 --- a/src/licensedcode/data/rules/bsd-new_798.RULE +++ b/src/licensedcode/data/rules/bsd-new_798.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_798.yml b/src/licensedcode/data/rules/bsd-new_798.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_798.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_799.RULE b/src/licensedcode/data/rules/bsd-new_799.RULE index ab5dedf5973..0eaa5e13bd8 100644 --- a/src/licensedcode/data/rules/bsd-new_799.RULE +++ b/src/licensedcode/data/rules/bsd-new_799.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: in https://repo1.maven.org/maven2/net/zetetic/android-database-sqlcipher/ +ignorable_urls: + - https://www.zetetic.net/sqlcipher/license/ +--- + https://www.zetetic.net/sqlcipher/license/ diff --git a/src/licensedcode/data/rules/bsd-new_799.yml b/src/licensedcode/data/rules/bsd-new_799.yml deleted file mode 100644 index 377e692a95b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_799.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: in https://repo1.maven.org/maven2/net/zetetic/android-database-sqlcipher/ -ignorable_urls: - - https://www.zetetic.net/sqlcipher/license/ diff --git a/src/licensedcode/data/rules/bsd-new_8.RULE b/src/licensedcode/data/rules/bsd-new_8.RULE index 4594b7842de..f9e35575929 100644 --- a/src/licensedcode/data/rules/bsd-new_8.RULE +++ b/src/licensedcode/data/rules/bsd-new_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +notes: BSD notice variant found on Debian notices +--- + may be redistributed under the terms of the BSD license found on Debian systems in the file /usr/share/common-licenses/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_8.yml b/src/licensedcode/data/rules/bsd-new_8.yml deleted file mode 100644 index 6d8b155c2de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -notes: BSD notice variant found on Debian notices diff --git a/src/licensedcode/data/rules/bsd-new_80.RULE b/src/licensedcode/data/rules/bsd-new_80.RULE index 3406f3bf107..2afe492cb87 100644 --- a/src/licensedcode/data/rules/bsd-new_80.RULE +++ b/src/licensedcode/data/rules/bsd-new_80.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 40 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -19,4 +25,4 @@ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTOR(S) 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). +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_80.yml b/src/licensedcode/data/rules/bsd-new_80.yml deleted file mode 100644 index 1911f9558b1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 40 diff --git a/src/licensedcode/data/rules/bsd-new_800.RULE b/src/licensedcode/data/rules/bsd-new_800.RULE index a144749a2e1..7858cbd4666 100644 --- a/src/licensedcode/data/rules/bsd-new_800.RULE +++ b/src/licensedcode/data/rules/bsd-new_800.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +notes: in https://repo1.maven.org/maven2/net/zetetic/android-database-sqlcipher/ +ignorable_urls: + - https://www.zetetic.net/sqlcipher/license/ +--- + https://www.zetetic.net/sqlcipher/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_800.yml b/src/licensedcode/data/rules/bsd-new_800.yml deleted file mode 100644 index 1e2e15c079d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_800.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -notes: in https://repo1.maven.org/maven2/net/zetetic/android-database-sqlcipher/ -ignorable_urls: - - https://www.zetetic.net/sqlcipher/license/ diff --git a/src/licensedcode/data/rules/bsd-new_801.RULE b/src/licensedcode/data/rules/bsd-new_801.RULE index c78bf530457..3e4ede2eb19 100644 --- a/src/licensedcode/data/rules/bsd-new_801.RULE +++ b/src/licensedcode/data/rules/bsd-new_801.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Eclipse Distribution License (New BSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_801.yml b/src/licensedcode/data/rules/bsd-new_801.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_801.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_802.RULE b/src/licensedcode/data/rules/bsd-new_802.RULE index 0f92334f17a..dc575ed3b62 100644 --- a/src/licensedcode/data/rules/bsd-new_802.RULE +++ b/src/licensedcode/data/rules/bsd-new_802.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Eclipse Distribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_802.yml b/src/licensedcode/data/rules/bsd-new_802.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_802.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_803.RULE b/src/licensedcode/data/rules/bsd-new_803.RULE index 1d747797cb1..af8d2c459e4 100644 --- a/src/licensedcode/data/rules/bsd-new_803.RULE +++ b/src/licensedcode/data/rules/bsd-new_803.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Eclipse Distribution License (EDL), Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_803.yml b/src/licensedcode/data/rules/bsd-new_803.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_803.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_804.RULE b/src/licensedcode/data/rules/bsd-new_804.RULE index b8012bf3ec2..56b70f18554 100644 --- a/src/licensedcode/data/rules/bsd-new_804.RULE +++ b/src/licensedcode/data/rules/bsd-new_804.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + Eclipse Distribution License (EDL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_804.yml b/src/licensedcode/data/rules/bsd-new_804.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_804.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_805.RULE b/src/licensedcode/data/rules/bsd-new_805.RULE index 5f5d4cccd82..f8c6baccd0d 100644 --- a/src/licensedcode/data/rules/bsd-new_805.RULE +++ b/src/licensedcode/data/rules/bsd-new_805.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + 3-clause BSDL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_805.yml b/src/licensedcode/data/rules/bsd-new_805.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_805.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_806.RULE b/src/licensedcode/data/rules/bsd-new_806.RULE index 07a69d5fff2..045fdf73db8 100644 --- a/src/licensedcode/data/rules/bsd-new_806.RULE +++ b/src/licensedcode/data/rules/bsd-new_806.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + available under a three-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_806.yml b/src/licensedcode/data/rules/bsd-new_806.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_806.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_807.RULE b/src/licensedcode/data/rules/bsd-new_807.RULE index b3f5ef31735..7e55a059a7e 100644 --- a/src/licensedcode/data/rules/bsd-new_807.RULE +++ b/src/licensedcode/data/rules/bsd-new_807.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + distributed under a BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_807.yml b/src/licensedcode/data/rules/bsd-new_807.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_807.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_808.RULE b/src/licensedcode/data/rules/bsd-new_808.RULE index fd50a04809e..14a2003aa49 100644 --- a/src/licensedcode/data/rules/bsd-new_808.RULE +++ b/src/licensedcode/data/rules/bsd-new_808.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_808.yml b/src/licensedcode/data/rules/bsd-new_808.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_808.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_809.RULE b/src/licensedcode/data/rules/bsd-new_809.RULE index b5537e3201f..bfefe1ddde7 100644 --- a/src/licensedcode/data/rules/bsd-new_809.RULE +++ b/src/licensedcode/data/rules/bsd-new_809.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under the BSL-3CL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_809.yml b/src/licensedcode/data/rules/bsd-new_809.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_809.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_81.RULE b/src/licensedcode/data/rules/bsd-new_81.RULE index 43847a759ce..84eb935178e 100644 --- a/src/licensedcode/data/rules/bsd-new_81.RULE +++ b/src/licensedcode/data/rules/bsd-new_81.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: markup format +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +27,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_81.yml b/src/licensedcode/data/rules/bsd-new_81.yml deleted file mode 100644 index 0b1ce8631aa..00000000000 --- a/src/licensedcode/data/rules/bsd-new_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: markup format diff --git a/src/licensedcode/data/rules/bsd-new_810.RULE b/src/licensedcode/data/rules/bsd-new_810.RULE index 6a7f47b6811..414bfc00915 100644 --- a/src/licensedcode/data/rules/bsd-new_810.RULE +++ b/src/licensedcode/data/rules/bsd-new_810.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the BSD 3-clause “New” or “Revised” License. See LICENSE for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_810.yml b/src/licensedcode/data/rules/bsd-new_810.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_810.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_811.RULE b/src/licensedcode/data/rules/bsd-new_811.RULE index ee0dd1dbf4e..b2da6bd1cd1 100644 --- a/src/licensedcode/data/rules/bsd-new_811.RULE +++ b/src/licensedcode/data/rules/bsd-new_811.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + This software is available subject to the conditions and terms laid out below. By downloading and using this software you are agreeing to the following conditions. diff --git a/src/licensedcode/data/rules/bsd-new_811.yml b/src/licensedcode/data/rules/bsd-new_811.yml deleted file mode 100644 index 915533b6bfa..00000000000 --- a/src/licensedcode/data/rules/bsd-new_811.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_812.RULE b/src/licensedcode/data/rules/bsd-new_812.RULE index ad8e9e209a4..e34c776453c 100644 --- a/src/licensedcode/data/rules/bsd-new_812.RULE +++ b/src/licensedcode/data/rules/bsd-new_812.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_812.yml b/src/licensedcode/data/rules/bsd-new_812.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_812.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_813.RULE b/src/licensedcode/data/rules/bsd-new_813.RULE index e5e700c9ff5..a0b32db7b43 100644 --- a/src/licensedcode/data/rules/bsd-new_813.RULE +++ b/src/licensedcode/data/rules/bsd-new_813.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_813.yml b/src/licensedcode/data/rules/bsd-new_813.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_813.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_814.RULE b/src/licensedcode/data/rules/bsd-new_814.RULE index 17c4a742bc1..e4341cfc43a 100644 --- a/src/licensedcode/data/rules/bsd-new_814.RULE +++ b/src/licensedcode/data/rules/bsd-new_814.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +notes: See https://github.com/Addepar/ember-table/blob/70d09600c0032f19cad1f62c050cde2d993e8365/LICENSE.md + This is a kinda truncated BSD-new +--- + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. diff --git a/src/licensedcode/data/rules/bsd-new_814.yml b/src/licensedcode/data/rules/bsd-new_814.yml deleted file mode 100644 index efe5c26d96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_814.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -notes: See https://github.com/Addepar/ember-table/blob/70d09600c0032f19cad1f62c050cde2d993e8365/LICENSE.md - This is a kinda truncated BSD-new diff --git a/src/licensedcode/data/rules/bsd-new_815.RULE b/src/licensedcode/data/rules/bsd-new_815.RULE index 66906629500..d96f1905390 100644 --- a/src/licensedcode/data/rules/bsd-new_815.RULE +++ b/src/licensedcode/data/rules/bsd-new_815.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 98 +notes: duplicated line See https://github.com/josephlewis42/njson/blob/30ce2ac0a62d78ed3197daaf514a2d5567e04ee2/LICENSE +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_815.yml b/src/licensedcode/data/rules/bsd-new_815.yml deleted file mode 100644 index 2a5d0afe270..00000000000 --- a/src/licensedcode/data/rules/bsd-new_815.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 98 -notes: duplicated line See https://github.com/josephlewis42/njson/blob/30ce2ac0a62d78ed3197daaf514a2d5567e04ee2/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_816.RULE b/src/licensedcode/data/rules/bsd-new_816.RULE index 59fc5c5a475..8d9a34d1ac0 100644 --- a/src/licensedcode/data/rules/bsd-new_816.RULE +++ b/src/licensedcode/data/rules/bsd-new_816.RULE @@ -1,2 +1,8 @@ -is licensed under the BSD license. Other software included in this distribution is provided under other licenses, as set forth below. +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +minimum_coverage: 95 +--- +is licensed under the BSD license. Other software included in this distribution is provided under other licenses, as set forth below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_816.yml b/src/licensedcode/data/rules/bsd-new_816.yml deleted file mode 100644 index 1b866a6e42f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_816.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_817.RULE b/src/licensedcode/data/rules/bsd-new_817.RULE index 2c07e2a67e9..135e53b594e 100644 --- a/src/licensedcode/data/rules/bsd-new_817.RULE +++ b/src/licensedcode/data/rules/bsd-new_817.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + The Google Chrome software developed by Google is licensed under the BSD license. Other software included in this distribution is provided under other licenses, as set forth below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_817.yml b/src/licensedcode/data/rules/bsd-new_817.yml deleted file mode 100644 index 1e8c381a2cb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_817.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_818.RULE b/src/licensedcode/data/rules/bsd-new_818.RULE index b6e90daff55..b1bfc8d2702 100644 --- a/src/licensedcode/data/rules/bsd-new_818.RULE +++ b/src/licensedcode/data/rules/bsd-new_818.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + The Google Chrome software developed by Google is licensed under the BSD license. Other software included in this distribution is provided under other licenses, as set forth below. diff --git a/src/licensedcode/data/rules/bsd-new_818.yml b/src/licensedcode/data/rules/bsd-new_818.yml deleted file mode 100644 index d9db10989df..00000000000 --- a/src/licensedcode/data/rules/bsd-new_818.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_819.RULE b/src/licensedcode/data/rules/bsd-new_819.RULE index 9d42fa5db55..45f6c0149b1 100644 --- a/src/licensedcode/data/rules/bsd-new_819.RULE +++ b/src/licensedcode/data/rules/bsd-new_819.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause +--- + Published under the terms of the BSD 3-Clause License (see LICENSE file or http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_819.yml b/src/licensedcode/data/rules/bsd-new_819.yml deleted file mode 100644 index 968a7cc4414..00000000000 --- a/src/licensedcode/data/rules/bsd-new_819.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_82.RULE b/src/licensedcode/data/rules/bsd-new_82.RULE index a7d2e7b0b07..fa1aafd7046 100644 --- a/src/licensedcode/data/rules/bsd-new_82.RULE +++ b/src/licensedcode/data/rules/bsd-new_82.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://hsqldb.org/web/hsqlLicense.html +--- + http://hsqldb.org/web/hsqlLicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_82.yml b/src/licensedcode/data/rules/bsd-new_82.yml deleted file mode 100644 index 66f38243011..00000000000 --- a/src/licensedcode/data/rules/bsd-new_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://hsqldb.org/web/hsqlLicense.html diff --git a/src/licensedcode/data/rules/bsd-new_820.RULE b/src/licensedcode/data/rules/bsd-new_820.RULE index dfb8f8c639d..82932a4083b 100644 --- a/src/licensedcode/data/rules/bsd-new_820.RULE +++ b/src/licensedcode/data/rules/bsd-new_820.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +--- + Portions of this code are copied from the Go source code, which is licensed under the following terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_820.yml b/src/licensedcode/data/rules/bsd-new_820.yml deleted file mode 100644 index 27fc5422ac5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_820.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_821.RULE b/src/licensedcode/data/rules/bsd-new_821.RULE index 2bd329cfe42..30b5931b533 100644 --- a/src/licensedcode/data/rules/bsd-new_821.RULE +++ b/src/licensedcode/data/rules/bsd-new_821.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_821.yml b/src/licensedcode/data/rules/bsd-new_821.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_821.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_822.RULE b/src/licensedcode/data/rules/bsd-new_822.RULE index 703d854d2c9..b8bfc62ea5c 100644 --- a/src/licensedcode/data/rules/bsd-new_822.RULE +++ b/src/licensedcode/data/rules/bsd-new_822.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_822.yml b/src/licensedcode/data/rules/bsd-new_822.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_822.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_823.RULE b/src/licensedcode/data/rules/bsd-new_823.RULE index e5df059cba2..b2b577fb22a 100644 --- a/src/licensedcode/data/rules/bsd-new_823.RULE +++ b/src/licensedcode/data/rules/bsd-new_823.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + This license is approved by the Open Source Initiative as Open Source. See http://www.opensource.org/licenses/bsd-license.php http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_823.yml b/src/licensedcode/data/rules/bsd-new_823.yml deleted file mode 100644 index 9179a28ecea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_823.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_824.RULE b/src/licensedcode/data/rules/bsd-new_824.RULE index d8ecb979428..d1d089cb673 100644 --- a/src/licensedcode/data/rules/bsd-new_824.RULE +++ b/src/licensedcode/data/rules/bsd-new_824.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_824.yml b/src/licensedcode/data/rules/bsd-new_824.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_824.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_825.RULE b/src/licensedcode/data/rules/bsd-new_825.RULE index d47cc525847..9772c79c413 100644 --- a/src/licensedcode/data/rules/bsd-new_825.RULE +++ b/src/licensedcode/data/rules/bsd-new_825.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.googlesource.com/go/+/go1.8.3/LICENSE +--- + https://go.googlesource.com/go/+/go1.8.3/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_825.yml b/src/licensedcode/data/rules/bsd-new_825.yml deleted file mode 100644 index c5ee45b0785..00000000000 --- a/src/licensedcode/data/rules/bsd-new_825.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.googlesource.com/go/+/go1.8.3/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_826.RULE b/src/licensedcode/data/rules/bsd-new_826.RULE index 872742816c4..f8a078710fa 100644 --- a/src/licensedcode/data/rules/bsd-new_826.RULE +++ b/src/licensedcode/data/rules/bsd-new_826.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/golang/go/blob/master/LICENSE +--- + https://github.com/golang/go/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_826.yml b/src/licensedcode/data/rules/bsd-new_826.yml deleted file mode 100644 index bc05c33a150..00000000000 --- a/src/licensedcode/data/rules/bsd-new_826.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/golang/go/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_827.RULE b/src/licensedcode/data/rules/bsd-new_827.RULE index 39d9ba7bdcf..324ae69db34 100644 --- a/src/licensedcode/data/rules/bsd-new_827.RULE +++ b/src/licensedcode/data/rules/bsd-new_827.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/gorilla/mux/blob/master/LICENSE +--- + https://github.com/gorilla/mux/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_827.yml b/src/licensedcode/data/rules/bsd-new_827.yml deleted file mode 100644 index ed80d4a56a4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_827.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/gorilla/mux/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_828.RULE b/src/licensedcode/data/rules/bsd-new_828.RULE index 5f69c8282f7..11b73db6857 100644 --- a/src/licensedcode/data/rules/bsd-new_828.RULE +++ b/src/licensedcode/data/rules/bsd-new_828.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: Typo in "OFTWARE" such as in https://github.com/sideway/joi/commit/976880220059470bf9e166ddda9ed83ad6780570#diff-4673a3aba01813b595de187a7a6e9e63a3491d55821606fecd9f13a10c188a1dL10L9 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_828.yml b/src/licensedcode/data/rules/bsd-new_828.yml deleted file mode 100644 index 680772bfe24..00000000000 --- a/src/licensedcode/data/rules/bsd-new_828.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: Typo in "OFTWARE" such as in https://github.com/sideway/joi/commit/976880220059470bf9e166ddda9ed83ad6780570#diff-4673a3aba01813b595de187a7a6e9e63a3491d55821606fecd9f13a10c188a1dL10L9 diff --git a/src/licensedcode/data/rules/bsd-new_829.RULE b/src/licensedcode/data/rules/bsd-new_829.RULE index fd957558332..a2cc7cd0520 100644 --- a/src/licensedcode/data/rules/bsd-new_829.RULE +++ b/src/licensedcode/data/rules/bsd-new_829.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + (The 3-Clause BSD Licence) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_829.yml b/src/licensedcode/data/rules/bsd-new_829.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_829.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_83.RULE b/src/licensedcode/data/rules/bsd-new_83.RULE index 7af06f78ff4..939bdb679d3 100644 --- a/src/licensedcode/data/rules/bsd-new_83.RULE +++ b/src/licensedcode/data/rules/bsd-new_83.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of -this software, even if advised of the possibility of such damage. +this 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_83.yml b/src/licensedcode/data/rules/bsd-new_83.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_83.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_830.RULE b/src/licensedcode/data/rules/bsd-new_830.RULE index 11e47d6a4d9..e7ad77419af 100644 --- a/src/licensedcode/data/rules/bsd-new_830.RULE +++ b/src/licensedcode/data/rules/bsd-new_830.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + Code is released under a BSD License: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_830.yml b/src/licensedcode/data/rules/bsd-new_830.yml deleted file mode 100644 index 9179a28ecea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_830.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_831.RULE b/src/licensedcode/data/rules/bsd-new_831.RULE index 3925b326109..f93935777f4 100644 --- a/src/licensedcode/data/rules/bsd-new_831.RULE +++ b/src/licensedcode/data/rules/bsd-new_831.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_831.yml b/src/licensedcode/data/rules/bsd-new_831.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_831.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_832.RULE b/src/licensedcode/data/rules/bsd-new_832.RULE index a61889f374a..e2163072060 100644 --- a/src/licensedcode/data/rules/bsd-new_832.RULE +++ b/src/licensedcode/data/rules/bsd-new_832.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +notes: based on https://web.archive.org/web/20160601142057/http://silvershell.googlecode.com/files/LICENSE + this was a bsd-new +ignorable_urls: + - http://silvershell.googlecode.com/files/LICENSE +--- + Licensed under the BSD License (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/bsd-new_832.yml b/src/licensedcode/data/rules/bsd-new_832.yml deleted file mode 100644 index 4ad0b09ec2d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_832.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -notes: based on https://web.archive.org/web/20160601142057/http://silvershell.googlecode.com/files/LICENSE - this was a bsd-new -ignorable_urls: - - http://silvershell.googlecode.com/files/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_833.RULE b/src/licensedcode/data/rules/bsd-new_833.RULE index 58f9d591333..c41b1808202 100644 --- a/src/licensedcode/data/rules/bsd-new_833.RULE +++ b/src/licensedcode/data/rules/bsd-new_833.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Licensed under the BSD License (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/bsd-new_833.yml b/src/licensedcode/data/rules/bsd-new_833.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_833.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_834.RULE b/src/licensedcode/data/rules/bsd-new_834.RULE index 71430c1efec..8e057c6e8e6 100644 --- a/src/licensedcode/data/rules/bsd-new_834.RULE +++ b/src/licensedcode/data/rules/bsd-new_834.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed // under the BSD 3-clause license, whose text is further below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_834.yml b/src/licensedcode/data/rules/bsd-new_834.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_834.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_835.RULE b/src/licensedcode/data/rules/bsd-new_835.RULE index 14df4597ae7..47ea74a126a 100644 --- a/src/licensedcode/data/rules/bsd-new_835.RULE +++ b/src/licensedcode/data/rules/bsd-new_835.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + // Original BSD 3-clause license text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_835.yml b/src/licensedcode/data/rules/bsd-new_835.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_835.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_836.RULE b/src/licensedcode/data/rules/bsd-new_836.RULE index 127f3a972e3..010dfdb3f17 100644 --- a/src/licensedcode/data/rules/bsd-new_836.RULE +++ b/src/licensedcode/data/rules/bsd-new_836.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + // Original BSD 3-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_836.yml b/src/licensedcode/data/rules/bsd-new_836.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_836.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_837.RULE b/src/licensedcode/data/rules/bsd-new_837.RULE index 9bb1f382f9d..d9873d610ee 100644 --- a/src/licensedcode/data/rules/bsd-new_837.RULE +++ b/src/licensedcode/data/rules/bsd-new_837.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + The script is licensed under the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_837.yml b/src/licensedcode/data/rules/bsd-new_837.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_837.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_838.RULE b/src/licensedcode/data/rules/bsd-new_838.RULE index 69691b56ba9..d2fd4527f1f 100644 --- a/src/licensedcode/data/rules/bsd-new_838.RULE +++ b/src/licensedcode/data/rules/bsd-new_838.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed under the BSD license. The rest of the project is also released under the BSD licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_838.yml b/src/licensedcode/data/rules/bsd-new_838.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_838.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_839.RULE b/src/licensedcode/data/rules/bsd-new_839.RULE index 60ac2f3a6b0..25cc6ae13ba 100644 --- a/src/licensedcode/data/rules/bsd-new_839.RULE +++ b/src/licensedcode/data/rules/bsd-new_839.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + The rest of the project is also released under the BSD licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_839.yml b/src/licensedcode/data/rules/bsd-new_839.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_839.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_84.RULE b/src/licensedcode/data/rules/bsd-new_84.RULE index 634c5282da4..cc5bb4279ff 100644 --- a/src/licensedcode/data/rules/bsd-new_84.RULE +++ b/src/licensedcode/data/rules/bsd-new_84.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + http://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_84.yml b/src/licensedcode/data/rules/bsd-new_84.yml deleted file mode 100644 index 7f658ab9e3c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_84.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_840.RULE b/src/licensedcode/data/rules/bsd-new_840.RULE index 6f708e43844..9e5ab1fd533 100644 --- a/src/licensedcode/data/rules/bsd-new_840.RULE +++ b/src/licensedcode/data/rules/bsd-new_840.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + // Original BSD 3-clause licence text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_840.yml b/src/licensedcode/data/rules/bsd-new_840.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_840.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_841.RULE b/src/licensedcode/data/rules/bsd-new_841.RULE index 264ebdcb237..8a4b6bb6c6b 100644 --- a/src/licensedcode/data/rules/bsd-new_841.RULE +++ b/src/licensedcode/data/rules/bsd-new_841.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + The script is licenced under the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_841.yml b/src/licensedcode/data/rules/bsd-new_841.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_841.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_842.RULE b/src/licensedcode/data/rules/bsd-new_842.RULE index e0b372c9758..4a15286de8c 100644 --- a/src/licensedcode/data/rules/bsd-new_842.RULE +++ b/src/licensedcode/data/rules/bsd-new_842.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licenced under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_842.yml b/src/licensedcode/data/rules/bsd-new_842.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_842.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_843.RULE b/src/licensedcode/data/rules/bsd-new_843.RULE index 2218174d693..c0e24e2927a 100644 --- a/src/licensedcode/data/rules/bsd-new_843.RULE +++ b/src/licensedcode/data/rules/bsd-new_843.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + licenced under the BSD license. The rest of the project is also released under the BSD licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_843.yml b/src/licensedcode/data/rules/bsd-new_843.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_843.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_844.RULE b/src/licensedcode/data/rules/bsd-new_844.RULE index e288d4a6a9f..a5714f450c4 100644 --- a/src/licensedcode/data/rules/bsd-new_844.RULE +++ b/src/licensedcode/data/rules/bsd-new_844.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: found in newlib +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_844.yml b/src/licensedcode/data/rules/bsd-new_844.yml deleted file mode 100644 index 30006f9b0a8..00000000000 --- a/src/licensedcode/data/rules/bsd-new_844.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: found in newlib diff --git a/src/licensedcode/data/rules/bsd-new_845.RULE b/src/licensedcode/data/rules/bsd-new_845.RULE index 9780a4d9d55..3ecda5199f7 100644 --- a/src/licensedcode/data/rules/bsd-new_845.RULE +++ b/src/licensedcode/data/rules/bsd-new_845.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Distributed under a 3-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_845.yml b/src/licensedcode/data/rules/bsd-new_845.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_845.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_846.RULE b/src/licensedcode/data/rules/bsd-new_846.RULE index 005988046e0..83a8c3b0694 100644 --- a/src/licensedcode/data/rules/bsd-new_846.RULE +++ b/src/licensedcode/data/rules/bsd-new_846.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + distributed under the BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_846.yml b/src/licensedcode/data/rules/bsd-new_846.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_846.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_847.RULE b/src/licensedcode/data/rules/bsd-new_847.RULE index b75df1ec63a..c4f0e11151f 100644 --- a/src/licensedcode/data/rules/bsd-new_847.RULE +++ b/src/licensedcode/data/rules/bsd-new_847.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_847.yml b/src/licensedcode/data/rules/bsd-new_847.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_847.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_848.RULE b/src/licensedcode/data/rules/bsd-new_848.RULE index f0250562c6a..12240825835 100644 --- a/src/licensedcode/data/rules/bsd-new_848.RULE +++ b/src/licensedcode/data/rules/bsd-new_848.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: Seen in Cherrypy +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_848.yml b/src/licensedcode/data/rules/bsd-new_848.yml deleted file mode 100644 index a40e40ec4d0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_848.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: Seen in Cherrypy diff --git a/src/licensedcode/data/rules/bsd-new_849.RULE b/src/licensedcode/data/rules/bsd-new_849.RULE index c2349272c36..75e5a964603 100644 --- a/src/licensedcode/data/rules/bsd-new_849.RULE +++ b/src/licensedcode/data/rules/bsd-new_849.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_849.yml b/src/licensedcode/data/rules/bsd-new_849.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_849.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_85.RULE b/src/licensedcode/data/rules/bsd-new_85.RULE index 7c34ff748f1..abdcf68f1ad 100644 --- a/src/licensedcode/data/rules/bsd-new_85.RULE +++ b/src/licensedcode/data/rules/bsd-new_85.RULE @@ -1,4 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_authors: + - the Knopflerfish Project +--- + This product includes software developed by the Knopflerfish Project as well as from other parties. Content not originating from the Knopflerfish Project is marked as such and belongs to respective -copyright owners. +copyright owners. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_85.yml b/src/licensedcode/data/rules/bsd-new_85.yml deleted file mode 100644 index dcc8ebbba10..00000000000 --- a/src/licensedcode/data/rules/bsd-new_85.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_authors: - - the Knopflerfish Project diff --git a/src/licensedcode/data/rules/bsd-new_850.RULE b/src/licensedcode/data/rules/bsd-new_850.RULE index 18321f561ce..c8d13654e20 100644 --- a/src/licensedcode/data/rules/bsd-new_850.RULE +++ b/src/licensedcode/data/rules/bsd-new_850.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_850.yml b/src/licensedcode/data/rules/bsd-new_850.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_850.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_851.RULE b/src/licensedcode/data/rules/bsd-new_851.RULE index 9e2779c27c4..91888fe043f 100644 --- a/src/licensedcode/data/rules/bsd-new_851.RULE +++ b/src/licensedcode/data/rules/bsd-new_851.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_851.yml b/src/licensedcode/data/rules/bsd-new_851.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_851.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_852.RULE b/src/licensedcode/data/rules/bsd-new_852.RULE index 545fc287184..e54f4410216 100644 --- a/src/licensedcode/data/rules/bsd-new_852.RULE +++ b/src/licensedcode/data/rules/bsd-new_852.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_852.yml b/src/licensedcode/data/rules/bsd-new_852.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_852.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_853.RULE b/src/licensedcode/data/rules/bsd-new_853.RULE index 729d6c4f4ca..5664068315d 100644 --- a/src/licensedcode/data/rules/bsd-new_853.RULE +++ b/src/licensedcode/data/rules/bsd-new_853.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_853.yml b/src/licensedcode/data/rules/bsd-new_853.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_853.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_854.RULE b/src/licensedcode/data/rules/bsd-new_854.RULE index e493390f34f..9c61b7316d3 100644 --- a/src/licensedcode/data/rules/bsd-new_854.RULE +++ b/src/licensedcode/data/rules/bsd-new_854.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - sates/sates_test_cpp_deploy.h +notes: https://github.com/seokhwan/sates/blob/947b78d4f258036ce1387bb402cd23d73439df85/codes/sates_test_cpp/sates/sates_test_cpp_deploy.h +--- + For conditions of distribution and use, see copyright notice in sates/sates_test_cpp_deploy.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_854.yml b/src/licensedcode/data/rules/bsd-new_854.yml deleted file mode 100644 index 30fdfbb26f4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_854.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - sates/sates_test_cpp_deploy.h -notes: https://github.com/seokhwan/sates/blob/947b78d4f258036ce1387bb402cd23d73439df85/codes/sates_test_cpp/sates/sates_test_cpp_deploy.h diff --git a/src/licensedcode/data/rules/bsd-new_855.RULE b/src/licensedcode/data/rules/bsd-new_855.RULE index 886a589711a..db81796b991 100644 --- a/src/licensedcode/data/rules/bsd-new_855.RULE +++ b/src/licensedcode/data/rules/bsd-new_855.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + New BSD License (or Modified BSD Licnese) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_855.yml b/src/licensedcode/data/rules/bsd-new_855.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_855.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_856.RULE b/src/licensedcode/data/rules/bsd-new_856.RULE index b466f582cbb..192d06958e2 100644 --- a/src/licensedcode/data/rules/bsd-new_856.RULE +++ b/src/licensedcode/data/rules/bsd-new_856.RULE @@ -1 +1,12 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - base93.c +notes: https://github.com/ticlo/jsonesc/blob/eade00c171d36c7c238a22921b892d768d2401c6/base93/c/base93.h + and https://github.com/ticlo/jsonesc/blob/eade00c171d36c7c238a22921b892d768d2401c6/base93/c/base93.c +--- + For conditions of distribution and use, see copyright notice in base93.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_856.yml b/src/licensedcode/data/rules/bsd-new_856.yml deleted file mode 100644 index bba47040ff0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_856.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - base93.c -notes: https://github.com/ticlo/jsonesc/blob/eade00c171d36c7c238a22921b892d768d2401c6/base93/c/base93.h - and https://github.com/ticlo/jsonesc/blob/eade00c171d36c7c238a22921b892d768d2401c6/base93/c/base93.c diff --git a/src/licensedcode/data/rules/bsd-new_857.RULE b/src/licensedcode/data/rules/bsd-new_857.RULE index 7a51272d238..65c165424dd 100644 --- a/src/licensedcode/data/rules/bsd-new_857.RULE +++ b/src/licensedcode/data/rules/bsd-new_857.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.txt +--- + * This software is licensed under the BSD license. * See the accompanying LICENSE.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_857.yml b/src/licensedcode/data/rules/bsd-new_857.yml deleted file mode 100644 index f8fd8d4728c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_857.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_858.RULE b/src/licensedcode/data/rules/bsd-new_858.RULE index 0cb4aca1d02..62ad41bbf5d 100644 --- a/src/licensedcode/data/rules/bsd-new_858.RULE +++ b/src/licensedcode/data/rules/bsd-new_858.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD License 2.0 (3-clause, New or Revised) License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_858.yml b/src/licensedcode/data/rules/bsd-new_858.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_858.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_859.RULE b/src/licensedcode/data/rules/bsd-new_859.RULE index 92a9e159201..ffa78f64496 100644 --- a/src/licensedcode/data/rules/bsd-new_859.RULE +++ b/src/licensedcode/data/rules/bsd-new_859.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD licence 2.0 (3-clause, New or Revised) licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_859.yml b/src/licensedcode/data/rules/bsd-new_859.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_859.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_86.RULE b/src/licensedcode/data/rules/bsd-new_86.RULE index e1a5210e8d2..45ef76c18d6 100644 --- a/src/licensedcode/data/rules/bsd-new_86.RULE +++ b/src/licensedcode/data/rules/bsd-new_86.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_86.yml b/src/licensedcode/data/rules/bsd-new_86.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_86.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_860.RULE b/src/licensedcode/data/rules/bsd-new_860.RULE index 4f0b8b20d47..6a630a60575 100644 --- a/src/licensedcode/data/rules/bsd-new_860.RULE +++ b/src/licensedcode/data/rules/bsd-new_860.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_860.yml b/src/licensedcode/data/rules/bsd-new_860.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_860.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_861.RULE b/src/licensedcode/data/rules/bsd-new_861.RULE index 6029b00a122..7956422c002 100644 --- a/src/licensedcode/data/rules/bsd-new_861.RULE +++ b/src/licensedcode/data/rules/bsd-new_861.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_861.yml b/src/licensedcode/data/rules/bsd-new_861.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_861.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_862.RULE b/src/licensedcode/data/rules/bsd-new_862.RULE index 342aed76edd..3165f680cd9 100644 --- a/src/licensedcode/data/rules/bsd-new_862.RULE +++ b/src/licensedcode/data/rules/bsd-new_862.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_862.yml b/src/licensedcode/data/rules/bsd-new_862.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_862.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_863.RULE b/src/licensedcode/data/rules/bsd-new_863.RULE index 5294da7c35d..9a127acc5e0 100644 --- a/src/licensedcode/data/rules/bsd-new_863.RULE +++ b/src/licensedcode/data/rules/bsd-new_863.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: some mojibake +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_863.yml b/src/licensedcode/data/rules/bsd-new_863.yml deleted file mode 100644 index 8965622d08d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_863.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: some mojibake diff --git a/src/licensedcode/data/rules/bsd-new_864.RULE b/src/licensedcode/data/rules/bsd-new_864.RULE index 5d4fabb4adf..f2ac1f1b454 100644 --- a/src/licensedcode/data/rules/bsd-new_864.RULE +++ b/src/licensedcode/data/rules/bsd-new_864.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_864.yml b/src/licensedcode/data/rules/bsd-new_864.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_864.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_865.RULE b/src/licensedcode/data/rules/bsd-new_865.RULE index 9a59b8f7144..1a355d5b206 100644 --- a/src/licensedcode/data/rules/bsd-new_865.RULE +++ b/src/licensedcode/data/rules/bsd-new_865.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + OSI Certified Open Source Software licensed under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_865.yml b/src/licensedcode/data/rules/bsd-new_865.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_865.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_866.RULE b/src/licensedcode/data/rules/bsd-new_866.RULE index d35aa0b7b76..a1b0ee10d85 100644 --- a/src/licensedcode/data/rules/bsd-new_866.RULE +++ b/src/licensedcode/data/rules/bsd-new_866.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_866.yml b/src/licensedcode/data/rules/bsd-new_866.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_866.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_867.RULE b/src/licensedcode/data/rules/bsd-new_867.RULE index 344ff9408cd..1aea9f2b352 100644 --- a/src/licensedcode/data/rules/bsd-new_867.RULE +++ b/src/licensedcode/data/rules/bsd-new_867.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This file is released under a "Three-clause BSD License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_867.yml b/src/licensedcode/data/rules/bsd-new_867.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_867.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_868.RULE b/src/licensedcode/data/rules/bsd-new_868.RULE index 194f7b0b82a..310cdf88222 100644 --- a/src/licensedcode/data/rules/bsd-new_868.RULE +++ b/src/licensedcode/data/rules/bsd-new_868.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +--- + Celery is licensed under The BSD License (3 Clause, also known as the new BSD license). The license is an OSI approved Open Source license and is GPL-compatible(1). diff --git a/src/licensedcode/data/rules/bsd-new_868.yml b/src/licensedcode/data/rules/bsd-new_868.yml deleted file mode 100644 index c908480be1b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_868.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_869.RULE b/src/licensedcode/data/rules/bsd-new_869.RULE index 0b6594804ee..74d26dd08c2 100644 --- a/src/licensedcode/data/rules/bsd-new_869.RULE +++ b/src/licensedcode/data/rules/bsd-new_869.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: legacy bsd notice at https://github.com/mapbox/mapbox-gl-js/blob/main/LICENSE.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_869.yml b/src/licensedcode/data/rules/bsd-new_869.yml deleted file mode 100644 index 98cf8a13321..00000000000 --- a/src/licensedcode/data/rules/bsd-new_869.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: legacy bsd notice at https://github.com/mapbox/mapbox-gl-js/blob/main/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_87.RULE b/src/licensedcode/data/rules/bsd-new_87.RULE index 60cc93d4499..2f07aa1d9ae 100644 --- a/src/licensedcode/data/rules/bsd-new_87.RULE +++ b/src/licensedcode/data/rules/bsd-new_87.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + Berkeley Software Distribution (BSD) License - http://www.opensource.org/licenses/bsd-license.html + http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_87.yml b/src/licensedcode/data/rules/bsd-new_87.yml deleted file mode 100644 index 4f74971e655..00000000000 --- a/src/licensedcode/data/rules/bsd-new_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_870.RULE b/src/licensedcode/data/rules/bsd-new_870.RULE index c8eed24fcf6..656ef7d8b27 100644 --- a/src/licensedcode/data/rules/bsd-new_870.RULE +++ b/src/licensedcode/data/rules/bsd-new_870.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://framework.zend.com/license/new-bsd +--- + license https://framework.zend.com/license/new-bsd New BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_870.yml b/src/licensedcode/data/rules/bsd-new_870.yml deleted file mode 100644 index 98b36fb5937..00000000000 --- a/src/licensedcode/data/rules/bsd-new_870.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://framework.zend.com/license/new-bsd diff --git a/src/licensedcode/data/rules/bsd-new_871.RULE b/src/licensedcode/data/rules/bsd-new_871.RULE index 0330ba05850..8b0f369a8ac 100644 --- a/src/licensedcode/data/rules/bsd-new_871.RULE +++ b/src/licensedcode/data/rules/bsd-new_871.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://framework.zend.com/license +--- + https://framework.zend.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_871.yml b/src/licensedcode/data/rules/bsd-new_871.yml deleted file mode 100644 index e6a70f005a8..00000000000 --- a/src/licensedcode/data/rules/bsd-new_871.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://framework.zend.com/license diff --git a/src/licensedcode/data/rules/bsd-new_872.RULE b/src/licensedcode/data/rules/bsd-new_872.RULE index 4b4167e1930..962820aaaf7 100644 --- a/src/licensedcode/data/rules/bsd-new_872.RULE +++ b/src/licensedcode/data/rules/bsd-new_872.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://framework.zend.com/license +--- + http://framework.zend.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_872.yml b/src/licensedcode/data/rules/bsd-new_872.yml deleted file mode 100644 index 4fef01cfa8b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_872.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://framework.zend.com/license diff --git a/src/licensedcode/data/rules/bsd-new_873.RULE b/src/licensedcode/data/rules/bsd-new_873.RULE index 1ad2fd954d6..3d45f34c407 100644 --- a/src/licensedcode/data/rules/bsd-new_873.RULE +++ b/src/licensedcode/data/rules/bsd-new_873.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.oasis-open.org/sites/www.oasis-open.org/files/BSD-3-Clause.txt +--- + subject to open source license terms expressed in the BSD-3-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_873.yml b/src/licensedcode/data/rules/bsd-new_873.yml deleted file mode 100644 index b35223f4362..00000000000 --- a/src/licensedcode/data/rules/bsd-new_873.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.oasis-open.org/sites/www.oasis-open.org/files/BSD-3-Clause.txt diff --git a/src/licensedcode/data/rules/bsd-new_874.RULE b/src/licensedcode/data/rules/bsd-new_874.RULE index b978bba2ab4..1639733e7e9 100644 --- a/src/licensedcode/data/rules/bsd-new_874.RULE +++ b/src/licensedcode/data/rules/bsd-new_874.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Licence This project is under BSD open source licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_874.yml b/src/licensedcode/data/rules/bsd-new_874.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_874.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_875.RULE b/src/licensedcode/data/rules/bsd-new_875.RULE index c09ce3c21bd..5874533c9e4 100644 --- a/src/licensedcode/data/rules/bsd-new_875.RULE +++ b/src/licensedcode/data/rules/bsd-new_875.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This project is under BSD open source licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_875.yml b/src/licensedcode/data/rules/bsd-new_875.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_875.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_876.RULE b/src/licensedcode/data/rules/bsd-new_876.RULE index 6ce83315ff7..8cbb5ae505e 100644 --- a/src/licensedcode/data/rules/bsd-new_876.RULE +++ b/src/licensedcode/data/rules/bsd-new_876.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_876.yml b/src/licensedcode/data/rules/bsd-new_876.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_876.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_877.RULE b/src/licensedcode/data/rules/bsd-new_877.RULE index a6a5f8dee54..7b3d999b1ea 100644 --- a/src/licensedcode/data/rules/bsd-new_877.RULE +++ b/src/licensedcode/data/rules/bsd-new_877.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Distributed under the OSI-approved BSD License This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_877.yml b/src/licensedcode/data/rules/bsd-new_877.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_877.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_878.RULE b/src/licensedcode/data/rules/bsd-new_878.RULE index 6410adb2e8a..c969310b7d0 100644 --- a/src/licensedcode/data/rules/bsd-new_878.RULE +++ b/src/licensedcode/data/rules/bsd-new_878.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + BSD-style \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_878.yml b/src/licensedcode/data/rules/bsd-new_878.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_878.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_879.RULE b/src/licensedcode/data/rules/bsd-new_879.RULE index 4365d7993bc..f732ef7c9a4 100644 --- a/src/licensedcode/data/rules/bsd-new_879.RULE +++ b/src/licensedcode/data/rules/bsd-new_879.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_879.yml b/src/licensedcode/data/rules/bsd-new_879.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_879.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_88.RULE b/src/licensedcode/data/rules/bsd-new_88.RULE index 4ccb071f580..c09128888d4 100644 --- a/src/licensedcode/data/rules/bsd-new_88.RULE +++ b/src/licensedcode/data/rules/bsd-new_88.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 99 +--- + * All code incorporated from 4.4 BSD is distributed under the following license: @@ -25,4 +31,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_88.yml b/src/licensedcode/data/rules/bsd-new_88.yml deleted file mode 100644 index 459840db079..00000000000 --- a/src/licensedcode/data/rules/bsd-new_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_880.RULE b/src/licensedcode/data/rules/bsd-new_880.RULE index 39f050f8fdc..16bdf163b04 100644 --- a/src/licensedcode/data/rules/bsd-new_880.RULE +++ b/src/licensedcode/data/rules/bsd-new_880.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_880.yml b/src/licensedcode/data/rules/bsd-new_880.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_880.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_881.RULE b/src/licensedcode/data/rules/bsd-new_881.RULE index 078d0abef5e..21359deb061 100644 --- a/src/licensedcode/data/rules/bsd-new_881.RULE +++ b/src/licensedcode/data/rules/bsd-new_881.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + made available under the "BSD License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_881.yml b/src/licensedcode/data/rules/bsd-new_881.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_881.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_882.RULE b/src/licensedcode/data/rules/bsd-new_882.RULE index 8a2336cd13c..8eccf1804de 100644 --- a/src/licensedcode/data/rules/bsd-new_882.RULE +++ b/src/licensedcode/data/rules/bsd-new_882.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_882.yml b/src/licensedcode/data/rules/bsd-new_882.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_882.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_883.RULE b/src/licensedcode/data/rules/bsd-new_883.RULE index 6334ec991f1..d5e25adf6d6 100644 --- a/src/licensedcode/data/rules/bsd-new_883.RULE +++ b/src/licensedcode/data/rules/bsd-new_883.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_883.yml b/src/licensedcode/data/rules/bsd-new_883.yml deleted file mode 100644 index d29be7f06ee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_883.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_884.RULE b/src/licensedcode/data/rules/bsd-new_884.RULE index f57207dacaf..7dea1c3f1d9 100644 --- a/src/licensedcode/data/rules/bsd-new_884.RULE +++ b/src/licensedcode/data/rules/bsd-new_884.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_884.yml b/src/licensedcode/data/rules/bsd-new_884.yml deleted file mode 100644 index d29be7f06ee..00000000000 --- a/src/licensedcode/data/rules/bsd-new_884.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-new_885.RULE b/src/licensedcode/data/rules/bsd-new_885.RULE index 28c3377ac24..378bae9cfbd 100644 --- a/src/licensedcode/data/rules/bsd-new_885.RULE +++ b/src/licensedcode/data/rules/bsd-new_885.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_885.yml b/src/licensedcode/data/rules/bsd-new_885.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_885.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_886.RULE b/src/licensedcode/data/rules/bsd-new_886.RULE index b0f18d0c18a..26dc60232a6 100644 --- a/src/licensedcode/data/rules/bsd-new_886.RULE +++ b/src/licensedcode/data/rules/bsd-new_886.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +notes: the referenced license at the URL changed over time. It was a 3 clause BSD and is now + a 2 clause. For safety we use 3 clause +ignorable_urls: + - http://creativecommons.org/licenses/BSD/ +--- + LICENSE BSD License http://creativecommons.org/licenses/BSD/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_886.yml b/src/licensedcode/data/rules/bsd-new_886.yml deleted file mode 100644 index a185e43e2e1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_886.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -notes: the referenced license at the URL changed over time. It was a 3 clause BSD and is now - a 2 clause. For safety we use 3 clause -ignorable_urls: - - http://creativecommons.org/licenses/BSD/ diff --git a/src/licensedcode/data/rules/bsd-new_887.RULE b/src/licensedcode/data/rules/bsd-new_887.RULE index 48f105926a4..4c3c189a87e 100644 --- a/src/licensedcode/data/rules/bsd-new_887.RULE +++ b/src/licensedcode/data/rules/bsd-new_887.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +notes: the referenced license at the URL changed over time. It was a 3 clause BSD and is now + a 2 clause. For safety we use 3 clause +ignorable_urls: + - http://creativecommons.org/licenses/BSD/ +--- + http://creativecommons.org/licenses/BSD/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_887.yml b/src/licensedcode/data/rules/bsd-new_887.yml deleted file mode 100644 index a185e43e2e1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_887.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -notes: the referenced license at the URL changed over time. It was a 3 clause BSD and is now - a 2 clause. For safety we use 3 clause -ignorable_urls: - - http://creativecommons.org/licenses/BSD/ diff --git a/src/licensedcode/data/rules/bsd-new_888.RULE b/src/licensedcode/data/rules/bsd-new_888.RULE index a9bba9920d0..474e68c262c 100644 --- a/src/licensedcode/data/rules/bsd-new_888.RULE +++ b/src/licensedcode/data/rules/bsd-new_888.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +notes: the referenced license at the URL changed over time. It was a 3 clause BSD and is now + a 2 clause. For safety we use 3 clause +ignorable_urls: + - https://creativecommons.org/licenses/BSD/ +--- + https://creativecommons.org/licenses/BSD/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_888.yml b/src/licensedcode/data/rules/bsd-new_888.yml deleted file mode 100644 index 5960b2b425a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_888.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -notes: the referenced license at the URL changed over time. It was a 3 clause BSD and is now - a 2 clause. For safety we use 3 clause -ignorable_urls: - - https://creativecommons.org/licenses/BSD/ diff --git a/src/licensedcode/data/rules/bsd-new_889.RULE b/src/licensedcode/data/rules/bsd-new_889.RULE index 934c1db9aef..429c536906e 100644 --- a/src/licensedcode/data/rules/bsd-new_889.RULE +++ b/src/licensedcode/data/rules/bsd-new_889.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +notes: the referenced license at the URL changed over time. It was a 3 clause BSD and is now + a 2 clause. For safety we use 3 clause +ignorable_urls: + - http://creativecommons.org/licenses/BSD/ +--- + BSD License http://creativecommons.org/licenses/BSD/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_889.yml b/src/licensedcode/data/rules/bsd-new_889.yml deleted file mode 100644 index a185e43e2e1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_889.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -notes: the referenced license at the URL changed over time. It was a 3 clause BSD and is now - a 2 clause. For safety we use 3 clause -ignorable_urls: - - http://creativecommons.org/licenses/BSD/ diff --git a/src/licensedcode/data/rules/bsd-new_89.RULE b/src/licensedcode/data/rules/bsd-new_89.RULE index 633168288ac..8a7fb09e4a7 100644 --- a/src/licensedcode/data/rules/bsd-new_89.RULE +++ b/src/licensedcode/data/rules/bsd-new_89.RULE @@ -1 +1,7 @@ -License: BSD +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +--- + +License: BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_89.yml b/src/licensedcode/data/rules/bsd-new_89.yml deleted file mode 100644 index 90976ddc8c6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_890.RULE b/src/licensedcode/data/rules/bsd-new_890.RULE index 023ddea76b1..0270217c2f5 100644 --- a/src/licensedcode/data/rules/bsd-new_890.RULE +++ b/src/licensedcode/data/rules/bsd-new_890.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + LICENSE INFORMATION: BSD-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_890.yml b/src/licensedcode/data/rules/bsd-new_890.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_890.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_891.RULE b/src/licensedcode/data/rules/bsd-new_891.RULE index 0fcd4517da5..747ffe2eb72 100644 --- a/src/licensedcode/data/rules/bsd-new_891.RULE +++ b/src/licensedcode/data/rules/bsd-new_891.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + LICENSE INFORMATION: BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_891.yml b/src/licensedcode/data/rules/bsd-new_891.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_891.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_892.RULE b/src/licensedcode/data/rules/bsd-new_892.RULE index 938ec0c911a..7817cefe4ba 100644 --- a/src/licensedcode/data/rules/bsd-new_892.RULE +++ b/src/licensedcode/data/rules/bsd-new_892.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + This file is distributed under BSD-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_892.yml b/src/licensedcode/data/rules/bsd-new_892.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_892.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_893.RULE b/src/licensedcode/data/rules/bsd-new_893.RULE index 4316e850c15..baf396e2286 100644 --- a/src/licensedcode/data/rules/bsd-new_893.RULE +++ b/src/licensedcode/data/rules/bsd-new_893.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 95 +--- + distributed under BSD-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_893.yml b/src/licensedcode/data/rules/bsd-new_893.yml deleted file mode 100644 index 6c859fb2e84..00000000000 --- a/src/licensedcode/data/rules/bsd-new_893.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_894.RULE b/src/licensedcode/data/rules/bsd-new_894.RULE index c3d3982b994..c225b668ac2 100644 --- a/src/licensedcode/data/rules/bsd-new_894.RULE +++ b/src/licensedcode/data/rules/bsd-new_894.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_894.yml b/src/licensedcode/data/rules/bsd-new_894.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_894.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_895.RULE b/src/licensedcode/data/rules/bsd-new_895.RULE index 600c3f8f60a..e6f4069aa9b 100644 --- a/src/licensedcode/data/rules/bsd-new_895.RULE +++ b/src/licensedcode/data/rules/bsd-new_895.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + This source code awaits a rewrite to work around the paragraph 2 in the BSD licenses as explained below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_895.yml b/src/licensedcode/data/rules/bsd-new_895.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_895.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_896.RULE b/src/licensedcode/data/rules/bsd-new_896.RULE index f19f1a586a1..ab47c452e55 100644 --- a/src/licensedcode/data/rules/bsd-new_896.RULE +++ b/src/licensedcode/data/rules/bsd-new_896.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 99 +notes: Originally from https://cvsweb.openbsd.org/src/sys/sys/utsname.h?rev=1.6&content-type=text/x-cvsweb-markup + but often seen truncated in this form +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_896.yml b/src/licensedcode/data/rules/bsd-new_896.yml deleted file mode 100644 index 08e2f769acc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_896.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 99 -notes: Originally from https://cvsweb.openbsd.org/src/sys/sys/utsname.h?rev=1.6&content-type=text/x-cvsweb-markup - but often seen truncated in this form diff --git a/src/licensedcode/data/rules/bsd-new_897.RULE b/src/licensedcode/data/rules/bsd-new_897.RULE index f4278a259ae..ac5b1bb99dc 100644 --- a/src/licensedcode/data/rules/bsd-new_897.RULE +++ b/src/licensedcode/data/rules/bsd-new_897.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_897.yml b/src/licensedcode/data/rules/bsd-new_897.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_897.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_898.RULE b/src/licensedcode/data/rules/bsd-new_898.RULE index ebf45491743..a8ba24ce2c0 100644 --- a/src/licensedcode/data/rules/bsd-new_898.RULE +++ b/src/licensedcode/data/rules/bsd-new_898.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + THE "BSD" LICENCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_898.yml b/src/licensedcode/data/rules/bsd-new_898.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_898.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_899.RULE b/src/licensedcode/data/rules/bsd-new_899.RULE index f75cf83a50b..93d2f0c9973 100644 --- a/src/licensedcode/data/rules/bsd-new_899.RULE +++ b/src/licensedcode/data/rules/bsd-new_899.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +29,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_899.yml b/src/licensedcode/data/rules/bsd-new_899.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_899.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_9.RULE b/src/licensedcode/data/rules/bsd-new_9.RULE index 058b20914d6..cab188c5d53 100644 --- a/src/licensedcode/data/rules/bsd-new_9.RULE +++ b/src/licensedcode/data/rules/bsd-new_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +notes: BSD new variant, Carnegie +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +27,4 @@ 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. + IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_9.yml b/src/licensedcode/data/rules/bsd-new_9.yml deleted file mode 100644 index d2110749b9a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -notes: BSD new variant, Carnegie diff --git a/src/licensedcode/data/rules/bsd-new_90.RULE b/src/licensedcode/data/rules/bsd-new_90.RULE index 597a85a0dd3..0750b71c12a 100644 --- a/src/licensedcode/data/rules/bsd-new_90.RULE +++ b/src/licensedcode/data/rules/bsd-new_90.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +26,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_90.yml b/src/licensedcode/data/rules/bsd-new_90.yml deleted file mode 100644 index f19629f4b37..00000000000 --- a/src/licensedcode/data/rules/bsd-new_90.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes diff --git a/src/licensedcode/data/rules/bsd-new_900.RULE b/src/licensedcode/data/rules/bsd-new_900.RULE index 64a05c5aae8..1e14f28d3f1 100644 --- a/src/licensedcode/data/rules/bsd-new_900.RULE +++ b/src/licensedcode/data/rules/bsd-new_900.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_900.yml b/src/licensedcode/data/rules/bsd-new_900.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_900.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_901.RULE b/src/licensedcode/data/rules/bsd-new_901.RULE index 15c0376db90..4f8a8c1c739 100644 --- a/src/licensedcode/data/rules/bsd-new_901.RULE +++ b/src/licensedcode/data/rules/bsd-new_901.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_901.yml b/src/licensedcode/data/rules/bsd-new_901.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_901.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_902.RULE b/src/licensedcode/data/rules/bsd-new_902.RULE index 93c704d85c2..3af0ee2db81 100644 --- a/src/licensedcode/data/rules/bsd-new_902.RULE +++ b/src/licensedcode/data/rules/bsd-new_902.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_902.yml b/src/licensedcode/data/rules/bsd-new_902.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_902.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_903.RULE b/src/licensedcode/data/rules/bsd-new_903.RULE index c6d39033150..5f0e9726ad8 100644 --- a/src/licensedcode/data/rules/bsd-new_903.RULE +++ b/src/licensedcode/data/rules/bsd-new_903.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_903.yml b/src/licensedcode/data/rules/bsd-new_903.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_903.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_904.RULE b/src/licensedcode/data/rules/bsd-new_904.RULE index 688c400e6d7..38a7d3e151f 100644 --- a/src/licensedcode/data/rules/bsd-new_904.RULE +++ b/src/licensedcode/data/rules/bsd-new_904.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 CLAUSE LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_904.yml b/src/licensedcode/data/rules/bsd-new_904.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_904.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_905.RULE b/src/licensedcode/data/rules/bsd-new_905.RULE index 2825d4a2cc7..82fbd6a2f85 100644 --- a/src/licensedcode/data/rules/bsd-new_905.RULE +++ b/src/licensedcode/data/rules/bsd-new_905.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE BSD-3 CLAUSE LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_905.yml b/src/licensedcode/data/rules/bsd-new_905.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_905.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_906.RULE b/src/licensedcode/data/rules/bsd-new_906.RULE index 28fa30045fa..fb6d7803668 100644 --- a/src/licensedcode/data/rules/bsd-new_906.RULE +++ b/src/licensedcode/data/rules/bsd-new_906.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + UNDER THE TERMS OF THE BSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_906.yml b/src/licensedcode/data/rules/bsd-new_906.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_906.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_907.RULE b/src/licensedcode/data/rules/bsd-new_907.RULE index 878483a017a..aa6176edb73 100644 --- a/src/licensedcode/data/rules/bsd-new_907.RULE +++ b/src/licensedcode/data/rules/bsd-new_907.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: typo in andor +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_907.yml b/src/licensedcode/data/rules/bsd-new_907.yml deleted file mode 100644 index 1ef9a2875ca..00000000000 --- a/src/licensedcode/data/rules/bsd-new_907.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: typo in andor diff --git a/src/licensedcode/data/rules/bsd-new_908.RULE b/src/licensedcode/data/rules/bsd-new_908.RULE index 202d7203d3a..11c3b1ba540 100644 --- a/src/licensedcode/data/rules/bsd-new_908.RULE +++ b/src/licensedcode/data/rules/bsd-new_908.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: bsd-new variant seen in libuuid and often in combo with an LGPL alternative in libgcrypt + with typo in andor +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_908.yml b/src/licensedcode/data/rules/bsd-new_908.yml deleted file mode 100644 index 2e884b0a978..00000000000 --- a/src/licensedcode/data/rules/bsd-new_908.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: bsd-new variant seen in libuuid and often in combo with an LGPL alternative in libgcrypt - with typo in andor diff --git a/src/licensedcode/data/rules/bsd-new_909.RULE b/src/licensedcode/data/rules/bsd-new_909.RULE index 3ab5c3397fc..21f82070fde 100644 --- a/src/licensedcode/data/rules/bsd-new_909.RULE +++ b/src/licensedcode/data/rules/bsd-new_909.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 CLAUSE LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_909.yml b/src/licensedcode/data/rules/bsd-new_909.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_909.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_91.RULE b/src/licensedcode/data/rules/bsd-new_91.RULE index e8cbfb1ddc8..c79e909347f 100644 --- a/src/licensedcode/data/rules/bsd-new_91.RULE +++ b/src/licensedcode/data/rules/bsd-new_91.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,4 +27,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_91.yml b/src/licensedcode/data/rules/bsd-new_91.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_91.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_910.RULE b/src/licensedcode/data/rules/bsd-new_910.RULE index 0ca31b0dcde..63d6af9e67f 100644 --- a/src/licensedcode/data/rules/bsd-new_910.RULE +++ b/src/licensedcode/data/rules/bsd-new_910.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_910.yml b/src/licensedcode/data/rules/bsd-new_910.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_910.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_911.RULE b/src/licensedcode/data/rules/bsd-new_911.RULE index 8c87f39d7fb..f51260e8b0e 100644 --- a/src/licensedcode/data/rules/bsd-new_911.RULE +++ b/src/licensedcode/data/rules/bsd-new_911.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_911.yml b/src/licensedcode/data/rules/bsd-new_911.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_911.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_912.RULE b/src/licensedcode/data/rules/bsd-new_912.RULE index 3716e8bcb24..a5a2ba45c6b 100644 --- a/src/licensedcode/data/rules/bsd-new_912.RULE +++ b/src/licensedcode/data/rules/bsd-new_912.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_912.yml b/src/licensedcode/data/rules/bsd-new_912.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_912.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_913.RULE b/src/licensedcode/data/rules/bsd-new_913.RULE index 18f84f98881..a126ba9fc97 100644 --- a/src/licensedcode/data/rules/bsd-new_913.RULE +++ b/src/licensedcode/data/rules/bsd-new_913.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_913.yml b/src/licensedcode/data/rules/bsd-new_913.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_913.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_914.RULE b/src/licensedcode/data/rules/bsd-new_914.RULE index 655d997a6a1..0f09e97b308 100644 --- a/src/licensedcode/data/rules/bsd-new_914.RULE +++ b/src/licensedcode/data/rules/bsd-new_914.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_914.yml b/src/licensedcode/data/rules/bsd-new_914.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_914.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_915.RULE b/src/licensedcode/data/rules/bsd-new_915.RULE index c4b03dee0fc..6f67a9854c9 100644 --- a/src/licensedcode/data/rules/bsd-new_915.RULE +++ b/src/licensedcode/data/rules/bsd-new_915.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + contain material derived from BSD and which use the BSD 3-clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_915.yml b/src/licensedcode/data/rules/bsd-new_915.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_915.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_916.RULE b/src/licensedcode/data/rules/bsd-new_916.RULE index 162728b7a71..876bcec5a31 100644 --- a/src/licensedcode/data/rules/bsd-new_916.RULE +++ b/src/licensedcode/data/rules/bsd-new_916.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + use the BSD 3-clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_916.yml b/src/licensedcode/data/rules/bsd-new_916.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_916.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_917.RULE b/src/licensedcode/data/rules/bsd-new_917.RULE index 8ea58143d47..5fcf261a67c 100644 --- a/src/licensedcode/data/rules/bsd-new_917.RULE +++ b/src/licensedcode/data/rules/bsd-new_917.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + Licensed under the BSD License (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_917.yml b/src/licensedcode/data/rules/bsd-new_917.yml deleted file mode 100644 index 1a6b1a6d080..00000000000 --- a/src/licensedcode/data/rules/bsd-new_917.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_918.RULE b/src/licensedcode/data/rules/bsd-new_918.RULE index 80e3bef07ad..f240cacdd28 100644 --- a/src/licensedcode/data/rules/bsd-new_918.RULE +++ b/src/licensedcode/data/rules/bsd-new_918.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/bsd-license.php +--- + Licensed under the BSD License (https://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_918.yml b/src/licensedcode/data/rules/bsd-new_918.yml deleted file mode 100644 index 1f400cc0687..00000000000 --- a/src/licensedcode/data/rules/bsd-new_918.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_919.RULE b/src/licensedcode/data/rules/bsd-new_919.RULE index ff979b11276..c9330239983 100644 --- a/src/licensedcode/data/rules/bsd-new_919.RULE +++ b/src/licensedcode/data/rules/bsd-new_919.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +notes: EDL as in Eclipse Distribution License is a bsd-new +--- + EDL 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_919.yml b/src/licensedcode/data/rules/bsd-new_919.yml deleted file mode 100644 index 13c593e6654..00000000000 --- a/src/licensedcode/data/rules/bsd-new_919.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 -notes: EDL as in Eclipse Distribution License is a bsd-new diff --git a/src/licensedcode/data/rules/bsd-new_91_1.RULE b/src/licensedcode/data/rules/bsd-new_91_1.RULE index c37cf48ef9c..797d2f257e5 100644 --- a/src/licensedcode/data/rules/bsd-new_91_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_91_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: openib +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +28,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_91_1.yml b/src/licensedcode/data/rules/bsd-new_91_1.yml deleted file mode 100644 index a4d219d37a9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_91_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: openib diff --git a/src/licensedcode/data/rules/bsd-new_92.RULE b/src/licensedcode/data/rules/bsd-new_92.RULE index 7c767981ed8..247b0f0c669 100644 --- a/src/licensedcode/data/rules/bsd-new_92.RULE +++ b/src/licensedcode/data/rules/bsd-new_92.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -19,4 +24,4 @@ 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. +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_92.yml b/src/licensedcode/data/rules/bsd-new_92.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_92.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_920.RULE b/src/licensedcode/data/rules/bsd-new_920.RULE index c71ef1eae37..d1c5a03890a 100644 --- a/src/licensedcode/data/rules/bsd-new_920.RULE +++ b/src/licensedcode/data/rules/bsd-new_920.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + is distributed under BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_920.yml b/src/licensedcode/data/rules/bsd-new_920.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_920.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_921.RULE b/src/licensedcode/data/rules/bsd-new_921.RULE index 9e8225dcb7d..19a43572949 100644 --- a/src/licensedcode/data/rules/bsd-new_921.RULE +++ b/src/licensedcode/data/rules/bsd-new_921.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under the BSD license, see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_921.yml b/src/licensedcode/data/rules/bsd-new_921.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_921.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_922.RULE b/src/licensedcode/data/rules/bsd-new_922.RULE index b20683337c3..515701135f3 100644 --- a/src/licensedcode/data/rules/bsd-new_922.RULE +++ b/src/licensedcode/data/rules/bsd-new_922.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + LICENSE INFORMATION: BSD-3 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_922.yml b/src/licensedcode/data/rules/bsd-new_922.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_922.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_923.RULE b/src/licensedcode/data/rules/bsd-new_923.RULE index ec695417fb9..d9995dcda22 100644 --- a/src/licensedcode/data/rules/bsd-new_923.RULE +++ b/src/licensedcode/data/rules/bsd-new_923.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/COPYING.BSD-3 +--- + licenses\COPYING.BSD-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_923.yml b/src/licensedcode/data/rules/bsd-new_923.yml deleted file mode 100644 index 3f7839152be..00000000000 --- a/src/licensedcode/data/rules/bsd-new_923.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/COPYING.BSD-3 diff --git a/src/licensedcode/data/rules/bsd-new_924.RULE b/src/licensedcode/data/rules/bsd-new_924.RULE index c8fbf179948..9aea12e194f 100644 --- a/src/licensedcode/data/rules/bsd-new_924.RULE +++ b/src/licensedcode/data/rules/bsd-new_924.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.BSD-3 +--- + COPYING.BSD-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_924.yml b/src/licensedcode/data/rules/bsd-new_924.yml deleted file mode 100644 index d94c0871cf0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_924.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.BSD-3 diff --git a/src/licensedcode/data/rules/bsd-new_925.RULE b/src/licensedcode/data/rules/bsd-new_925.RULE index 8b35f82b511..d664625b3c4 100644 --- a/src/licensedcode/data/rules/bsd-new_925.RULE +++ b/src/licensedcode/data/rules/bsd-new_925.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD-3-Clause - BSD 3-Clause "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_925.yml b/src/licensedcode/data/rules/bsd-new_925.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_925.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_926.RULE b/src/licensedcode/data/rules/bsd-new_926.RULE index a6de1ed21ae..4d58a12d156 100644 --- a/src/licensedcode/data/rules/bsd-new_926.RULE +++ b/src/licensedcode/data/rules/bsd-new_926.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + LICENSE INFORMATION: BSD Style \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_926.yml b/src/licensedcode/data/rules/bsd-new_926.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_926.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_927.RULE b/src/licensedcode/data/rules/bsd-new_927.RULE index 901b6b43e42..ed2c3f57a5c 100644 --- a/src/licensedcode/data/rules/bsd-new_927.RULE +++ b/src/licensedcode/data/rules/bsd-new_927.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the Modified (3 clause) Berkeley Software Distribution License diff --git a/src/licensedcode/data/rules/bsd-new_927.yml b/src/licensedcode/data/rules/bsd-new_927.yml deleted file mode 100644 index c2a7c30d11e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_927.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html diff --git a/src/licensedcode/data/rules/bsd-new_928.RULE b/src/licensedcode/data/rules/bsd-new_928.RULE index 12e09ff71d8..12b5bf939e4 100644 --- a/src/licensedcode/data/rules/bsd-new_928.RULE +++ b/src/licensedcode/data/rules/bsd-new_928.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +--- + It is licensed for use, modification and redistribution under the terms of the Modified (3 clause) Berkeley Software Distribution License diff --git a/src/licensedcode/data/rules/bsd-new_928.yml b/src/licensedcode/data/rules/bsd-new_928.yml deleted file mode 100644 index abd3be50935..00000000000 --- a/src/licensedcode/data/rules/bsd-new_928.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html diff --git a/src/licensedcode/data/rules/bsd-new_929.RULE b/src/licensedcode/data/rules/bsd-new_929.RULE index bd0058aa143..91c9f6d54de 100644 --- a/src/licensedcode/data/rules/bsd-new_929.RULE +++ b/src/licensedcode/data/rules/bsd-new_929.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_929.yml b/src/licensedcode/data/rules/bsd-new_929.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_929.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_93.RULE b/src/licensedcode/data/rules/bsd-new_93.RULE index 02a92afd196..3630e30e9bf 100644 --- a/src/licensedcode/data/rules/bsd-new_93.RULE +++ b/src/licensedcode/data/rules/bsd-new_93.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -24,4 +29,4 @@ modification, are permitted provided that the following conditions are met: 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. + DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_93.yml b/src/licensedcode/data/rules/bsd-new_93.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_930.RULE b/src/licensedcode/data/rules/bsd-new_930.RULE index cb03f28df02..2f43ce257e9 100644 --- a/src/licensedcode/data/rules/bsd-new_930.RULE +++ b/src/licensedcode/data/rules/bsd-new_930.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_930.yml b/src/licensedcode/data/rules/bsd-new_930.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_930.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_931.RULE b/src/licensedcode/data/rules/bsd-new_931.RULE index 429557287e0..91a2704456c 100644 --- a/src/licensedcode/data/rules/bsd-new_931.RULE +++ b/src/licensedcode/data/rules/bsd-new_931.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the 3-Clause BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_931.yml b/src/licensedcode/data/rules/bsd-new_931.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_931.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_932.RULE b/src/licensedcode/data/rules/bsd-new_932.RULE index 31a0fa20206..6cefd9c6cb4 100644 --- a/src/licensedcode/data/rules/bsd-new_932.RULE +++ b/src/licensedcode/data/rules/bsd-new_932.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + License This project is licensed under the 3-Clause BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_932.yml b/src/licensedcode/data/rules/bsd-new_932.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_932.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_933.RULE b/src/licensedcode/data/rules/bsd-new_933.RULE index 40a4b588d6e..6be804a1f0c 100644 --- a/src/licensedcode/data/rules/bsd-new_933.RULE +++ b/src/licensedcode/data/rules/bsd-new_933.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_933.yml b/src/licensedcode/data/rules/bsd-new_933.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_933.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_934.RULE b/src/licensedcode/data/rules/bsd-new_934.RULE index 9af3f2cc954..be4912cca02 100644 --- a/src/licensedcode/data/rules/bsd-new_934.RULE +++ b/src/licensedcode/data/rules/bsd-new_934.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + UNDER THE TERMS OF THE BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_934.yml b/src/licensedcode/data/rules/bsd-new_934.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_934.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_935.RULE b/src/licensedcode/data/rules/bsd-new_935.RULE index 27408af4916..032bfcf8a01 100644 --- a/src/licensedcode/data/rules/bsd-new_935.RULE +++ b/src/licensedcode/data/rules/bsd-new_935.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_935.yml b/src/licensedcode/data/rules/bsd-new_935.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_935.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_936.RULE b/src/licensedcode/data/rules/bsd-new_936.RULE index 0692a90ed82..25a90e7979b 100644 --- a/src/licensedcode/data/rules/bsd-new_936.RULE +++ b/src/licensedcode/data/rules/bsd-new_936.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms of this module, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_936.yml b/src/licensedcode/data/rules/bsd-new_936.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_936.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_937.RULE b/src/licensedcode/data/rules/bsd-new_937.RULE index cba6b5ad414..3678ebc49a7 100644 --- a/src/licensedcode/data/rules/bsd-new_937.RULE +++ b/src/licensedcode/data/rules/bsd-new_937.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_937.yml b/src/licensedcode/data/rules/bsd-new_937.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_937.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_938.RULE b/src/licensedcode/data/rules/bsd-new_938.RULE index 403ce89f596..3c14e9b55c6 100644 --- a/src/licensedcode/data/rules/bsd-new_938.RULE +++ b/src/licensedcode/data/rules/bsd-new_938.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_938.yml b/src/licensedcode/data/rules/bsd-new_938.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_938.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_939.RULE b/src/licensedcode/data/rules/bsd-new_939.RULE index fbea0883aa5..51ba6b4230f 100644 --- a/src/licensedcode/data/rules/bsd-new_939.RULE +++ b/src/licensedcode/data/rules/bsd-new_939.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_939.yml b/src/licensedcode/data/rules/bsd-new_939.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_939.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_94.RULE b/src/licensedcode/data/rules/bsd-new_94.RULE index 7c2e8407f73..defdc4eadc9 100644 --- a/src/licensedcode/data/rules/bsd-new_94.RULE +++ b/src/licensedcode/data/rules/bsd-new_94.RULE @@ -1,3 +1,8 @@ +--- +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: * @@ -20,4 +25,4 @@ * 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. + * 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_94.yml b/src/licensedcode/data/rules/bsd-new_94.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_94.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_940.RULE b/src/licensedcode/data/rules/bsd-new_940.RULE index 59c2f18c982..fe2dabffad6 100644 --- a/src/licensedcode/data/rules/bsd-new_940.RULE +++ b/src/licensedcode/data/rules/bsd-new_940.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_940.yml b/src/licensedcode/data/rules/bsd-new_940.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_940.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_941.RULE b/src/licensedcode/data/rules/bsd-new_941.RULE index 934f45dea09..28fbc3f2a81 100644 --- a/src/licensedcode/data/rules/bsd-new_941.RULE +++ b/src/licensedcode/data/rules/bsd-new_941.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_941.yml b/src/licensedcode/data/rules/bsd-new_941.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_941.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_942.RULE b/src/licensedcode/data/rules/bsd-new_942.RULE index 75bbc8f22ea..8b6631fd26c 100644 --- a/src/licensedcode/data/rules/bsd-new_942.RULE +++ b/src/licensedcode/data/rules/bsd-new_942.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_942.yml b/src/licensedcode/data/rules/bsd-new_942.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_942.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_943.RULE b/src/licensedcode/data/rules/bsd-new_943.RULE index 3a6fa35accd..9c2088a68cf 100644 --- a/src/licensedcode/data/rules/bsd-new_943.RULE +++ b/src/licensedcode/data/rules/bsd-new_943.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_943.yml b/src/licensedcode/data/rules/bsd-new_943.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_943.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_944.RULE b/src/licensedcode/data/rules/bsd-new_944.RULE index 7675b88850a..f4c50570543 100644 --- a/src/licensedcode/data/rules/bsd-new_944.RULE +++ b/src/licensedcode/data/rules/bsd-new_944.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_944.yml b/src/licensedcode/data/rules/bsd-new_944.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_944.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_945.RULE b/src/licensedcode/data/rules/bsd-new_945.RULE index e4232ae3a0b..aa77cb87f62 100644 --- a/src/licensedcode/data/rules/bsd-new_945.RULE +++ b/src/licensedcode/data/rules/bsd-new_945.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE BSD-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_945.yml b/src/licensedcode/data/rules/bsd-new_945.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_945.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_946.RULE b/src/licensedcode/data/rules/bsd-new_946.RULE index ff46df7b22c..8715a340ed8 100644 --- a/src/licensedcode/data/rules/bsd-new_946.RULE +++ b/src/licensedcode/data/rules/bsd-new_946.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +--- + License: BSD – 3Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_946.yml b/src/licensedcode/data/rules/bsd-new_946.yml deleted file mode 100644 index c22575d962c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_946.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_947.RULE b/src/licensedcode/data/rules/bsd-new_947.RULE index 25b7911bd5a..abe50f99d73 100644 --- a/src/licensedcode/data/rules/bsd-new_947.RULE +++ b/src/licensedcode/data/rules/bsd-new_947.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + BSD - 3Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_947.yml b/src/licensedcode/data/rules/bsd-new_947.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_947.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_948.RULE b/src/licensedcode/data/rules/bsd-new_948.RULE index 52d0b319816..6a38b54c1f7 100644 --- a/src/licensedcode/data/rules/bsd-new_948.RULE +++ b/src/licensedcode/data/rules/bsd-new_948.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_948.yml b/src/licensedcode/data/rules/bsd-new_948.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_948.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_949.RULE b/src/licensedcode/data/rules/bsd-new_949.RULE index 2eb162c65ee..90f08f2453e 100644 --- a/src/licensedcode/data/rules/bsd-new_949.RULE +++ b/src/licensedcode/data/rules/bsd-new_949.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_949.yml b/src/licensedcode/data/rules/bsd-new_949.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_949.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_95.RULE b/src/licensedcode/data/rules/bsd-new_95.RULE index 8a6ca77f398..2f3ab30fae4 100644 --- a/src/licensedcode/data/rules/bsd-new_95.RULE +++ b/src/licensedcode/data/rules/bsd-new_95.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -22,5 +27,4 @@ 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. - +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_95.yml b/src/licensedcode/data/rules/bsd-new_95.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_95.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_950.RULE b/src/licensedcode/data/rules/bsd-new_950.RULE index d3b0cd7dc6b..74b7ebc032a 100644 --- a/src/licensedcode/data/rules/bsd-new_950.RULE +++ b/src/licensedcode/data/rules/bsd-new_950.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + routines are under the modified BSD license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_950.yml b/src/licensedcode/data/rules/bsd-new_950.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_950.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_951.RULE b/src/licensedcode/data/rules/bsd-new_951.RULE index da52563f9a4..cb298450def 100644 --- a/src/licensedcode/data/rules/bsd-new_951.RULE +++ b/src/licensedcode/data/rules/bsd-new_951.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + Copyright and License This code is copyright its authors, and is distributed under the `BSD diff --git a/src/licensedcode/data/rules/bsd-new_951.yml b/src/licensedcode/data/rules/bsd-new_951.yml deleted file mode 100644 index 9179a28ecea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_951.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_952.RULE b/src/licensedcode/data/rules/bsd-new_952.RULE index 14a5f9d2a83..357ef5c2783 100644 --- a/src/licensedcode/data/rules/bsd-new_952.RULE +++ b/src/licensedcode/data/rules/bsd-new_952.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under a **[liberal BSD 3-clause license](LICENSE)**. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_952.yml b/src/licensedcode/data/rules/bsd-new_952.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_952.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_953.RULE b/src/licensedcode/data/rules/bsd-new_953.RULE index e269f825f52..18c5c19e05a 100644 --- a/src/licensedcode/data/rules/bsd-new_953.RULE +++ b/src/licensedcode/data/rules/bsd-new_953.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under a **[liberal BSD 3-clause license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_953.yml b/src/licensedcode/data/rules/bsd-new_953.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_953.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_954.RULE b/src/licensedcode/data/rules/bsd-new_954.RULE index d431f09a32b..9edc8dd9e26 100644 --- a/src/licensedcode/data/rules/bsd-new_954.RULE +++ b/src/licensedcode/data/rules/bsd-new_954.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under a **[liberal BSD 3-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_954.yml b/src/licensedcode/data/rules/bsd-new_954.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_954.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_955.RULE b/src/licensedcode/data/rules/bsd-new_955.RULE index 05847ce9222..cb1211b3f71 100644 --- a/src/licensedcode/data/rules/bsd-new_955.RULE +++ b/src/licensedcode/data/rules/bsd-new_955.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under a BSD 3-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_955.yml b/src/licensedcode/data/rules/bsd-new_955.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_955.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_956.RULE b/src/licensedcode/data/rules/bsd-new_956.RULE index c32e6871d3b..9d7a3f71b6b 100644 --- a/src/licensedcode/data/rules/bsd-new_956.RULE +++ b/src/licensedcode/data/rules/bsd-new_956.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under a BSD 3-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_956.yml b/src/licensedcode/data/rules/bsd-new_956.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_956.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_957.RULE b/src/licensedcode/data/rules/bsd-new_957.RULE index fe2456982c3..57683e59ff2 100644 --- a/src/licensedcode/data/rules/bsd-new_957.RULE +++ b/src/licensedcode/data/rules/bsd-new_957.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + now BSD licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_957.yml b/src/licensedcode/data/rules/bsd-new_957.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_957.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_958.RULE b/src/licensedcode/data/rules/bsd-new_958.RULE index a6a49436449..85963cee4c5 100644 --- a/src/licensedcode/data/rules/bsd-new_958.RULE +++ b/src/licensedcode/data/rules/bsd-new_958.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Licensed under the revised BSD license. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_958.yml b/src/licensedcode/data/rules/bsd-new_958.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_958.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_959.RULE b/src/licensedcode/data/rules/bsd-new_959.RULE index 174df2d9a9a..c3db0336bb5 100644 --- a/src/licensedcode/data/rules/bsd-new_959.RULE +++ b/src/licensedcode/data/rules/bsd-new_959.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Licensed under the revised BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_959.yml b/src/licensedcode/data/rules/bsd-new_959.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_959.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_96.RULE b/src/licensedcode/data/rules/bsd-new_96.RULE index 3b945d25769..febc1aa7dfa 100644 --- a/src/licensedcode/data/rules/bsd-new_96.RULE +++ b/src/licensedcode/data/rules/bsd-new_96.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -19,4 +24,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_96.yml b/src/licensedcode/data/rules/bsd-new_96.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_96.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_960.RULE b/src/licensedcode/data/rules/bsd-new_960.RULE index 4613ac6b4a6..8c283b4305d 100644 --- a/src/licensedcode/data/rules/bsd-new_960.RULE +++ b/src/licensedcode/data/rules/bsd-new_960.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +--- + This software is open source. Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_960.yml b/src/licensedcode/data/rules/bsd-new_960.yml deleted file mode 100644 index 93f1cb11377..00000000000 --- a/src/licensedcode/data/rules/bsd-new_960.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_961.RULE b/src/licensedcode/data/rules/bsd-new_961.RULE index c4f737aae8e..f37dee72f04 100644 --- a/src/licensedcode/data/rules/bsd-new_961.RULE +++ b/src/licensedcode/data/rules/bsd-new_961.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_961.yml b/src/licensedcode/data/rules/bsd-new_961.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_961.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_962.RULE b/src/licensedcode/data/rules/bsd-new_962.RULE index c93a849fc2a..9c4ce02ffa9 100644 --- a/src/licensedcode/data/rules/bsd-new_962.RULE +++ b/src/licensedcode/data/rules/bsd-new_962.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_962.yml b/src/licensedcode/data/rules/bsd-new_962.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_962.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_963.RULE b/src/licensedcode/data/rules/bsd-new_963.RULE index 3dd4c98c581..c2f2feb2d03 100644 --- a/src/licensedcode/data/rules/bsd-new_963.RULE +++ b/src/licensedcode/data/rules/bsd-new_963.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_963.yml b/src/licensedcode/data/rules/bsd-new_963.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_963.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_964.RULE b/src/licensedcode/data/rules/bsd-new_964.RULE index a927c86c680..4130656b125 100644 --- a/src/licensedcode/data/rules/bsd-new_964.RULE +++ b/src/licensedcode/data/rules/bsd-new_964.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_964.yml b/src/licensedcode/data/rules/bsd-new_964.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_964.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_965.RULE b/src/licensedcode/data/rules/bsd-new_965.RULE index 348ac987846..b666b6b4890 100644 --- a/src/licensedcode/data/rules/bsd-new_965.RULE +++ b/src/licensedcode/data/rules/bsd-new_965.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 99 +--- + This is the BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_965.yml b/src/licensedcode/data/rules/bsd-new_965.yml deleted file mode 100644 index bb1a896f7fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_965.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_966.RULE b/src/licensedcode/data/rules/bsd-new_966.RULE index ab01b7cc23f..8aa1a3e4350 100644 --- a/src/licensedcode/data/rules/bsd-new_966.RULE +++ b/src/licensedcode/data/rules/bsd-new_966.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +notes: typo in STRING LIABILITY instead of STRICT LIABILITY +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_966.yml b/src/licensedcode/data/rules/bsd-new_966.yml deleted file mode 100644 index 4a5ca45ad14..00000000000 --- a/src/licensedcode/data/rules/bsd-new_966.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -notes: typo in STRING LIABILITY instead of STRICT LIABILITY diff --git a/src/licensedcode/data/rules/bsd-new_967.RULE b/src/licensedcode/data/rules/bsd-new_967.RULE index 7262f9a97b5..5aefe841b08 100644 --- a/src/licensedcode/data/rules/bsd-new_967.RULE +++ b/src/licensedcode/data/rules/bsd-new_967.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + The Berkeley software License Agreement specifies the terms and conditions for redistribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_967.yml b/src/licensedcode/data/rules/bsd-new_967.yml deleted file mode 100644 index 963e47e127a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_967.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_968.RULE b/src/licensedcode/data/rules/bsd-new_968.RULE index 714f85f1c6f..a4756861dec 100644 --- a/src/licensedcode/data/rules/bsd-new_968.RULE +++ b/src/licensedcode/data/rules/bsd-new_968.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_968.yml b/src/licensedcode/data/rules/bsd-new_968.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_968.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_969.RULE b/src/licensedcode/data/rules/bsd-new_969.RULE index a1424c0feac..5bf4eb2e20c 100644 --- a/src/licensedcode/data/rules/bsd-new_969.RULE +++ b/src/licensedcode/data/rules/bsd-new_969.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_969.yml b/src/licensedcode/data/rules/bsd-new_969.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_969.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_97.RULE b/src/licensedcode/data/rules/bsd-new_97.RULE index 322b37b3f50..16d7f90b4a7 100644 --- a/src/licensedcode/data/rules/bsd-new_97.RULE +++ b/src/licensedcode/data/rules/bsd-new_97.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -19,4 +24,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_97.yml b/src/licensedcode/data/rules/bsd-new_97.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_97.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_970.RULE b/src/licensedcode/data/rules/bsd-new_970.RULE index 41bc7416a1a..8cec25e922b 100644 --- a/src/licensedcode/data/rules/bsd-new_970.RULE +++ b/src/licensedcode/data/rules/bsd-new_970.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: minor the repetion in "the the documentation" +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_970.yml b/src/licensedcode/data/rules/bsd-new_970.yml deleted file mode 100644 index a5fed323f0e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_970.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: minor the repetion in "the the documentation" diff --git a/src/licensedcode/data/rules/bsd-new_971.RULE b/src/licensedcode/data/rules/bsd-new_971.RULE index 8d5d7adcaa7..0e63511c1bd 100644 --- a/src/licensedcode/data/rules/bsd-new_971.RULE +++ b/src/licensedcode/data/rules/bsd-new_971.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + Based on BSD-licensed source \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_971.yml b/src/licensedcode/data/rules/bsd-new_971.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_971.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_972.RULE b/src/licensedcode/data/rules/bsd-new_972.RULE index b782b68f590..9240bbafa7a 100644 --- a/src/licensedcode/data/rules/bsd-new_972.RULE +++ b/src/licensedcode/data/rules/bsd-new_972.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + BSD-licensed source \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_972.yml b/src/licensedcode/data/rules/bsd-new_972.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_972.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_973.RULE b/src/licensedcode/data/rules/bsd-new_973.RULE index 82240aede5c..bfe1d8fde47 100644 --- a/src/licensedcode/data/rules/bsd-new_973.RULE +++ b/src/licensedcode/data/rules/bsd-new_973.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + under a BSD 3-Clause license, see LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_973.yml b/src/licensedcode/data/rules/bsd-new_973.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_973.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_974.RULE b/src/licensedcode/data/rules/bsd-new_974.RULE index d9343d1e5e5..5139285ea33 100644 --- a/src/licensedcode/data/rules/bsd-new_974.RULE +++ b/src/licensedcode/data/rules/bsd-new_974.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + under a BSD 3-Clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_974.yml b/src/licensedcode/data/rules/bsd-new_974.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_974.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_975.RULE b/src/licensedcode/data/rules/bsd-new_975.RULE index a4b5d434514..617ee3748f2 100644 --- a/src/licensedcode/data/rules/bsd-new_975.RULE +++ b/src/licensedcode/data/rules/bsd-new_975.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + under a BSD 3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_975.yml b/src/licensedcode/data/rules/bsd-new_975.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_975.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_976.RULE b/src/licensedcode/data/rules/bsd-new_976.RULE index daa103675a5..7aac9ad5e6f 100644 --- a/src/licensedcode/data/rules/bsd-new_976.RULE +++ b/src/licensedcode/data/rules/bsd-new_976.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_976.yml b/src/licensedcode/data/rules/bsd-new_976.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_976.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_977.RULE b/src/licensedcode/data/rules/bsd-new_977.RULE index bc15efa6d09..1aea12d50a7 100644 --- a/src/licensedcode/data/rules/bsd-new_977.RULE +++ b/src/licensedcode/data/rules/bsd-new_977.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause.html +--- + BSD 3-Clause New License (https://spdx.org/licenses/BSD-3-Clause.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_977.yml b/src/licensedcode/data/rules/bsd-new_977.yml deleted file mode 100644 index fccdba3fa9c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_977.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause.html diff --git a/src/licensedcode/data/rules/bsd-new_978.RULE b/src/licensedcode/data/rules/bsd-new_978.RULE index 65b827d72e2..b57aa0ae89e 100644 --- a/src/licensedcode/data/rules/bsd-new_978.RULE +++ b/src/licensedcode/data/rules/bsd-new_978.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + 3 clause Berkeley license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_978.yml b/src/licensedcode/data/rules/bsd-new_978.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_978.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_979.RULE b/src/licensedcode/data/rules/bsd-new_979.RULE index 37a7d21c8cd..789795a2197 100644 --- a/src/licensedcode/data/rules/bsd-new_979.RULE +++ b/src/licensedcode/data/rules/bsd-new_979.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + 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 @@ -18,4 +24,4 @@ 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. +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_979.yml b/src/licensedcode/data/rules/bsd-new_979.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_979.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_98.RULE b/src/licensedcode/data/rules/bsd-new_98.RULE index d7b919ea640..2fce2740c1f 100644 --- a/src/licensedcode/data/rules/bsd-new_98.RULE +++ b/src/licensedcode/data/rules/bsd-new_98.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_98.yml b/src/licensedcode/data/rules/bsd-new_98.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_98.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_980.RULE b/src/licensedcode/data/rules/bsd-new_980.RULE index 88e3c3e3700..b4a51ab2d82 100644 --- a/src/licensedcode/data/rules/bsd-new_980.RULE +++ b/src/licensedcode/data/rules/bsd-new_980.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_980.yml b/src/licensedcode/data/rules/bsd-new_980.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_980.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_981.RULE b/src/licensedcode/data/rules/bsd-new_981.RULE index 5c389f032c2..d624fac91d6 100644 --- a/src/licensedcode/data/rules/bsd-new_981.RULE +++ b/src/licensedcode/data/rules/bsd-new_981.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_981.yml b/src/licensedcode/data/rules/bsd-new_981.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_981.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_982.RULE b/src/licensedcode/data/rules/bsd-new_982.RULE index 69f4fbfd11b..8081f20d940 100644 --- a/src/licensedcode/data/rules/bsd-new_982.RULE +++ b/src/licensedcode/data/rules/bsd-new_982.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_982.yml b/src/licensedcode/data/rules/bsd-new_982.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_982.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_983.RULE b/src/licensedcode/data/rules/bsd-new_983.RULE index aced362539b..9bfc8454467 100644 --- a/src/licensedcode/data/rules/bsd-new_983.RULE +++ b/src/licensedcode/data/rules/bsd-new_983.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_983.yml b/src/licensedcode/data/rules/bsd-new_983.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_983.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_984.RULE b/src/licensedcode/data/rules/bsd-new_984.RULE index d60ce58d587..9443e5b85a2 100644 --- a/src/licensedcode/data/rules/bsd-new_984.RULE +++ b/src/licensedcode/data/rules/bsd-new_984.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +notes: Seen in pacemaker HTML doc +--- + scripts under the Revised BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_984.yml b/src/licensedcode/data/rules/bsd-new_984.yml deleted file mode 100644 index 6dac9f9e8fc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_984.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -notes: Seen in pacemaker HTML doc diff --git a/src/licensedcode/data/rules/bsd-new_985.RULE b/src/licensedcode/data/rules/bsd-new_985.RULE index 747bd1b210a..1724d51ea56 100644 --- a/src/licensedcode/data/rules/bsd-new_985.RULE +++ b/src/licensedcode/data/rules/bsd-new_985.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_985.yml b/src/licensedcode/data/rules/bsd-new_985.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_985.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_986.RULE b/src/licensedcode/data/rules/bsd-new_986.RULE index ea16b534b12..3cd75afe440 100644 --- a/src/licensedcode/data/rules/bsd-new_986.RULE +++ b/src/licensedcode/data/rules/bsd-new_986.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_986.yml b/src/licensedcode/data/rules/bsd-new_986.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_986.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_987.RULE b/src/licensedcode/data/rules/bsd-new_987.RULE index 90f06341432..0ff8ddbc27a 100644 --- a/src/licensedcode/data/rules/bsd-new_987.RULE +++ b/src/licensedcode/data/rules/bsd-new_987.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_987.yml b/src/licensedcode/data/rules/bsd-new_987.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_987.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_988.RULE b/src/licensedcode/data/rules/bsd-new_988.RULE index 96927386328..9ee2f911388 100644 --- a/src/licensedcode/data/rules/bsd-new_988.RULE +++ b/src/licensedcode/data/rules/bsd-new_988.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +notes: Seen in mariadb +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_988.yml b/src/licensedcode/data/rules/bsd-new_988.yml deleted file mode 100644 index cd38290e0e1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_988.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -notes: Seen in mariadb diff --git a/src/licensedcode/data/rules/bsd-new_989.RULE b/src/licensedcode/data/rules/bsd-new_989.RULE index 72164eb3c6d..362c78738bb 100644 --- a/src/licensedcode/data/rules/bsd-new_989.RULE +++ b/src/licensedcode/data/rules/bsd-new_989.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://hsqldb.org/ +--- + can be distributed and used according to HSQLDB License see http://hsqldb.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_989.yml b/src/licensedcode/data/rules/bsd-new_989.yml deleted file mode 100644 index 4444574b830..00000000000 --- a/src/licensedcode/data/rules/bsd-new_989.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://hsqldb.org/ diff --git a/src/licensedcode/data/rules/bsd-new_99.RULE b/src/licensedcode/data/rules/bsd-new_99.RULE index a959addf4cf..2a221bc44e9 100644 --- a/src/licensedcode/data/rules/bsd-new_99.RULE +++ b/src/licensedcode/data/rules/bsd-new_99.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_99.yml b/src/licensedcode/data/rules/bsd-new_99.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_99.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_990.RULE b/src/licensedcode/data/rules/bsd-new_990.RULE index 2a135403001..7cae75c466b 100644 --- a/src/licensedcode/data/rules/bsd-new_990.RULE +++ b/src/licensedcode/data/rules/bsd-new_990.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +minimum_coverage: 96 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_990.yml b/src/licensedcode/data/rules/bsd-new_990.yml deleted file mode 100644 index 4b642a45865..00000000000 --- a/src/licensedcode/data/rules/bsd-new_990.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 -minimum_coverage: 96 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_991.RULE b/src/licensedcode/data/rules/bsd-new_991.RULE index c4b70567d06..2e1bf213ce2 100644 --- a/src/licensedcode/data/rules/bsd-new_991.RULE +++ b/src/licensedcode/data/rules/bsd-new_991.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 96 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license +--- + Released to public domain under terms of the BSD Simplified license. Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_991.yml b/src/licensedcode/data/rules/bsd-new_991.yml deleted file mode 100644 index ddd1354cca9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_991.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 96 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new_992.RULE b/src/licensedcode/data/rules/bsd-new_992.RULE index 05c52544fad..f9f2a505b71 100644 --- a/src/licensedcode/data/rules/bsd-new_992.RULE +++ b/src/licensedcode/data/rules/bsd-new_992.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 96 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_992.yml b/src/licensedcode/data/rules/bsd-new_992.yml deleted file mode 100644 index ddd1354cca9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_992.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 96 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license diff --git a/src/licensedcode/data/rules/bsd-new_993.RULE b/src/licensedcode/data/rules/bsd-new_993.RULE index 271990176a9..1c08f6df835 100644 --- a/src/licensedcode/data/rules/bsd-new_993.RULE +++ b/src/licensedcode/data/rules/bsd-new_993.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_993.yml b/src/licensedcode/data/rules/bsd-new_993.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_993.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_994.RULE b/src/licensedcode/data/rules/bsd-new_994.RULE index 41b6c384ce4..7928a3839c7 100644 --- a/src/licensedcode/data/rules/bsd-new_994.RULE +++ b/src/licensedcode/data/rules/bsd-new_994.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_994.yml b/src/licensedcode/data/rules/bsd-new_994.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_994.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_995.RULE b/src/licensedcode/data/rules/bsd-new_995.RULE index c8827a9fda4..72baf94fa4a 100644 --- a/src/licensedcode/data/rules/bsd-new_995.RULE +++ b/src/licensedcode/data/rules/bsd-new_995.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_995.yml b/src/licensedcode/data/rules/bsd-new_995.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_995.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_996.RULE b/src/licensedcode/data/rules/bsd-new_996.RULE index 33e17bb2d15..c623956ee66 100644 --- a/src/licensedcode/data/rules/bsd-new_996.RULE +++ b/src/licensedcode/data/rules/bsd-new_996.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_996.yml b/src/licensedcode/data/rules/bsd-new_996.yml deleted file mode 100644 index 646f0f05a97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_996.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_997.RULE b/src/licensedcode/data/rules/bsd-new_997.RULE index 312b00c7890..400af2d3330 100644 --- a/src/licensedcode/data/rules/bsd-new_997.RULE +++ b/src/licensedcode/data/rules/bsd-new_997.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Distributed under the terms of the BSD3 license (see LICENSE file) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_997.yml b/src/licensedcode/data/rules/bsd-new_997.yml deleted file mode 100644 index 77fbef666ba..00000000000 --- a/src/licensedcode/data/rules/bsd-new_997.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_998.RULE b/src/licensedcode/data/rules/bsd-new_998.RULE index 76ec4b30793..4c2b6c49652 100644 --- a/src/licensedcode/data/rules/bsd-new_998.RULE +++ b/src/licensedcode/data/rules/bsd-new_998.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + This code is made available under the BSD3 license and without any support. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_998.yml b/src/licensedcode/data/rules/bsd-new_998.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_998.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_999.RULE b/src/licensedcode/data/rules/bsd-new_999.RULE index 666e04f361f..5d6ea798c2d 100644 --- a/src/licensedcode/data/rules/bsd-new_999.RULE +++ b/src/licensedcode/data/rules/bsd-new_999.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + License This code is made available under the BSD3 license and without any support. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_999.yml b/src/licensedcode/data/rules/bsd-new_999.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-new_999.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_99_1.RULE b/src/licensedcode/data/rules/bsd-new_99_1.RULE index cbdfdd87e86..3165756a78a 100644 --- a/src/licensedcode/data/rules/bsd-new_99_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_99_1.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -23,4 +28,4 @@ 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. +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_99_1.yml b/src/licensedcode/data/rules/bsd-new_99_1.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_99_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_and_afpl-9.0_1.RULE b/src/licensedcode/data/rules/bsd-new_and_afpl-9.0_1.RULE index a0562ad330a..980ecd3567a 100644 --- a/src/licensedcode/data/rules/bsd-new_and_afpl-9.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_afpl-9.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new AND afpl-9.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.artifex.com/downloads/doc/Public.htm +--- + * The following license terms for the "XMLParser library from Business-Insight" apply to projects * that are in some way related to * the "mcpat project", including applications @@ -6,5 +14,4 @@ * (not related to "mcpat project") have to use the "XMLParser library from Business-Insight" * code under the Aladdin Free Public License (AFPL) * See the file "AFPL-license.txt" for more informations about the AFPL license. - * (see http://www.artifex.com/downloads/doc/Public.htm for detailed AFPL terms) - \ No newline at end of file + * (see http://www.artifex.com/downloads/doc/Public.htm for detailed AFPL terms) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_afpl-9.0_1.yml b/src/licensedcode/data/rules/bsd-new_and_afpl-9.0_1.yml deleted file mode 100644 index 0d24c2edecf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_afpl-9.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND afpl-9.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.artifex.com/downloads/doc/Public.htm diff --git a/src/licensedcode/data/rules/bsd-new_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/bsd-new_and_apache-2.0_1.RULE index 2326b3f67bc..84481715112 100644 --- a/src/licensedcode/data/rules/bsd-new_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Please read the LICENSE.BSD file that governs go and LICENSE.APACHE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_apache-2.0_1.yml b/src/licensedcode/data/rules/bsd-new_and_apache-2.0_1.yml deleted file mode 100644 index 946c79cfb9e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_apache2.RULE b/src/licensedcode/data/rules/bsd-new_and_apache2.RULE index 002db5ffb1d..d44b893813f 100644 --- a/src/licensedcode/data/rules/bsd-new_and_apache2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_apache2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: bsd-new OR apache-2.0 +is_license_notice: yes +--- + // This file is dual licensed under the terms of the Apache License, Version -// 2.0, and the BSD License. \ No newline at end of file +// 2.0, and the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_apache2.yml b/src/licensedcode/data/rules/bsd-new_and_apache2.yml deleted file mode 100644 index 2207c44fba6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_apache2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_and_apache3.RULE b/src/licensedcode/data/rules/bsd-new_and_apache3.RULE index 2007cd0181c..8114db15f0a 100644 --- a/src/licensedcode/data/rules/bsd-new_and_apache3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_apache3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +--- + // This file is dual licensed under the terms of the Apache License, Version // 2.0, and the BSD License. See the LICENSE file in the root of this // repository for complete details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_apache3.yml b/src/licensedcode/data/rules/bsd-new_and_apache3.yml deleted file mode 100644 index fa49c82d839..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_apache3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR apache-2.0 -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_1.RULE b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_1.RULE index 639492b7ed0..1c9c6852456 100644 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_1.RULE @@ -1,4 +1,8 @@ +--- +license_expression: bsd-new AND bsd-simplified +is_license_notice: yes +--- + The source code is derived from `FreeBSD`_ and `SCC`_. FreeBSD uses various BSD licenses, including BSD-3-Clause and BSD-2-Clause. The SCC code -is used under the BSD-3-Clause license with the author's permission. - +is used under the BSD-3-Clause license with the author's permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_1.yml b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_1.yml deleted file mode 100644 index 5853e279316..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new AND bsd-simplified -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_2.RULE b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_2.RULE index 94ef59e2392..23962424af3 100644 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_2.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new AND bsd-simplified +is_license_notice: yes +relevance: 100 +notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm +--- + The modules are 2-clause or 3-clause BSD licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_2.yml b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_2.yml deleted file mode 100644 index f68a0ab978d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND bsd-simplified -is_license_notice: yes -relevance: 100 -notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_3.RULE b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_3.RULE index 69a3d87c143..d7e36f058c7 100644 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new AND bsd-simplified +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: typo in SPDX license key found in FreeBSD +--- + SPDX-License-Identifier: BSD-3-Clause AND BSD-2-Clause-NetBSDE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_3.yml b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_3.yml deleted file mode 100644 index b5d0d92c767..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND bsd-simplified -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: typo in SPDX license key found in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE index 65dcbe1d05d..7e3a19907df 100644 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-new AND bsd-simplified AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) +is_license_notice: yes +relevance: 100 +referenced_filenames: + - source/patched-yasm/COPYING +notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm +--- + License: {{2-clause or 3-clause BSD licensed}}, with the exception of bitvect, which is {{triple-licensed under the Artistic license, GPL, and LGPL}} -License File: source/patched-yasm/COPYING +License File: source/patched-yasm/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index 4fcbd86afa7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND bsd-simplified AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) -is_license_notice: yes -relevance: 100 -referenced_filenames: - - source/patched-yasm/COPYING -notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE index 1e93d388b9c..ac7fc450188 100644 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new AND bsd-simplified AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) +is_license_notice: yes +relevance: 100 +notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm +--- + is 2-clause or 3-clause BSD licensed, with the exception of bitvect, which is triple-licensed under the Artistic license, GPL, and LGPL. is thus GPL and LGPL compatible. In addition, this also diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index e6523b71562..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND bsd-simplified AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) -is_license_notice: yes -relevance: 100 -notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_3.RULE index 0f18ae004b2..b5057276004 100644 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: bsd-new AND bsd-simplified AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - BSD.txt + - Artistic.txt + - GNU_GPL-2.0 + - GNU_LGPL-2.0 +notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm +--- + The full text of all licenses are provided in separate files in the source distribution. Each source file may include the entire license (in the case of the BSD and Artistic licenses), or may reference the GPL or LGPL license diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_3.yml deleted file mode 100644 index 60722cb8588..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_artistic-1.0_or_gpl-1.0-plus_or_lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: bsd-new AND bsd-simplified AND (artistic-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - BSD.txt - - Artistic.txt - - GNU_GPL-2.0 - - GNU_LGPL-2.0 -notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_other-permissive_1.RULE b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_other-permissive_1.RULE index b7f7a543617..e964b9763be 100644 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new AND bsd-simplified AND other-permissive +is_license_notice: yes +relevance: 100 +--- + The following files included from outside sources are protected by other people's Copyright and are distributed under various 2-clause and 3-clause BSD licenses; see these individual files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_other-permissive_1.yml b/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_other-permissive_1.yml deleted file mode 100644 index 258e7d94ac6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_bsd-simplified_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND bsd-simplified AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_cc-by-sa-3.0_1.RULE b/src/licensedcode/data/rules/bsd-new_and_cc-by-sa-3.0_1.RULE index fd8fad21c04..6fc5740e9b9 100644 --- a/src/licensedcode/data/rules/bsd-new_and_cc-by-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_cc-by-sa-3.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + BSD/CCAS 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_cc-by-sa-3.0_1.yml b/src/licensedcode/data/rules/bsd-new_and_cc-by-sa-3.0_1.yml deleted file mode 100644 index 8bd82faf0b2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_cc-by-sa-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_cc-pd.RULE b/src/licensedcode/data/rules/bsd-new_and_cc-pd.RULE index 2d8f7604c4f..a362924c5cf 100644 --- a/src/licensedcode/data/rules/bsd-new_and_cc-pd.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_cc-pd.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new AND cc-pd +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + software in the * public domain. You can find his original copyright below. Please, * aware that the code as part of is governed by the 3-clause @@ -6,4 +13,4 @@ * This software is Public Domain. To view a copy of the public domain dedication, * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. - * + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_cc-pd.yml b/src/licensedcode/data/rules/bsd-new_and_cc-pd.yml deleted file mode 100644 index 84ef99aa01b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_cc-pd.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND cc-pd -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/bsd-new_and_cc-pd2.RULE b/src/licensedcode/data/rules/bsd-new_and_cc-pd2.RULE index c6e52089217..e7454416a4d 100644 --- a/src/licensedcode/data/rules/bsd-new_and_cc-pd2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_cc-pd2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new AND cc-pd +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -31,4 +38,4 @@ This software is Public Domain. To view a copy of the public domain dedication, visit http://creativecommons.org/licenses/publicdomain/ or send a letter to - Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. + Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_cc-pd2.yml b/src/licensedcode/data/rules/bsd-new_and_cc-pd2.yml deleted file mode 100644 index 84ef99aa01b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_cc-pd2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND cc-pd -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/bsd-new_and_dco-1.1_1.RULE b/src/licensedcode/data/rules/bsd-new_and_dco-1.1_1.RULE index ad360828da3..7d96b0842bd 100644 --- a/src/licensedcode/data/rules/bsd-new_and_dco-1.1_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_dco-1.1_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new AND dco-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://developercertificate.org/ +--- + This software is distributed under a permissive open source license to allow it to be used in any projects, whether open source or proprietary. Contributions to the project are welcome and it is important to maintain diff --git a/src/licensedcode/data/rules/bsd-new_and_dco-1.1_1.yml b/src/licensedcode/data/rules/bsd-new_and_dco-1.1_1.yml deleted file mode 100644 index 297e8531ce3..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_dco-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND dco-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://developercertificate.org/ diff --git a/src/licensedcode/data/rules/bsd-new_and_ecma-no-patent_1.RULE b/src/licensedcode/data/rules/bsd-new_and_ecma-no-patent_1.RULE index bb760cffbbd..ceba8068be0 100644 --- a/src/licensedcode/data/rules/bsd-new_and_ecma-no-patent_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_ecma-no-patent_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new AND ecma-no-patent +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.ecma-international.org/memento/codeofconduct.htm +--- + The << Software identified by reference to the Ecma Standard* ("Software)">> is protected by copyright and is being made available under the "BSD License", included below. This Software may be subject to third party rights (rights from parties other than Ecma International), including patent rights, and no licenses under such third party rights diff --git a/src/licensedcode/data/rules/bsd-new_and_ecma-no-patent_1.yml b/src/licensedcode/data/rules/bsd-new_and_ecma-no-patent_1.yml deleted file mode 100644 index 0048428b445..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_ecma-no-patent_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND ecma-no-patent -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.ecma-international.org/memento/codeofconduct.htm diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_1.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_1.RULE index ba8751bb43a..196bed3e29d 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new AND facebook-patent-rights-2 +is_license_notice: yes +relevance: 90 +minimum_coverage: 85 +referenced_filenames: + - LICENSE +notes: this is found in older react.js. In lz4 this is used with a bsd-simplified +--- + This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant -of patent rights can be found in the PATENTS file in the same directory +of patent rights can be found in the PATENTS file in the same directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_1.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_1.yml deleted file mode 100644 index 1904cfd0e03..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 -is_license_notice: yes -relevance: 90 -minimum_coverage: 85 -referenced_filenames: - - LICENSE -notes: this is found in older react.js. In lz4 this is used with a bsd-simplified diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_2.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_2.RULE index 93c751117c4..0dd22b6653b 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new AND facebook-patent-rights-2 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/facebook/draft-js/blob/master/LICENSE + - https://github.com/facebook/draft-js/blob/master/PATENTS +--- + ## License Draft.js is [BSD Licensed](https://github.com/facebook/draft-js/blob/master/LICENSE). diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_2.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_2.yml deleted file mode 100644 index f657a76961e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/facebook/draft-js/blob/master/LICENSE - - https://github.com/facebook/draft-js/blob/master/PATENTS diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_3.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_3.RULE index 3557d34babd..004189309e5 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new AND facebook-patent-rights-2 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/facebook/LICENSE + - https://github.com/facebook/PATENTS +--- + ## License is [BSD Licensed](https://github.com/facebook//LICENSE). diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_3.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_3.yml deleted file mode 100644 index e717542b338..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/facebook/LICENSE - - https://github.com/facebook/PATENTS diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_4.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_4.RULE index 50c6d40fe70..c6a0febf2c7 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new AND facebook-patent-rights-2 +is_license_notice: yes +relevance: 100 +--- + ## License fastText is BSD-licensed. We also provide an additional patent grant. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_4.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_4.yml deleted file mode 100644 index ef08bdf7f94..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_5.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_5.RULE index 1ed887db03b..784bf4fe8e3 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_5.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND facebook-patent-rights-2 +is_license_notice: yes +relevance: 100 +--- + fastText is BSD-licensed. We also provide an additional patent grant. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_5.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_5.yml deleted file mode 100644 index ef08bdf7f94..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_6.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_6.RULE index fb161dfd97e..6cded2ea3f7 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new AND facebook-patent-rights-2 +is_license_notice: yes +relevance: 100 +--- + ## License Flux is BSD-licensed. We also provide an additional patent grant. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_6.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_6.yml deleted file mode 100644 index ef08bdf7f94..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_other-permissive_and_cc-by-4.0.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_other-permissive_and_cc-by-4.0.RULE index af4b7a9f6f9..15a8cb3953c 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_other-permissive_and_cc-by-4.0.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_other-permissive_and_cc-by-4.0.RULE @@ -1 +1,7 @@ -is BSD-licensed. We also provide an additional patent grant. The files in the `/examples` directory are licensed under a separate license as specified in each file; documentation is licensed CC-BY-4.0. +--- +license_expression: bsd-new AND facebook-patent-rights-2 AND other-permissive AND cc-by-4.0 +is_license_notice: yes +minimum_coverage: 99 +--- + +is BSD-licensed. We also provide an additional patent grant. The files in the `/examples` directory are licensed under a separate license as specified in each file; documentation is licensed CC-BY-4.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_other-permissive_and_cc-by-4.0.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_other-permissive_and_cc-by-4.0.yml deleted file mode 100644 index 55bb362e23e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_other-permissive_and_cc-by-4.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 AND other-permissive AND cc-by-4.0 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_1.RULE index df69a2df2c4..c3d2da44c5e 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new AND facebook-patent-rights-2 AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/facebook/draft-js/blob/master/LICENSE + - https://github.com/facebook/draft-js/blob/master/PATENTS +--- + ## License Draft.js is [BSD Licensed](https://github.com/facebook/draft-js/blob/master/LICENSE). diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_1.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_1.yml deleted file mode 100644 index de33ade53a2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/facebook/draft-js/blob/master/LICENSE - - https://github.com/facebook/draft-js/blob/master/PATENTS diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_2.RULE index 0787a9dd4e6..b69f4394e45 100644 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new AND facebook-patent-rights-2 AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/facebook/LICENSE + - https://github.com/facebook/PATENTS +--- + ## License is [BSD Licensed](https://github.com/facebook//LICENSE). diff --git a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_2.yml b/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_2.yml deleted file mode 100644 index edea73f7f1d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_facebook-patent-rights-2_and_proprietary-license_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND facebook-patent-rights-2 AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/facebook/LICENSE - - https://github.com/facebook/PATENTS diff --git a/src/licensedcode/data/rules/bsd-new_and_generic-cla_1.RULE b/src/licensedcode/data/rules/bsd-new_and_generic-cla_1.RULE index d4fd62c76e7..b996d1b813c 100644 --- a/src/licensedcode/data/rules/bsd-new_and_generic-cla_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_generic-cla_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new AND generic-cla +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + provided under a BSD-style license that can be found in the ``LICENSE`` file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_generic-cla_1.yml b/src/licensedcode/data/rules/bsd-new_and_generic-cla_1.yml deleted file mode 100644 index d13582a2485..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_generic-cla_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND generic-cla -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_1.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_1.RULE index 6e7277afb6d..6de0e90ae73 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_notice: yes +relevance: 99 +notes: the patent grant refers to Polymer rather than Golang but is otherwise the same. +ignorable_urls: + - http://polymer.github.io/LICENSE.txt + - http://polymer.github.io/PATENTS.txt +--- + @license This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt Code distributed by Google as part of the polymer project is also diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_1.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_1.yml deleted file mode 100644 index 236cb03f7de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new AND google-patent-license-golang -is_license_notice: yes -relevance: 99 -notes: the patent grant refers to Polymer rather than Golang but is otherwise the same. -ignorable_urls: - - http://polymer.github.io/LICENSE.txt - - http://polymer.github.io/PATENTS.txt diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_2.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_2.RULE index 92731a4ca1f..9d2a1adbb7f 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_notice: yes +relevance: 99 +notes: the patent grant refers to Polymer rather than Golang but is otherwise the same. +ignorable_urls: + - http://polymer.github.io/LICENSE.txt + - http://polymer.github.io/PATENTS.txt +--- + This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_2.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_2.yml deleted file mode 100644 index 236cb03f7de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new AND google-patent-license-golang -is_license_notice: yes -relevance: 99 -notes: the patent grant refers to Polymer rather than Golang but is otherwise the same. -ignorable_urls: - - http://polymer.github.io/LICENSE.txt - - http://polymer.github.io/PATENTS.txt diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_3.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_3.RULE index 176e2c1a2ef..f8af0841ed6 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_reference: yes +relevance: 99 +--- + BSD-3 with Google Patent grant \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_3.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_3.yml deleted file mode 100644 index 1007a4f03d0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND google-patent-license-golang -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_4.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_4.RULE index c930acfeb99..468af10103f 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_reference: yes +relevance: 90 +--- + BSD-3 clause + Patent grant \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_4.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_4.yml deleted file mode 100644 index 41aff1c45fe..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND google-patent-license-golang -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_5.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_5.RULE index 76510044c70..f246698b1f6 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_5.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_tag: yes +relevance: 90 +notes: The reported license is the most common occurence for this short mention +--- + License: BSD with Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_5.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_5.yml deleted file mode 100644 index 2a912d8f92e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND google-patent-license-golang -is_license_tag: yes -relevance: 90 -notes: The reported license is the most common occurence for this short mention diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_6.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_6.RULE index e7acc96dc24..e55ce14d790 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_6.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new AND google-patent-license-golang +is_license_reference: yes +relevance: 90 +notes: The reported license is the most common occurence for this short mention +--- + BSD with Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_6.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_6.yml deleted file mode 100644 index 6be053c622d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-golang_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND google-patent-license-golang -is_license_reference: yes -relevance: 90 -notes: The reported license is the most common occurence for this short mention diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_1.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_1.RULE index 41fae16fc28..7eca653766d 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_1.RULE @@ -1,4 +1,13 @@ +--- +license_expression: bsd-new AND google-patent-license-webm +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.webmproject.org/license/additional/ + - http://www.webmproject.org/license/software/ +--- + // This code is licensed under the same terms as WebM: // Software License Agreement: http://www.webmproject.org/license/software/ // Additional IP Rights Grant: http://www.webmproject.org/license/additional/ -// ----------------------------------------------------------------------------- +// ----------------------------------------------------------------------------- \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_1.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_1.yml deleted file mode 100644 index 3f71498a0ae..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND google-patent-license-webm -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.webmproject.org/license/additional/ - - http://www.webmproject.org/license/software/ diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_2.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_2.RULE index e631734a244..c955f08444f 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_2.RULE @@ -1,6 +1,16 @@ +--- +license_expression: bsd-new AND google-patent-license-webm +is_license_notice: yes +relevance: 90 +minimum_coverage: 60 +referenced_filenames: + - COPYING + - PATENTS +--- + // Use of this source code is governed by a BSD-style license // that can be found in the COPYING file in the root of the source // tree. An additional intellectual property rights grant can be found // in the file PATENTS. All contributing project authors may // be found in the AUTHORS file in the root of the source tree. -// ----------------------------------------------------------------------------- +// ----------------------------------------------------------------------------- \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_2.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_2.yml deleted file mode 100644 index 44cd0bf36c6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new AND google-patent-license-webm -is_license_notice: yes -relevance: 90 -minimum_coverage: 60 -referenced_filenames: - - COPYING - - PATENTS diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_3.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_3.RULE index a7f1d639806..1d5955863bf 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_3.RULE @@ -1,6 +1,16 @@ +--- +license_expression: bsd-new AND google-patent-license-webm +is_license_notice: yes +relevance: 90 +minimum_coverage: 60 +referenced_filenames: + - LICENSE + - PATENTS +--- + // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. An additional intellectual property rights grant can be found // in the file PATENTS. All contributing project authors may // be found in the AUTHORS file in the root of the source tree. -// ----------------------------------------------------------------------------- +// ----------------------------------------------------------------------------- \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_3.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_3.yml deleted file mode 100644 index f3635fedb58..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new AND google-patent-license-webm -is_license_notice: yes -relevance: 90 -minimum_coverage: 60 -referenced_filenames: - - LICENSE - - PATENTS diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_4.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_4.RULE index 24adcb3577c..ebdb74f82ff 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new AND google-patent-license-webm +is_license_notice: yes +relevance: 90 +minimum_coverage: 60 +referenced_filenames: + - LICENSE + - PATENTS +--- + * All changes are covered by the WebRTC license and IP grant: * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_4.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_4.yml deleted file mode 100644 index f3635fedb58..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new AND google-patent-license-webm -is_license_notice: yes -relevance: 90 -minimum_coverage: 60 -referenced_filenames: - - LICENSE - - PATENTS diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_5.RULE b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_5.RULE index f08d05031c2..14d9c0000f6 100644 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_5.RULE @@ -1,4 +1,13 @@ +--- +license_expression: bsd-new AND google-patent-license-webm +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - LICENSE + - PATENTS +--- + * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An {{additional intellectual property rights grant}} can be found - * in the file PATENTS. + * in the file PATENTS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_5.yml b/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_5.yml deleted file mode 100644 index 20618f235d4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_google-patent-license-webm_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND google-patent-license-webm -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - LICENSE - - PATENTS diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_1.RULE b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_1.RULE index b5030bb12b9..38031f0a8d0 100644 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new AND gpl-2.0-plus WITH bison-exception-2.2 +is_license_notice: yes +minimum_coverage: 99 +referenced_filenames: + - Copyright.txt +--- + Distributed under the OSI-approved BSD License (the "License"); see accompanying file Copyright.txt for details. diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_1.yml b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_1.yml deleted file mode 100644 index a3fb5977cdf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND gpl-2.0-plus WITH bison-exception-2.2 -is_license_notice: yes -minimum_coverage: 99 -referenced_filenames: - - Copyright.txt diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_2.RULE b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_2.RULE index 26cee182945..ea42d1552c7 100644 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: bsd-new AND gpl-2.0-plus WITH bison-exception-2.2 +is_license_notice: yes +minimum_coverage: 99 +referenced_filenames: + - Copyright.txt +ignorable_copyrights: + - Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software + Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + Distributed under the OSI-approved BSD License (the "License"); see accompanying file Copyright.txt for details. diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_2.yml b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_2.yml deleted file mode 100644 index ec82e7c9125..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: bsd-new AND gpl-2.0-plus WITH bison-exception-2.2 -is_license_notice: yes -minimum_coverage: 99 -referenced_filenames: - - Copyright.txt -ignorable_copyrights: - - Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software - Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_3.RULE b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_3.RULE index 81fa019262f..22936711a3f 100644 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: bsd-new AND gpl-2.0-plus WITH bison-exception-2.2 +is_license_notice: yes +minimum_coverage: 99 +referenced_filenames: + - Copyright.txt +ignorable_copyrights: + - Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software + Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + Distributed under the OSI-approved BSD License (the "License"); see accompanying file Copyright.txt for details. diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_3.yml b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_3.yml deleted file mode 100644 index ec82e7c9125..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0-plus_with_bison-exception-2.2_3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: bsd-new AND gpl-2.0-plus WITH bison-exception-2.2 -is_license_notice: yes -minimum_coverage: 99 -referenced_filenames: - - Copyright.txt -ignorable_copyrights: - - Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software - Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_gfdl-1.2_1.RULE b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_gfdl-1.2_1.RULE index 67793e58820..e66953dced1 100644 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_gfdl-1.2_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_gfdl-1.2_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new AND gpl-2.0 AND gfdl-1.2 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.Xiph + - COPYING.GPL + - COPYING.FDL +--- + FLAC is comprised of several components distributed under different licenses. The codec libraries are distributed under Xiph.Org's BSD-like license (see the file diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_gfdl-1.2_1.yml b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_gfdl-1.2_1.yml deleted file mode 100644 index 0d7f374a879..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_gfdl-1.2_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new AND gpl-2.0 AND gfdl-1.2 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.Xiph - - COPYING.GPL - - COPYING.FDL diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_mit.RULE b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_mit.RULE index bfd9d506b77..4bc687b1331 100644 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_mit.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_mit.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit OR bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: found in Dojo and JQuery +ignorable_urls: + - http://sizzlejs.com/ +--- + * Released under the MIT, BSD, and GPL Licenses. * More information: http://sizzlejs.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_mit.yml b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_mit.yml deleted file mode 100644 index bec9f7b1650..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_and_mit.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: found in Dojo and JQuery -ignorable_urls: - - http://sizzlejs.com/ diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_1.RULE index f288d719f35..0813c4d4929 100644 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new AND gpl-2.0 WITH mysql-floss-exception-2.0 AND gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.mysql.com/about/legal/licensing/foss-exception/ +--- + /Important licensing note/: This library is BSD-licensed under the terms of the MySQL FOSS License Exception . diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_1.yml deleted file mode 100644 index 8d68e4305a2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND gpl-2.0 WITH mysql-floss-exception-2.0 AND gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.mysql.com/about/legal/licensing/foss-exception/ diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_2.RULE b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_2.RULE index e3e87826969..b43c69bf46f 100644 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND gpl-2.0 WITH mysql-floss-exception-2.0 AND gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This library is BSD-licensed under the terms of the MySQL FOSS License Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_2.yml b/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_2.yml deleted file mode 100644 index 8c4c9970c04..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_gpl-2.0_with_mysql-floss-exception-2.0_and_gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND gpl-2.0 WITH mysql-floss-exception-2.0 AND gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_ijg_and_libpng_1.RULE b/src/licensedcode/data/rules/bsd-new_and_ijg_and_libpng_1.RULE index f6739d14de8..e45c2118b63 100644 --- a/src/licensedcode/data/rules/bsd-new_and_ijg_and_libpng_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_ijg_and_libpng_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new AND ijg AND libpng +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + licensed under the BSD license, with portions controlled by the IJG license and PNG Reference Library license

osi-certified-120x100.gif \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_ijg_and_libpng_1.yml b/src/licensedcode/data/rules/bsd-new_and_ijg_and_libpng_1.yml deleted file mode 100644 index 9992553a635..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_ijg_and_libpng_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND ijg AND libpng -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_and_ijg_and_x11-tiff_and_bsd-new_1.RULE b/src/licensedcode/data/rules/bsd-new_and_ijg_and_x11-tiff_and_bsd-new_1.RULE index 6a72499e44a..47fb1ef5d15 100644 --- a/src/licensedcode/data/rules/bsd-new_and_ijg_and_x11-tiff_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_ijg_and_x11-tiff_and_bsd-new_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new AND ijg AND x11-tiff AND bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://bitmiracle.github.io/libtiff.net +--- + https://bitmiracle.github.io/libtiff.net/# \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_ijg_and_x11-tiff_and_bsd-new_1.yml b/src/licensedcode/data/rules/bsd-new_and_ijg_and_x11-tiff_and_bsd-new_1.yml deleted file mode 100644 index 3abf20469d1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_ijg_and_x11-tiff_and_bsd-new_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND ijg AND x11-tiff AND bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://bitmiracle.github.io/libtiff.net diff --git a/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_1.RULE b/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_1.RULE index 626b1aba156..3f3ce78df53 100644 --- a/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new AND ijg AND zlib +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + libjpeg-turbo For a summary of these license terms, see LICENSE.md. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_1.yml b/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_1.yml deleted file mode 100644 index d4f8db26466..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND ijg AND zlib -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_2.RULE b/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_2.RULE index 5575e8f7ff4..be16c1000b6 100644 --- a/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND ijg AND zlib +is_license_reference: yes +relevance: 100 +--- + libjpeg-turbo license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_2.yml b/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_2.yml deleted file mode 100644 index 6abb85300b4..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_ijg_and_zlib_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND ijg AND zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0-plus_1.RULE index 7e9f7da2f1c..aa5d3344b2f 100644 --- a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new AND lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0-plus_1.yml deleted file mode 100644 index d994cdf4082..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0_1.RULE b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0_1.RULE index 61f1750360a..765f40d5db4 100644 --- a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new AND lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + software is open source software with portions licensed under a BSD license and portions licensed under the GNU Library General Public License Version 2. Please refer to the individual files to determine the license terms that apply to that file. You may obtain a complete machine-readable copy of the source code for the LGPL-licensed portions under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request. The software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. The software is released under the GNU Library General Public License Version 2. diff --git a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0_1.yml b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0_1.yml deleted file mode 100644 index 84ee3f4ebc1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_1.RULE b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_1.RULE index 3ab50a2da7a..30396a50571 100644 --- a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-new AND lgpl-2.1 AND gpl-2.0 AND gfdl-1.2 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.Xiph + - COPYING.GPL + - COPYING.FDL +notes: in flak makefile.in +--- + This file is part the FLAC project. FLAC is comprised of several components distributed under different licenses. The codec libraries are distributed under Xiph.Org's BSD-like license (see the file diff --git a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_1.yml b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_1.yml deleted file mode 100644 index b479123be99..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-new AND lgpl-2.1 AND gpl-2.0 AND gfdl-1.2 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.Xiph - - COPYING.GPL - - COPYING.FDL -notes: in flak makefile.in diff --git a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_2.RULE b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_2.RULE index 29bd09da9ac..b2db5ab79d7 100644 --- a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-new AND lgpl-2.1 AND gpl-2.0 AND gfdl-1.2 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.Xiph + - COPYING.LGPL + - COPYING.GPL + - COPYING.FDL +--- + This file is part the FLAC project. FLAC is comprised of several components distributed under different licenses. The codec libraries are distributed under Xiph.Org's BSD-like license (see the file diff --git a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_2.yml b/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_2.yml deleted file mode 100644 index d9b8bd012de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_lgpl-2.1_and_gpl-2.0_and_gfdl-1.2_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-new AND lgpl-2.1 AND gpl-2.0 AND gfdl-1.2 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.Xiph - - COPYING.LGPL - - COPYING.GPL - - COPYING.FDL diff --git a/src/licensedcode/data/rules/bsd-new_and_mit-synopsys.RULE b/src/licensedcode/data/rules/bsd-new_and_mit-synopsys.RULE index cb5acd54854..e22a7ae4864 100644 --- a/src/licensedcode/data/rules/bsd-new_and_mit-synopsys.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_mit-synopsys.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new AND mit-synopsys +is_license_notice: yes +minimum_coverage: 80 +--- + License 2: Modified BSD @@ -54,4 +60,4 @@ permission notice: 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. + THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_mit-synopsys.yml b/src/licensedcode/data/rules/bsd-new_and_mit-synopsys.yml deleted file mode 100644 index 0730fa29a8b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_mit-synopsys.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND mit-synopsys -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_1.RULE b/src/licensedcode/data/rules/bsd-new_and_mit_1.RULE index 4aba117155d..9a16c8361da 100644 --- a/src/licensedcode/data/rules/bsd-new_and_mit_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND mit +is_license_tag: yes +relevance: 100 +--- + License: BSD-3-clause and Expat \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_1.yml b/src/licensedcode/data/rules/bsd-new_and_mit_1.yml deleted file mode 100644 index 72ea64ed7da..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_2.RULE b/src/licensedcode/data/rules/bsd-new_and_mit_2.RULE index 5a8eab112d9..8c5ba40e2bd 100644 --- a/src/licensedcode/data/rules/bsd-new_and_mit_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_mit_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new AND mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +ignorable_urls: + - http://golang.org/ +--- + (license at http://golang.org) where indicated Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_2.yml b/src/licensedcode/data/rules/bsd-new_and_mit_2.yml deleted file mode 100644 index bd69722e7d0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_mit_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -ignorable_urls: - - http://golang.org/ diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_3.RULE b/src/licensedcode/data/rules/bsd-new_and_mit_3.RULE index a42b51b8528..142ee672e6a 100644 --- a/src/licensedcode/data/rules/bsd-new_and_mit_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_mit_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND mit +is_license_notice: yes +relevance: 100 +--- + * The script is dual licensed under the BSD and MIT licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_3.yml b/src/licensedcode/data/rules/bsd-new_and_mit_3.yml deleted file mode 100644 index 345e38a9c4a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_4.RULE b/src/licensedcode/data/rules/bsd-new_and_mit_4.RULE index 46e9418f3d7..e7dcbc98259 100644 --- a/src/licensedcode/data/rules/bsd-new_and_mit_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_mit_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND mit +is_license_notice: yes +relevance: 100 +--- + * The script is dual licenced under the BSD and MIT licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_4.yml b/src/licensedcode/data/rules/bsd-new_and_mit_4.yml deleted file mode 100644 index 345e38a9c4a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_mit_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_and_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-new_and_mit_and_lgpl-2.0-plus_1.RULE index 0307be6e81d..f79a060b9c2 100644 --- a/src/licensedcode/data/rules/bsd-new_and_mit_and_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_mit_and_lgpl-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new AND mit AND lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + All files in this distribution (other than in the ext directory) have licenses based on the BSD or MIT licenses. Some files in the ext directory are GNU LGPL. No other licenses are found in this diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_and_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-new_and_mit_and_lgpl-2.0-plus_1.yml deleted file mode 100644 index bfac1117107..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_mit_and_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND mit AND lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_and_public-domain_1.RULE b/src/licensedcode/data/rules/bsd-new_and_mit_and_public-domain_1.RULE index 79597fd010f..5c01f40e0aa 100644 --- a/src/licensedcode/data/rules/bsd-new_and_mit_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_mit_and_public-domain_1.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new AND mit AND public-domain +is_license_reference: yes +relevance: 99 +notes: Seen in MySQL notices +--- + Various subpackages under licenses such as BSD, MIT, Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_mit_and_public-domain_1.yml b/src/licensedcode/data/rules/bsd-new_and_mit_and_public-domain_1.yml deleted file mode 100644 index 594c136902d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_mit_and_public-domain_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND mit AND public-domain -is_license_reference: yes -relevance: 99 -notes: Seen in MySQL notices diff --git a/src/licensedcode/data/rules/bsd-new_and_nvidia-2002_1.RULE b/src/licensedcode/data/rules/bsd-new_and_nvidia-2002_1.RULE index e5a34e48bcc..1e664462677 100644 --- a/src/licensedcode/data/rules/bsd-new_and_nvidia-2002_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_nvidia-2002_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND nvidia-2002 +is_license_tag: yes +relevance: 100 +--- + License: glslang \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_nvidia-2002_1.yml b/src/licensedcode/data/rules/bsd-new_and_nvidia-2002_1.yml deleted file mode 100644 index 42a15a98001..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_nvidia-2002_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND nvidia-2002 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_1.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_1.RULE index 45878a7e632..b80a34c599b 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new AND other-permissive +is_license_text: yes +relevance: 99 +minimum_coverage: 80 +notes: rare bsd-new-like terms. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_1.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_1.yml deleted file mode 100644 index 240b1a8a984..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new AND other-permissive -is_license_text: yes -relevance: 99 -minimum_coverage: 80 -notes: rare bsd-new-like terms. diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_10.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_10.RULE index 177e58728b5..4a4c5f7813d 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_10.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new AND other-permissive +is_license_text: yes +notes: https://github.com/johnsusek/elastalert-server/blob/master/LICENSE.md +--- + The 3-clause BSD license (Modified) =================================== diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_10.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_10.yml deleted file mode 100644 index b7e992212c5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND other-permissive -is_license_text: yes -notes: https://github.com/johnsusek/elastalert-server/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_2.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_2.RULE index f51cc718012..c443236bf23 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new AND ijg AND libpng +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + is licensed under the http://www.opensource.org/licenses/bsd-license.php BSD license, with portions controlled by the IJG-README.TXT IJG license and -libpng-LICENSE.txt PNG Reference Library license +libpng-LICENSE.txt PNG Reference Library license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_2.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_2.yml deleted file mode 100644 index 1fe47ef5015..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND ijg AND libpng -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_3.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_3.RULE index cb34e3c749a..902dceaa78b 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_3.RULE @@ -1,4 +1,11 @@ +--- +license_expression: bsd-new AND ijg AND libpng +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + licensed under the http://www.opensource.org/licenses/bsd-license.php BSD license, with portions controlled by the IJG-README.TXT IJG license and libpng-LICENSE.txt PNG Reference Library license -http://opensource.org/trademarks/osi-certified/web/osi-certified-120x100.gif +http://opensource.org/trademarks/osi-certified/web/osi-certified-120x100.gif \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_3.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_3.yml deleted file mode 100644 index 1fe47ef5015..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND ijg AND libpng -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_4.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_4.RULE index 7792c6fa213..0bf9a88a81a 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_4.RULE @@ -1,5 +1,11 @@ +--- +license_expression: bsd-new AND other-permissive +is_license_notice: yes +relevance: 99 +--- + The licences which components of this software fall under are as follows. First, we will summarize and say that all components are under a BSD licence, or a licence more free than that. -OpenSSH contains no GPL code. +OpenSSH contains no GPL code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_4.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_4.yml deleted file mode 100644 index 2f7c31ea0cf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND other-permissive -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_5.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_5.RULE index 4ad6c656dd7..249ccb9e34a 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new AND other-permissive +is_license_notice: yes +relevance: 100 +--- + This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software. This code is free software; you can redistribute it and/or modify it under the terms of the BSD License. diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_5.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_5.yml deleted file mode 100644 index 7e3ae35c147..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_6.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_6.RULE index 74519e401c1..83f6398e27b 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_6.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-new AND other-permissive +is_license_text: yes +relevance: 99 +minimum_coverage: 95 +notes: the 3rd clause has this extra term "derived from this source code" the 4th clause is + treated as an "other-permissive" license See https://onl.wustl.edu/restricted/npr-plugins/ +ignorable_authors: + - Washington University +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_6.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_6.yml deleted file mode 100644 index a00e1c380ac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-new AND other-permissive -is_license_text: yes -relevance: 99 -minimum_coverage: 95 -notes: the 3rd clause has this extra term "derived from this source code" the 4th clause is - treated as an "other-permissive" license See https://onl.wustl.edu/restricted/npr-plugins/ -ignorable_authors: - - Washington University diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_7.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_7.RULE index a0d77a5a8ff..e4f59f82f85 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_7.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new AND other-permissive +is_license_text: yes +relevance: 99 +minimum_coverage: 95 +notes: the 3rd clause has this extra term "derived from this source code" the 4th clause is + treated as an "other-permissive" license See https://onl.wustl.edu/restricted/npr-plugins/ +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_7.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_7.yml deleted file mode 100644 index 204c434aa8c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new AND other-permissive -is_license_text: yes -relevance: 99 -minimum_coverage: 95 -notes: the 3rd clause has this extra term "derived from this source code" the 4th clause is - treated as an "other-permissive" license See https://onl.wustl.edu/restricted/npr-plugins/ diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_8.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_8.RULE index 84b9d45da44..2bc9d4e25a4 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_8.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new AND other-permissive +is_license_notice: yes +--- + If you have downloaded a copy of the binary from , please note that the binary is licensed under the BSD 3-Clause License. If you have downloaded a copy of the source code from , please note that source diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_8.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_8.yml deleted file mode 100644 index e2d264b6283..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new AND other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_9.RULE b/src/licensedcode/data/rules/bsd-new_and_other-permissive_9.RULE index 56423a6c477..a7b376e0d29 100644 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_9.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_other-permissive_9.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new AND other-permissive +is_license_notice: yes +relevance: 95 +notes: https://github.com/johnsusek/elastalert-server/blob/master/LICENSE.md +--- + License This project is BSD Licensed with some modifications. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_other-permissive_9.yml b/src/licensedcode/data/rules/bsd-new_and_other-permissive_9.yml deleted file mode 100644 index 13918211f0d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_other-permissive_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND other-permissive -is_license_notice: yes -relevance: 95 -notes: https://github.com/johnsusek/elastalert-server/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/bsd-new_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/bsd-new_and_proprietary-license_1.RULE index 9a06d3a31ef..2e047e4f747 100644 --- a/src/licensedcode/data/rules/bsd-new_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_proprietary-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new AND proprietary-license +is_license_text: yes +relevance: 100 +notes: IKANOS terms seen in the kernel +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_and_proprietary-license_1.yml b/src/licensedcode/data/rules/bsd-new_and_proprietary-license_1.yml deleted file mode 100644 index 432e4d8f3ad..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_proprietary-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND proprietary-license -is_license_text: yes -relevance: 100 -notes: IKANOS terms seen in the kernel diff --git a/src/licensedcode/data/rules/bsd-new_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/bsd-new_and_proprietary-license_2.RULE index c0b77f0c5af..6167aed5b0f 100644 --- a/src/licensedcode/data/rules/bsd-new_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_proprietary-license_2.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new AND proprietary-license +is_license_reference: yes +relevance: 100 +notes: IKANOS terms seen in the kernel +--- + BSD (Ikanos) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_proprietary-license_2.yml b/src/licensedcode/data/rules/bsd-new_and_proprietary-license_2.yml deleted file mode 100644 index 082ecc53cb9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_proprietary-license_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new AND proprietary-license -is_license_reference: yes -relevance: 100 -notes: IKANOS terms seen in the kernel diff --git a/src/licensedcode/data/rules/bsd-new_and_proprietary_1.RULE b/src/licensedcode/data/rules/bsd-new_and_proprietary_1.RULE index 2f078a64b2f..ce0d3575825 100644 --- a/src/licensedcode/data/rules/bsd-new_and_proprietary_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_proprietary_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new AND proprietary-license +is_license_notice: yes +--- + Permission is granted to distribute this document without any alteration under the terms of the HSQLDB license. You are not allowed to distribute or diff --git a/src/licensedcode/data/rules/bsd-new_and_proprietary_1.yml b/src/licensedcode/data/rules/bsd-new_and_proprietary_1.yml deleted file mode 100644 index 8445544a2af..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_proprietary_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new AND proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_and_public-domain.RULE b/src/licensedcode/data/rules/bsd-new_and_public-domain.RULE index d73def56294..c3d3b9279be 100644 --- a/src/licensedcode/data/rules/bsd-new_and_public-domain.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_public-domain.RULE @@ -1,4 +1,9 @@ +--- +license_expression: bsd-new AND public-domain +is_license_notice: yes +--- + Release is distributed under the terms of the "BSD" licence, as specified below. The documentation for, supplied in the "doc" directory, is distributed under the same terms as the software itself. The data -in the testdata directory is not copyrighted and is in the public domain. +in the testdata directory is not copyrighted and is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_public-domain.yml b/src/licensedcode/data/rules/bsd-new_and_public-domain.yml deleted file mode 100644 index 63be182b43b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_public-domain.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new AND public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_and_python_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/bsd-new_and_python_and_apache-2.0_1.RULE index d22627815e4..6b91859bf25 100644 --- a/src/licensedcode/data/rules/bsd-new_and_python_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_and_python_and_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new AND python AND apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: 3-clause BSD, PSF and Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_and_python_and_apache-2.0_1.yml b/src/licensedcode/data/rules/bsd-new_and_python_and_apache-2.0_1.yml deleted file mode 100644 index 0b3728a9ace..00000000000 --- a/src/licensedcode/data/rules/bsd-new_and_python_and_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND python AND apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_arm.RULE b/src/licensedcode/data/rules/bsd-new_arm.RULE index ea6129939a4..42784e9fde0 100644 --- a/src/licensedcode/data/rules/bsd-new_arm.RULE +++ b/src/licensedcode/data/rules/bsd-new_arm.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -19,5 +24,4 @@ * 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 + * 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_arm.yml b/src/licensedcode/data/rules/bsd-new_arm.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_arm.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_dispatch.RULE b/src/licensedcode/data/rules/bsd-new_dispatch.RULE index c38bce055f5..3f54c0dac92 100644 --- a/src/licensedcode/data/rules/bsd-new_dispatch.RULE +++ b/src/licensedcode/data/rules/bsd-new_dispatch.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -25,5 +30,4 @@ 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. - + OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_dispatch.yml b/src/licensedcode/data/rules/bsd-new_dispatch.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_dispatch.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_ecos.RULE b/src/licensedcode/data/rules/bsd-new_ecos.RULE index 40b587646aa..517a0b67199 100644 --- a/src/licensedcode/data/rules/bsd-new_ecos.RULE +++ b/src/licensedcode/data/rules/bsd-new_ecos.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + //####BSDCOPYRIGHTBEGIN#### // // ------------------------------------------- diff --git a/src/licensedcode/data/rules/bsd-new_ecos.yml b/src/licensedcode/data/rules/bsd-new_ecos.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_ecos.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_g3d.RULE b/src/licensedcode/data/rules/bsd-new_g3d.RULE index 2937d3f4f32..3149ecdb2b3 100644 --- a/src/licensedcode/data/rules/bsd-new_g3d.RULE +++ b/src/licensedcode/data/rules/bsd-new_g3d.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 98 +--- + code Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: code code Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. @@ -6,4 +12,4 @@ code Redistributions in binary form must reproduce the above copyright notice, t code code Neither the name of University, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. code -code 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. +code 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_g3d.yml b/src/licensedcode/data/rules/bsd-new_g3d.yml deleted file mode 100644 index 6d85ccc491d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_g3d.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/bsd-new_jcraft.RULE b/src/licensedcode/data/rules/bsd-new_jcraft.RULE index 1cc5a8ce931..104cef77960 100644 --- a/src/licensedcode/data/rules/bsd-new_jcraft.RULE +++ b/src/licensedcode/data/rules/bsd-new_jcraft.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +notes: Found in Jcraft POMs +ignorable_urls: + - http://www.jcraft.com/jsch/LICENSE.txt +--- + License: BSD (http://www.jcraft.com/jsch/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_jcraft.yml b/src/licensedcode/data/rules/bsd-new_jcraft.yml deleted file mode 100644 index 3048d4f7ce9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_jcraft.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -notes: Found in Jcraft POMs -ignorable_urls: - - http://www.jcraft.com/jsch/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_2.RULE b/src/licensedcode/data/rules/bsd-new_jcraft_2.RULE index 99efbcccc9d..51533254d46 100644 --- a/src/licensedcode/data/rules/bsd-new_jcraft_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_jcraft_2.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -20,4 +25,4 @@ 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. +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_2.yml b/src/licensedcode/data/rules/bsd-new_jcraft_2.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_jcraft_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_3.RULE b/src/licensedcode/data/rules/bsd-new_jcraft_3.RULE index 2a7dd6c4143..ee5441b44b1 100644 --- a/src/licensedcode/data/rules/bsd-new_jcraft_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_jcraft_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.jcraft.com/jsch +--- + License information from http://www.jcraft.com/jsch \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_3.yml b/src/licensedcode/data/rules/bsd-new_jcraft_3.yml deleted file mode 100644 index a5429501664..00000000000 --- a/src/licensedcode/data/rules/bsd-new_jcraft_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.jcraft.com/jsch diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_4.RULE b/src/licensedcode/data/rules/bsd-new_jcraft_4.RULE index 13017ff3fc1..33f9244b8ee 100644 --- a/src/licensedcode/data/rules/bsd-new_jcraft_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_jcraft_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.jcraft.com/jsch/LICENSE.txt +--- + http://www.jcraft.com/jsch/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_4.yml b/src/licensedcode/data/rules/bsd-new_jcraft_4.yml deleted file mode 100644 index d89bdc35229..00000000000 --- a/src/licensedcode/data/rules/bsd-new_jcraft_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.jcraft.com/jsch/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_5.RULE b/src/licensedcode/data/rules/bsd-new_jcraft_5.RULE index cd11bef949b..40eb4947ed2 100644 --- a/src/licensedcode/data/rules/bsd-new_jcraft_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_jcraft_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.jcraft.com/jsch + - http://www.jcraft.com/jsch/LICENSE.txt +--- + diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_5.yml b/src/licensedcode/data/rules/bsd-new_jcraft_5.yml deleted file mode 100644 index 08780cd684d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_jcraft_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.jcraft.com/jsch - - http://www.jcraft.com/jsch/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_jython_1.RULE b/src/licensedcode/data/rules/bsd-new_jython_1.RULE index 1c70de16cc3..a6fa1a86f93 100644 --- a/src/licensedcode/data/rules/bsd-new_jython_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_jython_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Jython 2.0, 2.1 License -------------------------------------------- diff --git a/src/licensedcode/data/rules/bsd-new_jython_1.yml b/src/licensedcode/data/rules/bsd-new_jython_1.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_jython_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_jython_2.RULE b/src/licensedcode/data/rules/bsd-new_jython_2.RULE index ae3893de96e..d04160b1c44 100644 --- a/src/licensedcode/data/rules/bsd-new_jython_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_jython_2.RULE @@ -1 +1,7 @@ -Jython 2.0, 2.1 License +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +--- + +Jython 2.0, 2.1 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_jython_2.yml b/src/licensedcode/data/rules/bsd-new_jython_2.yml deleted file mode 100644 index ac2f9af367d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_jython_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_maven.RULE b/src/licensedcode/data/rules/bsd-new_maven.RULE index 404db1b4b4d..04e1442bb62 100644 --- a/src/licensedcode/data/rules/bsd-new_maven.RULE +++ b/src/licensedcode/data/rules/bsd-new_maven.RULE @@ -1,5 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + license Berkeley Software Distribution (BSD) License -http://www.opensource.org/licenses/bsd-license.html - +http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_maven.yml b/src/licensedcode/data/rules/bsd-new_maven.yml deleted file mode 100644 index 4f74971e655..00000000000 --- a/src/licensedcode/data/rules/bsd-new_maven.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_newlib.RULE b/src/licensedcode/data/rules/bsd-new_newlib.RULE index 44a7f57a4dc..c6537aabe51 100644 --- a/src/licensedcode/data/rules/bsd-new_newlib.RULE +++ b/src/licensedcode/data/rules/bsd-new_newlib.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses +--- + This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the BSD License. This program is distributed in the hope that @@ -7,4 +14,4 @@ A PARTICULAR PURPOSE. A copy of this license is available at http://www.opensource.org/licenses. Any Red Hat trademarks that are incorporated in the source code or documentation are not subject to the BSD License and may only be used or replicated with the express -permission of Red Hat, Inc. +permission of Red Hat, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_newlib.yml b/src/licensedcode/data/rules/bsd-new_newlib.yml deleted file mode 100644 index f13d3f83b50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_newlib.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses diff --git a/src/licensedcode/data/rules/bsd-new_newlib2.RULE b/src/licensedcode/data/rules/bsd-new_newlib2.RULE index 97540e59ee2..d7ca7d1d3a5 100644 --- a/src/licensedcode/data/rules/bsd-new_newlib2.RULE +++ b/src/licensedcode/data/rules/bsd-new_newlib2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses +--- + This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the BSD License. This program is distributed in the hope that diff --git a/src/licensedcode/data/rules/bsd-new_newlib2.yml b/src/licensedcode/data/rules/bsd-new_newlib2.yml deleted file mode 100644 index f13d3f83b50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_newlib2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses diff --git a/src/licensedcode/data/rules/bsd-new_newlib3.RULE b/src/licensedcode/data/rules/bsd-new_newlib3.RULE index 4bb2bd991a3..997f5537439 100644 --- a/src/licensedcode/data/rules/bsd-new_newlib3.RULE +++ b/src/licensedcode/data/rules/bsd-new_newlib3.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-new_newlib3.yml b/src/licensedcode/data/rules/bsd-new_newlib3.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_newlib3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_newlib5.RULE b/src/licensedcode/data/rules/bsd-new_newlib5.RULE index fb5a3d4c4eb..09c6eea836a 100644 --- a/src/licensedcode/data/rules/bsd-new_newlib5.RULE +++ b/src/licensedcode/data/rules/bsd-new_newlib5.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. +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_newlib5.yml b/src/licensedcode/data/rules/bsd-new_newlib5.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_newlib5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_npm.RULE b/src/licensedcode/data/rules/bsd-new_npm.RULE index f4c1bd46ea4..5cdd2c02c38 100644 --- a/src/licensedcode/data/rules/bsd-new_npm.RULE +++ b/src/licensedcode/data/rules/bsd-new_npm.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +--- + "licenses": [ { "type": "BSD", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_npm.yml b/src/licensedcode/data/rules/bsd-new_npm.yml deleted file mode 100644 index 90976ddc8c6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_npm.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_nuget_url_1.RULE b/src/licensedcode/data/rules/bsd-new_nuget_url_1.RULE index e0adbfadac1..20b5afdca21 100644 --- a/src/licensedcode/data/rules/bsd-new_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/StaMa-StateMachine/StaMa/raw/master/LICENSE +--- + https://github.com/StaMa-StateMachine/StaMa/raw/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_nuget_url_1.yml b/src/licensedcode/data/rules/bsd-new_nuget_url_1.yml deleted file mode 100644 index e62559e2128..00000000000 --- a/src/licensedcode/data/rules/bsd-new_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/StaMa-StateMachine/StaMa/raw/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_nuget_url_2.RULE b/src/licensedcode/data/rules/bsd-new_nuget_url_2.RULE index f733c09b372..73126cd9755 100644 --- a/src/licensedcode/data/rules/bsd-new_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/dgg/nmoneys/master/LICENSE +--- + https://raw.githubusercontent.com/dgg/nmoneys/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_nuget_url_2.yml b/src/licensedcode/data/rules/bsd-new_nuget_url_2.yml deleted file mode 100644 index 55207e663cf..00000000000 --- a/src/licensedcode/data/rules/bsd-new_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/dgg/nmoneys/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_nuget_url_3.RULE b/src/licensedcode/data/rules/bsd-new_nuget_url_3.RULE index 0627146af96..2095d3065c6 100644 --- a/src/licensedcode/data/rules/bsd-new_nuget_url_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_nuget_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/zeroc-ice/ice-builder-msbuild/master/LICENSE.txt +--- + https://raw.githubusercontent.com/zeroc-ice/ice-builder-msbuild/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_nuget_url_3.yml b/src/licensedcode/data/rules/bsd-new_nuget_url_3.yml deleted file mode 100644 index 07b12d147cb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_nuget_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/zeroc-ice/ice-builder-msbuild/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-new_nuget_url_4.RULE b/src/licensedcode/data/rules/bsd-new_nuget_url_4.RULE index 9edaa63ba40..dea018b0041 100644 --- a/src/licensedcode/data/rules/bsd-new_nuget_url_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_nuget_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/3komma14/Guard/blob/master/License.txt +--- + https://github.com/3komma14/Guard/blob/master/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_nuget_url_4.yml b/src/licensedcode/data/rules/bsd-new_nuget_url_4.yml deleted file mode 100644 index 0411684d3a7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_nuget_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/3komma14/Guard/blob/master/License.txt diff --git a/src/licensedcode/data/rules/bsd-new_or_afl-2.1_1.RULE b/src/licensedcode/data/rules/bsd-new_or_afl-2.1_1.RULE index e3bc8b3c01b..4ae510d25ff 100644 --- a/src/licensedcode/data/rules/bsd-new_or_afl-2.1_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_afl-2.1_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new OR afl-2.1 +is_license_notice: yes +--- + is available under *either* the terms of the modified BSD license *or* the Academic Free License version 2.1. As a recipient of , you may choose which license to receive this code under (except as noted in per-module LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_or_afl-2.1_1.yml b/src/licensedcode/data/rules/bsd-new_or_afl-2.1_1.yml deleted file mode 100644 index eb813518759..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_afl-2.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR afl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_afl-2.1_2.RULE b/src/licensedcode/data/rules/bsd-new_or_afl-2.1_2.RULE index c239b9b7aed..2bcc8c590ac 100644 --- a/src/licensedcode/data/rules/bsd-new_or_afl-2.1_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_afl-2.1_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new OR afl-2.1 +is_license_notice: yes +--- + is available under *either* the terms of the modified BSD license *or* the Academic Free License version 2.1. As a recipient of , you may choose which license to receive this code under (except as noted in per-module LICENSE @@ -7,4 +12,4 @@ the directories in which they reside and in the code itself. No external contributions are allowed under licenses which are fundamentally incompatible with the AFL or BSD licenses that is distributed under. -The text of the AFL and BSD licenses is reproduced below. +The text of the AFL and BSD licenses is reproduced below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_afl-2.1_2.yml b/src/licensedcode/data/rules/bsd-new_or_afl-2.1_2.yml deleted file mode 100644 index eb813518759..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_afl-2.1_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR afl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0.RULE b/src/licensedcode/data/rules/bsd-new_or_apache-2.0.RULE index fc41de0319c..294412f2037 100644 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_apache-2.0.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Modified BSD or Apache License, Version 2.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0.yml b/src/licensedcode/data/rules/bsd-new_or_apache-2.0.yml deleted file mode 100644 index bf0284613fd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_1.RULE index c1997f0d15e..3411e4afeb8 100644 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR apache-2.0 +is_license_tag: yes +relevance: 100 +--- + __license__ = 'Modified BSD or Apache License, Version 2.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_1.yml b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_1.yml deleted file mode 100644 index 6340b13c802..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_2.RULE index ceacd4527ef..a478b862397 100644 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new OR apache-2.0 +is_license_notice: yes +relevance: 99 +--- + dual licensed under the terms of the Apache License, Version 2.0, and the BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_2.yml b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_2.yml deleted file mode 100644 index ab8d5095c8f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_3.RULE index 769ae59c12c..c81140a93a8 100644 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.APACHE + - LICENSE.BSD +--- + This software is made available under the terms of *either* of the licenses found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made under the terms of *both* these licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_3.yml b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_3.yml deleted file mode 100644 index 37a36357f64..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE.APACHE - - LICENSE.BSD diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_4.RULE index 63e965d76a1..53a4b1ad221 100644 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR apache-2.0 +is_license_notice: yes +relevance: 99 +--- + This project is dual-licensed under the BSD and Apache licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_4.yml b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_4.yml deleted file mode 100644 index ab8d5095c8f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_5.RULE index a192b4b8f43..c73a5b69367 100644 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR apache-2.0 +is_license_notice: yes +relevance: 99 +--- + License: BSD or Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_5.yml b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_5.yml deleted file mode 100644 index ab8d5095c8f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR apache-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE index 7e7d23a57c9..4f0bcd495cb 100644 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new OR apache-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +notes: SecurityVulns.COM +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/gpl.txt + - http://www.gnu.org/licenses/lgpl.txt +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index c920b6fa4e5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new OR apache-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -notes: SecurityVulns.COM -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/gpl.txt - - http://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE index 0e574a0e607..58893d88ee7 100644 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-new OR apache-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: SecurityVulns.COM +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/gpl.txt + - https://www.gnu.org/licenses/lgpl.txt +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index 2d1c8946ec0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_apache-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-new OR apache-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: SecurityVulns.COM -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/gpl.txt - - https://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_1.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_1.RULE index 93ed4faed9e..822b08900d4 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new OR epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.php + - https://www.eclipse.org/org/documents/epl-v10.php +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License 1.0, which is available at https://www.eclipse.org/org/documents/edl-v10.php OR the Eclipse Public License 1.0, which is available at diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_1.yml b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_1.yml deleted file mode 100644 index 6464ca8ed6a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.php - - https://www.eclipse.org/org/documents/epl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_2.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_2.RULE index 98a4be6d2c8..da72e43bc8f 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new OR epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_2.yml b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_2.yml deleted file mode 100644 index d10dcaf98eb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_1.RULE index 44a233fa009..13afca3b9c7 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_1.RULE @@ -1,6 +1,16 @@ +--- +license_expression: bsd-new OR epl-1.0 OR apache-2.0 OR mit +is_license_notice: yes +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause + - https://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/legal/epl-v10.html +--- + You must choose to accept, in full - {{any individual or combination}} of the following licenses: https://opensource.org/licenses/BSD-3-Clause {{BSD-3-Clause}} https://www.eclipse.org/legal/epl-v10.html {{EPL-1.0}} https://www.apache.org/licenses/LICENSE-2.0 {{Apache-2.0}} -https://opensource.org/licenses/MIT {{MIT}} +https://opensource.org/licenses/MIT {{MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_1.yml b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_1.yml deleted file mode 100644 index 12598609a98..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new OR epl-1.0 OR apache-2.0 OR mit -is_license_notice: yes -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause - - https://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_2.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_2.RULE index 2041f9f9a2d..3f458ae08d3 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-new OR epl-1.0 OR apache-2.0 OR mit +is_license_notice: yes +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause + - https://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/legal/epl-v10.html +--- + * You must choose to accept, in full - any individual or combination of * the following licenses: diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_2.yml b/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_2.yml deleted file mode 100644 index 12598609a98..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-1.0_or_apache-2.0_or_mit_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new OR epl-1.0 OR apache-2.0 OR mit -is_license_notice: yes -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause - - https://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_1.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_1.RULE index 1f828cfd692..3069b4faebb 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR epl-2.0 +is_license_notice: yes +relevance: 100 +--- + The license is made under the terms of the Eclipse Distribution License 1.0 and the Eclipse Public License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_1.yml b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_1.yml deleted file mode 100644 index af58b577c1d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_2.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_2.RULE index 374ecb94f8d..4e439d7c40d 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new OR epl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/org/documents/edl-v10.php + - https://www.eclipse.org/org/documents/epl-v20.php +--- + This program and the accompanying materials are made available under the terms of the Eclipse Distribution License 1.0, which is available at https://www.eclipse.org/org/documents/edl-v10.php OR the Eclipse Public License 1.0, which is available at diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_2.yml b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_2.yml deleted file mode 100644 index 2abd295de87..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR epl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/org/documents/edl-v10.php - - https://www.eclipse.org/org/documents/epl-v20.php diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_3.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_3.RULE index 3235f90d230..5ee9efa38f6 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR epl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 AND Eclipse Distribution License v1.0 which accompany this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_3.yml b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_3.yml deleted file mode 100644 index af58b577c1d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_4.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_4.RULE index dcc2668df4a..3bffd26a2f3 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new OR epl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v20.html + - https://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_4.yml b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_4.yml deleted file mode 100644 index ea93308574e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR epl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v20.html - - https://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_5.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_5.RULE index f7e87e786e1..f7777a12e0b 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new OR epl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v20.html + - https://www.eclipse.org/org/documents/edl-v10.html +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_5.yml b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_5.yml deleted file mode 100644 index 801aaf26ab9..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR epl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v20.html - - https://www.eclipse.org/org/documents/edl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_6.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_6.RULE index 77a38c35fd9..d70540723a6 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new OR epl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html + - http://www.eclipse.org/org/documents/edl-v10.html +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_6.yml b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_6.yml deleted file mode 100644 index 13a39a56e97..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR epl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html - - http://www.eclipse.org/org/documents/edl-v10.html diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_7.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_7.RULE index 38c3112d2f6..acd9ebd5362 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_7.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new OR epl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html + - http://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 2.0 ("EPL") and the Eclipse Distribution License Version 1.0 ("EDL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v20.html. A copy of the EDL is available at http://www.eclipse.org/org/documents/edl-v10.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_7.yml b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_7.yml deleted file mode 100644 index 59f58093f6f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR epl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_8.RULE b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_8.RULE index 2cc102542da..06bc9016f9c 100644 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_8.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new OR epl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html + - http://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_8.yml b/src/licensedcode/data/rules/bsd-new_or_epl-2.0_8.yml deleted file mode 100644 index 59f58093f6f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_epl-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR epl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_1.RULE index 890942334d4..c1aeb31e6b3 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_1.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_tag: yes +relevance: 90 +notes: Dual BSD/GPL, typical in LKMs MODULE_LICENSE +--- + Dual BSD/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_1.yml deleted file mode 100644 index a77dd184165..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_tag: yes -relevance: 90 -notes: Dual BSD/GPL, typical in LKMs MODULE_LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_2.RULE index 782cded856f..d1c5f4abf0d 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 90 +--- + may safely be consumed by a BSD or GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 5c535bacd07..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_3.RULE index 07ea6130f5c..44cd48a412b 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This software may be distributed either under the terms of the BSD-style license that accompanies tcpdump or the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_3.yml deleted file mode 100644 index 99b9dd5e1ac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_4.RULE index 6ab16e349f1..94d9fd87b7d 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms of Linux-PAM, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_4.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_4.yml deleted file mode 100644 index 99b9dd5e1ac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_5.RULE index 3918d43c535..502a6b74926 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_5.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_5.yml deleted file mode 100644 index 99b9dd5e1ac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_6.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_6.RULE index b9f4953fb49..7917ae91961 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_6.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_6.yml deleted file mode 100644 index 99b9dd5e1ac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_7.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_7.RULE index 7bdc2d3856d..5724519868f 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_7.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_7.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_7.yml deleted file mode 100644 index 99b9dd5e1ac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_8.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_8.RULE index 2b296df115d..94b87f1d605 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_8.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_8.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_reference: yes +relevance: 99 +--- + BSD or GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_8.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_8.yml deleted file mode 100644 index abaffe3da10..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_or_other-permissive_or_other-copyleft_1.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_or_other-permissive_or_other-copyleft_1.RULE index 6a1c179eecd..3c2d076b617 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_or_other-permissive_or_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_or_other-permissive_or_other-copyleft_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus OR other-permissive OR other-copyleft +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/opd.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted under any licence of your choise which meets the open source licence definition diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_or_other-permissive_or_other-copyleft_1.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_or_other-permissive_or_other-copyleft_1.yml deleted file mode 100644 index 81931509bf1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-1.0-plus_or_other-permissive_or_other-copyleft_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus OR other-permissive OR other-copyleft -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/opd.html diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_1.RULE index a3fb6e2c457..81f09eeeb50 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 85 +--- + This file is provided under a dual BSD/GPL license. When using or redistributing this file, you may do so under either license. @@ -27,4 +33,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_1.yml deleted file mode 100644 index a8e5a5198c0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_2.RULE index 826ff3272ed..d7a3ed126cb 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * This software may be distributed either under the terms of the * BSD-style license that accompanies or the GNU GPL version 2 * or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_2.yml deleted file mode 100644 index 39c62e903de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_3.RULE index 97f829db59b..113fa663245 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 85 +--- + 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 @@ -24,4 +30,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_or_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_3.yml deleted file mode 100644 index a8e5a5198c0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_4.RULE index 9d8775c9863..a8a11eb0ec2 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 85 +--- + 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 @@ -24,4 +30,4 @@ 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. + 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_or_gpl-2.0-plus_4.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_4.yml deleted file mode 100644 index a8e5a5198c0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_5.RULE index 23375f076db..e3ccfb33fc9 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 85 +--- + 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 @@ -25,4 +31,4 @@ 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. + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_5.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_5.yml deleted file mode 100644 index a8e5a5198c0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_6.RULE index 07a60bf270e..797279ee8ca 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +--- + # # LICENSE TERMS # diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_6.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_6.yml deleted file mode 100644 index d8cf64c3067..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_7.RULE index 06dcf540164..c3e124ea12e 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +--- + # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_7.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_7.yml deleted file mode 100644 index d8cf64c3067..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_1.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_1.RULE index c3f7ddd898e..3a6a18dd51e 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +relevance: 95 +notes: formerly libcap license and not 100% a bsd-new +--- + Unless otherwise *explicitly* stated, the following text describes the licensed conditions under which the contents of this libcap release may be used and distributed: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_1.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_1.yml deleted file mode 100644 index 81a4fe41954..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes -relevance: 95 -notes: formerly libcap license and not 100% a bsd-new diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_2.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_2.RULE index 60132ef4b45..8d6b56a80d9 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 10 +notes: formerly libcap license and not 100% a bsd-new +--- + Redistribution and use in source and binary forms of libcap, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_2.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_2.yml deleted file mode 100644 index 2039fa280f5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 10 -notes: formerly libcap license and not 100% a bsd-new diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_3.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_3.RULE index ccb415b3a6f..244dc4ff32f 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new OR gpl-2.0-plus +is_license_reference: yes +relevance: 90 +minimum_coverage: 99 +notes: formerly libcap license and not 100% a bsd-new +--- + Unless otherwise *explicitly* stated, the following text describes the licensed conditions under which the contents of this libcap release -may be used and distributed: +may be used and distributed: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_3.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_3.yml deleted file mode 100644 index f5f05b87675..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR gpl-2.0-plus -is_license_reference: yes -relevance: 90 -minimum_coverage: 99 -notes: formerly libcap license and not 100% a bsd-new diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_4.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_4.RULE index 6d2c2ccf876..3c9410d1d8d 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +relevance: 95 +notes: formerly libcap license and not 100% a bsd-new +--- + Redistribution and use in source and binary forms of libcap, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_4.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_4.yml deleted file mode 100644 index d7500bf3831..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0-plus_libcap_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -relevance: 95 -notes: formerly libcap license and not 100% a bsd-new diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_1.RULE index cc0c5fe31ef..941cc5a76c2 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_reference: yes +relevance: 99 +--- + BSD/GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_1.yml deleted file mode 100644 index 99a22cc1fcd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_10.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_10.RULE index cc5adcbc4d1..ef731c00a9e 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -29,4 +35,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_10.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_10.yml deleted file mode 100644 index feca318922e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_11.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_11.RULE index a4e64242fab..215ce4a3c57 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -44,4 +50,4 @@ 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. + 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_or_gpl-2.0_11.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_11.yml deleted file mode 100644 index a2c87dc2984..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_12.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_12.RULE index 2ad90cfbba2..bca21b1b24a 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +30,4 @@ 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. + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_12.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_12.yml deleted file mode 100644 index a2c87dc2984..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_13.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_13.RULE index 4e38b59afd3..5cdb985f46d 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_13.RULE @@ -1,4 +1,9 @@ +--- +license_expression: bsd-new OR 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 BSD Licence, GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version +License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_13.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_13.yml deleted file mode 100644 index a5c0531a1d1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_14.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_14.RULE index 6d641f71289..5b7b4ddf3a9 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_14.RULE @@ -1,5 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +--- + This code is released using a dual license strategy: BSD/GPL You can choose the licence that better fits your requirements. Released under the terms of 3-clause BSD License -Released under the terms of GNU General Public License Version 2.0 +Released under the terms of GNU General Public License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_14.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_14.yml deleted file mode 100644 index a5c0531a1d1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_15.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_15.RULE index f1f20b9b446..1dd54146444 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -17,4 +23,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. The full GNU General Public License is included in this distribution -in the file called LICENSE.GPL. +in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_15.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_15.yml deleted file mode 100644 index feca318922e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_16.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_16.RULE index 999b6ac2393..6e3b172853b 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_tag: yes +relevance: 99 +minimum_coverage: 100 +notes: This is an LKM MODULE_license macro with Dual BSD/GPL as defined in and documented in + the kernel module.h with some macro renaming +--- + DRIVER_LICENSE("Dual BSD/GPL"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_16.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_16.yml deleted file mode 100644 index cf0b68c4ee5..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_tag: yes -relevance: 99 -minimum_coverage: 100 -notes: This is an LKM MODULE_license macro with Dual BSD/GPL as defined in and documented in - the kernel module.h with some macro renaming diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_17.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_17.RULE index dcdc712c50e..6b5b368e58d 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_tag: yes +relevance: 99 +minimum_coverage: 100 +notes: This is an LKM MODULE_license macro with Dual BSD/GPL as defined in and documented in + the kernel module.h. Here there is some macro of macro going on. +--- + define DRIVER_LICENSE "Dual BSD/GPL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_17.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_17.yml deleted file mode 100644 index 94b4644e49b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_tag: yes -relevance: 99 -minimum_coverage: 100 -notes: This is an LKM MODULE_license macro with Dual BSD/GPL as defined in and documented in - the kernel module.h. Here there is some macro of macro going on. diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_18.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_18.RULE index 939e64749e0..6c1a629e589 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is provided under a dual BSD/GPLv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_18.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_18.yml deleted file mode 100644 index 027bb9b1afb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_19.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_19.RULE index d7839f0d88c..ee4c5aeb775 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_19.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_reference: yes +relevance: 99 +--- + dual BSD/GPLv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_19.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_19.yml deleted file mode 100644 index 99a22cc1fcd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_2.RULE index 9572d3b1b82..368be814842 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_2.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_tag: yes +relevance: 100 +notes: Linux MODULE_LICENSE binary tag +--- + license=Dual BSD/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_2.yml deleted file mode 100644 index f0fc3e819f0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_tag: yes -relevance: 100 -notes: Linux MODULE_LICENSE binary tag diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_20.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_20.RULE index 24c88577b2e..3048d64cdff 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_reference: yes +relevance: 99 +--- + under dual BSD and GPLv2 licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_20.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_20.yml deleted file mode 100644 index 99a22cc1fcd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_21.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_21.RULE index be023482b36..27b13461918 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 85 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_21.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_21.yml deleted file mode 100644 index 20e708148ad..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_22.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_22.RULE index bcab43e966f..57317803f27 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_22.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - COPYING +--- + The project is provided as an open-source dual [BSD](LICENSE) and [GPLv2](COPYING) licensed **C** library \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_22.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_22.yml deleted file mode 100644 index e62223465a6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_23.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_23.RULE index 72af9648f82..29bf53a40fc 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_23.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_23.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - COPYING +--- + License Zstandard is dual-licensed under [BSD](LICENSE) and [GPLv2](COPYING). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_23.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_23.yml deleted file mode 100644 index e62223465a6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_24.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_24.RULE index ca652eca800..3c7d067d287 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_24.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + "under the open source license indicated in the file" means that the contribution is licensed both under GPL v2 and modified BSD license (see below) and diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_24.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_24.yml deleted file mode 100644 index 027bb9b1afb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_25.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_25.RULE index a01ba6443e1..86e9f281dba 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The project is provided as an open-source dual BSD and GPLv2 licensed C library \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_25.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_25.yml deleted file mode 100644 index 027bb9b1afb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_26.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_26.RULE index 3ab533056a7..2585d551486 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_26.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_26.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - COPYING +--- + dual-licensed under [BSD](LICENSE) and [GPLv2](COPYING). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_26.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_26.yml deleted file mode 100644 index e62223465a6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_27.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_27.RULE index a533503a313..e757b3c7ea4 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual licensed under BSD license and GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_27.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_27.yml deleted file mode 100644 index 027bb9b1afb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_28.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_28.RULE index 9c4d6601cf4..757f68b8d3e 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_28.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_28.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +notes: Seen in ntb in FreeBSD either with bsd-new or bsd-simplified +--- + Much of the code in this module is shared with Linux. Any patches may be picked up and redistributed in Linux with a dual GPL/BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_28.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_28.yml deleted file mode 100644 index bf344a5a369..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -notes: Seen in ntb in FreeBSD either with bsd-new or bsd-simplified diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_29.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_29.RULE index 84e09d3d5c1..3a16ebd6c6e 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_29.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + You can use, modify and redistribute it under a BSD license or under the GNU GPL, version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_29.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_29.yml deleted file mode 100644 index 10e2b4dcb47..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_3.RULE index 13fac4b363c..22af1883c07 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_3.RULE @@ -1,4 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + * This program is free software; you can redistribute it and/or modify * it under the terms of the dual BSD / GNU General Public License version 2 as * published by the Free Software Foundation. When using or - * redistributing this file, you may do so under either license. + * redistributing this file, you may do so under either license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_3.yml deleted file mode 100644 index feca318922e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_30.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_30.RULE index ff64a44d08f..5c7c452991f 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_30.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_30.RULE @@ -1,4 +1,16 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE + - COPYING +notes: | + This is used sometimes with a bsd-new and is both long enough and vaguely defined. + This is also rarely seen with the bsd-simplified license, hence the lowered relevance. +--- + * This source code is licensed under both the BSD-style license (found in the * LICENSE file in the root directory of this source tree) and the GPLv2 (found * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. + * You may select, at your option, one of the above-listed licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_30.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_30.yml deleted file mode 100644 index 392da29c343..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_30.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE - - COPYING -notes: | - This is used sometimes with a bsd-new and is both long enough and vaguely defined. - This is also rarely seen with the bsd-simplified license, hence the lowered relevance. diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_31.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_31.RULE index 0da4dbfce2e..6c6b0f34beb 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_31.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE + - COPYING +ignorable_urls: + - https://github.com/facebook/zstd +--- + This source code is licensed under both the BSD-style license (found in the LICENSE file in the root directory of https://github.com/facebook/zstd) and the GPLv2 (found in the COPYING file in the root directory of diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_31.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_31.yml deleted file mode 100644 index 564a1f5af49..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_31.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE - - COPYING -ignorable_urls: - - https://github.com/facebook/zstd diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_32.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_32.RULE index 3b82412a655..5d059a6c4ac 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_32.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE + - COPYING +--- + This source code is licensed under both the BSD-style license (found in the LICENSE file in the root directory of this source tree) and the GPLv2 (found in the COPYING file in the root directory of this source tree). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_32.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_32.yml deleted file mode 100644 index 6e7c6785c1f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_33.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_33.RULE index 4f323cfc96f..1fae11e3d8f 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license to BSD + GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_33.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_33.yml deleted file mode 100644 index 027bb9b1afb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_34.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_34.RULE index 7f9dd52f39b..02aeca092ee 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_34.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license: BSD + GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_34.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_34.yml deleted file mode 100644 index 027bb9b1afb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_35.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_35.RULE index 7106a614c65..49d85a2e97f 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_35.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_35.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - COPYING +--- + provided as an open-source dual [BSD](LICENSE) and [GPLv2](COPYING) licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_35.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_35.yml deleted file mode 100644 index e62223465a6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_36.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_36.RULE index 7a7981ffaf4..fdf68120a63 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_36.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + provided as an open-source dual BSD and GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_36.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_36.yml deleted file mode 100644 index 027bb9b1afb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_37.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_37.RULE index f8c3f9d532b..55a1c633a01 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_37.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + dual BSD and GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_37.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_37.yml deleted file mode 100644 index 027bb9b1afb..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_38.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_38.RULE index 13de9e4df2a..0b621292dc8 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_38.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_38.RULE @@ -1,6 +1,16 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This file is licensed under the terms of the 3-clause BSD License (http://opensource.org/licenses/BSD-3-Clause) or the GNU GPL-2.0 (https://www.gnu.org/licenses/gpl-2.0.html), at your option. Both licenses are also available in the LICENSE file distributed with this project. This file may not be copied, modified, -or distributed except in accordance with those terms. +or distributed except in accordance with those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_38.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_38.yml deleted file mode 100644 index f65728a6d24..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_38.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_39.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_39.RULE index 8d9e5b51cf8..13b966aa0d6 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_39.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_39.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. GPL LICENSE SUMMARY \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_39.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_39.yml deleted file mode 100644 index 10e2b4dcb47..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_4.RULE index 697cf8a1cba..05edbeb91ff 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_tag: yes +relevance: 90 +minimum_coverage: 100 +notes: LKM with Dual BSD/GPL +--- + #ifdef MODULE_LICENSE MODULE_LICENSE("Dual BSD/GPL"); #endif \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_4.yml deleted file mode 100644 index 6f7a14d3e23..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_tag: yes -relevance: 90 -minimum_coverage: 100 -notes: LKM with Dual BSD/GPL diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_5.RULE index 79123094d18..44e3b6d7c56 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_5.RULE @@ -1,6 +1,12 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +--- + Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. Alternatively, this software may be distributed under the terms of the GNU General Public License ("GPL") version 2 as published by the Free -Software Foundation. +Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_5.yml deleted file mode 100644 index a2c87dc2984..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_6.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_6.RULE index 9b7f6a0c949..453074e76e9 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_6.RULE @@ -1,6 +1,15 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This file is licensed under the terms of the 3-clause BSD License (http://opensource.org/licenses/BSD-3-Clause) or the GNU GPL-2.0 (http://www.gnu.org/licenses/gpl-2.0.html), at your option. Both licenses are also available in the LICENSE file distributed with this project. This file may not be copied, modified, -or distributed except in accordance with those terms. +or distributed except in accordance with those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_6.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_6.yml deleted file mode 100644 index 78be872f57c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://opensource.org/licenses/BSD-3-Clause - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_7.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_7.RULE index 1c899de5e0a..8bb3d564cee 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 85 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -29,4 +35,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_7.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_7.yml deleted file mode 100644 index 20e708148ad..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_8.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_8.RULE index 9054954c61f..71f94b33e87 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - COPYING +--- + The project is provided as an open-source dual BSD and GPLv2 licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_8.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_8.yml deleted file mode 100644 index e62223465a6..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_9.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_9.RULE index dfc971420f5..1a1094c4bb0 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_9.RULE @@ -1,7 +1,11 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_notice: yes +--- + This code is released using a dual license strategy: BSD/GPL You can choose the license that better fits your requirements. Released under the terms of 3-clause BSD License -Released under the terms of GNU General Public License Version 2.0 - +Released under the terms of GNU General Public License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_9.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_9.yml deleted file mode 100644 index a5c0531a1d1..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_and_generic-cla_1.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_and_generic-cla_1.RULE index 9173f9af9a9..094fb9be2e8 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_and_generic-cla_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_and_generic-cla_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (bsd-new OR gpl-2.0) AND generic-cla +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE + - COPYING +--- + License By contributing to Zstandard, you agree that your contributions will be licensed under both the [LICENSE](LICENSE) file and the [COPYING](COPYING) file in the root directory of this source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_and_generic-cla_1.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_and_generic-cla_1.yml deleted file mode 100644 index 0b63eda683b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_and_generic-cla_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (bsd-new OR gpl-2.0) AND generic-cla -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license.RULE index f4f93133292..349a7a542e8 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: This is an LKM MODULE_license macro with Dual BSD/GPL as defined in and documented in + the kernel module.h +--- + MODULE_LICENSE("Dual BSD/GPL"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license.yml deleted file mode 100644 index cb156894659..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: This is an LKM MODULE_license macro with Dual BSD/GPL as defined in and documented in - the kernel module.h diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license_2.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license_2.RULE index 27428d78a17..7ae56f8cac1 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new OR gpl-2.0 +is_license_tag: yes +relevance: 99 +minimum_coverage: 100 +notes: LKM with Dual BSD/GPL +--- + CSIO_DRV_LICENSE "Dual BSD/GPL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license_2.yml b/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license_2.yml deleted file mode 100644 index 31ab1976e2c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl-2.0_kernel_module_license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR gpl-2.0 -is_license_tag: yes -relevance: 99 -minimum_coverage: 100 -notes: LKM with Dual BSD/GPL diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl.RULE index 4a374672c06..83c12d98379 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl.yml b/src/licensedcode/data/rules/bsd-new_or_gpl.yml deleted file mode 100644 index 1df77a68972..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl_1.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl_1.RULE index 81750990f48..2a05d0bb2b8 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +notes: Dual licenses for GPL and BSD-NEW +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl_1.yml b/src/licensedcode/data/rules/bsd-new_or_gpl_1.yml deleted file mode 100644 index a179ad8bf8c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 -notes: Dual licenses for GPL and BSD-NEW diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl_2.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl_2.RULE index 3627a36988c..65ecbce23db 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +notes: Dual licenses for GPL and BSD-NEW +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -28,4 +35,4 @@ 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 NOT ADVISED OF THE POSSIBILITY OF SUCH - DAMAGE. + DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl_2.yml b/src/licensedcode/data/rules/bsd-new_or_gpl_2.yml deleted file mode 100644 index a179ad8bf8c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 -notes: Dual licenses for GPL and BSD-NEW diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl_4.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl_4.RULE index 5444c5b268f..5077d119c3c 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl_4.RULE @@ -1 +1,7 @@ - Licensed under dual BSD/GPL license. +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + + Licensed under dual BSD/GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl_4.yml b/src/licensedcode/data/rules/bsd-new_or_gpl_4.yml deleted file mode 100644 index 99b9dd5e1ac..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl_5.RULE b/src/licensedcode/data/rules/bsd-new_or_gpl_5.RULE index a761d43f83c..0e9221fa2b6 100644 --- a/src/licensedcode/data/rules/bsd-new_or_gpl_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_gpl_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + This software is distributed under the "modified BSD licence". This software is also released with GNU license (GPL) in another file (same @@ -30,4 +36,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_gpl_5.yml b/src/licensedcode/data/rules/bsd-new_or_gpl_5.yml deleted file mode 100644 index 1df77a68972..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_gpl_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_1.RULE index a698ab6b8f0..3508329678c 100644 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: bsd-new variant seen in libuuid and often in combo with an LGPL alternative in libgcrypt + with typo in andor +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index 82737d769e0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: bsd-new variant seen in libuuid and often in combo with an LGPL alternative in libgcrypt - with typo in andor diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_2.RULE index 6226544a06c..020fba2ef66 100644 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Unless otherwise *explicitly* stated the following text describes the licensed conditions under which the contents of this module release may be distributed: diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index 856492e319b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_3.RULE index c53cac8e75e..05c26bdb2c7 100644 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms of this module, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_3.yml deleted file mode 100644 index 856492e319b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_4.RULE index a1e1ad52c70..5e223ebf9a2 100644 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new OR lgpl-2.0-plus +is_license_text: yes +--- + Unless otherwise *explicitly* stated the following text describes the licensed conditions under which the contents of this release may be distributed: @@ -35,4 +40,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_4.yml b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_4.yml deleted file mode 100644 index 9349999f74d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.0-plus_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR lgpl-2.0-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_1.RULE index 459d95b4779..39e9e1c0f78 100644 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new OR lgpl-2.1-plus +is_license_notice: yes +--- + is dual licensed under BSD and LGPL. In plain English, you do not need to distribute your application in diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_1.yml b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_1.yml deleted file mode 100644 index 98bf0b1fa2c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_2.RULE index 6edd05f06f3..c103eabb4f2 100644 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: bsd-new OR lgpl-2.1 +is_license_notice: yes +--- + Released under both BSD 3-Clause and GNU Lesser GPL library 2.1 licenses. This means you can use it in proprietary products; see License for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_2.yml b/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_2.yml deleted file mode 100644 index 2910fe12a1f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_lgpl-2.1_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_1.RULE b/src/licensedcode/data/rules/bsd-new_or_mit_1.RULE index 5f6c55c0e33..5df3807692d 100644 --- a/src/licensedcode/data/rules/bsd-new_or_mit_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR mit +is_license_notice: yes +relevance: 100 +--- + Available via the MIT or new BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_1.yml b/src/licensedcode/data/rules/bsd-new_or_mit_1.yml deleted file mode 100644 index 82fdb33a3ea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_2.RULE b/src/licensedcode/data/rules/bsd-new_or_mit_2.RULE index 477f9142477..51b36a9d4d5 100644 --- a/src/licensedcode/data/rules/bsd-new_or_mit_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_mit_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + is released under two licenses: new BSD, and MIT. You may pick the license that best suits your development needs. The text of both licenses are -provided below. +provided below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_2.yml b/src/licensedcode/data/rules/bsd-new_or_mit_2.yml deleted file mode 100644 index d4cbf08bdc2..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_3.RULE b/src/licensedcode/data/rules/bsd-new_or_mit_3.RULE index f2731372a8e..b1985752593 100644 --- a/src/licensedcode/data/rules/bsd-new_or_mit_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_mit_3.RULE @@ -1,2 +1,7 @@ +--- +license_expression: bsd-new OR mit +is_license_notice: yes +--- + is released under two licenses: new BSD, and MIT. You may pick the license that best suits your development needs. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_3.yml b/src/licensedcode/data/rules/bsd-new_or_mit_3.yml deleted file mode 100644 index 0176acbe509..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_mit_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_4.RULE b/src/licensedcode/data/rules/bsd-new_or_mit_4.RULE index 57bf0b4be7d..6bdb1f6af12 100644 --- a/src/licensedcode/data/rules/bsd-new_or_mit_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_mit_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR mit +is_license_notice: yes +relevance: 100 +--- + It is dual-licensed -- new BSD or MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_4.yml b/src/licensedcode/data/rules/bsd-new_or_mit_4.yml deleted file mode 100644 index 82fdb33a3ea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_mit_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_5.RULE b/src/licensedcode/data/rules/bsd-new_or_mit_5.RULE index 016c01dd314..72fb580a4ae 100644 --- a/src/licensedcode/data/rules/bsd-new_or_mit_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_mit_5.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.modernizr.com/license/ +--- + * Dual-licensed under the BSD or MIT licenses. * http://www.modernizr.com/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_5.yml b/src/licensedcode/data/rules/bsd-new_or_mit_5.yml deleted file mode 100644 index 92b363f3c51..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_mit_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.modernizr.com/license/ diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_6.RULE b/src/licensedcode/data/rules/bsd-new_or_mit_6.RULE index c87ef745c76..21f8e30c5ea 100644 --- a/src/licensedcode/data/rules/bsd-new_or_mit_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_mit_6.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new OR mit +is_license_notice: yes +relevance: 100 +--- + * Dual-licensed under the BSD or MIT licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_6.yml b/src/licensedcode/data/rules/bsd-new_or_mit_6.yml deleted file mode 100644 index 82fdb33a3ea..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_mit_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_7.RULE b/src/licensedcode/data/rules/bsd-new_or_mit_7.RULE index 398828c0206..52687200a33 100644 --- a/src/licensedcode/data/rules/bsd-new_or_mit_7.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_mit_7.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-new OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.modernizr.com/license/ +--- + * Dual-licensed under the BSD or MIT licenses. * https://www.modernizr.com/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_mit_7.yml b/src/licensedcode/data/rules/bsd-new_or_mit_7.yml deleted file mode 100644 index a7a35ecafcc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_mit_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.modernizr.com/license/ diff --git a/src/licensedcode/data/rules/bsd-new_or_other-permissive_1.RULE b/src/licensedcode/data/rules/bsd-new_or_other-permissive_1.RULE index aa40026e4b8..e3702992631 100644 --- a/src/licensedcode/data/rules/bsd-new_or_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_other-permissive_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new OR other-permissive +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.linfo.org/bsdlicense.html +--- + http://www.linfo.org/bsdlicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_other-permissive_1.yml b/src/licensedcode/data/rules/bsd-new_or_other-permissive_1.yml deleted file mode 100644 index cfead1bb878..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new OR other-permissive -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.linfo.org/bsdlicense.html diff --git a/src/licensedcode/data/rules/bsd-new_or_simplified_10.RULE b/src/licensedcode/data/rules/bsd-new_or_simplified_10.RULE index 53f3b344677..1129949b22a 100644 --- a/src/licensedcode/data/rules/bsd-new_or_simplified_10.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_simplified_10.RULE @@ -1 +1,7 @@ -is OSI Certified Open Source Software licensed under the BSD license. +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +--- + +is OSI Certified Open Source Software licensed under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_or_simplified_10.yml b/src/licensedcode/data/rules/bsd-new_or_simplified_10.yml deleted file mode 100644 index 21c2892de50..00000000000 --- a/src/licensedcode/data/rules/bsd-new_or_simplified_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-new_protojs_1.RULE b/src/licensedcode/data/rules/bsd-new_protojs_1.RULE index 29d5b4475a2..b1ebd6ae95d 100644 --- a/src/licensedcode/data/rules/bsd-new_protojs_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_protojs_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - https://opensource.org/licenses/BSD-3-Clause +--- + **License:** [BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause) "license": "BSD-3-Clause", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_protojs_1.yml b/src/licensedcode/data/rules/bsd-new_protojs_1.yml deleted file mode 100644 index 8b49a8da817..00000000000 --- a/src/licensedcode/data/rules/bsd-new_protojs_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_provided_1.RULE b/src/licensedcode/data/rules/bsd-new_provided_1.RULE index ebb608bc9b3..6d2d2870c56 100644 --- a/src/licensedcode/data/rules/bsd-new_provided_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_provided_1.RULE @@ -1 +1,9 @@ -provided under the "BSD (3-clause) License" +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.rst +--- + +provided under the "BSD (3-clause) License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_provided_1.yml b/src/licensedcode/data/rules/bsd-new_provided_1.yml deleted file mode 100644 index 33a7ddc4493..00000000000 --- a/src/licensedcode/data/rules/bsd-new_provided_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.rst diff --git a/src/licensedcode/data/rules/bsd-new_provided_2.RULE b/src/licensedcode/data/rules/bsd-new_provided_2.RULE index 0975c935714..635d8b376cd 100644 --- a/src/licensedcode/data/rules/bsd-new_provided_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_provided_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new +is_license_text: yes +referenced_filenames: + - LICENSE.rst +--- + provided under the "BSD (3-clause) License":: Redistribution and use in source and binary forms, with or without @@ -23,5 +30,4 @@ provided under the "BSD (3-clause) License":: 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. - + 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_provided_2.yml b/src/licensedcode/data/rules/bsd-new_provided_2.yml deleted file mode 100644 index 8bbb7960177..00000000000 --- a/src/licensedcode/data/rules/bsd-new_provided_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -referenced_filenames: - - LICENSE.rst diff --git a/src/licensedcode/data/rules/bsd-new_qt.RULE b/src/licensedcode/data/rules/bsd-new_qt.RULE index 4b263da0260..c28d659efcd 100644 --- a/src/licensedcode/data/rules/bsd-new_qt.RULE +++ b/src/licensedcode/data/rules/bsd-new_qt.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +--- + ** 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 @@ -24,4 +29,4 @@ ** 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." +** 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_qt.yml b/src/licensedcode/data/rules/bsd-new_qt.yml deleted file mode 100644 index 95b560346de..00000000000 --- a/src/licensedcode/data/rules/bsd-new_qt.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-new_readme1.RULE b/src/licensedcode/data/rules/bsd-new_readme1.RULE index ad3963696f1..e111b51a71f 100644 --- a/src/licensedcode/data/rules/bsd-new_readme1.RULE +++ b/src/licensedcode/data/rules/bsd-new_readme1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + is available under a BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_readme1.yml b/src/licensedcode/data/rules/bsd-new_readme1.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_readme1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_readme2.RULE b/src/licensedcode/data/rules/bsd-new_readme2.RULE index dc2c223d8f7..a72c7b8638f 100644 --- a/src/licensedcode/data/rules/bsd-new_readme2.RULE +++ b/src/licensedcode/data/rules/bsd-new_readme2.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + ([3-clause BSD license](/legal/BSD-3-clause)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_readme2.yml b/src/licensedcode/data/rules/bsd-new_readme2.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/bsd-new_readme2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-new_readme3.RULE b/src/licensedcode/data/rules/bsd-new_readme3.RULE index 35af83341e9..31bbc4d66a9 100644 --- a/src/licensedcode/data/rules/bsd-new_readme3.RULE +++ b/src/licensedcode/data/rules/bsd-new_readme3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Software License Agreement (BSD License) ======================================== @@ -24,4 +29,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_readme3.yml b/src/licensedcode/data/rules/bsd-new_readme3.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_readme3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_readme4.RULE b/src/licensedcode/data/rules/bsd-new_readme4.RULE index ac16a4cd8e4..7bc19e90747 100644 --- a/src/licensedcode/data/rules/bsd-new_readme4.RULE +++ b/src/licensedcode/data/rules/bsd-new_readme4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-new +is_license_text: yes +--- + Redistribution and use of this software in source and binary forms, @@ -27,4 +32,4 @@ 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. +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_readme4.yml b/src/licensedcode/data/rules/bsd-new_readme4.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-new_readme4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-new_readme5.RULE b/src/licensedcode/data/rules/bsd-new_readme5.RULE index 68c66466236..3c94d6c5226 100644 --- a/src/licensedcode/data/rules/bsd-new_readme5.RULE +++ b/src/licensedcode/data/rules/bsd-new_readme5.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +--- + The Library is available under a BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_readme5.yml b/src/licensedcode/data/rules/bsd-new_readme5.yml deleted file mode 100644 index e55e499970e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_readme5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-new_see_1.RULE b/src/licensedcode/data/rules/bsd-new_see_1.RULE index 7d59c4b1074..6ace5c39923 100644 --- a/src/licensedcode/data/rules/bsd-new_see_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_see_1.RULE @@ -1 +1,9 @@ -// Distributed under the "BSD License". See the accompanying LICENSE.rst file. +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.rst +--- + +// Distributed under the "BSD License". See the accompanying LICENSE.rst file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_see_1.yml b/src/licensedcode/data/rules/bsd-new_see_1.yml deleted file mode 100644 index eac3cf1d829..00000000000 --- a/src/licensedcode/data/rules/bsd-new_see_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.rst diff --git a/src/licensedcode/data/rules/bsd-new_see_license.RULE b/src/licensedcode/data/rules/bsd-new_see_license.RULE index f9eea423048..112b70fd824 100644 --- a/src/licensedcode/data/rules/bsd-new_see_license.RULE +++ b/src/licensedcode/data/rules/bsd-new_see_license.RULE @@ -1 +1,9 @@ -Licensed under the 3-clause BSD license. See the LICENSE file. +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +Licensed under the 3-clause BSD license. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_see_license.yml b/src/licensedcode/data/rules/bsd-new_see_license.yml deleted file mode 100644 index ae1dfef73b0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_see_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_sla.RULE b/src/licensedcode/data/rules/bsd-new_sla.RULE index 19dabcb1fd6..3c44d95fd94 100644 --- a/src/licensedcode/data/rules/bsd-new_sla.RULE +++ b/src/licensedcode/data/rules/bsd-new_sla.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 90 +--- + Software Copyright License Agreement (BSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_sla.yml b/src/licensedcode/data/rules/bsd-new_sla.yml deleted file mode 100644 index 60b23857636..00000000000 --- a/src/licensedcode/data/rules/bsd-new_sla.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-new_url_1.RULE b/src/licensedcode/data/rules/bsd-new_url_1.RULE index 92cab41a4aa..cf01dd7b5b7 100644 --- a/src/licensedcode/data/rules/bsd-new_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause +--- + https://spdx.org/licenses/bsd-3-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_1.yml b/src/licensedcode/data/rules/bsd-new_url_1.yml deleted file mode 100644 index cb78ae1ee02..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause diff --git a/src/licensedcode/data/rules/bsd-new_url_2.RULE b/src/licensedcode/data/rules/bsd-new_url_2.RULE index 323c0843963..b12ff8c042b 100644 --- a/src/licensedcode/data/rules/bsd-new_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause.html +--- + https://spdx.org/licenses/bsd-3-clause.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_2.yml b/src/licensedcode/data/rules/bsd-new_url_2.yml deleted file mode 100644 index 2583c38216c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause.html diff --git a/src/licensedcode/data/rules/bsd-new_url_3.RULE b/src/licensedcode/data/rules/bsd-new_url_3.RULE index 859ea4b8a1f..8cef089d550 100644 --- a/src/licensedcode/data/rules/bsd-new_url_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://software.clapper.org/grizzled-slf4j/license.html +--- + http://software.clapper.org/grizzled-slf4j/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_3.yml b/src/licensedcode/data/rules/bsd-new_url_3.yml deleted file mode 100644 index ebaa7befd1c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://software.clapper.org/grizzled-slf4j/license.html diff --git a/src/licensedcode/data/rules/bsd-new_url_4.RULE b/src/licensedcode/data/rules/bsd-new_url_4.RULE index ed892ea1c17..15ecb3cdf2b 100644 --- a/src/licensedcode/data/rules/bsd-new_url_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE +--- + https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_4.yml b/src/licensedcode/data/rules/bsd-new_url_4.yml deleted file mode 100644 index 3e9bdcb0b7c..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_url_5.RULE b/src/licensedcode/data/rules/bsd-new_url_5.RULE index 947d0f6bcb0..6cd817eba52 100644 --- a/src/licensedcode/data/rules/bsd-new_url_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_5.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://www.antlr.org/license.html +--- + http://www.antlr.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_5.yml b/src/licensedcode/data/rules/bsd-new_url_5.yml deleted file mode 100644 index 5b284fd0985..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://www.antlr.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_url_6.RULE b/src/licensedcode/data/rules/bsd-new_url_6.RULE index 70aa2f4d211..a8420a35f8e 100644 --- a/src/licensedcode/data/rules/bsd-new_url_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_6.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://antlr.org/license.html +--- + http://antlr.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_6.yml b/src/licensedcode/data/rules/bsd-new_url_6.yml deleted file mode 100644 index 7e9f2389560..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://antlr.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_url_7.RULE b/src/licensedcode/data/rules/bsd-new_url_7.RULE index d62aef318ba..dc4656c7d46 100644 --- a/src/licensedcode/data/rules/bsd-new_url_7.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_7.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://dist.codehaus.org/janino/new_bsd_license.txt +--- + http://dist.codehaus.org/janino/new_bsd_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_7.yml b/src/licensedcode/data/rules/bsd-new_url_7.yml deleted file mode 100644 index fbbcccf14d8..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://dist.codehaus.org/janino/new_bsd_license.txt diff --git a/src/licensedcode/data/rules/bsd-new_url_8.RULE b/src/licensedcode/data/rules/bsd-new_url_8.RULE index 4a0e95b4f0d..fb4f4cef13b 100644 --- a/src/licensedcode/data/rules/bsd-new_url_8.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_8.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://asm.ow2.org/license.html +--- + http://asm.ow2.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_8.yml b/src/licensedcode/data/rules/bsd-new_url_8.yml deleted file mode 100644 index 7abed6cf000..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://asm.ow2.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_url_9.RULE b/src/licensedcode/data/rules/bsd-new_url_9.RULE index 65f2ce81f24..2ce31a0826f 100644 --- a/src/licensedcode/data/rules/bsd-new_url_9.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_9.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://asm.objectweb.org/license.html +--- + http://asm.objectweb.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_9.yml b/src/licensedcode/data/rules/bsd-new_url_9.yml deleted file mode 100644 index f9a2bf355bd..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://asm.objectweb.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_url_badge.RULE b/src/licensedcode/data/rules/bsd-new_url_badge.RULE index 48070f284c9..68defe147d9 100644 --- a/src/licensedcode/data/rules/bsd-new_url_badge.RULE +++ b/src/licensedcode/data/rules/bsd-new_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-BSD%203--Clause-orange.svg + - https://opensource.org/licenses/BSD-3-Clause +--- + [![License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_url_badge.yml b/src/licensedcode/data/rules/bsd-new_url_badge.yml deleted file mode 100644 index aff7b9b9008..00000000000 --- a/src/licensedcode/data/rules/bsd-new_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-BSD%203--Clause-orange.svg - - https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_w3c.RULE b/src/licensedcode/data/rules/bsd-new_w3c.RULE index 86544e319b0..6f86e859c07 100644 --- a/src/licensedcode/data/rules/bsd-new_w3c.RULE +++ b/src/licensedcode/data/rules/bsd-new_w3c.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_text: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2008/03-bsd-license.html +--- + The files included in this test suite are licensed under the W3C 3-clause BSD License. A copy opf the license is included below. The original copy of the license is at @@ -34,4 +42,4 @@ 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. +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_w3c.yml b/src/licensedcode/data/rules/bsd-new_w3c.yml deleted file mode 100644 index 481e99bd4c7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_w3c.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2008/03-bsd-license.html diff --git a/src/licensedcode/data/rules/bsd-new_webm_1.RULE b/src/licensedcode/data/rules/bsd-new_webm_1.RULE index 30a42a1b946..e32dc99999f 100644 --- a/src/licensedcode/data/rules/bsd-new_webm_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_webm_1.RULE @@ -1 +1,9 @@ -// Software License Agreement: http://www.webmproject.org/license/software/ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.webmproject.org/license/software/ +--- + +// Software License Agreement: http://www.webmproject.org/license/software/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_webm_1.yml b/src/licensedcode/data/rules/bsd-new_webm_1.yml deleted file mode 100644 index d0c8fc0a86f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_webm_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.webmproject.org/license/software/ diff --git a/src/licensedcode/data/rules/bsd-new_webm_2.RULE b/src/licensedcode/data/rules/bsd-new_webm_2.RULE index 899082c57f4..bcd53be6075 100644 --- a/src/licensedcode/data/rules/bsd-new_webm_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_webm_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +ignorable_urls: + - http://www.webmproject.org/license/software/ +--- + // This code is licensed under the same terms as WebM: -// Software License Agreement: http://www.webmproject.org/license/software/ +// Software License Agreement: http://www.webmproject.org/license/software/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_webm_2.yml b/src/licensedcode/data/rules/bsd-new_webm_2.yml deleted file mode 100644 index 3efb9bc90a0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_webm_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -ignorable_urls: - - http://www.webmproject.org/license/software/ diff --git a/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_1.RULE b/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_1.RULE index b8c0a2d3afd..16a6581333d 100644 --- a/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new WITH ecma-no-patent +is_license_text: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.ecma-international.org/memento/codeofconduct.htm +--- + Software License All Software contained in this document ("Software)" is protected by copyright diff --git a/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_1.yml b/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_1.yml deleted file mode 100644 index 11525c543c7..00000000000 --- a/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new WITH ecma-no-patent -is_license_text: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.ecma-international.org/memento/codeofconduct.htm diff --git a/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_2.RULE b/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_2.RULE index 5f2b6ad38bc..320efafa53c 100644 --- a/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new WITH ecma-no-patent +is_license_text: yes +ignorable_urls: + - http://www.ecma-international.org/memento/codeofconduct.htm +--- + All Software contained in this document ("Software)" is protected by copyright and is being made available under the "BSD License", included below. This Software may be subject to third party rights (rights from parties other than diff --git a/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_2.yml b/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_2.yml deleted file mode 100644 index 72418352f11..00000000000 --- a/src/licensedcode/data/rules/bsd-new_with_ecma-no-patent_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new WITH ecma-no-patent -is_license_text: yes -ignorable_urls: - - http://www.ecma-international.org/memento/codeofconduct.htm diff --git a/src/licensedcode/data/rules/bsd-new_with_facebook-patent-rights-2_or_gpl-2.0_facebook_1.RULE b/src/licensedcode/data/rules/bsd-new_with_facebook-patent-rights-2_or_gpl-2.0_facebook_1.RULE index 1dcb27a439e..a22db45c72d 100644 --- a/src/licensedcode/data/rules/bsd-new_with_facebook-patent-rights-2_or_gpl-2.0_facebook_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_with_facebook-patent-rights-2_or_gpl-2.0_facebook_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: bsd-new WITH facebook-patent-rights-2 OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - PATENTS +notes: the PATENTS file has been removed from the git repo after v1.3.1. See https://github.com/facebook/zstd/tree/v1.3.0 + for this instead Also ztsd has licensing has been changed and simplified. +ignorable_urls: + - https://github.com/facebook/zstd +--- + This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of https://github.com/facebook/zstd. An additional grant of patent rights can be found in the PATENTS file in the @@ -7,4 +19,4 @@ 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. This program is dual-licensed; you may select either version 2 of the GNU General Public License ("GPL") or BSD license -("BSD"). +("BSD"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_with_facebook-patent-rights-2_or_gpl-2.0_facebook_1.yml b/src/licensedcode/data/rules/bsd-new_with_facebook-patent-rights-2_or_gpl-2.0_facebook_1.yml deleted file mode 100644 index 7715276565f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_with_facebook-patent-rights-2_or_gpl-2.0_facebook_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: bsd-new WITH facebook-patent-rights-2 OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - PATENTS -notes: the PATENTS file has been removed from the git repo after v1.3.1. See https://github.com/facebook/zstd/tree/v1.3.0 - for this instead Also ztsd has licensing has been changed and simplified. -ignorable_urls: - - https://github.com/facebook/zstd diff --git a/src/licensedcode/data/rules/bsd-new_with_far-manager-exception_1.RULE b/src/licensedcode/data/rules/bsd-new_with_far-manager-exception_1.RULE index bd4acd4e2a5..650fc6759ef 100644 --- a/src/licensedcode/data/rules/bsd-new_with_far-manager-exception_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_with_far-manager-exception_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-new WITH far-manager-exception +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_with_far-manager-exception_1.yml b/src/licensedcode/data/rules/bsd-new_with_far-manager-exception_1.yml deleted file mode 100644 index 912aa5fef0b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_with_far-manager-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new WITH far-manager-exception -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-new_xstream_maven_1.RULE b/src/licensedcode/data/rules/bsd-new_xstream_maven_1.RULE index cd0171a7b3a..c3336ee4471 100644 --- a/src/licensedcode/data/rules/bsd-new_xstream_maven_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_xstream_maven_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://xstream.codehaus.com/license.html +--- + BSD style diff --git a/src/licensedcode/data/rules/bsd-new_xstream_maven_1.yml b/src/licensedcode/data/rules/bsd-new_xstream_maven_1.yml deleted file mode 100644 index 3aeab23258f..00000000000 --- a/src/licensedcode/data/rules/bsd-new_xstream_maven_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://xstream.codehaus.com/license.html diff --git a/src/licensedcode/data/rules/bsd-new_xstream_maven_2.RULE b/src/licensedcode/data/rules/bsd-new_xstream_maven_2.RULE index 73e0977f554..c4357955370 100644 --- a/src/licensedcode/data/rules/bsd-new_xstream_maven_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_xstream_maven_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://xstream.codehaus.org/license.html +--- + BSD style diff --git a/src/licensedcode/data/rules/bsd-new_xstream_maven_2.yml b/src/licensedcode/data/rules/bsd-new_xstream_maven_2.yml deleted file mode 100644 index 2dc2de72dfc..00000000000 --- a/src/licensedcode/data/rules/bsd-new_xstream_maven_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://xstream.codehaus.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_xstream_maven_3.RULE b/src/licensedcode/data/rules/bsd-new_xstream_maven_3.RULE index eda3a42a3eb..d7e95af0a23 100644 --- a/src/licensedcode/data/rules/bsd-new_xstream_maven_3.RULE +++ b/src/licensedcode/data/rules/bsd-new_xstream_maven_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://xstream.codehaus.org/license.html +--- + http://xstream.codehaus.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_xstream_maven_3.yml b/src/licensedcode/data/rules/bsd-new_xstream_maven_3.yml deleted file mode 100644 index cacf9380e4e..00000000000 --- a/src/licensedcode/data/rules/bsd-new_xstream_maven_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://xstream.codehaus.org/license.html diff --git a/src/licensedcode/data/rules/bsd-new_xstream_maven_4.RULE b/src/licensedcode/data/rules/bsd-new_xstream_maven_4.RULE index 12aab1538c0..a77beea1e71 100644 --- a/src/licensedcode/data/rules/bsd-new_xstream_maven_4.RULE +++ b/src/licensedcode/data/rules/bsd-new_xstream_maven_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://xstream.codehaus.com/license.html +--- + http://xstream.codehaus.com/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_xstream_maven_4.yml b/src/licensedcode/data/rules/bsd-new_xstream_maven_4.yml deleted file mode 100644 index 3fa1de207e0..00000000000 --- a/src/licensedcode/data/rules/bsd-new_xstream_maven_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://xstream.codehaus.com/license.html diff --git a/src/licensedcode/data/rules/bsd-new_zlib.RULE b/src/licensedcode/data/rules/bsd-new_zlib.RULE index 66e34250c62..81ff3d4cae3 100644 --- a/src/licensedcode/data/rules/bsd-new_zlib.RULE +++ b/src/licensedcode/data/rules/bsd-new_zlib.RULE @@ -1,4 +1,10 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 100 +--- + * This is free software; you can redistribute it and/or modify it * under the terms of the BSD License. Use by owners of Che Guevarra * parafernalia is prohibited, where possible, and highly discouraged - * elsewhere. + * elsewhere. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_zlib.yml b/src/licensedcode/data/rules/bsd-new_zlib.yml deleted file mode 100644 index 9b72fc8912a..00000000000 --- a/src/licensedcode/data/rules/bsd-new_zlib.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-new_zlib2.RULE b/src/licensedcode/data/rules/bsd-new_zlib2.RULE index c8becd83500..dff6c576572 100644 --- a/src/licensedcode/data/rules/bsd-new_zlib2.RULE +++ b/src/licensedcode/data/rules/bsd-new_zlib2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + * This is free software; you can redistribute it and/or modify it - * under the terms of the BSD License. \ No newline at end of file + * under the terms of the BSD License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_zlib2.yml b/src/licensedcode/data/rules/bsd-new_zlib2.yml deleted file mode 100644 index a08d385a35b..00000000000 --- a/src/licensedcode/data/rules/bsd-new_zlib2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-no-disclaimer-unmodified_or_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/bsd-no-disclaimer-unmodified_or_gpl-2.0-plus.RULE index 1e43b056e09..9c4003fe30e 100644 --- a/src/licensedcode/data/rules/bsd-no-disclaimer-unmodified_or_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/bsd-no-disclaimer-unmodified_or_gpl-2.0-plus.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-no-disclaimer-unmodified OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-no-disclaimer-unmodified_or_gpl-2.0-plus.yml b/src/licensedcode/data/rules/bsd-no-disclaimer-unmodified_or_gpl-2.0-plus.yml deleted file mode 100644 index 3fa25b24b1f..00000000000 --- a/src/licensedcode/data/rules/bsd-no-disclaimer-unmodified_or_gpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-no-disclaimer-unmodified OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-no-mod.RULE b/src/licensedcode/data/rules/bsd-no-mod.RULE index f1eabeb7ca4..1219b67d474 100644 --- a/src/licensedcode/data/rules/bsd-no-mod.RULE +++ b/src/licensedcode/data/rules/bsd-no-mod.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-no-mod +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://wiki.freespire.org/index.php/Madwifi_License_Agreement +--- + http://wiki.freespire.org/index.php/Madwifi_License_Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-no-mod.yml b/src/licensedcode/data/rules/bsd-no-mod.yml deleted file mode 100644 index dfa678194ad..00000000000 --- a/src/licensedcode/data/rules/bsd-no-mod.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-no-mod -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://wiki.freespire.org/index.php/Madwifi_License_Agreement diff --git a/src/licensedcode/data/rules/bsd-no-mod_1.RULE b/src/licensedcode/data/rules/bsd-no-mod_1.RULE index a19aa2345a9..fd39e4f7e7f 100644 --- a/src/licensedcode/data/rules/bsd-no-mod_1.RULE +++ b/src/licensedcode/data/rules/bsd-no-mod_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-no-mod +is_license_text: yes +relevance: 100 +notes: typo in numbering clauses +--- + Redistribution and use in source and binary forms are permitted provided that the following conditions are met: 1. The materials contained herein are unmodified and are used diff --git a/src/licensedcode/data/rules/bsd-no-mod_1.yml b/src/licensedcode/data/rules/bsd-no-mod_1.yml deleted file mode 100644 index 9c9af6ebab1..00000000000 --- a/src/licensedcode/data/rules/bsd-no-mod_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-no-mod -is_license_text: yes -relevance: 100 -notes: typo in numbering clauses diff --git a/src/licensedcode/data/rules/bsd-no-mod_2.RULE b/src/licensedcode/data/rules/bsd-no-mod_2.RULE index 483beb1bb5d..94b6cd727b2 100644 --- a/src/licensedcode/data/rules/bsd-no-mod_2.RULE +++ b/src/licensedcode/data/rules/bsd-no-mod_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-no-mod +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.madwifi.org/ +--- + http://www.madwifi.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-no-mod_2.yml b/src/licensedcode/data/rules/bsd-no-mod_2.yml deleted file mode 100644 index 0023e82c22a..00000000000 --- a/src/licensedcode/data/rules/bsd-no-mod_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-no-mod -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.madwifi.org/ diff --git a/src/licensedcode/data/rules/bsd-original-uc-1986_1.RULE b/src/licensedcode/data/rules/bsd-original-uc-1986_1.RULE index e876a054ea5..aa3b7789b53 100644 --- a/src/licensedcode/data/rules/bsd-original-uc-1986_1.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc-1986_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-original-uc-1986 +is_license_text: yes +--- + # Redistribution and use in source and binary forms are permitted # provided that this notice is preserved and that due credit is given # to the University of California at Berkeley. The name of the University diff --git a/src/licensedcode/data/rules/bsd-original-uc-1986_1.yml b/src/licensedcode/data/rules/bsd-original-uc-1986_1.yml deleted file mode 100644 index 04ac1ae81e1..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc-1986_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-original-uc-1986 -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-original-uc-1986_2.RULE b/src/licensedcode/data/rules/bsd-original-uc-1986_2.RULE index d08759fb36f..73479f13ec7 100644 --- a/src/licensedcode/data/rules/bsd-original-uc-1986_2.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc-1986_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original-uc-1986 +is_license_text: yes +relevance: 99 +--- + Redistribution and use in source and binary forms are permitted provided that this notice is preserved and that due credit is given to the University of California at Berkeley. The name of the University diff --git a/src/licensedcode/data/rules/bsd-original-uc-1986_2.yml b/src/licensedcode/data/rules/bsd-original-uc-1986_2.yml deleted file mode 100644 index 05d5ff32b50..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc-1986_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc-1986 -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-original-uc-1986_3.RULE b/src/licensedcode/data/rules/bsd-original-uc-1986_3.RULE index 2ebab13b9c1..4e4c72ad63c 100644 --- a/src/licensedcode/data/rules/bsd-original-uc-1986_3.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc-1986_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original-uc-1986 +is_license_text: yes +relevance: 99 +notes: This is with an UoM attribution instead UC. +--- + * Redistribution and use in source and binary forms are permitted * provided that this notice is preserved and that due credit is given * to the University of Michigan at Ann Arbor. The name of the University diff --git a/src/licensedcode/data/rules/bsd-original-uc-1986_3.yml b/src/licensedcode/data/rules/bsd-original-uc-1986_3.yml deleted file mode 100644 index c3025c8ced8..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc-1986_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original-uc-1986 -is_license_text: yes -relevance: 99 -notes: This is with an UoM attribution instead UC. diff --git a/src/licensedcode/data/rules/bsd-original-uc.RULE b/src/licensedcode/data/rules/bsd-original-uc.RULE index 47ccd164f06..da83c4e173e 100644 --- a/src/licensedcode/data/rules/bsd-original-uc.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +--- + ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc.yml b/src/licensedcode/data/rules/bsd-original-uc.yml deleted file mode 100644 index cb3d55d1c80..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change diff --git a/src/licensedcode/data/rules/bsd-original-uc_1.RULE b/src/licensedcode/data/rules/bsd-original-uc_1.RULE index 7651fbf1889..6779a8ab1bb 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_1.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-original-uc_1.yml b/src/licensedcode/data/rules/bsd-original-uc_1.yml deleted file mode 100644 index 2b99c8e26ef..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_10.RULE b/src/licensedcode/data/rules/bsd-original-uc_10.RULE index fb6595d8b3a..231efc335c3 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_10.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_10.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +--- + BSD-4-Clause (University of California-Specific) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_10.yml b/src/licensedcode/data/rules/bsd-original-uc_10.yml deleted file mode 100644 index 520d6df6057..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original-uc_11.RULE b/src/licensedcode/data/rules/bsd-original-uc_11.RULE index 825434f5250..d787b0f2956 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_11.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_11.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +--- + BSD-Original-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_11.yml b/src/licensedcode/data/rules/bsd-original-uc_11.yml deleted file mode 100644 index 520d6df6057..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original-uc_12.RULE b/src/licensedcode/data/rules/bsd-original-uc_12.RULE index f5e645cea1a..26dff57f1a9 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_12.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original-uc +is_license_notice: yes +ignorable_authors: + - the University of California, Lawrence Berkeley Laboratory +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +31,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_12.yml b/src/licensedcode/data/rules/bsd-original-uc_12.yml deleted file mode 100644 index 863aeb46978..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original-uc -is_license_notice: yes -ignorable_authors: - - the University of California, Lawrence Berkeley Laboratory diff --git a/src/licensedcode/data/rules/bsd-original-uc_13.RULE b/src/licensedcode/data/rules/bsd-original-uc_13.RULE index 2fbb9f41bc0..22a0a04a806 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_13.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_notice: yes +notes: This is the 3rd clause that was made obsolete +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the University of California, Berkeley and its contributors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_13.yml b/src/licensedcode/data/rules/bsd-original-uc_13.yml deleted file mode 100644 index 4533f248e1d..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_notice: yes -notes: This is the 3rd clause that was made obsolete -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_14.RULE b/src/licensedcode/data/rules/bsd-original-uc_14.RULE index c59a1767106..055d192d563 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_14.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_14.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-original-uc +is_license_notice: yes +ignorable_authors: + - UC Berkeley and its contributors + - the University of California, Berkeley and its contributors +ignorable_urls: + - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +--- + NOTE: The copyright of UC Berkeley's Berkeley Software Distribution ("BSD") source has been updated. The copyright addendum may be found at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change and is included below. July 22, 1999 @@ -16,4 +26,4 @@ Effective immediately, licensees and distributors are no longer required to incl William Hoskins Director, Office of Technology Licensing -University of California, Berkeley +University of California, Berkeley \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_14.yml b/src/licensedcode/data/rules/bsd-original-uc_14.yml deleted file mode 100644 index fc5b39c5cc9..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-original-uc -is_license_notice: yes -ignorable_authors: - - UC Berkeley and its contributors - - the University of California, Berkeley and its contributors -ignorable_urls: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change diff --git a/src/licensedcode/data/rules/bsd-original-uc_15.RULE b/src/licensedcode/data/rules/bsd-original-uc_15.RULE index 036b8c3a87c..f0bfa5e9bbd 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_15.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_15.RULE @@ -1,2 +1,9 @@ -http://www.fsf.org/licensing/essays/bsd.html - \ No newline at end of file +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/essays/bsd.html +--- + +http://www.fsf.org/licensing/essays/bsd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_15.yml b/src/licensedcode/data/rules/bsd-original-uc_15.yml deleted file mode 100644 index e7f16eaed59..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/essays/bsd.html diff --git a/src/licensedcode/data/rules/bsd-original-uc_16.RULE b/src/licensedcode/data/rules/bsd-original-uc_16.RULE index 06ef078bf0c..ba7e5ff9ca8 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_16.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_16.RULE @@ -1,6 +1,12 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +minimum_coverage: 90 +--- + Update: The Berkeley copyright was changed, and the change is retroactive to all "true" BSD software (ie everything from UCB as opposed to other peoples code that just carried the same license). The new copyright doesn't clash with the GPL, so the module-only restriction has been removed.. -/ +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_16.yml b/src/licensedcode/data/rules/bsd-original-uc_16.yml deleted file mode 100644 index 1f27f4db11c..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original-uc_17.RULE b/src/licensedcode/data/rules/bsd-original-uc_17.RULE index 466fba91892..6165b2b333e 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_17.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_17.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +--- + BSD-4-Clause-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_17.yml b/src/licensedcode/data/rules/bsd-original-uc_17.yml deleted file mode 100644 index 520d6df6057..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original-uc_18.RULE b/src/licensedcode/data/rules/bsd-original-uc_18.RULE index b02f36dfdc3..7bd91d312ae 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_18.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_notice: yes +minimum_coverage: 85 +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + 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 @@ -20,4 +28,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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-uc_18.yml b/src/licensedcode/data/rules/bsd-original-uc_18.yml deleted file mode 100644 index 957cebc2a84..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_notice: yes -minimum_coverage: 85 -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_19.RULE b/src/licensedcode/data/rules/bsd-original-uc_19.RULE index 85e0d59a692..822c340a2fc 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_19.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +minimum_coverage: 90 +--- + Update: The Berkeley copyright was changed, and the change is retroactive to all "true" BSD software (ie everything from UCB as opposed to other peoples code that just carried diff --git a/src/licensedcode/data/rules/bsd-original-uc_19.yml b/src/licensedcode/data/rules/bsd-original-uc_19.yml deleted file mode 100644 index 1f27f4db11c..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original-uc_2.RULE b/src/licensedcode/data/rules/bsd-original-uc_2.RULE index 0a384d9e662..fff5402484a 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_2.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_notice: yes +notes: Lawrence Labs original BSD variant +ignorable_authors: + - the Network Research Group at Lawrence Berkeley National Laboratory +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-original-uc_2.yml b/src/licensedcode/data/rules/bsd-original-uc_2.yml deleted file mode 100644 index 22d3ec5e3cc..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_notice: yes -notes: Lawrence Labs original BSD variant -ignorable_authors: - - the Network Research Group at Lawrence Berkeley National Laboratory diff --git a/src/licensedcode/data/rules/bsd-original-uc_20.RULE b/src/licensedcode/data/rules/bsd-original-uc_20.RULE index 5c0a04dad96..e261995b1d6 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_20.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_20.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_authors: + - the Computer Systems Engineering Group at Lawrence Berkeley Laboratory +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original-uc_20.yml b/src/licensedcode/data/rules/bsd-original-uc_20.yml deleted file mode 100644 index 84c41055046..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_authors: - - the Computer Systems Engineering Group at Lawrence Berkeley Laboratory diff --git a/src/licensedcode/data/rules/bsd-original-uc_21.RULE b/src/licensedcode/data/rules/bsd-original-uc_21.RULE index 2f1ec63ff0b..17e6f267407 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_21.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + License: BSD-4 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/bsd-original-uc_21.yml b/src/licensedcode/data/rules/bsd-original-uc_21.yml deleted file mode 100644 index ce25b8e60e1..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_22.RULE b/src/licensedcode/data/rules/bsd-original-uc_22.RULE index 44ead903e25..ed9771a982e 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_22.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_22.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +--- + Original 4-clause BSD license (UCB) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_22.yml b/src/licensedcode/data/rules/bsd-original-uc_22.yml deleted file mode 100644 index 520d6df6057..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original-uc_23.RULE b/src/licensedcode/data/rules/bsd-original-uc_23.RULE index fc8168623e6..6111e6ecab9 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_23.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_23.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 90 +minimum_coverage: 90 +notes: this is a fragment seen in X11 +ignorable_authors: + - the Computer Systems Engineering group at Lawrence Berkeley Laboratory + - the University of California, Lawrence Berkeley Laboratory +--- + This software was developed by the Computer Systems Engineering group at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and contributed to Berkeley. diff --git a/src/licensedcode/data/rules/bsd-original-uc_23.yml b/src/licensedcode/data/rules/bsd-original-uc_23.yml deleted file mode 100644 index 346c34c6a4d..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_23.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 90 -minimum_coverage: 90 -notes: this is a fragment seen in X11 -ignorable_authors: - - the Computer Systems Engineering group at Lawrence Berkeley Laboratory - - the University of California, Lawrence Berkeley Laboratory diff --git a/src/licensedcode/data/rules/bsd-original-uc_24.RULE b/src/licensedcode/data/rules/bsd-original-uc_24.RULE index 33e0c37ecd5..5e79c177e85 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_24.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +--- + NOTE: The Regents have since retroactively removed the advertising clause from above. See ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_24.yml b/src/licensedcode/data/rules/bsd-original-uc_24.yml deleted file mode 100644 index cb3d55d1c80..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change diff --git a/src/licensedcode/data/rules/bsd-original-uc_25.RULE b/src/licensedcode/data/rules/bsd-original-uc_25.RULE index 6afd940ef57..929627be4d8 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_25.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_25.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +--- + NOTE: The Regents have since retroactively removed the advertising clause from above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_25.yml b/src/licensedcode/data/rules/bsd-original-uc_25.yml deleted file mode 100644 index 520d6df6057..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original-uc_26.RULE b/src/licensedcode/data/rules/bsd-original-uc_26.RULE index 974cb6d8051..2cd083809f6 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_26.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +relevance: 100 +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original-uc_26.yml b/src/licensedcode/data/rules/bsd-original-uc_26.yml deleted file mode 100644 index 0784ffe40c4..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -relevance: 100 -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_27.RULE b/src/licensedcode/data/rules/bsd-original-uc_27.RULE index f19b9980f86..c34a64a80dd 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_27.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_27.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +relevance: 100 +notes: seen in old sendmail notices +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + (b) Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original-uc_27.yml b/src/licensedcode/data/rules/bsd-original-uc_27.yml deleted file mode 100644 index 1588bd9ec13..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -relevance: 100 -notes: seen in old sendmail notices -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_28.RULE b/src/licensedcode/data/rules/bsd-original-uc_28.RULE index 7992c0d3341..be959fd4033 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_28.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_28.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +minimum_coverage: 95 +ignorable_authors: + - the University of California, Berkeley and its contributors + - the University of California, Lawrence Berkeley Laboratory +--- + All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the University of California, Lawrence Berkeley Laboratory. diff --git a/src/licensedcode/data/rules/bsd-original-uc_28.yml b/src/licensedcode/data/rules/bsd-original-uc_28.yml deleted file mode 100644 index 6d3ae019aaa..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -minimum_coverage: 95 -ignorable_authors: - - the University of California, Berkeley and its contributors - - the University of California, Lawrence Berkeley Laboratory diff --git a/src/licensedcode/data/rules/bsd-original-uc_29.RULE b/src/licensedcode/data/rules/bsd-original-uc_29.RULE index db5d6f93de3..3593f36bf70 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_29.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_29.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +minimum_coverage: 95 +ignorable_authors: + - the University of California, Lawrence Berkeley Laboratory +--- + * All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of diff --git a/src/licensedcode/data/rules/bsd-original-uc_29.yml b/src/licensedcode/data/rules/bsd-original-uc_29.yml deleted file mode 100644 index 83e050aff3c..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -minimum_coverage: 95 -ignorable_authors: - - the University of California, Lawrence Berkeley Laboratory diff --git a/src/licensedcode/data/rules/bsd-original-uc_3.RULE b/src/licensedcode/data/rules/bsd-original-uc_3.RULE index 6b2cb301d27..0f85460121c 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_3.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -25,4 +33,4 @@ * 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-uc_3.yml b/src/licensedcode/data/rules/bsd-original-uc_3.yml deleted file mode 100644 index 2b99c8e26ef..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_30.RULE b/src/licensedcode/data/rules/bsd-original-uc_30.RULE index d56c5b9f191..b5e02bcf072 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_30.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original-uc_30.yml b/src/licensedcode/data/rules/bsd-original-uc_30.yml deleted file mode 100644 index fb0633e312f..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_31.RULE b/src/licensedcode/data/rules/bsd-original-uc_31.RULE index 4c4c1c73a0a..ac7c5406d23 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_31.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_31.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD-4-Clause (University of California-Specific) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_31.yml b/src/licensedcode/data/rules/bsd-original-uc_31.yml deleted file mode 100644 index 4e76f067637..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-original-uc_32.RULE b/src/licensedcode/data/rules/bsd-original-uc_32.RULE index 8b0cc2526a5..8440e77df3d 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_32.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_32.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-4-Clause (University of California-Specific) BSD-4-Clause-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_32.yml b/src/licensedcode/data/rules/bsd-original-uc_32.yml deleted file mode 100644 index 4e76f067637..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-original-uc_33.RULE b/src/licensedcode/data/rules/bsd-original-uc_33.RULE index 1b3fc0436c3..5b52646b267 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_33.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_33.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original-uc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-4-Clause-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_33.yml b/src/licensedcode/data/rules/bsd-original-uc_33.yml deleted file mode 100644 index 6350dc98366..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-original-uc_34.RULE b/src/licensedcode/data/rules/bsd-original-uc_34.RULE index aed0a632840..c86a07f0709 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_34.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_34.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original-uc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-4-Clause (University of California-Specific) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_34.yml b/src/licensedcode/data/rules/bsd-original-uc_34.yml deleted file mode 100644 index 6350dc98366..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-original-uc_35.RULE b/src/licensedcode/data/rules/bsd-original-uc_35.RULE index fc0cc0da7fa..b05bbf05310 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_35.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_35.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original-uc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-4-Clause-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_35.yml b/src/licensedcode/data/rules/bsd-original-uc_35.yml deleted file mode 100644 index 6350dc98366..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-original-uc_36.RULE b/src/licensedcode/data/rules/bsd-original-uc_36.RULE index 4c723a05a7d..275c8c5d298 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_36.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_36.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-4-Clause-UC +--- + https://licenses.nuget.org/BSD-4-Clause-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_36.yml b/src/licensedcode/data/rules/bsd-original-uc_36.yml deleted file mode 100644 index 548662956c7..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-4-Clause-UC diff --git a/src/licensedcode/data/rules/bsd-original-uc_37.RULE b/src/licensedcode/data/rules/bsd-original-uc_37.RULE index dc6eb881745..9c676566bd4 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_37.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_37.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-4-Clause-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_37.yml b/src/licensedcode/data/rules/bsd-original-uc_37.yml deleted file mode 100644 index 520d6df6057..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original-uc_38.RULE b/src/licensedcode/data/rules/bsd-original-uc_38.RULE index a7996cec980..5366c312354 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_38.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_38.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-4-Clause-UC +--- + {{BSD-4-Clause-UC}} https://spdx.org/licenses/BSD-4-Clause-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_38.yml b/src/licensedcode/data/rules/bsd-original-uc_38.yml deleted file mode 100644 index 27777e3b764..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-4-Clause-UC diff --git a/src/licensedcode/data/rules/bsd-original-uc_39.RULE b/src/licensedcode/data/rules/bsd-original-uc_39.RULE index e1078b9457a..651498c14dd 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_39.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_39.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-4-Clause-UC +--- + LICENSE {{BSD-4-Clause-UC}} https://spdx.org/licenses/BSD-4-Clause-UC \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_39.yml b/src/licensedcode/data/rules/bsd-original-uc_39.yml deleted file mode 100644 index 27777e3b764..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-4-Clause-UC diff --git a/src/licensedcode/data/rules/bsd-original-uc_4.RULE b/src/licensedcode/data/rules/bsd-original-uc_4.RULE index 8cd1f1e9242..241f879185d 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_4.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freebsd.org/copyright/license.html +--- + http://www.freebsd.org/copyright/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_4.yml b/src/licensedcode/data/rules/bsd-original-uc_4.yml deleted file mode 100644 index 735a79b4402..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freebsd.org/copyright/license.html diff --git a/src/licensedcode/data/rules/bsd-original-uc_5.RULE b/src/licensedcode/data/rules/bsd-original-uc_5.RULE index 582dc3688f1..f02f655c7bb 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_5.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-original-uc +is_license_notice: yes +relevance: 100 +--- + under a 4-clause BSD license, held by the University of California \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_5.yml b/src/licensedcode/data/rules/bsd-original-uc_5.yml deleted file mode 100644 index 5531a1cf8cd..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original-uc_6.RULE b/src/licensedcode/data/rules/bsd-original-uc_6.RULE index cbef984304a..39877d2ae1c 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_6.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_6.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +--- + BSD-4-Clause-UC - BSD 4-Clause University of California-Specific \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_6.yml b/src/licensedcode/data/rules/bsd-original-uc_6.yml deleted file mode 100644 index 520d6df6057..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original-uc_7.RULE b/src/licensedcode/data/rules/bsd-original-uc_7.RULE index 0ff71255ca6..ee0157106d8 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_7.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_authors: + - the University of California, Lawrence Berkeley Laboratory and its contributors +--- + TCPDUMP LICENSE The manual page for this software is partially excerpted from the tcpdump manual page, which is subject to the following license: diff --git a/src/licensedcode/data/rules/bsd-original-uc_7.yml b/src/licensedcode/data/rules/bsd-original-uc_7.yml deleted file mode 100644 index 9fa529ef7ba..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_authors: - - the University of California, Lawrence Berkeley Laboratory and its contributors diff --git a/src/licensedcode/data/rules/bsd-original-uc_8.RULE b/src/licensedcode/data/rules/bsd-original-uc_8.RULE index 77d29662cba..8a439264d33 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_8.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.ssldump +--- + The TLS parser was made possible due to the work of whom book and ssldump program were followed closely. diff --git a/src/licensedcode/data/rules/bsd-original-uc_8.yml b/src/licensedcode/data/rules/bsd-original-uc_8.yml deleted file mode 100644 index 916cbde482e..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.ssldump diff --git a/src/licensedcode/data/rules/bsd-original-uc_9.RULE b/src/licensedcode/data/rules/bsd-original-uc_9.RULE index 26d70ed5201..593bca2bbbb 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_9.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_9.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-original-uc +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - UC Berkeley and its contributors + - the University of California, Berkeley and its contributors +ignorable_urls: + - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -32,4 +43,4 @@ Effective immediately, licensees and distributors are no longer required to incl William Hoskins Director, Office of Technology Licensing -University of California, Berkeley +University of California, Berkeley \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_9.yml b/src/licensedcode/data/rules/bsd-original-uc_9.yml deleted file mode 100644 index 477db61885e..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-original-uc -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - UC Berkeley and its contributors - - the University of California, Berkeley and its contributors -ignorable_urls: - - ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change diff --git a/src/licensedcode/data/rules/bsd-original-uc_url_1.RULE b/src/licensedcode/data/rules/bsd-original-uc_url_1.RULE index fd91a150004..010e7d54ddb 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-4-clause-uc +--- + https://spdx.org/licenses/bsd-4-clause-uc \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_url_1.yml b/src/licensedcode/data/rules/bsd-original-uc_url_1.yml deleted file mode 100644 index dc5015b84fb..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-4-clause-uc diff --git a/src/licensedcode/data/rules/bsd-original-uc_url_2.RULE b/src/licensedcode/data/rules/bsd-original-uc_url_2.RULE index c0e964a09d1..6289e626a7f 100644 --- a/src/licensedcode/data/rules/bsd-original-uc_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-original-uc_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original-uc +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-4-clause-uc.html +--- + https://spdx.org/licenses/bsd-4-clause-uc.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original-uc_url_2.yml b/src/licensedcode/data/rules/bsd-original-uc_url_2.yml deleted file mode 100644 index 7461af45580..00000000000 --- a/src/licensedcode/data/rules/bsd-original-uc_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original-uc -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-4-clause-uc.html diff --git a/src/licensedcode/data/rules/bsd-original_1.RULE b/src/licensedcode/data/rules/bsd-original_1.RULE index ce27a573534..0ac710c37de 100644 --- a/src/licensedcode/data/rules/bsd-original_1.RULE +++ b/src/licensedcode/data/rules/bsd-original_1.RULE @@ -1 +1,9 @@ -http://spdx.org/licenses/BSD-4-Clause +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/BSD-4-Clause +--- + +http://spdx.org/licenses/BSD-4-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_1.yml b/src/licensedcode/data/rules/bsd-original_1.yml deleted file mode 100644 index 315b3ff9706..00000000000 --- a/src/licensedcode/data/rules/bsd-original_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/BSD-4-Clause diff --git a/src/licensedcode/data/rules/bsd-original_10.RULE b/src/licensedcode/data/rules/bsd-original_10.RULE index 2e4c83553a1..31f7dd50fc0 100644 --- a/src/licensedcode/data/rules/bsd-original_10.RULE +++ b/src/licensedcode/data/rules/bsd-original_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + * NRL grants permission for redistribution and use in source and binary # * forms, with or without modification, of the software and documentation # * created at NRL provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_10.yml b/src/licensedcode/data/rules/bsd-original_10.yml deleted file mode 100644 index 12df84e3ad7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_11.RULE b/src/licensedcode/data/rules/bsd-original_11.RULE index 8dba884615f..cdec5518ea7 100644 --- a/src/licensedcode/data/rules/bsd-original_11.RULE +++ b/src/licensedcode/data/rules/bsd-original_11.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/philosophy/bsd.html +--- + http://www.gnu.org/philosophy/bsd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_11.yml b/src/licensedcode/data/rules/bsd-original_11.yml deleted file mode 100644 index 866efbf6793..00000000000 --- a/src/licensedcode/data/rules/bsd-original_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/philosophy/bsd.html diff --git a/src/licensedcode/data/rules/bsd-original_12.RULE b/src/licensedcode/data/rules/bsd-original_12.RULE index 309cc9964dc..75f6b903a01 100644 --- a/src/licensedcode/data/rules/bsd-original_12.RULE +++ b/src/licensedcode/data/rules/bsd-original_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +27,4 @@ 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 +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_12.yml b/src/licensedcode/data/rules/bsd-original_12.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_13.RULE b/src/licensedcode/data/rules/bsd-original_13.RULE index 44db1a40c89..729521d54d5 100644 --- a/src/licensedcode/data/rules/bsd-original_13.RULE +++ b/src/licensedcode/data/rules/bsd-original_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +29,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_13.yml b/src/licensedcode/data/rules/bsd-original_13.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_14.RULE b/src/licensedcode/data/rules/bsd-original_14.RULE index 3d0d40d9022..e9052ad8842 100644 --- a/src/licensedcode/data/rules/bsd-original_14.RULE +++ b/src/licensedcode/data/rules/bsd-original_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the Foundation, and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +32,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_14.yml b/src/licensedcode/data/rules/bsd-original_14.yml deleted file mode 100644 index 1e5d934bd91..00000000000 --- a/src/licensedcode/data/rules/bsd-original_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the Foundation, and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_15.RULE b/src/licensedcode/data/rules/bsd-original_15.RULE index 3c393d4cd0e..ce9222deea5 100644 --- a/src/licensedcode/data/rules/bsd-original_15.RULE +++ b/src/licensedcode/data/rules/bsd-original_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +31,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_15.yml b/src/licensedcode/data/rules/bsd-original_15.yml deleted file mode 100644 index 549af741ee8..00000000000 --- a/src/licensedcode/data/rules/bsd-original_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - its contributors diff --git a/src/licensedcode/data/rules/bsd-original_16.RULE b/src/licensedcode/data/rules/bsd-original_16.RULE index b4c0d2637f6..638a5750abe 100644 --- a/src/licensedcode/data/rules/bsd-original_16.RULE +++ b/src/licensedcode/data/rules/bsd-original_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the , and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +32,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_16.yml b/src/licensedcode/data/rules/bsd-original_16.yml deleted file mode 100644 index 4011a3b4acf..00000000000 --- a/src/licensedcode/data/rules/bsd-original_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the , and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_17.RULE b/src/licensedcode/data/rules/bsd-original_17.RULE index 0d017d8e02d..5d98c121005 100644 --- a/src/licensedcode/data/rules/bsd-original_17.RULE +++ b/src/licensedcode/data/rules/bsd-original_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +29,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_17.yml b/src/licensedcode/data/rules/bsd-original_17.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_18.RULE b/src/licensedcode/data/rules/bsd-original_18.RULE index 1a0a4b9011d..25e3047753d 100644 --- a/src/licensedcode/data/rules/bsd-original_18.RULE +++ b/src/licensedcode/data/rules/bsd-original_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -22,4 +28,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_18.yml b/src/licensedcode/data/rules/bsd-original_18.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_19.RULE b/src/licensedcode/data/rules/bsd-original_19.RULE index 4d604d98798..8423ca72bd4 100644 --- a/src/licensedcode/data/rules/bsd-original_19.RULE +++ b/src/licensedcode/data/rules/bsd-original_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -23,4 +29,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_19.yml b/src/licensedcode/data/rules/bsd-original_19.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_2.RULE b/src/licensedcode/data/rules/bsd-original_2.RULE index 17a590c114c..3aca8bee8bb 100644 --- a/src/licensedcode/data/rules/bsd-original_2.RULE +++ b/src/licensedcode/data/rules/bsd-original_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + BSD 4-clause "Original" or "Old" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_2.yml b/src/licensedcode/data/rules/bsd-original_2.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_20.RULE b/src/licensedcode/data/rules/bsd-original_20.RULE index d05ac0258e6..19f252c56aa 100644 --- a/src/licensedcode/data/rules/bsd-original_20.RULE +++ b/src/licensedcode/data/rules/bsd-original_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-original_20.yml b/src/licensedcode/data/rules/bsd-original_20.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_21.RULE b/src/licensedcode/data/rules/bsd-original_21.RULE index 37efe938f00..fce4a3b932a 100644 --- a/src/licensedcode/data/rules/bsd-original_21.RULE +++ b/src/licensedcode/data/rules/bsd-original_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + 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 and documentation 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: @@ -7,4 +13,4 @@ International, Inc. Neither the name of International, Inc. nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission. -USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA INTERNATIONAL, INC. 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 CALDERA INTERNATIONAL, INC. 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 OFLIABILITY, 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. +USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA INTERNATIONAL, INC. 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 CALDERA INTERNATIONAL, INC. 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 OFLIABILITY, 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_21.yml b/src/licensedcode/data/rules/bsd-original_21.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_22.RULE b/src/licensedcode/data/rules/bsd-original_22.RULE index 8122c4d4e15..95391901b96 100644 --- a/src/licensedcode/data/rules/bsd-original_22.RULE +++ b/src/licensedcode/data/rules/bsd-original_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the Corporation and its contributors +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -29,4 +37,4 @@ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +* THIS 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_22.yml b/src/licensedcode/data/rules/bsd-original_22.yml deleted file mode 100644 index da51ceaa57c..00000000000 --- a/src/licensedcode/data/rules/bsd-original_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the Corporation and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_23.RULE b/src/licensedcode/data/rules/bsd-original_23.RULE index 793af2c54f9..9723cc9cb4e 100644 --- a/src/licensedcode/data/rules/bsd-original_23.RULE +++ b/src/licensedcode/data/rules/bsd-original_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - Inc. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -24,4 +32,4 @@ 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 SUCH DAMAGE. + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_23.yml b/src/licensedcode/data/rules/bsd-original_23.yml deleted file mode 100644 index 2e8557bcd62..00000000000 --- a/src/licensedcode/data/rules/bsd-original_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - Inc. diff --git a/src/licensedcode/data/rules/bsd-original_24.RULE b/src/licensedcode/data/rules/bsd-original_24.RULE index 23848523d05..d56b405fcab 100644 --- a/src/licensedcode/data/rules/bsd-original_24.RULE +++ b/src/licensedcode/data/rules/bsd-original_24.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + BSD 4-Clause License (a.k.a Original) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_24.yml b/src/licensedcode/data/rules/bsd-original_24.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_25.RULE b/src/licensedcode/data/rules/bsd-original_25.RULE index add81dee254..83d3119cc9e 100644 --- a/src/licensedcode/data/rules/bsd-original_25.RULE +++ b/src/licensedcode/data/rules/bsd-original_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the University of California, Berkeley, Intel Corporation, and its contributors +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -29,4 +37,4 @@ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +* THIS 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_25.yml b/src/licensedcode/data/rules/bsd-original_25.yml deleted file mode 100644 index 72c25d45cbc..00000000000 --- a/src/licensedcode/data/rules/bsd-original_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the University of California, Berkeley, Intel Corporation, and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_26.RULE b/src/licensedcode/data/rules/bsd-original_26.RULE index fc376dacf36..ea561b2aa3f 100644 --- a/src/licensedcode/data/rules/bsd-original_26.RULE +++ b/src/licensedcode/data/rules/bsd-original_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the and its contributors +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -28,4 +36,4 @@ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +* THIS 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_26.yml b/src/licensedcode/data/rules/bsd-original_26.yml deleted file mode 100644 index 4c16cbd3f11..00000000000 --- a/src/licensedcode/data/rules/bsd-original_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_27.RULE b/src/licensedcode/data/rules/bsd-original_27.RULE index f34907b4b07..555d9055967 100644 --- a/src/licensedcode/data/rules/bsd-original_27.RULE +++ b/src/licensedcode/data/rules/bsd-original_27.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_27.yml b/src/licensedcode/data/rules/bsd-original_27.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_28.RULE b/src/licensedcode/data/rules/bsd-original_28.RULE index 7bc3d522630..5847fdd1fb2 100644 --- a/src/licensedcode/data/rules/bsd-original_28.RULE +++ b/src/licensedcode/data/rules/bsd-original_28.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the Alice Group +--- + 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 the Alice Group. 4. The names of the Alice Group or any of its members may not be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE ALICE GROUP 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 ALICE GROUP BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE ALICE GROUP 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 ALICE GROUP 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_28.yml b/src/licensedcode/data/rules/bsd-original_28.yml deleted file mode 100644 index 1095f8898ce..00000000000 --- a/src/licensedcode/data/rules/bsd-original_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the Alice Group diff --git a/src/licensedcode/data/rules/bsd-original_29.RULE b/src/licensedcode/data/rules/bsd-original_29.RULE index 4d6f570770d..c0c38197c5d 100644 --- a/src/licensedcode/data/rules/bsd-original_29.RULE +++ b/src/licensedcode/data/rules/bsd-original_29.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the University of Maryland +--- + * - BSD License - * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_29.yml b/src/licensedcode/data/rules/bsd-original_29.yml deleted file mode 100644 index a6666bfeabb..00000000000 --- a/src/licensedcode/data/rules/bsd-original_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the University of Maryland diff --git a/src/licensedcode/data/rules/bsd-original_3.RULE b/src/licensedcode/data/rules/bsd-original_3.RULE index eb7a961f61e..e9e936c5376 100644 --- a/src/licensedcode/data/rules/bsd-original_3.RULE +++ b/src/licensedcode/data/rules/bsd-original_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +notes: Variant of bsd-original +ignorable_authors: + - the and its contributors +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -28,4 +37,4 @@ * 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_3.yml b/src/licensedcode/data/rules/bsd-original_3.yml deleted file mode 100644 index 2a265d9c1af..00000000000 --- a/src/licensedcode/data/rules/bsd-original_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -notes: Variant of bsd-original -ignorable_authors: - - the and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_30.RULE b/src/licensedcode/data/rules/bsd-original_30.RULE index 842bb7fa9d5..62f28afcafa 100644 --- a/src/licensedcode/data/rules/bsd-original_30.RULE +++ b/src/licensedcode/data/rules/bsd-original_30.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - the University of Maryland +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * @@ -24,4 +32,4 @@ * 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. + * POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_30.yml b/src/licensedcode/data/rules/bsd-original_30.yml deleted file mode 100644 index a6666bfeabb..00000000000 --- a/src/licensedcode/data/rules/bsd-original_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - the University of Maryland diff --git a/src/licensedcode/data/rules/bsd-original_31.RULE b/src/licensedcode/data/rules/bsd-original_31.RULE index fb1dc29ba3c..fa7f6b7b021 100644 --- a/src/licensedcode/data/rules/bsd-original_31.RULE +++ b/src/licensedcode/data/rules/bsd-original_31.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * diff --git a/src/licensedcode/data/rules/bsd-original_31.yml b/src/licensedcode/data/rules/bsd-original_31.yml deleted file mode 100644 index 5a7383dc72b..00000000000 --- a/src/licensedcode/data/rules/bsd-original_31.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_32.RULE b/src/licensedcode/data/rules/bsd-original_32.RULE index aa19403e2aa..b56192f7e3f 100644 --- a/src/licensedcode/data/rules/bsd-original_32.RULE +++ b/src/licensedcode/data/rules/bsd-original_32.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_authors: + - the NetBSD Foundation, Inc. and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_32.yml b/src/licensedcode/data/rules/bsd-original_32.yml deleted file mode 100644 index 0b4b3fa115e..00000000000 --- a/src/licensedcode/data/rules/bsd-original_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_authors: - - the NetBSD Foundation, Inc. and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_33.RULE b/src/licensedcode/data/rules/bsd-original_33.RULE index 978d0d9cbdf..4eb4ddf2dc4 100644 --- a/src/licensedcode/data/rules/bsd-original_33.RULE +++ b/src/licensedcode/data/rules/bsd-original_33.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +ignorable_authors: + - the NetBSD Foundation and its contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_33.yml b/src/licensedcode/data/rules/bsd-original_33.yml deleted file mode 100644 index 3e9425e9e72..00000000000 --- a/src/licensedcode/data/rules/bsd-original_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -ignorable_authors: - - the NetBSD Foundation and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_34.RULE b/src/licensedcode/data/rules/bsd-original_34.RULE index 33517c9dc44..6665aec3c70 100644 --- a/src/licensedcode/data/rules/bsd-original_34.RULE +++ b/src/licensedcode/data/rules/bsd-original_34.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_tag: yes +relevance: 100 +--- + License: BSD-4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_34.yml b/src/licensedcode/data/rules/bsd-original_34.yml deleted file mode 100644 index d91c9a2cc2d..00000000000 --- a/src/licensedcode/data/rules/bsd-original_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_35.RULE b/src/licensedcode/data/rules/bsd-original_35.RULE index 7c8888d93d4..75db2e25767 100644 --- a/src/licensedcode/data/rules/bsd-original_35.RULE +++ b/src/licensedcode/data/rules/bsd-original_35.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_tag: yes +relevance: 100 +--- + License: BSD 4-clause Original or Old License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_35.yml b/src/licensedcode/data/rules/bsd-original_35.yml deleted file mode 100644 index d91c9a2cc2d..00000000000 --- a/src/licensedcode/data/rules/bsd-original_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_36.RULE b/src/licensedcode/data/rules/bsd-original_36.RULE index 107a0dbf22f..b5aa3a45aab 100644 --- a/src/licensedcode/data/rules/bsd-original_36.RULE +++ b/src/licensedcode/data/rules/bsd-original_36.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_tag: yes +relevance: 100 +--- + LicenseId: BSD-4-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_36.yml b/src/licensedcode/data/rules/bsd-original_36.yml deleted file mode 100644 index d91c9a2cc2d..00000000000 --- a/src/licensedcode/data/rules/bsd-original_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_37.RULE b/src/licensedcode/data/rules/bsd-original_37.RULE index 65c8d6dd436..454fd34123a 100644 --- a/src/licensedcode/data/rules/bsd-original_37.RULE +++ b/src/licensedcode/data/rules/bsd-original_37.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_notice: yes +relevance: 100 +--- + Licensed under the BSD 4-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_37.yml b/src/licensedcode/data/rules/bsd-original_37.yml deleted file mode 100644 index 020935ec991..00000000000 --- a/src/licensedcode/data/rules/bsd-original_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_38.RULE b/src/licensedcode/data/rules/bsd-original_38.RULE index 3549b6e69e6..07c63771f5d 100644 --- a/src/licensedcode/data/rules/bsd-original_38.RULE +++ b/src/licensedcode/data/rules/bsd-original_38.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + Original 4-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_38.yml b/src/licensedcode/data/rules/bsd-original_38.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_39.RULE b/src/licensedcode/data/rules/bsd-original_39.RULE index ac64ec52e3e..3cf0e58a493 100644 --- a/src/licensedcode/data/rules/bsd-original_39.RULE +++ b/src/licensedcode/data/rules/bsd-original_39.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + standard 4-clause BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_39.yml b/src/licensedcode/data/rules/bsd-original_39.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_4.RULE b/src/licensedcode/data/rules/bsd-original_4.RULE index ea3cbdea78c..789da997e05 100644 --- a/src/licensedcode/data/rules/bsd-original_4.RULE +++ b/src/licensedcode/data/rules/bsd-original_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_notice: yes +notes: NRL variant, with some UC Regent copyright mixed in +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + # * NRL grants permission for redistribution and use in source and binary # * forms, with or without modification, of the software and documentation # * created at NRL provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_4.yml b/src/licensedcode/data/rules/bsd-original_4.yml deleted file mode 100644 index f3e225662ec..00000000000 --- a/src/licensedcode/data/rules/bsd-original_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_notice: yes -notes: NRL variant, with some UC Regent copyright mixed in -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/bsd-original_40.RULE b/src/licensedcode/data/rules/bsd-original_40.RULE index f5cb7db8eca..7fbb5fcc465 100644 --- a/src/licensedcode/data/rules/bsd-original_40.RULE +++ b/src/licensedcode/data/rules/bsd-original_40.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + 4-clause BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_40.yml b/src/licensedcode/data/rules/bsd-original_40.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_41.RULE b/src/licensedcode/data/rules/bsd-original_41.RULE index 9c043a2c068..fef42d58be6 100644 --- a/src/licensedcode/data/rules/bsd-original_41.RULE +++ b/src/licensedcode/data/rules/bsd-original_41.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +ignorable_authors: + - Christopher G. Demetriou +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-original_41.yml b/src/licensedcode/data/rules/bsd-original_41.yml deleted file mode 100644 index d137f57a33b..00000000000 --- a/src/licensedcode/data/rules/bsd-original_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -ignorable_authors: - - Christopher G. Demetriou diff --git a/src/licensedcode/data/rules/bsd-original_42.RULE b/src/licensedcode/data/rules/bsd-original_42.RULE index 1ea3c691567..0ec548ba100 100644 --- a/src/licensedcode/data/rules/bsd-original_42.RULE +++ b/src/licensedcode/data/rules/bsd-original_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-original_42.yml b/src/licensedcode/data/rules/bsd-original_42.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_43.RULE b/src/licensedcode/data/rules/bsd-original_43.RULE index 15dace5a5e4..da970718d8d 100644 --- a/src/licensedcode/data/rules/bsd-original_43.RULE +++ b/src/licensedcode/data/rules/bsd-original_43.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_tag: yes +relevance: 100 +--- + License: BSD 4-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_43.yml b/src/licensedcode/data/rules/bsd-original_43.yml deleted file mode 100644 index d91c9a2cc2d..00000000000 --- a/src/licensedcode/data/rules/bsd-original_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_44.RULE b/src/licensedcode/data/rules/bsd-original_44.RULE index c89ed8afee5..9a602e79c1f 100644 --- a/src/licensedcode/data/rules/bsd-original_44.RULE +++ b/src/licensedcode/data/rules/bsd-original_44.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +ignorable_authors: + - Kawasaki LSI. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_44.yml b/src/licensedcode/data/rules/bsd-original_44.yml deleted file mode 100644 index 5f465136e8c..00000000000 --- a/src/licensedcode/data/rules/bsd-original_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -ignorable_authors: - - Kawasaki LSI. diff --git a/src/licensedcode/data/rules/bsd-original_45.RULE b/src/licensedcode/data/rules/bsd-original_45.RULE index 6e47ef50428..8c0a15a5a30 100644 --- a/src/licensedcode/data/rules/bsd-original_45.RULE +++ b/src/licensedcode/data/rules/bsd-original_45.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_45.yml b/src/licensedcode/data/rules/bsd-original_45.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_46.RULE b/src/licensedcode/data/rules/bsd-original_46.RULE index 8da7e894af3..66041a56229 100644 --- a/src/licensedcode/data/rules/bsd-original_46.RULE +++ b/src/licensedcode/data/rules/bsd-original_46.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +notes: See in https://github.com/MirBSD/z-archive-cvs/blob/cf42464925efd09ffd028556dc89021aef74901c/src/share/doc/legal/lbsd-caldera.mdoc%2Cv +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_46.yml b/src/licensedcode/data/rules/bsd-original_46.yml deleted file mode 100644 index fef3abb6190..00000000000 --- a/src/licensedcode/data/rules/bsd-original_46.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -notes: See in https://github.com/MirBSD/z-archive-cvs/blob/cf42464925efd09ffd028556dc89021aef74901c/src/share/doc/legal/lbsd-caldera.mdoc%2Cv diff --git a/src/licensedcode/data/rules/bsd-original_47.RULE b/src/licensedcode/data/rules/bsd-original_47.RULE index 4dc34bea3ba..e37649e70f5 100644 --- a/src/licensedcode/data/rules/bsd-original_47.RULE +++ b/src/licensedcode/data/rules/bsd-original_47.RULE @@ -1,3 +1,15 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: See in https://github.com/MirBSD/z-archive-cvs/blob/cf42464925efd09ffd028556dc89021aef74901c/src/share/doc/legal/lbsd-caldera.mdoc%2Cv +ignorable_copyrights: + - Copyright (c) Caldera International Inc. 2001-2002 +ignorable_holders: + - Caldera International Inc. +--- + Caldera International, Inc. makes no guarantees or commitments that any source code is available from Caldera International, Inc. The following copyright notice applies to the source code files for diff --git a/src/licensedcode/data/rules/bsd-original_47.yml b/src/licensedcode/data/rules/bsd-original_47.yml deleted file mode 100644 index efeee238006..00000000000 --- a/src/licensedcode/data/rules/bsd-original_47.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: See in https://github.com/MirBSD/z-archive-cvs/blob/cf42464925efd09ffd028556dc89021aef74901c/src/share/doc/legal/lbsd-caldera.mdoc%2Cv -ignorable_copyrights: - - Copyright (c) Caldera International Inc. 2001-2002 -ignorable_holders: - - Caldera International Inc. diff --git a/src/licensedcode/data/rules/bsd-original_48.RULE b/src/licensedcode/data/rules/bsd-original_48.RULE index b6b73f53868..a6f119cf158 100644 --- a/src/licensedcode/data/rules/bsd-original_48.RULE +++ b/src/licensedcode/data/rules/bsd-original_48.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +notes: POWERDOG INDUSTRIES variant +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_48.yml b/src/licensedcode/data/rules/bsd-original_48.yml deleted file mode 100644 index 5636b269347..00000000000 --- a/src/licensedcode/data/rules/bsd-original_48.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -notes: POWERDOG INDUSTRIES variant diff --git a/src/licensedcode/data/rules/bsd-original_49.RULE b/src/licensedcode/data/rules/bsd-original_49.RULE index d1a12161a95..5463e17c089 100644 --- a/src/licensedcode/data/rules/bsd-original_49.RULE +++ b/src/licensedcode/data/rules/bsd-original_49.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + THE BSD-4 CLAUSE LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_49.yml b/src/licensedcode/data/rules/bsd-original_49.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_5.RULE b/src/licensedcode/data/rules/bsd-original_5.RULE index 2c1491f0b1d..5b8fbe013b8 100644 --- a/src/licensedcode/data/rules/bsd-original_5.RULE +++ b/src/licensedcode/data/rules/bsd-original_5.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + License: BSD-C4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_5.yml b/src/licensedcode/data/rules/bsd-original_5.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_50.RULE b/src/licensedcode/data/rules/bsd-original_50.RULE index 1530123c3c0..e2ce6632e20 100644 --- a/src/licensedcode/data/rules/bsd-original_50.RULE +++ b/src/licensedcode/data/rules/bsd-original_50.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE BSD-4 CLAUSE LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_50.yml b/src/licensedcode/data/rules/bsd-original_50.yml deleted file mode 100644 index 020935ec991..00000000000 --- a/src/licensedcode/data/rules/bsd-original_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_51.RULE b/src/licensedcode/data/rules/bsd-original_51.RULE index 1c55be4d7f1..3209fe32d8e 100644 --- a/src/licensedcode/data/rules/bsd-original_51.RULE +++ b/src/licensedcode/data/rules/bsd-original_51.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-4 CLAUSE LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_51.yml b/src/licensedcode/data/rules/bsd-original_51.yml deleted file mode 100644 index 020935ec991..00000000000 --- a/src/licensedcode/data/rules/bsd-original_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_52.RULE b/src/licensedcode/data/rules/bsd-original_52.RULE index 35501b4a11e..4dd2b6629bf 100644 --- a/src/licensedcode/data/rules/bsd-original_52.RULE +++ b/src/licensedcode/data/rules/bsd-original_52.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 99 +notes: typo in BDS +--- + BDS-4 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_52.yml b/src/licensedcode/data/rules/bsd-original_52.yml deleted file mode 100644 index 9adccc7e361..00000000000 --- a/src/licensedcode/data/rules/bsd-original_52.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 99 -notes: typo in BDS diff --git a/src/licensedcode/data/rules/bsd-original_53.RULE b/src/licensedcode/data/rules/bsd-original_53.RULE index b1627ce0c10..98d55d3c072 100644 --- a/src/licensedcode/data/rules/bsd-original_53.RULE +++ b/src/licensedcode/data/rules/bsd-original_53.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_53.yml b/src/licensedcode/data/rules/bsd-original_53.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_54.RULE b/src/licensedcode/data/rules/bsd-original_54.RULE index 73448ef2efd..9493a05a797 100644 --- a/src/licensedcode/data/rules/bsd-original_54.RULE +++ b/src/licensedcode/data/rules/bsd-original_54.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +ignorable_authors: + - Paul +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_54.yml b/src/licensedcode/data/rules/bsd-original_54.yml deleted file mode 100644 index e0215b0af90..00000000000 --- a/src/licensedcode/data/rules/bsd-original_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -ignorable_authors: - - Paul diff --git a/src/licensedcode/data/rules/bsd-original_55.RULE b/src/licensedcode/data/rules/bsd-original_55.RULE index 4b527af1250..573a3f9c482 100644 --- a/src/licensedcode/data/rules/bsd-original_55.RULE +++ b/src/licensedcode/data/rules/bsd-original_55.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + BSD - 4Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_55.yml b/src/licensedcode/data/rules/bsd-original_55.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_56.RULE b/src/licensedcode/data/rules/bsd-original_56.RULE index b7299cc3f58..7f06f33c591 100644 --- a/src/licensedcode/data/rules/bsd-original_56.RULE +++ b/src/licensedcode/data/rules/bsd-original_56.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_56.yml b/src/licensedcode/data/rules/bsd-original_56.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_57.RULE b/src/licensedcode/data/rules/bsd-original_57.RULE index 97945735dc8..3221ab3774d 100644 --- a/src/licensedcode/data/rules/bsd-original_57.RULE +++ b/src/licensedcode/data/rules/bsd-original_57.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +notes: SDPX damaged text +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_57.yml b/src/licensedcode/data/rules/bsd-original_57.yml deleted file mode 100644 index 5876e905edc..00000000000 --- a/src/licensedcode/data/rules/bsd-original_57.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -notes: SDPX damaged text diff --git a/src/licensedcode/data/rules/bsd-original_58.RULE b/src/licensedcode/data/rules/bsd-original_58.RULE index d2ece3544cf..a9fe8b2dfac 100644 --- a/src/licensedcode/data/rules/bsd-original_58.RULE +++ b/src/licensedcode/data/rules/bsd-original_58.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +ignorable_authors: + - Inc. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_58.yml b/src/licensedcode/data/rules/bsd-original_58.yml deleted file mode 100644 index 08958d42b1b..00000000000 --- a/src/licensedcode/data/rules/bsd-original_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -ignorable_authors: - - Inc. diff --git a/src/licensedcode/data/rules/bsd-original_59.RULE b/src/licensedcode/data/rules/bsd-original_59.RULE index b9fde436dd3..265afb332b3 100644 --- a/src/licensedcode/data/rules/bsd-original_59.RULE +++ b/src/licensedcode/data/rules/bsd-original_59.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_59.yml b/src/licensedcode/data/rules/bsd-original_59.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_6.RULE b/src/licensedcode/data/rules/bsd-original_6.RULE index 1edbfd9c565..d66da8deb7e 100644 --- a/src/licensedcode/data/rules/bsd-original_6.RULE +++ b/src/licensedcode/data/rules/bsd-original_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-original_6.yml b/src/licensedcode/data/rules/bsd-original_6.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_60.RULE b/src/licensedcode/data/rules/bsd-original_60.RULE index e5577bc424d..cb8329cefa7 100644 --- a/src/licensedcode/data/rules/bsd-original_60.RULE +++ b/src/licensedcode/data/rules/bsd-original_60.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_tag: yes +relevance: 100 +--- + License: BSD – 4Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_60.yml b/src/licensedcode/data/rules/bsd-original_60.yml deleted file mode 100644 index d91c9a2cc2d..00000000000 --- a/src/licensedcode/data/rules/bsd-original_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_61.RULE b/src/licensedcode/data/rules/bsd-original_61.RULE index d3d76cb30b5..1a721a9a58a 100644 --- a/src/licensedcode/data/rules/bsd-original_61.RULE +++ b/src/licensedcode/data/rules/bsd-original_61.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_authors: + - the NetBSD Project +ignorable_urls: + - http://www.netbsd.org/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_61.yml b/src/licensedcode/data/rules/bsd-original_61.yml deleted file mode 100644 index 3df28aa5cb0..00000000000 --- a/src/licensedcode/data/rules/bsd-original_61.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_authors: - - the NetBSD Project -ignorable_urls: - - http://www.netbsd.org/ diff --git a/src/licensedcode/data/rules/bsd-original_62.RULE b/src/licensedcode/data/rules/bsd-original_62.RULE index 0c5b4f79510..1bedce9d76b 100644 --- a/src/licensedcode/data/rules/bsd-original_62.RULE +++ b/src/licensedcode/data/rules/bsd-original_62.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +ignorable_authors: + - Trimble Navigation, Ltd. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_62.yml b/src/licensedcode/data/rules/bsd-original_62.yml deleted file mode 100644 index 876b26a9c03..00000000000 --- a/src/licensedcode/data/rules/bsd-original_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -ignorable_authors: - - Trimble Navigation, Ltd. diff --git a/src/licensedcode/data/rules/bsd-original_63.RULE b/src/licensedcode/data/rules/bsd-original_63.RULE index ed06e140ce6..f78d34b95a7 100644 --- a/src/licensedcode/data/rules/bsd-original_63.RULE +++ b/src/licensedcode/data/rules/bsd-original_63.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_63.yml b/src/licensedcode/data/rules/bsd-original_63.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_64.RULE b/src/licensedcode/data/rules/bsd-original_64.RULE index 4e6362e3e43..17a1174aeb6 100644 --- a/src/licensedcode/data/rules/bsd-original_64.RULE +++ b/src/licensedcode/data/rules/bsd-original_64.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_64.yml b/src/licensedcode/data/rules/bsd-original_64.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_65.RULE b/src/licensedcode/data/rules/bsd-original_65.RULE index 69769c7f3e4..ded39799c2f 100644 --- a/src/licensedcode/data/rules/bsd-original_65.RULE +++ b/src/licensedcode/data/rules/bsd-original_65.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +ignorable_authors: + - the University of Illinois at Urbana and their contributors +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_65.yml b/src/licensedcode/data/rules/bsd-original_65.yml deleted file mode 100644 index 8d70cd0ed8a..00000000000 --- a/src/licensedcode/data/rules/bsd-original_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -ignorable_authors: - - the University of Illinois at Urbana and their contributors diff --git a/src/licensedcode/data/rules/bsd-original_66.RULE b/src/licensedcode/data/rules/bsd-original_66.RULE index 6e112b91afe..5f0b4327213 100644 --- a/src/licensedcode/data/rules/bsd-original_66.RULE +++ b/src/licensedcode/data/rules/bsd-original_66.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_66.yml b/src/licensedcode/data/rules/bsd-original_66.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_67.RULE b/src/licensedcode/data/rules/bsd-original_67.RULE index 9f96a48c38e..1e255d067a5 100644 --- a/src/licensedcode/data/rules/bsd-original_67.RULE +++ b/src/licensedcode/data/rules/bsd-original_67.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_67.yml b/src/licensedcode/data/rules/bsd-original_67.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_68.RULE b/src/licensedcode/data/rules/bsd-original_68.RULE index 52c99383f19..3e615719ef8 100644 --- a/src/licensedcode/data/rules/bsd-original_68.RULE +++ b/src/licensedcode/data/rules/bsd-original_68.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_authors: + - the NetBSD Project +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_68.yml b/src/licensedcode/data/rules/bsd-original_68.yml deleted file mode 100644 index 85bdebd5e44..00000000000 --- a/src/licensedcode/data/rules/bsd-original_68.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_authors: - - the NetBSD Project diff --git a/src/licensedcode/data/rules/bsd-original_69.RULE b/src/licensedcode/data/rules/bsd-original_69.RULE index 452163d27a4..129d3685953 100644 --- a/src/licensedcode/data/rules/bsd-original_69.RULE +++ b/src/licensedcode/data/rules/bsd-original_69.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-original_69.yml b/src/licensedcode/data/rules/bsd-original_69.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_7.RULE b/src/licensedcode/data/rules/bsd-original_7.RULE index 8e1b47c2293..12a2edc0667 100644 --- a/src/licensedcode/data/rules/bsd-original_7.RULE +++ b/src/licensedcode/data/rules/bsd-original_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +ignorable_authors: + - its contributors +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -28,4 +36,4 @@ * 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_7.yml b/src/licensedcode/data/rules/bsd-original_7.yml deleted file mode 100644 index 549af741ee8..00000000000 --- a/src/licensedcode/data/rules/bsd-original_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 -ignorable_authors: - - its contributors diff --git a/src/licensedcode/data/rules/bsd-original_70.RULE b/src/licensedcode/data/rules/bsd-original_70.RULE index d7959b210e0..4628d48392c 100644 --- a/src/licensedcode/data/rules/bsd-original_70.RULE +++ b/src/licensedcode/data/rules/bsd-original_70.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_70.yml b/src/licensedcode/data/rules/bsd-original_70.yml deleted file mode 100644 index 9f8d1fa2af3..00000000000 --- a/src/licensedcode/data/rules/bsd-original_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_71.RULE b/src/licensedcode/data/rules/bsd-original_71.RULE index e62923dd54d..7d5cbb83f3a 100644 --- a/src/licensedcode/data/rules/bsd-original_71.RULE +++ b/src/licensedcode/data/rules/bsd-original_71.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original +is_license_text: yes +notes: it does mention the regents, but this is not explicitly UC Regents hence a plain original + license, not a UC variant with 4th clause rescinded. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_71.yml b/src/licensedcode/data/rules/bsd-original_71.yml deleted file mode 100644 index 676181de0cc..00000000000 --- a/src/licensedcode/data/rules/bsd-original_71.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -notes: it does mention the regents, but this is not explicitly UC Regents hence a plain original - license, not a UC variant with 4th clause rescinded. diff --git a/src/licensedcode/data/rules/bsd-original_72.RULE b/src/licensedcode/data/rules/bsd-original_72.RULE index 730b588c214..532fe2e7c79 100644 --- a/src/licensedcode/data/rules/bsd-original_72.RULE +++ b/src/licensedcode/data/rules/bsd-original_72.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/philosophy/bsd.html +--- + https://www.gnu.org/philosophy/bsd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_72.yml b/src/licensedcode/data/rules/bsd-original_72.yml deleted file mode 100644 index 4e05ad063a8..00000000000 --- a/src/licensedcode/data/rules/bsd-original_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/philosophy/bsd.html diff --git a/src/licensedcode/data/rules/bsd-original_73.RULE b/src/licensedcode/data/rules/bsd-original_73.RULE index 11bdc356e52..eca2ccc0214 100644 --- a/src/licensedcode/data/rules/bsd-original_73.RULE +++ b/src/licensedcode/data/rules/bsd-original_73.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 95 +ignorable_authors: + - Bill Paul +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-original_73.yml b/src/licensedcode/data/rules/bsd-original_73.yml deleted file mode 100644 index b082c0e2c0a..00000000000 --- a/src/licensedcode/data/rules/bsd-original_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 95 -ignorable_authors: - - Bill Paul diff --git a/src/licensedcode/data/rules/bsd-original_74.RULE b/src/licensedcode/data/rules/bsd-original_74.RULE index 6c65539e70f..6306a2bcf7e 100644 --- a/src/licensedcode/data/rules/bsd-original_74.RULE +++ b/src/licensedcode/data/rules/bsd-original_74.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +notes: https://github.com/mariokonrad/bitset/blob/8f95b8ab45a41e5bbe652979ec55427e6317a58a/LICENSE +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-original_74.yml b/src/licensedcode/data/rules/bsd-original_74.yml deleted file mode 100644 index f9f495b330d..00000000000 --- a/src/licensedcode/data/rules/bsd-original_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -notes: https://github.com/mariokonrad/bitset/blob/8f95b8ab45a41e5bbe652979ec55427e6317a58a/LICENSE diff --git a/src/licensedcode/data/rules/bsd-original_75.RULE b/src/licensedcode/data/rules/bsd-original_75.RULE index abd2e235585..0a532fd71df 100644 --- a/src/licensedcode/data/rules/bsd-original_75.RULE +++ b/src/licensedcode/data/rules/bsd-original_75.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + "BSD Four Clause License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_75.yml b/src/licensedcode/data/rules/bsd-original_75.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_76.RULE b/src/licensedcode/data/rules/bsd-original_76.RULE index 85234896a31..f2b30b5c2ad 100644 --- a/src/licensedcode/data/rules/bsd-original_76.RULE +++ b/src/licensedcode/data/rules/bsd-original_76.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 90 +--- + BSD Old \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_76.yml b/src/licensedcode/data/rules/bsd-original_76.yml deleted file mode 100644 index a7d373f84a5..00000000000 --- a/src/licensedcode/data/rules/bsd-original_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-original_77.RULE b/src/licensedcode/data/rules/bsd-original_77.RULE index 750a848b109..94555a0a90a 100644 --- a/src/licensedcode/data/rules/bsd-original_77.RULE +++ b/src/licensedcode/data/rules/bsd-original_77.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 4-Clause "Original" or "Old" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_77.yml b/src/licensedcode/data/rules/bsd-original_77.yml deleted file mode 100644 index 37c1f0875f1..00000000000 --- a/src/licensedcode/data/rules/bsd-original_77.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-original_78.RULE b/src/licensedcode/data/rules/bsd-original_78.RULE index 77446b398f3..28e0caf8249 100644 --- a/src/licensedcode/data/rules/bsd-original_78.RULE +++ b/src/licensedcode/data/rules/bsd-original_78.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-4-Clause BSD 4-Clause "Original" or "Old" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_78.yml b/src/licensedcode/data/rules/bsd-original_78.yml deleted file mode 100644 index 37c1f0875f1..00000000000 --- a/src/licensedcode/data/rules/bsd-original_78.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-original_79.RULE b/src/licensedcode/data/rules/bsd-original_79.RULE index 5709160501a..fc3f6b1c94c 100644 --- a/src/licensedcode/data/rules/bsd-original_79.RULE +++ b/src/licensedcode/data/rules/bsd-original_79.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 4-Clause "Original" or "Old" License BSD-4-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_79.yml b/src/licensedcode/data/rules/bsd-original_79.yml deleted file mode 100644 index 37c1f0875f1..00000000000 --- a/src/licensedcode/data/rules/bsd-original_79.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-original_8.RULE b/src/licensedcode/data/rules/bsd-original_8.RULE index 981839ad34e..d4bfb2c003f 100644 --- a/src/licensedcode/data/rules/bsd-original_8.RULE +++ b/src/licensedcode/data/rules/bsd-original_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + BSD 4-Clause License (a.k.a Original) Redistribution and use in source and binary forms, with or without @@ -23,4 +29,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_8.yml b/src/licensedcode/data/rules/bsd-original_8.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_80.RULE b/src/licensedcode/data/rules/bsd-original_80.RULE index c4417b9e8a8..c301b83301f 100644 --- a/src/licensedcode/data/rules/bsd-original_80.RULE +++ b/src/licensedcode/data/rules/bsd-original_80.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-original_80.yml b/src/licensedcode/data/rules/bsd-original_80.yml deleted file mode 100644 index 8955ceaa750..00000000000 --- a/src/licensedcode/data/rules/bsd-original_80.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-original -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-original_81.RULE b/src/licensedcode/data/rules/bsd-original_81.RULE index 6d383337f18..2469376d9d4 100644 --- a/src/licensedcode/data/rules/bsd-original_81.RULE +++ b/src/licensedcode/data/rules/bsd-original_81.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/BSD_licenses#4-clause_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_81.yml b/src/licensedcode/data/rules/bsd-original_81.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_82.RULE b/src/licensedcode/data/rules/bsd-original_82.RULE index 0a733df4a53..453cf742944 100644 --- a/src/licensedcode/data/rules/bsd-original_82.RULE +++ b/src/licensedcode/data/rules/bsd-original_82.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 95 +notes: entry in Wikipedia +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-original_82.yml b/src/licensedcode/data/rules/bsd-original_82.yml deleted file mode 100644 index 9b13d5975b8..00000000000 --- a/src/licensedcode/data/rules/bsd-original_82.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 95 -notes: entry in Wikipedia diff --git a/src/licensedcode/data/rules/bsd-original_83.RULE b/src/licensedcode/data/rules/bsd-original_83.RULE index a1e13f88385..7cdcaf82482 100644 --- a/src/licensedcode/data/rules/bsd-original_83.RULE +++ b/src/licensedcode/data/rules/bsd-original_83.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + BSD_licenses#4-clause_license_(original_%22BSD_License%22) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_83.yml b/src/licensedcode/data/rules/bsd-original_83.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_84.RULE b/src/licensedcode/data/rules/bsd-original_84.RULE index 180bb9e4e46..3551b0d43f8 100644 --- a/src/licensedcode/data/rules/bsd-original_84.RULE +++ b/src/licensedcode/data/rules/bsd-original_84.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + BSD_licenses#4-clause_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_84.yml b/src/licensedcode/data/rules/bsd-original_84.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_85.RULE b/src/licensedcode/data/rules/bsd-original_85.RULE index d0335dd4d01..f3359a00512 100644 --- a/src/licensedcode/data/rules/bsd-original_85.RULE +++ b/src/licensedcode/data/rules/bsd-original_85.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + (original_%22BSD_License%22) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_85.yml b/src/licensedcode/data/rules/bsd-original_85.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_86.RULE b/src/licensedcode/data/rules/bsd-original_86.RULE index 76d98f4b036..09c9ee808b2 100644 --- a/src/licensedcode/data/rules/bsd-original_86.RULE +++ b/src/licensedcode/data/rules/bsd-original_86.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-original +is_license_tag: yes +ignorable_urls: + - http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29 +--- + "license": { "name": "BSD", "url": "http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_86.yml b/src/licensedcode/data/rules/bsd-original_86.yml deleted file mode 100644 index 24434f72a7a..00000000000 --- a/src/licensedcode/data/rules/bsd-original_86.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-original -is_license_tag: yes -ignorable_urls: - - http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29 diff --git a/src/licensedcode/data/rules/bsd-original_87.RULE b/src/licensedcode/data/rules/bsd-original_87.RULE index 989a68ba339..f9737fab358 100644 --- a/src/licensedcode/data/rules/bsd-original_87.RULE +++ b/src/licensedcode/data/rules/bsd-original_87.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-4-Clause +--- + https://licenses.nuget.org/BSD-4-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_87.yml b/src/licensedcode/data/rules/bsd-original_87.yml deleted file mode 100644 index 4ad8e4b57cc..00000000000 --- a/src/licensedcode/data/rules/bsd-original_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-4-Clause diff --git a/src/licensedcode/data/rules/bsd-original_88.RULE b/src/licensedcode/data/rules/bsd-original_88.RULE index 9cd4e94f334..7b6b0d13f67 100644 --- a/src/licensedcode/data/rules/bsd-original_88.RULE +++ b/src/licensedcode/data/rules/bsd-original_88.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-4-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_88.yml b/src/licensedcode/data/rules/bsd-original_88.yml deleted file mode 100644 index cbe556259e4..00000000000 --- a/src/licensedcode/data/rules/bsd-original_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-original_89.RULE b/src/licensedcode/data/rules/bsd-original_89.RULE index e62485fcabc..6043df913a7 100644 --- a/src/licensedcode/data/rules/bsd-original_89.RULE +++ b/src/licensedcode/data/rules/bsd-original_89.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-4-Clause +--- + {{BSD-4-Clause}} https://spdx.org/licenses/BSD-4-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_89.yml b/src/licensedcode/data/rules/bsd-original_89.yml deleted file mode 100644 index cbb4872ff5b..00000000000 --- a/src/licensedcode/data/rules/bsd-original_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-4-Clause diff --git a/src/licensedcode/data/rules/bsd-original_9.RULE b/src/licensedcode/data/rules/bsd-original_9.RULE index f30b7d75284..1561857bc51 100644 --- a/src/licensedcode/data/rules/bsd-original_9.RULE +++ b/src/licensedcode/data/rules/bsd-original_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-original +is_license_text: yes +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +27,4 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + THIS 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_9.yml b/src/licensedcode/data/rules/bsd-original_9.yml deleted file mode 100644 index 5b740a1fbc7..00000000000 --- a/src/licensedcode/data/rules/bsd-original_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-original -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-original_90.RULE b/src/licensedcode/data/rules/bsd-original_90.RULE index 8b9d867aa57..b6da846e9b8 100644 --- a/src/licensedcode/data/rules/bsd-original_90.RULE +++ b/src/licensedcode/data/rules/bsd-original_90.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-4-Clause +--- + LICENSE {{BSD-4-Clause}} https://spdx.org/licenses/BSD-4-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_90.yml b/src/licensedcode/data/rules/bsd-original_90.yml deleted file mode 100644 index cbb4872ff5b..00000000000 --- a/src/licensedcode/data/rules/bsd-original_90.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-4-Clause diff --git a/src/licensedcode/data/rules/bsd-original_trimble.RULE b/src/licensedcode/data/rules/bsd-original_trimble.RULE index 66816a9cd92..d29ea82d13f 100644 --- a/src/licensedcode/data/rules/bsd-original_trimble.RULE +++ b/src/licensedcode/data/rules/bsd-original_trimble.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-original +is_license_notice: yes +ignorable_authors: + - Trimble Navigation, Ltd. + - the Software and Component Technologies group of Trimble Navigation, Ltd. +--- + * This software was developed by the Software and Component Technologies * group of Trimble Navigation, Ltd. * @@ -27,4 +35,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_trimble.yml b/src/licensedcode/data/rules/bsd-original_trimble.yml deleted file mode 100644 index e61f0d50899..00000000000 --- a/src/licensedcode/data/rules/bsd-original_trimble.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_notice: yes -ignorable_authors: - - Trimble Navigation, Ltd. - - the Software and Component Technologies group of Trimble Navigation, Ltd. diff --git a/src/licensedcode/data/rules/bsd-original_url_1.RULE b/src/licensedcode/data/rules/bsd-original_url_1.RULE index 607051c174c..479a0d2143f 100644 --- a/src/licensedcode/data/rules/bsd-original_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-original_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-4-clause +--- + https://spdx.org/licenses/bsd-4-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_url_1.yml b/src/licensedcode/data/rules/bsd-original_url_1.yml deleted file mode 100644 index 82679658caa..00000000000 --- a/src/licensedcode/data/rules/bsd-original_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-4-clause diff --git a/src/licensedcode/data/rules/bsd-original_url_2.RULE b/src/licensedcode/data/rules/bsd-original_url_2.RULE index 0eed3c5389c..bea5baf7cf9 100644 --- a/src/licensedcode/data/rules/bsd-original_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-original_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-original +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-4-clause.html +--- + https://spdx.org/licenses/bsd-4-clause.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-original_url_2.yml b/src/licensedcode/data/rules/bsd-original_url_2.yml deleted file mode 100644 index fb1033d346b..00000000000 --- a/src/licensedcode/data/rules/bsd-original_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-4-clause.html diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_1.RULE b/src/licensedcode/data/rules/bsd-plus-mod-notice_1.RULE index a14201ef95a..7f7efa8dec0 100644 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_1.RULE +++ b/src/licensedcode/data/rules/bsd-plus-mod-notice_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-plus-mod-notice +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. @@ -5,4 +10,4 @@ The name of the Software Consortium, nor the names of any consortium members, nor of any contributors, may be used to endorse or promote products derived from this software without specific prior written permission. Modified source versions must be plainly marked as such, and must not be misrepresented as being the original software. -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 THE AUTHORS 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 +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 THE AUTHORS 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-plus-mod-notice_1.yml b/src/licensedcode/data/rules/bsd-plus-mod-notice_1.yml deleted file mode 100644 index 5423a864e40..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-plus-mod-notice -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_2.RULE b/src/licensedcode/data/rules/bsd-plus-mod-notice_2.RULE index 81d25e23e3c..abfea26400b 100644 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_2.RULE +++ b/src/licensedcode/data/rules/bsd-plus-mod-notice_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-plus-mod-notice +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: diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_2.yml b/src/licensedcode/data/rules/bsd-plus-mod-notice_2.yml deleted file mode 100644 index 5423a864e40..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-plus-mod-notice -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_3.RULE b/src/licensedcode/data/rules/bsd-plus-mod-notice_3.RULE index 3a3dc49c1aa..ba0fbd55bba 100644 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_3.RULE +++ b/src/licensedcode/data/rules/bsd-plus-mod-notice_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-plus-mod-notice +is_license_notice: yes +referenced_filenames: + - ITKCopyright.txt +notes: Seen in https://web.archive.org/web/20020206001851/http://itk.org/HTML/Copyright.htm +ignorable_urls: + - http://www.itk.org/HTML/Copyright.htm +--- + See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_3.yml b/src/licensedcode/data/rules/bsd-plus-mod-notice_3.yml deleted file mode 100644 index 20b2046f096..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-plus-mod-notice -is_license_notice: yes -referenced_filenames: - - ITKCopyright.txt -notes: Seen in https://web.archive.org/web/20020206001851/http://itk.org/HTML/Copyright.htm -ignorable_urls: - - http://www.itk.org/HTML/Copyright.htm diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_4.RULE b/src/licensedcode/data/rules/bsd-plus-mod-notice_4.RULE index 4adcf285a88..0785cdb5426 100644 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_4.RULE +++ b/src/licensedcode/data/rules/bsd-plus-mod-notice_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-plus-mod-notice +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: Seen in https://web.archive.org/web/20020206001851/http://itk.org/HTML/Copyright.htm +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_4.yml b/src/licensedcode/data/rules/bsd-plus-mod-notice_4.yml deleted file mode 100644 index 9e926f056fe..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-mod-notice -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: Seen in https://web.archive.org/web/20020206001851/http://itk.org/HTML/Copyright.htm diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_5.RULE b/src/licensedcode/data/rules/bsd-plus-mod-notice_5.RULE index 6379e0f20c5..f654ce140e9 100644 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_5.RULE +++ b/src/licensedcode/data/rules/bsd-plus-mod-notice_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-plus-mod-notice +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: Seen in https://web.archive.org/web/20020206001851/http://itk.org/HTML/Copyright.htm +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_5.yml b/src/licensedcode/data/rules/bsd-plus-mod-notice_5.yml deleted file mode 100644 index 9e926f056fe..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-mod-notice -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: Seen in https://web.archive.org/web/20020206001851/http://itk.org/HTML/Copyright.htm diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_6.RULE b/src/licensedcode/data/rules/bsd-plus-mod-notice_6.RULE index 7871a7563df..7d9e78c1665 100644 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_6.RULE +++ b/src/licensedcode/data/rules/bsd-plus-mod-notice_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-plus-mod-notice +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: diff --git a/src/licensedcode/data/rules/bsd-plus-mod-notice_6.yml b/src/licensedcode/data/rules/bsd-plus-mod-notice_6.yml deleted file mode 100644 index 5423a864e40..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-mod-notice_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-plus-mod-notice -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-plus-patent_1.RULE b/src/licensedcode/data/rules/bsd-plus-patent_1.RULE index c02799fedd2..e4d0c9602ca 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_1.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 100 +--- + BSD+Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_1.yml b/src/licensedcode/data/rules/bsd-plus-patent_1.yml deleted file mode 100644 index 28340963387..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-plus-patent_10.RULE b/src/licensedcode/data/rules/bsd-plus-patent_10.RULE index 57af2f786d7..ba0c5807933 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_10.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_10.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-2-Clause-Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_10.yml b/src/licensedcode/data/rules/bsd-plus-patent_10.yml deleted file mode 100644 index 28340963387..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-plus-patent_11.RULE b/src/licensedcode/data/rules/bsd-plus-patent_11.RULE index c12d4b1d303..74123c35ea7 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_11.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_11.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-Patent +--- + {{BSD-2-Clause-Patent}} https://spdx.org/licenses/BSD-2-Clause-Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_11.yml b/src/licensedcode/data/rules/bsd-plus-patent_11.yml deleted file mode 100644 index f1be7e01143..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-Patent diff --git a/src/licensedcode/data/rules/bsd-plus-patent_12.RULE b/src/licensedcode/data/rules/bsd-plus-patent_12.RULE index 7836745a389..c4f4601026a 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_12.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_12.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-Patent +--- + LICENSE {{BSD-2-Clause-Patent}} https://spdx.org/licenses/BSD-2-Clause-Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_12.yml b/src/licensedcode/data/rules/bsd-plus-patent_12.yml deleted file mode 100644 index f1be7e01143..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-Patent diff --git a/src/licensedcode/data/rules/bsd-plus-patent_13.RULE b/src/licensedcode/data/rules/bsd-plus-patent_13.RULE index 8dfa8293254..2a08be63335 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_13.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_13.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-Patent.html +--- + [BSD-2-Clause-Patent](https://spdx.org/licenses/BSD-2-Clause-Patent.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_13.yml b/src/licensedcode/data/rules/bsd-plus-patent_13.yml deleted file mode 100644 index 7e6154a73e6..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-Patent.html diff --git a/src/licensedcode/data/rules/bsd-plus-patent_14.RULE b/src/licensedcode/data/rules/bsd-plus-patent_14.RULE index 7016eda8e21..b2c265c913c 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_14.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_14.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-plus-patent +is_license_notice: yes +relevance: 100 +--- + This project uses BSD-2-Clause-Patent license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_14.yml b/src/licensedcode/data/rules/bsd-plus-patent_14.yml deleted file mode 100644 index 779692c4e6a..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-plus-patent -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-plus-patent_15.RULE b/src/licensedcode/data/rules/bsd-plus-patent_15.RULE index 766930e1de9..f048dbdd2db 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_15.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_15.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_notice: yes +ignorable_urls: + - https://spdx.org/licenses + - https://spdx.org/licenses/BSD-2-Clause-Patent.html +--- + This project uses BSD-2-Clause-Patent license. [SPDX-License-Identifier](https://spdx.org/licenses/): [BSD-2-Clause-Patent](https://spdx.org/licenses/BSD-2-Clause-Patent.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_15.yml b/src/licensedcode/data/rules/bsd-plus-patent_15.yml deleted file mode 100644 index 3f29b9b6cf2..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_notice: yes -ignorable_urls: - - https://spdx.org/licenses - - https://spdx.org/licenses/BSD-2-Clause-Patent.html diff --git a/src/licensedcode/data/rules/bsd-plus-patent_16.RULE b/src/licensedcode/data/rules/bsd-plus-patent_16.RULE index 165ebce5854..004e8e50dc1 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_16.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_16.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_notice: yes +ignorable_urls: + - https://spdx.org/licenses + - https://spdx.org/licenses/BSD-2-Clause-Patent.html +--- + [SPDX-License-Identifier](https://spdx.org/licenses/): [BSD-2-Clause-Patent](https://spdx.org/licenses/BSD-2-Clause-Patent.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_16.yml b/src/licensedcode/data/rules/bsd-plus-patent_16.yml deleted file mode 100644 index 3f29b9b6cf2..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_notice: yes -ignorable_urls: - - https://spdx.org/licenses - - https://spdx.org/licenses/BSD-2-Clause-Patent.html diff --git a/src/licensedcode/data/rules/bsd-plus-patent_2.RULE b/src/licensedcode/data/rules/bsd-plus-patent_2.RULE index 334e9380c94..417230aa90f 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_2.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_2.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-2-Clause Plus Patent License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_2.yml b/src/licensedcode/data/rules/bsd-plus-patent_2.yml deleted file mode 100644 index 73f4279fc35..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-plus-patent_3.RULE b/src/licensedcode/data/rules/bsd-plus-patent_3.RULE index 71b12b6436f..1420a6dbbd8 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_3.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD-2-Clause Plus Patent License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_3.yml b/src/licensedcode/data/rules/bsd-plus-patent_3.yml deleted file mode 100644 index 73f4279fc35..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-plus-patent_4.RULE b/src/licensedcode/data/rules/bsd-plus-patent_4.RULE index 8d8ca803b2a..f37b80d8be5 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_4.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-2-Clause-Patent BSD-2-Clause Plus Patent License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_4.yml b/src/licensedcode/data/rules/bsd-plus-patent_4.yml deleted file mode 100644 index 73f4279fc35..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-plus-patent_5.RULE b/src/licensedcode/data/rules/bsd-plus-patent_5.RULE index 8f9f28ef45a..60c4d2fbab2 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_5.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-2-Clause Plus Patent License BSD-2-Clause-Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_5.yml b/src/licensedcode/data/rules/bsd-plus-patent_5.yml deleted file mode 100644 index 73f4279fc35..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-plus-patent_6.RULE b/src/licensedcode/data/rules/bsd-plus-patent_6.RULE index e58addb23c5..08062eafbd8 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_6.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-2-Clause-Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_6.yml b/src/licensedcode/data/rules/bsd-plus-patent_6.yml deleted file mode 100644 index bdd81cf278a..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-plus-patent -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-plus-patent_7.RULE b/src/licensedcode/data/rules/bsd-plus-patent_7.RULE index 0cb7e371ab8..dbfc6de81b2 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_7.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-2-Clause Plus Patent License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_7.yml b/src/licensedcode/data/rules/bsd-plus-patent_7.yml deleted file mode 100644 index bdd81cf278a..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-plus-patent -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-plus-patent_8.RULE b/src/licensedcode/data/rules/bsd-plus-patent_8.RULE index 53a27bfff33..0e878553427 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_8.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-2-Clause-Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_8.yml b/src/licensedcode/data/rules/bsd-plus-patent_8.yml deleted file mode 100644 index bdd81cf278a..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-plus-patent -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-plus-patent_9.RULE b/src/licensedcode/data/rules/bsd-plus-patent_9.RULE index 1c0453e4396..651e5c285bd 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_9.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_9.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-2-Clause-Patent +--- + https://licenses.nuget.org/BSD-2-Clause-Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_9.yml b/src/licensedcode/data/rules/bsd-plus-patent_9.yml deleted file mode 100644 index abc594be91c..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-2-Clause-Patent diff --git a/src/licensedcode/data/rules/bsd-plus-patent_url_1.RULE b/src/licensedcode/data/rules/bsd-plus-patent_url_1.RULE index 5e09d04d07d..8415a59952c 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-2-clause-patent +--- + https://spdx.org/licenses/bsd-2-clause-patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_url_1.yml b/src/licensedcode/data/rules/bsd-plus-patent_url_1.yml deleted file mode 100644 index 9d84cdce4e0..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-2-clause-patent diff --git a/src/licensedcode/data/rules/bsd-plus-patent_url_2.RULE b/src/licensedcode/data/rules/bsd-plus-patent_url_2.RULE index 80f049104db..1c86f01b796 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-2-clause-patent.html +--- + https://spdx.org/licenses/bsd-2-clause-patent.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_url_2.yml b/src/licensedcode/data/rules/bsd-plus-patent_url_2.yml deleted file mode 100644 index e7af9306121..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-2-clause-patent.html diff --git a/src/licensedcode/data/rules/bsd-plus-patent_url_glc_68.RULE b/src/licensedcode/data/rules/bsd-plus-patent_url_glc_68.RULE index a5840334477..84eea240a17 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_url_glc_68.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_url_glc_68.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/bsdpluspatent +--- + http://opensource.org/licenses/bsdpluspatent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_url_glc_68.yml b/src/licensedcode/data/rules/bsd-plus-patent_url_glc_68.yml deleted file mode 100644 index 44a3bf7b1be..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_url_glc_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/bsdpluspatent diff --git a/src/licensedcode/data/rules/bsd-plus-patent_url_glc_69.RULE b/src/licensedcode/data/rules/bsd-plus-patent_url_glc_69.RULE index 091447fe2d7..cf77a551648 100644 --- a/src/licensedcode/data/rules/bsd-plus-patent_url_glc_69.RULE +++ b/src/licensedcode/data/rules/bsd-plus-patent_url_glc_69.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/bsdpluspatent +--- + https://opensource.org/licenses/bsdpluspatent \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-plus-patent_url_glc_69.yml b/src/licensedcode/data/rules/bsd-plus-patent_url_glc_69.yml deleted file mode 100644 index 5b7d4d63c8e..00000000000 --- a/src/licensedcode/data/rules/bsd-plus-patent_url_glc_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/bsdpluspatent diff --git a/src/licensedcode/data/rules/bsd-protection_1.RULE b/src/licensedcode/data/rules/bsd-protection_1.RULE index 28e354ff5c4..067dcf79bea 100644 --- a/src/licensedcode/data/rules/bsd-protection_1.RULE +++ b/src/licensedcode/data/rules/bsd-protection_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-protection +is_license_notice: yes +relevance: 100 +notes: See https://github.com/ilanschnell/bsdiff4/blob/master/LICENSE +ignorable_urls: + - http://cx-bsdiff.sourceforge.net/ +--- + * the module bsdiff4/core.c has been drived from cx_bsdiff written by * * Anthony Tuininga, http://cx-bsdiff.sourceforge.net/), which was * * released under the BSD Protection License below * \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_1.yml b/src/licensedcode/data/rules/bsd-protection_1.yml deleted file mode 100644 index 8599c59e19d..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_notice: yes -relevance: 100 -notes: See https://github.com/ilanschnell/bsdiff4/blob/master/LICENSE -ignorable_urls: - - http://cx-bsdiff.sourceforge.net/ diff --git a/src/licensedcode/data/rules/bsd-protection_10.RULE b/src/licensedcode/data/rules/bsd-protection_10.RULE index e2a4603b261..bef72829291 100644 --- a/src/licensedcode/data/rules/bsd-protection_10.RULE +++ b/src/licensedcode/data/rules/bsd-protection_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-Protection +--- + https://licenses.nuget.org/BSD-Protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_10.yml b/src/licensedcode/data/rules/bsd-protection_10.yml deleted file mode 100644 index e1062d47a5d..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-Protection diff --git a/src/licensedcode/data/rules/bsd-protection_11.RULE b/src/licensedcode/data/rules/bsd-protection_11.RULE index 2ae7e5587f2..d22d9e5f405 100644 --- a/src/licensedcode/data/rules/bsd-protection_11.RULE +++ b/src/licensedcode/data/rules/bsd-protection_11.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-Protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_11.yml b/src/licensedcode/data/rules/bsd-protection_11.yml deleted file mode 100644 index a5803f97bd7..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-protection_12.RULE b/src/licensedcode/data/rules/bsd-protection_12.RULE index 94bcd61bfd8..2a46c20f72f 100644 --- a/src/licensedcode/data/rules/bsd-protection_12.RULE +++ b/src/licensedcode/data/rules/bsd-protection_12.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-Protection +--- + LICENSE {{BSD-Protection}} https://spdx.org/licenses/BSD-Protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_12.yml b/src/licensedcode/data/rules/bsd-protection_12.yml deleted file mode 100644 index 8e7f237494b..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-Protection diff --git a/src/licensedcode/data/rules/bsd-protection_13.RULE b/src/licensedcode/data/rules/bsd-protection_13.RULE index abc36c28e19..6f0c67acf1c 100644 --- a/src/licensedcode/data/rules/bsd-protection_13.RULE +++ b/src/licensedcode/data/rules/bsd-protection_13.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-Protection +--- + {{BSD-Protection}} https://spdx.org/licenses/BSD-Protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_13.yml b/src/licensedcode/data/rules/bsd-protection_13.yml deleted file mode 100644 index 8e7f237494b..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-Protection diff --git a/src/licensedcode/data/rules/bsd-protection_2.RULE b/src/licensedcode/data/rules/bsd-protection_2.RULE index ef3b42a1c80..69d724463fb 100644 --- a/src/licensedcode/data/rules/bsd-protection_2.RULE +++ b/src/licensedcode/data/rules/bsd-protection_2.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-protection +is_license_notice: yes +relevance: 100 +notes: See https://github.com/ilanschnell/bsdiff4/blob/master/LICENSE +--- + released under the BSD Protection License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_2.yml b/src/licensedcode/data/rules/bsd-protection_2.yml deleted file mode 100644 index 1f1ffc2187c..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-protection -is_license_notice: yes -relevance: 100 -notes: See https://github.com/ilanschnell/bsdiff4/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-protection_3.RULE b/src/licensedcode/data/rules/bsd-protection_3.RULE index 31e3b5bcc04..9578e6cebe3 100644 --- a/src/licensedcode/data/rules/bsd-protection_3.RULE +++ b/src/licensedcode/data/rules/bsd-protection_3.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD Protection License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_3.yml b/src/licensedcode/data/rules/bsd-protection_3.yml deleted file mode 100644 index b7240dc3838..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-protection_4.RULE b/src/licensedcode/data/rules/bsd-protection_4.RULE index 0f268215db3..09ad1a3421a 100644 --- a/src/licensedcode/data/rules/bsd-protection_4.RULE +++ b/src/licensedcode/data/rules/bsd-protection_4.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD Protection License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_4.yml b/src/licensedcode/data/rules/bsd-protection_4.yml deleted file mode 100644 index b7240dc3838..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-protection_5.RULE b/src/licensedcode/data/rules/bsd-protection_5.RULE index f2f7e7ac79a..8bc09858760 100644 --- a/src/licensedcode/data/rules/bsd-protection_5.RULE +++ b/src/licensedcode/data/rules/bsd-protection_5.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-Protection BSD Protection License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_5.yml b/src/licensedcode/data/rules/bsd-protection_5.yml deleted file mode 100644 index b7240dc3838..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-protection_6.RULE b/src/licensedcode/data/rules/bsd-protection_6.RULE index d6d429624a0..17d5bc03cbc 100644 --- a/src/licensedcode/data/rules/bsd-protection_6.RULE +++ b/src/licensedcode/data/rules/bsd-protection_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD Protection License BSD-Protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_6.yml b/src/licensedcode/data/rules/bsd-protection_6.yml deleted file mode 100644 index b7240dc3838..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-protection_7.RULE b/src/licensedcode/data/rules/bsd-protection_7.RULE index 6f6a31de6a4..993dc87522f 100644 --- a/src/licensedcode/data/rules/bsd-protection_7.RULE +++ b/src/licensedcode/data/rules/bsd-protection_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-protection +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-Protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_7.yml b/src/licensedcode/data/rules/bsd-protection_7.yml deleted file mode 100644 index a94fb5a58b1..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-protection_8.RULE b/src/licensedcode/data/rules/bsd-protection_8.RULE index 7e47c482654..2ef3d4a0867 100644 --- a/src/licensedcode/data/rules/bsd-protection_8.RULE +++ b/src/licensedcode/data/rules/bsd-protection_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-protection +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD Protection License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_8.yml b/src/licensedcode/data/rules/bsd-protection_8.yml deleted file mode 100644 index a94fb5a58b1..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-protection_9.RULE b/src/licensedcode/data/rules/bsd-protection_9.RULE index e3dc45ca0ce..f164a8fc017 100644 --- a/src/licensedcode/data/rules/bsd-protection_9.RULE +++ b/src/licensedcode/data/rules/bsd-protection_9.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-protection +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-Protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_9.yml b/src/licensedcode/data/rules/bsd-protection_9.yml deleted file mode 100644 index a94fb5a58b1..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-protection_url_1.RULE b/src/licensedcode/data/rules/bsd-protection_url_1.RULE index c288d01e47a..ec9b2def92d 100644 --- a/src/licensedcode/data/rules/bsd-protection_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-protection_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-protection +--- + https://spdx.org/licenses/bsd-protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_url_1.yml b/src/licensedcode/data/rules/bsd-protection_url_1.yml deleted file mode 100644 index b4895b2e228..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-protection diff --git a/src/licensedcode/data/rules/bsd-protection_url_2.RULE b/src/licensedcode/data/rules/bsd-protection_url_2.RULE index 1cedaf418d7..bb5105c6cfb 100644 --- a/src/licensedcode/data/rules/bsd-protection_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-protection_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-protection.html +--- + https://spdx.org/licenses/bsd-protection.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-protection_url_2.yml b/src/licensedcode/data/rules/bsd-protection_url_2.yml deleted file mode 100644 index 89ff60e8d93..00000000000 --- a/src/licensedcode/data/rules/bsd-protection_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-protection.html diff --git a/src/licensedcode/data/rules/bsd-simplified-darwin_1.RULE b/src/licensedcode/data/rules/bsd-simplified-darwin_1.RULE index 771c103e110..def99eb483e 100644 --- a/src/licensedcode/data/rules/bsd-simplified-darwin_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified-darwin_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified-darwin +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: diff --git a/src/licensedcode/data/rules/bsd-simplified-darwin_1.yml b/src/licensedcode/data/rules/bsd-simplified-darwin_1.yml deleted file mode 100644 index 0145d16ef5a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified-darwin_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified-darwin -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified-darwin_2.RULE b/src/licensedcode/data/rules/bsd-simplified-darwin_2.RULE index 897d418bae4..5ede1303303 100644 --- a/src/licensedcode/data/rules/bsd-simplified-darwin_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified-darwin_2.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-simplified-darwin +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + Covered by the standard Berkeley Software Distribution copyright; see the file -COPYING in the source distribution. +COPYING in the source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified-darwin_2.yml b/src/licensedcode/data/rules/bsd-simplified-darwin_2.yml deleted file mode 100644 index ab25aefbc43..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified-darwin_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified-darwin -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-simplified-darwin_3.RULE b/src/licensedcode/data/rules/bsd-simplified-darwin_3.RULE index 40f1115a3eb..668d28abfad 100644 --- a/src/licensedcode/data/rules/bsd-simplified-darwin_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified-darwin_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified-darwin +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + includes a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the following licenses. diff --git a/src/licensedcode/data/rules/bsd-simplified-darwin_3.yml b/src/licensedcode/data/rules/bsd-simplified-darwin_3.yml deleted file mode 100644 index e0284bea151..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified-darwin_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified-darwin -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified-intel_1.RULE b/src/licensedcode/data/rules/bsd-simplified-intel_1.RULE index bd6db1f6624..9b6fe7a7bae 100644 --- a/src/licensedcode/data/rules/bsd-simplified-intel_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified-intel_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified-intel +is_license_text: yes +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that: (1) source code * distributions retain the above copyright notice and this paragraph @@ -7,4 +12,4 @@ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - * FOR A PARTICULAR PURPOSE. + * FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified-intel_1.yml b/src/licensedcode/data/rules/bsd-simplified-intel_1.yml deleted file mode 100644 index 45afdd983bd..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified-intel_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified-intel -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified-source.RULE b/src/licensedcode/data/rules/bsd-simplified-source.RULE index 047283e2450..5254bb0832b 100644 --- a/src/licensedcode/data/rules/bsd-simplified-source.RULE +++ b/src/licensedcode/data/rules/bsd-simplified-source.RULE @@ -1,7 +1,12 @@ +--- +license_expression: bsd-simplified-source +is_license_notice: yes +--- + Licence: Distributable * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that redistributions of source * code retain the above copyright notice and this comment without - * modification. + * modification. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified-source.yml b/src/licensedcode/data/rules/bsd-simplified-source.yml deleted file mode 100644 index 70a8841388e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified-source.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified-source -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_1.RULE b/src/licensedcode/data/rules/bsd-simplified_1.RULE index 0bfc7b7dfb6..06bf22c7878 100644 --- a/src/licensedcode/data/rules/bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_1.yml b/src/licensedcode/data/rules/bsd-simplified_1.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_10.RULE b/src/licensedcode/data/rules/bsd-simplified_10.RULE index 233eb953214..54c099f075c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_10.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_10.RULE @@ -1 +1,7 @@ -FILE_LICENCE ( BSD2 ); +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + +FILE_LICENCE ( BSD2 ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_10.yml b/src/licensedcode/data/rules/bsd-simplified_10.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_100.RULE b/src/licensedcode/data/rules/bsd-simplified_100.RULE index 7e490560cba..4940d5fe878 100644 --- a/src/licensedcode/data/rules/bsd-simplified_100.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_100.RULE @@ -1 +1,9 @@ -http://choosealicense.com/licenses/bsd +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/bsd +--- + +http://choosealicense.com/licenses/bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_100.yml b/src/licensedcode/data/rules/bsd-simplified_100.yml deleted file mode 100644 index 2f46e4ec97b..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/bsd diff --git a/src/licensedcode/data/rules/bsd-simplified_101.RULE b/src/licensedcode/data/rules/bsd-simplified_101.RULE index c6fe85f5c44..84bd3be60fa 100644 --- a/src/licensedcode/data/rules/bsd-simplified_101.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_101.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://fozzy.codeplex.com/license +--- + https://fozzy.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_101.yml b/src/licensedcode/data/rules/bsd-simplified_101.yml deleted file mode 100644 index e51a08900a1..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://fozzy.codeplex.com/license diff --git a/src/licensedcode/data/rules/bsd-simplified_102.RULE b/src/licensedcode/data/rules/bsd-simplified_102.RULE index 87360f54873..25b62db48e1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_102.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_102.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/bsd-2-clause +--- + https://choosealicense.com/licenses/bsd-2-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_102.yml b/src/licensedcode/data/rules/bsd-simplified_102.yml deleted file mode 100644 index fa2457c241c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/bsd-2-clause diff --git a/src/licensedcode/data/rules/bsd-simplified_103.RULE b/src/licensedcode/data/rules/bsd-simplified_103.RULE index aaee20be8df..ac5eeebdc4f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_103.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_103.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/bsd-2-clause +--- + http://choosealicense.com/licenses/bsd-2-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_103.yml b/src/licensedcode/data/rules/bsd-simplified_103.yml deleted file mode 100644 index cfb7392bcdc..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/bsd-2-clause diff --git a/src/licensedcode/data/rules/bsd-simplified_104.RULE b/src/licensedcode/data/rules/bsd-simplified_104.RULE index f0190a8039c..b5f3bb78a0f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_104.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_104.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/4ux-nbIx/AvalonDock.Themes.VS2013/tree/master/Xceed.Wpf.AvalonDock.Themes.VS2013 +--- + https://github.com/4ux-nbIx/AvalonDock.Themes.VS2013/tree/master/Xceed.Wpf.AvalonDock.Themes.VS2013 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_104.yml b/src/licensedcode/data/rules/bsd-simplified_104.yml deleted file mode 100644 index 1f910669c1b..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_104.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/4ux-nbIx/AvalonDock.Themes.VS2013/tree/master/Xceed.Wpf.AvalonDock.Themes.VS2013 diff --git a/src/licensedcode/data/rules/bsd-simplified_105.RULE b/src/licensedcode/data/rules/bsd-simplified_105.RULE index 6cb570a4aa5..b752de5f10d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_105.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_105.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://avalondock.codeplex.com/license +--- + This program is provided to you under the terms of the New BSD - License (BSD) as published at http://avalondock.codeplex.com/license \ No newline at end of file + License (BSD) as published at http://avalondock.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_105.yml b/src/licensedcode/data/rules/bsd-simplified_105.yml deleted file mode 100644 index 7e419f8c216..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://avalondock.codeplex.com/license diff --git a/src/licensedcode/data/rules/bsd-simplified_106.RULE b/src/licensedcode/data/rules/bsd-simplified_106.RULE index 922b95ed5ee..ef065a3f8e4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_106.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_106.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Unless otherwise stated, all files are distributed under the Simplified BSD -license. \ No newline at end of file +license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_106.yml b/src/licensedcode/data/rules/bsd-simplified_106.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_107.RULE b/src/licensedcode/data/rules/bsd-simplified_107.RULE index 9663ebd8513..ff3a0b36523 100644 --- a/src/licensedcode/data/rules/bsd-simplified_107.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_107.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 98 +--- + BSD BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_107.yml b/src/licensedcode/data/rules/bsd-simplified_107.yml deleted file mode 100644 index 772b08fa18d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_107.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/bsd-simplified_108.RULE b/src/licensedcode/data/rules/bsd-simplified_108.RULE index 3a0f5ea8a5b..31fb79971bc 100644 --- a/src/licensedcode/data/rules/bsd-simplified_108.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_108.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + License: BSD 2-Clause "Simplified" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_108.yml b/src/licensedcode/data/rules/bsd-simplified_108.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_109.RULE b/src/licensedcode/data/rules/bsd-simplified_109.RULE index d1cf28c78b0..834f6242941 100644 --- a/src/licensedcode/data/rules/bsd-simplified_109.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_109.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + under BSD 2-clause licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_109.yml b/src/licensedcode/data/rules/bsd-simplified_109.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_11.RULE b/src/licensedcode/data/rules/bsd-simplified_11.RULE index 6595c06dd2c..f8d1440a1a8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_11.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + is OSI Certified Open Source Software licensed under the BSD license. Redistribution and use in source and binary forms, with or without modification, are @@ -19,4 +25,4 @@ 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 +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_11.yml b/src/licensedcode/data/rules/bsd-simplified_11.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_110.RULE b/src/licensedcode/data/rules/bsd-simplified_110.RULE index 45d73f58547..c219fde52a4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_110.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_110.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + 2-term BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_110.yml b/src/licensedcode/data/rules/bsd-simplified_110.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_111.RULE b/src/licensedcode/data/rules/bsd-simplified_111.RULE index 10f36f52da6..42ec0c8bd26 100644 --- a/src/licensedcode/data/rules/bsd-simplified_111.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_111.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + under the 2-term BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_111.yml b/src/licensedcode/data/rules/bsd-simplified_111.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_112.RULE b/src/licensedcode/data/rules/bsd-simplified_112.RULE index 2577f58b619..e7970595125 100644 --- a/src/licensedcode/data/rules/bsd-simplified_112.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_112.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Includes code from the following copyright holders, also under the 2-term BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_112.yml b/src/licensedcode/data/rules/bsd-simplified_112.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_113.RULE b/src/licensedcode/data/rules/bsd-simplified_113.RULE index f45d0dddb9a..b5c94b42e46 100644 --- a/src/licensedcode/data/rules/bsd-simplified_113.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_113.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + ** This program is free software; you can redistribute it and/or ** modify it under the terms of the Simplified BSD License (also ** known as the "2-Clause License" or "FreeBSD License".) diff --git a/src/licensedcode/data/rules/bsd-simplified_113.yml b/src/licensedcode/data/rules/bsd-simplified_113.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_114.RULE b/src/licensedcode/data/rules/bsd-simplified_114.RULE index 2244fd9b2b5..9e609f4e064 100644 --- a/src/licensedcode/data/rules/bsd-simplified_114.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_114.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + ** This program is free software; you can redistribute it and/or ** modify it under the terms of the Simplified BSD License (also ** known as the "2-Clause License" or "FreeBSD License".) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_114.yml b/src/licensedcode/data/rules/bsd-simplified_114.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_115.RULE b/src/licensedcode/data/rules/bsd-simplified_115.RULE index 13c5b2a0917..fc8b0849b12 100644 --- a/src/licensedcode/data/rules/bsd-simplified_115.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_115.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or -** modify it under the terms of the Simplified BSD License \ No newline at end of file +** modify it under the terms of the Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_115.yml b/src/licensedcode/data/rules/bsd-simplified_115.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_116.RULE b/src/licensedcode/data/rules/bsd-simplified_116.RULE index 1cb8376acca..6f0d0e68b28 100644 --- a/src/licensedcode/data/rules/bsd-simplified_116.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_116.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + distributed under the New (2-clause) BSD License: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_116.yml b/src/licensedcode/data/rules/bsd-simplified_116.yml deleted file mode 100644 index 05e8de32d98..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_117.RULE b/src/licensedcode/data/rules/bsd-simplified_117.RULE index b1136d29720..4e595fbae93 100644 --- a/src/licensedcode/data/rules/bsd-simplified_117.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_117.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/bsd-license.php +--- + https://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_117.yml b/src/licensedcode/data/rules/bsd-simplified_117.yml deleted file mode 100644 index a427e7b4c60..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_118.RULE b/src/licensedcode/data/rules/bsd-simplified_118.RULE index 86c122446a4..fdf8284ca6d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_118.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_118.RULE @@ -1 +1,7 @@ -The 2-Clause BSD License +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + +The 2-Clause BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_118.yml b/src/licensedcode/data/rules/bsd-simplified_118.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_119.RULE b/src/licensedcode/data/rules/bsd-simplified_119.RULE index 901914fe7b2..62dbf19dfef 100644 --- a/src/licensedcode/data/rules/bsd-simplified_119.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_119.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + Cryptix General License Redistribution and use in source and binary forms, with or without @@ -22,4 +29,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_119.yml b/src/licensedcode/data/rules/bsd-simplified_119.yml deleted file mode 100644 index 3a0aabb56e8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_119.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_12.RULE b/src/licensedcode/data/rules/bsd-simplified_12.RULE index 1f28aa3598a..5953e09c102 100644 --- a/src/licensedcode/data/rules/bsd-simplified_12.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_12.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://www.freebsd.org/copyright/copyright.html +--- + http://www.freebsd.org/copyright/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_12.yml b/src/licensedcode/data/rules/bsd-simplified_12.yml deleted file mode 100644 index e19cc3e7f7e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://www.freebsd.org/copyright/copyright.html diff --git a/src/licensedcode/data/rules/bsd-simplified_120.RULE b/src/licensedcode/data/rules/bsd-simplified_120.RULE index 2eb4dc2bbd7..20a1f0869df 100644 --- a/src/licensedcode/data/rules/bsd-simplified_120.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_120.RULE @@ -1,5 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``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 AUTHORS 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_120.yml b/src/licensedcode/data/rules/bsd-simplified_120.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_121.RULE b/src/licensedcode/data/rules/bsd-simplified_121.RULE index 47c4d75ef64..375ad4afaaf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_121.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_121.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + license http://www.opensource.org/licenses/bsd-license.php BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_121.yml b/src/licensedcode/data/rules/bsd-simplified_121.yml deleted file mode 100644 index fdaa7d91735..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_121.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_122.RULE b/src/licensedcode/data/rules/bsd-simplified_122.RULE index 9496d930d34..5c24cca9910 100644 --- a/src/licensedcode/data/rules/bsd-simplified_122.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_122.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the 'BSD 2-clause license'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_122.yml b/src/licensedcode/data/rules/bsd-simplified_122.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_123.RULE b/src/licensedcode/data/rules/bsd-simplified_123.RULE index be683ba6bb9..a16abb4186c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_123.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_123.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + LICENSE: 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 diff --git a/src/licensedcode/data/rules/bsd-simplified_123.yml b/src/licensedcode/data/rules/bsd-simplified_123.yml deleted file mode 100644 index e3d238b7a7a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_123.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_124.RULE b/src/licensedcode/data/rules/bsd-simplified_124.RULE index c91dd32e1da..dcb14907f69 100644 --- a/src/licensedcode/data/rules/bsd-simplified_124.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_124.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + @license http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_124.yml b/src/licensedcode/data/rules/bsd-simplified_124.yml deleted file mode 100644 index fdaa7d91735..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_124.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_125.RULE b/src/licensedcode/data/rules/bsd-simplified_125.RULE index 30aa96a5772..b21f326fd3e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_125.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_125.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + @license http://www.opensource.org/licenses/bsd-license.php BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_125.yml b/src/licensedcode/data/rules/bsd-simplified_125.yml deleted file mode 100644 index fdaa7d91735..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_125.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_126.RULE b/src/licensedcode/data/rules/bsd-simplified_126.RULE index 3dadf429695..28bf2a2892f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_126.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_126.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + #LICENSE # #Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_126.yml b/src/licensedcode/data/rules/bsd-simplified_126.yml deleted file mode 100644 index 3a0aabb56e8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_126.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_127.RULE b/src/licensedcode/data/rules/bsd-simplified_127.RULE index 3e2247ddce6..c1dc685478c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_127.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_127.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + free and open source, licensed under the 2-clause BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_127.yml b/src/licensedcode/data/rules/bsd-simplified_127.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_128.RULE b/src/licensedcode/data/rules/bsd-simplified_128.RULE index a28dd1cb9e4..a98f0489319 100644 --- a/src/licensedcode/data/rules/bsd-simplified_128.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_128.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the simplified BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_128.yml b/src/licensedcode/data/rules/bsd-simplified_128.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_129.RULE b/src/licensedcode/data/rules/bsd-simplified_129.RULE index 0499507188b..794b4b757be 100644 --- a/src/licensedcode/data/rules/bsd-simplified_129.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_129.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Released to public domain under terms of the BSD Simplified license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_129.yml b/src/licensedcode/data/rules/bsd-simplified_129.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_13.RULE b/src/licensedcode/data/rules/bsd-simplified_13.RULE index 195a3952238..abed94446d6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_13.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_13.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- -Version licensed under 2-clause BSD License is available \ No newline at end of file + +Version licensed under 2-clause BSD License is available \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_13.yml b/src/licensedcode/data/rules/bsd-simplified_13.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_130.RULE b/src/licensedcode/data/rules/bsd-simplified_130.RULE index 698baff9fae..1c7c1e3fe7b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_130.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_130.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * @license * license: Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_130.yml b/src/licensedcode/data/rules/bsd-simplified_130.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_131.RULE b/src/licensedcode/data/rules/bsd-simplified_131.RULE index dd0f156fd1a..b3413ef073a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_131.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_131.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * license: Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_131.yml b/src/licensedcode/data/rules/bsd-simplified_131.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_132.RULE b/src/licensedcode/data/rules/bsd-simplified_132.RULE index 86f5071970b..4988ba113f6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_132.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_132.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_132.yml b/src/licensedcode/data/rules/bsd-simplified_132.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_133.RULE b/src/licensedcode/data/rules/bsd-simplified_133.RULE index 50c90715b17..84b28877617 100644 --- a/src/licensedcode/data/rules/bsd-simplified_133.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_133.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + Two-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_133.yml b/src/licensedcode/data/rules/bsd-simplified_133.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_134.RULE b/src/licensedcode/data/rules/bsd-simplified_134.RULE index 5cc42a2216b..ab67d3326bd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_134.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_134.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-2-Clause +--- + BSD (2-clause): http://opensource.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_134.yml b/src/licensedcode/data/rules/bsd-simplified_134.yml deleted file mode 100644 index b898775a92a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_134.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_135.RULE b/src/licensedcode/data/rules/bsd-simplified_135.RULE index 1eb6ff3dd19..e3247229466 100644 --- a/src/licensedcode/data/rules/bsd-simplified_135.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_135.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + copied verbatim from (2-clause BSD License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_135.yml b/src/licensedcode/data/rules/bsd-simplified_135.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_136.RULE b/src/licensedcode/data/rules/bsd-simplified_136.RULE index ee9dffbe665..978a5dd258f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_136.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_136.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + license = 'BSD 2-Clause' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_136.yml b/src/licensedcode/data/rules/bsd-simplified_136.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_137.RULE b/src/licensedcode/data/rules/bsd-simplified_137.RULE index 274e13e4e95..abf725e78be 100644 --- a/src/licensedcode/data/rules/bsd-simplified_137.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_137.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_137.yml b/src/licensedcode/data/rules/bsd-simplified_137.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_138.RULE b/src/licensedcode/data/rules/bsd-simplified_138.RULE index 1abd76d50a1..47699987952 100644 --- a/src/licensedcode/data/rules/bsd-simplified_138.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_138.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-2-Clause +--- + http://opensource.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_138.yml b/src/licensedcode/data/rules/bsd-simplified_138.yml deleted file mode 100644 index b898775a92a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_138.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_139.RULE b/src/licensedcode/data/rules/bsd-simplified_139.RULE index 4624f04c6b7..02e14054214 100644 --- a/src/licensedcode/data/rules/bsd-simplified_139.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_139.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/BSD-2-Clause +--- + https://www.opensource.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_139.yml b/src/licensedcode/data/rules/bsd-simplified_139.yml deleted file mode 100644 index caee718a543..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_14.RULE b/src/licensedcode/data/rules/bsd-simplified_14.RULE index caae66f8213..ace91d904da 100644 --- a/src/licensedcode/data/rules/bsd-simplified_14.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_14.RULE @@ -1,7 +1,12 @@ +--- +license_expression: bsd-simplified +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. -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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. +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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-simplified_14.yml b/src/licensedcode/data/rules/bsd-simplified_14.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_140.RULE b/src/licensedcode/data/rules/bsd-simplified_140.RULE index 913a7173a67..a74ce918ff8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_140.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_140.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + This file is provided under the following "BSD-style" License: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following diff --git a/src/licensedcode/data/rules/bsd-simplified_140.yml b/src/licensedcode/data/rules/bsd-simplified_140.yml deleted file mode 100644 index 3a0aabb56e8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_140.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_141.RULE b/src/licensedcode/data/rules/bsd-simplified_141.RULE index ba338d6f51e..94eba939617 100644 --- a/src/licensedcode/data/rules/bsd-simplified_141.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_141.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-2-Clause +--- + Software License Agreement (BSD License) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_141.yml b/src/licensedcode/data/rules/bsd-simplified_141.yml deleted file mode 100644 index e1f8a5eb1ac..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_141.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_142.RULE b/src/licensedcode/data/rules/bsd-simplified_142.RULE index 8fa69146d9c..07c83d519e3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_142.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_142.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + Software License Agreement (BSD License) Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_142.yml b/src/licensedcode/data/rules/bsd-simplified_142.yml deleted file mode 100644 index 3a0aabb56e8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_142.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_143.RULE b/src/licensedcode/data/rules/bsd-simplified_143.RULE index 2f247d1318d..257ac03c219 100644 --- a/src/licensedcode/data/rules/bsd-simplified_143.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_143.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-2-Clause +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_143.yml b/src/licensedcode/data/rules/bsd-simplified_143.yml deleted file mode 100644 index e1f8a5eb1ac..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_143.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_144.RULE b/src/licensedcode/data/rules/bsd-simplified_144.RULE index 76e7f20ccd4..96aec7ea0e4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_144.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_144.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Free software: BSD 2-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_144.yml b/src/licensedcode/data/rules/bsd-simplified_144.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_145.RULE b/src/licensedcode/data/rules/bsd-simplified_145.RULE index 8f572db9d72..2e8c7ba4232 100644 --- a/src/licensedcode/data/rules/bsd-simplified_145.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_145.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + licensed BSD Simplified \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_145.yml b/src/licensedcode/data/rules/bsd-simplified_145.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_146.RULE b/src/licensedcode/data/rules/bsd-simplified_146.RULE index 2b22a170074..0eb50cff279 100644 --- a/src/licensedcode/data/rules/bsd-simplified_146.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_146.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + * 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 @@ -16,4 +22,4 @@ * 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_146.yml b/src/licensedcode/data/rules/bsd-simplified_146.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_147.RULE b/src/licensedcode/data/rules/bsd-simplified_147.RULE index 2cc48315082..bde6f4fb734 100644 --- a/src/licensedcode/data/rules/bsd-simplified_147.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_147.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + distributed under the Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_147.yml b/src/licensedcode/data/rules/bsd-simplified_147.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_148.RULE b/src/licensedcode/data/rules/bsd-simplified_148.RULE index 598050cbcd2..6c67ed98ce9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_148.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_148.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + Licensc: BSD-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_148.yml b/src/licensedcode/data/rules/bsd-simplified_148.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_149.RULE b/src/licensedcode/data/rules/bsd-simplified_149.RULE index 34267488e75..e19bad06f3b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_149.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_149.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + the BSD 2-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_149.yml b/src/licensedcode/data/rules/bsd-simplified_149.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_15.RULE b/src/licensedcode/data/rules/bsd-simplified_15.RULE index f14b93862de..3800c3d28b8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_15.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_15.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/BSD-2-Clause +--- + http://www.opensource.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_15.yml b/src/licensedcode/data/rules/bsd-simplified_15.yml deleted file mode 100644 index 95ee0e8e58f..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_150.RULE b/src/licensedcode/data/rules/bsd-simplified_150.RULE index b64d6c65d27..fbc04893aad 100644 --- a/src/licensedcode/data/rules/bsd-simplified_150.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_150.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + Simplified BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_150.yml b/src/licensedcode/data/rules/bsd-simplified_150.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_151.RULE b/src/licensedcode/data/rules/bsd-simplified_151.RULE index e39b3d6f451..7ccd9fdc293 100644 --- a/src/licensedcode/data/rules/bsd-simplified_151.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_151.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + The full text of the 2-clause BSD license follows. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_151.yml b/src/licensedcode/data/rules/bsd-simplified_151.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_152.RULE b/src/licensedcode/data/rules/bsd-simplified_152.RULE index 471f3f2ea7d..89a37f369ac 100644 --- a/src/licensedcode/data/rules/bsd-simplified_152.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_152.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + The 2-clause Berkley Software Distribution license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_152.yml b/src/licensedcode/data/rules/bsd-simplified_152.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_153.RULE b/src/licensedcode/data/rules/bsd-simplified_153.RULE index 6828ec927ae..02750954232 100644 --- a/src/licensedcode/data/rules/bsd-simplified_153.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_153.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_153.yml b/src/licensedcode/data/rules/bsd-simplified_153.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_154.RULE b/src/licensedcode/data/rules/bsd-simplified_154.RULE index 37c4ecb4b1a..d0f444ad56d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_154.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_154.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Licensed under the 2-clause BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_154.yml b/src/licensedcode/data/rules/bsd-simplified_154.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_155.RULE b/src/licensedcode/data/rules/bsd-simplified_155.RULE index 143283a8a78..0ea419cddd3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_155.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_155.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 99 +notes: the warranty disclaimer has been truncated and this looks a tad like a GPL notice. But + this is essentially a bsd-simplified text. +--- + This program is free software. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -13,4 +21,4 @@ other materials provided with the distribution. 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. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_155.yml b/src/licensedcode/data/rules/bsd-simplified_155.yml deleted file mode 100644 index 39544a700b8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 99 -notes: the warranty disclaimer has been truncated and this looks a tad like a GPL notice. But - this is essentially a bsd-simplified text. diff --git a/src/licensedcode/data/rules/bsd-simplified_156.RULE b/src/licensedcode/data/rules/bsd-simplified_156.RULE index 990c205161b..b1a945d6d56 100644 --- a/src/licensedcode/data/rules/bsd-simplified_156.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_156.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + 2-clause BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_156.yml b/src/licensedcode/data/rules/bsd-simplified_156.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_157.RULE b/src/licensedcode/data/rules/bsd-simplified_157.RULE index 82da96662d9..0190634a267 100644 --- a/src/licensedcode/data/rules/bsd-simplified_157.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_157.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + 2-clause BSD licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_157.yml b/src/licensedcode/data/rules/bsd-simplified_157.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_158.RULE b/src/licensedcode/data/rules/bsd-simplified_158.RULE index 5df18127ce4..c320b2daa0c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_158.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_158.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + 2-clauses BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_158.yml b/src/licensedcode/data/rules/bsd-simplified_158.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_159.RULE b/src/licensedcode/data/rules/bsd-simplified_159.RULE index f68d1bef23b..6f5ebdf6740 100644 --- a/src/licensedcode/data/rules/bsd-simplified_159.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_159.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + 2-clauses BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_159.yml b/src/licensedcode/data/rules/bsd-simplified_159.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_16.RULE b/src/licensedcode/data/rules/bsd-simplified_16.RULE index 15c83fc9e75..152c7fce1c1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_16.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_16.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -18,4 +23,4 @@ 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.`, +POSSIBILITY OF SUCH DAMAGE.`, \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_16.yml b/src/licensedcode/data/rules/bsd-simplified_16.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_160.RULE b/src/licensedcode/data/rules/bsd-simplified_160.RULE index 0c80308a85b..64b78ba779b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_160.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_160.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt +--- + License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_160.yml b/src/licensedcode/data/rules/bsd-simplified_160.yml deleted file mode 100644 index 8eb9993aea5..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_160.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_161.RULE b/src/licensedcode/data/rules/bsd-simplified_161.RULE index 5acfa44d4bf..13088f0c164 100644 --- a/src/licensedcode/data/rules/bsd-simplified_161.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_161.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD 2-clause "Simplified" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_161.yml b/src/licensedcode/data/rules/bsd-simplified_161.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_162.RULE b/src/licensedcode/data/rules/bsd-simplified_162.RULE index f93e2ab947c..b8bfa6b49a3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_162.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_162.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + Terms of the BSD 2-clause "Simplified" License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_162.yml b/src/licensedcode/data/rules/bsd-simplified_162.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_163.RULE b/src/licensedcode/data/rules/bsd-simplified_163.RULE index febaee15cd4..ecf7e244d4d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_163.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_163.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + the BSD 2-clause "Simplified" License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_163.yml b/src/licensedcode/data/rules/bsd-simplified_163.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_164.RULE b/src/licensedcode/data/rules/bsd-simplified_164.RULE index 12e4a10daf4..d20260a5e5b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_164.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_164.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD 2-Clause Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_164.yml b/src/licensedcode/data/rules/bsd-simplified_164.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_165.RULE b/src/licensedcode/data/rules/bsd-simplified_165.RULE index b0533020659..22463dfa66e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_165.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_165.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_165.yml b/src/licensedcode/data/rules/bsd-simplified_165.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_166.RULE b/src/licensedcode/data/rules/bsd-simplified_166.RULE index cafe09b22c5..64923256b63 100644 --- a/src/licensedcode/data/rules/bsd-simplified_166.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_166.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-2-Clause +--- + [BSD-2]: http://opensource.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_166.yml b/src/licensedcode/data/rules/bsd-simplified_166.yml deleted file mode 100644 index 3e4ce364d65..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_167.RULE b/src/licensedcode/data/rules/bsd-simplified_167.RULE index 7db3fd87595..1271f8a75c3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_167.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_167.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-2-Clause +--- + `BSD-2-Clause` - [BSD 2-clause "Simplified"](https://opensource.org/licenses/BSD-2-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_167.yml b/src/licensedcode/data/rules/bsd-simplified_167.yml deleted file mode 100644 index 46f3b130466..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_168.RULE b/src/licensedcode/data/rules/bsd-simplified_168.RULE index 4944c28acbc..0979a9c874a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_168.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_168.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 90 +--- + Two-clause BSD-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_168.yml b/src/licensedcode/data/rules/bsd-simplified_168.yml deleted file mode 100644 index cb1d860c756..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-simplified_169.RULE b/src/licensedcode/data/rules/bsd-simplified_169.RULE index 77e8a57a73c..f169c438b5f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_169.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_169.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + # License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_169.yml b/src/licensedcode/data/rules/bsd-simplified_169.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_17.RULE b/src/licensedcode/data/rules/bsd-simplified_17.RULE index 70e2f34d546..8db6bd6e139 100644 --- a/src/licensedcode/data/rules/bsd-simplified_17.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_17.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + is covered by the BSD 2-Clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_17.yml b/src/licensedcode/data/rules/bsd-simplified_17.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_170.RULE b/src/licensedcode/data/rules/bsd-simplified_170.RULE index e4ab6b0eb31..48636aa1ce6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_170.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_170.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 95 +--- + uses a BSD 2-clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_170.yml b/src/licensedcode/data/rules/bsd-simplified_170.yml deleted file mode 100644 index c4fb32b61ae..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_171.RULE b/src/licensedcode/data/rules/bsd-simplified_171.RULE index 2f012f059d3..82febf6e635 100644 --- a/src/licensedcode/data/rules/bsd-simplified_171.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_171.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT.txt +--- + This software is available under the terms of a 2-clause BSD-style license, see the COPYRIGHT.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_171.yml b/src/licensedcode/data/rules/bsd-simplified_171.yml deleted file mode 100644 index 6198d83ee6c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_171.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_172.RULE b/src/licensedcode/data/rules/bsd-simplified_172.RULE index cf248573503..aad2a361d47 100644 --- a/src/licensedcode/data/rules/bsd-simplified_172.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_172.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: reported by Luis Villa +--- + Distributed under the terms of the BSD Simplified License. The full license is in the LICENSE file, distributed with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_172.yml b/src/licensedcode/data/rules/bsd-simplified_172.yml deleted file mode 100644 index 4cca260e460..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_172.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: reported by Luis Villa diff --git a/src/licensedcode/data/rules/bsd-simplified_173.RULE b/src/licensedcode/data/rules/bsd-simplified_173.RULE index 35e7b4ef9b9..33c80a8ae84 100644 --- a/src/licensedcode/data/rules/bsd-simplified_173.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_173.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +notes: reported by Luis Villa +--- + Distributed under the terms of the BSD Simplified License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_173.yml b/src/licensedcode/data/rules/bsd-simplified_173.yml deleted file mode 100644 index 26c2db81fd6..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_173.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -notes: reported by Luis Villa diff --git a/src/licensedcode/data/rules/bsd-simplified_174.RULE b/src/licensedcode/data/rules/bsd-simplified_174.RULE index adeae8d1a1a..fe685d52817 100644 --- a/src/licensedcode/data/rules/bsd-simplified_174.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_174.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +notes: reported by Luis Villa +--- + the BSD Simplified License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_174.yml b/src/licensedcode/data/rules/bsd-simplified_174.yml deleted file mode 100644 index d1f70388036..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_174.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -notes: reported by Luis Villa diff --git a/src/licensedcode/data/rules/bsd-simplified_175.RULE b/src/licensedcode/data/rules/bsd-simplified_175.RULE index b587110c24c..1dd96713e24 100644 --- a/src/licensedcode/data/rules/bsd-simplified_175.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_175.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +notes: reported by Luis Villa +--- + BSD Simplified License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_175.yml b/src/licensedcode/data/rules/bsd-simplified_175.yml deleted file mode 100644 index d1f70388036..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_175.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -notes: reported by Luis Villa diff --git a/src/licensedcode/data/rules/bsd-simplified_176.RULE b/src/licensedcode/data/rules/bsd-simplified_176.RULE index 08c25f4ee4e..378ed51b162 100644 --- a/src/licensedcode/data/rules/bsd-simplified_176.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_176.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + all code code is licensed under simplified BSD, unless stated otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_176.yml b/src/licensedcode/data/rules/bsd-simplified_176.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_177.RULE b/src/licensedcode/data/rules/bsd-simplified_177.RULE index 15394ac20a5..72f51cd6b5b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_177.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_177.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +notes: https://github.com/estools/esutils/blob/1.1.6/package.json +ignorable_urls: + - http://github.com/Constellation/esutils/raw/master/LICENSE.BSD +--- + "licenses": [ { "type": "BSD", diff --git a/src/licensedcode/data/rules/bsd-simplified_177.yml b/src/licensedcode/data/rules/bsd-simplified_177.yml deleted file mode 100644 index a11cf84a327..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_177.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -notes: https://github.com/estools/esutils/blob/1.1.6/package.json -ignorable_urls: - - http://github.com/Constellation/esutils/raw/master/LICENSE.BSD diff --git a/src/licensedcode/data/rules/bsd-simplified_178.RULE b/src/licensedcode/data/rules/bsd-simplified_178.RULE index 61fa0c1e312..2e195e51a45 100644 --- a/src/licensedcode/data/rules/bsd-simplified_178.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_178.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +notes: https://github.com/estools/esutils/blob/2.0.2/package.json +ignorable_urls: + - http://github.com/estools/esutils/raw/master/LICENSE.BSD +--- + "licenses": [ { "type": "BSD", diff --git a/src/licensedcode/data/rules/bsd-simplified_178.yml b/src/licensedcode/data/rules/bsd-simplified_178.yml deleted file mode 100644 index 21d1e68aa53..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_178.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -notes: https://github.com/estools/esutils/blob/2.0.2/package.json -ignorable_urls: - - http://github.com/estools/esutils/raw/master/LICENSE.BSD diff --git a/src/licensedcode/data/rules/bsd-simplified_179.RULE b/src/licensedcode/data/rules/bsd-simplified_179.RULE index 99dc13a613f..7d183e8663e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_179.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_179.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +notes: see BELIABLE typo +--- + 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. diff --git a/src/licensedcode/data/rules/bsd-simplified_179.yml b/src/licensedcode/data/rules/bsd-simplified_179.yml deleted file mode 100644 index ae3c3cbfadc..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_179.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -notes: see BELIABLE typo diff --git a/src/licensedcode/data/rules/bsd-simplified_18.RULE b/src/licensedcode/data/rules/bsd-simplified_18.RULE index a65efc21fe6..9385824ba74 100644 --- a/src/licensedcode/data/rules/bsd-simplified_18.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_18.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -16,4 +21,4 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + THIS 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_18.yml b/src/licensedcode/data/rules/bsd-simplified_18.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_180.RULE b/src/licensedcode/data/rules/bsd-simplified_180.RULE index d31b72183bc..1bca85a4d39 100644 --- a/src/licensedcode/data/rules/bsd-simplified_180.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_180.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the BSD-2CL: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_180.yml b/src/licensedcode/data/rules/bsd-simplified_180.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_181.RULE b/src/licensedcode/data/rules/bsd-simplified_181.RULE index ee43e18de69..04fffb70ecf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_181.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_181.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + License [Simplified BSD][bsd-2cl] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_181.yml b/src/licensedcode/data/rules/bsd-simplified_181.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_181.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_182.RULE b/src/licensedcode/data/rules/bsd-simplified_182.RULE index af783bd021b..24f5c5b8b70 100644 --- a/src/licensedcode/data/rules/bsd-simplified_182.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_182.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Licence [Simplified BSD][bsd-2cl] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_182.yml b/src/licensedcode/data/rules/bsd-simplified_182.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_183.RULE b/src/licensedcode/data/rules/bsd-simplified_183.RULE index 12d7253c545..3bb591c87c4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_183.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_183.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD-2CL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_183.yml b/src/licensedcode/data/rules/bsd-simplified_183.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_184.RULE b/src/licensedcode/data/rules/bsd-simplified_184.RULE index c0f3f584f71..af97e967562 100644 --- a/src/licensedcode/data/rules/bsd-simplified_184.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_184.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-2-Clause +--- + [bsd-2cl]: https://opensource.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_184.yml b/src/licensedcode/data/rules/bsd-simplified_184.yml deleted file mode 100644 index 46f3b130466..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_185.RULE b/src/licensedcode/data/rules/bsd-simplified_185.RULE index ff78d3759d7..e72d2c2cb8e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_185.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_185.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + Change last file with Apache license to BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_185.yml b/src/licensedcode/data/rules/bsd-simplified_185.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_186.RULE b/src/licensedcode/data/rules/bsd-simplified_186.RULE index cb37e3e7af0..665fcaa1e8d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_186.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_186.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_186.yml b/src/licensedcode/data/rules/bsd-simplified_186.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_187.RULE b/src/licensedcode/data/rules/bsd-simplified_187.RULE index b0e1475b57e..47fa0002002 100644 --- a/src/licensedcode/data/rules/bsd-simplified_187.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_187.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + 2-clause BSDL \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_187.yml b/src/licensedcode/data/rules/bsd-simplified_187.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_188.RULE b/src/licensedcode/data/rules/bsd-simplified_188.RULE index 189e99c057e..ce1bfad7a6f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_188.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_188.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + licensed under the BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_188.yml b/src/licensedcode/data/rules/bsd-simplified_188.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_189.RULE b/src/licensedcode/data/rules/bsd-simplified_189.RULE index 943c8e49c3a..c77ff8a1f4c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_189.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_189.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + distributed under the BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_189.yml b/src/licensedcode/data/rules/bsd-simplified_189.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_19.RULE b/src/licensedcode/data/rules/bsd-simplified_19.RULE index 4b3e0f7b1f7..4eeceeda863 100644 --- a/src/licensedcode/data/rules/bsd-simplified_19.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_19.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + is licensed under the BSD 2-clause license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_19.yml b/src/licensedcode/data/rules/bsd-simplified_19.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_190.RULE b/src/licensedcode/data/rules/bsd-simplified_190.RULE index 0286b386529..71d1df9e98b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_190.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_190.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + distributed under the BSD-2-Clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_190.yml b/src/licensedcode/data/rules/bsd-simplified_190.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_191.RULE b/src/licensedcode/data/rules/bsd-simplified_191.RULE index 9e8ba310aa5..8b69bb1827d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_191.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_191.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + (The 2-Clause BSD Licence) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_191.yml b/src/licensedcode/data/rules/bsd-simplified_191.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_192.RULE b/src/licensedcode/data/rules/bsd-simplified_192.RULE index 6e1da4e354b..cad6dfed3ba 100644 --- a/src/licensedcode/data/rules/bsd-simplified_192.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_192.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + Licence: BSD 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_192.yml b/src/licensedcode/data/rules/bsd-simplified_192.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_193.RULE b/src/licensedcode/data/rules/bsd-simplified_193.RULE index 65240a3db78..c6928a82070 100644 --- a/src/licensedcode/data/rules/bsd-simplified_193.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_193.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - nsl.h +notes: https://github.com/smrkous/nsl/blob/4c7c04881383ef829cdfbf799b70f79cd6ef25db/NetStalkerLibrary/include/nsl.h +--- + * For conditions of distribution and use, see copyright notice in nsl.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_193.yml b/src/licensedcode/data/rules/bsd-simplified_193.yml deleted file mode 100644 index ebe23aa894c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_193.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - nsl.h -notes: https://github.com/smrkous/nsl/blob/4c7c04881383ef829cdfbf799b70f79cd6ef25db/NetStalkerLibrary/include/nsl.h diff --git a/src/licensedcode/data/rules/bsd-simplified_194.RULE b/src/licensedcode/data/rules/bsd-simplified_194.RULE index e7b63bf0409..6cb795a3593 100644 --- a/src/licensedcode/data/rules/bsd-simplified_194.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_194.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/bsd-license.php +--- + BSD 2-Clause License (https://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_194.yml b/src/licensedcode/data/rules/bsd-simplified_194.yml deleted file mode 100644 index 1607ad9665e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_195.RULE b/src/licensedcode/data/rules/bsd-simplified_195.RULE index f7ab73fa858..af34cfa4fcd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_195.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_195.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + BSD 2-Clause License (http://opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_195.yml b/src/licensedcode/data/rules/bsd-simplified_195.yml deleted file mode 100644 index 975f045eca1..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_196.RULE b/src/licensedcode/data/rules/bsd-simplified_196.RULE index eb1d6de5b7c..6f28aa36d58 100644 --- a/src/licensedcode/data/rules/bsd-simplified_196.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_196.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/bsd-license.php +--- + BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_196.yml b/src/licensedcode/data/rules/bsd-simplified_196.yml deleted file mode 100644 index a427e7b4c60..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_197.RULE b/src/licensedcode/data/rules/bsd-simplified_197.RULE index d3e67b9cfc6..5fc35977431 100644 --- a/src/licensedcode/data/rules/bsd-simplified_197.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_197.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - socket_daemon.c +notes: seen in https://github.com/panwarsandeep/server/blob/master/socket_daemon.c +--- + For conditions of distribution and use, see copyright notice in socket_daemon.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_197.yml b/src/licensedcode/data/rules/bsd-simplified_197.yml deleted file mode 100644 index 16a73b6dd1b..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_197.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - socket_daemon.c -notes: seen in https://github.com/panwarsandeep/server/blob/master/socket_daemon.c diff --git a/src/licensedcode/data/rules/bsd-simplified_198.RULE b/src/licensedcode/data/rules/bsd-simplified_198.RULE index c649f0fd3e5..871222dddc5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_198.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_198.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - nsc.cpp +notes: https://github.com/suzukiplan/nsdlib/blob/5b46f81e5314af88171130daa9f0c06185089b95/src/nsc/nsc.cpp +--- + For conditions of distribution and use, see copyright notice in "nsc.cpp". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_198.yml b/src/licensedcode/data/rules/bsd-simplified_198.yml deleted file mode 100644 index 9b0cca62cb6..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_198.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - nsc.cpp -notes: https://github.com/suzukiplan/nsdlib/blob/5b46f81e5314af88171130daa9f0c06185089b95/src/nsc/nsc.cpp diff --git a/src/licensedcode/data/rules/bsd-simplified_199.RULE b/src/licensedcode/data/rules/bsd-simplified_199.RULE index 97dd58f0d5c..c7504a93fd9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_199.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_199.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + Simplified BSD License (BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_199.yml b/src/licensedcode/data/rules/bsd-simplified_199.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_2.RULE b/src/licensedcode/data/rules/bsd-simplified_2.RULE index af8f6673f0c..a07d15254bd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -21,4 +26,4 @@ * 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. + * POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_2.yml b/src/licensedcode/data/rules/bsd-simplified_2.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_20.RULE b/src/licensedcode/data/rules/bsd-simplified_20.RULE index 2fe4341f0df..5eef94090ef 100644 --- a/src/licensedcode/data/rules/bsd-simplified_20.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_20.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -16,4 +21,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_20.yml b/src/licensedcode/data/rules/bsd-simplified_20.yml deleted file mode 100644 index 8c5b2fb9e67..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_200.RULE b/src/licensedcode/data/rules/bsd-simplified_200.RULE index 1bd5103247c..3ab759c7c04 100644 --- a/src/licensedcode/data/rules/bsd-simplified_200.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_200.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + Simplified BSD licence (BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_200.yml b/src/licensedcode/data/rules/bsd-simplified_200.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_201.RULE b/src/licensedcode/data/rules/bsd-simplified_201.RULE index 62d8dacbbed..8a61a23bd5b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_201.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_201.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_201.yml b/src/licensedcode/data/rules/bsd-simplified_201.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_202.RULE b/src/licensedcode/data/rules/bsd-simplified_202.RULE index 6e99cb0c108..b45b206baa8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_202.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_202.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_202.yml b/src/licensedcode/data/rules/bsd-simplified_202.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_203.RULE b/src/licensedcode/data/rules/bsd-simplified_203.RULE index 8434a1ada47..2c424a11e5d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_203.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_203.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + the simplified BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_203.yml b/src/licensedcode/data/rules/bsd-simplified_203.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_204.RULE b/src/licensedcode/data/rules/bsd-simplified_204.RULE index 8b9000690a2..44f903ef7a6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_204.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_204.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-simplified_204.yml b/src/licensedcode/data/rules/bsd-simplified_204.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_205.RULE b/src/licensedcode/data/rules/bsd-simplified_205.RULE index 3b5742f9bbf..ac791c416f0 100644 --- a/src/licensedcode/data/rules/bsd-simplified_205.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_205.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * @licence * licence: Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_205.yml b/src/licensedcode/data/rules/bsd-simplified_205.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_206.RULE b/src/licensedcode/data/rules/bsd-simplified_206.RULE index bc272b4dd40..f1d11772d23 100644 --- a/src/licensedcode/data/rules/bsd-simplified_206.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_206.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * licence: Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_206.yml b/src/licensedcode/data/rules/bsd-simplified_206.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_207.RULE b/src/licensedcode/data/rules/bsd-simplified_207.RULE index 203f92c879f..808e5566ec9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_207.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_207.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * @licence * licence: Simplified BSD Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_207.yml b/src/licensedcode/data/rules/bsd-simplified_207.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_208.RULE b/src/licensedcode/data/rules/bsd-simplified_208.RULE index 12d075374b3..a26fe8d2144 100644 --- a/src/licensedcode/data/rules/bsd-simplified_208.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_208.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * licence: Simplified BSD Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_208.yml b/src/licensedcode/data/rules/bsd-simplified_208.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_209.RULE b/src/licensedcode/data/rules/bsd-simplified_209.RULE index dccb4a5fd5d..9b119c0e4ae 100644 --- a/src/licensedcode/data/rules/bsd-simplified_209.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_209.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * @license * license: Simplified BSD Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_209.yml b/src/licensedcode/data/rules/bsd-simplified_209.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_21.RULE b/src/licensedcode/data/rules/bsd-simplified_21.RULE index 95ecaf36cdb..3ead96bf597 100644 --- a/src/licensedcode/data/rules/bsd-simplified_21.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + BSD License Usage Alternatively, this file may be used under the BSD license as follows: Redistribution and use in source and binary forms, with or without @@ -19,4 +25,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_21.yml b/src/licensedcode/data/rules/bsd-simplified_21.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_210.RULE b/src/licensedcode/data/rules/bsd-simplified_210.RULE index f69ebe85832..2ca9ab62be3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_210.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_210.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * license: Simplified BSD Licence 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_210.yml b/src/licensedcode/data/rules/bsd-simplified_210.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_211.RULE b/src/licensedcode/data/rules/bsd-simplified_211.RULE index 04ee7e3c931..53baadd1ffe 100644 --- a/src/licensedcode/data/rules/bsd-simplified_211.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_211.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + 2-clause Berkley Software Distribution license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_211.yml b/src/licensedcode/data/rules/bsd-simplified_211.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_212.RULE b/src/licensedcode/data/rules/bsd-simplified_212.RULE index 3f176a17d3d..d49f6570e88 100644 --- a/src/licensedcode/data/rules/bsd-simplified_212.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_212.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + * license: Simplified BSD Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_212.yml b/src/licensedcode/data/rules/bsd-simplified_212.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_213.RULE b/src/licensedcode/data/rules/bsd-simplified_213.RULE index 40861256f5d..3ffe57f7c91 100644 --- a/src/licensedcode/data/rules/bsd-simplified_213.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_213.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.spdx.org/licenses/BSD-2-Clause +--- + It can be modified and redistributed in accordance with the terms of the [BSD-2-Clause](http://www.spdx.org/licenses/BSD-2-Clause) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_213.yml b/src/licensedcode/data/rules/bsd-simplified_213.yml deleted file mode 100644 index 3eaef7d78e0..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_213.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.spdx.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_214.RULE b/src/licensedcode/data/rules/bsd-simplified_214.RULE index c13bd4da94f..c301fe07051 100644 --- a/src/licensedcode/data/rules/bsd-simplified_214.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_214.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + It can be modified and redistributed in accordance with the terms of the BSD-2-Clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_214.yml b/src/licensedcode/data/rules/bsd-simplified_214.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_215.RULE b/src/licensedcode/data/rules/bsd-simplified_215.RULE index 5e82656f492..640aad9b41c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_215.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_215.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +notes: from https://botan.randombit.net/doxygen/kdf_8cpp_source.html +--- + released under the Simplified BSD License (see license.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_215.yml b/src/licensedcode/data/rules/bsd-simplified_215.yml deleted file mode 100644 index c86cd0fdbe0..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_215.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt -notes: from https://botan.randombit.net/doxygen/kdf_8cpp_source.html diff --git a/src/licensedcode/data/rules/bsd-simplified_216.RULE b/src/licensedcode/data/rules/bsd-simplified_216.RULE index 646eddfe2d5..7654f170cf8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_216.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_216.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +notes: https://github.com/Bcfg2/bcfg2/blob/master/LICENSE disclaimer(s) is spelled as plural + here. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_216.yml b/src/licensedcode/data/rules/bsd-simplified_216.yml deleted file mode 100644 index dddf22983c7..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_216.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -notes: https://github.com/Bcfg2/bcfg2/blob/master/LICENSE disclaimer(s) is spelled as plural - here. diff --git a/src/licensedcode/data/rules/bsd-simplified_217.RULE b/src/licensedcode/data/rules/bsd-simplified_217.RULE index 298d24c3e2c..4972ef43a13 100644 --- a/src/licensedcode/data/rules/bsd-simplified_217.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_217.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Reference source code is licensed under BSD-2-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_217.yml b/src/licensedcode/data/rules/bsd-simplified_217.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_218.RULE b/src/licensedcode/data/rules/bsd-simplified_218.RULE index 095e050b1e6..9a3f711f573 100644 --- a/src/licensedcode/data/rules/bsd-simplified_218.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_218.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_218.yml b/src/licensedcode/data/rules/bsd-simplified_218.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_219.RULE b/src/licensedcode/data/rules/bsd-simplified_219.RULE index 8ad2a262797..3ed54193d07 100644 --- a/src/licensedcode/data/rules/bsd-simplified_219.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_219.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm +--- + The frontends are 2-clause BSD licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_219.yml b/src/licensedcode/data/rules/bsd-simplified_219.yml deleted file mode 100644 index 8bd22f33236..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_219.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm diff --git a/src/licensedcode/data/rules/bsd-simplified_22.RULE b/src/licensedcode/data/rules/bsd-simplified_22.RULE index 52a4ae9456a..ec3eb8d8bdf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_22.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_22.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -16,4 +21,4 @@ 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 + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_22.yml b/src/licensedcode/data/rules/bsd-simplified_22.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_22.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_220.RULE b/src/licensedcode/data/rules/bsd-simplified_220.RULE index 69b419a9aaa..dfd7ae46116 100644 --- a/src/licensedcode/data/rules/bsd-simplified_220.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_220.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm +--- + now licensed under the 2-clause BSD license, also known as the simplified BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_220.yml b/src/licensedcode/data/rules/bsd-simplified_220.yml deleted file mode 100644 index 8bd22f33236..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_220.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -notes: https://github.com/linuxdeepin/qcef-chromium/tree/88adbf45a6885c6ad327d3235a04960cc3ee045f/src/third_party/yasm diff --git a/src/licensedcode/data/rules/bsd-simplified_221.RULE b/src/licensedcode/data/rules/bsd-simplified_221.RULE index c287b164d65..b7f43a5df63 100644 --- a/src/licensedcode/data/rules/bsd-simplified_221.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_221.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + LICENSE INFORMATION: BSD-2 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_221.yml b/src/licensedcode/data/rules/bsd-simplified_221.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_222.RULE b/src/licensedcode/data/rules/bsd-simplified_222.RULE index ea10e6e4a60..a69713f9e01 100644 --- a/src/licensedcode/data/rules/bsd-simplified_222.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_222.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php/ +--- + This software may be used, subject to the terms of OSI's BSD-2 Clause License located at http://www.opensource.org/licenses/bsd-license.php/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_222.yml b/src/licensedcode/data/rules/bsd-simplified_222.yml deleted file mode 100644 index e3d0961db91..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_222.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php/ diff --git a/src/licensedcode/data/rules/bsd-simplified_223.RULE b/src/licensedcode/data/rules/bsd-simplified_223.RULE index ce470f8bcff..73cd7a86c5f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_223.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_223.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD-2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_223.yml b/src/licensedcode/data/rules/bsd-simplified_223.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_224.RULE b/src/licensedcode/data/rules/bsd-simplified_224.RULE index feacc42e1fe..2b78863f0d4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_224.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_224.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_224.yml b/src/licensedcode/data/rules/bsd-simplified_224.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_225.RULE b/src/licensedcode/data/rules/bsd-simplified_225.RULE index b723861d915..cea5fd0c52e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_225.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_225.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + The BSD-2 license (the "License") set forth below applies \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_225.yml b/src/licensedcode/data/rules/bsd-simplified_225.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_226.RULE b/src/licensedcode/data/rules/bsd-simplified_226.RULE index 081d59af51b..02562d4ac73 100644 --- a/src/licensedcode/data/rules/bsd-simplified_226.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_226.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + The BSD-2 license (the License) set forth below applies to all parts \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_226.yml b/src/licensedcode/data/rules/bsd-simplified_226.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_227.RULE b/src/licensedcode/data/rules/bsd-simplified_227.RULE index 105a96ac638..396d467fc6d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_227.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_227.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + license: BSD-2, see LICENSE.md for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_227.yml b/src/licensedcode/data/rules/bsd-simplified_227.yml deleted file mode 100644 index e351a022012..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_227.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/bsd-simplified_228.RULE b/src/licensedcode/data/rules/bsd-simplified_228.RULE index 38fe1419154..844805cccca 100644 --- a/src/licensedcode/data/rules/bsd-simplified_228.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_228.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the BSD-2 license (see LICENSE file in main directory) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_228.yml b/src/licensedcode/data/rules/bsd-simplified_228.yml deleted file mode 100644 index 45a848cb043..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_228.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_229.RULE b/src/licensedcode/data/rules/bsd-simplified_229.RULE index 030b94176c7..a5c642267b5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_229.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_229.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-2-Clause +--- + * @license http://opensource.org/licenses/BSD-2-Clause BSD-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_229.yml b/src/licensedcode/data/rules/bsd-simplified_229.yml deleted file mode 100644 index 3e4ce364d65..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_229.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_23.RULE b/src/licensedcode/data/rules/bsd-simplified_23.RULE index 8eb590410e5..bd0f543893a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_23.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_23.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -20,4 +25,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_23.yml b/src/licensedcode/data/rules/bsd-simplified_23.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_230.RULE b/src/licensedcode/data/rules/bsd-simplified_230.RULE index de177680c6a..293754c76ae 100644 --- a/src/licensedcode/data/rules/bsd-simplified_230.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_230.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Published under the BSD-2 license in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_230.yml b/src/licensedcode/data/rules/bsd-simplified_230.yml deleted file mode 100644 index 45a848cb043..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_230.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_231.RULE b/src/licensedcode/data/rules/bsd-simplified_231.RULE index 0c737e1fc53..07a97aa1582 100644 --- a/src/licensedcode/data/rules/bsd-simplified_231.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_231.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * LICENCE: * * This file is distributed under the terms of the BSD-2 License. diff --git a/src/licensedcode/data/rules/bsd-simplified_231.yml b/src/licensedcode/data/rules/bsd-simplified_231.yml deleted file mode 100644 index 4257bd1ef39..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_231.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-simplified_232.RULE b/src/licensedcode/data/rules/bsd-simplified_232.RULE index b9b00ee5eca..a68ada2a052 100644 --- a/src/licensedcode/data/rules/bsd-simplified_232.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_232.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * * This file is distributed under the terms of the BSD-2 License. * See the COPYING file, which should have been distributed with diff --git a/src/licensedcode/data/rules/bsd-simplified_232.yml b/src/licensedcode/data/rules/bsd-simplified_232.yml deleted file mode 100644 index 4257bd1ef39..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-simplified_233.RULE b/src/licensedcode/data/rules/bsd-simplified_233.RULE index 295e9c26869..692c1f5af60 100644 --- a/src/licensedcode/data/rules/bsd-simplified_233.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_233.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + 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, diff --git a/src/licensedcode/data/rules/bsd-simplified_233.yml b/src/licensedcode/data/rules/bsd-simplified_233.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_234.RULE b/src/licensedcode/data/rules/bsd-simplified_234.RULE index a22fcd9150d..74f890e6ab7 100644 --- a/src/licensedcode/data/rules/bsd-simplified_234.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_234.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + 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, diff --git a/src/licensedcode/data/rules/bsd-simplified_234.yml b/src/licensedcode/data/rules/bsd-simplified_234.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_235.RULE b/src/licensedcode/data/rules/bsd-simplified_235.RULE index 079df440e29..d0667c879b7 100644 --- a/src/licensedcode/data/rules/bsd-simplified_235.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_235.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD - 2Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_235.yml b/src/licensedcode/data/rules/bsd-simplified_235.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_235.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_236.RULE b/src/licensedcode/data/rules/bsd-simplified_236.RULE index 3872f807787..0df5bb2f94c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_236.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_236.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + License: BSD – 2Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_236.yml b/src/licensedcode/data/rules/bsd-simplified_236.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_236.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_237.RULE b/src/licensedcode/data/rules/bsd-simplified_237.RULE index c0a5bdeeacd..85dfce1b33a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_237.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_237.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Redistribution of this software and documentation and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_237.yml b/src/licensedcode/data/rules/bsd-simplified_237.yml deleted file mode 100644 index 8925e45a577..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_237.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_238.RULE b/src/licensedcode/data/rules/bsd-simplified_238.RULE index bcc98d522e7..b6ff45d6b86 100644 --- a/src/licensedcode/data/rules/bsd-simplified_238.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_238.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Redistribution of this software and documentation and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_238.yml b/src/licensedcode/data/rules/bsd-simplified_238.yml deleted file mode 100644 index 8925e45a577..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_238.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_239.RULE b/src/licensedcode/data/rules/bsd-simplified_239.RULE index 264f30a2f68..d3931a254ef 100644 --- a/src/licensedcode/data/rules/bsd-simplified_239.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_239.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +notes: Seen in FreeBSD +--- + Free and Open Source Software (FOSS). It is offered under the BSD 2-clause License. Full license text may be found in the [`LICENSE.md`] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_239.yml b/src/licensedcode/data/rules/bsd-simplified_239.yml deleted file mode 100644 index 63666895f9c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_239.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_24.RULE b/src/licensedcode/data/rules/bsd-simplified_24.RULE index ec1764f4279..d906e5578bd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_24.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_24.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + License: 2-clause-BSD (Berkley Software Distribution) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_24.yml b/src/licensedcode/data/rules/bsd-simplified_24.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_240.RULE b/src/licensedcode/data/rules/bsd-simplified_240.RULE index 748867090e0..1949489c7e5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_240.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_240.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +notes: Seen in FreeBSD +--- + LICENSE.md A Markdown form of the BSD 2-clause License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_240.yml b/src/licensedcode/data/rules/bsd-simplified_240.yml deleted file mode 100644 index 1f4e5d0b3df..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_240.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.md -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_241.RULE b/src/licensedcode/data/rules/bsd-simplified_241.RULE index 8e90f579506..d5253f89493 100644 --- a/src/licensedcode/data/rules/bsd-simplified_241.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_241.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + under the terms of the simplified BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_241.yml b/src/licensedcode/data/rules/bsd-simplified_241.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_242.RULE b/src/licensedcode/data/rules/bsd-simplified_242.RULE index 7c5afae308f..fd26407acb8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_242.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_242.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_242.yml b/src/licensedcode/data/rules/bsd-simplified_242.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_243.RULE b/src/licensedcode/data/rules/bsd-simplified_243.RULE index 591dcc95005..7e56164c33d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_243.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_243.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_243.yml b/src/licensedcode/data/rules/bsd-simplified_243.yml deleted file mode 100644 index a1540e9adee..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_243.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-simplified_244.RULE b/src/licensedcode/data/rules/bsd-simplified_244.RULE index 8c20f6f37b4..01ccfa334ff 100644 --- a/src/licensedcode/data/rules/bsd-simplified_244.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_244.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + THE BSD LICENSE Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_244.yml b/src/licensedcode/data/rules/bsd-simplified_244.yml deleted file mode 100644 index 3a0aabb56e8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_244.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_245.RULE b/src/licensedcode/data/rules/bsd-simplified_245.RULE index 9cfbfe543a3..9a5cb6cef7a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_245.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_245.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + BSD LICENSE Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_245.yml b/src/licensedcode/data/rules/bsd-simplified_245.yml deleted file mode 100644 index 3a0aabb56e8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_245.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_246.RULE b/src/licensedcode/data/rules/bsd-simplified_246.RULE index 491902dfe19..688d8c855a5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_246.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_246.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + The Less License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_246.yml b/src/licensedcode/data/rules/bsd-simplified_246.yml deleted file mode 100644 index 536f0084329..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_246.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_247.RULE b/src/licensedcode/data/rules/bsd-simplified_247.RULE index e060d88346b..c5eb561827f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_247.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_247.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Less License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_247.yml b/src/licensedcode/data/rules/bsd-simplified_247.yml deleted file mode 100644 index 536f0084329..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_247.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_248.RULE b/src/licensedcode/data/rules/bsd-simplified_248.RULE index f39ef6a44a8..ec92ddd8712 100644 --- a/src/licensedcode/data/rules/bsd-simplified_248.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_248.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + The FreeBSD Project has chosen to redistribute and modify Less under the 'Less License' (as described in the 'LICENSE' file) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_248.yml b/src/licensedcode/data/rules/bsd-simplified_248.yml deleted file mode 100644 index f144c0fb5ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_248.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_249.RULE b/src/licensedcode/data/rules/bsd-simplified_249.RULE index e0713ce65bf..af70ec3b4e8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_249.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_249.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution of this software and documentation and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_249.yml b/src/licensedcode/data/rules/bsd-simplified_249.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_25.RULE b/src/licensedcode/data/rules/bsd-simplified_25.RULE index 9fd66eef2bd..e28751ac6d9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_25.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,4 +23,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_25.yml b/src/licensedcode/data/rules/bsd-simplified_25.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_250.RULE b/src/licensedcode/data/rules/bsd-simplified_250.RULE index a5fbbc5b67f..0d48261174a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_250.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_250.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +notes: streamlined disclaimer +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-simplified_250.yml b/src/licensedcode/data/rules/bsd-simplified_250.yml deleted file mode 100644 index 85436f6ea6c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_250.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -notes: streamlined disclaimer diff --git a/src/licensedcode/data/rules/bsd-simplified_251.RULE b/src/licensedcode/data/rules/bsd-simplified_251.RULE index 0454739113d..aac51afde2d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_251.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_251.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +notes: streamlined disclaimer +--- + 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 diff --git a/src/licensedcode/data/rules/bsd-simplified_251.yml b/src/licensedcode/data/rules/bsd-simplified_251.yml deleted file mode 100644 index 85436f6ea6c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_251.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -notes: streamlined disclaimer diff --git a/src/licensedcode/data/rules/bsd-simplified_252.RULE b/src/licensedcode/data/rules/bsd-simplified_252.RULE index 69aa0ae4a71..994060e1e35 100644 --- a/src/licensedcode/data/rules/bsd-simplified_252.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_252.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_252.yml b/src/licensedcode/data/rules/bsd-simplified_252.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_253.RULE b/src/licensedcode/data/rules/bsd-simplified_253.RULE index b920489ac3e..e5f6e2f84e5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_253.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_253.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +notes: Seen in FreeBSD +--- + This `bc` is Free and Open Source Software (FOSS). It is offered under the {{BSD -2-clause License}}. Full license text may be found in the [`LICENSE.md`][4] file. +2-clause License}}. Full license text may be found in the [`LICENSE.md`][4] file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_253.yml b/src/licensedcode/data/rules/bsd-simplified_253.yml deleted file mode 100644 index 63666895f9c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_253.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_254.RULE b/src/licensedcode/data/rules/bsd-simplified_254.RULE index 9e7e95579c8..459742a2d0b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_254.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_254.RULE @@ -1,2 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +notes: Seen in FreeBSD +--- + This is Free and Open Source Software (FOSS). It is offered under the BSD 2-clause License. Full license text may be found in the [`LICENSE.md`]file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_254.yml b/src/licensedcode/data/rules/bsd-simplified_254.yml deleted file mode 100644 index 63666895f9c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_254.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_255.RULE b/src/licensedcode/data/rules/bsd-simplified_255.RULE index 52de31f0caa..34391ce4cd1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_255.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_255.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + under a BSD 2-Clause license, see LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_255.yml b/src/licensedcode/data/rules/bsd-simplified_255.yml deleted file mode 100644 index 45a848cb043..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_255.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_256.RULE b/src/licensedcode/data/rules/bsd-simplified_256.RULE index 9ec4fb969a0..4a87902175d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_256.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_256.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + under a BSD 2-Clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_256.yml b/src/licensedcode/data/rules/bsd-simplified_256.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_257.RULE b/src/licensedcode/data/rules/bsd-simplified_257.RULE index 5aa5cc109e9..cd598568811 100644 --- a/src/licensedcode/data/rules/bsd-simplified_257.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_257.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + under a BSD 2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_257.yml b/src/licensedcode/data/rules/bsd-simplified_257.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_257.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_258.RULE b/src/licensedcode/data/rules/bsd-simplified_258.RULE index f573a51fa75..836317a4bd5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_258.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_258.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Licensed under the 2-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_258.yml b/src/licensedcode/data/rules/bsd-simplified_258.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_259.RULE b/src/licensedcode/data/rules/bsd-simplified_259.RULE index 05628eeb127..f19efbd9a3d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_259.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_259.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + under the 2-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_259.yml b/src/licensedcode/data/rules/bsd-simplified_259.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_26.RULE b/src/licensedcode/data/rules/bsd-simplified_26.RULE index 78f486a75b7..6f36fbc2787 100644 --- a/src/licensedcode/data/rules/bsd-simplified_26.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_26.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + This header is BSD licensed so anyone can use the definitions to implement compatible drivers/servers. @@ -20,4 +26,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_26.yml b/src/licensedcode/data/rules/bsd-simplified_26.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_260.RULE b/src/licensedcode/data/rules/bsd-simplified_260.RULE index c5be94bc3d8..2326828f114 100644 --- a/src/licensedcode/data/rules/bsd-simplified_260.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_260.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + copyrighted with a BSD 2-Clause copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_260.yml b/src/licensedcode/data/rules/bsd-simplified_260.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_261.RULE b/src/licensedcode/data/rules/bsd-simplified_261.RULE index a6d0ad60341..e1e63ca4fe8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_261.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_261.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE-FOSS +--- + License: BSD 2-Clause; see file LICENSE-FOSS \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_261.yml b/src/licensedcode/data/rules/bsd-simplified_261.yml deleted file mode 100644 index dddf176a7c0..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_261.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE-FOSS diff --git a/src/licensedcode/data/rules/bsd-simplified_262.RULE b/src/licensedcode/data/rules/bsd-simplified_262.RULE index 7a8841f7cef..93f71ff5670 100644 --- a/src/licensedcode/data/rules/bsd-simplified_262.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_262.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE-FOSS +--- + License: BSD 2-Clause; see file LICENSE-FOSS Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_262.yml b/src/licensedcode/data/rules/bsd-simplified_262.yml deleted file mode 100644 index 8a06d44c438..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_262.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE-FOSS diff --git a/src/licensedcode/data/rules/bsd-simplified_263.RULE b/src/licensedcode/data/rules/bsd-simplified_263.RULE index 78913f38bd9..8d7d7c4b406 100644 --- a/src/licensedcode/data/rules/bsd-simplified_263.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_263.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 99 +notes: uses a bytecode reference instead of binary. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -19,5 +26,4 @@ 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. - +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_263.yml b/src/licensedcode/data/rules/bsd-simplified_263.yml deleted file mode 100644 index 84152fb45ac..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_263.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 99 -notes: uses a bytecode reference instead of binary. diff --git a/src/licensedcode/data/rules/bsd-simplified_264.RULE b/src/licensedcode/data/rules/bsd-simplified_264.RULE index f0c2fb1b3b8..f09523ab36b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_264.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_264.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 90 +notes: Found in Debian Copyright Files, note that the disclaimer is missing, but is present + elsewhere in the file. +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -5,4 +13,4 @@ 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. + documentation and/or other materials provided with the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_264.yml b/src/licensedcode/data/rules/bsd-simplified_264.yml deleted file mode 100644 index 5bed53f9c27..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_264.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 90 -notes: Found in Debian Copyright Files, note that the disclaimer is missing, but is present - elsewhere in the file. diff --git a/src/licensedcode/data/rules/bsd-simplified_265.RULE b/src/licensedcode/data/rules/bsd-simplified_265.RULE index 3e43028e1db..b929c925c63 100644 --- a/src/licensedcode/data/rules/bsd-simplified_265.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_265.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_265.yml b/src/licensedcode/data/rules/bsd-simplified_265.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_266.RULE b/src/licensedcode/data/rules/bsd-simplified_266.RULE index 795ee97e2cd..db33e0769c9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_266.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_266.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +notes: found in libdnf +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_266.yml b/src/licensedcode/data/rules/bsd-simplified_266.yml deleted file mode 100644 index d479878a254..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_266.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -notes: found in libdnf diff --git a/src/licensedcode/data/rules/bsd-simplified_267.RULE b/src/licensedcode/data/rules/bsd-simplified_267.RULE index fcf57024035..f9318a09389 100644 --- a/src/licensedcode/data/rules/bsd-simplified_267.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_267.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_267.yml b/src/licensedcode/data/rules/bsd-simplified_267.yml deleted file mode 100644 index ac725e45757..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_267.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_268.RULE b/src/licensedcode/data/rules/bsd-simplified_268.RULE index 0a0fdd95ba1..e8cc9141667 100644 --- a/src/licensedcode/data/rules/bsd-simplified_268.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_268.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + released under the [2 clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_268.yml b/src/licensedcode/data/rules/bsd-simplified_268.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_269.RULE b/src/licensedcode/data/rules/bsd-simplified_269.RULE index 61fa70fc534..2a052414229 100644 --- a/src/licensedcode/data/rules/bsd-simplified_269.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_269.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + Licensed under The BSD 2-Clause License:http://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_269.yml b/src/licensedcode/data/rules/bsd-simplified_269.yml deleted file mode 100644 index 07dcf8bbe9f..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_269.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_27.RULE b/src/licensedcode/data/rules/bsd-simplified_27.RULE index 644acc97a10..801dd35eb9b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_27.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_27.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_27.yml b/src/licensedcode/data/rules/bsd-simplified_27.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_27.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_270.RULE b/src/licensedcode/data/rules/bsd-simplified_270.RULE index 73d7106e3c2..013815b92f6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_270.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_270.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + distributed under the simplified 2-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_270.yml b/src/licensedcode/data/rules/bsd-simplified_270.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_271.RULE b/src/licensedcode/data/rules/bsd-simplified_271.RULE index f7421de2a4a..3d7ac2e048c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_271.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_271.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - coco/license.txt +--- + Licensed under the Simplified BSD License [see coco/license.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_271.yml b/src/licensedcode/data/rules/bsd-simplified_271.yml deleted file mode 100644 index bac3cf6c8b4..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_271.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - coco/license.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_272.RULE b/src/licensedcode/data/rules/bsd-simplified_272.RULE index 52c2c1ccba0..7f739455c37 100644 --- a/src/licensedcode/data/rules/bsd-simplified_272.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_272.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - bsd.txt +--- + Licensed under the Simplified BSD License [see bsd.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_272.yml b/src/licensedcode/data/rules/bsd-simplified_272.yml deleted file mode 100644 index 11cedfb4587..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_272.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - bsd.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_273.RULE b/src/licensedcode/data/rules/bsd-simplified_273.RULE index cef39d98357..23ed66f8045 100644 --- a/src/licensedcode/data/rules/bsd-simplified_273.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_273.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + Terms of the BSD 2-Clause License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_273.yml b/src/licensedcode/data/rules/bsd-simplified_273.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_274.RULE b/src/licensedcode/data/rules/bsd-simplified_274.RULE index 6e733040114..20f857ac23f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_274.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_274.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: diff --git a/src/licensedcode/data/rules/bsd-simplified_274.yml b/src/licensedcode/data/rules/bsd-simplified_274.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_274.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_275.RULE b/src/licensedcode/data/rules/bsd-simplified_275.RULE index 92619b2672b..4916557db29 100644 --- a/src/licensedcode/data/rules/bsd-simplified_275.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_275.RULE @@ -1 +1,6 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +--- + The BSD-2 license (the “License”) set forth below applies to all parts of the project. You may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_275.yml b/src/licensedcode/data/rules/bsd-simplified_275.yml deleted file mode 100644 index 8c5b2fb9e67..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_275.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_276.RULE b/src/licensedcode/data/rules/bsd-simplified_276.RULE index 2f97b0666bf..c29ae6edc4c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_276.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_276.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD Two Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_276.yml b/src/licensedcode/data/rules/bsd-simplified_276.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_277.RULE b/src/licensedcode/data/rules/bsd-simplified_277.RULE index fea72146fa8..e94a7fbb1a9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_277.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_277.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +--- + BSD-2-Clause-NetBSD BSD 2-clause NetBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_277.yml b/src/licensedcode/data/rules/bsd-simplified_277.yml deleted file mode 100644 index a29983f6e84..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_277.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_278.RULE b/src/licensedcode/data/rules/bsd-simplified_278.RULE index 533a9361cb3..8683bd8e9c3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_278.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_278.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + BSD 2-Clause NetBSD License BSD-2-Clause-NetBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_278.yml b/src/licensedcode/data/rules/bsd-simplified_278.yml deleted file mode 100644 index 6adbdae0179..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_278.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-simplified_279.RULE b/src/licensedcode/data/rules/bsd-simplified_279.RULE index 238fb2c089c..739b484aa62 100644 --- a/src/licensedcode/data/rules/bsd-simplified_279.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_279.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : BSD-2-Clause-NetBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_279.yml b/src/licensedcode/data/rules/bsd-simplified_279.yml deleted file mode 100644 index c2f43642167..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_279.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-simplified_28.RULE b/src/licensedcode/data/rules/bsd-simplified_28.RULE index ae14e35ae22..9283718f532 100644 --- a/src/licensedcode/data/rules/bsd-simplified_28.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_28.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +notes: bsd simplified variant, no warranty disclaimer +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,4 +23,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_28.yml b/src/licensedcode/data/rules/bsd-simplified_28.yml deleted file mode 100644 index d799ac2bbb6..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -notes: bsd simplified variant, no warranty disclaimer diff --git a/src/licensedcode/data/rules/bsd-simplified_280.RULE b/src/licensedcode/data/rules/bsd-simplified_280.RULE index 10415bedcbe..6b0c7c666a2 100644 --- a/src/licensedcode/data/rules/bsd-simplified_280.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_280.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : BSD-2-Clause-NetBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_280.yml b/src/licensedcode/data/rules/bsd-simplified_280.yml deleted file mode 100644 index 6adbdae0179..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_280.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-simplified_281.RULE b/src/licensedcode/data/rules/bsd-simplified_281.RULE index 628759c77e8..1784188694c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_281.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_281.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : BSD 2-Clause NetBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_281.yml b/src/licensedcode/data/rules/bsd-simplified_281.yml deleted file mode 100644 index 6adbdae0179..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_281.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/bsd-simplified_282.RULE b/src/licensedcode/data/rules/bsd-simplified_282.RULE index 457dd9e99ff..ee2cf05b386 100644 --- a/src/licensedcode/data/rules/bsd-simplified_282.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_282.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD 2-Clause NetBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_282.yml b/src/licensedcode/data/rules/bsd-simplified_282.yml deleted file mode 100644 index 7ac3ba59fa9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_282.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-simplified_283.RULE b/src/licensedcode/data/rules/bsd-simplified_283.RULE index 3e3b2f1fb56..85e89d2d642 100644 --- a/src/licensedcode/data/rules/bsd-simplified_283.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_283.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 2-Clause "Simplified" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_283.yml b/src/licensedcode/data/rules/bsd-simplified_283.yml deleted file mode 100644 index 8ee5a7d52c1..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_283.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-simplified_284.RULE b/src/licensedcode/data/rules/bsd-simplified_284.RULE index bf196665687..8761c0759b0 100644 --- a/src/licensedcode/data/rules/bsd-simplified_284.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_284.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-2-Clause BSD 2-Clause "Simplified" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_284.yml b/src/licensedcode/data/rules/bsd-simplified_284.yml deleted file mode 100644 index 8ee5a7d52c1..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_284.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-simplified_285.RULE b/src/licensedcode/data/rules/bsd-simplified_285.RULE index 41c71a3172e..e46c085bbf4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_285.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_285.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 2-Clause "Simplified" License BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_285.yml b/src/licensedcode/data/rules/bsd-simplified_285.yml deleted file mode 100644 index 8ee5a7d52c1..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_285.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-simplified_286.RULE b/src/licensedcode/data/rules/bsd-simplified_286.RULE index eda9df78523..e200a5fd89f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_286.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_286.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_286.yml b/src/licensedcode/data/rules/bsd-simplified_286.yml deleted file mode 100644 index 7ac3ba59fa9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_286.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-simplified_287.RULE b/src/licensedcode/data/rules/bsd-simplified_287.RULE index 960926b4d47..3c0b6289787 100644 --- a/src/licensedcode/data/rules/bsd-simplified_287.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_287.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['2 CLAUSE', 'BSD-2-Clause'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_287.yml b/src/licensedcode/data/rules/bsd-simplified_287.yml deleted file mode 100644 index 956ea3bb08a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_287.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_288.RULE b/src/licensedcode/data/rules/bsd-simplified_288.RULE index 92b418627a1..8ace1245159 100644 --- a/src/licensedcode/data/rules/bsd-simplified_288.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_288.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 80 +minimum_coverage: 100 +--- + BD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_288.yml b/src/licensedcode/data/rules/bsd-simplified_288.yml deleted file mode 100644 index 56c9d52242b..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_288.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 80 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_289.RULE b/src/licensedcode/data/rules/bsd-simplified_289.RULE index 9cda0c32c3e..6a1178fc1f5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_289.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_289.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'BSD 2-Clause license': 'BSD-2-Clause', \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_289.yml b/src/licensedcode/data/rules/bsd-simplified_289.yml deleted file mode 100644 index 956ea3bb08a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_289.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_29.RULE b/src/licensedcode/data/rules/bsd-simplified_29.RULE index f3d87ad3f80..9b009e111fd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_29.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_29.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. + 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_29.yml b/src/licensedcode/data/rules/bsd-simplified_29.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_290.RULE b/src/licensedcode/data/rules/bsd-simplified_290.RULE index f4d651a873a..17814d4e9ef 100644 --- a/src/licensedcode/data/rules/bsd-simplified_290.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_290.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + License This project is under BSD license. {{BSD 2-Clause}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_290.yml b/src/licensedcode/data/rules/bsd-simplified_290.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_291.RULE b/src/licensedcode/data/rules/bsd-simplified_291.RULE index 79f07270faf..b92e9df27a4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_291.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_291.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://javolution.org/LICENSE.txt +--- + BSD License http://javolution.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_291.yml b/src/licensedcode/data/rules/bsd-simplified_291.yml deleted file mode 100644 index 0a59db18df7..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_291.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://javolution.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_292.RULE b/src/licensedcode/data/rules/bsd-simplified_292.RULE index c44b1c33bd6..25ca60a7101 100644 --- a/src/licensedcode/data/rules/bsd-simplified_292.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_292.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/BSD_licenses#2-clause_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_292.yml b/src/licensedcode/data/rules/bsd-simplified_292.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_293.RULE b/src/licensedcode/data/rules/bsd-simplified_293.RULE index 15026582484..039ee7f3ff0 100644 --- a/src/licensedcode/data/rules/bsd-simplified_293.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_293.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Cryptix_General_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_293.yml b/src/licensedcode/data/rules/bsd-simplified_293.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_294.RULE b/src/licensedcode/data/rules/bsd-simplified_294.RULE index cf731a540ef..52a6246a9a4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_294.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_294.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD_licenses#2-clause_license_("Simplified_BSD_License"_or_"FreeBSD_License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_294.yml b/src/licensedcode/data/rules/bsd-simplified_294.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_295.RULE b/src/licensedcode/data/rules/bsd-simplified_295.RULE index d47a4b56ca5..85046791540 100644 --- a/src/licensedcode/data/rules/bsd-simplified_295.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_295.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD_licenses#2-clause_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_295.yml b/src/licensedcode/data/rules/bsd-simplified_295.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_295.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_296.RULE b/src/licensedcode/data/rules/bsd-simplified_296.RULE index 26ba391bee6..920c3bb9cbb 100644 --- a/src/licensedcode/data/rules/bsd-simplified_296.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_296.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + "Simplified_BSD_License"_or_"FreeBSD_License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_296.yml b/src/licensedcode/data/rules/bsd-simplified_296.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_296.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_297.RULE b/src/licensedcode/data/rules/bsd-simplified_297.RULE index ac858e85d08..409f36c1c5c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_297.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_297.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +referenced_filenames: + - BSDL + - COPYING + - LEGAL +--- + license "BSD-2-Clause" license_file "BSDL" license_file "COPYING" diff --git a/src/licensedcode/data/rules/bsd-simplified_297.yml b/src/licensedcode/data/rules/bsd-simplified_297.yml deleted file mode 100644 index 54bb7b3b966..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_297.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -referenced_filenames: - - BSDL - - COPYING - - LEGAL diff --git a/src/licensedcode/data/rules/bsd-simplified_298.RULE b/src/licensedcode/data/rules/bsd-simplified_298.RULE index bad4376dd5d..e7acb967b9f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_298.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_298.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + SimplifiedBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_298.yml b/src/licensedcode/data/rules/bsd-simplified_298.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_299.RULE b/src/licensedcode/data/rules/bsd-simplified_299.RULE index 394e8fe65df..d69e52a8d5b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_299.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_299.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-2-Clause +--- + https://licenses.nuget.org/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_299.yml b/src/licensedcode/data/rules/bsd-simplified_299.yml deleted file mode 100644 index 709205996c6..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_299.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_3.RULE b/src/licensedcode/data/rules/bsd-simplified_3.RULE index 2ac1bdf9132..da31108469d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD 2-clause "NetBSD" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_3.yml b/src/licensedcode/data/rules/bsd-simplified_3.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_30.RULE b/src/licensedcode/data/rules/bsd-simplified_30.RULE index d39e64de737..f3e4849e070 100644 --- a/src/licensedcode/data/rules/bsd-simplified_30.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_30.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -16,4 +21,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_30.yml b/src/licensedcode/data/rules/bsd-simplified_30.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_300.RULE b/src/licensedcode/data/rules/bsd-simplified_300.RULE index e42f250980e..b2d1190baa3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_300.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_300.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_300.yml b/src/licensedcode/data/rules/bsd-simplified_300.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_301.RULE b/src/licensedcode/data/rules/bsd-simplified_301.RULE index 585cfb31ab9..5668d35c6e2 100644 --- a/src/licensedcode/data/rules/bsd-simplified_301.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_301.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + {{licenses: BSD-2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_301.yml b/src/licensedcode/data/rules/bsd-simplified_301.yml deleted file mode 100644 index 2fbbfa553b7..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_301.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_302.RULE b/src/licensedcode/data/rules/bsd-simplified_302.RULE index 3bf28ca9219..7b24d1a2ce6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_302.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_302.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + covered by the Simplified BSD license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_302.yml b/src/licensedcode/data/rules/bsd-simplified_302.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_303.RULE b/src/licensedcode/data/rules/bsd-simplified_303.RULE index 8448aa9a1e5..964c1eaf6eb 100644 --- a/src/licensedcode/data/rules/bsd-simplified_303.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_303.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +notes: seen in pear packages +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_303.yml b/src/licensedcode/data/rules/bsd-simplified_303.yml deleted file mode 100644 index b7642ee05fb..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_303.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -notes: seen in pear packages -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_304.RULE b/src/licensedcode/data/rules/bsd-simplified_304.RULE index 53c31c6aba3..0de848d7ade 100644 --- a/src/licensedcode/data/rules/bsd-simplified_304.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_304.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2 +--- + {{BSD-2}} https://spdx.org/licenses/BSD-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_304.yml b/src/licensedcode/data/rules/bsd-simplified_304.yml deleted file mode 100644 index 69a37af4872..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_304.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2 diff --git a/src/licensedcode/data/rules/bsd-simplified_305.RULE b/src/licensedcode/data/rules/bsd-simplified_305.RULE index 29c0afd281f..2dec0bbeaa6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_305.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_305.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-NetBSD +--- + LICENSE {{BSD-2-Clause-NetBSD}} https://spdx.org/licenses/BSD-2-Clause-NetBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_305.yml b/src/licensedcode/data/rules/bsd-simplified_305.yml deleted file mode 100644 index 9a1fceae605..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_305.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-NetBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_306.RULE b/src/licensedcode/data/rules/bsd-simplified_306.RULE index 5917e07c833..f6cf1cfcd9e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_306.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_306.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2 +--- + LICENSE {{BSD-2}} https://spdx.org/licenses/BSD-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_306.yml b/src/licensedcode/data/rules/bsd-simplified_306.yml deleted file mode 100644 index 69a37af4872..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_306.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2 diff --git a/src/licensedcode/data/rules/bsd-simplified_307.RULE b/src/licensedcode/data/rules/bsd-simplified_307.RULE index 171faf89d77..d3663d3bb98 100644 --- a/src/licensedcode/data/rules/bsd-simplified_307.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_307.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause +--- + LICENSE {{BSD-2-Clause}} https://spdx.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_307.yml b/src/licensedcode/data/rules/bsd-simplified_307.yml deleted file mode 100644 index 2e5b22a887c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_307.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_308.RULE b/src/licensedcode/data/rules/bsd-simplified_308.RULE index 5a2c6cb45ee..b99558cd1cc 100644 --- a/src/licensedcode/data/rules/bsd-simplified_308.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_308.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause +--- + {{BSD-2-Clause}} https://spdx.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_308.yml b/src/licensedcode/data/rules/bsd-simplified_308.yml deleted file mode 100644 index 2e5b22a887c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_308.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_309.RULE b/src/licensedcode/data/rules/bsd-simplified_309.RULE index 10d0b2ebef8..ede08edce17 100644 --- a/src/licensedcode/data/rules/bsd-simplified_309.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_309.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-2-Clause-NetBSD +--- + {{BSD-2-Clause-NetBSD}} https://spdx.org/licenses/BSD-2-Clause-NetBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_309.yml b/src/licensedcode/data/rules/bsd-simplified_309.yml deleted file mode 100644 index 9a1fceae605..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_309.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-2-Clause-NetBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_31.RULE b/src/licensedcode/data/rules/bsd-simplified_31.RULE index d6855084c00..9a6d68a3829 100644 --- a/src/licensedcode/data/rules/bsd-simplified_31.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_31.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. + 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_31.yml b/src/licensedcode/data/rules/bsd-simplified_31.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_31.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_310.RULE b/src/licensedcode/data/rules/bsd-simplified_310.RULE index d7fd7ec1f7d..4697b6cb829 100644 --- a/src/licensedcode/data/rules/bsd-simplified_310.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_310.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + available under a BSD 2-Clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_310.yml b/src/licensedcode/data/rules/bsd-simplified_310.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_311.RULE b/src/licensedcode/data/rules/bsd-simplified_311.RULE index 53c443f9da2..48683f8a8b0 100644 --- a/src/licensedcode/data/rules/bsd-simplified_311.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_311.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the {{two-clause BSD}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_311.yml b/src/licensedcode/data/rules/bsd-simplified_311.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_312.RULE b/src/licensedcode/data/rules/bsd-simplified_312.RULE index a7d8587a22c..2134d132cb6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_312.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_312.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + available under the Simplified BSD License; see LICENSE for the full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_312.yml b/src/licensedcode/data/rules/bsd-simplified_312.yml deleted file mode 100644 index 45a848cb043..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_312.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_313.RULE b/src/licensedcode/data/rules/bsd-simplified_313.RULE index 8b7115cb561..d9c04bbc9e7 100644 --- a/src/licensedcode/data/rules/bsd-simplified_313.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_313.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + available under the Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_313.yml b/src/licensedcode/data/rules/bsd-simplified_313.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_314.RULE b/src/licensedcode/data/rules/bsd-simplified_314.RULE index b9342223b2a..ef63dcca772 100644 --- a/src/licensedcode/data/rules/bsd-simplified_314.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_314.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - README.md +--- + Distributed under the Simplified BSD License. See README.md for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_314.yml b/src/licensedcode/data/rules/bsd-simplified_314.yml deleted file mode 100644 index 66c5b65b897..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_314.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - README.md diff --git a/src/licensedcode/data/rules/bsd-simplified_315.RULE b/src/licensedcode/data/rules/bsd-simplified_315.RULE index dc900307ac4..78cfbb71e34 100644 --- a/src/licensedcode/data/rules/bsd-simplified_315.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_315.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ### License available under the Simplified BSD License; see LICENSE for the full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_315.yml b/src/licensedcode/data/rules/bsd-simplified_315.yml deleted file mode 100644 index 45a848cb043..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_315.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_316.RULE b/src/licensedcode/data/rules/bsd-simplified_316.RULE index 46b4e25e16e..c0bad20bbc6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_316.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_316.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + The software is open source software released under the "Simplified BSD License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_316.yml b/src/licensedcode/data/rules/bsd-simplified_316.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_316.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_317.RULE b/src/licensedcode/data/rules/bsd-simplified_317.RULE index 310e38ad1c0..8690cea1b73 100644 --- a/src/licensedcode/data/rules/bsd-simplified_317.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_317.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + released under the "Simplified BSD License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_317.yml b/src/licensedcode/data/rules/bsd-simplified_317.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_32.RULE b/src/licensedcode/data/rules/bsd-simplified_32.RULE index 953185929bc..514e4cad430 100644 --- a/src/licensedcode/data/rules/bsd-simplified_32.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_32.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -16,4 +21,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_32.yml b/src/licensedcode/data/rules/bsd-simplified_32.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_32.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_32_1.RULE b/src/licensedcode/data/rules/bsd-simplified_32_1.RULE index a6d31d46deb..5554b8e4595 100644 --- a/src/licensedcode/data/rules/bsd-simplified_32_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_32_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + BSD License Redistribution and use in source and binary forms, with or without @@ -20,4 +26,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_32_1.yml b/src/licensedcode/data/rules/bsd-simplified_32_1.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_32_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_32_3.RULE b/src/licensedcode/data/rules/bsd-simplified_32_3.RULE index 1189dd64821..92fa590b0a4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_32_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_32_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + BSD license Redistribution and use in source and binary forms, with or without @@ -18,4 +24,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_32_3.yml b/src/licensedcode/data/rules/bsd-simplified_32_3.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_32_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_32_4.RULE b/src/licensedcode/data/rules/bsd-simplified_32_4.RULE index 267adc74e63..b0e68d013cf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_32_4.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_32_4.RULE @@ -1,4 +1,9 @@ +--- +license_expression: bsd-simplified +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. -THIS SOFTWARE IS PROVIDED BY APPLE INC. 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 INC. 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. +THIS SOFTWARE IS PROVIDED BY APPLE INC. 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 INC. 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-simplified_32_4.yml b/src/licensedcode/data/rules/bsd-simplified_32_4.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_32_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_33.RULE b/src/licensedcode/data/rules/bsd-simplified_33.RULE index f3e4daf6ab4..b6b783b2fc8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_33.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_33.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -21,4 +26,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_33.yml b/src/licensedcode/data/rules/bsd-simplified_33.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_34.RULE b/src/licensedcode/data/rules/bsd-simplified_34.RULE index a289ae2f817..66c01ada222 100644 --- a/src/licensedcode/data/rules/bsd-simplified_34.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_34.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +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_34.yml b/src/licensedcode/data/rules/bsd-simplified_34.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_35.RULE b/src/licensedcode/data/rules/bsd-simplified_35.RULE index 2cade5158ac..62eb0cb615a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_35.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_35.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +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_35.yml b/src/licensedcode/data/rules/bsd-simplified_35.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_35.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_36.RULE b/src/licensedcode/data/rules/bsd-simplified_36.RULE index 9ec68f38b71..42efe352b15 100644 --- a/src/licensedcode/data/rules/bsd-simplified_36.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_36.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS 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_36.yml b/src/licensedcode/data/rules/bsd-simplified_36.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_37.RULE b/src/licensedcode/data/rules/bsd-simplified_37.RULE index ea70365849b..99b4054226b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_37.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_37.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -18,4 +23,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 OFTHIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +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_37.yml b/src/licensedcode/data/rules/bsd-simplified_37.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_38.RULE b/src/licensedcode/data/rules/bsd-simplified_38.RULE index 7c5808d58c7..a8debd8fda3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_38.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +notes: bsd simplified variant +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,4 +23,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_38.yml b/src/licensedcode/data/rules/bsd-simplified_38.yml deleted file mode 100644 index 5fb7bc08e86..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -notes: bsd simplified variant diff --git a/src/licensedcode/data/rules/bsd-simplified_39.RULE b/src/licensedcode/data/rules/bsd-simplified_39.RULE index dbdc321ac39..b56dd2bf158 100644 --- a/src/licensedcode/data/rules/bsd-simplified_39.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_39.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + Licensed under the BSD 2-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_39.yml b/src/licensedcode/data/rules/bsd-simplified_39.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_4.RULE b/src/licensedcode/data/rules/bsd-simplified_4.RULE index 596bf8bf723..fe7d7baab9d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_4.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/BSD-2-Clause-NetBSD +--- + http://spdx.org/licenses/BSD-2-Clause-NetBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_4.yml b/src/licensedcode/data/rules/bsd-simplified_4.yml deleted file mode 100644 index b2108e4f5b0..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/BSD-2-Clause-NetBSD diff --git a/src/licensedcode/data/rules/bsd-simplified_40.RULE b/src/licensedcode/data/rules/bsd-simplified_40.RULE index 5e81bc04efb..faf87e00bd1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_40.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_40.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -19,4 +24,4 @@ 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. +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_40.yml b/src/licensedcode/data/rules/bsd-simplified_40.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_41.RULE b/src/licensedcode/data/rules/bsd-simplified_41.RULE index a3281d946b9..2b029bfb79e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_41.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_41.RULE @@ -1,2 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +--- + The TRE regular expression implementation is Copyright and licensed -under a 2-clause BSD license (license text in the source files). \ No newline at end of file +under a 2-clause BSD license (license text in the source files). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_41.yml b/src/licensedcode/data/rules/bsd-simplified_41.yml deleted file mode 100644 index 8c5b2fb9e67..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_41.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_42.RULE b/src/licensedcode/data/rules/bsd-simplified_42.RULE index 5759039af84..2c5d955ff7c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_42.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_42.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + and is licensed under a two-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_42.yml b/src/licensedcode/data/rules/bsd-simplified_42.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_43.RULE b/src/licensedcode/data/rules/bsd-simplified_43.RULE index 0a40708010f..8aa5c6dbd16 100644 --- a/src/licensedcode/data/rules/bsd-simplified_43.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_43.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +notes: openib +--- + BSD license Redistribution and use in source and binary forms, with or without @@ -23,4 +30,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_43.yml b/src/licensedcode/data/rules/bsd-simplified_43.yml deleted file mode 100644 index 3b36d081844..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_43.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 -notes: openib diff --git a/src/licensedcode/data/rules/bsd-simplified_44.RULE b/src/licensedcode/data/rules/bsd-simplified_44.RULE index 11a7320b565..b86f9c9dcb7 100644 --- a/src/licensedcode/data/rules/bsd-simplified_44.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_44.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +notes: openib +--- + OpenIB.org BSD license (FreeBSD Variant) Redistribution and use in source and binary forms, with or without @@ -19,4 +26,4 @@ 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. +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_44.yml b/src/licensedcode/data/rules/bsd-simplified_44.yml deleted file mode 100644 index 3b36d081844..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_44.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 -notes: openib diff --git a/src/licensedcode/data/rules/bsd-simplified_45.RULE b/src/licensedcode/data/rules/bsd-simplified_45.RULE index e7cbd8fc4b9..02d1774a081 100644 --- a/src/licensedcode/data/rules/bsd-simplified_45.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_45.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -19,4 +24,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_45.yml b/src/licensedcode/data/rules/bsd-simplified_45.yml deleted file mode 100644 index 8c5b2fb9e67..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_46.RULE b/src/licensedcode/data/rules/bsd-simplified_46.RULE index 14c21827431..77072c8b950 100644 --- a/src/licensedcode/data/rules/bsd-simplified_46.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_46.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + is licensed under the BSD 2-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_46.yml b/src/licensedcode/data/rules/bsd-simplified_46.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_47.RULE b/src/licensedcode/data/rules/bsd-simplified_47.RULE index d2e5ce54a3c..e8a71273583 100644 --- a/src/licensedcode/data/rules/bsd-simplified_47.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_47.RULE @@ -1 +1,9 @@ - [BSD 2 License](http://opensource.org/licenses/BSD-2-Clause) +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/BSD-2-Clause +--- + + [BSD 2 License](http://opensource.org/licenses/BSD-2-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_47.yml b/src/licensedcode/data/rules/bsd-simplified_47.yml deleted file mode 100644 index b898775a92a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_48.RULE b/src/licensedcode/data/rules/bsd-simplified_48.RULE index 4b9af5b639d..0496f97de77 100644 --- a/src/licensedcode/data/rules/bsd-simplified_48.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_48.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/bsd-2-clause +--- + License: [`bsd-2-clause`](http://choosealicense.com/licenses/bsd-2-clause/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_48.yml b/src/licensedcode/data/rules/bsd-simplified_48.yml deleted file mode 100644 index cfb7392bcdc..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/bsd-2-clause diff --git a/src/licensedcode/data/rules/bsd-simplified_49.RULE b/src/licensedcode/data/rules/bsd-simplified_49.RULE index 74914ac83d6..e3e72237c36 100644 --- a/src/licensedcode/data/rules/bsd-simplified_49.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_49.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + ## License Code is under the [BSD 2-clause "Simplified" License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_49.yml b/src/licensedcode/data/rules/bsd-simplified_49.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_5.RULE b/src/licensedcode/data/rules/bsd-simplified_5.RULE index 34075e4660b..e05c0630545 100644 --- a/src/licensedcode/data/rules/bsd-simplified_5.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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 @@ -17,4 +22,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_5.yml b/src/licensedcode/data/rules/bsd-simplified_5.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_50.RULE b/src/licensedcode/data/rules/bsd-simplified_50.RULE index 2d0ad111a3e..7ab8666256d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_50.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_50.RULE @@ -1 +1,7 @@ -Licence BSD-2-Clause +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + +Licence BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_50.yml b/src/licensedcode/data/rules/bsd-simplified_50.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_51.RULE b/src/licensedcode/data/rules/bsd-simplified_51.RULE index d9c2f4d0347..52ad22293bc 100644 --- a/src/licensedcode/data/rules/bsd-simplified_51.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_51.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + is released under the [BSD 2-Clause license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_51.yml b/src/licensedcode/data/rules/bsd-simplified_51.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_52.RULE b/src/licensedcode/data/rules/bsd-simplified_52.RULE index fd045126295..abe0d75dd5e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_52.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_52.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: diff --git a/src/licensedcode/data/rules/bsd-simplified_52.yml b/src/licensedcode/data/rules/bsd-simplified_52.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_52.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_53.RULE b/src/licensedcode/data/rules/bsd-simplified_53.RULE index a41715baaf9..909800ccbb1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_53.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_53.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + License: BSD-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_53.yml b/src/licensedcode/data/rules/bsd-simplified_53.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_54.RULE b/src/licensedcode/data/rules/bsd-simplified_54.RULE index c9d0c5ed33b..b671590ea54 100644 --- a/src/licensedcode/data/rules/bsd-simplified_54.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_54.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_54.yml b/src/licensedcode/data/rules/bsd-simplified_54.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_54.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_55.RULE b/src/licensedcode/data/rules/bsd-simplified_55.RULE index bbcc56fafe2..b90633565bd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_55.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_55.RULE @@ -1,4 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +--- + The libfdt source code is disjunctively dual licensed (GPL-2.0+ OR BSD-2-Clause). It is used by this project under the terms of the BSD-2-Clause license. Any contributions to this code must be made under -the terms of both licenses. +the terms of both licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_55.yml b/src/licensedcode/data/rules/bsd-simplified_55.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_55.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_56.RULE b/src/licensedcode/data/rules/bsd-simplified_56.RULE index bb081fee2ca..b754cd5c460 100644 --- a/src/licensedcode/data/rules/bsd-simplified_56.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_56.RULE @@ -1 +1,7 @@ -The module is licensed under 2-clause BSD license. +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + +The module is licensed under 2-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_56.yml b/src/licensedcode/data/rules/bsd-simplified_56.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_57.RULE b/src/licensedcode/data/rules/bsd-simplified_57.RULE index 9b25adf0ad5..d6665b48219 100644 --- a/src/licensedcode/data/rules/bsd-simplified_57.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_57.RULE @@ -1 +1,7 @@ -license: BSC-2-Clause +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 80 +--- + +license: BSC-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_57.yml b/src/licensedcode/data/rules/bsd-simplified_57.yml deleted file mode 100644 index da998063da2..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/bsd-simplified_58.RULE b/src/licensedcode/data/rules/bsd-simplified_58.RULE index 70c18287564..5a0060a5aab 100644 --- a/src/licensedcode/data/rules/bsd-simplified_58.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_58.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +referenced_filenames: + - LICENSE_BSD2.txt +--- + * This software may be distributed and modified according to the terms of * the BSD 2-Clause license. Note that NO WARRANTY is provided. - * See "LICENSE_BSD2.txt" for details. + * See "LICENSE_BSD2.txt" for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_58.yml b/src/licensedcode/data/rules/bsd-simplified_58.yml deleted file mode 100644 index 58a08197cab..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_58.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -referenced_filenames: - - LICENSE_BSD2.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_59.RULE b/src/licensedcode/data/rules/bsd-simplified_59.RULE index 48f6314e32e..dd6276ee878 100644 --- a/src/licensedcode/data/rules/bsd-simplified_59.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_59.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License +--- + Licensed under the BSD 2-Clause License (the "License"). See License in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_59.yml b/src/licensedcode/data/rules/bsd-simplified_59.yml deleted file mode 100644 index c8ed294a656..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License diff --git a/src/licensedcode/data/rules/bsd-simplified_6.RULE b/src/licensedcode/data/rules/bsd-simplified_6.RULE index 0ca685e38b9..c409c17e272 100644 --- a/src/licensedcode/data/rules/bsd-simplified_6.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_6.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: This license text is really a template usage of bsd-simplified (BSD-2-Clause). +ignorable_urls: + - http://www.netbsd.org/about/redistribution.html +--- + http://www.netbsd.org/about/redistribution.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_6.yml b/src/licensedcode/data/rules/bsd-simplified_6.yml deleted file mode 100644 index e2cfa1e2fb3..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: This license text is really a template usage of bsd-simplified (BSD-2-Clause). -ignorable_urls: - - http://www.netbsd.org/about/redistribution.html diff --git a/src/licensedcode/data/rules/bsd-simplified_60.RULE b/src/licensedcode/data/rules/bsd-simplified_60.RULE index 205ae3fbf67..8b224411846 100644 --- a/src/licensedcode/data/rules/bsd-simplified_60.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_60.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + // Licensed under the BSD 2-Clause License. // See LICENSE.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_60.yml b/src/licensedcode/data/rules/bsd-simplified_60.yml deleted file mode 100644 index ed40b8ba5f1..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_61.RULE b/src/licensedcode/data/rules/bsd-simplified_61.RULE index 60300772667..1fc5bf0f17b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_61.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_61.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // Licensed under the BSD 2-Clause License. // See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_61.yml b/src/licensedcode/data/rules/bsd-simplified_61.yml deleted file mode 100644 index 45a848cb043..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_62.RULE b/src/licensedcode/data/rules/bsd-simplified_62.RULE index 7e31b521052..e6c9086fe79 100644 --- a/src/licensedcode/data/rules/bsd-simplified_62.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_62.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 100 +--- + Redistribution and use is allowed according to the terms of the 2-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_62.yml b/src/licensedcode/data/rules/bsd-simplified_62.yml deleted file mode 100644 index 67d99f838ff..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_63.RULE b/src/licensedcode/data/rules/bsd-simplified_63.RULE index e0a81a659ec..76fb428321b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_63.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_63.RULE @@ -1 +1,7 @@ -2-clause BSD License +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + +2-clause BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_63.yml b/src/licensedcode/data/rules/bsd-simplified_63.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_64.RULE b/src/licensedcode/data/rules/bsd-simplified_64.RULE index 8c521e5df36..37df8c723d6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_64.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_64.RULE @@ -1 +1,7 @@ -licensed under 2-clause BSD License is available at: +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + +licensed under 2-clause BSD License is available at: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_64.yml b/src/licensedcode/data/rules/bsd-simplified_64.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_65.RULE b/src/licensedcode/data/rules/bsd-simplified_65.RULE index 03b88ef4771..1b5d1fe5f29 100644 --- a/src/licensedcode/data/rules/bsd-simplified_65.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_65.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted providing that the following conditions are met: @@ -17,4 +22,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_65.yml b/src/licensedcode/data/rules/bsd-simplified_65.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_65.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_66.RULE b/src/licensedcode/data/rules/bsd-simplified_66.RULE index 024658f96d8..f04500dd89c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_66.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_66.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + is now licensed under the New BSD License. Redistribution and use in source and binary forms, with or without @@ -20,4 +26,4 @@ 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. +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_66.yml b/src/licensedcode/data/rules/bsd-simplified_66.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_67.RULE b/src/licensedcode/data/rules/bsd-simplified_67.RULE index f2cbac747dd..fa4e1e9d83f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_67.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_67.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + is licensed under the BSD 2-clause licence: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_67.yml b/src/licensedcode/data/rules/bsd-simplified_67.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_68.RULE b/src/licensedcode/data/rules/bsd-simplified_68.RULE index d4ff9b284e9..eed35a43f88 100644 --- a/src/licensedcode/data/rules/bsd-simplified_68.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_68.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -18,4 +23,4 @@ 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. +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_68.yml b/src/licensedcode/data/rules/bsd-simplified_68.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_68.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_69.RULE b/src/licensedcode/data/rules/bsd-simplified_69.RULE index 42a28c9786e..52093816e34 100644 --- a/src/licensedcode/data/rules/bsd-simplified_69.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_69.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + licensed under the BSD 2-clause licence: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_69.yml b/src/licensedcode/data/rules/bsd-simplified_69.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_7.RULE b/src/licensedcode/data/rules/bsd-simplified_7.RULE index 30328d4b313..6452e4cb66e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_7.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_7.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ### License -This project is licensed under a Simplified BSD license. Please read the [LICENSE file][license]. +This project is licensed under a Simplified BSD license. Please read the [LICENSE file][license]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_7.yml b/src/licensedcode/data/rules/bsd-simplified_7.yml deleted file mode 100644 index 45a848cb043..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_70.RULE b/src/licensedcode/data/rules/bsd-simplified_70.RULE index cb2ff3c065f..9ae3ded05d0 100644 --- a/src/licensedcode/data/rules/bsd-simplified_70.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_70.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -20,4 +25,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_70.yml b/src/licensedcode/data/rules/bsd-simplified_70.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_70.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_71.RULE b/src/licensedcode/data/rules/bsd-simplified_71.RULE index 193601bc8b2..3c373a1aabc 100644 --- a/src/licensedcode/data/rules/bsd-simplified_71.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_71.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +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_71.yml b/src/licensedcode/data/rules/bsd-simplified_71.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_71.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_72.RULE b/src/licensedcode/data/rules/bsd-simplified_72.RULE index 4ee31638602..40ab34a66ea 100644 --- a/src/licensedcode/data/rules/bsd-simplified_72.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_72.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + the BSD 2-clause licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_72.yml b/src/licensedcode/data/rules/bsd-simplified_72.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_73.RULE b/src/licensedcode/data/rules/bsd-simplified_73.RULE index 73bf9746aea..fa3a40d15bc 100644 --- a/src/licensedcode/data/rules/bsd-simplified_73.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_73.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This file is licensed under the 2-Clause BSD license (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_73.yml b/src/licensedcode/data/rules/bsd-simplified_73.yml deleted file mode 100644 index ed40b8ba5f1..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_74.RULE b/src/licensedcode/data/rules/bsd-simplified_74.RULE index b3020757526..6683f037db8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_74.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_74.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17,4 +23,4 @@ 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. +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_74.yml b/src/licensedcode/data/rules/bsd-simplified_74.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_75.RULE b/src/licensedcode/data/rules/bsd-simplified_75.RULE index 62dbf0609eb..d6363c01164 100644 --- a/src/licensedcode/data/rules/bsd-simplified_75.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_75.RULE @@ -1 +1,7 @@ -This file is licensed under the 2-Clause BSD license \ No newline at end of file +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + +This file is licensed under the 2-Clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_75.yml b/src/licensedcode/data/rules/bsd-simplified_75.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_76.RULE b/src/licensedcode/data/rules/bsd-simplified_76.RULE index 41710c74107..06691c1a6f5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_76.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_76.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + ** License is released under the BSD license: @@ -26,4 +32,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_76.yml b/src/licensedcode/data/rules/bsd-simplified_76.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_77.RULE b/src/licensedcode/data/rules/bsd-simplified_77.RULE index af657007946..766456bb46f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_77.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_77.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +--- + License: 2-clause BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_77.yml b/src/licensedcode/data/rules/bsd-simplified_77.yml deleted file mode 100644 index 24d34a714ca..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_78.RULE b/src/licensedcode/data/rules/bsd-simplified_78.RULE index f44034835ea..9ab86243f61 100644 --- a/src/licensedcode/data/rules/bsd-simplified_78.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_78.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: diff --git a/src/licensedcode/data/rules/bsd-simplified_78.yml b/src/licensedcode/data/rules/bsd-simplified_78.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_78.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_79.RULE b/src/licensedcode/data/rules/bsd-simplified_79.RULE index 1c151b83abb..68fbcfb8c1d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_79.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_79.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-2-Clause +--- + License: BSD 2-Clause License (https://opensource.org/licenses/BSD-2-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_79.yml b/src/licensedcode/data/rules/bsd-simplified_79.yml deleted file mode 100644 index fc857929267..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_8.RULE b/src/licensedcode/data/rules/bsd-simplified_8.RULE index 96e11d3fb9e..e5dbf8e68b1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_8.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: diff --git a/src/licensedcode/data/rules/bsd-simplified_8.yml b/src/licensedcode/data/rules/bsd-simplified_8.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_80.RULE b/src/licensedcode/data/rules/bsd-simplified_80.RULE index 5c488838a33..b69c3fb2049 100644 --- a/src/licensedcode/data/rules/bsd-simplified_80.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_80.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://javolution.org/LICENSE.txt +--- + License: BSD License (http://javolution.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_80.yml b/src/licensedcode/data/rules/bsd-simplified_80.yml deleted file mode 100644 index 0a59db18df7..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://javolution.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_81.RULE b/src/licensedcode/data/rules/bsd-simplified_81.RULE index 53d6388eb17..8add7c40ee2 100644 --- a/src/licensedcode/data/rules/bsd-simplified_81.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_81.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php +--- + License: The BSD 2-Clause License (http://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_81.yml b/src/licensedcode/data/rules/bsd-simplified_81.yml deleted file mode 100644 index a9ae736d579..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_82.RULE b/src/licensedcode/data/rules/bsd-simplified_82.RULE index 2882b049cc1..f4804448afb 100644 --- a/src/licensedcode/data/rules/bsd-simplified_82.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_82.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/BSD-2-Clause +--- + https://opensource.org/licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_82.yml b/src/licensedcode/data/rules/bsd-simplified_82.yml deleted file mode 100644 index 46f3b130466..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/BSD-2-Clause diff --git a/src/licensedcode/data/rules/bsd-simplified_83.RULE b/src/licensedcode/data/rules/bsd-simplified_83.RULE index d015da8c40c..cc1ece71b42 100644 --- a/src/licensedcode/data/rules/bsd-simplified_83.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_83.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD 2-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_83.yml b/src/licensedcode/data/rules/bsd-simplified_83.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_84.RULE b/src/licensedcode/data/rules/bsd-simplified_84.RULE index f89576d223b..1293884446c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_84.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_84.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + The BSD 2-Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_84.yml b/src/licensedcode/data/rules/bsd-simplified_84.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_85.RULE b/src/licensedcode/data/rules/bsd-simplified_85.RULE index 90cacaaf825..643ae5ac14e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_85.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_85.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + BSD2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_85.yml b/src/licensedcode/data/rules/bsd-simplified_85.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_86.RULE b/src/licensedcode/data/rules/bsd-simplified_86.RULE index f19e24a15c4..32588b66d12 100644 --- a/src/licensedcode/data/rules/bsd-simplified_86.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_86.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + License: BSD2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_86.yml b/src/licensedcode/data/rules/bsd-simplified_86.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_87.RULE b/src/licensedcode/data/rules/bsd-simplified_87.RULE index daf52a0fcfd..94083aef30d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_87.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_87.RULE @@ -1,2 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +--- + Remaining components of the software are provided under a standard 2-term BSD licence with the following names as copyright holders: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_87.yml b/src/licensedcode/data/rules/bsd-simplified_87.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_87.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_88.RULE b/src/licensedcode/data/rules/bsd-simplified_88.RULE index ee97d1aad1b..5d86df51f8d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_88.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_88.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + provided under a standard 2-term BSD licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_88.yml b/src/licensedcode/data/rules/bsd-simplified_88.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_89.RULE b/src/licensedcode/data/rules/bsd-simplified_89.RULE index fc6fd7c53d1..43c58535e54 100644 --- a/src/licensedcode/data/rules/bsd-simplified_89.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_89.RULE @@ -1 +1,7 @@ -BSD BSD-2-Clause +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + +BSD BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_89.yml b/src/licensedcode/data/rules/bsd-simplified_89.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_9.RULE b/src/licensedcode/data/rules/bsd-simplified_9.RULE index 590d203b5f0..0f7f46b71ee 100644 --- a/src/licensedcode/data/rules/bsd-simplified_9.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 96 +--- + The BSD 2-Clause license is as follows: "Redistribution and use in source and binary forms, with or @@ -25,4 +31,4 @@ The BSD 2-Clause license is as follows: 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." + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_9.yml b/src/licensedcode/data/rules/bsd-simplified_9.yml deleted file mode 100644 index 84b7878e491..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 96 diff --git a/src/licensedcode/data/rules/bsd-simplified_90.RULE b/src/licensedcode/data/rules/bsd-simplified_90.RULE index 3ca4a866f7b..16b70d89531 100644 --- a/src/licensedcode/data/rules/bsd-simplified_90.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_90.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 100 +--- + This -- and only this -- header file may also be distributed under the terms of the BSD Licence as follows: diff --git a/src/licensedcode/data/rules/bsd-simplified_90.yml b/src/licensedcode/data/rules/bsd-simplified_90.yml deleted file mode 100644 index 96878907897..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_91.RULE b/src/licensedcode/data/rules/bsd-simplified_91.RULE index f2f183781f4..b09d56876ac 100644 --- a/src/licensedcode/data/rules/bsd-simplified_91.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_91.RULE @@ -1 +1,9 @@ -License 2 clause BSD license. See [LICENSE] +--- +license_expression: bsd-simplified +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +License 2 clause BSD license. See [LICENSE] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_91.yml b/src/licensedcode/data/rules/bsd-simplified_91.yml deleted file mode 100644 index b3389feee06..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_92.RULE b/src/licensedcode/data/rules/bsd-simplified_92.RULE index e9eda210550..412fc0f8af9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_92.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_92.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 100 +--- + License agreement @@ -21,4 +27,4 @@ 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. +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_92.yml b/src/licensedcode/data/rules/bsd-simplified_92.yml deleted file mode 100644 index 96878907897..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_93.RULE b/src/licensedcode/data/rules/bsd-simplified_93.RULE index c34cd5c3251..076415012bf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_93.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_93.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + BSD 2-Clause licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_93.yml b/src/licensedcode/data/rules/bsd-simplified_93.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_93.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_94.RULE b/src/licensedcode/data/rules/bsd-simplified_94.RULE index 7363303ada6..708c512ed30 100644 --- a/src/licensedcode/data/rules/bsd-simplified_94.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_94.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + #### License All source material within __lib__ directory are BSD 2-Clause licensed. diff --git a/src/licensedcode/data/rules/bsd-simplified_94.yml b/src/licensedcode/data/rules/bsd-simplified_94.yml deleted file mode 100644 index 45a848cb043..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_95.RULE b/src/licensedcode/data/rules/bsd-simplified_95.RULE index a08f47cb18a..11b990de047 100644 --- a/src/licensedcode/data/rules/bsd-simplified_95.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_95.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 95 +--- + # BSD license # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: @@ -18,4 +24,4 @@ # 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. +# 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_95.yml b/src/licensedcode/data/rules/bsd-simplified_95.yml deleted file mode 100644 index 70fd0d2e154..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-simplified_96.RULE b/src/licensedcode/data/rules/bsd-simplified_96.RULE index 5c4e2fce06c..05e13c532a0 100644 --- a/src/licensedcode/data/rules/bsd-simplified_96.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_96.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +--- + provided within "lz4.h" (BSD license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_96.yml b/src/licensedcode/data/rules/bsd-simplified_96.yml deleted file mode 100644 index 144c3048f33..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_96.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_97.RULE b/src/licensedcode/data/rules/bsd-simplified_97.RULE index 7c9b409033a..a7a3f29a683 100644 --- a/src/licensedcode/data/rules/bsd-simplified_97.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_97.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_97.yml b/src/licensedcode/data/rules/bsd-simplified_97.yml deleted file mode 100644 index a4c8e7953ae..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_98.RULE b/src/licensedcode/data/rules/bsd-simplified_98.RULE index 89c4c3ff5e6..c672f5ebcad 100644 --- a/src/licensedcode/data/rules/bsd-simplified_98.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_98.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/bsd +--- + https://choosealicense.com/licenses/bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_98.yml b/src/licensedcode/data/rules/bsd-simplified_98.yml deleted file mode 100644 index e53531f967a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/bsd diff --git a/src/licensedcode/data/rules/bsd-simplified_99.RULE b/src/licensedcode/data/rules/bsd-simplified_99.RULE index 88d58f5d6ec..b94d407a25c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_99.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_99.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +relevance: 100 +--- + library is provided as open-source software using BSD 2-Clause license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_99.yml b/src/licensedcode/data/rules/bsd-simplified_99.yml deleted file mode 100644 index d7f3625b73c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_1.RULE index ea5d6cb94e0..642dd75cc43 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified AND bsd-new +is_license_notice: yes +minimum_coverage: 96 +notes: seen in https://community.kde.org/Policies/Licensing_Policy/Draft +--- + BSD BSD-2-Clause @@ -25,5 +32,4 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. A third requirement is sometimes included: "3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission." -The advertising clause requiring mention in adverts must never be included. The Facebook patent grant must never be included. - +The advertising clause requiring mention in adverts must never be included. The Facebook patent grant must never be included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_1.yml deleted file mode 100644 index fcf5ca2e480..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND bsd-new -is_license_notice: yes -minimum_coverage: 96 -notes: seen in https://community.kde.org/Policies/Licensing_Policy/Draft diff --git a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_2.RULE b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_2.RULE index d3c4f2bf3fb..b201eb8ca6f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified AND bsd-new +is_license_notice: yes +minimum_coverage: 96 +notes: seen in https://community.kde.org/Policies/Licensing_Policy/Draft +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +28,4 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. A third requirement is sometimes included: "3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission." -The advertising clause requiring mention in adverts must never be included. The Facebook patent grant must never be included. +The advertising clause requiring mention in adverts must never be included. The Facebook patent grant must never be included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_2.yml b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_2.yml deleted file mode 100644 index fcf5ca2e480..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND bsd-new -is_license_notice: yes -minimum_coverage: 96 -notes: seen in https://community.kde.org/Policies/Licensing_Policy/Draft diff --git a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_and_unknown-license-reference_nuget_url_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_and_unknown-license-reference_nuget_url_1.RULE index d1a9a87633e..6f3dff3403d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_and_unknown-license-reference_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_and_unknown-license-reference_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified AND bsd-new AND unknown-license-reference +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/editorconfig/editorconfig-core/master/LICENSE +--- + https://raw.github.com/editorconfig/editorconfig-core/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_and_unknown-license-reference_nuget_url_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_and_unknown-license-reference_nuget_url_1.yml deleted file mode 100644 index c65cfb10d33..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_and_unknown-license-reference_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified AND bsd-new AND unknown-license-reference -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/editorconfig/editorconfig-core/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_nuget_url_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_nuget_url_1.RULE index 9eceac75457..500b567d7a9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified AND bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/brucedog/U2F_Core/blob/master/LICENSE +--- + https://github.com/brucedog/U2F_Core/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_nuget_url_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_nuget_url_1.yml deleted file mode 100644 index 2c79e9c8598..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_bsd-new_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified AND bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/brucedog/U2F_Core/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_1.RULE index 1bc4272e8a7..5741fa7bee1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified AND gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING + - LICENSE +--- + This repository uses 2 different licenses : - all files in the `lib` directory use a {{BSD 2-Clause}} license - all other files use a {{GPLv2}} license, unless explicitly stated otherwise diff --git a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_1.yml deleted file mode 100644 index 86c54cea756..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified AND gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING - - LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_2.RULE b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_2.RULE index 7a68f50469f..68904a83409 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified AND gpl-2.0 +is_license_notice: yes +relevance: 90 +minimum_coverage: 99 +--- + - The license of LZ4 library is BSD. - The license of xxHash library is BSD. - The license of this source file is GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_2.yml b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_2.yml deleted file mode 100644 index 11fa43c263e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND gpl-2.0 -is_license_notice: yes -relevance: 90 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_3.RULE b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_3.RULE index a01a574134e..7d9ebc332ce 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified AND gpl-2.0 +is_license_notice: yes +relevance: 90 +minimum_coverage: 99 +--- + The license of LZ4 library is BSD. The license of xxHash library is BSD. - The license of this compression CLI program is GPLv2. + The license of this compression CLI program is GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_3.yml b/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_3.yml deleted file mode 100644 index 11fa43c263e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_gpl-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND gpl-2.0 -is_license_notice: yes -relevance: 90 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_1.RULE index 91465cb968a..db747733b1b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_1.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified AND imlib2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + BSD-2-Clause AND Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_1.yml deleted file mode 100644 index d7fcda03b12..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND imlib2 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_2.RULE b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_2.RULE index 164b2258d70..5756d4624cd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_2.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified AND imlib2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + LicenseId: BSD-2-Clause AND Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_2.yml b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_2.yml deleted file mode 100644 index f11ce077243..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND imlib2 -is_license_tag: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_3.RULE b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_3.RULE index 7d3727db11d..eb2c0731a9d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_3.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified AND imlib2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + License: "BSD 2-clause Simplified License and Imlib2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_3.yml b/src/licensedcode/data/rules/bsd-simplified_and_imlib2_3.yml deleted file mode 100644 index f11ce077243..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_imlib2_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND imlib2 -is_license_tag: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_and_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_lgpl-2.0-plus_1.RULE index 58da077d107..c340f44c834 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_lgpl-2.0-plus_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-simplified AND lgpl-2.0-plus +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING.LIB +notes: seen in qtwebkit Qt_5.3.2/qtwebkit/Source/WebCore/platform/text/win/TextCodecWin.cpp + and the text is weirdly damaged combo of bsd and lgpl +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_and_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_lgpl-2.0-plus_1.yml deleted file mode 100644 index 00856f97932..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-simplified AND lgpl-2.0-plus -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING.LIB -notes: seen in qtwebkit Qt_5.3.2/qtwebkit/Source/WebCore/platform/text/win/TextCodecWin.cpp - and the text is weirdly damaged combo of bsd and lgpl diff --git a/src/licensedcode/data/rules/bsd-simplified_and_mpich_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_mpich_1.RULE index d2be08be811..0fa3e9d9258 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_mpich_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_mpich_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified AND mpich +is_license_text: yes +relevance: 99 +notes: https://github.com/Bcfg2/bcfg2/blob/master/LICENSE mpich part is truncated +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_and_mpich_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_mpich_1.yml deleted file mode 100644 index 6cef34bed7e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_mpich_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND mpich -is_license_text: yes -relevance: 99 -notes: https://github.com/Bcfg2/bcfg2/blob/master/LICENSE mpich part is truncated diff --git a/src/licensedcode/data/rules/bsd-simplified_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_proprietary-license_1.RULE index a338ebe905b..0f18d8a9734 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_proprietary-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + The copyright in this software is being made available under the BSD License, included below. This software may be subject to other third party and contributor rights, including patent rights, and no such rights are granted under this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_proprietary-license_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_proprietary-license_1.yml deleted file mode 100644 index a8b3196980c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_and_public-domain-disclaimer_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_public-domain-disclaimer_1.RULE index b8c40ed8aa6..cb55ad348ca 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_public-domain-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_public-domain-disclaimer_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified AND public-domain-disclaimer +is_license_notice: yes +relevance: 100 +--- + Licensed under the {{Gif89 Public Domain}} License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_public-domain-disclaimer_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_public-domain-disclaimer_1.yml deleted file mode 100644 index fc4d0e7eb19..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_public-domain-disclaimer_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified AND public-domain-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_and_unknown_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_unknown_1.RULE index 2842180ec7d..bcc4bd41ea8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_unknown_1.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-simplified AND unknown +is_license_notice: yes +relevance: 90 +notes: Seen in https://git.icod.de/dalu/i18n +--- + License modified BSD2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_unknown_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_unknown_1.yml deleted file mode 100644 index 51752570f1c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified AND unknown -is_license_notice: yes -relevance: 90 -notes: Seen in https://git.icod.de/dalu/i18n diff --git a/src/licensedcode/data/rules/bsd-simplified_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/bsd-simplified_and_warranty-disclaimer_1.RULE index e134c5f1d3b..5b9801ff21a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_and_warranty-disclaimer_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified AND warranty-disclaimer +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.clearsilver.net/license.hdf +--- + * This code is made available under the terms of the ClearSilver License. * http://www.clearsilver.net/license.hdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/bsd-simplified_and_warranty-disclaimer_1.yml deleted file mode 100644 index 3e169ba49da..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified AND warranty-disclaimer -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.clearsilver.net/license.hdf diff --git a/src/licensedcode/data/rules/bsd-simplified_botan.RULE b/src/licensedcode/data/rules/bsd-simplified_botan.RULE index 286f44041d9..353e6999dbf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_botan.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_botan.RULE @@ -1 +1,7 @@ -is released under the Simplified BSD License \ No newline at end of file +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + +is released under the Simplified BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_botan.yml b/src/licensedcode/data/rules/bsd-simplified_botan.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_botan.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_cryptix_1.RULE b/src/licensedcode/data/rules/bsd-simplified_cryptix_1.RULE index f3634a3943d..30921a4478a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_cryptix_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_cryptix_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +ignorable_urls: + - http://www.cryptix.org/ +--- + * Use, modification, copying and distribution of this softwareas is subject * the terms and conditions of the Cryptix General Licence. You should have * received a copy of the Cryptix General Licence along with this library; diff --git a/src/licensedcode/data/rules/bsd-simplified_cryptix_1.yml b/src/licensedcode/data/rules/bsd-simplified_cryptix_1.yml deleted file mode 100644 index 1a7bcb9ef78..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_cryptix_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -ignorable_urls: - - http://www.cryptix.org/ diff --git a/src/licensedcode/data/rules/bsd-simplified_cryptix_2.RULE b/src/licensedcode/data/rules/bsd-simplified_cryptix_2.RULE index cd8588a2bd9..acb4cf4e0f7 100644 --- a/src/licensedcode/data/rules/bsd-simplified_cryptix_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_cryptix_2.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 90 +--- + Cryptix General Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_cryptix_2.yml b/src/licensedcode/data/rules/bsd-simplified_cryptix_2.yml deleted file mode 100644 index cb1d860c756..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_cryptix_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-simplified_cryptix_3.RULE b/src/licensedcode/data/rules/bsd-simplified_cryptix_3.RULE index 96b0ea221d4..8ff280da142 100644 --- a/src/licensedcode/data/rules/bsd-simplified_cryptix_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_cryptix_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: diff --git a/src/licensedcode/data/rules/bsd-simplified_cryptix_3.yml b/src/licensedcode/data/rules/bsd-simplified_cryptix_3.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_cryptix_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_cryptix_4.RULE b/src/licensedcode/data/rules/bsd-simplified_cryptix_4.RULE index 51cd0d75559..191a73e5622 100644 --- a/src/licensedcode/data/rules/bsd-simplified_cryptix_4.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_cryptix_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +minimum_coverage: 100 +--- + Cryptix General Licence Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_cryptix_4.yml b/src/licensedcode/data/rules/bsd-simplified_cryptix_4.yml deleted file mode 100644 index 96878907897..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_cryptix_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils.RULE b/src/licensedcode/data/rules/bsd-simplified_docutils.RULE index 82e62ccf82c..0ad671b9e97 100644 --- a/src/licensedcode/data/rules/bsd-simplified_docutils.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_docutils.RULE @@ -1,2 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Released under the terms of the `2-Clause BSD license`_ - (`local copy `__). + (`local copy `__). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils.yml b/src/licensedcode/data/rules/bsd-simplified_docutils.yml deleted file mode 100644 index a20608d2f89..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_docutils.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils2.RULE b/src/licensedcode/data/rules/bsd-simplified_docutils2.RULE index 4fe3533e496..b4a1af0b75b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_docutils2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_docutils2.RULE @@ -1 +1,7 @@ -Released under the terms of the `2-Clause BSD license`_ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 100 +--- + +Released under the terms of the `2-Clause BSD license`_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils2.yml b/src/licensedcode/data/rules/bsd-simplified_docutils2.yml deleted file mode 100644 index e4601ea944d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_docutils2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils3.RULE b/src/licensedcode/data/rules/bsd-simplified_docutils3.RULE index 2bc41c723a5..527f498f9ab 100644 --- a/src/licensedcode/data/rules/bsd-simplified_docutils3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_docutils3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +--- + These files are part of , released under the `GNU General Public License`_ version 3 or later. The author relicensed them for under the terms of the `2-Clause BSD license`_ diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils3.yml b/src/licensedcode/data/rules/bsd-simplified_docutils3.yml deleted file mode 100644 index 8cdd42dfe38..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_docutils3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_hyphenated.RULE b/src/licensedcode/data/rules/bsd-simplified_hyphenated.RULE index f5dbc775683..6f292b9b91e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_hyphenated.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_hyphenated.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_text: yes +--- + i Redistribution and use in source and binary forms, with or without modifica- tion, are permitted provided that the following conditions are met: @@ -18,5 +23,4 @@ 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 OTH- ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. - +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_hyphenated.yml b/src/licensedcode/data/rules/bsd-simplified_hyphenated.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_hyphenated.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_hyphenated_or_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/bsd-simplified_hyphenated_or_gpl-2.0-plus.RULE index ce3aad7b7bf..f43eb73d983 100644 --- a/src/licensedcode/data/rules/bsd-simplified_hyphenated_or_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_hyphenated_or_gpl-2.0-plus.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified AND (bsd-simplified OR gpl-2.0-plus) +is_license_notice: yes +minimum_coverage: 99 +--- + Redistribution and use in source and binary forms, with or without modifica- tion, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_hyphenated_or_gpl-2.0-plus.yml b/src/licensedcode/data/rules/bsd-simplified_hyphenated_or_gpl-2.0-plus.yml deleted file mode 100644 index b01ac580e3a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_hyphenated_or_gpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified AND (bsd-simplified OR gpl-2.0-plus) -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/bsd-simplified_invert.RULE b/src/licensedcode/data/rules/bsd-simplified_invert.RULE index f0e40049fb0..f982f2dbb77 100644 --- a/src/licensedcode/data/rules/bsd-simplified_invert.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_invert.RULE @@ -1 +1,7 @@ -2-clause BSD licensed +--- +license_expression: bsd-simplified +is_license_notice: yes +relevance: 100 +--- + +2-clause BSD licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_invert.yml b/src/licensedcode/data/rules/bsd-simplified_invert.yml deleted file mode 100644 index 3b5338540a9..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_invert.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib.RULE b/src/licensedcode/data/rules/bsd-simplified_newlib.RULE index aaebeb8d9f2..ffb362baaae 100644 --- a/src/licensedcode/data/rules/bsd-simplified_newlib.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_newlib.RULE @@ -1,7 +1,14 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses +--- + This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the FreeBSD License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. A copy of this license is available at -http://www.opensource.org/licenses. +http://www.opensource.org/licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib.yml b/src/licensedcode/data/rules/bsd-simplified_newlib.yml deleted file mode 100644 index e67a5704bdb..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_newlib.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib2.RULE b/src/licensedcode/data/rules/bsd-simplified_newlib2.RULE index 0838c4c2ff4..12e43321705 100644 --- a/src/licensedcode/data/rules/bsd-simplified_newlib2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_newlib2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib2.yml b/src/licensedcode/data/rules/bsd-simplified_newlib2.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_newlib2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib3.RULE b/src/licensedcode/data/rules/bsd-simplified_newlib3.RULE index d39272e6de4..2b4241f28da 100644 --- a/src/licensedcode/data/rules/bsd-simplified_newlib3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_newlib3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib3.yml b/src/licensedcode/data/rules/bsd-simplified_newlib3.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_newlib3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib4.RULE b/src/licensedcode/data/rules/bsd-simplified_newlib4.RULE index 8113efabfa6..58adfb98cb2 100644 --- a/src/licensedcode/data/rules/bsd-simplified_newlib4.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_newlib4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib4.yml b/src/licensedcode/data/rules/bsd-simplified_newlib4.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_newlib4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib5.RULE b/src/licensedcode/data/rules/bsd-simplified_newlib5.RULE index 58a883ee304..e7f4b43f9b2 100644 --- a/src/licensedcode/data/rules/bsd-simplified_newlib5.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_newlib5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib5.yml b/src/licensedcode/data/rules/bsd-simplified_newlib5.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_newlib5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib6.RULE b/src/licensedcode/data/rules/bsd-simplified_newlib6.RULE index 5d64359a55b..132c6238388 100644 --- a/src/licensedcode/data/rules/bsd-simplified_newlib6.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_newlib6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-simplified +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: @@ -17,4 +22,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_newlib6.yml b/src/licensedcode/data/rules/bsd-simplified_newlib6.yml deleted file mode 100644 index 83b73859177..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_newlib6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-simplified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-simplified_nuget_url_1.RULE b/src/licensedcode/data/rules/bsd-simplified_nuget_url_1.RULE index ef1a16ee076..8969191c0bd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/roryf/RealEx.Payments/blob/master/license.txt +--- + https://github.com/roryf/RealEx.Payments/blob/master/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_nuget_url_1.yml b/src/licensedcode/data/rules/bsd-simplified_nuget_url_1.yml deleted file mode 100644 index 3b0931e076b..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/roryf/RealEx.Payments/blob/master/license.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_nuget_url_2.RULE b/src/licensedcode/data/rules/bsd-simplified_nuget_url_2.RULE index ad516c348c0..1bd531797f1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/SommerEngineering/OceanPDFSearchLib/blob/master/LICENSE +--- + https://github.com/SommerEngineering/OceanPDFSearchLib/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_nuget_url_2.yml b/src/licensedcode/data/rules/bsd-simplified_nuget_url_2.yml deleted file mode 100644 index 12f384771e8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/SommerEngineering/OceanPDFSearchLib/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/bsd-simplified_or_apache-2.0_1.RULE index b545aebd346..12b2248ea65 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified OR apache-2.0 +is_license_tag: yes +relevance: 100 +--- + __license__ = "BSD-2-Clause or Apache-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_apache-2.0_1.yml b/src/licensedcode/data/rules/bsd-simplified_or_apache-2.0_1.yml deleted file mode 100644 index c4845be6a36..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified OR apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_1.RULE index 1696d54d2bb..bed48ffc7ae 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +notes: bsd or GPL 2.0 or later, no hyphens +--- + Alternatively, the contents of this file may be used under the terms of the GNU General Public License ("GPL") version 2 or any later version, @@ -8,4 +14,4 @@ version of this file under the BSD license, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your version of this file under -either the BSD or the GPL. +either the BSD or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 15b00383389..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -notes: bsd or GPL 2.0 or later, no hyphens diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_2.RULE index 037962252c0..9d142073abe 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 85 +notes: Dual BSD and GPL with hyphenation +--- + Redistribution and use in source and binary forms, with or without modifica- tion , are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_2.yml deleted file mode 100644 index 67471191355..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 85 -notes: Dual BSD and GPL with hyphenation diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_3.RULE index eb9b560dbab..0e877c4b178 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_3.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +notes: bsd or GPL 2.0 or later, no hyphens +--- + (GPL-2.0+ OR BSD-2-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_3.yml deleted file mode 100644 index fb54bebcad3..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -notes: bsd or GPL 2.0 or later, no hyphens diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_4.RULE index 01f38cee325..2ecbe5ac973 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 85 +notes: From https://github.com/chango/hustle/blob/master/deps/liblzf/LICENSE +--- + Redistribution and use in source and binary forms, with or without modifica- tion, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_4.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_4.yml deleted file mode 100644 index 7762f937b8a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 85 -notes: From https://github.com/chango/hustle/blob/master/deps/liblzf/LICENSE diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_5.RULE index 9a2ba300318..8af19882a58 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-simplified OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Alternatively, the contents of this package may be used under the terms of the GNU General Public License ("GPL") version 2 or any later version, in which case the provisions of the GPL are diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_5.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_5.yml deleted file mode 100644 index f508da5eaf6..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_6.RULE index 9ac125520ce..956f5b51b64 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_6.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_6.yml deleted file mode 100644 index 72008388142..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_7.RULE index b421387cf6b..893f0b2eaed 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified OR gpl-2.0-plus +is_license_text: yes +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -36,4 +44,4 @@ this file under either the BSD or the GPL. On Debian systems, the complete text of the GNU General Public License - version 2 can be found in `/usr/share/common-licenses/GPL-2'. + version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_7.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_7.yml deleted file mode 100644 index eda0417aac5..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0-plus -is_license_text: yes -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_8.RULE index 04d8a64623a..ef8f5c282f8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified OR gpl-2.0-plus +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -36,4 +45,4 @@ this file under either the BSD or the GPL. On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 2 can be found in `/usr/share/common-licenses/GPL-2'. + version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_8.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_8.yml deleted file mode 100644 index 2d567034c6e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0-plus -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_9.RULE index 2a011876123..4a8518e7720 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-simplified OR gpl-2.0-plus +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -36,4 +45,4 @@ this file under either the BSD or the GPL. On Debian systems, the text of the GNU General Public License - version 2 can be found in `/usr/share/common-licenses/GPL-2'. + version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_9.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_9.yml deleted file mode 100644 index 2d567034c6e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0-plus_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0-plus -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0.RULE index ed157965be4..9848a65fba8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: openib +--- + This source code is distributed under a dual license of GPL v2.0 and OpenIB - BSD. + BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0.yml deleted file mode 100644 index f8122ec5c00..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: openib diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_1.RULE index 6b735fb2314..106ec93f1bf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 85 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + * BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_1.yml deleted file mode 100644 index 300d6611ae4..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 85 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_10.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_10.RULE index bfd38986397..30de6d58209 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPL +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_10.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_10.yml deleted file mode 100644 index 69366abbdba..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_11.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_11.RULE index 37f85fd70ad..646ab3a6030 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_11.RULE @@ -1,3 +1,15 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPL +ignorable_copyrights: + - Copyright (c) Intel Corporation +ignorable_holders: + - Intel Corporation +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_11.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_11.yml deleted file mode 100644 index b4e4deaa47d..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_11.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPL -ignorable_copyrights: - - Copyright (c) Intel Corporation -ignorable_holders: - - Intel Corporation diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_12.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_12.RULE index 0a792d3fbcc..f5664fd348f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_12.RULE @@ -1,3 +1,15 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPL +ignorable_copyrights: + - Copyright (c) 2008 - 2011 Intel Corporation +ignorable_holders: + - Intel Corporation +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_12.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_12.yml deleted file mode 100644 index 21ec2d763bd..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_12.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPL -ignorable_copyrights: - - Copyright (c) 2008 - 2011 Intel Corporation -ignorable_holders: - - Intel Corporation diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_13.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_13.RULE index aa8c7d47fd8..1ef25201ca9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_13.RULE @@ -1,3 +1,16 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPL +ignorable_copyrights: + - Copyright (c) 2008 - Intel Corporation + - Copyright (c) 2008 Intel Corporation +ignorable_holders: + - Intel Corporation +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_13.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_13.yml deleted file mode 100644 index 4ac137631ff..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_13.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPL -ignorable_copyrights: - - Copyright (c) 2008 - Intel Corporation - - Copyright (c) 2008 Intel Corporation -ignorable_holders: - - Intel Corporation diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_14.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_14.RULE index 3171c370ca3..eb7aafdd520 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_14.RULE @@ -1,3 +1,16 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPL +ignorable_copyrights: + - Copyright (c) 2008 - 2010 Intel Corporation + - Copyright (c) 2008 - 2011 Intel Corporation +ignorable_holders: + - Intel Corporation +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_14.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_14.yml deleted file mode 100644 index 42b81d0df5e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_14.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPL -ignorable_copyrights: - - Copyright (c) 2008 - 2010 Intel Corporation - - Copyright (c) 2008 - 2011 Intel Corporation -ignorable_holders: - - Intel Corporation diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_2.RULE index 8daed0da76c..f4428eb7b57 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -25,4 +33,4 @@ 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. + IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_2.yml deleted file mode 100644 index f83fb068088..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_3.RULE index f04765a9bcf..1260c6e5cb8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_3.RULE @@ -1,5 +1,13 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file COPYING in the main directory of this source tree, or the Broadcom - license below: + license below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_3.yml deleted file mode 100644 index 8179931d60c..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_5.RULE index 5a26e8d380c..ee27fc6473f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 85 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -26,4 +33,4 @@ OF SUCH DAMAGE. The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing -official policies, either expressed or implied, of +official policies, either expressed or implied, of \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_5.yml deleted file mode 100644 index 3ffada3b39b..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_6.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_6.RULE index 563fae4d06f..022918b66f1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_6.RULE @@ -1,4 +1,10 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +notes: Only see used with openib and libfabric +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the the {{BSD license or the GNU General Public License}} (GPL) Version -2, both included below. +2, both included below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_6.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_6.yml deleted file mode 100644 index 085c651289b..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -notes: Only see used with openib and libfabric diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_7.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_7.RULE index 3cc479b1e2e..81cf939fc60 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + SJCL is open. You can use, modify and redistribute it under a BSD license or under the GNU GPL, version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_7.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_7.yml deleted file mode 100644 index 9b793d7996a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_8.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_8.RULE index d49884928b0..9c84e1df9b0 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + Dual licensed under BSD license and GPLv2. Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_8.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_8.yml deleted file mode 100644 index 6a65491a744..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_9.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_9.RULE index 9a8a6e06aea..f8fce2db300 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_9.RULE @@ -1,6 +1,13 @@ +--- +license_expression: bsd-simplified OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 70 +notes: See in openib and libfabric +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the the {{BSD license or the GNU General Public License}} (GPL) Version 2, both included below. -Public License instead of this License. +Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_9.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_9.yml deleted file mode 100644 index 6618d60f5a8..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-2.0_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 70 -notes: See in openib and libfabric diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-simplified_or_gpl-3.0-plus_1.RULE index bb0ffdf2d2c..d3706c94694 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_gpl-3.0-plus_1.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-simplified OR gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + allow GPL or Less License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/bsd-simplified_or_gpl-3.0-plus_1.yml deleted file mode 100644 index 25f4749b3e1..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-simplified OR gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_1.RULE b/src/licensedcode/data/rules/bsd-simplified_or_ruby_1.RULE index 0553c54dcc6..b5d64d02c62 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_ruby_1.RULE @@ -1 +1,7 @@ -# Released under the same terms as Ruby +--- +license_expression: bsd-simplified OR ruby +is_license_notice: yes +relevance: 100 +--- + +# Released under the same terms as Ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_1.yml b/src/licensedcode/data/rules/bsd-simplified_or_ruby_1.yml deleted file mode 100644 index fd3a0aad31e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified OR ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_2.RULE b/src/licensedcode/data/rules/bsd-simplified_or_ruby_2.RULE index f94ab21901b..be0b9063bc3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_ruby_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified OR ruby +is_license_notice: yes +relevance: 100 +--- + is free software; you can redistribute it and/or # modify it under the terms of the ruby license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_2.yml b/src/licensedcode/data/rules/bsd-simplified_or_ruby_2.yml deleted file mode 100644 index fd3a0aad31e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified OR ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_3.RULE b/src/licensedcode/data/rules/bsd-simplified_or_ruby_3.RULE index c71bd017393..fbba45ab253 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_ruby_3.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified OR ruby +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.ruby-lang.org/en/LICENSE.txt +--- + is distributed under the same license as ruby. See http://www.ruby-lang.org/en/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_3.yml b/src/licensedcode/data/rules/bsd-simplified_or_ruby_3.yml deleted file mode 100644 index 6f1090c50e6..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified OR ruby -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.ruby-lang.org/en/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_4.RULE b/src/licensedcode/data/rules/bsd-simplified_or_ruby_4.RULE index 89ee204cc99..5170dbcdc2e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_4.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_ruby_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified OR ruby +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.ruby-lang.org/en/LICENSE.txt +--- + distributed under the same license as ruby. See http://www.ruby-lang.org/en/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_4.yml b/src/licensedcode/data/rules/bsd-simplified_or_ruby_4.yml deleted file mode 100644 index 6f1090c50e6..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified OR ruby -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.ruby-lang.org/en/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_5.RULE b/src/licensedcode/data/rules/bsd-simplified_or_ruby_5.RULE index 3b272ba4438..0763572002d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_5.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_ruby_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: bsd-simplified OR ruby +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or # modify it under the terms of the ruby license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_5.yml b/src/licensedcode/data/rules/bsd-simplified_or_ruby_5.yml deleted file mode 100644 index fd3a0aad31e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified OR ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_6.RULE b/src/licensedcode/data/rules/bsd-simplified_or_ruby_6.RULE index 83151f8d0e9..22f8ca15f27 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_6.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_ruby_6.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-simplified OR ruby +is_license_notice: yes +relevance: 100 +--- + distributed under the same license as ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_6.yml b/src/licensedcode/data/rules/bsd-simplified_or_ruby_6.yml deleted file mode 100644 index fd3a0aad31e..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-simplified OR ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_7.RULE b/src/licensedcode/data/rules/bsd-simplified_or_ruby_7.RULE index e47c6e0c167..07079667632 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_7.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_ruby_7.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified OR ruby +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.ruby-lang.org/en/LICENSE.txt +--- + is distributed under the same license as ruby. See https://www.ruby-lang.org/en/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_7.yml b/src/licensedcode/data/rules/bsd-simplified_or_ruby_7.yml deleted file mode 100644 index 85b93e66ae5..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified OR ruby -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.ruby-lang.org/en/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_8.RULE b/src/licensedcode/data/rules/bsd-simplified_or_ruby_8.RULE index e218cd8938f..ab101176895 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_8.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_ruby_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: bsd-simplified OR ruby +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.ruby-lang.org/en/LICENSE.txt +--- + distributed under the same license as ruby. See https://www.ruby-lang.org/en/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_or_ruby_8.yml b/src/licensedcode/data/rules/bsd-simplified_or_ruby_8.yml deleted file mode 100644 index 85b93e66ae5..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_ruby_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified OR ruby -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.ruby-lang.org/en/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_or_unknown-license-reference_and_odbl-1.0_1.RULE b/src/licensedcode/data/rules/bsd-simplified_or_unknown-license-reference_and_odbl-1.0_1.RULE index c65c3de94dd..7812947002e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_or_unknown-license-reference_and_odbl-1.0_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_or_unknown-license-reference_and_odbl-1.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (bsd-simplified OR unknown-license-reference) AND odbl-1.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LEGAL +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/ +--- + License Data is Free Software. You can call it Open Source too. Whatever you prefer. diff --git a/src/licensedcode/data/rules/bsd-simplified_or_unknown-license-reference_and_odbl-1.0_1.yml b/src/licensedcode/data/rules/bsd-simplified_or_unknown-license-reference_and_odbl-1.0_1.yml deleted file mode 100644 index 73f3bfb4447..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_or_unknown-license-reference_and_odbl-1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (bsd-simplified OR unknown-license-reference) AND odbl-1.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LEGAL -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/bsd-simplified_url_1.RULE b/src/licensedcode/data/rules/bsd-simplified_url_1.RULE index 850e5db68d2..08f68b351e5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-2-clause +--- + https://spdx.org/licenses/bsd-2-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_url_1.yml b/src/licensedcode/data/rules/bsd-simplified_url_1.yml deleted file mode 100644 index 316a9432988..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-2-clause diff --git a/src/licensedcode/data/rules/bsd-simplified_url_2.RULE b/src/licensedcode/data/rules/bsd-simplified_url_2.RULE index 25a2ec82986..f88b6d79a45 100644 --- a/src/licensedcode/data/rules/bsd-simplified_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-2-clause.html +--- + https://spdx.org/licenses/bsd-2-clause.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_url_2.yml b/src/licensedcode/data/rules/bsd-simplified_url_2.yml deleted file mode 100644 index 5f54783760a..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-2-clause.html diff --git a/src/licensedcode/data/rules/bsd-simplified_url_3.RULE b/src/licensedcode/data/rules/bsd-simplified_url_3.RULE index f31c9ba5a39..540872e865b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_url_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://javolution.org/LICENSE.txt +--- + http://javolution.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_url_3.yml b/src/licensedcode/data/rules/bsd-simplified_url_3.yml deleted file mode 100644 index 5cdcd05ad62..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://javolution.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/bsd-simplified_url_4.RULE b/src/licensedcode/data/rules/bsd-simplified_url_4.RULE index 5a985aae24e..f172a0a20c5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_url_4.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://jodd.org/license.html +--- + https://jodd.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_url_4.yml b/src/licensedcode/data/rules/bsd-simplified_url_4.yml deleted file mode 100644 index f68339906e5..00000000000 --- a/src/licensedcode/data/rules/bsd-simplified_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://jodd.org/license.html diff --git a/src/licensedcode/data/rules/bsd-source-code_1.RULE b/src/licensedcode/data/rules/bsd-source-code_1.RULE index fff5b15b6b6..d688a85ab66 100644 --- a/src/licensedcode/data/rules/bsd-source-code_1.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-source-code_1.yml b/src/licensedcode/data/rules/bsd-source-code_1.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-source-code_10.RULE b/src/licensedcode/data/rules/bsd-source-code_10.RULE index 04325b9175e..f777ca6d984 100644 --- a/src/licensedcode/data/rules/bsd-source-code_10.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-source-code +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. diff --git a/src/licensedcode/data/rules/bsd-source-code_10.yml b/src/licensedcode/data/rules/bsd-source-code_10.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-source-code_11.RULE b/src/licensedcode/data/rules/bsd-source-code_11.RULE index 93fa24176e0..3f1535a72d4 100644 --- a/src/licensedcode/data/rules/bsd-source-code_11.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_11.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 99 +notes: Truncated and missing warranty discaimer. See in Cocoa lumberjack +--- + Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-source-code_11.yml b/src/licensedcode/data/rules/bsd-source-code_11.yml deleted file mode 100644 index 05af2155e46..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 99 -notes: Truncated and missing warranty discaimer. See in Cocoa lumberjack diff --git a/src/licensedcode/data/rules/bsd-source-code_12.RULE b/src/licensedcode/data/rules/bsd-source-code_12.RULE index 1fa6f768b12..9ead857c493 100644 --- a/src/licensedcode/data/rules/bsd-source-code_12.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_12.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD Source Code Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_12.yml b/src/licensedcode/data/rules/bsd-source-code_12.yml deleted file mode 100644 index 772862570df..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-source-code_13.RULE b/src/licensedcode/data/rules/bsd-source-code_13.RULE index d06884f5720..f3843be1d2a 100644 --- a/src/licensedcode/data/rules/bsd-source-code_13.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_13.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD Source Code Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_13.yml b/src/licensedcode/data/rules/bsd-source-code_13.yml deleted file mode 100644 index 772862570df..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-source-code_14.RULE b/src/licensedcode/data/rules/bsd-source-code_14.RULE index f17038049e1..16e4a4e31e9 100644 --- a/src/licensedcode/data/rules/bsd-source-code_14.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_14.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-Source-Code BSD Source Code Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_14.yml b/src/licensedcode/data/rules/bsd-source-code_14.yml deleted file mode 100644 index 772862570df..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-source-code_15.RULE b/src/licensedcode/data/rules/bsd-source-code_15.RULE index 4ca778087fb..f143b8f10f3 100644 --- a/src/licensedcode/data/rules/bsd-source-code_15.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_15.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD Source Code Attribution BSD-Source-Code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_15.yml b/src/licensedcode/data/rules/bsd-source-code_15.yml deleted file mode 100644 index 772862570df..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-source-code_16.RULE b/src/licensedcode/data/rules/bsd-source-code_16.RULE index 3773b89c45e..612c44b060c 100644 --- a/src/licensedcode/data/rules/bsd-source-code_16.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_16.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-Source-Code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_16.yml b/src/licensedcode/data/rules/bsd-source-code_16.yml deleted file mode 100644 index 455d066f313..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-source-code_17.RULE b/src/licensedcode/data/rules/bsd-source-code_17.RULE index c4670263839..2260ae8fcb3 100644 --- a/src/licensedcode/data/rules/bsd-source-code_17.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_17.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD Source Code Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_17.yml b/src/licensedcode/data/rules/bsd-source-code_17.yml deleted file mode 100644 index 455d066f313..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-source-code_18.RULE b/src/licensedcode/data/rules/bsd-source-code_18.RULE index 7af0d2cbb49..aed65efe671 100644 --- a/src/licensedcode/data/rules/bsd-source-code_18.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_18.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-Source-Code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_18.yml b/src/licensedcode/data/rules/bsd-source-code_18.yml deleted file mode 100644 index 455d066f313..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-source-code_19.RULE b/src/licensedcode/data/rules/bsd-source-code_19.RULE index 54398d3323b..3ca04fe0e1d 100644 --- a/src/licensedcode/data/rules/bsd-source-code_19.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_19.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-Source-Code +--- + https://licenses.nuget.org/BSD-Source-Code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_19.yml b/src/licensedcode/data/rules/bsd-source-code_19.yml deleted file mode 100644 index 1e47b90cac2..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-Source-Code diff --git a/src/licensedcode/data/rules/bsd-source-code_2.RULE b/src/licensedcode/data/rules/bsd-source-code_2.RULE index fb0e737b303..fad7bdf1693 100644 --- a/src/licensedcode/data/rules/bsd-source-code_2.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_notice: yes +relevance: 85 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that neither the name of nor the names of any contributors are be used to endorse or diff --git a/src/licensedcode/data/rules/bsd-source-code_2.yml b/src/licensedcode/data/rules/bsd-source-code_2.yml deleted file mode 100644 index eb06b7161f4..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_notice: yes -relevance: 85 diff --git a/src/licensedcode/data/rules/bsd-source-code_20.RULE b/src/licensedcode/data/rules/bsd-source-code_20.RULE index 4a48b535991..1a618c9511e 100644 --- a/src/licensedcode/data/rules/bsd-source-code_20.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_20.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-Source-Code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_20.yml b/src/licensedcode/data/rules/bsd-source-code_20.yml deleted file mode 100644 index 39da9626e7c..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-source-code_21.RULE b/src/licensedcode/data/rules/bsd-source-code_21.RULE index 59853576105..9a59f4ca9c8 100644 --- a/src/licensedcode/data/rules/bsd-source-code_21.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_21.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) Deusty, LLC +ignorable_holders: + - Deusty, LLC +--- + // Software License Agreement {{(BSD License)}} Copyright (c) {{Deusty, LLC}} diff --git a/src/licensedcode/data/rules/bsd-source-code_21.yml b/src/licensedcode/data/rules/bsd-source-code_21.yml deleted file mode 100644 index 2442501287c..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_21.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) Deusty, LLC -ignorable_holders: - - Deusty, LLC diff --git a/src/licensedcode/data/rules/bsd-source-code_22.RULE b/src/licensedcode/data/rules/bsd-source-code_22.RULE index cb0a5b2c92b..56c6e3d5c81 100644 --- a/src/licensedcode/data/rules/bsd-source-code_22.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_22.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +minimum_coverage: 95 +--- + Software License Agreement (BSD License) Redistribution and use of this software in source and binary forms, diff --git a/src/licensedcode/data/rules/bsd-source-code_22.yml b/src/licensedcode/data/rules/bsd-source-code_22.yml deleted file mode 100644 index 4cc2cfbfa8d..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-source-code_23.RULE b/src/licensedcode/data/rules/bsd-source-code_23.RULE index 4bde8142698..479ef3a6646 100644 --- a/src/licensedcode/data/rules/bsd-source-code_23.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_23.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +minimum_coverage: 95 +--- + Software License Agreement (BSD License) Redistribution and use of this software in source and binary forms, diff --git a/src/licensedcode/data/rules/bsd-source-code_23.yml b/src/licensedcode/data/rules/bsd-source-code_23.yml deleted file mode 100644 index 4cc2cfbfa8d..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-source-code_24.RULE b/src/licensedcode/data/rules/bsd-source-code_24.RULE index 78d227e5e7b..a25f59aa873 100644 --- a/src/licensedcode/data/rules/bsd-source-code_24.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_24.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +minimum_coverage: 95 +--- + // Software License Agreement {{(BSD License)}} // // Redistribution and use of this software in source and binary forms, diff --git a/src/licensedcode/data/rules/bsd-source-code_24.yml b/src/licensedcode/data/rules/bsd-source-code_24.yml deleted file mode 100644 index 4cc2cfbfa8d..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-source-code_25.RULE b/src/licensedcode/data/rules/bsd-source-code_25.RULE index e7b31edc195..a0b0c1df23a 100644 --- a/src/licensedcode/data/rules/bsd-source-code_25.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_25.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2010-2021, Deusty, LLC +ignorable_holders: + - Deusty, LLC +--- + // Software License Agreement (BSD License) // // Copyright (c) 2010-2021, Deusty, LLC diff --git a/src/licensedcode/data/rules/bsd-source-code_25.yml b/src/licensedcode/data/rules/bsd-source-code_25.yml deleted file mode 100644 index 8ad6911bff0..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_25.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2010-2021, Deusty, LLC -ignorable_holders: - - Deusty, LLC diff --git a/src/licensedcode/data/rules/bsd-source-code_26.RULE b/src/licensedcode/data/rules/bsd-source-code_26.RULE index 6df5a608f25..c6365f29bdc 100644 --- a/src/licensedcode/data/rules/bsd-source-code_26.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_26.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-Source-Code +--- + {{BSD-Source-Code}} https://spdx.org/licenses/BSD-Source-Code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_26.yml b/src/licensedcode/data/rules/bsd-source-code_26.yml deleted file mode 100644 index 60ff95d0347..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-Source-Code diff --git a/src/licensedcode/data/rules/bsd-source-code_27.RULE b/src/licensedcode/data/rules/bsd-source-code_27.RULE index 68469b427fe..1972e7aa4b9 100644 --- a/src/licensedcode/data/rules/bsd-source-code_27.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_27.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-Source-Code +--- + LICENSE {{BSD-Source-Code}} https://spdx.org/licenses/BSD-Source-Code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_27.yml b/src/licensedcode/data/rules/bsd-source-code_27.yml deleted file mode 100644 index 60ff95d0347..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-Source-Code diff --git a/src/licensedcode/data/rules/bsd-source-code_3.RULE b/src/licensedcode/data/rules/bsd-source-code_3.RULE index 7329bb06e05..3ffa17e2fb3 100644 --- a/src/licensedcode/data/rules/bsd-source-code_3.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-source-code_3.yml b/src/licensedcode/data/rules/bsd-source-code_3.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-source-code_4.RULE b/src/licensedcode/data/rules/bsd-source-code_4.RULE index 0f3f171e749..ef10e5569be 100644 --- a/src/licensedcode/data/rules/bsd-source-code_4.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +notes: typo in withough +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-source-code_4.yml b/src/licensedcode/data/rules/bsd-source-code_4.yml deleted file mode 100644 index 10b70cd91c0..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 -notes: typo in withough diff --git a/src/licensedcode/data/rules/bsd-source-code_5.RULE b/src/licensedcode/data/rules/bsd-source-code_5.RULE index 5509af9114c..0317bcab673 100644 --- a/src/licensedcode/data/rules/bsd-source-code_5.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-source-code_5.yml b/src/licensedcode/data/rules/bsd-source-code_5.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-source-code_6.RULE b/src/licensedcode/data/rules/bsd-source-code_6.RULE index 843ee0d077a..56f189e5e5e 100644 --- a/src/licensedcode/data/rules/bsd-source-code_6.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-source-code_6.yml b/src/licensedcode/data/rules/bsd-source-code_6.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-source-code_7.RULE b/src/licensedcode/data/rules/bsd-source-code_7.RULE index e9171f731c0..4ad2e23fe5d 100644 --- a/src/licensedcode/data/rules/bsd-source-code_7.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +relevance: 100 +--- + Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-source-code_7.yml b/src/licensedcode/data/rules/bsd-source-code_7.yml deleted file mode 100644 index d2d24e7e04d..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-source-code_8.RULE b/src/licensedcode/data/rules/bsd-source-code_8.RULE index db85f3dd935..7ffe75b0d2b 100644 --- a/src/licensedcode/data/rules/bsd-source-code_8.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_8.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-source-code_8.yml b/src/licensedcode/data/rules/bsd-source-code_8.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-source-code_9.RULE b/src/licensedcode/data/rules/bsd-source-code_9.RULE index 563bed05c83..8b3a48b4719 100644 --- a/src/licensedcode/data/rules/bsd-source-code_9.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_9.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/bsd-source-code_9.yml b/src/licensedcode/data/rules/bsd-source-code_9.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-source-code_url_1.RULE b/src/licensedcode/data/rules/bsd-source-code_url_1.RULE index a3adae05e09..f281610d251 100644 --- a/src/licensedcode/data/rules/bsd-source-code_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-source-code +--- + https://spdx.org/licenses/bsd-source-code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_url_1.yml b/src/licensedcode/data/rules/bsd-source-code_url_1.yml deleted file mode 100644 index 636c8037abf..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-source-code diff --git a/src/licensedcode/data/rules/bsd-source-code_url_2.RULE b/src/licensedcode/data/rules/bsd-source-code_url_2.RULE index 32808d2218b..f617a3296f3 100644 --- a/src/licensedcode/data/rules/bsd-source-code_url_2.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-source-code.html +--- + https://spdx.org/licenses/bsd-source-code.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_url_2.yml b/src/licensedcode/data/rules/bsd-source-code_url_2.yml deleted file mode 100644 index 61a44e7a3aa..00000000000 --- a/src/licensedcode/data/rules/bsd-source-code_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-source-code.html diff --git a/src/licensedcode/data/rules/bsd-top-gpl-addition_1.RULE b/src/licensedcode/data/rules/bsd-top-gpl-addition_1.RULE index cf35a7a8d3d..c67d7035d17 100644 --- a/src/licensedcode/data/rules/bsd-top-gpl-addition_1.RULE +++ b/src/licensedcode/data/rules/bsd-top-gpl-addition_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-top-gpl-addition +is_license_reference: yes +relevance: 90 +--- + * Where this Software is combined with software released under the terms of * the GNU General Public License ("GPL") and the terms of the GPL would require the * combined work to also be released under the terms of the GPL, the terms diff --git a/src/licensedcode/data/rules/bsd-top-gpl-addition_1.yml b/src/licensedcode/data/rules/bsd-top-gpl-addition_1.yml deleted file mode 100644 index 93dc3b1c642..00000000000 --- a/src/licensedcode/data/rules/bsd-top-gpl-addition_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-top-gpl-addition -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/bsd-top_2.RULE b/src/licensedcode/data/rules/bsd-top_2.RULE index a58742f9ceb..01806eb1b6a 100644 --- a/src/licensedcode/data/rules/bsd-top_2.RULE +++ b/src/licensedcode/data/rules/bsd-top_2.RULE @@ -1,4 +1,11 @@ +--- +license_expression: bsd-top +is_license_notice: yes +relevance: 90 +minimum_coverage: 40 +--- + Redistribution and use in source, 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, without modification, immediately at the beginning of the file. - The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. + The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-top_2.yml b/src/licensedcode/data/rules/bsd-top_2.yml deleted file mode 100644 index 5ac1675c31d..00000000000 --- a/src/licensedcode/data/rules/bsd-top_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-top -is_license_notice: yes -relevance: 90 -minimum_coverage: 40 diff --git a/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_1.RULE index 3312491986b..95f515a7b8d 100644 --- a/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-top AND gpl-2.0-plus AND free-unknown +is_license_notice: yes +relevance: 85 +minimum_coverage: 70 +notes: this is a franken license composed of parts of a bsd-top and parts of a gpl notice from + http://reviser.osdn.jp/Excel_Reviser/_reviser.php.html +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Redistribution and use in source, 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, without modification, immediately at the beginning of the file. @@ -5,4 +16,4 @@ Redistribution and use in source, with or without modification, are permitted pr 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. URL http://www.gnu.org/licenses/gpl.html +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. URL http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_1.yml deleted file mode 100644 index f68d40a46c6..00000000000 --- a/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-top AND gpl-2.0-plus AND free-unknown -is_license_notice: yes -relevance: 85 -minimum_coverage: 70 -notes: this is a franken license composed of parts of a bsd-top and parts of a gpl notice from - http://reviser.osdn.jp/Excel_Reviser/_reviser.php.html -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_and_free-unknown_1.RULE b/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_and_free-unknown_1.RULE index ee5ec6e49b4..805105445d5 100644 --- a/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_and_free-unknown_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-top AND gpl-2.0-plus AND free-unknown +is_license_notice: yes +relevance: 85 +minimum_coverage: 70 +notes: this is a franken license composed of parts of a bsd-top and parts of a gpl notice from + http://reviser.osdn.jp/Excel_Reviser/_reviser.php.html +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Redistribution and use in source, 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, without modification, immediately at the beginning of the file. @@ -5,4 +16,4 @@ Redistribution and use in source, with or without modification, are permitted pr 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. URL https://www.gnu.org/licenses/gpl.html +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. URL https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_and_free-unknown_1.yml b/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_and_free-unknown_1.yml deleted file mode 100644 index 3b42e3d6dab..00000000000 --- a/src/licensedcode/data/rules/bsd-top_and_gpl-2.0-plus_and_free-unknown_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-top AND gpl-2.0-plus AND free-unknown -is_license_notice: yes -relevance: 85 -minimum_coverage: 70 -notes: this is a franken license composed of parts of a bsd-top and parts of a gpl notice from - http://reviser.osdn.jp/Excel_Reviser/_reviser.php.html -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_1.RULE index eadfe597f8f..e0686dd36a8 100644 --- a/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsd-top OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -33,4 +41,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 7062ca52c1d..00000000000 --- a/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-top OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_2.RULE index e9991b38fe1..b7086a414e3 100644 --- a/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-top OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -33,4 +42,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_2.yml deleted file mode 100644 index cbf45ebee25..00000000000 --- a/src/licensedcode/data/rules/bsd-top_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-top OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/bsd-unchanged_1.RULE b/src/licensedcode/data/rules/bsd-unchanged_1.RULE index 6edcf6cc3c6..f95e39a42df 100644 --- a/src/licensedcode/data/rules/bsd-unchanged_1.RULE +++ b/src/licensedcode/data/rules/bsd-unchanged_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-unchanged +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: @@ -19,4 +24,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-unchanged_1.yml b/src/licensedcode/data/rules/bsd-unchanged_1.yml deleted file mode 100644 index bc28ca53427..00000000000 --- a/src/licensedcode/data/rules/bsd-unchanged_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-unchanged -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-unchanged_2.RULE b/src/licensedcode/data/rules/bsd-unchanged_2.RULE index 9222d66bc58..d4c2ec2354b 100644 --- a/src/licensedcode/data/rules/bsd-unchanged_2.RULE +++ b/src/licensedcode/data/rules/bsd-unchanged_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-unchanged +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-unchanged_2.yml b/src/licensedcode/data/rules/bsd-unchanged_2.yml deleted file mode 100644 index 7015562fa36..00000000000 --- a/src/licensedcode/data/rules/bsd-unchanged_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-unchanged -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-unchanged_3.RULE b/src/licensedcode/data/rules/bsd-unchanged_3.RULE index 75ad184c95b..7ef73be7035 100644 --- a/src/licensedcode/data/rules/bsd-unchanged_3.RULE +++ b/src/licensedcode/data/rules/bsd-unchanged_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-unchanged +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-unchanged_3.yml b/src/licensedcode/data/rules/bsd-unchanged_3.yml deleted file mode 100644 index 7015562fa36..00000000000 --- a/src/licensedcode/data/rules/bsd-unchanged_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-unchanged -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-unchanged_4.RULE b/src/licensedcode/data/rules/bsd-unchanged_4.RULE index b4a2aa44148..61b0f312428 100644 --- a/src/licensedcode/data/rules/bsd-unchanged_4.RULE +++ b/src/licensedcode/data/rules/bsd-unchanged_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-unchanged +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: diff --git a/src/licensedcode/data/rules/bsd-unchanged_4.yml b/src/licensedcode/data/rules/bsd-unchanged_4.yml deleted file mode 100644 index bc28ca53427..00000000000 --- a/src/licensedcode/data/rules/bsd-unchanged_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-unchanged -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-unmodified_1.RULE b/src/licensedcode/data/rules/bsd-unmodified_1.RULE index 3488bacc2a5..ea1329533bf 100644 --- a/src/licensedcode/data/rules/bsd-unmodified_1.RULE +++ b/src/licensedcode/data/rules/bsd-unmodified_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-unmodified +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: diff --git a/src/licensedcode/data/rules/bsd-unmodified_1.yml b/src/licensedcode/data/rules/bsd-unmodified_1.yml deleted file mode 100644 index 19561caed97..00000000000 --- a/src/licensedcode/data/rules/bsd-unmodified_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-unmodified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-unmodified_2.RULE b/src/licensedcode/data/rules/bsd-unmodified_2.RULE index 3f22a66d328..e850062ac30 100644 --- a/src/licensedcode/data/rules/bsd-unmodified_2.RULE +++ b/src/licensedcode/data/rules/bsd-unmodified_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-unmodified +is_license_text: yes +minimum_coverage: 97 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -18,4 +24,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-unmodified_2.yml b/src/licensedcode/data/rules/bsd-unmodified_2.yml deleted file mode 100644 index 17500ab4e41..00000000000 --- a/src/licensedcode/data/rules/bsd-unmodified_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-unmodified -is_license_text: yes -minimum_coverage: 97 diff --git a/src/licensedcode/data/rules/bsd-unmodified_3.RULE b/src/licensedcode/data/rules/bsd-unmodified_3.RULE index 3106c4ba5b4..2b192725d0d 100644 --- a/src/licensedcode/data/rules/bsd-unmodified_3.RULE +++ b/src/licensedcode/data/rules/bsd-unmodified_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-unmodified +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: diff --git a/src/licensedcode/data/rules/bsd-unmodified_3.yml b/src/licensedcode/data/rules/bsd-unmodified_3.yml deleted file mode 100644 index 19561caed97..00000000000 --- a/src/licensedcode/data/rules/bsd-unmodified_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-unmodified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-unmodified_4.RULE b/src/licensedcode/data/rules/bsd-unmodified_4.RULE index 6bfe9992b18..efacb2779d8 100644 --- a/src/licensedcode/data/rules/bsd-unmodified_4.RULE +++ b/src/licensedcode/data/rules/bsd-unmodified_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-unmodified +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: @@ -17,5 +22,4 @@ 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. - +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-unmodified_4.yml b/src/licensedcode/data/rules/bsd-unmodified_4.yml deleted file mode 100644 index 19561caed97..00000000000 --- a/src/licensedcode/data/rules/bsd-unmodified_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-unmodified -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-x11_1.RULE b/src/licensedcode/data/rules/bsd-x11_1.RULE index 2b4bf3a1feb..353da414286 100644 --- a/src/licensedcode/data/rules/bsd-x11_1.RULE +++ b/src/licensedcode/data/rules/bsd-x11_1.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-x11_1.yml b/src/licensedcode/data/rules/bsd-x11_1.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-x11_10.RULE b/src/licensedcode/data/rules/bsd-x11_10.RULE index db9a1c0a27d..728171f9553 100644 --- a/src/licensedcode/data/rules/bsd-x11_10.RULE +++ b/src/licensedcode/data/rules/bsd-x11_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-x11 +is_license_text: yes +relevance: 99 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-x11_10.yml b/src/licensedcode/data/rules/bsd-x11_10.yml deleted file mode 100644 index 2d0f636328d..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-x11_11.RULE b/src/licensedcode/data/rules/bsd-x11_11.RULE index 98119764dd6..21022e61883 100644 --- a/src/licensedcode/data/rules/bsd-x11_11.RULE +++ b/src/licensedcode/data/rules/bsd-x11_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-x11 +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-x11_11.yml b/src/licensedcode/data/rules/bsd-x11_11.yml deleted file mode 100644 index 12d1175922c..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-x11_2.RULE b/src/licensedcode/data/rules/bsd-x11_2.RULE index 3387dabef51..018fd62a170 100644 --- a/src/licensedcode/data/rules/bsd-x11_2.RULE +++ b/src/licensedcode/data/rules/bsd-x11_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsd-x11 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: found in u-boot with this note Although it is very similar, this license text is not + identical to the "BSD-3-Clause", therefore, DO NOT MODIFY THIS LICENSE TEXT! +--- + 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 @@ -24,4 +33,4 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. NOTE: Although it is very similar, this license text is not identical - to the "BSD-3-Clause", therefore, DO NOT MODIFY THIS LICENSE TEXT! + to the "BSD-3-Clause", therefore, DO NOT MODIFY THIS LICENSE TEXT! \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-x11_2.yml b/src/licensedcode/data/rules/bsd-x11_2.yml deleted file mode 100644 index 018e5c8b026..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: found in u-boot with this note Although it is very similar, this license text is not - identical to the "BSD-3-Clause", therefore, DO NOT MODIFY THIS LICENSE TEXT! diff --git a/src/licensedcode/data/rules/bsd-x11_3.RULE b/src/licensedcode/data/rules/bsd-x11_3.RULE index 7a24b0cffe1..343d6e7ef05 100644 --- a/src/licensedcode/data/rules/bsd-x11_3.RULE +++ b/src/licensedcode/data/rules/bsd-x11_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-x11 +is_license_text: yes +notes: found in u-boot with this note Although it is very similar, this license text is not + identical to the "BSD-3-Clause", therefore, DO NOT MODIFY THIS LICENSE TEXT! +--- + 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 @@ -20,4 +27,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-x11_3.yml b/src/licensedcode/data/rules/bsd-x11_3.yml deleted file mode 100644 index 7332052d806..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes -notes: found in u-boot with this note Although it is very similar, this license text is not - identical to the "BSD-3-Clause", therefore, DO NOT MODIFY THIS LICENSE TEXT! diff --git a/src/licensedcode/data/rules/bsd-x11_4.RULE b/src/licensedcode/data/rules/bsd-x11_4.RULE index f14f638d457..639b7deb956 100644 --- a/src/licensedcode/data/rules/bsd-x11_4.RULE +++ b/src/licensedcode/data/rules/bsd-x11_4.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -21,4 +26,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-x11_4.yml b/src/licensedcode/data/rules/bsd-x11_4.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-x11_5.RULE b/src/licensedcode/data/rules/bsd-x11_5.RULE index f6ee5f452bc..28450c35ea5 100644 --- a/src/licensedcode/data/rules/bsd-x11_5.RULE +++ b/src/licensedcode/data/rules/bsd-x11_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-x11 +is_license_text: yes +relevance: 99 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-x11_5.yml b/src/licensedcode/data/rules/bsd-x11_5.yml deleted file mode 100644 index 2d0f636328d..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/bsd-x11_6.RULE b/src/licensedcode/data/rules/bsd-x11_6.RULE index b7cae14d69c..f63efb4b0e5 100644 --- a/src/licensedcode/data/rules/bsd-x11_6.RULE +++ b/src/licensedcode/data/rules/bsd-x11_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-x11 +is_license_text: yes +relevance: 99 +minimum_coverage: 97 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-x11_6.yml b/src/licensedcode/data/rules/bsd-x11_6.yml deleted file mode 100644 index 81ba130d5a6..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes -relevance: 99 -minimum_coverage: 97 diff --git a/src/licensedcode/data/rules/bsd-x11_7.RULE b/src/licensedcode/data/rules/bsd-x11_7.RULE index 8b6de65852f..9ef549c91e7 100644 --- a/src/licensedcode/data/rules/bsd-x11_7.RULE +++ b/src/licensedcode/data/rules/bsd-x11_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-x11 +is_license_text: yes +relevance: 100 +notes: See https://github.com/mirror/newlib-cygwin/blob/3752ab804bda1cbb38b5da91db8cf14f8bdefa2f/winsup/testsuite/winsup.api/msgtest.c +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/bsd-x11_7.yml b/src/licensedcode/data/rules/bsd-x11_7.yml deleted file mode 100644 index 394841464b0..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes -relevance: 100 -notes: See https://github.com/mirror/newlib-cygwin/blob/3752ab804bda1cbb38b5da91db8cf14f8bdefa2f/winsup/testsuite/winsup.api/msgtest.c diff --git a/src/licensedcode/data/rules/bsd-x11_8.RULE b/src/licensedcode/data/rules/bsd-x11_8.RULE index 2ec935547ed..0c6dcfcc451 100644 --- a/src/licensedcode/data/rules/bsd-x11_8.RULE +++ b/src/licensedcode/data/rules/bsd-x11_8.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -26,4 +31,4 @@ 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. +if advised of the possibility of such damage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-x11_8.yml b/src/licensedcode/data/rules/bsd-x11_8.yml deleted file mode 100644 index 4c911244cf9..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsd-x11_9.RULE b/src/licensedcode/data/rules/bsd-x11_9.RULE index 83d05e3e38f..690433c7521 100644 --- a/src/licensedcode/data/rules/bsd-x11_9.RULE +++ b/src/licensedcode/data/rules/bsd-x11_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-x11 +is_license_text: yes +relevance: 99 +notes: Paul Hsieh variant with wording mostly like a bsd-x11 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-x11_9.yml b/src/licensedcode/data/rules/bsd-x11_9.yml deleted file mode 100644 index 8144c114fc8..00000000000 --- a/src/licensedcode/data/rules/bsd-x11_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-x11 -is_license_text: yes -relevance: 99 -notes: Paul Hsieh variant with wording mostly like a bsd-x11 diff --git a/src/licensedcode/data/rules/bsd-zero_1.RULE b/src/licensedcode/data/rules/bsd-zero_1.RULE index ea1226629b8..59f4551a7ca 100644 --- a/src/licensedcode/data/rules/bsd-zero_1.RULE +++ b/src/licensedcode/data/rules/bsd-zero_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-1-clause +is_license_text: yes +minimum_coverage: 95 +--- + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. @@ -11,4 +17,4 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. (Note: some build infrastructure in the kconfig directory is still GPLv2, cleaning that out is a TODO item, but it doesn't affect the resulting -binary.) +binary.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_1.yml b/src/licensedcode/data/rules/bsd-zero_1.yml deleted file mode 100644 index c2ccea16c9c..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-1-clause -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/bsd-zero_10.RULE b/src/licensedcode/data/rules/bsd-zero_10.RULE index 3f51e1f6e3b..ec1df863fe5 100644 --- a/src/licensedcode/data/rules/bsd-zero_10.RULE +++ b/src/licensedcode/data/rules/bsd-zero_10.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD Zero Clause License 0BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_10.yml b/src/licensedcode/data/rules/bsd-zero_10.yml deleted file mode 100644 index 61d50fbebe6..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-zero_11.RULE b/src/licensedcode/data/rules/bsd-zero_11.RULE index 5772bea9b8f..d40bc9ae0d1 100644 --- a/src/licensedcode/data/rules/bsd-zero_11.RULE +++ b/src/licensedcode/data/rules/bsd-zero_11.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-zero +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD Zero Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_11.yml b/src/licensedcode/data/rules/bsd-zero_11.yml deleted file mode 100644 index 420b6b233d7..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-zero -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-zero_12.RULE b/src/licensedcode/data/rules/bsd-zero_12.RULE index 30c5e382814..70deb259b74 100644 --- a/src/licensedcode/data/rules/bsd-zero_12.RULE +++ b/src/licensedcode/data/rules/bsd-zero_12.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-zero +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: 0BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_12.yml b/src/licensedcode/data/rules/bsd-zero_12.yml deleted file mode 100644 index 420b6b233d7..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-zero -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-zero_13.RULE b/src/licensedcode/data/rules/bsd-zero_13.RULE index 714776c7971..9352313eab2 100644 --- a/src/licensedcode/data/rules/bsd-zero_13.RULE +++ b/src/licensedcode/data/rules/bsd-zero_13.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/BSD_licenses#0-clause_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_13.yml b/src/licensedcode/data/rules/bsd-zero_13.yml deleted file mode 100644 index ed4d561c0d1..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-zero_14.RULE b/src/licensedcode/data/rules/bsd-zero_14.RULE index 47ddbea2ab9..1ab28f5e23d 100644 --- a/src/licensedcode/data/rules/bsd-zero_14.RULE +++ b/src/licensedcode/data/rules/bsd-zero_14.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +--- + BSD_licenses#0-clause_license_(%22BSD_Zero_Clause_License%22) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_14.yml b/src/licensedcode/data/rules/bsd-zero_14.yml deleted file mode 100644 index ed4d561c0d1..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-zero_15.RULE b/src/licensedcode/data/rules/bsd-zero_15.RULE index 16898b29dd9..500e0aaa382 100644 --- a/src/licensedcode/data/rules/bsd-zero_15.RULE +++ b/src/licensedcode/data/rules/bsd-zero_15.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +--- + BSD_licenses#0-clause_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_15.yml b/src/licensedcode/data/rules/bsd-zero_15.yml deleted file mode 100644 index ed4d561c0d1..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-zero_16.RULE b/src/licensedcode/data/rules/bsd-zero_16.RULE index 2f9a6a94e75..cc57e9aa164 100644 --- a/src/licensedcode/data/rules/bsd-zero_16.RULE +++ b/src/licensedcode/data/rules/bsd-zero_16.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +--- + %22BSD_Zero_Clause_License%22) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_16.yml b/src/licensedcode/data/rules/bsd-zero_16.yml deleted file mode 100644 index ed4d561c0d1..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-zero_17.RULE b/src/licensedcode/data/rules/bsd-zero_17.RULE index 5b7de880b3d..dca9328f42b 100644 --- a/src/licensedcode/data/rules/bsd-zero_17.RULE +++ b/src/licensedcode/data/rules/bsd-zero_17.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/0BSD +--- + https://licenses.nuget.org/0BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_17.yml b/src/licensedcode/data/rules/bsd-zero_17.yml deleted file mode 100644 index 34cfcbf1b67..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/0BSD diff --git a/src/licensedcode/data/rules/bsd-zero_18.RULE b/src/licensedcode/data/rules/bsd-zero_18.RULE index 8a63a00e74a..9a57a113d84 100644 --- a/src/licensedcode/data/rules/bsd-zero_18.RULE +++ b/src/licensedcode/data/rules/bsd-zero_18.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/0BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_18.yml b/src/licensedcode/data/rules/bsd-zero_18.yml deleted file mode 100644 index ed4d561c0d1..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-zero_19.RULE b/src/licensedcode/data/rules/bsd-zero_19.RULE index da603164bec..a9c87d3f3b8 100644 --- a/src/licensedcode/data/rules/bsd-zero_19.RULE +++ b/src/licensedcode/data/rules/bsd-zero_19.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/0BSD +--- + {{0BSD}} https://spdx.org/licenses/0BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_19.yml b/src/licensedcode/data/rules/bsd-zero_19.yml deleted file mode 100644 index 2cfe6937083..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/0BSD diff --git a/src/licensedcode/data/rules/bsd-zero_2.RULE b/src/licensedcode/data/rules/bsd-zero_2.RULE index f79dc2375af..a769d8d179c 100644 --- a/src/licensedcode/data/rules/bsd-zero_2.RULE +++ b/src/licensedcode/data/rules/bsd-zero_2.RULE @@ -1 +1,9 @@ -https://spdx.org/licenses/0BSD.html \ No newline at end of file +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/0BSD.html +--- + +https://spdx.org/licenses/0BSD.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_2.yml b/src/licensedcode/data/rules/bsd-zero_2.yml deleted file mode 100644 index b5f1961fc1c..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/0BSD.html diff --git a/src/licensedcode/data/rules/bsd-zero_20.RULE b/src/licensedcode/data/rules/bsd-zero_20.RULE index 2fce92844c8..a921badbb03 100644 --- a/src/licensedcode/data/rules/bsd-zero_20.RULE +++ b/src/licensedcode/data/rules/bsd-zero_20.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/0BSD +--- + LICENSE {{0BSD}} https://spdx.org/licenses/0BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_20.yml b/src/licensedcode/data/rules/bsd-zero_20.yml deleted file mode 100644 index 2cfe6937083..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/0BSD diff --git a/src/licensedcode/data/rules/bsd-zero_3.RULE b/src/licensedcode/data/rules/bsd-zero_3.RULE index 33db856f1be..96d9631d63d 100644 --- a/src/licensedcode/data/rules/bsd-zero_3.RULE +++ b/src/licensedcode/data/rules/bsd-zero_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/0bsd +--- + https://choosealicense.com/licenses/0bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_3.yml b/src/licensedcode/data/rules/bsd-zero_3.yml deleted file mode 100644 index 74d31fae0e8..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/0bsd diff --git a/src/licensedcode/data/rules/bsd-zero_4.RULE b/src/licensedcode/data/rules/bsd-zero_4.RULE index ca4895a6f31..9f30b0c5377 100644 --- a/src/licensedcode/data/rules/bsd-zero_4.RULE +++ b/src/licensedcode/data/rules/bsd-zero_4.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-zero +is_license_tag: yes +relevance: 100 +--- + license="0BSD", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_4.yml b/src/licensedcode/data/rules/bsd-zero_4.yml deleted file mode 100644 index 49d74d866f7..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-zero -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-zero_5.RULE b/src/licensedcode/data/rules/bsd-zero_5.RULE index 17c5d9fc302..25711c58a5c 100644 --- a/src/licensedcode/data/rules/bsd-zero_5.RULE +++ b/src/licensedcode/data/rules/bsd-zero_5.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +--- + BSD(0cl) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_5.yml b/src/licensedcode/data/rules/bsd-zero_5.yml deleted file mode 100644 index ed4d561c0d1..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsd-zero_6.RULE b/src/licensedcode/data/rules/bsd-zero_6.RULE index 0d4b05b2ad7..5af554efc70 100644 --- a/src/licensedcode/data/rules/bsd-zero_6.RULE +++ b/src/licensedcode/data/rules/bsd-zero_6.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + 0-clause BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_6.yml b/src/licensedcode/data/rules/bsd-zero_6.yml deleted file mode 100644 index 0c6ace34d10..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-zero_7.RULE b/src/licensedcode/data/rules/bsd-zero_7.RULE index 122b58cfbd6..636ae308cc0 100644 --- a/src/licensedcode/data/rules/bsd-zero_7.RULE +++ b/src/licensedcode/data/rules/bsd-zero_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD Zero Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_7.yml b/src/licensedcode/data/rules/bsd-zero_7.yml deleted file mode 100644 index 61d50fbebe6..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-zero_8.RULE b/src/licensedcode/data/rules/bsd-zero_8.RULE index f99848e1701..b2dfecb1ff1 100644 --- a/src/licensedcode/data/rules/bsd-zero_8.RULE +++ b/src/licensedcode/data/rules/bsd-zero_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD Zero Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_8.yml b/src/licensedcode/data/rules/bsd-zero_8.yml deleted file mode 100644 index 61d50fbebe6..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-zero_9.RULE b/src/licensedcode/data/rules/bsd-zero_9.RULE index 0a820a5babd..9454103d3e9 100644 --- a/src/licensedcode/data/rules/bsd-zero_9.RULE +++ b/src/licensedcode/data/rules/bsd-zero_9.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + 0BSD BSD Zero Clause License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_9.yml b/src/licensedcode/data/rules/bsd-zero_9.yml deleted file mode 100644 index 61d50fbebe6..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsd-zero_url_1.RULE b/src/licensedcode/data/rules/bsd-zero_url_1.RULE index 0616a98a65c..7f93023f64e 100644 --- a/src/licensedcode/data/rules/bsd-zero_url_1.RULE +++ b/src/licensedcode/data/rules/bsd-zero_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/0bsd +--- + https://spdx.org/licenses/0bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-zero_url_1.yml b/src/licensedcode/data/rules/bsd-zero_url_1.yml deleted file mode 100644 index fd34e83b583..00000000000 --- a/src/licensedcode/data/rules/bsd-zero_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/0bsd diff --git a/src/licensedcode/data/rules/bsd_1.RULE b/src/licensedcode/data/rules/bsd_1.RULE index 6121ed5dd82..823f8b43f06 100644 --- a/src/licensedcode/data/rules/bsd_1.RULE +++ b/src/licensedcode/data/rules/bsd_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/DbKeeperNet/DbKeeperNet/wiki/LICENSE +--- + https://github.com/DbKeeperNet/DbKeeperNet/wiki/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd_1.yml b/src/licensedcode/data/rules/bsd_1.yml deleted file mode 100644 index 8e2b7cd1f1a..00000000000 --- a/src/licensedcode/data/rules/bsd_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/DbKeeperNet/DbKeeperNet/wiki/LICENSE diff --git a/src/licensedcode/data/rules/bsl-1.0_and_cockroach_and_mit_and_bsd-new_1.RULE b/src/licensedcode/data/rules/bsl-1.0_and_cockroach_and_mit_and_bsd-new_1.RULE index 18f33ed2d6a..d32574d5fac 100644 --- a/src/licensedcode/data/rules/bsl-1.0_and_cockroach_and_mit_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/bsl-1.0_and_cockroach_and_mit_and_bsd-new_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsl-1.0 AND cockroach AND mit AND bsd-new +is_license_notice: yes +relevance: 100 +--- + Source code in this repository is variously licensed under the Business Source License 1.1 (BSL), the CockroachDB Community License (CCL), the MIT license, and BSD-style licenses. A copy of each license can be found in the licenses diff --git a/src/licensedcode/data/rules/bsl-1.0_and_cockroach_and_mit_and_bsd-new_1.yml b/src/licensedcode/data/rules/bsl-1.0_and_cockroach_and_mit_and_bsd-new_1.yml deleted file mode 100644 index 32f3264594a..00000000000 --- a/src/licensedcode/data/rules/bsl-1.0_and_cockroach_and_mit_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsl-1.0 AND cockroach AND mit AND bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsl-1.1_1.RULE b/src/licensedcode/data/rules/bsl-1.1_1.RULE index ad26f36a527..e14393cb0a7 100644 --- a/src/licensedcode/data/rules/bsl-1.1_1.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsl-1.1 +is_license_notice: yes +relevance: 100 +--- + The Business Source License (this document, or the "License") is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_1.yml b/src/licensedcode/data/rules/bsl-1.1_1.yml deleted file mode 100644 index a1328a6319c..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsl-1.1_10.RULE b/src/licensedcode/data/rules/bsl-1.1_10.RULE index 29db31c23ad..54e6995814e 100644 --- a/src/licensedcode/data/rules/bsl-1.1_10.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: bsl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Business Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_10.yml b/src/licensedcode/data/rules/bsl-1.1_10.yml deleted file mode 100644 index f9b8d154b68..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsl-1.1_11.RULE b/src/licensedcode/data/rules/bsl-1.1_11.RULE index debc169235f..0d26f453c19 100644 --- a/src/licensedcode/data/rules/bsl-1.1_11.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: bsl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BUSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_11.yml b/src/licensedcode/data/rules/bsl-1.1_11.yml deleted file mode 100644 index f9b8d154b68..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsl-1.1_12.RULE b/src/licensedcode/data/rules/bsl-1.1_12.RULE index 83d0a4bf5f1..8254c98b348 100644 --- a/src/licensedcode/data/rules/bsl-1.1_12.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_12.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsl-1.1 +is_license_text: yes +ignorable_copyrights: + - copyright (c) 2017 MariaDB Corporation Ab +ignorable_holders: + - MariaDB Corporation Ab +--- + Business Source License 1.1 License text copyright © 2017 MariaDB Corporation Ab, All Rights Reserved. diff --git a/src/licensedcode/data/rules/bsl-1.1_12.yml b/src/licensedcode/data/rules/bsl-1.1_12.yml deleted file mode 100644 index d25e9b790a3..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsl-1.1 -is_license_text: yes -ignorable_copyrights: - - copyright (c) 2017 MariaDB Corporation Ab -ignorable_holders: - - MariaDB Corporation Ab diff --git a/src/licensedcode/data/rules/bsl-1.1_13.RULE b/src/licensedcode/data/rules/bsl-1.1_13.RULE index 355fcf242af..67933d977c5 100644 --- a/src/licensedcode/data/rules/bsl-1.1_13.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BUSL-1.1 +--- + https://licenses.nuget.org/BUSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_13.yml b/src/licensedcode/data/rules/bsl-1.1_13.yml deleted file mode 100644 index 6cff2a408c9..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BUSL-1.1 diff --git a/src/licensedcode/data/rules/bsl-1.1_14.RULE b/src/licensedcode/data/rules/bsl-1.1_14.RULE index c6086c0d807..484a15c48a6 100644 --- a/src/licensedcode/data/rules/bsl-1.1_14.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_14.RULE @@ -1 +1,7 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BUSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_14.yml b/src/licensedcode/data/rules/bsl-1.1_14.yml deleted file mode 100644 index 6fb4625ff2d..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsl-1.1_15.RULE b/src/licensedcode/data/rules/bsl-1.1_15.RULE index 88ca49c804e..84dd7921fb6 100644 --- a/src/licensedcode/data/rules/bsl-1.1_15.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BUSL-1.1 +--- + LICENSE {{BUSL-1.1}} https://spdx.org/licenses/BUSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_15.yml b/src/licensedcode/data/rules/bsl-1.1_15.yml deleted file mode 100644 index 6a9587533fc..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BUSL-1.1 diff --git a/src/licensedcode/data/rules/bsl-1.1_16.RULE b/src/licensedcode/data/rules/bsl-1.1_16.RULE index 460bdcaa1c7..1dd47ca5798 100644 --- a/src/licensedcode/data/rules/bsl-1.1_16.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_16.RULE @@ -1 +1,9 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BUSL-1.1 +--- + {{BUSL-1.1}} https://spdx.org/licenses/BUSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_16.yml b/src/licensedcode/data/rules/bsl-1.1_16.yml deleted file mode 100644 index 6a9587533fc..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BUSL-1.1 diff --git a/src/licensedcode/data/rules/bsl-1.1_2.RULE b/src/licensedcode/data/rules/bsl-1.1_2.RULE index 7e43113aa27..aeb8e20ea4d 100644 --- a/src/licensedcode/data/rules/bsl-1.1_2.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsl-1.1 +is_license_text: yes +relevance: 100 +--- + Business Source License 1.1 Terms diff --git a/src/licensedcode/data/rules/bsl-1.1_2.yml b/src/licensedcode/data/rules/bsl-1.1_2.yml deleted file mode 100644 index 83a025a0102..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsl-1.1 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsl-1.1_3.RULE b/src/licensedcode/data/rules/bsl-1.1_3.RULE index 99a62bee64f..e25ef7596a7 100644 --- a/src/licensedcode/data/rules/bsl-1.1_3.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +relevance: 100 +--- + Business Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_3.yml b/src/licensedcode/data/rules/bsl-1.1_3.yml deleted file mode 100644 index 6fb4625ff2d..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsl-1.1_4.RULE b/src/licensedcode/data/rules/bsl-1.1_4.RULE index 23943912c5b..b234a5b48a9 100644 --- a/src/licensedcode/data/rules/bsl-1.1_4.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/getsentry/sentry/blob/master/LICENSE +--- + https://github.com/getsentry/sentry/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_4.yml b/src/licensedcode/data/rules/bsl-1.1_4.yml deleted file mode 100644 index 29d855c92c0..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/getsentry/sentry/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/bsl-1.1_5.RULE b/src/licensedcode/data/rules/bsl-1.1_5.RULE index 4d802855eae..256428ed0b9 100644 --- a/src/licensedcode/data/rules/bsl-1.1_5.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: bsl-1.1 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyright (c) 2017 MariaDB Corporation Ab +ignorable_holders: + - MariaDB Corporation Ab +--- + License text copyright © 2017 MariaDB Corporation Ab, All Rights Reserved. “Business Source License” is a trademark of MariaDB Corporation Ab. Terms diff --git a/src/licensedcode/data/rules/bsl-1.1_5.yml b/src/licensedcode/data/rules/bsl-1.1_5.yml deleted file mode 100644 index 2800f3f5825..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsl-1.1 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyright (c) 2017 MariaDB Corporation Ab -ignorable_holders: - - MariaDB Corporation Ab diff --git a/src/licensedcode/data/rules/bsl-1.1_6.RULE b/src/licensedcode/data/rules/bsl-1.1_6.RULE index ea2c0655b05..cd3b3f40c15 100644 --- a/src/licensedcode/data/rules/bsl-1.1_6.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Business Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_6.yml b/src/licensedcode/data/rules/bsl-1.1_6.yml deleted file mode 100644 index c97a1168f6f..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsl-1.1_7.RULE b/src/licensedcode/data/rules/bsl-1.1_7.RULE index 2a550d09c4a..d7ad0790386 100644 --- a/src/licensedcode/data/rules/bsl-1.1_7.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BUSL-1.1 Business Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_7.yml b/src/licensedcode/data/rules/bsl-1.1_7.yml deleted file mode 100644 index c97a1168f6f..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsl-1.1_8.RULE b/src/licensedcode/data/rules/bsl-1.1_8.RULE index c19bf9d2c61..24e7a61fd03 100644 --- a/src/licensedcode/data/rules/bsl-1.1_8.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: bsl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Business Source License 1.1 BUSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_8.yml b/src/licensedcode/data/rules/bsl-1.1_8.yml deleted file mode 100644 index c97a1168f6f..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsl-1.1_9.RULE b/src/licensedcode/data/rules/bsl-1.1_9.RULE index 3bd06a95390..d8391274bbd 100644 --- a/src/licensedcode/data/rules/bsl-1.1_9.RULE +++ b/src/licensedcode/data/rules/bsl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: bsl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BUSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsl-1.1_9.yml b/src/licensedcode/data/rules/bsl-1.1_9.yml deleted file mode 100644 index f9b8d154b68..00000000000 --- a/src/licensedcode/data/rules/bsl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bsla-no-advert_1.RULE b/src/licensedcode/data/rules/bsla-no-advert_1.RULE index 4d3161db5e8..93c9eccdf98 100644 --- a/src/licensedcode/data/rules/bsla-no-advert_1.RULE +++ b/src/licensedcode/data/rules/bsla-no-advert_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsla-no-advert +is_license_text: yes +relevance: 100 +notes: See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# +--- + # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, diff --git a/src/licensedcode/data/rules/bsla-no-advert_1.yml b/src/licensedcode/data/rules/bsla-no-advert_1.yml deleted file mode 100644 index 8fe329fc154..00000000000 --- a/src/licensedcode/data/rules/bsla-no-advert_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsla-no-advert -is_license_text: yes -relevance: 100 -notes: See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# diff --git a/src/licensedcode/data/rules/bsla-no-advert_2.RULE b/src/licensedcode/data/rules/bsla-no-advert_2.RULE index e9fe76025e1..8f4b38d0ba4 100644 --- a/src/licensedcode/data/rules/bsla-no-advert_2.RULE +++ b/src/licensedcode/data/rules/bsla-no-advert_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsla-no-advert +is_license_text: yes +relevance: 100 +notes: See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# +--- + # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, diff --git a/src/licensedcode/data/rules/bsla-no-advert_2.yml b/src/licensedcode/data/rules/bsla-no-advert_2.yml deleted file mode 100644 index 8fe329fc154..00000000000 --- a/src/licensedcode/data/rules/bsla-no-advert_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsla-no-advert -is_license_text: yes -relevance: 100 -notes: See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# diff --git a/src/licensedcode/data/rules/bsla-no-advert_3.RULE b/src/licensedcode/data/rules/bsla-no-advert_3.RULE index ed4387ab783..2e010e2ddb0 100644 --- a/src/licensedcode/data/rules/bsla-no-advert_3.RULE +++ b/src/licensedcode/data/rules/bsla-no-advert_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bsla-no-advert +is_license_text: yes +relevance: 100 +notes: See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# +ignorable_authors: + - the University of California, Berkeley +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, diff --git a/src/licensedcode/data/rules/bsla-no-advert_3.yml b/src/licensedcode/data/rules/bsla-no-advert_3.yml deleted file mode 100644 index e2421badf12..00000000000 --- a/src/licensedcode/data/rules/bsla-no-advert_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsla-no-advert -is_license_text: yes -relevance: 100 -notes: See https://github.com/mirror/newlib-cygwin/commit/9042d0ce65533a26fc3264206db5828d5692332c# -ignorable_authors: - - the University of California, Berkeley diff --git a/src/licensedcode/data/rules/bsla-no-advert_4.RULE b/src/licensedcode/data/rules/bsla-no-advert_4.RULE index d1727e01465..d18e6f16bd7 100644 --- a/src/licensedcode/data/rules/bsla-no-advert_4.RULE +++ b/src/licensedcode/data/rules/bsla-no-advert_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bsla-no-advert +is_license_text: yes +relevance: 100 +ignorable_authors: + - Carnegie Mellon University +--- + * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, diff --git a/src/licensedcode/data/rules/bsla-no-advert_4.yml b/src/licensedcode/data/rules/bsla-no-advert_4.yml deleted file mode 100644 index 3b724ea50ed..00000000000 --- a/src/licensedcode/data/rules/bsla-no-advert_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsla-no-advert -is_license_text: yes -relevance: 100 -ignorable_authors: - - Carnegie Mellon University diff --git a/src/licensedcode/data/rules/bsla-no-advert_5.RULE b/src/licensedcode/data/rules/bsla-no-advert_5.RULE index 5b3b2793595..67f973c7a7e 100644 --- a/src/licensedcode/data/rules/bsla-no-advert_5.RULE +++ b/src/licensedcode/data/rules/bsla-no-advert_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsla-no-advert +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, diff --git a/src/licensedcode/data/rules/bsla-no-advert_5.yml b/src/licensedcode/data/rules/bsla-no-advert_5.yml deleted file mode 100644 index 89345614525..00000000000 --- a/src/licensedcode/data/rules/bsla-no-advert_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsla-no-advert -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsla_1.RULE b/src/licensedcode/data/rules/bsla_1.RULE index e4c9eaedd31..7dcbe066552 100644 --- a/src/licensedcode/data/rules/bsla_1.RULE +++ b/src/licensedcode/data/rules/bsla_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsla +is_license_text: yes +ignorable_authors: + - the University of California +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, advertising materials, and other @@ -7,4 +14,4 @@ name of the University 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsla_1.yml b/src/licensedcode/data/rules/bsla_1.yml deleted file mode 100644 index b5b13cd6215..00000000000 --- a/src/licensedcode/data/rules/bsla_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsla -is_license_text: yes -ignorable_authors: - - the University of California diff --git a/src/licensedcode/data/rules/bsla_2.RULE b/src/licensedcode/data/rules/bsla_2.RULE index f2189abda5b..090396b94a2 100644 --- a/src/licensedcode/data/rules/bsla_2.RULE +++ b/src/licensedcode/data/rules/bsla_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsla +is_license_text: yes +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are @@ -9,4 +14,4 @@ organization 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsla_2.yml b/src/licensedcode/data/rules/bsla_2.yml deleted file mode 100644 index 3f93a7ab589..00000000000 --- a/src/licensedcode/data/rules/bsla_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsla -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsla_3.RULE b/src/licensedcode/data/rules/bsla_3.RULE index f81028bf696..59869a4948f 100644 --- a/src/licensedcode/data/rules/bsla_3.RULE +++ b/src/licensedcode/data/rules/bsla_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsla +is_license_text: yes +ignorable_authors: + - the University of California, Berkeley +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, @@ -8,4 +15,4 @@ University 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsla_3.yml b/src/licensedcode/data/rules/bsla_3.yml deleted file mode 100644 index 5db0dbac024..00000000000 --- a/src/licensedcode/data/rules/bsla_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsla -is_license_text: yes -ignorable_authors: - - the University of California, Berkeley diff --git a/src/licensedcode/data/rules/bsla_4.RULE b/src/licensedcode/data/rules/bsla_4.RULE index 15a5d1ba716..9c13fe5f46b 100644 --- a/src/licensedcode/data/rules/bsla_4.RULE +++ b/src/licensedcode/data/rules/bsla_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsla +is_license_text: yes +--- + * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, diff --git a/src/licensedcode/data/rules/bsla_4.yml b/src/licensedcode/data/rules/bsla_4.yml deleted file mode 100644 index 3f93a7ab589..00000000000 --- a/src/licensedcode/data/rules/bsla_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsla -is_license_text: yes diff --git a/src/licensedcode/data/rules/bsla_5.RULE b/src/licensedcode/data/rules/bsla_5.RULE index d67b75bbe4f..1fa599d5318 100644 --- a/src/licensedcode/data/rules/bsla_5.RULE +++ b/src/licensedcode/data/rules/bsla_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsla +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, advertising materials, and other materials related to such distribution and use acknowledge that the software was developed by . The name of 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 WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsla_5.yml b/src/licensedcode/data/rules/bsla_5.yml deleted file mode 100644 index 4f7e54d447a..00000000000 --- a/src/licensedcode/data/rules/bsla_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsla -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsla_6.RULE b/src/licensedcode/data/rules/bsla_6.RULE index aba75a396ff..df98ab28af0 100644 --- a/src/licensedcode/data/rules/bsla_6.RULE +++ b/src/licensedcode/data/rules/bsla_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsla +is_license_text: yes +relevance: 100 +--- + # Redistribution and use in source and binary forms are permitted # provided that the above copyright notice and this paragraph are # duplicated in all such forms and that any documentation, diff --git a/src/licensedcode/data/rules/bsla_6.yml b/src/licensedcode/data/rules/bsla_6.yml deleted file mode 100644 index 4f7e54d447a..00000000000 --- a/src/licensedcode/data/rules/bsla_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsla -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bsla_7.RULE b/src/licensedcode/data/rules/bsla_7.RULE index e2aa9088bc8..e9a974fab4d 100644 --- a/src/licensedcode/data/rules/bsla_7.RULE +++ b/src/licensedcode/data/rules/bsla_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsla +is_license_text: yes +ignorable_authors: + - Carnegie Mellon University and The Australian National University +--- + * Redistribution and use in source and binary forms are permitted * provided that the above copyright notice and this paragraph are * duplicated in all such forms and that any documentation, diff --git a/src/licensedcode/data/rules/bsla_7.yml b/src/licensedcode/data/rules/bsla_7.yml deleted file mode 100644 index 1530f72c24b..00000000000 --- a/src/licensedcode/data/rules/bsla_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsla -is_license_text: yes -ignorable_authors: - - Carnegie Mellon University and The Australian National University diff --git a/src/licensedcode/data/rules/bsla_8.RULE b/src/licensedcode/data/rules/bsla_8.RULE index e644f805bf9..5f08b068ec7 100644 --- a/src/licensedcode/data/rules/bsla_8.RULE +++ b/src/licensedcode/data/rules/bsla_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsla +is_license_text: yes +relevance: 99 +notes: bsla entry in Wikipedia +--- + Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, advertising materials, and other materials related diff --git a/src/licensedcode/data/rules/bsla_8.yml b/src/licensedcode/data/rules/bsla_8.yml deleted file mode 100644 index 1b3181e5ecd..00000000000 --- a/src/licensedcode/data/rules/bsla_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsla -is_license_text: yes -relevance: 99 -notes: bsla entry in Wikipedia diff --git a/src/licensedcode/data/rules/bytemark.RULE b/src/licensedcode/data/rules/bytemark.RULE index 575135ad1a9..4d565181137 100644 --- a/src/licensedcode/data/rules/bytemark.RULE +++ b/src/licensedcode/data/rules/bytemark.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bytemark +is_license_notice: yes +minimum_coverage: 10 +--- + ** The source, executable, and documentation files that comprise ** the BYTEmark benchmarks are made available on an "as is" basis. ** This means that we at BYTE Magazine have made every reasonable @@ -9,4 +15,4 @@ ** Furthermore, BYTE Magazine, McGraw-Hill, and all employees ** of McGraw-Hill cannot be held responsible for any damages resulting ** from the use of this code or the results obtained from using -** this code. +** this code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bytemark.yml b/src/licensedcode/data/rules/bytemark.yml deleted file mode 100644 index a407a887f4c..00000000000 --- a/src/licensedcode/data/rules/bytemark.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bytemark -is_license_notice: yes -minimum_coverage: 10 diff --git a/src/licensedcode/data/rules/bytemark_1.RULE b/src/licensedcode/data/rules/bytemark_1.RULE index 0eb7cc6f203..a5db8520905 100644 --- a/src/licensedcode/data/rules/bytemark_1.RULE +++ b/src/licensedcode/data/rules/bytemark_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bytemark +is_license_text: yes +--- + ** DISCLAIMER ** The source, executable, and documentation files that comprise ** the BYTEmark benchmarks are made available on an "as is" basis. diff --git a/src/licensedcode/data/rules/bytemark_1.yml b/src/licensedcode/data/rules/bytemark_1.yml deleted file mode 100644 index be333eea1d2..00000000000 --- a/src/licensedcode/data/rules/bytemark_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bytemark -is_license_text: yes diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_1.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_1.RULE index 3f39c28e098..bee34462af1 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_1.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_1.RULE @@ -1 +1,7 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 100 +--- + licensed under the bzip2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_1.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_1.yml deleted file mode 100644 index 147c3f1e6e2..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_10.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_10.RULE index f179b2acfe7..b6b6b014aa0 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_10.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_10.RULE @@ -1,6 +1,14 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Notice that the above BSD-style license applies to this one file (valgrind.h) only. The entire rest of Valgrind is licensed under the terms of the GNU General Public License, version 2. See the -COPYING file in the source distribution for details. +COPYING file in the source distribution for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_10.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_10.yml deleted file mode 100644 index 26627a2c16a..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_11.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_11.RULE index ac38ddc989e..8aafc37e887 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_11.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_11.RULE @@ -1,5 +1,13 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Notice that the following BSD-style license applies to this one file (valgrind.h) only. The rest of Valgrind is licensed under the terms of the GNU General Public License, version 2, unless otherwise indicated. See the COPYING file in the source -distribution for details. +distribution for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_11.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_11.yml deleted file mode 100644 index 26627a2c16a..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_12.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_12.RULE index 9dac9bf22f7..0df3e940ad0 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_12.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_12.RULE @@ -1,5 +1,13 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Notice that the following BSD-style license applies to this one file (memcheck.h) only. The rest of Valgrind is licensed under the terms of the GNU General Public License, version 2, unless otherwise indicated. See the COPYING file in the source - distribution for details. + distribution for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_12.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_12.yml deleted file mode 100644 index 26627a2c16a..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_13.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_13.RULE index e5bd185e84b..7d581f087c0 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_13.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_13.RULE @@ -1,5 +1,14 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - COPYING +--- + Notice that the above BSD-style license applies to this one file (memcheck.h) only. The entire rest of Valgrind is licensed under the terms of the GNU General Public License, version 2. See the - COPYING file in the source distribution for details. + COPYING file in the source distribution for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_13.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_13.yml deleted file mode 100644 index 693d3151873..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_14.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_14.RULE index 55a7174ff70..adcb52ab537 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_14.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_14.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://zeroc.com/download/bzip2/LICENSE +--- + https://zeroc.com/download/bzip2/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_14.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_14.yml deleted file mode 100644 index 0093dd1a9d1..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://zeroc.com/download/bzip2/LICENSE diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_15.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_15.RULE index d5b99bec03a..60d61eb0048 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_15.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_15.RULE @@ -1,4 +1,17 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - README + - LICENSE +ignorable_authors: + - Julian Seward +ignorable_emails: + - jseward@bzip.org +--- + * This file uses bzip2 library code which is written * by Julian Seward . * See README and LICENSE files in bz/ directory for more information - * about bzip2 library code. + * about bzip2 library code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_15.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_15.yml deleted file mode 100644 index afeb5fee20b..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_15.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - README - - LICENSE -ignorable_authors: - - Julian Seward -ignorable_emails: - - jseward@bzip.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_16.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_16.RULE index 0fd1dc99fbc..2d010bc7c9b 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_16.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - bzlib.h +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_16.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_16.yml deleted file mode 100644 index e1d1cfa6b98..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - bzlib.h diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_17.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_17.RULE index 94d318471d4..ebbea5dfd7a 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_17.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_17.RULE @@ -1,3 +1,15 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyright (c) 1996-2006 Julian R Seward +ignorable_holders: + - Julian R Seward +ignorable_emails: + - jseward@bzip.org +--- + This program, "bzip2", the associated library "libbzip2", and all documentation, are copyright (C) 1996-2006 Julian R Seward. All rights reserved. @@ -76,4 +88,4 @@ To the best of my knowledge, bzip2/libbzip2 does not use any patented algorithms. However, I do not have the resources to carry out a patent search. Therefore I cannot give any - guarantee of the above statement. + guarantee of the above statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_17.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_17.yml deleted file mode 100644 index 28881d5fa9a..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_17.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyright (c) 1996-2006 Julian R Seward -ignorable_holders: - - Julian R Seward -ignorable_emails: - - jseward@bzip.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_18.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_18.RULE index 2f6ba054460..17a33dabf8d 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_18.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + " This program is free software; you can redistribute it and/or modify " it under the terms set out in the LICENSE file, which is included " in the bzip2-1.0.5 source distribution. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_18.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_18.yml deleted file mode 100644 index dccc21696a9..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_19.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_19.RULE index 57b23a93176..918a1dcd66b 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_19.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_19.RULE @@ -1,3 +1,17 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) 1996-2007 Julian Seward +ignorable_holders: + - Julian Seward +ignorable_emails: + - jseward@bzip.org +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_19.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_19.yml deleted file mode 100644 index 17d140da82d..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_19.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) 1996-2007 Julian Seward -ignorable_holders: - - Julian Seward -ignorable_emails: - - jseward@bzip.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_2.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_2.RULE index 49c197f7b73..49467ce529e 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_2.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: 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. @@ -8,4 +13,4 @@ Altered source versions must be plainly marked as such, and must not be misrepre 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 BY THE AUTHOR "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.PATENTS: To the best of my knowledge, bzip2 and libbzip2 do not use any patented algorithms. However, I do not have the resources to carry out a patent search. Therefore I cannot give any guarantee of the above statement. +THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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.PATENTS: To the best of my knowledge, bzip2 and libbzip2 do not use any patented algorithms. However, I do not have the resources to carry out a patent search. Therefore I cannot give any guarantee of the above statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_2.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_2.yml deleted file mode 100644 index 3947dc3af4d..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_20.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_20.RULE index 76675493f2b..b4a99d16cf3 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_20.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_20.RULE @@ -1,3 +1,17 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) 1996-2010 Julian Seward +ignorable_holders: + - Julian Seward +ignorable_emails: + - jseward@bzip.org +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_20.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_20.yml deleted file mode 100644 index 94d5e5d8ae2..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_20.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) 1996-2010 Julian Seward -ignorable_holders: - - Julian Seward -ignorable_emails: - - jseward@bzip.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_21.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_21.RULE index d6468609983..17fd77c5710 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_21.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This program is free software; you can redistribute it and/or modify it under the terms set out in the LICENSE file, which is included in the bzip2-1.0.6 source distribution. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_21.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_21.yml deleted file mode 100644 index dccc21696a9..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_22.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_22.RULE index 94f845f8007..36f61d72870 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_22.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_22.RULE @@ -1,3 +1,17 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) 1996-2010 Julian Seward +ignorable_holders: + - Julian Seward +ignorable_emails: + - jseward@acm.org +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_22.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_22.yml deleted file mode 100644 index ddf9c353fcb..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_22.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) 1996-2010 Julian Seward -ignorable_holders: - - Julian Seward -ignorable_emails: - - jseward@acm.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_23.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_23.RULE index 13ae484f4f3..5960aae9601 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_23.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_23.RULE @@ -1,3 +1,17 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) 1996-2019 Julian Seward +ignorable_holders: + - Julian Seward +ignorable_emails: + - jseward@acm.org +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_23.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_23.yml deleted file mode 100644 index 615490b7e87..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_23.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) 1996-2019 Julian Seward -ignorable_holders: - - Julian Seward -ignorable_emails: - - jseward@acm.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_24.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_24.RULE index 9f759224e36..fc465858806 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_24.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This program is free software; you can redistribute it and/or modify it under the terms set out in the LICENSE file, which is included in the bzip2 source distribution. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_24.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_24.yml deleted file mode 100644 index dccc21696a9..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_25.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_25.RULE index 6150a5fece9..438e5eb36e3 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_25.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_25.RULE @@ -1,3 +1,17 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) Julian Seward +ignorable_holders: + - Julian Seward +ignorable_emails: + - jseward@bzip.org +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_25.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_25.yml deleted file mode 100644 index a5be0b0b7c7..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_25.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) Julian Seward -ignorable_holders: - - Julian Seward -ignorable_emails: - - jseward@bzip.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_26.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_26.RULE index dcf7ca37338..0f98bfe5180 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_26.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This program is free software; you can redistribute it and/or modify it under the terms set out in the LICENSE file, which is included in the source distribution. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_26.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_26.yml deleted file mode 100644 index dccc21696a9..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_27.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_27.RULE index 25d420abdae..f3521f121e7 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_27.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_27.RULE @@ -1,3 +1,17 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) Julian Seward +ignorable_holders: + - Julian Seward +ignorable_emails: + - jseward@acm.org +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_27.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_27.yml deleted file mode 100644 index 9ca6e748210..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_27.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) Julian Seward -ignorable_holders: - - Julian Seward -ignorable_emails: - - jseward@acm.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_28.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_28.RULE index 72a91d25242..f4584228a84 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_28.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_28.RULE @@ -1,2 +1,12 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: https://github.com/btigi/iiInfinityEngine/blob/f859ee0af9d4fac1ca6cad38a4698dd942f2d2b9/License/License.bzip2.txt#L6 +ignorable_authors: + - Julian Seward +--- + The original BZip2 was created by Julian Seward, and is licensed under the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_28.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_28.yml deleted file mode 100644 index 0b96e2e7990..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_28.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: https://github.com/btigi/iiInfinityEngine/blob/f859ee0af9d4fac1ca6cad38a4698dd942f2d2b9/License/License.bzip2.txt#L6 -ignorable_authors: - - Julian Seward diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_29.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_29.RULE index 6a3220f22f5..193dea2d274 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_29.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_29.RULE @@ -1,3 +1,17 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) 1996-2019 Julian Seward +ignorable_holders: + - Julian Seward +ignorable_emails: + - jseward@acm.org +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_29.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_29.yml deleted file mode 100644 index 615490b7e87..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_29.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) 1996-2019 Julian Seward -ignorable_holders: - - Julian Seward -ignorable_emails: - - jseward@acm.org diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_3.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_3.RULE index a14eba48b8f..6715e5ff2d8 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_3.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_3.RULE @@ -1 +1,7 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 95 +--- + The bzip2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_3.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_3.yml deleted file mode 100644 index 9be3fdbb1fe..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_30.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_30.RULE index 1cb92028d56..58dee24d9b9 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_30.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_30.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + bzip2 and libbzip2 License v1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_30.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_30.yml deleted file mode 100644 index 7105d761ab8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_31.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_31.RULE index 027ed39e457..dce4d8266b3 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_31.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_31.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: bzip2 and libbzip2 License v1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_31.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_31.yml deleted file mode 100644 index 7105d761ab8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_32.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_32.RULE index 2de6ff0d3e5..05050d389d7 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_32.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_32.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + bzip2-1.0.5 bzip2 and libbzip2 License v1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_32.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_32.yml deleted file mode 100644 index 7105d761ab8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_33.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_33.RULE index 8520099c1fc..dd0c25d3cca 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_33.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_33.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + bzip2 and libbzip2 License v1.0.5 bzip2-1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_33.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_33.yml deleted file mode 100644 index 7105d761ab8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_34.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_34.RULE index c6dcb91c723..0e859176f53 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_34.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_34.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: bzip2-1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_34.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_34.yml deleted file mode 100644 index 17ba9c131d4..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_35.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_35.RULE index 9b55b0b4255..486bb5e3ada 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_35.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_35.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: bzip2 and libbzip2 License v1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_35.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_35.yml deleted file mode 100644 index 17ba9c131d4..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_36.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_36.RULE index b4d2a059634..dd426b6cac9 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_36.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_36.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: bzip2-1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_36.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_36.yml deleted file mode 100644 index 17ba9c131d4..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_37.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_37.RULE index 16c4f9f2bd5..9ccb315df2d 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_37.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_37.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + bzip2 and libbzip2 License v1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_37.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_37.yml deleted file mode 100644 index 7105d761ab8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_38.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_38.RULE index 3f4b3a336e1..20db6b6a254 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_38.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_38.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: bzip2 and libbzip2 License v1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_38.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_38.yml deleted file mode 100644 index 7105d761ab8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_38.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_39.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_39.RULE index f1cc4e5cfec..769d75953de 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_39.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_39.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + bzip2-1.0.6 bzip2 and libbzip2 License v1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_39.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_39.yml deleted file mode 100644 index 7105d761ab8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_39.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_4.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_4.RULE index 1259aa74e0c..1376e30b090 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_4.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_4.RULE @@ -1 +1,6 @@ -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. • The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. • Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. • 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 BY THE AUTHOR "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. PATENTS: To the best of my knowledge, bzip2 and libbzip2 do not use any patented algorithms. However, I do not have the resources to carry out a patent search. Therefore I cannot give any guarantee of the above statement. +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: 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. • The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. • Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. • 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 BY THE AUTHOR "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. PATENTS: To the best of my knowledge, bzip2 and libbzip2 do not use any patented algorithms. However, I do not have the resources to carry out a patent search. Therefore I cannot give any guarantee of the above statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_4.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_4.yml deleted file mode 100644 index 3947dc3af4d..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_40.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_40.RULE index 7aef1f0d57a..bdcea970f34 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_40.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_40.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + bzip2 and libbzip2 License v1.0.6 bzip2-1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_40.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_40.yml deleted file mode 100644 index 7105d761ab8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_40.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_41.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_41.RULE index 6ddc0d15dc3..8c9f558cf69 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_41.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_41.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: bzip2-1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_41.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_41.yml deleted file mode 100644 index 17ba9c131d4..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_42.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_42.RULE index f6b2f4370eb..fdb91318090 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_42.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_42.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: bzip2 and libbzip2 License v1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_42.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_42.yml deleted file mode 100644 index 17ba9c131d4..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_42.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_43.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_43.RULE index 5b296e96e46..f2f97b2f40b 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_43.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_43.RULE @@ -1 +1,10 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: bzip2-1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_43.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_43.yml deleted file mode 100644 index 17ba9c131d4..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_43.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_44.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_44.RULE index 7bcad6389ba..2f4bce7d64c 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_44.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_44.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/bzip2-1.0.6 +--- + https://licenses.nuget.org/bzip2-1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_44.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_44.yml deleted file mode 100644 index 643c17e47e7..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/bzip2-1.0.6 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_45.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_45.RULE index c5b7a10b12e..400587f3c3c 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_45.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_45.RULE @@ -1 +1,7 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/bzip2-1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_45.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_45.yml deleted file mode 100644 index 147c3f1e6e2..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_46.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_46.RULE index 7901ecf9f64..9d63aa9cb39 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_46.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_46.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/bzip2-1.0.6 +--- + {{bzip2-1.0.6}} https://spdx.org/licenses/bzip2-1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_46.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_46.yml deleted file mode 100644 index 5f5542e3c2e..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/bzip2-1.0.6 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_47.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_47.RULE index 77e51d7d0cb..f75e074c68a 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_47.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_47.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/bzip2-1.0.5 +--- + LICENSE {{bzip2-1.0.5}} https://spdx.org/licenses/bzip2-1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_47.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_47.yml deleted file mode 100644 index d881c9f93d8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/bzip2-1.0.5 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_48.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_48.RULE index 728b9d13f3e..e59f339ffb4 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_48.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_48.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/bzip2-1.0.5 +--- + {{bzip2-1.0.5}} https://spdx.org/licenses/bzip2-1.0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_48.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_48.yml deleted file mode 100644 index d881c9f93d8..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/bzip2-1.0.5 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_49.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_49.RULE index 5220d8be94f..f3d4b9e0c10 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_49.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_49.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/bzip2-1.0.6 +--- + LICENSE {{bzip2-1.0.6}} https://spdx.org/licenses/bzip2-1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_49.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_49.yml deleted file mode 100644 index 5f5542e3c2e..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/bzip2-1.0.6 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_5.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_5.RULE index 90fc75a71d1..e5671d23fcd 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_5.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - README +--- + This file is part of bzip2/libbzip2, a program and library for lossless, block-sorting data compression. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_5.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_5.yml deleted file mode 100644 index ab965f48539..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - README diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_6.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_6.RULE index 3f6159513c1..b783b51a6a0 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_6.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Notice that the following BSD-style license applies to this one file (callgrind.h) only. The rest of Valgrind is licensed under the terms of the GNU General Public License, version 2, unless @@ -46,5 +54,4 @@ Notice that the above BSD-style license applies to this one file (callgrind.h) only. The entire rest of Valgrind is licensed under the terms of the GNU General Public License, version 2. See the - COPYING file in the source distribution for details. - + COPYING file in the source distribution for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_6.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_6.yml deleted file mode 100644 index 26627a2c16a..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_7.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_7.RULE index e89dc13cae7..6d9a4a1b5c2 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_7.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_7.RULE @@ -1,4 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 80 +notes: seen in Valgrind. This is bzip2-libbzip-2010 and not a bsd-new. +--- + are distributed under a BSD-style license, so you may include them in your -code without worrying about license conflicts. \ No newline at end of file +code without worrying about license conflicts. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_7.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_7.yml deleted file mode 100644 index b7cc86922b3..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 80 -notes: seen in Valgrind. This is bzip2-libbzip-2010 and not a bsd-new. diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_8.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_8.RULE index 8fd63ef84f4..5658ef75e9f 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_8.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Notice that the following BSD-style license applies to this one file (valgrind.h) only. The rest of Valgrind is licensed under the terms of the GNU General Public License, version 2, unless @@ -46,4 +54,4 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Notice that the above BSD-style license applies to this one file (valgrind.h) only. The entire rest of Valgrind is licensed under the terms of the GNU General Public License, version 2. See the -COPYING file in the source distribution for details. +COPYING file in the source distribution for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_8.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_8.yml deleted file mode 100644 index 26627a2c16a..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_9.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_9.RULE index 05f3a21c49c..c6a301a0544 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_9.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_9.RULE @@ -1,3 +1,15 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_copyrights: + - Copyright (c) 2000-2017 Julian Seward +ignorable_holders: + - Julian Seward +--- + Notice that the following BSD-style license applies to this one file (memcheck.h) only. The rest of Valgrind is licensed under the terms of the GNU General Public License, version 2, unless @@ -47,4 +59,4 @@ Notice that the above BSD-style license applies to this one file (memcheck.h) only. The entire rest of Valgrind is licensed under the terms of the GNU General Public License, version 2. See the - COPYING file in the source distribution for details. + COPYING file in the source distribution for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_9.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_9.yml deleted file mode 100644 index 189ddc77a54..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_9.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_copyrights: - - Copyright (c) 2000-2017 Julian Seward -ignorable_holders: - - Julian Seward diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_nuget_url_1.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_nuget_url_1.RULE index 6d2c1c90dc5..50bef11cee4 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/coapp-packages/bzip2/master/LICENSE +--- + https://raw.github.com/coapp-packages/bzip2/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_nuget_url_1.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_nuget_url_1.yml deleted file mode 100644 index a7e00507fb6..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/coapp-packages/bzip2/master/LICENSE diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_url_1.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_url_1.RULE index deefe1080ac..63ae4b62643 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_url_1.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bzip2-1.0.6 +--- + https://spdx.org/licenses/bzip2-1.0.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_url_1.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_url_1.yml deleted file mode 100644 index d4386744dc1..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bzip2-1.0.6 diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_url_2.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_url_2.RULE index 44a29d3a36c..b8c5e397957 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_url_2.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bzip2-1.0.6.html +--- + https://spdx.org/licenses/bzip2-1.0.6.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_url_2.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_url_2.yml deleted file mode 100644 index e24f852239d..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bzip2-1.0.6.html diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_valgrind_1.RULE b/src/licensedcode/data/rules/bzip2-libbzip-2010_valgrind_1.RULE index 44484002c50..9d1435cbb01 100644 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_valgrind_1.RULE +++ b/src/licensedcode/data/rules/bzip2-libbzip-2010_valgrind_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: bzip2-libbzip-2010 +is_license_text: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +--- + Notice that the following BSD-style license applies to this one file only. The rest of Valgrind is licensed under the terms of the GNU General Public License, version 2, unless diff --git a/src/licensedcode/data/rules/bzip2-libbzip-2010_valgrind_1.yml b/src/licensedcode/data/rules/bzip2-libbzip-2010_valgrind_1.yml deleted file mode 100644 index 6b65c7b1008..00000000000 --- a/src/licensedcode/data/rules/bzip2-libbzip-2010_valgrind_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_text: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/c-fsl-1.1_1.RULE b/src/licensedcode/data/rules/c-fsl-1.1_1.RULE index 847ab70c775..a0dd4d949dd 100644 --- a/src/licensedcode/data/rules/c-fsl-1.1_1.RULE +++ b/src/licensedcode/data/rules/c-fsl-1.1_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: c-fsl-1.1 +is_license_notice: yes +ignorable_urls: + - https://www.elstel.org/license/C-FSL-v1.0.txt +--- + This program may be used under the terms of C-FSL v1.0; you need to keep this license as available under https://www.elstel.org/license/C-FSL-v1.0.txt attached to all other files required by. diff --git a/src/licensedcode/data/rules/c-fsl-1.1_1.yml b/src/licensedcode/data/rules/c-fsl-1.1_1.yml deleted file mode 100644 index 32b6769ec7b..00000000000 --- a/src/licensedcode/data/rules/c-fsl-1.1_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: c-fsl-1.1 -is_license_notice: yes -ignorable_urls: - - https://www.elstel.org/license/C-FSL-v1.0.txt diff --git a/src/licensedcode/data/rules/c-uda-1.0_1.RULE b/src/licensedcode/data/rules/c-uda-1.0_1.RULE index 3ea89f9ce55..f894930eb91 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_1.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: c-uda-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Computational Use of Data Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_1.yml b/src/licensedcode/data/rules/c-uda-1.0_1.yml deleted file mode 100644 index a0193f3586b..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: c-uda-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/c-uda-1.0_10.RULE b/src/licensedcode/data/rules/c-uda-1.0_10.RULE index 7d6a9460aca..4cc246274c6 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_10.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: c-uda-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/C-UDA-1.0 +--- + {{C-UDA-1.0}} https://spdx.org/licenses/C-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_10.yml b/src/licensedcode/data/rules/c-uda-1.0_10.yml deleted file mode 100644 index eb2761ea43c..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: c-uda-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/C-UDA-1.0 diff --git a/src/licensedcode/data/rules/c-uda-1.0_11.RULE b/src/licensedcode/data/rules/c-uda-1.0_11.RULE index 3b187a4c13f..70956bdabbb 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_11.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: c-uda-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/C-UDA-1.0 +--- + LICENSE {{C-UDA-1.0}} https://spdx.org/licenses/C-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_11.yml b/src/licensedcode/data/rules/c-uda-1.0_11.yml deleted file mode 100644 index eb2761ea43c..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: c-uda-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/C-UDA-1.0 diff --git a/src/licensedcode/data/rules/c-uda-1.0_2.RULE b/src/licensedcode/data/rules/c-uda-1.0_2.RULE index 9881c9af1e6..7304c877dfe 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_2.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: c-uda-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Computational Use of Data Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_2.yml b/src/licensedcode/data/rules/c-uda-1.0_2.yml deleted file mode 100644 index a0193f3586b..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: c-uda-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/c-uda-1.0_3.RULE b/src/licensedcode/data/rules/c-uda-1.0_3.RULE index 63e4fbb1d59..41443705b2b 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_3.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: c-uda-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + C-UDA-1.0 Computational Use of Data Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_3.yml b/src/licensedcode/data/rules/c-uda-1.0_3.yml deleted file mode 100644 index a0193f3586b..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: c-uda-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/c-uda-1.0_4.RULE b/src/licensedcode/data/rules/c-uda-1.0_4.RULE index 5ec549e623f..7aefd6393de 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_4.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: c-uda-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Computational Use of Data Agreement v1.0 C-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_4.yml b/src/licensedcode/data/rules/c-uda-1.0_4.yml deleted file mode 100644 index a0193f3586b..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: c-uda-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/c-uda-1.0_5.RULE b/src/licensedcode/data/rules/c-uda-1.0_5.RULE index fd113831a70..b428c3f774c 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_5.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: c-uda-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: C-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_5.yml b/src/licensedcode/data/rules/c-uda-1.0_5.yml deleted file mode 100644 index a33a6f3ad72..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: c-uda-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/c-uda-1.0_6.RULE b/src/licensedcode/data/rules/c-uda-1.0_6.RULE index 8e4dae8c1e2..8ba2267b84a 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_6.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: c-uda-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Computational Use of Data Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_6.yml b/src/licensedcode/data/rules/c-uda-1.0_6.yml deleted file mode 100644 index a33a6f3ad72..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: c-uda-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/c-uda-1.0_7.RULE b/src/licensedcode/data/rules/c-uda-1.0_7.RULE index 9b07a444d2d..2873c57dd16 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_7.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: c-uda-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: C-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_7.yml b/src/licensedcode/data/rules/c-uda-1.0_7.yml deleted file mode 100644 index a33a6f3ad72..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: c-uda-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/c-uda-1.0_8.RULE b/src/licensedcode/data/rules/c-uda-1.0_8.RULE index 22a7b35b471..5154997d43c 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_8.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: c-uda-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/C-UDA-1.0 +--- + https://licenses.nuget.org/C-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_8.yml b/src/licensedcode/data/rules/c-uda-1.0_8.yml deleted file mode 100644 index c073d423407..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: c-uda-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/C-UDA-1.0 diff --git a/src/licensedcode/data/rules/c-uda-1.0_9.RULE b/src/licensedcode/data/rules/c-uda-1.0_9.RULE index 256782ef338..9161a374066 100644 --- a/src/licensedcode/data/rules/c-uda-1.0_9.RULE +++ b/src/licensedcode/data/rules/c-uda-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: c-uda-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/C-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/c-uda-1.0_9.yml b/src/licensedcode/data/rules/c-uda-1.0_9.yml deleted file mode 100644 index 3fecd2f8633..00000000000 --- a/src/licensedcode/data/rules/c-uda-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: c-uda-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1.RULE b/src/licensedcode/data/rules/ca-tosl-1.1.RULE index 47f37276310..a52732a0de9 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ca-tosl1.1.php +--- + http://www.opensource.org/licenses/ca-tosl1.1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1.SPDX.RULE b/src/licensedcode/data/rules/ca-tosl-1.1.SPDX.RULE index 6dc5af2e189..30d2548cdad 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ca-tosl-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://www.ca.com/catrdmrk.htm +ignorable_emails: + - opensource@ca.com +--- + Computer Associates Trusted Open Source License Version 1.1 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1.SPDX.yml b/src/licensedcode/data/rules/ca-tosl-1.1.SPDX.yml deleted file mode 100644 index aa224c4192a..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://www.ca.com/catrdmrk.htm -ignorable_emails: - - opensource@ca.com diff --git a/src/licensedcode/data/rules/ca-tosl-1.1.yml b/src/licensedcode/data/rules/ca-tosl-1.1.yml deleted file mode 100644 index d96d44ebbbd..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ca-tosl1.1.php diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_1.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_1.RULE index 764d6e05f62..73da2052386 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_1.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ca-tosl1.1.php +--- + http://opensource.org/licenses/ca-tosl1.1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_1.yml b/src/licensedcode/data/rules/ca-tosl-1.1_1.yml deleted file mode 100644 index 2463a005bdf..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ca-tosl1.1.php diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_10.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_10.RULE index 5c6472bbc7e..5608b874d41 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_10.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CATOSL-1.1 +--- + https://licenses.nuget.org/CATOSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_10.yml b/src/licensedcode/data/rules/ca-tosl-1.1_10.yml deleted file mode 100644 index 32cdb9e1d10..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CATOSL-1.1 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_11.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_11.RULE index 869ab359fa0..1ea4bb52d1d 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_11.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_11.RULE @@ -1 +1,7 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CATOSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_11.yml b/src/licensedcode/data/rules/ca-tosl-1.1_11.yml deleted file mode 100644 index 89b809758c5..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_12.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_12.RULE index 0d2e47c4c54..d3d6328c82d 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_12.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CATOSL-1.1 +--- + LICENSE {{CATOSL-1.1}} https://spdx.org/licenses/CATOSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_12.yml b/src/licensedcode/data/rules/ca-tosl-1.1_12.yml deleted file mode 100644 index 5b4df3b3293..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CATOSL-1.1 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_13.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_13.RULE index 03e390fdb69..95ed78ecccb 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_13.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CATOSL-1.1 +--- + {{CATOSL-1.1}} https://spdx.org/licenses/CATOSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_13.yml b/src/licensedcode/data/rules/ca-tosl-1.1_13.yml deleted file mode 100644 index 5b4df3b3293..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CATOSL-1.1 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_2.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_2.RULE index 379652d1835..32c35773325 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_2.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +--- + Computer Associates Trusted Open Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_2.yml b/src/licensedcode/data/rules/ca-tosl-1.1_2.yml deleted file mode 100644 index 89b809758c5..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_3.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_3.RULE index e61a713bad7..37b465af5a2 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_3.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +--- + Computer Associates Trusted Open Source License -Version 1.1 +Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_3.yml b/src/licensedcode/data/rules/ca-tosl-1.1_3.yml deleted file mode 100644 index 89b809758c5..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_4.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_4.RULE index ed5bdd59fd4..43cd4004566 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_4.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +--- + CATOSL-1.1 Computer Associates Trusted Open Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_4.yml b/src/licensedcode/data/rules/ca-tosl-1.1_4.yml deleted file mode 100644 index 89b809758c5..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_5.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_5.RULE index 34fb6eb9572..ffed159436c 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_5.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Computer Associates Trusted Open Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_5.yml b/src/licensedcode/data/rules/ca-tosl-1.1_5.yml deleted file mode 100644 index d946e7320b6..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_6.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_6.RULE index fc6abca847f..a71989b6553 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_6.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Computer Associates Trusted Open Source License 1.1 CATOSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_6.yml b/src/licensedcode/data/rules/ca-tosl-1.1_6.yml deleted file mode 100644 index d946e7320b6..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_7.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_7.RULE index 38af4c3e352..e995d1c9f62 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_7.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ca-tosl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CATOSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_7.yml b/src/licensedcode/data/rules/ca-tosl-1.1_7.yml deleted file mode 100644 index d797273bf93..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_8.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_8.RULE index 9de8e6dda40..6a15a4e263c 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_8.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ca-tosl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Computer Associates Trusted Open Source License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_8.yml b/src/licensedcode/data/rules/ca-tosl-1.1_8.yml deleted file mode 100644 index d797273bf93..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_9.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_9.RULE index 16f23e40e36..66c379ec36e 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_9.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: ca-tosl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CATOSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_9.yml b/src/licensedcode/data/rules/ca-tosl-1.1_9.yml deleted file mode 100644 index d797273bf93..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_url_1.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_url_1.RULE index c6a3da7a177..63270854ca0 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/catosl-1.1 +--- + https://spdx.org/licenses/catosl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_url_1.yml b/src/licensedcode/data/rules/ca-tosl-1.1_url_1.yml deleted file mode 100644 index 2bae784a25c..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/catosl-1.1 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_url_2.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_url_2.RULE index ee4926460a5..b8fdc341d92 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/catosl-1.1.html +--- + https://spdx.org/licenses/catosl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_url_2.yml b/src/licensedcode/data/rules/ca-tosl-1.1_url_2.yml deleted file mode 100644 index 5fdf04e1139..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/catosl-1.1.html diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_70.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_70.RULE index 0d84fcab48e..857997c2a22 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_70.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_70.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/catosl-1.1 +--- + http://opensource.org/licenses/catosl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_70.yml b/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_70.yml deleted file mode 100644 index 32ee45ef026..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/catosl-1.1 diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_71.RULE b/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_71.RULE index 3d2c3e5eeb1..1de24cde0f1 100644 --- a/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_71.RULE +++ b/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_71.RULE @@ -1 +1,9 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/catosl-1.1 +--- + https://opensource.org/licenses/catosl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_71.yml b/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_71.yml deleted file mode 100644 index 9a97ef53377..00000000000 --- a/src/licensedcode/data/rules/ca-tosl-1.1_url_glc_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/catosl-1.1 diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_1.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_1.RULE index 6478c2f8d6a..dda64772e7c 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_1.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Cryptographic Autonomy License 1.0 (Combined Work Exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_1.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_1.yml deleted file mode 100644 index d9cd757dfc7..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_10.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_10.RULE index 00dd22ffb9d..706c1597b9e 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_10.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CAL-1.0-Combined-Work-Exception +--- + https://licenses.nuget.org/CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_10.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_10.yml deleted file mode 100644 index 1cf64923683..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CAL-1.0-Combined-Work-Exception diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_11.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_11.RULE index 32cc562c6cf..ed32121ec04 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_11.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_11.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_11.yml deleted file mode 100644 index 453d3494b5b..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_12.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_12.RULE index 276e4b9c391..2c692b44fe6 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_12.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception +--- + LICENSE {{CAL-1.0-Combined-Work-Exception}} https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_12.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_12.yml deleted file mode 100644 index 27ce40294bc..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_13.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_13.RULE index 39615d5cf93..26ea36f7ecf 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_13.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception +--- + {{CAL-1.0-Combined-Work-Exception}} https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_13.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_13.yml deleted file mode 100644 index 27ce40294bc..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_2.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_2.RULE index e1b4ecfa99d..807a42cf6ef 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_2.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Cryptographic Autonomy License 1.0 (Combined Work Exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_2.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_2.yml deleted file mode 100644 index d9cd757dfc7..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_3.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_3.RULE index 157aa92ca85..40a5066279f 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_3.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CAL-1.0-Combined-Work-Exception Cryptographic Autonomy License 1.0 (Combined Work Exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_3.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_3.yml deleted file mode 100644 index d9cd757dfc7..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_4.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_4.RULE index 0b286239db0..76b64a3982e 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_4.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Cryptographic Autonomy License 1.0 (Combined Work Exception) CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_4.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_4.yml deleted file mode 100644 index d9cd757dfc7..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_5.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_5.RULE index ff7f647cd58..8f575863d3f 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_5.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_5.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_5.yml deleted file mode 100644 index afe8f1d9a6d..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_6.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_6.RULE index 151242065e6..6f675cd49cf 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_6.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Cryptographic Autonomy License 1.0 (Combined Work Exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_6.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_6.yml deleted file mode 100644 index afe8f1d9a6d..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_7.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_7.RULE index c7b60907f61..9d7863f624f 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_7.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_7.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_7.yml deleted file mode 100644 index afe8f1d9a6d..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_8.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_8.RULE index 0f7d06b3b87..25ca17973e9 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_8.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_reference: yes +relevance: 100 +--- + CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_8.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_8.yml deleted file mode 100644 index 453d3494b5b..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_9.RULE b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_9.RULE index 8198c004550..654eceaaec6 100644 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_9.RULE +++ b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cal-1.0-combined-work-exception +is_license_text: yes +--- + The Cryptographic Autonomy License, v. 1.0, with Combined Work Exception 1. Purpose diff --git a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_9.yml b/src/licensedcode/data/rules/cal-1.0-combined-work-exception_9.yml deleted file mode 100644 index 35ea1e0a2f1..00000000000 --- a/src/licensedcode/data/rules/cal-1.0-combined-work-exception_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cal-1.0-combined-work-exception -is_license_text: yes diff --git a/src/licensedcode/data/rules/cal-1.0_1.RULE b/src/licensedcode/data/rules/cal-1.0_1.RULE index 08f794e6eff..cb1b2e0ecad 100644 --- a/src/licensedcode/data/rules/cal-1.0_1.RULE +++ b/src/licensedcode/data/rules/cal-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cal-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Cryptographic Autonomy License version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_1.yml b/src/licensedcode/data/rules/cal-1.0_1.yml deleted file mode 100644 index ccb889f8771..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cal-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cal-1.0_10.RULE b/src/licensedcode/data/rules/cal-1.0_10.RULE index d42d3e3acf6..66c67e8d058 100644 --- a/src/licensedcode/data/rules/cal-1.0_10.RULE +++ b/src/licensedcode/data/rules/cal-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + CAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_10.yml b/src/licensedcode/data/rules/cal-1.0_10.yml deleted file mode 100644 index 2db7370f235..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cal-1.0_11.RULE b/src/licensedcode/data/rules/cal-1.0_11.RULE index c40a54190d7..1d6a0a7e178 100644 --- a/src/licensedcode/data/rules/cal-1.0_11.RULE +++ b/src/licensedcode/data/rules/cal-1.0_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cal-1.0 +is_license_text: yes +--- + The Cryptographic Autonomy License, v. 1.0 1. Purpose diff --git a/src/licensedcode/data/rules/cal-1.0_11.yml b/src/licensedcode/data/rules/cal-1.0_11.yml deleted file mode 100644 index 7951dc43b03..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cal-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cal-1.0_12.RULE b/src/licensedcode/data/rules/cal-1.0_12.RULE index a74a1e79792..3d4efb58496 100644 --- a/src/licensedcode/data/rules/cal-1.0_12.RULE +++ b/src/licensedcode/data/rules/cal-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CAL-1.0 +--- + https://licenses.nuget.org/CAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_12.yml b/src/licensedcode/data/rules/cal-1.0_12.yml deleted file mode 100644 index e03e9f38352..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CAL-1.0 diff --git a/src/licensedcode/data/rules/cal-1.0_13.RULE b/src/licensedcode/data/rules/cal-1.0_13.RULE index ce6eacd464e..b4313238b5f 100644 --- a/src/licensedcode/data/rules/cal-1.0_13.RULE +++ b/src/licensedcode/data/rules/cal-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_13.yml b/src/licensedcode/data/rules/cal-1.0_13.yml deleted file mode 100644 index 0d0ba7a3191..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cal-1.0_14.RULE b/src/licensedcode/data/rules/cal-1.0_14.RULE index 0f2e9b6ce9f..6850c47a131 100644 --- a/src/licensedcode/data/rules/cal-1.0_14.RULE +++ b/src/licensedcode/data/rules/cal-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CAL-1.0 +--- + {{CAL-1.0}} https://spdx.org/licenses/CAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_14.yml b/src/licensedcode/data/rules/cal-1.0_14.yml deleted file mode 100644 index a95c52caeee..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CAL-1.0 diff --git a/src/licensedcode/data/rules/cal-1.0_15.RULE b/src/licensedcode/data/rules/cal-1.0_15.RULE index 5f341b9e8dc..f32dda0a343 100644 --- a/src/licensedcode/data/rules/cal-1.0_15.RULE +++ b/src/licensedcode/data/rules/cal-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CAL-1.0 +--- + LICENSE {{CAL-1.0}} https://spdx.org/licenses/CAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_15.yml b/src/licensedcode/data/rules/cal-1.0_15.yml deleted file mode 100644 index a95c52caeee..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CAL-1.0 diff --git a/src/licensedcode/data/rules/cal-1.0_2.RULE b/src/licensedcode/data/rules/cal-1.0_2.RULE index f2e4ab23962..c8446dd6d47 100644 --- a/src/licensedcode/data/rules/cal-1.0_2.RULE +++ b/src/licensedcode/data/rules/cal-1.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cal-1.0 +is_license_text: yes +relevance: 100 +--- + # The Cryptographic Autonomy License, v. 1.0 *This Cryptographic Autonomy License (the "License") applies to any Work whose diff --git a/src/licensedcode/data/rules/cal-1.0_2.yml b/src/licensedcode/data/rules/cal-1.0_2.yml deleted file mode 100644 index 46b987b22f0..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cal-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cal-1.0_3.RULE b/src/licensedcode/data/rules/cal-1.0_3.RULE index 02a1589a4f4..730d7350ad4 100644 --- a/src/licensedcode/data/rules/cal-1.0_3.RULE +++ b/src/licensedcode/data/rules/cal-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Cryptographic Autonomy License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_3.yml b/src/licensedcode/data/rules/cal-1.0_3.yml deleted file mode 100644 index ddadb137c16..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0_4.RULE b/src/licensedcode/data/rules/cal-1.0_4.RULE index b7cf947f979..30bf403cda8 100644 --- a/src/licensedcode/data/rules/cal-1.0_4.RULE +++ b/src/licensedcode/data/rules/cal-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Cryptographic Autonomy License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_4.yml b/src/licensedcode/data/rules/cal-1.0_4.yml deleted file mode 100644 index ddadb137c16..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0_5.RULE b/src/licensedcode/data/rules/cal-1.0_5.RULE index fc2057b679d..f9e25ce5aa9 100644 --- a/src/licensedcode/data/rules/cal-1.0_5.RULE +++ b/src/licensedcode/data/rules/cal-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CAL-1.0 Cryptographic Autonomy License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_5.yml b/src/licensedcode/data/rules/cal-1.0_5.yml deleted file mode 100644 index ddadb137c16..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0_6.RULE b/src/licensedcode/data/rules/cal-1.0_6.RULE index c9b9e5ac05b..3b7d3e36af2 100644 --- a/src/licensedcode/data/rules/cal-1.0_6.RULE +++ b/src/licensedcode/data/rules/cal-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Cryptographic Autonomy License 1.0 CAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_6.yml b/src/licensedcode/data/rules/cal-1.0_6.yml deleted file mode 100644 index ddadb137c16..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0_7.RULE b/src/licensedcode/data/rules/cal-1.0_7.RULE index a607aa89eb1..4738335f3a1 100644 --- a/src/licensedcode/data/rules/cal-1.0_7.RULE +++ b/src/licensedcode/data/rules/cal-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_7.yml b/src/licensedcode/data/rules/cal-1.0_7.yml deleted file mode 100644 index 3d9bb122a8a..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0_8.RULE b/src/licensedcode/data/rules/cal-1.0_8.RULE index cc8a4341d53..3fee5ef03e3 100644 --- a/src/licensedcode/data/rules/cal-1.0_8.RULE +++ b/src/licensedcode/data/rules/cal-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Cryptographic Autonomy License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_8.yml b/src/licensedcode/data/rules/cal-1.0_8.yml deleted file mode 100644 index 3d9bb122a8a..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0_9.RULE b/src/licensedcode/data/rules/cal-1.0_9.RULE index ce56513d2f3..10b94e4cafa 100644 --- a/src/licensedcode/data/rules/cal-1.0_9.RULE +++ b/src/licensedcode/data/rules/cal-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cal-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_9.yml b/src/licensedcode/data/rules/cal-1.0_9.yml deleted file mode 100644 index 3d9bb122a8a..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cal-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_1.RULE b/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_1.RULE index 479a602a31a..2d2532f647e 100644 --- a/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_1.RULE +++ b/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cal-1.0 WITH cal-1.0-combined-work-exception +is_license_notice: yes +relevance: 100 +--- + Licensed under the Cryptographic Autonomy License version 1.0, with Combined Work Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_1.yml b/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_1.yml deleted file mode 100644 index 355aa381503..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cal-1.0 WITH cal-1.0-combined-work-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_2.RULE b/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_2.RULE index fff63106f95..e61aea790c3 100644 --- a/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_2.RULE +++ b/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cal-1.0 WITH cal-1.0-combined-work-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + cal-1.0 WITH CAL-1.0-Combined-Work-Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_2.yml b/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_2.yml deleted file mode 100644 index 1cd5cecaec0..00000000000 --- a/src/licensedcode/data/rules/cal-1.0_with_cal-1.0-combined-work-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cal-1.0 WITH cal-1.0-combined-work-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/caldera_1.RULE b/src/licensedcode/data/rules/caldera_1.RULE index 7d9a2c1dcb8..4d4a64ef831 100644 --- a/src/licensedcode/data/rules/caldera_1.RULE +++ b/src/licensedcode/data/rules/caldera_1.RULE @@ -1 +1,10 @@ +--- +license_expression: caldera +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Caldera License \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_1.yml b/src/licensedcode/data/rules/caldera_1.yml deleted file mode 100644 index 9e011271934..00000000000 --- a/src/licensedcode/data/rules/caldera_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: caldera -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/caldera_10.RULE b/src/licensedcode/data/rules/caldera_10.RULE index 85d8a8ac38f..98c29ff3b86 100644 --- a/src/licensedcode/data/rules/caldera_10.RULE +++ b/src/licensedcode/data/rules/caldera_10.RULE @@ -1 +1,9 @@ +--- +license_expression: caldera +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Caldera +--- + {{Caldera}} https://spdx.org/licenses/Caldera \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_10.yml b/src/licensedcode/data/rules/caldera_10.yml deleted file mode 100644 index 63ab3fcea9e..00000000000 --- a/src/licensedcode/data/rules/caldera_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: caldera -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Caldera diff --git a/src/licensedcode/data/rules/caldera_11.RULE b/src/licensedcode/data/rules/caldera_11.RULE index 5fd54105549..adaf597dfad 100644 --- a/src/licensedcode/data/rules/caldera_11.RULE +++ b/src/licensedcode/data/rules/caldera_11.RULE @@ -1 +1,9 @@ +--- +license_expression: caldera +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Caldera +--- + LICENSE {{Caldera}} https://spdx.org/licenses/Caldera \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_11.yml b/src/licensedcode/data/rules/caldera_11.yml deleted file mode 100644 index 63ab3fcea9e..00000000000 --- a/src/licensedcode/data/rules/caldera_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: caldera -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Caldera diff --git a/src/licensedcode/data/rules/caldera_2.RULE b/src/licensedcode/data/rules/caldera_2.RULE index 1036013105d..a57ca8d0111 100644 --- a/src/licensedcode/data/rules/caldera_2.RULE +++ b/src/licensedcode/data/rules/caldera_2.RULE @@ -1 +1,10 @@ +--- +license_expression: caldera +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Caldera License \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_2.yml b/src/licensedcode/data/rules/caldera_2.yml deleted file mode 100644 index 9e011271934..00000000000 --- a/src/licensedcode/data/rules/caldera_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: caldera -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/caldera_3.RULE b/src/licensedcode/data/rules/caldera_3.RULE index e3b3d42b479..d3244e53d16 100644 --- a/src/licensedcode/data/rules/caldera_3.RULE +++ b/src/licensedcode/data/rules/caldera_3.RULE @@ -1 +1,10 @@ +--- +license_expression: caldera +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Caldera Caldera License \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_3.yml b/src/licensedcode/data/rules/caldera_3.yml deleted file mode 100644 index 9e011271934..00000000000 --- a/src/licensedcode/data/rules/caldera_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: caldera -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/caldera_4.RULE b/src/licensedcode/data/rules/caldera_4.RULE index be877688224..ac46326d6b9 100644 --- a/src/licensedcode/data/rules/caldera_4.RULE +++ b/src/licensedcode/data/rules/caldera_4.RULE @@ -1 +1,10 @@ +--- +license_expression: caldera +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Caldera License Caldera \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_4.yml b/src/licensedcode/data/rules/caldera_4.yml deleted file mode 100644 index 9e011271934..00000000000 --- a/src/licensedcode/data/rules/caldera_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: caldera -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/caldera_5.RULE b/src/licensedcode/data/rules/caldera_5.RULE index 8ed0358549c..da269a37aad 100644 --- a/src/licensedcode/data/rules/caldera_5.RULE +++ b/src/licensedcode/data/rules/caldera_5.RULE @@ -1 +1,10 @@ +--- +license_expression: caldera +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Caldera \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_5.yml b/src/licensedcode/data/rules/caldera_5.yml deleted file mode 100644 index d6e9f7bc4f3..00000000000 --- a/src/licensedcode/data/rules/caldera_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: caldera -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/caldera_6.RULE b/src/licensedcode/data/rules/caldera_6.RULE index 1180f785062..4213cf2b53b 100644 --- a/src/licensedcode/data/rules/caldera_6.RULE +++ b/src/licensedcode/data/rules/caldera_6.RULE @@ -1 +1,10 @@ +--- +license_expression: caldera +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Caldera License \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_6.yml b/src/licensedcode/data/rules/caldera_6.yml deleted file mode 100644 index d6e9f7bc4f3..00000000000 --- a/src/licensedcode/data/rules/caldera_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: caldera -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/caldera_7.RULE b/src/licensedcode/data/rules/caldera_7.RULE index 5378343e4e5..3d5049b52ab 100644 --- a/src/licensedcode/data/rules/caldera_7.RULE +++ b/src/licensedcode/data/rules/caldera_7.RULE @@ -1 +1,10 @@ +--- +license_expression: caldera +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Caldera \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_7.yml b/src/licensedcode/data/rules/caldera_7.yml deleted file mode 100644 index d6e9f7bc4f3..00000000000 --- a/src/licensedcode/data/rules/caldera_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: caldera -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/caldera_8.RULE b/src/licensedcode/data/rules/caldera_8.RULE index 8118996804c..2f0f860f2f6 100644 --- a/src/licensedcode/data/rules/caldera_8.RULE +++ b/src/licensedcode/data/rules/caldera_8.RULE @@ -1 +1,9 @@ +--- +license_expression: caldera +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Caldera +--- + https://licenses.nuget.org/Caldera \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_8.yml b/src/licensedcode/data/rules/caldera_8.yml deleted file mode 100644 index f1bb6d24149..00000000000 --- a/src/licensedcode/data/rules/caldera_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: caldera -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Caldera diff --git a/src/licensedcode/data/rules/caldera_9.RULE b/src/licensedcode/data/rules/caldera_9.RULE index 97110829d4a..014f3b8af87 100644 --- a/src/licensedcode/data/rules/caldera_9.RULE +++ b/src/licensedcode/data/rules/caldera_9.RULE @@ -1 +1,7 @@ +--- +license_expression: caldera +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Caldera \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_9.yml b/src/licensedcode/data/rules/caldera_9.yml deleted file mode 100644 index 926e5c57a03..00000000000 --- a/src/licensedcode/data/rules/caldera_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: caldera -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/caldera_url_1.RULE b/src/licensedcode/data/rules/caldera_url_1.RULE index 323226888ec..82929e1883a 100644 --- a/src/licensedcode/data/rules/caldera_url_1.RULE +++ b/src/licensedcode/data/rules/caldera_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: caldera +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/caldera +--- + https://spdx.org/licenses/caldera \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_url_1.yml b/src/licensedcode/data/rules/caldera_url_1.yml deleted file mode 100644 index 89eff947000..00000000000 --- a/src/licensedcode/data/rules/caldera_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: caldera -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/caldera diff --git a/src/licensedcode/data/rules/caldera_url_2.RULE b/src/licensedcode/data/rules/caldera_url_2.RULE index b4682b6cc6d..42105a87996 100644 --- a/src/licensedcode/data/rules/caldera_url_2.RULE +++ b/src/licensedcode/data/rules/caldera_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: caldera +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/caldera.html +--- + https://spdx.org/licenses/caldera.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/caldera_url_2.yml b/src/licensedcode/data/rules/caldera_url_2.yml deleted file mode 100644 index 733206c1f14..00000000000 --- a/src/licensedcode/data/rules/caldera_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: caldera -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/caldera.html diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_1.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_1.RULE index c68813180e6..e67bb8d941c 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_1.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_1.RULE @@ -1 +1,7 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +relevance: 100 +--- + Open Government Licence – Canada. \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_1.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_1.yml deleted file mode 100644 index 190155072a3..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_10.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_10.RULE index 43e21420c0e..bfda41bb200 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_10.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_10.RULE @@ -1 +1,10 @@ +--- +license_expression: can-ogl-2.0-en +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Government Licence - Canada \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_10.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_10.yml deleted file mode 100644 index 378d51fefbe..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_11.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_11.RULE index 6acc3655a09..e76b8acb5ac 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_11.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_11.RULE @@ -1 +1,10 @@ +--- +license_expression: can-ogl-2.0-en +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OGL-Canada-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_11.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_11.yml deleted file mode 100644 index 378d51fefbe..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_12.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_12.RULE index 5c0ebce0f45..403c63d270e 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_12.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_12.RULE @@ -1 +1,9 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OGL-Canada-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_12.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_12.yml deleted file mode 100644 index fb15bbafe1a..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_13.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_13.RULE index 32ef8c1f6fc..ca99d2f105b 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_13.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_13.RULE @@ -1 +1,9 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OGL-Canada-2.0 +--- + https://licenses.nuget.org/OGL-Canada-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_13.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_13.yml deleted file mode 100644 index 21c90659264..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OGL-Canada-2.0 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_14.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_14.RULE index eca11382d43..56befd93c9d 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_14.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_14.RULE @@ -1 +1,7 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OGL-Canada-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_14.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_14.yml deleted file mode 100644 index 190155072a3..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_15.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_15.RULE index f4f38f99eb3..dc4a1db3ee1 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_15.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_15.RULE @@ -1 +1,9 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGL-Canada-2.0 +--- + {{OGL-Canada-2.0}} https://spdx.org/licenses/OGL-Canada-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_15.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_15.yml deleted file mode 100644 index fba9592ac61..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGL-Canada-2.0 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_16.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_16.RULE index 2493daad155..14d0e069170 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_16.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_16.RULE @@ -1 +1,9 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGL-Canada-2.0 +--- + LICENSE {{OGL-Canada-2.0}} https://spdx.org/licenses/OGL-Canada-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_16.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_16.yml deleted file mode 100644 index fba9592ac61..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGL-Canada-2.0 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_2.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_2.RULE index a783f6740c3..b4d3c19e856 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_2.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_2.RULE @@ -1 +1,7 @@ +--- +license_expression: can-ogl-2.0-en +is_license_notice: yes +relevance: 100 +--- + subject to the Open Government Licence – Canada. \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_2.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_2.yml deleted file mode 100644 index 83b68f2060e..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_3.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_3.RULE index 703deab8b9f..0e99aa4c13b 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_3.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_3.RULE @@ -1 +1,7 @@ +--- +license_expression: can-ogl-2.0-en +is_license_notice: yes +relevance: 100 +--- + All distributed data are subject to the Open Government Licence – Canada. \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_3.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_3.yml deleted file mode 100644 index 83b68f2060e..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_4.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_4.RULE index bc9e67c631e..2389cb7c03a 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_4.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_4.RULE @@ -1 +1,7 @@ +--- +license_expression: can-ogl-2.0-en +is_license_notice: yes +relevance: 100 +--- + Contains information licensed under the Open Government Licence – Canada. \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_4.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_4.yml deleted file mode 100644 index 83b68f2060e..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_5.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_5.RULE index bc11c00d85f..74cf338db64 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_5.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: can-ogl-2.0-en +is_license_notice: yes +relevance: 100 +--- + Licence All distributed data are subject to the Open Government Licence – Canada. diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_5.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_5.yml deleted file mode 100644 index 83b68f2060e..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_6.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_6.RULE index 746b514336d..ae7c549d22f 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_6.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_6.RULE @@ -1 +1,10 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Government Licence - Canada \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_6.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_6.yml deleted file mode 100644 index 43aa8392dde..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_7.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_7.RULE index 55392d6871a..5fdcaf09ac1 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_7.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_7.RULE @@ -1 +1,10 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OGL-Canada-2.0 Open Government Licence - Canada \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_7.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_7.yml deleted file mode 100644 index 43aa8392dde..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_8.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_8.RULE index ac5b9c77251..5090eed3749 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_8.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_8.RULE @@ -1 +1,10 @@ +--- +license_expression: can-ogl-2.0-en +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Government Licence - Canada OGL-Canada-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_8.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_8.yml deleted file mode 100644 index 43aa8392dde..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_9.RULE b/src/licensedcode/data/rules/can-ogl-2.0-en_9.RULE index 31b0d6bdb36..fc4c7301da2 100644 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_9.RULE +++ b/src/licensedcode/data/rules/can-ogl-2.0-en_9.RULE @@ -1 +1,10 @@ +--- +license_expression: can-ogl-2.0-en +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OGL-Canada-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/can-ogl-2.0-en_9.yml b/src/licensedcode/data/rules/can-ogl-2.0-en_9.yml deleted file mode 100644 index 378d51fefbe..00000000000 --- a/src/licensedcode/data/rules/can-ogl-2.0-en_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: can-ogl-2.0-en -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors.RULE b/src/licensedcode/data/rules/carnegie-mellon-contributors.RULE index af2a0da1211..592373190bf 100644 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors.RULE +++ b/src/licensedcode/data/rules/carnegie-mellon-contributors.RULE @@ -1,3 +1,10 @@ +--- +license_expression: carnegie-mellon-contributors +is_license_text: yes +ignorable_emails: + - Software.Distribution@CS.CMU.EDU +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the @@ -17,4 +24,4 @@ or Software.Distribution@CS.CMU.EDU any improvements or extensions that they make and grant Carnegie Mellon the rights to - redistribute these changes. + redistribute these changes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors.yml b/src/licensedcode/data/rules/carnegie-mellon-contributors.yml deleted file mode 100644 index 1ae854a5ce5..00000000000 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: carnegie-mellon-contributors -is_license_text: yes -ignorable_emails: - - Software.Distribution@CS.CMU.EDU diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_1.RULE b/src/licensedcode/data/rules/carnegie-mellon-contributors_1.RULE index ec4a52b5072..551e955e018 100644 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_1.RULE +++ b/src/licensedcode/data/rules/carnegie-mellon-contributors_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: carnegie-mellon-contributors +is_license_text: yes +ignorable_emails: + - Software.Distribution@CS.CMU.EDU +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or modified versions, and any @@ -11,4 +18,4 @@ Carnegie Mellon requests users of this software to return to Software.Distribution@CS.CMU.EDU; or Software Distribution Coordinator, School of Computer Science, Carnegie Mellon University, Pittsburgh PA 15213-3890; any improvements or extensions that they make and grant Carnegie Mellon the rights to -redistribute these changes. +redistribute these changes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_1.yml b/src/licensedcode/data/rules/carnegie-mellon-contributors_1.yml deleted file mode 100644 index 1ae854a5ce5..00000000000 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: carnegie-mellon-contributors -is_license_text: yes -ignorable_emails: - - Software.Distribution@CS.CMU.EDU diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_2.RULE b/src/licensedcode/data/rules/carnegie-mellon-contributors_2.RULE index 9600ca6c3f6..bc451e8f566 100644 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_2.RULE +++ b/src/licensedcode/data/rules/carnegie-mellon-contributors_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: carnegie-mellon-contributors +is_license_text: yes +relevance: 100 +ignorable_emails: + - Software.Distribution@CS.CMU.EDU +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_2.yml b/src/licensedcode/data/rules/carnegie-mellon-contributors_2.yml deleted file mode 100644 index b26927b7855..00000000000 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: carnegie-mellon-contributors -is_license_text: yes -relevance: 100 -ignorable_emails: - - Software.Distribution@CS.CMU.EDU diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_3.RULE b/src/licensedcode/data/rules/carnegie-mellon-contributors_3.RULE index 01ce428460c..fae5cefdd7b 100644 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_3.RULE +++ b/src/licensedcode/data/rules/carnegie-mellon-contributors_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: carnegie-mellon-contributors +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1991,1990,1989 Carnegie Mellon University +ignorable_holders: + - Carnegie Mellon University +ignorable_emails: + - Software.Distribution@CS.CMU.EDU +--- + * The following CMU license covers some of the support code for Mach, derived from Mach 3.0: @@ -24,4 +35,4 @@ or Software.Distribution@CS.CMU.EDU any improvements or extensions that they make and grant Carnegie Mellon the rights to - redistribute these changes. + redistribute these changes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_3.yml b/src/licensedcode/data/rules/carnegie-mellon-contributors_3.yml deleted file mode 100644 index ee81c78a9c7..00000000000 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: carnegie-mellon-contributors -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1991,1990,1989 Carnegie Mellon University -ignorable_holders: - - Carnegie Mellon University -ignorable_emails: - - Software.Distribution@CS.CMU.EDU diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_4.RULE b/src/licensedcode/data/rules/carnegie-mellon-contributors_4.RULE index 09a269aeeba..95a47b7cce6 100644 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_4.RULE +++ b/src/licensedcode/data/rules/carnegie-mellon-contributors_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: carnegie-mellon-contributors +is_license_text: yes +ignorable_emails: + - Software.Distribution@CS.CMU.EDU +--- + CMU License Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_4.yml b/src/licensedcode/data/rules/carnegie-mellon-contributors_4.yml deleted file mode 100644 index 1ae854a5ce5..00000000000 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: carnegie-mellon-contributors -is_license_text: yes -ignorable_emails: - - Software.Distribution@CS.CMU.EDU diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_5.RULE b/src/licensedcode/data/rules/carnegie-mellon-contributors_5.RULE index 4da0612f0be..c80c90becbf 100644 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_5.RULE +++ b/src/licensedcode/data/rules/carnegie-mellon-contributors_5.RULE @@ -1 +1,9 @@ +--- +license_expression: carnegie-mellon-contributors +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + The following CMU license covers some of the support code for Mach, derived from Mach 3.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/carnegie-mellon-contributors_5.yml b/src/licensedcode/data/rules/carnegie-mellon-contributors_5.yml deleted file mode 100644 index 3cd9ee392c2..00000000000 --- a/src/licensedcode/data/rules/carnegie-mellon-contributors_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: carnegie-mellon-contributors -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cavium-malloc_1.RULE b/src/licensedcode/data/rules/cavium-malloc_1.RULE index a3fbd6bda81..c46c86b989c 100644 --- a/src/licensedcode/data/rules/cavium-malloc_1.RULE +++ b/src/licensedcode/data/rules/cavium-malloc_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cavium-malloc +is_license_notice: yes +relevance: 100 +--- + License terms appear in {{Ptmalloc License .}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cavium-malloc_1.yml b/src/licensedcode/data/rules/cavium-malloc_1.yml deleted file mode 100644 index 928d1477188..00000000000 --- a/src/licensedcode/data/rules/cavium-malloc_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cavium-malloc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-1.0.RULE b/src/licensedcode/data/rules/cc-by-1.0.RULE index 377988b3714..e1d13633e6a 100644 --- a/src/licensedcode/data/rules/cc-by-1.0.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/1.0/legalcode +--- + http://creativecommons.org/licenses/by/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-1.0.SPDX.RULE index 5583386f1ee..59d7f9aa3e6 100644 --- a/src/licensedcode/data/rules/cc-by-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution 1.0 diff --git a/src/licensedcode/data/rules/cc-by-1.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-1.0.SPDX.yml deleted file mode 100644 index 35a79fb0d50..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-1.0.yml b/src/licensedcode/data/rules/cc-by-1.0.yml deleted file mode 100644 index dc187c2758a..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-1.0_1.RULE b/src/licensedcode/data/rules/cc-by-1.0_1.RULE index 0374a9f84eb..43ad16d8349 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/1.0/ +--- + http://creativecommons.org/licenses/by/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_1.yml b/src/licensedcode/data/rules/cc-by-1.0_1.yml deleted file mode 100644 index b6dc5a2cd4b..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-1.0_10.RULE b/src/licensedcode/data/rules/cc-by-1.0_10.RULE index dfa130dcddb..f52482e5650 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-1.0 Creative Commons Attribution 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_10.yml b/src/licensedcode/data/rules/cc-by-1.0_10.yml deleted file mode 100644 index 432efb6ae95..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-1.0_11.RULE b/src/licensedcode/data/rules/cc-by-1.0_11.RULE index d303dc111f9..5ed52cb7a3d 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-1.0 Creative Commons Attribution 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_11.yml b/src/licensedcode/data/rules/cc-by-1.0_11.yml deleted file mode 100644 index 432efb6ae95..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-1.0_12.RULE b/src/licensedcode/data/rules/cc-by-1.0_12.RULE index 7b4ab4e1b57..95626c6ff31 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_12.yml b/src/licensedcode/data/rules/cc-by-1.0_12.yml deleted file mode 100644 index 45f052915c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-1.0_13.RULE b/src/licensedcode/data/rules/cc-by-1.0_13.RULE index a0ababf2a03..6ef46551e4e 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_13.yml b/src/licensedcode/data/rules/cc-by-1.0_13.yml deleted file mode 100644 index 45f052915c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-1.0_14.RULE b/src/licensedcode/data/rules/cc-by-1.0_14.RULE index fad7d4fe8d9..8523f266d8b 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 1.0 Generic CC-BY-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_14.yml b/src/licensedcode/data/rules/cc-by-1.0_14.yml deleted file mode 100644 index 45f052915c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-1.0_15.RULE b/src/licensedcode/data/rules/cc-by-1.0_15.RULE index 3462aa2fa2f..b6d15b28f4a 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_15.yml b/src/licensedcode/data/rules/cc-by-1.0_15.yml deleted file mode 100644 index 3398f8e3db8..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-1.0_16.RULE b/src/licensedcode/data/rules/cc-by-1.0_16.RULE index 5277e2d8942..ba13146b383 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_16.yml b/src/licensedcode/data/rules/cc-by-1.0_16.yml deleted file mode 100644 index 3398f8e3db8..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-1.0_17.RULE b/src/licensedcode/data/rules/cc-by-1.0_17.RULE index 12a35375d93..e8666066584 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_17.yml b/src/licensedcode/data/rules/cc-by-1.0_17.yml deleted file mode 100644 index 3398f8e3db8..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-1.0_18.RULE b/src/licensedcode/data/rules/cc-by-1.0_18.RULE index 264e75ae5c4..844b6b01a07 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-1.0 +--- + https://licenses.nuget.org/CC-BY-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_18.yml b/src/licensedcode/data/rules/cc-by-1.0_18.yml deleted file mode 100644 index 74c40938f7b..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-1.0 diff --git a/src/licensedcode/data/rules/cc-by-1.0_19.RULE b/src/licensedcode/data/rules/cc-by-1.0_19.RULE index 9a343ad1eb7..c2d568a506d 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_19.yml b/src/licensedcode/data/rules/cc-by-1.0_19.yml deleted file mode 100644 index 432efb6ae95..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-1.0_2.RULE b/src/licensedcode/data/rules/cc-by-1.0_2.RULE index cb69060925b..198a307a74b 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/1.0/ +--- + Creative Commons Attribution 1.0 Generic (CC-BY 1.0) link: http://creativecommons.org/licenses/by/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_2.yml b/src/licensedcode/data/rules/cc-by-1.0_2.yml deleted file mode 100644 index b6dc5a2cd4b..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-1.0_20.RULE b/src/licensedcode/data/rules/cc-by-1.0_20.RULE index 79e3834fc4f..15f017596cb 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-1.0 +--- + LICENSE {{CC-BY-1.0}} https://spdx.org/licenses/CC-BY-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_20.yml b/src/licensedcode/data/rules/cc-by-1.0_20.yml deleted file mode 100644 index ff674d9ddc1..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-1.0 diff --git a/src/licensedcode/data/rules/cc-by-1.0_21.RULE b/src/licensedcode/data/rules/cc-by-1.0_21.RULE index 0c7c347c6a0..91bb64055e3 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-1.0 +--- + {{CC-BY-1.0}} https://spdx.org/licenses/CC-BY-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_21.yml b/src/licensedcode/data/rules/cc-by-1.0_21.yml deleted file mode 100644 index ff674d9ddc1..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-1.0 diff --git a/src/licensedcode/data/rules/cc-by-1.0_3.RULE b/src/licensedcode/data/rules/cc-by-1.0_3.RULE index ab9a874be95..7f2562c20d7 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ + - http://creativecommons.org/licenses/by/1.0/ +--- + Creative Commons Creative Commons Legal Code Link to summary of this license: http://creativecommons.org/licenses/by/1.0/ @@ -62,5 +70,4 @@ Creative Commons is not a party to this License, and makes no warranty whatsoeve Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. -Creative Commons may be contacted at http://creativecommons.org/. - +Creative Commons may be contacted at http://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_3.yml b/src/licensedcode/data/rules/cc-by-1.0_3.yml deleted file mode 100644 index 962859eaf4f..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ - - http://creativecommons.org/licenses/by/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-1.0_4.RULE b/src/licensedcode/data/rules/cc-by-1.0_4.RULE index 0898300ae97..b13132eeb7b 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_4.yml b/src/licensedcode/data/rules/cc-by-1.0_4.yml deleted file mode 100644 index 432efb6ae95..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-1.0_5.RULE b/src/licensedcode/data/rules/cc-by-1.0_5.RULE index a19880801d8..8430259b550 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-1.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution License 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/rules/cc-by-1.0_5.yml b/src/licensedcode/data/rules/cc-by-1.0_5.yml deleted file mode 100644 index be525148706..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-1.0_6.RULE b/src/licensedcode/data/rules/cc-by-1.0_6.RULE index 78da6c812ba..f14b93cb41a 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution 1.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-1.0_6.yml b/src/licensedcode/data/rules/cc-by-1.0_6.yml deleted file mode 100644 index 0d4e1605f1b..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-1.0_7.RULE b/src/licensedcode/data/rules/cc-by-1.0_7.RULE index eb91f43a5b1..9c0ae6938f3 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/1.0/legalcode +--- + https://creativecommons.org/licenses/by/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_7.yml b/src/licensedcode/data/rules/cc-by-1.0_7.yml deleted file mode 100644 index 89ead848799..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-1.0_8.RULE b/src/licensedcode/data/rules/cc-by-1.0_8.RULE index ce91e8f3363..62d3b19f9b8 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES diff --git a/src/licensedcode/data/rules/cc-by-1.0_8.yml b/src/licensedcode/data/rules/cc-by-1.0_8.yml deleted file mode 100644 index f1e58056871..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-1.0_9.RULE b/src/licensedcode/data/rules/cc-by-1.0_9.RULE index d939aaba172..e3ef26ff1b1 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_9.yml b/src/licensedcode/data/rules/cc-by-1.0_9.yml deleted file mode 100644 index 432efb6ae95..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-1.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-1.0_licensebutton.RULE index f56a6aaf1d5..9f94e8a4a5a 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by/1.0 +--- + https://licensebuttons.net/l/by/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-1.0_licensebutton.yml deleted file mode 100644 index a967004b6e3..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by/1.0 diff --git a/src/licensedcode/data/rules/cc-by-1.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-1.0_url_1.RULE index 23255852293..d720c0b334e 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-1.0 +--- + https://spdx.org/licenses/cc-by-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_url_1.yml b/src/licensedcode/data/rules/cc-by-1.0_url_1.yml deleted file mode 100644 index 0f6cb9b2ba5..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-1.0 diff --git a/src/licensedcode/data/rules/cc-by-1.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-1.0_url_2.RULE index 6abc1f8d206..d48458e554d 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-1.0.html +--- + https://spdx.org/licenses/cc-by-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_url_2.yml b/src/licensedcode/data/rules/cc-by-1.0_url_2.yml deleted file mode 100644 index b8ef03d5bc0..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-1.0.html diff --git a/src/licensedcode/data/rules/cc-by-1.0_url_glc_53.RULE b/src/licensedcode/data/rules/cc-by-1.0_url_glc_53.RULE index cf79ba8b924..134232db741 100644 --- a/src/licensedcode/data/rules/cc-by-1.0_url_glc_53.RULE +++ b/src/licensedcode/data/rules/cc-by-1.0_url_glc_53.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/1.0 +--- + https://creativecommons.org/licenses/by/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-1.0_url_glc_53.yml b/src/licensedcode/data/rules/cc-by-1.0_url_glc_53.yml deleted file mode 100644 index f92bcd36ce5..00000000000 --- a/src/licensedcode/data/rules/cc-by-1.0_url_glc_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/1.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0-uk.RULE b/src/licensedcode/data/rules/cc-by-2.0-uk.RULE index 8d46e812449..a3b3a019db8 100644 --- a/src/licensedcode/data/rules/cc-by-2.0-uk.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0-uk.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0-uk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0/uk/ +--- + http://creativecommons.org/licenses/by/2.0/uk/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0-uk.yml b/src/licensedcode/data/rules/cc-by-2.0-uk.yml deleted file mode 100644 index bcd6ca3601e..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0-uk.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0-uk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0/uk/ diff --git a/src/licensedcode/data/rules/cc-by-2.0-uk_1.RULE b/src/licensedcode/data/rules/cc-by-2.0-uk_1.RULE index f2455b47362..b59558acf2b 100644 --- a/src/licensedcode/data/rules/cc-by-2.0-uk_1.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0-uk_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0-uk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.legislation.gov.uk/ukpga/1988/48 +--- + http://www.legislation.gov.uk/ukpga/1988/48 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0-uk_1.yml b/src/licensedcode/data/rules/cc-by-2.0-uk_1.yml deleted file mode 100644 index 5870ecaea0e..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0-uk_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0-uk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.legislation.gov.uk/ukpga/1988/48 diff --git a/src/licensedcode/data/rules/cc-by-2.0.RULE b/src/licensedcode/data/rules/cc-by-2.0.RULE index be95ddc166b..cc04f80dac7 100644 --- a/src/licensedcode/data/rules/cc-by-2.0.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0/ +--- + http://creativecommons.org/licenses/by/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-2.0.SPDX.RULE index 55983ea40c4..b337484058d 100644 --- a/src/licensedcode/data/rules/cc-by-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution 2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-2.0.SPDX.yml deleted file mode 100644 index 914aae96d1f..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-2.0.yml b/src/licensedcode/data/rules/cc-by-2.0.yml deleted file mode 100644 index 737dfded8db..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-2.0_1.RULE b/src/licensedcode/data/rules/cc-by-2.0_1.RULE index b2212c8eef7..3368faad79a 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0/legalcode +--- + http://creativecommons.org/licenses/by/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_1.yml b/src/licensedcode/data/rules/cc-by-2.0_1.yml deleted file mode 100644 index c6668830725..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-2.0_10.RULE b/src/licensedcode/data/rules/cc-by-2.0_10.RULE index 6b458e7c236..2cb835ece76 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 80 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0/deed.en +--- + http://creativecommons.org/licenses/by/2.0/deed.en \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_10.yml b/src/licensedcode/data/rules/cc-by-2.0_10.yml deleted file mode 100644 index cc33ec41298..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 80 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-2.0_11.RULE b/src/licensedcode/data/rules/cc-by-2.0_11.RULE index b131f796800..28539bf6431 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_notice: yes +relevance: 80 +ignorable_urls: + - https://creativecommons.org/licenses/by/2.0/deed.en +--- + licensed CC-By \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_11.yml b/src/licensedcode/data/rules/cc-by-2.0_11.yml deleted file mode 100644 index 4d954d26a26..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_notice: yes -relevance: 80 -ignorable_urls: - - https://creativecommons.org/licenses/by/2.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-2.0_12.RULE b/src/licensedcode/data/rules/cc-by-2.0_12.RULE index 9f502aea300..52ab53b8f60 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 80 +ignorable_urls: + - https://creativecommons.org/licenses/by/2.0/deed.en +--- + https://creativecommons.org/licenses/by/2.0/deed.en \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_12.yml b/src/licensedcode/data/rules/cc-by-2.0_12.yml deleted file mode 100644 index 7c456798c80..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 80 -ignorable_urls: - - https://creativecommons.org/licenses/by/2.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-2.0_13.RULE b/src/licensedcode/data/rules/cc-by-2.0_13.RULE index 46127620667..ccbca77d51e 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.1/legalcode +--- + http://creativecommons.org/licenses/by/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_13.yml b/src/licensedcode/data/rules/cc-by-2.0_13.yml deleted file mode 100644 index 30d2065c664..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-2.0_14.RULE b/src/licensedcode/data/rules/cc-by-2.0_14.RULE index 17f3b57b3b0..b3018f7bc0c 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/2.0/legalcode +--- + https://creativecommons.org/licenses/by/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_14.yml b/src/licensedcode/data/rules/cc-by-2.0_14.yml deleted file mode 100644 index 19067a1c764..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-2.0_15.RULE b/src/licensedcode/data/rules/cc-by-2.0_15.RULE index b47611d1a39..5d9f585bc56 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by/2.1/legalcode +--- + https://creativecommons.org/licenses/by/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_15.yml b/src/licensedcode/data/rules/cc-by-2.0_15.yml deleted file mode 100644 index e6e2b51b482..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-2.0_16.RULE b/src/licensedcode/data/rules/cc-by-2.0_16.RULE index 0c37aeb42d5..a205b21e005 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-2.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +minimum_coverage: 95 +--- + Creative Commons Attribution 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS diff --git a/src/licensedcode/data/rules/cc-by-2.0_16.yml b/src/licensedcode/data/rules/cc-by-2.0_16.yml deleted file mode 100644 index f4d8e9b92ea..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ -minimum_coverage: 95 - diff --git a/src/licensedcode/data/rules/cc-by-2.0_17.RULE b/src/licensedcode/data/rules/cc-by-2.0_17.RULE index 74b69194303..8122d2e9d6c 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + CC-BY-2.0 Creative Commons Attribution 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_17.yml b/src/licensedcode/data/rules/cc-by-2.0_17.yml deleted file mode 100644 index 9bcbc6dc21f..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.0_18.RULE b/src/licensedcode/data/rules/cc-by-2.0_18.RULE index 94752e1b762..4a6c0effbcb 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_18.yml b/src/licensedcode/data/rules/cc-by-2.0_18.yml deleted file mode 100644 index 1af166d9a7f..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.0_19.RULE b/src/licensedcode/data/rules/cc-by-2.0_19.RULE index 079f44cdae5..825bfeae4e6 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_19.yml b/src/licensedcode/data/rules/cc-by-2.0_19.yml deleted file mode 100644 index 1af166d9a7f..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.0_2.RULE b/src/licensedcode/data/rules/cc-by-2.0_2.RULE index 622e2c8a8da..ed376675446 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0 +--- + license CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/), \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_2.yml b/src/licensedcode/data/rules/cc-by-2.0_2.yml deleted file mode 100644 index ca473cbd38c..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0_20.RULE b/src/licensedcode/data/rules/cc-by-2.0_20.RULE index 77e8a1553f5..e9508b92e03 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 2.0 Generic CC-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_20.yml b/src/licensedcode/data/rules/cc-by-2.0_20.yml deleted file mode 100644 index 1af166d9a7f..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.0_21.RULE b/src/licensedcode/data/rules/cc-by-2.0_21.RULE index d339d4b08f8..d08af586317 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_21.yml b/src/licensedcode/data/rules/cc-by-2.0_21.yml deleted file mode 100644 index bc4597525bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.0_22.RULE b/src/licensedcode/data/rules/cc-by-2.0_22.RULE index 1649e5c05c8..c343d83ac78 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_22.yml b/src/licensedcode/data/rules/cc-by-2.0_22.yml deleted file mode 100644 index bc4597525bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.0_23.RULE b/src/licensedcode/data/rules/cc-by-2.0_23.RULE index db6a176d439..738e000980d 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_23.yml b/src/licensedcode/data/rules/cc-by-2.0_23.yml deleted file mode 100644 index bc4597525bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.0_24.RULE b/src/licensedcode/data/rules/cc-by-2.0_24.RULE index 6049b0a7298..a0b8587e6dd 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-2.0 +--- + https://licenses.nuget.org/CC-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_24.yml b/src/licensedcode/data/rules/cc-by-2.0_24.yml deleted file mode 100644 index 2779a940657..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0_25.RULE b/src/licensedcode/data/rules/cc-by-2.0_25.RULE index 4c280232c28..664a7f400fa 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_25.yml b/src/licensedcode/data/rules/cc-by-2.0_25.yml deleted file mode 100644 index c58e10a3405..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.0_26.RULE b/src/licensedcode/data/rules/cc-by-2.0_26.RULE index 7222a46b3f3..c0f8f6bb810 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-2.0 +--- + LICENSE {{CC-BY-2.0}} https://spdx.org/licenses/CC-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_26.yml b/src/licensedcode/data/rules/cc-by-2.0_26.yml deleted file mode 100644 index 1c3ed28f57e..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0_27.RULE b/src/licensedcode/data/rules/cc-by-2.0_27.RULE index d640b2214ab..726e5402e9b 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-2.0 +--- + {{CC-BY-2.0}} https://spdx.org/licenses/CC-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_27.yml b/src/licensedcode/data/rules/cc-by-2.0_27.yml deleted file mode 100644 index 1c3ed28f57e..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0_3.RULE b/src/licensedcode/data/rules/cc-by-2.0_3.RULE index 2ad58c2c18e..6fb13da158d 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.0 +is_license_notice: yes +relevance: 100 +--- + under Creative Commons License (CC-BY 2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_3.yml b/src/licensedcode/data/rules/cc-by-2.0_3.yml deleted file mode 100644 index 619a3cf2f19..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.0_4.RULE b/src/licensedcode/data/rules/cc-by-2.0_4.RULE index b321114d96f..ad8e8bf87a5 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0 +--- + is published under the Creative Commons Attribution 2.0 License (CC-BY 2.0), which permits both private and commercial use (http://creativecommons.org/licenses/by/2.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_4.yml b/src/licensedcode/data/rules/cc-by-2.0_4.yml deleted file mode 100644 index b95d26c3117..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0_5.RULE b/src/licensedcode/data/rules/cc-by-2.0_5.RULE index fc6ce39821f..8dbbf60b565 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_5.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0/ +--- + Creative Commons Attribution 2.0 Generic (CC-BY 2.0) link: http://creativecommons.org/licenses/by/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_5.yml b/src/licensedcode/data/rules/cc-by-2.0_5.yml deleted file mode 100644 index 737dfded8db..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-2.0_6.RULE b/src/licensedcode/data/rules/cc-by-2.0_6.RULE index 01a4a2a6384..eb58c4a4759 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_6.yml b/src/licensedcode/data/rules/cc-by-2.0_6.yml deleted file mode 100644 index c58e10a3405..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.0_7.RULE b/src/licensedcode/data/rules/cc-by-2.0_7.RULE index a809f80e4f5..d0db5ea27ee 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution 2.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-2.0_7.yml b/src/licensedcode/data/rules/cc-by-2.0_7.yml deleted file mode 100644 index 4984d35173d..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.0_8.RULE b/src/licensedcode/data/rules/cc-by-2.0_8.RULE index eb6449ca259..5496e50af42 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_8.yml b/src/licensedcode/data/rules/cc-by-2.0_8.yml deleted file mode 100644 index c58e10a3405..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.0_9.RULE b/src/licensedcode/data/rules/cc-by-2.0_9.RULE index 846b8c19aac..ce1ecea2218 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_notice: yes +relevance: 80 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0/deed.en +--- + licensed CC-By \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_9.yml b/src/licensedcode/data/rules/cc-by-2.0_9.yml deleted file mode 100644 index 3eaa5d63a06..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_notice: yes -relevance: 80 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-2.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-2.0_licensebutton.RULE index a70508dd3f7..561deca1ead 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by/2.0 +--- + https://licensebuttons.net/l/by/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-2.0_licensebutton.yml deleted file mode 100644 index 0af77cbe2d9..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by/2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-2.0_url_1.RULE index cd62efe3bd2..04d87917e64 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-2.0 +--- + https://spdx.org/licenses/cc-by-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_url_1.yml b/src/licensedcode/data/rules/cc-by-2.0_url_1.yml deleted file mode 100644 index 5487b8a0cce..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-2.0_url_2.RULE index 61b8d95e588..721ae37e0fe 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-2.0.html +--- + https://spdx.org/licenses/cc-by-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_url_2.yml b/src/licensedcode/data/rules/cc-by-2.0_url_2.yml deleted file mode 100644 index 820e2699070..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-2.0.html diff --git a/src/licensedcode/data/rules/cc-by-2.0_url_glc_55.RULE b/src/licensedcode/data/rules/cc-by-2.0_url_glc_55.RULE index 7db6459ef2f..57ce6feadcf 100644 --- a/src/licensedcode/data/rules/cc-by-2.0_url_glc_55.RULE +++ b/src/licensedcode/data/rules/cc-by-2.0_url_glc_55.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/2.0 +--- + https://creativecommons.org/licenses/by/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.0_url_glc_55.yml b/src/licensedcode/data/rules/cc-by-2.0_url_glc_55.yml deleted file mode 100644 index efa68edc5fd..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.0_url_glc_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/2.0 diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_1.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_1.RULE index 956a5816a65..81a24bc4bab 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_1.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5-au +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 2.5 Australia \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_1.yml b/src/licensedcode/data/rules/cc-by-2.5-au_1.yml deleted file mode 100644 index 49cf3815465..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_10.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_10.RULE index f57acc73504..bdb0858f88a 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_10.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5-au +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-2.5-AU +--- + LICENSE {{CC-BY-2.5-AU}} https://spdx.org/licenses/CC-BY-2.5-AU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_10.yml b/src/licensedcode/data/rules/cc-by-2.5-au_10.yml deleted file mode 100644 index 5bab06550d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-2.5-AU diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_11.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_11.RULE index 07eb05d8053..86066e31318 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_11.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5-au +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-2.5-AU +--- + {{CC-BY-2.5-AU}} https://spdx.org/licenses/CC-BY-2.5-AU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_11.yml b/src/licensedcode/data/rules/cc-by-2.5-au_11.yml deleted file mode 100644 index 5bab06550d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-2.5-AU diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_2.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_2.RULE index 89106751b08..6e8465c9228 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_2.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5-au +is_license_reference: yes +relevance: 100 +--- + CC-BY-2.5-AU Creative Commons Attribution 2.5 Australia \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_2.yml b/src/licensedcode/data/rules/cc-by-2.5-au_2.yml deleted file mode 100644 index 49cf3815465..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_3.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_3.RULE index 3fcb9d3d197..038007750a1 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_3.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5-au +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution 2.5 Australia \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_3.yml b/src/licensedcode/data/rules/cc-by-2.5-au_3.yml deleted file mode 100644 index 0d8ec334e40..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_4.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_4.RULE index 31f6ab7e1df..4f5732b9cf1 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_4.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5-au +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 2.5 Australia CC-BY-2.5-AU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_4.yml b/src/licensedcode/data/rules/cc-by-2.5-au_4.yml deleted file mode 100644 index 0d8ec334e40..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_5.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_5.RULE index 75f906e846b..19a57ac43ef 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_5.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5-au +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-2.5-AU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_5.yml b/src/licensedcode/data/rules/cc-by-2.5-au_5.yml deleted file mode 100644 index 51b8bd2a562..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_6.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_6.RULE index ad00c8bc466..398860d72ec 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_6.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5-au +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution 2.5 Australia \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_6.yml b/src/licensedcode/data/rules/cc-by-2.5-au_6.yml deleted file mode 100644 index 51b8bd2a562..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_7.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_7.RULE index 58c23f6adf9..4a7772dae62 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_7.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5-au +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-2.5-AU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_7.yml b/src/licensedcode/data/rules/cc-by-2.5-au_7.yml deleted file mode 100644 index 51b8bd2a562..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_8.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_8.RULE index 3e4e3e38667..d9af8a59333 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_8.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5-au +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-2.5-AU +--- + https://licenses.nuget.org/CC-BY-2.5-AU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_8.yml b/src/licensedcode/data/rules/cc-by-2.5-au_8.yml deleted file mode 100644 index 50ffd8d2b88..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-2.5-AU diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_9.RULE b/src/licensedcode/data/rules/cc-by-2.5-au_9.RULE index c6cc8773caf..c95e521383c 100644 --- a/src/licensedcode/data/rules/cc-by-2.5-au_9.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5-au_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5-au +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-2.5-AU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5-au_9.yml b/src/licensedcode/data/rules/cc-by-2.5-au_9.yml deleted file mode 100644 index 49cf3815465..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5-au_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5-au -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5.RULE b/src/licensedcode/data/rules/cc-by-2.5.RULE index af63f6aa6d7..9a63c6cb767 100644 --- a/src/licensedcode/data/rules/cc-by-2.5.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5/legalcode +--- + http://creativecommons.org/licenses/by/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5.SPDX.RULE b/src/licensedcode/data/rules/cc-by-2.5.SPDX.RULE index d3e3cf0f162..9c2c4bf0a28 100644 --- a/src/licensedcode/data/rules/cc-by-2.5.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-2.5 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution 2.5 diff --git a/src/licensedcode/data/rules/cc-by-2.5.SPDX.yml b/src/licensedcode/data/rules/cc-by-2.5.SPDX.yml deleted file mode 100644 index eca312c7887..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-2.5.yml b/src/licensedcode/data/rules/cc-by-2.5.yml deleted file mode 100644 index ffc60a3acf5..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-2.5_1.RULE b/src/licensedcode/data/rules/cc-by-2.5_1.RULE index e644fec80b0..403cc0a3f32 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_1.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5/ +--- + http://creativecommons.org/licenses/by/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_1.yml b/src/licensedcode/data/rules/cc-by-2.5_1.yml deleted file mode 100644 index f673e8092ce..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-2.5_10.RULE b/src/licensedcode/data/rules/cc-by-2.5_10.RULE index addaa6046e7..7897b8fc231 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_10.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5/legalcode +--- + Full text: http://creativecommons.org/licenses/by/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_10.yml b/src/licensedcode/data/rules/cc-by-2.5_10.yml deleted file mode 100644 index ffc60a3acf5..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-2.5_11.RULE b/src/licensedcode/data/rules/cc-by-2.5_11.RULE index a7244fd33e6..cc028eda7e2 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_11.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_11.yml b/src/licensedcode/data/rules/cc-by-2.5_11.yml deleted file mode 100644 index 63e4ad4ff32..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5_12.RULE b/src/licensedcode/data/rules/cc-by-2.5_12.RULE index f86081a4407..73589bb99a9 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_12.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_12.yml b/src/licensedcode/data/rules/cc-by-2.5_12.yml deleted file mode 100644 index 63e4ad4ff32..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5_13.RULE b/src/licensedcode/data/rules/cc-by-2.5_13.RULE index d9d6fe36db8..830a017bbcc 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_13.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution 2.5 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-2.5_13.yml b/src/licensedcode/data/rules/cc-by-2.5_13.yml deleted file mode 100644 index c583a08110e..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5_14.RULE b/src/licensedcode/data/rules/cc-by-2.5_14.RULE index 496bff97641..80adc77a427 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_14.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/2.5/legalcode +--- + https://creativecommons.org/licenses/by/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_14.yml b/src/licensedcode/data/rules/cc-by-2.5_14.yml deleted file mode 100644 index e5208985f9f..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-2.5_15.RULE b/src/licensedcode/data/rules/cc-by-2.5_15.RULE index 5611e7d8b72..bf4963a56b3 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_15.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS diff --git a/src/licensedcode/data/rules/cc-by-2.5_15.yml b/src/licensedcode/data/rules/cc-by-2.5_15.yml deleted file mode 100644 index 478e6ca14c3..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-2.5 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-2.5_16.RULE b/src/licensedcode/data/rules/cc-by-2.5_16.RULE index 36787cc5d70..c926600a490 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_16.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-2.5 Creative Commons Attribution 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_16.yml b/src/licensedcode/data/rules/cc-by-2.5_16.yml deleted file mode 100644 index 63e4ad4ff32..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5_17.RULE b/src/licensedcode/data/rules/cc-by-2.5_17.RULE index e6a43691457..f196153a950 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_17.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_17.yml b/src/licensedcode/data/rules/cc-by-2.5_17.yml deleted file mode 100644 index 7e6d944e2bb..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5_18.RULE b/src/licensedcode/data/rules/cc-by-2.5_18.RULE index 7bb329d8777..0410b063832 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_18.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_18.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_18.yml b/src/licensedcode/data/rules/cc-by-2.5_18.yml deleted file mode 100644 index 7e6d944e2bb..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5_19.RULE b/src/licensedcode/data/rules/cc-by-2.5_19.RULE index 46800790e12..95798555319 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_19.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 2.5 Generic CC-BY-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_19.yml b/src/licensedcode/data/rules/cc-by-2.5_19.yml deleted file mode 100644 index 7e6d944e2bb..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5_2.RULE b/src/licensedcode/data/rules/cc-by-2.5_2.RULE index 5789184b2ca..a8f9cc221bd 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_2.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-2.5 +is_license_notice: yes +referenced_filenames: + - license.html +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5/ +--- + Except as noted, this content is licensed under "http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5 . For details and diff --git a/src/licensedcode/data/rules/cc-by-2.5_2.yml b/src/licensedcode/data/rules/cc-by-2.5_2.yml deleted file mode 100644 index bf6743dc738..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_notice: yes -referenced_filenames: - - license.html -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-2.5_20.RULE b/src/licensedcode/data/rules/cc-by-2.5_20.RULE index 29aa7380a56..f3e14a34ba0 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_20.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_20.yml b/src/licensedcode/data/rules/cc-by-2.5_20.yml deleted file mode 100644 index 438763a7464..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5_21.RULE b/src/licensedcode/data/rules/cc-by-2.5_21.RULE index 648193f8e15..864aeaa430b 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_21.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_21.yml b/src/licensedcode/data/rules/cc-by-2.5_21.yml deleted file mode 100644 index 438763a7464..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5_22.RULE b/src/licensedcode/data/rules/cc-by-2.5_22.RULE index 2cf4c3354b9..20feed751ac 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_22.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_22.yml b/src/licensedcode/data/rules/cc-by-2.5_22.yml deleted file mode 100644 index 438763a7464..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-2.5_23.RULE b/src/licensedcode/data/rules/cc-by-2.5_23.RULE index 908d677aaed..ced8071e892 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_23.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution License 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_23.yml b/src/licensedcode/data/rules/cc-by-2.5_23.yml deleted file mode 100644 index 49838bdb2ce..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5_24.RULE b/src/licensedcode/data/rules/cc-by-2.5_24.RULE index 7b4086bce99..5490b43e060 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_24.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_24.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-2.5 +--- + https://licenses.nuget.org/CC-BY-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_24.yml b/src/licensedcode/data/rules/cc-by-2.5_24.yml deleted file mode 100644 index f0b45da4170..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-2.5 diff --git a/src/licensedcode/data/rules/cc-by-2.5_25.RULE b/src/licensedcode/data/rules/cc-by-2.5_25.RULE index 85d20496152..7565706cbf9 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_25.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_25.yml b/src/licensedcode/data/rules/cc-by-2.5_25.yml deleted file mode 100644 index 63e4ad4ff32..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5_26.RULE b/src/licensedcode/data/rules/cc-by-2.5_26.RULE index 25640004616..b7249a90cb9 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_26.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-2.5 +--- + {{CC-BY-2.5}} https://spdx.org/licenses/CC-BY-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_26.yml b/src/licensedcode/data/rules/cc-by-2.5_26.yml deleted file mode 100644 index 3da529f8c09..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-2.5 diff --git a/src/licensedcode/data/rules/cc-by-2.5_27.RULE b/src/licensedcode/data/rules/cc-by-2.5_27.RULE index db9a78c9e24..6cc994ed120 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_27.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-2.5 +--- + LICENSE {{CC-BY-2.5}} https://spdx.org/licenses/CC-BY-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_27.yml b/src/licensedcode/data/rules/cc-by-2.5_27.yml deleted file mode 100644 index 3da529f8c09..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-2.5 diff --git a/src/licensedcode/data/rules/cc-by-2.5_3.RULE b/src/licensedcode/data/rules/cc-by-2.5_3.RULE index 8e5306e8086..f0a320e6646 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_3.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +--- + Except as noted, this content is licensed under Creative Commons Attribution 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_3.yml b/src/licensedcode/data/rules/cc-by-2.5_3.yml deleted file mode 100644 index 63e4ad4ff32..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5_4.RULE b/src/licensedcode/data/rules/cc-by-2.5_4.RULE index 66252eeba6e..fed2d44543a 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_4.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5 +--- + * Released under the Creative Commons Attribution License - * (http://creativecommons.org/licenses/by/2.5) + * (http://creativecommons.org/licenses/by/2.5) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_4.yml b/src/licensedcode/data/rules/cc-by-2.5_4.yml deleted file mode 100644 index 99ce15a99c5..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5 diff --git a/src/licensedcode/data/rules/cc-by-2.5_5.RULE b/src/licensedcode/data/rules/cc-by-2.5_5.RULE index f29e1d0f826..9fa1acb331f 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_5.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5/ +--- + * This code is freely usable for all purposes. * * This work is licensed under the Creative Commons Attribution2.5 License. diff --git a/src/licensedcode/data/rules/cc-by-2.5_5.yml b/src/licensedcode/data/rules/cc-by-2.5_5.yml deleted file mode 100644 index 34dfef024d6..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-2.5_6.RULE b/src/licensedcode/data/rules/cc-by-2.5_6.RULE index 48110e2f70b..1d2b7ecae28 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_6.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5/ +--- + * * This work is licensed under the Creative Commons Attribution2.5 License. * To view a copy of this license, visit diff --git a/src/licensedcode/data/rules/cc-by-2.5_6.yml b/src/licensedcode/data/rules/cc-by-2.5_6.yml deleted file mode 100644 index 34dfef024d6..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-2.5_7.RULE b/src/licensedcode/data/rules/cc-by-2.5_7.RULE index 1c940f0c512..811798f2c44 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_7.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-2.5 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_7.yml b/src/licensedcode/data/rules/cc-by-2.5_7.yml deleted file mode 100644 index 49838bdb2ce..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-2.5 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-2.5_8.RULE b/src/licensedcode/data/rules/cc-by-2.5_8.RULE index 7901cbe40f0..71e6b4b6de7 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_8.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5/ +--- + Creative Commons Attribution 2.5 Generic (CC-BY 2.5) link: http://creativecommons.org/licenses/by/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_8.yml b/src/licensedcode/data/rules/cc-by-2.5_8.yml deleted file mode 100644 index f673e8092ce..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-2.5_9.RULE b/src/licensedcode/data/rules/cc-by-2.5_9.RULE index 0566b49e1e4..565ab44e014 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_9.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5 +--- + the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.5) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_9.yml b/src/licensedcode/data/rules/cc-by-2.5_9.yml deleted file mode 100644 index 07a773e081b..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5 diff --git a/src/licensedcode/data/rules/cc-by-2.5_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-2.5_licensebutton.RULE index e7498dc152b..428e6cc8612 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by/2.5 +--- + https://licensebuttons.net/l/by/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_licensebutton.yml b/src/licensedcode/data/rules/cc-by-2.5_licensebutton.yml deleted file mode 100644 index 0ad6579585f..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by/2.5 diff --git a/src/licensedcode/data/rules/cc-by-2.5_or_cc-by-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-2.5_or_cc-by-3.0_1.RULE index 5fd79313ddc..d802a0bc2a6 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_or_cc-by-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_or_cc-by-3.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-2.5 OR cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.5/ + - http://creativecommons.org/licenses/by/3.0/ +--- + license: CC-BY-2.5 or CC-BY-3.0 license link: http://creativecommons.org/licenses/by/3.0/ http://creativecommons.org/licenses/by/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_or_cc-by-3.0_1.yml b/src/licensedcode/data/rules/cc-by-2.5_or_cc-by-3.0_1.yml deleted file mode 100644 index 0eff8d8c76b..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_or_cc-by-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 OR cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.5/ - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-2.5_url_1.RULE b/src/licensedcode/data/rules/cc-by-2.5_url_1.RULE index 3eca4446996..85208325092 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-2.5 +--- + https://spdx.org/licenses/cc-by-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_url_1.yml b/src/licensedcode/data/rules/cc-by-2.5_url_1.yml deleted file mode 100644 index 6d92a8dfc67..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-2.5 diff --git a/src/licensedcode/data/rules/cc-by-2.5_url_2.RULE b/src/licensedcode/data/rules/cc-by-2.5_url_2.RULE index c20b999a539..956dbb732a7 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-2.5.html +--- + https://spdx.org/licenses/cc-by-2.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_url_2.yml b/src/licensedcode/data/rules/cc-by-2.5_url_2.yml deleted file mode 100644 index 6f1c1e51322..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-2.5.html diff --git a/src/licensedcode/data/rules/cc-by-2.5_url_glc_57.RULE b/src/licensedcode/data/rules/cc-by-2.5_url_glc_57.RULE index b669dc22d28..41b8ab1dc16 100644 --- a/src/licensedcode/data/rules/cc-by-2.5_url_glc_57.RULE +++ b/src/licensedcode/data/rules/cc-by-2.5_url_glc_57.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/2.5 +--- + https://creativecommons.org/licenses/by/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-2.5_url_glc_57.yml b/src/licensedcode/data/rules/cc-by-2.5_url_glc_57.yml deleted file mode 100644 index 6189581f010..00000000000 --- a/src/licensedcode/data/rules/cc-by-2.5_url_glc_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/2.5 diff --git a/src/licensedcode/data/rules/cc-by-3.0-at.RULE b/src/licensedcode/data/rules/cc-by-3.0-at.RULE index 4facf5f4e68..87309fb0455 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-at.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-at.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-3.0-at +is_license_text: yes +ignorable_urls: + - https://creativecommons.org/ +--- + CREATIVE COMMONS IST KEINE RECHTSANWALTSKANZLEI UND LEISTET KEINE RECHTSBERATUNG. DIE BEREITSTELLUNG DIESER LIZENZ FÜHRT ZU KEINEM MANDATSVERHÄLTNIS. CREATIVE COMMONS STELLT DIESE INFORMATIONEN OHNE GEWÄHR ZUR VERFÜGUNG. CREATIVE COMMONS @@ -315,4 +322,4 @@ die von Zeit zu Zeit auf der Website veröffentlicht oder auf andere Weise auf Anfrage zugänglich gemacht wird. Zur Klarstellung: Die genannten Einschränkungen der Markennutzung sind nicht Bestandteil dieser Lizenz. -Creative Commons kann kontaktiert werden über https://creativecommons.org/. +Creative Commons kann kontaktiert werden über https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-at.yml b/src/licensedcode/data/rules/cc-by-3.0-at.yml deleted file mode 100644 index 83bdca5f2a9..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-at.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-3.0-at -is_license_text: yes -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_1.RULE b/src/licensedcode/data/rules/cc-by-3.0-at_1.RULE index c3e3df4e0fc..663f1df7db0 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-at_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-at_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-at +is_license_reference: yes +relevance: 100 +--- + CC-BY-3.0-AT Creative Commons Attribution 3.0 Austria \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_1.yml b/src/licensedcode/data/rules/cc-by-3.0-at_1.yml deleted file mode 100644 index dd9280c2ac7..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-at_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-at -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_2.RULE b/src/licensedcode/data/rules/cc-by-3.0-at_2.RULE index 5a5be9a67d6..83415e7c16a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-at_2.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-at_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-at +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 3.0 Austria \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_2.yml b/src/licensedcode/data/rules/cc-by-3.0-at_2.yml deleted file mode 100644 index dd9280c2ac7..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-at_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-at -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_3.RULE b/src/licensedcode/data/rules/cc-by-3.0-at_3.RULE index 8c9b6fd9c8b..2a600b316ed 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-at_3.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-at_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-at +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-3.0-AT +--- + https://licenses.nuget.org/CC-BY-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_3.yml b/src/licensedcode/data/rules/cc-by-3.0-at_3.yml deleted file mode 100644 index 2a00d3adea9..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-at_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-at -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-3.0-AT diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_4.RULE b/src/licensedcode/data/rules/cc-by-3.0-at_4.RULE index 0afc57d1b31..d6c15ccb96a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-at_4.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-at_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-at +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_4.yml b/src/licensedcode/data/rules/cc-by-3.0-at_4.yml deleted file mode 100644 index dd9280c2ac7..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-at_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-at -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_5.RULE b/src/licensedcode/data/rules/cc-by-3.0-at_5.RULE index 3ed3a82a388..b383aa5df35 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-at_5.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-at_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-at +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0-AT +--- + {{CC-BY-3.0-AT}} https://spdx.org/licenses/CC-BY-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_5.yml b/src/licensedcode/data/rules/cc-by-3.0-at_5.yml deleted file mode 100644 index 5242a45cc07..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-at_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-at -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0-AT diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_6.RULE b/src/licensedcode/data/rules/cc-by-3.0-at_6.RULE index d1e4b10c399..e1948894503 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-at_6.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-at_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-at +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0-AT +--- + LICENSE {{CC-BY-3.0-AT}} https://spdx.org/licenses/CC-BY-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-at_6.yml b/src/licensedcode/data/rules/cc-by-3.0-at_6.yml deleted file mode 100644 index 5242a45cc07..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-at_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-at -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0-AT diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_1.RULE b/src/licensedcode/data/rules/cc-by-3.0-de_1.RULE index cb8b992edc8..4815f3ce7cd 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-de_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-de_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-de +is_license_reference: yes +relevance: 100 +--- + CC-BY-3.0-DE Creative Commons Attribution 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_1.yml b/src/licensedcode/data/rules/cc-by-3.0-de_1.yml deleted file mode 100644 index 733896c7e58..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-de_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_2.RULE b/src/licensedcode/data/rules/cc-by-3.0-de_2.RULE index 4c917a99909..1ff01b68a99 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-de_2.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-de_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-de +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_2.yml b/src/licensedcode/data/rules/cc-by-3.0-de_2.yml deleted file mode 100644 index 733896c7e58..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-de_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_3.RULE b/src/licensedcode/data/rules/cc-by-3.0-de_3.RULE index e439c928664..022c4e7829d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-de_3.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-de_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-3.0-DE +--- + https://licenses.nuget.org/CC-BY-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_3.yml b/src/licensedcode/data/rules/cc-by-3.0-de_3.yml deleted file mode 100644 index 8afa31e9e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-de_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_4.RULE b/src/licensedcode/data/rules/cc-by-3.0-de_4.RULE index 5401c590b0c..deebcc364cf 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-de_4.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-de_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-de +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_4.yml b/src/licensedcode/data/rules/cc-by-3.0-de_4.yml deleted file mode 100644 index 733896c7e58..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-de_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_5.RULE b/src/licensedcode/data/rules/cc-by-3.0-de_5.RULE index 76cdc542fef..f6fe57e2a86 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-de_5.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-de_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0-DE +--- + {{CC-BY-3.0-DE}} https://spdx.org/licenses/CC-BY-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_5.yml b/src/licensedcode/data/rules/cc-by-3.0-de_5.yml deleted file mode 100644 index bc31f7a15da..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-de_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_6.RULE b/src/licensedcode/data/rules/cc-by-3.0-de_6.RULE index a41c61fee84..c0567151675 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-de_6.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-de_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0-DE +--- + LICENSE {{CC-BY-3.0-DE}} https://spdx.org/licenses/CC-BY-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-de_6.yml b/src/licensedcode/data/rules/cc-by-3.0-de_6.yml deleted file mode 100644 index bc31f7a15da..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-de_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_1.RULE b/src/licensedcode/data/rules/cc-by-3.0-nl_1.RULE index ed9b39de8c2..c03acc54c51 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-nl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-nl +is_license_reference: yes +relevance: 100 +--- + CC-BY-3.0-NL Creative Commons Attribution 3.0 Netherlands \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_1.yml b/src/licensedcode/data/rules/cc-by-3.0-nl_1.yml deleted file mode 100644 index 9b99f9db2bd..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-nl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_2.RULE b/src/licensedcode/data/rules/cc-by-3.0-nl_2.RULE index 3356f593863..770f812aa64 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_2.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-nl_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-nl +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 3.0 Netherlands \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_2.yml b/src/licensedcode/data/rules/cc-by-3.0-nl_2.yml deleted file mode 100644 index 9b99f9db2bd..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-nl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_3.RULE b/src/licensedcode/data/rules/cc-by-3.0-nl_3.RULE index de3c73b331c..54a711a1a1d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_3.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-nl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-nl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-3.0-NL +--- + https://licenses.nuget.org/CC-BY-3.0-NL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_3.yml b/src/licensedcode/data/rules/cc-by-3.0-nl_3.yml deleted file mode 100644 index 155acc50087..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-nl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-3.0-NL diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_4.RULE b/src/licensedcode/data/rules/cc-by-3.0-nl_4.RULE index 370ea6d9463..80159834715 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_4.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-nl_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-nl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-3.0-NL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_4.yml b/src/licensedcode/data/rules/cc-by-3.0-nl_4.yml deleted file mode 100644 index 9b99f9db2bd..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-nl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_5.RULE b/src/licensedcode/data/rules/cc-by-3.0-nl_5.RULE index 48ecd1038b8..1ff2448fa40 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_5.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-nl_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-nl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0-NL +--- + {{CC-BY-3.0-NL}} https://spdx.org/licenses/CC-BY-3.0-NL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_5.yml b/src/licensedcode/data/rules/cc-by-3.0-nl_5.yml deleted file mode 100644 index 41642d8e65e..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-nl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0-NL diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_6.RULE b/src/licensedcode/data/rules/cc-by-3.0-nl_6.RULE index a61453ed225..9c0a6892db5 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_6.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-nl_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-nl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0-NL +--- + LICENSE {{CC-BY-3.0-NL}} https://spdx.org/licenses/CC-BY-3.0-NL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-nl_6.yml b/src/licensedcode/data/rules/cc-by-3.0-nl_6.yml deleted file mode 100644 index 41642d8e65e..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-nl_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-nl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0-NL diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_1.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_1.RULE index 28b1fa9681d..f698e1ec19f 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 3.0 United States \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_1.yml b/src/licensedcode/data/rules/cc-by-3.0-us_1.yml deleted file mode 100644 index 969beb51e7e..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_10.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_10.RULE index 9713d0bfc43..9d338fd6ea9 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_10.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-us +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0-US +--- + LICENSE {{CC-BY-3.0-US}} https://spdx.org/licenses/CC-BY-3.0-US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_10.yml b/src/licensedcode/data/rules/cc-by-3.0-us_10.yml deleted file mode 100644 index c7e9d2a6856..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0-US diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_11.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_11.RULE index cf0d81800f2..857606a08b0 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_11.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-us +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0-US +--- + {{CC-BY-3.0-US}} https://spdx.org/licenses/CC-BY-3.0-US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_11.yml b/src/licensedcode/data/rules/cc-by-3.0-us_11.yml deleted file mode 100644 index c7e9d2a6856..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0-US diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_2.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_2.RULE index 03ce658eff8..6248a6db1fc 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_2.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-us +is_license_reference: yes +relevance: 100 +--- + CC-BY-3.0-US Creative Commons Attribution 3.0 United States \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_2.yml b/src/licensedcode/data/rules/cc-by-3.0-us_2.yml deleted file mode 100644 index 969beb51e7e..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_3.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_3.RULE index 2988589b686..527832ca04a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_3.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0-us +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution 3.0 United States \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_3.yml b/src/licensedcode/data/rules/cc-by-3.0-us_3.yml deleted file mode 100644 index 0d1f03dabb6..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_4.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_4.RULE index 49ae45846a1..a02ee458142 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_4.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0-us +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 3.0 United States CC-BY-3.0-US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_4.yml b/src/licensedcode/data/rules/cc-by-3.0-us_4.yml deleted file mode 100644 index 0d1f03dabb6..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_5.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_5.RULE index 8ef0be54db6..1ef65406665 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_5.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0-us +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-3.0-US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_5.yml b/src/licensedcode/data/rules/cc-by-3.0-us_5.yml deleted file mode 100644 index 2b19260d140..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_6.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_6.RULE index fa6f40ad83f..a8520140970 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_6.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0-us +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution 3.0 United States \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_6.yml b/src/licensedcode/data/rules/cc-by-3.0-us_6.yml deleted file mode 100644 index 2b19260d140..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_7.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_7.RULE index 004fee2d277..5bec4144b9f 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_7.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0-us +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-3.0-US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_7.yml b/src/licensedcode/data/rules/cc-by-3.0-us_7.yml deleted file mode 100644 index 2b19260d140..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_8.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_8.RULE index 056e4ca0981..9b21519a8ce 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_8.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0-us +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-3.0-US +--- + https://licenses.nuget.org/CC-BY-3.0-US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_8.yml b/src/licensedcode/data/rules/cc-by-3.0-us_8.yml deleted file mode 100644 index 3dd2d5fb13a..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-3.0-US diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_9.RULE b/src/licensedcode/data/rules/cc-by-3.0-us_9.RULE index a24bb6fd8e2..dcf3cb86d19 100644 --- a/src/licensedcode/data/rules/cc-by-3.0-us_9.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0-us_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0-us +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-3.0-US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0-us_9.yml b/src/licensedcode/data/rules/cc-by-3.0-us_9.yml deleted file mode 100644 index 969beb51e7e..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0-us_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0.RULE b/src/licensedcode/data/rules/cc-by-3.0.RULE index cc0d7fde9c0..d02224d18a0 100644 --- a/src/licensedcode/data/rules/cc-by-3.0.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-3.0.SPDX.RULE index 21157982be7..d0340c48413 100644 --- a/src/licensedcode/data/rules/cc-by-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution 3.0 Unported @@ -63,4 +72,4 @@ Creative Commons is not a party to this License, and makes no warranty whatsoeve Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, Creative Commons does not authorize the use by either party of the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. -Creative Commons may be contacted at http://creativecommons.org/. +Creative Commons may be contacted at http://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-3.0.SPDX.yml deleted file mode 100644 index 8dc5037281d..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-3.0.yml b/src/licensedcode/data/rules/cc-by-3.0.yml deleted file mode 100644 index efa355d47e7..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-3.0_1.RULE index 7ec5ddde1e5..bc041342584 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/legalcode +--- + http://creativecommons.org/licenses/by/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_1.yml b/src/licensedcode/data/rules/cc-by-3.0_1.yml deleted file mode 100644 index 228cd576406..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_10.RULE b/src/licensedcode/data/rules/cc-by-3.0_10.RULE index ca862b991ca..ea04858d6c4 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_10.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.creativecommons.org/licenses/by/3.0/us +--- + This database incorporates geographical data, which is made available under the Creative Commons Attribution 3.0 License. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_10.yml b/src/licensedcode/data/rules/cc-by-3.0_10.yml deleted file mode 100644 index cd5c4d63e76..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.creativecommons.org/licenses/by/3.0/us diff --git a/src/licensedcode/data/rules/cc-by-3.0_100.RULE b/src/licensedcode/data/rules/cc-by-3.0_100.RULE index 9c193c48b78..24da6d7582d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_100.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_100.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution License, V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_100.yml b/src/licensedcode/data/rules/cc-by-3.0_100.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_101.RULE b/src/licensedcode/data/rules/cc-by-3.0_101.RULE index e90f0d659ec..f0102ff4e72 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_101.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_101.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution License, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_101.yml b/src/licensedcode/data/rules/cc-by-3.0_101.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_102.RULE b/src/licensedcode/data/rules/cc-by-3.0_102.RULE index a8e9e08e1b2..5ec2a034b79 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_102.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_102.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution 3.0 Unported CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL diff --git a/src/licensedcode/data/rules/cc-by-3.0_102.yml b/src/licensedcode/data/rules/cc-by-3.0_102.yml deleted file mode 100644 index eedc0368c5f..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_103.RULE b/src/licensedcode/data/rules/cc-by-3.0_103.RULE index b4b85600702..2875a9c35c9 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_103.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_103.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution, V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_103.yml b/src/licensedcode/data/rules/cc-by-3.0_103.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_104.RULE b/src/licensedcode/data/rules/cc-by-3.0_104.RULE index 4b8230d7f0b..f227d5d3f3d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_104.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_104.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_104.yml b/src/licensedcode/data/rules/cc-by-3.0_104.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_105.RULE b/src/licensedcode/data/rules/cc-by-3.0_105.RULE index bdfb4dbc030..71de2414467 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_105.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_105.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/ +--- + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS diff --git a/src/licensedcode/data/rules/cc-by-3.0_105.yml b/src/licensedcode/data/rules/cc-by-3.0_105.yml deleted file mode 100644 index 9104957fbea..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_106.RULE b/src/licensedcode/data/rules/cc-by-3.0_106.RULE index 9f236517e2e..a635b515600 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_106.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_106.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/CC-BY-3.0 +--- + under the terms of [the Creative Commons Attribution License 3.0 Unported (SPDX: "CC-BY-3.0")](http://spdx.org/licenses/CC-BY-3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_106.yml b/src/licensedcode/data/rules/cc-by-3.0_106.yml deleted file mode 100644 index 9e5904b1792..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_106.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/CC-BY-3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_107.RULE b/src/licensedcode/data/rules/cc-by-3.0_107.RULE index d28eb3dcfa6..e3b34700bbe 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_107.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_107.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Creative Commons Attribution License 3.0 Unported. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_107.yml b/src/licensedcode/data/rules/cc-by-3.0_107.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_108.RULE b/src/licensedcode/data/rules/cc-by-3.0_108.RULE index 06016e4822d..e273376b10b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_108.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_108.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + under a CC Attribution 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_108.yml b/src/licensedcode/data/rules/cc-by-3.0_108.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_109.RULE b/src/licensedcode/data/rules/cc-by-3.0_109.RULE index 01e36bc4388..67df860a13c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_109.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_109.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +--- + License: CC-BY-3.0 Creative Commons Legal Code . diff --git a/src/licensedcode/data/rules/cc-by-3.0_109.yml b/src/licensedcode/data/rules/cc-by-3.0_109.yml deleted file mode 100644 index 2f9340ac915..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_109.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-3.0_11.RULE b/src/licensedcode/data/rules/cc-by-3.0_11.RULE index c3492c421e0..e91365ed5cb 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_11.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.creativecommons.org/licenses/by/3.0/us +--- + This is made available under the Creative Commons Attribution 3.0 License. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_11.yml b/src/licensedcode/data/rules/cc-by-3.0_11.yml deleted file mode 100644 index cd5c4d63e76..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.creativecommons.org/licenses/by/3.0/us diff --git a/src/licensedcode/data/rules/cc-by-3.0_110.RULE b/src/licensedcode/data/rules/cc-by-3.0_110.RULE index 3f95062d516..11511ea651b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_110.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_110.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +--- + Creative Commons Legal Code . Attribution 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-3.0_110.yml b/src/licensedcode/data/rules/cc-by-3.0_110.yml deleted file mode 100644 index 2f9340ac915..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_110.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-3.0_111.RULE b/src/licensedcode/data/rules/cc-by-3.0_111.RULE index b1846df3799..a6a6c4c56c4 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_111.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_111.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 +--- + are covered by the Creative Commons Attribution 3.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_111.yml b/src/licensedcode/data/rules/cc-by-3.0_111.yml deleted file mode 100644 index a6bfa8b042f..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_112.RULE b/src/licensedcode/data/rules/cc-by-3.0_112.RULE index c8638cd2ad1..77b668e1f06 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_112.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_112.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-3.0 Creative Commons Attribution 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_112.yml b/src/licensedcode/data/rules/cc-by-3.0_112.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_113.RULE b/src/licensedcode/data/rules/cc-by-3.0_113.RULE index 185a08fd0c3..775916ea6d7 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_113.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_113.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_113.yml b/src/licensedcode/data/rules/cc-by-3.0_113.yml deleted file mode 100644 index 293901f7380..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_113.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0_114.RULE b/src/licensedcode/data/rules/cc-by-3.0_114.RULE index 0c6604e136b..ee1ba979835 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_114.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_114.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_114.yml b/src/licensedcode/data/rules/cc-by-3.0_114.yml deleted file mode 100644 index 293901f7380..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_114.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0_115.RULE b/src/licensedcode/data/rules/cc-by-3.0_115.RULE index 5b3cf573675..946006a86ca 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_115.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_115.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution 3.0 Unported CC-BY-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_115.yml b/src/licensedcode/data/rules/cc-by-3.0_115.yml deleted file mode 100644 index 293901f7380..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_115.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0_116.RULE b/src/licensedcode/data/rules/cc-by-3.0_116.RULE index fd367c0bd37..190597f85ba 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_116.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_116.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_116.yml b/src/licensedcode/data/rules/cc-by-3.0_116.yml deleted file mode 100644 index 0da0de20e26..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_116.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0_117.RULE b/src/licensedcode/data/rules/cc-by-3.0_117.RULE index 097b9b8b96a..fac6139bda0 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_117.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_117.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_117.yml b/src/licensedcode/data/rules/cc-by-3.0_117.yml deleted file mode 100644 index 0da0de20e26..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_117.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-3.0_118.RULE b/src/licensedcode/data/rules/cc-by-3.0_118.RULE index 2efb0af0501..685c1e532b9 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_118.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_118.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-3.0 +--- + https://licenses.nuget.org/CC-BY-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_118.yml b/src/licensedcode/data/rules/cc-by-3.0_118.yml deleted file mode 100644 index e2b72272de8..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_118.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_119.RULE b/src/licensedcode/data/rules/cc-by-3.0_119.RULE index 8b99bbf1118..3701ac43e14 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_119.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_119.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_119.yml b/src/licensedcode/data/rules/cc-by-3.0_119.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_12.RULE b/src/licensedcode/data/rules/cc-by-3.0_12.RULE index dfd2c883c6d..900f85d44de 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or send a letter to @@ -8,4 +16,4 @@ or send a letter to California,\ * 94105, - USA. + USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_12.yml b/src/licensedcode/data/rules/cc-by-3.0_12.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_120.RULE b/src/licensedcode/data/rules/cc-by-3.0_120.RULE index 51622a5fe7d..21f035d4a29 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_120.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_120.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0 +--- + {{CC-BY-3.0}} https://spdx.org/licenses/CC-BY-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_120.yml b/src/licensedcode/data/rules/cc-by-3.0_120.yml deleted file mode 100644 index bebd1e7ac78..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_121.RULE b/src/licensedcode/data/rules/cc-by-3.0_121.RULE index 912878a86bb..58589fe7ce3 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_121.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_121.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-3.0 +--- + LICENSE {{CC-BY-3.0}} https://spdx.org/licenses/CC-BY-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_121.yml b/src/licensedcode/data/rules/cc-by-3.0_121.yml deleted file mode 100644 index bebd1e7ac78..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_121.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_122.RULE b/src/licensedcode/data/rules/cc-by-3.0_122.RULE index 139ea4047a5..c7838a4337b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_122.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_122.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + License This theme is licensed under the terms of the Creative Commons Attribution 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_122.yml b/src/licensedcode/data/rules/cc-by-3.0_122.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_123.RULE b/src/licensedcode/data/rules/cc-by-3.0_123.RULE index 82ecdb7aa40..de7fa326dae 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_123.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_123.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + This theme is licensed under the terms of the Creative Commons Attribution 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_123.yml b/src/licensedcode/data/rules/cc-by-3.0_123.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_124.RULE b/src/licensedcode/data/rules/cc-by-3.0_124.RULE index 6f86f219ab5..71815a0cb25 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_124.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_124.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the Creative Commons Attribution 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_124.yml b/src/licensedcode/data/rules/cc-by-3.0_124.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_125.RULE b/src/licensedcode/data/rules/cc-by-3.0_125.RULE index fcb4da801d6..0b920ffa11b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_125.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_125.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the Creative Commons Attribution 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_125.yml b/src/licensedcode/data/rules/cc-by-3.0_125.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_13.RULE b/src/licensedcode/data/rules/cc-by-3.0_13.RULE index e4947cc861d..745b8648670 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_13.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 +--- + documentation licensed under CC BY 3.0 - * http://creativecommons.org/licenses/by/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_13.yml b/src/licensedcode/data/rules/cc-by-3.0_13.yml deleted file mode 100644 index a6bfa8b042f..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_14.RULE b/src/licensedcode/data/rules/cc-by-3.0_14.RULE index f77ff5867bf..5cabbc337ee 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_14.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/us/ + - http://www.whitehouse.gov/ +--- + Except where otherwise noted, third-party content on this site is licensed under a {{ http://creativecommons.org/licenses/by/3.0/us/ }} {{ Creative Commons Attribution 3.0 License }} @@ -7,4 +17,4 @@ royalty-free license to the rest of the world for their submissions to http://www.whitehouse.gov/ Whitehouse.gov under the {{ http://creativecommons.org/licenses/by/3.0/us/ }} -{{Creative Commons Attribution 3.0 License}} +{{Creative Commons Attribution 3.0 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_14.yml b/src/licensedcode/data/rules/cc-by-3.0_14.yml deleted file mode 100644 index d38483437c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/us/ - - http://www.whitehouse.gov/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_15.RULE b/src/licensedcode/data/rules/cc-by-3.0_15.RULE index cf523cf5a06..1fe329470e2 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + The design is licensed under the Creative Commons 3.0 Attributions license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_15.yml b/src/licensedcode/data/rules/cc-by-3.0_15.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_16.RULE b/src/licensedcode/data/rules/cc-by-3.0_16.RULE index a6599dfbd79..856459473f3 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/us/ +--- + Except where otherwise noted, third-party content on this site is licensed under a + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_20.yml b/src/licensedcode/data/rules/cc-by-3.0_20.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_21.RULE b/src/licensedcode/data/rules/cc-by-3.0_21.RULE index 5b90e2c3814..9492072f2f3 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/ +--- + These icons are licensed under a Creative Commons Attribution 3.0 license. - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_21.yml b/src/licensedcode/data/rules/cc-by-3.0_21.yml deleted file mode 100644 index aeedf192d23..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_22.RULE b/src/licensedcode/data/rules/cc-by-3.0_22.RULE index e84fdc5725f..9d311250285 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_22.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_22.yml b/src/licensedcode/data/rules/cc-by-3.0_22.yml deleted file mode 100644 index 52a9cb56c00..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_23.RULE b/src/licensedcode/data/rules/cc-by-3.0_23.RULE index 700f83946a4..f7b9d89cd7d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_23.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_23.yml b/src/licensedcode/data/rules/cc-by-3.0_23.yml deleted file mode 100644 index 52a9cb56c00..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_24.RULE b/src/licensedcode/data/rules/cc-by-3.0_24.RULE index d41c13af295..7c6a0ea28ad 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_24.RULE @@ -1,3 +1,16 @@ +--- +license_expression: cc-by-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ + - http://creativecommons.org/ns#Attribution + - http://creativecommons.org/ns#DerivativeWorks + - http://creativecommons.org/ns#Distribution + - http://creativecommons.org/ns#Notice + - http://creativecommons.org/ns#Reproduction +--- + CC BY 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_25.yml b/src/licensedcode/data/rules/cc-by-3.0_25.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_26.RULE b/src/licensedcode/data/rules/cc-by-3.0_26.RULE index 8c1757eb244..98b22ed16b1 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons 3.0 BY \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_26.yml b/src/licensedcode/data/rules/cc-by-3.0_26.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_27.RULE b/src/licensedcode/data/rules/cc-by-3.0_27.RULE index ffb0546e9bc..f4907bc2849 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_27.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + Creative Commons Attribution 3.0 Unported (CC-BY 3.0) link: http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_27.yml b/src/licensedcode/data/rules/cc-by-3.0_27.yml deleted file mode 100644 index efa355d47e7..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_28.RULE b/src/licensedcode/data/rules/cc-by-3.0_28.RULE index eaa6b29379a..5b764edacb0 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + license link: http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_28.yml b/src/licensedcode/data/rules/cc-by-3.0_28.yml deleted file mode 100644 index efa355d47e7..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_29.RULE b/src/licensedcode/data/rules/cc-by-3.0_29.RULE index a48b99af002..84dccc9bcde 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_29.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright the project contributors +ignorable_holders: + - the project contributors +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 +--- + ## License Copyright the [project contributors](CONTRIBUTORS.md). diff --git a/src/licensedcode/data/rules/cc-by-3.0_29.yml b/src/licensedcode/data/rules/cc-by-3.0_29.yml deleted file mode 100644 index b743a3d5467..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_29.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright the project contributors -ignorable_holders: - - the project contributors -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_3.RULE b/src/licensedcode/data/rules/cc-by-3.0_3.RULE index 58fc902cf68..679774a6b5c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + is licensed by [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_3.yml b/src/licensedcode/data/rules/cc-by-3.0_3.yml deleted file mode 100644 index efa355d47e7..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_30.RULE b/src/licensedcode/data/rules/cc-by-3.0_30.RULE index 154642bd004..b1dc8ed534b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_30.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 +--- + Released under a [Creative Commons Attribution 3.0 Unported License](http://creativecommons.org/licenses/by/3.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_30.yml b/src/licensedcode/data/rules/cc-by-3.0_30.yml deleted file mode 100644 index a6bfa8b042f..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_31.RULE b/src/licensedcode/data/rules/cc-by-3.0_31.RULE index e5c6c5aec0a..edab8bc9c22 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_31.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright the project contributors +ignorable_holders: + - the project contributors +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0 +--- + ## License Copyright the [project contributors](CONTRIBUTORS.md). diff --git a/src/licensedcode/data/rules/cc-by-3.0_31.yml b/src/licensedcode/data/rules/cc-by-3.0_31.yml deleted file mode 100644 index 4b59c1d4bc9..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_31.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright the project contributors -ignorable_holders: - - the project contributors -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_32.RULE b/src/licensedcode/data/rules/cc-by-3.0_32.RULE index 978d87d42f9..d9c7a1fde55 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0 +--- + Released under a [Creative Commons Attribution 3.0 Unported License](https://creativecommons.org/licenses/by/3.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_32.yml b/src/licensedcode/data/rules/cc-by-3.0_32.yml deleted file mode 100644 index 0fad2a7736a..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_33.RULE b/src/licensedcode/data/rules/cc-by-3.0_33.RULE index 9b4a39bdbbe..ab540e10dd7 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_33.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ + - http://fontawesome.io/ + - http://fontawesome.io/license +--- + The Font Awesome documentation is licensed under the CC BY 3.0 License: http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_33.yml b/src/licensedcode/data/rules/cc-by-3.0_33.yml deleted file mode 100644 index 28081f184fe..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_33.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ - - http://fontawesome.io/ - - http://fontawesome.io/license diff --git a/src/licensedcode/data/rules/cc-by-3.0_34.RULE b/src/licensedcode/data/rules/cc-by-3.0_34.RULE index 1513a907a2f..d178afcf19e 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_34.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution 3.0 Unported . CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE diff --git a/src/licensedcode/data/rules/cc-by-3.0_34.yml b/src/licensedcode/data/rules/cc-by-3.0_34.yml deleted file mode 100644 index 9104957fbea..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_35.RULE b/src/licensedcode/data/rules/cc-by-3.0_35.RULE index b233ff93451..2775e3347db 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_35.yml b/src/licensedcode/data/rules/cc-by-3.0_35.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_36.RULE b/src/licensedcode/data/rules/cc-by-3.0_36.RULE index de13dccfbe1..3f25f193c4e 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under a Creative Commons Attribution 3.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_36.yml b/src/licensedcode/data/rules/cc-by-3.0_36.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_37.RULE b/src/licensedcode/data/rules/cc-by-3.0_37.RULE index f71205b553e..ee319a68b99 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under a Creative Commons Attribution 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_37.yml b/src/licensedcode/data/rules/cc-by-3.0_37.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_38.RULE b/src/licensedcode/data/rules/cc-by-3.0_38.RULE index 692ffb19d42..70853ef48f6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_38.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/ +--- + documentation (everything found under the docs/ subdirectory in the source tree) is licensed under the Creative Commons CC BY 3.0 license, which can be found at: diff --git a/src/licensedcode/data/rules/cc-by-3.0_38.yml b/src/licensedcode/data/rules/cc-by-3.0_38.yml deleted file mode 100644 index aeedf192d23..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_39.RULE b/src/licensedcode/data/rules/cc-by-3.0_39.RULE index 7793fce6a0b..6c8a8073e96 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_39.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/ +--- + licensed under the Creative Commons CC BY 3.0 license, which can be found at: diff --git a/src/licensedcode/data/rules/cc-by-3.0_39.yml b/src/licensedcode/data/rules/cc-by-3.0_39.yml deleted file mode 100644 index aeedf192d23..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_4.RULE b/src/licensedcode/data/rules/cc-by-3.0_4.RULE index 94aef9794cf..aaccc121c53 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 + - http://creativecommons.org/licenses/by/3.0/ + - http://creativecommons.org/licenses/by/3.0/legalcode +--- + Written Material ---------------- @@ -27,4 +36,4 @@ With the understanding that: [http://creativecommons.org/licenses/by/3.0/](http://creativecommons.org/licenses/by/3.0/). For the full legal text of this license, please see -[http://creativecommons.org/licenses/by/3.0/legalcode](http://creativecommons.org/licenses/by/3.0/legalcode). +[http://creativecommons.org/licenses/by/3.0/legalcode](http://creativecommons.org/licenses/by/3.0/legalcode). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_4.yml b/src/licensedcode/data/rules/cc-by-3.0_4.yml deleted file mode 100644 index a2b38c7518a..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 - - http://creativecommons.org/licenses/by/3.0/ - - http://creativecommons.org/licenses/by/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_40.RULE b/src/licensedcode/data/rules/cc-by-3.0_40.RULE index 151e62304e7..00d4009b22a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons CC BY 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_40.yml b/src/licensedcode/data/rules/cc-by-3.0_40.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_41.RULE b/src/licensedcode/data/rules/cc-by-3.0_41.RULE index a065b347886..a9522755f3c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_41.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons CC BY 3.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_41.yml b/src/licensedcode/data/rules/cc-by-3.0_41.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_42.RULE b/src/licensedcode/data/rules/cc-by-3.0_42.RULE index 4516412854f..a6643697f24 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_42.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/ +--- + licensed under the Creative Commons CC BY 3.0 license https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_42.yml b/src/licensedcode/data/rules/cc-by-3.0_42.yml deleted file mode 100644 index aeedf192d23..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_43.RULE b/src/licensedcode/data/rules/cc-by-3.0_43.RULE index e51fa6b7e01..a4409ed5f88 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_43.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/ +--- + the Creative Commons CC BY 3.0 license https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_43.yml b/src/licensedcode/data/rules/cc-by-3.0_43.yml deleted file mode 100644 index 57c8eae8dec..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_44.RULE b/src/licensedcode/data/rules/cc-by-3.0_44.RULE index 7dd2e2d9ab6..c69571a1d65 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_44.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/ +--- + https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_44.yml b/src/licensedcode/data/rules/cc-by-3.0_44.yml deleted file mode 100644 index 57c8eae8dec..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_45.RULE b/src/licensedcode/data/rules/cc-by-3.0_45.RULE index e5b8cf21839..cdcbfa43587 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_45.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + documentation (everything found under the docs/ subdirectory in the source tree) is licensed under the Creative Commons CC BY 3.0 license, which can be found at: diff --git a/src/licensedcode/data/rules/cc-by-3.0_45.yml b/src/licensedcode/data/rules/cc-by-3.0_45.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_46.RULE b/src/licensedcode/data/rules/cc-by-3.0_46.RULE index 8c8eed373e8..b6bc030b3ac 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_46.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + licensed under the Creative Commons CC BY 3.0 license, which can be found at: diff --git a/src/licensedcode/data/rules/cc-by-3.0_46.yml b/src/licensedcode/data/rules/cc-by-3.0_46.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_47.RULE b/src/licensedcode/data/rules/cc-by-3.0_47.RULE index cb6c626fe99..64c39f6d508 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_47.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + licensed under the Creative Commons CC BY 3.0 license http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_47.yml b/src/licensedcode/data/rules/cc-by-3.0_47.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_48.RULE b/src/licensedcode/data/rules/cc-by-3.0_48.RULE index f7ab11ee1e2..1e3d4d8bc81 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_48.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + the Creative Commons CC BY 3.0 license http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_48.yml b/src/licensedcode/data/rules/cc-by-3.0_48.yml deleted file mode 100644 index efa355d47e7..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_49.RULE b/src/licensedcode/data/rules/cc-by-3.0_49.RULE index c79d49cb009..577abbfc112 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_49.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Legal Code Attribution 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-3.0_49.yml b/src/licensedcode/data/rules/cc-by-3.0_49.yml deleted file mode 100644 index 9104957fbea..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_5.RULE b/src/licensedcode/data/rules/cc-by-3.0_5.RULE index dfe7b6a55e2..99f2b269039 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +--- + all written material will be covered by the Creative Commons - Attribution license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_5.yml b/src/licensedcode/data/rules/cc-by-3.0_5.yml deleted file mode 100644 index de736393c6b..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cc-by-3.0_50.RULE b/src/licensedcode/data/rules/cc-by-3.0_50.RULE index b40402ba858..dc299a508f1 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_50.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/us/ +--- + licensed under a Creative Commons Attribution 3.0 United States License< \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_50.yml b/src/licensedcode/data/rules/cc-by-3.0_50.yml deleted file mode 100644 index dbc0b40c0dd..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_51.RULE b/src/licensedcode/data/rules/cc-by-3.0_51.RULE index 36f72cbb3d7..72a489c1e4f 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/us/legalcode +--- + Please see the full text of the Creative Commons Attribution license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_51.yml b/src/licensedcode/data/rules/cc-by-3.0_51.yml deleted file mode 100644 index 3bd773e86e9..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/us/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_52.RULE b/src/licensedcode/data/rules/cc-by-3.0_52.RULE index a93d2edb6a6..ae143545bd3 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_52.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 3.0 United States License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_52.yml b/src/licensedcode/data/rules/cc-by-3.0_52.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_53.RULE b/src/licensedcode/data/rules/cc-by-3.0_53.RULE index 0698dc30f25..d4163ce816b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_53.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/us/ +--- + http://creativecommons.org/licenses/by/3.0/us/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_53.yml b/src/licensedcode/data/rules/cc-by-3.0_53.yml deleted file mode 100644 index 4ff3a9a430f..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_54.RULE b/src/licensedcode/data/rules/cc-by-3.0_54.RULE index 935cb292716..f2d7b7c40cf 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_54.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/us/ +--- + https://creativecommons.org/licenses/by/3.0/us/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_54.yml b/src/licensedcode/data/rules/cc-by-3.0_54.yml deleted file mode 100644 index ff132f8970c..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_55.RULE b/src/licensedcode/data/rules/cc-by-3.0_55.RULE index 2e10c576e38..349a22ce6da 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons-Attribution 3.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_55.yml b/src/licensedcode/data/rules/cc-by-3.0_55.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_56.RULE b/src/licensedcode/data/rules/cc-by-3.0_56.RULE index 8b66ab6abe0..ed4c79b2cb1 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons-Attribution 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_56.yml b/src/licensedcode/data/rules/cc-by-3.0_56.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_57.RULE b/src/licensedcode/data/rules/cc-by-3.0_57.RULE index 5d64ebbf274..dbbf4378e43 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_57.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + the Creative Commons-Attribution 3.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_57.yml b/src/licensedcode/data/rules/cc-by-3.0_57.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_58.RULE b/src/licensedcode/data/rules/cc-by-3.0_58.RULE index 82613f3a4c5..0c97257856a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + the Creative Commons-Attribution 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_58.yml b/src/licensedcode/data/rules/cc-by-3.0_58.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_59.RULE b/src/licensedcode/data/rules/cc-by-3.0_59.RULE index b09e17a5ee5..bb7e26de125 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_59.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/us/ +--- + license" href="http://creativecommons.org/licenses/by/3.0/us/">Creative Commons License, which is available under the following Creative Commons Attribution 3.0 License. This applies only to the go-github source diff --git a/src/licensedcode/data/rules/cc-by-3.0_77.yml b/src/licensedcode/data/rules/cc-by-3.0_77.yml deleted file mode 100644 index e65d499e67d..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://developer.github.com/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_78.RULE b/src/licensedcode/data/rules/cc-by-3.0_78.RULE index c1be8d0e916..ae4c930a345 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_78.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_78.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + available under the following Creative Commons Attribution 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_78.yml b/src/licensedcode/data/rules/cc-by-3.0_78.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_79.RULE b/src/licensedcode/data/rules/cc-by-3.0_79.RULE index 61a7362b8cc..6d1f6865abe 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_79.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_79.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + Shared under the Creative Commons Attribution 3.0 Unported License http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_79.yml b/src/licensedcode/data/rules/cc-by-3.0_79.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_8.RULE b/src/licensedcode/data/rules/cc-by-3.0_8.RULE index f51101a2df1..aca55a8ac20 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_8.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/legalcode +--- + Distributed under the terms of the Creative Commons Attribution License -version 3.0 (CC-BY 3.0) . +version 3.0 (CC-BY 3.0) . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_8.yml b/src/licensedcode/data/rules/cc-by-3.0_8.yml deleted file mode 100644 index a754c6b063f..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_80.RULE b/src/licensedcode/data/rules/cc-by-3.0_80.RULE index e473e300f65..e23e43c0df2 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_80.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_80.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + You are granted a license to use, reproduce and create derivative works of this document under Creative Commons Attribution 3.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_80.yml b/src/licensedcode/data/rules/cc-by-3.0_80.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_81.RULE b/src/licensedcode/data/rules/cc-by-3.0_81.RULE index 9e4f17c42e1..7c822d1a00e 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_81.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_81.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 + - http://creativecommons.org/licenses/by/3.0/ + - http://creativecommons.org/licenses/by/3.0/legalcode +--- + All written material in this project is made available under the Creative Commons Attribution license. You are free: diff --git a/src/licensedcode/data/rules/cc-by-3.0_81.yml b/src/licensedcode/data/rules/cc-by-3.0_81.yml deleted file mode 100644 index 4a21bf51ef9..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_81.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 - - http://creativecommons.org/licenses/by/3.0/ - - http://creativecommons.org/licenses/by/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_82.RULE b/src/licensedcode/data/rules/cc-by-3.0_82.RULE index 42e33e75d47..03ba2c8aa31 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_82.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_82.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/2.1/legalcode +--- + http://creativecommons.org/licenses/by-nc/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_82.yml b/src/licensedcode/data/rules/cc-by-3.0_82.yml deleted file mode 100644 index 7138b984634..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_83.RULE b/src/licensedcode/data/rules/cc-by-3.0_83.RULE index 54a41d4d90c..fc0bf1a8484 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_83.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_83.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/3.0/igo +--- + http://creativecommons.org/licenses/by-nc/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_83.yml b/src/licensedcode/data/rules/cc-by-3.0_83.yml deleted file mode 100644 index 12ebb193ad8..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-3.0_84.RULE b/src/licensedcode/data/rules/cc-by-3.0_84.RULE index b7d3e005891..3cc3d6dbb41 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_84.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_84.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/3.0/igo/legalcode +--- + http://creativecommons.org/licenses/by-nc/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_84.yml b/src/licensedcode/data/rules/cc-by-3.0_84.yml deleted file mode 100644 index c0ad2ceb761..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_84.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_85.RULE b/src/licensedcode/data/rules/cc-by-3.0_85.RULE index 7e3a5845a18..a7822a5c1d8 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_85.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_85.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/igo +--- + http://creativecommons.org/licenses/by/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_85.yml b/src/licensedcode/data/rules/cc-by-3.0_85.yml deleted file mode 100644 index 244c56e441b..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-3.0_86.RULE b/src/licensedcode/data/rules/cc-by-3.0_86.RULE index a97b4714430..b3d833fb96b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_86.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_86.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/igo/legalcode +--- + http://creativecommons.org/licenses/by/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_86.yml b/src/licensedcode/data/rules/cc-by-3.0_86.yml deleted file mode 100644 index 15648f60de8..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_87.RULE b/src/licensedcode/data/rules/cc-by-3.0_87.RULE index 3920a4b5ca9..6f53676a609 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_87.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_87.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/legalcode.txt +--- + http://creativecommons.org/licenses/by/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_87.yml b/src/licensedcode/data/rules/cc-by-3.0_87.yml deleted file mode 100644 index 47aaf45b95e..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-3.0_88.RULE b/src/licensedcode/data/rules/cc-by-3.0_88.RULE index 49af5c2aa25..25720e6c668 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_88.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_88.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/2.1/legalcode +--- + https://creativecommons.org/licenses/by-nc/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_88.yml b/src/licensedcode/data/rules/cc-by-3.0_88.yml deleted file mode 100644 index fac9388bc9a..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_89.RULE b/src/licensedcode/data/rules/cc-by-3.0_89.RULE index eebddbb8a8b..ece8133bda6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_89.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_89.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/3.0/igo +--- + https://creativecommons.org/licenses/by-nc/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_89.yml b/src/licensedcode/data/rules/cc-by-3.0_89.yml deleted file mode 100644 index 5564fb9cba0..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-3.0_9.RULE b/src/licensedcode/data/rules/cc-by-3.0_9.RULE index 0b019876b29..bc3e7bae144 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + licensed under http://creativecommons.org/licenses/by/3.0/" CC BY 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_9.yml b/src/licensedcode/data/rules/cc-by-3.0_9.yml deleted file mode 100644 index 16329623205..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_90.RULE b/src/licensedcode/data/rules/cc-by-3.0_90.RULE index 25a930da7a8..8870bf88c46 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_90.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_90.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/3.0/igo/legalcode +--- + https://creativecommons.org/licenses/by-nc/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_90.yml b/src/licensedcode/data/rules/cc-by-3.0_90.yml deleted file mode 100644 index 4bd81cbdb6b..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_90.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_91.RULE b/src/licensedcode/data/rules/cc-by-3.0_91.RULE index c6ccf3b373d..23398c00413 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_91.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_91.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/igo +--- + https://creativecommons.org/licenses/by/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_91.yml b/src/licensedcode/data/rules/cc-by-3.0_91.yml deleted file mode 100644 index 3cf7f8da8c5..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-3.0_92.RULE b/src/licensedcode/data/rules/cc-by-3.0_92.RULE index 8077ce05a89..28012fafba4 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_92.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_92.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/igo/legalcode +--- + https://creativecommons.org/licenses/by/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_92.yml b/src/licensedcode/data/rules/cc-by-3.0_92.yml deleted file mode 100644 index 55918c8171c..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_93.RULE b/src/licensedcode/data/rules/cc-by-3.0_93.RULE index e092a408f71..9ca34dd0e48 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_93.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_93.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/legalcode +--- + https://creativecommons.org/licenses/by/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_93.yml b/src/licensedcode/data/rules/cc-by-3.0_93.yml deleted file mode 100644 index 705b43f67bd..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-3.0_94.RULE b/src/licensedcode/data/rules/cc-by-3.0_94.RULE index a4ef883e87a..ab476be48c6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_94.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_94.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/legalcode.txt +--- + https://creativecommons.org/licenses/by/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_94.yml b/src/licensedcode/data/rules/cc-by-3.0_94.yml deleted file mode 100644 index e184e36a1a8..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-3.0_95.RULE b/src/licensedcode/data/rules/cc-by-3.0_95.RULE index c079aa88d55..872f7560048 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_95.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_95.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-Attribution 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_95.yml b/src/licensedcode/data/rules/cc-by-3.0_95.yml deleted file mode 100644 index 2f0194dc267..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_96.RULE b/src/licensedcode/data/rules/cc-by-3.0_96.RULE index 68f28b599e1..15dce4ec2ec 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_96.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_96.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution 3.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_96.yml b/src/licensedcode/data/rules/cc-by-3.0_96.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_97.RULE b/src/licensedcode/data/rules/cc-by-3.0_97.RULE index ae1aac0892c..f32d75ed639 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_97.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_97.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution 3.0 license (CC-BY-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_97.yml b/src/licensedcode/data/rules/cc-by-3.0_97.yml deleted file mode 100644 index 1efc1c1f174..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_98.RULE b/src/licensedcode/data/rules/cc-by-3.0_98.RULE index 50515730ac2..0e23aa252ee 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_98.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_98.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/ +--- + is licensed under the Creative Commons Attribution 3.0 license (CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/ for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_98.yml b/src/licensedcode/data/rules/cc-by-3.0_98.yml deleted file mode 100644 index aeedf192d23..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_99.RULE b/src/licensedcode/data/rules/cc-by-3.0_99.RULE index eff1d82b91f..27e8a6e4f4a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_99.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_99.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/ +--- + licensed under the Creative Commons Attribution 3.0 license (CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/ for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_99.yml b/src/licensedcode/data/rules/cc-by-3.0_99.yml deleted file mode 100644 index aeedf192d23..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_1.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_1.RULE index f0ff4ef16c1..1ecd2161f6d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_1.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_1.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_1.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_11.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_11.RULE index 7cbb61bd765..deb6958d16c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_11.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_11.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution 3.0 Germany CC-BY-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_11.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_11.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_12.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_12.RULE index ad38b6ee845..8ab6b3ce91d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_12.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_12.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_12.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_12.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_13.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_13.RULE index 0cd6f68fa3a..8537e561bdd 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_13.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_13.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_13.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_13.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_13.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_14.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_14.RULE index cc4d403edfb..cb3e9914787 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_14.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_14.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_14.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_14.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_15.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_15.RULE index 8b369f940cb..de329669d57 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_15.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_15.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-3.0-NL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_15.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_15.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_15.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_18.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_18.RULE index 918b55553c0..eef7ba11316 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_18.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_18.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution 3.0 Netherlands CC-BY-3.0-NL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_18.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_18.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_18.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_19.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_19.RULE index 0d2ec422591..d6f53bde20b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_19.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_19.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-3.0-NL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_19.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_19.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_20.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_20.RULE index 77344ae7012..eb02dd11a60 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_20.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_20.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-3.0-NL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_20.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_20.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_20.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_21.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_21.RULE index 355318cc0d7..752f4d47401 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_21.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_21.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution 3.0 Netherlands \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_21.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_21.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_21.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_22.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_22.RULE index 40009b48440..bb261509804 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_22.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_22.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-NC-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_22.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_22.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_22.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_25.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_25.RULE index b4a1b59680a..ddc15db0ae4 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_25.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_25.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution Non Commercial 3.0 Germany CC-BY-NC-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_25.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_25.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_25.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_26.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_26.RULE index 3a5a5029360..06afa4e0986 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_26.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_26.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-NC-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_26.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_26.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_26.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_27.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_27.RULE index 0790e86a899..c777beee85c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_27.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_27.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-NC-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_27.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_27.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_27.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_28.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_28.RULE index f1b4261f34c..779ece4abf1 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_28.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_28.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution Non Commercial 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_28.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_28.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_28.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_29.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_29.RULE index 72368262123..470abb8432b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_29.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_29.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-NC-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_29.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_29.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_29.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_32.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_32.RULE index 56599b8929b..77ea4186c18 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_32.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_32.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany CC-BY-NC-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_32.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_32.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_32.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_33.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_33.RULE index d31cf203b7d..be307c82b55 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_33.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_33.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-NC-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_33.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_33.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_33.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_34.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_34.RULE index a4fc3360804..4bddafb5295 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_34.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_34.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-NC-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_34.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_34.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_34.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_35.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_35.RULE index aefd4e67f5f..549d72b8494 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_35.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_35.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_35.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_35.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_35.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_36.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_36.RULE index 8e85d412845..5498176dd07 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_36.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_36.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-NC-SA-2.0-FR \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_36.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_36.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_36.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_39.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_39.RULE index c6dd66920eb..4eb0227f35e 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_39.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_39.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France CC-BY-NC-SA-2.0-FR \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_39.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_39.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_39.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_4.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_4.RULE index 32184c8739b..905cec2b83e 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_4.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_4.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution 3.0 Austria CC-BY-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_4.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_4.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_40.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_40.RULE index 7220b10e282..5a596994a58 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_40.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_40.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-NC-SA-2.0-FR \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_40.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_40.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_40.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_41.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_41.RULE index 8fac2d4b563..6c7a13197bc 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_41.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_41.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-NC-SA-2.0-FR \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_41.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_41.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_41.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_42.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_42.RULE index 6d9be15933d..0905c7fd8b8 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_42.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_42.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_42.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_42.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_42.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_43.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_43.RULE index b29cc4402ad..71f1f67da5c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_43.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_43.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-NC-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_43.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_43.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_43.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_46.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_46.RULE index 886562ed919..41fbecd5c3f 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_46.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_46.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution Non Commercial Share Alike 3.0 Germany CC-BY-NC-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_46.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_46.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_46.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_47.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_47.RULE index dd786937550..d3ee375f03f 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_47.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_47.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-NC-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_47.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_47.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_47.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_48.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_48.RULE index fcb0908f82a..80bd40d3178 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_48.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_48.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-NC-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_48.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_48.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_48.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_49.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_49.RULE index 9ef0e3334ac..7bc471d856b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_49.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_49.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution Non Commercial Share Alike 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_49.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_49.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_49.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_5.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_5.RULE index 09b643c05ae..d0792c2ef97 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_5.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_5.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_5.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_5.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_50.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_50.RULE index 37454b092e0..72783074afa 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_50.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_50.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_50.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_50.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_50.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_53.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_53.RULE index ef969704fc2..f294b24dba0 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_53.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_53.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution No Derivatives 3.0 Germany CC-BY-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_53.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_53.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_53.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_54.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_54.RULE index b689e8cb2a6..eaa13fd5bb8 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_54.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_54.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_54.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_54.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_54.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_55.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_55.RULE index 699502edeaf..febe4b92459 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_55.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_55.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_55.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_55.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_55.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_56.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_56.RULE index 7b1fcf659a0..fea1419a428 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_56.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_56.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution No Derivatives 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_56.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_56.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_56.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_57.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_57.RULE index 4fec85df725..d002e893e1b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_57.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_57.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-SA-2.1-JP \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_57.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_57.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_57.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_6.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_6.RULE index 5c77221bdeb..22036be4526 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_6.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_6.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_6.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_6.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_60.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_60.RULE index e9cdd8a4eab..29b99347cdf 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_60.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_60.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution Share Alike 2.1 Japan CC-BY-SA-2.1-JP \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_60.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_60.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_60.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_61.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_61.RULE index 507f1dfb184..ae124ce1fdb 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_61.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_61.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-SA-2.1-JP \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_61.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_61.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_61.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_62.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_62.RULE index 84e75ac8dfd..bafc4a1e1eb 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_62.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_62.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-SA-2.1-JP \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_62.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_62.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_62.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_63.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_63.RULE index 22403f81660..1220730a84c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_63.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_63.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution Share Alike 2.1 Japan \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_63.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_63.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_63.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_64.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_64.RULE index 9a59bdd5614..abdfef75012 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_64.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_64.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-SA-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_64.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_64.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_64.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_67.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_67.RULE index faab10a16c5..1da2575079c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_67.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_67.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution Share Alike 3.0 Austria CC-BY-SA-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_67.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_67.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_67.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_68.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_68.RULE index 991ea2102a0..9965a6ab81a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_68.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_68.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-SA-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_68.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_68.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_68.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_69.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_69.RULE index ffe4cf8a760..b8459846af3 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_69.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_69.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-SA-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_69.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_69.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_69.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_7.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_7.RULE index be59a895559..09035dc053b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_7.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_7.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution 3.0 Austria \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_7.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_7.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_70.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_70.RULE index 2c92722ddbd..37341dcb943 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_70.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_70.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution Share Alike 3.0 Austria \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_70.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_70.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_70.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_71.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_71.RULE index c34205d327e..fcf7f306c47 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_71.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_71.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_71.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_71.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_71.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_74.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_74.RULE index 710b7c43d88..c7cac02d716 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_74.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_74.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Creative Commons Attribution Share Alike 3.0 Germany CC-BY-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_74.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_74.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_74.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_75.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_75.RULE index c7e35d55a7e..32c7a0132d9 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_75.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_75.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : CC-BY-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_75.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_75.yml deleted file mode 100644 index 58513fb86bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_75.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_76.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_76.RULE index 5d3a37e11b1..5e8c20c6ea2 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_76.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_76.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : CC-BY-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_76.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_76.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_76.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_77.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_77.RULE index 01c81472128..95067e5736a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_77.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_77.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Creative Commons Attribution Share Alike 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_77.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_77.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_77.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_8.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_8.RULE index b82a642b6a0..96b3c67a736 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_8.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_8.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-3.0 AND free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + CC-BY-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_8.yml b/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_8.yml deleted file mode 100644 index 7b5ed0f7b34..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_free-unknown_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_gpl-2.0_1.RULE index 0e2c1ab5eef..21b0d49ee23 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_gpl-2.0_1.RULE @@ -1 +1,9 @@ -files are licensed under a Creative Commons Attribution 3.0 United States License, with the exception of the following simulations which are only released under CC - GNU GPL:< +--- +license_expression: cc-by-3.0 AND gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/us/ +--- + +files are licensed under a Creative Commons Attribution 3.0 United States License, with the exception of the following simulations which are only released under CC - GNU GPL:< \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/cc-by-3.0_and_gpl-2.0_1.yml deleted file mode 100644 index 0126a6f372f..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 AND gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit.RULE index a0e722a01dc..86cbd65d9b5 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +minimum_coverage: 90 +--- + all written material will be covered by the Creative Commons - Attribution license, and all code by the MIT License: please see the [license description](LICENSE.md) for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit.yml deleted file mode 100644 index 116425941ce..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit2.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit2.RULE index 692f672b184..2f9e2a92472 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit2.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 + - http://creativecommons.org/licenses/by/3.0/ + - http://creativecommons.org/licenses/by/3.0/legalcode + - http://opensource.org/ + - http://opensource.org/licenses/mit-license.html +--- + Licenses ======== @@ -56,4 +68,4 @@ 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. +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/cc-by-3.0_and_mit2.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit2.yml deleted file mode 100644 index 810da151f74..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 - - http://creativecommons.org/licenses/by/3.0/ - - http://creativecommons.org/licenses/by/3.0/legalcode - - http://opensource.org/ - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit3.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit3.RULE index a33a0797cb9..d53b2de56b9 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit3.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit3.RULE @@ -1,4 +1,11 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ +--- + Code licensed under LICENSE The MIT License Documentation licensed under - http://creativecommons.org/licenses/by/3.0/ CC BY 3.0 + http://creativecommons.org/licenses/by/3.0/ CC BY 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit3.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit3.yml deleted file mode 100644 index f26cfba5557..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_1.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_1.RULE index 8c3660201e9..c0bdb1a8509 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +--- + License The content of this project itself is licensed under the Creative Commons Attribution 3.0 Unported license, and the underlying source code used to format and display that content is licensed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_1.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_1.yml deleted file mode 100644 index 2a84184888e..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_10.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_10.RULE index 0f83a104a13..d9121805016 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_10.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 + - http://opensource.org/licenses/mit-license.html +--- + Copyright and license licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (http://creativecommons.org/licenses/by/3.0/) and MIT License - http://opensource.org/licenses/mit-license.html. You are allowed to use these elements anywhere you want, however we’ll highly appreciate if you will link to our website. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_10.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_10.yml deleted file mode 100644 index bcab66928bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_2.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_2.RULE index 7e1284bbab0..4457c0138b9 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_2.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_2.RULE @@ -1,2 +1,11 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0 + - https://opensource.org/licenses/mit-license.html +--- + ## Copyright and license Free is licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (https://creativecommons.org/licenses/by/3.0/) and MIT License - https://opensource.org/licenses/mit-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_2.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_2.yml deleted file mode 100644 index b6888603917..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0 - - https://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_3.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_3.RULE index 75fe6ccae1b..3e92d986a82 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_3.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_3.RULE @@ -1,2 +1,11 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0 + - https://opensource.org/licenses/mit-license.html +--- + ## Copyright and license licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (https://creativecommons.org/licenses/by/3.0/) and MIT License - https://opensource.org/licenses/mit-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_3.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_3.yml deleted file mode 100644 index b6888603917..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0 - - https://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_4.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_4.RULE index d4165fa7503..877ececc9f9 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_4.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0 + - https://opensource.org/licenses/mit-license.html +--- + licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (https://creativecommons.org/licenses/by/3.0/) and MIT License - https://opensource.org/licenses/mit-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_4.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_4.yml deleted file mode 100644 index b6888603917..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0 - - https://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_5.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_5.RULE index c2f6ea0cef4..49832b820cd 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_5.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0 + - https://opensource.org/licenses/mit-license.html +--- + Free is licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (https://creativecommons.org/licenses/by/3.0/) and MIT License - https://opensource.org/licenses/mit-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_5.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_5.yml deleted file mode 100644 index b6888603917..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0 - - https://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_6.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_6.RULE index 5091e2bf0da..23bfd8dedb6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_6.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_6.RULE @@ -1,2 +1,11 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 + - http://opensource.org/licenses/mit-license.html +--- + ## Copyright and license Free is licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (http://creativecommons.org/licenses/by/3.0/) and MIT License - http://opensource.org/licenses/mit-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_6.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_6.yml deleted file mode 100644 index bcab66928bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_7.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_7.RULE index 2522bb6f5e1..0b1671fbfa2 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_7.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_7.RULE @@ -1,2 +1,12 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 + - http://opensource.org/licenses/mit-license.html +--- + ## Copyright and license licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (http://creativecommons.org/licenses/by/3.0/) and MIT License - http://opensource.org/licenses/mit-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_7.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_7.yml deleted file mode 100644 index c7410518be9..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_8.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_8.RULE index 04e0a3ce95c..245652fd0b2 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_8.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 + - http://opensource.org/licenses/mit-license.html +--- + licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (http://creativecommons.org/licenses/by/3.0/) and MIT License - http://opensource.org/licenses/mit-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_8.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_8.yml deleted file mode 100644 index bcab66928bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_9.RULE b/src/licensedcode/data/rules/cc-by-3.0_and_mit_9.RULE index e1ff7817406..c0c967d4452 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_9.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_and_mit_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0 + - http://opensource.org/licenses/mit-license.html +--- + Free is licensed under a Creative Commons Attribution 3.0 Unported (CC BY 3.0) (http://creativecommons.org/licenses/by/3.0/) and MIT License - http://opensource.org/licenses/mit-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_and_mit_9.yml b/src/licensedcode/data/rules/cc-by-3.0_and_mit_9.yml deleted file mode 100644 index bcab66928bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_and_mit_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0 - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/cc-by-3.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-3.0_licensebutton.RULE index 3bf72abc7aa..8abf0167cd6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by/3.0 +--- + https://licensebuttons.net/l/by/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-3.0_licensebutton.yml deleted file mode 100644 index 6a0640b5b43..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by/3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_1.RULE index 086803d662f..46b99bc0183 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-3.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the Creative Commons-Attribution 3.0 license and the Creative Commons GNU General Public License as detailed below. The user is responsible for diff --git a/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_1.yml deleted file mode 100644 index 4708d1844ee..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-3.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_2.RULE index ba5f7262bfd..90077f8fc63 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-3.0 OR gpl-2.0 +is_license_notice: yes +--- + distributes these simulations under the Creative Commons-Attribution 3.0 license and the Creative Commons GNU General Public License as detailed below. The user is responsible for diff --git a/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_2.yml deleted file mode 100644 index f716fc68a91..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_or_gpl-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-3.0 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-3.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-3.0_url_1.RULE index a7e2a90c931..146614bed4b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-3.0 +--- + https://spdx.org/licenses/cc-by-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_url_1.yml b/src/licensedcode/data/rules/cc-by-3.0_url_1.yml deleted file mode 100644 index c0d96b12c16..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-3.0 diff --git a/src/licensedcode/data/rules/cc-by-3.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-3.0_url_2.RULE index d70b7d2d148..adb78258a23 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-3.0.html +--- + https://spdx.org/licenses/cc-by-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_url_2.yml b/src/licensedcode/data/rules/cc-by-3.0_url_2.yml deleted file mode 100644 index 45de7c16110..00000000000 --- a/src/licensedcode/data/rules/cc-by-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-3.0.html diff --git a/src/licensedcode/data/rules/cc-by-4.0.RULE b/src/licensedcode/data/rules/cc-by-4.0.RULE index c595cd7c56c..abd9a9ab2c8 100644 --- a/src/licensedcode/data/rules/cc-by-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +--- + Attribution 4.0 International ======================================================================= diff --git a/src/licensedcode/data/rules/cc-by-4.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-4.0.SPDX.RULE index 07c259ad92f..073682b801d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Creative Commons Attribution 4.0 International Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/cc-by-4.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-4.0.SPDX.yml deleted file mode 100644 index f6fca8c81d8..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cc-by-4.0.yml b/src/licensedcode/data/rules/cc-by-4.0.yml deleted file mode 100644 index cc680a36b05..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_1.RULE index 2562b456bbd..cbfdfaefd31 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +--- + Creative Commons Attribution 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. diff --git a/src/licensedcode/data/rules/cc-by-4.0_1.yml b/src/licensedcode/data/rules/cc-by-4.0_1.yml deleted file mode 100644 index cc680a36b05..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-4.0_10.RULE b/src/licensedcode/data/rules/cc-by-4.0_10.RULE index df7bcbc9fb7..0ff8059a90c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + is supplied under the "Creative Commons Attribution-ShareAlike 4.0 International" (CC BY-SA 4.0) License as described by diff --git a/src/licensedcode/data/rules/cc-by-4.0_10.yml b/src/licensedcode/data/rules/cc-by-4.0_10.yml deleted file mode 100644 index f5986df0f2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_100.RULE b/src/licensedcode/data/rules/cc-by-4.0_100.RULE index a707916056f..797c713f4e1 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_100.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_100.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +notes: https://github.com/onap/portal/blob/97ede1a34fffb96a4708d1195e648995d4843897/portal-BE/src/main/java/org/onap/portal/service/restrictedUrl/FnRestrictedUrlDao.java + This is copied from an Apache notice +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + * Unless otherwise specified, all documentation contained herein is licensed * under the Creative Commons License, Attribution 4.0 Intl. (the "License"); * you may not use this documentation except in compliance with the License. diff --git a/src/licensedcode/data/rules/cc-by-4.0_100.yml b/src/licensedcode/data/rules/cc-by-4.0_100.yml deleted file mode 100644 index b236123515d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_100.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -notes: https://github.com/onap/portal/blob/97ede1a34fffb96a4708d1195e648995d4843897/portal-BE/src/main/java/org/onap/portal/service/restrictedUrl/FnRestrictedUrlDao.java - This is copied from an Apache notice -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_101.RULE b/src/licensedcode/data/rules/cc-by-4.0_101.RULE index 591542d567e..4a71cf8d791 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_101.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_101.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-4.0 Creative Commons Attribution 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_101.yml b/src/licensedcode/data/rules/cc-by-4.0_101.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_102.RULE b/src/licensedcode/data/rules/cc-by-4.0_102.RULE index a87cd95cc1f..6967c6e2216 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_102.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_102.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_102.yml b/src/licensedcode/data/rules/cc-by-4.0_102.yml deleted file mode 100644 index 2a99cd6b16d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_102.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-4.0_103.RULE b/src/licensedcode/data/rules/cc-by-4.0_103.RULE index dbef3fd26c0..f9c4e4e8c40 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_103.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_103.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_103.yml b/src/licensedcode/data/rules/cc-by-4.0_103.yml deleted file mode 100644 index 0e26fbec11d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_103.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-4.0_104.RULE b/src/licensedcode/data/rules/cc-by-4.0_104.RULE index 0010fe20f03..2c9871d5fef 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_104.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_104.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_104.yml b/src/licensedcode/data/rules/cc-by-4.0_104.yml deleted file mode 100644 index 0e26fbec11d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_104.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-4.0_105.RULE b/src/licensedcode/data/rules/cc-by-4.0_105.RULE index 178fb6a84f3..737b1cb1c53 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_105.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_105.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_105.yml b/src/licensedcode/data/rules/cc-by-4.0_105.yml deleted file mode 100644 index 0e26fbec11d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_105.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-4.0_106.RULE b/src/licensedcode/data/rules/cc-by-4.0_106.RULE index bf107efb2b7..f9277407976 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_106.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_106.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + Documentation is under CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_106.yml b/src/licensedcode/data/rules/cc-by-4.0_106.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_107.RULE b/src/licensedcode/data/rules/cc-by-4.0_107.RULE index d45d41a4f19..cb49e19e504 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_107.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_107.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-4.0 +--- + https://licenses.nuget.org/CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_107.yml b/src/licensedcode/data/rules/cc-by-4.0_107.yml deleted file mode 100644 index 8fd13035df2..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_108.RULE b/src/licensedcode/data/rules/cc-by-4.0_108.RULE index e017df2e301..8323041f3cd 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_108.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_108.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_108.yml b/src/licensedcode/data/rules/cc-by-4.0_108.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_109.RULE b/src/licensedcode/data/rules/cc-by-4.0_109.RULE index 6ad8389cec9..0686d515dd9 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_109.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_109.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-4.0 +--- + LICENSE {{CC-BY-4.0}} https://spdx.org/licenses/CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_109.yml b/src/licensedcode/data/rules/cc-by-4.0_109.yml deleted file mode 100644 index a445f3befc6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_11.RULE b/src/licensedcode/data/rules/cc-by-4.0_11.RULE index 4df42eb59f4..35ff92e9e31 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +relevance: 50 +--- + CC-BY \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_11.yml b/src/licensedcode/data/rules/cc-by-4.0_11.yml deleted file mode 100644 index ab11fde3e5c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 -relevance: 50 diff --git a/src/licensedcode/data/rules/cc-by-4.0_110.RULE b/src/licensedcode/data/rules/cc-by-4.0_110.RULE index b2f032a1c8c..56464f0f77d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_110.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_110.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-4.0 +--- + {{CC-BY-4.0}} https://spdx.org/licenses/CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_110.yml b/src/licensedcode/data/rules/cc-by-4.0_110.yml deleted file mode 100644 index a445f3befc6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_111.RULE b/src/licensedcode/data/rules/cc-by-4.0_111.RULE index 7040b7673e1..8ff3f6b7027 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_111.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_111.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + under the Creative Commons license, with Attribution use: {{CC-BY-4.0}} diff --git a/src/licensedcode/data/rules/cc-by-4.0_111.yml b/src/licensedcode/data/rules/cc-by-4.0_111.yml deleted file mode 100644 index dcdfe5af69e..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_111.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_112.RULE b/src/licensedcode/data/rules/cc-by-4.0_112.RULE index 28d9da7d8ec..a54842e877f 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_112.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_112.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +notes: See in SUSE CVE data. We report it as CC-BY-4.0 +--- + The license changed from {{CC-BY-NC-4.0 to CC-BY-4.0}} on May 12th 2021. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_112.yml b/src/licensedcode/data/rules/cc-by-4.0_112.yml deleted file mode 100644 index f35ceb7bdb1..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -notes: See in SUSE CVE data. We report it as CC-BY-4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_12.RULE b/src/licensedcode/data/rules/cc-by-4.0_12.RULE index fc060d7e157..994224c5460 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_12.RULE @@ -1 +1,7 @@ - is used under the terms of the Creative Commons Attribution 4.0 license. \ No newline at end of file +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + + is used under the terms of the Creative Commons Attribution 4.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_12.yml b/src/licensedcode/data/rules/cc-by-4.0_12.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_13.RULE b/src/licensedcode/data/rules/cc-by-4.0_13.RULE index ba61ee4e4b8..32ecebe84eb 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_13.RULE @@ -1 +1,7 @@ -Docs licensed CC-BY-4.0 \ No newline at end of file +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + +Docs licensed CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_13.yml b/src/licensedcode/data/rules/cc-by-4.0_13.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_14.RULE b/src/licensedcode/data/rules/cc-by-4.0_14.RULE index 12eee764101..15ac4ebf5b4 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_14.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/deed.en_US +--- + License: Creative Commons Attribution 4.0 International (CC By 4.0) - http://creativecommons.org/licenses/by/4.0/deed.en_US + http://creativecommons.org/licenses/by/4.0/deed.en_US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_14.yml b/src/licensedcode/data/rules/cc-by-4.0_14.yml deleted file mode 100644 index 0803e5c2c68..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/deed.en_US diff --git a/src/licensedcode/data/rules/cc-by-4.0_15.RULE b/src/licensedcode/data/rules/cc-by-4.0_15.RULE index 82393bdd96a..855935e8c8d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + ===============LICENSE_START======================================================= CC-BY-4.0 @@ -13,5 +20,4 @@ This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -===============LICENSE_END========================================================= - +===============LICENSE_END========================================================= \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_15.yml b/src/licensedcode/data/rules/cc-by-4.0_15.yml deleted file mode 100644 index 4101ad19ff2..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_16.RULE b/src/licensedcode/data/rules/cc-by-4.0_16.RULE index 3781b03661f..67fb04288c6 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + under the {{Creative Commons Attribution 4.0 International License}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -7,4 +14,4 @@ You may obtain a copy of the License at This file 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_16.yml b/src/licensedcode/data/rules/cc-by-4.0_16.yml deleted file mode 100644 index 4101ad19ff2..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_17.RULE b/src/licensedcode/data/rules/cc-by-4.0_17.RULE index cd96bd215e2..bd8715deffb 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + ===============LICENSE_START======================================================= CC-BY-4.0 =================================================================================== @@ -13,4 +20,4 @@ This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -===============LICENSE_END========================================================= +===============LICENSE_END========================================================= \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_17.yml b/src/licensedcode/data/rules/cc-by-4.0_17.yml deleted file mode 100644 index 4101ad19ff2..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_18.RULE b/src/licensedcode/data/rules/cc-by-4.0_18.RULE index 22604dc3a0f..5feb160a9ac 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_18.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + Licensed under Creative Commons Attribution 4.0 International License -https://creativecommons.org/licenses/by/4.0/ +https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_18.yml b/src/licensedcode/data/rules/cc-by-4.0_18.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_19.RULE b/src/licensedcode/data/rules/cc-by-4.0_19.RULE index 791132f44a9..16c4b5e4934 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_19.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + Project documentation files are made available under the Creative Commons Attribution 4.0 International License (CC-BY-4.0), available at http://creativecommons.org/licenses/by/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_19.yml b/src/licensedcode/data/rules/cc-by-4.0_19.yml deleted file mode 100644 index 4101ad19ff2..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_2.RULE b/src/licensedcode/data/rules/cc-by-4.0_2.RULE index 3e9c9e6c8c4..5b980796fa4 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +--- + Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. Using Creative Commons Public Licenses diff --git a/src/licensedcode/data/rules/cc-by-4.0_2.yml b/src/licensedcode/data/rules/cc-by-4.0_2.yml deleted file mode 100644 index cc680a36b05..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-4.0_20.RULE b/src/licensedcode/data/rules/cc-by-4.0_20.RULE index c7182d6c71b..b1ea4751da9 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/cc-by-4.0 +--- + https://choosealicense.com/licenses/cc-by-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_20.yml b/src/licensedcode/data/rules/cc-by-4.0_20.yml deleted file mode 100644 index e54a48c5a4d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/cc-by-4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_21.RULE b/src/licensedcode/data/rules/cc-by-4.0_21.RULE index 124fa4dfc35..b4ab4e85e22 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/cc-by-4.0 +--- + http://choosealicense.com/licenses/cc-by-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_21.yml b/src/licensedcode/data/rules/cc-by-4.0_21.yml deleted file mode 100644 index 5ab92a2842f..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/cc-by-4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_22.RULE b/src/licensedcode/data/rules/cc-by-4.0_22.RULE index 9900e484bcf..c0a35426bd5 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + Except as otherwise noted, the content of this page is licensed under CC-BY-4.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_22.yml b/src/licensedcode/data/rules/cc-by-4.0_22.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_23.RULE b/src/licensedcode/data/rules/cc-by-4.0_23.RULE index 60f0db5e2b0..cb2eacb8b22 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + This work, "free-programming-books", is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ or send diff --git a/src/licensedcode/data/rules/cc-by-4.0_23.yml b/src/licensedcode/data/rules/cc-by-4.0_23.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_24.RULE b/src/licensedcode/data/rules/cc-by-4.0_24.RULE index f0eeab03e04..c8d4ba3057f 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_24.yml b/src/licensedcode/data/rules/cc-by-4.0_24.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_25.RULE b/src/licensedcode/data/rules/cc-by-4.0_25.RULE index 56a3d4731be..57defa164f7 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + license": { "name": "Creative Commons 4.0 International", "url": "http://creativecommons.org/licenses/by/4.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_25.yml b/src/licensedcode/data/rules/cc-by-4.0_25.yml deleted file mode 100644 index 3506b830306..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_26.RULE b/src/licensedcode/data/rules/cc-by-4.0_26.RULE index 71d24a01568..b6a9aca171b 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + license": { "name": "Creative Commons 4.0 International", "url": "https://creativecommons.org/licenses/by/4.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_26.yml b/src/licensedcode/data/rules/cc-by-4.0_26.yml deleted file mode 100644 index 532d82de94d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_27.RULE b/src/licensedcode/data/rules/cc-by-4.0_27.RULE index 821cb600076..6d11bb4c3bb 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + available under [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_27.yml b/src/licensedcode/data/rules/cc-by-4.0_27.yml deleted file mode 100644 index 96f98108bf8..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_28.RULE b/src/licensedcode/data/rules/cc-by-4.0_28.RULE index 152a3a4339d..fa84a0c1b2a 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + available under [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_28.yml b/src/licensedcode/data/rules/cc-by-4.0_28.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_29.RULE b/src/licensedcode/data/rules/cc-by-4.0_29.RULE index 6e0244b5d15..adf4b0fe2ae 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed as CC BY 4.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_29.yml b/src/licensedcode/data/rules/cc-by-4.0_29.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_3.RULE b/src/licensedcode/data/rules/cc-by-4.0_3.RULE index ea24cac71b9..6f03bd6cae7 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_text: yes +--- + Creative Commons Attribution 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. @@ -92,5 +97,4 @@ Section 8 – Interpretation. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. - Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. - + Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_3.yml b/src/licensedcode/data/rules/cc-by-4.0_3.yml deleted file mode 100644 index f6c6d5e3263..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-4.0_30.RULE b/src/licensedcode/data/rules/cc-by-4.0_30.RULE index 7347ba23f4f..400025ff606 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_30.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ccby40 +--- + * text is licensed as [CC BY 4.0][ccby40]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_30.yml b/src/licensedcode/data/rules/cc-by-4.0_30.yml deleted file mode 100644 index 3d876eab0c3..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ccby40 diff --git a/src/licensedcode/data/rules/cc-by-4.0_31.RULE b/src/licensedcode/data/rules/cc-by-4.0_31.RULE index e7f0d1332dd..a675f1072c4 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_31.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ccby40 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + ## Code of Conduct The CoC text carries a Creative Commons [CC BY 4.0][ccby40] license. diff --git a/src/licensedcode/data/rules/cc-by-4.0_31.yml b/src/licensedcode/data/rules/cc-by-4.0_31.yml deleted file mode 100644 index 9ba0329f2f3..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_31.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ccby40 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_32.RULE b/src/licensedcode/data/rules/cc-by-4.0_32.RULE index 055e38a479b..afc091e66d3 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_32.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - ccby40 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + [ccby40]: https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_32.yml b/src/licensedcode/data/rules/cc-by-4.0_32.yml deleted file mode 100644 index 7aea2e24282..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_32.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - ccby40 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_33.RULE b/src/licensedcode/data/rules/cc-by-4.0_33.RULE index f97b3260959..f46605f0d84 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_33.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - ccby40 +--- + ccby40 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_33.yml b/src/licensedcode/data/rules/cc-by-4.0_33.yml deleted file mode 100644 index b37ed62de15..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - ccby40 diff --git a/src/licensedcode/data/rules/cc-by-4.0_34.RULE b/src/licensedcode/data/rules/cc-by-4.0_34.RULE index 2c82a9500c3..697c19ec607 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + Documentation released under [Creative Commons] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_34.yml b/src/licensedcode/data/rules/cc-by-4.0_34.yml deleted file mode 100644 index 85626a4634c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-4.0_35.RULE b/src/licensedcode/data/rules/cc-by-4.0_35.RULE index 9cff6f4970a..562d7fbdc34 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + document is published under the Creative Commons Attribution 4.0 license - see the full license agreement at http://creativecommons.org/licenses/by/4.0/. By obtaining, using and/or copying this document, you (the licensee) agree that you have read, understood, and will comply with the terms and conditions of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_35.yml b/src/licensedcode/data/rules/cc-by-4.0_35.yml deleted file mode 100644 index 128c00b68ab..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_36.RULE b/src/licensedcode/data/rules/cc-by-4.0_36.RULE index 8c584427f5b..c1b5a893a37 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_36.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + licensed under the Creative Commons Attribution International 4.0 License, which full text can be found here: 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_36.yml b/src/licensedcode/data/rules/cc-by-4.0_36.yml deleted file mode 100644 index d58828e1045..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-4.0_37.RULE b/src/licensedcode/data/rules/cc-by-4.0_37.RULE index a575c9d2f57..c10cee8b11a 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_37.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ or send diff --git a/src/licensedcode/data/rules/cc-by-4.0_37.yml b/src/licensedcode/data/rules/cc-by-4.0_37.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_38.RULE b/src/licensedcode/data/rules/cc-by-4.0_38.RULE index 43a5f369054..8a1c046d2be 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_38.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ + - https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg +--- + CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_38.yml b/src/licensedcode/data/rules/cc-by-4.0_38.yml deleted file mode 100644 index 1fe29097184..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_38.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ - - https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc-by-4.0_39.RULE b/src/licensedcode/data/rules/cc-by-4.0_39.RULE index 45c6cc23e4c..1834afdc374 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_39.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + License This work is licensed under the Creative Commons Attribution 4.0 International License. diff --git a/src/licensedcode/data/rules/cc-by-4.0_39.yml b/src/licensedcode/data/rules/cc-by-4.0_39.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_4.RULE b/src/licensedcode/data/rules/cc-by-4.0_4.RULE index 3a6278398ce..f0000de68d9 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Creative Commons Attribution 4.0 International (CC BY 4.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_4.yml b/src/licensedcode/data/rules/cc-by-4.0_4.yml deleted file mode 100644 index dafbc089fc0..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_40.RULE b/src/licensedcode/data/rules/cc-by-4.0_40.RULE index 4d79a1f6e7f..f9c08684faa 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_40.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_40.yml b/src/licensedcode/data/rules/cc-by-4.0_40.yml deleted file mode 100644 index 48bc00ff0f2..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_41.RULE b/src/licensedcode/data/rules/cc-by-4.0_41.RULE index e634dac03d3..2e8ca235615 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + the CC BY 4.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_41.yml b/src/licensedcode/data/rules/cc-by-4.0_41.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_42.RULE b/src/licensedcode/data/rules/cc-by-4.0_42.RULE index a9e261d1e63..d0faac11b22 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_42.yml b/src/licensedcode/data/rules/cc-by-4.0_42.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_43.RULE b/src/licensedcode/data/rules/cc-by-4.0_43.RULE index dcdda29e689..6bfca89d31f 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_43.yml b/src/licensedcode/data/rules/cc-by-4.0_43.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_44.RULE b/src/licensedcode/data/rules/cc-by-4.0_44.RULE index f5eb4f3ae82..452fd2c496c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 OR cc-by-3.0 +is_license_reference: yes +relevance: 90 +--- + Creative Commons Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_44.yml b/src/licensedcode/data/rules/cc-by-4.0_44.yml deleted file mode 100644 index 77da7f48b8c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 OR cc-by-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cc-by-4.0_45.RULE b/src/licensedcode/data/rules/cc-by-4.0_45.RULE index 8b672321653..778df368b14 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_45.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 + - https://creativecommons.org/licenses/by/4.0 +--- + ## License [![Creative Commons License](http://i.creativecommons.org/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/) diff --git a/src/licensedcode/data/rules/cc-by-4.0_45.yml b/src/licensedcode/data/rules/cc-by-4.0_45.yml deleted file mode 100644 index 167d73e6c0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_45.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_46.RULE b/src/licensedcode/data/rules/cc-by-4.0_46.RULE index f2be473dfd4..14b4340aed4 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_46.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 + - https://creativecommons.org/licenses/by/4.0 +--- + [![Creative Commons License](http://i.creativecommons.org/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/) This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_46.yml b/src/licensedcode/data/rules/cc-by-4.0_46.yml deleted file mode 100644 index 167d73e6c0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_46.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_47.RULE b/src/licensedcode/data/rules/cc-by-4.0_47.RULE index 704ede02ef9..f60aebfe280 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_47.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_47.yml b/src/licensedcode/data/rules/cc-by-4.0_47.yml deleted file mode 100644 index 128c00b68ab..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_48.RULE b/src/licensedcode/data/rules/cc-by-4.0_48.RULE index 2ef4cb8f171..0df74ac25f7 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_48.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + For the details of the license, please visit http://creativecommons.org/licenses/by/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_48.yml b/src/licensedcode/data/rules/cc-by-4.0_48.yml deleted file mode 100644 index 128c00b68ab..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_49.RULE b/src/licensedcode/data/rules/cc-by-4.0_49.RULE index 89381658996..0ad993d54c7 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_49.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + For the details of the license, please visit https://creativecommons.org/licenses/by/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_49.yml b/src/licensedcode/data/rules/cc-by-4.0_49.yml deleted file mode 100644 index e1db67e4357..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_5.RULE b/src/licensedcode/data/rules/cc-by-4.0_5.RULE index 07aee30084f..a3d94b31868 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_5.yml b/src/licensedcode/data/rules/cc-by-4.0_5.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_50.RULE b/src/licensedcode/data/rules/cc-by-4.0_50.RULE index 300c4114910..b5f4b9f1324 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_tag: yes +relevance: 100 +--- + CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_50.yml b/src/licensedcode/data/rules/cc-by-4.0_50.yml deleted file mode 100644 index db86232e9bb..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_51.RULE b/src/licensedcode/data/rules/cc-by-4.0_51.RULE index f266cf8f12b..8bbf360b8f8 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_51.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + The graphics are licensed under the CC-BY 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_51.yml b/src/licensedcode/data/rules/cc-by-4.0_51.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_52.RULE b/src/licensedcode/data/rules/cc-by-4.0_52.RULE index 6fa751242d3..188d88b4e7c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_52.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the CC-BY 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_52.yml b/src/licensedcode/data/rules/cc-by-4.0_52.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_53.RULE b/src/licensedcode/data/rules/cc-by-4.0_53.RULE index c060059bd1f..3806baa984f 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under CC-BY 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_53.yml b/src/licensedcode/data/rules/cc-by-4.0_53.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_54.RULE b/src/licensedcode/data/rules/cc-by-4.0_54.RULE index 4439ed6d65a..aa8367a2426 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_54.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + licensed under CC-BY 4.0: https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_54.yml b/src/licensedcode/data/rules/cc-by-4.0_54.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_55.RULE b/src/licensedcode/data/rules/cc-by-4.0_55.RULE index 63e12625fed..728f8c8c269 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_55.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + licensed under CC-BY 4.0: http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_55.yml b/src/licensedcode/data/rules/cc-by-4.0_55.yml deleted file mode 100644 index 96f98108bf8..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_56.RULE b/src/licensedcode/data/rules/cc-by-4.0_56.RULE index 7e11106cab4..c2196f70585 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + This pack can be modified and distributed under the terms of CC BY 4.0 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_56.yml b/src/licensedcode/data/rules/cc-by-4.0_56.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_57.RULE b/src/licensedcode/data/rules/cc-by-4.0_57.RULE index c7d56719acf..79aa16ff0e1 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_57.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + This can be modified and distributed under the terms of CC BY 4.0 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_57.yml b/src/licensedcode/data/rules/cc-by-4.0_57.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_58.RULE b/src/licensedcode/data/rules/cc-by-4.0_58.RULE index 01f5b2118e4..249873d1c67 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + Unless otherwise specified, all other files are distributed under the terms of the CC-BY-4.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_58.yml b/src/licensedcode/data/rules/cc-by-4.0_58.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_59.RULE b/src/licensedcode/data/rules/cc-by-4.0_59.RULE index e1075b6b8c7..778ff6a3fd2 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_59.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + all other files are distributed under the terms of the CC-BY-4.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_59.yml b/src/licensedcode/data/rules/cc-by-4.0_59.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-4.0_6.RULE index e0f2dd32c17..8ee31b849db 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_6.RULE @@ -1,4 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + License This work is licensed under the Creative Commons Attribution 4.0 International License. -To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. +To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_6.yml b/src/licensedcode/data/rules/cc-by-4.0_6.yml deleted file mode 100644 index c047dc1c656..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_60.RULE b/src/licensedcode/data/rules/cc-by-4.0_60.RULE index 9aa2cd4da84..b7681cf6807 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the CC-BY-4.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_60.yml b/src/licensedcode/data/rules/cc-by-4.0_60.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_61.RULE b/src/licensedcode/data/rules/cc-by-4.0_61.RULE index 19b4a2592ef..14c946ff33d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_61.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + Unless otherwise specified, all other files are distributed under the terms of the [CC-BY-4.0 license](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_61.yml b/src/licensedcode/data/rules/cc-by-4.0_61.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_62.RULE b/src/licensedcode/data/rules/cc-by-4.0_62.RULE index 090bb8fe752..592513a9dbd 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_62.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + distributed under the terms of the CC-BY-4.0 license https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_62.yml b/src/licensedcode/data/rules/cc-by-4.0_62.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_63.RULE b/src/licensedcode/data/rules/cc-by-4.0_63.RULE index ae3d1583c13..0c2831a4128 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_63.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_63.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + This package is licensed under 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_63.yml b/src/licensedcode/data/rules/cc-by-4.0_63.yml deleted file mode 100644 index d58828e1045..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-4.0_64.RULE b/src/licensedcode/data/rules/cc-by-4.0_64.RULE index a274df9e92a..07fdc454bb4 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_64.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + distributed under CC-BY \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_64.yml b/src/licensedcode/data/rules/cc-by-4.0_64.yml deleted file mode 100644 index 85626a4634c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-4.0_65.RULE b/src/licensedcode/data/rules/cc-by-4.0_65.RULE index 41ba11e0703..3c7da6ea386 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_65.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_65.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + The data are made available under the [Creative Commons Attribution 4.0 license](https://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_65.yml b/src/licensedcode/data/rules/cc-by-4.0_65.yml deleted file mode 100644 index e1db67e4357..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_66.RULE b/src/licensedcode/data/rules/cc-by-4.0_66.RULE index a7a95a15f76..1a4a3dda40f 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_66.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_66.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + The data are made available under the [Creative Commons Attribution 4.0 license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_66.yml b/src/licensedcode/data/rules/cc-by-4.0_66.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_67.RULE b/src/licensedcode/data/rules/cc-by-4.0_67.RULE index 159258fdfa2..ffca0074179 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_67.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_67.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + This work is licensed under a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International diff --git a/src/licensedcode/data/rules/cc-by-4.0_67.yml b/src/licensedcode/data/rules/cc-by-4.0_67.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_68.RULE b/src/licensedcode/data/rules/cc-by-4.0_68.RULE index 508a458c346..bf2f5e34a63 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_68.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_68.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution 4.0 International License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_68.yml b/src/licensedcode/data/rules/cc-by-4.0_68.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_69.RULE b/src/licensedcode/data/rules/cc-by-4.0_69.RULE index df995fcd5d8..8fe883d51e4 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_69.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_69.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + Where specifically noted, some datasets are licensed under a [Creative Commons Attribution 4.0 International License (CC BY 4.0)](http://creativecommons.org/licenses/by/4.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_69.yml b/src/licensedcode/data/rules/cc-by-4.0_69.yml deleted file mode 100644 index 128c00b68ab..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_7.RULE b/src/licensedcode/data/rules/cc-by-4.0_7.RULE index 76dbc95ae9c..a8ac626157d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_7.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + This work is licensed under the Creative Commons Attribution 4.0 International License. -To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. +To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_7.yml b/src/licensedcode/data/rules/cc-by-4.0_7.yml deleted file mode 100644 index c047dc1c656..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_70.RULE b/src/licensedcode/data/rules/cc-by-4.0_70.RULE index a9fd4e0128b..4265b4da97c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_70.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_70.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +notes: ScanCode notice +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + See https://creativecommons.org/licenses/by/4.0/legalcode for the license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_70.yml b/src/licensedcode/data/rules/cc-by-4.0_70.yml deleted file mode 100644 index eea9b663ed8..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_70.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -notes: ScanCode notice -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-4.0_71.RULE b/src/licensedcode/data/rules/cc-by-4.0_71.RULE index e8f9f5f9684..f139953703c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_71.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_71.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + The data files (data/) are licensed under the Creative Commons Attribution 4.0 International Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_71.yml b/src/licensedcode/data/rules/cc-by-4.0_71.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_72.RULE b/src/licensedcode/data/rules/cc-by-4.0_72.RULE index 7aa79664baf..ea371ae52d3 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_72.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_72.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/legalcode +--- + http://creativecommons.org/licenses/by/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_72.yml b/src/licensedcode/data/rules/cc-by-4.0_72.yml deleted file mode 100644 index 5940168089f..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-4.0_73.RULE b/src/licensedcode/data/rules/cc-by-4.0_73.RULE index 1e0978bf131..0642d271a7d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_73.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_73.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/legalcode.txt +--- + http://creativecommons.org/licenses/by/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_73.yml b/src/licensedcode/data/rules/cc-by-4.0_73.yml deleted file mode 100644 index c59adaadde3..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-4.0_74.RULE b/src/licensedcode/data/rules/cc-by-4.0_74.RULE index d8d3f2464c2..6dbf0d18bc5 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_74.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_74.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + 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_74.yml b/src/licensedcode/data/rules/cc-by-4.0_74.yml deleted file mode 100644 index ffad016abfe..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-4.0_75.RULE b/src/licensedcode/data/rules/cc-by-4.0_75.RULE index 5d351b70525..66bfc98528e 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_75.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_75.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode.txt +--- + https://creativecommons.org/licenses/by/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_75.yml b/src/licensedcode/data/rules/cc-by-4.0_75.yml deleted file mode 100644 index 0e2b3ecbd31..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-4.0_76.RULE b/src/licensedcode/data/rules/cc-by-4.0_76.RULE index e3869b806a1..b8e2dafc603 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_76.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_76.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + This is an open access article licensed under the Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0), \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_76.yml b/src/licensedcode/data/rules/cc-by-4.0_76.yml deleted file mode 100644 index 128c00b68ab..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_76.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_77.RULE b/src/licensedcode/data/rules/cc-by-4.0_77.RULE index 2e360dd7bbc..3983e7d93e5 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_77.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-Attribution 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_77.yml b/src/licensedcode/data/rules/cc-by-4.0_77.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_78.RULE b/src/licensedcode/data/rules/cc-by-4.0_78.RULE index c14c7988723..a33874bc2f2 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_78.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_78.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + LICENSE INFORMATION: CC-Attribution 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_78.yml b/src/licensedcode/data/rules/cc-by-4.0_78.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_79.RULE b/src/licensedcode/data/rules/cc-by-4.0_79.RULE index 0c3c6b20dd0..d00f3287508 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_79.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_79.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + License: CC-Attribution 4.0 http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_79.yml b/src/licensedcode/data/rules/cc-by-4.0_79.yml deleted file mode 100644 index 96f98108bf8..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_8.RULE b/src/licensedcode/data/rules/cc-by-4.0_8.RULE index 694346d66f7..12c5405bdf8 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + documentation is licensed CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_8.yml b/src/licensedcode/data/rules/cc-by-4.0_8.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_80.RULE b/src/licensedcode/data/rules/cc-by-4.0_80.RULE index 7107cc0c4c9..5d354398515 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_80.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_80.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + License: CC-Attribution 4.0 https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_80.yml b/src/licensedcode/data/rules/cc-by-4.0_80.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_81.RULE b/src/licensedcode/data/rules/cc-by-4.0_81.RULE index 76339b16655..9cb03c3bcaf 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_81.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_81.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + License: CC-Attribution 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_81.yml b/src/licensedcode/data/rules/cc-by-4.0_81.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_82.RULE b/src/licensedcode/data/rules/cc-by-4.0_82.RULE index 02c1b1a7110..47b1feb74b2 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_82.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_82.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + licensed under the CC-BY license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_82.yml b/src/licensedcode/data/rules/cc-by-4.0_82.yml deleted file mode 100644 index 85626a4634c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-4.0_83.RULE b/src/licensedcode/data/rules/cc-by-4.0_83.RULE index df508e000fe..a96f12b929d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_83.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_83.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + licensed under the CC-BY \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_83.yml b/src/licensedcode/data/rules/cc-by-4.0_83.yml deleted file mode 100644 index 85626a4634c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-4.0_84.RULE b/src/licensedcode/data/rules/cc-by-4.0_84.RULE index 2ffd98d2800..14f25f31e4e 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_84.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_84.RULE @@ -1 +1,7 @@ -licensed under CC-BY +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + +licensed under CC-BY \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_84.yml b/src/licensedcode/data/rules/cc-by-4.0_84.yml deleted file mode 100644 index 85626a4634c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-4.0_85.RULE b/src/licensedcode/data/rules/cc-by-4.0_85.RULE index 048812257f8..ac2b1ce8c63 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_85.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_85.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + under the CC-BY license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_85.yml b/src/licensedcode/data/rules/cc-by-4.0_85.yml deleted file mode 100644 index 85626a4634c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-4.0_86.RULE b/src/licensedcode/data/rules/cc-by-4.0_86.RULE index cea4f3e491d..b7cf0c8c482 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_86.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_86.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + which is licensed under the CC-BY license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_86.yml b/src/licensedcode/data/rules/cc-by-4.0_86.yml deleted file mode 100644 index 85626a4634c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-4.0_87.RULE b/src/licensedcode/data/rules/cc-by-4.0_87.RULE index 407e9c640ad..695a2b93064 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_87.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_87.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + is licensed under the CC-BY license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_87.yml b/src/licensedcode/data/rules/cc-by-4.0_87.yml deleted file mode 100644 index 85626a4634c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-4.0_88.RULE b/src/licensedcode/data/rules/cc-by-4.0_88.RULE index 57edc97e40b..af0f93e667f 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_88.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_88.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution License, V4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_88.yml b/src/licensedcode/data/rules/cc-by-4.0_88.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_89.RULE b/src/licensedcode/data/rules/cc-by-4.0_89.RULE index 8a22551081b..00c46fdf8b7 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_89.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_89.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution License, V 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_89.yml b/src/licensedcode/data/rules/cc-by-4.0_89.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_9.RULE b/src/licensedcode/data/rules/cc-by-4.0_9.RULE index 7ad79cda73d..cf6ab7fa2d8 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_9.RULE @@ -1 +1,9 @@ -Documentation is under the [Creative Commons Attribution license](https://creativecommons.org/licenses/by/4.0/). +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + +Documentation is under the [Creative Commons Attribution license](https://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_9.yml b/src/licensedcode/data/rules/cc-by-4.0_9.yml deleted file mode 100644 index e1db67e4357..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_90.RULE b/src/licensedcode/data/rules/cc-by-4.0_90.RULE index 1f4ce898224..b95482ee7c9 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_90.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_90.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution, V4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_90.yml b/src/licensedcode/data/rules/cc-by-4.0_90.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_91.RULE b/src/licensedcode/data/rules/cc-by-4.0_91.RULE index 7a5edbd4d5b..6f5199294f6 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_91.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_91.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution, V 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_91.yml b/src/licensedcode/data/rules/cc-by-4.0_91.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_92.RULE b/src/licensedcode/data/rules/cc-by-4.0_92.RULE index 2da81bf93a9..bbfc115d456 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_92.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_92.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_text: yes +relevance: 99 +notes: small damages in the text likely from a web page copy/paste +--- + Creative Commons Attribution 4.0 International Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/cc-by-4.0_92.yml b/src/licensedcode/data/rules/cc-by-4.0_92.yml deleted file mode 100644 index e77e0ff273c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_92.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_text: yes -relevance: 99 -notes: small damages in the text likely from a web page copy/paste diff --git a/src/licensedcode/data/rules/cc-by-4.0_93.RULE b/src/licensedcode/data/rules/cc-by-4.0_93.RULE index d96f5de3c7f..5694a098de9 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_93.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_93.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + provided under a Creative Commons Attribution 4.0 International (CC BY 4.0) license (https://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_93.yml b/src/licensedcode/data/rules/cc-by-4.0_93.yml deleted file mode 100644 index e1db67e4357..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_94.RULE b/src/licensedcode/data/rules/cc-by-4.0_94.RULE index 1911f9d2efa..cdceaff339d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_94.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_94.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + provided under a Creative Commons Attribution 4.0 International (CC BY 4.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_94.yml b/src/licensedcode/data/rules/cc-by-4.0_94.yml deleted file mode 100644 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_95.RULE b/src/licensedcode/data/rules/cc-by-4.0_95.RULE index 0170a3e4e4c..30c13eb8f6b 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_95.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_95.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution 4.0 International Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_95.yml b/src/licensedcode/data/rules/cc-by-4.0_95.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_96.RULE b/src/licensedcode/data/rules/cc-by-4.0_96.RULE index 40e1c631e4f..ca9f988d80b 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_96.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_96.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_text: yes +--- + Creative Commons Attribution 4.0 International Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not diff --git a/src/licensedcode/data/rules/cc-by-4.0_96.yml b/src/licensedcode/data/rules/cc-by-4.0_96.yml deleted file mode 100644 index f6c6d5e3263..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_96.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-4.0_97.RULE b/src/licensedcode/data/rules/cc-by-4.0_97.RULE index 80a31853ebd..28c38c8d494 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_97.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_97.RULE @@ -1,2 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +--- + Unless stated otherwise, artwork included in this distribution is licensed under the Creative Commons Attribution 4.0 International License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_97.yml b/src/licensedcode/data/rules/cc-by-4.0_97.yml deleted file mode 100644 index cc680a36b05..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_97.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-4.0_98.RULE b/src/licensedcode/data/rules/cc-by-4.0_98.RULE index 72c83fc56b8..c6d558c1b08 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_98.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_98.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + Unless stated otherwise, artwork included in this distribution is licensed under the Creative Commons Attribution 4.0 International License. diff --git a/src/licensedcode/data/rules/cc-by-4.0_98.yml b/src/licensedcode/data/rules/cc-by-4.0_98.yml deleted file mode 100644 index dcdfe5af69e..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_98.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_99.RULE b/src/licensedcode/data/rules/cc-by-4.0_99.RULE index 05e5c48487d..42860d0afe8 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_99.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_99.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + You can learn more about the permitted use by visiting https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_99.yml b/src/licensedcode/data/rules/cc-by-4.0_99.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_address.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_address.RULE index a453b9baa33..5e649253425 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_address.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_address.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ -or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. +or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_address.yml b/src/licensedcode/data/rules/cc-by-4.0_and_address.yml deleted file mode 100644 index dcdfe5af69e..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_address.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_mit_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_mit_1.RULE index c692b8d4953..159b230cda0 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_mit_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-4.0 AND mit +is_license_notice: yes +relevance: 100 +--- + # License Unless stated otherwise, all content is licensed under the Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_mit_1.yml b/src/licensedcode/data/rules/cc-by-4.0_and_mit_1.yml deleted file mode 100644 index a4c45ad712f..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_mit_2.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_mit_2.RULE index 7fd824f826c..788e25e93ff 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_mit_2.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_mit_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-4.0 AND mit +is_license_notice: yes +relevance: 100 +--- + Unless stated otherwise, all content is licensed under the Creative Commons Attribution License and code licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_mit_2.yml b/src/licensedcode/data/rules/cc-by-4.0_and_mit_2.yml deleted file mode 100644 index a4c45ad712f..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_mit_3.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_mit_3.RULE index 8b70fb8282d..11eb02d35f6 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_mit_3.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_mit_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-4.0 AND mit +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution License and code licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_mit_3.yml b/src/licensedcode/data/rules/cc-by-4.0_and_mit_3.yml deleted file mode 100644 index a4c45ad712f..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_1.RULE index c520d8d6976..ffb86a8309e 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_1.RULE @@ -1 +1,9 @@ -License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) +--- +license_expression: cc-by-4.0 AND ofl-1.1 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://fontawesome.com/license/free +--- + +License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_1.yml b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_1.yml deleted file mode 100644 index d86cf72b2a8..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 AND ofl-1.1 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://fontawesome.com/license/free diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_2.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_2.RULE index 75cdaa458d9..feec3129bc0 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_2.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-4.0 AND ofl-1.1 AND mit +is_license_notice: yes +notes: https://fontawesome.com/license/free +--- + Font Awesome Free License Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want. diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_2.yml b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_2.yml deleted file mode 100644 index c35f059903d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 AND ofl-1.1 AND mit -is_license_notice: yes -notes: https://fontawesome.com/license/free diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_3.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_3.RULE index 121d18ed41c..5140bef1005 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_3.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: cc-by-4.0 AND ofl-1.1 AND mit +is_license_notice: yes +notes: https://raw.githubusercontent.com/django/django/main/docs/_theme/djangodocs/static/fontawesome/LICENSE.txt +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 + - https://fontawesome.com/license + - https://opensource.org/licenses/MIT + - https://scripts.sil.org/OFL +--- + Font Awesome Free License Font Awesome Free is free, open source, and GPL friendly. You can use it for diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_3.yml b/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_3.yml deleted file mode 100644 index 991d4e846dd..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_ofl-1.1_and_mit_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cc-by-4.0 AND ofl-1.1 AND mit -is_license_notice: yes -notes: https://raw.githubusercontent.com/django/django/main/docs/_theme/djangodocs/static/fontawesome/LICENSE.txt -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 - - https://fontawesome.com/license - - https://opensource.org/licenses/MIT - - https://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_other-permissive_1.RULE index a7fee4bbe65..85013a04661 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 AND other-permissive +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/legalcode +--- + licensed under the Creative Commons Attribution International 4.0 License, which full text can be found here: https://creativecommons.org/licenses/by/4.0/legalcode. diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/cc-by-4.0_and_other-permissive_1.yml deleted file mode 100644 index c2062236854..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 AND other-permissive -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url1.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url1.RULE index ea8ea99ec7e..961946387de 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + I am providing code and resources in this repository to you under an open source license. Because this is my personal repository, the license you receive to my code and resources is from me and not my employer diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url1.yml b/src/licensedcode/data/rules/cc-by-4.0_and_url1.yml deleted file mode 100644 index c047dc1c656..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url2.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url2.RULE index 0377b6c35c5..6a8f44b353e 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url2.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url2.RULE @@ -1,4 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + Creative Commons Attribution 4.0 International License (CC BY 4.0) -http://creativecommons.org/licenses/by/4.0/ +http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url2.yml b/src/licensedcode/data/rules/cc-by-4.0_and_url2.yml deleted file mode 100644 index c047dc1c656..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url3.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url3.RULE index e188a9e380f..1ae7e7522f2 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url3.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 + - https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg +--- + ## License [![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)] diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url3.yml b/src/licensedcode/data/rules/cc-by-4.0_and_url3.yml deleted file mode 100644 index e892dfb8a7a..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 - - https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url4.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url4.RULE index bf7a0304a83..2eb3a17df90 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url4.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 + - https://img.shields.io/badge/License-CC0%201.0-brightgreen.svg?style=flat-square +--- + ## License diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url4.yml b/src/licensedcode/data/rules/cc-by-4.0_and_url4.yml deleted file mode 100644 index 6864cc47d3a..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 - - https://img.shields.io/badge/License-CC0%201.0-brightgreen.svg?style=flat-square diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url5.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url5.RULE index 57a15940163..e6157778e6e 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url5.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url5.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + Licensed under Attribution 4.0 International (CC BY 4.0) http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url5.yml b/src/licensedcode/data/rules/cc-by-4.0_and_url5.yml deleted file mode 100644 index 96f98108bf8..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url6.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url6.RULE index 1d05a2d7f3f..7f55e7df146 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url6.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ +--- + Creative Commons 4.0 Attribution 4.0 International See https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url6.yml b/src/licensedcode/data/rules/cc-by-4.0_and_url6.yml deleted file mode 100644 index 8ec2b13d573..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-4.0_licensebutton.RULE index 9415e80ef7f..ffaca896e4a 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by/4.0 +--- + https://licensebuttons.net/l/by/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-4.0_licensebutton.yml deleted file mode 100644 index 05baa48f2b3..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_other_files.RULE b/src/licensedcode/data/rules/cc-by-4.0_other_files.RULE index d8ed94df5a4..3ea3c2e6481 100755 --- a/src/licensedcode/data/rules/cc-by-4.0_other_files.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_other_files.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +relevance: 100 +--- + Other files are under Creative Common Attribution 4.0 International. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_other_files.yml b/src/licensedcode/data/rules/cc-by-4.0_other_files.yml deleted file mode 100755 index adecd60c4a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_other_files.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_1.RULE index cadc72cf5e5..6c0a9262ad5 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-4.0 +--- + https://spdx.org/licenses/cc-by-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_1.yml b/src/licensedcode/data/rules/cc-by-4.0_url_1.yml deleted file mode 100644 index 7c12b410d3a..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_2.RULE index 8c0f655b408..1c99c2dd562 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-4.0.html +--- + https://spdx.org/licenses/cc-by-4.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_2.yml b/src/licensedcode/data/rules/cc-by-4.0_url_2.yml deleted file mode 100644 index 1bcb5cb5d54..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-4.0.html diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_badge.RULE index d0e975f2ec6..60a151cd7cf 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_badge.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + [![License: CC BY 4.0](https://licensebuttons.net/l/by/4.0/80x15.png)](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge.yml b/src/licensedcode/data/rules/cc-by-4.0_url_badge.yml deleted file mode 100644 index b8073bd2014..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.RULE index 220ae791404..857da77df11 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 + - https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg +--- + [![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.yml b/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.yml deleted file mode 100644 index 0c9dd6e692c..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 - - https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge_2.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_badge_2.RULE index 9ed2de92aea..c0ed3c1063a 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge_2.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_badge_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0/ +--- + license {{ http://creativecommons.org/licenses/by/4.0/ }} Creative Commons License https://i.creativecommons.org/l/by/4.0/88x31.png -This work is licensed under license {{ http://creativecommons.org/licenses/by/4.0/ }} {{Creative Commons Attribution 4.0}} International License +This work is licensed under license {{ http://creativecommons.org/licenses/by/4.0/ }} {{Creative Commons Attribution 4.0}} International License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge_2.yml b/src/licensedcode/data/rules/cc-by-4.0_url_badge_2.yml deleted file mode 100644 index c047dc1c656..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge_3.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_badge_3.RULE index 2e6f31e6b4c..f250c57a629 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge_3.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_badge_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +--- + https://i.creativecommons.org/l/by/4.0/88x31.png \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge_3.yml b/src/licensedcode/data/rules/cc-by-4.0_url_badge_3.yml deleted file mode 100644 index 8e69b2f719d..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.RULE index 33cf28196b2..be5f8ab58b6 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/4.0 +--- + http://creativecommons.org/licenses/by/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.yml b/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.yml deleted file mode 100644 index aab9a122ca1..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_glc_61.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_glc_61.RULE index f4b65577b34..93edcca03fd 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_glc_61.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_glc_61.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 +--- + https://creativecommons.org/licenses/by/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_glc_61.yml b/src/licensedcode/data/rules/cc-by-4.0_url_glc_61.yml deleted file mode 100644 index 48bc00ff0f2..00000000000 --- a/src/licensedcode/data/rules/cc-by-4.0_url_glc_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0.RULE index 348e27d7509..87873a9509e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/1.0/legalcode +--- + http://creativecommons.org/licenses/by-nc/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0.SPDX.RULE index f4474bfb204..5ca50ddde67 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-1.0.SPDX.yml deleted file mode 100644 index 3bbacf3a4ab..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0.yml b/src/licensedcode/data/rules/cc-by-nc-1.0.yml deleted file mode 100644 index 8f8da94fd40..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_1.RULE index 47cca60dff6..d0656f43a0c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/1.0/ +--- + http://creativecommons.org/licenses/by-nc/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_1.yml deleted file mode 100644 index 4c6bc7cafa6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_10.RULE index 75f46ce5c0d..a5bfad9e7a1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_10.yml deleted file mode 100644 index ee0a15e7a27..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_11.RULE index 3eb9fae58a3..eeb7f00e33e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-1.0 Creative Commons Attribution Non Commercial 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_11.yml deleted file mode 100644 index ee0a15e7a27..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_12.RULE index 70e7848ba85..234cdaf2778 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_12.yml deleted file mode 100644 index 968f0f0499f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_13.RULE index d2f72921517..39b1c421a7a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_13.yml deleted file mode 100644 index 968f0f0499f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_14.RULE index 65bd2e76c6d..d4df50c98dd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 1.0 Generic CC-BY-NC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_14.yml deleted file mode 100644 index 968f0f0499f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_15.RULE index 63c5caa1336..cd1f8783a58 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_15.yml deleted file mode 100644 index 84f6ed14b3d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_16.RULE index a28ee22ffb9..b3937b5d4c4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_16.yml deleted file mode 100644 index 84f6ed14b3d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_17.RULE index 44b448db24a..a7959fe085c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_17.yml deleted file mode 100644 index 84f6ed14b3d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_18.RULE index e9e84235b8c..cb0ab00bed1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-1.0 Creative Commons Attribution Non Commercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_18.yml deleted file mode 100644 index ee0a15e7a27..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_19.RULE index a4a31e7b1a8..cca945aa2c8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-1.0 +--- + https://licenses.nuget.org/CC-BY-NC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_19.yml deleted file mode 100644 index 49f15f12fde..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_2.RULE index 62759b05e63..31e70c3a68c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/1.0/ +--- + is licensed under a Creative Commons license. This license permits non-commercial use of this work, diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_2.yml deleted file mode 100644 index 082d5322ba9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_20.RULE index 039204fc7fc..f183216a049 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_20.yml deleted file mode 100644 index ee0a15e7a27..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_21.RULE index ae9aef6e98b..09285874c17 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-1.0 +--- + {{CC-BY-NC-1.0}} https://spdx.org/licenses/CC-BY-NC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_21.yml deleted file mode 100644 index 7de2ddefa60..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_22.RULE index b99c0d6ba76..4bb8e0ea5d0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-1.0 +--- + LICENSE {{CC-BY-NC-1.0}} https://spdx.org/licenses/CC-BY-NC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_22.yml deleted file mode 100644 index 7de2ddefa60..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_3.RULE index 2bd01b428a1..4f59eb2886a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_3.yml deleted file mode 100644 index ee0a15e7a27..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_4.RULE index 081520c7bdd..c2a6ff884d3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 1.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_4.yml deleted file mode 100644 index 4188ba67291..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_5.RULE index 2fcf7e19d8c..ad4a7d0b4f8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/nc/1.0 +--- + http://creativecommons.org/licenses/nc/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_5.yml deleted file mode 100644 index 307904f576e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/nc/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_6.RULE index c46f29e7eaa..97f79861ee6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/1.0/legalcode +--- + https://creativecommons.org/licenses/by-nc/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_6.yml deleted file mode 100644 index 520ab08b8ce..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_7.RULE index 1ef408e4618..34f21cb0f78 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nc/1.0 +--- + https://creativecommons.org/licenses/nc/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_7.yml deleted file mode 100644 index 7bc6913262c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nc/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_8.RULE index 521717b2b70..211f0f754fe 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nc/1.0/legalcode +--- + https://creativecommons.org/licenses/nc/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_8.yml deleted file mode 100644 index 2a84fcbe97d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nc/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_9.RULE index 91fb5c404c0..829d29162d1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_9.yml deleted file mode 100644 index cfc853fa275..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_licensebutton.RULE index 4be0d5c88bd..3544edbe7cf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc/1.0 +--- + https://licensebuttons.net/l/by-nc/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_licensebutton.yml deleted file mode 100644 index 896856d7714..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_url_1.RULE index 3266eb50864..ca6c5125689 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-1.0 +--- + https://spdx.org/licenses/cc-by-nc-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_url_1.yml deleted file mode 100644 index 975b9d20c89..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_url_2.RULE index 289627547df..f8f69e248d6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-1.0.html +--- + https://spdx.org/licenses/cc-by-nc-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_url_2.yml deleted file mode 100644 index 3d1911b552b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-1.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_url_glc_21.RULE b/src/licensedcode/data/rules/cc-by-nc-1.0_url_glc_21.RULE index 4ef75ba9f51..23c2a9fe42f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_url_glc_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-1.0_url_glc_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/1.0 +--- + https://creativecommons.org/licenses/by-nc/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-1.0_url_glc_21.yml b/src/licensedcode/data/rules/cc-by-nc-1.0_url_glc_21.yml deleted file mode 100644 index 27a015f75a6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-1.0_url_glc_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0.RULE index 82ccf57ee42..86ba7832799 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/2.0/ +--- + http://creativecommons.org/licenses/by-nc/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0.SPDX.RULE index 89fc845ebba..8554b5bcb67 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-2.0.SPDX.yml deleted file mode 100644 index 76d44fbc765..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0.yml b/src/licensedcode/data/rules/cc-by-nc-2.0.yml deleted file mode 100644 index c124022c1cf..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_1.RULE index 801b134af21..06de2350766 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/2.0/legalcode +--- + http://creativecommons.org/licenses/by-nc/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_1.yml deleted file mode 100644 index 01967498770..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_10.RULE index bb221e68da0..e1f5c071d6d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_10.yml deleted file mode 100644 index 76374f44402..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_11.RULE index f45173e9341..4586d7193e0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_11.yml deleted file mode 100644 index 76374f44402..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_12.RULE index 2fa5ed7558d..c068a463880 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 2.0 Generic CC-BY-NC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_12.yml deleted file mode 100644 index 76374f44402..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_13.RULE index 972c22d65fa..ecb97340cd7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_13.yml deleted file mode 100644 index 492e8fd08aa..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_14.RULE index 0deedf3fa5d..b20301de985 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_14.yml deleted file mode 100644 index 492e8fd08aa..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_15.RULE index 5dffc696539..6dcf3b854de 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_15.yml deleted file mode 100644 index 492e8fd08aa..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_16.RULE index f46f8b770a4..d599cd0e969 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-2.0 Creative Commons Attribution Non Commercial 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_16.yml deleted file mode 100644 index 1e5242bf1c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_17.RULE index 5317ba74d06..2394877cb64 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-2.0 +--- + https://licenses.nuget.org/CC-BY-NC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_17.yml deleted file mode 100644 index 48d5d9d16d6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_18.RULE index 7a87b2a8602..874340bdd22 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_18.yml deleted file mode 100644 index 1e5242bf1c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_19.RULE index 18710a3a986..c9bdda07167 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-2.0 +--- + LICENSE {{CC-BY-NC-2.0}} https://spdx.org/licenses/CC-BY-NC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_19.yml deleted file mode 100644 index 0e895763ddc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_2.RULE index 62e46a39f85..c60412d4a21 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_2.yml deleted file mode 100644 index 1e5242bf1c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_20.RULE index d0716c250bc..8d304e3685d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-2.0 +--- + {{CC-BY-NC-2.0}} https://spdx.org/licenses/CC-BY-NC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_20.yml deleted file mode 100644 index 0e895763ddc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_3.RULE index 117cd7a250e..9a42efcf1f1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 2.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_3.yml deleted file mode 100644 index dae288b4959..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_4.RULE index d331de61444..b2fbf55b470 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/nc/2.0 +--- + http://creativecommons.org/licenses/nc/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_4.yml deleted file mode 100644 index b0e4d7b2913..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/nc/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_5.RULE index 57018cc77ad..8f1bee19802 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/2.0/legalcode +--- + https://creativecommons.org/licenses/by-nc/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_5.yml deleted file mode 100644 index 3332495f7c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_6.RULE index 316f7072682..13537382cc9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nc/2.0/legalcode +--- + https://creativecommons.org/licenses/nc/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_6.yml deleted file mode 100644 index accedd61f86..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nc/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_7.RULE index 7284651bec8..94954451bd7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_7.yml deleted file mode 100644 index ecf0c8c8d20..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_8.RULE index 15a38ec3772..87e45ca3b84 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_8.yml deleted file mode 100644 index 1e5242bf1c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_9.RULE index 3ad1641e83d..376ca3e854c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-2.0 Creative Commons Attribution Non Commercial 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_9.yml deleted file mode 100644 index 1e5242bf1c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_license_button.RULE index 46ef5c9f8f4..d59a38a3831 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nc/ +--- + https://licensebuttons.net/l/nc/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_license_button.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_license_button.yml deleted file mode 100644 index a812d219609..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nc/ diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_url_1.RULE index 97397e8f959..f5885701734 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-2.0 +--- + https://spdx.org/licenses/cc-by-nc-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_url_1.yml deleted file mode 100644 index 2da4710a5b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_url_2.RULE index cf039ccd158..5a7b114a739 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-2.0.html +--- + https://spdx.org/licenses/cc-by-nc-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_url_2.yml deleted file mode 100644 index fb9fd788a12..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-2.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_url_glc_23.RULE b/src/licensedcode/data/rules/cc-by-nc-2.0_url_glc_23.RULE index 7010bed8aeb..222185f6edc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_url_glc_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.0_url_glc_23.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/2.0 +--- + https://creativecommons.org/licenses/by-nc/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.0_url_glc_23.yml b/src/licensedcode/data/rules/cc-by-nc-2.0_url_glc_23.yml deleted file mode 100644 index fc11bf13fd7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.0_url_glc_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5.RULE index 541f91d9148..ce976f67500 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/2.5/ +--- + http://creativecommons.org/licenses/by-nc/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5.SPDX.RULE index 8a99bf10001..021f2198c4c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-2.5.SPDX.yml deleted file mode 100644 index c6ff337cbbb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5.yml b/src/licensedcode/data/rules/cc-by-nc-2.5.yml deleted file mode 100644 index 222e061d01a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_1.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_1.RULE index cd1f215e4cd..a94a0efc538 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/2.5/legalcode +--- + http://creativecommons.org/licenses/by-nc/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_1.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_1.yml deleted file mode 100644 index 559e405ae33..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_10.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_10.RULE index bbac51e5e6e..66023c855e9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_10.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_10.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_10.yml deleted file mode 100644 index 1c25ce99b25..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_11.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_11.RULE index 78c3ab26d75..e6d3e9311b2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_11.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 2.5 Generic CC-BY-NC-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_11.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_11.yml deleted file mode 100644 index 1c25ce99b25..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_12.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_12.RULE index 9ab5197d496..29cc84b5d55 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_12.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_12.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_12.yml deleted file mode 100644 index 966863a87ea..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_13.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_13.RULE index f13a7ed0f58..07ff7040d8b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_13.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_13.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_13.yml deleted file mode 100644 index 966863a87ea..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_14.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_14.RULE index 368c638a15c..ddab2da6c1a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_14.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_14.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_14.yml deleted file mode 100644 index 966863a87ea..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_15.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_15.RULE index 85020601726..0430ce9640b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-2.5 Creative Commons Attribution Non Commercial 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_15.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_15.yml deleted file mode 100644 index eb2d8890dd9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_16.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_16.RULE index b141227d98a..c9e068b9a8e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_16.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-2.5 +--- + https://licenses.nuget.org/CC-BY-NC-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_16.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_16.yml deleted file mode 100644 index a84b149a91d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_17.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_17.RULE index e2eafe15192..310c1af7c8f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_17.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_17.yml deleted file mode 100644 index eb2d8890dd9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_18.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_18.RULE index 4cb9b25e2aa..4d20d82c744 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-2.5 +--- + {{CC-BY-NC-2.5}} https://spdx.org/licenses/CC-BY-NC-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_18.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_18.yml deleted file mode 100644 index 51f03f0425e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_19.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_19.RULE index 16a00aea377..83a076cf659 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-2.5 +--- + LICENSE {{CC-BY-NC-2.5}} https://spdx.org/licenses/CC-BY-NC-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_19.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_19.yml deleted file mode 100644 index 51f03f0425e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_2.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_2.RULE index cc52e09750a..fefabf95d2f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/2.5/ +--- + /// Creative Commons Licensees are subject to the /// license found at /// http://creativecommons.org/licenses/by-nc/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_2.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_2.yml deleted file mode 100644 index 5c8433ceaf2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_3.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_3.RULE index 25ff7e180ab..2d8c9260fbc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_3.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_3.yml deleted file mode 100644 index eb2d8890dd9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_4.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_4.RULE index 1881c65efd5..ded2bcc6d41 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 2.5 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_4.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_4.yml deleted file mode 100644 index 81822d2db2e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_5.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_5.RULE index 61effd4cfdd..b66601cd1c0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/2.5/legalcode +--- + https://creativecommons.org/licenses/by-nc/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_5.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_5.yml deleted file mode 100644 index d87263ff948..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_6.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_6.RULE index 14c628afb70..f7d76bc36d8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_6.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_6.yml deleted file mode 100644 index 3506b1c94ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_7.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_7.RULE index 3f999aed34f..b88acef6801 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_7.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_7.yml deleted file mode 100644 index eb2d8890dd9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_8.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_8.RULE index c9f67c9f458..0cca0b09932 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-2.5 Creative Commons Attribution Non Commercial 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_8.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_8.yml deleted file mode 100644 index eb2d8890dd9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_9.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_9.RULE index 85673fb28c8..62d4cc891ee 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_9.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_9.yml deleted file mode 100644 index 1c25ce99b25..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_licensebutton.RULE index ae2dbfc6526..2ad7d37de01 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc/2.5 +--- + https://licensebuttons.net/l/by-nc/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_licensebutton.yml deleted file mode 100644 index 5e36d19de9c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc/2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_url_1.RULE index f70ade27042..5959bf89b86 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-2.5 +--- + https://spdx.org/licenses/cc-by-nc-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_url_1.yml deleted file mode 100644 index 5795e7db4f4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_url_2.RULE index bd59ece0f0e..383d29a429d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-2.5.html +--- + https://spdx.org/licenses/cc-by-nc-2.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_url_2.yml deleted file mode 100644 index a7156cba07d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-2.5.html diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_url_glc_25.RULE b/src/licensedcode/data/rules/cc-by-nc-2.5_url_glc_25.RULE index 3050cf083ad..a4f2b471912 100644 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_url_glc_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-2.5_url_glc_25.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/2.5 +--- + https://creativecommons.org/licenses/by-nc/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-2.5_url_glc_25.yml b/src/licensedcode/data/rules/cc-by-nc-2.5_url_glc_25.yml deleted file mode 100644 index d91ebeb8ffc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-2.5_url_glc_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_1.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0-de_1.RULE index fead602d64d..0b459ea5846 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0-de_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0-de +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_1.yml b/src/licensedcode/data/rules/cc-by-nc-3.0-de_1.yml deleted file mode 100644 index 5d42b57126f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_2.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0-de_2.RULE index 5220ce4b311..df59b87931f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0-de_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0-de +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-3.0-DE Creative Commons Attribution Non Commercial 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_2.yml b/src/licensedcode/data/rules/cc-by-nc-3.0-de_2.yml deleted file mode 100644 index 5d42b57126f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_3.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0-de_3.RULE index 284571292cf..8563adf63b0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0-de_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-3.0-DE +--- + https://licenses.nuget.org/CC-BY-NC-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_3.yml b/src/licensedcode/data/rules/cc-by-nc-3.0-de_3.yml deleted file mode 100644 index f7d0b28e711..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_4.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0-de_4.RULE index 7d8726a3b4b..0bf05e003bc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0-de_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0-de +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_4.yml b/src/licensedcode/data/rules/cc-by-nc-3.0-de_4.yml deleted file mode 100644 index 5d42b57126f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_5.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0-de_5.RULE index 1a4f64b9647..6d47f264172 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0-de_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-3.0-DE +--- + LICENSE {{CC-BY-NC-3.0-DE}} https://spdx.org/licenses/CC-BY-NC-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_5.yml b/src/licensedcode/data/rules/cc-by-nc-3.0-de_5.yml deleted file mode 100644 index 3f95a33e17c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_6.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0-de_6.RULE index 2fb22a6e47d..1843e8a77a8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0-de_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-3.0-DE +--- + {{CC-BY-NC-3.0-DE}} https://spdx.org/licenses/CC-BY-NC-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0-de_6.yml b/src/licensedcode/data/rules/cc-by-nc-3.0-de_6.yml deleted file mode 100644 index 3f95a33e17c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0-de_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0.RULE index 8ba225b7afc..9333d68d894 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/3.0/legalcode +--- + http://creativecommons.org/licenses/by-nc/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0.SPDX.RULE index 55ebb32dcbe..906705023a4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-3.0.SPDX.yml deleted file mode 100644 index 5418ed3becc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0.yml b/src/licensedcode/data/rules/cc-by-nc-3.0.yml deleted file mode 100644 index 9e87934c841..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_1.RULE index 2cf51b6f990..a707fbdcbee 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/3.0/ +--- + http://creativecommons.org/licenses/by-nc/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_1.yml deleted file mode 100644 index 66b644ff866..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_10.RULE index 2e168181a73..6c1f94ff9dd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 3.0 Unported License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_10.yml deleted file mode 100644 index d308880c9b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_11.RULE index d67de16e00f..69026de3e25 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/3.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-nc/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_11.yml deleted file mode 100644 index 01d6ef3b9fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_12.RULE index fd68d8717d1..32c1fea3e4c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/3.0/legalcode +--- + https://creativecommons.org/licenses/by-nc/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_12.yml deleted file mode 100644 index 9ebf86c5b52..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_13.RULE index 26c1fa10f2e..522df802ef5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/3.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-nc/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_13.yml deleted file mode 100644 index 4fa9f6838d4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_14.RULE index b5202a0e661..971f8796a15 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial 3.0 Unported CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_14.yml deleted file mode 100644 index 8981da9c7c4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_15.RULE index 73f8c5d775b..4088710dc44 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_15.yml deleted file mode 100644 index 97913d7a8e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_16.RULE index 15a72c7080d..bbc937e657e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-3.0 Creative Commons Attribution Non Commercial 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_16.yml deleted file mode 100644 index 97913d7a8e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_17.RULE index b2152c26ad7..d8ef7f9e875 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_17.yml deleted file mode 100644 index fb47f241753..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_18.RULE index 105f5495166..1675abac961 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_18.yml deleted file mode 100644 index fb47f241753..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_19.RULE index 8771cf51260..1466450ca75 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 3.0 Unported CC-BY-NC-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_19.yml deleted file mode 100644 index fb47f241753..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_2.RULE index c8637bf7dc4..801fd3aa603 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_2.yml deleted file mode 100644 index 8981da9c7c4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_20.RULE index 3b345e27c9a..fbba37319a8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_20.yml deleted file mode 100644 index e0ca18cb25f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_21.RULE index 834aaf44427..d7ae987696b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_21.yml deleted file mode 100644 index e0ca18cb25f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_22.RULE index 2f569490891..0fd82218b5b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_22.yml deleted file mode 100644 index e0ca18cb25f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_23.RULE index 1480f154f17..1945296c7ab 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-3.0 Creative Commons Attribution Non Commercial 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_23.yml deleted file mode 100644 index 97913d7a8e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_24.RULE index a8423c4efaf..df7b4f83240 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-3.0 +--- + https://licenses.nuget.org/CC-BY-NC-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_24.yml deleted file mode 100644 index 14e4538e7aa..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_25.RULE index 84fccb80607..d4297c03d69 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_25.yml deleted file mode 100644 index 97913d7a8e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_26.RULE index d93b0767d7c..80a6e18ee98 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-3.0 +--- + {{CC-BY-NC-3.0}} https://spdx.org/licenses/CC-BY-NC-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_26.yml deleted file mode 100644 index e71303c34be..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_27.RULE index 788b131c4a7..1d4e3d91782 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-3.0 +--- + LICENSE {{CC-BY-NC-3.0}} https://spdx.org/licenses/CC-BY-NC-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_27.yml deleted file mode 100644 index e71303c34be..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_3.RULE index 56860e2ca51..2a8ed361cf5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/3.0/ +--- + Read license terms here [http://creativecommons.org/licenses/by-nc/3.0/] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_3.yml deleted file mode 100644 index 66b644ff866..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_4.RULE index 4ddc284994a..b697f2cf9a1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + CC BY-NC-SA 3.0](http://creativecommons.org/licenses/by-nc-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_4.yml deleted file mode 100644 index e7d4d0cf128..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_5.RULE index a2742cf7ab1..2613145be55 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/3.0 +--- + Redistribution and use in source and binary forms, * with or without modification, are permitted under the terms of the license * 'Creative Commons Attribution-NonCommercial 3.0' which can be found at diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_5.yml deleted file mode 100644 index 36605d08aeb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_6.RULE index 21040c42f56..59f717420e9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 3.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_6.yml deleted file mode 100644 index 97913d7a8e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_7.RULE index bc552c2a327..eb332565647 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_7.yml deleted file mode 100644 index 97913d7a8e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_8.RULE index da98f9800ee..10a3ae297d0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_8.yml deleted file mode 100644 index 97913d7a8e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_9.RULE index c8588bf7bc8..2e587f63982 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_9.yml deleted file mode 100644 index 97913d7a8e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_licensebutton.RULE index e344980f35c..de32628132e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc/3.0 +--- + https://licensebuttons.net/l/by-nc/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_licensebutton.yml deleted file mode 100644 index c803b60fa8f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_url_1.RULE index 6bcc6440c52..055ae31ba9a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-3.0 +--- + https://spdx.org/licenses/cc-by-nc-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_url_1.yml deleted file mode 100644 index 44c33738569..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_url_2.RULE index 5bfab10e4c6..fc6eacd6cd8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-3.0.html +--- + https://spdx.org/licenses/cc-by-nc-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_url_2.yml deleted file mode 100644 index 597fd567962..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-3.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_url_glc_27.RULE b/src/licensedcode/data/rules/cc-by-nc-3.0_url_glc_27.RULE index aa8802a2aee..5988dc2ba7e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_url_glc_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-3.0_url_glc_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/3.0 +--- + https://creativecommons.org/licenses/by-nc/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-3.0_url_glc_27.yml b/src/licensedcode/data/rules/cc-by-nc-3.0_url_glc_27.yml deleted file mode 100644 index fb32e2ce86d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-3.0_url_glc_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0.RULE index ad9f9bcc3d6..139f30abacb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +--- + Attribution-NonCommercial 4.0 International ======================================================================= diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0.SPDX.RULE index 9c275fd30b2..23ece7e9500 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Creative Commons Attribution-NonCommercial 4.0 International Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-4.0.SPDX.yml deleted file mode 100644 index e6d53b18ca0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0.yml b/src/licensedcode/data/rules/cc-by-nc-4.0.yml deleted file mode 100644 index f51d6f9d8bf..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_1.RULE index b6b500aa25c..6b7111661f9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_text: yes +--- + Creative Commons Attribution-NonCommercial 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_1.yml deleted file mode 100644 index 4dbeff669bb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_10.RULE index 18576654503..8fdefa5d765 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + CCBYNCv4 – Creative Commons Attribution-NonCommercial 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_10.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_11.RULE index 71e87a0d738..3ca2cc65391 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_11.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_12.RULE index 02f118d0e82..40e35dd253a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + CCBYNCv4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_12.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_13.RULE index c6227e09e72..6046b91f25d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +relevance: 100 +--- + free for non-commercial use under the CC BY-NC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_13.yml deleted file mode 100644 index 575b0c0714f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_14.RULE index 8d50df053d4..b6c0f0b73a0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_14.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +relevance: 100 +--- + License: The sound effect is permitted for non-commercial use under license “Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_14.yml deleted file mode 100644 index 575b0c0714f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_15.RULE index e8172d6d89a..3a9c2624703 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +relevance: 100 +--- + permitted for non-commercial use under license “Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_15.yml deleted file mode 100644 index 575b0c0714f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_16.RULE index 6e06e8197e2..90cef534e6c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +relevance: 99 +--- + licensed under CC BY-NC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_16.yml deleted file mode 100644 index dfbba0258ab..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_17.RULE index f7cb8027d9f..e912efeb929 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 99 +--- + CC BY-NC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_17.yml deleted file mode 100644 index 26b849c91f0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_18.RULE index e3048210b92..a8f94867e2e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/4.0/legalcode +--- + http://creativecommons.org/licenses/by-nc/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_18.yml deleted file mode 100644 index 40a5f785191..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_19.RULE index f02b48682ae..b3c9d44784c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/4.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-nc/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_19.yml deleted file mode 100644 index dfb37800529..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_2.RULE index a3048a350df..f71e680682d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/4.0/ +--- + This work is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_2.yml deleted file mode 100644 index 5d033837211..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_20.RULE index 905d31b52b8..dd69211ac6f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/4.0/legalcode +--- + https://creativecommons.org/licenses/by-nc/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_20.yml deleted file mode 100644 index c4f1eded928..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_21.RULE index 2603be8c4b4..dab9c1a9b9e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/4.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-nc/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_21.yml deleted file mode 100644 index 12d28c02da4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_22.RULE index 9e332beccb6..616a5472dc3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_22.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_23.RULE index 27b45326fa1..bc53d1bb730 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_23.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_text: yes +--- + Creative Commons Attribution-NonCommercial 4.0 International Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_23.yml deleted file mode 100644 index 4dbeff669bb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_24.RULE index 7f086ab7858..8fe635e43fa 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_tag: yes +relevance: 100 +--- + license='Attribution-NonCommercial 4.0 International', \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_24.yml deleted file mode 100644 index ade267112f8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_25.RULE index 6fe8cfcd49c..c178e0b880a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_25.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_26.RULE index 7d8aa9aeb9d..1eeddd28dbb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-4.0 Creative Commons Attribution Non Commercial 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_26.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_27.RULE index ccecad573ba..10340146a2f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_27.yml deleted file mode 100644 index 985ec7d9f11..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_28.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_28.RULE index 7d6b4f9de85..d344c4541c1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_28.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_28.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_28.yml deleted file mode 100644 index 985ec7d9f11..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_29.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_29.RULE index 6da29fa5e98..94189bff288 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_29.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial 4.0 International CC-BY-NC-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_29.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_29.yml deleted file mode 100644 index 985ec7d9f11..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_3.RULE index 92a92ae60ef..0adc407de53 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_3.yml deleted file mode 100644 index 575b0c0714f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_30.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_30.RULE index ef60dbba8ec..0e2b2f28858 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_30.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_30.yml deleted file mode 100644 index 6e456ae1502..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_31.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_31.RULE index b4aeb8c92bb..a380dfc7147 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_31.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_31.yml deleted file mode 100644 index 6e456ae1502..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_32.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_32.RULE index 528d01a6951..1f0a48b1b27 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_32.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_32.yml deleted file mode 100644 index 6e456ae1502..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_33.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_33.RULE index 641de10533a..ba6ed94e01e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-4.0 Creative Commons Attribution Non Commercial 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_33.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_33.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_34.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_34.RULE index 54e526af986..d3cfbe2c238 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_34.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +--- + Attribution-NonCommercial \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_34.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_34.yml deleted file mode 100644 index 87dd3c08eec..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_35.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_35.RULE index a783b5e8176..b5bb49af726 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-4.0 +--- + https://licenses.nuget.org/CC-BY-NC-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_35.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_35.yml deleted file mode 100644 index 5925551d12e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_36.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_36.RULE index 162f1f6d176..247cf3be0a2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_36.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_36.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_37.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_37.RULE index 6b37139fc15..e75edd9aa2a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_37.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-4.0 +--- + {{CC-BY-NC-4.0}} https://spdx.org/licenses/CC-BY-NC-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_37.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_37.yml deleted file mode 100644 index e332fbf5250..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_38.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_38.RULE index 26d70188159..5faadeb0af4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-4.0 +--- + LICENSE {{CC-BY-NC-4.0}} https://spdx.org/licenses/CC-BY-NC-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_38.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_38.yml deleted file mode 100644 index e332fbf5250..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_4.RULE index 2f27dad4b5e..3889c28f75e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/4.0/legalcode +--- + # Creative Commons Attribution-NonCommercial 4.0 International License Disclaimer: This is a human-readable summary of (and not a substitute for) the [license](http://creativecommons.org/licenses/by-nc/4.0/legalcode). diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_4.yml deleted file mode 100644 index 9c12f68a92c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_5.RULE index 0c31b3c7007..b760af6ec3c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc/4.0/ +--- + http://creativecommons.org/licenses/by-nc/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_5.yml deleted file mode 100644 index 39084cb6633..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_6.RULE index 99392b94d64..0b0f6a0b500 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/4.0/ +--- + https://creativecommons.org/licenses/by-nc/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_6.yml deleted file mode 100644 index 442c09b0b7a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_7.RULE index c5a667ea610..2979e94cbcf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 4.0 International License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_7.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_8.RULE index 85757de45f8..62d0b78c057 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_8.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_9.RULE index 8825545dd2a..9b25668b122 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_9.yml deleted file mode 100644 index 74a2b5f25ba..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_licensebutton.RULE index 9cf7844dcc3..aeffa95e120 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc/4.0 +--- + https://licensebuttons.net/l/by-nc/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_licensebutton.yml deleted file mode 100644 index d002c9ac1d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_url_1.RULE index 79f59c22d0e..418543eaae5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-4.0 +--- + https://spdx.org/licenses/cc-by-nc-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_url_1.yml deleted file mode 100644 index cd2e8b90c46..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_url_2.RULE index 3465acbbfef..3ec2b25f1cd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-4.0.html +--- + https://spdx.org/licenses/cc-by-nc-4.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_url_2.yml deleted file mode 100644 index c65af0f17d0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-4.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge.RULE index 178507f2a52..48d30e81e07 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/4.0 +--- + [![License: CC BY-NC 4.0](https://licensebuttons.net/l/by-nc/4.0/80x15.png)](https://creativecommons.org/licenses/by-nc/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge.yml deleted file mode 100644 index 536815aaa1c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge_1.RULE index bd1a3c127f7..d4f7bcdda59 100644 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc/4.0 + - https://img.shields.io/badge/License-CC%20BY--NC%204.0-lightgrey.svg +--- + [![License: CC BY-NC 4.0](https://img.shields.io/badge/License-CC%20BY--NC%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge_1.yml b/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge_1.yml deleted file mode 100644 index d23a69dac31..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-4.0_url_badge_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc/4.0 - - https://img.shields.io/badge/License-CC%20BY--NC%204.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0.RULE index 4d98786011f..80bf4c46ebe 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd-nc/1.0/ +--- + http://creativecommons.org/licenses/by-nd-nc/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0.yml deleted file mode 100644 index be929c147ee..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd-nc/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_1.RULE index eeacc08e976..1f069569683 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_text: yes +minimum_coverage: 30 +ignorable_urls: + - http://creativecommons.org/ +--- + Attribution-NoDerivs-NonCommercial 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_1.yml deleted file mode 100644 index 90a8c1be3b2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_text: yes -minimum_coverage: 30 -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_10.RULE index dafb3967b28..4c85aed2863 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivs-Non Commercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_10.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_11.RULE index ca97777e561..d1377c05acb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivs-Non Commercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_11.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_12.RULE index 3eeaf9c661d..9c5f1f3ae36 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-No Derivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_12.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_13.RULE index 3c31640b78e..7c816caadf7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-No Derivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_13.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_14.RULE index 4f8e64013ab..4264308bb72 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivs-NonCommercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_14.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_15.RULE index 6a70061ba53..5380a556ee4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivs-NonCommercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_15.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_16.RULE index df862460fd8..1ea0f523aeb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_16.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_17.RULE index 1fd4ea8948d..c46c90909ff 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_17.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_18.RULE index bc4abbfb24c..dd903daa5fd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs-NonCommercial 1.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_18.yml deleted file mode 100644 index 3c10810dabb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_19.RULE index 0c3e5eec6a5..16020bc6713 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives-NonCommercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_19.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_2.RULE index ed47d5ac435..94712e10c9e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs-NonCommercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_2.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_20.RULE index 3162851c97e..7937df274ce 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives-NonCommercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_20.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_21.RULE index e01377cab1c..744ccc71ed4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_21.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_22.RULE index 58ed5c42c39..cadc2cdf333 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_22.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_23.RULE index da5f482eb00..67e57d3670d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives-Non Commercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_23.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_24.RULE index b2c34e7e68a..8aa1cd89291 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives-Non Commercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_24.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.RULE index 54d5f2d14e2..3c21edddfa4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-No Derivatives 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.RULE index 1ebbe039f55..ad219db9003 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-No Derivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_27.RULE index db8a77d10b7..c84a634f429 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives-NonCommercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_27.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_28.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_28.RULE index 017dcaf1964..dd00e9bb4fb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives-NonCommercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_28.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_28.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_29.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_29.RULE index cba92f25d24..77a43ecf650 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_29.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_29.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_3.RULE index 445fc936b3a..eb6c870563f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs-NonCommercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_3.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_30.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_30.RULE index 835929c8f9e..239c3326362 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_30.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_30.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_31.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_31.RULE index 706d8da05e9..fe610d51355 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives-Non Commercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_31.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_31.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_32.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_32.RULE index bfc1389241c..bc14496dc8d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives-Non Commercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_32.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_32.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_33.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_33.RULE index 8f7ac3fa2f6..927e30027bf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-No Derivatives 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_33.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_33.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_34.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_34.RULE index 4fcf01b52b7..4bbd8dcac87 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-No Derivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_34.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_34.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_35.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_35.RULE index 9e6b415ebe7..bc11d7656cc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs-Non Commercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_35.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_35.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_36.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_36.RULE index 05b0fc23a1f..e60b82f715c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs-Non Commercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_36.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_36.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_37.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_37.RULE index 9100ff20463..af74c78e267 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-No Derivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_37.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_37.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_38.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_38.RULE index cf50f0634ba..c94d9c83d70 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-No Derivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_38.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_38.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_39.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_39.RULE index 6b05c92ba9c..67cd639fca0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs-NonCommercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_39.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_39.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_4.RULE index 126b5fc86e8..fa2975ccd70 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_4.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_40.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_40.RULE index c7ea993361b..dc839a5d85d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs-NonCommercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_40.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_40.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_41.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_41.RULE index be9748bc51e..cb574cb8b5c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_41.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_41.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_42.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_42.RULE index 0584f3b0172..a5c01f8632f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_42.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_42.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_43.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_43.RULE index ef023374517..8c07bfeb9f1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs-NonCommercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_43.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_43.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_44.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_44.RULE index 2390f9378c7..a24db368c92 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs-NonCommercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_44.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_44.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_45.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_45.RULE index a4152a8f2a9..9e1c06c120b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_45.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_45.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_46.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_46.RULE index b6a206b87a7..b0ed2742469 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_46.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_46.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_46.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_47.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_47.RULE index 67f0c66ac8b..28995d6b1c2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_47.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs-Non Commercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_47.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_47.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_48.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_48.RULE index 646a20ae50f..e294784421f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs-Non Commercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_48.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_48.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_49.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_49.RULE index e40c26b9591..2fbf358e56d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_49.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_49.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_49.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_5.RULE index 097efdcf3c4..8b4f488e06d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_5.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_50.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_50.RULE index 4689acd2553..81009597cec 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_50.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_50.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_51.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_51.RULE index 576b461fdbc..32123291f9f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode +--- + http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_51.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_51.yml deleted file mode 100644 index 14aa6a0afbc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd-nc/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_52.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_52.RULE index c3e0d310bb0..a46dfd3761e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_52.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/nd-nc/1.0 +--- + http://creativecommons.org/licenses/nd-nc/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_52.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_52.yml deleted file mode 100644 index 19a20a6213b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/nd-nc/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_53.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_53.RULE index b28ac331a84..ce6316d754e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_53.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode +--- + https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_53.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_53.yml deleted file mode 100644 index f2ab7d37b55..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_54.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_54.RULE index 67b1a070ac5..a5f77eb676a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_54.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nd-nc/1.0 +--- + https://creativecommons.org/licenses/nd-nc/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_54.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_54.yml deleted file mode 100644 index 4d4f67941cd..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nd-nc/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_55.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_55.RULE index 55b7b3a0baa..0fa68809ef0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_55.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nd-nc/1.0/legalcode +--- + https://creativecommons.org/licenses/nd-nc/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_55.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_55.yml deleted file mode 100644 index 8cecf46bb90..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nd-nc/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_56.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_56.RULE index 4dc6c508722..8d56d1a4ada 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_56.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nd-nc/2.0/legalcode +--- + https://creativecommons.org/licenses/nd-nc/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_56.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_56.yml deleted file mode 100644 index 1ec4826eaa3..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nd-nc/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_57.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_57.RULE index ed5b10fd747..8fceae0e5ac 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_57.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NoDerivs-NonCommercial 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_57.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_57.yml deleted file mode 100644 index 95a0f02ce63..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_57.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.RULE index 0bb7cec8b4c..e0bfd5ecbea 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-1.0 Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.RULE index 35e331d2575..06a00f2ad27 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.yml deleted file mode 100644 index c9cc51f1d13..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_6.RULE index 87e16cbab39..f16e0a18935 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs-Non Commercial 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_6.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.RULE index 382d025bc75..78338d44c8f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.yml deleted file mode 100644 index c9cc51f1d13..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.RULE index 01076440e44..8376901233b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic CC-BY-NC-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.yml deleted file mode 100644 index c9cc51f1d13..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.RULE index f7fe13684f0..268adc7c438 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.yml deleted file mode 100644 index 766e461f77a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.RULE index a80285568fc..6867f92413d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.yml deleted file mode 100644 index 766e461f77a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.RULE index a665351a2bf..69ffb25ac7b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.yml deleted file mode 100644 index 766e461f77a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.RULE index 506514e2dfb..f3191324ea4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-1.0 Creative Commons Attribution Non Commercial No Derivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_66.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_66.RULE index 31c2bf4ef17..4110907bda5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_66.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_66.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-ND-1.0 +--- + https://licenses.nuget.org/CC-BY-NC-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_66.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_66.yml deleted file mode 100644 index 1656fefc913..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-ND-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.RULE index 2e804537d95..d4837786de1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_68.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_68.RULE index cf1b11d26b0..682d08a02fe 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_68.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_68.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-1.0 +--- + {{CC-BY-NC-ND-1.0}} https://spdx.org/licenses/CC-BY-NC-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_68.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_68.yml deleted file mode 100644 index d99ad5c68c2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_69.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_69.RULE index 7f497d8ef59..95854fb1573 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_69.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_69.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-1.0 +--- + LICENSE {{CC-BY-NC-ND-1.0}} https://spdx.org/licenses/CC-BY-NC-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_69.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_69.yml deleted file mode 100644 index d99ad5c68c2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_7.RULE index 951afee363b..ad24c7e9906 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs-Non Commercial 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_7.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_8.RULE index 8bca3a7fb43..251ccf77d52 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-NoDerivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_8.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_9.RULE index a89aa46eb40..ec6d310f4d0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-NoDerivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_9.yml deleted file mode 100644 index 3b1e790a702..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button.RULE index d83b4ddd105..825037cad5e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nd-nc/1.0/ +--- + https://licensebuttons.net/l/nd-nc/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button.yml deleted file mode 100644 index 59561318b14..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nd-nc/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button_1.RULE index 952b4c20364..2d529cabd3c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nc/1.0/ +--- + https://licensebuttons.net/l/nc/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button_1.yml deleted file mode 100644 index 09a76ed5ef8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_license_button_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nc/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_1.RULE index 5ea03efec1a..77d3f552cb9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-1.0 +--- + https://spdx.org/licenses/cc-by-nc-nd-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_1.yml deleted file mode 100644 index 2cddbd67e35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_2.RULE index dd4fddf43fb..6e2c9a0d056 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-1.0.html +--- + https://spdx.org/licenses/cc-by-nc-nd-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_2.yml deleted file mode 100644 index 951fc488276..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-1.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_glc_31.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_glc_31.RULE index ba903da9108..9a326f1b17a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_glc_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_glc_31.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd-nc/1.0 +--- + https://creativecommons.org/licenses/by-nd-nc/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_glc_31.yml b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_glc_31.yml deleted file mode 100644 index 4efad801222..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_url_glc_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd-nc/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0-at.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0-at.RULE index 802871cb8eb..33d6b171ff6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0-at.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0-at.RULE @@ -1,7 +1,13 @@ +--- +license_expression: cc-by-nc-nd-2.0-at +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/ +--- + CREATIVE COMMONS IST KEINE VERTRAGSPARTEI DIESES LIZENZVERTRAGES UND ÜBERNIMMT KEINERLEI GEWÄHRLEISTUNG FÜR DAS WERK. CREATIVE COMMONS IST IHNEN ODER DRITTEN GEGENÜBER NICHT HAFTBAR FÜR SCHÄDEN JEDWEDER ART. UNGEACHTET DER VORSTEHENDEN ZWEI (2) SÄTZE HAT CREATIVE COMMONS ALLE RECHTE UND PFLICHTEN EINES LIZENSGEBERS, WENN SICH CREATIVE COMMONS AUSDRÜCKLICH ALS LIZENZGEBER BEZEICHNET. AUSSER FÜR DEN BESCHRÄNKTEN ZWECK EINES HINWEISES AN DIE ÖFFENTLICHKEIT, DASS DAS WERK UNTER DER CCPL LIZENSIERT WIRD, DARF KEINE VERTRAGSPARTEI DIE MARKE "CREATIVE COMMONS" ODER EINE ÄHNLICHE MARKE ODER DAS LOGO VON CREATIVE COMMONS OHNE VORHERIGE GENEHMIGUNG VON CREATIVE COMMONS NUTZEN. JEDE GESTATTETE NUTZUNG HAT IN ÜBEREINSTIMMUNG MIT DEN JEWEILS GÜLTIGEN NUTZUNGSBEDINGUNGEN FÜR MARKEN VON CREATIVE COMMONS ZU ERFOLGEN, WIE SIE AUF DER WEBSITE ODER IN ANDERER WEISE AUF ANFRAGE VON ZEIT ZU ZEIT ZUGÄNGLICH GEMACHT WERDEN. - CREATIVE COMMONS KANN UNTER https://creativecommons.org KONTAKTIERT WERDEN. - + CREATIVE COMMONS KANN UNTER https://creativecommons.org KONTAKTIERT WERDEN. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0-at.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0-at.yml deleted file mode 100644 index 9b3eb6251b1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0-at.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-2.0-at -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0-au.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0-au.RULE index d64326a241a..c1e9be60f0b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0-au.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0-au.RULE @@ -1,6 +1,13 @@ +--- +license_expression: cc-by-nc-nd-2.0-au +is_license_notice: yes +minimum_coverage: 30 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons is not a party to this Licence, and, to the full extent permitted by applicable law, makes no representation or warranty whatsoever in connection with the Work. To the full extent permitted by applicable law, Creative Commons will not be liable to You or any party on any legal theory (including, without limitation, negligence) for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this licence. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. -Creative Commons may be contacted at https://creativecommons.org/. - +Creative Commons may be contacted at https://creativecommons.org/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0-au.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0-au.yml deleted file mode 100644 index 09adaca8b37..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0-au.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0-au -is_license_notice: yes -minimum_coverage: 30 -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0.RULE index 4e9862d4a9c..533ab4e3923 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.0/ +--- + http://creativecommons.org/licenses/by-nc-nd/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0.SPDX.RULE index 50a34313bba..11e33f69f10 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0.SPDX.yml deleted file mode 100644 index 05607392d82..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0.yml deleted file mode 100644 index 8d172946207..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_1.RULE index 45922f8eeda..7ef410c5e27 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode +--- + http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_1.yml deleted file mode 100644 index b5ef8047a51..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_10.RULE index ed5138a3af9..5f983bd01cf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_10.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_11.RULE index f6ac62f24c7..c54f8cae43e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_11.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_12.RULE index 2cdf23bc4fe..d4b82a1f136 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_12.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_13.RULE index 107898677c9..7bb830ce3d0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivs 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_13.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_14.RULE index f0f3183448c..708a38333d9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivs 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_14.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_15.RULE index 1083094f7b5..743d59db656 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 2.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_15.yml deleted file mode 100644 index d1d823cd220..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_16.RULE index 365a28624ba..4b166cbd053 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.1 +--- + http://creativecommons.org/licenses/by-nc-nd/2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_16.yml deleted file mode 100644 index d606a880144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.1 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_17.RULE index b7531745881..7378328c5c7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.1/legalcode +--- + http://creativecommons.org/licenses/by-nc-sa/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_17.yml deleted file mode 100644 index 690db797abb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_18.RULE index 440daf39376..5426afc19d8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/nd-nc/2.0 +--- + http://creativecommons.org/licenses/nd-nc/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_18.yml deleted file mode 100644 index e0173291494..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/nd-nc/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_19.RULE index a2d2faf8041..48739dfb53b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode +--- + https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_19.yml deleted file mode 100644 index 149b89ef7c3..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_2.RULE index b7dc0406f83..32a3659c617 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_2.RULE @@ -1,4 +1,11 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.0/ +--- + // This work is licensed under the Creative Commons // Attribution-NonCommercial-NoDerivs License. To view a copy of this license, // visit http://creativecommons.org/licenses/by-nc-nd/2.0/ or send a letter to -// Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. +// Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_2.yml deleted file mode 100644 index 3e15a88f2cb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_20.RULE index 0722c8ccef1..8daee363108 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.1/legalcode +--- + https://creativecommons.org/licenses/by-nc-nd/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_20.yml deleted file mode 100644 index 45f79908bd8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_21.RULE index 90958561eef..64b37eb4523 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.1/legalcode +--- + https://creativecommons.org/licenses/by-nc-sa/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_21.yml deleted file mode 100644 index b8141dde0e7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_22.RULE index 4a6e080de54..fe737fcc39e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_22.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-NoDerivs 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_22.yml deleted file mode 100644 index 38974287bb6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_23.RULE index 63514881eef..4ce952326c5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial No Derivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_23.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_24.RULE index e20b49e373a..56887c8e060 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-2.0 Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_24.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_25.RULE index 3f7828325cb..b3e0f30c856 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_25.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_25.yml deleted file mode 100644 index d12d06bcf91..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_26.RULE index 12016134337..dee90a67360 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_26.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_26.yml deleted file mode 100644 index d12d06bcf91..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_27.RULE index ace41188365..7e20b283b9a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic CC-BY-NC-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_27.yml deleted file mode 100644 index d12d06bcf91..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_28.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_28.RULE index b04288dfd63..62dac8ac48f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_28.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_28.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_28.yml deleted file mode 100644 index b450fdc4f9c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_29.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_29.RULE index 83412c61612..4de9970f584 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_29.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_29.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_29.yml deleted file mode 100644 index b450fdc4f9c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_3.RULE index 5f5fe4063af..5047330de98 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_3.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_30.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_30.RULE index 77ba5cb700c..b6e7015b404 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_30.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_30.yml deleted file mode 100644 index b450fdc4f9c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_31.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_31.RULE index 33007a9a313..7428dc6c91d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-2.0 Creative Commons Attribution Non Commercial No Derivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_31.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_31.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_32.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_32.RULE index 27d3adac24a..93ff3614bf8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-ND-2.0 +--- + https://licenses.nuget.org/CC-BY-NC-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_32.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_32.yml deleted file mode 100644 index 254b2e07bf5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-ND-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_33.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_33.RULE index 88966124f59..8d5a8d1a710 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_33.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_33.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_34.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_34.RULE index c8d7d453093..559c49818bd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_34.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-2.0 +--- + {{CC-BY-NC-ND-2.0}} https://spdx.org/licenses/CC-BY-NC-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_34.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_34.yml deleted file mode 100644 index 81bc1c7dc20..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_35.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_35.RULE index d3a4a0f9c9f..439f32d0c0b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-2.0 +--- + LICENSE {{CC-BY-NC-ND-2.0}} https://spdx.org/licenses/CC-BY-NC-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_35.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_35.yml deleted file mode 100644 index 81bc1c7dc20..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_4.RULE index 094da9de312..ed6b3d68348 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_4.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_5.RULE index 31287f9e9a1..db7da16d84d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_5.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_6.RULE index 4557642d5e2..d9b1c253a21 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_6.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_7.RULE index 7f9c700eae5..0db7aa25e39 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-NoDerivs 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_7.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_8.RULE index 0f35fd5944a..8844b86420d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-NoDerivs 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_8.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_9.RULE index ef8fded2ce3..d79b84a3ed8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_9.yml deleted file mode 100644 index 84f42999939..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button.RULE index a0b367680d8..5345246e0b5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nd-nc/ +--- + https://licensebuttons.net/l/nd-nc/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button.yml deleted file mode 100644 index 1df15cbde7f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nd-nc/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_1.RULE index 600e409ed9a..56210e9ebf0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nd-nc/2.0/ +--- + https://licensebuttons.net/l/nd-nc/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_1.yml deleted file mode 100644 index dd6ed2f8727..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nd-nc/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_2.RULE index ee8ec1b2573..49fb02dcadd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nc/2.0/ +--- + https://licensebuttons.net/l/nc/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_2.yml deleted file mode 100644 index fbedea44c3b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_license_button_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nc/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_licensebutton.RULE index 2af24e0a230..d9012dc31f4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-nd/2.0 +--- + https://licensebuttons.net/l/by-nc-nd/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_licensebutton.yml deleted file mode 100644 index c15229faf4a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-nd/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_1.RULE index 7058be2b753..3cd1c7c5f4e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-2.0 +--- + https://spdx.org/licenses/cc-by-nc-nd-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_1.yml deleted file mode 100644 index 1aa64f0fe00..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_2.RULE index 333fde24c12..2567b187e87 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-2.0.html +--- + https://spdx.org/licenses/cc-by-nc-nd-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_2.yml deleted file mode 100644 index a1ee9314b5a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-2.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_1.RULE index f4f0ed7dfe4..78e26f2bd28 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.0/us +--- + http://creativecommons.org/licenses/by-nc-nd/2.0/us \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_1.yml deleted file mode 100644 index 0a919695525..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.0/us diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_2.RULE index 50c58079a2d..fa554eedead 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.0/de +--- + http://creativecommons.org/licenses/by-nc-nd/2.0/de \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_2.yml deleted file mode 100644 index 5cca2361564..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.0/de diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_3.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_3.RULE index 09b6f94c406..a46f2ea292f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.0 +--- + https://creativecommons.org/licenses/by-nc-nd/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_3.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_3.yml deleted file mode 100644 index 7a18e6273dd..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.0_url_glc_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5.RULE index 9dcf9302420..a382947488d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode +--- + http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5.SPDX.RULE index 59ad2f4c45c..303abcbcb94 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5.SPDX.yml deleted file mode 100644 index ddf19f4efae..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5.yml deleted file mode 100644 index 307a6509a1d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_1.RULE index 0d2c31bd4c4..db7a4c1a2ac 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/2.5/ +--- + http://creativecommons.org/licenses/by-nc-nd/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_1.yml deleted file mode 100644 index 070b05be992..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_10.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_10.RULE index 7b5bb8f8801..133f3a3e9b5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_10.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_10.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_11.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_11.RULE index 50e7b843e57..b8f0562b62a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_11.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_11.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_12.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_12.RULE index 053b80aa3e0..de5cbbdbb40 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivs 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_12.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_12.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_13.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_13.RULE index d38b25e0c31..1bd90380ce6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivs 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_13.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_13.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_14.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_14.RULE index 90db02ded01..4b286f5bad7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 2.5 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_14.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_14.yml deleted file mode 100644 index 32312f450c3..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_15.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_15.RULE index e9482c22e59..a08998c50be 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode +--- + https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_15.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_15.yml deleted file mode 100644 index 65eeb995182..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_16.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_16.RULE index aceb868a83f..62b266e14df 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-NoDerivs 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_16.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_16.yml deleted file mode 100644 index 65dd3d65f8a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_17.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_17.RULE index d5e9464c65d..0eae096b8b8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial No Derivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_17.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_17.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_18.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_18.RULE index 2c32d71972b..76b9da1010e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-2.5 Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_18.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_18.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_19.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_19.RULE index 1e5d3dd6c9d..404b95167fb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_19.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_19.yml deleted file mode 100644 index d84fb51409a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_2.RULE index 0aaebddc1de..0a048851a77 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_2.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_20.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_20.RULE index 4d99bd9c53e..1a153f8dc4d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_20.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_20.yml deleted file mode 100644 index d84fb51409a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_21.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_21.RULE index a1e6130d057..8ee8f1f1e9d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic CC-BY-NC-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_21.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_21.yml deleted file mode 100644 index d84fb51409a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_22.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_22.RULE index b7894ffc429..0bca16a8374 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_22.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_22.yml deleted file mode 100644 index 191d9bf227c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_23.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_23.RULE index f9297fe5462..1b1bdf549ec 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_23.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_23.yml deleted file mode 100644 index 191d9bf227c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_24.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_24.RULE index 9d3af2a6473..096e6583a4f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_24.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_24.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_24.yml deleted file mode 100644 index 191d9bf227c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_25.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_25.RULE index 6d40fb311a5..c6b1a91f6c9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-2.5 Creative Commons Attribution Non Commercial No Derivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_25.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_25.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_26.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_26.RULE index a51fc9e30d2..deefd286ee9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-ND-2.5 +--- + https://licenses.nuget.org/CC-BY-NC-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_26.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_26.yml deleted file mode 100644 index 970c2c521b5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-ND-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_27.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_27.RULE index bd87e36e95b..f50e34d0a1a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_27.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_27.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_27.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_28.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_28.RULE index 5cbbb4d991e..6bfc6799325 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-2.5 +--- + LICENSE {{CC-BY-NC-ND-2.5}} https://spdx.org/licenses/CC-BY-NC-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_28.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_28.yml deleted file mode 100644 index 82e73bb5a97..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_29.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_29.RULE index d10409ecf18..ec8579274b2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_29.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-2.5 +--- + {{CC-BY-NC-ND-2.5}} https://spdx.org/licenses/CC-BY-NC-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_29.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_29.yml deleted file mode 100644 index 82e73bb5a97..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_3.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_3.RULE index defbdcea3c1..37b1d65802b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_3.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_3.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_4.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_4.RULE index 69014a8c4b2..af7cc69f09d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_4.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_4.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_5.RULE index c271a6df1cd..b33aee9e257 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_5.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_6.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_6.RULE index 0fc761d98ae..c8346d61729 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-NoDerivs 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_6.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_6.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_7.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_7.RULE index e5d6e9c716e..e463e06ddd4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-NoDerivs 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_7.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_7.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_8.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_8.RULE index a12f8e09b17..6c7ee083cd4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_8.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_8.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_9.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_9.RULE index 6bc05ec5e22..16d0c10bd8c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_9.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_9.yml deleted file mode 100644 index d6aae8eb372..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_licensebutton.RULE index b51492e7a9a..fd1e6b50774 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-nd/2.5 +--- + https://licensebuttons.net/l/by-nc-nd/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_licensebutton.yml deleted file mode 100644 index d6f6d37bbd3..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-nd/2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_1.RULE index 18cf28d0a3d..e0531a92e9b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-2.5 +--- + https://spdx.org/licenses/cc-by-nc-nd-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_1.yml deleted file mode 100644 index 295f1ccca48..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_2.RULE index 6d70df1c5f5..f9c8ef7cc5c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-2.5.html +--- + https://spdx.org/licenses/cc-by-nc-nd-2.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_2.yml deleted file mode 100644 index ce2f720955d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-2.5.html diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_glc_5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_glc_5.RULE index fb3a028cd33..ff2d55dc527 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_glc_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_glc_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/2.5 +--- + https://creativecommons.org/licenses/by-nc-nd/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_glc_5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_glc_5.yml deleted file mode 100644 index c6e0061939f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-2.5_url_glc_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_1.RULE index 255b24c5c7b..bfb56040915 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-de +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_1.yml deleted file mode 100644 index 06e073f1fe7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_2.RULE index 661f9d16137..0be49c58a43 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-de +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-3.0-DE Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_2.yml deleted file mode 100644 index 06e073f1fe7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_3.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_3.RULE index f39205a36ff..9792eafaef4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-ND-3.0-DE +--- + https://licenses.nuget.org/CC-BY-NC-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_3.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_3.yml deleted file mode 100644 index 6144323c0f0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-ND-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_4.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_4.RULE index 5b64f3de1cb..72d7df622e2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-de +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_4.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_4.yml deleted file mode 100644 index 06e073f1fe7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_5.RULE index 8fff51713a8..ec79f8e840d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_5.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-nd-3.0-de +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE +--- + LICENSE {{CC-BY-NC-ND-3.0-DE}} https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_5.yml deleted file mode 100644 index 44ee19f8c15..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-de -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_6.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_6.RULE index d151d20cabb..2943446344b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_6.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-nd-3.0-de +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE +--- + {{CC-BY-NC-ND-3.0-DE}} https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_6.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_6.yml deleted file mode 100644 index 44ee19f8c15..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-de_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-de -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_1.RULE index 3b5197b467b..9d6a653b42e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_1.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_10.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_10.RULE index c45a8ef0e48..f76ddb07d92 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Attribution Non Commercial No Derivatives 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_10.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_10.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_11.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_11.RULE index 9bf821e137e..286c8e91f17 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 3.0 IGO License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_11.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_11.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_12.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_12.RULE index 077097ac235..0e4cf9e0100 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_12.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_12.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_13.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_13.RULE index 5dc32072722..6cc86f96451 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 3.0 IGO License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_13.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_13.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_14.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_14.RULE index 1bc2af196c0..de55eb5e9b9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_14.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_14.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_15.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_15.RULE index 4b3238204e8..341f3bfc861 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Attribution Non Commercial NoDerivs 3.0 IGO License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_15.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_15.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_16.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_16.RULE index 24c286a6d44..098b9a1a895 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Attribution Non Commercial NoDerivs 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_16.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_16.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_17.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_17.RULE index 731be7a6276..3f41859d565 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_17.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_17.yml deleted file mode 100644 index 74be4822d9c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_18.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_18.RULE index aad135a98d8..6d3fd239973 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/igo +--- + http://creativecommons.org/licenses/by-nc-nd/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_18.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_18.yml deleted file mode 100644 index 22a9f618644..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_19.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_19.RULE index 9d797fce37b..6a073d4ea6d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode +--- + http://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_19.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_19.yml deleted file mode 100644 index 94a3216d9e8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_2.RULE index 943fdfa4914..7e1d485f96e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_2.yml deleted file mode 100644 index ca56e64fdd9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_20.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_20.RULE index dd50468c150..c2d9b06c50e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/igo +--- + https://creativecommons.org/licenses/by-nc-nd/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_20.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_20.yml deleted file mode 100644 index 1248e417728..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_21.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_21.RULE index 9650bfda4af..b608c890df2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode +--- + https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_21.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_21.yml deleted file mode 100644 index 725fce8f84b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_22.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_22.RULE index 936cd4208fd..9d54a56a88d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-3.0-IGO Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_22.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_22.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_23.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_23.RULE index 78ca6b8e2a2..f3dca88d790 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_23.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_23.yml deleted file mode 100644 index f00c9632e02..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_24.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_24.RULE index b5c85ed112f..9a01bda31cb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_24.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO CC-BY-NC-ND-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_24.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_24.yml deleted file mode 100644 index f00c9632e02..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_25.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_25.RULE index 7b7cd6e2487..86e7f258dbc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_25.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-ND-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_25.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_25.yml deleted file mode 100644 index 10e72993317..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_26.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_26.RULE index 171f500a3be..4c667dce3c2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_26.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_26.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_26.yml deleted file mode 100644 index 10e72993317..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_27.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_27.RULE index 7c96a573e94..19331bd4a28 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-ND-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_27.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_27.yml deleted file mode 100644 index 10e72993317..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_28.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_28.RULE index db032564d5e..667429ab581 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-ND-3.0-IGO +--- + https://licenses.nuget.org/CC-BY-NC-ND-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_28.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_28.yml deleted file mode 100644 index a6c41113be9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-ND-3.0-IGO diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_29.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_29.RULE index e4cc6b4e8ed..f57d1041caa 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-ND-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_29.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_29.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_3.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_3.RULE index d0d06d417c7..d88c8b65866 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 3.0 IGO License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_3.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_3.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_30.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_30.RULE index 0196448999d..c659f8a7f82 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_30.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO +--- + LICENSE {{CC-BY-NC-ND-3.0-IGO}} https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_30.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_30.yml deleted file mode 100644 index cfa30a5d470..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_31.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_31.RULE index e832980034c..08786b7f551 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_31.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO +--- + {{CC-BY-NC-ND-3.0-IGO}} https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_31.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_31.yml deleted file mode 100644 index cfa30a5d470..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_31.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_4.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_4.RULE index 70b6da7037e..1f4c61cb561 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_4.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_4.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_5.RULE index 6a1aab3880d..24de7b0eea3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 3.0 IGO License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_5.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_6.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_6.RULE index c90016cdc45..6efa04f3ab4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_6.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_6.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_7.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_7.RULE index 2f082d4f8a0..a7b04fcec43 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial NoDerivs 3.0 IGO License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_7.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_7.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_8.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_8.RULE index 8c340301e86..06ecf6cbd99 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial NoDerivs 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_8.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_8.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_9.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_9.RULE index e3bc963c2f1..44c6c05c59c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Attribution Non Commercial No Derivatives 3.0 IGO License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_9.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_9.yml deleted file mode 100644 index 22066b66c2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0-igo_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0.RULE index f01de026de3..ddb6532a217 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/ +--- + http://creativecommons.org/licenses/by-nc-nd/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0.SPDX.RULE index 74c8e1d3b1a..69bcd9a29a7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0.SPDX.yml deleted file mode 100644 index b9c57761f3f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0.yml deleted file mode 100644 index 2a9ab1ff0b7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_1.RULE index 72ec3e317a4..8e5d3307a00 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode +--- + http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_1.yml deleted file mode 100644 index caf7eb8beb0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_10.RULE index 9037e479af5..0f50e755d01 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_notice: yes +relevance: 100 +--- + Copies of this book may be redistributed, verbatim, and for non-commercial purposes. The license for this book is by-nc-nd license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_10.yml deleted file mode 100644 index 86cadb4ae9e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_11.RULE index e532b86c307..6a6f488062e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_notice: yes +relevance: 100 +--- + The license for this book is by-nc-nd license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_11.yml deleted file mode 100644 index 86cadb4ae9e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_12.RULE index 3f057563a92..0d1ccc115e0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_12.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/ +--- + "license": "Attribution-NonCommercial-NoDerivs 3.0 Unported", "licenseURL": "http://creativecommons.org/licenses/by-nc-nd/3.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_12.yml deleted file mode 100644 index 2a9ab1ff0b7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_13.RULE index 485cadd8970..075fddfa55f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + "license": "Attribution-NonCommercial-NoDerivs 3.0 Unported", \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_13.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_14.RULE index 79b5975936e..2a653ab1906 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 3.0 Unported", \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_14.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_15.RULE index 6a7d72098de..04e2ec56d91 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_15.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_16.RULE index d1384bbea9d..6019066da05 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/ +--- + "licenseURL": "http://creativecommons.org/licenses/by-nc-nd/3.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_16.yml deleted file mode 100644 index 2a9ab1ff0b7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_17.RULE index 3861a038d6d..4dc5057eabb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/ +--- + "licenseURL": "https://creativecommons.org/licenses/by-nc-nd/3.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_17.yml deleted file mode 100644 index f43dc13a4d6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_18.RULE index 60db8aa13c6..1620f821cbf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/ +--- + https://creativecommons.org/licenses/by-nc-nd/3.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_18.yml deleted file mode 100644 index f43dc13a4d6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_19.RULE index 2c7eed51c71..df81fda7a8f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_19.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_2.RULE index 3ce810bfbc5..02a0fa732fb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_2.yml deleted file mode 100644 index 03b15a1b0dc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_20.RULE index b2cea3563c1..fd8cf33f02e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_20.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_21.RULE index b2b9f0ccb6b..7141ab99e5e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_21.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_22.RULE index aaf43e46c42..e2fa6081c2e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-No Derivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_22.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_23.RULE index 7870add2e6c..acbca10b83f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-NoDerivs 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_23.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_24.RULE index 4afc518ac70..fb7e127cf56 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-NoDerivs 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_24.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_25.RULE index b74bfb84654..70cf3d96240 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivs 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_25.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_26.RULE index 21e1bf884c1..a51bb371c01 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_26.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_27.RULE index bdba5b3fc05..0c3c25aee1e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-No Derivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_27.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_28.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_28.RULE index d200756cd11..143ed433b44 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivs 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_28.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_28.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_29.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_29.RULE index 2877bd3f61c..11dd1f1ad44 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivs 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_29.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_29.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_3.RULE index 21edb02a3bf..b0a36bf893d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_notice: yes +relevance: 100 +--- + It is released under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 United States License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_3.yml deleted file mode 100644 index 86cadb4ae9e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_30.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_30.RULE index cca61e83116..f61d755e04f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_30.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_30.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_30.yml deleted file mode 100644 index ebca18caa5d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_31.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_31.RULE index c8fae366beb..23b80ca0738 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_31.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_31.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_31.yml deleted file mode 100644 index 5f95b9981ef..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_32.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_32.RULE index 15eec93327d..523e2500c15 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode +--- + https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_32.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_32.yml deleted file mode 100644 index 337cac2a5ce..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_33.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_33.RULE index 0439d7a550b..92c1b7ab1cc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_33.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_33.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_33.yml deleted file mode 100644 index 09725c2c7b5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_34.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_34.RULE index 81f3607035f..013e7ff0414 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_34.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_34.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_34.yml deleted file mode 100644 index 03b15a1b0dc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_35.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_35.RULE index 2542100deab..bb45377c75e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_35.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_35.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_36.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_36.RULE index b7e88f74fa3..04e80df44c6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-3.0 Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_36.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_36.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_37.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_37.RULE index 8ff47b81494..96100d7fd8b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_37.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_37.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_37.yml deleted file mode 100644 index 7517ba1fcdf..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_38.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_38.RULE index 3235a718381..2e0e6843204 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_38.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_38.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_38.yml deleted file mode 100644 index 7517ba1fcdf..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_38.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_39.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_39.RULE index d44bfe10766..7b4a3ccca92 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_39.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported CC-BY-NC-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_39.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_39.yml deleted file mode 100644 index 7517ba1fcdf..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_39.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_4.RULE index c78c24de8d9..b58fcd757c5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_4.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_40.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_40.RULE index 45d01ff825f..4758e980a6f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_40.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_40.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_40.yml deleted file mode 100644 index 9daaf97a9dd..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_40.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_41.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_41.RULE index c33555e21dd..b3c440c7f34 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_41.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_41.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_41.yml deleted file mode 100644 index 9daaf97a9dd..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_42.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_42.RULE index 1a4936169da..9e2915b96f8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_42.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_42.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_42.yml deleted file mode 100644 index 9daaf97a9dd..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_42.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_43.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_43.RULE index 81d324302c9..c3830580323 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-3.0 Creative Commons Attribution Non Commercial No Derivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_43.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_43.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_44.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_44.RULE index f7ac7c730a2..92467152b1d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_44.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-ND-3.0 +--- + https://licenses.nuget.org/CC-BY-NC-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_44.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_44.yml deleted file mode 100644 index 46a7ff8f8c6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-ND-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_45.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_45.RULE index 1a4ed6b3098..2978840d08b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_45.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_45.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_46.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_46.RULE index d0e512eb49f..908893eb477 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_46.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-3.0 +--- + LICENSE {{CC-BY-NC-ND-3.0}} https://spdx.org/licenses/CC-BY-NC-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_46.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_46.yml deleted file mode 100644 index d0f809f6821..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_47.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_47.RULE index f3e7eda88ab..ea248ea9023 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_47.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-3.0 +--- + {{CC-BY-NC-ND-3.0}} https://spdx.org/licenses/CC-BY-NC-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_47.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_47.yml deleted file mode 100644 index d0f809f6821..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_5.RULE index 2bbc7374bef..e8d3bcaf80d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 United States License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_5.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_6.RULE index 9b25e086463..d5c1f988791 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_6.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/3.0/ +--- + Copyright: Creative Commons Attribution-Noncommercial-No Derivative Works License https://creativecommons.org/licenses/by-nc-nd/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_6.yml deleted file mode 100644 index e51ab838a8b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_7.RULE index 9d8bf9d14ad..6d3052cec04 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Copyright: Creative Commons Attribution-Noncommercial-No Derivative Works License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_7.yml deleted file mode 100644 index 1b6915a66b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_8.RULE index f65a300c563..e977b041ff4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_notice: yes +relevance: 100 +--- + License: CC Attribution-Noncommercial-No Derivate 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_8.yml deleted file mode 100644 index 86cadb4ae9e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_9.RULE index 90283ad5d9c..d335d715df7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/ +--- + License: CC Attribution-Noncommercial-No Derivate 3.0 http://creativecommons.org/licenses/by-nc-nd/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_9.yml deleted file mode 100644 index 10ca2e2a367..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_1.RULE index 35881f61f83..dc0ddc90af3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-3.0 AND proprietary-license +is_license_reference: yes +relevance: 100 +--- + CC BY-NC-ND 3.0 with additional clauses \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_1.yml deleted file mode 100644 index 54b2623aa3d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 AND proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_2.RULE index 3594f9416e6..c5fe2d177a4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + CC BY-NC-ND 3.0 with additional clauses Everything including text and images in this project are protected by the copyright laws. diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_2.yml deleted file mode 100644 index 34c7bd00346..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_licensebutton.RULE index 1821cf0912d..16d80b93690 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-nd/3.0 +--- + https://licensebuttons.net/l/by-nc-nd/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_licensebutton.yml deleted file mode 100644 index ded99915353..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-nd/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_or_commercial-license.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_or_commercial-license.RULE index 65a3e4559bc..8f4b2613783 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_or_commercial-license.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_or_commercial-license.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-nc-nd-3.0 OR commercial-license +is_license_notice: yes +minimum_coverage: 30 +--- + It is released under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 United States License and is currently available for early purchase via O'Reilly if you would like to support the project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_or_commercial-license.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_or_commercial-license.yml deleted file mode 100644 index d7326b2968c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_or_commercial-license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 OR commercial-license -is_license_notice: yes -minimum_coverage: 30 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_1.RULE index 23863db2b33..de93e520d35 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-3.0 +--- + https://spdx.org/licenses/cc-by-nc-nd-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_1.yml deleted file mode 100644 index ae48e08b60d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_2.RULE index d55c784ed21..66459994042 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-3.0.html +--- + https://spdx.org/licenses/cc-by-nc-nd-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_2.yml deleted file mode 100644 index 7a5fd1a42db..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-3.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.RULE index 20214bc2f6b..4b999220688 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +--- + Attribution-NonCommercial-NoDerivatives 4.0 International ======================================================================= diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.RULE index 808527322a7..c0461ec82c7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.yml deleted file mode 100644 index d707c4880b4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.yml deleted file mode 100644 index 18c2620525c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_1.RULE index 8c44e3f255a..77599d958c6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 100 +--- + The article text, contained in the index.html file, is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International license. For the full text of the license, please see the Creative Commons site. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_1.yml deleted file mode 100644 index f9af455c0ff..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.RULE index 794ef1f00cf..5af1ddaedaf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_text: yes +--- + Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. @@ -86,4 +91,4 @@ No term or condition of this Public License will be waived and no failure to com Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. -Creative Commons may be contacted at creativecommons.org. +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.yml deleted file mode 100644 index 58382e4fa61..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_11.RULE index 2cce5c1a8f1..d2a87622608 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/4.0 +--- + http://creativecommons.org/licenses/by-nc-nd/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_11.yml deleted file mode 100644 index 1351f6e2e7f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_12.RULE index 0aa9c90c10b..f15799c22ca 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/4.0/ +--- + This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 4.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_12.yml deleted file mode 100644 index b7cab9f5558..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_13.RULE index 90046953458..a00d49efeb3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 4.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_13.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_14.RULE index 73c0b711624..d9b910ac007 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_14.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_15.RULE index 0c987e1ebd2..a4613033afb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivs 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_15.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_16.RULE index 597ef3c7b65..26db9e4565a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 100 +--- + This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 4.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_16.yml deleted file mode 100644 index f9af455c0ff..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_17.RULE index d95881c44ef..bd357d8a04c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/4.0/ +--- + http://creativecommons.org/licenses/by-nc-nd/4.0/ Creative Commons Attribution-NonCommercial-NoDerivs 4.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_17.yml deleted file mode 100644 index b7cab9f5558..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_18.RULE index 1d4cd7260b6..125e0f866be 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/ +--- + Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 4.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_18.yml deleted file mode 100644 index 152674048ad..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_19.RULE index f412830b2ec..a6a24872c22 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0 +--- + https://creativecommons.org/licenses/by-nc-nd/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_19.yml deleted file mode 100644 index 9189a82f8ef..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_2.RULE index 1adc4ed3917..4d168a22d42 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_2.yml deleted file mode 100644 index f9af455c0ff..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_20.RULE index 8d3d0fbfcee..1ae5750dc3c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/ +--- + This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 4.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_20.yml deleted file mode 100644 index adfae49248c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_21.RULE index 8076ef9ffc3..996e2660ab3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/ +--- + https://creativecommons.org/licenses/by-nc-nd/4.0/ Creative Commons Attribution-NonCommercial-NoDerivs 4.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_21.yml deleted file mode 100644 index adfae49248c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_22.RULE index 1c13dd63b18..213345385ad 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + CCBYNCNDv4 – Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_22.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_23.RULE index 7abfb37cd1c..96c92472e58 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + CCBYNCNDv4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_23.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_24.RULE index 62feae996b4..aab24bf12fd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_24.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.RULE index 2517555ba0d..6a36443c37e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en +--- + > You can use and share the unmodified images freely for non-commercial use. > [![CC BY-NC-ND](images/cc-by-nc-nd.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.yml deleted file mode 100644 index 089ea129178..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.RULE index c379c83a154..3e24f9e741d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en +--- + > [![CC BY-NC-ND](images/cc-by-nc-nd.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.yml deleted file mode 100644 index 030306f7932..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.RULE index 23899bfcc6a..68ee74e229d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + > [![CC BY-NC-ND] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_28.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_28.RULE index 6ebde16d7b5..972687288f0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en +--- + https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_28.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_28.yml deleted file mode 100644 index 030306f7932..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_29.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_29.RULE index 789dbb3a246..ce945901ab4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution-NonCommercial-NoDerivs License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_29.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_29.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_3.RULE index e03d63414d3..f0408367602 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_3.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_30.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_30.RULE index 5d9f8329e49..37bd8719e2a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution-NonCommercial-NoDerivs \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_30.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_30.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_31.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_31.RULE index bcfdd1711c1..96961b448dd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Attribution-NonCommercial-NoDerivs License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_31.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_31.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_32.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_32.RULE index 9f4ccd38d21..7a7f89a2a1d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Attribution-NonCommercial-NoDerivs \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_32.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_32.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_33.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_33.RULE index 7b0e04db914..9c7aec23491 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution Non Commercial No Derivatives License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_33.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_33.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_34.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_34.RULE index ad4d510aefc..afc3ebb6844 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution Non Commercial No Derivatives \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_34.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_34.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_35.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_35.RULE index 5d4df71731a..9c90d353671 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Attribution Non Commercial No Derivatives License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_35.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_35.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_36.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_36.RULE index 01317637d7d..fac362e567e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_36.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +--- + Attribution Non Commercial No Derivatives \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_36.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_36.yml deleted file mode 100644 index c62c6314f82..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_37.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_37.RULE index 3aec2d48927..510e3b22d32 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_37.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_37.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_38.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_38.RULE index 2d44b7eca67..e6163148aeb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-NoDerivatives International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_38.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_38.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_39.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_39.RULE index 14b853a9faa..46a2ad42685 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution-NonCommercial-No Derivatives License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_39.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_39.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_4.RULE index 82935890824..a2ee424d7ec 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 90 +--- + The benchmark is distributed under the Creative Commons, Attribution-NonCommercial-NoDerivatives. This license includes the benchmark database and its derivatives. For attribution, please cite this page, and our publications below. This data is provided free of charge for non-commercial and academic diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_4.yml deleted file mode 100644 index 1adbcf54e60..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_40.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_40.RULE index 9d599185373..372ee6e574f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution-NonCommercial-No Derivatives \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_40.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_40.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_41.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_41.RULE index 6cfda343d9e..c9ddc3f00e5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Attribution-NonCommercial-No Derivatives License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_41.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_41.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_42.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_42.RULE index 1d55ca182a1..78bcc1dc0d4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Attribution-NonCommercial-No Derivatives \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_42.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_42.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_43.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_43.RULE index 68c811717b6..732ccdafb24 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution Non Commercial NoDerivs License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_43.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_43.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_44.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_44.RULE index 906fed6813b..7ff79c7ec59 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution Non Commercial NoDerivs \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_44.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_44.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_45.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_45.RULE index ba06223d90f..51c249a2b90 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Attribution Non Commercial NoDerivs License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_45.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_45.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_46.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_46.RULE index d7844d59ab5..af13dc11a58 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_46.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 99 +--- + Attribution Non Commercial NoDerivs \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_46.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_46.yml deleted file mode 100644 index ae2d805fdc4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_47.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_47.RULE index d4057b54699..748ef95fe23 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_47.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_47.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_47.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_48.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_48.RULE index 59aecc74e73..efdc9b66960 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-NoDerivatives International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_48.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_48.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_49.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_49.RULE index 5c8a85b4e24..e12a89ecfc3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_49.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode +--- + http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_49.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_49.yml deleted file mode 100644 index 8b5755552c7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_5.RULE index 3c9064aad85..efc8f1db923 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 90 +--- + distributed under the Creative Commons, Attribution-NonCommercial-NoDerivatives. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_5.yml deleted file mode 100644 index 1adbcf54e60..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_50.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_50.RULE index d4063a13f58..b59667bfcf2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_50.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_50.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_50.yml deleted file mode 100644 index 0643aaac328..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_51.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_51.RULE index 33d6a67e1c5..06c6d69f69c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode +--- + https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_51.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_51.yml deleted file mode 100644 index 51ea8e11dc8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_52.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_52.RULE index 08709c0eaac..69e0578cefa 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_52.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_52.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_52.yml deleted file mode 100644 index 00c66c08bc5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.RULE index 66cd25bc8d1..9fce211b309 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_text: yes +--- + Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.yml deleted file mode 100644 index 58382e4fa61..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.RULE index 6f8ec259edc..f273c9b9074 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial No Derivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.RULE index b595ffe006e..6e7b17ad622 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-4.0 Creative Commons Attribution Non Commercial No Derivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.RULE index 89b1be97a27..5000418dc21 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.yml deleted file mode 100644 index d85b403e13a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.RULE index ff2107ee6e7..db1517ab396 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial No Derivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.yml deleted file mode 100644 index d85b403e13a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.RULE index d4d8708e251..b081fa6a0f4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial No Derivatives 4.0 International CC-BY-NC-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.yml deleted file mode 100644 index d85b403e13a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.RULE index 4d4d40f2c38..03220918ab2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.yml deleted file mode 100644 index da1dfb49487..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.RULE index 7cf9287b98b..cd95fd29599 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 100 +--- + distributed under Creative Commons license Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.yml deleted file mode 100644 index f9af455c0ff..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.RULE index d29599a9d49..a66b4aba4f7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial No Derivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.yml deleted file mode 100644 index da1dfb49487..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.RULE index f65db4f3f24..5c431f1c89b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.yml deleted file mode 100644 index da1dfb49487..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.RULE index a58dc85f98c..3fc6770b451 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-ND-4.0 Creative Commons Attribution Non Commercial No Derivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.RULE index c746ae07728..434ae96b3c8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0/ +--- + all content is licensed under https://creativecommons.org/licenses/by-nc-nd/4.0/ Creative Commons CC BY-NC-ND 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.yml deleted file mode 100644 index e5641e76de7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_64.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_64.RULE index 88db7d043e1..c9413c81a8e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_64.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_64.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-ND-4.0 +--- + https://licenses.nuget.org/CC-BY-NC-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_64.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_64.yml deleted file mode 100644 index 7e97f429354..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-ND-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.RULE index 49fa84a84fe..baeb22832fe 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_66.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_66.RULE index e9f1c4c4e4f..30242a25806 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_66.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_66.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-4.0 +--- + {{CC-BY-NC-ND-4.0}} https://spdx.org/licenses/CC-BY-NC-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_66.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_66.yml deleted file mode 100644 index 2bbbe3eef26..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_67.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_67.RULE index 62a00f10df4..5ea272f0ec9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_67.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_67.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-ND-4.0 +--- + LICENSE {{CC-BY-NC-ND-4.0}} https://spdx.org/licenses/CC-BY-NC-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_67.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_67.yml deleted file mode 100644 index 2bbbe3eef26..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-ND-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.RULE index 12550e75f96..948ab508c4a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons license Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_8.RULE index 2e1f2e93357..e17fc25df7c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons license Attribution-NonCommercial-NoDerivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_8.yml deleted file mode 100644 index 07d97b07118..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_9.RULE index 76ea485612f..2fa9a43d6ef 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/4.0/ +--- + Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 4.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_9.yml deleted file mode 100644 index 6737cd7194c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_licensebutton.RULE index f42f9147e6d..99470343b70 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-nd/4.0 +--- + https://licensebuttons.net/l/by-nc-nd/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_licensebutton.yml deleted file mode 100644 index c892b5c063d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-nd/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_1.RULE index 1459cc1be47..a7e11492a15 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-4.0 +--- + https://spdx.org/licenses/cc-by-nc-nd-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_1.yml deleted file mode 100644 index 1be23a66af4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_2.RULE index 9eb35395fca..753ac0c45c3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-nd-4.0.html +--- + https://spdx.org/licenses/cc-by-nc-nd-4.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_2.yml deleted file mode 100644 index 361bae3dd76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-nd-4.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.RULE index 49ac758e3ec..0964e1da02a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0 +--- + [![License: CC BY-NC-ND 4.0](https://licensebuttons.net/l/by-nc-nd/4.0/80x15.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.yml deleted file mode 100644 index 18bf034ae9a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.RULE index 9b80463ec99..3c2d9267013 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-nd/4.0 + - https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg +--- + [![License: CC BY-NC-ND 4.0](https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.yml b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.yml deleted file mode 100644 index caef7f177f2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-nd/4.0 - - https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0.RULE index fc75779f3d3..9ee12a81ebb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode +--- + http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0.SPDX.RULE index 2a21801ffb5..4cced0907b6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0.SPDX.yml deleted file mode 100644 index de3f34756a4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0.yml deleted file mode 100644 index ab96dfbec60..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_1.RULE index 45da59d6b7d..aa99cbcc132 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/1.0/ +--- + http://creativecommons.org/licenses/by-nc-sa/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_1.yml deleted file mode 100644 index b8ad189bfdc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_10.RULE index 9ae2658b441..e327b48a48a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 1.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_10.yml deleted file mode 100644 index 9572b04b65c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_11.RULE index 9321d42a534..72ad4ad4bd6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/nc-sa/1.0/legalcode +--- + http://creativecommons.org/licenses/nc-sa/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_11.yml deleted file mode 100644 index 3c12db90d56..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/nc-sa/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_12.RULE index 1988caa7e2c..e44e8d514cf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode +--- + https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_12.yml deleted file mode 100644 index bec5c4b75a8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_13.RULE index 0bbd45cb276..c454b764b10 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nc-sa/1.0 +--- + https://creativecommons.org/licenses/nc-sa/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_13.yml deleted file mode 100644 index b60f5aa1c32..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nc-sa/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_14.RULE index 0e79f28ba99..ff21b9570fb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nc-sa/1.0/legalcode +--- + https://creativecommons.org/licenses/nc-sa/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_14.yml deleted file mode 100644 index c8e9c731738..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nc-sa/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_15.RULE index 6125495d2fe..58935d6d549 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-ShareAlike 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_15.yml deleted file mode 100644 index 3e6a1085b60..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_16.RULE index 4c71066fe9a..32ceeae87a0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-1.0 Creative Commons Attribution Non Commercial Share Alike 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_16.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_17.RULE index 8ee65074169..e80e3c97d48 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_17.yml deleted file mode 100644 index 30ca05ad1d1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_18.RULE index f343c63eb72..b035faba90d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial Share Alike 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_18.yml deleted file mode 100644 index 30ca05ad1d1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_19.RULE index b9bdc986e29..d99fb71b448 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 1.0 Generic CC-BY-NC-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_19.yml deleted file mode 100644 index 30ca05ad1d1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_2.RULE index 3e7105376c3..fefd5fe5d46 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_2.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_20.RULE index c55844a3598..252d15410b6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_20.yml deleted file mode 100644 index da7fe5200e4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_21.RULE index d4e67b6a4ef..f152edc52c4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial Share Alike 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_21.yml deleted file mode 100644 index da7fe5200e4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_22.RULE index 38854ca22ee..6b8a3660575 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_22.yml deleted file mode 100644 index da7fe5200e4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_23.RULE index 972810f2f9c..84ac61bb1d8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-1.0 Creative Commons Attribution Non Commercial Share Alike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_23.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_24.RULE index 4291502e3c7..ca1c87c4409 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-1.0 +--- + https://licenses.nuget.org/CC-BY-NC-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_24.yml deleted file mode 100644 index 6178031e709..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_25.RULE index 3b936fc56b0..24779804c62 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_25.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_26.RULE index a39e0de25aa..561fd202828 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-1.0 +--- + {{CC-BY-NC-SA-1.0}} https://spdx.org/licenses/CC-BY-NC-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_26.yml deleted file mode 100644 index 7e87bdb2204..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_27.RULE index 8d40978bd73..e80a407fb6b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-1.0 +--- + LICENSE {{CC-BY-NC-SA-1.0}} https://spdx.org/licenses/CC-BY-NC-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_27.yml deleted file mode 100644 index 7e87bdb2204..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_3.RULE index 8cd1c684f27..84a6f351f42 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_3.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_4.RULE index 73cc396fb95..848570255ae 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_4.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_5.RULE index 93f25bcefbe..42f520dd091 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_5.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_6.RULE index c0435732cdb..2c2bed7faca 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_6.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_7.RULE index 3aa6a5b9bef..db6e86a7e3d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_7.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_8.RULE index a7bf03bfd6d..c8142ecf8a0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_8.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_9.RULE index bd0fefa11cb..e9450e0948e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_9.yml deleted file mode 100644 index 1243756ec35..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_license_button.RULE index 55577582baf..849e7d8ffbb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nc-sa/1.0/ +--- + https://licensebuttons.net/l/nc-sa/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_license_button.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_license_button.yml deleted file mode 100644 index 8c387fb3a0c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nc-sa/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_licensebutton.RULE index 36fbe42453c..b70121c6f35 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-sa/1.0 +--- + https://licensebuttons.net/l/by-nc-sa/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_licensebutton.yml deleted file mode 100644 index 9fef00be63c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-sa/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_1.RULE index b6a061fbfec..12b4ef53dfd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-1.0 +--- + https://spdx.org/licenses/cc-by-nc-sa-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_1.yml deleted file mode 100644 index 0a2404d70f8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_2.RULE index e83e4d577f1..dcc8c2f66c0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-1.0.html +--- + https://spdx.org/licenses/cc-by-nc-sa-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_2.yml deleted file mode 100644 index 632164166da..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-1.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_glc_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_glc_11.RULE index 1711d4e6efd..6c219db2245 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_glc_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_glc_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/1.0 +--- + https://creativecommons.org/licenses/by-nc-sa/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_glc_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_glc_11.yml deleted file mode 100644 index 4c4af1b62b3..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-1.0_url_glc_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_1.RULE index ad6c5bc3857..de8b6d55ede 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0-fr +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-2.0-FR Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_1.yml deleted file mode 100644 index 112c21ec1b5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-fr -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_2.RULE index 16933806071..16d4561d04c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0-fr +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_2.yml deleted file mode 100644 index 112c21ec1b5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-fr -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_3.RULE index 9f50b6140c3..943afdb19db 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0-fr +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-2.0-FR +--- + https://licenses.nuget.org/CC-BY-NC-SA-2.0-FR \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_3.yml deleted file mode 100644 index 1daed6af20d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-fr -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-2.0-FR diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_4.RULE index a8cab2d35eb..7df394461be 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0-fr +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-2.0-FR \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_4.yml deleted file mode 100644 index 112c21ec1b5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-fr -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_5.RULE index d6c1f3a56a8..09f2a51f457 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_5.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-2.0-fr +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR +--- + LICENSE {{CC-BY-NC-SA-2.0-FR}} https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_5.yml deleted file mode 100644 index aa5c55312b0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-fr -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_6.RULE index 36c1e28105a..fbf41c370b8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_6.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-2.0-fr +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR +--- + {{CC-BY-NC-SA-2.0-FR}} https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_6.yml deleted file mode 100644 index aa5c55312b0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-fr_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-fr -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_1.RULE index ccf1117749d..36aee6300e0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_1.yml deleted file mode 100644 index 4934d3ec48a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_10.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_10.RULE index 6cdd3158c8c..0682c88d8cf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_10.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK +--- + {{CC-BY-NC-SA-2.0-UK}} https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_10.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_10.yml deleted file mode 100644 index 81efb007a93..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_11.RULE index 0dd84ae201a..957c2af6f16 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_11.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK +--- + LICENSE {{CC-BY-NC-SA-2.0-UK}} https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_11.yml deleted file mode 100644 index 81efb007a93..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_2.RULE index 05e1652f000..d322919457f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_2.RULE @@ -1 +1,6 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_reference: yes +--- + CC-BY-NC-SA-2.0-UK Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_2.yml deleted file mode 100644 index e3db88cf44b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_3.RULE index a107de031b4..7fddbcb490f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_3.yml deleted file mode 100644 index 01d70977177..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_4.RULE index 2fe990828e5..dd0c45d7a0a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales CC-BY-NC-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_4.yml deleted file mode 100644 index 02cae9e2feb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_5.RULE index bbd27ff72da..9c897b6cae9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_5.yml deleted file mode 100644 index 97077672a23..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_6.RULE index 4a420eddc46..6049c36164b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_6.yml deleted file mode 100644 index 97077672a23..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_7.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_7.RULE index 2715861fe73..c17f671c8cb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_7.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_7.yml deleted file mode 100644 index 97077672a23..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_8.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_8.RULE index 02a1f7a3acf..fd6c651dc76 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-2.0-UK +--- + https://licenses.nuget.org/CC-BY-NC-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_8.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_8.yml deleted file mode 100644 index 6cd5e5c401d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-2.0-UK diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_9.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_9.RULE index 5a5f738c268..1a0df98bc13 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0-uk +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_9.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_9.yml deleted file mode 100644 index 4934d3ec48a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0-uk_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0-uk -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0.RULE index ec0a5375684..eee0a796f7e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.0/ +--- + http://creativecommons.org/licenses/by-nc-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0.SPDX.RULE index 28801577d62..176b56392d4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0.SPDX.yml deleted file mode 100644 index 81cfff3154d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0.yml deleted file mode 100644 index 99bcbac0d50..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_1.RULE index 410bba433a5..3da6900ed22 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode +--- + http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_1.yml deleted file mode 100644 index 1c6fcaefa71..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_10.RULE index d6a12a2c08b..e7d03295807 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_10.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_11.RULE index 72bf334a56c..ed70b7d0963 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_11.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_12.RULE index 38ee9be6978..cf01f213aac 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_12.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_13.RULE index 03ff47a0ec8..d0677b43904 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_13.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_14.RULE index 1b775daa7d1..138598953df 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_14.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_15.RULE index 502d7aad5c2..44ccf8ec6f2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_15.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_16.RULE index 4d8a5a91cee..dc1a60c400d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_16.yml deleted file mode 100644 index bac96727f3a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_17.RULE index c1faf237be2..eab8869a52c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/Carthage/Carthage/master/LICENSE.md +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0 +--- + Header backdrop photo is released under the [Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)](https://creativecommons.org/licenses/by-nc-sa/2.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_17.yml deleted file mode 100644 index adb21d07f2e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/Carthage/Carthage/master/LICENSE.md -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_18.RULE index 9b63a8af151..a64ec581714 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/Carthage/Carthage/master/LICENSE.md +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0 +--- + released under the [Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)](https://creativecommons.org/licenses/by-nc-sa/2.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_18.yml deleted file mode 100644 index adb21d07f2e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/Carthage/Carthage/master/LICENSE.md -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_19.RULE index ec952025a77..6755bb9a876 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_19.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/Carthage/Carthage/master/LICENSE.md +--- + released under the [Attribution-NonCommercial-ShareAlike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_19.yml deleted file mode 100644 index 0056e288a2c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/Carthage/Carthage/master/LICENSE.md diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_2.RULE index 00d4136a587..6b091bbf5c5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_2.RULE @@ -1 +1,8 @@ -is released under the [Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)](https://creativecommons.org/licenses/by-nc-sa/2.0/) license. \ No newline at end of file +--- +license_expression: cc-by-nc-sa-2.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0 +--- + +is released under the [Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)](https://creativecommons.org/licenses/by-nc-sa/2.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_2.yml deleted file mode 100644 index 356c78faeed..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_20.RULE index 411179028fb..03eb54fbb8d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/nc-sa/2.0/legalcode +--- + http://creativecommons.org/licenses/nc-sa/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_20.yml deleted file mode 100644 index a672ce93991..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/nc-sa/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_21.RULE index d3938696ca0..3598e230a0f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode +--- + https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_21.yml deleted file mode 100644 index d35a62e58ac..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_22.RULE index ec3fb6dca59..58a6f2852a1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nc-sa/2.0/legalcode +--- + https://creativecommons.org/licenses/nc-sa/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_22.yml deleted file mode 100644 index bd3623a7318..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nc-sa/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_23.RULE index f825aed332b..dfc2a9930e4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_23.yml deleted file mode 100644 index 479bb6c290a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_24.RULE index 5599a8a6461..540b67f6ec7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-2.0 Creative Commons Attribution Non Commercial Share Alike 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_24.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_25.RULE index 86d0f8e931f..57ce55a9688 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_25.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_25.yml deleted file mode 100644 index b0f8cf2587b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_26.RULE index 16209972708..13038791706 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_26.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial Share Alike 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_26.yml deleted file mode 100644 index b0f8cf2587b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_27.RULE index 1330397b9ee..97794c0226e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 2.0 Generic CC-BY-NC-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_27.yml deleted file mode 100644 index b0f8cf2587b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_28.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_28.RULE index 352ce274ff9..8252ccad8b4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_28.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_28.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_28.yml deleted file mode 100644 index 1143712547e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_29.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_29.RULE index 2ebc2dc89a7..1f0a1c7d273 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_29.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial Share Alike 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_29.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_29.yml deleted file mode 100644 index 1143712547e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_3.RULE index fc711c005af..9dbf0bbd50a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_3.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0 +--- + is released under the [CC BY-NC-SA 2.0](https://creativecommons.org/licenses/by-nc-sa/2.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_3.yml deleted file mode 100644 index 356c78faeed..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_30.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_30.RULE index e656e8c4713..7d8e7f05ca9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_30.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_30.yml deleted file mode 100644 index 1143712547e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_31.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_31.RULE index 67318fff675..da517d8f9f0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-2.0 Creative Commons Attribution Non Commercial Share Alike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_31.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_31.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_32.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_32.RULE index 7c9034edb73..ec31bc295e8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-2.0 +--- + https://licenses.nuget.org/CC-BY-NC-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_32.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_32.yml deleted file mode 100644 index 3053a0462bb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_33.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_33.RULE index 7e0887b262f..d0e5868e3a5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_33.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_33.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_34.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_34.RULE index 98cd5fc0d5f..b2dc1dae8f9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_34.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-2.0 +--- + {{CC-BY-NC-SA-2.0}} https://spdx.org/licenses/CC-BY-NC-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_34.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_34.yml deleted file mode 100644 index b5ca95c5077..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_35.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_35.RULE index 4f7d3b06435..b5a8bfda6af 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-2.0 +--- + LICENSE {{CC-BY-NC-SA-2.0}} https://spdx.org/licenses/CC-BY-NC-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_35.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_35.yml deleted file mode 100644 index b5ca95c5077..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_4.RULE index cd9622d05be..bf241bea268 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_notice: yes +relevance: 100 +--- + * This software is licensed under the "Creative Commons - * License (Attribution-NonCommercial-ShareAlike 2.0)" + * License (Attribution-NonCommercial-ShareAlike 2.0)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_4.yml deleted file mode 100644 index 1e4eb33c669..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_5.RULE index d51071c465f..6eed324a0b4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.0/ +--- + * This software is licensed under the "Creative Commons * License (Attribution-NonCommercial-ShareAlike 2.0)" * and is copyrighted by @@ -8,4 +15,4 @@ * 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. + * PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_5.yml deleted file mode 100644 index 61252425022..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_6.RULE index 5cc8d3398e5..38b151cb428 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_6.RULE @@ -1,7 +1,14 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.0/ +--- + * This software is licensed under the "Creative Commons * License (Attribution-NonCommercial-ShareAlike 2.0)" * and is copyrighted by * * Further information on this license can be found at: * http://creativecommons.org/licenses/by-nc-sa/2.0/ - * \ No newline at end of file + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_6.yml deleted file mode 100644 index 61252425022..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_7.RULE index da92d1c103f..e62cbce66ab 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_7.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_8.RULE index d10f717c3ee..a8095df626a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + CCBYNCSAv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_8.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_9.RULE index 349ef92d4b0..57a1157f86a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_9.yml deleted file mode 100644 index 6df764733c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button.RULE index 97d60253c0d..94468dd5e8f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nc-sa/ +--- + https://licensebuttons.net/l/nc-sa/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button.yml deleted file mode 100644 index 3f05f520f58..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nc-sa/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button_1.RULE index 466cfdda8c8..ba660b77c9e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nc-sa/2.0/ +--- + https://licensebuttons.net/l/nc-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button_1.yml deleted file mode 100644 index 22cafdc8c6c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_license_button_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nc-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_licensebutton.RULE index e720bf576b3..7db82a0ae4f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-sa/2.0 +--- + https://licensebuttons.net/l/by-nc-sa/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_licensebutton.yml deleted file mode 100644 index 61dbeed9a16..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_1.RULE index 16301a8005f..bd1a78b5876 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-2.0 +--- + https://spdx.org/licenses/cc-by-nc-sa-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_1.yml deleted file mode 100644 index 75f249b95d8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_2.RULE index aa0f9c2ccfc..269623fd77c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-2.0.html +--- + https://spdx.org/licenses/cc-by-nc-sa-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_2.yml deleted file mode 100644 index 610b0bb12df..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-2.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_glc_13.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_glc_13.RULE index a888b835d5e..61397d4af3e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_glc_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_glc_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.0 +--- + https://creativecommons.org/licenses/by-nc-sa/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_glc_13.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_glc_13.yml deleted file mode 100644 index 591bc51cc60..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.0_url_glc_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5.RULE index 6ee28e995e2..17e079dd46b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.5/ +--- + http://creativecommons.org/licenses/by-nc-sa/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5.SPDX.RULE index c50ce32bbed..c585940f781 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5.SPDX.yml deleted file mode 100644 index 8469f428351..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5.yml deleted file mode 100644 index a361dafe863..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_1.RULE index d500407ee85..2ac5c36b25a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode +--- + http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_1.yml deleted file mode 100644 index 257d2aa133a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_10.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_10.RULE index a1d158f86f3..8bd307568ac 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_10.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_10.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_11.RULE index 257bba60b69..2e6ca8c752a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_11.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_12.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_12.RULE index ed700149502..4c3e37add8e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_12.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_12.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_13.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_13.RULE index 0b5798be345..0d7ab5a35f2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_13.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_13.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_14.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_14.RULE index 0860cbe18e2..3de8fa4b19f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_14.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_14.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_15.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_15.RULE index b4f19aad925..345eddb4a3b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_15.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_15.yml deleted file mode 100644 index 53fa1cfbe7d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_16.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_16.RULE index 82dbb94d4e8..bbac3a817ea 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_16.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode +--- + https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_16.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_16.yml deleted file mode 100644 index e5cfbb24032..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_17.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_17.RULE index e9a8bb394c2..f302a5be6be 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_17.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_17.yml deleted file mode 100644 index e7c63e077b8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_18.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_18.RULE index 90e1567709d..87ffea9d471 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-2.5 Creative Commons Attribution Non Commercial Share Alike 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_18.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_18.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_19.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_19.RULE index bf53bd57104..59b99d96923 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_19.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_19.yml deleted file mode 100644 index abd34a1fbc7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_2.RULE index 4c70d0efa0c..41385dbd143 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_2.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_20.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_20.RULE index 4145a481229..b6a045ca4ce 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial Share Alike 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_20.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_20.yml deleted file mode 100644 index abd34a1fbc7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_21.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_21.RULE index 8691ba7b27f..cdf6c5f62a4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 2.5 Generic CC-BY-NC-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_21.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_21.yml deleted file mode 100644 index abd34a1fbc7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_22.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_22.RULE index 01f0e1a3b11..f77ba4e62f7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_22.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_22.yml deleted file mode 100644 index 5399c015cbc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_23.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_23.RULE index f02d561bf48..d2f4307716f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial Share Alike 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_23.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_23.yml deleted file mode 100644 index 5399c015cbc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_24.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_24.RULE index 2643563884d..faf4b6d5c3c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_24.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_24.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_24.yml deleted file mode 100644 index 5399c015cbc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_25.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_25.RULE index 78dbf746635..90167324ce0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-2.5 Creative Commons Attribution Non Commercial Share Alike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_25.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_25.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_26.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_26.RULE index f5bb87676fb..8b0d72df742 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-2.5 +--- + https://licenses.nuget.org/CC-BY-NC-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_26.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_26.yml deleted file mode 100644 index afc64183361..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_27.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_27.RULE index 0b032840a1b..557742f56d9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_27.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_27.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_27.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_28.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_28.RULE index c30e0b1ef34..2d156a611aa 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-2.5 +--- + {{CC-BY-NC-SA-2.5}} https://spdx.org/licenses/CC-BY-NC-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_28.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_28.yml deleted file mode 100644 index 0d28cf444e5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_29.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_29.RULE index 787e6dea131..dffc928a18c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_29.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-2.5 +--- + LICENSE {{CC-BY-NC-SA-2.5}} https://spdx.org/licenses/CC-BY-NC-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_29.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_29.yml deleted file mode 100644 index 0d28cf444e5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_3.RULE index d5ad611b681..fe98d51b2fc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.5/ +--- + The data is distributed with the Natural Language Toolkit under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike License [http://creativecommons.org/licenses/by-nc-sa/2.5/]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_3.yml deleted file mode 100644 index 988ef9fb7d6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_4.RULE index 720f085f6a6..1f4a3f544af 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.5/ +--- + The data is distributed with the Natural Language Toolkit under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike License [https://creativecommons.org/licenses/by-nc-sa/2.5/]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_4.yml deleted file mode 100644 index b99e781bec2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_5.RULE index 6f836914b64..817479abf71 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_notice: yes +relevance: 100 +--- + The data is distributed with the Natural Language Toolkit under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_5.yml deleted file mode 100644 index 5fd37c51481..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_6.RULE index 0ce3930ff8e..1c8e362fb17 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/2.5/ +--- + The data is distributed under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike License [http://creativecommons.org/licenses/by-nc-sa/2.5/]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_6.yml deleted file mode 100644 index 988ef9fb7d6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_7.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_7.RULE index 15bed66b221..b3438c1a790 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_7.RULE @@ -1 +1,9 @@ -[https://creativecommons.org/licenses/by-nc-sa/2.5/]. +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/2.5/ +--- + +[https://creativecommons.org/licenses/by-nc-sa/2.5/]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_7.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_7.yml deleted file mode 100644 index 5a2737259b5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_8.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_8.RULE index 6de5b9e37aa..bf56b92f925 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_8.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_8.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_9.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_9.RULE index 1d078f91707..3415119d912 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_9.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_9.yml deleted file mode 100644 index 40907edaa99..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_licensebutton.RULE index 0842a6491d2..84c2d67c8aa 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-sa/2.5 +--- + https://licensebuttons.net/l/by-nc-sa/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_licensebutton.yml deleted file mode 100644 index 0dcee67252f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-sa/2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_1.RULE index 56beacba0ad..d277a6708b7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-2.5 +--- + https://spdx.org/licenses/cc-by-nc-sa-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_1.yml deleted file mode 100644 index a1fe4b7bd26..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_2.RULE index 9c6716e6c6e..72c152e5aa3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-2.5.html +--- + https://spdx.org/licenses/cc-by-nc-sa-2.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_2.yml deleted file mode 100644 index f3d56095790..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-2.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-2.5.html diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_1.RULE index d791b161440..0426f4c45bf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-de +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial Share Alike 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_1.yml deleted file mode 100644 index 1433f64d94e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_2.RULE index 46c891a9d50..61767243d94 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-de +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-3.0-DE Creative Commons Attribution Non Commercial Share Alike 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_2.yml deleted file mode 100644 index 1433f64d94e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_3.RULE index e86b0600e1b..a9f3792b612 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-3.0-DE +--- + https://licenses.nuget.org/CC-BY-NC-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_3.yml deleted file mode 100644 index a9400ec6a60..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_4.RULE index 3fe57cae85d..214eb5335fb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-de +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_4.yml deleted file mode 100644 index 1433f64d94e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_5.RULE index 8c05ec4a3ab..92ef983a9ab 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_5.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-3.0-de +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE +--- + LICENSE {{CC-BY-NC-SA-3.0-DE}} https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_5.yml deleted file mode 100644 index b74728cffd5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-de -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_6.RULE index 999a3562615..17d975c0e2c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_6.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-3.0-de +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE +--- + {{CC-BY-NC-SA-3.0-DE}} https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_6.yml deleted file mode 100644 index b74728cffd5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-de_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-de -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_1.RULE index 5cfa8430a46..d09f6bb4b47 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Non Commercial Share Alike 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_1.yml deleted file mode 100644 index 4f74139dda6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_10.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_10.RULE index 78ac1941b43..e92b802dce0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_10.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO +--- + LICENSE {{CC-BY-NC-SA-3.0-IGO}} https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_10.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_10.yml deleted file mode 100644 index 46d8b5d5940..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_11.RULE index 3f2e0ab7161..11bc6571a31 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_11.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO +--- + {{CC-BY-NC-SA-3.0-IGO}} https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_11.yml deleted file mode 100644 index 46d8b5d5940..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_2.RULE index 1c6f927c138..aeaae713676 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-3.0-IGO Creative Commons Attribution Non Commercial Share Alike 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_2.yml deleted file mode 100644 index 4f74139dda6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_3.RULE index bca920fb769..a7e5d23b88d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial Share Alike 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_3.yml deleted file mode 100644 index 30192968008..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_4.RULE index e37a52d9ebe..bbbe2eaaab9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 3.0 IGO CC-BY-NC-SA-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_4.yml deleted file mode 100644 index 30192968008..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_5.RULE index 06173f6acee..de227e26074 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-SA-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_5.yml deleted file mode 100644 index 6c458264af0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_6.RULE index 357e7f163a2..aaf6a643163 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial Share Alike 3.0 IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_6.yml deleted file mode 100644 index 6c458264af0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_7.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_7.RULE index ce5034631ef..b4b66d95921 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-SA-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_7.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_7.yml deleted file mode 100644 index 6c458264af0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_8.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_8.RULE index a6832e07727..d568eb4b08f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-3.0-IGO +--- + https://licenses.nuget.org/CC-BY-NC-SA-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_8.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_8.yml deleted file mode 100644 index 289f1a33854..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-3.0-IGO diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_9.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_9.RULE index 73d44cd09c5..3af5239c6d8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-igo +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-3.0-IGO \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_9.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_9.yml deleted file mode 100644 index 4f74139dda6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-igo_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-igo -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_1.RULE index 35559b4641e..0e36bc467b9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 3.0 United States \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_1.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_10.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_10.RULE index 3c4d363d71e..4142119841c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 3.0 US License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_10.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_10.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_11.RULE index a3e8221a1b7..7073db15378 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 3.0 United States License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_11.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_12.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_12.RULE index 48a90cbdab0..1dfb4fae9a1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 3.0 US License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_12.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_12.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_13.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_13.RULE index 78616148397..59d9cd27518 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_13.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_13.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_14.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_14.RULE index 884ff893348..2fb3789d12b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 US License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_14.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_14.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_15.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_15.RULE index ddaef4d25c8..c0be493c160 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 3.0 United States License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_15.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_15.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_16.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_16.RULE index c188c20d6da..fc931307a90 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 3.0 US License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_16.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_16.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_2.RULE index 687e0c0f77d..6a9eaa959fc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 3.0 US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_2.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_3.RULE index c4a98507356..0c401e29c1f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 3.0 United States \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_3.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_4.RULE index e32fa2d6cc4..e234094c84d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 3.0 US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_4.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_5.RULE index 0cb207112e5..6acc11307c8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_5.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_6.RULE index 9d193acb1dc..2e87d931794 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_6.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_7.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_7.RULE index 87c0026d85e..643ad7785e5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 3.0 United States \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_7.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_7.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_8.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_8.RULE index 52137c498d6..e1ae51dded3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 3.0 US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_8.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_8.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_9.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_9.RULE index 6263a2c4698..34743006582 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0-us +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 3.0 United States License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_9.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_9.yml deleted file mode 100644 index 936ef703f88..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0-us_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0-us -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0.RULE index fa8b1d6440f..1fd1d7004a7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode +--- + http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0.SPDX.RULE index 00ab0e9a63f..047b9dbac85 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0.SPDX.yml deleted file mode 100644 index 8f5ad522774..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0.yml deleted file mode 100644 index 0e3228f6175..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_1.RULE index d1999262392..0966b9ab623 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + http://creativecommons.org/licenses/by-nc-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_1.yml deleted file mode 100644 index 8bb62710039..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_10.RULE index 1a1e1b92ff6..c3028d928b3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + /* is not free software; you can redistribute it and/or modify it under * the terms of the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 * Unported as published by the Creative Commons organization. @@ -9,4 +16,4 @@ * * You should have received a copy of the Creative Commons Attribution- * NonCommercial-ShareAlike 3.0 along with ; if not, browse to - * http://creativecommons.org/licenses/by-nc-sa/3.0/ */ + * http://creativecommons.org/licenses/by-nc-sa/3.0/ */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_10.yml deleted file mode 100644 index c8a4710a796..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_11.RULE index d10790de5e0..fcd00ad1d99 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_11.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_12.RULE index b2cd2140b35..3baa4fad743 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_12.RULE @@ -1 +1,7 @@ -Creative Commons Attribution-NonCommercial-ShareAlike \ No newline at end of file +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 90 +--- + +Creative Commons Attribution-NonCommercial-ShareAlike \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_12.yml deleted file mode 100644 index 7ab1e35133a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_13.RULE index 056613f6e83..6adedba0493 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_13.yml deleted file mode 100644 index 8bb62710039..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_14.RULE index 7ee7d599b16..ca1ea9dda0d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + This work is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_14.yml deleted file mode 100644 index 0ffe21e0933..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_15.RULE index 114ff477dd0..3e597bbaef3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0 +--- + `CC-BY-NC-SA-3.0` - [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 International License](https://creativecommons.org/licenses/by-nc-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_15.yml deleted file mode 100644 index dd56ae29b65..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_16.RULE index dbef6dbe4a0..1661c02d494 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + `CC-BY-NC-SA-3.0` - [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 International License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_16.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_17.RULE index d343c5a0719..b87c3788955 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0 +--- + [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 International License](https://creativecommons.org/licenses/by-nc-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_17.yml deleted file mode 100644 index dd56ae29b65..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_18.RULE index 6772b9032f7..4da068bd7f9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 International License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_18.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_19.RULE index 0aead04580b..b50453c42d3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + CCBYNCSAv3 – Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_19.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_2.RULE index b5d0db7c4cd..278c63f5a07 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_2.yml deleted file mode 100644 index 52defb681c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_20.RULE index dfbfb369569..fb37ed41410 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_20.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_21.RULE index c7c00fab26d..80f3745d1fd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + CCBYNCSAv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_21.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_22.RULE index 525c0e52187..3f1abe8972b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US +--- + This book is licensed under a Creative Commons http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US [Attribution-NonCommercial-ShareAlike 3.0 Unported] license. For more information, please see the Creative Commons page. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_22.yml deleted file mode 100644 index 9997f228a4e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_23.RULE index c3f42935c19..61ddf947d7a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode +--- + licensed under the Creative Commons License, Attribution-NonCommercial-ShareAlike 3.0 unported. (http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_23.yml deleted file mode 100644 index 6a9c64406f2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_24.RULE index 94611b025cf..782a30e46ef 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_24.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_25.RULE index 7b0c3b096cd..fbb1008002a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_25.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_26.RULE index 1faaa39b592..97b96d4f229 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_26.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_27.RULE index f1378fd5b85..b4fbdb0d560 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_27.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_28.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_28.RULE index 6282e9c1ec6..e8442c5f41b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_28.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_28.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_29.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_29.RULE index a5f6855c014..1fa45cbe0bd 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_29.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_29.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_3.RULE index f0c0aa2216d..3bc76089978 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh +--- + CC BY-NC-SA 3.0](http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_3.yml deleted file mode 100644 index d107f591d1e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_30.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_30.RULE index 3fbb5c9c593..98bd1a7ddbc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_30.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_30.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_31.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_31.RULE index 916ba6fe4c9..599d7601452 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_31.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_31.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_32.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_32.RULE index fe33c4fb152..4b63f95c359 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 3.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_32.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_32.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_33.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_33.RULE index 1b3a850ea05..300c41a24a7 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 3.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_33.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_33.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_34.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_34.RULE index 2c11e7f2d8f..595dcc1b0a0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 3.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_34.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_34.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_35.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_35.RULE index c10c8e10670..740d98fd4a5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_35.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_35.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_36.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_36.RULE index 96723df87e7..1c154214f5a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_36.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_36.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_37.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_37.RULE index bf9f5e383f7..9d92526cecb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_37.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_37.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_37.yml deleted file mode 100644 index be7f765ddcb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_38.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_38.RULE index 09df538505a..a2fcb3e955f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_38.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_38.yml deleted file mode 100644 index 94a5d9b4bc2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_39.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_39.RULE index 97d5b5ab4f6..ec3a73bfb91 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_39.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/igo +--- + http://creativecommons.org/licenses/by-nc-sa/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_39.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_39.yml deleted file mode 100644 index 5c4b5f1569c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_4.RULE index f1c28a0a89d..f7581df443f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + * This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 * License. To view a copy of this license, visit * http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, @@ -6,4 +13,4 @@ * EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU * ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES * ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_4.yml deleted file mode 100644 index c8a4710a796..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_40.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_40.RULE index 31c8172a640..90b78efce81 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_40.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode +--- + http://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_40.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_40.yml deleted file mode 100644 index 2a48cc73e0d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_41.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_41.RULE index 7da78ee31e8..a54395e476f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_41.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_41.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_41.yml deleted file mode 100644 index c2f8d4f17a8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_42.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_42.RULE index edf29bdb2c9..81fd9644686 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_42.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/igo +--- + https://creativecommons.org/licenses/by-nc-sa/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_42.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_42.yml deleted file mode 100644 index ba7960759cb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_43.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_43.RULE index 4f499e7acb1..c76cd6412fc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_43.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode +--- + https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_43.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_43.yml deleted file mode 100644 index e994d49da8f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_44.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_44.RULE index 360572eda4f..6341345838b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_44.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode +--- + https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_44.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_44.yml deleted file mode 100644 index 03d23715de0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_45.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_45.RULE index d6c7d1b49ea..af5198389de 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_45.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_45.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_45.yml deleted file mode 100644 index 8d1c9d3cc31..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_46.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_46.RULE index 38ff46eacc1..f2f0e7ad607 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_46.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_tag: yes +relevance: 100 +--- + License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_46.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_46.yml deleted file mode 100644 index db949002b80..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_47.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_47.RULE index 96192f53dad..102a18b36f5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_47.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_47.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_47.yml deleted file mode 100644 index 52defb681c8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_47.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_48.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_48.RULE index e92d4199453..9ec3e4b3f87 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-3.0 Creative Commons Attribution Non Commercial Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_48.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_48.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_49.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_49.RULE index e69a9a8f3d9..ee72de695b9 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_49.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_49.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_49.yml deleted file mode 100644 index 34c968686bd..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_49.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_5.RULE index 7b9a94e4f74..898ef428d75 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_5.RULE @@ -1,5 +1,11 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + * This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 * License. To view a copy of this license, visit * http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, - * 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA. - \ No newline at end of file + * 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_5.yml deleted file mode 100644 index c8a4710a796..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_50.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_50.RULE index 4f62ebd25e4..3d8de7fc43b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_50.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 3.0 Unported CC-BY-NC-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_50.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_50.yml deleted file mode 100644 index 34c968686bd..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_50.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_51.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_51.RULE index 28e091f9535..fc86b512c94 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_51.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_51.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_51.yml deleted file mode 100644 index 31db8bcd55c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_51.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_52.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_52.RULE index 75c7f82201d..e13a9007600 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_52.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_52.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_52.yml deleted file mode 100644 index 31db8bcd55c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_52.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_53.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_53.RULE index 14a8241ab3a..ade18ac7b0c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_53.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_53.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_53.yml deleted file mode 100644 index 31db8bcd55c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_53.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_54.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_54.RULE index 6240d7cb0ce..819a231b386 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-3.0 Creative Commons Attribution Non Commercial Share Alike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_54.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_54.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_55.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_55.RULE index b22361da94e..48085bbe257 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_55.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-3.0 +--- + https://licenses.nuget.org/CC-BY-NC-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_55.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_55.yml deleted file mode 100644 index 1f1950f8ca5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_56.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_56.RULE index e528cbf5145..42ab8d2cdad 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_56.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_56.yml deleted file mode 100644 index 321d300c4fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_57.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_57.RULE index f2f42a44933..a4d2a06d5d4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_57.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-3.0 +--- + LICENSE {{CC-BY-NC-SA-3.0}} https://spdx.org/licenses/CC-BY-NC-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_57.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_57.yml deleted file mode 100644 index 1caef1e0da5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_58.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_58.RULE index 43567f5cf0b..74eed803d8b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_58.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-3.0 +--- + {{CC-BY-NC-SA-3.0}} https://spdx.org/licenses/CC-BY-NC-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_58.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_58.yml deleted file mode 100644 index 1caef1e0da5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_6.RULE index aa280b059c8..772f0a2c8da 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc +--- + // The software code contained herein is licensed under the Creative // Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. // To view this license, see http://creativecommons.org/licenses/by-nc- diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_6.yml deleted file mode 100644 index fe904cffbf4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_7.RULE index f939a998a32..f19cf83b878 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_7.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_7.yml deleted file mode 100644 index c8a4710a796..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_8.RULE index b0ccf00d6bc..6addcad2a69 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + This work is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_8.yml deleted file mode 100644 index c8a4710a796..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_9.RULE index b8988fc1a22..ce02b022353 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +referenced_filenames: + - ../../LICENSE +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/ +--- + License link * license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"> Creative Commons Attribution-Noncommercial-Share Alike 3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_9.yml deleted file mode 100644 index 5b33a886c6a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -referenced_filenames: - - ../../LICENSE -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_and_proprietary-license_1.RULE index 2d9a2f03ef2..5ebea1820ea 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_and_proprietary-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 AND proprietary-license +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc +--- + // This software has been licensed to Inc. for // use in educational, training, and for promotional and // demonstration purposes. All rights are otherwise retained diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_and_proprietary-license_1.yml deleted file mode 100644 index 95a323f705f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 AND proprietary-license -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_licensebutton.RULE index 31ca5f41fce..0da33772e48 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-sa/3.0 +--- + https://licensebuttons.net/l/by-nc-sa/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_licensebutton.yml deleted file mode 100644 index 3fc9db13669..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_1.RULE index 83767907cf8..5f85e7f6686 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-3.0 +--- + https://spdx.org/licenses/cc-by-nc-sa-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_1.yml deleted file mode 100644 index 32b68285351..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_2.RULE index 5d5e2e7e0ba..d9359397415 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-3.0.html +--- + https://spdx.org/licenses/cc-by-nc-sa-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_2.yml deleted file mode 100644 index d9b63161046..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-3.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_glc_17.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_glc_17.RULE index e56c87c9643..250bced6782 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_glc_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_glc_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/3.0 +--- + https://creativecommons.org/licenses/by-nc-sa/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_glc_17.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_glc_17.yml deleted file mode 100644 index dd56ae29b65..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_url_glc_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_zh.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_zh.RULE index 921fdafe013..0019ecb143a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_zh.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_zh.RULE @@ -1,4 +1,11 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh +--- + ## License -以上内容采用 [CC BY-NC-SA 3.0](http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh) 进行许可, 转载请注明出处, 版权归本人及所有贡献者所有 +以上内容采用 [CC BY-NC-SA 3.0](http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh) 进行许可, 转载请注明出处, 版权归本人及所有贡献者所有 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_zh.yml b/src/licensedcode/data/rules/cc-by-nc-sa-3.0_zh.yml deleted file mode 100644 index d354350b8cf..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-3.0_zh.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/deed.zh diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0.RULE index 25e4f8254a5..765361552ca 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +--- + Attribution-NonCommercial-ShareAlike 4.0 International ======================================================================= diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0.SPDX.RULE index e8a72154be3..e1a22e222b8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0.SPDX.yml deleted file mode 100644 index 9c8120e11fb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0.yml deleted file mode 100644 index 0988658039e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_1.RULE index a9983644e14..6444a4154db 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0/ +--- + http://creativecommons.org/licenses/by-nc-sa/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_1.yml deleted file mode 100644 index 8237e1ec5d4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_10.RULE index 6b4473390d6..a5f39ace6bf 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_10.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_10.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_11.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_11.RULE index 05d60d35fe2..ec4be008875 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_11.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_11.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_12.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_12.RULE index 45eb51b9958..2707e68e981 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_12.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_12.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_13.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_13.RULE index 5c0d845b27e..01e55ff2648 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_13.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_13.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_14.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_14.RULE index f5c76100b87..0eb5d5a1bc1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NonCommercial-ShareAlike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_14.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_14.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_15.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_15.RULE index ebb7862740c..fd1fdcb6a06 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Non Commercial-Share Alike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_15.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_15.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_16.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_16.RULE index e1fdd5da699..490a7ecfdc2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NonCommercial-ShareAlike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_16.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_16.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_17.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_17.RULE index 1e78af327bb..23815a0ee9b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Non Commercial-Share Alike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_17.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_17.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_18.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_18.RULE index 121de4ed695..4c2d0dadfb3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + Documentation is licensed under CC BY-NC-SA 4.0: Attribution-NonCommercial-ShareAlike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_18.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_18.yml deleted file mode 100644 index 7081599981a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_19.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_19.RULE index 85cf76d6e1b..c787fe59293 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode +--- + http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_19.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_19.yml deleted file mode 100644 index ba701e60662..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_2.RULE index b57da323c50..d2ecd77b1d6 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0/ +--- + https://creativecommons.org/licenses/by-nc-sa/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_2.yml deleted file mode 100644 index d529c7e28a2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_20.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_20.RULE index f7a56a7f732..ee44187af48 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_20.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_20.yml deleted file mode 100644 index 92e373805ec..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_21.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_21.RULE index 9a873ccb9ec..ffa983003eb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode +--- + https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_21.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_21.yml deleted file mode 100644 index 6b4e7706a87..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_22.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_22.RULE index 48ee3fd1401..ef574b77b62 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_22.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_22.yml deleted file mode 100644 index 9971dc6a170..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_23.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_23.RULE index 1e03996d228..79a6efa50ff 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_23.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_text: yes +--- + Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_23.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_23.yml deleted file mode 100644 index c691f6ce509..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_24.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_24.RULE index cf4571da813..53b6cb1db98 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_24.RULE @@ -1,7 +1,15 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0 +--- + This work is licensed under a {{Creative Commons Attribution-NonCommercial-ShareAlike 4.0}} International License (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at http://creativecommons.org/licenses/by-nc-sa/4.0/. This file 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_24.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_24.yml deleted file mode 100644 index 431a78a757f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_25.RULE index 655fc9d5b4b..be1cb52b700 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_25.RULE @@ -1 +1,7 @@ -{{Creative Commons Attribution-NonCommercial-ShareAlike 4.0}} International License +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + +{{Creative Commons Attribution-NonCommercial-ShareAlike 4.0}} International License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_25.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_25.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_26.RULE index 56d595e5fea..5603cbdf6cc 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_26.RULE @@ -1 +1,6 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +--- + This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_26.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_26.yml deleted file mode 100644 index 0988658039e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_26.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_27.RULE index c1f1f4e3d73..dcf312fc2f2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_27.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0/ +--- + This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License: https://creativecommons.org/licenses/by-nc-sa/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_27.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_27.yml deleted file mode 100644 index dae98e95d1c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_28.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_28.RULE index f8311fda1cb..7484e19dd3c 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-4.0 Creative Commons Attribution Non Commercial Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_28.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_28.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_29.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_29.RULE index 4b1af9936d7..1428482ee6d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_29.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_29.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_29.yml deleted file mode 100644 index 327a2a412ee..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_3.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_3.RULE index 2ee47cb3530..54eb5388171 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_text: yes +--- + Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_3.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_3.yml deleted file mode 100644 index c691f6ce509..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_30.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_30.RULE index ceb14bc3131..0e30fb48a20 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Non Commercial Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_30.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_30.yml deleted file mode 100644 index 327a2a412ee..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_31.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_31.RULE index 466b9852bb2..ff1efc71cb8 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Non Commercial Share Alike 4.0 International CC-BY-NC-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_31.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_31.yml deleted file mode 100644 index 327a2a412ee..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_32.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_32.RULE index 88771b7aef1..5ef99315835 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-NC-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_32.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_32.yml deleted file mode 100644 index 9e67e776cb9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_33.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_33.RULE index b5b9a3c6075..b8d75ae475f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_33.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Non Commercial Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_33.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_33.yml deleted file mode 100644 index 9e67e776cb9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_34.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_34.RULE index ba47b99ed18..3da135208c2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_34.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-NC-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_34.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_34.yml deleted file mode 100644 index 9e67e776cb9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_35.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_35.RULE index 1701e669f94..c25988ece9a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-NC-SA-4.0 Creative Commons Attribution Non Commercial Share Alike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_35.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_35.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_36.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_36.RULE index e6db8a76483..69962a5bc61 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_36.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-NC-SA-4.0 +--- + https://licenses.nuget.org/CC-BY-NC-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_36.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_36.yml deleted file mode 100644 index 67e5a8cbea6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-NC-SA-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_37.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_37.RULE index c05944cd6f4..3d90fbb2fc1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-NC-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_37.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_37.yml deleted file mode 100644 index 52fcc6b0e49..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_38.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_38.RULE index 23ef6b421bf..aa1fc6292ca 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-4.0 +--- + LICENSE {{CC-BY-NC-SA-4.0}} https://spdx.org/licenses/CC-BY-NC-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_38.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_38.yml deleted file mode 100644 index 92745619630..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_39.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_39.RULE index f0b01963373..00fb71bd4eb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_39.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-NC-SA-4.0 +--- + {{CC-BY-NC-SA-4.0}} https://spdx.org/licenses/CC-BY-NC-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_39.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_39.yml deleted file mode 100644 index 92745619630..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-NC-SA-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_4.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_4.RULE index 3df1156e136..d6a25c84046 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0/ +--- + `Creative Commons BY-NC-SA 4.0 License`__. __ cc_license_ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_4.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_4.yml deleted file mode 100644 index ca3a41aa246..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_5.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_5.RULE index b98fe06b8f2..b1436e9bd1e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0/ +--- + Documentation is licensed under a `Creative Commons BY-NC-SA 4.0 License`__. diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_5.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_5.yml deleted file mode 100644 index 9b747b494fc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_6.RULE index 38c2e3a194d..e0835654a76 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under a `Creative Commons BY-NC-SA 4.0 License`__. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_6.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_6.yml deleted file mode 100644 index 7081599981a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_7.RULE index b1b1d1f5d74..f7abbfa561a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + Content and images licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_7.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_7.yml deleted file mode 100644 index 7081599981a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_8.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_8.RULE index 467d6049a3e..44b5e526c03 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_8.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_8.yml deleted file mode 100644 index 7081599981a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_9.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_9.RULE index 22ca17f7e29..4d6bc367f71 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + Content and images licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. Images are my own and are also available under the same license as the rest of the content. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_9.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_9.yml deleted file mode 100644 index 7081599981a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_licensebutton.RULE index 066dc339746..53787948743 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nc-sa/4.0 +--- + https://licensebuttons.net/l/by-nc-sa/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_licensebutton.yml deleted file mode 100644 index 549acdd9b07..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nc-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_1.RULE index 022ccfdd685..3da8f26e058 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-4.0 +--- + https://spdx.org/licenses/cc-by-nc-sa-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_1.yml deleted file mode 100644 index 1e219860e30..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_2.RULE index 29f05bf7069..8c44f54bd64 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nc-sa-4.0.html +--- + https://spdx.org/licenses/cc-by-nc-sa-4.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_2.yml deleted file mode 100644 index 136d6d11525..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nc-sa-4.0.html diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge.RULE index e7d53b2fe65..f92ad5ef861 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0 +--- + [![License: CC BY-NC-SA 4.0](https://licensebuttons.net/l/by-nc-sa/4.0/80x15.png)](https://creativecommons.org/licenses/by-nc-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge.yml deleted file mode 100644 index e8f788ce48c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge_1.RULE index 19c0debf4c2..8a4429ef8a2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nc-sa/4.0 + - https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg +--- + [![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge_1.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge_1.yml deleted file mode 100644 index dbd00c8e313..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_url_badge_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nc-sa/4.0 - - https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_zh.RULE b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_zh.RULE index d577ef2b868..9d89b26ebf3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_zh.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_zh.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/4.0 + - https://github.com/kesenhoo/android-training-course-in-chinese +--- + ## License 本站作品由创作,采用[知识共享 署名-非商业性使用-相同方式共享 4.0 国际 许可](http://creativecommons.org/licenses/by-nc-sa/4.0/)协议进行许可。 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_zh.yml b/src/licensedcode/data/rules/cc-by-nc-sa-4.0_zh.yml deleted file mode 100644 index 73ceb772f81..00000000000 --- a/src/licensedcode/data/rules/cc-by-nc-sa-4.0_zh.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/4.0 - - https://github.com/kesenhoo/android-training-course-in-chinese diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0.RULE index 67ef2208f8f..9635f26a337 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/1.0/ +--- + http://creativecommons.org/licenses/by-nd/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0.SPDX.RULE index 24c678a0e5e..27c1a839121 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_text: yes +minimum_coverage: 30 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nd-1.0.SPDX.yml deleted file mode 100644 index 5c6ead5d3bc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_text: yes -minimum_coverage: 30 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0.yml b/src/licensedcode/data/rules/cc-by-nd-1.0.yml deleted file mode 100644 index 37569ed6a64..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_1.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_1.RULE index e1a493ada8d..36f859eb5a2 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/1.0/legalcode +--- + http://creativecommons.org/licenses/by-nd/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_1.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_1.yml deleted file mode 100644 index 0b150eb9337..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_10.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_10.RULE index da474d7f9b4..7baa0da3867 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_10.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_10.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_11.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_11.RULE index f3ba42c6f0e..1698a33f1d4 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_11.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_11.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_12.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_12.RULE index 44750e8afc3..ef37f8bba07 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_12.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_12.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_13.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_13.RULE index 7ff6ffc43b5..fb398fa8b14 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_13.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_13.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_14.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_14.RULE index 00984bdb17f..1977e90f0ed 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_14.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_14.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_15.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_15.RULE index 49457790e73..cfda52487ac 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_15.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_15.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_16.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_16.RULE index ff17f82cd73..b40f88b0dce 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 1.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_16.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_16.yml deleted file mode 100644 index 31a9b1d9787..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_17.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_17.RULE index 85668b9ad7d..cf19d168556 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/nd/1.0 +--- + http://creativecommons.org/licenses/nd/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_17.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_17.yml deleted file mode 100644 index 68924b5ce48..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/nd/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_18.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_18.RULE index 05cf7f679bc..0d338bb6a4d 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/1.0/legalcode +--- + https://creativecommons.org/licenses/by-nd/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_18.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_18.yml deleted file mode 100644 index 7f16c275738..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_19.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_19.RULE index 3e133316bbd..aefa01d789c 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nd/1.0 +--- + https://creativecommons.org/licenses/nd/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_19.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_19.yml deleted file mode 100644 index a8aa7f6dfdb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nd/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_2.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_2.RULE index 4027a6c04f9..b57dc4fbcef 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_2.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_2.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_20.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_20.RULE index 7091b02963c..12d245fa419 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nd/1.0/legalcode +--- + https://creativecommons.org/licenses/nd/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_20.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_20.yml deleted file mode 100644 index f425fcc5ad8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nd/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_21.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_21.RULE index eeb50ce9f30..1bdde584877 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/nd/2.0/legalcode +--- + https://creativecommons.org/licenses/nd/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_21.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_21.yml deleted file mode 100644 index 2faf19fd88c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/nd/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_22.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_22.RULE index 523d15d57f3..987aac677ee 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_22.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NoDerivs 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_22.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_22.yml deleted file mode 100644 index 8fd4ab52b6a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_23.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_23.RULE index 857d55b4fd1..8122a8cba74 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-1.0 Creative Commons Attribution No Derivatives 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_23.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_23.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_24.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_24.RULE index a77dc689dbe..a0e13df43e4 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_24.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_24.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_24.yml deleted file mode 100644 index cc381f66af5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_25.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_25.RULE index fa581675ca3..56e1bf7e044 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_25.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution No Derivatives 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_25.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_25.yml deleted file mode 100644 index cc381f66af5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_26.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_26.RULE index a6387b00e2a..dcc97348d91 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_26.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 1.0 Generic CC-BY-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_26.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_26.yml deleted file mode 100644 index cc381f66af5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_27.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_27.RULE index fa1d49069c3..b955692f3e2 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_27.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_27.yml deleted file mode 100644 index e3198f316d1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_28.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_28.RULE index 101f0d40d0c..597130409fe 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_28.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution No Derivatives 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_28.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_28.yml deleted file mode 100644 index e3198f316d1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_29.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_29.RULE index 4e6d3ada438..279e036977f 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_29.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_29.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_29.yml deleted file mode 100644 index e3198f316d1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_3.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_3.RULE index 83d9872db14..c8b249813f0 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_3.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_3.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_30.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_30.RULE index cabca9dd85c..0967b4e55ed 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-1.0 Creative Commons Attribution No Derivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_30.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_30.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_31.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_31.RULE index 1a145e5c20d..52d6e0f3d11 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_31.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-ND-1.0 +--- + https://licenses.nuget.org/CC-BY-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_31.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_31.yml deleted file mode 100644 index 979a1fcfb73..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-ND-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_32.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_32.RULE index b189b7bd181..58443865c6e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_32.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_32.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_33.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_33.RULE index 0207326b481..e15e0d34fb8 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_33.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-1.0 +--- + {{CC-BY-ND-1.0}} https://spdx.org/licenses/CC-BY-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_33.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_33.yml deleted file mode 100644 index 66f10aa37e8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_34.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_34.RULE index 7ddd801c3a7..36780d8b2c2 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_34.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-1.0 +--- + LICENSE {{CC-BY-ND-1.0}} https://spdx.org/licenses/CC-BY-ND-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_34.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_34.yml deleted file mode 100644 index 66f10aa37e8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_4.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_4.RULE index 88181361cae..aac19fcaae1 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_4.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_4.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_5.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_5.RULE index d0bbbe0f0c0..96358b83557 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_5.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_5.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_6.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_6.RULE index 34224cb1d52..9c39c94a61d 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_6.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_6.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_7.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_7.RULE index d23b0e2f647..1d8ba92f748 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_7.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_7.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_8.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_8.RULE index 329b91f5bbc..fb6d68e5781 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_8.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_8.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_9.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_9.RULE index 7145390e41b..fa874b4a696 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_9.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_9.yml deleted file mode 100644 index d3a7d20ed76..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_license_button.RULE index b0185a1269d..73effa470c1 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nd/1.0/ +--- + https://licensebuttons.net/l/nd/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_license_button.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_license_button.yml deleted file mode 100644 index 4119ad280b8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nd/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_licensebutton.RULE index bb4c062ec33..020e4793543 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nd/1.0 +--- + https://licensebuttons.net/l/by-nd/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_licensebutton.yml deleted file mode 100644 index c2d370ca078..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nd/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_url_1.RULE index 2ef478a9cbf..40dac732e5e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-1.0 +--- + https://spdx.org/licenses/cc-by-nd-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_url_1.yml deleted file mode 100644 index d674bc58d00..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-1.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_url_2.RULE index ed20727a31a..a897a7a8df0 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-1.0.html +--- + https://spdx.org/licenses/cc-by-nd-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_url_2.yml deleted file mode 100644 index bfcdc3222ea..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-1.0.html diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_url_glc_33.RULE b/src/licensedcode/data/rules/cc-by-nd-1.0_url_glc_33.RULE index 0dfdefe02af..a27d0d8b572 100644 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_url_glc_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-1.0_url_glc_33.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/1.0 +--- + https://creativecommons.org/licenses/by-nd/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-1.0_url_glc_33.yml b/src/licensedcode/data/rules/cc-by-nd-1.0_url_glc_33.yml deleted file mode 100644 index b9676dd0111..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-1.0_url_glc_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/1.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0.RULE index 6f1fbcdf577..f979015a84a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/2.0/ +--- + http://creativecommons.org/licenses/by-nd/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0.SPDX.RULE index 25331c16f0c..b1b01611b86 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nd-2.0.SPDX.yml deleted file mode 100644 index 8ed8b005ae9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0.yml b/src/licensedcode/data/rules/cc-by-nd-2.0.yml deleted file mode 100644 index d1756424c4b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_1.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_1.RULE index ce459e45763..c2048aa1b1e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/2.0/legalcode +--- + http://creativecommons.org/licenses/by-nd/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_1.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_1.yml deleted file mode 100644 index 86e2e699c6f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_10.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_10.RULE index c153108153b..44c6c99a404 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_10.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_10.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_11.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_11.RULE index adc894d881c..ce86c08c655 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_11.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_11.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_12.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_12.RULE index 7e0c7d42d67..61d1313ece5 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_12.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_12.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_13.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_13.RULE index 609c77078d2..05540bd6df4 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_13.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_13.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_14.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_14.RULE index 96c0103158e..cc593e39258 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_14.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_14.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_15.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_15.RULE index a0b416033a7..3757f6ad1bf 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_15.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_15.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_16.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_16.RULE index ebe3249cc8a..f8e1b726733 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 2.0 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_16.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_16.yml deleted file mode 100644 index 7fb1d3ac2af..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_17.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_17.RULE index 34b90c91f11..6f7f839aab3 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/2.1/legalcode +--- + http://creativecommons.org/licenses/by-nd/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_17.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_17.yml deleted file mode 100644 index 1fb59699044..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_18.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_18.RULE index 11f2338d4dd..38dfae632e7 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/nd/2.0 +--- + http://creativecommons.org/licenses/nd/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_18.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_18.yml deleted file mode 100644 index 063b6693deb..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/nd/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_19.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_19.RULE index 0d29b7f642e..fb97f971b41 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/2.0/legalcode +--- + https://creativecommons.org/licenses/by-nd/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_19.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_19.yml deleted file mode 100644 index ea42e4433fe..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_2.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_2.RULE index e3e7abc4914..640314c908a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_2.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_2.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_20.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_20.RULE index 6f775ff4a88..f6c136ddf9a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/2.1/legalcode +--- + https://creativecommons.org/licenses/by-nd/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_20.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_20.yml deleted file mode 100644 index 1260b274c27..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_21.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_21.RULE index 3c02ac9540b..dfa80961f0b 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_text: yes +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Attribution-NoDerivs 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_21.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_21.yml deleted file mode 100644 index acc395ab338..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_text: yes -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_22.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_22.RULE index e0c2b992112..f9092592844 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-2.0 Creative Commons Attribution No Derivatives 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_22.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_22.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_23.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_23.RULE index 1e2d18766af..bf1bbe440aa 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_23.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_23.yml deleted file mode 100644 index e73d6ac7b7f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_24.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_24.RULE index 9441b1c823b..5371b337740 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_24.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution No Derivatives 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_24.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_24.yml deleted file mode 100644 index e73d6ac7b7f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_25.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_25.RULE index b4102992095..0293154cdcd 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_25.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 2.0 Generic CC-BY-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_25.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_25.yml deleted file mode 100644 index e73d6ac7b7f..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_26.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_26.RULE index b9c34b35581..16c6febcd8d 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_26.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_26.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_26.yml deleted file mode 100644 index 1a119b47409..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_27.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_27.RULE index 239279233e5..7310f4a516d 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution No Derivatives 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_27.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_27.yml deleted file mode 100644 index 1a119b47409..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_28.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_28.RULE index 7ecc52e321a..f7bc132e249 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_28.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_28.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_28.yml deleted file mode 100644 index 1a119b47409..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_29.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_29.RULE index 3c465239520..51b0c4adfd9 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-2.0 Creative Commons Attribution No Derivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_29.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_29.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_3.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_3.RULE index 31eb372467d..8033970ba69 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_3.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_3.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_30.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_30.RULE index 8ed25d10620..bf34c5e2c1a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_30.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-ND-2.0 +--- + https://licenses.nuget.org/CC-BY-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_30.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_30.yml deleted file mode 100644 index a2f5b599942..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-ND-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_31.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_31.RULE index 18d793dbf47..3ab5d4fe000 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_31.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_31.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_32.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_32.RULE index 70f8a1ca89f..df2df486ec0 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-2.0 +--- + LICENSE {{CC-BY-ND-2.0}} https://spdx.org/licenses/CC-BY-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_32.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_32.yml deleted file mode 100644 index be4deb17e5e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_33.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_33.RULE index 4d96b8ac62e..13a8884b864 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_33.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-2.0 +--- + {{CC-BY-ND-2.0}} https://spdx.org/licenses/CC-BY-ND-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_33.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_33.yml deleted file mode 100644 index be4deb17e5e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_4.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_4.RULE index 41d291a1d92..f6772b9e20f 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_4.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_4.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_5.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_5.RULE index 2befa5786f6..e115766bab8 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_5.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_5.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_6.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_6.RULE index 30c873edefe..cec8e0cd924 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_6.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_6.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_7.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_7.RULE index 4822df401ca..9e00518a324 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_7.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_7.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_8.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_8.RULE index 8b719845737..5c96ef1f296 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_8.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_8.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_9.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_9.RULE index 668f3956fba..1012ed001fd 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_9.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_9.yml deleted file mode 100644 index df3d0136149..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_license_button.RULE index 8d73fa97238..52be94d1710 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nd/ +--- + https://licensebuttons.net/l/nd/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_license_button.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_license_button.yml deleted file mode 100644 index 5cf69a70db1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nd/ diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_license_button_1.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_license_button_1.RULE index d3b75fadfa9..f59be187c47 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_license_button_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_license_button_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/nd/2.0/ +--- + https://licensebuttons.net/l/nd/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_license_button_1.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_license_button_1.yml deleted file mode 100644 index 87041e640e6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_license_button_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/nd/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_licensebutton.RULE index 855f3d52558..1d35175512f 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nd/2.0 +--- + https://licensebuttons.net/l/by-nd/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_licensebutton.yml deleted file mode 100644 index cfb714e8cf5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nd/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_url_1.RULE index d5d8750cde4..84119027da3 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-2.0 +--- + https://spdx.org/licenses/cc-by-nd-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_url_1.yml deleted file mode 100644 index 7954869977b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-2.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_url_2.RULE index 258da924bc0..beded94736e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-2.0.html +--- + https://spdx.org/licenses/cc-by-nd-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_url_2.yml deleted file mode 100644 index 237fbfede64..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-2.0.html diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_url_glc_35.RULE b/src/licensedcode/data/rules/cc-by-nd-2.0_url_glc_35.RULE index 07f2f134247..b7049e4c669 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_url_glc_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.0_url_glc_35.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/2.0 +--- + https://creativecommons.org/licenses/by-nd/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.0_url_glc_35.yml b/src/licensedcode/data/rules/cc-by-nd-2.0_url_glc_35.yml deleted file mode 100644 index 5aecc7fd25d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.0_url_glc_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/2.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5.RULE index cf183347897..3bc5516ea1d 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/2.5/ +--- + http://creativecommons.org/licenses/by-nd/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5.SPDX.RULE index c6ffea86703..53989ede330 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5.SPDX.yml b/src/licensedcode/data/rules/cc-by-nd-2.5.SPDX.yml deleted file mode 100644 index 68fdf22e685..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5.yml b/src/licensedcode/data/rules/cc-by-nd-2.5.yml deleted file mode 100644 index 5efebd168dc..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_1.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_1.RULE index 64c99f8566b..5e877660546 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/2.5/legalcode +--- + http://creativecommons.org/licenses/by-nd/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_1.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_1.yml deleted file mode 100644 index 81fa0a6ecc0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_10.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_10.RULE index 08052e81557..84528b08961 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_10.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_10.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_11.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_11.RULE index 51f37be9734..792361404e8 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_11.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_11.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_12.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_12.RULE index f1f9bcf5aad..a233674b59e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_12.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_12.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_13.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_13.RULE index b3169c92802..051f855fc45 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_13.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_13.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_14.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_14.RULE index 71f2c6dd0ae..1d07f890811 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_14.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_14.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_15.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_15.RULE index b0fd58f66d9..7388ab2312b 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_15.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_15.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_16.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_16.RULE index 7b0568a6465..f1c68a4be24 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 2.5 License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_16.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_16.yml deleted file mode 100644 index 0226a075de1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_17.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_17.RULE index 56ba7c57a5a..647fc0e5762 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/2.5/legalcode +--- + https://creativecommons.org/licenses/by-nd/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_17.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_17.yml deleted file mode 100644 index 50ddc70afab..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_18.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_18.RULE index 579c72f5d54..09e58b21458 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NoDerivs 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_18.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_18.yml deleted file mode 100644 index cb433619f91..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_19.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_19.RULE index 537167a5d96..f9e7817ff5e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-2.5 Creative Commons Attribution No Derivatives 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_19.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_19.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_2.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_2.RULE index 93508cb5fdc..3cd0065a972 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_2.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_2.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_20.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_20.RULE index b560d4da720..68e38b6028c 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_20.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_20.yml deleted file mode 100644 index b1304f54401..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_21.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_21.RULE index 755e35989ce..c11be839a6e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution No Derivatives 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_21.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_21.yml deleted file mode 100644 index b1304f54401..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_22.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_22.RULE index 5a852ee3526..5c1c5616f78 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 2.5 Generic CC-BY-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_22.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_22.yml deleted file mode 100644 index b1304f54401..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_23.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_23.RULE index 3793d0845c2..f1e9c23ecbd 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_23.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_23.yml deleted file mode 100644 index b65b65d725d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_24.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_24.RULE index bbecbf8c039..3f6043643f9 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_24.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution No Derivatives 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_24.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_24.yml deleted file mode 100644 index b65b65d725d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_25.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_25.RULE index b6900d095bb..cc8b1e0867a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_25.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_25.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_25.yml deleted file mode 100644 index b65b65d725d..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_26.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_26.RULE index d8c5d3d0b87..bd6378df4b9 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_26.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-2.5 Creative Commons Attribution No Derivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_26.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_26.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_27.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_27.RULE index 8c329c902cd..b428ee28268 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-ND-2.5 +--- + https://licenses.nuget.org/CC-BY-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_27.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_27.yml deleted file mode 100644 index 3b8f03613a9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-ND-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_28.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_28.RULE index d6a627cf146..a005ea956d4 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_28.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_28.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_28.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_29.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_29.RULE index 7b9cd4253f5..8a79b2a3d6b 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_29.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-2.5 +--- + LICENSE {{CC-BY-ND-2.5}} https://spdx.org/licenses/CC-BY-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_29.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_29.yml deleted file mode 100644 index bd9c7534528..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_3.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_3.RULE index c713ef18bc3..2cf0add7ca2 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_3.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_3.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_30.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_30.RULE index a24d7b0d445..d0c33e41ba2 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_30.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-2.5 +--- + {{CC-BY-ND-2.5}} https://spdx.org/licenses/CC-BY-ND-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_30.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_30.yml deleted file mode 100644 index bd9c7534528..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_4.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_4.RULE index 7bde99e1c89..16e78336157 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_4.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_4.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_5.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_5.RULE index 515197e42b3..75f061a7064 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_5.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_5.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_6.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_6.RULE index 5bfddcdb156..512ea9f9234 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_6.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_6.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_7.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_7.RULE index 8870f6c97a0..526d270e27b 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_7.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_7.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_8.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_8.RULE index 3e39867ae67..329acb56d45 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_8.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_8.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_9.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_9.RULE index 986c00c7d78..5186bd0af39 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_9.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_9.yml deleted file mode 100644 index 61bf4d23144..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_licensebutton.RULE index a2560f177a0..1ebca4ab0ec 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nd/2.5 +--- + https://licensebuttons.net/l/by-nd/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_licensebutton.yml deleted file mode 100644 index 5c62d57d227..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nd/2.5 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_url_1.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_url_1.RULE index e437905b37d..d5172fe1642 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-2.5 +--- + https://spdx.org/licenses/cc-by-nd-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_url_1.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_url_1.yml deleted file mode 100644 index a22a2b0a30e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-2.5 diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_url_2.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_url_2.RULE index 991750754b4..c2d5cef219b 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-2.5.html +--- + https://spdx.org/licenses/cc-by-nd-2.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_url_2.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_url_2.yml deleted file mode 100644 index 64d43b887f0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-2.5.html diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_url_glc_37.RULE b/src/licensedcode/data/rules/cc-by-nd-2.5_url_glc_37.RULE index 2de9ad3d0ca..17324ff83a2 100644 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_url_glc_37.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-2.5_url_glc_37.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/2.5 +--- + https://creativecommons.org/licenses/by-nd/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-2.5_url_glc_37.yml b/src/licensedcode/data/rules/cc-by-nd-2.5_url_glc_37.yml deleted file mode 100644 index 3581f8330b7..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-2.5_url_glc_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/2.5 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_1.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0-de_1.RULE index c4eaf971302..925bae4427a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0-de_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0-de +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution No Derivatives 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_1.yml b/src/licensedcode/data/rules/cc-by-nd-3.0-de_1.yml deleted file mode 100644 index 31aac3ca9f6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_2.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0-de_2.RULE index bfd4fd1e690..90e8cb3dd67 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0-de_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0-de +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-3.0-DE Creative Commons Attribution No Derivatives 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_2.yml b/src/licensedcode/data/rules/cc-by-nd-3.0-de_2.yml deleted file mode 100644 index 31aac3ca9f6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_3.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0-de_3.RULE index 61b151a3df4..617978bf215 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0-de_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-ND-3.0-DE +--- + https://licenses.nuget.org/CC-BY-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_3.yml b/src/licensedcode/data/rules/cc-by-nd-3.0-de_3.yml deleted file mode 100644 index 98100b68957..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-ND-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_4.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0-de_4.RULE index dd69c1b8c16..e482b888667 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0-de_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0-de +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_4.yml b/src/licensedcode/data/rules/cc-by-nd-3.0-de_4.yml deleted file mode 100644 index 31aac3ca9f6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_5.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0-de_5.RULE index 7b0ca760cd0..e6072a1d480 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0-de_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-3.0-DE +--- + {{CC-BY-ND-3.0-DE}} https://spdx.org/licenses/CC-BY-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_5.yml b/src/licensedcode/data/rules/cc-by-nd-3.0-de_5.yml deleted file mode 100644 index 8ad589e93fa..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_6.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0-de_6.RULE index 3725d5d13ac..b6173bb4451 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0-de_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-3.0-DE +--- + LICENSE {{CC-BY-ND-3.0-DE}} https://spdx.org/licenses/CC-BY-ND-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0-de_6.yml b/src/licensedcode/data/rules/cc-by-nd-3.0-de_6.yml deleted file mode 100644 index 8ad589e93fa..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0-de_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0.RULE index 74cd5e60571..3706137a756 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/3.0/ +--- + http://creativecommons.org/licenses/by-nd/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0.SPDX.RULE index c0986908b7c..a6b6254febf 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NoDerivs 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nd-3.0.SPDX.yml deleted file mode 100644 index 8cc66dff9ca..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0.yml b/src/licensedcode/data/rules/cc-by-nd-3.0.yml deleted file mode 100644 index 15d1454f3d3..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_1.RULE index 939f4e9feb6..291ef9fd34e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/3.0/legalcode +--- + http://creativecommons.org/licenses/by-nd/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_1.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_1.yml deleted file mode 100644 index f781dc924e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_10.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_10.RULE index 51ecc5cebdf..f7e2503afdd 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_10.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_10.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_11.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_11.RULE index 8ee12066505..b4a6f3532e7 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_11.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_11.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_12.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_12.RULE index 095e43ada09..964e2723a75 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_12.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_12.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_13.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_13.RULE index 0a464d0c11f..35140d9c1a9 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_13.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_13.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_14.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_14.RULE index 553710f52f1..d168ca11607 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_14.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_14.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_15.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_15.RULE index ae6c26ffda0..5b00a645dff 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_15.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_15.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_16.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_16.RULE index 7a481d6b57c..1c24158898d 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_16.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_16.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_17.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_17.RULE index 13df9553f7a..0822bf49cd9 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_17.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_17.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_18.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_18.RULE index 3cb55ddf343..44de7cc0f2c 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_18.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_18.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_19.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_19.RULE index 4d48b61e144..0fef434744e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_19.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_19.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_2.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_2.RULE index fd048e20645..327a8f8aa8b 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_2.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_2.yml deleted file mode 100644 index 667597b0de6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_20.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_20.RULE index fa2d2df9b17..53644b99b4c 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_20.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_20.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_21.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_21.RULE index ff4659f520f..ddc55e46e42 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 3.0 Unported License THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_21.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_21.yml deleted file mode 100644 index c4e8f2e14d2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_22.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_22.RULE index cdbe809921e..189e6fb62b6 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/3.0/igo +--- + http://creativecommons.org/licenses/by-nd/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_22.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_22.yml deleted file mode 100644 index 2846565ec30..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_23.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_23.RULE index 49501f2dc65..24b3e447520 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/3.0/igo/legalcode +--- + http://creativecommons.org/licenses/by-nd/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_23.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_23.yml deleted file mode 100644 index cca27f61280..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_24.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_24.RULE index 57d25b41ac4..b2ee3a95a94 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/3.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-nd/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_24.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_24.yml deleted file mode 100644 index 46256446a24..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_25.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_25.RULE index e183aa3fca0..55b69cab09e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/3.0/igo +--- + https://creativecommons.org/licenses/by-nd/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_25.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_25.yml deleted file mode 100644 index 3ab1bede2c0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_26.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_26.RULE index 1ce0aecffc5..f3aba3ec28d 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/3.0/igo/legalcode +--- + https://creativecommons.org/licenses/by-nd/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_26.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_26.yml deleted file mode 100644 index 2c3a0880208..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_27.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_27.RULE index 42e1a65bcbe..a28e968a824 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/3.0/legalcode +--- + https://creativecommons.org/licenses/by-nd/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_27.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_27.yml deleted file mode 100644 index a5b546c040b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_28.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_28.RULE index 5f1ac10f4fb..6d30dc52d1e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/3.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-nd/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_28.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_28.yml deleted file mode 100644 index efb42fa205a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_29.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_29.RULE index c91999d6b79..dac134cb29c 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_29.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-NoDerivs 3.0 Unported CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_29.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_29.yml deleted file mode 100644 index 667597b0de6..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_3.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_3.RULE index f28eb79074c..1d77875cfae 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_3.RULE @@ -1,5 +1,12 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/3.0/ +--- + * This work is licensed under the Creative Commons Attribution-NoDerivs 3.0 * Unported License. To view a copy of this license, visit * http://creativecommons.org/licenses/by-nd/3.0/ or send a letter to * Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, - * 94041, USA. + * 94041, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_3.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_3.yml deleted file mode 100644 index 11b1fa1157e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_30.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_30.RULE index 0e2a6f5dd0d..9e7097178f1 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-3.0 Creative Commons Attribution No Derivatives 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_30.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_30.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_31.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_31.RULE index 926a36d294a..e7516b0de7c 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_31.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_31.yml deleted file mode 100644 index e91051c685a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_32.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_32.RULE index fae389ef334..7429a741910 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution No Derivatives 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_32.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_32.yml deleted file mode 100644 index e91051c685a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_33.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_33.RULE index 351fb1829a2..7854221d3e4 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_33.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 3.0 Unported CC-BY-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_33.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_33.yml deleted file mode 100644 index e91051c685a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_34.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_34.RULE index 6154ef87726..e89c73a4deb 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_34.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_34.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_34.yml deleted file mode 100644 index 9e5e5a63ef9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_35.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_35.RULE index 72ef6a3ef70..1ce6ad8578a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_35.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution No Derivatives 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_35.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_35.yml deleted file mode 100644 index 9e5e5a63ef9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_36.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_36.RULE index 6824a7dc3b1..bf120555346 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_36.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_36.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_36.yml deleted file mode 100644 index 9e5e5a63ef9..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_37.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_37.RULE index 2828f5af3d6..a8f6560c6d6 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-3.0 Creative Commons Attribution No Derivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_37.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_37.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_38.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_38.RULE index 195f126d3b3..ad16a34a91b 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-ND-3.0 +--- + https://licenses.nuget.org/CC-BY-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_38.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_38.yml deleted file mode 100644 index db451190289..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-ND-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_39.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_39.RULE index 554d4ec50a6..d185a856634 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_39.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_39.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_4.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_4.RULE index 3ff6b6e3134..44168d6bccd 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_4.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/3.0/us/ +--- + This page is licensed under a license http://creativecommons.org/licenses/by-nd/3.0/us/ Creative Commons Attribution-NoDerivs 3.0 United States License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_4.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_4.yml deleted file mode 100644 index 6c179987ea2..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_40.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_40.RULE index 53f504ff148..443ab1aa2e1 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_40.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-3.0 +--- + {{CC-BY-ND-3.0}} https://spdx.org/licenses/CC-BY-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_40.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_40.yml deleted file mode 100644 index c68d7af5734..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_41.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_41.RULE index c7d24014fdd..7e76be9e180 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_41.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-3.0 +--- + LICENSE {{CC-BY-ND-3.0}} https://spdx.org/licenses/CC-BY-ND-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_41.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_41.yml deleted file mode 100644 index c68d7af5734..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_5.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_5.RULE index 83dc7dc1e99..9f680c1f1e1 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_notice: yes +relevance: 100 +--- + We distribute them under the license called Creative Commons Attribution-NoDerivs 3.0 Unported. The UI Kits, mockups, icons, templates, themes and photos are free for personal use and also free for commercial use, \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_5.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_5.yml deleted file mode 100644 index f5299a08c0c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_6.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_6.RULE index 92afe045985..9efd9d92746 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://designmodo.com/ +--- + LICENSE: Use for Free, but Please Set a Link We distribute them under the license called Creative Commons Attribution-NoDerivs 3.0 Unported. diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_6.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_6.yml deleted file mode 100644 index cce2516615a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://designmodo.com/ diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_7.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_7.RULE index 737a4dab075..453651a4da9 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_7.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_7.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_8.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_8.RULE index fa29b2abdec..37c975b9ad7 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_8.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_8.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_9.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_9.RULE index 28125539035..e68fccdf737 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_9.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_9.yml deleted file mode 100644 index 87608f0ae44..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_licensebutton.RULE index 8727702f7b5..aaf8e31887a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nd/3.0 +--- + https://licensebuttons.net/l/by-nd/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_licensebutton.yml deleted file mode 100644 index fa9f0f06dee..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nd/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_url_1.RULE index ccf1bbb6531..dcab3b36ecd 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-3.0 +--- + https://spdx.org/licenses/cc-by-nd-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_url_1.yml deleted file mode 100644 index 84ef5f88c26..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-3.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_url_2.RULE index fcefb76fe5a..a5c6b68afc1 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-3.0.html +--- + https://spdx.org/licenses/cc-by-nd-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_url_2.yml deleted file mode 100644 index 6cbb082906b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-3.0.html diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_url_glc_39.RULE b/src/licensedcode/data/rules/cc-by-nd-3.0_url_glc_39.RULE index 025b3a1aeec..09060ea9958 100644 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_url_glc_39.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-3.0_url_glc_39.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/3.0 +--- + https://creativecommons.org/licenses/by-nd/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-3.0_url_glc_39.yml b/src/licensedcode/data/rules/cc-by-nd-3.0_url_glc_39.yml deleted file mode 100644 index fa65e5d099b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-3.0_url_glc_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/3.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0.RULE index d3c6881ae8f..23273b752b5 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_notice: yes +--- + Attribution-NoDerivatives 4.0 International ======================================================================= diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0.SPDX.RULE index a049f9ff365..164d245f3bb 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Creative Commons Attribution-NoDerivatives 4.0 International Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-nd-4.0.SPDX.yml deleted file mode 100644 index f675978dfd8..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0.yml b/src/licensedcode/data/rules/cc-by-nd-4.0.yml deleted file mode 100644 index 0b97e313d3b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_1.RULE index 4460503db67..f2cd4081054 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_notice: yes +--- + Creative Commons Attribution-NoDerivatives 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NoDerivatives 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_1.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_1.yml deleted file mode 100644 index 0b97e313d3b..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_10.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_10.RULE index e1a515da455..097d864abec 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_10.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_10.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_11.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_11.RULE index 870ee835596..fddbe1e8811 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivs 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_11.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_11.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_12.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_12.RULE index 0a5b5c9160a..8603eada269 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_12.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_12.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_13.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_13.RULE index 5eb1c81a22d..aca693612fe 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivs 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_13.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_13.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_14.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_14.RULE index 26b87fec2c6..00a98429bb2 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_14.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_14.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_15.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_15.RULE index 28295543d08..243c8cd83bd 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivs 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_15.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_15.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_16.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_16.RULE index c26ad3b28f8..f64217c2c66 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_16.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_16.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_17.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_17.RULE index 7576227096f..0f1d4bdc124 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-No Derivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_17.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_17.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_18.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_18.RULE index 77d58536aed..8f4fea30155 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/4.0/legalcode +--- + Creative Commons Attribution-NoDerivatives 4.0 International Public License https://creativecommons.org/licenses/by-nd/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_18.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_18.yml deleted file mode 100644 index 303e9ee1b47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_19.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_19.RULE index 3cbd6640e8a..0dc4865be4c 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_19.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_19.yml deleted file mode 100644 index bc0f765dd0c..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_2.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_2.RULE index 332998297f8..f0c55d4fa07 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/4.0/legalcode +--- + https://creativecommons.org/licenses/by-nd/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_2.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_2.yml deleted file mode 100644 index f6e8a15db7e..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_20.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_20.RULE index 490959e734d..fc3fc2a6741 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_notice: yes +relevance: 99 +--- + Distributed under CC BY-ND license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_20.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_20.yml deleted file mode 100644 index 61a391e14cd..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_21.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_21.RULE index d00fd8cbb9e..93def0dddea 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/4.0/legalcode +--- + http://creativecommons.org/licenses/by-nd/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_21.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_21.yml deleted file mode 100644 index c0cd1c3d1a5..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_22.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_22.RULE index e0abc055a1b..bcdecf931e4 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/4.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-nd/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_22.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_22.yml deleted file mode 100644 index af467b52f04..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_23.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_23.RULE index a7a8f0a4008..390aac4485e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/4.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-nd/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_23.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_23.yml deleted file mode 100644 index 5700f3f2c91..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_24.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_24.RULE index 468b2582839..5f5da584d83 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_24.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_text: yes +--- + Creative Commons Attribution-NoDerivatives 4.0 International Creative Commons Corporation ("Creative Commons") is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_24.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_24.yml deleted file mode 100644 index 25f5bd5d493..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_25.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_25.RULE index 090352a103e..2c60d80342e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-4.0 Creative Commons Attribution No Derivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_25.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_25.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_26.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_26.RULE index 7c58d1fcc4e..4e326ee89d5 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_26.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_26.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_26.yml deleted file mode 100644 index 54a8f152ae1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_27.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_27.RULE index 0e6daec1519..d44385d6cee 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution No Derivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_27.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_27.yml deleted file mode 100644 index 54a8f152ae1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_28.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_28.RULE index cfbeaefc586..50670a816c9 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_28.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution No Derivatives 4.0 International CC-BY-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_28.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_28.yml deleted file mode 100644 index 54a8f152ae1..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_29.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_29.RULE index 9d8f9d81cc1..cea241db78f 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_29.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_29.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_29.yml deleted file mode 100644 index 303d0e0090a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_3.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_3.RULE index bebd999d697..62dbcfe57a7 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribute-NoDerivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_3.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_3.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_30.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_30.RULE index 3fc68c094ae..cad7ed025db 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution No Derivatives 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_30.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_30.yml deleted file mode 100644 index 303d0e0090a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_31.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_31.RULE index b64ab634468..87ae7243150 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_31.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_31.yml deleted file mode 100644 index 303d0e0090a..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_32.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_32.RULE index 717cc0c51c0..c502cbf3329 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-ND-4.0 Creative Commons Attribution No Derivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_32.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_32.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_33.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_33.RULE index d9d2e5ece5f..8ff12bf9b1a 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_33.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-ND-4.0 +--- + https://licenses.nuget.org/CC-BY-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_33.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_33.yml deleted file mode 100644 index 57bdec953a0..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-ND-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_34.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_34.RULE index 790a6123d67..e1d1ef009b3 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_34.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_34.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_35.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_35.RULE index 71c259f1b57..6678b079f7e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-4.0 +--- + {{CC-BY-ND-4.0}} https://spdx.org/licenses/CC-BY-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_35.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_35.yml deleted file mode 100644 index 26536c987e3..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_36.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_36.RULE index c71aec88562..79762fc7108 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_36.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-ND-4.0 +--- + LICENSE {{CC-BY-ND-4.0}} https://spdx.org/licenses/CC-BY-ND-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_36.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_36.yml deleted file mode 100644 index 26536c987e3..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-ND-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_4.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_4.RULE index c3513858f23..45166c8fb50 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_4.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_4.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_5.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_5.RULE index 86d4a00d6b3..bdd79d8ed06 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-NoDerivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_5.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_5.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_6.RULE index fa21f5aa152..9f4a01e023e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_6.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_6.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_7.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_7.RULE index e445029c60b..6148c852a8e 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-NoDerivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_7.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_7.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_8.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_8.RULE index 97370fe45ce..1b872030181 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_8.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_8.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_9.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_9.RULE index 29fe1a35a2f..de404f4bfb0 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-No Derivatives 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_9.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_9.yml deleted file mode 100644 index 7cbdfba9f47..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_licensebutton.RULE index e68059e3ba4..808ae1879f3 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-nd/4.0 +--- + https://licensebuttons.net/l/by-nd/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_licensebutton.yml deleted file mode 100644 index 54f5772b454..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-nd/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_url_1.RULE index 98a30c5aa8a..ffca3be3ad9 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-4.0 +--- + https://spdx.org/licenses/cc-by-nd-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_1.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_url_1.yml deleted file mode 100644 index 1614521cf85..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-4.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_url_2.RULE index d078a52fc6c..92a93bbd622 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-nd-4.0.html +--- + https://spdx.org/licenses/cc-by-nd-4.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_2.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_url_2.yml deleted file mode 100644 index 1ad81448674..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-nd-4.0.html diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge.RULE index f42497a5cea..1638a1e68ea 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/4.0 +--- + [![License: CC BY-ND 4.0](https://licensebuttons.net/l/by-nd/4.0/80x15.png)](https://creativecommons.org/licenses/by-nd/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge.yml deleted file mode 100644 index 9deb225fe38..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge_1.RULE index 0f76a96444c..bc1b1c79e68 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/4.0 + - https://img.shields.io/badge/License-CC%20BY--ND%204.0-lightgrey.svg +--- + [![License: CC BY-ND 4.0](https://img.shields.io/badge/License-CC%20BY--ND%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nd/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge_1.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge_1.yml deleted file mode 100644 index 88f58d43b37..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_badge_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/4.0 - - https://img.shields.io/badge/License-CC%20BY--ND%204.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_40.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_40.RULE index 33de95163d3..b9041c3eb22 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_40.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_40.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nd/4.0 +--- + http://creativecommons.org/licenses/by-nd/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_40.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_40.yml deleted file mode 100644 index 6726dd93e80..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nd/4.0 diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_41.RULE b/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_41.RULE index 1aca5ee7e18..3a7c1e2dd95 100644 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_41.RULE +++ b/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_41.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-nd/4.0 +--- + https://creativecommons.org/licenses/by-nd/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_41.yml b/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_41.yml deleted file mode 100644 index c524b20e3e4..00000000000 --- a/src/licensedcode/data/rules/cc-by-nd-4.0_url_glc_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-nd/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0.RULE index a0a8d967129..236f9dccd41 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/1.0/ +--- + http://creativecommons.org/licenses/by-sa/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0.SPDX.RULE index 894d110790f..cc2ea215a63 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-sa-1.0.SPDX.yml deleted file mode 100644 index f84397937e3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0.yml b/src/licensedcode/data/rules/cc-by-sa-1.0.yml deleted file mode 100644 index b0aa7d1e1e9..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_1.RULE index c4c0e33b222..6acb3bf000a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/1.0/legalcode +--- + http://creativecommons.org/licenses/by-sa/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_1.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_1.yml deleted file mode 100644 index 38175fd1f7e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_10.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_10.RULE index af139333674..37ee2ab188f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_10.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_10.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_11.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_11.RULE index 671c2a61c0c..8f352192aec 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/sa/1.0 +--- + http://creativecommons.org/licenses/sa/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_11.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_11.yml deleted file mode 100644 index d8aa035dde3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/sa/1.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_12.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_12.RULE index b41437a2ea8..163c00c6031 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/1.0/legalcode +--- + https://creativecommons.org/licenses/by-sa/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_12.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_12.yml deleted file mode 100644 index 86ea7a71736..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_13.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_13.RULE index f7cb0727b38..88b5ca93769 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/sa/1.0 +--- + https://creativecommons.org/licenses/sa/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_13.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_13.yml deleted file mode 100644 index af01932baae..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/sa/1.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_14.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_14.RULE index e77286c4a54..4e6187c88f5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/sa/1.0/legalcode +--- + https://creativecommons.org/licenses/sa/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_14.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_14.yml deleted file mode 100644 index f6347b7263e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/sa/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_15.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_15.RULE index b92adcf97c3..ed949add6b9 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/sa/2.0/legalcode +--- + https://creativecommons.org/licenses/sa/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_15.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_15.yml deleted file mode 100644 index da7133c91fd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/sa/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_16.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_16.RULE index 8692cf9799e..a99750e4c6d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-ShareAlike 1.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_16.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_16.yml deleted file mode 100644 index f67b65e1972..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_17.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_17.RULE index c58efbfaecb..e3a2031c8dc 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-1.0 Creative Commons Attribution Share Alike 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_17.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_17.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_18.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_18.RULE index ffa57f76dc3..80b629b5c1a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_18.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_18.yml deleted file mode 100644 index d05a618861b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_19.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_19.RULE index 3adf92728f4..a8638702eb8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Share Alike 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_19.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_19.yml deleted file mode 100644 index d05a618861b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_2.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_2.RULE index c482791f2ef..779a5f1a075 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/1.0/ +--- + Creative Commons Attribution-Share Alike 1.0 Generic (CC-BY-SA 1.0) link: http://creativecommons.org/licenses/by-sa/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_2.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_2.yml deleted file mode 100644 index b0aa7d1e1e9..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_20.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_20.RULE index 31270bbd25e..4df2b98f94d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 1.0 Generic CC-BY-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_20.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_20.yml deleted file mode 100644 index d05a618861b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_21.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_21.RULE index 1ee4eeffdf3..abb0ad36b52 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_21.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_21.yml deleted file mode 100644 index e024984d945..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_22.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_22.RULE index 498fcf8db16..c127b97f27b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Share Alike 1.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_22.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_22.yml deleted file mode 100644 index e024984d945..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_23.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_23.RULE index 8d5f9769e41..9213bf11349 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_23.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_23.yml deleted file mode 100644 index e024984d945..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_24.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_24.RULE index 3fe24d38031..b06947ce572 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-1.0 Creative Commons Attribution Share Alike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_24.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_24.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_25.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_25.RULE index 3ee5d8aa64e..4f1c79a9785 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-1.0 +--- + https://licenses.nuget.org/CC-BY-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_25.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_25.yml deleted file mode 100644 index 47391bfbd07..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-1.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_26.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_26.RULE index 11f61ef5f29..2f545801920 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_26.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_26.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_27.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_27.RULE index d187d5df802..e8f2767d17a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-1.0 +--- + LICENSE {{CC-BY-SA-1.0}} https://spdx.org/licenses/CC-BY-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_27.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_27.yml deleted file mode 100644 index 8af65f23264..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-1.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_28.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_28.RULE index b97081f470f..b9e87482533 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-1.0 +--- + {{CC-BY-SA-1.0}} https://spdx.org/licenses/CC-BY-SA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_28.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_28.yml deleted file mode 100644 index 8af65f23264..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-1.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_3.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_3.RULE index be939f6bbac..2f450421a36 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_3.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_3.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_4.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_4.RULE index 2f819dedf93..07db9d3e0d4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_4.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_4.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_5.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_5.RULE index 9a2dd660b90..1e49e405368 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_5.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_5.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_6.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_6.RULE index b49d3f3a7ca..4a2b3a4fdcc 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_6.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_6.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_7.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_7.RULE index a7c804370d0..31ffcaadf7d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_7.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_7.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_8.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_8.RULE index 34acab04578..9ae5df24dec 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_8.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_8.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_9.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_9.RULE index 5449b8c9970..df0668ebcfb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_9.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_9.yml deleted file mode 100644 index d1f38b2af5b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_license_button.RULE index b13b15bac39..4dcab5927fc 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/sa/1.0/ +--- + https://licensebuttons.net/l/sa/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_license_button.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_license_button.yml deleted file mode 100644 index e63d4753c37..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/sa/1.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_licensebutton.RULE index 0fc0129c2af..1879b4304ed 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-sa/1.0 +--- + https://licensebuttons.net/l/by-sa/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_licensebutton.yml deleted file mode 100644 index 9ed860b34c9..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-sa/1.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_url_1.RULE index ad8ed856c00..c15c36f9e66 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-1.0 +--- + https://spdx.org/licenses/cc-by-sa-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_url_1.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_url_1.yml deleted file mode 100644 index 08a34bf7ef0..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-1.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_url_2.RULE index 68c2655c4a8..7e4a7077e39 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-1.0.html +--- + https://spdx.org/licenses/cc-by-sa-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_url_2.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_url_2.yml deleted file mode 100644 index 9816ce27acb..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-1.0.html diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_url_glc_43.RULE b/src/licensedcode/data/rules/cc-by-sa-1.0_url_glc_43.RULE index 040e26874ba..790d324d512 100644 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_url_glc_43.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-1.0_url_glc_43.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/1.0 +--- + https://creativecommons.org/licenses/by-sa/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-1.0_url_glc_43.yml b/src/licensedcode/data/rules/cc-by-sa-1.0_url_glc_43.yml deleted file mode 100644 index de1278d9c96..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-1.0_url_glc_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/1.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_1.RULE index 392a70464d4..9782a4fef8e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Share Alike 2.0 England and Wales \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_1.yml deleted file mode 100644 index e48a39dbb56..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_10.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_10.RULE index a341a2232ad..cb229f9c627 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_10.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-2.0-UK +--- + LICENSE {{CC-BY-SA-2.0-UK}} https://spdx.org/licenses/CC-BY-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_10.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_10.yml deleted file mode 100644 index 38862f14528..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-2.0-UK diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_11.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_11.RULE index 426148c711b..3655a170300 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_11.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-2.0-UK +--- + {{CC-BY-SA-2.0-UK}} https://spdx.org/licenses/CC-BY-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_11.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_11.yml deleted file mode 100644 index 38862f14528..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-2.0-UK diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_2.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_2.RULE index c78374a31ac..0b479d367c5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-2.0-UK Creative Commons Attribution Share Alike 2.0 England and Wales \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_2.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_2.yml deleted file mode 100644 index e48a39dbb56..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_3.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_3.RULE index fa82f69e898..489dec8b9fa 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Share Alike 2.0 England and Wales \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_3.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_3.yml deleted file mode 100644 index 9d63ea364d0..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_4.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_4.RULE index 83356f07fd6..ffb9a820c99 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 2.0 England and Wales CC-BY-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_4.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_4.yml deleted file mode 100644 index 9d63ea364d0..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_5.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_5.RULE index b3b1befae95..8348d6263f3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_5.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_5.yml deleted file mode 100644 index e3c84a59927..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_6.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_6.RULE index 0a8e5ce38e2..ca9f0c01279 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Share Alike 2.0 England and Wales \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_6.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_6.yml deleted file mode 100644 index e3c84a59927..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_7.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_7.RULE index b4e18783b89..59fd8877048 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_7.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_7.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_7.yml deleted file mode 100644 index e3c84a59927..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_8.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_8.RULE index d6c0e963b4a..c24438877e2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_8.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-2.0-UK +--- + https://licenses.nuget.org/CC-BY-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_8.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_8.yml deleted file mode 100644 index 8cb2bbb63c6..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-2.0-UK diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_9.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_9.RULE index 45180405f20..b67465c58a7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_9.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0-uk +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-2.0-UK \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_9.yml b/src/licensedcode/data/rules/cc-by-sa-2.0-uk_9.yml deleted file mode 100644 index e48a39dbb56..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0-uk_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0-uk -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0.RULE index b0e2393a621..a1e61e2a97a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/ +--- + http://creativecommons.org/licenses/by-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0.SPDX.RULE index c8b59645560..c800c2b79c7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-sa-2.0.SPDX.yml deleted file mode 100644 index 9c92c4e1cb2..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0.yml b/src/licensedcode/data/rules/cc-by-sa-2.0.yml deleted file mode 100644 index d9058167165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_1.RULE index 9d70e09277f..382b6a0ed26 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/legalcode +--- + http://creativecommons.org/licenses/by-sa/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_1.yml deleted file mode 100644 index 4b706d6b216..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_10.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_10.RULE index e9d8daa92ba..6be39805785 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0/ +--- + - Creative Commons By-Sa https://creativecommons.org/licenses/by-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_10.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_10.yml deleted file mode 100644 index 386a867c901..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_11.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_11.RULE index b32bc084d28..350e45de44c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/fr/deed.en +--- + CC BY-SA 2.0 fr (http://creativecommons.org/licenses/by-sa/2.0/fr/deed.en \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_11.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_11.yml deleted file mode 100644 index 195090ca911..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/fr/deed.en diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_12.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_12.RULE index 6bddfc1f34c..89e783e1a4d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0/fr/deed.en +--- + CC BY-SA 2.0 fr (https://creativecommons.org/licenses/by-sa/2.0/fr/deed.en \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_12.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_12.yml deleted file mode 100644 index c11f569dc9b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0/fr/deed.en diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_13.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_13.RULE index 1941ed3ac08..9a4077b62f2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_13.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_13.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_14.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_14.RULE index c2c682a8f77..c0e380e45bb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_14.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_14.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_15.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_15.RULE index 03024cdeee4..8df170d8b8c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_15.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_15.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_16.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_16.RULE index 8ba1f9fc908..d8f94a6971c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_16.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_16.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_17.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_17.RULE index e919f6589b9..4b7f1abb205 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_17.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_17.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_18.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_18.RULE index 77ae1488fdd..fe3ba1f4892 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_18.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_18.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_19.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_19.RULE index a49a2a68f2c..59fe3c61ca8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_19.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_19.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_2.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_2.RULE index ba82ba41b79..f7763e50a85 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/ +--- + - Creative Commons By-Sahttp://creativecommons.org/licenses/by-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_2.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_2.yml deleted file mode 100644 index d9058167165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_20.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_20.RULE index e4bc1aab8b4..6e763aaf1db 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_20.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_20.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_21.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_21.RULE index 7328d15880e..5386aa8f6dd 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_notice: yes +relevance: 80 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/deed.en +--- + licensed CC-By-SA \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_21.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_21.yml deleted file mode 100644 index b3c4602f459..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_notice: yes -relevance: 80 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_22.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_22.RULE index ab3b961e9b8..8538f42fbac 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 80 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/deed.en +--- + http://creativecommons.org/licenses/by-sa/2.0/deed.en \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_22.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_22.yml deleted file mode 100644 index a70a8e4445a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 80 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_23.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_23.RULE index 9803aa28675..829e458f04d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_notice: yes +relevance: 80 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0/deed.en +--- + licensed CC-By-SA \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_23.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_23.yml deleted file mode 100644 index af0ae8ad59a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_notice: yes -relevance: 80 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_24.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_24.RULE index 491955ed899..19358c711c6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 80 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0/deed.en +--- + https://creativecommons.org/licenses/by-sa/2.0/deed.en \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_24.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_24.yml deleted file mode 100644 index 185555ae0d3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 80 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0/deed.en diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_25.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_25.RULE index b42cb495b7a..725d02a2474 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.1/legalcode +--- + http://creativecommons.org/licenses/by-sa/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_25.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_25.yml deleted file mode 100644 index 7c1dfb8971a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_26.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_26.RULE index fbaee738b6d..22852b374f8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/sa/2.0 +--- + http://creativecommons.org/licenses/sa/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_26.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_26.yml deleted file mode 100644 index d9400b50492..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_27.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_27.RULE index eeab6202a27..d07c884b6aa 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0/legalcode +--- + https://creativecommons.org/licenses/by-sa/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_27.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_27.yml deleted file mode 100644 index ac49b6e2f21..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_28.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_28.RULE index f634fa8a1c5..c640b00cd1b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.1/legalcode +--- + https://creativecommons.org/licenses/by-sa/2.1/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_28.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_28.yml deleted file mode 100644 index 583a7f2ceae..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.1/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_29.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_29.RULE index db1281a6423..511b2aed13e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike license V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_29.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_29.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_3.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_3.RULE index fe8497fc251..a73f66f2b0d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_3.RULE @@ -1 +1,7 @@ -{{Creative Commons Attribution-Share Alike 2.0 Generic (CC-BY-SA 2.0)}} +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + +{{Creative Commons Attribution-Share Alike 2.0 Generic (CC-BY-SA 2.0)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_3.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_3.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_30.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_30.RULE index 6614ecc4996..4bc1a827b7c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike license V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_30.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_30.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_31.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_31.RULE index 04732181089..44927923bbe 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_31.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_31.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_32.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_32.RULE index 476b390a06d..685b3bf7a52 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_32.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_32.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_33.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_33.RULE index 239ae998cf6..5247608fc6a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike license V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_33.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_33.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_34.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_34.RULE index ceb6076ddb2..886dca12be2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike license V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_34.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_34.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_35.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_35.RULE index 548cbf436a3..59849d681c1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_35.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_35.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_36.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_36.RULE index 5ea1d14b3ed..7be51179ad5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_36.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_36.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_37.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_37.RULE index c71dd7c2e81..b7e58e56bf3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_37.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-ShareAlike 2.0 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_37.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_37.yml deleted file mode 100644 index 34ce04700f0..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_38.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_38.RULE index 5d32141fb43..7b7903b48d4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_38.RULE @@ -1 +1,8 @@ -{{Creative Commons Attribution Share Alike 2.0 Generic}} +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + +{{Creative Commons Attribution Share Alike 2.0 Generic}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_38.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_38.yml deleted file mode 100644 index 2ed9dbaae9a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_38.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_39.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_39.RULE index 915e2567be6..414adef0520 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-2.0 Creative Commons Attribution Share Alike 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_39.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_39.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_4.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_4.RULE index 62b9f5dfde8..4c67b6d9f32 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/uk/ +--- + license: CC-BY-SA-2.0-UK license link: http://creativecommons.org/licenses/by-sa/2.0/uk/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_4.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_4.yml deleted file mode 100644 index b7cee533bd2..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/uk/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_40.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_40.RULE index a3bbdcf3e3f..686e65f0249 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_40.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Share Alike 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_40.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_40.yml deleted file mode 100644 index a8ebf47c8d8..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_40.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_41.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_41.RULE index ef1aca88db7..bcd9089ac10 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_41.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_41.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_41.yml deleted file mode 100644 index 42a63463456..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_42.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_42.RULE index f1efc9f2e6e..99ba5643d8a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_42.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Share Alike 2.0 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_42.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_42.yml deleted file mode 100644 index 42a63463456..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_42.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_43.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_43.RULE index 01d532ffc39..743f010c41e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_43.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_43.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_43.yml deleted file mode 100644 index 42a63463456..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_43.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_44.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_44.RULE index 31a4ef2bb15..870c7f44f3a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-2.0 Creative Commons Attribution Share Alike 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_44.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_44.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_45.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_45.RULE index 52fddc63995..ec23c00bfa7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_45.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-2.0 +--- + https://licenses.nuget.org/CC-BY-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_45.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_45.yml deleted file mode 100644 index 080e8330054..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-2.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_46.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_46.RULE index 7ee4485eefd..80fdc554ee7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_46.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_46.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_46.yml deleted file mode 100644 index a0e458c5a66..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_47.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_47.RULE index 1fc1a26df31..a67af3e7d7a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_47.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-2.0 +--- + LICENSE {{CC-BY-SA-2.0}} https://spdx.org/licenses/CC-BY-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_47.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_47.yml deleted file mode 100644 index b9ee7817d9c..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-2.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_48.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_48.RULE index 90a776ee16e..310c8395aa4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_48.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-2.0 +--- + {{CC-BY-SA-2.0}} https://spdx.org/licenses/CC-BY-SA-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_48.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_48.yml deleted file mode 100644 index b9ee7817d9c..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-2.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_5.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_5.RULE index 49006f6c971..13828c3fe18 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_5.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/ +--- + available under following licenses: - Creative Commons By-Sa http://creativecommons.org/licenses/by-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_5.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_5.yml deleted file mode 100644 index 8d4ba18def6..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_6.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_6.RULE index 44f97866955..65960d3e665 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/ +--- + licenses: - Creative Commons By-Sa http://creativecommons.org/licenses/by-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_6.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_6.yml deleted file mode 100644 index 8d4ba18def6..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_7.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_7.RULE index f6ada7cf42d..26fe5c06c92 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/ +--- + - Creative Commons By-Sa http://creativecommons.org/licenses/by-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_7.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_7.yml deleted file mode 100644 index b691084bfea..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_8.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_8.RULE index 31a56168eaa..eff1106146e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0/ +--- + available under following licenses: - Creative Commons By-Sa https://creativecommons.org/licenses/by-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_8.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_8.yml deleted file mode 100644 index 08c2fadfb73..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_9.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_9.RULE index f76abd8da1d..e13f35634c1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0/ +--- + licenses: - Creative Commons By-Sa https://creativecommons.org/licenses/by-sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_9.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_9.yml deleted file mode 100644 index 08c2fadfb73..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_license_button.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_license_button.RULE index e5010c891fb..6c6f127c49f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/sa/ +--- + https://licensebuttons.net/l/sa/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_license_button.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_license_button.yml deleted file mode 100644 index d5642b59d40..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/sa/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_license_button_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_license_button_1.RULE index 47b9acea110..a86daa378f8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_license_button_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_license_button_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/sa/2.0/ +--- + https://licensebuttons.net/l/sa/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_license_button_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_license_button_1.yml deleted file mode 100644 index 6d5f9611473..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_license_button_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/sa/2.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_licensebutton.RULE index e66a4b76b26..fd05425daea 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-sa/2.0 +--- + https://licensebuttons.net/l/by-sa/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_licensebutton.yml deleted file mode 100644 index 6106f605dfa..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_or_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_or_gpl-3.0-plus_1.RULE index 061b14d819e..7c49cf0fd19 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_or_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_or_gpl-3.0-plus_1.RULE @@ -1 +1,7 @@ -# Licence:: CC-BY-SA 2.0 or GPL-3+ +--- +license_expression: cc-by-sa-2.0 OR gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + +# Licence:: CC-BY-SA 2.0 or GPL-3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_or_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_or_gpl-3.0-plus_1.yml deleted file mode 100644 index a156c4ab80a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_or_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.0 OR gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_1.RULE index 5dcac84d10f..d69808aa54e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-2.0 OR odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.0/ + - http://www.opendatacommons.org/licenses/odbl/ +--- + available under both following licenses: - Creative Commons By-Sa http://creativecommons.org/licenses/by-sa/2.0/ - Open Database License http://www.opendatacommons.org/licenses/odbl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_1.yml deleted file mode 100644 index cff740e7e1a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0 OR odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.0/ - - http://www.opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_2.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_2.RULE index 33f463a0784..c7b70b7a291 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-2.0 OR odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0/ + - https://www.opendatacommons.org/licenses/odbl/ +--- + available under both following licenses: - Creative Commons By-Sa https://creativecommons.org/licenses/by-sa/2.0/ - Open Database License https://www.opendatacommons.org/licenses/odbl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_2.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_2.yml deleted file mode 100644 index b596695351b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_or_odbl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0 OR odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0/ - - https://www.opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_url_1.RULE index f0a080b6d46..aced2ee06bf 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-2.0 +--- + https://spdx.org/licenses/cc-by-sa-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_url_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_url_1.yml deleted file mode 100644 index 828e57766dc..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-2.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_url_2.RULE index ca1321130fe..7c84dda0e04 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-2.0.html +--- + https://spdx.org/licenses/cc-by-sa-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_url_2.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_url_2.yml deleted file mode 100644 index 23c6b6d1f29..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-2.0.html diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_url_glc_45.RULE b/src/licensedcode/data/rules/cc-by-sa-2.0_url_glc_45.RULE index 026016909db..ed5c7f20ec8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_url_glc_45.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.0_url_glc_45.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.0 +--- + https://creativecommons.org/licenses/by-sa/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.0_url_glc_45.yml b/src/licensedcode/data/rules/cc-by-sa-2.0_url_glc_45.yml deleted file mode 100644 index 79d70febc6d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.0_url_glc_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_1.RULE index ecfa6d77bed..22fc62761c4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.1-jp +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Share Alike 2.1 Japan \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_1.yml deleted file mode 100644 index 251505678b3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.1-jp -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_2.RULE b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_2.RULE index 68a67b6be80..ae9c731e193 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.1-jp +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-2.1-JP Creative Commons Attribution Share Alike 2.1 Japan \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_2.yml b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_2.yml deleted file mode 100644 index 251505678b3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.1-jp -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_3.RULE b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_3.RULE index 0f590b98d42..1a939c16f10 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.1-jp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-2.1-JP +--- + https://licenses.nuget.org/CC-BY-SA-2.1-JP \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_3.yml b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_3.yml deleted file mode 100644 index a8d3fe44f37..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.1-jp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-2.1-JP diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_4.RULE b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_4.RULE index 559f97071ec..bb5d32ecbfb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.1-jp +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-2.1-JP \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_4.yml b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_4.yml deleted file mode 100644 index 251505678b3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.1-jp -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_5.RULE b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_5.RULE index 9443b3d89cc..d7cd24b9a3a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.1-jp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-2.1-JP +--- + LICENSE {{CC-BY-SA-2.1-JP}} https://spdx.org/licenses/CC-BY-SA-2.1-JP \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_5.yml b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_5.yml deleted file mode 100644 index 614b10cc6b2..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.1-jp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-2.1-JP diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_6.RULE b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_6.RULE index 034e63772aa..112cbcec4ac 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.1-jp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-2.1-JP +--- + {{CC-BY-SA-2.1-JP}} https://spdx.org/licenses/CC-BY-SA-2.1-JP \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_6.yml b/src/licensedcode/data/rules/cc-by-sa-2.1-jp_6.yml deleted file mode 100644 index 614b10cc6b2..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.1-jp_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.1-jp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-2.1-JP diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5.RULE index 7a20855d1cc..81423795e2c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5/legalcode +--- + http://creativecommons.org/licenses/by-sa/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5.SPDX.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5.SPDX.RULE index 69a053acdb0..9f7344a3cd6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5.SPDX.yml b/src/licensedcode/data/rules/cc-by-sa-2.5.SPDX.yml deleted file mode 100644 index 7183b600267..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5.yml b/src/licensedcode/data/rules/cc-by-sa-2.5.yml deleted file mode 100644 index 33a1d3c6b13..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_1.RULE index 103299322a4..efa949e46a2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5/ +--- + http://creativecommons.org/licenses/by-sa/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_1.yml deleted file mode 100644 index 10e9b8651b3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_10.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_10.RULE index 35d71793afc..c92ff2f59a7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_10.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution-ShareAlike 2.5 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_10.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_10.yml deleted file mode 100644 index 366fbfb32f6..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_11.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_11.RULE index c72236bce64..8686489ace5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_11.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_11.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_11.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_12.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_12.RULE index 1eb0415183b..1e76f3f27b8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_12.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_12.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_12.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_13.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_13.RULE index 6dccbc1a3d2..f30ed5b92ed 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_13.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_13.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_13.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_14.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_14.RULE index 5a84d74a4fe..be17bb77ee6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_14.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_14.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_14.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_15.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_15.RULE index d31fc18080d..6b61a037791 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_15.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_15.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_15.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_15.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_16.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_16.RULE index 103ce707fae..cfd37a96efd 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_16.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_16.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_16.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_17.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_17.RULE index 77f88c0d093..5eeae24669d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_17.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_17.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 2.5 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_17.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_17.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_18.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_18.RULE index f01e1136201..922d9b54d77 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_18.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_18.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_18.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_19.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_19.RULE index e1d1ccc7513..18c4584ea92 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_19.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.5/legalcode +--- + https://creativecommons.org/licenses/by-sa/2.5/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_19.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_19.yml deleted file mode 100644 index ff3d9c10f7a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.5/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_2.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_2.RULE index c39d65cc8b7..8584d2a902b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + CC Share-alike 2.5 licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_2.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_2.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_20.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_20.RULE index d7c7dd5737f..a4804ab800a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_20.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ +--- + Creative Commons Attribution-ShareAlike 2.5 CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_20.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_20.yml deleted file mode 100644 index 72c8a2bda12..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_21.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_21.RULE index a876acea546..142b422a452 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_21.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_21.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-2.5 Creative Commons Attribution Share Alike 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_21.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_21.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_22.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_22.RULE index bf8f8652a4e..9db4d5cebbb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_22.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_22.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_22.yml deleted file mode 100644 index 9867a8c5a35..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_23.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_23.RULE index ddb12381c80..fec22dc17a3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_23.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Share Alike 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_23.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_23.yml deleted file mode 100644 index 9867a8c5a35..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_24.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_24.RULE index 38c8dc26551..e3b025da46e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_24.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_24.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 2.5 Generic CC-BY-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_24.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_24.yml deleted file mode 100644 index 9867a8c5a35..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_25.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_25.RULE index 24b96f80f26..4d393b74d8b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_25.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_25.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_25.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_25.yml deleted file mode 100644 index 2bf32689a40..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_26.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_26.RULE index 0322cf8ad08..0ecc1cb1bc0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_26.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_26.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Share Alike 2.5 Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_26.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_26.yml deleted file mode 100644 index 2bf32689a40..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_27.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_27.RULE index c9bd6d3648e..13ab2683b32 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_27.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_27.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_27.yml deleted file mode 100644 index 2bf32689a40..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_28.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_28.RULE index 5e0acf007a4..8e98790f241 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_28.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_28.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-2.5 Creative Commons Attribution Share Alike 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_28.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_28.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_29.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_29.RULE index 1c00793a579..d7eb920edd7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_29.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_29.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-2.5 +--- + https://licenses.nuget.org/CC-BY-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_29.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_29.yml deleted file mode 100644 index 91849ace06b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_3.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_3.RULE index a00c4949bae..7b2c8a96527 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5 +--- + documentation is licensed under [CC BY-SA 2.5](http://creativecommons.org/licenses/by-sa/2.5/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_3.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_3.yml deleted file mode 100644 index 8a5c9b78ee9..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_30.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_30.RULE index 9bba39adac8..1be0ff87633 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_30.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_30.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_30.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_31.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_31.RULE index 9187d454ed7..d9bb63593fa 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_31.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_31.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-2.5 +--- + LICENSE {{CC-BY-SA-2.5}} https://spdx.org/licenses/CC-BY-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_31.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_31.yml deleted file mode 100644 index da4161f88ad..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_32.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_32.RULE index cf433544fa3..b2cd53f99d7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_32.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-2.5 +--- + {{CC-BY-SA-2.5}} https://spdx.org/licenses/CC-BY-SA-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_32.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_32.yml deleted file mode 100644 index da4161f88ad..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_4.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_4.RULE index a37a86b9e74..421102a99e8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_4.RULE @@ -1,6 +1,13 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5/ +--- + /// Released under the Creative Commons license /// /// /// This work is licensed under the Creative Commons Attribution-ShareAlike 2.5 License. /// To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/ or send a letter to -/// Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA. +/// Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_4.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_4.yml deleted file mode 100644 index f2fdb1b38cf..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_5.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_5.RULE index daaa84ca94e..1a655f6eb3d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_5.RULE @@ -1,5 +1,13 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5/ +--- + /// /// /// This work is licensed under the Creative Commons Attribution-ShareAlike 2.5 License. /// To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/ or send a letter to -/// Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA. +/// Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_5.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_5.yml deleted file mode 100644 index 980a6e044bf..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_6.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_6.RULE index 5e0a1c4ea6c..b5c5c8e9c90 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +--- + the original project says it's CC Share-alike 2.5 licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_6.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_6.yml deleted file mode 100644 index fb0f940e165..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_7.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_7.RULE index 268c29a70c4..bf160cb0ac7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_7.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_7.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5 +--- + licensed under the Creative Commons Attribution -Share-Alike 2.5 License (http://creativecommons.org/licenses/by-sa/2.5/), +Share-Alike 2.5 License (http://creativecommons.org/licenses/by-sa/2.5/), \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_7.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_7.yml deleted file mode 100644 index 5f8b5422df1..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_8.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_8.RULE index 0e34703ff99..4ba7b18bcd2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_8.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_notice: yes +referenced_filenames: + - LICENSE.icons.txt +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5 +--- + All of these image files are licensed under the Creative Commons Attribution Share-Alike 2.5 License (http://creativecommons.org/licenses/by-sa/2.5/), which is in the LICENSE.icons.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_8.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_8.yml deleted file mode 100644 index 146a9c68a36..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_notice: yes -referenced_filenames: - - LICENSE.icons.txt -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_9.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_9.RULE index 2b4f2f51f17..50a27e169c5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_9.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5/ +--- + Creative Commons Attribution-Share Alike 2.5 Generic (CC-BY-SA 2.5) link: http://creativecommons.org/licenses/by-sa/2.5/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_9.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_9.yml deleted file mode 100644 index 10e9b8651b3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5/ diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_licensebutton.RULE index 72da10452bf..53b59a35062 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-sa/2.5 +--- + https://licensebuttons.net/l/by-sa/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_licensebutton.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_licensebutton.yml deleted file mode 100644 index d429804d482..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-sa/2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_url_1.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_url_1.RULE index bfe0dd29d92..905ef2c0a6d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-2.5 +--- + https://spdx.org/licenses/cc-by-sa-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_url_1.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_url_1.yml deleted file mode 100644 index c06a543db83..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_url_2.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_url_2.RULE index beef6299fe9..e154cc5d852 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-2.5.html +--- + https://spdx.org/licenses/cc-by-sa-2.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_url_2.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_url_2.yml deleted file mode 100644 index 3c84cce1c8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-2.5.html diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_url_glc_47.RULE b/src/licensedcode/data/rules/cc-by-sa-2.5_url_glc_47.RULE index 0f91d07132a..579a05d98d1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_url_glc_47.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-2.5_url_glc_47.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/2.5 +--- + https://creativecommons.org/licenses/by-sa/2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-2.5_url_glc_47.yml b/src/licensedcode/data/rules/cc-by-sa-2.5_url_glc_47.yml deleted file mode 100644 index 566e33faf7e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-2.5_url_glc_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/2.5 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_1.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-at_1.RULE index cc56694a58e..986234eb20f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-at_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0-at +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Share Alike 3.0 Austria \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_1.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-at_1.yml deleted file mode 100644 index f7bdc0b1496..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0-at -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_2.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-at_2.RULE index 6e448bb070b..bfab78f27be 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-at_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0-at +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-3.0-AT Creative Commons Attribution Share Alike 3.0 Austria \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_2.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-at_2.yml deleted file mode 100644 index f7bdc0b1496..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0-at -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_3.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-at_3.RULE index da65d9f2a8b..7ad60476160 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-at_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0-at +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-3.0-AT +--- + https://licenses.nuget.org/CC-BY-SA-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_3.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-at_3.yml deleted file mode 100644 index 8575916d6b9..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0-at -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-3.0-AT diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_4.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-at_4.RULE index 0eb48c08f6c..a0ac2e13fa0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-at_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0-at +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_4.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-at_4.yml deleted file mode 100644 index f7bdc0b1496..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0-at -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_5.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-at_5.RULE index 74fc2cce2a5..abd3c0c2bc2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-at_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0-at +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-3.0-AT +--- + {{CC-BY-SA-3.0-AT}} https://spdx.org/licenses/CC-BY-SA-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_5.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-at_5.yml deleted file mode 100644 index c204cb9eb71..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0-at -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-3.0-AT diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_6.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-at_6.RULE index aacfaec7982..dea3eaaa305 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-at_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0-at +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-3.0-AT +--- + LICENSE {{CC-BY-SA-3.0-AT}} https://spdx.org/licenses/CC-BY-SA-3.0-AT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-at_6.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-at_6.yml deleted file mode 100644 index c204cb9eb71..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-at_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0-at -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-3.0-AT diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_1.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-de_1.RULE index 67fd56b7663..3d694de2a9d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-de_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0-de +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Share Alike 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_1.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-de_1.yml deleted file mode 100644 index 6b7b0851bcd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_2.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-de_2.RULE index 78ca74f513d..01857059c39 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-de_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0-de +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-3.0-DE Creative Commons Attribution Share Alike 3.0 Germany \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_2.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-de_2.yml deleted file mode 100644 index 6b7b0851bcd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_3.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-de_3.RULE index 9ecbcc8d484..335641d244f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-de_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-3.0-DE +--- + https://licenses.nuget.org/CC-BY-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_3.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-de_3.yml deleted file mode 100644 index 3f091484e55..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_4.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-de_4.RULE index 7ef2ccdd847..09f774fcbd9 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-de_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0-de +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_4.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-de_4.yml deleted file mode 100644 index 6b7b0851bcd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_5.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-de_5.RULE index f80de52dc81..45c76984f91 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-de_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-3.0-DE +--- + {{CC-BY-SA-3.0-DE}} https://spdx.org/licenses/CC-BY-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_5.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-de_5.yml deleted file mode 100644 index 5433b758999..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_6.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-de_6.RULE index 05abba27ed3..b331487ae19 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-de_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-3.0-DE +--- + LICENSE {{CC-BY-SA-3.0-DE}} https://spdx.org/licenses/CC-BY-SA-3.0-DE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-de_6.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-de_6.yml deleted file mode 100644 index 5433b758999..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-de_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-3.0-DE diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.RULE index d61c463cfc9..98e00423b47 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0/ + - https://stackoverflow.blog/2009/06/25/attribution-required/ +--- + user contributions licensed under cc by-sa 3.0 with attribution required \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.yml b/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.yml deleted file mode 100644 index 48ab6bbb019..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0/ - - https://stackoverflow.blog/2009/06/25/attribution-required/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0.SPDX.RULE index 597b3524768..5f0837d2055 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0.SPDX.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://creativecommons.org/ + - http://creativecommons.org/compatiblelicenses +--- + Creative Commons Attribution-ShareAlike 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-sa-3.0.SPDX.yml deleted file mode 100644 index 93514e7f13d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0.SPDX.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://creativecommons.org/ - - http://creativecommons.org/compatiblelicenses diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_1.RULE index 9528257a4ec..6238502ab36 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_1.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_1.yml deleted file mode 100644 index 1c2d5d9bebd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE index 8618b5c5b37..2c2e4d43d57 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 +--- + is licensed under a Creative Commons # Attribution-ShareAlike license: # http://creativecommons.org/licenses/by-sa/3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_10.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_10.yml deleted file mode 100644 index db152b2e0f1..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_100.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_100.RULE index ea2568fe2c2..3d4d45b3871 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_100.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_100.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_100.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_100.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_101.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_101.RULE index c5fd270b875..d8bf0b611fe 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_101.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_101.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-3.0 +--- + {{CC-BY-SA-3.0}} https://spdx.org/licenses/CC-BY-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_101.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_101.yml deleted file mode 100644 index 59f5152b2ed..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_102.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_102.RULE index ec15493aa36..d277d83ab21 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_102.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_102.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-3.0 +--- + LICENSE {{CC-BY-SA-3.0}} https://spdx.org/licenses/CC-BY-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_102.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_102.yml deleted file mode 100644 index 59f5152b2ed..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_11.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_11.RULE index 38782b83e3b..bc91a41b316 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_11.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 +--- + The documentation is available under the Creative Commons Attribution-ShareAlike License 3.0 (Unported) (http://creativecommons.org/licenses/by-sa/3.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_11.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_11.yml deleted file mode 100644 index db152b2e0f1..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_12.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_12.RULE index b0319b23f72..a389765459a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 80 +--- + CC-BY-SA \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_12.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_12.yml deleted file mode 100644 index d8e85591a25..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_13.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_13.RULE index 98ce2e32c54..1a1968a2b8f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_13.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_13.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_14.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_14.RULE index 0b1f92f9a0b..36741fedede 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 99 +--- + Attribution-ShareAlike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_14.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_14.yml deleted file mode 100644 index a7331b9a9ca..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_15.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_15.RULE index 266f0df381a..0ba640bb936 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_15.RULE @@ -1 +1,7 @@ -* License: creative commons - attribution, share-alike +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 90 +--- + +* License: creative commons - attribution, share-alike \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_15.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_15.yml deleted file mode 100644 index 7a13cc849be..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_16.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_16.RULE index 2c742d824b3..9565c0fe2a1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons 3.0 BY-SA \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_16.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_16.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_17.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_17.RULE index 5add19e71ed..7c6b4d8b399 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_17.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + Creative Commons Attribution-Share Alike 3.0 Unported (CC-BY-SA 3.0) link: http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_17.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_17.yml deleted file mode 100644 index 1c2d5d9bebd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_18.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_18.RULE index 09e982d90f0..feeb878f952 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_18.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + license: CC-BY-SA 3.0 License link: http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_18.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_18.yml deleted file mode 100644 index 1c2d5d9bebd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_19.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_19.RULE index 9aa080d4183..f91c32f3a7c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_19.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ + - http://creativecommons.org/licenses/by-sa/3.0/legalcode +--- + License information The text of and illustrations in this document are licensed under a Creative Commons Attribution–Share Alike 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_19.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_19.yml deleted file mode 100644 index 329bcd8f306..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ - - http://creativecommons.org/licenses/by-sa/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_2.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_2.RULE index ce29b66ecc1..a7a5a32393b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ + - http://creativecommons.org/compatiblelicenses +--- + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. License diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_2.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_2.yml deleted file mode 100644 index e0a102071eb..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ - - http://creativecommons.org/compatiblelicenses diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_20.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_20.RULE index 2e07045f12c..b23721a478a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_20.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/ +--- + comes from wikipedia and has a Creative Commons Attribution-ShareAlike License, see http://en.wikipedia.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_20.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_20.yml deleted file mode 100644 index 37c405ef86a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_21.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_21.RULE index 7ac8bc39095..869f612ec81 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + icon has a Creative Commons Attribution-ShareAlike License, \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_21.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_21.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_22.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_22.RULE index d39973a19e8..79f45cac038 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 +--- + Documentation components of this software distribution are licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. (http://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_22.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_22.yml deleted file mode 100644 index db152b2e0f1..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_23.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_23.RULE index 824a83bca94..0f6682dd6df 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0 +--- + Documentation components of this software distribution are licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. (https://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_23.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_23.yml deleted file mode 100644 index 600f65ec2fd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_24.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_24.RULE index 6841928102c..56cd3b1b067 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_24.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + Documentation components of this software distribution are licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_24.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_24.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_25.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_25.RULE index ad0541efb94..3cf904c2492 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 +--- + licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. (http://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_25.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_25.yml deleted file mode 100644 index db152b2e0f1..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_26.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_26.RULE index 5eb296e32e5..7a2edb01d39 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0 +--- + licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. (https://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_26.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_26.yml deleted file mode 100644 index 600f65ec2fd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_27.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_27.RULE index 4020610da4e..ff83b2ef518 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_27.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_27.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_27.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_28.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_28.RULE index 431bd3b39e7..c987b35febb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 3.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_28.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_28.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_29.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_29.RULE index 7e1f59c2316..0d37e77f6ab 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 99 +--- + licensed under the Creative Commons Attribution/Share-Alike License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_29.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_29.yml deleted file mode 100644 index 5d0fd9c1936..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_3.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_3.RULE index 813b11c1742..13f7a041506 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + * Content is licensed under CC-BY-SA 3.0: http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_3.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_3.yml deleted file mode 100644 index de8c0143186..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_30.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_30.RULE index 294284c1461..e3c2677d8fc 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 99 +--- + This work is licensed under the Creative Commons Attribution/Share-Alike License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_30.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_30.yml deleted file mode 100644 index 5d0fd9c1936..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_31.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_31.RULE index 4d4955c2459..530ef7d344f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_31.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + This work is licensed under the Creative Commons Attribution/Share-Alike License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/" diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_31.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_31.yml deleted file mode 100644 index de8c0143186..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_32.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_32.RULE index d77e0561ba9..a958962cec6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_32.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 +--- + This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_32.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_32.yml deleted file mode 100644 index db152b2e0f1..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_33.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_33.RULE index 50e62f8f9c3..cac75bcda81 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_33.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_33.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_33.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_34.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_34.RULE index 405bdb8283f..8878d86b157 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_34.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0 +--- + This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_34.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_34.yml deleted file mode 100644 index 600f65ec2fd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_35.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_35.RULE index cfa768c9ea6..384cf799261 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_35.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/compatiblelicenses + - https://creativecommons.org/licenses/by-sa/3.0/legalcode +--- + Creative Commons Attribution-ShareAlike 3.0 Unported https://creativecommons.org/licenses/by-sa/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_35.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_35.yml deleted file mode 100644 index 13cbf5da27e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/compatiblelicenses - - https://creativecommons.org/licenses/by-sa/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_36.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_36.RULE index 012e9918902..96634d0ea8d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_36.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 95 +minimum_coverage: 95 +--- + All images and derivatives thereof contained in this repository are licensed under Creative Commons License 3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_36.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_36.yml deleted file mode 100644 index 3777ece4fbe..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 95 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_37.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_37.RULE index 4cb6e819187..e06e743bd81 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_37.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0 +--- + `CC-BY-SA-3.0` - [Creative Commons Attribution-ShareAlike 3.0 International License](https://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_37.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_37.yml deleted file mode 100644 index 65d583fec5a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_38.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_38.RULE index 05b6c2c65fe..fd835ebbb95 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0 +--- + [Creative Commons Attribution-ShareAlike 3.0 International License](https://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_38.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_38.yml deleted file mode 100644 index 65d583fec5a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_39.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_39.RULE index 59aca6588f8..3ac1fa50c85 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 3.0 International License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_39.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_39.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_4.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_4.RULE index 6a2d92a4a9c..7d4da313663 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_4.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 +--- + is licensed under a "[Creative Commons Attribution-ShareAlike 3.0 Unported License](http://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_4.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_4.yml deleted file mode 100644 index 4add4b80619..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_40.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_40.RULE index cbc751f1ef0..83a234ff2df 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + `CCBYSAv4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_40.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_40.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE index 6b9a28ccb3d..b60a9a35b58 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/ + - http://creativecommons.org/compatiblelicenses +--- + License: CC-BY-SA-3.0 Creative Commons Attribution-ShareAlike 3.0 Unported . diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_41.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_41.yml deleted file mode 100644 index 67576a38cb3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/ - - http://creativecommons.org/compatiblelicenses diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_42.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_42.RULE index 2bb46a91646..d4ebf5266d5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +relevance: 100 +--- + License: CC-BY-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_42.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_42.yml deleted file mode 100644 index 8877986ea88..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_43.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_43.RULE index 050134f68f7..528d8b8ae1a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under a Creative Commons Attribution-Share Alike 3.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_43.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_43.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_44.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_44.RULE index 98bbad3c984..e2d9a19d371 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_44.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/us/ +--- + They are covered by the CC-BY-SA license: http://creativecommons.org/licenses/by-sa/3.0/us/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_44.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_44.yml deleted file mode 100644 index 73bc728cc0a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_45.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_45.RULE index a5079a35c50..e1b6a39ded4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_45.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/us/ +--- + covered by the CC-BY-SA license: http://creativecommons.org/licenses/by-sa/3.0/us/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_45.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_45.yml deleted file mode 100644 index 73bc728cc0a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_46.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_46.RULE index b8b3f727e10..e708e656804 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_46.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/us/ +--- + CC-BY-SA license: http://creativecommons.org/licenses/by-sa/3.0/us/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_46.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_46.yml deleted file mode 100644 index da891d3e0e7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_47.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_47.RULE index bbb0c039d36..855f7733883 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_47.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + it is incorporated here under the terms of the Creative Commons Attribution-ShareAlike 3.0 Unported License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_47.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_47.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_48.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_48.RULE index 941aefe54d7..0ebee3d4fab 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_48.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 90 +notes: this is for the Germany variant that we do not track yet as its own license +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/de +--- + % This LaTeX-File is licensed under the Creative Commons Attribution-ShareAlike % 3.0 Germany License (http://creativecommons.org/licenses/by-sa/3.0/de/): Feel % free 'to share (to copy, distribute and transmit)' or 'to remix (to adapt)' diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_48.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_48.yml deleted file mode 100644 index 77762072c27..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_48.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 90 -notes: this is for the Germany variant that we do not track yet as its own license -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/de diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_49.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_49.RULE index e69ecc93905..e73d88ddfb4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_49.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + licensed under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). available at diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_49.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_49.yml deleted file mode 100644 index de8c0143186..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_5.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_5.RULE index 26bbffc8c30..e4bb1f03875 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_5.RULE @@ -1,5 +1,12 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative Commons, 543 Howard Street, 5th Floor, San Francisco, -California, 94105, USA. +California, 94105, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_5.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_5.yml deleted file mode 100644 index 200de8c28f8..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_50.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_50.RULE index 4bc6eacd049..525d83e339d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_50.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + The text of and illustrations in this document are licensed under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_50.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_50.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_51.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_51.RULE index e0ec0488904..895534c94bb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_51.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_51.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_51.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_52.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_52.RULE index 6556373bb6a..bc3c2f5d3d1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_52.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_52.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_52.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_53.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_53.RULE index b9fa7206982..9447b71197c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_53.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_53.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_54.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_54.RULE index 930fd9e1ee7..2c2dae660c5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_54.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_54.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_55.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_55.RULE index a05efa2d975..dea2f11976f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_55.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_55.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_56.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_56.RULE index ee99e31d916..d9d2a865d13 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_56.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_56.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_57.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_57.RULE index d4f0ca753d9..ed0e27ef2ec 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_57.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_57.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_57.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_58.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_58.RULE index 72cbbfaf688..faac2f5af44 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_58.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_58.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_59.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_59.RULE index decfd129ef2..d23eaf95c6c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_59.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_59.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_59.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_6.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_6.RULE index dab313d9f7e..c4902143215 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_6.RULE @@ -1,4 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + This work is licenced under the Creative Commons Attribution-Share Alike 3.0 United States License. To view a copy of this licence, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative -Commons, 171 Second Street, Suite 300, San Francisco, California 94105, USA. +Commons, 171 Second Street, Suite 300, San Francisco, California 94105, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_6.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_6.yml deleted file mode 100644 index 200de8c28f8..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_60.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_60.RULE index b5a6cc7f27e..5035b163bd9 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under a CC BY-SA 3.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_60.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_60.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_61.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_61.RULE index 3a4ef5ab8ec..6ed1e4a0bb4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_61.RULE @@ -1 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE-assets +notes: https://github.com/FrictionalGames/HPL1Engine/blob/5e441bbb247a7473e75cc0f05ca8a5b62c6ec64c/LICENSE-assets +--- + For conditions of distribution and use, see copyright notice in LICENSE-assets \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_61.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_61.yml deleted file mode 100644 index ae2db299d61..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_61.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE-assets -notes: https://github.com/FrictionalGames/HPL1Engine/blob/5e441bbb247a7473e75cc0f05ca8a5b62c6ec64c/LICENSE-assets diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_62.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_62.RULE index 086f59cea4d..19ba715e634 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_62.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_62.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_62.yml deleted file mode 100644 index de8c0143186..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_63.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_63.RULE index ae3a809a0f8..bb532f3b42a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_63.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_63.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0/ +--- + licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License https://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_63.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_63.yml deleted file mode 100644 index 305e0d4f68a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_64.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_64.RULE index 96545d19035..a9c5a6e09e9 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_64.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_64.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_64.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_65.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_65.RULE index f1975f10a99..36bbdd8369f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_65.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_65.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/igo +--- + http://creativecommons.org/licenses/by-sa/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_65.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_65.yml deleted file mode 100644 index 11f1533f393..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_66.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_66.RULE index 00b711a02ef..d66eba9a692 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_66.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_66.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/igo/legalcode +--- + http://creativecommons.org/licenses/by-sa/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_66.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_66.yml deleted file mode 100644 index a6e9ac5eef1..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_67.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_67.RULE index eed89f93ad1..06c47482d4b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_67.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_67.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-sa/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_67.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_67.yml deleted file mode 100644 index d8709f83620..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_68.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_68.RULE index 4e0701f6305..172bd1518d2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_68.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_68.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0/igo +--- + https://creativecommons.org/licenses/by-sa/3.0/igo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_68.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_68.yml deleted file mode 100644 index 93ddb31e7a3..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0/igo diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_69.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_69.RULE index d65713f6b46..ce1d672a8b9 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_69.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_69.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode +--- + https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_69.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_69.yml deleted file mode 100644 index 3d3d9161364..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_7.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_7.RULE index d985d46866c..87e79b164c7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/legalcode +--- + http://creativecommons.org/licenses/by-sa/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_7.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_7.yml deleted file mode 100644 index 923aefcd73e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_70.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_70.RULE index 85446e02133..4c8bf5c7748 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_70.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_70.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0/legalcode +--- + https://creativecommons.org/licenses/by-sa/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_70.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_70.yml deleted file mode 100644 index 27e7cf7cf7b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_71.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_71.RULE index ffc7806e2e0..043a2c12576 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_71.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_71.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-sa/3.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_71.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_71.yml deleted file mode 100644 index bc7791c2a0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_72.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_72.RULE index b3c256724a6..2b6d1d66818 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_72.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_72.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike license V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_72.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_72.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_73.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_73.RULE index 4ed422558e8..37d40e04e2c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_73.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_73.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike license V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_73.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_73.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_74.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_74.RULE index 8d877544a00..9d89f0260a5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_74.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_74.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike, V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_74.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_74.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_75.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_75.RULE index 1b8946c7afc..60b508774d8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_75.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_75.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_75.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_75.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_76.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_76.RULE index 949be446a58..b309cffe62e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_76.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_76.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike license V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_76.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_76.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_77.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_77.RULE index 6af72c3db5a..66c143d6c79 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_77.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike license V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_77.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_77.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_78.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_78.RULE index c87ece6e330..129d287b5fd 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_78.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_78.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike, V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_78.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_78.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_79.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_79.RULE index 57a351e37c5..121d37be6c2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_79.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_79.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_79.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_79.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_8.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_8.RULE index b6377138db3..75447d2355b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + the Creative Commons Attribution-ShareAlike 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_8.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_8.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_80.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_80.RULE index b768cdfc355..68f80ef4582 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_80.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_80.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/compatiblelicenses +--- + Creative Commons Attribution-ShareAlike 3.0 Unported CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_80.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_80.yml deleted file mode 100644 index a2632341131..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/compatiblelicenses diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_81.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_81.RULE index 5c0f48fa5c8..55eed935fca 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_81.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_81.RULE @@ -1 +1,8 @@ -License: {{Creative Commons Attribution-Share Alike 3.0}} Unported This file is licensed under the {{Creative Commons Attribution-Share Alike 3.0}} Unported license. +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc +--- + +License: {{Creative Commons Attribution-Share Alike 3.0}} Unported This file is licensed under the {{Creative Commons Attribution-Share Alike 3.0}} Unported license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_81.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_81.yml deleted file mode 100644 index 14db1bcf359..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_81.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_82.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_82.RULE index 98e29309749..f0bd5899390 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_82.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_82.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + This work is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_82.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_82.yml deleted file mode 100644 index de8c0143186..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_83.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_83.RULE index fd6a1208795..4f9233461c1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_83.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_83.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_83.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_83.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_84.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_84.RULE index 1f39be76d2c..7809e7a03c3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_84.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_84.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_84.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_84.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_85.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_85.RULE index e29659e464e..738150a1a25 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_85.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_85.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 +--- + Artistic or creative content is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. (http://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_85.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_85.yml deleted file mode 100644 index 4add4b80619..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_85.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_86.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_86.RULE index c9141b767e7..12541f8e3bb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_86.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_86.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/ + - http://creativecommons.org/compatiblelicenses +--- + Creative Commons Attribution-ShareAlike 3.0 Unported CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_86.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_86.yml deleted file mode 100644 index e0a102071eb..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/ - - http://creativecommons.org/compatiblelicenses diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_87.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_87.RULE index 99f47c8188e..46bf2276463 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_87.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_87.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + This work is under the "Attribution-Share Alike 3.0 Unported" license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_87.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_87.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_88.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_88.RULE index 3b18fc10b36..30426d7b778 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_88.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_88.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + under the "Attribution-Share Alike 3.0 Unported" license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_88.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_88.yml deleted file mode 100644 index d5051512d8d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_89.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_89.RULE index 1b95ad4ebbe..64b408f60cd 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_89.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_89.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0/ +--- + This work is under the "Attribution-Share Alike 3.0 Unported" license, which means distribution is unlimited, you may create derived works, but attributions to original authors and this license statement must be diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_89.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_89.yml deleted file mode 100644 index 95b5fe0323b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_89.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_9.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_9.RULE index 32ba501bf66..f76c37e740f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ +--- + is released under the Creative Commons # Attribution-Share-Alike License 3.0 # \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_9.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_9.yml deleted file mode 100644 index de8c0143186..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_90.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_90.RULE index 8b30649d2ff..0709a983bba 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_90.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_90.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +notes: https://www.coresecurity.com/core-labs/advisories/ciphermail-multiple-vulnerabilities +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-sa/3.0/us/ +--- + licensed under a Creative Commons Attribution Non-Commercial Share-Alike 3.0 (United States) License: http://creativecommons.org/licenses/by-nc-sa/3.0/us/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_90.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_90.yml deleted file mode 100644 index ba0da268331..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_90.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -notes: https://www.coresecurity.com/core-labs/advisories/ciphermail-multiple-vulnerabilities -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-sa/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_91.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_91.RULE index 8bc355a8825..db66ea59673 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_91.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_91.RULE @@ -1 +1,6 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +--- + CC-BY-SA-3.0 Creative Commons Attribution Share Alike 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_91.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_91.yml deleted file mode 100644 index c0fe4bc6f3f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_91.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_92.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_92.RULE index 97016185d20..3c782934357 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_92.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_92.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-3.0 Creative Commons Attribution Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_92.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_92.yml deleted file mode 100644 index 24a235952d7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_93.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_93.RULE index 42d2c35cfe7..2e0cf6b2304 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_93.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_93.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_93.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_93.yml deleted file mode 100644 index f25912cb7f4..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_93.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_94.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_94.RULE index abf25dbfd1f..526fe024e64 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_94.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_94.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_94.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_94.yml deleted file mode 100644 index f25912cb7f4..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_94.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_95.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_95.RULE index f70bffae222..f79beb03aa4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_95.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_95.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 3.0 Unported CC-BY-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_95.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_95.yml deleted file mode 100644 index f25912cb7f4..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_95.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_96.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_96.RULE index b29f1e10eb8..4a57e29036e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_96.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_96.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Share Alike 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_96.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_96.yml deleted file mode 100644 index 08f0c11d237..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_96.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_97.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_97.RULE index eb0b80c5d6f..8977e3e9515 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_97.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_97.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_97.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_97.yml deleted file mode 100644 index 08f0c11d237..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_97.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_98.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_98.RULE index 124b3a60cce..1a032040883 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_98.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_98.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +is_continuous: yes +relevance: 30 +minimum_coverage: 100 +--- + {{This code is released under the Creative Commons license. See Creative Commons License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_98.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_98.yml deleted file mode 100644 index 3230854db3d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_notice: yes -is_continuous: yes -relevance: 30 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_99.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_99.RULE index 0aa8b891bdb..2491320eb32 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_99.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_99.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-3.0 +--- + https://licenses.nuget.org/CC-BY-SA-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_99.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_99.yml deleted file mode 100644 index 08845d3cc9b..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_licensebutton.RULE index 8ec45c77dc3..bb1e02d8e1a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-sa/3.0 +--- + https://licensebuttons.net/l/by-sa/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_licensebutton.yml deleted file mode 100644 index 3e3cebc6945..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_or_gfdl-1.2-plus_or_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_or_gfdl-1.2-plus_or_gpl-3.0-plus_1.RULE index ea742dae928..2956bbdafbb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_or_gfdl-1.2-plus_or_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_or_gfdl-1.2-plus_or_gpl-3.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 OR gfdl-1.2-plus OR gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + Unless otherwise explicitly stated, all original materials created by are licensed under the terms of either (at your option): the Creative Commons Attribution-ShareAlike 3.0 License diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_or_gfdl-1.2-plus_or_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_or_gfdl-1.2-plus_or_gpl-3.0-plus_1.yml deleted file mode 100644 index a907b404fed..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_or_gfdl-1.2-plus_or_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-3.0 OR gfdl-1.2-plus OR gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_1.RULE index 7af78995608..b41cbb8be5b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Dual licenced under Creative Commons Attribution-Share Alike 3.0 and LGPL2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index db91ee05a0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_2.RULE index 9bc1a72abba..710b5a8303d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 OR lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA 3.0 or LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index 5000506e1b5..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-3.0 OR lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_url_1.RULE index 5a69a252834..5327c483ec4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-3.0 +--- + https://spdx.org/licenses/cc-by-sa-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_url_1.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_url_1.yml deleted file mode 100644 index 421ba3f848d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_url_2.RULE index a1b0a6cca4e..20f23b2b5c2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-3.0.html +--- + https://spdx.org/licenses/cc-by-sa-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_url_2.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_url_2.yml deleted file mode 100644 index 860714bd329..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-3.0.html diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_url_glc_49.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_url_glc_49.RULE index 586c7728f2c..d82cf2abd76 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_url_glc_49.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_url_glc_49.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0 +--- + https://creativecommons.org/licenses/by-sa/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_url_glc_49.yml b/src/licensedcode/data/rules/cc-by-sa-3.0_url_glc_49.yml deleted file mode 100644 index 65d583fec5a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_url_glc_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0.RULE index 3ffc66951a0..081dee28bd3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +--- + Attribution-ShareAlike 4.0 International ======================================================================= diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.RULE index 3bba4a83022..08603111da2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Creative Commons Attribution-ShareAlike 4.0 International Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.yml b/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.yml deleted file mode 100644 index d575bdae75d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0.yml b/src/licensedcode/data/rules/cc-by-sa-4.0.yml deleted file mode 100644 index 97d8b011546..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_1.RULE index ddbdd521b3b..be500e38d13 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.docs +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 +--- + This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_1.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_1.yml deleted file mode 100644 index 0f9c6bf0154..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -referenced_filenames: - - LICENSE.docs -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_10.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_10.RULE index 63ab46568dd..c5c8da504a6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 +--- + ile are licensed under the Creative Commons Attribution 4.0 International License under the terms and conditions set forth in the file [`LICENSE.docs`](LICENSE.docs). You may obtain a duplicate copy of the same license, titled CC BY-SA 4.0, diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_10.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_10.yml deleted file mode 100644 index 19e62821535..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_100.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_100.RULE index d23c111f992..131b4c74d11 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_100.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_100.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-4.0 +--- + LICENSE {{CC-BY-SA-4.0}} https://spdx.org/licenses/CC-BY-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_100.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_100.yml deleted file mode 100644 index 25cc0429cd5..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_101.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_101.RULE index ecbf22ce170..724fcbf5a96 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_101.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_101.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-BY-SA-4.0 +--- + {{CC-BY-SA-4.0}} https://spdx.org/licenses/CC-BY-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_101.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_101.yml deleted file mode 100644 index 25cc0429cd5..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-BY-SA-4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_102.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_102.RULE index 68691d5cba0..12bf78a65a0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_102.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_102.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + This page is licensed under the `Creative Commons Attribution-ShareAlike 4.0 International license `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_102.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_102.yml deleted file mode 100644 index c24eb19ce83..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_102.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_11.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_11.RULE index 6c1440e5414..6fe5c1cce59 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +--- + Creative Commons Attribution-ShareAlike 4.0 International Public License By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_11.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_11.yml deleted file mode 100644 index 97d8b011546..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_12.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_12.RULE index 348b7e7c4c9..fdf508c0a91 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/cc-by-sa-4.0 +--- + https://choosealicense.com/licenses/cc-by-sa-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_12.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_12.yml deleted file mode 100644 index c9ee14f0b25..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/cc-by-sa-4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_13.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_13.RULE index 6bc593abd03..2bbae3af691 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/cc-by-sa-4.0 +--- + http://choosealicense.com/licenses/cc-by-sa-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_13.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_13.yml deleted file mode 100644 index d80e68457ca..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/cc-by-sa-4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_14.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_14.RULE index 94d1c71e7b2..dccf10c8e72 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 95 +--- + under CC-BY-SA \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_14.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_14.yml deleted file mode 100644 index efbbe8b52dd..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_15.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_15.RULE index 9b0d093db2b..29c7a441c12 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + This Meteor Code of Conduct is licensed under the [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_15.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_15.yml deleted file mode 100644 index 98befb62f0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_16.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_16.RULE index 0e389f6e048..011cfa60956 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + licensed under the [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_16.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_16.yml deleted file mode 100644 index 98befb62f0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_17.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_17.RULE index e8e1a02cd3d..b42019b3069 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_17.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_17.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_17.yml deleted file mode 100644 index 98befb62f0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_18.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_18.RULE index d43bfc262ba..349b55f67c9 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_18.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_18.yml deleted file mode 100644 index 5d8f27a9501..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_19.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_19.RULE index e1f74f5cfef..72751741ec7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + [Creative Commons Attribution-ShareAlike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_19.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_19.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_2.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_2.RULE index a0cc0fa9ccd..5b4eed03e58 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + License: Creative Commons Attribution-ShareAlike 4.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_2.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_2.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_20.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_20.RULE index ddcf268329a..5139b347919 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_20.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + [https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_20.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_20.yml deleted file mode 100644 index 5d8f27a9501..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_21.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_21.RULE index 4dd520ba7d2..e43f0b398e1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + Documentation License The documentation portion of Celery (the rendered contents of the "docs" directory of a software distribution or checkout) is supplied diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_21.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_21.yml deleted file mode 100644 index bc9b456c41e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_22.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_22.RULE index c18688cbb59..e144807c78c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 99 +--- + Creative Commons Attribution-ShareAlike License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_22.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_22.yml deleted file mode 100644 index 176a0b46c4d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_23.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_23.RULE index 3f41891235f..cf3c3131e53 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution Share Alike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_23.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_23.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_24.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_24.RULE index 9f353f6573e..26abee86c6b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + * All the Product's GUI elements, including illustrations and icon sets, as * well as technical writing content are licensed under the terms of the * Creative Commons Attribution-ShareAlike 4.0 International. See the License diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_24.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_24.yml deleted file mode 100644 index b13572d8a20..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_25.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_25.RULE index eaa1b9a659f..6a225702ca3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + * All the Product's GUI elements, including illustrations and icon sets, as * well as technical writing content are licensed under the terms of the * Creative Commons Attribution-ShareAlike 4.0 International. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_25.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_25.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_26.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_26.RULE index cf2d04f8bc9..5b4f64b80a6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + * All the Product's GUI elements, including illustrations and icon sets, as * well as technical writing content are licensed under the terms of the * Creative Commons Attribution-ShareAlike 4.0 International. See the License diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_26.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_26.yml deleted file mode 100644 index f717ceef0db..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_27.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_27.RULE index c51b4741b22..f978b726413 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_27.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_27.yml deleted file mode 100644 index ee16eb00e05..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_28.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_28.RULE index d944070fb7e..5551a86e9f9 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + See the License terms at https://creativecommons.org/licenses/by-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_28.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_28.yml deleted file mode 100644 index 914ec1e199c..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_29.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_29.RULE index 189fa1a3270..f3b5f3256cf 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_29.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + Portions of this software are licensed as follows: All content residing under the "doc/" directory of this repository is licensed under "Creative Commons: CC BY-SA 4.0 license". \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_29.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_29.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_3.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_3.RULE index b0f71bd8fc8..eec61b16dc5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 4.0 Unported License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_3.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_3.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_30.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_30.RULE index eac2fe8d685..2caf91c051c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + All content residing under the "doc/" directory of this repository is licensed under "Creative Commons: CC BY-SA 4.0 license". \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_30.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_30.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_31.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_31.RULE index d3b6e30c143..3beb859af37 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under "Creative Commons: CC BY-SA 4.0 license". \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_31.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_31.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_32.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_32.RULE index 5d85346a369..4cffe3afe28 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under "Creative Commons: CC BY-SA 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_32.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_32.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_33.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_33.RULE index 392c6a31896..398edef38fa 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_33.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/ +--- + ## Creative Commons Attribution-ShareAlike 4.0 International Public License diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_33.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_33.yml deleted file mode 100644 index d8e587e8d5f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_34.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_34.RULE index acead894ac4..52237025826 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_34.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + ## Creative Commons Attribution-ShareAlike 4.0 International Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_34.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_34.yml deleted file mode 100644 index eaf0e987092..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_35.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_35.RULE index 503cbf44179..c306ac1c985 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_35.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/ +--- + ## Creative Commons Attribution-ShareAlike 4.0 International Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_35.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_35.yml deleted file mode 100644 index 5af1fead572..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_36.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_36.RULE index 7d07f1e4967..5b5244f1fe0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_36.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/ +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_36.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_36.yml deleted file mode 100644 index 5af1fead572..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_37.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_37.RULE index 1141357fd78..03c8654b02f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 4.0 International Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_37.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_37.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_38.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_38.RULE index 7f5af0909f2..ad4c8495587 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + `CC-BY-SA-4.0` - [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_38.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_38.yml deleted file mode 100644 index 5d8f27a9501..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_39.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_39.RULE index 0d35ea41df8..3839898c126 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_39.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_39.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_39.yml deleted file mode 100644 index 5d8f27a9501..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_4.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_4.RULE index 78b26b3fe1f..6238c71d16c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 4.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_4.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_4.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_40.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_40.RULE index f30d1668cea..138a0c6cbd6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 4.0 International License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_40.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_40.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_41.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_41.RULE index 6502b425b36..3b6a224d55b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_41.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + ## License diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_41.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_41.yml deleted file mode 100644 index bc9b456c41e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_42.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_42.RULE index 4fde36251e2..f292b3fd1e1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_42.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + Creative Commons License
This work is licensed under a diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_42.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_42.yml deleted file mode 100644 index bc9b456c41e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_43.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_43.RULE index 2fdebc25fc1..fce78a61024 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_43.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + license" https://creativecommons.org/licenses/by-sa/4.0/"> \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_43.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_43.yml deleted file mode 100644 index bc9b456c41e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_44.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_44.RULE index e5753d677b2..4ef2e4c189e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_44.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_44.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_44.yml deleted file mode 100644 index bc9b456c41e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_45.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_45.RULE index 2b4ca31fc9e..7c15bf0c985 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_45.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_45.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_46.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_46.RULE index 4a22115de20..816db65f77f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_46.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 +--- + ## License ![cc license](http://i.creativecommons.org/l/by-sa/4.0/88x31.png) diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_46.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_46.yml deleted file mode 100644 index 831af24f44d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_47.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_47.RULE index 22b64685398..c042053de15 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_47.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 +--- + ![cc license](http://i.creativecommons.org/l/by-sa/4.0/88x31.png) This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_47.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_47.yml deleted file mode 100644 index 831af24f44d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_48.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_48.RULE index 2711f98f767..71b2ae5a258 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_48.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 +--- + This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_48.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_48.yml deleted file mode 100644 index 831af24f44d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_49.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_49.RULE index 218a63e6147..1fa3c6e98f2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_49.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + ## License ![cc license](https://i.creativecommons.org/l/by-sa/4.0/88x31.png) diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_49.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_49.yml deleted file mode 100644 index 98befb62f0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_5.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_5.RULE index 80d9ba82c4a..0be08fa20d7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_5.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_5.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_50.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_50.RULE index 5db720f9400..b108959fbc7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_50.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_50.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_50.yml deleted file mode 100644 index 98befb62f0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_51.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_51.RULE index a0b976597f3..c12b6df7f41 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_51.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + # License Licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_51.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_51.yml deleted file mode 100644 index bc9b456c41e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_52.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_52.RULE index bfea8828999..8eff19ccbea 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_52.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + Licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_52.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_52.yml deleted file mode 100644 index bc9b456c41e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_53.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_53.RULE index 75b5f8e82f8..27263a5685c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_53.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + Licensed under CC BY-SA 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_53.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_53.yml deleted file mode 100644 index 98befb62f0f..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_54.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_54.RULE index 5b16ef862a7..f00bd9a2e84 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + The data is under the Creative Commons Attribution Share-Alike 4.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_54.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_54.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_540.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_540.RULE index e4188b17075..79916d66522 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_540.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_540.RULE @@ -1 +1,9 @@ -CC Attribution-ShareAlike http://creativecommons.org/licenses/by-sa/4.0/ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/ +--- + +CC Attribution-ShareAlike http://creativecommons.org/licenses/by-sa/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_540.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_540.yml deleted file mode 100644 index 0685985fb9d..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_540.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_55.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_55.RULE index 61689661d36..3df824822ac 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_55.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * This software may be modified and distributed under the terms of the * Creative Commons Attribution-ShareAlike 4.0 International License. * diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_55.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_55.yml deleted file mode 100644 index 8814f5c15b7..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_56.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_56.RULE index 8f14d305d04..862c322d178 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_56.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/ +--- + The documentation, its source code and related things are licensed under the Creative Commons `CC-BY-SA 4.0 license`_. .. _CC-BY-SA 4.0 license: https://creativecommons.org/licenses/by-sa/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_56.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_56.yml deleted file mode 100644 index bc9b456c41e..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_57.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_57.RULE index 2cad5696cb5..17b0f34520c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_57.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + Made available under CC-BY-SA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_57.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_57.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_58.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_58.RULE index 18b4e865006..c1e1f58affe 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_58.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 +--- + CC BY-SA 4.0 (http://creativecommons.org/licenses/by-sa/4.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_58.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_58.yml deleted file mode 100644 index 0f796d09fd5..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_59.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_59.RULE index 91dcbb7f5b2..2ecae190c67 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_59.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_59.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_59.yml deleted file mode 100644 index 5d8f27a9501..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_6.RULE index bf32b820f04..e5c8c46fadb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_6.RULE @@ -1 +1,7 @@ -CC-BY-SA-4.0 +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + +CC-BY-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_6.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_6.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_60.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_60.RULE index 6a13f5a3e99..9fac4052ae8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_60.RULE @@ -1,2 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 + - http://creativecommons.org/licenses/by-sa/4.0/ +--- + [![Creative Commons BY-SA License](https://i.creativecommons.org/l/by-sa/4.0/80x15.png)](http://creativecommons.org/licenses/by-sa/4.0/) This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_60.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_60.yml deleted file mode 100644 index 75a1ce7fc56..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_60.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 - - http://creativecommons.org/licenses/by-sa/4.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_61.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_61.RULE index 2036986ff6e..d63e118a8f4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_61.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_61.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_61.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_62.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_62.RULE index fc847e432fb..c7ac435f1b1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_62.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + released under the Creative Commons Attribution-ShareAlike 4.0 International License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_62.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_62.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_63.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_63.RULE index 8c99907653e..cda7c26ee7b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_63.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_63.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-Share Alike 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_63.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_63.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_64.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_64.RULE index 6371d389f23..e8b18a0eeb1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_64.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_64.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_64.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_65.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_65.RULE index d65b46a9c18..bf3cd3093b5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_65.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_65.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-Share Alike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_65.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_65.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_66.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_66.RULE index 8b1681d62b0..c494c491dc3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_66.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_66.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_66.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_66.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_67.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_67.RULE index 868e5ada06b..b591e9fc07d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_67.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_67.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 4.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_67.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_67.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_68.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_68.RULE index f10c1dfec6c..7212a257eaf 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_68.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_68.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_68.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_68.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_69.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_69.RULE index 00600275079..e9bca0f1cc6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_69.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_69.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + http://creativecommons.org/licenses/by-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_69.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_69.yml deleted file mode 100644 index ee16eb00e05..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_7.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_7.RULE index 89111590b0f..027d67a731f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike International Public License (CC-BY-SA v4.0+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_7.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_7.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_70.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_70.RULE index efd1ac1b1d5..7bfc15b1e92 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_70.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_70.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0/legalcode.txt +--- + http://creativecommons.org/licenses/by-sa/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_70.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_70.yml deleted file mode 100644 index 1e398b5c443..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE index d980cbc0417..96aff958e83 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + https://creativecommons.org/licenses/by-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_71.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_71.yml deleted file mode 100644 index 914ec1e199c..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_72.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_72.RULE index df7b1f773f1..b843d8ba4a5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_72.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_72.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt +--- + https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_72.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_72.yml deleted file mode 100644 index 3feace7d70a..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_73.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_73.RULE index 7378d3d8742..e58534537ab 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_73.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_73.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +relevance: 100 +--- + LICENSE INFORMATION: > CC-Attribution-ShareAlike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_73.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_73.yml deleted file mode 100644 index 72745ea9d86..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_74.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_74.RULE index 633284ba7b9..018a7107619 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_74.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_74.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + > CC-Attribution-ShareAlike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_74.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_74.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_75.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_75.RULE index 26c388903ba..99e5df0a988 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_75.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_75.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +relevance: 100 +--- + License: CC-Attribution-ShareAlike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_75.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_75.yml deleted file mode 100644 index 72745ea9d86..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_76.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_76.RULE index f98e47ecfbd..514d489def0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_76.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_76.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike license V4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_76.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_76.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_77.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_77.RULE index 4f08de0a97a..75ae306f06f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_77.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike license V 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_77.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_77.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_78.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_78.RULE index a497b26aa34..4ad1c98017d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_78.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_78.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike, V4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_78.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_78.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_79.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_79.RULE index 7c8031f03a2..281672eea29 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_79.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_79.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike, V 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_79.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_79.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_8.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_8.RULE index e0f0e75d2c1..0d35e0cb864 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + (CC-BY-SA v4.0+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_8.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_8.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_80.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_80.RULE index 570515ed89e..93d32fad9f7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_80.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_80.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike license V4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_80.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_80.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_81.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_81.RULE index 4df1afcabb1..12c8a4f7ebe 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_81.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_81.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike license V 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_81.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_81.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_82.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_82.RULE index 50fd35affed..6f23d2185cc 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_82.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_82.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike, V4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_82.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_82.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_83.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_83.RULE index 38aab5a5317..7ab9600ea82 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_83.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_83.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Attribution-share alike, V 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_83.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_83.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_84.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_84.RULE index 026857dfd63..93a008d1a77 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_84.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_84.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_text: yes +relevance: 100 +--- + Creative Commons Attribution-ShareAlike 4.0 International Public License Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_84.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_84.yml deleted file mode 100644 index 47a8fca8df1..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_85.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_85.RULE index 270658c812f..8b47d1ad214 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_85.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_85.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 +--- + This README.md file and the CONTRIBUTING.md file are licensed under the Creative Commons Attribution 4.0 International License under the terms and conditions set forth in the file LICENSE.docs. You may obtain a duplicate copy diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_85.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_85.yml deleted file mode 100644 index 19e62821535..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_85.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_86.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_86.RULE index ad593469e3f..c0aad1bcc32 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_86.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_86.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under a Creative Commons Attribution-ShareAlike 4.0 International license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_86.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_86.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_87.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_87.RULE index 5152da71825..84f2a04ad3c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_87.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_87.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +notes: https://www.snapeda.com/about/terms/ +--- + licensed to you pursuant to Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA) ("Creative Commons License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_87.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_87.yml deleted file mode 100644 index f5822740409..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -notes: https://www.snapeda.com/about/terms/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_88.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_88.RULE index 41d043eb599..abcccf21b5d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_88.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_88.RULE @@ -1 +1,6 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +--- + CC-BY-SA-4.0 Creative Commons Attribution Share Alike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_88.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_88.yml deleted file mode 100644 index a6476da2c58..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_88.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_89.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_89.RULE index 33627e2cb0e..5e3dfbbeeab 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_89.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_89.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + CC-BY-SA-4.0 Creative Commons Attribution Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_89.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_89.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_9.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_9.RULE index b049b1b3560..4c0c515fc92 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + Attribution-ShareAlike International Public License (CC-BY-SA v4.0+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_9.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_9.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_90.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_90.RULE index 66d7b6f3fe6..d4f7001bf53 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_90.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_90.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_90.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_90.yml deleted file mode 100644 index 8ab80b12953..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_90.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_91.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_91.RULE index 4b800e1d70a..a1804611e81 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_91.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_91.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Attribution Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_91.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_91.yml deleted file mode 100644 index 8ab80b12953..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_91.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_92.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_92.RULE index f945a23a78a..d1f424ee8c5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_92.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_92.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Attribution Share Alike 4.0 International CC-BY-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_92.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_92.yml deleted file mode 100644 index 8ab80b12953..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_92.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_93.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_93.RULE index f81b9c11d00..6be3a8111c5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_93.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_93.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-BY-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_93.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_93.yml deleted file mode 100644 index f08c6763d16..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_93.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_94.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_94.RULE index ec745381793..2c26c6b70e0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_94.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_94.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Attribution Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_94.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_94.yml deleted file mode 100644 index f08c6763d16..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_94.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_95.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_95.RULE index 3334775e8e8..a7ed95c0589 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_95.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_95.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-BY-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_95.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_95.yml deleted file mode 100644 index f08c6763d16..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_95.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_96.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_96.RULE index 44fda501e9a..9c5b3bbb871 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_96.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_96.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/CC_BY-SA \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_96.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_96.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_97.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_97.RULE index e9c7389addd..2be3acf4acd 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_97.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_97.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-BY-SA-4.0 +--- + https://licenses.nuget.org/CC-BY-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_97.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_97.yml deleted file mode 100644 index 3041aa9a73c..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-BY-SA-4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_98.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_98.RULE index 15af56dd80b..4a8341764c5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_98.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_98.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-BY-SA-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_98.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_98.yml deleted file mode 100644 index 3455c0ae394..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_99.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_99.RULE index 0595a0d3af4..80da36d117c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_99.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_99.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +relevance: 100 +--- + licensed under CC-BY-SA 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_99.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_99.yml deleted file mode 100644 index aa85f559227..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_cc-by-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_and_cc-by-3.0_1.RULE index f05f19e8b31..c4e97242ad3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_cc-by-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_and_cc-by-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 AND cc-by-3.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/4.0 + - http://www.creativecommons.org/licenses/by/3.0/us +--- + This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/. This database incorporates geographical data, which is made available under the Creative Commons Attribution 3.0 License. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_cc-by-3.0_1.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_and_cc-by-3.0_1.yml deleted file mode 100644 index e1b71cea7ab..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_cc-by-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 AND cc-by-3.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/4.0 - - http://www.creativecommons.org/licenses/by/3.0/us diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-1.0-plus_1.RULE index e10a78abdaa..adbf4a04231 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-1.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 AND gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + The data is under the Creative Commons Attribution Share-Alike 4.0 license. The source code is under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-1.0-plus_1.yml deleted file mode 100644 index ed79240fba2..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 AND gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-3.0_1.RULE index 553682c7d5f..7fb2c9c432d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-sa-4.0 AND gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 + - https://www.gnu.org/licenses/gpl-3.0 +--- + ## Licensing and Usage Terms The documentation provided for this project is released under a Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0) https://creativecommons.org/licenses/by-sa/4.0/. diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-3.0_1.yml deleted file mode 100644 index 3dd048609e2..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_gpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 AND gpl-3.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 - - https://www.gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.RULE index ea93960745b..8104a44e5eb 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + [CC-BY-SA-4.0](https://creativecommons.org/licenses/by-sa/4.0/legalcode) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.yml deleted file mode 100644 index 914ec1e199c..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_licensebutton.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_licensebutton.RULE index abe477036f1..c5051abfc89 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/by-sa/4.0 +--- + https://licensebuttons.net/l/by-sa/4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_licensebutton.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_licensebutton.yml deleted file mode 100644 index 0d04db2d8ef..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_or_cc-by-nc-sa-4.0_or_cc-by-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_or_cc-by-nc-sa-4.0_or_cc-by-4.0_1.RULE index de93229fc81..b3ad30607d3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_or_cc-by-nc-sa-4.0_or_cc-by-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_or_cc-by-nc-sa-4.0_or_cc-by-4.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-sa-4.0 OR cc-by-nc-sa-4.0 OR cc-by-4.0 +is_license_notice: yes +relevance: 80 +notes: A weak indication of a CC license +--- + Creative Commons-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_or_cc-by-nc-sa-4.0_or_cc-by-4.0_1.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_or_cc-by-nc-sa-4.0_or_cc-by-4.0_1.yml deleted file mode 100644 index 1ee21cf6fce..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_or_cc-by-nc-sa-4.0_or_cc-by-4.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-4.0 OR cc-by-nc-sa-4.0 OR cc-by-4.0 -is_license_notice: yes -relevance: 80 -notes: A weak indication of a CC license diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_url_1.RULE index 090a6297813..74c2472aeb8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-4.0 +--- + https://spdx.org/licenses/cc-by-sa-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_1.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_url_1.yml deleted file mode 100644 index eba302d11ff..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_2.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_url_2.RULE index 177b2c341eb..9368456fbb0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc-by-sa-4.0.html +--- + https://spdx.org/licenses/cc-by-sa-4.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_2.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_url_2.yml deleted file mode 100644 index 0724726e115..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc-by-sa-4.0.html diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.RULE index 657b5f79d72..ad2cef8bda2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 + - https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg +--- + [![License: CC BY-SA 4.0](https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.yml deleted file mode 100644 index 26929c2e044..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 - - https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.RULE index 5fbad1e4ab6..059f2ef394a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_reference: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + [![License: CC BY-SA 4.0](https://licensebuttons.net/l/by-sa/4.0/80x15.png)](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.yml deleted file mode 100644 index ec30d371646..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-by-sa-4.0 -is_license_reference: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_1.RULE index c787c796e26..5fea91e9211 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_1.RULE @@ -1 +1,6 @@ +--- +license_expression: cc-by-sa-4.0 WITH generic-exception +is_license_text: yes +--- + This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA) with Design Exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_1.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_1.yml deleted file mode 100644 index 084479ef950..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-by-sa-4.0 WITH generic-exception -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_2.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_2.RULE index bfb13213da9..d6a5395f3d3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_2.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 WITH generic-exception +is_license_notice: yes +notes: https://www.kicad.org/libraries/license/ +--- + are licensed under the Creative Commons CC-BY-SA 4.0 License, with the following exception: To the extent that the creation of electronic designs that use 'Licensed Material' can be considered to be 'Adapted Material', then the copyright holder waives article 3 of the license with respect to these designs and any generated files which use data provided as part of the 'Licensed Material'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_2.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_2.yml deleted file mode 100644 index 9801a7ba037..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 WITH generic-exception -is_license_notice: yes -notes: https://www.kicad.org/libraries/license/ diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_3.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_3.RULE index 40c4d836ed7..a70b52b2471 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 WITH generic-exception +is_license_notice: yes +notes: https://www.kicad.org/libraries/license/ +--- + Libraries License The libraries are licensed under the Creative Commons CC-BY-SA 4.0 License, with the following exception: diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_3.yml b/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_3.yml deleted file mode 100644 index 9801a7ba037..00000000000 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_with_generic-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-by-sa-4.0 WITH generic-exception -is_license_notice: yes -notes: https://www.kicad.org/libraries/license/ diff --git a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit.RULE b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit.RULE index 729c9c7904e..348c9115275 100644 --- a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit.RULE +++ b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-by-2.0-uk +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.webtoolkit.info/license +--- + webtoolkit License http://www.webtoolkit.info/license diff --git a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit.yml b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit.yml deleted file mode 100644 index 7328461312d..00000000000 --- a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0-uk -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.webtoolkit.info/license diff --git a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_1.RULE b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_1.RULE index b3c234150cc..a214ebd8a57 100644 --- a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_1.RULE +++ b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc-by-2.0-uk +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://creativecommons.org/licenses/by/2.0/uk/ + - http://www.webtoolkit.info/license +--- + webtoolkit License http://www.webtoolkit.info/license diff --git a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_1.yml b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_1.yml deleted file mode 100644 index 7dfaaa1ad18..00000000000 --- a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0-uk -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://creativecommons.org/licenses/by/2.0/uk/ - - http://www.webtoolkit.info/license diff --git a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_2.RULE b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_2.RULE index 32d9a20a2db..eba604c8f1a 100644 --- a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_2.RULE +++ b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-2.0-uk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.webtoolkit.info/license +--- + http://www.webtoolkit.info/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_2.yml b/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_2.yml deleted file mode 100644 index 74d36e4a69e..00000000000 --- a/src/licensedcode/data/rules/cc-by-uk-2.0-webtoolkit_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-2.0-uk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.webtoolkit.info/license diff --git a/src/licensedcode/data/rules/cc-devnations-2.0_1.RULE b/src/licensedcode/data/rules/cc-devnations-2.0_1.RULE index 724d588e216..bfd0bc4e743 100644 --- a/src/licensedcode/data/rules/cc-devnations-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc-devnations-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-devnations-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/devnations/2.0 +--- + http://creativecommons.org/licenses/devnations/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-devnations-2.0_1.yml b/src/licensedcode/data/rules/cc-devnations-2.0_1.yml deleted file mode 100644 index ab418e76b85..00000000000 --- a/src/licensedcode/data/rules/cc-devnations-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-devnations-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/devnations/2.0 diff --git a/src/licensedcode/data/rules/cc-devnations-2.0_2.RULE b/src/licensedcode/data/rules/cc-devnations-2.0_2.RULE index 172ea3cbd3d..8d9d0c3a216 100644 --- a/src/licensedcode/data/rules/cc-devnations-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc-devnations-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-devnations-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/devnations/2.0/legalcode +--- + http://creativecommons.org/licenses/devnations/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-devnations-2.0_2.yml b/src/licensedcode/data/rules/cc-devnations-2.0_2.yml deleted file mode 100644 index d10a3243680..00000000000 --- a/src/licensedcode/data/rules/cc-devnations-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-devnations-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/devnations/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-devnations-2.0_3.RULE b/src/licensedcode/data/rules/cc-devnations-2.0_3.RULE index 35f2080fb92..9978f2fefcf 100644 --- a/src/licensedcode/data/rules/cc-devnations-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc-devnations-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-devnations-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/devnations/2.0 +--- + https://creativecommons.org/licenses/devnations/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-devnations-2.0_3.yml b/src/licensedcode/data/rules/cc-devnations-2.0_3.yml deleted file mode 100644 index cfc0191affc..00000000000 --- a/src/licensedcode/data/rules/cc-devnations-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-devnations-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/devnations/2.0 diff --git a/src/licensedcode/data/rules/cc-devnations-2.0_4.RULE b/src/licensedcode/data/rules/cc-devnations-2.0_4.RULE index 04e2df21837..5fda0ddbe2a 100644 --- a/src/licensedcode/data/rules/cc-devnations-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc-devnations-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-devnations-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/devnations/2.0/legalcode +--- + https://creativecommons.org/licenses/devnations/2.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-devnations-2.0_4.yml b/src/licensedcode/data/rules/cc-devnations-2.0_4.yml deleted file mode 100644 index dfa9c091b8c..00000000000 --- a/src/licensedcode/data/rules/cc-devnations-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-devnations-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/devnations/2.0/legalcode diff --git a/src/licensedcode/data/rules/cc-pd_1.RULE b/src/licensedcode/data/rules/cc-pd_1.RULE index 754df3734c8..8780a566cd1 100644 --- a/src/licensedcode/data/rules/cc-pd_1.RULE +++ b/src/licensedcode/data/rules/cc-pd_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + http://creativecommons.org/licenses/publicdomain/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_1.yml b/src/licensedcode/data/rules/cc-pd_1.yml deleted file mode 100644 index 49af3d36cdb..00000000000 --- a/src/licensedcode/data/rules/cc-pd_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_10.RULE b/src/licensedcode/data/rules/cc-pd_10.RULE index e3dfcdb41dd..7970fa88355 100644 --- a/src/licensedcode/data/rules/cc-pd_10.RULE +++ b/src/licensedcode/data/rules/cc-pd_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-pd +is_license_text: yes +--- + Public Domain Dedication This license is acceptable for Free Cultural Works. diff --git a/src/licensedcode/data/rules/cc-pd_10.yml b/src/licensedcode/data/rules/cc-pd_10.yml deleted file mode 100644 index 9df044922f4..00000000000 --- a/src/licensedcode/data/rules/cc-pd_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-pd -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-pd_11.RULE b/src/licensedcode/data/rules/cc-pd_11.RULE index 6b4a67bd5be..ed1ad4cceae 100644 --- a/src/licensedcode/data/rules/cc-pd_11.RULE +++ b/src/licensedcode/data/rules/cc-pd_11.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-pd +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain +--- + released to the public domain, as explained at * http://creativecommons.org/licenses/publicdomain \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_11.yml b/src/licensedcode/data/rules/cc-pd_11.yml deleted file mode 100644 index 27a5f6f3e15..00000000000 --- a/src/licensedcode/data/rules/cc-pd_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain diff --git a/src/licensedcode/data/rules/cc-pd_12.RULE b/src/licensedcode/data/rules/cc-pd_12.RULE index a549a10735a..faf5d49a44c 100644 --- a/src/licensedcode/data/rules/cc-pd_12.RULE +++ b/src/licensedcode/data/rules/cc-pd_12.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-pd +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain +--- + and released to the public domain, as explained at * http://creativecommons.org/licenses/publicdomain \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_12.yml b/src/licensedcode/data/rules/cc-pd_12.yml deleted file mode 100644 index 27a5f6f3e15..00000000000 --- a/src/licensedcode/data/rules/cc-pd_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain diff --git a/src/licensedcode/data/rules/cc-pd_13.RULE b/src/licensedcode/data/rules/cc-pd_13.RULE index 48ed964ae4c..1223d309086 100644 --- a/src/licensedcode/data/rules/cc-pd_13.RULE +++ b/src/licensedcode/data/rules/cc-pd_13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc-pd +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + # This work is hereby released into the Public Domain. To view a copy of # the public domain dedication, visit # http://creativecommons.org/licenses/publicdomain/ or send a letter to diff --git a/src/licensedcode/data/rules/cc-pd_13.yml b/src/licensedcode/data/rules/cc-pd_13.yml deleted file mode 100644 index 7d240cd9d29..00000000000 --- a/src/licensedcode/data/rules/cc-pd_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_14.RULE b/src/licensedcode/data/rules/cc-pd_14.RULE index ab13453a2bc..c9de48d5b6e 100644 --- a/src/licensedcode/data/rules/cc-pd_14.RULE +++ b/src/licensedcode/data/rules/cc-pd_14.RULE @@ -1,3 +1,14 @@ +--- +license_expression: cc-pd +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://web.resource.org/cc/DerivativeWorks + - http://web.resource.org/cc/Distribution + - http://web.resource.org/cc/PublicDomain + - http://web.resource.org/cc/Reproduction +--- + diff --git a/src/licensedcode/data/rules/cc-pd_14.yml b/src/licensedcode/data/rules/cc-pd_14.yml deleted file mode 100644 index 7eb5bc530be..00000000000 --- a/src/licensedcode/data/rules/cc-pd_14.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cc-pd -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://web.resource.org/cc/DerivativeWorks - - http://web.resource.org/cc/Distribution - - http://web.resource.org/cc/PublicDomain - - http://web.resource.org/cc/Reproduction diff --git a/src/licensedcode/data/rules/cc-pd_15.RULE b/src/licensedcode/data/rules/cc-pd_15.RULE index 63f8e6e4281..054679efcd4 100644 --- a/src/licensedcode/data/rules/cc-pd_15.RULE +++ b/src/licensedcode/data/rules/cc-pd_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc-pd +is_license_text: yes +relevance: 100 +--- + The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of diff --git a/src/licensedcode/data/rules/cc-pd_15.yml b/src/licensedcode/data/rules/cc-pd_15.yml deleted file mode 100644 index 185ef2cc334..00000000000 --- a/src/licensedcode/data/rules/cc-pd_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-pd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-pd_16.RULE b/src/licensedcode/data/rules/cc-pd_16.RULE index 025af197e7f..b81a6e49884 100644 --- a/src/licensedcode/data/rules/cc-pd_16.RULE +++ b/src/licensedcode/data/rules/cc-pd_16.RULE @@ -1 +1,8 @@ +--- +license_expression: cc-pd +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + dlmalloc is released under the Creative Commons license. See Creative Commons License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_16.yml b/src/licensedcode/data/rules/cc-pd_16.yml deleted file mode 100644 index 7698c2b650f..00000000000 --- a/src/licensedcode/data/rules/cc-pd_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-pd -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-pd_17.RULE b/src/licensedcode/data/rules/cc-pd_17.RULE index 088758427a3..589a7fa57cb 100644 --- a/src/licensedcode/data/rules/cc-pd_17.RULE +++ b/src/licensedcode/data/rules/cc-pd_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Public Domain Dedication and Certification \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_17.yml b/src/licensedcode/data/rules/cc-pd_17.yml deleted file mode 100644 index ea01f4e7b78..00000000000 --- a/src/licensedcode/data/rules/cc-pd_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-pd_18.RULE b/src/licensedcode/data/rules/cc-pd_18.RULE index b15f6ac7af7..f5d1503e724 100644 --- a/src/licensedcode/data/rules/cc-pd_18.RULE +++ b/src/licensedcode/data/rules/cc-pd_18.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Public Domain Dedication and Certification \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_18.yml b/src/licensedcode/data/rules/cc-pd_18.yml deleted file mode 100644 index ea01f4e7b78..00000000000 --- a/src/licensedcode/data/rules/cc-pd_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-pd_19.RULE b/src/licensedcode/data/rules/cc-pd_19.RULE index 5423c1c59ca..fad61a1d7cc 100644 --- a/src/licensedcode/data/rules/cc-pd_19.RULE +++ b/src/licensedcode/data/rules/cc-pd_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CC-PDDC Creative Commons Public Domain Dedication and Certification \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_19.yml b/src/licensedcode/data/rules/cc-pd_19.yml deleted file mode 100644 index ea01f4e7b78..00000000000 --- a/src/licensedcode/data/rules/cc-pd_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-pd_2.RULE b/src/licensedcode/data/rules/cc-pd_2.RULE index 23c946eccf8..3aa20004ba0 100644 --- a/src/licensedcode/data/rules/cc-pd_2.RULE +++ b/src/licensedcode/data/rules/cc-pd_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/ +--- + http://creativecommons.org/publicdomain/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_2.yml b/src/licensedcode/data/rules/cc-pd_2.yml deleted file mode 100644 index 02863cf450f..00000000000 --- a/src/licensedcode/data/rules/cc-pd_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_20.RULE b/src/licensedcode/data/rules/cc-pd_20.RULE index 0672b18ddda..542ddcb876c 100644 --- a/src/licensedcode/data/rules/cc-pd_20.RULE +++ b/src/licensedcode/data/rules/cc-pd_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Public Domain Dedication and Certification CC-PDDC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_20.yml b/src/licensedcode/data/rules/cc-pd_20.yml deleted file mode 100644 index ea01f4e7b78..00000000000 --- a/src/licensedcode/data/rules/cc-pd_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-pd_2002_1.RULE b/src/licensedcode/data/rules/cc-pd_2002_1.RULE index f204a983735..197b6f0e243 100644 --- a/src/licensedcode/data/rules/cc-pd_2002_1.RULE +++ b/src/licensedcode/data/rules/cc-pd_2002_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +notes: this is a rare and old CC public domain dedication from circa 2002 See https://web.archive.org/web/20021222174155/creativecommons.org/licenses/publicdomain + The text has been found to be different enough from the cc-pd license +--- + Copyright-Only Dedication (based on United States law) @@ -6,5 +13,4 @@ The person or persons who have associated their work with this document (the "De Dedicator makes this dedication for the benefit of the public at large and to the detriment of Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. -Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. - +Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_2002_1.yml b/src/licensedcode/data/rules/cc-pd_2002_1.yml deleted file mode 100644 index c96981ddaa2..00000000000 --- a/src/licensedcode/data/rules/cc-pd_2002_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -notes: this is a rare and old CC public domain dedication from circa 2002 See https://web.archive.org/web/20021222174155/creativecommons.org/licenses/publicdomain - The text has been found to be different enough from the cc-pd license diff --git a/src/licensedcode/data/rules/cc-pd_2004_1.RULE b/src/licensedcode/data/rules/cc-pd_2004_1.RULE index acef10f24fc..be61efa7b36 100644 --- a/src/licensedcode/data/rules/cc-pd_2004_1.RULE +++ b/src/licensedcode/data/rules/cc-pd_2004_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc-pd +is_license_text: yes +--- + Copyright-Only Dedication (based on United States law) or Public Domain Certification @@ -8,5 +13,4 @@ A certifier has taken reasonable steps to verify the copyright status of this wo A dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicators intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understand that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. -Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. - +Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_2004_1.yml b/src/licensedcode/data/rules/cc-pd_2004_1.yml deleted file mode 100644 index 9df044922f4..00000000000 --- a/src/licensedcode/data/rules/cc-pd_2004_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc-pd -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc-pd_21.RULE b/src/licensedcode/data/rules/cc-pd_21.RULE index ea31fff9376..06d5baf048e 100644 --- a/src/licensedcode/data/rules/cc-pd_21.RULE +++ b/src/licensedcode/data/rules/cc-pd_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CC-PDDC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_21.yml b/src/licensedcode/data/rules/cc-pd_21.yml deleted file mode 100644 index 98d131d9196..00000000000 --- a/src/licensedcode/data/rules/cc-pd_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-pd_22.RULE b/src/licensedcode/data/rules/cc-pd_22.RULE index 0bad7cae1b5..1df02fc2b15 100644 --- a/src/licensedcode/data/rules/cc-pd_22.RULE +++ b/src/licensedcode/data/rules/cc-pd_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Creative Commons Public Domain Dedication and Certification \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_22.yml b/src/licensedcode/data/rules/cc-pd_22.yml deleted file mode 100644 index 98d131d9196..00000000000 --- a/src/licensedcode/data/rules/cc-pd_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-pd_23.RULE b/src/licensedcode/data/rules/cc-pd_23.RULE index f9a18820ee7..ae7470590a6 100644 --- a/src/licensedcode/data/rules/cc-pd_23.RULE +++ b/src/licensedcode/data/rules/cc-pd_23.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CC-PDDC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_23.yml b/src/licensedcode/data/rules/cc-pd_23.yml deleted file mode 100644 index 98d131d9196..00000000000 --- a/src/licensedcode/data/rules/cc-pd_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc-pd_24.RULE b/src/licensedcode/data/rules/cc-pd_24.RULE index 6a408e99523..70e4c8a5023 100644 --- a/src/licensedcode/data/rules/cc-pd_24.RULE +++ b/src/licensedcode/data/rules/cc-pd_24.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC-PDDC +--- + https://licenses.nuget.org/CC-PDDC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_24.yml b/src/licensedcode/data/rules/cc-pd_24.yml deleted file mode 100644 index 3bffd60a9d4..00000000000 --- a/src/licensedcode/data/rules/cc-pd_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC-PDDC diff --git a/src/licensedcode/data/rules/cc-pd_25.RULE b/src/licensedcode/data/rules/cc-pd_25.RULE index b2bc09d5a1d..e975a0d8877 100644 --- a/src/licensedcode/data/rules/cc-pd_25.RULE +++ b/src/licensedcode/data/rules/cc-pd_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC-PDDC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_25.yml b/src/licensedcode/data/rules/cc-pd_25.yml deleted file mode 100644 index bdb08b24357..00000000000 --- a/src/licensedcode/data/rules/cc-pd_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc-pd_26.RULE b/src/licensedcode/data/rules/cc-pd_26.RULE index dbfee69a139..5b6c616255f 100644 --- a/src/licensedcode/data/rules/cc-pd_26.RULE +++ b/src/licensedcode/data/rules/cc-pd_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-PDDC +--- + LICENSE {{CC-PDDC}} https://spdx.org/licenses/CC-PDDC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_26.yml b/src/licensedcode/data/rules/cc-pd_26.yml deleted file mode 100644 index 1a2f204d212..00000000000 --- a/src/licensedcode/data/rules/cc-pd_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-PDDC diff --git a/src/licensedcode/data/rules/cc-pd_27.RULE b/src/licensedcode/data/rules/cc-pd_27.RULE index 8a82a9bd98e..b6f38ff6f9d 100644 --- a/src/licensedcode/data/rules/cc-pd_27.RULE +++ b/src/licensedcode/data/rules/cc-pd_27.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC-PDDC +--- + {{CC-PDDC}} https://spdx.org/licenses/CC-PDDC \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_27.yml b/src/licensedcode/data/rules/cc-pd_27.yml deleted file mode 100644 index 1a2f204d212..00000000000 --- a/src/licensedcode/data/rules/cc-pd_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC-PDDC diff --git a/src/licensedcode/data/rules/cc-pd_3.RULE b/src/licensedcode/data/rules/cc-pd_3.RULE index a2c079ccdea..b6ea3652d92 100644 --- a/src/licensedcode/data/rules/cc-pd_3.RULE +++ b/src/licensedcode/data/rules/cc-pd_3.RULE @@ -1,6 +1,12 @@ +--- +license_expression: cc-pd +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + Public Domain code This software is Public Domain. To view a copy of the public domain dedication, visit http://creativecommons.org/licenses/publicdomain/ or send a letter to -Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. - +Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_3.yml b/src/licensedcode/data/rules/cc-pd_3.yml deleted file mode 100644 index 04a0a1ef0fc..00000000000 --- a/src/licensedcode/data/rules/cc-pd_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-pd -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_4.RULE b/src/licensedcode/data/rules/cc-pd_4.RULE index 8669ee4658d..9dcb35b836b 100644 --- a/src/licensedcode/data/rules/cc-pd_4.RULE +++ b/src/licensedcode/data/rules/cc-pd_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + Any copyright is dedicated to the Public Domain. -http://creativecommons.org/licenses/publicdomain/ +http://creativecommons.org/licenses/publicdomain/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_4.yml b/src/licensedcode/data/rules/cc-pd_4.yml deleted file mode 100644 index 49af3d36cdb..00000000000 --- a/src/licensedcode/data/rules/cc-pd_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_5.RULE b/src/licensedcode/data/rules/cc-pd_5.RULE index 51d3f5e379f..b0ef816e693 100644 --- a/src/licensedcode/data/rules/cc-pd_5.RULE +++ b/src/licensedcode/data/rules/cc-pd_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-pd +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + This work is in the Public Domain. To view a copy of the public domain certification, visit http://creativecommons.org/licenses/publicdomain/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, diff --git a/src/licensedcode/data/rules/cc-pd_5.yml b/src/licensedcode/data/rules/cc-pd_5.yml deleted file mode 100644 index 04a0a1ef0fc..00000000000 --- a/src/licensedcode/data/rules/cc-pd_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-pd -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_6.RULE b/src/licensedcode/data/rules/cc-pd_6.RULE index 6efdebe9f28..3d5334893eb 100644 --- a/src/licensedcode/data/rules/cc-pd_6.RULE +++ b/src/licensedcode/data/rules/cc-pd_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc-pd +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + This work is in the Public Domain. To view a copy of the public domain certification, visit http://creativecommons.org/licenses/publicdomain/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, diff --git a/src/licensedcode/data/rules/cc-pd_6.yml b/src/licensedcode/data/rules/cc-pd_6.yml deleted file mode 100644 index 35f806ce18b..00000000000 --- a/src/licensedcode/data/rules/cc-pd_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc-pd -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_7.RULE b/src/licensedcode/data/rules/cc-pd_7.RULE index 8e4a7f5522d..a72e6610f7e 100644 --- a/src/licensedcode/data/rules/cc-pd_7.RULE +++ b/src/licensedcode/data/rules/cc-pd_7.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-pd +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_7.yml b/src/licensedcode/data/rules/cc-pd_7.yml deleted file mode 100644 index 53b76ef6688..00000000000 --- a/src/licensedcode/data/rules/cc-pd_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_8.RULE b/src/licensedcode/data/rules/cc-pd_8.RULE index 1d0624848bb..76a3378851c 100644 --- a/src/licensedcode/data/rules/cc-pd_8.RULE +++ b/src/licensedcode/data/rules/cc-pd_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc-pd +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-pd_8.yml b/src/licensedcode/data/rules/cc-pd_8.yml deleted file mode 100644 index 53b76ef6688..00000000000 --- a/src/licensedcode/data/rules/cc-pd_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/publicdomain/ diff --git a/src/licensedcode/data/rules/cc-pd_9.RULE b/src/licensedcode/data/rules/cc-pd_9.RULE index 8961a79a90f..c7f9bd22df1 100644 --- a/src/licensedcode/data/rules/cc-pd_9.RULE +++ b/src/licensedcode/data/rules/cc-pd_9.RULE @@ -1,3 +1,14 @@ +--- +license_expression: cc-pd +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/publicdomain/ + - http://creativecommons.org/ns#DerivativeWorks + - http://creativecommons.org/ns#Distribution + - http://creativecommons.org/ns#Reproduction +--- + diff --git a/src/licensedcode/data/rules/cc0-1.0_146.yml b/src/licensedcode/data/rules/cc0-1.0_146.yml deleted file mode 100644 index 5b3e6c09830..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_146.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -ignorable_urls: - - http://creativecommons.org/ns#DerivativeWorks - - http://creativecommons.org/ns#Distribution - - http://creativecommons.org/ns#Reproduction - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_147.RULE b/src/licensedcode/data/rules/cc0-1.0_147.RULE index 1cdaaafab5d..ef665fef25e 100644 --- a/src/licensedcode/data/rules/cc0-1.0_147.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_147.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_text: yes +--- + License: CC0 license Statement of Purpose diff --git a/src/licensedcode/data/rules/cc0-1.0_147.yml b/src/licensedcode/data/rules/cc0-1.0_147.yml deleted file mode 100644 index ef6078e519c..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_147.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_148.RULE b/src/licensedcode/data/rules/cc0-1.0_148.RULE index 4a9f3ad1e8e..ba36efd6c37 100644 --- a/src/licensedcode/data/rules/cc0-1.0_148.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_148.RULE @@ -1,2 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. -On Debian GNU/Linux systems, the complete text of the CC0 license, version 1.0, can be found in /usr/share/common-licenses/CC0-1.0. +On Debian GNU/Linux systems, the complete text of the CC0 license, version 1.0, can be found in /usr/share/common-licenses/CC0-1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_148.yml b/src/licensedcode/data/rules/cc0-1.0_148.yml deleted file mode 100644 index d9fd98e50ab..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_148.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_149.RULE b/src/licensedcode/data/rules/cc0-1.0_149.RULE index dab89fc2a48..a73e68457f3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_149.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_149.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + You may use this work under the terms of a Creative Commons CC0 1.0 License/Waiver. . diff --git a/src/licensedcode/data/rules/cc0-1.0_149.yml b/src/licensedcode/data/rules/cc0-1.0_149.yml deleted file mode 100644 index 395b191f22f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_149.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_15.RULE b/src/licensedcode/data/rules/cc0-1.0_15.RULE index c6c3488d0b8..3bf4448fa70 100644 --- a/src/licensedcode/data/rules/cc0-1.0_15.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_15.RULE @@ -1,5 +1,12 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + Copyright and related rights for sample code are waived via CC0. Sample code is defined as all source code displayed within the prose of the documentation. -CC0: http://creativecommons.org/publicdomain/zero/1.0/ +CC0: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_15.yml b/src/licensedcode/data/rules/cc0-1.0_15.yml deleted file mode 100644 index 9e85b856c19..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_150.RULE b/src/licensedcode/data/rules/cc0-1.0_150.RULE index 897ed92799e..d12cb275fe1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_150.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_150.RULE @@ -1 +1,10 @@ -On Debian GNU/Linux systems, the complete text of the CC0 license, version 1.0, can be found in /usr/share/common-licenses/CC0-1.0. +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + +On Debian GNU/Linux systems, the complete text of the CC0 license, version 1.0, can be found in /usr/share/common-licenses/CC0-1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_150.yml b/src/licensedcode/data/rules/cc0-1.0_150.yml deleted file mode 100644 index 260ce20888e..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_150.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_151.RULE b/src/licensedcode/data/rules/cc0-1.0_151.RULE index 480ebbbc8bd..a8573c1addb 100644 --- a/src/licensedcode/data/rules/cc0-1.0_151.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_151.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + On Debian GNU/Linux systems, the complete text of the CC0 1.0 Universal license can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_151.yml b/src/licensedcode/data/rules/cc0-1.0_151.yml deleted file mode 100644 index 395b191f22f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_151.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_152.RULE b/src/licensedcode/data/rules/cc0-1.0_152.RULE index 095799648ed..4237db36fc7 100644 --- a/src/licensedcode/data/rules/cc0-1.0_152.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_152.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. diff --git a/src/licensedcode/data/rules/cc0-1.0_152.yml b/src/licensedcode/data/rules/cc0-1.0_152.yml deleted file mode 100644 index 79325949fc0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_152.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_153.RULE b/src/licensedcode/data/rules/cc0-1.0_153.RULE index 30a0d6ce5b4..50d14457557 100644 --- a/src/licensedcode/data/rules/cc0-1.0_153.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_153.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. diff --git a/src/licensedcode/data/rules/cc0-1.0_153.yml b/src/licensedcode/data/rules/cc0-1.0_153.yml deleted file mode 100644 index d839bf96f4e..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_153.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_154.RULE b/src/licensedcode/data/rules/cc0-1.0_154.RULE index b9908695692..15c24dca586 100644 --- a/src/licensedcode/data/rules/cc0-1.0_154.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_154.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + The file links to http://creativecommons.org/publicdomain/zero/1.0/ and the full license text as retrieved from there can be found at the end of this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_154.yml b/src/licensedcode/data/rules/cc0-1.0_154.yml deleted file mode 100644 index 9e85b856c19..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_154.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_155.RULE b/src/licensedcode/data/rules/cc0-1.0_155.RULE index 872b01654eb..6cd5068a6c0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_155.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_155.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_text: yes +--- + Statatement of Purpose . The laws of most jurisdictions throughout the world automatically confer diff --git a/src/licensedcode/data/rules/cc0-1.0_155.yml b/src/licensedcode/data/rules/cc0-1.0_155.yml deleted file mode 100644 index ef6078e519c..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_155.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_156.RULE b/src/licensedcode/data/rules/cc0-1.0_156.RULE index c840ff028bd..494d92f2c6f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_156.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_156.RULE @@ -1,2 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. -On Debian systems, the text of the CC0 license, version 1.0, can be found in /usr/share/common-licenses/CC0-1.0. +On Debian systems, the text of the CC0 license, version 1.0, can be found in /usr/share/common-licenses/CC0-1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_156.yml b/src/licensedcode/data/rules/cc0-1.0_156.yml deleted file mode 100644 index d9fd98e50ab..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_156.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_157.RULE b/src/licensedcode/data/rules/cc0-1.0_157.RULE index 5c6558f8653..32c6b429f2a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_157.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_157.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + You may use this work under the terms of a Creative Commons CC0 1.0 License/Waiver. . diff --git a/src/licensedcode/data/rules/cc0-1.0_157.yml b/src/licensedcode/data/rules/cc0-1.0_157.yml deleted file mode 100644 index 395b191f22f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_158.RULE b/src/licensedcode/data/rules/cc0-1.0_158.RULE index 15490c5e4b5..367171092d0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_158.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_158.RULE @@ -1 +1,10 @@ -On Debian systems, the text of the CC0 license, version 1.0, can be found in /usr/share/common-licenses/CC0-1.0. +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + +On Debian systems, the text of the CC0 license, version 1.0, can be found in /usr/share/common-licenses/CC0-1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_158.yml b/src/licensedcode/data/rules/cc0-1.0_158.yml deleted file mode 100644 index 260ce20888e..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_158.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_159.RULE b/src/licensedcode/data/rules/cc0-1.0_159.RULE index d51a49f7d11..656b0321bb7 100644 --- a/src/licensedcode/data/rules/cc0-1.0_159.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_159.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + On Debian systems, the text of the CC0 1.0 Universal license can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_159.yml b/src/licensedcode/data/rules/cc0-1.0_159.yml deleted file mode 100644 index 395b191f22f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_159.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_16.RULE b/src/licensedcode/data/rules/cc0-1.0_16.RULE index 8b977c7ef9d..71508225673 100644 --- a/src/licensedcode/data/rules/cc0-1.0_16.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + # To the extent possible under law, the author(s) have dedicated all # copyright and related and neighboring rights to this software to the # public domain worldwide. This software is distributed without any diff --git a/src/licensedcode/data/rules/cc0-1.0_16.yml b/src/licensedcode/data/rules/cc0-1.0_16.yml deleted file mode 100644 index 5f2807081d9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_160.RULE b/src/licensedcode/data/rules/cc0-1.0_160.RULE index 0d56c025705..35ac25003e1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_160.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_160.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. diff --git a/src/licensedcode/data/rules/cc0-1.0_160.yml b/src/licensedcode/data/rules/cc0-1.0_160.yml deleted file mode 100644 index 79325949fc0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_160.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_161.RULE b/src/licensedcode/data/rules/cc0-1.0_161.RULE index 862c9725818..d5da48784d3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_161.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_161.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. diff --git a/src/licensedcode/data/rules/cc0-1.0_161.yml b/src/licensedcode/data/rules/cc0-1.0_161.yml deleted file mode 100644 index 03af16fc3bc..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_161.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_162.RULE b/src/licensedcode/data/rules/cc0-1.0_162.RULE index 9b0ad371a95..60de1a8e56c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_162.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_162.RULE @@ -1,2 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +--- + The complete text of the Creative Commons 0 1.0 Universal can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_162.yml b/src/licensedcode/data/rules/cc0-1.0_162.yml deleted file mode 100644 index 33ff2a743e8..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_162.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_163.RULE b/src/licensedcode/data/rules/cc0-1.0_163.RULE index 10719b0183a..b92d37df8b2 100644 --- a/src/licensedcode/data/rules/cc0-1.0_163.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_163.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + CC0 1.0 Universal : https://creativecommons.org/publicdomain/zero/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_163.yml b/src/licensedcode/data/rules/cc0-1.0_163.yml deleted file mode 100644 index 56cf53ecd26..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_164.RULE b/src/licensedcode/data/rules/cc0-1.0_164.RULE index d43f23424cf..f0161bd9dee 100644 --- a/src/licensedcode/data/rules/cc0-1.0_164.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_164.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_tag: yes +relevance: 100 +--- + LicenseId: CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_164.yml b/src/licensedcode/data/rules/cc0-1.0_164.yml deleted file mode 100644 index 5613dd42089..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_165.RULE b/src/licensedcode/data/rules/cc0-1.0_165.RULE index f0cad0c33a4..3193a6ddfaf 100644 --- a/src/licensedcode/data/rules/cc0-1.0_165.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_165.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - CC0_LICENSE +--- + LicenseFile: CC0_LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_165.yml b/src/licensedcode/data/rules/cc0-1.0_165.yml deleted file mode 100644 index a3807f02d8f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - CC0_LICENSE diff --git a/src/licensedcode/data/rules/cc0-1.0_166.RULE b/src/licensedcode/data/rules/cc0-1.0_166.RULE index 241bb9347d6..5634178f419 100644 --- a/src/licensedcode/data/rules/cc0-1.0_166.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_166.RULE @@ -1 +1,6 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +--- + CC0-1.0 Creative Commons Zero v1.0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_166.yml b/src/licensedcode/data/rules/cc0-1.0_166.yml deleted file mode 100644 index 33ff2a743e8..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_166.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_167.RULE b/src/licensedcode/data/rules/cc0-1.0_167.RULE index a2fc20af7c7..21b97cff10e 100644 --- a/src/licensedcode/data/rules/cc0-1.0_167.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_167.RULE @@ -1 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Creative Commons Zero v1.0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_167.yml b/src/licensedcode/data/rules/cc0-1.0_167.yml deleted file mode 100644 index 085f056f2ad..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_167.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc0-1.0_168.RULE b/src/licensedcode/data/rules/cc0-1.0_168.RULE index eb9bd294172..246c5d27780 100644 --- a/src/licensedcode/data/rules/cc0-1.0_168.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_168.RULE @@ -1 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Creative Commons Zero v1.0 Universal CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_168.yml b/src/licensedcode/data/rules/cc0-1.0_168.yml deleted file mode 100644 index 085f056f2ad..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_168.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cc0-1.0_169.RULE b/src/licensedcode/data/rules/cc0-1.0_169.RULE index 4e08ee01311..896350bc482 100644 --- a/src/licensedcode/data/rules/cc0-1.0_169.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_169.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + Released under the CC0 license / public domain dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_169.yml b/src/licensedcode/data/rules/cc0-1.0_169.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_17.RULE b/src/licensedcode/data/rules/cc0-1.0_17.RULE index 6d185a45db3..68fba5a99f4 100644 --- a/src/licensedcode/data/rules/cc0-1.0_17.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-CC0--1.0-blue.svg +--- + License](https://img.shields.io/badge/license-CC0--1.0-blue.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_17.yml b/src/licensedcode/data/rules/cc0-1.0_17.yml deleted file mode 100644 index 36594b4c57c..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-CC0--1.0-blue.svg diff --git a/src/licensedcode/data/rules/cc0-1.0_170.RULE b/src/licensedcode/data/rules/cc0-1.0_170.RULE index b327e7e6bcf..79f257c3481 100644 --- a/src/licensedcode/data/rules/cc0-1.0_170.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_170.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + donated to public domain. For details, see CC0 1.0 Universal (1.0), Public Domain Dedication, http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_170.yml b/src/licensedcode/data/rules/cc0-1.0_170.yml deleted file mode 100644 index 9e85b856c19..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_170.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_171.RULE b/src/licensedcode/data/rules/cc0-1.0_171.RULE index 582f7084713..1703fff4295 100644 --- a/src/licensedcode/data/rules/cc0-1.0_171.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_171.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Creative_Commons_Zero \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_171.yml b/src/licensedcode/data/rules/cc0-1.0_171.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_172.RULE b/src/licensedcode/data/rules/cc0-1.0_172.RULE index ea7a0a0225f..51022168f8f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_172.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_172.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Creative_Commons_license#Zero_/_public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_172.yml b/src/licensedcode/data/rules/cc0-1.0_172.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_173.RULE b/src/licensedcode/data/rules/cc0-1.0_173.RULE index b959ab9e320..243e2d5dca9 100644 --- a/src/licensedcode/data/rules/cc0-1.0_173.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_173.RULE @@ -1 +1,6 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +--- + The backport is released under the Creative Commons Public Domain Dedication . The code can be used for any purpose, modified, and redistributed without acknowledgment. No warranty is provided, either express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_173.yml b/src/licensedcode/data/rules/cc0-1.0_173.yml deleted file mode 100644 index 6b902553cf0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_173.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_174.RULE b/src/licensedcode/data/rules/cc0-1.0_174.RULE index a194f2c5a2f..be14aa9074c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_174.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_174.RULE @@ -1 +1,6 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +--- + released under the Creative Commons Public Domain Dedication . The code can be used for any purpose, modified, and redistributed without acknowledgment. No warranty is provided, either express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_174.yml b/src/licensedcode/data/rules/cc0-1.0_174.yml deleted file mode 100644 index 6b902553cf0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_174.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_175.RULE b/src/licensedcode/data/rules/cc0-1.0_175.RULE index 1bbd7616f2a..e27f8fc0bdf 100644 --- a/src/licensedcode/data/rules/cc0-1.0_175.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_175.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + released under the Creative Commons Public Domain Dedication . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_175.yml b/src/licensedcode/data/rules/cc0-1.0_175.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_176.RULE b/src/licensedcode/data/rules/cc0-1.0_176.RULE index 68283b6de09..fe9981e5617 100644 --- a/src/licensedcode/data/rules/cc0-1.0_176.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_176.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 50 +--- + CC0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_176.yml b/src/licensedcode/data/rules/cc0-1.0_176.yml deleted file mode 100644 index 74d1765900c..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_176.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 50 - diff --git a/src/licensedcode/data/rules/cc0-1.0_177.RULE b/src/licensedcode/data/rules/cc0-1.0_177.RULE index 2d2b8686a67..27968c72017 100644 --- a/src/licensedcode/data/rules/cc0-1.0_177.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_177.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + CC01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_177.yml b/src/licensedcode/data/rules/cc0-1.0_177.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_178.RULE b/src/licensedcode/data/rules/cc0-1.0_178.RULE index 467b52a45f3..d074f581e8c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_178.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_178.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CC0-1.0 +--- + https://licenses.nuget.org/CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_178.yml b/src/licensedcode/data/rules/cc0-1.0_178.yml deleted file mode 100644 index 4a54744a8ab..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_178.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_179.RULE b/src/licensedcode/data/rules/cc0-1.0_179.RULE index 0ca569d2962..e73c749b0d6 100644 --- a/src/licensedcode/data/rules/cc0-1.0_179.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_179.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_179.yml b/src/licensedcode/data/rules/cc0-1.0_179.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_18.RULE b/src/licensedcode/data/rules/cc0-1.0_18.RULE index 7e706f47a46..a5b5bf10dab 100644 --- a/src/licensedcode/data/rules/cc0-1.0_18.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_18.RULE @@ -1 +1,6 @@ -To the extent possible under law, has waived all copyright and related or neighboring rights to this work. +--- +license_expression: cc0-1.0 +is_license_notice: yes +--- + +To the extent possible under law, has waived all copyright and related or neighboring rights to this work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_18.yml b/src/licensedcode/data/rules/cc0-1.0_18.yml deleted file mode 100644 index 6b902553cf0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_180.RULE b/src/licensedcode/data/rules/cc0-1.0_180.RULE index 1e7806a6bc7..346b0ea50cf 100644 --- a/src/licensedcode/data/rules/cc0-1.0_180.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_180.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + Copyright and related rights waived via {{[CC0]}}(https://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_180.yml b/src/licensedcode/data/rules/cc0-1.0_180.yml deleted file mode 100644 index 5e6a04cc222..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_180.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_181.RULE b/src/licensedcode/data/rules/cc0-1.0_181.RULE index ae6093c1d45..2d0831bc00c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_181.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_181.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 +--- + Copyright and related rights waived via {{[CC0]}}(http://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_181.yml b/src/licensedcode/data/rules/cc0-1.0_181.yml deleted file mode 100644 index 16ad84dabc2..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_182.RULE b/src/licensedcode/data/rules/cc0-1.0_182.RULE index 5de2af93b63..284aaeb12a0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_182.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_182.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC0-1.0 +--- + {{CC0-1.0}} https://spdx.org/licenses/CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_182.yml b/src/licensedcode/data/rules/cc0-1.0_182.yml deleted file mode 100644 index c1fc59efe39..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_183.RULE b/src/licensedcode/data/rules/cc0-1.0_183.RULE index bf50faf73a3..92f44d79cda 100644 --- a/src/licensedcode/data/rules/cc0-1.0_183.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_183.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CC0-1.0 +--- + LICENSE {{CC0-1.0}} https://spdx.org/licenses/CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_183.yml b/src/licensedcode/data/rules/cc0-1.0_183.yml deleted file mode 100644 index c1fc59efe39..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_183.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_184.RULE b/src/licensedcode/data/rules/cc0-1.0_184.RULE index 6119c41d2e1..aa9f0d783a0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_184.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_184.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +--- + Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without diff --git a/src/licensedcode/data/rules/cc0-1.0_184.yml b/src/licensedcode/data/rules/cc0-1.0_184.yml deleted file mode 100644 index 6b902553cf0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_184.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_185.RULE b/src/licensedcode/data/rules/cc0-1.0_185.RULE index ae168946d48..4c4fcdff676 100644 --- a/src/licensedcode/data/rules/cc0-1.0_185.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_185.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +--- + For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or diff --git a/src/licensedcode/data/rules/cc0-1.0_185.yml b/src/licensedcode/data/rules/cc0-1.0_185.yml deleted file mode 100644 index 6b902553cf0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_185.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_186.RULE b/src/licensedcode/data/rules/cc0-1.0_186.RULE index f7b8e249242..f2f901c64f3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_186.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_186.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without diff --git a/src/licensedcode/data/rules/cc0-1.0_186.yml b/src/licensedcode/data/rules/cc0-1.0_186.yml deleted file mode 100644 index 577cd3f7ec5..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_186.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_187.RULE b/src/licensedcode/data/rules/cc0-1.0_187.RULE index d209a2c57b3..176f7182d39 100644 --- a/src/licensedcode/data/rules/cc0-1.0_187.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_187.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + text of the Creative Commons 0 1.0 Universal can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_187.yml b/src/licensedcode/data/rules/cc0-1.0_187.yml deleted file mode 100644 index 577cd3f7ec5..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_187.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_19.RULE b/src/licensedcode/data/rules/cc0-1.0_19.RULE index 2092be006aa..46a085b8139 100644 --- a/src/licensedcode/data/rules/cc0-1.0_19.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/cc0-1.0 +--- + License: [`cc0-1.0`](http://choosealicense.com/licenses/cc0-1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_19.yml b/src/licensedcode/data/rules/cc0-1.0_19.yml deleted file mode 100644 index 2958a547730..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/cc0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_2.RULE b/src/licensedcode/data/rules/cc0-1.0_2.RULE index bbf5e6d6457..3b081d22eb0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Zero v1.0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_2.yml b/src/licensedcode/data/rules/cc0-1.0_2.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_20.RULE b/src/licensedcode/data/rules/cc0-1.0_20.RULE index 47a93d233a3..ab3f8f94667 100644 --- a/src/licensedcode/data/rules/cc0-1.0_20.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + Statement of Purpose The laws of most jurisdictions throughout the world automatically confer @@ -111,4 +118,4 @@ Affirmer's express Statement of Purpose. CC0 or use of the Work. For more information, please see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_20.yml b/src/licensedcode/data/rules/cc0-1.0_20.yml deleted file mode 100644 index 7ab3298f336..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_21.RULE b/src/licensedcode/data/rules/cc0-1.0_21.RULE index 3e8eef55d0e..0c1b1813691 100644 --- a/src/licensedcode/data/rules/cc0-1.0_21.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_21.RULE @@ -1 +1,7 @@ -CC0 (Public domain) - see LICENSE.CC0 file for details +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 90 +--- + +CC0 (Public domain) - see LICENSE.CC0 file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_21.yml b/src/licensedcode/data/rules/cc0-1.0_21.yml deleted file mode 100644 index 0bc53fc2901..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cc0-1.0_22.RULE b/src/licensedcode/data/rules/cc0-1.0_22.RULE index 815d491111b..ef0763f28e1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_22.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + This work is licensed under the Creative Commons CC0 1.0 Universal License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_22.yml b/src/licensedcode/data/rules/cc0-1.0_22.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_23.RULE b/src/licensedcode/data/rules/cc0-1.0_23.RULE index 91812417463..a8aa38c0cbe 100644 --- a/src/licensedcode/data/rules/cc0-1.0_23.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 +--- + This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication license. Its contents can be found at: http://creativecommons.org/publicdomain/zero/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_23.yml b/src/licensedcode/data/rules/cc0-1.0_23.yml deleted file mode 100644 index 080718a3b42..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_24.RULE b/src/licensedcode/data/rules/cc0-1.0_24.RULE index d646d2b39d7..0cc25ba9310 100644 --- a/src/licensedcode/data/rules/cc0-1.0_24.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_24.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + /* Any copyright is dedicated to the Public Domain. - * http://creativecommons.org/publicdomain/zero/1.0/ */ + * http://creativecommons.org/publicdomain/zero/1.0/ */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_24.yml b/src/licensedcode/data/rules/cc0-1.0_24.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_25.RULE b/src/licensedcode/data/rules/cc0-1.0_25.RULE index 5a027b921ef..2015ea9a515 100644 --- a/src/licensedcode/data/rules/cc0-1.0_25.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + see https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_25.yml b/src/licensedcode/data/rules/cc0-1.0_25.yml deleted file mode 100644 index 4f29ecf5780..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_26.RULE b/src/licensedcode/data/rules/cc0-1.0_26.RULE index 0e5c54ff655..c25a99810d5 100644 --- a/src/licensedcode/data/rules/cc0-1.0_26.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_26.RULE @@ -1,6 +1,13 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + To the extent possible under law, the authors have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along -with this software. If not, see https://creativecommons.org/publicdomain/zero/1.0/. +with this software. If not, see https://creativecommons.org/publicdomain/zero/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_26.yml b/src/licensedcode/data/rules/cc0-1.0_26.yml deleted file mode 100644 index 8e4645a0f5f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_27.RULE b/src/licensedcode/data/rules/cc0-1.0_27.RULE index 8ea74166fb4..2588a34a72f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_27.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_27.RULE @@ -1,7 +1,14 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_27.yml b/src/licensedcode/data/rules/cc0-1.0_27.yml deleted file mode 100644 index 9e85b856c19..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_28.RULE b/src/licensedcode/data/rules/cc0-1.0_28.RULE index 4f01057fb0f..ce4c2a96ec9 100644 --- a/src/licensedcode/data/rules/cc0-1.0_28.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_28.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + Written by developers and released to the public domain, as explained at - * http://creativecommons.org/publicdomain/zero/1.0/ + * http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_28.yml b/src/licensedcode/data/rules/cc0-1.0_28.yml deleted file mode 100644 index 9e85b856c19..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_29.RULE b/src/licensedcode/data/rules/cc0-1.0_29.RULE index b8655b37c3f..c29a5b6d9bb 100644 --- a/src/licensedcode/data/rules/cc0-1.0_29.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_29.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + * License: CC0 Public Domain Dedication * * * * To the extent possible under law, the author(s) have dedicated all copyright * diff --git a/src/licensedcode/data/rules/cc0-1.0_29.yml b/src/licensedcode/data/rules/cc0-1.0_29.yml deleted file mode 100644 index 9e85b856c19..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_3.RULE b/src/licensedcode/data/rules/cc0-1.0_3.RULE index a21aedacc03..54c10c977ec 100644 --- a/src/licensedcode/data/rules/cc0-1.0_3.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_3.yml b/src/licensedcode/data/rules/cc0-1.0_3.yml deleted file mode 100644 index c38fc91b34c..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_30.RULE b/src/licensedcode/data/rules/cc0-1.0_30.RULE index 74805eba764..9903b6bce1d 100644 --- a/src/licensedcode/data/rules/cc0-1.0_30.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + No copyright restrictions. CC0 by the photographer \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_30.yml b/src/licensedcode/data/rules/cc0-1.0_30.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_31.RULE b/src/licensedcode/data/rules/cc0-1.0_31.RULE index cb3f068901c..a3bd6154562 100644 --- a/src/licensedcode/data/rules/cc0-1.0_31.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_31.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + * To the extent possible under law, the implementer has waived all copyright * and related or neighboring rights to the source code in this file. - * http://creativecommons.org/publicdomain/zero/1.0/ + * http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_31.yml b/src/licensedcode/data/rules/cc0-1.0_31.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_32.RULE b/src/licensedcode/data/rules/cc0-1.0_32.RULE index b1505e7683b..51446d2eec8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_32.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + Dedicated to the public domain under CC0: https://creativecommons.org/publicdomain/zero/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_32.yml b/src/licensedcode/data/rules/cc0-1.0_32.yml deleted file mode 100644 index 5e6a04cc222..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_33.RULE b/src/licensedcode/data/rules/cc0-1.0_33.RULE index d6b24efe726..343bab42228 100644 --- a/src/licensedcode/data/rules/cc0-1.0_33.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_33.RULE @@ -1 +1,7 @@ -CC0 license. \ No newline at end of file +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + +CC0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_33.yml b/src/licensedcode/data/rules/cc0-1.0_33.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_34.RULE b/src/licensedcode/data/rules/cc0-1.0_34.RULE index 2d51070f552..4ddf44984e8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_34.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_34.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + "LicenseId": "CC0-1.0", "LicenseFile": "CC0_LICENSE", \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_34.yml b/src/licensedcode/data/rules/cc0-1.0_34.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_35.RULE b/src/licensedcode/data/rules/cc0-1.0_35.RULE index 6524337ffc7..acb01dd2649 100644 --- a/src/licensedcode/data/rules/cc0-1.0_35.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_35.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + "License": "Creative Commons Zero v1.0 Universal", "LicenseId": "CC0-1.0", "LicenseFile": "CC0_LICENSE", \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_35.yml b/src/licensedcode/data/rules/cc0-1.0_35.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_36.RULE b/src/licensedcode/data/rules/cc0-1.0_36.RULE index 2041e0832a7..b3fe94a82be 100644 --- a/src/licensedcode/data/rules/cc0-1.0_36.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + the text content of the website (including documentation here) is CC0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_36.yml b/src/licensedcode/data/rules/cc0-1.0_36.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_37.RULE b/src/licensedcode/data/rules/cc0-1.0_37.RULE index 5e18e384afa..6f64cc675f1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_37.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_37.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +--- + "License": "Creative Commons Zero v1.0 Universal", "LicenseId": "CC0-1.0", "LicenseFile": "CC0_LICENSE", diff --git a/src/licensedcode/data/rules/cc0-1.0_37.yml b/src/licensedcode/data/rules/cc0-1.0_37.yml deleted file mode 100644 index 6b902553cf0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_38.RULE b/src/licensedcode/data/rules/cc0-1.0_38.RULE index ea67c68f17f..faa09a61c03 100644 --- a/src/licensedcode/data/rules/cc0-1.0_38.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_38.RULE @@ -1,4 +1,12 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the implementers have waived all copyright and related or neighboring rights to the source code in this file. -http://creativecommons.org/publicdomain/zero/1.0/ +http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_38.yml b/src/licensedcode/data/rules/cc0-1.0_38.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_39.RULE b/src/licensedcode/data/rules/cc0-1.0_39.RULE index 23445e38ac0..73a351bd0c4 100644 --- a/src/licensedcode/data/rules/cc0-1.0_39.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_39.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + * To the extent possible under law, the implementer has waived all copyright * and related or neighboring rights to the source code in this file. - * https://creativecommons.org/publicdomain/zero/1.0/ + * https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_39.yml b/src/licensedcode/data/rules/cc0-1.0_39.yml deleted file mode 100644 index 5f2807081d9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_4.RULE b/src/licensedcode/data/rules/cc0-1.0_4.RULE index e0634828c7d..e404ee750c5 100644 --- a/src/licensedcode/data/rules/cc0-1.0_4.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_text: yes +--- + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION diff --git a/src/licensedcode/data/rules/cc0-1.0_4.yml b/src/licensedcode/data/rules/cc0-1.0_4.yml deleted file mode 100644 index ef6078e519c..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_40.RULE b/src/licensedcode/data/rules/cc0-1.0_40.RULE index 24b164b592f..9c7067f7e6f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_40.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_40.RULE @@ -1,4 +1,12 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + * To the extent possible under law, the implementer has waived all copyright * and related or neighboring rights to * This work is published from - * https://creativecommons.org/publicdomain/zero/1.0/ + * https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_40.yml b/src/licensedcode/data/rules/cc0-1.0_40.yml deleted file mode 100644 index 5f2807081d9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_41.RULE b/src/licensedcode/data/rules/cc0-1.0_41.RULE index 6257cb6d448..cf722cad86c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_41.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_41.RULE @@ -1,4 +1,12 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + * To the extent possible under law, the implementer has waived all copyright * and related or neighboring rights to * This work is published from - * http://creativecommons.org/publicdomain/zero/1.0/ + * http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_41.yml b/src/licensedcode/data/rules/cc0-1.0_41.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_42.RULE b/src/licensedcode/data/rules/cc0-1.0_42.RULE index a2f55a4f71a..4aca3f29cf4 100644 --- a/src/licensedcode/data/rules/cc0-1.0_42.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_42.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + * The contents of this file are in the public domain (CC0) * Full text of the CC0 license: - * https://creativecommons.org/publicdomain/zero/1.0/ + * https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_42.yml b/src/licensedcode/data/rules/cc0-1.0_42.yml deleted file mode 100644 index 5f2807081d9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_43.RULE b/src/licensedcode/data/rules/cc0-1.0_43.RULE index c77378b5308..99596ed9c57 100644 --- a/src/licensedcode/data/rules/cc0-1.0_43.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_43.RULE @@ -1,6 +1,14 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. -For details, see . +For details, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_43.yml b/src/licensedcode/data/rules/cc0-1.0_43.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_44.RULE b/src/licensedcode/data/rules/cc0-1.0_44.RULE index 5fda897f777..f8f8b935165 100644 --- a/src/licensedcode/data/rules/cc0-1.0_44.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_44.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + and released to the public domain, as explained at * http://creativecommons.org/publicdomain/zero/1.0/ - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_44.yml b/src/licensedcode/data/rules/cc0-1.0_44.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_45.RULE b/src/licensedcode/data/rules/cc0-1.0_45.RULE index 83fe012cbf1..ea743964124 100644 --- a/src/licensedcode/data/rules/cc0-1.0_45.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_45.RULE @@ -1,6 +1,14 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. -For details, see . +For details, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_45.yml b/src/licensedcode/data/rules/cc0-1.0_45.yml deleted file mode 100644 index 5f2807081d9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_46.RULE b/src/licensedcode/data/rules/cc0-1.0_46.RULE index ca75cdd11aa..1db3d2b0403 100644 --- a/src/licensedcode/data/rules/cc0-1.0_46.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_46.RULE @@ -1,5 +1,13 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + Copyright and License To the extent possible under law, the people who associated CC0 with the Curriculum have waived all copyright and related or neighboring rights to the Curriculum. -You should have received a copy of the CC0 legalcode along with this work. If not, see https://creativecommons.org/publicdomain/zero/1.0/. +You should have received a copy of the CC0 legalcode along with this work. If not, see https://creativecommons.org/publicdomain/zero/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_46.yml b/src/licensedcode/data/rules/cc0-1.0_46.yml deleted file mode 100644 index 5e6a04cc222..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_47.RULE b/src/licensedcode/data/rules/cc0-1.0_47.RULE index 151c4179de4..6b5a52bc80d 100644 --- a/src/licensedcode/data/rules/cc0-1.0_47.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_47.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 +--- + Copyright and License To the extent possible under law, the people who associated CC0 with the Curriculum have waived all copyright and related or neighboring rights to the Curriculum. diff --git a/src/licensedcode/data/rules/cc0-1.0_47.yml b/src/licensedcode/data/rules/cc0-1.0_47.yml deleted file mode 100644 index 16ad84dabc2..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_48.RULE b/src/licensedcode/data/rules/cc0-1.0_48.RULE index 6abe9e4cdc9..567bde7c7ed 100644 --- a/src/licensedcode/data/rules/cc0-1.0_48.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_48.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/cc0 +--- + https://choosealicense.com/licenses/cc0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_48.yml b/src/licensedcode/data/rules/cc0-1.0_48.yml deleted file mode 100644 index 71a19b58a53..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/cc0 diff --git a/src/licensedcode/data/rules/cc0-1.0_49.RULE b/src/licensedcode/data/rules/cc0-1.0_49.RULE index 8d2edca5c5b..53219e7b024 100644 --- a/src/licensedcode/data/rules/cc0-1.0_49.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_49.RULE @@ -1,2 +1,9 @@ -http://choosealicense.com/licenses/cc0 +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/cc0 +--- +http://choosealicense.com/licenses/cc0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_49.yml b/src/licensedcode/data/rules/cc0-1.0_49.yml deleted file mode 100644 index 94b703abc33..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/cc0 diff --git a/src/licensedcode/data/rules/cc0-1.0_5.RULE b/src/licensedcode/data/rules/cc0-1.0_5.RULE index 670154e3538..8c31ed1dfaf 100644 --- a/src/licensedcode/data/rules/cc0-1.0_5.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_text: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + CC0 1.0 Universal Statement of Purpose @@ -113,4 +120,4 @@ Affirmer's express Statement of Purpose. CC0 or use of the Work. For more information, please see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_5.yml b/src/licensedcode/data/rules/cc0-1.0_5.yml deleted file mode 100644 index 7ab3298f336..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_text: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_50.RULE b/src/licensedcode/data/rules/cc0-1.0_50.RULE index b4a30a6733e..5bce1310b45 100644 --- a/src/licensedcode/data/rules/cc0-1.0_50.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_50.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/cc0-1.0 +--- + https://choosealicense.com/licenses/cc0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_50.yml b/src/licensedcode/data/rules/cc0-1.0_50.yml deleted file mode 100644 index 9aeb9f67330..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/cc0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_51.RULE b/src/licensedcode/data/rules/cc0-1.0_51.RULE index ec2a621e4a6..93acc1a0852 100644 --- a/src/licensedcode/data/rules/cc0-1.0_51.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/cc0-1.0 +--- + http://choosealicense.com/licenses/cc0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_51.yml b/src/licensedcode/data/rules/cc0-1.0_51.yml deleted file mode 100644 index 2958a547730..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/cc0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_52.RULE b/src/licensedcode/data/rules/cc0-1.0_52.RULE index f9639e11af5..a9ca519041e 100644 --- a/src/licensedcode/data/rules/cc0-1.0_52.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_52.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + classes which are donated to public domain. For details, see CC0 1.0 Universal (1.0), Public Domain Dedication, http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_52.yml b/src/licensedcode/data/rules/cc0-1.0_52.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_53.RULE b/src/licensedcode/data/rules/cc0-1.0_53.RULE index 017e8c1dbd9..1ada3f22844 100644 --- a/src/licensedcode/data/rules/cc0-1.0_53.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_53.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + Public domain dedication The author(s) have dedicated all copyright and related and diff --git a/src/licensedcode/data/rules/cc0-1.0_53.yml b/src/licensedcode/data/rules/cc0-1.0_53.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_54.RULE b/src/licensedcode/data/rules/cc0-1.0_54.RULE index 8279deac8bf..b6a96bafad2 100644 --- a/src/licensedcode/data/rules/cc0-1.0_54.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_54.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + // The author(s) have dedicated all copyright and related and // neighboring rights to this software to the public domain // worldwide. Distributed without any warranty. diff --git a/src/licensedcode/data/rules/cc0-1.0_54.yml b/src/licensedcode/data/rules/cc0-1.0_54.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_55.RULE b/src/licensedcode/data/rules/cc0-1.0_55.RULE index 1819c642da1..e9329f15a94 100644 --- a/src/licensedcode/data/rules/cc0-1.0_55.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 95 +--- + under CC0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_55.yml b/src/licensedcode/data/rules/cc0-1.0_55.yml deleted file mode 100644 index 31958e38efa..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/cc0-1.0_56.RULE b/src/licensedcode/data/rules/cc0-1.0_56.RULE index b4146825d52..7418279a47a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_56.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_56.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + License Public Domain: `CC0 1.0 Universal `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_56.yml b/src/licensedcode/data/rules/cc0-1.0_56.yml deleted file mode 100644 index 3d1642437ea..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_57.RULE b/src/licensedcode/data/rules/cc0-1.0_57.RULE index 90fe59febab..80bed5a6d5d 100644 --- a/src/licensedcode/data/rules/cc0-1.0_57.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_57.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_tag: yes +relevance: 100 +--- + License Public Domain: CC0 1.0 Universal. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_57.yml b/src/licensedcode/data/rules/cc0-1.0_57.yml deleted file mode 100644 index 5613dd42089..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_58.RULE b/src/licensedcode/data/rules/cc0-1.0_58.RULE index 24149e3ce62..59f286b5572 100644 --- a/src/licensedcode/data/rules/cc0-1.0_58.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_58.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + License: CC0 You may use this work under the terms of a Creative Commons CC0 1.0 License/Waiver. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_58.yml b/src/licensedcode/data/rules/cc0-1.0_58.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_59.RULE b/src/licensedcode/data/rules/cc0-1.0_59.RULE index 10247ddcfc4..1ada9a193fc 100644 --- a/src/licensedcode/data/rules/cc0-1.0_59.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_59.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + You may use this work under the terms of a Creative Commons CC0 1.0 License/Waiver. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_59.yml b/src/licensedcode/data/rules/cc0-1.0_59.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_6.RULE b/src/licensedcode/data/rules/cc0-1.0_6.RULE index 89f7bfb92fd..355246cc6b6 100644 --- a/src/licensedcode/data/rules/cc0-1.0_6.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_6.RULE @@ -1,4 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/legalcode +--- + This code is meant to be linked in to various programs that run on Linux. As such, it is available with as few restrictions as possible. This file is licensed under the Creative Commons Zero License, version 1.0, -available at http://creativecommons.org/publicdomain/zero/1.0/legalcode +available at http://creativecommons.org/publicdomain/zero/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_6.yml b/src/licensedcode/data/rules/cc0-1.0_6.yml deleted file mode 100644 index 90e89603377..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc0-1.0_60.RULE b/src/licensedcode/data/rules/cc0-1.0_60.RULE index 2ae56294c38..a59023197da 100644 --- a/src/licensedcode/data/rules/cc0-1.0_60.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_tag: yes +relevance: 100 +--- + License: CC0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_60.yml b/src/licensedcode/data/rules/cc0-1.0_60.yml deleted file mode 100644 index 5613dd42089..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_61.RULE b/src/licensedcode/data/rules/cc0-1.0_61.RULE index 920d50de91b..05837fb4509 100644 --- a/src/licensedcode/data/rules/cc0-1.0_61.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_61.RULE @@ -1 +1,7 @@ -CC0 1.0 Universal') +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + +CC0 1.0 Universal') \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_61.yml b/src/licensedcode/data/rules/cc0-1.0_61.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_62.RULE b/src/licensedcode/data/rules/cc0-1.0_62.RULE index 68700f50979..d31b5bab825 100644 --- a/src/licensedcode/data/rules/cc0-1.0_62.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_62.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/legalcode +--- + License: CC0 1.0 Universal https://creativecommons.org/publicdomain/zero/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_62.yml b/src/licensedcode/data/rules/cc0-1.0_62.yml deleted file mode 100644 index 065a5ce646d..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc0-1.0_63.RULE b/src/licensedcode/data/rules/cc0-1.0_63.RULE index 7fccab899b9..630fb60c203 100644 --- a/src/licensedcode/data/rules/cc0-1.0_63.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_63.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_tag: yes +relevance: 100 +--- + License: CC0 1.0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_63.yml b/src/licensedcode/data/rules/cc0-1.0_63.yml deleted file mode 100644 index 5613dd42089..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_64.RULE b/src/licensedcode/data/rules/cc0-1.0_64.RULE index 2a41596db9e..2a5f2e39faa 100644 --- a/src/licensedcode/data/rules/cc0-1.0_64.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_64.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/legalcode +--- + https://creativecommons.org/publicdomain/zero/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_64.yml b/src/licensedcode/data/rules/cc0-1.0_64.yml deleted file mode 100644 index af7f4ccbd4d..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc0-1.0_65.RULE b/src/licensedcode/data/rules/cc0-1.0_65.RULE index 8181b474a41..7df9827ffde 100644 --- a/src/licensedcode/data/rules/cc0-1.0_65.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_65.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + The contents of this file are hereby released in the public domain (CC0) Full text of the CC0 license: https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_65.yml b/src/licensedcode/data/rules/cc0-1.0_65.yml deleted file mode 100644 index 5f2807081d9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_66.RULE b/src/licensedcode/data/rules/cc0-1.0_66.RULE index b4ba3933fca..a355f5220d6 100644 --- a/src/licensedcode/data/rules/cc0-1.0_66.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_66.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + The contents of this file are hereby released in the public domain (CC0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_66.yml b/src/licensedcode/data/rules/cc0-1.0_66.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_67.RULE b/src/licensedcode/data/rules/cc0-1.0_67.RULE index 78484413146..b70f3e0d2b1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_67.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_67.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_tag: yes +relevance: 100 +--- + License: CC0 1.0 Universal (CC0 1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_67.yml b/src/licensedcode/data/rules/cc0-1.0_67.yml deleted file mode 100644 index 5613dd42089..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_68.RULE b/src/licensedcode/data/rules/cc0-1.0_68.RULE index b43a3565f03..4f35c6342bb 100644 --- a/src/licensedcode/data/rules/cc0-1.0_68.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_68.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/legalcode +--- + This file made available under CC0 1.0 Universal (https://creativecommons.org/publicdomain/zero/1.0/legalcode) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_68.yml b/src/licensedcode/data/rules/cc0-1.0_68.yml deleted file mode 100644 index 23e5980e577..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc0-1.0_69.RULE b/src/licensedcode/data/rules/cc0-1.0_69.RULE index dd75b087205..398939a887a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_69.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_69.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + License This work was prepared by an U.S. Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the CC0 1.0 Universal license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_69.yml b/src/licensedcode/data/rules/cc0-1.0_69.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_7.RULE b/src/licensedcode/data/rules/cc0-1.0_7.RULE index bf0044935fa..b8ef96c347a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_7.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +--- + The person who has associated a work with this document (the "Work") affirms that he or she (the "Affirmer") is the/an author or owner of the Work. The Work may be any work of authorship, including a @@ -25,4 +30,4 @@ ineffective in any jurisdiction, the Affirmer hereby grants a free, full, permanent, irrevocable, nonexclusive and worldwide license for all her or his copyright and related or neighboring legal rights in - the Work. + the Work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_7.yml b/src/licensedcode/data/rules/cc0-1.0_7.yml deleted file mode 100644 index 6b902553cf0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_70.RULE b/src/licensedcode/data/rules/cc0-1.0_70.RULE index 830cc301925..7eda3005501 100644 --- a/src/licensedcode/data/rules/cc0-1.0_70.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_70.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + This work was prepared by an U.S. Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the CC0 1.0 Universal license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_70.yml b/src/licensedcode/data/rules/cc0-1.0_70.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_71.RULE b/src/licensedcode/data/rules/cc0-1.0_71.RULE index 6a55169b077..be6de0a05d3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_71.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_71.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 + - https://creativecommons.org/publicdomain/zero/1.0/legalcode +--- + This Work was prepared by a United States Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/) [Universal license](https://creativecommons.org/publicdomain/zero/1.0/legalcode). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_71.yml b/src/licensedcode/data/rules/cc0-1.0_71.yml deleted file mode 100644 index fb1402bf45a..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_71.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 - - https://creativecommons.org/publicdomain/zero/1.0/legalcode diff --git a/src/licensedcode/data/rules/cc0-1.0_72.RULE b/src/licensedcode/data/rules/cc0-1.0_72.RULE index 94121eecfa3..3bc0521ac67 100644 --- a/src/licensedcode/data/rules/cc0-1.0_72.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_72.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + // Any copyright is dedicated to the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_72.yml b/src/licensedcode/data/rules/cc0-1.0_72.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_73.RULE b/src/licensedcode/data/rules/cc0-1.0_73.RULE index 5c147d1e54e..55515818b78 100644 --- a/src/licensedcode/data/rules/cc0-1.0_73.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_73.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + Implementation by the designers, hereby denoted as "the implementer". To the extent possible under law, the implementer has waived all copyright and related or neighboring rights to the source code in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_73.yml b/src/licensedcode/data/rules/cc0-1.0_73.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_74.RULE b/src/licensedcode/data/rules/cc0-1.0_74.RULE index 52675dd0222..a1e9fe1a4e2 100644 --- a/src/licensedcode/data/rules/cc0-1.0_74.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_74.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + Implementation by the designers, hereby denoted as "the implementer". To the extent possible under law, the implementer has waived all copyright and related or neighboring rights to the source code in this file. diff --git a/src/licensedcode/data/rules/cc0-1.0_74.yml b/src/licensedcode/data/rules/cc0-1.0_74.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_75.RULE b/src/licensedcode/data/rules/cc0-1.0_75.RULE index e8571033f61..f3af20fac9a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_75.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_75.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + Implementation by the designers, hereby denoted as "the implementer". To the extent possible under law, the implementer has waived all copyright and related or neighboring rights to the source code in this file. diff --git a/src/licensedcode/data/rules/cc0-1.0_75.yml b/src/licensedcode/data/rules/cc0-1.0_75.yml deleted file mode 100644 index 5f2807081d9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_76.RULE b/src/licensedcode/data/rules/cc0-1.0_76.RULE index c83cf50f224..8a64952152e 100644 --- a/src/licensedcode/data/rules/cc0-1.0_76.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_76.RULE @@ -1 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - cc0 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + [cc0]: https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_76.yml b/src/licensedcode/data/rules/cc0-1.0_76.yml deleted file mode 100644 index 0cf2bae409e..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_76.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - cc0 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_77.RULE b/src/licensedcode/data/rules/cc0-1.0_77.RULE index 8a5ce25b85c..7d7e2efe7fd 100644 --- a/src/licensedcode/data/rules/cc0-1.0_77.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_77.RULE @@ -1,3 +1,14 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - cc0 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + ## Code templates and generated code The included source code for diff --git a/src/licensedcode/data/rules/cc0-1.0_77.yml b/src/licensedcode/data/rules/cc0-1.0_77.yml deleted file mode 100644 index 5b840d20fae..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_77.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - cc0 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_78.RULE b/src/licensedcode/data/rules/cc0-1.0_78.RULE index 81657ac6514..c2aeb8f959a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_78.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_78.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication. The person who associated a work with this deed has dedicated diff --git a/src/licensedcode/data/rules/cc0-1.0_78.yml b/src/licensedcode/data/rules/cc0-1.0_78.yml deleted file mode 100644 index ecf1f3306ac..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_78.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/cc0-1.0_79.RULE b/src/licensedcode/data/rules/cc0-1.0_79.RULE index 1cce4461994..09834661e0a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_79.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_79.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + * This file is made available under the Creative Commons CC0 1.0 * Universal Public Domain Dedication. * diff --git a/src/licensedcode/data/rules/cc0-1.0_79.yml b/src/licensedcode/data/rules/cc0-1.0_79.yml deleted file mode 100644 index ecf1f3306ac..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_79.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/cc0-1.0_8.RULE b/src/licensedcode/data/rules/cc0-1.0_8.RULE index 5624cbe2a09..3b3a2dcb784 100644 --- a/src/licensedcode/data/rules/cc0-1.0_8.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode +--- + http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_8.yml b/src/licensedcode/data/rules/cc0-1.0_8.yml deleted file mode 100644 index eec45ab1e81..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode diff --git a/src/licensedcode/data/rules/cc0-1.0_80.RULE b/src/licensedcode/data/rules/cc0-1.0_80.RULE index c71bed921fd..5a3fb652bea 100644 --- a/src/licensedcode/data/rules/cc0-1.0_80.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_80.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 +--- + [![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_80.yml b/src/licensedcode/data/rules/cc0-1.0_80.yml deleted file mode 100644 index 16ad84dabc2..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_81.RULE b/src/licensedcode/data/rules/cc0-1.0_81.RULE index 619443e6c37..3e908457060 100644 --- a/src/licensedcode/data/rules/cc0-1.0_81.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_81.RULE @@ -1,2 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg + - https://creativecommons.org/publicdomain/zero/1.0 +--- + CC0 (http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) To the extent possible under law, has waived all copyright and related or neighboring rights to this work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_81.yml b/src/licensedcode/data/rules/cc0-1.0_81.yml deleted file mode 100644 index d5e23af83f6..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_81.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_82.RULE b/src/licensedcode/data/rules/cc0-1.0_82.RULE index 8d60fb4c529..e8d8a5f1e58 100644 --- a/src/licensedcode/data/rules/cc0-1.0_82.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_82.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + Copyright and related rights for sample code are waived via CC0. Sample code is defined as all source code contained within the demos directory. CC0: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_82.yml b/src/licensedcode/data/rules/cc0-1.0_82.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_83.RULE b/src/licensedcode/data/rules/cc0-1.0_83.RULE index 3ce7a93a28d..3ffb546a505 100644 --- a/src/licensedcode/data/rules/cc0-1.0_83.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_83.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + Copyright and related rights for sample code are waived via CC0. Sample code is defined as all source code contained within the demos directory. CC0: https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_83.yml b/src/licensedcode/data/rules/cc0-1.0_83.yml deleted file mode 100644 index 5f2807081d9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_84.RULE b/src/licensedcode/data/rules/cc0-1.0_84.RULE index 599198d8f4d..146c4ba7f12 100644 --- a/src/licensedcode/data/rules/cc0-1.0_84.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_84.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/about/cc0 +--- + `CC0-1.0` - [Public Domain](https://creativecommons.org/about/cc0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_84.yml b/src/licensedcode/data/rules/cc0-1.0_84.yml deleted file mode 100644 index 70470e3fd32..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_84.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/about/cc0 diff --git a/src/licensedcode/data/rules/cc0-1.0_85.RULE b/src/licensedcode/data/rules/cc0-1.0_85.RULE index 462633d3f34..1151981e0d0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_85.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_85.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + [![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/) Statement of Purpose diff --git a/src/licensedcode/data/rules/cc0-1.0_85.yml b/src/licensedcode/data/rules/cc0-1.0_85.yml deleted file mode 100644 index ac98c40f6de..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_86.RULE b/src/licensedcode/data/rules/cc0-1.0_86.RULE index f3b504b8037..894ee1d1f8b 100644 --- a/src/licensedcode/data/rules/cc0-1.0_86.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_86.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the CC0 Public Domain Dedication license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_86.yml b/src/licensedcode/data/rules/cc0-1.0_86.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_87.RULE b/src/licensedcode/data/rules/cc0-1.0_87.RULE index d2ec852a3d1..cb302761ebe 100644 --- a/src/licensedcode/data/rules/cc0-1.0_87.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_87.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the CC0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_87.yml b/src/licensedcode/data/rules/cc0-1.0_87.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_88.RULE b/src/licensedcode/data/rules/cc0-1.0_88.RULE index a4ccad4f1ae..ed1ec99907d 100644 --- a/src/licensedcode/data/rules/cc0-1.0_88.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_88.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the CC0 Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_88.yml b/src/licensedcode/data/rules/cc0-1.0_88.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_89.RULE b/src/licensedcode/data/rules/cc0-1.0_89.RULE index 4b426b5feda..19272373a2a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_89.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_89.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + This code is placed in the public domain under a CC0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_89.yml b/src/licensedcode/data/rules/cc0-1.0_89.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_9.RULE b/src/licensedcode/data/rules/cc0-1.0_9.RULE index 9aef1cff188..db12c127b79 100644 --- a/src/licensedcode/data/rules/cc0-1.0_9.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 + - https://github.com/sorrycc +--- + # License diff --git a/src/licensedcode/data/rules/cc0-1.0_9.yml b/src/licensedcode/data/rules/cc0-1.0_9.yml deleted file mode 100644 index 168e94d7616..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 - - https://github.com/sorrycc diff --git a/src/licensedcode/data/rules/cc0-1.0_90.RULE b/src/licensedcode/data/rules/cc0-1.0_90.RULE index 6b25e4e526d..98a5424ed4e 100644 --- a/src/licensedcode/data/rules/cc0-1.0_90.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_90.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + This is all licensed under the terms of the `Creative Commons Zero`_ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_90.yml b/src/licensedcode/data/rules/cc0-1.0_90.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_91.RULE b/src/licensedcode/data/rules/cc0-1.0_91.RULE index 8fe3946e331..b9d48c21651 100644 --- a/src/licensedcode/data/rules/cc0-1.0_91.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_91.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + Creative Commons Zero`: https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_91.yml b/src/licensedcode/data/rules/cc0-1.0_91.yml deleted file mode 100644 index 4f29ecf5780..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_92.RULE b/src/licensedcode/data/rules/cc0-1.0_92.RULE index c911b02cecb..edc9d0edbe5 100644 --- a/src/licensedcode/data/rules/cc0-1.0_92.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_92.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons Zero \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_92.yml b/src/licensedcode/data/rules/cc0-1.0_92.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_93.RULE b/src/licensedcode/data/rules/cc0-1.0_93.RULE index 9cbb8654a12..c22da6555c0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_93.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_93.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + https://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_93.yml b/src/licensedcode/data/rules/cc0-1.0_93.yml deleted file mode 100644 index 4f29ecf5780..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_94.RULE b/src/licensedcode/data/rules/cc0-1.0_94.RULE index 8f8b3e8244c..160111caf36 100644 --- a/src/licensedcode/data/rules/cc0-1.0_94.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_94.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_94.yml b/src/licensedcode/data/rules/cc0-1.0_94.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_95.RULE b/src/licensedcode/data/rules/cc0-1.0_95.RULE index 279d2b31ae1..d520c5d5ded 100644 --- a/src/licensedcode/data/rules/cc0-1.0_95.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_95.RULE @@ -1,3 +1,14 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_authors: + - Doug Lea and Josh Bloch +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + Written by Doug Lea and Josh Bloch with assistance from members of JCP JSR-166 Expert Group and released to the public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_95.yml b/src/licensedcode/data/rules/cc0-1.0_95.yml deleted file mode 100644 index b361a5073ec..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_95.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_authors: - - Doug Lea and Josh Bloch -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_96.RULE b/src/licensedcode/data/rules/cc0-1.0_96.RULE index 599a5d7183a..45f023468a1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_96.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_96.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + This code is released under CC0 Do whatever you want with it \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_96.yml b/src/licensedcode/data/rules/cc0-1.0_96.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_97.RULE b/src/licensedcode/data/rules/cc0-1.0_97.RULE index 9fac370b36c..628e7f02a30 100644 --- a/src/licensedcode/data/rules/cc0-1.0_97.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_97.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_97.yml b/src/licensedcode/data/rules/cc0-1.0_97.yml deleted file mode 100644 index d763d670a35..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_98.RULE b/src/licensedcode/data/rules/cc0-1.0_98.RULE index c06467b4839..fa4077f932f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_98.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_98.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +--- + the Creative Commons CC0 1.0 Universal Public Domain Dedication. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_98.yml b/src/licensedcode/data/rules/cc0-1.0_98.yml deleted file mode 100644 index 49414157743..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_99.RULE b/src/licensedcode/data/rules/cc0-1.0_99.RULE index 7ed3db2fd0d..4d36ef29591 100644 --- a/src/licensedcode/data/rules/cc0-1.0_99.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_99.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. diff --git a/src/licensedcode/data/rules/cc0-1.0_99.yml b/src/licensedcode/data/rules/cc0-1.0_99.yml deleted file mode 100644 index 79325949fc0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_99.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/CC0-1.0 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_and_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/cc0-1.0_and_lgpl-2.1_1.RULE index 20614b883bf..5202befdb20 100644 --- a/src/licensedcode/data/rules/cc0-1.0_and_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_and_lgpl-2.1_1.RULE @@ -1 +1,8 @@ +--- +license_expression: cc0-1.0 AND lgpl-2.1 +is_license_tag: yes +relevance: 100 +notes: Seen in libwebsocket +--- + "license CC0 + LGPL2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_and_lgpl-2.1_1.yml b/src/licensedcode/data/rules/cc0-1.0_and_lgpl-2.1_1.yml deleted file mode 100644 index 66a5deb5a07..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_and_lgpl-2.1_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 AND lgpl-2.1 -is_license_tag: yes -relevance: 100 -notes: Seen in libwebsocket diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_1.RULE index 5004def9cd2..9019d2ebd11 100644 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_1.RULE @@ -1 +1,12 @@ +--- +license_expression: cc0-1.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, + make it available for download or distribute this icon in any size, type, form on any other + icon site."" +ignorable_urls: + - http://www.iconsdb.com/black-icons/ +--- + The image is licensed under Creative Commons CC0 (http://www.iconsdb.com/black-icons/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_1.yml deleted file mode 100644 index a5360363dea..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cc0-1.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, - make it available for download or distribute this icon in any size, type, form on any other - icon site."" -ignorable_urls: - - http://www.iconsdb.com/black-icons/ diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_2.RULE index 15069f48025..047a025c62a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_2.RULE @@ -1 +1,12 @@ +--- +license_expression: cc0-1.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, + make it available for download or distribute this icon in any size, type, form on any other + icon site."" +ignorable_urls: + - http://www.iconsdb.com/black-icons/ +--- + http://www.iconsdb.com/black-icons/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_2.yml deleted file mode 100644 index a5360363dea..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cc0-1.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, - make it available for download or distribute this icon in any size, type, form on any other - icon site."" -ignorable_urls: - - http://www.iconsdb.com/black-icons/ diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_3.RULE index 0c503cc27d6..74ed4a60537 100644 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_3.RULE @@ -1 +1,12 @@ +--- +license_expression: cc0-1.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, + make it available for download or distribute this icon in any size, type, form on any other + icon site."" +ignorable_urls: + - http://www.iconsdb.com/ +--- + http://www.iconsdb.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_3.yml b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_3.yml deleted file mode 100644 index 4531b53c626..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cc0-1.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, - make it available for download or distribute this icon in any size, type, form on any other - icon site."" -ignorable_urls: - - http://www.iconsdb.com/ diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_4.RULE b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_4.RULE index 94621e08126..771dcf46afa 100644 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cc0-1.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, + make it available for download or distribute this icon in any size, type, form on any other + icon site."" +--- + icons can be used freely in both personal and commercial projects with no attribution required, but always appreciated \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_4.yml b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_4.yml deleted file mode 100644 index 8d7a8d8e7d8..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, - make it available for download or distribute this icon in any size, type, form on any other - icon site."" diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_5.RULE b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_5.RULE index 48cc134185c..09e0593f5fa 100644 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_5.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_5.RULE @@ -1,2 +1,11 @@ +--- +license_expression: cc0-1.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, + make it available for download or distribute this icon in any size, type, form on any other + icon site."" +--- + This icon is provided as CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. info You may not sell, make it available for download or distribute this icon in any size, type, form on any other icon site. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_5.yml b/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_5.yml deleted file mode 100644 index 8d7a8d8e7d8..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_and_proprietary-license_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: The site license at http://www.iconsdb.com/ has these restrictions "You may not sell, - make it available for download or distribute this icon in any size, type, form on any other - icon site."" diff --git a/src/licensedcode/data/rules/cc0-1.0_data.RULE b/src/licensedcode/data/rules/cc0-1.0_data.RULE index c13be3718e4..6441aad3986 100644 --- a/src/licensedcode/data/rules/cc0-1.0_data.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_data.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + The ScanCode includes datasets (e.g. for license detection) that are dedicated to the Public Domain using the Creative Commons CC0 1.0 Universal (CC0 1.0) -Public Domain Dedication: http://creativecommons.org/publicdomain/zero/1.0/ +Public Domain Dedication: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_data.yml b/src/licensedcode/data/rules/cc0-1.0_data.yml deleted file mode 100644 index 9e85b856c19..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_data.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_data2.RULE b/src/licensedcode/data/rules/cc0-1.0_data2.RULE index 8b84d632249..2045ff52b38 100644 --- a/src/licensedcode/data/rules/cc0-1.0_data2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_data2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + dedicated to the Public Domain using the Creative Commons CC0 1.0 Universal (CC0 1.0) -Public Domain Dedication: http://creativecommons.org/publicdomain/zero/1.0/ +Public Domain Dedication: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_data2.yml b/src/licensedcode/data/rules/cc0-1.0_data2.yml deleted file mode 100644 index 9e85b856c19..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_data2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_license_button.RULE b/src/licensedcode/data/rules/cc0-1.0_license_button.RULE index 39d1c7c4ad8..3389732db64 100644 --- a/src/licensedcode/data/rules/cc0-1.0_license_button.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_license_button.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/zero/ +--- + https://licensebuttons.net/l/zero/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_license_button.yml b/src/licensedcode/data/rules/cc0-1.0_license_button.yml deleted file mode 100644 index 270ce0d01cd..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_license_button.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/zero/ diff --git a/src/licensedcode/data/rules/cc0-1.0_license_button_1.RULE b/src/licensedcode/data/rules/cc0-1.0_license_button_1.RULE index 5d05452c123..844d58c5ac1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_license_button_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_license_button_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/zero/1.0/ +--- + https://licensebuttons.net/l/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_license_button_1.yml b/src/licensedcode/data/rules/cc0-1.0_license_button_1.yml deleted file mode 100644 index db72fd0524f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_license_button_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_link.RULE b/src/licensedcode/data/rules/cc0-1.0_link.RULE index 0b39d3a4b4c..87d10df87ff 100644 --- a/src/licensedcode/data/rules/cc0-1.0_link.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_link.RULE @@ -1,4 +1,10 @@ -### License +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- -[![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/) +### License +[![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_link.yml b/src/licensedcode/data/rules/cc0-1.0_link.yml deleted file mode 100644 index 8e4645a0f5f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_link.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_link3.RULE b/src/licensedcode/data/rules/cc0-1.0_link3.RULE index af79163e01e..c06bde17cdf 100644 --- a/src/licensedcode/data/rules/cc0-1.0_link3.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_link3.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + [![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_link3.yml b/src/licensedcode/data/rules/cc0-1.0_link3.yml deleted file mode 100644 index 5e6a04cc222..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_link3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_mirror.RULE b/src/licensedcode/data/rules/cc0-1.0_mirror.RULE index 1f04667852c..448c04956fc 100644 --- a/src/licensedcode/data/rules/cc0-1.0_mirror.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_mirror.RULE @@ -1,5 +1,13 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg + - https://creativecommons.org/publicdomain/zero/1.0 +--- + ## License [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) -To the extent possible under law, has waived all copyright and related or neighboring rights to this work. +To the extent possible under law, has waived all copyright and related or neighboring rights to this work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_mirror.yml b/src/licensedcode/data/rules/cc0-1.0_mirror.yml deleted file mode 100644 index 403f33d576e..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_mirror.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_mirror3.RULE b/src/licensedcode/data/rules/cc0-1.0_mirror3.RULE index 21089b8f65f..924ed070921 100644 --- a/src/licensedcode/data/rules/cc0-1.0_mirror3.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_mirror3.RULE @@ -1,4 +1,11 @@ -## License +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg + - https://creativecommons.org/publicdomain/zero/1.0 +--- -[![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) +## License +[![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_mirror3.yml b/src/licensedcode/data/rules/cc0-1.0_mirror3.yml deleted file mode 100644 index 403f33d576e..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_mirror3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_mirror4.RULE b/src/licensedcode/data/rules/cc0-1.0_mirror4.RULE index b3d7ca656f3..4482f60b02b 100644 --- a/src/licensedcode/data/rules/cc0-1.0_mirror4.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_mirror4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 +--- + # License [![CC0](http://i.creativecommons.org/p/zero/1.0/88x31.png)](http://creativecommons.org/publicdomain/zero/1.0/) diff --git a/src/licensedcode/data/rules/cc0-1.0_mirror4.yml b/src/licensedcode/data/rules/cc0-1.0_mirror4.yml deleted file mode 100644 index 080718a3b42..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_mirror4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_1.RULE index cc046133e2d..7130bc873bd 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: CC0 or Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_1.yml deleted file mode 100644 index 996ecb1e489..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_2.RULE index 7572f52a6b4..470d14da833 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 OR apache-2.0 +is_license_reference: yes +relevance: 100 +--- + CC0 or Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_2.yml b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_2.yml deleted file mode 100644 index e5a64125b66..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 OR apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_3.RULE index 3e87b18bff6..c602593b648 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 OR apache-2.0 +is_license_notice: yes +--- + under a dual license. You may use this work under the terms of a Creative Commons CC0 1.0 License/Waiver or the Apache Public License 2.0, at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_3.yml b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_3.yml deleted file mode 100644 index 34aed4023fe..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 OR apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_4.RULE index 8341c4a1eb8..8cc49b7b2e0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 OR apache-2.0 +is_license_notice: yes +--- + You may use this work under the terms of a Creative Commons CC0 1.0 License/Waiver or the Apache Public License 2.0, at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_4.yml b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_4.yml deleted file mode 100644 index 34aed4023fe..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 OR apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_5.RULE index 8628c621540..bf88c6c2ba8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 OR apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 + - https://www.apache.org/licenses/LICENSE-2.0 +--- + You may use this work under the terms of a Creative Commons CC0 1.0 License/Waiver or the Apache Public License 2.0, at your option. The terms of these licenses can be found at: diff --git a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_5.yml b/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_5.yml deleted file mode 100644 index d939d3326f9..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_apache-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 OR apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/cc0-1.0_or_bsd-simplified_1.RULE index fc6a7e0537f..058f261d850 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_bsd-simplified_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + released to the public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/cc0-1.0_or_bsd-simplified_1.yml deleted file mode 100644 index b3794330633..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_bsd-simplified_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_or_mit_1.RULE b/src/licensedcode/data/rules/cc0-1.0_or_mit_1.RULE index 84ecc4b396b..fad5bc28fc1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_mit_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 OR mit +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + This code is dual-licensed under CC0 and the MIT license. You can choose which one you want to use. ## CC0 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_mit_1.yml b/src/licensedcode/data/rules/cc0-1.0_or_mit_1.yml deleted file mode 100644 index 567f9d099ad..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 OR mit -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_1.RULE index f9082561b78..3ccb155437c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 +is_license_reference: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.openssl.org/source/license.html +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. @@ -6,4 +15,4 @@ All code is triple-licensed under the CC0 (http://creativecommons.org/publicdomain/zero/1.0), the OpenSSL Licence (https://www.openssl.org/source/license.html), or the Apache Public License 2.0 (http://www.apache.org/licenses/LICENSE-2.0), -at your choosing. +at your choosing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_1.yml b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_1.yml deleted file mode 100644 index 3b738585fb8..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 -is_license_reference: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_2.RULE index 1a0985a5ec1..8e824d39058 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.openssl.org/source/license.html +--- + You may use this under the terms of the CC0, the OpenSSL Licence, or the Apache Public License 2.0, at your option. The terms of these licenses can be found at: diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_2.yml b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_2.yml deleted file mode 100644 index f52d3b49396..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_3.RULE index 09030ecabd0..644785b1cf3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The following source files are triple-licensed with the ability to choose from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_3.yml b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_3.yml deleted file mode 100644 index 0d35850dac2..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_4.RULE index 86b49c79117..421a05e9b1e 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + choose from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_4.yml b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_4.yml deleted file mode 100644 index 0d35850dac2..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_5.RULE index c396db2e629..9b9b8d7652f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 +is_license_reference: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.openssl.org/source/license.html +--- + To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. @@ -6,4 +15,4 @@ All code is triple-licensed under the CC0 (http://creativecommons.org/publicdomain/zero/1.0), the OpenSSL Licence (https://www.openssl.org/source/license.html), or the Apache Public License 2.0 (https://www.apache.org/licenses/LICENSE-2.0), -at your choosing. +at your choosing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_5.yml b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_5.yml deleted file mode 100644 index 86efc4c9a5f..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 -is_license_reference: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_6.RULE index 340cca012a3..d4709a2ec06 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.openssl.org/source/license.html +--- + You may use this under the terms of the CC0, the OpenSSL Licence, or the Apache Public License 2.0, at your option. The terms of these licenses can be found at: diff --git a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_6.yml b/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_6.yml deleted file mode 100644 index 1acd48f3a52..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_openssl-ssleay_or_apache-2.0_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cc0-1.0 OR openssl-ssleay OR apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_1.RULE b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_1.RULE index 9833974d4d5..31dcde7440f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc0-1.0 OR public-domain +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + The example files in this directory are released under a [Creative Commons Zero license] (https://creativecommons.org/publicdomain/zero/1.0/) (or Public Domain, whichever is applicable in your jurisdiction). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_1.yml b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_1.yml deleted file mode 100644 index 50d96068943..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 OR public-domain -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_2.RULE b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_2.RULE index 7251e54b7b4..d8cfce2e120 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc0-1.0 OR public-domain +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + released under a [Creative Commons Zero license] (https://creativecommons.org/publicdomain/zero/1.0/) (or Public Domain, whichever is applicable in your jurisdiction). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_2.yml b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_2.yml deleted file mode 100644 index 50d96068943..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 OR public-domain -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_3.RULE b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_3.RULE index 5fdfecd6d60..0c2a12f64e6 100644 --- a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_3.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_3.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc0-1.0 OR public-domain +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + released under a [Creative Commons Zero license] (https://creativecommons.org/publicdomain/zero/1.0/) (or Public Domain) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_3.yml b/src/licensedcode/data/rules/cc0-1.0_or_public-domain_3.yml deleted file mode 100644 index 50d96068943..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_or_public-domain_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 OR public-domain -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_prefix.RULE b/src/licensedcode/data/rules/cc0-1.0_prefix.RULE index ad61f7e0b2b..231763e1e32 100644 --- a/src/licensedcode/data/rules/cc0-1.0_prefix.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_prefix.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_text: yes +--- + the code is public domain, released using the CC0 1.0 Universal dedication, which is reproduced below: @@ -118,4 +123,4 @@ of CC0 on those rights. required for any use of the Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with - respect to this CC0 or use of the Work. + respect to this CC0 or use of the Work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_prefix.yml b/src/licensedcode/data/rules/cc0-1.0_prefix.yml deleted file mode 100644 index ef6078e519c..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_prefix.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_public-domain_142.RULE b/src/licensedcode/data/rules/cc0-1.0_public-domain_142.RULE index f1995730215..2726817f833 100644 --- a/src/licensedcode/data/rules/cc0-1.0_public-domain_142.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_public-domain_142.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + released to the public domain, * as explained at http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_public-domain_142.yml b/src/licensedcode/data/rules/cc0-1.0_public-domain_142.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_public-domain_142.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_public-domain_143.RULE b/src/licensedcode/data/rules/cc0-1.0_public-domain_143.RULE index c74956c09fa..d398b587405 100644 --- a/src/licensedcode/data/rules/cc0-1.0_public-domain_143.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_public-domain_143.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ +--- + * This file may incorporate work that is in the public domain and/or * covered under the following copyright and permission notice: * diff --git a/src/licensedcode/data/rules/cc0-1.0_public-domain_143.yml b/src/licensedcode/data/rules/cc0-1.0_public-domain_143.yml deleted file mode 100644 index db74b4ae854..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_public-domain_143.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_url_1.RULE b/src/licensedcode/data/rules/cc0-1.0_url_1.RULE index 84ff9858f97..200859125f6 100644 --- a/src/licensedcode/data/rules/cc0-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc0-1.0 +--- + https://spdx.org/licenses/cc0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_url_1.yml b/src/licensedcode/data/rules/cc0-1.0_url_1.yml deleted file mode 100644 index d7b7ee24881..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc0-1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_url_2.RULE b/src/licensedcode/data/rules/cc0-1.0_url_2.RULE index b6cd63314fd..184fd96b450 100644 --- a/src/licensedcode/data/rules/cc0-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cc0-1.0.html +--- + https://spdx.org/licenses/cc0-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_url_2.yml b/src/licensedcode/data/rules/cc0-1.0_url_2.yml deleted file mode 100644 index 982c9e4f305..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cc0-1.0.html diff --git a/src/licensedcode/data/rules/cc0-1.0_url_badge.RULE b/src/licensedcode/data/rules/cc0-1.0_url_badge.RULE index 8a9932be9a0..51c23c8f5d3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_url_badge.RULE @@ -1 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 +--- + [![License: CC0-1.0](https://licensebuttons.net/l/zero/1.0/80x15.png)](http://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_url_badge.yml b/src/licensedcode/data/rules/cc0-1.0_url_badge.yml deleted file mode 100644 index 7dc6ad30748..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_url_badge.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/cc0-1.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc0-1.0_url_badge_1.RULE index 45f4b26f1e0..2bc5b9fe699 100644 --- a/src/licensedcode/data/rules/cc0-1.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_url_badge_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0 + - https://img.shields.io/badge/License-CC0%201.0-lightgrey.svg +--- + [![License: CC0-1.0](https://img.shields.io/badge/License-CC0%201.0-lightgrey.svg)](http://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_url_badge_1.yml b/src/licensedcode/data/rules/cc0-1.0_url_badge_1.yml deleted file mode 100644 index 56b7f1b7fd5..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_url_badge_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0 - - https://img.shields.io/badge/License-CC0%201.0-lightgrey.svg diff --git a/src/licensedcode/data/rules/cc0-1.0_us_gov.RULE b/src/licensedcode/data/rules/cc0-1.0_us_gov.RULE index 9b6faf743f9..3aa0d90b33c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_us_gov.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_us_gov.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +--- + This Work was prepared by a United States Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the diff --git a/src/licensedcode/data/rules/cc0-1.0_us_gov.yml b/src/licensedcode/data/rules/cc0-1.0_us_gov.yml deleted file mode 100644 index 6b902553cf0..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_us_gov.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cc0-1.0_us_govt.RULE b/src/licensedcode/data/rules/cc0-1.0_us_govt.RULE index 175adb0071c..0b9ba17c02b 100644 --- a/src/licensedcode/data/rules/cc0-1.0_us_govt.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_us_govt.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +ignorable_urls: + - https://github.com/iadgov/Connectivity-Tester + - https://github.com/iadgov/Connectivity-Tester/archive/master.zip +--- + SPDXVersion: SPDX-2.1 DataLicense: CC0-1.0 SPDXID: SPDXRef-LICENSE diff --git a/src/licensedcode/data/rules/cc0-1.0_us_govt.yml b/src/licensedcode/data/rules/cc0-1.0_us_govt.yml deleted file mode 100644 index 0a92eb6a23d..00000000000 --- a/src/licensedcode/data/rules/cc0-1.0_us_govt.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc0-1.0 -is_license_notice: yes -ignorable_urls: - - https://github.com/iadgov/Connectivity-Tester - - https://github.com/iadgov/Connectivity-Tester/archive/master.zip diff --git a/src/licensedcode/data/rules/cddl-1.0-glassfish_1.RULE b/src/licensedcode/data/rules/cddl-1.0-glassfish_1.RULE index 9dcbf80c39e..32cf8db55c0 100644 --- a/src/licensedcode/data/rules/cddl-1.0-glassfish_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.0-glassfish_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDLv1.0.html +--- + /* * The contents of this file are subject to the terms * of the Common Development and Distribution License @@ -17,4 +24,4 @@ * fields enclosed by brackets "[]" replaced with your * own identifying information: Portions Copyright [yyyy] * [name of copyright owner] - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0-glassfish_1.yml b/src/licensedcode/data/rules/cddl-1.0-glassfish_1.yml deleted file mode 100644 index 5fa33c5dc0e..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0-glassfish_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0-glassfish_2.RULE b/src/licensedcode/data/rules/cddl-1.0-glassfish_2.RULE index 3cff9b90e1b..43892f92890 100644 --- a/src/licensedcode/data/rules/cddl-1.0-glassfish_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0-glassfish_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDLv1.0.html +--- + /* * The contents of this file are subject to the terms * of the Common Development and Distribution License @@ -18,4 +25,4 @@ * you own identifying information: * "Portions Copyrighted [year] [name of copyright owner]" * - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0-glassfish_2.yml b/src/licensedcode/data/rules/cddl-1.0-glassfish_2.yml deleted file mode 100644 index 5fa33c5dc0e..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0-glassfish_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0.RULE b/src/licensedcode/data/rules/cddl-1.0.RULE index fbe29a6e609..6819397aeb2 100644 --- a/src/licensedcode/data/rules/cddl-1.0.RULE +++ b/src/licensedcode/data/rules/cddl-1.0.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution License (CDDL) v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0.SPDX.RULE b/src/licensedcode/data/rules/cddl-1.0.SPDX.RULE index 814bd87728c..0a23150b2e8 100644 --- a/src/licensedcode/data/rules/cddl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cddl-1.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 1. Definitions. diff --git a/src/licensedcode/data/rules/cddl-1.0.SPDX.yml b/src/licensedcode/data/rules/cddl-1.0.SPDX.yml deleted file mode 100644 index a473241d289..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cddl-1.0.yml b/src/licensedcode/data/rules/cddl-1.0.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_1.RULE b/src/licensedcode/data/rules/cddl-1.0_1.RULE index 790bee25788..f0f8fcf299e 100644 --- a/src/licensedcode/data/rules/cddl-1.0_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cddl-1.0 +is_license_text: yes +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 1. Definitions. diff --git a/src/licensedcode/data/rules/cddl-1.0_1.yml b/src/licensedcode/data/rules/cddl-1.0_1.yml deleted file mode 100644 index a1e245fb9ae..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cddl-1.0_10.RULE b/src/licensedcode/data/rules/cddl-1.0_10.RULE index 7d64d0979a7..dc36509e1a0 100644 --- a/src/licensedcode/data/rules/cddl-1.0_10.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cddl1.php +--- + http://www.opensource.org/licenses/cddl1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_10.yml b/src/licensedcode/data/rules/cddl-1.0_10.yml deleted file mode 100644 index 4f0a47dca3c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cddl1.php diff --git a/src/licensedcode/data/rules/cddl-1.0_11.RULE b/src/licensedcode/data/rules/cddl-1.0_11.RULE index 7bf36ec0b97..9c662092776 100644 --- a/src/licensedcode/data/rules/cddl-1.0_11.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + CDDL HEADER START \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_11.yml b/src/licensedcode/data/rules/cddl-1.0_11.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_12.RULE b/src/licensedcode/data/rules/cddl-1.0_12.RULE index 80d382928be..c4fce2bae8e 100644 --- a/src/licensedcode/data/rules/cddl-1.0_12.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +ignorable_urls: + - http://forgerock.org/license/CDDLv1.0.html +--- + * * The contents of this file are subject to the terms * of the Common Development and Distribution License diff --git a/src/licensedcode/data/rules/cddl-1.0_12.yml b/src/licensedcode/data/rules/cddl-1.0_12.yml deleted file mode 100644 index 80206c6c30f..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -ignorable_urls: - - http://forgerock.org/license/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_13.RULE b/src/licensedcode/data/rules/cddl-1.0_13.RULE index 1d706a77648..2ae196dc00b 100644 --- a/src/licensedcode/data/rules/cddl-1.0_13.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +ignorable_urls: + - https://opensso.dev.java.net/public/CDDLv1.0.html +--- + * The contents of this file are subject to the terms * of the Common Development and Distribution License * (the License). You may not use this file except in @@ -15,4 +22,4 @@ * If applicable, add the following below the CDDL Header, * with the fields enclosed by brackets [] replaced by * your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" + * "Portions Copyrighted [year] [name of copyright owner]" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_13.yml b/src/licensedcode/data/rules/cddl-1.0_13.yml deleted file mode 100644 index 612bdf757b2..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -ignorable_urls: - - https://opensso.dev.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_14.RULE b/src/licensedcode/data/rules/cddl-1.0_14.RULE index e6bc4d23918..b3702d7d7db 100644 --- a/src/licensedcode/data/rules/cddl-1.0_14.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensolaris.org/os/licensing/cddllicense.txt +--- + http://www.opensolaris.org/os/licensing/cddllicense.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_14.yml b/src/licensedcode/data/rules/cddl-1.0_14.yml deleted file mode 100644 index c7f127d4e65..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensolaris.org/os/licensing/cddllicense.txt diff --git a/src/licensedcode/data/rules/cddl-1.0_15.RULE b/src/licensedcode/data/rules/cddl-1.0_15.RULE index edd3877d9b2..426b4aabbcf 100644 --- a/src/licensedcode/data/rules/cddl-1.0_15.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_15.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cddl-1.0 +is_license_text: yes +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 (CDDL-1.0) 1. Definitions. @@ -126,4 +131,4 @@ COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 (CDDL-1.0) 10. RESPONSIBILITY FOR CLAIMS. - As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_15.yml b/src/licensedcode/data/rules/cddl-1.0_15.yml deleted file mode 100644 index a1e245fb9ae..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cddl-1.0_16.RULE b/src/licensedcode/data/rules/cddl-1.0_16.RULE index 1cad884764d..9fad5e4d617 100644 --- a/src/licensedcode/data/rules/cddl-1.0_16.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_16.RULE @@ -1 +1,7 @@ -CDDL HEADER END +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + +CDDL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_16.yml b/src/licensedcode/data/rules/cddl-1.0_16.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_17.RULE b/src/licensedcode/data/rules/cddl-1.0_17.RULE index 012c47b07e9..bafc848aa0a 100644 --- a/src/licensedcode/data/rules/cddl-1.0_17.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_text: yes +relevance: 99 +notes: contains extra notice for jurisdiction +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 1. Definitions. @@ -90,5 +97,4 @@ COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 10. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. -NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. - +NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_17.yml b/src/licensedcode/data/rules/cddl-1.0_17.yml deleted file mode 100644 index 464496e5772..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_text: yes -relevance: 99 -notes: contains extra notice for jurisdiction diff --git a/src/licensedcode/data/rules/cddl-1.0_18.RULE b/src/licensedcode/data/rules/cddl-1.0_18.RULE index f685be4cb17..e3268aad196 100644 --- a/src/licensedcode/data/rules/cddl-1.0_18.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://repository.jboss.org/licenses/cddl.txt +--- + http://repository.jboss.org/licenses/cddl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_18.yml b/src/licensedcode/data/rules/cddl-1.0_18.yml deleted file mode 100644 index 416476de201..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://repository.jboss.org/licenses/cddl.txt diff --git a/src/licensedcode/data/rules/cddl-1.0_19.RULE b/src/licensedcode/data/rules/cddl-1.0_19.RULE index d61b1b75e6e..1443de106fd 100644 --- a/src/licensedcode/data/rules/cddl-1.0_19.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDLv1.0.html +--- + CDDL 1.0 https://glassfish.dev.java.net/public/CDDLv1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_19.yml b/src/licensedcode/data/rules/cddl-1.0_19.yml deleted file mode 100644 index d104adb7aed..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_2.RULE b/src/licensedcode/data/rules/cddl-1.0_2.RULE index 29ab7847d60..8352de565a4 100644 --- a/src/licensedcode/data/rules/cddl-1.0_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_2.yml b/src/licensedcode/data/rules/cddl-1.0_2.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_20.RULE b/src/licensedcode/data/rules/cddl-1.0_20.RULE index 090fbacd217..a5c63123ed1 100644 --- a/src/licensedcode/data/rules/cddl-1.0_20.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/cddl1.php +--- + You may obtain a copy of the "CDDL" License at http://www.opensource.org/licenses/cddl1.php diff --git a/src/licensedcode/data/rules/cddl-1.0_20.yml b/src/licensedcode/data/rules/cddl-1.0_20.yml deleted file mode 100644 index 915a06fd640..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/cddl1.php diff --git a/src/licensedcode/data/rules/cddl-1.0_21.RULE b/src/licensedcode/data/rules/cddl-1.0_21.RULE index 21cad0bfc2b..7c2704d4b07 100644 --- a/src/licensedcode/data/rules/cddl-1.0_21.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +notes: here the ccdl choice is picked +ignorable_urls: + - http://www.opensource.org/licenses/cddl1.php +--- + which is distributed under the GlassFish Dual License, which means CodeModel is subject to the terms of either the GNU General Public License Version 2 only diff --git a/src/licensedcode/data/rules/cddl-1.0_21.yml b/src/licensedcode/data/rules/cddl-1.0_21.yml deleted file mode 100644 index 45b33f6e7c5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -notes: here the ccdl choice is picked -ignorable_urls: - - http://www.opensource.org/licenses/cddl1.php diff --git a/src/licensedcode/data/rules/cddl-1.0_22.RULE b/src/licensedcode/data/rules/cddl-1.0_22.RULE index 119f01c4da9..00e17bd4412 100644 --- a/src/licensedcode/data/rules/cddl-1.0_22.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + License: CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_22.yml b/src/licensedcode/data/rules/cddl-1.0_22.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_23.RULE b/src/licensedcode/data/rules/cddl-1.0_23.RULE index 20fcd421343..861a5c52ca5 100644 --- a/src/licensedcode/data/rules/cddl-1.0_23.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + # CDDL HEADER START # # The contents of this file are subject to the terms of the diff --git a/src/licensedcode/data/rules/cddl-1.0_23.yml b/src/licensedcode/data/rules/cddl-1.0_23.yml deleted file mode 100644 index 97416aed6c1..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/cddl-1.0_24.RULE b/src/licensedcode/data/rules/cddl-1.0_24.RULE index b5777c9d9e8..1e2a9b5abd2 100644 --- a/src/licensedcode/data/rules/cddl-1.0_24.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/cddl-1.0_24.yml b/src/licensedcode/data/rules/cddl-1.0_24.yml deleted file mode 100644 index 97416aed6c1..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/cddl-1.0_25.RULE b/src/licensedcode/data/rules/cddl-1.0_25.RULE index 0b5689c838f..86b4a3c5bb5 100644 --- a/src/licensedcode/data/rules/cddl-1.0_25.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_25.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +--- + Unless otherwise noted, all files in this distribution are released under the Common Development and Distribution License (CDDL), Version 1.0 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_25.yml b/src/licensedcode/data/rules/cddl-1.0_25.yml deleted file mode 100644 index 121f0f104ca..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cddl-1.0_26.RULE b/src/licensedcode/data/rules/cddl-1.0_26.RULE index 2ce2b7f4b70..e94376308e0 100644 --- a/src/licensedcode/data/rules/cddl-1.0_26.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/CDDL-1.0 +--- + # CDDL HEADER START # # The contents of this file are subject to the terms of the @@ -15,5 +22,4 @@ # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # -# CDDL HEADER END - \ No newline at end of file +# CDDL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_26.yml b/src/licensedcode/data/rules/cddl-1.0_26.yml deleted file mode 100644 index 8369d94ce6b..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_27.RULE b/src/licensedcode/data/rules/cddl-1.0_27.RULE index 706ebfa2038..819c693b150 100644 --- a/src/licensedcode/data/rules/cddl-1.0_27.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_27.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/CDDL-1.0 +--- + {{CDDL 1}} diff --git a/src/licensedcode/data/rules/cddl-1.0_27.yml b/src/licensedcode/data/rules/cddl-1.0_27.yml deleted file mode 100644 index 7caa6d44ff0..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_28.RULE b/src/licensedcode/data/rules/cddl-1.0_28.RULE index 60a5a1fdbb5..4be513c3b81 100644 --- a/src/licensedcode/data/rules/cddl-1.0_28.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_28.RULE @@ -1,4 +1,12 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/CDDL-1.0 +--- + CDDL 1 http://opensource.org/licenses/CDDL-1.0 - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_28.yml b/src/licensedcode/data/rules/cddl-1.0_28.yml deleted file mode 100644 index 7caa6d44ff0..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_29.RULE b/src/licensedcode/data/rules/cddl-1.0_29.RULE index 6400bd495e2..a9e1a9e50a0 100644 --- a/src/licensedcode/data/rules/cddl-1.0_29.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_29.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/CDDL-1.0 +--- + CDDL 1 diff --git a/src/licensedcode/data/rules/cddl-1.0_29.yml b/src/licensedcode/data/rules/cddl-1.0_29.yml deleted file mode 100644 index 7caa6d44ff0..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_3.RULE b/src/licensedcode/data/rules/cddl-1.0_3.RULE index c0bcb847e6f..f26ea521854 100644 --- a/src/licensedcode/data/rules/cddl-1.0_3.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.sun.com/cddl/ +--- + http://www.sun.com/cddl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_3.yml b/src/licensedcode/data/rules/cddl-1.0_3.yml deleted file mode 100644 index 7d27f7cdd03..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.sun.com/cddl/ diff --git a/src/licensedcode/data/rules/cddl-1.0_30.RULE b/src/licensedcode/data/rules/cddl-1.0_30.RULE index 6530e8289c1..7479ea8cbf2 100644 --- a/src/licensedcode/data/rules/cddl-1.0_30.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_30.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDLv1.0.html +--- + License: Common Development and Distribution License (CDDL v1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_30.yml b/src/licensedcode/data/rules/cddl-1.0_30.yml deleted file mode 100644 index 2554fe8d5ee..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_31.RULE b/src/licensedcode/data/rules/cddl-1.0_31.RULE index e0ef7944e69..b5db2522246 100644 --- a/src/licensedcode/data/rules/cddl-1.0_31.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_31.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDLv1.0.html +--- + License: COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL Version 1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_31.yml b/src/licensedcode/data/rules/cddl-1.0_31.yml deleted file mode 100644 index 2554fe8d5ee..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_32.RULE b/src/licensedcode/data/rules/cddl-1.0_32.RULE index ef0742e571b..b995b084413 100644 --- a/src/licensedcode/data/rules/cddl-1.0_32.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.sun.com/cddl/cddl.html +--- + License: COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL Version 1.0 (http://www.sun.com/cddl/cddl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_32.yml b/src/licensedcode/data/rules/cddl-1.0_32.yml deleted file mode 100644 index 2a742a5d828..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.sun.com/cddl/cddl.html diff --git a/src/licensedcode/data/rules/cddl-1.0_33.RULE b/src/licensedcode/data/rules/cddl-1.0_33.RULE index 5d1e876cfa1..263832e9537 100644 --- a/src/licensedcode/data/rules/cddl-1.0_33.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_33.yml b/src/licensedcode/data/rules/cddl-1.0_33.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_34.RULE b/src/licensedcode/data/rules/cddl-1.0_34.RULE index e048e90e0a0..9497afa0fe2 100644 --- a/src/licensedcode/data/rules/cddl-1.0_34.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_34.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_text: yes +relevance: 99 +minimum_coverage: 97 +notes: contains extra notice for jurisdiction +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 · 1. Definitions. o 1.1. Contributor means each individual or entity that creates or contributes to the creation of Modifications. @@ -64,5 +72,4 @@ This License represents the complete agreement concerning subject matter hereof. · 10. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. · NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) -The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. - +The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_34.yml b/src/licensedcode/data/rules/cddl-1.0_34.yml deleted file mode 100644 index efc7b03c445..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_text: yes -relevance: 99 -minimum_coverage: 97 -notes: contains extra notice for jurisdiction diff --git a/src/licensedcode/data/rules/cddl-1.0_35.RULE b/src/licensedcode/data/rules/cddl-1.0_35.RULE index d50a3892b1e..892253eedf3 100644 --- a/src/licensedcode/data/rules/cddl-1.0_35.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + are under the CDDL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_35.yml b/src/licensedcode/data/rules/cddl-1.0_35.yml deleted file mode 100644 index 29e623ee8f6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_36.RULE b/src/licensedcode/data/rules/cddl-1.0_36.RULE index efbc0630ec4..27c94d43373 100644 --- a/src/licensedcode/data/rules/cddl-1.0_36.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_36.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - license.txt +--- + * The software in this package is published under the terms of the * CDDL license a copy of which has been included with this distribution * in the license.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_36.yml b/src/licensedcode/data/rules/cddl-1.0_36.yml deleted file mode 100644 index eaf4d18834f..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/cddl-1.0_37.RULE b/src/licensedcode/data/rules/cddl-1.0_37.RULE index 002237b985c..d3c7a93a1df 100644 --- a/src/licensedcode/data/rules/cddl-1.0_37.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + component uses CDDL-licensed dependencies \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_37.yml b/src/licensedcode/data/rules/cddl-1.0_37.yml deleted file mode 100644 index 29e623ee8f6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_38.RULE b/src/licensedcode/data/rules/cddl-1.0_38.RULE index f187123f511..23541c77617 100644 --- a/src/licensedcode/data/rules/cddl-1.0_38.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + CDDL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_38.yml b/src/licensedcode/data/rules/cddl-1.0_38.yml deleted file mode 100644 index 29e623ee8f6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_39.RULE b/src/licensedcode/data/rules/cddl-1.0_39.RULE index 701c68d0278..3e8ead25c7c 100644 --- a/src/licensedcode/data/rules/cddl-1.0_39.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_39.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/CDDL-1.0 +--- + CDDL https://opensource.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_39.yml b/src/licensedcode/data/rules/cddl-1.0_39.yml deleted file mode 100644 index 7173887f668..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_4.RULE b/src/licensedcode/data/rules/cddl-1.0_4.RULE index ef37fa84d63..348667284e9 100644 --- a/src/licensedcode/data/rules/cddl-1.0_4.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.sun.com/cddl/cddl.html +--- + http://www.sun.com/cddl/cddl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_4.yml b/src/licensedcode/data/rules/cddl-1.0_4.yml deleted file mode 100644 index 6ee4cffdaee..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.sun.com/cddl/cddl.html diff --git a/src/licensedcode/data/rules/cddl-1.0_40.RULE b/src/licensedcode/data/rules/cddl-1.0_40.RULE index 35ca4cbca7b..161e8772c2d 100644 --- a/src/licensedcode/data/rules/cddl-1.0_40.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_40.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/CDDL-1.0 +--- + CDDL http://opensource.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_40.yml b/src/licensedcode/data/rules/cddl-1.0_40.yml deleted file mode 100644 index e1a329eb941..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_41.RULE b/src/licensedcode/data/rules/cddl-1.0_41.RULE index 3e0bc0fff2e..cf346b54f29 100644 --- a/src/licensedcode/data/rules/cddl-1.0_41.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_41.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/CDDL-1.0 +--- + https://opensource.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_41.yml b/src/licensedcode/data/rules/cddl-1.0_41.yml deleted file mode 100644 index 7173887f668..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_42.RULE b/src/licensedcode/data/rules/cddl-1.0_42.RULE index 393c7278dc3..63a11fde819 100644 --- a/src/licensedcode/data/rules/cddl-1.0_42.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_42.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/CDDL-1.0 +--- + http://opensource.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_42.yml b/src/licensedcode/data/rules/cddl-1.0_42.yml deleted file mode 100644 index e1a329eb941..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_43.RULE b/src/licensedcode/data/rules/cddl-1.0_43.RULE index a0c3e4a9cae..7b58d7d1fa6 100644 --- a/src/licensedcode/data/rules/cddl-1.0_43.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_43.yml b/src/licensedcode/data/rules/cddl-1.0_43.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_44.RULE b/src/licensedcode/data/rules/cddl-1.0_44.RULE index 278aa22b41a..1aa9af61528 100644 --- a/src/licensedcode/data/rules/cddl-1.0_44.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_44.RULE @@ -1 +1,9 @@ -{{`CDDL-1.0` - [Common Development and Distribution License](https://opensource.org/licenses/CDDL-1.0}}) +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/CDDL-1.0 +--- + +{{`CDDL-1.0` - [Common Development and Distribution License](https://opensource.org/licenses/CDDL-1.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_44.yml b/src/licensedcode/data/rules/cddl-1.0_44.yml deleted file mode 100644 index 7173887f668..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_45.RULE b/src/licensedcode/data/rules/cddl-1.0_45.RULE index 6e141134454..e74a9525d38 100644 --- a/src/licensedcode/data/rules/cddl-1.0_45.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_45.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - usr/src/OPENSOLARIS.LICENSE +ignorable_urls: + - http://www.opensolaris.org/os/licensing +--- + # CDDL HEADER START # # The contents of this file are subject to the terms of the diff --git a/src/licensedcode/data/rules/cddl-1.0_45.yml b/src/licensedcode/data/rules/cddl-1.0_45.yml deleted file mode 100644 index b71261aa5cc..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_45.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - usr/src/OPENSOLARIS.LICENSE -ignorable_urls: - - http://www.opensolaris.org/os/licensing diff --git a/src/licensedcode/data/rules/cddl-1.0_46.RULE b/src/licensedcode/data/rules/cddl-1.0_46.RULE index 9e8b40a2fae..29f788c8f99 100644 --- a/src/licensedcode/data/rules/cddl-1.0_46.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_46.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_text: yes +relevance: 100 +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_46.yml b/src/licensedcode/data/rules/cddl-1.0_46.yml deleted file mode 100644 index 779d34c6f71..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_47.RULE b/src/licensedcode/data/rules/cddl-1.0_47.RULE index 1ea6c8cd498..6dc04290036 100644 --- a/src/licensedcode/data/rules/cddl-1.0_47.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_47.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution License (CDDL), Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_47.yml b/src/licensedcode/data/rules/cddl-1.0_47.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_48.RULE b/src/licensedcode/data/rules/cddl-1.0_48.RULE index 81c635f3fa9..240e1430c75 100644 --- a/src/licensedcode/data/rules/cddl-1.0_48.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_48.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://hub.opensolaris.org/bin/view/Main/licensing_faq + - http://opensource.org/licenses/CDDL-1.0 +--- + The accompanying software is licensed under the Common Development and Distribution License, Version 1.0 (CDDL-1.0, the "License"); you may not use any part of this software except in compliance with the License. diff --git a/src/licensedcode/data/rules/cddl-1.0_48.yml b/src/licensedcode/data/rules/cddl-1.0_48.yml deleted file mode 100644 index 80310a39379..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_48.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://hub.opensolaris.org/bin/view/Main/licensing_faq - - http://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_49.RULE b/src/licensedcode/data/rules/cddl-1.0_49.RULE index a3cd76c888d..5128e5f76d7 100644 --- a/src/licensedcode/data/rules/cddl-1.0_49.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_49.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://glassfish.java.net/public/CDDLv1.0.html +--- + copyrighted software made available under Version 1.0 of the Common Development and Distribution License https://glassfish.java.net/public/CDDLv1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_49.yml b/src/licensedcode/data/rules/cddl-1.0_49.yml deleted file mode 100644 index 1d6ceeb7429..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://glassfish.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_5.RULE b/src/licensedcode/data/rules/cddl-1.0_5.RULE index a8ddc115059..9b45b9bd9e5 100644 --- a/src/licensedcode/data/rules/cddl-1.0_5.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensolaris.org/os/about/faq/licensing_faq/ +--- + http://www.opensolaris.org/os/about/faq/licensing_faq/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_5.yml b/src/licensedcode/data/rules/cddl-1.0_5.yml deleted file mode 100644 index 3b0368e328f..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensolaris.org/os/about/faq/licensing_faq/ diff --git a/src/licensedcode/data/rules/cddl-1.0_50.RULE b/src/licensedcode/data/rules/cddl-1.0_50.RULE index 716800edfd4..2d05c7b1315 100644 --- a/src/licensedcode/data/rules/cddl-1.0_50.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_50.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://glassfish.java.net/public/CDDLv1.0.html +--- + Version 1.0 of the Common Development and Distribution License https://glassfish.java.net/public/CDDLv1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_50.yml b/src/licensedcode/data/rules/cddl-1.0_50.yml deleted file mode 100644 index 75ea7c82dd9..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://glassfish.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_51.RULE b/src/licensedcode/data/rules/cddl-1.0_51.RULE index b321240624d..8777a4c4d0f 100644 --- a/src/licensedcode/data/rules/cddl-1.0_51.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_51.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + Version 1.0 of the Common Development and Distribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_51.yml b/src/licensedcode/data/rules/cddl-1.0_51.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_52.RULE b/src/licensedcode/data/rules/cddl-1.0_52.RULE index 744b8977413..36fe3ea92e1 100644 --- a/src/licensedcode/data/rules/cddl-1.0_52.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_52.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://glassfish.java.net/public/CDDLv1.0.html +--- + https://glassfish.java.net/public/CDDLv1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_52.yml b/src/licensedcode/data/rules/cddl-1.0_52.yml deleted file mode 100644 index 75ea7c82dd9..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://glassfish.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_53.RULE b/src/licensedcode/data/rules/cddl-1.0_53.RULE index faec6c7a12d..d91fddb3024 100644 --- a/src/licensedcode/data/rules/cddl-1.0_53.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution License (CDDL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_53.yml b/src/licensedcode/data/rules/cddl-1.0_53.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_54.RULE b/src/licensedcode/data/rules/cddl-1.0_54.RULE index e4b31adfa74..9acbbcb5737 100644 --- a/src/licensedcode/data/rules/cddl-1.0_54.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution licence (CDDL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_54.yml b/src/licensedcode/data/rules/cddl-1.0_54.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_55.RULE b/src/licensedcode/data/rules/cddl-1.0_55.RULE index ee039e67d45..4d295e0c693 100644 --- a/src/licensedcode/data/rules/cddl-1.0_55.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution License, V1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_55.yml b/src/licensedcode/data/rules/cddl-1.0_55.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_56.RULE b/src/licensedcode/data/rules/cddl-1.0_56.RULE index 3c8c1905cb4..1a98db5f89d 100644 --- a/src/licensedcode/data/rules/cddl-1.0_56.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_56.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_text: yes +relevance: 100 +--- + Unless otherwise noted, all files in this distribution are released under the Common Development and Distribution License (CDDL). Exceptions are noted within the associated source files. diff --git a/src/licensedcode/data/rules/cddl-1.0_56.yml b/src/licensedcode/data/rules/cddl-1.0_56.yml deleted file mode 100644 index 779d34c6f71..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_57.RULE b/src/licensedcode/data/rules/cddl-1.0_57.RULE index 8318cad9a6b..7221eba2b8d 100644 --- a/src/licensedcode/data/rules/cddl-1.0_57.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_57.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + Unless otherwise noted, all files in this distribution are released under the Common Development and Distribution License (CDDL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_57.yml b/src/licensedcode/data/rules/cddl-1.0_57.yml deleted file mode 100644 index 29e623ee8f6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_58.RULE b/src/licensedcode/data/rules/cddl-1.0_58.RULE index ba7d30026f1..68fddc9dee7 100644 --- a/src/licensedcode/data/rules/cddl-1.0_58.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_58.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensolaris.org/os/licensing +--- + CDDL HEADER START The contents of this file are subject to the terms of the diff --git a/src/licensedcode/data/rules/cddl-1.0_58.yml b/src/licensedcode/data/rules/cddl-1.0_58.yml deleted file mode 100644 index be9b1d59976..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensolaris.org/os/licensing diff --git a/src/licensedcode/data/rules/cddl-1.0_59.RULE b/src/licensedcode/data/rules/cddl-1.0_59.RULE index ab3616b784b..85516958b8f 100644 --- a/src/licensedcode/data/rules/cddl-1.0_59.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_59.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensolaris.org/os/licensing +--- + The contents of this file are subject to the terms of the Common Development and Distribution License, Version 1.0 only (the "License"). You may not use this file except in compliance diff --git a/src/licensedcode/data/rules/cddl-1.0_59.yml b/src/licensedcode/data/rules/cddl-1.0_59.yml deleted file mode 100644 index be9b1d59976..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensolaris.org/os/licensing diff --git a/src/licensedcode/data/rules/cddl-1.0_6.RULE b/src/licensedcode/data/rules/cddl-1.0_6.RULE index 26ac558871d..e9037991b94 100644 --- a/src/licensedcode/data/rules/cddl-1.0_6.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_6.RULE @@ -1 +1,9 @@ -https://glassfish.dev.java.net/public/CDDLv1.0.html +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDLv1.0.html +--- + +https://glassfish.dev.java.net/public/CDDLv1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_6.yml b/src/licensedcode/data/rules/cddl-1.0_6.yml deleted file mode 100644 index 73d38bb80c6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_60.RULE b/src/licensedcode/data/rules/cddl-1.0_60.RULE index 4b6fe0dfdd9..c10bc7ff937 100644 --- a/src/licensedcode/data/rules/cddl-1.0_60.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_60.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.illumos.org/license/CDDL +--- + CDDL HEADER START This file and its contents are supplied under the terms of the diff --git a/src/licensedcode/data/rules/cddl-1.0_60.yml b/src/licensedcode/data/rules/cddl-1.0_60.yml deleted file mode 100644 index 8f3fa8e1cc5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.illumos.org/license/CDDL diff --git a/src/licensedcode/data/rules/cddl-1.0_61.RULE b/src/licensedcode/data/rules/cddl-1.0_61.RULE index d53b70bf21f..2f49bd6e14d 100644 --- a/src/licensedcode/data/rules/cddl-1.0_61.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_61.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - OPENSOLARIS.LICENSE +ignorable_urls: + - http://opensource.org/licenses/CDDL-1.0 +--- + CDDL HEADER START The contents of this file are subject to the terms of the diff --git a/src/licensedcode/data/rules/cddl-1.0_61.yml b/src/licensedcode/data/rules/cddl-1.0_61.yml deleted file mode 100644 index a85ac5c27a7..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_61.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - OPENSOLARIS.LICENSE -ignorable_urls: - - http://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_62.RULE b/src/licensedcode/data/rules/cddl-1.0_62.RULE index bbdb9aed909..0f51c2dd22d 100644 --- a/src/licensedcode/data/rules/cddl-1.0_62.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_62.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_text: yes +relevance: 100 +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 1. Definitions. diff --git a/src/licensedcode/data/rules/cddl-1.0_62.yml b/src/licensedcode/data/rules/cddl-1.0_62.yml deleted file mode 100644 index 779d34c6f71..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_63.RULE b/src/licensedcode/data/rules/cddl-1.0_63.RULE index 01243562f29..167c94007dd 100644 --- a/src/licensedcode/data/rules/cddl-1.0_63.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_63.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +notes: CDDL worded like an Apache notice +ignorable_urls: + - http://www.opensource.org/licenses/cddl1.php +--- + * The contents of this file are subject to the terms of the Common * Development and Distribution License (the "License") version 1.0 * and no later version. You may not use this file except in diff --git a/src/licensedcode/data/rules/cddl-1.0_63.yml b/src/licensedcode/data/rules/cddl-1.0_63.yml deleted file mode 100644 index 7984a5f0b24..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_63.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -notes: CDDL worded like an Apache notice -ignorable_urls: - - http://www.opensource.org/licenses/cddl1.php diff --git a/src/licensedcode/data/rules/cddl-1.0_64.RULE b/src/licensedcode/data/rules/cddl-1.0_64.RULE index 434eec4a296..f40a9e925df 100644 --- a/src/licensedcode/data/rules/cddl-1.0_64.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + Driver is licensed under the CDDL 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_64.yml b/src/licensedcode/data/rules/cddl-1.0_64.yml deleted file mode 100644 index 29e623ee8f6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_65.RULE b/src/licensedcode/data/rules/cddl-1.0_65.RULE index 2055bf253e2..4867c065709 100644 --- a/src/licensedcode/data/rules/cddl-1.0_65.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_65.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the CDDL 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_65.yml b/src/licensedcode/data/rules/cddl-1.0_65.yml deleted file mode 100644 index 29e623ee8f6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_66.RULE b/src/licensedcode/data/rules/cddl-1.0_66.RULE index 69d14868024..128f66dd5fb 100644 --- a/src/licensedcode/data/rules/cddl-1.0_66.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_66.RULE @@ -1 +1,8 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/CDDL-1.0 +--- + licensed under the Common Development and Distribution License (CDDL) Version 1.0: http://www.opensource.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_66.yml b/src/licensedcode/data/rules/cddl-1.0_66.yml deleted file mode 100644 index 050b768f72c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_66.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_67.RULE b/src/licensedcode/data/rules/cddl-1.0_67.RULE index 84c88b83568..e5785fcbb70 100644 --- a/src/licensedcode/data/rules/cddl-1.0_67.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_67.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 99 +--- + NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) diff --git a/src/licensedcode/data/rules/cddl-1.0_67.yml b/src/licensedcode/data/rules/cddl-1.0_67.yml deleted file mode 100644 index e3760d817b8..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cddl-1.0_68.RULE b/src/licensedcode/data/rules/cddl-1.0_68.RULE index 2ccafdc135c..1fff21981c8 100644 --- a/src/licensedcode/data/rules/cddl-1.0_68.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_68.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +--- + all files in this distribution are released under the Common Development and Distribution License (CDDL), Version 1.0 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_68.yml b/src/licensedcode/data/rules/cddl-1.0_68.yml deleted file mode 100644 index 121f0f104ca..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_68.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cddl-1.0_69.RULE b/src/licensedcode/data/rules/cddl-1.0_69.RULE index a87fab186f3..45bd68870b1 100644 --- a/src/licensedcode/data/rules/cddl-1.0_69.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_69.RULE @@ -1 +1,6 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +--- + CDDL-1.0 Common Development and Distribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_69.yml b/src/licensedcode/data/rules/cddl-1.0_69.yml deleted file mode 100644 index 198c2a0f7f9..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_69.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cddl-1.0_7.RULE b/src/licensedcode/data/rules/cddl-1.0_7.RULE index 4fb2cb8f619..de029b71bd9 100644 --- a/src/licensedcode/data/rules/cddl-1.0_7.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cddl1.txt +--- + http://www.opensource.org/licenses/cddl1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_7.yml b/src/licensedcode/data/rules/cddl-1.0_7.yml deleted file mode 100644 index 9c13b0c9a11..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cddl1.txt diff --git a/src/licensedcode/data/rules/cddl-1.0_70.RULE b/src/licensedcode/data/rules/cddl-1.0_70.RULE index d9e9d3d16d3..777b8f8caf8 100644 --- a/src/licensedcode/data/rules/cddl-1.0_70.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_70.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Common Development and Distribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_70.yml b/src/licensedcode/data/rules/cddl-1.0_70.yml deleted file mode 100644 index b75424f1a0f..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_70.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.0_71.RULE b/src/licensedcode/data/rules/cddl-1.0_71.RULE index 705164e9cc8..d8582d5eceb 100644 --- a/src/licensedcode/data/rules/cddl-1.0_71.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_71.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Common Development and Distribution License 1.0 CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_71.yml b/src/licensedcode/data/rules/cddl-1.0_71.yml deleted file mode 100644 index b75424f1a0f..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_71.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.0_72.RULE b/src/licensedcode/data/rules/cddl-1.0_72.RULE index 9a70aa7dde1..ba7e1ea2c27 100644 --- a/src/licensedcode/data/rules/cddl-1.0_72.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_72.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Common Development and Distribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_72.yml b/src/licensedcode/data/rules/cddl-1.0_72.yml deleted file mode 100644 index 56650158b6e..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_72.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.0_73.RULE b/src/licensedcode/data/rules/cddl-1.0_73.RULE index 62f9e8d115c..2fc4e4fb190 100644 --- a/src/licensedcode/data/rules/cddl-1.0_73.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_73.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_73.yml b/src/licensedcode/data/rules/cddl-1.0_73.yml deleted file mode 100644 index 56650158b6e..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_73.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.0_74.RULE b/src/licensedcode/data/rules/cddl-1.0_74.RULE index 638c9b9f751..bcedbb928f5 100644 --- a/src/licensedcode/data/rules/cddl-1.0_74.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_74.RULE @@ -1 +1,6 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +--- + licensed under the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE. For license terms see COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) version 1.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_74.yml b/src/licensedcode/data/rules/cddl-1.0_74.yml deleted file mode 100644 index 121f0f104ca..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cddl-1.0_75.RULE b/src/licensedcode/data/rules/cddl-1.0_75.RULE index 2f5545685cf..05efda48602 100644 --- a/src/licensedcode/data/rules/cddl-1.0_75.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_75.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + For license terms, see COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) version 1.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_75.yml b/src/licensedcode/data/rules/cddl-1.0_75.yml deleted file mode 100644 index 29e623ee8f6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_76.RULE b/src/licensedcode/data/rules/cddl-1.0_76.RULE index 784f21249f3..bac976c2e12 100644 --- a/src/licensedcode/data/rules/cddl-1.0_76.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_76.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the CDDL Version 1.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_76.yml b/src/licensedcode/data/rules/cddl-1.0_76.yml deleted file mode 100644 index 29e623ee8f6..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_77.RULE b/src/licensedcode/data/rules/cddl-1.0_77.RULE index 8323ed8ff35..65eb46123dc 100644 --- a/src/licensedcode/data/rules/cddl-1.0_77.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + CDDL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_77.yml b/src/licensedcode/data/rules/cddl-1.0_77.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_78.RULE b/src/licensedcode/data/rules/cddl-1.0_78.RULE index 224f7b3876f..826a8ad58b4 100644 --- a/src/licensedcode/data/rules/cddl-1.0_78.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_78.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CDDL-1.0 +--- + https://licenses.nuget.org/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_78.yml b/src/licensedcode/data/rules/cddl-1.0_78.yml deleted file mode 100644 index df2c169ad57..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_79.RULE b/src/licensedcode/data/rules/cddl-1.0_79.RULE index 8b4508a09a2..b2621c1078d 100644 --- a/src/licensedcode/data/rules/cddl-1.0_79.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_79.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_79.yml b/src/licensedcode/data/rules/cddl-1.0_79.yml deleted file mode 100644 index 7c7b39e39d5..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_8.RULE b/src/licensedcode/data/rules/cddl-1.0_8.RULE index 857ac975f8e..5cc3371cb5f 100644 --- a/src/licensedcode/data/rules/cddl-1.0_8.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDLv1.0.html +--- + https://glassfish.dev.java.net/public/CDDLv1.0.html">Common Development and Distribution License (CDDL) v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_8.yml b/src/licensedcode/data/rules/cddl-1.0_8.yml deleted file mode 100644 index d104adb7aed..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDLv1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_80.RULE b/src/licensedcode/data/rules/cddl-1.0_80.RULE index 4de00037761..66fee8e2814 100644 --- a/src/licensedcode/data/rules/cddl-1.0_80.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_80.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDDL-1.0 +--- + {{CDDL-1.0}} https://spdx.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_80.yml b/src/licensedcode/data/rules/cddl-1.0_80.yml deleted file mode 100644 index c098286289c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_81.RULE b/src/licensedcode/data/rules/cddl-1.0_81.RULE index 4836a51c7fe..1575c5689bc 100644 --- a/src/licensedcode/data/rules/cddl-1.0_81.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_81.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDDL-1.0 +--- + LICENSE {{CDDL-1.0}} https://spdx.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_81.yml b/src/licensedcode/data/rules/cddl-1.0_81.yml deleted file mode 100644 index c098286289c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_9.RULE b/src/licensedcode/data/rules/cddl-1.0_9.RULE index b044834532c..b1679f2b9d8 100644 --- a/src/licensedcode/data/rules/cddl-1.0_9.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_notice: yes +notes: CDDL 1.0 with different quote symbol +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_9.yml b/src/licensedcode/data/rules/cddl-1.0_9.yml deleted file mode 100644 index 187d50c8924..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_notice: yes -notes: CDDL 1.0 with different quote symbol diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.RULE index 812599ba12c..8dc27fa6adb 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://glassfish.dev.java.net/public/CDDL+GPL.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -48,4 +56,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.yml deleted file mode 100644 index ed3f37c3399..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://glassfish.dev.java.net/public/CDDL+GPL.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.RULE index c1f2f67b4cc..c75050b19f3 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://glassfish.dev.java.net/public/CDDL+GPL.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -50,4 +58,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.yml deleted file mode 100644 index ed3f37c3399..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://glassfish.dev.java.net/public/CDDL+GPL.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-glassfish.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-glassfish.RULE index 374d3505257..9e804606326 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-glassfish.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-glassfish.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -28,4 +35,4 @@ * 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/cddl-1.0_or_gpl-2.0-glassfish.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-glassfish.yml deleted file mode 100644 index b4fc383f95a..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-glassfish.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 -is_license_notice: yes -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0.RULE index a8f9bb67e26..e4df94b29d7 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 80 +notes: weird format for cddl + gpl + classpath contains extra notice for jurisdiction +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 1. Definitions. o 1.1. Contributor means each individual or entity that creates or contributes to the creation of Modifications. @@ -134,4 +148,4 @@ This General Public License does not permit incorporating your program into prop Certain source files distributed by Sun Microsystems, Inc. are subject to the following clarification and special exception to the GPL Version 2, but only where Sun has expressly included in the particular source file's header the words "Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the License file that accompanied this code." Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License Version 2 cover the whole combination. -As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module.? An independent module is a module which is not derived from or based on this library.? If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so.? If you do not wish to do so, delete this exception statement from your version. +As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module.? An independent module is a module which is not derived from or based on this library.? If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so.? If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0.yml deleted file mode 100644 index 50abaea6719..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 80 -notes: weird format for cddl + gpl + classpath contains extra notice for jurisdiction -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.RULE index 2294239db3f..56eb139ffb1 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +notes: weird format for cddl + gpl + classpath +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL.html +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. @@ -33,4 +41,4 @@ 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. + option by the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.yml deleted file mode 100644 index 4cfc13eca8a..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -notes: weird format for cddl + gpl + classpath -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.RULE index 98bd57dd8a0..035f1c94d3e 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +notes: weird format for cddl + gpl + classpath +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL.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 @@ -30,4 +38,4 @@ 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. + option by the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 4cfc13eca8a..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0-plus_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -notes: weird format for cddl + gpl + classpath -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0.RULE index 501705f6411..9f211330446 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 +is_license_tag: yes +relevance: 100 +notes: we report gpl 2.0 here as there is no known combo of cddl-1.0 and other gpl versions + in the wild +--- + Dual License CDDL + GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0.yml deleted file mode 100644 index 5b3295e2f14..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 -is_license_tag: yes -relevance: 100 -notes: we report gpl 2.0 here as there is no known combo of cddl-1.0 and other gpl versions - in the wild diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_1.RULE index 9511bf05f71..fba26768c53 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/cddl1.php +--- + which is distributed under the GlassFish Dual License, which means CodeModel is subject to the terms of either the GNU General Public License Version 2 only diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_1.yml deleted file mode 100644 index 2c5baa20380..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/cddl1.php diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_2.RULE index 6d1e011760a..8b1b5a03894 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 +is_license_notice: yes +--- + License: CDDL-1.0 | GPPL-2 License: CDDL-1.0 COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 @@ -59,4 +64,4 @@ License: CDDL-1.0 litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with - venue lying in Santa Clara County, California. + venue lying in Santa Clara County, California. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_2.yml deleted file mode 100644 index 661c5b2c62d..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_3.RULE index ca9541c8c2e..42267fbc7c2 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_3.RULE @@ -1 +1,7 @@ -License: CDDL-1.0 | GPPL-2 +--- +license_expression: cddl-1.0 OR gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +License: CDDL-1.0 | GPPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_3.yml deleted file mode 100644 index c547eb27fc9..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_4.RULE index 90e787e968b..cf41a33aabd 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + CDDL+GPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_4.yml deleted file mode 100644 index 5fcf1d0cda7..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_1.RULE index d750dfb171d..f020fce4738 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html +--- + License: CDDL + GPLv2 with classpath exception (https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_1.yml deleted file mode 100644 index 75c95bd1c56..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_2.RULE index 1ccd48eb584..6795b21e9c5 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html +--- + https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_2.yml deleted file mode 100644 index 95a674f74a1..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_3.RULE index 266c9bd0eb6..67a062c7a39 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + CDDL/GPLv2+CE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 407b34b51f2..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE index 4811f0e5aa4..4f317874b9c 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + CDDL + GPLv2 with classpath exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.yml deleted file mode 100644 index 407b34b51f2..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.RULE index 2549a87a58e..614c998e069 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL2 w/ CPE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.yml deleted file mode 100644 index 407b34b51f2..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_6.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_6.RULE index 19e15c469f1..684cf460f48 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL.html +--- + cddl+gpl CDDL + GPLv2 https://glassfish.dev.java.net/public/CDDL+GPL.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_6.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_6.yml deleted file mode 100644 index 1835ba566d4..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_7.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_7.RULE index 84edcbbe4c2..5d355fb2889 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.netbeans.org/cddl-gplv2.html +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. @@ -37,4 +45,4 @@ 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. +made subject to such option by the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_7.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_7.yml deleted file mode 100644 index 2501b8eb88d..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.netbeans.org/cddl-gplv2.html diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.RULE index 34fec4e7bb7..2d9ec061818 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -50,4 +58,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.yml deleted file mode 100644 index 63b111a5d41..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.RULE b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.RULE index 60a2f72a6de..54dc66d9a7c 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -48,4 +56,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.yml b/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.yml deleted file mode 100644 index 63b111a5d41..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.0 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_1.RULE index f993c9a2558..dd44dbb1c3a 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + component uses CDDL/LGPL dual-licensed dependency \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index b8562d2a525..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_2.RULE index 3b041edb2f4..c85f7a7ba27 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + CDDL/LGPL dual-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index b8562d2a525..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_3.RULE index 2b5629f4e64..89db1177087 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cddl-1.0 OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + It is distributed under the terms of either: - the common development and distribution license (CDDL), v1.0; or - the GNU Lesser General Public License, v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_3.yml deleted file mode 100644 index b8562d2a525..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_4.RULE b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_4.RULE index 872c3d75422..188f0f63d59 100644 --- a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_4.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cddl-1.0 OR lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cddl1.php + - http://www.opensource.org/licenses/lgpl-license.php +--- + CDDL, v1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_4.yml b/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_4.yml deleted file mode 100644 index 91d7d247350..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_or_lgpl-2.1-plus_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.0 OR lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cddl1.php - - http://www.opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/cddl-1.0_url_1.RULE b/src/licensedcode/data/rules/cddl-1.0_url_1.RULE index 43bfbaaf7a1..f671bfe9c1d 100644 --- a/src/licensedcode/data/rules/cddl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cddl-1.0 +--- + https://spdx.org/licenses/cddl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_url_1.yml b/src/licensedcode/data/rules/cddl-1.0_url_1.yml deleted file mode 100644 index a6073760df9..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cddl-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_url_2.RULE b/src/licensedcode/data/rules/cddl-1.0_url_2.RULE index 0035205baae..b042328780b 100644 --- a/src/licensedcode/data/rules/cddl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cddl-1.0.html +--- + https://spdx.org/licenses/cddl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_url_2.yml b/src/licensedcode/data/rules/cddl-1.0_url_2.yml deleted file mode 100644 index 2d482cbcc56..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cddl-1.0.html diff --git a/src/licensedcode/data/rules/cddl-1.0_url_glc_254.RULE b/src/licensedcode/data/rules/cddl-1.0_url_glc_254.RULE index 27b8c5b269b..6b7e91d8447 100644 --- a/src/licensedcode/data/rules/cddl-1.0_url_glc_254.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_url_glc_254.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cddl1 +--- + http://www.opensource.org/licenses/cddl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_url_glc_254.yml b/src/licensedcode/data/rules/cddl-1.0_url_glc_254.yml deleted file mode 100644 index b3e1dd62c69..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_url_glc_254.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cddl1 diff --git a/src/licensedcode/data/rules/cddl-1.0_url_glc_255.RULE b/src/licensedcode/data/rules/cddl-1.0_url_glc_255.RULE index 80707f393e3..16e948f3af5 100644 --- a/src/licensedcode/data/rules/cddl-1.0_url_glc_255.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_url_glc_255.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/cddl1 +--- + https://www.opensource.org/licenses/cddl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_url_glc_255.yml b/src/licensedcode/data/rules/cddl-1.0_url_glc_255.yml deleted file mode 100644 index e2f17efffdd..00000000000 --- a/src/licensedcode/data/rules/cddl-1.0_url_glc_255.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/cddl1 diff --git a/src/licensedcode/data/rules/cddl-1.1.RULE b/src/licensedcode/data/rules/cddl-1.1.RULE index 9c80b0b8b99..65ed66c68df 100644 --- a/src/licensedcode/data/rules/cddl-1.1.RULE +++ b/src/licensedcode/data/rules/cddl-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + http://glassfish.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1.yml b/src/licensedcode/data/rules/cddl-1.1.yml deleted file mode 100644 index 07955824f47..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_1.RULE b/src/licensedcode/data/rules/cddl-1.1_1.RULE index 1618a396a54..f5fca4fef4b 100644 --- a/src/licensedcode/data/rules/cddl-1.1_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + License: CDDL 1.1 (http://glassfish.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_1.yml b/src/licensedcode/data/rules/cddl-1.1_1.yml deleted file mode 100644 index 5030bf9282c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_10.RULE b/src/licensedcode/data/rules/cddl-1.1_10.RULE index 7242b0e2ee4..aeca6737300 100644 --- a/src/licensedcode/data/rules/cddl-1.1_10.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cddl-1.1 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.opensolaris.org/os/licensing +--- + * CDDL HEADER START * * The contents of this file are subject to the terms of the diff --git a/src/licensedcode/data/rules/cddl-1.1_10.yml b/src/licensedcode/data/rules/cddl-1.1_10.yml deleted file mode 100644 index f2aa6135e3b..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.opensolaris.org/os/licensing diff --git a/src/licensedcode/data/rules/cddl-1.1_11.RULE b/src/licensedcode/data/rules/cddl-1.1_11.RULE index 815232cd7d8..55429e95483 100644 --- a/src/licensedcode/data/rules/cddl-1.1_11.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_11.RULE @@ -1 +1,6 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +--- + CDDL-1.1 Common Development and Distribution License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_11.yml b/src/licensedcode/data/rules/cddl-1.1_11.yml deleted file mode 100644 index 8c534ff1c73..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cddl-1.1_12.RULE b/src/licensedcode/data/rules/cddl-1.1_12.RULE index a22583874c3..36545f8d5d7 100644 --- a/src/licensedcode/data/rules/cddl-1.1_12.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_12.RULE @@ -1 +1,6 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +--- + Common Development and Distribution License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_12.yml b/src/licensedcode/data/rules/cddl-1.1_12.yml deleted file mode 100644 index 8c534ff1c73..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cddl-1.1_13.RULE b/src/licensedcode/data/rules/cddl-1.1_13.RULE index 5537e6017fd..24518c0ab08 100644 --- a/src/licensedcode/data/rules/cddl-1.1_13.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_13.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Common Development and Distribution License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_13.yml b/src/licensedcode/data/rules/cddl-1.1_13.yml deleted file mode 100644 index 0ab17dea14c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.1_14.RULE b/src/licensedcode/data/rules/cddl-1.1_14.RULE index 5800b9da7ab..7b38632dc3b 100644 --- a/src/licensedcode/data/rules/cddl-1.1_14.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_14.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Common Development and Distribution License 1.1 CDDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_14.yml b/src/licensedcode/data/rules/cddl-1.1_14.yml deleted file mode 100644 index 0ab17dea14c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.1_15.RULE b/src/licensedcode/data/rules/cddl-1.1_15.RULE index d070932baf9..49f1950c84e 100644 --- a/src/licensedcode/data/rules/cddl-1.1_15.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_15.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CDDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_15.yml b/src/licensedcode/data/rules/cddl-1.1_15.yml deleted file mode 100644 index 333ddcb8d30..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.1_16.RULE b/src/licensedcode/data/rules/cddl-1.1_16.RULE index c01a74057ab..3a532dac279 100644 --- a/src/licensedcode/data/rules/cddl-1.1_16.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_16.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Common Development and Distribution License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_16.yml b/src/licensedcode/data/rules/cddl-1.1_16.yml deleted file mode 100644 index 333ddcb8d30..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.1_17.RULE b/src/licensedcode/data/rules/cddl-1.1_17.RULE index 41215e4de9e..0752e79c3de 100644 --- a/src/licensedcode/data/rules/cddl-1.1_17.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CDDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_17.yml b/src/licensedcode/data/rules/cddl-1.1_17.yml deleted file mode 100644 index 333ddcb8d30..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cddl-1.1_18.RULE b/src/licensedcode/data/rules/cddl-1.1_18.RULE index 32ffcf24af5..fdc6642fd52 100644 --- a/src/licensedcode/data/rules/cddl-1.1_18.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['CDDL', 'CDDL-1.1'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_18.yml b/src/licensedcode/data/rules/cddl-1.1_18.yml deleted file mode 100644 index 37de6c46e97..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cddl-1.1_19.RULE b/src/licensedcode/data/rules/cddl-1.1_19.RULE index 1a5e9ce1905..4af0dae9ec1 100644 --- a/src/licensedcode/data/rules/cddl-1.1_19.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_19.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/Common_Development_and_Distribution_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_19.yml b/src/licensedcode/data/rules/cddl-1.1_19.yml deleted file mode 100644 index 7ab8f268fcf..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cddl-1.1_2.RULE b/src/licensedcode/data/rules/cddl-1.1_2.RULE index d233e815639..318d305f35e 100644 --- a/src/licensedcode/data/rules/cddl-1.1_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + License: CDDL 1.1 (https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_2.yml b/src/licensedcode/data/rules/cddl-1.1_2.yml deleted file mode 100644 index 1edeb610cba..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_20.RULE b/src/licensedcode/data/rules/cddl-1.1_20.RULE index fbc41fcafb5..6bb765ec2ba 100644 --- a/src/licensedcode/data/rules/cddl-1.1_20.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CDDL-1.1 +--- + https://licenses.nuget.org/CDDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_20.yml b/src/licensedcode/data/rules/cddl-1.1_20.yml deleted file mode 100644 index 41bf8c971e3..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CDDL-1.1 diff --git a/src/licensedcode/data/rules/cddl-1.1_21.RULE b/src/licensedcode/data/rules/cddl-1.1_21.RULE index 6a8084bba6a..5cbe614133a 100644 --- a/src/licensedcode/data/rules/cddl-1.1_21.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_21.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CDDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_21.yml b/src/licensedcode/data/rules/cddl-1.1_21.yml deleted file mode 100644 index 984a349dd3c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.1_22.RULE b/src/licensedcode/data/rules/cddl-1.1_22.RULE index f026507becc..ffc4d82175a 100644 --- a/src/licensedcode/data/rules/cddl-1.1_22.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_22.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDDL-1.1 +--- + {{CDDL-1.1}} https://spdx.org/licenses/CDDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_22.yml b/src/licensedcode/data/rules/cddl-1.1_22.yml deleted file mode 100644 index 54b2866c846..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDDL-1.1 diff --git a/src/licensedcode/data/rules/cddl-1.1_23.RULE b/src/licensedcode/data/rules/cddl-1.1_23.RULE index 3b9ff40edf9..9ba1485c53e 100644 --- a/src/licensedcode/data/rules/cddl-1.1_23.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_23.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDDL-1.1 +--- + LICENSE {{CDDL-1.1}} https://spdx.org/licenses/CDDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_23.yml b/src/licensedcode/data/rules/cddl-1.1_23.yml deleted file mode 100644 index 54b2866c846..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDDL-1.1 diff --git a/src/licensedcode/data/rules/cddl-1.1_3.RULE b/src/licensedcode/data/rules/cddl-1.1_3.RULE index 257f95fd992..367f460ef34 100644 --- a/src/licensedcode/data/rules/cddl-1.1_3.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + License: CDDL 1.1 (https://glassfish.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_3.yml b/src/licensedcode/data/rules/cddl-1.1_3.yml deleted file mode 100644 index ee50b0ed780..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_4.RULE b/src/licensedcode/data/rules/cddl-1.1_4.RULE index 4bbca8f9b83..322af034805 100644 --- a/src/licensedcode/data/rules/cddl-1.1_4.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution License (CDDL), Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_4.yml b/src/licensedcode/data/rules/cddl-1.1_4.yml deleted file mode 100644 index 984a349dd3c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.1_5.RULE b/src/licensedcode/data/rules/cddl-1.1_5.RULE index 07b32fa80d1..b45cf904cab 100644 --- a/src/licensedcode/data/rules/cddl-1.1_5.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_notice: yes +relevance: 100 +--- + The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_5.yml b/src/licensedcode/data/rules/cddl-1.1_5.yml deleted file mode 100644 index 577fa888cfc..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.1_6.RULE b/src/licensedcode/data/rules/cddl-1.1_6.RULE index 99041bc4b8d..fdb149c4e54 100644 --- a/src/licensedcode/data/rules/cddl-1.1_6.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cddl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - usr/src/OPENSOLARIS.LICENSE +ignorable_urls: + - http://www.opensolaris.org/os/licensing +--- + The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/cddl-1.1_6.yml b/src/licensedcode/data/rules/cddl-1.1_6.yml deleted file mode 100644 index bae1db0ea34..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cddl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - usr/src/OPENSOLARIS.LICENSE -ignorable_urls: - - http://www.opensolaris.org/os/licensing diff --git a/src/licensedcode/data/rules/cddl-1.1_7.RULE b/src/licensedcode/data/rules/cddl-1.1_7.RULE index 108f604214d..3c89d99223e 100644 --- a/src/licensedcode/data/rules/cddl-1.1_7.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 100 +--- + Common Development and Distribution License, V1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_7.yml b/src/licensedcode/data/rules/cddl-1.1_7.yml deleted file mode 100644 index 984a349dd3c..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.1_8.RULE b/src/licensedcode/data/rules/cddl-1.1_8.RULE index baf1ef1260f..958bff0e4af 100644 --- a/src/licensedcode/data/rules/cddl-1.1_8.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_text: yes +relevance: 100 +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)Version 1.1 1. Definitions. diff --git a/src/licensedcode/data/rules/cddl-1.1_8.yml b/src/licensedcode/data/rules/cddl-1.1_8.yml deleted file mode 100644 index 2ba44668163..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.1 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.1_9.RULE b/src/licensedcode/data/rules/cddl-1.1_9.RULE index 2c9ea7a592b..298c5bbf775 100644 --- a/src/licensedcode/data/rules/cddl-1.1_9.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.1 +is_license_notice: yes +relevance: 100 +--- + LICENSE INFORMATION: CDDL 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_9.yml b/src/licensedcode/data/rules/cddl-1.1_9.yml deleted file mode 100644 index 577fa888cfc..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath-glassfish.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath-glassfish.RULE index 6462be42b45..883ce456b9a 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath-glassfish.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath-glassfish.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -35,4 +42,4 @@ * 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/cddl-1.1_or_gpl-2.0-classpath-glassfish.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath-glassfish.yml deleted file mode 100644 index 2742b631570..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath-glassfish.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.RULE index 30569e605e2..0e45df1b83e 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -52,4 +60,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.yml deleted file mode 100644 index d9e6cd089ca..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.RULE index 60eaebc0c2e..3fff8d9a090 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -54,4 +62,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.yml deleted file mode 100644 index d9e6cd089ca..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_apache-2.0-glassfish_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_mit-glassfish.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_mit-glassfish.RULE index db4a600a520..2095dedd877 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_mit-glassfish.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_mit-glassfish.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND mit +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -52,4 +60,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_mit-glassfish.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_mit-glassfish.yml deleted file mode 100644 index 17baaf5ac97..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_mit-glassfish.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND mit -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_w3c-glassfish.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_w3c-glassfish.RULE index aeb5df8610a..8f44edc3185 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_w3c-glassfish.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_w3c-glassfish.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND w3c +is_license_notice: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -48,4 +56,4 @@ * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_w3c-glassfish.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_w3c-glassfish.yml deleted file mode 100644 index 1a195bf4535..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-classpath_and_w3c-glassfish.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND w3c -is_license_notice: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-plus_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-plus_with_classpath-exception-2.0_1.RULE index f2e692ee9b9..4a0004790f1 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-plus_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-plus_with_classpath-exception-2.0_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 +is_license_text: yes +relevance: 99 +minimum_coverage: 80 +notes: weird format for cddl + gpl + classpath contains extra notice for jurisdiction +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 @@ -750,5 +764,4 @@ module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement -from your version. - +from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-plus_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-plus_with_classpath-exception-2.0_1.yml deleted file mode 100644 index 698a929e430..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0-plus_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 -is_license_text: yes -relevance: 99 -minimum_coverage: 80 -notes: weird format for cddl + gpl + classpath contains extra notice for jurisdiction -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_1.RULE index 2246ed7dabd..6b78fcf8569 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_1.yml deleted file mode 100644 index 8138414425b..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_2.RULE index c5c34ab08eb..335b5234193 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + License: CDDL+GPL License (http://glassfish.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_2.yml deleted file mode 100644 index 09ffe1eb049..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_3.RULE index 49ea94d1c86..6300b12261f 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://javaee.github.io/javamail/LICENSE +--- + License: CDDL/GPLv2+CE (https://javaee.github.io/javamail/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 60a94d2b493..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://javaee.github.io/javamail/LICENSE diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_4.RULE index ef48228e350..0e9ac93d1aa 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html +--- + License: CDDL + GPLv2 with classpath exception (https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_4.yml deleted file mode 100644 index 11d21b3db79..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_5.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_5.RULE index dd7a097877b..1fcd04e1d4c 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_5.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_5.yml deleted file mode 100644 index 58d2516e688..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_6.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_6.RULE index 664aece15a9..773bdc46cba 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html +--- + https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_6.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_6.yml deleted file mode 100644 index 3e0b84daa7d..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://glassfish.java.net/nonav/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_7.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_7.RULE index 168d36b5c0c..70a5566b469 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_7.RULE @@ -1 +1,9 @@ -https://glassfish.java.net/public/CDDL+GPL_1_1.html +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + +https://glassfish.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_7.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_7.yml deleted file mode 100644 index 1d80fa9d407..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_8.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_8.RULE index 89b754892bc..b734fcc246e 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +notes: https://github.com/androidannotations/androidannotations/blob/develop/LICENSE.txt +ignorable_urls: + - http://codemodel.java.net/ + - http://www.opensource.org/licenses/cddl1.php +--- + This project uses CodeModel (http://codemodel.java.net/), which is distributed under the GlassFish Dual License, which means CodeModel is subject to the terms of either the GNU General Public License Version 2 only diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_8.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_8.yml deleted file mode 100644 index 50668f4ea99..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -notes: https://github.com/androidannotations/androidannotations/blob/develop/LICENSE.txt -ignorable_urls: - - http://codemodel.java.net/ - - http://www.opensource.org/licenses/cddl1.php diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.RULE index ee93e96f7c8..434e3454fe1 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -52,4 +60,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.yml deleted file mode 100644 index 0441c4534b1..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.RULE b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.RULE index 77cd9f55997..05afae4e8fe 100644 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * @@ -54,4 +62,4 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.yml b/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.yml deleted file mode 100644 index 0441c4534b1..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_or_gpl-2.0_with_classpath-exception-2.0_and_apache-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (cddl-1.1 OR gpl-2.0 WITH classpath-exception-2.0) AND apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/cddl-1.1_url_1.RULE b/src/licensedcode/data/rules/cddl-1.1_url_1.RULE index c81f25aa415..0e44c1e1aef 100644 --- a/src/licensedcode/data/rules/cddl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cddl-1.1 +--- + https://spdx.org/licenses/cddl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_url_1.yml b/src/licensedcode/data/rules/cddl-1.1_url_1.yml deleted file mode 100644 index 0fa3f9fd3ab..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cddl-1.1 diff --git a/src/licensedcode/data/rules/cddl-1.1_url_2.RULE b/src/licensedcode/data/rules/cddl-1.1_url_2.RULE index b9f58943dc5..2d25b60c837 100644 --- a/src/licensedcode/data/rules/cddl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cddl-1.1.html +--- + https://spdx.org/licenses/cddl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.1_url_2.yml b/src/licensedcode/data/rules/cddl-1.1_url_2.yml deleted file mode 100644 index 62b9faf239b..00000000000 --- a/src/licensedcode/data/rules/cddl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cddl-1.1.html diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_1.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_1.RULE index c7ec7229314..ae77c421f33 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_1.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_notice: yes +relevance: 100 +--- + published under the Community Data License Agreement – Permissive – Version 1.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_1.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_1.yml deleted file mode 100644 index 5eb8690cad6..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_10.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_10.RULE index 9cc1b5a1dc0..3189376262c 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_10.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CDLA-Permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_10.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_10.yml deleted file mode 100644 index 73dfb7e50d9..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_11.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_11.RULE index 00d23599bae..f948ca42fc4 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_11.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CDLA-Permissive-1.0 +--- + https://licenses.nuget.org/CDLA-Permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_11.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_11.yml deleted file mode 100644 index 959d5338cb4..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CDLA-Permissive-1.0 diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_12.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_12.RULE index 82b655d8aa6..00b624e4100 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_12.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CDLA-Permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_12.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_12.yml deleted file mode 100644 index 2fcce16e296..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_13.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_13.RULE index e042b77acab..ff1171189e0 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_13.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDLA-Permissive-1.0 +--- + LICENSE {{CDLA-Permissive-1.0}} https://spdx.org/licenses/CDLA-Permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_13.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_13.yml deleted file mode 100644 index 64ce3cf538f..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDLA-Permissive-1.0 diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_14.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_14.RULE index c04713bd9e6..66abdb7afe9 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_14.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDLA-Permissive-1.0 +--- + {{CDLA-Permissive-1.0}} https://spdx.org/licenses/CDLA-Permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_14.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_14.yml deleted file mode 100644 index 64ce3cf538f..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDLA-Permissive-1.0 diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_2.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_2.RULE index b3e30d77615..2bf1f83561c 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_2.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_notice: yes +relevance: 100 +--- + License This data is published under the Community Data License Agreement – Permissive – Version 1.0 license, but we'd love a shout-out and generally to hear what you're diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_2.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_2.yml deleted file mode 100644 index 5eb8690cad6..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_3.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_3.RULE index 6a2c0c9c080..ed1566b8b79 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_3.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_notice: yes +relevance: 100 +--- + This data is published under the Community Data License Agreement – Permissive – Version 1.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_3.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_3.yml deleted file mode 100644 index 5eb8690cad6..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_4.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_4.RULE index 6f74dd79226..13537dbdcbe 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_4.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community Data License Agreement Permissive 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_4.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_4.yml deleted file mode 100644 index 3869a667345..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_5.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_5.RULE index 52524ce8f27..435325cb612 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_5.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Community Data License Agreement Permissive 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_5.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_5.yml deleted file mode 100644 index 3869a667345..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_6.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_6.RULE index 3da131d40e2..6b019489ed0 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_6.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CDLA-Permissive-1.0 Community Data License Agreement Permissive 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_6.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_6.yml deleted file mode 100644 index 3869a667345..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_7.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_7.RULE index 4c4016078e2..6cadd67fcec 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_7.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community Data License Agreement Permissive 1.0 CDLA-Permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_7.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_7.yml deleted file mode 100644 index 3869a667345..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_8.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_8.RULE index e57431c8d16..c235503b730 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_8.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CDLA-Permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_8.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_8.yml deleted file mode 100644 index 73dfb7e50d9..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_9.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_9.RULE index 22b6ba211a3..632e783d798 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_9.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Community Data License Agreement Permissive 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_9.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_9.yml deleted file mode 100644 index 73dfb7e50d9..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_url_1.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_url_1.RULE index 4ac3274502d..43d2b854334 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cdla-permissive-1.0 +--- + https://spdx.org/licenses/cdla-permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_url_1.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_url_1.yml deleted file mode 100644 index 810d98e5247..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cdla-permissive-1.0 diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_url_2.RULE b/src/licensedcode/data/rules/cdla-permissive-1.0_url_2.RULE index 900b767f3ba..f01d06f5de0 100644 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cdla-permissive-1.0.html +--- + https://spdx.org/licenses/cdla-permissive-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-1.0_url_2.yml b/src/licensedcode/data/rules/cdla-permissive-1.0_url_2.yml deleted file mode 100644 index 928e4cddf9d..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cdla-permissive-1.0.html diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_1.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_1.RULE index 7c80cc48449..0305ad73b89 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_1.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community Data License Agreement Permissive 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_1.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_1.yml deleted file mode 100644 index 182bc120559..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_10.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_10.RULE index d34578a4062..458b14ba28e 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_10.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDLA-Permissive-2.0 +--- + LICENSE {{CDLA-Permissive-2.0}} https://spdx.org/licenses/CDLA-Permissive-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_10.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_10.yml deleted file mode 100644 index 6c55637edf4..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDLA-Permissive-2.0 diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_11.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_11.RULE index 1c188960d65..e299053e7f6 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_11.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDLA-Permissive-2.0 +--- + {{CDLA-Permissive-2.0}} https://spdx.org/licenses/CDLA-Permissive-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_11.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_11.yml deleted file mode 100644 index 6c55637edf4..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDLA-Permissive-2.0 diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_2.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_2.RULE index ffbaf69281e..63826d95cc9 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_2.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Community Data License Agreement Permissive 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_2.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_2.yml deleted file mode 100644 index 182bc120559..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_3.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_3.RULE index d6dce852975..9b8df34f8bd 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_3.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CDLA-Permissive-2.0 Community Data License Agreement Permissive 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_3.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_3.yml deleted file mode 100644 index 182bc120559..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_4.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_4.RULE index d55a3c9450f..7cb98438389 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_4.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community Data License Agreement Permissive 2.0 CDLA-Permissive-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_4.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_4.yml deleted file mode 100644 index 182bc120559..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_5.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_5.RULE index d139acc73ca..e4747828e9c 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_5.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CDLA-Permissive-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_5.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_5.yml deleted file mode 100644 index 6d4193b42c5..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_6.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_6.RULE index c539b7ee995..8c19c906379 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_6.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Community Data License Agreement Permissive 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_6.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_6.yml deleted file mode 100644 index 6d4193b42c5..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_7.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_7.RULE index fe98a782f69..4f5f4519332 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_7.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CDLA-Permissive-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_7.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_7.yml deleted file mode 100644 index 6d4193b42c5..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_8.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_8.RULE index 56a3b8d9b9a..6de0092a718 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_8.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CDLA-Permissive-2.0 +--- + https://licenses.nuget.org/CDLA-Permissive-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_8.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_8.yml deleted file mode 100644 index 516b9c1bd45..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CDLA-Permissive-2.0 diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_9.RULE b/src/licensedcode/data/rules/cdla-permissive-2.0_9.RULE index d455d8b515f..27ffca509e8 100644 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_9.RULE +++ b/src/licensedcode/data/rules/cdla-permissive-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cdla-permissive-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CDLA-Permissive-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-permissive-2.0_9.yml b/src/licensedcode/data/rules/cdla-permissive-2.0_9.yml deleted file mode 100644 index a37164e7b0e..00000000000 --- a/src/licensedcode/data/rules/cdla-permissive-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cdla-permissive-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_1.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_1.RULE index 5d57ddd8cfd..fbedd939463 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_1.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community Data License Agreement Sharing 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_1.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_1.yml deleted file mode 100644 index e77e6c0bb9e..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_10.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_10.RULE index f19b78d9254..562540af1eb 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_10.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDLA-Sharing-1.0 +--- + {{CDLA-Sharing-1.0}} https://spdx.org/licenses/CDLA-Sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_10.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_10.yml deleted file mode 100644 index 8565802a43f..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDLA-Sharing-1.0 diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_11.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_11.RULE index a5e4bf40021..70a1ec7cb20 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_11.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CDLA-Sharing-1.0 +--- + LICENSE {{CDLA-Sharing-1.0}} https://spdx.org/licenses/CDLA-Sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_11.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_11.yml deleted file mode 100644 index 8565802a43f..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CDLA-Sharing-1.0 diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_2.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_2.RULE index 4fcd9b8f60b..9b4c498b3ea 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_2.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Community Data License Agreement Sharing 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_2.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_2.yml deleted file mode 100644 index e77e6c0bb9e..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_3.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_3.RULE index 394326eefb8..39840730b29 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_3.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CDLA-Sharing-1.0 Community Data License Agreement Sharing 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_3.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_3.yml deleted file mode 100644 index e77e6c0bb9e..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_4.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_4.RULE index 8a72c485e29..ea66d7de0da 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_4.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community Data License Agreement Sharing 1.0 CDLA-Sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_4.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_4.yml deleted file mode 100644 index e77e6c0bb9e..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_5.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_5.RULE index bd3a56c4106..c2c8452277f 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_5.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CDLA-Sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_5.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_5.yml deleted file mode 100644 index c33c7a436ce..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_6.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_6.RULE index bc96f19b384..237a7210418 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_6.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Community Data License Agreement Sharing 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_6.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_6.yml deleted file mode 100644 index c33c7a436ce..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_7.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_7.RULE index f3028e467ed..b0379ba1baa 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_7.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CDLA-Sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_7.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_7.yml deleted file mode 100644 index c33c7a436ce..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_8.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_8.RULE index 8ff8f7f0c5f..444a8f41581 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_8.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CDLA-Sharing-1.0 +--- + https://licenses.nuget.org/CDLA-Sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_8.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_8.yml deleted file mode 100644 index 2f121c94610..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CDLA-Sharing-1.0 diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_9.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_9.RULE index ff933275004..b1041446536 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_9.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CDLA-Sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_9.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_9.yml deleted file mode 100644 index 7c50edbb6d7..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_url_1.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_url_1.RULE index 6a069797d32..09bb410c50a 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cdla-sharing-1.0 +--- + https://spdx.org/licenses/cdla-sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_url_1.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_url_1.yml deleted file mode 100644 index 8e3e1978bc1..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cdla-sharing-1.0 diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_url_2.RULE b/src/licensedcode/data/rules/cdla-sharing-1.0_url_2.RULE index 978e0cbdb87..42aa6e91d95 100644 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cdla-sharing-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cdla-sharing-1.0.html +--- + https://spdx.org/licenses/cdla-sharing-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cdla-sharing-1.0_url_2.yml b/src/licensedcode/data/rules/cdla-sharing-1.0_url_2.yml deleted file mode 100644 index 4f06c7baa1a..00000000000 --- a/src/licensedcode/data/rules/cdla-sharing-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cdla-sharing-1.0.html diff --git a/src/licensedcode/data/rules/cecill-1.0.RULE b/src/licensedcode/data/rules/cecill-1.0.RULE index 71c62fa5f8e..4cf34cc06d1 100644 --- a/src/licensedcode/data/rules/cecill-1.0.RULE +++ b/src/licensedcode/data/rules/cecill-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html +--- + http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0.yml b/src/licensedcode/data/rules/cecill-1.0.yml deleted file mode 100644 index 93e460dd1de..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html diff --git a/src/licensedcode/data/rules/cecill-1.0_1.RULE b/src/licensedcode/data/rules/cecill-1.0_1.RULE index 3e65b1de2b5..f4b74042aaa 100644 --- a/src/licensedcode/data/rules/cecill-1.0_1.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_1.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +--- + CECILL-1.0 CeCILL Free Software License Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_1.yml b/src/licensedcode/data/rules/cecill-1.0_1.yml deleted file mode 100644 index 0cd1e79d307..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-1.0_10.RULE b/src/licensedcode/data/rules/cecill-1.0_10.RULE index 9c94d40325c..44dc4403180 100644 --- a/src/licensedcode/data/rules/cecill-1.0_10.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-1.0 +--- + {{CECILL-1.0}} https://spdx.org/licenses/CECILL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_10.yml b/src/licensedcode/data/rules/cecill-1.0_10.yml deleted file mode 100644 index 9b6e3859bc0..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-1.0 diff --git a/src/licensedcode/data/rules/cecill-1.0_11.RULE b/src/licensedcode/data/rules/cecill-1.0_11.RULE index 79e322d8beb..e8ebbcceb01 100644 --- a/src/licensedcode/data/rules/cecill-1.0_11.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-1.0 +--- + LICENSE {{CECILL-1.0}} https://spdx.org/licenses/CECILL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_11.yml b/src/licensedcode/data/rules/cecill-1.0_11.yml deleted file mode 100644 index 9b6e3859bc0..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-1.0 diff --git a/src/licensedcode/data/rules/cecill-1.0_2.RULE b/src/licensedcode/data/rules/cecill-1.0_2.RULE index 2e22258ec03..b0e442f84a8 100644 --- a/src/licensedcode/data/rules/cecill-1.0_2.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_2.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +--- + CeCILL Free Software License Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_2.yml b/src/licensedcode/data/rules/cecill-1.0_2.yml deleted file mode 100644 index 0cd1e79d307..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-1.0_3.RULE b/src/licensedcode/data/rules/cecill-1.0_3.RULE index 55bbe855451..0a529b63e3f 100644 --- a/src/licensedcode/data/rules/cecill-1.0_3.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CeCILL Free Software License Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_3.yml b/src/licensedcode/data/rules/cecill-1.0_3.yml deleted file mode 100644 index 8ffc8d6cd6f..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.0_4.RULE b/src/licensedcode/data/rules/cecill-1.0_4.RULE index b888c3eabb6..385bcea9955 100644 --- a/src/licensedcode/data/rules/cecill-1.0_4.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CeCILL Free Software License Agreement v1.0 CECILL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_4.yml b/src/licensedcode/data/rules/cecill-1.0_4.yml deleted file mode 100644 index 8ffc8d6cd6f..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.0_5.RULE b/src/licensedcode/data/rules/cecill-1.0_5.RULE index 4d6d9314f2e..2f6e764de52 100644 --- a/src/licensedcode/data/rules/cecill-1.0_5.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CECILL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_5.yml b/src/licensedcode/data/rules/cecill-1.0_5.yml deleted file mode 100644 index 7b495663d3f..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.0_6.RULE b/src/licensedcode/data/rules/cecill-1.0_6.RULE index a5b705bf88a..a09e1c0bc97 100644 --- a/src/licensedcode/data/rules/cecill-1.0_6.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CeCILL Free Software License Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_6.yml b/src/licensedcode/data/rules/cecill-1.0_6.yml deleted file mode 100644 index 7b495663d3f..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.0_7.RULE b/src/licensedcode/data/rules/cecill-1.0_7.RULE index 600e42e2556..2d8eaaf203b 100644 --- a/src/licensedcode/data/rules/cecill-1.0_7.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CECILL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_7.yml b/src/licensedcode/data/rules/cecill-1.0_7.yml deleted file mode 100644 index 7b495663d3f..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.0_8.RULE b/src/licensedcode/data/rules/cecill-1.0_8.RULE index dfd7ad34e9b..a5513f3afc4 100644 --- a/src/licensedcode/data/rules/cecill-1.0_8.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CECILL-1.0 +--- + https://licenses.nuget.org/CECILL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_8.yml b/src/licensedcode/data/rules/cecill-1.0_8.yml deleted file mode 100644 index dbcc017483f..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CECILL-1.0 diff --git a/src/licensedcode/data/rules/cecill-1.0_9.RULE b/src/licensedcode/data/rules/cecill-1.0_9.RULE index 2902874d3f7..d890a254638 100644 --- a/src/licensedcode/data/rules/cecill-1.0_9.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CECILL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_9.yml b/src/licensedcode/data/rules/cecill-1.0_9.yml deleted file mode 100644 index 3ec5d6f76c2..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-1.0_en2.RULE b/src/licensedcode/data/rules/cecill-1.0_en2.RULE index bc31b720903..2ddafe39989 100644 --- a/src/licensedcode/data/rules/cecill-1.0_en2.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_en2.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 95 +--- + license CeCILL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_en2.yml b/src/licensedcode/data/rules/cecill-1.0_en2.yml deleted file mode 100644 index b6452485b0c..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_en2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/cecill-1.0_en3.RULE b/src/licensedcode/data/rules/cecill-1.0_en3.RULE index 9eea22e8ea6..9bca2b0df7f 100644 --- a/src/licensedcode/data/rules/cecill-1.0_en3.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_en3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 95 +--- + FREE SOFTWARE LICENSING AGREEMENT CeCILL Notice @@ -236,4 +242,4 @@ Licensee(s): mean(s) the Software user(s) having accepted the Agreement. 1 Ce: CEA, C: CNRS, I: INRIA, LL: Logiciel Libre - Version 1 of 06/21/2004 + Version 1 of 06/21/2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_en3.yml b/src/licensedcode/data/rules/cecill-1.0_en3.yml deleted file mode 100644 index b6452485b0c..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_en3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/cecill-1.0_url_1.RULE b/src/licensedcode/data/rules/cecill-1.0_url_1.RULE index 4381a21c85e..45f0ace0cd8 100644 --- a/src/licensedcode/data/rules/cecill-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-1.0 +--- + https://spdx.org/licenses/cecill-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_url_1.yml b/src/licensedcode/data/rules/cecill-1.0_url_1.yml deleted file mode 100644 index 0346648510a..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-1.0 diff --git a/src/licensedcode/data/rules/cecill-1.0_url_2.RULE b/src/licensedcode/data/rules/cecill-1.0_url_2.RULE index 68f360f9c3b..b86dc1a800a 100644 --- a/src/licensedcode/data/rules/cecill-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cecill-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-1.0.html +--- + https://spdx.org/licenses/cecill-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.0_url_2.yml b/src/licensedcode/data/rules/cecill-1.0_url_2.yml deleted file mode 100644 index 25e4cf9233e..00000000000 --- a/src/licensedcode/data/rules/cecill-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-1.0.html diff --git a/src/licensedcode/data/rules/cecill-1.1_1.RULE b/src/licensedcode/data/rules/cecill-1.1_1.RULE index c8e2fa2db61..6b0b875efc9 100644 --- a/src/licensedcode/data/rules/cecill-1.1_1.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +--- + CeCILL Free Software License Agreement v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_1.yml b/src/licensedcode/data/rules/cecill-1.1_1.yml deleted file mode 100644 index 021f0ef88fc..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-1.1_10.RULE b/src/licensedcode/data/rules/cecill-1.1_10.RULE index 74eb0a52a1e..e0801dcf6a8 100644 --- a/src/licensedcode/data/rules/cecill-1.1_10.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CECILL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_10.yml b/src/licensedcode/data/rules/cecill-1.1_10.yml deleted file mode 100644 index 7b493cde331..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.1_11.RULE b/src/licensedcode/data/rules/cecill-1.1_11.RULE index 81470f193cf..cfb1fa9aea6 100644 --- a/src/licensedcode/data/rules/cecill-1.1_11.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CECILL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_11.yml b/src/licensedcode/data/rules/cecill-1.1_11.yml deleted file mode 100644 index 021f0ef88fc..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-1.1_12.RULE b/src/licensedcode/data/rules/cecill-1.1_12.RULE index db9db0ccc16..ddf7b29bc1a 100644 --- a/src/licensedcode/data/rules/cecill-1.1_12.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-1.1 +--- + {{CECILL-1.1}} https://spdx.org/licenses/CECILL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_12.yml b/src/licensedcode/data/rules/cecill-1.1_12.yml deleted file mode 100644 index e9367709a98..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-1.1 diff --git a/src/licensedcode/data/rules/cecill-1.1_13.RULE b/src/licensedcode/data/rules/cecill-1.1_13.RULE index 083a8136629..84dbdd6eacb 100644 --- a/src/licensedcode/data/rules/cecill-1.1_13.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-1.1 +--- + LICENSE {{CECILL-1.1}} https://spdx.org/licenses/CECILL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_13.yml b/src/licensedcode/data/rules/cecill-1.1_13.yml deleted file mode 100644 index e9367709a98..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-1.1 diff --git a/src/licensedcode/data/rules/cecill-1.1_2.RULE b/src/licensedcode/data/rules/cecill-1.1_2.RULE index ec524514a72..c466afa1a13 100644 --- a/src/licensedcode/data/rules/cecill-1.1_2.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CECILL-1.1 +--- + https://licenses.nuget.org/CECILL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_2.yml b/src/licensedcode/data/rules/cecill-1.1_2.yml deleted file mode 100644 index 0b26cb07d22..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CECILL-1.1 diff --git a/src/licensedcode/data/rules/cecill-1.1_3.RULE b/src/licensedcode/data/rules/cecill-1.1_3.RULE index 94421b42238..eb7648b8dcb 100644 --- a/src/licensedcode/data/rules/cecill-1.1_3.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_3.RULE @@ -1 +1,9 @@ -http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt +--- + +http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_3.yml b/src/licensedcode/data/rules/cecill-1.1_3.yml deleted file mode 100644 index 9c5d34f4d5b..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.txt diff --git a/src/licensedcode/data/rules/cecill-1.1_4.RULE b/src/licensedcode/data/rules/cecill-1.1_4.RULE index 037715bbc61..389e48b6b2c 100644 --- a/src/licensedcode/data/rules/cecill-1.1_4.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html +--- + http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_4.yml b/src/licensedcode/data/rules/cecill-1.1_4.yml deleted file mode 100644 index 8aa86f2543e..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html diff --git a/src/licensedcode/data/rules/cecill-1.1_5.RULE b/src/licensedcode/data/rules/cecill-1.1_5.RULE index 85047aae971..512f8ba3812 100644 --- a/src/licensedcode/data/rules/cecill-1.1_5.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_5.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +--- + CECILL-1.1 CeCILL Free Software License Agreement v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_5.yml b/src/licensedcode/data/rules/cecill-1.1_5.yml deleted file mode 100644 index 0f13104e9f7..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-1.1_6.RULE b/src/licensedcode/data/rules/cecill-1.1_6.RULE index c5b2ecbe3e5..c3a174c167d 100644 --- a/src/licensedcode/data/rules/cecill-1.1_6.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CeCILL Free Software License Agreement v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_6.yml b/src/licensedcode/data/rules/cecill-1.1_6.yml deleted file mode 100644 index f350d739987..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.1_7.RULE b/src/licensedcode/data/rules/cecill-1.1_7.RULE index f377f1e53e3..6f10a913d73 100644 --- a/src/licensedcode/data/rules/cecill-1.1_7.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CeCILL Free Software License Agreement v1.1 CECILL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_7.yml b/src/licensedcode/data/rules/cecill-1.1_7.yml deleted file mode 100644 index f350d739987..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.1_8.RULE b/src/licensedcode/data/rules/cecill-1.1_8.RULE index 6538f188d11..a9c88a6a3a5 100644 --- a/src/licensedcode/data/rules/cecill-1.1_8.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CECILL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_8.yml b/src/licensedcode/data/rules/cecill-1.1_8.yml deleted file mode 100644 index 7b493cde331..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.1_9.RULE b/src/licensedcode/data/rules/cecill-1.1_9.RULE index 88e6fe9e42a..68f09070745 100644 --- a/src/licensedcode/data/rules/cecill-1.1_9.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CeCILL Free Software License Agreement v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_9.yml b/src/licensedcode/data/rules/cecill-1.1_9.yml deleted file mode 100644 index 7b493cde331..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-1.1_url_1.RULE b/src/licensedcode/data/rules/cecill-1.1_url_1.RULE index a968bfc3ec2..7bd28c7df25 100644 --- a/src/licensedcode/data/rules/cecill-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-1.1 +--- + https://spdx.org/licenses/cecill-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_url_1.yml b/src/licensedcode/data/rules/cecill-1.1_url_1.yml deleted file mode 100644 index 271de349151..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-1.1 diff --git a/src/licensedcode/data/rules/cecill-1.1_url_2.RULE b/src/licensedcode/data/rules/cecill-1.1_url_2.RULE index 72a48c1ac04..0c7b98367ed 100644 --- a/src/licensedcode/data/rules/cecill-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/cecill-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-1.1.html +--- + https://spdx.org/licenses/cecill-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-1.1_url_2.yml b/src/licensedcode/data/rules/cecill-1.1_url_2.yml deleted file mode 100644 index 3a795156f64..00000000000 --- a/src/licensedcode/data/rules/cecill-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-1.1.html diff --git a/src/licensedcode/data/rules/cecill-2.0-fr_5.RULE b/src/licensedcode/data/rules/cecill-2.0-fr_5.RULE index 042c2b1d5e1..ca1f9420e1a 100644 --- a/src/licensedcode/data/rules/cecill-2.0-fr_5.RULE +++ b/src/licensedcode/data/rules/cecill-2.0-fr_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt +--- + http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0-fr_5.yml b/src/licensedcode/data/rules/cecill-2.0-fr_5.yml deleted file mode 100644 index 50ea8d0547c..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0-fr_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt diff --git a/src/licensedcode/data/rules/cecill-2.0-fr_SPDX.RULE b/src/licensedcode/data/rules/cecill-2.0-fr_SPDX.RULE index 93650d3bf18..db999de7fe5 100644 --- a/src/licensedcode/data/rules/cecill-2.0-fr_SPDX.RULE +++ b/src/licensedcode/data/rules/cecill-2.0-fr_SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_text: yes +minimum_coverage: 30 +notes: license text as published by SPDX, full of mojibake +--- + CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL Avertissement diff --git a/src/licensedcode/data/rules/cecill-2.0-fr_SPDX.yml b/src/licensedcode/data/rules/cecill-2.0-fr_SPDX.yml deleted file mode 100644 index 6d3be0ab7b9..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0-fr_SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cecill-2.0 -is_license_text: yes -minimum_coverage: 30 -notes: license text as published by SPDX, full of mojibake diff --git a/src/licensedcode/data/rules/cecill-2.0.RULE b/src/licensedcode/data/rules/cecill-2.0.RULE index f5228b8c192..c1843c9d421 100644 --- a/src/licensedcode/data/rules/cecill-2.0.RULE +++ b/src/licensedcode/data/rules/cecill-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html +--- + http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0.yml b/src/licensedcode/data/rules/cecill-2.0.yml deleted file mode 100644 index eb17398a7c2..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2-fr.html diff --git a/src/licensedcode/data/rules/cecill-2.0_1.RULE b/src/licensedcode/data/rules/cecill-2.0_1.RULE index 1b5b51a80bc..b7edf40a996 100644 --- a/src/licensedcode/data/rules/cecill-2.0_1.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences.en.html +--- + http://www.cecill.info/licences.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_1.yml b/src/licensedcode/data/rules/cecill-2.0_1.yml deleted file mode 100644 index dc5135009f3..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences.en.html diff --git a/src/licensedcode/data/rules/cecill-2.0_10.RULE b/src/licensedcode/data/rules/cecill-2.0_10.RULE index fc95bace00d..fa9c05c1dda 100644 --- a/src/licensedcode/data/rules/cecill-2.0_10.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CeCILL Free Software License Agreement v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_10.yml b/src/licensedcode/data/rules/cecill-2.0_10.yml deleted file mode 100644 index 3280732e5b9..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.0_11.RULE b/src/licensedcode/data/rules/cecill-2.0_11.RULE index 77409e672b5..552088d314f 100644 --- a/src/licensedcode/data/rules/cecill-2.0_11.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CeCILL Free Software License Agreement v2.0 CECILL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_11.yml b/src/licensedcode/data/rules/cecill-2.0_11.yml deleted file mode 100644 index 3280732e5b9..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.0_12.RULE b/src/licensedcode/data/rules/cecill-2.0_12.RULE index e9ecd0c3558..7ac82f7c153 100644 --- a/src/licensedcode/data/rules/cecill-2.0_12.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CECILL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_12.yml b/src/licensedcode/data/rules/cecill-2.0_12.yml deleted file mode 100644 index 5a26f7a0933..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.0_13.RULE b/src/licensedcode/data/rules/cecill-2.0_13.RULE index 6efe50f940a..a82fe5b4f48 100644 --- a/src/licensedcode/data/rules/cecill-2.0_13.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CeCILL Free Software License Agreement v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_13.yml b/src/licensedcode/data/rules/cecill-2.0_13.yml deleted file mode 100644 index 5a26f7a0933..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.0_14.RULE b/src/licensedcode/data/rules/cecill-2.0_14.RULE index 54cd82d04e6..17d4e9c63d2 100644 --- a/src/licensedcode/data/rules/cecill-2.0_14.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CECILL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_14.yml b/src/licensedcode/data/rules/cecill-2.0_14.yml deleted file mode 100644 index 5a26f7a0933..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.0_15.RULE b/src/licensedcode/data/rules/cecill-2.0_15.RULE index 506dbf48b0c..8fccfd5cb2c 100644 --- a/src/licensedcode/data/rules/cecill-2.0_15.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CECILL-2.0 +--- + https://licenses.nuget.org/CECILL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_15.yml b/src/licensedcode/data/rules/cecill-2.0_15.yml deleted file mode 100644 index e8e7f75323d..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CECILL-2.0 diff --git a/src/licensedcode/data/rules/cecill-2.0_16.RULE b/src/licensedcode/data/rules/cecill-2.0_16.RULE index 41cc1fef28f..802c96a431b 100644 --- a/src/licensedcode/data/rules/cecill-2.0_16.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CECILL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_16.yml b/src/licensedcode/data/rules/cecill-2.0_16.yml deleted file mode 100644 index e82d17f5d71..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-2.0_17.RULE b/src/licensedcode/data/rules/cecill-2.0_17.RULE index fb4e7a2a837..61b59fd72ca 100644 --- a/src/licensedcode/data/rules/cecill-2.0_17.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-2.0 +--- + {{CECILL-2.0}} https://spdx.org/licenses/CECILL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_17.yml b/src/licensedcode/data/rules/cecill-2.0_17.yml deleted file mode 100644 index 723f70d568c..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-2.0 diff --git a/src/licensedcode/data/rules/cecill-2.0_18.RULE b/src/licensedcode/data/rules/cecill-2.0_18.RULE index 9be79af6fba..5ac45ae4027 100644 --- a/src/licensedcode/data/rules/cecill-2.0_18.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-2.0 +--- + LICENSE {{CECILL-2.0}} https://spdx.org/licenses/CECILL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_18.yml b/src/licensedcode/data/rules/cecill-2.0_18.yml deleted file mode 100644 index 723f70d568c..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-2.0 diff --git a/src/licensedcode/data/rules/cecill-2.0_2.RULE b/src/licensedcode/data/rules/cecill-2.0_2.RULE index 5a90c48630c..63f9edad5d0 100644 --- a/src/licensedcode/data/rules/cecill-2.0_2.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_2.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +--- + CECILL-2.0 CeCILL Free Software License Agreement v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_2.yml b/src/licensedcode/data/rules/cecill-2.0_2.yml deleted file mode 100644 index ce3c14c77ca..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-2.0_3.RULE b/src/licensedcode/data/rules/cecill-2.0_3.RULE index 2a3ee7a9a0d..0b619024eb3 100644 --- a/src/licensedcode/data/rules/cecill-2.0_3.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +--- + CeCILL Free Software License Agreement v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_3.yml b/src/licensedcode/data/rules/cecill-2.0_3.yml deleted file mode 100644 index e82d17f5d71..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-2.0_4.RULE b/src/licensedcode/data/rules/cecill-2.0_4.RULE index 021d70f528e..93cb5946532 100644 --- a/src/licensedcode/data/rules/cecill-2.0_4.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_4.RULE @@ -1 +1,9 @@ -http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +--- + +http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_4.yml b/src/licensedcode/data/rules/cecill-2.0_4.yml deleted file mode 100644 index ad424b5074a..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt diff --git a/src/licensedcode/data/rules/cecill-2.0_5.RULE b/src/licensedcode/data/rules/cecill-2.0_5.RULE index 21880a84daa..b58c1393e10 100644 --- a/src/licensedcode/data/rules/cecill-2.0_5.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.cecill.info/ +--- + * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, * modify and/ or redistribute the software under the terms of the CeCILL @@ -22,4 +29,4 @@ * same conditions as regards security. * * The fact that you are presently reading this means that you have had - * knowledge of the CeCILL license and that you accept its terms. + * knowledge of the CeCILL license and that you accept its terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_5.yml b/src/licensedcode/data/rules/cecill-2.0_5.yml deleted file mode 100644 index a22b8caab31..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cecill-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.cecill.info/ diff --git a/src/licensedcode/data/rules/cecill-2.0_6.RULE b/src/licensedcode/data/rules/cecill-2.0_6.RULE index 367ef49562b..14e376a85e0 100644 --- a/src/licensedcode/data/rules/cecill-2.0_6.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cecill-2.0 +is_license_notice: yes +relevance: 100 +--- + sourcecode is licenced under the * CeCILL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_6.yml b/src/licensedcode/data/rules/cecill-2.0_6.yml deleted file mode 100644 index d899bcf71b5..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-2.0_7.RULE b/src/licensedcode/data/rules/cecill-2.0_7.RULE index 8364880ce4f..4d946daf1fb 100644 --- a/src/licensedcode/data/rules/cecill-2.0_7.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cecill-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/index.en.html +--- + is released under the terms of the * CeCILL license version 2 (http://www.cecill.info/index.en.html). - * + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_7.yml b/src/licensedcode/data/rules/cecill-2.0_7.yml deleted file mode 100644 index 8004924d21d..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/index.en.html diff --git a/src/licensedcode/data/rules/cecill-2.0_8.RULE b/src/licensedcode/data/rules/cecill-2.0_8.RULE index e3047949bbb..1a4ff30cb9b 100644 --- a/src/licensedcode/data/rules/cecill-2.0_8.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cecill-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Licence_CeCILL_V2-en.txt +ignorable_urls: + - http://www.cecill.info/index.en.html +--- + is released under the terms of the * CeCILL license version 2 (http://www.cecill.info/index.en.html). * diff --git a/src/licensedcode/data/rules/cecill-2.0_8.yml b/src/licensedcode/data/rules/cecill-2.0_8.yml deleted file mode 100644 index 7e144b49633..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cecill-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - Licence_CeCILL_V2-en.txt -ignorable_urls: - - http://www.cecill.info/index.en.html diff --git a/src/licensedcode/data/rules/cecill-2.0_9.RULE b/src/licensedcode/data/rules/cecill-2.0_9.RULE index 7e65b8b1af9..0ba2054308b 100644 --- a/src/licensedcode/data/rules/cecill-2.0_9.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/ +--- + http://www.cecill.info \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_9.yml b/src/licensedcode/data/rules/cecill-2.0_9.yml deleted file mode 100644 index 475c501bf99..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/ diff --git a/src/licensedcode/data/rules/cecill-2.0_or_cecill-c_1.RULE b/src/licensedcode/data/rules/cecill-2.0_or_cecill-c_1.RULE index 6c4a5526960..529fa50786e 100644 --- a/src/licensedcode/data/rules/cecill-2.0_or_cecill-c_1.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_or_cecill-c_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cecill-2.0 OR cecill-c +is_license_notice: yes +ignorable_urls: + - http://www.cecill.info/ + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html + - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html +--- + # Licenses : This file is "dual-licensed", you have to choose one # of the two licenses below to apply on this file. # @@ -33,4 +42,4 @@ # same conditions as regards security. # # The fact that you are presently reading this means that you have had - # knowledge of the CeCILL and CeCILL-C licenses and that you accept its terms. + # knowledge of the CeCILL and CeCILL-C licenses and that you accept its terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_or_cecill-c_1.yml b/src/licensedcode/data/rules/cecill-2.0_or_cecill-c_1.yml deleted file mode 100644 index 461b1b532c5..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_or_cecill-c_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.0 OR cecill-c -is_license_notice: yes -ignorable_urls: - - http://www.cecill.info/ - - http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html - - http://www.cecill.info/licences/Licence_CeCILL_V2-en.html diff --git a/src/licensedcode/data/rules/cecill-2.0_url_1.RULE b/src/licensedcode/data/rules/cecill-2.0_url_1.RULE index 8f21ad53537..f14410c0f09 100644 --- a/src/licensedcode/data/rules/cecill-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-2.0 +--- + https://spdx.org/licenses/cecill-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_url_1.yml b/src/licensedcode/data/rules/cecill-2.0_url_1.yml deleted file mode 100644 index 2e30c7bdab5..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-2.0 diff --git a/src/licensedcode/data/rules/cecill-2.0_url_2.RULE b/src/licensedcode/data/rules/cecill-2.0_url_2.RULE index 0f475a132ad..007af838a37 100644 --- a/src/licensedcode/data/rules/cecill-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/cecill-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-2.0.html +--- + https://spdx.org/licenses/cecill-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.0_url_2.yml b/src/licensedcode/data/rules/cecill-2.0_url_2.yml deleted file mode 100644 index ee5a8b46b2a..00000000000 --- a/src/licensedcode/data/rules/cecill-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-2.0.html diff --git a/src/licensedcode/data/rules/cecill-2.1_1.RULE b/src/licensedcode/data/rules/cecill-2.1_1.RULE index 9a9624a7a04..75959eed36a 100644 --- a/src/licensedcode/data/rules/cecill-2.1_1.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_1.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +--- + CeCILL Free Software License Agreement v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_1.yml b/src/licensedcode/data/rules/cecill-2.1_1.yml deleted file mode 100644 index 57cb1ee5957..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-2.1_10.RULE b/src/licensedcode/data/rules/cecill-2.1_10.RULE index bec3b341bcb..a8a6dc06393 100644 --- a/src/licensedcode/data/rules/cecill-2.1_10.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CECILL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_10.yml b/src/licensedcode/data/rules/cecill-2.1_10.yml deleted file mode 100644 index 07e7fa6bd2a..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-2.1_11.RULE b/src/licensedcode/data/rules/cecill-2.1_11.RULE index 7a5eb7f2f4d..a512f6322ad 100644 --- a/src/licensedcode/data/rules/cecill-2.1_11.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-2.1 +--- + LICENSE {{CECILL-2.1}} https://spdx.org/licenses/CECILL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_11.yml b/src/licensedcode/data/rules/cecill-2.1_11.yml deleted file mode 100644 index deba922253c..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-2.1 diff --git a/src/licensedcode/data/rules/cecill-2.1_12.RULE b/src/licensedcode/data/rules/cecill-2.1_12.RULE index dedaaed6e8d..ce5e7d7aaae 100644 --- a/src/licensedcode/data/rules/cecill-2.1_12.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-2.1 +--- + {{CECILL-2.1}} https://spdx.org/licenses/CECILL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_12.yml b/src/licensedcode/data/rules/cecill-2.1_12.yml deleted file mode 100644 index deba922253c..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-2.1 diff --git a/src/licensedcode/data/rules/cecill-2.1_2.RULE b/src/licensedcode/data/rules/cecill-2.1_2.RULE index 3c1fc48b91f..bae45a9654d 100644 --- a/src/licensedcode/data/rules/cecill-2.1_2.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_2.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +--- + CECILL-2.1 CeCILL Free Software License Agreement v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_2.yml b/src/licensedcode/data/rules/cecill-2.1_2.yml deleted file mode 100644 index 57cb1ee5957..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-2.1_3.RULE b/src/licensedcode/data/rules/cecill-2.1_3.RULE index 5dca00e206f..7c3a47ec4da 100644 --- a/src/licensedcode/data/rules/cecill-2.1_3.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CeCILL Free Software License Agreement v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_3.yml b/src/licensedcode/data/rules/cecill-2.1_3.yml deleted file mode 100644 index d54b1c236fc..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.1_4.RULE b/src/licensedcode/data/rules/cecill-2.1_4.RULE index b3ed57f29e5..8af46025ded 100644 --- a/src/licensedcode/data/rules/cecill-2.1_4.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CeCILL Free Software License Agreement v2.1 CECILL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_4.yml b/src/licensedcode/data/rules/cecill-2.1_4.yml deleted file mode 100644 index d54b1c236fc..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.1_5.RULE b/src/licensedcode/data/rules/cecill-2.1_5.RULE index e3c5ad6ac2b..68b0dac97e8 100644 --- a/src/licensedcode/data/rules/cecill-2.1_5.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CECILL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_5.yml b/src/licensedcode/data/rules/cecill-2.1_5.yml deleted file mode 100644 index c01f7d9a38f..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.1_6.RULE b/src/licensedcode/data/rules/cecill-2.1_6.RULE index 6909b29bbf1..0183d86fe54 100644 --- a/src/licensedcode/data/rules/cecill-2.1_6.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CeCILL Free Software License Agreement v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_6.yml b/src/licensedcode/data/rules/cecill-2.1_6.yml deleted file mode 100644 index c01f7d9a38f..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.1_7.RULE b/src/licensedcode/data/rules/cecill-2.1_7.RULE index d6b597f1ba0..ee4b827cc60 100644 --- a/src/licensedcode/data/rules/cecill-2.1_7.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CECILL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_7.yml b/src/licensedcode/data/rules/cecill-2.1_7.yml deleted file mode 100644 index c01f7d9a38f..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-2.1_8.RULE b/src/licensedcode/data/rules/cecill-2.1_8.RULE index f6c946a632b..72e1ae33135 100644 --- a/src/licensedcode/data/rules/cecill-2.1_8.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +relevance: 90 +--- + wikipedia.org/wiki/CeCILL \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_8.yml b/src/licensedcode/data/rules/cecill-2.1_8.yml deleted file mode 100644 index 51556510a5d..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cecill-2.1_9.RULE b/src/licensedcode/data/rules/cecill-2.1_9.RULE index ac221c13ddc..b2a44f2e087 100644 --- a/src/licensedcode/data/rules/cecill-2.1_9.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_9.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CECILL-2.1 +--- + https://licenses.nuget.org/CECILL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_9.yml b/src/licensedcode/data/rules/cecill-2.1_9.yml deleted file mode 100644 index 603bff3fbc2..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CECILL-2.1 diff --git a/src/licensedcode/data/rules/cecill-2.1_en.RULE b/src/licensedcode/data/rules/cecill-2.1_en.RULE index a053d7ae585..15f2c260eb2 100644 --- a/src/licensedcode/data/rules/cecill-2.1_en.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_en.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cecill-2.1 +is_license_text: yes +ignorable_urls: + - http://www.cecill.info/index.en.html +--- + Cea Cnrs Inria Logiciel Libre License, version 2.1 (CECILL-2.1) [OSI Approved License] This license is also available in French from the CeCILL website. diff --git a/src/licensedcode/data/rules/cecill-2.1_en.yml b/src/licensedcode/data/rules/cecill-2.1_en.yml deleted file mode 100644 index 06297426f74..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_en.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cecill-2.1 -is_license_text: yes -ignorable_urls: - - http://www.cecill.info/index.en.html diff --git a/src/licensedcode/data/rules/cecill-2.1_fr_2.RULE b/src/licensedcode/data/rules/cecill-2.1_fr_2.RULE index b1c001656c5..404abe52656 100644 --- a/src/licensedcode/data/rules/cecill-2.1_fr_2.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_fr_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cecill-2.1 +is_license_text: yes +minimum_coverage: 10 +ignorable_urls: + - http://www.cecill.info/index.fr.html +--- + CONTRAT DE LICENCE DE LOGICIEL LIBRE CeCILL Version 2.1 du 2013-06-21 diff --git a/src/licensedcode/data/rules/cecill-2.1_fr_2.yml b/src/licensedcode/data/rules/cecill-2.1_fr_2.yml deleted file mode 100644 index f065c6eb433..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_fr_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.1 -is_license_text: yes -minimum_coverage: 10 -ignorable_urls: - - http://www.cecill.info/index.fr.html diff --git a/src/licensedcode/data/rules/cecill-2.1_url_1.RULE b/src/licensedcode/data/rules/cecill-2.1_url_1.RULE index 925762154c4..2009f359800 100644 --- a/src/licensedcode/data/rules/cecill-2.1_url_1.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-2.1 +--- + https://spdx.org/licenses/cecill-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_url_1.yml b/src/licensedcode/data/rules/cecill-2.1_url_1.yml deleted file mode 100644 index 2a123461e99..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-2.1 diff --git a/src/licensedcode/data/rules/cecill-2.1_url_2.RULE b/src/licensedcode/data/rules/cecill-2.1_url_2.RULE index 874520b4b37..7566b51e336 100644 --- a/src/licensedcode/data/rules/cecill-2.1_url_2.RULE +++ b/src/licensedcode/data/rules/cecill-2.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-2.1.html +--- + https://spdx.org/licenses/cecill-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-2.1_url_2.yml b/src/licensedcode/data/rules/cecill-2.1_url_2.yml deleted file mode 100644 index 58b8477ded3..00000000000 --- a/src/licensedcode/data/rules/cecill-2.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-2.1.html diff --git a/src/licensedcode/data/rules/cecill-b-fr.RULE b/src/licensedcode/data/rules/cecill-b-fr.RULE index bdbf7133a40..e05eae4ed75 100644 --- a/src/licensedcode/data/rules/cecill-b-fr.RULE +++ b/src/licensedcode/data/rules/cecill-b-fr.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html +--- + http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b-fr.yml b/src/licensedcode/data/rules/cecill-b-fr.yml deleted file mode 100644 index d8fadd56652..00000000000 --- a/src/licensedcode/data/rules/cecill-b-fr.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html diff --git a/src/licensedcode/data/rules/cecill-b_1.RULE b/src/licensedcode/data/rules/cecill-b_1.RULE index 4c13b878a4c..7ba1cb14523 100644 --- a/src/licensedcode/data/rules/cecill-b_1.RULE +++ b/src/licensedcode/data/rules/cecill-b_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 100 +--- + CeCILL-B Free Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_1.yml b/src/licensedcode/data/rules/cecill-b_1.yml deleted file mode 100644 index 9aef511b3b0..00000000000 --- a/src/licensedcode/data/rules/cecill-b_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-b_10.RULE b/src/licensedcode/data/rules/cecill-b_10.RULE index b11801a7396..66b98b81769 100644 --- a/src/licensedcode/data/rules/cecill-b_10.RULE +++ b/src/licensedcode/data/rules/cecill-b_10.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-b +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CECILL-B \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_10.yml b/src/licensedcode/data/rules/cecill-b_10.yml deleted file mode 100644 index 37d8173dd3b..00000000000 --- a/src/licensedcode/data/rules/cecill-b_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-b -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-b_11.RULE b/src/licensedcode/data/rules/cecill-b_11.RULE index 1a57dc20c07..69afb5fda86 100644 --- a/src/licensedcode/data/rules/cecill-b_11.RULE +++ b/src/licensedcode/data/rules/cecill-b_11.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-b +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CeCILL-B Free Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_11.yml b/src/licensedcode/data/rules/cecill-b_11.yml deleted file mode 100644 index 37d8173dd3b..00000000000 --- a/src/licensedcode/data/rules/cecill-b_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-b -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-b_12.RULE b/src/licensedcode/data/rules/cecill-b_12.RULE index 498716e897a..78b6223e297 100644 --- a/src/licensedcode/data/rules/cecill-b_12.RULE +++ b/src/licensedcode/data/rules/cecill-b_12.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-b +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CECILL-B \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_12.yml b/src/licensedcode/data/rules/cecill-b_12.yml deleted file mode 100644 index 37d8173dd3b..00000000000 --- a/src/licensedcode/data/rules/cecill-b_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-b -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-b_13.RULE b/src/licensedcode/data/rules/cecill-b_13.RULE index a2e9d0de372..d8b17a26de6 100644 --- a/src/licensedcode/data/rules/cecill-b_13.RULE +++ b/src/licensedcode/data/rules/cecill-b_13.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CECILL-B \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_13.yml b/src/licensedcode/data/rules/cecill-b_13.yml deleted file mode 100644 index 9aef511b3b0..00000000000 --- a/src/licensedcode/data/rules/cecill-b_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-b_14.RULE b/src/licensedcode/data/rules/cecill-b_14.RULE index 690b632f781..551257d74e2 100644 --- a/src/licensedcode/data/rules/cecill-b_14.RULE +++ b/src/licensedcode/data/rules/cecill-b_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-B +--- + LICENSE {{CECILL-B}} https://spdx.org/licenses/CECILL-B \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_14.yml b/src/licensedcode/data/rules/cecill-b_14.yml deleted file mode 100644 index 2b7ebe0d00f..00000000000 --- a/src/licensedcode/data/rules/cecill-b_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-B diff --git a/src/licensedcode/data/rules/cecill-b_15.RULE b/src/licensedcode/data/rules/cecill-b_15.RULE index e2a70ad3620..a191cd320c7 100644 --- a/src/licensedcode/data/rules/cecill-b_15.RULE +++ b/src/licensedcode/data/rules/cecill-b_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-B +--- + {{CECILL-B}} https://spdx.org/licenses/CECILL-B \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_15.yml b/src/licensedcode/data/rules/cecill-b_15.yml deleted file mode 100644 index 2b7ebe0d00f..00000000000 --- a/src/licensedcode/data/rules/cecill-b_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-B diff --git a/src/licensedcode/data/rules/cecill-b_2.RULE b/src/licensedcode/data/rules/cecill-b_2.RULE index 8d815945140..1801f76ae72 100644 --- a/src/licensedcode/data/rules/cecill-b_2.RULE +++ b/src/licensedcode/data/rules/cecill-b_2.RULE @@ -1 +1,9 @@ -http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +--- + +http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_2.yml b/src/licensedcode/data/rules/cecill-b_2.yml deleted file mode 100644 index 50c0e483253..00000000000 --- a/src/licensedcode/data/rules/cecill-b_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html diff --git a/src/licensedcode/data/rules/cecill-b_3.RULE b/src/licensedcode/data/rules/cecill-b_3.RULE index 8bf3d5965f9..a790e262ce0 100644 --- a/src/licensedcode/data/rules/cecill-b_3.RULE +++ b/src/licensedcode/data/rules/cecill-b_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cecill-b +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +--- + * Distributed under the terms of the CeCILL-B license, as published by * the CEA-CNRS-INRIA. Refer to the LICENSE file or to * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html diff --git a/src/licensedcode/data/rules/cecill-b_3.yml b/src/licensedcode/data/rules/cecill-b_3.yml deleted file mode 100644 index 83ddacae1b0..00000000000 --- a/src/licensedcode/data/rules/cecill-b_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-b -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html diff --git a/src/licensedcode/data/rules/cecill-b_4.RULE b/src/licensedcode/data/rules/cecill-b_4.RULE index 334e297b8d4..18e7dde7ce6 100644 --- a/src/licensedcode/data/rules/cecill-b_4.RULE +++ b/src/licensedcode/data/rules/cecill-b_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CECILL-B +--- + https://licenses.nuget.org/CECILL-B \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_4.yml b/src/licensedcode/data/rules/cecill-b_4.yml deleted file mode 100644 index f9a7ad5e360..00000000000 --- a/src/licensedcode/data/rules/cecill-b_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CECILL-B diff --git a/src/licensedcode/data/rules/cecill-b_5.RULE b/src/licensedcode/data/rules/cecill-b_5.RULE index be14c7a5e79..8737e9eed8f 100644 --- a/src/licensedcode/data/rules/cecill-b_5.RULE +++ b/src/licensedcode/data/rules/cecill-b_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cecill-b +is_license_notice: yes +relevance: 100 +--- + Licence¶ is free software, and is distributed under the CeCILL-B licence, which is similar to the BSD licence (with precisions for the french law). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_5.yml b/src/licensedcode/data/rules/cecill-b_5.yml deleted file mode 100644 index 67825699a0c..00000000000 --- a/src/licensedcode/data/rules/cecill-b_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-b -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-b_6.RULE b/src/licensedcode/data/rules/cecill-b_6.RULE index 9eb771499e0..2a89bac4366 100644 --- a/src/licensedcode/data/rules/cecill-b_6.RULE +++ b/src/licensedcode/data/rules/cecill-b_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt +--- + `CECILL-B` - [CEA CNRS INRIA Logiciel Libre](http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_6.yml b/src/licensedcode/data/rules/cecill-b_6.yml deleted file mode 100644 index 9facc575b60..00000000000 --- a/src/licensedcode/data/rules/cecill-b_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt diff --git a/src/licensedcode/data/rules/cecill-b_7.RULE b/src/licensedcode/data/rules/cecill-b_7.RULE index 6e18d623b1e..a7b4364bbdf 100644 --- a/src/licensedcode/data/rules/cecill-b_7.RULE +++ b/src/licensedcode/data/rules/cecill-b_7.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-b +is_license_reference: yes +--- + CECILL-B CeCILL-B Free Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_7.yml b/src/licensedcode/data/rules/cecill-b_7.yml deleted file mode 100644 index 0e9c3f39418..00000000000 --- a/src/licensedcode/data/rules/cecill-b_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-b_8.RULE b/src/licensedcode/data/rules/cecill-b_8.RULE index 047ffd74c77..cc17eed8005 100644 --- a/src/licensedcode/data/rules/cecill-b_8.RULE +++ b/src/licensedcode/data/rules/cecill-b_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-b +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CeCILL-B Free Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_8.yml b/src/licensedcode/data/rules/cecill-b_8.yml deleted file mode 100644 index 74c0208e61e..00000000000 --- a/src/licensedcode/data/rules/cecill-b_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-b_9.RULE b/src/licensedcode/data/rules/cecill-b_9.RULE index c13320c9305..c9c413ed75f 100644 --- a/src/licensedcode/data/rules/cecill-b_9.RULE +++ b/src/licensedcode/data/rules/cecill-b_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-b +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CeCILL-B Free Software License Agreement CECILL-B \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_9.yml b/src/licensedcode/data/rules/cecill-b_9.yml deleted file mode 100644 index 74c0208e61e..00000000000 --- a/src/licensedcode/data/rules/cecill-b_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-b_url_1.RULE b/src/licensedcode/data/rules/cecill-b_url_1.RULE index 2329a4d3ba9..937ef95832b 100644 --- a/src/licensedcode/data/rules/cecill-b_url_1.RULE +++ b/src/licensedcode/data/rules/cecill-b_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-b +--- + https://spdx.org/licenses/cecill-b \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_url_1.yml b/src/licensedcode/data/rules/cecill-b_url_1.yml deleted file mode 100644 index b7c48a5c67a..00000000000 --- a/src/licensedcode/data/rules/cecill-b_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-b diff --git a/src/licensedcode/data/rules/cecill-b_url_2.RULE b/src/licensedcode/data/rules/cecill-b_url_2.RULE index a6c04444408..bbe9647d50c 100644 --- a/src/licensedcode/data/rules/cecill-b_url_2.RULE +++ b/src/licensedcode/data/rules/cecill-b_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-b +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-b.html +--- + https://spdx.org/licenses/cecill-b.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-b_url_2.yml b/src/licensedcode/data/rules/cecill-b_url_2.yml deleted file mode 100644 index 5021988a4b9..00000000000 --- a/src/licensedcode/data/rules/cecill-b_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-b.html diff --git a/src/licensedcode/data/rules/cecill-c-fr.RULE b/src/licensedcode/data/rules/cecill-c-fr.RULE index 2183cbc3367..71a94272a86 100644 --- a/src/licensedcode/data/rules/cecill-c-fr.RULE +++ b/src/licensedcode/data/rules/cecill-c-fr.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-c +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html +--- + http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c-fr.yml b/src/licensedcode/data/rules/cecill-c-fr.yml deleted file mode 100644 index 6daf3897d62..00000000000 --- a/src/licensedcode/data/rules/cecill-c-fr.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.cecill.info/licences/Licence_CeCILL-C_V1-fr.html diff --git a/src/licensedcode/data/rules/cecill-c_1.RULE b/src/licensedcode/data/rules/cecill-c_1.RULE index 60f354f76c3..16bc972705c 100644 --- a/src/licensedcode/data/rules/cecill-c_1.RULE +++ b/src/licensedcode/data/rules/cecill-c_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CECILL-C +--- + https://licenses.nuget.org/CECILL-C \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_1.yml b/src/licensedcode/data/rules/cecill-c_1.yml deleted file mode 100644 index 12e1b62508a..00000000000 --- a/src/licensedcode/data/rules/cecill-c_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CECILL-C diff --git a/src/licensedcode/data/rules/cecill-c_10.RULE b/src/licensedcode/data/rules/cecill-c_10.RULE index 694fe372be3..e63d863c56e 100644 --- a/src/licensedcode/data/rules/cecill-c_10.RULE +++ b/src/licensedcode/data/rules/cecill-c_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-C +--- + {{CECILL-C}} https://spdx.org/licenses/CECILL-C \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_10.yml b/src/licensedcode/data/rules/cecill-c_10.yml deleted file mode 100644 index 1a88bf2e3c1..00000000000 --- a/src/licensedcode/data/rules/cecill-c_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-C diff --git a/src/licensedcode/data/rules/cecill-c_11.RULE b/src/licensedcode/data/rules/cecill-c_11.RULE index c1bb5b18caa..dff5c75b43c 100644 --- a/src/licensedcode/data/rules/cecill-c_11.RULE +++ b/src/licensedcode/data/rules/cecill-c_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CECILL-C +--- + LICENSE {{CECILL-C}} https://spdx.org/licenses/CECILL-C \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_11.yml b/src/licensedcode/data/rules/cecill-c_11.yml deleted file mode 100644 index 1a88bf2e3c1..00000000000 --- a/src/licensedcode/data/rules/cecill-c_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CECILL-C diff --git a/src/licensedcode/data/rules/cecill-c_2.RULE b/src/licensedcode/data/rules/cecill-c_2.RULE index 6b24de17730..307cbba05bc 100644 --- a/src/licensedcode/data/rules/cecill-c_2.RULE +++ b/src/licensedcode/data/rules/cecill-c_2.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-c +is_license_reference: yes +--- + CeCILL-C Free Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_2.yml b/src/licensedcode/data/rules/cecill-c_2.yml deleted file mode 100644 index ceecd482846..00000000000 --- a/src/licensedcode/data/rules/cecill-c_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-c_3.RULE b/src/licensedcode/data/rules/cecill-c_3.RULE index c0ba9ff1130..bcf5a296694 100644 --- a/src/licensedcode/data/rules/cecill-c_3.RULE +++ b/src/licensedcode/data/rules/cecill-c_3.RULE @@ -1 +1,6 @@ +--- +license_expression: cecill-c +is_license_reference: yes +--- + CECILL-C CeCILL-C Free Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_3.yml b/src/licensedcode/data/rules/cecill-c_3.yml deleted file mode 100644 index ceecd482846..00000000000 --- a/src/licensedcode/data/rules/cecill-c_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cecill-c_4.RULE b/src/licensedcode/data/rules/cecill-c_4.RULE index 87ffdc0612d..089587d50b7 100644 --- a/src/licensedcode/data/rules/cecill-c_4.RULE +++ b/src/licensedcode/data/rules/cecill-c_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CeCILL-C Free Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_4.yml b/src/licensedcode/data/rules/cecill-c_4.yml deleted file mode 100644 index 996d2d65ef5..00000000000 --- a/src/licensedcode/data/rules/cecill-c_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-c_5.RULE b/src/licensedcode/data/rules/cecill-c_5.RULE index 5048c931694..b84a1d84557 100644 --- a/src/licensedcode/data/rules/cecill-c_5.RULE +++ b/src/licensedcode/data/rules/cecill-c_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CeCILL-C Free Software License Agreement CECILL-C \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_5.yml b/src/licensedcode/data/rules/cecill-c_5.yml deleted file mode 100644 index 996d2d65ef5..00000000000 --- a/src/licensedcode/data/rules/cecill-c_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-c_6.RULE b/src/licensedcode/data/rules/cecill-c_6.RULE index 1f0abbbecdb..de58691028f 100644 --- a/src/licensedcode/data/rules/cecill-c_6.RULE +++ b/src/licensedcode/data/rules/cecill-c_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CECILL-C \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_6.yml b/src/licensedcode/data/rules/cecill-c_6.yml deleted file mode 100644 index 03f6bcdf1e5..00000000000 --- a/src/licensedcode/data/rules/cecill-c_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-c_7.RULE b/src/licensedcode/data/rules/cecill-c_7.RULE index f6b3735bd77..6ade30ae732 100644 --- a/src/licensedcode/data/rules/cecill-c_7.RULE +++ b/src/licensedcode/data/rules/cecill-c_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CeCILL-C Free Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_7.yml b/src/licensedcode/data/rules/cecill-c_7.yml deleted file mode 100644 index 03f6bcdf1e5..00000000000 --- a/src/licensedcode/data/rules/cecill-c_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-c_8.RULE b/src/licensedcode/data/rules/cecill-c_8.RULE index a357879e2f3..9dbfcdd4855 100644 --- a/src/licensedcode/data/rules/cecill-c_8.RULE +++ b/src/licensedcode/data/rules/cecill-c_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CECILL-C \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_8.yml b/src/licensedcode/data/rules/cecill-c_8.yml deleted file mode 100644 index 03f6bcdf1e5..00000000000 --- a/src/licensedcode/data/rules/cecill-c_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cecill-c_9.RULE b/src/licensedcode/data/rules/cecill-c_9.RULE index 884e68ca0b7..a026b2fd7aa 100644 --- a/src/licensedcode/data/rules/cecill-c_9.RULE +++ b/src/licensedcode/data/rules/cecill-c_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-c +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CECILL-C \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_9.yml b/src/licensedcode/data/rules/cecill-c_9.yml deleted file mode 100644 index b34e32553ba..00000000000 --- a/src/licensedcode/data/rules/cecill-c_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cecill-c_url_1.RULE b/src/licensedcode/data/rules/cecill-c_url_1.RULE index c5f57880869..3c1712fbbd6 100644 --- a/src/licensedcode/data/rules/cecill-c_url_1.RULE +++ b/src/licensedcode/data/rules/cecill-c_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-c +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-c +--- + https://spdx.org/licenses/cecill-c \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_url_1.yml b/src/licensedcode/data/rules/cecill-c_url_1.yml deleted file mode 100644 index 57e921e9c65..00000000000 --- a/src/licensedcode/data/rules/cecill-c_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-c diff --git a/src/licensedcode/data/rules/cecill-c_url_2.RULE b/src/licensedcode/data/rules/cecill-c_url_2.RULE index 40abeb7cd4b..43164bd2f0e 100644 --- a/src/licensedcode/data/rules/cecill-c_url_2.RULE +++ b/src/licensedcode/data/rules/cecill-c_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-c +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cecill-c.html +--- + https://spdx.org/licenses/cecill-c.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cecill-c_url_2.yml b/src/licensedcode/data/rules/cecill-c_url_2.yml deleted file mode 100644 index 248fa146d3c..00000000000 --- a/src/licensedcode/data/rules/cecill-c_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cecill-c.html diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_1.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_1.RULE index 38d5a0c16f0..cb6b8ea6823 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_1.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cern-ohl-1.1 +is_license_text: yes +relevance: 90 +notes: Rarely seen, obsolete. https://ohwr.org/project/cernohl/uploads/c10b3932995df55815727358d432e001/CERNOHLv1_0.pdf +ignorable_urls: + - http://www.ohwr.org/ +--- + CERN OPEN HARDWARE LICENCE v1.0 Preamble This CERN Open Hardware Licence ("CERN OHL") version 1.0 covers the use of CERN hardware diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_1.yml b/src/licensedcode/data/rules/cern-ohl-1.1_1.yml deleted file mode 100644 index 84c9ae66501..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_text: yes -relevance: 90 -notes: Rarely seen, obsolete. https://ohwr.org/project/cernohl/uploads/c10b3932995df55815727358d432e001/CERNOHLv1_0.pdf -ignorable_urls: - - http://www.ohwr.org/ diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_10.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_10.RULE index d056a85ad41..e1c0a6fdf45 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_10.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + cern-ohl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_10.yml b/src/licensedcode/data/rules/cern-ohl-1.1_10.yml deleted file mode 100644 index 1f5f1915137..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_11.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_11.RULE index 90fa1aee06b..9dadd83aafb 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_11.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CERN-OHL-1.1 +--- + https://licenses.nuget.org/CERN-OHL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_11.yml b/src/licensedcode/data/rules/cern-ohl-1.1_11.yml deleted file mode 100644 index f9c07b8adb8..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CERN-OHL-1.1 diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_12.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_12.RULE index 970235d6e48..a990759a99f 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_12.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CERN-OHL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_12.yml b/src/licensedcode/data/rules/cern-ohl-1.1_12.yml deleted file mode 100644 index b835649794b..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_13.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_13.RULE index f65fb26609a..234ec8d87a3 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_13.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-1.1 +--- + {{CERN-OHL-1.1}} https://spdx.org/licenses/CERN-OHL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_13.yml b/src/licensedcode/data/rules/cern-ohl-1.1_13.yml deleted file mode 100644 index 8e101c572cc..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-1.1 diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_14.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_14.RULE index 6e1600b8262..f39b2ac0684 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_14.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-1.1 +--- + LICENSE {{CERN-OHL-1.1}} https://spdx.org/licenses/CERN-OHL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_14.yml b/src/licensedcode/data/rules/cern-ohl-1.1_14.yml deleted file mode 100644 index 8e101c572cc..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-1.1 diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_2.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_2.RULE index 215cd5ccd42..294d64ad495 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_2.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cern-ohl-1.1 +is_license_text: yes +notes: from https://ohwr.org/project/cernohl/uploads/33a541feca58613f9b5b6f837f5ab62f/CERNOHLv1_1.txt +ignorable_copyrights: + - copyright of CERN. +ignorable_holders: + - CERN +ignorable_urls: + - http://www.ohwr.org/ +--- + CERN OPEN HARDWARE LICENCE v1.1 Preamble diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_2.yml b/src/licensedcode/data/rules/cern-ohl-1.1_2.yml deleted file mode 100644 index b5ca6f9e66b..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_text: yes -notes: from https://ohwr.org/project/cernohl/uploads/33a541feca58613f9b5b6f837f5ab62f/CERNOHLv1_1.txt -ignorable_copyrights: - - copyright of CERN. -ignorable_holders: - - CERN -ignorable_urls: - - http://www.ohwr.org/ diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_3.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_3.RULE index bf49638b913..1a7278109f3 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_3.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_3.yml b/src/licensedcode/data/rules/cern-ohl-1.1_3.yml deleted file mode 100644 index 24bdfefde56..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_4.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_4.RULE index ea7aaf8820a..f3a0ab7034c 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_4.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CERN Open Hardware Licence v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_4.yml b/src/licensedcode/data/rules/cern-ohl-1.1_4.yml deleted file mode 100644 index 24bdfefde56..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_5.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_5.RULE index 0ca0eee221a..43a6216a656 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_5.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN-OHL-1.1 CERN Open Hardware Licence v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_5.yml b/src/licensedcode/data/rules/cern-ohl-1.1_5.yml deleted file mode 100644 index 24bdfefde56..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_6.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_6.RULE index 26e6913bd7d..4033165320a 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_6.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence v1.1 CERN-OHL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_6.yml b/src/licensedcode/data/rules/cern-ohl-1.1_6.yml deleted file mode 100644 index 24bdfefde56..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_7.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_7.RULE index c76dabe127a..6b4ca48710b 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_7.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN-OHL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_7.yml b/src/licensedcode/data/rules/cern-ohl-1.1_7.yml deleted file mode 100644 index 42391601d4c..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_8.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_8.RULE index 24709c6f50f..09d52a9af0b 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_8.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN Open Hardware Licence v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_8.yml b/src/licensedcode/data/rules/cern-ohl-1.1_8.yml deleted file mode 100644 index 42391601d4c..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_9.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_9.RULE index 7c0cfd1ed3c..c4a3cd294ae 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_9.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CERN-OHL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_9.yml b/src/licensedcode/data/rules/cern-ohl-1.1_9.yml deleted file mode 100644 index 42391601d4c..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_url_1.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_url_1.RULE index 96f7b783eae..c10b56a4a4e 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cern-ohl-1.1 +--- + https://spdx.org/licenses/cern-ohl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_url_1.yml b/src/licensedcode/data/rules/cern-ohl-1.1_url_1.yml deleted file mode 100644 index af0fb5a1974..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cern-ohl-1.1 diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_url_2.RULE b/src/licensedcode/data/rules/cern-ohl-1.1_url_2.RULE index 2eb4920dbdd..126396a1a3b 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cern-ohl-1.1.html +--- + https://spdx.org/licenses/cern-ohl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.1_url_2.yml b/src/licensedcode/data/rules/cern-ohl-1.1_url_2.yml deleted file mode 100644 index 1ebdd48c68c..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cern-ohl-1.1.html diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_1.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_1.RULE index e6c1a356e4b..c171438d3d6 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_1.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cern-ohl-1.2 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.ohwr.org/licenses/cern-ohl/v1.2 +--- + licensed under the `CERN Open Hardware Licence v1.2`_. .. _CERN Open Hardware Licence v1.2: http://www.ohwr.org/licenses/cern-ohl/v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_1.yml b/src/licensedcode/data/rules/cern-ohl-1.2_1.yml deleted file mode 100644 index 33328dcf52c..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.ohwr.org/licenses/cern-ohl/v1.2 diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_10.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_10.RULE index 1cb3dc60811..58905727b07 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_10.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CERN-OHL-1.2 +--- + https://licenses.nuget.org/CERN-OHL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_10.yml b/src/licensedcode/data/rules/cern-ohl-1.2_10.yml deleted file mode 100644 index a55b0d319db..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CERN-OHL-1.2 diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_11.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_11.RULE index e8c76d34f89..2c43903782c 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_11.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CERN-OHL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_11.yml b/src/licensedcode/data/rules/cern-ohl-1.2_11.yml deleted file mode 100644 index 665c4a4f579..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_12.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_12.RULE index 2847e5a514d..fbd45a54b6c 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_12.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-1.2 +--- + {{CERN-OHL-1.2}} https://spdx.org/licenses/CERN-OHL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_12.yml b/src/licensedcode/data/rules/cern-ohl-1.2_12.yml deleted file mode 100644 index a48821ed02e..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-1.2 diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_13.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_13.RULE index 96f2f2b2913..64c92a84e53 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_13.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-1.2 +--- + LICENSE {{CERN-OHL-1.2}} https://spdx.org/licenses/CERN-OHL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_13.yml b/src/licensedcode/data/rules/cern-ohl-1.2_13.yml deleted file mode 100644 index a48821ed02e..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-1.2 diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_2.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_2.RULE index f234e34b44e..d7707bf2e75 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_2.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_2.yml b/src/licensedcode/data/rules/cern-ohl-1.2_2.yml deleted file mode 100644 index ce96e4039d0..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_3.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_3.RULE index f03785e5fc1..c81e74cf1d4 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_3.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CERN Open Hardware Licence v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_3.yml b/src/licensedcode/data/rules/cern-ohl-1.2_3.yml deleted file mode 100644 index ce96e4039d0..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_4.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_4.RULE index 2c75bcd0812..cac70840c23 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_4.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN-OHL-1.2 CERN Open Hardware Licence v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_4.yml b/src/licensedcode/data/rules/cern-ohl-1.2_4.yml deleted file mode 100644 index ce96e4039d0..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_5.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_5.RULE index e527a28bf3a..ca83db78cc6 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_5.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence v1.2 CERN-OHL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_5.yml b/src/licensedcode/data/rules/cern-ohl-1.2_5.yml deleted file mode 100644 index ce96e4039d0..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_6.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_6.RULE index fa8b679bae4..e04c9fa5a78 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_6.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN-OHL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_6.yml b/src/licensedcode/data/rules/cern-ohl-1.2_6.yml deleted file mode 100644 index a26493963b6..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_7.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_7.RULE index c29ccea6bc9..132b1eeb7be 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_7.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN Open Hardware Licence v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_7.yml b/src/licensedcode/data/rules/cern-ohl-1.2_7.yml deleted file mode 100644 index a26493963b6..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_8.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_8.RULE index babb01dca5d..a2d47ac812d 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_8.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CERN-OHL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_8.yml b/src/licensedcode/data/rules/cern-ohl-1.2_8.yml deleted file mode 100644 index a26493963b6..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_9.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_9.RULE index 9ee7b564cfb..c881bc9a397 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_9.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_9.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + cern-ohl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_9.yml b/src/licensedcode/data/rules/cern-ohl-1.2_9.yml deleted file mode 100644 index 3c3e522139c..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_url_1.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_url_1.RULE index a0739bf1042..0f3f88ad840 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cern-ohl-1.2 +--- + https://spdx.org/licenses/cern-ohl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_url_1.yml b/src/licensedcode/data/rules/cern-ohl-1.2_url_1.yml deleted file mode 100644 index ae0286d0542..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cern-ohl-1.2 diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_url_2.RULE b/src/licensedcode/data/rules/cern-ohl-1.2_url_2.RULE index 6cd54da440a..dbc45aabc55 100644 --- a/src/licensedcode/data/rules/cern-ohl-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/cern-ohl-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cern-ohl-1.2.html +--- + https://spdx.org/licenses/cern-ohl-1.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-1.2_url_2.yml b/src/licensedcode/data/rules/cern-ohl-1.2_url_2.yml deleted file mode 100644 index d2dc388bc7f..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cern-ohl-1.2.html diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_1.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_1.RULE index 2eb39e803bc..5e9fb9cf048 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_1.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_text: yes +notes: From https://ohwr.org/cern_ohl_p_v2.txt +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Permissive diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_1.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_1.yml deleted file mode 100644 index 38153ad98e5..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_text: yes -notes: From https://ohwr.org/cern_ohl_p_v2.txt -ignorable_copyrights: - - copyright CERN 2020 -ignorable_holders: - - CERN diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_10.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_10.RULE index 5be51c526c1..0b21fc3d18b 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_10.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CERN-OHL-P-2.0 +--- + https://licenses.nuget.org/CERN-OHL-P-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_10.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_10.yml deleted file mode 100644 index 309b0e6fc7e..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CERN-OHL-P-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_11.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_11.RULE index 67084c6aa13..2fbf16cde09 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_11.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CERN-OHL-P-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_11.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_11.yml deleted file mode 100644 index 8d94d7b73f7..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_12.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_12.RULE index ee6c247dbc7..28f7bdd5e06 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_12.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-P-2.0 +--- + LICENSE {{CERN-OHL-P-2.0}} https://spdx.org/licenses/CERN-OHL-P-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_12.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_12.yml deleted file mode 100644 index 937644aeca1..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-P-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_13.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_13.RULE index 16ad96f3331..c3a2a1519d8 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_13.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-P-2.0 +--- + {{CERN-OHL-P-2.0}} https://spdx.org/licenses/CERN-OHL-P-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_13.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_13.yml deleted file mode 100644 index 937644aeca1..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-P-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_2.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_2.RULE index a1478ccc19b..ea88477a94f 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_2.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence Version 2 - Permissive \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_2.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_2.yml deleted file mode 100644 index 390b2bccfa3..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_3.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_3.RULE index 56d01045e73..a8a2225a64f 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_3.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CERN Open Hardware Licence Version 2 - Permissive \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_3.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_3.yml deleted file mode 100644 index 390b2bccfa3..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_4.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_4.RULE index 2d8425e17b6..aa833e570f9 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_4.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN-OHL-P-2.0 CERN Open Hardware Licence Version 2 - Permissive \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_4.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_4.yml deleted file mode 100644 index 1a6a4d49d98..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_5.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_5.RULE index 66ccd76be26..9ee98662ebb 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_5.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence Version 2 - Permissive CERN-OHL-P-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_5.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_5.yml deleted file mode 100644 index 1a6a4d49d98..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_6.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_6.RULE index dc8b1ae2499..9bbe0fc767a 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_6.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN-OHL-P-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_6.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_6.yml deleted file mode 100644 index d3f75292963..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_7.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_7.RULE index 9804454dba4..7ad34cecd3d 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_7.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN Open Hardware Licence Version 2 - Permissive \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_7.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_7.yml deleted file mode 100644 index ad314f6688b..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_8.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_8.RULE index f3a6fac7b0e..a055974de74 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_8.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CERN-OHL-P-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_8.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_8.yml deleted file mode 100644 index d3f75292963..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_9.RULE b/src/licensedcode/data/rules/cern-ohl-p-2.0_9.RULE index a055d6ca404..6e9783e1477 100644 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_9.RULE +++ b/src/licensedcode/data/rules/cern-ohl-p-2.0_9.RULE @@ -1 +1,8 @@ +--- +license_expression: cern-ohl-p-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + cern-ohl-p-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-p-2.0_9.yml b/src/licensedcode/data/rules/cern-ohl-p-2.0_9.yml deleted file mode 100644 index 5e7e21e4a9e..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-p-2.0_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cern-ohl-p-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_1.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_1.RULE index dc764b43ec5..b076bcbfef8 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_1.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_text: yes +notes: From https://ohwr.org/cern_ohl_s_v2.txt +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Strongly Reciprocal diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_1.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_1.yml deleted file mode 100644 index 6b95330d448..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_text: yes -notes: From https://ohwr.org/cern_ohl_s_v2.txt -ignorable_copyrights: - - copyright CERN 2020 -ignorable_holders: - - CERN diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_10.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_10.RULE index 50e078af334..7a256108214 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_10.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CERN-OHL-S-2.0 +--- + https://licenses.nuget.org/CERN-OHL-S-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_10.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_10.yml deleted file mode 100644 index 50d927655ab..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CERN-OHL-S-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_11.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_11.RULE index 32387148e62..8e56fb77ced 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_11.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CERN-OHL-S-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_11.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_11.yml deleted file mode 100644 index f528e42495d..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_12.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_12.RULE index 89bf48b8696..cfe20e08275 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_12.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-S-2.0 +--- + LICENSE {{CERN-OHL-S-2.0}} https://spdx.org/licenses/CERN-OHL-S-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_12.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_12.yml deleted file mode 100644 index 4fe5af3a5c5..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-S-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_13.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_13.RULE index 83d558ec739..dd7db350138 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_13.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-S-2.0 +--- + {{CERN-OHL-S-2.0}} https://spdx.org/licenses/CERN-OHL-S-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_13.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_13.yml deleted file mode 100644 index 4fe5af3a5c5..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-S-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_2.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_2.RULE index d305c4ae0bc..94846ae35d1 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_2.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence Version 2 - Strongly Reciprocal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_2.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_2.yml deleted file mode 100644 index b3a3781ff27..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_3.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_3.RULE index 726c4a25899..f6fb81705e6 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_3.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CERN Open Hardware Licence Version 2 - Strongly Reciprocal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_3.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_3.yml deleted file mode 100644 index b3a3781ff27..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_4.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_4.RULE index b5851e04019..6637494f30a 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_4.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN-OHL-S-2.0 CERN Open Hardware Licence Version 2 - Strongly Reciprocal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_4.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_4.yml deleted file mode 100644 index b3a3781ff27..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_5.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_5.RULE index 5332712c3c1..0aeecfdea18 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_5.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence Version 2 - Strongly Reciprocal CERN-OHL-S-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_5.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_5.yml deleted file mode 100644 index b3a3781ff27..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_6.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_6.RULE index 7e77f0fad5b..f40c7a6a3e9 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_6.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN Open Hardware Licence Version 2 - Strongly Reciprocal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_6.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_6.yml deleted file mode 100644 index 9dcd8e968f1..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_7.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_7.RULE index 5c0d13a6930..599ed2b505c 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_7.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + cern-ohl-s-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_7.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_7.yml deleted file mode 100644 index 167be6d462a..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_8.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_8.RULE index c2e6a4db30d..f1e14ab661c 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_8.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN-OHL-S-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_8.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_8.yml deleted file mode 100644 index 9dcd8e968f1..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_9.RULE b/src/licensedcode/data/rules/cern-ohl-s-2.0_9.RULE index cb2075a2afb..2aede1a35f5 100644 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_9.RULE +++ b/src/licensedcode/data/rules/cern-ohl-s-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-s-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CERN-OHL-S-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-s-2.0_9.yml b/src/licensedcode/data/rules/cern-ohl-s-2.0_9.yml deleted file mode 100644 index 9dcd8e968f1..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-s-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-s-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_1.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_1.RULE index 1f714da965d..23104b4c28b 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_1.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_text: yes +notes: From https://ohwr.org/cern_ohl_w_v2.txt +ignorable_copyrights: + - copyright CERN 2020 +ignorable_holders: + - CERN +--- + CERN Open Hardware Licence Version 2 - Weakly Reciprocal diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_1.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_1.yml deleted file mode 100644 index 543bda3e8de..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_text: yes -notes: From https://ohwr.org/cern_ohl_w_v2.txt -ignorable_copyrights: - - copyright CERN 2020 -ignorable_holders: - - CERN diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_10.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_10.RULE index d3a48c34cf2..3e078bd43f5 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_10.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CERN-OHL-W-2.0 +--- + https://licenses.nuget.org/CERN-OHL-W-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_10.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_10.yml deleted file mode 100644 index df52ce852b3..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CERN-OHL-W-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_11.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_11.RULE index 52d792e340a..4f666336800 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_11.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CERN-OHL-W-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_11.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_11.yml deleted file mode 100644 index 772321a0540..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_12.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_12.RULE index 529ba3e5c93..a95fb3e92e4 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_12.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-W-2.0 +--- + {{CERN-OHL-W-2.0}} https://spdx.org/licenses/CERN-OHL-W-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_12.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_12.yml deleted file mode 100644 index 0efca310d1e..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-W-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_13.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_13.RULE index d667fd460f3..75377943973 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_13.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CERN-OHL-W-2.0 +--- + LICENSE {{CERN-OHL-W-2.0}} https://spdx.org/licenses/CERN-OHL-W-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_13.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_13.yml deleted file mode 100644 index 0efca310d1e..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CERN-OHL-W-2.0 diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_2.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_2.RULE index 2069ef3cf3b..92844f30750 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_2.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence Version 2 - Weakly Reciprocal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_2.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_2.yml deleted file mode 100644 index 1972aa67f11..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_3.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_3.RULE index 7d1db3c217a..619111fde66 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_3.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CERN Open Hardware Licence Version 2 - Weakly Reciprocal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_3.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_3.yml deleted file mode 100644 index 1972aa67f11..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_4.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_4.RULE index 6128cd1a932..4a8637d2aad 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_4.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN-OHL-W-2.0 CERN Open Hardware Licence Version 2 - Weakly Reciprocal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_4.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_4.yml deleted file mode 100644 index 1972aa67f11..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_5.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_5.RULE index 0cf1364c7b1..50c05fc6deb 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_5.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CERN Open Hardware Licence Version 2 - Weakly Reciprocal CERN-OHL-W-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_5.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_5.yml deleted file mode 100644 index 1972aa67f11..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_6.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_6.RULE index 26d5cc1926f..e3dea49109c 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_6.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN-OHL-W-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_6.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_6.yml deleted file mode 100644 index 8275fcf991d..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_7.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_7.RULE index b7d5e627761..8462b1475a1 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_7.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CERN Open Hardware Licence Version 2 - Weakly Reciprocal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_7.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_7.yml deleted file mode 100644 index 8275fcf991d..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_8.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_8.RULE index f6ba79d242b..d8616fe3462 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_8.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CERN-OHL-W-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_8.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_8.yml deleted file mode 100644 index 8275fcf991d..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_9.RULE b/src/licensedcode/data/rules/cern-ohl-w-2.0_9.RULE index 8056784cab9..1187913c9ac 100644 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_9.RULE +++ b/src/licensedcode/data/rules/cern-ohl-w-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: cern-ohl-w-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + cern-ohl-w-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cern-ohl-w-2.0_9.yml b/src/licensedcode/data/rules/cern-ohl-w-2.0_9.yml deleted file mode 100644 index 1ad85636844..00000000000 --- a/src/licensedcode/data/rules/cern-ohl-w-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cern-ohl-w-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/chicken-dl-0.2_1.RULE b/src/licensedcode/data/rules/chicken-dl-0.2_1.RULE index ca69c8a6c69..07068a8c946 100644 --- a/src/licensedcode/data/rules/chicken-dl-0.2_1.RULE +++ b/src/licensedcode/data/rules/chicken-dl-0.2_1.RULE @@ -1 +1,7 @@ +--- +license_expression: chicken-dl-0.2 +is_license_reference: yes +relevance: 100 +--- + Chicken Dance License \ No newline at end of file diff --git a/src/licensedcode/data/rules/chicken-dl-0.2_1.yml b/src/licensedcode/data/rules/chicken-dl-0.2_1.yml deleted file mode 100644 index ae20e25c8c8..00000000000 --- a/src/licensedcode/data/rules/chicken-dl-0.2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: chicken-dl-0.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/chicken-dl-0.2_2.RULE b/src/licensedcode/data/rules/chicken-dl-0.2_2.RULE index 05e131b2602..7a7835dac12 100644 --- a/src/licensedcode/data/rules/chicken-dl-0.2_2.RULE +++ b/src/licensedcode/data/rules/chicken-dl-0.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: chicken-dl-0.2 +is_license_notice: yes +relevance: 100 +--- + This program is licensed under the Chicken Dance License v0.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/chicken-dl-0.2_2.yml b/src/licensedcode/data/rules/chicken-dl-0.2_2.yml deleted file mode 100644 index d8b0cc8c562..00000000000 --- a/src/licensedcode/data/rules/chicken-dl-0.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: chicken-dl-0.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/chris-maunder.RULE b/src/licensedcode/data/rules/chris-maunder.RULE index 0d74124adf1..e8f2a474322 100644 --- a/src/licensedcode/data/rules/chris-maunder.RULE +++ b/src/licensedcode/data/rules/chris-maunder.RULE @@ -1 +1,9 @@ +--- +license_expression: chris-maunder +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.codeproject.com/Members/Chris-Maunder +--- + http://www.codeproject.com/Members/Chris-Maunder \ No newline at end of file diff --git a/src/licensedcode/data/rules/chris-maunder.yml b/src/licensedcode/data/rules/chris-maunder.yml deleted file mode 100644 index 581298eb81e..00000000000 --- a/src/licensedcode/data/rules/chris-maunder.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: chris-maunder -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.codeproject.com/Members/Chris-Maunder diff --git a/src/licensedcode/data/rules/classpath-exception-2.0.RULE b/src/licensedcode/data/rules/classpath-exception-2.0.RULE index cdc018b3ad7..68dd673eb52 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0.RULE @@ -1 +1,7 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + classpath-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0.yml b/src/licensedcode/data/rules/classpath-exception-2.0.yml deleted file mode 100644 index 1a04b282043..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_1.RULE index 15140ab1509..26cf6c428e6 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/software/classpath/ +--- + http://www.gnu.org/software/classpath/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/classpath-exception-2.0_1.yml deleted file mode 100644 index 779c584c250..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/software/classpath/ diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_10.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_10.RULE index 2d5ccc1ab9b..201fd5f6b50 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Classpath exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_10.yml b/src/licensedcode/data/rules/classpath-exception-2.0_10.yml deleted file mode 100644 index 16e0e40f878..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_11.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_11.RULE index 28aa2a389d4..1fae147e2e9 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Classpath-exception-2.0 Classpath exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_11.yml b/src/licensedcode/data/rules/classpath-exception-2.0_11.yml deleted file mode 100644 index 16e0e40f878..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_12.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_12.RULE index 6a4079384f1..a1e9af39471 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: classpath-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Classpath-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_12.yml b/src/licensedcode/data/rules/classpath-exception-2.0_12.yml deleted file mode 100644 index 320c886bff3..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_13.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_13.RULE index 9aa01c15976..7f31c7696fc 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_13.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: classpath-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Classpath-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_13.yml b/src/licensedcode/data/rules/classpath-exception-2.0_13.yml deleted file mode 100644 index 320c886bff3..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_14.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_14.RULE index cdf236a5b65..1be96f308c3 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_14.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Classpath-exception-2.0 +--- + https://licenses.nuget.org/Classpath-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_14.yml b/src/licensedcode/data/rules/classpath-exception-2.0_14.yml deleted file mode 100644 index e06f4f44a1a..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Classpath-exception-2.0 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_15.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_15.RULE index 7c27da66d51..89fee076e5b 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_15.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Classpath-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_15.yml b/src/licensedcode/data/rules/classpath-exception-2.0_15.yml deleted file mode 100644 index 1a04b282043..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_16.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_16.RULE index de8be369842..25abdfe5672 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_16.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Classpath-exception-2.0 +--- + {{Classpath-exception-2.0}} https://spdx.org/licenses/Classpath-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_16.yml b/src/licensedcode/data/rules/classpath-exception-2.0_16.yml deleted file mode 100644 index a4938df7b81..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Classpath-exception-2.0 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_17.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_17.RULE index 6e82afb97bf..1b365aad6a5 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_17.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Classpath-exception-2.0 +--- + LICENSE {{Classpath-exception-2.0}} https://spdx.org/licenses/Classpath-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_17.yml b/src/licensedcode/data/rules/classpath-exception-2.0_17.yml deleted file mode 100644 index a4938df7b81..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Classpath-exception-2.0 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_2.RULE index 24275ce407c..05677b739f9 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/software/classpath/license.html +--- + http://www.gnu.org/software/classpath/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/classpath-exception-2.0_2.yml deleted file mode 100644 index cbb4388badb..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_3.RULE index f410a5c46d2..0a7c55f79d5 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/GPL_linking_exception +--- + http://en.wikipedia.org/wiki/GPL_linking_exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/classpath-exception-2.0_3.yml deleted file mode 100644 index 7ac094345a7..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/GPL_linking_exception diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_4.RULE index 7c49065522a..3fe68bf589f 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_notice: yes +notes: Oracle GPL cpe +--- + "CLASSPATH" EXCEPTION TO THE GPL VERSION 2 Certain source files distributed by Oracle are subject to the following diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/classpath-exception-2.0_4.yml deleted file mode 100644 index b2de40d068d..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_notice: yes -notes: Oracle GPL cpe diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_5.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_5.RULE index 81024b7fba5..e8d46b21730 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_5.RULE @@ -1 +1,8 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + classpath exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_5.yml b/src/licensedcode/data/rules/classpath-exception-2.0_5.yml deleted file mode 100644 index eb5e739cb45..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_6.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_6.RULE index 01d60b9a7c3..410843bb318 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL-2.0-with-classpath-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_6.yml b/src/licensedcode/data/rules/classpath-exception-2.0_6.yml deleted file mode 100644 index 1a04b282043..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_7.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_7.RULE index 334cdb08d61..d57642524f9 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 99 +--- + with the classpath exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_7.yml b/src/licensedcode/data/rules/classpath-exception-2.0_7.yml deleted file mode 100644 index 9951bc0c862..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_8.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_8.RULE index ad10002cb51..e59959f1ed4 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/software/classpath/ +--- + https://www.gnu.org/software/classpath/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_8.yml b/src/licensedcode/data/rules/classpath-exception-2.0_8.yml deleted file mode 100644 index 7027cdc51c7..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/software/classpath/ diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_9.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_9.RULE index 909a0f0d1d9..0b9d7055813 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/software/classpath/license.html +--- + https://www.gnu.org/software/classpath/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_9.yml b/src/licensedcode/data/rules/classpath-exception-2.0_9.yml deleted file mode 100644 index 5c670c8857f..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_url_1.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_url_1.RULE index 99cece2a0f0..ecd5274e68c 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/classpath-exception-2.0 +--- + https://spdx.org/licenses/classpath-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_url_1.yml b/src/licensedcode/data/rules/classpath-exception-2.0_url_1.yml deleted file mode 100644 index 76b1e486bff..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/classpath-exception-2.0 diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_url_2.RULE b/src/licensedcode/data/rules/classpath-exception-2.0_url_2.RULE index 7e5e449dd7e..b792ed1293b 100644 --- a/src/licensedcode/data/rules/classpath-exception-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/classpath-exception-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: classpath-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/classpath-exception-2.0.html +--- + https://spdx.org/licenses/classpath-exception-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/classpath-exception-2.0_url_2.yml b/src/licensedcode/data/rules/classpath-exception-2.0_url_2.yml deleted file mode 100644 index 42b1215d689..00000000000 --- a/src/licensedcode/data/rules/classpath-exception-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: classpath-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/classpath-exception-2.0.html diff --git a/src/licensedcode/data/rules/clear-bsd.SPDX.RULE b/src/licensedcode/data/rules/clear-bsd.SPDX.RULE index ea03a15121a..06f6f7eca6b 100644 --- a/src/licensedcode/data/rules/clear-bsd.SPDX.RULE +++ b/src/licensedcode/data/rules/clear-bsd.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: clear-bsd +is_license_text: yes +minimum_coverage: 85 +notes: license text as published by SPDX +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: @@ -26,4 +33,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd.SPDX.yml b/src/licensedcode/data/rules/clear-bsd.SPDX.yml deleted file mode 100644 index f1d1fc4063d..00000000000 --- a/src/licensedcode/data/rules/clear-bsd.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: clear-bsd -is_license_text: yes -minimum_coverage: 85 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/clear-bsd_1.RULE b/src/licensedcode/data/rules/clear-bsd_1.RULE index 8484e52da62..3c1c5351b2d 100644 --- a/src/licensedcode/data/rules/clear-bsd_1.RULE +++ b/src/licensedcode/data/rules/clear-bsd_1.RULE @@ -1 +1,9 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://labs.metacarta.com/license-explanation.html +--- + http://labs.metacarta.com/license-explanation.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_1.yml b/src/licensedcode/data/rules/clear-bsd_1.yml deleted file mode 100644 index 37814f52700..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://labs.metacarta.com/license-explanation.html diff --git a/src/licensedcode/data/rules/clear-bsd_10.RULE b/src/licensedcode/data/rules/clear-bsd_10.RULE index 92f61a28bab..82da1bdbdb2 100644 --- a/src/licensedcode/data/rules/clear-bsd_10.RULE +++ b/src/licensedcode/data/rules/clear-bsd_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: clear-bsd +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/clear-bsd_10.yml b/src/licensedcode/data/rules/clear-bsd_10.yml deleted file mode 100644 index d7e89f8f024..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_11.RULE b/src/licensedcode/data/rules/clear-bsd_11.RULE index f8208bfa034..e6cb89767e0 100644 --- a/src/licensedcode/data/rules/clear-bsd_11.RULE +++ b/src/licensedcode/data/rules/clear-bsd_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: clear-bsd +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/clear-bsd_11.yml b/src/licensedcode/data/rules/clear-bsd_11.yml deleted file mode 100644 index d7e89f8f024..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_12.RULE b/src/licensedcode/data/rules/clear-bsd_12.RULE index 37b5fc9b69f..2a5b2ab9d78 100644 --- a/src/licensedcode/data/rules/clear-bsd_12.RULE +++ b/src/licensedcode/data/rules/clear-bsd_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: clear-bsd +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/clear-bsd_12.yml b/src/licensedcode/data/rules/clear-bsd_12.yml deleted file mode 100644 index d7e89f8f024..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_13.RULE b/src/licensedcode/data/rules/clear-bsd_13.RULE index 38838c2830f..432c1d8fa98 100644 --- a/src/licensedcode/data/rules/clear-bsd_13.RULE +++ b/src/licensedcode/data/rules/clear-bsd_13.RULE @@ -1 +1,8 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +--- + BSD-3-Clause-Clear BSD 3-clause Clear License \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_13.yml b/src/licensedcode/data/rules/clear-bsd_13.yml deleted file mode 100644 index 000baae59b3..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_14.RULE b/src/licensedcode/data/rules/clear-bsd_14.RULE index bac48ee7adc..a4a55259090 100644 --- a/src/licensedcode/data/rules/clear-bsd_14.RULE +++ b/src/licensedcode/data/rules/clear-bsd_14.RULE @@ -1 +1,10 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 3-Clause Clear License \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_14.yml b/src/licensedcode/data/rules/clear-bsd_14.yml deleted file mode 100644 index 846f5be35af..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/clear-bsd_15.RULE b/src/licensedcode/data/rules/clear-bsd_15.RULE index ce5809a253f..57f22292033 100644 --- a/src/licensedcode/data/rules/clear-bsd_15.RULE +++ b/src/licensedcode/data/rules/clear-bsd_15.RULE @@ -1 +1,10 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 3-Clause Clear License BSD-3-Clause-Clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_15.yml b/src/licensedcode/data/rules/clear-bsd_15.yml deleted file mode 100644 index 846f5be35af..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/clear-bsd_16.RULE b/src/licensedcode/data/rules/clear-bsd_16.RULE index cd6f04e8230..793d0e695ad 100644 --- a/src/licensedcode/data/rules/clear-bsd_16.RULE +++ b/src/licensedcode/data/rules/clear-bsd_16.RULE @@ -1 +1,10 @@ +--- +license_expression: clear-bsd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-Clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_16.yml b/src/licensedcode/data/rules/clear-bsd_16.yml deleted file mode 100644 index c4c79896fcb..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clear-bsd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/clear-bsd_17.RULE b/src/licensedcode/data/rules/clear-bsd_17.RULE index 556127167df..143d1eb1006 100644 --- a/src/licensedcode/data/rules/clear-bsd_17.RULE +++ b/src/licensedcode/data/rules/clear-bsd_17.RULE @@ -1 +1,10 @@ +--- +license_expression: clear-bsd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD 3-Clause Clear License \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_17.yml b/src/licensedcode/data/rules/clear-bsd_17.yml deleted file mode 100644 index c4c79896fcb..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clear-bsd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/clear-bsd_18.RULE b/src/licensedcode/data/rules/clear-bsd_18.RULE index e596c521d11..18374e91fa0 100644 --- a/src/licensedcode/data/rules/clear-bsd_18.RULE +++ b/src/licensedcode/data/rules/clear-bsd_18.RULE @@ -1 +1,10 @@ +--- +license_expression: clear-bsd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-Clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_18.yml b/src/licensedcode/data/rules/clear-bsd_18.yml deleted file mode 100644 index c4c79896fcb..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clear-bsd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/clear-bsd_19.RULE b/src/licensedcode/data/rules/clear-bsd_19.RULE index 75e2ac618aa..0de7c792b5f 100644 --- a/src/licensedcode/data/rules/clear-bsd_19.RULE +++ b/src/licensedcode/data/rules/clear-bsd_19.RULE @@ -1 +1,9 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-Clear +--- + https://licenses.nuget.org/BSD-3-Clause-Clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_19.yml b/src/licensedcode/data/rules/clear-bsd_19.yml deleted file mode 100644 index b569f2fe06b..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-Clear diff --git a/src/licensedcode/data/rules/clear-bsd_2.RULE b/src/licensedcode/data/rules/clear-bsd_2.RULE index cf810997d00..5ea9c1b767e 100644 --- a/src/licensedcode/data/rules/clear-bsd_2.RULE +++ b/src/licensedcode/data/rules/clear-bsd_2.RULE @@ -1 +1,7 @@ - Licensed under the Clear BSD license. +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +--- + + Licensed under the Clear BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_2.yml b/src/licensedcode/data/rules/clear-bsd_2.yml deleted file mode 100644 index a7a86797e6f..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_20.RULE b/src/licensedcode/data/rules/clear-bsd_20.RULE index 77b7d791e68..6aaefa294e7 100644 --- a/src/licensedcode/data/rules/clear-bsd_20.RULE +++ b/src/licensedcode/data/rules/clear-bsd_20.RULE @@ -1 +1,7 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-Clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_20.yml b/src/licensedcode/data/rules/clear-bsd_20.yml deleted file mode 100644 index a7a86797e6f..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_21.RULE b/src/licensedcode/data/rules/clear-bsd_21.RULE index 56306142700..fbcd93cc1ad 100644 --- a/src/licensedcode/data/rules/clear-bsd_21.RULE +++ b/src/licensedcode/data/rules/clear-bsd_21.RULE @@ -1 +1,9 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-Clear +--- + LICENSE {{BSD-3-Clause-Clear}} https://spdx.org/licenses/BSD-3-Clause-Clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_21.yml b/src/licensedcode/data/rules/clear-bsd_21.yml deleted file mode 100644 index f2e4137f9a3..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-Clear diff --git a/src/licensedcode/data/rules/clear-bsd_22.RULE b/src/licensedcode/data/rules/clear-bsd_22.RULE index cd77635f815..a332dcaf8a0 100644 --- a/src/licensedcode/data/rules/clear-bsd_22.RULE +++ b/src/licensedcode/data/rules/clear-bsd_22.RULE @@ -1 +1,9 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-Clear +--- + {{BSD-3-Clause-Clear}} https://spdx.org/licenses/BSD-3-Clause-Clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_22.yml b/src/licensedcode/data/rules/clear-bsd_22.yml deleted file mode 100644 index f2e4137f9a3..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-Clear diff --git a/src/licensedcode/data/rules/clear-bsd_3.RULE b/src/licensedcode/data/rules/clear-bsd_3.RULE index 3dcb3cee6b1..b1ed3d5ac22 100644 --- a/src/licensedcode/data/rules/clear-bsd_3.RULE +++ b/src/licensedcode/data/rules/clear-bsd_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: clear-bsd +is_license_text: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: @@ -26,4 +31,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_3.yml b/src/licensedcode/data/rules/clear-bsd_3.yml deleted file mode 100644 index 1d648d582ed..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: clear-bsd -is_license_text: yes diff --git a/src/licensedcode/data/rules/clear-bsd_4.RULE b/src/licensedcode/data/rules/clear-bsd_4.RULE index 3da4e44c9ed..e6b97460356 100644 --- a/src/licensedcode/data/rules/clear-bsd_4.RULE +++ b/src/licensedcode/data/rules/clear-bsd_4.RULE @@ -1 +1,7 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +--- + Clear BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_4.yml b/src/licensedcode/data/rules/clear-bsd_4.yml deleted file mode 100644 index a7a86797e6f..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_5.RULE b/src/licensedcode/data/rules/clear-bsd_5.RULE index 6f4a4388465..2cfb71fa9f7 100644 --- a/src/licensedcode/data/rules/clear-bsd_5.RULE +++ b/src/licensedcode/data/rules/clear-bsd_5.RULE @@ -1 +1,7 @@ -The Clear BSD License +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +--- + +The Clear BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_5.yml b/src/licensedcode/data/rules/clear-bsd_5.yml deleted file mode 100644 index a7a86797e6f..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_6.RULE b/src/licensedcode/data/rules/clear-bsd_6.RULE index 845636ba4c4..2636e230461 100644 --- a/src/licensedcode/data/rules/clear-bsd_6.RULE +++ b/src/licensedcode/data/rules/clear-bsd_6.RULE @@ -1 +1,9 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/bsd-3-clause-clear +--- + https://choosealicense.com/licenses/bsd-3-clause-clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_6.yml b/src/licensedcode/data/rules/clear-bsd_6.yml deleted file mode 100644 index c5d4983d030..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/bsd-3-clause-clear diff --git a/src/licensedcode/data/rules/clear-bsd_7.RULE b/src/licensedcode/data/rules/clear-bsd_7.RULE index bb2efad2221..2a90ce1fcbf 100644 --- a/src/licensedcode/data/rules/clear-bsd_7.RULE +++ b/src/licensedcode/data/rules/clear-bsd_7.RULE @@ -1 +1,9 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/bsd-3-clause-clear +--- + http://choosealicense.com/licenses/bsd-3-clause-clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_7.yml b/src/licensedcode/data/rules/clear-bsd_7.yml deleted file mode 100644 index d355bdfb454..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/bsd-3-clause-clear diff --git a/src/licensedcode/data/rules/clear-bsd_8.RULE b/src/licensedcode/data/rules/clear-bsd_8.RULE index 3fa102fdf8d..7a58551552e 100644 --- a/src/licensedcode/data/rules/clear-bsd_8.RULE +++ b/src/licensedcode/data/rules/clear-bsd_8.RULE @@ -1 +1,7 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 100 +--- + BSD 3-clause Clear license \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_8.yml b/src/licensedcode/data/rules/clear-bsd_8.yml deleted file mode 100644 index a7a86797e6f..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_9.RULE b/src/licensedcode/data/rules/clear-bsd_9.RULE index 50bd06c7641..f80657179ae 100644 --- a/src/licensedcode/data/rules/clear-bsd_9.RULE +++ b/src/licensedcode/data/rules/clear-bsd_9.RULE @@ -1 +1,7 @@ +--- +license_expression: clear-bsd +is_license_tag: yes +relevance: 100 +--- + License: The Clear BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_9.yml b/src/licensedcode/data/rules/clear-bsd_9.yml deleted file mode 100644 index 33c974fe507..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus.RULE index 5c053a06025..515460a9054 100644 --- a/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus.RULE @@ -1 +1,7 @@ -Licensed under the Clear BSD license or the GPL-2 (or later) +--- +license_expression: clear-bsd OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +Licensed under the Clear BSD license or the GPL-2 (or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus.yml b/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus.yml deleted file mode 100644 index debb027d350..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus2.RULE b/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus2.RULE index 8053a2fabcf..88e50276231 100644 --- a/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus2.RULE +++ b/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus2.RULE @@ -1 +1,7 @@ - Licensed under the Clear BSD license or GPL-2 (or later). +--- +license_expression: clear-bsd OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + + Licensed under the Clear BSD license or GPL-2 (or later). \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus2.yml b/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus2.yml deleted file mode 100644 index debb027d350..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_or_gpl-2.0-plus2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clear-bsd OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clear-bsd_url_1.RULE b/src/licensedcode/data/rules/clear-bsd_url_1.RULE index 6596e00f228..82de708c15a 100644 --- a/src/licensedcode/data/rules/clear-bsd_url_1.RULE +++ b/src/licensedcode/data/rules/clear-bsd_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-clear +--- + https://spdx.org/licenses/bsd-3-clause-clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_url_1.yml b/src/licensedcode/data/rules/clear-bsd_url_1.yml deleted file mode 100644 index 02c565bb32e..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-clear diff --git a/src/licensedcode/data/rules/clear-bsd_url_2.RULE b/src/licensedcode/data/rules/clear-bsd_url_2.RULE index fafbd9fabcc..9961f771089 100644 --- a/src/licensedcode/data/rules/clear-bsd_url_2.RULE +++ b/src/licensedcode/data/rules/clear-bsd_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-clear.html +--- + https://spdx.org/licenses/bsd-3-clause-clear.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/clear-bsd_url_2.yml b/src/licensedcode/data/rules/clear-bsd_url_2.yml deleted file mode 100644 index 6c00c9c350b..00000000000 --- a/src/licensedcode/data/rules/clear-bsd_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-clear.html diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_1.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_1.RULE index 9deccfeacd2..48212249bc2 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_1.RULE @@ -1 +1,6 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +--- + CLISP-exception-2.0 CLISP exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_1.yml b/src/licensedcode/data/rules/clisp-exception-2.0_1.yml deleted file mode 100644 index 085d9a15ac4..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_2.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_2.RULE index ff2a110e0e7..3c27b6c339c 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CLISP exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_2.yml b/src/licensedcode/data/rules/clisp-exception-2.0_2.yml deleted file mode 100644 index 1ff4c3f9d2a..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_3.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_3.RULE index b33d6720794..d36490244ba 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: clisp-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CLISP-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_3.yml b/src/licensedcode/data/rules/clisp-exception-2.0_3.yml deleted file mode 100644 index b0b3c555de3..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_4.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_4.RULE index b28b17d7c43..8bf39f62702 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: clisp-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: CLISP-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_4.yml b/src/licensedcode/data/rules/clisp-exception-2.0_4.yml deleted file mode 100644 index b0b3c555de3..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_5.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_5.RULE index b71fa3c3dbd..1c7d64f1986 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CLISP-exception-2.0 +--- + https://licenses.nuget.org/CLISP-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_5.yml b/src/licensedcode/data/rules/clisp-exception-2.0_5.yml deleted file mode 100644 index 546a27fdfd7..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CLISP-exception-2.0 diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_6.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_6.RULE index 1b47bcb3057..838c77fdcc9 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CLISP-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_6.yml b/src/licensedcode/data/rules/clisp-exception-2.0_6.yml deleted file mode 100644 index 78f1dcab0c4..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_7.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_7.RULE index ed2726c7e6c..09d5e4eb0fa 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CLISP-exception-2.0 +--- + LICENSE {{CLISP-exception-2.0}} https://spdx.org/licenses/CLISP-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_7.yml b/src/licensedcode/data/rules/clisp-exception-2.0_7.yml deleted file mode 100644 index 37dbc31a60a..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CLISP-exception-2.0 diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_8.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_8.RULE index b31f0acf8ad..aa1be407582 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CLISP-exception-2.0 +--- + {{CLISP-exception-2.0}} https://spdx.org/licenses/CLISP-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_8.yml b/src/licensedcode/data/rules/clisp-exception-2.0_8.yml deleted file mode 100644 index 37dbc31a60a..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CLISP-exception-2.0 diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_url_1.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_url_1.RULE index 36b853e0c55..d3e7bf5453d 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/clisp-exception-2.0 +--- + https://spdx.org/licenses/clisp-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_url_1.yml b/src/licensedcode/data/rules/clisp-exception-2.0_url_1.yml deleted file mode 100644 index 4b91f4036f2..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/clisp-exception-2.0 diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_url_2.RULE b/src/licensedcode/data/rules/clisp-exception-2.0_url_2.RULE index 60dd971bdf5..0cb2f7e0123 100644 --- a/src/licensedcode/data/rules/clisp-exception-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/clisp-exception-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/clisp-exception-2.0.html +--- + https://spdx.org/licenses/clisp-exception-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/clisp-exception-2.0_url_2.yml b/src/licensedcode/data/rules/clisp-exception-2.0_url_2.yml deleted file mode 100644 index d1dad74ad8b..00000000000 --- a/src/licensedcode/data/rules/clisp-exception-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/clisp-exception-2.0.html diff --git a/src/licensedcode/data/rules/cmigemo.RULE b/src/licensedcode/data/rules/cmigemo.RULE index 323f33408f6..adbe24a2269 100644 --- a/src/licensedcode/data/rules/cmigemo.RULE +++ b/src/licensedcode/data/rules/cmigemo.RULE @@ -1 +1,9 @@ +--- +license_expression: cmigemo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/CMigemo +--- + http://fedoraproject.org/wiki/Licensing/CMigemo \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmigemo.yml b/src/licensedcode/data/rules/cmigemo.yml deleted file mode 100644 index f84bc37be1e..00000000000 --- a/src/licensedcode/data/rules/cmigemo.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cmigemo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/CMigemo diff --git a/src/licensedcode/data/rules/cmu-computing-services_1.RULE b/src/licensedcode/data/rules/cmu-computing-services_1.RULE index a1720155692..be895f684c7 100644 --- a/src/licensedcode/data/rules/cmu-computing-services_1.RULE +++ b/src/licensedcode/data/rules/cmu-computing-services_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cmu-computing-services +is_license_text: yes +relevance: 100 +ignorable_authors: + - Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/) +ignorable_urls: + - http://www.cmu.edu/computing +ignorable_emails: + - tech-transfer@andrew.cmu.edu +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/cmu-computing-services_1.yml b/src/licensedcode/data/rules/cmu-computing-services_1.yml deleted file mode 100644 index 94deff8cc01..00000000000 --- a/src/licensedcode/data/rules/cmu-computing-services_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cmu-computing-services -is_license_text: yes -relevance: 100 -ignorable_authors: - - Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/) -ignorable_urls: - - http://www.cmu.edu/computing -ignorable_emails: - - tech-transfer@andrew.cmu.edu diff --git a/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus.RULE index 84b38ef2150..d25550342a3 100644 --- a/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cmu-simple OR gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: Permission to use, copy, modify, and distribute this software and its documentation is hereby granted, provided that the above copyright @@ -19,5 +26,4 @@ in which case the provisions of the GPL apply INSTEAD OF those given above. 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 . - + along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus.yml b/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus.yml deleted file mode 100644 index bd535b14d06..00000000000 --- a/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cmu-simple OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus_1.RULE index 3414f8b99ce..75913122f09 100644 --- a/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cmu-simple OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: Permission to use, copy, modify, and distribute this software and its documentation is hereby granted, provided that the above copyright @@ -19,5 +27,4 @@ in which case the provisions of the GPL apply INSTEAD OF those given above. 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 . - + along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 7f80abd1394..00000000000 --- a/src/licensedcode/data/rules/cmu-simple_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cmu-simple OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/cmu-template_1.RULE b/src/licensedcode/data/rules/cmu-template_1.RULE index f4b6ee3c823..775babc1c88 100644 --- a/src/licensedcode/data/rules/cmu-template_1.RULE +++ b/src/licensedcode/data/rules/cmu-template_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cmu-template +is_license_text: yes +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works diff --git a/src/licensedcode/data/rules/cmu-template_1.yml b/src/licensedcode/data/rules/cmu-template_1.yml deleted file mode 100644 index 31c83a7e907..00000000000 --- a/src/licensedcode/data/rules/cmu-template_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cmu-template -is_license_text: yes diff --git a/src/licensedcode/data/rules/cmu-template_2.RULE b/src/licensedcode/data/rules/cmu-template_2.RULE index ac03c56fa17..d0b1f9cbd06 100644 --- a/src/licensedcode/data/rules/cmu-template_2.RULE +++ b/src/licensedcode/data/rules/cmu-template_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cmu-template +is_license_text: yes +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works diff --git a/src/licensedcode/data/rules/cmu-template_2.yml b/src/licensedcode/data/rules/cmu-template_2.yml deleted file mode 100644 index 31c83a7e907..00000000000 --- a/src/licensedcode/data/rules/cmu-template_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cmu-template -is_license_text: yes diff --git a/src/licensedcode/data/rules/cmu-template_3.RULE b/src/licensedcode/data/rules/cmu-template_3.RULE index 340473dbd1d..9de46d4e410 100644 --- a/src/licensedcode/data/rules/cmu-template_3.RULE +++ b/src/licensedcode/data/rules/cmu-template_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cmu-template +is_license_text: yes +relevance: 90 +notes: also quite close to the cmu-contributors licene +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the diff --git a/src/licensedcode/data/rules/cmu-template_3.yml b/src/licensedcode/data/rules/cmu-template_3.yml deleted file mode 100644 index fdadf96e2fb..00000000000 --- a/src/licensedcode/data/rules/cmu-template_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cmu-template -is_license_text: yes -relevance: 90 -notes: also quite close to the cmu-contributors licene diff --git a/src/licensedcode/data/rules/cmu-uc_1.RULE b/src/licensedcode/data/rules/cmu-uc_1.RULE index 1d20fa43b45..3390307f056 100644 --- a/src/licensedcode/data/rules/cmu-uc_1.RULE +++ b/src/licensedcode/data/rules/cmu-uc_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cmu-uc +is_license_notice: yes +relevance: 99 +minimum_coverage: 94 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -12,4 +19,4 @@ 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. + SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_1.yml b/src/licensedcode/data/rules/cmu-uc_1.yml deleted file mode 100644 index 87b0b6035d8..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cmu-uc -is_license_notice: yes -relevance: 99 -minimum_coverage: 94 diff --git a/src/licensedcode/data/rules/cmu-uc_10.RULE b/src/licensedcode/data/rules/cmu-uc_10.RULE index 3a40660a232..ec042cc27df 100644 --- a/src/licensedcode/data/rules/cmu-uc_10.RULE +++ b/src/licensedcode/data/rules/cmu-uc_10.RULE @@ -1 +1,8 @@ -Standard PIL License +--- +license_expression: secret-labs-2011 +is_license_reference: yes +relevance: 99 +minimum_coverage: 90 +--- + +Standard PIL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_10.yml b/src/licensedcode/data/rules/cmu-uc_10.yml deleted file mode 100644 index 3be5e240ce1..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: secret-labs-2011 -is_license_reference: yes -relevance: 99 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/cmu-uc_11.RULE b/src/licensedcode/data/rules/cmu-uc_11.RULE index be91549add3..88c53d4dcb1 100644 --- a/src/licensedcode/data/rules/cmu-uc_11.RULE +++ b/src/licensedcode/data/rules/cmu-uc_11.RULE @@ -1,5 +1,13 @@ +--- +license_expression: secret-labs-2011 +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +ignorable_urls: + - https://raw.githubusercontent.com/python-pillow/Pillow/master/LICENSE +--- + License ------- -Like PIL, Pillow is `licensed under the open source PIL Software License `_ - +Like PIL, Pillow is `licensed under the open source PIL Software License `_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_11.yml b/src/licensedcode/data/rules/cmu-uc_11.yml deleted file mode 100644 index 5b85e594027..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: secret-labs-2011 -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 -ignorable_urls: - - https://raw.githubusercontent.com/python-pillow/Pillow/master/LICENSE diff --git a/src/licensedcode/data/rules/cmu-uc_12.RULE b/src/licensedcode/data/rules/cmu-uc_12.RULE index d0e74212ba5..b940877c8ba 100644 --- a/src/licensedcode/data/rules/cmu-uc_12.RULE +++ b/src/licensedcode/data/rules/cmu-uc_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cmu-uc +is_license_text: yes +relevance: 99 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/cmu-uc_12.yml b/src/licensedcode/data/rules/cmu-uc_12.yml deleted file mode 100644 index bc354617e66..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cmu-uc -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cmu-uc_13.RULE b/src/licensedcode/data/rules/cmu-uc_13.RULE index d52e28f5aca..20cb2ff9ac1 100644 --- a/src/licensedcode/data/rules/cmu-uc_13.RULE +++ b/src/licensedcode/data/rules/cmu-uc_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cmu-uc +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/cmu-uc_13.yml b/src/licensedcode/data/rules/cmu-uc_13.yml deleted file mode 100644 index 306d4e6bc1c..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cmu-uc -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cmu-uc_14.RULE b/src/licensedcode/data/rules/cmu-uc_14.RULE index bbfb6efeeda..c15a926ac5f 100644 --- a/src/licensedcode/data/rules/cmu-uc_14.RULE +++ b/src/licensedcode/data/rules/cmu-uc_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cmu-uc +is_license_text: yes +relevance: 99 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and that both the copyright notice and this permission notice appear in supporting documentation, and that the name of (OSF) or Open Software Foundation not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. OSF DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL OSF BE LIABLE FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN 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/cmu-uc_14.yml b/src/licensedcode/data/rules/cmu-uc_14.yml deleted file mode 100644 index bc354617e66..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cmu-uc -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cmu-uc_15.RULE b/src/licensedcode/data/rules/cmu-uc_15.RULE index fb57595f5df..d8a52d61182 100644 --- a/src/licensedcode/data/rules/cmu-uc_15.RULE +++ b/src/licensedcode/data/rules/cmu-uc_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cmu-uc +is_license_text: yes +relevance: 95 +notes: note the rare "THE AUTHOR OR ANY OF HIS CURRENT OR FORMER EMPLOYERS" +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/cmu-uc_15.yml b/src/licensedcode/data/rules/cmu-uc_15.yml deleted file mode 100644 index 606aa0d6a4e..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cmu-uc -is_license_text: yes -relevance: 95 -notes: note the rare "THE AUTHOR OR ANY OF HIS CURRENT OR FORMER EMPLOYERS" diff --git a/src/licensedcode/data/rules/cmu-uc_16.RULE b/src/licensedcode/data/rules/cmu-uc_16.RULE index 307c1ea32eb..f64dd93efc6 100644 --- a/src/licensedcode/data/rules/cmu-uc_16.RULE +++ b/src/licensedcode/data/rules/cmu-uc_16.RULE @@ -1 +1,10 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CMU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_16.yml b/src/licensedcode/data/rules/cmu-uc_16.yml deleted file mode 100644 index 11c92f1237a..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cmu-uc_17.RULE b/src/licensedcode/data/rules/cmu-uc_17.RULE index 5a91b70e7d8..3522c3336e1 100644 --- a/src/licensedcode/data/rules/cmu-uc_17.RULE +++ b/src/licensedcode/data/rules/cmu-uc_17.RULE @@ -1 +1,10 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CMU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_17.yml b/src/licensedcode/data/rules/cmu-uc_17.yml deleted file mode 100644 index 11c92f1237a..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cmu-uc_18.RULE b/src/licensedcode/data/rules/cmu-uc_18.RULE index f781dfe04e6..ac90cbf668a 100644 --- a/src/licensedcode/data/rules/cmu-uc_18.RULE +++ b/src/licensedcode/data/rules/cmu-uc_18.RULE @@ -1 +1,10 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT-CMU CMU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_18.yml b/src/licensedcode/data/rules/cmu-uc_18.yml deleted file mode 100644 index 11c92f1237a..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cmu-uc_19.RULE b/src/licensedcode/data/rules/cmu-uc_19.RULE index 824349c05c2..1cc5169281f 100644 --- a/src/licensedcode/data/rules/cmu-uc_19.RULE +++ b/src/licensedcode/data/rules/cmu-uc_19.RULE @@ -1 +1,10 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CMU License MIT-CMU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_19.yml b/src/licensedcode/data/rules/cmu-uc_19.yml deleted file mode 100644 index 11c92f1237a..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cmu-uc_2.RULE b/src/licensedcode/data/rules/cmu-uc_2.RULE index 337eaa7feef..13685649a8e 100644 --- a/src/licensedcode/data/rules/cmu-uc_2.RULE +++ b/src/licensedcode/data/rules/cmu-uc_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cmu-uc +is_license_text: yes +relevance: 99 +referenced_filenames: + - COPYING +--- + Portions of this file are subject to the following copyright(s). See the Net-SNMP's COPYING file for more details and other copyrights that may apply: diff --git a/src/licensedcode/data/rules/cmu-uc_2.yml b/src/licensedcode/data/rules/cmu-uc_2.yml deleted file mode 100644 index 3291926eb42..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cmu-uc -is_license_text: yes -relevance: 99 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/cmu-uc_20.RULE b/src/licensedcode/data/rules/cmu-uc_20.RULE index c176fde4d42..a7963828ddf 100644 --- a/src/licensedcode/data/rules/cmu-uc_20.RULE +++ b/src/licensedcode/data/rules/cmu-uc_20.RULE @@ -1 +1,10 @@ +--- +license_expression: cmu-uc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT-CMU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_20.yml b/src/licensedcode/data/rules/cmu-uc_20.yml deleted file mode 100644 index d4df5ff5af9..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cmu-uc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cmu-uc_21.RULE b/src/licensedcode/data/rules/cmu-uc_21.RULE index e7b9af57299..a6a3506def9 100644 --- a/src/licensedcode/data/rules/cmu-uc_21.RULE +++ b/src/licensedcode/data/rules/cmu-uc_21.RULE @@ -1 +1,10 @@ +--- +license_expression: cmu-uc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CMU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_21.yml b/src/licensedcode/data/rules/cmu-uc_21.yml deleted file mode 100644 index d4df5ff5af9..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cmu-uc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cmu-uc_22.RULE b/src/licensedcode/data/rules/cmu-uc_22.RULE index b4763169372..23d5471b6d6 100644 --- a/src/licensedcode/data/rules/cmu-uc_22.RULE +++ b/src/licensedcode/data/rules/cmu-uc_22.RULE @@ -1 +1,10 @@ +--- +license_expression: cmu-uc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MIT-CMU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_22.yml b/src/licensedcode/data/rules/cmu-uc_22.yml deleted file mode 100644 index d4df5ff5af9..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cmu-uc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cmu-uc_23.RULE b/src/licensedcode/data/rules/cmu-uc_23.RULE index 7ea73ffb20b..469d6c4327d 100644 --- a/src/licensedcode/data/rules/cmu-uc_23.RULE +++ b/src/licensedcode/data/rules/cmu-uc_23.RULE @@ -1 +1,9 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MIT-CMU +--- + https://licenses.nuget.org/MIT-CMU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_23.yml b/src/licensedcode/data/rules/cmu-uc_23.yml deleted file mode 100644 index 30133abfb0b..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MIT-CMU diff --git a/src/licensedcode/data/rules/cmu-uc_24.RULE b/src/licensedcode/data/rules/cmu-uc_24.RULE index 7bed450690a..a0b9ee81f38 100644 --- a/src/licensedcode/data/rules/cmu-uc_24.RULE +++ b/src/licensedcode/data/rules/cmu-uc_24.RULE @@ -1 +1,7 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MIT-CMU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_24.yml b/src/licensedcode/data/rules/cmu-uc_24.yml deleted file mode 100644 index 2c461fcd4f8..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cmu-uc_25.RULE b/src/licensedcode/data/rules/cmu-uc_25.RULE index 83e88414891..5869950e01d 100644 --- a/src/licensedcode/data/rules/cmu-uc_25.RULE +++ b/src/licensedcode/data/rules/cmu-uc_25.RULE @@ -1 +1,9 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-CMU +--- + {{MIT-CMU}} https://spdx.org/licenses/MIT-CMU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_25.yml b/src/licensedcode/data/rules/cmu-uc_25.yml deleted file mode 100644 index 9be08d7f62d..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-CMU diff --git a/src/licensedcode/data/rules/cmu-uc_26.RULE b/src/licensedcode/data/rules/cmu-uc_26.RULE index 63bdae402eb..50745733542 100644 --- a/src/licensedcode/data/rules/cmu-uc_26.RULE +++ b/src/licensedcode/data/rules/cmu-uc_26.RULE @@ -1 +1,9 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-CMU +--- + LICENSE {{MIT-CMU}} https://spdx.org/licenses/MIT-CMU \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_26.yml b/src/licensedcode/data/rules/cmu-uc_26.yml deleted file mode 100644 index 9be08d7f62d..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-CMU diff --git a/src/licensedcode/data/rules/cmu-uc_3.RULE b/src/licensedcode/data/rules/cmu-uc_3.RULE index bf402232863..c6db239dd03 100644 --- a/src/licensedcode/data/rules/cmu-uc_3.RULE +++ b/src/licensedcode/data/rules/cmu-uc_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +relevance: 90 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that @@ -12,4 +18,4 @@ IN NO EVENT SHALL CMU BE LIABLE FOR ANY SPECIAL, 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_3.yml b/src/licensedcode/data/rules/cmu-uc_3.yml deleted file mode 100644 index 478a8f8338c..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cmu-uc_4.RULE b/src/licensedcode/data/rules/cmu-uc_4.RULE index 373fd6bd702..8ad1126185a 100644 --- a/src/licensedcode/data/rules/cmu-uc_4.RULE +++ b/src/licensedcode/data/rules/cmu-uc_4.RULE @@ -1 +1,7 @@ -CMU/UCD copyright notice: (BSD like) \ No newline at end of file +--- +license_expression: cmu-uc +is_license_notice: yes +relevance: 99 +--- + +CMU/UCD copyright notice: (BSD like) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_4.yml b/src/licensedcode/data/rules/cmu-uc_4.yml deleted file mode 100644 index fe9d3f5ec07..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cmu-uc -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cmu-uc_5.RULE b/src/licensedcode/data/rules/cmu-uc_5.RULE index 5f0446d5885..8b336ef0fdf 100644 --- a/src/licensedcode/data/rules/cmu-uc_5.RULE +++ b/src/licensedcode/data/rules/cmu-uc_5.RULE @@ -1 +1,7 @@ +--- +license_expression: secret-labs-2011 +is_license_reference: yes +relevance: 95 +--- + under PIL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_5.yml b/src/licensedcode/data/rules/cmu-uc_5.yml deleted file mode 100644 index 6ae292fb834..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: secret-labs-2011 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/cmu-uc_6.RULE b/src/licensedcode/data/rules/cmu-uc_6.RULE index 0c826827ab5..5ff923552ba 100644 --- a/src/licensedcode/data/rules/cmu-uc_6.RULE +++ b/src/licensedcode/data/rules/cmu-uc_6.RULE @@ -1 +1,8 @@ +--- +license_expression: secret-labs-2011 +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +--- + Like PIL, Pillow is licensed under the open source PIL Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_6.yml b/src/licensedcode/data/rules/cmu-uc_6.yml deleted file mode 100644 index b419b6145b1..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: secret-labs-2011 -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/cmu-uc_60.RULE b/src/licensedcode/data/rules/cmu-uc_60.RULE index 45a0e79955f..30e7e5224e4 100644 --- a/src/licensedcode/data/rules/cmu-uc_60.RULE +++ b/src/licensedcode/data/rules/cmu-uc_60.RULE @@ -1,2 +1,8 @@ +--- +license_expression: secret-labs-2011 +is_license_notice: yes +relevance: 99 +--- + Originally released under LGPL. Graciously donated to PIL in -March 2009, for distribution under the standard PIL license +March 2009, for distribution under the standard PIL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_60.yml b/src/licensedcode/data/rules/cmu-uc_60.yml deleted file mode 100644 index 5cee6ad1d40..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: secret-labs-2011 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/cmu-uc_7.RULE b/src/licensedcode/data/rules/cmu-uc_7.RULE index 410af17860a..4b880cd38d3 100644 --- a/src/licensedcode/data/rules/cmu-uc_7.RULE +++ b/src/licensedcode/data/rules/cmu-uc_7.RULE @@ -1 +1,8 @@ +--- +license_expression: secret-labs-2011 +is_license_reference: yes +relevance: 99 +minimum_coverage: 90 +--- + PIL Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_7.yml b/src/licensedcode/data/rules/cmu-uc_7.yml deleted file mode 100644 index 3be5e240ce1..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: secret-labs-2011 -is_license_reference: yes -relevance: 99 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/cmu-uc_70.RULE b/src/licensedcode/data/rules/cmu-uc_70.RULE index b3eed197b81..d45b57aabc2 100644 --- a/src/licensedcode/data/rules/cmu-uc_70.RULE +++ b/src/licensedcode/data/rules/cmu-uc_70.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cmu-uc +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and that both the copyright diff --git a/src/licensedcode/data/rules/cmu-uc_70.yml b/src/licensedcode/data/rules/cmu-uc_70.yml deleted file mode 100644 index 306d4e6bc1c..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cmu-uc -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cmu-uc_8.RULE b/src/licensedcode/data/rules/cmu-uc_8.RULE index faad39eac66..5c3cc20a3e2 100644 --- a/src/licensedcode/data/rules/cmu-uc_8.RULE +++ b/src/licensedcode/data/rules/cmu-uc_8.RULE @@ -1 +1,8 @@ +--- +license_expression: secret-labs-2011 +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +--- + Pillow is licensed under the open source PIL Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_8.yml b/src/licensedcode/data/rules/cmu-uc_8.yml deleted file mode 100644 index b419b6145b1..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: secret-labs-2011 -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/cmu-uc_89.RULE b/src/licensedcode/data/rules/cmu-uc_89.RULE index 49f176eaaf6..3a5e0eb4587 100644 --- a/src/licensedcode/data/rules/cmu-uc_89.RULE +++ b/src/licensedcode/data/rules/cmu-uc_89.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cmu-uc +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and that both the copyright diff --git a/src/licensedcode/data/rules/cmu-uc_89.yml b/src/licensedcode/data/rules/cmu-uc_89.yml deleted file mode 100644 index 306d4e6bc1c..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cmu-uc -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cmu-uc_9.RULE b/src/licensedcode/data/rules/cmu-uc_9.RULE index d2bc21156c5..ff38215f9b5 100644 --- a/src/licensedcode/data/rules/cmu-uc_9.RULE +++ b/src/licensedcode/data/rules/cmu-uc_9.RULE @@ -1 +1,8 @@ -License: Standard PIL License +--- +license_expression: secret-labs-2011 +is_license_tag: yes +relevance: 99 +minimum_coverage: 90 +--- + +License: Standard PIL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_9.yml b/src/licensedcode/data/rules/cmu-uc_9.yml deleted file mode 100644 index 79b117c1952..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: secret-labs-2011 -is_license_tag: yes -relevance: 99 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation.RULE b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation.RULE index b86592d13bf..54c7f5009f4 100644 --- a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation.RULE +++ b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cmu-uc +is_license_notice: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission @@ -10,4 +15,4 @@ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS; IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY SPECIAL, 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. +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation.yml b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation.yml deleted file mode 100644 index 4f27a039b0e..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cmu-uc -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation2.RULE b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation2.RULE index e75df58be68..dfbf1a80c1d 100644 --- a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation2.RULE +++ b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cmu-uc +is_license_text: yes +--- + By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: diff --git a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation2.yml b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation2.yml deleted file mode 100644 index aef4d137b61..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cmu-uc -is_license_text: yes diff --git a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation3.RULE b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation3.RULE index f032bbad569..b3c9507913b 100644 --- a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation3.RULE +++ b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cmu-uc +is_license_notice: yes +--- + Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that diff --git a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation3.yml b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation3.yml deleted file mode 100644 index 4f27a039b0e..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cmu-uc -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation4.RULE b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation4.RULE index 2d9752f1894..ba990c06e2d 100644 --- a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation4.RULE +++ b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cmu-uc +is_license_notice: yes +--- + By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: Permission to use, copy, modify, and distribute this software and its associated documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies, and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of the copyright holder not be used in advertising or publicity pertaining to distribution of the software without specific, written permission. diff --git a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation4.yml b/src/licensedcode/data/rules/cmu-uc_historical_with_documentation4.yml deleted file mode 100644 index 4f27a039b0e..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_historical_with_documentation4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cmu-uc -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cmu-uc_url_1.RULE b/src/licensedcode/data/rules/cmu-uc_url_1.RULE index ebe0182b231..4160e75bcb5 100644 --- a/src/licensedcode/data/rules/cmu-uc_url_1.RULE +++ b/src/licensedcode/data/rules/cmu-uc_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-cmu +--- + https://spdx.org/licenses/mit-cmu \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_url_1.yml b/src/licensedcode/data/rules/cmu-uc_url_1.yml deleted file mode 100644 index 24bc35b94ec..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-cmu diff --git a/src/licensedcode/data/rules/cmu-uc_url_2.RULE b/src/licensedcode/data/rules/cmu-uc_url_2.RULE index 861edf8be86..a09adb7c127 100644 --- a/src/licensedcode/data/rules/cmu-uc_url_2.RULE +++ b/src/licensedcode/data/rules/cmu-uc_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-cmu.html +--- + https://spdx.org/licenses/mit-cmu.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cmu-uc_url_2.yml b/src/licensedcode/data/rules/cmu-uc_url_2.yml deleted file mode 100644 index b935405af6e..00000000000 --- a/src/licensedcode/data/rules/cmu-uc_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-cmu.html diff --git a/src/licensedcode/data/rules/cnri-jython_1.RULE b/src/licensedcode/data/rules/cnri-jython_1.RULE index 1d2fc8548c6..90d93d59039 100644 --- a/src/licensedcode/data/rules/cnri-jython_1.RULE +++ b/src/licensedcode/data/rules/cnri-jython_1.RULE @@ -1 +1,6 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +--- + CNRI Jython License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_1.yml b/src/licensedcode/data/rules/cnri-jython_1.yml deleted file mode 100644 index 6890a311445..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cnri-jython_10.RULE b/src/licensedcode/data/rules/cnri-jython_10.RULE index b4494492fd7..fc888f28e68 100644 --- a/src/licensedcode/data/rules/cnri-jython_10.RULE +++ b/src/licensedcode/data/rules/cnri-jython_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CNRI-Jython +--- + LICENSE {{CNRI-Jython}} https://spdx.org/licenses/CNRI-Jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_10.yml b/src/licensedcode/data/rules/cnri-jython_10.yml deleted file mode 100644 index ce52f9646d8..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CNRI-Jython diff --git a/src/licensedcode/data/rules/cnri-jython_11.RULE b/src/licensedcode/data/rules/cnri-jython_11.RULE index 01a34e1a213..b1eb42b0510 100644 --- a/src/licensedcode/data/rules/cnri-jython_11.RULE +++ b/src/licensedcode/data/rules/cnri-jython_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CNRI-Jython +--- + {{CNRI-Jython}} https://spdx.org/licenses/CNRI-Jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_11.yml b/src/licensedcode/data/rules/cnri-jython_11.yml deleted file mode 100644 index ce52f9646d8..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CNRI-Jython diff --git a/src/licensedcode/data/rules/cnri-jython_2.RULE b/src/licensedcode/data/rules/cnri-jython_2.RULE index fc286fa6149..b1d94a10370 100644 --- a/src/licensedcode/data/rules/cnri-jython_2.RULE +++ b/src/licensedcode/data/rules/cnri-jython_2.RULE @@ -1 +1,6 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +--- + CNRI-Jython CNRI Jython License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_2.yml b/src/licensedcode/data/rules/cnri-jython_2.yml deleted file mode 100644 index 6890a311445..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cnri-jython_3.RULE b/src/licensedcode/data/rules/cnri-jython_3.RULE index 3cd6e8a7b0a..df6a132b03c 100644 --- a/src/licensedcode/data/rules/cnri-jython_3.RULE +++ b/src/licensedcode/data/rules/cnri-jython_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CNRI Jython License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_3.yml b/src/licensedcode/data/rules/cnri-jython_3.yml deleted file mode 100644 index c54d77b9ec2..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-jython_4.RULE b/src/licensedcode/data/rules/cnri-jython_4.RULE index ca933bec69f..950bbd2cfc8 100644 --- a/src/licensedcode/data/rules/cnri-jython_4.RULE +++ b/src/licensedcode/data/rules/cnri-jython_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CNRI Jython License CNRI-Jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_4.yml b/src/licensedcode/data/rules/cnri-jython_4.yml deleted file mode 100644 index c54d77b9ec2..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-jython_5.RULE b/src/licensedcode/data/rules/cnri-jython_5.RULE index c0df4f0db43..f99e3a6d982 100644 --- a/src/licensedcode/data/rules/cnri-jython_5.RULE +++ b/src/licensedcode/data/rules/cnri-jython_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-jython +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CNRI-Jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_5.yml b/src/licensedcode/data/rules/cnri-jython_5.yml deleted file mode 100644 index 1f1223a84b8..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-jython -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-jython_6.RULE b/src/licensedcode/data/rules/cnri-jython_6.RULE index 32e9c27ec26..4fda02eeb9b 100644 --- a/src/licensedcode/data/rules/cnri-jython_6.RULE +++ b/src/licensedcode/data/rules/cnri-jython_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-jython +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CNRI Jython License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_6.yml b/src/licensedcode/data/rules/cnri-jython_6.yml deleted file mode 100644 index 1f1223a84b8..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-jython -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-jython_7.RULE b/src/licensedcode/data/rules/cnri-jython_7.RULE index 0b407b014e9..0137ea993b5 100644 --- a/src/licensedcode/data/rules/cnri-jython_7.RULE +++ b/src/licensedcode/data/rules/cnri-jython_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-jython +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CNRI-Jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_7.yml b/src/licensedcode/data/rules/cnri-jython_7.yml deleted file mode 100644 index 1f1223a84b8..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-jython -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-jython_8.RULE b/src/licensedcode/data/rules/cnri-jython_8.RULE index 66b4723d954..1e302c8111d 100644 --- a/src/licensedcode/data/rules/cnri-jython_8.RULE +++ b/src/licensedcode/data/rules/cnri-jython_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CNRI-Jython +--- + https://licenses.nuget.org/CNRI-Jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_8.yml b/src/licensedcode/data/rules/cnri-jython_8.yml deleted file mode 100644 index 4551e574dca..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CNRI-Jython diff --git a/src/licensedcode/data/rules/cnri-jython_9.RULE b/src/licensedcode/data/rules/cnri-jython_9.RULE index 12d59facf0d..34f159937f5 100644 --- a/src/licensedcode/data/rules/cnri-jython_9.RULE +++ b/src/licensedcode/data/rules/cnri-jython_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CNRI-Jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_9.yml b/src/licensedcode/data/rules/cnri-jython_9.yml deleted file mode 100644 index bd9e54f2d7d..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cnri-jython_url_1.RULE b/src/licensedcode/data/rules/cnri-jython_url_1.RULE index d75b8f06f20..d7730f6b96b 100644 --- a/src/licensedcode/data/rules/cnri-jython_url_1.RULE +++ b/src/licensedcode/data/rules/cnri-jython_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cnri-jython +--- + https://spdx.org/licenses/cnri-jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_url_1.yml b/src/licensedcode/data/rules/cnri-jython_url_1.yml deleted file mode 100644 index 7b02ae2a3e4..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cnri-jython diff --git a/src/licensedcode/data/rules/cnri-jython_url_2.RULE b/src/licensedcode/data/rules/cnri-jython_url_2.RULE index d29ed15827c..216452f07ff 100644 --- a/src/licensedcode/data/rules/cnri-jython_url_2.RULE +++ b/src/licensedcode/data/rules/cnri-jython_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cnri-jython.html +--- + https://spdx.org/licenses/cnri-jython.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-jython_url_2.yml b/src/licensedcode/data/rules/cnri-jython_url_2.yml deleted file mode 100644 index c1fdf13496f..00000000000 --- a/src/licensedcode/data/rules/cnri-jython_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cnri-jython.html diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1.RULE index 752e54b6d2d..f5cd9b56057 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_text: yes +notes: CNRI Python 1.6.1 +ignorable_copyrights: + - Copyright (c) 1995-2001 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 +--- + IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6.1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. @@ -16,4 +28,4 @@ BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHE 7. This License Agreement shall be governed by the federal intellectual property law of the United States, including without limitation the federal copyright law, and, to the extent such U.S. federal law does not apply, by the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions. Notwithstanding the foregoing, with regard to derivative works based on Python 1.6.1 that incorporate non-separable material that was previously distributed under the GNU General Public License (GPL), the law of the Commonwealth of Virginia shall govern this License Agreement only as to issues arising under or with respect to Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. -8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6.1, Licensee agrees to be bound by the terms and conditions of this License Agreement. +8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6.1, Licensee agrees to be bound by the terms and conditions of this License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1.yml b/src/licensedcode/data/rules/cnri-python-1.6.1.yml deleted file mode 100644 index 695946b4b6b..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_text: yes -notes: CNRI Python 1.6.1 -ignorable_copyrights: - - Copyright (c) 1995-2001 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_1.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_1.RULE index 7229bd209f1..af7331d063f 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_1.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_1.RULE @@ -1 +1,6 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +--- + CNRI Open Source License Agreement for Python 1.6.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_1.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_1.yml deleted file mode 100644 index 4799e819762..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_10.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_10.RULE index 01d86698562..22ff9f7772f 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_10.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_10.RULE @@ -1 +1,7 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CNRI-Python-GPL-Compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_10.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_10.yml deleted file mode 100644 index ff44cc0cbab..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_11.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_11.RULE index 088a3313718..6c522087526 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_11.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CNRI-Python-GPL-Compatible +--- + LICENSE {{CNRI-Python-GPL-Compatible}} https://spdx.org/licenses/CNRI-Python-GPL-Compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_11.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_11.yml deleted file mode 100644 index 3ed4637a37c..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CNRI-Python-GPL-Compatible diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_12.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_12.RULE index eb09f78a2a6..94565a4c8d1 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_12.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CNRI-Python-GPL-Compatible +--- + {{CNRI-Python-GPL-Compatible}} https://spdx.org/licenses/CNRI-Python-GPL-Compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_12.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_12.yml deleted file mode 100644 index 3ed4637a37c..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CNRI-Python-GPL-Compatible diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_2.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_2.RULE index f4610c9bad7..d89f72a14ce 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_2.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CNRI Python Open Source GPL Compatible License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_2.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_2.yml deleted file mode 100644 index 68aade96f62..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_3.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_3.RULE index b03fff40014..e77c2133f5d 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_3.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CNRI Python Open Source GPL Compatible License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_3.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_3.yml deleted file mode 100644 index 68aade96f62..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_4.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_4.RULE index 337ff692ae6..fed4c2f708b 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_4.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CNRI-Python-GPL-Compatible CNRI Python Open Source GPL Compatible License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_4.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_4.yml deleted file mode 100644 index 68aade96f62..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_5.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_5.RULE index 1e1eae47169..cfd07055f9c 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_5.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CNRI Python Open Source GPL Compatible License Agreement CNRI-Python-GPL-Compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_5.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_5.yml deleted file mode 100644 index 68aade96f62..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_6.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_6.RULE index bd27d206dc7..77fd2d16556 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_6.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CNRI-Python-GPL-Compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_6.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_6.yml deleted file mode 100644 index cc795ed6c27..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_7.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_7.RULE index 98e0355f3a7..c65e2e6aa39 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_7.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CNRI Python Open Source GPL Compatible License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_7.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_7.yml deleted file mode 100644 index cc795ed6c27..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_8.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_8.RULE index 7efacea514e..cc4d5683c1d 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_8.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CNRI-Python-GPL-Compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_8.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_8.yml deleted file mode 100644 index cc795ed6c27..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_9.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_9.RULE index 183feb25cb3..729352b28a2 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_9.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_9.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CNRI-Python-GPL-Compatible +--- + https://licenses.nuget.org/CNRI-Python-GPL-Compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_9.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_9.yml deleted file mode 100644 index 5734b819836..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CNRI-Python-GPL-Compatible diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_url_1.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_url_1.RULE index 580e9378e0f..cc37647894d 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_url_1.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cnri-python-gpl-compatible +--- + https://spdx.org/licenses/cnri-python-gpl-compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_url_1.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_url_1.yml deleted file mode 100644 index 74536d25104..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cnri-python-gpl-compatible diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_url_2.RULE b/src/licensedcode/data/rules/cnri-python-1.6.1_url_2.RULE index aa9472962cf..e36bc765d3a 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_url_2.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cnri-python-gpl-compatible.html +--- + https://spdx.org/licenses/cnri-python-gpl-compatible.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.1_url_2.yml b/src/licensedcode/data/rules/cnri-python-1.6.1_url_2.yml deleted file mode 100644 index 99221e9c31f..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cnri-python-gpl-compatible.html diff --git a/src/licensedcode/data/rules/cnri-python-1.6.RULE b/src/licensedcode/data/rules/cnri-python-1.6.RULE index 55367c8c696..56a8cbb9f98 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/CNRI-Python +--- + http://spdx.org/licenses/CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6.SPDX.RULE b/src/licensedcode/data/rules/cnri-python-1.6.SPDX.RULE index dc7fdab50fd..139cea7fbd5 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6.SPDX.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6.SPDX.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cnri-python-1.6 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://hdl.handle.net/1895.22/1011 + - http://www.python.org/ +--- + CNRI OPEN SOURCE LICENSE AGREEMENT IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. diff --git a/src/licensedcode/data/rules/cnri-python-1.6.SPDX.yml b/src/licensedcode/data/rules/cnri-python-1.6.SPDX.yml deleted file mode 100644 index 16fe91fa130..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.SPDX.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://hdl.handle.net/1895.22/1011 - - http://www.python.org/ diff --git a/src/licensedcode/data/rules/cnri-python-1.6.yml b/src/licensedcode/data/rules/cnri-python-1.6.yml deleted file mode 100644 index e28a9009c00..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/CNRI-Python diff --git a/src/licensedcode/data/rules/cnri-python-1.6_1.RULE b/src/licensedcode/data/rules/cnri-python-1.6_1.RULE index e2e673bb244..f510fc8e0e3 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_1.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cnri-python-1.6 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1995-2000 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1012 + - http://www.python.org/ +--- + IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on September 5, 2000 ("Python 1.6"). diff --git a/src/licensedcode/data/rules/cnri-python-1.6_1.yml b/src/licensedcode/data/rules/cnri-python-1.6_1.yml deleted file mode 100644 index d0d034bd276..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1995-2000 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1012 - - http://www.python.org/ diff --git a/src/licensedcode/data/rules/cnri-python-1.6_10.RULE b/src/licensedcode/data/rules/cnri-python-1.6_10.RULE index 856f6774e92..26a76f4d950 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_10.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_10.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CNRI Python License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_10.yml b/src/licensedcode/data/rules/cnri-python-1.6_10.yml deleted file mode 100644 index 9d870304f5d..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6_11.RULE b/src/licensedcode/data/rules/cnri-python-1.6_11.RULE index 8a818b58944..6b0fdf049bd 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_11.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_11.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CNRI Python License CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_11.yml b/src/licensedcode/data/rules/cnri-python-1.6_11.yml deleted file mode 100644 index 9d870304f5d..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6_12.RULE b/src/licensedcode/data/rules/cnri-python-1.6_12.RULE index 43cd021cfdc..1ff6e1b3c44 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_12.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_12.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_12.yml b/src/licensedcode/data/rules/cnri-python-1.6_12.yml deleted file mode 100644 index 250dba00e9c..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6_13.RULE b/src/licensedcode/data/rules/cnri-python-1.6_13.RULE index c701f57bb51..76b074ab29a 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_13.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_13.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CNRI Python License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_13.yml b/src/licensedcode/data/rules/cnri-python-1.6_13.yml deleted file mode 100644 index 250dba00e9c..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6_14.RULE b/src/licensedcode/data/rules/cnri-python-1.6_14.RULE index 03b1a734f25..ac256353c40 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_14.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_14.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_14.yml b/src/licensedcode/data/rules/cnri-python-1.6_14.yml deleted file mode 100644 index 250dba00e9c..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cnri-python-1.6_15.RULE b/src/licensedcode/data/rules/cnri-python-1.6_15.RULE index 5614594186c..79481be5106 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_15.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CNRI-Python +--- + https://licenses.nuget.org/CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_15.yml b/src/licensedcode/data/rules/cnri-python-1.6_15.yml deleted file mode 100644 index 40385eb406a..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CNRI-Python diff --git a/src/licensedcode/data/rules/cnri-python-1.6_16.RULE b/src/licensedcode/data/rules/cnri-python-1.6_16.RULE index b84f255857d..2ff9544ffe4 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_16.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_16.RULE @@ -1 +1,7 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_16.yml b/src/licensedcode/data/rules/cnri-python-1.6_16.yml deleted file mode 100644 index f5e781e83bb..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cnri-python-1.6_17.RULE b/src/licensedcode/data/rules/cnri-python-1.6_17.RULE index 71fa4374356..a505b9bfbdb 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_17.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CNRI-Python +--- + {{CNRI-Python}} https://spdx.org/licenses/CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_17.yml b/src/licensedcode/data/rules/cnri-python-1.6_17.yml deleted file mode 100644 index 930c29f8c12..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CNRI-Python diff --git a/src/licensedcode/data/rules/cnri-python-1.6_18.RULE b/src/licensedcode/data/rules/cnri-python-1.6_18.RULE index d6c51215fa4..fcf264835dd 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_18.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CNRI-Python +--- + LICENSE {{CNRI-Python}} https://spdx.org/licenses/CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_18.yml b/src/licensedcode/data/rules/cnri-python-1.6_18.yml deleted file mode 100644 index 930c29f8c12..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CNRI-Python diff --git a/src/licensedcode/data/rules/cnri-python-1.6_2.RULE b/src/licensedcode/data/rules/cnri-python-1.6_2.RULE index 2471fae9ff0..cfebde976bc 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_2.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/CNRI-Python +--- + http://www.opensource.org/licenses/CNRI-Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_2.yml b/src/licensedcode/data/rules/cnri-python-1.6_2.yml deleted file mode 100644 index 7ff80592e1b..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/CNRI-Python diff --git a/src/licensedcode/data/rules/cnri-python-1.6_3.RULE b/src/licensedcode/data/rules/cnri-python-1.6_3.RULE index 920b25d0b7b..bc98e0ade9f 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_3.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_3.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.handle.net/python_licenses/python1.6_9-5-00.html +--- + http://www.handle.net/python_licenses/python1.6_9-5-00.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_3.yml b/src/licensedcode/data/rules/cnri-python-1.6_3.yml deleted file mode 100644 index f7b7b247b83..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.handle.net/python_licenses/python1.6_9-5-00.html diff --git a/src/licensedcode/data/rules/cnri-python-1.6_4.RULE b/src/licensedcode/data/rules/cnri-python-1.6_4.RULE index 7f0d2db732a..126859cea3f 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_4.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_4.RULE @@ -1 +1,7 @@ -CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT \ No newline at end of file +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +--- + +CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_4.yml b/src/licensedcode/data/rules/cnri-python-1.6_4.yml deleted file mode 100644 index f5e781e83bb..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cnri-python-1.6_5.RULE b/src/licensedcode/data/rules/cnri-python-1.6_5.RULE index d38cdcb95b1..a40af3abc0c 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_5.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +--- + CNRI Python 1.6 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_5.yml b/src/licensedcode/data/rules/cnri-python-1.6_5.yml deleted file mode 100644 index f5e781e83bb..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cnri-python-1.6_6.RULE b/src/licensedcode/data/rules/cnri-python-1.6_6.RULE index 948498cb6df..2d4f037a111 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_6.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_6.RULE @@ -1 +1,7 @@ +--- +license_expression: cnri-python-1.6 +is_license_notice: yes +relevance: 100 +--- + library can be redistributed under CNRI's Python 1.6 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_6.yml b/src/licensedcode/data/rules/cnri-python-1.6_6.yml deleted file mode 100644 index 1133dfa8171..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cnri-python-1.6_7.RULE b/src/licensedcode/data/rules/cnri-python-1.6_7.RULE index 58a12dc0511..1c31d0e59a7 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_7.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_7.RULE @@ -1 +1,7 @@ +--- +license_expression: cnri-python-1.6 +is_license_notice: yes +relevance: 100 +--- + under CNRI's Python 1.6 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_7.yml b/src/licensedcode/data/rules/cnri-python-1.6_7.yml deleted file mode 100644 index 1133dfa8171..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cnri-python-1.6_8.RULE b/src/licensedcode/data/rules/cnri-python-1.6_8.RULE index 656c5d3d4f7..a39462b8e81 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_8.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_8.RULE @@ -1 +1,6 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +--- + CNRI Python License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_8.yml b/src/licensedcode/data/rules/cnri-python-1.6_8.yml deleted file mode 100644 index 14a3c80a13a..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cnri-python-1.6_9.RULE b/src/licensedcode/data/rules/cnri-python-1.6_9.RULE index 853eefea702..467f7ee55cc 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_9.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_9.RULE @@ -1 +1,6 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +--- + CNRI-Python CNRI Python License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_9.yml b/src/licensedcode/data/rules/cnri-python-1.6_9.yml deleted file mode 100644 index 14a3c80a13a..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/cnri-python-1.6_url_1.RULE b/src/licensedcode/data/rules/cnri-python-1.6_url_1.RULE index c02f1d1dd9c..5abedc586fd 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_url_1.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cnri-python +--- + https://spdx.org/licenses/cnri-python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_url_1.yml b/src/licensedcode/data/rules/cnri-python-1.6_url_1.yml deleted file mode 100644 index 484f82e5309..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cnri-python diff --git a/src/licensedcode/data/rules/cnri-python-1.6_url_2.RULE b/src/licensedcode/data/rules/cnri-python-1.6_url_2.RULE index 17d87549fdc..54bc249c815 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_url_2.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cnri-python.html +--- + https://spdx.org/licenses/cnri-python.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_url_2.yml b/src/licensedcode/data/rules/cnri-python-1.6_url_2.yml deleted file mode 100644 index 135939d39df..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cnri-python.html diff --git a/src/licensedcode/data/rules/cnri-python-1.6_url_glc_151.RULE b/src/licensedcode/data/rules/cnri-python-1.6_url_glc_151.RULE index edbf9dbadc2..49fbda4b206 100644 --- a/src/licensedcode/data/rules/cnri-python-1.6_url_glc_151.RULE +++ b/src/licensedcode/data/rules/cnri-python-1.6_url_glc_151.RULE @@ -1 +1,9 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/cnri-python +--- + https://www.opensource.org/licenses/cnri-python \ No newline at end of file diff --git a/src/licensedcode/data/rules/cnri-python-1.6_url_glc_151.yml b/src/licensedcode/data/rules/cnri-python-1.6_url_glc_151.yml deleted file mode 100644 index 545f2128cc1..00000000000 --- a/src/licensedcode/data/rules/cnri-python-1.6_url_glc_151.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/cnri-python diff --git a/src/licensedcode/data/rules/cockroach_1.RULE b/src/licensedcode/data/rules/cockroach_1.RULE index 6acff3cd0eb..beaf3205469 100644 --- a/src/licensedcode/data/rules/cockroach_1.RULE +++ b/src/licensedcode/data/rules/cockroach_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: cockroach +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - (c) CockroachDB Enterprise Edition +ignorable_holders: + - CockroachDB Enterprise Edition +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://cla-assistant.io/cockroachdb/cockroach + - https://cockroachlabs.com/pricing + - https://github.com/cockroachdb/cockroach +--- + CockroachDB Community License Agreement Please read this CockroachDB Community License Agreement (the "Agreement") diff --git a/src/licensedcode/data/rules/cockroach_1.yml b/src/licensedcode/data/rules/cockroach_1.yml deleted file mode 100644 index 9f42dcf8b22..00000000000 --- a/src/licensedcode/data/rules/cockroach_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: cockroach -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - (c) CockroachDB Enterprise Edition -ignorable_holders: - - CockroachDB Enterprise Edition -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://cla-assistant.io/cockroachdb/cockroach - - https://cockroachlabs.com/pricing - - https://github.com/cockroachdb/cockroach diff --git a/src/licensedcode/data/rules/cockroach_2.RULE b/src/licensedcode/data/rules/cockroach_2.RULE index d45897499d2..501162a8304 100644 --- a/src/licensedcode/data/rules/cockroach_2.RULE +++ b/src/licensedcode/data/rules/cockroach_2.RULE @@ -1,3 +1,18 @@ +--- +license_expression: cockroach +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - (c) CockroachDB Enterprise Edition +ignorable_holders: + - CockroachDB Enterprise Edition +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://cla-assistant.io/cockroachdb/cockroach + - https://cockroachlabs.com/pricing + - https://github.com/cockroachdb/cockroach +--- + CockroachDB Community License Agreement Please read this CockroachDB Community License Agreement (the "Agreement") diff --git a/src/licensedcode/data/rules/cockroach_2.yml b/src/licensedcode/data/rules/cockroach_2.yml deleted file mode 100644 index 9f42dcf8b22..00000000000 --- a/src/licensedcode/data/rules/cockroach_2.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: cockroach -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - (c) CockroachDB Enterprise Edition -ignorable_holders: - - CockroachDB Enterprise Edition -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://cla-assistant.io/cockroachdb/cockroach - - https://cockroachlabs.com/pricing - - https://github.com/cockroachdb/cockroach diff --git a/src/licensedcode/data/rules/cockroach_3.RULE b/src/licensedcode/data/rules/cockroach_3.RULE index fabcb3e214c..d73d1f0b07d 100644 --- a/src/licensedcode/data/rules/cockroach_3.RULE +++ b/src/licensedcode/data/rules/cockroach_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: cockroach +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - (c) CockroachDB Enterprise Edition +ignorable_holders: + - CockroachDB Enterprise Edition +ignorable_urls: + - https://cla-assistant.io/cockroachdb/cockroach + - https://cockroachlabs.com/pricing + - https://github.com/cockroachdb/cockroach + - https://www.apache.org/licenses/LICENSE-2.0 +--- + CockroachDB Community License Agreement Please read this CockroachDB Community License Agreement (the "Agreement") diff --git a/src/licensedcode/data/rules/cockroach_3.yml b/src/licensedcode/data/rules/cockroach_3.yml deleted file mode 100644 index fa598d6ee58..00000000000 --- a/src/licensedcode/data/rules/cockroach_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: cockroach -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - (c) CockroachDB Enterprise Edition -ignorable_holders: - - CockroachDB Enterprise Edition -ignorable_urls: - - https://cla-assistant.io/cockroachdb/cockroach - - https://cockroachlabs.com/pricing - - https://github.com/cockroachdb/cockroach - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/cockroach_4.RULE b/src/licensedcode/data/rules/cockroach_4.RULE index 3c03477b964..52fda99e6c2 100644 --- a/src/licensedcode/data/rules/cockroach_4.RULE +++ b/src/licensedcode/data/rules/cockroach_4.RULE @@ -1,3 +1,18 @@ +--- +license_expression: cockroach +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - (c) CockroachDB Enterprise Edition +ignorable_holders: + - CockroachDB Enterprise Edition +ignorable_urls: + - https://cla-assistant.io/cockroachdb/cockroach + - https://cockroachlabs.com/pricing + - https://github.com/cockroachdb/cockroach + - https://www.apache.org/licenses/LICENSE-2.0 +--- + CockroachDB Community License Agreement Please read this CockroachDB Community License Agreement (the "Agreement") diff --git a/src/licensedcode/data/rules/cockroach_4.yml b/src/licensedcode/data/rules/cockroach_4.yml deleted file mode 100644 index fa598d6ee58..00000000000 --- a/src/licensedcode/data/rules/cockroach_4.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: cockroach -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - (c) CockroachDB Enterprise Edition -ignorable_holders: - - CockroachDB Enterprise Edition -ignorable_urls: - - https://cla-assistant.io/cockroachdb/cockroach - - https://cockroachlabs.com/pricing - - https://github.com/cockroachdb/cockroach - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/codeguru-permissions_1.RULE b/src/licensedcode/data/rules/codeguru-permissions_1.RULE index bffd1dce46f..53174b4f7aa 100644 --- a/src/licensedcode/data/rules/codeguru-permissions_1.RULE +++ b/src/licensedcode/data/rules/codeguru-permissions_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: codeguru-permissions +is_license_reference: yes +relevance: 100 +--- + CodeGuru Permissions License \ No newline at end of file diff --git a/src/licensedcode/data/rules/codeguru-permissions_1.yml b/src/licensedcode/data/rules/codeguru-permissions_1.yml deleted file mode 100644 index 43a56f09ccc..00000000000 --- a/src/licensedcode/data/rules/codeguru-permissions_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: codeguru-permissions -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/codeguru-permissions_2.RULE b/src/licensedcode/data/rules/codeguru-permissions_2.RULE index 6c205061d9a..e51855dc644 100644 --- a/src/licensedcode/data/rules/codeguru-permissions_2.RULE +++ b/src/licensedcode/data/rules/codeguru-permissions_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: codeguru-permissions +is_license_reference: yes +relevance: 100 +--- + CodeGuru Permissions \ No newline at end of file diff --git a/src/licensedcode/data/rules/codeguru-permissions_2.yml b/src/licensedcode/data/rules/codeguru-permissions_2.yml deleted file mode 100644 index 43a56f09ccc..00000000000 --- a/src/licensedcode/data/rules/codeguru-permissions_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: codeguru-permissions -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/coil-1.0_1.RULE b/src/licensedcode/data/rules/coil-1.0_1.RULE index 656cb5b0751..38e8ef3b28f 100644 --- a/src/licensedcode/data/rules/coil-1.0_1.RULE +++ b/src/licensedcode/data/rules/coil-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: coil-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Copyfree Open Innovation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_1.yml b/src/licensedcode/data/rules/coil-1.0_1.yml deleted file mode 100644 index 26373126ff3..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: coil-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/coil-1.0_10.RULE b/src/licensedcode/data/rules/coil-1.0_10.RULE index bbb8e801bb3..8f2422f595d 100644 --- a/src/licensedcode/data/rules/coil-1.0_10.RULE +++ b/src/licensedcode/data/rules/coil-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: coil-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/COIL-1.0 +--- + LICENSE {{COIL-1.0}} https://spdx.org/licenses/COIL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_10.yml b/src/licensedcode/data/rules/coil-1.0_10.yml deleted file mode 100644 index 910c948da9a..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: coil-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/COIL-1.0 diff --git a/src/licensedcode/data/rules/coil-1.0_11.RULE b/src/licensedcode/data/rules/coil-1.0_11.RULE index f9d48481f34..522b7bc15f2 100644 --- a/src/licensedcode/data/rules/coil-1.0_11.RULE +++ b/src/licensedcode/data/rules/coil-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: coil-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/COIL-1.0 +--- + {{COIL-1.0}} https://spdx.org/licenses/COIL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_11.yml b/src/licensedcode/data/rules/coil-1.0_11.yml deleted file mode 100644 index 910c948da9a..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: coil-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/COIL-1.0 diff --git a/src/licensedcode/data/rules/coil-1.0_2.RULE b/src/licensedcode/data/rules/coil-1.0_2.RULE index a8ed784e6bc..54425a3ca08 100644 --- a/src/licensedcode/data/rules/coil-1.0_2.RULE +++ b/src/licensedcode/data/rules/coil-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: coil-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Copyfree Open Innovation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_2.yml b/src/licensedcode/data/rules/coil-1.0_2.yml deleted file mode 100644 index 26373126ff3..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: coil-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/coil-1.0_3.RULE b/src/licensedcode/data/rules/coil-1.0_3.RULE index 6515a194319..80a9941d546 100644 --- a/src/licensedcode/data/rules/coil-1.0_3.RULE +++ b/src/licensedcode/data/rules/coil-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: coil-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + COIL-1.0 Copyfree Open Innovation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_3.yml b/src/licensedcode/data/rules/coil-1.0_3.yml deleted file mode 100644 index 26373126ff3..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: coil-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/coil-1.0_4.RULE b/src/licensedcode/data/rules/coil-1.0_4.RULE index 9d40089e1ce..37d6e7e2710 100644 --- a/src/licensedcode/data/rules/coil-1.0_4.RULE +++ b/src/licensedcode/data/rules/coil-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: coil-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Copyfree Open Innovation License COIL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_4.yml b/src/licensedcode/data/rules/coil-1.0_4.yml deleted file mode 100644 index 26373126ff3..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: coil-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/coil-1.0_5.RULE b/src/licensedcode/data/rules/coil-1.0_5.RULE index 069f828238a..327de3c1382 100644 --- a/src/licensedcode/data/rules/coil-1.0_5.RULE +++ b/src/licensedcode/data/rules/coil-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: coil-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: COIL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_5.yml b/src/licensedcode/data/rules/coil-1.0_5.yml deleted file mode 100644 index 631a5f7d617..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: coil-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/coil-1.0_6.RULE b/src/licensedcode/data/rules/coil-1.0_6.RULE index 2c2ad914323..c07a59f24b6 100644 --- a/src/licensedcode/data/rules/coil-1.0_6.RULE +++ b/src/licensedcode/data/rules/coil-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: coil-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Copyfree Open Innovation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_6.yml b/src/licensedcode/data/rules/coil-1.0_6.yml deleted file mode 100644 index 631a5f7d617..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: coil-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/coil-1.0_7.RULE b/src/licensedcode/data/rules/coil-1.0_7.RULE index 481c3a260a9..b71a19a0e10 100644 --- a/src/licensedcode/data/rules/coil-1.0_7.RULE +++ b/src/licensedcode/data/rules/coil-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: coil-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: COIL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_7.yml b/src/licensedcode/data/rules/coil-1.0_7.yml deleted file mode 100644 index 631a5f7d617..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: coil-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/coil-1.0_8.RULE b/src/licensedcode/data/rules/coil-1.0_8.RULE index 20c1091d8e3..984ff7512ef 100644 --- a/src/licensedcode/data/rules/coil-1.0_8.RULE +++ b/src/licensedcode/data/rules/coil-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: coil-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/COIL-1.0 +--- + https://licenses.nuget.org/COIL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_8.yml b/src/licensedcode/data/rules/coil-1.0_8.yml deleted file mode 100644 index a721437c8c4..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: coil-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/COIL-1.0 diff --git a/src/licensedcode/data/rules/coil-1.0_9.RULE b/src/licensedcode/data/rules/coil-1.0_9.RULE index 335ebd6fbc3..35cd2ddd2f8 100644 --- a/src/licensedcode/data/rules/coil-1.0_9.RULE +++ b/src/licensedcode/data/rules/coil-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: coil-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/COIL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/coil-1.0_9.yml b/src/licensedcode/data/rules/coil-1.0_9.yml deleted file mode 100644 index 1f3a0288025..00000000000 --- a/src/licensedcode/data/rules/coil-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: coil-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/colt.RULE b/src/licensedcode/data/rules/colt.RULE index 7c86a6d7dac..d26ce12f607 100644 --- a/src/licensedcode/data/rules/colt.RULE +++ b/src/licensedcode/data/rules/colt.RULE @@ -1 +1,9 @@ +--- +license_expression: colt +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://acs.lbl.gov/software/colt/license.html +--- + http://acs.lbl.gov/software/colt/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/colt.yml b/src/licensedcode/data/rules/colt.yml deleted file mode 100644 index 9a01b2f4f6c..00000000000 --- a/src/licensedcode/data/rules/colt.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: colt -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://acs.lbl.gov/software/colt/license.html diff --git a/src/licensedcode/data/rules/com-oreilly-servlet.RULE b/src/licensedcode/data/rules/com-oreilly-servlet.RULE index 8cf75b0ba82..1ab387c0eb6 100644 --- a/src/licensedcode/data/rules/com-oreilly-servlet.RULE +++ b/src/licensedcode/data/rules/com-oreilly-servlet.RULE @@ -1 +1,9 @@ +--- +license_expression: com-oreilly-servlet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.servlets.com/cos/license.html +--- + http://www.servlets.com/cos/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/com-oreilly-servlet.yml b/src/licensedcode/data/rules/com-oreilly-servlet.yml deleted file mode 100644 index 1a6e077645e..00000000000 --- a/src/licensedcode/data/rules/com-oreilly-servlet.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: com-oreilly-servlet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.servlets.com/cos/license.html diff --git a/src/licensedcode/data/rules/com-oreilly-servlet_1.RULE b/src/licensedcode/data/rules/com-oreilly-servlet_1.RULE index 12dce1da6ee..30ae2379659 100644 --- a/src/licensedcode/data/rules/com-oreilly-servlet_1.RULE +++ b/src/licensedcode/data/rules/com-oreilly-servlet_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: com-oreilly-servlet +is_license_text: yes +ignorable_urls: + - http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter + - http://www.servlets.com/ +--- + The source code, object code, and documentation in the com.oreilly.servlet package is copyright and owned by Jason Hunter. ON-SITE USE RIGHTS diff --git a/src/licensedcode/data/rules/com-oreilly-servlet_1.yml b/src/licensedcode/data/rules/com-oreilly-servlet_1.yml deleted file mode 100644 index fc9cfa9906e..00000000000 --- a/src/licensedcode/data/rules/com-oreilly-servlet_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: com-oreilly-servlet -is_license_text: yes -ignorable_urls: - - http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter - - http://www.servlets.com/ diff --git a/src/licensedcode/data/rules/com-oreilly-servlet_2.RULE b/src/licensedcode/data/rules/com-oreilly-servlet_2.RULE index d8feb365bca..18e9fb34a6a 100644 --- a/src/licensedcode/data/rules/com-oreilly-servlet_2.RULE +++ b/src/licensedcode/data/rules/com-oreilly-servlet_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: com-oreilly-servlet +is_license_notice: yes +ignorable_urls: + - http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter + - http://www.servlets.com/ +ignorable_emails: + - jhunter@servlets.com +--- + The source code, object code, and documentation in the com.oreilly.servlet package is copyright and owned by Jason Hunter. diff --git a/src/licensedcode/data/rules/com-oreilly-servlet_2.yml b/src/licensedcode/data/rules/com-oreilly-servlet_2.yml deleted file mode 100644 index ffdb7c2e980..00000000000 --- a/src/licensedcode/data/rules/com-oreilly-servlet_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: com-oreilly-servlet -is_license_notice: yes -ignorable_urls: - - http://www.amazon.com/exec/obidos/ASIN/0596000405/jasonhunter - - http://www.servlets.com/ -ignorable_emails: - - jhunter@servlets.com diff --git a/src/licensedcode/data/rules/commercial-license_1.RULE b/src/licensedcode/data/rules/commercial-license_1.RULE index 8188d09e7e9..57604c2ec77 100644 --- a/src/licensedcode/data/rules/commercial-license_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + * This software is the confidential and proprietary information of * ("Confidential Information"). You shall not disclose such Confidential * Information and shall use it only in accordance with the terms of the @@ -8,4 +13,4 @@ * LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SHALL NOT * BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, - * MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + * MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_1.yml b/src/licensedcode/data/rules/commercial-license_1.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_10.RULE b/src/licensedcode/data/rules/commercial-license_10.RULE index fa63eb25401..3cfdfcfacf9 100644 --- a/src/licensedcode/data/rules/commercial-license_10.RULE +++ b/src/licensedcode/data/rules/commercial-license_10.RULE @@ -1 +1,9 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://assets.nagios.com/licenses/nagios_software_license.txt +--- + http://assets.nagios.com/licenses/nagios_software_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_10.yml b/src/licensedcode/data/rules/commercial-license_10.yml deleted file mode 100644 index fd15d585dad..00000000000 --- a/src/licensedcode/data/rules/commercial-license_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://assets.nagios.com/licenses/nagios_software_license.txt diff --git a/src/licensedcode/data/rules/commercial-license_11.RULE b/src/licensedcode/data/rules/commercial-license_11.RULE index 4a8903f6211..16c2f943a10 100644 --- a/src/licensedcode/data/rules/commercial-license_11.RULE +++ b/src/licensedcode/data/rules/commercial-license_11.RULE @@ -1 +1,7 @@ -Nagios Software License +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + +Nagios Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_11.yml b/src/licensedcode/data/rules/commercial-license_11.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_12.RULE b/src/licensedcode/data/rules/commercial-license_12.RULE index c54118ac762..113d8d3a8d3 100644 --- a/src/licensedcode/data/rules/commercial-license_12.RULE +++ b/src/licensedcode/data/rules/commercial-license_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + {{Commercial Licensing}} For commercial licensing, contact us \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_12.yml b/src/licensedcode/data/rules/commercial-license_12.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_13.RULE b/src/licensedcode/data/rules/commercial-license_13.RULE index e23e86a976f..dcba6a8b6e5 100644 --- a/src/licensedcode/data/rules/commercial-license_13.RULE +++ b/src/licensedcode/data/rules/commercial-license_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +--- + Payment and Taxes If credit has been extended to Licensee by , all payments under this Agreement are due within thirty (30) days of the date mails its invoice to Licensee. If diff --git a/src/licensedcode/data/rules/commercial-license_13.yml b/src/licensedcode/data/rules/commercial-license_13.yml deleted file mode 100644 index a14643de67a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/commercial-license_14.RULE b/src/licensedcode/data/rules/commercial-license_14.RULE index f04b96aa087..9904cab3502 100644 --- a/src/licensedcode/data/rules/commercial-license_14.RULE +++ b/src/licensedcode/data/rules/commercial-license_14.RULE @@ -1,6 +1,11 @@ +--- +license_expression: commercial-license +is_license_reference: yes +--- + No Implied License There are no implied licenses or other implied rights granted under this Agreement, and all rights, save for those expressly granted hereunder, shall remain with and its licensors. In addition, no licenses or immunities are granted to the combination of the Licensed Software and/ Modified Software, as applicable, with -any other software or hardware not delivered by under this Agreement. +any other software or hardware not delivered by under this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_14.yml b/src/licensedcode/data/rules/commercial-license_14.yml deleted file mode 100644 index a14643de67a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/commercial-license_15.RULE b/src/licensedcode/data/rules/commercial-license_15.RULE index e93aca504ae..fb8dfedf61e 100644 --- a/src/licensedcode/data/rules/commercial-license_15.RULE +++ b/src/licensedcode/data/rules/commercial-license_15.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +--- + Notices Any notice given by one party to the other shall be deemed properly given and deemed received if specifically acknowledged by the receiving party in writing or diff --git a/src/licensedcode/data/rules/commercial-license_15.yml b/src/licensedcode/data/rules/commercial-license_15.yml deleted file mode 100644 index a14643de67a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/commercial-license_16.RULE b/src/licensedcode/data/rules/commercial-license_16.RULE index 17c600fb215..abb3ed0993b 100644 --- a/src/licensedcode/data/rules/commercial-license_16.RULE +++ b/src/licensedcode/data/rules/commercial-license_16.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +--- + Entire Agreement This Agreement constitutes the complete agreement between the parties and supersedes all prior or contemporaneous discussions, representations, and proposals, diff --git a/src/licensedcode/data/rules/commercial-license_16.yml b/src/licensedcode/data/rules/commercial-license_16.yml deleted file mode 100644 index a14643de67a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/commercial-license_17.RULE b/src/licensedcode/data/rules/commercial-license_17.RULE index a0711c32eb7..62bef72f13e 100644 --- a/src/licensedcode/data/rules/commercial-license_17.RULE +++ b/src/licensedcode/data/rules/commercial-license_17.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +--- + Government End Users A "U.S. Government End User" shall mean any agency or entity of the government of diff --git a/src/licensedcode/data/rules/commercial-license_17.yml b/src/licensedcode/data/rules/commercial-license_17.yml deleted file mode 100644 index a14643de67a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/commercial-license_18.RULE b/src/licensedcode/data/rules/commercial-license_18.RULE index 45d01b17246..a1867648e06 100644 --- a/src/licensedcode/data/rules/commercial-license_18.RULE +++ b/src/licensedcode/data/rules/commercial-license_18.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +--- + CONFIDENTIALITY Each party acknowledges that during the Initial Term of this Agreement it shall have access to information about the other party''s business, business methods, business @@ -33,4 +38,4 @@ The obligations of the Receiving Party under this Section shall continue during Initial Term and for a period of five (5) years after expiration or termination of this Agreement. To the extent that the terms of the Non-Disclosure Agreement between and Licensee conflict with the terms of this Section 12, this Section 12 shall be -controlling over the terms of the Non-Disclosure Agreement. +controlling over the terms of the Non-Disclosure Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_18.yml b/src/licensedcode/data/rules/commercial-license_18.yml deleted file mode 100644 index a14643de67a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/commercial-license_19.RULE b/src/licensedcode/data/rules/commercial-license_19.RULE index 3ae577ed7f5..429a73868a0 100644 --- a/src/licensedcode/data/rules/commercial-license_19.RULE +++ b/src/licensedcode/data/rules/commercial-license_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_text: yes +ignorable_urls: + - http://www.redhat.com/legal/open_source_assurance_agreement.html + - http://www.redhat.com/rhel/details/assurance +--- + Red Hat Enterprise Agreement diff --git a/src/licensedcode/data/rules/commercial-license_19.yml b/src/licensedcode/data/rules/commercial-license_19.yml deleted file mode 100644 index 6c337c5098c..00000000000 --- a/src/licensedcode/data/rules/commercial-license_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -ignorable_urls: - - http://www.redhat.com/legal/open_source_assurance_agreement.html - - http://www.redhat.com/rhel/details/assurance diff --git a/src/licensedcode/data/rules/commercial-license_2.RULE b/src/licensedcode/data/rules/commercial-license_2.RULE index c0b9566416e..19c29392a2b 100644 --- a/src/licensedcode/data/rules/commercial-license_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_2.RULE @@ -1 +1,7 @@ -Confidential Property of \ No newline at end of file +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 99 +--- + +Confidential Property of \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_2.yml b/src/licensedcode/data/rules/commercial-license_2.yml deleted file mode 100644 index 97f68524ed0..00000000000 --- a/src/licensedcode/data/rules/commercial-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/commercial-license_20.RULE b/src/licensedcode/data/rules/commercial-license_20.RULE index a40ba231392..476eb778309 100644 --- a/src/licensedcode/data/rules/commercial-license_20.RULE +++ b/src/licensedcode/data/rules/commercial-license_20.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + terms contained in a written agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_20.yml b/src/licensedcode/data/rules/commercial-license_20.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_21.RULE b/src/licensedcode/data/rules/commercial-license_21.RULE index 90659a61c66..e6bf1873be1 100644 --- a/src/licensedcode/data/rules/commercial-license_21.RULE +++ b/src/licensedcode/data/rules/commercial-license_21.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + Commercial License Usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_21.yml b/src/licensedcode/data/rules/commercial-license_21.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_22.RULE b/src/licensedcode/data/rules/commercial-license_22.RULE index 2e5ccf5eb36..7e27f84d789 100644 --- a/src/licensedcode/data/rules/commercial-license_22.RULE +++ b/src/licensedcode/data/rules/commercial-license_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.qt.io/contact-us + - http://www.qt.io/terms-conditions +--- + Commercial License Usage Licensees holding valid commercial Qt licenses may use this file in accordance with the commercial license agreement provided with the diff --git a/src/licensedcode/data/rules/commercial-license_22.yml b/src/licensedcode/data/rules/commercial-license_22.yml deleted file mode 100644 index 664731ec595..00000000000 --- a/src/licensedcode/data/rules/commercial-license_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.qt.io/contact-us - - http://www.qt.io/terms-conditions diff --git a/src/licensedcode/data/rules/commercial-license_23.RULE b/src/licensedcode/data/rules/commercial-license_23.RULE index 54e129ea0c6..3ca812f03ed 100644 --- a/src/licensedcode/data/rules/commercial-license_23.RULE +++ b/src/licensedcode/data/rules/commercial-license_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_notice: yes +ignorable_urls: + - https://www.qt.io/contact-us + - https://www.qt.io/terms-conditions +--- + ** 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 diff --git a/src/licensedcode/data/rules/commercial-license_23.yml b/src/licensedcode/data/rules/commercial-license_23.yml deleted file mode 100644 index 74467b9b68d..00000000000 --- a/src/licensedcode/data/rules/commercial-license_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -ignorable_urls: - - https://www.qt.io/contact-us - - https://www.qt.io/terms-conditions diff --git a/src/licensedcode/data/rules/commercial-license_24.RULE b/src/licensedcode/data/rules/commercial-license_24.RULE index ca39ae6be09..f6128261073 100644 --- a/src/licensedcode/data/rules/commercial-license_24.RULE +++ b/src/licensedcode/data/rules/commercial-license_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_notice: yes +ignorable_urls: + - https://www.qt.io/contact-us + - https://www.qt.io/terms-conditions +--- + ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the diff --git a/src/licensedcode/data/rules/commercial-license_24.yml b/src/licensedcode/data/rules/commercial-license_24.yml deleted file mode 100644 index 74467b9b68d..00000000000 --- a/src/licensedcode/data/rules/commercial-license_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -ignorable_urls: - - https://www.qt.io/contact-us - - https://www.qt.io/terms-conditions diff --git a/src/licensedcode/data/rules/commercial-license_25.RULE b/src/licensedcode/data/rules/commercial-license_25.RULE index 3a079c1b840..cf032322810 100644 --- a/src/licensedcode/data/rules/commercial-license_25.RULE +++ b/src/licensedcode/data/rules/commercial-license_25.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + /* This material is company confidential, cannot be reproduced in any form */ /* without the written permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_25.yml b/src/licensedcode/data/rules/commercial-license_25.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_26.RULE b/src/licensedcode/data/rules/commercial-license_26.RULE index 8114b78424a..69ff010d886 100644 --- a/src/licensedcode/data/rules/commercial-license_26.RULE +++ b/src/licensedcode/data/rules/commercial-license_26.RULE @@ -1,7 +1,13 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + License We have been unable to find a license that accurately fits needs (suggestions are welcome) so instead we offer the below permissions informally. If you would like to use Core for non-commerical purposes, such as to host a bot at your workplace, then we give you full permission to do so. In fact, we'd love you to, and will help and support you however we can. -If you would like to add functionality to your for-profit company's offering then we DO NOT give you permission to use Core to do so. Please contact us directly to discuss a partnership or licensing arrangement. +If you would like to add functionality to your for-profit company's offering then we DO NOT give you permission to use Core to do so. Please contact us directly to discuss a partnership or licensing arrangement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_26.yml b/src/licensedcode/data/rules/commercial-license_26.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_27.RULE b/src/licensedcode/data/rules/commercial-license_27.RULE index 01557232be3..870f75961c5 100644 --- a/src/licensedcode/data/rules/commercial-license_27.RULE +++ b/src/licensedcode/data/rules/commercial-license_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +ignorable_urls: + - http://www.eastwindnetworks.com/ +--- + BY DOWNLOADING, INSTALLING, ACCESSING OR USING THE EASTWIND NETWORKS SERVICE, YOU EXPRESSLY (a) ACKNOWLEDGE THAT YOU HAVE READ THIS ENTIRE END USER LICENSE AGREEMENT (THIS ?AGREEMENT?), WHICH YOU ARE ENTERING INTO WITH EASTWIND NETWORKS, INC., A DELAWARE CORPORATION, WITH AN ADDRESS OF 2795 E. COTTONWOOD PARKWAY, SUITE 360, SALT LAKE CITY, UT, 84121 (?Eastwind?); AND (b) AGREE TO BE BOUND BY ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT AND LIABLE FOR ANY NONCOMPLIANCE WITH THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD, INSTALL, ACCESS OR USE THE EASTWIND NETWORKS SERVICE. @@ -68,4 +75,4 @@ BY DOWNLOADING, INSTALLING, ACCESSING OR USING THE EASTWIND NETWORKS SERVICE, YO 23. Remedies. Any breach or threatened breach of your obligations set forth in this Agreement may result in a substantial likelihood of irreparable harm and injury to Eastwind for which monetary damages alone would be an inadequate remedy, and which damages are difficult to accurately measure. Accordingly, you agree that, in addition to any other remedies available, Eastwind shall have the right to obtain, without the necessity of posting any bond, immediate injunctive relief as well as other equitable relief allowed by the federal and state courts. The foregoing remedy of injunctive relief is agreed to without prejudice to Eastwind?s right to exercise any other rights and remedies it may have, including the right to terminate this Agreement and seek damages or other legal or equitable relief. Any remedy of Eastwind set forth in this Agreement is in addition to any other remedy afforded to Eastwind, by law or otherwise. -24. Miscellaneous. No consent or waiver by either party with respect to any provision of this Agreement will be effective unless made in writing by a duly authorized signatory of the party against which enforcement is sought. The failure or delay of either party at any time to require full performance of any provision hereof will in no manner affect the right of such party at a later time to enforce the same provision or any other provision. If any provision of this Agreement is held to be unenforceable, then that provision is to be construed either by modifying it to the minimum extent necessary to make it enforceable (if permitted by Law) or disregarding it (if not). If an unenforceable provision is modified or disregarded in accordance with this Section, the rest of the Agreement is to remain in effect as written, and the unenforceable provision is to remain as written in any circumstances other than those in which the provision is held to be unenforceable. For all purposes of this Agreement, the words ?including? and ?includes? mean inclusion without limitation. Any legal or equitable principles that might require or permit the construction of this Agreement or any provision hereof against the party drafting this Agreement will not apply in any construction or interpretation of this Agreement.eastwin +24. Miscellaneous. No consent or waiver by either party with respect to any provision of this Agreement will be effective unless made in writing by a duly authorized signatory of the party against which enforcement is sought. The failure or delay of either party at any time to require full performance of any provision hereof will in no manner affect the right of such party at a later time to enforce the same provision or any other provision. If any provision of this Agreement is held to be unenforceable, then that provision is to be construed either by modifying it to the minimum extent necessary to make it enforceable (if permitted by Law) or disregarding it (if not). If an unenforceable provision is modified or disregarded in accordance with this Section, the rest of the Agreement is to remain in effect as written, and the unenforceable provision is to remain as written in any circumstances other than those in which the provision is held to be unenforceable. For all purposes of this Agreement, the words ?including? and ?includes? mean inclusion without limitation. Any legal or equitable principles that might require or permit the construction of this Agreement or any provision hereof against the party drafting this Agreement will not apply in any construction or interpretation of this Agreement.eastwin \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_27.yml b/src/licensedcode/data/rules/commercial-license_27.yml deleted file mode 100644 index cedea66cc3e..00000000000 --- a/src/licensedcode/data/rules/commercial-license_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -ignorable_urls: - - http://www.eastwindnetworks.com/ diff --git a/src/licensedcode/data/rules/commercial-license_28.RULE b/src/licensedcode/data/rules/commercial-license_28.RULE index 2e9948dd90f..90df5a16955 100644 --- a/src/licensedcode/data/rules/commercial-license_28.RULE +++ b/src/licensedcode/data/rules/commercial-license_28.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + under Commercial Distribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_28.yml b/src/licensedcode/data/rules/commercial-license_28.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_29.RULE b/src/licensedcode/data/rules/commercial-license_29.RULE index 6395bb9d8d0..a7544b08add 100644 --- a/src/licensedcode/data/rules/commercial-license_29.RULE +++ b/src/licensedcode/data/rules/commercial-license_29.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + If you are a commercial software developer and you want to release your software under a different license than CC-BY 2.0, you may purchase commercial licenses. By purchasing commercial licenses, we offer you the -freedom to choose between the following license models. +freedom to choose between the following license models. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_29.yml b/src/licensedcode/data/rules/commercial-license_29.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_3.RULE b/src/licensedcode/data/rules/commercial-license_3.RULE index ec9d8f6c32d..27a0eee4b2d 100644 --- a/src/licensedcode/data/rules/commercial-license_3.RULE +++ b/src/licensedcode/data/rules/commercial-license_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + * THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE * AGREEMENT BETWEEN THE USER AND . YOU HAVE NO RIGHT TO USE OR - * EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. + * EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_3.yml b/src/licensedcode/data/rules/commercial-license_3.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_30.RULE b/src/licensedcode/data/rules/commercial-license_30.RULE index 4d083bf4cbd..8739774c37d 100644 --- a/src/licensedcode/data/rules/commercial-license_30.RULE +++ b/src/licensedcode/data/rules/commercial-license_30.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + License Agreement AGREEMENT FOR USE OF ( ) @@ -84,4 +89,4 @@ Section 11. Definitions. As used herein: 11.5. "Licensed Technology" means, collectively, ( ) and the Licensed Patent. -11.6. "Products" means software that is developed or distributed under this Agreement which is designed for and used primarily for accessing the and for manipulating and viewing data received through the , and any new Products as may be added pursuant to Section 3 of this Agreement. +11.6. "Products" means software that is developed or distributed under this Agreement which is designed for and used primarily for accessing the and for manipulating and viewing data received through the , and any new Products as may be added pursuant to Section 3 of this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_30.yml b/src/licensedcode/data/rules/commercial-license_30.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_31.RULE b/src/licensedcode/data/rules/commercial-license_31.RULE index 42c05227c84..f243f87e67a 100644 --- a/src/licensedcode/data/rules/commercial-license_31.RULE +++ b/src/licensedcode/data/rules/commercial-license_31.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_text: yes +--- + LICENSING PROGRAM LICENSE SUPPLEMENT REDISTRIBUTION NOT PERMITTED @@ -51,4 +56,4 @@ automatically terminate if You fail to comply with any material provision of thi Supplement. No notice will be required from to effect such termination. You and may terminate the EULA pursuant to the termination provisions set forth therein. Any termination of a EULA automatically terminates this License -Supplement with respect to the Software covered by such EULA. +Supplement with respect to the Software covered by such EULA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_31.yml b/src/licensedcode/data/rules/commercial-license_31.yml deleted file mode 100644 index 3d29b554a11..00000000000 --- a/src/licensedcode/data/rules/commercial-license_31.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/commercial-license_32.RULE b/src/licensedcode/data/rules/commercial-license_32.RULE index 0c8a7f5e188..61c64af2189 100644 --- a/src/licensedcode/data/rules/commercial-license_32.RULE +++ b/src/licensedcode/data/rules/commercial-license_32.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + A commercial use license is available \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_32.yml b/src/licensedcode/data/rules/commercial-license_32.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_33.RULE b/src/licensedcode/data/rules/commercial-license_33.RULE index 8fdf667e475..68791ba3033 100644 --- a/src/licensedcode/data/rules/commercial-license_33.RULE +++ b/src/licensedcode/data/rules/commercial-license_33.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_text: yes +--- + Commercial License @@ -19,4 +24,4 @@ The Licensee has the right to apply for tech support on the software within 1 ye The Licensee has the right to get free upgrades for 1 year since purchasing the product. -The Team retains all ownership rights to the software. +The Team retains all ownership rights to the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_33.yml b/src/licensedcode/data/rules/commercial-license_33.yml deleted file mode 100644 index 3d29b554a11..00000000000 --- a/src/licensedcode/data/rules/commercial-license_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/commercial-license_34.RULE b/src/licensedcode/data/rules/commercial-license_34.RULE index 3a462b48c41..a09cd5478d6 100644 --- a/src/licensedcode/data/rules/commercial-license_34.RULE +++ b/src/licensedcode/data/rules/commercial-license_34.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + PROPRIETARY DATA * This software is the confidential and proprietary information of @@ -10,4 +15,4 @@ PROPRIETARY DATA * LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SHALL NOT * BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, - * MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + * MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_34.yml b/src/licensedcode/data/rules/commercial-license_34.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_35.RULE b/src/licensedcode/data/rules/commercial-license_35.RULE index abb995ef0fb..3891723f69b 100644 --- a/src/licensedcode/data/rules/commercial-license_35.RULE +++ b/src/licensedcode/data/rules/commercial-license_35.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +ignorable_urls: + - http://www.eastwindnetworks.com/ +--- + BY DOWNLOADING, INSTALLING, ACCESSING OR USING THE EASTWIND NETWORKS SERVICE, YOU EXPRESSLY (a) ACKNOWLEDGE THAT YOU HAVE READ THIS ENTIRE END USER LICENSE AGREEMENT (THIS ?AGREEMENT?), WHICH YOU ARE ENTERING INTO WITH , A DELAWARE CORPORATION, WITH AN ADDRESS OF AND (b) AGREE TO BE BOUND BY ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT AND LIABLE FOR ANY NONCOMPLIANCE WITH THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, DO NOT DOWNLOAD, INSTALL, ACCESS OR USE THE EASTWIND NETWORKS SERVICE. @@ -68,4 +75,4 @@ BY DOWNLOADING, INSTALLING, ACCESSING OR USING THE EASTWIND NETWORKS SERVICE, YO 23. Remedies. Any breach or threatened breach of your obligations set forth in this Agreement may result in a substantial likelihood of irreparable harm and injury to for which monetary damages alone would be an inadequate remedy, and which damages are difficult to accurately measure. Accordingly, you agree that, in addition to any other remedies available, shall have the right to obtain, without the necessity of posting any bond, immediate injunctive relief as well as other equitable relief allowed by the federal and state courts. The foregoing remedy of injunctive relief is agreed to without prejudice to ?s right to exercise any other rights and remedies it may have, including the right to terminate this Agreement and seek damages or other legal or equitable relief. Any remedy of set forth in this Agreement is in addition to any other remedy afforded to , by law or otherwise. -24. Miscellaneous. No consent or waiver by either party with respect to any provision of this Agreement will be effective unless made in writing by a duly authorized signatory of the party against which enforcement is sought. The failure or delay of either party at any time to require full performance of any provision hereof will in no manner affect the right of such party at a later time to enforce the same provision or any other provision. If any provision of this Agreement is held to be unenforceable, then that provision is to be construed either by modifying it to the minimum extent necessary to make it enforceable (if permitted by Law) or disregarding it (if not). If an unenforceable provision is modified or disregarded in accordance with this Section, the rest of the Agreement is to remain in effect as written, and the unenforceable provision is to remain as written in any circumstances other than those in which the provision is held to be unenforceable. For all purposes of this Agreement, the words ?including? and ?includes? mean inclusion without limitation. Any legal or equitable principles that might require or permit the construction of this Agreement or any provision hereof against the party drafting this Agreement will not apply in any construction or interpretation of this Agreement. +24. Miscellaneous. No consent or waiver by either party with respect to any provision of this Agreement will be effective unless made in writing by a duly authorized signatory of the party against which enforcement is sought. The failure or delay of either party at any time to require full performance of any provision hereof will in no manner affect the right of such party at a later time to enforce the same provision or any other provision. If any provision of this Agreement is held to be unenforceable, then that provision is to be construed either by modifying it to the minimum extent necessary to make it enforceable (if permitted by Law) or disregarding it (if not). If an unenforceable provision is modified or disregarded in accordance with this Section, the rest of the Agreement is to remain in effect as written, and the unenforceable provision is to remain as written in any circumstances other than those in which the provision is held to be unenforceable. For all purposes of this Agreement, the words ?including? and ?includes? mean inclusion without limitation. Any legal or equitable principles that might require or permit the construction of this Agreement or any provision hereof against the party drafting this Agreement will not apply in any construction or interpretation of this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_35.yml b/src/licensedcode/data/rules/commercial-license_35.yml deleted file mode 100644 index cedea66cc3e..00000000000 --- a/src/licensedcode/data/rules/commercial-license_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -ignorable_urls: - - http://www.eastwindnetworks.com/ diff --git a/src/licensedcode/data/rules/commercial-license_36.RULE b/src/licensedcode/data/rules/commercial-license_36.RULE index 17da2ef5890..d4baa151090 100644 --- a/src/licensedcode/data/rules/commercial-license_36.RULE +++ b/src/licensedcode/data/rules/commercial-license_36.RULE @@ -1 +1,9 @@ -http://www.telerik.com/purchase/license-agreement/kendo-ui-complete +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.telerik.com/purchase/license-agreement/kendo-ui-complete +--- + +http://www.telerik.com/purchase/license-agreement/kendo-ui-complete \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_36.yml b/src/licensedcode/data/rules/commercial-license_36.yml deleted file mode 100644 index bf055f4737d..00000000000 --- a/src/licensedcode/data/rules/commercial-license_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.telerik.com/purchase/license-agreement/kendo-ui-complete diff --git a/src/licensedcode/data/rules/commercial-license_37.RULE b/src/licensedcode/data/rules/commercial-license_37.RULE index a099050d794..cd3c3230067 100644 --- a/src/licensedcode/data/rules/commercial-license_37.RULE +++ b/src/licensedcode/data/rules/commercial-license_37.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.telerik.com/purchase/license-agreement/kendo-ui-complete +--- + Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/license-agreement/kendo-ui-complete If you do not own a commercial license, this file shall be governed by the trial license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_37.yml b/src/licensedcode/data/rules/commercial-license_37.yml deleted file mode 100644 index 8c9d6608fb2..00000000000 --- a/src/licensedcode/data/rules/commercial-license_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.telerik.com/purchase/license-agreement/kendo-ui-complete diff --git a/src/licensedcode/data/rules/commercial-license_38.RULE b/src/licensedcode/data/rules/commercial-license_38.RULE index be2bf470558..6138e5ca6ff 100644 --- a/src/licensedcode/data/rules/commercial-license_38.RULE +++ b/src/licensedcode/data/rules/commercial-license_38.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_text: yes +relevance: 100 +ignorable_authors: + - prior permission from eGenix.com +--- + EGENIX.COM COMMERCIAL LICENSE AGREEMENT VERSION 1.0.0 1. Introduction @@ -150,4 +158,4 @@ The controlling language of this License Agreement is English. If Licensee has r By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. -For question regarding this license agreement, please write to: \ No newline at end of file +For question regarding this license agreement, please write to: \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_38.yml b/src/licensedcode/data/rules/commercial-license_38.yml deleted file mode 100644 index fbbd88614c9..00000000000 --- a/src/licensedcode/data/rules/commercial-license_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -relevance: 100 -ignorable_authors: - - prior permission from eGenix.com diff --git a/src/licensedcode/data/rules/commercial-license_39.RULE b/src/licensedcode/data/rules/commercial-license_39.RULE index 05b48552277..653e30c118d 100644 --- a/src/licensedcode/data/rules/commercial-license_39.RULE +++ b/src/licensedcode/data/rules/commercial-license_39.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license +is_license_text: yes +relevance: 100 +--- + Redistribution eGenix.com hereby authorizes Licensee to redistribute the Software bundled with a products developed by Licensee on the Developer Installation Targets ("the Product") subject to the terms and conditions of the eGenix.com Commercial License Agreement for installation and use in combination with the Product on the following Redistribution Installation Targets, provided that: @@ -12,4 +18,4 @@ eGenix.com hereby authorizes Licensee to redistribute the Software bundled with (iii) use the Software outside the Product or for any other purpose not expressly licensed hereunder; -3) the Product does not provide functions or capabilities similar to those of the Software itself, i.e. the Product does not introduce commercial competition for the Software as sold by eGenix.com. \ No newline at end of file +3) the Product does not provide functions or capabilities similar to those of the Software itself, i.e. the Product does not introduce commercial competition for the Software as sold by eGenix.com. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_39.yml b/src/licensedcode/data/rules/commercial-license_39.yml deleted file mode 100644 index 5de2227ed4d..00000000000 --- a/src/licensedcode/data/rules/commercial-license_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_4.RULE b/src/licensedcode/data/rules/commercial-license_4.RULE index fbacb2bea9c..d4e7c943449 100644 --- a/src/licensedcode/data/rules/commercial-license_4.RULE +++ b/src/licensedcode/data/rules/commercial-license_4.RULE @@ -1 +1,6 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + This software is the property of Linotype GmbH, and may not be reproduced, used, displayed, modified, disclosed or transferred without the express written approval of Linotype GmbH. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_4.yml b/src/licensedcode/data/rules/commercial-license_4.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_40.RULE b/src/licensedcode/data/rules/commercial-license_40.RULE index e7bd404f70d..f5d0d3b431f 100644 --- a/src/licensedcode/data/rules/commercial-license_40.RULE +++ b/src/licensedcode/data/rules/commercial-license_40.RULE @@ -1 +1,7 @@ -commercial closed-source product \ No newline at end of file +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + +commercial closed-source product \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_40.yml b/src/licensedcode/data/rules/commercial-license_40.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_41.RULE b/src/licensedcode/data/rules/commercial-license_41.RULE index e2daff06694..e59ff33b218 100644 --- a/src/licensedcode/data/rules/commercial-license_41.RULE +++ b/src/licensedcode/data/rules/commercial-license_41.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + Software License Agreement Software License Agreement diff --git a/src/licensedcode/data/rules/commercial-license_41.yml b/src/licensedcode/data/rules/commercial-license_41.yml deleted file mode 100644 index efd1c753de8..00000000000 --- a/src/licensedcode/data/rules/commercial-license_41.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/commercial-license_42.RULE b/src/licensedcode/data/rules/commercial-license_42.RULE index 2678ed21bc4..f68253540c8 100644 --- a/src/licensedcode/data/rules/commercial-license_42.RULE +++ b/src/licensedcode/data/rules/commercial-license_42.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + END-USER LICENSE AGREEMENT (LIMITED COMMERCIAL USE) diff --git a/src/licensedcode/data/rules/commercial-license_42.yml b/src/licensedcode/data/rules/commercial-license_42.yml deleted file mode 100644 index efd1c753de8..00000000000 --- a/src/licensedcode/data/rules/commercial-license_42.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/commercial-license_43.RULE b/src/licensedcode/data/rules/commercial-license_43.RULE index 79717f5ecae..6d4c011dfeb 100644 --- a/src/licensedcode/data/rules/commercial-license_43.RULE +++ b/src/licensedcode/data/rules/commercial-license_43.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + provides a commercial license \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_43.yml b/src/licensedcode/data/rules/commercial-license_43.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_44.RULE b/src/licensedcode/data/rules/commercial-license_44.RULE index 28ab16710de..08cadf718b6 100644 --- a/src/licensedcode/data/rules/commercial-license_44.RULE +++ b/src/licensedcode/data/rules/commercial-license_44.RULE @@ -1,3 +1,13 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COMM-LICENSE +ignorable_urls: + - https://sidekiq.org/products/pro.html +--- + Sidekiq Pro has a commercial-friendly license allowing private forks and modifications of Sidekiq. Please see https://sidekiq.org/products/pro.html for more detail. You can find the commercial license terms in COMM-LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_44.yml b/src/licensedcode/data/rules/commercial-license_44.yml deleted file mode 100644 index a7c90f99280..00000000000 --- a/src/licensedcode/data/rules/commercial-license_44.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COMM-LICENSE -ignorable_urls: - - https://sidekiq.org/products/pro.html diff --git a/src/licensedcode/data/rules/commercial-license_45.RULE b/src/licensedcode/data/rules/commercial-license_45.RULE index ac5ee254e20..5901d055070 100644 --- a/src/licensedcode/data/rules/commercial-license_45.RULE +++ b/src/licensedcode/data/rules/commercial-license_45.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + If you need a commercial license, please contact us. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_45.yml b/src/licensedcode/data/rules/commercial-license_45.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_46.RULE b/src/licensedcode/data/rules/commercial-license_46.RULE index 34497f8fa23..9bca745fad5 100644 --- a/src/licensedcode/data/rules/commercial-license_46.RULE +++ b/src/licensedcode/data/rules/commercial-license_46.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license +is_license_text: yes +relevance: 100 +--- + Software License Agreement IMPORTANT – PLEASE CAREFULLY READ THE FOLLOWING LICENSE AGREEMENT, WHICH IS LEGALLY BINDING. DO NOT DOWNLOAD OR INSTALL THE LICENSED MATERIALS UNLESS: (1) YOU WILL USE THE LICENSED MATERIALS FOR YOUR OWN BENEFIT AND PERSONALLY ACCEPT, AGREE TO AND INTEND TO BE BOUND BY THESE TERMS; OR (2) YOU ARE AUTHORIZED TO, AND INTEND TO BE BOUND BY, THESE TERMS ON BEHALF OF YOUR COMPANY OR ORGANIZATION. YOU REPRESENT AND WARRANT THAT: (I) YOU ARE OF LEGAL AGE TO ENTER INTO A BINDING AGREEMENT; AND (II) IF THE LICENSEE IS A COMPANY OR ORGANIZATION, YOU HAVE THE RIGHT, POWER AND AUTHORITY TO ENTER INTO THIS AGREEMENT ON BEHALF OF YOUR COMPANY OR ORGANIZATION. diff --git a/src/licensedcode/data/rules/commercial-license_46.yml b/src/licensedcode/data/rules/commercial-license_46.yml deleted file mode 100644 index 5de2227ed4d..00000000000 --- a/src/licensedcode/data/rules/commercial-license_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_47.RULE b/src/licensedcode/data/rules/commercial-license_47.RULE index 986b960f86a..16f686ac3bf 100644 --- a/src/licensedcode/data/rules/commercial-license_47.RULE +++ b/src/licensedcode/data/rules/commercial-license_47.RULE @@ -1,2 +1,10 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://metafizzy.co/#licenses +--- + Commercial use requires one-time license fee http://metafizzy.co/#licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_47.yml b/src/licensedcode/data/rules/commercial-license_47.yml deleted file mode 100644 index f03f3a2ff2b..00000000000 --- a/src/licensedcode/data/rules/commercial-license_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://metafizzy.co/#licenses diff --git a/src/licensedcode/data/rules/commercial-license_48.RULE b/src/licensedcode/data/rules/commercial-license_48.RULE index fb80514cf77..d86f2d58625 100644 --- a/src/licensedcode/data/rules/commercial-license_48.RULE +++ b/src/licensedcode/data/rules/commercial-license_48.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + Commercial use requires one-time license fee \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_48.yml b/src/licensedcode/data/rules/commercial-license_48.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_49.RULE b/src/licensedcode/data/rules/commercial-license_49.RULE index 4451f69d5e8..90be728d644 100644 --- a/src/licensedcode/data/rules/commercial-license_49.RULE +++ b/src/licensedcode/data/rules/commercial-license_49.RULE @@ -1,2 +1,10 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://metafizzy.co/#licenses +--- + Commercial use requires one-time license fee https://metafizzy.co/#licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_49.yml b/src/licensedcode/data/rules/commercial-license_49.yml deleted file mode 100644 index 8e6c8c0d701..00000000000 --- a/src/licensedcode/data/rules/commercial-license_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://metafizzy.co/#licenses diff --git a/src/licensedcode/data/rules/commercial-license_5.RULE b/src/licensedcode/data/rules/commercial-license_5.RULE index 7b9832e0835..0bb10dfa62a 100644 --- a/src/licensedcode/data/rules/commercial-license_5.RULE +++ b/src/licensedcode/data/rules/commercial-license_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + # This file is part of the Opera Devices SDK. # It includes Opera TV proprietary information and distribution is prohibited -# without Opera TV's prior, explicit and written consent. +# without Opera TV's prior, explicit and written consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_5.yml b/src/licensedcode/data/rules/commercial-license_5.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/commercial-license_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_50.RULE b/src/licensedcode/data/rules/commercial-license_50.RULE index a39ac8a67ec..9332e91db54 100644 --- a/src/licensedcode/data/rules/commercial-license_50.RULE +++ b/src/licensedcode/data/rules/commercial-license_50.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.elastic.co/legal/trial_license +--- + This API initiates a free 30-day trial for all platinum features. " By starting this trial, you agree that it is subject to the terms and conditions at" https://www.elastic.co/legal/trial_license/. To begin your free trial, call /start_trial again \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_50.yml b/src/licensedcode/data/rules/commercial-license_50.yml deleted file mode 100644 index 9d9cd3db593..00000000000 --- a/src/licensedcode/data/rules/commercial-license_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.elastic.co/legal/trial_license diff --git a/src/licensedcode/data/rules/commercial-license_51.RULE b/src/licensedcode/data/rules/commercial-license_51.RULE index ad8db7ba267..e4d15dbc77e 100644 --- a/src/licensedcode/data/rules/commercial-license_51.RULE +++ b/src/licensedcode/data/rules/commercial-license_51.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + With a trial license, X-Pack security features are available, but are not enabled by default. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_51.yml b/src/licensedcode/data/rules/commercial-license_51.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_52.RULE b/src/licensedcode/data/rules/commercial-license_52.RULE index d9784f817d2..b323bcea251 100644 --- a/src/licensedcode/data/rules/commercial-license_52.RULE +++ b/src/licensedcode/data/rules/commercial-license_52.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + CITRIX(R) LICENSE AGREEMENT Use of this component is subject to the Citrix license covering the Citrix product(s) with which you will be using this component. This component is only licensed for use with such Citrix product(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_52.yml b/src/licensedcode/data/rules/commercial-license_52.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_53.RULE b/src/licensedcode/data/rules/commercial-license_53.RULE index aa9570eae7c..7c1a52ace8a 100644 --- a/src/licensedcode/data/rules/commercial-license_53.RULE +++ b/src/licensedcode/data/rules/commercial-license_53.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +--- + CITRIX(R) LICENSE AGREEMENT This is a legal agreement ("AGREEMENT") between you, the Licensed User or representative of the Licensed User and Citrix Systems, Inc., or Citrix Systems International GmbH. Citrix Systems, Inc., a Delaware corporation, markets and supports this product or feature release (both hereinafter "PRODUCT") in the Americas. Citrix Systems International GmbH, a Swiss company wholly owned by Citrix Systems, Inc., markets and supports this PRODUCT in Europe, the Middle East, Africa, Asia, and the Pacific. Your location of receipt of this PRODUCT determines which is the licensing entity hereunder (the applicable entity is hereinafter referred to as "CITRIX"). BY INDICATING YOUR ACCEPTANCE BELOW, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, PROMPTLY RETURN THE UNUSED DISK PACKAGE TO THE PLACE WHERE YOU OBTAINED IT FOR A FULL REFUND. diff --git a/src/licensedcode/data/rules/commercial-license_53.yml b/src/licensedcode/data/rules/commercial-license_53.yml deleted file mode 100644 index 7283a581cf2..00000000000 --- a/src/licensedcode/data/rules/commercial-license_53.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/commercial-license_54.RULE b/src/licensedcode/data/rules/commercial-license_54.RULE index 38288b74c0c..0305790a8d0 100644 --- a/src/licensedcode/data/rules/commercial-license_54.RULE +++ b/src/licensedcode/data/rules/commercial-license_54.RULE @@ -1,3 +1,16 @@ +--- +license_expression: commercial-license +is_license_text: yes +relevance: 100 +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 2015-2020 Rocket.Chat Technologies Corp. +ignorable_holders: + - Rocket.Chat Technologies Corp. +ignorable_urls: + - https://rocket.chat/terms +--- + The Rocket.Chat Enterprise Edition (EE) license (the "EE License") Copyright (c) 2015-2020 Rocket.Chat Technologies Corp. diff --git a/src/licensedcode/data/rules/commercial-license_54.yml b/src/licensedcode/data/rules/commercial-license_54.yml deleted file mode 100644 index f7f6efd3432..00000000000 --- a/src/licensedcode/data/rules/commercial-license_54.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -relevance: 100 -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 2015-2020 Rocket.Chat Technologies Corp. -ignorable_holders: - - Rocket.Chat Technologies Corp. -ignorable_urls: - - https://rocket.chat/terms diff --git a/src/licensedcode/data/rules/commercial-license_55.RULE b/src/licensedcode/data/rules/commercial-license_55.RULE index d1720122250..c80cb98f510 100644 --- a/src/licensedcode/data/rules/commercial-license_55.RULE +++ b/src/licensedcode/data/rules/commercial-license_55.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_text: yes +relevance: 100 +--- -Permission is granted to no one to use this software for any purpose, including commercial application. + +Permission is granted to no one to use this software for any purpose, including commercial application. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_55.yml b/src/licensedcode/data/rules/commercial-license_55.yml deleted file mode 100644 index 5de2227ed4d..00000000000 --- a/src/licensedcode/data/rules/commercial-license_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_56.RULE b/src/licensedcode/data/rules/commercial-license_56.RULE index f355d4eecea..c38b403e84e 100644 --- a/src/licensedcode/data/rules/commercial-license_56.RULE +++ b/src/licensedcode/data/rules/commercial-license_56.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_text: yes +--- + // This file is distributed as part of the source code package // and may not be redistributed in any form, without prior written // permission from the author. Permission is granted for you to @@ -6,4 +11,4 @@ // // Permission is granted for you to use this file to compile . // -// All computer programs have bugs. Use this file at your own risk. \ No newline at end of file +// All computer programs have bugs. Use this file at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_56.yml b/src/licensedcode/data/rules/commercial-license_56.yml deleted file mode 100644 index 3d29b554a11..00000000000 --- a/src/licensedcode/data/rules/commercial-license_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/commercial-license_57.RULE b/src/licensedcode/data/rules/commercial-license_57.RULE index ef627bc2812..c4b434a2f90 100644 --- a/src/licensedcode/data/rules/commercial-license_57.RULE +++ b/src/licensedcode/data/rules/commercial-license_57.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +ignorable_emails: + - dworkin@hippolytos.cd.chalmers.se +--- + As long as you don't use DGD commercially, you can treat it as free software. Commercial use is defined as making money using DGD, e.g. a mud that charges players for playing or for certain privileges (even diff --git a/src/licensedcode/data/rules/commercial-license_57.yml b/src/licensedcode/data/rules/commercial-license_57.yml deleted file mode 100644 index e4c6bcadd61..00000000000 --- a/src/licensedcode/data/rules/commercial-license_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -ignorable_emails: - - dworkin@hippolytos.cd.chalmers.se diff --git a/src/licensedcode/data/rules/commercial-license_58.RULE b/src/licensedcode/data/rules/commercial-license_58.RULE index 00440a10492..77927bee0d5 100644 --- a/src/licensedcode/data/rules/commercial-license_58.RULE +++ b/src/licensedcode/data/rules/commercial-license_58.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + ## License This is commercial software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_58.yml b/src/licensedcode/data/rules/commercial-license_58.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_59.RULE b/src/licensedcode/data/rules/commercial-license_59.RULE index df31ba9fd99..3db0e90febb 100644 --- a/src/licensedcode/data/rules/commercial-license_59.RULE +++ b/src/licensedcode/data/rules/commercial-license_59.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.telerik.com/purchase/license-agreement/progress-kendoreact +--- + License This is commercial software. To use it, you need to agree to the [**End User License Agreement for Progress KendoReact**](https://www.telerik.com/purchase/license-agreement/progress-kendoreact). If you do not own a commercial license, this file shall be governed by the trial license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_59.yml b/src/licensedcode/data/rules/commercial-license_59.yml deleted file mode 100644 index 014656ff7ba..00000000000 --- a/src/licensedcode/data/rules/commercial-license_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.telerik.com/purchase/license-agreement/progress-kendoreact diff --git a/src/licensedcode/data/rules/commercial-license_6.RULE b/src/licensedcode/data/rules/commercial-license_6.RULE index ace00bed752..a6550421d16 100644 --- a/src/licensedcode/data/rules/commercial-license_6.RULE +++ b/src/licensedcode/data/rules/commercial-license_6.RULE @@ -1,7 +1,14 @@ +--- +license_expression: commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.linotype.com/license +--- + NOTIFICATION OF LICENSE AGREEMENT You have obtained this font software either directly from Linotype GmbH or together with software distributed by one of Linotype's licensees. This font software is a valuable asset of Linotype GmbH. Unless you have entered into a specific license agreement granting you additional rights, your use of this font software is limited to your workstation for your own use. You may not copy or distribute this font software. If you have any questions regarding your license terms, please review the license agreement you received with the software. General license terms and usage rights can be viewed at www.linotype.com/license. Generelle Lizenzbedingungen und Nutzungsrechte finden Sie unter www.linotype.com/license. -Pour plus d'informations concernant le contrat d'utilisation du logiciel de polices, veuillez consulter notre site web www.linotype.com/license. +Pour plus d'informations concernant le contrat d'utilisation du logiciel de polices, veuillez consulter notre site web www.linotype.com/license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_6.yml b/src/licensedcode/data/rules/commercial-license_6.yml deleted file mode 100644 index 623f0081c42..00000000000 --- a/src/licensedcode/data/rules/commercial-license_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.linotype.com/license diff --git a/src/licensedcode/data/rules/commercial-license_60.RULE b/src/licensedcode/data/rules/commercial-license_60.RULE index e740feff814..b7b60b2eb47 100644 --- a/src/licensedcode/data/rules/commercial-license_60.RULE +++ b/src/licensedcode/data/rules/commercial-license_60.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + This is commercial software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_60.yml b/src/licensedcode/data/rules/commercial-license_60.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_61.RULE b/src/licensedcode/data/rules/commercial-license_61.RULE index 0106d74dea0..2e4a5891ca3 100644 --- a/src/licensedcode/data/rules/commercial-license_61.RULE +++ b/src/licensedcode/data/rules/commercial-license_61.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + This is commercial software. To use it, you need to agree to the [**End User License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_61.yml b/src/licensedcode/data/rules/commercial-license_61.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_62.RULE b/src/licensedcode/data/rules/commercial-license_62.RULE index f1bf6d8f910..c43e3c655d6 100644 --- a/src/licensedcode/data/rules/commercial-license_62.RULE +++ b/src/licensedcode/data/rules/commercial-license_62.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + License This is commercial software. To use it, you need to agree to the [**End User License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_62.yml b/src/licensedcode/data/rules/commercial-license_62.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_63.RULE b/src/licensedcode/data/rules/commercial-license_63.RULE index 5bc81960946..01bf2b2e91b 100644 --- a/src/licensedcode/data/rules/commercial-license_63.RULE +++ b/src/licensedcode/data/rules/commercial-license_63.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + License This is commercial software. To use it, you need to agree to the End User License Agreement . If you do not own a commercial license, this file shall be governed by the trial license terms. All available commercial licenses may be obtained at \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_63.yml b/src/licensedcode/data/rules/commercial-license_63.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_64.RULE b/src/licensedcode/data/rules/commercial-license_64.RULE index dd545e46b1b..beb16f3cefb 100644 --- a/src/licensedcode/data/rules/commercial-license_64.RULE +++ b/src/licensedcode/data/rules/commercial-license_64.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + License -This is {{commercial software}}. To use it, you need to {{agree to the End User License Agreement}} . If you {{do not own a commercial license}}, this file shall be governed by the trial license terms. +This is {{commercial software}}. To use it, you need to {{agree to the End User License Agreement}} . If you {{do not own a commercial license}}, this file shall be governed by the trial license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_64.yml b/src/licensedcode/data/rules/commercial-license_64.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_65.RULE b/src/licensedcode/data/rules/commercial-license_65.RULE index 3a5c625499d..ce6e58c38a8 100644 --- a/src/licensedcode/data/rules/commercial-license_65.RULE +++ b/src/licensedcode/data/rules/commercial-license_65.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_65.yml b/src/licensedcode/data/rules/commercial-license_65.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_66.RULE b/src/licensedcode/data/rules/commercial-license_66.RULE index 327e1f3cfae..565a804c925 100644 --- a/src/licensedcode/data/rules/commercial-license_66.RULE +++ b/src/licensedcode/data/rules/commercial-license_66.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +ignorable_authors: + - Labs +--- + This file is licensed under the terms of the Labs' Commercial License Agreement distributed with the file or available on the software download site. Recipient shall use the content of this file only on semiconductor devices or diff --git a/src/licensedcode/data/rules/commercial-license_66.yml b/src/licensedcode/data/rules/commercial-license_66.yml deleted file mode 100644 index 09e95118f9c..00000000000 --- a/src/licensedcode/data/rules/commercial-license_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -ignorable_authors: - - Labs diff --git a/src/licensedcode/data/rules/commercial-license_67.RULE b/src/licensedcode/data/rules/commercial-license_67.RULE index 51e8fca65b7..b80abf87b56 100644 --- a/src/licensedcode/data/rules/commercial-license_67.RULE +++ b/src/licensedcode/data/rules/commercial-license_67.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + LicenseRef-Qt-Commercial \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_67.yml b/src/licensedcode/data/rules/commercial-license_67.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_68.RULE b/src/licensedcode/data/rules/commercial-license_68.RULE index 1cfe3a9d389..de3fce91544 100644 --- a/src/licensedcode/data/rules/commercial-license_68.RULE +++ b/src/licensedcode/data/rules/commercial-license_68.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + licensed under a commercial contract \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_68.yml b/src/licensedcode/data/rules/commercial-license_68.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_69.RULE b/src/licensedcode/data/rules/commercial-license_69.RULE index 6aef4268b6f..9446f1e6c3b 100644 --- a/src/licensedcode/data/rules/commercial-license_69.RULE +++ b/src/licensedcode/data/rules/commercial-license_69.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + licensed under a commercial license \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_69.yml b/src/licensedcode/data/rules/commercial-license_69.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_7.RULE b/src/licensedcode/data/rules/commercial-license_7.RULE index 332ebdc43ad..65b633c2046 100644 --- a/src/licensedcode/data/rules/commercial-license_7.RULE +++ b/src/licensedcode/data/rules/commercial-license_7.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + All use of this software is subject to MuleSoft’s Master Subscription Agreement (or other Terms of Service) separately entered into between you and MuleSoft. If such an agreement is not in place, you may not use the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_7.yml b/src/licensedcode/data/rules/commercial-license_7.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_70.RULE b/src/licensedcode/data/rules/commercial-license_70.RULE index 65984c16eef..1dbd3ecb2a8 100644 --- a/src/licensedcode/data/rules/commercial-license_70.RULE +++ b/src/licensedcode/data/rules/commercial-license_70.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + require a commercial license to be used in a commercial business. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_70.yml b/src/licensedcode/data/rules/commercial-license_70.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_71.RULE b/src/licensedcode/data/rules/commercial-license_71.RULE index 8c0563946cc..1a69df75c5e 100644 --- a/src/licensedcode/data/rules/commercial-license_71.RULE +++ b/src/licensedcode/data/rules/commercial-license_71.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + require a commercial license to be used \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_71.yml b/src/licensedcode/data/rules/commercial-license_71.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_72.RULE b/src/licensedcode/data/rules/commercial-license_72.RULE index e0ec27bfde1..9f5c4d0270d 100644 --- a/src/licensedcode/data/rules/commercial-license_72.RULE +++ b/src/licensedcode/data/rules/commercial-license_72.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + Commercial licenses, which includes support, can be purchased \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_72.yml b/src/licensedcode/data/rules/commercial-license_72.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_73.RULE b/src/licensedcode/data/rules/commercial-license_73.RULE index ff81f1f6497..555c6ff7b06 100644 --- a/src/licensedcode/data/rules/commercial-license_73.RULE +++ b/src/licensedcode/data/rules/commercial-license_73.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + * NOTICE OF LICENSE * This source file is subject to a commercial license from * Use, copy, modification or distribution of this source file without written diff --git a/src/licensedcode/data/rules/commercial-license_73.yml b/src/licensedcode/data/rules/commercial-license_73.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_74.RULE b/src/licensedcode/data/rules/commercial-license_74.RULE index 19202518d1b..6c1debd5e0e 100644 --- a/src/licensedcode/data/rules/commercial-license_74.RULE +++ b/src/licensedcode/data/rules/commercial-license_74.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + * This source file is subject to a commercial license * \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_74.yml b/src/licensedcode/data/rules/commercial-license_74.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_75.RULE b/src/licensedcode/data/rules/commercial-license_75.RULE index 5ed536febf6..89184cb5b4e 100644 --- a/src/licensedcode/data/rules/commercial-license_75.RULE +++ b/src/licensedcode/data/rules/commercial-license_75.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + * This source file is subject to a commercial license from * Use, copy, modification or distribution of this source file without written * license agreement from the is strictly forbidden. diff --git a/src/licensedcode/data/rules/commercial-license_75.yml b/src/licensedcode/data/rules/commercial-license_75.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_76.RULE b/src/licensedcode/data/rules/commercial-license_76.RULE index 4919a4e518f..5b372164faf 100644 --- a/src/licensedcode/data/rules/commercial-license_76.RULE +++ b/src/licensedcode/data/rules/commercial-license_76.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + is a commercial product and requires a license to be used. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_76.yml b/src/licensedcode/data/rules/commercial-license_76.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_77.RULE b/src/licensedcode/data/rules/commercial-license_77.RULE index 3368066c25a..418f9de9722 100644 --- a/src/licensedcode/data/rules/commercial-license_77.RULE +++ b/src/licensedcode/data/rules/commercial-license_77.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_text: yes +--- + Software End User License Agreement This End User License Agreement, including the Order Form which by this reference is incorporated herein (this “Agreement”), is a binding agreement between (“Licensor”) and the person or entity identified on the Order Form as the licensee of the Software (“Licensee”). diff --git a/src/licensedcode/data/rules/commercial-license_77.yml b/src/licensedcode/data/rules/commercial-license_77.yml deleted file mode 100644 index 3d29b554a11..00000000000 --- a/src/licensedcode/data/rules/commercial-license_77.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/commercial-license_78.RULE b/src/licensedcode/data/rules/commercial-license_78.RULE index 2e493e61043..5d7d02fc3e6 100644 --- a/src/licensedcode/data/rules/commercial-license_78.RULE +++ b/src/licensedcode/data/rules/commercial-license_78.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + * This software is the confidential and proprietary information of * . Your rights, if any, with respect to the * software are governed by your license agreement with \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_78.yml b/src/licensedcode/data/rules/commercial-license_78.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_78.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_79.RULE b/src/licensedcode/data/rules/commercial-license_79.RULE index 532295ab047..f7bbd9d5c66 100644 --- a/src/licensedcode/data/rules/commercial-license_79.RULE +++ b/src/licensedcode/data/rules/commercial-license_79.RULE @@ -1 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + {{to purchase a license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_79.yml b/src/licensedcode/data/rules/commercial-license_79.yml deleted file mode 100644 index 4783fd679b1..00000000000 --- a/src/licensedcode/data/rules/commercial-license_79.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_8.RULE b/src/licensedcode/data/rules/commercial-license_8.RULE index fc4e5d155fc..52ef3c13abc 100644 --- a/src/licensedcode/data/rules/commercial-license_8.RULE +++ b/src/licensedcode/data/rules/commercial-license_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://assets.nagios.com/licenses/nagios_software_license.txt +--- + License: Nagios Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_8.yml b/src/licensedcode/data/rules/commercial-license_8.yml deleted file mode 100644 index b140d40f108..00000000000 --- a/src/licensedcode/data/rules/commercial-license_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://assets.nagios.com/licenses/nagios_software_license.txt diff --git a/src/licensedcode/data/rules/commercial-license_9.RULE b/src/licensedcode/data/rules/commercial-license_9.RULE index 6b655b97713..338101c0b17 100644 --- a/src/licensedcode/data/rules/commercial-license_9.RULE +++ b/src/licensedcode/data/rules/commercial-license_9.RULE @@ -1 +1,9 @@ -Nagios Software License +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://assets.nagios.com/licenses/nagios_software_license.txt +--- + +Nagios Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_9.yml b/src/licensedcode/data/rules/commercial-license_9.yml deleted file mode 100644 index fd15d585dad..00000000000 --- a/src/licensedcode/data/rules/commercial-license_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://assets.nagios.com/licenses/nagios_software_license.txt diff --git a/src/licensedcode/data/rules/commercial-license_and_other-permissive_and_mit_1.RULE b/src/licensedcode/data/rules/commercial-license_and_other-permissive_and_mit_1.RULE index 9c78ec68607..55c7e836392 100644 --- a/src/licensedcode/data/rules/commercial-license_and_other-permissive_and_mit_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_and_other-permissive_and_mit_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license AND other-permissive AND mit +is_license_notice: yes +relevance: 100 +--- + Portions of this software are licensed as follows: * All content that resides under the "ee/" directory of this repository, if diff --git a/src/licensedcode/data/rules/commercial-license_and_other-permissive_and_mit_1.yml b/src/licensedcode/data/rules/commercial-license_and_other-permissive_and_mit_1.yml deleted file mode 100644 index dc1e4721fe2..00000000000 --- a/src/licensedcode/data/rules/commercial-license_and_other-permissive_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license AND other-permissive AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_bcm.RULE b/src/licensedcode/data/rules/commercial-license_bcm.RULE index 8340b4ef7de..97bc3f6993d 100644 --- a/src/licensedcode/data/rules/commercial-license_bcm.RULE +++ b/src/licensedcode/data/rules/commercial-license_bcm.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_text: yes +--- + BroadCom License Agreement IMPORTANT-READ CAREFULLY: This End-User License Agreement ("EULA") is a legal agreement between you ("Licensee") and Broadcom Corporation ("Broadcom") for the Broadcom software that accompanies this EULA, which includes computer software and may include associated media, printed materials, "online" or electronic documentation, and Internet-based services ("Software"). BY OPENING THE SOFTWARE PACKAGE, CLICKING ON THE "ACCEPT" BUTTON OF ANY ELECTRONIC VERSION OF THIS END USER LICENSE AGREEMENT ("AGREEMENT") OR ACCESSING OR INSTALLING THE SOFTWARE, YOU ACKNOWLEDGE THAT YOU HAVE READ THE LICENSE AGREEMENT, UNDERSTAND IT AND AGREE TO BE BOUND BY ITS TERMS AND CONDITIONS. IF YOU DO NOT AGREE TO THE TERMS OF THIS EULA, PROMPTLY CLICK ON THE "DECLINE" BUTTON AND DO NOT DOWNLOAD, INSTALL, COPY OR USE THE SOFTWARE. diff --git a/src/licensedcode/data/rules/commercial-license_bcm.yml b/src/licensedcode/data/rules/commercial-license_bcm.yml deleted file mode 100644 index 3d29b554a11..00000000000 --- a/src/licensedcode/data/rules/commercial-license_bcm.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/commercial-license_bcm1.RULE b/src/licensedcode/data/rules/commercial-license_bcm1.RULE index 653075486ef..f3749077455 100644 --- a/src/licensedcode/data/rules/commercial-license_bcm1.RULE +++ b/src/licensedcode/data/rules/commercial-license_bcm1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + * This material is the confidential trade secret and proprietary * * information of Broadcom Corporation. It may not be reproduced, * * used, sold or transferred to any third party without the prior * diff --git a/src/licensedcode/data/rules/commercial-license_bcm1.yml b/src/licensedcode/data/rules/commercial-license_bcm1.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_bcm1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_bitstream.RULE b/src/licensedcode/data/rules/commercial-license_bitstream.RULE index b20f772e28f..aa6e9df157a 100644 --- a/src/licensedcode/data/rules/commercial-license_bitstream.RULE +++ b/src/licensedcode/data/rules/commercial-license_bitstream.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_text: yes +--- + Bitstream License Agreement Bitstream, Inc. Electronic License Agreement diff --git a/src/licensedcode/data/rules/commercial-license_bitstream.yml b/src/licensedcode/data/rules/commercial-license_bitstream.yml deleted file mode 100644 index 3d29b554a11..00000000000 --- a/src/licensedcode/data/rules/commercial-license_bitstream.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-application-1.7.2.RULE b/src/licensedcode/data/rules/commercial-license_fontspring-application-1.7.2.RULE index 8c7227f10af..2037ab47467 100644 --- a/src/licensedcode/data/rules/commercial-license_fontspring-application-1.7.2.RULE +++ b/src/licensedcode/data/rules/commercial-license_fontspring-application-1.7.2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +ignorable_emails: + - support@fontspring.com +--- + The Fontspring Application Font End User License Agreement Version 1.7.2 - May 14, 2018 diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-application-1.7.2.yml b/src/licensedcode/data/rules/commercial-license_fontspring-application-1.7.2.yml deleted file mode 100644 index 5ff08ba438f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_fontspring-application-1.7.2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -ignorable_emails: - - support@fontspring.com diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-demo-1.7.RULE b/src/licensedcode/data/rules/commercial-license_fontspring-demo-1.7.RULE index 5fbc0f4130d..1293a3bd7aa 100644 --- a/src/licensedcode/data/rules/commercial-license_fontspring-demo-1.7.RULE +++ b/src/licensedcode/data/rules/commercial-license_fontspring-demo-1.7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +ignorable_emails: + - support@fontspring.com +--- + The Fontspring Demo Font End User License Agreement Version 1.7 - January 21, 2016. @@ -50,4 +57,4 @@ This EULA, in conjunction with the receipt (“Receipt”) that accompanies each 12. Modification The Parties may modify or amend this EULA in writing. -13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. \ No newline at end of file +13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-demo-1.7.yml b/src/licensedcode/data/rules/commercial-license_fontspring-demo-1.7.yml deleted file mode 100644 index 5ff08ba438f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_fontspring-demo-1.7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -ignorable_emails: - - support@fontspring.com diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-desktop-1.7.RULE b/src/licensedcode/data/rules/commercial-license_fontspring-desktop-1.7.RULE index 849fc14689f..036a3c49ebb 100644 --- a/src/licensedcode/data/rules/commercial-license_fontspring-desktop-1.7.RULE +++ b/src/licensedcode/data/rules/commercial-license_fontspring-desktop-1.7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +ignorable_emails: + - support@fontspring.com +--- + The Fontspring Desktop Font End User License Agreement Version 1.7.0 - February 26, 2017 @@ -71,4 +78,4 @@ This EULA, in conjunction with the Invoice that accompanies each Font licensed f 12. Modification The Parties may modify or amend this EULA in writing. -13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. +13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-desktop-1.7.yml b/src/licensedcode/data/rules/commercial-license_fontspring-desktop-1.7.yml deleted file mode 100644 index 5ff08ba438f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_fontspring-desktop-1.7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -ignorable_emails: - - support@fontspring.com diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-ebook-1.7.RULE b/src/licensedcode/data/rules/commercial-license_fontspring-ebook-1.7.RULE index 78b9f6f04f3..47a9b05afa5 100644 --- a/src/licensedcode/data/rules/commercial-license_fontspring-ebook-1.7.RULE +++ b/src/licensedcode/data/rules/commercial-license_fontspring-ebook-1.7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +ignorable_emails: + - support@fontspring.com +--- + The Fontspring Ebook Font End User License Agreement Version 1.7.0 - February 26, 2017 @@ -58,4 +65,4 @@ This EULA, in conjunction with the Invoice (“Invoice”) that accompanies each 12. Modification The Parties may modify or amend this EULA in writing. -13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. +13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-ebook-1.7.yml b/src/licensedcode/data/rules/commercial-license_fontspring-ebook-1.7.yml deleted file mode 100644 index 5ff08ba438f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_fontspring-ebook-1.7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -ignorable_emails: - - support@fontspring.com diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-webfont-1.7.RULE b/src/licensedcode/data/rules/commercial-license_fontspring-webfont-1.7.RULE index 18fb2af5840..7660d98583c 100644 --- a/src/licensedcode/data/rules/commercial-license_fontspring-webfont-1.7.RULE +++ b/src/licensedcode/data/rules/commercial-license_fontspring-webfont-1.7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license +is_license_text: yes +ignorable_emails: + - support@fontspring.com +--- + The Fontspring Webfont End User License Agreement Version 1.7.0 - February 26, 2017 @@ -57,4 +64,4 @@ This EULA, in conjunction with the invoice (“Invoice”) that accompanies each 12. Modification The Parties may modify or amend this EULA in writing. -13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. +13. Waiver. The waiver of one breach or default hereunder shall not constitute the waiver of any subsequent breach or default. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_fontspring-webfont-1.7.yml b/src/licensedcode/data/rules/commercial-license_fontspring-webfont-1.7.yml deleted file mode 100644 index 5ff08ba438f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_fontspring-webfont-1.7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license -is_license_text: yes -ignorable_emails: - - support@fontspring.com diff --git a/src/licensedcode/data/rules/commercial-license_india.RULE b/src/licensedcode/data/rules/commercial-license_india.RULE index dacdbe35b56..a1a3348e124 100644 --- a/src/licensedcode/data/rules/commercial-license_india.RULE +++ b/src/licensedcode/data/rules/commercial-license_india.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + THE COPYRIGHT IN THE CONTENTS OF THIS SOFTWARE VEST WITH LIMITED A COMPANY INCORPORATED UNDER THE LAWS OF INDIA AND HAVING ITS REGISTERED OFFICE AT : @@ -6,4 +11,4 @@ ANY INDIVIDUAL OR ENTITY OTHER THAN THE ADDRESSEE IS STRICTLY PROHIBITED AND MAY INCUR LEGAL LIABILITY. IF YOU ARE NOT THE ADDRESSEE PLEASE NOTIFY US IMMEDIATELY BY PHONE OR BY RETURN EMAIL. THE ADDRESSEE IS ADVISED TO MAINTAIN THE PROPRIETARY INTERESTS OF -THIS COPYRIGHT AS PER APPLICABLE LAWS. +THIS COPYRIGHT AS PER APPLICABLE LAWS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_india.yml b/src/licensedcode/data/rules/commercial-license_india.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_india.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_khronos_1.RULE b/src/licensedcode/data/rules/commercial-license_khronos_1.RULE index b70369617a1..119f05d4932 100644 --- a/src/licensedcode/data/rules/commercial-license_khronos_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_khronos_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + ** This document is protected by copyright, and contains information ** proprietary to The Khronos Group. Any copying, adaptation, distribution, ** public performance, or public display of this document without the diff --git a/src/licensedcode/data/rules/commercial-license_khronos_1.yml b/src/licensedcode/data/rules/commercial-license_khronos_1.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_khronos_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_khronos_2.RULE b/src/licensedcode/data/rules/commercial-license_khronos_2.RULE index 5b979c306ce..7ef523aaa9d 100644 --- a/src/licensedcode/data/rules/commercial-license_khronos_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_khronos_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + ** This document is protected by copyright, and contains information ** proprietary to The Group. Any copying, adaptation, distribution, ** public performance, or public display of this document without the diff --git a/src/licensedcode/data/rules/commercial-license_khronos_2.yml b/src/licensedcode/data/rules/commercial-license_khronos_2.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_khronos_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_nc1.RULE b/src/licensedcode/data/rules/commercial-license_nc1.RULE index 69e789830e2..fbe76567746 100644 --- a/src/licensedcode/data/rules/commercial-license_nc1.RULE +++ b/src/licensedcode/data/rules/commercial-license_nc1.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + is limited to non-commercial use. Commercial use is an illegal act. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_nc1.yml b/src/licensedcode/data/rules/commercial-license_nc1.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_nc1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_nc2.RULE b/src/licensedcode/data/rules/commercial-license_nc2.RULE index d4bbb2c71da..54a5c8bf4eb 100644 --- a/src/licensedcode/data/rules/commercial-license_nc2.RULE +++ b/src/licensedcode/data/rules/commercial-license_nc2.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + NonCommercial Edition \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_nc2.yml b/src/licensedcode/data/rules/commercial-license_nc2.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_nc2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_nc3.RULE b/src/licensedcode/data/rules/commercial-license_nc3.RULE index 4bafe2bc996..b8d5d273767 100644 --- a/src/licensedcode/data/rules/commercial-license_nc3.RULE +++ b/src/licensedcode/data/rules/commercial-license_nc3.RULE @@ -1 +1,7 @@ -NonCommercial Edition is limited to non-commercial use. Commercial use is an illegal act. \ No newline at end of file +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + +NonCommercial Edition is limited to non-commercial use. Commercial use is an illegal act. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_nc3.yml b/src/licensedcode/data/rules/commercial-license_nc3.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_nc3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_non_com.RULE b/src/licensedcode/data/rules/commercial-license_non_com.RULE index a61ceb84d59..84cc93858b8 100644 --- a/src/licensedcode/data/rules/commercial-license_non_com.RULE +++ b/src/licensedcode/data/rules/commercial-license_non_com.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +relevance: 100 +--- + Permission granted to use this and related files for non-commercial purposes \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_non_com.yml b/src/licensedcode/data/rules/commercial-license_non_com.yml deleted file mode 100644 index d7cf75abec5..00000000000 --- a/src/licensedcode/data/rules/commercial-license_non_com.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_or_agpl-3.0_with_agpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/commercial-license_or_agpl-3.0_with_agpl-generic-additional-terms_1.RULE index 8d80abc7fc8..99bc58d1713 100644 --- a/src/licensedcode/data/rules/commercial-license_or_agpl-3.0_with_agpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_agpl-3.0_with_agpl-generic-additional-terms_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license OR agpl-3.0 WITH agpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + Commercial License Usage Licensees holding valid commercial Zipper licenses may use this file in diff --git a/src/licensedcode/data/rules/commercial-license_or_agpl-3.0_with_agpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/commercial-license_or_agpl-3.0_with_agpl-generic-additional-terms_1.yml deleted file mode 100644 index 0e17f1a5880..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_agpl-3.0_with_agpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license OR agpl-3.0 WITH agpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_or_bsd-new_1.RULE b/src/licensedcode/data/rules/commercial-license_or_bsd-new_1.RULE index 3103ee827d3..9f0279bf615 100644 --- a/src/licensedcode/data/rules/commercial-license_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_bsd-new_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: commercial-license OR bsd-new +is_license_text: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.qt.io/contact-us + - https://www.qt.io/terms-conditions +--- + ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in @@ -35,4 +44,4 @@ ** 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." +** 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/commercial-license_or_bsd-new_1.yml b/src/licensedcode/data/rules/commercial-license_or_bsd-new_1.yml deleted file mode 100644 index fe300983bed..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_bsd-new_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: commercial-license OR bsd-new -is_license_text: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.qt.io/contact-us - - https://www.qt.io/terms-conditions diff --git a/src/licensedcode/data/rules/commercial-license_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/commercial-license_or_bsd-simplified_1.RULE index 5168f0c2d51..5552d688327 100644 --- a/src/licensedcode/data/rules/commercial-license_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_bsd-simplified_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR bsd-simplified +is_license_text: yes +ignorable_urls: + - http://www.qt.io/contact-us + - http://www.qt.io/terms-conditions +--- + Commercial License Usage Licensees holding valid commercial Qt licenses may use this file in accordance with the commercial license agreement provided with the @@ -27,4 +35,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/commercial-license_or_bsd-simplified_1.yml deleted file mode 100644 index 3c5f0af63b0..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_bsd-simplified_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR bsd-simplified -is_license_text: yes -ignorable_urls: - - http://www.qt.io/contact-us - - http://www.qt.io/terms-conditions diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_1.RULE index 1da85e37dcc..ba7fddc5a09 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + getID3() Commercial License getID3() is licensed under the "GNU Public License" (GPL) and/or the "getID3() Commercial License" (gCL). This document describes the gCL. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_1.yml deleted file mode 100644 index e65a0957368..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_2.RULE index cb3294d8d32..5baa11f2a40 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.txt +--- + | This 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 | diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_2.yml deleted file mode 100644 index dd43aec27ec..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_1.RULE index 666afc84262..216010ef1dd 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_1.yml deleted file mode 100644 index ba292d17179..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_2.RULE index aa7c2146700..c2ba3c71c19 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_2.yml deleted file mode 100644 index cc9df63764b..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_3.RULE index 21dffc5347a..18ef442266c 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.txt +--- + * This software file (the "File") is owned and distributed by Marvell * International Ltd. and/or its affiliates ("Marvell") under the following * licensing terms. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_3.yml deleted file mode 100644 index 0fecc690db7..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_1.RULE index 5bde036d7f9..5282625fcac 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_1.yml deleted file mode 100644 index 7f5b636d6f4..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_2.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_2.RULE index 95a00240f06..538d1822fd9 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_2.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_2.yml deleted file mode 100644 index e0bf5d32638..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_bsd-simplified_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_1.RULE index 07f1884090f..42c91433ad3 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_1.yml deleted file mode 100644 index 3b885e231cf..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_2.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_2.RULE index 340bb75db66..60b18be3729 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_2.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_2.yml deleted file mode 100644 index 2da52fbaedc..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_1.RULE index 7bb57883507..a90a00c0469 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 OR gpl-3.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_1.yml deleted file mode 100644 index 8e37e09b3e4..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 OR gpl-3.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_2.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_2.RULE index 8faae4d1706..10f0718e097 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-2.0 OR gpl-3.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This file may be licensed under the terms of the Labs Commercial License Agreement. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_2.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_2.yml deleted file mode 100644 index 4e516a3e799..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-2.0_or_gpl-3.0_or_bsd-simplified_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 OR gpl-3.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_1.RULE index 77be791c9c3..873fb0d49a6 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: commercial-license OR gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.extjs.com/license +--- + http://www.extjs.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_1.yml deleted file mode 100644 index 8bf56cddf99..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.extjs.com/license diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_2.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_2.RULE index 2bfdff7c045..8f4cb957c81 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: commercial-license OR gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.extjs.com/license +--- + licensing@ http://www.extjs.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_2.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_2.yml deleted file mode 100644 index 04daa9a581d..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.extjs.com/license diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_3.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_3.RULE index 1b3b45e831a..f54cb07a34e 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: commercial-license OR gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://extjs.com/license +--- + https://extjs.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_3.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_3.yml deleted file mode 100644 index 65d4bfb2cb0..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://extjs.com/license diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_4.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_4.RULE index 81df5afe9d2..762d00fc58a 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: commercial-license OR gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.extjs.com/license +--- + https://www.extjs.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_4.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_4.yml deleted file mode 100644 index 3d2f5362868..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.extjs.com/license diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_5.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_5.RULE index 0894adac7c8..e5b5bfc88f1 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commercial-license OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://scrollrevealjs.org/ +--- + Licensed under the GNU General Public License 3.0 for compatible open source projects and non-commercial use. For commercial sites, themes, projects, and applications, diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_5.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_5.yml deleted file mode 100644 index 9f32eaed481..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commercial-license OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://scrollrevealjs.org/ diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_6.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_6.RULE index 2968cfd5dd6..34cd1ad067e 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License 3.0 for compatible open source projects and non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_6.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_6.yml deleted file mode 100644 index c7722d303bb..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_7.RULE b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_7.RULE index 2f0578b72aa..bebbbb9ca3a 100644 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_7.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commercial-license OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License For commercial sites, themes, projects, and applications, keep your source code private/proprietary by purchasing a Commercial License. diff --git a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_7.yml b/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_7.yml deleted file mode 100644 index c7722d303bb..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_gpl-3.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_or_gpl-3.0_1.RULE index e98cdd7531e..3210c94a7c7 100644 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_or_gpl-3.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license OR lgpl-2.1 OR gpl-3.0 +is_license_notice: yes +--- + " Qt is available under three different licensing options designed " "to accommodate the needs of our various users. " " Qt licensed under our commercial license agreement is appropriate " diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_or_gpl-3.0_1.yml deleted file mode 100644 index 8ee5c018c55..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_or_gpl-3.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 OR gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.RULE index 9e535ac4e04..c12c4df3809 100644 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.yml deleted file mode 100644 index 2913593ea4c..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.RULE b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.RULE index f519d3c24e6..61be87b366c 100644 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.RULE @@ -1,3 +1,17 @@ +--- +license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.yml b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.yml deleted file mode 100644 index 02650a9c906..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.RULE b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.RULE index 9e436baf235..4a8e41c5d58 100644 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +ignorable_emails: + - qt-info@nokia.com +--- + ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in @@ -27,4 +42,4 @@ ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. - ** $QT_END_LICENSE$ + ** $QT_END_LICENSE$ \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.yml b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.yml deleted file mode 100644 index 6273445d7ca..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html -ignorable_emails: - - qt-info@nokia.com diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_4.RULE b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_4.RULE index ea59e44dfcf..6412eefd527 100644 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_4.RULE @@ -1,3 +1,17 @@ +--- +license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_4.yml b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_4.yml deleted file mode 100644 index 02650a9c906..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_4.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_5.RULE b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_5.RULE index fb30c5a6d99..ab70c876f1a 100644 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_5.RULE @@ -1,3 +1,17 @@ +--- +license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_5.yml b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_5.yml deleted file mode 100644 index 2913593ea4c..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_5.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_6.RULE b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_6.RULE index c8e6f014b05..d0b646b9766 100644 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_6.RULE @@ -1,3 +1,17 @@ +--- +license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the diff --git a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_6.yml b/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_6.yml deleted file mode 100644 index 02650a9c906..00000000000 --- a/src/licensedcode/data/rules/commercial-license_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_6.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/commercial-license_proprietary_108.RULE b/src/licensedcode/data/rules/commercial-license_proprietary_108.RULE index 5572f02cbed..3e604e4a712 100644 --- a/src/licensedcode/data/rules/commercial-license_proprietary_108.RULE +++ b/src/licensedcode/data/rules/commercial-license_proprietary_108.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + Copyright Statement: This software/firmware and related documentation (" Software") are @@ -5,4 +10,4 @@ protected under relevant copyright laws. The information contained herein is confidential and proprietary to Inc. and/or its licensors. Without the prior written permission of inc. and/or its licensors, any reproduction, modification, use or disclosure of Software, -and information contained herein, in whole or in part, shall be strictly prohibited. +and information contained herein, in whole or in part, shall be strictly prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_proprietary_108.yml b/src/licensedcode/data/rules/commercial-license_proprietary_108.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_proprietary_108.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_proprietary_109.RULE b/src/licensedcode/data/rules/commercial-license_proprietary_109.RULE index 948be486b86..9caedbe9bec 100644 --- a/src/licensedcode/data/rules/commercial-license_proprietary_109.RULE +++ b/src/licensedcode/data/rules/commercial-license_proprietary_109.RULE @@ -1,7 +1,12 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + This software/firmware and related documentation (" Software") are protected under relevant copyright laws. The information contained herein is confidential and proprietary to Inc. and/or its licensors. Without the prior written permission of inc. and/or its licensors, any reproduction, modification, use or disclosure of Software, -and information contained herein, in whole or in part, shall be strictly prohibited. +and information contained herein, in whole or in part, shall be strictly prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_proprietary_109.yml b/src/licensedcode/data/rules/commercial-license_proprietary_109.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/commercial-license_proprietary_109.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/commercial-license_proprietary_11.RULE b/src/licensedcode/data/rules/commercial-license_proprietary_11.RULE index a832452ddb7..e382e5d94b2 100644 --- a/src/licensedcode/data/rules/commercial-license_proprietary_11.RULE +++ b/src/licensedcode/data/rules/commercial-license_proprietary_11.RULE @@ -1,2 +1,7 @@ -THIS SOFTWARE IS CONFIDENTIAL AND PROPRIETARY, PROPERTY OF +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- +THIS SOFTWARE IS CONFIDENTIAL AND PROPRIETARY, PROPERTY OF \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_proprietary_11.yml b/src/licensedcode/data/rules/commercial-license_proprietary_11.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-license_proprietary_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-option.RULE b/src/licensedcode/data/rules/commercial-option.RULE index a71eefc10d3..10687da1f38 100644 --- a/src/licensedcode/data/rules/commercial-option.RULE +++ b/src/licensedcode/data/rules/commercial-option.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + if you require non-attribution you can purchase the commercial licence -available at +available at \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-option.yml b/src/licensedcode/data/rules/commercial-option.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-option.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-option_1.RULE b/src/licensedcode/data/rules/commercial-option_1.RULE index 84ac1a19659..2bfe8e3ef11 100644 --- a/src/licensedcode/data/rules/commercial-option_1.RULE +++ b/src/licensedcode/data/rules/commercial-option_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + A commercial ** use license for this code is available, please see: \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-option_1.yml b/src/licensedcode/data/rules/commercial-option_1.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-option_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-option_33.RULE b/src/licensedcode/data/rules/commercial-option_33.RULE index 338fe88779b..630a795081f 100644 --- a/src/licensedcode/data/rules/commercial-option_33.RULE +++ b/src/licensedcode/data/rules/commercial-option_33.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + commercial license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-option_33.yml b/src/licensedcode/data/rules/commercial-option_33.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/commercial-option_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commercial-option_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/commercial-option_or_gpl-1.0-plus_1.RULE index 9a2903c232f..2538e97e798 100644 --- a/src/licensedcode/data/rules/commercial-option_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/commercial-option_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license OR gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + | This 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 | diff --git a/src/licensedcode/data/rules/commercial-option_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/commercial-option_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 0220782d5a9..00000000000 --- a/src/licensedcode/data/rules/commercial-option_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license OR gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/commercial-option_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/commercial-option_or_gpl-2.0_1.RULE index c640a2f8194..7873717382c 100644 --- a/src/licensedcode/data/rules/commercial-option_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/commercial-option_or_gpl-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: commercial-license OR gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + * This software file (the "File") is owned and distributed by Marvell * International Ltd. and/or its affiliates ("Marvell") under the following * licensing terms. diff --git a/src/licensedcode/data/rules/commercial-option_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/commercial-option_or_gpl-2.0_1.yml deleted file mode 100644 index e7c3adc4489..00000000000 --- a/src/licensedcode/data/rules/commercial-option_or_gpl-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: commercial-license OR gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/commonj-timer.RULE b/src/licensedcode/data/rules/commonj-timer.RULE index 009b82ac960..f03f7cebaa2 100644 --- a/src/licensedcode/data/rules/commonj-timer.RULE +++ b/src/licensedcode/data/rules/commonj-timer.RULE @@ -1,3 +1,13 @@ +--- +license_expression: commonj-timer +is_license_text: yes +notes: Original text +ignorable_urls: + - http://dev2dev.bea.com/technologies/commonj/index.jsp + - http://dev2dev.bea.com/wlplatform/commonj/twm.html + - http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ +--- + CommonJ Time and Work Manager License General information: http://dev2dev.bea.com/wlplatform/commonj/twm.html diff --git a/src/licensedcode/data/rules/commonj-timer.yml b/src/licensedcode/data/rules/commonj-timer.yml deleted file mode 100644 index a02ee214990..00000000000 --- a/src/licensedcode/data/rules/commonj-timer.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: commonj-timer -is_license_text: yes -notes: Original text -ignorable_urls: - - http://dev2dev.bea.com/technologies/commonj/index.jsp - - http://dev2dev.bea.com/wlplatform/commonj/twm.html - - http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ diff --git a/src/licensedcode/data/rules/commonj-timer_1.RULE b/src/licensedcode/data/rules/commonj-timer_1.RULE index be7c0cb8048..b5b37f49950 100644 --- a/src/licensedcode/data/rules/commonj-timer_1.RULE +++ b/src/licensedcode/data/rules/commonj-timer_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: commonj-timer +is_license_notice: yes +ignorable_urls: + - http://dev2dev.bea.com/technologies/commonj/index.jsp + - http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ +--- + By using and/or copying this work, you agree that you have read, understood and will comply with the following terms and conditions: diff --git a/src/licensedcode/data/rules/commonj-timer_1.yml b/src/licensedcode/data/rules/commonj-timer_1.yml deleted file mode 100644 index 5393c40da52..00000000000 --- a/src/licensedcode/data/rules/commonj-timer_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: commonj-timer -is_license_notice: yes -ignorable_urls: - - http://dev2dev.bea.com/technologies/commonj/index.jsp - - http://www.ibm.com/developerworks/library/j-commonj-sdowmt/ diff --git a/src/licensedcode/data/rules/commons-clause_1.RULE b/src/licensedcode/data/rules/commons-clause_1.RULE index f2b9a1b8485..8606c36c095 100644 --- a/src/licensedcode/data/rules/commons-clause_1.RULE +++ b/src/licensedcode/data/rules/commons-clause_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commons-clause +is_license_text: yes +--- + “Commons Clause” License Condition v1.0 The Software is provided to you by the Licensor under the License, as defined @@ -13,4 +18,4 @@ consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the ense must also include this -Commons Cause License Condition notice. +Commons Cause License Condition notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commons-clause_1.yml b/src/licensedcode/data/rules/commons-clause_1.yml deleted file mode 100644 index 44f230ba36e..00000000000 --- a/src/licensedcode/data/rules/commons-clause_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commons-clause -is_license_text: yes diff --git a/src/licensedcode/data/rules/commons-clause_10.RULE b/src/licensedcode/data/rules/commons-clause_10.RULE index d4dc3c54a1d..a5415c1f1a1 100644 --- a/src/licensedcode/data/rules/commons-clause_10.RULE +++ b/src/licensedcode/data/rules/commons-clause_10.RULE @@ -1 +1,7 @@ +--- +license_expression: commons-clause +is_license_reference: yes +relevance: 100 +--- + “Commons Clause” License \ No newline at end of file diff --git a/src/licensedcode/data/rules/commons-clause_10.yml b/src/licensedcode/data/rules/commons-clause_10.yml deleted file mode 100644 index 11c6f0b2899..00000000000 --- a/src/licensedcode/data/rules/commons-clause_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commons-clause -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commons-clause_2.RULE b/src/licensedcode/data/rules/commons-clause_2.RULE index fe28beac6d2..f34337dceb3 100644 --- a/src/licensedcode/data/rules/commons-clause_2.RULE +++ b/src/licensedcode/data/rules/commons-clause_2.RULE @@ -1,7 +1,12 @@ +--- +license_expression: commons-clause +is_license_text: yes +--- + “Commons Clause” License Condition v1.0 The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. Without limiting other conditions in the License, the grant of rights under the License will not include, and the License does not grant to you, the right to Sell the Software. -For purposes of the foregoing, “Sell” means practicing any or all of the rights granted to you under the License to provide to third parties, for a fee or other consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Cause License Condition notice. +For purposes of the foregoing, “Sell” means practicing any or all of the rights granted to you under the License to provide to third parties, for a fee or other consideration (including without limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Cause License Condition notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commons-clause_2.yml b/src/licensedcode/data/rules/commons-clause_2.yml deleted file mode 100644 index 44f230ba36e..00000000000 --- a/src/licensedcode/data/rules/commons-clause_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commons-clause -is_license_text: yes diff --git a/src/licensedcode/data/rules/commons-clause_3.RULE b/src/licensedcode/data/rules/commons-clause_3.RULE index 6adc4002063..77113973121 100644 --- a/src/licensedcode/data/rules/commons-clause_3.RULE +++ b/src/licensedcode/data/rules/commons-clause_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commons-clause +is_license_text: yes +--- + "Commons Clause" License Condition The Software is provided to you by the Licensor under the License, as diff --git a/src/licensedcode/data/rules/commons-clause_3.yml b/src/licensedcode/data/rules/commons-clause_3.yml deleted file mode 100644 index 44f230ba36e..00000000000 --- a/src/licensedcode/data/rules/commons-clause_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commons-clause -is_license_text: yes diff --git a/src/licensedcode/data/rules/commons-clause_4.RULE b/src/licensedcode/data/rules/commons-clause_4.RULE index d34a4df912b..7e308e49c8f 100644 --- a/src/licensedcode/data/rules/commons-clause_4.RULE +++ b/src/licensedcode/data/rules/commons-clause_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commons-clause +is_license_text: yes +--- + Commons Clause Restriction The Software is provided to you by the Licensor under the License, as defined below, subject to @@ -9,4 +14,4 @@ under the License to provide to third parties, for a fee or other consideration limitation fees for hosting or consulting/ support services related to the Software), a product or service whose value derives, entirely or substantially, from the functionality of the Software. Any license notice or attribution required by the License must also include this Commons Cause -License Condition notice. +License Condition notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commons-clause_4.yml b/src/licensedcode/data/rules/commons-clause_4.yml deleted file mode 100644 index 44f230ba36e..00000000000 --- a/src/licensedcode/data/rules/commons-clause_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commons-clause -is_license_text: yes diff --git a/src/licensedcode/data/rules/commons-clause_5.RULE b/src/licensedcode/data/rules/commons-clause_5.RULE index 6ec1fc32ba5..d20e7abacb1 100644 --- a/src/licensedcode/data/rules/commons-clause_5.RULE +++ b/src/licensedcode/data/rules/commons-clause_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commons-clause +is_license_text: yes +relevance: 100 +--- + “Commons Clause” License Condition v1.0 The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. diff --git a/src/licensedcode/data/rules/commons-clause_5.yml b/src/licensedcode/data/rules/commons-clause_5.yml deleted file mode 100644 index a5120c4b649..00000000000 --- a/src/licensedcode/data/rules/commons-clause_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commons-clause -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commons-clause_6.RULE b/src/licensedcode/data/rules/commons-clause_6.RULE index a51b34bd6ab..45b3fd8e6b7 100644 --- a/src/licensedcode/data/rules/commons-clause_6.RULE +++ b/src/licensedcode/data/rules/commons-clause_6.RULE @@ -1 +1,7 @@ +--- +license_expression: commons-clause +is_license_reference: yes +relevance: 100 +--- + Commons Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/commons-clause_6.yml b/src/licensedcode/data/rules/commons-clause_6.yml deleted file mode 100644 index 11c6f0b2899..00000000000 --- a/src/licensedcode/data/rules/commons-clause_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commons-clause -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commons-clause_7.RULE b/src/licensedcode/data/rules/commons-clause_7.RULE index bc5aeff1f2b..626d64b8e19 100644 --- a/src/licensedcode/data/rules/commons-clause_7.RULE +++ b/src/licensedcode/data/rules/commons-clause_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: commons-clause +is_license_notice: yes +relevance: 100 +--- + The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. Without limiting other conditions in the License, the grant of rights under the License will not include, and the diff --git a/src/licensedcode/data/rules/commons-clause_7.yml b/src/licensedcode/data/rules/commons-clause_7.yml deleted file mode 100644 index f3405540075..00000000000 --- a/src/licensedcode/data/rules/commons-clause_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commons-clause -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commons-clause_8.RULE b/src/licensedcode/data/rules/commons-clause_8.RULE index bb7b6b16306..836eccddd72 100644 --- a/src/licensedcode/data/rules/commons-clause_8.RULE +++ b/src/licensedcode/data/rules/commons-clause_8.RULE @@ -1 +1,7 @@ +--- +license_expression: commons-clause +is_license_reference: yes +relevance: 100 +--- + “Commons Clause” License Condition v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/commons-clause_8.yml b/src/licensedcode/data/rules/commons-clause_8.yml deleted file mode 100644 index 11c6f0b2899..00000000000 --- a/src/licensedcode/data/rules/commons-clause_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commons-clause -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/commons-clause_9.RULE b/src/licensedcode/data/rules/commons-clause_9.RULE index 27c675cda5a..2dd04bd6066 100644 --- a/src/licensedcode/data/rules/commons-clause_9.RULE +++ b/src/licensedcode/data/rules/commons-clause_9.RULE @@ -1 +1,7 @@ +--- +license_expression: commons-clause +is_license_reference: yes +relevance: 100 +--- + “Commons Clause” License Condition \ No newline at end of file diff --git a/src/licensedcode/data/rules/commons-clause_9.yml b/src/licensedcode/data/rules/commons-clause_9.yml deleted file mode 100644 index 11c6f0b2899..00000000000 --- a/src/licensedcode/data/rules/commons-clause_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commons-clause -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/condor-1.1.RULE b/src/licensedcode/data/rules/condor-1.1.RULE index 61f89cbea0a..bf16d1c21ab 100644 --- a/src/licensedcode/data/rules/condor-1.1.RULE +++ b/src/licensedcode/data/rules/condor-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cs.wisc.edu/condor/license.html +--- + http://www.cs.wisc.edu/condor/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1.SPDX.RULE b/src/licensedcode/data/rules/condor-1.1.SPDX.RULE index d7c1007d7c8..72b13ca3fe8 100644 --- a/src/licensedcode/data/rules/condor-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/condor-1.1.SPDX.RULE @@ -1,3 +1,23 @@ +--- +license_expression: condor-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, + Madison, WI. +ignorable_holders: + - Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. +ignorable_authors: + - the Condor Project, Condor Team, Computer Sciences Department, University of Wisconsin-Madison +ignorable_urls: + - http://pages.cs.wisc.edu/~miron/miron.html + - http://www.condorproject.org/ +ignorable_emails: + - condor-admin@cs.wisc.edu + - miron@cs.wisc.edu +--- + Condor Public License Version 1.1, October 30, 2003 diff --git a/src/licensedcode/data/rules/condor-1.1.SPDX.yml b/src/licensedcode/data/rules/condor-1.1.SPDX.yml deleted file mode 100644 index 805917efef7..00000000000 --- a/src/licensedcode/data/rules/condor-1.1.SPDX.yml +++ /dev/null @@ -1,17 +0,0 @@ -license_expression: condor-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1990-2006 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, - Madison, WI. -ignorable_holders: - - Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. -ignorable_authors: - - the Condor Project, Condor Team, Computer Sciences Department, University of Wisconsin-Madison -ignorable_urls: - - http://pages.cs.wisc.edu/~miron/miron.html - - http://www.condorproject.org/ -ignorable_emails: - - condor-admin@cs.wisc.edu - - miron@cs.wisc.edu diff --git a/src/licensedcode/data/rules/condor-1.1.yml b/src/licensedcode/data/rules/condor-1.1.yml deleted file mode 100644 index 7d1987e1dad..00000000000 --- a/src/licensedcode/data/rules/condor-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cs.wisc.edu/condor/license.html diff --git a/src/licensedcode/data/rules/condor-1.1_1.RULE b/src/licensedcode/data/rules/condor-1.1_1.RULE index 1fce8d8d314..acdd6ae634f 100644 --- a/src/licensedcode/data/rules/condor-1.1_1.RULE +++ b/src/licensedcode/data/rules/condor-1.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Condor Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_1.yml b/src/licensedcode/data/rules/condor-1.1_1.yml deleted file mode 100644 index fc946da770e..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/condor-1.1_10.RULE b/src/licensedcode/data/rules/condor-1.1_10.RULE index 24463fd8f47..fbf9c736087 100644 --- a/src/licensedcode/data/rules/condor-1.1_10.RULE +++ b/src/licensedcode/data/rules/condor-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Condor-1.1 +--- + {{Condor-1.1}} https://spdx.org/licenses/Condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_10.yml b/src/licensedcode/data/rules/condor-1.1_10.yml deleted file mode 100644 index 2cc468fc2f1..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Condor-1.1 diff --git a/src/licensedcode/data/rules/condor-1.1_11.RULE b/src/licensedcode/data/rules/condor-1.1_11.RULE index 0b30359df27..2943c3e53f5 100644 --- a/src/licensedcode/data/rules/condor-1.1_11.RULE +++ b/src/licensedcode/data/rules/condor-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Condor-1.1 +--- + LICENSE {{Condor-1.1}} https://spdx.org/licenses/Condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_11.yml b/src/licensedcode/data/rules/condor-1.1_11.yml deleted file mode 100644 index 2cc468fc2f1..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Condor-1.1 diff --git a/src/licensedcode/data/rules/condor-1.1_2.RULE b/src/licensedcode/data/rules/condor-1.1_2.RULE index 89963754641..2e264df0f72 100644 --- a/src/licensedcode/data/rules/condor-1.1_2.RULE +++ b/src/licensedcode/data/rules/condor-1.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Condor Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_2.yml b/src/licensedcode/data/rules/condor-1.1_2.yml deleted file mode 100644 index fc946da770e..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/condor-1.1_3.RULE b/src/licensedcode/data/rules/condor-1.1_3.RULE index 27f91c1e704..638c6236656 100644 --- a/src/licensedcode/data/rules/condor-1.1_3.RULE +++ b/src/licensedcode/data/rules/condor-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Condor-1.1 Condor Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_3.yml b/src/licensedcode/data/rules/condor-1.1_3.yml deleted file mode 100644 index fc946da770e..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/condor-1.1_4.RULE b/src/licensedcode/data/rules/condor-1.1_4.RULE index 3fe86a01b07..4b6ff9d7fd6 100644 --- a/src/licensedcode/data/rules/condor-1.1_4.RULE +++ b/src/licensedcode/data/rules/condor-1.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Condor Public License v1.1 Condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_4.yml b/src/licensedcode/data/rules/condor-1.1_4.yml deleted file mode 100644 index fc946da770e..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/condor-1.1_5.RULE b/src/licensedcode/data/rules/condor-1.1_5.RULE index c4ff85c5c17..2455f2e78d8 100644 --- a/src/licensedcode/data/rules/condor-1.1_5.RULE +++ b/src/licensedcode/data/rules/condor-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: condor-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_5.yml b/src/licensedcode/data/rules/condor-1.1_5.yml deleted file mode 100644 index c744830aa50..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: condor-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/condor-1.1_6.RULE b/src/licensedcode/data/rules/condor-1.1_6.RULE index 8409b0a5959..07d14c668e0 100644 --- a/src/licensedcode/data/rules/condor-1.1_6.RULE +++ b/src/licensedcode/data/rules/condor-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: condor-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Condor Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_6.yml b/src/licensedcode/data/rules/condor-1.1_6.yml deleted file mode 100644 index c744830aa50..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: condor-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/condor-1.1_7.RULE b/src/licensedcode/data/rules/condor-1.1_7.RULE index 1ed3d9dca7f..b5aa05e11eb 100644 --- a/src/licensedcode/data/rules/condor-1.1_7.RULE +++ b/src/licensedcode/data/rules/condor-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: condor-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_7.yml b/src/licensedcode/data/rules/condor-1.1_7.yml deleted file mode 100644 index c744830aa50..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: condor-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/condor-1.1_8.RULE b/src/licensedcode/data/rules/condor-1.1_8.RULE index 0fe4c07cad5..1e5046c3255 100644 --- a/src/licensedcode/data/rules/condor-1.1_8.RULE +++ b/src/licensedcode/data/rules/condor-1.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Condor-1.1 +--- + https://licenses.nuget.org/Condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_8.yml b/src/licensedcode/data/rules/condor-1.1_8.yml deleted file mode 100644 index 86978eb083b..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Condor-1.1 diff --git a/src/licensedcode/data/rules/condor-1.1_9.RULE b/src/licensedcode/data/rules/condor-1.1_9.RULE index 3e1192e4e18..ad30bb4f2e1 100644 --- a/src/licensedcode/data/rules/condor-1.1_9.RULE +++ b/src/licensedcode/data/rules/condor-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_9.yml b/src/licensedcode/data/rules/condor-1.1_9.yml deleted file mode 100644 index 130230e4f8f..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/condor-1.1_url_1.RULE b/src/licensedcode/data/rules/condor-1.1_url_1.RULE index 7856d8a0cd3..dd385f0bd77 100644 --- a/src/licensedcode/data/rules/condor-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/condor-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/condor-1.1 +--- + https://spdx.org/licenses/condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_url_1.yml b/src/licensedcode/data/rules/condor-1.1_url_1.yml deleted file mode 100644 index cb9d4f267fc..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/condor-1.1 diff --git a/src/licensedcode/data/rules/condor-1.1_url_2.RULE b/src/licensedcode/data/rules/condor-1.1_url_2.RULE index 262e9f558e4..0688301b4bd 100644 --- a/src/licensedcode/data/rules/condor-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/condor-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/condor-1.1.html +--- + https://spdx.org/licenses/condor-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/condor-1.1_url_2.yml b/src/licensedcode/data/rules/condor-1.1_url_2.yml deleted file mode 100644 index a29e024bf6d..00000000000 --- a/src/licensedcode/data/rules/condor-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/condor-1.1.html diff --git a/src/licensedcode/data/rules/copyheart_1.RULE b/src/licensedcode/data/rules/copyheart_1.RULE index f928cc32b3a..55d36b46374 100644 --- a/src/licensedcode/data/rules/copyheart_1.RULE +++ b/src/licensedcode/data/rules/copyheart_1.RULE @@ -1 +1,7 @@ -♡ Copying Art is an act of love. Please copy and share. +--- +license_expression: copyheart +is_license_reference: yes +relevance: 100 +--- + +♡ Copying Art is an act of love. Please copy and share. \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyheart_1.yml b/src/licensedcode/data/rules/copyheart_1.yml deleted file mode 100644 index b4d1c3c28b0..00000000000 --- a/src/licensedcode/data/rules/copyheart_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: copyheart -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/copyheart_2.RULE b/src/licensedcode/data/rules/copyheart_2.RULE index 86ed230532a..b6030f7fbdc 100644 --- a/src/licensedcode/data/rules/copyheart_2.RULE +++ b/src/licensedcode/data/rules/copyheart_2.RULE @@ -1 +1,7 @@ -♡ Copying Art is an act of love. Love is not subject to law. +--- +license_expression: copyheart +is_license_reference: yes +relevance: 100 +--- + +♡ Copying Art is an act of love. Love is not subject to law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyheart_2.yml b/src/licensedcode/data/rules/copyheart_2.yml deleted file mode 100644 index b4d1c3c28b0..00000000000 --- a/src/licensedcode/data/rules/copyheart_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: copyheart -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/copyheart_5.RULE b/src/licensedcode/data/rules/copyheart_5.RULE index 035f8930bef..ebbe5edf4d8 100644 --- a/src/licensedcode/data/rules/copyheart_5.RULE +++ b/src/licensedcode/data/rules/copyheart_5.RULE @@ -1 +1,7 @@ -♡ Copying is an act of love. Love is not subject to law. +--- +license_expression: copyheart +is_license_reference: yes +relevance: 100 +--- + +♡ Copying is an act of love. Love is not subject to law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyheart_5.yml b/src/licensedcode/data/rules/copyheart_5.yml deleted file mode 100644 index b4d1c3c28b0..00000000000 --- a/src/licensedcode/data/rules/copyheart_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: copyheart -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_1.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_1.RULE index 653c6ccdac9..6c70b046ef3 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_1.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - https://gitorious.org/copyleft-next/ +--- + is licensed under copyleft-next 0.3.0 Refer to copyleft-next-0.3.0 for license details, you can diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_1.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_1.yml deleted file mode 100644 index d73630e7420..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - https://gitorious.org/copyleft-next/ diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_10.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_10.RULE index fa1c6de9a39..43a75e54699 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_10.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/copyleft-next-0.3.0 +--- + LICENSE {{copyleft-next-0.3.0}} https://spdx.org/licenses/copyleft-next-0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_10.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_10.yml deleted file mode 100644 index eb5eba878bb..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/copyleft-next-0.3.0 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_11.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_11.RULE index f7bd982d77c..00fd89728fc 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_11.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/copyleft-next-0.3.0 +--- + {{copyleft-next-0.3.0}} https://spdx.org/licenses/copyleft-next-0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_11.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_11.yml deleted file mode 100644 index eb5eba878bb..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/copyleft-next-0.3.0 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_2.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_2.RULE index 5bc218b4074..23cc57859e6 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_2.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under copyleft-next 0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_2.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_2.yml deleted file mode 100644 index 7cc83bcaadb..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_3.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_3.RULE index d9b27dbe443..fcf0343bb71 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_3.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +relevance: 100 +is_continuous: yes +minimum_coverage: 100 +--- + copyleft-next 0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_3.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_3.yml deleted file mode 100644 index d3e2e8f97be..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -relevance: 100 -is_continuous: yes -minimum_coverage: 100 - diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_4.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_4.RULE index 0dcf1e14cbb..605870f9ef7 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_4.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: copyleft-next 0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_4.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_4.yml deleted file mode 100644 index 8dd2a548cfb..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_5.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_5.RULE index 9d83ddfabf9..b8a5d81895c 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_5.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + copyleft-next-0.3.0 copyleft-next 0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_5.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_5.yml deleted file mode 100644 index 8dd2a548cfb..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_6.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_6.RULE index b8024c2c843..935ceceae07 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_6.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: copyleft-next-0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_6.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_6.yml deleted file mode 100644 index 35365ddf3de..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_7.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_7.RULE index 5e5efad4486..69ed4598d9d 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_7.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: copyleft-next-0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_7.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_7.yml deleted file mode 100644 index 35365ddf3de..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_8.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_8.RULE index fd150577a06..16f6a4bede6 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_8.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/copyleft-next-0.3.0 +--- + https://licenses.nuget.org/copyleft-next-0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_8.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_8.yml deleted file mode 100644 index 815d3b93913..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/copyleft-next-0.3.0 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_9.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_9.RULE index 82395f26533..af6ba6abceb 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_9.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/copyleft-next-0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_9.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_9.yml deleted file mode 100644 index 0e1efe851e2..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_url_1.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_url_1.RULE index d3f8d8fa642..608dd6a106a 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_url_1.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/copyleft-next-0.3.0 +--- + https://spdx.org/licenses/copyleft-next-0.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_url_1.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_url_1.yml deleted file mode 100644 index 17de1534114..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/copyleft-next-0.3.0 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_url_2.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.0_url_2.RULE index 31a4332dce2..9c9b4bb4dbd 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_url_2.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/copyleft-next-0.3.0.html +--- + https://spdx.org/licenses/copyleft-next-0.3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.0_url_2.yml b/src/licensedcode/data/rules/copyleft-next-0.3.0_url_2.yml deleted file mode 100644 index 6d73f4978e8..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/copyleft-next-0.3.0.html diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_1.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_1.RULE index 730c9003f5d..0453f4a8d13 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_1.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + copyleft-next 0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_1.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_1.yml deleted file mode 100644 index 400f6a912a8..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_2.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_2.RULE index c7e8ce7b905..00dde8236c6 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_2.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: copyleft-next 0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_2.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_2.yml deleted file mode 100644 index 400f6a912a8..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_3.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_3.RULE index 12bb9d851d2..fea87fec30a 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_3.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + copyleft-next-0.3.1 copyleft-next 0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_3.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_3.yml deleted file mode 100644 index 400f6a912a8..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_4.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_4.RULE index ab930fded09..6382827c7d3 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_4.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: copyleft-next-0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_4.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_4.yml deleted file mode 100644 index fac7f90f009..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_5.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_5.RULE index 73ae06595c2..152bc639680 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_5.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: copyleft-next-0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_5.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_5.yml deleted file mode 100644 index fac7f90f009..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_6.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_6.RULE index ea9ec1954dc..9ae7a5fdbc8 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_6.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_6.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/copyleft-next-0.3.1 +--- + https://licenses.nuget.org/copyleft-next-0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_6.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_6.yml deleted file mode 100644 index 267bc2dc167..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/copyleft-next-0.3.1 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_7.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_7.RULE index a577a446ffe..75567fface5 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_7.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_7.RULE @@ -1 +1,7 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/copyleft-next-0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_7.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_7.yml deleted file mode 100644 index 86eb45901de..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_8.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_8.RULE index 990df9ca96f..86ae16d6f27 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_8.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/copyleft-next-0.3.1 +--- + {{copyleft-next-0.3.1}} https://spdx.org/licenses/copyleft-next-0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_8.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_8.yml deleted file mode 100644 index 6ea1112f058..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/copyleft-next-0.3.1 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_9.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_9.RULE index 75e3516a23f..999eb04e2bd 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_9.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_9.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/copyleft-next-0.3.1 +--- + LICENSE {{copyleft-next-0.3.1}} https://spdx.org/licenses/copyleft-next-0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_9.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_9.yml deleted file mode 100644 index 6ea1112f058..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/copyleft-next-0.3.1 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_url_1.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_url_1.RULE index c3016ca1efe..82e878c915d 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_url_1.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/copyleft-next-0.3.1 +--- + https://spdx.org/licenses/copyleft-next-0.3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_url_1.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_url_1.yml deleted file mode 100644 index cd36753f606..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/copyleft-next-0.3.1 diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_url_2.RULE b/src/licensedcode/data/rules/copyleft-next-0.3.1_url_2.RULE index c4610ea9c52..c01e8131a4d 100644 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_url_2.RULE +++ b/src/licensedcode/data/rules/copyleft-next-0.3.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: copyleft-next-0.3.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/copyleft-next-0.3.1.html +--- + https://spdx.org/licenses/copyleft-next-0.3.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/copyleft-next-0.3.1_url_2.yml b/src/licensedcode/data/rules/copyleft-next-0.3.1_url_2.yml deleted file mode 100644 index 3c52b5acedf..00000000000 --- a/src/licensedcode/data/rules/copyleft-next-0.3.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: copyleft-next-0.3.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/copyleft-next-0.3.1.html diff --git a/src/licensedcode/data/rules/cpal-1.0.RULE b/src/licensedcode/data/rules/cpal-1.0.RULE index 41f97efabc7..439cf0f940c 100644 --- a/src/licensedcode/data/rules/cpal-1.0.RULE +++ b/src/licensedcode/data/rules/cpal-1.0.RULE @@ -1 +1,7 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Public Attribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0.SPDX.RULE b/src/licensedcode/data/rules/cpal-1.0.SPDX.RULE index 309ebd4d1d8..42beec681a7 100644 --- a/src/licensedcode/data/rules/cpal-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cpal-1.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Common Public Attribution License Version 1.0 (CPAL) 1. "Definitions" 1.0.1 "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. diff --git a/src/licensedcode/data/rules/cpal-1.0.SPDX.yml b/src/licensedcode/data/rules/cpal-1.0.SPDX.yml deleted file mode 100644 index 0bb78a917e1..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpal-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cpal-1.0.yml b/src/licensedcode/data/rules/cpal-1.0.yml deleted file mode 100644 index 3ced9d4478e..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_1.RULE b/src/licensedcode/data/rules/cpal-1.0_1.RULE index 04930804bf9..f43f04628c7 100644 --- a/src/licensedcode/data/rules/cpal-1.0_1.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cpal-1.0 OR free-unknown +is_license_notice: yes +minimum_coverage: 60 +--- + EXHIBIT A. Common Public Attribution License Version 1.0. "The contents of this file are subject to the Common Public Attribution License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. diff --git a/src/licensedcode/data/rules/cpal-1.0_1.yml b/src/licensedcode/data/rules/cpal-1.0_1.yml deleted file mode 100644 index 3cc16662b59..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 OR free-unknown -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/cpal-1.0_10.RULE b/src/licensedcode/data/rules/cpal-1.0_10.RULE index abd41935244..1373d5ec77b 100644 --- a/src/licensedcode/data/rules/cpal-1.0_10.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_10.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cpal-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) MuleSoft Inc. +ignorable_holders: + - MuleSoft Inc. +ignorable_urls: + - http://www.mulesoft.com/ + - http://www.mulesoft.com/CPAL +--- + Common Public Attribution License Version 1.0 (CPAL) ==================================================== @@ -485,4 +497,4 @@ Covered Code. : Display of Attribution Information is required in Larger Works which are defined in the CPAL as a work which combines Covered Code or portions thereof with code -not governed by the terms of the CPAL. +not governed by the terms of the CPAL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_10.yml b/src/licensedcode/data/rules/cpal-1.0_10.yml deleted file mode 100644 index 028c681eb14..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_10.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cpal-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) MuleSoft Inc. -ignorable_holders: - - MuleSoft Inc. -ignorable_urls: - - http://www.mulesoft.com/ - - http://www.mulesoft.com/CPAL diff --git a/src/licensedcode/data/rules/cpal-1.0_11.RULE b/src/licensedcode/data/rules/cpal-1.0_11.RULE index 69a46666762..be49fdc57ea 100644 --- a/src/licensedcode/data/rules/cpal-1.0_11.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_11.yml b/src/licensedcode/data/rules/cpal-1.0_11.yml deleted file mode 100644 index b98fe9e717d..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/cpal-1.0_12.RULE b/src/licensedcode/data/rules/cpal-1.0_12.RULE index 303a3b59340..1f45583cfd4 100644 --- a/src/licensedcode/data/rules/cpal-1.0_12.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mulesoft.com/CPAL/ +--- + CPAL v1.0 http://www.mulesoft.com/CPAL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_12.yml b/src/licensedcode/data/rules/cpal-1.0_12.yml deleted file mode 100644 index da10b939f2d..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mulesoft.com/CPAL/ diff --git a/src/licensedcode/data/rules/cpal-1.0_13.RULE b/src/licensedcode/data/rules/cpal-1.0_13.RULE index 75df725a62e..20b06e13891 100644 --- a/src/licensedcode/data/rules/cpal-1.0_13.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cpal-1.0 OR free-unknown +is_license_notice: yes +minimum_coverage: 60 +--- + * EXHIBIT A. Common Public Attribution License Version 1.0 * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); * you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/cpal-1.0_13.yml b/src/licensedcode/data/rules/cpal-1.0_13.yml deleted file mode 100644 index 3cc16662b59..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 OR free-unknown -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/cpal-1.0_14.RULE b/src/licensedcode/data/rules/cpal-1.0_14.RULE index 32a02cb5fc5..a75938dba8e 100644 --- a/src/licensedcode/data/rules/cpal-1.0_14.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpal-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpal_1.0 +--- + CPAL diff --git a/src/licensedcode/data/rules/cpal-1.0_14.yml b/src/licensedcode/data/rules/cpal-1.0_14.yml deleted file mode 100644 index e81b96bf99b..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_15.RULE b/src/licensedcode/data/rules/cpal-1.0_15.RULE index be35b59334e..4a7f61a006f 100644 --- a/src/licensedcode/data/rules/cpal-1.0_15.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpal_1.0 +--- + Licensed under Common Public Attribution License Version 1.0 http://www.opensource.org/licenses/cpal_1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_15.yml b/src/licensedcode/data/rules/cpal-1.0_15.yml deleted file mode 100644 index f27cb0dd136..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_16.RULE b/src/licensedcode/data/rules/cpal-1.0_16.RULE index c752769f8f9..2e4edd84e27 100644 --- a/src/licensedcode/data/rules/cpal-1.0_16.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +ignorable_urls: + - https://opensource.org/licenses/cpal_1.0 +--- + # Common Public Attribution License Version 1.0 (CPAL-1.0) ## EXHIBIT A. @@ -26,4 +33,4 @@ Attribution Phrase: "By" Attribution URL: -Display of Attribution Information is required in Larger Works which are defined in the CPAL as a work which combines Covered Code or portions thereof with code not governed by the terms of the CPAL. +Display of Attribution Information is required in Larger Works which are defined in the CPAL as a work which combines Covered Code or portions thereof with code not governed by the terms of the CPAL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_16.yml b/src/licensedcode/data/rules/cpal-1.0_16.yml deleted file mode 100644 index 512df35f6bf..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -ignorable_urls: - - https://opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_17.RULE b/src/licensedcode/data/rules/cpal-1.0_17.RULE index acf99b267ff..edfcc59879e 100644 --- a/src/licensedcode/data/rules/cpal-1.0_17.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/cpal_1.0 +--- + * @license http://opensource.org/licenses/cpal_1.0 Common Public Attribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_17.yml b/src/licensedcode/data/rules/cpal-1.0_17.yml deleted file mode 100644 index ad938dd3b70..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_18.RULE b/src/licensedcode/data/rules/cpal-1.0_18.RULE index f98bb7fcdf6..5c7d82d151c 100644 --- a/src/licensedcode/data/rules/cpal-1.0_18.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpal_1.0 +--- + LICENSE: uses the Common Public Attribution License Version 1.0 (CPAL) http://www.opensource.org/licenses/cpal_1.0. diff --git a/src/licensedcode/data/rules/cpal-1.0_18.yml b/src/licensedcode/data/rules/cpal-1.0_18.yml deleted file mode 100644 index f27cb0dd136..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_19.RULE b/src/licensedcode/data/rules/cpal-1.0_19.RULE index 5f84ce49a0f..4cba8c6a833 100644 --- a/src/licensedcode/data/rules/cpal-1.0_19.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_tag: yes +relevance: 100 +--- + License This software is distributed under CPAL 1.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_19.yml b/src/licensedcode/data/rules/cpal-1.0_19.yml deleted file mode 100644 index d135d915711..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_2.RULE b/src/licensedcode/data/rules/cpal-1.0_2.RULE index 1b88557189e..c7ec5379b68 100644 --- a/src/licensedcode/data/rules/cpal-1.0_2.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpal_1.0 +--- + http://www.opensource.org/licenses/cpal_1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_2.yml b/src/licensedcode/data/rules/cpal-1.0_2.yml deleted file mode 100644 index 648e8f9028c..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_20.RULE b/src/licensedcode/data/rules/cpal-1.0_20.RULE index ba402a8444c..11036547774 100644 --- a/src/licensedcode/data/rules/cpal-1.0_20.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_20.RULE @@ -1 +1,9 @@ - is released under the http://www.opensource.org/licenses/cpal_1.0" Common Public Attribution License 1.0< +--- +license_expression: cpal-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpal_1.0 +--- + + is released under the http://www.opensource.org/licenses/cpal_1.0" Common Public Attribution License 1.0< \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_20.yml b/src/licensedcode/data/rules/cpal-1.0_20.yml deleted file mode 100644 index e81b96bf99b..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_21.RULE b/src/licensedcode/data/rules/cpal-1.0_21.RULE index b957e7d24cf..047eec8e63a 100644 --- a/src/licensedcode/data/rules/cpal-1.0_21.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/cpal_1.0 +--- + # ***** BEGIN LICENSE BLOCK ***** # Version: CPAL 1.0 # diff --git a/src/licensedcode/data/rules/cpal-1.0_21.yml b/src/licensedcode/data/rules/cpal-1.0_21.yml deleted file mode 100644 index 34bed50df78..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_22.RULE b/src/licensedcode/data/rules/cpal-1.0_22.RULE index 5e04eec46d4..464170435a1 100644 --- a/src/licensedcode/data/rules/cpal-1.0_22.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_22.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/cpal_1.0 +--- + %% The contents of this file are subject to the Common Public Attribution %% License Version 1.0 (the “License”); you may not use this file except %% in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/cpal-1.0_22.yml b/src/licensedcode/data/rules/cpal-1.0_22.yml deleted file mode 100644 index 34bed50df78..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_23.RULE b/src/licensedcode/data/rules/cpal-1.0_23.RULE index 69f8af08116..331ca104838 100644 --- a/src/licensedcode/data/rules/cpal-1.0_23.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +minimum_coverage: 60 +ignorable_authors: + - Foundation +--- + * EXHIBIT A. Common Public Attribution License Version 1.0 * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); * you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -8,4 +16,4 @@ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language * governing rights and limitations under the License. The Original Code is software. * The Initial Developer of the Original Code is Foundation (http://www..org/foundation). - * All portions of the code written by Foundation are + * All portions of the code written by Foundation are \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_23.yml b/src/licensedcode/data/rules/cpal-1.0_23.yml deleted file mode 100644 index 6345615612b..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -minimum_coverage: 60 -ignorable_authors: - - Foundation diff --git a/src/licensedcode/data/rules/cpal-1.0_24.RULE b/src/licensedcode/data/rules/cpal-1.0_24.RULE index a6be5543470..40d2dff2da3 100644 --- a/src/licensedcode/data/rules/cpal-1.0_24.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_24.RULE @@ -1,3 +1,16 @@ +--- +license_expression: cpal-1.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2003-2007 MuleSource Inc. +ignorable_holders: + - MuleSource Inc. +ignorable_urls: + - http://www.mulesource.com/ + - http://www.mulesource.com/CPAL +--- + Common Public Attribution License Version 1.0 (CPAL) 1. "Definitions" diff --git a/src/licensedcode/data/rules/cpal-1.0_24.yml b/src/licensedcode/data/rules/cpal-1.0_24.yml deleted file mode 100644 index de622fe85cd..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_24.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: cpal-1.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2003-2007 MuleSource Inc. -ignorable_holders: - - MuleSource Inc. -ignorable_urls: - - http://www.mulesource.com/ - - http://www.mulesource.com/CPAL diff --git a/src/licensedcode/data/rules/cpal-1.0_25.RULE b/src/licensedcode/data/rules/cpal-1.0_25.RULE index ef142b886a0..73ebf3d86b1 100644 --- a/src/licensedcode/data/rules/cpal-1.0_25.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/CPAL-1.0 +--- + `CPAL-1.0` - [Common Public Attribution License Version 1.0](http://opensource.org/licenses/CPAL-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_25.yml b/src/licensedcode/data/rules/cpal-1.0_25.yml deleted file mode 100644 index d5851e397b1..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/CPAL-1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_26.RULE b/src/licensedcode/data/rules/cpal-1.0_26.RULE index 849215c82d1..01b9fa18880 100644 --- a/src/licensedcode/data/rules/cpal-1.0_26.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Public Attribution License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_26.yml b/src/licensedcode/data/rules/cpal-1.0_26.yml deleted file mode 100644 index 3ced9d4478e..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_27.RULE b/src/licensedcode/data/rules/cpal-1.0_27.RULE index 64702ee6a73..ff98a143231 100644 --- a/src/licensedcode/data/rules/cpal-1.0_27.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_27.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +--- + The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at _____. The License is based diff --git a/src/licensedcode/data/rules/cpal-1.0_27.yml b/src/licensedcode/data/rules/cpal-1.0_27.yml deleted file mode 100644 index 589043c9574..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_28.RULE b/src/licensedcode/data/rules/cpal-1.0_28.RULE index d5ba8e62fc3..d949747b187 100644 --- a/src/licensedcode/data/rules/cpal-1.0_28.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +--- + released under the Common Public Attribution License, version 1.0 (CPAL v.1). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_28.yml b/src/licensedcode/data/rules/cpal-1.0_28.yml deleted file mode 100644 index 589043c9574..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_29.RULE b/src/licensedcode/data/rules/cpal-1.0_29.RULE index 699f036b3fb..a7027be35da 100644 --- a/src/licensedcode/data/rules/cpal-1.0_29.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_29.RULE @@ -1 +1,6 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +--- + released under the Common Public Attribution License, version 1.0 (CPAL v.1). You may not use this file except in compliance with CPALv.1. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the CPALv.1 license for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_29.yml b/src/licensedcode/data/rules/cpal-1.0_29.yml deleted file mode 100644 index 24f13203725..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cpal-1.0_3.RULE b/src/licensedcode/data/rules/cpal-1.0_3.RULE index ea78d133924..262be379851 100644 --- a/src/licensedcode/data/rules/cpal-1.0_3.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_3.RULE @@ -1 +1,8 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +ignorable_urls: + - http://opensource.org/licenses/cpal_1.0 +--- + http://opensource.org/licenses/cpal_1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_3.yml b/src/licensedcode/data/rules/cpal-1.0_3.yml deleted file mode 100644 index 55aa170968b..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -ignorable_urls: - - http://opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_30.RULE b/src/licensedcode/data/rules/cpal-1.0_30.RULE index e9382f61228..49e7cf5a4bf 100644 --- a/src/licensedcode/data/rules/cpal-1.0_30.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Common Public Attribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_30.yml b/src/licensedcode/data/rules/cpal-1.0_30.yml deleted file mode 100644 index 60ff366fb2a..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpal-1.0_31.RULE b/src/licensedcode/data/rules/cpal-1.0_31.RULE index d9ad436179a..49158928ef8 100644 --- a/src/licensedcode/data/rules/cpal-1.0_31.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CPAL-1.0 Common Public Attribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_31.yml b/src/licensedcode/data/rules/cpal-1.0_31.yml deleted file mode 100644 index 60ff366fb2a..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpal-1.0_32.RULE b/src/licensedcode/data/rules/cpal-1.0_32.RULE index a989fed2d5b..744336ba8e0 100644 --- a/src/licensedcode/data/rules/cpal-1.0_32.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Common Public Attribution License 1.0 CPAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_32.yml b/src/licensedcode/data/rules/cpal-1.0_32.yml deleted file mode 100644 index 60ff366fb2a..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpal-1.0_33.RULE b/src/licensedcode/data/rules/cpal-1.0_33.RULE index 0decf55dd2e..9c9658f6bcc 100644 --- a/src/licensedcode/data/rules/cpal-1.0_33.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_33.RULE @@ -1 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CPAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_33.yml b/src/licensedcode/data/rules/cpal-1.0_33.yml deleted file mode 100644 index b87e9b921a4..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpal-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpal-1.0_34.RULE b/src/licensedcode/data/rules/cpal-1.0_34.RULE index 2a2ea3362e6..978b4d33f8b 100644 --- a/src/licensedcode/data/rules/cpal-1.0_34.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_34.RULE @@ -1 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Common Public Attribution License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_34.yml b/src/licensedcode/data/rules/cpal-1.0_34.yml deleted file mode 100644 index b87e9b921a4..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpal-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpal-1.0_35.RULE b/src/licensedcode/data/rules/cpal-1.0_35.RULE index 617e32f3250..c34ff38afcb 100644 --- a/src/licensedcode/data/rules/cpal-1.0_35.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_35.RULE @@ -1 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CPAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_35.yml b/src/licensedcode/data/rules/cpal-1.0_35.yml deleted file mode 100644 index b87e9b921a4..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpal-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpal-1.0_36.RULE b/src/licensedcode/data/rules/cpal-1.0_36.RULE index e5b2eb711bd..69ef74086d1 100644 --- a/src/licensedcode/data/rules/cpal-1.0_36.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_36.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +--- + Graphic Image as provided in the Covered Code. Display of Attribution Information is required in Larger Works which are defined in the CPAL as a work which combines Covered Code or portions thereof with code not governed by the terms of the CPAL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_36.yml b/src/licensedcode/data/rules/cpal-1.0_36.yml deleted file mode 100644 index 24f13203725..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cpal-1.0_37.RULE b/src/licensedcode/data/rules/cpal-1.0_37.RULE index aaafeb4cb24..891b3b712c5 100644 --- a/src/licensedcode/data/rules/cpal-1.0_37.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_37.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CPAL-1.0 +--- + https://licenses.nuget.org/CPAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_37.yml b/src/licensedcode/data/rules/cpal-1.0_37.yml deleted file mode 100644 index c34cffd0ed8..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CPAL-1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_38.RULE b/src/licensedcode/data/rules/cpal-1.0_38.RULE index 9605e5c4db6..e2a51e4bfa1 100644 --- a/src/licensedcode/data/rules/cpal-1.0_38.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CPAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_38.yml b/src/licensedcode/data/rules/cpal-1.0_38.yml deleted file mode 100644 index 3ced9d4478e..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_39.RULE b/src/licensedcode/data/rules/cpal-1.0_39.RULE index acdd8be8b0d..333fff7096f 100644 --- a/src/licensedcode/data/rules/cpal-1.0_39.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_39.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CPAL-1.0 +--- + {{CPAL-1.0}} https://spdx.org/licenses/CPAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_39.yml b/src/licensedcode/data/rules/cpal-1.0_39.yml deleted file mode 100644 index 623200d7ba1..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CPAL-1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_4.RULE b/src/licensedcode/data/rules/cpal-1.0_4.RULE index a3a6d1707b9..4cf7c7f0682 100644 --- a/src/licensedcode/data/rules/cpal-1.0_4.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +--- + * The contents of this file are subject to the Common Public * Attribution License Version 1.0 (the “License”); you may not use * this file except in compliance with the License. You may obtain a diff --git a/src/licensedcode/data/rules/cpal-1.0_4.yml b/src/licensedcode/data/rules/cpal-1.0_4.yml deleted file mode 100644 index 24f13203725..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cpal-1.0_40.RULE b/src/licensedcode/data/rules/cpal-1.0_40.RULE index bd76b7f973d..90c486a9b53 100644 --- a/src/licensedcode/data/rules/cpal-1.0_40.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_40.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CPAL-1.0 +--- + LICENSE {{CPAL-1.0}} https://spdx.org/licenses/CPAL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_40.yml b/src/licensedcode/data/rules/cpal-1.0_40.yml deleted file mode 100644 index 623200d7ba1..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CPAL-1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_5.RULE b/src/licensedcode/data/rules/cpal-1.0_5.RULE index f01dd63bac9..abdd81cd562 100644 --- a/src/licensedcode/data/rules/cpal-1.0_5.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpal-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.mulesoft.com/CPAL +--- + CPAL v1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_5.yml b/src/licensedcode/data/rules/cpal-1.0_5.yml deleted file mode 100644 index 2d4d658f9a5..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.mulesoft.com/CPAL diff --git a/src/licensedcode/data/rules/cpal-1.0_6.RULE b/src/licensedcode/data/rules/cpal-1.0_6.RULE index 14e9b2493d6..aaa6eb39189 100644 --- a/src/licensedcode/data/rules/cpal-1.0_6.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_6.RULE @@ -1,4 +1,9 @@ -Common Public Attribution License Version 1.0 (CPAL) +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +--- - Common Public Attribution License Version 1.0 (CPAL) +Common Public Attribution License Version 1.0 (CPAL) + Common Public Attribution License Version 1.0 (CPAL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_6.yml b/src/licensedcode/data/rules/cpal-1.0_6.yml deleted file mode 100644 index 589043c9574..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_7.RULE b/src/licensedcode/data/rules/cpal-1.0_7.RULE index 433bf8b3d2c..e2016a85b50 100644 --- a/src/licensedcode/data/rules/cpal-1.0_7.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_7.RULE @@ -1,2 +1,7 @@ -Common Public Attribution License Version 1.0 (CPAL) +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +--- +Common Public Attribution License Version 1.0 (CPAL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_7.yml b/src/licensedcode/data/rules/cpal-1.0_7.yml deleted file mode 100644 index 589043c9574..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_8.RULE b/src/licensedcode/data/rules/cpal-1.0_8.RULE index c7ec3562d5f..b35d4806090 100644 --- a/src/licensedcode/data/rules/cpal-1.0_8.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +--- + === Common Public Attribution License Version 1.0 (CPAL) -* link:files/CPAL.html[Common Public Attribution License Version 1.0 (CPAL)] +* link:files/CPAL.html[Common Public Attribution License Version 1.0 (CPAL)] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_8.yml b/src/licensedcode/data/rules/cpal-1.0_8.yml deleted file mode 100644 index 589043c9574..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpal-1.0_9.RULE b/src/licensedcode/data/rules/cpal-1.0_9.RULE index c79905c62fa..1022104bf4f 100644 --- a/src/licensedcode/data/rules/cpal-1.0_9.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpal-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.md file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_9.yml b/src/licensedcode/data/rules/cpal-1.0_9.yml deleted file mode 100644 index 86902b0d5ea..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/cpal-1.0_or_agpl-3.0_1.RULE b/src/licensedcode/data/rules/cpal-1.0_or_agpl-3.0_1.RULE index 0d1ffb3f4fc..33b4d1f1722 100644 --- a/src/licensedcode/data/rules/cpal-1.0_or_agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_or_agpl-3.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cpal-1.0 OR agpl-3.0 +is_license_notice: yes +--- + * The contents of this file are subject to the Common Public * Attribution License Version 1.0 (the “License”); you may not use * this file except in compliance with the License. You may obtain a diff --git a/src/licensedcode/data/rules/cpal-1.0_or_agpl-3.0_1.yml b/src/licensedcode/data/rules/cpal-1.0_or_agpl-3.0_1.yml deleted file mode 100644 index 5bca27f0b2c..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_or_agpl-3.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cpal-1.0 OR agpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cpal-1.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/cpal-1.0_or_commercial-license_1.RULE index 11a0dbe5fd8..1d40ea889e0 100644 --- a/src/licensedcode/data/rules/cpal-1.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_or_commercial-license_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cpal-1.0 OR commercial-license +is_license_notice: yes +notes: https://github.com/OptimEnterprises/sxweb/blob/217711ee8107fb3bdaba10f22c894f65808ebe45/application/modules/menu/views/scripts/index/volmobile.phtml#L7 +ignorable_authors: + - Initial Developer +ignorable_urls: + - http://opensource.org/licenses/cpal_1.0 +--- + The contents of this file are subject to the Common Public Attribution License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/cpal-1.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/cpal-1.0_or_commercial-license_1.yml deleted file mode 100644 index ddf5dcc20a4..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_or_commercial-license_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cpal-1.0 OR commercial-license -is_license_notice: yes -notes: https://github.com/OptimEnterprises/sxweb/blob/217711ee8107fb3bdaba10f22c894f65808ebe45/application/modules/menu/views/scripts/index/volmobile.phtml#L7 -ignorable_authors: - - Initial Developer -ignorable_urls: - - http://opensource.org/licenses/cpal_1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_url_1.RULE b/src/licensedcode/data/rules/cpal-1.0_url_1.RULE index 8b8f9d1ff75..6a30f1a117f 100644 --- a/src/licensedcode/data/rules/cpal-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cpal-1.0 +--- + https://spdx.org/licenses/cpal-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_url_1.yml b/src/licensedcode/data/rules/cpal-1.0_url_1.yml deleted file mode 100644 index da03f346e2f..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cpal-1.0 diff --git a/src/licensedcode/data/rules/cpal-1.0_url_2.RULE b/src/licensedcode/data/rules/cpal-1.0_url_2.RULE index f1f702b8193..11911890194 100644 --- a/src/licensedcode/data/rules/cpal-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cpal-1.0.html +--- + https://spdx.org/licenses/cpal-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_url_2.yml b/src/licensedcode/data/rules/cpal-1.0_url_2.yml deleted file mode 100644 index 3f3d324810d..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cpal-1.0.html diff --git a/src/licensedcode/data/rules/cpal-1.0_url_glc_153.RULE b/src/licensedcode/data/rules/cpal-1.0_url_glc_153.RULE index fffbe0398c9..2c937f57b11 100644 --- a/src/licensedcode/data/rules/cpal-1.0_url_glc_153.RULE +++ b/src/licensedcode/data/rules/cpal-1.0_url_glc_153.RULE @@ -1 +1,9 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/cpal-1.0 +--- + https://www.opensource.org/licenses/cpal-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpal-1.0_url_glc_153.yml b/src/licensedcode/data/rules/cpal-1.0_url_glc_153.yml deleted file mode 100644 index 157cb28e341..00000000000 --- a/src/licensedcode/data/rules/cpal-1.0_url_glc_153.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/cpal-1.0 diff --git a/src/licensedcode/data/rules/cpl-0.5.RULE b/src/licensedcode/data/rules/cpl-0.5.RULE index 61e3e9ee364..e8e0371c7f5 100644 --- a/src/licensedcode/data/rules/cpl-0.5.RULE +++ b/src/licensedcode/data/rules/cpl-0.5.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-0.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v05.html +--- + http://www.eclipse.org/legal/cpl-v05.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-0.5.yml b/src/licensedcode/data/rules/cpl-0.5.yml deleted file mode 100644 index 700eb022dc0..00000000000 --- a/src/licensedcode/data/rules/cpl-0.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-0.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v05.html diff --git a/src/licensedcode/data/rules/cpl-1.0.RULE b/src/licensedcode/data/rules/cpl-1.0.RULE index ecfcecb8672..35de325c5c3 100644 --- a/src/licensedcode/data/rules/cpl-1.0.RULE +++ b/src/licensedcode/data/rules/cpl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +--- + http://www.eclipse.org/legal/cpl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0.SPDX.RULE b/src/licensedcode/data/rules/cpl-1.0.SPDX.RULE index 3a4c72849dd..d7225f36546 100644 --- a/src/licensedcode/data/rules/cpl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cpl-1.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cpl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Common Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC diff --git a/src/licensedcode/data/rules/cpl-1.0.SPDX.yml b/src/licensedcode/data/rules/cpl-1.0.SPDX.yml deleted file mode 100644 index 94e390a52f4..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cpl-1.0.yml b/src/licensedcode/data/rules/cpl-1.0.yml deleted file mode 100644 index f2b417500ad..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.02_1.RULE b/src/licensedcode/data/rules/cpl-1.02_1.RULE index 28cad071564..a2edf379045 100644 --- a/src/licensedcode/data/rules/cpl-1.02_1.RULE +++ b/src/licensedcode/data/rules/cpl-1.02_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.codeproject.com/info/cpol10.aspx +--- + https://www.codeproject.com/info/cpol10.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.02_1.yml b/src/licensedcode/data/rules/cpl-1.02_1.yml deleted file mode 100644 index 3d73bd4b39c..00000000000 --- a/src/licensedcode/data/rules/cpl-1.02_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.codeproject.com/info/cpol10.aspx diff --git a/src/licensedcode/data/rules/cpl-1.0_1.RULE b/src/licensedcode/data/rules/cpl-1.0_1.RULE index b2269ca396d..f3a566e383c 100644 --- a/src/licensedcode/data/rules/cpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpl1.0.php +--- + http://www.opensource.org/licenses/cpl1.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_1.yml b/src/licensedcode/data/rules/cpl-1.0_1.yml deleted file mode 100644 index 39525777247..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpl1.0.php diff --git a/src/licensedcode/data/rules/cpl-1.0_10.RULE b/src/licensedcode/data/rules/cpl-1.0_10.RULE index 1cec102676f..58b51085de7 100644 --- a/src/licensedcode/data/rules/cpl-1.0_10.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_10.RULE @@ -1 +1,9 @@ -http://www.opensource.org/licenses/cpl1.0.txt +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpl1.0.txt +--- + +http://www.opensource.org/licenses/cpl1.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_10.yml b/src/licensedcode/data/rules/cpl-1.0_10.yml deleted file mode 100644 index 4ee17602f6f..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpl1.0.txt diff --git a/src/licensedcode/data/rules/cpl-1.0_11.RULE b/src/licensedcode/data/rules/cpl-1.0_11.RULE index 860d45ea642..3cb2ea9f531 100644 --- a/src/licensedcode/data/rules/cpl-1.0_11.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_11.RULE @@ -1 +1,8 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +ignorable_urls: + - https://www.eclipse.org/legal/cpl-v10.html +--- + https://www.eclipse.org/legal/cpl-v10.html https://www.eclipse.org/legal/cpl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_11.yml b/src/licensedcode/data/rules/cpl-1.0_11.yml deleted file mode 100644 index 29aa93ee566..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -ignorable_urls: - - https://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_12.RULE b/src/licensedcode/data/rules/cpl-1.0_12.RULE index 8554188e0c9..eef43609af1 100644 --- a/src/licensedcode/data/rules/cpl-1.0_12.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/cpl-v10.html +--- + https://www.eclipse.org/legal/cpl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_12.yml b/src/licensedcode/data/rules/cpl-1.0_12.yml deleted file mode 100644 index 6c8ea54397d..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_13.RULE b/src/licensedcode/data/rules/cpl-1.0_13.RULE index b51e803a446..75fbac6cf1b 100644 --- a/src/licensedcode/data/rules/cpl-1.0_13.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpl1.0.txt +--- + License: Common Public License Version 1.0 (http://www.opensource.org/licenses/cpl1.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_13.yml b/src/licensedcode/data/rules/cpl-1.0_13.yml deleted file mode 100644 index 4ee17602f6f..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpl1.0.txt diff --git a/src/licensedcode/data/rules/cpl-1.0_14.RULE b/src/licensedcode/data/rules/cpl-1.0_14.RULE index d1e464e8bee..5d163885a59 100644 --- a/src/licensedcode/data/rules/cpl-1.0_14.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_14.RULE @@ -1 +1,8 @@ +--- +license_expression: cpl-1.0 +is_license_notice: yes +ignorable_urls: + - https://www.eclipse.org/legal/cpl-v10.html +--- + Common Public License Version 1.0 (available at https://www.eclipse.org/legal/cpl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_14.yml b/src/licensedcode/data/rules/cpl-1.0_14.yml deleted file mode 100644 index 2aa10eb9a4c..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpl-1.0 -is_license_notice: yes -ignorable_urls: - - https://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_15.RULE b/src/licensedcode/data/rules/cpl-1.0_15.RULE index c2df3fc8769..aeb177bcbf4 100644 --- a/src/licensedcode/data/rules/cpl-1.0_15.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_15.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +--- + License Common Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_15.yml b/src/licensedcode/data/rules/cpl-1.0_15.yml deleted file mode 100644 index 4af28d9ac11..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_16.RULE b/src/licensedcode/data/rules/cpl-1.0_16.RULE index 6d55d125fe3..ca1da3d9c91 100644 --- a/src/licensedcode/data/rules/cpl-1.0_16.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_16.RULE @@ -1 +1,7 @@ -is licensed under the Common Public License v. 1.0 +--- +license_expression: cpl-1.0 +is_license_notice: yes +relevance: 100 +--- + +is licensed under the Common Public License v. 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_16.yml b/src/licensedcode/data/rules/cpl-1.0_16.yml deleted file mode 100644 index 07f5680e5c7..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_17.RULE b/src/licensedcode/data/rules/cpl-1.0_17.RULE index 4bac8539174..ba54ac4d0c2 100644 --- a/src/licensedcode/data/rules/cpl-1.0_17.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +--- + /***** BEGIN LICENSE BLOCK ***** * Version: CPL 1.0 * @@ -12,4 +20,4 @@ * rights and limitations under the License. * * - ***** END LICENSE BLOCK *****/ + ***** END LICENSE BLOCK *****/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_17.yml b/src/licensedcode/data/rules/cpl-1.0_17.yml deleted file mode 100644 index 72b01032cc2..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_18.RULE b/src/licensedcode/data/rules/cpl-1.0_18.RULE index e2a3bb55f7f..6cc35ac2e65 100644 --- a/src/licensedcode/data/rules/cpl-1.0_18.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpl +--- + www.opensource.org/licenses/cpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_18.yml b/src/licensedcode/data/rules/cpl-1.0_18.yml deleted file mode 100644 index aadd483644b..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpl diff --git a/src/licensedcode/data/rules/cpl-1.0_19.RULE b/src/licensedcode/data/rules/cpl-1.0_19.RULE index af0ad38034f..8b1ed71137d 100644 --- a/src/licensedcode/data/rules/cpl-1.0_19.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_19.RULE @@ -1,6 +1,16 @@ +--- +license_expression: cpl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - CPL.TXT +ignorable_urls: + - http://opensource.org/licenses/cpl.php +--- + ; The use and distribution terms for this software are covered by the ; Common Public License 1.0 (http://opensource.org/licenses/cpl.php) ; which can be found in the file CPL.TXT at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. -; You must not remove this notice, or any other, from this software. +; You must not remove this notice, or any other, from this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_19.yml b/src/licensedcode/data/rules/cpl-1.0_19.yml deleted file mode 100644 index ab6449f774e..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cpl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - CPL.TXT -ignorable_urls: - - http://opensource.org/licenses/cpl.php diff --git a/src/licensedcode/data/rules/cpl-1.0_2.RULE b/src/licensedcode/data/rules/cpl-1.0_2.RULE index c4f9f22482d..09679cfa9a6 100644 --- a/src/licensedcode/data/rules/cpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpl1.0.txt +--- + http://www.opensource.org/licenses/cpl1.0.txt">Common Public License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_2.yml b/src/licensedcode/data/rules/cpl-1.0_2.yml deleted file mode 100644 index 4ee17602f6f..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpl1.0.txt diff --git a/src/licensedcode/data/rules/cpl-1.0_20.RULE b/src/licensedcode/data/rules/cpl-1.0_20.RULE index c9a5e28f175..26e339b31e7 100644 --- a/src/licensedcode/data/rules/cpl-1.0_20.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_tag: yes +relevance: 100 +--- + License: CPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_20.yml b/src/licensedcode/data/rules/cpl-1.0_20.yml deleted file mode 100644 index 5dcd3568dee..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_21.RULE b/src/licensedcode/data/rules/cpl-1.0_21.RULE index 0db8e370f50..c06dba9e383 100644 --- a/src/licensedcode/data/rules/cpl-1.0_21.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Common Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_21.yml b/src/licensedcode/data/rules/cpl-1.0_21.yml deleted file mode 100644 index 07f5680e5c7..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_22.RULE b/src/licensedcode/data/rules/cpl-1.0_22.RULE index d790bbb99b4..afda099a90d 100644 --- a/src/licensedcode/data/rules/cpl-1.0_22.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cpl1.0.txt +--- + Common Public License Version 1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_22.yml b/src/licensedcode/data/rules/cpl-1.0_22.yml deleted file mode 100644 index cf48dd83a08..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cpl1.0.txt diff --git a/src/licensedcode/data/rules/cpl-1.0_23.RULE b/src/licensedcode/data/rules/cpl-1.0_23.RULE index c454e0d86cc..d3e51ee87f6 100644 --- a/src/licensedcode/data/rules/cpl-1.0_23.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/cpl1.0.txt +--- + Common Public License Version 1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_23.yml b/src/licensedcode/data/rules/cpl-1.0_23.yml deleted file mode 100644 index 601dd62bd29..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/cpl1.0.txt diff --git a/src/licensedcode/data/rules/cpl-1.0_24.RULE b/src/licensedcode/data/rules/cpl-1.0_24.RULE index 6741b173b1e..9e91f2a251c 100644 --- a/src/licensedcode/data/rules/cpl-1.0_24.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - cpl-v10.html +--- + cpl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_24.yml b/src/licensedcode/data/rules/cpl-1.0_24.yml deleted file mode 100644 index 41273e9648d..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_25.RULE b/src/licensedcode/data/rules/cpl-1.0_25.RULE index 94db278ef0b..6de7637aaef 100644 --- a/src/licensedcode/data/rules/cpl-1.0_25.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +--- + cpl-v10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_25.yml b/src/licensedcode/data/rules/cpl-1.0_25.yml deleted file mode 100644 index 4af28d9ac11..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_26.RULE b/src/licensedcode/data/rules/cpl-1.0_26.RULE index 05e4d5dd4a8..10056245429 100644 --- a/src/licensedcode/data/rules/cpl-1.0_26.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_26.RULE @@ -1 +1,10 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Common Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_26.yml b/src/licensedcode/data/rules/cpl-1.0_26.yml deleted file mode 100644 index bbb181848c6..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpl-1.0_27.RULE b/src/licensedcode/data/rules/cpl-1.0_27.RULE index b014485e383..99a0ff238a2 100644 --- a/src/licensedcode/data/rules/cpl-1.0_27.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_27.RULE @@ -1 +1,10 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CPL-1.0 Common Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_27.yml b/src/licensedcode/data/rules/cpl-1.0_27.yml deleted file mode 100644 index bbb181848c6..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpl-1.0_28.RULE b/src/licensedcode/data/rules/cpl-1.0_28.RULE index 599673d1d12..3e3f2c116e6 100644 --- a/src/licensedcode/data/rules/cpl-1.0_28.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_28.RULE @@ -1 +1,10 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Common Public License 1.0 CPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_28.yml b/src/licensedcode/data/rules/cpl-1.0_28.yml deleted file mode 100644 index bbb181848c6..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpl-1.0_29.RULE b/src/licensedcode/data/rules/cpl-1.0_29.RULE index 2a11ab15517..92345cbfb9f 100644 --- a/src/licensedcode/data/rules/cpl-1.0_29.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_29.RULE @@ -1 +1,10 @@ +--- +license_expression: cpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_29.yml b/src/licensedcode/data/rules/cpl-1.0_29.yml deleted file mode 100644 index ecea2eab64b..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpl-1.0_3.RULE b/src/licensedcode/data/rules/cpl-1.0_3.RULE index 05c724dd8b9..1d919148d68 100644 --- a/src/licensedcode/data/rules/cpl-1.0_3.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cpl-1.0 +is_license_text: yes +--- + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/src/licensedcode/data/rules/cpl-1.0_3.yml b/src/licensedcode/data/rules/cpl-1.0_3.yml deleted file mode 100644 index 1e0ca26b626..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cpl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cpl-1.0_30.RULE b/src/licensedcode/data/rules/cpl-1.0_30.RULE index 3671b2eda51..39258c60a04 100644 --- a/src/licensedcode/data/rules/cpl-1.0_30.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 90 +--- + wikipedia.org/wiki/Common_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_30.yml b/src/licensedcode/data/rules/cpl-1.0_30.yml deleted file mode 100644 index b067d9f99e3..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/cpl-1.0_31.RULE b/src/licensedcode/data/rules/cpl-1.0_31.RULE index cfe2743fc29..5b2c83e1238 100644 --- a/src/licensedcode/data/rules/cpl-1.0_31.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_31.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CPL-1.0 +--- + https://licenses.nuget.org/CPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_31.yml b/src/licensedcode/data/rules/cpl-1.0_31.yml deleted file mode 100644 index c3e94586b16..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CPL-1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_32.RULE b/src/licensedcode/data/rules/cpl-1.0_32.RULE index 20bd92f52b2..1abd4b75ee7 100644 --- a/src/licensedcode/data/rules/cpl-1.0_32.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_32.yml b/src/licensedcode/data/rules/cpl-1.0_32.yml deleted file mode 100644 index 4af28d9ac11..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_33.RULE b/src/licensedcode/data/rules/cpl-1.0_33.RULE index 4391d8a6f1b..6af0508aac8 100644 --- a/src/licensedcode/data/rules/cpl-1.0_33.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under {{Common Public License Version 1.0. }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_33.yml b/src/licensedcode/data/rules/cpl-1.0_33.yml deleted file mode 100644 index 07f5680e5c7..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_34.RULE b/src/licensedcode/data/rules/cpl-1.0_34.RULE index 39a16c285b1..280cdeaced9 100644 --- a/src/licensedcode/data/rules/cpl-1.0_34.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_34.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CPL-1.0 +--- + {{CPL-1.0}} https://spdx.org/licenses/CPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_34.yml b/src/licensedcode/data/rules/cpl-1.0_34.yml deleted file mode 100644 index ab26846f306..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CPL-1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_35.RULE b/src/licensedcode/data/rules/cpl-1.0_35.RULE index 97329647a11..b16dcfa02b2 100644 --- a/src/licensedcode/data/rules/cpl-1.0_35.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CPL-1.0 +--- + LICENSE {{CPL-1.0}} https://spdx.org/licenses/CPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_35.yml b/src/licensedcode/data/rules/cpl-1.0_35.yml deleted file mode 100644 index ab26846f306..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CPL-1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_4.RULE b/src/licensedcode/data/rules/cpl-1.0_4.RULE index 6738a818583..c34115b2bef 100644 --- a/src/licensedcode/data/rules/cpl-1.0_4.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_4.RULE @@ -1 +1,9 @@ -http://www.ibm.com/developerworks/library/os-cpl.html +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ibm.com/developerworks/library/os-cpl.html +--- + +http://www.ibm.com/developerworks/library/os-cpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_4.yml b/src/licensedcode/data/rules/cpl-1.0_4.yml deleted file mode 100644 index 53777115f27..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ibm.com/developerworks/library/os-cpl.html diff --git a/src/licensedcode/data/rules/cpl-1.0_5.RULE b/src/licensedcode/data/rules/cpl-1.0_5.RULE index 7f173e6fcb6..73291b57b99 100644 --- a/src/licensedcode/data/rules/cpl-1.0_5.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Public License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_5.yml b/src/licensedcode/data/rules/cpl-1.0_5.yml deleted file mode 100644 index 4af28d9ac11..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_6.RULE b/src/licensedcode/data/rules/cpl-1.0_6.RULE index 6aea2b9323c..8b58b1afcd1 100644 --- a/src/licensedcode/data/rules/cpl-1.0_6.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +notes: http://www.padsproj.org/License.html +ignorable_urls: + - http://www.padsproj.org/License.html +--- + http://www.padsproj.org/License.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_6.yml b/src/licensedcode/data/rules/cpl-1.0_6.yml deleted file mode 100644 index 8e2028386e1..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -notes: http://www.padsproj.org/License.html -ignorable_urls: - - http://www.padsproj.org/License.html diff --git a/src/licensedcode/data/rules/cpl-1.0_7.RULE b/src/licensedcode/data/rules/cpl-1.0_7.RULE index 08e99e2af3c..1c942addc3d 100644 --- a/src/licensedcode/data/rules/cpl-1.0_7.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cpl-1.0 +is_license_text: yes +--- + Common Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS @@ -41,4 +46,4 @@ If any provision of this Agreement is invalid or unenforceable under applicable If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. -This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_7.yml b/src/licensedcode/data/rules/cpl-1.0_7.yml deleted file mode 100644 index 1e0ca26b626..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cpl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cpl-1.0_8.RULE b/src/licensedcode/data/rules/cpl-1.0_8.RULE index 24b524d2c76..a4923b5ad08 100644 --- a/src/licensedcode/data/rules/cpl-1.0_8.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +--- + Common Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_8.yml b/src/licensedcode/data/rules/cpl-1.0_8.yml deleted file mode 100644 index 4af28d9ac11..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpl-1.0_9.RULE b/src/licensedcode/data/rules/cpl-1.0_9.RULE index b39315fb326..1745d2cc982 100644 --- a/src/licensedcode/data/rules/cpl-1.0_9.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: cpl-1.0 +is_license_text: yes +--- + Common Public License (CPL) -- V1.0 03 May 2005 Updated 16 Apr 2009 diff --git a/src/licensedcode/data/rules/cpl-1.0_9.yml b/src/licensedcode/data/rules/cpl-1.0_9.yml deleted file mode 100644 index 1e0ca26b626..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: cpl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/cpl-1.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/cpl-1.0_and_bsd-new_1.RULE index 054579a12e8..e20b7c251b0 100644 --- a/src/licensedcode/data/rules/cpl-1.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_and_bsd-new_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cpl-1.0 AND bsd-new +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://hamcrest.org/JavaHamcrest + - http://www.junit.org/license +--- + JUnit is licensed under the Common Public License v1.0 (see http://www.junit.org/license), with parts (Hamcrest) licensed under the BSD License (see http://hamcrest.org/JavaHamcrest/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/cpl-1.0_and_bsd-new_1.yml deleted file mode 100644 index fb0c8b6c613..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_and_bsd-new_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpl-1.0 AND bsd-new -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://hamcrest.org/JavaHamcrest - - http://www.junit.org/license diff --git a/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl.RULE b/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl.RULE index a8c4a6fd086..60745d3aa45 100644 --- a/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl.RULE @@ -1,3 +1,15 @@ +--- +license_expression: (cpl-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) AND ruby +is_license_notice: yes +minimum_coverage: 10 +referenced_filenames: + - COPYING.CPL + - COPYING.GPL + - COPYING.LGPL + - LICENSE.RUBY +notes: JRuby triple licenses +--- + JRuby is released under a tri CPL/GPL/LGPL license. You can use it, redistribute it and/or modify it under the terms of the: @@ -8,4 +20,4 @@ redistribute it and/or modify it under the terms of the: Some additional libraries distributed with JRuby are not covered by JRuby's licence. See the licence files for the respective libraries in the 'lib' directory for more information and also LICENSE.RUBY for most -files found in +files found in \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl.yml b/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl.yml deleted file mode 100644 index 425ce9ff14a..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: (cpl-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus) AND ruby -is_license_notice: yes -minimum_coverage: 10 -referenced_filenames: - - COPYING.CPL - - COPYING.GPL - - COPYING.LGPL - - LICENSE.RUBY -notes: JRuby triple licenses diff --git a/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl_ruby.RULE b/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl_ruby.RULE index c2043b5d7a5..c6e8d57b510 100644 --- a/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl_ruby.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl_ruby.RULE @@ -1 +1,8 @@ -JRuby is released under a tri CPL/GPL/LGPL license. \ No newline at end of file +--- +license_expression: cpl-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: JRuby triple licenses +--- + +JRuby is released under a tri CPL/GPL/LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl_ruby.yml b/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl_ruby.yml deleted file mode 100644 index 7161d0d1cd0..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_and_gpl_and_lgpl_ruby.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpl-1.0 OR gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: JRuby triple licenses diff --git a/src/licensedcode/data/rules/cpl-1.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/cpl-1.0_and_other-permissive_1.RULE index b011d1b50a8..07035b2c589 100644 --- a/src/licensedcode/data/rules/cpl-1.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpl-1.0 AND other-permissive +is_license_notice: yes +ignorable_urls: + - http://eclipse.org/aspectj + - http://www.eclipse.org/legal/epl-v10.html +--- + This sample code is made available under the Common Public " License version 1.0 available at " "http://www.eclipse.org/legal/epl-v10.html\">" diff --git a/src/licensedcode/data/rules/cpl-1.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/cpl-1.0_and_other-permissive_1.yml deleted file mode 100644 index 25934df334f..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 AND other-permissive -is_license_notice: yes -ignorable_urls: - - http://eclipse.org/aspectj - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_1.RULE b/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_1.RULE index ce8a31dbb57..22d2f353584 100644 --- a/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: (cpl-1.0 OR bsd-simplified OR gpl-2.0) AND free-unknown +is_license_notice: yes +notes: there are extra requirements at the bottom that apply in all cases above and extend beyond + the requirements of the three main choices +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php + - http://www.opensource.org/licenses/cpl.php + - http://www.opensource.org/licenses/gpl-license.php +--- + * This Software is licensed under one of the following licenses: * * 1) under the terms of the "Common Public License 1.0" a copy of which is @@ -19,4 +30,4 @@ * * Redistributions in binary form must reproduce both the above copyright * notice, one of the license notices in the documentation - * and/or other materials provided with the distribution. + * and/or other materials provided with the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_1.yml b/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_1.yml deleted file mode 100644 index 1ae69925d13..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: (cpl-1.0 OR bsd-simplified OR gpl-2.0) AND free-unknown -is_license_notice: yes -notes: there are extra requirements at the bottom that apply in all cases above and extend beyond - the requirements of the three main choices -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php - - http://www.opensource.org/licenses/cpl.php - - http://www.opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_2.RULE b/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_2.RULE index d912bf21ed3..eb479db40de 100644 --- a/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_2.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: (gpl-2.0 OR bsd-simplified OR cpl-1.0) AND free-unknown +is_license_notice: yes +notes: there are extra requirements at the bottom that apply in all cases above and extend beyond + the requirements of the three main choices +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php + - http://www.opensource.org/licenses/cpl.php + - http://www.opensource.org/licenses/gpl-license.php +--- + # This Software is licensed under one of the following licenses: # # 1) under the terms of the "Common Public License 1.0" a copy of which is diff --git a/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_2.yml b/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_2.yml deleted file mode 100644 index e73823fb4ae..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_or_bsd-new_or_gpl-2.0_and_free-unknown_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: (gpl-2.0 OR bsd-simplified OR cpl-1.0) AND free-unknown -is_license_notice: yes -notes: there are extra requirements at the bottom that apply in all cases above and extend beyond - the requirements of the three main choices -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php - - http://www.opensource.org/licenses/cpl.php - - http://www.opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE index d21f07a9404..759c84ddf69 100644 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 90 +notes: a conflicted license with reference to the CPL 2.0 (likely a mistake from EPL 2.0) seen + in JRuby +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +--- + ***** BEGIN LICENSE BLOCK ***** * Version: CPL 1.0/GPL 2.0/LGPL 2.1 * @@ -22,5 +32,4 @@ * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the CPL, the GPL or the LGPL. - ***** END LICENSE BLOCK *****/ - + ***** END LICENSE BLOCK *****/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index 0d101006490..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 90 -notes: a conflicted license with reference to the CPL 2.0 (likely a mistake from EPL 2.0) seen - in JRuby -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE index 4c468519d66..4077feda1df 100644 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 90 +notes: a conflicted license with reference to the CPL and EPL (likely a mistake from EPL 2.0) + seen in JRuby +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +--- + # Version: EPL 2.0/GPL 2.0/LGPL 2.1 # # The contents of this file are subject to the Common Public @@ -20,4 +30,4 @@ # decision by deleting the provisions above and replace them with the notice # and other provisions required by the GPL or the LGPL. If you do not delete # the provisions above, a recipient may use your version of this file under -# the terms of any one of the EPL, the GPL or the LGPL. +# the terms of any one of the EPL, the GPL or the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index bec69afbf27..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 90 -notes: a conflicted license with reference to the CPL and EPL (likely a mistake from EPL 2.0) - seen in JRuby -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_1.RULE index 1ab66515f37..3a55035eb1d 100644 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpl-1.0 OR gpl-2.0 OR lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +--- + /***** BEGIN LICENSE BLOCK ***** * Version: CPL 1.0/GPL 2.0/LGPL 2.1 * diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_1.yml b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_1.yml deleted file mode 100644 index c0f6a25db20..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 OR gpl-2.0 OR lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_2.RULE index f8ec621a34b..f988cbe12a3 100644 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: cpl-1.0 OR gpl-2.0 OR lgpl-2.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - http://www-128.ibm.com/developerworks/library/os-cpl.html + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/lgpl.html +--- + Common Public License - v 1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_2.yml b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_2.yml deleted file mode 100644 index d1a168c2e50..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cpl-1.0 OR gpl-2.0 OR lgpl-2.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - http://www-128.ibm.com/developerworks/library/os-cpl.html - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_3.RULE b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_3.RULE index 861c7d10332..246a0baf3b3 100644 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: cpl-1.0 OR gpl-2.0 OR lgpl-2.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - http://www-128.ibm.com/developerworks/library/os-cpl.html + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + Common Public License - v 1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_3.yml b/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_3.yml deleted file mode 100644 index 7c89e4e6fcf..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_or_gpl-2.0_or_lgpl-2.1_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: cpl-1.0 OR gpl-2.0 OR lgpl-2.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - http://www-128.ibm.com/developerworks/library/os-cpl.html - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/cpl-1.0_url_1.RULE b/src/licensedcode/data/rules/cpl-1.0_url_1.RULE index d6979534d2c..4b6dc429d60 100644 --- a/src/licensedcode/data/rules/cpl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cpl-1.0 +--- + https://spdx.org/licenses/cpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_url_1.yml b/src/licensedcode/data/rules/cpl-1.0_url_1.yml deleted file mode 100644 index 3b19542d715..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cpl-1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_url_2.RULE b/src/licensedcode/data/rules/cpl-1.0_url_2.RULE index da938ae7834..10b2cda0a41 100644 --- a/src/licensedcode/data/rules/cpl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cpl-1.0.html +--- + https://spdx.org/licenses/cpl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_url_2.yml b/src/licensedcode/data/rules/cpl-1.0_url_2.yml deleted file mode 100644 index 85b8678d00e..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cpl-1.0.html diff --git a/src/licensedcode/data/rules/cpl-1.0_url_glc_72.RULE b/src/licensedcode/data/rules/cpl-1.0_url_glc_72.RULE index 6441d96438f..fabc05dbb33 100644 --- a/src/licensedcode/data/rules/cpl-1.0_url_glc_72.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_url_glc_72.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/cpl-1.0 +--- + http://opensource.org/licenses/cpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_url_glc_72.yml b/src/licensedcode/data/rules/cpl-1.0_url_glc_72.yml deleted file mode 100644 index 41638f50a0e..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_url_glc_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/cpl-1.0 diff --git a/src/licensedcode/data/rules/cpl-1.0_url_glc_73.RULE b/src/licensedcode/data/rules/cpl-1.0_url_glc_73.RULE index d671c683d98..022d1d0b678 100644 --- a/src/licensedcode/data/rules/cpl-1.0_url_glc_73.RULE +++ b/src/licensedcode/data/rules/cpl-1.0_url_glc_73.RULE @@ -1 +1,9 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/cpl-1.0 +--- + https://opensource.org/licenses/cpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl-1.0_url_glc_73.yml b/src/licensedcode/data/rules/cpl-1.0_url_glc_73.yml deleted file mode 100644 index 287d979a6d3..00000000000 --- a/src/licensedcode/data/rules/cpl-1.0_url_glc_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/cpl-1.0 diff --git a/src/licensedcode/data/rules/cpl_or_lgpl_lzma_sdk.RULE b/src/licensedcode/data/rules/cpl_or_lgpl_lzma_sdk.RULE index 378e12bea83..e2ad899ffd2 100644 --- a/src/licensedcode/data/rules/cpl_or_lgpl_lzma_sdk.RULE +++ b/src/licensedcode/data/rules/cpl_or_lgpl_lzma_sdk.RULE @@ -1,5 +1,10 @@ +--- +license_expression: lgpl-2.1 OR cpl-1.0 +is_license_notice: yes +--- + LZMA SDK is licensed under two licenses: 1) GNU Lesser General Public License (GNU LGPL) 2) Common Public License (CPL) It means that you can select one of these two licenses and - follow rules of that license. + follow rules of that license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpl_or_lgpl_lzma_sdk.yml b/src/licensedcode/data/rules/cpl_or_lgpl_lzma_sdk.yml deleted file mode 100644 index b35c5de0288..00000000000 --- a/src/licensedcode/data/rules/cpl_or_lgpl_lzma_sdk.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 OR cpl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cpl_or_lgpl_with_lzma-sdk-2006-exception.RULE b/src/licensedcode/data/rules/cpl_or_lgpl_with_lzma-sdk-2006-exception.RULE index 7bbd60ac78b..369663c326d 100644 --- a/src/licensedcode/data/rules/cpl_or_lgpl_with_lzma-sdk-2006-exception.RULE +++ b/src/licensedcode/data/rules/cpl_or_lgpl_with_lzma-sdk-2006-exception.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 WITH lzma-sdk-2006-exception OR cpl-1.0 WITH lzma-sdk-2006-exception +is_license_notice: yes +--- + LZMA SDK is licensed under two licenses: 1) GNU Lesser General Public License (GNU LGPL) 2) Common Public License (CPL) diff --git a/src/licensedcode/data/rules/cpl_or_lgpl_with_lzma-sdk-2006-exception.yml b/src/licensedcode/data/rules/cpl_or_lgpl_with_lzma-sdk-2006-exception.yml deleted file mode 100644 index 5dcb246e704..00000000000 --- a/src/licensedcode/data/rules/cpl_or_lgpl_with_lzma-sdk-2006-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 WITH lzma-sdk-2006-exception OR cpl-1.0 WITH lzma-sdk-2006-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cpol-1.02.RULE b/src/licensedcode/data/rules/cpol-1.02.RULE index 8857fc3029b..9774d551c23 100644 --- a/src/licensedcode/data/rules/cpol-1.02.RULE +++ b/src/licensedcode/data/rules/cpol-1.02.RULE @@ -1 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.codeproject.com/info/cpol10.aspx +--- + http://www.codeproject.com/info/cpol10.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02.SPDX.RULE b/src/licensedcode/data/rules/cpol-1.02.SPDX.RULE index f97b5be7e1d..666d2abb3fc 100644 --- a/src/licensedcode/data/rules/cpol-1.02.SPDX.RULE +++ b/src/licensedcode/data/rules/cpol-1.02.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + The Code Project Open License (CPOL) 1.02 Preamble diff --git a/src/licensedcode/data/rules/cpol-1.02.SPDX.yml b/src/licensedcode/data/rules/cpol-1.02.SPDX.yml deleted file mode 100644 index de2921f0514..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpol-1.02 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/cpol-1.02.yml b/src/licensedcode/data/rules/cpol-1.02.yml deleted file mode 100644 index ae432aa6e6a..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.codeproject.com/info/cpol10.aspx diff --git a/src/licensedcode/data/rules/cpol-1.02_1.RULE b/src/licensedcode/data/rules/cpol-1.02_1.RULE index 070ba9cfc0f..5e9c04a8b97 100644 --- a/src/licensedcode/data/rules/cpol-1.02_1.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_1.RULE @@ -1 +1,7 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +--- + CPOL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_1.yml b/src/licensedcode/data/rules/cpol-1.02_1.yml deleted file mode 100644 index f81598e21c5..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpol-1.02_10.RULE b/src/licensedcode/data/rules/cpol-1.02_10.RULE index cd62791ede5..b1c4d8ad59a 100644 --- a/src/licensedcode/data/rules/cpol-1.02_10.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +--- + Code Project Open License 1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_10.yml b/src/licensedcode/data/rules/cpol-1.02_10.yml deleted file mode 100644 index f81598e21c5..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpol-1.02_11.RULE b/src/licensedcode/data/rules/cpol-1.02_11.RULE index 6b3bdce4ec3..9a0abdb69d9 100644 --- a/src/licensedcode/data/rules/cpol-1.02_11.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_11.RULE @@ -1 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Code Project Open License 1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_11.yml b/src/licensedcode/data/rules/cpol-1.02_11.yml deleted file mode 100644 index 83786602d1f..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpol-1.02_12.RULE b/src/licensedcode/data/rules/cpol-1.02_12.RULE index 79a24ca4311..c6e418958f3 100644 --- a/src/licensedcode/data/rules/cpol-1.02_12.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_12.RULE @@ -1 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CPOL-1.02 Code Project Open License 1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_12.yml b/src/licensedcode/data/rules/cpol-1.02_12.yml deleted file mode 100644 index 83786602d1f..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpol-1.02_13.RULE b/src/licensedcode/data/rules/cpol-1.02_13.RULE index 101f9f69b63..b4fa3b7c855 100644 --- a/src/licensedcode/data/rules/cpol-1.02_13.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_13.RULE @@ -1 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Code Project Open License 1.02 CPOL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_13.yml b/src/licensedcode/data/rules/cpol-1.02_13.yml deleted file mode 100644 index 83786602d1f..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpol-1.02_14.RULE b/src/licensedcode/data/rules/cpol-1.02_14.RULE index 5a833f22d9b..2e31e629ba2 100644 --- a/src/licensedcode/data/rules/cpol-1.02_14.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_14.RULE @@ -1 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CPOL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_14.yml b/src/licensedcode/data/rules/cpol-1.02_14.yml deleted file mode 100644 index 842be1c96e9..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpol-1.02 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpol-1.02_15.RULE b/src/licensedcode/data/rules/cpol-1.02_15.RULE index e26666ebf9b..446a23b4ea4 100644 --- a/src/licensedcode/data/rules/cpol-1.02_15.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_15.RULE @@ -1 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Code Project Open License 1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_15.yml b/src/licensedcode/data/rules/cpol-1.02_15.yml deleted file mode 100644 index 842be1c96e9..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpol-1.02 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpol-1.02_16.RULE b/src/licensedcode/data/rules/cpol-1.02_16.RULE index 6a410ca15df..3221f2674d1 100644 --- a/src/licensedcode/data/rules/cpol-1.02_16.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_16.RULE @@ -1 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CPOL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_16.yml b/src/licensedcode/data/rules/cpol-1.02_16.yml deleted file mode 100644 index 842be1c96e9..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpol-1.02 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cpol-1.02_17.RULE b/src/licensedcode/data/rules/cpol-1.02_17.RULE index ae8aa420a51..b027d13364a 100644 --- a/src/licensedcode/data/rules/cpol-1.02_17.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_17.RULE @@ -1 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CPOL-1.02 +--- + https://licenses.nuget.org/CPOL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_17.yml b/src/licensedcode/data/rules/cpol-1.02_17.yml deleted file mode 100644 index c715cafbb82..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CPOL-1.02 diff --git a/src/licensedcode/data/rules/cpol-1.02_18.RULE b/src/licensedcode/data/rules/cpol-1.02_18.RULE index ee027644fc8..f0758006e7d 100644 --- a/src/licensedcode/data/rules/cpol-1.02_18.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_18.RULE @@ -1 +1,7 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CPOL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_18.yml b/src/licensedcode/data/rules/cpol-1.02_18.yml deleted file mode 100644 index f81598e21c5..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpol-1.02_19.RULE b/src/licensedcode/data/rules/cpol-1.02_19.RULE index 9c727c8286d..b3bc8b875fb 100644 --- a/src/licensedcode/data/rules/cpol-1.02_19.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_19.RULE @@ -1 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CPOL-1.02 +--- + LICENSE {{CPOL-1.02}} https://spdx.org/licenses/CPOL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_19.yml b/src/licensedcode/data/rules/cpol-1.02_19.yml deleted file mode 100644 index 1d87569a2f5..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CPOL-1.02 diff --git a/src/licensedcode/data/rules/cpol-1.02_2.RULE b/src/licensedcode/data/rules/cpol-1.02_2.RULE index c6d9024da15..54fec44c05c 100644 --- a/src/licensedcode/data/rules/cpol-1.02_2.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_notice: yes +ignorable_urls: + - http://www.codeproject.com/info/cpol10.aspx +--- + Originaly licensed under The Code Project Open License (CPOL) 1.02: http://www.codeproject.com/info/cpol10.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_2.yml b/src/licensedcode/data/rules/cpol-1.02_2.yml deleted file mode 100644 index d6d42ce5b2f..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpol-1.02 -is_license_notice: yes -ignorable_urls: - - http://www.codeproject.com/info/cpol10.aspx diff --git a/src/licensedcode/data/rules/cpol-1.02_20.RULE b/src/licensedcode/data/rules/cpol-1.02_20.RULE index 4acfd30eb0a..ec317d3e23a 100644 --- a/src/licensedcode/data/rules/cpol-1.02_20.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_20.RULE @@ -1 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CPOL-1.02 +--- + {{CPOL-1.02}} https://spdx.org/licenses/CPOL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_20.yml b/src/licensedcode/data/rules/cpol-1.02_20.yml deleted file mode 100644 index 1d87569a2f5..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CPOL-1.02 diff --git a/src/licensedcode/data/rules/cpol-1.02_3.RULE b/src/licensedcode/data/rules/cpol-1.02_3.RULE index 0ea7e79b28e..c35c956ff8c 100644 --- a/src/licensedcode/data/rules/cpol-1.02_3.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +notes: cpol URL +ignorable_urls: + - http://www.codeproject.com/info/CPOL.zip +--- + http://www.codeproject.com/info/CPOL.zip \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_3.yml b/src/licensedcode/data/rules/cpol-1.02_3.yml deleted file mode 100644 index 717591e8581..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 -notes: cpol URL -ignorable_urls: - - http://www.codeproject.com/info/CPOL.zip diff --git a/src/licensedcode/data/rules/cpol-1.02_4.RULE b/src/licensedcode/data/rules/cpol-1.02_4.RULE index a40fba794c6..573f6cd9c7a 100644 --- a/src/licensedcode/data/rules/cpol-1.02_4.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +--- + Code Project Open License (CPOL) 1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_4.yml b/src/licensedcode/data/rules/cpol-1.02_4.yml deleted file mode 100644 index f81598e21c5..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpol-1.02_5.RULE b/src/licensedcode/data/rules/cpol-1.02_5.RULE index 409b7763a82..a0b8b7f2706 100644 --- a/src/licensedcode/data/rules/cpol-1.02_5.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_5.RULE @@ -1 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.codeproject.com/info/cpol10.aspx +--- + Covered by the Code Project Open License, available at: http://www.codeproject.com/info/cpol10.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_5.yml b/src/licensedcode/data/rules/cpol-1.02_5.yml deleted file mode 100644 index bc9bc2e7b6e..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.codeproject.com/info/cpol10.aspx diff --git a/src/licensedcode/data/rules/cpol-1.02_6.RULE b/src/licensedcode/data/rules/cpol-1.02_6.RULE index 682a58ffcf4..5a649d5e228 100644 --- a/src/licensedcode/data/rules/cpol-1.02_6.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cpol-1.02 +is_license_notice: yes +ignorable_urls: + - http://www.codeproject.com/KB/static/clabel.aspx +--- + This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. Article and source code available from http://www.codeproject.com/KB/static/clabel.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_6.yml b/src/licensedcode/data/rules/cpol-1.02_6.yml deleted file mode 100644 index 89b2ee23694..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cpol-1.02 -is_license_notice: yes -ignorable_urls: - - http://www.codeproject.com/KB/static/clabel.aspx diff --git a/src/licensedcode/data/rules/cpol-1.02_7.RULE b/src/licensedcode/data/rules/cpol-1.02_7.RULE index ccf78964a27..0ea7a8f1120 100644 --- a/src/licensedcode/data/rules/cpol-1.02_7.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpol-1.02 +is_license_notice: yes +notes: https://github.com/bofhbug/privateprj/blob/96350324dc62d5792c0311a01d9d192fa73621b1/PortableAppStudio/Reference/EnhancedCollectionEds/NuControl/ExampleComponent.vb#L6 +ignorable_urls: + - http://www.codeproject.com/info/cpol10.aspx +--- + ' This program is free software; you can redistribute it and/or ' modify it under the terms of the The Code Project Open License (CPOL) ' as published by the CodeProject; either version 1.02 diff --git a/src/licensedcode/data/rules/cpol-1.02_7.yml b/src/licensedcode/data/rules/cpol-1.02_7.yml deleted file mode 100644 index 034b4fad7b1..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_notice: yes -notes: https://github.com/bofhbug/privateprj/blob/96350324dc62d5792c0311a01d9d192fa73621b1/PortableAppStudio/Reference/EnhancedCollectionEds/NuControl/ExampleComponent.vb#L6 -ignorable_urls: - - http://www.codeproject.com/info/cpol10.aspx diff --git a/src/licensedcode/data/rules/cpol-1.02_8.RULE b/src/licensedcode/data/rules/cpol-1.02_8.RULE index 48208deb907..3affb8b0faa 100644 --- a/src/licensedcode/data/rules/cpol-1.02_8.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cpol-1.02 +is_license_notice: yes +notes: https://github.com/rdyhalt/Gett.NET/blob/2898011a8e00f4437bea5795e172f8a72aa24438/Gett.NET/GettFile.cs +ignorable_urls: + - http://www.codeproject.com/info/cpol10.aspx +--- + is a free library: you can redistribute it and/or modify as nessery it under the terms of The Code Project Open License (CPOL) as published by the The Code Project, either version 1.02 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/cpol-1.02_8.yml b/src/licensedcode/data/rules/cpol-1.02_8.yml deleted file mode 100644 index 785edaab082..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_notice: yes -notes: https://github.com/rdyhalt/Gett.NET/blob/2898011a8e00f4437bea5795e172f8a72aa24438/Gett.NET/GettFile.cs -ignorable_urls: - - http://www.codeproject.com/info/cpol10.aspx diff --git a/src/licensedcode/data/rules/cpol-1.02_9.RULE b/src/licensedcode/data/rules/cpol-1.02_9.RULE index 06c1262a30b..e50f443f2cb 100644 --- a/src/licensedcode/data/rules/cpol-1.02_9.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_9.RULE @@ -1,2 +1,8 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 100 +--- + Code Project Open License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_9.yml b/src/licensedcode/data/rules/cpol-1.02_9.yml deleted file mode 100644 index f81598e21c5..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cpol-1.02_url_1.RULE b/src/licensedcode/data/rules/cpol-1.02_url_1.RULE index 26b2287e946..60e06281891 100644 --- a/src/licensedcode/data/rules/cpol-1.02_url_1.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cpol-1.02 +--- + https://spdx.org/licenses/cpol-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_url_1.yml b/src/licensedcode/data/rules/cpol-1.02_url_1.yml deleted file mode 100644 index 2ff18250032..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cpol-1.02 diff --git a/src/licensedcode/data/rules/cpol-1.02_url_2.RULE b/src/licensedcode/data/rules/cpol-1.02_url_2.RULE index f2f7c449a32..d40effeaa2c 100644 --- a/src/licensedcode/data/rules/cpol-1.02_url_2.RULE +++ b/src/licensedcode/data/rules/cpol-1.02_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cpol-1.02 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cpol-1.02.html +--- + https://spdx.org/licenses/cpol-1.02.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cpol-1.02_url_2.yml b/src/licensedcode/data/rules/cpol-1.02_url_2.yml deleted file mode 100644 index 685b54f1404..00000000000 --- a/src/licensedcode/data/rules/cpol-1.02_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpol-1.02 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cpol-1.02.html diff --git a/src/licensedcode/data/rules/cpol-1.0_1.RULE b/src/licensedcode/data/rules/cpol-1.0_1.RULE index 3d91c2270ae..c88105cc572 100644 --- a/src/licensedcode/data/rules/cpol-1.0_1.RULE +++ b/src/licensedcode/data/rules/cpol-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cpol-1.0 +is_license_notice: yes +minimum_coverage: 90 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the Code Project Open License (CPOL); either version 1.0 of the License, or (at your option) any later diff --git a/src/licensedcode/data/rules/cpol-1.0_1.yml b/src/licensedcode/data/rules/cpol-1.0_1.yml deleted file mode 100644 index 05901db08f8..00000000000 --- a/src/licensedcode/data/rules/cpol-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpol-1.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/cpol-1.0_2.RULE b/src/licensedcode/data/rules/cpol-1.0_2.RULE index 4b84d10f752..0d06269a197 100644 --- a/src/licensedcode/data/rules/cpol-1.0_2.RULE +++ b/src/licensedcode/data/rules/cpol-1.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cpol-1.0 +is_license_notice: yes +minimum_coverage: 90 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the Code Project Open License (CPOL); either version 1.0 of the License, or (at your option) any later diff --git a/src/licensedcode/data/rules/cpol-1.0_2.yml b/src/licensedcode/data/rules/cpol-1.0_2.yml deleted file mode 100644 index 05901db08f8..00000000000 --- a/src/licensedcode/data/rules/cpol-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpol-1.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/crapl-0.1.RULE b/src/licensedcode/data/rules/crapl-0.1.RULE index 51742784754..0bcc3ce0f73 100644 --- a/src/licensedcode/data/rules/crapl-0.1.RULE +++ b/src/licensedcode/data/rules/crapl-0.1.RULE @@ -1 +1,7 @@ +--- +license_expression: crapl-0.1 +is_license_reference: yes +relevance: 100 +--- + Community Research and Academic Programming License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crapl-0.1.yml b/src/licensedcode/data/rules/crapl-0.1.yml deleted file mode 100644 index c6247290c15..00000000000 --- a/src/licensedcode/data/rules/crapl-0.1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: crapl-0.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/crapl-0.1_1.RULE b/src/licensedcode/data/rules/crapl-0.1_1.RULE index f6662605d2e..834e6b143c5 100644 --- a/src/licensedcode/data/rules/crapl-0.1_1.RULE +++ b/src/licensedcode/data/rules/crapl-0.1_1.RULE @@ -1 +1,6 @@ +--- +license_expression: crapl-0.1 +is_license_notice: yes +--- + This code is released under the [CRAPL][crapl]. See [CRAPL-LICENSE.txt](CRAPL-LICENSE.txt) for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/crapl-0.1_1.yml b/src/licensedcode/data/rules/crapl-0.1_1.yml deleted file mode 100644 index df21f71cd22..00000000000 --- a/src/licensedcode/data/rules/crapl-0.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: crapl-0.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/crapl-0.1_2.RULE b/src/licensedcode/data/rules/crapl-0.1_2.RULE index ae0e3f960a5..7a306b49554 100644 --- a/src/licensedcode/data/rules/crapl-0.1_2.RULE +++ b/src/licensedcode/data/rules/crapl-0.1_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: crapl-0.1 +is_license_notice: yes +--- + License This code is released under the [CRAPL][crapl]. See [CRAPL-LICENSE.txt](CRAPL-LICENSE.txt) for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/crapl-0.1_2.yml b/src/licensedcode/data/rules/crapl-0.1_2.yml deleted file mode 100644 index df21f71cd22..00000000000 --- a/src/licensedcode/data/rules/crapl-0.1_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: crapl-0.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/crapl-0.1_3.RULE b/src/licensedcode/data/rules/crapl-0.1_3.RULE index 48d025178a4..592d78118c1 100644 --- a/src/licensedcode/data/rules/crapl-0.1_3.RULE +++ b/src/licensedcode/data/rules/crapl-0.1_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: crapl-0.1 +is_license_notice: yes +ignorable_urls: + - http://matt.might.net/articles/crapl/ +--- + This code is released under the [CRAPL][crapl]. See [CRAPL-LICENSE.txt](CRAPL-LICENSE.txt) for more details. [crapl]: http://matt.might.net/articles/crapl/ "the Community Research and Academic Programming License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/crapl-0.1_3.yml b/src/licensedcode/data/rules/crapl-0.1_3.yml deleted file mode 100644 index 07e09581f68..00000000000 --- a/src/licensedcode/data/rules/crapl-0.1_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: crapl-0.1 -is_license_notice: yes -ignorable_urls: - - http://matt.might.net/articles/crapl/ diff --git a/src/licensedcode/data/rules/crcalc_1.RULE b/src/licensedcode/data/rules/crcalc_1.RULE index 77dbef18980..676cc25d811 100644 --- a/src/licensedcode/data/rules/crcalc_1.RULE +++ b/src/licensedcode/data/rules/crcalc_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: crcalc +is_license_text: yes +relevance: 99 +notes: contains an extra litigation venue blurb +--- + Permission is granted free of charge to copy, modify, use and distribute this software provided you include the entirety of this notice in all copies made. @@ -32,4 +39,4 @@ between California residents. Any litigation relating to these license terms shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with -venue lying exclusively in Santa Clara County, California. +venue lying exclusively in Santa Clara County, California. \ No newline at end of file diff --git a/src/licensedcode/data/rules/crcalc_1.yml b/src/licensedcode/data/rules/crcalc_1.yml deleted file mode 100644 index 912a32577c2..00000000000 --- a/src/licensedcode/data/rules/crcalc_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: crcalc -is_license_text: yes -relevance: 99 -notes: contains an extra litigation venue blurb diff --git a/src/licensedcode/data/rules/crcalc_2.RULE b/src/licensedcode/data/rules/crcalc_2.RULE index 223fb8ae88e..94e189ba1b6 100644 --- a/src/licensedcode/data/rules/crcalc_2.RULE +++ b/src/licensedcode/data/rules/crcalc_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: crcalc +is_license_text: yes +relevance: 100 +--- + Permission is granted free of charge to copy, modify, use and distribute this software provided you include the entirety of this notice in all copies made. diff --git a/src/licensedcode/data/rules/crcalc_2.yml b/src/licensedcode/data/rules/crcalc_2.yml deleted file mode 100644 index 9ffc2f49655..00000000000 --- a/src/licensedcode/data/rules/crcalc_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: crcalc -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/crossword_1.RULE b/src/licensedcode/data/rules/crossword_1.RULE index 0108718130a..0db5737387a 100644 --- a/src/licensedcode/data/rules/crossword_1.RULE +++ b/src/licensedcode/data/rules/crossword_1.RULE @@ -1 +1,10 @@ +--- +license_expression: crossword +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Crossword License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_1.yml b/src/licensedcode/data/rules/crossword_1.yml deleted file mode 100644 index 76f7357ac34..00000000000 --- a/src/licensedcode/data/rules/crossword_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crossword -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crossword_10.RULE b/src/licensedcode/data/rules/crossword_10.RULE index 71e37fa80bc..3c620713267 100644 --- a/src/licensedcode/data/rules/crossword_10.RULE +++ b/src/licensedcode/data/rules/crossword_10.RULE @@ -1 +1,9 @@ +--- +license_expression: crossword +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Crossword +--- + LICENSE {{Crossword}} https://spdx.org/licenses/Crossword \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_10.yml b/src/licensedcode/data/rules/crossword_10.yml deleted file mode 100644 index 06af3a9c1f0..00000000000 --- a/src/licensedcode/data/rules/crossword_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crossword -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Crossword diff --git a/src/licensedcode/data/rules/crossword_11.RULE b/src/licensedcode/data/rules/crossword_11.RULE index 0ea79a9d98d..09b369cc041 100644 --- a/src/licensedcode/data/rules/crossword_11.RULE +++ b/src/licensedcode/data/rules/crossword_11.RULE @@ -1 +1,9 @@ +--- +license_expression: crossword +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Crossword +--- + {{Crossword}} https://spdx.org/licenses/Crossword \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_11.yml b/src/licensedcode/data/rules/crossword_11.yml deleted file mode 100644 index 06af3a9c1f0..00000000000 --- a/src/licensedcode/data/rules/crossword_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crossword -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Crossword diff --git a/src/licensedcode/data/rules/crossword_2.RULE b/src/licensedcode/data/rules/crossword_2.RULE index 514a6fb1616..88f87ac845f 100644 --- a/src/licensedcode/data/rules/crossword_2.RULE +++ b/src/licensedcode/data/rules/crossword_2.RULE @@ -1 +1,10 @@ +--- +license_expression: crossword +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Crossword License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_2.yml b/src/licensedcode/data/rules/crossword_2.yml deleted file mode 100644 index 76f7357ac34..00000000000 --- a/src/licensedcode/data/rules/crossword_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crossword -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crossword_3.RULE b/src/licensedcode/data/rules/crossword_3.RULE index 86b5f48f71f..2b5ba003372 100644 --- a/src/licensedcode/data/rules/crossword_3.RULE +++ b/src/licensedcode/data/rules/crossword_3.RULE @@ -1 +1,10 @@ +--- +license_expression: crossword +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Crossword Crossword License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_3.yml b/src/licensedcode/data/rules/crossword_3.yml deleted file mode 100644 index 76f7357ac34..00000000000 --- a/src/licensedcode/data/rules/crossword_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crossword -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crossword_4.RULE b/src/licensedcode/data/rules/crossword_4.RULE index 0feba7551e3..0350f630cb4 100644 --- a/src/licensedcode/data/rules/crossword_4.RULE +++ b/src/licensedcode/data/rules/crossword_4.RULE @@ -1 +1,10 @@ +--- +license_expression: crossword +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Crossword License Crossword \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_4.yml b/src/licensedcode/data/rules/crossword_4.yml deleted file mode 100644 index 76f7357ac34..00000000000 --- a/src/licensedcode/data/rules/crossword_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crossword -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crossword_5.RULE b/src/licensedcode/data/rules/crossword_5.RULE index 48575f1441c..1d9a70c0f50 100644 --- a/src/licensedcode/data/rules/crossword_5.RULE +++ b/src/licensedcode/data/rules/crossword_5.RULE @@ -1 +1,10 @@ +--- +license_expression: crossword +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Crossword \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_5.yml b/src/licensedcode/data/rules/crossword_5.yml deleted file mode 100644 index 9d6d5f6b259..00000000000 --- a/src/licensedcode/data/rules/crossword_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crossword -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crossword_6.RULE b/src/licensedcode/data/rules/crossword_6.RULE index 96aa4e965c0..030dc724dad 100644 --- a/src/licensedcode/data/rules/crossword_6.RULE +++ b/src/licensedcode/data/rules/crossword_6.RULE @@ -1 +1,10 @@ +--- +license_expression: crossword +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Crossword License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_6.yml b/src/licensedcode/data/rules/crossword_6.yml deleted file mode 100644 index 9d6d5f6b259..00000000000 --- a/src/licensedcode/data/rules/crossword_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crossword -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crossword_7.RULE b/src/licensedcode/data/rules/crossword_7.RULE index 037909740d0..6492d375b13 100644 --- a/src/licensedcode/data/rules/crossword_7.RULE +++ b/src/licensedcode/data/rules/crossword_7.RULE @@ -1 +1,10 @@ +--- +license_expression: crossword +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Crossword \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_7.yml b/src/licensedcode/data/rules/crossword_7.yml deleted file mode 100644 index 9d6d5f6b259..00000000000 --- a/src/licensedcode/data/rules/crossword_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crossword -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crossword_8.RULE b/src/licensedcode/data/rules/crossword_8.RULE index 15d3b5eaa61..97527d0e450 100644 --- a/src/licensedcode/data/rules/crossword_8.RULE +++ b/src/licensedcode/data/rules/crossword_8.RULE @@ -1 +1,9 @@ +--- +license_expression: crossword +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Crossword +--- + https://licenses.nuget.org/Crossword \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_8.yml b/src/licensedcode/data/rules/crossword_8.yml deleted file mode 100644 index d3d15407d9a..00000000000 --- a/src/licensedcode/data/rules/crossword_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crossword -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Crossword diff --git a/src/licensedcode/data/rules/crossword_9.RULE b/src/licensedcode/data/rules/crossword_9.RULE index 806853346e4..c511a265a9c 100644 --- a/src/licensedcode/data/rules/crossword_9.RULE +++ b/src/licensedcode/data/rules/crossword_9.RULE @@ -1 +1,7 @@ +--- +license_expression: crossword +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Crossword \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_9.yml b/src/licensedcode/data/rules/crossword_9.yml deleted file mode 100644 index 9ec92a7f1ae..00000000000 --- a/src/licensedcode/data/rules/crossword_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: crossword -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/crossword_url_1.RULE b/src/licensedcode/data/rules/crossword_url_1.RULE index 99862424a3f..563b58f34c0 100644 --- a/src/licensedcode/data/rules/crossword_url_1.RULE +++ b/src/licensedcode/data/rules/crossword_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: crossword +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/crossword +--- + https://spdx.org/licenses/crossword \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_url_1.yml b/src/licensedcode/data/rules/crossword_url_1.yml deleted file mode 100644 index 68ba37ad72a..00000000000 --- a/src/licensedcode/data/rules/crossword_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crossword -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/crossword diff --git a/src/licensedcode/data/rules/crossword_url_2.RULE b/src/licensedcode/data/rules/crossword_url_2.RULE index 552fe334c14..007220bd853 100644 --- a/src/licensedcode/data/rules/crossword_url_2.RULE +++ b/src/licensedcode/data/rules/crossword_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: crossword +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/crossword.html +--- + https://spdx.org/licenses/crossword.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/crossword_url_2.yml b/src/licensedcode/data/rules/crossword_url_2.yml deleted file mode 100644 index 812ccfcb842..00000000000 --- a/src/licensedcode/data/rules/crossword_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crossword -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/crossword.html diff --git a/src/licensedcode/data/rules/crypto-keys-redistribution.RULE b/src/licensedcode/data/rules/crypto-keys-redistribution.RULE index 357896f5b89..9817f5f8ca0 100644 --- a/src/licensedcode/data/rules/crypto-keys-redistribution.RULE +++ b/src/licensedcode/data/rules/crypto-keys-redistribution.RULE @@ -1,7 +1,12 @@ +--- +license_expression: crypto-keys-redistribution +is_license_notice: yes +--- + For the avoidance of doubt the "preferred form" of this code is one which is in an open non patent encumbered format. Where cryptographic key signing forms part of the process of creating an executable the information including keys needed to generate an equivalently functional executable are deemed to be part of the -source code are deemed to be part of the source code. +source code are deemed to be part of the source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/crypto-keys-redistribution.yml b/src/licensedcode/data/rules/crypto-keys-redistribution.yml deleted file mode 100644 index 9bbd2407555..00000000000 --- a/src/licensedcode/data/rules/crypto-keys-redistribution.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: crypto-keys-redistribution -is_license_notice: yes diff --git a/src/licensedcode/data/rules/cryptopp_1.RULE b/src/licensedcode/data/rules/cryptopp_1.RULE index 8a3fe2faeee..21679f2072b 100644 --- a/src/licensedcode/data/rules/cryptopp_1.RULE +++ b/src/licensedcode/data/rules/cryptopp_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cryptopp +is_license_text: yes +notes: Before March 2013, Crypto++ was licensed under this unique license. It has been relicensed + under the Boost license in March 2013 that can be seen on the current version of the page + at http://www.cryptopp.com/License.txt This can be seen instead at https://web.archive.org/web/20130215095323/http://www.cryptopp.com/License.txt +--- + Permission to use, copy, modify, and distribute this compilation for any purpose, including commercial applications, is hereby granted without fee, subject to the following restrictions: diff --git a/src/licensedcode/data/rules/cryptopp_1.yml b/src/licensedcode/data/rules/cryptopp_1.yml deleted file mode 100644 index 1d54f11b904..00000000000 --- a/src/licensedcode/data/rules/cryptopp_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cryptopp -is_license_text: yes -notes: Before March 2013, Crypto++ was licensed under this unique license. It has been relicensed - under the Boost license in March 2013 that can be seen on the current version of the page - at http://www.cryptopp.com/License.txt This can be seen instead at https://web.archive.org/web/20130215095323/http://www.cryptopp.com/License.txt diff --git a/src/licensedcode/data/rules/cryptopp_2.RULE b/src/licensedcode/data/rules/cryptopp_2.RULE index 2844a2eea24..5c2e842be22 100644 --- a/src/licensedcode/data/rules/cryptopp_2.RULE +++ b/src/licensedcode/data/rules/cryptopp_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: cryptopp +is_license_notice: yes +relevance: 99 +--- + Permission to use, copy, modify, and distribute this compilation for any purpose, including commercial applications, is hereby granted without fee, subject to the following restrictions: Any copy or modification of this compilation in any form, except in object code form as part of diff --git a/src/licensedcode/data/rules/cryptopp_2.yml b/src/licensedcode/data/rules/cryptopp_2.yml deleted file mode 100644 index c15a2baaa14..00000000000 --- a/src/licensedcode/data/rules/cryptopp_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cryptopp -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/crystal-stacker_1.RULE b/src/licensedcode/data/rules/crystal-stacker_1.RULE index ff4da1b1041..9929a13d219 100644 --- a/src/licensedcode/data/rules/crystal-stacker_1.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_1.RULE @@ -1 +1,10 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CrystalStacker License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_1.yml b/src/licensedcode/data/rules/crystal-stacker_1.yml deleted file mode 100644 index 473c290cbbc..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crystal-stacker_10.RULE b/src/licensedcode/data/rules/crystal-stacker_10.RULE index 91960e3ffab..211334b2f31 100644 --- a/src/licensedcode/data/rules/crystal-stacker_10.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_10.RULE @@ -1 +1,9 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CrystalStacker +--- + {{CrystalStacker}} https://spdx.org/licenses/CrystalStacker \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_10.yml b/src/licensedcode/data/rules/crystal-stacker_10.yml deleted file mode 100644 index cd8981e24e0..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CrystalStacker diff --git a/src/licensedcode/data/rules/crystal-stacker_11.RULE b/src/licensedcode/data/rules/crystal-stacker_11.RULE index dbdda6773f9..36ca06e388b 100644 --- a/src/licensedcode/data/rules/crystal-stacker_11.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_11.RULE @@ -1 +1,9 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CrystalStacker +--- + LICENSE {{CrystalStacker}} https://spdx.org/licenses/CrystalStacker \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_11.yml b/src/licensedcode/data/rules/crystal-stacker_11.yml deleted file mode 100644 index cd8981e24e0..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CrystalStacker diff --git a/src/licensedcode/data/rules/crystal-stacker_2.RULE b/src/licensedcode/data/rules/crystal-stacker_2.RULE index 38ec239b302..1e17a30864c 100644 --- a/src/licensedcode/data/rules/crystal-stacker_2.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_2.RULE @@ -1 +1,10 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CrystalStacker License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_2.yml b/src/licensedcode/data/rules/crystal-stacker_2.yml deleted file mode 100644 index 473c290cbbc..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crystal-stacker_3.RULE b/src/licensedcode/data/rules/crystal-stacker_3.RULE index c2741d03004..9c053f7f6ed 100644 --- a/src/licensedcode/data/rules/crystal-stacker_3.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_3.RULE @@ -1 +1,10 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CrystalStacker CrystalStacker License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_3.yml b/src/licensedcode/data/rules/crystal-stacker_3.yml deleted file mode 100644 index 473c290cbbc..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crystal-stacker_4.RULE b/src/licensedcode/data/rules/crystal-stacker_4.RULE index 014590599f7..fed1b7356e8 100644 --- a/src/licensedcode/data/rules/crystal-stacker_4.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_4.RULE @@ -1 +1,10 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CrystalStacker License CrystalStacker \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_4.yml b/src/licensedcode/data/rules/crystal-stacker_4.yml deleted file mode 100644 index 473c290cbbc..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crystal-stacker_5.RULE b/src/licensedcode/data/rules/crystal-stacker_5.RULE index 8e93cd38832..3ee0006b3e1 100644 --- a/src/licensedcode/data/rules/crystal-stacker_5.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_5.RULE @@ -1 +1,10 @@ +--- +license_expression: crystal-stacker +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CrystalStacker \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_5.yml b/src/licensedcode/data/rules/crystal-stacker_5.yml deleted file mode 100644 index 30166e2759e..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crystal-stacker -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crystal-stacker_6.RULE b/src/licensedcode/data/rules/crystal-stacker_6.RULE index d41300eb593..48e6b04d52c 100644 --- a/src/licensedcode/data/rules/crystal-stacker_6.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_6.RULE @@ -1 +1,10 @@ +--- +license_expression: crystal-stacker +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CrystalStacker License \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_6.yml b/src/licensedcode/data/rules/crystal-stacker_6.yml deleted file mode 100644 index 30166e2759e..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crystal-stacker -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crystal-stacker_7.RULE b/src/licensedcode/data/rules/crystal-stacker_7.RULE index b738b744f52..80335b02954 100644 --- a/src/licensedcode/data/rules/crystal-stacker_7.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_7.RULE @@ -1 +1,10 @@ +--- +license_expression: crystal-stacker +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CrystalStacker \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_7.yml b/src/licensedcode/data/rules/crystal-stacker_7.yml deleted file mode 100644 index 30166e2759e..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: crystal-stacker -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/crystal-stacker_8.RULE b/src/licensedcode/data/rules/crystal-stacker_8.RULE index 292d4ec1420..f6db96e9562 100644 --- a/src/licensedcode/data/rules/crystal-stacker_8.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_8.RULE @@ -1 +1,9 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CrystalStacker +--- + https://licenses.nuget.org/CrystalStacker \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_8.yml b/src/licensedcode/data/rules/crystal-stacker_8.yml deleted file mode 100644 index 6be1225af7b..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CrystalStacker diff --git a/src/licensedcode/data/rules/crystal-stacker_9.RULE b/src/licensedcode/data/rules/crystal-stacker_9.RULE index a6ff77dfdfa..4db4c7a5ef6 100644 --- a/src/licensedcode/data/rules/crystal-stacker_9.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_9.RULE @@ -1 +1,7 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CrystalStacker \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_9.yml b/src/licensedcode/data/rules/crystal-stacker_9.yml deleted file mode 100644 index d0b9b707dab..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/crystal-stacker_url_1.RULE b/src/licensedcode/data/rules/crystal-stacker_url_1.RULE index 3df9e2fa7f3..0b29cb64dc0 100644 --- a/src/licensedcode/data/rules/crystal-stacker_url_1.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/crystalstacker +--- + https://spdx.org/licenses/crystalstacker \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_url_1.yml b/src/licensedcode/data/rules/crystal-stacker_url_1.yml deleted file mode 100644 index f23d6be13b2..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/crystalstacker diff --git a/src/licensedcode/data/rules/crystal-stacker_url_2.RULE b/src/licensedcode/data/rules/crystal-stacker_url_2.RULE index 0fac3b954a4..f6ee42a8ceb 100644 --- a/src/licensedcode/data/rules/crystal-stacker_url_2.RULE +++ b/src/licensedcode/data/rules/crystal-stacker_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: crystal-stacker +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/crystalstacker.html +--- + https://spdx.org/licenses/crystalstacker.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/crystal-stacker_url_2.yml b/src/licensedcode/data/rules/crystal-stacker_url_2.yml deleted file mode 100644 index 2fad3282dc9..00000000000 --- a/src/licensedcode/data/rules/crystal-stacker_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: crystal-stacker -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/crystalstacker.html diff --git a/src/licensedcode/data/rules/csl-1.0_1.RULE b/src/licensedcode/data/rules/csl-1.0_1.RULE index df3fb6cd6dc..bb51850306f 100644 --- a/src/licensedcode/data/rules/csl-1.0_1.RULE +++ b/src/licensedcode/data/rules/csl-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: csl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community Specification License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_1.yml b/src/licensedcode/data/rules/csl-1.0_1.yml deleted file mode 100644 index 27d12297316..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: csl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/csl-1.0_10.RULE b/src/licensedcode/data/rules/csl-1.0_10.RULE index e3bae64a8e5..2be6e2a8223 100644 --- a/src/licensedcode/data/rules/csl-1.0_10.RULE +++ b/src/licensedcode/data/rules/csl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: csl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Community-Spec-1.0 +--- + LICENSE {{Community-Spec-1.0}} https://spdx.org/licenses/Community-Spec-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_10.yml b/src/licensedcode/data/rules/csl-1.0_10.yml deleted file mode 100644 index baf8708ff7c..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: csl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Community-Spec-1.0 diff --git a/src/licensedcode/data/rules/csl-1.0_11.RULE b/src/licensedcode/data/rules/csl-1.0_11.RULE index e4eb97bfe92..995030de0a6 100644 --- a/src/licensedcode/data/rules/csl-1.0_11.RULE +++ b/src/licensedcode/data/rules/csl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: csl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Community-Spec-1.0 +--- + {{Community-Spec-1.0}} https://spdx.org/licenses/Community-Spec-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_11.yml b/src/licensedcode/data/rules/csl-1.0_11.yml deleted file mode 100644 index baf8708ff7c..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: csl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Community-Spec-1.0 diff --git a/src/licensedcode/data/rules/csl-1.0_2.RULE b/src/licensedcode/data/rules/csl-1.0_2.RULE index 2a0ff288927..21592c0b4a6 100644 --- a/src/licensedcode/data/rules/csl-1.0_2.RULE +++ b/src/licensedcode/data/rules/csl-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: csl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Community Specification License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_2.yml b/src/licensedcode/data/rules/csl-1.0_2.yml deleted file mode 100644 index 27d12297316..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: csl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/csl-1.0_3.RULE b/src/licensedcode/data/rules/csl-1.0_3.RULE index 772afc3d561..6723a37f3ed 100644 --- a/src/licensedcode/data/rules/csl-1.0_3.RULE +++ b/src/licensedcode/data/rules/csl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: csl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community-Spec-1.0 Community Specification License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_3.yml b/src/licensedcode/data/rules/csl-1.0_3.yml deleted file mode 100644 index 27d12297316..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: csl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/csl-1.0_4.RULE b/src/licensedcode/data/rules/csl-1.0_4.RULE index 3b65f539dca..409a7ff8845 100644 --- a/src/licensedcode/data/rules/csl-1.0_4.RULE +++ b/src/licensedcode/data/rules/csl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: csl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Community Specification License 1.0 Community-Spec-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_4.yml b/src/licensedcode/data/rules/csl-1.0_4.yml deleted file mode 100644 index 27d12297316..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: csl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/csl-1.0_5.RULE b/src/licensedcode/data/rules/csl-1.0_5.RULE index 1a91023786a..fe5113cd8ac 100644 --- a/src/licensedcode/data/rules/csl-1.0_5.RULE +++ b/src/licensedcode/data/rules/csl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: csl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Community-Spec-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_5.yml b/src/licensedcode/data/rules/csl-1.0_5.yml deleted file mode 100644 index 2f701be6153..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: csl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/csl-1.0_6.RULE b/src/licensedcode/data/rules/csl-1.0_6.RULE index 173b328a888..5f6a225706f 100644 --- a/src/licensedcode/data/rules/csl-1.0_6.RULE +++ b/src/licensedcode/data/rules/csl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: csl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Community Specification License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_6.yml b/src/licensedcode/data/rules/csl-1.0_6.yml deleted file mode 100644 index 2f701be6153..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: csl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/csl-1.0_7.RULE b/src/licensedcode/data/rules/csl-1.0_7.RULE index e31f49ff299..4fa4138f9b6 100644 --- a/src/licensedcode/data/rules/csl-1.0_7.RULE +++ b/src/licensedcode/data/rules/csl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: csl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Community-Spec-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_7.yml b/src/licensedcode/data/rules/csl-1.0_7.yml deleted file mode 100644 index 2f701be6153..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: csl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/csl-1.0_8.RULE b/src/licensedcode/data/rules/csl-1.0_8.RULE index 94082e51c93..5e44c093d3d 100644 --- a/src/licensedcode/data/rules/csl-1.0_8.RULE +++ b/src/licensedcode/data/rules/csl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: csl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Community-Spec-1.0 +--- + https://licenses.nuget.org/Community-Spec-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_8.yml b/src/licensedcode/data/rules/csl-1.0_8.yml deleted file mode 100644 index aa4818a6dc7..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: csl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Community-Spec-1.0 diff --git a/src/licensedcode/data/rules/csl-1.0_9.RULE b/src/licensedcode/data/rules/csl-1.0_9.RULE index bfe51278bb1..f89bc8a8407 100644 --- a/src/licensedcode/data/rules/csl-1.0_9.RULE +++ b/src/licensedcode/data/rules/csl-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: csl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Community-Spec-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/csl-1.0_9.yml b/src/licensedcode/data/rules/csl-1.0_9.yml deleted file mode 100644 index fb5831fa860..00000000000 --- a/src/licensedcode/data/rules/csl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: csl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/csprng_1.RULE b/src/licensedcode/data/rules/csprng_1.RULE index 53d554ec0d5..6f42cba13b9 100644 --- a/src/licensedcode/data/rules/csprng_1.RULE +++ b/src/licensedcode/data/rules/csprng_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: csprng +is_license_text: yes +relevance: 100 +notes: typo in andor +ignorable_emails: + - pgut001@cs.auckland.ac.nz +--- + Redistribution of the CSPRNG modules and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/csprng_1.yml b/src/licensedcode/data/rules/csprng_1.yml deleted file mode 100644 index ff20590e349..00000000000 --- a/src/licensedcode/data/rules/csprng_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: csprng -is_license_text: yes -relevance: 100 -notes: typo in andor -ignorable_emails: - - pgut001@cs.auckland.ac.nz diff --git a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_1.RULE index e8f096ad726..c599b13beac 100644 --- a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: csprng OR lgpl-2.1-plus +is_license_notice: yes +ignorable_emails: + - pgut001@cs.auckland.ac.nz +--- + Redistribution of the CSPRNG modules and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index 970f5c1611d..00000000000 --- a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: csprng OR lgpl-2.1-plus -is_license_notice: yes -ignorable_emails: - - pgut001@cs.auckland.ac.nz diff --git a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_2.RULE index 43c0117a828..6b8c2d0110b 100644 --- a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_2.RULE @@ -1 +1,8 @@ +--- +license_expression: csprng OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + For usage conditions, see lib_rand.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index 12fe513c5fc..00000000000 --- a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: csprng OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_3.RULE index 81c454614e9..5f559482906 100644 --- a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: csprng OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: typo in andor +ignorable_emails: + - pgut001@cs.auckland.ac.nz +--- + Redistribution of the CSPRNG modules and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_3.yml deleted file mode 100644 index 6005ad9137a..00000000000 --- a/src/licensedcode/data/rules/csprng_or_lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: csprng OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: typo in andor -ignorable_emails: - - pgut001@cs.auckland.ac.nz diff --git a/src/licensedcode/data/rules/cua-opl-1.0.RULE b/src/licensedcode/data/rules/cua-opl-1.0.RULE index 446bdee17ae..424a56eea95 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cuaoffice.php +--- + http://www.opensource.org/licenses/cuaoffice.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0.SPDX.RULE b/src/licensedcode/data/rules/cua-opl-1.0.SPDX.RULE index f9cb9d5b030..1df8ed926c5 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: cua-opl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://cuaoffice.sourceforge.net/ +--- + CUA Office Public License Version 1.0 (plain text) 1. Definitions. diff --git a/src/licensedcode/data/rules/cua-opl-1.0.SPDX.yml b/src/licensedcode/data/rules/cua-opl-1.0.SPDX.yml deleted file mode 100644 index c179883c7fc..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://cuaoffice.sourceforge.net/ diff --git a/src/licensedcode/data/rules/cua-opl-1.0.yml b/src/licensedcode/data/rules/cua-opl-1.0.yml deleted file mode 100644 index 9be5e40e12a..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cuaoffice.php diff --git a/src/licensedcode/data/rules/cua-opl-1.0_1.RULE b/src/licensedcode/data/rules/cua-opl-1.0_1.RULE index 0d0d509abdb..963731ce994 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_1.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/cuaoffice.php +--- + http://opensource.org/licenses/cuaoffice.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_1.yml b/src/licensedcode/data/rules/cua-opl-1.0_1.yml deleted file mode 100644 index 2efd784bde0..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/cuaoffice.php diff --git a/src/licensedcode/data/rules/cua-opl-1.0_10.RULE b/src/licensedcode/data/rules/cua-opl-1.0_10.RULE index cd66fc0bf68..ce0db571c59 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_10.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: cua-opl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: CUA-OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_10.yml b/src/licensedcode/data/rules/cua-opl-1.0_10.yml deleted file mode 100644 index 125f866be37..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cua-opl-1.0_11.RULE b/src/licensedcode/data/rules/cua-opl-1.0_11.RULE index 740ea624531..1acb6b67f70 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_11.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/CUA-OPL-1.0 +--- + https://licenses.nuget.org/CUA-OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_11.yml b/src/licensedcode/data/rules/cua-opl-1.0_11.yml deleted file mode 100644 index e819ffffe05..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/CUA-OPL-1.0 diff --git a/src/licensedcode/data/rules/cua-opl-1.0_12.RULE b/src/licensedcode/data/rules/cua-opl-1.0_12.RULE index 6833379533d..86b2c536260 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_12.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/CUA-OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_12.yml b/src/licensedcode/data/rules/cua-opl-1.0_12.yml deleted file mode 100644 index 2ad447b08c8..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cua-opl-1.0_13.RULE b/src/licensedcode/data/rules/cua-opl-1.0_13.RULE index fa242ee0d7e..f1fa1b687a8 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_13.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CUA-OPL-1.0 +--- + LICENSE {{CUA-OPL-1.0}} https://spdx.org/licenses/CUA-OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_13.yml b/src/licensedcode/data/rules/cua-opl-1.0_13.yml deleted file mode 100644 index 0f958d18cba..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CUA-OPL-1.0 diff --git a/src/licensedcode/data/rules/cua-opl-1.0_14.RULE b/src/licensedcode/data/rules/cua-opl-1.0_14.RULE index f51e4d0eb42..dc3f04fffa0 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_14.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/CUA-OPL-1.0 +--- + {{CUA-OPL-1.0}} https://spdx.org/licenses/CUA-OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_14.yml b/src/licensedcode/data/rules/cua-opl-1.0_14.yml deleted file mode 100644 index 0f958d18cba..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/CUA-OPL-1.0 diff --git a/src/licensedcode/data/rules/cua-opl-1.0_2.RULE b/src/licensedcode/data/rules/cua-opl-1.0_2.RULE index 9dafecd3f03..fc4f4f965dd 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_2.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +--- + CUA Office Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_2.yml b/src/licensedcode/data/rules/cua-opl-1.0_2.yml deleted file mode 100644 index 2ad447b08c8..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cua-opl-1.0_3.RULE b/src/licensedcode/data/rules/cua-opl-1.0_3.RULE index 56238c18e28..1589b72fc97 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_3.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cua-opl-1.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://cuaoffice.sourceforge.net/ +--- + The contents of this file are subject to the CUA Office Public License Version 1.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://cuaoffice.sourceforge.net/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. diff --git a/src/licensedcode/data/rules/cua-opl-1.0_3.yml b/src/licensedcode/data/rules/cua-opl-1.0_3.yml deleted file mode 100644 index 1bc88bd905d..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://cuaoffice.sourceforge.net/ diff --git a/src/licensedcode/data/rules/cua-opl-1.0_4.RULE b/src/licensedcode/data/rules/cua-opl-1.0_4.RULE index 47ded790d2d..92d1df9eb49 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_4.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +--- + CUA Office Public License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_4.yml b/src/licensedcode/data/rules/cua-opl-1.0_4.yml deleted file mode 100644 index 2ad447b08c8..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cua-opl-1.0_5.RULE b/src/licensedcode/data/rules/cua-opl-1.0_5.RULE index f0b6af67fec..10e8dd11301 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_5.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: CUA Office Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_5.yml b/src/licensedcode/data/rules/cua-opl-1.0_5.yml deleted file mode 100644 index 2441dd00594..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cua-opl-1.0_6.RULE b/src/licensedcode/data/rules/cua-opl-1.0_6.RULE index a1ea4c13a34..aee704deb7e 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_6.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CUA-OPL-1.0 CUA Office Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_6.yml b/src/licensedcode/data/rules/cua-opl-1.0_6.yml deleted file mode 100644 index 2441dd00594..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cua-opl-1.0_7.RULE b/src/licensedcode/data/rules/cua-opl-1.0_7.RULE index d7dced75dcd..4ed4a7d20d4 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_7.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + CUA Office Public License v1.0 CUA-OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_7.yml b/src/licensedcode/data/rules/cua-opl-1.0_7.yml deleted file mode 100644 index 2441dd00594..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cua-opl-1.0_8.RULE b/src/licensedcode/data/rules/cua-opl-1.0_8.RULE index 714a585fc59..82843431e06 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_8.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: cua-opl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CUA-OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_8.yml b/src/licensedcode/data/rules/cua-opl-1.0_8.yml deleted file mode 100644 index 125f866be37..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cua-opl-1.0_9.RULE b/src/licensedcode/data/rules/cua-opl-1.0_9.RULE index 854ed6cbbce..bd9f224aa72 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_9.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: cua-opl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: CUA Office Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_9.yml b/src/licensedcode/data/rules/cua-opl-1.0_9.yml deleted file mode 100644 index 125f866be37..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cua-opl-1.0_url_1.RULE b/src/licensedcode/data/rules/cua-opl-1.0_url_1.RULE index 2d79d66e059..cd226ca308a 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cua-opl-1.0 +--- + https://spdx.org/licenses/cua-opl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_url_1.yml b/src/licensedcode/data/rules/cua-opl-1.0_url_1.yml deleted file mode 100644 index ed74367b298..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cua-opl-1.0 diff --git a/src/licensedcode/data/rules/cua-opl-1.0_url_2.RULE b/src/licensedcode/data/rules/cua-opl-1.0_url_2.RULE index ed02ffe6125..66a077914f0 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cua-opl-1.0.html +--- + https://spdx.org/licenses/cua-opl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_url_2.yml b/src/licensedcode/data/rules/cua-opl-1.0_url_2.yml deleted file mode 100644 index f022a0342c5..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cua-opl-1.0.html diff --git a/src/licensedcode/data/rules/cua-opl-1.0_url_glc_74.RULE b/src/licensedcode/data/rules/cua-opl-1.0_url_glc_74.RULE index b9b07a6fb9c..1068fc6d8d1 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_url_glc_74.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_url_glc_74.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/cua-opl-1.0 +--- + http://opensource.org/licenses/cua-opl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_url_glc_74.yml b/src/licensedcode/data/rules/cua-opl-1.0_url_glc_74.yml deleted file mode 100644 index df3a9e479b3..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_url_glc_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/cua-opl-1.0 diff --git a/src/licensedcode/data/rules/cua-opl-1.0_url_glc_75.RULE b/src/licensedcode/data/rules/cua-opl-1.0_url_glc_75.RULE index f54bfe46feb..bf9b309cd3d 100644 --- a/src/licensedcode/data/rules/cua-opl-1.0_url_glc_75.RULE +++ b/src/licensedcode/data/rules/cua-opl-1.0_url_glc_75.RULE @@ -1 +1,9 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/cua-opl-1.0 +--- + https://opensource.org/licenses/cua-opl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cua-opl-1.0_url_glc_75.yml b/src/licensedcode/data/rules/cua-opl-1.0_url_glc_75.yml deleted file mode 100644 index 77333794e07..00000000000 --- a/src/licensedcode/data/rules/cua-opl-1.0_url_glc_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/cua-opl-1.0 diff --git a/src/licensedcode/data/rules/cube_1.RULE b/src/licensedcode/data/rules/cube_1.RULE index 48093988b53..69087dd4c10 100644 --- a/src/licensedcode/data/rules/cube_1.RULE +++ b/src/licensedcode/data/rules/cube_1.RULE @@ -1 +1,10 @@ +--- +license_expression: cube +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Cube License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_1.yml b/src/licensedcode/data/rules/cube_1.yml deleted file mode 100644 index bf6f6eb712d..00000000000 --- a/src/licensedcode/data/rules/cube_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cube -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cube_10.RULE b/src/licensedcode/data/rules/cube_10.RULE index dd398795a62..905b78db3eb 100644 --- a/src/licensedcode/data/rules/cube_10.RULE +++ b/src/licensedcode/data/rules/cube_10.RULE @@ -1 +1,9 @@ +--- +license_expression: cube +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Cube +--- + {{Cube}} https://spdx.org/licenses/Cube \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_10.yml b/src/licensedcode/data/rules/cube_10.yml deleted file mode 100644 index 0fae9055748..00000000000 --- a/src/licensedcode/data/rules/cube_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cube -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Cube diff --git a/src/licensedcode/data/rules/cube_11.RULE b/src/licensedcode/data/rules/cube_11.RULE index d41c8f34cd4..6536fd71aa9 100644 --- a/src/licensedcode/data/rules/cube_11.RULE +++ b/src/licensedcode/data/rules/cube_11.RULE @@ -1 +1,9 @@ +--- +license_expression: cube +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Cube +--- + LICENSE {{Cube}} https://spdx.org/licenses/Cube \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_11.yml b/src/licensedcode/data/rules/cube_11.yml deleted file mode 100644 index 0fae9055748..00000000000 --- a/src/licensedcode/data/rules/cube_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cube -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Cube diff --git a/src/licensedcode/data/rules/cube_2.RULE b/src/licensedcode/data/rules/cube_2.RULE index 8da35e03b8b..e5f4469b287 100644 --- a/src/licensedcode/data/rules/cube_2.RULE +++ b/src/licensedcode/data/rules/cube_2.RULE @@ -1 +1,10 @@ +--- +license_expression: cube +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Cube License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_2.yml b/src/licensedcode/data/rules/cube_2.yml deleted file mode 100644 index bf6f6eb712d..00000000000 --- a/src/licensedcode/data/rules/cube_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cube -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cube_3.RULE b/src/licensedcode/data/rules/cube_3.RULE index 2b37b0e90be..4fb4ac746fb 100644 --- a/src/licensedcode/data/rules/cube_3.RULE +++ b/src/licensedcode/data/rules/cube_3.RULE @@ -1 +1,10 @@ +--- +license_expression: cube +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Cube Cube License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_3.yml b/src/licensedcode/data/rules/cube_3.yml deleted file mode 100644 index bf6f6eb712d..00000000000 --- a/src/licensedcode/data/rules/cube_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cube -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cube_4.RULE b/src/licensedcode/data/rules/cube_4.RULE index aa07c560081..9c5ebb764a4 100644 --- a/src/licensedcode/data/rules/cube_4.RULE +++ b/src/licensedcode/data/rules/cube_4.RULE @@ -1 +1,10 @@ +--- +license_expression: cube +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Cube License Cube \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_4.yml b/src/licensedcode/data/rules/cube_4.yml deleted file mode 100644 index bf6f6eb712d..00000000000 --- a/src/licensedcode/data/rules/cube_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cube -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cube_5.RULE b/src/licensedcode/data/rules/cube_5.RULE index 19c41cb2c81..a0e235693af 100644 --- a/src/licensedcode/data/rules/cube_5.RULE +++ b/src/licensedcode/data/rules/cube_5.RULE @@ -1 +1,10 @@ +--- +license_expression: cube +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Cube \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_5.yml b/src/licensedcode/data/rules/cube_5.yml deleted file mode 100644 index 19b5499922b..00000000000 --- a/src/licensedcode/data/rules/cube_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cube -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cube_6.RULE b/src/licensedcode/data/rules/cube_6.RULE index 15d477d6194..ab6c89c7475 100644 --- a/src/licensedcode/data/rules/cube_6.RULE +++ b/src/licensedcode/data/rules/cube_6.RULE @@ -1 +1,10 @@ +--- +license_expression: cube +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Cube License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_6.yml b/src/licensedcode/data/rules/cube_6.yml deleted file mode 100644 index 19b5499922b..00000000000 --- a/src/licensedcode/data/rules/cube_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cube -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cube_7.RULE b/src/licensedcode/data/rules/cube_7.RULE index 9a45a029712..96102132a04 100644 --- a/src/licensedcode/data/rules/cube_7.RULE +++ b/src/licensedcode/data/rules/cube_7.RULE @@ -1 +1,10 @@ +--- +license_expression: cube +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Cube \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_7.yml b/src/licensedcode/data/rules/cube_7.yml deleted file mode 100644 index 19b5499922b..00000000000 --- a/src/licensedcode/data/rules/cube_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cube -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/cube_8.RULE b/src/licensedcode/data/rules/cube_8.RULE index 5822e04125f..47866fc87af 100644 --- a/src/licensedcode/data/rules/cube_8.RULE +++ b/src/licensedcode/data/rules/cube_8.RULE @@ -1 +1,9 @@ +--- +license_expression: cube +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Cube +--- + https://licenses.nuget.org/Cube \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_8.yml b/src/licensedcode/data/rules/cube_8.yml deleted file mode 100644 index ecb093620fb..00000000000 --- a/src/licensedcode/data/rules/cube_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cube -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Cube diff --git a/src/licensedcode/data/rules/cube_9.RULE b/src/licensedcode/data/rules/cube_9.RULE index a8b5dad9714..038b8445d57 100644 --- a/src/licensedcode/data/rules/cube_9.RULE +++ b/src/licensedcode/data/rules/cube_9.RULE @@ -1 +1,7 @@ +--- +license_expression: cube +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Cube \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_9.yml b/src/licensedcode/data/rules/cube_9.yml deleted file mode 100644 index 58ab996dbaa..00000000000 --- a/src/licensedcode/data/rules/cube_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cube -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/cube_url_1.RULE b/src/licensedcode/data/rules/cube_url_1.RULE index 2eeccda97b6..aa7bbd3776c 100644 --- a/src/licensedcode/data/rules/cube_url_1.RULE +++ b/src/licensedcode/data/rules/cube_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cube +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cube +--- + https://spdx.org/licenses/cube \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_url_1.yml b/src/licensedcode/data/rules/cube_url_1.yml deleted file mode 100644 index 52d3cf167d3..00000000000 --- a/src/licensedcode/data/rules/cube_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cube -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cube diff --git a/src/licensedcode/data/rules/cube_url_2.RULE b/src/licensedcode/data/rules/cube_url_2.RULE index a8bf722b983..b1c79b51740 100644 --- a/src/licensedcode/data/rules/cube_url_2.RULE +++ b/src/licensedcode/data/rules/cube_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: cube +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/cube.html +--- + https://spdx.org/licenses/cube.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cube_url_2.yml b/src/licensedcode/data/rules/cube_url_2.yml deleted file mode 100644 index 1715eeeb209..00000000000 --- a/src/licensedcode/data/rules/cube_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cube -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/cube.html diff --git a/src/licensedcode/data/rules/cups_1.RULE b/src/licensedcode/data/rules/cups_1.RULE index 23047a63b94..43e5c51a0f5 100644 --- a/src/licensedcode/data/rules/cups_1.RULE +++ b/src/licensedcode/data/rules/cups_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cups +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE.txt +notes: newer versions are Apache-licensed +ignorable_urls: + - http://www.cups.org/ +--- + These coded instructions, statements, and computer programs are the property of Apple Inc. and are protected by Federal copyright law. Distribution and use rights are outlined in the file "LICENSE.txt" diff --git a/src/licensedcode/data/rules/cups_1.yml b/src/licensedcode/data/rules/cups_1.yml deleted file mode 100644 index b775369ec79..00000000000 --- a/src/licensedcode/data/rules/cups_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cups -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE.txt -notes: newer versions are Apache-licensed -ignorable_urls: - - http://www.cups.org/ diff --git a/src/licensedcode/data/rules/cups_2.RULE b/src/licensedcode/data/rules/cups_2.RULE index 6f7376489c9..d9c1496627b 100644 --- a/src/licensedcode/data/rules/cups_2.RULE +++ b/src/licensedcode/data/rules/cups_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cups +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE.txt +notes: newer versions are Apache-licensed +ignorable_urls: + - http://www.cups.org/ +--- + These coded instructions, statements, and computer programs are the property of Apple Inc. and are protected by Federal copyright law. Distribution and use rights are outlined in the file "LICENSE.txt" diff --git a/src/licensedcode/data/rules/cups_2.yml b/src/licensedcode/data/rules/cups_2.yml deleted file mode 100644 index b775369ec79..00000000000 --- a/src/licensedcode/data/rules/cups_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cups -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE.txt -notes: newer versions are Apache-licensed -ignorable_urls: - - http://www.cups.org/ diff --git a/src/licensedcode/data/rules/cups_3.RULE b/src/licensedcode/data/rules/cups_3.RULE index da3a6b064eb..2c023ecea92 100644 --- a/src/licensedcode/data/rules/cups_3.RULE +++ b/src/licensedcode/data/rules/cups_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: cups +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE.txt +notes: newer versions are Apache-licensed +ignorable_urls: + - http://www.cups.org/ +--- + These coded instructions, statements, and computer programs are the property of Apple Inc. and are protected by Federal copyright law. Distribution and use rights are outlined in the file "LICENSE.txt" diff --git a/src/licensedcode/data/rules/cups_3.yml b/src/licensedcode/data/rules/cups_3.yml deleted file mode 100644 index b775369ec79..00000000000 --- a/src/licensedcode/data/rules/cups_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: cups -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE.txt -notes: newer versions are Apache-licensed -ignorable_urls: - - http://www.cups.org/ diff --git a/src/licensedcode/data/rules/cups_4.RULE b/src/licensedcode/data/rules/cups_4.RULE index fa08e12011a..bf89dc43e6d 100644 --- a/src/licensedcode/data/rules/cups_4.RULE +++ b/src/licensedcode/data/rules/cups_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cups +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +notes: GPL-2.0 with AOSDL exception seen in CUPS also with LGPL +--- + This program 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, version 2 of the License. diff --git a/src/licensedcode/data/rules/cups_4.yml b/src/licensedcode/data/rules/cups_4.yml deleted file mode 100644 index 4ebc18f960e..00000000000 --- a/src/licensedcode/data/rules/cups_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cups -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -notes: GPL-2.0 with AOSDL exception seen in CUPS also with LGPL diff --git a/src/licensedcode/data/rules/cups_5.RULE b/src/licensedcode/data/rules/cups_5.RULE index d2eb4330a97..08218b6d46d 100644 --- a/src/licensedcode/data/rules/cups_5.RULE +++ b/src/licensedcode/data/rules/cups_5.RULE @@ -1,3 +1,18 @@ +--- +license_expression: cups +is_license_text: yes +ignorable_copyrights: + - Copyright 2007-2013 by Apple Inc. + - copyright 2006 by Jelmer Vernooij +ignorable_holders: + - Apple Inc. + - Jelmer Vernooij +ignorable_authors: + - Apple Inc. +ignorable_urls: + - http://www.cups.org/ +--- + CUPS License Agreement Copyright 2007-2013 by Apple Inc. diff --git a/src/licensedcode/data/rules/cups_5.yml b/src/licensedcode/data/rules/cups_5.yml deleted file mode 100644 index facf575d701..00000000000 --- a/src/licensedcode/data/rules/cups_5.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: cups -is_license_text: yes -ignorable_copyrights: - - Copyright 2007-2013 by Apple Inc. - - copyright 2006 by Jelmer Vernooij -ignorable_holders: - - Apple Inc. - - Jelmer Vernooij -ignorable_authors: - - Apple Inc. -ignorable_urls: - - http://www.cups.org/ diff --git a/src/licensedcode/data/rules/cups_6.RULE b/src/licensedcode/data/rules/cups_6.RULE index c60cd6d82ca..a644aa1ce86 100644 --- a/src/licensedcode/data/rules/cups_6.RULE +++ b/src/licensedcode/data/rules/cups_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cups +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +notes: GPL-2.0 with AOSDL exception seen in CUPS also with LGPL +--- + 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, version 2 of the License. diff --git a/src/licensedcode/data/rules/cups_6.yml b/src/licensedcode/data/rules/cups_6.yml deleted file mode 100644 index ae2ffd8bfff..00000000000 --- a/src/licensedcode/data/rules/cups_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cups -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -notes: GPL-2.0 with AOSDL exception seen in CUPS also with LGPL diff --git a/src/licensedcode/data/rules/curl.RULE b/src/licensedcode/data/rules/curl.RULE index 9b63ca8b70d..3141c5761b4 100644 --- a/src/licensedcode/data/rules/curl.RULE +++ b/src/licensedcode/data/rules/curl.RULE @@ -1,2 +1,9 @@ +--- +license_expression: curl +is_license_notice: yes +referenced_filenames: + - COPYING +--- + # This configure script may be copied, distributed and modified under the -# terms of the curl license; see COPYING for more details +# terms of the curl license; see COPYING for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl.yml b/src/licensedcode/data/rules/curl.yml deleted file mode 100644 index 8f4234a38e2..00000000000 --- a/src/licensedcode/data/rules/curl.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: curl -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/curl_1.RULE b/src/licensedcode/data/rules/curl_1.RULE index 6568801c82e..2c681aa316f 100644 --- a/src/licensedcode/data/rules/curl_1.RULE +++ b/src/licensedcode/data/rules/curl_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: curl +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + COPYRIGHT AND PERMISSION NOTICE Permission to use, copy, modify, and distribute this software for any purpose @@ -14,5 +21,4 @@ COPYRIGHT AND PERMISSION NOTICE Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings - in this Software without prior written authorization of the copyright holder. - + in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_1.yml b/src/licensedcode/data/rules/curl_1.yml deleted file mode 100644 index 48416a18c99..00000000000 --- a/src/licensedcode/data/rules/curl_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: curl -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/curl_10.RULE b/src/licensedcode/data/rules/curl_10.RULE index 9fc36db7a7a..86b8ed238a6 100644 --- a/src/licensedcode/data/rules/curl_10.RULE +++ b/src/licensedcode/data/rules/curl_10.RULE @@ -1 +1,10 @@ +--- +license_expression: curl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: curl License \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_10.yml b/src/licensedcode/data/rules/curl_10.yml deleted file mode 100644 index b5e76f5a810..00000000000 --- a/src/licensedcode/data/rules/curl_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: curl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/curl_11.RULE b/src/licensedcode/data/rules/curl_11.RULE index 33b9ba3b0ad..6ba37719c90 100644 --- a/src/licensedcode/data/rules/curl_11.RULE +++ b/src/licensedcode/data/rules/curl_11.RULE @@ -1 +1,10 @@ +--- +license_expression: curl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + curl curl License \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_11.yml b/src/licensedcode/data/rules/curl_11.yml deleted file mode 100644 index b5e76f5a810..00000000000 --- a/src/licensedcode/data/rules/curl_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: curl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/curl_12.RULE b/src/licensedcode/data/rules/curl_12.RULE index dc94fea0ca5..0f52ba2f94d 100644 --- a/src/licensedcode/data/rules/curl_12.RULE +++ b/src/licensedcode/data/rules/curl_12.RULE @@ -1 +1,10 @@ +--- +license_expression: curl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + curl License curl \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_12.yml b/src/licensedcode/data/rules/curl_12.yml deleted file mode 100644 index b5e76f5a810..00000000000 --- a/src/licensedcode/data/rules/curl_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: curl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/curl_13.RULE b/src/licensedcode/data/rules/curl_13.RULE index 2f2513c22af..6abc31c33aa 100644 --- a/src/licensedcode/data/rules/curl_13.RULE +++ b/src/licensedcode/data/rules/curl_13.RULE @@ -1 +1,10 @@ +--- +license_expression: curl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: curl License \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_13.yml b/src/licensedcode/data/rules/curl_13.yml deleted file mode 100644 index d80fedfcb48..00000000000 --- a/src/licensedcode/data/rules/curl_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: curl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/curl_14.RULE b/src/licensedcode/data/rules/curl_14.RULE index 26af9627a85..050127a3b04 100644 --- a/src/licensedcode/data/rules/curl_14.RULE +++ b/src/licensedcode/data/rules/curl_14.RULE @@ -1 +1,10 @@ +--- +license_expression: curl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: curl \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_14.yml b/src/licensedcode/data/rules/curl_14.yml deleted file mode 100644 index d80fedfcb48..00000000000 --- a/src/licensedcode/data/rules/curl_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: curl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/curl_15.RULE b/src/licensedcode/data/rules/curl_15.RULE index 7df9fe899b8..c93c52cf39b 100644 --- a/src/licensedcode/data/rules/curl_15.RULE +++ b/src/licensedcode/data/rules/curl_15.RULE @@ -1 +1,9 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/curl +--- + https://licenses.nuget.org/curl \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_15.yml b/src/licensedcode/data/rules/curl_15.yml deleted file mode 100644 index 5745411aecc..00000000000 --- a/src/licensedcode/data/rules/curl_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/curl diff --git a/src/licensedcode/data/rules/curl_16.RULE b/src/licensedcode/data/rules/curl_16.RULE index fde29690c45..71d23ce7730 100644 --- a/src/licensedcode/data/rules/curl_16.RULE +++ b/src/licensedcode/data/rules/curl_16.RULE @@ -1 +1,7 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/curl \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_16.yml b/src/licensedcode/data/rules/curl_16.yml deleted file mode 100644 index 4814493cab7..00000000000 --- a/src/licensedcode/data/rules/curl_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/curl_17.RULE b/src/licensedcode/data/rules/curl_17.RULE index c010431b6f2..8ae9ac66937 100644 --- a/src/licensedcode/data/rules/curl_17.RULE +++ b/src/licensedcode/data/rules/curl_17.RULE @@ -1 +1,9 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/curl +--- + LICENSE {{curl}} https://spdx.org/licenses/curl \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_17.yml b/src/licensedcode/data/rules/curl_17.yml deleted file mode 100644 index 9d983c789df..00000000000 --- a/src/licensedcode/data/rules/curl_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/curl diff --git a/src/licensedcode/data/rules/curl_18.RULE b/src/licensedcode/data/rules/curl_18.RULE index b7bb4b368da..161fb3039c7 100644 --- a/src/licensedcode/data/rules/curl_18.RULE +++ b/src/licensedcode/data/rules/curl_18.RULE @@ -1 +1,9 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/curl +--- + {{curl}} https://spdx.org/licenses/curl \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_18.yml b/src/licensedcode/data/rules/curl_18.yml deleted file mode 100644 index 9d983c789df..00000000000 --- a/src/licensedcode/data/rules/curl_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/curl diff --git a/src/licensedcode/data/rules/curl_2.RULE b/src/licensedcode/data/rules/curl_2.RULE index 80259dfc85c..5149e3d01a4 100644 --- a/src/licensedcode/data/rules/curl_2.RULE +++ b/src/licensedcode/data/rules/curl_2.RULE @@ -1 +1,10 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 100 +notes: http://www.focuseek.com/manuals/License/curl-license.html +ignorable_urls: + - http://www.focuseek.com/manuals/License/curl-license.html +--- + http://www.focuseek.com/manuals/License/curl-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_2.yml b/src/licensedcode/data/rules/curl_2.yml deleted file mode 100644 index 3f988f8eb33..00000000000 --- a/src/licensedcode/data/rules/curl_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 100 -notes: http://www.focuseek.com/manuals/License/curl-license.html -ignorable_urls: - - http://www.focuseek.com/manuals/License/curl-license.html diff --git a/src/licensedcode/data/rules/curl_3.RULE b/src/licensedcode/data/rules/curl_3.RULE index 0b2ee17cfb2..d4c0d02fd6e 100644 --- a/src/licensedcode/data/rules/curl_3.RULE +++ b/src/licensedcode/data/rules/curl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://curl.haxx.se/legal/licmix.html +--- + http://curl.haxx.se/legal/licmix.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_3.yml b/src/licensedcode/data/rules/curl_3.yml deleted file mode 100644 index 76a2583394a..00000000000 --- a/src/licensedcode/data/rules/curl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://curl.haxx.se/legal/licmix.html diff --git a/src/licensedcode/data/rules/curl_4.RULE b/src/licensedcode/data/rules/curl_4.RULE index d404b736d76..d7876fd4516 100644 --- a/src/licensedcode/data/rules/curl_4.RULE +++ b/src/licensedcode/data/rules/curl_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: curl +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://curl.haxx.se/docs/copyright.html +--- + .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * are also available at http://curl.haxx.se/docs/copyright.html. @@ -7,4 +16,4 @@ .\" * furnished to do so, under the terms of the COPYING file. .\" * .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY -.\" * KIND, either express or implied. +.\" * KIND, either express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_4.yml b/src/licensedcode/data/rules/curl_4.yml deleted file mode 100644 index deee90b93ed..00000000000 --- a/src/licensedcode/data/rules/curl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: curl -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://curl.haxx.se/docs/copyright.html diff --git a/src/licensedcode/data/rules/curl_5.RULE b/src/licensedcode/data/rules/curl_5.RULE index 59b9ed27a08..077670dc6ad 100644 --- a/src/licensedcode/data/rules/curl_5.RULE +++ b/src/licensedcode/data/rules/curl_5.RULE @@ -1 +1,9 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://curl.haxx.se/docs/copyright.html +--- + http://curl.haxx.se/docs/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_5.yml b/src/licensedcode/data/rules/curl_5.yml deleted file mode 100644 index 6f8ac75f317..00000000000 --- a/src/licensedcode/data/rules/curl_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://curl.haxx.se/docs/copyright.html diff --git a/src/licensedcode/data/rules/curl_6.RULE b/src/licensedcode/data/rules/curl_6.RULE index 2f440e7c03f..d30dff8d964 100644 --- a/src/licensedcode/data/rules/curl_6.RULE +++ b/src/licensedcode/data/rules/curl_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: curl +is_license_text: yes +minimum_coverage: 15 +notes: variants with minor words differences +--- + COPYRIGHT AND PERMISSION NOTICE Permission to use, copy, modify, and distribute this software for any purpose @@ -14,4 +21,4 @@ OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written permission of the copyright holder. +in this Software without prior written permission of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_6.yml b/src/licensedcode/data/rules/curl_6.yml deleted file mode 100644 index 572bda0d783..00000000000 --- a/src/licensedcode/data/rules/curl_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: curl -is_license_text: yes -minimum_coverage: 15 -notes: variants with minor words differences diff --git a/src/licensedcode/data/rules/curl_7.RULE b/src/licensedcode/data/rules/curl_7.RULE index 0a55b2c2910..21f178b91f0 100644 --- a/src/licensedcode/data/rules/curl_7.RULE +++ b/src/licensedcode/data/rules/curl_7.RULE @@ -1 +1,7 @@ +--- +license_expression: curl +is_license_tag: yes +relevance: 100 +--- + License: curl \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_7.yml b/src/licensedcode/data/rules/curl_7.yml deleted file mode 100644 index 6385bedf9ef..00000000000 --- a/src/licensedcode/data/rules/curl_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: curl -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/curl_8.RULE b/src/licensedcode/data/rules/curl_8.RULE index 73e92fddd70..f9b174afdd4 100644 --- a/src/licensedcode/data/rules/curl_8.RULE +++ b/src/licensedcode/data/rules/curl_8.RULE @@ -1 +1,7 @@ +--- +license_expression: curl +is_license_notice: yes +relevance: 100 +--- + licensed as described in curl . \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_8.yml b/src/licensedcode/data/rules/curl_8.yml deleted file mode 100644 index f697472bfed..00000000000 --- a/src/licensedcode/data/rules/curl_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: curl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/curl_9.RULE b/src/licensedcode/data/rules/curl_9.RULE index c01d67af164..197324f31d4 100644 --- a/src/licensedcode/data/rules/curl_9.RULE +++ b/src/licensedcode/data/rules/curl_9.RULE @@ -1 +1,10 @@ +--- +license_expression: curl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + curl License \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_9.yml b/src/licensedcode/data/rules/curl_9.yml deleted file mode 100644 index b5e76f5a810..00000000000 --- a/src/licensedcode/data/rules/curl_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: curl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/curl_url_1.RULE b/src/licensedcode/data/rules/curl_url_1.RULE index 70349596374..73176a70ee0 100644 --- a/src/licensedcode/data/rules/curl_url_1.RULE +++ b/src/licensedcode/data/rules/curl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/curl +--- + https://spdx.org/licenses/curl \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_url_1.yml b/src/licensedcode/data/rules/curl_url_1.yml deleted file mode 100644 index 2b25ade1c90..00000000000 --- a/src/licensedcode/data/rules/curl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/curl diff --git a/src/licensedcode/data/rules/curl_url_2.RULE b/src/licensedcode/data/rules/curl_url_2.RULE index dd627e03779..6777314447c 100644 --- a/src/licensedcode/data/rules/curl_url_2.RULE +++ b/src/licensedcode/data/rules/curl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: curl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/curl.html +--- + https://spdx.org/licenses/curl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/curl_url_2.yml b/src/licensedcode/data/rules/curl_url_2.yml deleted file mode 100644 index e06906476c7..00000000000 --- a/src/licensedcode/data/rules/curl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: curl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/curl.html diff --git a/src/licensedcode/data/rules/cve-tou_1.RULE b/src/licensedcode/data/rules/cve-tou_1.RULE index b6d148f7821..4ecab2947aa 100644 --- a/src/licensedcode/data/rules/cve-tou_1.RULE +++ b/src/licensedcode/data/rules/cve-tou_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cve-tou +is_license_text: yes +relevance: 99 +notes: Seen in Vulncode-DB +--- + Vulncode-DB hereby grants 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 diff --git a/src/licensedcode/data/rules/cve-tou_1.yml b/src/licensedcode/data/rules/cve-tou_1.yml deleted file mode 100644 index 8883f62595b..00000000000 --- a/src/licensedcode/data/rules/cve-tou_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cve-tou -is_license_text: yes -relevance: 99 -notes: Seen in Vulncode-DB diff --git a/src/licensedcode/data/rules/cve-tou_2.RULE b/src/licensedcode/data/rules/cve-tou_2.RULE index 513415c9edf..0cdc18d864d 100644 --- a/src/licensedcode/data/rules/cve-tou_2.RULE +++ b/src/licensedcode/data/rules/cve-tou_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cve-tou +is_license_text: yes +relevance: 99 +notes: Seen in Vulncode-DB +--- + hereby grants 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 diff --git a/src/licensedcode/data/rules/cve-tou_2.yml b/src/licensedcode/data/rules/cve-tou_2.yml deleted file mode 100644 index 8883f62595b..00000000000 --- a/src/licensedcode/data/rules/cve-tou_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cve-tou -is_license_text: yes -relevance: 99 -notes: Seen in Vulncode-DB diff --git a/src/licensedcode/data/rules/cve-tou_3.RULE b/src/licensedcode/data/rules/cve-tou_3.RULE index 099593db513..62a23dfe926 100644 --- a/src/licensedcode/data/rules/cve-tou_3.RULE +++ b/src/licensedcode/data/rules/cve-tou_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: cve-tou +is_license_notice: yes +relevance: 100 +notes: short form +--- + CVE Usage: MITRE hereby grants 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 diff --git a/src/licensedcode/data/rules/cve-tou_3.yml b/src/licensedcode/data/rules/cve-tou_3.yml deleted file mode 100644 index 868ab38a556..00000000000 --- a/src/licensedcode/data/rules/cve-tou_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: cve-tou -is_license_notice: yes -relevance: 100 -notes: short form diff --git a/src/licensedcode/data/rules/cvwl_1.RULE b/src/licensedcode/data/rules/cvwl_1.RULE index 95f7d892671..35f475da194 100644 --- a/src/licensedcode/data/rules/cvwl_1.RULE +++ b/src/licensedcode/data/rules/cvwl_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: cvwl +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) The MITRE Corporation +ignorable_holders: + - The MITRE Corporation +ignorable_urls: + - http://www.mitre.org/ +ignorable_emails: + - corpc@mitre.org +--- + Collaborative Virtual Workspace License (CVW) License Agreement diff --git a/src/licensedcode/data/rules/cvwl_1.yml b/src/licensedcode/data/rules/cvwl_1.yml deleted file mode 100644 index 846e12c6066..00000000000 --- a/src/licensedcode/data/rules/cvwl_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: cvwl -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) The MITRE Corporation -ignorable_holders: - - The MITRE Corporation -ignorable_urls: - - http://www.mitre.org/ -ignorable_emails: - - corpc@mitre.org diff --git a/src/licensedcode/data/rules/cygwin-exception-2.0_1.RULE b/src/licensedcode/data/rules/cygwin-exception-2.0_1.RULE index 84791604577..f588e2ba796 100644 --- a/src/licensedcode/data/rules/cygwin-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/cygwin-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH cygwin-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/docs/osd/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) version 2, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/cygwin-exception-2.0_1.yml b/src/licensedcode/data/rules/cygwin-exception-2.0_1.yml deleted file mode 100644 index 9462c7216f1..00000000000 --- a/src/licensedcode/data/rules/cygwin-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH cygwin-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/docs/osd/ diff --git a/src/licensedcode/data/rules/cygwin-exception-2.0_2.RULE b/src/licensedcode/data/rules/cygwin-exception-2.0_2.RULE index 5a3118ef4e6..191595d3bdd 100644 --- a/src/licensedcode/data/rules/cygwin-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/cygwin-exception-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH cygwin-exception-2.0 OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/docs/osd/ + - http://www.redhat.com/about/contact/ww/ + - http://www.redhat.com/software/cygwin +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) version 2, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/cygwin-exception-2.0_2.yml b/src/licensedcode/data/rules/cygwin-exception-2.0_2.yml deleted file mode 100644 index 7e5b4c92290..00000000000 --- a/src/licensedcode/data/rules/cygwin-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH cygwin-exception-2.0 OR commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/docs/osd/ - - http://www.redhat.com/about/contact/ww/ - - http://www.redhat.com/software/cygwin diff --git a/src/licensedcode/data/rules/cygwin-exception-2.0_3.RULE b/src/licensedcode/data/rules/cygwin-exception-2.0_3.RULE index 02fa6df9c59..56d514b3299 100644 --- a/src/licensedcode/data/rules/cygwin-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/cygwin-exception-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: cygwin-exception-2.0 +is_license_notice: yes +relevance: 95 +ignorable_urls: + - http://www.opensource.org/docs/osd/ +--- + 1. Linking Exception. As a special exception to GPLv2, Red Hat grants you permission to link diff --git a/src/licensedcode/data/rules/cygwin-exception-2.0_3.yml b/src/licensedcode/data/rules/cygwin-exception-2.0_3.yml deleted file mode 100644 index ed2090c643c..00000000000 --- a/src/licensedcode/data/rules/cygwin-exception-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cygwin-exception-2.0 -is_license_notice: yes -relevance: 95 -ignorable_urls: - - http://www.opensource.org/docs/osd/ diff --git a/src/licensedcode/data/rules/cygwin-exception-lgpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/cygwin-exception-lgpl-3.0-plus_1.RULE index 512d8b1332c..4316995a660 100644 --- a/src/licensedcode/data/rules/cygwin-exception-lgpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/cygwin-exception-lgpl-3.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0-plus WITH cygwin-exception-lgpl-3.0-plus +is_license_notice: yes +--- + The Cygwin API library found in the winsup subdirectory of the source code is covered by the GNU Lesser General Public License (LGPL) version 3 or later. For details of the requirements of LGPLv3, please read the GNU @@ -8,4 +13,4 @@ independent modules to produce an executable, and to convey the resulting executable under terms of your choice, without any need to comply with the conditions of LGPLv3 section 4. An independent module is a module which is - not itself based on the Cygwin library. + not itself based on the Cygwin library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cygwin-exception-lgpl-3.0-plus_1.yml b/src/licensedcode/data/rules/cygwin-exception-lgpl-3.0-plus_1.yml deleted file mode 100644 index 3e0d0bcd212..00000000000 --- a/src/licensedcode/data/rules/cygwin-exception-lgpl-3.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus WITH cygwin-exception-lgpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_1.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_1.RULE index 49090afbb08..0995fdb58ae 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_1.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_1.RULE @@ -1 +1,9 @@ +--- +license_expression: d-fsl-1.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/D-FSL-1.0 +--- + https://licenses.nuget.org/D-FSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_1.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_1.yml deleted file mode 100644 index df6615a1b82..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: d-fsl-1.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/D-FSL-1.0 diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_10.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_10.RULE index e8caa6ee631..8f0b07b86ca 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_10.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_10.RULE @@ -1 +1,11 @@ -{{D-FSL-1.0 Deutsche Freie Software Lizenz}} +--- +license_expression: d-fsl-1.0-en +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +relevance: 95 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + +{{D-FSL-1.0 Deutsche Freie Software Lizenz}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_10.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_10.yml deleted file mode 100644 index 9beb85ae2c8..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: d-fsl-1.0-en -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 -relevance: 95 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_11.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_11.RULE index a8c25b99e1e..c8278bc099f 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_11.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_11.RULE @@ -1 +1,11 @@ -{{Deutsche Freie Software Lizenz D-FSL-1.0}} +--- +license_expression: d-fsl-1.0-en +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +relevance: 95 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + +{{Deutsche Freie Software Lizenz D-FSL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_11.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_11.yml deleted file mode 100644 index 9beb85ae2c8..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: d-fsl-1.0-en -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 -relevance: 95 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_12.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_12.RULE index 6ab29b50f27..152d056d5ea 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_12.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_12.RULE @@ -1 +1,11 @@ -{{license : D-FSL-1.0}} +--- +license_expression: d-fsl-1.0-en +is_license_tag: yes +is_continuous: yes +minimum_coverage: 100 +relevance: 95 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + +{{license : D-FSL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_12.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_12.yml deleted file mode 100644 index 9cc0d90bee0..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: d-fsl-1.0-en -is_license_tag: yes -is_continuous: yes -minimum_coverage: 100 -relevance: 95 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_13.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_13.RULE index 8e8143c9427..ab3d74ced6e 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_13.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_13.RULE @@ -1 +1,11 @@ -{{licenseid : D-FSL-1.0}} +--- +license_expression: d-fsl-1.0-en +is_license_tag: yes +is_continuous: yes +minimum_coverage: 100 +relevance: 95 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + +{{licenseid : D-FSL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_13.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_13.yml deleted file mode 100644 index 7eda716ef81..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_13.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: d-fsl-1.0-en -is_license_tag: yes -is_continuous: yes -minimum_coverage: 100 -relevance: 95 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_14.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_14.RULE index da111092f39..4cbf42b3651 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_14.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_14.RULE @@ -1 +1,11 @@ -{{D-FSL-1.0}} +--- +license_expression: d-fsl-1.0-en +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +relevance: 95 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + +{{D-FSL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_14.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_14.yml deleted file mode 100644 index 9beb85ae2c8..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: d-fsl-1.0-en -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 -relevance: 95 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_2.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_2.RULE index 88406ed41e6..86744e1b567 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_2.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_2.RULE @@ -1 +1,7 @@ +--- +license_expression: d-fsl-1.0-de +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/D-FSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_2.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_2.yml deleted file mode 100644 index 87e6fb8cbd1..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: d-fsl-1.0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_3.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_3.RULE index 842de233a19..3f0ed49a65c 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_3.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_3.RULE @@ -1 +1,9 @@ +--- +license_expression: d-fsl-1.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/D-FSL-1.0 +--- + {{D-FSL-1.0}} https://spdx.org/licenses/D-FSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_3.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_3.yml deleted file mode 100644 index ea4d22929f1..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: d-fsl-1.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/D-FSL-1.0 diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_4.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_4.RULE index 197e60d134f..220e0709f11 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_4.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_4.RULE @@ -1 +1,9 @@ +--- +license_expression: d-fsl-1.0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/D-FSL-1.0 +--- + LICENSE {{D-FSL-1.0}} https://spdx.org/licenses/D-FSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_4.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_4.yml deleted file mode 100644 index ea4d22929f1..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: d-fsl-1.0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/D-FSL-1.0 diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_url_1.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_url_1.RULE index 8ad6ea8d76b..e767164070b 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_url_1.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_url_1.RULE @@ -1 +1,11 @@ +--- +license_expression: d-fsl-1.0-en +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/d-fsl-1.0 +--- + {{https://spdx.org/licenses/d-fsl-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_url_1.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_url_1.yml deleted file mode 100644 index f27bc5f36e5..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_url_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: d-fsl-1.0-en -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/d-fsl-1.0 diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_url_2.RULE b/src/licensedcode/data/rules/d-fsl-1.0-de_url_2.RULE index 954c995f6a8..e2fcff102e3 100644 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_url_2.RULE +++ b/src/licensedcode/data/rules/d-fsl-1.0-de_url_2.RULE @@ -1 +1,11 @@ +--- +license_expression: d-fsl-1.0-en +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/d-fsl-1.0.html +--- + {{https://spdx.org/licenses/d-fsl-1.0.html}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-fsl-1.0-de_url_2.yml b/src/licensedcode/data/rules/d-fsl-1.0-de_url_2.yml deleted file mode 100644 index f92d211088c..00000000000 --- a/src/licensedcode/data/rules/d-fsl-1.0-de_url_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: d-fsl-1.0-en -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/d-fsl-1.0.html diff --git a/src/licensedcode/data/rules/d-zlib.RULE b/src/licensedcode/data/rules/d-zlib.RULE index 3ebe1804b0f..8cbddc9da59 100644 --- a/src/licensedcode/data/rules/d-zlib.RULE +++ b/src/licensedcode/data/rules/d-zlib.RULE @@ -1,3 +1,9 @@ +--- +license_expression: d-zlib +is_license_text: yes +minimum_coverage: 60 +--- + * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. @@ -14,4 +20,4 @@ * Altered source versions must be plainly marked as such, and must not * be misrepresented as being the original software. * This notice may not be removed or altered from any source - * distribution. + * distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/d-zlib.yml b/src/licensedcode/data/rules/d-zlib.yml deleted file mode 100644 index b91e4c066af..00000000000 --- a/src/licensedcode/data/rules/d-zlib.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: d-zlib -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/damail.RULE b/src/licensedcode/data/rules/damail.RULE index fcc192903a0..5bcdac50b98 100644 --- a/src/licensedcode/data/rules/damail.RULE +++ b/src/licensedcode/data/rules/damail.RULE @@ -1 +1,7 @@ +--- +license_expression: damail +is_license_notice: yes +notes: damail variant +--- + Copying and distribution of this file, with or without modification, are permitted in any medium provided you do not contact the author about the file or any problems you are having with the file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/damail.yml b/src/licensedcode/data/rules/damail.yml deleted file mode 100644 index 667eddbf9d5..00000000000 --- a/src/licensedcode/data/rules/damail.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: damail -is_license_notice: yes -notes: damail variant diff --git a/src/licensedcode/data/rules/day-spec.RULE b/src/licensedcode/data/rules/day-spec.RULE index 94b0ee9b97a..e2b0a4c4909 100644 --- a/src/licensedcode/data/rules/day-spec.RULE +++ b/src/licensedcode/data/rules/day-spec.RULE @@ -1,3 +1,9 @@ +--- +license_expression: day-spec +is_license_notice: yes +minimum_coverage: 70 +--- + 1. License for Purposes of Evaluation and Developing Applications. Licensor hereby grants you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under diff --git a/src/licensedcode/data/rules/day-spec.yml b/src/licensedcode/data/rules/day-spec.yml deleted file mode 100644 index 2af35309cf4..00000000000 --- a/src/licensedcode/data/rules/day-spec.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: day-spec -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/dbcl-1.0_1.RULE b/src/licensedcode/data/rules/dbcl-1.0_1.RULE index 5c56394a3b2..769ed75845a 100644 --- a/src/licensedcode/data/rules/dbcl-1.0_1.RULE +++ b/src/licensedcode/data/rules/dbcl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: dbcl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/dbcl/1.0/ +--- + Any rights in individual contents of the database are licensed under the Database Contents License: http://opendatacommons.org/licenses/dbcl/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/dbcl-1.0_1.yml b/src/licensedcode/data/rules/dbcl-1.0_1.yml deleted file mode 100644 index f46c63fbe30..00000000000 --- a/src/licensedcode/data/rules/dbcl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dbcl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/dbcl/1.0/ diff --git a/src/licensedcode/data/rules/dbcl-1.0_2.RULE b/src/licensedcode/data/rules/dbcl-1.0_2.RULE index 20784274d83..f949b247ce6 100644 --- a/src/licensedcode/data/rules/dbcl-1.0_2.RULE +++ b/src/licensedcode/data/rules/dbcl-1.0_2.RULE @@ -1 +1,7 @@ -Any rights in individual contents of the database are licensed under the Database Contents License: +--- +license_expression: dbcl-1.0 +is_license_notice: yes +relevance: 100 +--- + +Any rights in individual contents of the database are licensed under the Database Contents License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/dbcl-1.0_2.yml b/src/licensedcode/data/rules/dbcl-1.0_2.yml deleted file mode 100644 index cf58337888d..00000000000 --- a/src/licensedcode/data/rules/dbcl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dbcl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dbcl-1.0_3.RULE b/src/licensedcode/data/rules/dbcl-1.0_3.RULE index 8c09e966dbd..11724005d78 100644 --- a/src/licensedcode/data/rules/dbcl-1.0_3.RULE +++ b/src/licensedcode/data/rules/dbcl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: dbcl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opendatacommons.org/licenses/dbcl/1.0/ +--- + Any rights in individual contents of the database are licensed under the Database Contents License: https://opendatacommons.org/licenses/dbcl/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/dbcl-1.0_3.yml b/src/licensedcode/data/rules/dbcl-1.0_3.yml deleted file mode 100644 index ad3882a0cec..00000000000 --- a/src/licensedcode/data/rules/dbcl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dbcl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opendatacommons.org/licenses/dbcl/1.0/ diff --git a/src/licensedcode/data/rules/dbcl-1.0_4.RULE b/src/licensedcode/data/rules/dbcl-1.0_4.RULE index 4bbef3042ea..b09a071f861 100644 --- a/src/licensedcode/data/rules/dbcl-1.0_4.RULE +++ b/src/licensedcode/data/rules/dbcl-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: dbcl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opendatacommons.org/licenses/dbcl/1.0/ +--- + https://opendatacommons.org/licenses/dbcl/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/dbcl-1.0_4.yml b/src/licensedcode/data/rules/dbcl-1.0_4.yml deleted file mode 100644 index 7cb40939aed..00000000000 --- a/src/licensedcode/data/rules/dbcl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dbcl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opendatacommons.org/licenses/dbcl/1.0/ diff --git a/src/licensedcode/data/rules/dbcl-1.0_5.RULE b/src/licensedcode/data/rules/dbcl-1.0_5.RULE index 6802474209d..ba7d4d3c97f 100644 --- a/src/licensedcode/data/rules/dbcl-1.0_5.RULE +++ b/src/licensedcode/data/rules/dbcl-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: dbcl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/dbcl/1.0/ +--- + http://opendatacommons.org/licenses/dbcl/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/dbcl-1.0_5.yml b/src/licensedcode/data/rules/dbcl-1.0_5.yml deleted file mode 100644 index bcbafe96db3..00000000000 --- a/src/licensedcode/data/rules/dbcl-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dbcl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/dbcl/1.0/ diff --git a/src/licensedcode/data/rules/dbcl-1.0_6.RULE b/src/licensedcode/data/rules/dbcl-1.0_6.RULE index 91d092b985d..11c57c8fcaa 100644 --- a/src/licensedcode/data/rules/dbcl-1.0_6.RULE +++ b/src/licensedcode/data/rules/dbcl-1.0_6.RULE @@ -1 +1,9 @@ -Any rights in individual contents of the database are licensed under the Database Contents License whose text can be found http://opendatacommons.org/licenses/dbcl/ +--- +license_expression: dbcl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/dbcl/ +--- + +Any rights in individual contents of the database are licensed under the Database Contents License whose text can be found http://opendatacommons.org/licenses/dbcl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/dbcl-1.0_6.yml b/src/licensedcode/data/rules/dbcl-1.0_6.yml deleted file mode 100644 index 0464731a993..00000000000 --- a/src/licensedcode/data/rules/dbcl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dbcl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/dbcl/ diff --git a/src/licensedcode/data/rules/dco-1.1_1.RULE b/src/licensedcode/data/rules/dco-1.1_1.RULE index 4798c378113..27ea504d43d 100644 --- a/src/licensedcode/data/rules/dco-1.1_1.RULE +++ b/src/licensedcode/data/rules/dco-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: dco-1.1 +is_license_reference: yes +relevance: 100 +--- + Developer Certificate of Origin (DCO) version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_1.yml b/src/licensedcode/data/rules/dco-1.1_1.yml deleted file mode 100644 index 44a395ff390..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dco-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dco-1.1_10.RULE b/src/licensedcode/data/rules/dco-1.1_10.RULE index aecb882f40c..9ee95d1dd79 100644 --- a/src/licensedcode/data/rules/dco-1.1_10.RULE +++ b/src/licensedcode/data/rules/dco-1.1_10.RULE @@ -1 +1,7 @@ +--- +license_expression: dco-1.1 +is_license_reference: yes +relevance: 100 +--- + Developer Certificate of Origin Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_10.yml b/src/licensedcode/data/rules/dco-1.1_10.yml deleted file mode 100644 index 44a395ff390..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dco-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dco-1.1_11.RULE b/src/licensedcode/data/rules/dco-1.1_11.RULE index 3aca339def1..f1d87cd5986 100644 --- a/src/licensedcode/data/rules/dco-1.1_11.RULE +++ b/src/licensedcode/data/rules/dco-1.1_11.RULE @@ -1,3 +1,13 @@ +--- +license_expression: dco-1.1 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2004, 2006 The Linux Foundation and its contributors +ignorable_holders: + - The Linux Foundation and its contributors +--- + Developer Certificate of Origin Version 1.1 diff --git a/src/licensedcode/data/rules/dco-1.1_11.yml b/src/licensedcode/data/rules/dco-1.1_11.yml deleted file mode 100644 index 22439d6ef9a..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: dco-1.1 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2004, 2006 The Linux Foundation and its contributors -ignorable_holders: - - The Linux Foundation and its contributors diff --git a/src/licensedcode/data/rules/dco-1.1_12.RULE b/src/licensedcode/data/rules/dco-1.1_12.RULE index e5988eb5fd2..c2b40a4aadd 100644 --- a/src/licensedcode/data/rules/dco-1.1_12.RULE +++ b/src/licensedcode/data/rules/dco-1.1_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: dco-1.1 +is_license_text: yes +relevance: 100 +--- + Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff --git a/src/licensedcode/data/rules/dco-1.1_12.yml b/src/licensedcode/data/rules/dco-1.1_12.yml deleted file mode 100644 index c37664c41a5..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dco-1.1 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dco-1.1_13.RULE b/src/licensedcode/data/rules/dco-1.1_13.RULE index 599279e1d51..a424bf412b4 100644 --- a/src/licensedcode/data/rules/dco-1.1_13.RULE +++ b/src/licensedcode/data/rules/dco-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: dco-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://developercertificate.org/ +--- + developercertificate.org](http://developercertificate.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_13.yml b/src/licensedcode/data/rules/dco-1.1_13.yml deleted file mode 100644 index adfe4607b9f..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dco-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://developercertificate.org/ diff --git a/src/licensedcode/data/rules/dco-1.1_14.RULE b/src/licensedcode/data/rules/dco-1.1_14.RULE index 5c63509e734..91a6754407f 100644 --- a/src/licensedcode/data/rules/dco-1.1_14.RULE +++ b/src/licensedcode/data/rules/dco-1.1_14.RULE @@ -1 +1,7 @@ +--- +license_expression: dco-1.1 +is_license_reference: yes +relevance: 100 +--- + developercertificate.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_14.yml b/src/licensedcode/data/rules/dco-1.1_14.yml deleted file mode 100644 index 44a395ff390..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dco-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dco-1.1_15.RULE b/src/licensedcode/data/rules/dco-1.1_15.RULE index e0e079339e9..39014339683 100644 --- a/src/licensedcode/data/rules/dco-1.1_15.RULE +++ b/src/licensedcode/data/rules/dco-1.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: dco-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - DCO1.1.txt +--- + Contribution to this project requires the [DCO 1.1](./DCO1.1.txt) process to be followed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_15.yml b/src/licensedcode/data/rules/dco-1.1_15.yml deleted file mode 100644 index 6a634cc36c5..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dco-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - DCO1.1.txt diff --git a/src/licensedcode/data/rules/dco-1.1_16.RULE b/src/licensedcode/data/rules/dco-1.1_16.RULE index abeadc2c147..e27ec18b34b 100644 --- a/src/licensedcode/data/rules/dco-1.1_16.RULE +++ b/src/licensedcode/data/rules/dco-1.1_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: dco-1.1 +is_license_notice: yes +ignorable_urls: + - http://developercertificate.org/ +--- + ### Sign your work The sign-off is a simple line at the end of the explanation for the patch. Your diff --git a/src/licensedcode/data/rules/dco-1.1_16.yml b/src/licensedcode/data/rules/dco-1.1_16.yml deleted file mode 100644 index 786bfb316f5..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: dco-1.1 -is_license_notice: yes -ignorable_urls: - - http://developercertificate.org/ diff --git a/src/licensedcode/data/rules/dco-1.1_17.RULE b/src/licensedcode/data/rules/dco-1.1_17.RULE index 3039f484025..bc08013a2c0 100644 --- a/src/licensedcode/data/rules/dco-1.1_17.RULE +++ b/src/licensedcode/data/rules/dco-1.1_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: dco-1.1 +is_license_notice: yes +ignorable_urls: + - https://developercertificate.org/ + - https://github.com/apps/dco +--- + Please see https://developercertificate.org/ for more info, as well as to make sure that you can attest to the rules listed. Our CI uses the [DCO Github app](https://github.com/apps/dco) to ensure that all commits in a given PR are signed-off. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_17.yml b/src/licensedcode/data/rules/dco-1.1_17.yml deleted file mode 100644 index 078b8bdf4c1..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dco-1.1 -is_license_notice: yes -ignorable_urls: - - https://developercertificate.org/ - - https://github.com/apps/dco diff --git a/src/licensedcode/data/rules/dco-1.1_2.RULE b/src/licensedcode/data/rules/dco-1.1_2.RULE index 9396263cca9..6e97d08d723 100644 --- a/src/licensedcode/data/rules/dco-1.1_2.RULE +++ b/src/licensedcode/data/rules/dco-1.1_2.RULE @@ -1 +1,7 @@ - Developer's Certificate of Origin 1.1 +--- +license_expression: dco-1.1 +is_license_reference: yes +relevance: 100 +--- + + Developer's Certificate of Origin 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_2.yml b/src/licensedcode/data/rules/dco-1.1_2.yml deleted file mode 100644 index 44a395ff390..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dco-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dco-1.1_3.RULE b/src/licensedcode/data/rules/dco-1.1_3.RULE index d8629ff6713..2f68a5109c3 100644 --- a/src/licensedcode/data/rules/dco-1.1_3.RULE +++ b/src/licensedcode/data/rules/dco-1.1_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: dco-1.1 +is_license_text: yes +--- + Developer's Certificate of Origin 1.1 By making a contribution to this project, I certify that: @@ -22,4 +27,4 @@ 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. + this project or the open source license(s) involved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_3.yml b/src/licensedcode/data/rules/dco-1.1_3.yml deleted file mode 100644 index 6aa5650ebec..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: dco-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/dco-1.1_4.RULE b/src/licensedcode/data/rules/dco-1.1_4.RULE index 78056f33cbd..9fa40bd9c82 100644 --- a/src/licensedcode/data/rules/dco-1.1_4.RULE +++ b/src/licensedcode/data/rules/dco-1.1_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: dco-1.1 +is_license_text: yes +ignorable_emails: + - random@developer.org +--- + Developer Certificate of Origin: -------------------------------- @@ -45,4 +52,4 @@ You can do it by using option -s or --signoff when you commit git commit --signoff ... -using your real name (sorry, no pseudonyms or anonymous contributions.) +using your real name (sorry, no pseudonyms or anonymous contributions.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_4.yml b/src/licensedcode/data/rules/dco-1.1_4.yml deleted file mode 100644 index 69accd9bfed..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: dco-1.1 -is_license_text: yes -ignorable_emails: - - random@developer.org diff --git a/src/licensedcode/data/rules/dco-1.1_5.RULE b/src/licensedcode/data/rules/dco-1.1_5.RULE index 54da44833fb..424030cb139 100644 --- a/src/licensedcode/data/rules/dco-1.1_5.RULE +++ b/src/licensedcode/data/rules/dco-1.1_5.RULE @@ -1,3 +1,15 @@ +--- +license_expression: dco-1.1 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2004, 2006 The Linux Foundation and its contributors +ignorable_holders: + - The Linux Foundation and its contributors +ignorable_emails: + - joe@gmail.com +--- + Developer Certificate of Origin Version 1.1 diff --git a/src/licensedcode/data/rules/dco-1.1_5.yml b/src/licensedcode/data/rules/dco-1.1_5.yml deleted file mode 100644 index 04ac9584a99..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_5.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: dco-1.1 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2004, 2006 The Linux Foundation and its contributors -ignorable_holders: - - The Linux Foundation and its contributors -ignorable_emails: - - joe@gmail.com diff --git a/src/licensedcode/data/rules/dco-1.1_6.RULE b/src/licensedcode/data/rules/dco-1.1_6.RULE index 05c302de688..0742432db87 100644 --- a/src/licensedcode/data/rules/dco-1.1_6.RULE +++ b/src/licensedcode/data/rules/dco-1.1_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: dco-1.1 +is_license_text: yes +relevance: 100 +ignorable_emails: + - joe@gmail.com +--- + Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff --git a/src/licensedcode/data/rules/dco-1.1_6.yml b/src/licensedcode/data/rules/dco-1.1_6.yml deleted file mode 100644 index 8487e08ef26..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dco-1.1 -is_license_text: yes -relevance: 100 -ignorable_emails: - - joe@gmail.com diff --git a/src/licensedcode/data/rules/dco-1.1_7.RULE b/src/licensedcode/data/rules/dco-1.1_7.RULE index e8e2a511fbb..65da32ca9c4 100644 --- a/src/licensedcode/data/rules/dco-1.1_7.RULE +++ b/src/licensedcode/data/rules/dco-1.1_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: dco-1.1 +is_license_notice: yes +relevance: 100 +--- + To indicate your acceptance of Developer's Certificate of Origin 1.1 terms, please add the following line to the end of the commit message for each contribution you make to the project: \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_7.yml b/src/licensedcode/data/rules/dco-1.1_7.yml deleted file mode 100644 index 92f1283d26b..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dco-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dco-1.1_8.RULE b/src/licensedcode/data/rules/dco-1.1_8.RULE index dcec9095470..9eab48c9e35 100644 --- a/src/licensedcode/data/rules/dco-1.1_8.RULE +++ b/src/licensedcode/data/rules/dco-1.1_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: dco-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://developercertificate.org/ +--- + http://developercertificate.org/ Developer Certificate of Origin Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_8.yml b/src/licensedcode/data/rules/dco-1.1_8.yml deleted file mode 100644 index adfe4607b9f..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dco-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://developercertificate.org/ diff --git a/src/licensedcode/data/rules/dco-1.1_9.RULE b/src/licensedcode/data/rules/dco-1.1_9.RULE index 450c45fb224..a4d63779507 100644 --- a/src/licensedcode/data/rules/dco-1.1_9.RULE +++ b/src/licensedcode/data/rules/dco-1.1_9.RULE @@ -1 +1,9 @@ +--- +license_expression: dco-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://developercertificate.org/ +--- + http://developercertificate.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/dco-1.1_9.yml b/src/licensedcode/data/rules/dco-1.1_9.yml deleted file mode 100644 index adfe4607b9f..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dco-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://developercertificate.org/ diff --git a/src/licensedcode/data/rules/dco-1.1_and_bsd-new_1.RULE b/src/licensedcode/data/rules/dco-1.1_and_bsd-new_1.RULE index e3e0e9d1d4f..13fab7c1b64 100644 --- a/src/licensedcode/data/rules/dco-1.1_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/dco-1.1_and_bsd-new_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: dco-1.1 AND bsd-new +is_license_notice: yes +relevance: 100 +--- + the project used an extended version of the DCO that included the identical items (a) through (d) from DCO 1.1 and an additional item (e): diff --git a/src/licensedcode/data/rules/dco-1.1_and_bsd-new_1.yml b/src/licensedcode/data/rules/dco-1.1_and_bsd-new_1.yml deleted file mode 100644 index bb857f23a26..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dco-1.1 AND bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_1.RULE b/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_1.RULE index ccbfad51995..8a973d69250 100644 --- a/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: dco-1.1 AND cc-by-sa-4.0 AND mit +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2004, 2006 The Linux Foundation and its contributors +ignorable_holders: + - The Linux Foundation and its contributors +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + ## Developer Certificate of Origin By contributing to GitLab B.V., You accept and agree to the following terms and conditions for Your present and future Contributions submitted to GitLab B.V. Except for the license granted herein to GitLab B.V. and recipients of software distributed by GitLab B.V., You reserve all right, title, and interest in and to Your Contributions. diff --git a/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_1.yml b/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_1.yml deleted file mode 100644 index 27c452a31be..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: dco-1.1 AND cc-by-sa-4.0 AND mit -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 2004, 2006 The Linux Foundation and its contributors -ignorable_holders: - - The Linux Foundation and its contributors -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0/legalcode diff --git a/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_2.RULE b/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_2.RULE index 138654c3fa9..9824a693055 100644 --- a/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_2.RULE +++ b/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: dco-1.1 AND cc-by-sa-4.0 AND mit +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - https://gitlab.com/gitlab-org/dco/blob/master/README.md +--- + ## {{Developer Certificate of Origin + License}} By contributing to GitLab B.V., You accept and agree to the following terms and diff --git a/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_2.yml b/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_2.yml deleted file mode 100644 index 4e2364db1fb..00000000000 --- a/src/licensedcode/data/rules/dco-1.1_and_cc-by-sa-4.0_and_mit_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dco-1.1 AND cc-by-sa-4.0 AND mit -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - https://gitlab.com/gitlab-org/dco/blob/master/README.md diff --git a/src/licensedcode/data/rules/debian_common_apache-2.0-plus.RULE b/src/licensedcode/data/rules/debian_common_apache-2.0-plus.RULE index 2314c47b8d1..5b92e127831 100644 --- a/src/licensedcode/data/rules/debian_common_apache-2.0-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_apache-2.0-plus.RULE @@ -1 +1,7 @@ -License: apache-2.0+ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + +License: apache-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_apache-2.0-plus.yml b/src/licensedcode/data/rules/debian_common_apache-2.0-plus.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/debian_common_apache-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_common_gfdl-1.2-plus.RULE b/src/licensedcode/data/rules/debian_common_gfdl-1.2-plus.RULE index 5215eaeb0e0..0ee4ba3bc23 100644 --- a/src/licensedcode/data/rules/debian_common_gfdl-1.2-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_gfdl-1.2-plus.RULE @@ -1 +1,7 @@ -License: gfdl-1.2+ +--- +license_expression: gfdl-1.2-plus +is_license_tag: yes +relevance: 100 +--- + +License: gfdl-1.2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_gfdl-1.2-plus.yml b/src/licensedcode/data/rules/debian_common_gfdl-1.2-plus.yml deleted file mode 100644 index 8322e47ed3c..00000000000 --- a/src/licensedcode/data/rules/debian_common_gfdl-1.2-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_common_gfdl-1.2.RULE b/src/licensedcode/data/rules/debian_common_gfdl-1.2.RULE index c8e178c3a19..69e42fbfab8 100644 --- a/src/licensedcode/data/rules/debian_common_gfdl-1.2.RULE +++ b/src/licensedcode/data/rules/debian_common_gfdl-1.2.RULE @@ -1 +1,7 @@ -License: gfdl-1.2 +--- +license_expression: gfdl-1.2 +is_license_tag: yes +relevance: 100 +--- + +License: gfdl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_gfdl-1.2.yml b/src/licensedcode/data/rules/debian_common_gfdl-1.2.yml deleted file mode 100644 index 69b1e592340..00000000000 --- a/src/licensedcode/data/rules/debian_common_gfdl-1.2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_common_gfdl-1.3-plus.RULE b/src/licensedcode/data/rules/debian_common_gfdl-1.3-plus.RULE index 4241e24808e..384d5f84b2a 100644 --- a/src/licensedcode/data/rules/debian_common_gfdl-1.3-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_gfdl-1.3-plus.RULE @@ -1 +1,7 @@ -License: gfdl-1.3+ +--- +license_expression: gfdl-1.3-plus +is_license_tag: yes +relevance: 100 +--- + +License: gfdl-1.3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_gfdl-1.3-plus.yml b/src/licensedcode/data/rules/debian_common_gfdl-1.3-plus.yml deleted file mode 100644 index 46ae92bd22c..00000000000 --- a/src/licensedcode/data/rules/debian_common_gfdl-1.3-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_common_gfdl-plus.RULE b/src/licensedcode/data/rules/debian_common_gfdl-plus.RULE index 0f22bdbf491..2a50130f410 100644 --- a/src/licensedcode/data/rules/debian_common_gfdl-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_gfdl-plus.RULE @@ -1 +1,7 @@ -License: gfdl+ +--- +license_expression: gfdl-1.1-plus +is_license_tag: yes +relevance: 100 +--- + +License: gfdl+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_gfdl-plus.yml b/src/licensedcode/data/rules/debian_common_gfdl-plus.yml deleted file mode 100644 index 61e5e2390bc..00000000000 --- a/src/licensedcode/data/rules/debian_common_gfdl-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_common_gpl-plus.RULE b/src/licensedcode/data/rules/debian_common_gpl-plus.RULE index d58470b186c..fbfe68835b8 100644 --- a/src/licensedcode/data/rules/debian_common_gpl-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_gpl-plus.RULE @@ -1 +1,7 @@ -License: gpl+ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + +License: gpl+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_gpl-plus.yml b/src/licensedcode/data/rules/debian_common_gpl-plus.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/debian_common_gpl-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_common_lgpl-plus.RULE b/src/licensedcode/data/rules/debian_common_lgpl-plus.RULE index ecd7902d3af..4a6b1be8ec6 100644 --- a/src/licensedcode/data/rules/debian_common_lgpl-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_lgpl-plus.RULE @@ -1 +1,7 @@ -License: lgpl+ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + +License: lgpl+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_lgpl-plus.yml b/src/licensedcode/data/rules/debian_common_lgpl-plus.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/debian_common_lgpl-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.RULE b/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.RULE index b77fa5082ad..4953b5cff9e 100644 --- a/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.RULE @@ -1 +1,7 @@ -License: mpl-1.1+ +--- +license_expression: mpl-1.1 +is_license_tag: yes +relevance: 100 +--- + +License: mpl-1.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.yml b/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.yml deleted file mode 100644 index 1cd8666e70f..00000000000 --- a/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_common_mpl-2.0-plus.RULE b/src/licensedcode/data/rules/debian_common_mpl-2.0-plus.RULE index af9e97464b1..a7c483a5c37 100644 --- a/src/licensedcode/data/rules/debian_common_mpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_mpl-2.0-plus.RULE @@ -1 +1,7 @@ -License: mpl-2.0+ +--- +license_expression: mpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +License: mpl-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_mpl-2.0-plus.yml b/src/licensedcode/data/rules/debian_common_mpl-2.0-plus.yml deleted file mode 100644 index 0358e9247bd..00000000000 --- a/src/licensedcode/data/rules/debian_common_mpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/debian_gpl_footer.RULE b/src/licensedcode/data/rules/debian_gpl_footer.RULE index 358dd392ce0..38ee8934fca 100644 --- a/src/licensedcode/data/rules/debian_gpl_footer.RULE +++ b/src/licensedcode/data/rules/debian_gpl_footer.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus AND gpl-2.0-plus AND lgpl-2.0-plus AND gfdl-1.1 +is_license_notice: yes +--- + On Debian systems, you can find the complete textes for the GNU (Lesser) General licenses: - GPL: /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/debian_gpl_footer.yml b/src/licensedcode/data/rules/debian_gpl_footer.yml deleted file mode 100644 index 5f643d99c41..00000000000 --- a/src/licensedcode/data/rules/debian_gpl_footer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus AND gpl-2.0-plus AND lgpl-2.0-plus AND gfdl-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/devblocks-1.0_1.RULE b/src/licensedcode/data/rules/devblocks-1.0_1.RULE index 01d99424edb..f5710f57cc6 100644 --- a/src/licensedcode/data/rules/devblocks-1.0_1.RULE +++ b/src/licensedcode/data/rules/devblocks-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: devblocks-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://cerb.ai/license +--- + `DPL` - [Devblocks Public License 1.0](https://cerb.ai/license/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/devblocks-1.0_1.yml b/src/licensedcode/data/rules/devblocks-1.0_1.yml deleted file mode 100644 index 7df0e48119a..00000000000 --- a/src/licensedcode/data/rules/devblocks-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: devblocks-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://cerb.ai/license diff --git a/src/licensedcode/data/rules/diffmark_1.RULE b/src/licensedcode/data/rules/diffmark_1.RULE index d161a0797ea..839c6f5158f 100644 --- a/src/licensedcode/data/rules/diffmark_1.RULE +++ b/src/licensedcode/data/rules/diffmark_1.RULE @@ -1 +1,10 @@ +--- +license_expression: diffmark +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + diffmark license \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_1.yml b/src/licensedcode/data/rules/diffmark_1.yml deleted file mode 100644 index ff2cd57624d..00000000000 --- a/src/licensedcode/data/rules/diffmark_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/diffmark_10.RULE b/src/licensedcode/data/rules/diffmark_10.RULE index 5a0a44976f8..b9131efed98 100644 --- a/src/licensedcode/data/rules/diffmark_10.RULE +++ b/src/licensedcode/data/rules/diffmark_10.RULE @@ -1 +1,9 @@ +--- +license_expression: diffmark +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/diffmark +--- + {{diffmark}} https://spdx.org/licenses/diffmark \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_10.yml b/src/licensedcode/data/rules/diffmark_10.yml deleted file mode 100644 index 6f23636767e..00000000000 --- a/src/licensedcode/data/rules/diffmark_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/diffmark diff --git a/src/licensedcode/data/rules/diffmark_11.RULE b/src/licensedcode/data/rules/diffmark_11.RULE index ad7138d649e..7068b637494 100644 --- a/src/licensedcode/data/rules/diffmark_11.RULE +++ b/src/licensedcode/data/rules/diffmark_11.RULE @@ -1 +1,9 @@ +--- +license_expression: diffmark +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/diffmark +--- + LICENSE {{diffmark}} https://spdx.org/licenses/diffmark \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_11.yml b/src/licensedcode/data/rules/diffmark_11.yml deleted file mode 100644 index 6f23636767e..00000000000 --- a/src/licensedcode/data/rules/diffmark_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/diffmark diff --git a/src/licensedcode/data/rules/diffmark_2.RULE b/src/licensedcode/data/rules/diffmark_2.RULE index 6c2fd8fa6c5..575c904d0e1 100644 --- a/src/licensedcode/data/rules/diffmark_2.RULE +++ b/src/licensedcode/data/rules/diffmark_2.RULE @@ -1 +1,10 @@ +--- +license_expression: diffmark +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: diffmark license \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_2.yml b/src/licensedcode/data/rules/diffmark_2.yml deleted file mode 100644 index ff2cd57624d..00000000000 --- a/src/licensedcode/data/rules/diffmark_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/diffmark_3.RULE b/src/licensedcode/data/rules/diffmark_3.RULE index ce57538583a..b5c5585f811 100644 --- a/src/licensedcode/data/rules/diffmark_3.RULE +++ b/src/licensedcode/data/rules/diffmark_3.RULE @@ -1 +1,10 @@ +--- +license_expression: diffmark +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + diffmark diffmark license \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_3.yml b/src/licensedcode/data/rules/diffmark_3.yml deleted file mode 100644 index ff2cd57624d..00000000000 --- a/src/licensedcode/data/rules/diffmark_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/diffmark_4.RULE b/src/licensedcode/data/rules/diffmark_4.RULE index 0ef94c3595e..104ecc9d844 100644 --- a/src/licensedcode/data/rules/diffmark_4.RULE +++ b/src/licensedcode/data/rules/diffmark_4.RULE @@ -1 +1,10 @@ +--- +license_expression: diffmark +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + diffmark license diffmark \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_4.yml b/src/licensedcode/data/rules/diffmark_4.yml deleted file mode 100644 index ff2cd57624d..00000000000 --- a/src/licensedcode/data/rules/diffmark_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/diffmark_5.RULE b/src/licensedcode/data/rules/diffmark_5.RULE index b765bfc99f3..e92734fdcc1 100644 --- a/src/licensedcode/data/rules/diffmark_5.RULE +++ b/src/licensedcode/data/rules/diffmark_5.RULE @@ -1 +1,10 @@ +--- +license_expression: diffmark +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: diffmark \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_5.yml b/src/licensedcode/data/rules/diffmark_5.yml deleted file mode 100644 index 9263099a789..00000000000 --- a/src/licensedcode/data/rules/diffmark_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: diffmark -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/diffmark_6.RULE b/src/licensedcode/data/rules/diffmark_6.RULE index d71e3a6cc22..5285aaffb9e 100644 --- a/src/licensedcode/data/rules/diffmark_6.RULE +++ b/src/licensedcode/data/rules/diffmark_6.RULE @@ -1 +1,10 @@ +--- +license_expression: diffmark +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: diffmark license \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_6.yml b/src/licensedcode/data/rules/diffmark_6.yml deleted file mode 100644 index 9263099a789..00000000000 --- a/src/licensedcode/data/rules/diffmark_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: diffmark -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/diffmark_7.RULE b/src/licensedcode/data/rules/diffmark_7.RULE index b4c3046b49b..782162877ce 100644 --- a/src/licensedcode/data/rules/diffmark_7.RULE +++ b/src/licensedcode/data/rules/diffmark_7.RULE @@ -1 +1,10 @@ +--- +license_expression: diffmark +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: diffmark \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_7.yml b/src/licensedcode/data/rules/diffmark_7.yml deleted file mode 100644 index 9263099a789..00000000000 --- a/src/licensedcode/data/rules/diffmark_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: diffmark -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/diffmark_8.RULE b/src/licensedcode/data/rules/diffmark_8.RULE index 5703aa96516..1c3c181ea2b 100644 --- a/src/licensedcode/data/rules/diffmark_8.RULE +++ b/src/licensedcode/data/rules/diffmark_8.RULE @@ -1 +1,9 @@ +--- +license_expression: diffmark +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/diffmark +--- + https://licenses.nuget.org/diffmark \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_8.yml b/src/licensedcode/data/rules/diffmark_8.yml deleted file mode 100644 index 71d33218a26..00000000000 --- a/src/licensedcode/data/rules/diffmark_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/diffmark diff --git a/src/licensedcode/data/rules/diffmark_9.RULE b/src/licensedcode/data/rules/diffmark_9.RULE index 0a421677d8a..1098fe88ec2 100644 --- a/src/licensedcode/data/rules/diffmark_9.RULE +++ b/src/licensedcode/data/rules/diffmark_9.RULE @@ -1 +1,7 @@ +--- +license_expression: diffmark +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/diffmark \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_9.yml b/src/licensedcode/data/rules/diffmark_9.yml deleted file mode 100644 index 015267e12f4..00000000000 --- a/src/licensedcode/data/rules/diffmark_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/diffmark_url_1.RULE b/src/licensedcode/data/rules/diffmark_url_1.RULE index 2f908a6eb05..d08d5dee793 100644 --- a/src/licensedcode/data/rules/diffmark_url_1.RULE +++ b/src/licensedcode/data/rules/diffmark_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: diffmark +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/diffmark +--- + https://spdx.org/licenses/diffmark \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_url_1.yml b/src/licensedcode/data/rules/diffmark_url_1.yml deleted file mode 100644 index 8128dff00f3..00000000000 --- a/src/licensedcode/data/rules/diffmark_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/diffmark diff --git a/src/licensedcode/data/rules/diffmark_url_2.RULE b/src/licensedcode/data/rules/diffmark_url_2.RULE index e4e43fac92d..24b3e9b6fd7 100644 --- a/src/licensedcode/data/rules/diffmark_url_2.RULE +++ b/src/licensedcode/data/rules/diffmark_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: diffmark +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/diffmark.html +--- + https://spdx.org/licenses/diffmark.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/diffmark_url_2.yml b/src/licensedcode/data/rules/diffmark_url_2.yml deleted file mode 100644 index a17de78d2ea..00000000000 --- a/src/licensedcode/data/rules/diffmark_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: diffmark -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/diffmark.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_1.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_1.RULE index a9365d9e461..6460b61fb44 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_1.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: digia-qt-commercial OR gfdl-1.3 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - https://www.gnu.org/copyleft/fdl.html +--- + ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the @@ -12,4 +22,4 @@ ** Foundation and appearing in the file included in the packaging of ** this file. Please review the following information to ensure ** the GNU Free Documentation License version 1.3 requirements -** will be met: https://www.gnu.org/copyleft/fdl.html. +** will be met: https://www.gnu.org/copyleft/fdl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_1.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_1.yml deleted file mode 100644 index 530d1728d8d..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: digia-qt-commercial OR gfdl-1.3 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - https://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_qt.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_qt.RULE index 044265cfde4..0af73a52a14 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_qt.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_qt.RULE @@ -1,3 +1,12 @@ +--- +license_expression: digia-qt-commercial OR gfdl-1.3 +is_license_notice: yes +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - http://www.gnu.org/copyleft/fdl.html +--- + ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the @@ -12,4 +21,4 @@ ** Foundation and appearing in the file included in the packaging of ** this file. Please review the following information to ensure ** the GNU Free Documentation License version 1.3 requirements -** will be met: http://www.gnu.org/copyleft/fdl.html. +** will be met: http://www.gnu.org/copyleft/fdl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_qt.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_qt.yml deleted file mode 100644 index 27863543044..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_gfdl-1.3_qt.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digia-qt-commercial OR gfdl-1.3 -is_license_notice: yes -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - http://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other_1.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other_1.RULE index 6bce534fe30..5b5ae613f0b 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other_1.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-company-exception-lgpl-2.1 OR lgpl-3.0 + WITH qt-company-exception-lgpl-2.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://www.qt.io/contact-us + - http://www.qt.io/terms-conditions + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/lgpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other_1.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other_1.yml deleted file mode 100644 index 6ca951ed0d8..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-company-exception-lgpl-2.1 OR lgpl-3.0 - WITH qt-company-exception-lgpl-2.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://www.qt.io/contact-us - - http://www.qt.io/terms-conditions - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/lgpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.RULE index 1fff39da528..fc27a72d540 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in @@ -28,4 +40,4 @@ ** met: https://www.gnu.org/copyleft/gpl.html. ** ** -** $QT_END_LICENSE$ +** $QT_END_LICENSE$ \ No newline at end of file diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.yml deleted file mode 100644 index ee3f30741c8..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.RULE index d3d4697289f..fb4a3586df3 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the @@ -24,4 +36,4 @@ ** Foundation and appearing in the file LICENSE.GPL 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: https://www.gnu.org/copyleft/gpl.html. +** met: https://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.yml deleted file mode 100644 index ee3f30741c8..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.RULE index 2178ad89ee1..3d9c5723ea0 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - https://www.gnu.org/licenses/lgpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the @@ -17,4 +29,4 @@ ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception - ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. + ** 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/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.yml deleted file mode 100644 index ab2551ea829..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - https://www.gnu.org/licenses/lgpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_lgpl-3.0_1.RULE index fa45f5308d2..231999102a5 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_lgpl-3.0_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - https://www.gnu.org/licenses/lgpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + $QT_BEGIN_LICENSE:LGPL21$ Commercial License Usage Licensees holding valid commercial Qt licenses may use this file in @@ -20,4 +32,4 @@ In addition, as a special exception, Digia gives you certain additional rights. These rights are described in the Digia Qt LGPL Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -$QT_END_LICENSE$ +$QT_END_LICENSE$ \ No newline at end of file diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_lgpl-3.0_1.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_lgpl-3.0_1.yml deleted file mode 100644 index 978488dfc9a..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-2.1_with_qt-lgpl-exception-1.1_or_lgpl-3.0_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR lgpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - https://www.gnu.org/licenses/lgpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_or_gpl-2.0_1.RULE index 5ff4095f8a7..8ade0104ca6 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_or_gpl-2.0_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: digia-qt-commercial OR lgpl-3.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - https://www.gnu.org/licenses/gpl-2.0.html + - 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 @@ -20,4 +32,4 @@ ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be -** met: https://www.gnu.org/licenses/gpl-2.0.html. +** met: https://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_or_gpl-2.0_1.yml deleted file mode 100644 index 3f4db760eea..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-3.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - https://www.gnu.org/licenses/gpl-2.0.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_qt.RULE b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_qt.RULE index 156cd6e3da0..16139182ff5 100644 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_qt.RULE +++ b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_qt.RULE @@ -1,3 +1,12 @@ +--- +license_expression: digia-qt-commercial OR lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - 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 @@ -12,4 +21,4 @@ ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. +** will be met: https://www.gnu.org/licenses/lgpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_qt.yml b/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_qt.yml deleted file mode 100644 index 3cd44e4c41a..00000000000 --- a/src/licensedcode/data/rules/digia-qt-commercial_or_lgpl-3.0_qt.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/digirule-foss-exception_1.RULE b/src/licensedcode/data/rules/digirule-foss-exception_1.RULE index 16338ad138d..a12c6dc8715 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_1.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 93 +--- + DigiRule Solutions's FOSS License Exception Terms and Conditions 1. Definitions. diff --git a/src/licensedcode/data/rules/digirule-foss-exception_1.yml b/src/licensedcode/data/rules/digirule-foss-exception_1.yml deleted file mode 100644 index ce65b87f65a..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: digirule-foss-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 93 diff --git a/src/licensedcode/data/rules/digirule-foss-exception_10.RULE b/src/licensedcode/data/rules/digirule-foss-exception_10.RULE index 98086aca43e..175c9accfff 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_10.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_10.RULE @@ -1 +1,7 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/DigiRule-FOSS-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_10.yml b/src/licensedcode/data/rules/digirule-foss-exception_10.yml deleted file mode 100644 index 8a632bd167b..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/digirule-foss-exception_11.RULE b/src/licensedcode/data/rules/digirule-foss-exception_11.RULE index 33a7175c397..902f6e38104 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_11.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_11.RULE @@ -1 +1,9 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DigiRule-FOSS-exception +--- + {{DigiRule-FOSS-exception}} https://spdx.org/licenses/DigiRule-FOSS-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_11.yml b/src/licensedcode/data/rules/digirule-foss-exception_11.yml deleted file mode 100644 index 98756c4c1e9..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DigiRule-FOSS-exception diff --git a/src/licensedcode/data/rules/digirule-foss-exception_12.RULE b/src/licensedcode/data/rules/digirule-foss-exception_12.RULE index e1a9ae2e71a..af8ecde4920 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_12.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_12.RULE @@ -1 +1,9 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DigiRule-FOSS-exception +--- + LICENSE {{DigiRule-FOSS-exception}} https://spdx.org/licenses/DigiRule-FOSS-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_12.yml b/src/licensedcode/data/rules/digirule-foss-exception_12.yml deleted file mode 100644 index 98756c4c1e9..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DigiRule-FOSS-exception diff --git a/src/licensedcode/data/rules/digirule-foss-exception_2.RULE b/src/licensedcode/data/rules/digirule-foss-exception_2.RULE index 6f1fca7c606..3e64a3d00b0 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_2.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DigiRule FOSS License Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_2.yml b/src/licensedcode/data/rules/digirule-foss-exception_2.yml deleted file mode 100644 index 6c005033eb5..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/digirule-foss-exception_3.RULE b/src/licensedcode/data/rules/digirule-foss-exception_3.RULE index 46f90e6c303..ea7fae3e4c7 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_3.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: DigiRule FOSS License Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_3.yml b/src/licensedcode/data/rules/digirule-foss-exception_3.yml deleted file mode 100644 index 6c005033eb5..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/digirule-foss-exception_4.RULE b/src/licensedcode/data/rules/digirule-foss-exception_4.RULE index 7c549168e2a..582de4d9fb0 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_4.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DigiRule-FOSS-exception DigiRule FOSS License Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_4.yml b/src/licensedcode/data/rules/digirule-foss-exception_4.yml deleted file mode 100644 index 6c005033eb5..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/digirule-foss-exception_5.RULE b/src/licensedcode/data/rules/digirule-foss-exception_5.RULE index 5b1eea4f478..b5f9ff33bab 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_5.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DigiRule FOSS License Exception DigiRule-FOSS-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_5.yml b/src/licensedcode/data/rules/digirule-foss-exception_5.yml deleted file mode 100644 index 6c005033eb5..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/digirule-foss-exception_6.RULE b/src/licensedcode/data/rules/digirule-foss-exception_6.RULE index ff7e6520218..b79bc470f35 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_6.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: DigiRule-FOSS-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_6.yml b/src/licensedcode/data/rules/digirule-foss-exception_6.yml deleted file mode 100644 index 3d2f6a64408..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digirule-foss-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/digirule-foss-exception_7.RULE b/src/licensedcode/data/rules/digirule-foss-exception_7.RULE index 2bf2d93b56c..cba9c32d3b2 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_7.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: DigiRule FOSS License Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_7.yml b/src/licensedcode/data/rules/digirule-foss-exception_7.yml deleted file mode 100644 index 3d2f6a64408..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digirule-foss-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/digirule-foss-exception_8.RULE b/src/licensedcode/data/rules/digirule-foss-exception_8.RULE index ca30fe450d2..2b56e31b8bd 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_8.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_8.RULE @@ -1 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: DigiRule-FOSS-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_8.yml b/src/licensedcode/data/rules/digirule-foss-exception_8.yml deleted file mode 100644 index 3d2f6a64408..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digirule-foss-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/digirule-foss-exception_9.RULE b/src/licensedcode/data/rules/digirule-foss-exception_9.RULE index 952a072e2b6..22a4de9b78a 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_9.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_9.RULE @@ -1 +1,9 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/DigiRule-FOSS-exception +--- + https://licenses.nuget.org/DigiRule-FOSS-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_9.yml b/src/licensedcode/data/rules/digirule-foss-exception_9.yml deleted file mode 100644 index 19d721f2d3a..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/DigiRule-FOSS-exception diff --git a/src/licensedcode/data/rules/digirule-foss-exception_url_1.RULE b/src/licensedcode/data/rules/digirule-foss-exception_url_1.RULE index 470fc83aaf9..54f76a0dfea 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_url_1.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/digirule-foss-exception +--- + https://spdx.org/licenses/digirule-foss-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_url_1.yml b/src/licensedcode/data/rules/digirule-foss-exception_url_1.yml deleted file mode 100644 index 66c216d7a15..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/digirule-foss-exception diff --git a/src/licensedcode/data/rules/digirule-foss-exception_url_2.RULE b/src/licensedcode/data/rules/digirule-foss-exception_url_2.RULE index 95d1bf5ff72..3dac4a1f59a 100644 --- a/src/licensedcode/data/rules/digirule-foss-exception_url_2.RULE +++ b/src/licensedcode/data/rules/digirule-foss-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/digirule-foss-exception.html +--- + https://spdx.org/licenses/digirule-foss-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/digirule-foss-exception_url_2.yml b/src/licensedcode/data/rules/digirule-foss-exception_url_2.yml deleted file mode 100644 index 96126e0b9ad..00000000000 --- a/src/licensedcode/data/rules/digirule-foss-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/digirule-foss-exception.html diff --git a/src/licensedcode/data/rules/dl-de-by-2-0-de_1.RULE b/src/licensedcode/data/rules/dl-de-by-2-0-de_1.RULE index f679a9114de..a4426410163 100644 --- a/src/licensedcode/data/rules/dl-de-by-2-0-de_1.RULE +++ b/src/licensedcode/data/rules/dl-de-by-2-0-de_1.RULE @@ -1 +1,9 @@ +--- +license_expression: dl-de-by-2-0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/DL-DE-BY-2.0 +--- + https://licenses.nuget.org/DL-DE-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dl-de-by-2-0-de_1.yml b/src/licensedcode/data/rules/dl-de-by-2-0-de_1.yml deleted file mode 100644 index 3d028f33562..00000000000 --- a/src/licensedcode/data/rules/dl-de-by-2-0-de_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dl-de-by-2-0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/DL-DE-BY-2.0 diff --git a/src/licensedcode/data/rules/dl-de-by-2-0-de_2.RULE b/src/licensedcode/data/rules/dl-de-by-2-0-de_2.RULE index 0d58d049faa..a07d6643aa7 100644 --- a/src/licensedcode/data/rules/dl-de-by-2-0-de_2.RULE +++ b/src/licensedcode/data/rules/dl-de-by-2-0-de_2.RULE @@ -1 +1,7 @@ +--- +license_expression: dl-de-by-2-0-de +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/DL-DE-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dl-de-by-2-0-de_2.yml b/src/licensedcode/data/rules/dl-de-by-2-0-de_2.yml deleted file mode 100644 index aa4557c303e..00000000000 --- a/src/licensedcode/data/rules/dl-de-by-2-0-de_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dl-de-by-2-0-de -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dl-de-by-2-0-de_3.RULE b/src/licensedcode/data/rules/dl-de-by-2-0-de_3.RULE index d939843a43e..7a093f79776 100644 --- a/src/licensedcode/data/rules/dl-de-by-2-0-de_3.RULE +++ b/src/licensedcode/data/rules/dl-de-by-2-0-de_3.RULE @@ -1 +1,9 @@ +--- +license_expression: dl-de-by-2-0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DL-DE-BY-2.0 +--- + LICENSE {{DL-DE-BY-2.0}} https://spdx.org/licenses/DL-DE-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dl-de-by-2-0-de_3.yml b/src/licensedcode/data/rules/dl-de-by-2-0-de_3.yml deleted file mode 100644 index f1bd23356cc..00000000000 --- a/src/licensedcode/data/rules/dl-de-by-2-0-de_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dl-de-by-2-0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DL-DE-BY-2.0 diff --git a/src/licensedcode/data/rules/dl-de-by-2-0-de_4.RULE b/src/licensedcode/data/rules/dl-de-by-2-0-de_4.RULE index 5fa41e77841..7f637d1234e 100644 --- a/src/licensedcode/data/rules/dl-de-by-2-0-de_4.RULE +++ b/src/licensedcode/data/rules/dl-de-by-2-0-de_4.RULE @@ -1 +1,9 @@ +--- +license_expression: dl-de-by-2-0-de +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DL-DE-BY-2.0 +--- + {{DL-DE-BY-2.0}} https://spdx.org/licenses/DL-DE-BY-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dl-de-by-2-0-de_4.yml b/src/licensedcode/data/rules/dl-de-by-2-0-de_4.yml deleted file mode 100644 index f1bd23356cc..00000000000 --- a/src/licensedcode/data/rules/dl-de-by-2-0-de_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dl-de-by-2-0-de -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DL-DE-BY-2.0 diff --git a/src/licensedcode/data/rules/docbook.RULE b/src/licensedcode/data/rules/docbook.RULE index 857de9c9bf5..3deed492b5d 100644 --- a/src/licensedcode/data/rules/docbook.RULE +++ b/src/licensedcode/data/rules/docbook.RULE @@ -1,3 +1,9 @@ +--- +license_expression: docbook +is_license_text: yes +minimum_coverage: 70 +--- + License and warranty for most parts of the package: MIT/X Consortium License Permission is hereby granted, free of charge, to any person obtaining a copy @@ -26,4 +32,4 @@ License and warranty for most parts of the package: MIT/X Consortium License NORMAN WALSH OR ANY OTHER CONTRIBUTOR 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. + DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/docbook.yml b/src/licensedcode/data/rules/docbook.yml deleted file mode 100644 index ee2f307a376..00000000000 --- a/src/licensedcode/data/rules/docbook.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: docbook -is_license_text: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/dom4j_1.RULE b/src/licensedcode/data/rules/dom4j_1.RULE index 7b3243118fc..b96ad255948 100644 --- a/src/licensedcode/data/rules/dom4j_1.RULE +++ b/src/licensedcode/data/rules/dom4j_1.RULE @@ -1 +1,9 @@ -http://www.dom4j.org/dom4j-1.6.1/license.html +--- +license_expression: dom4j +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.dom4j.org/dom4j-1.6.1/license.html +--- + +http://www.dom4j.org/dom4j-1.6.1/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_1.yml b/src/licensedcode/data/rules/dom4j_1.yml deleted file mode 100644 index c3af5d67cfb..00000000000 --- a/src/licensedcode/data/rules/dom4j_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.dom4j.org/dom4j-1.6.1/license.html diff --git a/src/licensedcode/data/rules/dom4j_10.RULE b/src/licensedcode/data/rules/dom4j_10.RULE index 35e626cbe2f..450414bf744 100644 --- a/src/licensedcode/data/rules/dom4j_10.RULE +++ b/src/licensedcode/data/rules/dom4j_10.RULE @@ -1 +1,10 @@ +--- +license_expression: dom4j +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Plexus Classworlds License Plexus \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_10.yml b/src/licensedcode/data/rules/dom4j_10.yml deleted file mode 100644 index 1ae70869a24..00000000000 --- a/src/licensedcode/data/rules/dom4j_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dom4j_11.RULE b/src/licensedcode/data/rules/dom4j_11.RULE index 0ebac1ce4d4..966c0b7e0be 100644 --- a/src/licensedcode/data/rules/dom4j_11.RULE +++ b/src/licensedcode/data/rules/dom4j_11.RULE @@ -1 +1,10 @@ +--- +license_expression: dom4j +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Plexus \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_11.yml b/src/licensedcode/data/rules/dom4j_11.yml deleted file mode 100644 index adf47485911..00000000000 --- a/src/licensedcode/data/rules/dom4j_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dom4j_12.RULE b/src/licensedcode/data/rules/dom4j_12.RULE index eee11df3e78..f2ddee13ec3 100644 --- a/src/licensedcode/data/rules/dom4j_12.RULE +++ b/src/licensedcode/data/rules/dom4j_12.RULE @@ -1 +1,10 @@ +--- +license_expression: dom4j +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Plexus Classworlds License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_12.yml b/src/licensedcode/data/rules/dom4j_12.yml deleted file mode 100644 index adf47485911..00000000000 --- a/src/licensedcode/data/rules/dom4j_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dom4j_13.RULE b/src/licensedcode/data/rules/dom4j_13.RULE index 37d8198e9f1..456e75860f9 100644 --- a/src/licensedcode/data/rules/dom4j_13.RULE +++ b/src/licensedcode/data/rules/dom4j_13.RULE @@ -1 +1,10 @@ +--- +license_expression: dom4j +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Plexus \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_13.yml b/src/licensedcode/data/rules/dom4j_13.yml deleted file mode 100644 index adf47485911..00000000000 --- a/src/licensedcode/data/rules/dom4j_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dom4j_14.RULE b/src/licensedcode/data/rules/dom4j_14.RULE index 8526a4e71ff..fcb2158a552 100644 --- a/src/licensedcode/data/rules/dom4j_14.RULE +++ b/src/licensedcode/data/rules/dom4j_14.RULE @@ -1 +1,9 @@ +--- +license_expression: dom4j +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Plexus +--- + https://licenses.nuget.org/Plexus \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_14.yml b/src/licensedcode/data/rules/dom4j_14.yml deleted file mode 100644 index 5a26a80e6fe..00000000000 --- a/src/licensedcode/data/rules/dom4j_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Plexus diff --git a/src/licensedcode/data/rules/dom4j_15.RULE b/src/licensedcode/data/rules/dom4j_15.RULE index 59c2fd03d67..c54c2101cb2 100644 --- a/src/licensedcode/data/rules/dom4j_15.RULE +++ b/src/licensedcode/data/rules/dom4j_15.RULE @@ -1 +1,7 @@ +--- +license_expression: dom4j +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Plexus \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_15.yml b/src/licensedcode/data/rules/dom4j_15.yml deleted file mode 100644 index ea993c6ea3b..00000000000 --- a/src/licensedcode/data/rules/dom4j_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dom4j_16.RULE b/src/licensedcode/data/rules/dom4j_16.RULE index af1447a3bac..ecc74d521ea 100644 --- a/src/licensedcode/data/rules/dom4j_16.RULE +++ b/src/licensedcode/data/rules/dom4j_16.RULE @@ -1 +1,9 @@ +--- +license_expression: dom4j +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Plexus +--- + LICENSE {{Plexus}} https://spdx.org/licenses/Plexus \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_16.yml b/src/licensedcode/data/rules/dom4j_16.yml deleted file mode 100644 index c36dfb040a6..00000000000 --- a/src/licensedcode/data/rules/dom4j_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Plexus diff --git a/src/licensedcode/data/rules/dom4j_17.RULE b/src/licensedcode/data/rules/dom4j_17.RULE index 531ec11ee35..189c8699bc4 100644 --- a/src/licensedcode/data/rules/dom4j_17.RULE +++ b/src/licensedcode/data/rules/dom4j_17.RULE @@ -1 +1,9 @@ +--- +license_expression: dom4j +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Plexus +--- + {{Plexus}} https://spdx.org/licenses/Plexus \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_17.yml b/src/licensedcode/data/rules/dom4j_17.yml deleted file mode 100644 index c36dfb040a6..00000000000 --- a/src/licensedcode/data/rules/dom4j_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Plexus diff --git a/src/licensedcode/data/rules/dom4j_2.RULE b/src/licensedcode/data/rules/dom4j_2.RULE index 4064c0070d5..04931e63e54 100644 --- a/src/licensedcode/data/rules/dom4j_2.RULE +++ b/src/licensedcode/data/rules/dom4j_2.RULE @@ -1 +1,9 @@ +--- +license_expression: dom4j +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.dom4j.org/license.html +--- + http://www.dom4j.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_2.yml b/src/licensedcode/data/rules/dom4j_2.yml deleted file mode 100644 index fbe079b482c..00000000000 --- a/src/licensedcode/data/rules/dom4j_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.dom4j.org/license.html diff --git a/src/licensedcode/data/rules/dom4j_3.RULE b/src/licensedcode/data/rules/dom4j_3.RULE index 9b211fb565a..f1839ea3a8b 100644 --- a/src/licensedcode/data/rules/dom4j_3.RULE +++ b/src/licensedcode/data/rules/dom4j_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: dom4j +is_license_text: yes +ignorable_urls: + - http://www.dom4j.org/ +ignorable_emails: + - dom4j-info@metastuff.com +--- + BSD style license Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain copyright statements and notices. Redistributions must also contain a copy of this document. @@ -5,4 +14,4 @@ Redistribution and use of this software and associated documentation ("Software" 3. The name "DOM4J" must not be used to endorse or promote products derived from this Software without prior written permission of MetaStuff, Ltd. For written permission, please contact dom4j-info@metastuff.com. 4. Products derived from this Software may not be called "DOM4J" nor may "DOM4J" appear in their names without prior written permission of MetaStuff, Ltd. DOM4J is a registered trademark of MetaStuff, Ltd. 5. Due credit should be given to the DOM4J Project - http://www.dom4j.org -THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED 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 METASTUFF, LTD. 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. +THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED 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 METASTUFF, LTD. 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/dom4j_3.yml b/src/licensedcode/data/rules/dom4j_3.yml deleted file mode 100644 index c22bb7f0b73..00000000000 --- a/src/licensedcode/data/rules/dom4j_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_text: yes -ignorable_urls: - - http://www.dom4j.org/ -ignorable_emails: - - dom4j-info@metastuff.com diff --git a/src/licensedcode/data/rules/dom4j_4.RULE b/src/licensedcode/data/rules/dom4j_4.RULE index d5d5c943c96..d245596dcee 100644 --- a/src/licensedcode/data/rules/dom4j_4.RULE +++ b/src/licensedcode/data/rules/dom4j_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: dom4j +is_license_text: yes +relevance: 100 +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/dom4j_4.yml b/src/licensedcode/data/rules/dom4j_4.yml deleted file mode 100644 index 5399a2e264d..00000000000 --- a/src/licensedcode/data/rules/dom4j_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dom4j -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dom4j_5.RULE b/src/licensedcode/data/rules/dom4j_5.RULE index debbbccd1dd..ec87b59607e 100644 --- a/src/licensedcode/data/rules/dom4j_5.RULE +++ b/src/licensedcode/data/rules/dom4j_5.RULE @@ -1 +1,8 @@ +--- +license_expression: dom4j +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Dom4j is licensed under the BSD style license. See BSD License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_5.yml b/src/licensedcode/data/rules/dom4j_5.yml deleted file mode 100644 index a6bf0fd4576..00000000000 --- a/src/licensedcode/data/rules/dom4j_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: dom4j -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/dom4j_6.RULE b/src/licensedcode/data/rules/dom4j_6.RULE index c1f415e138a..23ec52938d3 100644 --- a/src/licensedcode/data/rules/dom4j_6.RULE +++ b/src/licensedcode/data/rules/dom4j_6.RULE @@ -1 +1,8 @@ +--- +license_expression: dom4j +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Dom4j is licensed under the BSD style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_6.yml b/src/licensedcode/data/rules/dom4j_6.yml deleted file mode 100644 index a6bf0fd4576..00000000000 --- a/src/licensedcode/data/rules/dom4j_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: dom4j -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/dom4j_7.RULE b/src/licensedcode/data/rules/dom4j_7.RULE index 8bd7d69897d..197ae83448e 100644 --- a/src/licensedcode/data/rules/dom4j_7.RULE +++ b/src/licensedcode/data/rules/dom4j_7.RULE @@ -1 +1,10 @@ +--- +license_expression: dom4j +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Plexus Classworlds License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_7.yml b/src/licensedcode/data/rules/dom4j_7.yml deleted file mode 100644 index 1ae70869a24..00000000000 --- a/src/licensedcode/data/rules/dom4j_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dom4j_8.RULE b/src/licensedcode/data/rules/dom4j_8.RULE index cdc964298cc..f36aae51de0 100644 --- a/src/licensedcode/data/rules/dom4j_8.RULE +++ b/src/licensedcode/data/rules/dom4j_8.RULE @@ -1 +1,10 @@ +--- +license_expression: dom4j +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Plexus Classworlds License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_8.yml b/src/licensedcode/data/rules/dom4j_8.yml deleted file mode 100644 index 1ae70869a24..00000000000 --- a/src/licensedcode/data/rules/dom4j_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dom4j_9.RULE b/src/licensedcode/data/rules/dom4j_9.RULE index 2a95f26acb5..3ffb4ddb2ec 100644 --- a/src/licensedcode/data/rules/dom4j_9.RULE +++ b/src/licensedcode/data/rules/dom4j_9.RULE @@ -1 +1,10 @@ +--- +license_expression: dom4j +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Plexus Plexus Classworlds License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_9.yml b/src/licensedcode/data/rules/dom4j_9.yml deleted file mode 100644 index 1ae70869a24..00000000000 --- a/src/licensedcode/data/rules/dom4j_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dom4j_apache-due-credit_1.RULE b/src/licensedcode/data/rules/dom4j_apache-due-credit_1.RULE index d42f02a972d..e1a0e6dcab0 100644 --- a/src/licensedcode/data/rules/dom4j_apache-due-credit_1.RULE +++ b/src/licensedcode/data/rules/dom4j_apache-due-credit_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: dom4j +is_license_notice: yes +notes: This is the old "Castor" license from http://www.castor.org/license.txt which is essentially + a dom4j +ignorable_urls: + - http://www.exolab.org/ +ignorable_emails: + - info@exolab.org +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/dom4j_apache-due-credit_1.yml b/src/licensedcode/data/rules/dom4j_apache-due-credit_1.yml deleted file mode 100644 index 1788de3cc3d..00000000000 --- a/src/licensedcode/data/rules/dom4j_apache-due-credit_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: dom4j -is_license_notice: yes -notes: This is the old "Castor" license from http://www.castor.org/license.txt which is essentially - a dom4j -ignorable_urls: - - http://www.exolab.org/ -ignorable_emails: - - info@exolab.org diff --git a/src/licensedcode/data/rules/dom4j_apache-due-credit_2.RULE b/src/licensedcode/data/rules/dom4j_apache-due-credit_2.RULE index 3ee9ef55476..96fb5554121 100644 --- a/src/licensedcode/data/rules/dom4j_apache-due-credit_2.RULE +++ b/src/licensedcode/data/rules/dom4j_apache-due-credit_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: dom4j +is_license_text: yes +ignorable_urls: + - http://groovy.codehaus.org/ +ignorable_emails: + - info@codehaus.org +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: @@ -35,4 +44,4 @@ 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. + OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_apache-due-credit_2.yml b/src/licensedcode/data/rules/dom4j_apache-due-credit_2.yml deleted file mode 100644 index c431859f46a..00000000000 --- a/src/licensedcode/data/rules/dom4j_apache-due-credit_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dom4j -is_license_text: yes -ignorable_urls: - - http://groovy.codehaus.org/ -ignorable_emails: - - info@codehaus.org diff --git a/src/licensedcode/data/rules/dom4j_apache-due-credit_3.RULE b/src/licensedcode/data/rules/dom4j_apache-due-credit_3.RULE index f4ea6552f2f..d57a070c4e7 100644 --- a/src/licensedcode/data/rules/dom4j_apache-due-credit_3.RULE +++ b/src/licensedcode/data/rules/dom4j_apache-due-credit_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: dom4j +is_license_text: yes +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: @@ -34,4 +39,4 @@ 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. + OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_apache-due-credit_3.yml b/src/licensedcode/data/rules/dom4j_apache-due-credit_3.yml deleted file mode 100644 index b1171488ff3..00000000000 --- a/src/licensedcode/data/rules/dom4j_apache-due-credit_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: dom4j -is_license_text: yes diff --git a/src/licensedcode/data/rules/dom4j_apache-due-credit_4.RULE b/src/licensedcode/data/rules/dom4j_apache-due-credit_4.RULE index d3ae45c3908..baf87e733f5 100644 --- a/src/licensedcode/data/rules/dom4j_apache-due-credit_4.RULE +++ b/src/licensedcode/data/rules/dom4j_apache-due-credit_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: dom4j +is_license_text: yes +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: @@ -34,4 +39,4 @@ 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. + OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_apache-due-credit_4.yml b/src/licensedcode/data/rules/dom4j_apache-due-credit_4.yml deleted file mode 100644 index b1171488ff3..00000000000 --- a/src/licensedcode/data/rules/dom4j_apache-due-credit_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: dom4j -is_license_text: yes diff --git a/src/licensedcode/data/rules/dom4j_classworlds.RULE b/src/licensedcode/data/rules/dom4j_classworlds.RULE index 98f4a21671c..a8679ac5e9e 100644 --- a/src/licensedcode/data/rules/dom4j_classworlds.RULE +++ b/src/licensedcode/data/rules/dom4j_classworlds.RULE @@ -1 +1,9 @@ +--- +license_expression: dom4j +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://classworlds.codehaus.org/license.html +--- + http://classworlds.codehaus.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_classworlds.SPDX.RULE b/src/licensedcode/data/rules/dom4j_classworlds.SPDX.RULE index 0d47522936e..745e3afb576 100644 --- a/src/licensedcode/data/rules/dom4j_classworlds.SPDX.RULE +++ b/src/licensedcode/data/rules/dom4j_classworlds.SPDX.RULE @@ -1,3 +1,18 @@ +--- +license_expression: dom4j +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright 2002 (c) The Codehaus +ignorable_holders: + - The Codehaus +ignorable_urls: + - http://classworlds.codehaus.org/ +ignorable_emails: + - bob@codehaus.org +--- + $Id: LICENSE.txt 3117 2006-04-07 15:49:12Z jvanzyl $ Copyright 2002 (C) The Codehaus. All Rights Reserved. diff --git a/src/licensedcode/data/rules/dom4j_classworlds.SPDX.yml b/src/licensedcode/data/rules/dom4j_classworlds.SPDX.yml deleted file mode 100644 index b7bea8003ca..00000000000 --- a/src/licensedcode/data/rules/dom4j_classworlds.SPDX.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: dom4j -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright 2002 (c) The Codehaus -ignorable_holders: - - The Codehaus -ignorable_urls: - - http://classworlds.codehaus.org/ -ignorable_emails: - - bob@codehaus.org diff --git a/src/licensedcode/data/rules/dom4j_classworlds.yml b/src/licensedcode/data/rules/dom4j_classworlds.yml deleted file mode 100644 index 7c28100fe30..00000000000 --- a/src/licensedcode/data/rules/dom4j_classworlds.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://classworlds.codehaus.org/license.html diff --git a/src/licensedcode/data/rules/dom4j_url_1.RULE b/src/licensedcode/data/rules/dom4j_url_1.RULE index 4f4c22c0981..ce0deffc81f 100644 --- a/src/licensedcode/data/rules/dom4j_url_1.RULE +++ b/src/licensedcode/data/rules/dom4j_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: dom4j +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/plexus +--- + https://spdx.org/licenses/plexus \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_url_1.yml b/src/licensedcode/data/rules/dom4j_url_1.yml deleted file mode 100644 index 94d82584a2d..00000000000 --- a/src/licensedcode/data/rules/dom4j_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/plexus diff --git a/src/licensedcode/data/rules/dom4j_url_2.RULE b/src/licensedcode/data/rules/dom4j_url_2.RULE index 9ca62a6be88..f1df31805f9 100644 --- a/src/licensedcode/data/rules/dom4j_url_2.RULE +++ b/src/licensedcode/data/rules/dom4j_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: dom4j +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/plexus.html +--- + https://spdx.org/licenses/plexus.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/dom4j_url_2.yml b/src/licensedcode/data/rules/dom4j_url_2.yml deleted file mode 100644 index 20b879c565e..00000000000 --- a/src/licensedcode/data/rules/dom4j_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dom4j -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/plexus.html diff --git a/src/licensedcode/data/rules/dotseqn_1.RULE b/src/licensedcode/data/rules/dotseqn_1.RULE index 840b8458be0..413d01bcd94 100644 --- a/src/licensedcode/data/rules/dotseqn_1.RULE +++ b/src/licensedcode/data/rules/dotseqn_1.RULE @@ -1 +1,10 @@ +--- +license_expression: dotseqn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Dotseqn License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_1.yml b/src/licensedcode/data/rules/dotseqn_1.yml deleted file mode 100644 index 2c38a025a1d..00000000000 --- a/src/licensedcode/data/rules/dotseqn_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dotseqn_10.RULE b/src/licensedcode/data/rules/dotseqn_10.RULE index e79a1f8cf8b..13c393771b5 100644 --- a/src/licensedcode/data/rules/dotseqn_10.RULE +++ b/src/licensedcode/data/rules/dotseqn_10.RULE @@ -1 +1,9 @@ +--- +license_expression: dotseqn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Dotseqn +--- + {{Dotseqn}} https://spdx.org/licenses/Dotseqn \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_10.yml b/src/licensedcode/data/rules/dotseqn_10.yml deleted file mode 100644 index d5d4f0139ca..00000000000 --- a/src/licensedcode/data/rules/dotseqn_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Dotseqn diff --git a/src/licensedcode/data/rules/dotseqn_11.RULE b/src/licensedcode/data/rules/dotseqn_11.RULE index f9bfe974349..a5ff2d023a1 100644 --- a/src/licensedcode/data/rules/dotseqn_11.RULE +++ b/src/licensedcode/data/rules/dotseqn_11.RULE @@ -1 +1,9 @@ +--- +license_expression: dotseqn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Dotseqn +--- + LICENSE {{Dotseqn}} https://spdx.org/licenses/Dotseqn \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_11.yml b/src/licensedcode/data/rules/dotseqn_11.yml deleted file mode 100644 index d5d4f0139ca..00000000000 --- a/src/licensedcode/data/rules/dotseqn_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Dotseqn diff --git a/src/licensedcode/data/rules/dotseqn_2.RULE b/src/licensedcode/data/rules/dotseqn_2.RULE index c0a280e576b..7314f5c8998 100644 --- a/src/licensedcode/data/rules/dotseqn_2.RULE +++ b/src/licensedcode/data/rules/dotseqn_2.RULE @@ -1 +1,10 @@ +--- +license_expression: dotseqn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Dotseqn License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_2.yml b/src/licensedcode/data/rules/dotseqn_2.yml deleted file mode 100644 index 2c38a025a1d..00000000000 --- a/src/licensedcode/data/rules/dotseqn_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dotseqn_3.RULE b/src/licensedcode/data/rules/dotseqn_3.RULE index c7dbb59f64b..ccce8d30c46 100644 --- a/src/licensedcode/data/rules/dotseqn_3.RULE +++ b/src/licensedcode/data/rules/dotseqn_3.RULE @@ -1 +1,10 @@ +--- +license_expression: dotseqn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Dotseqn Dotseqn License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_3.yml b/src/licensedcode/data/rules/dotseqn_3.yml deleted file mode 100644 index 2c38a025a1d..00000000000 --- a/src/licensedcode/data/rules/dotseqn_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dotseqn_4.RULE b/src/licensedcode/data/rules/dotseqn_4.RULE index ae31820366c..a757715b803 100644 --- a/src/licensedcode/data/rules/dotseqn_4.RULE +++ b/src/licensedcode/data/rules/dotseqn_4.RULE @@ -1 +1,10 @@ +--- +license_expression: dotseqn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Dotseqn License Dotseqn \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_4.yml b/src/licensedcode/data/rules/dotseqn_4.yml deleted file mode 100644 index 2c38a025a1d..00000000000 --- a/src/licensedcode/data/rules/dotseqn_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dotseqn_5.RULE b/src/licensedcode/data/rules/dotseqn_5.RULE index f140fe87507..4c246018830 100644 --- a/src/licensedcode/data/rules/dotseqn_5.RULE +++ b/src/licensedcode/data/rules/dotseqn_5.RULE @@ -1 +1,10 @@ +--- +license_expression: dotseqn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Dotseqn \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_5.yml b/src/licensedcode/data/rules/dotseqn_5.yml deleted file mode 100644 index 8df9440b123..00000000000 --- a/src/licensedcode/data/rules/dotseqn_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dotseqn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dotseqn_6.RULE b/src/licensedcode/data/rules/dotseqn_6.RULE index 7126f2d5967..4db2ca4fc6e 100644 --- a/src/licensedcode/data/rules/dotseqn_6.RULE +++ b/src/licensedcode/data/rules/dotseqn_6.RULE @@ -1 +1,10 @@ +--- +license_expression: dotseqn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Dotseqn License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_6.yml b/src/licensedcode/data/rules/dotseqn_6.yml deleted file mode 100644 index 8df9440b123..00000000000 --- a/src/licensedcode/data/rules/dotseqn_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dotseqn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dotseqn_7.RULE b/src/licensedcode/data/rules/dotseqn_7.RULE index 0e3d58e8aa9..6fbb1df0791 100644 --- a/src/licensedcode/data/rules/dotseqn_7.RULE +++ b/src/licensedcode/data/rules/dotseqn_7.RULE @@ -1 +1,10 @@ +--- +license_expression: dotseqn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Dotseqn \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_7.yml b/src/licensedcode/data/rules/dotseqn_7.yml deleted file mode 100644 index 8df9440b123..00000000000 --- a/src/licensedcode/data/rules/dotseqn_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dotseqn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dotseqn_8.RULE b/src/licensedcode/data/rules/dotseqn_8.RULE index 4c50197358f..24a1909bf61 100644 --- a/src/licensedcode/data/rules/dotseqn_8.RULE +++ b/src/licensedcode/data/rules/dotseqn_8.RULE @@ -1 +1,9 @@ +--- +license_expression: dotseqn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Dotseqn +--- + https://licenses.nuget.org/Dotseqn \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_8.yml b/src/licensedcode/data/rules/dotseqn_8.yml deleted file mode 100644 index c09c77c68d6..00000000000 --- a/src/licensedcode/data/rules/dotseqn_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Dotseqn diff --git a/src/licensedcode/data/rules/dotseqn_9.RULE b/src/licensedcode/data/rules/dotseqn_9.RULE index 21117bc81e0..8e89ca57235 100644 --- a/src/licensedcode/data/rules/dotseqn_9.RULE +++ b/src/licensedcode/data/rules/dotseqn_9.RULE @@ -1 +1,7 @@ +--- +license_expression: dotseqn +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Dotseqn \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_9.yml b/src/licensedcode/data/rules/dotseqn_9.yml deleted file mode 100644 index e014b397017..00000000000 --- a/src/licensedcode/data/rules/dotseqn_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dotseqn_url_1.RULE b/src/licensedcode/data/rules/dotseqn_url_1.RULE index 08557b78ac9..66ff24ee9e5 100644 --- a/src/licensedcode/data/rules/dotseqn_url_1.RULE +++ b/src/licensedcode/data/rules/dotseqn_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: dotseqn +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/dotseqn +--- + https://spdx.org/licenses/dotseqn \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_url_1.yml b/src/licensedcode/data/rules/dotseqn_url_1.yml deleted file mode 100644 index 84ef4f6cb5c..00000000000 --- a/src/licensedcode/data/rules/dotseqn_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/dotseqn diff --git a/src/licensedcode/data/rules/dotseqn_url_2.RULE b/src/licensedcode/data/rules/dotseqn_url_2.RULE index 303e8666657..fd66fe690d4 100644 --- a/src/licensedcode/data/rules/dotseqn_url_2.RULE +++ b/src/licensedcode/data/rules/dotseqn_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: dotseqn +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/dotseqn.html +--- + https://spdx.org/licenses/dotseqn.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/dotseqn_url_2.yml b/src/licensedcode/data/rules/dotseqn_url_2.yml deleted file mode 100644 index d085befd7e4..00000000000 --- a/src/licensedcode/data/rules/dotseqn_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dotseqn -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/dotseqn.html diff --git a/src/licensedcode/data/rules/drl-1.0_1.RULE b/src/licensedcode/data/rules/drl-1.0_1.RULE index 9e98b776aa7..3866ddd221c 100644 --- a/src/licensedcode/data/rules/drl-1.0_1.RULE +++ b/src/licensedcode/data/rules/drl-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: drl-1.0 +is_license_text: yes +relevance: 99 +minimum_coverage: 99 +notes: legacy minor modification. +--- + # Detection Rule License (DRL) 1.0 Permission is hereby granted, free of charge, to any person obtaining a copy of this rule set and associated documentation files (the "Rules"), to deal in the Rules without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Rules, and to permit persons to whom the Rules are furnished to do so, subject to the following conditions: diff --git a/src/licensedcode/data/rules/drl-1.0_1.yml b/src/licensedcode/data/rules/drl-1.0_1.yml deleted file mode 100644 index 916b6bc8e71..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: drl-1.0 -is_license_text: yes -relevance: 99 -minimum_coverage: 99 -notes: legacy minor modification. diff --git a/src/licensedcode/data/rules/drl-1.0_10.RULE b/src/licensedcode/data/rules/drl-1.0_10.RULE index 288b8631362..a7e2d4a7f92 100644 --- a/src/licensedcode/data/rules/drl-1.0_10.RULE +++ b/src/licensedcode/data/rules/drl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: drl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/DRL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_10.yml b/src/licensedcode/data/rules/drl-1.0_10.yml deleted file mode 100644 index 0078d6699a8..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: drl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/drl-1.0_11.RULE b/src/licensedcode/data/rules/drl-1.0_11.RULE index 9fcf322497e..089bd232a4d 100644 --- a/src/licensedcode/data/rules/drl-1.0_11.RULE +++ b/src/licensedcode/data/rules/drl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: drl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DRL-1.0 +--- + {{DRL-1.0}} https://spdx.org/licenses/DRL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_11.yml b/src/licensedcode/data/rules/drl-1.0_11.yml deleted file mode 100644 index 5498f61468e..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: drl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DRL-1.0 diff --git a/src/licensedcode/data/rules/drl-1.0_12.RULE b/src/licensedcode/data/rules/drl-1.0_12.RULE index 91635be6068..ed3e4fb6532 100644 --- a/src/licensedcode/data/rules/drl-1.0_12.RULE +++ b/src/licensedcode/data/rules/drl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: drl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DRL-1.0 +--- + LICENSE {{DRL-1.0}} https://spdx.org/licenses/DRL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_12.yml b/src/licensedcode/data/rules/drl-1.0_12.yml deleted file mode 100644 index 5498f61468e..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: drl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DRL-1.0 diff --git a/src/licensedcode/data/rules/drl-1.0_2.RULE b/src/licensedcode/data/rules/drl-1.0_2.RULE index bd80d3ee944..aee5038eb33 100644 --- a/src/licensedcode/data/rules/drl-1.0_2.RULE +++ b/src/licensedcode/data/rules/drl-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: drl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Detection Rule License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_2.yml b/src/licensedcode/data/rules/drl-1.0_2.yml deleted file mode 100644 index 309006143b9..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: drl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/drl-1.0_3.RULE b/src/licensedcode/data/rules/drl-1.0_3.RULE index 650206c1f98..37d60d2884f 100644 --- a/src/licensedcode/data/rules/drl-1.0_3.RULE +++ b/src/licensedcode/data/rules/drl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: drl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Detection Rule License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_3.yml b/src/licensedcode/data/rules/drl-1.0_3.yml deleted file mode 100644 index 309006143b9..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: drl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/drl-1.0_4.RULE b/src/licensedcode/data/rules/drl-1.0_4.RULE index 84512fa5b13..efbd49b007b 100644 --- a/src/licensedcode/data/rules/drl-1.0_4.RULE +++ b/src/licensedcode/data/rules/drl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: drl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DRL-1.0 Detection Rule License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_4.yml b/src/licensedcode/data/rules/drl-1.0_4.yml deleted file mode 100644 index 309006143b9..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: drl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/drl-1.0_5.RULE b/src/licensedcode/data/rules/drl-1.0_5.RULE index 8bb726d487a..ffdde3a8f61 100644 --- a/src/licensedcode/data/rules/drl-1.0_5.RULE +++ b/src/licensedcode/data/rules/drl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: drl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Detection Rule License 1.0 DRL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_5.yml b/src/licensedcode/data/rules/drl-1.0_5.yml deleted file mode 100644 index 309006143b9..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: drl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/drl-1.0_6.RULE b/src/licensedcode/data/rules/drl-1.0_6.RULE index 55a2b74e653..cd040b63267 100644 --- a/src/licensedcode/data/rules/drl-1.0_6.RULE +++ b/src/licensedcode/data/rules/drl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: drl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: DRL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_6.yml b/src/licensedcode/data/rules/drl-1.0_6.yml deleted file mode 100644 index 77a1a8aae4e..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: drl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/drl-1.0_7.RULE b/src/licensedcode/data/rules/drl-1.0_7.RULE index ac0c3458041..5c6c5ae4b1b 100644 --- a/src/licensedcode/data/rules/drl-1.0_7.RULE +++ b/src/licensedcode/data/rules/drl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: drl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Detection Rule License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_7.yml b/src/licensedcode/data/rules/drl-1.0_7.yml deleted file mode 100644 index 77a1a8aae4e..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: drl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/drl-1.0_8.RULE b/src/licensedcode/data/rules/drl-1.0_8.RULE index 506fc5d96b2..d49cd3291ae 100644 --- a/src/licensedcode/data/rules/drl-1.0_8.RULE +++ b/src/licensedcode/data/rules/drl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: drl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: DRL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_8.yml b/src/licensedcode/data/rules/drl-1.0_8.yml deleted file mode 100644 index 77a1a8aae4e..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: drl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/drl-1.0_9.RULE b/src/licensedcode/data/rules/drl-1.0_9.RULE index c02d6f92738..2894abb8937 100644 --- a/src/licensedcode/data/rules/drl-1.0_9.RULE +++ b/src/licensedcode/data/rules/drl-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: drl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/DRL-1.0 +--- + https://licenses.nuget.org/DRL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/drl-1.0_9.yml b/src/licensedcode/data/rules/drl-1.0_9.yml deleted file mode 100644 index 06626f853e3..00000000000 --- a/src/licensedcode/data/rules/drl-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: drl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/DRL-1.0 diff --git a/src/licensedcode/data/rules/dsdp_1.RULE b/src/licensedcode/data/rules/dsdp_1.RULE index b2d211523d6..0068d867f80 100644 --- a/src/licensedcode/data/rules/dsdp_1.RULE +++ b/src/licensedcode/data/rules/dsdp_1.RULE @@ -1 +1,10 @@ +--- +license_expression: dsdp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DSDP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_1.yml b/src/licensedcode/data/rules/dsdp_1.yml deleted file mode 100644 index b8e4824523f..00000000000 --- a/src/licensedcode/data/rules/dsdp_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dsdp_10.RULE b/src/licensedcode/data/rules/dsdp_10.RULE index a6037aefd99..1829df03111 100644 --- a/src/licensedcode/data/rules/dsdp_10.RULE +++ b/src/licensedcode/data/rules/dsdp_10.RULE @@ -1 +1,9 @@ +--- +license_expression: dsdp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DSDP +--- + {{DSDP}} https://spdx.org/licenses/DSDP \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_10.yml b/src/licensedcode/data/rules/dsdp_10.yml deleted file mode 100644 index fb9a31689a8..00000000000 --- a/src/licensedcode/data/rules/dsdp_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DSDP diff --git a/src/licensedcode/data/rules/dsdp_11.RULE b/src/licensedcode/data/rules/dsdp_11.RULE index ee2cfdc5c1d..aee36675b20 100644 --- a/src/licensedcode/data/rules/dsdp_11.RULE +++ b/src/licensedcode/data/rules/dsdp_11.RULE @@ -1 +1,9 @@ +--- +license_expression: dsdp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/DSDP +--- + LICENSE {{DSDP}} https://spdx.org/licenses/DSDP \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_11.yml b/src/licensedcode/data/rules/dsdp_11.yml deleted file mode 100644 index fb9a31689a8..00000000000 --- a/src/licensedcode/data/rules/dsdp_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/DSDP diff --git a/src/licensedcode/data/rules/dsdp_2.RULE b/src/licensedcode/data/rules/dsdp_2.RULE index 1ac02b9ba80..468a52def24 100644 --- a/src/licensedcode/data/rules/dsdp_2.RULE +++ b/src/licensedcode/data/rules/dsdp_2.RULE @@ -1 +1,10 @@ +--- +license_expression: dsdp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: DSDP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_2.yml b/src/licensedcode/data/rules/dsdp_2.yml deleted file mode 100644 index b8e4824523f..00000000000 --- a/src/licensedcode/data/rules/dsdp_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dsdp_3.RULE b/src/licensedcode/data/rules/dsdp_3.RULE index 4e8ae073207..3216e0e83af 100644 --- a/src/licensedcode/data/rules/dsdp_3.RULE +++ b/src/licensedcode/data/rules/dsdp_3.RULE @@ -1 +1,10 @@ +--- +license_expression: dsdp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DSDP DSDP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_3.yml b/src/licensedcode/data/rules/dsdp_3.yml deleted file mode 100644 index b8e4824523f..00000000000 --- a/src/licensedcode/data/rules/dsdp_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dsdp_4.RULE b/src/licensedcode/data/rules/dsdp_4.RULE index d9eca5ba450..62addeb60ed 100644 --- a/src/licensedcode/data/rules/dsdp_4.RULE +++ b/src/licensedcode/data/rules/dsdp_4.RULE @@ -1 +1,10 @@ +--- +license_expression: dsdp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + DSDP License DSDP \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_4.yml b/src/licensedcode/data/rules/dsdp_4.yml deleted file mode 100644 index b8e4824523f..00000000000 --- a/src/licensedcode/data/rules/dsdp_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dsdp_5.RULE b/src/licensedcode/data/rules/dsdp_5.RULE index 7f3a0d27a4a..69000ecd84e 100644 --- a/src/licensedcode/data/rules/dsdp_5.RULE +++ b/src/licensedcode/data/rules/dsdp_5.RULE @@ -1 +1,10 @@ +--- +license_expression: dsdp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: DSDP \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_5.yml b/src/licensedcode/data/rules/dsdp_5.yml deleted file mode 100644 index c09c4e187a4..00000000000 --- a/src/licensedcode/data/rules/dsdp_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dsdp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dsdp_6.RULE b/src/licensedcode/data/rules/dsdp_6.RULE index 38c4fad5024..055e3769c24 100644 --- a/src/licensedcode/data/rules/dsdp_6.RULE +++ b/src/licensedcode/data/rules/dsdp_6.RULE @@ -1 +1,10 @@ +--- +license_expression: dsdp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: DSDP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_6.yml b/src/licensedcode/data/rules/dsdp_6.yml deleted file mode 100644 index c09c4e187a4..00000000000 --- a/src/licensedcode/data/rules/dsdp_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dsdp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dsdp_7.RULE b/src/licensedcode/data/rules/dsdp_7.RULE index 2a2ba58b726..c764a2da9f1 100644 --- a/src/licensedcode/data/rules/dsdp_7.RULE +++ b/src/licensedcode/data/rules/dsdp_7.RULE @@ -1 +1,10 @@ +--- +license_expression: dsdp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: DSDP \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_7.yml b/src/licensedcode/data/rules/dsdp_7.yml deleted file mode 100644 index c09c4e187a4..00000000000 --- a/src/licensedcode/data/rules/dsdp_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dsdp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dsdp_8.RULE b/src/licensedcode/data/rules/dsdp_8.RULE index d60a6ec8ea5..caebff2552b 100644 --- a/src/licensedcode/data/rules/dsdp_8.RULE +++ b/src/licensedcode/data/rules/dsdp_8.RULE @@ -1 +1,9 @@ +--- +license_expression: dsdp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/DSDP +--- + https://licenses.nuget.org/DSDP \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_8.yml b/src/licensedcode/data/rules/dsdp_8.yml deleted file mode 100644 index bbfd854820d..00000000000 --- a/src/licensedcode/data/rules/dsdp_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/DSDP diff --git a/src/licensedcode/data/rules/dsdp_9.RULE b/src/licensedcode/data/rules/dsdp_9.RULE index 3be84e6d259..5e50fd6672f 100644 --- a/src/licensedcode/data/rules/dsdp_9.RULE +++ b/src/licensedcode/data/rules/dsdp_9.RULE @@ -1 +1,7 @@ +--- +license_expression: dsdp +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/DSDP \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_9.yml b/src/licensedcode/data/rules/dsdp_9.yml deleted file mode 100644 index e2208a2e87b..00000000000 --- a/src/licensedcode/data/rules/dsdp_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dsdp_url_1.RULE b/src/licensedcode/data/rules/dsdp_url_1.RULE index ed47b163260..60c07b311b1 100644 --- a/src/licensedcode/data/rules/dsdp_url_1.RULE +++ b/src/licensedcode/data/rules/dsdp_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: dsdp +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/dsdp +--- + https://spdx.org/licenses/dsdp \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_url_1.yml b/src/licensedcode/data/rules/dsdp_url_1.yml deleted file mode 100644 index fe6bd0f1b48..00000000000 --- a/src/licensedcode/data/rules/dsdp_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/dsdp diff --git a/src/licensedcode/data/rules/dsdp_url_2.RULE b/src/licensedcode/data/rules/dsdp_url_2.RULE index e3dfe712b9b..3bff3fc3f33 100644 --- a/src/licensedcode/data/rules/dsdp_url_2.RULE +++ b/src/licensedcode/data/rules/dsdp_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: dsdp +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/dsdp.html +--- + https://spdx.org/licenses/dsdp.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/dsdp_url_2.yml b/src/licensedcode/data/rules/dsdp_url_2.yml deleted file mode 100644 index 9325aab1aec..00000000000 --- a/src/licensedcode/data/rules/dsdp_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dsdp -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/dsdp.html diff --git a/src/licensedcode/data/rules/dshell_mit_or_public.RULE b/src/licensedcode/data/rules/dshell_mit_or_public.RULE index 2562178a49c..20413ffff44 100644 --- a/src/licensedcode/data/rules/dshell_mit_or_public.RULE +++ b/src/licensedcode/data/rules/dshell_mit_or_public.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit AND us-govt-public-domain +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + This project constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC 105. @@ -17,4 +24,4 @@ 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. +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dshell_mit_or_public.yml b/src/licensedcode/data/rules/dshell_mit_or_public.yml deleted file mode 100644 index 8e6f6e23e88..00000000000 --- a/src/licensedcode/data/rules/dshell_mit_or_public.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND us-govt-public-domain -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/dshell_public.RULE b/src/licensedcode/data/rules/dshell_public.RULE index 85d0db33f3f..ee8380d1cc3 100644 --- a/src/licensedcode/data/rules/dshell_public.RULE +++ b/src/licensedcode/data/rules/dshell_public.RULE @@ -1,2 +1,7 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +--- + This project constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC 105. \ No newline at end of file diff --git a/src/licensedcode/data/rules/dshell_public.yml b/src/licensedcode/data/rules/dshell_public.yml deleted file mode 100644 index d617b120606..00000000000 --- a/src/licensedcode/data/rules/dshell_public.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/dtree.RULE b/src/licensedcode/data/rules/dtree.RULE index 9ee1a69bab4..bd9df323457 100644 --- a/src/licensedcode/data/rules/dtree.RULE +++ b/src/licensedcode/data/rules/dtree.RULE @@ -1 +1,9 @@ +--- +license_expression: dtree +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://destroydrop.com/javascripts/tree/ +--- + http://destroydrop.com/javascripts/tree/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/dtree.yml b/src/licensedcode/data/rules/dtree.yml deleted file mode 100644 index 2346f2ae31a..00000000000 --- a/src/licensedcode/data/rules/dtree.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dtree -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://destroydrop.com/javascripts/tree/ diff --git a/src/licensedcode/data/rules/dvipdfm_1.RULE b/src/licensedcode/data/rules/dvipdfm_1.RULE index f092f91d454..ab81731dc1b 100644 --- a/src/licensedcode/data/rules/dvipdfm_1.RULE +++ b/src/licensedcode/data/rules/dvipdfm_1.RULE @@ -1 +1,10 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + dvipdfm License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_1.yml b/src/licensedcode/data/rules/dvipdfm_1.yml deleted file mode 100644 index 4e282f15249..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dvipdfm_10.RULE b/src/licensedcode/data/rules/dvipdfm_10.RULE index 21d2262afdf..a112e9c43ed 100644 --- a/src/licensedcode/data/rules/dvipdfm_10.RULE +++ b/src/licensedcode/data/rules/dvipdfm_10.RULE @@ -1 +1,9 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/dvipdfm +--- + LICENSE {{dvipdfm}} https://spdx.org/licenses/dvipdfm \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_10.yml b/src/licensedcode/data/rules/dvipdfm_10.yml deleted file mode 100644 index 3b6f285b313..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/dvipdfm diff --git a/src/licensedcode/data/rules/dvipdfm_11.RULE b/src/licensedcode/data/rules/dvipdfm_11.RULE index 632198adbd7..1225458956b 100644 --- a/src/licensedcode/data/rules/dvipdfm_11.RULE +++ b/src/licensedcode/data/rules/dvipdfm_11.RULE @@ -1 +1,9 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/dvipdfm +--- + {{dvipdfm}} https://spdx.org/licenses/dvipdfm \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_11.yml b/src/licensedcode/data/rules/dvipdfm_11.yml deleted file mode 100644 index 3b6f285b313..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/dvipdfm diff --git a/src/licensedcode/data/rules/dvipdfm_2.RULE b/src/licensedcode/data/rules/dvipdfm_2.RULE index 621bac71727..c48c7f867ec 100644 --- a/src/licensedcode/data/rules/dvipdfm_2.RULE +++ b/src/licensedcode/data/rules/dvipdfm_2.RULE @@ -1 +1,10 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: dvipdfm License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_2.yml b/src/licensedcode/data/rules/dvipdfm_2.yml deleted file mode 100644 index 4e282f15249..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dvipdfm_3.RULE b/src/licensedcode/data/rules/dvipdfm_3.RULE index 92658cd1ac4..c445672216b 100644 --- a/src/licensedcode/data/rules/dvipdfm_3.RULE +++ b/src/licensedcode/data/rules/dvipdfm_3.RULE @@ -1 +1,10 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + dvipdfm dvipdfm License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_3.yml b/src/licensedcode/data/rules/dvipdfm_3.yml deleted file mode 100644 index 4e282f15249..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dvipdfm_4.RULE b/src/licensedcode/data/rules/dvipdfm_4.RULE index 3beb926bc3d..30dc5314a83 100644 --- a/src/licensedcode/data/rules/dvipdfm_4.RULE +++ b/src/licensedcode/data/rules/dvipdfm_4.RULE @@ -1 +1,10 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + dvipdfm License dvipdfm \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_4.yml b/src/licensedcode/data/rules/dvipdfm_4.yml deleted file mode 100644 index 4e282f15249..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dvipdfm_5.RULE b/src/licensedcode/data/rules/dvipdfm_5.RULE index afe370e80c1..4e7f6c6f921 100644 --- a/src/licensedcode/data/rules/dvipdfm_5.RULE +++ b/src/licensedcode/data/rules/dvipdfm_5.RULE @@ -1 +1,10 @@ +--- +license_expression: dvipdfm +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: dvipdfm \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_5.yml b/src/licensedcode/data/rules/dvipdfm_5.yml deleted file mode 100644 index c93c04435ae..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dvipdfm -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dvipdfm_6.RULE b/src/licensedcode/data/rules/dvipdfm_6.RULE index cfb99adbefb..92a04e082ea 100644 --- a/src/licensedcode/data/rules/dvipdfm_6.RULE +++ b/src/licensedcode/data/rules/dvipdfm_6.RULE @@ -1 +1,10 @@ +--- +license_expression: dvipdfm +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: dvipdfm License \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_6.yml b/src/licensedcode/data/rules/dvipdfm_6.yml deleted file mode 100644 index c93c04435ae..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dvipdfm -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dvipdfm_7.RULE b/src/licensedcode/data/rules/dvipdfm_7.RULE index ac21340c4f4..38e1dbc2d00 100644 --- a/src/licensedcode/data/rules/dvipdfm_7.RULE +++ b/src/licensedcode/data/rules/dvipdfm_7.RULE @@ -1 +1,10 @@ +--- +license_expression: dvipdfm +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: dvipdfm \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_7.yml b/src/licensedcode/data/rules/dvipdfm_7.yml deleted file mode 100644 index c93c04435ae..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: dvipdfm -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/dvipdfm_8.RULE b/src/licensedcode/data/rules/dvipdfm_8.RULE index 88a8e082fd0..8f3ad2f289a 100644 --- a/src/licensedcode/data/rules/dvipdfm_8.RULE +++ b/src/licensedcode/data/rules/dvipdfm_8.RULE @@ -1 +1,9 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/dvipdfm +--- + https://licenses.nuget.org/dvipdfm \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_8.yml b/src/licensedcode/data/rules/dvipdfm_8.yml deleted file mode 100644 index 1023b3f1c67..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/dvipdfm diff --git a/src/licensedcode/data/rules/dvipdfm_9.RULE b/src/licensedcode/data/rules/dvipdfm_9.RULE index c27160b9d71..805746281c8 100644 --- a/src/licensedcode/data/rules/dvipdfm_9.RULE +++ b/src/licensedcode/data/rules/dvipdfm_9.RULE @@ -1 +1,7 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/dvipdfm \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_9.yml b/src/licensedcode/data/rules/dvipdfm_9.yml deleted file mode 100644 index f3c99dfe226..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/dvipdfm_url_1.RULE b/src/licensedcode/data/rules/dvipdfm_url_1.RULE index 7d5c4bae254..eed23035161 100644 --- a/src/licensedcode/data/rules/dvipdfm_url_1.RULE +++ b/src/licensedcode/data/rules/dvipdfm_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/dvipdfm +--- + https://spdx.org/licenses/dvipdfm \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_url_1.yml b/src/licensedcode/data/rules/dvipdfm_url_1.yml deleted file mode 100644 index 9f2b0c41a82..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/dvipdfm diff --git a/src/licensedcode/data/rules/dvipdfm_url_2.RULE b/src/licensedcode/data/rules/dvipdfm_url_2.RULE index 3242538b8bb..82a3bb22acb 100644 --- a/src/licensedcode/data/rules/dvipdfm_url_2.RULE +++ b/src/licensedcode/data/rules/dvipdfm_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: dvipdfm +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/dvipdfm.html +--- + https://spdx.org/licenses/dvipdfm.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/dvipdfm_url_2.yml b/src/licensedcode/data/rules/dvipdfm_url_2.yml deleted file mode 100644 index 5b75872ff82..00000000000 --- a/src/licensedcode/data/rules/dvipdfm_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dvipdfm -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/dvipdfm.html diff --git a/src/licensedcode/data/rules/dwtfnmfpl-3.0_1.RULE b/src/licensedcode/data/rules/dwtfnmfpl-3.0_1.RULE index ac16566e719..af052d33d4e 100644 --- a/src/licensedcode/data/rules/dwtfnmfpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/dwtfnmfpl-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: dwtfnmfpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/dittodhole/WTFNMFPLv3 +--- + https://github.com/dittodhole/WTFNMFPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/dwtfnmfpl-3.0_1.yml b/src/licensedcode/data/rules/dwtfnmfpl-3.0_1.yml deleted file mode 100644 index c36c842f5af..00000000000 --- a/src/licensedcode/data/rules/dwtfnmfpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: dwtfnmfpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/dittodhole/WTFNMFPLv3 diff --git a/src/licensedcode/data/rules/ecl-1.0.RULE b/src/licensedcode/data/rules/ecl-1.0.RULE index b6db964faa1..749a3aa0b85 100644 --- a/src/licensedcode/data/rules/ecl-1.0.RULE +++ b/src/licensedcode/data/rules/ecl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ecl1.php +--- + http://opensource.org/licenses/ecl1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0.SPDX.RULE b/src/licensedcode/data/rules/ecl-1.0.SPDX.RULE index edd66c862d7..50cedaa38ca 100644 --- a/src/licensedcode/data/rules/ecl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/ecl-1.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ecl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + This Educational Community License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following diff --git a/src/licensedcode/data/rules/ecl-1.0.SPDX.yml b/src/licensedcode/data/rules/ecl-1.0.SPDX.yml deleted file mode 100644 index 4eeffe06f50..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ecl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/ecl-1.0.yml b/src/licensedcode/data/rules/ecl-1.0.yml deleted file mode 100644 index c35d65d4bb2..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ecl1.php diff --git a/src/licensedcode/data/rules/ecl-1.0_1.RULE b/src/licensedcode/data/rules/ecl-1.0_1.RULE index d404ac83768..2641a874789 100644 --- a/src/licensedcode/data/rules/ecl-1.0_1.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ecl1.php +--- + http://www.opensource.org/licenses/ecl1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_1.yml b/src/licensedcode/data/rules/ecl-1.0_1.yml deleted file mode 100644 index b349f9d2f24..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ecl1.php diff --git a/src/licensedcode/data/rules/ecl-1.0_10.RULE b/src/licensedcode/data/rules/ecl-1.0_10.RULE index f03a15338f8..200d7e11696 100644 --- a/src/licensedcode/data/rules/ecl-1.0_10.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Educational Community License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_10.yml b/src/licensedcode/data/rules/ecl-1.0_10.yml deleted file mode 100644 index c31a8fe2fbb..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-1.0_11.RULE b/src/licensedcode/data/rules/ecl-1.0_11.RULE index 28bf43e4cdb..0ff67a4a549 100644 --- a/src/licensedcode/data/rules/ecl-1.0_11.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ECL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_11.yml b/src/licensedcode/data/rules/ecl-1.0_11.yml deleted file mode 100644 index c31a8fe2fbb..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-1.0_12.RULE b/src/licensedcode/data/rules/ecl-1.0_12.RULE index c8a13aebcef..38b74e164c4 100644 --- a/src/licensedcode/data/rules/ecl-1.0_12.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ECL-1.0 +--- + https://licenses.nuget.org/ECL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_12.yml b/src/licensedcode/data/rules/ecl-1.0_12.yml deleted file mode 100644 index 84797a4d406..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ECL-1.0 diff --git a/src/licensedcode/data/rules/ecl-1.0_13.RULE b/src/licensedcode/data/rules/ecl-1.0_13.RULE index ff14b07e408..381bbc4bb05 100644 --- a/src/licensedcode/data/rules/ecl-1.0_13.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ECL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_13.yml b/src/licensedcode/data/rules/ecl-1.0_13.yml deleted file mode 100644 index 8c01781da8f..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecl-1.0_14.RULE b/src/licensedcode/data/rules/ecl-1.0_14.RULE index 302e0884c90..8857fe367a8 100644 --- a/src/licensedcode/data/rules/ecl-1.0_14.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ECL-1.0 +--- + LICENSE {{ECL-1.0}} https://spdx.org/licenses/ECL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_14.yml b/src/licensedcode/data/rules/ecl-1.0_14.yml deleted file mode 100644 index e2176e12fdb..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ECL-1.0 diff --git a/src/licensedcode/data/rules/ecl-1.0_15.RULE b/src/licensedcode/data/rules/ecl-1.0_15.RULE index 4a054f9bf3e..2bf86e6a934 100644 --- a/src/licensedcode/data/rules/ecl-1.0_15.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ECL-1.0 +--- + {{ECL-1.0}} https://spdx.org/licenses/ECL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_15.yml b/src/licensedcode/data/rules/ecl-1.0_15.yml deleted file mode 100644 index e2176e12fdb..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ECL-1.0 diff --git a/src/licensedcode/data/rules/ecl-1.0_2.RULE b/src/licensedcode/data/rules/ecl-1.0_2.RULE index 779e6298c40..75be819d821 100644 --- a/src/licensedcode/data/rules/ecl-1.0_2.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +--- + Educational Community License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_2.yml b/src/licensedcode/data/rules/ecl-1.0_2.yml deleted file mode 100644 index 8c01781da8f..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecl-1.0_3.RULE b/src/licensedcode/data/rules/ecl-1.0_3.RULE index 6424b95345b..165643e8119 100644 --- a/src/licensedcode/data/rules/ecl-1.0_3.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_3.RULE @@ -1,2 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_notice: yes +ignorable_urls: + - http://rted.public.iastate.edu/license.txt +--- + Licensed under the Educational Community License version 1.0. See the full agreement at http://rted.public.iastate.edu/license.txt . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_3.yml b/src/licensedcode/data/rules/ecl-1.0_3.yml deleted file mode 100644 index 75058de8d4a..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ecl-1.0 -is_license_notice: yes -ignorable_urls: - - http://rted.public.iastate.edu/license.txt diff --git a/src/licensedcode/data/rules/ecl-1.0_4.RULE b/src/licensedcode/data/rules/ecl-1.0_4.RULE index 3cef6ce4006..b52c6a24385 100644 --- a/src/licensedcode/data/rules/ecl-1.0_4.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_4.RULE @@ -1 +1,7 @@ - Licensed under the Educational Community License version 1.0. +--- +license_expression: ecl-1.0 +is_license_notice: yes +relevance: 100 +--- + + Licensed under the Educational Community License version 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_4.yml b/src/licensedcode/data/rules/ecl-1.0_4.yml deleted file mode 100644 index e31fbff69f7..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecl-1.0_5.RULE b/src/licensedcode/data/rules/ecl-1.0_5.RULE index f1dd83c12a5..a822002612f 100644 --- a/src/licensedcode/data/rules/ecl-1.0_5.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +--- + Educational Community License version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_5.yml b/src/licensedcode/data/rules/ecl-1.0_5.yml deleted file mode 100644 index 8c01781da8f..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecl-1.0_6.RULE b/src/licensedcode/data/rules/ecl-1.0_6.RULE index d31eb1440d3..4d1338a2903 100644 --- a/src/licensedcode/data/rules/ecl-1.0_6.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Educational Community License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_6.yml b/src/licensedcode/data/rules/ecl-1.0_6.yml deleted file mode 100644 index cc0aee11f6a..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-1.0_7.RULE b/src/licensedcode/data/rules/ecl-1.0_7.RULE index b3e4654c54b..af0595a2360 100644 --- a/src/licensedcode/data/rules/ecl-1.0_7.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ECL-1.0 Educational Community License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_7.yml b/src/licensedcode/data/rules/ecl-1.0_7.yml deleted file mode 100644 index cc0aee11f6a..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-1.0_8.RULE b/src/licensedcode/data/rules/ecl-1.0_8.RULE index 3b1486965ff..f2c04736546 100644 --- a/src/licensedcode/data/rules/ecl-1.0_8.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Educational Community License v1.0 ECL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_8.yml b/src/licensedcode/data/rules/ecl-1.0_8.yml deleted file mode 100644 index cc0aee11f6a..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-1.0_9.RULE b/src/licensedcode/data/rules/ecl-1.0_9.RULE index e1cef2571ab..8b10282a2af 100644 --- a/src/licensedcode/data/rules/ecl-1.0_9.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ECL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_9.yml b/src/licensedcode/data/rules/ecl-1.0_9.yml deleted file mode 100644 index c31a8fe2fbb..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-1.0_url_1.RULE b/src/licensedcode/data/rules/ecl-1.0_url_1.RULE index c2c8527a02f..5806a7f9542 100644 --- a/src/licensedcode/data/rules/ecl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ecl-1.0 +--- + https://spdx.org/licenses/ecl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_url_1.yml b/src/licensedcode/data/rules/ecl-1.0_url_1.yml deleted file mode 100644 index 4c280f6a12c..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ecl-1.0 diff --git a/src/licensedcode/data/rules/ecl-1.0_url_2.RULE b/src/licensedcode/data/rules/ecl-1.0_url_2.RULE index 539eb455de4..2d19b2947fa 100644 --- a/src/licensedcode/data/rules/ecl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ecl-1.0.html +--- + https://spdx.org/licenses/ecl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_url_2.yml b/src/licensedcode/data/rules/ecl-1.0_url_2.yml deleted file mode 100644 index b38b48f2f79..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ecl-1.0.html diff --git a/src/licensedcode/data/rules/ecl-1.0_url_glc_76.RULE b/src/licensedcode/data/rules/ecl-1.0_url_glc_76.RULE index eeaaad8aa9c..87377d4e36d 100644 --- a/src/licensedcode/data/rules/ecl-1.0_url_glc_76.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_url_glc_76.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ecl-1.0 +--- + http://opensource.org/licenses/ecl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_url_glc_76.yml b/src/licensedcode/data/rules/ecl-1.0_url_glc_76.yml deleted file mode 100644 index 19e48bb62a1..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_url_glc_76.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ecl-1.0 diff --git a/src/licensedcode/data/rules/ecl-1.0_url_glc_77.RULE b/src/licensedcode/data/rules/ecl-1.0_url_glc_77.RULE index 7c40003a12d..aae95718ca8 100644 --- a/src/licensedcode/data/rules/ecl-1.0_url_glc_77.RULE +++ b/src/licensedcode/data/rules/ecl-1.0_url_glc_77.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/ecl-1.0 +--- + https://opensource.org/licenses/ecl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-1.0_url_glc_77.yml b/src/licensedcode/data/rules/ecl-1.0_url_glc_77.yml deleted file mode 100644 index 6c102ea39d5..00000000000 --- a/src/licensedcode/data/rules/ecl-1.0_url_glc_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/ecl-1.0 diff --git a/src/licensedcode/data/rules/ecl-2.0.RULE b/src/licensedcode/data/rules/ecl-2.0.RULE index a057eed7710..049386d90f5 100644 --- a/src/licensedcode/data/rules/ecl-2.0.RULE +++ b/src/licensedcode/data/rules/ecl-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ecl2.php +--- + http://opensource.org/licenses/ecl2.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0.SPDX.RULE b/src/licensedcode/data/rules/ecl-2.0.SPDX.RULE index 6b1ba301049..9ad4bc46ee4 100644 --- a/src/licensedcode/data/rules/ecl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/ecl-2.0.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ecl-2.0 +is_license_text: yes +minimum_coverage: 70 +notes: license text as published by SPDX +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.osedu.org/licenses/ + - http://www.osedu.org/licenses/ECL-2.0 +--- + Educational Community License, Version 2.0 Educational Community License diff --git a/src/licensedcode/data/rules/ecl-2.0.SPDX.yml b/src/licensedcode/data/rules/ecl-2.0.SPDX.yml deleted file mode 100644 index 67aed604d14..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ecl-2.0 -is_license_text: yes -minimum_coverage: 70 -notes: license text as published by SPDX -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.osedu.org/licenses/ - - http://www.osedu.org/licenses/ECL-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0.yml b/src/licensedcode/data/rules/ecl-2.0.yml deleted file mode 100644 index e19f58399fe..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ecl2.php diff --git a/src/licensedcode/data/rules/ecl-2.0_1.RULE b/src/licensedcode/data/rules/ecl-2.0_1.RULE index 8fac21ce07c..4fdd04787b3 100644 --- a/src/licensedcode/data/rules/ecl-2.0_1.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ecl2.php +--- + http://www.opensource.org/licenses/ecl2.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_1.yml b/src/licensedcode/data/rules/ecl-2.0_1.yml deleted file mode 100644 index 6011037bd4f..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ecl2.php diff --git a/src/licensedcode/data/rules/ecl-2.0_10.RULE b/src/licensedcode/data/rules/ecl-2.0_10.RULE index d7591f75a13..dba8cd23278 100644 --- a/src/licensedcode/data/rules/ecl-2.0_10.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_10.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ecl-2.0 +is_license_text: yes +minimum_coverage: 70 +notes: license text as published by SPDX +ignorable_urls: + - http://www.osedu.org/licenses/ + - http://www.osedu.org/licenses/ECL-2.0 + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Educational Community License, Version 2.0 Educational Community License diff --git a/src/licensedcode/data/rules/ecl-2.0_10.yml b/src/licensedcode/data/rules/ecl-2.0_10.yml deleted file mode 100644 index 5a42f1c2168..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ecl-2.0 -is_license_text: yes -minimum_coverage: 70 -notes: license text as published by SPDX -ignorable_urls: - - http://www.osedu.org/licenses/ - - http://www.osedu.org/licenses/ECL-2.0 - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_11.RULE b/src/licensedcode/data/rules/ecl-2.0_11.RULE index ae1771895c5..bc4af810500 100644 --- a/src/licensedcode/data/rules/ecl-2.0_11.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_11.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ecl-2.0 +is_license_text: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.osedu.org/licenses/ECL-2.0 + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Educational Community License Version 2.0, April 2007 @@ -189,5 +198,4 @@ 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. - +permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_11.yml b/src/licensedcode/data/rules/ecl-2.0_11.yml deleted file mode 100644 index 20a077a9b5a..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-2.0 -is_license_text: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.osedu.org/licenses/ECL-2.0 - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_12.RULE b/src/licensedcode/data/rules/ecl-2.0_12.RULE index e4b52f29257..a79c9d503c7 100644 --- a/src/licensedcode/data/rules/ecl-2.0_12.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ecl-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + The Educational Community License version 2.0 ("ECL") consists of the Apache 2.0 license, modified to change the scope of the patent grant in section 3 to be specific to the needs of the education communities using this license. The @@ -161,4 +169,4 @@ 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. \ No newline at end of file +such warranty or additional liability. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_12.yml b/src/licensedcode/data/rules/ecl-2.0_12.yml deleted file mode 100644 index 50746c230b8..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_13.RULE b/src/licensedcode/data/rules/ecl-2.0_13.RULE index 80115b1f937..e692bd7680a 100644 --- a/src/licensedcode/data/rules/ecl-2.0_13.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ECL-2.0 Educational Community License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_13.yml b/src/licensedcode/data/rules/ecl-2.0_13.yml deleted file mode 100644 index 172bd1aa6b1..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ecl-2.0_14.RULE b/src/licensedcode/data/rules/ecl-2.0_14.RULE index 66f977c917c..05fa5bf6b70 100644 --- a/src/licensedcode/data/rules/ecl-2.0_14.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Educational Community License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_14.yml b/src/licensedcode/data/rules/ecl-2.0_14.yml deleted file mode 100644 index 61341696e3a..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-2.0_15.RULE b/src/licensedcode/data/rules/ecl-2.0_15.RULE index ad74685077f..4124664f68e 100644 --- a/src/licensedcode/data/rules/ecl-2.0_15.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Educational Community License v2.0 ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_15.yml b/src/licensedcode/data/rules/ecl-2.0_15.yml deleted file mode 100644 index 61341696e3a..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-2.0_16.RULE b/src/licensedcode/data/rules/ecl-2.0_16.RULE index c34f5a9f4a1..1ebdd284dac 100644 --- a/src/licensedcode/data/rules/ecl-2.0_16.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_16.yml b/src/licensedcode/data/rules/ecl-2.0_16.yml deleted file mode 100644 index 1204ee61659..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-2.0_17.RULE b/src/licensedcode/data/rules/ecl-2.0_17.RULE index e35c79c10d8..7c49a883b72 100644 --- a/src/licensedcode/data/rules/ecl-2.0_17.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Educational Community License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_17.yml b/src/licensedcode/data/rules/ecl-2.0_17.yml deleted file mode 100644 index 1204ee61659..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-2.0_18.RULE b/src/licensedcode/data/rules/ecl-2.0_18.RULE index 9fd86f1f829..5412c453076 100644 --- a/src/licensedcode/data/rules/ecl-2.0_18.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_18.yml b/src/licensedcode/data/rules/ecl-2.0_18.yml deleted file mode 100644 index 1204ee61659..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecl-2.0_19.RULE b/src/licensedcode/data/rules/ecl-2.0_19.RULE index b0581dcc93e..7aaf422e4f0 100644 --- a/src/licensedcode/data/rules/ecl-2.0_19.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/Educational_Community_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_19.yml b/src/licensedcode/data/rules/ecl-2.0_19.yml deleted file mode 100644 index e5e2a5ad6c6..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ecl-2.0_2.RULE b/src/licensedcode/data/rules/ecl-2.0_2.RULE index d8a3bfbf3a1..e2da081f282 100644 --- a/src/licensedcode/data/rules/ecl-2.0_2.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +--- + Educational Community License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_2.yml b/src/licensedcode/data/rules/ecl-2.0_2.yml deleted file mode 100644 index 29eb6a7c1d3..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecl-2.0_20.RULE b/src/licensedcode/data/rules/ecl-2.0_20.RULE index 90bf592c549..33f7856549a 100644 --- a/src/licensedcode/data/rules/ecl-2.0_20.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ECL-2.0 +--- + https://licenses.nuget.org/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_20.yml b/src/licensedcode/data/rules/ecl-2.0_20.yml deleted file mode 100644 index 3a1f0655909..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ECL-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_21.RULE b/src/licensedcode/data/rules/ecl-2.0_21.RULE index 9a4b7ed13bb..5be5d27c41c 100644 --- a/src/licensedcode/data/rules/ecl-2.0_21.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_21.yml b/src/licensedcode/data/rules/ecl-2.0_21.yml deleted file mode 100644 index 29eb6a7c1d3..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecl-2.0_22.RULE b/src/licensedcode/data/rules/ecl-2.0_22.RULE index db8e0e1fd20..dcafc79654c 100644 --- a/src/licensedcode/data/rules/ecl-2.0_22.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ECL-2.0 +--- + LICENSE {{ECL-2.0}} https://spdx.org/licenses/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_22.yml b/src/licensedcode/data/rules/ecl-2.0_22.yml deleted file mode 100644 index 115610104a8..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ECL-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_23.RULE b/src/licensedcode/data/rules/ecl-2.0_23.RULE index 70f177bd286..85dd74bd70b 100644 --- a/src/licensedcode/data/rules/ecl-2.0_23.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ECL-2.0 +--- + {{ECL-2.0}} https://spdx.org/licenses/ECL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_23.yml b/src/licensedcode/data/rules/ecl-2.0_23.yml deleted file mode 100644 index 115610104a8..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ECL-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_3.RULE b/src/licensedcode/data/rules/ecl-2.0_3.RULE index 0c69b62ffbe..907d831dfc0 100644 --- a/src/licensedcode/data/rules/ecl-2.0_3.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ecl-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.osedu.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 diff --git a/src/licensedcode/data/rules/ecl-2.0_3.yml b/src/licensedcode/data/rules/ecl-2.0_3.yml deleted file mode 100644 index 96a1e59d0e0..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.osedu.org/licenses/ECL-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_4.RULE b/src/licensedcode/data/rules/ecl-2.0_4.RULE index 4b4a6a8a3ce..aa0a490dd7c 100644 --- a/src/licensedcode/data/rules/ecl-2.0_4.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ecl-2.0 +is_license_text: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.osedu.org/licenses/ECL-2.0 +--- + Educational Community License Version 2.0, April 2007 @@ -189,5 +198,4 @@ 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. - +permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_4.yml b/src/licensedcode/data/rules/ecl-2.0_4.yml deleted file mode 100644 index 342167afc3f..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-2.0 -is_license_text: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.osedu.org/licenses/ECL-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_5.RULE b/src/licensedcode/data/rules/ecl-2.0_5.RULE index 47a0476a2dd..d4fcd773dd6 100644 --- a/src/licensedcode/data/rules/ecl-2.0_5.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ecl-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + The Educational Community License version 2.0 ("ECL") consists of the Apache 2.0 license, modified to change the scope of the patent grant in section 3 to be specific to the needs of the education communities using this license. The @@ -161,4 +169,4 @@ 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. \ No newline at end of file +such warranty or additional liability. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_5.yml b/src/licensedcode/data/rules/ecl-2.0_5.yml deleted file mode 100644 index 7b7441e89c8..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_6.RULE b/src/licensedcode/data/rules/ecl-2.0_6.RULE index 97c71e489e8..a3aa37d5126 100644 --- a/src/licensedcode/data/rules/ecl-2.0_6.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_notice: yes +minimum_coverage: 99 +--- + Any patent license granted hereby with respect to contributions by an individual employed by an institution or organization is limited to patent claims where the individual that is the author of the Work is diff --git a/src/licensedcode/data/rules/ecl-2.0_6.yml b/src/licensedcode/data/rules/ecl-2.0_6.yml deleted file mode 100644 index b60e6be1309..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecl-2.0 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/ecl-2.0_7.RULE b/src/licensedcode/data/rules/ecl-2.0_7.RULE index ce510f2d0c4..b090048b4aa 100644 --- a/src/licensedcode/data/rules/ecl-2.0_7.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/ecl-2.0 +--- + https://choosealicense.com/licenses/ecl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_7.yml b/src/licensedcode/data/rules/ecl-2.0_7.yml deleted file mode 100644 index 773672e7dd8..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/ecl-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_8.RULE b/src/licensedcode/data/rules/ecl-2.0_8.RULE index 7dcf3f7a8d3..a96fd8e362b 100644 --- a/src/licensedcode/data/rules/ecl-2.0_8.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/ecl-2.0 +--- + http://choosealicense.com/licenses/ecl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_8.yml b/src/licensedcode/data/rules/ecl-2.0_8.yml deleted file mode 100644 index 758b671a5af..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/ecl-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_9.RULE b/src/licensedcode/data/rules/ecl-2.0_9.RULE index 258c889d517..5373ca9015f 100644 --- a/src/licensedcode/data/rules/ecl-2.0_9.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ECL-2.0 +--- + `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_9.yml b/src/licensedcode/data/rules/ecl-2.0_9.yml deleted file mode 100644 index 8f2eda37057..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ECL-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_url_1.RULE b/src/licensedcode/data/rules/ecl-2.0_url_1.RULE index 8afe69dde79..95ea62a8753 100644 --- a/src/licensedcode/data/rules/ecl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ecl-2.0 +--- + https://spdx.org/licenses/ecl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_url_1.yml b/src/licensedcode/data/rules/ecl-2.0_url_1.yml deleted file mode 100644 index dbd2266cc84..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ecl-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_url_2.RULE b/src/licensedcode/data/rules/ecl-2.0_url_2.RULE index 10d8a6bfc4a..08e52c99455 100644 --- a/src/licensedcode/data/rules/ecl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ecl-2.0.html +--- + https://spdx.org/licenses/ecl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_url_2.yml b/src/licensedcode/data/rules/ecl-2.0_url_2.yml deleted file mode 100644 index 5750084b21e..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ecl-2.0.html diff --git a/src/licensedcode/data/rules/ecl-2.0_url_glc_78.RULE b/src/licensedcode/data/rules/ecl-2.0_url_glc_78.RULE index 4dbdf56ac7c..6d0011ef248 100644 --- a/src/licensedcode/data/rules/ecl-2.0_url_glc_78.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_url_glc_78.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ecl-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_url_glc_78.yml b/src/licensedcode/data/rules/ecl-2.0_url_glc_78.yml deleted file mode 100644 index 8e1b62abd3d..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_url_glc_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ecl-2.0 diff --git a/src/licensedcode/data/rules/ecl-2.0_url_glc_79.RULE b/src/licensedcode/data/rules/ecl-2.0_url_glc_79.RULE index ed5717cf18c..b36f6968a6d 100644 --- a/src/licensedcode/data/rules/ecl-2.0_url_glc_79.RULE +++ b/src/licensedcode/data/rules/ecl-2.0_url_glc_79.RULE @@ -1 +1,9 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/ecl-2.0 +--- + https://opensource.org/licenses/ecl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecl-2.0_url_glc_79.yml b/src/licensedcode/data/rules/ecl-2.0_url_glc_79.yml deleted file mode 100644 index 377d6c6469d..00000000000 --- a/src/licensedcode/data/rules/ecl-2.0_url_glc_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/ecl-2.0 diff --git a/src/licensedcode/data/rules/eclipse-sua-2017_1.RULE b/src/licensedcode/data/rules/eclipse-sua-2017_1.RULE index 6fa8d6afb30..c4fb25096ae 100644 --- a/src/licensedcode/data/rules/eclipse-sua-2017_1.RULE +++ b/src/licensedcode/data/rules/eclipse-sua-2017_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: eclipse-sua-2017 +is_license_text: yes +relevance: 100 +minimum_coverage: 97 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.mozilla.org/MPL/MPL-1.1.html + - https://www.eclipse.org/equinox/p2/repository_packaging.html + - https://www.eclipse.org/legal/cpl-v10.html + - https://www.eclipse.org/legal/epl-2.0 + - https://www.eclipse.org/licenses/edl-v1.0.html + - https://www.eclipse.org/licenses/edl-v10.html +--- +

Eclipse Foundation Software User Agreement

August 31, 2017

diff --git a/src/licensedcode/data/rules/eclipse-sua-2017_1.yml b/src/licensedcode/data/rules/eclipse-sua-2017_1.yml deleted file mode 100644 index a7d155f5a0c..00000000000 --- a/src/licensedcode/data/rules/eclipse-sua-2017_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: eclipse-sua-2017 -is_license_text: yes -relevance: 100 -minimum_coverage: 97 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.eclipse.org/equinox/p2/repository_packaging.html - - https://www.eclipse.org/legal/cpl-v10.html - - https://www.eclipse.org/legal/epl-2.0 - - https://www.eclipse.org/licenses/edl-v1.0.html - - https://www.eclipse.org/licenses/edl-v10.html diff --git a/src/licensedcode/data/rules/eclipse-sua-2017_2.RULE b/src/licensedcode/data/rules/eclipse-sua-2017_2.RULE index f0443aacd5a..d6939fd233d 100644 --- a/src/licensedcode/data/rules/eclipse-sua-2017_2.RULE +++ b/src/licensedcode/data/rules/eclipse-sua-2017_2.RULE @@ -1,3 +1,19 @@ +--- +license_expression: eclipse-sua-2017 +is_license_text: yes +relevance: 100 +minimum_coverage: 97 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - https://www.apache.org/licenses/LICENSE + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/equinox/p2/repository_packaging.html + - https://www.eclipse.org/legal/cpl-v10.html + - https://www.eclipse.org/legal/epl-2.0 + - https://www.eclipse.org/licenses/edl-v1.0.html + - https://www.eclipse.org/licenses/edl-v10.html +--- +

Eclipse Foundation Software User Agreement

August 31, 2017

diff --git a/src/licensedcode/data/rules/eclipse-sua-2017_2.yml b/src/licensedcode/data/rules/eclipse-sua-2017_2.yml deleted file mode 100644 index 0b2d873d2a1..00000000000 --- a/src/licensedcode/data/rules/eclipse-sua-2017_2.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: eclipse-sua-2017 -is_license_text: yes -relevance: 100 -minimum_coverage: 97 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.apache.org/licenses/LICENSE - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/equinox/p2/repository_packaging.html - - https://www.eclipse.org/legal/cpl-v10.html - - https://www.eclipse.org/legal/epl-2.0 - - https://www.eclipse.org/licenses/edl-v1.0.html - - https://www.eclipse.org/licenses/edl-v10.html diff --git a/src/licensedcode/data/rules/ecma-documentation_and_bsd-new_with_ecma-no-patent_1.RULE b/src/licensedcode/data/rules/ecma-documentation_and_bsd-new_with_ecma-no-patent_1.RULE index 7a4c5270c3f..38a035c96cc 100644 --- a/src/licensedcode/data/rules/ecma-documentation_and_bsd-new_with_ecma-no-patent_1.RULE +++ b/src/licensedcode/data/rules/ecma-documentation_and_bsd-new_with_ecma-no-patent_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ecma-documentation AND bsd-new WITH ecma-no-patent +is_license_text: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.ecma-international.org/memento/codeofconduct.htm +--- + This document and possible translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published, and distributed, in @@ -54,4 +62,4 @@ 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. +OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecma-documentation_and_bsd-new_with_ecma-no-patent_1.yml b/src/licensedcode/data/rules/ecma-documentation_and_bsd-new_with_ecma-no-patent_1.yml deleted file mode 100644 index 3773a9bc4f6..00000000000 --- a/src/licensedcode/data/rules/ecma-documentation_and_bsd-new_with_ecma-no-patent_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecma-documentation AND bsd-new WITH ecma-no-patent -is_license_text: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.ecma-international.org/memento/codeofconduct.htm diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_1.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_1.RULE index 5a3175f378e..8e40a55547f 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +--- + // 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, @@ -7,4 +12,4 @@ // General Public License v2. // // This exception does not invalidate any other reasons why a work based -// on this file might be covered by the GNU General Public License. +// on this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_1.yml b/src/licensedcode/data/rules/ecos-exception-2.0_1.yml deleted file mode 100644 index 44ba7ad362b..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_2.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_2.RULE index fca3e57c6db..77386adf119 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: eCos exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_2.yml b/src/licensedcode/data/rules/ecos-exception-2.0_2.yml deleted file mode 100644 index fb313d4e7f0..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_3.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_3.RULE index 1cb3e06cbf5..59e02a8c7c5 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + eCos-exception-2.0 eCos exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_3.yml b/src/licensedcode/data/rules/ecos-exception-2.0_3.yml deleted file mode 100644 index fb313d4e7f0..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_4.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_4.RULE index ce3f3eaa632..4889b35bef3 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ecos-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: eCos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_4.yml b/src/licensedcode/data/rules/ecos-exception-2.0_4.yml deleted file mode 100644 index dda0b658156..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_5.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_5.RULE index b12292d90b7..19ab0f32d51 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ecos-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: eCos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_5.yml b/src/licensedcode/data/rules/ecos-exception-2.0_5.yml deleted file mode 100644 index dda0b658156..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_6.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_6.RULE index f186f26aba6..20f4e75cebd 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/eCos-exception-2.0 +--- + https://licenses.nuget.org/eCos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_6.yml b/src/licensedcode/data/rules/ecos-exception-2.0_6.yml deleted file mode 100644 index a23ba527805..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/eCos-exception-2.0 diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_7.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_7.RULE index 56d73037b24..2a865ad965f 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/eCos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_7.yml b/src/licensedcode/data/rules/ecos-exception-2.0_7.yml deleted file mode 100644 index a1d8755b33c..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_8.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_8.RULE index 6ddbb2c5640..ed87eaeb71a 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/eCos-exception-2.0 +--- + {{eCos-exception-2.0}} https://spdx.org/licenses/eCos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_8.yml b/src/licensedcode/data/rules/ecos-exception-2.0_8.yml deleted file mode 100644 index 30b0cab3995..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/eCos-exception-2.0 diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_9.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_9.RULE index 4f19e84d7b6..34f77f87a44 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/eCos-exception-2.0 +--- + LICENSE {{eCos-exception-2.0}} https://spdx.org/licenses/eCos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_9.yml b/src/licensedcode/data/rules/ecos-exception-2.0_9.yml deleted file mode 100644 index 30b0cab3995..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/eCos-exception-2.0 diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_url_1.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_url_1.RULE index 915a97b98af..38abee4433d 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ecos-exception-2.0 +--- + https://spdx.org/licenses/ecos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_url_1.yml b/src/licensedcode/data/rules/ecos-exception-2.0_url_1.yml deleted file mode 100644 index 6bde8e60da1..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ecos-exception-2.0 diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_url_2.RULE b/src/licensedcode/data/rules/ecos-exception-2.0_url_2.RULE index a02ca93321e..adf05438077 100644 --- a/src/licensedcode/data/rules/ecos-exception-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/ecos-exception-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ecos-exception-2.0.html +--- + https://spdx.org/licenses/ecos-exception-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecos-exception-2.0_url_2.yml b/src/licensedcode/data/rules/ecos-exception-2.0_url_2.yml deleted file mode 100644 index e1ab23c2610..00000000000 --- a/src/licensedcode/data/rules/ecos-exception-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ecos-exception-2.0.html diff --git a/src/licensedcode/data/rules/ecosrh-1.0_1.RULE b/src/licensedcode/data/rules/ecosrh-1.0_1.RULE index 8db792b4c57..81a235e6a09 100644 --- a/src/licensedcode/data/rules/ecosrh-1.0_1.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ecosrh-1.0 +is_license_notice: yes +minimum_coverage: 75 +ignorable_urls: + - http://sourceware.cygnus.com/ecos +--- + /*####COPYRIGHTBEGIN#### */ /* */ /* ------------------------------------------- */ @@ -12,4 +20,4 @@ /* the License. */ /* */ /* */ -/*####COPYRIGHTEND#### */ +/*####COPYRIGHTEND#### */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.0_1.yml b/src/licensedcode/data/rules/ecosrh-1.0_1.yml deleted file mode 100644 index b2fac159788..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecosrh-1.0 -is_license_notice: yes -minimum_coverage: 75 -ignorable_urls: - - http://sourceware.cygnus.com/ecos diff --git a/src/licensedcode/data/rules/ecosrh-1.0_2.RULE b/src/licensedcode/data/rules/ecosrh-1.0_2.RULE index ccff270bdb2..addd3f9b539 100644 --- a/src/licensedcode/data/rules/ecosrh-1.0_2.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ecosrh-1.0 +is_license_notice: yes +ignorable_urls: + - http://sourceware.cygnus.com/ecos +--- + in the */ /* Cygnus eCos source. Here is the copyright notice: */ /* */ @@ -15,4 +22,4 @@ in the */ /* the License. */ /* */ /* */ -/*####COPYRIGHTEND#### */ +/*####COPYRIGHTEND#### */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.0_2.yml b/src/licensedcode/data/rules/ecosrh-1.0_2.yml deleted file mode 100644 index cf39fde2c13..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ecosrh-1.0 -is_license_notice: yes -ignorable_urls: - - http://sourceware.cygnus.com/ecos diff --git a/src/licensedcode/data/rules/ecosrh-1.0_3.RULE b/src/licensedcode/data/rules/ecosrh-1.0_3.RULE index b4bcadd46af..62970a47253 100644 --- a/src/licensedcode/data/rules/ecosrh-1.0_3.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.0_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ecosrh-1.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) Cygnus Solutions +ignorable_holders: + - Cygnus Solutions +ignorable_urls: + - http://sourceware.cygnus.com/ecos +--- + ###COPYRIGHTBEGIN#### */ The contents of this file are subject to the Cygnus eCos Public License */ Version 1.0 (the "License"); you may not use this file except in */ diff --git a/src/licensedcode/data/rules/ecosrh-1.0_3.yml b/src/licensedcode/data/rules/ecosrh-1.0_3.yml deleted file mode 100644 index 43b3417e375..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.0_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ecosrh-1.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) Cygnus Solutions -ignorable_holders: - - Cygnus Solutions -ignorable_urls: - - http://sourceware.cygnus.com/ecos diff --git a/src/licensedcode/data/rules/ecosrh-1.1_1.RULE b/src/licensedcode/data/rules/ecosrh-1.1_1.RULE index 8fe51e38f84..0fdf0ebb5fc 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_1.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Red Hat eCos Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_1.yml b/src/licensedcode/data/rules/ecosrh-1.1_1.yml deleted file mode 100644 index 08e7ac19071..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecosrh-1.1_10.RULE b/src/licensedcode/data/rules/ecosrh-1.1_10.RULE index 499953029c4..91583a35321 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_10.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: ecosrh-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Red Hat eCos Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_10.yml b/src/licensedcode/data/rules/ecosrh-1.1_10.yml deleted file mode 100644 index 9d5c9e8a2a8..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecosrh-1.1_11.RULE b/src/licensedcode/data/rules/ecosrh-1.1_11.RULE index 932efa960c8..7ef7b4de390 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_11.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: ecosrh-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: RHeCos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_11.yml b/src/licensedcode/data/rules/ecosrh-1.1_11.yml deleted file mode 100644 index 9d5c9e8a2a8..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecosrh-1.1_12.RULE b/src/licensedcode/data/rules/ecosrh-1.1_12.RULE index b3b227bd972..22fba2cb6a3 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_12.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/RHeCos-1.1 +--- + https://licenses.nuget.org/RHeCos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_12.yml b/src/licensedcode/data/rules/ecosrh-1.1_12.yml deleted file mode 100644 index 44831749a24..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/RHeCos-1.1 diff --git a/src/licensedcode/data/rules/ecosrh-1.1_13.RULE b/src/licensedcode/data/rules/ecosrh-1.1_13.RULE index 77b31bd7b63..b25100c7200 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_13.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_13.RULE @@ -1 +1,7 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/RHeCos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_13.yml b/src/licensedcode/data/rules/ecosrh-1.1_13.yml deleted file mode 100644 index 87cb5b72e02..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecosrh-1.1_14.RULE b/src/licensedcode/data/rules/ecosrh-1.1_14.RULE index 98ac49d71fc..dd28f37533f 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_14.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_14.RULE @@ -1 +1,9 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RHeCos-1.1 +--- + {{RHeCos-1.1}} https://spdx.org/licenses/RHeCos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_14.yml b/src/licensedcode/data/rules/ecosrh-1.1_14.yml deleted file mode 100644 index 04188541b84..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RHeCos-1.1 diff --git a/src/licensedcode/data/rules/ecosrh-1.1_15.RULE b/src/licensedcode/data/rules/ecosrh-1.1_15.RULE index 0e62e496228..e7a91c0322a 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_15.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RHeCos-1.1 +--- + LICENSE {{RHeCos-1.1}} https://spdx.org/licenses/RHeCos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_15.yml b/src/licensedcode/data/rules/ecosrh-1.1_15.yml deleted file mode 100644 index 04188541b84..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RHeCos-1.1 diff --git a/src/licensedcode/data/rules/ecosrh-1.1_2.RULE b/src/licensedcode/data/rules/ecosrh-1.1_2.RULE index d7c5d5b5cc2..cfbd08abca1 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_2.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +relevance: 100 +--- + Red Hat eCos Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_2.yml b/src/licensedcode/data/rules/ecosrh-1.1_2.yml deleted file mode 100644 index 87cb5b72e02..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ecosrh-1.1_3.RULE b/src/licensedcode/data/rules/ecosrh-1.1_3.RULE index 35af5ef25c2..deabd4377c8 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_3.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ecosrh-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.redhat.com/ +--- + The contents of this file are subject to the Red Hat eCos Public License Version 1.1 (the "Licence"); you may not use this file except in compliance with the Licence. You may obtain a copy of @@ -8,4 +15,4 @@ basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the Licence for the specific language governing rights and limitations under the Licence. -The Original Code is \ No newline at end of file +The Original Code is \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_3.yml b/src/licensedcode/data/rules/ecosrh-1.1_3.yml deleted file mode 100644 index d1c431f5960..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.redhat.com/ diff --git a/src/licensedcode/data/rules/ecosrh-1.1_4.RULE b/src/licensedcode/data/rules/ecosrh-1.1_4.RULE index d93a8d26af9..6b28cdea911 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_4.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ecosrh-1.1 +is_license_text: yes +minimum_coverage: 60 +--- + "Red Hat eCos Public License v1.1 @@ -80,4 +86,4 @@ distributes and/or permits others to distribute under different terms than the Red Hat eCos Public License. Red Hat's Branded Code may contain part or all of the Covered Code. -"; +"; \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_4.yml b/src/licensedcode/data/rules/ecosrh-1.1_4.yml deleted file mode 100644 index d1ff1800aa9..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/ecosrh-1.1_5.RULE b/src/licensedcode/data/rules/ecosrh-1.1_5.RULE index f8911ead7af..4555c4388fc 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_5.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_5.RULE @@ -1 +1,9 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ecos.sourceware.org/old-license.html +--- + http://ecos.sourceware.org/old-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_5.yml b/src/licensedcode/data/rules/ecosrh-1.1_5.yml deleted file mode 100644 index d6b7404825c..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ecos.sourceware.org/old-license.html diff --git a/src/licensedcode/data/rules/ecosrh-1.1_6.RULE b/src/licensedcode/data/rules/ecosrh-1.1_6.RULE index 570f0a9e878..baf492f0591 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_6.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_6.RULE @@ -1,3 +1,20 @@ +--- +license_expression: ecosrh-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. + - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/) +ignorable_holders: + - Red Hat, Inc. +ignorable_authors: + - Red Hat +ignorable_urls: + - http://sourceware.cygnus.com/ecos + - http://www.redhat.com/ +--- + Red Hat eCos Public License v1.1 1. DEFINITIONS diff --git a/src/licensedcode/data/rules/ecosrh-1.1_6.yml b/src/licensedcode/data/rules/ecosrh-1.1_6.yml deleted file mode 100644 index e0dbb793b29..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_6.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. - - Copyright (c) 1998, 1999, 2000 Red Hat, Inc. (http://www.redhat.com/) -ignorable_holders: - - Red Hat, Inc. -ignorable_authors: - - Red Hat -ignorable_urls: - - http://sourceware.cygnus.com/ecos - - http://www.redhat.com/ diff --git a/src/licensedcode/data/rules/ecosrh-1.1_7.RULE b/src/licensedcode/data/rules/ecosrh-1.1_7.RULE index 971d743e8f6..5d5c1abd976 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_7.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + RHeCos-1.1 Red Hat eCos Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_7.yml b/src/licensedcode/data/rules/ecosrh-1.1_7.yml deleted file mode 100644 index 08e7ac19071..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecosrh-1.1_8.RULE b/src/licensedcode/data/rules/ecosrh-1.1_8.RULE index b37e1820e10..698c3a65d86 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_8.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Red Hat eCos Public License v1.1 RHeCos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_8.yml b/src/licensedcode/data/rules/ecosrh-1.1_8.yml deleted file mode 100644 index 08e7ac19071..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecosrh-1.1_9.RULE b/src/licensedcode/data/rules/ecosrh-1.1_9.RULE index aa9bedcbd56..dca3cef2b99 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_9.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: ecosrh-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: RHeCos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_9.yml b/src/licensedcode/data/rules/ecosrh-1.1_9.yml deleted file mode 100644 index 9d5c9e8a2a8..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ecosrh-1.1_or_gpl-2.0.RULE b/src/licensedcode/data/rules/ecosrh-1.1_or_gpl-2.0.RULE index 6ce476a8c11..5a0d0141db0 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_or_gpl-2.0.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ecosrh-1.1 OR gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.redhat.com/ +--- + The contents of this file are subject to the Red Hat eCos Public License Version 1.1 (the "Licence"); you may not use this file except in compliance with the Licence. You may obtain a copy of @@ -19,4 +26,4 @@ version of this file under the RHEPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your version of this file -under either the RHEPL or the GPL. +under either the RHEPL or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_or_gpl-2.0.yml b/src/licensedcode/data/rules/ecosrh-1.1_or_gpl-2.0.yml deleted file mode 100644 index 83e3b3d347c..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_or_gpl-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ecosrh-1.1 OR gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.redhat.com/ diff --git a/src/licensedcode/data/rules/ecosrh-1.1_url_1.RULE b/src/licensedcode/data/rules/ecosrh-1.1_url_1.RULE index 3a7ce192296..9e950dfaaa9 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rhecos-1.1 +--- + https://spdx.org/licenses/rhecos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_url_1.yml b/src/licensedcode/data/rules/ecosrh-1.1_url_1.yml deleted file mode 100644 index 60352a636ed..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rhecos-1.1 diff --git a/src/licensedcode/data/rules/ecosrh-1.1_url_2.RULE b/src/licensedcode/data/rules/ecosrh-1.1_url_2.RULE index 5c5611e87c6..5e409511c51 100644 --- a/src/licensedcode/data/rules/ecosrh-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/ecosrh-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rhecos-1.1.html +--- + https://spdx.org/licenses/rhecos-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ecosrh-1.1_url_2.yml b/src/licensedcode/data/rules/ecosrh-1.1_url_2.yml deleted file mode 100644 index e585bb5c8ff..00000000000 --- a/src/licensedcode/data/rules/ecosrh-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rhecos-1.1.html diff --git a/src/licensedcode/data/rules/edl-1.0.RULE b/src/licensedcode/data/rules/edl-1.0.RULE index f7fc3f20098..21a6778d2a6 100644 --- a/src/licensedcode/data/rules/edl-1.0.RULE +++ b/src/licensedcode/data/rules/edl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.php +--- + http://www.eclipse.org/org/documents/edl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/edl-1.0.yml b/src/licensedcode/data/rules/edl-1.0.yml deleted file mode 100644 index 9195e2d57c5..00000000000 --- a/src/licensedcode/data/rules/edl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/edl-1.0_1.RULE b/src/licensedcode/data/rules/edl-1.0_1.RULE index e5fae7126b2..41acbdc39d0 100644 --- a/src/licensedcode/data/rules/edl-1.0_1.RULE +++ b/src/licensedcode/data/rules/edl-1.0_1.RULE @@ -1 +1,7 @@ -Eclipse Distribution License - v 1.0 +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +--- + +Eclipse Distribution License - v 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/edl-1.0_1.yml b/src/licensedcode/data/rules/edl-1.0_1.yml deleted file mode 100644 index 1ea4dba5170..00000000000 --- a/src/licensedcode/data/rules/edl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/edl-1.0_2.RULE b/src/licensedcode/data/rules/edl-1.0_2.RULE index 85429fbda32..a0848c229ba 100644 --- a/src/licensedcode/data/rules/edl-1.0_2.RULE +++ b/src/licensedcode/data/rules/edl-1.0_2.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/edl-1.0_2.yml b/src/licensedcode/data/rules/edl-1.0_2.yml deleted file mode 100644 index 1940635e96d..00000000000 --- a/src/licensedcode/data/rules/edl-1.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/edl-1.0_3.RULE b/src/licensedcode/data/rules/edl-1.0_3.RULE index 6d2d82515fd..b1a781608cd 100644 --- a/src/licensedcode/data/rules/edl-1.0_3.RULE +++ b/src/licensedcode/data/rules/edl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.html +--- + http://www.eclipse.org/org/documents/edl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/edl-1.0_3.yml b/src/licensedcode/data/rules/edl-1.0_3.yml deleted file mode 100644 index c59e4873c86..00000000000 --- a/src/licensedcode/data/rules/edl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.html diff --git a/src/licensedcode/data/rules/edl-1.0_or_epl-1.0.RULE b/src/licensedcode/data/rules/edl-1.0_or_epl-1.0.RULE index 549d69b4256..91a6b3f6c44 100644 --- a/src/licensedcode/data/rules/edl-1.0_or_epl-1.0.RULE +++ b/src/licensedcode/data/rules/edl-1.0_or_epl-1.0.RULE @@ -1,6 +1,14 @@ +--- +license_expression: epl-1.0 OR bsd-new +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 which accompanies this distribution. The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse Distribution License is available at - http://www.eclipse.org/org/documents/edl-v10.php. + http://www.eclipse.org/org/documents/edl-v10.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/edl-1.0_or_epl-1.0.yml b/src/licensedcode/data/rules/edl-1.0_or_epl-1.0.yml deleted file mode 100644 index 28a2b2b28c8..00000000000 --- a/src/licensedcode/data/rules/edl-1.0_or_epl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 OR bsd-new -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/efl-1.0.RULE b/src/licensedcode/data/rules/efl-1.0.RULE index 924700227c1..64519b55e1b 100644 --- a/src/licensedcode/data/rules/efl-1.0.RULE +++ b/src/licensedcode/data/rules/efl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +notes: http://www.eiffel-nice.org/license/forum.txt +ignorable_urls: + - http://www.eiffel-nice.org/license/forum.txt +--- + http://www.eiffel-nice.org/license/forum.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0.yml b/src/licensedcode/data/rules/efl-1.0.yml deleted file mode 100644 index 17eb2aea4a8..00000000000 --- a/src/licensedcode/data/rules/efl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 -notes: http://www.eiffel-nice.org/license/forum.txt -ignorable_urls: - - http://www.eiffel-nice.org/license/forum.txt diff --git a/src/licensedcode/data/rules/efl-1.0_1.RULE b/src/licensedcode/data/rules/efl-1.0_1.RULE index 499fe56eef8..70a8b68424b 100644 --- a/src/licensedcode/data/rules/efl-1.0_1.RULE +++ b/src/licensedcode/data/rules/efl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ver1_eiffel.php +--- + http://www.opensource.org/licenses/ver1_eiffel.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_1.yml b/src/licensedcode/data/rules/efl-1.0_1.yml deleted file mode 100644 index 3fc7b3af423..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ver1_eiffel.php diff --git a/src/licensedcode/data/rules/efl-1.0_10.RULE b/src/licensedcode/data/rules/efl-1.0_10.RULE index 0a278926d5d..fd4d1f69a4f 100644 --- a/src/licensedcode/data/rules/efl-1.0_10.RULE +++ b/src/licensedcode/data/rules/efl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EFL-1.0 +--- + https://licenses.nuget.org/EFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_10.yml b/src/licensedcode/data/rules/efl-1.0_10.yml deleted file mode 100644 index baee094691b..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EFL-1.0 diff --git a/src/licensedcode/data/rules/efl-1.0_11.RULE b/src/licensedcode/data/rules/efl-1.0_11.RULE index 839a83d69c4..fa5e9846ed9 100644 --- a/src/licensedcode/data/rules/efl-1.0_11.RULE +++ b/src/licensedcode/data/rules/efl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_11.yml b/src/licensedcode/data/rules/efl-1.0_11.yml deleted file mode 100644 index 28a5ea38f3f..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/efl-1.0_12.RULE b/src/licensedcode/data/rules/efl-1.0_12.RULE index f90c16e3ac2..c976c3c601e 100644 --- a/src/licensedcode/data/rules/efl-1.0_12.RULE +++ b/src/licensedcode/data/rules/efl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EFL-1.0 +--- + LICENSE {{EFL-1.0}} https://spdx.org/licenses/EFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_12.yml b/src/licensedcode/data/rules/efl-1.0_12.yml deleted file mode 100644 index c0d2e81d64e..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EFL-1.0 diff --git a/src/licensedcode/data/rules/efl-1.0_13.RULE b/src/licensedcode/data/rules/efl-1.0_13.RULE index 95d3e3b8709..81803a2336a 100644 --- a/src/licensedcode/data/rules/efl-1.0_13.RULE +++ b/src/licensedcode/data/rules/efl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EFL-1.0 +--- + {{EFL-1.0}} https://spdx.org/licenses/EFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_13.yml b/src/licensedcode/data/rules/efl-1.0_13.yml deleted file mode 100644 index c0d2e81d64e..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EFL-1.0 diff --git a/src/licensedcode/data/rules/efl-1.0_2.RULE b/src/licensedcode/data/rules/efl-1.0_2.RULE index 5554d93baaa..47d6a8b6bdf 100644 --- a/src/licensedcode/data/rules/efl-1.0_2.RULE +++ b/src/licensedcode/data/rules/efl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + EFL-1.0 Eiffel Forum License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_2.yml b/src/licensedcode/data/rules/efl-1.0_2.yml deleted file mode 100644 index bf32f4a63dd..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/efl-1.0_3.RULE b/src/licensedcode/data/rules/efl-1.0_3.RULE index a80b9c25609..e78e9254b4e 100644 --- a/src/licensedcode/data/rules/efl-1.0_3.RULE +++ b/src/licensedcode/data/rules/efl-1.0_3.RULE @@ -1 +1,9 @@ -https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1 +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1 +--- + +https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_3.yml b/src/licensedcode/data/rules/efl-1.0_3.yml deleted file mode 100644 index ba8fde3a774..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/Eiffel_Forum_License_V1 diff --git a/src/licensedcode/data/rules/efl-1.0_4.RULE b/src/licensedcode/data/rules/efl-1.0_4.RULE index 03617ccb134..f4f1e605847 100644 --- a/src/licensedcode/data/rules/efl-1.0_4.RULE +++ b/src/licensedcode/data/rules/efl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Eiffel Forum License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_4.yml b/src/licensedcode/data/rules/efl-1.0_4.yml deleted file mode 100644 index 7e71fb5e85c..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-1.0_5.RULE b/src/licensedcode/data/rules/efl-1.0_5.RULE index 24b9e6f8b93..84bf69a4e36 100644 --- a/src/licensedcode/data/rules/efl-1.0_5.RULE +++ b/src/licensedcode/data/rules/efl-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eiffel Forum License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_5.yml b/src/licensedcode/data/rules/efl-1.0_5.yml deleted file mode 100644 index 28a5ea38f3f..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/efl-1.0_6.RULE b/src/licensedcode/data/rules/efl-1.0_6.RULE index f74f7ef87bb..557145418cb 100644 --- a/src/licensedcode/data/rules/efl-1.0_6.RULE +++ b/src/licensedcode/data/rules/efl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Eiffel Forum License v1.0 EFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_6.yml b/src/licensedcode/data/rules/efl-1.0_6.yml deleted file mode 100644 index 7e71fb5e85c..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-1.0_7.RULE b/src/licensedcode/data/rules/efl-1.0_7.RULE index 9cf9da70606..acdbfc59e06 100644 --- a/src/licensedcode/data/rules/efl-1.0_7.RULE +++ b/src/licensedcode/data/rules/efl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_7.yml b/src/licensedcode/data/rules/efl-1.0_7.yml deleted file mode 100644 index 2359beef9bd..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-1.0_8.RULE b/src/licensedcode/data/rules/efl-1.0_8.RULE index 688f6e106b3..6e61aaec910 100644 --- a/src/licensedcode/data/rules/efl-1.0_8.RULE +++ b/src/licensedcode/data/rules/efl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Eiffel Forum License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_8.yml b/src/licensedcode/data/rules/efl-1.0_8.yml deleted file mode 100644 index 2359beef9bd..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-1.0_9.RULE b/src/licensedcode/data/rules/efl-1.0_9.RULE index 746e4726025..02173a81082 100644 --- a/src/licensedcode/data/rules/efl-1.0_9.RULE +++ b/src/licensedcode/data/rules/efl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_9.yml b/src/licensedcode/data/rules/efl-1.0_9.yml deleted file mode 100644 index 2359beef9bd..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-1.0_url_1.RULE b/src/licensedcode/data/rules/efl-1.0_url_1.RULE index fa0ab3198c6..6e38818f8dc 100644 --- a/src/licensedcode/data/rules/efl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/efl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/efl-1.0 +--- + https://spdx.org/licenses/efl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_url_1.yml b/src/licensedcode/data/rules/efl-1.0_url_1.yml deleted file mode 100644 index e7355ed7a44..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/efl-1.0 diff --git a/src/licensedcode/data/rules/efl-1.0_url_2.RULE b/src/licensedcode/data/rules/efl-1.0_url_2.RULE index 3ab7d315a9c..809594f7891 100644 --- a/src/licensedcode/data/rules/efl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/efl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/efl-1.0.html +--- + https://spdx.org/licenses/efl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_url_2.yml b/src/licensedcode/data/rules/efl-1.0_url_2.yml deleted file mode 100644 index 8cebc3ee414..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/efl-1.0.html diff --git a/src/licensedcode/data/rules/efl-1.0_url_glc_80.RULE b/src/licensedcode/data/rules/efl-1.0_url_glc_80.RULE index b0e53b21891..84f04544692 100644 --- a/src/licensedcode/data/rules/efl-1.0_url_glc_80.RULE +++ b/src/licensedcode/data/rules/efl-1.0_url_glc_80.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/efl-1.0 +--- + http://opensource.org/licenses/efl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_url_glc_80.yml b/src/licensedcode/data/rules/efl-1.0_url_glc_80.yml deleted file mode 100644 index 3b27a6f195e..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_url_glc_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/efl-1.0 diff --git a/src/licensedcode/data/rules/efl-1.0_url_glc_81.RULE b/src/licensedcode/data/rules/efl-1.0_url_glc_81.RULE index 704ece95e5d..ed378717c91 100644 --- a/src/licensedcode/data/rules/efl-1.0_url_glc_81.RULE +++ b/src/licensedcode/data/rules/efl-1.0_url_glc_81.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/efl-1.0 +--- + https://opensource.org/licenses/efl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-1.0_url_glc_81.yml b/src/licensedcode/data/rules/efl-1.0_url_glc_81.yml deleted file mode 100644 index 732f9ab4adf..00000000000 --- a/src/licensedcode/data/rules/efl-1.0_url_glc_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/efl-1.0 diff --git a/src/licensedcode/data/rules/efl-2.0.RULE b/src/licensedcode/data/rules/efl-2.0.RULE index 99391c6019e..8e018b9f71e 100644 --- a/src/licensedcode/data/rules/efl-2.0.RULE +++ b/src/licensedcode/data/rules/efl-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource-definition.org/licenses/ver2_eiffel.html +--- + http://www.opensource-definition.org/licenses/ver2_eiffel.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0.SPDX.RULE b/src/licensedcode/data/rules/efl-2.0.SPDX.RULE index a7064e77b00..114a89cd422 100644 --- a/src/licensedcode/data/rules/efl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/efl-2.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: efl-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Eiffel Forum License, version 2 Permission is hereby granted to use, copy, modify and/or distribute this package, provided that: diff --git a/src/licensedcode/data/rules/efl-2.0.SPDX.yml b/src/licensedcode/data/rules/efl-2.0.SPDX.yml deleted file mode 100644 index 0aa56975f05..00000000000 --- a/src/licensedcode/data/rules/efl-2.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: efl-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/efl-2.0.yml b/src/licensedcode/data/rules/efl-2.0.yml deleted file mode 100644 index ac36ed93a13..00000000000 --- a/src/licensedcode/data/rules/efl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource-definition.org/licenses/ver2_eiffel.html diff --git a/src/licensedcode/data/rules/efl-2.0_1.RULE b/src/licensedcode/data/rules/efl-2.0_1.RULE index 067c5e85e74..ea14a09cba7 100644 --- a/src/licensedcode/data/rules/efl-2.0_1.RULE +++ b/src/licensedcode/data/rules/efl-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt +--- + http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_1.yml b/src/licensedcode/data/rules/efl-2.0_1.yml deleted file mode 100644 index de8a3b52a19..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eiffel-nice.org/license/eiffel-forum-license-2.txt diff --git a/src/licensedcode/data/rules/efl-2.0_10.RULE b/src/licensedcode/data/rules/efl-2.0_10.RULE index d687348c0d6..16e5939850d 100644 --- a/src/licensedcode/data/rules/efl-2.0_10.RULE +++ b/src/licensedcode/data/rules/efl-2.0_10.RULE @@ -1 +1,9 @@ -http://www.opensource.org/licenses/ver2_eiffel.php +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ver2_eiffel.php +--- + +http://www.opensource.org/licenses/ver2_eiffel.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_10.yml b/src/licensedcode/data/rules/efl-2.0_10.yml deleted file mode 100644 index be19098d929..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ver2_eiffel.php diff --git a/src/licensedcode/data/rules/efl-2.0_11.RULE b/src/licensedcode/data/rules/efl-2.0_11.RULE index ce91c5bd9a5..ab9b748cab2 100644 --- a/src/licensedcode/data/rules/efl-2.0_11.RULE +++ b/src/licensedcode/data/rules/efl-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eiffel.com/licensing/forum.txt +--- + http://www.eiffel.com/licensing/forum.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_11.yml b/src/licensedcode/data/rules/efl-2.0_11.yml deleted file mode 100644 index 96fb51d2547..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eiffel.com/licensing/forum.txt diff --git a/src/licensedcode/data/rules/efl-2.0_12.RULE b/src/licensedcode/data/rules/efl-2.0_12.RULE index 8bdc0b2a729..2926062073d 100644 --- a/src/licensedcode/data/rules/efl-2.0_12.RULE +++ b/src/licensedcode/data/rules/efl-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.eiffel.com/licensing/forum.txt +--- + license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_12.yml b/src/licensedcode/data/rules/efl-2.0_12.yml deleted file mode 100644 index 899c937abb1..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.eiffel.com/licensing/forum.txt diff --git a/src/licensedcode/data/rules/efl-2.0_13.RULE b/src/licensedcode/data/rules/efl-2.0_13.RULE index 9fbfec674a7..ddbe982ba67 100644 --- a/src/licensedcode/data/rules/efl-2.0_13.RULE +++ b/src/licensedcode/data/rules/efl-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + EFL-2.0 Eiffel Forum License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_13.yml b/src/licensedcode/data/rules/efl-2.0_13.yml deleted file mode 100644 index ddff237c8fe..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/efl-2.0_14.RULE b/src/licensedcode/data/rules/efl-2.0_14.RULE index 7f019065a6c..6964927da5c 100644 --- a/src/licensedcode/data/rules/efl-2.0_14.RULE +++ b/src/licensedcode/data/rules/efl-2.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Eiffel Forum License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_14.yml b/src/licensedcode/data/rules/efl-2.0_14.yml deleted file mode 100644 index 0cc3e3d9b60..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-2.0_15.RULE b/src/licensedcode/data/rules/efl-2.0_15.RULE index f95a85099f3..3ff34cbb790 100644 --- a/src/licensedcode/data/rules/efl-2.0_15.RULE +++ b/src/licensedcode/data/rules/efl-2.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Eiffel Forum License v2.0 EFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_15.yml b/src/licensedcode/data/rules/efl-2.0_15.yml deleted file mode 100644 index 0cc3e3d9b60..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-2.0_16.RULE b/src/licensedcode/data/rules/efl-2.0_16.RULE index a1dd75d451a..1b93956d908 100644 --- a/src/licensedcode/data/rules/efl-2.0_16.RULE +++ b/src/licensedcode/data/rules/efl-2.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_16.yml b/src/licensedcode/data/rules/efl-2.0_16.yml deleted file mode 100644 index 4dcf5f94e9e..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-2.0_17.RULE b/src/licensedcode/data/rules/efl-2.0_17.RULE index b8350d8fa66..c823bdf9953 100644 --- a/src/licensedcode/data/rules/efl-2.0_17.RULE +++ b/src/licensedcode/data/rules/efl-2.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Eiffel Forum License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_17.yml b/src/licensedcode/data/rules/efl-2.0_17.yml deleted file mode 100644 index 4dcf5f94e9e..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-2.0_18.RULE b/src/licensedcode/data/rules/efl-2.0_18.RULE index 0093c70369d..471554633c3 100644 --- a/src/licensedcode/data/rules/efl-2.0_18.RULE +++ b/src/licensedcode/data/rules/efl-2.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_18.yml b/src/licensedcode/data/rules/efl-2.0_18.yml deleted file mode 100644 index 4dcf5f94e9e..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/efl-2.0_19.RULE b/src/licensedcode/data/rules/efl-2.0_19.RULE index 9e75ecf274f..4efe35a79b9 100644 --- a/src/licensedcode/data/rules/efl-2.0_19.RULE +++ b/src/licensedcode/data/rules/efl-2.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Eiffel_Forum_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_19.yml b/src/licensedcode/data/rules/efl-2.0_19.yml deleted file mode 100644 index 32f4ebd28f7..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/efl-2.0_2.RULE b/src/licensedcode/data/rules/efl-2.0_2.RULE index e944909ef8b..b276867d839 100644 --- a/src/licensedcode/data/rules/efl-2.0_2.RULE +++ b/src/licensedcode/data/rules/efl-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +notes: http://amalasoft.com/downloads/ael/ds/LICENSE.txt +ignorable_urls: + - http://amalasoft.com/downloads/ael/ds/LICENSE.txt +--- + http://amalasoft.com/downloads/ael/ds/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_2.yml b/src/licensedcode/data/rules/efl-2.0_2.yml deleted file mode 100644 index 6f7b0451387..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -notes: http://amalasoft.com/downloads/ael/ds/LICENSE.txt -ignorable_urls: - - http://amalasoft.com/downloads/ael/ds/LICENSE.txt diff --git a/src/licensedcode/data/rules/efl-2.0_20.RULE b/src/licensedcode/data/rules/efl-2.0_20.RULE index fe7ae5b1e7c..0ba3ed8ff82 100644 --- a/src/licensedcode/data/rules/efl-2.0_20.RULE +++ b/src/licensedcode/data/rules/efl-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EFL-2.0 +--- + https://licenses.nuget.org/EFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_20.yml b/src/licensedcode/data/rules/efl-2.0_20.yml deleted file mode 100644 index cb62dfdaa39..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EFL-2.0 diff --git a/src/licensedcode/data/rules/efl-2.0_21.RULE b/src/licensedcode/data/rules/efl-2.0_21.RULE index a7d9aefbaf7..5c7253a5ba9 100644 --- a/src/licensedcode/data/rules/efl-2.0_21.RULE +++ b/src/licensedcode/data/rules/efl-2.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_21.yml b/src/licensedcode/data/rules/efl-2.0_21.yml deleted file mode 100644 index 32f4ebd28f7..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/efl-2.0_22.RULE b/src/licensedcode/data/rules/efl-2.0_22.RULE index af6c71993eb..def4370e0a8 100644 --- a/src/licensedcode/data/rules/efl-2.0_22.RULE +++ b/src/licensedcode/data/rules/efl-2.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EFL-2.0 +--- + LICENSE {{EFL-2.0}} https://spdx.org/licenses/EFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_22.yml b/src/licensedcode/data/rules/efl-2.0_22.yml deleted file mode 100644 index 17442f3230d..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EFL-2.0 diff --git a/src/licensedcode/data/rules/efl-2.0_23.RULE b/src/licensedcode/data/rules/efl-2.0_23.RULE index d43f6bcd6d3..a83f6ccfd3a 100644 --- a/src/licensedcode/data/rules/efl-2.0_23.RULE +++ b/src/licensedcode/data/rules/efl-2.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EFL-2.0 +--- + {{EFL-2.0}} https://spdx.org/licenses/EFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_23.yml b/src/licensedcode/data/rules/efl-2.0_23.yml deleted file mode 100644 index 17442f3230d..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EFL-2.0 diff --git a/src/licensedcode/data/rules/efl-2.0_3.RULE b/src/licensedcode/data/rules/efl-2.0_3.RULE index 1a4d2a0f256..63275c20432 100644 --- a/src/licensedcode/data/rules/efl-2.0_3.RULE +++ b/src/licensedcode/data/rules/efl-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +--- + Eiffel Forum License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_3.yml b/src/licensedcode/data/rules/efl-2.0_3.yml deleted file mode 100644 index 32f4ebd28f7..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/efl-2.0_4.RULE b/src/licensedcode/data/rules/efl-2.0_4.RULE index 45ea21b694a..d0989adb1cd 100644 --- a/src/licensedcode/data/rules/efl-2.0_4.RULE +++ b/src/licensedcode/data/rules/efl-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eiffel-nice.org/license/ +--- + http://www.eiffel-nice.org/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_4.yml b/src/licensedcode/data/rules/efl-2.0_4.yml deleted file mode 100644 index 10c2f0f65c7..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eiffel-nice.org/license/ diff --git a/src/licensedcode/data/rules/efl-2.0_5.RULE b/src/licensedcode/data/rules/efl-2.0_5.RULE index 6dbcf599f4c..564335df8cb 100644 --- a/src/licensedcode/data/rules/efl-2.0_5.RULE +++ b/src/licensedcode/data/rules/efl-2.0_5.RULE @@ -1 +1,9 @@ -http://en.wikipedia.org/wiki/Eiffel_Forum_License +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/Eiffel_Forum_License +--- + +http://en.wikipedia.org/wiki/Eiffel_Forum_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_5.yml b/src/licensedcode/data/rules/efl-2.0_5.yml deleted file mode 100644 index f0dfcd46c2d..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/Eiffel_Forum_License diff --git a/src/licensedcode/data/rules/efl-2.0_6.RULE b/src/licensedcode/data/rules/efl-2.0_6.RULE index 233636b21d7..05c761a18de 100644 --- a/src/licensedcode/data/rules/efl-2.0_6.RULE +++ b/src/licensedcode/data/rules/efl-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://inamidst.com/stuff/eiffel/ +--- + http://inamidst.com/stuff/eiffel/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_6.yml b/src/licensedcode/data/rules/efl-2.0_6.yml deleted file mode 100644 index 9b1c9132a79..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://inamidst.com/stuff/eiffel/ diff --git a/src/licensedcode/data/rules/efl-2.0_7.RULE b/src/licensedcode/data/rules/efl-2.0_7.RULE index c1d78b2f5d5..369d582334f 100644 --- a/src/licensedcode/data/rules/efl-2.0_7.RULE +++ b/src/licensedcode/data/rules/efl-2.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: efl-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 2008 by Amalasoft Corporation +ignorable_holders: + - Amalasoft Corporation +--- + Copyright (c) 2008 All rights reserved by Amalasoft Corporation. This software is furnished under the Eiffel Forum License, version 2, diff --git a/src/licensedcode/data/rules/efl-2.0_7.yml b/src/licensedcode/data/rules/efl-2.0_7.yml deleted file mode 100644 index 331477b032b..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 2008 by Amalasoft Corporation -ignorable_holders: - - Amalasoft Corporation diff --git a/src/licensedcode/data/rules/efl-2.0_8.RULE b/src/licensedcode/data/rules/efl-2.0_8.RULE index 5eceea31f62..380184ed59d 100644 --- a/src/licensedcode/data/rules/efl-2.0_8.RULE +++ b/src/licensedcode/data/rules/efl-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eiffel-nice.org/license/eiffel-forum-license-2.html +--- + http://www.eiffel-nice.org/license/eiffel-forum-license-2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_8.yml b/src/licensedcode/data/rules/efl-2.0_8.yml deleted file mode 100644 index d6bbc48452f..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eiffel-nice.org/license/eiffel-forum-license-2.html diff --git a/src/licensedcode/data/rules/efl-2.0_9.RULE b/src/licensedcode/data/rules/efl-2.0_9.RULE index b80e80520d0..c917c4aa95d 100644 --- a/src/licensedcode/data/rules/efl-2.0_9.RULE +++ b/src/licensedcode/data/rules/efl-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +--- + EFL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_9.yml b/src/licensedcode/data/rules/efl-2.0_9.yml deleted file mode 100644 index 32f4ebd28f7..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/efl-2.0_url_1.RULE b/src/licensedcode/data/rules/efl-2.0_url_1.RULE index 1ad0595cc92..93b5383f1ba 100644 --- a/src/licensedcode/data/rules/efl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/efl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/efl-2.0 +--- + https://spdx.org/licenses/efl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_url_1.yml b/src/licensedcode/data/rules/efl-2.0_url_1.yml deleted file mode 100644 index 6630a9b65b6..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/efl-2.0 diff --git a/src/licensedcode/data/rules/efl-2.0_url_2.RULE b/src/licensedcode/data/rules/efl-2.0_url_2.RULE index 68224b63c0c..c2fb9bc1b95 100644 --- a/src/licensedcode/data/rules/efl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/efl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/efl-2.0.html +--- + https://spdx.org/licenses/efl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_url_2.yml b/src/licensedcode/data/rules/efl-2.0_url_2.yml deleted file mode 100644 index ead3af7c7c3..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/efl-2.0.html diff --git a/src/licensedcode/data/rules/efl-2.0_url_glc_82.RULE b/src/licensedcode/data/rules/efl-2.0_url_glc_82.RULE index 5e54e862759..27e6dcb391e 100644 --- a/src/licensedcode/data/rules/efl-2.0_url_glc_82.RULE +++ b/src/licensedcode/data/rules/efl-2.0_url_glc_82.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/efl-2.0 +--- + http://opensource.org/licenses/efl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_url_glc_82.yml b/src/licensedcode/data/rules/efl-2.0_url_glc_82.yml deleted file mode 100644 index d506b4190e5..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_url_glc_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/efl-2.0 diff --git a/src/licensedcode/data/rules/efl-2.0_url_glc_83.RULE b/src/licensedcode/data/rules/efl-2.0_url_glc_83.RULE index 78731760838..3dd627411a1 100644 --- a/src/licensedcode/data/rules/efl-2.0_url_glc_83.RULE +++ b/src/licensedcode/data/rules/efl-2.0_url_glc_83.RULE @@ -1 +1,9 @@ +--- +license_expression: efl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/efl-2.0 +--- + https://opensource.org/licenses/efl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/efl-2.0_url_glc_83.yml b/src/licensedcode/data/rules/efl-2.0_url_glc_83.yml deleted file mode 100644 index 5eaf8adccd3..00000000000 --- a/src/licensedcode/data/rules/efl-2.0_url_glc_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: efl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/efl-2.0 diff --git a/src/licensedcode/data/rules/egenix-1.1.0.RULE b/src/licensedcode/data/rules/egenix-1.1.0.RULE index 8df4e97944a..71757e3bd0f 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0.RULE @@ -1 +1,8 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +relevance: 100 +notes: egenix-110 +--- + egenix-1.1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0.yml b/src/licensedcode/data/rules/egenix-1.1.0.yml deleted file mode 100644 index 79ff1335eee..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -relevance: 100 -notes: egenix-110 diff --git a/src/licensedcode/data/rules/egenix-1.1.0_1.RULE b/src/licensedcode/data/rules/egenix-1.1.0_1.RULE index a39c7dcafd7..821f4cbb354 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_1.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: egenix-1.1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_emails: + - licenses@egenix.com +--- + This software is protected by copyright and other intellectual property laws and by international treaties. It may only be used under the conditions and terms of the eGenix.com Public License diff --git a/src/licensedcode/data/rules/egenix-1.1.0_1.yml b/src/licensedcode/data/rules/egenix-1.1.0_1.yml deleted file mode 100644 index c81fc35e573..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_emails: - - licenses@egenix.com diff --git a/src/licensedcode/data/rules/egenix-1.1.0_10.RULE b/src/licensedcode/data/rules/egenix-1.1.0_10.RULE index 4f53cb5092b..47e3bd57c67 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_10.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/eGenix +--- + https://licenses.nuget.org/eGenix \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_10.yml b/src/licensedcode/data/rules/egenix-1.1.0_10.yml deleted file mode 100644 index 2bba86ab8d1..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/eGenix diff --git a/src/licensedcode/data/rules/egenix-1.1.0_11.RULE b/src/licensedcode/data/rules/egenix-1.1.0_11.RULE index a884da3fd9b..f58e4c38b32 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_11.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/eGenix \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_11.yml b/src/licensedcode/data/rules/egenix-1.1.0_11.yml deleted file mode 100644 index fea7b40b887..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/egenix-1.1.0_12.RULE b/src/licensedcode/data/rules/egenix-1.1.0_12.RULE index 09d513f3b56..7aae4e74886 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_12.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/eGenix +--- + {{eGenix}} https://spdx.org/licenses/eGenix \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_12.yml b/src/licensedcode/data/rules/egenix-1.1.0_12.yml deleted file mode 100644 index d0d25fe1bb7..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/eGenix diff --git a/src/licensedcode/data/rules/egenix-1.1.0_13.RULE b/src/licensedcode/data/rules/egenix-1.1.0_13.RULE index 57cad3edc38..21d60cc1e81 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_13.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/eGenix +--- + LICENSE {{eGenix}} https://spdx.org/licenses/eGenix \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_13.yml b/src/licensedcode/data/rules/egenix-1.1.0_13.yml deleted file mode 100644 index d0d25fe1bb7..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/eGenix diff --git a/src/licensedcode/data/rules/egenix-1.1.0_2.RULE b/src/licensedcode/data/rules/egenix-1.1.0_2.RULE index fee482d3b11..4ac7619a27e 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_2.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_2.RULE @@ -1,2 +1,13 @@ +--- +license_expression: egenix-1.1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - LICENSE.mxSetup +ignorable_urls: + - http://www.egenix.com/products/python/mxBase/ +--- + License: eGenix.com Public License. See LICENSE or LICENSE.mxSetup - or http://www.egenix.com/products/python/mxBase/ for details. + or http://www.egenix.com/products/python/mxBase/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_2.yml b/src/licensedcode/data/rules/egenix-1.1.0_2.yml deleted file mode 100644 index b4ac8e1917c..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - LICENSE.mxSetup -ignorable_urls: - - http://www.egenix.com/products/python/mxBase/ diff --git a/src/licensedcode/data/rules/egenix-1.1.0_3.RULE b/src/licensedcode/data/rules/egenix-1.1.0_3.RULE index fa30fc12c7a..25a2ec84a01 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_3.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + eGenix.com Public License 1.1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_3.yml b/src/licensedcode/data/rules/egenix-1.1.0_3.yml deleted file mode 100644 index 716f62994cc..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/egenix-1.1.0_4.RULE b/src/licensedcode/data/rules/egenix-1.1.0_4.RULE index a4fcb554f0b..04578d66ea6 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_4.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: eGenix.com Public License 1.1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_4.yml b/src/licensedcode/data/rules/egenix-1.1.0_4.yml deleted file mode 100644 index 716f62994cc..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/egenix-1.1.0_5.RULE b/src/licensedcode/data/rules/egenix-1.1.0_5.RULE index cf371af8fa5..edf1b2649ee 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_5.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + eGenix eGenix.com Public License 1.1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_5.yml b/src/licensedcode/data/rules/egenix-1.1.0_5.yml deleted file mode 100644 index 716f62994cc..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/egenix-1.1.0_6.RULE b/src/licensedcode/data/rules/egenix-1.1.0_6.RULE index f778cc165e4..fe95ed6c8e6 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_6.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + eGenix.com Public License 1.1.0 eGenix \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_6.yml b/src/licensedcode/data/rules/egenix-1.1.0_6.yml deleted file mode 100644 index 716f62994cc..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/egenix-1.1.0_7.RULE b/src/licensedcode/data/rules/egenix-1.1.0_7.RULE index 03102f3382d..b577ce94851 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_7.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: egenix-1.1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: eGenix \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_7.yml b/src/licensedcode/data/rules/egenix-1.1.0_7.yml deleted file mode 100644 index e34f8f5ef05..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/egenix-1.1.0_8.RULE b/src/licensedcode/data/rules/egenix-1.1.0_8.RULE index 560cada6726..f242a278200 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_8.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: egenix-1.1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: eGenix.com Public License 1.1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_8.yml b/src/licensedcode/data/rules/egenix-1.1.0_8.yml deleted file mode 100644 index e34f8f5ef05..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/egenix-1.1.0_9.RULE b/src/licensedcode/data/rules/egenix-1.1.0_9.RULE index 835e8210e02..9c8a37cf302 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_9.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: egenix-1.1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: eGenix \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_9.yml b/src/licensedcode/data/rules/egenix-1.1.0_9.yml deleted file mode 100644 index e34f8f5ef05..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/egenix-1.1.0_url_1.RULE b/src/licensedcode/data/rules/egenix-1.1.0_url_1.RULE index 23d8a45c409..aeac478eeae 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_url_1.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/egenix +--- + https://spdx.org/licenses/egenix \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_url_1.yml b/src/licensedcode/data/rules/egenix-1.1.0_url_1.yml deleted file mode 100644 index ef3eb85bf58..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/egenix diff --git a/src/licensedcode/data/rules/egenix-1.1.0_url_2.RULE b/src/licensedcode/data/rules/egenix-1.1.0_url_2.RULE index 9ea6dc28161..3158c562f2a 100644 --- a/src/licensedcode/data/rules/egenix-1.1.0_url_2.RULE +++ b/src/licensedcode/data/rules/egenix-1.1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: egenix-1.1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/egenix.html +--- + https://spdx.org/licenses/egenix.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/egenix-1.1.0_url_2.yml b/src/licensedcode/data/rules/egenix-1.1.0_url_2.yml deleted file mode 100644 index 8fd9784d8d5..00000000000 --- a/src/licensedcode/data/rules/egenix-1.1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: egenix-1.1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/egenix.html diff --git a/src/licensedcode/data/rules/ej-technologies-eula.RULE b/src/licensedcode/data/rules/ej-technologies-eula.RULE index afb92c31f19..57368ee8d17 100644 --- a/src/licensedcode/data/rules/ej-technologies-eula.RULE +++ b/src/licensedcode/data/rules/ej-technologies-eula.RULE @@ -1 +1,9 @@ +--- +license_expression: ej-technologies-eula +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html +--- + http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ej-technologies-eula.yml b/src/licensedcode/data/rules/ej-technologies-eula.yml deleted file mode 100644 index ddfe516807a..00000000000 --- a/src/licensedcode/data/rules/ej-technologies-eula.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ej-technologies-eula -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ej-technologies.com/buy/jprofiler/jprofiler_license.html diff --git a/src/licensedcode/data/rules/ekioh_1.RULE b/src/licensedcode/data/rules/ekioh_1.RULE index 62eb95e7410..9d07f33bac0 100644 --- a/src/licensedcode/data/rules/ekioh_1.RULE +++ b/src/licensedcode/data/rules/ekioh_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +notes: this text is an MIT without a condition, only a disclaimer from https://kryogenix.org/code/browser/licence.html +ignorable_urls: + - http://www.kryogenix.org/code/browser/licence.html +--- + Licence I correct and publish it in the same original MIT licence, as in http://www.kryogenix.org/code/browser/licence.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ekioh_1.yml b/src/licensedcode/data/rules/ekioh_1.yml deleted file mode 100644 index 431e7c110d0..00000000000 --- a/src/licensedcode/data/rules/ekioh_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 -notes: this text is an MIT without a condition, only a disclaimer from https://kryogenix.org/code/browser/licence.html -ignorable_urls: - - http://www.kryogenix.org/code/browser/licence.html diff --git a/src/licensedcode/data/rules/ekioh_2.RULE b/src/licensedcode/data/rules/ekioh_2.RULE index 792eedc3e55..6ce5ca364e4 100644 --- a/src/licensedcode/data/rules/ekioh_2.RULE +++ b/src/licensedcode/data/rules/ekioh_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +notes: this text is an MIT without a condition, only a disclaimer from https://kryogenix.org/code/browser/licence.html +--- + The MIT Licence, for code from kryogenix.org Code downloaded from the Browser Experiments section of kryogenix.org is licenced under the so-called MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ekioh_2.yml b/src/licensedcode/data/rules/ekioh_2.yml deleted file mode 100644 index 5bf210898a0..00000000000 --- a/src/licensedcode/data/rules/ekioh_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 -notes: this text is an MIT without a condition, only a disclaimer from https://kryogenix.org/code/browser/licence.html diff --git a/src/licensedcode/data/rules/ekioh_3.RULE b/src/licensedcode/data/rules/ekioh_3.RULE index 94f71d55768..3e7ffb2c205 100644 --- a/src/licensedcode/data/rules/ekioh_3.RULE +++ b/src/licensedcode/data/rules/ekioh_3.RULE @@ -1 +1,8 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +notes: this text is an MIT without a condition, only a disclaimer from https://kryogenix.org/code/browser/licence.html +--- + The MIT Licence, for code from kryogenix.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/ekioh_3.yml b/src/licensedcode/data/rules/ekioh_3.yml deleted file mode 100644 index 5bf210898a0..00000000000 --- a/src/licensedcode/data/rules/ekioh_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 -notes: this text is an MIT without a condition, only a disclaimer from https://kryogenix.org/code/browser/licence.html diff --git a/src/licensedcode/data/rules/ekioh_4.RULE b/src/licensedcode/data/rules/ekioh_4.RULE index 807c5dc27cf..2d41df63203 100644 --- a/src/licensedcode/data/rules/ekioh_4.RULE +++ b/src/licensedcode/data/rules/ekioh_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-0 +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/fabricjs/fabric.js/blob/master/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/ekioh_4.yml b/src/licensedcode/data/rules/ekioh_4.yml deleted file mode 100644 index 46311a19919..00000000000 --- a/src/licensedcode/data/rules/ekioh_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-0 -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/fabricjs/fabric.js/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/ekioh_mit_like2.RULE b/src/licensedcode/data/rules/ekioh_mit_like2.RULE index bb9b692b662..1bf07367733 100644 --- a/src/licensedcode/data/rules/ekioh_mit_like2.RULE +++ b/src/licensedcode/data/rules/ekioh_mit_like2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit-0 +is_license_notice: yes +notes: this text is an MIT without a condition, only a disclaimer from https://kryogenix.org/code/browser/licence.html +ignorable_urls: + - http://www.kryogenix.org/code/browser/licence.html +--- + Licenced as X11: http://www.kryogenix.org/code/browser/licence.html - This basically means: do what you want with it. + This basically means: do what you want with it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ekioh_mit_like2.yml b/src/licensedcode/data/rules/ekioh_mit_like2.yml deleted file mode 100644 index fc639edb98b..00000000000 --- a/src/licensedcode/data/rules/ekioh_mit_like2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -notes: this text is an MIT without a condition, only a disclaimer from https://kryogenix.org/code/browser/licence.html -ignorable_urls: - - http://www.kryogenix.org/code/browser/licence.html diff --git a/src/licensedcode/data/rules/elastic-license-2018_1.RULE b/src/licensedcode/data/rules/elastic-license-2018_1.RULE index d8953170fca..8fa99390201 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_1.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +notes: this could refer to the older elastic-license-2018 +--- + licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the {{Elastic License}}; - * you may not use this file except in compliance with the {{Elastic License}}. + * you may not use this file except in compliance with the {{Elastic License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_1.yml b/src/licensedcode/data/rules/elastic-license-2018_1.yml deleted file mode 100644 index cf961023a68..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_10.RULE b/src/licensedcode/data/rules/elastic-license-2018_10.RULE index 849c167e6db..6c986e8b486 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_10.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_10.RULE @@ -1 +1,8 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +notes: this could refer to the older elastic-license-2018 +--- + licensed under the Elastic Basic license \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_10.yml b/src/licensedcode/data/rules/elastic-license-2018_10.yml deleted file mode 100644 index cf961023a68..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_11.RULE b/src/licensedcode/data/rules/elastic-license-2018_11.RULE index 175d2d5bf2a..e7bb962947e 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_11.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_11.RULE @@ -1 +1,7 @@ +--- +license_expression: elastic-license-2018 +is_license_notice: yes +relevance: 100 +--- + subject to the {{Elastic License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_11.yml b/src/licensedcode/data/rules/elastic-license-2018_11.yml deleted file mode 100644 index d14602cf078..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: elastic-license-2018 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/elastic-license-2018_2.RULE b/src/licensedcode/data/rules/elastic-license-2018_2.RULE index 70ebbec1249..98fcd7e3b86 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_2.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_2.RULE @@ -1 +1,8 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +notes: this could refer to the older elastic-license-2018 +--- + Licensed under the Elastic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_2.yml b/src/licensedcode/data/rules/elastic-license-2018_2.yml deleted file mode 100644 index cf961023a68..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_3.RULE b/src/licensedcode/data/rules/elastic-license-2018_3.RULE index 637b3c29e5e..07d8200ad0f 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_3.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_3.RULE @@ -1 +1,8 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +notes: this could refer to the older elastic-license-2018 +--- + you may not use this file except in compliance with the Elastic License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_3.yml b/src/licensedcode/data/rules/elastic-license-2018_3.yml deleted file mode 100644 index cf961023a68..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_4.RULE b/src/licensedcode/data/rules/elastic-license-2018_4.RULE index 2a3c4272967..567d67da0d8 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_4.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_4.RULE @@ -1 +1,10 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - ELASTIC-LICENSE.txt +notes: this could refer to the older elastic-license-2018 +--- + ELASTIC-LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_4.yml b/src/licensedcode/data/rules/elastic-license-2018_4.yml deleted file mode 100644 index f67a7655ac3..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - ELASTIC-LICENSE.txt -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_5.RULE b/src/licensedcode/data/rules/elastic-license-2018_5.RULE index 58a746b0c69..edba95eedb6 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_5.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_5.RULE @@ -1 +1,8 @@ +--- +license_expression: elastic-license-v2 +is_license_reference: yes +relevance: 99 +notes: this could refer to the older elastic-license-2018 +--- + ELASTIC-LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_5.yml b/src/licensedcode/data/rules/elastic-license-2018_5.yml deleted file mode 100644 index e4630d82f0b..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: elastic-license-v2 -is_license_reference: yes -relevance: 99 -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_6.RULE b/src/licensedcode/data/rules/elastic-license-2018_6.RULE index 706f789cf95..69bdd6756aa 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_6.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_6.RULE @@ -1 +1,10 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - ELASTIC-LICENSE.txt +notes: this could refer to the older elastic-license-2018 +--- + licenseFilename = "ELASTIC-LICENSE.txt" \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_6.yml b/src/licensedcode/data/rules/elastic-license-2018_6.yml deleted file mode 100644 index f67a7655ac3..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - ELASTIC-LICENSE.txt -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_7.RULE b/src/licensedcode/data/rules/elastic-license-2018_7.RULE index 674093911ab..fad5c91292b 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_7.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_7.RULE @@ -1 +1,8 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +notes: this could refer to the older elastic-license-2018 +--- + licensed under the free-of-charge Elastic Basic license \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_7.yml b/src/licensedcode/data/rules/elastic-license-2018_7.yml deleted file mode 100644 index cf961023a68..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_8.RULE b/src/licensedcode/data/rules/elastic-license-2018_8.RULE index 6ee0c5cc8f8..08490e339d0 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_8.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_8.RULE @@ -1 +1,8 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +notes: this could refer to the older elastic-license-2018 +--- + now licenced under the free-of-charge Elastic Basic licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_8.yml b/src/licensedcode/data/rules/elastic-license-2018_8.yml deleted file mode 100644 index cf961023a68..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-2018_9.RULE b/src/licensedcode/data/rules/elastic-license-2018_9.RULE index 445369c830f..b7a1448c144 100644 --- a/src/licensedcode/data/rules/elastic-license-2018_9.RULE +++ b/src/licensedcode/data/rules/elastic-license-2018_9.RULE @@ -1 +1,8 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 99 +notes: this could refer to the older elastic-license-2018 +--- + now licensed under the Elastic Basic license \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-2018_9.yml b/src/licensedcode/data/rules/elastic-license-2018_9.yml deleted file mode 100644 index cf961023a68..00000000000 --- a/src/licensedcode/data/rules/elastic-license-2018_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 99 -notes: this could refer to the older elastic-license-2018 diff --git a/src/licensedcode/data/rules/elastic-license-v2_1.RULE b/src/licensedcode/data/rules/elastic-license-v2_1.RULE index 07a3e3afee2..505198c7be8 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_1.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_1.RULE @@ -1 +1,9 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - licenses/ELASTIC-LICENSE-2.0.txt +--- + code covered by the [Elastic license](licenses/ELASTIC-LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_1.yml b/src/licensedcode/data/rules/elastic-license-v2_1.yml deleted file mode 100644 index 5ef49cb8e51..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - licenses/ELASTIC-LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/elastic-license-v2_2.RULE b/src/licensedcode/data/rules/elastic-license-v2_2.RULE index 0bf9128bad4..ce7277c097b 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_2.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_2.RULE @@ -1 +1,9 @@ +--- +license_expression: elastic-license-v2 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/ELASTIC-LICENSE-2.0.txt +--- + licenses/ELASTIC-LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_2.yml b/src/licensedcode/data/rules/elastic-license-v2_2.yml deleted file mode 100644 index 404173eb316..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elastic-license-v2 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/ELASTIC-LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/elastic-license-v2_3.RULE b/src/licensedcode/data/rules/elastic-license-v2_3.RULE index ad65943b7ab..354b1a917d0 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_3.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: elastic-license-v2 +is_license_reference: yes +relevance: 100 +--- + ELASTIC-LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_3.yml b/src/licensedcode/data/rules/elastic-license-v2_3.yml deleted file mode 100644 index a6da99323c9..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: elastic-license-v2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/elastic-license-v2_4.RULE b/src/licensedcode/data/rules/elastic-license-v2_4.RULE index 0bc6f493909..6f06a3beaac 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_4.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_4.RULE @@ -1 +1,7 @@ +--- +license_expression: elastic-license-v2 +is_license_reference: yes +relevance: 100 +--- + ELASTIC-LICENSE-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_4.yml b/src/licensedcode/data/rules/elastic-license-v2_4.yml deleted file mode 100644 index a6da99323c9..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: elastic-license-v2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/elastic-license-v2_5.RULE b/src/licensedcode/data/rules/elastic-license-v2_5.RULE index 8205f2a76e8..cfd16847e55 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_5.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: elastic-license-v2 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - licenses/ELASTIC-LICENSE-2.0.txt +--- + The top-level `x-pack` directory contains code covered by the [Elastic license](licenses/ELASTIC-LICENSE-2.0.txt). Community contributions to this code are welcome, and should have the following license header unless instructed diff --git a/src/licensedcode/data/rules/elastic-license-v2_5.yml b/src/licensedcode/data/rules/elastic-license-v2_5.yml deleted file mode 100644 index 5ef49cb8e51..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elastic-license-v2 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - licenses/ELASTIC-LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/elastic-license-v2_6.RULE b/src/licensedcode/data/rules/elastic-license-v2_6.RULE index 5904054d9d7..0d286abc71f 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_6.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_6.RULE @@ -1 +1,9 @@ +--- +license_expression: elastic-license-v2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Elastic-2.0 +--- + https://licenses.nuget.org/Elastic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_6.yml b/src/licensedcode/data/rules/elastic-license-v2_6.yml deleted file mode 100644 index 919f8444a65..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elastic-license-v2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Elastic-2.0 diff --git a/src/licensedcode/data/rules/elastic-license-v2_7.RULE b/src/licensedcode/data/rules/elastic-license-v2_7.RULE index 9e1e826bfd2..c98876306b7 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_7.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_7.RULE @@ -1 +1,7 @@ +--- +license_expression: elastic-license-v2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Elastic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_7.yml b/src/licensedcode/data/rules/elastic-license-v2_7.yml deleted file mode 100644 index a6da99323c9..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: elastic-license-v2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/elastic-license-v2_8.RULE b/src/licensedcode/data/rules/elastic-license-v2_8.RULE index 9d137c5bcc2..1ebda2a36a6 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_8.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: elastic-license-v2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Elastic-2.0 +--- + LICENSE {{Elastic-2.0}} https://spdx.org/licenses/Elastic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_8.yml b/src/licensedcode/data/rules/elastic-license-v2_8.yml deleted file mode 100644 index 09ece3e6b13..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elastic-license-v2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Elastic-2.0 diff --git a/src/licensedcode/data/rules/elastic-license-v2_9.RULE b/src/licensedcode/data/rules/elastic-license-v2_9.RULE index 8f44293c878..65f8594967e 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_9.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_9.RULE @@ -1 +1,9 @@ +--- +license_expression: elastic-license-v2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Elastic-2.0 +--- + {{Elastic-2.0}} https://spdx.org/licenses/Elastic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_9.yml b/src/licensedcode/data/rules/elastic-license-v2_9.yml deleted file mode 100644 index 09ece3e6b13..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elastic-license-v2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Elastic-2.0 diff --git a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_1.RULE b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_1.RULE index 0f576b61a11..f8ecf86b33b 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_1.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_1.RULE @@ -1,5 +1,16 @@ +--- +license_expression: elastic-license-v2 OR mongodb-sspl-1.0 +is_license_notice: yes +relevance: 100 +notes: https://github.com/elastic/elasticsearch/commit/a92a647b9f17d1bddf5c707490a19482c273eda3 +ignorable_copyrights: + - Copyright Elasticsearch B.V. +ignorable_holders: + - Elasticsearch B.V. +--- + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the {{Elastic License}} * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server - * Side Public License, v 1. + * Side Public License, v 1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_1.yml b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_1.yml deleted file mode 100644 index 1331e1b284c..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: elastic-license-v2 OR mongodb-sspl-1.0 -is_license_notice: yes -relevance: 100 -notes: https://github.com/elastic/elasticsearch/commit/a92a647b9f17d1bddf5c707490a19482c273eda3 -ignorable_copyrights: - - Copyright Elasticsearch B.V. -ignorable_holders: - - Elasticsearch B.V. diff --git a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_2.RULE b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_2.RULE index 9c55b9d3f36..ca9d45a342e 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_2.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (elastic-license-v2 OR mongodb-sspl-1.0) AND apache-2.0 AND other-permissive + AND elastic-license-v2 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - licenses/ELASTIC-LICENSE-2.0.txt +notes: See https://github.com/elastic/elasticsearch/commit/a92a647b9f17d1bddf5c707490a19482c273eda3 +--- + Source code in this repository is covered by (i) a dual license under the Server Side Public License, v 1 and the Elastic License 2.0 or (ii) an Apache License 2.0 compatible license or (iii) solely under the Elastic License 2.0, in each diff --git a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_2.yml b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_2.yml deleted file mode 100644 index 98ffb5f7965..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (elastic-license-v2 OR mongodb-sspl-1.0) AND apache-2.0 AND other-permissive - AND elastic-license-v2 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - licenses/ELASTIC-LICENSE-2.0.txt -notes: See https://github.com/elastic/elasticsearch/commit/a92a647b9f17d1bddf5c707490a19482c273eda3 diff --git a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_3.RULE b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_3.RULE index 7a44aa2bb54..b08ee232ef0 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_3.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: elastic-license-v2 OR mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/SSPL-1.0+ELASTIC-LICENSE-2.0.tx +notes: https://github.com/elastic/elasticsearch/commit/a92a647b9f17d1bddf5c707490a19482c273eda3 +--- + licenses/SSPL-1.0+ELASTIC-LICENSE-2.0.tx \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_3.yml b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_3.yml deleted file mode 100644 index 9bb9ee4d78c..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: elastic-license-v2 OR mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/SSPL-1.0+ELASTIC-LICENSE-2.0.tx -notes: https://github.com/elastic/elasticsearch/commit/a92a647b9f17d1bddf5c707490a19482c273eda3 diff --git a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_4.RULE b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_4.RULE index 815fc33c84d..22a2c5a7d80 100644 --- a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_4.RULE +++ b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: elastic-license-v2 OR mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - sspl+elastic-license-header.txt' +notes: https://github.com/elastic/elasticsearch/commit/a92a647b9f17d1bddf5c707490a19482c273eda3 +--- + sspl+elastic-license-header.txt' \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_4.yml b/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_4.yml deleted file mode 100644 index 869fc065b4c..00000000000 --- a/src/licensedcode/data/rules/elastic-license-v2_or_mongodb-sspl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: elastic-license-v2 OR mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - sspl+elastic-license-header.txt' -notes: https://github.com/elastic/elasticsearch/commit/a92a647b9f17d1bddf5c707490a19482c273eda3 diff --git a/src/licensedcode/data/rules/elastic_1.RULE b/src/licensedcode/data/rules/elastic_1.RULE index 8337cb27220..3aea8e55120 100644 --- a/src/licensedcode/data/rules/elastic_1.RULE +++ b/src/licensedcode/data/rules/elastic_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: elastic-license-2018 +is_license_notice: yes +relevance: 100 +--- + Licensed under the {{Elastic License}}; - * you may not use this file except in compliance with the {{Elastic License}}. + * you may not use this file except in compliance with the {{Elastic License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic_1.yml b/src/licensedcode/data/rules/elastic_1.yml deleted file mode 100644 index d14602cf078..00000000000 --- a/src/licensedcode/data/rules/elastic_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: elastic-license-2018 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/elastic_2.RULE b/src/licensedcode/data/rules/elastic_2.RULE index 1fcc7280437..297d0cc20de 100644 --- a/src/licensedcode/data/rules/elastic_2.RULE +++ b/src/licensedcode/data/rules/elastic_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: elastic-license-2018 +is_license_notice: yes +relevance: 100 +--- + This directory tree contains files subject to the {{Elastic License}}. The files subject to the {{Elastic License}} are grouped in this directory to -clearly separate them from files licensed under the {{Apache License 2.0}}. +clearly separate them from files licensed under the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/elastic_2.yml b/src/licensedcode/data/rules/elastic_2.yml deleted file mode 100644 index d14602cf078..00000000000 --- a/src/licensedcode/data/rules/elastic_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: elastic-license-2018 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/elib-gpl.RULE b/src/licensedcode/data/rules/elib-gpl.RULE index 3d27a534c9d..703f680d7f2 100644 --- a/src/licensedcode/data/rules/elib-gpl.RULE +++ b/src/licensedcode/data/rules/elib-gpl.RULE @@ -1,3 +1,9 @@ +--- +license_expression: elib-gpl +is_license_notice: yes +minimum_coverage: 75 +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. diff --git a/src/licensedcode/data/rules/elib-gpl.yml b/src/licensedcode/data/rules/elib-gpl.yml deleted file mode 100644 index 312de1624c3..00000000000 --- a/src/licensedcode/data/rules/elib-gpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: elib-gpl -is_license_notice: yes -minimum_coverage: 75 diff --git a/src/licensedcode/data/rules/elib-gpl_1.RULE b/src/licensedcode/data/rules/elib-gpl_1.RULE index 59b5746160a..60f5a521976 100644 --- a/src/licensedcode/data/rules/elib-gpl_1.RULE +++ b/src/licensedcode/data/rules/elib-gpl_1.RULE @@ -1 +1,9 @@ +--- +license_expression: elib-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.math.utah.edu/docs/info/elib_3.html +--- + http://www.math.utah.edu/docs/info/elib_3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/elib-gpl_1.yml b/src/licensedcode/data/rules/elib-gpl_1.yml deleted file mode 100644 index 4041bc0a17f..00000000000 --- a/src/licensedcode/data/rules/elib-gpl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elib-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.math.utah.edu/docs/info/elib_3.html diff --git a/src/licensedcode/data/rules/elib-gpl_2.RULE b/src/licensedcode/data/rules/elib-gpl_2.RULE index 92a79174e6f..9545803d3c8 100644 --- a/src/licensedcode/data/rules/elib-gpl_2.RULE +++ b/src/licensedcode/data/rules/elib-gpl_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: elib-gpl +is_license_notice: yes +relevance: 100 +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. diff --git a/src/licensedcode/data/rules/elib-gpl_2.yml b/src/licensedcode/data/rules/elib-gpl_2.yml deleted file mode 100644 index f9ba5ac1204..00000000000 --- a/src/licensedcode/data/rules/elib-gpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: elib-gpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/elib-gpl_3.RULE b/src/licensedcode/data/rules/elib-gpl_3.RULE index c0c49fd9d87..e20fc113672 100644 --- a/src/licensedcode/data/rules/elib-gpl_3.RULE +++ b/src/licensedcode/data/rules/elib-gpl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: elib-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.math.utah.edu/docs/info/elib_1.html +--- + http://www.math.utah.edu/docs/info/elib_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/elib-gpl_3.yml b/src/licensedcode/data/rules/elib-gpl_3.yml deleted file mode 100644 index b677c977a65..00000000000 --- a/src/licensedcode/data/rules/elib-gpl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elib-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.math.utah.edu/docs/info/elib_1.html diff --git a/src/licensedcode/data/rules/elib-gpl_4.RULE b/src/licensedcode/data/rules/elib-gpl_4.RULE index ccc69076e9f..9bd19d56c5c 100644 --- a/src/licensedcode/data/rules/elib-gpl_4.RULE +++ b/src/licensedcode/data/rules/elib-gpl_4.RULE @@ -1 +1,9 @@ +--- +license_expression: elib-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.math.utah.edu/docs/info/elib_1.html#SEC1 +--- + http://www.math.utah.edu/docs/info/elib_1.html#SEC1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/elib-gpl_4.yml b/src/licensedcode/data/rules/elib-gpl_4.yml deleted file mode 100644 index ccf5b6fc444..00000000000 --- a/src/licensedcode/data/rules/elib-gpl_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: elib-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.math.utah.edu/docs/info/elib_1.html#SEC1 diff --git a/src/licensedcode/data/rules/emit_0.RULE b/src/licensedcode/data/rules/emit_0.RULE index 6e91a358796..5b76f8fe718 100644 --- a/src/licensedcode/data/rules/emit_0.RULE +++ b/src/licensedcode/data/rules/emit_0.RULE @@ -1,3 +1,12 @@ +--- +license_expression: emit +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Wix.com +ignorable_holders: + - Wix.com +--- + The Enhanced MIT License (EMIT) Copyright (c) Wix.com @@ -6,4 +15,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of 1) the above copyright notice, this permission notice and the complete introduction section above shall be included in all copies or substantial portions of the Software. 2) when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any “viral” copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE 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/emit_0.yml b/src/licensedcode/data/rules/emit_0.yml deleted file mode 100644 index eecf3e80182..00000000000 --- a/src/licensedcode/data/rules/emit_0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: emit -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Wix.com -ignorable_holders: - - Wix.com diff --git a/src/licensedcode/data/rules/emit_1.RULE b/src/licensedcode/data/rules/emit_1.RULE index b505302059b..b5f3e3a7d1b 100644 --- a/src/licensedcode/data/rules/emit_1.RULE +++ b/src/licensedcode/data/rules/emit_1.RULE @@ -1,6 +1,11 @@ +--- +license_expression: emit +is_license_notice: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 1) the above copyright notice, this permission notice and the complete introduction section above shall be included in all copies or substantial portions of the Software. 2) when the Software is distributed as source code, the licensee is prohibited to change the license of the Software to any “viral” copyleft-type license, such as, inter alia: GPL, LGPL, EPL, MPL, etc. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE 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/emit_1.yml b/src/licensedcode/data/rules/emit_1.yml deleted file mode 100644 index 9b9823a04b6..00000000000 --- a/src/licensedcode/data/rules/emit_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: emit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/emit_2.RULE b/src/licensedcode/data/rules/emit_2.RULE index 957ca021142..33d5960c104 100644 --- a/src/licensedcode/data/rules/emit_2.RULE +++ b/src/licensedcode/data/rules/emit_2.RULE @@ -1 +1,8 @@ -The Enhanced MIT License (EMIT) +--- +license_expression: emit +is_license_tag: yes +relevance: 100 +minimum_coverage: 90 +--- + +The Enhanced MIT License (EMIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/emit_2.yml b/src/licensedcode/data/rules/emit_2.yml deleted file mode 100644 index e883d73a7ca..00000000000 --- a/src/licensedcode/data/rules/emit_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: emit -is_license_tag: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/emx-library.RULE b/src/licensedcode/data/rules/emx-library.RULE index 7e39fe15abf..9fdc4034951 100644 --- a/src/licensedcode/data/rules/emx-library.RULE +++ b/src/licensedcode/data/rules/emx-library.RULE @@ -1 +1,9 @@ +--- +license_expression: emx-library +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX +--- + http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX \ No newline at end of file diff --git a/src/licensedcode/data/rules/emx-library.yml b/src/licensedcode/data/rules/emx-library.yml deleted file mode 100644 index 715a4e76700..00000000000 --- a/src/licensedcode/data/rules/emx-library.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: emx-library -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://web.lemoyne.edu/courseinformation/emtex/emx/doc/COPYING.EMX diff --git a/src/licensedcode/data/rules/enhydra-1.1.RULE b/src/licensedcode/data/rules/enhydra-1.1.RULE index 14101824931..1e15b29685e 100644 --- a/src/licensedcode/data/rules/enhydra-1.1.RULE +++ b/src/licensedcode/data/rules/enhydra-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: enhydra-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ksoap.objectweb.org/software/license/index.html +--- + http://ksoap.objectweb.org/software/license/index.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/enhydra-1.1.yml b/src/licensedcode/data/rules/enhydra-1.1.yml deleted file mode 100644 index 6a0d2d0a2e7..00000000000 --- a/src/licensedcode/data/rules/enhydra-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enhydra-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ksoap.objectweb.org/software/license/index.html diff --git a/src/licensedcode/data/rules/enlightenment_1.RULE b/src/licensedcode/data/rules/enlightenment_1.RULE index 6a48e9eca26..1d68b99dd70 100644 --- a/src/licensedcode/data/rules/enlightenment_1.RULE +++ b/src/licensedcode/data/rules/enlightenment_1.RULE @@ -1 +1,10 @@ +--- +license_expression: enlightenment +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Enlightenment License (e16) \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_1.yml b/src/licensedcode/data/rules/enlightenment_1.yml deleted file mode 100644 index f8952bfd36a..00000000000 --- a/src/licensedcode/data/rules/enlightenment_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enlightenment_10.RULE b/src/licensedcode/data/rules/enlightenment_10.RULE index 8efc5bbc694..217ff077056 100644 --- a/src/licensedcode/data/rules/enlightenment_10.RULE +++ b/src/licensedcode/data/rules/enlightenment_10.RULE @@ -1 +1,9 @@ +--- +license_expression: enlightenment +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-advertising +--- + {{MIT-advertising}} https://spdx.org/licenses/MIT-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_10.yml b/src/licensedcode/data/rules/enlightenment_10.yml deleted file mode 100644 index 2622ba72668..00000000000 --- a/src/licensedcode/data/rules/enlightenment_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-advertising diff --git a/src/licensedcode/data/rules/enlightenment_11.RULE b/src/licensedcode/data/rules/enlightenment_11.RULE index 8b571c9f20f..fb59af09c4d 100644 --- a/src/licensedcode/data/rules/enlightenment_11.RULE +++ b/src/licensedcode/data/rules/enlightenment_11.RULE @@ -1 +1,9 @@ +--- +license_expression: enlightenment +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-advertising +--- + LICENSE {{MIT-advertising}} https://spdx.org/licenses/MIT-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_11.yml b/src/licensedcode/data/rules/enlightenment_11.yml deleted file mode 100644 index 2622ba72668..00000000000 --- a/src/licensedcode/data/rules/enlightenment_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-advertising diff --git a/src/licensedcode/data/rules/enlightenment_2.RULE b/src/licensedcode/data/rules/enlightenment_2.RULE index 38cbd13da01..f20074a9217 100644 --- a/src/licensedcode/data/rules/enlightenment_2.RULE +++ b/src/licensedcode/data/rules/enlightenment_2.RULE @@ -1 +1,10 @@ +--- +license_expression: enlightenment +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Enlightenment License (e16) \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_2.yml b/src/licensedcode/data/rules/enlightenment_2.yml deleted file mode 100644 index f8952bfd36a..00000000000 --- a/src/licensedcode/data/rules/enlightenment_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enlightenment_3.RULE b/src/licensedcode/data/rules/enlightenment_3.RULE index 98d467061a1..6ef8c043b93 100644 --- a/src/licensedcode/data/rules/enlightenment_3.RULE +++ b/src/licensedcode/data/rules/enlightenment_3.RULE @@ -1 +1,10 @@ +--- +license_expression: enlightenment +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT-advertising Enlightenment License (e16) \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_3.yml b/src/licensedcode/data/rules/enlightenment_3.yml deleted file mode 100644 index f8952bfd36a..00000000000 --- a/src/licensedcode/data/rules/enlightenment_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enlightenment_4.RULE b/src/licensedcode/data/rules/enlightenment_4.RULE index 8b2ada9ddf8..c381603ad73 100644 --- a/src/licensedcode/data/rules/enlightenment_4.RULE +++ b/src/licensedcode/data/rules/enlightenment_4.RULE @@ -1 +1,10 @@ +--- +license_expression: enlightenment +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Enlightenment License (e16) MIT-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_4.yml b/src/licensedcode/data/rules/enlightenment_4.yml deleted file mode 100644 index f8952bfd36a..00000000000 --- a/src/licensedcode/data/rules/enlightenment_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enlightenment_5.RULE b/src/licensedcode/data/rules/enlightenment_5.RULE index 72c73ac5a11..c22deb87d7f 100644 --- a/src/licensedcode/data/rules/enlightenment_5.RULE +++ b/src/licensedcode/data/rules/enlightenment_5.RULE @@ -1 +1,10 @@ +--- +license_expression: enlightenment +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_5.yml b/src/licensedcode/data/rules/enlightenment_5.yml deleted file mode 100644 index 37bb17cdac2..00000000000 --- a/src/licensedcode/data/rules/enlightenment_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enlightenment -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enlightenment_6.RULE b/src/licensedcode/data/rules/enlightenment_6.RULE index 8ec13184d65..3faea68bec3 100644 --- a/src/licensedcode/data/rules/enlightenment_6.RULE +++ b/src/licensedcode/data/rules/enlightenment_6.RULE @@ -1 +1,10 @@ +--- +license_expression: enlightenment +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Enlightenment License (e16) \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_6.yml b/src/licensedcode/data/rules/enlightenment_6.yml deleted file mode 100644 index 37bb17cdac2..00000000000 --- a/src/licensedcode/data/rules/enlightenment_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enlightenment -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enlightenment_7.RULE b/src/licensedcode/data/rules/enlightenment_7.RULE index c243d100c3e..6bdec10a81f 100644 --- a/src/licensedcode/data/rules/enlightenment_7.RULE +++ b/src/licensedcode/data/rules/enlightenment_7.RULE @@ -1 +1,10 @@ +--- +license_expression: enlightenment +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MIT-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_7.yml b/src/licensedcode/data/rules/enlightenment_7.yml deleted file mode 100644 index 37bb17cdac2..00000000000 --- a/src/licensedcode/data/rules/enlightenment_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enlightenment -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enlightenment_8.RULE b/src/licensedcode/data/rules/enlightenment_8.RULE index c9ac1856783..3d7bced932a 100644 --- a/src/licensedcode/data/rules/enlightenment_8.RULE +++ b/src/licensedcode/data/rules/enlightenment_8.RULE @@ -1 +1,9 @@ +--- +license_expression: enlightenment +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MIT-advertising +--- + https://licenses.nuget.org/MIT-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_8.yml b/src/licensedcode/data/rules/enlightenment_8.yml deleted file mode 100644 index f270f639527..00000000000 --- a/src/licensedcode/data/rules/enlightenment_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MIT-advertising diff --git a/src/licensedcode/data/rules/enlightenment_9.RULE b/src/licensedcode/data/rules/enlightenment_9.RULE index 62fed4f3de8..adfa2d88bd9 100644 --- a/src/licensedcode/data/rules/enlightenment_9.RULE +++ b/src/licensedcode/data/rules/enlightenment_9.RULE @@ -1 +1,7 @@ +--- +license_expression: enlightenment +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MIT-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_9.yml b/src/licensedcode/data/rules/enlightenment_9.yml deleted file mode 100644 index 3f458ed3233..00000000000 --- a/src/licensedcode/data/rules/enlightenment_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/enlightenment_url_1.RULE b/src/licensedcode/data/rules/enlightenment_url_1.RULE index cab2144cfc2..a81f58ee3b7 100644 --- a/src/licensedcode/data/rules/enlightenment_url_1.RULE +++ b/src/licensedcode/data/rules/enlightenment_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: enlightenment +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-advertising +--- + https://spdx.org/licenses/mit-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_url_1.yml b/src/licensedcode/data/rules/enlightenment_url_1.yml deleted file mode 100644 index 2697a3fca5e..00000000000 --- a/src/licensedcode/data/rules/enlightenment_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-advertising diff --git a/src/licensedcode/data/rules/enlightenment_url_2.RULE b/src/licensedcode/data/rules/enlightenment_url_2.RULE index 515c5f6e1d7..1acc32080d0 100644 --- a/src/licensedcode/data/rules/enlightenment_url_2.RULE +++ b/src/licensedcode/data/rules/enlightenment_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: enlightenment +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-advertising.html +--- + https://spdx.org/licenses/mit-advertising.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/enlightenment_url_2.yml b/src/licensedcode/data/rules/enlightenment_url_2.yml deleted file mode 100644 index c6b3380ba19..00000000000 --- a/src/licensedcode/data/rules/enlightenment_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-advertising.html diff --git a/src/licensedcode/data/rules/enna_1.RULE b/src/licensedcode/data/rules/enna_1.RULE index b146c61d8d4..04f8f509688 100644 --- a/src/licensedcode/data/rules/enna_1.RULE +++ b/src/licensedcode/data/rules/enna_1.RULE @@ -1 +1,10 @@ +--- +license_expression: enna +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + enna License \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_1.yml b/src/licensedcode/data/rules/enna_1.yml deleted file mode 100644 index aa897231c85..00000000000 --- a/src/licensedcode/data/rules/enna_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enna -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enna_10.RULE b/src/licensedcode/data/rules/enna_10.RULE index e5335624f8d..5d5d9b00f51 100644 --- a/src/licensedcode/data/rules/enna_10.RULE +++ b/src/licensedcode/data/rules/enna_10.RULE @@ -1 +1,9 @@ +--- +license_expression: enna +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-enna +--- + LICENSE {{MIT-enna}} https://spdx.org/licenses/MIT-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_10.yml b/src/licensedcode/data/rules/enna_10.yml deleted file mode 100644 index 78982525dd6..00000000000 --- a/src/licensedcode/data/rules/enna_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enna -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-enna diff --git a/src/licensedcode/data/rules/enna_11.RULE b/src/licensedcode/data/rules/enna_11.RULE index 7fbb868f38a..e7b9127f7c0 100644 --- a/src/licensedcode/data/rules/enna_11.RULE +++ b/src/licensedcode/data/rules/enna_11.RULE @@ -1 +1,9 @@ +--- +license_expression: enna +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-enna +--- + {{MIT-enna}} https://spdx.org/licenses/MIT-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_11.yml b/src/licensedcode/data/rules/enna_11.yml deleted file mode 100644 index 78982525dd6..00000000000 --- a/src/licensedcode/data/rules/enna_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enna -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-enna diff --git a/src/licensedcode/data/rules/enna_2.RULE b/src/licensedcode/data/rules/enna_2.RULE index 682add550a6..a416cf78fcb 100644 --- a/src/licensedcode/data/rules/enna_2.RULE +++ b/src/licensedcode/data/rules/enna_2.RULE @@ -1 +1,10 @@ +--- +license_expression: enna +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: enna License \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_2.yml b/src/licensedcode/data/rules/enna_2.yml deleted file mode 100644 index aa897231c85..00000000000 --- a/src/licensedcode/data/rules/enna_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enna -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enna_3.RULE b/src/licensedcode/data/rules/enna_3.RULE index 6c8e6b1e323..22552af4751 100644 --- a/src/licensedcode/data/rules/enna_3.RULE +++ b/src/licensedcode/data/rules/enna_3.RULE @@ -1 +1,10 @@ +--- +license_expression: enna +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT-enna enna License \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_3.yml b/src/licensedcode/data/rules/enna_3.yml deleted file mode 100644 index aa897231c85..00000000000 --- a/src/licensedcode/data/rules/enna_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enna -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enna_4.RULE b/src/licensedcode/data/rules/enna_4.RULE index e0c8008daf2..72dfb022038 100644 --- a/src/licensedcode/data/rules/enna_4.RULE +++ b/src/licensedcode/data/rules/enna_4.RULE @@ -1 +1,10 @@ +--- +license_expression: enna +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + enna License MIT-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_4.yml b/src/licensedcode/data/rules/enna_4.yml deleted file mode 100644 index aa897231c85..00000000000 --- a/src/licensedcode/data/rules/enna_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enna -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enna_5.RULE b/src/licensedcode/data/rules/enna_5.RULE index fdaf40f72e4..686b0c1c0cb 100644 --- a/src/licensedcode/data/rules/enna_5.RULE +++ b/src/licensedcode/data/rules/enna_5.RULE @@ -1 +1,10 @@ +--- +license_expression: enna +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_5.yml b/src/licensedcode/data/rules/enna_5.yml deleted file mode 100644 index 595f39752dc..00000000000 --- a/src/licensedcode/data/rules/enna_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enna -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enna_6.RULE b/src/licensedcode/data/rules/enna_6.RULE index 24ed535f1a7..70b6a22afc8 100644 --- a/src/licensedcode/data/rules/enna_6.RULE +++ b/src/licensedcode/data/rules/enna_6.RULE @@ -1 +1,10 @@ +--- +license_expression: enna +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: enna License \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_6.yml b/src/licensedcode/data/rules/enna_6.yml deleted file mode 100644 index 595f39752dc..00000000000 --- a/src/licensedcode/data/rules/enna_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enna -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enna_7.RULE b/src/licensedcode/data/rules/enna_7.RULE index d09f1840873..6e7326b8d20 100644 --- a/src/licensedcode/data/rules/enna_7.RULE +++ b/src/licensedcode/data/rules/enna_7.RULE @@ -1 +1,10 @@ +--- +license_expression: enna +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MIT-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_7.yml b/src/licensedcode/data/rules/enna_7.yml deleted file mode 100644 index 595f39752dc..00000000000 --- a/src/licensedcode/data/rules/enna_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enna -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/enna_8.RULE b/src/licensedcode/data/rules/enna_8.RULE index 38f982c300e..9e939d18a3c 100644 --- a/src/licensedcode/data/rules/enna_8.RULE +++ b/src/licensedcode/data/rules/enna_8.RULE @@ -1 +1,9 @@ +--- +license_expression: enna +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MIT-enna +--- + https://licenses.nuget.org/MIT-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_8.yml b/src/licensedcode/data/rules/enna_8.yml deleted file mode 100644 index 58d098bfec7..00000000000 --- a/src/licensedcode/data/rules/enna_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enna -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MIT-enna diff --git a/src/licensedcode/data/rules/enna_9.RULE b/src/licensedcode/data/rules/enna_9.RULE index 3842e4427ac..3c7d1133ab1 100644 --- a/src/licensedcode/data/rules/enna_9.RULE +++ b/src/licensedcode/data/rules/enna_9.RULE @@ -1 +1,7 @@ +--- +license_expression: enna +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MIT-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_9.yml b/src/licensedcode/data/rules/enna_9.yml deleted file mode 100644 index fb88f5f26f6..00000000000 --- a/src/licensedcode/data/rules/enna_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: enna -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/enna_url_1.RULE b/src/licensedcode/data/rules/enna_url_1.RULE index 24fa29dc4cf..6ead33bdec7 100644 --- a/src/licensedcode/data/rules/enna_url_1.RULE +++ b/src/licensedcode/data/rules/enna_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: enna +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-enna +--- + https://spdx.org/licenses/mit-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_url_1.yml b/src/licensedcode/data/rules/enna_url_1.yml deleted file mode 100644 index 68d35bfe432..00000000000 --- a/src/licensedcode/data/rules/enna_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enna -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-enna diff --git a/src/licensedcode/data/rules/enna_url_2.RULE b/src/licensedcode/data/rules/enna_url_2.RULE index 929e1256daf..24558304c5b 100644 --- a/src/licensedcode/data/rules/enna_url_2.RULE +++ b/src/licensedcode/data/rules/enna_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: enna +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-enna.html +--- + https://spdx.org/licenses/mit-enna.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/enna_url_2.yml b/src/licensedcode/data/rules/enna_url_2.yml deleted file mode 100644 index 3da5fd3b2fe..00000000000 --- a/src/licensedcode/data/rules/enna_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: enna -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-enna.html diff --git a/src/licensedcode/data/rules/entessa-1.0.RULE b/src/licensedcode/data/rules/entessa-1.0.RULE index fd48d304860..dfdb59c4c3b 100644 --- a/src/licensedcode/data/rules/entessa-1.0.RULE +++ b/src/licensedcode/data/rules/entessa-1.0.RULE @@ -1 +1,9 @@ -http://openseal.org/epl/ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://openseal.org/epl/ +--- + +http://openseal.org/epl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0.SPDX.RULE b/src/licensedcode/data/rules/entessa-1.0.SPDX.RULE index 8b3818fda9d..1c30e0cc202 100644 --- a/src/licensedcode/data/rules/entessa-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/entessa-1.0.SPDX.RULE @@ -1,3 +1,21 @@ +--- +license_expression: entessa-1.0 +is_license_text: yes +minimum_coverage: 90 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2003 Entessa, LLC. +ignorable_holders: + - Entessa, LLC. +ignorable_authors: + - openSEAL (http://www.openseal.org/) +ignorable_urls: + - http://www.entessa.com/ + - http://www.openseal.org/ +ignorable_emails: + - epl@entessa.com +--- + Entessa Public License Version. 1.0 Copyright (c) 2003 Entessa, LLC. All rights reserved. diff --git a/src/licensedcode/data/rules/entessa-1.0.SPDX.yml b/src/licensedcode/data/rules/entessa-1.0.SPDX.yml deleted file mode 100644 index 552c74d665d..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0.SPDX.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: entessa-1.0 -is_license_text: yes -minimum_coverage: 90 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2003 Entessa, LLC. -ignorable_holders: - - Entessa, LLC. -ignorable_authors: - - openSEAL (http://www.openseal.org/) -ignorable_urls: - - http://www.entessa.com/ - - http://www.openseal.org/ -ignorable_emails: - - epl@entessa.com diff --git a/src/licensedcode/data/rules/entessa-1.0.yml b/src/licensedcode/data/rules/entessa-1.0.yml deleted file mode 100644 index d597335ca57..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://openseal.org/epl/ diff --git a/src/licensedcode/data/rules/entessa-1.0_1.RULE b/src/licensedcode/data/rules/entessa-1.0_1.RULE index c204e0a5f1a..39e24cbdd9c 100644 --- a/src/licensedcode/data/rules/entessa-1.0_1.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/entessa.php +--- + http://opensource.org/licenses/entessa.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_1.yml b/src/licensedcode/data/rules/entessa-1.0_1.yml deleted file mode 100644 index 1c1f4a6822d..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/entessa.php diff --git a/src/licensedcode/data/rules/entessa-1.0_10.RULE b/src/licensedcode/data/rules/entessa-1.0_10.RULE index de3402d5707..b18b524072c 100644 --- a/src/licensedcode/data/rules/entessa-1.0_10.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: entessa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Entessa Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_10.yml b/src/licensedcode/data/rules/entessa-1.0_10.yml deleted file mode 100644 index 63d225905fb..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: entessa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/entessa-1.0_11.RULE b/src/licensedcode/data/rules/entessa-1.0_11.RULE index f6d0517d490..b1610b83a3a 100644 --- a/src/licensedcode/data/rules/entessa-1.0_11.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: entessa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_11.yml b/src/licensedcode/data/rules/entessa-1.0_11.yml deleted file mode 100644 index 63d225905fb..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: entessa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/entessa-1.0_12.RULE b/src/licensedcode/data/rules/entessa-1.0_12.RULE index 32b6c4eac38..001e8812489 100644 --- a/src/licensedcode/data/rules/entessa-1.0_12.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Entessa +--- + https://licenses.nuget.org/Entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_12.yml b/src/licensedcode/data/rules/entessa-1.0_12.yml deleted file mode 100644 index eea1a5cb8c5..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Entessa diff --git a/src/licensedcode/data/rules/entessa-1.0_13.RULE b/src/licensedcode/data/rules/entessa-1.0_13.RULE index 4e9b39cd80d..fce22914154 100644 --- a/src/licensedcode/data/rules/entessa-1.0_13.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_13.yml b/src/licensedcode/data/rules/entessa-1.0_13.yml deleted file mode 100644 index 8c0e04d6579..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/entessa-1.0_14.RULE b/src/licensedcode/data/rules/entessa-1.0_14.RULE index 9ea760b5a1a..02b2aa1a47c 100644 --- a/src/licensedcode/data/rules/entessa-1.0_14.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Entessa +--- + LICENSE {{Entessa}} https://spdx.org/licenses/Entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_14.yml b/src/licensedcode/data/rules/entessa-1.0_14.yml deleted file mode 100644 index b5af7973594..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Entessa diff --git a/src/licensedcode/data/rules/entessa-1.0_15.RULE b/src/licensedcode/data/rules/entessa-1.0_15.RULE index cf85d736527..8506114e652 100644 --- a/src/licensedcode/data/rules/entessa-1.0_15.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Entessa +--- + {{Entessa}} https://spdx.org/licenses/Entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_15.yml b/src/licensedcode/data/rules/entessa-1.0_15.yml deleted file mode 100644 index b5af7973594..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Entessa diff --git a/src/licensedcode/data/rules/entessa-1.0_2.RULE b/src/licensedcode/data/rules/entessa-1.0_2.RULE index 9c295afb922..cb77657f863 100644 --- a/src/licensedcode/data/rules/entessa-1.0_2.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://openseal.sourceforge.net/epl/index.html +--- + http://openseal.sourceforge.net/epl/index.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_2.yml b/src/licensedcode/data/rules/entessa-1.0_2.yml deleted file mode 100644 index f4123b309fe..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://openseal.sourceforge.net/epl/index.html diff --git a/src/licensedcode/data/rules/entessa-1.0_3.RULE b/src/licensedcode/data/rules/entessa-1.0_3.RULE index 9a6b02eef19..c5ea3b90668 100644 --- a/src/licensedcode/data/rules/entessa-1.0_3.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/entessa.php +--- + http://www.opensource.org/licenses/entessa.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_3.yml b/src/licensedcode/data/rules/entessa-1.0_3.yml deleted file mode 100644 index 42ffdc1e0fe..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/entessa.php diff --git a/src/licensedcode/data/rules/entessa-1.0_4.RULE b/src/licensedcode/data/rules/entessa-1.0_4.RULE index 32c15090518..196a17322c6 100644 --- a/src/licensedcode/data/rules/entessa-1.0_4.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +--- + Entessa Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_4.yml b/src/licensedcode/data/rules/entessa-1.0_4.yml deleted file mode 100644 index 8c0e04d6579..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/entessa-1.0_5.RULE b/src/licensedcode/data/rules/entessa-1.0_5.RULE index c8566d1a6ef..dd9e2e15ae2 100644 --- a/src/licensedcode/data/rules/entessa-1.0_5.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Entessa Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_5.yml b/src/licensedcode/data/rules/entessa-1.0_5.yml deleted file mode 100644 index 0a675923c5a..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/entessa-1.0_6.RULE b/src/licensedcode/data/rules/entessa-1.0_6.RULE index d1ecf0af6c7..4accb509f62 100644 --- a/src/licensedcode/data/rules/entessa-1.0_6.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Entessa Entessa Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_6.yml b/src/licensedcode/data/rules/entessa-1.0_6.yml deleted file mode 100644 index 0a675923c5a..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/entessa-1.0_7.RULE b/src/licensedcode/data/rules/entessa-1.0_7.RULE index dcbc2e291d3..941f11ee506 100644 --- a/src/licensedcode/data/rules/entessa-1.0_7.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Entessa Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_7.yml b/src/licensedcode/data/rules/entessa-1.0_7.yml deleted file mode 100644 index 059b4bb4654..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/entessa-1.0_8.RULE b/src/licensedcode/data/rules/entessa-1.0_8.RULE index cd2485503c4..9313b13be82 100644 --- a/src/licensedcode/data/rules/entessa-1.0_8.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Entessa Public License v1.0 Entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_8.yml b/src/licensedcode/data/rules/entessa-1.0_8.yml deleted file mode 100644 index 059b4bb4654..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/entessa-1.0_9.RULE b/src/licensedcode/data/rules/entessa-1.0_9.RULE index 36ac8ece433..cd00c533471 100644 --- a/src/licensedcode/data/rules/entessa-1.0_9.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: entessa-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_9.yml b/src/licensedcode/data/rules/entessa-1.0_9.yml deleted file mode 100644 index 63d225905fb..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: entessa-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/entessa-1.0_url_1.RULE b/src/licensedcode/data/rules/entessa-1.0_url_1.RULE index 1a1d5cb30d1..5e21b5fd79d 100644 --- a/src/licensedcode/data/rules/entessa-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/entessa +--- + https://spdx.org/licenses/entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_url_1.yml b/src/licensedcode/data/rules/entessa-1.0_url_1.yml deleted file mode 100644 index 4b1053db60d..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/entessa diff --git a/src/licensedcode/data/rules/entessa-1.0_url_2.RULE b/src/licensedcode/data/rules/entessa-1.0_url_2.RULE index 9a9168f02ae..09834367a79 100644 --- a/src/licensedcode/data/rules/entessa-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/entessa.html +--- + https://spdx.org/licenses/entessa.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_url_2.yml b/src/licensedcode/data/rules/entessa-1.0_url_2.yml deleted file mode 100644 index bbc77706be2..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/entessa.html diff --git a/src/licensedcode/data/rules/entessa-1.0_url_glc_84.RULE b/src/licensedcode/data/rules/entessa-1.0_url_glc_84.RULE index 38c812fa477..15c4c8591b7 100644 --- a/src/licensedcode/data/rules/entessa-1.0_url_glc_84.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_url_glc_84.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/entessa +--- + http://opensource.org/licenses/entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_url_glc_84.yml b/src/licensedcode/data/rules/entessa-1.0_url_glc_84.yml deleted file mode 100644 index e3dffe5e1d7..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_url_glc_84.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/entessa diff --git a/src/licensedcode/data/rules/entessa-1.0_url_glc_85.RULE b/src/licensedcode/data/rules/entessa-1.0_url_glc_85.RULE index 8451df9b66b..c36db4854ca 100644 --- a/src/licensedcode/data/rules/entessa-1.0_url_glc_85.RULE +++ b/src/licensedcode/data/rules/entessa-1.0_url_glc_85.RULE @@ -1 +1,9 @@ +--- +license_expression: entessa-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/entessa +--- + https://opensource.org/licenses/entessa \ No newline at end of file diff --git a/src/licensedcode/data/rules/entessa-1.0_url_glc_85.yml b/src/licensedcode/data/rules/entessa-1.0_url_glc_85.yml deleted file mode 100644 index 2c80921787f..00000000000 --- a/src/licensedcode/data/rules/entessa-1.0_url_glc_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: entessa-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/entessa diff --git a/src/licensedcode/data/rules/epics.RULE b/src/licensedcode/data/rules/epics.RULE index 61005cf6591..8feb3a3b1db 100644 --- a/src/licensedcode/data/rules/epics.RULE +++ b/src/licensedcode/data/rules/epics.RULE @@ -1 +1,9 @@ +--- +license_expression: epics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.aps.anl.gov/epics/license/open.php +--- + http://www.aps.anl.gov/epics/license/open.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics.yml b/src/licensedcode/data/rules/epics.yml deleted file mode 100644 index 9e409abba8a..00000000000 --- a/src/licensedcode/data/rules/epics.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.aps.anl.gov/epics/license/open.php diff --git a/src/licensedcode/data/rules/epics_1.RULE b/src/licensedcode/data/rules/epics_1.RULE index 815e2d5afea..975381e5328 100644 --- a/src/licensedcode/data/rules/epics_1.RULE +++ b/src/licensedcode/data/rules/epics_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epics +is_license_text: yes +--- + Copyright © . All rights reserved. is distributed subject to the following license conditions: diff --git a/src/licensedcode/data/rules/epics_1.yml b/src/licensedcode/data/rules/epics_1.yml deleted file mode 100644 index 2b29342c03c..00000000000 --- a/src/licensedcode/data/rules/epics_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epics -is_license_text: yes diff --git a/src/licensedcode/data/rules/epics_10.RULE b/src/licensedcode/data/rules/epics_10.RULE index d21263e5945..cd08cb96529 100644 --- a/src/licensedcode/data/rules/epics_10.RULE +++ b/src/licensedcode/data/rules/epics_10.RULE @@ -1 +1,10 @@ +--- +license_expression: epics +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EPICS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_10.yml b/src/licensedcode/data/rules/epics_10.yml deleted file mode 100644 index ebd5b0d1cac..00000000000 --- a/src/licensedcode/data/rules/epics_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epics -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epics_11.RULE b/src/licensedcode/data/rules/epics_11.RULE index d0b273f6c7f..e5839991f27 100644 --- a/src/licensedcode/data/rules/epics_11.RULE +++ b/src/licensedcode/data/rules/epics_11.RULE @@ -1 +1,9 @@ +--- +license_expression: epics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EPICS +--- + https://licenses.nuget.org/EPICS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_11.yml b/src/licensedcode/data/rules/epics_11.yml deleted file mode 100644 index a4289929d14..00000000000 --- a/src/licensedcode/data/rules/epics_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EPICS diff --git a/src/licensedcode/data/rules/epics_12.RULE b/src/licensedcode/data/rules/epics_12.RULE index 9cbd7bfb2d0..b68c5397fd7 100644 --- a/src/licensedcode/data/rules/epics_12.RULE +++ b/src/licensedcode/data/rules/epics_12.RULE @@ -1 +1,7 @@ +--- +license_expression: epics +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EPICS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_12.yml b/src/licensedcode/data/rules/epics_12.yml deleted file mode 100644 index ad7ded198d2..00000000000 --- a/src/licensedcode/data/rules/epics_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epics -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epics_13.RULE b/src/licensedcode/data/rules/epics_13.RULE index d686d79ce16..1f6a71e7b7e 100644 --- a/src/licensedcode/data/rules/epics_13.RULE +++ b/src/licensedcode/data/rules/epics_13.RULE @@ -1 +1,9 @@ +--- +license_expression: epics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EPICS +--- + {{EPICS}} https://spdx.org/licenses/EPICS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_13.yml b/src/licensedcode/data/rules/epics_13.yml deleted file mode 100644 index 551b38be0e7..00000000000 --- a/src/licensedcode/data/rules/epics_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EPICS diff --git a/src/licensedcode/data/rules/epics_14.RULE b/src/licensedcode/data/rules/epics_14.RULE index 999c2fbc4df..247ef79bce0 100644 --- a/src/licensedcode/data/rules/epics_14.RULE +++ b/src/licensedcode/data/rules/epics_14.RULE @@ -1 +1,9 @@ +--- +license_expression: epics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EPICS +--- + LICENSE {{EPICS}} https://spdx.org/licenses/EPICS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_14.yml b/src/licensedcode/data/rules/epics_14.yml deleted file mode 100644 index 551b38be0e7..00000000000 --- a/src/licensedcode/data/rules/epics_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EPICS diff --git a/src/licensedcode/data/rules/epics_2.RULE b/src/licensedcode/data/rules/epics_2.RULE index 5061f79f3c4..7a700444fa1 100644 --- a/src/licensedcode/data/rules/epics_2.RULE +++ b/src/licensedcode/data/rules/epics_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epics +is_license_text: yes +relevance: 100 +--- + EPICS BASE is distributed subject to the following license conditions: SOFTWARE LICENSE AGREEMENT diff --git a/src/licensedcode/data/rules/epics_2.yml b/src/licensedcode/data/rules/epics_2.yml deleted file mode 100644 index 06e9558b2fb..00000000000 --- a/src/licensedcode/data/rules/epics_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epics -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epics_3.RULE b/src/licensedcode/data/rules/epics_3.RULE index 283911d557f..c172a9f2c24 100644 --- a/src/licensedcode/data/rules/epics_3.RULE +++ b/src/licensedcode/data/rules/epics_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epics +is_license_text: yes +--- + SOFTWARE LICENSE AGREEMENT Software: diff --git a/src/licensedcode/data/rules/epics_3.yml b/src/licensedcode/data/rules/epics_3.yml deleted file mode 100644 index 2b29342c03c..00000000000 --- a/src/licensedcode/data/rules/epics_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epics -is_license_text: yes diff --git a/src/licensedcode/data/rules/epics_4.RULE b/src/licensedcode/data/rules/epics_4.RULE index 355ed0ac775..a4d880974a5 100644 --- a/src/licensedcode/data/rules/epics_4.RULE +++ b/src/licensedcode/data/rules/epics_4.RULE @@ -1 +1,10 @@ +--- +license_expression: epics +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + EPICS Open License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_4.yml b/src/licensedcode/data/rules/epics_4.yml deleted file mode 100644 index 3780a54fc8f..00000000000 --- a/src/licensedcode/data/rules/epics_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epics -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epics_5.RULE b/src/licensedcode/data/rules/epics_5.RULE index 3cb99b10704..6ab21d75d46 100644 --- a/src/licensedcode/data/rules/epics_5.RULE +++ b/src/licensedcode/data/rules/epics_5.RULE @@ -1 +1,10 @@ +--- +license_expression: epics +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: EPICS Open License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_5.yml b/src/licensedcode/data/rules/epics_5.yml deleted file mode 100644 index 3780a54fc8f..00000000000 --- a/src/licensedcode/data/rules/epics_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epics -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epics_6.RULE b/src/licensedcode/data/rules/epics_6.RULE index 81979dd7113..aa03fd07ce0 100644 --- a/src/licensedcode/data/rules/epics_6.RULE +++ b/src/licensedcode/data/rules/epics_6.RULE @@ -1 +1,10 @@ +--- +license_expression: epics +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + EPICS EPICS Open License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_6.yml b/src/licensedcode/data/rules/epics_6.yml deleted file mode 100644 index 3780a54fc8f..00000000000 --- a/src/licensedcode/data/rules/epics_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epics -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epics_7.RULE b/src/licensedcode/data/rules/epics_7.RULE index 868e98f1aea..3e9d2448b89 100644 --- a/src/licensedcode/data/rules/epics_7.RULE +++ b/src/licensedcode/data/rules/epics_7.RULE @@ -1 +1,10 @@ +--- +license_expression: epics +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + EPICS Open License EPICS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_7.yml b/src/licensedcode/data/rules/epics_7.yml deleted file mode 100644 index 3780a54fc8f..00000000000 --- a/src/licensedcode/data/rules/epics_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epics -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epics_8.RULE b/src/licensedcode/data/rules/epics_8.RULE index 7075e594841..0fc54ac3d3e 100644 --- a/src/licensedcode/data/rules/epics_8.RULE +++ b/src/licensedcode/data/rules/epics_8.RULE @@ -1 +1,10 @@ +--- +license_expression: epics +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EPICS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_8.yml b/src/licensedcode/data/rules/epics_8.yml deleted file mode 100644 index ebd5b0d1cac..00000000000 --- a/src/licensedcode/data/rules/epics_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epics -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epics_9.RULE b/src/licensedcode/data/rules/epics_9.RULE index 9caeccaca7d..7abf9ded9b7 100644 --- a/src/licensedcode/data/rules/epics_9.RULE +++ b/src/licensedcode/data/rules/epics_9.RULE @@ -1 +1,10 @@ +--- +license_expression: epics +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EPICS Open License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epics_9.yml b/src/licensedcode/data/rules/epics_9.yml deleted file mode 100644 index ebd5b0d1cac..00000000000 --- a/src/licensedcode/data/rules/epics_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epics -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epics_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/epics_and_proprietary-license_1.RULE index 6f211ec41da..e2dc6ec52a0 100644 --- a/src/licensedcode/data/rules/epics_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/epics_and_proprietary-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epics AND proprietary-license +is_license_text: yes +ignorable_urls: + - http://www.aps.anl.gov/epics/license/verify.php +--- + SOFTWARE LICENSE AGREEMENT Software: EPICS BASE Versions: 3.13.7 and higher diff --git a/src/licensedcode/data/rules/epics_and_proprietary-license_1.yml b/src/licensedcode/data/rules/epics_and_proprietary-license_1.yml deleted file mode 100644 index e643ddf727f..00000000000 --- a/src/licensedcode/data/rules/epics_and_proprietary-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epics AND proprietary-license -is_license_text: yes -ignorable_urls: - - http://www.aps.anl.gov/epics/license/verify.php diff --git a/src/licensedcode/data/rules/epl-1.0.RULE b/src/licensedcode/data/rules/epl-1.0.RULE index ce2e71038e4..18cb9a9cc66 100644 --- a/src/licensedcode/data/rules/epl-1.0.RULE +++ b/src/licensedcode/data/rules/epl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0.yml b/src/licensedcode/data/rules/epl-1.0.yml deleted file mode 100644 index d2c36ee4816..00000000000 --- a/src/licensedcode/data/rules/epl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_1.RULE b/src/licensedcode/data/rules/epl-1.0_1.RULE index c24bbcdb834..9171003f50a 100644 --- a/src/licensedcode/data/rules/epl-1.0_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_1.yml b/src/licensedcode/data/rules/epl-1.0_1.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_10.RULE b/src/licensedcode/data/rules/epl-1.0_10.RULE index 67b6d82e616..e71ce7048dc 100644 --- a/src/licensedcode/data/rules/epl-1.0_10.RULE +++ b/src/licensedcode/data/rules/epl-1.0_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/ +--- + Java compilation software for JSP pages is provided by Eclipse, which is open source software. The original software and related information is available at diff --git a/src/licensedcode/data/rules/epl-1.0_10.yml b/src/licensedcode/data/rules/epl-1.0_10.yml deleted file mode 100644 index 2404eadd1fb..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/ diff --git a/src/licensedcode/data/rules/epl-1.0_11.RULE b/src/licensedcode/data/rules/epl-1.0_11.RULE index ca5318b383c..61fed8467e2 100644 --- a/src/licensedcode/data/rules/epl-1.0_11.RULE +++ b/src/licensedcode/data/rules/epl-1.0_11.RULE @@ -1,2 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + // The Eclipse Public License is available at -// http://www.eclipse.org/legal/epl-v10.html +// http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_11.yml b/src/licensedcode/data/rules/epl-1.0_11.yml deleted file mode 100644 index eff859b8449..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_12.RULE b/src/licensedcode/data/rules/epl-1.0_12.RULE index 65a0733864d..cf85c1fa167 100644 --- a/src/licensedcode/data/rules/epl-1.0_12.RULE +++ b/src/licensedcode/data/rules/epl-1.0_12.RULE @@ -1,2 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +--- + // This program and the accompanying materials -// are made available under the terms of the Eclipse Public License v1.0 +// are made available under the terms of the Eclipse Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_12.yml b/src/licensedcode/data/rules/epl-1.0_12.yml deleted file mode 100644 index 43ec64fade5..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/epl-1.0_13.RULE b/src/licensedcode/data/rules/epl-1.0_13.RULE index f0c80106b43..8d1a5f430af 100644 --- a/src/licensedcode/data/rules/epl-1.0_13.RULE +++ b/src/licensedcode/data/rules/epl-1.0_13.RULE @@ -1,4 +1,13 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 90 +notes: conflicted epl 1 and 2 reference +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v20.html + * http://www.eclipse.org/legal/epl-v20.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_13.yml b/src/licensedcode/data/rules/epl-1.0_13.yml deleted file mode 100644 index 4f76a8f6d9c..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 90 -notes: conflicted epl 1 and 2 reference -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-1.0_14.RULE b/src/licensedcode/data/rules/epl-1.0_14.RULE index f883d1e288a..7f87e1ffa36 100644 --- a/src/licensedcode/data/rules/epl-1.0_14.RULE +++ b/src/licensedcode/data/rules/epl-1.0_14.RULE @@ -1 +1,9 @@ -https://www.eclipse.org/legal/epl-v10.html EPL-1.0 +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v10.html +--- + +https://www.eclipse.org/legal/epl-v10.html EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_14.yml b/src/licensedcode/data/rules/epl-1.0_14.yml deleted file mode 100644 index f7f12559fd7..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_15.RULE b/src/licensedcode/data/rules/epl-1.0_15.RULE index 5224fdea23f..4c01b5ac67d 100644 --- a/src/licensedcode/data/rules/epl-1.0_15.RULE +++ b/src/licensedcode/data/rules/epl-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/epl-1.0 +--- + License: [`epl-1.0`](http://choosealicense.com/licenses/epl-1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_15.yml b/src/licensedcode/data/rules/epl-1.0_15.yml deleted file mode 100644 index 05105b1eea8..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/epl-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_16.RULE b/src/licensedcode/data/rules/epl-1.0_16.RULE index 160519c9a28..460832890ef 100644 --- a/src/licensedcode/data/rules/epl-1.0_16.RULE +++ b/src/licensedcode/data/rules/epl-1.0_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + * This library is provided under the terms of the Eclipse Public License * as described at http://www.eclipse.org/legal/epl-v10.html. Any use, * reproduction or distribution of the library constitutes recipient's diff --git a/src/licensedcode/data/rules/epl-1.0_16.yml b/src/licensedcode/data/rules/epl-1.0_16.yml deleted file mode 100644 index 5eb893b89c3..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_17.RULE b/src/licensedcode/data/rules/epl-1.0_17.RULE index 745a99a59cd..c7194bf7a08 100644 --- a/src/licensedcode/data/rules/epl-1.0_17.RULE +++ b/src/licensedcode/data/rules/epl-1.0_17.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epl-1.0 +is_license_text: yes +--- + The complete text of the Eclipse Public License v1.0 is as follows: Eclipse Public License - v 1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_17.yml b/src/licensedcode/data/rules/epl-1.0_17.yml deleted file mode 100644 index a7c700f93af..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/epl-1.0_18.RULE b/src/licensedcode/data/rules/epl-1.0_18.RULE index 3ccf308abe7..026b723e1e1 100644 --- a/src/licensedcode/data/rules/epl-1.0_18.RULE +++ b/src/licensedcode/data/rules/epl-1.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_18.yml b/src/licensedcode/data/rules/epl-1.0_18.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_19.RULE b/src/licensedcode/data/rules/epl-1.0_19.RULE index b757b6b7368..cb66ade2c0a 100644 --- a/src/licensedcode/data/rules/epl-1.0_19.RULE +++ b/src/licensedcode/data/rules/epl-1.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + License: Eclipse Public License, Version 1.0 (http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_19.yml b/src/licensedcode/data/rules/epl-1.0_19.yml deleted file mode 100644 index 8506f6de371..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_2.RULE b/src/licensedcode/data/rules/epl-1.0_2.RULE index 3d4e35a45ae..622fa4d8470 100644 --- a/src/licensedcode/data/rules/epl-1.0_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/epl-1.0_2.yml b/src/licensedcode/data/rules/epl-1.0_2.yml deleted file mode 100644 index 5eb893b89c3..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_20.RULE b/src/licensedcode/data/rules/epl-1.0_20.RULE index dd5fd32bcd5..c07b8d7d6bc 100644 --- a/src/licensedcode/data/rules/epl-1.0_20.RULE +++ b/src/licensedcode/data/rules/epl-1.0_20.RULE @@ -1 +1,9 @@ -License: Eclipse Public License - Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.php +--- +license_expression: epl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v10.php +--- + +License: Eclipse Public License - Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_20.yml b/src/licensedcode/data/rules/epl-1.0_20.yml deleted file mode 100644 index a8b2163cd40..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/epl-v10.php diff --git a/src/licensedcode/data/rules/epl-1.0_21.RULE b/src/licensedcode/data/rules/epl-1.0_21.RULE index 4441f590b30..c44de3cf146 100644 --- a/src/licensedcode/data/rules/epl-1.0_21.RULE +++ b/src/licensedcode/data/rules/epl-1.0_21.RULE @@ -1,7 +1,15 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/eclipse-1.0.php +--- + The use and distribution terms for this software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. -You must not remove this notice, or any other, from this software. +You must not remove this notice, or any other, from this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_21.yml b/src/licensedcode/data/rules/epl-1.0_21.yml deleted file mode 100644 index 89d4ff77b30..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/eclipse-1.0.php diff --git a/src/licensedcode/data/rules/epl-1.0_22.RULE b/src/licensedcode/data/rules/epl-1.0_22.RULE index c21f7be8170..023415fe231 100644 --- a/src/licensedcode/data/rules/epl-1.0_22.RULE +++ b/src/licensedcode/data/rules/epl-1.0_22.RULE @@ -1 +1,9 @@ -http://www.eclipse.org/org/documents/epl-v10.php +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v10.php +--- + +http://www.eclipse.org/org/documents/epl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_22.yml b/src/licensedcode/data/rules/epl-1.0_22.yml deleted file mode 100644 index 3b62b576a79..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/org/documents/epl-v10.php diff --git a/src/licensedcode/data/rules/epl-1.0_23.RULE b/src/licensedcode/data/rules/epl-1.0_23.RULE index a9450cf35d2..ceae3ce49d3 100644 --- a/src/licensedcode/data/rules/epl-1.0_23.RULE +++ b/src/licensedcode/data/rules/epl-1.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License - Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_23.yml b/src/licensedcode/data/rules/epl-1.0_23.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_24.RULE b/src/licensedcode/data/rules/epl-1.0_24.RULE index 3e495c6ff55..4a23360909d 100644 --- a/src/licensedcode/data/rules/epl-1.0_24.RULE +++ b/src/licensedcode/data/rules/epl-1.0_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +notes: this is exactly tha apache-2.0 standard notice with the license name replaced. +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v10.php +--- + * Licensed under the Eclipse Public License, Version 1.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/epl-1.0_24.yml b/src/licensedcode/data/rules/epl-1.0_24.yml deleted file mode 100644 index 589319e14de..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -notes: this is exactly tha apache-2.0 standard notice with the license name replaced. -ignorable_urls: - - http://www.eclipse.org/org/documents/epl-v10.php diff --git a/src/licensedcode/data/rules/epl-1.0_25.RULE b/src/licensedcode/data/rules/epl-1.0_25.RULE index 3851d977400..1b0ed16dadc 100644 --- a/src/licensedcode/data/rules/epl-1.0_25.RULE +++ b/src/licensedcode/data/rules/epl-1.0_25.RULE @@ -1,2 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + // This software is distributed under the terms of the Eclipse Public License v1.0. -// A copy of the license may be obtained at: http://www.eclipse.org/legal/epl-v10.html +// A copy of the license may be obtained at: http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_25.yml b/src/licensedcode/data/rules/epl-1.0_25.yml deleted file mode 100644 index 5eb893b89c3..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_26.RULE b/src/licensedcode/data/rules/epl-1.0_26.RULE index b023e664d1f..c0dcccf7440 100644 --- a/src/licensedcode/data/rules/epl-1.0_26.RULE +++ b/src/licensedcode/data/rules/epl-1.0_26.RULE @@ -1,2 +1,8 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + A copy of the Eclipse Public License version 1.0 is provided along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_26.yml b/src/licensedcode/data/rules/epl-1.0_26.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_27.RULE b/src/licensedcode/data/rules/epl-1.0_27.RULE index 56deae37964..9ac8b15caf7 100644 --- a/src/licensedcode/data/rules/epl-1.0_27.RULE +++ b/src/licensedcode/data/rules/epl-1.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/epl-1.0 +--- + https://choosealicense.com/licenses/epl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_27.yml b/src/licensedcode/data/rules/epl-1.0_27.yml deleted file mode 100644 index c65a00d207f..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/epl-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_28.RULE b/src/licensedcode/data/rules/epl-1.0_28.RULE index 3d2576bbbf6..17f54671026 100644 --- a/src/licensedcode/data/rules/epl-1.0_28.RULE +++ b/src/licensedcode/data/rules/epl-1.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/epl-1.0 +--- + http://choosealicense.com/licenses/epl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_28.yml b/src/licensedcode/data/rules/epl-1.0_28.yml deleted file mode 100644 index 05105b1eea8..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/epl-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_29.RULE b/src/licensedcode/data/rules/epl-1.0_29.RULE index 3bf446eb788..4f979a52b0a 100644 --- a/src/licensedcode/data/rules/epl-1.0_29.RULE +++ b/src/licensedcode/data/rules/epl-1.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 90 +--- + support (EPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_29.yml b/src/licensedcode/data/rules/epl-1.0_29.yml deleted file mode 100644 index 734c09c2fde..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/epl-1.0_3.RULE b/src/licensedcode/data/rules/epl-1.0_3.RULE index 8e25a41925b..65220271b66 100644 --- a/src/licensedcode/data/rules/epl-1.0_3.RULE +++ b/src/licensedcode/data/rules/epl-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/ + - http://www.eclipse.org/legal/epl-v10.html +--- + License The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. diff --git a/src/licensedcode/data/rules/epl-1.0_3.yml b/src/licensedcode/data/rules/epl-1.0_3.yml deleted file mode 100644 index 8d4823b55e1..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/ - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_30.RULE b/src/licensedcode/data/rules/epl-1.0_30.RULE index abf6c5365d9..241d704b0b8 100644 --- a/src/licensedcode/data/rules/epl-1.0_30.RULE +++ b/src/licensedcode/data/rules/epl-1.0_30.RULE @@ -1,2 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + license {:name "Eclipse Public License" url "http://www.eclipse.org/legal/epl-v10.html"} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_30.yml b/src/licensedcode/data/rules/epl-1.0_30.yml deleted file mode 100644 index 8506f6de371..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_31.RULE b/src/licensedcode/data/rules/epl-1.0_31.RULE index 7a0cebcf542..7931625d5ee 100644 --- a/src/licensedcode/data/rules/epl-1.0_31.RULE +++ b/src/licensedcode/data/rules/epl-1.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/testdata/eclipse_license.txt +--- + [eclipse]: third_party/testdata/eclipse_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_31.yml b/src/licensedcode/data/rules/epl-1.0_31.yml deleted file mode 100644 index cc17c7312b2..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/testdata/eclipse_license.txt diff --git a/src/licensedcode/data/rules/epl-1.0_32.RULE b/src/licensedcode/data/rules/epl-1.0_32.RULE index ad43a34f741..cbbd0983472 100644 --- a/src/licensedcode/data/rules/epl-1.0_32.RULE +++ b/src/licensedcode/data/rules/epl-1.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/testdata/eclipse_license.txt +--- + License: Eclipse Public License v1.0 ([license/third_party/testdata/eclipse_license.txt][eclipse]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_32.yml b/src/licensedcode/data/rules/epl-1.0_32.yml deleted file mode 100644 index c901dda85f6..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/testdata/eclipse_license.txt diff --git a/src/licensedcode/data/rules/epl-1.0_33.RULE b/src/licensedcode/data/rules/epl-1.0_33.RULE index 8a8625026a2..d32dcdc09a4 100644 --- a/src/licensedcode/data/rules/epl-1.0_33.RULE +++ b/src/licensedcode/data/rules/epl-1.0_33.RULE @@ -1,2 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/EPL-1.0 +--- + Eclipse Public License 1.0 https://opensource.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_33.yml b/src/licensedcode/data/rules/epl-1.0_33.yml deleted file mode 100644 index fd73230f963..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/EPL-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_34.RULE b/src/licensedcode/data/rules/epl-1.0_34.RULE index 31e657e338a..16ca81aef3d 100644 --- a/src/licensedcode/data/rules/epl-1.0_34.RULE +++ b/src/licensedcode/data/rules/epl-1.0_34.RULE @@ -1,2 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/EPL-1.0 +--- + Eclipse Public License 1.0 http://opensource.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_34.yml b/src/licensedcode/data/rules/epl-1.0_34.yml deleted file mode 100644 index c790c5e8e01..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/EPL-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_35.RULE b/src/licensedcode/data/rules/epl-1.0_35.RULE index 1f1dbe6c197..b07855ce0e5 100644 --- a/src/licensedcode/data/rules/epl-1.0_35.RULE +++ b/src/licensedcode/data/rules/epl-1.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/EPL-1.0 +--- + https://opensource.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_35.yml b/src/licensedcode/data/rules/epl-1.0_35.yml deleted file mode 100644 index fd73230f963..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/EPL-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_36.RULE b/src/licensedcode/data/rules/epl-1.0_36.RULE index 30a3c960c33..b6c0c09e8e7 100644 --- a/src/licensedcode/data/rules/epl-1.0_36.RULE +++ b/src/licensedcode/data/rules/epl-1.0_36.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/EPL-1.0 +--- + http://opensource.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_36.yml b/src/licensedcode/data/rules/epl-1.0_36.yml deleted file mode 100644 index c790c5e8e01..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/EPL-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_37.RULE b/src/licensedcode/data/rules/epl-1.0_37.RULE index cb0c69a496c..a5c77050cc6 100644 --- a/src/licensedcode/data/rules/epl-1.0_37.RULE +++ b/src/licensedcode/data/rules/epl-1.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_37.yml b/src/licensedcode/data/rules/epl-1.0_37.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_38.RULE b/src/licensedcode/data/rules/epl-1.0_38.RULE index 1cf086dc234..00ae26d3e79 100644 --- a/src/licensedcode/data/rules/epl-1.0_38.RULE +++ b/src/licensedcode/data/rules/epl-1.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v10.html +--- + `EPL-1.0` - [Eclipse Public License, Version 1.0](https://www.eclipse.org/legal/epl-v10.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_38.yml b/src/licensedcode/data/rules/epl-1.0_38.yml deleted file mode 100644 index f7f12559fd7..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_39.RULE b/src/licensedcode/data/rules/epl-1.0_39.RULE index a87c909ca20..acea480d256 100644 --- a/src/licensedcode/data/rules/epl-1.0_39.RULE +++ b/src/licensedcode/data/rules/epl-1.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under Eclipse Public License - v 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_39.yml b/src/licensedcode/data/rules/epl-1.0_39.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_4.RULE b/src/licensedcode/data/rules/epl-1.0_4.RULE index f328b5739ae..1da271386f3 100644 --- a/src/licensedcode/data/rules/epl-1.0_4.RULE +++ b/src/licensedcode/data/rules/epl-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License - v 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_4.yml b/src/licensedcode/data/rules/epl-1.0_4.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_40.RULE b/src/licensedcode/data/rules/epl-1.0_40.RULE index fa16844af7b..d185fd52389 100644 --- a/src/licensedcode/data/rules/epl-1.0_40.RULE +++ b/src/licensedcode/data/rules/epl-1.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Eclipse Public License - v 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_40.yml b/src/licensedcode/data/rules/epl-1.0_40.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_41.RULE b/src/licensedcode/data/rules/epl-1.0_41.RULE index e21c1ecee35..b390e0da0bc 100644 --- a/src/licensedcode/data/rules/epl-1.0_41.RULE +++ b/src/licensedcode/data/rules/epl-1.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under Eclipse Public License - v 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_41.yml b/src/licensedcode/data/rules/epl-1.0_41.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_42.RULE b/src/licensedcode/data/rules/epl-1.0_42.RULE index 83e316706ce..dd2543d211f 100644 --- a/src/licensedcode/data/rules/epl-1.0_42.RULE +++ b/src/licensedcode/data/rules/epl-1.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Eclipse Public License - v 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_42.yml b/src/licensedcode/data/rules/epl-1.0_42.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_43.RULE b/src/licensedcode/data/rules/epl-1.0_43.RULE index e98d3714ef2..b9efe6900a4 100644 --- a/src/licensedcode/data/rules/epl-1.0_43.RULE +++ b/src/licensedcode/data/rules/epl-1.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License Version 1.0 (EPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_43.yml b/src/licensedcode/data/rules/epl-1.0_43.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_44.RULE b/src/licensedcode/data/rules/epl-1.0_44.RULE index 5003ca9676b..b7b4d0d6c2a 100644 --- a/src/licensedcode/data/rules/epl-1.0_44.RULE +++ b/src/licensedcode/data/rules/epl-1.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + The Eclipse Public License Version 1.0 (EPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_44.yml b/src/licensedcode/data/rules/epl-1.0_44.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_45.RULE b/src/licensedcode/data/rules/epl-1.0_45.RULE index 2b7e076e2a3..b098cc14697 100644 --- a/src/licensedcode/data/rules/epl-1.0_45.RULE +++ b/src/licensedcode/data/rules/epl-1.0_45.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.sat4j.org/ +--- + The SAT4J project makes available all content in this plug-in ("Content"). Your use of the Content is governed by the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. diff --git a/src/licensedcode/data/rules/epl-1.0_45.yml b/src/licensedcode/data/rules/epl-1.0_45.yml deleted file mode 100644 index 37723fb640b..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_45.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - http://www.sat4j.org/ diff --git a/src/licensedcode/data/rules/epl-1.0_46.RULE b/src/licensedcode/data/rules/epl-1.0_46.RULE index 2f9d9ad3fc2..c905fee8a9d 100644 --- a/src/licensedcode/data/rules/epl-1.0_46.RULE +++ b/src/licensedcode/data/rules/epl-1.0_46.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License (EPL) 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_46.yml b/src/licensedcode/data/rules/epl-1.0_46.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_47.RULE b/src/licensedcode/data/rules/epl-1.0_47.RULE index 411fb05d627..fd7991ba739 100644 --- a/src/licensedcode/data/rules/epl-1.0_47.RULE +++ b/src/licensedcode/data/rules/epl-1.0_47.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 98 +--- + Eclipse Public License (EPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_47.yml b/src/licensedcode/data/rules/epl-1.0_47.yml deleted file mode 100644 index 9eeccff7dbb..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 98 diff --git a/src/licensedcode/data/rules/epl-1.0_48.RULE b/src/licensedcode/data/rules/epl-1.0_48.RULE index 5b8460ad433..cb5187a0809 100644 --- a/src/licensedcode/data/rules/epl-1.0_48.RULE +++ b/src/licensedcode/data/rules/epl-1.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License (EPL), Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_48.yml b/src/licensedcode/data/rules/epl-1.0_48.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_49.RULE b/src/licensedcode/data/rules/epl-1.0_49.RULE index 7d0e0082c4e..70aeea9622c 100644 --- a/src/licensedcode/data/rules/epl-1.0_49.RULE +++ b/src/licensedcode/data/rules/epl-1.0_49.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License (EPL), Version 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_49.yml b/src/licensedcode/data/rules/epl-1.0_49.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_5.RULE b/src/licensedcode/data/rules/epl-1.0_5.RULE index 1fe55fd99e4..6eab8e13343 100644 --- a/src/licensedcode/data/rules/epl-1.0_5.RULE +++ b/src/licensedcode/data/rules/epl-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/eclipse-1.0.php +--- + http://opensource.org/licenses/eclipse-1.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_5.yml b/src/licensedcode/data/rules/epl-1.0_5.yml deleted file mode 100644 index 65efa749a94..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/eclipse-1.0.php diff --git a/src/licensedcode/data/rules/epl-1.0_50.RULE b/src/licensedcode/data/rules/epl-1.0_50.RULE index 7f9ba922b99..20d0e1bfd39 100644 --- a/src/licensedcode/data/rules/epl-1.0_50.RULE +++ b/src/licensedcode/data/rules/epl-1.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License (EPL), V 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_50.yml b/src/licensedcode/data/rules/epl-1.0_50.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_51.RULE b/src/licensedcode/data/rules/epl-1.0_51.RULE index 1cf455c9387..681c49223b0 100644 --- a/src/licensedcode/data/rules/epl-1.0_51.RULE +++ b/src/licensedcode/data/rules/epl-1.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + This class is released under the Eclipse Public License http://www.eclipse.org/legal/epl-v10.html">EPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_51.yml b/src/licensedcode/data/rules/epl-1.0_51.yml deleted file mode 100644 index eff859b8449..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_52.RULE b/src/licensedcode/data/rules/epl-1.0_52.RULE index bb5820aece0..85653285e8a 100644 --- a/src/licensedcode/data/rules/epl-1.0_52.RULE +++ b/src/licensedcode/data/rules/epl-1.0_52.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + released under the Eclipse Public License http://www.eclipse.org/legal/epl-v10.html">EPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_52.yml b/src/licensedcode/data/rules/epl-1.0_52.yml deleted file mode 100644 index eff859b8449..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_53.RULE b/src/licensedcode/data/rules/epl-1.0_53.RULE index 3e1a3034309..46a62b3d056 100644 --- a/src/licensedcode/data/rules/epl-1.0_53.RULE +++ b/src/licensedcode/data/rules/epl-1.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + released under the Eclipse Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_53.yml b/src/licensedcode/data/rules/epl-1.0_53.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_54.RULE b/src/licensedcode/data/rules/epl-1.0_54.RULE index 1322c74ac3f..ba19b105b0a 100644 --- a/src/licensedcode/data/rules/epl-1.0_54.RULE +++ b/src/licensedcode/data/rules/epl-1.0_54.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v10.html +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/epl-1.0_54.yml b/src/licensedcode/data/rules/epl-1.0_54.yml deleted file mode 100644 index 71111282089..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_55.RULE b/src/licensedcode/data/rules/epl-1.0_55.RULE index caee694c169..28f170e6a11 100644 --- a/src/licensedcode/data/rules/epl-1.0_55.RULE +++ b/src/licensedcode/data/rules/epl-1.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + The following libraries are licensed under the Eclipse Public License, version 1.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_55.yml b/src/licensedcode/data/rules/epl-1.0_55.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_56.RULE b/src/licensedcode/data/rules/epl-1.0_56.RULE index a6fc5fe17bf..f854e1fd936 100644 --- a/src/licensedcode/data/rules/epl-1.0_56.RULE +++ b/src/licensedcode/data/rules/epl-1.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + libraries are licensed under the Eclipse Public License, version 1.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_56.yml b/src/licensedcode/data/rules/epl-1.0_56.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_57.RULE b/src/licensedcode/data/rules/epl-1.0_57.RULE index bb67f2a81fa..3f030aff4eb 100644 --- a/src/licensedcode/data/rules/epl-1.0_57.RULE +++ b/src/licensedcode/data/rules/epl-1.0_57.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Eclipse Public License, version 1.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_57.yml b/src/licensedcode/data/rules/epl-1.0_57.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_58.RULE b/src/licensedcode/data/rules/epl-1.0_58.RULE index b502d06cce7..a1f8c792331 100644 --- a/src/licensedcode/data/rules/epl-1.0_58.RULE +++ b/src/licensedcode/data/rules/epl-1.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + The following libraries are licenced under the Eclipse Public License, version 1.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_58.yml b/src/licensedcode/data/rules/epl-1.0_58.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_59.RULE b/src/licensedcode/data/rules/epl-1.0_59.RULE index 5efb017d8ce..9ae2c95c4fa 100644 --- a/src/licensedcode/data/rules/epl-1.0_59.RULE +++ b/src/licensedcode/data/rules/epl-1.0_59.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + libraries are licenced under the Eclipse Public License, version 1.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_59.yml b/src/licensedcode/data/rules/epl-1.0_59.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_6.RULE b/src/licensedcode/data/rules/epl-1.0_6.RULE index a94e8c6f221..5ce485f4984 100644 --- a/src/licensedcode/data/rules/epl-1.0_6.RULE +++ b/src/licensedcode/data/rules/epl-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_6.yml b/src/licensedcode/data/rules/epl-1.0_6.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_60.RULE b/src/licensedcode/data/rules/epl-1.0_60.RULE index 29eaa50ac5f..29bdac4fc53 100644 --- a/src/licensedcode/data/rules/epl-1.0_60.RULE +++ b/src/licensedcode/data/rules/epl-1.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + licenced under the Eclipse Public License, version 1.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_60.yml b/src/licensedcode/data/rules/epl-1.0_60.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_61.RULE b/src/licensedcode/data/rules/epl-1.0_61.RULE index 3a9920f65d7..01fc3403223 100644 --- a/src/licensedcode/data/rules/epl-1.0_61.RULE +++ b/src/licensedcode/data/rules/epl-1.0_61.RULE @@ -1,3 +1,16 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 99 +notes: an odd GNU EPL +ignorable_copyrights: + - copyright information, may be obtained here http://junit.org/license.html +ignorable_holders: + - information, may be obtained here +ignorable_urls: + - http://junit.org/license.html +--- + copyrighted software made available under Version 1.0 of the GNU Eclipse Public License http://junit.org/license.html. Complete source code for junit, including complete copyright information, may be obtained here diff --git a/src/licensedcode/data/rules/epl-1.0_61.yml b/src/licensedcode/data/rules/epl-1.0_61.yml deleted file mode 100644 index e2652cd073a..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_61.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 99 -notes: an odd GNU EPL -ignorable_copyrights: - - copyright information, may be obtained here http://junit.org/license.html -ignorable_holders: - - information, may be obtained here -ignorable_urls: - - http://junit.org/license.html diff --git a/src/licensedcode/data/rules/epl-1.0_62.RULE b/src/licensedcode/data/rules/epl-1.0_62.RULE index bb3c4538b3b..d6adc87a9e0 100644 --- a/src/licensedcode/data/rules/epl-1.0_62.RULE +++ b/src/licensedcode/data/rules/epl-1.0_62.RULE @@ -1,3 +1,16 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 99 +notes: an odd GNU EPL +ignorable_copyrights: + - copyright information, may be obtained here http://junit.org/license.html +ignorable_holders: + - information, may be obtained here +ignorable_urls: + - http://junit.org/license.html +--- + copyrighted software made available under Version 1.0 of the GNU Eclipse Public License http://junit.org/license.html. Complete source code for junit, including complete copyright information, may be obtained here diff --git a/src/licensedcode/data/rules/epl-1.0_62.yml b/src/licensedcode/data/rules/epl-1.0_62.yml deleted file mode 100644 index e2652cd073a..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_62.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 99 -notes: an odd GNU EPL -ignorable_copyrights: - - copyright information, may be obtained here http://junit.org/license.html -ignorable_holders: - - information, may be obtained here -ignorable_urls: - - http://junit.org/license.html diff --git a/src/licensedcode/data/rules/epl-1.0_63.RULE b/src/licensedcode/data/rules/epl-1.0_63.RULE index 376a3852269..fb495405547 100644 --- a/src/licensedcode/data/rules/epl-1.0_63.RULE +++ b/src/licensedcode/data/rules/epl-1.0_63.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://junit.org/license.html +--- + http://junit.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_63.yml b/src/licensedcode/data/rules/epl-1.0_63.yml deleted file mode 100644 index ba45e53e17b..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://junit.org/license.html diff --git a/src/licensedcode/data/rules/epl-1.0_64.RULE b/src/licensedcode/data/rules/epl-1.0_64.RULE index e17004fc89a..e35dcac9b40 100644 --- a/src/licensedcode/data/rules/epl-1.0_64.RULE +++ b/src/licensedcode/data/rules/epl-1.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + Version 1.0 of the Eclipse Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_64.yml b/src/licensedcode/data/rules/epl-1.0_64.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_65.RULE b/src/licensedcode/data/rules/epl-1.0_65.RULE index bc5d470efb4..8ebf5997e46 100644 --- a/src/licensedcode/data/rules/epl-1.0_65.RULE +++ b/src/licensedcode/data/rules/epl-1.0_65.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + available under the terms of the Eclipse Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_65.yml b/src/licensedcode/data/rules/epl-1.0_65.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_66.RULE b/src/licensedcode/data/rules/epl-1.0_66.RULE index 529d1250215..d43ddf80c5c 100644 --- a/src/licensedcode/data/rules/epl-1.0_66.RULE +++ b/src/licensedcode/data/rules/epl-1.0_66.RULE @@ -1 +1,8 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 98 +notes: the version is not specified +--- + available in source code form under the Eclipse Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_66.yml b/src/licensedcode/data/rules/epl-1.0_66.yml deleted file mode 100644 index d06fc632a22..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_66.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 98 -notes: the version is not specified diff --git a/src/licensedcode/data/rules/epl-1.0_67.RULE b/src/licensedcode/data/rules/epl-1.0_67.RULE index edffab3356c..27cc29a8089 100644 --- a/src/licensedcode/data/rules/epl-1.0_67.RULE +++ b/src/licensedcode/data/rules/epl-1.0_67.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy diff --git a/src/licensedcode/data/rules/epl-1.0_67.yml b/src/licensedcode/data/rules/epl-1.0_67.yml deleted file mode 100644 index eff859b8449..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_68.RULE b/src/licensedcode/data/rules/epl-1.0_68.RULE index 06a60c35490..d9310decddd 100644 --- a/src/licensedcode/data/rules/epl-1.0_68.RULE +++ b/src/licensedcode/data/rules/epl-1.0_68.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v10.html +--- + The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy diff --git a/src/licensedcode/data/rules/epl-1.0_68.yml b/src/licensedcode/data/rules/epl-1.0_68.yml deleted file mode 100644 index 71111282089..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_69.RULE b/src/licensedcode/data/rules/epl-1.0_69.RULE index d428113bfa2..64340874aa3 100644 --- a/src/licensedcode/data/rules/epl-1.0_69.RULE +++ b/src/licensedcode/data/rules/epl-1.0_69.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/ + - http://www.eclipse.org/legal/epl-v10.html +--- + The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy diff --git a/src/licensedcode/data/rules/epl-1.0_69.yml b/src/licensedcode/data/rules/epl-1.0_69.yml deleted file mode 100644 index 5f98b50825e..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_69.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/ - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_7.RULE b/src/licensedcode/data/rules/epl-1.0_7.RULE index 7bae75959f3..0cbd4c99882 100644 --- a/src/licensedcode/data/rules/epl-1.0_7.RULE +++ b/src/licensedcode/data/rules/epl-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v10.html +--- + https://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_7.yml b/src/licensedcode/data/rules/epl-1.0_7.yml deleted file mode 100644 index f7f12559fd7..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_70.RULE b/src/licensedcode/data/rules/epl-1.0_70.RULE index 4d27c7e1884..9d40c7df0f3 100644 --- a/src/licensedcode/data/rules/epl-1.0_70.RULE +++ b/src/licensedcode/data/rules/epl-1.0_70.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + The files are available in source code form under the Eclipse Public License at: All past Contributors to the code disclaim all warranties and conditions, diff --git a/src/licensedcode/data/rules/epl-1.0_70.yml b/src/licensedcode/data/rules/epl-1.0_70.yml deleted file mode 100644 index 2c489767be9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_70.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/epl-1.0_71.RULE b/src/licensedcode/data/rules/epl-1.0_71.RULE index 571a756391a..ae6d13a3025 100644 --- a/src/licensedcode/data/rules/epl-1.0_71.RULE +++ b/src/licensedcode/data/rules/epl-1.0_71.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +relevance: 100 +--- + License: Eclipse Public License - v 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_71.yml b/src/licensedcode/data/rules/epl-1.0_71.yml deleted file mode 100644 index a40ea753e04..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_72.RULE b/src/licensedcode/data/rules/epl-1.0_72.RULE index 71f20d42c75..ddc73f2709c 100644 --- a/src/licensedcode/data/rules/epl-1.0_72.RULE +++ b/src/licensedcode/data/rules/epl-1.0_72.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Eclipse Public License. See Eclipse Public License version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_72.yml b/src/licensedcode/data/rules/epl-1.0_72.yml deleted file mode 100644 index c79d4375ce9..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_73.RULE b/src/licensedcode/data/rules/epl-1.0_73.RULE index 3992bbbae15..1a27bbd145f 100644 --- a/src/licensedcode/data/rules/epl-1.0_73.RULE +++ b/src/licensedcode/data/rules/epl-1.0_73.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + Licensed under the Eclipse Public License-v. 1.0:http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_73.yml b/src/licensedcode/data/rules/epl-1.0_73.yml deleted file mode 100644 index eff859b8449..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_74.RULE b/src/licensedcode/data/rules/epl-1.0_74.RULE index 785e0bc4912..da9fc73b10e 100644 --- a/src/licensedcode/data/rules/epl-1.0_74.RULE +++ b/src/licensedcode/data/rules/epl-1.0_74.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + EPL-1.0 Eclipse Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_74.yml b/src/licensedcode/data/rules/epl-1.0_74.yml deleted file mode 100644 index eb9f71e26e3..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_75.RULE b/src/licensedcode/data/rules/epl-1.0_75.RULE index 9a03195249a..c8a296cf964 100644 --- a/src/licensedcode/data/rules/epl-1.0_75.RULE +++ b/src/licensedcode/data/rules/epl-1.0_75.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Eclipse Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_75.yml b/src/licensedcode/data/rules/epl-1.0_75.yml deleted file mode 100644 index c17c72aaf30..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_75.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-1.0_76.RULE b/src/licensedcode/data/rules/epl-1.0_76.RULE index 17da7627e2a..b6ee0d6c5d2 100644 --- a/src/licensedcode/data/rules/epl-1.0_76.RULE +++ b/src/licensedcode/data/rules/epl-1.0_76.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Eclipse Public License 1.0 EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_76.yml b/src/licensedcode/data/rules/epl-1.0_76.yml deleted file mode 100644 index c17c72aaf30..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_76.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-1.0_77.RULE b/src/licensedcode/data/rules/epl-1.0_77.RULE index 79ccef04294..96e30d7959d 100644 --- a/src/licensedcode/data/rules/epl-1.0_77.RULE +++ b/src/licensedcode/data/rules/epl-1.0_77.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_77.yml b/src/licensedcode/data/rules/epl-1.0_77.yml deleted file mode 100644 index 9c88f497e37..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_77.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-1.0_78.RULE b/src/licensedcode/data/rules/epl-1.0_78.RULE index ec920ebdca4..60639455a26 100644 --- a/src/licensedcode/data/rules/epl-1.0_78.RULE +++ b/src/licensedcode/data/rules/epl-1.0_78.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Eclipse Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_78.yml b/src/licensedcode/data/rules/epl-1.0_78.yml deleted file mode 100644 index 9c88f497e37..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_78.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-1.0_79.RULE b/src/licensedcode/data/rules/epl-1.0_79.RULE index 5464030f98a..4ae130199c6 100644 --- a/src/licensedcode/data/rules/epl-1.0_79.RULE +++ b/src/licensedcode/data/rules/epl-1.0_79.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_79.yml b/src/licensedcode/data/rules/epl-1.0_79.yml deleted file mode 100644 index 9c88f497e37..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_79.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-1.0_8.RULE b/src/licensedcode/data/rules/epl-1.0_8.RULE index 73737cef838..2a970af1d1d 100644 --- a/src/licensedcode/data/rules/epl-1.0_8.RULE +++ b/src/licensedcode/data/rules/epl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + License: Eclipse Public License - v 1.0 (http://www.eclipse.org/legal/epl-v10.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_8.yml b/src/licensedcode/data/rules/epl-1.0_8.yml deleted file mode 100644 index d2c36ee4816..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_80.RULE b/src/licensedcode/data/rules/epl-1.0_80.RULE index b43b7122ce1..a1db0d8c106 100644 --- a/src/licensedcode/data/rules/epl-1.0_80.RULE +++ b/src/licensedcode/data/rules/epl-1.0_80.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['ECLIPSE', 'EPL-1.0'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_80.yml b/src/licensedcode/data/rules/epl-1.0_80.yml deleted file mode 100644 index eb9f71e26e3..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_81.RULE b/src/licensedcode/data/rules/epl-1.0_81.RULE index 16def4e26a9..22cd91663d8 100644 --- a/src/licensedcode/data/rules/epl-1.0_81.RULE +++ b/src/licensedcode/data/rules/epl-1.0_81.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + EPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_81.yml b/src/licensedcode/data/rules/epl-1.0_81.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_82.RULE b/src/licensedcode/data/rules/epl-1.0_82.RULE index 00bf7a9b7c0..5aca6c5cb1b 100644 --- a/src/licensedcode/data/rules/epl-1.0_82.RULE +++ b/src/licensedcode/data/rules/epl-1.0_82.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EPL-1.0 +--- + https://licenses.nuget.org/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_82.yml b/src/licensedcode/data/rules/epl-1.0_82.yml deleted file mode 100644 index 697b46276d6..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EPL-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_83.RULE b/src/licensedcode/data/rules/epl-1.0_83.RULE index f36e46d4779..1da52213989 100644 --- a/src/licensedcode/data/rules/epl-1.0_83.RULE +++ b/src/licensedcode/data/rules/epl-1.0_83.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_83.yml b/src/licensedcode/data/rules/epl-1.0_83.yml deleted file mode 100644 index 0d63bef1101..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_84.RULE b/src/licensedcode/data/rules/epl-1.0_84.RULE index 2d839f351ec..04c3c8c8a74 100644 --- a/src/licensedcode/data/rules/epl-1.0_84.RULE +++ b/src/licensedcode/data/rules/epl-1.0_84.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + This file and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/epl-1.0_84.yml b/src/licensedcode/data/rules/epl-1.0_84.yml deleted file mode 100644 index 5eb893b89c3..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_84.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_85.RULE b/src/licensedcode/data/rules/epl-1.0_85.RULE index ee3b179f931..3544666c269 100644 --- a/src/licensedcode/data/rules/epl-1.0_85.RULE +++ b/src/licensedcode/data/rules/epl-1.0_85.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-1.0 +is_license_notice: yes +ignorable_urls: + - https://www.eclipse.org/legal/epl-v10.html +--- + This file and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/epl-1.0_85.yml b/src/licensedcode/data/rules/epl-1.0_85.yml deleted file mode 100644 index 0b611f5eb34..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_85.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-1.0 -is_license_notice: yes -ignorable_urls: - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_86.RULE b/src/licensedcode/data/rules/epl-1.0_86.RULE index 6904d5c7541..52e16bdf304 100644 --- a/src/licensedcode/data/rules/epl-1.0_86.RULE +++ b/src/licensedcode/data/rules/epl-1.0_86.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EPL-1.0 +--- + LICENSE {{EPL-1.0}} https://spdx.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_86.yml b/src/licensedcode/data/rules/epl-1.0_86.yml deleted file mode 100644 index 772a82ac37a..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EPL-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_87.RULE b/src/licensedcode/data/rules/epl-1.0_87.RULE index 1b0879c3f67..c75ee397c68 100644 --- a/src/licensedcode/data/rules/epl-1.0_87.RULE +++ b/src/licensedcode/data/rules/epl-1.0_87.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EPL-1.0 +--- + {{EPL-1.0}} https://spdx.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_87.yml b/src/licensedcode/data/rules/epl-1.0_87.yml deleted file mode 100644 index 772a82ac37a..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EPL-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_9.RULE b/src/licensedcode/data/rules/epl-1.0_9.RULE index 470950b7443..42438599059 100644 --- a/src/licensedcode/data/rules/epl-1.0_9.RULE +++ b/src/licensedcode/data/rules/epl-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://eclipse.org/legal/eplfaq.php +--- + http://eclipse.org/legal/eplfaq.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_9.yml b/src/licensedcode/data/rules/epl-1.0_9.yml deleted file mode 100644 index 7f09658e1d6..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://eclipse.org/legal/eplfaq.php diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_1.RULE index 1f3651fde89..3b7a09c0c63 100644 --- a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-1.0 OR bsd-new +is_license_notice: yes +notes: this is a choice per a discussion with Eclipse. See https://github.com/nexB/scancode-toolkit/issues/1121 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/org/documents/edl-v10.php +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_1.yml deleted file mode 100644 index 7937e27db3c..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 OR bsd-new -is_license_notice: yes -notes: this is a choice per a discussion with Eclipse. See https://github.com/nexB/scancode-toolkit/issues/1121 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_2.RULE b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_2.RULE index 9007ad78708..e0a0d37f783 100644 --- a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_2.RULE @@ -1,4 +1,9 @@ +--- +license_expression: epl-1.0 AND bsd-new +is_license_notice: yes +--- + This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. - * + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_2.yml b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_2.yml deleted file mode 100644 index 80b7fec840d..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-1.0 AND bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_3.RULE b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_3.RULE index 9f21489e2af..a88c337bf36 100644 --- a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 AND bsd-new +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.eclipse.org/org/documents/edl-v10.php +--- + * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_3.yml b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_3.yml deleted file mode 100644 index b79e7e31d03..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 AND bsd-new -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - http://www.eclipse.org/org/documents/edl-v10.php diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_4.RULE b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_4.RULE index 3aa6d030bd2..3fffb985431 100644 --- a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_4.RULE @@ -1,2 +1,12 @@ +--- +license_expression: epl-1.0 AND bsd-new +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/testdata/eclipse_license.txt + - license/third_party/testdata/eclipse_distribution_license.txt +--- + License: Eclipse Public License v1.0 ([license/third_party/testdata/eclipse_license.txt][eclipse]) and Eclipse Distribution License - v1.0 ([license/third_party/testdata/eclipse_distribution_license.txt][eclipse-distribution]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_4.yml b/src/licensedcode/data/rules/epl-1.0_and_bsd-new_4.yml deleted file mode 100644 index 4f8b57eca2a..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_and_bsd-new_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-1.0 AND bsd-new -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/testdata/eclipse_license.txt - - license/third_party/testdata/eclipse_distribution_license.txt diff --git a/src/licensedcode/data/rules/epl-1.0_and_epl-2.0_1.RULE b/src/licensedcode/data/rules/epl-1.0_and_epl-2.0_1.RULE index 91bf39ea8fd..de66c8bf545 100644 --- a/src/licensedcode/data/rules/epl-1.0_and_epl-2.0_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_and_epl-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-1.0 AND epl-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html +--- + Eclipse Public License - v 1.0 @@ -7,4 +17,4 @@ Eclipse Public License - v 2.0 https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html - +
\ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_and_epl-2.0_1.yml b/src/licensedcode/data/rules/epl-1.0_and_epl-2.0_1.yml deleted file mode 100644 index c92559abeaa..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_and_epl-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-1.0 AND epl-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html diff --git a/src/licensedcode/data/rules/epl-1.0_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/epl-1.0_and_other-copyleft_1.RULE index 0e00c97816d..e413d6fe087 100644 --- a/src/licensedcode/data/rules/epl-1.0_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_and_other-copyleft_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epl-1.0 AND other-copyleft +is_license_notice: yes +relevance: 99 +--- + To the extent any open source components are licensed under the EPL and/or other similar licenses that require the source code and/or modifications to source code to be made available (as would be noted above), you may obtain a diff --git a/src/licensedcode/data/rules/epl-1.0_and_other-copyleft_1.yml b/src/licensedcode/data/rules/epl-1.0_and_other-copyleft_1.yml deleted file mode 100644 index 210620a5263..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_and_other-copyleft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 AND other-copyleft -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/epl-1.0_markdown.RULE b/src/licensedcode/data/rules/epl-1.0_markdown.RULE index 4750952ee3d..29a70114473 100644 --- a/src/licensedcode/data/rules/epl-1.0_markdown.RULE +++ b/src/licensedcode/data/rules/epl-1.0_markdown.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epl-1.0 +is_license_text: yes +--- + #Eclipse Public License 1.0 (EPL-1.0) ###Eclipse Public License, Version 1.0 (EPL-1.0) THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. @@ -42,4 +47,4 @@ If any provision of this Agreement is invalid or unenforceable under applicable If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. -This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_markdown.yml b/src/licensedcode/data/rules/epl-1.0_markdown.yml deleted file mode 100644 index a7c700f93af..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_markdown.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0.RULE b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0.RULE index dd4c861ca26..c076f4074f0 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-1.0 OR apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.opensource.org/licenses/apache2.0.php +--- + // This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 // and Apache License v2.0 which accompanies this distribution. diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0.yml b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0.yml deleted file mode 100644 index ae70a3a7226..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 OR apache-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - http://www.opensource.org/licenses/apache2.0.php diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_1.RULE index 14ce84162a0..07015fbdd17 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-1.0 OR apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html + - http://www.eclipse.org/ + - http://www.eclipse.org/legal/epl-v10.html +--- + License The Eclipse Foundation makes available all content in this plug-in ("Content"). diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_1.yml deleted file mode 100644 index a150adce6ae..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-1.0 OR apache-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.html - - http://www.eclipse.org/ - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_2.RULE index 09eeb43fd2c..8b6175d0305 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-1.0 OR apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.eclipse.org/ + - http://www.eclipse.org/legal/epl-v10.html + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + License The Eclipse Foundation makes available all content in this plug-in ("Content"). diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_2.yml b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_2.yml deleted file mode 100644 index cfc5cb5a624..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-1.0 OR apache-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.eclipse.org/ - - http://www.eclipse.org/legal/epl-v10.html - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_bsd-new_and_mit_and_others_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_bsd-new_and_mit_and_others_1.RULE index c600defbf47..ffc9e77edd3 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_bsd-new_and_mit_and_others_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_bsd-new_and_mit_and_others_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (epl-1.0 OR apache-2.0) AND bsd-new AND mit AND bsd-new AND gpl-3.0-plus + WITH autoconf-simple-exception +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - https://www.apache.org/licenses/ +--- + This program and the accompanying materials are licensed under the terms of the Eclipse Public License v1.0 and Apache v2.0 License which are reproduced below subject to the following notices: @@ -396,4 +406,4 @@ B. Apache License, Version 2.0 incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_bsd-new_and_mit_and_others_1.yml b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_bsd-new_and_mit_and_others_1.yml deleted file mode 100644 index 6eab013d6b3..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_bsd-new_and_mit_and_others_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (epl-1.0 OR apache-2.0) AND bsd-new AND mit AND bsd-new AND gpl-3.0-plus - WITH autoconf-simple-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others.RULE b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others.RULE index 9a930db5984..f3dda8c6d80 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others.RULE @@ -1,3 +1,9 @@ +--- +license_expression: (epl-1.0 OR apache-2.0) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +minimum_coverage: 70 +--- + This program and the accompanying materials are licensed under the terms of the Eclipse Public License v1.0 and Apache v2.0 License which are reproduced below subject to the following notices: @@ -9,4 +15,4 @@ are reproduced below subject to the following notices: You may distribute this program and materials under either the Eclipse Public License or the Apache V2.0 License as long as you pass through -the exceptions noted above. +the exceptions noted above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others.yml b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others.yml deleted file mode 100644 index 7e07ceddc67..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (epl-1.0 OR apache-2.0) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others2.RULE b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others2.RULE index 4d62258026b..cdbccefb79e 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (epl-1.0 OR apache-2.0) AND bsd-new AND mit AND bsd-new AND gpl-3.0-plus + WITH autoconf-simple-exception +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.eclipse.org/legal/epl-v10.html +--- + This program and the accompanying materials are licensed under the terms of the Eclipse Public License v1.0 and Apache v2.0 License which are reproduced below subject to the following notices: @@ -396,4 +406,4 @@ B. Apache License, Version 2.0 incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others2.yml b/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others2.yml deleted file mode 100644 index 8c59bcfb84b..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_apache-2.0_and_others2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (epl-1.0 OR apache-2.0) AND bsd-new AND mit AND bsd-new AND gpl-3.0-plus - WITH autoconf-simple-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_1.RULE index e2ae460fdad..fee88a45552 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-1.0 OR bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://github.com/locationtech/jts/blob/master/LICENSE_EDLv1.txt + - https://github.com/locationtech/jts/blob/master/LICENSE_EPLv1.txt +--- + Eclipse Publish License, Version 1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_1.yml b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_1.yml deleted file mode 100644 index f89fc6b033d..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 OR bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://github.com/locationtech/jts/blob/master/LICENSE_EDLv1.txt - - https://github.com/locationtech/jts/blob/master/LICENSE_EPLv1.txt diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_2.RULE b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_2.RULE index fd432ad0843..dcb6eaf8d48 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: epl-1.0 OR bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSES.md +ignorable_urls: + - http://www.eclipse.org/org/documents/edl-v10.php + - https://www.eclipse.org/legal/epl-v10.html +--- + Licensing FAQ is dual-licensed under: diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_2.yml b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_2.yml deleted file mode 100644 index 0d7991a07bb..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: epl-1.0 OR bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSES.md -ignorable_urls: - - http://www.eclipse.org/org/documents/edl-v10.php - - https://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_3.RULE b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_3.RULE index df19184df7a..07916d90a40 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 OR bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSES.md +--- + Licensing FAQ is dual-licensed under: diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_3.yml b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_3.yml deleted file mode 100644 index 6738a44db45..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 OR bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSES.md diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_4.RULE b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_4.RULE index 8ab08b5ca27..3f9af2e4b07 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_4.RULE @@ -1 +1,6 @@ +--- +license_expression: epl-1.0 OR bsd-new +is_license_notice: yes +--- + distributed to under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"), and the Refractions BSD License 1.0 ("BSD"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_4.yml b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_4.yml deleted file mode 100644 index 4162b192575..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-1.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_5.RULE b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_5.RULE index 3b97ebc0102..f422a630a84 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_5.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 OR bsd-new +is_license_notice: yes +ignorable_urls: + - http://udig.refractions.net/files/bsd3-v10.html + - http://www.eclipse.org/legal/epl-v10.html +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD diff --git a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_5.yml b/src/licensedcode/data/rules/epl-1.0_or_bsd-new_5.yml deleted file mode 100644 index 4313b209321..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_bsd-new_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 OR bsd-new -is_license_notice: yes -ignorable_urls: - - http://udig.refractions.net/files/bsd3-v10.html - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_1.RULE index 50614d4a8b9..d072da2e740 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_1.RULE @@ -1,5 +1,11 @@ +--- +license_expression: epl-1.0 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + THIS PROGRAM IS PROVIDED UNDER THE TERMS OF ONE OF THE TWO LICENSES, I.E., EITHER THE ECLIPSE PUBLIC LICENSE VERSION 1.0 OR THE GNU GENERAL PUBLIC LICENSE AS GIVEN BELOW. ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES THE RECIPIENT'S ACCEPTANCE OF -ONE OF THE TWO AGREEMENTS EPL-1.0 OR GPL-2.0+. +ONE OF THE TWO AGREEMENTS EPL-1.0 OR GPL-2.0+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_1.yml deleted file mode 100644 index e1975e82e5e..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE index 3df4c735f00..12a53f9154c 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + ***** BEGIN LICENSE BLOCK ***** * Version: EPL 1.0/GPL 2.0/LGPL 2.1 * @@ -22,6 +30,4 @@ * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the EPL, the GPL or the LGPL. - ***** END LICENSE BLOCK *****/ - - \ No newline at end of file + ***** END LICENSE BLOCK *****/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index afe798a03fa..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_1.RULE index 8edaf0c134f..e8d8d5f40ee 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epl-1.0 OR gpl-2.0 OR lgpl-2.1 +is_license_notice: yes +minimum_coverage: 80 +--- + is released under a tri EPL/GPL/LGPL license. You can use it, redistribute it and/or modify it under the terms of the: diff --git a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_1.yml b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_1.yml deleted file mode 100644 index c9685fa6569..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 OR gpl-2.0 OR lgpl-2.1 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_2.RULE index a700e4f47f3..2964c5a1eab 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 OR gpl-2.0 OR lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + /***** BEGIN LICENSE BLOCK ***** * Version: EPL 1.0/GPL 2.0/LGPL 2.1 * diff --git a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_2.yml b/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_2.yml deleted file mode 100644 index aa8feba9deb..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_gpl-2.0_or_lgpl-2.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 OR gpl-2.0 OR lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_1.RULE index d76000bfede..d421871b3cb 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index 216847a3f7d..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_2.RULE index bab51c26227..1123dcb9bf5 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + Alternatively, the contents of this file may be used under the terms of either the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), in which case the provisions of the LGPL are applicable instead diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index 5ceee4158e0..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_3.RULE index ef39670965f..d6800e7c1aa 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.sat4j.org/ +--- + The SAT4J project makes available all content in this plug-in ("Content"). Your use of the Content is governed by the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_3.yml deleted file mode 100644 index 0b6d6a5e18b..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - http://www.sat4j.org/ diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_4.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_4.RULE index 62f743c1751..6bf8e96e85e 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_4.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +notes: found in sat4j +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v10.php + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + {{Eclipse Public License 1.0}} diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_4.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_4.yml deleted file mode 100644 index 2f5381ec098..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -notes: found in sat4j -ignorable_urls: - - http://www.eclipse.org/org/documents/epl-v10.php - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_5.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_5.RULE index 631815f6629..fce0f55e2e2 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_5.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +notes: found in sat4j +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v10.php + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + {{Eclipse Public License 1.0}} diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_5.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_5.yml deleted file mode 100644 index c563553f604..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -notes: found in sat4j -ignorable_urls: - - http://www.eclipse.org/org/documents/epl-v10.php - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_and_others_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_and_others_1.RULE index 59ab82a9503..54875fbb512 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_and_others_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_and_others_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR agpl-3.0-plus OR apache-2.0 + OR bsd-new OR mit +is_license_notice: yes +minimum_coverage: 95 +notes: seen in http://www.source-code.biz/base64coder/java/Base64Coder.java.txt +ignorable_urls: + - http://www.eclipse.org/legal + - http://www.gnu.org/licenses/agpl.html + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html + - http://www.opensource.org/licenses/MIT + - http://www.opensource.org/licenses/bsd-license.php + - https://www.apache.org/licenses +--- + // This module is multi-licensed and may be used under the terms // of any of the following licenses: // diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_and_others_1.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_and_others_1.yml deleted file mode 100644 index 5dfed5b8b67..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_and_others_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR agpl-3.0-plus OR apache-2.0 - OR bsd-new OR mit -is_license_notice: yes -minimum_coverage: 95 -notes: seen in http://www.source-code.biz/base64coder/java/Base64Coder.java.txt -ignorable_urls: - - http://www.eclipse.org/legal - - http://www.gnu.org/licenses/agpl.html - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html - - http://www.opensource.org/licenses/MIT - - http://www.opensource.org/licenses/bsd-license.php - - https://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_1.RULE index 68e3d36706b..ff2607e2b59 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_1.RULE @@ -1,3 +1,20 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR agpl-3.0-plus OR apache-2.0 + OR bsd-new OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: seen in http://www.source-code.biz/base64coder/java/Base64Coder.java.txt +ignorable_urls: + - http://www.eclipse.org/legal + - http://www.opensource.org/licenses/MIT + - http://www.opensource.org/licenses/bsd-license.php + - https://www.apache.org/licenses + - https://www.gnu.org/licenses/agpl.html + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + // This module is multi-licensed and may be used under the terms // of any of the following licenses: // diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_1.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_1.yml deleted file mode 100644 index 4deba13b8d4..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_1.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR agpl-3.0-plus OR apache-2.0 - OR bsd-new OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: seen in http://www.source-code.biz/base64coder/java/Base64Coder.java.txt -ignorable_urls: - - http://www.eclipse.org/legal - - http://www.opensource.org/licenses/MIT - - http://www.opensource.org/licenses/bsd-license.php - - https://www.apache.org/licenses - - https://www.gnu.org/licenses/agpl.html - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_2.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_2.RULE index 348749789d7..c2694e89fc6 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_2.RULE @@ -1,3 +1,20 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR agpl-3.0-plus OR apache-2.0 + OR bsd-new OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: seen in http://www.source-code.biz/base64coder/java/Base64Coder.java.txt +ignorable_urls: + - http://www.apache.org/licenses + - http://www.eclipse.org/legal + - http://www.opensource.org/licenses/MIT + - http://www.opensource.org/licenses/bsd-license.php + - https://www.gnu.org/licenses/agpl.html + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + // This module is multi-licensed and may be used under the terms // of any of the following licenses: // diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_2.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_2.yml deleted file mode 100644 index 4aa35b52706..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_agpl-3.0-plus_or_apache-2.0_or_bsd-new_or_mit_2.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR agpl-3.0-plus OR apache-2.0 - OR bsd-new OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: seen in http://www.source-code.biz/base64coder/java/Base64Coder.java.txt -ignorable_urls: - - http://www.apache.org/licenses - - http://www.eclipse.org/legal - - http://www.opensource.org/licenses/MIT - - http://www.opensource.org/licenses/bsd-license.php - - https://www.gnu.org/licenses/agpl.html - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_1.RULE index 35cf11a8338..552852c8db1 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses + - http://www.eclipse.org/legal + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html + - http://www.opensource.org/licenses/bsd-license.php +--- + // This module is multi-licensed and may be used under the terms // of any of the following licenses: // diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_1.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_1.yml deleted file mode 100644 index 4bd0cacf4fe..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses - - http://www.eclipse.org/legal - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_2.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_2.RULE index a6c3d58070f..03134e2b3c5 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_2.RULE @@ -1 +1,8 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +minimum_coverage: 99 +--- + Multi-licensed: EPL / LGPL / GPL / AL / BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_2.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_2.yml deleted file mode 100644 index 5e969dc9a1b..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_3.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_3.RULE index 5901f6510f3..b68bb16562d 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.eclipse.org/legal + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html + - http://www.opensource.org/licenses/bsd-license.php + - https://www.apache.org/licenses +--- + // This module is multi-licensed and may be used under the terms // of any of the following licenses: // diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_3.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_3.yml deleted file mode 100644 index bd0c314cb7c..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.eclipse.org/legal - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html - - http://www.opensource.org/licenses/bsd-license.php - - https://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_4.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_4.RULE index 8c45be496e9..9dc7df456c8 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_4.RULE @@ -1,3 +1,16 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/licenses + - http://www.eclipse.org/legal + - http://www.opensource.org/licenses/bsd-license.php + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + // This module is multi-licensed and may be used under the terms // of any of the following licenses: // diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_4.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_4.yml deleted file mode 100644 index 418d7141f89..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_4.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/licenses - - http://www.eclipse.org/legal - - http://www.opensource.org/licenses/bsd-license.php - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_5.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_5.RULE index 968cf79c188..d10266c1d6d 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_5.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_5.RULE @@ -1,3 +1,16 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.eclipse.org/legal + - http://www.opensource.org/licenses/bsd-license.php + - https://www.apache.org/licenses + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + // This module is multi-licensed and may be used under the terms // of any of the following licenses: // diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_5.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_5.yml deleted file mode 100644 index b0eb412d4c6..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1-plus_or_gpl-2.0-plus_or_apache-2.0_or_bsd-new_5.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1-plus OR gpl-2.0-plus OR apache-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.eclipse.org/legal - - http://www.opensource.org/licenses/bsd-license.php - - https://www.apache.org/licenses - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1.RULE index e886c85cc95..e7118e67e69 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1 +is_license_notice: yes +--- + * 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 @@ -5,4 +10,4 @@ * 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. + * as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1.yml deleted file mode 100644 index 6d0a6c0b68d..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_1.RULE index e26e02f99ad..480d16372fc 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1 +is_license_tag: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Eclipse Public License - v 1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_1.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_1.yml deleted file mode 100644 index 2d2c2f07e9e..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1 -is_license_tag: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_2.RULE index e2fe11e750d..ffe5d4674ca 100644 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-1.0 OR lgpl-2.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Eclipse Public License - v 1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_2.yml b/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_2.yml deleted file mode 100644 index 4e0dccc1e25..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_or_lgpl-2.1_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-1.0 OR lgpl-2.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/epl-1.0_url_1.RULE b/src/licensedcode/data/rules/epl-1.0_url_1.RULE index 469520d3c7f..d427ceed9b9 100644 --- a/src/licensedcode/data/rules/epl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/epl-1.0 +--- + https://spdx.org/licenses/epl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_url_1.yml b/src/licensedcode/data/rules/epl-1.0_url_1.yml deleted file mode 100644 index 85f008e8f32..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/epl-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_url_2.RULE b/src/licensedcode/data/rules/epl-1.0_url_2.RULE index fa26e2cf233..98dfd8b98f6 100644 --- a/src/licensedcode/data/rules/epl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/epl-1.0.html +--- + https://spdx.org/licenses/epl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_url_2.yml b/src/licensedcode/data/rules/epl-1.0_url_2.yml deleted file mode 100644 index ccc68af5c1b..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/epl-1.0.html diff --git a/src/licensedcode/data/rules/epl-1.0_url_badge.RULE b/src/licensedcode/data/rules/epl-1.0_url_badge.RULE index 971e97b764f..3402429ffbd 100644 --- a/src/licensedcode/data/rules/epl-1.0_url_badge.RULE +++ b/src/licensedcode/data/rules/epl-1.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-EPL%201.0-red.svg + - https://opensource.org/licenses/EPL-1.0 +--- + [![License](https://img.shields.io/badge/License-EPL%201.0-red.svg)](https://opensource.org/licenses/EPL-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_url_badge.yml b/src/licensedcode/data/rules/epl-1.0_url_badge.yml deleted file mode 100644 index d5cb29dcfbf..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-EPL%201.0-red.svg - - https://opensource.org/licenses/EPL-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_url_glc_154.RULE b/src/licensedcode/data/rules/epl-1.0_url_glc_154.RULE index 83846f71a2d..dc31dc32e87 100644 --- a/src/licensedcode/data/rules/epl-1.0_url_glc_154.RULE +++ b/src/licensedcode/data/rules/epl-1.0_url_glc_154.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/epl-1.0 +--- + http://www.opensource.org/licenses/epl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_url_glc_154.yml b/src/licensedcode/data/rules/epl-1.0_url_glc_154.yml deleted file mode 100644 index cdfc0a29ac1..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_url_glc_154.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/epl-1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_url_glc_155.RULE b/src/licensedcode/data/rules/epl-1.0_url_glc_155.RULE index 7e565848201..92feb72bcf9 100644 --- a/src/licensedcode/data/rules/epl-1.0_url_glc_155.RULE +++ b/src/licensedcode/data/rules/epl-1.0_url_glc_155.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/epl-1.0 +--- + https://www.opensource.org/licenses/epl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_url_glc_155.yml b/src/licensedcode/data/rules/epl-1.0_url_glc_155.yml deleted file mode 100644 index dd332adb496..00000000000 --- a/src/licensedcode/data/rules/epl-1.0_url_glc_155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/epl-1.0 diff --git a/src/licensedcode/data/rules/epl-2.0_1.RULE b/src/licensedcode/data/rules/epl-2.0_1.RULE index b36a2b39c2e..61e42d439c2 100644 --- a/src/licensedcode/data/rules/epl-2.0_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_1.RULE @@ -1 +1,11 @@ +--- +license_expression: bsd-new AND epl-2.0 AND free-unknown +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: there is a typo in the text with an EDL reference so the license is unclear +ignorable_urls: + - https://www.eclipse.org/legal/epl-2.0 +--- + Eclipse Distribution License Version 2.0 (available at "https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_1.yml b/src/licensedcode/data/rules/epl-2.0_1.yml deleted file mode 100644 index 9695f0ed585..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: bsd-new AND epl-2.0 AND free-unknown -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: there is a typo in the text with an EDL reference so the license is unclear -ignorable_urls: - - https://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_10.RULE b/src/licensedcode/data/rules/epl-2.0_10.RULE index 962e92d9cb9..f8d83e415c9 100644 --- a/src/licensedcode/data/rules/epl-2.0_10.RULE +++ b/src/licensedcode/data/rules/epl-2.0_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +--- + Eclipse Public License - Version 2.0 Eclipse Public License - v 2.0 @@ -267,4 +272,4 @@ general">7. GENERAL relevant directory) where a recipient would be likely to look for such a notice.

-

You may add additional accurate notices of copyright ownership.

+

You may add additional accurate notices of copyright ownership.

\ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_10.yml b/src/licensedcode/data/rules/epl-2.0_10.yml deleted file mode 100644 index f7c0a7d6176..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/epl-2.0_11.RULE b/src/licensedcode/data/rules/epl-2.0_11.RULE index 92da34a8072..8b5df0da2ec 100644 --- a/src/licensedcode/data/rules/epl-2.0_11.RULE +++ b/src/licensedcode/data/rules/epl-2.0_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epl-2.0 +is_license_text: yes +--- +

Eclipse Public License - v 2.0

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE (AGREEMENT). ANY USE, REPRODUCTION OR DISTRIBUTION diff --git a/src/licensedcode/data/rules/epl-2.0_11.yml b/src/licensedcode/data/rules/epl-2.0_11.yml deleted file mode 100644 index fe76fecb3f9..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/epl-2.0_12.RULE b/src/licensedcode/data/rules/epl-2.0_12.RULE index cb374816fa3..1830f0c6276 100644 --- a/src/licensedcode/data/rules/epl-2.0_12.RULE +++ b/src/licensedcode/data/rules/epl-2.0_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 50 +--- +

Source Code means the form of a Program preferred for making modifications, including but not limited to software source code, documentation source, and configuration files. diff --git a/src/licensedcode/data/rules/epl-2.0_12.yml b/src/licensedcode/data/rules/epl-2.0_12.yml deleted file mode 100644 index 2e4247ff89a..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/epl-2.0_13.RULE b/src/licensedcode/data/rules/epl-2.0_13.RULE index 394ed38fe79..a76137e830f 100644 --- a/src/licensedcode/data/rules/epl-2.0_13.RULE +++ b/src/licensedcode/data/rules/epl-2.0_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 50 +--- +

5. NO WARRANTY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN AS IS BASIS, WITHOUT diff --git a/src/licensedcode/data/rules/epl-2.0_13.yml b/src/licensedcode/data/rules/epl-2.0_13.yml deleted file mode 100644 index 2e4247ff89a..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/epl-2.0_14.RULE b/src/licensedcode/data/rules/epl-2.0_14.RULE index 3ace7276f37..e4fbd53c0eb 100644 --- a/src/licensedcode/data/rules/epl-2.0_14.RULE +++ b/src/licensedcode/data/rules/epl-2.0_14.RULE @@ -1 +1,8 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html +--- + Eclipse Public License - v 2.0https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_14.yml b/src/licensedcode/data/rules/epl-2.0_14.yml deleted file mode 100644 index e0315fc741f..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html diff --git a/src/licensedcode/data/rules/epl-2.0_15.RULE b/src/licensedcode/data/rules/epl-2.0_15.RULE index 4402bad879b..b1193237341 100644 --- a/src/licensedcode/data/rules/epl-2.0_15.RULE +++ b/src/licensedcode/data/rules/epl-2.0_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html +--- + * The contents of this file are subject to the Eclipse Public * License Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of @@ -6,4 +13,4 @@ * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing - * rights and limitations under the License. + * rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_15.yml b/src/licensedcode/data/rules/epl-2.0_15.yml deleted file mode 100644 index 2085f144f68..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_16.RULE b/src/licensedcode/data/rules/epl-2.0_16.RULE index 7902ccbf16e..1c191e72358 100644 --- a/src/licensedcode/data/rules/epl-2.0_16.RULE +++ b/src/licensedcode/data/rules/epl-2.0_16.RULE @@ -1 +1,9 @@ - license 'EPL-2.0', 'http://www.eclipse.org/legal/epl-v20.html' +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html +--- + + license 'EPL-2.0', 'http://www.eclipse.org/legal/epl-v20.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_16.yml b/src/licensedcode/data/rules/epl-2.0_16.yml deleted file mode 100644 index f8a222432dd..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_17.RULE b/src/licensedcode/data/rules/epl-2.0_17.RULE index 3ba70881ee2..e23b9e13a33 100644 --- a/src/licensedcode/data/rules/epl-2.0_17.RULE +++ b/src/licensedcode/data/rules/epl-2.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + license 'EPL-2.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_17.yml b/src/licensedcode/data/rules/epl-2.0_17.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_18.RULE b/src/licensedcode/data/rules/epl-2.0_18.RULE index 4f65151df83..ba3f4fe72d4 100644 --- a/src/licensedcode/data/rules/epl-2.0_18.RULE +++ b/src/licensedcode/data/rules/epl-2.0_18.RULE @@ -1 +1,9 @@ -'http://www.eclipse.org/legal/epl-v20.html' +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html +--- + +'http://www.eclipse.org/legal/epl-v20.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_18.yml b/src/licensedcode/data/rules/epl-2.0_18.yml deleted file mode 100644 index f8a222432dd..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_19.RULE b/src/licensedcode/data/rules/epl-2.0_19.RULE index ce4a05112ae..40d3de04e9f 100644 --- a/src/licensedcode/data/rules/epl-2.0_19.RULE +++ b/src/licensedcode/data/rules/epl-2.0_19.RULE @@ -1 +1,9 @@ -'https://www.eclipse.org/legal/epl-v20.html' +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v20.html +--- + +'https://www.eclipse.org/legal/epl-v20.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_19.yml b/src/licensedcode/data/rules/epl-2.0_19.yml deleted file mode 100644 index d59ea49c78e..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_2.RULE b/src/licensedcode/data/rules/epl-2.0_2.RULE index 4543a3f3b4c..c267103f0b3 100644 --- a/src/licensedcode/data/rules/epl-2.0_2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-2.0 +--- + https://www.eclipse.org/legal/epl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_2.yml b/src/licensedcode/data/rules/epl-2.0_2.yml deleted file mode 100644 index e6e9daa4a89..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_20.RULE b/src/licensedcode/data/rules/epl-2.0_20.RULE index f74d999f5a6..e1374378262 100644 --- a/src/licensedcode/data/rules/epl-2.0_20.RULE +++ b/src/licensedcode/data/rules/epl-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/eclipse +--- + https://choosealicense.com/licenses/eclipse \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_20.yml b/src/licensedcode/data/rules/epl-2.0_20.yml deleted file mode 100644 index 0b9fc141ad8..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/eclipse diff --git a/src/licensedcode/data/rules/epl-2.0_21.RULE b/src/licensedcode/data/rules/epl-2.0_21.RULE index d5b05fd8cc5..4fa704a0b4e 100644 --- a/src/licensedcode/data/rules/epl-2.0_21.RULE +++ b/src/licensedcode/data/rules/epl-2.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/eclipse +--- + http://choosealicense.com/licenses/eclipse \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_21.yml b/src/licensedcode/data/rules/epl-2.0_21.yml deleted file mode 100644 index 9c3e52fdd28..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/eclipse diff --git a/src/licensedcode/data/rules/epl-2.0_22.RULE b/src/licensedcode/data/rules/epl-2.0_22.RULE index 4a8dd1cdd71..cc99a95a152 100644 --- a/src/licensedcode/data/rules/epl-2.0_22.RULE +++ b/src/licensedcode/data/rules/epl-2.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/epl-2.0 +--- + https://choosealicense.com/licenses/epl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_22.yml b/src/licensedcode/data/rules/epl-2.0_22.yml deleted file mode 100644 index e39bed94193..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_23.RULE b/src/licensedcode/data/rules/epl-2.0_23.RULE index 124b866799a..bcc74dbe3d2 100644 --- a/src/licensedcode/data/rules/epl-2.0_23.RULE +++ b/src/licensedcode/data/rules/epl-2.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/epl-2.0 +--- + http://choosealicense.com/licenses/epl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_23.yml b/src/licensedcode/data/rules/epl-2.0_23.yml deleted file mode 100644 index 6d8666334c0..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_24.RULE b/src/licensedcode/data/rules/epl-2.0_24.RULE index 42106025f20..e95c2fefafb 100644 --- a/src/licensedcode/data/rules/epl-2.0_24.RULE +++ b/src/licensedcode/data/rules/epl-2.0_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html +--- + This program and the accompanying materials ~ are made available under the terms of the Eclipse Public License v2.0 ~ which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/epl-2.0_24.yml b/src/licensedcode/data/rules/epl-2.0_24.yml deleted file mode 100644 index f5a13f2dfe0..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_25.RULE b/src/licensedcode/data/rules/epl-2.0_25.RULE index f7d3f0ae05e..79cc92c642c 100644 --- a/src/licensedcode/data/rules/epl-2.0_25.RULE +++ b/src/licensedcode/data/rules/epl-2.0_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + * The software in this package is published under the terms of the EPL v2.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_25.yml b/src/licensedcode/data/rules/epl-2.0_25.yml deleted file mode 100644 index e46edbf5f76..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/epl-2.0_26.RULE b/src/licensedcode/data/rules/epl-2.0_26.RULE index 9fa9f290616..6c1200651a6 100644 --- a/src/licensedcode/data/rules/epl-2.0_26.RULE +++ b/src/licensedcode/data/rules/epl-2.0_26.RULE @@ -1,2 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - Rifidi-License.txt +--- + * License: The software in this package is published under the terms of the EPL License * A copy of the license is included in this distribution under Rifidi-License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_26.yml b/src/licensedcode/data/rules/epl-2.0_26.yml deleted file mode 100644 index 0977451529d..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - Rifidi-License.txt diff --git a/src/licensedcode/data/rules/epl-2.0_27.RULE b/src/licensedcode/data/rules/epl-2.0_27.RULE index 9f16575cf0f..efe098c6ad5 100644 --- a/src/licensedcode/data/rules/epl-2.0_27.RULE +++ b/src/licensedcode/data/rules/epl-2.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +--- + This application is published under the EPL 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_27.yml b/src/licensedcode/data/rules/epl-2.0_27.yml deleted file mode 100644 index 55545b38402..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_28.RULE b/src/licensedcode/data/rules/epl-2.0_28.RULE index 45826c91a3d..08ce45fcd1a 100644 --- a/src/licensedcode/data/rules/epl-2.0_28.RULE +++ b/src/licensedcode/data/rules/epl-2.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_tag: yes +relevance: 98 +--- + License: Eclipse Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_28.yml b/src/licensedcode/data/rules/epl-2.0_28.yml deleted file mode 100644 index caa674e9a5b..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_tag: yes -relevance: 98 diff --git a/src/licensedcode/data/rules/epl-2.0_29.RULE b/src/licensedcode/data/rules/epl-2.0_29.RULE index 61db7ef4035..d3e946b4b07 100644 --- a/src/licensedcode/data/rules/epl-2.0_29.RULE +++ b/src/licensedcode/data/rules/epl-2.0_29.RULE @@ -1,2 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-2.0/ +--- + Eclipse Public License 2.0 https://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_29.yml b/src/licensedcode/data/rules/epl-2.0_29.yml deleted file mode 100644 index a4b2d089e14..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_3.RULE b/src/licensedcode/data/rules/epl-2.0_3.RULE index 6e0f3673f4f..ab32d45ed5d 100644 --- a/src/licensedcode/data/rules/epl-2.0_3.RULE +++ b/src/licensedcode/data/rules/epl-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.eclipse.org/legal/epl-2.0 +--- + Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 2.0 ("EPL"). A copy of the EPL is diff --git a/src/licensedcode/data/rules/epl-2.0_3.yml b/src/licensedcode/data/rules/epl-2.0_3.yml deleted file mode 100644 index 1eaa4d33ad1..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_30.RULE b/src/licensedcode/data/rules/epl-2.0_30.RULE index d32c87dce5b..06f80112cfc 100644 --- a/src/licensedcode/data/rules/epl-2.0_30.RULE +++ b/src/licensedcode/data/rules/epl-2.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_30.yml b/src/licensedcode/data/rules/epl-2.0_30.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_31.RULE b/src/licensedcode/data/rules/epl-2.0_31.RULE index 09eff6ab0dd..6d3611dec9a 100644 --- a/src/licensedcode/data/rules/epl-2.0_31.RULE +++ b/src/licensedcode/data/rules/epl-2.0_31.RULE @@ -1,2 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-2.0/ +--- + Eclipse Public License 2.0 http://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_31.yml b/src/licensedcode/data/rules/epl-2.0_31.yml deleted file mode 100644 index 802c909eb20..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_32.RULE b/src/licensedcode/data/rules/epl-2.0_32.RULE index 565444209e5..baf6a0725a4 100644 --- a/src/licensedcode/data/rules/epl-2.0_32.RULE +++ b/src/licensedcode/data/rules/epl-2.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-2.0/ +--- + http://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_32.yml b/src/licensedcode/data/rules/epl-2.0_32.yml deleted file mode 100644 index 802c909eb20..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_33.RULE b/src/licensedcode/data/rules/epl-2.0_33.RULE index 0cf05c75255..88152cdeadb 100644 --- a/src/licensedcode/data/rules/epl-2.0_33.RULE +++ b/src/licensedcode/data/rules/epl-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_33.yml b/src/licensedcode/data/rules/epl-2.0_33.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_34.RULE b/src/licensedcode/data/rules/epl-2.0_34.RULE index 1c851d95fe0..c85e847543d 100644 --- a/src/licensedcode/data/rules/epl-2.0_34.RULE +++ b/src/licensedcode/data/rules/epl-2.0_34.RULE @@ -1 +1,9 @@ -Eclipse Public License (EPL) 2.0 +--- +license_expression: epl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + +Eclipse Public License (EPL) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_34.yml b/src/licensedcode/data/rules/epl-2.0_34.yml deleted file mode 100644 index 6776e1bfa75..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_35.RULE b/src/licensedcode/data/rules/epl-2.0_35.RULE index add3ea1ee35..442ea564741 100644 --- a/src/licensedcode/data/rules/epl-2.0_35.RULE +++ b/src/licensedcode/data/rules/epl-2.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License (EPL), Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_35.yml b/src/licensedcode/data/rules/epl-2.0_35.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_36.RULE b/src/licensedcode/data/rules/epl-2.0_36.RULE index 4f66be07c93..2b163fb7dcd 100644 --- a/src/licensedcode/data/rules/epl-2.0_36.RULE +++ b/src/licensedcode/data/rules/epl-2.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License (EPL), Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_36.yml b/src/licensedcode/data/rules/epl-2.0_36.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_37.RULE b/src/licensedcode/data/rules/epl-2.0_37.RULE index d9677197bad..32c830a82d1 100644 --- a/src/licensedcode/data/rules/epl-2.0_37.RULE +++ b/src/licensedcode/data/rules/epl-2.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License (EPL), V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_37.yml b/src/licensedcode/data/rules/epl-2.0_37.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_38.RULE b/src/licensedcode/data/rules/epl-2.0_38.RULE index 3aedb056443..e31c96fe2fc 100644 --- a/src/licensedcode/data/rules/epl-2.0_38.RULE +++ b/src/licensedcode/data/rules/epl-2.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +--- + The following libraries are licensed under the Eclipse Public License, version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_38.yml b/src/licensedcode/data/rules/epl-2.0_38.yml deleted file mode 100644 index 55545b38402..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_39.RULE b/src/licensedcode/data/rules/epl-2.0_39.RULE index d7114e00b73..384d6b03cc1 100644 --- a/src/licensedcode/data/rules/epl-2.0_39.RULE +++ b/src/licensedcode/data/rules/epl-2.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +--- + libraries are licensed under the Eclipse Public License, version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_39.yml b/src/licensedcode/data/rules/epl-2.0_39.yml deleted file mode 100644 index 55545b38402..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_4.RULE b/src/licensedcode/data/rules/epl-2.0_4.RULE index 54f77e6fd32..383589ca73b 100644 --- a/src/licensedcode/data/rules/epl-2.0_4.RULE +++ b/src/licensedcode/data/rules/epl-2.0_4.RULE @@ -1,6 +1,13 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.eclipse.org/legal/epl-2.0 +--- + Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the Eclipse Public License Version 2.0 (EPL). A copy of the EPL is provided with this Content and is also available at https://www .eclipse.org/legal/epl-2.0 https://www.eclipse.org/legal/epl-2.0 . -For purposes of the EPL, Program will mean the Content. +For purposes of the EPL, Program will mean the Content. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_4.yml b/src/licensedcode/data/rules/epl-2.0_4.yml deleted file mode 100644 index 1eaa4d33ad1..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_40.RULE b/src/licensedcode/data/rules/epl-2.0_40.RULE index aae19790342..6ebd38be74a 100644 --- a/src/licensedcode/data/rules/epl-2.0_40.RULE +++ b/src/licensedcode/data/rules/epl-2.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Eclipse Public License, version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_40.yml b/src/licensedcode/data/rules/epl-2.0_40.yml deleted file mode 100644 index 55545b38402..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_41.RULE b/src/licensedcode/data/rules/epl-2.0_41.RULE index 841dc7a38ae..4b2842caa21 100644 --- a/src/licensedcode/data/rules/epl-2.0_41.RULE +++ b/src/licensedcode/data/rules/epl-2.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +--- + The following libraries are licenced under the Eclipse Public License, version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_41.yml b/src/licensedcode/data/rules/epl-2.0_41.yml deleted file mode 100644 index 55545b38402..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_42.RULE b/src/licensedcode/data/rules/epl-2.0_42.RULE index ac0b61a8d0e..a464420ae22 100644 --- a/src/licensedcode/data/rules/epl-2.0_42.RULE +++ b/src/licensedcode/data/rules/epl-2.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +--- + libraries are licenced under the Eclipse Public License, version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_42.yml b/src/licensedcode/data/rules/epl-2.0_42.yml deleted file mode 100644 index 55545b38402..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_43.RULE b/src/licensedcode/data/rules/epl-2.0_43.RULE index 3464ea3e458..15848edebb3 100644 --- a/src/licensedcode/data/rules/epl-2.0_43.RULE +++ b/src/licensedcode/data/rules/epl-2.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +--- + licenced under the Eclipse Public License, version 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_43.yml b/src/licensedcode/data/rules/epl-2.0_43.yml deleted file mode 100644 index 55545b38402..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_44.RULE b/src/licensedcode/data/rules/epl-2.0_44.RULE index af3a3719396..b09c54e5415 100644 --- a/src/licensedcode/data/rules/epl-2.0_44.RULE +++ b/src/licensedcode/data/rules/epl-2.0_44.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.eclipse.org/legal/epl-v20.html +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/epl-2.0_44.yml b/src/licensedcode/data/rules/epl-2.0_44.yml deleted file mode 100644 index 3f23ea8a863..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_45.RULE b/src/licensedcode/data/rules/epl-2.0_45.RULE index 4f138e3c04b..f5f6abeaf65 100644 --- a/src/licensedcode/data/rules/epl-2.0_45.RULE +++ b/src/licensedcode/data/rules/epl-2.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +relevance: 100 +--- + available under the terms of the Eclipse Public License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_45.yml b/src/licensedcode/data/rules/epl-2.0_45.yml deleted file mode 100644 index 55545b38402..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_46.RULE b/src/licensedcode/data/rules/epl-2.0_46.RULE index 9ad89add41b..ea2b295274d 100644 --- a/src/licensedcode/data/rules/epl-2.0_46.RULE +++ b/src/licensedcode/data/rules/epl-2.0_46.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Eclipse Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_46.yml b/src/licensedcode/data/rules/epl-2.0_46.yml deleted file mode 100644 index fcb7dd7270a..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_46.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-2.0_47.RULE b/src/licensedcode/data/rules/epl-2.0_47.RULE index f4240afc162..483a0ec03fa 100644 --- a/src/licensedcode/data/rules/epl-2.0_47.RULE +++ b/src/licensedcode/data/rules/epl-2.0_47.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Eclipse Public License 2.0 EPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_47.yml b/src/licensedcode/data/rules/epl-2.0_47.yml deleted file mode 100644 index fcb7dd7270a..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_47.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-2.0_48.RULE b/src/licensedcode/data/rules/epl-2.0_48.RULE index 57b15191c27..8112987955f 100644 --- a/src/licensedcode/data/rules/epl-2.0_48.RULE +++ b/src/licensedcode/data/rules/epl-2.0_48.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Eclipse Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_48.yml b/src/licensedcode/data/rules/epl-2.0_48.yml deleted file mode 100644 index e7d7366cb57..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_48.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-2.0_49.RULE b/src/licensedcode/data/rules/epl-2.0_49.RULE index 268c7b1db00..165887d198b 100644 --- a/src/licensedcode/data/rules/epl-2.0_49.RULE +++ b/src/licensedcode/data/rules/epl-2.0_49.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_49.yml b/src/licensedcode/data/rules/epl-2.0_49.yml deleted file mode 100644 index e7d7366cb57..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_49.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/epl-2.0_5.RULE b/src/licensedcode/data/rules/epl-2.0_5.RULE index 8f69c7c2991..1d786b00120 100644 --- a/src/licensedcode/data/rules/epl-2.0_5.RULE +++ b/src/licensedcode/data/rules/epl-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + EPL-2.0 Eclipse Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_5.yml b/src/licensedcode/data/rules/epl-2.0_5.yml deleted file mode 100644 index 6776e1bfa75..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_50.RULE b/src/licensedcode/data/rules/epl-2.0_50.RULE index ed3fc6f9ef2..d58bc72ff8c 100644 --- a/src/licensedcode/data/rules/epl-2.0_50.RULE +++ b/src/licensedcode/data/rules/epl-2.0_50.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-2.0 +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0, which is available at http://www.eclipse.org/legal/epl-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_50.yml b/src/licensedcode/data/rules/epl-2.0_50.yml deleted file mode 100644 index 3e09087dda5..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_50.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_51.RULE b/src/licensedcode/data/rules/epl-2.0_51.RULE index 55561e98b2f..572d354d358 100644 --- a/src/licensedcode/data/rules/epl-2.0_51.RULE +++ b/src/licensedcode/data/rules/epl-2.0_51.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/Eclipse_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_51.yml b/src/licensedcode/data/rules/epl-2.0_51.yml deleted file mode 100644 index 98f339aaf39..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/epl-2.0_52.RULE b/src/licensedcode/data/rules/epl-2.0_52.RULE index 7a2c617de90..adae1108b4e 100644 --- a/src/licensedcode/data/rules/epl-2.0_52.RULE +++ b/src/licensedcode/data/rules/epl-2.0_52.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EPL-2.0 +--- + https://licenses.nuget.org/EPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_52.yml b/src/licensedcode/data/rules/epl-2.0_52.yml deleted file mode 100644 index 26e01ffe5a7..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EPL-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_53.RULE b/src/licensedcode/data/rules/epl-2.0_53.RULE index 44ac407468d..8cbb0f50951 100644 --- a/src/licensedcode/data/rules/epl-2.0_53.RULE +++ b/src/licensedcode/data/rules/epl-2.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_53.yml b/src/licensedcode/data/rules/epl-2.0_53.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_54.RULE b/src/licensedcode/data/rules/epl-2.0_54.RULE index 29c3e1517d9..ff63d9415b4 100644 --- a/src/licensedcode/data/rules/epl-2.0_54.RULE +++ b/src/licensedcode/data/rules/epl-2.0_54.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EPL-2.0 +--- + LICENSE {{EPL-2.0}} https://spdx.org/licenses/EPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_54.yml b/src/licensedcode/data/rules/epl-2.0_54.yml deleted file mode 100644 index e9b82593293..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EPL-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_55.RULE b/src/licensedcode/data/rules/epl-2.0_55.RULE index a57cdd352f3..16701a823e5 100644 --- a/src/licensedcode/data/rules/epl-2.0_55.RULE +++ b/src/licensedcode/data/rules/epl-2.0_55.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EPL-2.0 +--- + {{EPL-2.0}} https://spdx.org/licenses/EPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_55.yml b/src/licensedcode/data/rules/epl-2.0_55.yml deleted file mode 100644 index e9b82593293..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EPL-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_56.RULE b/src/licensedcode/data/rules/epl-2.0_56.RULE index 50de7ed5434..75bfb751c49 100644 --- a/src/licensedcode/data/rules/epl-2.0_56.RULE +++ b/src/licensedcode/data/rules/epl-2.0_56.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.eclipse.org/legal/epl-2.0/ +--- + * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_56.yml b/src/licensedcode/data/rules/epl-2.0_56.yml deleted file mode 100644 index 16a65bba660..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_56.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.eclipse.org/legal/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_57.RULE b/src/licensedcode/data/rules/epl-2.0_57.RULE index c36d45751e9..51d118b747e 100644 --- a/src/licensedcode/data/rules/epl-2.0_57.RULE +++ b/src/licensedcode/data/rules/epl-2.0_57.RULE @@ -1,2 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +--- + * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_57.yml b/src/licensedcode/data/rules/epl-2.0_57.yml deleted file mode 100644 index f7c0a7d6176..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/epl-2.0_6.RULE b/src/licensedcode/data/rules/epl-2.0_6.RULE index 0bd9cf16123..aec8d2b337d 100644 --- a/src/licensedcode/data/rules/epl-2.0_6.RULE +++ b/src/licensedcode/data/rules/epl-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License - Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_6.yml b/src/licensedcode/data/rules/epl-2.0_6.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_7.RULE b/src/licensedcode/data/rules/epl-2.0_7.RULE index d4e8cb6fdcc..04b30521dbe 100644 --- a/src/licensedcode/data/rules/epl-2.0_7.RULE +++ b/src/licensedcode/data/rules/epl-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +--- + Eclipse Public License - v 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_7.yml b/src/licensedcode/data/rules/epl-2.0_7.yml deleted file mode 100644 index 843684dcb91..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_8.RULE b/src/licensedcode/data/rules/epl-2.0_8.RULE index d95c567ad4d..706ef225c00 100644 --- a/src/licensedcode/data/rules/epl-2.0_8.RULE +++ b/src/licensedcode/data/rules/epl-2.0_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epl-2.0 +is_license_notice: yes +--- + Eclipse Public License - v 2.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ( AGREEMENT ). ANY USE, REPRODUCTION OR DISTRIBUTION diff --git a/src/licensedcode/data/rules/epl-2.0_8.yml b/src/licensedcode/data/rules/epl-2.0_8.yml deleted file mode 100644 index f7c0a7d6176..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/epl-2.0_9.RULE b/src/licensedcode/data/rules/epl-2.0_9.RULE index 236b042e815..82461842f0c 100644 --- a/src/licensedcode/data/rules/epl-2.0_9.RULE +++ b/src/licensedcode/data/rules/epl-2.0_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epl-2.0 +is_license_text: yes +--- + Eclipse Public License - v 2.0 @@ -84,5 +89,4 @@ Exhibit A – Form of Secondary Licenses Notice If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - You may add additional accurate notices of copyright ownership. - + You may add additional accurate notices of copyright ownership. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_9.yml b/src/licensedcode/data/rules/epl-2.0_9.yml deleted file mode 100644 index fe76fecb3f9..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0.RULE index 7b0c778c689..e31cfa47c26 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0.RULE @@ -1,5 +1,13 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/legal/epl-2.0/ +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License 2 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. +and is available at https://www.apache.org/licenses/LICENSE-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0.yml deleted file mode 100644 index d4db98219aa..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/legal/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_1.RULE index a2fa04c7a3e..7afe4f4757c 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_1.RULE @@ -1,7 +1,15 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-2.0 + - https://www.apache.org/licenses/LICENSE-2.0 +--- + * See the NOTICE file(s) distributed with this work for additional * information regarding copyright ownership. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0, or the Apache Software License 2.0 - * which is available at https://www.apache.org/licenses/LICENSE-2.0. + * which is available at https://www.apache.org/licenses/LICENSE-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_1.yml deleted file mode 100644 index f1c1a4e6381..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-2.0 - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_2.RULE index a2ba0e1c2ab..4d327977351 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_2.RULE @@ -1,4 +1,12 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.eclipse.org/legal/epl-2.0 + - https://www.apache.org/licenses/LICENSE-2.0 +--- + * This program and the accompanying materials are made available under the * terms of the Eclipse Public License 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 - * which is available at https://www.apache.org/licenses/LICENSE-2.0. + * which is available at https://www.apache.org/licenses/LICENSE-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_2.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_2.yml deleted file mode 100644 index f1c1a4e6381..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-2.0 - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_3.RULE index 2e9e8cdf954..d935aa3c563 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +--- + You may distribute this program and materials under either the {{Eclipse Public License 2 or the Apache V2.0 License}} as long as you pass through -the exceptions noted above. +the exceptions noted above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_3.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_3.yml deleted file mode 100644 index 0d27fe57036..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_4.RULE index c83bc8846ec..2b7addaba8f 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/ + - https://www.eclipse.org/org/documents/epl-2.0/ +--- + You may distribute this program and materials under either the Eclipse Public License 2 or the Apache V2.0 License as long as you pass through the exceptions noted above. @@ -461,4 +469,4 @@ B. Apache License, Version 2.0 incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_4.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_4.yml deleted file mode 100644 index 5a812ebe010..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/ - - https://www.eclipse.org/org/documents/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_5.RULE index c38d2669ee3..0873648eaeb 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.eclipse.org/ +--- + the terms and conditions of the EPL and Apache License 2.0 still apply to any source code in the Content and such source code may be obtained at https://www.eclipse.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_5.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_5.yml deleted file mode 100644 index 1942a0ea32e..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.eclipse.org/ diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_6.RULE index 7b307ba13ce..15bc20817b2 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.eclipse.org/org/documents/epl-2.0/ +--- + You may distribute this program and materials under either the Eclipse Public License 2 or the Apache V2.0 License as long as you pass through the exceptions noted above. @@ -461,4 +469,4 @@ B. Apache License, Version 2.0 incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_6.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_6.yml deleted file mode 100644 index 3438eecf854..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.eclipse.org/org/documents/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_7.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_7.RULE index fe4a0de1223..0e74c8c5507 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +notes: https://github.com/eclipse/jetty.project/commit/31e5030550e317dfd2cabbec0eb29a7082a1edd9 +--- + // This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 // and Apache License v2.0 which accompanies this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_7.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_7.yml deleted file mode 100644 index 5bae5ca157c..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -notes: https://github.com/eclipse/jetty.project/commit/31e5030550e317dfd2cabbec0eb29a7082a1edd9 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_8.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_8.RULE index e05d6a10b3c..86688046dc1 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +notes: https://github.com/eclipse/jetty.project/commit/31e5030550e317dfd2cabbec0eb29a7082a1edd9 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/legal/epl-2.0 +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0 which is available at https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_8.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_8.yml deleted file mode 100644 index 765786ecf87..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -notes: https://github.com/eclipse/jetty.project/commit/31e5030550e317dfd2cabbec0eb29a7082a1edd9 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_9.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_9.RULE index fd549a06366..f28d7c57b5b 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_9.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-2.0 OR apache-2.0 +is_license_notice: yes +notes: https://github.com/eclipse/jetty.project/commit/31e5030550e317dfd2cabbec0eb29a7082a1edd9 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/legal/epl-2.0 +--- + This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at https://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_9.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_9.yml deleted file mode 100644 index 765786ecf87..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 -is_license_notice: yes -notes: https://github.com/eclipse/jetty.project/commit/31e5030550e317dfd2cabbec0eb29a7082a1edd9 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_and_gpl-2.0_and_others_1.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_and_gpl-2.0_and_others_1.RULE index 428f2a9bde8..860d8a5f04d 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_and_gpl-2.0_and_others_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_and_gpl-2.0_and_others_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception) +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/ + - https://www.eclipse.org/legal/epl-2.0/ + - https://www.gnu.org/software/classpath/license.html +--- + license this program and the accompanying materials are made available under the terms of the eclipse public license 2 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 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_and_gpl-2.0_and_others_1.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_and_gpl-2.0_and_others_1.yml deleted file mode 100644 index 9dcb014121b..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-2.0_and_gpl-2.0_and_others_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception) -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/ - - https://www.eclipse.org/legal/epl-2.0/ - - https://www.gnu.org/software/classpath/license.html 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-exception_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-exception_1.RULE index b5b8ae583d0..47508635dd4 100644 --- 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-exception_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-exception_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/ + - https://www.eclipse.org/legal/epl-2.0/ + - https://www.gnu.org/software/classpath/license.html +--- + License This program and the accompanying materials are made available under the terms of the {{Eclipse Public License 2}} 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. @@ -14,4 +26,4 @@ being redistributed by another party ("Redistributor") and different terms and c apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content -and such source code may be obtained at https://www.eclipse.org +and such source code may be obtained at https://www.eclipse.org \ 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-exception_1.yml 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-exception_1.yml deleted file mode 100644 index abf5945f896..00000000000 --- 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-exception_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 - WITH openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/ - - https://www.eclipse.org/legal/epl-2.0/ - - https://www.gnu.org/software/classpath/license.html 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-exception_2.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-exception_2.RULE index 3cefae38d26..5b833d7b0e9 100644 --- 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-exception_2.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-exception_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/ + - 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 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]. 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-exception_2.yml 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-exception_2.yml deleted file mode 100644 index abf5945f896..00000000000 --- 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-exception_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 - WITH openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/ - - https://www.eclipse.org/legal/epl-2.0/ - - https://www.gnu.org/software/classpath/license.html 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-exception_3.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-exception_3.RULE index a3d2f53b644..be80e5aabac 100644 --- 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-exception_3.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-exception_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/ + - https://www.eclipse.org/legal/epl-2.0/ + - https://www.gnu.org/software/classpath/license.html +--- + License This program and the accompanying materials are made available under the terms of the {{Eclipse Public License 2}} 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. 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-exception_3.yml 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-exception_3.yml deleted file mode 100644 index abf5945f896..00000000000 --- 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-exception_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 - WITH openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/ - - https://www.eclipse.org/legal/epl-2.0/ - - https://www.gnu.org/software/classpath/license.html 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-exception_4.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-exception_4.RULE index 34fce8def81..fcee4e7740e 100644 --- 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-exception_4.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-exception_4.RULE @@ -1,3 +1,15 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://eclipse.org/legal/epl-2.0 + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/ + - https://www.gnu.org/software/classpath/license.html +--- + License This program and the accompanying materials are made available under the terms of the 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-exception_4.yml 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-exception_4.yml deleted file mode 100644 index ff992d2880f..00000000000 --- 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-exception_4.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 - WITH openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://eclipse.org/legal/epl-2.0 - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/ - - https://www.gnu.org/software/classpath/license.html 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-exception_5.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-exception_5.RULE index 284af40db98..78d830d7cc4 100644 --- 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-exception_5.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-exception_5.RULE @@ -1 +1,8 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_tag: yes +is_continuous: yes +--- + SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception \ 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-exception_5.yml 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-exception_5.yml deleted file mode 100644 index 426cc2a48d2..00000000000 --- 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-exception_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 - WITH openjdk-exception -is_license_tag: yes -is_continuous: yes 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-exception_6.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-exception_6.RULE index 86ecbf77505..4256ec80aaa 100644 --- 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-exception_6.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-exception_6.RULE @@ -1 +1,8 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_tag: yes +is_continuous: yes +--- + EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception \ 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-exception_6.yml 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-exception_6.yml deleted file mode 100644 index 426cc2a48d2..00000000000 --- 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-exception_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 - WITH openjdk-exception -is_license_tag: yes -is_continuous: yes diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-20_and_others_1.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-20_and_others_1.RULE index 3df1dcb349f..9f84a636269 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-20_and_others_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-20_and_others_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: (epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception)) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/legal/epl-2.0/ + - https://www.eclipse.org/org/documents/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 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ or the Apache diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-20_and_others_1.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-20_and_others_1.yml deleted file mode 100644 index 99e0cc8f277..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_classpath-exception-20_and_others_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: (epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception)) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/legal/epl-2.0/ - - https://www.eclipse.org/org/documents/epl-2.0/ - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception.RULE index adf33334c75..d340bd2c1f8 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception.RULE @@ -1,3 +1,14 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/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}} which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ @@ -11,4 +22,4 @@ 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] http://openjdk.java.net/legal/assembly-exception.html +[2] http://openjdk.java.net/legal/assembly-exception.html \ 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_openjdk-exception.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception.yml deleted file mode 100644 index f05a06302ab..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 WITH openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/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 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception2.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception2.RULE index ff38a8ca2da..9c847af7047 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception) +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/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 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ or the Apache @@ -23,4 +34,4 @@ SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 [1] https://www.gnu.org/software/classpath/license.html [2] http://openjdk.java.net/legal/assembly-exception.html -SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 \ 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_openjdk-exception2.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception2.yml deleted file mode 100644 index 93b4310837b..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception) -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/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 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception3.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception3.RULE index 9e80cf92c79..7587463a62a 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception3.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/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 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ @@ -13,4 +24,4 @@ Public License, version 2 with the OpenJDK Assembly Exception [2]. [1] https://www.gnu.org/software/classpath/license.html [2] http://openjdk.java.net/legal/assembly-exception.html -SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 +SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 \ 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_openjdk-exception3.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception3.yml deleted file mode 100644 index f05a06302ab..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 WITH openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/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 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception4.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception4.RULE index 09ddaa32ff1..8cb3d32fca5 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception4.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception4.RULE @@ -1,3 +1,15 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception) +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/ + - 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 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception4.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception4.yml deleted file mode 100644 index 5d41906019e..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception4.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception) -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/ - - https://www.eclipse.org/legal/epl-2.0/ - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception5.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception5.RULE index 6bc4baf7946..9815f360f0f 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception5.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception) +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/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 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception5.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception5.yml deleted file mode 100644 index 93b4310837b..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception) -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/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 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception6.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception6.RULE index ed95555a147..5f1f228fe69 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception6.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception6.RULE @@ -1,3 +1,15 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 + WITH openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://eclipse.org/legal/epl-2.0 + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/ + - https://www.gnu.org/software/classpath/license.html +--- + License This program and the accompanying materials are made available under the terms of the @@ -20,4 +32,4 @@ another party ("Redistributor") and different terms and conditions may apply to the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL and Apache License 2.0 still apply to any source code in the Content and such source code may be obtained at -"https://www.eclipse.org/">https://www.eclipse.org +"https://www.eclipse.org/">https://www.eclipse.org \ 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_openjdk-exception6.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception6.yml deleted file mode 100644 index 1156cd34253..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR gpl-2.0 WITH classpath-exception-2.0 OR gpl-2.0 WITH openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://eclipse.org/legal/epl-2.0 - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/ - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception7.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception7.RULE index fa55f09ec5d..692e5688bec 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception7.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception7.RULE @@ -1,3 +1,14 @@ +--- +license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception) +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - https://eclipse.org/legal/epl-2.0 + - https://www.apache.org/licenses/LICENSE-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 which accompanies this distribution and is available at https://eclipse.org/legal/epl-2.0 or the diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception7.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception7.yml deleted file mode 100644 index 03850ec0d46..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception7.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception) -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - https://eclipse.org/legal/epl-2.0 - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others.RULE index b7762689cee..0ecf0631902 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others.RULE @@ -1,3 +1,15 @@ +--- +license_expression: (epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception)) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception +minimum_coverage: 80 +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/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 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ or the Apache @@ -18,4 +30,4 @@ Subject to the following notices: 2. Pugixml is provided under the pugixml license below. 3. Libauxv is provided under the libauxv license below. 4. config.sub and config.guess are provided under the GPL v3.0 with the - Autoconf exception (see below). + Autoconf exception (see below). \ 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_openjdk-exception_and_others.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others.yml deleted file mode 100644 index 7360ed4c588..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: (epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception)) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception -minimum_coverage: 80 -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/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 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others2.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others2.RULE index f3b334434eb..5f608d6b496 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: (epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception)) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html + - http://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.eclipse.org/legal/epl-2.0/ + - https://www.eclipse.org/org/documents/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 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ or the Apache diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others2.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others2.yml deleted file mode 100644 index 4d610c83666..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: (epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception)) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html - - http://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.eclipse.org/legal/epl-2.0/ - - https://www.eclipse.org/org/documents/epl-2.0/ - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others3.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others3.RULE index ad5b2c632c9..157874ead51 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others3.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ((epl-2.0 OR apache-2.0) OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception)) AND unicode AND public-domain AND mit AND zlib AND zlib +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/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 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ @@ -26,4 +37,4 @@ Subject to the following notices: You may distribute this program and materials under either the Eclipse Public License 2 or the Apache V2.0 License as long as you pass through -the exceptions noted above. +the exceptions noted above. \ 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_openjdk-exception_and_others3.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others3.yml deleted file mode 100644 index bead7f40685..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ((epl-2.0 OR apache-2.0) OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception)) AND unicode AND public-domain AND mit AND zlib AND zlib -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/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 diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others4.RULE b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others4.RULE index f95a7079568..c66f18b43d8 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others4.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: (epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 + WITH openjdk-exception)) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/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 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]. diff --git a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others4.yml b/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others4.yml deleted file mode 100644 index 02212c6c066..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_apache-2.0_or_gpl-2.0_with_openjdk-exception_and_others4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: (epl-2.0 OR apache-2.0 OR (gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 - WITH openjdk-exception)) AND bsd-new AND mit AND gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/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 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE index c64c5606366..868b4934612 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html +--- + /***** BEGIN LICENSE BLOCK ***** * Version: EPL 2.0/GPL 2.0/LGPL 2.1 * diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index f083db5d8fc..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.RULE index 5ad696470b3..abfa2090b41 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html + - http://www.gnu.org/licenses/gpl-2.0-standalone.html + - http://www.gnu.org/licenses/lgpl-2.1-standalone.html +--- + GPL-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.yml deleted file mode 100644 index 11f038ad9bf..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html - - http://www.gnu.org/licenses/gpl-2.0-standalone.html - - http://www.gnu.org/licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.RULE index 2c41e31d790..ad7460903a2 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed to you under three licenses - the EPL 2.0, GPL 2 and LGPL 2.1. Some components have other licenses and copyright. See the [COPYING](COPYING) file for more specifics. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.yml deleted file mode 100644 index 57bc0f077ee..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_12.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_12.RULE index 3233104c118..e98f0d7dec3 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_12.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html +--- + /***** BEGIN LICENSE BLOCK ***** * Version: EPL 2.0/GPL 2.0/LGPL 2.1 * diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_12.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_12.yml deleted file mode 100644 index f083db5d8fc..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_13.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_13.RULE index 974d5624e8d..96d0d484e20 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_13.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_13.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_13.yml deleted file mode 100644 index e40959d4c8f..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_14.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_14.RULE index e7360909210..9791aaa5a5f 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_14.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_14.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 90 +notes: reference to epl1 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v10.html +--- + /***** BEGIN LICENSE BLOCK ***** * Version: EPL 2.0/GPL 2.0/LGPL 2.1 * @@ -22,4 +31,4 @@ * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the EPL, the GPL or the LGPL. - ***** END LICENSE BLOCK *****/ + ***** END LICENSE BLOCK *****/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_14.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_14.yml deleted file mode 100644 index c1f5bb4e907..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 90 -notes: reference to epl1 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_15.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_15.RULE index 0fe6ef2f299..511c66e1652 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_15.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_15.RULE @@ -1,7 +1,14 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + This * code is released under a tri EPL/GPL/LGPL license. You can use it, * redistribute it and/or modify it under the terms of the: * * Eclipse Public License version 2.0 * GNU General Public License version 2 - * GNU Lesser General Public License version 2.1 + * GNU Lesser General Public License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_15.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_15.yml deleted file mode 100644 index 672dd4b37ad..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_16.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_16.RULE index f9ac9e0242c..5614241d8f5 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_16.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_16.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 90 +notes: this has damaged references to EPL 1.0 likely a technical mistake. From jRuby +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html +--- + **** BEGIN LICENSE BLOCK ***** * Version: EPL 1.0/GPL 2.0/LGPL 2.1 * @@ -23,4 +32,4 @@ * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the EPL, the GPL or the LGPL. - ***** END LICENSE BLOCK *****/ + ***** END LICENSE BLOCK *****/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_16.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_16.yml deleted file mode 100644 index 6a1d73dc196..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 90 -notes: this has damaged references to EPL 1.0 likely a technical mistake. From jRuby -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_17.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_17.RULE index 7e43e5b0977..c8176511806 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_17.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_17.RULE @@ -1,3 +1,18 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 90 +notes: reference to cpl2 +ignorable_copyrights: + - Copyright (c) 2009 Yoko Harada +ignorable_holders: + - Yoko Harada +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +ignorable_emails: + - yokolet@gmail.com +--- + * **** BEGIN LICENSE BLOCK ***** * Version: EPL 2.0/GPL 2.0/LGPL 2.1 * @@ -24,4 +39,4 @@ * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the EPL, the GPL or the LGPL. -* **** END LICENSE BLOCK ***** +* **** END LICENSE BLOCK ***** \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_17.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_17.yml deleted file mode 100644 index be47919c4a4..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_17.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 90 -notes: reference to cpl2 -ignorable_copyrights: - - Copyright (c) 2009 Yoko Harada -ignorable_holders: - - Yoko Harada -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v10.html -ignorable_emails: - - yokolet@gmail.com diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_18.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_18.RULE index a0348326b7f..a158ea0d55c 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_18.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_18.RULE @@ -1,3 +1,15 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: this is in the JRuby pom.rb +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html + - https://www.gnu.org/licenses/gpl-2.0-standalone.html + - https://www.gnu.org/licenses/lgpl-2.1-standalone.html +--- + license 'GPL-2.0', 'https://www.gnu.org/licenses/gpl-2.0-standalone.html' license 'LGPL-2.1', 'https://www.gnu.org/licenses/lgpl-2.1-standalone.html' - license 'EPL-2.0', 'http://www.eclipse.org/legal/epl-v20.html' + license 'EPL-2.0', 'http://www.eclipse.org/legal/epl-v20.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_18.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_18.yml deleted file mode 100644 index 1b73890d385..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_18.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: this is in the JRuby pom.rb -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html - - https://www.gnu.org/licenses/gpl-2.0-standalone.html - - https://www.gnu.org/licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_19.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_19.RULE index a7684b5aaa3..6b71aec2f80 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_19.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_19.RULE @@ -1,3 +1,13 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html + - https://www.gnu.org/licenses/gpl-2.0-standalone.html + - https://www.gnu.org/licenses/lgpl-2.1-standalone.html +--- + GPL-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_19.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_19.yml deleted file mode 100644 index 96630a260f5..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html - - https://www.gnu.org/licenses/gpl-2.0-standalone.html - - https://www.gnu.org/licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE index 11bd5faa828..95e60c38a25 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 75 +--- + * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), @@ -8,4 +15,4 @@ * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under - * the terms of any one of the EPL, the GPL or the LGPL. + * the terms of any one of the EPL, the GPL or the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index 88e3913bd74..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 75 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE index 52dc934eda7..de63f797a86 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE @@ -1 +1,7 @@ -EPL 2.0/GPL 2.0/LGPL 2.1 +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + +EPL 2.0/GPL 2.0/LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.yml deleted file mode 100644 index c6c6742779e..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_4.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_4.RULE index fa600c8f93e..dab1c4ef89b 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_4.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + released under a tri EPL/GPL/LGPL license. You can use it, redistribute it and/or modify it under the terms of the: diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_4.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_4.yml deleted file mode 100644 index 672dd4b37ad..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_5.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_5.RULE index 970ba528fe8..ea0aa65f4f8 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_5.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + Eclipse Public License version 2.0 OR GNU General Public License version 2 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_5.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_5.yml deleted file mode 100644 index e40959d4c8f..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_6.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_6.RULE index 1bbefdfd6ce..5faea0a6d3a 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_6.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_6.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_reference: yes +relevance: 90 +--- + EPL/GPL/LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_6.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_6.yml deleted file mode 100644 index fb1241d0a60..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7.RULE index 4edefb89a5b..43fbf98afb9 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_reference: yes +relevance: 90 +--- + covered by JRuby's licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7.yml deleted file mode 100644 index fb1241d0a60..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7_NOT.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7_NOT.RULE index bba07950947..091d9f3f8c3 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7_NOT.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7_NOT.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: some comment about a license +--- + not covered by JRuby's licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7_NOT.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7_NOT.yml deleted file mode 100644 index 939cedf7106..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_7_NOT.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: some comment about a license diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_8.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_8.RULE index 4409f485d77..a22a2cb7288 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_8.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_8.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_reference: yes +relevance: 90 +--- + JRuby's licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_8.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_8.yml deleted file mode 100644 index fb1241d0a60..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_9.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_9.RULE index 8937ae08541..b31db8fdf72 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_9.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_9.RULE @@ -1,3 +1,15 @@ +--- +license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: this is in the JRuby pom.rb +ignorable_urls: + - http://www.eclipse.org/legal/epl-v20.html + - http://www.gnu.org/licenses/gpl-2.0-standalone.html + - http://www.gnu.org/licenses/lgpl-2.1-standalone.html +--- + license 'GPL-2.0', 'http://www.gnu.org/licenses/gpl-2.0-standalone.html' license 'LGPL-2.1', 'http://www.gnu.org/licenses/lgpl-2.1-standalone.html' - license 'EPL-2.0', 'http://www.eclipse.org/legal/epl-v20.html' + license 'EPL-2.0', 'http://www.eclipse.org/legal/epl-v20.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_9.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_9.yml deleted file mode 100644 index 455ca8c2d85..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_9.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: this is in the JRuby pom.rb -ignorable_urls: - - http://www.eclipse.org/legal/epl-v20.html - - http://www.gnu.org/licenses/gpl-2.0-standalone.html - - http://www.gnu.org/licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_1.RULE index 662b571fd27..274f77a9f04 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 OR lgpl-2.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/lgpl.html + - https://www.eclipse.org/legal/epl-2.0/ +--- + Eclipse Public License - v 2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_1.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_1.yml deleted file mode 100644 index 1d01c3ef8c7..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 OR lgpl-2.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/lgpl.html - - https://www.eclipse.org/legal/epl-2.0/ diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_2.RULE index f7bc891ba50..7bdcaa8547a 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 OR lgpl-2.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://www.eclipse.org/legal/cpl-v10.html +--- + /***** BEGIN LICENSE BLOCK ***** * Version: EPL 2.0/GPL 2.0/LGPL 2.1 * diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_2.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_2.yml deleted file mode 100644 index da0efa4c827..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 OR lgpl-2.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://www.eclipse.org/legal/cpl-v10.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_3.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_3.RULE index 92715b891b1..ba3a6990c54 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 OR lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: Seen in https://github.com/oracle/truffleruby/blob/c79719ba377def0d2f528a7342b4c844574954b1/LICENCE.md +--- + made available to you under the terms of any one of the following three licenses: Eclipse Public License version 2.0, or diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_3.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_3.yml deleted file mode 100644 index a8be86f72bd..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 OR lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: Seen in https://github.com/oracle/truffleruby/blob/c79719ba377def0d2f528a7342b4c844574954b1/LICENCE.md diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_4.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_4.RULE index ecd6bb620e9..b8e1aa0a3c5 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 OR lgpl-2.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - https://www.eclipse.org/legal/epl-2.0/ + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + Eclipse Public License - v 2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_4.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_4.yml deleted file mode 100644 index af426b4d2fe..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_or_lgpl-2.1_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 OR lgpl-2.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - https://www.eclipse.org/legal/epl-2.0/ - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0.RULE index 51385348915..9a52ef11fb2 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://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 v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0.yml deleted file mode 100644 index 3171f3c4571..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.eclipse.org/legal/epl-2.0 - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_1.RULE index aca2b86111f..6bfc0f4f8dc 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://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 v. 2.0 which is available at http://www.eclipse.org/legal/epl-2.0, or GNU General Public License, version 2 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_1.yml deleted file mode 100644 index c4afafb5776..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-2.0 - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_2.RULE index 1f397302897..eaad12e9fa1 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://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 v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_2.yml deleted file mode 100644 index c4afafb5776..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.eclipse.org/legal/epl-2.0 - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_3.RULE index b8bc3cd7822..5b4233696e6 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - 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 v. 2.0 which is available at https://www.eclipse.org/legal/epl-2.0, or GNU General Public License, version 2 diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 4ee294c4a7d..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.eclipse.org/legal/epl-2.0 - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE index 9b641c25425..24382741dde 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/software/classpath/license.html +--- + 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, diff --git a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_4.yml deleted file mode 100644 index d7da7914651..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_gpl-2.0_with_classpath-exception-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: epl-2.0 OR gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/epl-2.0_or_ibmpl-1.0_1.RULE b/src/licensedcode/data/rules/epl-2.0_or_ibmpl-1.0_1.RULE index 63d65fddc34..70d5c0911a7 100644 --- a/src/licensedcode/data/rules/epl-2.0_or_ibmpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_or_ibmpl-1.0_1.RULE @@ -1 +1,7 @@ -released under a dual Eclipse Public license (EPL 2.0) and IBM Public License (IPL 1.0) \ No newline at end of file +--- +license_expression: epl-2.0 OR ibmpl-1.0 +is_license_notice: yes +relevance: 100 +--- + +released under a dual Eclipse Public license (EPL 2.0) and IBM Public License (IPL 1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_or_ibmpl-1.0_1.yml b/src/licensedcode/data/rules/epl-2.0_or_ibmpl-1.0_1.yml deleted file mode 100644 index 362bc078c07..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_or_ibmpl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 OR ibmpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/epl-2.0_url_1.RULE b/src/licensedcode/data/rules/epl-2.0_url_1.RULE index 56163b84fae..a6086c875a6 100644 --- a/src/licensedcode/data/rules/epl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/epl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/epl-2.0 +--- + https://spdx.org/licenses/epl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_url_1.yml b/src/licensedcode/data/rules/epl-2.0_url_1.yml deleted file mode 100644 index b2190e9fee4..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_url_2.RULE b/src/licensedcode/data/rules/epl-2.0_url_2.RULE index 741d05bca28..e2eeff82355 100644 --- a/src/licensedcode/data/rules/epl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/epl-2.0.html +--- + https://spdx.org/licenses/epl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_url_2.yml b/src/licensedcode/data/rules/epl-2.0_url_2.yml deleted file mode 100644 index 46f224d52ff..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/epl-2.0.html diff --git a/src/licensedcode/data/rules/epl-2.0_url_glc_156.RULE b/src/licensedcode/data/rules/epl-2.0_url_glc_156.RULE index 574b9a9cc2f..a1d92c528e2 100644 --- a/src/licensedcode/data/rules/epl-2.0_url_glc_156.RULE +++ b/src/licensedcode/data/rules/epl-2.0_url_glc_156.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/epl-2.0 +--- + http://www.opensource.org/licenses/epl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_url_glc_156.yml b/src/licensedcode/data/rules/epl-2.0_url_glc_156.yml deleted file mode 100644 index c295ea5777c..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_url_glc_156.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_url_glc_157.RULE b/src/licensedcode/data/rules/epl-2.0_url_glc_157.RULE index 834a28e9761..8bb6e2d79a1 100644 --- a/src/licensedcode/data/rules/epl-2.0_url_glc_157.RULE +++ b/src/licensedcode/data/rules/epl-2.0_url_glc_157.RULE @@ -1 +1,9 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/epl-2.0 +--- + https://www.opensource.org/licenses/epl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_url_glc_157.yml b/src/licensedcode/data/rules/epl-2.0_url_glc_157.yml deleted file mode 100644 index 80c61650991..00000000000 --- a/src/licensedcode/data/rules/epl-2.0_url_glc_157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/epl-2.0 diff --git a/src/licensedcode/data/rules/epl_no-version.RULE b/src/licensedcode/data/rules/epl_no-version.RULE index f052076abde..eb51485d0db 100644 --- a/src/licensedcode/data/rules/epl_no-version.RULE +++ b/src/licensedcode/data/rules/epl_no-version.RULE @@ -1 +1,7 @@ -Eclipse Public License +--- +license_expression: epl-1.0 +is_license_reference: yes +relevance: 98 +--- + +Eclipse Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl_no-version.yml b/src/licensedcode/data/rules/epl_no-version.yml deleted file mode 100644 index 9eeccff7dbb..00000000000 --- a/src/licensedcode/data/rules/epl_no-version.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_reference: yes -relevance: 98 diff --git a/src/licensedcode/data/rules/epo-osl-2005.1.RULE b/src/licensedcode/data/rules/epo-osl-2005.1.RULE index c852bbb236e..f628f767d14 100644 --- a/src/licensedcode/data/rules/epo-osl-2005.1.RULE +++ b/src/licensedcode/data/rules/epo-osl-2005.1.RULE @@ -1 +1,9 @@ +--- +license_expression: epo-osl-2005.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ephx.sourceforge.net/viewlicence.html +--- + http://ephx.sourceforge.net/viewlicence.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epo-osl-2005.1.yml b/src/licensedcode/data/rules/epo-osl-2005.1.yml deleted file mode 100644 index 8e150c78fff..00000000000 --- a/src/licensedcode/data/rules/epo-osl-2005.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: epo-osl-2005.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ephx.sourceforge.net/viewlicence.html diff --git a/src/licensedcode/data/rules/erlangpl-1.1.RULE b/src/licensedcode/data/rules/erlangpl-1.1.RULE index d5c7da5bcb0..51e7200096b 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.erlang.org/EPLICENSE +--- + http://www.erlang.org/EPLICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1.yml b/src/licensedcode/data/rules/erlangpl-1.1.yml deleted file mode 100644 index a7e9ebdf296..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.erlang.org/EPLICENSE diff --git a/src/licensedcode/data/rules/erlangpl-1.1_1.RULE b/src/licensedcode/data/rules/erlangpl-1.1_1.RULE index 13453627c71..3c540fbaf37 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +relevance: 100 +--- + Erlang Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_1.yml b/src/licensedcode/data/rules/erlangpl-1.1_1.yml deleted file mode 100644 index cc3578d19e3..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/erlangpl-1.1_10.RULE b/src/licensedcode/data/rules/erlangpl-1.1_10.RULE index 72d9446f01a..0cc637c2a48 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_10.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ErlPL-1.1 +--- + https://licenses.nuget.org/ErlPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_10.yml b/src/licensedcode/data/rules/erlangpl-1.1_10.yml deleted file mode 100644 index a46f1d61f4c..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ErlPL-1.1 diff --git a/src/licensedcode/data/rules/erlangpl-1.1_11.RULE b/src/licensedcode/data/rules/erlangpl-1.1_11.RULE index 2a77f4dcaef..69d9d3a29ee 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_11.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_11.RULE @@ -1 +1,7 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ErlPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_11.yml b/src/licensedcode/data/rules/erlangpl-1.1_11.yml deleted file mode 100644 index cc3578d19e3..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/erlangpl-1.1_12.RULE b/src/licensedcode/data/rules/erlangpl-1.1_12.RULE index 008ef17bbec..328a38e06f6 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_12.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ErlPL-1.1 +--- + {{ErlPL-1.1}} https://spdx.org/licenses/ErlPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_12.yml b/src/licensedcode/data/rules/erlangpl-1.1_12.yml deleted file mode 100644 index 33d9d130f97..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ErlPL-1.1 diff --git a/src/licensedcode/data/rules/erlangpl-1.1_13.RULE b/src/licensedcode/data/rules/erlangpl-1.1_13.RULE index fa686be8bf1..c2bff418e28 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_13.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ErlPL-1.1 +--- + LICENSE {{ErlPL-1.1}} https://spdx.org/licenses/ErlPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_13.yml b/src/licensedcode/data/rules/erlangpl-1.1_13.yml deleted file mode 100644 index 33d9d130f97..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ErlPL-1.1 diff --git a/src/licensedcode/data/rules/erlangpl-1.1_2.RULE b/src/licensedcode/data/rules/erlangpl-1.1_2.RULE index fb4a7040238..3287542dda9 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: erlangpl-1.1 +is_license_notice: yes +ignorable_copyrights: + - Copyright 1999, Ericsson Utvecklings AB. +ignorable_holders: + - Ericsson Utvecklings AB. +ignorable_urls: + - http://www.erlang.org/ +--- + The contents of this file are subject to the Erlang Public License, Version 1.1, (the "License"); you may not use this file except in compliance with the License. You should have received a copy of the diff --git a/src/licensedcode/data/rules/erlangpl-1.1_2.yml b/src/licensedcode/data/rules/erlangpl-1.1_2.yml deleted file mode 100644 index 940e3259af9..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_notice: yes -ignorable_copyrights: - - Copyright 1999, Ericsson Utvecklings AB. -ignorable_holders: - - Ericsson Utvecklings AB. -ignorable_urls: - - http://www.erlang.org/ diff --git a/src/licensedcode/data/rules/erlangpl-1.1_3.RULE b/src/licensedcode/data/rules/erlangpl-1.1_3.RULE index 91df13c9c77..ee0d512f74d 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: erlangpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.erlang.org/ +--- + The contents of this file are subject to the Erlang Public License, Version 1.1, (the "License"); you may not use this file except in compliance with the License. You should have received a copy of the diff --git a/src/licensedcode/data/rules/erlangpl-1.1_3.yml b/src/licensedcode/data/rules/erlangpl-1.1_3.yml deleted file mode 100644 index a3c12d2999b..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.erlang.org/ diff --git a/src/licensedcode/data/rules/erlangpl-1.1_4.RULE b/src/licensedcode/data/rules/erlangpl-1.1_4.RULE index 1bef95b453e..66a1019b6a2 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_4.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ErlPL-1.1 Erlang Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_4.yml b/src/licensedcode/data/rules/erlangpl-1.1_4.yml deleted file mode 100644 index ab17b878ba7..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/erlangpl-1.1_5.RULE b/src/licensedcode/data/rules/erlangpl-1.1_5.RULE index 84435fcb5f0..faf90c11835 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_5.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Erlang Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_5.yml b/src/licensedcode/data/rules/erlangpl-1.1_5.yml deleted file mode 100644 index 1d5bf5645bb..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/erlangpl-1.1_6.RULE b/src/licensedcode/data/rules/erlangpl-1.1_6.RULE index fbcac4f75c8..8cb1f8ff61b 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_6.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Erlang Public License v1.1 ErlPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_6.yml b/src/licensedcode/data/rules/erlangpl-1.1_6.yml deleted file mode 100644 index 1d5bf5645bb..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/erlangpl-1.1_7.RULE b/src/licensedcode/data/rules/erlangpl-1.1_7.RULE index 03977a7cf5b..b4ae13456d5 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_7.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: erlangpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ErlPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_7.yml b/src/licensedcode/data/rules/erlangpl-1.1_7.yml deleted file mode 100644 index b05e5ead1e4..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/erlangpl-1.1_8.RULE b/src/licensedcode/data/rules/erlangpl-1.1_8.RULE index 05330ee76e0..2449f7e864c 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_8.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: erlangpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Erlang Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_8.yml b/src/licensedcode/data/rules/erlangpl-1.1_8.yml deleted file mode 100644 index b05e5ead1e4..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/erlangpl-1.1_9.RULE b/src/licensedcode/data/rules/erlangpl-1.1_9.RULE index 1c7863423a5..7097e25a25a 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_9.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: erlangpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ErlPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_9.yml b/src/licensedcode/data/rules/erlangpl-1.1_9.yml deleted file mode 100644 index b05e5ead1e4..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/erlangpl-1.1_url_1.RULE b/src/licensedcode/data/rules/erlangpl-1.1_url_1.RULE index d870996ab9d..505509d1021 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/erlpl-1.1 +--- + https://spdx.org/licenses/erlpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_url_1.yml b/src/licensedcode/data/rules/erlangpl-1.1_url_1.yml deleted file mode 100644 index 5dfbe61117f..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/erlpl-1.1 diff --git a/src/licensedcode/data/rules/erlangpl-1.1_url_2.RULE b/src/licensedcode/data/rules/erlangpl-1.1_url_2.RULE index 4778e50ee6f..85299e386d1 100644 --- a/src/licensedcode/data/rules/erlangpl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/erlangpl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/erlpl-1.1.html +--- + https://spdx.org/licenses/erlpl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/erlangpl-1.1_url_2.yml b/src/licensedcode/data/rules/erlangpl-1.1_url_2.yml deleted file mode 100644 index c7bfcbe4dce..00000000000 --- a/src/licensedcode/data/rules/erlangpl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/erlpl-1.1.html diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_1.RULE b/src/licensedcode/data/rules/etalab-2.0-fr_1.RULE index 38cd1ff3548..b14457fe57a 100644 --- a/src/licensedcode/data/rules/etalab-2.0-fr_1.RULE +++ b/src/licensedcode/data/rules/etalab-2.0-fr_1.RULE @@ -1 +1,9 @@ -{{ https://licenses.nuget.org/etalab-2.0 }} +--- +license_expression: etalab-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/etalab-2.0 +--- + +{{ https://licenses.nuget.org/etalab-2.0 }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_1.yml b/src/licensedcode/data/rules/etalab-2.0-fr_1.yml deleted file mode 100644 index 7a9a43fefe5..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0-fr_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/etalab-2.0 diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_2.RULE b/src/licensedcode/data/rules/etalab-2.0-fr_2.RULE index 0eaeb8464ee..328685f493a 100644 --- a/src/licensedcode/data/rules/etalab-2.0-fr_2.RULE +++ b/src/licensedcode/data/rules/etalab-2.0-fr_2.RULE @@ -1 +1,7 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/{{etalab-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_2.yml b/src/licensedcode/data/rules/etalab-2.0-fr_2.yml deleted file mode 100644 index 192a5cb5a5d..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0-fr_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_3.RULE b/src/licensedcode/data/rules/etalab-2.0-fr_3.RULE index 7e7d63f86a0..73e591a2543 100644 --- a/src/licensedcode/data/rules/etalab-2.0-fr_3.RULE +++ b/src/licensedcode/data/rules/etalab-2.0-fr_3.RULE @@ -1 +1,9 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/etalab-2.0 +--- + LICENSE {{etalab-2.0}} https://spdx.org/licenses/etalab-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_3.yml b/src/licensedcode/data/rules/etalab-2.0-fr_3.yml deleted file mode 100644 index abaaa9fc453..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0-fr_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/etalab-2.0 diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_4.RULE b/src/licensedcode/data/rules/etalab-2.0-fr_4.RULE index 900342e5bfb..2680973cff9 100644 --- a/src/licensedcode/data/rules/etalab-2.0-fr_4.RULE +++ b/src/licensedcode/data/rules/etalab-2.0-fr_4.RULE @@ -1 +1,9 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/etalab-2.0 +--- + {{etalab-2.0}} https://spdx.org/licenses/etalab-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_4.yml b/src/licensedcode/data/rules/etalab-2.0-fr_4.yml deleted file mode 100644 index abaaa9fc453..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0-fr_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/etalab-2.0 diff --git a/src/licensedcode/data/rules/etalab-2.0_1.RULE b/src/licensedcode/data/rules/etalab-2.0_1.RULE index f4e7c7f346b..ede9914f71c 100644 --- a/src/licensedcode/data/rules/etalab-2.0_1.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.etalab.gouv.fr/licence-ouverte-open-licence +--- + See https://www.etalab.gouv.fr/licence-ouverte-open-licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_1.yml b/src/licensedcode/data/rules/etalab-2.0_1.yml deleted file mode 100644 index b5b4e1df085..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.etalab.gouv.fr/licence-ouverte-open-licence diff --git a/src/licensedcode/data/rules/etalab-2.0_10.RULE b/src/licensedcode/data/rules/etalab-2.0_10.RULE index adf23fb38ca..a602b3ac47c 100644 --- a/src/licensedcode/data/rules/etalab-2.0_10.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: etalab-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Etalab Open License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_10.yml b/src/licensedcode/data/rules/etalab-2.0_10.yml deleted file mode 100644 index 9ed0759a965..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: etalab-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/etalab-2.0_11.RULE b/src/licensedcode/data/rules/etalab-2.0_11.RULE index ffa46ac4411..743a6f6d94f 100644 --- a/src/licensedcode/data/rules/etalab-2.0_11.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: etalab-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: etalab-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_11.yml b/src/licensedcode/data/rules/etalab-2.0_11.yml deleted file mode 100644 index 9ed0759a965..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: etalab-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/etalab-2.0_12.RULE b/src/licensedcode/data/rules/etalab-2.0_12.RULE index 11b43278e61..91a5d425573 100644 --- a/src/licensedcode/data/rules/etalab-2.0_12.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + etalab-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_12.yml b/src/licensedcode/data/rules/etalab-2.0_12.yml deleted file mode 100644 index 3fc3236ec06..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/etalab-2.0_13.RULE b/src/licensedcode/data/rules/etalab-2.0_13.RULE index e50a5966df9..18166e8de2e 100644 --- a/src/licensedcode/data/rules/etalab-2.0_13.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: etalab-2.0 AND unknown-license-reference +is_license_notice: yes +relevance: 80 +referenced_filenames: + - LICENSE.md +--- + This repository is published under the {{[Open License 2.0]}}(LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_13.yml b/src/licensedcode/data/rules/etalab-2.0_13.yml deleted file mode 100644 index 9e07bc9266f..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: etalab-2.0 AND unknown-license-reference -is_license_notice: yes -relevance: 80 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/etalab-2.0_2.RULE b/src/licensedcode/data/rules/etalab-2.0_2.RULE index 2409fc9b629..9a433a4b858 100644 --- a/src/licensedcode/data/rules/etalab-2.0_2.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_2.RULE @@ -1,2 +1,11 @@ +--- +license_expression: etalab-2.0 +is_license_notice: yes +relevance: 100 +notes: language is fr +ignorable_urls: + - https://www.etalab.gouv.fr/licence-ouverte-open-licence +--- + Les données, disponibles dans le répertoire data sont publiées sous la Licence Ouverte 2.0. See https://www.etalab.gouv.fr/licence-ouverte-open-licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_2.yml b/src/licensedcode/data/rules/etalab-2.0_2.yml deleted file mode 100644 index 4183c558731..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: etalab-2.0 -is_license_notice: yes -relevance: 100 -notes: language is fr -ignorable_urls: - - https://www.etalab.gouv.fr/licence-ouverte-open-licence diff --git a/src/licensedcode/data/rules/etalab-2.0_3.RULE b/src/licensedcode/data/rules/etalab-2.0_3.RULE index d5e93a43b0f..1008992eb70 100644 --- a/src/licensedcode/data/rules/etalab-2.0_3.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_3.RULE @@ -1 +1,8 @@ +--- +license_expression: etalab-2.0 +is_license_notice: yes +relevance: 100 +notes: language is fr +--- + Les données, disponibles dans le répertoire data sont publiées sous la Licence Ouverte 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_3.yml b/src/licensedcode/data/rules/etalab-2.0_3.yml deleted file mode 100644 index 0c35e4f3a37..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: etalab-2.0 -is_license_notice: yes -relevance: 100 -notes: language is fr diff --git a/src/licensedcode/data/rules/etalab-2.0_4.RULE b/src/licensedcode/data/rules/etalab-2.0_4.RULE index 6b39d7fcd2b..7ed931ee642 100644 --- a/src/licensedcode/data/rules/etalab-2.0_4.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_4.RULE @@ -1 +1,8 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +relevance: 80 +notes: language is fr +--- + Licence Ouverte 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_4.yml b/src/licensedcode/data/rules/etalab-2.0_4.yml deleted file mode 100644 index 74b4e0d17cf..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -relevance: 80 -notes: language is fr diff --git a/src/licensedcode/data/rules/etalab-2.0_5.RULE b/src/licensedcode/data/rules/etalab-2.0_5.RULE index a1d98659626..1365733e8fa 100644 --- a/src/licensedcode/data/rules/etalab-2.0_5.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + {{Etalab Open License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_5.yml b/src/licensedcode/data/rules/etalab-2.0_5.yml deleted file mode 100644 index 3af1f9eb120..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/etalab-2.0_6.RULE b/src/licensedcode/data/rules/etalab-2.0_6.RULE index 0c5955082bb..754e561dc54 100644 --- a/src/licensedcode/data/rules/etalab-2.0_6.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: {{Etalab Open License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_6.yml b/src/licensedcode/data/rules/etalab-2.0_6.yml deleted file mode 100644 index 3af1f9eb120..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/etalab-2.0_7.RULE b/src/licensedcode/data/rules/etalab-2.0_7.RULE index 36ecfeceffb..897c1d7df55 100644 --- a/src/licensedcode/data/rules/etalab-2.0_7.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + etalab-2.0 {{Etalab Open License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_7.yml b/src/licensedcode/data/rules/etalab-2.0_7.yml deleted file mode 100644 index 3af1f9eb120..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/etalab-2.0_8.RULE b/src/licensedcode/data/rules/etalab-2.0_8.RULE index 5dc4960b229..54664ddcf32 100644 --- a/src/licensedcode/data/rules/etalab-2.0_8.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: etalab-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Etalab Open License 2.0 etalab-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_8.yml b/src/licensedcode/data/rules/etalab-2.0_8.yml deleted file mode 100644 index 3af1f9eb120..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: etalab-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/etalab-2.0_9.RULE b/src/licensedcode/data/rules/etalab-2.0_9.RULE index e8562f06ee9..271dcdc9d09 100644 --- a/src/licensedcode/data/rules/etalab-2.0_9.RULE +++ b/src/licensedcode/data/rules/etalab-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: etalab-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: etalab-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0_9.yml b/src/licensedcode/data/rules/etalab-2.0_9.yml deleted file mode 100644 index 9ed0759a965..00000000000 --- a/src/licensedcode/data/rules/etalab-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: etalab-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eu-datagrid.RULE b/src/licensedcode/data/rules/eu-datagrid.RULE index 33794bea6e8..3e519bd238d 100644 --- a/src/licensedcode/data/rules/eu-datagrid.RULE +++ b/src/licensedcode/data/rules/eu-datagrid.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://eu-datagrid.web.cern.ch/eu-datagrid/license.html +--- + http://eu-datagrid.web.cern.ch/eu-datagrid/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid.SPDX.RULE b/src/licensedcode/data/rules/eu-datagrid.SPDX.RULE index ebbbb41e558..f7b80f61c28 100644 --- a/src/licensedcode/data/rules/eu-datagrid.SPDX.RULE +++ b/src/licensedcode/data/rules/eu-datagrid.SPDX.RULE @@ -1,3 +1,21 @@ +--- +license_expression: eu-datagrid +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2001 EU DataGrid +ignorable_holders: + - EU DataGrid +ignorable_authors: + - hep-project-grid-edg-license@cern.ch + - the EU DataGrid (http://www.eu-datagrid.org/) +ignorable_urls: + - http://www.eu-datagrid.org/ +ignorable_emails: + - hep-project-grid-edg-license@cern.ch +--- + EU DataGrid Software License Copyright (c) 2001 EU DataGrid. All rights reserved. diff --git a/src/licensedcode/data/rules/eu-datagrid.SPDX.yml b/src/licensedcode/data/rules/eu-datagrid.SPDX.yml deleted file mode 100644 index b7e67df8dab..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid.SPDX.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: eu-datagrid -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2001 EU DataGrid -ignorable_holders: - - EU DataGrid -ignorable_authors: - - hep-project-grid-edg-license@cern.ch - - the EU DataGrid (http://www.eu-datagrid.org/) -ignorable_urls: - - http://www.eu-datagrid.org/ -ignorable_emails: - - hep-project-grid-edg-license@cern.ch diff --git a/src/licensedcode/data/rules/eu-datagrid.yml b/src/licensedcode/data/rules/eu-datagrid.yml deleted file mode 100644 index e791cc51bc6..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://eu-datagrid.web.cern.ch/eu-datagrid/license.html diff --git a/src/licensedcode/data/rules/eu-datagrid_1.RULE b/src/licensedcode/data/rules/eu-datagrid_1.RULE index a6e5bdb5ff2..291befeb5f5 100644 --- a/src/licensedcode/data/rules/eu-datagrid_1.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_1.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/eudatagrid.php +--- + http://www.opensource.org/licenses/eudatagrid.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_1.yml b/src/licensedcode/data/rules/eu-datagrid_1.yml deleted file mode 100644 index f3b0c0c28cd..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/eudatagrid.php diff --git a/src/licensedcode/data/rules/eu-datagrid_10.RULE b/src/licensedcode/data/rules/eu-datagrid_10.RULE index 371248346eb..0dae44f2758 100644 --- a/src/licensedcode/data/rules/eu-datagrid_10.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_10.RULE @@ -1 +1,10 @@ +--- +license_expression: eu-datagrid +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EU DataGrid Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_10.yml b/src/licensedcode/data/rules/eu-datagrid_10.yml deleted file mode 100644 index 4307698707f..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eu-datagrid -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eu-datagrid_11.RULE b/src/licensedcode/data/rules/eu-datagrid_11.RULE index 3de8e66a902..861bf5ed4bb 100644 --- a/src/licensedcode/data/rules/eu-datagrid_11.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_11.RULE @@ -1 +1,10 @@ +--- +license_expression: eu-datagrid +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EUDatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_11.yml b/src/licensedcode/data/rules/eu-datagrid_11.yml deleted file mode 100644 index 4307698707f..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eu-datagrid -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eu-datagrid_12.RULE b/src/licensedcode/data/rules/eu-datagrid_12.RULE index c98b257777c..d72c810a796 100644 --- a/src/licensedcode/data/rules/eu-datagrid_12.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_12.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EUDatagrid +--- + https://licenses.nuget.org/EUDatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_12.yml b/src/licensedcode/data/rules/eu-datagrid_12.yml deleted file mode 100644 index 94c914fc9ac..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EUDatagrid diff --git a/src/licensedcode/data/rules/eu-datagrid_13.RULE b/src/licensedcode/data/rules/eu-datagrid_13.RULE index 0211b238b31..3a8c6ea8aa4 100644 --- a/src/licensedcode/data/rules/eu-datagrid_13.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_13.RULE @@ -1 +1,7 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EUDatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_13.yml b/src/licensedcode/data/rules/eu-datagrid_13.yml deleted file mode 100644 index faec98665b4..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eu-datagrid_14.RULE b/src/licensedcode/data/rules/eu-datagrid_14.RULE index 650679d39a9..3a678857a1c 100644 --- a/src/licensedcode/data/rules/eu-datagrid_14.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_14.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EUDatagrid +--- + {{EUDatagrid}} https://spdx.org/licenses/EUDatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_14.yml b/src/licensedcode/data/rules/eu-datagrid_14.yml deleted file mode 100644 index bac54037470..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EUDatagrid diff --git a/src/licensedcode/data/rules/eu-datagrid_15.RULE b/src/licensedcode/data/rules/eu-datagrid_15.RULE index ae123ed1e15..02d35b5260a 100644 --- a/src/licensedcode/data/rules/eu-datagrid_15.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_15.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EUDatagrid +--- + LICENSE {{EUDatagrid}} https://spdx.org/licenses/EUDatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_15.yml b/src/licensedcode/data/rules/eu-datagrid_15.yml deleted file mode 100644 index bac54037470..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EUDatagrid diff --git a/src/licensedcode/data/rules/eu-datagrid_2.RULE b/src/licensedcode/data/rules/eu-datagrid_2.RULE index 7e716538bcf..70eaab3095c 100644 --- a/src/licensedcode/data/rules/eu-datagrid_2.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_2.RULE @@ -1 +1,7 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +--- + EU DataGrid Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_2.yml b/src/licensedcode/data/rules/eu-datagrid_2.yml deleted file mode 100644 index faec98665b4..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eu-datagrid_3.RULE b/src/licensedcode/data/rules/eu-datagrid_3.RULE index c6847376635..1752d9a1b38 100644 --- a/src/licensedcode/data/rules/eu-datagrid_3.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_3.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.eu-datagrid.org/license.html +--- + For license conditions see http://www.eu-datagrid.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_3.yml b/src/licensedcode/data/rules/eu-datagrid_3.yml deleted file mode 100644 index 1a797f773e4..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.eu-datagrid.org/license.html diff --git a/src/licensedcode/data/rules/eu-datagrid_4.RULE b/src/licensedcode/data/rules/eu-datagrid_4.RULE index 63419130583..27021efb1fb 100644 --- a/src/licensedcode/data/rules/eu-datagrid_4.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: eu-datagrid +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://eu-egee.org/license.html +--- + For license conditions see the license file or http://eu-egee.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_4.yml b/src/licensedcode/data/rules/eu-datagrid_4.yml deleted file mode 100644 index 23912167a4f..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://eu-egee.org/license.html diff --git a/src/licensedcode/data/rules/eu-datagrid_5.RULE b/src/licensedcode/data/rules/eu-datagrid_5.RULE index 198d45b5ae4..885ce5fdf16 100644 --- a/src/licensedcode/data/rules/eu-datagrid_5.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_5.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://eu-egee.org/license.html +--- + http://eu-egee.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_5.yml b/src/licensedcode/data/rules/eu-datagrid_5.yml deleted file mode 100644 index c0438aa0d6b..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://eu-egee.org/license.html diff --git a/src/licensedcode/data/rules/eu-datagrid_6.RULE b/src/licensedcode/data/rules/eu-datagrid_6.RULE index f814ad3f33c..9c0421388c2 100644 --- a/src/licensedcode/data/rules/eu-datagrid_6.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_6.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + EUDatagrid EU DataGrid Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_6.yml b/src/licensedcode/data/rules/eu-datagrid_6.yml deleted file mode 100644 index 0fb1e51e002..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/eu-datagrid_7.RULE b/src/licensedcode/data/rules/eu-datagrid_7.RULE index d9c9daae9b3..8d65ccd8025 100644 --- a/src/licensedcode/data/rules/eu-datagrid_7.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_7.RULE @@ -1 +1,10 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: EU DataGrid Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_7.yml b/src/licensedcode/data/rules/eu-datagrid_7.yml deleted file mode 100644 index e8af3354e53..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eu-datagrid_8.RULE b/src/licensedcode/data/rules/eu-datagrid_8.RULE index e8ada813da2..a8f0c2a113a 100644 --- a/src/licensedcode/data/rules/eu-datagrid_8.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_8.RULE @@ -1 +1,10 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + EU DataGrid Software License EUDatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_8.yml b/src/licensedcode/data/rules/eu-datagrid_8.yml deleted file mode 100644 index e8af3354e53..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eu-datagrid_9.RULE b/src/licensedcode/data/rules/eu-datagrid_9.RULE index 4a3757e2075..35c5c509cec 100644 --- a/src/licensedcode/data/rules/eu-datagrid_9.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_9.RULE @@ -1 +1,10 @@ +--- +license_expression: eu-datagrid +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EUDatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_9.yml b/src/licensedcode/data/rules/eu-datagrid_9.yml deleted file mode 100644 index 4307698707f..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eu-datagrid -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eu-datagrid_url_1.RULE b/src/licensedcode/data/rules/eu-datagrid_url_1.RULE index 633eb5a2d10..57ffb55017e 100644 --- a/src/licensedcode/data/rules/eu-datagrid_url_1.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eudatagrid +--- + https://spdx.org/licenses/eudatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_url_1.yml b/src/licensedcode/data/rules/eu-datagrid_url_1.yml deleted file mode 100644 index ae68ec96737..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eudatagrid diff --git a/src/licensedcode/data/rules/eu-datagrid_url_2.RULE b/src/licensedcode/data/rules/eu-datagrid_url_2.RULE index 5c6ee113f2a..94261956698 100644 --- a/src/licensedcode/data/rules/eu-datagrid_url_2.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eudatagrid.html +--- + https://spdx.org/licenses/eudatagrid.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_url_2.yml b/src/licensedcode/data/rules/eu-datagrid_url_2.yml deleted file mode 100644 index a218551c9c9..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eudatagrid.html diff --git a/src/licensedcode/data/rules/eu-datagrid_url_glc_158.RULE b/src/licensedcode/data/rules/eu-datagrid_url_glc_158.RULE index 2fd7829a1cf..0e7f371633c 100644 --- a/src/licensedcode/data/rules/eu-datagrid_url_glc_158.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_url_glc_158.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/eudatagrid +--- + http://www.opensource.org/licenses/eudatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_url_glc_158.yml b/src/licensedcode/data/rules/eu-datagrid_url_glc_158.yml deleted file mode 100644 index bd129bc019a..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_url_glc_158.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/eudatagrid diff --git a/src/licensedcode/data/rules/eu-datagrid_url_glc_159.RULE b/src/licensedcode/data/rules/eu-datagrid_url_glc_159.RULE index df8d65407a8..e4be7c473d7 100644 --- a/src/licensedcode/data/rules/eu-datagrid_url_glc_159.RULE +++ b/src/licensedcode/data/rules/eu-datagrid_url_glc_159.RULE @@ -1 +1,9 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/eudatagrid +--- + https://www.opensource.org/licenses/eudatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/eu-datagrid_url_glc_159.yml b/src/licensedcode/data/rules/eu-datagrid_url_glc_159.yml deleted file mode 100644 index 08ba6ff80ad..00000000000 --- a/src/licensedcode/data/rules/eu-datagrid_url_glc_159.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/eudatagrid diff --git a/src/licensedcode/data/rules/eupl-1.0.RULE b/src/licensedcode/data/rules/eupl-1.0.RULE index 7db68ed9e32..b34305ba07c 100644 --- a/src/licensedcode/data/rules/eupl-1.0.RULE +++ b/src/licensedcode/data/rules/eupl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ec.europa.eu/idabc/en/document/7330.html +--- + http://ec.europa.eu/idabc/en/document/7330.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0.SPDX.RULE b/src/licensedcode/data/rules/eupl-1.0.SPDX.RULE index ad8adbe2db9..4d5ebfeebfa 100644 --- a/src/licensedcode/data/rules/eupl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/eupl-1.0.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: eupl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - (c) the European Community 2007 +ignorable_holders: + - the European Community +--- + "European Union Public Licence V.1.0 EUPL © the European Community 2007 diff --git a/src/licensedcode/data/rules/eupl-1.0.SPDX.yml b/src/licensedcode/data/rules/eupl-1.0.SPDX.yml deleted file mode 100644 index 25176bad52a..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: eupl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - (c) the European Community 2007 -ignorable_holders: - - the European Community diff --git a/src/licensedcode/data/rules/eupl-1.0.yml b/src/licensedcode/data/rules/eupl-1.0.yml deleted file mode 100644 index a40157e3462..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ec.europa.eu/idabc/en/document/7330.html diff --git a/src/licensedcode/data/rules/eupl-1.0_1.RULE b/src/licensedcode/data/rules/eupl-1.0_1.RULE index 62a8dff5140..ca081e5cb79 100644 --- a/src/licensedcode/data/rules/eupl-1.0_1.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +relevance: 100 +--- + European Union Public Licence 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_1.yml b/src/licensedcode/data/rules/eupl-1.0_1.yml deleted file mode 100644 index 83677a245a8..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.0_10.RULE b/src/licensedcode/data/rules/eupl-1.0_10.RULE index d04cda978a0..b8c99763413 100644 --- a/src/licensedcode/data/rules/eupl-1.0_10.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EUPL-1.0 +--- + https://licenses.nuget.org/EUPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_10.yml b/src/licensedcode/data/rules/eupl-1.0_10.yml deleted file mode 100644 index 50eb3ea402d..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EUPL-1.0 diff --git a/src/licensedcode/data/rules/eupl-1.0_11.RULE b/src/licensedcode/data/rules/eupl-1.0_11.RULE index 9b38b8d111c..14eca79fc4e 100644 --- a/src/licensedcode/data/rules/eupl-1.0_11.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EUPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_11.yml b/src/licensedcode/data/rules/eupl-1.0_11.yml deleted file mode 100644 index 83677a245a8..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.0_12.RULE b/src/licensedcode/data/rules/eupl-1.0_12.RULE index 51a1ebcf9cb..9cb918d9c0a 100644 --- a/src/licensedcode/data/rules/eupl-1.0_12.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EUPL-1.0 +--- + {{EUPL-1.0}} https://spdx.org/licenses/EUPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_12.yml b/src/licensedcode/data/rules/eupl-1.0_12.yml deleted file mode 100644 index 3c70592704f..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EUPL-1.0 diff --git a/src/licensedcode/data/rules/eupl-1.0_13.RULE b/src/licensedcode/data/rules/eupl-1.0_13.RULE index e80fc75d3cb..19463b3b2c1 100644 --- a/src/licensedcode/data/rules/eupl-1.0_13.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EUPL-1.0 +--- + LICENSE {{EUPL-1.0}} https://spdx.org/licenses/EUPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_13.yml b/src/licensedcode/data/rules/eupl-1.0_13.yml deleted file mode 100644 index 3c70592704f..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EUPL-1.0 diff --git a/src/licensedcode/data/rules/eupl-1.0_2.RULE b/src/licensedcode/data/rules/eupl-1.0_2.RULE index c6e0e233ff3..f67c9fc1106 100644 --- a/src/licensedcode/data/rules/eupl-1.0_2.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: eupl-1.0 +is_license_text: yes +ignorable_copyrights: + - (c) the European Community 2007 +ignorable_holders: + - the European Community +--- + European Union Public Licence V.1.0 EUPL (c) the European Community 2007 This European Union Public Licence (the "EUPL") applies to the Work or Software (as defined below) which is provided under the terms of this Licence. Any diff --git a/src/licensedcode/data/rules/eupl-1.0_2.yml b/src/licensedcode/data/rules/eupl-1.0_2.yml deleted file mode 100644 index 7a77098410c..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.0 -is_license_text: yes -ignorable_copyrights: - - (c) the European Community 2007 -ignorable_holders: - - the European Community diff --git a/src/licensedcode/data/rules/eupl-1.0_3.RULE b/src/licensedcode/data/rules/eupl-1.0_3.RULE index cc8b70e2eb8..478f630965d 100644 --- a/src/licensedcode/data/rules/eupl-1.0_3.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + European Union Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_3.yml b/src/licensedcode/data/rules/eupl-1.0_3.yml deleted file mode 100644 index 4abd7e19bfa..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/eupl-1.0_4.RULE b/src/licensedcode/data/rules/eupl-1.0_4.RULE index d06938fe154..3b07fb872f4 100644 --- a/src/licensedcode/data/rules/eupl-1.0_4.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + EUPL-1.0 European Union Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_4.yml b/src/licensedcode/data/rules/eupl-1.0_4.yml deleted file mode 100644 index 4abd7e19bfa..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/eupl-1.0_5.RULE b/src/licensedcode/data/rules/eupl-1.0_5.RULE index b57a2a5ee2c..4c0de924c3a 100644 --- a/src/licensedcode/data/rules/eupl-1.0_5.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: European Union Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_5.yml b/src/licensedcode/data/rules/eupl-1.0_5.yml deleted file mode 100644 index 5fd7f5a2aeb..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.0_6.RULE b/src/licensedcode/data/rules/eupl-1.0_6.RULE index 2bedbe016cb..2c0a1286097 100644 --- a/src/licensedcode/data/rules/eupl-1.0_6.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + European Union Public License 1.0 EUPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_6.yml b/src/licensedcode/data/rules/eupl-1.0_6.yml deleted file mode 100644 index 5fd7f5a2aeb..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.0_7.RULE b/src/licensedcode/data/rules/eupl-1.0_7.RULE index d2c3e28a4c4..a4e9b51627d 100644 --- a/src/licensedcode/data/rules/eupl-1.0_7.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EUPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_7.yml b/src/licensedcode/data/rules/eupl-1.0_7.yml deleted file mode 100644 index a8fdb5a425e..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.0_8.RULE b/src/licensedcode/data/rules/eupl-1.0_8.RULE index 37f8a13cb89..9c3b317035c 100644 --- a/src/licensedcode/data/rules/eupl-1.0_8.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: European Union Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_8.yml b/src/licensedcode/data/rules/eupl-1.0_8.yml deleted file mode 100644 index a8fdb5a425e..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.0_9.RULE b/src/licensedcode/data/rules/eupl-1.0_9.RULE index 8e32cb80b78..69c16a0b451 100644 --- a/src/licensedcode/data/rules/eupl-1.0_9.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EUPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_9.yml b/src/licensedcode/data/rules/eupl-1.0_9.yml deleted file mode 100644 index a8fdb5a425e..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.0_url_1.RULE b/src/licensedcode/data/rules/eupl-1.0_url_1.RULE index 8a318dd7ea2..9b8f2b9e248 100644 --- a/src/licensedcode/data/rules/eupl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eupl-1.0 +--- + https://spdx.org/licenses/eupl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_url_1.yml b/src/licensedcode/data/rules/eupl-1.0_url_1.yml deleted file mode 100644 index 60f4e377e3c..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eupl-1.0 diff --git a/src/licensedcode/data/rules/eupl-1.0_url_2.RULE b/src/licensedcode/data/rules/eupl-1.0_url_2.RULE index 800fbcbefe1..68f37898fb8 100644 --- a/src/licensedcode/data/rules/eupl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/eupl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eupl-1.0.html +--- + https://spdx.org/licenses/eupl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.0_url_2.yml b/src/licensedcode/data/rules/eupl-1.0_url_2.yml deleted file mode 100644 index 49b47847b41..00000000000 --- a/src/licensedcode/data/rules/eupl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eupl-1.0.html diff --git a/src/licensedcode/data/rules/eupl-1.1.RULE b/src/licensedcode/data/rules/eupl-1.1.RULE index 37c91117051..610fd350f5f 100644 --- a/src/licensedcode/data/rules/eupl-1.1.RULE +++ b/src/licensedcode/data/rules/eupl-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ec.europa.eu/idabc/eupl +--- + http://ec.europa.eu/idabc/eupl \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1.SPDX.RULE b/src/licensedcode/data/rules/eupl-1.1.SPDX.RULE index ab859d55224..cbacda2f334 100644 --- a/src/licensedcode/data/rules/eupl-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/eupl-1.1.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + European Union Public Licence V. 1.1 EUPL ᄅ the European Community 2007 diff --git a/src/licensedcode/data/rules/eupl-1.1.SPDX.yml b/src/licensedcode/data/rules/eupl-1.1.SPDX.yml deleted file mode 100644 index 94f73b88643..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: eupl-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/eupl-1.1.yml b/src/licensedcode/data/rules/eupl-1.1.yml deleted file mode 100644 index 27fdd9ec8b8..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ec.europa.eu/idabc/eupl diff --git a/src/licensedcode/data/rules/eupl-1.1_1.RULE b/src/licensedcode/data/rules/eupl-1.1_1.RULE index 59f912bddb4..9348e0af50a 100644 --- a/src/licensedcode/data/rules/eupl-1.1_1.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1 +--- + http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_1.yml b/src/licensedcode/data/rules/eupl-1.1_1.yml deleted file mode 100644 index e08f8628430..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_10.RULE b/src/licensedcode/data/rules/eupl-1.1_10.RULE index 366fa2cb790..e93f61bede8 100644 --- a/src/licensedcode/data/rules/eupl-1.1_10.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_10.RULE @@ -1,2 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://ec.europa.eu/idabc/eupl.html +--- + * This software may be modified and distributed under the terms * of the EUPL v.1.1 license. See http://ec.europa.eu/idabc/eupl.html for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_10.yml b/src/licensedcode/data/rules/eupl-1.1_10.yml deleted file mode 100644 index b0202c39015..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://ec.europa.eu/idabc/eupl.html diff --git a/src/licensedcode/data/rules/eupl-1.1_11.RULE b/src/licensedcode/data/rules/eupl-1.1_11.RULE index d74ca2dbe1b..023264c7356 100644 --- a/src/licensedcode/data/rules/eupl-1.1_11.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_11.RULE @@ -1,2 +1,8 @@ +--- +license_expression: eupl-1.1 +is_license_notice: yes +relevance: 100 +--- + * This software may be modified and distributed under the terms * of the EUPL v.1.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_11.yml b/src/licensedcode/data/rules/eupl-1.1_11.yml deleted file mode 100644 index 82070de14ce..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.1_12.RULE b/src/licensedcode/data/rules/eupl-1.1_12.RULE index 05d7592da7c..ace5844cf4f 100644 --- a/src/licensedcode/data/rules/eupl-1.1_12.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://ec.europa.eu/idabc/eupl.html +--- + - This software may be modified and distributed under the terms of the EUPL v.1.1 license. See [http://ec.europa.eu/idabc/eupl.html](http://ec.europa.eu/idabc/eupl.html "http://ec.europa.eu/idabc/eupl.html") for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_12.yml b/src/licensedcode/data/rules/eupl-1.1_12.yml deleted file mode 100644 index b0202c39015..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://ec.europa.eu/idabc/eupl.html diff --git a/src/licensedcode/data/rules/eupl-1.1_13.RULE b/src/licensedcode/data/rules/eupl-1.1_13.RULE index c265a5de22f..331a9089c85 100644 --- a/src/licensedcode/data/rules/eupl-1.1_13.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_13.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.1 +is_license_notice: yes +relevance: 100 +--- + Licensed under the EUPL, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_13.yml b/src/licensedcode/data/rules/eupl-1.1_13.yml deleted file mode 100644 index 82070de14ce..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.1_14.RULE b/src/licensedcode/data/rules/eupl-1.1_14.RULE index 636333e1817..11b836f0b11 100644 --- a/src/licensedcode/data/rules/eupl-1.1_14.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_14.RULE @@ -1,3 +1,12 @@ +--- +license_expression: eupl-1.1 +is_license_notice: yes +referenced_filenames: + - LICENCE.txt +ignorable_urls: + - http://joinup.ec.europa.eu/software/page/eupl +--- + Licensed under the EUPL, Version 1.1 or - as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence"); diff --git a/src/licensedcode/data/rules/eupl-1.1_14.yml b/src/licensedcode/data/rules/eupl-1.1_14.yml deleted file mode 100644 index d4736f20843..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.1 -is_license_notice: yes -referenced_filenames: - - LICENCE.txt -ignorable_urls: - - http://joinup.ec.europa.eu/software/page/eupl diff --git a/src/licensedcode/data/rules/eupl-1.1_15.RULE b/src/licensedcode/data/rules/eupl-1.1_15.RULE index 82a780d785f..3409c4d9ba3 100644 --- a/src/licensedcode/data/rules/eupl-1.1_15.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_15.RULE @@ -1,3 +1,12 @@ +--- +license_expression: eupl-1.1 +is_license_text: yes +ignorable_copyrights: + - (c) the European Community 2007 +ignorable_holders: + - the European Community +--- + European Union Public Licence V. 1.1 EUPL (c) the European Community 2007 This European Union Public Licence (the "EUPL") applies to the Work or Software diff --git a/src/licensedcode/data/rules/eupl-1.1_15.yml b/src/licensedcode/data/rules/eupl-1.1_15.yml deleted file mode 100644 index 1c72ab411ed..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.1 -is_license_text: yes -ignorable_copyrights: - - (c) the European Community 2007 -ignorable_holders: - - the European Community diff --git a/src/licensedcode/data/rules/eupl-1.1_16.RULE b/src/licensedcode/data/rules/eupl-1.1_16.RULE index 4f3244ebc14..c6e0ba56e8a 100644 --- a/src/licensedcode/data/rules/eupl-1.1_16.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_16.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.1 +is_license_notice: yes +relevance: 100 +--- + released under the EUPL 1.1 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_16.yml b/src/licensedcode/data/rules/eupl-1.1_16.yml deleted file mode 100644 index 82070de14ce..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.1_17.RULE b/src/licensedcode/data/rules/eupl-1.1_17.RULE index a25b61838b6..00084fd9f57 100644 --- a/src/licensedcode/data/rules/eupl-1.1_17.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_17.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + EUPL-1.1 European Union Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_17.yml b/src/licensedcode/data/rules/eupl-1.1_17.yml deleted file mode 100644 index 39048a3dfeb..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/eupl-1.1_18.RULE b/src/licensedcode/data/rules/eupl-1.1_18.RULE index 02b0466b738..233dbaf817b 100644 --- a/src/licensedcode/data/rules/eupl-1.1_18.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_18.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: European Union Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_18.yml b/src/licensedcode/data/rules/eupl-1.1_18.yml deleted file mode 100644 index 733c3d5c8d7..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.1_19.RULE b/src/licensedcode/data/rules/eupl-1.1_19.RULE index 7712691fb63..fad5045681b 100644 --- a/src/licensedcode/data/rules/eupl-1.1_19.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_19.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + European Union Public License 1.1 EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_19.yml b/src/licensedcode/data/rules/eupl-1.1_19.yml deleted file mode 100644 index 733c3d5c8d7..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.1_2.RULE b/src/licensedcode/data/rules/eupl-1.1_2.RULE index 42b8890ce12..45f76e42c61 100644 --- a/src/licensedcode/data/rules/eupl-1.1_2.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_notice: yes +ignorable_urls: + - http://ec.europa.eu/idabc/eupl +--- + // Licensed under the EUPL, Version 1.1 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. @@ -9,4 +16,4 @@ // 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. +// limitations under the Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_2.yml b/src/licensedcode/data/rules/eupl-1.1_2.yml deleted file mode 100644 index a50cb167741..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: eupl-1.1 -is_license_notice: yes -ignorable_urls: - - http://ec.europa.eu/idabc/eupl diff --git a/src/licensedcode/data/rules/eupl-1.1_20.RULE b/src/licensedcode/data/rules/eupl-1.1_20.RULE index 4c7962d8af1..018e1729639 100644 --- a/src/licensedcode/data/rules/eupl-1.1_20.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_20.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_20.yml b/src/licensedcode/data/rules/eupl-1.1_20.yml deleted file mode 100644 index 5a4244bb466..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.1_21.RULE b/src/licensedcode/data/rules/eupl-1.1_21.RULE index 75654e5c021..d55dfc259f6 100644 --- a/src/licensedcode/data/rules/eupl-1.1_21.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_21.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: European Union Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_21.yml b/src/licensedcode/data/rules/eupl-1.1_21.yml deleted file mode 100644 index 5a4244bb466..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.1_22.RULE b/src/licensedcode/data/rules/eupl-1.1_22.RULE index a0e9ac84236..0f7f703bf5f 100644 --- a/src/licensedcode/data/rules/eupl-1.1_22.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_22.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_22.yml b/src/licensedcode/data/rules/eupl-1.1_22.yml deleted file mode 100644 index 5a4244bb466..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.1_23.RULE b/src/licensedcode/data/rules/eupl-1.1_23.RULE index 1bbbb35b91a..be3f153ae36 100644 --- a/src/licensedcode/data/rules/eupl-1.1_23.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_23.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EUPL-1.1 +--- + https://licenses.nuget.org/EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_23.yml b/src/licensedcode/data/rules/eupl-1.1_23.yml deleted file mode 100644 index a5f6a79bd34..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EUPL-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_24.RULE b/src/licensedcode/data/rules/eupl-1.1_24.RULE index 55d8d06a526..d2ba225023b 100644 --- a/src/licensedcode/data/rules/eupl-1.1_24.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_24.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_24.yml b/src/licensedcode/data/rules/eupl-1.1_24.yml deleted file mode 100644 index ead46836f75..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.1_25.RULE b/src/licensedcode/data/rules/eupl-1.1_25.RULE index 53c252da41c..7c16d163aee 100644 --- a/src/licensedcode/data/rules/eupl-1.1_25.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_25.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EUPL-1.1 +--- + LICENSE {{EUPL-1.1}} https://spdx.org/licenses/EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_25.yml b/src/licensedcode/data/rules/eupl-1.1_25.yml deleted file mode 100644 index c82c9185a17..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EUPL-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_26.RULE b/src/licensedcode/data/rules/eupl-1.1_26.RULE index 5430007de26..6b89d39a7e6 100644 --- a/src/licensedcode/data/rules/eupl-1.1_26.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_26.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EUPL-1.1 +--- + {{EUPL-1.1}} https://spdx.org/licenses/EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_26.yml b/src/licensedcode/data/rules/eupl-1.1_26.yml deleted file mode 100644 index c82c9185a17..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EUPL-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_3.RULE b/src/licensedcode/data/rules/eupl-1.1_3.RULE index 97ab2e1a745..63704356abe 100644 --- a/src/licensedcode/data/rules/eupl-1.1_3.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/eupl-v1.1/ +--- + https://choosealicense.com/licenses/eupl-v1.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_3.yml b/src/licensedcode/data/rules/eupl-1.1_3.yml deleted file mode 100644 index 44703dc9364..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/eupl-v1.1/ diff --git a/src/licensedcode/data/rules/eupl-1.1_4.RULE b/src/licensedcode/data/rules/eupl-1.1_4.RULE index 135984aa89d..d5ea57f9252 100644 --- a/src/licensedcode/data/rules/eupl-1.1_4.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_4.RULE @@ -1 +1,9 @@ -http://choosealicense.com/licenses/eupl-v1.1/ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/eupl-v1.1/ +--- + +http://choosealicense.com/licenses/eupl-v1.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_4.yml b/src/licensedcode/data/rules/eupl-1.1_4.yml deleted file mode 100644 index 2569dab2c57..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/eupl-v1.1/ diff --git a/src/licensedcode/data/rules/eupl-1.1_5.RULE b/src/licensedcode/data/rules/eupl-1.1_5.RULE index 048806e50a7..dd2c4278c60 100644 --- a/src/licensedcode/data/rules/eupl-1.1_5.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_5.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/eupl-1.1 +--- + https://choosealicense.com/licenses/eupl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_5.yml b/src/licensedcode/data/rules/eupl-1.1_5.yml deleted file mode 100644 index e3833232ec1..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/eupl-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_6.RULE b/src/licensedcode/data/rules/eupl-1.1_6.RULE index 5a2e0c8a7b5..b13adcbf576 100644 --- a/src/licensedcode/data/rules/eupl-1.1_6.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_6.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/eupl-1.1 +--- + http://choosealicense.com/licenses/eupl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_6.yml b/src/licensedcode/data/rules/eupl-1.1_6.yml deleted file mode 100644 index 1270fd48d29..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/eupl-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_7.RULE b/src/licensedcode/data/rules/eupl-1.1_7.RULE index 85126378b05..5d68fec0377 100644 --- a/src/licensedcode/data/rules/eupl-1.1_7.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_7.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/EUPL-1.1 +--- + http://opensource.org/licenses/EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_7.yml b/src/licensedcode/data/rules/eupl-1.1_7.yml deleted file mode 100644 index aea5f2b1d77..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/EUPL-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_8.RULE b/src/licensedcode/data/rules/eupl-1.1_8.RULE index dfccce6669d..43bf4673f1d 100644 --- a/src/licensedcode/data/rules/eupl-1.1_8.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/EUPL-1.1 +--- + https://opensource.org/licenses/EUPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_8.yml b/src/licensedcode/data/rules/eupl-1.1_8.yml deleted file mode 100644 index d02793a968b..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/EUPL-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_9.RULE b/src/licensedcode/data/rules/eupl-1.1_9.RULE index 60c9c5228a4..942eeb08039 100644 --- a/src/licensedcode/data/rules/eupl-1.1_9.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +--- + European Union Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_9.yml b/src/licensedcode/data/rules/eupl-1.1_9.yml deleted file mode 100644 index ead46836f75..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.1_or_mit_1.RULE b/src/licensedcode/data/rules/eupl-1.1_or_mit_1.RULE index 9411b54d9b6..18114ba2c00 100644 --- a/src/licensedcode/data/rules/eupl-1.1_or_mit_1.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_or_mit_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: eupl-1.1 OR mit +is_license_notice: yes +referenced_filenames: + - EUPL-1.1 + - MIT +ignorable_urls: + - https://joinup.ec.europa.eu/software/page/eupl +--- + * Licensed under the EUPL V.1.1 (cf. file EUPL-1.1 distributed with the * source code.) Translations in other european languages available at * https://joinup.ec.europa.eu/software/page/eupl. diff --git a/src/licensedcode/data/rules/eupl-1.1_or_mit_1.yml b/src/licensedcode/data/rules/eupl-1.1_or_mit_1.yml deleted file mode 100644 index e6ebc00af52..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_or_mit_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: eupl-1.1 OR mit -is_license_notice: yes -referenced_filenames: - - EUPL-1.1 - - MIT -ignorable_urls: - - https://joinup.ec.europa.eu/software/page/eupl diff --git a/src/licensedcode/data/rules/eupl-1.1_url_1.RULE b/src/licensedcode/data/rules/eupl-1.1_url_1.RULE index 9eeb7b012b3..19a0e73925b 100644 --- a/src/licensedcode/data/rules/eupl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eupl-1.1 +--- + https://spdx.org/licenses/eupl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_url_1.yml b/src/licensedcode/data/rules/eupl-1.1_url_1.yml deleted file mode 100644 index 0645f5f4dba..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eupl-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_url_2.RULE b/src/licensedcode/data/rules/eupl-1.1_url_2.RULE index 98375e59002..846e17d293f 100644 --- a/src/licensedcode/data/rules/eupl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eupl-1.1.html +--- + https://spdx.org/licenses/eupl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_url_2.yml b/src/licensedcode/data/rules/eupl-1.1_url_2.yml deleted file mode 100644 index a44f3bd2876..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eupl-1.1.html diff --git a/src/licensedcode/data/rules/eupl-1.1_url_glc_160.RULE b/src/licensedcode/data/rules/eupl-1.1_url_glc_160.RULE index b59e96ea63a..0c8e84aaa51 100644 --- a/src/licensedcode/data/rules/eupl-1.1_url_glc_160.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_url_glc_160.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/eupl-1.1 +--- + http://www.opensource.org/licenses/eupl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_url_glc_160.yml b/src/licensedcode/data/rules/eupl-1.1_url_glc_160.yml deleted file mode 100644 index 398fe8e261a..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_url_glc_160.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/eupl-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.1_url_glc_161.RULE b/src/licensedcode/data/rules/eupl-1.1_url_glc_161.RULE index b7d9cb1778a..ea288244561 100644 --- a/src/licensedcode/data/rules/eupl-1.1_url_glc_161.RULE +++ b/src/licensedcode/data/rules/eupl-1.1_url_glc_161.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/eupl-1.1 +--- + https://www.opensource.org/licenses/eupl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.1_url_glc_161.yml b/src/licensedcode/data/rules/eupl-1.1_url_glc_161.yml deleted file mode 100644 index 6e88abef463..00000000000 --- a/src/licensedcode/data/rules/eupl-1.1_url_glc_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/eupl-1.1 diff --git a/src/licensedcode/data/rules/eupl-1.2_1.RULE b/src/licensedcode/data/rules/eupl-1.2_1.RULE index 047ebbde764..7cf3950499e 100644 --- a/src/licensedcode/data/rules/eupl-1.2_1.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: eupl-1.2 +is_license_text: yes +ignorable_copyrights: + - (c) the European Union 2007, 2016 +ignorable_holders: + - the European Union +--- + EUROPEAN UNION PUBLIC LICENCE v. 1.2 EUPL © the European Union 2007, 2016 diff --git a/src/licensedcode/data/rules/eupl-1.2_1.yml b/src/licensedcode/data/rules/eupl-1.2_1.yml deleted file mode 100644 index aec30c7b429..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.2 -is_license_text: yes -ignorable_copyrights: - - (c) the European Union 2007, 2016 -ignorable_holders: - - the European Union diff --git a/src/licensedcode/data/rules/eupl-1.2_10.RULE b/src/licensedcode/data/rules/eupl-1.2_10.RULE index c5244079281..879ed85dee0 100644 --- a/src/licensedcode/data/rules/eupl-1.2_10.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_10.RULE @@ -1,3 +1,15 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - box/LICENSE +ignorable_urls: + - https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12 + - https://joinup.ec.europa.eu/collection/eupl/introduction-eupl + - https://joinup.ec.europa.eu/collection/eupl/matrix-eupl-compatible-open +--- + licensed under European Union Public License, version 1.2, ([box/LICENSE](box/LICENSE) or https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12) diff --git a/src/licensedcode/data/rules/eupl-1.2_10.yml b/src/licensedcode/data/rules/eupl-1.2_10.yml deleted file mode 100644 index 08625efcc20..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_10.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - box/LICENSE -ignorable_urls: - - https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12 - - https://joinup.ec.europa.eu/collection/eupl/introduction-eupl - - https://joinup.ec.europa.eu/collection/eupl/matrix-eupl-compatible-open diff --git a/src/licensedcode/data/rules/eupl-1.2_11.RULE b/src/licensedcode/data/rules/eupl-1.2_11.RULE index e990dad63b8..da33b6d4f51 100644 --- a/src/licensedcode/data/rules/eupl-1.2_11.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_11.RULE @@ -1,2 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://joinup.ec.europa.eu/community/eupl/home +--- + Licence This software is released with EUPL licence: https://joinup.ec.europa.eu/community/eupl/home \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_11.yml b/src/licensedcode/data/rules/eupl-1.2_11.yml deleted file mode 100644 index 19eea54c93c..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://joinup.ec.europa.eu/community/eupl/home diff --git a/src/licensedcode/data/rules/eupl-1.2_12.RULE b/src/licensedcode/data/rules/eupl-1.2_12.RULE index d3ddd54bca1..1315c7b5901 100644 --- a/src/licensedcode/data/rules/eupl-1.2_12.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_12.RULE @@ -1,2 +1,8 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +--- + Licence This software is released with EUPL licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_12.yml b/src/licensedcode/data/rules/eupl-1.2_12.yml deleted file mode 100644 index a28d2320ac3..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_13.RULE b/src/licensedcode/data/rules/eupl-1.2_13.RULE index de67fa17e0a..a184c67b498 100644 --- a/src/licensedcode/data/rules/eupl-1.2_13.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_13.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENCE.md +--- + released under [EUPL licence](LICENCE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_13.yml b/src/licensedcode/data/rules/eupl-1.2_13.yml deleted file mode 100644 index 1ffb03970b1..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENCE.md diff --git a/src/licensedcode/data/rules/eupl-1.2_14.RULE b/src/licensedcode/data/rules/eupl-1.2_14.RULE index 4276c03c951..b18b49e50e1 100644 --- a/src/licensedcode/data/rules/eupl-1.2_14.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_14.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://joinup.ec.europa.eu/community/eupl/home +--- + This software is released with EUPL licence: https://joinup.ec.europa.eu/community/eupl/home \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_14.yml b/src/licensedcode/data/rules/eupl-1.2_14.yml deleted file mode 100644 index 19eea54c93c..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://joinup.ec.europa.eu/community/eupl/home diff --git a/src/licensedcode/data/rules/eupl-1.2_15.RULE b/src/licensedcode/data/rules/eupl-1.2_15.RULE index c618d9193f3..15a35edb159 100644 --- a/src/licensedcode/data/rules/eupl-1.2_15.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_15.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +--- + This software is released with EUPL licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_15.yml b/src/licensedcode/data/rules/eupl-1.2_15.yml deleted file mode 100644 index a28d2320ac3..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_16.RULE b/src/licensedcode/data/rules/eupl-1.2_16.RULE index 80c4ae018b2..c88055f59de 100644 --- a/src/licensedcode/data/rules/eupl-1.2_16.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_16.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://joinup.ec.europa.eu/community/eupl/home +--- + https://joinup.ec.europa.eu/community/eupl/home \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_16.yml b/src/licensedcode/data/rules/eupl-1.2_16.yml deleted file mode 100644 index e2e50b51d1d..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://joinup.ec.europa.eu/community/eupl/home diff --git a/src/licensedcode/data/rules/eupl-1.2_17.RULE b/src/licensedcode/data/rules/eupl-1.2_17.RULE index 5a72e0d2b66..badcc4c72cf 100644 --- a/src/licensedcode/data/rules/eupl-1.2_17.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_17.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 100 +--- + EUPL licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_17.yml b/src/licensedcode/data/rules/eupl-1.2_17.yml deleted file mode 100644 index 3a50b22605a..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_18.RULE b/src/licensedcode/data/rules/eupl-1.2_18.RULE index 8a48eb68a67..6359c7a3439 100644 --- a/src/licensedcode/data/rules/eupl-1.2_18.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_18.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + European Union Public License 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_18.yml b/src/licensedcode/data/rules/eupl-1.2_18.yml deleted file mode 100644 index 164e3c5cbfe..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_19.RULE b/src/licensedcode/data/rules/eupl-1.2_19.RULE index 6039f55b3b1..a9100c12e23 100644 --- a/src/licensedcode/data/rules/eupl-1.2_19.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_19.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + EUPL-1.2 European Union Public License 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_19.yml b/src/licensedcode/data/rules/eupl-1.2_19.yml deleted file mode 100644 index 164e3c5cbfe..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_2.RULE b/src/licensedcode/data/rules/eupl-1.2_2.RULE index ca121e1df9d..083b453a124 100644 --- a/src/licensedcode/data/rules/eupl-1.2_2.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_2.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/eupl-1.2 +--- + https://choosealicense.com/licenses/eupl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_2.yml b/src/licensedcode/data/rules/eupl-1.2_2.yml deleted file mode 100644 index 62b2eae2ba3..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/eupl-1.2 diff --git a/src/licensedcode/data/rules/eupl-1.2_20.RULE b/src/licensedcode/data/rules/eupl-1.2_20.RULE index 4bcb1ffc408..39053f343bb 100644 --- a/src/licensedcode/data/rules/eupl-1.2_20.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_20.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: European Union Public License 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_20.yml b/src/licensedcode/data/rules/eupl-1.2_20.yml deleted file mode 100644 index a94373adb35..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.2_21.RULE b/src/licensedcode/data/rules/eupl-1.2_21.RULE index 57d22d136c0..3a4ec0bce01 100644 --- a/src/licensedcode/data/rules/eupl-1.2_21.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_21.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + European Union Public License 1.2 EUPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_21.yml b/src/licensedcode/data/rules/eupl-1.2_21.yml deleted file mode 100644 index a94373adb35..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.2_22.RULE b/src/licensedcode/data/rules/eupl-1.2_22.RULE index 131c392fe1b..bb7797cb74c 100644 --- a/src/licensedcode/data/rules/eupl-1.2_22.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_22.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: EUPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_22.yml b/src/licensedcode/data/rules/eupl-1.2_22.yml deleted file mode 100644 index 4719ebb9cdd..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.2_23.RULE b/src/licensedcode/data/rules/eupl-1.2_23.RULE index e7abe746b16..0c61279f5fe 100644 --- a/src/licensedcode/data/rules/eupl-1.2_23.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_23.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: European Union Public License 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_23.yml b/src/licensedcode/data/rules/eupl-1.2_23.yml deleted file mode 100644 index 4719ebb9cdd..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.2_24.RULE b/src/licensedcode/data/rules/eupl-1.2_24.RULE index 929c35a9fb0..7cb8440bd45 100644 --- a/src/licensedcode/data/rules/eupl-1.2_24.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_24.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: EUPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_24.yml b/src/licensedcode/data/rules/eupl-1.2_24.yml deleted file mode 100644 index 4719ebb9cdd..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eupl-1.2_25.RULE b/src/licensedcode/data/rules/eupl-1.2_25.RULE index 8db6d655874..e8206c65888 100644 --- a/src/licensedcode/data/rules/eupl-1.2_25.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_25.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/European_Union_Public_Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_25.yml b/src/licensedcode/data/rules/eupl-1.2_25.yml deleted file mode 100644 index a9e265b40e3..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/eupl-1.2_26.RULE b/src/licensedcode/data/rules/eupl-1.2_26.RULE index 13deff19f1f..0604077057b 100644 --- a/src/licensedcode/data/rules/eupl-1.2_26.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_26.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/EUPL-1.2 +--- + https://licenses.nuget.org/EUPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_26.yml b/src/licensedcode/data/rules/eupl-1.2_26.yml deleted file mode 100644 index 4d7d220e049..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/EUPL-1.2 diff --git a/src/licensedcode/data/rules/eupl-1.2_27.RULE b/src/licensedcode/data/rules/eupl-1.2_27.RULE index ca22c6f037f..dc82317fbdd 100644 --- a/src/licensedcode/data/rules/eupl-1.2_27.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_27.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/EUPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_27.yml b/src/licensedcode/data/rules/eupl-1.2_27.yml deleted file mode 100644 index 3a50b22605a..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_28.RULE b/src/licensedcode/data/rules/eupl-1.2_28.RULE index e15f32357c3..f7c2bf8b80b 100644 --- a/src/licensedcode/data/rules/eupl-1.2_28.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_28.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EUPL-1.2 +--- + LICENSE {{EUPL-1.2}} https://spdx.org/licenses/EUPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_28.yml b/src/licensedcode/data/rules/eupl-1.2_28.yml deleted file mode 100644 index 2e3e57f450f..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EUPL-1.2 diff --git a/src/licensedcode/data/rules/eupl-1.2_29.RULE b/src/licensedcode/data/rules/eupl-1.2_29.RULE index 57ea2657b74..9461744f60e 100644 --- a/src/licensedcode/data/rules/eupl-1.2_29.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_29.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/EUPL-1.2 +--- + {{EUPL-1.2}} https://spdx.org/licenses/EUPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_29.yml b/src/licensedcode/data/rules/eupl-1.2_29.yml deleted file mode 100644 index 2e3e57f450f..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/EUPL-1.2 diff --git a/src/licensedcode/data/rules/eupl-1.2_3.RULE b/src/licensedcode/data/rules/eupl-1.2_3.RULE index 4f2b8718ab9..5cf9faea9ad 100644 --- a/src/licensedcode/data/rules/eupl-1.2_3.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_3.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/eupl-1.2 +--- + http://choosealicense.com/licenses/eupl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_3.yml b/src/licensedcode/data/rules/eupl-1.2_3.yml deleted file mode 100644 index b325a0cb1a4..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/eupl-1.2 diff --git a/src/licensedcode/data/rules/eupl-1.2_4.RULE b/src/licensedcode/data/rules/eupl-1.2_4.RULE index 98b675292ac..f87407349bb 100644 --- a/src/licensedcode/data/rules/eupl-1.2_4.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_4.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +--- + source released under European Union Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_4.yml b/src/licensedcode/data/rules/eupl-1.2_4.yml deleted file mode 100644 index a28d2320ac3..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_5.RULE b/src/licensedcode/data/rules/eupl-1.2_5.RULE index 8621c8faa80..685a07b3b20 100644 --- a/src/licensedcode/data/rules/eupl-1.2_5.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_5.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +--- + released under European Union Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_5.yml b/src/licensedcode/data/rules/eupl-1.2_5.yml deleted file mode 100644 index a28d2320ac3..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_6.RULE b/src/licensedcode/data/rules/eupl-1.2_6.RULE index 3ace0ed39e2..8bc8f408811 100644 --- a/src/licensedcode/data/rules/eupl-1.2_6.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://joinup.ec.europa.eu/community/eupl/og_page/eupl +--- + This software is licensed under the European Union Public License (EUPL) The license is available in the 22 official languages of the EU. The English version is included here. Please see https://joinup.ec.europa.eu/community/eupl/og_page/eupl for official translations of the other languages. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_6.yml b/src/licensedcode/data/rules/eupl-1.2_6.yml deleted file mode 100644 index c7e36ab7f89..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://joinup.ec.europa.eu/community/eupl/og_page/eupl diff --git a/src/licensedcode/data/rules/eupl-1.2_7.RULE b/src/licensedcode/data/rules/eupl-1.2_7.RULE index 130cd833c23..ed2b263b072 100644 --- a/src/licensedcode/data/rules/eupl-1.2_7.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_7.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +--- + * This source code is protected by the EUPL version 1.2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_7.yml b/src/licensedcode/data/rules/eupl-1.2_7.yml deleted file mode 100644 index a28d2320ac3..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_8.RULE b/src/licensedcode/data/rules/eupl-1.2_8.RULE index 1679358bdf5..730e109a090 100644 --- a/src/licensedcode/data/rules/eupl-1.2_8.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_8.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +--- + licensed under European Union Public License, version 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_8.yml b/src/licensedcode/data/rules/eupl-1.2_8.yml deleted file mode 100644 index a28d2320ac3..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eupl-1.2_9.RULE b/src/licensedcode/data/rules/eupl-1.2_9.RULE index a0cab4f273c..3b9621a5348 100644 --- a/src/licensedcode/data/rules/eupl-1.2_9.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12 +--- + licensed under European Union Public License, version 1.2 https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12) \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_9.yml b/src/licensedcode/data/rules/eupl-1.2_9.yml deleted file mode 100644 index 86694ce76d2..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12 diff --git a/src/licensedcode/data/rules/eupl-1.2_and_unknown_1.RULE b/src/licensedcode/data/rules/eupl-1.2_and_unknown_1.RULE index 2f36fb80fd3..fcc5f090ac3 100644 --- a/src/licensedcode/data/rules/eupl-1.2_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_and_unknown_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: eupl-1.2 AND unknown +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://joinup.ec.europa.eu/community/eupl/og_page/eupl +--- + This software is licensed under the European Union Public License (EUPL) The license is available in the 22 official languages of the EU. The English version is included here. Please see https://joinup.ec.europa.eu/community/eupl/og_page/eupl for official translations of the other languages. diff --git a/src/licensedcode/data/rules/eupl-1.2_and_unknown_1.yml b/src/licensedcode/data/rules/eupl-1.2_and_unknown_1.yml deleted file mode 100644 index b2e2d2f1653..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_and_unknown_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 AND unknown -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://joinup.ec.europa.eu/community/eupl/og_page/eupl diff --git a/src/licensedcode/data/rules/eupl-1.2_url_1.RULE b/src/licensedcode/data/rules/eupl-1.2_url_1.RULE index bf834a71de3..4fdd63f43e7 100644 --- a/src/licensedcode/data/rules/eupl-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eupl-1.2 +--- + https://spdx.org/licenses/eupl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_url_1.yml b/src/licensedcode/data/rules/eupl-1.2_url_1.yml deleted file mode 100644 index 4d932b4cefd..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eupl-1.2 diff --git a/src/licensedcode/data/rules/eupl-1.2_url_2.RULE b/src/licensedcode/data/rules/eupl-1.2_url_2.RULE index 36287aa7992..05a73b60bca 100644 --- a/src/licensedcode/data/rules/eupl-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/eupl-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eupl-1.2.html +--- + https://spdx.org/licenses/eupl-1.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eupl-1.2_url_2.yml b/src/licensedcode/data/rules/eupl-1.2_url_2.yml deleted file mode 100644 index d601999091d..00000000000 --- a/src/licensedcode/data/rules/eupl-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eupl-1.2.html diff --git a/src/licensedcode/data/rules/eurosym_1.RULE b/src/licensedcode/data/rules/eurosym_1.RULE index b8552e3c16e..aa6ae5aa55f 100644 --- a/src/licensedcode/data/rules/eurosym_1.RULE +++ b/src/licensedcode/data/rules/eurosym_1.RULE @@ -1 +1,9 @@ +--- +license_expression: eurosym +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Eurosym License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_1.yml b/src/licensedcode/data/rules/eurosym_1.yml deleted file mode 100644 index a29f084c70c..00000000000 --- a/src/licensedcode/data/rules/eurosym_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/eurosym_10.RULE b/src/licensedcode/data/rules/eurosym_10.RULE index eb9523bc0c1..47f511dc0fa 100644 --- a/src/licensedcode/data/rules/eurosym_10.RULE +++ b/src/licensedcode/data/rules/eurosym_10.RULE @@ -1 +1,9 @@ +--- +license_expression: eurosym +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Eurosym +--- + {{Eurosym}} https://spdx.org/licenses/Eurosym \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_10.yml b/src/licensedcode/data/rules/eurosym_10.yml deleted file mode 100644 index dc0c882b260..00000000000 --- a/src/licensedcode/data/rules/eurosym_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Eurosym diff --git a/src/licensedcode/data/rules/eurosym_11.RULE b/src/licensedcode/data/rules/eurosym_11.RULE index 8b899190464..9626255d8fc 100644 --- a/src/licensedcode/data/rules/eurosym_11.RULE +++ b/src/licensedcode/data/rules/eurosym_11.RULE @@ -1 +1,9 @@ +--- +license_expression: eurosym +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Eurosym +--- + LICENSE {{Eurosym}} https://spdx.org/licenses/Eurosym \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_11.yml b/src/licensedcode/data/rules/eurosym_11.yml deleted file mode 100644 index dc0c882b260..00000000000 --- a/src/licensedcode/data/rules/eurosym_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Eurosym diff --git a/src/licensedcode/data/rules/eurosym_2.RULE b/src/licensedcode/data/rules/eurosym_2.RULE index dbed8696510..ed930625b65 100644 --- a/src/licensedcode/data/rules/eurosym_2.RULE +++ b/src/licensedcode/data/rules/eurosym_2.RULE @@ -1 +1,9 @@ +--- +license_expression: eurosym +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Eurosym Eurosym License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_2.yml b/src/licensedcode/data/rules/eurosym_2.yml deleted file mode 100644 index a29f084c70c..00000000000 --- a/src/licensedcode/data/rules/eurosym_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/eurosym_3.RULE b/src/licensedcode/data/rules/eurosym_3.RULE index a2ec63aab3d..9dae147ac51 100644 --- a/src/licensedcode/data/rules/eurosym_3.RULE +++ b/src/licensedcode/data/rules/eurosym_3.RULE @@ -1 +1,10 @@ +--- +license_expression: eurosym +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Eurosym License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_3.yml b/src/licensedcode/data/rules/eurosym_3.yml deleted file mode 100644 index c3964b11765..00000000000 --- a/src/licensedcode/data/rules/eurosym_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eurosym_4.RULE b/src/licensedcode/data/rules/eurosym_4.RULE index 7f200f197d4..b671a55282d 100644 --- a/src/licensedcode/data/rules/eurosym_4.RULE +++ b/src/licensedcode/data/rules/eurosym_4.RULE @@ -1 +1,10 @@ +--- +license_expression: eurosym +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Eurosym License Eurosym \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_4.yml b/src/licensedcode/data/rules/eurosym_4.yml deleted file mode 100644 index c3964b11765..00000000000 --- a/src/licensedcode/data/rules/eurosym_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eurosym_5.RULE b/src/licensedcode/data/rules/eurosym_5.RULE index c927af465af..79b36c110d7 100644 --- a/src/licensedcode/data/rules/eurosym_5.RULE +++ b/src/licensedcode/data/rules/eurosym_5.RULE @@ -1 +1,10 @@ +--- +license_expression: eurosym +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Eurosym \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_5.yml b/src/licensedcode/data/rules/eurosym_5.yml deleted file mode 100644 index 1c7540fb6e7..00000000000 --- a/src/licensedcode/data/rules/eurosym_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eurosym -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eurosym_6.RULE b/src/licensedcode/data/rules/eurosym_6.RULE index 10f626633c6..aae078bde1a 100644 --- a/src/licensedcode/data/rules/eurosym_6.RULE +++ b/src/licensedcode/data/rules/eurosym_6.RULE @@ -1 +1,10 @@ +--- +license_expression: eurosym +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Eurosym License \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_6.yml b/src/licensedcode/data/rules/eurosym_6.yml deleted file mode 100644 index 1c7540fb6e7..00000000000 --- a/src/licensedcode/data/rules/eurosym_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eurosym -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eurosym_7.RULE b/src/licensedcode/data/rules/eurosym_7.RULE index 8828bff0eba..aebd1c285b3 100644 --- a/src/licensedcode/data/rules/eurosym_7.RULE +++ b/src/licensedcode/data/rules/eurosym_7.RULE @@ -1 +1,10 @@ +--- +license_expression: eurosym +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Eurosym \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_7.yml b/src/licensedcode/data/rules/eurosym_7.yml deleted file mode 100644 index 1c7540fb6e7..00000000000 --- a/src/licensedcode/data/rules/eurosym_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eurosym -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/eurosym_8.RULE b/src/licensedcode/data/rules/eurosym_8.RULE index 31edffde7f0..4c4935e9c4a 100644 --- a/src/licensedcode/data/rules/eurosym_8.RULE +++ b/src/licensedcode/data/rules/eurosym_8.RULE @@ -1 +1,9 @@ +--- +license_expression: eurosym +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Eurosym +--- + https://licenses.nuget.org/Eurosym \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_8.yml b/src/licensedcode/data/rules/eurosym_8.yml deleted file mode 100644 index a7212295c19..00000000000 --- a/src/licensedcode/data/rules/eurosym_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Eurosym diff --git a/src/licensedcode/data/rules/eurosym_9.RULE b/src/licensedcode/data/rules/eurosym_9.RULE index a7bb53ff67b..ca2cc2dad42 100644 --- a/src/licensedcode/data/rules/eurosym_9.RULE +++ b/src/licensedcode/data/rules/eurosym_9.RULE @@ -1 +1,7 @@ +--- +license_expression: eurosym +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Eurosym \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_9.yml b/src/licensedcode/data/rules/eurosym_9.yml deleted file mode 100644 index 896d4bb6630..00000000000 --- a/src/licensedcode/data/rules/eurosym_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/eurosym_url_1.RULE b/src/licensedcode/data/rules/eurosym_url_1.RULE index 36b022e287f..23dbdfc21c9 100644 --- a/src/licensedcode/data/rules/eurosym_url_1.RULE +++ b/src/licensedcode/data/rules/eurosym_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: eurosym +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eurosym +--- + https://spdx.org/licenses/eurosym \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_url_1.yml b/src/licensedcode/data/rules/eurosym_url_1.yml deleted file mode 100644 index d51b43e64bf..00000000000 --- a/src/licensedcode/data/rules/eurosym_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eurosym diff --git a/src/licensedcode/data/rules/eurosym_url_2.RULE b/src/licensedcode/data/rules/eurosym_url_2.RULE index 9b4c3483fa3..82bd0d864eb 100644 --- a/src/licensedcode/data/rules/eurosym_url_2.RULE +++ b/src/licensedcode/data/rules/eurosym_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: eurosym +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/eurosym.html +--- + https://spdx.org/licenses/eurosym.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/eurosym_url_2.yml b/src/licensedcode/data/rules/eurosym_url_2.yml deleted file mode 100644 index ededafbd1ee..00000000000 --- a/src/licensedcode/data/rules/eurosym_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: eurosym -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/eurosym.html diff --git a/src/licensedcode/data/rules/facebook-nuclide_1.RULE b/src/licensedcode/data/rules/facebook-nuclide_1.RULE index e55e53b7423..afec12d7d98 100644 --- a/src/licensedcode/data/rules/facebook-nuclide_1.RULE +++ b/src/licensedcode/data/rules/facebook-nuclide_1.RULE @@ -1 +1,7 @@ +--- +license_expression: facebook-nuclide +is_license_reference: yes +relevance: 100 +--- + LICENSE AGREEMENT For Nuclide software \ No newline at end of file diff --git a/src/licensedcode/data/rules/facebook-nuclide_1.yml b/src/licensedcode/data/rules/facebook-nuclide_1.yml deleted file mode 100644 index 4cc8407e8ce..00000000000 --- a/src/licensedcode/data/rules/facebook-nuclide_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: facebook-nuclide -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/facebook-patent-rights-2_1.RULE b/src/licensedcode/data/rules/facebook-patent-rights-2_1.RULE index d17c39819fe..3633a0dc8c8 100644 --- a/src/licensedcode/data/rules/facebook-patent-rights-2_1.RULE +++ b/src/licensedcode/data/rules/facebook-patent-rights-2_1.RULE @@ -1 +1,9 @@ +--- +license_expression: facebook-patent-rights-2 +is_license_notice: yes +relevance: 90 +referenced_filenames: + - PATENTS +--- + An additional grant of patent rights can be found in the PATENTS file in the * same directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/facebook-patent-rights-2_1.yml b/src/licensedcode/data/rules/facebook-patent-rights-2_1.yml deleted file mode 100644 index 54d078bfc3c..00000000000 --- a/src/licensedcode/data/rules/facebook-patent-rights-2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: facebook-patent-rights-2 -is_license_notice: yes -relevance: 90 -referenced_filenames: - - PATENTS diff --git a/src/licensedcode/data/rules/facebook-patent-rights-2_2.RULE b/src/licensedcode/data/rules/facebook-patent-rights-2_2.RULE index fcc9fcf1350..725aaceebfc 100644 --- a/src/licensedcode/data/rules/facebook-patent-rights-2_2.RULE +++ b/src/licensedcode/data/rules/facebook-patent-rights-2_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: facebook-patent-rights-2 +is_license_text: yes +relevance: 100 +--- + Additional Grant of Patent Rights Version 2 "Software" means the Draft.js software distributed by Facebook, Inc. diff --git a/src/licensedcode/data/rules/facebook-patent-rights-2_2.yml b/src/licensedcode/data/rules/facebook-patent-rights-2_2.yml deleted file mode 100644 index 5ed4b64e530..00000000000 --- a/src/licensedcode/data/rules/facebook-patent-rights-2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: facebook-patent-rights-2 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fair.RULE b/src/licensedcode/data/rules/fair.RULE index 09d2c943261..c6cb090800d 100644 --- a/src/licensedcode/data/rules/fair.RULE +++ b/src/licensedcode/data/rules/fair.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/fair.php +--- + http://opensource.org/licenses/fair.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair.SPDX.RULE b/src/licensedcode/data/rules/fair.SPDX.RULE index 3a9977d5778..81b4b620912 100644 --- a/src/licensedcode/data/rules/fair.SPDX.RULE +++ b/src/licensedcode/data/rules/fair.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: fair +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Fair License (plain text) diff --git a/src/licensedcode/data/rules/fair.SPDX.yml b/src/licensedcode/data/rules/fair.SPDX.yml deleted file mode 100644 index 7fff167ead1..00000000000 --- a/src/licensedcode/data/rules/fair.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: fair -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/fair.yml b/src/licensedcode/data/rules/fair.yml deleted file mode 100644 index 5ddd704bf2a..00000000000 --- a/src/licensedcode/data/rules/fair.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/fair.php diff --git a/src/licensedcode/data/rules/fair_1.RULE b/src/licensedcode/data/rules/fair_1.RULE index 30f9aea3edf..dde7f501740 100644 --- a/src/licensedcode/data/rules/fair_1.RULE +++ b/src/licensedcode/data/rules/fair_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/fair.php +--- + http://www.opensource.org/licenses/fair.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_1.yml b/src/licensedcode/data/rules/fair_1.yml deleted file mode 100644 index 26648a90431..00000000000 --- a/src/licensedcode/data/rules/fair_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/fair.php diff --git a/src/licensedcode/data/rules/fair_10.RULE b/src/licensedcode/data/rules/fair_10.RULE index 9ff343b4533..948b324824f 100644 --- a/src/licensedcode/data/rules/fair_10.RULE +++ b/src/licensedcode/data/rules/fair_10.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Fair +--- + https://licenses.nuget.org/Fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_10.yml b/src/licensedcode/data/rules/fair_10.yml deleted file mode 100644 index 6c6a81f5f0c..00000000000 --- a/src/licensedcode/data/rules/fair_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Fair diff --git a/src/licensedcode/data/rules/fair_11.RULE b/src/licensedcode/data/rules/fair_11.RULE index 5f273ef3b69..c41649bdaad 100644 --- a/src/licensedcode/data/rules/fair_11.RULE +++ b/src/licensedcode/data/rules/fair_11.RULE @@ -1 +1,7 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_11.yml b/src/licensedcode/data/rules/fair_11.yml deleted file mode 100644 index 8924a8e0232..00000000000 --- a/src/licensedcode/data/rules/fair_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fair_12.RULE b/src/licensedcode/data/rules/fair_12.RULE index 8bc34d95606..d5acd10ec63 100644 --- a/src/licensedcode/data/rules/fair_12.RULE +++ b/src/licensedcode/data/rules/fair_12.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Fair +--- + {{Fair}} https://spdx.org/licenses/Fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_12.yml b/src/licensedcode/data/rules/fair_12.yml deleted file mode 100644 index 1e404a4d803..00000000000 --- a/src/licensedcode/data/rules/fair_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Fair diff --git a/src/licensedcode/data/rules/fair_13.RULE b/src/licensedcode/data/rules/fair_13.RULE index 6d14ba8a6cf..995b74b6742 100644 --- a/src/licensedcode/data/rules/fair_13.RULE +++ b/src/licensedcode/data/rules/fair_13.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Fair +--- + LICENSE {{Fair}} https://spdx.org/licenses/Fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_13.yml b/src/licensedcode/data/rules/fair_13.yml deleted file mode 100644 index 1e404a4d803..00000000000 --- a/src/licensedcode/data/rules/fair_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Fair diff --git a/src/licensedcode/data/rules/fair_2.RULE b/src/licensedcode/data/rules/fair_2.RULE index d346ac84492..93081f428c0 100644 --- a/src/licensedcode/data/rules/fair_2.RULE +++ b/src/licensedcode/data/rules/fair_2.RULE @@ -1 +1,7 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +--- + Fair License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_2.yml b/src/licensedcode/data/rules/fair_2.yml deleted file mode 100644 index 8924a8e0232..00000000000 --- a/src/licensedcode/data/rules/fair_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fair_3.RULE b/src/licensedcode/data/rules/fair_3.RULE index 79668ca0392..5014af5b9e8 100644 --- a/src/licensedcode/data/rules/fair_3.RULE +++ b/src/licensedcode/data/rules/fair_3.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fair.io/ +--- + `Fair` - [Fair License](https://fair.io/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_3.yml b/src/licensedcode/data/rules/fair_3.yml deleted file mode 100644 index 99c58431e88..00000000000 --- a/src/licensedcode/data/rules/fair_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fair.io/ diff --git a/src/licensedcode/data/rules/fair_4.RULE b/src/licensedcode/data/rules/fair_4.RULE index 7685a38849a..98a217ccbdc 100644 --- a/src/licensedcode/data/rules/fair_4.RULE +++ b/src/licensedcode/data/rules/fair_4.RULE @@ -1 +1,10 @@ +--- +license_expression: fair +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Fair License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_4.yml b/src/licensedcode/data/rules/fair_4.yml deleted file mode 100644 index 2888355c288..00000000000 --- a/src/licensedcode/data/rules/fair_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fair -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fair_5.RULE b/src/licensedcode/data/rules/fair_5.RULE index 56c9c4c6b62..ea6d4c8d8a1 100644 --- a/src/licensedcode/data/rules/fair_5.RULE +++ b/src/licensedcode/data/rules/fair_5.RULE @@ -1 +1,10 @@ +--- +license_expression: fair +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Fair Fair License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_5.yml b/src/licensedcode/data/rules/fair_5.yml deleted file mode 100644 index 2888355c288..00000000000 --- a/src/licensedcode/data/rules/fair_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fair -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fair_6.RULE b/src/licensedcode/data/rules/fair_6.RULE index e22807b83d4..e484e36a9bd 100644 --- a/src/licensedcode/data/rules/fair_6.RULE +++ b/src/licensedcode/data/rules/fair_6.RULE @@ -1 +1,10 @@ +--- +license_expression: fair +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Fair License Fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_6.yml b/src/licensedcode/data/rules/fair_6.yml deleted file mode 100644 index 2888355c288..00000000000 --- a/src/licensedcode/data/rules/fair_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fair -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fair_7.RULE b/src/licensedcode/data/rules/fair_7.RULE index d935a089f86..2962db7f36f 100644 --- a/src/licensedcode/data/rules/fair_7.RULE +++ b/src/licensedcode/data/rules/fair_7.RULE @@ -1 +1,10 @@ +--- +license_expression: fair +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_7.yml b/src/licensedcode/data/rules/fair_7.yml deleted file mode 100644 index 445914f1d5b..00000000000 --- a/src/licensedcode/data/rules/fair_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fair -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fair_8.RULE b/src/licensedcode/data/rules/fair_8.RULE index 8b45ce6f3b0..8b0c2c6d4f5 100644 --- a/src/licensedcode/data/rules/fair_8.RULE +++ b/src/licensedcode/data/rules/fair_8.RULE @@ -1 +1,10 @@ +--- +license_expression: fair +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Fair License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_8.yml b/src/licensedcode/data/rules/fair_8.yml deleted file mode 100644 index 445914f1d5b..00000000000 --- a/src/licensedcode/data/rules/fair_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fair -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fair_9.RULE b/src/licensedcode/data/rules/fair_9.RULE index 3ff4e9d1f6f..905cbdcf9f0 100644 --- a/src/licensedcode/data/rules/fair_9.RULE +++ b/src/licensedcode/data/rules/fair_9.RULE @@ -1 +1,10 @@ +--- +license_expression: fair +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_9.yml b/src/licensedcode/data/rules/fair_9.yml deleted file mode 100644 index 445914f1d5b..00000000000 --- a/src/licensedcode/data/rules/fair_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fair -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fair_url_1.RULE b/src/licensedcode/data/rules/fair_url_1.RULE index 52114b538fa..dadf6d6d563 100644 --- a/src/licensedcode/data/rules/fair_url_1.RULE +++ b/src/licensedcode/data/rules/fair_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fair +--- + https://spdx.org/licenses/fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_url_1.yml b/src/licensedcode/data/rules/fair_url_1.yml deleted file mode 100644 index 23aadf0abf1..00000000000 --- a/src/licensedcode/data/rules/fair_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fair diff --git a/src/licensedcode/data/rules/fair_url_2.RULE b/src/licensedcode/data/rules/fair_url_2.RULE index 66f6d790f51..676a3228c05 100644 --- a/src/licensedcode/data/rules/fair_url_2.RULE +++ b/src/licensedcode/data/rules/fair_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fair.html +--- + https://spdx.org/licenses/fair.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_url_2.yml b/src/licensedcode/data/rules/fair_url_2.yml deleted file mode 100644 index 3d4d2813299..00000000000 --- a/src/licensedcode/data/rules/fair_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fair.html diff --git a/src/licensedcode/data/rules/fair_url_glc_162.RULE b/src/licensedcode/data/rules/fair_url_glc_162.RULE index 9bd6b8242a6..c1740ea8a03 100644 --- a/src/licensedcode/data/rules/fair_url_glc_162.RULE +++ b/src/licensedcode/data/rules/fair_url_glc_162.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/fair +--- + http://www.opensource.org/licenses/fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_url_glc_162.yml b/src/licensedcode/data/rules/fair_url_glc_162.yml deleted file mode 100644 index d4113135a15..00000000000 --- a/src/licensedcode/data/rules/fair_url_glc_162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/fair diff --git a/src/licensedcode/data/rules/fair_url_glc_163.RULE b/src/licensedcode/data/rules/fair_url_glc_163.RULE index c3f560db77d..8b996f87be1 100644 --- a/src/licensedcode/data/rules/fair_url_glc_163.RULE +++ b/src/licensedcode/data/rules/fair_url_glc_163.RULE @@ -1 +1,9 @@ +--- +license_expression: fair +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/fair +--- + https://www.opensource.org/licenses/fair \ No newline at end of file diff --git a/src/licensedcode/data/rules/fair_url_glc_163.yml b/src/licensedcode/data/rules/fair_url_glc_163.yml deleted file mode 100644 index 007dcdd0640..00000000000 --- a/src/licensedcode/data/rules/fair_url_glc_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fair -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/fair diff --git a/src/licensedcode/data/rules/false-positive_1.RULE b/src/licensedcode/data/rules/false-positive_1.RULE index a8b17ea7553..9f75bca85da 100644 --- a/src/licensedcode/data/rules/false-positive_1.RULE +++ b/src/licensedcode/data/rules/false-positive_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: A comment about licenses. +--- + Allowed licenses: The use of licenses which do not allow derivatives or redistribution is not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_1.yml b/src/licensedcode/data/rules/false-positive_1.yml deleted file mode 100644 index 932818a910d..00000000000 --- a/src/licensedcode/data/rules/false-positive_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A comment about licenses. diff --git a/src/licensedcode/data/rules/false-positive_10.RULE b/src/licensedcode/data/rules/false-positive_10.RULE index 4b54390a09e..507901127e6 100644 --- a/src/licensedcode/data/rules/false-positive_10.RULE +++ b/src/licensedcode/data/rules/false-positive_10.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a commentary on FFmpeg licensing +--- + OpenCV uses pre-built ffmpeg binaries, built with proper flags (without GPL components) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_10.yml b/src/licensedcode/data/rules/false-positive_10.yml deleted file mode 100644 index 8cb3d602048..00000000000 --- a/src/licensedcode/data/rules/false-positive_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a commentary on FFmpeg licensing diff --git a/src/licensedcode/data/rules/false-positive_100.RULE b/src/licensedcode/data/rules/false-positive_100.RULE index 5c3db5114e8..b2e543e6592 100644 --- a/src/licensedcode/data/rules/false-positive_100.RULE +++ b/src/licensedcode/data/rules/false-positive_100.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: configure script instruction +--- + lgpl.Tpo \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_100.yml b/src/licensedcode/data/rules/false-positive_100.yml deleted file mode 100644 index 0f3b0a69c29..00000000000 --- a/src/licensedcode/data/rules/false-positive_100.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: configure script instruction diff --git a/src/licensedcode/data/rules/false-positive_101.RULE b/src/licensedcode/data/rules/false-positive_101.RULE index 0c7c83c16d1..d33299e2460 100644 --- a/src/licensedcode/data/rules/false-positive_101.RULE +++ b/src/licensedcode/data/rules/false-positive_101.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: this is the email of the PCRE author and is also part of its license +--- + Written by: Philip Hazel ph10 cam.ac.uk University of Cambridge Computing Service diff --git a/src/licensedcode/data/rules/false-positive_101.yml b/src/licensedcode/data/rules/false-positive_101.yml deleted file mode 100644 index c4e10be8d31..00000000000 --- a/src/licensedcode/data/rules/false-positive_101.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is the email of the PCRE author and is also part of its license diff --git a/src/licensedcode/data/rules/false-positive_102.RULE b/src/licensedcode/data/rules/false-positive_102.RULE index 1d57d4ccaa4..d3f78869214 100644 --- a/src/licensedcode/data/rules/false-positive_102.RULE +++ b/src/licensedcode/data/rules/false-positive_102.RULE @@ -1,3 +1,9 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'CC BY 4.0'' -function +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_102.yml b/src/licensedcode/data/rules/false-positive_102.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_103.RULE b/src/licensedcode/data/rules/false-positive_103.RULE index 80b6341252e..a227d57084d 100644 --- a/src/licensedcode/data/rules/false-positive_103.RULE +++ b/src/licensedcode/data/rules/false-positive_103.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license +--- + From: Tobias Burnus Xara (for a while: Corel Xara) is a graphic package, see -http://www.xara.com/ for Windows and as GPL application for Linux +http://www.xara.com/ for Windows and as GPL application for Linux \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_103.yml b/src/licensedcode/data/rules/false-positive_103.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_103.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_104.RULE b/src/licensedcode/data/rules/false-positive_104.RULE index 91948113b94..e975110a939 100644 --- a/src/licensedcode/data/rules/false-positive_104.RULE +++ b/src/licensedcode/data/rules/false-positive_104.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + distributed under the name \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_104.yml b/src/licensedcode/data/rules/false-positive_104.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_104.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_105.RULE b/src/licensedcode/data/rules/false-positive_105.RULE index 3bcb238d443..e2bc8326e08 100644 --- a/src/licensedcode/data/rules/false-positive_105.RULE +++ b/src/licensedcode/data/rules/false-positive_105.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + GPL4_0001 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_105.yml b/src/licensedcode/data/rules/false-positive_105.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_105.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_106.RULE b/src/licensedcode/data/rules/false-positive_106.RULE index b84e458efbb..6cb8a7446be 100644 --- a/src/licensedcode/data/rules/false-positive_106.RULE +++ b/src/licensedcode/data/rules/false-positive_106.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + SPDX-License-Identifier: {{ expression }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_106.yml b/src/licensedcode/data/rules/false-positive_106.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_106.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_107.RULE b/src/licensedcode/data/rules/false-positive_107.RULE index 659e27b9e2b..3414cf50cf5 100644 --- a/src/licensedcode/data/rules/false-positive_107.RULE +++ b/src/licensedcode/data/rules/false-positive_107.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: The three functions below display the --version information ....followed by a short GPLv3+ + notice and ... +--- + by a short GPLv3+ notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_107.yml b/src/licensedcode/data/rules/false-positive_107.yml deleted file mode 100644 index 6e50f0046d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: The three functions below display the --version information ....followed by a short GPLv3+ - notice and ... diff --git a/src/licensedcode/data/rules/false-positive_108.RULE b/src/licensedcode/data/rules/false-positive_108.RULE index 9d0d7282467..447dfcd6101 100644 --- a/src/licensedcode/data/rules/false-positive_108.RULE +++ b/src/licensedcode/data/rules/false-positive_108.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + from `SPDX-License-Identifier`. This \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_108.yml b/src/licensedcode/data/rules/false-positive_108.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_108.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_109.RULE b/src/licensedcode/data/rules/false-positive_109.RULE index 20f3c59b4b6..88505b4300f 100644 --- a/src/licensedcode/data/rules/false-positive_109.RULE +++ b/src/licensedcode/data/rules/false-positive_109.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + permission is granted to read all files \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_109.yml b/src/licensedcode/data/rules/false-positive_109.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_109.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_11.RULE b/src/licensedcode/data/rules/false-positive_11.RULE index 48b3086a390..cab61c3fde3 100644 --- a/src/licensedcode/data/rules/false-positive_11.RULE +++ b/src/licensedcode/data/rules/false-positive_11.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: about the HTTP server, not the license +--- + # Apache 2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_11.yml b/src/licensedcode/data/rules/false-positive_11.yml deleted file mode 100644 index 32b60d3bc3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: about the HTTP server, not the license diff --git a/src/licensedcode/data/rules/false-positive_110.RULE b/src/licensedcode/data/rules/false-positive_110.RULE index eab12172644..da12edbb597 100644 --- a/src/licensedcode/data/rules/false-positive_110.RULE +++ b/src/licensedcode/data/rules/false-positive_110.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ecos symbol +--- + GPL_B4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_110.yml b/src/licensedcode/data/rules/false-positive_110.yml deleted file mode 100644 index de583528724..00000000000 --- a/src/licensedcode/data/rules/false-positive_110.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ecos symbol diff --git a/src/licensedcode/data/rules/false-positive_111.RULE b/src/licensedcode/data/rules/false-positive_111.RULE index b46e721435c..afc3b26371d 100644 --- a/src/licensedcode/data/rules/false-positive_111.RULE +++ b/src/licensedcode/data/rules/false-positive_111.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this shows in some license texts but alone is not a detected license clue +--- + www google com policies privacy \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_111.yml b/src/licensedcode/data/rules/false-positive_111.yml deleted file mode 100644 index 5c9cf80da0f..00000000000 --- a/src/licensedcode/data/rules/false-positive_111.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this shows in some license texts but alone is not a detected license clue diff --git a/src/licensedcode/data/rules/false-positive_112.RULE b/src/licensedcode/data/rules/false-positive_112.RULE index 2bf8da6b7b8..8824887b64d 100644 --- a/src/licensedcode/data/rules/false-positive_112.RULE +++ b/src/licensedcode/data/rules/false-positive_112.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + misspelt SPDX License Identifier, suggest \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_112.yml b/src/licensedcode/data/rules/false-positive_112.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_112.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_113.RULE b/src/licensedcode/data/rules/false-positive_113.RULE index 69138e6155c..bf26b586ca9 100644 --- a/src/licensedcode/data/rules/false-positive_113.RULE +++ b/src/licensedcode/data/rules/false-positive_113.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + GPL5_1111 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_113.yml b/src/licensedcode/data/rules/false-positive_113.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_113.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_114.RULE b/src/licensedcode/data/rules/false-positive_114.RULE index 57333d81c85..2cdce886a26 100644 --- a/src/licensedcode/data/rules/false-positive_114.RULE +++ b/src/licensedcode/data/rules/false-positive_114.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the kernel +--- + GPL\"); [MODULE_AUTHOR](\"D \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_114.yml b/src/licensedcode/data/rules/false-positive_114.yml deleted file mode 100644 index aaa2a8eb7cc..00000000000 --- a/src/licensedcode/data/rules/false-positive_114.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the kernel diff --git a/src/licensedcode/data/rules/false-positive_115.RULE b/src/licensedcode/data/rules/false-positive_115.RULE index 5685da39d45..c2b65da4215 100644 --- a/src/licensedcode/data/rules/false-positive_115.RULE +++ b/src/licensedcode/data/rules/false-positive_115.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. this is dockbook markup in GNOME license translations +--- + linkend fdl-document \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_115.yml b/src/licensedcode/data/rules/false-positive_115.yml deleted file mode 100644 index 498300b74ea..00000000000 --- a/src/licensedcode/data/rules/false-positive_115.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. this is dockbook markup in GNOME license translations diff --git a/src/licensedcode/data/rules/false-positive_116.RULE b/src/licensedcode/data/rules/false-positive_116.RULE index 72750c2d141..53805eff3cb 100644 --- a/src/licensedcode/data/rules/false-positive_116.RULE +++ b/src/licensedcode/data/rules/false-positive_116.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + #define GPL4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_116.yml b/src/licensedcode/data/rules/false-positive_116.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_116.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_117.RULE b/src/licensedcode/data/rules/false-positive_117.RULE index cceffaafa0a..99bae01d5a1 100644 --- a/src/licensedcode/data/rules/false-positive_117.RULE +++ b/src/licensedcode/data/rules/false-positive_117.RULE @@ -1,4 +1,8 @@ - // e.g. 'BY-NC' - function - +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'BY-NC' + function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_117.yml b/src/licensedcode/data/rules/false-positive_117.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_118.RULE b/src/licensedcode/data/rules/false-positive_118.RULE index a71d7d29c45..bbef34ef8f9 100644 --- a/src/licensedcode/data/rules/false-positive_118.RULE +++ b/src/licensedcode/data/rules/false-positive_118.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: symbols +--- + GPL_A5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_118.yml b/src/licensedcode/data/rules/false-positive_118.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_118.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_119.RULE b/src/licensedcode/data/rules/false-positive_119.RULE index dfc9ee56f17..80a70ba7af5 100644 --- a/src/licensedcode/data/rules/false-positive_119.RULE +++ b/src/licensedcode/data/rules/false-positive_119.RULE @@ -1,5 +1,9 @@ - - // e.g. 'BY-NC-4.0' - function +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'BY-NC-4.0' + function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_119.yml b/src/licensedcode/data/rules/false-positive_119.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_12.RULE b/src/licensedcode/data/rules/false-positive_12.RULE index 37f51dc4f3c..2c6f4365bc7 100644 --- a/src/licensedcode/data/rules/false-positive_12.RULE +++ b/src/licensedcode/data/rules/false-positive_12.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license notice +--- + gpl 10 gpl 20 gpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_12.yml b/src/licensedcode/data/rules/false-positive_12.yml deleted file mode 100644 index 3fb8fec5017..00000000000 --- a/src/licensedcode/data/rules/false-positive_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license notice diff --git a/src/licensedcode/data/rules/false-positive_120.RULE b/src/licensedcode/data/rules/false-positive_120.RULE index 6cfb77c9c4a..93a229cda90 100644 --- a/src/licensedcode/data/rules/false-positive_120.RULE +++ b/src/licensedcode/data/rules/false-positive_120.RULE @@ -1 +1,6 @@ -This does not reduce your rights granted by the GNU General Public License. +--- +is_false_positive: yes +notes: comments about licensing +--- + +This does not reduce your rights granted by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_120.yml b/src/licensedcode/data/rules/false-positive_120.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_120.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_121.RULE b/src/licensedcode/data/rules/false-positive_121.RULE index e5980aaba84..7db23617021 100644 --- a/src/licensedcode/data/rules/false-positive_121.RULE +++ b/src/licensedcode/data/rules/false-positive_121.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + SPDX License Identifier, is now correctly identified \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_121.yml b/src/licensedcode/data/rules/false-positive_121.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_121.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_122.RULE b/src/licensedcode/data/rules/false-positive_122.RULE index 7707cf9d38e..fc5b99e5588 100644 --- a/src/licensedcode/data/rules/false-positive_122.RULE +++ b/src/licensedcode/data/rules/false-positive_122.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + unsigned int gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_122.yml b/src/licensedcode/data/rules/false-positive_122.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_122.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_123.RULE b/src/licensedcode/data/rules/false-positive_123.RULE index 7ba841189ae..70f66667bca 100644 --- a/src/licensedcode/data/rules/false-positive_123.RULE +++ b/src/licensedcode/data/rules/false-positive_123.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. this is dockbook markup in GNOME license translations +--- + fdl-cover-texts \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_123.yml b/src/licensedcode/data/rules/false-positive_123.yml deleted file mode 100644 index 498300b74ea..00000000000 --- a/src/licensedcode/data/rules/false-positive_123.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. this is dockbook markup in GNOME license translations diff --git a/src/licensedcode/data/rules/false-positive_124.RULE b/src/licensedcode/data/rules/false-positive_124.RULE index 7a431dad923..8b2e71c37cc 100644 --- a/src/licensedcode/data/rules/false-positive_124.RULE +++ b/src/licensedcode/data/rules/false-positive_124.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: used in linux, GPIOlib support +--- + S5PC100_GPL2(0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_124.yml b/src/licensedcode/data/rules/false-positive_124.yml deleted file mode 100644 index 0e1da3afa47..00000000000 --- a/src/licensedcode/data/rules/false-positive_124.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: used in linux, GPIOlib support diff --git a/src/licensedcode/data/rules/false-positive_125.RULE b/src/licensedcode/data/rules/false-positive_125.RULE index 3f48fd35830..a578e5cd335 100644 --- a/src/licensedcode/data/rules/false-positive_125.RULE +++ b/src/licensedcode/data/rules/false-positive_125.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + msgid "SPDX License Identifier of license" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_125.yml b/src/licensedcode/data/rules/false-positive_125.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_125.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_126.RULE b/src/licensedcode/data/rules/false-positive_126.RULE index a905239d207..8b463dbbbb8 100644 --- a/src/licensedcode/data/rules/false-positive_126.RULE +++ b/src/licensedcode/data/rules/false-positive_126.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel +--- + prison]-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_126.yml b/src/licensedcode/data/rules/false-positive_126.yml deleted file mode 100644 index 84090cc0d43..00000000000 --- a/src/licensedcode/data/rules/false-positive_126.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel diff --git a/src/licensedcode/data/rules/false-positive_127.RULE b/src/licensedcode/data/rules/false-positive_127.RULE index e318cbab899..96645d54d66 100644 --- a/src/licensedcode/data/rules/false-positive_127.RULE +++ b/src/licensedcode/data/rules/false-positive_127.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + help=_("SPDX License Identifier of license"), \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_127.yml b/src/licensedcode/data/rules/false-positive_127.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_127.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_128.RULE b/src/licensedcode/data/rules/false-positive_128.RULE index 0567f793641..245550696ec 100644 --- a/src/licensedcode/data/rules/false-positive_128.RULE +++ b/src/licensedcode/data/rules/false-positive_128.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in a makefile +--- + Require the latest GFDL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_128.yml b/src/licensedcode/data/rules/false-positive_128.yml deleted file mode 100644 index 60b03715a4c..00000000000 --- a/src/licensedcode/data/rules/false-positive_128.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in a makefile diff --git a/src/licensedcode/data/rules/false-positive_129.RULE b/src/licensedcode/data/rules/false-positive_129.RULE index 981a0c3f4c7..c42e26908e5 100644 --- a/src/licensedcode/data/rules/false-positive_129.RULE +++ b/src/licensedcode/data/rules/false-positive_129.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + permission is granted to the specified domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_129.yml b/src/licensedcode/data/rules/false-positive_129.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_129.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_13.RULE b/src/licensedcode/data/rules/false-positive_13.RULE index bc7b2130493..7aaf2b53df2 100644 --- a/src/licensedcode/data/rules/false-positive_13.RULE +++ b/src/licensedcode/data/rules/false-positive_13.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + #define GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_13.yml b/src/licensedcode/data/rules/false-positive_13.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_130.RULE b/src/licensedcode/data/rules/false-positive_130.RULE index 92dddc6be66..80741c17287 100644 --- a/src/licensedcode/data/rules/false-positive_130.RULE +++ b/src/licensedcode/data/rules/false-positive_130.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variables named after licenses +--- + VALA_PROJECT_LICENSE_GPL3, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_130.yml b/src/licensedcode/data/rules/false-positive_130.yml deleted file mode 100644 index cc491c76e8d..00000000000 --- a/src/licensedcode/data/rules/false-positive_130.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variables named after licenses diff --git a/src/licensedcode/data/rules/false-positive_131.RULE b/src/licensedcode/data/rules/false-positive_131.RULE index fa48819549d..1279885f6a4 100644 --- a/src/licensedcode/data/rules/false-positive_131.RULE +++ b/src/licensedcode/data/rules/false-positive_131.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: a commentary on FFmpeg licensing +--- + If LGPL/GPL software can not be supplied with your OpenCV-based product, simply exclude opencv_ffmpeg*.dll from your distribution; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_131.yml b/src/licensedcode/data/rules/false-positive_131.yml deleted file mode 100644 index 8cb3d602048..00000000000 --- a/src/licensedcode/data/rules/false-positive_131.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a commentary on FFmpeg licensing diff --git a/src/licensedcode/data/rules/false-positive_132.RULE b/src/licensedcode/data/rules/false-positive_132.RULE index ac11de1c97a..9199463ac0f 100644 --- a/src/licensedcode/data/rules/false-positive_132.RULE +++ b/src/licensedcode/data/rules/false-positive_132.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. this is dockbook markup in GNOME license translations +--- + fdl-document \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_132.yml b/src/licensedcode/data/rules/false-positive_132.yml deleted file mode 100644 index 498300b74ea..00000000000 --- a/src/licensedcode/data/rules/false-positive_132.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. this is dockbook markup in GNOME license translations diff --git a/src/licensedcode/data/rules/false-positive_133.RULE b/src/licensedcode/data/rules/false-positive_133.RULE index e58a564f12e..c171e5c2f6f 100644 --- a/src/licensedcode/data/rules/false-positive_133.RULE +++ b/src/licensedcode/data/rules/false-positive_133.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + GPL feature set \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_133.yml b/src/licensedcode/data/rules/false-positive_133.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_133.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_134.RULE b/src/licensedcode/data/rules/false-positive_134.RULE index f635c530cf5..8644cfcc54a 100644 --- a/src/licensedcode/data/rules/false-positive_134.RULE +++ b/src/licensedcode/data/rules/false-positive_134.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Comment in ebpf in github.com/cilium/ebpf/prog.go +--- + Some helpers are only available if the license is deemed compatible with the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_134.yml b/src/licensedcode/data/rules/false-positive_134.yml deleted file mode 100644 index 8a57c52b7c5..00000000000 --- a/src/licensedcode/data/rules/false-positive_134.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Comment in ebpf in github.com/cilium/ebpf/prog.go diff --git a/src/licensedcode/data/rules/false-positive_135.RULE b/src/licensedcode/data/rules/false-positive_135.RULE index a1d8c5985a7..0412d45173a 100644 --- a/src/licensedcode/data/rules/false-positive_135.RULE +++ b/src/licensedcode/data/rules/false-positive_135.RULE @@ -1 +1,6 @@ -ssc1 \b, Samsung stereo, single stream (patent pending) \ No newline at end of file +--- +is_false_positive: yes +notes: not a license +--- + +ssc1 \b, Samsung stereo, single stream (patent pending) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_135.yml b/src/licensedcode/data/rules/false-positive_135.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_135.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_136.RULE b/src/licensedcode/data/rules/false-positive_136.RULE index cc518c3c7b7..cde2150c031 100644 --- a/src/licensedcode/data/rules/false-positive_136.RULE +++ b/src/licensedcode/data/rules/false-positive_136.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected +--- + This file is not needed with autoconf \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_136.yml b/src/licensedcode/data/rules/false-positive_136.yml deleted file mode 100644 index 73b84545442..00000000000 --- a/src/licensedcode/data/rules/false-positive_136.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected diff --git a/src/licensedcode/data/rules/false-positive_137.RULE b/src/licensedcode/data/rules/false-positive_137.RULE index c07b0e898d4..d2428e062b6 100644 --- a/src/licensedcode/data/rules/false-positive_137.RULE +++ b/src/licensedcode/data/rules/false-positive_137.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a list of files +--- + spec.in COPYING.LIB COPYING.GPL LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_137.yml b/src/licensedcode/data/rules/false-positive_137.yml deleted file mode 100644 index 5f55aa127ab..00000000000 --- a/src/licensedcode/data/rules/false-positive_137.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a list of files diff --git a/src/licensedcode/data/rules/false-positive_138.RULE b/src/licensedcode/data/rules/false-positive_138.RULE index 841abbd6a3f..b965ca848b5 100644 --- a/src/licensedcode/data/rules/false-positive_138.RULE +++ b/src/licensedcode/data/rules/false-positive_138.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this half part of copyright should not be part of any rule or license but it does. +--- + All Rights Reserved Contributor s \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_138.yml b/src/licensedcode/data/rules/false-positive_138.yml deleted file mode 100644 index 6c289001937..00000000000 --- a/src/licensedcode/data/rules/false-positive_138.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this half part of copyright should not be part of any rule or license but it does. diff --git a/src/licensedcode/data/rules/false-positive_139.RULE b/src/licensedcode/data/rules/false-positive_139.RULE index f65648cb08c..3356d50bfb4 100644 --- a/src/licensedcode/data/rules/false-positive_139.RULE +++ b/src/licensedcode/data/rules/false-positive_139.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Comment in ebpf in github.com/cilium/ebpf/ +--- + uint32 gpl_compatible uint32 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_139.yml b/src/licensedcode/data/rules/false-positive_139.yml deleted file mode 100644 index 8cce8d4ddab..00000000000 --- a/src/licensedcode/data/rules/false-positive_139.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Comment in ebpf in github.com/cilium/ebpf/ diff --git a/src/licensedcode/data/rules/false-positive_14.RULE b/src/licensedcode/data/rules/false-positive_14.RULE index fc5fd20ed9a..d1a12a2ed3e 100644 --- a/src/licensedcode/data/rules/false-positive_14.RULE +++ b/src/licensedcode/data/rules/false-positive_14.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: comments about the older license of a third-party package +--- + # Older versions of Unidecode are licensed under Artistic License; # assume an older version is installed. - from unidecode import unidecode as transliterate + from unidecode import unidecode as transliterate \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_14.yml b/src/licensedcode/data/rules/false-positive_14.yml deleted file mode 100644 index 9d7d868cabd..00000000000 --- a/src/licensedcode/data/rules/false-positive_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about the older license of a third-party package diff --git a/src/licensedcode/data/rules/false-positive_140.RULE b/src/licensedcode/data/rules/false-positive_140.RULE index f6fa8779675..d790bb7234f 100644 --- a/src/licensedcode/data/rules/false-positive_140.RULE +++ b/src/licensedcode/data/rules/false-positive_140.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + #define GPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_140.yml b/src/licensedcode/data/rules/false-positive_140.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_140.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_141.RULE b/src/licensedcode/data/rules/false-positive_141.RULE index f97643b6fdc..c9875f13c8d 100644 --- a/src/licensedcode/data/rules/false-positive_141.RULE +++ b/src/licensedcode/data/rules/false-positive_141.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license statement +--- + License *License `json:"license,omitempty"` \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_141.yml b/src/licensedcode/data/rules/false-positive_141.yml deleted file mode 100644 index 6b206ef4d3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_141.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license statement diff --git a/src/licensedcode/data/rules/false-positive_142.RULE b/src/licensedcode/data/rules/false-positive_142.RULE index a35d7a2d190..9067eff3609 100644 --- a/src/licensedcode/data/rules/false-positive_142.RULE +++ b/src/licensedcode/data/rules/false-positive_142.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL1_1111 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_142.yml b/src/licensedcode/data/rules/false-positive_142.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_142.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_143.RULE b/src/licensedcode/data/rules/false-positive_143.RULE index 89afcc9c039..9b379d1ba26 100644 --- a/src/licensedcode/data/rules/false-positive_143.RULE +++ b/src/licensedcode/data/rules/false-positive_143.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: about the HTTP server, not the license +--- + # Apache 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_143.yml b/src/licensedcode/data/rules/false-positive_143.yml deleted file mode 100644 index 32b60d3bc3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_143.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: about the HTTP server, not the license diff --git a/src/licensedcode/data/rules/false-positive_144.RULE b/src/licensedcode/data/rules/false-positive_144.RULE index 01b5e86bfe7..055e7147fed 100644 --- a/src/licensedcode/data/rules/false-positive_144.RULE +++ b/src/licensedcode/data/rules/false-positive_144.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license statement +--- + shim v2 unless explicitly noted otherwise \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_144.yml b/src/licensedcode/data/rules/false-positive_144.yml deleted file mode 100644 index 6b206ef4d3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_144.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license statement diff --git a/src/licensedcode/data/rules/false-positive_145.RULE b/src/licensedcode/data/rules/false-positive_145.RULE index 8d062f23d4e..2295dfd3be2 100644 --- a/src/licensedcode/data/rules/false-positive_145.RULE +++ b/src/licensedcode/data/rules/false-positive_145.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: statement about the found in a debian copyright file +--- + copyright info have been adapted to avoid the violation of the GPL license (as offered by Joerg Schilling) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_145.yml b/src/licensedcode/data/rules/false-positive_145.yml deleted file mode 100644 index 947f7aab046..00000000000 --- a/src/licensedcode/data/rules/false-positive_145.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: statement about the found in a debian copyright file diff --git a/src/licensedcode/data/rules/false-positive_146.RULE b/src/licensedcode/data/rules/false-positive_146.RULE index 630e4ae5b7a..47da5d6dbb8 100644 --- a/src/licensedcode/data/rules/false-positive_146.RULE +++ b/src/licensedcode/data/rules/false-positive_146.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: kernel +--- + boot] [the] [kernel] [without] copying \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_146.yml b/src/licensedcode/data/rules/false-positive_146.yml deleted file mode 100644 index 0e829cb7871..00000000000 --- a/src/licensedcode/data/rules/false-positive_146.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: kernel diff --git a/src/licensedcode/data/rules/false-positive_147.RULE b/src/licensedcode/data/rules/false-positive_147.RULE index b7ef8b49b5f..e6f4414443b 100644 --- a/src/licensedcode/data/rules/false-positive_147.RULE +++ b/src/licensedcode/data/rules/false-positive_147.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variables named after licenses +--- + VALA_PROJECT_LICENSE_LGPL2, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_147.yml b/src/licensedcode/data/rules/false-positive_147.yml deleted file mode 100644 index cc491c76e8d..00000000000 --- a/src/licensedcode/data/rules/false-positive_147.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variables named after licenses diff --git a/src/licensedcode/data/rules/false-positive_148.RULE b/src/licensedcode/data/rules/false-positive_148.RULE index af51b71c391..bcc9086d2c7 100644 --- a/src/licensedcode/data/rules/false-positive_148.RULE +++ b/src/licensedcode/data/rules/false-positive_148.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: some refeernce to general not related to General in GPL +--- + General defines \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_148.yml b/src/licensedcode/data/rules/false-positive_148.yml deleted file mode 100644 index 354ad52cc55..00000000000 --- a/src/licensedcode/data/rules/false-positive_148.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: some refeernce to general not related to General in GPL diff --git a/src/licensedcode/data/rules/false-positive_149.RULE b/src/licensedcode/data/rules/false-positive_149.RULE index f09371dfc4b..1bc56b948e1 100644 --- a/src/licensedcode/data/rules/false-positive_149.RULE +++ b/src/licensedcode/data/rules/false-positive_149.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + GPL5_0001 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_149.yml b/src/licensedcode/data/rules/false-positive_149.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_149.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_15.RULE b/src/licensedcode/data/rules/false-positive_15.RULE index 46013147cdf..724a6f8fe25 100644 --- a/src/licensedcode/data/rules/false-positive_15.RULE +++ b/src/licensedcode/data/rules/false-positive_15.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + changed the GPL license header updating \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_15.yml b/src/licensedcode/data/rules/false-positive_15.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_150.RULE b/src/licensedcode/data/rules/false-positive_150.RULE index 82ad13a37d4..d4d24e733f3 100644 --- a/src/licensedcode/data/rules/false-positive_150.RULE +++ b/src/licensedcode/data/rules/false-positive_150.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing about license +--- + release_asserted_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_150.yml b/src/licensedcode/data/rules/false-positive_150.yml deleted file mode 100644 index 804eefb4220..00000000000 --- a/src/licensedcode/data/rules/false-positive_150.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing about license diff --git a/src/licensedcode/data/rules/false-positive_151.RULE b/src/licensedcode/data/rules/false-positive_151.RULE index 49599e7ae27..3a5fef5d80a 100644 --- a/src/licensedcode/data/rules/false-positive_151.RULE +++ b/src/licensedcode/data/rules/false-positive_151.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _111A GPL0_111A \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_151.yml b/src/licensedcode/data/rules/false-positive_151.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_151.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_152.RULE b/src/licensedcode/data/rules/false-positive_152.RULE index 6db9bdfb297..49798c18c36 100644 --- a/src/licensedcode/data/rules/false-positive_152.RULE +++ b/src/licensedcode/data/rules/false-positive_152.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + acc = "GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_152.yml b/src/licensedcode/data/rules/false-positive_152.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_152.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_153.RULE b/src/licensedcode/data/rules/false-positive_153.RULE index 66bcd39cc6f..137cf79cfd1 100644 --- a/src/licensedcode/data/rules/false-positive_153.RULE +++ b/src/licensedcode/data/rules/false-positive_153.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: using gpl in a variable name is not a license statement +--- + gpl_compatible uint32 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_153.yml b/src/licensedcode/data/rules/false-positive_153.yml deleted file mode 100644 index b11b2ec350c..00000000000 --- a/src/licensedcode/data/rules/false-positive_153.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: using gpl in a variable name is not a license statement diff --git a/src/licensedcode/data/rules/false-positive_154.RULE b/src/licensedcode/data/rules/false-positive_154.RULE index 5b62f0f935f..2e53ca97fcc 100644 --- a/src/licensedcode/data/rules/false-positive_154.RULE +++ b/src/licensedcode/data/rules/false-positive_154.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: a commentary on FFmpeg licensing +--- + If user builds ffmpeg/libav from source and wants OpenCV to stay BSD library, not GPL/LGPL, he/she should use --enabled-shared configure flag and make sure that no GPL components are enabled \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_154.yml b/src/licensedcode/data/rules/false-positive_154.yml deleted file mode 100644 index 8cb3d602048..00000000000 --- a/src/licensedcode/data/rules/false-positive_154.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a commentary on FFmpeg licensing diff --git a/src/licensedcode/data/rules/false-positive_155.RULE b/src/licensedcode/data/rules/false-positive_155.RULE index b4b1004db9a..bcdd3287808 100644 --- a/src/licensedcode/data/rules/false-positive_155.RULE +++ b/src/licensedcode/data/rules/false-positive_155.RULE @@ -1 +1,6 @@ -GPL_A4DIS \ No newline at end of file +--- +is_false_positive: yes +notes: symbols +--- + +GPL_A4DIS \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_155.yml b/src/licensedcode/data/rules/false-positive_155.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_155.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_156.RULE b/src/licensedcode/data/rules/false-positive_156.RULE index 57073ec17b7..eeea00226fc 100644 --- a/src/licensedcode/data/rules/false-positive_156.RULE +++ b/src/licensedcode/data/rules/false-positive_156.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a byte array is not a CC0-1.0 reference +--- + cc0 - cff \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_156.yml b/src/licensedcode/data/rules/false-positive_156.yml deleted file mode 100644 index ba381399f85..00000000000 --- a/src/licensedcode/data/rules/false-positive_156.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a byte array is not a CC0-1.0 reference diff --git a/src/licensedcode/data/rules/false-positive_157.RULE b/src/licensedcode/data/rules/false-positive_157.RULE index 1e6e20c4013..2775fed023c 100644 --- a/src/licensedcode/data/rules/false-positive_157.RULE +++ b/src/licensedcode/data/rules/false-positive_157.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + CLK_DIV_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_157.yml b/src/licensedcode/data/rules/false-positive_157.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_157.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_158.RULE b/src/licensedcode/data/rules/false-positive_158.RULE index e80a225d8d4..da343be2ded 100644 --- a/src/licensedcode/data/rules/false-positive_158.RULE +++ b/src/licensedcode/data/rules/false-positive_158.RULE @@ -1,5 +1,9 @@ - - // e.g. 'GPL-2.0', 'GPL-3.0' -function +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'GPL-2.0', 'GPL-3.0' +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_158.yml b/src/licensedcode/data/rules/false-positive_158.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_159.RULE b/src/licensedcode/data/rules/false-positive_159.RULE index c79d59e9730..c03c6fd85c7 100644 --- a/src/licensedcode/data/rules/false-positive_159.RULE +++ b/src/licensedcode/data/rules/false-positive_159.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ruby-related package documentation +--- + Changed license from GPL2 to Ruby's \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_159.yml b/src/licensedcode/data/rules/false-positive_159.yml deleted file mode 100644 index c5f67aaa2b8..00000000000 --- a/src/licensedcode/data/rules/false-positive_159.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ruby-related package documentation diff --git a/src/licensedcode/data/rules/false-positive_16.RULE b/src/licensedcode/data/rules/false-positive_16.RULE index 98926f2fbaa..bb813ef2aa5 100644 --- a/src/licensedcode/data/rules/false-positive_16.RULE +++ b/src/licensedcode/data/rules/false-positive_16.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + permission is granted to the domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_16.yml b/src/licensedcode/data/rules/false-positive_16.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_160.RULE b/src/licensedcode/data/rules/false-positive_160.RULE index 66db6941df9..bd5d2cfa39e 100644 --- a/src/licensedcode/data/rules/false-positive_160.RULE +++ b/src/licensedcode/data/rules/false-positive_160.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + missing GPL feature \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_160.yml b/src/licensedcode/data/rules/false-positive_160.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_160.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_161.RULE b/src/licensedcode/data/rules/false-positive_161.RULE index f381cb8a985..b6019c7c0ad 100644 --- a/src/licensedcode/data/rules/false-positive_161.RULE +++ b/src/licensedcode/data/rules/false-positive_161.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ecos symbol +--- + MBMR_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_161.yml b/src/licensedcode/data/rules/false-positive_161.yml deleted file mode 100644 index de583528724..00000000000 --- a/src/licensedcode/data/rules/false-positive_161.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ecos symbol diff --git a/src/licensedcode/data/rules/false-positive_162.RULE b/src/licensedcode/data/rules/false-positive_162.RULE index 4bb0d42e162..bd97968ace9 100644 --- a/src/licensedcode/data/rules/false-positive_162.RULE +++ b/src/licensedcode/data/rules/false-positive_162.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + networking stack was, with great fanfare, released under the GPL and made available for inclusion \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_162.yml b/src/licensedcode/data/rules/false-positive_162.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_162.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_163.RULE b/src/licensedcode/data/rules/false-positive_163.RULE index 173bb62a673..4afd010550a 100644 --- a/src/licensedcode/data/rules/false-positive_163.RULE +++ b/src/licensedcode/data/rules/false-positive_163.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + GPL and SL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_163.yml b/src/licensedcode/data/rules/false-positive_163.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_163.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_164.RULE b/src/licensedcode/data/rules/false-positive_164.RULE index 11cd20a98da..f83c7020e08 100644 --- a/src/licensedcode/data/rules/false-positive_164.RULE +++ b/src/licensedcode/data/rules/false-positive_164.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not about the GPL +--- + gpl', 'rb') as fp \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_164.yml b/src/licensedcode/data/rules/false-positive_164.yml deleted file mode 100644 index 5495225e635..00000000000 --- a/src/licensedcode/data/rules/false-positive_164.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not about the GPL diff --git a/src/licensedcode/data/rules/false-positive_165.RULE b/src/licensedcode/data/rules/false-positive_165.RULE index 19710d83dfb..be769f1ab50 100644 --- a/src/licensedcode/data/rules/false-positive_165.RULE +++ b/src/licensedcode/data/rules/false-positive_165.RULE @@ -1,7 +1,12 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + Added IETF BSD license for MIB files. MIBs included in Net-SNMP taken from IETF Documents are considered Code Components in accordance with the IETF Trust License Policy, as found here: -http://trustee.ietf.org/license-info/ +http://trustee.ietf.org/license-info/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_165.yml b/src/licensedcode/data/rules/false-positive_165.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_165.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_166.RULE b/src/licensedcode/data/rules/false-positive_166.RULE index b00b73c91ba..1a750d59031 100644 --- a/src/licensedcode/data/rules/false-positive_166.RULE +++ b/src/licensedcode/data/rules/false-positive_166.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a changelog entry +--- + add extended BSD-style copyright text \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_166.yml b/src/licensedcode/data/rules/false-positive_166.yml deleted file mode 100644 index 157675d6851..00000000000 --- a/src/licensedcode/data/rules/false-positive_166.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a changelog entry diff --git a/src/licensedcode/data/rules/false-positive_167.RULE b/src/licensedcode/data/rules/false-positive_167.RULE index 9ce27582200..034c43a8beb 100644 --- a/src/licensedcode/data/rules/false-positive_167.RULE +++ b/src/licensedcode/data/rules/false-positive_167.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + GNU Free Documentation License:: Copying and sharing this documentation \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_167.yml b/src/licensedcode/data/rules/false-positive_167.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_168.RULE b/src/licensedcode/data/rules/false-positive_168.RULE index ebc64a49c57..9c9730ee883 100644 --- a/src/licensedcode/data/rules/false-positive_168.RULE +++ b/src/licensedcode/data/rules/false-positive_168.RULE @@ -1 +1,6 @@ -Copying policy is now GPL. +--- +is_false_positive: yes +notes: commentary about a license. +--- + +Copying policy is now GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_168.yml b/src/licensedcode/data/rules/false-positive_168.yml deleted file mode 100644 index 37f2a9cf2eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_168.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: commentary about a license. diff --git a/src/licensedcode/data/rules/false-positive_169.RULE b/src/licensedcode/data/rules/false-positive_169.RULE index 6dfd780bb30..3daeade59d0 100644 --- a/src/licensedcode/data/rules/false-positive_169.RULE +++ b/src/licensedcode/data/rules/false-positive_169.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + req.gpl = gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_169.yml b/src/licensedcode/data/rules/false-positive_169.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_169.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_17.RULE b/src/licensedcode/data/rules/false-positive_17.RULE index 3530d5808bd..52456c1dff4 100644 --- a/src/licensedcode/data/rules/false-positive_17.RULE +++ b/src/licensedcode/data/rules/false-positive_17.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + gpl ? "gplog \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_17.yml b/src/licensedcode/data/rules/false-positive_17.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_170.RULE b/src/licensedcode/data/rules/false-positive_170.RULE index 3796b33b612..478e43feaa9 100644 --- a/src/licensedcode/data/rules/false-positive_170.RULE +++ b/src/licensedcode/data/rules/false-positive_170.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + their distribution is a violation of the GNU General Public license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_170.yml b/src/licensedcode/data/rules/false-positive_170.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_170.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_171.RULE b/src/licensedcode/data/rules/false-positive_171.RULE index bf6c52e1eba..9d47460be7e 100644 --- a/src/licensedcode/data/rules/false-positive_171.RULE +++ b/src/licensedcode/data/rules/false-positive_171.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: some instruction and not a license regference +--- + --exclude="*.gpl.c" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_171.yml b/src/licensedcode/data/rules/false-positive_171.yml deleted file mode 100644 index 3c58607c78f..00000000000 --- a/src/licensedcode/data/rules/false-positive_171.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: some instruction and not a license regference diff --git a/src/licensedcode/data/rules/false-positive_172.RULE b/src/licensedcode/data/rules/false-positive_172.RULE index 95f06eff221..16299d4071a 100644 --- a/src/licensedcode/data/rules/false-positive_172.RULE +++ b/src/licensedcode/data/rules/false-positive_172.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + the employer likely has a right to the work and must be agreeable with its release under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_172.yml b/src/licensedcode/data/rules/false-positive_172.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_172.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_173.RULE b/src/licensedcode/data/rules/false-positive_173.RULE index 28c61e136e4..85aac8caca2 100644 --- a/src/licensedcode/data/rules/false-positive_173.RULE +++ b/src/licensedcode/data/rules/false-positive_173.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. this is dockbook markup in GNOME license translations +--- + linkend fdl-cover-texts \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_173.yml b/src/licensedcode/data/rules/false-positive_173.yml deleted file mode 100644 index 498300b74ea..00000000000 --- a/src/licensedcode/data/rules/false-positive_173.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. this is dockbook markup in GNOME license translations diff --git a/src/licensedcode/data/rules/false-positive_174.RULE b/src/licensedcode/data/rules/false-positive_174.RULE index 36e25843eaa..db0d404f49d 100644 --- a/src/licensedcode/data/rules/false-positive_174.RULE +++ b/src/licensedcode/data/rules/false-positive_174.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not at all license related +--- + my_strcat(inbuf \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_174.yml b/src/licensedcode/data/rules/false-positive_174.yml deleted file mode 100644 index 53a9b77656a..00000000000 --- a/src/licensedcode/data/rules/false-positive_174.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not at all license related diff --git a/src/licensedcode/data/rules/false-positive_175.RULE b/src/licensedcode/data/rules/false-positive_175.RULE index 3a3e0ea8c17..a7d343f256e 100644 --- a/src/licensedcode/data/rules/false-positive_175.RULE +++ b/src/licensedcode/data/rules/false-positive_175.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Ghostscript tag in HTML +--- + Producer" content="GPL Ghostscript \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_175.yml b/src/licensedcode/data/rules/false-positive_175.yml deleted file mode 100644 index adc1bcad053..00000000000 --- a/src/licensedcode/data/rules/false-positive_175.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Ghostscript tag in HTML diff --git a/src/licensedcode/data/rules/false-positive_176.RULE b/src/licensedcode/data/rules/false-positive_176.RULE index e6617bb79c2..ac827f7d487 100644 --- a/src/licensedcode/data/rules/false-positive_176.RULE +++ b/src/licensedcode/data/rules/false-positive_176.RULE @@ -1,4 +1,8 @@ - // e.g. 'Attribution-NonCommercial' - function - +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'Attribution-NonCommercial' + function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_176.yml b/src/licensedcode/data/rules/false-positive_176.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_177.RULE b/src/licensedcode/data/rules/false-positive_177.RULE index aa03d77a985..9a195468b10 100644 --- a/src/licensedcode/data/rules/false-positive_177.RULE +++ b/src/licensedcode/data/rules/false-positive_177.RULE @@ -1,6 +1,11 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + One implication of this ownership structure is that any attempt to change the licensing of the kernel is doomed to almost certain failure. There are few practical scenarios where the agreement of all copyright holders could be obtained (or their code removed from the kernel). So, in particular, there is no prospect of a migration to version 3 of the GPL in the -foreseeable future. +foreseeable future. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_177.yml b/src/licensedcode/data/rules/false-positive_177.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_177.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_178.RULE b/src/licensedcode/data/rules/false-positive_178.RULE index 116fdb61b11..512abeb91ea 100644 --- a/src/licensedcode/data/rules/false-positive_178.RULE +++ b/src/licensedcode/data/rules/false-positive_178.RULE @@ -1 +1,6 @@ -L GPL L +--- +is_false_positive: yes +notes: Seen in https://github.com/pivotal-golang/s3cli at https://s3cli-artifacts.s3.amazonaws.com/s3cli-0.0.53-linux-amd64 +--- + +L GPL L \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_178.yml b/src/licensedcode/data/rules/false-positive_178.yml deleted file mode 100644 index b9d649bc1d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_178.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/pivotal-golang/s3cli at https://s3cli-artifacts.s3.amazonaws.com/s3cli-0.0.53-linux-amd64 diff --git a/src/licensedcode/data/rules/false-positive_179.RULE b/src/licensedcode/data/rules/false-positive_179.RULE index 81c06c93c8b..157c1d99985 100644 --- a/src/licensedcode/data/rules/false-positive_179.RULE +++ b/src/licensedcode/data/rules/false-positive_179.RULE @@ -1 +1,7 @@ -assert.equal(correct('mit'), 'MIT') +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + +assert.equal(correct('mit'), 'MIT') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_179.yml b/src/licensedcode/data/rules/false-positive_179.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_18.RULE b/src/licensedcode/data/rules/false-positive_18.RULE index 3eda55115e1..41da7c70f2e 100644 --- a/src/licensedcode/data/rules/false-positive_18.RULE +++ b/src/licensedcode/data/rules/false-positive_18.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL3_1111 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_18.yml b/src/licensedcode/data/rules/false-positive_18.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_180.RULE b/src/licensedcode/data/rules/false-positive_180.RULE index df0e8b0db1d..62b4d8b0118 100644 --- a/src/licensedcode/data/rules/false-positive_180.RULE +++ b/src/licensedcode/data/rules/false-positive_180.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: configure script instruction +--- + lgpl.obj \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_180.yml b/src/licensedcode/data/rules/false-positive_180.yml deleted file mode 100644 index 0f3b0a69c29..00000000000 --- a/src/licensedcode/data/rules/false-positive_180.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: configure script instruction diff --git a/src/licensedcode/data/rules/false-positive_181.RULE b/src/licensedcode/data/rules/false-positive_181.RULE index 85ce95aba1e..86d0066744a 100644 --- a/src/licensedcode/data/rules/false-positive_181.RULE +++ b/src/licensedcode/data/rules/false-positive_181.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ecos symbol +--- + GPL_B5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_181.yml b/src/licensedcode/data/rules/false-positive_181.yml deleted file mode 100644 index de583528724..00000000000 --- a/src/licensedcode/data/rules/false-positive_181.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ecos symbol diff --git a/src/licensedcode/data/rules/false-positive_182.RULE b/src/licensedcode/data/rules/false-positive_182.RULE index 5bd3b8f8fec..0d7d1a7055d 100644 --- a/src/licensedcode/data/rules/false-positive_182.RULE +++ b/src/licensedcode/data/rules/false-positive_182.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license permission +--- + permission is granted for cgroups \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_182.yml b/src/licensedcode/data/rules/false-positive_182.yml deleted file mode 100644 index 1030d25e776..00000000000 --- a/src/licensedcode/data/rules/false-positive_182.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is not a license permission diff --git a/src/licensedcode/data/rules/false-positive_183.RULE b/src/licensedcode/data/rules/false-positive_183.RULE index 1008bf84fae..94a06541939 100644 --- a/src/licensedcode/data/rules/false-positive_183.RULE +++ b/src/licensedcode/data/rules/false-positive_183.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + more memory and is patented \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_183.yml b/src/licensedcode/data/rules/false-positive_183.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_184.RULE b/src/licensedcode/data/rules/false-positive_184.RULE index 4abc3d0de0c..a54a89c0cf3 100644 --- a/src/licensedcode/data/rules/false-positive_184.RULE +++ b/src/licensedcode/data/rules/false-positive_184.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + insn GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_184.yml b/src/licensedcode/data/rules/false-positive_184.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_184.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_185.RULE b/src/licensedcode/data/rules/false-positive_185.RULE index 85141d22137..68674b1a1ba 100644 --- a/src/licensedcode/data/rules/false-positive_185.RULE +++ b/src/licensedcode/data/rules/false-positive_185.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: about the HTTP server, not the license +--- + # Apache 2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_185.yml b/src/licensedcode/data/rules/false-positive_185.yml deleted file mode 100644 index 32b60d3bc3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_185.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: about the HTTP server, not the license diff --git a/src/licensedcode/data/rules/false-positive_186.RULE b/src/licensedcode/data/rules/false-positive_186.RULE index 8019a57bfd9..2c58067971d 100644 --- a/src/licensedcode/data/rules/false-positive_186.RULE +++ b/src/licensedcode/data/rules/false-positive_186.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license statement +--- + may not be modified on struct \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_186.yml b/src/licensedcode/data/rules/false-positive_186.yml deleted file mode 100644 index 2d08565be02..00000000000 --- a/src/licensedcode/data/rules/false-positive_186.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is not a license statement diff --git a/src/licensedcode/data/rules/false-positive_187.RULE b/src/licensedcode/data/rules/false-positive_187.RULE index e1d2ce19ec2..9d7983ee7e2 100644 --- a/src/licensedcode/data/rules/false-positive_187.RULE +++ b/src/licensedcode/data/rules/false-positive_187.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: configure script instruction +--- + basename-lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_187.yml b/src/licensedcode/data/rules/false-positive_187.yml deleted file mode 100644 index 0f3b0a69c29..00000000000 --- a/src/licensedcode/data/rules/false-positive_187.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: configure script instruction diff --git a/src/licensedcode/data/rules/false-positive_188.RULE b/src/licensedcode/data/rules/false-positive_188.RULE index a2ae1fe0a26..60591a7325d 100644 --- a/src/licensedcode/data/rules/false-positive_188.RULE +++ b/src/licensedcode/data/rules/false-positive_188.RULE @@ -1,4 +1,8 @@ - // e.g. 'ZLIB' -function - +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'ZLIB' +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_188.yml b/src/licensedcode/data/rules/false-positive_188.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_189.RULE b/src/licensedcode/data/rules/false-positive_189.RULE index f2a57899019..77b37ac177a 100644 --- a/src/licensedcode/data/rules/false-positive_189.RULE +++ b/src/licensedcode/data/rules/false-positive_189.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + 0001 GPL3_0001 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_189.yml b/src/licensedcode/data/rules/false-positive_189.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_189.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_19.RULE b/src/licensedcode/data/rules/false-positive_19.RULE index 8e9afc9c5f9..5e0b77a4ca1 100644 --- a/src/licensedcode/data/rules/false-positive_19.RULE +++ b/src/licensedcode/data/rules/false-positive_19.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: only a trademarks reference +--- + trademark registered is a trademark of \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_19.yml b/src/licensedcode/data/rules/false-positive_19.yml deleted file mode 100644 index 555d4ef948d..00000000000 --- a/src/licensedcode/data/rules/false-positive_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: only a trademarks reference diff --git a/src/licensedcode/data/rules/false-positive_190.RULE b/src/licensedcode/data/rules/false-positive_190.RULE index e84a67274ef..a063440a324 100644 --- a/src/licensedcode/data/rules/false-positive_190.RULE +++ b/src/licensedcode/data/rules/false-positive_190.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: A comment about licensing +--- + This SPDX licence identifier requirement is enforced by the [CI (Continuous Integration) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_190.yml b/src/licensedcode/data/rules/false-positive_190.yml deleted file mode 100644 index b47355f7117..00000000000 --- a/src/licensedcode/data/rules/false-positive_190.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A comment about licensing diff --git a/src/licensedcode/data/rules/false-positive_191.RULE b/src/licensedcode/data/rules/false-positive_191.RULE index 2c95c488264..6d421ae2495 100644 --- a/src/licensedcode/data/rules/false-positive_191.RULE +++ b/src/licensedcode/data/rules/false-positive_191.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ecos symbol +--- + GPL_B0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_191.yml b/src/licensedcode/data/rules/false-positive_191.yml deleted file mode 100644 index de583528724..00000000000 --- a/src/licensedcode/data/rules/false-positive_191.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ecos symbol diff --git a/src/licensedcode/data/rules/false-positive_192.RULE b/src/licensedcode/data/rules/false-positive_192.RULE index 7c752d59d06..ffa4808b244 100644 --- a/src/licensedcode/data/rules/false-positive_192.RULE +++ b/src/licensedcode/data/rules/false-positive_192.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Not a license statement +--- + new BSD partition \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_192.yml b/src/licensedcode/data/rules/false-positive_192.yml deleted file mode 100644 index 86e07453219..00000000000 --- a/src/licensedcode/data/rules/false-positive_192.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Not a license statement diff --git a/src/licensedcode/data/rules/false-positive_193.RULE b/src/licensedcode/data/rules/false-positive_193.RULE index a9ff68f01ac..071d8dbf2c8 100644 --- a/src/licensedcode/data/rules/false-positive_193.RULE +++ b/src/licensedcode/data/rules/false-positive_193.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb +--- + deprecated'); -//=> ['AGPL-3.0', 'eCos-2.0', 'GFDL-1.1', 'GFDL-1.2', 'GFDL-1.3', 'GPL-1.0', ...] +//=> ['AGPL-3.0', 'eCos-2.0', 'GFDL-1.1', 'GFDL-1.2', 'GFDL-1.3', 'GPL-1.0', ...] \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_193.yml b/src/licensedcode/data/rules/false-positive_193.yml deleted file mode 100644 index ade5273fadd..00000000000 --- a/src/licensedcode/data/rules/false-positive_193.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb diff --git a/src/licensedcode/data/rules/false-positive_194.RULE b/src/licensedcode/data/rules/false-positive_194.RULE index e92d1163e06..8cb2b5e1a29 100644 --- a/src/licensedcode/data/rules/false-positive_194.RULE +++ b/src/licensedcode/data/rules/false-positive_194.RULE @@ -1,3 +1,7 @@ -// APL will be considered Apache, rather than APL-1.0 - +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- +// APL will be considered Apache, rather than APL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_194.yml b/src/licensedcode/data/rules/false-positive_194.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_194.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_195.RULE b/src/licensedcode/data/rules/false-positive_195.RULE index 2e7980cc693..ae9070f03f5 100644 --- a/src/licensedcode/data/rules/false-positive_195.RULE +++ b/src/licensedcode/data/rules/false-positive_195.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools binary as a reference to "General Purpose Logging" +--- + GPL GPL,SL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_195.yml b/src/licensedcode/data/rules/false-positive_195.yml deleted file mode 100644 index 6ecdb6a5ab1..00000000000 --- a/src/licensedcode/data/rules/false-positive_195.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools binary as a reference to "General Purpose Logging" diff --git a/src/licensedcode/data/rules/false-positive_196.RULE b/src/licensedcode/data/rules/false-positive_196.RULE index 58a4390a626..63766ea3c74 100644 --- a/src/licensedcode/data/rules/false-positive_196.RULE +++ b/src/licensedcode/data/rules/false-positive_196.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL2_0000 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_196.yml b/src/licensedcode/data/rules/false-positive_196.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_196.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_197.RULE b/src/licensedcode/data/rules/false-positive_197.RULE index d7423bf7702..2ff09dc451f 100644 --- a/src/licensedcode/data/rules/false-positive_197.RULE +++ b/src/licensedcode/data/rules/false-positive_197.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel +--- + GPL"); /* [QCA988x] 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_197.yml b/src/licensedcode/data/rules/false-positive_197.yml deleted file mode 100644 index 84090cc0d43..00000000000 --- a/src/licensedcode/data/rules/false-positive_197.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel diff --git a/src/licensedcode/data/rules/false-positive_198.RULE b/src/licensedcode/data/rules/false-positive_198.RULE index 00bb7b5627a..ffb06b0cf37 100644 --- a/src/licensedcode/data/rules/false-positive_198.RULE +++ b/src/licensedcode/data/rules/false-positive_198.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- -assert.equal(correct('Apache 2'), 'Apache-2.0') + +assert.equal(correct('Apache 2'), 'Apache-2.0') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_198.yml b/src/licensedcode/data/rules/false-positive_198.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_199.RULE b/src/licensedcode/data/rules/false-positive_199.RULE index 8c99d81dae7..d7426a03e8a 100644 --- a/src/licensedcode/data/rules/false-positive_199.RULE +++ b/src/licensedcode/data/rules/false-positive_199.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: eigen doc +--- + We allow this as a special exception to the general rule \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_199.yml b/src/licensedcode/data/rules/false-positive_199.yml deleted file mode 100644 index 21d92baae1d..00000000000 --- a/src/licensedcode/data/rules/false-positive_199.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: eigen doc diff --git a/src/licensedcode/data/rules/false-positive_2.RULE b/src/licensedcode/data/rules/false-positive_2.RULE index 8f0a86d5727..da06a5de60e 100644 --- a/src/licensedcode/data/rules/false-positive_2.RULE +++ b/src/licensedcode/data/rules/false-positive_2.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in FFmpeg +--- + Try a memory-test program. I have used Memtest86 (www.memtest86.com). At the time of writing it is free (GPLd). \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_2.yml b/src/licensedcode/data/rules/false-positive_2.yml deleted file mode 100644 index 9c98b6f4834..00000000000 --- a/src/licensedcode/data/rules/false-positive_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FFmpeg diff --git a/src/licensedcode/data/rules/false-positive_20.RULE b/src/licensedcode/data/rules/false-positive_20.RULE index cb300388ae1..33aa1fdea03 100644 --- a/src/licensedcode/data/rules/false-positive_20.RULE +++ b/src/licensedcode/data/rules/false-positive_20.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license warranty disclaimer +--- + close to singular, use at your own risk \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_20.yml b/src/licensedcode/data/rules/false-positive_20.yml deleted file mode 100644 index c21772dcf6c..00000000000 --- a/src/licensedcode/data/rules/false-positive_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license warranty disclaimer diff --git a/src/licensedcode/data/rules/false-positive_200.RULE b/src/licensedcode/data/rules/false-positive_200.RULE index 1f92704f7fa..f5d099bc710 100644 --- a/src/licensedcode/data/rules/false-positive_200.RULE +++ b/src/licensedcode/data/rules/false-positive_200.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: about the HTTP server, not the license +--- + # Apache 2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_200.yml b/src/licensedcode/data/rules/false-positive_200.yml deleted file mode 100644 index 32b60d3bc3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_200.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: about the HTTP server, not the license diff --git a/src/licensedcode/data/rules/false-positive_201.RULE b/src/licensedcode/data/rules/false-positive_201.RULE index 656226807df..2124f702dfa 100644 --- a/src/licensedcode/data/rules/false-positive_201.RULE +++ b/src/licensedcode/data/rules/false-positive_201.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Not a license notice, just a comment on the license of service +--- + Use jsDelivr, a free open source CDN. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_201.yml b/src/licensedcode/data/rules/false-positive_201.yml deleted file mode 100644 index 4e876c8eb98..00000000000 --- a/src/licensedcode/data/rules/false-positive_201.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Not a license notice, just a comment on the license of service diff --git a/src/licensedcode/data/rules/false-positive_202.RULE b/src/licensedcode/data/rules/false-positive_202.RULE index 19c198e0282..b9a7cd8577f 100644 --- a/src/licensedcode/data/rules/false-positive_202.RULE +++ b/src/licensedcode/data/rules/false-positive_202.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: nothing about license +--- + robertj * Added open software license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_202.yml b/src/licensedcode/data/rules/false-positive_202.yml deleted file mode 100644 index 804eefb4220..00000000000 --- a/src/licensedcode/data/rules/false-positive_202.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing about license diff --git a/src/licensedcode/data/rules/false-positive_203.RULE b/src/licensedcode/data/rules/false-positive_203.RULE index 67d2a2022a9..eb70c42144a 100644 --- a/src/licensedcode/data/rules/false-positive_203.RULE +++ b/src/licensedcode/data/rules/false-positive_203.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + 1110 GPL3_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_203.yml b/src/licensedcode/data/rules/false-positive_203.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_203.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_204.RULE b/src/licensedcode/data/rules/false-positive_204.RULE index 4ebfe5abf02..67e484acccb 100644 --- a/src/licensedcode/data/rules/false-positive_204.RULE +++ b/src/licensedcode/data/rules/false-positive_204.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note +--- + these lists may not be modified \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_204.yml b/src/licensedcode/data/rules/false-positive_204.yml deleted file mode 100644 index 7c0d8f3866b..00000000000 --- a/src/licensedcode/data/rules/false-positive_204.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note diff --git a/src/licensedcode/data/rules/false-positive_205.RULE b/src/licensedcode/data/rules/false-positive_205.RULE index cc6d7b31961..19d04f2799f 100644 --- a/src/licensedcode/data/rules/false-positive_205.RULE +++ b/src/licensedcode/data/rules/false-positive_205.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + GPL Log Directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_205.yml b/src/licensedcode/data/rules/false-positive_205.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_205.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_206.RULE b/src/licensedcode/data/rules/false-positive_206.RULE index e49cd263a3a..78fabf8e93b 100644 --- a/src/licensedcode/data/rules/false-positive_206.RULE +++ b/src/licensedcode/data/rules/false-positive_206.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: in PHP code +--- + string License shortname, e.g. PHP, BSD, LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_206.yml b/src/licensedcode/data/rules/false-positive_206.yml deleted file mode 100644 index ca6fe038318..00000000000 --- a/src/licensedcode/data/rules/false-positive_206.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: in PHP code diff --git a/src/licensedcode/data/rules/false-positive_207.RULE b/src/licensedcode/data/rules/false-positive_207.RULE index 9168d7d4d42..b99aaaa4c05 100644 --- a/src/licensedcode/data/rules/false-positive_207.RULE +++ b/src/licensedcode/data/rules/false-positive_207.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + others have been contributed to the Linux kernel under GPL. There are now also LGPL implementations of user-level \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_207.yml b/src/licensedcode/data/rules/false-positive_207.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_207.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_208.RULE b/src/licensedcode/data/rules/false-positive_208.RULE index cd1ba3ba502..cde7b8ecb95 100644 --- a/src/licensedcode/data/rules/false-positive_208.RULE +++ b/src/licensedcode/data/rules/false-positive_208.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- - .replace('Attribution', 'BY') + .replace('Attribution', 'BY') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_208.yml b/src/licensedcode/data/rules/false-positive_208.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_209.RULE b/src/licensedcode/data/rules/false-positive_209.RULE index 539af623365..c40005031bc 100644 --- a/src/licensedcode/data/rules/false-positive_209.RULE +++ b/src/licensedcode/data/rules/false-positive_209.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _000A GPL0_000A \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_209.yml b/src/licensedcode/data/rules/false-positive_209.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_209.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_21.RULE b/src/licensedcode/data/rules/false-positive_21.RULE index 7b9836b829d..fab5953f21d 100644 --- a/src/licensedcode/data/rules/false-positive_21.RULE +++ b/src/licensedcode/data/rules/false-positive_21.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license warranty disclaimer +--- + skip this error (Use at your own risk!) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_21.yml b/src/licensedcode/data/rules/false-positive_21.yml deleted file mode 100644 index c21772dcf6c..00000000000 --- a/src/licensedcode/data/rules/false-positive_21.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license warranty disclaimer diff --git a/src/licensedcode/data/rules/false-positive_210.RULE b/src/licensedcode/data/rules/false-positive_210.RULE index ebccaf1d549..b1ba74af728 100644 --- a/src/licensedcode/data/rules/false-positive_210.RULE +++ b/src/licensedcode/data/rules/false-positive_210.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + myself. These are LGPL and GPL, respectively. (A self-contained \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_210.yml b/src/licensedcode/data/rules/false-positive_210.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_210.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_211.RULE b/src/licensedcode/data/rules/false-positive_211.RULE index 65a26bd1ddb..71501ac754a 100644 --- a/src/licensedcode/data/rules/false-positive_211.RULE +++ b/src/licensedcode/data/rules/false-positive_211.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: found in NTP docs +--- + Workaround for the public domain NTP version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_211.yml b/src/licensedcode/data/rules/false-positive_211.yml deleted file mode 100644 index 0d0cf64ad65..00000000000 --- a/src/licensedcode/data/rules/false-positive_211.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in NTP docs diff --git a/src/licensedcode/data/rules/false-positive_212.RULE b/src/licensedcode/data/rules/false-positive_212.RULE index f3753a0f2a6..51189079be1 100644 --- a/src/licensedcode/data/rules/false-positive_212.RULE +++ b/src/licensedcode/data/rules/false-positive_212.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: imagemagick +--- + cc_[ceKqKrG \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_212.yml b/src/licensedcode/data/rules/false-positive_212.yml deleted file mode 100644 index dc8e244de8c..00000000000 --- a/src/licensedcode/data/rules/false-positive_212.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: imagemagick diff --git a/src/licensedcode/data/rules/false-positive_213.RULE b/src/licensedcode/data/rules/false-positive_213.RULE index 30c42a05127..9294f885a61 100644 --- a/src/licensedcode/data/rules/false-positive_213.RULE +++ b/src/licensedcode/data/rules/false-positive_213.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html +--- + MPL2 subtitles \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_213.yml b/src/licensedcode/data/rules/false-positive_213.yml deleted file mode 100644 index 104dd192014..00000000000 --- a/src/licensedcode/data/rules/false-positive_213.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html diff --git a/src/licensedcode/data/rules/false-positive_214.RULE b/src/licensedcode/data/rules/false-positive_214.RULE index ca1f8b10115..8ca3ed19644 100644 --- a/src/licensedcode/data/rules/false-positive_214.RULE +++ b/src/licensedcode/data/rules/false-positive_214.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools binary as a reference to "General Purpose Logging" +--- + log gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_214.yml b/src/licensedcode/data/rules/false-positive_214.yml deleted file mode 100644 index 6ecdb6a5ab1..00000000000 --- a/src/licensedcode/data/rules/false-positive_214.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools binary as a reference to "General Purpose Logging" diff --git a/src/licensedcode/data/rules/false-positive_215.RULE b/src/licensedcode/data/rules/false-positive_215.RULE index 14a62572a56..35342e9f0e3 100644 --- a/src/licensedcode/data/rules/false-positive_215.RULE +++ b/src/licensedcode/data/rules/false-positive_215.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html +--- + MPL2 subtitle \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_215.yml b/src/licensedcode/data/rules/false-positive_215.yml deleted file mode 100644 index 104dd192014..00000000000 --- a/src/licensedcode/data/rules/false-positive_215.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html diff --git a/src/licensedcode/data/rules/false-positive_216.RULE b/src/licensedcode/data/rules/false-positive_216.RULE index 6784dc7431d..ae525a3e084 100644 --- a/src/licensedcode/data/rules/false-positive_216.RULE +++ b/src/licensedcode/data/rules/false-positive_216.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: Seen in e2fsprogs +--- + The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_216.yml b/src/licensedcode/data/rules/false-positive_216.yml deleted file mode 100644 index febb640d6cd..00000000000 --- a/src/licensedcode/data/rules/false-positive_216.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in e2fsprogs diff --git a/src/licensedcode/data/rules/false-positive_217.RULE b/src/licensedcode/data/rules/false-positive_217.RULE index e21c49e7db6..9905a6854b3 100644 --- a/src/licensedcode/data/rules/false-positive_217.RULE +++ b/src/licensedcode/data/rules/false-positive_217.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html +--- + ussbrowarek.org/mpl2-eng \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_217.yml b/src/licensedcode/data/rules/false-positive_217.yml deleted file mode 100644 index 104dd192014..00000000000 --- a/src/licensedcode/data/rules/false-positive_217.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html diff --git a/src/licensedcode/data/rules/false-positive_218.RULE b/src/licensedcode/data/rules/false-positive_218.RULE index cd375540393..7c5d9d115f5 100644 --- a/src/licensedcode/data/rules/false-positive_218.RULE +++ b/src/licensedcode/data/rules/false-positive_218.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is cups zebra not zope +--- + Zebra ZPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_218.yml b/src/licensedcode/data/rules/false-positive_218.yml deleted file mode 100644 index 9f9e0ca52ef..00000000000 --- a/src/licensedcode/data/rules/false-positive_218.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is cups zebra not zope diff --git a/src/licensedcode/data/rules/false-positive_219.RULE b/src/licensedcode/data/rules/false-positive_219.RULE index a29ef12ffbf..5f675786eb7 100644 --- a/src/licensedcode/data/rules/false-positive_219.RULE +++ b/src/licensedcode/data/rules/false-positive_219.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not an EFL license +--- + VKI_EFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_219.yml b/src/licensedcode/data/rules/false-positive_219.yml deleted file mode 100644 index 597c2f2e0b4..00000000000 --- a/src/licensedcode/data/rules/false-positive_219.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not an EFL license diff --git a/src/licensedcode/data/rules/false-positive_22.RULE b/src/licensedcode/data/rules/false-positive_22.RULE index f11ecafb241..9b52b7bc37e 100644 --- a/src/licensedcode/data/rules/false-positive_22.RULE +++ b/src/licensedcode/data/rules/false-positive_22.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this shows in some license texts but alone is not a detected license clue +--- + which is a work \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_22.yml b/src/licensedcode/data/rules/false-positive_22.yml deleted file mode 100644 index 5c9cf80da0f..00000000000 --- a/src/licensedcode/data/rules/false-positive_22.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this shows in some license texts but alone is not a detected license clue diff --git a/src/licensedcode/data/rules/false-positive_220.RULE b/src/licensedcode/data/rules/false-positive_220.RULE index 434c773ffb0..d004ebd5185 100644 --- a/src/licensedcode/data/rules/false-positive_220.RULE +++ b/src/licensedcode/data/rules/false-positive_220.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + which is nice if you have non-GPL code you'd like to run from initramfs, without conflating it with the GPL licensed Linux kernel binary \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_220.yml b/src/licensedcode/data/rules/false-positive_220.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_220.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_221.RULE b/src/licensedcode/data/rules/false-positive_221.RULE index 7c48eb29e0a..d6a1a26f49d 100644 --- a/src/licensedcode/data/rules/false-positive_221.RULE +++ b/src/licensedcode/data/rules/false-positive_221.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html +--- + int mpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_221.yml b/src/licensedcode/data/rules/false-positive_221.yml deleted file mode 100644 index 104dd192014..00000000000 --- a/src/licensedcode/data/rules/false-positive_221.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html diff --git a/src/licensedcode/data/rules/false-positive_222.RULE b/src/licensedcode/data/rules/false-positive_222.RULE index fe7bea5e38f..61ec4f49382 100644 --- a/src/licensedcode/data/rules/false-positive_222.RULE +++ b/src/licensedcode/data/rules/false-positive_222.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL1_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_222.yml b/src/licensedcode/data/rules/false-positive_222.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_222.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_223.RULE b/src/licensedcode/data/rules/false-positive_223.RULE index 0daa1be06e6..7d86b84b2cd 100644 --- a/src/licensedcode/data/rules/false-positive_223.RULE +++ b/src/licensedcode/data/rules/false-positive_223.RULE @@ -1,5 +1,7 @@ - .replace('NoDerivatives', 'ND') - - - +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + .replace('NoDerivatives', 'ND') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_223.yml b/src/licensedcode/data/rules/false-positive_223.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_224.RULE b/src/licensedcode/data/rules/false-positive_224.RULE index d008011a02c..34c118e9c80 100644 --- a/src/licensedcode/data/rules/false-positive_224.RULE +++ b/src/licensedcode/data/rules/false-positive_224.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + mpl.style.use('classic' \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_224.yml b/src/licensedcode/data/rules/false-positive_224.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_224.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_225.RULE b/src/licensedcode/data/rules/false-positive_225.RULE index 44592fb5fc3..6252e31853e 100644 --- a/src/licensedcode/data/rules/false-positive_225.RULE +++ b/src/licensedcode/data/rules/false-positive_225.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. this is dockbook markup in GNOME license translations +--- + link linkend fdl-cover-texts \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_225.yml b/src/licensedcode/data/rules/false-positive_225.yml deleted file mode 100644 index 498300b74ea..00000000000 --- a/src/licensedcode/data/rules/false-positive_225.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. this is dockbook markup in GNOME license translations diff --git a/src/licensedcode/data/rules/false-positive_226.RULE b/src/licensedcode/data/rules/false-positive_226.RULE index eea3bb9e975..a2b661c01d8 100644 --- a/src/licensedcode/data/rules/false-positive_226.RULE +++ b/src/licensedcode/data/rules/false-positive_226.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license and not even license related +--- + INVALID_PUBLIC_DOMAIN \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_226.yml b/src/licensedcode/data/rules/false-positive_226.yml deleted file mode 100644 index 84265ae5692..00000000000 --- a/src/licensedcode/data/rules/false-positive_226.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license and not even license related diff --git a/src/licensedcode/data/rules/false-positive_227.RULE b/src/licensedcode/data/rules/false-positive_227.RULE index 8ccc62299a2..8b723110695 100644 --- a/src/licensedcode/data/rules/false-positive_227.RULE +++ b/src/licensedcode/data/rules/false-positive_227.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel +--- + "GPL""); -[MODULE_ALIAS_NF_LOGGER](3, 0" +[MODULE_ALIAS_NF_LOGGER](3, 0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_227.yml b/src/licensedcode/data/rules/false-positive_227.yml deleted file mode 100644 index 84090cc0d43..00000000000 --- a/src/licensedcode/data/rules/false-positive_227.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel diff --git a/src/licensedcode/data/rules/false-positive_228.RULE b/src/licensedcode/data/rules/false-positive_228.RULE index 139a7be4a5d..57f53da2ef4 100644 --- a/src/licensedcode/data/rules/false-positive_228.RULE +++ b/src/licensedcode/data/rules/false-positive_228.RULE @@ -1,4 +1,8 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- - .replace('NonCommercial', 'NC') - + .replace('NonCommercial', 'NC') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_228.yml b/src/licensedcode/data/rules/false-positive_228.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_229.RULE b/src/licensedcode/data/rules/false-positive_229.RULE index 90bc736efde..7ae4e4bc57d 100644 --- a/src/licensedcode/data/rules/false-positive_229.RULE +++ b/src/licensedcode/data/rules/false-positive_229.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + Now reports GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_229.yml b/src/licensedcode/data/rules/false-positive_229.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_229.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_23.RULE b/src/licensedcode/data/rules/false-positive_23.RULE index d125bdeb505..d33fd545622 100644 --- a/src/licensedcode/data/rules/false-positive_23.RULE +++ b/src/licensedcode/data/rules/false-positive_23.RULE @@ -1 +1,6 @@ -1 Basic 2 +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + +1 Basic 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_23.yml b/src/licensedcode/data/rules/false-positive_23.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_230.RULE b/src/licensedcode/data/rules/false-positive_230.RULE index 6f919bc2e28..3d916d79c75 100644 --- a/src/licensedcode/data/rules/false-positive_230.RULE +++ b/src/licensedcode/data/rules/false-positive_230.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not license-related +--- + distributed under various names \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_230.yml b/src/licensedcode/data/rules/false-positive_230.yml deleted file mode 100644 index 6e5a4cac1b9..00000000000 --- a/src/licensedcode/data/rules/false-positive_230.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not license-related diff --git a/src/licensedcode/data/rules/false-positive_231.RULE b/src/licensedcode/data/rules/false-positive_231.RULE index 9061a2b95a6..ad6362c559a 100644 --- a/src/licensedcode/data/rules/false-positive_231.RULE +++ b/src/licensedcode/data/rules/false-positive_231.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: symbols +--- + GPL high \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_231.yml b/src/licensedcode/data/rules/false-positive_231.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_231.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_232.RULE b/src/licensedcode/data/rules/false-positive_232.RULE index f6bbbe1e73f..c449620eaab 100644 --- a/src/licensedcode/data/rules/false-positive_232.RULE +++ b/src/licensedcode/data/rules/false-positive_232.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb +--- + includes('CC-BY-1.0') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_232.yml b/src/licensedcode/data/rules/false-positive_232.yml deleted file mode 100644 index ade5273fadd..00000000000 --- a/src/licensedcode/data/rules/false-positive_232.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb diff --git a/src/licensedcode/data/rules/false-positive_233.RULE b/src/licensedcode/data/rules/false-positive_233.RULE index af5b04c4c8b..2600a37e327 100644 --- a/src/licensedcode/data/rules/false-positive_233.RULE +++ b/src/licensedcode/data/rules/false-positive_233.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + req.gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_233.yml b/src/licensedcode/data/rules/false-positive_233.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_233.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_234.RULE b/src/licensedcode/data/rules/false-positive_234.RULE index 0445b02c0a3..9b71ffba4f4 100644 --- a/src/licensedcode/data/rules/false-positive_234.RULE +++ b/src/licensedcode/data/rules/false-positive_234.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + 0 div gpl div gdl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_234.yml b/src/licensedcode/data/rules/false-positive_234.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_234.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_235.RULE b/src/licensedcode/data/rules/false-positive_235.RULE index 0ad1cf51f55..1c9e2eff195 100644 --- a/src/licensedcode/data/rules/false-positive_235.RULE +++ b/src/licensedcode/data/rules/false-positive_235.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a comment about licenses +--- + This also removes LGPLv3 code from the \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_235.yml b/src/licensedcode/data/rules/false-positive_235.yml deleted file mode 100644 index 362d5263808..00000000000 --- a/src/licensedcode/data/rules/false-positive_235.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_236.RULE b/src/licensedcode/data/rules/false-positive_236.RULE index baa746d8a95..56dbcc36ea6 100644 --- a/src/licensedcode/data/rules/false-positive_236.RULE +++ b/src/licensedcode/data/rules/false-positive_236.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: linux'smodule.h license commentaries +--- + * The following license idents are currently accepted as indicating free * software modules * diff --git a/src/licensedcode/data/rules/false-positive_236.yml b/src/licensedcode/data/rules/false-positive_236.yml deleted file mode 100644 index 3dfe5b44390..00000000000 --- a/src/licensedcode/data/rules/false-positive_236.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: linux'smodule.h license commentaries diff --git a/src/licensedcode/data/rules/false-positive_237.RULE b/src/licensedcode/data/rules/false-positive_237.RULE index 0d8272a63df..5d8480388f9 100644 --- a/src/licensedcode/data/rules/false-positive_237.RULE +++ b/src/licensedcode/data/rules/false-positive_237.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + or in any manner \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_237.yml b/src/licensedcode/data/rules/false-positive_237.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_237.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_238.RULE b/src/licensedcode/data/rules/false-positive_238.RULE index 846c711eea2..8e157262bdf 100644 --- a/src/licensedcode/data/rules/false-positive_238.RULE +++ b/src/licensedcode/data/rules/false-positive_238.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + All contributors are required to "sign off" on their code, stating that the code can be distributed with the kernel under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_238.yml b/src/licensedcode/data/rules/false-positive_238.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_238.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_239.RULE b/src/licensedcode/data/rules/false-positive_239.RULE index 4a2739dc7a1..7495b0c77c9 100644 --- a/src/licensedcode/data/rules/false-positive_239.RULE +++ b/src/licensedcode/data/rules/false-positive_239.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: e2fsprogs code to generate an Android MODULE_LICENSE_GPL text +--- + touch MODULE_LICENSE_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_239.yml b/src/licensedcode/data/rules/false-positive_239.yml deleted file mode 100644 index 7157f42c010..00000000000 --- a/src/licensedcode/data/rules/false-positive_239.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: e2fsprogs code to generate an Android MODULE_LICENSE_GPL text diff --git a/src/licensedcode/data/rules/false-positive_24.RULE b/src/licensedcode/data/rules/false-positive_24.RULE index 7226b4471e1..b6c3c012464 100644 --- a/src/licensedcode/data/rules/false-positive_24.RULE +++ b/src/licensedcode/data/rules/false-positive_24.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in a makefile +--- + wrapping between 'Free Documentation License, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_24.yml b/src/licensedcode/data/rules/false-positive_24.yml deleted file mode 100644 index 60b03715a4c..00000000000 --- a/src/licensedcode/data/rules/false-positive_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in a makefile diff --git a/src/licensedcode/data/rules/false-positive_240.RULE b/src/licensedcode/data/rules/false-positive_240.RULE index 195265fa6ef..669a0e9256a 100644 --- a/src/licensedcode/data/rules/false-positive_240.RULE +++ b/src/licensedcode/data/rules/false-positive_240.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html +--- + mpl2 decoder \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_240.yml b/src/licensedcode/data/rules/false-positive_240.yml deleted file mode 100644 index 104dd192014..00000000000 --- a/src/licensedcode/data/rules/false-positive_240.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html diff --git a/src/licensedcode/data/rules/false-positive_241.RULE b/src/licensedcode/data/rules/false-positive_241.RULE index 71a3a8b0b85..2b29ce6d36c 100644 --- a/src/licensedcode/data/rules/false-positive_241.RULE +++ b/src/licensedcode/data/rules/false-positive_241.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: used in linux, GPIOlib support +--- + .ngpio = S5PC100_GPIO_L3_NR, .label = "GPL3", \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_241.yml b/src/licensedcode/data/rules/false-positive_241.yml deleted file mode 100644 index 0e1da3afa47..00000000000 --- a/src/licensedcode/data/rules/false-positive_241.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: used in linux, GPIOlib support diff --git a/src/licensedcode/data/rules/false-positive_242.RULE b/src/licensedcode/data/rules/false-positive_242.RULE index 6250d7fea97..89320839212 100644 --- a/src/licensedcode/data/rules/false-positive_242.RULE +++ b/src/licensedcode/data/rules/false-positive_242.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel +--- + "GPL\"); [MODULE_VERSION](\"2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_242.yml b/src/licensedcode/data/rules/false-positive_242.yml deleted file mode 100644 index 84090cc0d43..00000000000 --- a/src/licensedcode/data/rules/false-positive_242.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel diff --git a/src/licensedcode/data/rules/false-positive_243.RULE b/src/licensedcode/data/rules/false-positive_243.RULE index 836718562ab..63d11fd1460 100644 --- a/src/licensedcode/data/rules/false-positive_243.RULE +++ b/src/licensedcode/data/rules/false-positive_243.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html +--- + mpl2 decode \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_243.yml b/src/licensedcode/data/rules/false-positive_243.yml deleted file mode 100644 index 104dd192014..00000000000 --- a/src/licensedcode/data/rules/false-positive_243.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html diff --git a/src/licensedcode/data/rules/false-positive_244.RULE b/src/licensedcode/data/rules/false-positive_244.RULE index 18aa9db7b59..c759bf0b656 100644 --- a/src/licensedcode/data/rules/false-positive_244.RULE +++ b/src/licensedcode/data/rules/false-positive_244.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + GPL5_0000 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_244.yml b/src/licensedcode/data/rules/false-positive_244.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_244.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_245.RULE b/src/licensedcode/data/rules/false-positive_245.RULE index f9b09115a73..43d8f30ca6a 100644 --- a/src/licensedcode/data/rules/false-positive_245.RULE +++ b/src/licensedcode/data/rules/false-positive_245.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: configure script instruction +--- + lgpl.Po \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_245.yml b/src/licensedcode/data/rules/false-positive_245.yml deleted file mode 100644 index 0f3b0a69c29..00000000000 --- a/src/licensedcode/data/rules/false-positive_245.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: configure script instruction diff --git a/src/licensedcode/data/rules/false-positive_246.RULE b/src/licensedcode/data/rules/false-positive_246.RULE index 2c855606b53..b3b2bb68528 100644 --- a/src/licensedcode/data/rules/false-positive_246.RULE +++ b/src/licensedcode/data/rules/false-positive_246.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + Code contributed to the Linux kernel must be made available under a GPL- compatible license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_246.yml b/src/licensedcode/data/rules/false-positive_246.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_246.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_247.RULE b/src/licensedcode/data/rules/false-positive_247.RULE index c96adf7e512..f42ed39a93e 100644 --- a/src/licensedcode/data/rules/false-positive_247.RULE +++ b/src/licensedcode/data/rules/false-positive_247.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in a makefile +--- + Require the latest GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_247.yml b/src/licensedcode/data/rules/false-positive_247.yml deleted file mode 100644 index 60b03715a4c..00000000000 --- a/src/licensedcode/data/rules/false-positive_247.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in a makefile diff --git a/src/licensedcode/data/rules/false-positive_248.RULE b/src/licensedcode/data/rules/false-positive_248.RULE index 6cb4bdc058f..f41b2ecd133 100644 --- a/src/licensedcode/data/rules/false-positive_248.RULE +++ b/src/licensedcode/data/rules/false-positive_248.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html +--- + decoder name mpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_248.yml b/src/licensedcode/data/rules/false-positive_248.yml deleted file mode 100644 index 104dd192014..00000000000 --- a/src/licensedcode/data/rules/false-positive_248.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html diff --git a/src/licensedcode/data/rules/false-positive_249.RULE b/src/licensedcode/data/rules/false-positive_249.RULE index dce2e3a98ff..76097c04f9d 100644 --- a/src/licensedcode/data/rules/false-positive_249.RULE +++ b/src/licensedcode/data/rules/false-positive_249.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note +--- + have BSD-like bzero \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_249.yml b/src/licensedcode/data/rules/false-positive_249.yml deleted file mode 100644 index 7c0d8f3866b..00000000000 --- a/src/licensedcode/data/rules/false-positive_249.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note diff --git a/src/licensedcode/data/rules/false-positive_25.RULE b/src/licensedcode/data/rules/false-positive_25.RULE index 30478ba6dce..0d983ef667c 100644 --- a/src/licensedcode/data/rules/false-positive_25.RULE +++ b/src/licensedcode/data/rules/false-positive_25.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + array may not be modified \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_25.yml b/src/licensedcode/data/rules/false-positive_25.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_250.RULE b/src/licensedcode/data/rules/false-positive_250.RULE index 2670986e217..20da8a65edc 100644 --- a/src/licensedcode/data/rules/false-positive_250.RULE +++ b/src/licensedcode/data/rules/false-positive_250.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: unicode comment in data file +--- + # The original work contains words taken from CC-CEDICT distributed under CC-SA # license. However, CC-SA license is not compatible with ICU's MIT/X style license, - # all of CC-CEDICT unique words were removed from the data. + # all of CC-CEDICT unique words were removed from the data. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_250.yml b/src/licensedcode/data/rules/false-positive_250.yml deleted file mode 100644 index e39306567c7..00000000000 --- a/src/licensedcode/data/rules/false-positive_250.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: unicode comment in data file diff --git a/src/licensedcode/data/rules/false-positive_251.RULE b/src/licensedcode/data/rules/false-positive_251.RULE index 4c3abc003c7..717302b39b7 100644 --- a/src/licensedcode/data/rules/false-positive_251.RULE +++ b/src/licensedcode/data/rules/false-positive_251.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: some vague license reference in a Makefile +--- + Gaisler GRLIB template design (GPL SPARC/LEON3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_251.yml b/src/licensedcode/data/rules/false-positive_251.yml deleted file mode 100644 index f0a6cb834f8..00000000000 --- a/src/licensedcode/data/rules/false-positive_251.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: some vague license reference in a Makefile diff --git a/src/licensedcode/data/rules/false-positive_252.RULE b/src/licensedcode/data/rules/false-positive_252.RULE index be6dd84d857..896868a35d6 100644 --- a/src/licensedcode/data/rules/false-positive_252.RULE +++ b/src/licensedcode/data/rules/false-positive_252.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + The license was clarified so that the code that SWIG generated could be distributed under license terms of the user's choice/requirements and at the same time the SWIG diff --git a/src/licensedcode/data/rules/false-positive_252.yml b/src/licensedcode/data/rules/false-positive_252.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_252.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_253.RULE b/src/licensedcode/data/rules/false-positive_253.RULE index 55c0d7e81bc..7001c0891a2 100644 --- a/src/licensedcode/data/rules/false-positive_253.RULE +++ b/src/licensedcode/data/rules/false-positive_253.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note +--- + #else /* BSD style optind \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_253.yml b/src/licensedcode/data/rules/false-positive_253.yml deleted file mode 100644 index 7c0d8f3866b..00000000000 --- a/src/licensedcode/data/rules/false-positive_253.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note diff --git a/src/licensedcode/data/rules/false-positive_254.RULE b/src/licensedcode/data/rules/false-positive_254.RULE index 5ca27f99ed4..6111fbcbdf4 100644 --- a/src/licensedcode/data/rules/false-positive_254.RULE +++ b/src/licensedcode/data/rules/false-positive_254.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: a comment about compatibility +--- + As per http://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses, the "NCSA/University of Illinois Open Source License" is compatible @@ -16,4 +21,4 @@ Illinois/NCSA Open Source License, at this URL http://www.opensource.org/licenses/UoI-NCSA.php viz, the same one that the FSF pages claim is compatible. So I -think it's OK to include it. +think it's OK to include it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_254.yml b/src/licensedcode/data/rules/false-positive_254.yml deleted file mode 100644 index 8b286159b6c..00000000000 --- a/src/licensedcode/data/rules/false-positive_254.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a comment about compatibility diff --git a/src/licensedcode/data/rules/false-positive_255.RULE b/src/licensedcode/data/rules/false-positive_255.RULE index f54606953c0..9102ba2ad04 100644 --- a/src/licensedcode/data/rules/false-positive_255.RULE +++ b/src/licensedcode/data/rules/false-positive_255.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: kernel +--- + [target] [for] copying \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_255.yml b/src/licensedcode/data/rules/false-positive_255.yml deleted file mode 100644 index 0e829cb7871..00000000000 --- a/src/licensedcode/data/rules/false-positive_255.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: kernel diff --git a/src/licensedcode/data/rules/false-positive_256.RULE b/src/licensedcode/data/rules/false-positive_256.RULE index c1ef5d50273..b191af7d5f0 100644 --- a/src/licensedcode/data/rules/false-positive_256.RULE +++ b/src/licensedcode/data/rules/false-positive_256.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: ansi2knr in JPEG +--- + including ansi2knr in a program does not bring the entire program under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_256.yml b/src/licensedcode/data/rules/false-positive_256.yml deleted file mode 100644 index 96ad0197363..00000000000 --- a/src/licensedcode/data/rules/false-positive_256.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ansi2knr in JPEG diff --git a/src/licensedcode/data/rules/false-positive_257.RULE b/src/licensedcode/data/rules/false-positive_257.RULE index e590c001110..0d365c95c5c 100644 --- a/src/licensedcode/data/rules/false-positive_257.RULE +++ b/src/licensedcode/data/rules/false-positive_257.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note +--- + BSD style disk \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_257.yml b/src/licensedcode/data/rules/false-positive_257.yml deleted file mode 100644 index 7c0d8f3866b..00000000000 --- a/src/licensedcode/data/rules/false-positive_257.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note diff --git a/src/licensedcode/data/rules/false-positive_258.RULE b/src/licensedcode/data/rules/false-positive_258.RULE index 7f2d10dd642..74ce806d88d 100644 --- a/src/licensedcode/data/rules/false-positive_258.RULE +++ b/src/licensedcode/data/rules/false-positive_258.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not license-related +--- + distributed under several vendors \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_258.yml b/src/licensedcode/data/rules/false-positive_258.yml deleted file mode 100644 index 6e5a4cac1b9..00000000000 --- a/src/licensedcode/data/rules/false-positive_258.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not license-related diff --git a/src/licensedcode/data/rules/false-positive_259.RULE b/src/licensedcode/data/rules/false-positive_259.RULE index 62422d1e727..f025b3adf25 100644 --- a/src/licensedcode/data/rules/false-positive_259.RULE +++ b/src/licensedcode/data/rules/false-positive_259.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variables named after licenses +--- + VALA_PROJECT_LICENSE_LGPL3 lgpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_259.yml b/src/licensedcode/data/rules/false-positive_259.yml deleted file mode 100644 index cc491c76e8d..00000000000 --- a/src/licensedcode/data/rules/false-positive_259.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variables named after licenses diff --git a/src/licensedcode/data/rules/false-positive_26.RULE b/src/licensedcode/data/rules/false-positive_26.RULE index adb98e3ba33..1c926b3dff1 100644 --- a/src/licensedcode/data/rules/false-positive_26.RULE +++ b/src/licensedcode/data/rules/false-positive_26.RULE @@ -1,4 +1,9 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'MPL/2.0' -function - +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_26.yml b/src/licensedcode/data/rules/false-positive_26.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_260.RULE b/src/licensedcode/data/rules/false-positive_260.RULE index a10e1c44e0a..fe3a379392e 100644 --- a/src/licensedcode/data/rules/false-positive_260.RULE +++ b/src/licensedcode/data/rules/false-positive_260.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + is doing a good job at complying with the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_260.yml b/src/licensedcode/data/rules/false-positive_260.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_261.RULE b/src/licensedcode/data/rules/false-positive_261.RULE index e98d500069e..8a39eab9000 100644 --- a/src/licensedcode/data/rules/false-positive_261.RULE +++ b/src/licensedcode/data/rules/false-positive_261.RULE @@ -1 +1,6 @@ -GPL_B 1 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_261.yml b/src/licensedcode/data/rules/false-positive_261.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_261.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_262.RULE b/src/licensedcode/data/rules/false-positive_262.RULE index c1af157d409..a172772a8ed 100644 --- a/src/licensedcode/data/rules/false-positive_262.RULE +++ b/src/licensedcode/data/rules/false-positive_262.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: commentary about a license. +--- + migrated to use the HCF sources when Lucent Technologies -brought the HCF module under GPL +brought the HCF module under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_262.yml b/src/licensedcode/data/rules/false-positive_262.yml deleted file mode 100644 index 37f2a9cf2eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_262.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: commentary about a license. diff --git a/src/licensedcode/data/rules/false-positive_263.RULE b/src/licensedcode/data/rules/false-positive_263.RULE index 16634437be4..e2a9be0b8b0 100644 --- a/src/licensedcode/data/rules/false-positive_263.RULE +++ b/src/licensedcode/data/rules/false-positive_263.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Found in hunspell dictionaries +--- + sharer/M shareware/S \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_263.yml b/src/licensedcode/data/rules/false-positive_263.yml deleted file mode 100644 index 97d9bc2ca95..00000000000 --- a/src/licensedcode/data/rules/false-positive_263.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in hunspell dictionaries diff --git a/src/licensedcode/data/rules/false-positive_264.RULE b/src/licensedcode/data/rules/false-positive_264.RULE index daa5d63130d..73ffc29300e 100644 --- a/src/licensedcode/data/rules/false-positive_264.RULE +++ b/src/licensedcode/data/rules/false-positive_264.RULE @@ -1 +1,6 @@ -define PLUGIN_LICENSE_BSD +--- +is_false_positive: yes +notes: Found in MySQL and MariaDB to document plugin licenses +--- + +define PLUGIN_LICENSE_BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_264.yml b/src/licensedcode/data/rules/false-positive_264.yml deleted file mode 100644 index 2bbe8c8eef5..00000000000 --- a/src/licensedcode/data/rules/false-positive_264.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in MySQL and MariaDB to document plugin licenses diff --git a/src/licensedcode/data/rules/false-positive_265.RULE b/src/licensedcode/data/rules/false-positive_265.RULE index 6552f696d22..5af4e50e467 100644 --- a/src/licensedcode/data/rules/false-positive_265.RULE +++ b/src/licensedcode/data/rules/false-positive_265.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + GPL4_0000 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_265.yml b/src/licensedcode/data/rules/false-positive_265.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_265.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_266.RULE b/src/licensedcode/data/rules/false-positive_266.RULE index 9afcecbf441..31f07b9d482 100644 --- a/src/licensedcode/data/rules/false-positive_266.RULE +++ b/src/licensedcode/data/rules/false-positive_266.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + ssc2 \b, Samsung stereo, dual stream (patent pending) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_266.yml b/src/licensedcode/data/rules/false-positive_266.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_266.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_267.RULE b/src/licensedcode/data/rules/false-positive_267.RULE index 484f4cba9ed..384d4ff7454 100644 --- a/src/licensedcode/data/rules/false-positive_267.RULE +++ b/src/licensedcode/data/rules/false-positive_267.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _AAAA GPL0_AAAA \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_267.yml b/src/licensedcode/data/rules/false-positive_267.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_267.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_268.RULE b/src/licensedcode/data/rules/false-positive_268.RULE index 8801041eff7..49bfe75e465 100644 --- a/src/licensedcode/data/rules/false-positive_268.RULE +++ b/src/licensedcode/data/rules/false-positive_268.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license +--- + In this regard, note that hplip, which is BSD-licensed, has a magic reimplementation in Python. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_268.yml b/src/licensedcode/data/rules/false-positive_268.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_268.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_269.RULE b/src/licensedcode/data/rules/false-positive_269.RULE index cf813c7b020..16302848fd3 100644 --- a/src/licensedcode/data/rules/false-positive_269.RULE +++ b/src/licensedcode/data/rules/false-positive_269.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _1110 GPL2_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_269.yml b/src/licensedcode/data/rules/false-positive_269.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_269.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_27.RULE b/src/licensedcode/data/rules/false-positive_27.RULE index 1a67afd7d41..89fe31f3b46 100644 --- a/src/licensedcode/data/rules/false-positive_27.RULE +++ b/src/licensedcode/data/rules/false-positive_27.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'm.i.t' -function +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_27.yml b/src/licensedcode/data/rules/false-positive_27.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_270.RULE b/src/licensedcode/data/rules/false-positive_270.RULE index dbc32b36653..39b24ef519b 100644 --- a/src/licensedcode/data/rules/false-positive_270.RULE +++ b/src/licensedcode/data/rules/false-positive_270.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _1110 GPL0_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_270.yml b/src/licensedcode/data/rules/false-positive_270.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_270.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_271.RULE b/src/licensedcode/data/rules/false-positive_271.RULE index a611fad747b..86e5d6c6040 100644 --- a/src/licensedcode/data/rules/false-positive_271.RULE +++ b/src/licensedcode/data/rules/false-positive_271.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license reference +--- + the Library is not \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_271.yml b/src/licensedcode/data/rules/false-positive_271.yml deleted file mode 100644 index ffef9cb9c96..00000000000 --- a/src/licensedcode/data/rules/false-positive_271.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license reference diff --git a/src/licensedcode/data/rules/false-positive_272.RULE b/src/licensedcode/data/rules/false-positive_272.RULE index 7e6dccd0c74..69073cbc141 100644 --- a/src/licensedcode/data/rules/false-positive_272.RULE +++ b/src/licensedcode/data/rules/false-positive_272.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html +--- + mpl2_event \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_272.yml b/src/licensedcode/data/rules/false-positive_272.yml deleted file mode 100644 index 104dd192014..00000000000 --- a/src/licensedcode/data/rules/false-positive_272.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license note https://ffmpeg.org/doxygen/5.0/libavcodec_2mpl2dec_8c_source.html diff --git a/src/licensedcode/data/rules/false-positive_273.RULE b/src/licensedcode/data/rules/false-positive_273.RULE index 0e85554f8bb..115fc114955 100644 --- a/src/licensedcode/data/rules/false-positive_273.RULE +++ b/src/licensedcode/data/rules/false-positive_273.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + log_requests[i].gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_273.yml b/src/licensedcode/data/rules/false-positive_273.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_273.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_274.RULE b/src/licensedcode/data/rules/false-positive_274.RULE index f412f4bf620..09fb63fb89e 100644 --- a/src/licensedcode/data/rules/false-positive_274.RULE +++ b/src/licensedcode/data/rules/false-positive_274.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: commetaries about open source licenses +--- + Remember, libre != gratis; the open source license grants you the freedom to use and modify, but not commitments of other people's time. Please be respectful, and set your expectations accordingly. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_274.yml b/src/licensedcode/data/rules/false-positive_274.yml deleted file mode 100644 index a537585d491..00000000000 --- a/src/licensedcode/data/rules/false-positive_274.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: commetaries about open source licenses diff --git a/src/licensedcode/data/rules/false-positive_275.RULE b/src/licensedcode/data/rules/false-positive_275.RULE index 1005995bcca..e78cfa362f7 100644 --- a/src/licensedcode/data/rules/false-positive_275.RULE +++ b/src/licensedcode/data/rules/false-positive_275.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: a list of filenames, not a license notice +--- + DEBUG formats.txt FTL.TXT diff --git a/src/licensedcode/data/rules/false-positive_275.yml b/src/licensedcode/data/rules/false-positive_275.yml deleted file mode 100644 index 94003d03565..00000000000 --- a/src/licensedcode/data/rules/false-positive_275.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a list of filenames, not a license notice diff --git a/src/licensedcode/data/rules/false-positive_276.RULE b/src/licensedcode/data/rules/false-positive_276.RULE index 52caba32cd4..62a4696ed81 100644 --- a/src/licensedcode/data/rules/false-positive_276.RULE +++ b/src/licensedcode/data/rules/false-positive_276.RULE @@ -1,5 +1,11 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + 'Apache Public License, Version 2': 'Apache-2.0', 'Apache Software License 2.0': 'Apache-2.0', 'Apache Software License Version 2': 'Apache-2.0', 'Apache V2': 'Apache-2.0', - 'Apache V2.0': 'Apache-2.0', + 'Apache V2.0': 'Apache-2.0', \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_276.yml b/src/licensedcode/data/rules/false-positive_276.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_277.RULE b/src/licensedcode/data/rules/false-positive_277.RULE index 0918a790fdd..21504cac065 100644 --- a/src/licensedcode/data/rules/false-positive_277.RULE +++ b/src/licensedcode/data/rules/false-positive_277.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: some code about license agreements +--- + ["resultString"] || "").include?("Program License Agreement") \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_277.yml b/src/licensedcode/data/rules/false-positive_277.yml deleted file mode 100644 index 92bd81058dd..00000000000 --- a/src/licensedcode/data/rules/false-positive_277.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: some code about license agreements diff --git a/src/licensedcode/data/rules/false-positive_278.RULE b/src/licensedcode/data/rules/false-positive_278.RULE index 9cbfa9e0808..f36fcaaf4b9 100644 --- a/src/licensedcode/data/rules/false-positive_278.RULE +++ b/src/licensedcode/data/rules/false-positive_278.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a comment/string about license +--- + You have already accepted the terms of the license." << endl << endl; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_278.yml b/src/licensedcode/data/rules/false-positive_278.yml deleted file mode 100644 index 862dbe2a022..00000000000 --- a/src/licensedcode/data/rules/false-positive_278.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a comment/string about license diff --git a/src/licensedcode/data/rules/false-positive_279.RULE b/src/licensedcode/data/rules/false-positive_279.RULE index cd8c7496f1e..25eadbde6f3 100644 --- a/src/licensedcode/data/rules/false-positive_279.RULE +++ b/src/licensedcode/data/rules/false-positive_279.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in texinfo.tex +--- + e.g., "Appendix H GNU Free Documentation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_279.yml b/src/licensedcode/data/rules/false-positive_279.yml deleted file mode 100644 index b1f3b5fe1c6..00000000000 --- a/src/licensedcode/data/rules/false-positive_279.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in texinfo.tex diff --git a/src/licensedcode/data/rules/false-positive_28.RULE b/src/licensedcode/data/rules/false-positive_28.RULE index 3d039ff7511..917c1337df3 100644 --- a/src/licensedcode/data/rules/false-positive_28.RULE +++ b/src/licensedcode/data/rules/false-positive_28.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this shows in some license texts but alone is not a detected license clue +--- + versions of unless you \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_28.yml b/src/licensedcode/data/rules/false-positive_28.yml deleted file mode 100644 index 5c9cf80da0f..00000000000 --- a/src/licensedcode/data/rules/false-positive_28.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this shows in some license texts but alone is not a detected license clue diff --git a/src/licensedcode/data/rules/false-positive_280.RULE b/src/licensedcode/data/rules/false-positive_280.RULE index 8c9aac897f4..f71cb97254b 100644 --- a/src/licensedcode/data/rules/false-positive_280.RULE +++ b/src/licensedcode/data/rules/false-positive_280.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: this is the title of PCRE and is also part of its license +--- + PCRE is a library of functions to support regular expressions whose syntax and semantics are as close as possible to those of the Perl 5 language. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_280.yml b/src/licensedcode/data/rules/false-positive_280.yml deleted file mode 100644 index 2c6a8cf7c85..00000000000 --- a/src/licensedcode/data/rules/false-positive_280.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is the title of PCRE and is also part of its license diff --git a/src/licensedcode/data/rules/false-positive_281.RULE b/src/licensedcode/data/rules/false-positive_281.RULE index 869918a3516..4f83513e366 100644 --- a/src/licensedcode/data/rules/false-positive_281.RULE +++ b/src/licensedcode/data/rules/false-positive_281.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. this is dockbook markup in GNOME license translations +--- + linkend fdl-invariant \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_281.yml b/src/licensedcode/data/rules/false-positive_281.yml deleted file mode 100644 index 498300b74ea..00000000000 --- a/src/licensedcode/data/rules/false-positive_281.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. this is dockbook markup in GNOME license translations diff --git a/src/licensedcode/data/rules/false-positive_282.RULE b/src/licensedcode/data/rules/false-positive_282.RULE index 789f8511bb8..3b77654c810 100644 --- a/src/licensedcode/data/rules/false-positive_282.RULE +++ b/src/licensedcode/data/rules/false-positive_282.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL3_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_282.yml b/src/licensedcode/data/rules/false-positive_282.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_282.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_283.RULE b/src/licensedcode/data/rules/false-positive_283.RULE index d8bdce574d0..d479f1c4d96 100644 --- a/src/licensedcode/data/rules/false-positive_283.RULE +++ b/src/licensedcode/data/rules/false-positive_283.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: used in linux, GPIOlib support +--- + .ngpio = S5PC100_GPIO_L2_NR, .label = "GPL2", \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_283.yml b/src/licensedcode/data/rules/false-positive_283.yml deleted file mode 100644 index 0e1da3afa47..00000000000 --- a/src/licensedcode/data/rules/false-positive_283.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: used in linux, GPIOlib support diff --git a/src/licensedcode/data/rules/false-positive_284.RULE b/src/licensedcode/data/rules/false-positive_284.RULE index 7459b43a43a..b78bead88a5 100644 --- a/src/licensedcode/data/rules/false-positive_284.RULE +++ b/src/licensedcode/data/rules/false-positive_284.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + haveGpl3 = QFile::exists(orgLicenseFile + "/LICENSE.GPL"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_284.yml b/src/licensedcode/data/rules/false-positive_284.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_284.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_285.RULE b/src/licensedcode/data/rules/false-positive_285.RULE index 621c314c4a8..d6e052f2e97 100644 --- a/src/licensedcode/data/rules/false-positive_285.RULE +++ b/src/licensedcode/data/rules/false-positive_285.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb +--- + includes('GPL-3.0'); //=> false \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_285.yml b/src/licensedcode/data/rules/false-positive_285.yml deleted file mode 100644 index ade5273fadd..00000000000 --- a/src/licensedcode/data/rules/false-positive_285.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb diff --git a/src/licensedcode/data/rules/false-positive_286.RULE b/src/licensedcode/data/rules/false-positive_286.RULE index c4328fa0014..8c7def50f23 100644 --- a/src/licensedcode/data/rules/false-positive_286.RULE +++ b/src/licensedcode/data/rules/false-positive_286.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + theLicense = "GNU Lesser General Public License (LGPL) version 2.1"; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_286.yml b/src/licensedcode/data/rules/false-positive_286.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_286.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_287.RULE b/src/licensedcode/data/rules/false-positive_287.RULE index f1cab164a57..21d5dc688ed 100644 --- a/src/licensedcode/data/rules/false-positive_287.RULE +++ b/src/licensedcode/data/rules/false-positive_287.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this triggers an SPDX id match otherwise +--- + Adobe Glyph List \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_287.yml b/src/licensedcode/data/rules/false-positive_287.yml deleted file mode 100644 index a6ffa7a16d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_287.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this triggers an SPDX id match otherwise diff --git a/src/licensedcode/data/rules/false-positive_288.RULE b/src/licensedcode/data/rules/false-positive_288.RULE index b45b55d75a9..a79093d6869 100644 --- a/src/licensedcode/data/rules/false-positive_288.RULE +++ b/src/licensedcode/data/rules/false-positive_288.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + struct license_key \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_288.yml b/src/licensedcode/data/rules/false-positive_288.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_288.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_289.RULE b/src/licensedcode/data/rules/false-positive_289.RULE index 5fa77b9dbd2..ece6b9d2260 100644 --- a/src/licensedcode/data/rules/false-positive_289.RULE +++ b/src/licensedcode/data/rules/false-positive_289.RULE @@ -1 +1,6 @@ -GPL_B 2 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_289.yml b/src/licensedcode/data/rules/false-positive_289.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_289.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_29.RULE b/src/licensedcode/data/rules/false-positive_29.RULE index c3200494fbd..cf0c26ffb31 100644 --- a/src/licensedcode/data/rules/false-positive_29.RULE +++ b/src/licensedcode/data/rules/false-positive_29.RULE @@ -1 +1,6 @@ -GCC, discarded, based on GPL'ed HCF-light +--- +is_false_positive: yes +notes: commentary about a license. +--- + +GCC, discarded, based on GPL'ed HCF-light \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_29.yml b/src/licensedcode/data/rules/false-positive_29.yml deleted file mode 100644 index 37f2a9cf2eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: commentary about a license. diff --git a/src/licensedcode/data/rules/false-positive_290.RULE b/src/licensedcode/data/rules/false-positive_290.RULE index 9b5bc36eb06..44bf0729c30 100644 --- a/src/licensedcode/data/rules/false-positive_290.RULE +++ b/src/licensedcode/data/rules/false-positive_290.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + is_gpl_compatible && fn->gpl_only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_290.yml b/src/licensedcode/data/rules/false-positive_290.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_290.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_291.RULE b/src/licensedcode/data/rules/false-positive_291.RULE index a6bf6924a85..a5c5498056a 100644 --- a/src/licensedcode/data/rules/false-positive_291.RULE +++ b/src/licensedcode/data/rules/false-positive_291.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license reference +--- + Internal use only. Called before first row of data \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_291.yml b/src/licensedcode/data/rules/false-positive_291.yml deleted file mode 100644 index ffef9cb9c96..00000000000 --- a/src/licensedcode/data/rules/false-positive_291.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license reference diff --git a/src/licensedcode/data/rules/false-positive_292.RULE b/src/licensedcode/data/rules/false-positive_292.RULE index 5b2d08ece87..a36f12e0b25 100644 --- a/src/licensedcode/data/rules/false-positive_292.RULE +++ b/src/licensedcode/data/rules/false-positive_292.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + General Purpose Logging (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_292.yml b/src/licensedcode/data/rules/false-positive_292.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_292.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_293.RULE b/src/licensedcode/data/rules/false-positive_293.RULE index d16ee791df7..d4c6739c6ff 100644 --- a/src/licensedcode/data/rules/false-positive_293.RULE +++ b/src/licensedcode/data/rules/false-positive_293.RULE @@ -1 +1,6 @@ -define PLUGIN_LICENSE_PROPRIETARY_STRING "PROPRIETARY" +--- +is_false_positive: yes +notes: Found in MySQL and MariaDB to document plugin licenses +--- + +define PLUGIN_LICENSE_PROPRIETARY_STRING "PROPRIETARY" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_293.yml b/src/licensedcode/data/rules/false-positive_293.yml deleted file mode 100644 index 2bbe8c8eef5..00000000000 --- a/src/licensedcode/data/rules/false-positive_293.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in MySQL and MariaDB to document plugin licenses diff --git a/src/licensedcode/data/rules/false-positive_294.RULE b/src/licensedcode/data/rules/false-positive_294.RULE index 810216669eb..2e327001dae 100644 --- a/src/licensedcode/data/rules/false-positive_294.RULE +++ b/src/licensedcode/data/rules/false-positive_294.RULE @@ -1 +1,6 @@ -GPL_B 9 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 9 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_294.yml b/src/licensedcode/data/rules/false-positive_294.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_294.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_295.RULE b/src/licensedcode/data/rules/false-positive_295.RULE index f67e38567af..9820e2895a8 100644 --- a/src/licensedcode/data/rules/false-positive_295.RULE +++ b/src/licensedcode/data/rules/false-positive_295.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + AUTHOR("Lennert Buytenhek " \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_346.yml b/src/licensedcode/data/rules/false-positive_346.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_346.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_347.RULE b/src/licensedcode/data/rules/false-positive_347.RULE index 6ec025c6108..c4aa7a67836 100644 --- a/src/licensedcode/data/rules/false-positive_347.RULE +++ b/src/licensedcode/data/rules/false-positive_347.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + DRIVER PARAMETERS \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_347.yml b/src/licensedcode/data/rules/false-positive_347.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_347.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_348.RULE b/src/licensedcode/data/rules/false-positive_348.RULE index bddebf1b725..097eaa9a7a0 100644 --- a/src/licensedcode/data/rules/false-positive_348.RULE +++ b/src/licensedcode/data/rules/false-positive_348.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: eCos doc +--- + reimplement from scratch to avoid GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_348.yml b/src/licensedcode/data/rules/false-positive_348.yml deleted file mode 100644 index 30f16445a4f..00000000000 --- a/src/licensedcode/data/rules/false-positive_348.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: eCos doc diff --git a/src/licensedcode/data/rules/false-positive_349.RULE b/src/licensedcode/data/rules/false-positive_349.RULE index 180941f9da7..3bd3438b8cf 100644 --- a/src/licensedcode/data/rules/false-positive_349.RULE +++ b/src/licensedcode/data/rules/false-positive_349.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: legalese but not a license proper +--- + Mechanism generally accepted for the electronic transfer of data \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_349.yml b/src/licensedcode/data/rules/false-positive_349.yml deleted file mode 100644 index ec104450963..00000000000 --- a/src/licensedcode/data/rules/false-positive_349.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: legalese but not a license proper diff --git a/src/licensedcode/data/rules/false-positive_35.RULE b/src/licensedcode/data/rules/false-positive_35.RULE index 193ca5783c4..35fa5e1783e 100644 --- a/src/licensedcode/data/rules/false-positive_35.RULE +++ b/src/licensedcode/data/rules/false-positive_35.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: This is found in PDF docs created with Ghostscript +--- + Producer=\'GPL Ghostscript \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_35.yml b/src/licensedcode/data/rules/false-positive_35.yml deleted file mode 100644 index ab78158efb1..00000000000 --- a/src/licensedcode/data/rules/false-positive_35.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: This is found in PDF docs created with Ghostscript diff --git a/src/licensedcode/data/rules/false-positive_350.RULE b/src/licensedcode/data/rules/false-positive_350.RULE index bb4b952fafa..d4dc8ea9ebe 100644 --- a/src/licensedcode/data/rules/false-positive_350.RULE +++ b/src/licensedcode/data/rules/false-positive_350.RULE @@ -1,3 +1,9 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + var transpositions = [ ['APGL', 'AGPL'], ['Gpl', 'GPL'], @@ -23,4 +29,4 @@ var transpositions = [ ['Mozilla Public License', 'MPL'], ['WTH', 'WTF'], ['-License', ''] -] +] \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_350.yml b/src/licensedcode/data/rules/false-positive_350.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_350.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_351.RULE b/src/licensedcode/data/rules/false-positive_351.RULE index ea51efaf783..49286affeb4 100644 --- a/src/licensedcode/data/rules/false-positive_351.RULE +++ b/src/licensedcode/data/rules/false-positive_351.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. +--- + uses more memory and is patented \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_351.yml b/src/licensedcode/data/rules/false-positive_351.yml deleted file mode 100644 index 56ddfaf0cf3..00000000000 --- a/src/licensedcode/data/rules/false-positive_351.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. diff --git a/src/licensedcode/data/rules/false-positive_352.RULE b/src/licensedcode/data/rules/false-positive_352.RULE index 5017248973e..bafadea7f29 100644 --- a/src/licensedcode/data/rules/false-positive_352.RULE +++ b/src/licensedcode/data/rules/false-positive_352.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + cout << "Type '3' to view the Lesser GNU General Public License version 3 (LGPLv3)." \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_352.yml b/src/licensedcode/data/rules/false-positive_352.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_352.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_353.RULE b/src/licensedcode/data/rules/false-positive_353.RULE index 01781b7735a..4f325e09fd1 100644 --- a/src/licensedcode/data/rules/false-positive_353.RULE +++ b/src/licensedcode/data/rules/false-positive_353.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + is_gpl_compatible = is_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_353.yml b/src/licensedcode/data/rules/false-positive_353.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_353.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_354.RULE b/src/licensedcode/data/rules/false-positive_354.RULE index 8d8b3bf9aac..0e4de05ffb6 100644 --- a/src/licensedcode/data/rules/false-positive_354.RULE +++ b/src/licensedcode/data/rules/false-positive_354.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + } else if (['GPL-3.0', 'LGPL-3.0', 'AGPL-3.0']. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_354.yml b/src/licensedcode/data/rules/false-positive_354.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_354.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_355.RULE b/src/licensedcode/data/rules/false-positive_355.RULE index 263d81b64ca..d0efbdffe17 100644 --- a/src/licensedcode/data/rules/false-positive_355.RULE +++ b/src/licensedcode/data/rules/false-positive_355.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + along with some related utilities. It is BSD licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_355.yml b/src/licensedcode/data/rules/false-positive_355.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_355.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_356.RULE b/src/licensedcode/data/rules/false-positive_356.RULE index 5913055f753..3102f748e89 100644 --- a/src/licensedcode/data/rules/false-positive_356.RULE +++ b/src/licensedcode/data/rules/false-positive_356.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + subset of a permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_356.yml b/src/licensedcode/data/rules/false-positive_356.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_356.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_357.RULE b/src/licensedcode/data/rules/false-positive_357.RULE index d1c415bd0de..8c6bd2536b5 100644 --- a/src/licensedcode/data/rules/false-positive_357.RULE +++ b/src/licensedcode/data/rules/false-positive_357.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: linux's 5.x module.h license commentaries +--- + * The following license idents are currently accepted as indicating free * software modules * diff --git a/src/licensedcode/data/rules/false-positive_357.yml b/src/licensedcode/data/rules/false-positive_357.yml deleted file mode 100644 index 5077d3e11c5..00000000000 --- a/src/licensedcode/data/rules/false-positive_357.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: linux's 5.x module.h license commentaries diff --git a/src/licensedcode/data/rules/false-positive_358.RULE b/src/licensedcode/data/rules/false-positive_358.RULE index 65eda811763..ba4c00405ec 100644 --- a/src/licensedcode/data/rules/false-positive_358.RULE +++ b/src/licensedcode/data/rules/false-positive_358.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variables named after licenses +--- + VALA_PROJECT_LICENSE_LGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_358.yml b/src/licensedcode/data/rules/false-positive_358.yml deleted file mode 100644 index cc491c76e8d..00000000000 --- a/src/licensedcode/data/rules/false-positive_358.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variables named after licenses diff --git a/src/licensedcode/data/rules/false-positive_359.RULE b/src/licensedcode/data/rules/false-positive_359.RULE index 236aeac1fc6..c7c14864c61 100644 --- a/src/licensedcode/data/rules/false-positive_359.RULE +++ b/src/licensedcode/data/rules/false-positive_359.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + defined(WINDOWS) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_359.yml b/src/licensedcode/data/rules/false-positive_359.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_359.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_36.RULE b/src/licensedcode/data/rules/false-positive_36.RULE index a0494c7027f..c6f73a4f7b4 100644 --- a/src/licensedcode/data/rules/false-positive_36.RULE +++ b/src/licensedcode/data/rules/false-positive_36.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/fuzzer/Android.bp +--- + // A large-scale-change added 'default_applicable_licenses' to import // all of the 'license_kinds' from "external_dng_sdk_license" // to get the below license kinds: diff --git a/src/licensedcode/data/rules/false-positive_36.yml b/src/licensedcode/data/rules/false-positive_36.yml deleted file mode 100644 index 614ddddd10d..00000000000 --- a/src/licensedcode/data/rules/false-positive_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/fuzzer/Android.bp diff --git a/src/licensedcode/data/rules/false-positive_360.RULE b/src/licensedcode/data/rules/false-positive_360.RULE index 697183e6ba7..fa05cca1515 100644 --- a/src/licensedcode/data/rules/false-positive_360.RULE +++ b/src/licensedcode/data/rules/false-positive_360.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + bool gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_360.yml b/src/licensedcode/data/rules/false-positive_360.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_360.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_361.RULE b/src/licensedcode/data/rules/false-positive_361.RULE index 9e9f4e5c081..16a8f2df26c 100644 --- a/src/licensedcode/data/rules/false-positive_361.RULE +++ b/src/licensedcode/data/rules/false-positive_361.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: configure script instruction +--- + dirname-lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_361.yml b/src/licensedcode/data/rules/false-positive_361.yml deleted file mode 100644 index 0f3b0a69c29..00000000000 --- a/src/licensedcode/data/rules/false-positive_361.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: configure script instruction diff --git a/src/licensedcode/data/rules/false-positive_362.RULE b/src/licensedcode/data/rules/false-positive_362.RULE index c0dc4febc3a..44652366155 100644 --- a/src/licensedcode/data/rules/false-positive_362.RULE +++ b/src/licensedcode/data/rules/false-positive_362.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _0001 GPL0_0001 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_362.yml b/src/licensedcode/data/rules/false-positive_362.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_362.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_363.RULE b/src/licensedcode/data/rules/false-positive_363.RULE index 6fa106f9ea3..1ed66564e3d 100644 --- a/src/licensedcode/data/rules/false-positive_363.RULE +++ b/src/licensedcode/data/rules/false-positive_363.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: eigen doc +--- + Make the long-awaited conversion to MPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_363.yml b/src/licensedcode/data/rules/false-positive_363.yml deleted file mode 100644 index 21d92baae1d..00000000000 --- a/src/licensedcode/data/rules/false-positive_363.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: eigen doc diff --git a/src/licensedcode/data/rules/false-positive_364.RULE b/src/licensedcode/data/rules/false-positive_364.RULE index c79cf095fc8..8340ab60733 100644 --- a/src/licensedcode/data/rules/false-positive_364.RULE +++ b/src/licensedcode/data/rules/false-positive_364.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL3_0000 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_364.yml b/src/licensedcode/data/rules/false-positive_364.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_364.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_365.RULE b/src/licensedcode/data/rules/false-positive_365.RULE index c51b66c28ab..b9dfaac9e51 100644 --- a/src/licensedcode/data/rules/false-positive_365.RULE +++ b/src/licensedcode/data/rules/false-positive_365.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + FNV hash. Respected public domain algorithm. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_365.yml b/src/licensedcode/data/rules/false-positive_365.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_365.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_366.RULE b/src/licensedcode/data/rules/false-positive_366.RULE index 071f3e21ec3..a0c1b21ad6e 100644 --- a/src/licensedcode/data/rules/false-positive_366.RULE +++ b/src/licensedcode/data/rules/false-positive_366.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in libjpeg +--- + some of the more popular free and shareware viewers \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_366.yml b/src/licensedcode/data/rules/false-positive_366.yml deleted file mode 100644 index 2104e7367f9..00000000000 --- a/src/licensedcode/data/rules/false-positive_366.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in libjpeg diff --git a/src/licensedcode/data/rules/false-positive_367.RULE b/src/licensedcode/data/rules/false-positive_367.RULE index 3593c2ffebf..6c13318d159 100644 --- a/src/licensedcode/data/rules/false-positive_367.RULE +++ b/src/licensedcode/data/rules/false-positive_367.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + cout << "Type 'L' to view the Lesser GNU General Public License version 2.1 (LGPLv2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_367.yml b/src/licensedcode/data/rules/false-positive_367.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_367.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_368.RULE b/src/licensedcode/data/rules/false-positive_368.RULE index 118d00fdd8d..8ae153c3b87 100644 --- a/src/licensedcode/data/rules/false-positive_368.RULE +++ b/src/licensedcode/data/rules/false-positive_368.RULE @@ -1,6 +1,11 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + Copyright: The copyright owner must agree to use of GPL. It's best if the submitter and copyright owner are the same person/entity. If not, the name of the person/entity authorizing use of GPL should be listed in case it's necessary to verify the will of - the copyright owner. + the copyright owner. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_368.yml b/src/licensedcode/data/rules/false-positive_368.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_368.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_369.RULE b/src/licensedcode/data/rules/false-positive_369.RULE index 756818a57f6..5439f69dbbc 100644 --- a/src/licensedcode/data/rules/false-positive_369.RULE +++ b/src/licensedcode/data/rules/false-positive_369.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools binary as a reference to "General Purpose Logging" +--- + gpl ptr \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_369.yml b/src/licensedcode/data/rules/false-positive_369.yml deleted file mode 100644 index 6ecdb6a5ab1..00000000000 --- a/src/licensedcode/data/rules/false-positive_369.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools binary as a reference to "General Purpose Logging" diff --git a/src/licensedcode/data/rules/false-positive_37.RULE b/src/licensedcode/data/rules/false-positive_37.RULE index 4a1884b8c38..d7d572e4853 100644 --- a/src/licensedcode/data/rules/false-positive_37.RULE +++ b/src/licensedcode/data/rules/false-positive_37.RULE @@ -1,2 +1,6 @@ -jdkBuild + "/GPL +--- +is_false_positive: yes +notes: a license reference in code, not a license statement +--- +jdkBuild + "/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_37.yml b/src/licensedcode/data/rules/false-positive_37.yml deleted file mode 100644 index 538a8e6eb80..00000000000 --- a/src/licensedcode/data/rules/false-positive_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a license reference in code, not a license statement diff --git a/src/licensedcode/data/rules/false-positive_370.RULE b/src/licensedcode/data/rules/false-positive_370.RULE index 16a5904b8a6..d3f59e243cb 100644 --- a/src/licensedcode/data/rules/false-positive_370.RULE +++ b/src/licensedcode/data/rules/false-positive_370.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Found in PHO code +--- + Decompresses data encoded using the public-domain zlib/deflate compression method \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_370.yml b/src/licensedcode/data/rules/false-positive_370.yml deleted file mode 100644 index 87224b5bd15..00000000000 --- a/src/licensedcode/data/rules/false-positive_370.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in PHO code diff --git a/src/licensedcode/data/rules/false-positive_371.RULE b/src/licensedcode/data/rules/false-positive_371.RULE index b48dbe684c1..f30feb4f1a4 100644 --- a/src/licensedcode/data/rules/false-positive_371.RULE +++ b/src/licensedcode/data/rules/false-positive_371.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is cups zebra not zope +--- + page mode ZPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_371.yml b/src/licensedcode/data/rules/false-positive_371.yml deleted file mode 100644 index 9f9e0ca52ef..00000000000 --- a/src/licensedcode/data/rules/false-positive_371.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is cups zebra not zope diff --git a/src/licensedcode/data/rules/false-positive_372.RULE b/src/licensedcode/data/rules/false-positive_372.RULE index c262d648364..4ff223c72e4 100644 --- a/src/licensedcode/data/rules/false-positive_372.RULE +++ b/src/licensedcode/data/rules/false-positive_372.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + licenseFile = orgLicenseFile + "/LICENSE.LGPLv3"; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_372.yml b/src/licensedcode/data/rules/false-positive_372.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_372.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_373.RULE b/src/licensedcode/data/rules/false-positive_373.RULE index 0118d74cb0d..61a7134f160 100644 --- a/src/licensedcode/data/rules/false-positive_373.RULE +++ b/src/licensedcode/data/rules/false-positive_373.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + the following information would cover the GPL licensing questions about the product \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_373.yml b/src/licensedcode/data/rules/false-positive_373.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_373.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_374.RULE b/src/licensedcode/data/rules/false-positive_374.RULE index 96e45507809..45faeaf8c58 100644 --- a/src/licensedcode/data/rules/false-positive_374.RULE +++ b/src/licensedcode/data/rules/false-positive_374.RULE @@ -1 +1,6 @@ -define PLUGIN_LICENSE_GPL +--- +is_false_positive: yes +notes: Found in MySQL and MariaDB to document plugin licenses +--- + +define PLUGIN_LICENSE_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_374.yml b/src/licensedcode/data/rules/false-positive_374.yml deleted file mode 100644 index 2bbe8c8eef5..00000000000 --- a/src/licensedcode/data/rules/false-positive_374.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in MySQL and MariaDB to document plugin licenses diff --git a/src/licensedcode/data/rules/false-positive_375.RULE b/src/licensedcode/data/rules/false-positive_375.RULE index a2cdc0cd915..287544c7b7a 100644 --- a/src/licensedcode/data/rules/false-positive_375.RULE +++ b/src/licensedcode/data/rules/false-positive_375.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: notes about a dependency license +--- + python-pyside which # provides LGPL-licensed Python bindings for Qt \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_375.yml b/src/licensedcode/data/rules/false-positive_375.yml deleted file mode 100644 index 92e511294a9..00000000000 --- a/src/licensedcode/data/rules/false-positive_375.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: notes about a dependency license diff --git a/src/licensedcode/data/rules/false-positive_376.RULE b/src/licensedcode/data/rules/false-positive_376.RULE index 60ded64306f..e79d6d30725 100644 --- a/src/licensedcode/data/rules/false-positive_376.RULE +++ b/src/licensedcode/data/rules/false-positive_376.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL2_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_376.yml b/src/licensedcode/data/rules/false-positive_376.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_376.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_377.RULE b/src/licensedcode/data/rules/false-positive_377.RULE index 6b8856359cc..377c92ac1bb 100644 --- a/src/licensedcode/data/rules/false-positive_377.RULE +++ b/src/licensedcode/data/rules/false-positive_377.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + Note: libbusybox is GPL, not LGPL, and exports no stable API \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_377.yml b/src/licensedcode/data/rules/false-positive_377.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_378.RULE b/src/licensedcode/data/rules/false-positive_378.RULE index d20d1e5e72e..a6a2430c691 100644 --- a/src/licensedcode/data/rules/false-positive_378.RULE +++ b/src/licensedcode/data/rules/false-positive_378.RULE @@ -1,5 +1,9 @@ - - // e.g. 'GPL-2.0-' - function +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'GPL-2.0-' + function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_378.yml b/src/licensedcode/data/rules/false-positive_378.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_378.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_379.RULE b/src/licensedcode/data/rules/false-positive_379.RULE index 80bf0fd4cea..64fb5aa9153 100644 --- a/src/licensedcode/data/rules/false-positive_379.RULE +++ b/src/licensedcode/data/rules/false-positive_379.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: note a license +--- + layout.gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_379.yml b/src/licensedcode/data/rules/false-positive_379.yml deleted file mode 100644 index d06d6fad2f6..00000000000 --- a/src/licensedcode/data/rules/false-positive_379.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: note a license diff --git a/src/licensedcode/data/rules/false-positive_38.RULE b/src/licensedcode/data/rules/false-positive_38.RULE index e5652f6b083..bdc8ad9a6cf 100644 --- a/src/licensedcode/data/rules/false-positive_38.RULE +++ b/src/licensedcode/data/rules/false-positive_38.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: library error is not a license mention +--- + library error \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_38.yml b/src/licensedcode/data/rules/false-positive_38.yml deleted file mode 100644 index 2bbf8e72788..00000000000 --- a/src/licensedcode/data/rules/false-positive_38.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: library error is not a license mention diff --git a/src/licensedcode/data/rules/false-positive_380.RULE b/src/licensedcode/data/rules/false-positive_380.RULE index e040df87df6..85458ee9b4d 100644 --- a/src/licensedcode/data/rules/false-positive_380.RULE +++ b/src/licensedcode/data/rules/false-positive_380.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + licenseFile = orgLicenseFile + "/LICENSE.LGPLv21"; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_380.yml b/src/licensedcode/data/rules/false-positive_380.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_380.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_381.RULE b/src/licensedcode/data/rules/false-positive_381.RULE index 72173360512..ee4d74e4208 100644 --- a/src/licensedcode/data/rules/false-positive_381.RULE +++ b/src/licensedcode/data/rules/false-positive_381.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + dictionary["LICENSE FILE"] + "/LICENSE.LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_381.yml b/src/licensedcode/data/rules/false-positive_381.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_381.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_382.RULE b/src/licensedcode/data/rules/false-positive_382.RULE index 485cefee53a..086d07078fb 100644 --- a/src/licensedcode/data/rules/false-positive_382.RULE +++ b/src/licensedcode/data/rules/false-positive_382.RULE @@ -1 +1,6 @@ -work work work work work \ No newline at end of file +--- +is_false_positive: yes +notes: rare and weird, bit not a license +--- + +work work work work work \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_382.yml b/src/licensedcode/data/rules/false-positive_382.yml deleted file mode 100644 index 422eea392eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_382.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: rare and weird, bit not a license diff --git a/src/licensedcode/data/rules/false-positive_383.RULE b/src/licensedcode/data/rules/false-positive_383.RULE index 52a653fecce..7dde8f24207 100644 --- a/src/licensedcode/data/rules/false-positive_383.RULE +++ b/src/licensedcode/data/rules/false-positive_383.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + Replace COPYING file with current (2010-03-24) version from http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_383.yml b/src/licensedcode/data/rules/false-positive_383.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_383.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_384.RULE b/src/licensedcode/data/rules/false-positive_384.RULE index afeaef96013..a773aa49c1c 100644 --- a/src/licensedcode/data/rules/false-positive_384.RULE +++ b/src/licensedcode/data/rules/false-positive_384.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + Files missing proper Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_384.yml b/src/licensedcode/data/rules/false-positive_384.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_384.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_385.RULE b/src/licensedcode/data/rules/false-positive_385.RULE index 9608807ee3a..b3730376279 100644 --- a/src/licensedcode/data/rules/false-positive_385.RULE +++ b/src/licensedcode/data/rules/false-positive_385.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ecos symbol +--- + GPL_B1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_385.yml b/src/licensedcode/data/rules/false-positive_385.yml deleted file mode 100644 index de583528724..00000000000 --- a/src/licensedcode/data/rules/false-positive_385.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ecos symbol diff --git a/src/licensedcode/data/rules/false-positive_386.RULE b/src/licensedcode/data/rules/false-positive_386.RULE index 1eb65d4f40b..b579a1b7384 100644 --- a/src/licensedcode/data/rules/false-positive_386.RULE +++ b/src/licensedcode/data/rules/false-positive_386.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + dictionary["LICENSE FILE"] + "/LICENSE.LGPLv21" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_386.yml b/src/licensedcode/data/rules/false-positive_386.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_386.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_387.RULE b/src/licensedcode/data/rules/false-positive_387.RULE index 519afc9b208..4ad90e1e0bf 100644 --- a/src/licensedcode/data/rules/false-positive_387.RULE +++ b/src/licensedcode/data/rules/false-positive_387.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _1110 GPL1_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_387.yml b/src/licensedcode/data/rules/false-positive_387.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_387.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_388.RULE b/src/licensedcode/data/rules/false-positive_388.RULE index 13485c4e8cd..c89ef8d0864 100644 --- a/src/licensedcode/data/rules/false-positive_388.RULE +++ b/src/licensedcode/data/rules/false-positive_388.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in Linux kernel extensions to GCC +--- + defined by gcc's library exception to the GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_388.yml b/src/licensedcode/data/rules/false-positive_388.yml deleted file mode 100644 index 5fcc428ee5a..00000000000 --- a/src/licensedcode/data/rules/false-positive_388.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in Linux kernel extensions to GCC diff --git a/src/licensedcode/data/rules/false-positive_389.RULE b/src/licensedcode/data/rules/false-positive_389.RULE index fde5e7c0472..76763e63a64 100644 --- a/src/licensedcode/data/rules/false-positive_389.RULE +++ b/src/licensedcode/data/rules/false-positive_389.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license reference +--- + VALUE('LGPL') /* Service program library. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_389.yml b/src/licensedcode/data/rules/false-positive_389.yml deleted file mode 100644 index 73e02db82ce..00000000000 --- a/src/licensedcode/data/rules/false-positive_389.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is not a license reference diff --git a/src/licensedcode/data/rules/false-positive_39.RULE b/src/licensedcode/data/rules/false-positive_39.RULE index 567de0297b4..075b05753fa 100644 --- a/src/licensedcode/data/rules/false-positive_39.RULE +++ b/src/licensedcode/data/rules/false-positive_39.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variables named after licenses +--- + VALA_PROJECT_LICENSE_GPL2, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_39.yml b/src/licensedcode/data/rules/false-positive_39.yml deleted file mode 100644 index cc491c76e8d..00000000000 --- a/src/licensedcode/data/rules/false-positive_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variables named after licenses diff --git a/src/licensedcode/data/rules/false-positive_390.RULE b/src/licensedcode/data/rules/false-positive_390.RULE index 22bcfabdef9..90ba34e0bb5 100644 --- a/src/licensedcode/data/rules/false-positive_390.RULE +++ b/src/licensedcode/data/rules/false-positive_390.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ecos symbol +--- + GPL_B3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_390.yml b/src/licensedcode/data/rules/false-positive_390.yml deleted file mode 100644 index de583528724..00000000000 --- a/src/licensedcode/data/rules/false-positive_390.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ecos symbol diff --git a/src/licensedcode/data/rules/false-positive_391.RULE b/src/licensedcode/data/rules/false-positive_391.RULE index 0dd37615c3b..e2c8debdc58 100644 --- a/src/licensedcode/data/rules/false-positive_391.RULE +++ b/src/licensedcode/data/rules/false-positive_391.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Fedora license comments +--- + It is still free (and GPL-compatible) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_391.yml b/src/licensedcode/data/rules/false-positive_391.yml deleted file mode 100644 index 88833c65db7..00000000000 --- a/src/licensedcode/data/rules/false-positive_391.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Fedora license comments diff --git a/src/licensedcode/data/rules/false-positive_392.RULE b/src/licensedcode/data/rules/false-positive_392.RULE index 785f155c6ef..c37d33e45b5 100644 --- a/src/licensedcode/data/rules/false-positive_392.RULE +++ b/src/licensedcode/data/rules/false-positive_392.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + Fix GPL version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_392.yml b/src/licensedcode/data/rules/false-positive_392.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_392.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_393.RULE b/src/licensedcode/data/rules/false-positive_393.RULE index 9a1d645a369..f61e4c158fc 100644 --- a/src/licensedcode/data/rules/false-positive_393.RULE +++ b/src/licensedcode/data/rules/false-positive_393.RULE @@ -1 +1,6 @@ -GPL_B 4 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_393.yml b/src/licensedcode/data/rules/false-positive_393.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_393.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_394.RULE b/src/licensedcode/data/rules/false-positive_394.RULE index 9e09642d4f0..8cfd9627d13 100644 --- a/src/licensedcode/data/rules/false-positive_394.RULE +++ b/src/licensedcode/data/rules/false-positive_394.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + Cannot find the GPL license files! Please download the Open Source version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_394.yml b/src/licensedcode/data/rules/false-positive_394.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_394.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_395.RULE b/src/licensedcode/data/rules/false-positive_395.RULE index 2d6484312ed..67c642c8bca 100644 --- a/src/licensedcode/data/rules/false-positive_395.RULE +++ b/src/licensedcode/data/rules/false-positive_395.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variables named after licenses +--- + VALA_PROJECT_LICENSE_LGPL2, LGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_395.yml b/src/licensedcode/data/rules/false-positive_395.yml deleted file mode 100644 index cc491c76e8d..00000000000 --- a/src/licensedcode/data/rules/false-positive_395.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variables named after licenses diff --git a/src/licensedcode/data/rules/false-positive_396.RULE b/src/licensedcode/data/rules/false-positive_396.RULE index 7ac9cdf4d32..931f4c372ef 100644 --- a/src/licensedcode/data/rules/false-positive_396.RULE +++ b/src/licensedcode/data/rules/false-positive_396.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + CLK_DIV_GPL, "div_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_396.yml b/src/licensedcode/data/rules/false-positive_396.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_396.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_397.RULE b/src/licensedcode/data/rules/false-positive_397.RULE index 4377e76a80b..8912a3b5d6d 100644 --- a/src/licensedcode/data/rules/false-positive_397.RULE +++ b/src/licensedcode/data/rules/false-positive_397.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + edges with mpl2.0b3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_397.yml b/src/licensedcode/data/rules/false-positive_397.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_397.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_398.RULE b/src/licensedcode/data/rules/false-positive_398.RULE index 656532d227a..d4cd7928c80 100644 --- a/src/licensedcode/data/rules/false-positive_398.RULE +++ b/src/licensedcode/data/rules/false-positive_398.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about use +--- + instantiated by configure, for internal use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_398.yml b/src/licensedcode/data/rules/false-positive_398.yml deleted file mode 100644 index 22403ea5133..00000000000 --- a/src/licensedcode/data/rules/false-positive_398.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about use diff --git a/src/licensedcode/data/rules/false-positive_399.RULE b/src/licensedcode/data/rules/false-positive_399.RULE index b1a269d7517..c3ab149075f 100644 --- a/src/licensedcode/data/rules/false-positive_399.RULE +++ b/src/licensedcode/data/rules/false-positive_399.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ecos symbol +--- + GPL_B2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_399.yml b/src/licensedcode/data/rules/false-positive_399.yml deleted file mode 100644 index de583528724..00000000000 --- a/src/licensedcode/data/rules/false-positive_399.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ecos symbol diff --git a/src/licensedcode/data/rules/false-positive_4.RULE b/src/licensedcode/data/rules/false-positive_4.RULE index d0ce32646c9..783320be5fd 100644 --- a/src/licensedcode/data/rules/false-positive_4.RULE +++ b/src/licensedcode/data/rules/false-positive_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + deprecated.includes('eCos-2.0') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_4.yml b/src/licensedcode/data/rules/false-positive_4.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_40.RULE b/src/licensedcode/data/rules/false-positive_40.RULE index e03ec13ac6f..823faca550f 100644 --- a/src/licensedcode/data/rules/false-positive_40.RULE +++ b/src/licensedcode/data/rules/false-positive_40.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + BSD Sockets \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_40.yml b/src/licensedcode/data/rules/false-positive_40.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_400.RULE b/src/licensedcode/data/rules/false-positive_400.RULE index 6d9fbac52ef..fb6147d8d0e 100644 --- a/src/licensedcode/data/rules/false-positive_400.RULE +++ b/src/licensedcode/data/rules/false-positive_400.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license notice, just some comment +--- + It is strongly recommended to use public domain and GPL utilities \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_400.yml b/src/licensedcode/data/rules/false-positive_400.yml deleted file mode 100644 index 647cc79c44a..00000000000 --- a/src/licensedcode/data/rules/false-positive_400.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is not a license notice, just some comment diff --git a/src/licensedcode/data/rules/false-positive_401.RULE b/src/licensedcode/data/rules/false-positive_401.RULE index 5337a476f1e..2c822fce675 100644 --- a/src/licensedcode/data/rules/false-positive_401.RULE +++ b/src/licensedcode/data/rules/false-positive_401.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _AAA0 GPL0_AAA0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_401.yml b/src/licensedcode/data/rules/false-positive_401.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_401.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_402.RULE b/src/licensedcode/data/rules/false-positive_402.RULE index 7d9fddc010c..5120ad9e2ac 100644 --- a/src/licensedcode/data/rules/false-positive_402.RULE +++ b/src/licensedcode/data/rules/false-positive_402.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + theLicense = "GNU Lesser General Public License (LGPL) version 2.1" or the GNU Lesser General Public License (LGPL) version 3"; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_402.yml b/src/licensedcode/data/rules/false-positive_402.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_402.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_403.RULE b/src/licensedcode/data/rules/false-positive_403.RULE index 9a3e80bae4c..4bf3c7c6308 100644 --- a/src/licensedcode/data/rules/false-positive_403.RULE +++ b/src/licensedcode/data/rules/false-positive_403.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL1_0000 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_403.yml b/src/licensedcode/data/rules/false-positive_403.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_403.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_404.RULE b/src/licensedcode/data/rules/false-positive_404.RULE index 7e6a47d35d7..e876ac35cf9 100644 --- a/src/licensedcode/data/rules/false-positive_404.RULE +++ b/src/licensedcode/data/rules/false-positive_404.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: code about license, not a license +--- + else { theLicense = "GNU Lesser General Public License (LGPL) version 3"; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_404.yml b/src/licensedcode/data/rules/false-positive_404.yml deleted file mode 100644 index 2829756d4a4..00000000000 --- a/src/licensedcode/data/rules/false-positive_404.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code about license, not a license diff --git a/src/licensedcode/data/rules/false-positive_406.RULE b/src/licensedcode/data/rules/false-positive_406.RULE index e7f40add7d7..26ebc969e03 100644 --- a/src/licensedcode/data/rules/false-positive_406.RULE +++ b/src/licensedcode/data/rules/false-positive_406.RULE @@ -1 +1,6 @@ -BSD-like systems \ No newline at end of file +--- +is_false_positive: yes +notes: not a license reference. +--- + +BSD-like systems \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_406.yml b/src/licensedcode/data/rules/false-positive_406.yml deleted file mode 100644 index 7c3e001a01f..00000000000 --- a/src/licensedcode/data/rules/false-positive_406.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license reference. diff --git a/src/licensedcode/data/rules/false-positive_407.RULE b/src/licensedcode/data/rules/false-positive_407.RULE index eea68d167a8..c7ba51bffb0 100644 --- a/src/licensedcode/data/rules/false-positive_407.RULE +++ b/src/licensedcode/data/rules/false-positive_407.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'Apache- 2.0' -function +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_407.yml b/src/licensedcode/data/rules/false-positive_407.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_407.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_41.RULE b/src/licensedcode/data/rules/false-positive_41.RULE index 6cee7c9226b..03e8e9d025f 100644 --- a/src/licensedcode/data/rules/false-positive_41.RULE +++ b/src/licensedcode/data/rules/false-positive_41.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments on the absence of GPL +--- + and there is no GPL code inside \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_41.yml b/src/licensedcode/data/rules/false-positive_41.yml deleted file mode 100644 index 9ba820da097..00000000000 --- a/src/licensedcode/data/rules/false-positive_41.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments on the absence of GPL diff --git a/src/licensedcode/data/rules/false-positive_410.RULE b/src/licensedcode/data/rules/false-positive_410.RULE index a412d075dc3..f0b7c8d33aa 100644 --- a/src/licensedcode/data/rules/false-positive_410.RULE +++ b/src/licensedcode/data/rules/false-positive_410.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + The posting of code which has not been cleared for release under a GPL- compatible license can be especially problematic \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_410.yml b/src/licensedcode/data/rules/false-positive_410.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_410.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_411.RULE b/src/licensedcode/data/rules/false-positive_411.RULE index 5e0f5614cb3..66be9889fb4 100644 --- a/src/licensedcode/data/rules/false-positive_411.RULE +++ b/src/licensedcode/data/rules/false-positive_411.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + gdl gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_411.yml b/src/licensedcode/data/rules/false-positive_411.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_411.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_412.RULE b/src/licensedcode/data/rules/false-positive_412.RULE index 4754b0158a5..dce6ecc6c58 100644 --- a/src/licensedcode/data/rules/false-positive_412.RULE +++ b/src/licensedcode/data/rules/false-positive_412.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Found in kernel docs +--- + 802.11 standard as published by \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_412.yml b/src/licensedcode/data/rules/false-positive_412.yml deleted file mode 100644 index 3036e8898f5..00000000000 --- a/src/licensedcode/data/rules/false-positive_412.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in kernel docs diff --git a/src/licensedcode/data/rules/false-positive_413.RULE b/src/licensedcode/data/rules/false-positive_413.RULE index 9b954c0da63..ed228fa5aff 100644 --- a/src/licensedcode/data/rules/false-positive_413.RULE +++ b/src/licensedcode/data/rules/false-positive_413.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in a makefile +--- + Free ''Documentation.*Version 1\.[^3]|Version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_413.yml b/src/licensedcode/data/rules/false-positive_413.yml deleted file mode 100644 index 60b03715a4c..00000000000 --- a/src/licensedcode/data/rules/false-positive_413.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in a makefile diff --git a/src/licensedcode/data/rules/false-positive_414.RULE b/src/licensedcode/data/rules/false-positive_414.RULE index 85093ac646d..4e267d203f9 100644 --- a/src/licensedcode/data/rules/false-positive_414.RULE +++ b/src/licensedcode/data/rules/false-positive_414.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + Remove UCB advertising clause (rescinded 22 July 1999) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_414.yml b/src/licensedcode/data/rules/false-positive_414.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_414.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_415.RULE b/src/licensedcode/data/rules/false-positive_415.RULE index 04e39fdf9c3..cd82a23f412 100644 --- a/src/licensedcode/data/rules/false-positive_415.RULE +++ b/src/licensedcode/data/rules/false-positive_415.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variables named after licenses +--- + VALA_PROJECT_LICENSE_GPL3, LGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_415.yml b/src/licensedcode/data/rules/false-positive_415.yml deleted file mode 100644 index cc491c76e8d..00000000000 --- a/src/licensedcode/data/rules/false-positive_415.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variables named after licenses diff --git a/src/licensedcode/data/rules/false-positive_416.RULE b/src/licensedcode/data/rules/false-positive_416.RULE index d6ac08361b2..5bdc96c1f2f 100644 --- a/src/licensedcode/data/rules/false-positive_416.RULE +++ b/src/licensedcode/data/rules/false-positive_416.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: eCos doc +--- + removed GPL restriction to Arc \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_416.yml b/src/licensedcode/data/rules/false-positive_416.yml deleted file mode 100644 index 30f16445a4f..00000000000 --- a/src/licensedcode/data/rules/false-positive_416.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: eCos doc diff --git a/src/licensedcode/data/rules/false-positive_417.RULE b/src/licensedcode/data/rules/false-positive_417.RULE index cf5bd617b3a..cb6b516d877 100644 --- a/src/licensedcode/data/rules/false-positive_417.RULE +++ b/src/licensedcode/data/rules/false-positive_417.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + Remove some LGPL code from the Windows \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_417.yml b/src/licensedcode/data/rules/false-positive_417.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_417.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_418.RULE b/src/licensedcode/data/rules/false-positive_418.RULE index 2d01f498ef3..6ce45d86764 100644 --- a/src/licensedcode/data/rules/false-positive_418.RULE +++ b/src/licensedcode/data/rules/false-positive_418.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: imagemagick +--- + cc_[ceKkPK] \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_418.yml b/src/licensedcode/data/rules/false-positive_418.yml deleted file mode 100644 index dc8e244de8c..00000000000 --- a/src/licensedcode/data/rules/false-positive_418.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: imagemagick diff --git a/src/licensedcode/data/rules/false-positive_419.RULE b/src/licensedcode/data/rules/false-positive_419.RULE index 1d99285026b..29f4df06362 100644 --- a/src/licensedcode/data/rules/false-positive_419.RULE +++ b/src/licensedcode/data/rules/false-positive_419.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Debian lintian rule names +--- + copyright-should-refer-to-common-license-file-for-apache-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_419.yml b/src/licensedcode/data/rules/false-positive_419.yml deleted file mode 100644 index a47372a200e..00000000000 --- a/src/licensedcode/data/rules/false-positive_419.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Debian lintian rule names diff --git a/src/licensedcode/data/rules/false-positive_42.RULE b/src/licensedcode/data/rules/false-positive_42.RULE index 9cf5afde84d..25cbe77cb74 100644 --- a/src/licensedcode/data/rules/false-positive_42.RULE +++ b/src/licensedcode/data/rules/false-positive_42.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: commentary about a license. +--- + For example, the BSD license in this format \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_42.yml b/src/licensedcode/data/rules/false-positive_42.yml deleted file mode 100644 index 37f2a9cf2eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_42.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: commentary about a license. diff --git a/src/licensedcode/data/rules/false-positive_420.RULE b/src/licensedcode/data/rules/false-positive_420.RULE index bce74cac166..b117b558227 100644 --- a/src/licensedcode/data/rules/false-positive_420.RULE +++ b/src/licensedcode/data/rules/false-positive_420.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: found in NTP docs +--- + mynam/public_domain/ntp \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_420.yml b/src/licensedcode/data/rules/false-positive_420.yml deleted file mode 100644 index 0d0cf64ad65..00000000000 --- a/src/licensedcode/data/rules/false-positive_420.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in NTP docs diff --git a/src/licensedcode/data/rules/false-positive_421.RULE b/src/licensedcode/data/rules/false-positive_421.RULE index f14844b7cdb..0bda20a50bc 100644 --- a/src/licensedcode/data/rules/false-positive_421.RULE +++ b/src/licensedcode/data/rules/false-positive_421.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + #define GPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_421.yml b/src/licensedcode/data/rules/false-positive_421.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_421.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_422.RULE b/src/licensedcode/data/rules/false-positive_422.RULE index b343e6a118c..58121b7a472 100644 --- a/src/licensedcode/data/rules/false-positive_422.RULE +++ b/src/licensedcode/data/rules/false-positive_422.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license mention +--- + release_confirmed_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_422.yml b/src/licensedcode/data/rules/false-positive_422.yml deleted file mode 100644 index cb8a0ea9d60..00000000000 --- a/src/licensedcode/data/rules/false-positive_422.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license mention diff --git a/src/licensedcode/data/rules/false-positive_423.RULE b/src/licensedcode/data/rules/false-positive_423.RULE index acf62716a11..37c98138648 100644 --- a/src/licensedcode/data/rules/false-positive_423.RULE +++ b/src/licensedcode/data/rules/false-positive_423.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: about the HTTP server, not the license +--- + # Apache 2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_423.yml b/src/licensedcode/data/rules/false-positive_423.yml deleted file mode 100644 index 32b60d3bc3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_423.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: about the HTTP server, not the license diff --git a/src/licensedcode/data/rules/false-positive_424.RULE b/src/licensedcode/data/rules/false-positive_424.RULE index 18a71d38afd..c597d71969e 100644 --- a/src/licensedcode/data/rules/false-positive_424.RULE +++ b/src/licensedcode/data/rules/false-positive_424.RULE @@ -1,2 +1,6 @@ -//Linux, HCF-light based, MSF source code in Public Domain +--- +is_false_positive: yes +notes: commentary about a license. +--- +//Linux, HCF-light based, MSF source code in Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_424.yml b/src/licensedcode/data/rules/false-positive_424.yml deleted file mode 100644 index 37f2a9cf2eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_424.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: commentary about a license. diff --git a/src/licensedcode/data/rules/false-positive_425.RULE b/src/licensedcode/data/rules/false-positive_425.RULE index a94476141c7..35b05507f3f 100644 --- a/src/licensedcode/data/rules/false-positive_425.RULE +++ b/src/licensedcode/data/rules/false-positive_425.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code and not a license +--- + ENABLE_NONFREE "Enable non-free \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_425.yml b/src/licensedcode/data/rules/false-positive_425.yml deleted file mode 100644 index 3dd0469567c..00000000000 --- a/src/licensedcode/data/rules/false-positive_425.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code and not a license diff --git a/src/licensedcode/data/rules/false-positive_426.RULE b/src/licensedcode/data/rules/false-positive_426.RULE index fb8f7e1aba1..a99f5ce3e5d 100644 --- a/src/licensedcode/data/rules/false-positive_426.RULE +++ b/src/licensedcode/data/rules/false-positive_426.RULE @@ -1 +1,6 @@ -GPL_B 7 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_426.yml b/src/licensedcode/data/rules/false-positive_426.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_426.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_428.RULE b/src/licensedcode/data/rules/false-positive_428.RULE index 7f8c09a4fcb..bf7cce35afe 100644 --- a/src/licensedcode/data/rules/false-positive_428.RULE +++ b/src/licensedcode/data/rules/false-positive_428.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb +--- + includes('BSD-3-Clause') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_428.yml b/src/licensedcode/data/rules/false-positive_428.yml deleted file mode 100644 index ade5273fadd..00000000000 --- a/src/licensedcode/data/rules/false-positive_428.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb diff --git a/src/licensedcode/data/rules/false-positive_429.RULE b/src/licensedcode/data/rules/false-positive_429.RULE index dff8cb7c58f..e0c966d125a 100644 --- a/src/licensedcode/data/rules/false-positive_429.RULE +++ b/src/licensedcode/data/rules/false-positive_429.RULE @@ -1 +1,6 @@ -/*Linux, GPL'ed HCF based, full source code in Public Domain +--- +is_false_positive: yes +notes: commentary about a license. +--- + +/*Linux, GPL'ed HCF based, full source code in Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_429.yml b/src/licensedcode/data/rules/false-positive_429.yml deleted file mode 100644 index 37f2a9cf2eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_429.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: commentary about a license. diff --git a/src/licensedcode/data/rules/false-positive_43.RULE b/src/licensedcode/data/rules/false-positive_43.RULE index 7e60342d2e9..a70393088dd 100644 --- a/src/licensedcode/data/rules/false-positive_43.RULE +++ b/src/licensedcode/data/rules/false-positive_43.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: changeog notes +--- + Cleanup license to be GPL compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_43.yml b/src/licensedcode/data/rules/false-positive_43.yml deleted file mode 100644 index 9810366d93d..00000000000 --- a/src/licensedcode/data/rules/false-positive_43.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: changeog notes diff --git a/src/licensedcode/data/rules/false-positive_430.RULE b/src/licensedcode/data/rules/false-positive_430.RULE index 4b9c433b7d0..b060ef893f6 100644 --- a/src/licensedcode/data/rules/false-positive_430.RULE +++ b/src/licensedcode/data/rules/false-positive_430.RULE @@ -1,3 +1,8 @@ - // e.g. 'BSD 3' - function +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'BSD 3' + function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_430.yml b/src/licensedcode/data/rules/false-positive_430.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_430.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_432.RULE b/src/licensedcode/data/rules/false-positive_432.RULE index 9e5c9a65b20..ca011155e7e 100644 --- a/src/licensedcode/data/rules/false-positive_432.RULE +++ b/src/licensedcode/data/rules/false-positive_432.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: eCos doc +--- + contrib/GPL/tpcal \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_432.yml b/src/licensedcode/data/rules/false-positive_432.yml deleted file mode 100644 index 30f16445a4f..00000000000 --- a/src/licensedcode/data/rules/false-positive_432.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: eCos doc diff --git a/src/licensedcode/data/rules/false-positive_433.RULE b/src/licensedcode/data/rules/false-positive_433.RULE index 0416e6be1d4..1ecb4fd78f1 100644 --- a/src/licensedcode/data/rules/false-positive_433.RULE +++ b/src/licensedcode/data/rules/false-positive_433.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: PHP code +--- + * @var string public $domain = ''; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_433.yml b/src/licensedcode/data/rules/false-positive_433.yml deleted file mode 100644 index b0baeac41aa..00000000000 --- a/src/licensedcode/data/rules/false-positive_433.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: PHP code diff --git a/src/licensedcode/data/rules/false-positive_434.RULE b/src/licensedcode/data/rules/false-positive_434.RULE index bc2b5bdc81f..11baaf6da1b 100644 --- a/src/licensedcode/data/rules/false-positive_434.RULE +++ b/src/licensedcode/data/rules/false-positive_434.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: eCos doc +--- + Import non-GPL version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_434.yml b/src/licensedcode/data/rules/false-positive_434.yml deleted file mode 100644 index 30f16445a4f..00000000000 --- a/src/licensedcode/data/rules/false-positive_434.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: eCos doc diff --git a/src/licensedcode/data/rules/false-positive_435.RULE b/src/licensedcode/data/rules/false-positive_435.RULE index 9a6f888b82c..3d177eeb593 100644 --- a/src/licensedcode/data/rules/false-positive_435.RULE +++ b/src/licensedcode/data/rules/false-positive_435.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + check your CLASSPATH \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_435.yml b/src/licensedcode/data/rules/false-positive_435.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_435.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_436.RULE b/src/licensedcode/data/rules/false-positive_436.RULE index ea5470d2cc6..64567225069 100644 --- a/src/licensedcode/data/rules/false-positive_436.RULE +++ b/src/licensedcode/data/rules/false-positive_436.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + python/LICENSE python/README \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_436.yml b/src/licensedcode/data/rules/false-positive_436.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_436.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_437.RULE b/src/licensedcode/data/rules/false-positive_437.RULE index cb0fefa1f6e..0370b691804 100644 --- a/src/licensedcode/data/rules/false-positive_437.RULE +++ b/src/licensedcode/data/rules/false-positive_437.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: URL to ISC is not enough of a clue +--- + http www isc org \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_437.yml b/src/licensedcode/data/rules/false-positive_437.yml deleted file mode 100644 index 938b6dac4ea..00000000000 --- a/src/licensedcode/data/rules/false-positive_437.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: URL to ISC is not enough of a clue diff --git a/src/licensedcode/data/rules/false-positive_438.RULE b/src/licensedcode/data/rules/false-positive_438.RULE index ae82a1cb5d0..d2759e4e348 100644 --- a/src/licensedcode/data/rules/false-positive_438.RULE +++ b/src/licensedcode/data/rules/false-positive_438.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: kernel +--- + when copying pt_regs \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_438.yml b/src/licensedcode/data/rules/false-positive_438.yml deleted file mode 100644 index 0e829cb7871..00000000000 --- a/src/licensedcode/data/rules/false-positive_438.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: kernel diff --git a/src/licensedcode/data/rules/false-positive_439.RULE b/src/licensedcode/data/rules/false-positive_439.RULE index 10d3c9a023b..f27bc124341 100644 --- a/src/licensedcode/data/rules/false-positive_439.RULE +++ b/src/licensedcode/data/rules/false-positive_439.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in a makefile +--- + halt='GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_439.yml b/src/licensedcode/data/rules/false-positive_439.yml deleted file mode 100644 index 60b03715a4c..00000000000 --- a/src/licensedcode/data/rules/false-positive_439.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in a makefile diff --git a/src/licensedcode/data/rules/false-positive_44.RULE b/src/licensedcode/data/rules/false-positive_44.RULE index 827fed6be6e..bebecb0f599 100644 --- a/src/licensedcode/data/rules/false-positive_44.RULE +++ b/src/licensedcode/data/rules/false-positive_44.RULE @@ -1 +1,6 @@ -For each NIC emulated by qemu, a GPLv2 licensed UEFI driver is available +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + +For each NIC emulated by qemu, a GPLv2 licensed UEFI driver is available \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_44.yml b/src/licensedcode/data/rules/false-positive_44.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_440.RULE b/src/licensedcode/data/rules/false-positive_440.RULE index e0997ec9cc9..2f02829286c 100644 --- a/src/licensedcode/data/rules/false-positive_440.RULE +++ b/src/licensedcode/data/rules/false-positive_440.RULE @@ -1 +1,6 @@ -define PLUGIN_LICENSE_PROPRIETARY +--- +is_false_positive: yes +notes: Found in MySQL and MariaDB to document plugin licenses +--- + +define PLUGIN_LICENSE_PROPRIETARY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_440.yml b/src/licensedcode/data/rules/false-positive_440.yml deleted file mode 100644 index 2bbe8c8eef5..00000000000 --- a/src/licensedcode/data/rules/false-positive_440.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in MySQL and MariaDB to document plugin licenses diff --git a/src/licensedcode/data/rules/false-positive_441.RULE b/src/licensedcode/data/rules/false-positive_441.RULE index 19dbb615238..2736a9656f4 100644 --- a/src/licensedcode/data/rules/false-positive_441.RULE +++ b/src/licensedcode/data/rules/false-positive_441.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: e2fsprogs code to generate an Android MODULE_LICENSE_GPL text +--- + revoke.c \ MODULE_LICENSE_GPL README.version" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_441.yml b/src/licensedcode/data/rules/false-positive_441.yml deleted file mode 100644 index 7157f42c010..00000000000 --- a/src/licensedcode/data/rules/false-positive_441.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: e2fsprogs code to generate an Android MODULE_LICENSE_GPL text diff --git a/src/licensedcode/data/rules/false-positive_443.RULE b/src/licensedcode/data/rules/false-positive_443.RULE index 07a38ebcbd2..fc56d5be52c 100644 --- a/src/licensedcode/data/rules/false-positive_443.RULE +++ b/src/licensedcode/data/rules/false-positive_443.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + That code can be re-used in a GPL bootloader, and as the author of that code, I would be happy to discuss possible free licensing to any vendor who wishes to diff --git a/src/licensedcode/data/rules/false-positive_443.yml b/src/licensedcode/data/rules/false-positive_443.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_443.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_444.RULE b/src/licensedcode/data/rules/false-positive_444.RULE index adc6cf4e759..608d61e9f3b 100644 --- a/src/licensedcode/data/rules/false-positive_444.RULE +++ b/src/licensedcode/data/rules/false-positive_444.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: pd references +--- + Inspired by Daniel J. Bernstein's public domain nistp224 implementation -and Adam Langley's public domain 64-bit C implementation of curve25519 +and Adam Langley's public domain 64-bit C implementation of curve25519 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_444.yml b/src/licensedcode/data/rules/false-positive_444.yml deleted file mode 100644 index d6e12669af3..00000000000 --- a/src/licensedcode/data/rules/false-positive_444.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: pd references diff --git a/src/licensedcode/data/rules/false-positive_446.RULE b/src/licensedcode/data/rules/false-positive_446.RULE index 046e468a345..ec24c7124ed 100644 --- a/src/licensedcode/data/rules/false-positive_446.RULE +++ b/src/licensedcode/data/rules/false-positive_446.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. this is dockbook markup in GNOME license translations +--- + fdl-invariant \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_446.yml b/src/licensedcode/data/rules/false-positive_446.yml deleted file mode 100644 index 498300b74ea..00000000000 --- a/src/licensedcode/data/rules/false-positive_446.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. this is dockbook markup in GNOME license translations diff --git a/src/licensedcode/data/rules/false-positive_447.RULE b/src/licensedcode/data/rules/false-positive_447.RULE index 037d5fbd7ee..202687bbf7a 100644 --- a/src/licensedcode/data/rules/false-positive_447.RULE +++ b/src/licensedcode/data/rules/false-positive_447.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: This is a flake 8 rule commented out as found in the cloudinit codebase tox.ini +--- + #H102 Apache 2.0 license header not found \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_447.yml b/src/licensedcode/data/rules/false-positive_447.yml deleted file mode 100644 index 033cde22f16..00000000000 --- a/src/licensedcode/data/rules/false-positive_447.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: This is a flake 8 rule commented out as found in the cloudinit codebase tox.ini diff --git a/src/licensedcode/data/rules/false-positive_448.RULE b/src/licensedcode/data/rules/false-positive_448.RULE index 7eb8f8352fa..5dba557df6a 100644 --- a/src/licensedcode/data/rules/false-positive_448.RULE +++ b/src/licensedcode/data/rules/false-positive_448.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: some license like wording but not a license +--- + DRM_LICENSE_ATTRIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_448.yml b/src/licensedcode/data/rules/false-positive_448.yml deleted file mode 100644 index 62afcbe5de6..00000000000 --- a/src/licensedcode/data/rules/false-positive_448.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: some license like wording but not a license diff --git a/src/licensedcode/data/rules/false-positive_449.RULE b/src/licensedcode/data/rules/false-positive_449.RULE index 649f6231673..50b1410659b 100644 --- a/src/licensedcode/data/rules/false-positive_449.RULE +++ b/src/licensedcode/data/rules/false-positive_449.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + LICENSING Code is contributed to the Linux kernel under a number of licenses, but all @@ -7,4 +12,4 @@ In practice, that means that all code contributions are covered either by GPLv2 (with, optionally, language allowing distribution under later versions of the GPL) or the three-clause BSD license. Any contributions which are not covered by a compatible license will not be accepted into the -kernel. +kernel. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_449.yml b/src/licensedcode/data/rules/false-positive_449.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_449.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_45.RULE b/src/licensedcode/data/rules/false-positive_45.RULE index 9bd098075a9..887b9b4ea48 100644 --- a/src/licensedcode/data/rules/false-positive_45.RULE +++ b/src/licensedcode/data/rules/false-positive_45.RULE @@ -1,6 +1,11 @@ +--- +is_false_positive: yes +notes: comments on the absence of GPL +--- + What: GPL cleanup When: August 2009 Why: Over time, a couple of files have sneaked in into the U-Boot source code that are either missing a valid GPL license header or that carry a license that is incompatible with the - GPL. + GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_45.yml b/src/licensedcode/data/rules/false-positive_45.yml deleted file mode 100644 index 9ba820da097..00000000000 --- a/src/licensedcode/data/rules/false-positive_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments on the absence of GPL diff --git a/src/licensedcode/data/rules/false-positive_450.RULE b/src/licensedcode/data/rules/false-positive_450.RULE index 6172a0df845..2fbc32045c4 100644 --- a/src/licensedcode/data/rules/false-positive_450.RULE +++ b/src/licensedcode/data/rules/false-positive_450.RULE @@ -1 +1,6 @@ -GPL_B 0 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_450.yml b/src/licensedcode/data/rules/false-positive_450.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_450.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_452.RULE b/src/licensedcode/data/rules/false-positive_452.RULE index f221470c7b8..f8ed9b057b3 100644 --- a/src/licensedcode/data/rules/false-positive_452.RULE +++ b/src/licensedcode/data/rules/false-positive_452.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _AAA1 GPL0_AAA1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_452.yml b/src/licensedcode/data/rules/false-positive_452.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_452.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_453.RULE b/src/licensedcode/data/rules/false-positive_453.RULE index 45138d5e610..6af5f32647d 100644 --- a/src/licensedcode/data/rules/false-positive_453.RULE +++ b/src/licensedcode/data/rules/false-positive_453.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: about the HTTP server, not the license +--- + # Apache 2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_453.yml b/src/licensedcode/data/rules/false-positive_453.yml deleted file mode 100644 index 32b60d3bc3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_453.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: about the HTTP server, not the license diff --git a/src/licensedcode/data/rules/false-positive_454.RULE b/src/licensedcode/data/rules/false-positive_454.RULE index 47430c65595..b1e2ce5c7b5 100644 --- a/src/licensedcode/data/rules/false-positive_454.RULE +++ b/src/licensedcode/data/rules/false-positive_454.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL1_0001 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_454.yml b/src/licensedcode/data/rules/false-positive_454.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_454.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_455.RULE b/src/licensedcode/data/rules/false-positive_455.RULE index 73b2b199984..8bcab16e17d 100644 --- a/src/licensedcode/data/rules/false-positive_455.RULE +++ b/src/licensedcode/data/rules/false-positive_455.RULE @@ -1 +1,6 @@ -Load gpL data +--- +is_false_positive: yes +notes: Found in some compiled Go binaries +--- + +Load gpL data \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_455.yml b/src/licensedcode/data/rules/false-positive_455.yml deleted file mode 100644 index 9c92e74a7e9..00000000000 --- a/src/licensedcode/data/rules/false-positive_455.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in some compiled Go binaries diff --git a/src/licensedcode/data/rules/false-positive_457.RULE b/src/licensedcode/data/rules/false-positive_457.RULE index 87cc1446202..309928d256e 100644 --- a/src/licensedcode/data/rules/false-positive_457.RULE +++ b/src/licensedcode/data/rules/false-positive_457.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this shows in some license texts but alone is not a detected license clue +--- + 'www google com policies \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_457.yml b/src/licensedcode/data/rules/false-positive_457.yml deleted file mode 100644 index 5c9cf80da0f..00000000000 --- a/src/licensedcode/data/rules/false-positive_457.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this shows in some license texts but alone is not a detected license clue diff --git a/src/licensedcode/data/rules/false-positive_458.RULE b/src/licensedcode/data/rules/false-positive_458.RULE index 121b8909af3..2448a751c33 100644 --- a/src/licensedcode/data/rules/false-positive_458.RULE +++ b/src/licensedcode/data/rules/false-positive_458.RULE @@ -1 +1,6 @@ -GPL_B 6 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_458.yml b/src/licensedcode/data/rules/false-positive_458.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_458.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_46.RULE b/src/licensedcode/data/rules/false-positive_46.RULE index 2daa502ac66..3289ec14573 100644 --- a/src/licensedcode/data/rules/false-positive_46.RULE +++ b/src/licensedcode/data/rules/false-positive_46.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: include name="License.txt +--- + include name="License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_46.yml b/src/licensedcode/data/rules/false-positive_46.yml deleted file mode 100644 index d8c3e4ab6c9..00000000000 --- a/src/licensedcode/data/rules/false-positive_46.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: include name="License.txt diff --git a/src/licensedcode/data/rules/false-positive_463.RULE b/src/licensedcode/data/rules/false-positive_463.RULE index 13aed99fc4b..7a612275f4e 100644 --- a/src/licensedcode/data/rules/false-positive_463.RULE +++ b/src/licensedcode/data/rules/false-positive_463.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + 0xff && page <= (gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_463.yml b/src/licensedcode/data/rules/false-positive_463.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_463.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_465.RULE b/src/licensedcode/data/rules/false-positive_465.RULE index cbe347f4c00..8dcbcff99a9 100644 --- a/src/licensedcode/data/rules/false-positive_465.RULE +++ b/src/licensedcode/data/rules/false-positive_465.RULE @@ -1 +1,6 @@ -define PLUGIN_LICENSE_BSD_STRING "BSD" +--- +is_false_positive: yes +notes: Found in MySQL and MariaDB to document plugin licenses +--- + +define PLUGIN_LICENSE_BSD_STRING "BSD" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_465.yml b/src/licensedcode/data/rules/false-positive_465.yml deleted file mode 100644 index 2bbe8c8eef5..00000000000 --- a/src/licensedcode/data/rules/false-positive_465.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in MySQL and MariaDB to document plugin licenses diff --git a/src/licensedcode/data/rules/false-positive_467.RULE b/src/licensedcode/data/rules/false-positive_467.RULE index 4bc1095f82e..f447f5a303a 100644 --- a/src/licensedcode/data/rules/false-positive_467.RULE +++ b/src/licensedcode/data/rules/false-positive_467.RULE @@ -1,7 +1,12 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + When the prompt appears: GNU gdb frv-031024 Copyright 2003 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. - Type "show copying" to see the conditions. + Type "show copying" to see the conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_467.yml b/src/licensedcode/data/rules/false-positive_467.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_467.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_468.RULE b/src/licensedcode/data/rules/false-positive_468.RULE index 2a0b6d7aaeb..1f43545f0bd 100644 --- a/src/licensedcode/data/rules/false-positive_468.RULE +++ b/src/licensedcode/data/rules/false-positive_468.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: used in linux, GPIOlib support +--- + S5PC100_GPL3(0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_468.yml b/src/licensedcode/data/rules/false-positive_468.yml deleted file mode 100644 index 0e1da3afa47..00000000000 --- a/src/licensedcode/data/rules/false-positive_468.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: used in linux, GPIOlib support diff --git a/src/licensedcode/data/rules/false-positive_469.RULE b/src/licensedcode/data/rules/false-positive_469.RULE index 072456bc587..d01499018cb 100644 --- a/src/licensedcode/data/rules/false-positive_469.RULE +++ b/src/licensedcode/data/rules/false-positive_469.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + Add GPL header \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_469.yml b/src/licensedcode/data/rules/false-positive_469.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_469.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_47.RULE b/src/licensedcode/data/rules/false-positive_47.RULE index e0f92547f97..ed28f1ac820 100644 --- a/src/licensedcode/data/rules/false-positive_47.RULE +++ b/src/licensedcode/data/rules/false-positive_47.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in rust regex +--- + as a special exception (see UTS \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_47.yml b/src/licensedcode/data/rules/false-positive_47.yml deleted file mode 100644 index 2d1bbaf6ea2..00000000000 --- a/src/licensedcode/data/rules/false-positive_47.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in rust regex diff --git a/src/licensedcode/data/rules/false-positive_472.RULE b/src/licensedcode/data/rules/false-positive_472.RULE index ccf6852b248..da54398f415 100644 --- a/src/licensedcode/data/rules/false-positive_472.RULE +++ b/src/licensedcode/data/rules/false-positive_472.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing about licenses +--- + that is intended to be stored in an image \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_472.yml b/src/licensedcode/data/rules/false-positive_472.yml deleted file mode 100644 index 9b9f5951736..00000000000 --- a/src/licensedcode/data/rules/false-positive_472.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing about licenses diff --git a/src/licensedcode/data/rules/false-positive_473.RULE b/src/licensedcode/data/rules/false-positive_473.RULE index ea681a91329..667de352a3d 100644 --- a/src/licensedcode/data/rules/false-positive_473.RULE +++ b/src/licensedcode/data/rules/false-positive_473.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + If submitting code from LGPL sources, please consider changing the -license to GPL (see section 3 of the LGPL). +license to GPL (see section 3 of the LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_473.yml b/src/licensedcode/data/rules/false-positive_473.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_473.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_474.RULE b/src/licensedcode/data/rules/false-positive_474.RULE index 603598a0ae7..e3e74a21a6f 100644 --- a/src/licensedcode/data/rules/false-positive_474.RULE +++ b/src/licensedcode/data/rules/false-positive_474.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + GPL4_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_474.yml b/src/licensedcode/data/rules/false-positive_474.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_474.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_475.RULE b/src/licensedcode/data/rules/false-positive_475.RULE index 2b84087a38b..3753c8666ae 100644 --- a/src/licensedcode/data/rules/false-positive_475.RULE +++ b/src/licensedcode/data/rules/false-positive_475.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments on license +--- + JSHINT has some GPL Compatability issues, so we are faking it \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_475.yml b/src/licensedcode/data/rules/false-positive_475.yml deleted file mode 100644 index e6aedcdfe45..00000000000 --- a/src/licensedcode/data/rules/false-positive_475.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments on license diff --git a/src/licensedcode/data/rules/false-positive_476.RULE b/src/licensedcode/data/rules/false-positive_476.RULE index 063636bb0ce..276d1a62d23 100644 --- a/src/licensedcode/data/rules/false-positive_476.RULE +++ b/src/licensedcode/data/rules/false-positive_476.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: some licensing related programming construction in some Emacs Elisp +--- + nil nil "GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_476.yml b/src/licensedcode/data/rules/false-positive_476.yml deleted file mode 100644 index 63148627fe2..00000000000 --- a/src/licensedcode/data/rules/false-positive_476.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: some licensing related programming construction in some Emacs Elisp diff --git a/src/licensedcode/data/rules/false-positive_477.RULE b/src/licensedcode/data/rules/false-positive_477.RULE index 180f38942fe..6fc0d54600f 100644 --- a/src/licensedcode/data/rules/false-positive_477.RULE +++ b/src/licensedcode/data/rules/false-positive_477.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + #define GPL5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_477.yml b/src/licensedcode/data/rules/false-positive_477.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_477.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_478.RULE b/src/licensedcode/data/rules/false-positive_478.RULE index e4c75e67073..4f8a11090d8 100644 --- a/src/licensedcode/data/rules/false-positive_478.RULE +++ b/src/licensedcode/data/rules/false-positive_478.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + / e.g. 'LGPLv2.1' -function +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_478.yml b/src/licensedcode/data/rules/false-positive_478.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_478.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_48.RULE b/src/licensedcode/data/rules/false-positive_48.RULE index 8312dc3219c..79398b81301 100644 --- a/src/licensedcode/data/rules/false-positive_48.RULE +++ b/src/licensedcode/data/rules/false-positive_48.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in https://raw.githubusercontent.com/google/guava/v31.0.1/guava/src/com/google/common/graph/StandardValueGraph.java +--- + mutable but may not be modified by the user \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_48.yml b/src/licensedcode/data/rules/false-positive_48.yml deleted file mode 100644 index 1e0fd7070d2..00000000000 --- a/src/licensedcode/data/rules/false-positive_48.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in https://raw.githubusercontent.com/google/guava/v31.0.1/guava/src/com/google/common/graph/StandardValueGraph.java diff --git a/src/licensedcode/data/rules/false-positive_480.RULE b/src/licensedcode/data/rules/false-positive_480.RULE index df0306eae0e..5ac2e4ecbbd 100644 --- a/src/licensedcode/data/rules/false-positive_480.RULE +++ b/src/licensedcode/data/rules/false-positive_480.RULE @@ -1 +1,6 @@ -palette_entry.gpl +--- +is_false_positive: yes +notes: not about the GPL +--- + +palette_entry.gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_480.yml b/src/licensedcode/data/rules/false-positive_480.yml deleted file mode 100644 index 5495225e635..00000000000 --- a/src/licensedcode/data/rules/false-positive_480.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not about the GPL diff --git a/src/licensedcode/data/rules/false-positive_482.RULE b/src/licensedcode/data/rules/false-positive_482.RULE index 690e45223e7..cd8ad3b4f26 100644 --- a/src/licensedcode/data/rules/false-positive_482.RULE +++ b/src/licensedcode/data/rules/false-positive_482.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + intended to be used \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_482.yml b/src/licensedcode/data/rules/false-positive_482.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_482.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_483.RULE b/src/licensedcode/data/rules/false-positive_483.RULE index 8d592eee852..bf0996c5ec9 100644 --- a/src/licensedcode/data/rules/false-positive_483.RULE +++ b/src/licensedcode/data/rules/false-positive_483.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + gmp_errno, ARE FOR INTERNAL USE ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_483.yml b/src/licensedcode/data/rules/false-positive_483.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_483.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_484.RULE b/src/licensedcode/data/rules/false-positive_484.RULE index 59f9f6aa800..d7bb5964c8f 100644 --- a/src/licensedcode/data/rules/false-positive_484.RULE +++ b/src/licensedcode/data/rules/false-positive_484.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb +--- + valid.includes('LGPL-3.0-or-later') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_484.yml b/src/licensedcode/data/rules/false-positive_484.yml deleted file mode 100644 index ade5273fadd..00000000000 --- a/src/licensedcode/data/rules/false-positive_484.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb diff --git a/src/licensedcode/data/rules/false-positive_485.RULE b/src/licensedcode/data/rules/false-positive_485.RULE index 4b946ba8121..c3b420dfd37 100644 --- a/src/licensedcode/data/rules/false-positive_485.RULE +++ b/src/licensedcode/data/rules/false-positive_485.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + VALA_PROJECT_LICENSE_GPL3", "gpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_485.yml b/src/licensedcode/data/rules/false-positive_485.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_485.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_486.RULE b/src/licensedcode/data/rules/false-positive_486.RULE index f07f8e5e7e6..9436c942caa 100644 --- a/src/licensedcode/data/rules/false-positive_486.RULE +++ b/src/licensedcode/data/rules/false-positive_486.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + echo "Please replace the Apache license header comment text with:" echo "SPDX-License-Identifier: Apache-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_486.yml b/src/licensedcode/data/rules/false-positive_486.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_486.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_487.RULE b/src/licensedcode/data/rules/false-positive_487.RULE index cb37b17006b..e3adf0a65bb 100644 --- a/src/licensedcode/data/rules/false-positive_487.RULE +++ b/src/licensedcode/data/rules/false-positive_487.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + GPL5_1110 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_487.yml b/src/licensedcode/data/rules/false-positive_487.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_487.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_488.RULE b/src/licensedcode/data/rules/false-positive_488.RULE index 5576d51d806..9d5a05e9f54 100644 --- a/src/licensedcode/data/rules/false-positive_488.RULE +++ b/src/licensedcode/data/rules/false-positive_488.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: code in valgrind not a CC-BY license +--- + cc by_hand \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_488.yml b/src/licensedcode/data/rules/false-positive_488.yml deleted file mode 100644 index b9b29f1e297..00000000000 --- a/src/licensedcode/data/rules/false-positive_488.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: code in valgrind not a CC-BY license diff --git a/src/licensedcode/data/rules/false-positive_489.RULE b/src/licensedcode/data/rules/false-positive_489.RULE index db7ade4c718..d98d5a0d3f8 100644 --- a/src/licensedcode/data/rules/false-positive_489.RULE +++ b/src/licensedcode/data/rules/false-positive_489.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + This file lists future \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_489.yml b/src/licensedcode/data/rules/false-positive_489.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_489.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_49.RULE b/src/licensedcode/data/rules/false-positive_49.RULE index 371b5da2eb7..ab260a0a266 100644 --- a/src/licensedcode/data/rules/false-positive_49.RULE +++ b/src/licensedcode/data/rules/false-positive_49.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + GPL-D 13³ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_49.yml b/src/licensedcode/data/rules/false-positive_49.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_49.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_491.RULE b/src/licensedcode/data/rules/false-positive_491.RULE index cbeb659c9a5..dbb19560a1e 100644 --- a/src/licensedcode/data/rules/false-positive_491.RULE +++ b/src/licensedcode/data/rules/false-positive_491.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + #define GPL0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_491.yml b/src/licensedcode/data/rules/false-positive_491.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_491.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_492.RULE b/src/licensedcode/data/rules/false-positive_492.RULE index 122f70ebf83..a5f3e56e1be 100644 --- a/src/licensedcode/data/rules/false-positive_492.RULE +++ b/src/licensedcode/data/rules/false-positive_492.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: Python Celery commentary on the BSD and GPL, not a license statement +--- + A GPL-compatible license makes it possible to combine Celery with other software that is released under the GPL, it does not mean that we're distributing diff --git a/src/licensedcode/data/rules/false-positive_492.yml b/src/licensedcode/data/rules/false-positive_492.yml deleted file mode 100644 index 392a91be3a2..00000000000 --- a/src/licensedcode/data/rules/false-positive_492.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Python Celery commentary on the BSD and GPL, not a license statement diff --git a/src/licensedcode/data/rules/false-positive_493.RULE b/src/licensedcode/data/rules/false-positive_493.RULE index 1741aa4d847..b40dcc60bf5 100644 --- a/src/licensedcode/data/rules/false-positive_493.RULE +++ b/src/licensedcode/data/rules/false-positive_493.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _1111 GPL0_1111 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_493.yml b/src/licensedcode/data/rules/false-positive_493.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_493.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_495.RULE b/src/licensedcode/data/rules/false-positive_495.RULE index 919803a9e69..c56ccdb9b6e 100644 --- a/src/licensedcode/data/rules/false-positive_495.RULE +++ b/src/licensedcode/data/rules/false-positive_495.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + Referenced original OpenSSL license headers in source file description. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_495.yml b/src/licensedcode/data/rules/false-positive_495.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_495.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_496.RULE b/src/licensedcode/data/rules/false-positive_496.RULE index eee8217cbdb..db2f1d5af70 100644 --- a/src/licensedcode/data/rules/false-positive_496.RULE +++ b/src/licensedcode/data/rules/false-positive_496.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not about licenses +--- + BSD style /dev/ttyp \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_496.yml b/src/licensedcode/data/rules/false-positive_496.yml deleted file mode 100644 index 66daf4267f0..00000000000 --- a/src/licensedcode/data/rules/false-positive_496.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not about licenses diff --git a/src/licensedcode/data/rules/false-positive_497.RULE b/src/licensedcode/data/rules/false-positive_497.RULE index 13c68506256..2fb8b54dd51 100644 --- a/src/licensedcode/data/rules/false-positive_497.RULE +++ b/src/licensedcode/data/rules/false-positive_497.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + _0000 GPL0_0000 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_497.yml b/src/licensedcode/data/rules/false-positive_497.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_497.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_498.RULE b/src/licensedcode/data/rules/false-positive_498.RULE index ef7be766904..7c3a61f730d 100644 --- a/src/licensedcode/data/rules/false-positive_498.RULE +++ b/src/licensedcode/data/rules/false-positive_498.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + set CC by SPEC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_498.yml b/src/licensedcode/data/rules/false-positive_498.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_498.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_499.RULE b/src/licensedcode/data/rules/false-positive_499.RULE index cd6e2fb30a1..f3b2b2d4f54 100644 --- a/src/licensedcode/data/rules/false-positive_499.RULE +++ b/src/licensedcode/data/rules/false-positive_499.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: imagemagick +--- + products[4] = - "GPL Ghostscript", + "GPL Ghostscript", \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_499.yml b/src/licensedcode/data/rules/false-positive_499.yml deleted file mode 100644 index dc8e244de8c..00000000000 --- a/src/licensedcode/data/rules/false-positive_499.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: imagemagick diff --git a/src/licensedcode/data/rules/false-positive_5.RULE b/src/licensedcode/data/rules/false-positive_5.RULE index e65890d3747..aa09a0d8976 100644 --- a/src/licensedcode/data/rules/false-positive_5.RULE +++ b/src/licensedcode/data/rules/false-positive_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in a makefile +--- + sc_GPL_version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_5.yml b/src/licensedcode/data/rules/false-positive_5.yml deleted file mode 100644 index 60b03715a4c..00000000000 --- a/src/licensedcode/data/rules/false-positive_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in a makefile diff --git a/src/licensedcode/data/rules/false-positive_50.RULE b/src/licensedcode/data/rules/false-positive_50.RULE index 6d1dedc37b0..fefd36f33cf 100644 --- a/src/licensedcode/data/rules/false-positive_50.RULE +++ b/src/licensedcode/data/rules/false-positive_50.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + The match.asm code in contrib is under the GNU General Public License. Since it's part of zlib, doesn't that mean that all of zlib falls under the -GNU GPL? +GNU GPL? \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_50.yml b/src/licensedcode/data/rules/false-positive_50.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_50.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_500.RULE b/src/licensedcode/data/rules/false-positive_500.RULE index 4f4d04fec6e..04ccbb26997 100644 --- a/src/licensedcode/data/rules/false-positive_500.RULE +++ b/src/licensedcode/data/rules/false-positive_500.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not about licenses +--- + BSD-style print \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_500.yml b/src/licensedcode/data/rules/false-positive_500.yml deleted file mode 100644 index 66daf4267f0..00000000000 --- a/src/licensedcode/data/rules/false-positive_500.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not about licenses diff --git a/src/licensedcode/data/rules/false-positive_501.RULE b/src/licensedcode/data/rules/false-positive_501.RULE index ff7e21071a6..ee8498ee8e8 100644 --- a/src/licensedcode/data/rules/false-positive_501.RULE +++ b/src/licensedcode/data/rules/false-positive_501.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + BSD Socket \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_501.yml b/src/licensedcode/data/rules/false-positive_501.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_501.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_502.RULE b/src/licensedcode/data/rules/false-positive_502.RULE index 2b0b931da61..300b153aa3f 100644 --- a/src/licensedcode/data/rules/false-positive_502.RULE +++ b/src/licensedcode/data/rules/false-positive_502.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'GPL 2' -function +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_502.yml b/src/licensedcode/data/rules/false-positive_502.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_502.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_503.RULE b/src/licensedcode/data/rules/false-positive_503.RULE index 9a631cfadf0..522a2666a3e 100644 --- a/src/licensedcode/data/rules/false-positive_503.RULE +++ b/src/licensedcode/data/rules/false-positive_503.RULE @@ -1,5 +1,11 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + 'Zlib/libpng': 'Zlib', 'mit': 'MIT', '© 2014 WTFPL – Do What the Fuck You Want to Public License.': 'WTFPL', 'CDDL': 'CDDL-1.1', - 'license GPLv2': 'GPL-2.0-only' + 'license GPLv2': 'GPL-2.0-only' \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_503.yml b/src/licensedcode/data/rules/false-positive_503.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_503.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_504.RULE b/src/licensedcode/data/rules/false-positive_504.RULE index 9422c6a41a6..0a76ed011a2 100644 --- a/src/licensedcode/data/rules/false-positive_504.RULE +++ b/src/licensedcode/data/rules/false-positive_504.RULE @@ -1 +1,6 @@ -remove GPL license code, plus some \ No newline at end of file +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + +remove GPL license code, plus some \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_504.yml b/src/licensedcode/data/rules/false-positive_504.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_504.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_507.RULE b/src/licensedcode/data/rules/false-positive_507.RULE index e1b16bd7576..48d6ff9c770 100644 --- a/src/licensedcode/data/rules/false-positive_507.RULE +++ b/src/licensedcode/data/rules/false-positive_507.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Debian lintian rule names +--- + copyright-file-contains-full-apache-2-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_507.yml b/src/licensedcode/data/rules/false-positive_507.yml deleted file mode 100644 index a47372a200e..00000000000 --- a/src/licensedcode/data/rules/false-positive_507.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Debian lintian rule names diff --git a/src/licensedcode/data/rules/false-positive_508.RULE b/src/licensedcode/data/rules/false-positive_508.RULE index ca79122cb2e..8ba160ec546 100644 --- a/src/licensedcode/data/rules/false-positive_508.RULE +++ b/src/licensedcode/data/rules/false-positive_508.RULE @@ -1,5 +1,10 @@ +--- +is_false_positive: yes +notes: comment about a license elsewhere +--- + The SD card loader is available from https://wiki..org/Boards/ -under a open-source 3-clause BSD license. +under a open-source 3-clause BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_508.yml b/src/licensedcode/data/rules/false-positive_508.yml deleted file mode 100644 index fe98503fe59..00000000000 --- a/src/licensedcode/data/rules/false-positive_508.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comment about a license elsewhere diff --git a/src/licensedcode/data/rules/false-positive_509.RULE b/src/licensedcode/data/rules/false-positive_509.RULE index 51dfb46ec05..088b82e4706 100644 --- a/src/licensedcode/data/rules/false-positive_509.RULE +++ b/src/licensedcode/data/rules/false-positive_509.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in a makefile +--- + halt='GFDL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_509.yml b/src/licensedcode/data/rules/false-positive_509.yml deleted file mode 100644 index 60b03715a4c..00000000000 --- a/src/licensedcode/data/rules/false-positive_509.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in a makefile diff --git a/src/licensedcode/data/rules/false-positive_51.RULE b/src/licensedcode/data/rules/false-positive_51.RULE index 1c45d269c15..c074b341d27 100644 --- a/src/licensedcode/data/rules/false-positive_51.RULE +++ b/src/licensedcode/data/rules/false-positive_51.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in gitlab's proprietary license-finder changelog +--- + Add mapping for `Apache License v2.0` to `Apache-2.0` \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_51.yml b/src/licensedcode/data/rules/false-positive_51.yml deleted file mode 100644 index 0ab8015dfc6..00000000000 --- a/src/licensedcode/data/rules/false-positive_51.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in gitlab's proprietary license-finder changelog diff --git a/src/licensedcode/data/rules/false-positive_510.RULE b/src/licensedcode/data/rules/false-positive_510.RULE index 2e7b854ba24..0213043509a 100644 --- a/src/licensedcode/data/rules/false-positive_510.RULE +++ b/src/licensedcode/data/rules/false-positive_510.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: kernel +--- + page]-[based] copying \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_510.yml b/src/licensedcode/data/rules/false-positive_510.yml deleted file mode 100644 index 0e829cb7871..00000000000 --- a/src/licensedcode/data/rules/false-positive_510.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: kernel diff --git a/src/licensedcode/data/rules/false-positive_511.RULE b/src/licensedcode/data/rules/false-positive_511.RULE index b462de59b5b..292ad243c0b 100644 --- a/src/licensedcode/data/rules/false-positive_511.RULE +++ b/src/licensedcode/data/rules/false-positive_511.RULE @@ -1,3 +1,8 @@ - // e.g. 'GPL2' - function +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'GPL2' + function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_511.yml b/src/licensedcode/data/rules/false-positive_511.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_511.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_512.RULE b/src/licensedcode/data/rules/false-positive_512.RULE index 33a5a85cbae..3cdb37c06b9 100644 --- a/src/licensedcode/data/rules/false-positive_512.RULE +++ b/src/licensedcode/data/rules/false-positive_512.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + the latest version of \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_512.yml b/src/licensedcode/data/rules/false-positive_512.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_512.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_513.RULE b/src/licensedcode/data/rules/false-positive_513.RULE index 3c686e7664c..125125ed5fa 100644 --- a/src/licensedcode/data/rules/false-positive_513.RULE +++ b/src/licensedcode/data/rules/false-positive_513.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments about licensing +--- + PD is the Motorola Public Domain Interface and ICD is the commercial interface by P&E. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_513.yml b/src/licensedcode/data/rules/false-positive_513.yml deleted file mode 100644 index 2ead1fb3231..00000000000 --- a/src/licensedcode/data/rules/false-positive_513.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_514.RULE b/src/licensedcode/data/rules/false-positive_514.RULE index c7a6d04616a..f7dc26b7188 100644 --- a/src/licensedcode/data/rules/false-positive_514.RULE +++ b/src/licensedcode/data/rules/false-positive_514.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + GPL", rw \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_514.yml b/src/licensedcode/data/rules/false-positive_514.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_514.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_515.RULE b/src/licensedcode/data/rules/false-positive_515.RULE index 220027bc0d1..04c8d0579cc 100644 --- a/src/licensedcode/data/rules/false-positive_515.RULE +++ b/src/licensedcode/data/rules/false-positive_515.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is the email of the PCRE author and is also part of its license +--- + Philip Hazel ph10 University of Cambridge Computing Service Cambridge England \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_515.yml b/src/licensedcode/data/rules/false-positive_515.yml deleted file mode 100644 index c4e10be8d31..00000000000 --- a/src/licensedcode/data/rules/false-positive_515.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is the email of the PCRE author and is also part of its license diff --git a/src/licensedcode/data/rules/false-positive_516.RULE b/src/licensedcode/data/rules/false-positive_516.RULE index d62569f69f7..201c35bd85d 100644 --- a/src/licensedcode/data/rules/false-positive_516.RULE +++ b/src/licensedcode/data/rules/false-positive_516.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: sumbols used in u-boot +--- + GPL2_1111 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_516.yml b/src/licensedcode/data/rules/false-positive_516.yml deleted file mode 100644 index af13ea52c55..00000000000 --- a/src/licensedcode/data/rules/false-positive_516.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: sumbols used in u-boot diff --git a/src/licensedcode/data/rules/false-positive_517.RULE b/src/licensedcode/data/rules/false-positive_517.RULE index 247a50c8f2f..771341cb048 100644 --- a/src/licensedcode/data/rules/false-positive_517.RULE +++ b/src/licensedcode/data/rules/false-positive_517.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + gpl(false \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_517.yml b/src/licensedcode/data/rules/false-positive_517.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_517.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_518.RULE b/src/licensedcode/data/rules/false-positive_518.RULE index 640f50452a9..0d8556ca27b 100644 --- a/src/licensedcode/data/rules/false-positive_518.RULE +++ b/src/licensedcode/data/rules/false-positive_518.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + is an excellent public domain mem \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_518.yml b/src/licensedcode/data/rules/false-positive_518.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_518.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_519.RULE b/src/licensedcode/data/rules/false-positive_519.RULE index e8ccda15570..a9f9097eb60 100644 --- a/src/licensedcode/data/rules/false-positive_519.RULE +++ b/src/licensedcode/data/rules/false-positive_519.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: bare trademark reference +--- + is a trademark of may be registered in certain jurisdictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_519.yml b/src/licensedcode/data/rules/false-positive_519.yml deleted file mode 100644 index 011f2df2c23..00000000000 --- a/src/licensedcode/data/rules/false-positive_519.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: bare trademark reference diff --git a/src/licensedcode/data/rules/false-positive_52.RULE b/src/licensedcode/data/rules/false-positive_52.RULE index e6fb85203c0..f9738bb60ff 100644 --- a/src/licensedcode/data/rules/false-positive_52.RULE +++ b/src/licensedcode/data/rules/false-positive_52.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just some code about licenses +--- + license-included, bring-your-own-license, general-public-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_52.yml b/src/licensedcode/data/rules/false-positive_52.yml deleted file mode 100644 index fe18d580fca..00000000000 --- a/src/licensedcode/data/rules/false-positive_52.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just some code about licenses diff --git a/src/licensedcode/data/rules/false-positive_520.RULE b/src/licensedcode/data/rules/false-positive_520.RULE index 9890265f20c..95b6e8556c9 100644 --- a/src/licensedcode/data/rules/false-positive_520.RULE +++ b/src/licensedcode/data/rules/false-positive_520.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + The output can be restricted to the GPL directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_520.yml b/src/licensedcode/data/rules/false-positive_520.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_520.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_521.RULE b/src/licensedcode/data/rules/false-positive_521.RULE index 177306b9614..37c73877208 100644 --- a/src/licensedcode/data/rules/false-positive_521.RULE +++ b/src/licensedcode/data/rules/false-positive_521.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: public NCursesException is not a license +--- + public NCursesException \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_521.yml b/src/licensedcode/data/rules/false-positive_521.yml deleted file mode 100644 index 0b5b0e9cfc3..00000000000 --- a/src/licensedcode/data/rules/false-positive_521.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: public NCursesException is not a license diff --git a/src/licensedcode/data/rules/false-positive_522.RULE b/src/licensedcode/data/rules/false-positive_522.RULE index fb1852190f7..de456f19410 100644 --- a/src/licensedcode/data/rules/false-positive_522.RULE +++ b/src/licensedcode/data/rules/false-positive_522.RULE @@ -1,3 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + Note that this permission is granted by default only to remain -backwards compatible. - \ No newline at end of file +backwards compatible. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_522.yml b/src/licensedcode/data/rules/false-positive_522.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_522.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_523.RULE b/src/licensedcode/data/rules/false-positive_523.RULE index b19d23e074d..1deabe3eaad 100644 --- a/src/licensedcode/data/rules/false-positive_523.RULE +++ b/src/licensedcode/data/rules/false-positive_523.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ecos symbol +--- + GPL_B4DIS \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_523.yml b/src/licensedcode/data/rules/false-positive_523.yml deleted file mode 100644 index de583528724..00000000000 --- a/src/licensedcode/data/rules/false-positive_523.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ecos symbol diff --git a/src/licensedcode/data/rules/false-positive_524.RULE b/src/licensedcode/data/rules/false-positive_524.RULE index f8390f12ce2..1969d464537 100644 --- a/src/licensedcode/data/rules/false-positive_524.RULE +++ b/src/licensedcode/data/rules/false-positive_524.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: Seen in libpipeline, this is a commentary +--- + Note on GPL versions (This note is informative, and if it conflicts with the terms of the licence diff --git a/src/licensedcode/data/rules/false-positive_524.yml b/src/licensedcode/data/rules/false-positive_524.yml deleted file mode 100644 index 4dc44eb8eff..00000000000 --- a/src/licensedcode/data/rules/false-positive_524.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in libpipeline, this is a commentary diff --git a/src/licensedcode/data/rules/false-positive_525.RULE b/src/licensedcode/data/rules/false-positive_525.RULE index c7a06f263c1..e2ff1eb70eb 100644 --- a/src/licensedcode/data/rules/false-positive_525.RULE +++ b/src/licensedcode/data/rules/false-positive_525.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in https://github.com/pudo/normality/blob/e08736588575b31227de062d7ee82053b9d590bd/normality/transliteration.py +--- + Since all Python implementations are either GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_525.yml b/src/licensedcode/data/rules/false-positive_525.yml deleted file mode 100644 index a4e8e61281e..00000000000 --- a/src/licensedcode/data/rules/false-positive_525.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/pudo/normality/blob/e08736588575b31227de062d7ee82053b9d590bd/normality/transliteration.py diff --git a/src/licensedcode/data/rules/false-positive_526.RULE b/src/licensedcode/data/rules/false-positive_526.RULE index 7677ddc5cdb..65a9796a390 100644 --- a/src/licensedcode/data/rules/false-positive_526.RULE +++ b/src/licensedcode/data/rules/false-positive_526.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in Python setuptools/_distutils/dist.py https://github.com/pypa/setuptools/blob/b6bbe236ed0689f50b5148f1172510b975687e62/setuptools/_distutils/dist.py#L109 +--- + "print the URL for this package"), ('license', None, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_526.yml b/src/licensedcode/data/rules/false-positive_526.yml deleted file mode 100644 index d0d44f583e1..00000000000 --- a/src/licensedcode/data/rules/false-positive_526.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in Python setuptools/_distutils/dist.py https://github.com/pypa/setuptools/blob/b6bbe236ed0689f50b5148f1172510b975687e62/setuptools/_distutils/dist.py#L109 diff --git a/src/licensedcode/data/rules/false-positive_527.RULE b/src/licensedcode/data/rules/false-positive_527.RULE index ac3b01e6760..56402b630e0 100644 --- a/src/licensedcode/data/rules/false-positive_527.RULE +++ b/src/licensedcode/data/rules/false-positive_527.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in Python setuptools/_distutils/dist.py https://github.com/pypa/setuptools/blob/b6bbe236ed0689f50b5148f1172510b975687e62/setuptools/_distutils/dist.py#L109 +--- + "print the license of the package"), ('licence', None, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_527.yml b/src/licensedcode/data/rules/false-positive_527.yml deleted file mode 100644 index d0d44f583e1..00000000000 --- a/src/licensedcode/data/rules/false-positive_527.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in Python setuptools/_distutils/dist.py https://github.com/pypa/setuptools/blob/b6bbe236ed0689f50b5148f1172510b975687e62/setuptools/_distutils/dist.py#L109 diff --git a/src/licensedcode/data/rules/false-positive_528.RULE b/src/licensedcode/data/rules/false-positive_528.RULE index 028fbee1daf..4c7984e9848 100644 --- a/src/licensedcode/data/rules/false-positive_528.RULE +++ b/src/licensedcode/data/rules/false-positive_528.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: https://github.com/Embedfire/ebf_6ull_linux/blob/master/Documentation/sound/oss/README.OSS +--- + with the freeware version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_528.yml b/src/licensedcode/data/rules/false-positive_528.yml deleted file mode 100644 index 198d346b341..00000000000 --- a/src/licensedcode/data/rules/false-positive_528.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: https://github.com/Embedfire/ebf_6ull_linux/blob/master/Documentation/sound/oss/README.OSS diff --git a/src/licensedcode/data/rules/false-positive_529.RULE b/src/licensedcode/data/rules/false-positive_529.RULE index 72c0db31470..8ca23ebc17e 100644 --- a/src/licensedcode/data/rules/false-positive_529.RULE +++ b/src/licensedcode/data/rules/false-positive_529.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: This is not a license https://raw.githubusercontent.com/zyq8709/DexHunter/master/dalvik/vm/compiler/codegen/x86/AnalysisO1.cpp +--- + vr_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_529.yml b/src/licensedcode/data/rules/false-positive_529.yml deleted file mode 100644 index e9156f89b49..00000000000 --- a/src/licensedcode/data/rules/false-positive_529.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: This is not a license https://raw.githubusercontent.com/zyq8709/DexHunter/master/dalvik/vm/compiler/codegen/x86/AnalysisO1.cpp diff --git a/src/licensedcode/data/rules/false-positive_53.RULE b/src/licensedcode/data/rules/false-positive_53.RULE index 0bbbb93a753..7ee093e33b9 100644 --- a/src/licensedcode/data/rules/false-positive_53.RULE +++ b/src/licensedcode/data/rules/false-positive_53.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + sp) /* MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_53.yml b/src/licensedcode/data/rules/false-positive_53.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_53.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_530.RULE b/src/licensedcode/data/rules/false-positive_530.RULE index 66206d9fe6b..00b422746cd 100644 --- a/src/licensedcode/data/rules/false-positive_530.RULE +++ b/src/licensedcode/data/rules/false-positive_530.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: https://github.com/Embedfire/ebf_6ull_linux/blob/master/Documentation/sound/oss/README.OSS +--- + to implement a freeware driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_530.yml b/src/licensedcode/data/rules/false-positive_530.yml deleted file mode 100644 index 198d346b341..00000000000 --- a/src/licensedcode/data/rules/false-positive_530.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: https://github.com/Embedfire/ebf_6ull_linux/blob/master/Documentation/sound/oss/README.OSS diff --git a/src/licensedcode/data/rules/false-positive_531.RULE b/src/licensedcode/data/rules/false-positive_531.RULE index 422f5d0f884..cf368480b68 100644 --- a/src/licensedcode/data/rules/false-positive_531.RULE +++ b/src/licensedcode/data/rules/false-positive_531.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: pyzmq comments about licensing +--- + Examples are copyright their respective authors, and BSD unless otherwise specified by the author. You can LGPL (or GPL or MIT or Apache, etc.) your own new examples if you like, but we strongly encourage using the default BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_531.yml b/src/licensedcode/data/rules/false-positive_531.yml deleted file mode 100644 index 78530b9e44c..00000000000 --- a/src/licensedcode/data/rules/false-positive_531.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: pyzmq comments about licensing diff --git a/src/licensedcode/data/rules/false-positive_532.RULE b/src/licensedcode/data/rules/false-positive_532.RULE index 5715ddcd836..741bd7fc170 100644 --- a/src/licensedcode/data/rules/false-positive_532.RULE +++ b/src/licensedcode/data/rules/false-positive_532.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + PACKAGE_DATADIR "/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_532.yml b/src/licensedcode/data/rules/false-positive_532.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_532.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_533.RULE b/src/licensedcode/data/rules/false-positive_533.RULE index 893dae1bba6..1c70c4b71d4 100644 --- a/src/licensedcode/data/rules/false-positive_533.RULE +++ b/src/licensedcode/data/rules/false-positive_533.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + PACKAGE_DATADIR "/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_533.yml b/src/licensedcode/data/rules/false-positive_533.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_533.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_534.RULE b/src/licensedcode/data/rules/false-positive_534.RULE index 8dc994219e1..811b2f4e55a 100644 --- a/src/licensedcode/data/rules/false-positive_534.RULE +++ b/src/licensedcode/data/rules/false-positive_534.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + PACKAGE_DATADIR "/licenses/gpl-3.0.txt" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_534.yml b/src/licensedcode/data/rules/false-positive_534.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_534.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_535.RULE b/src/licensedcode/data/rules/false-positive_535.RULE index 686b8a5ad9b..11856a69772 100644 --- a/src/licensedcode/data/rules/false-positive_535.RULE +++ b/src/licensedcode/data/rules/false-positive_535.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + PACKAGE_DATADIR "/licenses/lgpl-3.0.txt") \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_535.yml b/src/licensedcode/data/rules/false-positive_535.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_535.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_536.RULE b/src/licensedcode/data/rules/false-positive_536.RULE index 2783267fd62..b4a32455a5a 100644 --- a/src/licensedcode/data/rules/false-positive_536.RULE +++ b/src/licensedcode/data/rules/false-positive_536.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + strdup ("GNU General Public License"), \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_536.yml b/src/licensedcode/data/rules/false-positive_536.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_536.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_537.RULE b/src/licensedcode/data/rules/false-positive_537.RULE index bb285699797..3a1e3a3ad96 100644 --- a/src/licensedcode/data/rules/false-positive_537.RULE +++ b/src/licensedcode/data/rules/false-positive_537.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + strdup ("GNU Lesser General Public License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_537.yml b/src/licensedcode/data/rules/false-positive_537.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_537.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_538.RULE b/src/licensedcode/data/rules/false-positive_538.RULE index 1e4470fdb16..079dab17031 100644 --- a/src/licensedcode/data/rules/false-positive_538.RULE +++ b/src/licensedcode/data/rules/false-positive_538.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + strdup ("/usr/share/common-licenses/GPL-2") \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_538.yml b/src/licensedcode/data/rules/false-positive_538.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_538.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_539.RULE b/src/licensedcode/data/rules/false-positive_539.RULE index 0e8533e27b7..0fe394bd36f 100644 --- a/src/licensedcode/data/rules/false-positive_539.RULE +++ b/src/licensedcode/data/rules/false-positive_539.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + strdup ("/usr/share/common-licenses/LGPL-2.1") \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_539.yml b/src/licensedcode/data/rules/false-positive_539.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_539.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_54.RULE b/src/licensedcode/data/rules/false-positive_54.RULE index ae61700c858..df5c5cb85df 100644 --- a/src/licensedcode/data/rules/false-positive_54.RULE +++ b/src/licensedcode/data/rules/false-positive_54.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in gitlab's proprietary license-finder changelog +--- + Add a mapping for `BSD-like` software licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_54.yml b/src/licensedcode/data/rules/false-positive_54.yml deleted file mode 100644 index 0ab8015dfc6..00000000000 --- a/src/licensedcode/data/rules/false-positive_54.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in gitlab's proprietary license-finder changelog diff --git a/src/licensedcode/data/rules/false-positive_540.RULE b/src/licensedcode/data/rules/false-positive_540.RULE index d712960d333..8523d49bf7d 100644 --- a/src/licensedcode/data/rules/false-positive_540.RULE +++ b/src/licensedcode/data/rules/false-positive_540.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + strdup ("/usr/share/common-licenses/GPL-3") \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_540.yml b/src/licensedcode/data/rules/false-positive_540.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_540.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_541.RULE b/src/licensedcode/data/rules/false-positive_541.RULE index c47206043e7..ee644819895 100644 --- a/src/licensedcode/data/rules/false-positive_541.RULE +++ b/src/licensedcode/data/rules/false-positive_541.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in vala project generator +--- + strdup ("/usr/share/common-licenses/LGPL-3") \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_541.yml b/src/licensedcode/data/rules/false-positive_541.yml deleted file mode 100644 index 657dd8f32be..00000000000 --- a/src/licensedcode/data/rules/false-positive_541.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in vala project generator diff --git a/src/licensedcode/data/rules/false-positive_542.RULE b/src/licensedcode/data/rules/false-positive_542.RULE index 3645c3ac38f..d3ac78a10eb 100644 --- a/src/licensedcode/data/rules/false-positive_542.RULE +++ b/src/licensedcode/data/rules/false-positive_542.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + void GPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_542.yml b/src/licensedcode/data/rules/false-positive_542.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_542.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_543.RULE b/src/licensedcode/data/rules/false-positive_543.RULE index 17a8e68c7fa..ceca30f558b 100644 --- a/src/licensedcode/data/rules/false-positive_543.RULE +++ b/src/licensedcode/data/rules/false-positive_543.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL1_BASE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_543.yml b/src/licensedcode/data/rules/false-positive_543.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_543.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_544.RULE b/src/licensedcode/data/rules/false-positive_544.RULE index b100a7bf641..a4f288f19d2 100644 --- a/src/licensedcode/data/rules/false-positive_544.RULE +++ b/src/licensedcode/data/rules/false-positive_544.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL1_GPRS \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_544.yml b/src/licensedcode/data/rules/false-positive_544.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_544.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_545.RULE b/src/licensedcode/data/rules/false-positive_545.RULE index 1fb30eb1020..9636b6a8d84 100644 --- a/src/licensedcode/data/rules/false-positive_545.RULE +++ b/src/licensedcode/data/rules/false-positive_545.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + Logic::GPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_545.yml b/src/licensedcode/data/rules/false-positive_545.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_545.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_546.RULE b/src/licensedcode/data/rules/false-positive_546.RULE index 061a05ec174..0305834929b 100644 --- a/src/licensedcode/data/rules/false-positive_546.RULE +++ b/src/licensedcode/data/rules/false-positive_546.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + inc/gpl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_546.yml b/src/licensedcode/data/rules/false-positive_546.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_546.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_547.RULE b/src/licensedcode/data/rules/false-positive_547.RULE index 9518888c5ad..ead49ae22a1 100644 --- a/src/licensedcode/data/rules/false-positive_547.RULE +++ b/src/licensedcode/data/rules/false-positive_547.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + gpl1 input \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_547.yml b/src/licensedcode/data/rules/false-positive_547.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_547.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_548.RULE b/src/licensedcode/data/rules/false-positive_548.RULE index 9a2fc9a6d1f..631b33f4a55 100644 --- a/src/licensedcode/data/rules/false-positive_548.RULE +++ b/src/licensedcode/data/rules/false-positive_548.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + gpl1 gpl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_548.yml b/src/licensedcode/data/rules/false-positive_548.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_548.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_549.RULE b/src/licensedcode/data/rules/false-positive_549.RULE index e5b8df91dc8..6184225819c 100644 --- a/src/licensedcode/data/rules/false-positive_549.RULE +++ b/src/licensedcode/data/rules/false-positive_549.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL1_0 if (err \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_549.yml b/src/licensedcode/data/rules/false-positive_549.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_549.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_55.RULE b/src/licensedcode/data/rules/false-positive_55.RULE index 2e64c3734ba..87e8e5b9a65 100644 --- a/src/licensedcode/data/rules/false-positive_55.RULE +++ b/src/licensedcode/data/rules/false-positive_55.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in u-boot docs +--- + C LGPL3 ON \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_55.yml b/src/licensedcode/data/rules/false-positive_55.yml deleted file mode 100644 index a90db8ed70f..00000000000 --- a/src/licensedcode/data/rules/false-positive_55.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in u-boot docs diff --git a/src/licensedcode/data/rules/false-positive_550.RULE b/src/licensedcode/data/rules/false-positive_550.RULE index 5b9710e8292..7cdfd7318d6 100644 --- a/src/licensedcode/data/rules/false-positive_550.RULE +++ b/src/licensedcode/data/rules/false-positive_550.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + request GPL1 for \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_550.yml b/src/licensedcode/data/rules/false-positive_550.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_550.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_551.RULE b/src/licensedcode/data/rules/false-positive_551.RULE index 4fb2eeb375e..53627c5410b 100644 --- a/src/licensedcode/data/rules/false-positive_551.RULE +++ b/src/licensedcode/data/rules/false-positive_551.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + define GPL1 diff --git a/src/licensedcode/data/rules/false-positive_551.yml b/src/licensedcode/data/rules/false-positive_551.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_551.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_552.RULE b/src/licensedcode/data/rules/false-positive_552.RULE index e681b65fa59..d3ec845f1fa 100644 --- a/src/licensedcode/data/rules/false-positive_552.RULE +++ b/src/licensedcode/data/rules/false-positive_552.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL2_BASE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_552.yml b/src/licensedcode/data/rules/false-positive_552.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_552.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_553.RULE b/src/licensedcode/data/rules/false-positive_553.RULE index b540e50c65e..4116b221b2c 100644 --- a/src/licensedcode/data/rules/false-positive_553.RULE +++ b/src/licensedcode/data/rules/false-positive_553.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL2_GPRS \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_553.yml b/src/licensedcode/data/rules/false-positive_553.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_553.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_554.RULE b/src/licensedcode/data/rules/false-positive_554.RULE index d0bb6813ad8..46390b28e1d 100644 --- a/src/licensedcode/data/rules/false-positive_554.RULE +++ b/src/licensedcode/data/rules/false-positive_554.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + Logic::GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_554.yml b/src/licensedcode/data/rules/false-positive_554.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_554.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_555.RULE b/src/licensedcode/data/rules/false-positive_555.RULE index cd5652e6a6d..063636bfdfd 100644 --- a/src/licensedcode/data/rules/false-positive_555.RULE +++ b/src/licensedcode/data/rules/false-positive_555.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + inc/gpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_555.yml b/src/licensedcode/data/rules/false-positive_555.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_555.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_556.RULE b/src/licensedcode/data/rules/false-positive_556.RULE index 08de357a900..53542b75026 100644 --- a/src/licensedcode/data/rules/false-positive_556.RULE +++ b/src/licensedcode/data/rules/false-positive_556.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + gpl2 input \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_556.yml b/src/licensedcode/data/rules/false-positive_556.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_556.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_557.RULE b/src/licensedcode/data/rules/false-positive_557.RULE index c04e079c37e..97c2a6a3f0d 100644 --- a/src/licensedcode/data/rules/false-positive_557.RULE +++ b/src/licensedcode/data/rules/false-positive_557.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL2_0 if (err \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_557.yml b/src/licensedcode/data/rules/false-positive_557.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_557.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_558.RULE b/src/licensedcode/data/rules/false-positive_558.RULE index ee7d0781c25..163db768683 100644 --- a/src/licensedcode/data/rules/false-positive_558.RULE +++ b/src/licensedcode/data/rules/false-positive_558.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + request GPL2 for \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_558.yml b/src/licensedcode/data/rules/false-positive_558.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_558.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_559.RULE b/src/licensedcode/data/rules/false-positive_559.RULE index 8e497d586e6..449f62b471a 100644 --- a/src/licensedcode/data/rules/false-positive_559.RULE +++ b/src/licensedcode/data/rules/false-positive_559.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + gpl3: gpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_559.yml b/src/licensedcode/data/rules/false-positive_559.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_559.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_56.RULE b/src/licensedcode/data/rules/false-positive_56.RULE index b0d0b1331ba..e1a4d422df0 100644 --- a/src/licensedcode/data/rules/false-positive_56.RULE +++ b/src/licensedcode/data/rules/false-positive_56.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + gpl ? 0xffffU \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_56.yml b/src/licensedcode/data/rules/false-positive_56.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_560.RULE b/src/licensedcode/data/rules/false-positive_560.RULE index c0898640a09..8056124b9e7 100644 --- a/src/licensedcode/data/rules/false-positive_560.RULE +++ b/src/licensedcode/data/rules/false-positive_560.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL1_RRBP \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_560.yml b/src/licensedcode/data/rules/false-positive_560.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_560.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_561.RULE b/src/licensedcode/data/rules/false-positive_561.RULE index 580aa316d78..d6acbfe65b7 100644 --- a/src/licensedcode/data/rules/false-positive_561.RULE +++ b/src/licensedcode/data/rules/false-positive_561.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + gpl1.gpx \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_561.yml b/src/licensedcode/data/rules/false-positive_561.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_561.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_562.RULE b/src/licensedcode/data/rules/false-positive_562.RULE index b5388c4c634..205407647c9 100644 --- a/src/licensedcode/data/rules/false-positive_562.RULE +++ b/src/licensedcode/data/rules/false-positive_562.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL1 LOOPBACK \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_562.yml b/src/licensedcode/data/rules/false-positive_562.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_562.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_563.RULE b/src/licensedcode/data/rules/false-positive_563.RULE index 39e2905c0d2..00c369b83eb 100644 --- a/src/licensedcode/data/rules/false-positive_563.RULE +++ b/src/licensedcode/data/rules/false-positive_563.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + gpl1_tb \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_563.yml b/src/licensedcode/data/rules/false-positive_563.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_563.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_564.RULE b/src/licensedcode/data/rules/false-positive_564.RULE index 62a433bc53a..16860455bbf 100644 --- a/src/licensedcode/data/rules/false-positive_564.RULE +++ b/src/licensedcode/data/rules/false-positive_564.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + subset1 GPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_564.yml b/src/licensedcode/data/rules/false-positive_564.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_564.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_565.RULE b/src/licensedcode/data/rules/false-positive_565.RULE index 49719e034c0..0a13e24ea76 100644 --- a/src/licensedcode/data/rules/false-positive_565.RULE +++ b/src/licensedcode/data/rules/false-positive_565.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL2_RRBP \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_565.yml b/src/licensedcode/data/rules/false-positive_565.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_565.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_566.RULE b/src/licensedcode/data/rules/false-positive_566.RULE index ec58c250404..672ee3275bc 100644 --- a/src/licensedcode/data/rules/false-positive_566.RULE +++ b/src/licensedcode/data/rules/false-positive_566.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + gpl2.gpx \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_566.yml b/src/licensedcode/data/rules/false-positive_566.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_566.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_567.RULE b/src/licensedcode/data/rules/false-positive_567.RULE index 2f8caf2cfd5..a355b0b1fbd 100644 --- a/src/licensedcode/data/rules/false-positive_567.RULE +++ b/src/licensedcode/data/rules/false-positive_567.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + GPL2 LOOPBACK \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_567.yml b/src/licensedcode/data/rules/false-positive_567.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_567.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_568.RULE b/src/licensedcode/data/rules/false-positive_568.RULE index 2d988b5f10d..08529bd7c6f 100644 --- a/src/licensedcode/data/rules/false-positive_568.RULE +++ b/src/licensedcode/data/rules/false-positive_568.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + gpl2_tb \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_568.yml b/src/licensedcode/data/rules/false-positive_568.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_568.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_569.RULE b/src/licensedcode/data/rules/false-positive_569.RULE index f122633f104..dd8f1096d5f 100644 --- a/src/licensedcode/data/rules/false-positive_569.RULE +++ b/src/licensedcode/data/rules/false-positive_569.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable names that look like GPL but are not +--- + subset2 GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_569.yml b/src/licensedcode/data/rules/false-positive_569.yml deleted file mode 100644 index 1a5b334a4d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_569.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable names that look like GPL but are not diff --git a/src/licensedcode/data/rules/false-positive_57.RULE b/src/licensedcode/data/rules/false-positive_57.RULE index 41328be5e6f..8965ee741b6 100644 --- a/src/licensedcode/data/rules/false-positive_57.RULE +++ b/src/licensedcode/data/rules/false-positive_57.RULE @@ -1 +1,6 @@ -GPL_B 8 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_57.yml b/src/licensedcode/data/rules/false-positive_57.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_570.RULE b/src/licensedcode/data/rules/false-positive_570.RULE index 59d9ae98f77..097532916a1 100644 --- a/src/licensedcode/data/rules/false-positive_570.RULE +++ b/src/licensedcode/data/rules/false-positive_570.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a license comment +--- + has ceased to use or recommend any version of the Academic Free License below version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_570.yml b/src/licensedcode/data/rules/false-positive_570.yml deleted file mode 100644 index 05e57ff8f46..00000000000 --- a/src/licensedcode/data/rules/false-positive_570.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a license comment diff --git a/src/licensedcode/data/rules/false-positive_571.RULE b/src/licensedcode/data/rules/false-positive_571.RULE index 11e1b721970..7ec962e3adf 100644 --- a/src/licensedcode/data/rules/false-positive_571.RULE +++ b/src/licensedcode/data/rules/false-positive_571.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: this is a source offer and commentary, not a license. +--- + To the extent any open source components are licensed under the GPL and/or LGPL, or other similar licenses that require the source code and/or modifications to source code to be made available, you may obtain diff --git a/src/licensedcode/data/rules/false-positive_571.yml b/src/licensedcode/data/rules/false-positive_571.yml deleted file mode 100644 index b9e2b30e983..00000000000 --- a/src/licensedcode/data/rules/false-positive_571.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is a source offer and commentary, not a license. diff --git a/src/licensedcode/data/rules/false-positive_572.RULE b/src/licensedcode/data/rules/false-positive_572.RULE index f0ee845fb8b..7da5645bc7f 100644 --- a/src/licensedcode/data/rules/false-positive_572.RULE +++ b/src/licensedcode/data/rules/false-positive_572.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license reference, but a C include +--- + public_domain.h" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_572.yml b/src/licensedcode/data/rules/false-positive_572.yml deleted file mode 100644 index 3c94c7c24ba..00000000000 --- a/src/licensedcode/data/rules/false-positive_572.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license reference, but a C include diff --git a/src/licensedcode/data/rules/false-positive_573.RULE b/src/licensedcode/data/rules/false-positive_573.RULE index 246140c05fb..71d97e86df0 100644 --- a/src/licensedcode/data/rules/false-positive_573.RULE +++ b/src/licensedcode/data/rules/false-positive_573.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license reference +--- + The public domain names to use \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_573.yml b/src/licensedcode/data/rules/false-positive_573.yml deleted file mode 100644 index ffef9cb9c96..00000000000 --- a/src/licensedcode/data/rules/false-positive_573.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license reference diff --git a/src/licensedcode/data/rules/false-positive_574.RULE b/src/licensedcode/data/rules/false-positive_574.RULE index 0adbc870a28..8e100c1f353 100644 --- a/src/licensedcode/data/rules/false-positive_574.RULE +++ b/src/licensedcode/data/rules/false-positive_574.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: header of a compatibility commentary in Python licenses +--- + Owner | GPL compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_574.yml b/src/licensedcode/data/rules/false-positive_574.yml deleted file mode 100644 index 5fd1b675474..00000000000 --- a/src/licensedcode/data/rules/false-positive_574.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: header of a compatibility commentary in Python licenses diff --git a/src/licensedcode/data/rules/false-positive_575.RULE b/src/licensedcode/data/rules/false-positive_575.RULE index 5d3d9ba56f4..1041a362717 100644 --- a/src/licensedcode/data/rules/false-positive_575.RULE +++ b/src/licensedcode/data/rules/false-positive_575.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + Python-2.7.13 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_575.yml b/src/licensedcode/data/rules/false-positive_575.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_575.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_576.RULE b/src/licensedcode/data/rules/false-positive_576.RULE index d31aee42550..ee711117892 100644 --- a/src/licensedcode/data/rules/false-positive_576.RULE +++ b/src/licensedcode/data/rules/false-positive_576.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a changelog entry not a license +--- + change path to copy of GPL used in textbox \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_576.yml b/src/licensedcode/data/rules/false-positive_576.yml deleted file mode 100644 index a03dca2db36..00000000000 --- a/src/licensedcode/data/rules/false-positive_576.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a changelog entry not a license diff --git a/src/licensedcode/data/rules/false-positive_577.RULE b/src/licensedcode/data/rules/false-positive_577.RULE index 379c521f223..369ac3c6d46 100644 --- a/src/licensedcode/data/rules/false-positive_577.RULE +++ b/src/licensedcode/data/rules/false-positive_577.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a changelog entry not a license +--- + use the system copy of GPL rather \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_577.yml b/src/licensedcode/data/rules/false-positive_577.yml deleted file mode 100644 index a03dca2db36..00000000000 --- a/src/licensedcode/data/rules/false-positive_577.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a changelog entry not a license diff --git a/src/licensedcode/data/rules/false-positive_578.RULE b/src/licensedcode/data/rules/false-positive_578.RULE index a8758b4e500..f6e5a236481 100644 --- a/src/licensedcode/data/rules/false-positive_578.RULE +++ b/src/licensedcode/data/rules/false-positive_578.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a programming construct, not a license style. +--- + BSD-style union \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_578.yml b/src/licensedcode/data/rules/false-positive_578.yml deleted file mode 100644 index 9cfa4e25fc9..00000000000 --- a/src/licensedcode/data/rules/false-positive_578.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a programming construct, not a license style. diff --git a/src/licensedcode/data/rules/false-positive_579.RULE b/src/licensedcode/data/rules/false-positive_579.RULE index 902c059e6cb..0f1e4ee671f 100644 --- a/src/licensedcode/data/rules/false-positive_579.RULE +++ b/src/licensedcode/data/rules/false-positive_579.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Not a license reference +--- + BSD style symbol table \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_579.yml b/src/licensedcode/data/rules/false-positive_579.yml deleted file mode 100644 index 3a85ae9a22c..00000000000 --- a/src/licensedcode/data/rules/false-positive_579.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Not a license reference diff --git a/src/licensedcode/data/rules/false-positive_58.RULE b/src/licensedcode/data/rules/false-positive_58.RULE index 75796a5fad2..79021d05e0b 100644 --- a/src/licensedcode/data/rules/false-positive_58.RULE +++ b/src/licensedcode/data/rules/false-positive_58.RULE @@ -1 +1,6 @@ -work work work work work work \ No newline at end of file +--- +is_false_positive: yes +notes: rare and weird, bit not a license +--- + +work work work work work work \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_58.yml b/src/licensedcode/data/rules/false-positive_58.yml deleted file mode 100644 index 422eea392eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_58.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: rare and weird, bit not a license diff --git a/src/licensedcode/data/rules/false-positive_580.RULE b/src/licensedcode/data/rules/false-positive_580.RULE index 1cf7da685b4..cb1982e73b9 100644 --- a/src/licensedcode/data/rules/false-positive_580.RULE +++ b/src/licensedcode/data/rules/false-positive_580.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Not a license reference +--- + BSD style output \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_580.yml b/src/licensedcode/data/rules/false-positive_580.yml deleted file mode 100644 index 3a85ae9a22c..00000000000 --- a/src/licensedcode/data/rules/false-positive_580.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Not a license reference diff --git a/src/licensedcode/data/rules/false-positive_581.RULE b/src/licensedcode/data/rules/false-positive_581.RULE index 71ecbf1361f..99660271451 100644 --- a/src/licensedcode/data/rules/false-positive_581.RULE +++ b/src/licensedcode/data/rules/false-positive_581.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: comments about licenses +--- + change Regent to Copyright holder in BSD license in some of the headings of the file, to match the opensource.org BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_581.yml b/src/licensedcode/data/rules/false-positive_581.yml deleted file mode 100644 index 29a9199b137..00000000000 --- a/src/licensedcode/data/rules/false-positive_581.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licenses diff --git a/src/licensedcode/data/rules/false-positive_582.RULE b/src/licensedcode/data/rules/false-positive_582.RULE index ac48e18e174..794cf21bdc8 100644 --- a/src/licensedcode/data/rules/false-positive_582.RULE +++ b/src/licensedcode/data/rules/false-positive_582.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a lincese +--- + those diagnostics and subgroups are covered by \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_582.yml b/src/licensedcode/data/rules/false-positive_582.yml deleted file mode 100644 index 5bc128f4e30..00000000000 --- a/src/licensedcode/data/rules/false-positive_582.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a lincese diff --git a/src/licensedcode/data/rules/false-positive_583.RULE b/src/licensedcode/data/rules/false-positive_583.RULE index eacadef138f..2e89389cab5 100644 --- a/src/licensedcode/data/rules/false-positive_583.RULE +++ b/src/licensedcode/data/rules/false-positive_583.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + subclause do not apply to them unless explicitly stated in 3.7.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_583.yml b/src/licensedcode/data/rules/false-positive_583.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_583.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_584.RULE b/src/licensedcode/data/rules/false-positive_584.RULE index c8d0cd0655d..d631bbcce40 100644 --- a/src/licensedcode/data/rules/false-positive_584.RULE +++ b/src/licensedcode/data/rules/false-positive_584.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + Unless otherwise stated, all I/O functions return \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_584.yml b/src/licensedcode/data/rules/false-positive_584.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_584.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_585.RULE b/src/licensedcode/data/rules/false-positive_585.RULE index d40a1740e9a..da55ee6a01e 100644 --- a/src/licensedcode/data/rules/false-positive_585.RULE +++ b/src/licensedcode/data/rules/false-positive_585.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + unless otherwise noted in the preceding routine \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_585.yml b/src/licensedcode/data/rules/false-positive_585.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_585.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_586.RULE b/src/licensedcode/data/rules/false-positive_586.RULE index 20468b5c36d..80a054193c2 100644 --- a/src/licensedcode/data/rules/false-positive_586.RULE +++ b/src/licensedcode/data/rules/false-positive_586.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in ACPI +--- + ASL files to ASL+ (ASL 2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_586.yml b/src/licensedcode/data/rules/false-positive_586.yml deleted file mode 100644 index 717497aec82..00000000000 --- a/src/licensedcode/data/rules/false-positive_586.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in ACPI diff --git a/src/licensedcode/data/rules/false-positive_587.RULE b/src/licensedcode/data/rules/false-positive_587.RULE index 267ff7f4025..3874d4f933f 100644 --- a/src/licensedcode/data/rules/false-positive_587.RULE +++ b/src/licensedcode/data/rules/false-positive_587.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: in FreeBSD a vague mupdf reference +--- + MANPAGER=mupdf man \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_587.yml b/src/licensedcode/data/rules/false-positive_587.yml deleted file mode 100644 index 1f8d33117d6..00000000000 --- a/src/licensedcode/data/rules/false-positive_587.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: in FreeBSD a vague mupdf reference diff --git a/src/licensedcode/data/rules/false-positive_588.RULE b/src/licensedcode/data/rules/false-positive_588.RULE index 6888722a553..3ba3c3c0021 100644 --- a/src/licensedcode/data/rules/false-positive_588.RULE +++ b/src/licensedcode/data/rules/false-positive_588.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: in svn, a comment on AGPL +--- + newer are under the AGPL, and we want use of AGPL dependencies to be opt-in \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_588.yml b/src/licensedcode/data/rules/false-positive_588.yml deleted file mode 100644 index 14c880d02b6..00000000000 --- a/src/licensedcode/data/rules/false-positive_588.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: in svn, a comment on AGPL diff --git a/src/licensedcode/data/rules/false-positive_589.RULE b/src/licensedcode/data/rules/false-positive_589.RULE index cbdef2b6c58..67984a07208 100644 --- a/src/licensedcode/data/rules/false-positive_589.RULE +++ b/src/licensedcode/data/rules/false-positive_589.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not an apache license mention +--- + 2 ASL %1, 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_589.yml b/src/licensedcode/data/rules/false-positive_589.yml deleted file mode 100644 index 44a4d356a69..00000000000 --- a/src/licensedcode/data/rules/false-positive_589.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not an apache license mention diff --git a/src/licensedcode/data/rules/false-positive_59.RULE b/src/licensedcode/data/rules/false-positive_59.RULE index e61397a9bf0..3a9e7b36b4a 100644 --- a/src/licensedcode/data/rules/false-positive_59.RULE +++ b/src/licensedcode/data/rules/false-positive_59.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: public const is not a license +--- + public const \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_59.yml b/src/licensedcode/data/rules/false-positive_59.yml deleted file mode 100644 index 1224028333d..00000000000 --- a/src/licensedcode/data/rules/false-positive_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: public const is not a license diff --git a/src/licensedcode/data/rules/false-positive_590.RULE b/src/licensedcode/data/rules/false-positive_590.RULE index c9a6b6068b7..81c834ae890 100644 --- a/src/licensedcode/data/rules/false-positive_590.RULE +++ b/src/licensedcode/data/rules/false-positive_590.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not an apache license mention +--- + %3 = ASL %2, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_590.yml b/src/licensedcode/data/rules/false-positive_590.yml deleted file mode 100644 index 44a4d356a69..00000000000 --- a/src/licensedcode/data/rules/false-positive_590.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not an apache license mention diff --git a/src/licensedcode/data/rules/false-positive_591.RULE b/src/licensedcode/data/rules/false-positive_591.RULE index e2dbe49bdd4..1be887b81a6 100644 --- a/src/licensedcode/data/rules/false-positive_591.RULE +++ b/src/licensedcode/data/rules/false-positive_591.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_591.yml b/src/licensedcode/data/rules/false-positive_591.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_591.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_592.RULE b/src/licensedcode/data/rules/false-positive_592.RULE index 9b3e2ff5d7d..b6c4c36723d 100644 --- a/src/licensedcode/data/rules/false-positive_592.RULE +++ b/src/licensedcode/data/rules/false-positive_592.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_592.yml b/src/licensedcode/data/rules/false-positive_592.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_592.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_593.RULE b/src/licensedcode/data/rules/false-positive_593.RULE index ebfa66fe4d4..6692a952c40 100644 --- a/src/licensedcode/data/rules/false-positive_593.RULE +++ b/src/licensedcode/data/rules/false-positive_593.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_593.yml b/src/licensedcode/data/rules/false-positive_593.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_593.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_594.RULE b/src/licensedcode/data/rules/false-positive_594.RULE index b69acab973c..a97540ca12e 100644 --- a/src/licensedcode/data/rules/false-positive_594.RULE +++ b/src/licensedcode/data/rules/false-positive_594.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license-related comment +--- + few freeware implementations \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_594.yml b/src/licensedcode/data/rules/false-positive_594.yml deleted file mode 100644 index 3acb5c6fb47..00000000000 --- a/src/licensedcode/data/rules/false-positive_594.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license-related comment diff --git a/src/licensedcode/data/rules/false-positive_595.RULE b/src/licensedcode/data/rules/false-positive_595.RULE index 486014b02ed..a663033c15f 100644 --- a/src/licensedcode/data/rules/false-positive_595.RULE +++ b/src/licensedcode/data/rules/false-positive_595.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license realted path, not a license reference +--- + /opt/freeware \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_595.yml b/src/licensedcode/data/rules/false-positive_595.yml deleted file mode 100644 index a714968390a..00000000000 --- a/src/licensedcode/data/rules/false-positive_595.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license realted path, not a license reference diff --git a/src/licensedcode/data/rules/false-positive_596.RULE b/src/licensedcode/data/rules/false-positive_596.RULE index 33195808bda..f83a8a27111 100644 --- a/src/licensedcode/data/rules/false-positive_596.RULE +++ b/src/licensedcode/data/rules/false-positive_596.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license-related comment +--- + Latest GPLv3 GNU rcs version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_596.yml b/src/licensedcode/data/rules/false-positive_596.yml deleted file mode 100644 index 3acb5c6fb47..00000000000 --- a/src/licensedcode/data/rules/false-positive_596.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license-related comment diff --git a/src/licensedcode/data/rules/false-positive_597.RULE b/src/licensedcode/data/rules/false-positive_597.RULE index dc3cf66088d..441158e0c4e 100644 --- a/src/licensedcode/data/rules/false-positive_597.RULE +++ b/src/licensedcode/data/rules/false-positive_597.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license-related comment +--- + latest version of GNU rcs (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_597.yml b/src/licensedcode/data/rules/false-positive_597.yml deleted file mode 100644 index 3acb5c6fb47..00000000000 --- a/src/licensedcode/data/rules/false-positive_597.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license-related comment diff --git a/src/licensedcode/data/rules/false-positive_598.RULE b/src/licensedcode/data/rules/false-positive_598.RULE index 634e9ab5433..90efa3e4040 100644 --- a/src/licensedcode/data/rules/false-positive_598.RULE +++ b/src/licensedcode/data/rules/false-positive_598.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + gpios gpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_598.yml b/src/licensedcode/data/rules/false-positive_598.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_598.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_599.RULE b/src/licensedcode/data/rules/false-positive_599.RULE index 2facbf4df34..3d70247b2fe 100644 --- a/src/licensedcode/data/rules/false-positive_599.RULE +++ b/src/licensedcode/data/rules/false-positive_599.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl3 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_599.yml b/src/licensedcode/data/rules/false-positive_599.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_599.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_6.RULE b/src/licensedcode/data/rules/false-positive_6.RULE index a7e8730014a..f3a0caa97d9 100644 --- a/src/licensedcode/data/rules/false-positive_6.RULE +++ b/src/licensedcode/data/rules/false-positive_6.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license +--- + if ([ 'GPL-1.0', 'LGPL-1.0', 'AGPL-1.0', 'GPL-2.0', 'LGPL-2.0', 'AGPL-2.0', diff --git a/src/licensedcode/data/rules/false-positive_6.yml b/src/licensedcode/data/rules/false-positive_6.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_60.RULE b/src/licensedcode/data/rules/false-positive_60.RULE index 2d4ce2c3860..5f2ca04fa21 100644 --- a/src/licensedcode/data/rules/false-positive_60.RULE +++ b/src/licensedcode/data/rules/false-positive_60.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb +--- + includes('GPL-3.0'); //=> true \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_60.yml b/src/licensedcode/data/rules/false-positive_60.yml deleted file mode 100644 index ade5273fadd..00000000000 --- a/src/licensedcode/data/rules/false-positive_60.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/shinnn/spdx-license-ids/tree/bebc9a4ca38d67f94cd42e9beceaca2c7e647cfb diff --git a/src/licensedcode/data/rules/false-positive_600.RULE b/src/licensedcode/data/rules/false-positive_600.RULE index d5568f68d4a..717bfc9f873 100644 --- a/src/licensedcode/data/rules/false-positive_600.RULE +++ b/src/licensedcode/data/rules/false-positive_600.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_600.yml b/src/licensedcode/data/rules/false-positive_600.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_600.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_601.RULE b/src/licensedcode/data/rules/false-positive_601.RULE index b0605e71d2c..2bc114c72c0 100644 --- a/src/licensedcode/data/rules/false-positive_601.RULE +++ b/src/licensedcode/data/rules/false-positive_601.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl2 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_601.yml b/src/licensedcode/data/rules/false-positive_601.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_601.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_602.RULE b/src/licensedcode/data/rules/false-positive_602.RULE index 4d26878d3bc..fa99a1cf23e 100644 --- a/src/licensedcode/data/rules/false-positive_602.RULE +++ b/src/licensedcode/data/rules/false-positive_602.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_602.yml b/src/licensedcode/data/rules/false-positive_602.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_602.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_603.RULE b/src/licensedcode/data/rules/false-positive_603.RULE index 8764beb5803..b0353d7b5e2 100644 --- a/src/licensedcode/data/rules/false-positive_603.RULE +++ b/src/licensedcode/data/rules/false-positive_603.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + gpios gpl3 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_603.yml b/src/licensedcode/data/rules/false-positive_603.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_603.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_604.RULE b/src/licensedcode/data/rules/false-positive_604.RULE index d5424ef9605..27ea0c71982 100644 --- a/src/licensedcode/data/rules/false-positive_604.RULE +++ b/src/licensedcode/data/rules/false-positive_604.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + SLP(gpl3-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_604.yml b/src/licensedcode/data/rules/false-positive_604.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_604.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_605.RULE b/src/licensedcode/data/rules/false-positive_605.RULE index 532793da00f..2c3642c7ea8 100644 --- a/src/licensedcode/data/rules/false-positive_605.RULE +++ b/src/licensedcode/data/rules/false-positive_605.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + SLP(gpl2-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_605.yml b/src/licensedcode/data/rules/false-positive_605.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_605.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_606.RULE b/src/licensedcode/data/rules/false-positive_606.RULE index 57b649f4ad2..d740fb10274 100644 --- a/src/licensedcode/data/rules/false-positive_606.RULE +++ b/src/licensedcode/data/rules/false-positive_606.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + gpios gpl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_606.yml b/src/licensedcode/data/rules/false-positive_606.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_606.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_607.RULE b/src/licensedcode/data/rules/false-positive_607.RULE index 8be5b4ddf1e..2d9d38d015b 100644 --- a/src/licensedcode/data/rules/false-positive_607.RULE +++ b/src/licensedcode/data/rules/false-positive_607.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl1 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_607.yml b/src/licensedcode/data/rules/false-positive_607.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_607.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_608.RULE b/src/licensedcode/data/rules/false-positive_608.RULE index 96b9bca825f..332f9cf31c4 100644 --- a/src/licensedcode/data/rules/false-positive_608.RULE +++ b/src/licensedcode/data/rules/false-positive_608.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + pins gpl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_608.yml b/src/licensedcode/data/rules/false-positive_608.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_608.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_609.RULE b/src/licensedcode/data/rules/false-positive_609.RULE index 21cb960b41c..2685ff6ee90 100644 --- a/src/licensedcode/data/rules/false-positive_609.RULE +++ b/src/licensedcode/data/rules/false-positive_609.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + gpios gpl1 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_609.yml b/src/licensedcode/data/rules/false-positive_609.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_609.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_61.RULE b/src/licensedcode/data/rules/false-positive_61.RULE index ba37dd62308..2de687a82b9 100644 --- a/src/licensedcode/data/rules/false-positive_61.RULE +++ b/src/licensedcode/data/rules/false-positive_61.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in gitlab's proprietary license-finder changelog +--- + Detect variations of the "Eclipse Public License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_61.yml b/src/licensedcode/data/rules/false-positive_61.yml deleted file mode 100644 index 0ab8015dfc6..00000000000 --- a/src/licensedcode/data/rules/false-positive_61.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in gitlab's proprietary license-finder changelog diff --git a/src/licensedcode/data/rules/false-positive_610.RULE b/src/licensedcode/data/rules/false-positive_610.RULE index f0a7c2d6b1c..c5cf25fef9d 100644 --- a/src/licensedcode/data/rules/false-positive_610.RULE +++ b/src/licensedcode/data/rules/false-positive_610.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + SLP(gpl1-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_610.yml b/src/licensedcode/data/rules/false-positive_610.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_610.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_611.RULE b/src/licensedcode/data/rules/false-positive_611.RULE index c0481d2b8a0..dc6d9a7eb03 100644 --- a/src/licensedcode/data/rules/false-positive_611.RULE +++ b/src/licensedcode/data/rules/false-positive_611.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + 4.0BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_611.yml b/src/licensedcode/data/rules/false-positive_611.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_611.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_612.RULE b/src/licensedcode/data/rules/false-positive_612.RULE index df7ad111593..e3a4886ec59 100644 --- a/src/licensedcode/data/rules/false-positive_612.RULE +++ b/src/licensedcode/data/rules/false-positive_612.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: a dictionary +--- + LDAP LGPL LLC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_612.yml b/src/licensedcode/data/rules/false-positive_612.yml deleted file mode 100644 index 1d8f2405247..00000000000 --- a/src/licensedcode/data/rules/false-positive_612.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a dictionary diff --git a/src/licensedcode/data/rules/false-positive_613.RULE b/src/licensedcode/data/rules/false-positive_613.RULE index e22d46b0049..a20d390f009 100644 --- a/src/licensedcode/data/rules/false-positive_613.RULE +++ b/src/licensedcode/data/rules/false-positive_613.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not an SSPL license reference +--- + SSPL_6G GSM \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_613.yml b/src/licensedcode/data/rules/false-positive_613.yml deleted file mode 100644 index a3246edfba3..00000000000 --- a/src/licensedcode/data/rules/false-positive_613.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not an SSPL license reference diff --git a/src/licensedcode/data/rules/false-positive_614.RULE b/src/licensedcode/data/rules/false-positive_614.RULE index 50b1f03eccb..c9a7dda3685 100644 --- a/src/licensedcode/data/rules/false-positive_614.RULE +++ b/src/licensedcode/data/rules/false-positive_614.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not an SSPL license reference +--- + SSPL_ERR \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_614.yml b/src/licensedcode/data/rules/false-positive_614.yml deleted file mode 100644 index a3246edfba3..00000000000 --- a/src/licensedcode/data/rules/false-positive_614.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not an SSPL license reference diff --git a/src/licensedcode/data/rules/false-positive_615.RULE b/src/licensedcode/data/rules/false-positive_615.RULE index 520c29e4c98..95e285046ce 100644 --- a/src/licensedcode/data/rules/false-positive_615.RULE +++ b/src/licensedcode/data/rules/false-positive_615.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not an MPL license reference +--- + MPL0, MPL1, MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_615.yml b/src/licensedcode/data/rules/false-positive_615.yml deleted file mode 100644 index 006349a8da2..00000000000 --- a/src/licensedcode/data/rules/false-positive_615.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not an MPL license reference diff --git a/src/licensedcode/data/rules/false-positive_616.RULE b/src/licensedcode/data/rules/false-positive_616.RULE index 177c28583ec..25f2c621d5a 100644 --- a/src/licensedcode/data/rules/false-positive_616.RULE +++ b/src/licensedcode/data/rules/false-positive_616.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a commercial license reference +--- + Some commercial UNIXes use \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_616.yml b/src/licensedcode/data/rules/false-positive_616.yml deleted file mode 100644 index 79627b6fadb..00000000000 --- a/src/licensedcode/data/rules/false-positive_616.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a commercial license reference diff --git a/src/licensedcode/data/rules/false-positive_617.RULE b/src/licensedcode/data/rules/false-positive_617.RULE index f4a023665ea..a8fa526c47f 100644 --- a/src/licensedcode/data/rules/false-positive_617.RULE +++ b/src/licensedcode/data/rules/false-positive_617.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: ncurses changelog +--- + Added copyright notice to main document (LDP license) and programs (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_617.yml b/src/licensedcode/data/rules/false-positive_617.yml deleted file mode 100644 index b9108605a61..00000000000 --- a/src/licensedcode/data/rules/false-positive_617.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: ncurses changelog diff --git a/src/licensedcode/data/rules/false-positive_618.RULE b/src/licensedcode/data/rules/false-positive_618.RULE index 49b3803943e..f632da7840d 100644 --- a/src/licensedcode/data/rules/false-positive_618.RULE +++ b/src/licensedcode/data/rules/false-positive_618.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FreeBSD +--- + WITHOUT_GPL_DTC if you require the BSDL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_618.yml b/src/licensedcode/data/rules/false-positive_618.yml deleted file mode 100644 index 701c1ee966c..00000000000 --- a/src/licensedcode/data/rules/false-positive_618.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/false-positive_619.RULE b/src/licensedcode/data/rules/false-positive_619.RULE index 8e4a5f438ae..1a5ab6f69c2 100644 --- a/src/licensedcode/data/rules/false-positive_619.RULE +++ b/src/licensedcode/data/rules/false-positive_619.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FreeBSD +--- + WITH_GPL_DTC if you require the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_619.yml b/src/licensedcode/data/rules/false-positive_619.yml deleted file mode 100644 index 701c1ee966c..00000000000 --- a/src/licensedcode/data/rules/false-positive_619.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/false-positive_62.RULE b/src/licensedcode/data/rules/false-positive_62.RULE index d6f453c96b6..4c62222f9f9 100644 --- a/src/licensedcode/data/rules/false-positive_62.RULE +++ b/src/licensedcode/data/rules/false-positive_62.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + to avoid GPL contamination \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_62.yml b/src/licensedcode/data/rules/false-positive_62.yml deleted file mode 100644 index ffed20ac8d9..00000000000 --- a/src/licensedcode/data/rules/false-positive_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/false-positive_620.RULE b/src/licensedcode/data/rules/false-positive_620.RULE index d55eac5c86d..ef9b799c72c 100644 --- a/src/licensedcode/data/rules/false-positive_620.RULE +++ b/src/licensedcode/data/rules/false-positive_620.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in FreeBSD +--- + WITH_GPL_DTC option has been removed. The BSD-licenced device tree compiler \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_620.yml b/src/licensedcode/data/rules/false-positive_620.yml deleted file mode 100644 index 701c1ee966c..00000000000 --- a/src/licensedcode/data/rules/false-positive_620.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/false-positive_621.RULE b/src/licensedcode/data/rules/false-positive_621.RULE index d7c09766cc9..6504751e550 100644 --- a/src/licensedcode/data/rules/false-positive_621.RULE +++ b/src/licensedcode/data/rules/false-positive_621.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FreeBSD +--- + the GPL dtc is available (if needed) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_621.yml b/src/licensedcode/data/rules/false-positive_621.yml deleted file mode 100644 index 701c1ee966c..00000000000 --- a/src/licensedcode/data/rules/false-positive_621.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/false-positive_622.RULE b/src/licensedcode/data/rules/false-positive_622.RULE index 82d6c0fd918..acb0b7dd130 100644 --- a/src/licensedcode/data/rules/false-positive_622.RULE +++ b/src/licensedcode/data/rules/false-positive_622.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FreeBSD +--- + license[16]; /* For example "GPL" or "CDDL" */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_622.yml b/src/licensedcode/data/rules/false-positive_622.yml deleted file mode 100644 index 701c1ee966c..00000000000 --- a/src/licensedcode/data/rules/false-positive_622.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/false-positive_623.RULE b/src/licensedcode/data/rules/false-positive_623.RULE index 66fb3e3c545..177a06fa8b5 100644 --- a/src/licensedcode/data/rules/false-positive_623.RULE +++ b/src/licensedcode/data/rules/false-positive_623.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FreeBSD +--- + SC_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_623.yml b/src/licensedcode/data/rules/false-positive_623.yml deleted file mode 100644 index 701c1ee966c..00000000000 --- a/src/licensedcode/data/rules/false-positive_623.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/false-positive_624.RULE b/src/licensedcode/data/rules/false-positive_624.RULE index bdb3a4b2a79..7e2153123a5 100644 --- a/src/licensedcode/data/rules/false-positive_624.RULE +++ b/src/licensedcode/data/rules/false-positive_624.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FreeBSD +--- + GPL define ATA \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_624.yml b/src/licensedcode/data/rules/false-positive_624.yml deleted file mode 100644 index 701c1ee966c..00000000000 --- a/src/licensedcode/data/rules/false-positive_624.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/false-positive_625.RULE b/src/licensedcode/data/rules/false-positive_625.RULE index 382ec0ffde4..412098a4a13 100644 --- a/src/licensedcode/data/rules/false-positive_625.RULE +++ b/src/licensedcode/data/rules/false-positive_625.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + return !license_is_gpl_compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_625.yml b/src/licensedcode/data/rules/false-positive_625.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_625.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_626.RULE b/src/licensedcode/data/rules/false-positive_626.RULE index f6f6200e225..9aaa661378e 100644 --- a/src/licensedcode/data/rules/false-positive_626.RULE +++ b/src/licensedcode/data/rules/false-positive_626.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + 1 if GPL-only symbols \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_626.yml b/src/licensedcode/data/rules/false-positive_626.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_626.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_627.RULE b/src/licensedcode/data/rules/false-positive_627.RULE index 7b6a90e46ff..613a72efed4 100644 --- a/src/licensedcode/data/rules/false-positive_627.RULE +++ b/src/licensedcode/data/rules/false-positive_627.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + ZFS_IS_GPL_COMPATIBLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_627.yml b/src/licensedcode/data/rules/false-positive_627.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_627.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_628.RULE b/src/licensedcode/data/rules/false-positive_628.RULE index 469aa3caf0d..ceb302ec758 100644 --- a/src/licensedcode/data/rules/false-positive_628.RULE +++ b/src/licensedcode/data/rules/false-positive_628.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + all the new one is GPL-only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_628.yml b/src/licensedcode/data/rules/false-positive_628.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_628.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_629.RULE b/src/licensedcode/data/rules/false-positive_629.RULE index c1eded1d486..95f83beac8a 100644 --- a/src/licensedcode/data/rules/false-positive_629.RULE +++ b/src/licensedcode/data/rules/false-positive_629.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + we determine if it is GPL-only. If the GPL-only interface \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_629.yml b/src/licensedcode/data/rules/false-positive_629.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_629.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_63.RULE b/src/licensedcode/data/rules/false-positive_63.RULE index 88eaf68fbaf..a4516ecd32d 100644 --- a/src/licensedcode/data/rules/false-positive_63.RULE +++ b/src/licensedcode/data/rules/false-positive_63.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: kernel +--- + [though] [I] originally \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_63.yml b/src/licensedcode/data/rules/false-positive_63.yml deleted file mode 100644 index 0e829cb7871..00000000000 --- a/src/licensedcode/data/rules/false-positive_63.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: kernel diff --git a/src/licensedcode/data/rules/false-positive_630.RULE b/src/licensedcode/data/rules/false-positive_630.RULE index 4a0390be1f1..299f2195952 100644 --- a/src/licensedcode/data/rules/false-positive_630.RULE +++ b/src/licensedcode/data/rules/false-positive_630.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + flush() is GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_630.yml b/src/licensedcode/data/rules/false-positive_630.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_630.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_631.RULE b/src/licensedcode/data/rules/false-positive_631.RULE index aefd96573d1..b2981433882 100644 --- a/src/licensedcode/data/rules/false-positive_631.RULE +++ b/src/licensedcode/data/rules/false-positive_631.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + FLUSH_GPL_ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_631.yml b/src/licensedcode/data/rules/false-positive_631.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_631.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_632.RULE b/src/licensedcode/data/rules/false-positive_632.RULE index 04cd34a2d35..caff0628427 100644 --- a/src/licensedcode/data/rules/false-positive_632.RULE +++ b/src/licensedcode/data/rules/false-positive_632.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + cache() is GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_632.yml b/src/licensedcode/data/rules/false-positive_632.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_632.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6323.RULE b/src/licensedcode/data/rules/false-positive_6323.RULE index 15ce12972d1..409009b9870 100644 --- a/src/licensedcode/data/rules/false-positive_6323.RULE +++ b/src/licensedcode/data/rules/false-positive_6323.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + require('spdx-license-ids'); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6323.yml b/src/licensedcode/data/rules/false-positive_6323.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6323.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6324.RULE b/src/licensedcode/data/rules/false-positive_6324.RULE index 1c885310d42..07594001b28 100644 --- a/src/licensedcode/data/rules/false-positive_6324.RULE +++ b/src/licensedcode/data/rules/false-positive_6324.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + ['0BSD', 'AAL', 'ADSL', 'AFL-1.1', 'AFL-1.2', 'AFL-2.0', 'AFL-2.1', 'AFL-3.0', 'AGPL-1.0-only', ...] \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6324.yml b/src/licensedcode/data/rules/false-positive_6324.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6324.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6325.RULE b/src/licensedcode/data/rules/false-positive_6325.RULE index b7d61bb2e7b..d504c3f00ce 100644 --- a/src/licensedcode/data/rules/false-positive_6325.RULE +++ b/src/licensedcode/data/rules/false-positive_6325.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + includes('BSD-3-Clause'); //=> true \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6325.yml b/src/licensedcode/data/rules/false-positive_6325.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6325.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6326.RULE b/src/licensedcode/data/rules/false-positive_6326.RULE index 88446024dd5..ff5ea129dd8 100644 --- a/src/licensedcode/data/rules/false-positive_6326.RULE +++ b/src/licensedcode/data/rules/false-positive_6326.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + includes('CC-BY-1.0'); //=> true \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6326.yml b/src/licensedcode/data/rules/false-positive_6326.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6326.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6327.RULE b/src/licensedcode/data/rules/false-positive_6327.RULE index 87aa26667cb..e163678b094 100644 --- a/src/licensedcode/data/rules/false-positive_6327.RULE +++ b/src/licensedcode/data/rules/false-positive_6327.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + ids.includes('GPL-3.0'); //=> false \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6327.yml b/src/licensedcode/data/rules/false-positive_6327.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6327.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6328.RULE b/src/licensedcode/data/rules/false-positive_6328.RULE index 1f0f2d2ea4b..744b315585a 100644 --- a/src/licensedcode/data/rules/false-positive_6328.RULE +++ b/src/licensedcode/data/rules/false-positive_6328.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + spdx-license-ids/deprecated' ['AGPL-1.0', 'AGPL-3.0', 'GFDL-1.1', 'GFDL-1.2', 'GFDL-1.3', 'GPL-1.0', 'GPL-2.0', ...] \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6328.yml b/src/licensedcode/data/rules/false-positive_6328.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6328.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6329.RULE b/src/licensedcode/data/rules/false-positive_6329.RULE index 660a5b5ff34..cf65fe2ff32 100644 --- a/src/licensedcode/data/rules/false-positive_6329.RULE +++ b/src/licensedcode/data/rules/false-positive_6329.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + includes('BSD-3-Clause'); //=> false \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6329.yml b/src/licensedcode/data/rules/false-positive_6329.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6329.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_633.RULE b/src/licensedcode/data/rules/false-positive_633.RULE index 32f58449c20..cf25c1150bc 100644 --- a/src/licensedcode/data/rules/false-positive_633.RULE +++ b/src/licensedcode/data/rules/false-positive_633.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + CACHE_GPL_ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_633.yml b/src/licensedcode/data/rules/false-positive_633.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_633.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6330.RULE b/src/licensedcode/data/rules/false-positive_6330.RULE index 90a67a8f8b7..422733bc41a 100644 --- a/src/licensedcode/data/rules/false-positive_6330.RULE +++ b/src/licensedcode/data/rules/false-positive_6330.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + includes('CC-BY-1.0'); //=> false \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6330.yml b/src/licensedcode/data/rules/false-positive_6330.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6330.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6331.RULE b/src/licensedcode/data/rules/false-positive_6331.RULE index 367923c03fa..1700308fbfd 100644 --- a/src/licensedcode/data/rules/false-positive_6331.RULE +++ b/src/licensedcode/data/rules/false-positive_6331.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-3.0 ISC OR MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6331.yml b/src/licensedcode/data/rules/false-positive_6331.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6331.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6332.RULE b/src/licensedcode/data/rules/false-positive_6332.RULE index ad17c61da16..107fd0c39c7 100644 --- a/src/licensedcode/data/rules/false-positive_6332.RULE +++ b/src/licensedcode/data/rules/false-positive_6332.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-2.0 GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6332.yml b/src/licensedcode/data/rules/false-positive_6332.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6332.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6333.RULE b/src/licensedcode/data/rules/false-positive_6333.RULE index b0c4c93db52..44effe2f7b2 100644 --- a/src/licensedcode/data/rules/false-positive_6333.RULE +++ b/src/licensedcode/data/rules/false-positive_6333.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-3.0 GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6333.yml b/src/licensedcode/data/rules/false-positive_6333.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6333.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6334.RULE b/src/licensedcode/data/rules/false-positive_6334.RULE index 444e4473fbb..01cf6ea9be7 100644 --- a/src/licensedcode/data/rules/false-positive_6334.RULE +++ b/src/licensedcode/data/rules/false-positive_6334.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-1.0+ GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6334.yml b/src/licensedcode/data/rules/false-positive_6334.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6334.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6335.RULE b/src/licensedcode/data/rules/false-positive_6335.RULE index fbf1f4096cf..2a94a8b311e 100644 --- a/src/licensedcode/data/rules/false-positive_6335.RULE +++ b/src/licensedcode/data/rules/false-positive_6335.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-1.0 GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6335.yml b/src/licensedcode/data/rules/false-positive_6335.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6335.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6336.RULE b/src/licensedcode/data/rules/false-positive_6336.RULE index 157b413695c..9d79566ba4b 100644 --- a/src/licensedcode/data/rules/false-positive_6336.RULE +++ b/src/licensedcode/data/rules/false-positive_6336.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-2.0-only GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6336.yml b/src/licensedcode/data/rules/false-positive_6336.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6336.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6337.RULE b/src/licensedcode/data/rules/false-positive_6337.RULE index ef574812da0..beb398ec799 100644 --- a/src/licensedcode/data/rules/false-positive_6337.RULE +++ b/src/licensedcode/data/rules/false-positive_6337.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-3.0-only GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6337.yml b/src/licensedcode/data/rules/false-positive_6337.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6337.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6338.RULE b/src/licensedcode/data/rules/false-positive_6338.RULE index 5f532a850c8..75783213a3f 100644 --- a/src/licensedcode/data/rules/false-positive_6338.RULE +++ b/src/licensedcode/data/rules/false-positive_6338.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-2.0 GPL-2.0+ WITH Bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6338.yml b/src/licensedcode/data/rules/false-positive_6338.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6338.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6339.RULE b/src/licensedcode/data/rules/false-positive_6339.RULE index 9af0f251180..8b5e6518b45 100644 --- a/src/licensedcode/data/rules/false-positive_6339.RULE +++ b/src/licensedcode/data/rules/false-positive_6339.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies GPL-3.0 WITH Bison-exception-2.2 GPL-2.0+ WITH Bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6339.yml b/src/licensedcode/data/rules/false-positive_6339.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6339.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_634.RULE b/src/licensedcode/data/rules/false-positive_634.RULE index cbd2b0bbbc6..c0e115089ab 100644 --- a/src/licensedcode/data/rules/false-positive_634.RULE +++ b/src/licensedcode/data/rules/false-positive_634.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + release() is GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_634.yml b/src/licensedcode/data/rules/false-positive_634.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_634.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6340.RULE b/src/licensedcode/data/rules/false-positive_6340.RULE index 23e454d91f9..41f737e3476 100644 --- a/src/licensedcode/data/rules/false-positive_6340.RULE +++ b/src/licensedcode/data/rules/false-positive_6340.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT OR GPL-2.0 ISC OR MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6340.yml b/src/licensedcode/data/rules/false-positive_6340.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6340.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6341.RULE b/src/licensedcode/data/rules/false-positive_6341.RULE index 7945b4675a2..8bfb0884986 100644 --- a/src/licensedcode/data/rules/false-positive_6341.RULE +++ b/src/licensedcode/data/rules/false-positive_6341.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND GPL-2.0 MIT AND GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6341.yml b/src/licensedcode/data/rules/false-positive_6341.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6341.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6342.RULE b/src/licensedcode/data/rules/false-positive_6342.RULE index 903b351c253..f55bf6b4329 100644 --- a/src/licensedcode/data/rules/false-positive_6342.RULE +++ b/src/licensedcode/data/rules/false-positive_6342.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND GPL-2.0 AND ISC MIT AND GPL-2.0 AND ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6342.yml b/src/licensedcode/data/rules/false-positive_6342.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6342.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6343.RULE b/src/licensedcode/data/rules/false-positive_6343.RULE index b1ca2cb3355..99589f45175 100644 --- a/src/licensedcode/data/rules/false-positive_6343.RULE +++ b/src/licensedcode/data/rules/false-positive_6343.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND GPL-2.0 AND ISC ISC AND GPL-2.0 AND MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6343.yml b/src/licensedcode/data/rules/false-positive_6343.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6343.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6344.RULE b/src/licensedcode/data/rules/false-positive_6344.RULE index 09b1c1a8afc..d78a5e35617 100644 --- a/src/licensedcode/data/rules/false-positive_6344.RULE +++ b/src/licensedcode/data/rules/false-positive_6344.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT OR GPL-2.0 AND ISC MIT AND ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6344.yml b/src/licensedcode/data/rules/false-positive_6344.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6344.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6345.RULE b/src/licensedcode/data/rules/false-positive_6345.RULE index e5edcbc061e..c2cf21b965d 100644 --- a/src/licensedcode/data/rules/false-positive_6345.RULE +++ b/src/licensedcode/data/rules/false-positive_6345.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND ISC MIT OR GPL-2.0 AND ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6345.yml b/src/licensedcode/data/rules/false-positive_6345.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6345.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6346.RULE b/src/licensedcode/data/rules/false-positive_6346.RULE index 0bd099a9000..cf8467d8453 100644 --- a/src/licensedcode/data/rules/false-positive_6346.RULE +++ b/src/licensedcode/data/rules/false-positive_6346.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND ISC MIT AND GPL-2.0 OR ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6346.yml b/src/licensedcode/data/rules/false-positive_6346.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6346.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6347.RULE b/src/licensedcode/data/rules/false-positive_6347.RULE index 161d3fcdb57..09aa9c5113b 100644 --- a/src/licensedcode/data/rules/false-positive_6347.RULE +++ b/src/licensedcode/data/rules/false-positive_6347.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT OR Apache-2.0 AND ISC OR GPL-2.0 Apache-2.0 AND ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6347.yml b/src/licensedcode/data/rules/false-positive_6347.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6347.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6348.RULE b/src/licensedcode/data/rules/false-positive_6348.RULE index 135f6bea4f3..88b57939b4e 100644 --- a/src/licensedcode/data/rules/false-positive_6348.RULE +++ b/src/licensedcode/data/rules/false-positive_6348.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT OR Apache-2.0 AND ISC OR GPL-2.0 Apache-2.0 OR ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6348.yml b/src/licensedcode/data/rules/false-positive_6348.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6348.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6349.RULE b/src/licensedcode/data/rules/false-positive_6349.RULE index f40e9d27005..14106d9fe13 100644 --- a/src/licensedcode/data/rules/false-positive_6349.RULE +++ b/src/licensedcode/data/rules/false-positive_6349.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND GPL-2.0 MIT OR GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6349.yml b/src/licensedcode/data/rules/false-positive_6349.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6349.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_635.RULE b/src/licensedcode/data/rules/false-positive_635.RULE index 9892a13f67d..eb6a19e5a6e 100644 --- a/src/licensedcode/data/rules/false-positive_635.RULE +++ b/src/licensedcode/data/rules/false-positive_635.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + RELEASE_GPL_ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_635.yml b/src/licensedcode/data/rules/false-positive_635.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_635.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6350.RULE b/src/licensedcode/data/rules/false-positive_6350.RULE index 2dc80f7fd0b..356a16a3310 100644 --- a/src/licensedcode/data/rules/false-positive_6350.RULE +++ b/src/licensedcode/data/rules/false-positive_6350.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND GPL-2.0 GPL-2.0 AND MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6350.yml b/src/licensedcode/data/rules/false-positive_6350.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6350.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6351.RULE b/src/licensedcode/data/rules/false-positive_6351.RULE index 52b7329f2e7..94748afa83c 100644 --- a/src/licensedcode/data/rules/false-positive_6351.RULE +++ b/src/licensedcode/data/rules/false-positive_6351.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT GPL-2.0 OR MIT AND MIT OR ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6351.yml b/src/licensedcode/data/rules/false-positive_6351.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6351.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6352.RULE b/src/licensedcode/data/rules/false-positive_6352.RULE index 2c252df1b8f..662b7881f3d 100644 --- a/src/licensedcode/data/rules/false-positive_6352.RULE +++ b/src/licensedcode/data/rules/false-positive_6352.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND ICU MIT AND GPL-2.0 OR ISC AND Apache-2.0 OR ICU \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6352.yml b/src/licensedcode/data/rules/false-positive_6352.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6352.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6353.RULE b/src/licensedcode/data/rules/false-positive_6353.RULE index 5b430d40b0c..eac60ea5db6 100644 --- a/src/licensedcode/data/rules/false-positive_6353.RULE +++ b/src/licensedcode/data/rules/false-positive_6353.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND GPL-2.0 ISC OR GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6353.yml b/src/licensedcode/data/rules/false-positive_6353.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6353.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6354.RULE b/src/licensedcode/data/rules/false-positive_6354.RULE index a4844b738ca..9f2d6ed0c45 100644 --- a/src/licensedcode/data/rules/false-positive_6354.RULE +++ b/src/licensedcode/data/rules/false-positive_6354.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT AND GPL-2.0 OR ISC MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6354.yml b/src/licensedcode/data/rules/false-positive_6354.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6354.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6355.RULE b/src/licensedcode/data/rules/false-positive_6355.RULE index dd629c2a160..e2be631d079 100644 --- a/src/licensedcode/data/rules/false-positive_6355.RULE +++ b/src/licensedcode/data/rules/false-positive_6355.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + satisfies MIT OR Apache-2.0 AND ISC OR GPL-2.0 MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6355.yml b/src/licensedcode/data/rules/false-positive_6355.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6355.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_636.RULE b/src/licensedcode/data/rules/false-positive_636.RULE index 868f750a88d..40ff7ce4540 100644 --- a/src/licensedcode/data/rules/false-positive_636.RULE +++ b/src/licensedcode/data/rules/false-positive_636.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + dev() is GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_636.yml b/src/licensedcode/data/rules/false-positive_636.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_636.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6360.RULE b/src/licensedcode/data/rules/false-positive_6360.RULE index fb201c076d9..fd7dd0a1d48 100644 --- a/src/licensedcode/data/rules/false-positive_6360.RULE +++ b/src/licensedcode/data/rules/false-positive_6360.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + replace b Modified New Revised BSD License i, BSD 3 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6360.yml b/src/licensedcode/data/rules/false-positive_6360.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6360.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6361.RULE b/src/licensedcode/data/rules/false-positive_6361.RULE index 75d117c8c38..861f2c84059 100644 --- a/src/licensedcode/data/rules/false-positive_6361.RULE +++ b/src/licensedcode/data/rules/false-positive_6361.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + replace bSimplified BSD License i, BSD 2 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6361.yml b/src/licensedcode/data/rules/false-positive_6361.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6361.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6362.RULE b/src/licensedcode/data/rules/false-positive_6362.RULE index 41d48b52eb6..e4b38781faa 100644 --- a/src/licensedcode/data/rules/false-positive_6362.RULE +++ b/src/licensedcode/data/rules/false-positive_6362.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + replace b Free Net BSD License i, BSD 2 Clause $1BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6362.yml b/src/licensedcode/data/rules/false-positive_6362.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6362.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6363.RULE b/src/licensedcode/data/rules/false-positive_6363.RULE index 108a15380e3..8e356603158 100644 --- a/src/licensedcode/data/rules/false-positive_6363.RULE +++ b/src/licensedcode/data/rules/false-positive_6363.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + replace b Old Original BSD License i, BSD 4 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6363.yml b/src/licensedcode/data/rules/false-positive_6363.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6363.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_6364.RULE b/src/licensedcode/data/rules/false-positive_6364.RULE index 1cbb33bda87..7a4a01880b8 100644 --- a/src/licensedcode/data/rules/false-positive_6364.RULE +++ b/src/licensedcode/data/rules/false-positive_6364.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: license ids in license handling code is not a license +--- + replace bClear BSD License i, BSD 3 Clause Clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6364.yml b/src/licensedcode/data/rules/false-positive_6364.yml deleted file mode 100644 index 0f0f963f1ff..00000000000 --- a/src/licensedcode/data/rules/false-positive_6364.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: license ids in license handling code is not a license diff --git a/src/licensedcode/data/rules/false-positive_637.RULE b/src/licensedcode/data/rules/false-positive_637.RULE index b9ea08a9a04..1e814d11cf7 100644 --- a/src/licensedcode/data/rules/false-positive_637.RULE +++ b/src/licensedcode/data/rules/false-positive_637.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + DEV_GPL_ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_637.yml b/src/licensedcode/data/rules/false-positive_637.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_637.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_638.RULE b/src/licensedcode/data/rules/false-positive_638.RULE index 1da02c30031..6d901d35224 100644 --- a/src/licensedcode/data/rules/false-positive_638.RULE +++ b/src/licensedcode/data/rules/false-positive_638.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + the function was converted to GPL-only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_638.yml b/src/licensedcode/data/rules/false-positive_638.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_638.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6386.RULE b/src/licensedcode/data/rules/false-positive_6386.RULE index 1e8784a43fd..a7aac48e29b 100644 --- a/src/licensedcode/data/rules/false-positive_6386.RULE +++ b/src/licensedcode/data/rules/false-positive_6386.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: a sequence of SPDX license ids and names is not a license +--- + .replace('Attribution', 'BY') .replace('NonCommercial', 'NC') .replace('NoDerivatives', 'ND') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6386.yml b/src/licensedcode/data/rules/false-positive_6386.yml deleted file mode 100644 index 2883bd579cf..00000000000 --- a/src/licensedcode/data/rules/false-positive_6386.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a sequence of SPDX license ids and names is not a license diff --git a/src/licensedcode/data/rules/false-positive_639.RULE b/src/licensedcode/data/rules/false-positive_639.RULE index 3a1060a1a0d..4a8c741b88b 100644 --- a/src/licensedcode/data/rules/false-positive_639.RULE +++ b/src/licensedcode/data/rules/false-positive_639.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + tryget() is GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_639.yml b/src/licensedcode/data/rules/false-positive_639.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_639.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6390.RULE b/src/licensedcode/data/rules/false-positive_6390.RULE index 8e2f6061514..f974377343e 100644 --- a/src/licensedcode/data/rules/false-positive_6390.RULE +++ b/src/licensedcode/data/rules/false-positive_6390.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + if (license === 'Apache-2.0') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6390.yml b/src/licensedcode/data/rules/false-positive_6390.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_6390.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_6391.RULE b/src/licensedcode/data/rules/false-positive_6391.RULE index 859483a31c0..9920d9c5c93 100644 --- a/src/licensedcode/data/rules/false-positive_6391.RULE +++ b/src/licensedcode/data/rules/false-positive_6391.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + require('apache-2.0-header \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6391.yml b/src/licensedcode/data/rules/false-positive_6391.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_6391.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_6392.RULE b/src/licensedcode/data/rules/false-positive_6392.RULE index 38fb064d6b3..448517126fd 100644 --- a/src/licensedcode/data/rules/false-positive_6392.RULE +++ b/src/licensedcode/data/rules/false-positive_6392.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + var licenseURL = 'http://www.apache.org/licenses/LICENSE-2.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6392.yml b/src/licensedcode/data/rules/false-positive_6392.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_6392.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_6395.RULE b/src/licensedcode/data/rules/false-positive_6395.RULE index b9b115d3976..b7356219d01 100644 --- a/src/licensedcode/data/rules/false-positive_6395.RULE +++ b/src/licensedcode/data/rules/false-positive_6395.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + Write an Apache-2.0 NOTICE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6395.yml b/src/licensedcode/data/rules/false-positive_6395.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_6395.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_6396.RULE b/src/licensedcode/data/rules/false-positive_6396.RULE index abae2030160..413f4090e8d 100644 --- a/src/licensedcode/data/rules/false-positive_6396.RULE +++ b/src/licensedcode/data/rules/false-positive_6396.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + p(' MIT'), { license: 'MIT' } assert \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6396.yml b/src/licensedcode/data/rules/false-positive_6396.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6396.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6397.RULE b/src/licensedcode/data/rules/false-positive_6397.RULE index d29700282c7..9dcaea8e5fc 100644 --- a/src/licensedcode/data/rules/false-positive_6397.RULE +++ b/src/licensedcode/data/rules/false-positive_6397.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + p('MIT AND BSD-3-Clause'), left: { license: 'MIT' }, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6397.yml b/src/licensedcode/data/rules/false-positive_6397.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6397.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6398.RULE b/src/licensedcode/data/rules/false-positive_6398.RULE index 87acb366f59..571af34e505 100644 --- a/src/licensedcode/data/rules/false-positive_6398.RULE +++ b/src/licensedcode/data/rules/false-positive_6398.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + right: { license: 'BSD-3-Clause' } \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6398.yml b/src/licensedcode/data/rules/false-positive_6398.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6398.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6399.RULE b/src/licensedcode/data/rules/false-positive_6399.RULE index c09d9d9c996..4fc2f371b6b 100644 --- a/src/licensedcode/data/rules/false-positive_6399.RULE +++ b/src/licensedcode/data/rules/false-positive_6399.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + p('DocumentRef-spdx-tool-1.2 : LicenseRef-MIT-Style-2'), { license: 'DocumentRef-spdx-tool-1.2:LicenseRef-MIT-Style-2' } \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6399.yml b/src/licensedcode/data/rules/false-positive_6399.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6399.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_64.RULE b/src/licensedcode/data/rules/false-positive_64.RULE index 00eb1f8255c..653cf24c959 100644 --- a/src/licensedcode/data/rules/false-positive_64.RULE +++ b/src/licensedcode/data/rules/false-positive_64.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + Clarify copyright info in GPL header \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_64.yml b/src/licensedcode/data/rules/false-positive_64.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_64.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_640.RULE b/src/licensedcode/data/rules/false-positive_640.RULE index 42931487e2c..6673d0400c9 100644 --- a/src/licensedcode/data/rules/false-positive_640.RULE +++ b/src/licensedcode/data/rules/false-positive_640.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + tryget() GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_640.yml b/src/licensedcode/data/rules/false-positive_640.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_640.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6400.RULE b/src/licensedcode/data/rules/false-positive_6400.RULE index 9635e0ba0f1..18492c1aa16 100644 --- a/src/licensedcode/data/rules/false-positive_6400.RULE +++ b/src/licensedcode/data/rules/false-positive_6400.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + p('MIT AND BSD-3-Clause AND CC-BY-4.0'), left: { license: 'MIT' }, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6400.yml b/src/licensedcode/data/rules/false-positive_6400.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6400.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6401.RULE b/src/licensedcode/data/rules/false-positive_6401.RULE index 508b189040f..9efc8b999b8 100644 --- a/src/licensedcode/data/rules/false-positive_6401.RULE +++ b/src/licensedcode/data/rules/false-positive_6401.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + left: { license: 'BSD-3-Clause' }, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6401.yml b/src/licensedcode/data/rules/false-positive_6401.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6401.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6402.RULE b/src/licensedcode/data/rules/false-positive_6402.RULE index 5e6948a93ec..8a8bb0067be 100644 --- a/src/licensedcode/data/rules/false-positive_6402.RULE +++ b/src/licensedcode/data/rules/false-positive_6402.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + right: { license: 'CC-BY-4.0' } \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6402.yml b/src/licensedcode/data/rules/false-positive_6402.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6402.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6403.RULE b/src/licensedcode/data/rules/false-positive_6403.RULE index 4beccfce542..b219349b702 100644 --- a/src/licensedcode/data/rules/false-positive_6403.RULE +++ b/src/licensedcode/data/rules/false-positive_6403.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + p('MIT AND BSD-3-Clause WITH GCC-exception-3.1 OR CC-BY-4.0 AND Apache-2.0'), left: { left: { license: 'MIT' }, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6403.yml b/src/licensedcode/data/rules/false-positive_6403.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6403.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6404.RULE b/src/licensedcode/data/rules/false-positive_6404.RULE index bb59e0a8336..9cbf96eee1a 100644 --- a/src/licensedcode/data/rules/false-positive_6404.RULE +++ b/src/licensedcode/data/rules/false-positive_6404.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + right: { license: 'BSD-3-Clause', exception: 'GCC-exception-3.1' } \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6404.yml b/src/licensedcode/data/rules/false-positive_6404.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6404.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6405.RULE b/src/licensedcode/data/rules/false-positive_6405.RULE index dce133d5f33..184e4e0f854 100644 --- a/src/licensedcode/data/rules/false-positive_6405.RULE +++ b/src/licensedcode/data/rules/false-positive_6405.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + left: { license: 'CC-BY-4.0' }, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6405.yml b/src/licensedcode/data/rules/false-positive_6405.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6405.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6406.RULE b/src/licensedcode/data/rules/false-positive_6406.RULE index ad170f69676..6ffbc63e405 100644 --- a/src/licensedcode/data/rules/false-positive_6406.RULE +++ b/src/licensedcode/data/rules/false-positive_6406.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + right: { license: 'Apache-2.0' } \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6406.yml b/src/licensedcode/data/rules/false-positive_6406.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6406.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6407.RULE b/src/licensedcode/data/rules/false-positive_6407.RULE index 191f5caf714..a1d0a818b6f 100644 --- a/src/licensedcode/data/rules/false-positive_6407.RULE +++ b/src/licensedcode/data/rules/false-positive_6407.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + p('LicenseRef-something'), { license: 'LicenseRef-something' } \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6407.yml b/src/licensedcode/data/rules/false-positive_6407.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6407.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6408.RULE b/src/licensedcode/data/rules/false-positive_6408.RULE index bd041f20084..fd54a01c4bf 100644 --- a/src/licensedcode/data/rules/false-positive_6408.RULE +++ b/src/licensedcode/data/rules/false-positive_6408.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + // Licensed under the terms of the Two-Clause BSD License. parse('BSD-2-Clause'), {license: 'BSD-2-Clause'} \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6408.yml b/src/licensedcode/data/rules/false-positive_6408.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6408.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6409.RULE b/src/licensedcode/data/rules/false-positive_6409.RULE index 156ef451c18..5f93147dabc 100644 --- a/src/licensedcode/data/rules/false-positive_6409.RULE +++ b/src/licensedcode/data/rules/false-positive_6409.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + // Should be `Apache-2.0`. parse('Apache 2') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6409.yml b/src/licensedcode/data/rules/false-positive_6409.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6409.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_641.RULE b/src/licensedcode/data/rules/false-positive_641.RULE index dd25998d50a..18443aa2982 100644 --- a/src/licensedcode/data/rules/false-positive_641.RULE +++ b/src/licensedcode/data/rules/false-positive_641.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + lock() to the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_641.yml b/src/licensedcode/data/rules/false-positive_641.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_641.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6410.RULE b/src/licensedcode/data/rules/false-positive_6410.RULE index a622a5d4330..d3c8c22b2d6 100644 --- a/src/licensedcode/data/rules/false-positive_6410.RULE +++ b/src/licensedcode/data/rules/false-positive_6410.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + // Dual licensed under either: // - LGPL 2.1 // - a combination of Three-Clause BSD and MIT diff --git a/src/licensedcode/data/rules/false-positive_6410.yml b/src/licensedcode/data/rules/false-positive_6410.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6410.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6411.RULE b/src/licensedcode/data/rules/false-positive_6411.RULE index 669809d6df7..cdb8060aed1 100644 --- a/src/licensedcode/data/rules/false-positive_6411.RULE +++ b/src/licensedcode/data/rules/false-positive_6411.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + parse('(LGPL-2.1 OR BSD-3-Clause AND MIT)'), \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6411.yml b/src/licensedcode/data/rules/false-positive_6411.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6411.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6412.RULE b/src/licensedcode/data/rules/false-positive_6412.RULE index fa0cebdb525..20c3fe7df9d 100644 --- a/src/licensedcode/data/rules/false-positive_6412.RULE +++ b/src/licensedcode/data/rules/false-positive_6412.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + left: {license: 'LGPL-2.1'}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6412.yml b/src/licensedcode/data/rules/false-positive_6412.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6412.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6413.RULE b/src/licensedcode/data/rules/false-positive_6413.RULE index 2e93e984851..01f167aaa79 100644 --- a/src/licensedcode/data/rules/false-positive_6413.RULE +++ b/src/licensedcode/data/rules/false-positive_6413.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + right: {license: 'MIT'} \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6413.yml b/src/licensedcode/data/rules/false-positive_6413.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6413.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6414.RULE b/src/licensedcode/data/rules/false-positive_6414.RULE index c9df81f3351..8f66aca4ad6 100644 --- a/src/licensedcode/data/rules/false-positive_6414.RULE +++ b/src/licensedcode/data/rules/false-positive_6414.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + specific string identifiers, like `Apache-2.0`, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6414.yml b/src/licensedcode/data/rules/false-positive_6414.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6414.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6415.RULE b/src/licensedcode/data/rules/false-positive_6415.RULE index 4ca0e61e11a..f5c8f6b4b4f 100644 --- a/src/licensedcode/data/rules/false-positive_6415.RULE +++ b/src/licensedcode/data/rules/false-positive_6415.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + complex license terms, like `MIT` for MIT-licensed and `(GPL-2.0 OR Apache-2.0)` for dual-licensing under GPL 2.0 and Apache 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6415.yml b/src/licensedcode/data/rules/false-positive_6415.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6415.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6416.RULE b/src/licensedcode/data/rules/false-positive_6416.RULE index 25bd2184ead..19e625146ab 100644 --- a/src/licensedcode/data/rules/false-positive_6416.RULE +++ b/src/licensedcode/data/rules/false-positive_6416.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + // Licensed under a combination of: // - the MIT License AND // - a combination of: diff --git a/src/licensedcode/data/rules/false-positive_6416.yml b/src/licensedcode/data/rules/false-positive_6416.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6416.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6417.RULE b/src/licensedcode/data/rules/false-positive_6417.RULE index c2d3ae76734..ec470a747c4 100644 --- a/src/licensedcode/data/rules/false-positive_6417.RULE +++ b/src/licensedcode/data/rules/false-positive_6417.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + left: {license: 'MIT'}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6417.yml b/src/licensedcode/data/rules/false-positive_6417.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6417.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6418.RULE b/src/licensedcode/data/rules/false-positive_6418.RULE index adac8806448..c3407701e6e 100644 --- a/src/licensedcode/data/rules/false-positive_6418.RULE +++ b/src/licensedcode/data/rules/false-positive_6418.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + left: {license: 'LGPL-2.1', plus: true}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6418.yml b/src/licensedcode/data/rules/false-positive_6418.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6418.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6419.RULE b/src/licensedcode/data/rules/false-positive_6419.RULE index 64e78745255..b858a612367 100644 --- a/src/licensedcode/data/rules/false-positive_6419.RULE +++ b/src/licensedcode/data/rules/false-positive_6419.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + (correct('mit'), 'MIT') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6419.yml b/src/licensedcode/data/rules/false-positive_6419.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6419.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_642.RULE b/src/licensedcode/data/rules/false-positive_642.RULE index fd8fa84a3c4..5e4d4c1f795 100644 --- a/src/licensedcode/data/rules/false-positive_642.RULE +++ b/src/licensedcode/data/rules/false-positive_642.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + lock() is GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_642.yml b/src/licensedcode/data/rules/false-positive_642.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_642.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_6420.RULE b/src/licensedcode/data/rules/false-positive_6420.RULE index 970a122b7f4..9f5906090e5 100644 --- a/src/licensedcode/data/rules/false-positive_6420.RULE +++ b/src/licensedcode/data/rules/false-positive_6420.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + (correct('Apache 2'), 'Apache-2.0') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6420.yml b/src/licensedcode/data/rules/false-positive_6420.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6420.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6421.RULE b/src/licensedcode/data/rules/false-positive_6421.RULE index 4b9446ce000..2e1ab7b0702 100644 --- a/src/licensedcode/data/rules/false-positive_6421.RULE +++ b/src/licensedcode/data/rules/false-positive_6421.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + (correct('GPL-3.0'), 'GPL-3.0-or-later') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6421.yml b/src/licensedcode/data/rules/false-positive_6421.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6421.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_6422.RULE b/src/licensedcode/data/rules/false-positive_6422.RULE index cc698bb683a..5b9bcc9109e 100644 --- a/src/licensedcode/data/rules/false-positive_6422.RULE +++ b/src/licensedcode/data/rules/false-positive_6422.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but a list of licenses in code +--- + (correct('GPL-3.0', { upgrade: false }), 'GPL-3.0') \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6422.yml b/src/licensedcode/data/rules/false-positive_6422.yml deleted file mode 100644 index 70157207b43..00000000000 --- a/src/licensedcode/data/rules/false-positive_6422.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but a list of licenses in code diff --git a/src/licensedcode/data/rules/false-positive_643.RULE b/src/licensedcode/data/rules/false-positive_643.RULE index dc6396ac2c4..c5d40083bff 100644 --- a/src/licensedcode/data/rules/false-positive_643.RULE +++ b/src/licensedcode/data/rules/false-positive_643.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + a non-GPL symbol with the upstream community \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_643.yml b/src/licensedcode/data/rules/false-positive_643.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_643.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_644.RULE b/src/licensedcode/data/rules/false-positive_644.RULE index ccd3c5b85f0..55ee732253f 100644 --- a/src/licensedcode/data/rules/false-positive_644.RULE +++ b/src/licensedcode/data/rules/false-positive_644.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + incompatible with the CDDL license and will \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_644.yml b/src/licensedcode/data/rules/false-positive_644.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_644.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_645.RULE b/src/licensedcode/data/rules/false-positive_645.RULE index 082b51de2ce..b61bc0a6bcc 100644 --- a/src/licensedcode/data/rules/false-positive_645.RULE +++ b/src/licensedcode/data/rules/false-positive_645.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + macro is available to non-GPL modules. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_645.yml b/src/licensedcode/data/rules/false-positive_645.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_645.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_646.RULE b/src/licensedcode/data/rules/false-positive_646.RULE index 8e00cf1c7d1..ec5e005f044 100644 --- a/src/licensedcode/data/rules/false-positive_646.RULE +++ b/src/licensedcode/data/rules/false-positive_646.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + acct() became GPL-exported \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_646.yml b/src/licensedcode/data/rules/false-positive_646.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_646.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_647.RULE b/src/licensedcode/data/rules/false-positive_647.RULE index 0de0688a407..998cf06bc26 100644 --- a/src/licensedcode/data/rules/false-positive_647.RULE +++ b/src/licensedcode/data/rules/false-positive_647.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + interface is GPL-only thus \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_647.yml b/src/licensedcode/data/rules/false-positive_647.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_647.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_648.RULE b/src/licensedcode/data/rules/false-positive_648.RULE index 4b3f836fb90..4fd48505d45 100644 --- a/src/licensedcode/data/rules/false-positive_648.RULE +++ b/src/licensedcode/data/rules/false-positive_648.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + the GPL-only version is detected. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_648.yml b/src/licensedcode/data/rules/false-positive_648.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_648.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_649.RULE b/src/licensedcode/data/rules/false-positive_649.RULE index 0d7e94b28e1..56bea424b81 100644 --- a/src/licensedcode/data/rules/false-positive_649.RULE +++ b/src/licensedcode/data/rules/false-positive_649.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a comment, not a license +--- + got updated 3 clause Berkeley license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_649.yml b/src/licensedcode/data/rules/false-positive_649.yml deleted file mode 100644 index e85137830df..00000000000 --- a/src/licensedcode/data/rules/false-positive_649.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a comment, not a license diff --git a/src/licensedcode/data/rules/false-positive_65.RULE b/src/licensedcode/data/rules/false-positive_65.RULE index 0e241a1a879..445e5627fb5 100644 --- a/src/licensedcode/data/rules/false-positive_65.RULE +++ b/src/licensedcode/data/rules/false-positive_65.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in gitlab's proprietary license-finder changelog +--- + Removes `BSD-4-Clause` from a list \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_65.yml b/src/licensedcode/data/rules/false-positive_65.yml deleted file mode 100644 index 0ab8015dfc6..00000000000 --- a/src/licensedcode/data/rules/false-positive_65.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in gitlab's proprietary license-finder changelog diff --git a/src/licensedcode/data/rules/false-positive_650.RULE b/src/licensedcode/data/rules/false-positive_650.RULE index bad837ac872..4bc0f20178e 100644 --- a/src/licensedcode/data/rules/false-positive_650.RULE +++ b/src/licensedcode/data/rules/false-positive_650.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + the new one is GPL-only. Thus if the GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_650.yml b/src/licensedcode/data/rules/false-positive_650.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_650.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_651.RULE b/src/licensedcode/data/rules/false-positive_651.RULE index 9b0f10b37c7..cfb848f678b 100644 --- a/src/licensedcode/data/rules/false-positive_651.RULE +++ b/src/licensedcode/data/rules/false-positive_651.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + because it calls the GPL-only symbol \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_651.yml b/src/licensedcode/data/rules/false-positive_651.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_651.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_652.RULE b/src/licensedcode/data/rules/false-positive_652.RULE index bb9739df8bc..7bdd3fbabdf 100644 --- a/src/licensedcode/data/rules/false-positive_652.RULE +++ b/src/licensedcode/data/rules/false-positive_652.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + notrace is GPL-only which breaks \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_652.yml b/src/licensedcode/data/rules/false-positive_652.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_652.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_653.RULE b/src/licensedcode/data/rules/false-positive_653.RULE index 440cd674e45..62f73f446a3 100644 --- a/src/licensedcode/data/rules/false-positive_653.RULE +++ b/src/licensedcode/data/rules/false-positive_653.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + effect the function was converted to GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_653.yml b/src/licensedcode/data/rules/false-positive_653.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_653.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_654.RULE b/src/licensedcode/data/rules/false-positive_654.RULE index ff702e8bb37..6a1ae3acc5a 100644 --- a/src/licensedcode/data/rules/false-positive_654.RULE +++ b/src/licensedcode/data/rules/false-positive_654.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + function is marked GPL-only and cannot be used \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_654.yml b/src/licensedcode/data/rules/false-positive_654.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_654.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_655.RULE b/src/licensedcode/data/rules/false-positive_655.RULE index 704ab2fd6ac..0af0c7f804c 100644 --- a/src/licensedcode/data/rules/false-positive_655.RULE +++ b/src/licensedcode/data/rules/false-positive_655.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + a lot of GPL-only code duplication \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_655.yml b/src/licensedcode/data/rules/false-positive_655.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_655.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_656.RULE b/src/licensedcode/data/rules/false-positive_656.RULE index 8d5c4a6f8c7..f4887151d7f 100644 --- a/src/licensedcode/data/rules/false-positive_656.RULE +++ b/src/licensedcode/data/rules/false-positive_656.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + but that is a GPL-only symbol which \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_656.yml b/src/licensedcode/data/rules/false-positive_656.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_656.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_657.RULE b/src/licensedcode/data/rules/false-positive_657.RULE index 9533f00dc8a..5dd2c85e6c9 100644 --- a/src/licensedcode/data/rules/false-positive_657.RULE +++ b/src/licensedcode/data/rules/false-positive_657.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in openzfs +--- + tracepoints in non-gpl kernel modules. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_657.yml b/src/licensedcode/data/rules/false-positive_657.yml deleted file mode 100644 index 9f5f2098f32..00000000000 --- a/src/licensedcode/data/rules/false-positive_657.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in openzfs diff --git a/src/licensedcode/data/rules/false-positive_658.RULE b/src/licensedcode/data/rules/false-positive_658.RULE index 361fad1c69a..eb33ac5efcd 100644 --- a/src/licensedcode/data/rules/false-positive_658.RULE +++ b/src/licensedcode/data/rules/false-positive_658.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Not license, only a symbol about optional GPL compilation in FreeBSD sys/modules/bwn +--- + option to opt-in to the GPL'd 802. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_658.yml b/src/licensedcode/data/rules/false-positive_658.yml deleted file mode 100644 index 96d88a04e6f..00000000000 --- a/src/licensedcode/data/rules/false-positive_658.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Not license, only a symbol about optional GPL compilation in FreeBSD sys/modules/bwn diff --git a/src/licensedcode/data/rules/false-positive_659.RULE b/src/licensedcode/data/rules/false-positive_659.RULE index 4ba04d7161b..e7d9a779eb3 100644 --- a/src/licensedcode/data/rules/false-positive_659.RULE +++ b/src/licensedcode/data/rules/false-positive_659.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Not license, only a symbol about optional GPL compilation and some message when this + happens in FreeBSD sys/modules/bwn +--- + GPL_PHY; includes GPLv2 code \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_659.yml b/src/licensedcode/data/rules/false-positive_659.yml deleted file mode 100644 index 1a7bb51aa3c..00000000000 --- a/src/licensedcode/data/rules/false-positive_659.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Not license, only a symbol about optional GPL compilation and some message when this - happens in FreeBSD sys/modules/bwn diff --git a/src/licensedcode/data/rules/false-positive_66.RULE b/src/licensedcode/data/rules/false-positive_66.RULE index 10e5fbc54c6..44e1662b5e0 100644 --- a/src/licensedcode/data/rules/false-positive_66.RULE +++ b/src/licensedcode/data/rules/false-positive_66.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not about the GPL +--- + images/test.gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_66.yml b/src/licensedcode/data/rules/false-positive_66.yml deleted file mode 100644 index 5495225e635..00000000000 --- a/src/licensedcode/data/rules/false-positive_66.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not about the GPL diff --git a/src/licensedcode/data/rules/false-positive_660.RULE b/src/licensedcode/data/rules/false-positive_660.RULE index d0b9ed747c5..b900f293b4c 100644 --- a/src/licensedcode/data/rules/false-positive_660.RULE +++ b/src/licensedcode/data/rules/false-positive_660.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in camcontrol +--- + invented a better (non-GPL!) command \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_660.yml b/src/licensedcode/data/rules/false-positive_660.yml deleted file mode 100644 index b3cf7f07d34..00000000000 --- a/src/licensedcode/data/rules/false-positive_660.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in camcontrol diff --git a/src/licensedcode/data/rules/false-positive_661.RULE b/src/licensedcode/data/rules/false-positive_661.RULE index 6243b5aeec9..46fc345e0d8 100644 --- a/src/licensedcode/data/rules/false-positive_661.RULE +++ b/src/licensedcode/data/rules/false-positive_661.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in heimdal +--- + headerfile that is compatible with GPL (file taken \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_661.yml b/src/licensedcode/data/rules/false-positive_661.yml deleted file mode 100644 index a33aa997725..00000000000 --- a/src/licensedcode/data/rules/false-positive_661.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in heimdal diff --git a/src/licensedcode/data/rules/false-positive_662.RULE b/src/licensedcode/data/rules/false-positive_662.RULE index ce35a0dc160..315df3c11e6 100644 --- a/src/licensedcode/data/rules/false-positive_662.RULE +++ b/src/licensedcode/data/rules/false-positive_662.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in heimdal hcrypto man page +--- + no complete BSD licensed, fast, GPL compatible implementation of DES \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_662.yml b/src/licensedcode/data/rules/false-positive_662.yml deleted file mode 100644 index 089abdeda1f..00000000000 --- a/src/licensedcode/data/rules/false-positive_662.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in heimdal hcrypto man page diff --git a/src/licensedcode/data/rules/false-positive_663.RULE b/src/licensedcode/data/rules/false-positive_663.RULE index 43a06275547..ad0d872f7d2 100644 --- a/src/licensedcode/data/rules/false-positive_663.RULE +++ b/src/licensedcode/data/rules/false-positive_663.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in Samsung drivers +--- + GPL O \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_663.yml b/src/licensedcode/data/rules/false-positive_663.yml deleted file mode 100644 index ee419744e4a..00000000000 --- a/src/licensedcode/data/rules/false-positive_663.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in Samsung drivers diff --git a/src/licensedcode/data/rules/false-positive_664.RULE b/src/licensedcode/data/rules/false-positive_664.RULE index 8ce40930f71..360317675c2 100644 --- a/src/licensedcode/data/rules/false-positive_664.RULE +++ b/src/licensedcode/data/rules/false-positive_664.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in Samsung drivers +--- + gpios gpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_664.yml b/src/licensedcode/data/rules/false-positive_664.yml deleted file mode 100644 index ee419744e4a..00000000000 --- a/src/licensedcode/data/rules/false-positive_664.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in Samsung drivers diff --git a/src/licensedcode/data/rules/false-positive_665.RULE b/src/licensedcode/data/rules/false-positive_665.RULE index 34b253e0b3c..dbec7d4fd0d 100644 --- a/src/licensedcode/data/rules/false-positive_665.RULE +++ b/src/licensedcode/data/rules/false-positive_665.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + SLP(gpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_665.yml b/src/licensedcode/data/rules/false-positive_665.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_665.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_666.RULE b/src/licensedcode/data/rules/false-positive_666.RULE index e92c8797c12..397added5f7 100644 --- a/src/licensedcode/data/rules/false-positive_666.RULE +++ b/src/licensedcode/data/rules/false-positive_666.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + SLP(gpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_666.yml b/src/licensedcode/data/rules/false-positive_666.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_666.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_667.RULE b/src/licensedcode/data/rules/false-positive_667.RULE index 13301838643..940e12ac8ce 100644 --- a/src/licensedcode/data/rules/false-positive_667.RULE +++ b/src/licensedcode/data/rules/false-positive_667.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: device GPIOS references +--- + SLP(gpl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_667.yml b/src/licensedcode/data/rules/false-positive_667.yml deleted file mode 100644 index 44de4b23c80..00000000000 --- a/src/licensedcode/data/rules/false-positive_667.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: device GPIOS references diff --git a/src/licensedcode/data/rules/false-positive_668.RULE b/src/licensedcode/data/rules/false-positive_668.RULE index 19f609f2088..0fe62e8be60 100644 --- a/src/licensedcode/data/rules/false-positive_668.RULE +++ b/src/licensedcode/data/rules/false-positive_668.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Not license, only a symbol about optional GPL compilation in FreeBSD sys/modules/bwn +--- + GPL_PHY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_668.yml b/src/licensedcode/data/rules/false-positive_668.yml deleted file mode 100644 index 96d88a04e6f..00000000000 --- a/src/licensedcode/data/rules/false-positive_668.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Not license, only a symbol about optional GPL compilation in FreeBSD sys/modules/bwn diff --git a/src/licensedcode/data/rules/false-positive_669.RULE b/src/licensedcode/data/rules/false-positive_669.RULE index 24880d875ef..8f540d4f82b 100644 --- a/src/licensedcode/data/rules/false-positive_669.RULE +++ b/src/licensedcode/data/rules/false-positive_669.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: Seen in w3c notices as a comment and not a license notice +--- + Free Software Foundation's assessment of GPL compatibility and OSI's certification under the Open Source diff --git a/src/licensedcode/data/rules/false-positive_669.yml b/src/licensedcode/data/rules/false-positive_669.yml deleted file mode 100644 index 9992efbcd05..00000000000 --- a/src/licensedcode/data/rules/false-positive_669.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in w3c notices as a comment and not a license notice diff --git a/src/licensedcode/data/rules/false-positive_67.RULE b/src/licensedcode/data/rules/false-positive_67.RULE index 03583c6f843..d79c0cb1c63 100644 --- a/src/licensedcode/data/rules/false-positive_67.RULE +++ b/src/licensedcode/data/rules/false-positive_67.RULE @@ -1 +1,6 @@ -"nonproprietary products are in the public domain and anyone can produce or distribute them" \ No newline at end of file +--- +is_false_positive: yes +notes: found in the wordnet db +--- + +"nonproprietary products are in the public domain and anyone can produce or distribute them" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_67.yml b/src/licensedcode/data/rules/false-positive_67.yml deleted file mode 100644 index 764692511c3..00000000000 --- a/src/licensedcode/data/rules/false-positive_67.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in the wordnet db diff --git a/src/licensedcode/data/rules/false-positive_670.RULE b/src/licensedcode/data/rules/false-positive_670.RULE index 765d95fbf45..5224540cf5c 100644 --- a/src/licensedcode/data/rules/false-positive_670.RULE +++ b/src/licensedcode/data/rules/false-positive_670.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in KDE guidelines +--- + patent grant must never be included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_670.yml b/src/licensedcode/data/rules/false-positive_670.yml deleted file mode 100644 index 90fc50abac8..00000000000 --- a/src/licensedcode/data/rules/false-positive_670.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in KDE guidelines diff --git a/src/licensedcode/data/rules/false-positive_671.RULE b/src/licensedcode/data/rules/false-positive_671.RULE index a4b2c12197f..b04e561461d 100644 --- a/src/licensedcode/data/rules/false-positive_671.RULE +++ b/src/licensedcode/data/rules/false-positive_671.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in KDE guidelines +--- + The advertising clause requiring mention in adverts must never be included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_671.yml b/src/licensedcode/data/rules/false-positive_671.yml deleted file mode 100644 index 90fc50abac8..00000000000 --- a/src/licensedcode/data/rules/false-positive_671.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in KDE guidelines diff --git a/src/licensedcode/data/rules/false-positive_672.RULE b/src/licensedcode/data/rules/false-positive_672.RULE index 54a2e7c3797..9fde3d6a66b 100644 --- a/src/licensedcode/data/rules/false-positive_672.RULE +++ b/src/licensedcode/data/rules/false-positive_672.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + SPDX License List \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_672.yml b/src/licensedcode/data/rules/false-positive_672.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_672.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_673.RULE b/src/licensedcode/data/rules/false-positive_673.RULE index 1cae6558794..f8632f68752 100644 --- a/src/licensedcode/data/rules/false-positive_673.RULE +++ b/src/licensedcode/data/rules/false-positive_673.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Android as a comment and not a license notice. +--- + e.g. GPL in an MIT project might only apply to the contrib/ directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_673.yml b/src/licensedcode/data/rules/false-positive_673.yml deleted file mode 100644 index 175db80834c..00000000000 --- a/src/licensedcode/data/rules/false-positive_673.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Android as a comment and not a license notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_674.RULE b/src/licensedcode/data/rules/false-positive_674.RULE index 68c1991596a..e339ad05e07 100644 --- a/src/licensedcode/data/rules/false-positive_674.RULE +++ b/src/licensedcode/data/rules/false-positive_674.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Not a license, refers to a different version of tar that this version is based on. +--- + based on John Gilmore's public domain version of tar, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_674.yml b/src/licensedcode/data/rules/false-positive_674.yml deleted file mode 100644 index 5f516a81a89..00000000000 --- a/src/licensedcode/data/rules/false-positive_674.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Not a license, refers to a different version of tar that this version is based on. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_68.RULE b/src/licensedcode/data/rules/false-positive_68.RULE index 43aced9a1e6..a0c5a237025 100644 --- a/src/licensedcode/data/rules/false-positive_68.RULE +++ b/src/licensedcode/data/rules/false-positive_68.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in gitlab's proprietary license-finder changelog +--- + Fix normalization for GPL2 with Classpath exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_68.yml b/src/licensedcode/data/rules/false-positive_68.yml deleted file mode 100644 index 0ab8015dfc6..00000000000 --- a/src/licensedcode/data/rules/false-positive_68.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in gitlab's proprietary license-finder changelog diff --git a/src/licensedcode/data/rules/false-positive_6812.RULE b/src/licensedcode/data/rules/false-positive_6812.RULE index d9cf3e9a3ff..41d50cdef6b 100644 --- a/src/licensedcode/data/rules/false-positive_6812.RULE +++ b/src/licensedcode/data/rules/false-positive_6812.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comment about a license +--- + replacing the "non-commercial or commercial purposes and without fee" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6812.yml b/src/licensedcode/data/rules/false-positive_6812.yml deleted file mode 100644 index 7204c4eb344..00000000000 --- a/src/licensedcode/data/rules/false-positive_6812.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comment about a license diff --git a/src/licensedcode/data/rules/false-positive_6813.RULE b/src/licensedcode/data/rules/false-positive_6813.RULE index f1b4d2e18ac..54d08d2b7a0 100644 --- a/src/licensedcode/data/rules/false-positive_6813.RULE +++ b/src/licensedcode/data/rules/false-positive_6813.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comment about a license +--- + While this is technically free (and GPL-compatible) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_6813.yml b/src/licensedcode/data/rules/false-positive_6813.yml deleted file mode 100644 index 7204c4eb344..00000000000 --- a/src/licensedcode/data/rules/false-positive_6813.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comment about a license diff --git a/src/licensedcode/data/rules/false-positive_69.RULE b/src/licensedcode/data/rules/false-positive_69.RULE index e249744bd5c..de3d021d71c 100644 --- a/src/licensedcode/data/rules/false-positive_69.RULE +++ b/src/licensedcode/data/rules/false-positive_69.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + Net-BSD style \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_69.yml b/src/licensedcode/data/rules/false-positive_69.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_69.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_7.RULE b/src/licensedcode/data/rules/false-positive_7.RULE index 3150af4533d..4ef0ef6e26d 100644 --- a/src/licensedcode/data/rules/false-positive_7.RULE +++ b/src/licensedcode/data/rules/false-positive_7.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: nothing should be detected. +--- + packages are restricted \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7.yml b/src/licensedcode/data/rules/false-positive_7.yml deleted file mode 100644 index 56ddfaf0cf3..00000000000 --- a/src/licensedcode/data/rules/false-positive_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: nothing should be detected. diff --git a/src/licensedcode/data/rules/false-positive_70.RULE b/src/licensedcode/data/rules/false-positive_70.RULE index da54928d76d..d81ff93e52f 100644 --- a/src/licensedcode/data/rules/false-positive_70.RULE +++ b/src/licensedcode/data/rules/false-positive_70.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + wx>2.9 & mpl>1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_70.yml b/src/licensedcode/data/rules/false-positive_70.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_70.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_71.RULE b/src/licensedcode/data/rules/false-positive_71.RULE index 13904217c92..5886bcca6f0 100644 --- a/src/licensedcode/data/rules/false-positive_71.RULE +++ b/src/licensedcode/data/rules/false-positive_71.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: A code construct +--- + url = "https://opensource.org/licenses/#{spdx_id}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_71.yml b/src/licensedcode/data/rules/false-positive_71.yml deleted file mode 100644 index 0c706c8042e..00000000000 --- a/src/licensedcode/data/rules/false-positive_71.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A code construct diff --git a/src/licensedcode/data/rules/false-positive_72.RULE b/src/licensedcode/data/rules/false-positive_72.RULE index 65ad3042d31..71b29aaddbf 100644 --- a/src/licensedcode/data/rules/false-positive_72.RULE +++ b/src/licensedcode/data/rules/false-positive_72.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 + which is a license-related tool +--- + // e.g. 'Apache Version 2' -function +function \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_72.yml b/src/licensedcode/data/rules/false-positive_72.yml deleted file mode 100644 index 7b0e2bb5db6..00000000000 --- a/src/licensedcode/data/rules/false-positive_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/jslicense/spdx-correct.js/tree/ae4124a26e862181d16d745b5b9ac6838e4a6109 - which is a license-related tool diff --git a/src/licensedcode/data/rules/false-positive_73.RULE b/src/licensedcode/data/rules/false-positive_73.RULE index 209c1c383fa..948079ce054 100644 --- a/src/licensedcode/data/rules/false-positive_73.RULE +++ b/src/licensedcode/data/rules/false-positive_73.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: gibberish, not a license +--- + OpH+GPL+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_73.yml b/src/licensedcode/data/rules/false-positive_73.yml deleted file mode 100644 index df4177598e7..00000000000 --- a/src/licensedcode/data/rules/false-positive_73.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: gibberish, not a license diff --git a/src/licensedcode/data/rules/false-positive_7370.RULE b/src/licensedcode/data/rules/false-positive_7370.RULE index 8b246336df4..3769b457847 100644 --- a/src/licensedcode/data/rules/false-positive_7370.RULE +++ b/src/licensedcode/data/rules/false-positive_7370.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: note a license +--- + node may not be modified \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7370.yml b/src/licensedcode/data/rules/false-positive_7370.yml deleted file mode 100644 index d06d6fad2f6..00000000000 --- a/src/licensedcode/data/rules/false-positive_7370.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: note a license diff --git a/src/licensedcode/data/rules/false-positive_7371.RULE b/src/licensedcode/data/rules/false-positive_7371.RULE index 98baf9994ac..84d85452bfe 100644 --- a/src/licensedcode/data/rules/false-positive_7371.RULE +++ b/src/licensedcode/data/rules/false-positive_7371.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a public domain declartion +--- + as an Australian I cannot put this into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7371.yml b/src/licensedcode/data/rules/false-positive_7371.yml deleted file mode 100644 index 1063c527cc8..00000000000 --- a/src/licensedcode/data/rules/false-positive_7371.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a public domain declartion diff --git a/src/licensedcode/data/rules/false-positive_7372.RULE b/src/licensedcode/data/rules/false-positive_7372.RULE index 836d34f8f96..06814e41d48 100644 --- a/src/licensedcode/data/rules/false-positive_7372.RULE +++ b/src/licensedcode/data/rules/false-positive_7372.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Note a license, but a comment about licenses. +--- + For `AutoIt `_ files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7372.yml b/src/licensedcode/data/rules/false-positive_7372.yml deleted file mode 100644 index c9419feb159..00000000000 --- a/src/licensedcode/data/rules/false-positive_7372.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Note a license, but a comment about licenses. diff --git a/src/licensedcode/data/rules/false-positive_7373.RULE b/src/licensedcode/data/rules/false-positive_7373.RULE index 388a23598eb..f83b277b419 100644 --- a/src/licensedcode/data/rules/false-positive_7373.RULE +++ b/src/licensedcode/data/rules/false-positive_7373.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Note a license, but a comment about licenses. +--- + AutoIt is a freeware BASIC-like scripting language designed for automating the Windows GUI and general scripting \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7373.yml b/src/licensedcode/data/rules/false-positive_7373.yml deleted file mode 100644 index c9419feb159..00000000000 --- a/src/licensedcode/data/rules/false-positive_7373.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Note a license, but a comment about licenses. diff --git a/src/licensedcode/data/rules/false-positive_7374.RULE b/src/licensedcode/data/rules/false-positive_7374.RULE index 576f28e4a50..c2ec63430c3 100644 --- a/src/licensedcode/data/rules/false-positive_7374.RULE +++ b/src/licensedcode/data/rules/false-positive_7374.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in nuget.exe +--- + https://licenses.nuget.org/{0} \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7374.yml b/src/licensedcode/data/rules/false-positive_7374.yml deleted file mode 100644 index af1565b090a..00000000000 --- a/src/licensedcode/data/rules/false-positive_7374.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in nuget.exe diff --git a/src/licensedcode/data/rules/false-positive_7375.RULE b/src/licensedcode/data/rules/false-positive_7375.RULE index b5438489cfd..21446a5e5c7 100644 --- a/src/licensedcode/data/rules/false-positive_7375.RULE +++ b/src/licensedcode/data/rules/false-positive_7375.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a public domain statement +--- + errors in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7375.yml b/src/licensedcode/data/rules/false-positive_7375.yml deleted file mode 100644 index 720d0fe756c..00000000000 --- a/src/licensedcode/data/rules/false-positive_7375.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a public domain statement diff --git a/src/licensedcode/data/rules/false-positive_7376.RULE b/src/licensedcode/data/rules/false-positive_7376.RULE index cf300ed5592..32bf2a31781 100644 --- a/src/licensedcode/data/rules/false-positive_7376.RULE +++ b/src/licensedcode/data/rules/false-positive_7376.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a public domain statement +--- + in the public domain or a new error \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7376.yml b/src/licensedcode/data/rules/false-positive_7376.yml deleted file mode 100644 index 720d0fe756c..00000000000 --- a/src/licensedcode/data/rules/false-positive_7376.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a public domain statement diff --git a/src/licensedcode/data/rules/false-positive_7377.RULE b/src/licensedcode/data/rules/false-positive_7377.RULE index 931320cabfa..2e8034b3639 100644 --- a/src/licensedcode/data/rules/false-positive_7377.RULE +++ b/src/licensedcode/data/rules/false-positive_7377.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not an SSPL reference +--- + SsPl; D \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7377.yml b/src/licensedcode/data/rules/false-positive_7377.yml deleted file mode 100644 index bf91c215c3d..00000000000 --- a/src/licensedcode/data/rules/false-positive_7377.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not an SSPL reference diff --git a/src/licensedcode/data/rules/false-positive_7378.RULE b/src/licensedcode/data/rules/false-positive_7378.RULE index 5f9def58ae9..fe62c3ec950 100644 --- a/src/licensedcode/data/rules/false-positive_7378.RULE +++ b/src/licensedcode/data/rules/false-positive_7378.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments about licenses seen in a README +--- + questions about the GPL, LGPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7378.yml b/src/licensedcode/data/rules/false-positive_7378.yml deleted file mode 100644 index bd185ea4f64..00000000000 --- a/src/licensedcode/data/rules/false-positive_7378.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licenses seen in a README diff --git a/src/licensedcode/data/rules/false-positive_7379.RULE b/src/licensedcode/data/rules/false-positive_7379.RULE index fa73093793f..8e91aba8199 100644 --- a/src/licensedcode/data/rules/false-positive_7379.RULE +++ b/src/licensedcode/data/rules/false-positive_7379.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments about licenses seen in a README +--- + the Free Software Foundation's GPL FAQ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7379.yml b/src/licensedcode/data/rules/false-positive_7379.yml deleted file mode 100644 index bd185ea4f64..00000000000 --- a/src/licensedcode/data/rules/false-positive_7379.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licenses seen in a README diff --git a/src/licensedcode/data/rules/false-positive_7380.RULE b/src/licensedcode/data/rules/false-positive_7380.RULE index 83564557844..f3a47e2d8d4 100644 --- a/src/licensedcode/data/rules/false-positive_7380.RULE +++ b/src/licensedcode/data/rules/false-positive_7380.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comments about licenses seen in a README +--- + licenses like the X11, BSD licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7380.yml b/src/licensedcode/data/rules/false-positive_7380.yml deleted file mode 100644 index bd185ea4f64..00000000000 --- a/src/licensedcode/data/rules/false-positive_7380.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licenses seen in a README diff --git a/src/licensedcode/data/rules/false-positive_7381.RULE b/src/licensedcode/data/rules/false-positive_7381.RULE index 4cc5b3e1364..147f4143d06 100644 --- a/src/licensedcode/data/rules/false-positive_7381.RULE +++ b/src/licensedcode/data/rules/false-positive_7381.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in Unzip Info-ZIP file COPYING. A commentary about licenses. +--- + summarises some exceptions to the general BSD-like copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7381.yml b/src/licensedcode/data/rules/false-positive_7381.yml deleted file mode 100644 index 505fd369954..00000000000 --- a/src/licensedcode/data/rules/false-positive_7381.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in Unzip Info-ZIP file COPYING. A commentary about licenses. diff --git a/src/licensedcode/data/rules/false-positive_7382.RULE b/src/licensedcode/data/rules/false-positive_7382.RULE index 8950d5da725..3e7d06136a7 100644 --- a/src/licensedcode/data/rules/false-positive_7382.RULE +++ b/src/licensedcode/data/rules/false-positive_7382.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: seen in some flac files +--- + COPYING.FDL \ COPYING.GPL \ COPYING.LGPL \ diff --git a/src/licensedcode/data/rules/false-positive_7382.yml b/src/licensedcode/data/rules/false-positive_7382.yml deleted file mode 100644 index affea59e270..00000000000 --- a/src/licensedcode/data/rules/false-positive_7382.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in some flac files diff --git a/src/licensedcode/data/rules/false-positive_7383.RULE b/src/licensedcode/data/rules/false-positive_7383.RULE index 7020c58cd76..bad61664f8f 100644 --- a/src/licensedcode/data/rules/false-positive_7383.RULE +++ b/src/licensedcode/data/rules/false-positive_7383.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + some License a Private \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7383.yml b/src/licensedcode/data/rules/false-positive_7383.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_7383.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_7384.RULE b/src/licensedcode/data/rules/false-positive_7384.RULE index 128613412db..e5473b90a0a 100644 --- a/src/licensedcode/data/rules/false-positive_7384.RULE +++ b/src/licensedcode/data/rules/false-positive_7384.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in https://github.com/nexB/scancode-toolkit/issues/2304 +--- + cmd_mpl, 1, 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7384.yml b/src/licensedcode/data/rules/false-positive_7384.yml deleted file mode 100644 index f6ecf955c1c..00000000000 --- a/src/licensedcode/data/rules/false-positive_7384.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in https://github.com/nexB/scancode-toolkit/issues/2304 diff --git a/src/licensedcode/data/rules/false-positive_7385.RULE b/src/licensedcode/data/rules/false-positive_7385.RULE index 3087caf8161..f64ab579d9f 100644 --- a/src/licensedcode/data/rules/false-positive_7385.RULE +++ b/src/licensedcode/data/rules/false-positive_7385.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a proprietary license, seen in pyproj +--- + table %s may not be modified \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7385.yml b/src/licensedcode/data/rules/false-positive_7385.yml deleted file mode 100644 index e9a9bddc6bb..00000000000 --- a/src/licensedcode/data/rules/false-positive_7385.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a proprietary license, seen in pyproj diff --git a/src/licensedcode/data/rules/false-positive_7386.RULE b/src/licensedcode/data/rules/false-positive_7386.RULE index 7aff7d3bc58..df74199526d 100644 --- a/src/licensedcode/data/rules/false-positive_7386.RULE +++ b/src/licensedcode/data/rules/false-positive_7386.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license. Seen in nixos +--- + platforms; linux ++ freebsd license; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7386.yml b/src/licensedcode/data/rules/false-positive_7386.yml deleted file mode 100644 index eb88fe332c7..00000000000 --- a/src/licensedcode/data/rules/false-positive_7386.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license. Seen in nixos diff --git a/src/licensedcode/data/rules/false-positive_7387.RULE b/src/licensedcode/data/rules/false-positive_7387.RULE index 6db61fe1043..11553afc27a 100644 --- a/src/licensedcode/data/rules/false-positive_7387.RULE +++ b/src/licensedcode/data/rules/false-positive_7387.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license. Seen in nixos +--- + OS_FREEBSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7387.yml b/src/licensedcode/data/rules/false-positive_7387.yml deleted file mode 100644 index eb88fe332c7..00000000000 --- a/src/licensedcode/data/rules/false-positive_7387.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license. Seen in nixos diff --git a/src/licensedcode/data/rules/false-positive_7388.RULE b/src/licensedcode/data/rules/false-positive_7388.RULE index 12a298866b0..77962b02f3e 100644 --- a/src/licensedcode/data/rules/false-positive_7388.RULE +++ b/src/licensedcode/data/rules/false-positive_7388.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license. Seen in macports +--- + platforms darwin freebsd license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7388.yml b/src/licensedcode/data/rules/false-positive_7388.yml deleted file mode 100644 index 79e358c270a..00000000000 --- a/src/licensedcode/data/rules/false-positive_7388.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license. Seen in macports diff --git a/src/licensedcode/data/rules/false-positive_7389.RULE b/src/licensedcode/data/rules/false-positive_7389.RULE index 7564d73770c..a961741a870 100644 --- a/src/licensedcode/data/rules/false-positive_7389.RULE +++ b/src/licensedcode/data/rules/false-positive_7389.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license. Seen in macports +--- + platforms freebsd license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7389.yml b/src/licensedcode/data/rules/false-positive_7389.yml deleted file mode 100644 index 79e358c270a..00000000000 --- a/src/licensedcode/data/rules/false-positive_7389.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license. Seen in macports diff --git a/src/licensedcode/data/rules/false-positive_7390.RULE b/src/licensedcode/data/rules/false-positive_7390.RULE index bf1f6ca1cff..3dbd47ec967 100644 --- a/src/licensedcode/data/rules/false-positive_7390.RULE +++ b/src/licensedcode/data/rules/false-positive_7390.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in Sqlite +--- + field may not be modified \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7390.yml b/src/licensedcode/data/rules/false-positive_7390.yml deleted file mode 100644 index 2944d6f5227..00000000000 --- a/src/licensedcode/data/rules/false-positive_7390.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in Sqlite diff --git a/src/licensedcode/data/rules/false-positive_7391.RULE b/src/licensedcode/data/rules/false-positive_7391.RULE index 8893256afe1..f401b3c116c 100644 --- a/src/licensedcode/data/rules/false-positive_7391.RULE +++ b/src/licensedcode/data/rules/false-positive_7391.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is a changelog entry +--- + update and fix location of GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_7391.yml b/src/licensedcode/data/rules/false-positive_7391.yml deleted file mode 100644 index c66ce59ad67..00000000000 --- a/src/licensedcode/data/rules/false-positive_7391.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is a changelog entry diff --git a/src/licensedcode/data/rules/false-positive_74.RULE b/src/licensedcode/data/rules/false-positive_74.RULE index 855390960e1..7e70164463b 100644 --- a/src/licensedcode/data/rules/false-positive_74.RULE +++ b/src/licensedcode/data/rules/false-positive_74.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: gibberish, not a license +--- + GPL-m7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_74.yml b/src/licensedcode/data/rules/false-positive_74.yml deleted file mode 100644 index df4177598e7..00000000000 --- a/src/licensedcode/data/rules/false-positive_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: gibberish, not a license diff --git a/src/licensedcode/data/rules/false-positive_7400.RULE b/src/licensedcode/data/rules/false-positive_7400.RULE index d47698889ea..394956ec1e4 100644 --- a/src/licensedcode/data/rules/false-positive_7400.RULE +++ b/src/licensedcode/data/rules/false-positive_7400.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: not a license, a commentary as a recommendation +--- + If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the http://www.gnu.org/copyleft/gpl.html GNU General Public diff --git a/src/licensedcode/data/rules/false-positive_7400.yml b/src/licensedcode/data/rules/false-positive_7400.yml deleted file mode 100644 index 0fc423c1708..00000000000 --- a/src/licensedcode/data/rules/false-positive_7400.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, a commentary as a recommendation diff --git a/src/licensedcode/data/rules/false-positive_75.RULE b/src/licensedcode/data/rules/false-positive_75.RULE index 1e7be981c75..ece6e193d6f 100644 --- a/src/licensedcode/data/rules/false-positive_75.RULE +++ b/src/licensedcode/data/rules/false-positive_75.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: gibberish, not a license +--- + report json license_scanning \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_75.yml b/src/licensedcode/data/rules/false-positive_75.yml deleted file mode 100644 index df4177598e7..00000000000 --- a/src/licensedcode/data/rules/false-positive_75.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: gibberish, not a license diff --git a/src/licensedcode/data/rules/false-positive_76.RULE b/src/licensedcode/data/rules/false-positive_76.RULE index 40d4b11fd29..dd6d28c21eb 100644 --- a/src/licensedcode/data/rules/false-positive_76.RULE +++ b/src/licensedcode/data/rules/false-positive_76.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + Click the download link for "PREBOOT.EXE". -Accept the Intel Software License Agreement that appears. +Accept the Intel Software License Agreement that appears. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_76.yml b/src/licensedcode/data/rules/false-positive_76.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_76.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_77.RULE b/src/licensedcode/data/rules/false-positive_77.RULE index 7760778e3c7..8a93ccd2c27 100644 --- a/src/licensedcode/data/rules/false-positive_77.RULE +++ b/src/licensedcode/data/rules/false-positive_77.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + if (gpl) - // GP logs may have >255 sectors + // GP logs may have >255 sectors \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_77.yml b/src/licensedcode/data/rules/false-positive_77.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_77.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_78.RULE b/src/licensedcode/data/rules/false-positive_78.RULE index c5dbb008001..753778a7cae 100644 --- a/src/licensedcode/data/rules/false-positive_78.RULE +++ b/src/licensedcode/data/rules/false-positive_78.RULE @@ -1 +1,6 @@ -/* file removed due to GPL incompatibility */ +--- +is_false_positive: yes +notes: commentary about a license. +--- + +/* file removed due to GPL incompatibility */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_78.yml b/src/licensedcode/data/rules/false-positive_78.yml deleted file mode 100644 index 37f2a9cf2eb..00000000000 --- a/src/licensedcode/data/rules/false-positive_78.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: commentary about a license. diff --git a/src/licensedcode/data/rules/false-positive_79.RULE b/src/licensedcode/data/rules/false-positive_79.RULE index 1c24c7e2523..f45ae936563 100644 --- a/src/licensedcode/data/rules/false-positive_79.RULE +++ b/src/licensedcode/data/rules/false-positive_79.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: gibberish, not a license +--- + validate-npm-package-license 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_79.yml b/src/licensedcode/data/rules/false-positive_79.yml deleted file mode 100644 index df4177598e7..00000000000 --- a/src/licensedcode/data/rules/false-positive_79.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: gibberish, not a license diff --git a/src/licensedcode/data/rules/false-positive_8.RULE b/src/licensedcode/data/rules/false-positive_8.RULE index 765b1ed5376..f4bb99fdfd0 100644 --- a/src/licensedcode/data/rules/false-positive_8.RULE +++ b/src/licensedcode/data/rules/false-positive_8.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is cups zebra not zope +--- + Zebra EPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_8.yml b/src/licensedcode/data/rules/false-positive_8.yml deleted file mode 100644 index 9f9e0ca52ef..00000000000 --- a/src/licensedcode/data/rules/false-positive_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is cups zebra not zope diff --git a/src/licensedcode/data/rules/false-positive_80.RULE b/src/licensedcode/data/rules/false-positive_80.RULE index 0503e01b0b6..603e1e5ad37 100644 --- a/src/licensedcode/data/rules/false-positive_80.RULE +++ b/src/licensedcode/data/rules/false-positive_80.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: gibberish, not a license +--- + validate-npm-package-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_80.yml b/src/licensedcode/data/rules/false-positive_80.yml deleted file mode 100644 index df4177598e7..00000000000 --- a/src/licensedcode/data/rules/false-positive_80.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: gibberish, not a license diff --git a/src/licensedcode/data/rules/false-positive_81.RULE b/src/licensedcode/data/rules/false-positive_81.RULE index ae9b092e133..6da6b5d5503 100644 --- a/src/licensedcode/data/rules/false-positive_81.RULE +++ b/src/licensedcode/data/rules/false-positive_81.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: gibberish, not a license +--- + npm-package-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_81.yml b/src/licensedcode/data/rules/false-positive_81.yml deleted file mode 100644 index df4177598e7..00000000000 --- a/src/licensedcode/data/rules/false-positive_81.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: gibberish, not a license diff --git a/src/licensedcode/data/rules/false-positive_82.RULE b/src/licensedcode/data/rules/false-positive_82.RULE index 05c505c40e1..7cfa6afa386 100644 --- a/src/licensedcode/data/rules/false-positive_82.RULE +++ b/src/licensedcode/data/rules/false-positive_82.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, just a comment about licenses +--- + Print general \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_82.yml b/src/licensedcode/data/rules/false-positive_82.yml deleted file mode 100644 index 9e6a4db3cfb..00000000000 --- a/src/licensedcode/data/rules/false-positive_82.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, just a comment about licenses diff --git a/src/licensedcode/data/rules/false-positive_83.RULE b/src/licensedcode/data/rules/false-positive_83.RULE index 5c12d4a9768..e0fac684c67 100644 --- a/src/licensedcode/data/rules/false-positive_83.RULE +++ b/src/licensedcode/data/rules/false-positive_83.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: found in NTP docs +--- + Workaround for public domain NTP version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_83.yml b/src/licensedcode/data/rules/false-positive_83.yml deleted file mode 100644 index 0d0cf64ad65..00000000000 --- a/src/licensedcode/data/rules/false-positive_83.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in NTP docs diff --git a/src/licensedcode/data/rules/false-positive_84.RULE b/src/licensedcode/data/rules/false-positive_84.RULE index d2de491e7f1..1c50aba3413 100644 --- a/src/licensedcode/data/rules/false-positive_84.RULE +++ b/src/licensedcode/data/rules/false-positive_84.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: project description, not a license +--- + October is a free, open-source \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_84.yml b/src/licensedcode/data/rules/false-positive_84.yml deleted file mode 100644 index 3d3f59ace73..00000000000 --- a/src/licensedcode/data/rules/false-positive_84.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: project description, not a license diff --git a/src/licensedcode/data/rules/false-positive_85.RULE b/src/licensedcode/data/rules/false-positive_85.RULE index 220dc782f20..851f1001323 100644 --- a/src/licensedcode/data/rules/false-positive_85.RULE +++ b/src/licensedcode/data/rules/false-positive_85.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in NEWS file +--- + was GPLv2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_85.yml b/src/licensedcode/data/rules/false-positive_85.yml deleted file mode 100644 index 7b10b608b55..00000000000 --- a/src/licensedcode/data/rules/false-positive_85.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in NEWS file diff --git a/src/licensedcode/data/rules/false-positive_86.RULE b/src/licensedcode/data/rules/false-positive_86.RULE index cb673cbad31..015ea297f98 100644 --- a/src/licensedcode/data/rules/false-positive_86.RULE +++ b/src/licensedcode/data/rules/false-positive_86.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: gibberish, not a license +--- + validate-npm-package-license": "^3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_86.yml b/src/licensedcode/data/rules/false-positive_86.yml deleted file mode 100644 index df4177598e7..00000000000 --- a/src/licensedcode/data/rules/false-positive_86.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: gibberish, not a license diff --git a/src/licensedcode/data/rules/false-positive_87.RULE b/src/licensedcode/data/rules/false-positive_87.RULE index 2f2d5592fe0..56d0baa8e4b 100644 --- a/src/licensedcode/data/rules/false-positive_87.RULE +++ b/src/licensedcode/data/rules/false-positive_87.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this shows in some license texts but alone is not a detected license clue +--- + to be covered by \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_87.yml b/src/licensedcode/data/rules/false-positive_87.yml deleted file mode 100644 index 5c9cf80da0f..00000000000 --- a/src/licensedcode/data/rules/false-positive_87.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this shows in some license texts but alone is not a detected license clue diff --git a/src/licensedcode/data/rules/false-positive_88.RULE b/src/licensedcode/data/rules/false-positive_88.RULE index 76e66b0a500..94add10baa9 100644 --- a/src/licensedcode/data/rules/false-positive_88.RULE +++ b/src/licensedcode/data/rules/false-positive_88.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Kata containers +--- + This SPDX licence identifier requirement \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_88.yml b/src/licensedcode/data/rules/false-positive_88.yml deleted file mode 100644 index 8a2a35312c5..00000000000 --- a/src/licensedcode/data/rules/false-positive_88.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Kata containers diff --git a/src/licensedcode/data/rules/false-positive_89.RULE b/src/licensedcode/data/rules/false-positive_89.RULE index 4308f834190..aff7613effa 100644 --- a/src/licensedcode/data/rules/false-positive_89.RULE +++ b/src/licensedcode/data/rules/false-positive_89.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variables named after licenses +--- + VALA_PROJECT_LICENSE_GPL2, GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_89.yml b/src/licensedcode/data/rules/false-positive_89.yml deleted file mode 100644 index cc491c76e8d..00000000000 --- a/src/licensedcode/data/rules/false-positive_89.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variables named after licenses diff --git a/src/licensedcode/data/rules/false-positive_9.RULE b/src/licensedcode/data/rules/false-positive_9.RULE index 1786260355a..eab1dd4b580 100644 --- a/src/licensedcode/data/rules/false-positive_9.RULE +++ b/src/licensedcode/data/rules/false-positive_9.RULE @@ -1 +1,6 @@ -define PLUGIN_LICENSE_GPL_STRING "GPL" +--- +is_false_positive: yes +notes: Found in MySQL and MariaDB to document plugin licenses +--- + +define PLUGIN_LICENSE_GPL_STRING "GPL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_9.yml b/src/licensedcode/data/rules/false-positive_9.yml deleted file mode 100644 index 2bbe8c8eef5..00000000000 --- a/src/licensedcode/data/rules/false-positive_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in MySQL and MariaDB to document plugin licenses diff --git a/src/licensedcode/data/rules/false-positive_90.RULE b/src/licensedcode/data/rules/false-positive_90.RULE index cd7405164a0..bfa0086b61c 100644 --- a/src/licensedcode/data/rules/false-positive_90.RULE +++ b/src/licensedcode/data/rules/false-positive_90.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + SPDX" "-License-Identifier:[ ]+(.*?)" + _END_PATTERN \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_90.yml b/src/licensedcode/data/rules/false-positive_90.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_90.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_9000.RULE b/src/licensedcode/data/rules/false-positive_9000.RULE index 8be374f4a82..6a55a6ff21a 100644 --- a/src/licensedcode/data/rules/false-positive_9000.RULE +++ b/src/licensedcode/data/rules/false-positive_9000.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: comment about a license +--- + this becomes functionally equivalent to MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_9000.yml b/src/licensedcode/data/rules/false-positive_9000.yml deleted file mode 100644 index 7204c4eb344..00000000000 --- a/src/licensedcode/data/rules/false-positive_9000.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comment about a license diff --git a/src/licensedcode/data/rules/false-positive_91.RULE b/src/licensedcode/data/rules/false-positive_91.RULE index b8095f0844e..b22f841ac13 100644 --- a/src/licensedcode/data/rules/false-positive_91.RULE +++ b/src/licensedcode/data/rules/false-positive_91.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license tag +--- + GPL4_1111 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_91.yml b/src/licensedcode/data/rules/false-positive_91.yml deleted file mode 100644 index 9b036f26627..00000000000 --- a/src/licensedcode/data/rules/false-positive_91.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license tag diff --git a/src/licensedcode/data/rules/false-positive_92.RULE b/src/licensedcode/data/rules/false-positive_92.RULE index 5bec38e98c7..1b39a68de6d 100644 --- a/src/licensedcode/data/rules/false-positive_92.RULE +++ b/src/licensedcode/data/rules/false-positive_92.RULE @@ -1 +1,6 @@ -palette_file.gpl +--- +is_false_positive: yes +notes: not about the GPL +--- + +palette_file.gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_92.yml b/src/licensedcode/data/rules/false-positive_92.yml deleted file mode 100644 index 5495225e635..00000000000 --- a/src/licensedcode/data/rules/false-positive_92.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not about the GPL diff --git a/src/licensedcode/data/rules/false-positive_93.RULE b/src/licensedcode/data/rules/false-positive_93.RULE index 62b42a36b0b..ee759cf2648 100644 --- a/src/licensedcode/data/rules/false-positive_93.RULE +++ b/src/licensedcode/data/rules/false-positive_93.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: used in linux, GPIOlib support +--- + .ngpio = S5PC100_GPIO_L1_NR, .label = "GPL1", \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_93.yml b/src/licensedcode/data/rules/false-positive_93.yml deleted file mode 100644 index 0e1da3afa47..00000000000 --- a/src/licensedcode/data/rules/false-positive_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: used in linux, GPIOlib support diff --git a/src/licensedcode/data/rules/false-positive_94.RULE b/src/licensedcode/data/rules/false-positive_94.RULE index 4c03fef3e93..573d1a8e06f 100644 --- a/src/licensedcode/data/rules/false-positive_94.RULE +++ b/src/licensedcode/data/rules/false-positive_94.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + General Purpose Log (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_94.yml b/src/licensedcode/data/rules/false-positive_94.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_94.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_95.RULE b/src/licensedcode/data/rules/false-positive_95.RULE index 852d00e8b93..76a97a11ebc 100644 --- a/src/licensedcode/data/rules/false-positive_95.RULE +++ b/src/licensedcode/data/rules/false-positive_95.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + path is {{licensed under identifier}}, but its license file could not be " \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_95.yml b/src/licensedcode/data/rules/false-positive_95.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_95.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_96.RULE b/src/licensedcode/data/rules/false-positive_96.RULE index ca8419cbfa8..0741f65e383 100644 --- a/src/licensedcode/data/rules/false-positive_96.RULE +++ b/src/licensedcode/data/rules/false-positive_96.RULE @@ -1 +1,6 @@ -GPL_B 3 +--- +is_false_positive: yes +notes: symbols +--- + +GPL_B 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_96.yml b/src/licensedcode/data/rules/false-positive_96.yml deleted file mode 100644 index afc7af743fd..00000000000 --- a/src/licensedcode/data/rules/false-positive_96.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: symbols diff --git a/src/licensedcode/data/rules/false-positive_97.RULE b/src/licensedcode/data/rules/false-positive_97.RULE index 047b8d44f4a..028d571ee26 100644 --- a/src/licensedcode/data/rules/false-positive_97.RULE +++ b/src/licensedcode/data/rules/false-positive_97.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in smartmontools +--- + if (!gpl) { // SMART Log \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_97.yml b/src/licensedcode/data/rules/false-positive_97.yml deleted file mode 100644 index 2d630317344..00000000000 --- a/src/licensedcode/data/rules/false-positive_97.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in smartmontools diff --git a/src/licensedcode/data/rules/false-positive_98.RULE b/src/licensedcode/data/rules/false-positive_98.RULE index 390dd109792..40a2d83efb3 100644 --- a/src/licensedcode/data/rules/false-positive_98.RULE +++ b/src/licensedcode/data/rules/false-positive_98.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in FSFE's reuse +--- + echo "SPDX-License-Identifier: MIT" > file \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_98.yml b/src/licensedcode/data/rules/false-positive_98.yml deleted file mode 100644 index b9d72f410e2..00000000000 --- a/src/licensedcode/data/rules/false-positive_98.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in FSFE's reuse diff --git a/src/licensedcode/data/rules/false-positive_99.RULE b/src/licensedcode/data/rules/false-positive_99.RULE index 76a689d6b27..d954aff21b7 100644 --- a/src/licensedcode/data/rules/false-positive_99.RULE +++ b/src/licensedcode/data/rules/false-positive_99.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is not a license notice, just some comment +--- + added actual text version of GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_99.yml b/src/licensedcode/data/rules/false-positive_99.yml deleted file mode 100644 index 647cc79c44a..00000000000 --- a/src/licensedcode/data/rules/false-positive_99.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is not a license notice, just some comment diff --git a/src/licensedcode/data/rules/false-positive_ansible_1.RULE b/src/licensedcode/data/rules/false-positive_ansible_1.RULE index 607f09c722a..da0c47c106e 100644 --- a/src/licensedcode/data/rules/false-positive_ansible_1.RULE +++ b/src/licensedcode/data/rules/false-positive_ansible_1.RULE @@ -1,7 +1,12 @@ +--- +is_false_positive: yes +notes: found in Ansible galaxy templates +--- + # Some suggested licenses: # - BSD (default) # - MIT # - GPLv2 # - GPLv3 # - Apache - # - CC-BY + # - CC-BY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ansible_1.yml b/src/licensedcode/data/rules/false-positive_ansible_1.yml deleted file mode 100644 index 91bf4da0ab9..00000000000 --- a/src/licensedcode/data/rules/false-positive_ansible_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in Ansible galaxy templates diff --git a/src/licensedcode/data/rules/false-positive_ansible_2.RULE b/src/licensedcode/data/rules/false-positive_ansible_2.RULE index cb4c996eb75..4a51ce71fa8 100644 --- a/src/licensedcode/data/rules/false-positive_ansible_2.RULE +++ b/src/licensedcode/data/rules/false-positive_ansible_2.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: found in Ansible galaxy templates +--- + # Some suggested licenses: # - BSD (default) # - MIT @@ -5,4 +10,4 @@ # - GPLv3 # - Apache # - CC-BY -license: license +license: license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ansible_2.yml b/src/licensedcode/data/rules/false-positive_ansible_2.yml deleted file mode 100644 index 91bf4da0ab9..00000000000 --- a/src/licensedcode/data/rules/false-positive_ansible_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in Ansible galaxy templates diff --git a/src/licensedcode/data/rules/false-positive_apache-1._1.RULE b/src/licensedcode/data/rules/false-positive_apache-1._1.RULE index 471b3d8ee4f..07bb0d1fb5f 100644 --- a/src/licensedcode/data/rules/false-positive_apache-1._1.RULE +++ b/src/licensedcode/data/rules/false-positive_apache-1._1.RULE @@ -1 +1,7 @@ -nowhere.com Apache-1.1 +--- +is_false_positive: yes +notes: the presence of Apache 1.1 here is reference to an old version of Apache HTTPD 1.1 and + not the Apache 1.1 license. +--- + +nowhere.com Apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_apache-1._1.yml b/src/licensedcode/data/rules/false-positive_apache-1._1.yml deleted file mode 100644 index 53f97ad956d..00000000000 --- a/src/licensedcode/data/rules/false-positive_apache-1._1.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: the presence of Apache 1.1 here is reference to an old version of Apache HTTPD 1.1 and - not the Apache 1.1 license. diff --git a/src/licensedcode/data/rules/false-positive_apache-2.0_1.RULE b/src/licensedcode/data/rules/false-positive_apache-2.0_1.RULE index 6cbc082752a..90ac142d5aa 100644 --- a/src/licensedcode/data/rules/false-positive_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/false-positive_apache-2.0_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: A mention of a license and not a license +--- + e.g. 'Apache Version 2.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_apache-2.0_1.yml b/src/licensedcode/data/rules/false-positive_apache-2.0_1.yml deleted file mode 100644 index 9703e1b28b7..00000000000 --- a/src/licensedcode/data/rules/false-positive_apache-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A mention of a license and not a license diff --git a/src/licensedcode/data/rules/false-positive_boost_1.RULE b/src/licensedcode/data/rules/false-positive_boost_1.RULE index 4498867e8ca..c981954e5ee 100644 --- a/src/licensedcode/data/rules/false-positive_boost_1.RULE +++ b/src/licensedcode/data/rules/false-positive_boost_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license mention, seen in boost +--- + mpl::int_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_boost_1.yml b/src/licensedcode/data/rules/false-positive_boost_1.yml deleted file mode 100644 index a570265fae0..00000000000 --- a/src/licensedcode/data/rules/false-positive_boost_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license mention, seen in boost diff --git a/src/licensedcode/data/rules/false-positive_boost_2.RULE b/src/licensedcode/data/rules/false-positive_boost_2.RULE index 76b2e800439..ea5c2f73819 100644 --- a/src/licensedcode/data/rules/false-positive_boost_2.RULE +++ b/src/licensedcode/data/rules/false-positive_boost_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in boost +--- + V mpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_boost_2.yml b/src/licensedcode/data/rules/false-positive_boost_2.yml deleted file mode 100644 index bf82c489589..00000000000 --- a/src/licensedcode/data/rules/false-positive_boost_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in boost diff --git a/src/licensedcode/data/rules/false-positive_bsd-2-clause-freebsd_1.RULE b/src/licensedcode/data/rules/false-positive_bsd-2-clause-freebsd_1.RULE index d529719774e..65f35eb727a 100644 --- a/src/licensedcode/data/rules/false-positive_bsd-2-clause-freebsd_1.RULE +++ b/src/licensedcode/data/rules/false-positive_bsd-2-clause-freebsd_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: some GCC mention that conflicts with a rule. +--- + FreeBSD using the ELF format Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_bsd-2-clause-freebsd_1.yml b/src/licensedcode/data/rules/false-positive_bsd-2-clause-freebsd_1.yml deleted file mode 100644 index cf684207802..00000000000 --- a/src/licensedcode/data/rules/false-positive_bsd-2-clause-freebsd_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: some GCC mention that conflicts with a rule. diff --git a/src/licensedcode/data/rules/false-positive_bsd_1.RULE b/src/licensedcode/data/rules/false-positive_bsd_1.RULE index fbdd5483cf3..88bffd4b10f 100644 --- a/src/licensedcode/data/rules/false-positive_bsd_1.RULE +++ b/src/licensedcode/data/rules/false-positive_bsd_1.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: This is a variable declaration in Visual Basic, not a license statement Public DOMAIN + here is a VB variable +--- + convex-bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_bsd_1.yml b/src/licensedcode/data/rules/false-positive_bsd_1.yml deleted file mode 100644 index 6fbe2ff70b9..00000000000 --- a/src/licensedcode/data/rules/false-positive_bsd_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: This is a variable declaration in Visual Basic, not a license statement Public DOMAIN - here is a VB variable diff --git a/src/licensedcode/data/rules/false-positive_bsd_2.RULE b/src/licensedcode/data/rules/false-positive_bsd_2.RULE index ae19f07acd8..6bfc365a903 100644 --- a/src/licensedcode/data/rules/false-positive_bsd_2.RULE +++ b/src/licensedcode/data/rules/false-positive_bsd_2.RULE @@ -1,2 +1,6 @@ - BSD style FPE +--- +is_false_positive: yes +notes: BSD style refers to BSD Unix style here, not the license +--- + BSD style FPE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_bsd_2.yml b/src/licensedcode/data/rules/false-positive_bsd_2.yml deleted file mode 100644 index e35e6371551..00000000000 --- a/src/licensedcode/data/rules/false-positive_bsd_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: BSD style refers to BSD Unix style here, not the license diff --git a/src/licensedcode/data/rules/false-positive_busybox_1.RULE b/src/licensedcode/data/rules/false-positive_busybox_1.RULE index 62a5f4d056d..d8093365826 100644 --- a/src/licensedcode/data/rules/false-positive_busybox_1.RULE +++ b/src/licensedcode/data/rules/false-positive_busybox_1.RULE @@ -1 +1,6 @@ -libbusybox is GPL, not LGPL, and exports no stable API that might act as a copyright barrier. +--- +is_false_positive: yes +notes: Busybox license-related comment, but not a license per se. +--- + +libbusybox is GPL, not LGPL, and exports no stable API that might act as a copyright barrier. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_busybox_1.yml b/src/licensedcode/data/rules/false-positive_busybox_1.yml deleted file mode 100644 index 05015eb429c..00000000000 --- a/src/licensedcode/data/rules/false-positive_busybox_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Busybox license-related comment, but not a license per se. diff --git a/src/licensedcode/data/rules/false-positive_busybox_2.RULE b/src/licensedcode/data/rules/false-positive_busybox_2.RULE index dba001802c2..200175c461f 100644 --- a/src/licensedcode/data/rules/false-positive_busybox_2.RULE +++ b/src/licensedcode/data/rules/false-positive_busybox_2.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: "In busybox-1.17.4/modutils/depmod.c (line 71 in the file) \nan incorrect license detection\ + \ of GPL 3.0 was made for this line\n if (strncmp(ptr, \"gpl\", 3) == 0" +--- + ptr, "gpl", 3) == 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_busybox_2.yml b/src/licensedcode/data/rules/false-positive_busybox_2.yml deleted file mode 100644 index 6264a68b5aa..00000000000 --- a/src/licensedcode/data/rules/false-positive_busybox_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: "In busybox-1.17.4/modutils/depmod.c (line 71 in the file) \nan incorrect license detection\ - \ of GPL 3.0 was made for this line\n if (strncmp(ptr, \"gpl\", 3) == 0" diff --git a/src/licensedcode/data/rules/false-positive_cc-by-3.0_1.RULE b/src/licensedcode/data/rules/false-positive_cc-by-3.0_1.RULE index b4ca1c18cf3..0a1ef79012b 100644 --- a/src/licensedcode/data/rules/false-positive_cc-by-3.0_1.RULE +++ b/src/licensedcode/data/rules/false-positive_cc-by-3.0_1.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: comments about licenses, not a license +--- + Using Creative Commons Public Licenses Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share diff --git a/src/licensedcode/data/rules/false-positive_cc-by-3.0_1.yml b/src/licensedcode/data/rules/false-positive_cc-by-3.0_1.yml deleted file mode 100644 index a06887943c8..00000000000 --- a/src/licensedcode/data/rules/false-positive_cc-by-3.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: comments about licenses, not a license diff --git a/src/licensedcode/data/rules/false-positive_clish_1.RULE b/src/licensedcode/data/rules/false-positive_clish_1.RULE index 7bbd420ecd6..20a23f76efb 100644 --- a/src/licensedcode/data/rules/false-positive_clish_1.RULE +++ b/src/licensedcode/data/rules/false-positive_clish_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license mention +--- + configured at build time without GPL support \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_clish_1.yml b/src/licensedcode/data/rules/false-positive_clish_1.yml deleted file mode 100644 index cb8a0ea9d60..00000000000 --- a/src/licensedcode/data/rules/false-positive_clish_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license mention diff --git a/src/licensedcode/data/rules/false-positive_copying_files_1.RULE b/src/licensedcode/data/rules/false-positive_copying_files_1.RULE index ff597607186..4baf92416fe 100644 --- a/src/licensedcode/data/rules/false-positive_copying_files_1.RULE +++ b/src/licensedcode/data/rules/false-positive_copying_files_1.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: a simple mention of COPYING files alone is not enough of a proof of license. It may still + be detected elsewhere as a bare LGPL or GPL mention though. +--- + COPYING.GPL \ COPYING.LGPL \ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_copying_files_1.yml b/src/licensedcode/data/rules/false-positive_copying_files_1.yml deleted file mode 100644 index 21b855de737..00000000000 --- a/src/licensedcode/data/rules/false-positive_copying_files_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: a simple mention of COPYING files alone is not enough of a proof of license. It may still - be detected elsewhere as a bare LGPL or GPL mention though. diff --git a/src/licensedcode/data/rules/false-positive_copying_files_2.RULE b/src/licensedcode/data/rules/false-positive_copying_files_2.RULE index 4ceb5059178..d2ad732b769 100644 --- a/src/licensedcode/data/rules/false-positive_copying_files_2.RULE +++ b/src/licensedcode/data/rules/false-positive_copying_files_2.RULE @@ -1 +1,6 @@ - sntp/libopts/COPYING.mbsd +--- +is_false_positive: yes +notes: Seen in ntp commit log +--- + + sntp/libopts/COPYING.mbsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_copying_files_2.yml b/src/licensedcode/data/rules/false-positive_copying_files_2.yml deleted file mode 100644 index a713d24912e..00000000000 --- a/src/licensedcode/data/rules/false-positive_copying_files_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in ntp commit log diff --git a/src/licensedcode/data/rules/false-positive_copying_files_3.RULE b/src/licensedcode/data/rules/false-positive_copying_files_3.RULE index 9e151f30a52..1845b13a6b3 100644 --- a/src/licensedcode/data/rules/false-positive_copying_files_3.RULE +++ b/src/licensedcode/data/rules/false-positive_copying_files_3.RULE @@ -1 +1,6 @@ - sntp/libopts/COPYING.lgplv3 +--- +is_false_positive: yes +notes: Seen in ntp commit log +--- + + sntp/libopts/COPYING.lgplv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_copying_files_3.yml b/src/licensedcode/data/rules/false-positive_copying_files_3.yml deleted file mode 100644 index a713d24912e..00000000000 --- a/src/licensedcode/data/rules/false-positive_copying_files_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in ntp commit log diff --git a/src/licensedcode/data/rules/false-positive_copying_files_4.RULE b/src/licensedcode/data/rules/false-positive_copying_files_4.RULE index e379e296199..edc9178b18c 100644 --- a/src/licensedcode/data/rules/false-positive_copying_files_4.RULE +++ b/src/licensedcode/data/rules/false-positive_copying_files_4.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: a simple mention of COPYING files alone is not enough of a proof of license. It may still + be detected elsewhere as a bare LGPL or GPL mention though. +--- + EXTRA_DIST += \ - COPYING.gplv3 COPYING.lgplv3 COPYING.mbsd + COPYING.gplv3 COPYING.lgplv3 COPYING.mbsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_copying_files_4.yml b/src/licensedcode/data/rules/false-positive_copying_files_4.yml deleted file mode 100644 index 21b855de737..00000000000 --- a/src/licensedcode/data/rules/false-positive_copying_files_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: a simple mention of COPYING files alone is not enough of a proof of license. It may still - be detected elsewhere as a bare LGPL or GPL mention though. diff --git a/src/licensedcode/data/rules/false-positive_copying_files_5.RULE b/src/licensedcode/data/rules/false-positive_copying_files_5.RULE index 5689a459c85..1f0a05ba028 100644 --- a/src/licensedcode/data/rules/false-positive_copying_files_5.RULE +++ b/src/licensedcode/data/rules/false-positive_copying_files_5.RULE @@ -1 +1,6 @@ - sntp/libopts/COPYING.gplv3 +--- +is_false_positive: yes +notes: Seen in ntp commit log +--- + + sntp/libopts/COPYING.gplv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_copying_files_5.yml b/src/licensedcode/data/rules/false-positive_copying_files_5.yml deleted file mode 100644 index a713d24912e..00000000000 --- a/src/licensedcode/data/rules/false-positive_copying_files_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in ntp commit log diff --git a/src/licensedcode/data/rules/false-positive_credits_1.RULE b/src/licensedcode/data/rules/false-positive_credits_1.RULE index c9f1366245a..e1880c89e67 100644 --- a/src/licensedcode/data/rules/false-positive_credits_1.RULE +++ b/src/licensedcode/data/rules/false-positive_credits_1.RULE @@ -1 +1,6 @@ -Initial GPL'd Frame Relay driver +--- +is_false_positive: yes +notes: found in Linux CREDITS +--- + +Initial GPL'd Frame Relay driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_credits_1.yml b/src/licensedcode/data/rules/false-positive_credits_1.yml deleted file mode 100644 index 6811226f187..00000000000 --- a/src/licensedcode/data/rules/false-positive_credits_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in Linux CREDITS diff --git a/src/licensedcode/data/rules/false-positive_dmalloc_1.RULE b/src/licensedcode/data/rules/false-positive_dmalloc_1.RULE index 0530b01adc7..1f0bed88c8b 100644 --- a/src/licensedcode/data/rules/false-positive_dmalloc_1.RULE +++ b/src/licensedcode/data/rules/false-positive_dmalloc_1.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: Seen in config files for Busybox +--- + This enables compiling with dmalloc ( http://dmalloc.com/ ) which is an excellent public domain mem leak and malloc problem -detector. +detector. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_dmalloc_1.yml b/src/licensedcode/data/rules/false-positive_dmalloc_1.yml deleted file mode 100644 index afe9eae5b34..00000000000 --- a/src/licensedcode/data/rules/false-positive_dmalloc_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in config files for Busybox diff --git a/src/licensedcode/data/rules/false-positive_ecos_1.RULE b/src/licensedcode/data/rules/false-positive_ecos_1.RULE index 1011ddedcbe..16d7f1acc78 100644 --- a/src/licensedcode/data/rules/false-positive_ecos_1.RULE +++ b/src/licensedcode/data/rules/false-positive_ecos_1.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Found in eCOs +--- + You do not have to distribute any code under the terms of the GPL other \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ecos_1.yml b/src/licensedcode/data/rules/false-positive_ecos_1.yml deleted file mode 100644 index 587b60b6f0e..00000000000 --- a/src/licensedcode/data/rules/false-positive_ecos_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in eCOs diff --git a/src/licensedcode/data/rules/false-positive_ecos_2.RULE b/src/licensedcode/data/rules/false-positive_ecos_2.RULE index fd5f3eec167..9829b315dde 100644 --- a/src/licensedcode/data/rules/false-positive_ecos_2.RULE +++ b/src/licensedcode/data/rules/false-positive_ecos_2.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: Found in eCOs +--- + source code which was licensed under the RHEPL is not affected by the switch to the modified GPL for later revisions \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ecos_2.yml b/src/licensedcode/data/rules/false-positive_ecos_2.yml deleted file mode 100644 index 587b60b6f0e..00000000000 --- a/src/licensedcode/data/rules/false-positive_ecos_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in eCOs diff --git a/src/licensedcode/data/rules/false-positive_ecos_3.RULE b/src/licensedcode/data/rules/false-positive_ecos_3.RULE index 935f2433044..51786c6eb12 100644 --- a/src/licensedcode/data/rules/false-positive_ecos_3.RULE +++ b/src/licensedcode/data/rules/false-positive_ecos_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Found in eCOs +--- + Tools based on GPL'd configuration library (only tested \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ecos_3.yml b/src/licensedcode/data/rules/false-positive_ecos_3.yml deleted file mode 100644 index 587b60b6f0e..00000000000 --- a/src/licensedcode/data/rules/false-positive_ecos_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in eCOs diff --git a/src/licensedcode/data/rules/false-positive_ecos_4.RULE b/src/licensedcode/data/rules/false-positive_ecos_4.RULE index f57708cbdea..15fafbc97fc 100644 --- a/src/licensedcode/data/rules/false-positive_ecos_4.RULE +++ b/src/licensedcode/data/rules/false-positive_ecos_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Found in eCOs +--- + and was therefore incompatible with code licensed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ecos_4.yml b/src/licensedcode/data/rules/false-positive_ecos_4.yml deleted file mode 100644 index 587b60b6f0e..00000000000 --- a/src/licensedcode/data/rules/false-positive_ecos_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in eCOs diff --git a/src/licensedcode/data/rules/false-positive_ecos_5.RULE b/src/licensedcode/data/rules/false-positive_ecos_5.RULE index bbfcc35876c..d52196eb3e6 100644 --- a/src/licensedcode/data/rules/false-positive_ecos_5.RULE +++ b/src/licensedcode/data/rules/false-positive_ecos_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Found in eCOs +--- + Doubly linked list implementation to replace the GPL'd one used in the Linux kernel. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ecos_5.yml b/src/licensedcode/data/rules/false-positive_ecos_5.yml deleted file mode 100644 index 587b60b6f0e..00000000000 --- a/src/licensedcode/data/rules/false-positive_ecos_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in eCOs diff --git a/src/licensedcode/data/rules/false-positive_ecos_6.RULE b/src/licensedcode/data/rules/false-positive_ecos_6.RULE index c00f4f65b68..f4e9b70ad9c 100644 --- a/src/licensedcode/data/rules/false-positive_ecos_6.RULE +++ b/src/licensedcode/data/rules/false-positive_ecos_6.RULE @@ -1 +1,6 @@ -Isn't the GPL "viral +--- +is_false_positive: yes +notes: Found in eCOs +--- + +Isn't the GPL "viral \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ecos_6.yml b/src/licensedcode/data/rules/false-positive_ecos_6.yml deleted file mode 100644 index 587b60b6f0e..00000000000 --- a/src/licensedcode/data/rules/false-positive_ecos_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in eCOs diff --git a/src/licensedcode/data/rules/false-positive_ecos_7.RULE b/src/licensedcode/data/rules/false-positive_ecos_7.RULE index 84f1f15e0c7..e9ec43a4dcb 100644 --- a/src/licensedcode/data/rules/false-positive_ecos_7.RULE +++ b/src/licensedcode/data/rules/false-positive_ecos_7.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: Found in eCOs +--- + you must make the source code to eCos -available under the terms of the GPL. +available under the terms of the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ecos_7.yml b/src/licensedcode/data/rules/false-positive_ecos_7.yml deleted file mode 100644 index 587b60b6f0e..00000000000 --- a/src/licensedcode/data/rules/false-positive_ecos_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in eCOs diff --git a/src/licensedcode/data/rules/false-positive_eigen_1.RULE b/src/licensedcode/data/rules/false-positive_eigen_1.RULE index a34b197087e..7db268260a8 100644 --- a/src/licensedcode/data/rules/false-positive_eigen_1.RULE +++ b/src/licensedcode/data/rules/false-positive_eigen_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: A comment about another pckage license in eigen +--- + module has nothing to offer in MPL2 only mode \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_eigen_1.yml b/src/licensedcode/data/rules/false-positive_eigen_1.yml deleted file mode 100644 index e8914e91d9e..00000000000 --- a/src/licensedcode/data/rules/false-positive_eigen_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A comment about another pckage license in eigen diff --git a/src/licensedcode/data/rules/false-positive_eigen_2.RULE b/src/licensedcode/data/rules/false-positive_eigen_2.RULE index 53e9d476100..4ff3775dc9e 100644 --- a/src/licensedcode/data/rules/false-positive_eigen_2.RULE +++ b/src/licensedcode/data/rules/false-positive_eigen_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: A comment about another pckage license in eigen +--- + Including non-MPL2 code in EIGEN_MPL2_ONLY mode \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_eigen_2.yml b/src/licensedcode/data/rules/false-positive_eigen_2.yml deleted file mode 100644 index e8914e91d9e..00000000000 --- a/src/licensedcode/data/rules/false-positive_eigen_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A comment about another pckage license in eigen diff --git a/src/licensedcode/data/rules/false-positive_eigen_3.RULE b/src/licensedcode/data/rules/false-positive_eigen_3.RULE index 0fceb87b94e..9cb2820747c 100644 --- a/src/licensedcode/data/rules/false-positive_eigen_3.RULE +++ b/src/licensedcode/data/rules/false-positive_eigen_3.RULE @@ -1 +1,6 @@ -fastest, commercial -- may be incompatible with Eigen in GPL form +--- +is_false_positive: yes +notes: A comment about another pckage license in eigen +--- + +fastest, commercial -- may be incompatible with Eigen in GPL form \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_eigen_3.yml b/src/licensedcode/data/rules/false-positive_eigen_3.yml deleted file mode 100644 index e8914e91d9e..00000000000 --- a/src/licensedcode/data/rules/false-positive_eigen_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A comment about another pckage license in eigen diff --git a/src/licensedcode/data/rules/false-positive_eigen_4.RULE b/src/licensedcode/data/rules/false-positive_eigen_4.RULE index 34ae8780ee6..f6266cbba47 100644 --- a/src/licensedcode/data/rules/false-positive_eigen_4.RULE +++ b/src/licensedcode/data/rules/false-positive_eigen_4.RULE @@ -1 +1,6 @@ -faster, GPL -- incompatible with Eigen in LGPL form, bigger code size. +--- +is_false_positive: yes +notes: A comment about another pckage license in eigen +--- + +faster, GPL -- incompatible with Eigen in LGPL form, bigger code size. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_eigen_4.yml b/src/licensedcode/data/rules/false-positive_eigen_4.yml deleted file mode 100644 index e8914e91d9e..00000000000 --- a/src/licensedcode/data/rules/false-positive_eigen_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A comment about another pckage license in eigen diff --git a/src/licensedcode/data/rules/false-positive_eigen_5.RULE b/src/licensedcode/data/rules/false-positive_eigen_5.RULE index e540a5269d0..017e33c79f1 100644 --- a/src/licensedcode/data/rules/false-positive_eigen_5.RULE +++ b/src/licensedcode/data/rules/false-positive_eigen_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: A comment about another pckage license in eigen +--- + ifdef EIGEN_MPL2_ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_eigen_5.yml b/src/licensedcode/data/rules/false-positive_eigen_5.yml deleted file mode 100644 index e8914e91d9e..00000000000 --- a/src/licensedcode/data/rules/false-positive_eigen_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: A comment about another pckage license in eigen diff --git a/src/licensedcode/data/rules/false-positive_gif_1.RULE b/src/licensedcode/data/rules/false-positive_gif_1.RULE index 4e485d29f7b..c46eae1dddb 100644 --- a/src/licensedcode/data/rules/false-positive_gif_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gif_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Old Gif mention +--- + "The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gif_1.yml b/src/licensedcode/data/rules/false-positive_gif_1.yml deleted file mode 100644 index e18fec58ebc..00000000000 --- a/src/licensedcode/data/rules/false-positive_gif_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Old Gif mention diff --git a/src/licensedcode/data/rules/false-positive_gif_2.RULE b/src/licensedcode/data/rules/false-positive_gif_2.RULE index 423a8f87780..605946c2416 100644 --- a/src/licensedcode/data/rules/false-positive_gif_2.RULE +++ b/src/licensedcode/data/rules/false-positive_gif_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Old Gif mention +--- + "The Graphics Interchange Format is the Copyright property of CompuServe Incorporated \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gif_2.yml b/src/licensedcode/data/rules/false-positive_gif_2.yml deleted file mode 100644 index e18fec58ebc..00000000000 --- a/src/licensedcode/data/rules/false-positive_gif_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Old Gif mention diff --git a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_1.RULE index 24a436866b9..327f3ed8b5a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + u gPl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_1.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_2.RULE index ee927a41d67..adc0b502b5a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a comment about not using the GPL +--- + does not use the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_2.yml deleted file mode 100644 index 0874d88a8fc..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a comment about not using the GPL diff --git a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_and_artistic-1.0_1.RULE b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_and_artistic-1.0_1.RULE index 6fed08fbfdd..7de1a5be6ff 100644 --- a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_and_artistic-1.0_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_and_artistic-1.0_1.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: Found in Debian docs +--- + This package was first put together by Bruce Perens , from his own sources. diff --git a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_and_artistic-1.0_1.yml b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_and_artistic-1.0_1.yml deleted file mode 100644 index 4b5920f0dd5..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_and_artistic-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in Debian docs diff --git a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_historical_note_1.RULE b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_historical_note_1.RULE index dd22309bb08..7a33c142fcd 100644 --- a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_historical_note_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_historical_note_1.RULE @@ -1 +1,8 @@ -was originally licensed under the GPL until +--- +is_false_positive: yes +notes: | + Historical note about former GPL licensing. + See https://github.com/gettalong/kramdown/blob/179b81dcf057f8079fd9df5296ba858114d30f7a/README.md +--- + +was originally licensed under the GPL until \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_historical_note_1.yml b/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_historical_note_1.yml deleted file mode 100644 index 9f8ab6cd916..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl-1.0-plus_historical_note_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -is_false_positive: yes -notes: | - Historical note about former GPL licensing. - See https://github.com/gettalong/kramdown/blob/179b81dcf057f8079fd9df5296ba858114d30f7a/README.md diff --git a/src/licensedcode/data/rules/false-positive_gpl-2._1.RULE b/src/licensedcode/data/rules/false-positive_gpl-2._1.RULE index 69eff6b8354..5ee740071be 100644 --- a/src/licensedcode/data/rules/false-positive_gpl-2._1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl-2._1.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: only a comment of a license-related feature switch +--- + This feature can be turned off if linking with GPL code -is problematic, using "configure --without-gpl". +is problematic, using "configure --without-gpl". \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl-2._1.yml b/src/licensedcode/data/rules/false-positive_gpl-2._1.yml deleted file mode 100644 index 71bbdf8d635..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl-2._1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: only a comment of a license-related feature switch diff --git a/src/licensedcode/data/rules/false-positive_gpl-mention-in-doc_1.RULE b/src/licensedcode/data/rules/false-positive_gpl-mention-in-doc_1.RULE index b93caf1fdba..efee55df067 100644 --- a/src/licensedcode/data/rules/false-positive_gpl-mention-in-doc_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl-mention-in-doc_1.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: found in https://raw.githubusercontent.com/SFTtech/openage/master/copying.md +--- + The "license" line is required only if the file is not licensed as -"GPLv3 or higher". +"GPLv3 or higher". \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl-mention-in-doc_1.yml b/src/licensedcode/data/rules/false-positive_gpl-mention-in-doc_1.yml deleted file mode 100644 index 7d1ca2d5d5f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl-mention-in-doc_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in https://raw.githubusercontent.com/SFTtech/openage/master/copying.md diff --git a/src/licensedcode/data/rules/false-positive_gpl_1.RULE b/src/licensedcode/data/rules/false-positive_gpl_1.RULE index 18b8e2f23a3..f6a92652b0e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: bzip2 comment on memtest usage +--- + At the time of writing it is free (GPLd). \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_1.yml b/src/licensedcode/data/rules/false-positive_gpl_1.yml deleted file mode 100644 index 6fb0bfa8aee..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: bzip2 comment on memtest usage diff --git a/src/licensedcode/data/rules/false-positive_gpl_file_include_1.RULE b/src/licensedcode/data/rules/false-positive_gpl_file_include_1.RULE index cc96c62ba23..256bc80f1bf 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_file_include_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_file_include_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a mere file name +--- + BOS_GPL_LIST_H \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_file_include_1.yml b/src/licensedcode/data/rules/false-positive_gpl_file_include_1.yml deleted file mode 100644 index 63a11b64592..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_file_include_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a mere file name diff --git a/src/licensedcode/data/rules/false-positive_gpl_file_name_1.RULE b/src/licensedcode/data/rules/false-positive_gpl_file_name_1.RULE index 11e18c9278f..b59f21af102 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_file_name_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_file_name_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a mere file name +--- + license made GPL, docstring \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_file_name_1.yml b/src/licensedcode/data/rules/false-positive_gpl_file_name_1.yml deleted file mode 100644 index 63a11b64592..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_file_name_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a mere file name diff --git a/src/licensedcode/data/rules/false-positive_gpl_file_name_2.RULE b/src/licensedcode/data/rules/false-positive_gpl_file_name_2.RULE index 4debe37478f..afaafc0de78 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_file_name_2.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_file_name_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a mere file name +--- + Workfile: bos_gpl_list.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_file_name_2.yml b/src/licensedcode/data/rules/false-positive_gpl_file_name_2.yml deleted file mode 100644 index 63a11b64592..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_file_name_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a mere file name diff --git a/src/licensedcode/data/rules/false-positive_gpl_in_apache_comment_1.RULE b/src/licensedcode/data/rules/false-positive_gpl_in_apache_comment_1.RULE index 3aa58f55132..40f678f9fd6 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_in_apache_comment_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_in_apache_comment_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is a comment on the GPL and Apache licenses +--- + Contrary to the GNU Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_in_apache_comment_1.yml b/src/licensedcode/data/rules/false-positive_gpl_in_apache_comment_1.yml deleted file mode 100644 index 78b8b1ac712..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_in_apache_comment_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is a comment on the GPL and Apache licenses diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_1.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_1.RULE index 248157b607e..b1223a79d87 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_1.RULE @@ -1 +1,6 @@ -(driver_remove_file); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +(driver_remove_file); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_1.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_1.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_10.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_10.RULE index 62c7d462e67..1ab87c94736 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_10.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_10.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl_compatible:1, /* Is filter GPL compatible? \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_10.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_10.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_100.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_100.RULE index 1d22d38ec27..c2eaaa18089 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_100.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_100.RULE @@ -1 +1,6 @@ -n",$gpl); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +n",$gpl); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_100.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_100.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_100.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_101.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_101.RULE index f2a60183a9c..0380423b725 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_101.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_101.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + #define EXPORT_DATA_SYMBOL_GPL(name) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_101.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_101.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_101.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_102.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_102.RULE index cc3e910b943..e1998b3aca2 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_102.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_102.RULE @@ -1 +1,6 @@ -__kcrctab_gpl_future +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +__kcrctab_gpl_future \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_102.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_102.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_102.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_103.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_103.RULE index 76a863ad4fb..42c5a13571f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_103.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_103.RULE @@ -1 +1,6 @@ -"modpost: GPL-incompatible module +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +"modpost: GPL-incompatible module \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_103.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_103.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_103.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_104.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_104.RULE index 9f3c4c1b327..b0d328f9b73 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_104.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_104.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + cannot call GPL only function from proprietary program \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_104.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_104.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_104.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_105.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_105.RULE index e1d52b6ed6f..f0de815541c 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_105.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_105.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + lve claims to be GPL but upstream won't provide sources \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_105.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_105.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_105.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_106.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_106.RULE index 2d7d8f5a2f4..b9e8f59e56d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_106.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_106.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl_syms \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_106.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_106.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_106.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_107.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_107.RULE index 6f85703adaf..041fb991106 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_107.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_107.RULE @@ -1 +1,6 @@ -check_for_gpl_usage +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +check_for_gpl_usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_107.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_107.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_107.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_108.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_108.RULE index bfe1e443593..0edf5a04646 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_108.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_108.RULE @@ -1 +1,6 @@ -(driver_attach); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +(driver_attach); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_108.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_108.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_108.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_109.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_109.RULE index e738b87c226..050230a26a5 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_109.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_109.RULE @@ -1 +1,6 @@ -"uses GPL-only symbol marked UNUSED +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +"uses GPL-only symbol marked UNUSED \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_109.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_109.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_109.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_11.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_11.RULE index cb7c9d7cd24..2979b00e39b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_11.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_11.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation +--- + gpl cfg \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_11.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_11.yml deleted file mode 100644 index 40fa11d5f9b..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_110.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_110.RULE index 841a3fd871d..c6ff229d383 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_110.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_110.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + "gpl_compatible", info \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_110.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_110.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_110.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_111.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_111.RULE index 86239be32b9..045af7b772a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_111.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_111.RULE @@ -1 +1,6 @@ -license_is_gpl_compatible +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +license_is_gpl_compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_111.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_111.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_111.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_112.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_112.RULE index ee0df633fb2..781f5c8bb5a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_112.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_112.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + u32 gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_112.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_112.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_112.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_113.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_113.RULE index 2197e05c3da..d17113b7ae9 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_113.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_113.RULE @@ -1,4 +1,9 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + If you include additional firmware files into your binary kernel image that are not available under the terms of the GPL, then it may be a violation of the GPL to distribute the resulting -image since it combines both GPL and non-GPL work. \ No newline at end of file +image since it combines both GPL and non-GPL work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_113.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_113.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_113.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_114.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_114.RULE index 8b1c07254df..299ac4d9b03 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_114.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_114.RULE @@ -1 +1,6 @@ -kcrctab_gpl_future+ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +kcrctab_gpl_future+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_114.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_114.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_114.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_115.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_115.RULE index a469b40324f..0ac93c2650a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_115.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_115.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl, __stop \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_115.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_115.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_115.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_116.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_116.RULE index 4ebcb05fe5a..5f22bf5ddad 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_116.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_116.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + was caught wrongly pretending to be under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_116.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_116.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_116.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_117.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_117.RULE index 4c1260ed17e..e4441e6a530 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_117.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_117.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + mod->gpl_compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_117.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_117.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_117.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_118.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_118.RULE index 93934bdf2a0..4d13aaf5e84 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_118.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_118.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL(offs \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_118.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_118.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_118.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_119.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_119.RULE index 2c5536c1f7d..9dfb0aad7c2 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_119.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_119.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl: gpl { - gpio-controller; + gpio-controller; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_119.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_119.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_119.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_12.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_12.RULE index 0ee0b313181..2fdbf78ba82 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_12.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_12.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + unsigned long) "GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_12.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_12.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_120.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_120.RULE index 012f27fa614..43866703743 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_120.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_120.RULE @@ -1 +1,6 @@ -(driver_find_device); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +(driver_find_device); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_120.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_120.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_120.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_121.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_121.RULE index 0cc26934782..8ad7422d822 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_121.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_121.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl-12 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_121.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_121.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_121.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_122.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_122.RULE index aedb954ccab..2c3fd65756b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_122.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_122.RULE @@ -1,8 +1,12 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + strcmp(license, "GPL") == 0 || strcmp(license, "GPL v2") == 0 || strcmp(license, "GPL and additional rights") == 0 || strcmp(license, "Dual BSD/GPL") == 0 || strcmp(license, "Dual MIT/GPL") == 0 || strcmp(license, "Dual MPL/GPL") == 0); -} - +} \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_122.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_122.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_122.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_123.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_123.RULE index beee569abdf..15fb83f07b2 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_123.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_123.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + section("license"), used)) = "GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_123.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_123.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_123.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_124.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_124.RULE index 7bba373848a..3237aa31e69 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_124.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_124.RULE @@ -1 +1,6 @@ -___ksymtab_unused_gpl+ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +___ksymtab_unused_gpl+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_124.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_124.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_124.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_125.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_125.RULE index 0a8eba7a50b..d00ba750c5a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_125.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_125.RULE @@ -1 +1,6 @@ -marked EXPORT_SYMBOL or EXPORT_SYMBOL_GPL, +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +marked EXPORT_SYMBOL or EXPORT_SYMBOL_GPL, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_125.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_125.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_125.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_126.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_126.RULE index 1921a9dde71..489c2587311 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_126.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_126.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + or] [buck] v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_126.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_126.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_126.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_127.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_127.RULE index 0a0d5f8a367..ec05b65d3b2 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_127.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_127.RULE @@ -1 +1,6 @@ -if (defined $gpl) { +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +if (defined $gpl) { \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_127.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_127.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_127.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_128.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_128.RULE index c189d90070e..46119ef8762 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_128.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_128.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL 8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_128.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_128.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_128.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_129.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_129.RULE index ac694d6cf5e..eb903f85554 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_129.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_129.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_129.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_129.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_129.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_13.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_13.RULE index e97ffc252ec..7dd83f2fd01 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_13.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_13.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl_future_crcs \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_13.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_13.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_130.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_130.RULE index ec69caea399..74e211fa182 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_130.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_130.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Legalese - firmware is non-GPL compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_130.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_130.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_130.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_131.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_131.RULE index 19ede2dc2f4..cd061333322 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_131.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_131.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + claims to be GPL but upstream won't provide source \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_131.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_131.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_131.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_132.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_132.RULE index c14a78c14f7..a62e02eb62e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_132.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_132.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + avoid copying the extra \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_132.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_132.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_132.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_133.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_133.RULE index 07f7e90a77e..d85a4c3b8a6 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_133.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_133.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl, GPL_ONLY, false \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_133.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_133.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_133.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_134.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_134.RULE index cc3e05ea6ab..1776ce9abad 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_134.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_134.RULE @@ -1 +1,6 @@ -MODULE_LICENSE(DRIVER_LICENSE); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +MODULE_LICENSE(DRIVER_LICENSE); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_134.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_134.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_134.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_135.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_135.RULE index ec6d9e2c6ad..aae47082858 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_135.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_135.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + [CDATA[ MODULE_DESCRIPTION("My Chip"); -MODULE_LICENSE("GPL"); +MODULE_LICENSE("GPL"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_135.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_135.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_135.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_136.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_136.RULE index cf9f7a21b30..8630692b074 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_136.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_136.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + _MODULE_LICENSE_name \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_136.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_136.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_136.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_137.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_137.RULE index 7cf908936aa..953facdb5c4 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_137.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_137.RULE @@ -1 +1,6 @@ -export_gpl, +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +export_gpl, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_137.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_137.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_137.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_138.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_138.RULE index 5ba7f0d1348..3a6d2e92829 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_138.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_138.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + Modules without a MODULE_LICENSE or with a MODULE_LICENSE that is not recognised by - insmod as GPL compatible are assumed to be proprietary. + insmod as GPL compatible are assumed to be proprietary. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_138.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_138.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_138.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_139.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_139.RULE index 9bd521e7235..cf3a8eeaa29 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_139.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_139.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + qr{ GPL| GPL\ v2| @@ -5,4 +10,4 @@ qr{ Dual\ BSD/GPL| Dual\ MIT/GPL| Dual\ MPL/GPL| - Proprietary + Proprietary \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_139.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_139.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_139.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_14.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_14.RULE index 03bd0d24f4f..d9bd133a841 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_14.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_14.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + EXPORT_UNUSED_SYMBOL_GPL", .export \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_14.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_14.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_140.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_140.RULE index 10ce7c71d20..56c4a3ce6f6 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_140.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_140.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpios = <&gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_140.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_140.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_140.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_141.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_141.RULE index a8df141f02f..1628956ae21 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_141.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_141.RULE @@ -1 +1,6 @@ -export_gpl_future, +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +export_gpl_future, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_141.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_141.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_141.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_142.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_142.RULE index 64a3db7df29..d83b9868b65 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_142.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_142.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + [SEL]_V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_142.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_142.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_142.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_143.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_143.RULE index c5dec600490..742223d390a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_143.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_143.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- - id="sym-exportsymbols-gpl + + id="sym-exportsymbols-gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_143.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_143.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_143.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_144.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_144.RULE index 03f5cee129b..7d632bb2d21 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_144.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_144.RULE @@ -1,6 +1,11 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + * This exists for several reasons * 1. So modinfo can show license info for users wanting to vet their setup * is free * 2. So the community can ignore bug reports including proprietary modules * 3. So vendors can do likewise based on their own policies - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_144.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_144.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_144.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_145.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_145.RULE index 106902b11d5..887d48481a5 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_145.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_145.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + _GPL only for new symbols \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_145.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_145.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_145.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_146.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_146.RULE index 99f2d66799d..d379b8db77a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_146.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_146.RULE @@ -1 +1,6 @@ -___ksymtab_gpl_future+ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +___ksymtab_gpl_future+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_146.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_146.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_146.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_147.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_147.RULE index 77fbe0c58f6..3da44eea143 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_147.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_147.RULE @@ -1 +1,6 @@ -0" , $symbol, $gpl]; +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +0" , $symbol, $gpl]; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_147.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_147.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_147.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_148.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_148.RULE index 3f2be38b511..1c87e746a1c 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_148.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_148.RULE @@ -1 +1,6 @@ - headers which were not GPL. Developer +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + + headers which were not GPL. Developer \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_148.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_148.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_148.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_149.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_149.RULE index 13435bc230d..e9af8ae03af 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_149.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_149.RULE @@ -1 +1,6 @@ -GPL_MASK +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +GPL_MASK \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_149.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_149.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_149.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_15.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_15.RULE index 7ca52cae003..a08511f2411 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_15.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_15.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + MODULE_LICENSE() that specifies a GPL compatible license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_15.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_15.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_150.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_150.RULE index f01469d55a4..7b119b5e546 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_150.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_150.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + CPPFLAGS_vmlinux \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_150.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_150.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_150.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_151.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_151.RULE index 5d3d71c4f0a..af2382680aa 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_151.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_151.RULE @@ -1 +1,6 @@ -#define EXPORT_UNUSED_SYMBOL_GPL +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +#define EXPORT_UNUSED_SYMBOL_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_151.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_151.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_151.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_152.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_152.RULE index b3201be3763..24442c061de 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_152.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_152.RULE @@ -1 +1,6 @@ -export_unused_gpl_sec; +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +export_unused_gpl_sec; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_152.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_152.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_152.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_153.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_153.RULE index b3ea88d2409..4681f63a13f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_153.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_153.RULE @@ -1 +1,6 @@ - This was the first full GPL version \ No newline at end of file +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + + This was the first full GPL version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_153.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_153.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_153.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_154.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_154.RULE index cf3b796744e..859efe6bece 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_154.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_154.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + label = "GPL", to_irq \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_154.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_154.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_154.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_155.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_155.RULE index 360678c79c7..940c1522d24 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_155.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_155.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + LOCOMO_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_155.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_155.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_155.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_156.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_156.RULE index e6f42259fe2..78c1ffbf3de 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_156.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_156.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl_future_syms \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_156.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_156.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_156.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_158.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_158.RULE index 058fbba88e9..51ea1cb5f2d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_158.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_158.RULE @@ -1 +1,6 @@ -__ksymtab_gpl_future +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +__ksymtab_gpl_future \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_158.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_158.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_158.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_159.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_159.RULE index 680e9ea8b02..41a16ea0dd9 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_159.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_159.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + please contact gpl-info \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_159.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_159.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_159.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_16.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_16.RULE index c811379a66b..00d312d5a55 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_16.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_16.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + programs must be GPL compatible to use GPL-ed functions \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_16.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_16.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_160.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_160.RULE index c79dbca1000..1397a675e8d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_160.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_160.RULE @@ -1 +1,6 @@ -___ksymtab_gpl+ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +___ksymtab_gpl+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_160.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_160.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_160.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_161.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_161.RULE index 504fe278f43..b9354af5696 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_161.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_161.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + info_V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_161.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_161.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_161.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_162.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_162.RULE index d4b1451486d..9e7a046016a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_162.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_162.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation +--- + GPL_BASE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_162.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_162.yml deleted file mode 100644 index 40fa11d5f9b..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_162.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_163.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_163.RULE index 9d24a179773..a408e1e7d1e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_163.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_163.RULE @@ -1,5 +1,9 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + * * There are dual licensed components, but when running with Linux it is the * GPL that is relevant so this is a non issue. Similarly LGPL linked with GPL - * is a GPL combined work. - \ No newline at end of file + * is a GPL combined work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_163.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_163.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_163.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_164.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_164.RULE index a455728733e..22943f8bb9a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_164.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_164.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + bool is_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_164.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_164.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_164.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_165.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_165.RULE index da0410ec4e2..36aa5dea6e4 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_165.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_165.RULE @@ -1 +1,6 @@ -samsung,pins = "gpl +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +samsung,pins = "gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_165.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_165.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_165.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_166.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_166.RULE index 716b7bddf4a..317e06d5f1b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_166.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_166.RULE @@ -1 +1,6 @@ -__kcrctab_unused_gpl +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +__kcrctab_unused_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_166.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_166.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_166.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_167.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_167.RULE index f9662dcc239..7ee97e428bb 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_167.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_167.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + MODULE_LICENSE(SN9C102_MODULE_LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_167.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_167.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_167.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_168.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_168.RULE index 8083b1a1fa6..aebfa0ab701 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_168.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_168.RULE @@ -1 +1,6 @@ -we were never permitted to include in a GPL'd work +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + +we were never permitted to include in a GPL'd work \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_168.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_168.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_168.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_169.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_169.RULE index 6abb15bbfcb..68ae1681ec5 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_169.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_169.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + KSYM_FUNC(name), _gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_169.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_169.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_169.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_17.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_17.RULE index e10a73064be..c77144594ac 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_17.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_17.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Such user mode code will not necessarily be subject to - the GNU General Public License (GPL). + the GNU General Public License (GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_17.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_17.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_170.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_170.RULE index 0666560bc58..94f09fd2331 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_170.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_170.RULE @@ -1 +1,6 @@ -GPL_SHIFT +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +GPL_SHIFT \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_170.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_170.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_170.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_171.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_171.RULE index ccede579496..60f3e005d87 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_171.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_171.RULE @@ -1 +1,6 @@ -are talking about GPL released drivers +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + +are talking about GPL released drivers \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_171.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_171.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_171.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_172.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_172.RULE index da889329dbd..e1e3d2406ac 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_172.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_172.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + 0x0f0, "gpl" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_172.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_172.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_172.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_173.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_173.RULE index 791f9b19798..ac6fd477c44 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_173.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_173.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl, GPL_ONLY, true \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_173.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_173.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_173.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_174.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_174.RULE index 28ae8e016d6..c77115e799c 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_174.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_174.RULE @@ -1 +1,6 @@ -#define _GNU_SOURCE +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +#define _GNU_SOURCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_174.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_174.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_174.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_175.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_175.RULE index 3173b960126..79f16f1cf9a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_175.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_175.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + MODULE_INFO(license, _license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_175.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_175.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_175.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_176.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_176.RULE index dfab17fd6aa..bd4fe7e53d0 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_176.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_176.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + * The following license idents are currently accepted as indicating free * software modules * @@ -13,4 +18,4 @@ * * The following other idents are available * - * "Proprietary" [Non free products] + * "Proprietary" [Non free products] \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_176.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_176.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_176.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_177.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_177.RULE index 0dd944c6b13..ec48d1afcd4 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_177.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_177.RULE @@ -1 +1,6 @@ -(driver_find); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +(driver_find); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_177.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_177.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_177.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_178.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_178.RULE index 1aac057e092..442c160aeb7 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_178.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_178.RULE @@ -1 +1,6 @@ -value, $symbol, $gpl +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +value, $symbol, $gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_178.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_178.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_178.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_179.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_179.RULE index 07115d3b700..194ed4896cf 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_179.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_179.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation +--- + Update GPL headers \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_179.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_179.yml deleted file mode 100644 index 40fa11d5f9b..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_179.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_18.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_18.RULE index 278a4c5a547..6f8ad8f2060 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_18.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_18.RULE @@ -1 +1,6 @@ - from the TSP GPL sampling framework +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + + from the TSP GPL sampling framework \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_18.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_18.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_180.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_180.RULE index 178dc540513..7a92332cd1b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_180.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_180.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + value+1, $symbol, $gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_180.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_180.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_180.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_181.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_181.RULE index a97f7c8b0e6..8925fc76c70 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_181.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_181.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Knowing how MacOS is based on BSD and BSD is an Open Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_181.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_181.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_181.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_182.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_182.RULE index f62307cde49..1f657da67f9 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_182.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_182.RULE @@ -1 +1,6 @@ -plus the GPL copy +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +plus the GPL copy \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_182.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_182.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_182.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_183.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_183.RULE index fbc1bd15db9..e52522ee8a3 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_183.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_183.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + -25s ",$gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_183.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_183.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_183.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_184.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_184.RULE index a85466a8231..7bfabba733b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_184.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_184.RULE @@ -1 +1,6 @@ -[for] [chassis] v2 \ No newline at end of file +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + +[for] [chassis] v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_184.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_184.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_184.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_185.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_185.RULE index 74dfdc34fe6..f5c317f3b2f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_185.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_185.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + see whether permission is granted \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_185.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_185.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_185.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_186.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_186.RULE index 44425f2270f..bc995814a1f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_186.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_186.RULE @@ -1 +1,6 @@ -that specifies a GPL compatible license. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +that specifies a GPL compatible license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_186.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_186.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_186.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_187.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_187.RULE index 882dd48496c..f936efbe3b5 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_187.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_187.RULE @@ -1 +1,6 @@ -driver state \ No newline at end of file +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +driver state \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_187.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_187.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_187.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_188.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_188.RULE index 9dcfc90f811..7f9eb799527 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_188.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_188.RULE @@ -1 +1,6 @@ -/* GPL-only, unused exported symbols. */ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +/* GPL-only, unused exported symbols. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_188.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_188.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_188.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_189.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_189.RULE index 60ebb96d0b9..6e8750e2f07 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_189.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_189.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + pl: gpl { - gpio-controller; + gpio-controller; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_189.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_189.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_189.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_19.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_19.RULE index 727ceccb822..dd17490a322 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_19.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_19.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL 9 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_19.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_19.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_190.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_190.RULE index d5a39d983d7..991217ba336 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_190.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_190.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + The GPL allows you to use the d r i v e r, NOT the RADIO \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_190.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_190.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_190.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_191.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_191.RULE index 09907d8669e..deaa978e5ac 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_191.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_191.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + MODULE_LICENSE or with a MODULE_LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_191.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_191.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_191.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_192.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_192.RULE index 2cbd6110b38..3d7b3dd4aba 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_192.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_192.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + int gpl_compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_192.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_192.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_192.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_193.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_193.RULE index 8d18eee46c9..5d6d902b377 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_193.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_193.RULE @@ -1 +1,6 @@ -This workaround is from Promise's GPL driver. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +This workaround is from Promise's GPL driver. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_193.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_193.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_193.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_194.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_194.RULE index 8489c908667..4642b933b96 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_194.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_194.RULE @@ -1 +1,6 @@ -export_gpl_future_sec; +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +export_gpl_future_sec; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_194.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_194.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_194.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_195.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_195.RULE index 125ab6d586c..04044504da3 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_195.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_195.RULE @@ -1 +1,6 @@ -#define EXPORT_SYMBOL_GPL +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +#define EXPORT_SYMBOL_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_195.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_195.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_195.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_196.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_196.RULE index 1d78ad1d301..5ca2169b1f4 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_196.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_196.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + MODULE_LICENSE_value \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_196.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_196.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_196.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_197.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_197.RULE index ebfa81a7d92..5f0d29cacba 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_197.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_197.RULE @@ -1 +1,6 @@ -(driver_register); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +(driver_register); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_197.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_197.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_197.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_198.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_198.RULE index eb89119cfd7..6f6f0d7278f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_198.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_198.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + _unused_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_198.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_198.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_198.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_199.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_199.RULE index a2910cd68e6..70c7232f520 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_199.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_199.RULE @@ -1 +1,6 @@ -export_gpl_sec; +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +export_gpl_sec; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_199.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_199.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_199.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_2.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_2.RULE index f4c049603ba..c382795190b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_2.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_2.RULE @@ -1 +1,6 @@ -from using GPL-only symbols it needs. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +from using GPL-only symbols it needs. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_2.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_2.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_20.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_20.RULE index b1264381f47..f681b8b0e77 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_20.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_20.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + the] [alignment] [of] [functions] [must] [be] [preserved] [when] copying \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_20.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_20.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_200.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_200.RULE index 3e2cc858c36..f4aa770f8dc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_200.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_200.RULE @@ -1 +1,6 @@ -__kcrctab_gpl +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +__kcrctab_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_200.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_200.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_200.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_201.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_201.RULE index d06fadb76fc..5ac534c749e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_201.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_201.RULE @@ -1 +1,6 @@ -"uses GPL-only symbol +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +"uses GPL-only symbol \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_201.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_201.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_201.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_202.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_202.RULE index a2f9159049a..516ffe2b5cc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_202.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_202.RULE @@ -1 +1,6 @@ -samsung,pins = "gpl-1", "gpl-2", "gpl-3"; +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +samsung,pins = "gpl-1", "gpl-2", "gpl-3"; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_202.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_202.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_202.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_203.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_203.RULE index 47a3e0e7f23..3fe0eb16b6b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_203.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_203.RULE @@ -1,5 +1,10 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + "EXPORT_SYMBOL", .export = export_plain }, "EXPORT_UNUSED_SYMBOL", .export = export_unused }, "EXPORT_SYMBOL_GPL", .export = export_gpl }, "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl }, -"EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future }, +"EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future }, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_203.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_203.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_203.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_204.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_204.RULE index 06693ffac30..5cf91083e03 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_204.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_204.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + _[req]_v2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_204.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_204.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_204.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_205.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_205.RULE index 148d08b5bff..d8e070a58e0 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_205.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_205.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + like 'EXPORT_GPL(foo); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_205.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_205.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_205.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_206.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_206.RULE index cd6cf8bc3ae..df18b18f706 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_206.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_206.RULE @@ -1,5 +1,10 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + /* a few non-GPL license types are also allowed */ MODULE_LICENSE("GPL"); -Power Management +Power Management \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_206.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_206.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_206.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_207.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_207.RULE index 02403d40d82..f5e9f853b2e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_207.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_207.RULE @@ -1 +1,6 @@ -/* symbols that will be GPL-only in the near future. */ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +/* symbols that will be GPL-only in the near future. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_207.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_207.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_207.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_208.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_208.RULE index 2e3db4490c4..2f998b953c3 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_208.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_208.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + prog->gpl_compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_208.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_208.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_208.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_209.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_209.RULE index 0ffb7fca754..8296dc50e2f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_209.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_209.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + drivers that do not have their source code released under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_209.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_209.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_209.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_21.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_21.RULE index 6c01b4d3b2b..9352bda9ef7 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_21.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_21.RULE @@ -1 +1,6 @@ -It is marked EXPORT_SYMBOL or EXPORT_SYMBOL_GPL +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +It is marked EXPORT_SYMBOL or EXPORT_SYMBOL_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_21.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_21.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_21.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_210.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_210.RULE index 52be1deb51c..5d88e30bb55 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_210.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_210.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL book \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_210.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_210.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_210.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_211.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_211.RULE index b09112266a7..3eff1805293 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_211.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_211.RULE @@ -1 +1,6 @@ -___kcrctab_gpl+ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +___kcrctab_gpl+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_211.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_211.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_211.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_212.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_212.RULE index cb30ea13dae..a4ffb3513de 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_212.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_212.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl_crcs \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_212.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_212.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_212.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_213.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_213.RULE index c13a2df4f0c..b2912656750 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_213.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_213.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + successful and permission is granted \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_213.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_213.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_213.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_214.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_214.RULE index 7ae92340561..9b8ef8f6cc0 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_214.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_214.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + driver information \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_214.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_214.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_214.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_215.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_215.RULE index 65f8ddf4cd7..1a87d8289f6 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_215.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_215.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + As a special exception to the "order \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_215.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_215.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_215.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_216.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_216.RULE index 78c5ef6b970..9a28a73f20a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_216.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_216.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + _gpl|_unused|_unused_gpl|_gpl_future) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_216.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_216.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_216.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_217.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_217.RULE index 3618b14cb32..c69dde7f8d3 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_217.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_217.RULE @@ -1 +1,6 @@ - MODULE_LICENSE() \ No newline at end of file +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + + MODULE_LICENSE() \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_217.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_217.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_217.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_218.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_218.RULE index 4a320eab79b..e1d202b86c6 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_218.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_218.RULE @@ -1 +1,6 @@ -support was done by force extraction of GPL. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +support was done by force extraction of GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_218.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_218.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_218.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_219.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_219.RULE index e980bbce1ce..4264d322180 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_219.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_219.RULE @@ -1 +1,6 @@ -MODULE_LICENSE(_license) +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +MODULE_LICENSE(_license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_219.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_219.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_219.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_22.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_22.RULE index 1245239ca5c..11137a80130 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_22.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_22.RULE @@ -1 +1,6 @@ -as published in issue +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + +as published in issue \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_22.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_22.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_22.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_220.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_220.RULE index 3e894169c3d..3166afd205a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_220.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_220.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation +--- + (which allows the development of a GPL driver however \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_220.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_220.yml deleted file mode 100644 index 40fa11d5f9b..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_220.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_221.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_221.RULE index e7dc604044f..2502903a505 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_221.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_221.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + /* GPL-only? This? Really? */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_221.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_221.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_221.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_222.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_222.RULE index 19a5721c227..b1d33b73e47 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_222.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_222.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + define EXPORT_SYMBOL_GPL(name) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_222.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_222.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_222.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_23.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_23.RULE index a0ff3343f38..9af2ad3be17 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_23.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_23.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + is_gpl = license_is_gpl_compatible(license \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_23.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_23.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_24.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_24.RULE index 93f2f7d1e27..302b542ef9f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_24.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_24.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + info.gpl_compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_24.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_24.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_25.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_25.RULE index 1a63fb699f7..93cec18954d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_25.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_25.RULE @@ -1 +1,6 @@ -MODULE_LICENSE(CSIO_DRV_LICENSE); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +MODULE_LICENSE(CSIO_DRV_LICENSE); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_25.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_25.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_26.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_26.RULE index b788cc28005..063d0c21acc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_26.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_26.RULE @@ -1 +1,6 @@ -(driver_create_file); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +(driver_create_file); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_26.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_26.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_26.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_27.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_27.RULE index 448ac202f5c..f79eaf6d9cd 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_27.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_27.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + symbol table: GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_27.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_27.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_27.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_28.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_28.RULE index 7e6a80189b6..7c6f11c3f14 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_28.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_28.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + S3C2410_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_28.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_28.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_28.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_29.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_29.RULE index 8df923a7e6f..655cc7c3793 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_29.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_29.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + fn->gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_29.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_29.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_3.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_3.RULE index 83b4e528266..9ee44294886 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_3.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + S3C64XX_GPL() \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_3.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_3.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_30.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_30.RULE index 574b4d61f19..91c0b47b14d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_30.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_30.RULE @@ -1 +1,6 @@ -(driver_for_each_device); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +(driver_for_each_device); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_30.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_30.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_31.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_31.RULE index e93a3365365..e9739bd7ddc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_31.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_31.RULE @@ -1,3 +1,7 @@ -Note also that all of these calls are exported -GPL-only, so they will not be available to non-GPL kernel modules. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- +Note also that all of these calls are exported +GPL-only, so they will not be available to non-GPL kernel modules. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_31.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_31.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_31.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_32.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_32.RULE index 110f21b1346..d16610503aa 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_32.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_32.RULE @@ -1 +1,6 @@ -___kcrctab_unused_gpl+ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +___kcrctab_unused_gpl+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_32.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_32.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_32.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_33.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_33.RULE index 1525297acbb..c81e342afcf 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_33.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_33.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl", 16 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_33.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_33.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_34.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_34.RULE index c1ac48df31a..7d65044685e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_34.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_34.RULE @@ -1 +1,6 @@ -"uses future GPL-only symbol +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +"uses future GPL-only symbol \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_34.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_34.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_35.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_35.RULE index dad8b336e91..5b6db637823 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_35.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_35.RULE @@ -1 +1,6 @@ -case export_unused_gpl: +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +case export_unused_gpl: \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_35.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_35.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_35.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_36.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_36.RULE index 5636e73b2d4..eced23ef0ac 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_36.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_36.RULE @@ -1 +1,6 @@ -is under GPL by itself, but loads proprietary modules. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +is under GPL by itself, but loads proprietary modules. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_36.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_36.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_37.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_37.RULE index e1625594531..699d3ba4aec 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_37.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_37.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl pin \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_37.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_37.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_38.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_38.RULE index b225e4f94f1..1c9c95754dc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_38.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_38.RULE @@ -1 +1,6 @@ -$value, undef, $gpl +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +$value, undef, $gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_38.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_38.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_38.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_39.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_39.RULE index 12da2c47c18..8ed1f79db51 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_39.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_39.RULE @@ -1 +1,6 @@ -D.-The GNU General Public License, Glossary +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +D.-The GNU General Public License, Glossary \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_39.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_39.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_4.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_4.RULE index c50a121766a..972bb373c9f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_4.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + plot_script.gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_4.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_4.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_40.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_40.RULE index 38a73a11cb1..e446f16326f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_40.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_40.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + Quota format v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_40.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_40.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_41.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_41.RULE index 12e9df4df7a..142bb5cdd03 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_41.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_41.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + WILL_BE_GPL_ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_41.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_41.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_41.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_42.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_42.RULE index f2f68706045..b8778f6d7eb 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_42.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_42.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + .gpl_only = true \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_42.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_42.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_42.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_43.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_43.RULE index 5d349391cd3..0bdb579d4d0 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_43.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_43.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + is being used by a non-GPL module \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_43.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_43.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_43.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_44.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_44.RULE index f2a06af89b2..89bd21045fe 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_44.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_44.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + nfs_v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_44.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_44.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_45.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_45.RULE index be92ed466a2..3bd9596ad4a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_45.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_45.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation +--- + A module with a non-GPL license has been loaded, this -includes modules with no license. +includes modules with no license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_45.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_45.yml deleted file mode 100644 index 40fa11d5f9b..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_46.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_46.RULE index fa6692902e7..8c0d1b1b13e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_46.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_46.RULE @@ -1,2 +1,6 @@ -different". Freely redistributable under the conditions of the GNU General Public License. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- +different". Freely redistributable under the conditions of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_46.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_46.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_46.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_47.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_47.RULE index 2a99313fc80..d3949e7e14b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_47.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_47.RULE @@ -1 +1,6 @@ -Via Red Hat's GPL'd /usr/sbin/sndconfig +--- +is_false_positive: yes +notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation +--- + +Via Red Hat's GPL'd /usr/sbin/sndconfig \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_47.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_47.yml deleted file mode 100644 index 40fa11d5f9b..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_47.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_48.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_48.RULE index 2bab2939c73..39ae5bdb4c9 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_48.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_48.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + EXPORT_SYMBOL(name, name,_gpl) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_48.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_48.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_48.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_49.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_49.RULE index 59edcd9e5c9..195beb2ba01 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_49.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_49.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL_ONLY, false \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_49.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_49.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_49.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_5.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_5.RULE index 8839126ae1b..51b19d61055 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_5.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + tg]_v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_5.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_5.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_50.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_50.RULE index 47cd105924d..87c05232f4f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_50.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_50.RULE @@ -1,4 +1,9 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux -already includes a copy of the GPL. +already includes a copy of the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_50.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_50.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_50.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_51.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_51.RULE index d992a72fac8..aa1b39c1e33 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_51.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_51.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + granted to modify the keyring \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_51.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_51.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_51.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_52.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_52.RULE index 72f7f671519..aa061bc2897 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_52.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_52.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL modules are fine \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_52.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_52.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_52.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_53.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_53.RULE index 1fda6c8e4b3..3231138550a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_53.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_53.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + schedule. As a special \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_53.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_53.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_53.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_54.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_54.RULE index 00ccc6f00e1..27136e527fe 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_54.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_54.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + info->gpl_compatible ? " gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_54.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_54.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_54.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_55.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_55.RULE index 13af67741a3..d7983398221 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_55.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_55.RULE @@ -1 +1,6 @@ -case export_gpl: +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +case export_gpl: \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_55.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_55.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_55.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_56.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_56.RULE index 3e51cc7ef40..b799d61a5fc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_56.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_56.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Driver Configuration \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_56.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_56.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_57.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_57.RULE index 1f698b6d016..ab5a85df1a9 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_57.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_57.RULE @@ -1 +1,6 @@ -uses different values (see GPL vendor driver) +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +uses different values (see GPL vendor driver) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_57.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_57.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_58.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_58.RULE index 08340308a7c..3452cc435db 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_58.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_58.RULE @@ -1 +1,6 @@ -if all modules loaded have a GPL or compatible license, +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + +if all modules loaded have a GPL or compatible license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_58.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_58.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_58.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_59.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_59.RULE index 0658ed74e26..3b6cc6cd0f2 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_59.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_59.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + _GPL(_nr \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_59.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_59.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_6.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_6.RULE index c1bc51928a7..316d0da1d3b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_6.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_6.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + _gpl|_unused \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_6.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_6.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_60.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_60.RULE index 3e2f49763e0..d9d66a3bee4 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_60.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_60.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + missing MODULE_LICENSE() \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_60.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_60.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_60.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_61.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_61.RULE index c87af6e1f39..96867a625c8 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_61.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_61.RULE @@ -1 +1,6 @@ -is EXPORT_SYMBOL_GPL .ret_type +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +is EXPORT_SYMBOL_GPL .ret_type \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_61.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_61.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_61.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_62.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_62.RULE index e4bc98bf227..e2156478239 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_62.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_62.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + syms->licence == GPL_ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_62.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_62.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_62.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_63.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_63.RULE index 87268cc11f1..fabec522854 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_63.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_63.RULE @@ -1 +1,6 @@ -/* GPL-only exported symbols. */ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +/* GPL-only exported symbols. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_63.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_63.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_63.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_64.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_64.RULE index 2cfa6fb4b0e..47552bb9860 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_64.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_64.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + u64("GPL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_64.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_64.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_64.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_65.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_65.RULE index 48dc49d32ea..f1d52c1bc3c 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_65.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_65.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL 7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_65.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_65.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_65.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_66.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_66.RULE index e931ecb0e85..f7168f40a8a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_66.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_66.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + prog->gpl_compatible = is_gpl ? 1 : 0; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_66.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_66.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_66.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_67.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_67.RULE index 8b61d047c77..30e4519d85d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_67.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_67.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + cannot call GPL-restricted function from non-GPL compatible program \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_67.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_67.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_67.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_68.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_68.RULE index 33fe3b601e4..bdae278df32 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_68.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_68.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + warning: copying \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_68.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_68.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_68.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_69.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_69.RULE index 5a0483cbb45..26b13a81800 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_69.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_69.RULE @@ -1 +1,6 @@ -export_unused_gpl, \ No newline at end of file +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +export_unused_gpl, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_69.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_69.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_69.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_7.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_7.RULE index 9583f64fa68..aef2743c1fc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_7.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_7.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + exception) bytes \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_7.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_7.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_70.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_70.RULE index 56d0b633c88..ad9e02e6d04 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_70.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_70.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + Starting in v2.1.*, the \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_70.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_70.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_70.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_71.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_71.RULE index 6fcdb2dbe8e..efd8c76e626 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_71.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_71.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + permission is granted between \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_71.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_71.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_71.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_72.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_72.RULE index a2454c69138..762996c6724 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_72.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_72.RULE @@ -1,4 +1,9 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + NOT_GPL_ONLY, GPL_ONLY, WILL_BE_GPL_ONLY, - } licence; + } licence; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_72.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_72.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_72.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_73.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_73.RULE index 8ca4495e698..e3d2e5c1c92 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_73.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_73.RULE @@ -1 +1,6 @@ -can use the public domain \ No newline at end of file +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +can use the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_73.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_73.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_73.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_74.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_74.RULE index 4bd16d6bbfc..b7bd93467fb 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_74.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_74.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation +--- + UTL, GPL before configuration \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_74.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_74.yml deleted file mode 100644 index 40fa11d5f9b..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_75.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_75.RULE index 8a99bc31ad5..8c52a65a9cc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_75.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_75.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + changed copyright notice to GPL without limitations \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_75.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_75.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_75.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_76.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_76.RULE index 52640c0aa95..e2c1138936c 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_76.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_76.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + ksymtab(|_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_76.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_76.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_76.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_77.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_77.RULE index eadde4d0ca3..85a79e53767 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_77.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_77.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + define the module license as GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_77.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_77.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_77.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_78.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_78.RULE index 8326599b0b7..d51b96f35cd 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_78.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_78.RULE @@ -1 +1,6 @@ -if permission is granted. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +if permission is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_78.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_78.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_78.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_79.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_79.RULE index 08fba67bdb5..52faf6cfb78 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_79.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_79.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl, __start \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_79.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_79.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_79.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_8.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_8.RULE index d630c8d2291..669b31301ea 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_8.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_8.RULE @@ -1 +1,6 @@ - EXPORT_SYMBOL() +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + + EXPORT_SYMBOL() \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_8.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_8.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_80.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_80.RULE index 9c95cff9c82..77b7846e4bb 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_80.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_80.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Ultrasound card is not in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_80.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_80.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_80.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_81.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_81.RULE index ed38587800b..97961b4a6f1 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_81.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_81.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + gpl-11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_81.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_81.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_81.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_82.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_82.RULE index 0825821939a..d1b9ceef553 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_82.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_82.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + /* some GPL'd test firmware uses these IDs */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_82.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_82.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_82.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_83.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_83.RULE index 66bb1568e9c..c1d9244fd04 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_83.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_83.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + hardware restrictions and modify it if necessary \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_83.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_83.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_83.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_84.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_84.RULE index 9600d108cfe..b6ebfb2d3d3 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_84.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_84.RULE @@ -1 +1,6 @@ -Revision 1.0" as published by the \ No newline at end of file +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + +Revision 1.0" as published by the \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_84.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_84.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_84.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_85.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_85.RULE index 944cae2a36a..396f0a4254e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_85.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_85.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- + QUOTA_V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_85.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_85.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_85.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_86.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_86.RULE index d02241780d1..36e3a7cd12b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_86.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_86.RULE @@ -1 +1,6 @@ -MODULE_LICENSE(MOD_LICENSE); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +MODULE_LICENSE(MOD_LICENSE); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_86.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_86.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_86.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_87.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_87.RULE index ec784a80ce2..4f5db58ebc0 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_87.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_87.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL pins \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_87.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_87.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_87.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_88.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_88.RULE index 36933f7ddef..2957ab3690c 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_88.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_88.RULE @@ -1 +1,6 @@ -it is recommended that you get the GPL version +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +it is recommended that you get the GPL version \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_88.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_88.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_88.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_89.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_89.RULE index 072cd900f29..c807fd1bffd 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_89.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_89.RULE @@ -1 +1,6 @@ -module, $gpl) = split; +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +module, $gpl) = split; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_89.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_89.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_89.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_9.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_9.RULE index 48df0ee5e6c..ebf0a595702 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_9.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_9.RULE @@ -1,2 +1,6 @@ -if any proprietary module has been loaded. +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs +--- +if any proprietary module has been loaded. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_9.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_9.yml deleted file mode 100644 index 1c6511163b3..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) and docs diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_90.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_90.RULE index 4569275fba6..4669fb2eab1 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_90.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_90.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + appear in various - * GPL source trees. + * GPL source trees. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_90.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_90.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_90.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_91.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_91.RULE index 79739d2102d..74cb248c19d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_91.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_91.RULE @@ -1 +1,6 @@ -__symbol_get_gpl( +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +__symbol_get_gpl( \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_91.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_91.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_91.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_92.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_92.RULE index 02909d3723d..e1663779594 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_92.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_92.RULE @@ -1 +1,6 @@ -__ksymtab_unused_gpl +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +__ksymtab_unused_gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_92.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_92.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_92.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_93.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_93.RULE index 748ab0b5e6a..d609afd9bcd 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_93.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_93.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + #ifndef __LICENSE_H -#define __LICENSE_H +#define __LICENSE_H \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_93.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_93.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_94.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_94.RULE index 4baec41b065..ce46e8ec43d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_94.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_94.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation +--- + collection of IP cores that are distributed under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_94.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_94.yml deleted file mode 100644 index 40fa11d5f9b..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_94.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: see in Linux Kernel sources for gpl kernel symbols related code or documentation diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_95.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_95.RULE index fd1b795c1c8..0b8af19f87d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_95.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_95.RULE @@ -1 +1,6 @@ -case export_gpl_future: +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +case export_gpl_future: \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_95.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_95.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_95.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_96.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_96.RULE index 2737a9b4d03..314748cedeb 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_96.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_96.RULE @@ -1 +1,6 @@ -EXPORT_SYMBOL_GPL() +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +EXPORT_SYMBOL_GPL() \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_96.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_96.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_96.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_97.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_97.RULE index b4b837f0519..2ed2e595985 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_97.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_97.RULE @@ -1 +1,6 @@ -(driver_unregister); +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +(driver_unregister); \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_97.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_97.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_97.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_98.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_98.RULE index 78280969559..fe0c0a1f50d 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_98.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_98.RULE @@ -1 +1,6 @@ -define MODULE_LICENSE(x) +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +define MODULE_LICENSE(x) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_98.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_98.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_98.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_99.RULE b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_99.RULE index b12640b2334..021236ba8dc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_99.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_99.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + EXPORT_SYMBOL(sym, "_gpl" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_99.yml b/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_99.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_kernel_sym_99.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_1.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_1.RULE index fc5cb80a29a..37d3f050217 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + D_LGPL_SOURCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_1.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_1.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_10.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_10.RULE index 73f5929c268..6d22785acc4 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_10.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_10.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + 16 has MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_10.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_10.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_11.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_11.RULE index 66676e10231..fa8048f798f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_11.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_11.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Interface flags (a la BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_11.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_11.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_12.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_12.RULE index b4e48366de3..02bd9b1d030 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_12.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_12.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + restore MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_12.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_12.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_13.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_13.RULE index d6418045fcc..6096fb4a047 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_13.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_13.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Linux has traditionally used the BSD-like names \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_13.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_13.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_2.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_2.RULE index ff78a7790ff..680d61ca87c 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_2.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + NAME(mpl2, mpl[2] \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_2.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_2.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_3.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_3.RULE index a3b4fd2c6cf..515d203e140 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_3.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + length CPL", -1, 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_3.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_3.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_4.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_4.RULE index ce54e644069..d08bf7c95dc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_4.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + MPL+16 has MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_4.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_4.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_5.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_5.RULE index da928fe8788..57c62650d1a 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_5.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + read MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_5.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_5.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_6.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_6.RULE index b09d515eafb..db72d12cd35 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_6.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_6.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + MPL2 */ /* Restore \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_6.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_6.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_7.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_7.RULE index edf20c8c1bc..8b742b86dc3 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_7.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_7.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + store MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_7.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_7.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_8.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_8.RULE index 71c0e1ae529..9db9e30fb83 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_8.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_8.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + k0 /* MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_8.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_8.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_9.RULE b/src/licensedcode/data/rules/false-positive_gpl_linux_9.RULE index fe38d05fc7c..b7ce11082fc 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_9.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_linux_9.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + echo "$license" | python scripts \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_linux_9.yml b/src/licensedcode/data/rules/false-positive_gpl_linux_9.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_linux_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_gpl_plugin_1.RULE b/src/licensedcode/data/rules/false-positive_gpl_plugin_1.RULE index c0f2963bc27..2b070d65ec1 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_plugin_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_plugin_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: found in the Linux kernel. +--- + plugin_is_GPL_compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_plugin_1.yml b/src/licensedcode/data/rules/false-positive_gpl_plugin_1.yml deleted file mode 100644 index 71992aecac8..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_plugin_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in the Linux kernel. diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_1.RULE b/src/licensedcode/data/rules/false-positive_gpl_uboot_1.RULE index 8e73d2fafc1..23c53e8009e 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_1.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_uboot_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Uboot symbols +--- + MxMR_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_1.yml b/src/licensedcode/data/rules/false-positive_gpl_uboot_1.yml deleted file mode 100644 index ce5f3af3f00..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Uboot symbols diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_2.RULE b/src/licensedcode/data/rules/false-positive_gpl_uboot_2.RULE index 7e1aa23a9e7..a744113f96f 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_2.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_uboot_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Uboot symbols +--- + GPL_DMER \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_2.yml b/src/licensedcode/data/rules/false-positive_gpl_uboot_2.yml deleted file mode 100644 index ce5f3af3f00..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Uboot symbols diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_3.RULE b/src/licensedcode/data/rules/false-positive_gpl_uboot_3.RULE index e3ca662d770..136d4488204 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_3.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_uboot_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Uboot symbols +--- + GPL_utl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_3.yml b/src/licensedcode/data/rules/false-positive_gpl_uboot_3.yml deleted file mode 100644 index ce5f3af3f00..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Uboot symbols diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_4.RULE b/src/licensedcode/data/rules/false-positive_gpl_uboot_4.RULE index 2ef11abad79..0e82951891b 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_4.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_uboot_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Uboot symbols +--- + GPL_A4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_4.yml b/src/licensedcode/data/rules/false-positive_gpl_uboot_4.yml deleted file mode 100644 index ce5f3af3f00..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Uboot symbols diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_5.RULE b/src/licensedcode/data/rules/false-positive_gpl_uboot_5.RULE index fbc331c10b0..3fe108a115c 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_5.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_uboot_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Uboot defines +--- + GPL_RATIO \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_5.yml b/src/licensedcode/data/rules/false-positive_gpl_uboot_5.yml deleted file mode 100644 index 96fb7ce4f28..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Uboot defines diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_6.RULE b/src/licensedcode/data/rules/false-positive_gpl_uboot_6.RULE index ccec66cc497..499e6397b96 100644 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_6.RULE +++ b/src/licensedcode/data/rules/false-positive_gpl_uboot_6.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in Uboot symbols +--- + GPL_x4DIS \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_gpl_uboot_6.yml b/src/licensedcode/data/rules/false-positive_gpl_uboot_6.yml deleted file mode 100644 index ce5f3af3f00..00000000000 --- a/src/licensedcode/data/rules/false-positive_gpl_uboot_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in Uboot symbols diff --git a/src/licensedcode/data/rules/false-positive_hildon_1.RULE b/src/licensedcode/data/rules/false-positive_hildon_1.RULE index 6b76d2291bc..05ea630055f 100644 --- a/src/licensedcode/data/rules/false-positive_hildon_1.RULE +++ b/src/licensedcode/data/rules/false-positive_hildon_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: name of a package +--- + hildon lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_hildon_1.yml b/src/licensedcode/data/rules/false-positive_hildon_1.yml deleted file mode 100644 index 7fa471fa7d7..00000000000 --- a/src/licensedcode/data/rules/false-positive_hildon_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: name of a package diff --git a/src/licensedcode/data/rules/false-positive_jdk_1.RULE b/src/licensedcode/data/rules/false-positive_jdk_1.RULE index 8febb123c5e..63b97b55594 100644 --- a/src/licensedcode/data/rules/false-positive_jdk_1.RULE +++ b/src/licensedcode/data/rules/false-positive_jdk_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in the openjdk +--- + ZIP public domain inflate/deflate compression technology. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_jdk_1.yml b/src/licensedcode/data/rules/false-positive_jdk_1.yml deleted file mode 100644 index 59b9661d388..00000000000 --- a/src/licensedcode/data/rules/false-positive_jdk_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in the openjdk diff --git a/src/licensedcode/data/rules/false-positive_jdk_2.RULE b/src/licensedcode/data/rules/false-positive_jdk_2.RULE index 9b061619a8e..9206627047d 100644 --- a/src/licensedcode/data/rules/false-positive_jdk_2.RULE +++ b/src/licensedcode/data/rules/false-positive_jdk_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in the openjdk +--- + in the "tz database", a public domain time zone database at \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_jdk_2.yml b/src/licensedcode/data/rules/false-positive_jdk_2.yml deleted file mode 100644 index 59b9661d388..00000000000 --- a/src/licensedcode/data/rules/false-positive_jdk_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in the openjdk diff --git a/src/licensedcode/data/rules/false-positive_jdk_3.RULE b/src/licensedcode/data/rules/false-positive_jdk_3.RULE index ac4c887bdc2..74bd670cc5e 100644 --- a/src/licensedcode/data/rules/false-positive_jdk_3.RULE +++ b/src/licensedcode/data/rules/false-positive_jdk_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in the openjdk +--- + Unless otherwise noted in the JavaDocs for those methods \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_jdk_3.yml b/src/licensedcode/data/rules/false-positive_jdk_3.yml deleted file mode 100644 index 59b9661d388..00000000000 --- a/src/licensedcode/data/rules/false-positive_jdk_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in the openjdk diff --git a/src/licensedcode/data/rules/false-positive_jdk_4.RULE b/src/licensedcode/data/rules/false-positive_jdk_4.RULE index 51aa69a0cba..861cebc34fd 100644 --- a/src/licensedcode/data/rules/false-positive_jdk_4.RULE +++ b/src/licensedcode/data/rules/false-positive_jdk_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in the openjdk +--- + permission is granted for this heap \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_jdk_4.yml b/src/licensedcode/data/rules/false-positive_jdk_4.yml deleted file mode 100644 index 59b9661d388..00000000000 --- a/src/licensedcode/data/rules/false-positive_jdk_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in the openjdk diff --git a/src/licensedcode/data/rules/false-positive_kernel_1.RULE b/src/licensedcode/data/rules/false-positive_kernel_1.RULE index 96a17ae00a0..d645f86a173 100644 --- a/src/licensedcode/data/rules/false-positive_kernel_1.RULE +++ b/src/licensedcode/data/rules/false-positive_kernel_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + SYMBOL_GPL(driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_kernel_1.yml b/src/licensedcode/data/rules/false-positive_kernel_1.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_kernel_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/false-positive_lgpl-2.0-plus_1.RULE index 7f5bbe57273..7d4d8703c2d 100644 --- a/src/licensedcode/data/rules/false-positive_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/false-positive_lgpl-2.0-plus_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: See in https://github.com/CloudCompare/CCCoreLib/blob/42c2a5eeabc195e62cd62cf96cde579210873adf/README.md +--- + We are working on securing the necessary permissions to relicense these under LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/false-positive_lgpl-2.0-plus_1.yml deleted file mode 100644 index 21b40c8ca29..00000000000 --- a/src/licensedcode/data/rules/false-positive_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in https://github.com/CloudCompare/CCCoreLib/blob/42c2a5eeabc195e62cd62cf96cde579210873adf/README.md diff --git a/src/licensedcode/data/rules/false-positive_lgpl-2.1_and_gpl-2.0_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/false-positive_lgpl-2.1_and_gpl-2.0_and_other-copyleft_1.RULE index 7825234252b..a1fa9fcf455 100644 --- a/src/licensedcode/data/rules/false-positive_lgpl-2.1_and_gpl-2.0_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/false-positive_lgpl-2.1_and_gpl-2.0_and_other-copyleft_1.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: this is a comment about licenses in FFmpeg +--- + That license is incompatible with the LGPL v2.1 and the GPL v2, but not with version 3 of those licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_lgpl-2.1_and_gpl-2.0_and_other-copyleft_1.yml b/src/licensedcode/data/rules/false-positive_lgpl-2.1_and_gpl-2.0_and_other-copyleft_1.yml deleted file mode 100644 index 2fef88492ef..00000000000 --- a/src/licensedcode/data/rules/false-positive_lgpl-2.1_and_gpl-2.0_and_other-copyleft_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is a comment about licenses in FFmpeg diff --git a/src/licensedcode/data/rules/false-positive_lgpl_include_1.RULE b/src/licensedcode/data/rules/false-positive_lgpl_include_1.RULE index c38adac7931..e636b0fa5ff 100644 --- a/src/licensedcode/data/rules/false-positive_lgpl_include_1.RULE +++ b/src/licensedcode/data/rules/false-positive_lgpl_include_1.RULE @@ -1 +1,6 @@ - #include "lm_lgpl.h" +--- +is_false_positive: yes +notes: a mere include +--- + + #include "lm_lgpl.h" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_lgpl_include_1.yml b/src/licensedcode/data/rules/false-positive_lgpl_include_1.yml deleted file mode 100644 index 9e7b60a6086..00000000000 --- a/src/licensedcode/data/rules/false-positive_lgpl_include_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a mere include diff --git a/src/licensedcode/data/rules/false-positive_llvm_1.RULE b/src/licensedcode/data/rules/false-positive_llvm_1.RULE index ba33d83c676..304ad5e8c50 100644 --- a/src/licensedcode/data/rules/false-positive_llvm_1.RULE +++ b/src/licensedcode/data/rules/false-positive_llvm_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in LLVM sources and docs +--- + http://llvm.org/demo/ but for the BSD licensed Clang instead \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_llvm_1.yml b/src/licensedcode/data/rules/false-positive_llvm_1.yml deleted file mode 100644 index 76a161e84b9..00000000000 --- a/src/licensedcode/data/rules/false-positive_llvm_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in LLVM sources and docs diff --git a/src/licensedcode/data/rules/false-positive_llvm_2.RULE b/src/licensedcode/data/rules/false-positive_llvm_2.RULE index d065fa39751..15ca9e9b880 100644 --- a/src/licensedcode/data/rules/false-positive_llvm_2.RULE +++ b/src/licensedcode/data/rules/false-positive_llvm_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in LLVM sources and docs +--- + Allow linking of LLVM with GPLv3 binutils code \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_llvm_2.yml b/src/licensedcode/data/rules/false-positive_llvm_2.yml deleted file mode 100644 index 76a161e84b9..00000000000 --- a/src/licensedcode/data/rules/false-positive_llvm_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in LLVM sources and docs diff --git a/src/licensedcode/data/rules/false-positive_llvm_3.RULE b/src/licensedcode/data/rules/false-positive_llvm_3.RULE index ba330abdcb3..34b9c5fd76d 100644 --- a/src/licensedcode/data/rules/false-positive_llvm_3.RULE +++ b/src/licensedcode/data/rules/false-positive_llvm_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in LLVM sources and docs +--- + This is why we distribute LLVM under a less restrictive license than GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_llvm_3.yml b/src/licensedcode/data/rules/false-positive_llvm_3.yml deleted file mode 100644 index 76a161e84b9..00000000000 --- a/src/licensedcode/data/rules/false-positive_llvm_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in LLVM sources and docs diff --git a/src/licensedcode/data/rules/false-positive_llvm_4.RULE b/src/licensedcode/data/rules/false-positive_llvm_4.RULE index 9ca21d98fa3..2211744efd6 100644 --- a/src/licensedcode/data/rules/false-positive_llvm_4.RULE +++ b/src/licensedcode/data/rules/false-positive_llvm_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in LLVM sources and docs +--- + This differs from Colin Plumb's older public domain implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_llvm_4.yml b/src/licensedcode/data/rules/false-positive_llvm_4.yml deleted file mode 100644 index 76a161e84b9..00000000000 --- a/src/licensedcode/data/rules/false-positive_llvm_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in LLVM sources and docs diff --git a/src/licensedcode/data/rules/false-positive_llvm_5.RULE b/src/licensedcode/data/rules/false-positive_llvm_5.RULE index a0bbcd3c638..cb9d261503d 100644 --- a/src/licensedcode/data/rules/false-positive_llvm_5.RULE +++ b/src/licensedcode/data/rules/false-positive_llvm_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in LLVM sources and docs +--- + has GPL'd their compiler \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_llvm_5.yml b/src/licensedcode/data/rules/false-positive_llvm_5.yml deleted file mode 100644 index 76a161e84b9..00000000000 --- a/src/licensedcode/data/rules/false-positive_llvm_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in LLVM sources and docs diff --git a/src/licensedcode/data/rules/false-positive_magic_1.RULE b/src/licensedcode/data/rules/false-positive_magic_1.RULE index 1987a46d4f7..3692880eab9 100644 --- a/src/licensedcode/data/rules/false-positive_magic_1.RULE +++ b/src/licensedcode/data/rules/false-positive_magic_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Found in libmagic definitions +--- + for Windows and as GPL application for Linux \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_magic_1.yml b/src/licensedcode/data/rules/false-positive_magic_1.yml deleted file mode 100644 index 18932b9fc00..00000000000 --- a/src/licensedcode/data/rules/false-positive_magic_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in libmagic definitions diff --git a/src/licensedcode/data/rules/false-positive_magic_2.RULE b/src/licensedcode/data/rules/false-positive_magic_2.RULE index 99f7514114a..f0342e07eb0 100644 --- a/src/licensedcode/data/rules/false-positive_magic_2.RULE +++ b/src/licensedcode/data/rules/false-positive_magic_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Found in libmagic definitions +--- + GIMP palette (.gpl) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_magic_2.yml b/src/licensedcode/data/rules/false-positive_magic_2.yml deleted file mode 100644 index 18932b9fc00..00000000000 --- a/src/licensedcode/data/rules/false-positive_magic_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in libmagic definitions diff --git a/src/licensedcode/data/rules/false-positive_magic_3.RULE b/src/licensedcode/data/rules/false-positive_magic_3.RULE index 33e07fcf0d9..d08044281bb 100644 --- a/src/licensedcode/data/rules/false-positive_magic_3.RULE +++ b/src/licensedcode/data/rules/false-positive_magic_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Found in libmagic definitions +--- + Samsung stereo, dual stream (patent pending) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_magic_3.yml b/src/licensedcode/data/rules/false-positive_magic_3.yml deleted file mode 100644 index 18932b9fc00..00000000000 --- a/src/licensedcode/data/rules/false-positive_magic_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in libmagic definitions diff --git a/src/licensedcode/data/rules/false-positive_magic_4.RULE b/src/licensedcode/data/rules/false-positive_magic_4.RULE index 4f7ad0126b2..ed3117e43bf 100644 --- a/src/licensedcode/data/rules/false-positive_magic_4.RULE +++ b/src/licensedcode/data/rules/false-positive_magic_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Found in libmagic definitions +--- + Samsung stereo, single stream (patent pending) \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_magic_4.yml b/src/licensedcode/data/rules/false-positive_magic_4.yml deleted file mode 100644 index 18932b9fc00..00000000000 --- a/src/licensedcode/data/rules/false-positive_magic_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in libmagic definitions diff --git a/src/licensedcode/data/rules/false-positive_many_contribs_1.RULE b/src/licensedcode/data/rules/false-positive_many_contribs_1.RULE index 414066ed125..dfb17d65900 100644 --- a/src/licensedcode/data/rules/false-positive_many_contribs_1.RULE +++ b/src/licensedcode/data/rules/false-positive_many_contribs_1.RULE @@ -1 +1,7 @@ +--- +is_false_positive: yes +notes: Seen in Apache and Apache-derived licenses and ad a few other. Taken alone, this is not + enough of a license clue. +--- + This software consists of voluntary contributions made by many individuals \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_many_contribs_1.yml b/src/licensedcode/data/rules/false-positive_many_contribs_1.yml deleted file mode 100644 index 5a1e48fad42..00000000000 --- a/src/licensedcode/data/rules/false-positive_many_contribs_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: Seen in Apache and Apache-derived licenses and ad a few other. Taken alone, this is not - enough of a license clue. diff --git a/src/licensedcode/data/rules/false-positive_mit_lgpl_1.RULE b/src/licensedcode/data/rules/false-positive_mit_lgpl_1.RULE index c653dac0104..f6d8b3d8a4d 100644 --- a/src/licensedcode/data/rules/false-positive_mit_lgpl_1.RULE +++ b/src/licensedcode/data/rules/false-positive_mit_lgpl_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: this is a comment about a license change, not a license statement +--- + changed the license from LGPL to MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_mit_lgpl_1.yml b/src/licensedcode/data/rules/false-positive_mit_lgpl_1.yml deleted file mode 100644 index b5fac7eccf4..00000000000 --- a/src/licensedcode/data/rules/false-positive_mit_lgpl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is a comment about a license change, not a license statement diff --git a/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._1.RULE b/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._1.RULE index 4133a541e14..4d870c9722d 100644 --- a/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._1.RULE +++ b/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a javassist changelog entry +--- + The license was changed from MPL to MPL/LGPL dual. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._1.yml b/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._1.yml deleted file mode 100644 index 3314dab6df8..00000000000 --- a/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a javassist changelog entry diff --git a/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._2.RULE b/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._2.RULE index 34af2635561..5163204147a 100644 --- a/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._2.RULE +++ b/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a javassist changelog entry +--- + The license was changed to MPL/LGPL/Apache triple. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._2.yml b/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._2.yml deleted file mode 100644 index 3314dab6df8..00000000000 --- a/src/licensedcode/data/rules/false-positive_mpl-1.1_or_lgpl-2.1-plus_or_apache-2._2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a javassist changelog entry diff --git a/src/licensedcode/data/rules/false-positive_mpl_1.RULE b/src/licensedcode/data/rules/false-positive_mpl_1.RULE index d84c8e97665..1b76e5943a1 100644 --- a/src/licensedcode/data/rules/false-positive_mpl_1.RULE +++ b/src/licensedcode/data/rules/false-positive_mpl_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: MPL2 is a also for subtitles +--- + SubRip, MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_mpl_1.yml b/src/licensedcode/data/rules/false-positive_mpl_1.yml deleted file mode 100644 index a7613de558d..00000000000 --- a/src/licensedcode/data/rules/false-positive_mpl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: MPL2 is a also for subtitles diff --git a/src/licensedcode/data/rules/false-positive_not_python.RULE b/src/licensedcode/data/rules/false-positive_not_python.RULE index 01d5ef23734..52ba0f95521 100644 --- a/src/licensedcode/data/rules/false-positive_not_python.RULE +++ b/src/licensedcode/data/rules/false-positive_not_python.RULE @@ -1 +1,7 @@ -python module +--- +is_false_positive: yes +notes: Do not detect license python module as a Python license Seen in https://github.com/keras-team/keras/blob/ad9268d67014273e35faac4ff21cbfe929bf1d2b/keras/utils/generic_utils.py + and reported in https://github.com/nexB/scancode-toolkit/issues/2377 +--- + +python module \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_not_python.yml b/src/licensedcode/data/rules/false-positive_not_python.yml deleted file mode 100644 index 85432679486..00000000000 --- a/src/licensedcode/data/rules/false-positive_not_python.yml +++ /dev/null @@ -1,5 +0,0 @@ -is_false_positive: yes -notes: Do not detect license python module as a Python license - Seen in https://github.com/keras-team/keras/blob/ad9268d67014273e35faac4ff21cbfe929bf1d2b/keras/utils/generic_utils.py - and reported in https://github.com/nexB/scancode-toolkit/issues/2377 - diff --git a/src/licensedcode/data/rules/false-positive_ofl_faq_1.RULE b/src/licensedcode/data/rules/false-positive_ofl_faq_1.RULE index 221aa7474b6..c9215ad0b77 100644 --- a/src/licensedcode/data/rules/false-positive_ofl_faq_1.RULE +++ b/src/licensedcode/data/rules/false-positive_ofl_faq_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: This should not be detected as proprietary. This is part of of the OFL FAQ +--- + in another non-proprietary license provided that \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_ofl_faq_1.yml b/src/licensedcode/data/rules/false-positive_ofl_faq_1.yml deleted file mode 100644 index e563f36608c..00000000000 --- a/src/licensedcode/data/rules/false-positive_ofl_faq_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: This should not be detected as proprietary. This is part of of the OFL FAQ diff --git a/src/licensedcode/data/rules/false-positive_openjdk_1.RULE b/src/licensedcode/data/rules/false-positive_openjdk_1.RULE index d66ec911165..71b840f6a48 100644 --- a/src/licensedcode/data/rules/false-positive_openjdk_1.RULE +++ b/src/licensedcode/data/rules/false-positive_openjdk_1.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: found in the openjdk +--- + Some sources downloaded from openjdk.java.net do not display the GPL license header. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_openjdk_1.yml b/src/licensedcode/data/rules/false-positive_openjdk_1.yml deleted file mode 100644 index 75b833c15a1..00000000000 --- a/src/licensedcode/data/rules/false-positive_openjdk_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in the openjdk diff --git a/src/licensedcode/data/rules/false-positive_openjdk_2.RULE b/src/licensedcode/data/rules/false-positive_openjdk_2.RULE index f451eda2cba..eb5ef128a2b 100644 --- a/src/licensedcode/data/rules/false-positive_openjdk_2.RULE +++ b/src/licensedcode/data/rules/false-positive_openjdk_2.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: found in the openjdk +--- + The downloaded sources include a script that inserts proprietary license headers into the source files it generates. The script itself is GPL'd so we patched them to emit the GPL header. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_openjdk_2.yml b/src/licensedcode/data/rules/false-positive_openjdk_2.yml deleted file mode 100644 index 75b833c15a1..00000000000 --- a/src/licensedcode/data/rules/false-positive_openjdk_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: found in the openjdk diff --git a/src/licensedcode/data/rules/false-positive_other-copyleft_and_other-permissive_1.RULE b/src/licensedcode/data/rules/false-positive_other-copyleft_and_other-permissive_1.RULE index 40c3b988ae3..936f57d6728 100644 --- a/src/licensedcode/data/rules/false-positive_other-copyleft_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/false-positive_other-copyleft_and_other-permissive_1.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: Found in Debian docs +--- + modify the paragraph in policy saying "Packages distributed under the Apache license (version 2.0), the Artistic license, the GNU GPL (versions 1, diff --git a/src/licensedcode/data/rules/false-positive_other-copyleft_and_other-permissive_1.yml b/src/licensedcode/data/rules/false-positive_other-copyleft_and_other-permissive_1.yml deleted file mode 100644 index 4b5920f0dd5..00000000000 --- a/src/licensedcode/data/rules/false-positive_other-copyleft_and_other-permissive_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Found in Debian docs diff --git a/src/licensedcode/data/rules/false-positive_partial_disclaimer_1.RULE b/src/licensedcode/data/rules/false-positive_partial_disclaimer_1.RULE index ec8ccd914ab..fde6dba6090 100644 --- a/src/licensedcode/data/rules/false-positive_partial_disclaimer_1.RULE +++ b/src/licensedcode/data/rules/false-positive_partial_disclaimer_1.RULE @@ -1,3 +1,7 @@ -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND -NON-INFRINGEMENT. +--- +is_false_positive: yes +notes: partial warranty disclaimer +--- +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND +NON-INFRINGEMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_partial_disclaimer_1.yml b/src/licensedcode/data/rules/false-positive_partial_disclaimer_1.yml deleted file mode 100644 index 6d48f0b50fa..00000000000 --- a/src/licensedcode/data/rules/false-positive_partial_disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: partial warranty disclaimer diff --git a/src/licensedcode/data/rules/false-positive_partial_disclaimer_2.RULE b/src/licensedcode/data/rules/false-positive_partial_disclaimer_2.RULE index dca7fe4ef8b..6b5f756041a 100644 --- a/src/licensedcode/data/rules/false-positive_partial_disclaimer_2.RULE +++ b/src/licensedcode/data/rules/false-positive_partial_disclaimer_2.RULE @@ -1 +1,6 @@ -contract tort or otherwise +--- +is_false_positive: yes +notes: partial warranty disclaimer +--- + +contract tort or otherwise \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_partial_disclaimer_2.yml b/src/licensedcode/data/rules/false-positive_partial_disclaimer_2.yml deleted file mode 100644 index 6d48f0b50fa..00000000000 --- a/src/licensedcode/data/rules/false-positive_partial_disclaimer_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: partial warranty disclaimer diff --git a/src/licensedcode/data/rules/false-positive_pd_1.RULE b/src/licensedcode/data/rules/false-positive_pd_1.RULE index d37c655cd43..e048b28b0d0 100644 --- a/src/licensedcode/data/rules/false-positive_pd_1.RULE +++ b/src/licensedcode/data/rules/false-positive_pd_1.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: a pd mention in a readme but not a licensing statement +--- + Wikipedia. Public Domain and \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_pd_1.yml b/src/licensedcode/data/rules/false-positive_pd_1.yml deleted file mode 100644 index bbfd39a9618..00000000000 --- a/src/licensedcode/data/rules/false-positive_pd_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a pd mention in a readme but not a licensing statement diff --git a/src/licensedcode/data/rules/false-positive_pd_2.RULE b/src/licensedcode/data/rules/false-positive_pd_2.RULE index 95d32eb2cda..61b5db52ce9 100644 --- a/src/licensedcode/data/rules/false-positive_pd_2.RULE +++ b/src/licensedcode/data/rules/false-positive_pd_2.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: a pd mention in a a JS file but not a licensing statement +--- + const labels = { - publicDomain: `Public Domain`, + publicDomain: `Public Domain`, \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_pd_2.yml b/src/licensedcode/data/rules/false-positive_pd_2.yml deleted file mode 100644 index 772e6f938f0..00000000000 --- a/src/licensedcode/data/rules/false-positive_pd_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a pd mention in a a JS file but not a licensing statement diff --git a/src/licensedcode/data/rules/false-positive_pd_3.RULE b/src/licensedcode/data/rules/false-positive_pd_3.RULE index 55310833ee3..2064b81826a 100644 --- a/src/licensedcode/data/rules/false-positive_pd_3.RULE +++ b/src/licensedcode/data/rules/false-positive_pd_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not enough to be a license +--- + excellent public domain mem \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_pd_3.yml b/src/licensedcode/data/rules/false-positive_pd_3.yml deleted file mode 100644 index 55d882bd586..00000000000 --- a/src/licensedcode/data/rules/false-positive_pd_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not enough to be a license diff --git a/src/licensedcode/data/rules/false-positive_proprietary-license_1.RULE b/src/licensedcode/data/rules/false-positive_proprietary-license_1.RULE index 8224b74f8e3..fab15813512 100644 --- a/src/licensedcode/data/rules/false-positive_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/false-positive_proprietary-license_1.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: See in plan9 https://github.com/9fans/plan9port/blob/fa325e9b42b0bdfb48857d1958d9fb7ceac55151/src/cmd/postscript/download/download.c#L46 +--- + Host resident fonts are usually purchased under a license that restricts their use to a limited number of printers. A font licensed for a single printer should only be used on that printer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_proprietary-license_1.yml b/src/licensedcode/data/rules/false-positive_proprietary-license_1.yml deleted file mode 100644 index a243a4a6934..00000000000 --- a/src/licensedcode/data/rules/false-positive_proprietary-license_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: See in plan9 https://github.com/9fans/plan9port/blob/fa325e9b42b0bdfb48857d1958d9fb7ceac55151/src/cmd/postscript/download/download.c#L46 diff --git a/src/licensedcode/data/rules/false-positive_public-domain_1.RULE b/src/licensedcode/data/rules/false-positive_public-domain_1.RULE index 6fd839cacd7..ad506dc270d 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_1.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_1.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: a comment about what licenses should be used +--- + placed in the public domain (see this NEP as an example) or licensed under the `Open Publication License \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_1.yml b/src/licensedcode/data/rules/false-positive_public-domain_1.yml deleted file mode 100644 index ee2f3793636..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a comment about what licenses should be used diff --git a/src/licensedcode/data/rules/false-positive_public-domain_10.RULE b/src/licensedcode/data/rules/false-positive_public-domain_10.RULE index 67751bcbebd..c4fced39959 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_10.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_10.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public Domain(Long \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_10.yml b/src/licensedcode/data/rules/false-positive_public-domain_10.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_11.RULE b/src/licensedcode/data/rules/false-positive_public-domain_11.RULE index f4d795141bd..6ac8077d982 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_11.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_11.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public domain_error \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_11.yml b/src/licensedcode/data/rules/false-positive_public-domain_11.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_12.RULE b/src/licensedcode/data/rules/false-positive_public-domain_12.RULE index d2902fd0880..fb550044a3b 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_12.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_12.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + get_public_domain as \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_12.yml b/src/licensedcode/data/rules/false-positive_public-domain_12.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_13.RULE b/src/licensedcode/data/rules/false-positive_public-domain_13.RULE index f164f5a4a6f..3290723e5e6 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_13.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_13.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: a comment on past licensing +--- + SJCL used to be in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_13.yml b/src/licensedcode/data/rules/false-positive_public-domain_13.yml deleted file mode 100644 index e3b9cabb909..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a comment on past licensing diff --git a/src/licensedcode/data/rules/false-positive_public-domain_2.RULE b/src/licensedcode/data/rules/false-positive_public-domain_2.RULE index bcc643cdc91..a2f94bc6020 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_2.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_2.RULE @@ -1 +1,6 @@ -public Domain( int \ No newline at end of file +--- +is_false_positive: yes +notes: variable in code +--- + +public Domain( int \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_2.yml b/src/licensedcode/data/rules/false-positive_public-domain_2.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_3.RULE b/src/licensedcode/data/rules/false-positive_public-domain_3.RULE index 9509ff85796..5d35ae90cde 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_3.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public Domain(String \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_3.yml b/src/licensedcode/data/rules/false-positive_public-domain_3.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_4.RULE b/src/licensedcode/data/rules/false-positive_public-domain_4.RULE index ebdd47938d1..f5a4c737b9b 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_4.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public Domain.Devices \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_4.yml b/src/licensedcode/data/rules/false-positive_public-domain_4.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_5.RULE b/src/licensedcode/data/rules/false-positive_public-domain_5.RULE index 1aec765e96e..5439d02af3d 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_5.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public Domain createDomain \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_5.yml b/src/licensedcode/data/rules/false-positive_public-domain_5.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_6.RULE b/src/licensedcode/data/rules/false-positive_public-domain_6.RULE index 69f06828bda..b68f99d545c 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_6.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_6.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public.domain.code \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_6.yml b/src/licensedcode/data/rules/false-positive_public-domain_6.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_7.RULE b/src/licensedcode/data/rules/false-positive_public-domain_7.RULE index cad970fb9a7..21f3e3a0daa 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_7.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_7.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public Domain( Node \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_7.yml b/src/licensedcode/data/rules/false-positive_public-domain_7.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_8.RULE b/src/licensedcode/data/rules/false-positive_public-domain_8.RULE index 15f0e644428..857ed42c628 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_8.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_8.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public $domain_dependant; \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_8.yml b/src/licensedcode/data/rules/false-positive_public-domain_8.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_9.RULE b/src/licensedcode/data/rules/false-positive_public-domain_9.RULE index 50d63caa1f4..24b3c1c0914 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_9.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_9.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: variable in code +--- + public $domain; public $host \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_9.yml b/src/licensedcode/data/rules/false-positive_public-domain_9.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_in_cs_1.RULE b/src/licensedcode/data/rules/false-positive_public-domain_in_cs_1.RULE index cd4f0dc9066..472ef899dfe 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_in_cs_1.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_in_cs_1.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: variable in code +--- + value) {} public Domain() {} public \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_in_cs_1.yml b/src/licensedcode/data/rules/false-positive_public-domain_in_cs_1.yml deleted file mode 100644 index 195321e234e..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_in_cs_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: variable in code diff --git a/src/licensedcode/data/rules/false-positive_public-domain_in_vb_1.RULE b/src/licensedcode/data/rules/false-positive_public-domain_in_vb_1.RULE index bef711c8ad7..65e38c8e71c 100644 --- a/src/licensedcode/data/rules/false-positive_public-domain_in_vb_1.RULE +++ b/src/licensedcode/data/rules/false-positive_public-domain_in_vb_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: This is a variable declaration in Visual Basic, not a license statement of Public DOMAIN +--- + Public Domain as String \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_public-domain_in_vb_1.yml b/src/licensedcode/data/rules/false-positive_public-domain_in_vb_1.yml deleted file mode 100644 index b7963664854..00000000000 --- a/src/licensedcode/data/rules/false-positive_public-domain_in_vb_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: This is a variable declaration in Visual Basic, not a license statement of Public DOMAIN diff --git a/src/licensedcode/data/rules/false-positive_python_1.RULE b/src/licensedcode/data/rules/false-positive_python_1.RULE index 59c0255b528..4e0c3e93083 100644 --- a/src/licensedcode/data/rules/false-positive_python_1.RULE +++ b/src/licensedcode/data/rules/false-positive_python_1.RULE @@ -1,2 +1,8 @@ +--- +is_false_positive: yes +notes: this is a table header row for historical notes found in Python licenses history blurb + and is not a GPL license notice +--- + Release Derived Year Owner GPL- from compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_python_1.yml b/src/licensedcode/data/rules/false-positive_python_1.yml deleted file mode 100644 index 5f65affa1cf..00000000000 --- a/src/licensedcode/data/rules/false-positive_python_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -is_false_positive: yes -notes: this is a table header row for historical notes found in Python licenses history blurb - and is not a GPL license notice diff --git a/src/licensedcode/data/rules/false-positive_rcu_1.RULE b/src/licensedcode/data/rules/false-positive_rcu_1.RULE index 342b98c5ac1..d13d294d351 100644 --- a/src/licensedcode/data/rules/false-positive_rcu_1.RULE +++ b/src/licensedcode/data/rules/false-positive_rcu_1.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: this is a comment about licensing and not a license per se. +--- + this approach may be used in non-GPL software, if desired. (In contrast, implementation of RCU is permitted only in software licensed under either GPL or LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_rcu_1.yml b/src/licensedcode/data/rules/false-positive_rcu_1.yml deleted file mode 100644 index dffca21636d..00000000000 --- a/src/licensedcode/data/rules/false-positive_rcu_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: this is a comment about licensing and not a license per se. diff --git a/src/licensedcode/data/rules/false-positive_systemtap_1.RULE b/src/licensedcode/data/rules/false-positive_systemtap_1.RULE index 693840cd9b2..1f49328a5f6 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_1.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_1.RULE @@ -1 +1,6 @@ -offsets["mpl1 +--- +is_false_positive: yes +notes: systemtap symbols +--- + +offsets["mpl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_1.yml b/src/licensedcode/data/rules/false-positive_systemtap_1.yml deleted file mode 100644 index 1770fda4e58..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap symbols diff --git a/src/licensedcode/data/rules/false-positive_systemtap_10.RULE b/src/licensedcode/data/rules/false-positive_systemtap_10.RULE index 15cf5b3a94a..937fbb586a7 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_10.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_10.RULE @@ -1,3 +1,8 @@ +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + free software}{Software licensed under terms such as the GNU GPL, which aims to enforce certain specified user freedoms such -as study, modification, and sharing.} +as study, modification, and sharing.} \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_10.yml b/src/licensedcode/data/rules/false-positive_systemtap_10.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_systemtap_11.RULE b/src/licensedcode/data/rules/false-positive_systemtap_11.RULE index 1ae35f09ccb..49c96eefddf 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_11.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_11.RULE @@ -1 +1,6 @@ -select="info/legalnotice"/> +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + +select="info/legalnotice"/> \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_11.yml b/src/licensedcode/data/rules/false-positive_systemtap_11.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_systemtap_2.RULE b/src/licensedcode/data/rules/false-positive_systemtap_2.RULE index 5e440dfcf94..3724f52cbd9 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_2.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_2.RULE @@ -1 +1,6 @@ -select="docinfo/legalnotice"/> +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + +select="docinfo/legalnotice"/> \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_2.yml b/src/licensedcode/data/rules/false-positive_systemtap_2.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_systemtap_3.RULE b/src/licensedcode/data/rules/false-positive_systemtap_3.RULE index a88d48c3927..340ab73fa2e 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_3.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_3.RULE @@ -1 +1,6 @@ -offsets["mpl2 +--- +is_false_positive: yes +notes: systemtap symbols +--- + +offsets["mpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_3.yml b/src/licensedcode/data/rules/false-positive_systemtap_3.yml deleted file mode 100644 index 1770fda4e58..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap symbols diff --git a/src/licensedcode/data/rules/false-positive_systemtap_4.RULE b/src/licensedcode/data/rules/false-positive_systemtap_4.RULE index a162ce7df8d..8bc7f4d750d 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_4.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_4.RULE @@ -1 +1,6 @@ -select="prefaceinfo/legalnotice"/> +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + +select="prefaceinfo/legalnotice"/> \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_4.yml b/src/licensedcode/data/rules/false-positive_systemtap_4.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_systemtap_5.RULE b/src/licensedcode/data/rules/false-positive_systemtap_5.RULE index 4fe52e6102b..16aa2f4c39e 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_5.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + template match="legalnotice \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_5.yml b/src/licensedcode/data/rules/false-positive_systemtap_5.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_systemtap_6.RULE b/src/licensedcode/data/rules/false-positive_systemtap_6.RULE index 774d7bdc8bc..327f45396dd 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_6.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_6.RULE @@ -1 +1,6 @@ -select="articleinfo/legalnotice"/> +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + +select="articleinfo/legalnotice"/> \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_6.yml b/src/licensedcode/data/rules/false-positive_systemtap_6.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_systemtap_7.RULE b/src/licensedcode/data/rules/false-positive_systemtap_7.RULE index 762607578f4..8b4169c16a9 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_7.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_7.RULE @@ -1 +1,6 @@ -select="artheader/legalnotice"/> +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + +select="artheader/legalnotice"/> \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_7.yml b/src/licensedcode/data/rules/false-positive_systemtap_7.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_systemtap_8.RULE b/src/licensedcode/data/rules/false-positive_systemtap_8.RULE index b97fdc44fe1..e19dd319ceb 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_8.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_8.RULE @@ -1 +1,6 @@ -select="bookinfo/legalnotice"/> +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + +select="bookinfo/legalnotice"/> \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_8.yml b/src/licensedcode/data/rules/false-positive_systemtap_8.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_systemtap_9.RULE b/src/licensedcode/data/rules/false-positive_systemtap_9.RULE index 4f7fc2c7482..184d1f01cf8 100644 --- a/src/licensedcode/data/rules/false-positive_systemtap_9.RULE +++ b/src/licensedcode/data/rules/false-positive_systemtap_9.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: systemtap doc on licensing +--- + test="$generate.legalnotice \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_systemtap_9.yml b/src/licensedcode/data/rules/false-positive_systemtap_9.yml deleted file mode 100644 index 126906579e5..00000000000 --- a/src/licensedcode/data/rules/false-positive_systemtap_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: systemtap doc on licensing diff --git a/src/licensedcode/data/rules/false-positive_uboot_1.RULE b/src/licensedcode/data/rules/false-positive_uboot_1.RULE index 0512a63b7d7..ec9297d8e72 100644 --- a/src/licensedcode/data/rules/false-positive_uboot_1.RULE +++ b/src/licensedcode/data/rules/false-positive_uboot_1.RULE @@ -1 +1,6 @@ -in a source file the full "GPL v2.0 or later" header \ No newline at end of file +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +in a source file the full "GPL v2.0 or later" header \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_uboot_1.yml b/src/licensedcode/data/rules/false-positive_uboot_1.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_uboot_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_uboot_2.RULE b/src/licensedcode/data/rules/false-positive_uboot_2.RULE index d5ea4ea0762..f41604841ef 100644 --- a/src/licensedcode/data/rules/false-positive_uboot_2.RULE +++ b/src/licensedcode/data/rules/false-positive_uboot_2.RULE @@ -1 +1,6 @@ -the Linux Foundation's SPDX project [ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + +the Linux Foundation's SPDX project [ \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_uboot_2.yml b/src/licensedcode/data/rules/false-positive_uboot_2.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_uboot_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_uboot_3.RULE b/src/licensedcode/data/rules/false-positive_uboot_3.RULE index 60771dfa2df..cb2bb20e66b 100644 --- a/src/licensedcode/data/rules/false-positive_uboot_3.RULE +++ b/src/licensedcode/data/rules/false-positive_uboot_3.RULE @@ -1,2 +1,7 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Also note that the GPL and the other licenses are copyrighted by - the Free Software Foundation and other organizations + the Free Software Foundation and other organizations \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_uboot_3.yml b/src/licensedcode/data/rules/false-positive_uboot_3.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_uboot_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_uboot_4.RULE b/src/licensedcode/data/rules/false-positive_uboot_4.RULE index a2ec3151350..4c031c3847a 100644 --- a/src/licensedcode/data/rules/false-positive_uboot_4.RULE +++ b/src/licensedcode/data/rules/false-positive_uboot_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + Information] [required] [to] instantiate \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_uboot_4.yml b/src/licensedcode/data/rules/false-positive_uboot_4.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_uboot_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_uboot_5.RULE b/src/licensedcode/data/rules/false-positive_uboot_5.RULE index e14c36f7b6e..52e9bd6d034 100644 --- a/src/licensedcode/data/rules/false-positive_uboot_5.RULE +++ b/src/licensedcode/data/rules/false-positive_uboot_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + net2big_v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_uboot_5.yml b/src/licensedcode/data/rules/false-positive_uboot_5.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/src/licensedcode/data/rules/false-positive_uboot_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/false-positive_unknown-license-reference_1.RULE index 009ab1341e7..d60dda945e2 100644 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown-license-reference_1.RULE @@ -1 +1,6 @@ -Even old ones like have GPL, not LGPL, licenses. +--- +is_false_positive: yes +notes: a comment about other licenses +--- + +Even old ones like have GPL, not LGPL, licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_1.yml b/src/licensedcode/data/rules/false-positive_unknown-license-reference_1.yml deleted file mode 100644 index 8492cb1150f..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: a comment about other licenses diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_2.RULE b/src/licensedcode/data/rules/false-positive_unknown-license-reference_2.RULE index 60e02b5b680..68f38524e7a 100644 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_2.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown-license-reference_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in libmagic +--- + This fine freeware file(1) follows the USG (System V) model of the file \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_2.yml b/src/licensedcode/data/rules/false-positive_unknown-license-reference_2.yml deleted file mode 100644 index 8f76c6bae04..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in libmagic diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_3.RULE b/src/licensedcode/data/rules/false-positive_unknown-license-reference_3.RULE index 8e5bcacf22b..3c801d4cb6b 100644 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_3.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown-license-reference_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in libmagic +--- + A plug in for Winamp ms-windows Freeware media player \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_3.yml b/src/licensedcode/data/rules/false-positive_unknown-license-reference_3.yml deleted file mode 100644 index 8f76c6bae04..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in libmagic diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_4.RULE b/src/licensedcode/data/rules/false-positive_unknown-license-reference_4.RULE index fd5bdce51b4..1ef9a680207 100644 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_4.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown-license-reference_4.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in libmagic +--- + mime text/x-gimp-gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_4.yml b/src/licensedcode/data/rules/false-positive_unknown-license-reference_4.yml deleted file mode 100644 index 8f76c6bae04..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in libmagic diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_5.RULE b/src/licensedcode/data/rules/false-positive_unknown-license-reference_5.RULE index 9a379552e08..df5b31466c5 100644 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_5.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown-license-reference_5.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in libmagic +--- + text/x-gimp-gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_5.yml b/src/licensedcode/data/rules/false-positive_unknown-license-reference_5.yml deleted file mode 100644 index 8f76c6bae04..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in libmagic diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_6.RULE b/src/licensedcode/data/rules/false-positive_unknown-license-reference_6.RULE index c7fd1d993d5..fe492e5bc12 100644 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_6.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown-license-reference_6.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: Seen in libmagic +--- + ext gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown-license-reference_6.yml b/src/licensedcode/data/rules/false-positive_unknown-license-reference_6.yml deleted file mode 100644 index 8f76c6bae04..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown-license-reference_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: Seen in libmagic diff --git a/src/licensedcode/data/rules/false-positive_unknown_1.RULE b/src/licensedcode/data/rules/false-positive_unknown_1.RULE index 413ab2cf698..d4ae5f283f8 100644 --- a/src/licensedcode/data/rules/false-positive_unknown_1.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown_1.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + Choose An Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown_1.yml b/src/licensedcode/data/rules/false-positive_unknown_1.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_unknown_2.RULE b/src/licensedcode/data/rules/false-positive_unknown_2.RULE index 3bc220b1265..76312427a7a 100644 --- a/src/licensedcode/data/rules/false-positive_unknown_2.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown_2.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license +--- + License name the video is licensed under \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown_2.yml b/src/licensedcode/data/rules/false-positive_unknown_2.yml deleted file mode 100644 index 30fdf1ae40f..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license diff --git a/src/licensedcode/data/rules/false-positive_unknown_3.RULE b/src/licensedcode/data/rules/false-positive_unknown_3.RULE index 34fbcec36fe..fcad4f08fad 100644 --- a/src/licensedcode/data/rules/false-positive_unknown_3.RULE +++ b/src/licensedcode/data/rules/false-positive_unknown_3.RULE @@ -1 +1,6 @@ +--- +is_false_positive: yes +notes: not a license, but the inclusion of a license file reference +--- + None Include="LICENSE" \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_unknown_3.yml b/src/licensedcode/data/rules/false-positive_unknown_3.yml deleted file mode 100644 index 93b983f990d..00000000000 --- a/src/licensedcode/data/rules/false-positive_unknown_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: not a license, but the inclusion of a license file reference diff --git a/src/licensedcode/data/rules/false-positive_wxpy_1.RULE b/src/licensedcode/data/rules/false-positive_wxpy_1.RULE index e1d26396b99..517736e8479 100644 --- a/src/licensedcode/data/rules/false-positive_wxpy_1.RULE +++ b/src/licensedcode/data/rules/false-positive_wxpy_1.RULE @@ -1 +1,6 @@ -DOCDIR)/lgpl.txt +--- +is_false_positive: yes +notes: seen in wxpython +--- + +DOCDIR)/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/false-positive_wxpy_1.yml b/src/licensedcode/data/rules/false-positive_wxpy_1.yml deleted file mode 100644 index ec35c861d09..00000000000 --- a/src/licensedcode/data/rules/false-positive_wxpy_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in wxpython diff --git a/src/licensedcode/data/rules/fastcgi-devkit_1.RULE b/src/licensedcode/data/rules/fastcgi-devkit_1.RULE index 7699bf0b27a..a19df87d22a 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_1.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_1.RULE @@ -1 +1,10 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Market License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_1.yml b/src/licensedcode/data/rules/fastcgi-devkit_1.yml deleted file mode 100644 index 78f66e5f4d3..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fastcgi-devkit_10.RULE b/src/licensedcode/data/rules/fastcgi-devkit_10.RULE index cafab6ee778..390edd90022 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_10.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_10.RULE @@ -1 +1,9 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OML +--- + {{OML}} https://spdx.org/licenses/OML \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_10.yml b/src/licensedcode/data/rules/fastcgi-devkit_10.yml deleted file mode 100644 index 9c2f454d731..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OML diff --git a/src/licensedcode/data/rules/fastcgi-devkit_11.RULE b/src/licensedcode/data/rules/fastcgi-devkit_11.RULE index 2b09b26e22d..b5b817318d8 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_11.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_11.RULE @@ -1 +1,9 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OML +--- + LICENSE {{OML}} https://spdx.org/licenses/OML \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_11.yml b/src/licensedcode/data/rules/fastcgi-devkit_11.yml deleted file mode 100644 index 9c2f454d731..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OML diff --git a/src/licensedcode/data/rules/fastcgi-devkit_2.RULE b/src/licensedcode/data/rules/fastcgi-devkit_2.RULE index d399cc55596..db5925af41f 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_2.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_2.RULE @@ -1 +1,10 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Market License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_2.yml b/src/licensedcode/data/rules/fastcgi-devkit_2.yml deleted file mode 100644 index 78f66e5f4d3..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fastcgi-devkit_3.RULE b/src/licensedcode/data/rules/fastcgi-devkit_3.RULE index d3883253e43..9680d61aee0 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_3.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_3.RULE @@ -1 +1,10 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OML Open Market License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_3.yml b/src/licensedcode/data/rules/fastcgi-devkit_3.yml deleted file mode 100644 index 78f66e5f4d3..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fastcgi-devkit_4.RULE b/src/licensedcode/data/rules/fastcgi-devkit_4.RULE index 86555cc870a..df18c4c49ee 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_4.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_4.RULE @@ -1 +1,10 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Market License OML \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_4.yml b/src/licensedcode/data/rules/fastcgi-devkit_4.yml deleted file mode 100644 index 78f66e5f4d3..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fastcgi-devkit_5.RULE b/src/licensedcode/data/rules/fastcgi-devkit_5.RULE index 4d2683d8054..c8f5cfd4022 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_5.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_5.RULE @@ -1 +1,10 @@ +--- +license_expression: fastcgi-devkit +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OML \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_5.yml b/src/licensedcode/data/rules/fastcgi-devkit_5.yml deleted file mode 100644 index 31e6e00dd34..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fastcgi-devkit -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fastcgi-devkit_6.RULE b/src/licensedcode/data/rules/fastcgi-devkit_6.RULE index 29fe23e79a9..40adc5c471c 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_6.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_6.RULE @@ -1 +1,10 @@ +--- +license_expression: fastcgi-devkit +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Market License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_6.yml b/src/licensedcode/data/rules/fastcgi-devkit_6.yml deleted file mode 100644 index 31e6e00dd34..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fastcgi-devkit -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fastcgi-devkit_7.RULE b/src/licensedcode/data/rules/fastcgi-devkit_7.RULE index 6e5e10b1b5a..c28c2a1501d 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_7.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_7.RULE @@ -1 +1,10 @@ +--- +license_expression: fastcgi-devkit +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OML \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_7.yml b/src/licensedcode/data/rules/fastcgi-devkit_7.yml deleted file mode 100644 index 31e6e00dd34..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fastcgi-devkit -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fastcgi-devkit_8.RULE b/src/licensedcode/data/rules/fastcgi-devkit_8.RULE index 93ca9d0a71c..5f030c26dfe 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_8.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_8.RULE @@ -1 +1,9 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OML +--- + https://licenses.nuget.org/OML \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_8.yml b/src/licensedcode/data/rules/fastcgi-devkit_8.yml deleted file mode 100644 index 18d294537f6..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OML diff --git a/src/licensedcode/data/rules/fastcgi-devkit_9.RULE b/src/licensedcode/data/rules/fastcgi-devkit_9.RULE index c9dfce8ad4e..042b4f73b7e 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_9.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_9.RULE @@ -1 +1,7 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OML \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_9.yml b/src/licensedcode/data/rules/fastcgi-devkit_9.yml deleted file mode 100644 index 3408d1c07eb..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fastcgi-devkit_url_1.RULE b/src/licensedcode/data/rules/fastcgi-devkit_url_1.RULE index 4c594753886..8789b61ede0 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_url_1.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oml +--- + https://spdx.org/licenses/oml \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_url_1.yml b/src/licensedcode/data/rules/fastcgi-devkit_url_1.yml deleted file mode 100644 index 85e358609ce..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oml diff --git a/src/licensedcode/data/rules/fastcgi-devkit_url_2.RULE b/src/licensedcode/data/rules/fastcgi-devkit_url_2.RULE index e5d37bfb11a..5e53de86218 100644 --- a/src/licensedcode/data/rules/fastcgi-devkit_url_2.RULE +++ b/src/licensedcode/data/rules/fastcgi-devkit_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: fastcgi-devkit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oml.html +--- + https://spdx.org/licenses/oml.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fastcgi-devkit_url_2.yml b/src/licensedcode/data/rules/fastcgi-devkit_url_2.yml deleted file mode 100644 index 624d14c9084..00000000000 --- a/src/licensedcode/data/rules/fastcgi-devkit_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fastcgi-devkit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oml.html diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_1.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_1.RULE index 7169e1867df..9274e3c3d06 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_1.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Fawkes Runtime Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_1.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_1.yml deleted file mode 100644 index b9fab863067..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_2.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_2.RULE index 14adcf83d57..1d39327e84b 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_2.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Fawkes-Runtime-exception Fawkes Runtime Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_2.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_2.yml deleted file mode 100644 index b9fab863067..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_3.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_3.RULE index 8005800f366..d80322a9726 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_3.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: fawkes-runtime-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Fawkes-Runtime-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_3.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_3.yml deleted file mode 100644 index 0c372c1f166..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_4.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_4.RULE index 34c2fac0ae1..bf28f7a39e7 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_4.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: fawkes-runtime-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Fawkes-Runtime-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_4.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_4.yml deleted file mode 100644 index 0c372c1f166..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_5.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_5.RULE index 7a4d2db1d5f..9e3e3841b5a 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_5.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_5.RULE @@ -1 +1,9 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Fawkes-Runtime-exception +--- + https://licenses.nuget.org/Fawkes-Runtime-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_5.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_5.yml deleted file mode 100644 index 9249085eedb..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Fawkes-Runtime-exception diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_6.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_6.RULE index aa17d2e9e7c..7337dabc70e 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_6.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_6.RULE @@ -1 +1,7 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Fawkes-Runtime-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_6.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_6.yml deleted file mode 100644 index 328018f70cc..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_7.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_7.RULE index ce3e8f04a6c..b745253ed0d 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_7.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_7.RULE @@ -1 +1,9 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Fawkes-Runtime-exception +--- + {{Fawkes-Runtime-exception}} https://spdx.org/licenses/Fawkes-Runtime-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_7.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_7.yml deleted file mode 100644 index 2d8d6d036bd..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Fawkes-Runtime-exception diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_8.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_8.RULE index b9391c02b91..eeb71d23247 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_8.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Fawkes-Runtime-exception +--- + LICENSE {{Fawkes-Runtime-exception}} https://spdx.org/licenses/Fawkes-Runtime-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_8.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_8.yml deleted file mode 100644 index 2d8d6d036bd..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Fawkes-Runtime-exception diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_url_1.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_url_1.RULE index a6214706844..c6128989620 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_url_1.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fawkes-runtime-exception +--- + https://spdx.org/licenses/fawkes-runtime-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_url_1.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_url_1.yml deleted file mode 100644 index fc3e8329e79..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fawkes-runtime-exception diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_url_2.RULE b/src/licensedcode/data/rules/fawkes-runtime-exception_url_2.RULE index e5ce47fbc51..803e8931180 100644 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_url_2.RULE +++ b/src/licensedcode/data/rules/fawkes-runtime-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fawkes-runtime-exception.html +--- + https://spdx.org/licenses/fawkes-runtime-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fawkes-runtime-exception_url_2.yml b/src/licensedcode/data/rules/fawkes-runtime-exception_url_2.yml deleted file mode 100644 index 4d5ec4db3aa..00000000000 --- a/src/licensedcode/data/rules/fawkes-runtime-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fawkes-runtime-exception.html diff --git a/src/licensedcode/data/rules/fdl-1.1_prep.ai.mit.edu.RULE b/src/licensedcode/data/rules/fdl-1.1_prep.ai.mit.edu.RULE index a03f6040394..a2207b4a3b1 100644 --- a/src/licensedcode/data/rules/fdl-1.1_prep.ai.mit.edu.RULE +++ b/src/licensedcode/data/rules/fdl-1.1_prep.ai.mit.edu.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gfdl-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://www.gnu.org/licenses +--- + GNU Free Documentation License Version 1.1, March 2000 @@ -352,4 +363,4 @@ Front-Cover Texts, write "no Front-Cover Texts" instead of If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fdl-1.1_prep.ai.mit.edu.yml b/src/licensedcode/data/rules/fdl-1.1_prep.ai.mit.edu.yml deleted file mode 100644 index bf3d62d16a6..00000000000 --- a/src/licensedcode/data/rules/fdl-1.1_prep.ai.mit.edu.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gfdl-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/fdl-1.2_prep.ai.mit.edu.RULE b/src/licensedcode/data/rules/fdl-1.2_prep.ai.mit.edu.RULE index 68d93f4f67f..e84e96b0101 100644 --- a/src/licensedcode/data/rules/fdl-1.2_prep.ai.mit.edu.RULE +++ b/src/licensedcode/data/rules/fdl-1.2_prep.ai.mit.edu.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gfdl-1.2 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://www.gnu.org/licenses +--- + GNU Free Documentation License Version 1.2, November 2002 @@ -394,4 +405,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fdl-1.2_prep.ai.mit.edu.yml b/src/licensedcode/data/rules/fdl-1.2_prep.ai.mit.edu.yml deleted file mode 100644 index e900bb258d2..00000000000 --- a/src/licensedcode/data/rules/fdl-1.2_prep.ai.mit.edu.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gfdl-1.2 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/fdl-1.3_prep.ai.mit.edu.RULE b/src/licensedcode/data/rules/fdl-1.3_prep.ai.mit.edu.RULE index bf128beb0f9..e304e7a07f8 100644 --- a/src/licensedcode/data/rules/fdl-1.3_prep.ai.mit.edu.RULE +++ b/src/licensedcode/data/rules/fdl-1.3_prep.ai.mit.edu.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gfdl-1.3 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ + - https://www.gnu.org/licenses +--- + GNU Free Documentation License Version 1.3, 3 November 2008 @@ -448,4 +460,4 @@ situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, -to permit their use in free software. +to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fdl-1.3_prep.ai.mit.edu.yml b/src/licensedcode/data/rules/fdl-1.3_prep.ai.mit.edu.yml deleted file mode 100644 index 2332c2733f4..00000000000 --- a/src/licensedcode/data/rules/fdl-1.3_prep.ai.mit.edu.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gfdl-1.3 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/fedora-red-hat-exception-2.0_1.RULE b/src/licensedcode/data/rules/fedora-red-hat-exception-2.0_1.RULE index 826845ac2d5..f8b672870d3 100644 --- a/src/licensedcode/data/rules/fedora-red-hat-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/fedora-red-hat-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH 389-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -26,4 +33,4 @@ extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to provide this exception without modification, you must delete this exception statement from your version - and license this file solely under the GPL without exception. + and license this file solely under the GPL without exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fedora-red-hat-exception-2.0_1.yml b/src/licensedcode/data/rules/fedora-red-hat-exception-2.0_1.yml deleted file mode 100644 index e6462587ea5..00000000000 --- a/src/licensedcode/data/rules/fedora-red-hat-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH 389-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/fftpack-2004_1.RULE b/src/licensedcode/data/rules/fftpack-2004_1.RULE index d1a302113b7..0759dacfa31 100644 --- a/src/licensedcode/data/rules/fftpack-2004_1.RULE +++ b/src/licensedcode/data/rules/fftpack-2004_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: fftpack-2004 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2004 the University Corporation for Atmospheric Research 'UCAR +ignorable_holders: + - the University Corporation for Atmospheric Research 'UCAR +ignorable_authors: + - NCAR's Computational and Information Systems Laboratory, UCAR, www.cisl.ucar.edu +ignorable_urls: + - http://www.cisl.ucar.edu/ + - http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html +--- + As confirmed by the NCAR fftpack software curators, the following FFTPACKv5 license applies to FFTPACKv4 sources. My changes are released under the same terms. diff --git a/src/licensedcode/data/rules/fftpack-2004_1.yml b/src/licensedcode/data/rules/fftpack-2004_1.yml deleted file mode 100644 index 6a2efd66713..00000000000 --- a/src/licensedcode/data/rules/fftpack-2004_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: fftpack-2004 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2004 the University Corporation for Atmospheric Research 'UCAR -ignorable_holders: - - the University Corporation for Atmospheric Research 'UCAR -ignorable_authors: - - NCAR's Computational and Information Systems Laboratory, UCAR, www.cisl.ucar.edu -ignorable_urls: - - http://www.cisl.ucar.edu/ - - http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html diff --git a/src/licensedcode/data/rules/flex-2.5.RULE b/src/licensedcode/data/rules/flex-2.5.RULE index ecd43f92907..681979590fc 100644 --- a/src/licensedcode/data/rules/flex-2.5.RULE +++ b/src/licensedcode/data/rules/flex-2.5.RULE @@ -1 +1,8 @@ +--- +license_expression: flex-2.5 +is_license_reference: yes +ignorable_urls: + - http://www.cs.cmu.edu/afs/cs/project/ai-repository-9/ai/areas/nlp/parsing/flex/copying.txt +--- + http://www.cs.cmu.edu/afs/cs/project/ai-repository-9/ai/areas/nlp/parsing/flex/copying.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/flex-2.5.yml b/src/licensedcode/data/rules/flex-2.5.yml deleted file mode 100644 index 7c4f23a2659..00000000000 --- a/src/licensedcode/data/rules/flex-2.5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: flex-2.5 -is_license_reference: yes -ignorable_urls: - - http://www.cs.cmu.edu/afs/cs/project/ai-repository-9/ai/areas/nlp/parsing/flex/copying.txt diff --git a/src/licensedcode/data/rules/flex-2.5_1.RULE b/src/licensedcode/data/rules/flex-2.5_1.RULE index cc18e341b84..c3a8cdddff9 100644 --- a/src/licensedcode/data/rules/flex-2.5_1.RULE +++ b/src/licensedcode/data/rules/flex-2.5_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: flex-2.5 +is_license_notice: yes +minimum_coverage: 80 +notes: A usage of the Flex License with additional commentary. +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + Flex carries the copyright used for BSD software, slightly modified because it originated at the Lawrence Berkeley (not Livermore!) Laboratory, which operates under a contract with the Department of Energy: diff --git a/src/licensedcode/data/rules/flex-2.5_1.yml b/src/licensedcode/data/rules/flex-2.5_1.yml deleted file mode 100644 index 2e832a3b0b6..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: flex-2.5 -is_license_notice: yes -minimum_coverage: 80 -notes: A usage of the Flex License with additional commentary. -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/flex-2.5_10.RULE b/src/licensedcode/data/rules/flex-2.5_10.RULE index eac4c547c49..90d53f2ee58 100644 --- a/src/licensedcode/data/rules/flex-2.5_10.RULE +++ b/src/licensedcode/data/rules/flex-2.5_10.RULE @@ -1 +1,8 @@ +--- +license_expression: flex-2.5 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + This file is part of flex. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/flex-2.5_10.yml b/src/licensedcode/data/rules/flex-2.5_10.yml deleted file mode 100644 index 00b7809b976..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: flex-2.5 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/flex-2.5_2.RULE b/src/licensedcode/data/rules/flex-2.5_2.RULE index ae8e1b08ef4..1edd3f534f0 100644 --- a/src/licensedcode/data/rules/flex-2.5_2.RULE +++ b/src/licensedcode/data/rules/flex-2.5_2.RULE @@ -1 +1,10 @@ +--- +license_expression: flex-2.5 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.cs.princeton.edu/~appel/modern/c/software/flex/flex.html +--- + http://www.cs.princeton.edu/~appel/modern/c/software/flex/flex.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/flex-2.5_2.yml b/src/licensedcode/data/rules/flex-2.5_2.yml deleted file mode 100644 index f19bb3d2e97..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: flex-2.5 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.cs.princeton.edu/~appel/modern/c/software/flex/flex.html diff --git a/src/licensedcode/data/rules/flex-2.5_3.RULE b/src/licensedcode/data/rules/flex-2.5_3.RULE index 46156330868..becbd093e04 100644 --- a/src/licensedcode/data/rules/flex-2.5_3.RULE +++ b/src/licensedcode/data/rules/flex-2.5_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: flex-2.5 +is_license_notice: yes +minimum_coverage: 80 +notes: A usage of the Flex License with additional commentary. +--- + Flex carries the copyright used for BSD software, slightly modified because it originated at the Lawrence Berkeley (not Livermore!) Laboratory, -which operates under a contract with the Department of Energy: +which operates under a contract with the Department of Energy: \ No newline at end of file diff --git a/src/licensedcode/data/rules/flex-2.5_3.yml b/src/licensedcode/data/rules/flex-2.5_3.yml deleted file mode 100644 index 94f34e2362b..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: flex-2.5 -is_license_notice: yes -minimum_coverage: 80 -notes: A usage of the Flex License with additional commentary. diff --git a/src/licensedcode/data/rules/flex-2.5_4.RULE b/src/licensedcode/data/rules/flex-2.5_4.RULE index b665ccf5cdc..ad49cffe62f 100644 --- a/src/licensedcode/data/rules/flex-2.5_4.RULE +++ b/src/licensedcode/data/rules/flex-2.5_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: flex-2.5 +is_license_text: yes +minimum_coverage: 90 +notes: A usage of the Flex License with additional commentary. +--- + The United States Government has rights in this work pursuant to contract no. DE-AC03-76SF00098 between the United States Department of Energy and the University of California. @@ -19,5 +26,4 @@ without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. - +PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/flex-2.5_4.yml b/src/licensedcode/data/rules/flex-2.5_4.yml deleted file mode 100644 index d2a0ed89c6d..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: flex-2.5 -is_license_text: yes -minimum_coverage: 90 -notes: A usage of the Flex License with additional commentary. diff --git a/src/licensedcode/data/rules/flex-2.5_5.RULE b/src/licensedcode/data/rules/flex-2.5_5.RULE index e58bad4809d..acecae77b7c 100644 --- a/src/licensedcode/data/rules/flex-2.5_5.RULE +++ b/src/licensedcode/data/rules/flex-2.5_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: flex-2.5 +is_license_notice: yes +minimum_coverage: 80 +notes: A usage of the Flex License with additional commentary. +--- + Note that flex is distributed under a copyright very similar to that of BSD Unix, and not under the GNU General Public License (GPL). @@ -24,4 +31,4 @@ without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. +PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/flex-2.5_5.yml b/src/licensedcode/data/rules/flex-2.5_5.yml deleted file mode 100644 index 94f34e2362b..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: flex-2.5 -is_license_notice: yes -minimum_coverage: 80 -notes: A usage of the Flex License with additional commentary. diff --git a/src/licensedcode/data/rules/flex-2.5_6.RULE b/src/licensedcode/data/rules/flex-2.5_6.RULE index cfc8a82138a..b971147ea06 100644 --- a/src/licensedcode/data/rules/flex-2.5_6.RULE +++ b/src/licensedcode/data/rules/flex-2.5_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: flex-2.5 +is_license_text: yes +relevance: 100 +notes: https://sources.debian.org/src/netkit-telnet-ssl/0.17.41+0.2-3.2/debian/patches/500-implement_ssl.diff/?hl=1612 + This has no header +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + Redistribution and use in source and binary forms are permitted provided that: (1) source distributions retain this entire copyright notice and comment, and (2) distributions including binaries display the following acknowledgement: "This product diff --git a/src/licensedcode/data/rules/flex-2.5_6.yml b/src/licensedcode/data/rules/flex-2.5_6.yml deleted file mode 100644 index 53d789c4611..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: flex-2.5 -is_license_text: yes -relevance: 100 -notes: https://sources.debian.org/src/netkit-telnet-ssl/0.17.41+0.2-3.2/debian/patches/500-implement_ssl.diff/?hl=1612 - This has no header -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/flex-2.5_7.RULE b/src/licensedcode/data/rules/flex-2.5_7.RULE index 7fb6baa0970..cb7cf1e04d3 100644 --- a/src/licensedcode/data/rules/flex-2.5_7.RULE +++ b/src/licensedcode/data/rules/flex-2.5_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: flex-2.5 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + The United States Government has rights in this work pursuant */ to contract no. DE-AC03-76SF00098 between the United States */ Department of Energy and the University of California. */ diff --git a/src/licensedcode/data/rules/flex-2.5_7.yml b/src/licensedcode/data/rules/flex-2.5_7.yml deleted file mode 100644 index 3f94eb6b011..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: flex-2.5 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/flex-2.5_8.RULE b/src/licensedcode/data/rules/flex-2.5_8.RULE index f9bba13a9d8..322567da17e 100644 --- a/src/licensedcode/data/rules/flex-2.5_8.RULE +++ b/src/licensedcode/data/rules/flex-2.5_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: flex-2.5 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + This file is part of flex. */ Redistribution and use in source and binary forms, with or without */ diff --git a/src/licensedcode/data/rules/flex-2.5_8.yml b/src/licensedcode/data/rules/flex-2.5_8.yml deleted file mode 100644 index 3f94eb6b011..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: flex-2.5 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/flex-2.5_9.RULE b/src/licensedcode/data/rules/flex-2.5_9.RULE index ae0c0128560..9deb0388170 100644 --- a/src/licensedcode/data/rules/flex-2.5_9.RULE +++ b/src/licensedcode/data/rules/flex-2.5_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: flex-2.5 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + Redistribution and use in source and binary forms, with or without */ modification, are permitted provided that the following conditions */ are met: */ diff --git a/src/licensedcode/data/rules/flex-2.5_9.yml b/src/licensedcode/data/rules/flex-2.5_9.yml deleted file mode 100644 index 3f94eb6b011..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: flex-2.5 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/flex-2.5_not_gpl.RULE b/src/licensedcode/data/rules/flex-2.5_not_gpl.RULE index e57b92bfd48..294e71fea4a 100644 --- a/src/licensedcode/data/rules/flex-2.5_not_gpl.RULE +++ b/src/licensedcode/data/rules/flex-2.5_not_gpl.RULE @@ -1,2 +1,8 @@ +--- +license_expression: flex-2.5 +is_license_notice: yes +minimum_coverage: 90 +--- + Note that flex is distributed under a copyright very similar to that of BSD Unix, and not under the GNU General Public License (GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/flex-2.5_not_gpl.yml b/src/licensedcode/data/rules/flex-2.5_not_gpl.yml deleted file mode 100644 index 765c1cd18e7..00000000000 --- a/src/licensedcode/data/rules/flex-2.5_not_gpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: flex-2.5 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/flex2sdk.RULE b/src/licensedcode/data/rules/flex2sdk.RULE index 1819fc38395..517acb0b2cc 100644 --- a/src/licensedcode/data/rules/flex2sdk.RULE +++ b/src/licensedcode/data/rules/flex2sdk.RULE @@ -1 +1,9 @@ +--- +license_expression: flex2sdk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://labs.adobe.com/technologies/eula/flex2sdk.html +--- + http://labs.adobe.com/technologies/eula/flex2sdk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/flex2sdk.yml b/src/licensedcode/data/rules/flex2sdk.yml deleted file mode 100644 index abf64d597f3..00000000000 --- a/src/licensedcode/data/rules/flex2sdk.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: flex2sdk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://labs.adobe.com/technologies/eula/flex2sdk.html diff --git a/src/licensedcode/data/rules/flora-1.1_1.RULE b/src/licensedcode/data/rules/flora-1.1_1.RULE index 8958fb87d3b..2df42709a31 100644 --- a/src/licensedcode/data/rules/flora-1.1_1.RULE +++ b/src/licensedcode/data/rules/flora-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: flora-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://floralicense.org/license +--- + http://floralicense.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/flora-1.1_1.yml b/src/licensedcode/data/rules/flora-1.1_1.yml deleted file mode 100644 index 66e9afef62d..00000000000 --- a/src/licensedcode/data/rules/flora-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: flora-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://floralicense.org/license diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_1.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_1.RULE index 2e5dfa18097..4f9be29f7fe 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.fltk.org/ +ignorable_emails: + - fltk-bugs@fltk.org +--- + FLTK License December 11, 2001 diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_1.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_1.yml deleted file mode 100644 index 2712f6c038f..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.fltk.org/ -ignorable_emails: - - fltk-bugs@fltk.org diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_2.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_2.RULE index 861d2b60ed0..bcf054c99e8 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + FLTK-exception FLTK exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_2.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_2.yml deleted file mode 100644 index 2134a3f9122..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_3.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_3.RULE index 16492e7a673..574719d0b03 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: FLTK exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_3.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_3.yml deleted file mode 100644 index 8045b8e1977..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_4.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_4.RULE index 38b90be4f5a..cf113258fe0 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FLTK-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_4.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_4.yml deleted file mode 100644 index 0ef591a2080..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_5.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_5.RULE index 6e5658fb88e..b804baec535 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: FLTK-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_5.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_5.yml deleted file mode 100644 index 0ef591a2080..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_6.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_6.RULE index 24cad947d90..a699a927dc5 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/FLTK-exception +--- + https://licenses.nuget.org/FLTK-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_6.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_6.yml deleted file mode 100644 index c5c553b8ccd..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/FLTK-exception diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_7.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_7.RULE index 89eb7cac8dd..ff48fec7b6f 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/FLTK-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_7.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_7.yml deleted file mode 100644 index 991a2c6a22d..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_8.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_8.RULE index 904d5df10de..3c999bc6fe8 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FLTK-exception +--- + {{FLTK-exception}} https://spdx.org/licenses/FLTK-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_8.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_8.yml deleted file mode 100644 index ecc67791a6d..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FLTK-exception diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_9.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_9.RULE index 86c0122b5d2..27ad8d2fad6 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FLTK-exception +--- + LICENSE {{FLTK-exception}} https://spdx.org/licenses/FLTK-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_9.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_9.yml deleted file mode 100644 index ecc67791a6d..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FLTK-exception diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_1.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_1.RULE index 4978654ab36..8cbf64dbfce 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fltk-exception +--- + https://spdx.org/licenses/fltk-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_1.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_1.yml deleted file mode 100644 index b6e3a2a89f9..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fltk-exception diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_2.RULE b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_2.RULE index 3fe44480d2b..0a09b337eff 100644 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fltk-exception.html +--- + https://spdx.org/licenses/fltk-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_2.yml b/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_2.yml deleted file mode 100644 index 7e0a2b62372..00000000000 --- a/src/licensedcode/data/rules/fltk-exception-lgpl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fltk-exception.html diff --git a/src/licensedcode/data/rules/font-exception-2.0_2.RULE b/src/licensedcode/data/rules/font-exception-2.0_2.RULE index d475c0b188d..f98625d4ebd 100644 --- a/src/licensedcode/data/rules/font-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/font-exception-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH font-exception-gpl +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -18,4 +25,4 @@ Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this - exception statement from your version. + exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-2.0_2.yml b/src/licensedcode/data/rules/font-exception-2.0_2.yml deleted file mode 100644 index 0eca0a72fc2..00000000000 --- a/src/licensedcode/data/rules/font-exception-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH font-exception-gpl -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/font-exception-3.0_1.RULE b/src/licensedcode/data/rules/font-exception-3.0_1.RULE index 191e627ee77..b5486e8e69e 100644 --- a/src/licensedcode/data/rules/font-exception-3.0_1.RULE +++ b/src/licensedcode/data/rules/font-exception-3.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +--- + GNU FreeFont License Free UCS scalable fonts is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,4 +22,4 @@ other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish - to do so, delete this exception statement from your version. + to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-3.0_1.yml b/src/licensedcode/data/rules/font-exception-3.0_1.yml deleted file mode 100644 index cde5004f416..00000000000 --- a/src/licensedcode/data/rules/font-exception-3.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/font-exception-gpl_1.RULE b/src/licensedcode/data/rules/font-exception-gpl_1.RULE index 2515965901f..03320ea893c 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: font-exception-gpl +is_license_notice: yes +relevance: 100 +--- + As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by it self cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_1.yml b/src/licensedcode/data/rules/font-exception-gpl_1.yml deleted file mode 100644 index e05e133c177..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: font-exception-gpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/font-exception-gpl_10.RULE b/src/licensedcode/data/rules/font-exception-gpl_10.RULE index dd02728ea3b..03b5b851755 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_10.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Font-exception-2.0 +--- + LICENSE {{Font-exception-2.0}} https://spdx.org/licenses/Font-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_10.yml b/src/licensedcode/data/rules/font-exception-gpl_10.yml deleted file mode 100644 index f20d703b6bb..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Font-exception-2.0 diff --git a/src/licensedcode/data/rules/font-exception-gpl_2.RULE b/src/licensedcode/data/rules/font-exception-gpl_2.RULE index 423058ad581..b4886f25ded 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_2.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-faq.html#FontException +--- + https://www.gnu.org/licenses/gpl-faq.html#FontException \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_2.yml b/src/licensedcode/data/rules/font-exception-gpl_2.yml deleted file mode 100644 index 0944b4ce19b..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-faq.html#FontException diff --git a/src/licensedcode/data/rules/font-exception-gpl_3.RULE b/src/licensedcode/data/rules/font-exception-gpl_3.RULE index 10e3794a02b..be53b2a38b8 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_3.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_3.RULE @@ -1 +1,10 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Font exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_3.yml b/src/licensedcode/data/rules/font-exception-gpl_3.yml deleted file mode 100644 index 14356a6eb40..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/font-exception-gpl_4.RULE b/src/licensedcode/data/rules/font-exception-gpl_4.RULE index 02ed888287e..aaf64b8ab69 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_4.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Font-exception-2.0 Font exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_4.yml b/src/licensedcode/data/rules/font-exception-gpl_4.yml deleted file mode 100644 index 14356a6eb40..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/font-exception-gpl_5.RULE b/src/licensedcode/data/rules/font-exception-gpl_5.RULE index cd6747af7bf..1b895e1608e 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_5.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: font-exception-gpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Font-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_5.yml b/src/licensedcode/data/rules/font-exception-gpl_5.yml deleted file mode 100644 index 06ef81b709c..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: font-exception-gpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/font-exception-gpl_6.RULE b/src/licensedcode/data/rules/font-exception-gpl_6.RULE index b9f9c628bb6..d3f696e39f0 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_6.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: font-exception-gpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Font-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_6.yml b/src/licensedcode/data/rules/font-exception-gpl_6.yml deleted file mode 100644 index 06ef81b709c..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: font-exception-gpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/font-exception-gpl_7.RULE b/src/licensedcode/data/rules/font-exception-gpl_7.RULE index 11570a4045f..472befa6b7a 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_7.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_7.RULE @@ -1 +1,9 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Font-exception-2.0 +--- + https://licenses.nuget.org/Font-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_7.yml b/src/licensedcode/data/rules/font-exception-gpl_7.yml deleted file mode 100644 index 89cf02d5380..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Font-exception-2.0 diff --git a/src/licensedcode/data/rules/font-exception-gpl_8.RULE b/src/licensedcode/data/rules/font-exception-gpl_8.RULE index a56d57a4afd..8409f9f0139 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_8.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_8.RULE @@ -1 +1,7 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Font-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_8.yml b/src/licensedcode/data/rules/font-exception-gpl_8.yml deleted file mode 100644 index d2380af0fb2..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/font-exception-gpl_9.RULE b/src/licensedcode/data/rules/font-exception-gpl_9.RULE index a6194cd54ff..1e2776f3caa 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_9.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_9.RULE @@ -1 +1,9 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Font-exception-2.0 +--- + {{Font-exception-2.0}} https://spdx.org/licenses/Font-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_9.yml b/src/licensedcode/data/rules/font-exception-gpl_9.yml deleted file mode 100644 index f20d703b6bb..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Font-exception-2.0 diff --git a/src/licensedcode/data/rules/font-exception-gpl_url_1.RULE b/src/licensedcode/data/rules/font-exception-gpl_url_1.RULE index 9e4a60c1105..db0a54ae386 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_url_1.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/font-exception-2.0 +--- + https://spdx.org/licenses/font-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_url_1.yml b/src/licensedcode/data/rules/font-exception-gpl_url_1.yml deleted file mode 100644 index 3ee270424a3..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/font-exception-2.0 diff --git a/src/licensedcode/data/rules/font-exception-gpl_url_2.RULE b/src/licensedcode/data/rules/font-exception-gpl_url_2.RULE index d9aab6690aa..f7fb6d6dca0 100644 --- a/src/licensedcode/data/rules/font-exception-gpl_url_2.RULE +++ b/src/licensedcode/data/rules/font-exception-gpl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/font-exception-2.0.html +--- + https://spdx.org/licenses/font-exception-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/font-exception-gpl_url_2.yml b/src/licensedcode/data/rules/font-exception-gpl_url_2.yml deleted file mode 100644 index 25132d47677..00000000000 --- a/src/licensedcode/data/rules/font-exception-gpl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/font-exception-2.0.html diff --git a/src/licensedcode/data/rules/frameworx-1.0.RULE b/src/licensedcode/data/rules/frameworx-1.0.RULE index d482cc38ed2..7d2fa2842d5 100644 --- a/src/licensedcode/data/rules/frameworx-1.0.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/frameworx.php +--- + http://opensource.org/licenses/frameworx.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0.yml b/src/licensedcode/data/rules/frameworx-1.0.yml deleted file mode 100644 index 3670c40c031..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/frameworx.php diff --git a/src/licensedcode/data/rules/frameworx-1.0_1.RULE b/src/licensedcode/data/rules/frameworx-1.0_1.RULE index 49be9b57525..b690c16edf7 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_1.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/frameworx.php +--- + http://www.opensource.org/licenses/frameworx.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_1.yml b/src/licensedcode/data/rules/frameworx-1.0_1.yml deleted file mode 100644 index d505e6e9574..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/frameworx.php diff --git a/src/licensedcode/data/rules/frameworx-1.0_10.RULE b/src/licensedcode/data/rules/frameworx-1.0_10.RULE index 093e64eabad..a9d5d3ed002 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_10.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Frameworx-1.0 +--- + https://licenses.nuget.org/Frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_10.yml b/src/licensedcode/data/rules/frameworx-1.0_10.yml deleted file mode 100644 index a2e9d18e2a0..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Frameworx-1.0 diff --git a/src/licensedcode/data/rules/frameworx-1.0_11.RULE b/src/licensedcode/data/rules/frameworx-1.0_11.RULE index a311680a096..c67c32bb9fa 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_11.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_11.yml b/src/licensedcode/data/rules/frameworx-1.0_11.yml deleted file mode 100644 index d4852f4c62e..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/frameworx-1.0_12.RULE b/src/licensedcode/data/rules/frameworx-1.0_12.RULE index 0fb83f23ddc..855b50422af 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_12.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Frameworx-1.0 +--- + {{Frameworx-1.0}} https://spdx.org/licenses/Frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_12.yml b/src/licensedcode/data/rules/frameworx-1.0_12.yml deleted file mode 100644 index 967985b1dcc..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Frameworx-1.0 diff --git a/src/licensedcode/data/rules/frameworx-1.0_13.RULE b/src/licensedcode/data/rules/frameworx-1.0_13.RULE index 75fead8cad3..76cde9a4fdc 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_13.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Frameworx-1.0 +--- + LICENSE {{Frameworx-1.0}} https://spdx.org/licenses/Frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_13.yml b/src/licensedcode/data/rules/frameworx-1.0_13.yml deleted file mode 100644 index 967985b1dcc..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Frameworx-1.0 diff --git a/src/licensedcode/data/rules/frameworx-1.0_2.RULE b/src/licensedcode/data/rules/frameworx-1.0_2.RULE index 97b2fd076e7..2be7b64ae27 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_2.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +--- + Frameworx Open License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_2.yml b/src/licensedcode/data/rules/frameworx-1.0_2.yml deleted file mode 100644 index d4852f4c62e..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/frameworx-1.0_3.RULE b/src/licensedcode/data/rules/frameworx-1.0_3.RULE index 508dea93482..dd04afefbc3 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_3.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Frameworx Open License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_3.yml b/src/licensedcode/data/rules/frameworx-1.0_3.yml deleted file mode 100644 index 760b094dbed..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/frameworx-1.0_4.RULE b/src/licensedcode/data/rules/frameworx-1.0_4.RULE index f9cb3dcad2b..1416728ed7a 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_4.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Frameworx-1.0 Frameworx Open License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_4.yml b/src/licensedcode/data/rules/frameworx-1.0_4.yml deleted file mode 100644 index 760b094dbed..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/frameworx-1.0_5.RULE b/src/licensedcode/data/rules/frameworx-1.0_5.RULE index b2dfacf7301..165115bd1c2 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_5.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Frameworx Open License 1.0 Frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_5.yml b/src/licensedcode/data/rules/frameworx-1.0_5.yml deleted file mode 100644 index 760b094dbed..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/frameworx-1.0_6.RULE b/src/licensedcode/data/rules/frameworx-1.0_6.RULE index bb802496358..6366bcc3aed 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_6.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: frameworx-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_6.yml b/src/licensedcode/data/rules/frameworx-1.0_6.yml deleted file mode 100644 index 06e6e879f42..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: frameworx-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/frameworx-1.0_7.RULE b/src/licensedcode/data/rules/frameworx-1.0_7.RULE index 1dd4329a27d..284d4c64c66 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_7.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: frameworx-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Frameworx Open License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_7.yml b/src/licensedcode/data/rules/frameworx-1.0_7.yml deleted file mode 100644 index 06e6e879f42..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: frameworx-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/frameworx-1.0_8.RULE b/src/licensedcode/data/rules/frameworx-1.0_8.RULE index 22138227dda..f6d9c773c48 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_8.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: frameworx-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_8.yml b/src/licensedcode/data/rules/frameworx-1.0_8.yml deleted file mode 100644 index 06e6e879f42..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: frameworx-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/frameworx-1.0_9.RULE b/src/licensedcode/data/rules/frameworx-1.0_9.RULE index 4d7f7c76ac4..4c8365d4224 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_9.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_9.yml b/src/licensedcode/data/rules/frameworx-1.0_9.yml deleted file mode 100644 index 9ad2ab080b8..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/frameworx-1.0_url_1.RULE b/src/licensedcode/data/rules/frameworx-1.0_url_1.RULE index 9f6d5d860fb..aa0317f6fac 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/frameworx-1.0 +--- + https://spdx.org/licenses/frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_url_1.yml b/src/licensedcode/data/rules/frameworx-1.0_url_1.yml deleted file mode 100644 index 10270378cfd..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/frameworx-1.0 diff --git a/src/licensedcode/data/rules/frameworx-1.0_url_2.RULE b/src/licensedcode/data/rules/frameworx-1.0_url_2.RULE index d8ee1678806..86d6cb945a5 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/frameworx-1.0.html +--- + https://spdx.org/licenses/frameworx-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_url_2.yml b/src/licensedcode/data/rules/frameworx-1.0_url_2.yml deleted file mode 100644 index 3bf1b7455cd..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/frameworx-1.0.html diff --git a/src/licensedcode/data/rules/frameworx-1.0_url_glc_164.RULE b/src/licensedcode/data/rules/frameworx-1.0_url_glc_164.RULE index 016c31edd54..4f32a097173 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_url_glc_164.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_url_glc_164.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/frameworx-1.0 +--- + http://www.opensource.org/licenses/frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_url_glc_164.yml b/src/licensedcode/data/rules/frameworx-1.0_url_glc_164.yml deleted file mode 100644 index db42647dd69..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_url_glc_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/frameworx-1.0 diff --git a/src/licensedcode/data/rules/frameworx-1.0_url_glc_165.RULE b/src/licensedcode/data/rules/frameworx-1.0_url_glc_165.RULE index 930ed304eb9..ed87c0719c3 100644 --- a/src/licensedcode/data/rules/frameworx-1.0_url_glc_165.RULE +++ b/src/licensedcode/data/rules/frameworx-1.0_url_glc_165.RULE @@ -1 +1,9 @@ +--- +license_expression: frameworx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/frameworx-1.0 +--- + https://www.opensource.org/licenses/frameworx-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frameworx-1.0_url_glc_165.yml b/src/licensedcode/data/rules/frameworx-1.0_url_glc_165.yml deleted file mode 100644 index ec5faa0ce4a..00000000000 --- a/src/licensedcode/data/rules/frameworx-1.0_url_glc_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: frameworx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/frameworx-1.0 diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_1.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_1.RULE index 43d2eac29f0..2bc539bf98a 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_1.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE +--- + http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_1.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_1.yml deleted file mode 100644 index 53d0979e96e..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opencore-amr.git.sourceforge.net/git/gitweb.cgi?p=opencore-amr/fdk-aac;a=blob;f=NOTICE diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_10.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_10.RULE index c69d10d0a19..b8fa32bce71 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_10.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_10.RULE @@ -1 +1,7 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/FDK-AAC \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_10.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_10.yml deleted file mode 100644 index a4f54076b11..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_11.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_11.RULE index 47b3a99da30..beaf1964518 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_11.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_11.RULE @@ -1 +1,9 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FDK-AAC +--- + {{FDK-AAC}} https://spdx.org/licenses/FDK-AAC \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_11.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_11.yml deleted file mode 100644 index e3a5e8c40f2..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FDK-AAC diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_12.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_12.RULE index 313dfe95829..53e414bcfc1 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_12.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_12.RULE @@ -1 +1,9 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FDK-AAC +--- + LICENSE {{FDK-AAC}} https://spdx.org/licenses/FDK-AAC \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_12.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_12.yml deleted file mode 100644 index e3a5e8c40f2..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FDK-AAC diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_2.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_2.RULE index c49b40c4e7b..63bfa60565d 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_2.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_2.RULE @@ -1 +1,10 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Fraunhofer FDK AAC Codec Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_2.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_2.yml deleted file mode 100644 index d368607b62d..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_3.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_3.RULE index 05def45415d..58bb85a0fe9 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_3.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_3.RULE @@ -1 +1,10 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Fraunhofer FDK AAC Codec Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_3.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_3.yml deleted file mode 100644 index d368607b62d..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_4.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_4.RULE index 076817657f9..8d9c84be1f5 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_4.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_4.RULE @@ -1 +1,10 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FDK-AAC Fraunhofer FDK AAC Codec Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_4.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_4.yml deleted file mode 100644 index d368607b62d..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_5.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_5.RULE index b9b6fc89b6d..50bb524146f 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_5.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_5.RULE @@ -1 +1,10 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Fraunhofer FDK AAC Codec Library FDK-AAC \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_5.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_5.yml deleted file mode 100644 index d368607b62d..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_6.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_6.RULE index 876ea9ae8c1..62fc6b4974f 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_6.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_6.RULE @@ -1 +1,10 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FDK-AAC \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_6.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_6.yml deleted file mode 100644 index 48facbca7be..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_7.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_7.RULE index ca56d5ec7c1..12dce1cb4b1 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_7.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_7.RULE @@ -1 +1,10 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Fraunhofer FDK AAC Codec Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_7.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_7.yml deleted file mode 100644 index 48facbca7be..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_8.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_8.RULE index ba54b2b45ba..8cd8023acd8 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_8.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_8.RULE @@ -1 +1,10 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: FDK-AAC \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_8.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_8.yml deleted file mode 100644 index 48facbca7be..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.RULE b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.RULE index 97a109537ce..951c8d5f42e 100644 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.RULE +++ b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.RULE @@ -1 +1,9 @@ +--- +license_expression: fraunhofer-fdk-aac-codec +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/FDK-AAC +--- + https://licenses.nuget.org/FDK-AAC \ No newline at end of file diff --git a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.yml b/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.yml deleted file mode 100644 index 6221131bcfa..00000000000 --- a/src/licensedcode/data/rules/fraunhofer-fdk-aac-codec_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fraunhofer-fdk-aac-codec -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/FDK-AAC diff --git a/src/licensedcode/data/rules/free-art-1.3.RULE b/src/licensedcode/data/rules/free-art-1.3.RULE index e323b7acfb0..4fefa48fdb7 100644 --- a/src/licensedcode/data/rules/free-art-1.3.RULE +++ b/src/licensedcode/data/rules/free-art-1.3.RULE @@ -1 +1,9 @@ +--- +license_expression: free-art-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://artlibre.org/licence/lal/en +--- + http://artlibre.org/licence/lal/en \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-art-1.3.yml b/src/licensedcode/data/rules/free-art-1.3.yml deleted file mode 100644 index 26bf8cc5079..00000000000 --- a/src/licensedcode/data/rules/free-art-1.3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-art-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://artlibre.org/licence/lal/en diff --git a/src/licensedcode/data/rules/free-unknown_0.RULE b/src/licensedcode/data/rules/free-unknown_0.RULE index 761129a66cf..c9b23e4d87c 100644 --- a/src/licensedcode/data/rules/free-unknown_0.RULE +++ b/src/licensedcode/data/rules/free-unknown_0.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 99 +--- + license)); "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/free-unknown_0.yml b/src/licensedcode/data/rules/free-unknown_0.yml deleted file mode 100644 index 2e4eab390cb..00000000000 --- a/src/licensedcode/data/rules/free-unknown_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/free-unknown_1.RULE b/src/licensedcode/data/rules/free-unknown_1.RULE index 91b0ce08427..25ffaccf76e 100644 --- a/src/licensedcode/data/rules/free-unknown_1.RULE +++ b/src/licensedcode/data/rules/free-unknown_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +notes: typically for GPL but this can vary and be various versions +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_1.yml b/src/licensedcode/data/rules/free-unknown_1.yml deleted file mode 100644 index 2d394b80abf..00000000000 --- a/src/licensedcode/data/rules/free-unknown_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_10.RULE b/src/licensedcode/data/rules/free-unknown_10.RULE index 4e94454fa2c..d9eac1da7cf 100644 --- a/src/licensedcode/data/rules/free-unknown_10.RULE +++ b/src/licensedcode/data/rules/free-unknown_10.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: typically for GPL but this can vary and be various versions +--- + This is Free Software. See COPYING for information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_10.yml b/src/licensedcode/data/rules/free-unknown_10.yml deleted file mode 100644 index b5407ba0b95..00000000000 --- a/src/licensedcode/data/rules/free-unknown_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_100.RULE b/src/licensedcode/data/rules/free-unknown_100.RULE index 4444ea01b8a..49120fa4d7c 100644 --- a/src/licensedcode/data/rules/free-unknown_100.RULE +++ b/src/licensedcode/data/rules/free-unknown_100.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + available publicly for commercial and non-commercial uses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_100.yml b/src/licensedcode/data/rules/free-unknown_100.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_101.RULE b/src/licensedcode/data/rules/free-unknown_101.RULE index 5eb2a8f34d1..024ab4acad9 100644 --- a/src/licensedcode/data/rules/free-unknown_101.RULE +++ b/src/licensedcode/data/rules/free-unknown_101.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + for both commercial and non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_101.yml b/src/licensedcode/data/rules/free-unknown_101.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_102.RULE b/src/licensedcode/data/rules/free-unknown_102.RULE index 0c12524b857..359e063b452 100644 --- a/src/licensedcode/data/rules/free-unknown_102.RULE +++ b/src/licensedcode/data/rules/free-unknown_102.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + The code is open-source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_102.yml b/src/licensedcode/data/rules/free-unknown_102.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_103.RULE b/src/licensedcode/data/rules/free-unknown_103.RULE index 321d77cc064..95f0c12b834 100644 --- a/src/licensedcode/data/rules/free-unknown_103.RULE +++ b/src/licensedcode/data/rules/free-unknown_103.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + mobile apps for commercial and non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_103.yml b/src/licensedcode/data/rules/free-unknown_103.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_104.RULE b/src/licensedcode/data/rules/free-unknown_104.RULE index b74e063fa13..34066c16823 100644 --- a/src/licensedcode/data/rules/free-unknown_104.RULE +++ b/src/licensedcode/data/rules/free-unknown_104.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + for commercial and non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_104.yml b/src/licensedcode/data/rules/free-unknown_104.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_105.RULE b/src/licensedcode/data/rules/free-unknown_105.RULE index e441a28382b..9e91ca57b8b 100644 --- a/src/licensedcode/data/rules/free-unknown_105.RULE +++ b/src/licensedcode/data/rules/free-unknown_105.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + free to use both for commercial and non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_105.yml b/src/licensedcode/data/rules/free-unknown_105.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_106.RULE b/src/licensedcode/data/rules/free-unknown_106.RULE index 9c99439c816..e8de7e2b660 100644 --- a/src/licensedcode/data/rules/free-unknown_106.RULE +++ b/src/licensedcode/data/rules/free-unknown_106.RULE @@ -1,3 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - jpegxr/COPYRIGHT.txt +--- + distributed under a no cost, open source license granted by the ITU/ISO/IEC but it is not Affero GPL compatible - see jpegxr/COPYRIGHT.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_106.yml b/src/licensedcode/data/rules/free-unknown_106.yml deleted file mode 100644 index bdb421b7d53..00000000000 --- a/src/licensedcode/data/rules/free-unknown_106.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - jpegxr/COPYRIGHT.txt diff --git a/src/licensedcode/data/rules/free-unknown_107.RULE b/src/licensedcode/data/rules/free-unknown_107.RULE index 14a0f222c05..d9259308f85 100644 --- a/src/licensedcode/data/rules/free-unknown_107.RULE +++ b/src/licensedcode/data/rules/free-unknown_107.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + distributed under a no cost, open source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_107.yml b/src/licensedcode/data/rules/free-unknown_107.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_108.RULE b/src/licensedcode/data/rules/free-unknown_108.RULE index 4227e353877..44221199903 100644 --- a/src/licensedcode/data/rules/free-unknown_108.RULE +++ b/src/licensedcode/data/rules/free-unknown_108.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + This code is placed in the public domain with a standard Open Source license. (Free to use, Use at your own risk.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_108.yml b/src/licensedcode/data/rules/free-unknown_108.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_109.RULE b/src/licensedcode/data/rules/free-unknown_109.RULE index fc040c2018c..533258e038b 100644 --- a/src/licensedcode/data/rules/free-unknown_109.RULE +++ b/src/licensedcode/data/rules/free-unknown_109.RULE @@ -1,3 +1,11 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * This software is furnished under an open source license and may be * used and copied only in accordance with the terms of this license. * The text of the license may generally be found in the root diff --git a/src/licensedcode/data/rules/free-unknown_109.yml b/src/licensedcode/data/rules/free-unknown_109.yml deleted file mode 100644 index 4f159dafdb5..00000000000 --- a/src/licensedcode/data/rules/free-unknown_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/free-unknown_11.RULE b/src/licensedcode/data/rules/free-unknown_11.RULE index 758069e5494..fa58e943784 100644 --- a/src/licensedcode/data/rules/free-unknown_11.RULE +++ b/src/licensedcode/data/rules/free-unknown_11.RULE @@ -1,2 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: typically for GPL but this can vary and be various versions +--- + This is free software and is licensed under the terms mentioned in the COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_11.yml b/src/licensedcode/data/rules/free-unknown_11.yml deleted file mode 100644 index b5407ba0b95..00000000000 --- a/src/licensedcode/data/rules/free-unknown_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_110.RULE b/src/licensedcode/data/rules/free-unknown_110.RULE index f587a52d3be..699bf66d121 100644 --- a/src/licensedcode/data/rules/free-unknown_110.RULE +++ b/src/licensedcode/data/rules/free-unknown_110.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + furnished under an open source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_110.yml b/src/licensedcode/data/rules/free-unknown_110.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_111.RULE b/src/licensedcode/data/rules/free-unknown_111.RULE index 4fcf716aa8b..959e3e0baa7 100644 --- a/src/licensedcode/data/rules/free-unknown_111.RULE +++ b/src/licensedcode/data/rules/free-unknown_111.RULE @@ -1,3 +1,11 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License The LICENSE file within this package contains information on the open source license. This license allows open source redistribution of the source and binary files in the library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_111.yml b/src/licensedcode/data/rules/free-unknown_111.yml deleted file mode 100644 index ca7253336af..00000000000 --- a/src/licensedcode/data/rules/free-unknown_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/free-unknown_112.RULE b/src/licensedcode/data/rules/free-unknown_112.RULE index 33031915e04..a0e057bf712 100644 --- a/src/licensedcode/data/rules/free-unknown_112.RULE +++ b/src/licensedcode/data/rules/free-unknown_112.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + OSI Approved License \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_112.yml b/src/licensedcode/data/rules/free-unknown_112.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_113.RULE b/src/licensedcode/data/rules/free-unknown_113.RULE index 546b49e0b0a..9dff07fd8c2 100644 --- a/src/licensedcode/data/rules/free-unknown_113.RULE +++ b/src/licensedcode/data/rules/free-unknown_113.RULE @@ -1,3 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +notes: this is a generic CC notie that there is a license +ignorable_urls: + - https://creativecommons.org/ +--- + Creative Commons Notice Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. diff --git a/src/licensedcode/data/rules/free-unknown_113.yml b/src/licensedcode/data/rules/free-unknown_113.yml deleted file mode 100644 index 1862c0bc699..00000000000 --- a/src/licensedcode/data/rules/free-unknown_113.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -notes: this is a generic CC notie that there is a license -ignorable_urls: - - https://creativecommons.org/ diff --git a/src/licensedcode/data/rules/free-unknown_114.RULE b/src/licensedcode/data/rules/free-unknown_114.RULE index 73b3d25b5b3..16f42367370 100644 --- a/src/licensedcode/data/rules/free-unknown_114.RULE +++ b/src/licensedcode/data/rules/free-unknown_114.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + distributed under an open source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_114.yml b/src/licensedcode/data/rules/free-unknown_114.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_115.RULE b/src/licensedcode/data/rules/free-unknown_115.RULE index b33dd7b2787..dd2dd32a52e 100644 --- a/src/licensedcode/data/rules/free-unknown_115.RULE +++ b/src/licensedcode/data/rules/free-unknown_115.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + there is a non-exclusive license for use of this work by or on behalf of the U.S. Government. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_115.yml b/src/licensedcode/data/rules/free-unknown_115.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_116.RULE b/src/licensedcode/data/rules/free-unknown_116.RULE index 84462fea5da..421f873cc92 100644 --- a/src/licensedcode/data/rules/free-unknown_116.RULE +++ b/src/licensedcode/data/rules/free-unknown_116.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 99 +--- + approved by opensource.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_116.yml b/src/licensedcode/data/rules/free-unknown_116.yml deleted file mode 100644 index dc57616b8cc..00000000000 --- a/src/licensedcode/data/rules/free-unknown_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/free-unknown_117.RULE b/src/licensedcode/data/rules/free-unknown_117.RULE index 7740a727700..390e5d5243a 100644 --- a/src/licensedcode/data/rules/free-unknown_117.RULE +++ b/src/licensedcode/data/rules/free-unknown_117.RULE @@ -1,3 +1,15 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 99 +notes: | + this is a rare modified Apache 2.0 license from PIXAR, reported as + free-unknown to draw attention on its uncommon terms + See https://raw.githubusercontent.com/PixarAnimationStudios/ruby-jss/master/LICENSE.txt +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ### Licensed under the Apache License, Version 2.0 (the "Apache License") ### with the following modification; you may not use this file except in ### compliance with the Apache License and the following modification to it: diff --git a/src/licensedcode/data/rules/free-unknown_117.yml b/src/licensedcode/data/rules/free-unknown_117.yml deleted file mode 100644 index 68af10b5de9..00000000000 --- a/src/licensedcode/data/rules/free-unknown_117.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 99 -notes: | - this is a rare modified Apache 2.0 license from PIXAR, reported as - free-unknown to draw attention on its uncommon terms - See https://raw.githubusercontent.com/PixarAnimationStudios/ruby-jss/master/LICENSE.txt -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/free-unknown_118.RULE b/src/licensedcode/data/rules/free-unknown_118.RULE index 3a035eed868..4056d0d3eb4 100644 --- a/src/licensedcode/data/rules/free-unknown_118.RULE +++ b/src/licensedcode/data/rules/free-unknown_118.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +notes: juluis legacy updated notice. See https://fedoraproject.org/wiki/Licensing/Julius +--- + In the event that obligations imposed upon you by judgment of a court would make it impossible for you to comply with the conditions of this license, you may not use the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_118.yml b/src/licensedcode/data/rules/free-unknown_118.yml deleted file mode 100644 index 6311ad6a634..00000000000 --- a/src/licensedcode/data/rules/free-unknown_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -notes: juluis legacy updated notice. See https://fedoraproject.org/wiki/Licensing/Julius diff --git a/src/licensedcode/data/rules/free-unknown_119.RULE b/src/licensedcode/data/rules/free-unknown_119.RULE index 42a4f76e563..1fd2f66a4af 100644 --- a/src/licensedcode/data/rules/free-unknown_119.RULE +++ b/src/licensedcode/data/rules/free-unknown_119.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + I am providing code and resources in this repository to you under an open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_119.yml b/src/licensedcode/data/rules/free-unknown_119.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_12.RULE b/src/licensedcode/data/rules/free-unknown_12.RULE index 5c04e7e1169..48d1bbc15de 100644 --- a/src/licensedcode/data/rules/free-unknown_12.RULE +++ b/src/licensedcode/data/rules/free-unknown_12.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + This is free software See the LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_12.yml b/src/licensedcode/data/rules/free-unknown_12.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_120.RULE b/src/licensedcode/data/rules/free-unknown_120.RULE index 4424fc4bc87..b82fbe659f9 100644 --- a/src/licensedcode/data/rules/free-unknown_120.RULE +++ b/src/licensedcode/data/rules/free-unknown_120.RULE @@ -1,3 +1,8 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + Copyright holders unknown, no statement of license (all of these files are part of the testsuite and do not contribute to the installed library or its headers) \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_120.yml b/src/licensedcode/data/rules/free-unknown_120.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_120.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_122.RULE b/src/licensedcode/data/rules/free-unknown_122.RULE index 5e7556a8519..1829d4d8afa 100644 --- a/src/licensedcode/data/rules/free-unknown_122.RULE +++ b/src/licensedcode/data/rules/free-unknown_122.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Deutsche Freie Software Lizenz \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_122.yml b/src/licensedcode/data/rules/free-unknown_122.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_122.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_127.RULE b/src/licensedcode/data/rules/free-unknown_127.RULE index 614c8fa53c9..492f38e9b49 100644 --- a/src/licensedcode/data/rules/free-unknown_127.RULE +++ b/src/licensedcode/data/rules/free-unknown_127.RULE @@ -1,7 +1,14 @@ +--- +license_expression: free-unknown +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This package is free software; you can redistribute it and/or modify it under the terms of the license found in the file named COPYING that should have accompanied this file. THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_127.yml b/src/licensedcode/data/rules/free-unknown_127.yml deleted file mode 100644 index b0d260e3c63..00000000000 --- a/src/licensedcode/data/rules/free-unknown_127.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/free-unknown_128.RULE b/src/licensedcode/data/rules/free-unknown_128.RULE index d82e04653ec..f6bc77c6bf0 100644 --- a/src/licensedcode/data/rules/free-unknown_128.RULE +++ b/src/licensedcode/data/rules/free-unknown_128.RULE @@ -1,4 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + This program and the accompanying materials are made available under the terms of the Open Source License -which accompanies this distribution, and is available at - +which accompanies this distribution, and is available at \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_128.yml b/src/licensedcode/data/rules/free-unknown_128.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_129.RULE b/src/licensedcode/data/rules/free-unknown_129.RULE index 9c1e481e390..52039212a4e 100644 --- a/src/licensedcode/data/rules/free-unknown_129.RULE +++ b/src/licensedcode/data/rules/free-unknown_129.RULE @@ -1 +1,7 @@ -This program and the accompanying materials are made available under the terms of the Open Source License +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + +This program and the accompanying materials are made available under the terms of the Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_129.yml b/src/licensedcode/data/rules/free-unknown_129.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_13.RULE b/src/licensedcode/data/rules/free-unknown_13.RULE index fcb73d9bf8b..424855ba744 100644 --- a/src/licensedcode/data/rules/free-unknown_13.RULE +++ b/src/licensedcode/data/rules/free-unknown_13.RULE @@ -1 +1,8 @@ -This is free software; see LICENSE at end of file for more info. \ No newline at end of file +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + +This is free software; see LICENSE at end of file for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_13.yml b/src/licensedcode/data/rules/free-unknown_13.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_130.RULE b/src/licensedcode/data/rules/free-unknown_130.RULE index aa33ecfd583..a98f2b74fc7 100644 --- a/src/licensedcode/data/rules/free-unknown_130.RULE +++ b/src/licensedcode/data/rules/free-unknown_130.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Deutsche Freie Software Lizenz \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_130.yml b/src/licensedcode/data/rules/free-unknown_130.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_130.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_131.RULE b/src/licensedcode/data/rules/free-unknown_131.RULE index 382fa6edaa1..3787318c247 100644 --- a/src/licensedcode/data/rules/free-unknown_131.RULE +++ b/src/licensedcode/data/rules/free-unknown_131.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LAL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_131.yml b/src/licensedcode/data/rules/free-unknown_131.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_131.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_132.RULE b/src/licensedcode/data/rules/free-unknown_132.RULE index 6661bb034cf..89b108b49ee 100644 --- a/src/licensedcode/data/rules/free-unknown_132.RULE +++ b/src/licensedcode/data/rules/free-unknown_132.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Art Libre 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_132.yml b/src/licensedcode/data/rules/free-unknown_132.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_132.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_133.RULE b/src/licensedcode/data/rules/free-unknown_133.RULE index 659c136985f..7abbbc6439c 100644 --- a/src/licensedcode/data/rules/free-unknown_133.RULE +++ b/src/licensedcode/data/rules/free-unknown_133.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LAL-1.2 Licence Art Libre 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_133.yml b/src/licensedcode/data/rules/free-unknown_133.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_133.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_134.RULE b/src/licensedcode/data/rules/free-unknown_134.RULE index df0cecf9c63..150ffc35056 100644 --- a/src/licensedcode/data/rules/free-unknown_134.RULE +++ b/src/licensedcode/data/rules/free-unknown_134.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Art Libre 1.2 LAL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_134.yml b/src/licensedcode/data/rules/free-unknown_134.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_134.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_135.RULE b/src/licensedcode/data/rules/free-unknown_135.RULE index 57cd15e74db..a482ee0ad4f 100644 --- a/src/licensedcode/data/rules/free-unknown_135.RULE +++ b/src/licensedcode/data/rules/free-unknown_135.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : LAL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_135.yml b/src/licensedcode/data/rules/free-unknown_135.yml deleted file mode 100644 index f12ee9ca4cd..00000000000 --- a/src/licensedcode/data/rules/free-unknown_135.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_136.RULE b/src/licensedcode/data/rules/free-unknown_136.RULE index a6c822757a1..1d815ce4c17 100644 --- a/src/licensedcode/data/rules/free-unknown_136.RULE +++ b/src/licensedcode/data/rules/free-unknown_136.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : LAL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_136.yml b/src/licensedcode/data/rules/free-unknown_136.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_136.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_137.RULE b/src/licensedcode/data/rules/free-unknown_137.RULE index d7b8fed37b5..bb02b11dfcc 100644 --- a/src/licensedcode/data/rules/free-unknown_137.RULE +++ b/src/licensedcode/data/rules/free-unknown_137.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Licence Art Libre 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_137.yml b/src/licensedcode/data/rules/free-unknown_137.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_137.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_138.RULE b/src/licensedcode/data/rules/free-unknown_138.RULE index 704e0755a36..e567bbeebbe 100644 --- a/src/licensedcode/data/rules/free-unknown_138.RULE +++ b/src/licensedcode/data/rules/free-unknown_138.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LAL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_138.yml b/src/licensedcode/data/rules/free-unknown_138.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_138.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_139.RULE b/src/licensedcode/data/rules/free-unknown_139.RULE index e88baf7a8e0..57d2c1da9f3 100644 --- a/src/licensedcode/data/rules/free-unknown_139.RULE +++ b/src/licensedcode/data/rules/free-unknown_139.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Art Libre 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_139.yml b/src/licensedcode/data/rules/free-unknown_139.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_139.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_14.RULE b/src/licensedcode/data/rules/free-unknown_14.RULE index 692a2d57296..5ce3e355232 100644 --- a/src/licensedcode/data/rules/free-unknown_14.RULE +++ b/src/licensedcode/data/rules/free-unknown_14.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + This is free software. See LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_14.yml b/src/licensedcode/data/rules/free-unknown_14.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_140.RULE b/src/licensedcode/data/rules/free-unknown_140.RULE index 48b6c6aae08..95042a084e0 100644 --- a/src/licensedcode/data/rules/free-unknown_140.RULE +++ b/src/licensedcode/data/rules/free-unknown_140.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LAL-1.3 Licence Art Libre 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_140.yml b/src/licensedcode/data/rules/free-unknown_140.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_140.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_141.RULE b/src/licensedcode/data/rules/free-unknown_141.RULE index c95c42d4710..72a7c4b0389 100644 --- a/src/licensedcode/data/rules/free-unknown_141.RULE +++ b/src/licensedcode/data/rules/free-unknown_141.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Art Libre 1.3 LAL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_141.yml b/src/licensedcode/data/rules/free-unknown_141.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_141.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_142.RULE b/src/licensedcode/data/rules/free-unknown_142.RULE index c7d2228165e..e9ffe30f6b9 100644 --- a/src/licensedcode/data/rules/free-unknown_142.RULE +++ b/src/licensedcode/data/rules/free-unknown_142.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : LAL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_142.yml b/src/licensedcode/data/rules/free-unknown_142.yml deleted file mode 100644 index f12ee9ca4cd..00000000000 --- a/src/licensedcode/data/rules/free-unknown_142.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_143.RULE b/src/licensedcode/data/rules/free-unknown_143.RULE index d73ef636b36..6e82cd2a919 100644 --- a/src/licensedcode/data/rules/free-unknown_143.RULE +++ b/src/licensedcode/data/rules/free-unknown_143.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : LAL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_143.yml b/src/licensedcode/data/rules/free-unknown_143.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_143.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_144.RULE b/src/licensedcode/data/rules/free-unknown_144.RULE index 7efd0589cd5..e720a2e43e0 100644 --- a/src/licensedcode/data/rules/free-unknown_144.RULE +++ b/src/licensedcode/data/rules/free-unknown_144.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Licence Art Libre 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_144.yml b/src/licensedcode/data/rules/free-unknown_144.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_144.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_145.RULE b/src/licensedcode/data/rules/free-unknown_145.RULE index 9aee1d3a446..1c242393714 100644 --- a/src/licensedcode/data/rules/free-unknown_145.RULE +++ b/src/licensedcode/data/rules/free-unknown_145.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LiLiQ-P-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_145.yml b/src/licensedcode/data/rules/free-unknown_145.yml deleted file mode 100644 index e4aed2ac4cf..00000000000 --- a/src/licensedcode/data/rules/free-unknown_145.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_146.RULE b/src/licensedcode/data/rules/free-unknown_146.RULE index c9f9e93eb51..7152f0a9196 100644 --- a/src/licensedcode/data/rules/free-unknown_146.RULE +++ b/src/licensedcode/data/rules/free-unknown_146.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Libre du Québec – Permissive version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_146.yml b/src/licensedcode/data/rules/free-unknown_146.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_146.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_147.RULE b/src/licensedcode/data/rules/free-unknown_147.RULE index 38121206011..ada47484a30 100644 --- a/src/licensedcode/data/rules/free-unknown_147.RULE +++ b/src/licensedcode/data/rules/free-unknown_147.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LiLiQ-P-1.1 Licence Libre du Québec – Permissive version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_147.yml b/src/licensedcode/data/rules/free-unknown_147.yml deleted file mode 100644 index e4aed2ac4cf..00000000000 --- a/src/licensedcode/data/rules/free-unknown_147.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_148.RULE b/src/licensedcode/data/rules/free-unknown_148.RULE index 93f974e8d9d..6da47047950 100644 --- a/src/licensedcode/data/rules/free-unknown_148.RULE +++ b/src/licensedcode/data/rules/free-unknown_148.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Libre du Québec – Permissive version 1.1 LiLiQ-P-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_148.yml b/src/licensedcode/data/rules/free-unknown_148.yml deleted file mode 100644 index e4aed2ac4cf..00000000000 --- a/src/licensedcode/data/rules/free-unknown_148.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_149.RULE b/src/licensedcode/data/rules/free-unknown_149.RULE index 6097d061d61..2ec4491be36 100644 --- a/src/licensedcode/data/rules/free-unknown_149.RULE +++ b/src/licensedcode/data/rules/free-unknown_149.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : LiLiQ-P-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_149.yml b/src/licensedcode/data/rules/free-unknown_149.yml deleted file mode 100644 index f12ee9ca4cd..00000000000 --- a/src/licensedcode/data/rules/free-unknown_149.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_15.RULE b/src/licensedcode/data/rules/free-unknown_15.RULE index 99a8b9ab6c9..58b17c5800e 100644 --- a/src/licensedcode/data/rules/free-unknown_15.RULE +++ b/src/licensedcode/data/rules/free-unknown_15.RULE @@ -1,2 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + This is free software. See # LICENSE.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_15.yml b/src/licensedcode/data/rules/free-unknown_15.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_150.RULE b/src/licensedcode/data/rules/free-unknown_150.RULE index 00156d79b6c..afe57fc3eb6 100644 --- a/src/licensedcode/data/rules/free-unknown_150.RULE +++ b/src/licensedcode/data/rules/free-unknown_150.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : LiLiQ-P-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_150.yml b/src/licensedcode/data/rules/free-unknown_150.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_150.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_151.RULE b/src/licensedcode/data/rules/free-unknown_151.RULE index 780cff4555f..49b760441fb 100644 --- a/src/licensedcode/data/rules/free-unknown_151.RULE +++ b/src/licensedcode/data/rules/free-unknown_151.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Licence Libre du Québec – Permissive version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_151.yml b/src/licensedcode/data/rules/free-unknown_151.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_151.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_152.RULE b/src/licensedcode/data/rules/free-unknown_152.RULE index 0e10244483f..8ff7838363d 100644 --- a/src/licensedcode/data/rules/free-unknown_152.RULE +++ b/src/licensedcode/data/rules/free-unknown_152.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LiLiQ-R-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_152.yml b/src/licensedcode/data/rules/free-unknown_152.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_152.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_153.RULE b/src/licensedcode/data/rules/free-unknown_153.RULE index b13d3f52cee..71587b0efdc 100644 --- a/src/licensedcode/data/rules/free-unknown_153.RULE +++ b/src/licensedcode/data/rules/free-unknown_153.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Libre du Québec – Réciprocité version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_153.yml b/src/licensedcode/data/rules/free-unknown_153.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_153.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_154.RULE b/src/licensedcode/data/rules/free-unknown_154.RULE index d7df54e488f..a6c5272cb2c 100644 --- a/src/licensedcode/data/rules/free-unknown_154.RULE +++ b/src/licensedcode/data/rules/free-unknown_154.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LiLiQ-R-1.1 Licence Libre du Québec – Réciprocité version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_154.yml b/src/licensedcode/data/rules/free-unknown_154.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_154.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_155.RULE b/src/licensedcode/data/rules/free-unknown_155.RULE index 0a7f0c1ba04..a3cc1869527 100644 --- a/src/licensedcode/data/rules/free-unknown_155.RULE +++ b/src/licensedcode/data/rules/free-unknown_155.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Libre du Québec – Réciprocité version 1.1 LiLiQ-R-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_155.yml b/src/licensedcode/data/rules/free-unknown_155.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_155.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_156.RULE b/src/licensedcode/data/rules/free-unknown_156.RULE index 8bfbc0a548c..18b1d1346f5 100644 --- a/src/licensedcode/data/rules/free-unknown_156.RULE +++ b/src/licensedcode/data/rules/free-unknown_156.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : LiLiQ-R-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_156.yml b/src/licensedcode/data/rules/free-unknown_156.yml deleted file mode 100644 index f12ee9ca4cd..00000000000 --- a/src/licensedcode/data/rules/free-unknown_156.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_157.RULE b/src/licensedcode/data/rules/free-unknown_157.RULE index 7cb3817378d..9818cbca781 100644 --- a/src/licensedcode/data/rules/free-unknown_157.RULE +++ b/src/licensedcode/data/rules/free-unknown_157.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : LiLiQ-R-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_157.yml b/src/licensedcode/data/rules/free-unknown_157.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_157.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_158.RULE b/src/licensedcode/data/rules/free-unknown_158.RULE index df6fb539c3a..c1a9889d00d 100644 --- a/src/licensedcode/data/rules/free-unknown_158.RULE +++ b/src/licensedcode/data/rules/free-unknown_158.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Licence Libre du Québec – Réciprocité version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_158.yml b/src/licensedcode/data/rules/free-unknown_158.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_158.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_159.RULE b/src/licensedcode/data/rules/free-unknown_159.RULE index cb505c54fe8..613702073dd 100644 --- a/src/licensedcode/data/rules/free-unknown_159.RULE +++ b/src/licensedcode/data/rules/free-unknown_159.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LiLiQ-Rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_159.yml b/src/licensedcode/data/rules/free-unknown_159.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_159.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_16.RULE b/src/licensedcode/data/rules/free-unknown_16.RULE index 051eb6664bd..274844a77fd 100644 --- a/src/licensedcode/data/rules/free-unknown_16.RULE +++ b/src/licensedcode/data/rules/free-unknown_16.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + This is free software; see the source code for copying conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_16.yml b/src/licensedcode/data/rules/free-unknown_16.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_160.RULE b/src/licensedcode/data/rules/free-unknown_160.RULE index 5bb4676c916..ca9d8388e2e 100644 --- a/src/licensedcode/data/rules/free-unknown_160.RULE +++ b/src/licensedcode/data/rules/free-unknown_160.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Libre du Québec – Réciprocité forte version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_160.yml b/src/licensedcode/data/rules/free-unknown_160.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_160.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_161.RULE b/src/licensedcode/data/rules/free-unknown_161.RULE index af1dc0d0a6c..af2550dfbd1 100644 --- a/src/licensedcode/data/rules/free-unknown_161.RULE +++ b/src/licensedcode/data/rules/free-unknown_161.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + LiLiQ-Rplus-1.1 Licence Libre du Québec – Réciprocité forte version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_161.yml b/src/licensedcode/data/rules/free-unknown_161.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_161.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_162.RULE b/src/licensedcode/data/rules/free-unknown_162.RULE index c6030344cfa..a949db4667d 100644 --- a/src/licensedcode/data/rules/free-unknown_162.RULE +++ b/src/licensedcode/data/rules/free-unknown_162.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + Licence Libre du Québec – Réciprocité forte version 1.1 LiLiQ-Rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_162.yml b/src/licensedcode/data/rules/free-unknown_162.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_162.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_163.RULE b/src/licensedcode/data/rules/free-unknown_163.RULE index 0bf5d766f95..a2cfe44f1d5 100644 --- a/src/licensedcode/data/rules/free-unknown_163.RULE +++ b/src/licensedcode/data/rules/free-unknown_163.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + license : LiLiQ-Rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_163.yml b/src/licensedcode/data/rules/free-unknown_163.yml deleted file mode 100644 index f12ee9ca4cd..00000000000 --- a/src/licensedcode/data/rules/free-unknown_163.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_164.RULE b/src/licensedcode/data/rules/free-unknown_164.RULE index f3e779e3222..fd08d673d80 100644 --- a/src/licensedcode/data/rules/free-unknown_164.RULE +++ b/src/licensedcode/data/rules/free-unknown_164.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + licenseid : LiLiQ-Rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_164.yml b/src/licensedcode/data/rules/free-unknown_164.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_164.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_165.RULE b/src/licensedcode/data/rules/free-unknown_165.RULE index 7d7137c8b1d..a93160abaf7 100644 --- a/src/licensedcode/data/rules/free-unknown_165.RULE +++ b/src/licensedcode/data/rules/free-unknown_165.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English + languages, so this is a rule to deal with this in the short term +--- + name : Licence Libre du Québec – Réciprocité forte version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_165.yml b/src/licensedcode/data/rules/free-unknown_165.yml deleted file mode 100644 index 50b4bddeb6d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_165.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID. Since we do not track yet license in non-English - languages, so this is a rule to deal with this in the short term diff --git a/src/licensedcode/data/rules/free-unknown_166.RULE b/src/licensedcode/data/rules/free-unknown_166.RULE index 6ae34771ec4..94a0a19387d 100644 --- a/src/licensedcode/data/rules/free-unknown_166.RULE +++ b/src/licensedcode/data/rules/free-unknown_166.RULE @@ -1 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/liliq-p-1.1 +--- + http://opensource.org/licenses/liliq-p-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_166.yml b/src/licensedcode/data/rules/free-unknown_166.yml deleted file mode 100644 index 1af6b4570e8..00000000000 --- a/src/licensedcode/data/rules/free-unknown_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/liliq-p-1.1 diff --git a/src/licensedcode/data/rules/free-unknown_167.RULE b/src/licensedcode/data/rules/free-unknown_167.RULE index cff3f11e8d1..d9b70237cc5 100644 --- a/src/licensedcode/data/rules/free-unknown_167.RULE +++ b/src/licensedcode/data/rules/free-unknown_167.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://opensource.org/licenses/liliq-p-1.1 +--- + https://opensource.org/licenses/liliq-p-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_167.yml b/src/licensedcode/data/rules/free-unknown_167.yml deleted file mode 100644 index 1ea9f2cd6eb..00000000000 --- a/src/licensedcode/data/rules/free-unknown_167.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://opensource.org/licenses/liliq-p-1.1 diff --git a/src/licensedcode/data/rules/free-unknown_17.RULE b/src/licensedcode/data/rules/free-unknown_17.RULE index db7e657bd7c..47e37afa30a 100644 --- a/src/licensedcode/data/rules/free-unknown_17.RULE +++ b/src/licensedcode/data/rules/free-unknown_17.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: typically for GPL but this can vary and be various versions +--- + This is free software. See COPYING file for license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_17.yml b/src/licensedcode/data/rules/free-unknown_17.yml deleted file mode 100644 index b5407ba0b95..00000000000 --- a/src/licensedcode/data/rules/free-unknown_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_18.RULE b/src/licensedcode/data/rules/free-unknown_18.RULE index 360bd5c6ae3..080ad24489d 100644 --- a/src/licensedcode/data/rules/free-unknown_18.RULE +++ b/src/licensedcode/data/rules/free-unknown_18.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: typically for GPL but this can vary and be various versions +--- + This is free software. See the file COPYING for copying permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_18.yml b/src/licensedcode/data/rules/free-unknown_18.yml deleted file mode 100644 index b5407ba0b95..00000000000 --- a/src/licensedcode/data/rules/free-unknown_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_19.RULE b/src/licensedcode/data/rules/free-unknown_19.RULE index 54977ef823a..db3381f05e3 100644 --- a/src/licensedcode/data/rules/free-unknown_19.RULE +++ b/src/licensedcode/data/rules/free-unknown_19.RULE @@ -1 +1,11 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING + - LICENSE +notes: typically for GPL but this can vary and be various versions +--- + This is Free Software. See LICENSE and COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_19.yml b/src/licensedcode/data/rules/free-unknown_19.yml deleted file mode 100644 index 30406a83c25..00000000000 --- a/src/licensedcode/data/rules/free-unknown_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING - - LICENSE -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_2.RULE b/src/licensedcode/data/rules/free-unknown_2.RULE index 2d4d7e6b685..2b43688d330 100644 --- a/src/licensedcode/data/rules/free-unknown_2.RULE +++ b/src/licensedcode/data/rules/free-unknown_2.RULE @@ -1,4 +1,10 @@ +--- +license_expression: free-unknown +is_license_notice: yes +notes: typically for GPL but this can vary and be various versions +--- + This source code is freely redistributable and may be used for any purpose. This copyright notice must be maintained. Lance Norskog And Sundry Contributors are not responsible for - the consequences of using this software. + the consequences of using this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_2.yml b/src/licensedcode/data/rules/free-unknown_2.yml deleted file mode 100644 index 2d394b80abf..00000000000 --- a/src/licensedcode/data/rules/free-unknown_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_20.RULE b/src/licensedcode/data/rules/free-unknown_20.RULE index ab46777d31f..86dcb18455b 100644 --- a/src/licensedcode/data/rules/free-unknown_20.RULE +++ b/src/licensedcode/data/rules/free-unknown_20.RULE @@ -1,3 +1,9 @@ -This is free software. See License.txt, in the download -// package, for details. +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- +This is free software. See License.txt, in the download +// package, for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_20.yml b/src/licensedcode/data/rules/free-unknown_20.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_21.RULE b/src/licensedcode/data/rules/free-unknown_21.RULE index 3c99be809d2..df317718901 100644 --- a/src/licensedcode/data/rules/free-unknown_21.RULE +++ b/src/licensedcode/data/rules/free-unknown_21.RULE @@ -1,2 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + This is free software; see Copyright file in the source * distribution for preciese wording. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_21.yml b/src/licensedcode/data/rules/free-unknown_21.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_22.RULE b/src/licensedcode/data/rules/free-unknown_22.RULE index 4fc755597a9..010885c2bfe 100644 --- a/src/licensedcode/data/rules/free-unknown_22.RULE +++ b/src/licensedcode/data/rules/free-unknown_22.RULE @@ -1,2 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + This is free software; see Copyright file in the source * distribution for precise wording. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_22.yml b/src/licensedcode/data/rules/free-unknown_22.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_23.RULE b/src/licensedcode/data/rules/free-unknown_23.RULE index 0bd347deb4a..efb9900d880 100644 --- a/src/licensedcode/data/rules/free-unknown_23.RULE +++ b/src/licensedcode/data/rules/free-unknown_23.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +notes: Seen in some perl module +--- + This library is free software; you can redistribute it and/or modify it as you like. However, please be sure to provide proper credit where it is due. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_23.yml b/src/licensedcode/data/rules/free-unknown_23.yml deleted file mode 100644 index 4ab2e8117b9..00000000000 --- a/src/licensedcode/data/rules/free-unknown_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -notes: Seen in some perl module diff --git a/src/licensedcode/data/rules/free-unknown_24.RULE b/src/licensedcode/data/rules/free-unknown_24.RULE index cdbc35ff546..9cece52ba8a 100644 --- a/src/licensedcode/data/rules/free-unknown_24.RULE +++ b/src/licensedcode/data/rules/free-unknown_24.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it as you like. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_24.yml b/src/licensedcode/data/rules/free-unknown_24.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_25.RULE b/src/licensedcode/data/rules/free-unknown_25.RULE index 5343b87740a..a44d0c1815c 100644 --- a/src/licensedcode/data/rules/free-unknown_25.RULE +++ b/src/licensedcode/data/rules/free-unknown_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 80 +--- + The firmware this driver downloads into the Localtalk card is a separate program and is not GPL'd source code, even though the Linux side driver and the routine that loads this data into the card are. @@ -9,4 +15,4 @@ the use of COPS LocalTalk adapters. There is no charge for this SDK. And no waranty express or implied about its fitness for any purpose. However, we will cheerefully refund every penny you paid for this SDK... -Regards, +Regards, \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_25.yml b/src/licensedcode/data/rules/free-unknown_25.yml deleted file mode 100644 index 0119125ce09..00000000000 --- a/src/licensedcode/data/rules/free-unknown_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/free-unknown_26.RULE b/src/licensedcode/data/rules/free-unknown_26.RULE index b3634aa2f7e..9ae0bff2279 100644 --- a/src/licensedcode/data/rules/free-unknown_26.RULE +++ b/src/licensedcode/data/rules/free-unknown_26.RULE @@ -1,7 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + This is free software; you can redistribute it and/or modify it as you like. 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. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_26.yml b/src/licensedcode/data/rules/free-unknown_26.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_26.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_27.RULE b/src/licensedcode/data/rules/free-unknown_27.RULE index 61a312606a7..8dd6fc6256c 100644 --- a/src/licensedcode/data/rules/free-unknown_27.RULE +++ b/src/licensedcode/data/rules/free-unknown_27.RULE @@ -1,3 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Emagic +ignorable_holders: + - Emagic +--- + The firmware contained herein is Copyright (c) Emagic as an unpublished work. This notice does not imply unrestricted or public access to this firmware which is a trade secret of Emagic, @@ -11,4 +20,4 @@ in text or binary form as required. This firmware may not be modified and may only be used with the Interface. Distribution and/or Modification of any driver which includes this firmware, in whole or in part, -requires the inclusion of this statement. +requires the inclusion of this statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_27.yml b/src/licensedcode/data/rules/free-unknown_27.yml deleted file mode 100644 index 61398ef9f27..00000000000 --- a/src/licensedcode/data/rules/free-unknown_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Emagic -ignorable_holders: - - Emagic diff --git a/src/licensedcode/data/rules/free-unknown_28.RULE b/src/licensedcode/data/rules/free-unknown_28.RULE index 88f68570b4f..1592964ecac 100644 --- a/src/licensedcode/data/rules/free-unknown_28.RULE +++ b/src/licensedcode/data/rules/free-unknown_28.RULE @@ -1,3 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Emagic +ignorable_holders: + - Emagic +--- + The firmware contained herein is Copyright (c) Emagic as an unpublished work. This notice does not imply unrestricted or public access to this firmware which is a trade secret of Emagic, @@ -7,4 +16,4 @@ any third party without Emagic's written consent. All Rights Reserved. This firmware may not be modified and may only be used with the Interface. Distribution and/or Modification of any driver which includes this firmware, in whole or in part, -requires the inclusion of this statement. +requires the inclusion of this statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_28.yml b/src/licensedcode/data/rules/free-unknown_28.yml deleted file mode 100644 index 61398ef9f27..00000000000 --- a/src/licensedcode/data/rules/free-unknown_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Emagic -ignorable_holders: - - Emagic diff --git a/src/licensedcode/data/rules/free-unknown_29.RULE b/src/licensedcode/data/rules/free-unknown_29.RULE index eaaf7fcad6d..1ffe6d35655 100644 --- a/src/licensedcode/data/rules/free-unknown_29.RULE +++ b/src/licensedcode/data/rules/free-unknown_29.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 80 +--- + gives permission for anyone to use and modify this file without any obligation or license condition except that you retain -this copyright message in any source redistribution in whole or part. +this copyright message in any source redistribution in whole or part. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_29.yml b/src/licensedcode/data/rules/free-unknown_29.yml deleted file mode 100644 index 0119125ce09..00000000000 --- a/src/licensedcode/data/rules/free-unknown_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/free-unknown_3.RULE b/src/licensedcode/data/rules/free-unknown_3.RULE index 01aafd89253..76d5f2b3c26 100644 --- a/src/licensedcode/data/rules/free-unknown_3.RULE +++ b/src/licensedcode/data/rules/free-unknown_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +notes: typically for GPL but this can vary and be various versions +--- + This is free software; see the source for copying conditions. There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_3.yml b/src/licensedcode/data/rules/free-unknown_3.yml deleted file mode 100644 index 2d394b80abf..00000000000 --- a/src/licensedcode/data/rules/free-unknown_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_30.RULE b/src/licensedcode/data/rules/free-unknown_30.RULE index f38d67fd4b4..e91d2173e92 100644 --- a/src/licensedcode/data/rules/free-unknown_30.RULE +++ b/src/licensedcode/data/rules/free-unknown_30.RULE @@ -1,4 +1,10 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 50 +--- + Required Disclaimer: Hewlett-Packard makes no implied or expressed warranties about this code nor any promises to maintain or test it in any way. This copy of this snapshot is no longer the property -of Hewlett-Packard. +of Hewlett-Packard. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_30.yml b/src/licensedcode/data/rules/free-unknown_30.yml deleted file mode 100644 index b086f195d17..00000000000 --- a/src/licensedcode/data/rules/free-unknown_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/free-unknown_31.RULE b/src/licensedcode/data/rules/free-unknown_31.RULE index db53384a51e..3df6c368935 100644 --- a/src/licensedcode/data/rules/free-unknown_31.RULE +++ b/src/licensedcode/data/rules/free-unknown_31.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + free for public use \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_31.yml b/src/licensedcode/data/rules/free-unknown_31.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_32.RULE b/src/licensedcode/data/rules/free-unknown_32.RULE index dc6fde66382..6d324991690 100644 --- a/src/licensedcode/data/rules/free-unknown_32.RULE +++ b/src/licensedcode/data/rules/free-unknown_32.RULE @@ -1,7 +1,13 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 50 +--- + I hereby give permission, free of charge, to copy, modify, and redistribute this software, in source or binary form, provided that the above copyright notice and the following disclaimer are included in all such copies. THIS SOFTWARE IS PROVIDED "AS IS", WITH ABSOLUTELY NO WARRANTY, REAL -OR IMPLIED. +OR IMPLIED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_32.yml b/src/licensedcode/data/rules/free-unknown_32.yml deleted file mode 100644 index b086f195d17..00000000000 --- a/src/licensedcode/data/rules/free-unknown_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/free-unknown_33.RULE b/src/licensedcode/data/rules/free-unknown_33.RULE index 06385d7607b..93505acb1bc 100644 --- a/src/licensedcode/data/rules/free-unknown_33.RULE +++ b/src/licensedcode/data/rules/free-unknown_33.RULE @@ -1,5 +1,11 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 50 +--- + 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 LICENSE file included in this -release for licensing terms and conditions. +release for licensing terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_33.yml b/src/licensedcode/data/rules/free-unknown_33.yml deleted file mode 100644 index b086f195d17..00000000000 --- a/src/licensedcode/data/rules/free-unknown_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/free-unknown_34.RULE b/src/licensedcode/data/rules/free-unknown_34.RULE index 23e3eb64ffb..630fb96eeae 100644 --- a/src/licensedcode/data/rules/free-unknown_34.RULE +++ b/src/licensedcode/data/rules/free-unknown_34.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 80 +--- + Original licence information: @@ -14,4 +20,4 @@ Original licence information: This firmware may not be modified and may only be used with Keyspan hardware. Distribution and/or Modification of the keyspan.c driver which includes this firmware, in whole or in - part, requires the inclusion of this statement." + part, requires the inclusion of this statement." \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_34.yml b/src/licensedcode/data/rules/free-unknown_34.yml deleted file mode 100644 index 0119125ce09..00000000000 --- a/src/licensedcode/data/rules/free-unknown_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/free-unknown_35.RULE b/src/licensedcode/data/rules/free-unknown_35.RULE index 3c96bb99971..9f7dbd0655b 100644 --- a/src/licensedcode/data/rules/free-unknown_35.RULE +++ b/src/licensedcode/data/rules/free-unknown_35.RULE @@ -1 +1,7 @@ -Licence: "all firmware components are redistributable in binary form" +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + +Licence: "all firmware components are redistributable in binary form" \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_35.yml b/src/licensedcode/data/rules/free-unknown_35.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_36.RULE b/src/licensedcode/data/rules/free-unknown_36.RULE index a31d22dbde1..d849e6f274c 100644 --- a/src/licensedcode/data/rules/free-unknown_36.RULE +++ b/src/licensedcode/data/rules/free-unknown_36.RULE @@ -1,7 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + Licence: * * Permission is hereby granted for the distribution of this firmware * data in hexadecimal or equivalent format, provided this copyright * notice is accompanying it. -Found in hex form in kernel source. +Found in hex form in kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_36.yml b/src/licensedcode/data/rules/free-unknown_36.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_37.RULE b/src/licensedcode/data/rules/free-unknown_37.RULE index fc9ac065f22..0901576a1e3 100644 --- a/src/licensedcode/data/rules/free-unknown_37.RULE +++ b/src/licensedcode/data/rules/free-unknown_37.RULE @@ -1,8 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + Licence: * Firmware is: * Derived from proprietary unpublished source code, * * Permission is hereby granted for the distribution of this firmware * data in hexadecimal or equivalent format, provided this copyright - * notice is accompanying it. - + * notice is accompanying it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_37.yml b/src/licensedcode/data/rules/free-unknown_37.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_38.RULE b/src/licensedcode/data/rules/free-unknown_38.RULE index d43e4712090..698120dabd4 100644 --- a/src/licensedcode/data/rules/free-unknown_38.RULE +++ b/src/licensedcode/data/rules/free-unknown_38.RULE @@ -1,6 +1,11 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + Firmware is: Derived from proprietary unpublished source code, Permission is hereby granted for the distribution of this firmware data in hexadecimal or equivalent format, provided this copyright - notice is accompanying it. + notice is accompanying it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_38.yml b/src/licensedcode/data/rules/free-unknown_38.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_38.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_39.RULE b/src/licensedcode/data/rules/free-unknown_39.RULE index 0aefb5ab216..95b22e7aecc 100644 --- a/src/licensedcode/data/rules/free-unknown_39.RULE +++ b/src/licensedcode/data/rules/free-unknown_39.RULE @@ -1,3 +1,8 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + License: This file contains firmware data derived from proprietary unpublished @@ -5,6 +10,4 @@ License: Permission is hereby granted for the distribution of this firmware data in hexadecimal or equivalent format, provided this copyright notice is - accompanying it. - - + accompanying it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_39.yml b/src/licensedcode/data/rules/free-unknown_39.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_4.RULE b/src/licensedcode/data/rules/free-unknown_4.RULE index e97c8cc2828..e660dfa459d 100644 --- a/src/licensedcode/data/rules/free-unknown_4.RULE +++ b/src/licensedcode/data/rules/free-unknown_4.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + This is free software; see the end of this file for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_4.yml b/src/licensedcode/data/rules/free-unknown_4.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_40.RULE b/src/licensedcode/data/rules/free-unknown_40.RULE index 9a269aa4de2..0c01e5790c0 100644 --- a/src/licensedcode/data/rules/free-unknown_40.RULE +++ b/src/licensedcode/data/rules/free-unknown_40.RULE @@ -1,3 +1,8 @@ +--- +license_expression: free-unknown +is_license_text: yes +--- + This program was written for fun and is free. Distribute it as you please, but please distribute the entire package, with the original and diff --git a/src/licensedcode/data/rules/free-unknown_40.yml b/src/licensedcode/data/rules/free-unknown_40.yml deleted file mode 100644 index a3122823694..00000000000 --- a/src/licensedcode/data/rules/free-unknown_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_text: yes diff --git a/src/licensedcode/data/rules/free-unknown_41.RULE b/src/licensedcode/data/rules/free-unknown_41.RULE index af0a940bfad..6aab27f4acd 100644 --- a/src/licensedcode/data/rules/free-unknown_41.RULE +++ b/src/licensedcode/data/rules/free-unknown_41.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + which is freely available \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_41.yml b/src/licensedcode/data/rules/free-unknown_41.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_42.RULE b/src/licensedcode/data/rules/free-unknown_42.RULE index 4049bb81412..462696260be 100644 --- a/src/licensedcode/data/rules/free-unknown_42.RULE +++ b/src/licensedcode/data/rules/free-unknown_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 80 +--- + as an unpublished work. This notice does not imply unrestricted or public access to the source code from which this firmware image is derived. Except as noted below this firmware image may not be @@ -11,4 +17,4 @@ This firmware may not be modified and may only be used with Keyspan hardware. Distribution and/or Modification of the keyspan.c driver which includes this firmware, in whole or in - part, requires the inclusion of this statement." + part, requires the inclusion of this statement." \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_42.yml b/src/licensedcode/data/rules/free-unknown_42.yml deleted file mode 100644 index 0119125ce09..00000000000 --- a/src/licensedcode/data/rules/free-unknown_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/free-unknown_43.RULE b/src/licensedcode/data/rules/free-unknown_43.RULE index 9c4ab54bf9e..e1cdcf56528 100644 --- a/src/licensedcode/data/rules/free-unknown_43.RULE +++ b/src/licensedcode/data/rules/free-unknown_43.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: http://www.openi.org/docs/opl-1.0.txt is too rare to warrant more rules +ignorable_urls: + - http://www.openi.org/docs/opl-1.0.txt +--- + http://www.openi.org/docs/opl-1.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_43.yml b/src/licensedcode/data/rules/free-unknown_43.yml deleted file mode 100644 index 3b0a557a42f..00000000000 --- a/src/licensedcode/data/rules/free-unknown_43.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: http://www.openi.org/docs/opl-1.0.txt is too rare to warrant more rules -ignorable_urls: - - http://www.openi.org/docs/opl-1.0.txt diff --git a/src/licensedcode/data/rules/free-unknown_44.RULE b/src/licensedcode/data/rules/free-unknown_44.RULE index 468878a4d19..941d1053342 100644 --- a/src/licensedcode/data/rules/free-unknown_44.RULE +++ b/src/licensedcode/data/rules/free-unknown_44.RULE @@ -1,7 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + Firmware is: Derived from proprietary unpublished source code, Copyright Permission is hereby granted for the distribution of this firmware data in hexadecimal or equivalent format, provided this copyright - notice is accompanying it. + notice is accompanying it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_44.yml b/src/licensedcode/data/rules/free-unknown_44.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_45.RULE b/src/licensedcode/data/rules/free-unknown_45.RULE index 999bfeb6531..1d61db017f1 100644 --- a/src/licensedcode/data/rules/free-unknown_45.RULE +++ b/src/licensedcode/data/rules/free-unknown_45.RULE @@ -1,6 +1,11 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + Derived from proprietary unpublished source code, Copyright Permission is hereby granted for the distribution of this firmware data in hexadecimal or equivalent format, provided this copyright -notice is accompanying it. +notice is accompanying it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_45.yml b/src/licensedcode/data/rules/free-unknown_45.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_46.RULE b/src/licensedcode/data/rules/free-unknown_46.RULE index 434e0d7148e..50757741c10 100644 --- a/src/licensedcode/data/rules/free-unknown_46.RULE +++ b/src/licensedcode/data/rules/free-unknown_46.RULE @@ -1,3 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Emagic +ignorable_holders: + - Emagic +--- + The firmware contained herein is Copyright (c) Emagic as an unpublished work. This notice does not imply unrestricted or public access to this firmware which is a trade secret of Emagic, @@ -7,4 +16,4 @@ This firmware may not be modified and may only be used with the Emagic EMI 2|6 Audio Interface. Distribution and/or Modification of any driver which includes this firmware, in whole or in part, - requires the inclusion of this statement. + requires the inclusion of this statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_46.yml b/src/licensedcode/data/rules/free-unknown_46.yml deleted file mode 100644 index 61398ef9f27..00000000000 --- a/src/licensedcode/data/rules/free-unknown_46.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Emagic -ignorable_holders: - - Emagic diff --git a/src/licensedcode/data/rules/free-unknown_48.RULE b/src/licensedcode/data/rules/free-unknown_48.RULE index 85f9a26de9a..9cb2ce20690 100644 --- a/src/licensedcode/data/rules/free-unknown_48.RULE +++ b/src/licensedcode/data/rules/free-unknown_48.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 90 +notes: Seen in bootstrap. This is a cc-by-3.0, but the text alone is weak +--- + Docs released under [Creative Commons] \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_48.yml b/src/licensedcode/data/rules/free-unknown_48.yml deleted file mode 100644 index 9cd3e7c449e..00000000000 --- a/src/licensedcode/data/rules/free-unknown_48.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 90 -notes: Seen in bootstrap. This is a cc-by-3.0, but the text alone is weak diff --git a/src/licensedcode/data/rules/free-unknown_49.RULE b/src/licensedcode/data/rules/free-unknown_49.RULE index 7dac9e04786..1f6e3ead9da 100644 --- a/src/licensedcode/data/rules/free-unknown_49.RULE +++ b/src/licensedcode/data/rules/free-unknown_49.RULE @@ -1,4 +1,10 @@ +--- +license_expression: free-unknown +is_license_notice: yes +notes: Seen in bootstrap. This is a cc-by-3.0, but the text alone is weak +--- + It is free software, and may be redistributed under the terms specified in the [license]. - [license]: LICENSE.md + [license]: LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_49.yml b/src/licensedcode/data/rules/free-unknown_49.yml deleted file mode 100644 index 77ef7a990e7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -notes: Seen in bootstrap. This is a cc-by-3.0, but the text alone is weak diff --git a/src/licensedcode/data/rules/free-unknown_5.RULE b/src/licensedcode/data/rules/free-unknown_5.RULE index 623e12a6833..c0d454f5489 100644 --- a/src/licensedcode/data/rules/free-unknown_5.RULE +++ b/src/licensedcode/data/rules/free-unknown_5.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + This is free software; see the source for copying conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_5.yml b/src/licensedcode/data/rules/free-unknown_5.yml deleted file mode 100644 index 4dfef5fb5ae..00000000000 --- a/src/licensedcode/data/rules/free-unknown_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_50.RULE b/src/licensedcode/data/rules/free-unknown_50.RULE index a1a1e37d1c5..fab6e38cef0 100644 --- a/src/licensedcode/data/rules/free-unknown_50.RULE +++ b/src/licensedcode/data/rules/free-unknown_50.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: POSIX man page notice, no license key assigned yet +--- + This notice shall appear on any product containing this material. Redistribution of this material is permitted so long as this notice and diff --git a/src/licensedcode/data/rules/free-unknown_50.yml b/src/licensedcode/data/rules/free-unknown_50.yml deleted file mode 100644 index 75d88af7da4..00000000000 --- a/src/licensedcode/data/rules/free-unknown_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: POSIX man page notice, no license key assigned yet diff --git a/src/licensedcode/data/rules/free-unknown_51.RULE b/src/licensedcode/data/rules/free-unknown_51.RULE index 72f5cf43464..287d23a3ffd 100644 --- a/src/licensedcode/data/rules/free-unknown_51.RULE +++ b/src/licensedcode/data/rules/free-unknown_51.RULE @@ -1,2 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +notes: Seen in htmlagilitypack +--- + from CC Share-alike to BSD (3 clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_51.yml b/src/licensedcode/data/rules/free-unknown_51.yml deleted file mode 100644 index 40f064438a5..00000000000 --- a/src/licensedcode/data/rules/free-unknown_51.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -notes: Seen in htmlagilitypack diff --git a/src/licensedcode/data/rules/free-unknown_52.RULE b/src/licensedcode/data/rules/free-unknown_52.RULE index 1dd897d5503..6515b73d4d4 100644 --- a/src/licensedcode/data/rules/free-unknown_52.RULE +++ b/src/licensedcode/data/rules/free-unknown_52.RULE @@ -1,2 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + Permission is hereby granted to use, modify, and distribute this file in accordance with the terms of the license agreement accompanying it \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_52.yml b/src/licensedcode/data/rules/free-unknown_52.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_52.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_53.RULE b/src/licensedcode/data/rules/free-unknown_53.RULE index 5339422d8bb..2351fbcd6ce 100644 --- a/src/licensedcode/data/rules/free-unknown_53.RULE +++ b/src/licensedcode/data/rules/free-unknown_53.RULE @@ -1,3 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 99 +notes: this is the CC preamble that comes with some CC licenses text. +--- + Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. diff --git a/src/licensedcode/data/rules/free-unknown_53.yml b/src/licensedcode/data/rules/free-unknown_53.yml deleted file mode 100644 index 5531a3dd21a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_53.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 99 -notes: this is the CC preamble that comes with some CC licenses text. diff --git a/src/licensedcode/data/rules/free-unknown_54.RULE b/src/licensedcode/data/rules/free-unknown_54.RULE index 34883eaee63..bbfbc37f9b9 100644 --- a/src/licensedcode/data/rules/free-unknown_54.RULE +++ b/src/licensedcode/data/rules/free-unknown_54.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + This software is provided as open source. Any use, reproduction, or distribution of the software constitutes - recipient's acceptance of the terms of the accompanying license file. + recipient's acceptance of the terms of the accompanying license file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_54.yml b/src/licensedcode/data/rules/free-unknown_54.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_55.RULE b/src/licensedcode/data/rules/free-unknown_55.RULE index ab7d5239d64..98df9cf4694 100644 --- a/src/licensedcode/data/rules/free-unknown_55.RULE +++ b/src/licensedcode/data/rules/free-unknown_55.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 99 +--- + an Open Source license approved by opensource.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_55.yml b/src/licensedcode/data/rules/free-unknown_55.yml deleted file mode 100644 index dc57616b8cc..00000000000 --- a/src/licensedcode/data/rules/free-unknown_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/free-unknown_56.RULE b/src/licensedcode/data/rules/free-unknown_56.RULE index 87b44e415c6..ef1aa40ef54 100644 --- a/src/licensedcode/data/rules/free-unknown_56.RULE +++ b/src/licensedcode/data/rules/free-unknown_56.RULE @@ -1,2 +1,10 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +notes: Seen in https://transparency.entsoe.eu/content/static_content/download?path=/Static content/terms + and conditions/191025_List_of_Data_available_for_reuse_v2_cln.pdf +--- + list of data which can be freely re-used by the Data Users with no need to seek for the prior agreement of the respective Primary Owner of Dat \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_56.yml b/src/licensedcode/data/rules/free-unknown_56.yml deleted file mode 100644 index 99c8b054280..00000000000 --- a/src/licensedcode/data/rules/free-unknown_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -notes: Seen in https://transparency.entsoe.eu/content/static_content/download?path=/Static content/terms - and conditions/191025_List_of_Data_available_for_reuse_v2_cln.pdf diff --git a/src/licensedcode/data/rules/free-unknown_57.RULE b/src/licensedcode/data/rules/free-unknown_57.RULE index d96398400fd..fbaa034410d 100644 --- a/src/licensedcode/data/rules/free-unknown_57.RULE +++ b/src/licensedcode/data/rules/free-unknown_57.RULE @@ -1 +1,7 @@ -License: Charityware +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 100 +--- + +License: Charityware \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_57.yml b/src/licensedcode/data/rules/free-unknown_57.yml deleted file mode 100644 index 5be79ba5f34..00000000000 --- a/src/licensedcode/data/rules/free-unknown_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_58.RULE b/src/licensedcode/data/rules/free-unknown_58.RULE index 9e6eeaca3d1..6af12c818d9 100644 --- a/src/licensedcode/data/rules/free-unknown_58.RULE +++ b/src/licensedcode/data/rules/free-unknown_58.RULE @@ -1,5 +1,13 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.wu-ftpd.org/license.html +--- + Use and distribution of this software and its source code are governed by the terms and conditions of the WU-FTPD Software License ("LICENSE"). If you did not receive a copy of the license, it may be obtained online - at http://www.wu-ftpd.org/license.html. + at http://www.wu-ftpd.org/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_58.yml b/src/licensedcode/data/rules/free-unknown_58.yml deleted file mode 100644 index 76463a42037..00000000000 --- a/src/licensedcode/data/rules/free-unknown_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.wu-ftpd.org/license.html diff --git a/src/licensedcode/data/rules/free-unknown_59.RULE b/src/licensedcode/data/rules/free-unknown_59.RULE index d93c56c12ca..3337623ac7e 100644 --- a/src/licensedcode/data/rules/free-unknown_59.RULE +++ b/src/licensedcode/data/rules/free-unknown_59.RULE @@ -1 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.wu-ftpd.org/license.html +--- + http://www.wu-ftpd.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_59.yml b/src/licensedcode/data/rules/free-unknown_59.yml deleted file mode 100644 index 77a7fa84e80..00000000000 --- a/src/licensedcode/data/rules/free-unknown_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.wu-ftpd.org/license.html diff --git a/src/licensedcode/data/rules/free-unknown_6.RULE b/src/licensedcode/data/rules/free-unknown_6.RULE index 4baaa415711..b7a973ca04d 100644 --- a/src/licensedcode/data/rules/free-unknown_6.RULE +++ b/src/licensedcode/data/rules/free-unknown_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: free-unknown +is_license_notice: yes +referenced_filenames: + - COPYING +notes: typically for GPL but this can vary and be various versions +--- + This is free software; see the file COPYING for more information. There is no warranty; not even for merchantability or fitness for a particular purpose \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_6.yml b/src/licensedcode/data/rules/free-unknown_6.yml deleted file mode 100644 index 78b926675c3..00000000000 --- a/src/licensedcode/data/rules/free-unknown_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -referenced_filenames: - - COPYING -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_60.RULE b/src/licensedcode/data/rules/free-unknown_60.RULE index d09798a61a0..8736448899b 100644 --- a/src/licensedcode/data/rules/free-unknown_60.RULE +++ b/src/licensedcode/data/rules/free-unknown_60.RULE @@ -1,3 +1,14 @@ +--- +license_expression: free-unknown +is_license_text: yes +relevance: 100 +ignorable_authors: + - the WU-FTPD Development Group, the Washington University at Saint Louis, Berkeley Software + Design, Inc., and their contributors +ignorable_urls: + - http://www.wu-ftpd.org/license.html +--- + WU-FTPD SOFTWARE LICENSE @@ -25,5 +36,4 @@ THIS SOFTWARE IS PROVIDED BY THE WU-FTPD DEVELOPMENT GROUP, 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 WU-FTPD DEVELOPMENT GROUP, THE COPYRIGHT HOLDERS, 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 DAMAGES. - USE, MODIFICATION, OR REDISTRIBUTION, OF THIS SOFTWARE IMPLIES ACCEPTANCE OF ALL TERMS AND CONDITIONS OF THIS LICENSE. - + USE, MODIFICATION, OR REDISTRIBUTION, OF THIS SOFTWARE IMPLIES ACCEPTANCE OF ALL TERMS AND CONDITIONS OF THIS LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_60.yml b/src/licensedcode/data/rules/free-unknown_60.yml deleted file mode 100644 index 5e73acdc24c..00000000000 --- a/src/licensedcode/data/rules/free-unknown_60.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: free-unknown -is_license_text: yes -relevance: 100 -ignorable_authors: - - the WU-FTPD Development Group, the Washington University at Saint Louis, Berkeley Software - Design, Inc., and their contributors -ignorable_urls: - - http://www.wu-ftpd.org/license.html diff --git a/src/licensedcode/data/rules/free-unknown_61.RULE b/src/licensedcode/data/rules/free-unknown_61.RULE index b7804304087..a234facec07 100644 --- a/src/licensedcode/data/rules/free-unknown_61.RULE +++ b/src/licensedcode/data/rules/free-unknown_61.RULE @@ -1 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://www.opensource.org/licenses +--- + The distribution is licensed under some other Open Source Initiative-approved license listed at http://www.opensource.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_61.yml b/src/licensedcode/data/rules/free-unknown_61.yml deleted file mode 100644 index 849e21e60b8..00000000000 --- a/src/licensedcode/data/rules/free-unknown_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://www.opensource.org/licenses diff --git a/src/licensedcode/data/rules/free-unknown_62.RULE b/src/licensedcode/data/rules/free-unknown_62.RULE index 13de6e78384..2fd5851bb21 100644 --- a/src/licensedcode/data/rules/free-unknown_62.RULE +++ b/src/licensedcode/data/rules/free-unknown_62.RULE @@ -1 +1,9 @@ - The distribution is licensed under a license that is not approved by www.opensource.org but that allows distribution without restrictions. +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://www.opensource.org/ +--- + + The distribution is licensed under a license that is not approved by www.opensource.org but that allows distribution without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_62.yml b/src/licensedcode/data/rules/free-unknown_62.yml deleted file mode 100644 index 8a84e891572..00000000000 --- a/src/licensedcode/data/rules/free-unknown_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://www.opensource.org/ diff --git a/src/licensedcode/data/rules/free-unknown_63.RULE b/src/licensedcode/data/rules/free-unknown_63.RULE index cff38cd0732..289efae5023 100644 --- a/src/licensedcode/data/rules/free-unknown_63.RULE +++ b/src/licensedcode/data/rules/free-unknown_63.RULE @@ -1,4 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted, provided that this copyright notice is kept - intact. + intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_63.yml b/src/licensedcode/data/rules/free-unknown_63.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_63.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_64.RULE b/src/licensedcode/data/rules/free-unknown_64.RULE index 46756412952..4cde9b7a16e 100644 --- a/src/licensedcode/data/rules/free-unknown_64.RULE +++ b/src/licensedcode/data/rules/free-unknown_64.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + Free to use and modify provided the name is included \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_64.yml b/src/licensedcode/data/rules/free-unknown_64.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_65.RULE b/src/licensedcode/data/rules/free-unknown_65.RULE index 1d26c82491b..6237f92d5e1 100644 --- a/src/licensedcode/data/rules/free-unknown_65.RULE +++ b/src/licensedcode/data/rules/free-unknown_65.RULE @@ -1,5 +1,11 @@ +--- +license_expression: free-unknown +is_license_notice: yes +notes: found in older OpenSSL versions in openssl-1.1.0h/ms/tlhelp32.h +--- + This file is part of a free library for the Win32 API. 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. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_65.yml b/src/licensedcode/data/rules/free-unknown_65.yml deleted file mode 100644 index 6d1ee1dbe2f..00000000000 --- a/src/licensedcode/data/rules/free-unknown_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -notes: found in older OpenSSL versions in openssl-1.1.0h/ms/tlhelp32.h diff --git a/src/licensedcode/data/rules/free-unknown_66.RULE b/src/licensedcode/data/rules/free-unknown_66.RULE index 889f1b7bd81..23e2e7318ba 100644 --- a/src/licensedcode/data/rules/free-unknown_66.RULE +++ b/src/licensedcode/data/rules/free-unknown_66.RULE @@ -1,3 +1,8 @@ +--- +license_expression: free-unknown +is_license_notice: yes +--- + // Permission is granted to use at your own risk and distribute this software // in source and binary forms provided the above copyright notice and this // paragraph are preserved on all copies. This software is provided "as is" diff --git a/src/licensedcode/data/rules/free-unknown_66.yml b/src/licensedcode/data/rules/free-unknown_66.yml deleted file mode 100644 index 74cb218d689..00000000000 --- a/src/licensedcode/data/rules/free-unknown_66.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/free-unknown_67.RULE b/src/licensedcode/data/rules/free-unknown_67.RULE index ea13be4dabe..9433536bf02 100644 --- a/src/licensedcode/data/rules/free-unknown_67.RULE +++ b/src/licensedcode/data/rules/free-unknown_67.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + the license is compatible with the GPL V3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_67.yml b/src/licensedcode/data/rules/free-unknown_67.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_68.RULE b/src/licensedcode/data/rules/free-unknown_68.RULE index c7533090bbe..5a27836b986 100644 --- a/src/licensedcode/data/rules/free-unknown_68.RULE +++ b/src/licensedcode/data/rules/free-unknown_68.RULE @@ -1,3 +1,15 @@ +--- +license_expression: free-unknown +is_license_text: yes +minimum_coverage: 99 +notes: | + this is a rare modified Apache 2.0 license from PIXAR, reported as + free-unknown to draw attention on its uncommon terms + See https://raw.githubusercontent.com/PixarAnimationStudios/ruby-jss/master/LICENSE.txt + When compared with the Apache-2.0 license text, section 6. Trademarks has been modified + to narrow the original exception of TM usage "as required for reasonable and customary use"... +--- + Modified Apache 2.0 License @@ -171,4 +183,4 @@ 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. + of your accepting any such warranty or additional liability. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_68.yml b/src/licensedcode/data/rules/free-unknown_68.yml deleted file mode 100644 index c0f5f8c6103..00000000000 --- a/src/licensedcode/data/rules/free-unknown_68.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: free-unknown -is_license_text: yes -minimum_coverage: 99 -notes: | - this is a rare modified Apache 2.0 license from PIXAR, reported as - free-unknown to draw attention on its uncommon terms - See https://raw.githubusercontent.com/PixarAnimationStudios/ruby-jss/master/LICENSE.txt - When compared with the Apache-2.0 license text, section 6. Trademarks has been modified - to narrow the original exception of TM usage "as required for reasonable and customary use"... diff --git a/src/licensedcode/data/rules/free-unknown_69.RULE b/src/licensedcode/data/rules/free-unknown_69.RULE index 02c2c08a79f..ddfe98be12d 100644 --- a/src/licensedcode/data/rules/free-unknown_69.RULE +++ b/src/licensedcode/data/rules/free-unknown_69.RULE @@ -1,3 +1,15 @@ +--- +license_expression: free-unknown +is_license_notice: yes +minimum_coverage: 99 +notes: | + this is a rare modified Apache 2.0 license from PIXAR, reported as + free-unknown to draw attention on its uncommon terms + See https://raw.githubusercontent.com/PixarAnimationStudios/ruby-jss/master/LICENSE.txt +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ### Licensed under the Apache License, Version 2.0 (the "Apache License") ### with the following modification; you may not use this file except in ### compliance with the Apache License and the following modification to it: diff --git a/src/licensedcode/data/rules/free-unknown_69.yml b/src/licensedcode/data/rules/free-unknown_69.yml deleted file mode 100644 index 5c23d151e06..00000000000 --- a/src/licensedcode/data/rules/free-unknown_69.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -minimum_coverage: 99 -notes: | - this is a rare modified Apache 2.0 license from PIXAR, reported as - free-unknown to draw attention on its uncommon terms - See https://raw.githubusercontent.com/PixarAnimationStudios/ruby-jss/master/LICENSE.txt -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/free-unknown_7.RULE b/src/licensedcode/data/rules/free-unknown_7.RULE index af000a18039..bab4d9ec2f7 100644 --- a/src/licensedcode/data/rules/free-unknown_7.RULE +++ b/src/licensedcode/data/rules/free-unknown_7.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +--- + This software is open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_7.yml b/src/licensedcode/data/rules/free-unknown_7.yml deleted file mode 100644 index c94180642b5..00000000000 --- a/src/licensedcode/data/rules/free-unknown_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/free-unknown_70.RULE b/src/licensedcode/data/rules/free-unknown_70.RULE index 972893e6879..7f2e23a4157 100644 --- a/src/licensedcode/data/rules/free-unknown_70.RULE +++ b/src/licensedcode/data/rules/free-unknown_70.RULE @@ -1 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: | + this is a rare modified Apache 2.0 license from PIXAR, reported as + free-unknown to draw attention on its uncommon terms + See https://raw.githubusercontent.com/PixarAnimationStudios/ruby-jss/master/LICENSE.txt +--- + license = 'Apache-2.0 WITH Modifications' \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_70.yml b/src/licensedcode/data/rules/free-unknown_70.yml deleted file mode 100644 index f9740f0dd50..00000000000 --- a/src/licensedcode/data/rules/free-unknown_70.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: | - this is a rare modified Apache 2.0 license from PIXAR, reported as - free-unknown to draw attention on its uncommon terms - See https://raw.githubusercontent.com/PixarAnimationStudios/ruby-jss/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/free-unknown_71.RULE b/src/licensedcode/data/rules/free-unknown_71.RULE index c66d8f4d4e1..581c5a21c7e 100644 --- a/src/licensedcode/data/rules/free-unknown_71.RULE +++ b/src/licensedcode/data/rules/free-unknown_71.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.DJ +notes: typically for GPL +--- + see COPYING.DJ for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_71.yml b/src/licensedcode/data/rules/free-unknown_71.yml deleted file mode 100644 index f8f095dce37..00000000000 --- a/src/licensedcode/data/rules/free-unknown_71.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.DJ -notes: typically for GPL diff --git a/src/licensedcode/data/rules/free-unknown_72.RULE b/src/licensedcode/data/rules/free-unknown_72.RULE index fb97ef7a545..82d773e56ca 100644 --- a/src/licensedcode/data/rules/free-unknown_72.RULE +++ b/src/licensedcode/data/rules/free-unknown_72.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + No known copyright restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_72.yml b/src/licensedcode/data/rules/free-unknown_72.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_73.RULE b/src/licensedcode/data/rules/free-unknown_73.RULE index 56450de82ee..1c167514026 100644 --- a/src/licensedcode/data/rules/free-unknown_73.RULE +++ b/src/licensedcode/data/rules/free-unknown_73.RULE @@ -1,2 +1,8 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + are not public domain -software. \ No newline at end of file +software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_73.yml b/src/licensedcode/data/rules/free-unknown_73.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_74.RULE b/src/licensedcode/data/rules/free-unknown_74.RULE index c6b2668e027..54b84ddaced 100644 --- a/src/licensedcode/data/rules/free-unknown_74.RULE +++ b/src/licensedcode/data/rules/free-unknown_74.RULE @@ -1,5 +1,11 @@ +--- +license_expression: free-unknown +is_license_text: yes +notes: found in old texi2html code in older bash/support +--- + This program is the intellectual property of the European Laboratory for Particle Physics (known as CERN). No guarantee whatsoever is provided by CERN. No liability whatsoever is accepted for any loss or damage of any kind resulting from any defect or inaccuracy in this information or -code. +code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_74.yml b/src/licensedcode/data/rules/free-unknown_74.yml deleted file mode 100644 index 2b85710d12c..00000000000 --- a/src/licensedcode/data/rules/free-unknown_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_text: yes -notes: found in old texi2html code in older bash/support diff --git a/src/licensedcode/data/rules/free-unknown_75.RULE b/src/licensedcode/data/rules/free-unknown_75.RULE index 8bc94473805..61676b6280a 100644 --- a/src/licensedcode/data/rules/free-unknown_75.RULE +++ b/src/licensedcode/data/rules/free-unknown_75.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_text: yes +notes: this is a per-GPL text found in RMS regex code from circa 1985 +--- + This program is distributed in the hope that it will be useful, but without any warranty. No author or distributor accepts responsibility to anyone for the consequences of using it @@ -37,4 +43,4 @@ unless he says so in writing. is also distributed or offered as stated in the preceding paragraph. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve -what you give them. Help stamp out software-hoarding! */ +what you give them. Help stamp out software-hoarding! */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_75.yml b/src/licensedcode/data/rules/free-unknown_75.yml deleted file mode 100644 index 9c86f390f46..00000000000 --- a/src/licensedcode/data/rules/free-unknown_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_text: yes -notes: this is a per-GPL text found in RMS regex code from circa 1985 diff --git a/src/licensedcode/data/rules/free-unknown_76.RULE b/src/licensedcode/data/rules/free-unknown_76.RULE index 4302ad5d440..ca8cdafcf9c 100644 --- a/src/licensedcode/data/rules/free-unknown_76.RULE +++ b/src/licensedcode/data/rules/free-unknown_76.RULE @@ -1,2 +1,8 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + freely available for general use \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_76.yml b/src/licensedcode/data/rules/free-unknown_76.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_77.RULE b/src/licensedcode/data/rules/free-unknown_77.RULE index 7899ace48f6..94ad28a54c4 100644 --- a/src/licensedcode/data/rules/free-unknown_77.RULE +++ b/src/licensedcode/data/rules/free-unknown_77.RULE @@ -1,2 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +notes: found in some libpng notices +--- + have other copyright owners and are released under other open source licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_77.yml b/src/licensedcode/data/rules/free-unknown_77.yml deleted file mode 100644 index 052fe8e4934..00000000000 --- a/src/licensedcode/data/rules/free-unknown_77.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -notes: found in some libpng notices diff --git a/src/licensedcode/data/rules/free-unknown_78.RULE b/src/licensedcode/data/rules/free-unknown_78.RULE index fd9c4edb29a..6a9cbb251c5 100644 --- a/src/licensedcode/data/rules/free-unknown_78.RULE +++ b/src/licensedcode/data/rules/free-unknown_78.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING + - LICENSE +--- + # This is free software. Please see the LICENSE and COPYING files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_78.yml b/src/licensedcode/data/rules/free-unknown_78.yml deleted file mode 100644 index a31b1aa885b..00000000000 --- a/src/licensedcode/data/rules/free-unknown_78.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING - - LICENSE diff --git a/src/licensedcode/data/rules/free-unknown_79.RULE b/src/licensedcode/data/rules/free-unknown_79.RULE index 5b8fc18cfb5..d8bfd9406ee 100644 --- a/src/licensedcode/data/rules/free-unknown_79.RULE +++ b/src/licensedcode/data/rules/free-unknown_79.RULE @@ -1 +1,8 @@ -This file is distributed under the same license as the package +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 90 +notes: Seen in gettext +--- + +This file is distributed under the same license as the package \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_79.yml b/src/licensedcode/data/rules/free-unknown_79.yml deleted file mode 100644 index b6d10267484..00000000000 --- a/src/licensedcode/data/rules/free-unknown_79.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 90 -notes: Seen in gettext diff --git a/src/licensedcode/data/rules/free-unknown_8.RULE b/src/licensedcode/data/rules/free-unknown_8.RULE index 78ad743f075..d9234a7a03b 100644 --- a/src/licensedcode/data/rules/free-unknown_8.RULE +++ b/src/licensedcode/data/rules/free-unknown_8.RULE @@ -1 +1,10 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: typically for GPL but this can vary and be various versions +--- + THIS IS FREE SOFTWARE, see the included file COPYING for more info \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_8.yml b/src/licensedcode/data/rules/free-unknown_8.yml deleted file mode 100644 index b5407ba0b95..00000000000 --- a/src/licensedcode/data/rules/free-unknown_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_80.RULE b/src/licensedcode/data/rules/free-unknown_80.RULE index 31e02c9883a..ada3ab92ee6 100644 --- a/src/licensedcode/data/rules/free-unknown_80.RULE +++ b/src/licensedcode/data/rules/free-unknown_80.RULE @@ -1 +1,8 @@ -This file is distributed under the same license as the PACKAGE package +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 90 +notes: Seen in gettext +--- + +This file is distributed under the same license as the PACKAGE package \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_80.yml b/src/licensedcode/data/rules/free-unknown_80.yml deleted file mode 100644 index b6d10267484..00000000000 --- a/src/licensedcode/data/rules/free-unknown_80.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 90 -notes: Seen in gettext diff --git a/src/licensedcode/data/rules/free-unknown_81.RULE b/src/licensedcode/data/rules/free-unknown_81.RULE index dfd8cf0122c..071f5d2632a 100644 --- a/src/licensedcode/data/rules/free-unknown_81.RULE +++ b/src/licensedcode/data/rules/free-unknown_81.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +notes: typically for GPL but this can vary and be other license +--- + Free Sotware Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_81.yml b/src/licensedcode/data/rules/free-unknown_81.yml deleted file mode 100644 index 03f5a4be796..00000000000 --- a/src/licensedcode/data/rules/free-unknown_81.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -notes: typically for GPL but this can vary and be other license diff --git a/src/licensedcode/data/rules/free-unknown_82.RULE b/src/licensedcode/data/rules/free-unknown_82.RULE index 7ac2b74d1b0..c057d995fa1 100644 --- a/src/licensedcode/data/rules/free-unknown_82.RULE +++ b/src/licensedcode/data/rules/free-unknown_82.RULE @@ -1 +1,8 @@ -license open_source +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 90 +notes: tag as documented in the Module-Build pod +--- + +license open_source \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_82.yml b/src/licensedcode/data/rules/free-unknown_82.yml deleted file mode 100644 index 4cddbcec26b..00000000000 --- a/src/licensedcode/data/rules/free-unknown_82.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 90 -notes: tag as documented in the Module-Build pod diff --git a/src/licensedcode/data/rules/free-unknown_83.RULE b/src/licensedcode/data/rules/free-unknown_83.RULE index e7a40e5365c..b83d011daf6 100644 --- a/src/licensedcode/data/rules/free-unknown_83.RULE +++ b/src/licensedcode/data/rules/free-unknown_83.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + Software incorporates the following openly-licensed libraries and code: \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_83.yml b/src/licensedcode/data/rules/free-unknown_83.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_84.RULE b/src/licensedcode/data/rules/free-unknown_84.RULE index db229d3403a..2e56979bd25 100644 --- a/src/licensedcode/data/rules/free-unknown_84.RULE +++ b/src/licensedcode/data/rules/free-unknown_84.RULE @@ -1,5 +1,12 @@ +--- +license_expression: free-unknown +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file contains the usage terms for . The full details of usage are provided on the home page; although this file and the information on the web page should be identical, in case of any dispute the web page takes precedence. This file is included because some distributions -require the presence of a COPYING file. +require the presence of a COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_84.yml b/src/licensedcode/data/rules/free-unknown_84.yml deleted file mode 100644 index b0d260e3c63..00000000000 --- a/src/licensedcode/data/rules/free-unknown_84.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/free-unknown_85.RULE b/src/licensedcode/data/rules/free-unknown_85.RULE index c7e095c5fdb..4210b7da1d4 100644 --- a/src/licensedcode/data/rules/free-unknown_85.RULE +++ b/src/licensedcode/data/rules/free-unknown_85.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + Free/Open Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_85.yml b/src/licensedcode/data/rules/free-unknown_85.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_86.RULE b/src/licensedcode/data/rules/free-unknown_86.RULE index 133db02b9a8..abae98ddedd 100644 --- a/src/licensedcode/data/rules/free-unknown_86.RULE +++ b/src/licensedcode/data/rules/free-unknown_86.RULE @@ -1,6 +1,15 @@ +--- +license_expression: free-unknown AND other-permissive +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - Copyright.txt +ignorable_urls: + - http://gdcm.sourceforge.net/Copyright.html +--- + See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notice for more information. - + PURPOSE. See the above copyright notice for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_86.yml b/src/licensedcode/data/rules/free-unknown_86.yml deleted file mode 100644 index c87e92e8bfc..00000000000 --- a/src/licensedcode/data/rules/free-unknown_86.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: free-unknown AND other-permissive -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - Copyright.txt -ignorable_urls: - - http://gdcm.sourceforge.net/Copyright.html diff --git a/src/licensedcode/data/rules/free-unknown_87.RULE b/src/licensedcode/data/rules/free-unknown_87.RULE index d22b884b2f6..81a853a9769 100644 --- a/src/licensedcode/data/rules/free-unknown_87.RULE +++ b/src/licensedcode/data/rules/free-unknown_87.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 90 +notes: tag as documented in the Module-Build pod +--- + license unrestricted \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_87.yml b/src/licensedcode/data/rules/free-unknown_87.yml deleted file mode 100644 index 4cddbcec26b..00000000000 --- a/src/licensedcode/data/rules/free-unknown_87.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 90 -notes: tag as documented in the Module-Build pod diff --git a/src/licensedcode/data/rules/free-unknown_88.RULE b/src/licensedcode/data/rules/free-unknown_88.RULE index c3ba7665501..5b0bd2fbca7 100644 --- a/src/licensedcode/data/rules/free-unknown_88.RULE +++ b/src/licensedcode/data/rules/free-unknown_88.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 50 +--- + open source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_88.yml b/src/licensedcode/data/rules/free-unknown_88.yml deleted file mode 100644 index 5697a2e1198..00000000000 --- a/src/licensedcode/data/rules/free-unknown_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/free-unknown_89.RULE b/src/licensedcode/data/rules/free-unknown_89.RULE index a79c5a1d7dd..aeae8002474 100644 --- a/src/licensedcode/data/rules/free-unknown_89.RULE +++ b/src/licensedcode/data/rules/free-unknown_89.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + opensource.org/trademarks/osi-certified/web/osi-certified-120x100.gif \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_89.yml b/src/licensedcode/data/rules/free-unknown_89.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_9.RULE b/src/licensedcode/data/rules/free-unknown_9.RULE index 56b214c943a..92a3028d4ce 100644 --- a/src/licensedcode/data/rules/free-unknown_9.RULE +++ b/src/licensedcode/data/rules/free-unknown_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +notes: typically for GPL but this can vary and be various versions +--- + This program comes with ABSOLUTELY NO WARRANTY; This is free software, and you are welcome to redistribute it under certain conditions \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_9.yml b/src/licensedcode/data/rules/free-unknown_9.yml deleted file mode 100644 index 2d394b80abf..00000000000 --- a/src/licensedcode/data/rules/free-unknown_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_90.RULE b/src/licensedcode/data/rules/free-unknown_90.RULE index 70af2618fe1..92c2c9e9d04 100644 --- a/src/licensedcode/data/rules/free-unknown_90.RULE +++ b/src/licensedcode/data/rules/free-unknown_90.RULE @@ -1 +1,8 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +notes: typically for GPL but this can vary and be various versions +--- + is a free software library \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_90.yml b/src/licensedcode/data/rules/free-unknown_90.yml deleted file mode 100644 index 29730deda42..00000000000 --- a/src/licensedcode/data/rules/free-unknown_90.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/free-unknown_91.RULE b/src/licensedcode/data/rules/free-unknown_91.RULE index 5b97ae1a71e..f03b9fdf73f 100644 --- a/src/licensedcode/data/rules/free-unknown_91.RULE +++ b/src/licensedcode/data/rules/free-unknown_91.RULE @@ -1,4 +1,9 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. -Type 'license()' or 'licence()' for distribution details. - +Type 'license()' or 'licence()' for distribution details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_91.yml b/src/licensedcode/data/rules/free-unknown_91.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_92.RULE b/src/licensedcode/data/rules/free-unknown_92.RULE index b77f12c5351..745b4e3936d 100644 --- a/src/licensedcode/data/rules/free-unknown_92.RULE +++ b/src/licensedcode/data/rules/free-unknown_92.RULE @@ -1,3 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + uses icons from many different sources, using various free/open licenses. This file lists the various sources and their respective licenses. For more diff --git a/src/licensedcode/data/rules/free-unknown_92.yml b/src/licensedcode/data/rules/free-unknown_92.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_93.RULE b/src/licensedcode/data/rules/free-unknown_93.RULE index 57df058ee2b..a357804a79c 100644 --- a/src/licensedcode/data/rules/free-unknown_93.RULE +++ b/src/licensedcode/data/rules/free-unknown_93.RULE @@ -1 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ +--- + https://www.opensource.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_93.yml b/src/licensedcode/data/rules/free-unknown_93.yml deleted file mode 100644 index 2cda2602e9d..00000000000 --- a/src/licensedcode/data/rules/free-unknown_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ diff --git a/src/licensedcode/data/rules/free-unknown_94.RULE b/src/licensedcode/data/rules/free-unknown_94.RULE index 4f3c6c1bd85..691ab6aa615 100644 --- a/src/licensedcode/data/rules/free-unknown_94.RULE +++ b/src/licensedcode/data/rules/free-unknown_94.RULE @@ -1 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ +--- + http://www.opensource.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_94.yml b/src/licensedcode/data/rules/free-unknown_94.yml deleted file mode 100644 index a26ab320c38..00000000000 --- a/src/licensedcode/data/rules/free-unknown_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ diff --git a/src/licensedcode/data/rules/free-unknown_95.RULE b/src/licensedcode/data/rules/free-unknown_95.RULE index c802cf40cc0..097c8affb06 100644 --- a/src/licensedcode/data/rules/free-unknown_95.RULE +++ b/src/licensedcode/data/rules/free-unknown_95.RULE @@ -1 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/ +--- + https://opensource.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_95.yml b/src/licensedcode/data/rules/free-unknown_95.yml deleted file mode 100644 index 68fccf95b0b..00000000000 --- a/src/licensedcode/data/rules/free-unknown_95.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/ diff --git a/src/licensedcode/data/rules/free-unknown_96.RULE b/src/licensedcode/data/rules/free-unknown_96.RULE index dfb32cf637f..6efe311238f 100644 --- a/src/licensedcode/data/rules/free-unknown_96.RULE +++ b/src/licensedcode/data/rules/free-unknown_96.RULE @@ -1 +1,9 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ +--- + http://opensource.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_96.yml b/src/licensedcode/data/rules/free-unknown_96.yml deleted file mode 100644 index a347b74b961..00000000000 --- a/src/licensedcode/data/rules/free-unknown_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ diff --git a/src/licensedcode/data/rules/free-unknown_97.RULE b/src/licensedcode/data/rules/free-unknown_97.RULE index 1b0f30d0d9d..c81362d46dc 100644 --- a/src/licensedcode/data/rules/free-unknown_97.RULE +++ b/src/licensedcode/data/rules/free-unknown_97.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +--- + available under an open-source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_97.yml b/src/licensedcode/data/rules/free-unknown_97.yml deleted file mode 100644 index f8650a2207a..00000000000 --- a/src/licensedcode/data/rules/free-unknown_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_98.RULE b/src/licensedcode/data/rules/free-unknown_98.RULE index 3e531094418..3788b609440 100644 --- a/src/licensedcode/data/rules/free-unknown_98.RULE +++ b/src/licensedcode/data/rules/free-unknown_98.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + Free for all commercial and non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_98.yml b/src/licensedcode/data/rules/free-unknown_98.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_99.RULE b/src/licensedcode/data/rules/free-unknown_99.RULE index d3697b47f61..a1983776136 100644 --- a/src/licensedcode/data/rules/free-unknown_99.RULE +++ b/src/licensedcode/data/rules/free-unknown_99.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 100 +--- + This is free for any kind of commercial and non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_99.yml b/src/licensedcode/data/rules/free-unknown_99.yml deleted file mode 100644 index 5cc6b1735d7..00000000000 --- a/src/licensedcode/data/rules/free-unknown_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_1.RULE b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_1.RULE index c36f50bfeae..8b66496876f 100644 --- a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: free-unknown AND apache-2.0 WITH generic-exception +is_license_notice: yes +referenced_filenames: + - COPYING.YARA + - /usr/share/common-licenses/Apache-2.0 +notes: See https://bugzilla.clamav.net/show_bug.cgi?id=11336 and https://github.com/Cisco-Talos/clamav/issues/283 + to understand why there are licensing issues +ignorable_urls: + - https://bugzilla.clamav.net/show_bug.cgi?id=11336 +--- + See COPYING.YARA. The GPL exception has been granted by upstream in https://bugzilla.clamav.net/show_bug.cgi?id=11336: Steven Morgan 2015-07-21 23:02:01 CEST diff --git a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_1.yml b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_1.yml deleted file mode 100644 index 2ba405f5dce..00000000000 --- a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: free-unknown AND apache-2.0 WITH generic-exception -is_license_notice: yes -referenced_filenames: - - COPYING.YARA - - /usr/share/common-licenses/Apache-2.0 -notes: See https://bugzilla.clamav.net/show_bug.cgi?id=11336 and https://github.com/Cisco-Talos/clamav/issues/283 - to understand why there are licensing issues -ignorable_urls: - - https://bugzilla.clamav.net/show_bug.cgi?id=11336 diff --git a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_2.RULE b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_2.RULE index 2e47d8f4fda..a32e97c7001 100644 --- a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_2.RULE +++ b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: free-unknown AND apache-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.YARA + - /usr/share/common-licenses/Apache-2.0 +notes: See https://bugzilla.clamav.net/show_bug.cgi?id=11336 and https://github.com/Cisco-Talos/clamav/issues/283 + to understand why there are licensing issues +ignorable_urls: + - https://bugzilla.clamav.net/show_bug.cgi?id=11336 +--- + See COPYING.YARA. The GPL exception has been granted by upstream in https://bugzilla.clamav.net/show_bug.cgi?id=11336: Steven Morgan 2015-07-21 23:02:01 CEST diff --git a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_2.yml b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_2.yml deleted file mode 100644 index 0bbf37dd1b5..00000000000 --- a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: free-unknown AND apache-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.YARA - - /usr/share/common-licenses/Apache-2.0 -notes: See https://bugzilla.clamav.net/show_bug.cgi?id=11336 and https://github.com/Cisco-Talos/clamav/issues/283 - to understand why there are licensing issues -ignorable_urls: - - https://bugzilla.clamav.net/show_bug.cgi?id=11336 diff --git a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_3.RULE b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_3.RULE index 0bebf755a03..451899f261a 100644 --- a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_3.RULE +++ b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: free-unknown AND apache-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.YARA + - /usr/share/common-licenses/Apache-2.0 +notes: See https://bugzilla.clamav.net/show_bug.cgi?id=11336 and https://github.com/Cisco-Talos/clamav/issues/283 + to understand why there are licensing issues +ignorable_urls: + - https://bugzilla.clamav.net/show_bug.cgi?id=11336 +--- + See COPYING.YARA. The GPL exception has been granted by upstream in https://bugzilla.clamav.net/show_bug.cgi?id=11336: Steven Morgan 2015-07-21 23:02:01 CEST diff --git a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_3.yml b/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_3.yml deleted file mode 100644 index 0bbf37dd1b5..00000000000 --- a/src/licensedcode/data/rules/free-unknown_and_apache-2.0_with_generic-exception_3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: free-unknown AND apache-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.YARA - - /usr/share/common-licenses/Apache-2.0 -notes: See https://bugzilla.clamav.net/show_bug.cgi?id=11336 and https://github.com/Cisco-Talos/clamav/issues/283 - to understand why there are licensing issues -ignorable_urls: - - https://bugzilla.clamav.net/show_bug.cgi?id=11336 diff --git a/src/licensedcode/data/rules/free-unknown_rare.RULE b/src/licensedcode/data/rules/free-unknown_rare.RULE index 716381eddce..dc98334fa45 100644 --- a/src/licensedcode/data/rules/free-unknown_rare.RULE +++ b/src/licensedcode/data/rules/free-unknown_rare.RULE @@ -1,4 +1,9 @@ +--- +license_expression: free-unknown +is_license_text: yes +--- + These tools are provided as-is and without warranty or support. They do not constitute part of the product suite. Users are free to use, fork and modify them, subject to the license agreement. While welcomes -contributions, we cannot guarantee to include every contribution in the master project. +contributions, we cannot guarantee to include every contribution in the master project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_rare.yml b/src/licensedcode/data/rules/free-unknown_rare.yml deleted file mode 100644 index a3122823694..00000000000 --- a/src/licensedcode/data/rules/free-unknown_rare.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_text: yes diff --git a/src/licensedcode/data/rules/free-unknown_uoi-ncsa-like.RULE b/src/licensedcode/data/rules/free-unknown_uoi-ncsa-like.RULE index 0574ccdda53..40ce084e2db 100644 --- a/src/licensedcode/data/rules/free-unknown_uoi-ncsa-like.RULE +++ b/src/licensedcode/data/rules/free-unknown_uoi-ncsa-like.RULE @@ -1,2 +1,11 @@ +--- +license_expression: free-unknown +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE.txt +--- + You may freely distribute it under the terms of the license agreement found in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_uoi-ncsa-like.yml b/src/licensedcode/data/rules/free-unknown_uoi-ncsa-like.yml deleted file mode 100644 index 76687f4a1c2..00000000000 --- a/src/licensedcode/data/rules/free-unknown_uoi-ncsa-like.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: free-unknown -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/free-unknown_zulip.RULE b/src/licensedcode/data/rules/free-unknown_zulip.RULE index 7ba8f5491a8..1b390c042af 100644 --- a/src/licensedcode/data/rules/free-unknown_zulip.RULE +++ b/src/licensedcode/data/rules/free-unknown_zulip.RULE @@ -1,3 +1,8 @@ +--- +license_expression: free-unknown +is_license_reference: yes +--- + The software includes some works released by third parties under other free and open source licenses. Those works are redistributed under the license terms under which the works were received. \ No newline at end of file diff --git a/src/licensedcode/data/rules/free-unknown_zulip.yml b/src/licensedcode/data/rules/free-unknown_zulip.yml deleted file mode 100644 index cda5a30cc1c..00000000000 --- a/src/licensedcode/data/rules/free-unknown_zulip.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes diff --git a/src/licensedcode/data/rules/freebsd-boot_2.RULE b/src/licensedcode/data/rules/freebsd-boot_2.RULE index 6ac232921a3..57c27479fa5 100644 --- a/src/licensedcode/data/rules/freebsd-boot_2.RULE +++ b/src/licensedcode/data/rules/freebsd-boot_2.RULE @@ -1 +1,9 @@ +--- +license_expression: freebsd-boot +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://casper.berkeley.edu/svn/trunk/roach/sw/uboot/common/cmd_elf.c +--- + https://casper.berkeley.edu/svn/trunk/roach/sw/uboot/common/cmd_elf.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-boot_2.yml b/src/licensedcode/data/rules/freebsd-boot_2.yml deleted file mode 100644 index 89e19a4893d..00000000000 --- a/src/licensedcode/data/rules/freebsd-boot_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freebsd-boot -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://casper.berkeley.edu/svn/trunk/roach/sw/uboot/common/cmd_elf.c diff --git a/src/licensedcode/data/rules/freebsd-boot_3.RULE b/src/licensedcode/data/rules/freebsd-boot_3.RULE index 6783c1de6de..15a0a76cf3d 100644 --- a/src/licensedcode/data/rules/freebsd-boot_3.RULE +++ b/src/licensedcode/data/rules/freebsd-boot_3.RULE @@ -1 +1,9 @@ +--- +license_expression: freebsd-boot +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html +--- + http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-boot_3.yml b/src/licensedcode/data/rules/freebsd-boot_3.yml deleted file mode 100644 index f9ad10afb2a..00000000000 --- a/src/licensedcode/data/rules/freebsd-boot_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freebsd-boot -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://freebsd.active-venture.com/FreeBSD-srctree/newsrc/boot/i386/boot2/boot2.c.html diff --git a/src/licensedcode/data/rules/freebsd-doc_1.RULE b/src/licensedcode/data/rules/freebsd-doc_1.RULE index 58cb574ef18..6373ab58b5c 100644 --- a/src/licensedcode/data/rules/freebsd-doc_1.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: freebsd-doc +is_license_text: yes +--- + Redistribution and use in source (XML DocBook) and 'compiled' forms (XML, (X)HTML, PDF, PostScript, RTF and so forth) with or without modification, are permitted provided that the following conditions are met: @@ -20,4 +25,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 -DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_1.yml b/src/licensedcode/data/rules/freebsd-doc_1.yml deleted file mode 100644 index ac8bf54854c..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: freebsd-doc -is_license_text: yes diff --git a/src/licensedcode/data/rules/freebsd-doc_10.RULE b/src/licensedcode/data/rules/freebsd-doc_10.RULE index 3591c5777fe..ebe5dd8b984 100644 --- a/src/licensedcode/data/rules/freebsd-doc_10.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_10.RULE @@ -1 +1,10 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FreeBSD-DOC FreeBSD Documentation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_10.yml b/src/licensedcode/data/rules/freebsd-doc_10.yml deleted file mode 100644 index 4087fdb031c..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freebsd-doc_11.RULE b/src/licensedcode/data/rules/freebsd-doc_11.RULE index 9988db1d5e6..0a46d1be53b 100644 --- a/src/licensedcode/data/rules/freebsd-doc_11.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_11.RULE @@ -1 +1,10 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FreeBSD Documentation License FreeBSD-DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_11.yml b/src/licensedcode/data/rules/freebsd-doc_11.yml deleted file mode 100644 index 4087fdb031c..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freebsd-doc_12.RULE b/src/licensedcode/data/rules/freebsd-doc_12.RULE index 1a9313f3e8a..012d1eec580 100644 --- a/src/licensedcode/data/rules/freebsd-doc_12.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_12.RULE @@ -1 +1,10 @@ +--- +license_expression: freebsd-doc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FreeBSD-DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_12.yml b/src/licensedcode/data/rules/freebsd-doc_12.yml deleted file mode 100644 index fd945982817..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freebsd-doc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freebsd-doc_13.RULE b/src/licensedcode/data/rules/freebsd-doc_13.RULE index 00ff92653e1..bf6c3f0e93c 100644 --- a/src/licensedcode/data/rules/freebsd-doc_13.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_13.RULE @@ -1 +1,10 @@ +--- +license_expression: freebsd-doc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FreeBSD Documentation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_13.yml b/src/licensedcode/data/rules/freebsd-doc_13.yml deleted file mode 100644 index fd945982817..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freebsd-doc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freebsd-doc_14.RULE b/src/licensedcode/data/rules/freebsd-doc_14.RULE index 3710de9879c..d30269a1297 100644 --- a/src/licensedcode/data/rules/freebsd-doc_14.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_14.RULE @@ -1 +1,10 @@ +--- +license_expression: freebsd-doc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: FreeBSD-DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_14.yml b/src/licensedcode/data/rules/freebsd-doc_14.yml deleted file mode 100644 index fd945982817..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freebsd-doc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freebsd-doc_15.RULE b/src/licensedcode/data/rules/freebsd-doc_15.RULE index f69e474f8f2..809b7c64b23 100644 --- a/src/licensedcode/data/rules/freebsd-doc_15.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_15.RULE @@ -1 +1,9 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/FreeBSD-DOC +--- + https://licenses.nuget.org/FreeBSD-DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_15.yml b/src/licensedcode/data/rules/freebsd-doc_15.yml deleted file mode 100644 index 5b65f2fc518..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/FreeBSD-DOC diff --git a/src/licensedcode/data/rules/freebsd-doc_16.RULE b/src/licensedcode/data/rules/freebsd-doc_16.RULE index 965b618e4e6..4592f4056d4 100644 --- a/src/licensedcode/data/rules/freebsd-doc_16.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_16.RULE @@ -1 +1,7 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/FreeBSD-DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_16.yml b/src/licensedcode/data/rules/freebsd-doc_16.yml deleted file mode 100644 index 4b2373c8ee3..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freebsd-doc_17.RULE b/src/licensedcode/data/rules/freebsd-doc_17.RULE index 002d32298db..5f83334a73f 100644 --- a/src/licensedcode/data/rules/freebsd-doc_17.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_17.RULE @@ -1 +1,9 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FreeBSD-DOC +--- + LICENSE {{FreeBSD-DOC}} https://spdx.org/licenses/FreeBSD-DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_17.yml b/src/licensedcode/data/rules/freebsd-doc_17.yml deleted file mode 100644 index 24e7950c97d..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FreeBSD-DOC diff --git a/src/licensedcode/data/rules/freebsd-doc_18.RULE b/src/licensedcode/data/rules/freebsd-doc_18.RULE index 18b89e7078a..f3fde806698 100644 --- a/src/licensedcode/data/rules/freebsd-doc_18.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_18.RULE @@ -1 +1,9 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FreeBSD-DOC +--- + {{FreeBSD-DOC}} https://spdx.org/licenses/FreeBSD-DOC \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_18.yml b/src/licensedcode/data/rules/freebsd-doc_18.yml deleted file mode 100644 index 24e7950c97d..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FreeBSD-DOC diff --git a/src/licensedcode/data/rules/freebsd-doc_2.RULE b/src/licensedcode/data/rules/freebsd-doc_2.RULE index 7c8653c681a..ea80a91c68c 100644 --- a/src/licensedcode/data/rules/freebsd-doc_2.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: freebsd-doc +is_license_text: yes +--- + Redistribution and use in source (SGML DocBook) and 'compiled' forms (SGML, HTML , PDF, PostScript, RTF and so forth) with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/freebsd-doc_2.yml b/src/licensedcode/data/rules/freebsd-doc_2.yml deleted file mode 100644 index ac8bf54854c..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: freebsd-doc -is_license_text: yes diff --git a/src/licensedcode/data/rules/freebsd-doc_3.RULE b/src/licensedcode/data/rules/freebsd-doc_3.RULE index d1f656799bb..335b627abfb 100644 --- a/src/licensedcode/data/rules/freebsd-doc_3.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: freebsd-doc +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: diff --git a/src/licensedcode/data/rules/freebsd-doc_3.yml b/src/licensedcode/data/rules/freebsd-doc_3.yml deleted file mode 100644 index ac8bf54854c..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: freebsd-doc -is_license_text: yes diff --git a/src/licensedcode/data/rules/freebsd-doc_4.RULE b/src/licensedcode/data/rules/freebsd-doc_4.RULE index 36515dc0172..767b2b76267 100644 --- a/src/licensedcode/data/rules/freebsd-doc_4.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: freebsd-doc +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: @@ -17,4 +22,4 @@ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_4.yml b/src/licensedcode/data/rules/freebsd-doc_4.yml deleted file mode 100644 index ac8bf54854c..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: freebsd-doc -is_license_text: yes diff --git a/src/licensedcode/data/rules/freebsd-doc_5.RULE b/src/licensedcode/data/rules/freebsd-doc_5.RULE index 69be1c1f152..e7e2fe48d57 100644 --- a/src/licensedcode/data/rules/freebsd-doc_5.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: freebsd-doc +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/freebsd-doc_5.yml b/src/licensedcode/data/rules/freebsd-doc_5.yml deleted file mode 100644 index 84602126721..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freebsd-doc -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freebsd-doc_6.RULE b/src/licensedcode/data/rules/freebsd-doc_6.RULE index f25a207e80e..9de85db75bc 100644 --- a/src/licensedcode/data/rules/freebsd-doc_6.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_6.RULE @@ -1 +1,8 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +relevance: 100 +notes: in SPDX text +--- + The FreeBSD Documentation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_6.yml b/src/licensedcode/data/rules/freebsd-doc_6.yml deleted file mode 100644 index a6b1303857e..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -relevance: 100 -notes: in SPDX text diff --git a/src/licensedcode/data/rules/freebsd-doc_7.RULE b/src/licensedcode/data/rules/freebsd-doc_7.RULE index 506c73f68db..4ac57616437 100644 --- a/src/licensedcode/data/rules/freebsd-doc_7.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_7.RULE @@ -1,3 +1,17 @@ +--- +license_expression: freebsd-doc +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: SPDX text +ignorable_copyrights: + - Copyright (c) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc +ignorable_holders: + - the Institute of Electrical and Electronics Engineers, Inc +ignorable_urls: + - https://www.opengroup.org/membership/forums/platform/unix +--- + Redistribution and use in source (SGML DocBook) and 'compiled' forms (SGML, HTML, PDF, PostScript, RTF and so forth) with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/freebsd-doc_7.yml b/src/licensedcode/data/rules/freebsd-doc_7.yml deleted file mode 100644 index a2fa080c555..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_7.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: freebsd-doc -is_license_text: yes -relevance: 99 -minimum_coverage: 90 -notes: SPDX text -ignorable_copyrights: - - Copyright (c) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc -ignorable_holders: - - the Institute of Electrical and Electronics Engineers, Inc -ignorable_urls: - - https://www.opengroup.org/membership/forums/platform/unix diff --git a/src/licensedcode/data/rules/freebsd-doc_8.RULE b/src/licensedcode/data/rules/freebsd-doc_8.RULE index 83230b48ba2..c23d07e23c0 100644 --- a/src/licensedcode/data/rules/freebsd-doc_8.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_8.RULE @@ -1 +1,10 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FreeBSD Documentation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_8.yml b/src/licensedcode/data/rules/freebsd-doc_8.yml deleted file mode 100644 index 4087fdb031c..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freebsd-doc_9.RULE b/src/licensedcode/data/rules/freebsd-doc_9.RULE index c22b9eba649..b2726593058 100644 --- a/src/licensedcode/data/rules/freebsd-doc_9.RULE +++ b/src/licensedcode/data/rules/freebsd-doc_9.RULE @@ -1 +1,10 @@ +--- +license_expression: freebsd-doc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: FreeBSD Documentation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freebsd-doc_9.yml b/src/licensedcode/data/rules/freebsd-doc_9.yml deleted file mode 100644 index 4087fdb031c..00000000000 --- a/src/licensedcode/data/rules/freebsd-doc_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freebsd-doc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freeimage-1.0_1.RULE b/src/licensedcode/data/rules/freeimage-1.0_1.RULE index 48215b671be..23095cbde95 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_1.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: freeimage-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://home.wxs.nl/~flvdberg/freeimage-license.txt +--- + The contents of FreeImageDW package are subject to the FreeImage Public License Version 1.0 (the "License"); you may not use this package except in compliance with the License. You may obtain a copy of the License at http://home.wxs.nl/~flvdberg/freeimage-license.txt Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_1.yml b/src/licensedcode/data/rules/freeimage-1.0_1.yml deleted file mode 100644 index 38b880c0c95..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freeimage-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://home.wxs.nl/~flvdberg/freeimage-license.txt diff --git a/src/licensedcode/data/rules/freeimage-1.0_10.RULE b/src/licensedcode/data/rules/freeimage-1.0_10.RULE index 368d8b06b22..46d6d15a3a5 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_10.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/FreeImage +--- + https://licenses.nuget.org/FreeImage \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_10.yml b/src/licensedcode/data/rules/freeimage-1.0_10.yml deleted file mode 100644 index 84ac9604a53..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/FreeImage diff --git a/src/licensedcode/data/rules/freeimage-1.0_11.RULE b/src/licensedcode/data/rules/freeimage-1.0_11.RULE index 1093229e822..6ae9249d976 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_11.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/FreeImage \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_11.yml b/src/licensedcode/data/rules/freeimage-1.0_11.yml deleted file mode 100644 index eca89c9eb1f..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freeimage-1.0_12.RULE b/src/licensedcode/data/rules/freeimage-1.0_12.RULE index 3f1b10eee51..ca8a93264e6 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_12.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FreeImage +--- + {{FreeImage}} https://spdx.org/licenses/FreeImage \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_12.yml b/src/licensedcode/data/rules/freeimage-1.0_12.yml deleted file mode 100644 index b931fd07fd4..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FreeImage diff --git a/src/licensedcode/data/rules/freeimage-1.0_13.RULE b/src/licensedcode/data/rules/freeimage-1.0_13.RULE index 4812949f39a..17dd51b1241 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_13.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FreeImage +--- + LICENSE {{FreeImage}} https://spdx.org/licenses/FreeImage \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_13.yml b/src/licensedcode/data/rules/freeimage-1.0_13.yml deleted file mode 100644 index b931fd07fd4..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FreeImage diff --git a/src/licensedcode/data/rules/freeimage-1.0_2.RULE b/src/licensedcode/data/rules/freeimage-1.0_2.RULE index 4e386abc119..47d234913fd 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_2.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: freeimage-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: https://github.com/WinMerge/freeimage/blob/f8c084fbf8917223c4925fe23f5621229724c58d/Source/FreeImage/FreeImageC.c +--- + // This file is part of FreeImage 3 // // COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY diff --git a/src/licensedcode/data/rules/freeimage-1.0_2.yml b/src/licensedcode/data/rules/freeimage-1.0_2.yml deleted file mode 100644 index 96ef202bec0..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freeimage-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: https://github.com/WinMerge/freeimage/blob/f8c084fbf8917223c4925fe23f5621229724c58d/Source/FreeImage/FreeImageC.c diff --git a/src/licensedcode/data/rules/freeimage-1.0_3.RULE b/src/licensedcode/data/rules/freeimage-1.0_3.RULE index 42c333e2bde..786ef64eb95 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_3.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FreeImage Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_3.yml b/src/licensedcode/data/rules/freeimage-1.0_3.yml deleted file mode 100644 index ce222f4b10b..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freeimage-1.0_4.RULE b/src/licensedcode/data/rules/freeimage-1.0_4.RULE index 1fd23d354d8..33d7a5dd99e 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_4.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: FreeImage Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_4.yml b/src/licensedcode/data/rules/freeimage-1.0_4.yml deleted file mode 100644 index ce222f4b10b..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freeimage-1.0_5.RULE b/src/licensedcode/data/rules/freeimage-1.0_5.RULE index 8238ecda84f..6271aadafd3 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_5.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FreeImage FreeImage Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_5.yml b/src/licensedcode/data/rules/freeimage-1.0_5.yml deleted file mode 100644 index ce222f4b10b..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freeimage-1.0_6.RULE b/src/licensedcode/data/rules/freeimage-1.0_6.RULE index dbfb8c96ead..7548a39fb47 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_6.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FreeImage Public License v1.0 FreeImage \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_6.yml b/src/licensedcode/data/rules/freeimage-1.0_6.yml deleted file mode 100644 index ce222f4b10b..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freeimage-1.0_7.RULE b/src/licensedcode/data/rules/freeimage-1.0_7.RULE index 6795b0c5c38..4cf7f6cbce6 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_7.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: freeimage-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FreeImage \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_7.yml b/src/licensedcode/data/rules/freeimage-1.0_7.yml deleted file mode 100644 index 2eb9ade57e5..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freeimage-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freeimage-1.0_8.RULE b/src/licensedcode/data/rules/freeimage-1.0_8.RULE index c14054bd221..6c10c1013dc 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_8.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: freeimage-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FreeImage Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_8.yml b/src/licensedcode/data/rules/freeimage-1.0_8.yml deleted file mode 100644 index 2eb9ade57e5..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freeimage-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freeimage-1.0_9.RULE b/src/licensedcode/data/rules/freeimage-1.0_9.RULE index 7932ced1e27..fc679fa2791 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_9.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: freeimage-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: FreeImage \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_9.yml b/src/licensedcode/data/rules/freeimage-1.0_9.yml deleted file mode 100644 index 2eb9ade57e5..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freeimage-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freeimage-1.0_url_1.RULE b/src/licensedcode/data/rules/freeimage-1.0_url_1.RULE index fc351e705f5..b617e620111 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/freeimage +--- + https://spdx.org/licenses/freeimage \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_url_1.yml b/src/licensedcode/data/rules/freeimage-1.0_url_1.yml deleted file mode 100644 index ee27c5a1757..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/freeimage diff --git a/src/licensedcode/data/rules/freeimage-1.0_url_2.RULE b/src/licensedcode/data/rules/freeimage-1.0_url_2.RULE index bd8c7848eea..2edcaf62de1 100644 --- a/src/licensedcode/data/rules/freeimage-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/freeimage-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: freeimage-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/freeimage.html +--- + https://spdx.org/licenses/freeimage.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeimage-1.0_url_2.yml b/src/licensedcode/data/rules/freeimage-1.0_url_2.yml deleted file mode 100644 index 4f7ce14b1b2..00000000000 --- a/src/licensedcode/data/rules/freeimage-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freeimage-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/freeimage.html diff --git a/src/licensedcode/data/rules/freemarker.RULE b/src/licensedcode/data/rules/freemarker.RULE index ba829fc432a..3bac931193d 100644 --- a/src/licensedcode/data/rules/freemarker.RULE +++ b/src/licensedcode/data/rules/freemarker.RULE @@ -1 +1,9 @@ +--- +license_expression: freemarker +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://freemarker.org/LICENSE.txt +--- + http://freemarker.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/freemarker.yml b/src/licensedcode/data/rules/freemarker.yml deleted file mode 100644 index 7ea1b6d9507..00000000000 --- a/src/licensedcode/data/rules/freemarker.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freemarker -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://freemarker.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/freemarker_1.RULE b/src/licensedcode/data/rules/freemarker_1.RULE index bc656f3b5fe..f3d20c0b5db 100644 --- a/src/licensedcode/data/rules/freemarker_1.RULE +++ b/src/licensedcode/data/rules/freemarker_1.RULE @@ -1,2 +1,9 @@ -http://freemarker.org/docs/app_license.html +--- +license_expression: freemarker +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://freemarker.org/docs/app_license.html +--- +http://freemarker.org/docs/app_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/freemarker_1.yml b/src/licensedcode/data/rules/freemarker_1.yml deleted file mode 100644 index 90b4619b690..00000000000 --- a/src/licensedcode/data/rules/freemarker_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freemarker -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://freemarker.org/docs/app_license.html diff --git a/src/licensedcode/data/rules/freemarker_2.RULE b/src/licensedcode/data/rules/freemarker_2.RULE index fb5770ad22f..6e8933b47c5 100644 --- a/src/licensedcode/data/rules/freemarker_2.RULE +++ b/src/licensedcode/data/rules/freemarker_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: freemarker +is_license_text: yes +ignorable_authors: + - the Visigoth Software Society (http://www.visigoths.org/) +ignorable_urls: + - http://www.visigoths.org/ +ignorable_emails: + - visigoths@visigoths.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/freemarker_2.yml b/src/licensedcode/data/rules/freemarker_2.yml deleted file mode 100644 index 749681bc9bd..00000000000 --- a/src/licensedcode/data/rules/freemarker_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: freemarker -is_license_text: yes -ignorable_authors: - - the Visigoth Software Society (http://www.visigoths.org/) -ignorable_urls: - - http://www.visigoths.org/ -ignorable_emails: - - visigoths@visigoths.org diff --git a/src/licensedcode/data/rules/freemarker_3.RULE b/src/licensedcode/data/rules/freemarker_3.RULE index 44e28a7c7ba..2cb384893e0 100644 --- a/src/licensedcode/data/rules/freemarker_3.RULE +++ b/src/licensedcode/data/rules/freemarker_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: freemarker +is_license_text: yes +minimum_coverage: 80 +ignorable_authors: + - the Visigoth Software Society (http://www.visigoths.org/) +ignorable_urls: + - http://www.visigoths.org/ +ignorable_emails: + - visigoths@visigoths.org +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -43,4 +55,4 @@ * This software consists of voluntary contributions made by many * individuals on behalf of the Visigoth Software Society. For more * information on the Visigoth Software Society, please see - * http://www.visigoths.org/ + * http://www.visigoths.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/freemarker_3.yml b/src/licensedcode/data/rules/freemarker_3.yml deleted file mode 100644 index cdc02e1d6c3..00000000000 --- a/src/licensedcode/data/rules/freemarker_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: freemarker -is_license_text: yes -minimum_coverage: 80 -ignorable_authors: - - the Visigoth Software Society (http://www.visigoths.org/) -ignorable_urls: - - http://www.visigoths.org/ -ignorable_emails: - - visigoths@visigoths.org diff --git a/src/licensedcode/data/rules/freemarker_4.RULE b/src/licensedcode/data/rules/freemarker_4.RULE index 002a399fcd1..40eacc7b7b2 100644 --- a/src/licensedcode/data/rules/freemarker_4.RULE +++ b/src/licensedcode/data/rules/freemarker_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: freemarker +is_license_reference: yes +relevance: 100 +--- + FreeMarker 1.x was released under the LGPL license. Later, by community consensus, we have switched over to a BSD-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/freemarker_4.yml b/src/licensedcode/data/rules/freemarker_4.yml deleted file mode 100644 index c08a27e1616..00000000000 --- a/src/licensedcode/data/rules/freemarker_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freemarker -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freemarker_5.RULE b/src/licensedcode/data/rules/freemarker_5.RULE index 2a1ed067e25..59b32336206 100644 --- a/src/licensedcode/data/rules/freemarker_5.RULE +++ b/src/licensedcode/data/rules/freemarker_5.RULE @@ -1 +1,7 @@ +--- +license_expression: freemarker +is_license_notice: yes +relevance: 100 +--- + Licensed under the BSD License for FreeMarker . \ No newline at end of file diff --git a/src/licensedcode/data/rules/freemarker_5.yml b/src/licensedcode/data/rules/freemarker_5.yml deleted file mode 100644 index 01cca828a63..00000000000 --- a/src/licensedcode/data/rules/freemarker_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freemarker -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freemarker_6.RULE b/src/licensedcode/data/rules/freemarker_6.RULE index b3622a65426..eecccbc9faf 100644 --- a/src/licensedcode/data/rules/freemarker_6.RULE +++ b/src/licensedcode/data/rules/freemarker_6.RULE @@ -1 +1,8 @@ +--- +license_expression: freemarker +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + {{BSD License for FreeMarker}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/freemarker_6.yml b/src/licensedcode/data/rules/freemarker_6.yml deleted file mode 100644 index 81fd75ea16e..00000000000 --- a/src/licensedcode/data/rules/freemarker_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: freemarker -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_1.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_1.RULE index bed6ba3b0f5..f4b42bc8cf7 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH freertos-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + The FreeRTOS source code is licensed by a modified GNU General Public License - the modification taking the form of an exception. The exception permits the source code of applications that use FreeRTOS @@ -75,4 +82,4 @@ FreeRTOS may not be used for any competitive or comparative purpose, including the publication of any form of run time or compile time metric, without the express permission of Real Time Engineers Ltd. (this is the - norm within the industry and is intended to ensure information accuracy). + norm within the industry and is intended to ensure information accuracy). \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_1.yml b/src/licensedcode/data/rules/freertos-exception-2.0_1.yml deleted file mode 100644 index 5cc8f75bce8..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH freertos-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_10.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_10.RULE index ffd105e91b1..c526188ee10 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: freertos-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: freertos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_10.yml b/src/licensedcode/data/rules/freertos-exception-2.0_10.yml deleted file mode 100644 index ca711c0bc5e..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_11.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_11.RULE index a3b4778fe14..60aee0c9ea1 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: freertos-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: freertos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_11.yml b/src/licensedcode/data/rules/freertos-exception-2.0_11.yml deleted file mode 100644 index ca711c0bc5e..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_12.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_12.RULE index a8cd04d0d01..1f8540d64d4 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/freertos-exception-2.0 +--- + https://licenses.nuget.org/freertos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_12.yml b/src/licensedcode/data/rules/freertos-exception-2.0_12.yml deleted file mode 100644 index 0dc4b2e16c8..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/freertos-exception-2.0 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_13.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_13.RULE index 29d1167291d..ebd28d7a88d 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_13.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/freertos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_13.yml b/src/licensedcode/data/rules/freertos-exception-2.0_13.yml deleted file mode 100644 index cf39428a3c7..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_14.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_14.RULE index 293f9bbf9ff..c52c43fe9a0 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_14.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/freertos-exception-2.0 +--- + LICENSE {{freertos-exception-2.0}} https://spdx.org/licenses/freertos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_14.yml b/src/licensedcode/data/rules/freertos-exception-2.0_14.yml deleted file mode 100644 index a0bd68ea94a..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/freertos-exception-2.0 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_15.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_15.RULE index d83b490643e..a73a8756461 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_15.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/freertos-exception-2.0 +--- + {{freertos-exception-2.0}} https://spdx.org/licenses/freertos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_15.yml b/src/licensedcode/data/rules/freertos-exception-2.0_15.yml deleted file mode 100644 index a0bd68ea94a..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/freertos-exception-2.0 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_2.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_2.RULE index 75048c47343..8efc6670033 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_2.RULE @@ -1 +1,7 @@ -The FreeRTOS GPL Exception text \ No newline at end of file +--- +license_expression: gpl-2.0 WITH freertos-exception-2.0 +is_license_reference: yes +relevance: 90 +--- + +The FreeRTOS GPL Exception text \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_2.yml b/src/licensedcode/data/rules/freertos-exception-2.0_2.yml deleted file mode 100644 index cc3630406be..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH freertos-exception-2.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_3.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_3.RULE index 3068d2a4d56..dcf19c51ca7 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_3.RULE @@ -1 +1,7 @@ -FreeRTOS GPL Exception \ No newline at end of file +--- +license_expression: gpl-2.0 WITH freertos-exception-2.0 +is_license_reference: yes +relevance: 90 +--- + +FreeRTOS GPL Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_3.yml b/src/licensedcode/data/rules/freertos-exception-2.0_3.yml deleted file mode 100644 index cc3630406be..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH freertos-exception-2.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_4.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_4.RULE index 522b58fa742..637bfa7c7f2 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH freertos-exception-2.0 +is_license_notice: yes +--- + The FreeRTOS GPL exception text follows: Any FreeRTOS *source code*, whether modified or in it's original release form, @@ -24,5 +29,4 @@ Clause 2: FreeRTOS may not be used for any competitive or comparative purpose, including the publication of any form of run time or compile time metric, without the express permission of Real Time Engineers Ltd. (this is the norm within the -industry and is intended to ensure information accuracy). - +industry and is intended to ensure information accuracy). \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_4.yml b/src/licensedcode/data/rules/freertos-exception-2.0_4.yml deleted file mode 100644 index 918961ed735..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH freertos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_5.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_5.RULE index bcd5f8f4318..e9520309ffc 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH freertos-exception-2.0 +is_license_notice: yes +--- + Any FreeRTOS source code, whether modified or in its original release form, or whether in whole or in part, can only be distributed by you under the terms of the GNU General Public License plus this exception. An independent module is a module which is not derived from or based on FreeRTOS. EXCEPTION TEXT: @@ -16,5 +21,4 @@ EXCEPTION TEXT: Clause 2 - FreeRTOS may not be used for any competitive or comparative purpose, including the publication of any form of run time or compile time metric, without the express permission of Real Time Engineers Ltd. (this is the norm within the industry and is intended to ensure information accuracy). - + FreeRTOS may not be used for any competitive or comparative purpose, including the publication of any form of run time or compile time metric, without the express permission of Real Time Engineers Ltd. (this is the norm within the industry and is intended to ensure information accuracy). \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_5.yml b/src/licensedcode/data/rules/freertos-exception-2.0_5.yml deleted file mode 100644 index 918961ed735..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH freertos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_6.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_6.RULE index d6ccf0f2fdd..d36695dc2b9 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH freertos-exception-2.0 +is_license_reference: yes +--- + NOTE: The modification to the GPL is included to allow you to distribute a combined work that includes FreeRTOS without being obliged to provide the source code for proprietary components. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_6.yml b/src/licensedcode/data/rules/freertos-exception-2.0_6.yml deleted file mode 100644 index 61f91da51a6..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH freertos-exception-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_7.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_7.RULE index 187294584d3..82d5da161f0 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH freertos-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + the FreeRTOS open source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_7.yml b/src/licensedcode/data/rules/freertos-exception-2.0_7.yml deleted file mode 100644 index 60ba113bf95..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH freertos-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_8.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_8.RULE index 7422d3467cf..06b0f93752a 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: FreeRTOS Exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_8.yml b/src/licensedcode/data/rules/freertos-exception-2.0_8.yml deleted file mode 100644 index 94f1068cb88..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_9.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_9.RULE index 4ed09ec6ef4..1c55856d819 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + freertos-exception-2.0 FreeRTOS Exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_9.yml b/src/licensedcode/data/rules/freertos-exception-2.0_9.yml deleted file mode 100644 index 94f1068cb88..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_url_1.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_url_1.RULE index c1ad2411bcb..900c88ce70e 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/freertos-exception-2.0 +--- + https://spdx.org/licenses/freertos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_url_1.yml b/src/licensedcode/data/rules/freertos-exception-2.0_url_1.yml deleted file mode 100644 index a8e6374a969..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/freertos-exception-2.0 diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_url_2.RULE b/src/licensedcode/data/rules/freertos-exception-2.0_url_2.RULE index 201d88bd355..ec55a35c26a 100644 --- a/src/licensedcode/data/rules/freertos-exception-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/freertos-exception-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/freertos-exception-2.0.html +--- + https://spdx.org/licenses/freertos-exception-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/freertos-exception-2.0_url_2.yml b/src/licensedcode/data/rules/freertos-exception-2.0_url_2.yml deleted file mode 100644 index fba348b8f1f..00000000000 --- a/src/licensedcode/data/rules/freertos-exception-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/freertos-exception-2.0.html diff --git a/src/licensedcode/data/rules/freetts.RULE b/src/licensedcode/data/rules/freetts.RULE index d9dbb31e056..1835c993d8a 100644 --- a/src/licensedcode/data/rules/freetts.RULE +++ b/src/licensedcode/data/rules/freetts.RULE @@ -1 +1,9 @@ +--- +license_expression: freetts +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://freetts.sourceforge.net/docs/index.php +--- + http://freetts.sourceforge.net/docs/index.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetts.yml b/src/licensedcode/data/rules/freetts.yml deleted file mode 100644 index 3fe914e4455..00000000000 --- a/src/licensedcode/data/rules/freetts.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetts -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://freetts.sourceforge.net/docs/index.php diff --git a/src/licensedcode/data/rules/freetts_1.RULE b/src/licensedcode/data/rules/freetts_1.RULE index 2daf6557e04..13eb065f270 100644 --- a/src/licensedcode/data/rules/freetts_1.RULE +++ b/src/licensedcode/data/rules/freetts_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: freetts +is_license_notice: yes +notes: Variant of Inno Setup License +--- + Permission is hereby granted, free of charge, to use and distribute this software and its documentation without restriction, including without limitation the rights to use, copy, modify, merge, publish, @@ -20,4 +26,4 @@ Permission is hereby granted, free of charge, to use and distribute 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. + THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetts_1.yml b/src/licensedcode/data/rules/freetts_1.yml deleted file mode 100644 index 58677aefd8f..00000000000 --- a/src/licensedcode/data/rules/freetts_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetts -is_license_notice: yes -notes: Variant of Inno Setup License diff --git a/src/licensedcode/data/rules/freetts_2.RULE b/src/licensedcode/data/rules/freetts_2.RULE index 0c2b2011494..1faca70cabc 100644 --- a/src/licensedcode/data/rules/freetts_2.RULE +++ b/src/licensedcode/data/rules/freetts_2.RULE @@ -1 +1,9 @@ +--- +license_expression: freetts +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://freetts.sourceforge.net/license.terms +--- + http://freetts.sourceforge.net/license.terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetts_2.yml b/src/licensedcode/data/rules/freetts_2.yml deleted file mode 100644 index aa5fe3f5649..00000000000 --- a/src/licensedcode/data/rules/freetts_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetts -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://freetts.sourceforge.net/license.terms diff --git a/src/licensedcode/data/rules/freetype_1.RULE b/src/licensedcode/data/rules/freetype_1.RULE index 794a3712c8b..e67938ea7d2 100644 --- a/src/licensedcode/data/rules/freetype_1.RULE +++ b/src/licensedcode/data/rules/freetype_1.RULE @@ -1 +1,9 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freetype.org/FTL.TXT +--- + http://www.freetype.org/FTL.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_1.yml b/src/licensedcode/data/rules/freetype_1.yml deleted file mode 100644 index e6f6852d9e4..00000000000 --- a/src/licensedcode/data/rules/freetype_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freetype.org/FTL.TXT diff --git a/src/licensedcode/data/rules/freetype_10.RULE b/src/licensedcode/data/rules/freetype_10.RULE index 0f705a200da..1263fa97da7 100644 --- a/src/licensedcode/data/rules/freetype_10.RULE +++ b/src/licensedcode/data/rules/freetype_10.RULE @@ -1 +1,7 @@ +--- +license_expression: freetype +is_license_tag: yes +relevance: 100 +--- + License: FTL \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_10.yml b/src/licensedcode/data/rules/freetype_10.yml deleted file mode 100644 index b3ccd3ef21a..00000000000 --- a/src/licensedcode/data/rules/freetype_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_11.RULE b/src/licensedcode/data/rules/freetype_11.RULE index cf12cc0ab36..5a4f8b5d6bd 100644 --- a/src/licensedcode/data/rules/freetype_11.RULE +++ b/src/licensedcode/data/rules/freetype_11.RULE @@ -1,3 +1,22 @@ +--- +license_expression: freetype +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg + - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg +ignorable_holders: + - David Turner, Robert Wilhelm, and Werner Lemberg +ignorable_urls: + - http://www.freetype.org/ +ignorable_emails: + - david.turner@freetype.org + - devel@freetype.org + - freetype@freetype.org + - robert.wilhelm@freetype.org + - werner.lemberg@freetype.org +--- + The FreeType Project LICENSE . 2000-Feb-08 diff --git a/src/licensedcode/data/rules/freetype_11.yml b/src/licensedcode/data/rules/freetype_11.yml deleted file mode 100644 index e76fc3f071c..00000000000 --- a/src/licensedcode/data/rules/freetype_11.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: freetype -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg - - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg -ignorable_holders: - - David Turner, Robert Wilhelm, and Werner Lemberg -ignorable_urls: - - http://www.freetype.org/ -ignorable_emails: - - david.turner@freetype.org - - devel@freetype.org - - freetype@freetype.org - - robert.wilhelm@freetype.org - - werner.lemberg@freetype.org diff --git a/src/licensedcode/data/rules/freetype_12.RULE b/src/licensedcode/data/rules/freetype_12.RULE index bb642f36ecc..4be92915744 100644 --- a/src/licensedcode/data/rules/freetype_12.RULE +++ b/src/licensedcode/data/rules/freetype_12.RULE @@ -1 +1,7 @@ +--- +license_expression: freetype +is_license_tag: yes +relevance: 100 +--- + Licence: FreeType Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_12.yml b/src/licensedcode/data/rules/freetype_12.yml deleted file mode 100644 index b3ccd3ef21a..00000000000 --- a/src/licensedcode/data/rules/freetype_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_13.RULE b/src/licensedcode/data/rules/freetype_13.RULE index 50a89b2f61c..e8fcf49184d 100644 --- a/src/licensedcode/data/rules/freetype_13.RULE +++ b/src/licensedcode/data/rules/freetype_13.RULE @@ -1,3 +1,21 @@ +--- +license_expression: freetype +is_license_text: yes +ignorable_copyrights: + - Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg + - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg + - copyright (c) The FreeType Project (www.freetype.org) +ignorable_holders: + - David Turner, Robert Wilhelm, and Werner Lemberg + - The FreeType Project +ignorable_urls: + - http://www.freetype.org/ + - https://www.freetype.org/ +ignorable_emails: + - freetype-devel@nongnu.org + - freetype@nongnu.org +--- + The FreeType Project LICENSE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ . diff --git a/src/licensedcode/data/rules/freetype_13.yml b/src/licensedcode/data/rules/freetype_13.yml deleted file mode 100644 index 755455b118a..00000000000 --- a/src/licensedcode/data/rules/freetype_13.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: freetype -is_license_text: yes -ignorable_copyrights: - - Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg - - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg - - copyright (c) The FreeType Project (www.freetype.org) -ignorable_holders: - - David Turner, Robert Wilhelm, and Werner Lemberg - - The FreeType Project -ignorable_urls: - - http://www.freetype.org/ - - https://www.freetype.org/ -ignorable_emails: - - freetype-devel@nongnu.org - - freetype@nongnu.org diff --git a/src/licensedcode/data/rules/freetype_14.RULE b/src/licensedcode/data/rules/freetype_14.RULE index eb8c0fa50bf..ac3b8e3898a 100644 --- a/src/licensedcode/data/rules/freetype_14.RULE +++ b/src/licensedcode/data/rules/freetype_14.RULE @@ -1 +1,10 @@ +--- +license_expression: freetype +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Freetype Project License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_14.yml b/src/licensedcode/data/rules/freetype_14.yml deleted file mode 100644 index baf636182c5..00000000000 --- a/src/licensedcode/data/rules/freetype_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freetype -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freetype_15.RULE b/src/licensedcode/data/rules/freetype_15.RULE index 62420694a59..290ab7dd70d 100644 --- a/src/licensedcode/data/rules/freetype_15.RULE +++ b/src/licensedcode/data/rules/freetype_15.RULE @@ -1 +1,10 @@ +--- +license_expression: freetype +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FTL Freetype Project License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_15.yml b/src/licensedcode/data/rules/freetype_15.yml deleted file mode 100644 index baf636182c5..00000000000 --- a/src/licensedcode/data/rules/freetype_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freetype -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freetype_16.RULE b/src/licensedcode/data/rules/freetype_16.RULE index 4ae83278a1f..53a68641db7 100644 --- a/src/licensedcode/data/rules/freetype_16.RULE +++ b/src/licensedcode/data/rules/freetype_16.RULE @@ -1 +1,10 @@ +--- +license_expression: freetype +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Freetype Project License FTL \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_16.yml b/src/licensedcode/data/rules/freetype_16.yml deleted file mode 100644 index baf636182c5..00000000000 --- a/src/licensedcode/data/rules/freetype_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freetype -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freetype_17.RULE b/src/licensedcode/data/rules/freetype_17.RULE index 5edcd168ab0..836c578f0a4 100644 --- a/src/licensedcode/data/rules/freetype_17.RULE +++ b/src/licensedcode/data/rules/freetype_17.RULE @@ -1 +1,10 @@ +--- +license_expression: freetype +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Freetype Project License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_17.yml b/src/licensedcode/data/rules/freetype_17.yml deleted file mode 100644 index e4990a9d99d..00000000000 --- a/src/licensedcode/data/rules/freetype_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freetype -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freetype_18.RULE b/src/licensedcode/data/rules/freetype_18.RULE index 4e37a5fdea0..bd7bec0a6c5 100644 --- a/src/licensedcode/data/rules/freetype_18.RULE +++ b/src/licensedcode/data/rules/freetype_18.RULE @@ -1 +1,10 @@ +--- +license_expression: freetype +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: FTL \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_18.yml b/src/licensedcode/data/rules/freetype_18.yml deleted file mode 100644 index e4990a9d99d..00000000000 --- a/src/licensedcode/data/rules/freetype_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freetype -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/freetype_19.RULE b/src/licensedcode/data/rules/freetype_19.RULE index 944fec5a4c6..1c2028b7328 100644 --- a/src/licensedcode/data/rules/freetype_19.RULE +++ b/src/licensedcode/data/rules/freetype_19.RULE @@ -1 +1,9 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/FTL +--- + https://licenses.nuget.org/FTL \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_19.yml b/src/licensedcode/data/rules/freetype_19.yml deleted file mode 100644 index 62d774c859b..00000000000 --- a/src/licensedcode/data/rules/freetype_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/FTL diff --git a/src/licensedcode/data/rules/freetype_2.RULE b/src/licensedcode/data/rules/freetype_2.RULE index 08325c9d800..dbbcef20a6a 100644 --- a/src/licensedcode/data/rules/freetype_2.RULE +++ b/src/licensedcode/data/rules/freetype_2.RULE @@ -1 +1,9 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freetype.org/license.html +--- + http://www.freetype.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_2.yml b/src/licensedcode/data/rules/freetype_2.yml deleted file mode 100644 index d272f56a86c..00000000000 --- a/src/licensedcode/data/rules/freetype_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freetype.org/license.html diff --git a/src/licensedcode/data/rules/freetype_20.RULE b/src/licensedcode/data/rules/freetype_20.RULE index e9cad4c2d2c..a19198dd13e 100644 --- a/src/licensedcode/data/rules/freetype_20.RULE +++ b/src/licensedcode/data/rules/freetype_20.RULE @@ -1 +1,7 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/FTL \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_20.yml b/src/licensedcode/data/rules/freetype_20.yml deleted file mode 100644 index 4f7b329a219..00000000000 --- a/src/licensedcode/data/rules/freetype_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_21.RULE b/src/licensedcode/data/rules/freetype_21.RULE index 6519eae6242..a1d5c48cd48 100644 --- a/src/licensedcode/data/rules/freetype_21.RULE +++ b/src/licensedcode/data/rules/freetype_21.RULE @@ -1 +1,9 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FTL +--- + {{FTL}} https://spdx.org/licenses/FTL \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_21.yml b/src/licensedcode/data/rules/freetype_21.yml deleted file mode 100644 index d896548f621..00000000000 --- a/src/licensedcode/data/rules/freetype_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FTL diff --git a/src/licensedcode/data/rules/freetype_22.RULE b/src/licensedcode/data/rules/freetype_22.RULE index b7ea1f3fcdf..a9c2b4febe5 100644 --- a/src/licensedcode/data/rules/freetype_22.RULE +++ b/src/licensedcode/data/rules/freetype_22.RULE @@ -1 +1,9 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FTL +--- + LICENSE {{FTL}} https://spdx.org/licenses/FTL \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_22.yml b/src/licensedcode/data/rules/freetype_22.yml deleted file mode 100644 index d896548f621..00000000000 --- a/src/licensedcode/data/rules/freetype_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FTL diff --git a/src/licensedcode/data/rules/freetype_3.RULE b/src/licensedcode/data/rules/freetype_3.RULE index 7ffa6148baa..29726297d31 100644 --- a/src/licensedcode/data/rules/freetype_3.RULE +++ b/src/licensedcode/data/rules/freetype_3.RULE @@ -1,3 +1,17 @@ +--- +license_expression: freetype +is_license_text: yes +ignorable_copyrights: + - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg +ignorable_holders: + - David Turner, Robert Wilhelm, and Werner Lemberg +ignorable_urls: + - http://www.freetype.org/ +ignorable_emails: + - freetype-devel@nongnu.org + - freetype@nongnu.org +--- + Legal Terms =========== @@ -105,4 +119,4 @@ Legal Terms Our home page can be found at - http://www.freetype.org + http://www.freetype.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_3.yml b/src/licensedcode/data/rules/freetype_3.yml deleted file mode 100644 index f459376ab90..00000000000 --- a/src/licensedcode/data/rules/freetype_3.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: freetype -is_license_text: yes -ignorable_copyrights: - - copyright (c) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg -ignorable_holders: - - David Turner, Robert Wilhelm, and Werner Lemberg -ignorable_urls: - - http://www.freetype.org/ -ignorable_emails: - - freetype-devel@nongnu.org - - freetype@nongnu.org diff --git a/src/licensedcode/data/rules/freetype_4.RULE b/src/licensedcode/data/rules/freetype_4.RULE index c8f3860bd81..1e460b7c59d 100644 --- a/src/licensedcode/data/rules/freetype_4.RULE +++ b/src/licensedcode/data/rules/freetype_4.RULE @@ -1,6 +1,13 @@ +--- +license_expression: freetype +is_license_notice: yes +referenced_filenames: + - LICENSE.TXT +--- + /* This file is part of the FreeType project, and may only be used, */ /* modified, and distributed under the terms of the FreeType project */ /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ /* this file you indicate that you have read the license and */ /* understand and accept it fully. */ -/* \ No newline at end of file +/* \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_4.yml b/src/licensedcode/data/rules/freetype_4.yml deleted file mode 100644 index 6d94a1733d8..00000000000 --- a/src/licensedcode/data/rules/freetype_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: freetype -is_license_notice: yes -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/freetype_5.RULE b/src/licensedcode/data/rules/freetype_5.RULE index 755aa77b341..431de2682b8 100644 --- a/src/licensedcode/data/rules/freetype_5.RULE +++ b/src/licensedcode/data/rules/freetype_5.RULE @@ -1,5 +1,12 @@ +--- +license_expression: freetype +is_license_notice: yes +referenced_filenames: + - LICENSE.TXT +--- + /* This file may only be used, */ /* modified, and distributed under the terms of the FreeType project */ /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ /* this file you indicate that you have read the license and */ -/* understand and accept it fully. */ +/* understand and accept it fully. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_5.yml b/src/licensedcode/data/rules/freetype_5.yml deleted file mode 100644 index 6d94a1733d8..00000000000 --- a/src/licensedcode/data/rules/freetype_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: freetype -is_license_notice: yes -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/freetype_6.RULE b/src/licensedcode/data/rules/freetype_6.RULE index 8d13f8aa614..edd5848ecce 100644 --- a/src/licensedcode/data/rules/freetype_6.RULE +++ b/src/licensedcode/data/rules/freetype_6.RULE @@ -1 +1,7 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 100 +--- + Freetype Project License \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_6.yml b/src/licensedcode/data/rules/freetype_6.yml deleted file mode 100644 index 4f7b329a219..00000000000 --- a/src/licensedcode/data/rules/freetype_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_7.RULE b/src/licensedcode/data/rules/freetype_7.RULE index 10951274a72..ad71611bbcc 100644 --- a/src/licensedcode/data/rules/freetype_7.RULE +++ b/src/licensedcode/data/rules/freetype_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: freetype +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://freetype.sourceforge.net/FTL.TXT +--- + The FreeType Project License may be found at http://freetype.sourceforge.net/FTL.TXT THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_7.yml b/src/licensedcode/data/rules/freetype_7.yml deleted file mode 100644 index 28b61c41cbf..00000000000 --- a/src/licensedcode/data/rules/freetype_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://freetype.sourceforge.net/FTL.TXT diff --git a/src/licensedcode/data/rules/freetype_8.RULE b/src/licensedcode/data/rules/freetype_8.RULE index 314775dcfae..3f844c20351 100644 --- a/src/licensedcode/data/rules/freetype_8.RULE +++ b/src/licensedcode/data/rules/freetype_8.RULE @@ -1 +1,9 @@ +--- +license_expression: freetype +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://freetype.sourceforge.net/FTL.TXT +--- + The FreeType Project License may be found at http://freetype.sourceforge.net/FTL.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_8.yml b/src/licensedcode/data/rules/freetype_8.yml deleted file mode 100644 index 28b61c41cbf..00000000000 --- a/src/licensedcode/data/rules/freetype_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://freetype.sourceforge.net/FTL.TXT diff --git a/src/licensedcode/data/rules/freetype_9.RULE b/src/licensedcode/data/rules/freetype_9.RULE index ea5db476f62..8ca1aa94c3d 100644 --- a/src/licensedcode/data/rules/freetype_9.RULE +++ b/src/licensedcode/data/rules/freetype_9.RULE @@ -1,2 +1,8 @@ +--- +license_expression: freetype +is_license_notice: yes +relevance: 100 +--- -THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT. + +THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_9.yml b/src/licensedcode/data/rules/freetype_9.yml deleted file mode 100644 index 52630a56a1a..00000000000 --- a/src/licensedcode/data/rules/freetype_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_and_freetype-patent_1.RULE b/src/licensedcode/data/rules/freetype_and_freetype-patent_1.RULE index 58be4b08642..9e9aa98b252 100644 --- a/src/licensedcode/data/rules/freetype_and_freetype-patent_1.RULE +++ b/src/licensedcode/data/rules/freetype_and_freetype-patent_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: freetype AND freetype-patent +is_license_notice: yes +referenced_filenames: + - LICENSE.TXT +--- + /* This software, and all works of authorship, whether in source or */ /* object code form as indicated by the copyright notice(s) included */ /* herein (collectively, the "Work") is made available, and may only be */ diff --git a/src/licensedcode/data/rules/freetype_and_freetype-patent_1.yml b/src/licensedcode/data/rules/freetype_and_freetype-patent_1.yml deleted file mode 100644 index c0ac025f088..00000000000 --- a/src/licensedcode/data/rules/freetype_and_freetype-patent_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: freetype AND freetype-patent -is_license_notice: yes -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/freetype_or_gpl-2.0_1.RULE index e22d29d1f3a..da9103ada21 100644 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/freetype_or_gpl-2.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: freetype OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + "License": "{{Freetype Project License or GNU General Public License v2.0 only}}", -"LicenseId": "{{FTL or GPL-2.0}}", +"LicenseId": "{{FTL or GPL-2.0}}", \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/freetype_or_gpl-2.0_1.yml deleted file mode 100644 index 233e4b75d8b..00000000000 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/freetype_or_gpl-2.0_2.RULE index af28c5ebe88..a104a8aa6f4 100644 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/freetype_or_gpl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: freetype OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + "LicenseId": "FTL or GPL-2.0", \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/freetype_or_gpl-2.0_2.yml deleted file mode 100644 index 233e4b75d8b..00000000000 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/freetype_or_gpl-2.0_3.RULE index 4159df81e3c..8f7c3b4fb75 100644 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/freetype_or_gpl-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: freetype OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ### FreeType Notice ``` @@ -11,4 +17,4 @@ The GNU General Public License (GPL), version 2. Use it for all projects which use the GPLv2 also, or which need a license - compatible to the GPLv2. + compatible to the GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/freetype_or_gpl-2.0_3.yml deleted file mode 100644 index 233e4b75d8b..00000000000 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/freetype_or_gpl-2.0_4.RULE index 5c8efe42f2f..210917d4265 100644 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/freetype_or_gpl-2.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: freetype OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ``` FreeType comes with two licenses from which you can choose the one @@ -10,4 +16,4 @@ The GNU General Public License (GPL), version 2. Use it for all projects which use the GPLv2 also, or which need a license - compatible to the GPLv2. + compatible to the GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/freetype_or_gpl-2.0_4.yml deleted file mode 100644 index 233e4b75d8b..00000000000 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/freetype_or_gpl-2.0_5.RULE index a32074b7567..c80c9c337a3 100644 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/freetype_or_gpl-2.0_5.RULE @@ -1 +1,7 @@ -"License": {{"Freetype Project License or GNU General Public License v2.0 only}} +--- +license_expression: freetype OR gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +"License": {{"Freetype Project License or GNU General Public License v2.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/freetype_or_gpl-2.0_5.yml deleted file mode 100644 index b46c5b4b1fe..00000000000 --- a/src/licensedcode/data/rules/freetype_or_gpl-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype OR gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freetype_url_1.RULE b/src/licensedcode/data/rules/freetype_url_1.RULE index 4218f3abdb5..34fc8307629 100644 --- a/src/licensedcode/data/rules/freetype_url_1.RULE +++ b/src/licensedcode/data/rules/freetype_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ftl +--- + https://spdx.org/licenses/ftl \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_url_1.yml b/src/licensedcode/data/rules/freetype_url_1.yml deleted file mode 100644 index b0945ea433c..00000000000 --- a/src/licensedcode/data/rules/freetype_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ftl diff --git a/src/licensedcode/data/rules/freetype_url_2.RULE b/src/licensedcode/data/rules/freetype_url_2.RULE index f6ba5f5195b..cb33118d932 100644 --- a/src/licensedcode/data/rules/freetype_url_2.RULE +++ b/src/licensedcode/data/rules/freetype_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: freetype +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ftl.html +--- + https://spdx.org/licenses/ftl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/freetype_url_2.yml b/src/licensedcode/data/rules/freetype_url_2.yml deleted file mode 100644 index ba957e5ac57..00000000000 --- a/src/licensedcode/data/rules/freetype_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: freetype -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ftl.html diff --git a/src/licensedcode/data/rules/freetype_with_autoconf-simple-exception-2.0_1.RULE b/src/licensedcode/data/rules/freetype_with_autoconf-simple-exception-2.0_1.RULE index 401a5c74aa3..b7bb841481e 100644 --- a/src/licensedcode/data/rules/freetype_with_autoconf-simple-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/freetype_with_autoconf-simple-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: freetype WITH autoconf-simple-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is part of the FreeType project, and may only be used, modified, and distributed under the terms of the FreeType project license, LICENSE.TXT. By continuing to use, modify, or distribute this file you diff --git a/src/licensedcode/data/rules/freetype_with_autoconf-simple-exception-2.0_1.yml b/src/licensedcode/data/rules/freetype_with_autoconf-simple-exception-2.0_1.yml deleted file mode 100644 index 3d5dc962b8b..00000000000 --- a/src/licensedcode/data/rules/freetype_with_autoconf-simple-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: freetype WITH autoconf-simple-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/freeware_bare_word_only.RULE b/src/licensedcode/data/rules/freeware_bare_word_only.RULE index 2c8acd90e5e..773c9d04d4e 100644 --- a/src/licensedcode/data/rules/freeware_bare_word_only.RULE +++ b/src/licensedcode/data/rules/freeware_bare_word_only.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + freeware \ No newline at end of file diff --git a/src/licensedcode/data/rules/freeware_bare_word_only.yml b/src/licensedcode/data/rules/freeware_bare_word_only.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/freeware_bare_word_only.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/frontier-1.0.RULE b/src/licensedcode/data/rules/frontier-1.0.RULE index 7b7453f75a3..8f0a404c69a 100644 --- a/src/licensedcode/data/rules/frontier-1.0.RULE +++ b/src/licensedcode/data/rules/frontier-1.0.RULE @@ -1 +1,7 @@ +--- +license_expression: frontier-1.0 +is_license_reference: yes +relevance: 100 +--- + The Frontier Artistic License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0.yml b/src/licensedcode/data/rules/frontier-1.0.yml deleted file mode 100644 index 19047d46a35..00000000000 --- a/src/licensedcode/data/rules/frontier-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: frontier-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/frontier-1.0_1.RULE b/src/licensedcode/data/rules/frontier-1.0_1.RULE index 722efd03bc4..dca10e7ca74 100644 --- a/src/licensedcode/data/rules/frontier-1.0_1.RULE +++ b/src/licensedcode/data/rules/frontier-1.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: frontier-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1999 by Samuel Reynolds +ignorable_holders: + - Samuel Reynolds +ignorable_urls: + - http://ftp.uu.net/ +--- + The Frontier Artistic License The Frontier Artistic License Version 1.0 diff --git a/src/licensedcode/data/rules/frontier-1.0_1.yml b/src/licensedcode/data/rules/frontier-1.0_1.yml deleted file mode 100644 index 0872d156cba..00000000000 --- a/src/licensedcode/data/rules/frontier-1.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: frontier-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1999 by Samuel Reynolds -ignorable_holders: - - Samuel Reynolds -ignorable_urls: - - http://ftp.uu.net/ diff --git a/src/licensedcode/data/rules/frontier-1.0_2.RULE b/src/licensedcode/data/rules/frontier-1.0_2.RULE index 1329754cf53..9c034e430be 100644 --- a/src/licensedcode/data/rules/frontier-1.0_2.RULE +++ b/src/licensedcode/data/rules/frontier-1.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: frontier-1.0 +is_license_notice: yes +--- + * This program is free software; you can redistribute it and/or modify * it under the terms of the "Frontier Artistic License" which comes * with this Kit. @@ -9,4 +14,4 @@ * * You should have received a copy of the Frontier Artistic License * with this Kit in the file named LICENSE.txt . - * If not, I'll be glad to provide one. + * If not, I'll be glad to provide one. \ No newline at end of file diff --git a/src/licensedcode/data/rules/frontier-1.0_2.yml b/src/licensedcode/data/rules/frontier-1.0_2.yml deleted file mode 100644 index 2e770520134..00000000000 --- a/src/licensedcode/data/rules/frontier-1.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: frontier-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/fsf-ap_1.RULE b/src/licensedcode/data/rules/fsf-ap_1.RULE index bc30039f354..534248cf851 100644 --- a/src/licensedcode/data/rules/fsf-ap_1.RULE +++ b/src/licensedcode/data/rules/fsf-ap_1.RULE @@ -1,4 +1,9 @@ +--- +license_expression: fsf-ap +is_license_text: yes +--- + Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice, author attribution and this notice are preserved. This file is offered -as-is, without any warranty. +as-is, without any warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_1.yml b/src/licensedcode/data/rules/fsf-ap_1.yml deleted file mode 100644 index 29c344a2292..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-ap -is_license_text: yes diff --git a/src/licensedcode/data/rules/fsf-ap_10.RULE b/src/licensedcode/data/rules/fsf-ap_10.RULE index 02413f30c17..9bca5960080 100644 --- a/src/licensedcode/data/rules/fsf-ap_10.RULE +++ b/src/licensedcode/data/rules/fsf-ap_10.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FSF All Permissive License FSFAP \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_10.yml b/src/licensedcode/data/rules/fsf-ap_10.yml deleted file mode 100644 index ec8e768db75..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-ap_11.RULE b/src/licensedcode/data/rules/fsf-ap_11.RULE index 7d37d3005dc..c8f66800ad5 100644 --- a/src/licensedcode/data/rules/fsf-ap_11.RULE +++ b/src/licensedcode/data/rules/fsf-ap_11.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-ap +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FSFAP \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_11.yml b/src/licensedcode/data/rules/fsf-ap_11.yml deleted file mode 100644 index ad3afe69e9e..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-ap -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-ap_12.RULE b/src/licensedcode/data/rules/fsf-ap_12.RULE index 7e56c29db51..78fb767a15b 100644 --- a/src/licensedcode/data/rules/fsf-ap_12.RULE +++ b/src/licensedcode/data/rules/fsf-ap_12.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-ap +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FSF All Permissive License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_12.yml b/src/licensedcode/data/rules/fsf-ap_12.yml deleted file mode 100644 index ad3afe69e9e..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-ap -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-ap_13.RULE b/src/licensedcode/data/rules/fsf-ap_13.RULE index 99ef0e75d18..8022ccd12d1 100644 --- a/src/licensedcode/data/rules/fsf-ap_13.RULE +++ b/src/licensedcode/data/rules/fsf-ap_13.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-ap +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: FSFAP \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_13.yml b/src/licensedcode/data/rules/fsf-ap_13.yml deleted file mode 100644 index ad3afe69e9e..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-ap -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-ap_14.RULE b/src/licensedcode/data/rules/fsf-ap_14.RULE index 7d7cc824d63..eb84c30b16f 100644 --- a/src/licensedcode/data/rules/fsf-ap_14.RULE +++ b/src/licensedcode/data/rules/fsf-ap_14.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/FSFAP +--- + https://licenses.nuget.org/FSFAP \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_14.yml b/src/licensedcode/data/rules/fsf-ap_14.yml deleted file mode 100644 index db2d5827c82..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/FSFAP diff --git a/src/licensedcode/data/rules/fsf-ap_15.RULE b/src/licensedcode/data/rules/fsf-ap_15.RULE index f40b983b447..27cd9b5c3ac 100644 --- a/src/licensedcode/data/rules/fsf-ap_15.RULE +++ b/src/licensedcode/data/rules/fsf-ap_15.RULE @@ -1 +1,7 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/FSFAP \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_15.yml b/src/licensedcode/data/rules/fsf-ap_15.yml deleted file mode 100644 index 85a14f8f423..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-ap_16.RULE b/src/licensedcode/data/rules/fsf-ap_16.RULE index 10a709a7964..7a93f180d99 100644 --- a/src/licensedcode/data/rules/fsf-ap_16.RULE +++ b/src/licensedcode/data/rules/fsf-ap_16.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FSFAP +--- + LICENSE {{FSFAP}} https://spdx.org/licenses/FSFAP \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_16.yml b/src/licensedcode/data/rules/fsf-ap_16.yml deleted file mode 100644 index d84482e5333..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FSFAP diff --git a/src/licensedcode/data/rules/fsf-ap_17.RULE b/src/licensedcode/data/rules/fsf-ap_17.RULE index b7d4edcf389..cb92d8f5cb2 100644 --- a/src/licensedcode/data/rules/fsf-ap_17.RULE +++ b/src/licensedcode/data/rules/fsf-ap_17.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FSFAP +--- + {{FSFAP}} https://spdx.org/licenses/FSFAP \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_17.yml b/src/licensedcode/data/rules/fsf-ap_17.yml deleted file mode 100644 index d84482e5333..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FSFAP diff --git a/src/licensedcode/data/rules/fsf-ap_2.RULE b/src/licensedcode/data/rules/fsf-ap_2.RULE index f4a82db7beb..44e677bd914 100644 --- a/src/licensedcode/data/rules/fsf-ap_2.RULE +++ b/src/licensedcode/data/rules/fsf-ap_2.RULE @@ -1,5 +1,10 @@ +--- +license_expression: fsf-ap +is_license_notice: yes +--- + LICENSE Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice - and this notice are preserved. + and this notice are preserved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_2.yml b/src/licensedcode/data/rules/fsf-ap_2.yml deleted file mode 100644 index 7fb180d0fb2..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-ap -is_license_notice: yes diff --git a/src/licensedcode/data/rules/fsf-ap_3.RULE b/src/licensedcode/data/rules/fsf-ap_3.RULE index 5fb38e3d6a1..9f63614cd38 100644 --- a/src/licensedcode/data/rules/fsf-ap_3.RULE +++ b/src/licensedcode/data/rules/fsf-ap_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: fsf-ap +is_license_notice: yes +--- + Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice - and this notice are preserved. + and this notice are preserved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_3.yml b/src/licensedcode/data/rules/fsf-ap_3.yml deleted file mode 100644 index 7fb180d0fb2..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-ap -is_license_notice: yes diff --git a/src/licensedcode/data/rules/fsf-ap_4.RULE b/src/licensedcode/data/rules/fsf-ap_4.RULE index bed7f4f5bf9..59cdba47192 100644 --- a/src/licensedcode/data/rules/fsf-ap_4.RULE +++ b/src/licensedcode/data/rules/fsf-ap_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: fsf-ap +is_license_text: yes +--- + Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, diff --git a/src/licensedcode/data/rules/fsf-ap_4.yml b/src/licensedcode/data/rules/fsf-ap_4.yml deleted file mode 100644 index 29c344a2292..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-ap -is_license_text: yes diff --git a/src/licensedcode/data/rules/fsf-ap_5.RULE b/src/licensedcode/data/rules/fsf-ap_5.RULE index e7b948234e2..298083bf25c 100644 --- a/src/licensedcode/data/rules/fsf-ap_5.RULE +++ b/src/licensedcode/data/rules/fsf-ap_5.RULE @@ -1,7 +1,13 @@ +--- +license_expression: fsf-ap +is_license_text: yes +relevance: 100 +--- + I do believe this work is not elligable for (manditory) copyright protection, but just in case, so that it does not default to proprietary: Copying and distribution of this project, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This project is offered as-is, -without any warranty. +without any warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_5.yml b/src/licensedcode/data/rules/fsf-ap_5.yml deleted file mode 100644 index 0bca5c030cd..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-ap -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-ap_6.RULE b/src/licensedcode/data/rules/fsf-ap_6.RULE index 648051848d6..7c1dcbaa9a7 100644 --- a/src/licensedcode/data/rules/fsf-ap_6.RULE +++ b/src/licensedcode/data/rules/fsf-ap_6.RULE @@ -1 +1,7 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 100 +--- + FSF All Permissive License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_6.yml b/src/licensedcode/data/rules/fsf-ap_6.yml deleted file mode 100644 index 85a14f8f423..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-ap_7.RULE b/src/licensedcode/data/rules/fsf-ap_7.RULE index 0b3ac968971..2a54bbea06d 100644 --- a/src/licensedcode/data/rules/fsf-ap_7.RULE +++ b/src/licensedcode/data/rules/fsf-ap_7.RULE @@ -1 +1,7 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 100 +--- + FSF All Permissive \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_7.yml b/src/licensedcode/data/rules/fsf-ap_7.yml deleted file mode 100644 index 85a14f8f423..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-ap_8.RULE b/src/licensedcode/data/rules/fsf-ap_8.RULE index 025c5bdadd3..b0e600dd2d9 100644 --- a/src/licensedcode/data/rules/fsf-ap_8.RULE +++ b/src/licensedcode/data/rules/fsf-ap_8.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: FSF All Permissive License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_8.yml b/src/licensedcode/data/rules/fsf-ap_8.yml deleted file mode 100644 index ec8e768db75..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-ap_9.RULE b/src/licensedcode/data/rules/fsf-ap_9.RULE index 0f97b561511..1f9713423c1 100644 --- a/src/licensedcode/data/rules/fsf-ap_9.RULE +++ b/src/licensedcode/data/rules/fsf-ap_9.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FSFAP FSF All Permissive License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_9.yml b/src/licensedcode/data/rules/fsf-ap_9.yml deleted file mode 100644 index ec8e768db75..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-ap_url_1.RULE b/src/licensedcode/data/rules/fsf-ap_url_1.RULE index 23a1c0839a8..62c2c6bc8e4 100644 --- a/src/licensedcode/data/rules/fsf-ap_url_1.RULE +++ b/src/licensedcode/data/rules/fsf-ap_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fsfap +--- + https://spdx.org/licenses/fsfap \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_url_1.yml b/src/licensedcode/data/rules/fsf-ap_url_1.yml deleted file mode 100644 index 0ef2e179662..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fsfap diff --git a/src/licensedcode/data/rules/fsf-ap_url_2.RULE b/src/licensedcode/data/rules/fsf-ap_url_2.RULE index e57f8530fd6..3fb501a64ea 100644 --- a/src/licensedcode/data/rules/fsf-ap_url_2.RULE +++ b/src/licensedcode/data/rules/fsf-ap_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fsfap.html +--- + https://spdx.org/licenses/fsfap.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_url_2.yml b/src/licensedcode/data/rules/fsf-ap_url_2.yml deleted file mode 100644 index 4d768345153..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fsfap.html diff --git a/src/licensedcode/data/rules/fsf-ap_url_glc_136.RULE b/src/licensedcode/data/rules/fsf-ap_url_glc_136.RULE index 5921c83f53d..41580c4259f 100644 --- a/src/licensedcode/data/rules/fsf-ap_url_glc_136.RULE +++ b/src/licensedcode/data/rules/fsf-ap_url_glc_136.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/prep/maintain/html_node/license-notices-for-other-files.html +--- + http://www.gnu.org/prep/maintain/html_node/license-notices-for-other-files.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_url_glc_136.yml b/src/licensedcode/data/rules/fsf-ap_url_glc_136.yml deleted file mode 100644 index a3c07e02d0d..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_url_glc_136.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/prep/maintain/html_node/license-notices-for-other-files.html diff --git a/src/licensedcode/data/rules/fsf-ap_url_glc_137.RULE b/src/licensedcode/data/rules/fsf-ap_url_glc_137.RULE index f1806c0a91e..63ad8c844c8 100644 --- a/src/licensedcode/data/rules/fsf-ap_url_glc_137.RULE +++ b/src/licensedcode/data/rules/fsf-ap_url_glc_137.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/prep/maintain/html_node/license-notices-for-other-files.html +--- + https://www.gnu.org/prep/maintain/html_node/license-notices-for-other-files.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-ap_url_glc_137.yml b/src/licensedcode/data/rules/fsf-ap_url_glc_137.yml deleted file mode 100644 index 9856be68b0d..00000000000 --- a/src/licensedcode/data/rules/fsf-ap_url_glc_137.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/prep/maintain/html_node/license-notices-for-other-files.html diff --git a/src/licensedcode/data/rules/fsf-free.RULE b/src/licensedcode/data/rules/fsf-free.RULE index 635f688b01a..0b89a2ae7a7 100644 --- a/src/licensedcode/data/rules/fsf-free.RULE +++ b/src/licensedcode/data/rules/fsf-free.RULE @@ -1,2 +1,7 @@ +--- +license_expression: fsf-free +is_license_text: yes +--- + This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." +gives unlimited permission to copy, distribute and modify it." \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free.yml b/src/licensedcode/data/rules/fsf-free.yml deleted file mode 100644 index e2a40f5d88e..00000000000 --- a/src/licensedcode/data/rules/fsf-free.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-free -is_license_text: yes diff --git a/src/licensedcode/data/rules/fsf-free2.RULE b/src/licensedcode/data/rules/fsf-free2.RULE index 23909b78418..67a8c8006e8 100644 --- a/src/licensedcode/data/rules/fsf-free2.RULE +++ b/src/licensedcode/data/rules/fsf-free2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: fsf-free +is_license_text: yes +--- + This file is free documentation; the Free Software Foundation gives -unlimited permission to copy, distribute and modify it. +unlimited permission to copy, distribute and modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free2.yml b/src/licensedcode/data/rules/fsf-free2.yml deleted file mode 100644 index e2a40f5d88e..00000000000 --- a/src/licensedcode/data/rules/fsf-free2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-free -is_license_text: yes diff --git a/src/licensedcode/data/rules/fsf-free3.RULE b/src/licensedcode/data/rules/fsf-free3.RULE index 40e48203d2b..51f79c8598b 100644 --- a/src/licensedcode/data/rules/fsf-free3.RULE +++ b/src/licensedcode/data/rules/fsf-free3.RULE @@ -1,2 +1,7 @@ +--- +license_expression: fsf-free +is_license_text: yes +--- + This config.lt script is free software; the Free Software Foundation -gives unlimited permision to copy, distribute and modify it." +gives unlimited permision to copy, distribute and modify it." \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free3.yml b/src/licensedcode/data/rules/fsf-free3.yml deleted file mode 100644 index e2a40f5d88e..00000000000 --- a/src/licensedcode/data/rules/fsf-free3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-free -is_license_text: yes diff --git a/src/licensedcode/data/rules/fsf-free4.RULE b/src/licensedcode/data/rules/fsf-free4.RULE index 8ef55d4ac40..9e2c786edd0 100644 --- a/src/licensedcode/data/rules/fsf-free4.RULE +++ b/src/licensedcode/data/rules/fsf-free4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: fsf-free +is_license_text: yes +relevance: 100 +--- + This script is free software; the Free Software Foundation -gives unlimited permision to copy, distribute and modify it." +gives unlimited permision to copy, distribute and modify it." \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free4.yml b/src/licensedcode/data/rules/fsf-free4.yml deleted file mode 100644 index 5d504fcd6b4..00000000000 --- a/src/licensedcode/data/rules/fsf-free4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-free -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-free5.RULE b/src/licensedcode/data/rules/fsf-free5.RULE index 98865148772..3e7d5cf2e45 100644 --- a/src/licensedcode/data/rules/fsf-free5.RULE +++ b/src/licensedcode/data/rules/fsf-free5.RULE @@ -1,2 +1,7 @@ +--- +license_expression: fsf-free +is_license_text: yes +--- + This Makefile.in is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. +gives unlimited permission to copy, distribute and modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free5.yml b/src/licensedcode/data/rules/fsf-free5.yml deleted file mode 100644 index e2a40f5d88e..00000000000 --- a/src/licensedcode/data/rules/fsf-free5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-free -is_license_text: yes diff --git a/src/licensedcode/data/rules/fsf-free_1.RULE b/src/licensedcode/data/rules/fsf-free_1.RULE index 033837b458a..eaea58130f7 100644 --- a/src/licensedcode/data/rules/fsf-free_1.RULE +++ b/src/licensedcode/data/rules/fsf-free_1.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-free +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FSF Unlimited License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_1.yml b/src/licensedcode/data/rules/fsf-free_1.yml deleted file mode 100644 index 102e0983642..00000000000 --- a/src/licensedcode/data/rules/fsf-free_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-free_10.RULE b/src/licensedcode/data/rules/fsf-free_10.RULE index 8168c30f278..ca0eecbe129 100644 --- a/src/licensedcode/data/rules/fsf-free_10.RULE +++ b/src/licensedcode/data/rules/fsf-free_10.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-free +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FSFUL +--- + LICENSE {{FSFUL}} https://spdx.org/licenses/FSFUL \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_10.yml b/src/licensedcode/data/rules/fsf-free_10.yml deleted file mode 100644 index c79430c6c9f..00000000000 --- a/src/licensedcode/data/rules/fsf-free_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FSFUL diff --git a/src/licensedcode/data/rules/fsf-free_11.RULE b/src/licensedcode/data/rules/fsf-free_11.RULE index 2f2a8a0fffa..8ff690497f6 100644 --- a/src/licensedcode/data/rules/fsf-free_11.RULE +++ b/src/licensedcode/data/rules/fsf-free_11.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-free +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FSFUL +--- + {{FSFUL}} https://spdx.org/licenses/FSFUL \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_11.yml b/src/licensedcode/data/rules/fsf-free_11.yml deleted file mode 100644 index c79430c6c9f..00000000000 --- a/src/licensedcode/data/rules/fsf-free_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FSFUL diff --git a/src/licensedcode/data/rules/fsf-free_2.RULE b/src/licensedcode/data/rules/fsf-free_2.RULE index 97b94f7d781..33643f40186 100644 --- a/src/licensedcode/data/rules/fsf-free_2.RULE +++ b/src/licensedcode/data/rules/fsf-free_2.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-free +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: FSF Unlimited License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_2.yml b/src/licensedcode/data/rules/fsf-free_2.yml deleted file mode 100644 index 102e0983642..00000000000 --- a/src/licensedcode/data/rules/fsf-free_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-free_3.RULE b/src/licensedcode/data/rules/fsf-free_3.RULE index 3553c162597..a3d35f3916f 100644 --- a/src/licensedcode/data/rules/fsf-free_3.RULE +++ b/src/licensedcode/data/rules/fsf-free_3.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-free +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FSFUL FSF Unlimited License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_3.yml b/src/licensedcode/data/rules/fsf-free_3.yml deleted file mode 100644 index 102e0983642..00000000000 --- a/src/licensedcode/data/rules/fsf-free_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-free_4.RULE b/src/licensedcode/data/rules/fsf-free_4.RULE index 8ce1f4d8028..fe35fb1f6ca 100644 --- a/src/licensedcode/data/rules/fsf-free_4.RULE +++ b/src/licensedcode/data/rules/fsf-free_4.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-free +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FSF Unlimited License FSFUL \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_4.yml b/src/licensedcode/data/rules/fsf-free_4.yml deleted file mode 100644 index 102e0983642..00000000000 --- a/src/licensedcode/data/rules/fsf-free_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-free_5.RULE b/src/licensedcode/data/rules/fsf-free_5.RULE index 39e45bc22c2..33278b79bc6 100644 --- a/src/licensedcode/data/rules/fsf-free_5.RULE +++ b/src/licensedcode/data/rules/fsf-free_5.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-free +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FSFUL \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_5.yml b/src/licensedcode/data/rules/fsf-free_5.yml deleted file mode 100644 index b369af1ac7f..00000000000 --- a/src/licensedcode/data/rules/fsf-free_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-free -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-free_6.RULE b/src/licensedcode/data/rules/fsf-free_6.RULE index 28457f46351..5626d8f24b1 100644 --- a/src/licensedcode/data/rules/fsf-free_6.RULE +++ b/src/licensedcode/data/rules/fsf-free_6.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-free +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FSF Unlimited License \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_6.yml b/src/licensedcode/data/rules/fsf-free_6.yml deleted file mode 100644 index b369af1ac7f..00000000000 --- a/src/licensedcode/data/rules/fsf-free_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-free -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-free_7.RULE b/src/licensedcode/data/rules/fsf-free_7.RULE index 1fef46671ad..2734fc86f14 100644 --- a/src/licensedcode/data/rules/fsf-free_7.RULE +++ b/src/licensedcode/data/rules/fsf-free_7.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-free +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: FSFUL \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_7.yml b/src/licensedcode/data/rules/fsf-free_7.yml deleted file mode 100644 index b369af1ac7f..00000000000 --- a/src/licensedcode/data/rules/fsf-free_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-free -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-free_8.RULE b/src/licensedcode/data/rules/fsf-free_8.RULE index 811cf1660cf..3b6cf10338d 100644 --- a/src/licensedcode/data/rules/fsf-free_8.RULE +++ b/src/licensedcode/data/rules/fsf-free_8.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-free +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/FSFUL +--- + https://licenses.nuget.org/FSFUL \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_8.yml b/src/licensedcode/data/rules/fsf-free_8.yml deleted file mode 100644 index 777a9ed6b92..00000000000 --- a/src/licensedcode/data/rules/fsf-free_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/FSFUL diff --git a/src/licensedcode/data/rules/fsf-free_9.RULE b/src/licensedcode/data/rules/fsf-free_9.RULE index 788ab32bda8..d6a3cd04fbb 100644 --- a/src/licensedcode/data/rules/fsf-free_9.RULE +++ b/src/licensedcode/data/rules/fsf-free_9.RULE @@ -1 +1,7 @@ +--- +license_expression: fsf-free +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/FSFUL \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_9.yml b/src/licensedcode/data/rules/fsf-free_9.yml deleted file mode 100644 index fe747897524..00000000000 --- a/src/licensedcode/data/rules/fsf-free_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-free_url_1.RULE b/src/licensedcode/data/rules/fsf-free_url_1.RULE index dc517fe1701..8fd2413e32b 100644 --- a/src/licensedcode/data/rules/fsf-free_url_1.RULE +++ b/src/licensedcode/data/rules/fsf-free_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-free +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fsful +--- + https://spdx.org/licenses/fsful \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_url_1.yml b/src/licensedcode/data/rules/fsf-free_url_1.yml deleted file mode 100644 index ff5fcbbca1b..00000000000 --- a/src/licensedcode/data/rules/fsf-free_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fsful diff --git a/src/licensedcode/data/rules/fsf-free_url_2.RULE b/src/licensedcode/data/rules/fsf-free_url_2.RULE index 5959427c954..df69325875f 100644 --- a/src/licensedcode/data/rules/fsf-free_url_2.RULE +++ b/src/licensedcode/data/rules/fsf-free_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-free +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fsful.html +--- + https://spdx.org/licenses/fsful.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-free_url_2.yml b/src/licensedcode/data/rules/fsf-free_url_2.yml deleted file mode 100644 index dce4c58502f..00000000000 --- a/src/licensedcode/data/rules/fsf-free_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fsful.html diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty.RULE b/src/licensedcode/data/rules/fsf-unlimited-no-warranty.RULE index 607f6c8db36..23da7a171a5 100644 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited-no-warranty.RULE @@ -1,3 +1,9 @@ +--- +license_expression: fsf-unlimited-no-warranty +is_license_text: yes +notes: small variant +--- + This file is free software; as a special exception the author gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty.yml b/src/licensedcode/data/rules/fsf-unlimited-no-warranty.yml deleted file mode 100644 index e7acb068db5..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-unlimited-no-warranty -is_license_text: yes -notes: small variant diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_1.RULE b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_1.RULE index 1fbe500a9d8..386ff7b0e9e 100644 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_1.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: fsf-unlimited-no-warranty +is_license_text: yes +notes: small variant +--- + # This is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -5,4 +11,4 @@ # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. +# PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_1.yml b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_1.yml deleted file mode 100644 index e7acb068db5..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-unlimited-no-warranty -is_license_text: yes -notes: small variant diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_2.RULE b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_2.RULE index e894c5cddf3..9404b751a2b 100644 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_2.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: fsf-unlimited-no-warranty +is_license_text: yes +notes: small variant +--- + # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -5,4 +11,4 @@ # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. +# PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_2.yml b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_2.yml deleted file mode 100644 index e7acb068db5..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-unlimited-no-warranty -is_license_text: yes -notes: small variant diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_3.RULE b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_3.RULE index d615b8b4f8b..c35555a807a 100644 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_3.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_3.RULE @@ -1,7 +1,12 @@ +--- +license_expression: fsf-unlimited-no-warranty +is_license_text: yes +--- + License: other # This file is free software; you may copy and/or distribute it with # or without modifications, as long as this notice is preserved. # This software is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY, to the extent permitted by law; without even # the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - # PURPOSE. + # PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_3.yml b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_3.yml deleted file mode 100644 index a8793ba08c7..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-unlimited-no-warranty -is_license_text: yes diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_4.RULE b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_4.RULE index da1e63ab916..c350158b8d4 100644 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_4.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_4.RULE @@ -1,6 +1,12 @@ +--- +license_expression: fsf-unlimited-no-warranty +is_license_text: yes +relevance: 100 +--- + # This file is free software; you may copy and/or distribute it with # or without modifications, as long as this notice is preserved. # This software is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY, to the extent permitted by law; without even # the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - # PURPOSE. + # PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_4.yml b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_4.yml deleted file mode 100644 index 897a15b4b30..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-unlimited-no-warranty -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_5.RULE b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_5.RULE index d5aae99bf3d..1040a183867 100644 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_5.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_5.RULE @@ -1,7 +1,12 @@ +--- +license_expression: fsf-unlimited-no-warranty +is_license_text: yes +--- + * This file is free software; as a special exception the author gives * unlimited permission to copy and/or distribute it, with or without * modifications, as long as this notice is preserved. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY, to the extent permitted by law; without even the - * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_5.yml b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_5.yml deleted file mode 100644 index a8793ba08c7..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: fsf-unlimited-no-warranty -is_license_text: yes diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_and_other-copyleft_1.RULE index 35974793867..aa2fcab6aea 100644 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_and_other-copyleft_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: fsf-unlimited-no-warranty AND other-copyleft +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING +--- + This file is Free Software; as a special exception the authors gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. For conditions diff --git a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_and_other-copyleft_1.yml b/src/licensedcode/data/rules/fsf-unlimited-no-warranty_and_other-copyleft_1.yml deleted file mode 100644 index 44af90c99cc..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited-no-warranty_and_other-copyleft_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-unlimited-no-warranty AND other-copyleft -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/fsf-unlimited_1.RULE b/src/licensedcode/data/rules/fsf-unlimited_1.RULE index 955092fd157..30bb2e4b29e 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_1.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: fsf-unlimited +is_license_text: yes +relevance: 100 +--- + This file is free software; the author(s) gives unlimited permission to copy and/or distribute it, with or without -modifications, as long as this notice is preserved. +modifications, as long as this notice is preserved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_1.yml b/src/licensedcode/data/rules/fsf-unlimited_1.yml deleted file mode 100644 index adcc7ae4a78..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-unlimited -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-unlimited_10.RULE b/src/licensedcode/data/rules/fsf-unlimited_10.RULE index 71f4f7d99ca..042f21e2ba3 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_10.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_10.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: FSFULLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_10.yml b/src/licensedcode/data/rules/fsf-unlimited_10.yml deleted file mode 100644 index 68c89e76df9..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-unlimited -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-unlimited_11.RULE b/src/licensedcode/data/rules/fsf-unlimited_11.RULE index c6eec289e6e..53b23695f17 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_11.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_11.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/FSFULLR +--- + https://licenses.nuget.org/FSFULLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_11.yml b/src/licensedcode/data/rules/fsf-unlimited_11.yml deleted file mode 100644 index 6bb3dd0d3da..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/FSFULLR diff --git a/src/licensedcode/data/rules/fsf-unlimited_12.RULE b/src/licensedcode/data/rules/fsf-unlimited_12.RULE index 9a03090f351..fcf4320dca5 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_12.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_12.RULE @@ -1 +1,7 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/FSFULLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_12.yml b/src/licensedcode/data/rules/fsf-unlimited_12.yml deleted file mode 100644 index f34c0c95a40..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/fsf-unlimited_13.RULE b/src/licensedcode/data/rules/fsf-unlimited_13.RULE index 73f5159ab87..6306853b51d 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_13.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_13.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FSFULLR +--- + LICENSE {{FSFULLR}} https://spdx.org/licenses/FSFULLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_13.yml b/src/licensedcode/data/rules/fsf-unlimited_13.yml deleted file mode 100644 index c7e0bcc849a..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FSFULLR diff --git a/src/licensedcode/data/rules/fsf-unlimited_14.RULE b/src/licensedcode/data/rules/fsf-unlimited_14.RULE index f2e271a0af9..a134a01a086 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_14.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_14.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/FSFULLR +--- + {{FSFULLR}} https://spdx.org/licenses/FSFULLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_14.yml b/src/licensedcode/data/rules/fsf-unlimited_14.yml deleted file mode 100644 index c7e0bcc849a..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/FSFULLR diff --git a/src/licensedcode/data/rules/fsf-unlimited_2.RULE b/src/licensedcode/data/rules/fsf-unlimited_2.RULE index e617cc4ff0b..26ac64b48e6 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_2.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: fsf-unlimited +is_license_text: yes +minimum_coverage: 60 +--- + This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. @@ -9,4 +15,4 @@ functionality. Please note that the actual code of the GNU gettext library is covered by the GNU Library General Public License, and the rest of the GNU gettext package is covered by the GNU General Public License. -They are *not* in the public domain. +They are *not* in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_2.yml b/src/licensedcode/data/rules/fsf-unlimited_2.yml deleted file mode 100644 index e97369c2f21..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-unlimited -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/fsf-unlimited_3.RULE b/src/licensedcode/data/rules/fsf-unlimited_3.RULE index a42e0c0e1ec..06fb123973a 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_3.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_3.RULE @@ -1,4 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_text: yes +minimum_coverage: 100 +--- + The FSF Unlimited License This software is free software; you have unlimited permission -to copy, distribute and modify it. +to copy, distribute and modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_3.yml b/src/licensedcode/data/rules/fsf-unlimited_3.yml deleted file mode 100644 index f925dd46222..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-unlimited -is_license_text: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/fsf-unlimited_4.RULE b/src/licensedcode/data/rules/fsf-unlimited_4.RULE index 22c9f0cebe5..2e9a5111673 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_4.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_4.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FSF Unlimited License (with License Retention) \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_4.yml b/src/licensedcode/data/rules/fsf-unlimited_4.yml deleted file mode 100644 index c7212ea9fdf..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-unlimited_5.RULE b/src/licensedcode/data/rules/fsf-unlimited_5.RULE index 5a8719e122c..3abcf915669 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_5.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_5.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: FSF Unlimited License (with License Retention) \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_5.yml b/src/licensedcode/data/rules/fsf-unlimited_5.yml deleted file mode 100644 index c7212ea9fdf..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-unlimited_6.RULE b/src/licensedcode/data/rules/fsf-unlimited_6.RULE index fe22986a1ee..53967cb3db7 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_6.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_6.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FSFULLR FSF Unlimited License (with License Retention) \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_6.yml b/src/licensedcode/data/rules/fsf-unlimited_6.yml deleted file mode 100644 index c7212ea9fdf..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-unlimited_7.RULE b/src/licensedcode/data/rules/fsf-unlimited_7.RULE index c965ff861b6..398bbe631a0 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_7.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_7.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + FSF Unlimited License (with License Retention) FSFULLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_7.yml b/src/licensedcode/data/rules/fsf-unlimited_7.yml deleted file mode 100644 index c7212ea9fdf..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-unlimited_8.RULE b/src/licensedcode/data/rules/fsf-unlimited_8.RULE index c0f73c76123..a6bc6bdfe34 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_8.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_8.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FSFULLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_8.yml b/src/licensedcode/data/rules/fsf-unlimited_8.yml deleted file mode 100644 index 68c89e76df9..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-unlimited -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-unlimited_9.RULE b/src/licensedcode/data/rules/fsf-unlimited_9.RULE index d98c113285e..0426efc8d2c 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_9.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_9.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: FSF Unlimited License (with License Retention) \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_9.yml b/src/licensedcode/data/rules/fsf-unlimited_9.yml deleted file mode 100644 index 68c89e76df9..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-unlimited -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/fsf-unlimited_url_1.RULE b/src/licensedcode/data/rules/fsf-unlimited_url_1.RULE index 5c38d59822a..772d332a658 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_url_1.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fsfullr +--- + https://spdx.org/licenses/fsfullr \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_url_1.yml b/src/licensedcode/data/rules/fsf-unlimited_url_1.yml deleted file mode 100644 index e347b9f8053..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fsfullr diff --git a/src/licensedcode/data/rules/fsf-unlimited_url_2.RULE b/src/licensedcode/data/rules/fsf-unlimited_url_2.RULE index a2d082a8fdc..a3eaf33154a 100644 --- a/src/licensedcode/data/rules/fsf-unlimited_url_2.RULE +++ b/src/licensedcode/data/rules/fsf-unlimited_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/fsfullr.html +--- + https://spdx.org/licenses/fsfullr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/fsf-unlimited_url_2.yml b/src/licensedcode/data/rules/fsf-unlimited_url_2.yml deleted file mode 100644 index 160ed6afcf3..00000000000 --- a/src/licensedcode/data/rules/fsf-unlimited_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/fsfullr.html diff --git a/src/licensedcode/data/rules/gcc-exception-3.0_1.RULE b/src/licensedcode/data/rules/gcc-exception-3.0_1.RULE index 82690cc4df4..e9de9f5dd97 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.0_1.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-exception-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gcc-exception-3.0.html +--- + https://www.gnu.org/licenses/gcc-exception-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.0_1.yml b/src/licensedcode/data/rules/gcc-exception-3.0_1.yml deleted file mode 100644 index 6810c2e7cde..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-exception-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gcc-exception-3.0.html diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_1.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_1.RULE index 5dd4761f565..07c7d93b774 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_1.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - 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 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_1.yml b/src/licensedcode/data/rules/gcc-exception-3.1_1.yml deleted file mode 100644 index b1191f207dd..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_10.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_10.RULE index db064ea8971..321b7c32678 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_10.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GCC-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_10.yml b/src/licensedcode/data/rules/gcc-exception-3.1_10.yml deleted file mode 100644 index d1c6ed37b61..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_11.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_11.RULE index c388e71ee79..4f5c5c54b88 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_11.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GCC Runtime Library exception 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_11.yml b/src/licensedcode/data/rules/gcc-exception-3.1_11.yml deleted file mode 100644 index d1c6ed37b61..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_12.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_12.RULE index 68d91552bad..568c57f269f 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_12.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: GCC-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_12.yml b/src/licensedcode/data/rules/gcc-exception-3.1_12.yml deleted file mode 100644 index d1c6ed37b61..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_13.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_13.RULE index 84de315f673..71a061e4345 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_13.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GCC-exception-3.1 +--- + https://licenses.nuget.org/GCC-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_13.yml b/src/licensedcode/data/rules/gcc-exception-3.1_13.yml deleted file mode 100644 index b424a090e1d..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GCC-exception-3.1 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_14.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_14.RULE index 06a6593983e..ffd3378abe9 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_14.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_14.RULE @@ -1 +1,7 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GCC-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_14.yml b/src/licensedcode/data/rules/gcc-exception-3.1_14.yml deleted file mode 100644 index e8c709454a5..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_15.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_15.RULE index f57850cf13b..93143af34c1 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_15.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GCC-exception-3.1 +--- + LICENSE {{GCC-exception-3.1}} https://spdx.org/licenses/GCC-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_15.yml b/src/licensedcode/data/rules/gcc-exception-3.1_15.yml deleted file mode 100644 index c09154ab0b4..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GCC-exception-3.1 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_16.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_16.RULE index c2af197bc1b..cf1846dff69 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_16.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_16.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GCC-exception-3.1 +--- + {{GCC-exception-3.1}} https://spdx.org/licenses/GCC-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_16.yml b/src/licensedcode/data/rules/gcc-exception-3.1_16.yml deleted file mode 100644 index c09154ab0b4..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GCC-exception-3.1 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_2.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_2.RULE index 7644e65f762..3cb99ab5e14 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_2.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + GCC Runtime Library Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_2.yml b/src/licensedcode/data/rules/gcc-exception-3.1_2.yml deleted file mode 100644 index e8c709454a5..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_3.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_3.RULE index a7ca7839f75..a5316c534b0 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_3.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + GCC RUNTIME LIBRARY EXCEPTION. Version 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_3.yml b/src/licensedcode/data/rules/gcc-exception-3.1_3.yml deleted file mode 100644 index e8c709454a5..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_4.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_4.RULE index 43966c004de..abcdb959746 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_4.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + GCC RLE v3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_4.yml b/src/licensedcode/data/rules/gcc-exception-3.1_4.yml deleted file mode 100644 index e8c709454a5..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_5.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_5.RULE index 59db62c17a9..062bac7235c 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_5.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 99 +notes: See https://www.gnu.org/licenses/exceptions.en.html +ignorable_urls: + - https://www.gnu.org/licenses/gcc-exception.html +--- + https://www.gnu.org/licenses/gcc-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_5.yml b/src/licensedcode/data/rules/gcc-exception-3.1_5.yml deleted file mode 100644 index 29f258f36b9..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 99 -notes: See https://www.gnu.org/licenses/exceptions.en.html -ignorable_urls: - - https://www.gnu.org/licenses/gcc-exception.html diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_6.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_6.RULE index c490e92a4b5..dd05c4a0dae 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_6.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GCC Runtime Library exception 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_6.yml b/src/licensedcode/data/rules/gcc-exception-3.1_6.yml deleted file mode 100644 index 53e22939436..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_7.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_7.RULE index 19d97f23910..02b3d54a8c8 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_7.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GCC Runtime Library exception 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_7.yml b/src/licensedcode/data/rules/gcc-exception-3.1_7.yml deleted file mode 100644 index 53e22939436..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_8.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_8.RULE index ec93c30f99c..b24d12da2ad 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_8.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GCC-exception-3.1 GCC Runtime Library exception 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_8.yml b/src/licensedcode/data/rules/gcc-exception-3.1_8.yml deleted file mode 100644 index 53e22939436..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_9.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_9.RULE index fbc59b142b4..ef12014233f 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_9.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GCC Runtime Library exception 3.1 GCC-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_9.yml b/src/licensedcode/data/rules/gcc-exception-3.1_9.yml deleted file mode 100644 index 53e22939436..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_url_1.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_url_1.RULE index 550a8964b9a..d0dbc7f9f4a 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_url_1.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gcc-exception-3.1 +--- + https://spdx.org/licenses/gcc-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_url_1.yml b/src/licensedcode/data/rules/gcc-exception-3.1_url_1.yml deleted file mode 100644 index c8ad4fd99c8..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gcc-exception-3.1 diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_url_2.RULE b/src/licensedcode/data/rules/gcc-exception-3.1_url_2.RULE index b800d272b5c..11b5470bfd9 100644 --- a/src/licensedcode/data/rules/gcc-exception-3.1_url_2.RULE +++ b/src/licensedcode/data/rules/gcc-exception-3.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gcc-exception-3.1.html +--- + https://spdx.org/licenses/gcc-exception-3.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-3.1_url_2.yml b/src/licensedcode/data/rules/gcc-exception-3.1_url_2.yml deleted file mode 100644 index 4161f8dacec..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-3.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gcc-exception-3.1.html diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_1.RULE index 2b43550e848..a7a3a1d6322 100644 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +--- + In addition to the permissions in the GNU Library General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file into diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_1.yml deleted file mode 100644 index 106ee2e3e9a..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_2.RULE index 02c82e12ea3..06637b707bb 100644 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus WITH gcc-linking-exception-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 Library General Public License as published by the Free Software Foundation; either version 2, or @@ -17,4 +22,4 @@ 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 - Fifth Floor, Boston, MA - 02110-1301, USA. + 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_2.yml deleted file mode 100644 index 106ee2e3e9a..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_3.RULE index 03449b54893..4392be17ba3 100644 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + Libiberty 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; either @@ -20,4 +27,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with libiberty; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, -Boston, MA 02110-1301, USA. */ +Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_3.yml deleted file mode 100644 index 4dd6b1c023a..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_4.RULE index 8dc6c152f74..beb08bf1c87 100644 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + This 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; either @@ -20,4 +27,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, -Boston, MA 02110-1301, USA. */ +Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_4.yml b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_4.yml deleted file mode 100644 index 4dd6b1c023a..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_5.RULE index 418a40ce177..43cfd9e3b61 100644 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Libiberty 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; either @@ -19,4 +28,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with libiberty; see the file COPYING.LIB. -If not, see . */ +If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_5.yml b/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_5.yml deleted file mode 100644 index 70d5aeba073..00000000000 --- a/src/licensedcode/data/rules/gcc-exception-lgpl-2.0-plus_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_1.RULE index 12b2392b9d6..61a622dddd4 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -16,4 +23,4 @@ distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and - distribution when not linked into a combine executable. + distribution when not linked into a combine executable. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_1.yml deleted file mode 100644 index 1798a0e6a99..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_10.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_10.RULE index 108e42b566b..2018753cd38 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GCC-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_10.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_10.yml deleted file mode 100644 index b530c6ec976..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_11.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_11.RULE index 65d49fada25..86237e66192 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GCC Runtime Library exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_11.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_11.yml deleted file mode 100644 index b530c6ec976..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_12.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_12.RULE index 16d54fba313..dc2552a9dba 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: GCC-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_12.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_12.yml deleted file mode 100644 index b530c6ec976..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_13.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_13.RULE index fa05f1d2d95..bb01ee4d4f7 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_13.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GCC-exception-2.0 +--- + https://licenses.nuget.org/GCC-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_13.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_13.yml deleted file mode 100644 index 59ae3b595c2..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GCC-exception-2.0 diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_14.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_14.RULE index 8f55f9f3642..818783a78e4 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_14.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GCC-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_14.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_14.yml deleted file mode 100644 index 4cce4e644cb..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_15.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_15.RULE index e33ae25cd61..378d6513f32 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_15.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GCC-exception-2.0 +--- + LICENSE {{GCC-exception-2.0}} https://spdx.org/licenses/GCC-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_15.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_15.yml deleted file mode 100644 index dff92a184ea..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GCC-exception-2.0 diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_16.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_16.RULE index 9c8901045fd..e56216c5c4b 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_16.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GCC-exception-2.0 +--- + {{GCC-exception-2.0}} https://spdx.org/licenses/GCC-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_16.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_16.yml deleted file mode 100644 index dff92a184ea..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GCC-exception-2.0 diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_2.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_2.RULE index 9ee11a98ddf..a31943542ae 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -16,4 +23,4 @@ distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and - distribution when not linked into a combined executable. + distribution when not linked into a combined executable. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_2.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_2.yml deleted file mode 100644 index 1798a0e6a99..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_3.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_3.RULE index 79fd2686497..4a4c41d8532 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_text: yes +--- + GCC Linking Exception In addition to the permissions in the GNU General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_3.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_3.yml deleted file mode 100644 index 80332d2b234..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_4.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_4.RULE index ac939c20206..acd9fe8e428 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +--- + This file 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) @@ -15,4 +20,4 @@ more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 - Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_4.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_4.yml deleted file mode 100644 index dc5a4312676..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_5.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_5.RULE index 30956645669..f5e42943a1e 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GNU CC 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, or (at your option) @@ -20,4 +27,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street - Fifth Floor, -Boston, MA 02110-1301, USA. */ +Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_5.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_5.yml deleted file mode 100644 index 1798a0e6a99..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_6.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_6.RULE index 40343f3c9fb..15c4e72c834 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GCC Runtime Library exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_6.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_6.yml deleted file mode 100644 index 29489ef3b51..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_7.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_7.RULE index 2749578efa8..4a5b3f34241 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GCC Runtime Library exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_7.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_7.yml deleted file mode 100644 index 29489ef3b51..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_8.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_8.RULE index 92f9c09702f..e6c4b94f96a 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GCC-exception-2.0 GCC Runtime Library exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_8.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_8.yml deleted file mode 100644 index 29489ef3b51..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_9.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_9.RULE index fef8561a089..b226e41e414 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GCC Runtime Library exception 2.0 GCC-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_9.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_9.yml deleted file mode 100644 index 29489ef3b51..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_1.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_1.RULE index 04db7de2d09..4bcce7b0dc6 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_1.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +notes: Seen in libgit2. Even though this exception has been typically used with GPLv2 there + is no version referenced in the notice +--- + In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link the compiled version of this library into combinations with other programs, diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_1.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_1.yml deleted file mode 100644 index 05ce113219d..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -notes: Seen in libgit2. Even though this exception has been typically used with GPLv2 there - is no version referenced in the notice diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_2.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_2.RULE index 0be5a994a98..e1e505cf6f9 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_2.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Note that the only valid version of the GPL as far as this project is concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x or whatever), unless explicitly otherwise stated. @@ -21,4 +28,4 @@ more details. You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_2.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_2.yml deleted file mode 100644 index a681921b6ec..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_3.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_3.RULE index c3390c3cefc..70202f62a36 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_3.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + LINKING EXCEPTION In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link the compiled @@ -17,4 +24,4 @@ more details. You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software - Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_3.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_3.yml deleted file mode 100644 index a681921b6ec..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_4.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_4.RULE index 8362adb7e81..2c4b3e6a81d 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_4.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_text: yes +--- + LINKING EXCEPTION In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link the compiled @@ -6,4 +11,4 @@ coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into - a combined executable.) + a combined executable.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_4.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_4.yml deleted file mode 100644 index 80332d2b234..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_libgit2_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_1.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_1.RULE index 107e3bcac62..efb51be7086 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gcc-exception-2.0 +--- + https://spdx.org/licenses/gcc-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_1.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_1.yml deleted file mode 100644 index 046f6000008..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gcc-exception-2.0 diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_2.RULE b/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_2.RULE index 84f855ba71e..f92b415d57c 100644 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gcc-exception-2.0.html +--- + https://spdx.org/licenses/gcc-exception-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_2.yml b/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_2.yml deleted file mode 100644 index 48ad5fa150f..00000000000 --- a/src/licensedcode/data/rules/gcc-linking-exception-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gcc-exception-2.0.html diff --git a/src/licensedcode/data/rules/gcel-2022_1.RULE b/src/licensedcode/data/rules/gcel-2022_1.RULE index 9214c694aff..3410edde7fd 100644 --- a/src/licensedcode/data/rules/gcel-2022_1.RULE +++ b/src/licensedcode/data/rules/gcel-2022_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gcel-2022 +is_license_notice: yes +notes: https://github.com/gridgain/gridgain/blob/master/LICENSE +ignorable_urls: + - https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license +--- + Licensed under the {{GridGain Community Edition License}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/gcel-2022_1.yml b/src/licensedcode/data/rules/gcel-2022_1.yml deleted file mode 100644 index 67d5b710c0b..00000000000 --- a/src/licensedcode/data/rules/gcel-2022_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gcel-2022 -is_license_notice: yes -notes: https://github.com/gridgain/gridgain/blob/master/LICENSE -ignorable_urls: - - https://www.gridgain.com/products/software/community-edition/gridgain-community-edition-license diff --git a/src/licensedcode/data/rules/generic-cla.RULE b/src/licensedcode/data/rules/generic-cla.RULE index 385ac8aa03a..01d2e9115cc 100644 --- a/src/licensedcode/data/rules/generic-cla.RULE +++ b/src/licensedcode/data/rules/generic-cla.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-cla +is_license_notice: yes +notes: Oracle CLA for OpenOffice +--- + Oracle Contributor Agreement (Including OpenOffice.org Exception) These terms apply to your contribution of materials to a product or project owned or managed by us ('project'), and set out the intellectual property diff --git a/src/licensedcode/data/rules/generic-cla.yml b/src/licensedcode/data/rules/generic-cla.yml deleted file mode 100644 index 40c0eda1a71..00000000000 --- a/src/licensedcode/data/rules/generic-cla.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -notes: Oracle CLA for OpenOffice diff --git a/src/licensedcode/data/rules/generic-cla10.RULE b/src/licensedcode/data/rules/generic-cla10.RULE index b164be1b6e3..3309e516728 100644 --- a/src/licensedcode/data/rules/generic-cla10.RULE +++ b/src/licensedcode/data/rules/generic-cla10.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + Individual Contributor License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla10.yml b/src/licensedcode/data/rules/generic-cla10.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla2.RULE b/src/licensedcode/data/rules/generic-cla2.RULE index 8ecf8cb4f53..5897cd50209 100644 --- a/src/licensedcode/data/rules/generic-cla2.RULE +++ b/src/licensedcode/data/rules/generic-cla2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-cla +is_license_notice: yes +notes: Oracle CLA for OpenOffice +ignorable_emails: + - Copyrightfax@sun.com +--- + OpenOffice.org Open Source Project Joint Copyright Assignment by Contributor To Sun Microsystems, Inc. ("Sun") diff --git a/src/licensedcode/data/rules/generic-cla2.yml b/src/licensedcode/data/rules/generic-cla2.yml deleted file mode 100644 index a38a9e3b1c7..00000000000 --- a/src/licensedcode/data/rules/generic-cla2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -notes: Oracle CLA for OpenOffice -ignorable_emails: - - Copyrightfax@sun.com diff --git a/src/licensedcode/data/rules/generic-cla3.RULE b/src/licensedcode/data/rules/generic-cla3.RULE index ced1f2a76db..d2699f7783b 100644 --- a/src/licensedcode/data/rules/generic-cla3.RULE +++ b/src/licensedcode/data/rules/generic-cla3.RULE @@ -1 +1,6 @@ +--- +license_expression: generic-cla +is_license_notice: yes +--- + *By contributing to this repository you are agreeing to make your content available subject to the license of this repository.* \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla3.yml b/src/licensedcode/data/rules/generic-cla3.yml deleted file mode 100644 index d0856feb3e3..00000000000 --- a/src/licensedcode/data/rules/generic-cla3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes diff --git a/src/licensedcode/data/rules/generic-cla4.RULE b/src/licensedcode/data/rules/generic-cla4.RULE index b733b28a055..1a8cb7ff9dc 100644 --- a/src/licensedcode/data/rules/generic-cla4.RULE +++ b/src/licensedcode/data/rules/generic-cla4.RULE @@ -1,5 +1,10 @@ +--- +license_expression: generic-cla +is_license_notice: yes +--- + CONTRIBUTION AGREEMENT By contributing to the repository through pull-request, comment, or otherwise, the contributor releases their content to the -license and copyright terms herein. +license and copyright terms herein. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla4.yml b/src/licensedcode/data/rules/generic-cla4.yml deleted file mode 100644 index d0856feb3e3..00000000000 --- a/src/licensedcode/data/rules/generic-cla4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes diff --git a/src/licensedcode/data/rules/generic-cla5.RULE b/src/licensedcode/data/rules/generic-cla5.RULE index e71023eec1c..f4fec306a51 100644 --- a/src/licensedcode/data/rules/generic-cla5.RULE +++ b/src/licensedcode/data/rules/generic-cla5.RULE @@ -1 +1,8 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 80 +notes: Oracle CLA for OpenOffice +--- + contributor license agreements \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla5.yml b/src/licensedcode/data/rules/generic-cla5.yml deleted file mode 100644 index bf0c4dc236c..00000000000 --- a/src/licensedcode/data/rules/generic-cla5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 80 -notes: Oracle CLA for OpenOffice diff --git a/src/licensedcode/data/rules/generic-cla6.RULE b/src/licensedcode/data/rules/generic-cla6.RULE index 2d9e234fb1c..aca2f56f665 100644 --- a/src/licensedcode/data/rules/generic-cla6.RULE +++ b/src/licensedcode/data/rules/generic-cla6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + * Contributions are licensed to the Alliance under one or more * Contributor License Agreements. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla6.yml b/src/licensedcode/data/rules/generic-cla6.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla7.RULE b/src/licensedcode/data/rules/generic-cla7.RULE index b6b2d32189c..ff9d1431aee 100644 --- a/src/licensedcode/data/rules/generic-cla7.RULE +++ b/src/licensedcode/data/rules/generic-cla7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-cla +is_license_notice: yes +ignorable_urls: + - http://fedoraproject.org/wiki/Legal/Licenses/CLA +--- + The Fedora Project Individual Contributor License Agreement (CLA) diff --git a/src/licensedcode/data/rules/generic-cla7.yml b/src/licensedcode/data/rules/generic-cla7.yml deleted file mode 100644 index f0898a34b5e..00000000000 --- a/src/licensedcode/data/rules/generic-cla7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -ignorable_urls: - - http://fedoraproject.org/wiki/Legal/Licenses/CLA diff --git a/src/licensedcode/data/rules/generic-cla8.RULE b/src/licensedcode/data/rules/generic-cla8.RULE index 1399814cb08..9d63cd5eab5 100644 --- a/src/licensedcode/data/rules/generic-cla8.RULE +++ b/src/licensedcode/data/rules/generic-cla8.RULE @@ -1 +1,8 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 100 +notes: Oracle CLA for OpenOffice +--- + Contributor License Agreement](#cla \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla8.yml b/src/licensedcode/data/rules/generic-cla8.yml deleted file mode 100644 index d8050adeabc..00000000000 --- a/src/licensedcode/data/rules/generic-cla8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 100 -notes: Oracle CLA for OpenOffice diff --git a/src/licensedcode/data/rules/generic-cla9.RULE b/src/licensedcode/data/rules/generic-cla9.RULE index d2b79587e78..9ac18c14484 100644 --- a/src/licensedcode/data/rules/generic-cla9.RULE +++ b/src/licensedcode/data/rules/generic-cla9.RULE @@ -1 +1,8 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 100 +notes: Oracle CLA for OpenOffice +--- + Contributor License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla9.yml b/src/licensedcode/data/rules/generic-cla9.yml deleted file mode 100644 index d8050adeabc..00000000000 --- a/src/licensedcode/data/rules/generic-cla9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 100 -notes: Oracle CLA for OpenOffice diff --git a/src/licensedcode/data/rules/generic-cla_1.RULE b/src/licensedcode/data/rules/generic-cla_1.RULE index 7116bab14dc..7c80484e895 100644 --- a/src/licensedcode/data/rules/generic-cla_1.RULE +++ b/src/licensedcode/data/rules/generic-cla_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 100 +--- + # uses a shared copyright model: each contributor holds copyright over #their contributions to Caffe. The project versioning records all such #contribution and copyright details. If a contributor wants to further mark diff --git a/src/licensedcode/data/rules/generic-cla_1.yml b/src/licensedcode/data/rules/generic-cla_1.yml deleted file mode 100644 index 747ea46ff05..00000000000 --- a/src/licensedcode/data/rules/generic-cla_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_10.RULE b/src/licensedcode/data/rules/generic-cla_10.RULE index d153243e1b3..5d1331fd7d8 100644 --- a/src/licensedcode/data/rules/generic-cla_10.RULE +++ b/src/licensedcode/data/rules/generic-cla_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 100 +--- + Contributor License Agreement Contributions to this project must be accompanied by a Contributor License diff --git a/src/licensedcode/data/rules/generic-cla_10.yml b/src/licensedcode/data/rules/generic-cla_10.yml deleted file mode 100644 index 747ea46ff05..00000000000 --- a/src/licensedcode/data/rules/generic-cla_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_11.RULE b/src/licensedcode/data/rules/generic-cla_11.RULE index 4fc5839b411..2d0971f03ce 100644 --- a/src/licensedcode/data/rules/generic-cla_11.RULE +++ b/src/licensedcode/data/rules/generic-cla_11.RULE @@ -1,3 +1,13 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - LICENSE + - COPYING +--- + you agree that your contributions will be licensed under both the [LICENSE](LICENSE) file and the [COPYING](COPYING) file in the root directory of this source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_11.yml b/src/licensedcode/data/rules/generic-cla_11.yml deleted file mode 100644 index 5f24cac0310..00000000000 --- a/src/licensedcode/data/rules/generic-cla_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/generic-cla_12.RULE b/src/licensedcode/data/rules/generic-cla_12.RULE index 438c9d94351..5e784d6d5b0 100644 --- a/src/licensedcode/data/rules/generic-cla_12.RULE +++ b/src/licensedcode/data/rules/generic-cla_12.RULE @@ -1,2 +1,8 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 100 +--- + Contributions are licensed to the GENIVI Alliance under one or more Contributor License Agreements. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_12.yml b/src/licensedcode/data/rules/generic-cla_12.yml deleted file mode 100644 index 747ea46ff05..00000000000 --- a/src/licensedcode/data/rules/generic-cla_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_13.RULE b/src/licensedcode/data/rules/generic-cla_13.RULE index 9ba9c0ae1c7..3fd860d5451 100644 --- a/src/licensedcode/data/rules/generic-cla_13.RULE +++ b/src/licensedcode/data/rules/generic-cla_13.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + contributors license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_13.yml b/src/licensedcode/data/rules/generic-cla_13.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_14.RULE b/src/licensedcode/data/rules/generic-cla_14.RULE index 67c74dd6df8..d976752950c 100644 --- a/src/licensedcode/data/rules/generic-cla_14.RULE +++ b/src/licensedcode/data/rules/generic-cla_14.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + the contributors license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_14.yml b/src/licensedcode/data/rules/generic-cla_14.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_15.RULE b/src/licensedcode/data/rules/generic-cla_15.RULE index d7268b5918f..ae7dcd8afb6 100644 --- a/src/licensedcode/data/rules/generic-cla_15.RULE +++ b/src/licensedcode/data/rules/generic-cla_15.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + Sign the contributors license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_15.yml b/src/licensedcode/data/rules/generic-cla_15.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_16.RULE b/src/licensedcode/data/rules/generic-cla_16.RULE index 70e7eedd013..be8be6907d9 100644 --- a/src/licensedcode/data/rules/generic-cla_16.RULE +++ b/src/licensedcode/data/rules/generic-cla_16.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 100 +--- + We ask that you agree to Contributor License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_16.yml b/src/licensedcode/data/rules/generic-cla_16.yml deleted file mode 100644 index 747ea46ff05..00000000000 --- a/src/licensedcode/data/rules/generic-cla_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_17.RULE b/src/licensedcode/data/rules/generic-cla_17.RULE index 7325a4494b4..a12a5cb3a48 100644 --- a/src/licensedcode/data/rules/generic-cla_17.RULE +++ b/src/licensedcode/data/rules/generic-cla_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-cla +is_license_notice: yes +notes: Seen in pybind11 +--- + You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you choose to make your Enhancements diff --git a/src/licensedcode/data/rules/generic-cla_17.yml b/src/licensedcode/data/rules/generic-cla_17.yml deleted file mode 100644 index 04af1ff85d1..00000000000 --- a/src/licensedcode/data/rules/generic-cla_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -notes: Seen in pybind11 diff --git a/src/licensedcode/data/rules/generic-cla_18.RULE b/src/licensedcode/data/rules/generic-cla_18.RULE index 24e888e51f9..89973ea1462 100644 --- a/src/licensedcode/data/rules/generic-cla_18.RULE +++ b/src/licensedcode/data/rules/generic-cla_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-cla +is_license_notice: yes +ignorable_urls: + - https://developers.google.com/open-source/cla/corporate + - https://developers.google.com/open-source/cla/individual +--- + ## Contributor License Agreement ## Contributions to any Google project must be accompanied by a Contributor diff --git a/src/licensedcode/data/rules/generic-cla_18.yml b/src/licensedcode/data/rules/generic-cla_18.yml deleted file mode 100644 index ade665c8042..00000000000 --- a/src/licensedcode/data/rules/generic-cla_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -ignorable_urls: - - https://developers.google.com/open-source/cla/corporate - - https://developers.google.com/open-source/cla/individual diff --git a/src/licensedcode/data/rules/generic-cla_19.RULE b/src/licensedcode/data/rules/generic-cla_19.RULE index 30d4cab99f6..6fd2a4fcf03 100644 --- a/src/licensedcode/data/rules/generic-cla_19.RULE +++ b/src/licensedcode/data/rules/generic-cla_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-cla +is_license_notice: yes +ignorable_urls: + - https://cla.developers.google.com/clas +--- + ### Legal requirements In order to protect both you and ourselves, you will need to sign the diff --git a/src/licensedcode/data/rules/generic-cla_19.yml b/src/licensedcode/data/rules/generic-cla_19.yml deleted file mode 100644 index ffbc68e1d70..00000000000 --- a/src/licensedcode/data/rules/generic-cla_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -ignorable_urls: - - https://cla.developers.google.com/clas diff --git a/src/licensedcode/data/rules/generic-cla_2.RULE b/src/licensedcode/data/rules/generic-cla_2.RULE index c322229c726..a02d374e950 100644 --- a/src/licensedcode/data/rules/generic-cla_2.RULE +++ b/src/licensedcode/data/rules/generic-cla_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + # Corporate CLAs An archive of the signers of Corporate Contributor License Agreements (CCLA). Approved employees of these companies were permitted to contribute \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_2.yml b/src/licensedcode/data/rules/generic-cla_2.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_20.RULE b/src/licensedcode/data/rules/generic-cla_20.RULE index 1113a964e37..bd06a2a2aa4 100644 --- a/src/licensedcode/data/rules/generic-cla_20.RULE +++ b/src/licensedcode/data/rules/generic-cla_20.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-cla +is_license_notice: yes +ignorable_urls: + - http://code.google.com/legal/corporate-cla-v1.0.html + - http://code.google.com/legal/individual-cla-v1.0.html +--- + Names should be added to this file only after verifying that the individual or the individual's organization has agreed to the appropriate Contributor License Agreement, found here: diff --git a/src/licensedcode/data/rules/generic-cla_20.yml b/src/licensedcode/data/rules/generic-cla_20.yml deleted file mode 100644 index 897edc5ee9c..00000000000 --- a/src/licensedcode/data/rules/generic-cla_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -ignorable_urls: - - http://code.google.com/legal/corporate-cla-v1.0.html - - http://code.google.com/legal/individual-cla-v1.0.html diff --git a/src/licensedcode/data/rules/generic-cla_21.RULE b/src/licensedcode/data/rules/generic-cla_21.RULE index 3dbf9da282d..0413c6b0cfa 100644 --- a/src/licensedcode/data/rules/generic-cla_21.RULE +++ b/src/licensedcode/data/rules/generic-cla_21.RULE @@ -1,2 +1,7 @@ +--- +license_expression: generic-cla +is_license_notice: yes +--- + Before your code can be accepted into the project you must also sign the [Individual Contributor License Agreement][1]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_21.yml b/src/licensedcode/data/rules/generic-cla_21.yml deleted file mode 100644 index d0856feb3e3..00000000000 --- a/src/licensedcode/data/rules/generic-cla_21.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes diff --git a/src/licensedcode/data/rules/generic-cla_22.RULE b/src/licensedcode/data/rules/generic-cla_22.RULE index b4bc5378138..82c96c4d181 100644 --- a/src/licensedcode/data/rules/generic-cla_22.RULE +++ b/src/licensedcode/data/rules/generic-cla_22.RULE @@ -1,2 +1,10 @@ +--- +license_expression: generic-cla +is_license_reference: yes +ignorable_urls: + - http://code.google.com/legal/corporate-cla-v1.0.html + - http://code.google.com/legal/individual-cla-v1.0.html +--- + http://code.google.com/legal/individual-cla-v1.0.html http://code.google.com/legal/corporate-cla-v1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_22.yml b/src/licensedcode/data/rules/generic-cla_22.yml deleted file mode 100644 index 09fc896718d..00000000000 --- a/src/licensedcode/data/rules/generic-cla_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -ignorable_urls: - - http://code.google.com/legal/corporate-cla-v1.0.html - - http://code.google.com/legal/individual-cla-v1.0.html diff --git a/src/licensedcode/data/rules/generic-cla_23.RULE b/src/licensedcode/data/rules/generic-cla_23.RULE index 81ccc8e2960..275da56e11c 100644 --- a/src/licensedcode/data/rules/generic-cla_23.RULE +++ b/src/licensedcode/data/rules/generic-cla_23.RULE @@ -1 +1,9 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://code.google.com/legal/individual-cla-v1.0.html +--- + http://code.google.com/legal/individual-cla-v1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_23.yml b/src/licensedcode/data/rules/generic-cla_23.yml deleted file mode 100644 index b446c014078..00000000000 --- a/src/licensedcode/data/rules/generic-cla_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://code.google.com/legal/individual-cla-v1.0.html diff --git a/src/licensedcode/data/rules/generic-cla_24.RULE b/src/licensedcode/data/rules/generic-cla_24.RULE index fa61c945f1f..facedf474c5 100644 --- a/src/licensedcode/data/rules/generic-cla_24.RULE +++ b/src/licensedcode/data/rules/generic-cla_24.RULE @@ -1,2 +1,9 @@ +--- +license_expression: generic-cla +is_license_notice: yes +ignorable_urls: + - https://git.k8s.io/community/CLA.md +--- + [Contributor License Agreement](https://git.k8s.io/community/CLA.md) Kubernetes projects require that you sign a Contributor License Agreement (CLA) before we can accept your pull requests \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_24.yml b/src/licensedcode/data/rules/generic-cla_24.yml deleted file mode 100644 index 783893bd0d8..00000000000 --- a/src/licensedcode/data/rules/generic-cla_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -ignorable_urls: - - https://git.k8s.io/community/CLA.md diff --git a/src/licensedcode/data/rules/generic-cla_25.RULE b/src/licensedcode/data/rules/generic-cla_25.RULE index 6c4ea82adae..e59e534be5d 100644 --- a/src/licensedcode/data/rules/generic-cla_25.RULE +++ b/src/licensedcode/data/rules/generic-cla_25.RULE @@ -1 +1,9 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://code.google.com/legal/corporate-cla-v1.0.html +--- + http://code.google.com/legal/corporate-cla-v1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_25.yml b/src/licensedcode/data/rules/generic-cla_25.yml deleted file mode 100644 index 42aaf355b94..00000000000 --- a/src/licensedcode/data/rules/generic-cla_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://code.google.com/legal/corporate-cla-v1.0.html diff --git a/src/licensedcode/data/rules/generic-cla_26.RULE b/src/licensedcode/data/rules/generic-cla_26.RULE index e79ed0e8137..dd86ae7fe2e 100644 --- a/src/licensedcode/data/rules/generic-cla_26.RULE +++ b/src/licensedcode/data/rules/generic-cla_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-cla +is_license_notice: yes +ignorable_urls: + - https://identity.linuxfoundation.org/projects/cncf +--- + ## Legal requirements In order to protect both you and ourselves, you will need to sign the diff --git a/src/licensedcode/data/rules/generic-cla_26.yml b/src/licensedcode/data/rules/generic-cla_26.yml deleted file mode 100644 index 287aa90a9bb..00000000000 --- a/src/licensedcode/data/rules/generic-cla_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -ignorable_urls: - - https://identity.linuxfoundation.org/projects/cncf diff --git a/src/licensedcode/data/rules/generic-cla_27.RULE b/src/licensedcode/data/rules/generic-cla_27.RULE index fa0809c4182..6de3bb488aa 100644 --- a/src/licensedcode/data/rules/generic-cla_27.RULE +++ b/src/licensedcode/data/rules/generic-cla_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-cla +is_license_notice: yes +ignorable_urls: + - https://cla.developers.google.com/ +--- + ## Contributor License Agreement Contributions to this project must be accompanied by a Contributor License diff --git a/src/licensedcode/data/rules/generic-cla_27.yml b/src/licensedcode/data/rules/generic-cla_27.yml deleted file mode 100644 index 488386a1880..00000000000 --- a/src/licensedcode/data/rules/generic-cla_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -ignorable_urls: - - https://cla.developers.google.com/ diff --git a/src/licensedcode/data/rules/generic-cla_28.RULE b/src/licensedcode/data/rules/generic-cla_28.RULE index 24d3d60b52a..2c994e380b8 100644 --- a/src/licensedcode/data/rules/generic-cla_28.RULE +++ b/src/licensedcode/data/rules/generic-cla_28.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-cla +is_license_notice: yes +ignorable_urls: + - https://cla.microsoft.com/ +--- + ## Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a diff --git a/src/licensedcode/data/rules/generic-cla_28.yml b/src/licensedcode/data/rules/generic-cla_28.yml deleted file mode 100644 index 8306744dbcb..00000000000 --- a/src/licensedcode/data/rules/generic-cla_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -ignorable_urls: - - https://cla.microsoft.com/ diff --git a/src/licensedcode/data/rules/generic-cla_3.RULE b/src/licensedcode/data/rules/generic-cla_3.RULE index 7304df83edb..7da2ddcdc0c 100644 --- a/src/licensedcode/data/rules/generic-cla_3.RULE +++ b/src/licensedcode/data/rules/generic-cla_3.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + # Corporate CLAs \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_3.yml b/src/licensedcode/data/rules/generic-cla_3.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_4.RULE b/src/licensedcode/data/rules/generic-cla_4.RULE index fc6039e0efc..62595f15740 100644 --- a/src/licensedcode/data/rules/generic-cla_4.RULE +++ b/src/licensedcode/data/rules/generic-cla_4.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + Corporate Contributor License Agreements (CCLA) \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_4.yml b/src/licensedcode/data/rules/generic-cla_4.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_5.RULE b/src/licensedcode/data/rules/generic-cla_5.RULE index 5c6eb942a8e..601098131f9 100644 --- a/src/licensedcode/data/rules/generic-cla_5.RULE +++ b/src/licensedcode/data/rules/generic-cla_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-cla +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses +--- + #### Contribution Requirements: - When you contribute, you agree to give a non-exclusive license to to use that contribution in any context as we see appropriate. - If you use content provided by another party, it must be appropriately licensed using an [open source](http://opensource.org/licenses) license. diff --git a/src/licensedcode/data/rules/generic-cla_5.yml b/src/licensedcode/data/rules/generic-cla_5.yml deleted file mode 100644 index 94ecfce6af7..00000000000 --- a/src/licensedcode/data/rules/generic-cla_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-cla -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/rules/generic-cla_6.RULE b/src/licensedcode/data/rules/generic-cla_6.RULE index 8bf8492dff0..92154637d8a 100644 --- a/src/licensedcode/data/rules/generic-cla_6.RULE +++ b/src/licensedcode/data/rules/generic-cla_6.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla +is_license_reference: yes +relevance: 100 +--- + Contribution License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_6.yml b/src/licensedcode/data/rules/generic-cla_6.yml deleted file mode 100644 index 950c1283133..00000000000 --- a/src/licensedcode/data/rules/generic-cla_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_7.RULE b/src/licensedcode/data/rules/generic-cla_7.RULE index a8a6c282db1..92e5e64ac91 100644 --- a/src/licensedcode/data/rules/generic-cla_7.RULE +++ b/src/licensedcode/data/rules/generic-cla_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-cla +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + Discourse CLA Contributor License Agreement diff --git a/src/licensedcode/data/rules/generic-cla_7.yml b/src/licensedcode/data/rules/generic-cla_7.yml deleted file mode 100644 index 9de722d12ab..00000000000 --- a/src/licensedcode/data/rules/generic-cla_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/generic-cla_8.RULE b/src/licensedcode/data/rules/generic-cla_8.RULE index d6d54150306..6f23ec7aff1 100644 --- a/src/licensedcode/data/rules/generic-cla_8.RULE +++ b/src/licensedcode/data/rules/generic-cla_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-cla +is_license_text: yes +relevance: 99 +--- + n8n Contributor License Agreement I give n8n permission to license my contributions on any terms they like. diff --git a/src/licensedcode/data/rules/generic-cla_8.yml b/src/licensedcode/data/rules/generic-cla_8.yml deleted file mode 100644 index f2c349bf3f8..00000000000 --- a/src/licensedcode/data/rules/generic-cla_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/generic-cla_9.RULE b/src/licensedcode/data/rules/generic-cla_9.RULE index 3dba4a46e19..b9358922bf6 100644 --- a/src/licensedcode/data/rules/generic-cla_9.RULE +++ b/src/licensedcode/data/rules/generic-cla_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-cla +is_license_text: yes +relevance: 100 +notes: https://github.com/BVLC/caffe/blob/master/LICENSE +--- + By contributing to the repository through pull-request, comment, or otherwise, the contributor releases their content to the license and copyright terms herein. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_9.yml b/src/licensedcode/data/rules/generic-cla_9.yml deleted file mode 100644 index d1c83da6a69..00000000000 --- a/src/licensedcode/data/rules/generic-cla_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla -is_license_text: yes -relevance: 100 -notes: https://github.com/BVLC/caffe/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/generic-cla_and_mit_1.RULE b/src/licensedcode/data/rules/generic-cla_and_mit_1.RULE index 42a41891eb9..a3f29c4020d 100644 --- a/src/licensedcode/data/rules/generic-cla_and_mit_1.RULE +++ b/src/licensedcode/data/rules/generic-cla_and_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla AND mit +is_license_notice: yes +relevance: 99 +--- + License your contributions under the existing, MIT-style terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_and_mit_1.yml b/src/licensedcode/data/rules/generic-cla_and_mit_1.yml deleted file mode 100644 index 249763d70ab..00000000000 --- a/src/licensedcode/data/rules/generic-cla_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla AND mit -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/generic-cla_and_mit_2.RULE b/src/licensedcode/data/rules/generic-cla_and_mit_2.RULE index 4dd4e36cdb2..50d515260b4 100644 --- a/src/licensedcode/data/rules/generic-cla_and_mit_2.RULE +++ b/src/licensedcode/data/rules/generic-cla_and_mit_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-cla AND mit +is_license_notice: yes +relevance: 100 +--- + License information Contribution License Agreement If you contribute code to this project, you are implicitly allowing your code diff --git a/src/licensedcode/data/rules/generic-cla_and_mit_2.yml b/src/licensedcode/data/rules/generic-cla_and_mit_2.yml deleted file mode 100644 index 7c59f2b17eb..00000000000 --- a/src/licensedcode/data/rules/generic-cla_and_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_and_mit_3.RULE b/src/licensedcode/data/rules/generic-cla_and_mit_3.RULE index 3e13c906ff8..a5a1b1a1b5d 100644 --- a/src/licensedcode/data/rules/generic-cla_and_mit_3.RULE +++ b/src/licensedcode/data/rules/generic-cla_and_mit_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-cla AND mit +is_license_notice: yes +relevance: 100 +--- + MIT License information Contribution License Agreement If you contribute code to this project, you are implicitly allowing your code diff --git a/src/licensedcode/data/rules/generic-cla_and_mit_3.yml b/src/licensedcode/data/rules/generic-cla_and_mit_3.yml deleted file mode 100644 index 7c59f2b17eb..00000000000 --- a/src/licensedcode/data/rules/generic-cla_and_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_and_public-domain_1.RULE b/src/licensedcode/data/rules/generic-cla_and_public-domain_1.RULE index e890fd5e542..83387c39e95 100644 --- a/src/licensedcode/data/rules/generic-cla_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/generic-cla_and_public-domain_1.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-cla AND public-domain +is_license_notice: yes +relevance: 100 +--- + every contribution you give is under Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-cla_and_public-domain_1.yml b/src/licensedcode/data/rules/generic-cla_and_public-domain_1.yml deleted file mode 100644 index a940f5a037c..00000000000 --- a/src/licensedcode/data/rules/generic-cla_and_public-domain_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-cla AND public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-cla_and_public-domain_and_proprietary-license_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/generic-cla_and_public-domain_and_proprietary-license_and_warranty-disclaimer_1.RULE index be55c5f1caf..abd07c5b91e 100644 --- a/src/licensedcode/data/rules/generic-cla_and_public-domain_and_proprietary-license_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/generic-cla_and_public-domain_and_proprietary-license_and_warranty-disclaimer_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-cla AND public-domain AND proprietary-license AND warranty-disclaimer +is_license_notice: yes +ignorable_urls: + - http://osvdb.org/ + - http://www.osvdb.org/osvdb_license +--- + If you submit code or data to the ruby-advisory-db that is copyrighted by yourself, upon submission you hereby agree to release it into the {{public domain}}. However, not all of the ruby-advisory-db can be considered public domain. The ruby-advisory-db may contain some information {{copyrighted by the Open Source Vulnerability Database (http://osvdb.org)}}. If you use ruby-advisory-db data to build a product or a service, it is your responsibility to familiarize yourself with the terms of their license: http://www.osvdb.org/osvdb_license diff --git a/src/licensedcode/data/rules/generic-cla_and_public-domain_and_proprietary-license_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/generic-cla_and_public-domain_and_proprietary-license_and_warranty-disclaimer_1.yml deleted file mode 100644 index 743b792d2f6..00000000000 --- a/src/licensedcode/data/rules/generic-cla_and_public-domain_and_proprietary-license_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-cla AND public-domain AND proprietary-license AND warranty-disclaimer -is_license_notice: yes -ignorable_urls: - - http://osvdb.org/ - - http://www.osvdb.org/osvdb_license diff --git a/src/licensedcode/data/rules/generic-cla_or_hdf5_1.RULE b/src/licensedcode/data/rules/generic-cla_or_hdf5_1.RULE index ac12b8cd8d1..fd9663ef3ba 100644 --- a/src/licensedcode/data/rules/generic-cla_or_hdf5_1.RULE +++ b/src/licensedcode/data/rules/generic-cla_or_hdf5_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-cla OR hdf5 +is_license_notice: yes +relevance: 80 +notes: this is essentially the CLA section of the hdf5 license +--- + You are under no obligation whatsoever to provide any bug fixes, patches, or upgrades to the features, functionality or performance of the source code ("Enhancements") to anyone; however, if you diff --git a/src/licensedcode/data/rules/generic-cla_or_hdf5_1.yml b/src/licensedcode/data/rules/generic-cla_or_hdf5_1.yml deleted file mode 100644 index 53cea100e0f..00000000000 --- a/src/licensedcode/data/rules/generic-cla_or_hdf5_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-cla OR hdf5 -is_license_notice: yes -relevance: 80 -notes: this is essentially the CLA section of the hdf5 license diff --git a/src/licensedcode/data/rules/generic-exception_1.RULE b/src/licensedcode/data/rules/generic-exception_1.RULE index c283acf2d26..fd3c8eec4f7 100644 --- a/src/licensedcode/data/rules/generic-exception_1.RULE +++ b/src/licensedcode/data/rules/generic-exception_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This licence also comes with the added permission that you may link this program with the OpenSSL library and distribute executables, as long as you follow the requirements of this licence in regard to all of the software in diff --git a/src/licensedcode/data/rules/generic-exception_1.yml b/src/licensedcode/data/rules/generic-exception_1.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_10.RULE b/src/licensedcode/data/rules/generic-exception_10.RULE index 84ff1bde136..d489c0ec84d 100644 --- a/src/licensedcode/data/rules/generic-exception_10.RULE +++ b/src/licensedcode/data/rules/generic-exception_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Apple Public Source License (any version) and distribute the resulting combined work, as long as you follow the diff --git a/src/licensedcode/data/rules/generic-exception_10.yml b/src/licensedcode/data/rules/generic-exception_10.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_11.RULE b/src/licensedcode/data/rules/generic-exception_11.RULE index 9906cb3f942..a84ccff4a0c 100644 --- a/src/licensedcode/data/rules/generic-exception_11.RULE +++ b/src/licensedcode/data/rules/generic-exception_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the BitTorrent Open Source License (any version) and distribute the resulting combined work, as long as you follow the diff --git a/src/licensedcode/data/rules/generic-exception_11.yml b/src/licensedcode/data/rules/generic-exception_11.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_12.RULE b/src/licensedcode/data/rules/generic-exception_12.RULE index 63f1dc4dce8..04cee49f0ff 100644 --- a/src/licensedcode/data/rules/generic-exception_12.RULE +++ b/src/licensedcode/data/rules/generic-exception_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Lucent Public License (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_12.yml b/src/licensedcode/data/rules/generic-exception_12.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_13.RULE b/src/licensedcode/data/rules/generic-exception_13.RULE index f0d1d5628ac..fb061e35892 100644 --- a/src/licensedcode/data/rules/generic-exception_13.RULE +++ b/src/licensedcode/data/rules/generic-exception_13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Jabber Open Source License (any version) and distribute the resulting combined work, as long as you follow the diff --git a/src/licensedcode/data/rules/generic-exception_13.yml b/src/licensedcode/data/rules/generic-exception_13.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_14.RULE b/src/licensedcode/data/rules/generic-exception_14.RULE index 9697d62556a..baf61bfcfb3 100644 --- a/src/licensedcode/data/rules/generic-exception_14.RULE +++ b/src/licensedcode/data/rules/generic-exception_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Common Development and Distribution License (any version) and distribute the resulting combined work, as long as you follow diff --git a/src/licensedcode/data/rules/generic-exception_14.yml b/src/licensedcode/data/rules/generic-exception_14.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_15.RULE b/src/licensedcode/data/rules/generic-exception_15.RULE index 219927ef0b6..e55a19aba22 100644 --- a/src/licensedcode/data/rules/generic-exception_15.RULE +++ b/src/licensedcode/data/rules/generic-exception_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Microsoft Public License (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_15.yml b/src/licensedcode/data/rules/generic-exception_15.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_16.RULE b/src/licensedcode/data/rules/generic-exception_16.RULE index 079baf1d253..3c0be2ec92d 100644 --- a/src/licensedcode/data/rules/generic-exception_16.RULE +++ b/src/licensedcode/data/rules/generic-exception_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Microsoft Reciprocal License (any version) and distribute the resulting combined work, as long as you follow the diff --git a/src/licensedcode/data/rules/generic-exception_16.yml b/src/licensedcode/data/rules/generic-exception_16.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_17.RULE b/src/licensedcode/data/rules/generic-exception_17.RULE index 1eef5a0934e..df5a628eae6 100644 --- a/src/licensedcode/data/rules/generic-exception_17.RULE +++ b/src/licensedcode/data/rules/generic-exception_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Sun Industry Standards Source License (any version) and distribute the resulting combined work, as long as you follow the diff --git a/src/licensedcode/data/rules/generic-exception_17.yml b/src/licensedcode/data/rules/generic-exception_17.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_18.RULE b/src/licensedcode/data/rules/generic-exception_18.RULE index 53dd226d7b5..05f850c234e 100644 --- a/src/licensedcode/data/rules/generic-exception_18.RULE +++ b/src/licensedcode/data/rules/generic-exception_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Open Software License (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_18.yml b/src/licensedcode/data/rules/generic-exception_18.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_19.RULE b/src/licensedcode/data/rules/generic-exception_19.RULE index 77a862b082f..d16c79319a7 100644 --- a/src/licensedcode/data/rules/generic-exception_19.RULE +++ b/src/licensedcode/data/rules/generic-exception_19.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-exception +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/GPL_linking_exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-exception_19.yml b/src/licensedcode/data/rules/generic-exception_19.yml deleted file mode 100644 index 3d2c9082657..00000000000 --- a/src/licensedcode/data/rules/generic-exception_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-exception -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/generic-exception_2.RULE b/src/licensedcode/data/rules/generic-exception_2.RULE index 4ca0df30bf6..8d8a0ca7a8b 100644 --- a/src/licensedcode/data/rules/generic-exception_2.RULE +++ b/src/licensedcode/data/rules/generic-exception_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the OpenSSL license (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_2.yml b/src/licensedcode/data/rules/generic-exception_2.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_3.RULE b/src/licensedcode/data/rules/generic-exception_3.RULE index 8348f8b6f24..fc3c7115bc4 100644 --- a/src/licensedcode/data/rules/generic-exception_3.RULE +++ b/src/licensedcode/data/rules/generic-exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Eclipse Public Licence (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_3.yml b/src/licensedcode/data/rules/generic-exception_3.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_4.RULE b/src/licensedcode/data/rules/generic-exception_4.RULE index da901fa4161..3521599f34a 100644 --- a/src/licensedcode/data/rules/generic-exception_4.RULE +++ b/src/licensedcode/data/rules/generic-exception_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Q Public Licence (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_4.yml b/src/licensedcode/data/rules/generic-exception_4.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_5.RULE b/src/licensedcode/data/rules/generic-exception_5.RULE index 992e0577dcf..abe1e2ed354 100644 --- a/src/licensedcode/data/rules/generic-exception_5.RULE +++ b/src/licensedcode/data/rules/generic-exception_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Apache Licence (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_5.yml b/src/licensedcode/data/rules/generic-exception_5.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_6.RULE b/src/licensedcode/data/rules/generic-exception_6.RULE index a857ea13ff1..a7e0a6363e0 100644 --- a/src/licensedcode/data/rules/generic-exception_6.RULE +++ b/src/licensedcode/data/rules/generic-exception_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the GNU Lesser General Public License (any version) and distribute the resulting combined work, as long as you follow the diff --git a/src/licensedcode/data/rules/generic-exception_6.yml b/src/licensedcode/data/rules/generic-exception_6.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_7.RULE b/src/licensedcode/data/rules/generic-exception_7.RULE index 62e054e3094..3d94f969a2b 100644 --- a/src/licensedcode/data/rules/generic-exception_7.RULE +++ b/src/licensedcode/data/rules/generic-exception_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Zope Public License (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_7.yml b/src/licensedcode/data/rules/generic-exception_7.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_8.RULE b/src/licensedcode/data/rules/generic-exception_8.RULE index a859df97f45..f72fd9f2c30 100644 --- a/src/licensedcode/data/rules/generic-exception_8.RULE +++ b/src/licensedcode/data/rules/generic-exception_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Python Software Foundation License (any version) and distribute the resulting combined work, as long as you follow the diff --git a/src/licensedcode/data/rules/generic-exception_8.yml b/src/licensedcode/data/rules/generic-exception_8.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-exception_9.RULE b/src/licensedcode/data/rules/generic-exception_9.RULE index 7cbc8c10ca8..da647e9af58 100644 --- a/src/licensedcode/data/rules/generic-exception_9.RULE +++ b/src/licensedcode/data/rules/generic-exception_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL +--- + This work also comes with the added permission that you may combine it with a work licensed under the Academic Free License (any version) and distribute the resulting combined work, as long as you follow the requirements of the diff --git a/src/licensedcode/data/rules/generic-exception_9.yml b/src/licensedcode/data/rules/generic-exception_9.yml deleted file mode 100644 index 426d14c5c36..00000000000 --- a/src/licensedcode/data/rules/generic-exception_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -notes: This is an exception found in Tahoe-LAFS with the TGPPL or the GPL diff --git a/src/licensedcode/data/rules/generic-export-compliance_1.RULE b/src/licensedcode/data/rules/generic-export-compliance_1.RULE index ec2a1d0f837..11dfcac43e2 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_1.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_text: yes +relevance: 100 +--- + Export Compliance You understand that the Software may contain cryptographic functions that may be subject to export restrictions, and you represent and warrant that you are not (i) located in a jurisdiction that is subject to United States economic sanctions (“Prohibited Jurisdiction”), including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, (ii) a person listed on any U.S. government blacklist (to include the List of Specially Designated Nationals and Blocked Persons or the Consolidated Sanctions List administered by the U.S. Department of the Treasury’s Office of Foreign Assets Control, or the Denied Persons List or Entity List administered by the U.S. Department of Commerce) (“Sanctioned Person”), or (iii) controlled or 50% or more owned by a Sanctioned Person. diff --git a/src/licensedcode/data/rules/generic-export-compliance_1.yml b/src/licensedcode/data/rules/generic-export-compliance_1.yml deleted file mode 100644 index 41ca96e8ca8..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_10.RULE b/src/licensedcode/data/rules/generic-export-compliance_10.RULE index 4c61a55e4ad..2f359652101 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_10.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + Cryptography Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-export-compliance_10.yml b/src/licensedcode/data/rules/generic-export-compliance_10.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_11.RULE b/src/licensedcode/data/rules/generic-export-compliance_11.RULE index ea88f07edc9..30632f4c5bd 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_11.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_11.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + Content may contain encryption software. The country in which you are currently may have restrictions on the import, possession, and use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check the country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-export-compliance_11.yml b/src/licensedcode/data/rules/generic-export-compliance_11.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_12.RULE b/src/licensedcode/data/rules/generic-export-compliance_12.RULE index afee25db362..0acf49eb6ac 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_12.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + Cryptography Export Control diff --git a/src/licensedcode/data/rules/generic-export-compliance_12.yml b/src/licensedcode/data/rules/generic-export-compliance_12.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_13.RULE b/src/licensedcode/data/rules/generic-export-compliance_13.RULE index 1e7b1914f99..54652ad22a0 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_13.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_13.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + Export of this program may require a license from the United States Government. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-export-compliance_13.yml b/src/licensedcode/data/rules/generic-export-compliance_13.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_14.RULE b/src/licensedcode/data/rules/generic-export-compliance_14.RULE index 68f7a10fea6..ec5906e19cb 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_14.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.wassenaar.org/ +--- + Cryptographic Software Notice This distribution includes cryptographic software. The country in diff --git a/src/licensedcode/data/rules/generic-export-compliance_14.yml b/src/licensedcode/data/rules/generic-export-compliance_14.yml deleted file mode 100644 index 0c821af8ac0..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.wassenaar.org/ diff --git a/src/licensedcode/data/rules/generic-export-compliance_15.RULE b/src/licensedcode/data/rules/generic-export-compliance_15.RULE index cf6c8310da3..8214d8f6c51 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_15.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.wassenaar.org/ +--- + Cryptographic Software Notice This distribution includes cryptographic software. The country in diff --git a/src/licensedcode/data/rules/generic-export-compliance_15.yml b/src/licensedcode/data/rules/generic-export-compliance_15.yml deleted file mode 100644 index 0c821af8ac0..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.wassenaar.org/ diff --git a/src/licensedcode/data/rules/generic-export-compliance_16.RULE b/src/licensedcode/data/rules/generic-export-compliance_16.RULE index 309d9019747..cd7e666737c 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_16.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + Export of this software is permitted only after complying with the regulations of the U.S. Deptartment of Commerce relating to the Export of Technical Data. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-export-compliance_16.yml b/src/licensedcode/data/rules/generic-export-compliance_16.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_17.RULE b/src/licensedcode/data/rules/generic-export-compliance_17.RULE index a145b83d4b4..8cbd7305792 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_17.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_17.RULE @@ -1,3 +1,8 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +--- + Export of software employing encryption from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to obtain diff --git a/src/licensedcode/data/rules/generic-export-compliance_17.yml b/src/licensedcode/data/rules/generic-export-compliance_17.yml deleted file mode 100644 index 286d31ef8b5..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes diff --git a/src/licensedcode/data/rules/generic-export-compliance_2.RULE b/src/licensedcode/data/rules/generic-export-compliance_2.RULE index 0599661091c..ff71c30d8c1 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_2.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_2.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-export-compliance +is_license_text: yes +relevance: 100 +--- + You understand that the Software may contain cryptographic functions that may be subject to export restrictions, and you represent and warrant that you are not located in a jurisdiction that is subject to United States economic sanctions (“Prohibited Jurisdiction”), including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, (ii) a person listed on any U.S. government blacklist (to include the List of Specially Designated Nationals and Blocked Persons or the Consolidated Sanctions List administered by the U.S. Department of the Treasury’s Office of Foreign Assets Control, or the Denied Persons List or Entity List administered by the U.S. Department of Commerce) (“Sanctioned Person”), or (iii) controlled or 50% or more owned by a Sanctioned Person. You agree to comply with all export, re-export and import restrictions and regulations of the U.S. Department of Commerce or other agency or authority of the United States or other applicable countries. You also agree not to transfer, or authorize the transfer of, directly or indirectly, of the Software to any Prohibited Jurisdiction, or otherwise in violation of any such restrictions or regulations. \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-export-compliance_2.yml b/src/licensedcode/data/rules/generic-export-compliance_2.yml deleted file mode 100644 index 41ca96e8ca8..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_3.RULE b/src/licensedcode/data/rules/generic-export-compliance_3.RULE index 9b5d7cd7e0d..510ea8f4b05 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_3.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_text: yes +relevance: 100 +--- + Downloading of this software may constitute an export of cryptographic software from the United States of America that is subject to the United States Export Administration Regulations (EAR), 15 CFR 730-774. diff --git a/src/licensedcode/data/rules/generic-export-compliance_3.yml b/src/licensedcode/data/rules/generic-export-compliance_3.yml deleted file mode 100644 index 41ca96e8ca8..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_4.RULE b/src/licensedcode/data/rules/generic-export-compliance_4.RULE index 437cb94fb42..32520b099f7 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_4.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + EXPORT OF THIS SOFTWARE from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization diff --git a/src/licensedcode/data/rules/generic-export-compliance_4.yml b/src/licensedcode/data/rules/generic-export-compliance_4.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_5.RULE b/src/licensedcode/data/rules/generic-export-compliance_5.RULE index 7d1c852b87e..87be33b0230 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_5.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + Downloading of this software may constitute an export of cryptographic software from the United States of America that is subject to the United States Export Administration Regulations (EAR), 15 CFR 730-774. diff --git a/src/licensedcode/data/rules/generic-export-compliance_5.yml b/src/licensedcode/data/rules/generic-export-compliance_5.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_6.RULE b/src/licensedcode/data/rules/generic-export-compliance_6.RULE index d552d93e0bf..df273acb835 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_6.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + The U.S. government prohibits export of encryption source code to certain countries and individuals, including, but not limited to, the countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and diff --git a/src/licensedcode/data/rules/generic-export-compliance_6.yml b/src/licensedcode/data/rules/generic-export-compliance_6.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_7.RULE b/src/licensedcode/data/rules/generic-export-compliance_7.RULE index 8d751c681c0..cdd6e95af35 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_7.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.wassenaar.org/ +--- + Cryptography Notice This distribution includes cryptographic software. The country in diff --git a/src/licensedcode/data/rules/generic-export-compliance_7.yml b/src/licensedcode/data/rules/generic-export-compliance_7.yml deleted file mode 100644 index 0c821af8ac0..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.wassenaar.org/ diff --git a/src/licensedcode/data/rules/generic-export-compliance_8.RULE b/src/licensedcode/data/rules/generic-export-compliance_8.RULE index 9f701db8e59..c0977bed613 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_8.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + Legal This software is subject to the U.S. Export Administration Regulations and other U.S. law, and may not be exported or re-exported to certain countries (Cuba, Iran, Crimea Region of Ukraine, North Korea, Sudan, and Syria) or to persons or entities prohibited from receiving U.S. exports (including Denied Parties, Specially Designated Nationals, and entities on the Bureau of Export Administration Entity List or involved with missile technology or nuclear, chemical or biological weapons). \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-export-compliance_8.yml b/src/licensedcode/data/rules/generic-export-compliance_8.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_9.RULE b/src/licensedcode/data/rules/generic-export-compliance_9.RULE index 643f8f857e6..b72de7f7dda 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_9.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_9.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-export-compliance +is_license_notice: yes +relevance: 100 +--- + This software is subject to the U.S. Export Administration Regulations and other U.S. law, and may not be exported or re-exported to certain countries (Cuba, Iran, Crimea Region of Ukraine, North Korea, Sudan, and Syria) or to persons or entities prohibited from receiving U.S. exports (including Denied Parties, Specially Designated Nationals, and entities on the Bureau of Export Administration Entity List or involved with missile technology or nuclear, chemical or biological weapons). \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-export-compliance_9.yml b/src/licensedcode/data/rules/generic-export-compliance_9.yml deleted file mode 100644 index 64ea21370cd..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-export-compliance_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/generic-export-compliance_and_warranty-disclaimer_1.RULE index f493ce04c9b..efb6edc875c 100644 --- a/src/licensedcode/data/rules/generic-export-compliance_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/generic-export-compliance_and_warranty-disclaimer_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: generic-export-compliance AND warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + Several countries have legal enforcement for export/import/use of cryptographic software. Check it before playing with the kit. We do not intend to be your legalese clearing house diff --git a/src/licensedcode/data/rules/generic-export-compliance_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/generic-export-compliance_and_warranty-disclaimer_1.yml deleted file mode 100644 index 277019a26c7..00000000000 --- a/src/licensedcode/data/rules/generic-export-compliance_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-export-compliance AND warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-tos_1.RULE b/src/licensedcode/data/rules/generic-tos_1.RULE index ccb57428338..6a1be243a07 100644 --- a/src/licensedcode/data/rules/generic-tos_1.RULE +++ b/src/licensedcode/data/rules/generic-tos_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: generic-tos +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.google.com/privacy.html +--- + Google Maps Privacy Notice November 1, 2006 @@ -54,4 +62,4 @@ c/o Google Inc. 1600 Amphitheatre Parkway -Mountain View CA 94043 (USA) +Mountain View CA 94043 (USA) \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-tos_1.yml b/src/licensedcode/data/rules/generic-tos_1.yml deleted file mode 100644 index 0ae2a3387d0..00000000000 --- a/src/licensedcode/data/rules/generic-tos_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: generic-tos -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.google.com/privacy.html diff --git a/src/licensedcode/data/rules/generic-trademark_1.RULE b/src/licensedcode/data/rules/generic-trademark_1.RULE index 71e5ae5c2ef..f7181e4fa2c 100644 --- a/src/licensedcode/data/rules/generic-trademark_1.RULE +++ b/src/licensedcode/data/rules/generic-trademark_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: generic-trademark +is_license_notice: yes +relevance: 100 +--- + For trademark approval or any questions you have about using these trademarks \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-trademark_1.yml b/src/licensedcode/data/rules/generic-trademark_1.yml deleted file mode 100644 index 49ed7c04459..00000000000 --- a/src/licensedcode/data/rules/generic-trademark_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-trademark -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-trademark_2.RULE b/src/licensedcode/data/rules/generic-trademark_2.RULE index 1d175300552..89ba49d815e 100644 --- a/src/licensedcode/data/rules/generic-trademark_2.RULE +++ b/src/licensedcode/data/rules/generic-trademark_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-trademark +is_license_notice: yes +relevance: 100 +notes: See in w3c notices +--- + Non-W3C Trademarks; Member Trademarks The trademarks, logos, and service marks not owned on behalf of the W3C and diff --git a/src/licensedcode/data/rules/generic-trademark_2.yml b/src/licensedcode/data/rules/generic-trademark_2.yml deleted file mode 100644 index 8b27dd104e6..00000000000 --- a/src/licensedcode/data/rules/generic-trademark_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-trademark -is_license_notice: yes -relevance: 100 -notes: See in w3c notices diff --git a/src/licensedcode/data/rules/generic-trademark_3.RULE b/src/licensedcode/data/rules/generic-trademark_3.RULE index e5b26fab194..e79ede174b0 100644 --- a/src/licensedcode/data/rules/generic-trademark_3.RULE +++ b/src/licensedcode/data/rules/generic-trademark_3.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-trademark +is_license_notice: yes +relevance: 100 +--- + This License does not grant any rights to use the trademarks \ No newline at end of file diff --git a/src/licensedcode/data/rules/generic-trademark_3.yml b/src/licensedcode/data/rules/generic-trademark_3.yml deleted file mode 100644 index 49ed7c04459..00000000000 --- a/src/licensedcode/data/rules/generic-trademark_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-trademark -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/generic-trademark_4.RULE b/src/licensedcode/data/rules/generic-trademark_4.RULE index 60512827910..46a1204f234 100644 --- a/src/licensedcode/data/rules/generic-trademark_4.RULE +++ b/src/licensedcode/data/rules/generic-trademark_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: generic-trademark +is_license_notice: yes +--- + Trademarks NVIDIA and the NVIDIA logo are trademarks or registered trademarks of NVIDIA Corporation in the U.S. and other countries. Other company and diff --git a/src/licensedcode/data/rules/generic-trademark_4.yml b/src/licensedcode/data/rules/generic-trademark_4.yml deleted file mode 100644 index 0a9376474dd..00000000000 --- a/src/licensedcode/data/rules/generic-trademark_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: generic-trademark -is_license_notice: yes diff --git a/src/licensedcode/data/rules/genivia-gsoap.RULE b/src/licensedcode/data/rules/genivia-gsoap.RULE index f06724a8b62..4688f249748 100644 --- a/src/licensedcode/data/rules/genivia-gsoap.RULE +++ b/src/licensedcode/data/rules/genivia-gsoap.RULE @@ -1,3 +1,9 @@ +--- +license_expression: genivia-gsoap +is_license_notice: yes +notes: GSOAP Commercial +--- + Standard Commercial Edition: The standard edition of the gSOAP toolset for commercial use. This edition is identical to the standard open source edition, but allows the use of the wsdl2h and soapcpp2 tools for commercial code and document generation. This licens does not have the limitations of the open-source GPL and gSOAP public licenses. The standard commercial edition is licensed with limited warranties. -Enterprise Edition: The enterprise edition of the gSOAP toolset provides the gold standard toolset for your enterprise. The enterprise edition is best suited for organizations that require high reliability, security, and extensive support for WSDL, SOAP, XML, and WS-* protocols. Warranties, software maintenance and support are included. +Enterprise Edition: The enterprise edition of the gSOAP toolset provides the gold standard toolset for your enterprise. The enterprise edition is best suited for organizations that require high reliability, security, and extensive support for WSDL, SOAP, XML, and WS-* protocols. Warranties, software maintenance and support are included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/genivia-gsoap.yml b/src/licensedcode/data/rules/genivia-gsoap.yml deleted file mode 100644 index b8a569efdbb..00000000000 --- a/src/licensedcode/data/rules/genivia-gsoap.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: genivia-gsoap -is_license_notice: yes -notes: GSOAP Commercial diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_1.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_1.RULE index 4948c9af98d..fe37b442d7b 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_1.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_1.yml deleted file mode 100644 index c46b2f71936..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_10.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_10.RULE index b78425b0c21..a09d29bb79a 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.1-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_10.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_10.yml deleted file mode 100644 index b4d7b377462..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_11.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_11.RULE index 7cc72bf6e37..997564ad9f7 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-invariants-only +--- + LICENSE {{GFDL-1.1-invariants-only}} https://spdx.org/licenses/GFDL-1.1-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_11.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_11.yml deleted file mode 100644 index 38d94a33c8b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_12.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_12.RULE index 94ddec9af7f..b80f1032030 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-invariants-only +--- + {{GFDL-1.1-invariants-only}} https://spdx.org/licenses/GFDL-1.1-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_12.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_12.yml deleted file mode 100644 index 38d94a33c8b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_2.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_2.RULE index d14314f3986..0f5ab0ca4a2 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.1 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_2.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_2.yml deleted file mode 100644 index c46b2f71936..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_3.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_3.RULE index e80ea55ad70..075267685f7 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.1-invariants-only GNU Free Documentation License v1.1 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_3.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_3.yml deleted file mode 100644 index c46b2f71936..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_4.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_4.RULE index e85ebea706d..4fdc211aa2f 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 only - invariants GFDL-1.1-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_4.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_4.yml deleted file mode 100644 index c46b2f71936..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_5.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_5.RULE index ba61fa82894..5afc241f367 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.1-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_5.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_5.yml deleted file mode 100644 index 1b3c0df81e1..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_6.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_6.RULE index 08a958fbf36..7cc2565957f 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.1 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_6.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_6.yml deleted file mode 100644 index 1b3c0df81e1..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_7.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_7.RULE index 7b69130bff2..24b8b2610e6 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.1-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_7.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_7.yml deleted file mode 100644 index 1b3c0df81e1..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_8.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_8.RULE index a85cf1b79a0..f778f446a69 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.1-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_8.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_8.yml deleted file mode 100644 index f268dfd8358..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index c6f35f0b152..f45248dfbdf 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.1-invariants-only +--- + https://licenses.nuget.org/GFDL-1.1-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.yml deleted file mode 100644 index 1d00f0ce952..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-only_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.1-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_1.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_1.RULE index 1cf8c9b4362..eeee0978ed7 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_1.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_1.yml deleted file mode 100644 index 73b81b8e43e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_10.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_10.RULE index c2a60f13ef2..112553aad60 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.1-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_10.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_10.yml deleted file mode 100644 index 813ae8da632..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_11.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_11.RULE index 87b8edb0228..f5be96b2f09 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-invariants-or-later +--- + {{GFDL-1.1-invariants-or-later}} https://spdx.org/licenses/GFDL-1.1-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_11.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_11.yml deleted file mode 100644 index cd606fca210..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_12.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_12.RULE index ecd74a3785d..3c4552dfbad 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-invariants-or-later +--- + LICENSE {{GFDL-1.1-invariants-or-later}} https://spdx.org/licenses/GFDL-1.1-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_12.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_12.yml deleted file mode 100644 index cd606fca210..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_2.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_2.RULE index bf8c99edfdb..e639ca2059c 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.1 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_2.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_2.yml deleted file mode 100644 index 73b81b8e43e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_3.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_3.RULE index a5bd7e1730c..820d9986e7e 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.1-invariants-or-later GNU Free Documentation License v1.1 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_3.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_3.yml deleted file mode 100644 index 73b81b8e43e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_4.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_4.RULE index ab41b6a8977..405b8612a7d 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 or later - invariants GFDL-1.1-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_4.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_4.yml deleted file mode 100644 index 73b81b8e43e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_5.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_5.RULE index 3608667f7c6..e43309eb4b3 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.1-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_5.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_5.yml deleted file mode 100644 index 2d11cb6bb73..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_6.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_6.RULE index 0383a02354d..93467e66d1b 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.1 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_6.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_6.yml deleted file mode 100644 index 2d11cb6bb73..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_7.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_7.RULE index e695e35bb38..c65b68c84f9 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.1-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_7.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_7.yml deleted file mode 100644 index 2d11cb6bb73..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_8.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_8.RULE index b3826d7f6cf..e5a7e45981d 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.1-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_8.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_8.yml deleted file mode 100644 index 8d1604565d3..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_9.RULE b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_9.RULE index 97dfedfb03f..508fcc203f7 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.1-invariants-or-later +--- + https://licenses.nuget.org/GFDL-1.1-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_9.yml b/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_9.yml deleted file mode 100644 index 521f7332e8a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-invariants-or-later_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.1-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_1.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_1.RULE index 5fa12d375fa..919040066cc 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_1.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_1.yml deleted file mode 100644 index 24b3137655d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_10.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_10.RULE index 5f38f378166..20312499493 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.1-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_10.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_10.yml deleted file mode 100644 index 166b0a27f94..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_11.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_11.RULE index 29ee42e96a0..7b758ebb94c 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-no-invariants-only +--- + {{GFDL-1.1-no-invariants-only}} https://spdx.org/licenses/GFDL-1.1-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_11.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_11.yml deleted file mode 100644 index bf900665b6b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_12.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_12.RULE index 5bda9a290ec..d56c92fd470 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-no-invariants-only +--- + LICENSE {{GFDL-1.1-no-invariants-only}} https://spdx.org/licenses/GFDL-1.1-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_12.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_12.yml deleted file mode 100644 index bf900665b6b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_2.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_2.RULE index 36b74fa804d..8bcb6eb0721 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.1 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_2.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_2.yml deleted file mode 100644 index 24b3137655d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_3.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_3.RULE index 3b22818974c..aafb398c259 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.1-no-invariants-only GNU Free Documentation License v1.1 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_3.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_3.yml deleted file mode 100644 index 24b3137655d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_4.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_4.RULE index fd99569ed99..77730ebd2ca 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 only - no invariants GFDL-1.1-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_4.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_4.yml deleted file mode 100644 index 24b3137655d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_5.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_5.RULE index 2065507d831..1be6233e4c1 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.1-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_5.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_5.yml deleted file mode 100644 index b842007f6ce..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_6.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_6.RULE index 716a69ddde9..f305d02722f 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.1 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_6.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_6.yml deleted file mode 100644 index b842007f6ce..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_7.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_7.RULE index 89e3180fc1e..465bccf9e10 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.1-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_7.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_7.yml deleted file mode 100644 index b842007f6ce..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_8.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_8.RULE index d80f0ce50e3..7edfa643098 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.1-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_8.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_8.yml deleted file mode 100644 index 87e50427609..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index cbf62305774..a0f7f40c955 100644 --- 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 @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.1-no-invariants-only +--- + https://licenses.nuget.org/GFDL-1.1-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_9.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_9.yml deleted file mode 100644 index b539ce3caed..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-only_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.1-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_1.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_1.RULE index 12de775ba8c..a8060c6956e 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_1.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_1.yml deleted file mode 100644 index f10866a006e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_10.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_10.RULE index 85fd4f526d5..aad39693f68 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.1-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_10.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_10.yml deleted file mode 100644 index af8f5d53893..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_11.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_11.RULE index 5e8c9a94ac5..a6498d1bd93 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_11.RULE @@ -1 +1,8 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later +--- + LICENSE {{GFDL-1.1-no-invariants-or-later}} https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_11.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_11.yml deleted file mode 100644 index 332ef87a1be..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_12.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_12.RULE index 3ee0bfc7c81..955c106bc6b 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_12.RULE @@ -1 +1,8 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later +--- + {{GFDL-1.1-no-invariants-or-later}} https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_12.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_12.yml deleted file mode 100644 index 332ef87a1be..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_2.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_2.RULE index fdaadf29340..abd33ceaab1 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.1 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_2.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_2.yml deleted file mode 100644 index f10866a006e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_3.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_3.RULE index b9f6b8e3798..c36abbcdb9a 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.1-no-invariants-or-later GNU Free Documentation License v1.1 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_3.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_3.yml deleted file mode 100644 index f10866a006e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_4.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_4.RULE index 08842034ba9..927dc442e26 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 or later - no invariants GFDL-1.1-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_4.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_4.yml deleted file mode 100644 index f10866a006e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_5.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_5.RULE index db5ae7071b2..01faa6fe67f 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.1-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_5.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_5.yml deleted file mode 100644 index 6a1fe016bfc..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_6.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_6.RULE index 2b4db783640..a9b0b99ee2c 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.1 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_6.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_6.yml deleted file mode 100644 index 6a1fe016bfc..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_7.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_7.RULE index 8a4292b4766..281f3d773c3 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.1-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_7.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_7.yml deleted file mode 100644 index 6a1fe016bfc..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_8.RULE b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_8.RULE index 558bff6a5e3..cc9a661fb35 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.1-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_8.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_8.yml deleted file mode 100644 index beaa52fd225..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index 34f715a87d8..9e401bb19c9 100644 --- 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 @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-no-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.1-no-invariants-or-later +--- + https://licenses.nuget.org/GFDL-1.1-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_9.yml b/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_9.yml deleted file mode 100644 index 34d84c063ec..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-no-invariants-or-later_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-no-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.1-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus.RULE index 288ce086dd4..e0dba1e2812 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/fdl.html +--- + http://www.gnu.org/copyleft/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus.yml b/src/licensedcode/data/rules/gfdl-1.1-plus.yml deleted file mode 100644 index c8fe1bee88d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_1.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_1.RULE index 8fc2521fe83..5d5e46fb13b 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +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. A copy of the license is included in the chapter entitled diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_1.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_1.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_10.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_10.RULE index 7b6fcbfc233..26900c043ed 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_10.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_10.yml deleted file mode 100644 index e92d28d4589..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_11.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_11.RULE index d0f6e1764a8..d5ec28384ff 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +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 @@ -8,5 +13,4 @@ (a) The FSF's Back-Cover Text is: "You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by - the Free Software Foundation raise funds for GNU development." - + the Free Software Foundation raise funds for GNU development." \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_11.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_11.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_12.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_12.RULE index d5dd2b5790d..7efa0b0c541 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +minimum_coverage: 90 +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published @@ -11,4 +17,4 @@ section 6 of the license. On Debian systems , the complete text of the GNU Free Documentation - License can be found in `/usr/share/common-licenses/GFDL'. + License can be found in `/usr/share/common-licenses/GFDL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_12.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_12.yml deleted file mode 100644 index d1a6d143c4d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_13.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_13.RULE index 0f905d19d33..b18fd5e8374 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_13.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +--- + "GFDL1.1": The GNU Free Documentation License, version 1.1 or (at your option) higher. The listed documents use the GFDL with no Invariant Sections, no Front-Cover Texts, and no Back-Cover diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_13.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_13.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_14.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_14.RULE index 9e79936c6e2..7a663ac850d 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_14.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_14.RULE @@ -1,7 +1,12 @@ +--- +license_expression: gfdl-1.1-plus +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, with the Front-Cover texts being "A GNU Manual," and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled -"GNU Free Documentation License." +"GNU Free Documentation License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_14.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_14.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_15.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_15.RULE index db34f32d5b8..764a3e69e6f 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_15.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_15.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +--- + Any part of this program may be used in documents licensed under the GNU Free Documentation License, Version 1.1 or any later version -published by the Free Software Foundation. +published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_15.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_15.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_16.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_16.RULE index 585c0e37905..9d19bf007f8 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_16.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +--- + Copying This Manual -* GNU Free Documentation License:: License for copying this manual +* GNU Free Documentation License:: License for copying this manual \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_16.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_16.yml deleted file mode 100644 index e92d28d4589..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_17.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_17.RULE index 51d96857177..07e0ee13d44 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_17.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_17.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/fdl.html +--- + http://www.gnu.org/licenses/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_17.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_17.yml deleted file mode 100644 index 2b74165031b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_18.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_18.RULE index cf5a95b4024..fa657e50328 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_18.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_18.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/fdl.html +--- + https://www.gnu.org/licenses/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_18.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_18.yml deleted file mode 100644 index df84547f851..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_19.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_19.RULE index 7b9c763f6d9..1ff3bc70226 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_19.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_19.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are @@ -9,4 +14,4 @@ any later version published by the Free Software Foundation; with the Invariant Sections being "GNU General Public License" and "GNU Free Documentation License", with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section -entitled "GNU Free Documentation License". +entitled "GNU Free Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_19.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_19.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_2.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_2.RULE index 423e379ede2..fd185904af6 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +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 the diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_2.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_2.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_20.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_20.RULE index a87293bd325..795e5de0583 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_20.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_20.RULE @@ -1 +1,7 @@ -license: gfdl +--- +license_expression: gfdl-1.1-plus +is_license_tag: yes +relevance: 100 +--- + +license: gfdl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_20.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_20.yml deleted file mode 100644 index 61e5e2390bc..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_21.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_21.RULE index 89a7576e9e1..d37061f1ef2 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_21.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_21.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/fdl.html +--- + License: GNU Free Documentation License (FDL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_21.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_21.yml deleted file mode 100644 index 254f8158102..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_22.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_22.RULE index 380c506ba4b..6732d3c2634 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_22.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_22.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/copyleft/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_22.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_22.yml deleted file mode 100644 index e92d28d4589..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_23.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_23.RULE index 955733feae5..79baf5eb105 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_23.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_23.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/copyleft/fdl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_23.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_23.yml deleted file mode 100644 index e92d28d4589..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_24.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_24.RULE index 0a2bff0eaf9..5fa31797ed3 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_24.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_24.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/fdl.html +--- + https://www.gnu.org/copyleft/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_24.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_24.yml deleted file mode 100644 index c79ed9009a3..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_25.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_25.RULE index cb31198707d..22fe8b0de18 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_25.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +--- + This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_25.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_25.yml deleted file mode 100644 index 0f721232a92..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE index 99d1325ef0e..236ba4550c0 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_26.RULE @@ -1,3 +1,9 @@ +--- +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; diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_26.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_26.yml deleted file mode 100644 index 0f721232a92..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_27.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_27.RULE index 84dbb6c5e89..b0cfe275854 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_27.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_27.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING.DOC +--- + This document is released under the terms of the @acronym{GNU} Free Documentation License as published by the Free Software Foundation; either version 1.1, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_27.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_27.yml deleted file mode 100644 index 5fb4148c801..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING.DOC diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_28.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_28.RULE index 6555cb7e510..93d33a366ab 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_28.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_28.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +--- + This file is distributed under GFDL 1.1 or any later version published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_28.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_28.yml deleted file mode 100644 index 0f721232a92..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_29.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_29.RULE index 3d6b383d06c..9419e3faecb 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_29.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_29.RULE @@ -1,3 +1,9 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_29.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_29.yml deleted file mode 100644 index 0f721232a92..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_3.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_3.RULE index ef2c49e4d79..f4e917fbf13 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_3.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/fdl.html +--- + http://www.fsf.org/licensing/licenses/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_3.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_3.yml deleted file mode 100644 index ce2713c1ba5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_30.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_30.RULE index 741a397dac2..c9f53bd002c 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_30.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_30.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 99 +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version @value{FDL_VERSION} or any later version published by the Free diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_30.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_30.yml deleted file mode 100644 index 70afbd38cda..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_31.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_31.RULE index 06c09d0c0ac..af17af25735 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_31.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_31.RULE @@ -1 +1,10 @@ -On Debian systems, the complete text of the GNU Free Documentation License can be found in `/usr/share/common-licenses/GFDL-3'. +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +minimum_coverage: 95 +referenced_filenames: + - /usr/share/common-licenses/GFDL-3 +notes: GFDL-3 deosn't exist, GFDL-1.3 does. +--- + +On Debian systems, the complete text of the GNU Free Documentation License can be found in `/usr/share/common-licenses/GFDL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_31.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_31.yml deleted file mode 100644 index 56e8f3739a8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -minimum_coverage: 95 -referenced_filenames: - - /usr/share/common-licenses/GFDL-3 -notes: GFDL-3 deosn't exist, GFDL-1.3 does. diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_32.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_32.RULE index 1caa1de1798..c012a621072 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_32.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_32.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +minimum_coverage: 90 +--- + The documentation is released under the GNU Free Documentation License (GFDL) and it has cover texts. As such, it has been determined not to meet the Debian Free Software Guidelines, and is not shipped in the -debian packages. - +debian packages. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_32.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_32.yml deleted file mode 100644 index d1a6d143c4d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_33.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_33.RULE index 58d1889d8a3..5484444d44e 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_33.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_33.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/fdl.html +--- + 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; --> diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_33.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_33.yml deleted file mode 100644 index 9cb1f40f5fd..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_34.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_34.RULE index a7f1475d0e2..c4eba5588a1 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_34.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_34.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +--- + The documentation is distributed under the terms of the GNU Free Documentation License (FDL): \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_34.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_34.yml deleted file mode 100644 index 0f721232a92..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_35.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_35.RULE index 05dfb0a69bf..e46dd5de4ed 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_35.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_35.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License for the documentation: Permission is granted to copy, distribute and/or modify this diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_35.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_35.yml deleted file mode 100644 index 9ec72576d8b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_36.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_36.RULE index 2cf7a57bf29..65e76d05ab4 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_36.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_36.RULE @@ -1 +1,11 @@ -On Debian GNU/Linux systems, the complete text of the GNU Free Documentation License can be found in `/usr/share/common-licenses/GFDL-3'. +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - /usr/share/common-licenses/GFDL-3 +notes: GFDL-3 deosn't exist, GFDL-1.3 does. +--- + +On Debian GNU/Linux systems, the complete text of the GNU Free Documentation License can be found in `/usr/share/common-licenses/GFDL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_36.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_36.yml deleted file mode 100644 index 08dc2a4b756..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_36.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - /usr/share/common-licenses/GFDL-3 -notes: GFDL-3 deosn't exist, GFDL-1.3 does. diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_37.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_37.RULE index 8ba4e5ad31f..f7bef3554c0 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_37.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_37.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/fdl.html +--- + 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; --> diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_37.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_37.yml deleted file mode 100644 index f9b17eb84d6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_38.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_38.RULE index e0ffc243249..4f4f81b6fac 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_38.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_38.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License for the documentation: Permission is granted to copy, distribute and/or modify this diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_38.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_38.yml deleted file mode 100644 index 9ec72576d8b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_38.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_39.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_39.RULE index 02e02c33263..3934a5b643d 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_39.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_39.RULE @@ -1 +1,11 @@ -On Debian systems, the text of the GNU Free Documentation License can be found in `/usr/share/common-licenses/GFDL-3'. +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - /usr/share/common-licenses/GFDL-3 +notes: GFDL-3 deosn't exist, GFDL-1.3 does. +--- + +On Debian systems, the text of the GNU Free Documentation License can be found in `/usr/share/common-licenses/GFDL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_39.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_39.yml deleted file mode 100644 index 08dc2a4b756..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_39.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - /usr/share/common-licenses/GFDL-3 -notes: GFDL-3 deosn't exist, GFDL-1.3 does. diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_4.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_4.RULE index 01e7490faaa..cdbd48300cd 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +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 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_4.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_4.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_40.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_40.RULE index 76a311c5406..820f298e187 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_40.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_40.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_40.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_40.yml deleted file mode 100644 index 2395e1598f0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_40.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_41.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_41.RULE index 87d368ecdfd..cf4192e3ccb 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_41.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_41.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_41.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_41.yml deleted file mode 100644 index 2395e1598f0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_42.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_42.RULE index 9f15da059c9..6f27958a607 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_42.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_42.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.1-or-later GNU Free Documentation License v1.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_42.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_42.yml deleted file mode 100644 index 2395e1598f0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_42.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_43.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_43.RULE index 5bbad75bd93..2e15eff49a2 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_43.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_43.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 or later GFDL-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_43.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_43.yml deleted file mode 100644 index 2395e1598f0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_43.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_44.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_44.RULE index c3fc2accc09..f8c2f52bce6 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_44.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_44.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_44.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_44.yml deleted file mode 100644 index 9f8caf864ca..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_44.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_45.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_45.RULE index 6f414c00d0d..49d73394619 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_45.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_45.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_45.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_45.yml deleted file mode 100644 index 9f8caf864ca..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_45.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_46.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_46.RULE index f1cac34be5e..119eac526c1 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_46.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_46.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_46.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_46.yml deleted file mode 100644 index 9f8caf864ca..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_46.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_47.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_47.RULE index 2e5ced05b84..80eb5a9964b 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_47.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_47.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/GNU_Free_Documentation_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_47.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_47.yml deleted file mode 100644 index b6f48da2566..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_48.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_48.RULE index 176754b506d..594d6e09a85 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_48.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_48.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.1-or-later +--- + https://licenses.nuget.org/GFDL-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_48.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_48.yml deleted file mode 100644 index 591d206b520..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.1-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_49.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_49.RULE index 0d15d55f472..03f94d46673 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_49.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_49.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_49.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_49.yml deleted file mode 100644 index e92d28d4589..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_5.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_5.RULE index fe43eaacbbb..0b6540842fa 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +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; diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_5.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_5.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_50.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_50.RULE index 611d991e8ef..2b9436bab98 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_50.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_50.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-or-later +--- + LICENSE {{GFDL-1.1-or-later}} https://spdx.org/licenses/GFDL-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_50.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_50.yml deleted file mode 100644 index 5c594cd0165..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_51.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_51.RULE index 5e1938014c3..8674ca7648e 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_51.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_51.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1 +--- + {{GFDL-1.1}} https://spdx.org/licenses/GFDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_51.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_51.yml deleted file mode 100644 index 92f7564c679..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_52.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_52.RULE index 05ce12cae92..97d1602b5b6 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_52.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_52.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-or-later +--- + {{GFDL-1.1-or-later}} https://spdx.org/licenses/GFDL-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_52.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_52.yml deleted file mode 100644 index 5c594cd0165..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_53.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_53.RULE index b5607629948..1a3668a7694 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_53.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_53.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1 +--- + LICENSE {{GFDL-1.1+}} https://spdx.org/licenses/GFDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_53.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_53.yml deleted file mode 100644 index 92f7564c679..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_54.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_54.RULE index 9d62c94caa7..963e9518145 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_54.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_54.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1 +--- + {{GFDL-1.1+}} https://spdx.org/licenses/GFDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_54.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_54.yml deleted file mode 100644 index 92f7564c679..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_6.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_6.RULE index b091a88b084..64c543916cd 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +minimum_coverage: 90 +--- + License for the documentation: Permission is granted to copy, distribute and/or modify this diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_6.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_6.yml deleted file mode 100644 index d1a6d143c4d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_7.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_7.RULE index 4c208ae5f36..401005ce504 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +--- + The GNU Free Documentation License, version 1.1 or (at your option) higher. The listed documents use the GFDL with no Invariant Sections, no Front-Cover Texts, and no Back-Cover diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_7.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_7.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_8.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_8.RULE index a5affd9dc28..1c099b2901d 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_8.RULE @@ -1,5 +1,12 @@ +--- +license_expression: gfdl-1.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + 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 file COPYING. +A copy of the license is included in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_8.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_8.yml deleted file mode 100644 index cc0b1f07e78..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_9.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_9.RULE index f24f8060f0e..98cd33088b5 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.1-plus +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 the diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_9.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_9.yml deleted file mode 100644 index 99a5949331a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_debian.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_debian.RULE index eeb5ab335b9..7bca6a71568 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_debian.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_debian.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 100 +--- + - GFDL: /usr/share/common-licenses/GFDL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_debian.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_debian.yml deleted file mode 100644 index e92d28d4589..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_debian.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_1.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_1.RULE index 16e9a7d6119..9f0e83d83e7 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus OR cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 + - http://www.gnu.org/copyleft/fdl.html +--- + GFDL (http://www.gnu.org/copyleft/fdl.html) or CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_1.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_1.yml deleted file mode 100644 index da80d9aa359..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus OR cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 - - http://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_2.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_2.RULE index a85bb094b47..3157588712f 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus OR cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0 + - https://www.gnu.org/copyleft/fdl.html +--- + GFDL (https://www.gnu.org/copyleft/fdl.html) or CC-BY-SA-3.0 (https://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_2.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_2.yml deleted file mode 100644 index 34bbb3990a2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus OR cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/3.0 - - https://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_3.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_3.RULE index 2731d0d3035..a4eaa5e243d 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus OR cc-by-sa-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 + - https://www.gnu.org/copyleft/fdl.html +--- + GFDL (https://www.gnu.org/copyleft/fdl.html) or CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_3.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_3.yml deleted file mode 100644 index 0906fd56e3a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_or_cc-by-sa-3.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus OR cc-by-sa-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 - - https://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_url_1.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_url_1.RULE index b901635bfb5..eeeaa218c3a 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_url_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.1-or-later +--- + https://spdx.org/licenses/gfdl-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_url_1.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_url_1.yml deleted file mode 100644 index 86d276bd3c2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.1-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_url_2.RULE b/src/licensedcode/data/rules/gfdl-1.1-plus_url_2.RULE index 798d50392ce..167ede47b0e 100644 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_url_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.1-or-later.html +--- + https://spdx.org/licenses/gfdl-1.1-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1-plus_url_2.yml b/src/licensedcode/data/rules/gfdl-1.1-plus_url_2.yml deleted file mode 100644 index 1c8f16c8c6c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.1-or-later.html diff --git a/src/licensedcode/data/rules/gfdl-1.1_1.RULE b/src/licensedcode/data/rules/gfdl-1.1_1.RULE index a4926500f3f..57497cc8ef4 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gfdl-1.1 +is_license_text: yes +minimum_coverage: 30 +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.1, March 2000 diff --git a/src/licensedcode/data/rules/gfdl-1.1_1.yml b/src/licensedcode/data/rules/gfdl-1.1_1.yml deleted file mode 100644 index abdeee6582f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gfdl-1.1 -is_license_text: yes -minimum_coverage: 30 -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.1_10.RULE b/src/licensedcode/data/rules/gfdl-1.1_10.RULE index 579227c638e..7b54dd74561 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_10.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 90 +minimum_coverage: 99 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public - License, to permit their use in free software. + License, to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_10.yml b/src/licensedcode/data/rules/gfdl-1.1_10.yml deleted file mode 100644 index a344fa90dcd..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 90 -minimum_coverage: 99 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1_11.RULE b/src/licensedcode/data/rules/gfdl-1.1_11.RULE index 1e55fb79380..a99e9322532 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_11.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.1 +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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_11.yml b/src/licensedcode/data/rules/gfdl-1.1_11.yml deleted file mode 100644 index be154363ad5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_12.RULE b/src/licensedcode/data/rules/gfdl-1.1_12.RULE index 94a5f35965d..c1953f56364 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1 +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 diff --git a/src/licensedcode/data/rules/gfdl-1.1_12.yml b/src/licensedcode/data/rules/gfdl-1.1_12.yml deleted file mode 100644 index be154363ad5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_13.RULE b/src/licensedcode/data/rules/gfdl-1.1_13.RULE index cbbe746d2c7..ce7626cbfb9 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_13.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1 +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 published by the Free Software Foundation; diff --git a/src/licensedcode/data/rules/gfdl-1.1_13.yml b/src/licensedcode/data/rules/gfdl-1.1_13.yml deleted file mode 100644 index be154363ad5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_14.RULE b/src/licensedcode/data/rules/gfdl-1.1_14.RULE index 650dc1b167c..deaca489bc9 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_14.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1 +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; diff --git a/src/licensedcode/data/rules/gfdl-1.1_14.yml b/src/licensedcode/data/rules/gfdl-1.1_14.yml deleted file mode 100644 index be154363ad5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_15.RULE b/src/licensedcode/data/rules/gfdl-1.1_15.RULE index 1b7132aec94..b062786b5f4 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_15.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1 +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 published by the Free Software Foundation; diff --git a/src/licensedcode/data/rules/gfdl-1.1_15.yml b/src/licensedcode/data/rules/gfdl-1.1_15.yml deleted file mode 100644 index be154363ad5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_16.RULE b/src/licensedcode/data/rules/gfdl-1.1_16.RULE index 10e12619ba0..0c4c9ecfdda 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_16.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1 +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 diff --git a/src/licensedcode/data/rules/gfdl-1.1_16.yml b/src/licensedcode/data/rules/gfdl-1.1_16.yml deleted file mode 100644 index be154363ad5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_17.RULE b/src/licensedcode/data/rules/gfdl-1.1_17.RULE index 1005e2cd4af..d31844defa3 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_17.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_17.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1 +is_license_notice: yes +relevance: 100 +--- + LICENSE : GFDL 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_17.yml b/src/licensedcode/data/rules/gfdl-1.1_17.yml deleted file mode 100644 index be154363ad5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_18.RULE b/src/licensedcode/data/rules/gfdl-1.1_18.RULE index ce564d7305c..4a66af22b4b 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_18.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_18.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gfdl-1.1 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.1, March 2000 @@ -325,4 +337,4 @@ following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not -as a draft) by the Free Software Foundation. +as a draft) by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_18.yml b/src/licensedcode/data/rules/gfdl-1.1_18.yml deleted file mode 100644 index 1d7be25cbe5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_18.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gfdl-1.1 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.1_19.RULE b/src/licensedcode/data/rules/gfdl-1.1_19.RULE index 8d16e2c060b..a8e4d2f0da1 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_19.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_19.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 90 +minimum_coverage: 99 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public - License, to permit their use in free software. + License, to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_19.yml b/src/licensedcode/data/rules/gfdl-1.1_19.yml deleted file mode 100644 index b6bf20d5c48..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 90 -minimum_coverage: 99 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1_2.RULE b/src/licensedcode/data/rules/gfdl-1.1_2.RULE index 725e44154f5..b9e3cbda1e3 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +--- + GFDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_2.yml b/src/licensedcode/data/rules/gfdl-1.1_2.yml deleted file mode 100644 index 0df361c73c6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_20.RULE b/src/licensedcode/data/rules/gfdl-1.1_20.RULE index 570803da39a..1799c0d7af7 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_20.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_20.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/fdl-1.1.txt +--- + https://www.gnu.org/licenses/fdl-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_20.yml b/src/licensedcode/data/rules/gfdl-1.1_20.yml deleted file mode 100644 index 79fd6d61ef7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/fdl-1.1.txt diff --git a/src/licensedcode/data/rules/gfdl-1.1_21.RULE b/src/licensedcode/data/rules/gfdl-1.1_21.RULE index cf403eac73c..2d9450e8dfa 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_21.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_21.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gfdl-1.1 +is_license_text: yes +relevance: 100 +minimum_coverage: 30 +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.1, March 2000 diff --git a/src/licensedcode/data/rules/gfdl-1.1_21.yml b/src/licensedcode/data/rules/gfdl-1.1_21.yml deleted file mode 100644 index 9c2ae03dc72..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_21.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gfdl-1.1 -is_license_text: yes -relevance: 100 -minimum_coverage: 30 -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.1_22.RULE b/src/licensedcode/data/rules/gfdl-1.1_22.RULE index 2715481032f..7142bc0cbcf 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_22.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_22.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +--- + The GNU Free Documentation License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_22.yml b/src/licensedcode/data/rules/gfdl-1.1_22.yml deleted file mode 100644 index 0df361c73c6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_23.RULE b/src/licensedcode/data/rules/gfdl-1.1_23.RULE index 873244b6d7a..40d4ad9455c 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_23.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_23.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_23.yml b/src/licensedcode/data/rules/gfdl-1.1_23.yml deleted file mode 100644 index 0df361c73c6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_24.RULE b/src/licensedcode/data/rules/gfdl-1.1_24.RULE index 1c3441dbc32..33a3ec83c90 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_24.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_24.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GFDL-1.1 GNU Free Documentation License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_24.yml b/src/licensedcode/data/rules/gfdl-1.1_24.yml deleted file mode 100644 index 6e7598c2634..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.1_25.RULE b/src/licensedcode/data/rules/gfdl-1.1_25.RULE index 6406d359163..b5531d5ef34 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_25.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_25.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Free Documentation License v1.1 GFDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_25.yml b/src/licensedcode/data/rules/gfdl-1.1_25.yml deleted file mode 100644 index 6e7598c2634..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.1_26.RULE b/src/licensedcode/data/rules/gfdl-1.1_26.RULE index 5dee4a49a7f..3ba26cbc04f 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_26.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_26.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GFDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_26.yml b/src/licensedcode/data/rules/gfdl-1.1_26.yml deleted file mode 100644 index 6e7598c2634..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.1_27.RULE b/src/licensedcode/data/rules/gfdl-1.1_27.RULE index 5e66d24dcd7..c26beb0c275 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_27.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_27.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Free Documentation License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_27.yml b/src/licensedcode/data/rules/gfdl-1.1_27.yml deleted file mode 100644 index 6e7598c2634..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.1_28.RULE b/src/licensedcode/data/rules/gfdl-1.1_28.RULE index 28b7393e124..b92ee9f2c4a 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_28.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_28.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_28.yml b/src/licensedcode/data/rules/gfdl-1.1_28.yml deleted file mode 100644 index e1c6be1c79c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1_29.RULE b/src/licensedcode/data/rules/gfdl-1.1_29.RULE index e2c97b128c0..82f21217c50 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_29.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_29.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_29.yml b/src/licensedcode/data/rules/gfdl-1.1_29.yml deleted file mode 100644 index e1c6be1c79c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1_3.RULE b/src/licensedcode/data/rules/gfdl-1.1_3.RULE index ebacc831a00..c0b9a27a4c8 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_3.RULE @@ -1 +1,8 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + "GFDL1.1" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_3.yml b/src/licensedcode/data/rules/gfdl-1.1_3.yml deleted file mode 100644 index c7764afeb4f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_30.RULE b/src/licensedcode/data/rules/gfdl-1.1_30.RULE index adc75e3ef04..7323e0d377c 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_30.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_30.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.1-only GNU Free Documentation License v1.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_30.yml b/src/licensedcode/data/rules/gfdl-1.1_30.yml deleted file mode 100644 index e1c6be1c79c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1_31.RULE b/src/licensedcode/data/rules/gfdl-1.1_31.RULE index 679e57dbad9..17c608ab6a6 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_31.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_31.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.1 only GFDL-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_31.yml b/src/licensedcode/data/rules/gfdl-1.1_31.yml deleted file mode 100644 index e1c6be1c79c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1_32.RULE b/src/licensedcode/data/rules/gfdl-1.1_32.RULE index 43ed93c1178..f511174c15d 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_32.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_32.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_32.yml b/src/licensedcode/data/rules/gfdl-1.1_32.yml deleted file mode 100644 index 5d5ecf48c8e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1_33.RULE b/src/licensedcode/data/rules/gfdl-1.1_33.RULE index e3374fb8899..bd8f8ad62f9 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_33.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_33.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_33.yml b/src/licensedcode/data/rules/gfdl-1.1_33.yml deleted file mode 100644 index 5d5ecf48c8e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1_34.RULE b/src/licensedcode/data/rules/gfdl-1.1_34.RULE index f926bcc8d40..be1db6c08e1 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_34.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_34.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_34.yml b/src/licensedcode/data/rules/gfdl-1.1_34.yml deleted file mode 100644 index 5d5ecf48c8e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1_35.RULE b/src/licensedcode/data/rules/gfdl-1.1_35.RULE index f0e36486253..c382732046f 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_35.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_35.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_35.yml b/src/licensedcode/data/rules/gfdl-1.1_35.yml deleted file mode 100644 index 5d5ecf48c8e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.1_36.RULE b/src/licensedcode/data/rules/gfdl-1.1_36.RULE index 59c34274d8d..14f464cbdb6 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_36.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_36.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.1-only +--- + https://licenses.nuget.org/GFDL-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_36.yml b/src/licensedcode/data/rules/gfdl-1.1_36.yml deleted file mode 100644 index 54f729a0b94..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.1-only diff --git a/src/licensedcode/data/rules/gfdl-1.1_37.RULE b/src/licensedcode/data/rules/gfdl-1.1_37.RULE index a65369f4515..2ed6121874e 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_37.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_37.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_37.yml b/src/licensedcode/data/rules/gfdl-1.1_37.yml deleted file mode 100644 index 0df361c73c6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_38.RULE b/src/licensedcode/data/rules/gfdl-1.1_38.RULE index c5314996059..74181dbc389 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_38.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_38.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1 +--- + LICENSE {{GFDL-1.1}} https://spdx.org/licenses/GFDL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_38.yml b/src/licensedcode/data/rules/gfdl-1.1_38.yml deleted file mode 100644 index 1074ff0adbc..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1 diff --git a/src/licensedcode/data/rules/gfdl-1.1_39.RULE b/src/licensedcode/data/rules/gfdl-1.1_39.RULE index c144584b7f0..13deef084ff 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_39.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_39.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-only +--- + {{GFDL-1.1-only}} https://spdx.org/licenses/GFDL-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_39.yml b/src/licensedcode/data/rules/gfdl-1.1_39.yml deleted file mode 100644 index 8d29729aea7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-only diff --git a/src/licensedcode/data/rules/gfdl-1.1_4.RULE b/src/licensedcode/data/rules/gfdl-1.1_4.RULE index 44f416db74f..61da3876aa4 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_notice: yes +minimum_coverage: 60 +--- + This document is distributed under the terms of the GNU Free Documentation License, version 1.1. That license is described in the sources for this manual page, but it is not displayed here in order to diff --git a/src/licensedcode/data/rules/gfdl-1.1_4.yml b/src/licensedcode/data/rules/gfdl-1.1_4.yml deleted file mode 100644 index 240d51d3051..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/gfdl-1.1_40.RULE b/src/licensedcode/data/rules/gfdl-1.1_40.RULE index 3541d6065bd..2c8fdebe7a0 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_40.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_40.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.1-only +--- + LICENSE {{GFDL-1.1-only}} https://spdx.org/licenses/GFDL-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_40.yml b/src/licensedcode/data/rules/gfdl-1.1_40.yml deleted file mode 100644 index 8d29729aea7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.1-only diff --git a/src/licensedcode/data/rules/gfdl-1.1_5.RULE b/src/licensedcode/data/rules/gfdl-1.1_5.RULE index afa04dafc47..e5517d9ecf5 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_5.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html +--- + http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_5.yml b/src/licensedcode/data/rules/gfdl-1.1_5.yml deleted file mode 100644 index 096d9b4db2e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.lysator.liu.se/~kjell-e/tekla/linux/security/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.1_6.RULE b/src/licensedcode/data/rules/gfdl-1.1_6.RULE index 33c47d3ee21..2d383fcee07 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License v 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_6.yml b/src/licensedcode/data/rules/gfdl-1.1_6.yml deleted file mode 100644 index 0df361c73c6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_7.RULE b/src/licensedcode/data/rules/gfdl-1.1_7.RULE index 34e33e382cc..0a9970b0369 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_7.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/fdl-1.1.txt +--- + http://www.gnu.org/licenses/fdl-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_7.yml b/src/licensedcode/data/rules/gfdl-1.1_7.yml deleted file mode 100644 index 43557e1748f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/fdl-1.1.txt diff --git a/src/licensedcode/data/rules/gfdl-1.1_8.RULE b/src/licensedcode/data/rules/gfdl-1.1_8.RULE index 561faf73b8c..74c423d7680 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_8.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_8.yml b/src/licensedcode/data/rules/gfdl-1.1_8.yml deleted file mode 100644 index 0df361c73c6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_9.RULE b/src/licensedcode/data/rules/gfdl-1.1_9.RULE index 9dd9096bef6..93273e1b7e5 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_9.yml b/src/licensedcode/data/rules/gfdl-1.1_9.yml deleted file mode 100644 index 0df361c73c6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.1_fr_gnome_1.RULE b/src/licensedcode/data/rules/gfdl-1.1_fr_gnome_1.RULE index ce88ed1c72a..cb0b5b06d7c 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_fr_gnome_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_fr_gnome_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gfdl-1.1 +is_license_notice: yes +notes: plain text conversion with pandoc of desktop-docs/fdl/fr/index.docbook from https://download.gnome.org/sources/gnome-desktop/3.14/gnome-desktop-3.14.2.tar.xz +ignorable_copyrights: + - Copyright (c) ANNEE +ignorable_holders: + - ANNEE +ignorable_urls: + - http://www.gnu.org/copyleft + - http://www.gnu.org/copyleft/ + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/fsf/fsf.html +--- + The GNU Free Documentation License 1.1 in DocBook Licence de Documentation Libre GNU @@ -422,4 +437,4 @@ Si votre Document contient des exemples non triviaux de code programme, nous recommandons de distribuer ces exemples en parallèle sous http://www.gnu.org/copyleft/gpl.html Licence GNU General Public License, qui permet leur usage dans les logiciels -libres. +libres. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_fr_gnome_1.yml b/src/licensedcode/data/rules/gfdl-1.1_fr_gnome_1.yml deleted file mode 100644 index 910e0e1af53..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_fr_gnome_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gfdl-1.1 -is_license_notice: yes -notes: plain text conversion with pandoc of desktop-docs/fdl/fr/index.docbook from https://download.gnome.org/sources/gnome-desktop/3.14/gnome-desktop-3.14.2.tar.xz -ignorable_copyrights: - - Copyright (c) ANNEE -ignorable_holders: - - ANNEE -ignorable_urls: - - http://www.gnu.org/copyleft - - http://www.gnu.org/copyleft/ - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/fsf/fsf.html diff --git a/src/licensedcode/data/rules/gfdl-1.1_ft_no_add.RULE b/src/licensedcode/data/rules/gfdl-1.1_ft_no_add.RULE index c232c4264e3..dc3b9886c79 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_ft_no_add.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_ft_no_add.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gfdl-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.1, March 2000 @@ -325,4 +336,4 @@ following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not -as a draft) by the Free Software Foundation. +as a draft) by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_ft_no_add.yml b/src/licensedcode/data/rules/gfdl-1.1_ft_no_add.yml deleted file mode 100644 index efa9fdbe58c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_ft_no_add.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gfdl-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.1_url_1.RULE b/src/licensedcode/data/rules/gfdl-1.1_url_1.RULE index 081e5f91c45..aae89cc9f34 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.1-only +--- + https://spdx.org/licenses/gfdl-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_url_1.yml b/src/licensedcode/data/rules/gfdl-1.1_url_1.yml deleted file mode 100644 index 50d02aca838..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.1-only diff --git a/src/licensedcode/data/rules/gfdl-1.1_url_2.RULE b/src/licensedcode/data/rules/gfdl-1.1_url_2.RULE index 77537c5688f..8f661455df7 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.1-only.html +--- + https://spdx.org/licenses/gfdl-1.1-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_url_2.yml b/src/licensedcode/data/rules/gfdl-1.1_url_2.yml deleted file mode 100644 index 818dfb75fb5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.1-only.html diff --git a/src/licensedcode/data/rules/gfdl-1.1_url_glc_126.RULE b/src/licensedcode/data/rules/gfdl-1.1_url_glc_126.RULE index 7284bbacfb8..eba4a07f0c4 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_url_glc_126.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_url_glc_126.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +--- + http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_url_glc_126.yml b/src/licensedcode/data/rules/gfdl-1.1_url_glc_126.yml deleted file mode 100644 index c427bbe2c09..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_url_glc_126.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.1.txt diff --git a/src/licensedcode/data/rules/gfdl-1.1_url_glc_127.RULE b/src/licensedcode/data/rules/gfdl-1.1_url_glc_127.RULE index 116faf09322..52367dd54bb 100644 --- a/src/licensedcode/data/rules/gfdl-1.1_url_glc_127.RULE +++ b/src/licensedcode/data/rules/gfdl-1.1_url_glc_127.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt +--- + https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_url_glc_127.yml b/src/licensedcode/data/rules/gfdl-1.1_url_glc_127.yml deleted file mode 100644 index bd47170971b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.1_url_glc_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_1.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_1.RULE index b2b0e9cb3c9..d805ebd4c26 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_1.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_1.yml deleted file mode 100644 index 2184b6767fe..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_10.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_10.RULE index f17707af549..2e7243ba1fc 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.2-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_10.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_10.yml deleted file mode 100644 index d528856cb3c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_11.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_11.RULE index 6800314d237..8367513aaa0 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-invariants-only +--- + {{GFDL-1.2-invariants-only}} https://spdx.org/licenses/GFDL-1.2-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_11.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_11.yml deleted file mode 100644 index 466c7de95c8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_12.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_12.RULE index 133d4d58e25..3ce6799b15f 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-invariants-only +--- + LICENSE {{GFDL-1.2-invariants-only}} https://spdx.org/licenses/GFDL-1.2-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_12.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_12.yml deleted file mode 100644 index 466c7de95c8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_2.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_2.RULE index 48200345502..7b7a5244fd4 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.2 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_2.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_2.yml deleted file mode 100644 index 2184b6767fe..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_3.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_3.RULE index d38d64bd6bc..f130dcd8194 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.2-invariants-only GNU Free Documentation License v1.2 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_3.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_3.yml deleted file mode 100644 index 2184b6767fe..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_4.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_4.RULE index 639acc4c333..039591e1fff 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 only - invariants GFDL-1.2-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_4.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_4.yml deleted file mode 100644 index 2184b6767fe..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_5.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_5.RULE index b2a25ee3b3c..1d827f9d959 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.2-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_5.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_5.yml deleted file mode 100644 index a0fdabc8fc7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_6.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_6.RULE index f2d4766b1f2..275d15d3110 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.2 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_6.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_6.yml deleted file mode 100644 index a0fdabc8fc7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_7.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_7.RULE index c1364515ada..b892527efd7 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.2-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_7.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_7.yml deleted file mode 100644 index a0fdabc8fc7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_8.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_8.RULE index a898f62802c..b8d840502fa 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.2-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_8.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_8.yml deleted file mode 100644 index c4cf9f02590..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index f665b2780ae..3b635257e1d 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.2-invariants-only +--- + https://licenses.nuget.org/GFDL-1.2-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.yml deleted file mode 100644 index 8026b0a8820..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-only_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.2-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_1.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_1.RULE index 583893f42c6..9a3bdbd236c 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_1.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_1.yml deleted file mode 100644 index e6f1a47ef5a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_10.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_10.RULE index 3d5fc55d0d5..a7cbc765d72 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.2-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_10.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_10.yml deleted file mode 100644 index 1cebe8fc723..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_11.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_11.RULE index 3203fe1e0a0..87d8b12d0d2 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-invariants-or-later +--- + {{GFDL-1.2-invariants-or-later}} https://spdx.org/licenses/GFDL-1.2-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_11.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_11.yml deleted file mode 100644 index aeaa4a1dd80..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_12.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_12.RULE index 176b5b6ca68..90367f3afdf 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-invariants-or-later +--- + LICENSE {{GFDL-1.2-invariants-or-later}} https://spdx.org/licenses/GFDL-1.2-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_12.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_12.yml deleted file mode 100644 index aeaa4a1dd80..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_2.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_2.RULE index 8c7d9cb649b..7e77dd09b84 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.2 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_2.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_2.yml deleted file mode 100644 index e6f1a47ef5a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_3.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_3.RULE index 56d8e76133c..1537e373183 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.2-invariants-or-later GNU Free Documentation License v1.2 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_3.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_3.yml deleted file mode 100644 index e6f1a47ef5a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_4.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_4.RULE index d43550049f5..b7a65ed1bf9 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 or later - invariants GFDL-1.2-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_4.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_4.yml deleted file mode 100644 index e6f1a47ef5a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_5.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_5.RULE index 7e401463654..3ce0ddf490a 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.2-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_5.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_5.yml deleted file mode 100644 index cfd32391d9a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_6.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_6.RULE index 1dcd052c3cf..09343308605 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.2 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_6.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_6.yml deleted file mode 100644 index cfd32391d9a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_7.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_7.RULE index 1f440ba1c4b..65e9bc739cc 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.2-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_7.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_7.yml deleted file mode 100644 index cfd32391d9a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_8.RULE b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_8.RULE index bdd12179a5f..cd877b0e216 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.2-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_8.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_8.yml deleted file mode 100644 index 860331f1283..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index ae0f73ed4da..46b20f61c6f 100644 --- 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 @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.2-invariants-or-later +--- + https://licenses.nuget.org/GFDL-1.2-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_9.yml b/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_9.yml deleted file mode 100644 index fe0dd9c4cf6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-invariants-or-later_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.2-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_1.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_1.RULE index 69674254cc1..d7f8c1a602e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_1.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_1.yml deleted file mode 100644 index 38ba9578ecb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_10.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_10.RULE index 6a0682ba08a..e173ac6e69e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.2-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_10.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_10.yml deleted file mode 100644 index b2d63cd7579..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_11.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_11.RULE index 531d0049666..74de4162ebe 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-no-invariants-only +--- + LICENSE {{GFDL-1.2-no-invariants-only}} https://spdx.org/licenses/GFDL-1.2-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_11.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_11.yml deleted file mode 100644 index 32d97ea983a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_12.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_12.RULE index dd12a52ed0f..39b4072dcd9 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-no-invariants-only +--- + {{GFDL-1.2-no-invariants-only}} https://spdx.org/licenses/GFDL-1.2-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_12.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_12.yml deleted file mode 100644 index 32d97ea983a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_2.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_2.RULE index 738b3c0479c..2cc6e802133 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.2 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_2.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_2.yml deleted file mode 100644 index 38ba9578ecb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_3.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_3.RULE index 9dfbf287b4d..33dd098c08c 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.2-no-invariants-only GNU Free Documentation License v1.2 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_3.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_3.yml deleted file mode 100644 index 38ba9578ecb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_4.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_4.RULE index 4588f052e62..929d56a937e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 only - no invariants GFDL-1.2-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_4.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_4.yml deleted file mode 100644 index 38ba9578ecb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_5.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_5.RULE index c31d8a817dd..9e1373c3fa2 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.2-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_5.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_5.yml deleted file mode 100644 index 994c04ea7e0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_6.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_6.RULE index a92fe853dfa..40964f8fb6c 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.2 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_6.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_6.yml deleted file mode 100644 index 994c04ea7e0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_7.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_7.RULE index 0aa7a67e73f..13ff1dbba4a 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.2-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_7.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_7.yml deleted file mode 100644 index 994c04ea7e0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_8.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_8.RULE index c0e95cb2173..16090254cc4 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.2-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_8.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_8.yml deleted file mode 100644 index 1fe2739cdb2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index 952fc7f0a92..6c39ac4527f 100644 --- 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 @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.2-no-invariants-only +--- + https://licenses.nuget.org/GFDL-1.2-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_9.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_9.yml deleted file mode 100644 index a80060bd7e4..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-only_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.2-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_1.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_1.RULE index 35a3cb302bb..ce943160182 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_1.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_1.yml deleted file mode 100644 index bd19cef8f10..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_10.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_10.RULE index fc397525e35..f66b4b628f2 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.2-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_10.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_10.yml deleted file mode 100644 index 23620329dc9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_11.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_11.RULE index 487b3f82075..e1248f89553 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_11.RULE @@ -1 +1,8 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later +--- + LICENSE {{GFDL-1.2-no-invariants-or-later}} https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_11.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_11.yml deleted file mode 100644 index faa4bc31373..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_12.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_12.RULE index 8a2c3cfc657..80bb6e6f07d 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_12.RULE @@ -1 +1,8 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later +--- + {{GFDL-1.2-no-invariants-or-later}} https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_12.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_12.yml deleted file mode 100644 index faa4bc31373..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_2.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_2.RULE index bd269c599bb..4c513a6b388 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.2 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_2.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_2.yml deleted file mode 100644 index bd19cef8f10..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_3.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_3.RULE index b3f86534e0f..361bfdf638e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.2-no-invariants-or-later GNU Free Documentation License v1.2 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_3.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_3.yml deleted file mode 100644 index bd19cef8f10..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_4.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_4.RULE index 4a1939d794f..ded9a2d8d70 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 or later - no invariants GFDL-1.2-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_4.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_4.yml deleted file mode 100644 index bd19cef8f10..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_5.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_5.RULE index 26cf8d025e7..08bf96dc299 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.2-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_5.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_5.yml deleted file mode 100644 index 17f2c8301f8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_6.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_6.RULE index 8a8fba3a659..3dbe3408cb0 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.2 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_6.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_6.yml deleted file mode 100644 index 17f2c8301f8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_7.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_7.RULE index 3195eb659fa..c6f5eb34ab6 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.2-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_7.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_7.yml deleted file mode 100644 index 17f2c8301f8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_8.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_8.RULE index 8053911fcd6..1919d57caa4 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.2-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_8.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_8.yml deleted file mode 100644 index d702d403933..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_9.RULE b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_9.RULE index 41462f56fe0..84792559799 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-no-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.2-no-invariants-or-later +--- + https://licenses.nuget.org/GFDL-1.2-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_9.yml b/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_9.yml deleted file mode 100644 index 4494a47ebd8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-no-invariants-or-later_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-no-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.2-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus.RULE index 374ec151cd4..738bc8a1039 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.2-plus +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 no diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus.yml b/src/licensedcode/data/rules/gfdl-1.2-plus.yml deleted file mode 100644 index 76fdf24e251..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_1.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_1.RULE index 705a38c8083..379bfe4dad7 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_1.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gfdl-1.2-plus +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 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". +Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_1.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_1.yml deleted file mode 100644 index 76fdf24e251..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_10.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_10.RULE index 582917b3899..a75b0064737 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.2-plus +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 @@ -5,4 +10,4 @@ Invariant Sections being ``Free Software Needs Free Documentation'' and ``GNU Lesser General Public License'', the Front-Cover texts being ``A GNU Manual'', and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled "GNU Free -Documentation License". +Documentation License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_10.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_10.yml deleted file mode 100644 index 76fdf24e251..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_11.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_11.RULE index e4ed4b1548d..8ebfcf1c4ec 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +notes: GFDL notice, debian style +--- + 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 @@ -6,4 +12,4 @@ in the section entitled "GNU Free Documentation License". On Debian systems , the complete text of the GNU Free Documentation - License can be found in /usr/share/common-licenses/GFDL + License can be found in /usr/share/common-licenses/GFDL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_11.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_11.yml deleted file mode 100644 index 39cbac6f828..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -notes: GFDL notice, debian style diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_12.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_12.RULE index 7a60654e45b..62c7b69109e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_12.RULE @@ -1 +1,7 @@ -license of manual now GFDL 1.2 or later, with no invariant sections +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +--- + +license of manual now GFDL 1.2 or later, with no invariant sections \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_12.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_12.yml deleted file mode 100644 index 01c95875946..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_13.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_13.RULE index bfce055913d..9e524a532a8 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_13.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_13.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +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 +Invariant Sections being \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_13.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_13.yml deleted file mode 100644 index 76fdf24e251..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_14.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_14.RULE index d08be220b69..bf01625c864 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_14.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +--- + Permission is granted to copy, distribute and/or modify diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_14.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_14.yml deleted file mode 100644 index 76fdf24e251..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_15.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_15.RULE index 27a89f7cfd2..9a55fbafff5 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_15.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_15.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +--- + Permission is granted to copy, distribute and/or modify @@ -6,6 +11,4 @@ Permission is granted to copy, distribute and/or modify Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled -license.gfdl - - +license.gfdl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_15.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_15.yml deleted file mode 100644 index 76fdf24e251..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_16.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_16.RULE index 2def8cf9760..8009ffad972 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_16.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.2-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.2 or any later version published by the Free Software Foundation; with no diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_16.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_16.yml deleted file mode 100644 index 62ee31becf9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_17.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_17.RULE index 6729e8e682a..7fd489d4208 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_17.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_17.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU Free Documentation License, Version 1.2 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_17.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_17.yml deleted file mode 100644 index 62ee31becf9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_18.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_18.RULE index 9f07e66fafa..f6fad557caf 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_18.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.2-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.2 or any later version published by the Free Software Foundation; with no diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_18.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_18.yml deleted file mode 100644 index 62ee31becf9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_19.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_19.RULE index bf6785de594..1c63a365f4e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_19.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_19.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +relevance: 100 +--- + This file is distributed under GFDL 1.2 or any later version published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_19.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_19.yml deleted file mode 100644 index 62ee31becf9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_2.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_2.RULE index 36ab1aa3c53..8c9bab54db3 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License, Version 1.2 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_2.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_2.yml deleted file mode 100644 index 01c95875946..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_20.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_20.RULE index c98062d76b4..3bd15974d36 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_20.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.2-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.2 or any later version published by the Free Software diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_20.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_20.yml deleted file mode 100644 index 62ee31becf9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_21.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_21.RULE index 91e6ad99801..aa2ac93255e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_21.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.2 +--- + This manual is covered by the GNU FDL. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (FDL), either version 1.2 of the @@ -7,4 +14,4 @@ . On Debian systems the full text of the GNU Free Documentation License version 1.2 can be found in the file - `/usr/share/common-licenses/GFDL-1.2'. + `/usr/share/common-licenses/GFDL-1.2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_21.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_21.yml deleted file mode 100644 index 4d41c51d1cb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_22.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_22.RULE index 5d4e627a1e7..91d29b7189c 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_22.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_22.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.2 +--- + On Debian systems the full text of the GNU Free Documentation License version 1.2 can be found in the file - `/usr/share/common-licenses/GFDL-1.2'. + `/usr/share/common-licenses/GFDL-1.2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_22.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_22.yml deleted file mode 100644 index 4d41c51d1cb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_23.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_23.RULE index d63cb9ccfd3..ba692ea5c7a 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_23.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_23.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.2 +--- + This manual is covered by the GNU FDL. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (FDL), either version 1.2 of the License, or (at your option) any later version published by the Free Software Foundation (FSF); with no Invariant Sections, with no - Front-Cover Text, and with no Back-Cover Texts. + Front-Cover Text, and with no Back-Cover Texts. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_23.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_23.yml deleted file mode 100644 index 4d41c51d1cb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_24.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_24.RULE index 2a2ae2105a1..c229b2b17a1 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_24.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_24.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.2 +--- + On Debian GNU/Linux systems the full text of the GNU Free Documentation License version 1.2 can be found in the file - `/usr/share/common-licenses/GFDL-1.2'. + `/usr/share/common-licenses/GFDL-1.2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_24.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_24.yml deleted file mode 100644 index 0ccabb76ace..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_25.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_25.RULE index aa6a941f64b..0aa9842ee63 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_25.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.2 +--- + This manual is covered by the GNU FDL. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (FDL), either version 1.2 of the @@ -7,4 +15,4 @@ . On Debian GNU/Linux systems the full text of the GNU Free Documentation License version 1.2 can be found in the file - `/usr/share/common-licenses/GFDL-1.2'. + `/usr/share/common-licenses/GFDL-1.2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_25.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_25.yml deleted file mode 100644 index 0ccabb76ace..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_26.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_26.RULE index 42558fc9387..01e80347787 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_26.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/fdl.txt +--- + This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at url="https://www.gnu.org/licenses/fdl.txt">https://www.gnu.org/licenses/fdl.txt). - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_26.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_26.yml deleted file mode 100644 index ce604b1a2f9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/fdl.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_27.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_27.RULE index 12f5c270eef..f9e387f5a3a 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_27.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_27.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +relevance: 100 +notes: GFDL notice, debian style +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + 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 no @@ -5,4 +14,4 @@ Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You should have received a copy of the GNU Free Documentation License with your Debian GNU system, in /usr/share/common-licenses/GFDL-1.2. -If not, see . +If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_27.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_27.yml deleted file mode 100644 index 313d7072adb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 -notes: GFDL notice, debian style -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_28.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_28.RULE index 704b1111f6a..8315fca11a9 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_28.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_28.RULE @@ -1,7 +1,15 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/fdl.txt +--- + This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at url="https://www.gnu.org/licenses/fdl.txt">https://www.gnu.org/licenses/fdl.txt). - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_28.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_28.yml deleted file mode 100644 index ce604b1a2f9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/fdl.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_29.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_29.RULE index 66aa95ee59a..e85b41c7425 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_29.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_29.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/fdl.txt +--- + This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at url="https://www.gnu.org/licenses/fdl.txt"> - https://www.gnu.org/licenses/fdl.txt). + https://www.gnu.org/licenses/fdl.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_29.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_29.yml deleted file mode 100644 index ce604b1a2f9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/fdl.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_3.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_3.RULE index b4a5b218d34..ff2e38ca3e5 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +minimum_coverage: 25 +--- + 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; diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_3.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_3.yml deleted file mode 100644 index ec879b9575f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -minimum_coverage: 25 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_30.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_30.RULE index c3d526044be..ddeb367415f 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_30.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_30.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +relevance: 100 +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.2 or any later version published by the Free Software Foundation; @@ -6,4 +14,4 @@ with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts The GNU Free Documentation License is available from \url{https://www.gnu.org/licenses/fdl.html} or by writing to the Free Software Foundation, Inc., 51 Franklin Street, -Fifth Floor, Boston, MA 02110-1301, USA. +Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_30.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_30.yml deleted file mode 100644 index f0f0a615112..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_31.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_31.RULE index 41b97251be5..a0535e3b51d 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_31.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_31.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_31.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_31.yml deleted file mode 100644 index b642865d35d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_32.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_32.RULE index c9d4b4e6285..8ba826d44b0 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_32.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_32.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_32.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_32.yml deleted file mode 100644 index b642865d35d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_33.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_33.RULE index 7049a820e6a..fcbedcab416 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_33.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_33.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.2-or-later GNU Free Documentation License v1.2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_33.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_33.yml deleted file mode 100644 index b642865d35d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_34.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_34.RULE index 06fd829bb73..3f135e30589 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_34.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_34.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 or later GFDL-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_34.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_34.yml deleted file mode 100644 index b642865d35d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_35.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_35.RULE index 7b76dbc2e89..7389b2e0456 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_35.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_35.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_35.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_35.yml deleted file mode 100644 index 7687a9f034c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_36.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_36.RULE index 43581662c92..33f53f21782 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_36.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_36.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_36.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_36.yml deleted file mode 100644 index 7687a9f034c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_37.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_37.RULE index aa9366cad17..20f9c372da5 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_37.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_37.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_37.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_37.yml deleted file mode 100644 index 7687a9f034c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_38.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_38.RULE index 7ee66e2eb7d..23cf43e847a 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_38.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_38.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.2-or-later +--- + https://licenses.nuget.org/GFDL-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_38.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_38.yml deleted file mode 100644 index 7bd7af4be91..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.2-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_39.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_39.RULE index bbb91f3324a..db4acac34d4 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_39.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_39.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_39.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_39.yml deleted file mode 100644 index 01c95875946..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_4.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_4.RULE index 9069f286196..da9233ec693 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +minimum_coverage: 15 +notes: GFDL notice, debian style +--- + 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 no diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_4.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_4.yml deleted file mode 100644 index 2a8a1392bc5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -minimum_coverage: 15 -notes: GFDL notice, debian style diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_40.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_40.RULE index 146cd967a27..0088f144c1c 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_40.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_40.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-or-later +--- + {{GFDL-1.2-or-later}} https://spdx.org/licenses/GFDL-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_40.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_40.yml deleted file mode 100644 index 524c5f912a1..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_41.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_41.RULE index ee3b166a112..e9d6fdd1979 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_41.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_41.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-or-later +--- + LICENSE {{GFDL-1.2-or-later}} https://spdx.org/licenses/GFDL-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_41.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_41.yml deleted file mode 100644 index 524c5f912a1..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_42.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_42.RULE index f206c9f302e..f1fe8f4e0f2 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_42.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_42.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2 +--- + LICENSE {{GFDL-1.2}} https://spdx.org/licenses/GFDL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_42.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_42.yml deleted file mode 100644 index a97b1adf374..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_43.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_43.RULE index 2cac09d9ebc..5a0e35e0d13 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_43.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_43.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2 +--- + LICENSE {{GFDL-1.2+}} https://spdx.org/licenses/GFDL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_43.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_43.yml deleted file mode 100644 index a97b1adf374..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_44.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_44.RULE index 97e84956a5e..862aba1293a 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_44.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_44.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2 +--- + {{GFDL-1.2+}} https://spdx.org/licenses/GFDL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_44.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_44.yml deleted file mode 100644 index a97b1adf374..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_5.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_5.RULE index e1e6a6e16ff..7a7ae8dbbd5 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +ignorable_urls: + - http://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.2 or any later version published by the Free Software Foundation; @@ -6,4 +13,4 @@ with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts The GNU Free Documentation License is available from \url{http://www.gnu.org/licenses/fdl.html} or by writing to the Free Software Foundation, Inc., 51 Franklin Street, -Fifth Floor, Boston, MA 02110-1301, USA. +Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_5.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_5.yml deleted file mode 100644 index e257014618b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_6.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_6.RULE index c9d1b20d1e4..775aac54c53 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/fdl.txt +--- + This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at url="http://www.gnu.org/licenses/fdl.txt">http://www.gnu.org/licenses/fdl.txt). - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_6.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_6.yml deleted file mode 100644 index 535c231c649..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/fdl.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_7.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_7.RULE index 97053f6c332..234ea0e8c6a 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_7.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/fdl.txt +--- + This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at url="http://www.gnu.org/licenses/fdl.txt"> - http://www.gnu.org/licenses/fdl.txt). + http://www.gnu.org/licenses/fdl.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_7.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_7.yml deleted file mode 100644 index 535c231c649..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/fdl.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_8.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_8.RULE index 010a815311c..34b57f2d3b4 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_8.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/fdl.txt +--- + This material may only be distributed subject to the terms and conditions set forth in the GNU Free Documentation License (GFDL), V1.2 or later (the latest version is presently available at url="http://www.gnu.org/licenses/fdl.txt">http://www.gnu.org/licenses/fdl.txt). - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_8.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_8.yml deleted file mode 100644 index 535c231c649..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/fdl.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_9.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_9.RULE index 1e9dd5248dd..5fd6b119c83 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.2-plus +is_license_notice: yes +notes: GFDL notice, debian style +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + 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 no @@ -5,4 +13,4 @@ Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You should have received a copy of the GNU Free Documentation License with your Debian GNU system, in /usr/share/common-licenses/GFDL-1.2. -If not, see . +If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_9.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_9.yml deleted file mode 100644 index 2c2d78c943c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_notice: yes -notes: GFDL notice, debian style -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.RULE index 3a76cc23723..a8f703a2d1e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.2-plus OR gpl-2.0-plus +is_license_notice: yes +--- + This manual is free documentation. It is dually licensed under the GNU FDL and the GNU GPL. This means that you can redistribute this manual under either of these two licenses, at your choice. diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.yml deleted file mode 100644 index fad12fd50b2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.2-plus OR gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_url_1.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_url_1.RULE index ca823931d32..857f4d4d710 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_url_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.2-or-later +--- + https://spdx.org/licenses/gfdl-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_url_1.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_url_1.yml deleted file mode 100644 index 85d1483608c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.2-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_url_2.RULE b/src/licensedcode/data/rules/gfdl-1.2-plus_url_2.RULE index 344ce14ea6a..046cef5ac5b 100644 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_url_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.2-or-later.html +--- + https://spdx.org/licenses/gfdl-1.2-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2-plus_url_2.yml b/src/licensedcode/data/rules/gfdl-1.2-plus_url_2.yml deleted file mode 100644 index 0ee6d080508..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.2-or-later.html diff --git a/src/licensedcode/data/rules/gfdl-1.2_1.RULE b/src/licensedcode/data/rules/gfdl-1.2_1.RULE index 5ef08ee3d3f..a24619593bc 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gfdl-1.2 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.2, November 2002 diff --git a/src/licensedcode/data/rules/gfdl-1.2_1.yml b/src/licensedcode/data/rules/gfdl-1.2_1.yml deleted file mode 100644 index 04cfb9044a9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gfdl-1.2 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.2_10.RULE b/src/licensedcode/data/rules/gfdl-1.2_10.RULE index 5e265b585f3..ee12ebc2684 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_10.RULE @@ -1 +1,8 @@ -is released under the GNU Free Documentation License, see /usr/share/common-licenses/GFDL-1.2. +--- +license_expression: gfdl-1.2 +is_license_notice: yes +relevance: 100 +notes: GFDL notice, debian style +--- + +is released under the GNU Free Documentation License, see /usr/share/common-licenses/GFDL-1.2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_10.yml b/src/licensedcode/data/rules/gfdl-1.2_10.yml deleted file mode 100644 index c515effa06f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.2 -is_license_notice: yes -relevance: 100 -notes: GFDL notice, debian style diff --git a/src/licensedcode/data/rules/gfdl-1.2_11.RULE b/src/licensedcode/data/rules/gfdl-1.2_11.RULE index 864b5f6ec99..117b5037d4d 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +--- + https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_11.yml b/src/licensedcode/data/rules/gfdl-1.2_11.yml deleted file mode 100644 index 9b013d07998..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2_12.RULE b/src/licensedcode/data/rules/gfdl-1.2_12.RULE index 319c5242b17..2c0ebdba217 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_12.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gfdl-1.2 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.2, November 2002 @@ -364,4 +376,4 @@ following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not -as a draft) by the Free Software Foundation. +as a draft) by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_12.yml b/src/licensedcode/data/rules/gfdl-1.2_12.yml deleted file mode 100644 index 62d1de3a6ad..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_12.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gfdl-1.2 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.2_13.RULE b/src/licensedcode/data/rules/gfdl-1.2_13.RULE index aa32951eeb4..9ba39530c98 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_13.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_13.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/fdl-1.2.txt +--- + https://www.gnu.org/licenses/fdl-1.2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_13.yml b/src/licensedcode/data/rules/gfdl-1.2_13.yml deleted file mode 100644 index 2e8d3f07e1a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/fdl-1.2.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2_14.RULE b/src/licensedcode/data/rules/gfdl-1.2_14.RULE index eef574b7106..2d2d7110828 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_14.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_14.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GFDL-1.2 GNU Free Documentation License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_14.yml b/src/licensedcode/data/rules/gfdl-1.2_14.yml deleted file mode 100644 index 069e4c57981..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.2_15.RULE b/src/licensedcode/data/rules/gfdl-1.2_15.RULE index fb6dbc95f85..96a066c1d11 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_15.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_15.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Free Documentation License v1.2 GFDL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_15.yml b/src/licensedcode/data/rules/gfdl-1.2_15.yml deleted file mode 100644 index 069e4c57981..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.2_16.RULE b/src/licensedcode/data/rules/gfdl-1.2_16.RULE index 8a5b525aa4d..3430943992e 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_16.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_16.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GFDL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_16.yml b/src/licensedcode/data/rules/gfdl-1.2_16.yml deleted file mode 100644 index 069e4c57981..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.2_17.RULE b/src/licensedcode/data/rules/gfdl-1.2_17.RULE index 809f19329a6..c7d64d4595d 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_17.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_17.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Free Documentation License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_17.yml b/src/licensedcode/data/rules/gfdl-1.2_17.yml deleted file mode 100644 index 069e4c57981..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.2_18.RULE b/src/licensedcode/data/rules/gfdl-1.2_18.RULE index b20a4a48837..8aa4f584292 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_18.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_18.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_18.yml b/src/licensedcode/data/rules/gfdl-1.2_18.yml deleted file mode 100644 index 69e5cf09d6f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2_19.RULE b/src/licensedcode/data/rules/gfdl-1.2_19.RULE index 9608a578878..31f7e0385ed 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_19.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_19.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_19.yml b/src/licensedcode/data/rules/gfdl-1.2_19.yml deleted file mode 100644 index 69e5cf09d6f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2_2.RULE b/src/licensedcode/data/rules/gfdl-1.2_2.RULE index 8d0a4cc242d..bd94703a7d8 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_2.RULE @@ -1,3 +1,8 @@ - GNU Free Documentation License - Version 1.2, November 2002 +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License + Version 1.2, November 2002 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_2.yml b/src/licensedcode/data/rules/gfdl-1.2_2.yml deleted file mode 100644 index 641dd2b6576..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2_20.RULE b/src/licensedcode/data/rules/gfdl-1.2_20.RULE index 77b46528816..3d2a15e523d 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_20.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_20.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.2-only GNU Free Documentation License v1.2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_20.yml b/src/licensedcode/data/rules/gfdl-1.2_20.yml deleted file mode 100644 index 69e5cf09d6f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2_21.RULE b/src/licensedcode/data/rules/gfdl-1.2_21.RULE index 116e9c1e6c9..642897e34b5 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_21.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_21.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.2 only GFDL-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_21.yml b/src/licensedcode/data/rules/gfdl-1.2_21.yml deleted file mode 100644 index 69e5cf09d6f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2_22.RULE b/src/licensedcode/data/rules/gfdl-1.2_22.RULE index 3647858625f..b68f6acaa3d 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_22.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_22.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_22.yml b/src/licensedcode/data/rules/gfdl-1.2_22.yml deleted file mode 100644 index 360aeb9720f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2_23.RULE b/src/licensedcode/data/rules/gfdl-1.2_23.RULE index 8589527bf04..1e956a2c365 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_23.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_23.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_23.yml b/src/licensedcode/data/rules/gfdl-1.2_23.yml deleted file mode 100644 index 360aeb9720f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2_24.RULE b/src/licensedcode/data/rules/gfdl-1.2_24.RULE index 6da21e21a14..955a18be31a 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_24.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_24.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_24.yml b/src/licensedcode/data/rules/gfdl-1.2_24.yml deleted file mode 100644 index 360aeb9720f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2_25.RULE b/src/licensedcode/data/rules/gfdl-1.2_25.RULE index 77862ccdb4a..5b22bff0894 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_25.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_25.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_25.yml b/src/licensedcode/data/rules/gfdl-1.2_25.yml deleted file mode 100644 index 360aeb9720f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.2_26.RULE b/src/licensedcode/data/rules/gfdl-1.2_26.RULE index 9d97d8d9ed6..f96b297c2c4 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_26.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_26.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.2-only +--- + https://licenses.nuget.org/GFDL-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_26.yml b/src/licensedcode/data/rules/gfdl-1.2_26.yml deleted file mode 100644 index 984aa730f29..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.2-only diff --git a/src/licensedcode/data/rules/gfdl-1.2_27.RULE b/src/licensedcode/data/rules/gfdl-1.2_27.RULE index 9792e9cc30a..c067bdd252f 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_27.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_27.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_27.yml b/src/licensedcode/data/rules/gfdl-1.2_27.yml deleted file mode 100644 index 641dd2b6576..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2_28.RULE b/src/licensedcode/data/rules/gfdl-1.2_28.RULE index 9081590ec85..44cb5d208c5 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_28.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_28.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-only +--- + {{GFDL-1.2-only}} https://spdx.org/licenses/GFDL-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_28.yml b/src/licensedcode/data/rules/gfdl-1.2_28.yml deleted file mode 100644 index 5a6974fcf5e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-only diff --git a/src/licensedcode/data/rules/gfdl-1.2_29.RULE b/src/licensedcode/data/rules/gfdl-1.2_29.RULE index d98863e8f4a..91dc454a692 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_29.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_29.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2-only +--- + LICENSE {{GFDL-1.2-only}} https://spdx.org/licenses/GFDL-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_29.yml b/src/licensedcode/data/rules/gfdl-1.2_29.yml deleted file mode 100644 index 5a6974fcf5e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2-only diff --git a/src/licensedcode/data/rules/gfdl-1.2_3.RULE b/src/licensedcode/data/rules/gfdl-1.2_3.RULE index f0103685c4b..2e8d30d4e60 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License V 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_3.yml b/src/licensedcode/data/rules/gfdl-1.2_3.yml deleted file mode 100644 index 641dd2b6576..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2_30.RULE b/src/licensedcode/data/rules/gfdl-1.2_30.RULE index d05b393eedd..dd6083ef9cd 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_30.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_30.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.2 +--- + {{GFDL-1.2}} https://spdx.org/licenses/GFDL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_30.yml b/src/licensedcode/data/rules/gfdl-1.2_30.yml deleted file mode 100644 index 60b3c7ba535..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.2 diff --git a/src/licensedcode/data/rules/gfdl-1.2_4.RULE b/src/licensedcode/data/rules/gfdl-1.2_4.RULE index 1cb709d7d11..55f3ac4165f 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_4.yml b/src/licensedcode/data/rules/gfdl-1.2_4.yml deleted file mode 100644 index 641dd2b6576..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2_5.RULE b/src/licensedcode/data/rules/gfdl-1.2_5.RULE index 2532122d55b..6cf8d516494 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_5.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt +--- + http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_5.yml b/src/licensedcode/data/rules/gfdl-1.2_5.yml deleted file mode 100644 index b0436ab8c84..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/fdl-1.2.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2_6.RULE b/src/licensedcode/data/rules/gfdl-1.2_6.RULE index 6a4eb9321ab..883e8bd6cce 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_6.RULE @@ -1 +1,7 @@ -Licensed under the GNU Free Documentation License, Version 1.2 +--- +license_expression: gfdl-1.2 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the GNU Free Documentation License, Version 1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_6.yml b/src/licensedcode/data/rules/gfdl-1.2_6.yml deleted file mode 100644 index f53f2c7dcc9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2_7.RULE b/src/licensedcode/data/rules/gfdl-1.2_7.RULE index b4bec795d51..89460361e74 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_notice: yes +notes: GFDL notice, debian style +--- + The documentation is licensed under the GNU Free Documentation License (v1.2). On Debian GNU/Linux systems, the complete text of this license is in -`/usr/share/common-licenses/GFDL-1.2'. +`/usr/share/common-licenses/GFDL-1.2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_7.yml b/src/licensedcode/data/rules/gfdl-1.2_7.yml deleted file mode 100644 index 4815f58263c..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2 -is_license_notice: yes -notes: GFDL notice, debian style diff --git a/src/licensedcode/data/rules/gfdl-1.2_8.RULE b/src/licensedcode/data/rules/gfdl-1.2_8.RULE index 9974b0085e8..7493d3f2961 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/fdl-1.2.txt +--- + http://www.gnu.org/licenses/fdl-1.2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_8.yml b/src/licensedcode/data/rules/gfdl-1.2_8.yml deleted file mode 100644 index 1012c5565a3..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/fdl-1.2.txt diff --git a/src/licensedcode/data/rules/gfdl-1.2_9.RULE b/src/licensedcode/data/rules/gfdl-1.2_9.RULE index 17f65bfc115..d6a2d5af6cf 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_9.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gfdl-1.2 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.2, November 2002 diff --git a/src/licensedcode/data/rules/gfdl-1.2_9.yml b/src/licensedcode/data/rules/gfdl-1.2_9.yml deleted file mode 100644 index 62d1de3a6ad..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_9.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gfdl-1.2 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.2_ft_no_add.RULE b/src/licensedcode/data/rules/gfdl-1.2_ft_no_add.RULE index 3c7ecd02dd7..eda2e9163be 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_ft_no_add.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_ft_no_add.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gfdl-1.2 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.2, November 2002 @@ -364,4 +375,4 @@ following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not -as a draft) by the Free Software Foundation. +as a draft) by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_ft_no_add.yml b/src/licensedcode/data/rules/gfdl-1.2_ft_no_add.yml deleted file mode 100644 index 04cfb9044a9..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_ft_no_add.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gfdl-1.2 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000,2001,2002 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.2_or_gpl-2.0.RULE b/src/licensedcode/data/rules/gfdl-1.2_or_gpl-2.0.RULE index 413dcb6e66c..113d7141028 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_or_gpl-2.0.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.2 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The GNU Free Documentation License, Version 1.2 - (dual licensed under the GPL v2) + (dual licensed under the GPL v2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_or_gpl-2.0.yml b/src/licensedcode/data/rules/gfdl-1.2_or_gpl-2.0.yml deleted file mode 100644 index e75921f3571..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_or_gpl-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.2 OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.2_url_1.RULE b/src/licensedcode/data/rules/gfdl-1.2_url_1.RULE index 0244e80d840..0c33deabbcd 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.2-only +--- + https://spdx.org/licenses/gfdl-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_url_1.yml b/src/licensedcode/data/rules/gfdl-1.2_url_1.yml deleted file mode 100644 index 6c863676bb4..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.2-only diff --git a/src/licensedcode/data/rules/gfdl-1.2_url_2.RULE b/src/licensedcode/data/rules/gfdl-1.2_url_2.RULE index e869781fde5..db94638ffaf 100644 --- a/src/licensedcode/data/rules/gfdl-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.2-only.html +--- + https://spdx.org/licenses/gfdl-1.2-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.2_url_2.yml b/src/licensedcode/data/rules/gfdl-1.2_url_2.yml deleted file mode 100644 index 81617a54642..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.2-only.html diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_1.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_1.RULE index b2e281284cf..73281cf3583 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_1.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_1.yml deleted file mode 100644 index a00e44b0585..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_10.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_10.RULE index 04e1d8e880a..9f96196168a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.3-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_10.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_10.yml deleted file mode 100644 index 45b332202f8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_11.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_11.RULE index 79b4c951722..72d0311d80e 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-invariants-only +--- + LICENSE {{GFDL-1.3-invariants-only}} https://spdx.org/licenses/GFDL-1.3-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_11.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_11.yml deleted file mode 100644 index 25d73ac0652..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_12.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_12.RULE index 32f60e4df73..f5bf3cfc617 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-invariants-only +--- + {{GFDL-1.3-invariants-only}} https://spdx.org/licenses/GFDL-1.3-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_12.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_12.yml deleted file mode 100644 index 25d73ac0652..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_2.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_2.RULE index 45309d75299..c38dd00e107 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.3 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_2.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_2.yml deleted file mode 100644 index a00e44b0585..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_3.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_3.RULE index f27854f2ae5..440d35caf24 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.3-invariants-only GNU Free Documentation License v1.3 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_3.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_3.yml deleted file mode 100644 index a00e44b0585..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_4.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_4.RULE index c4a6080b2bb..a0aabd97bd4 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 only - invariants GFDL-1.3-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_4.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_4.yml deleted file mode 100644 index a00e44b0585..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_5.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_5.RULE index ce2b5deee66..b0f31f0ba9a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.3-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_5.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_5.yml deleted file mode 100644 index 6bca13f01a1..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_6.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_6.RULE index e29e49793a4..6889bdaa66b 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.3 only - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_6.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_6.yml deleted file mode 100644 index 6bca13f01a1..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_7.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_7.RULE index ed684182222..fb53be99c6c 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.3-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_7.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_7.yml deleted file mode 100644 index 6bca13f01a1..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_8.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_8.RULE index de99b11ad46..c8913107cf2 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.3-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_8.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_8.yml deleted file mode 100644 index 467625bd758..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index fb2444259ea..f416df06cd3 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.3-invariants-only +--- + https://licenses.nuget.org/GFDL-1.3-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.yml deleted file mode 100644 index 42f372e3e9a..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-only_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.3-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_1.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_1.RULE index 28983a18ec3..ff3962b3ffd 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_1.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_1.yml deleted file mode 100644 index bd79e65288f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_10.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_10.RULE index 406a6be76d7..01542bedaf3 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.3-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_10.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_10.yml deleted file mode 100644 index 0a4c53b5e87..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_11.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_11.RULE index 80f92f8df2a..b4bef5da1b2 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-invariants-or-later +--- + {{GFDL-1.3-invariants-or-later}} https://spdx.org/licenses/GFDL-1.3-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_11.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_11.yml deleted file mode 100644 index 128abb2a17b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_12.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_12.RULE index 734a499a0fd..3a70d760370 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-invariants-or-later +--- + LICENSE {{GFDL-1.3-invariants-or-later}} https://spdx.org/licenses/GFDL-1.3-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_12.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_12.yml deleted file mode 100644 index 128abb2a17b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_2.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_2.RULE index cc72a0f32f2..ddbcc990efe 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.3 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_2.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_2.yml deleted file mode 100644 index bd79e65288f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_3.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_3.RULE index 8fb0d2788f1..c1a6d7a081a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.3-invariants-or-later GNU Free Documentation License v1.3 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_3.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_3.yml deleted file mode 100644 index bd79e65288f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_4.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_4.RULE index f5309d9f4bc..83429a92de4 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 or later - invariants GFDL-1.3-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_4.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_4.yml deleted file mode 100644 index bd79e65288f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_5.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_5.RULE index 8cfc9ce11ea..f051b68e67f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.3-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_5.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_5.yml deleted file mode 100644 index b37d2d98c72..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_6.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_6.RULE index 5501ec28672..9424a709a1c 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.3 or later - invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_6.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_6.yml deleted file mode 100644 index b37d2d98c72..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_7.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_7.RULE index 2e888426e80..cf87e639f7a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.3-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_7.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_7.yml deleted file mode 100644 index b37d2d98c72..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_8.RULE b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_8.RULE index f20e1304aed..be2eff348df 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.3-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_8.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_8.yml deleted file mode 100644 index a8ad4ce15e0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index 873195cb113..59c2199b7ac 100644 --- 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 @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.3-invariants-or-later +--- + https://licenses.nuget.org/GFDL-1.3-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_9.yml b/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_9.yml deleted file mode 100644 index 62c93e13a43..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-invariants-or-later_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.3-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_1.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_1.RULE index bf215332428..bad647adb05 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_1.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_1.yml deleted file mode 100644 index 29725e11f44..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_10.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_10.RULE index bdacb591ce8..e667494d122 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.3-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_10.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_10.yml deleted file mode 100644 index 34e43b6d48e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_11.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_11.RULE index 97bce124ec6..67a596d95d1 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-no-invariants-only +--- + {{GFDL-1.3-no-invariants-only}} https://spdx.org/licenses/GFDL-1.3-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_11.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_11.yml deleted file mode 100644 index ba02cb0ba80..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_12.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_12.RULE index a0e470165b4..5ceb27e436f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-no-invariants-only +--- + LICENSE {{GFDL-1.3-no-invariants-only}} https://spdx.org/licenses/GFDL-1.3-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_12.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_12.yml deleted file mode 100644 index ba02cb0ba80..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_2.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_2.RULE index 33178c612e5..1ae1a6b36fb 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.3 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_2.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_2.yml deleted file mode 100644 index 29725e11f44..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_3.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_3.RULE index 9a90b6f838f..987428965ea 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.3-no-invariants-only GNU Free Documentation License v1.3 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_3.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_3.yml deleted file mode 100644 index 29725e11f44..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_4.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_4.RULE index 439242b0dab..56e636d2c01 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 only - no invariants GFDL-1.3-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_4.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_4.yml deleted file mode 100644 index 29725e11f44..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_5.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_5.RULE index 27608f7d576..40caaf827ef 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.3-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_5.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_5.yml deleted file mode 100644 index b9a28ecdcc0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_6.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_6.RULE index cbbc9aa4fbc..53afdc430a8 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.3 only - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_6.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_6.yml deleted file mode 100644 index b9a28ecdcc0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_7.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_7.RULE index fef32621fab..92bcd0a1683 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.3-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_7.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_7.yml deleted file mode 100644 index b9a28ecdcc0..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_8.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_8.RULE index cc9a201e604..effa15851de 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.3-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_8.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_8.yml deleted file mode 100644 index 5964029d3bd..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 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 index 554e46576e4..5cafa840e7e 100644 --- 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 @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-no-invariants-only +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.3-no-invariants-only +--- + https://licenses.nuget.org/GFDL-1.3-no-invariants-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_9.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_9.yml deleted file mode 100644 index b9232baa2de..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-only_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-only -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.3-no-invariants-only diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_1.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_1.RULE index 06c886ccbe7..83303416ee2 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_1.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_1.yml deleted file mode 100644 index 346c5e3c9d2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_10.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_10.RULE index 810dff4b2cc..5702e522ccb 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.3-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_10.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_10.yml deleted file mode 100644 index 161d4dab036..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_11.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_11.RULE index c98fb84c35a..a509f8606d3 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_11.RULE @@ -1 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later +--- + {{GFDL-1.3-no-invariants-or-later}} https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_11.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_11.yml deleted file mode 100644 index e57bfcec205..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_12.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_12.RULE index 33268610829..d6d686ea9ba 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_12.RULE @@ -1 +1,8 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later +--- + LICENSE {{GFDL-1.3-no-invariants-or-later}} https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_12.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_12.yml deleted file mode 100644 index e57bfcec205..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_2.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_2.RULE index e6aa981105e..1e29cfd61b5 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.3 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_2.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_2.yml deleted file mode 100644 index 346c5e3c9d2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_3.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_3.RULE index 6e9ede5c012..1110aa452e5 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.3-no-invariants-or-later GNU Free Documentation License v1.3 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_3.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_3.yml deleted file mode 100644 index 346c5e3c9d2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_4.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_4.RULE index fb648d1146b..1d15843e3c7 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 or later - no invariants GFDL-1.3-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_4.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_4.yml deleted file mode 100644 index 346c5e3c9d2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_5.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_5.RULE index 179ca119467..87d7e6ace4a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.3-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_5.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_5.yml deleted file mode 100644 index 6c6d2997044..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_6.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_6.RULE index 5923819bbf4..1fecc0a2d98 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.3 or later - no invariants \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_6.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_6.yml deleted file mode 100644 index 6c6d2997044..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_7.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_7.RULE index af8f0e67a0a..b4fe490295c 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.3-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_7.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_7.yml deleted file mode 100644 index 6c6d2997044..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_8.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_8.RULE index 8abd8ca974a..05b44d659ef 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + gfdl-1.3-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_8.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_8.yml deleted file mode 100644 index 320d4603f45..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_9.RULE b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_9.RULE index 40645f8f1fb..078b12ab736 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-no-invariants-or-later +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.3-no-invariants-or-later +--- + https://licenses.nuget.org/GFDL-1.3-no-invariants-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_9.yml b/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_9.yml deleted file mode 100644 index b8e55a069b5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-no-invariants-or-later_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-no-invariants-or-later -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.3-no-invariants-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus.RULE index b4a91c5b987..a101e677e57 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.3-plus +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; diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus.yml b/src/licensedcode/data/rules/gfdl-1.3-plus.yml deleted file mode 100644 index 75879b17fec..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus2.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus2.RULE index e516a9c7f97..096d903c420 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/fdl-1.3.en.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; with no @@ -6,4 +13,4 @@ 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". -The license itself is at https://www.gnu.org/licenses/fdl-1.3.en.html. \ No newline at end of file +The license itself is at https://www.gnu.org/licenses/fdl-1.3.en.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus2.yml b/src/licensedcode/data/rules/gfdl-1.3-plus2.yml deleted file mode 100644 index 98220805638..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/fdl-1.3.en.html diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_1.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_1.RULE index 6a115087259..71d87b9574f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 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 page “GNU Free Documentation License”. The copyright and license notices on this page only apply to the text on this page. Any software or copyright-licenses or other similar notices described in this text has its own copyright notice and license, which can usually be found in the distribution or license text itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_1.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_1.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_10.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_10.RULE index 75d12bfcd2a..52c3346c698 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software Foundation; with the diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_10.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_10.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_11.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_11.RULE index 5769e1d2ec7..732c2c8547e 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_11.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_11.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_12.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_12.RULE index dfaa526e2a4..1d8f7231549 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_12.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_12.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_13.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_13.RULE index 3f6f9d2f99e..a6ba042ca4f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_13.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_13.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_13.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_14.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_14.RULE index 8c4c925c4ff..acb4793b824 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_14.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_14.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_14.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_15.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_15.RULE index 784fca699cb..9c33582617b 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_15.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software Foundation; with no diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_15.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_15.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_16.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_16.RULE index a7e8438997c..26ca91a24d3 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_16.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_16.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_16.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_17.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_17.RULE index e9a6022481c..03b65c05424 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_17.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 95 +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.or any later version published by the Free Software diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_17.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_17.yml deleted file mode 100644 index ede77264231..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_18.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_18.RULE index 4a7fb8f61cb..d1968e7cfb0 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_18.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software Foundation; with the diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_18.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_18.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_19.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_19.RULE index 636647b7204..a4b929b9906 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_19.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_19.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.3 +--- + On Debian systems a copy of the complete text of the GNU FDL 1.3 -can be found in /usr/share/common-licenses/GFDL-1.3. +can be found in /usr/share/common-licenses/GFDL-1.3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_19.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_19.yml deleted file mode 100644 index e14c32fccb7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_2.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_2.RULE index cc72b129b09..39a2e2ec8c1 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - GNU Free Documentation License +--- + 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 no diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_2.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_2.yml deleted file mode 100644 index 736e1b87d9d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - GNU Free Documentation License diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_20.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_20.RULE index 892efe1dcd2..3f84af050f3 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_20.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_20.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.3 +--- + On Debian GNU/Linux systems, the complete text of the GNU Free -Documentation License (FDL 1.3) can be found in /usr/share/common-licenses/GFDL-1.3. +Documentation License (FDL 1.3) can be found in /usr/share/common-licenses/GFDL-1.3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_20.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_20.yml deleted file mode 100644 index e14c32fccb7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_21.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_21.RULE index 06f3a717732..acee2d55acf 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_21.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_21.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GFDLv1.​3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_21.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_21.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_22.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_22.RULE index 570892daed8..e0cffa6fb0d 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_22.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_22.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_22.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_22.yml deleted file mode 100644 index 75879b17fec..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_22.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_23.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_23.RULE index 66d370b6ce0..77669445889 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_23.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GFDL +--- + 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 no diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_23.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_23.yml deleted file mode 100644 index 2faddbe061d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GFDL diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_24.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_24.RULE index 5a39acd8ff5..b195a89d457 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_24.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GFDL-3 +--- + 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 no diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_24.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_24.yml deleted file mode 100644 index f73c29e664e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GFDL-3 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_25.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_25.RULE index 865cc8137a7..1bfc3dbee55 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_25.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_25.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_25.yml deleted file mode 100644 index 0bfd074c8eb..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_26.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_26.RULE index 51b8fdcc813..ef2e8eb2823 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_26.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GFDL +--- + 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 no diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_26.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_26.yml deleted file mode 100644 index 2faddbe061d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GFDL diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_27.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_27.RULE index 2432bca4b8e..73940539e2d 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_27.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_27.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_27.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_27.yml deleted file mode 100644 index 3a41351b21f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_28.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_28.RULE index 09c49e4af52..4841cc822ab 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_28.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_28.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_28.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_28.yml deleted file mode 100644 index 3a41351b21f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_29.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_29.RULE index 2c1e248adec..63f2ec3e128 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_29.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_29.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.3-or-later GNU Free Documentation License v1.3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_29.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_29.yml deleted file mode 100644 index 3a41351b21f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_3.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_3.RULE index d5e616ac452..5efd1b598bc 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GFDL +--- + 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 no diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_3.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_3.yml deleted file mode 100644 index 2faddbe061d..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GFDL diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_30.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_30.RULE index e57898a9095..344b46086fa 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_30.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_30.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 or later GFDL-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_30.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_30.yml deleted file mode 100644 index 3a41351b21f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_31.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_31.RULE index 725f304de86..a2ec4a84a02 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_31.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_31.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_31.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_31.yml deleted file mode 100644 index e23c8c77ced..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_32.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_32.RULE index b6cad88854f..f6b13ccbcb5 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_32.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_32.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_32.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_32.yml deleted file mode 100644 index e23c8c77ced..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_33.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_33.RULE index f0aa7b4cb7a..d6dbcf1abf2 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_33.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_33.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_33.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_33.yml deleted file mode 100644 index e23c8c77ced..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_34.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_34.RULE index 554a968d894..cb7d9942712 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_34.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_34.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.3-or-later +--- + https://licenses.nuget.org/GFDL-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_34.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_34.yml deleted file mode 100644 index 5dfea5ea215..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.3-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_35.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_35.RULE index fa51e4261a7..673d87eb05f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_35.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_35.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_35.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_35.yml deleted file mode 100644 index 73e2c193bb2..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_36.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_36.RULE index d3039a29cd0..2488b5a730e 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_36.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_36.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-or-later +--- + {{GFDL-1.3-or-later}} https://spdx.org/licenses/GFDL-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_36.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_36.yml deleted file mode 100644 index fd5c27b871f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_37.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_37.RULE index e7eae749d09..d4e9d30361f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_37.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_37.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3 +--- + {{GFDL-1.3}} https://spdx.org/licenses/GFDL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_37.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_37.yml deleted file mode 100644 index 024cf8da588..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_38.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_38.RULE index 1325bf24b87..3920972e15c 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_38.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_38.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-or-later +--- + LICENSE {{GFDL-1.3-or-later}} https://spdx.org/licenses/GFDL-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_38.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_38.yml deleted file mode 100644 index fd5c27b871f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_39.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_39.RULE index 59e97ab35a2..b46e19e861f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_39.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_39.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3 +--- + LICENSE {{GFDL-1.3+}} https://spdx.org/licenses/GFDL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_39.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_39.yml deleted file mode 100644 index 024cf8da588..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_4.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_4.RULE index 9aca6303176..50e74f8dadb 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software Foundation; with no diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_4.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_4.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_40.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_40.RULE index 3d9b7981eca..c6b851af7cd 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_40.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_40.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3 +--- + {{GFDL-1.3+}} https://spdx.org/licenses/GFDL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_40.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_40.yml deleted file mode 100644 index 024cf8da588..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_5.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_5.RULE index 70a16b7b8e4..2301471f8f1 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +--- + The info manual is released under the terms of the GNU Free Documentation License as published by the Free Software Foundation; either version 1.3, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_5.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_5.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_6.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_6.RULE index 37810420c01..27a58a8fa01 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.3 +--- + 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 no diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_6.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_6.yml deleted file mode 100644 index 2d9a736e6fc..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_7.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_7.RULE index 0b61c705a4f..a9db13d0631 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gfdl-1.3-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.3 or any later version published by the Free Software Foundation; diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_7.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_7.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_8.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_8.RULE index 565d86b86e9..b7350dc98d1 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_8.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU Free Documentation License, Version 1.3 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_8.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_8.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_9.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_9.RULE index d15446b1ff7..768765702cc 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_9.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.3-plus +is_license_notice: yes +relevance: 100 +--- + This file is distributed under GFDL 1.3 or any later version published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_9.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_9.yml deleted file mode 100644 index a53ce6500a5..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_url_1.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_url_1.RULE index 6088ebe32e4..12a008faed7 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_url_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.3-or-later +--- + https://spdx.org/licenses/gfdl-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_url_1.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_url_1.yml deleted file mode 100644 index 3d285305e97..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.3-or-later diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_url_2.RULE b/src/licensedcode/data/rules/gfdl-1.3-plus_url_2.RULE index 092b1dbc0ae..54866c32d8d 100644 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_url_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.3-or-later.html +--- + https://spdx.org/licenses/gfdl-1.3-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3-plus_url_2.yml b/src/licensedcode/data/rules/gfdl-1.3-plus_url_2.yml deleted file mode 100644 index 0180b8a9d17..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.3-or-later.html diff --git a/src/licensedcode/data/rules/gfdl-1.3_1.RULE b/src/licensedcode/data/rules/gfdl-1.3_1.RULE index 29e0282e744..394f32225ae 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/fdl-1.3.txt +--- + http://www.gnu.org/licenses/fdl-1.3.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_1.yml b/src/licensedcode/data/rules/gfdl-1.3_1.yml deleted file mode 100644 index c51aa73eb2f..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/fdl-1.3.txt diff --git a/src/licensedcode/data/rules/gfdl-1.3_10.RULE b/src/licensedcode/data/rules/gfdl-1.3_10.RULE index da8c6ab661a..a531475a99a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_10.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_10.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gfdl-1.3 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.3, 3 November 2008 @@ -416,4 +429,4 @@ in part into the MMC, (1) had no cover texts or invariant sections, and The operator of an MMC Site may republish an MMC contained in the site under CC-BY-SA on the same site at any time before August 1, 2009, -provided the MMC is eligible for relicensing. +provided the MMC is eligible for relicensing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_10.yml b/src/licensedcode/data/rules/gfdl-1.3_10.yml deleted file mode 100644 index 00b2a1b1340..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_10.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gfdl-1.3 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.3_11.RULE b/src/licensedcode/data/rules/gfdl-1.3_11.RULE index bd87e3dea80..f265462badb 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_11.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/software/gawk/manual/html_node/GNU-Free-Documentation-License.html +--- + https://www.gnu.org/software/gawk/manual/html_node/GNU-Free-Documentation-License.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_11.yml b/src/licensedcode/data/rules/gfdl-1.3_11.yml deleted file mode 100644 index 4f41deb85ae..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/software/gawk/manual/html_node/GNU-Free-Documentation-License.html diff --git a/src/licensedcode/data/rules/gfdl-1.3_12.RULE b/src/licensedcode/data/rules/gfdl-1.3_12.RULE index 167e35a7ef2..63be1839b88 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_12.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_12.RULE @@ -1,7 +1,15 @@ +--- +license_expression: gfdl-1.3 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/fdl.html +--- + ** GNU Free Documentation License Usage ** Alternatively, this file may be used under the terms of the GNU Free ** Documentation License version 1.3 as published by the Free Software ** Foundation and appearing in the file included in the packaging of ** this file. Please review the following information to ensure ** the GNU Free Documentation License version 1.3 requirements -** will be met: https://www.gnu.org/copyleft/fdl.html. +** will be met: https://www.gnu.org/copyleft/fdl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_12.yml b/src/licensedcode/data/rules/gfdl-1.3_12.yml deleted file mode 100644 index 085a5cef454..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.3_13.RULE b/src/licensedcode/data/rules/gfdl-1.3_13.RULE index cf2c8c231cd..caf1165d257 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_13.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_13.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GFDL-1.3 GNU Free Documentation License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_13.yml b/src/licensedcode/data/rules/gfdl-1.3_13.yml deleted file mode 100644 index 363ea9af6ee..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.3_14.RULE b/src/licensedcode/data/rules/gfdl-1.3_14.RULE index ee89cd24867..fc9a3fee4f0 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_14.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_14.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Free Documentation License v1.3 GFDL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_14.yml b/src/licensedcode/data/rules/gfdl-1.3_14.yml deleted file mode 100644 index 363ea9af6ee..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.3_15.RULE b/src/licensedcode/data/rules/gfdl-1.3_15.RULE index 1abb72a5f1e..1989fb17703 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_15.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_15.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GFDL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_15.yml b/src/licensedcode/data/rules/gfdl-1.3_15.yml deleted file mode 100644 index 363ea9af6ee..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.3_16.RULE b/src/licensedcode/data/rules/gfdl-1.3_16.RULE index b7a20780646..21921809904 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_16.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_16.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Free Documentation License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_16.yml b/src/licensedcode/data/rules/gfdl-1.3_16.yml deleted file mode 100644 index 363ea9af6ee..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gfdl-1.3_17.RULE b/src/licensedcode/data/rules/gfdl-1.3_17.RULE index 7eef5e0c556..03066f47a39 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_17.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_17.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_17.yml b/src/licensedcode/data/rules/gfdl-1.3_17.yml deleted file mode 100644 index 7d2e2da6a27..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3_18.RULE b/src/licensedcode/data/rules/gfdl-1.3_18.RULE index 66291fdf148..f48d7c1f104 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_18.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_18.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Free Documentation License v1.3 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_18.yml b/src/licensedcode/data/rules/gfdl-1.3_18.yml deleted file mode 100644 index 7d2e2da6a27..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3_19.RULE b/src/licensedcode/data/rules/gfdl-1.3_19.RULE index 11a8290809a..cb6eab0873f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_19.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_19.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GFDL-1.3-only GNU Free Documentation License v1.3 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_19.yml b/src/licensedcode/data/rules/gfdl-1.3_19.yml deleted file mode 100644 index 7d2e2da6a27..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3_2.RULE b/src/licensedcode/data/rules/gfdl-1.3_2.RULE index ac57b0c6816..2a258d02427 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License V 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_2.yml b/src/licensedcode/data/rules/gfdl-1.3_2.yml deleted file mode 100644 index 5577f1a9a98..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3_20.RULE b/src/licensedcode/data/rules/gfdl-1.3_20.RULE index 5b8f1bb93bd..81ad11f9902 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_20.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_20.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Free Documentation License v1.3 only GFDL-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_20.yml b/src/licensedcode/data/rules/gfdl-1.3_20.yml deleted file mode 100644 index 7d2e2da6a27..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3_21.RULE b/src/licensedcode/data/rules/gfdl-1.3_21.RULE index e3a6f7cc1b2..a2c91dd76c7 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_21.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_21.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GFDL-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_21.yml b/src/licensedcode/data/rules/gfdl-1.3_21.yml deleted file mode 100644 index 00e5f884c0e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3_22.RULE b/src/licensedcode/data/rules/gfdl-1.3_22.RULE index 450ab4e794c..5da6fbb849f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_22.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_22.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.3 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_22.yml b/src/licensedcode/data/rules/gfdl-1.3_22.yml deleted file mode 100644 index 00e5f884c0e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3_23.RULE b/src/licensedcode/data/rules/gfdl-1.3_23.RULE index 8ddc0d70917..539646b8a7f 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_23.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_23.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GFDL-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_23.yml b/src/licensedcode/data/rules/gfdl-1.3_23.yml deleted file mode 100644 index 00e5f884c0e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3_24.RULE b/src/licensedcode/data/rules/gfdl-1.3_24.RULE index 490549c1efa..49b37e0dc3a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_24.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_24.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Free Documentation License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_24.yml b/src/licensedcode/data/rules/gfdl-1.3_24.yml deleted file mode 100644 index 00e5f884c0e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gfdl-1.3_25.RULE b/src/licensedcode/data/rules/gfdl-1.3_25.RULE index 653de09d295..e1b01c743dc 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_25.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_25.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GFDL-1.3-only +--- + https://licenses.nuget.org/GFDL-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_25.yml b/src/licensedcode/data/rules/gfdl-1.3_25.yml deleted file mode 100644 index bd769a85a75..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GFDL-1.3-only diff --git a/src/licensedcode/data/rules/gfdl-1.3_26.RULE b/src/licensedcode/data/rules/gfdl-1.3_26.RULE index 95068cf753a..e4bf2f7c98b 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_26.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_26.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GFDL-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_26.yml b/src/licensedcode/data/rules/gfdl-1.3_26.yml deleted file mode 100644 index 5577f1a9a98..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3_27.RULE b/src/licensedcode/data/rules/gfdl-1.3_27.RULE index 0bbfa1dca84..2566e10b466 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_27.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_27.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3 +--- + LICENSE {{GFDL-1.3}} https://spdx.org/licenses/GFDL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_27.yml b/src/licensedcode/data/rules/gfdl-1.3_27.yml deleted file mode 100644 index e3ecd890679..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3_28.RULE b/src/licensedcode/data/rules/gfdl-1.3_28.RULE index 9b830c5fa31..2e5bfac7029 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_28.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_28.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-only +--- + {{GFDL-1.3-only}} https://spdx.org/licenses/GFDL-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_28.yml b/src/licensedcode/data/rules/gfdl-1.3_28.yml deleted file mode 100644 index d648c9a9f52..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-only diff --git a/src/licensedcode/data/rules/gfdl-1.3_29.RULE b/src/licensedcode/data/rules/gfdl-1.3_29.RULE index 789932902a0..fe35cedc90e 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_29.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_29.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GFDL-1.3-only +--- + LICENSE {{GFDL-1.3-only}} https://spdx.org/licenses/GFDL-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_29.yml b/src/licensedcode/data/rules/gfdl-1.3_29.yml deleted file mode 100644 index d648c9a9f52..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GFDL-1.3-only diff --git a/src/licensedcode/data/rules/gfdl-1.3_3.RULE b/src/licensedcode/data/rules/gfdl-1.3_3.RULE index 9d435dbbeed..1efb56e0f4a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_3.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +--- + GNU Free Documentation License V1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_3.yml b/src/licensedcode/data/rules/gfdl-1.3_3.yml deleted file mode 100644 index 5577f1a9a98..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3_4.RULE b/src/licensedcode/data/rules/gfdl-1.3_4.RULE index c9b75435e77..0c88a84b516 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_4.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3 +is_license_notice: yes +relevance: 100 +--- + LICENSE INFORMATION: GFDL 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_4.yml b/src/licensedcode/data/rules/gfdl-1.3_4.yml deleted file mode 100644 index 23d1c954ad6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3_5.RULE b/src/licensedcode/data/rules/gfdl-1.3_5.RULE index 939612eb4d1..67c96c9f599 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_5.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3 +is_license_notice: yes +relevance: 100 +--- + LICENSE : GFDL 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_5.yml b/src/licensedcode/data/rules/gfdl-1.3_5.yml deleted file mode 100644 index 23d1c954ad6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3_6.RULE b/src/licensedcode/data/rules/gfdl-1.3_6.RULE index 8f24013637a..308b5c9d07e 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_6.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +--- + 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_6.yml b/src/licensedcode/data/rules/gfdl-1.3_6.yml deleted file mode 100644 index 5577f1a9a98..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3_7.RULE b/src/licensedcode/data/rules/gfdl-1.3_7.RULE index 77855116271..3eb0c293917 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_7.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_7.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/software/gawk/manual/html_node/GNU-Free-Documentation-License.html +--- + http://www.gnu.org/software/gawk/manual/html_node/GNU-Free-Documentation-License.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_7.yml b/src/licensedcode/data/rules/gfdl-1.3_7.yml deleted file mode 100644 index a08cdacd1b8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/software/gawk/manual/html_node/GNU-Free-Documentation-License.html diff --git a/src/licensedcode/data/rules/gfdl-1.3_8.RULE b/src/licensedcode/data/rules/gfdl-1.3_8.RULE index 5de10242c69..cb1972b6769 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_8.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_8.RULE @@ -1 +1,7 @@ +--- +license_expression: gfdl-1.3 +is_license_notice: yes +relevance: 100 +--- + The documentation is distributed under the terms of the GNU Free Documentation License (FDL 1.3): \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_8.yml b/src/licensedcode/data/rules/gfdl-1.3_8.yml deleted file mode 100644 index 23d1c954ad6..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gfdl-1.3 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gfdl-1.3_9.RULE b/src/licensedcode/data/rules/gfdl-1.3_9.RULE index 65cecfc6def..d59cc77749b 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_9.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GFDL-1.3 +--- + On Debian GNU/Linux systems a copy of the complete text of the GNU FDL 1.3 -can be found in /usr/share/common-licenses/GFDL-1.3. +can be found in /usr/share/common-licenses/GFDL-1.3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_9.yml b/src/licensedcode/data/rules/gfdl-1.3_9.yml deleted file mode 100644 index 1e468e18b9b..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3_ft_no_add.RULE b/src/licensedcode/data/rules/gfdl-1.3_ft_no_add.RULE index 51f68b6ae85..8e5efd1f969 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_ft_no_add.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_ft_no_add.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gfdl-1.3 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/copyleft +--- + GNU Free Documentation License Version 1.3, 3 November 2008 @@ -416,4 +428,4 @@ in part into the MMC, (1) had no cover texts or invariant sections, and The operator of an MMC Site may republish an MMC contained in the site under CC-BY-SA on the same site at any time before August 1, 2009, -provided the MMC is eligible for relicensing. +provided the MMC is eligible for relicensing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_ft_no_add.yml b/src/licensedcode/data/rules/gfdl-1.3_ft_no_add.yml deleted file mode 100644 index 37538301b03..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_ft_no_add.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gfdl-1.3 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/copyleft diff --git a/src/licensedcode/data/rules/gfdl-1.3_qt.RULE b/src/licensedcode/data/rules/gfdl-1.3_qt.RULE index a9d33ee3f4f..c00d32dec15 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_qt.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_qt.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gfdl-1.3 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/fdl.html +--- + ** GNU Free Documentation License Usage ** Alternatively, this file may be used under the terms of the GNU Free ** Documentation License version 1.3 as published by the Free Software ** Foundation and appearing in the file included in the packaging of ** this file. Please review the following information to ensure ** the GNU Free Documentation License version 1.3 requirements -** will be met: http://www.gnu.org/copyleft/fdl.html. +** will be met: http://www.gnu.org/copyleft/fdl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_qt.yml b/src/licensedcode/data/rules/gfdl-1.3_qt.yml deleted file mode 100644 index d42e14df6b8..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_qt.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.3 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/fdl.html diff --git a/src/licensedcode/data/rules/gfdl-1.3_url_1.RULE b/src/licensedcode/data/rules/gfdl-1.3_url_1.RULE index 99aa25c5241..4e7008f0ba3 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_url_1.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.3-only +--- + https://spdx.org/licenses/gfdl-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_url_1.yml b/src/licensedcode/data/rules/gfdl-1.3_url_1.yml deleted file mode 100644 index 3d7812884ba..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.3-only diff --git a/src/licensedcode/data/rules/gfdl-1.3_url_2.RULE b/src/licensedcode/data/rules/gfdl-1.3_url_2.RULE index c12b3402d08..546b7088f9a 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_url_2.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gfdl-1.3-only.html +--- + https://spdx.org/licenses/gfdl-1.3-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_url_2.yml b/src/licensedcode/data/rules/gfdl-1.3_url_2.yml deleted file mode 100644 index 5d2ce6a89ec..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gfdl-1.3-only.html diff --git a/src/licensedcode/data/rules/gfdl-1.3_url_badge.RULE b/src/licensedcode/data/rules/gfdl-1.3_url_badge.RULE index a32d28b8575..601522b7dcf 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_url_badge.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-FDL%20v1.3-blue.svg + - https://www.gnu.org/licenses/fdl-1.3 +--- + [![License: FDL 1.3](https://img.shields.io/badge/License-FDL%20v1.3-blue.svg)](https://www.gnu.org/licenses/fdl-1.3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_url_badge.yml b/src/licensedcode/data/rules/gfdl-1.3_url_badge.yml deleted file mode 100644 index 4e6bbaca67e..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-FDL%20v1.3-blue.svg - - https://www.gnu.org/licenses/fdl-1.3 diff --git a/src/licensedcode/data/rules/gfdl-1.3_url_glc_121.RULE b/src/licensedcode/data/rules/gfdl-1.3_url_glc_121.RULE index f4454a05a29..5be2bb4269b 100644 --- a/src/licensedcode/data/rules/gfdl-1.3_url_glc_121.RULE +++ b/src/licensedcode/data/rules/gfdl-1.3_url_glc_121.RULE @@ -1 +1,9 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/fdl-1.3.txt +--- + https://www.gnu.org/licenses/fdl-1.3.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.3_url_glc_121.yml b/src/licensedcode/data/rules/gfdl-1.3_url_glc_121.yml deleted file mode 100644 index 3bced4de4b7..00000000000 --- a/src/licensedcode/data/rules/gfdl-1.3_url_glc_121.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/fdl-1.3.txt diff --git a/src/licensedcode/data/rules/ghostscript-1988_1.RULE b/src/licensedcode/data/rules/ghostscript-1988_1.RULE index 0448078db8a..f86f2f73460 100644 --- a/src/licensedcode/data/rules/ghostscript-1988_1.RULE +++ b/src/licensedcode/data/rules/ghostscript-1988_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ghostscript-1988 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1988 Richard M. Stallman + - Copyright (c) 1989 Aladdin Enterprises +ignorable_holders: + - Aladdin Enterprises + - Richard M. Stallman +--- + ansi2knr is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the @@ -169,4 +180,4 @@ PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) GHOSTSCRIPT, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. --------------------- End of file COPYLEFT ------------------------------ +-------------------- End of file COPYLEFT ------------------------------ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ghostscript-1988_1.yml b/src/licensedcode/data/rules/ghostscript-1988_1.yml deleted file mode 100644 index e2f9569443b..00000000000 --- a/src/licensedcode/data/rules/ghostscript-1988_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ghostscript-1988 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1988 Richard M. Stallman - - Copyright (c) 1989 Aladdin Enterprises -ignorable_holders: - - Aladdin Enterprises - - Richard M. Stallman diff --git a/src/licensedcode/data/rules/ghostscript-1988_2.RULE b/src/licensedcode/data/rules/ghostscript-1988_2.RULE index b66cfbd0f1a..0538400532b 100644 --- a/src/licensedcode/data/rules/ghostscript-1988_2.RULE +++ b/src/licensedcode/data/rules/ghostscript-1988_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ghostscript-1988 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any diff --git a/src/licensedcode/data/rules/ghostscript-1988_2.yml b/src/licensedcode/data/rules/ghostscript-1988_2.yml deleted file mode 100644 index c012b09c524..00000000000 --- a/src/licensedcode/data/rules/ghostscript-1988_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ghostscript-1988 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/ghostscript-1988_3.RULE b/src/licensedcode/data/rules/ghostscript-1988_3.RULE index 56354f1cfb4..5463a1a99ee 100644 --- a/src/licensedcode/data/rules/ghostscript-1988_3.RULE +++ b/src/licensedcode/data/rules/ghostscript-1988_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ghostscript-1988 +is_license_reference: yes +relevance: 100 +--- + Ghostscript General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ghostscript-1988_3.yml b/src/licensedcode/data/rules/ghostscript-1988_3.yml deleted file mode 100644 index 0c2e28ace39..00000000000 --- a/src/licensedcode/data/rules/ghostscript-1988_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ghostscript-1988 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ghostscript-1988_4.RULE b/src/licensedcode/data/rules/ghostscript-1988_4.RULE index 98a9a3d7522..a2f072cc9a0 100644 --- a/src/licensedcode/data/rules/ghostscript-1988_4.RULE +++ b/src/licensedcode/data/rules/ghostscript-1988_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ghostscript-1988 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Everyone is granted permission to copy, modify and redistribute Ghostscript, but only under the conditions diff --git a/src/licensedcode/data/rules/ghostscript-1988_4.yml b/src/licensedcode/data/rules/ghostscript-1988_4.yml deleted file mode 100644 index 3db9e00cd28..00000000000 --- a/src/licensedcode/data/rules/ghostscript-1988_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ghostscript-1988 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gitlab-ee_1.RULE b/src/licensedcode/data/rules/gitlab-ee_1.RULE index aefafabfae2..7e535403bff 100644 --- a/src/licensedcode/data/rules/gitlab-ee_1.RULE +++ b/src/licensedcode/data/rules/gitlab-ee_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gitlab-ee +is_license_reference: yes +relevance: 100 +--- + The GitLab Enterprise Edition (EE) license (the “EE License”) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gitlab-ee_1.yml b/src/licensedcode/data/rules/gitlab-ee_1.yml deleted file mode 100644 index 38a55eb01ab..00000000000 --- a/src/licensedcode/data/rules/gitlab-ee_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gitlab-ee -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gitlab-ee_2.RULE b/src/licensedcode/data/rules/gitlab-ee_2.RULE index 0469adb6972..b1ab5a543ad 100644 --- a/src/licensedcode/data/rules/gitlab-ee_2.RULE +++ b/src/licensedcode/data/rules/gitlab-ee_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gitlab-ee +is_license_text: yes +ignorable_urls: + - https://about.gitlab.com/terms/#subscription +--- + With regard to the GitLab Software: This software and associated documentation files (the "Software") may only be diff --git a/src/licensedcode/data/rules/gitlab-ee_2.yml b/src/licensedcode/data/rules/gitlab-ee_2.yml deleted file mode 100644 index d47ceb3633d..00000000000 --- a/src/licensedcode/data/rules/gitlab-ee_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gitlab-ee -is_license_text: yes -ignorable_urls: - - https://about.gitlab.com/terms/#subscription diff --git a/src/licensedcode/data/rules/gitlab-ee_3.RULE b/src/licensedcode/data/rules/gitlab-ee_3.RULE index 12ae2e9fb04..f55618aa917 100644 --- a/src/licensedcode/data/rules/gitlab-ee_3.RULE +++ b/src/licensedcode/data/rules/gitlab-ee_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gitlab-ee +is_license_text: yes +ignorable_urls: + - https://about.gitlab.com/terms/#subscription +--- + 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 GitLab Subscription Terms of Service, available diff --git a/src/licensedcode/data/rules/gitlab-ee_3.yml b/src/licensedcode/data/rules/gitlab-ee_3.yml deleted file mode 100644 index d47ceb3633d..00000000000 --- a/src/licensedcode/data/rules/gitlab-ee_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gitlab-ee -is_license_text: yes -ignorable_urls: - - https://about.gitlab.com/terms/#subscription diff --git a/src/licensedcode/data/rules/gitlab-ee_4.RULE b/src/licensedcode/data/rules/gitlab-ee_4.RULE index 3990aeb2ab1..22e89d766bf 100644 --- a/src/licensedcode/data/rules/gitlab-ee_4.RULE +++ b/src/licensedcode/data/rules/gitlab-ee_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gitlab-ee +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This code is distributed under the GitLab Enterprise Edition (EE) license, see the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gitlab-ee_4.yml b/src/licensedcode/data/rules/gitlab-ee_4.yml deleted file mode 100644 index 1cdfa61df92..00000000000 --- a/src/licensedcode/data/rules/gitlab-ee_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gitlab-ee -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gitlab-ee_5.RULE b/src/licensedcode/data/rules/gitlab-ee_5.RULE index 12c30a67c7a..4c2e9a521d4 100644 --- a/src/licensedcode/data/rules/gitlab-ee_5.RULE +++ b/src/licensedcode/data/rules/gitlab-ee_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gitlab-ee +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://about.gitlab.com/terms/#subscription +--- + The GitLab Enterprise Edition (EE) license (the “EE License”) With regard to the GitLab Software: @@ -40,4 +48,4 @@ SOFTWARE. For all third party components incorporated into the GitLab Software, those components are licensed under the original license provided by the owner of the -applicable component. +applicable component. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gitlab-ee_5.yml b/src/licensedcode/data/rules/gitlab-ee_5.yml deleted file mode 100644 index aded0277dd6..00000000000 --- a/src/licensedcode/data/rules/gitlab-ee_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gitlab-ee -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://about.gitlab.com/terms/#subscription diff --git a/src/licensedcode/data/rules/gl2ps_1.RULE b/src/licensedcode/data/rules/gl2ps_1.RULE index 25806199067..6e220702969 100644 --- a/src/licensedcode/data/rules/gl2ps_1.RULE +++ b/src/licensedcode/data/rules/gl2ps_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gl2ps +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2003, Christophe Geuzaine +ignorable_holders: + - Christophe Geuzaine +--- + GL2PS LICENSE Version 2, November 2003 Copyright (C) 2003, Christophe Geuzaine Permission to use, copy, and distribute this software and its documentation diff --git a/src/licensedcode/data/rules/gl2ps_1.yml b/src/licensedcode/data/rules/gl2ps_1.yml deleted file mode 100644 index aecb4235530..00000000000 --- a/src/licensedcode/data/rules/gl2ps_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gl2ps -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2003, Christophe Geuzaine -ignorable_holders: - - Christophe Geuzaine diff --git a/src/licensedcode/data/rules/gl2ps_10.RULE b/src/licensedcode/data/rules/gl2ps_10.RULE index e3d264e5709..16d9b33852c 100644 --- a/src/licensedcode/data/rules/gl2ps_10.RULE +++ b/src/licensedcode/data/rules/gl2ps_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gl2ps +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GL2PS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_10.yml b/src/licensedcode/data/rules/gl2ps_10.yml deleted file mode 100644 index d0d5952c846..00000000000 --- a/src/licensedcode/data/rules/gl2ps_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gl2ps_11.RULE b/src/licensedcode/data/rules/gl2ps_11.RULE index 8feaf7db29f..c2fe4a4fc9e 100644 --- a/src/licensedcode/data/rules/gl2ps_11.RULE +++ b/src/licensedcode/data/rules/gl2ps_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gl2ps +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GL2PS +--- + LICENSE {{GL2PS}} https://spdx.org/licenses/GL2PS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_11.yml b/src/licensedcode/data/rules/gl2ps_11.yml deleted file mode 100644 index e6a4477045a..00000000000 --- a/src/licensedcode/data/rules/gl2ps_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GL2PS diff --git a/src/licensedcode/data/rules/gl2ps_12.RULE b/src/licensedcode/data/rules/gl2ps_12.RULE index f965a8485af..c3cd7ff194e 100644 --- a/src/licensedcode/data/rules/gl2ps_12.RULE +++ b/src/licensedcode/data/rules/gl2ps_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gl2ps +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GL2PS +--- + {{GL2PS}} https://spdx.org/licenses/GL2PS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_12.yml b/src/licensedcode/data/rules/gl2ps_12.yml deleted file mode 100644 index e6a4477045a..00000000000 --- a/src/licensedcode/data/rules/gl2ps_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GL2PS diff --git a/src/licensedcode/data/rules/gl2ps_2.RULE b/src/licensedcode/data/rules/gl2ps_2.RULE index aa18bb360ee..a79b119cdaa 100644 --- a/src/licensedcode/data/rules/gl2ps_2.RULE +++ b/src/licensedcode/data/rules/gl2ps_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gl2ps +is_license_reference: yes +relevance: 100 +--- + GL2PS GL2PS License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_2.yml b/src/licensedcode/data/rules/gl2ps_2.yml deleted file mode 100644 index d0d5952c846..00000000000 --- a/src/licensedcode/data/rules/gl2ps_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gl2ps_3.RULE b/src/licensedcode/data/rules/gl2ps_3.RULE index 6c97f9bb245..824d7cbbc51 100644 --- a/src/licensedcode/data/rules/gl2ps_3.RULE +++ b/src/licensedcode/data/rules/gl2ps_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gl2ps +is_license_reference: yes +relevance: 100 +--- + GL2PS License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_3.yml b/src/licensedcode/data/rules/gl2ps_3.yml deleted file mode 100644 index d0d5952c846..00000000000 --- a/src/licensedcode/data/rules/gl2ps_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gl2ps_4.RULE b/src/licensedcode/data/rules/gl2ps_4.RULE index 0d5a2d59885..11c4a808539 100644 --- a/src/licensedcode/data/rules/gl2ps_4.RULE +++ b/src/licensedcode/data/rules/gl2ps_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gl2ps +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GL2PS License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_4.yml b/src/licensedcode/data/rules/gl2ps_4.yml deleted file mode 100644 index 893e2d1298e..00000000000 --- a/src/licensedcode/data/rules/gl2ps_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gl2ps_5.RULE b/src/licensedcode/data/rules/gl2ps_5.RULE index 97b7c519f63..faaf8d2a90a 100644 --- a/src/licensedcode/data/rules/gl2ps_5.RULE +++ b/src/licensedcode/data/rules/gl2ps_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gl2ps +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GL2PS License GL2PS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_5.yml b/src/licensedcode/data/rules/gl2ps_5.yml deleted file mode 100644 index 893e2d1298e..00000000000 --- a/src/licensedcode/data/rules/gl2ps_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gl2ps_6.RULE b/src/licensedcode/data/rules/gl2ps_6.RULE index 419eb5642fa..3a6266607b5 100644 --- a/src/licensedcode/data/rules/gl2ps_6.RULE +++ b/src/licensedcode/data/rules/gl2ps_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gl2ps +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GL2PS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_6.yml b/src/licensedcode/data/rules/gl2ps_6.yml deleted file mode 100644 index 87051c6e05d..00000000000 --- a/src/licensedcode/data/rules/gl2ps_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gl2ps -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gl2ps_7.RULE b/src/licensedcode/data/rules/gl2ps_7.RULE index 3b4d15b6170..95a1b027eb7 100644 --- a/src/licensedcode/data/rules/gl2ps_7.RULE +++ b/src/licensedcode/data/rules/gl2ps_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gl2ps +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GL2PS License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_7.yml b/src/licensedcode/data/rules/gl2ps_7.yml deleted file mode 100644 index 87051c6e05d..00000000000 --- a/src/licensedcode/data/rules/gl2ps_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gl2ps -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gl2ps_8.RULE b/src/licensedcode/data/rules/gl2ps_8.RULE index 317f14f3496..e165802aa0d 100644 --- a/src/licensedcode/data/rules/gl2ps_8.RULE +++ b/src/licensedcode/data/rules/gl2ps_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gl2ps +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GL2PS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_8.yml b/src/licensedcode/data/rules/gl2ps_8.yml deleted file mode 100644 index 87051c6e05d..00000000000 --- a/src/licensedcode/data/rules/gl2ps_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gl2ps -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gl2ps_9.RULE b/src/licensedcode/data/rules/gl2ps_9.RULE index c43dc241104..816c84f334b 100644 --- a/src/licensedcode/data/rules/gl2ps_9.RULE +++ b/src/licensedcode/data/rules/gl2ps_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gl2ps +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GL2PS +--- + https://licenses.nuget.org/GL2PS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_9.yml b/src/licensedcode/data/rules/gl2ps_9.yml deleted file mode 100644 index 9c011546bfd..00000000000 --- a/src/licensedcode/data/rules/gl2ps_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GL2PS diff --git a/src/licensedcode/data/rules/gl2ps_url_1.RULE b/src/licensedcode/data/rules/gl2ps_url_1.RULE index fa312f8e0ee..b6e84ce056d 100644 --- a/src/licensedcode/data/rules/gl2ps_url_1.RULE +++ b/src/licensedcode/data/rules/gl2ps_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gl2ps +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gl2ps +--- + https://spdx.org/licenses/gl2ps \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_url_1.yml b/src/licensedcode/data/rules/gl2ps_url_1.yml deleted file mode 100644 index c1b68c67e0f..00000000000 --- a/src/licensedcode/data/rules/gl2ps_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gl2ps diff --git a/src/licensedcode/data/rules/gl2ps_url_2.RULE b/src/licensedcode/data/rules/gl2ps_url_2.RULE index 4b35cca72cc..97f81fe335d 100644 --- a/src/licensedcode/data/rules/gl2ps_url_2.RULE +++ b/src/licensedcode/data/rules/gl2ps_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gl2ps +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gl2ps.html +--- + https://spdx.org/licenses/gl2ps.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gl2ps_url_2.yml b/src/licensedcode/data/rules/gl2ps_url_2.yml deleted file mode 100644 index 952aaafbd50..00000000000 --- a/src/licensedcode/data/rules/gl2ps_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gl2ps -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gl2ps.html diff --git a/src/licensedcode/data/rules/glibc-exception-2.0_1.RULE b/src/licensedcode/data/rules/glibc-exception-2.0_1.RULE index 9e3c2afd290..5fd3bde730f 100644 --- a/src/licensedcode/data/rules/glibc-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/glibc-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -17,4 +24,4 @@ file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by - the GNU General Public License.) + the GNU General Public License.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/glibc-exception-2.0_1.yml b/src/licensedcode/data/rules/glibc-exception-2.0_1.yml deleted file mode 100644 index 1edc6a28078..00000000000 --- a/src/licensedcode/data/rules/glibc-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/glibc-exception-2.0_2.RULE b/src/licensedcode/data/rules/glibc-exception-2.0_2.RULE index 12cb97c504a..b572077a3c2 100644 --- a/src/licensedcode/data/rules/glibc-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/glibc-exception-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH mif-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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; version 2. @@ -16,4 +23,4 @@ this file and link it with other files to produce an executable, this file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by -the GNU General Public License.) +the GNU General Public License.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/glibc-exception-2.0_2.yml b/src/licensedcode/data/rules/glibc-exception-2.0_2.yml deleted file mode 100644 index 6303eb49396..00000000000 --- a/src/licensedcode/data/rules/glibc-exception-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH mif-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/glibc-exception-2.0_3.RULE b/src/licensedcode/data/rules/glibc-exception-2.0_3.RULE index 56ebe1aa97a..094e4f00a86 100644 --- a/src/licensedcode/data/rules/glibc-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/glibc-exception-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + 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, or (at your option) any later @@ -17,4 +24,4 @@ you can redistribute it and/or modify it file does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by - the GNU General Public License.) + the GNU General Public License.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/glibc-exception-2.0_3.yml b/src/licensedcode/data/rules/glibc-exception-2.0_3.yml deleted file mode 100644 index 1edc6a28078..00000000000 --- a/src/licensedcode/data/rules/glibc-exception-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/glide.RULE b/src/licensedcode/data/rules/glide.RULE index 64c727d1d37..dbfd0dfd498 100644 --- a/src/licensedcode/data/rules/glide.RULE +++ b/src/licensedcode/data/rules/glide.RULE @@ -1 +1,9 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.users.on.net/~triforce/glidexp/COPYING.txt +--- + http://www.users.on.net/~triforce/glidexp/COPYING.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide.yml b/src/licensedcode/data/rules/glide.yml deleted file mode 100644 index 6a191fbabb2..00000000000 --- a/src/licensedcode/data/rules/glide.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.users.on.net/~triforce/glidexp/COPYING.txt diff --git a/src/licensedcode/data/rules/glide2.RULE b/src/licensedcode/data/rules/glide2.RULE index 185a1df3a01..1ce616366fe 100644 --- a/src/licensedcode/data/rules/glide2.RULE +++ b/src/licensedcode/data/rules/glide2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +--- + 3dfx GLIDE Source Code General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide2.yml b/src/licensedcode/data/rules/glide2.yml deleted file mode 100644 index 813ae229b11..00000000000 --- a/src/licensedcode/data/rules/glide2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/glide3.RULE b/src/licensedcode/data/rules/glide3.RULE index b9928e4e6b2..2a883f96929 100644 --- a/src/licensedcode/data/rules/glide3.RULE +++ b/src/licensedcode/data/rules/glide3.RULE @@ -1 +1,7 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +--- + 3DFX GLIDE GENERAL PUBLIC LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide3.yml b/src/licensedcode/data/rules/glide3.yml deleted file mode 100644 index 813ae229b11..00000000000 --- a/src/licensedcode/data/rules/glide3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/glide_1.RULE b/src/licensedcode/data/rules/glide_1.RULE index 03556ad127c..541910d9834 100644 --- a/src/licensedcode/data/rules/glide_1.RULE +++ b/src/licensedcode/data/rules/glide_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: glide +is_license_notice: yes +ignorable_emails: + - info@3dfx.com +--- + THIS SOFTWARE IS SUBJECT TO COPYRIGHT PROTECTION AND IS OFFERED ONLY PURSUANT TO THE 3DFX GLIDE GENERAL PUBLIC LICENSE. THERE IS NO RIGHT TO USE THE GLIDE TRADEMARK WITHOUT PRIOR WRITTEN PERMISSION OF 3DFX diff --git a/src/licensedcode/data/rules/glide_1.yml b/src/licensedcode/data/rules/glide_1.yml deleted file mode 100644 index 64ac2773d08..00000000000 --- a/src/licensedcode/data/rules/glide_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: glide -is_license_notice: yes -ignorable_emails: - - info@3dfx.com diff --git a/src/licensedcode/data/rules/glide_10.RULE b/src/licensedcode/data/rules/glide_10.RULE index 88668bd1d00..f89382eae8b 100644 --- a/src/licensedcode/data/rules/glide_10.RULE +++ b/src/licensedcode/data/rules/glide_10.RULE @@ -1 +1,7 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Glide \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_10.yml b/src/licensedcode/data/rules/glide_10.yml deleted file mode 100644 index 813ae229b11..00000000000 --- a/src/licensedcode/data/rules/glide_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/glide_11.RULE b/src/licensedcode/data/rules/glide_11.RULE index 9fdff23179a..f58b6f7cfdb 100644 --- a/src/licensedcode/data/rules/glide_11.RULE +++ b/src/licensedcode/data/rules/glide_11.RULE @@ -1 +1,9 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Glide +--- + {{Glide}} https://spdx.org/licenses/Glide \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_11.yml b/src/licensedcode/data/rules/glide_11.yml deleted file mode 100644 index a5d844d8953..00000000000 --- a/src/licensedcode/data/rules/glide_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Glide diff --git a/src/licensedcode/data/rules/glide_12.RULE b/src/licensedcode/data/rules/glide_12.RULE index 60741d65f65..1119ad3c9f9 100644 --- a/src/licensedcode/data/rules/glide_12.RULE +++ b/src/licensedcode/data/rules/glide_12.RULE @@ -1 +1,9 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Glide +--- + LICENSE {{Glide}} https://spdx.org/licenses/Glide \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_12.yml b/src/licensedcode/data/rules/glide_12.yml deleted file mode 100644 index a5d844d8953..00000000000 --- a/src/licensedcode/data/rules/glide_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Glide diff --git a/src/licensedcode/data/rules/glide_2.RULE b/src/licensedcode/data/rules/glide_2.RULE index bcc64488d64..e937ff9e6a5 100644 --- a/src/licensedcode/data/rules/glide_2.RULE +++ b/src/licensedcode/data/rules/glide_2.RULE @@ -1 +1,7 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +--- + Glide 3dfx Glide License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_2.yml b/src/licensedcode/data/rules/glide_2.yml deleted file mode 100644 index 813ae229b11..00000000000 --- a/src/licensedcode/data/rules/glide_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/glide_3.RULE b/src/licensedcode/data/rules/glide_3.RULE index 261fa44e471..1c8ed13ee4c 100644 --- a/src/licensedcode/data/rules/glide_3.RULE +++ b/src/licensedcode/data/rules/glide_3.RULE @@ -1 +1,7 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +--- + 3dfx Glide License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_3.yml b/src/licensedcode/data/rules/glide_3.yml deleted file mode 100644 index 813ae229b11..00000000000 --- a/src/licensedcode/data/rules/glide_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/glide_4.RULE b/src/licensedcode/data/rules/glide_4.RULE index ed8bc122bdd..c8fa69fdfb9 100644 --- a/src/licensedcode/data/rules/glide_4.RULE +++ b/src/licensedcode/data/rules/glide_4.RULE @@ -1 +1,10 @@ +--- +license_expression: glide +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: 3dfx Glide License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_4.yml b/src/licensedcode/data/rules/glide_4.yml deleted file mode 100644 index 92f8516391b..00000000000 --- a/src/licensedcode/data/rules/glide_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glide -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glide_5.RULE b/src/licensedcode/data/rules/glide_5.RULE index d5dd4a971f7..625f0c1af94 100644 --- a/src/licensedcode/data/rules/glide_5.RULE +++ b/src/licensedcode/data/rules/glide_5.RULE @@ -1 +1,10 @@ +--- +license_expression: glide +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + 3dfx Glide License Glide \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_5.yml b/src/licensedcode/data/rules/glide_5.yml deleted file mode 100644 index 92f8516391b..00000000000 --- a/src/licensedcode/data/rules/glide_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glide -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glide_6.RULE b/src/licensedcode/data/rules/glide_6.RULE index 8a7992f4923..1bcccbc8e50 100644 --- a/src/licensedcode/data/rules/glide_6.RULE +++ b/src/licensedcode/data/rules/glide_6.RULE @@ -1 +1,10 @@ +--- +license_expression: glide +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Glide \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_6.yml b/src/licensedcode/data/rules/glide_6.yml deleted file mode 100644 index 0920e65f585..00000000000 --- a/src/licensedcode/data/rules/glide_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glide -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glide_7.RULE b/src/licensedcode/data/rules/glide_7.RULE index c88471fd8a3..31cc26b7b9f 100644 --- a/src/licensedcode/data/rules/glide_7.RULE +++ b/src/licensedcode/data/rules/glide_7.RULE @@ -1 +1,10 @@ +--- +license_expression: glide +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: 3dfx Glide License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_7.yml b/src/licensedcode/data/rules/glide_7.yml deleted file mode 100644 index 0920e65f585..00000000000 --- a/src/licensedcode/data/rules/glide_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glide -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glide_8.RULE b/src/licensedcode/data/rules/glide_8.RULE index 3eff82efd84..9fb5a2fb00f 100644 --- a/src/licensedcode/data/rules/glide_8.RULE +++ b/src/licensedcode/data/rules/glide_8.RULE @@ -1 +1,10 @@ +--- +license_expression: glide +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Glide \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_8.yml b/src/licensedcode/data/rules/glide_8.yml deleted file mode 100644 index 0920e65f585..00000000000 --- a/src/licensedcode/data/rules/glide_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glide -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glide_9.RULE b/src/licensedcode/data/rules/glide_9.RULE index 347ac6de2d9..97e9220c68b 100644 --- a/src/licensedcode/data/rules/glide_9.RULE +++ b/src/licensedcode/data/rules/glide_9.RULE @@ -1 +1,9 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Glide +--- + https://licenses.nuget.org/Glide \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_9.yml b/src/licensedcode/data/rules/glide_9.yml deleted file mode 100644 index 1fd630f4e9e..00000000000 --- a/src/licensedcode/data/rules/glide_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Glide diff --git a/src/licensedcode/data/rules/glide_url_1.RULE b/src/licensedcode/data/rules/glide_url_1.RULE index 68960de57b1..969e460347c 100644 --- a/src/licensedcode/data/rules/glide_url_1.RULE +++ b/src/licensedcode/data/rules/glide_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/glide +--- + https://spdx.org/licenses/glide \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_url_1.yml b/src/licensedcode/data/rules/glide_url_1.yml deleted file mode 100644 index 7aa2eb7911a..00000000000 --- a/src/licensedcode/data/rules/glide_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/glide diff --git a/src/licensedcode/data/rules/glide_url_2.RULE b/src/licensedcode/data/rules/glide_url_2.RULE index 4e32b87252b..afb5f8f91be 100644 --- a/src/licensedcode/data/rules/glide_url_2.RULE +++ b/src/licensedcode/data/rules/glide_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: glide +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/glide.html +--- + https://spdx.org/licenses/glide.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/glide_url_2.yml b/src/licensedcode/data/rules/glide_url_2.yml deleted file mode 100644 index efbf4fe3d0e..00000000000 --- a/src/licensedcode/data/rules/glide_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glide -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/glide.html diff --git a/src/licensedcode/data/rules/glulxe_1.RULE b/src/licensedcode/data/rules/glulxe_1.RULE index d11501766ac..d88d50c8177 100644 --- a/src/licensedcode/data/rules/glulxe_1.RULE +++ b/src/licensedcode/data/rules/glulxe_1.RULE @@ -1 +1,7 @@ +--- +license_expression: glulxe +is_license_reference: yes +relevance: 100 +--- + Glulxe Glulxe License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_1.yml b/src/licensedcode/data/rules/glulxe_1.yml deleted file mode 100644 index 73044baa270..00000000000 --- a/src/licensedcode/data/rules/glulxe_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/glulxe_10.RULE b/src/licensedcode/data/rules/glulxe_10.RULE index b5fef0b778c..3e37b56a2fa 100644 --- a/src/licensedcode/data/rules/glulxe_10.RULE +++ b/src/licensedcode/data/rules/glulxe_10.RULE @@ -1 +1,9 @@ +--- +license_expression: glulxe +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Glulxe +--- + LICENSE {{Glulxe}} https://spdx.org/licenses/Glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_10.yml b/src/licensedcode/data/rules/glulxe_10.yml deleted file mode 100644 index 475ac632915..00000000000 --- a/src/licensedcode/data/rules/glulxe_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Glulxe diff --git a/src/licensedcode/data/rules/glulxe_11.RULE b/src/licensedcode/data/rules/glulxe_11.RULE index 8d410cff456..a15503eee5c 100644 --- a/src/licensedcode/data/rules/glulxe_11.RULE +++ b/src/licensedcode/data/rules/glulxe_11.RULE @@ -1 +1,9 @@ +--- +license_expression: glulxe +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Glulxe +--- + {{Glulxe}} https://spdx.org/licenses/Glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_11.yml b/src/licensedcode/data/rules/glulxe_11.yml deleted file mode 100644 index 475ac632915..00000000000 --- a/src/licensedcode/data/rules/glulxe_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Glulxe diff --git a/src/licensedcode/data/rules/glulxe_2.RULE b/src/licensedcode/data/rules/glulxe_2.RULE index c1698dd742d..3b02c4ef195 100644 --- a/src/licensedcode/data/rules/glulxe_2.RULE +++ b/src/licensedcode/data/rules/glulxe_2.RULE @@ -1 +1,7 @@ +--- +license_expression: glulxe +is_license_reference: yes +relevance: 100 +--- + Glulxe License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_2.yml b/src/licensedcode/data/rules/glulxe_2.yml deleted file mode 100644 index 73044baa270..00000000000 --- a/src/licensedcode/data/rules/glulxe_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/glulxe_3.RULE b/src/licensedcode/data/rules/glulxe_3.RULE index 070018d6e86..800c486dadd 100644 --- a/src/licensedcode/data/rules/glulxe_3.RULE +++ b/src/licensedcode/data/rules/glulxe_3.RULE @@ -1 +1,10 @@ +--- +license_expression: glulxe +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Glulxe License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_3.yml b/src/licensedcode/data/rules/glulxe_3.yml deleted file mode 100644 index 5da6d3fb4d3..00000000000 --- a/src/licensedcode/data/rules/glulxe_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glulxe_4.RULE b/src/licensedcode/data/rules/glulxe_4.RULE index 426997e6b77..7bc950a0238 100644 --- a/src/licensedcode/data/rules/glulxe_4.RULE +++ b/src/licensedcode/data/rules/glulxe_4.RULE @@ -1 +1,10 @@ +--- +license_expression: glulxe +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Glulxe License Glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_4.yml b/src/licensedcode/data/rules/glulxe_4.yml deleted file mode 100644 index 5da6d3fb4d3..00000000000 --- a/src/licensedcode/data/rules/glulxe_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glulxe_5.RULE b/src/licensedcode/data/rules/glulxe_5.RULE index 504c0959726..465e00b4bfd 100644 --- a/src/licensedcode/data/rules/glulxe_5.RULE +++ b/src/licensedcode/data/rules/glulxe_5.RULE @@ -1 +1,10 @@ +--- +license_expression: glulxe +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_5.yml b/src/licensedcode/data/rules/glulxe_5.yml deleted file mode 100644 index ec786aa84d5..00000000000 --- a/src/licensedcode/data/rules/glulxe_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glulxe -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glulxe_6.RULE b/src/licensedcode/data/rules/glulxe_6.RULE index ad21a25f53e..e63b8dcbe9c 100644 --- a/src/licensedcode/data/rules/glulxe_6.RULE +++ b/src/licensedcode/data/rules/glulxe_6.RULE @@ -1 +1,10 @@ +--- +license_expression: glulxe +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Glulxe License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_6.yml b/src/licensedcode/data/rules/glulxe_6.yml deleted file mode 100644 index ec786aa84d5..00000000000 --- a/src/licensedcode/data/rules/glulxe_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glulxe -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glulxe_7.RULE b/src/licensedcode/data/rules/glulxe_7.RULE index 5f4e9cdc0dc..46ac132cfc7 100644 --- a/src/licensedcode/data/rules/glulxe_7.RULE +++ b/src/licensedcode/data/rules/glulxe_7.RULE @@ -1 +1,10 @@ +--- +license_expression: glulxe +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_7.yml b/src/licensedcode/data/rules/glulxe_7.yml deleted file mode 100644 index ec786aa84d5..00000000000 --- a/src/licensedcode/data/rules/glulxe_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glulxe -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glulxe_8.RULE b/src/licensedcode/data/rules/glulxe_8.RULE index b16c0230bd9..7f51466ed57 100644 --- a/src/licensedcode/data/rules/glulxe_8.RULE +++ b/src/licensedcode/data/rules/glulxe_8.RULE @@ -1 +1,9 @@ +--- +license_expression: glulxe +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Glulxe +--- + https://licenses.nuget.org/Glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_8.yml b/src/licensedcode/data/rules/glulxe_8.yml deleted file mode 100644 index e3ec9f1b393..00000000000 --- a/src/licensedcode/data/rules/glulxe_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Glulxe diff --git a/src/licensedcode/data/rules/glulxe_9.RULE b/src/licensedcode/data/rules/glulxe_9.RULE index 50aa0432dcc..d2e94c92a57 100644 --- a/src/licensedcode/data/rules/glulxe_9.RULE +++ b/src/licensedcode/data/rules/glulxe_9.RULE @@ -1 +1,7 @@ +--- +license_expression: glulxe +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_9.yml b/src/licensedcode/data/rules/glulxe_9.yml deleted file mode 100644 index 73044baa270..00000000000 --- a/src/licensedcode/data/rules/glulxe_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/glulxe_url_1.RULE b/src/licensedcode/data/rules/glulxe_url_1.RULE index 309a94f1ba6..b78eca2265c 100644 --- a/src/licensedcode/data/rules/glulxe_url_1.RULE +++ b/src/licensedcode/data/rules/glulxe_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: glulxe +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/glulxe +--- + https://spdx.org/licenses/glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_url_1.yml b/src/licensedcode/data/rules/glulxe_url_1.yml deleted file mode 100644 index 5dfbf0f7631..00000000000 --- a/src/licensedcode/data/rules/glulxe_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/glulxe diff --git a/src/licensedcode/data/rules/glulxe_url_2.RULE b/src/licensedcode/data/rules/glulxe_url_2.RULE index 865ac5debbb..eacd171e254 100644 --- a/src/licensedcode/data/rules/glulxe_url_2.RULE +++ b/src/licensedcode/data/rules/glulxe_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: glulxe +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/glulxe.html +--- + https://spdx.org/licenses/glulxe.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/glulxe_url_2.yml b/src/licensedcode/data/rules/glulxe_url_2.yml deleted file mode 100644 index 6e70bac14e0..00000000000 --- a/src/licensedcode/data/rules/glulxe_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/glulxe.html diff --git a/src/licensedcode/data/rules/glwtpl_1.RULE b/src/licensedcode/data/rules/glwtpl_1.RULE index 708f2adc484..bef9806e877 100644 --- a/src/licensedcode/data/rules/glwtpl_1.RULE +++ b/src/licensedcode/data/rules/glwtpl_1.RULE @@ -1 +1,10 @@ +--- +license_expression: glwtpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Good Luck With That Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_1.yml b/src/licensedcode/data/rules/glwtpl_1.yml deleted file mode 100644 index 25bd7e49607..00000000000 --- a/src/licensedcode/data/rules/glwtpl_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glwtpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glwtpl_10.RULE b/src/licensedcode/data/rules/glwtpl_10.RULE index 72bc5b1dac2..ccbb9e34dfc 100644 --- a/src/licensedcode/data/rules/glwtpl_10.RULE +++ b/src/licensedcode/data/rules/glwtpl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: glwtpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GLWTPL +--- + LICENSE {{GLWTPL}} https://spdx.org/licenses/GLWTPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_10.yml b/src/licensedcode/data/rules/glwtpl_10.yml deleted file mode 100644 index 89926b59c9c..00000000000 --- a/src/licensedcode/data/rules/glwtpl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glwtpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GLWTPL diff --git a/src/licensedcode/data/rules/glwtpl_11.RULE b/src/licensedcode/data/rules/glwtpl_11.RULE index 6e26601dd65..9e060a49e8c 100644 --- a/src/licensedcode/data/rules/glwtpl_11.RULE +++ b/src/licensedcode/data/rules/glwtpl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: glwtpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GLWTPL +--- + {{GLWTPL}} https://spdx.org/licenses/GLWTPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_11.yml b/src/licensedcode/data/rules/glwtpl_11.yml deleted file mode 100644 index 89926b59c9c..00000000000 --- a/src/licensedcode/data/rules/glwtpl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glwtpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GLWTPL diff --git a/src/licensedcode/data/rules/glwtpl_2.RULE b/src/licensedcode/data/rules/glwtpl_2.RULE index b5ca56d48b8..8aa3022b68b 100644 --- a/src/licensedcode/data/rules/glwtpl_2.RULE +++ b/src/licensedcode/data/rules/glwtpl_2.RULE @@ -1 +1,10 @@ +--- +license_expression: glwtpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Good Luck With That Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_2.yml b/src/licensedcode/data/rules/glwtpl_2.yml deleted file mode 100644 index 25bd7e49607..00000000000 --- a/src/licensedcode/data/rules/glwtpl_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glwtpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glwtpl_3.RULE b/src/licensedcode/data/rules/glwtpl_3.RULE index ad41caa2e99..5cd41bfa79a 100644 --- a/src/licensedcode/data/rules/glwtpl_3.RULE +++ b/src/licensedcode/data/rules/glwtpl_3.RULE @@ -1 +1,10 @@ +--- +license_expression: glwtpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GLWTPL Good Luck With That Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_3.yml b/src/licensedcode/data/rules/glwtpl_3.yml deleted file mode 100644 index 25bd7e49607..00000000000 --- a/src/licensedcode/data/rules/glwtpl_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glwtpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glwtpl_4.RULE b/src/licensedcode/data/rules/glwtpl_4.RULE index 05e1fb9199e..4b8d8ac708f 100644 --- a/src/licensedcode/data/rules/glwtpl_4.RULE +++ b/src/licensedcode/data/rules/glwtpl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: glwtpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Good Luck With That Public License GLWTPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_4.yml b/src/licensedcode/data/rules/glwtpl_4.yml deleted file mode 100644 index 25bd7e49607..00000000000 --- a/src/licensedcode/data/rules/glwtpl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glwtpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glwtpl_5.RULE b/src/licensedcode/data/rules/glwtpl_5.RULE index 2c4149ae675..f94690f1f6b 100644 --- a/src/licensedcode/data/rules/glwtpl_5.RULE +++ b/src/licensedcode/data/rules/glwtpl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: glwtpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GLWTPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_5.yml b/src/licensedcode/data/rules/glwtpl_5.yml deleted file mode 100644 index ccdd159d87f..00000000000 --- a/src/licensedcode/data/rules/glwtpl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glwtpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glwtpl_6.RULE b/src/licensedcode/data/rules/glwtpl_6.RULE index 46a55913765..b11242a0a70 100644 --- a/src/licensedcode/data/rules/glwtpl_6.RULE +++ b/src/licensedcode/data/rules/glwtpl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: glwtpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Good Luck With That Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_6.yml b/src/licensedcode/data/rules/glwtpl_6.yml deleted file mode 100644 index ccdd159d87f..00000000000 --- a/src/licensedcode/data/rules/glwtpl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glwtpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glwtpl_7.RULE b/src/licensedcode/data/rules/glwtpl_7.RULE index e568adfc9ed..303a9337269 100644 --- a/src/licensedcode/data/rules/glwtpl_7.RULE +++ b/src/licensedcode/data/rules/glwtpl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: glwtpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GLWTPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_7.yml b/src/licensedcode/data/rules/glwtpl_7.yml deleted file mode 100644 index ccdd159d87f..00000000000 --- a/src/licensedcode/data/rules/glwtpl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glwtpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/glwtpl_8.RULE b/src/licensedcode/data/rules/glwtpl_8.RULE index ad34db30cbd..aff96da3a92 100644 --- a/src/licensedcode/data/rules/glwtpl_8.RULE +++ b/src/licensedcode/data/rules/glwtpl_8.RULE @@ -1 +1,9 @@ +--- +license_expression: glwtpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GLWTPL +--- + https://licenses.nuget.org/GLWTPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_8.yml b/src/licensedcode/data/rules/glwtpl_8.yml deleted file mode 100644 index 98e143df556..00000000000 --- a/src/licensedcode/data/rules/glwtpl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: glwtpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GLWTPL diff --git a/src/licensedcode/data/rules/glwtpl_9.RULE b/src/licensedcode/data/rules/glwtpl_9.RULE index 2beb80c167a..5ee80de5f8d 100644 --- a/src/licensedcode/data/rules/glwtpl_9.RULE +++ b/src/licensedcode/data/rules/glwtpl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: glwtpl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GLWTPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/glwtpl_9.yml b/src/licensedcode/data/rules/glwtpl_9.yml deleted file mode 100644 index c1ee69bc021..00000000000 --- a/src/licensedcode/data/rules/glwtpl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: glwtpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gnu-emacs-gpl-1988_1.RULE b/src/licensedcode/data/rules/gnu-emacs-gpl-1988_1.RULE index b1816df2087..a31d8f3e772 100644 --- a/src/licensedcode/data/rules/gnu-emacs-gpl-1988_1.RULE +++ b/src/licensedcode/data/rules/gnu-emacs-gpl-1988_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gnu-emacs-gpl-1988 +is_license_notice: yes +--- + ;; Everyone is granted permission to copy, modify and redistribute ;; GNU Emacs, but only under the conditions described in the ;; GNU Emacs General Public License. A copy of this license is diff --git a/src/licensedcode/data/rules/gnu-emacs-gpl-1988_1.yml b/src/licensedcode/data/rules/gnu-emacs-gpl-1988_1.yml deleted file mode 100644 index 61f9fd2a4bc..00000000000 --- a/src/licensedcode/data/rules/gnu-emacs-gpl-1988_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gnu-emacs-gpl-1988 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_1.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_1.RULE index 80ddffdfe78..8adda4de807 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_1.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU JavaMail exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_1.yml b/src/licensedcode/data/rules/gnu-javamail-exception_1.yml deleted file mode 100644 index d25dcda9903..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_2.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_2.RULE index 6921efdd0c9..da035343920 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_2.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + gnu-javamail-exception GNU JavaMail exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_2.yml b/src/licensedcode/data/rules/gnu-javamail-exception_2.yml deleted file mode 100644 index d25dcda9903..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_3.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_3.RULE index 5899996181a..1a3cb6375bd 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_3.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gnu-javamail-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: gnu-javamail-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_3.yml b/src/licensedcode/data/rules/gnu-javamail-exception_3.yml deleted file mode 100644 index c833a89a264..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_4.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_4.RULE index 58094e4bd7f..60197d05d09 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_4.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gnu-javamail-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: gnu-javamail-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_4.yml b/src/licensedcode/data/rules/gnu-javamail-exception_4.yml deleted file mode 100644 index c833a89a264..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_5.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_5.RULE index 64115b1566f..47af194a889 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_5.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_5.RULE @@ -1 +1,9 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/gnu-javamail-exception +--- + https://licenses.nuget.org/gnu-javamail-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_5.yml b/src/licensedcode/data/rules/gnu-javamail-exception_5.yml deleted file mode 100644 index 4d4fac99725..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/gnu-javamail-exception diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_6.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_6.RULE index 89c2afc225f..efc8b1b29ac 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_6.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/gnu-javamail-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_6.yml b/src/licensedcode/data/rules/gnu-javamail-exception_6.yml deleted file mode 100644 index 537973e10f0..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_7.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_7.RULE index a9c3d3ed8c3..1943f013190 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_7.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_7.RULE @@ -1 +1,9 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/gnu-javamail-exception +--- + {{gnu-javamail-exception}} https://spdx.org/licenses/gnu-javamail-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_7.yml b/src/licensedcode/data/rules/gnu-javamail-exception_7.yml deleted file mode 100644 index 3a008e304ec..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/gnu-javamail-exception diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_8.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_8.RULE index 8372954f73a..18a6ef16fef 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_8.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/gnu-javamail-exception +--- + LICENSE {{gnu-javamail-exception}} https://spdx.org/licenses/gnu-javamail-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_8.yml b/src/licensedcode/data/rules/gnu-javamail-exception_8.yml deleted file mode 100644 index 3a008e304ec..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/gnu-javamail-exception diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_url_1.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_url_1.RULE index 3c2e991049b..9806f9763f0 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_url_1.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gnu-javamail-exception +--- + https://spdx.org/licenses/gnu-javamail-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_url_1.yml b/src/licensedcode/data/rules/gnu-javamail-exception_url_1.yml deleted file mode 100644 index 776fc117ec9..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gnu-javamail-exception diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_url_2.RULE b/src/licensedcode/data/rules/gnu-javamail-exception_url_2.RULE index afed8c3fb41..238aae0df08 100644 --- a/src/licensedcode/data/rules/gnu-javamail-exception_url_2.RULE +++ b/src/licensedcode/data/rules/gnu-javamail-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gnu-javamail-exception.html +--- + https://spdx.org/licenses/gnu-javamail-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnu-javamail-exception_url_2.yml b/src/licensedcode/data/rules/gnu-javamail-exception_url_2.yml deleted file mode 100644 index 6f96232f915..00000000000 --- a/src/licensedcode/data/rules/gnu-javamail-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gnu-javamail-exception.html diff --git a/src/licensedcode/data/rules/gnuplot_1.RULE b/src/licensedcode/data/rules/gnuplot_1.RULE index 4e43f72058f..74a2dc01cb8 100644 --- a/src/licensedcode/data/rules/gnuplot_1.RULE +++ b/src/licensedcode/data/rules/gnuplot_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gnuplot +is_license_reference: yes +relevance: 100 +--- + gnuplot gnuplot License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_1.yml b/src/licensedcode/data/rules/gnuplot_1.yml deleted file mode 100644 index 1fb1ea1eaf9..00000000000 --- a/src/licensedcode/data/rules/gnuplot_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gnuplot_10.RULE b/src/licensedcode/data/rules/gnuplot_10.RULE index 6979806235e..e14ceddbbde 100644 --- a/src/licensedcode/data/rules/gnuplot_10.RULE +++ b/src/licensedcode/data/rules/gnuplot_10.RULE @@ -1 +1,9 @@ +--- +license_expression: gnuplot +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/gnuplot +--- + LICENSE {{gnuplot}} https://spdx.org/licenses/gnuplot \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_10.yml b/src/licensedcode/data/rules/gnuplot_10.yml deleted file mode 100644 index bfa0fce352f..00000000000 --- a/src/licensedcode/data/rules/gnuplot_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/gnuplot diff --git a/src/licensedcode/data/rules/gnuplot_11.RULE b/src/licensedcode/data/rules/gnuplot_11.RULE index ce01f8d18f4..1020611e7f1 100644 --- a/src/licensedcode/data/rules/gnuplot_11.RULE +++ b/src/licensedcode/data/rules/gnuplot_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gnuplot +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/gnuplot +--- + {{gnuplot}} https://spdx.org/licenses/gnuplot \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_11.yml b/src/licensedcode/data/rules/gnuplot_11.yml deleted file mode 100644 index bfa0fce352f..00000000000 --- a/src/licensedcode/data/rules/gnuplot_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/gnuplot diff --git a/src/licensedcode/data/rules/gnuplot_2.RULE b/src/licensedcode/data/rules/gnuplot_2.RULE index 7aac2185804..6707ec0709e 100644 --- a/src/licensedcode/data/rules/gnuplot_2.RULE +++ b/src/licensedcode/data/rules/gnuplot_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gnuplot +is_license_reference: yes +relevance: 100 +--- + gnuplot License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_2.yml b/src/licensedcode/data/rules/gnuplot_2.yml deleted file mode 100644 index 1fb1ea1eaf9..00000000000 --- a/src/licensedcode/data/rules/gnuplot_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gnuplot_3.RULE b/src/licensedcode/data/rules/gnuplot_3.RULE index f4ced606d25..e414c64ebf1 100644 --- a/src/licensedcode/data/rules/gnuplot_3.RULE +++ b/src/licensedcode/data/rules/gnuplot_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gnuplot +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: gnuplot License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_3.yml b/src/licensedcode/data/rules/gnuplot_3.yml deleted file mode 100644 index c37ae13d6ef..00000000000 --- a/src/licensedcode/data/rules/gnuplot_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnuplot_4.RULE b/src/licensedcode/data/rules/gnuplot_4.RULE index f25b881aef9..7f1612f8c0a 100644 --- a/src/licensedcode/data/rules/gnuplot_4.RULE +++ b/src/licensedcode/data/rules/gnuplot_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gnuplot +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + gnuplot License gnuplot \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_4.yml b/src/licensedcode/data/rules/gnuplot_4.yml deleted file mode 100644 index c37ae13d6ef..00000000000 --- a/src/licensedcode/data/rules/gnuplot_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnuplot_5.RULE b/src/licensedcode/data/rules/gnuplot_5.RULE index 80240f11aab..e222ad6f8ce 100644 --- a/src/licensedcode/data/rules/gnuplot_5.RULE +++ b/src/licensedcode/data/rules/gnuplot_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gnuplot +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: gnuplot \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_5.yml b/src/licensedcode/data/rules/gnuplot_5.yml deleted file mode 100644 index 1211729f1ab..00000000000 --- a/src/licensedcode/data/rules/gnuplot_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnuplot -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnuplot_6.RULE b/src/licensedcode/data/rules/gnuplot_6.RULE index accd03f9cac..95fc1dbfebf 100644 --- a/src/licensedcode/data/rules/gnuplot_6.RULE +++ b/src/licensedcode/data/rules/gnuplot_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gnuplot +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: gnuplot License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_6.yml b/src/licensedcode/data/rules/gnuplot_6.yml deleted file mode 100644 index 1211729f1ab..00000000000 --- a/src/licensedcode/data/rules/gnuplot_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnuplot -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnuplot_7.RULE b/src/licensedcode/data/rules/gnuplot_7.RULE index 776c59c370e..50bf4699d31 100644 --- a/src/licensedcode/data/rules/gnuplot_7.RULE +++ b/src/licensedcode/data/rules/gnuplot_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gnuplot +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: gnuplot \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_7.yml b/src/licensedcode/data/rules/gnuplot_7.yml deleted file mode 100644 index 1211729f1ab..00000000000 --- a/src/licensedcode/data/rules/gnuplot_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnuplot -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gnuplot_8.RULE b/src/licensedcode/data/rules/gnuplot_8.RULE index 7dd5c0e3140..61a5c9a93d8 100644 --- a/src/licensedcode/data/rules/gnuplot_8.RULE +++ b/src/licensedcode/data/rules/gnuplot_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gnuplot +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/gnuplot +--- + https://licenses.nuget.org/gnuplot \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_8.yml b/src/licensedcode/data/rules/gnuplot_8.yml deleted file mode 100644 index d6772eef7fc..00000000000 --- a/src/licensedcode/data/rules/gnuplot_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/gnuplot diff --git a/src/licensedcode/data/rules/gnuplot_9.RULE b/src/licensedcode/data/rules/gnuplot_9.RULE index 3c424298e66..608759cf06d 100644 --- a/src/licensedcode/data/rules/gnuplot_9.RULE +++ b/src/licensedcode/data/rules/gnuplot_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gnuplot +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/gnuplot \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_9.yml b/src/licensedcode/data/rules/gnuplot_9.yml deleted file mode 100644 index 1fb1ea1eaf9..00000000000 --- a/src/licensedcode/data/rules/gnuplot_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gnuplot_url_1.RULE b/src/licensedcode/data/rules/gnuplot_url_1.RULE index 2ccb63d9c8d..b76163365b7 100644 --- a/src/licensedcode/data/rules/gnuplot_url_1.RULE +++ b/src/licensedcode/data/rules/gnuplot_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gnuplot +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gnuplot +--- + https://spdx.org/licenses/gnuplot \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_url_1.yml b/src/licensedcode/data/rules/gnuplot_url_1.yml deleted file mode 100644 index 4ca2233ef7c..00000000000 --- a/src/licensedcode/data/rules/gnuplot_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gnuplot diff --git a/src/licensedcode/data/rules/gnuplot_url_2.RULE b/src/licensedcode/data/rules/gnuplot_url_2.RULE index 73a786f433c..da00a4b4201 100644 --- a/src/licensedcode/data/rules/gnuplot_url_2.RULE +++ b/src/licensedcode/data/rules/gnuplot_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gnuplot +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gnuplot.html +--- + https://spdx.org/licenses/gnuplot.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gnuplot_url_2.yml b/src/licensedcode/data/rules/gnuplot_url_2.yml deleted file mode 100644 index fe552c663ee..00000000000 --- a/src/licensedcode/data/rules/gnuplot_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gnuplot -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gnuplot.html diff --git a/src/licensedcode/data/rules/google-analytics-tos.RULE b/src/licensedcode/data/rules/google-analytics-tos.RULE index 416af1ebe4e..0653d56ff1c 100644 --- a/src/licensedcode/data/rules/google-analytics-tos.RULE +++ b/src/licensedcode/data/rules/google-analytics-tos.RULE @@ -1,3 +1,13 @@ +--- +license_expression: google-analytics-tos +is_license_text: yes +notes: Google tos in HTML +ignorable_urls: + - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 + - http://www.google.com/analytics + - http://www.google.com/privacy.html +--- + GOOGLE ANALYTICS TERMS OF SERVICE @@ -346,5 +356,4 @@ such attempt is void. The relationship between Google and You is not one of a le partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, -5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. - \ No newline at end of file +5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. \ No newline at end of file diff --git a/src/licensedcode/data/rules/google-analytics-tos.yml b/src/licensedcode/data/rules/google-analytics-tos.yml deleted file mode 100644 index 8064e173be3..00000000000 --- a/src/licensedcode/data/rules/google-analytics-tos.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: google-analytics-tos -is_license_text: yes -notes: Google tos in HTML -ignorable_urls: - - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 - - http://www.google.com/analytics - - http://www.google.com/privacy.html diff --git a/src/licensedcode/data/rules/google-analytics-tos_1.RULE b/src/licensedcode/data/rules/google-analytics-tos_1.RULE index d78912b5ef1..e74f73d9ca8 100644 --- a/src/licensedcode/data/rules/google-analytics-tos_1.RULE +++ b/src/licensedcode/data/rules/google-analytics-tos_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: google-analytics-tos +is_license_text: yes +notes: Google tos in html +ignorable_urls: + - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 + - http://www.google.com/analytics + - http://www.google.com/privacy.html +--- + GOOGLE ANALYTICS TERMS OF SERVICE @@ -346,4 +356,4 @@ such attempt is void. The relationship between Google and You is not one of a le partnership relationship, but is one of independent contractors. This Agreement will be binding upon and inure to the benefit of the respective successors and assigns of the parties hereto. The following sections of this Agreement will survive any termination thereof: 1, 4, -5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. +5, 6 (except the last two sentences), 7, 8, 9, 10, 11, 12, 14, and 16. \ No newline at end of file diff --git a/src/licensedcode/data/rules/google-analytics-tos_1.yml b/src/licensedcode/data/rules/google-analytics-tos_1.yml deleted file mode 100644 index 089919b6cf7..00000000000 --- a/src/licensedcode/data/rules/google-analytics-tos_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: google-analytics-tos -is_license_text: yes -notes: Google tos in html -ignorable_urls: - - http://support.google.com/analytics/bin/answer.py?hl=en&topic=2611283&answer=2700409 - - http://www.google.com/analytics - - http://www.google.com/privacy.html diff --git a/src/licensedcode/data/rules/google-patent-license-golang_1.RULE b/src/licensedcode/data/rules/google-patent-license-golang_1.RULE index ac3562609ee..b2ef245899b 100644 --- a/src/licensedcode/data/rules/google-patent-license-golang_1.RULE +++ b/src/licensedcode/data/rules/google-patent-license-golang_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: google-patent-license-golang +is_license_notice: yes +relevance: 95 +notes: This is a variant of a similar patent grant also for Go +--- + Subject to the terms and conditions of this License, Google 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, diff --git a/src/licensedcode/data/rules/google-patent-license-golang_1.yml b/src/licensedcode/data/rules/google-patent-license-golang_1.yml deleted file mode 100644 index 5b01bf9cf12..00000000000 --- a/src/licensedcode/data/rules/google-patent-license-golang_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: google-patent-license-golang -is_license_notice: yes -relevance: 95 -notes: This is a variant of a similar patent grant also for Go diff --git a/src/licensedcode/data/rules/google-patent-license-golang_2.RULE b/src/licensedcode/data/rules/google-patent-license-golang_2.RULE index 2f733c80d1e..cc241d04849 100644 --- a/src/licensedcode/data/rules/google-patent-license-golang_2.RULE +++ b/src/licensedcode/data/rules/google-patent-license-golang_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: google-patent-license-golang +is_license_text: yes +relevance: 100 +--- + Additional IP Rights Grant (Patents) "This implementation" means the copyrightable works distributed by diff --git a/src/licensedcode/data/rules/google-patent-license-golang_2.yml b/src/licensedcode/data/rules/google-patent-license-golang_2.yml deleted file mode 100644 index b4e28f8d738..00000000000 --- a/src/licensedcode/data/rules/google-patent-license-golang_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: google-patent-license-golang -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/google-patent-license-golang_3.RULE b/src/licensedcode/data/rules/google-patent-license-golang_3.RULE index ace523adff4..cb57054dec9 100644 --- a/src/licensedcode/data/rules/google-patent-license-golang_3.RULE +++ b/src/licensedcode/data/rules/google-patent-license-golang_3.RULE @@ -1 +1,7 @@ +--- +license_expression: google-patent-license-golang +is_license_reference: yes +relevance: 90 +--- + Google Patent grant \ No newline at end of file diff --git a/src/licensedcode/data/rules/google-patent-license-golang_3.yml b/src/licensedcode/data/rules/google-patent-license-golang_3.yml deleted file mode 100644 index 50419c1a467..00000000000 --- a/src/licensedcode/data/rules/google-patent-license-golang_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: google-patent-license-golang -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/google-patent-license-webm_1.RULE b/src/licensedcode/data/rules/google-patent-license-webm_1.RULE index 09a0a2a4573..b5c6b183338 100644 --- a/src/licensedcode/data/rules/google-patent-license-webm_1.RULE +++ b/src/licensedcode/data/rules/google-patent-license-webm_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: google-patent-license-webm +is_license_text: yes +--- + Additional IP Rights Grant (Patents) diff --git a/src/licensedcode/data/rules/google-patent-license-webm_1.yml b/src/licensedcode/data/rules/google-patent-license-webm_1.yml deleted file mode 100644 index 77fae99f2fa..00000000000 --- a/src/licensedcode/data/rules/google-patent-license-webm_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: google-patent-license-webm -is_license_text: yes diff --git a/src/licensedcode/data/rules/google-patent-license-webm_3.RULE b/src/licensedcode/data/rules/google-patent-license-webm_3.RULE index 859b88bfe0e..3d28952ae0b 100644 --- a/src/licensedcode/data/rules/google-patent-license-webm_3.RULE +++ b/src/licensedcode/data/rules/google-patent-license-webm_3.RULE @@ -1 +1,9 @@ -// Additional IP Rights Grant: http://www.webmproject.org/license/additional/ +--- +license_expression: google-patent-license-webm +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.webmproject.org/license/additional/ +--- + +// Additional IP Rights Grant: http://www.webmproject.org/license/additional/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/google-patent-license-webm_3.yml b/src/licensedcode/data/rules/google-patent-license-webm_3.yml deleted file mode 100644 index 2f1e80ea498..00000000000 --- a/src/licensedcode/data/rules/google-patent-license-webm_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: google-patent-license-webm -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.webmproject.org/license/additional/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus.RULE b/src/licensedcode/data/rules/gpl-1.0-plus.RULE index d979b6019c3..e328766c820 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + Copyright (C) 19yy diff --git a/src/licensedcode/data/rules/gpl-1.0-plus.yml b/src/licensedcode/data/rules/gpl-1.0-plus.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_1.RULE index a05d26338eb..d309f36f800 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + License: GPL-1+ 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 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_1.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_10.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_10.RULE index 0429ad8f184..54b3ed08c40 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_10.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_10.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_10.yml b/src/licensedcode/data/rules/gpl-1.0-plus_10.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_100.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_100.RULE index 68ac3a3698c..08a0e3b5b17 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_100.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_100.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_100.yml b/src/licensedcode/data/rules/gpl-1.0-plus_100.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_101.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_101.RULE index 729a9b0bde6..061f46f88f1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_101.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_101.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_101.yml b/src/licensedcode/data/rules/gpl-1.0-plus_101.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_102.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_102.RULE index 045397c2f6b..55c3f2daecf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_102.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_102.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_102.yml b/src/licensedcode/data/rules/gpl-1.0-plus_102.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_103.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_103.RULE index 10a0d485546..76c9c537200 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_103.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_103.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_103.yml b/src/licensedcode/data/rules/gpl-1.0-plus_103.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_104.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_104.RULE index 8cc7e05bc64..27e26d473f7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_104.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_104.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_104.yml b/src/licensedcode/data/rules/gpl-1.0-plus_104.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_105.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_105.RULE index 54ec7a9e16c..669000e6209 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_105.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_105.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_105.yml b/src/licensedcode/data/rules/gpl-1.0-plus_105.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_106.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_106.RULE index c30ec5ab42e..349bb54abd5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_106.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_106.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_106.yml b/src/licensedcode/data/rules/gpl-1.0-plus_106.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_107.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_107.RULE index 8fa7dd6f6b9..ddcf77fe0cd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_107.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_107.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu gpled \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_107.yml b/src/licensedcode/data/rules/gpl-1.0-plus_107.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_108.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_108.RULE index 294d47b76f9..af3cd13131f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_108.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_108.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu gpld \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_108.yml b/src/licensedcode/data/rules/gpl-1.0-plus_108.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_109.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_109.RULE index 5a4faea1a11..210fdccdfd6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_109.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_109.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu gpl ed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_109.yml b/src/licensedcode/data/rules/gpl-1.0-plus_109.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_11.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_11.RULE index f40a03d70ec..db6c4dfa9b6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_11.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_11.RULE @@ -1 +1,7 @@ -This software licenced under the GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This software licenced under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_11.yml b/src/licensedcode/data/rules/gpl-1.0-plus_11.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_110.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_110.RULE index 073f15d08ea..ec8ed007540 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_110.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_110.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_110.yml b/src/licensedcode/data/rules/gpl-1.0-plus_110.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_111.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_111.RULE index e277ba329d1..fb147928b17 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_111.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_111.RULE @@ -1 +1,7 @@ - The icons are released under the GNU GPL. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + + The icons are released under the GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_111.yml b/src/licensedcode/data/rules/gpl-1.0-plus_111.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_112.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_112.RULE index 9afb5e8db1b..f1b5bc02893 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_112.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_112.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_112.yml b/src/licensedcode/data/rules/gpl-1.0-plus_112.yml deleted file mode 100644 index 431084c2a09..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_113.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_113.RULE index 6e173417ebb..02ed12a1889 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_113.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_113.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/gpl-license.php +--- + The distribution is licensed under the terms of the GNU General Public License (http://www.opensource.org/licenses/gpl-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_113.yml b/src/licensedcode/data/rules/gpl-1.0-plus_113.yml deleted file mode 100644 index 9225d76296c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_113.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_114.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_114.RULE index 027f0d5ff8c..3dfaa03993d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_114.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_114.RULE @@ -1,7 +1,17 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html +--- + I DISCLAIM ALL RESPONSIBILITY FOR ANY POSSIBLE BAD EFFECTS OF THIS CODE! LICENSE ===== This software is covered by the GNU General Public License. See the file COPYING for the complete text of the license. - Or the GNU website: + Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_114.yml b/src/licensedcode/data/rules/gpl-1.0-plus_114.yml deleted file mode 100644 index ef60e76ea93..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_114.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_115.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_115.RULE index 198a9fd9876..276bd3805ef 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_115.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_115.RULE @@ -1,5 +1,15 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html +--- + LICENSE ===== This software is covered by the GNU General Public License. See the file COPYING for the complete text of the license. - Or the GNU website: + Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_115.yml b/src/licensedcode/data/rules/gpl-1.0-plus_115.yml deleted file mode 100644 index ef60e76ea93..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_115.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_116.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_116.RULE index 4bd1807dc7d..ea5fd55ed24 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_116.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_116.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html +--- + This software is covered by the GNU General Public License. See the file COPYING for the complete text of the license. - Or the GNU website: + Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_116.yml b/src/licensedcode/data/rules/gpl-1.0-plus_116.yml deleted file mode 100644 index ef60e76ea93..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_116.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_117.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_117.RULE index b21da8d811f..695a00f1892 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_117.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_117.RULE @@ -1 +1,7 @@ -Licensed under the terms of the GNU GPL License +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 99 +--- + +Licensed under the terms of the GNU GPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_117.yml b/src/licensedcode/data/rules/gpl-1.0-plus_117.yml deleted file mode 100644 index b8fa90df236..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_118.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_118.RULE index e0365c783a0..41642658e87 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_118.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_118.RULE @@ -1 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU GENERAL PUBLIC LICENSE a href http://www.gnu.org/copyleft/gpl +ignorable_holders: + - GNU GENERAL PUBLIC LICENSE +ignorable_urls: + - http://www.gnu.org/copyleft/gpl +--- + copyright: GNU GENERAL PUBLIC LICENSE | | GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_126.yml b/src/licensedcode/data/rules/gpl-1.0-plus_126.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_127.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_127.RULE index 4ba7183845a..d289640251c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_127.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_127.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + GNU General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_127.yml b/src/licensedcode/data/rules/gpl-1.0-plus_127.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_128.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_128.RULE index 06c7bd81aa1..3978258f60a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_128.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_128.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - Copyright GNU General +ignorable_holders: + - GNU General +--- + Copyright: GNU General Public License / copyleft ('GNU GPL copyright'). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_128.yml b/src/licensedcode/data/rules/gpl-1.0-plus_128.yml deleted file mode 100644 index a8e573f8668..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_128.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - Copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_129.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_129.RULE index 99c141d2969..6ca212d5fe3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_129.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_129.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - Copyright GNU General +ignorable_holders: + - GNU General +--- + Copyright: GNU General Public Licence / copyleft ('GNU GPL copyright'). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_129.yml b/src/licensedcode/data/rules/gpl-1.0-plus_129.yml deleted file mode 100644 index a8e573f8668..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_129.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - Copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_13.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_13.RULE index 859be06addb..ab63f01c2b4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_13.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_13.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may be used and distributed according to the terms -of the GNU Public License, incorporated herein by reference. +of the GNU Public License, incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_13.yml b/src/licensedcode/data/rules/gpl-1.0-plus_13.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_130.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_130.RULE index d52b5539766..7898c3bbb53 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_130.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_130.RULE @@ -1 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General Public License, http://www.gnu.org/licenses/gpl.html +ignorable_holders: + - GNU General Public License +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + @copyright GNU General Public License, http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_130.yml b/src/licensedcode/data/rules/gpl-1.0-plus_130.yml deleted file mode 100644 index 9ff17fd6cd1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_130.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General Public License, http://www.gnu.org/licenses/gpl.html -ignorable_holders: - - GNU General Public License -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_131.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_131.RULE index 6568c3e4d75..e550d077d61 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_131.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_131.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may be used and distributed according to the terms of the GNU Public License (GPL), incorporated herein by reference. @@ -12,4 +17,4 @@ Drivers based on or derived from this code fall under the GPL and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating system is licensed under the GPL. License for under other terms may be -available. Contact the original author for details. +available. Contact the original author for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_131.yml b/src/licensedcode/data/rules/gpl-1.0-plus_131.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_131.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_132.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_132.RULE index 247148ee2d8..2c93b7e52bc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_132.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_132.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may be used and distributed according to the terms of the GNU Public License (GPL), incorporated herein by reference. @@ -8,4 +13,4 @@ Drivers based on or derived from this code fall under the GPL and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating system is licensed under the GPL. License for under other terms may be -available. Contact the original author for details. +available. Contact the original author for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_132.yml b/src/licensedcode/data/rules/gpl-1.0-plus_132.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_132.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_133.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_133.RULE index e98b16c0fd9..d7f94947e7f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_133.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_133.RULE @@ -1 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General Public Licence, http://www.gnu.org/licenses/gpl.html +ignorable_holders: + - GNU General Public Licence +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + @copyright GNU General Public Licence, http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_133.yml b/src/licensedcode/data/rules/gpl-1.0-plus_133.yml deleted file mode 100644 index caedafbdcec..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_133.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General Public Licence, http://www.gnu.org/licenses/gpl.html -ignorable_holders: - - GNU General Public Licence -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_134.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_134.RULE index 63eea58b4c2..c98b8498d1c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_134.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_134.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may be used and distributed according to the terms -of the GNU Public License (GPL), incorporated herein by reference. +of the GNU Public License (GPL), incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_134.yml b/src/licensedcode/data/rules/gpl-1.0-plus_134.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_134.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_135.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_135.RULE index c7e75327209..3e370298961 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_135.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_135.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + It's 100% Open Source and licensed under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_135.yml b/src/licensedcode/data/rules/gpl-1.0-plus_135.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_136.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_136.RULE index 79fe2bab508..410e3870954 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_136.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_136.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +--- + *LICENSE* The license of all of the files in the bundle is GNU General -Public License (GPL). See COPYRIGHT for details. +Public License (GPL). See COPYRIGHT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_136.yml b/src/licensedcode/data/rules/gpl-1.0-plus_136.yml deleted file mode 100644 index 2f5d8e38295..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_136.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_137.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_137.RULE index c5c46dba00c..974eff21b40 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_137.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_137.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + the Model is under Copyright GNU GENERAL PUBLIC LICENCE -see GPL COPYING file attached to this package. +see GPL COPYING file attached to this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_137.yml b/src/licensedcode/data/rules/gpl-1.0-plus_137.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_137.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_138.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_138.RULE index 3321cad9686..c7557ecbb73 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_138.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_138.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 80 +--- + [[GNU/GPL disclaimer]] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_138.yml b/src/licensedcode/data/rules/gpl-1.0-plus_138.yml deleted file mode 100644 index 1b1913806fb..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_139.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_139.RULE index 33b0df6e89e..bfd59d6febc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_139.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_139.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +--- + *LICENCE* The licence of all of the files in the bundle is GNU General -Public Licence (GPL). See COPYRIGHT for details. +Public Licence (GPL). See COPYRIGHT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_139.yml b/src/licensedcode/data/rules/gpl-1.0-plus_139.yml deleted file mode 100644 index 2f5d8e38295..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_14.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_14.RULE index f05ecb1b1e8..a64d9dfb725 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_14.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_14.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + is protected by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_14.yml b/src/licensedcode/data/rules/gpl-1.0-plus_14.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_140.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_140.RULE index f09083b0294..f3613f47d77 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_140.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_140.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + open-source version under GPL licensing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_140.yml b/src/licensedcode/data/rules/gpl-1.0-plus_140.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_141.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_141.RULE index d9ea168ce70..a49c3b89357 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_141.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_141.RULE @@ -1 +1,7 @@ -released open-source under the GPL license. \ No newline at end of file +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +released open-source under the GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_141.yml b/src/licensedcode/data/rules/gpl-1.0-plus_141.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_142.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_142.RULE index a56e3d3da69..4c26bc7eecb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_142.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_142.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + # This software may be freely redistributed under the terms of the GNU # public license. # diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_142.yml b/src/licensedcode/data/rules/gpl-1.0-plus_142.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_143.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_143.RULE index 8240c354736..08160237adc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_143.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_143.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Distributed under GNU General Public Lisence See file COPYING for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_143.yml b/src/licensedcode/data/rules/gpl-1.0-plus_143.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_143.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_144.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_144.RULE index 773570a304c..dcb3104168c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_144.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_144.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Distributed under GNU General Public Lisence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_144.yml b/src/licensedcode/data/rules/gpl-1.0-plus_144.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_145.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_145.RULE index c82198a1d83..23ec1f6aa49 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_145.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_145.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This is a free software and it comes with absolutely no warranty. -You can use, distribute and modify it under terms of GNU GPL. +You can use, distribute and modify it under terms of GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_145.yml b/src/licensedcode/data/rules/gpl-1.0-plus_145.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_146.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_146.RULE index 730dcf3d960..8c7709e96e3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_146.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_146.RULE @@ -1 +1,7 @@ -GPL, GNU General Public License +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +GPL, GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_146.yml b/src/licensedcode/data/rules/gpl-1.0-plus_146.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_147.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_147.RULE index 617a1681f38..7eebce07b2a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_147.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_147.RULE @@ -1 +1,7 @@ - distributed under the terms of this General Public License. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + + distributed under the terms of this General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_147.yml b/src/licensedcode/data/rules/gpl-1.0-plus_147.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_148.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_148.RULE index f1da6f298be..78d834fa8af 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_148.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_148.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_148.yml b/src/licensedcode/data/rules/gpl-1.0-plus_148.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_149.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_149.RULE index 4a858b2b0de..8ec36797353 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_149.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_149.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This theme is licensed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_149.yml b/src/licensedcode/data/rules/gpl-1.0-plus_149.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_15.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_15.RULE index 261111029b9..b1070c02367 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_15.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_15.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This file may be copied under the terms of the GNU Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_15.yml b/src/licensedcode/data/rules/gpl-1.0-plus_15.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_150.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_150.RULE index 5ea00240be6..f5d0b7d8c14 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_150.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_150.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://opensource.org/licenses/gpl-license.php +--- + Licensed under the GNU GPL. For full terms see the file COPYING. @license http://opensource.org/licenses/gpl-license.php GNU Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_150.yml b/src/licensedcode/data/rules/gpl-1.0-plus_150.yml deleted file mode 100644 index 0f92ae8de72..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_150.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_151.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_151.RULE index 509a115093b..dbd5baa7421 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_151.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_151.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/gpl-license.php +--- + @license http://opensource.org/licenses/gpl-license.php GNU Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_151.yml b/src/licensedcode/data/rules/gpl-1.0-plus_151.yml deleted file mode 100644 index 1297d1045f5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_151.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_152.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_152.RULE index ac130a5be5a..9da5a630ec9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_152.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_152.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.plupload.com/license +--- + Released under GPL License. License: http://www.plupload.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_152.yml b/src/licensedcode/data/rules/gpl-1.0-plus_152.yml deleted file mode 100644 index eedb4432099..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_152.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.plupload.com/license diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_153.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_153.RULE index 74a7a289646..354c503943f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_153.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_153.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +--- + support (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_153.yml b/src/licensedcode/data/rules/gpl-1.0-plus_153.yml deleted file mode 100644 index fb1f61395f4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_154.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_154.RULE index 142094bfd88..d7f79c13f68 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_154.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_154.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 99 +--- + Licenses : GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_154.yml b/src/licensedcode/data/rules/gpl-1.0-plus_154.yml deleted file mode 100644 index c3513f747f0..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_155.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_155.RULE index 20ac59a08cc..fefda2d9f94 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_155.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_155.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.html +--- + http://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_155.yml b/src/licensedcode/data/rules/gpl-1.0-plus_155.yml deleted file mode 100644 index 124adf8e6d6..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_156.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_156.RULE index 60755bcb7a6..b2e2836d2cd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_156.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_156.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl.html +--- + https://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_156.yml b/src/licensedcode/data/rules/gpl-1.0-plus_156.yml deleted file mode 100644 index 879219c5354..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_156.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_157.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_157.RULE index 2f71e4bbfcc..5a4bc318651 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_157.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_157.RULE @@ -1,2 +1,9 @@ -* Licensed under the GNU/GPL. See COPYING for details. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +referenced_filenames: + - COPYING +--- +* Licensed under the GNU/GPL. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_157.yml b/src/licensedcode/data/rules/gpl-1.0-plus_157.yml deleted file mode 100644 index f0249911a9c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_158.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_158.RULE index 3ef8a41cb77..396d5bddbc0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_158.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_158.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + The method for actual interception of syscall entry and exit (not in -this file -- see entry.S) is based on a GPL'd patch written by +this file -- see entry.S) is based on a GPL'd patch written by \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_158.yml b/src/licensedcode/data/rules/gpl-1.0-plus_158.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_158.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_159.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_159.RULE index 94ff058f610..dbb662ff4f1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_159.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_159.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.txt +--- + https://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_159.yml b/src/licensedcode/data/rules/gpl-1.0-plus_159.yml deleted file mode 100644 index 3decd054677..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_159.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_16.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_16.RULE index 9e3c6cb80a3..2ef6cc7f35a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_16.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_16.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + is hereby placed under the terms of the GNU General Public License. Follows the GNU license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_16.yml b/src/licensedcode/data/rules/gpl-1.0-plus_16.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_160.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_160.RULE index 378b2f37c38..eb03da90b59 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_160.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_160.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.txt +--- + http://gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_160.yml b/src/licensedcode/data/rules/gpl-1.0-plus_160.yml deleted file mode 100644 index 1c0d33e9207..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_160.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_161.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_161.RULE index 3d0b9f57601..697405b96d3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_161.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_161.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl.txt +--- + https://gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_161.yml b/src/licensedcode/data/rules/gpl-1.0-plus_161.yml deleted file mode 100644 index ef5fbcdb1c2..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_162.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_162.RULE index f01d0990a37..cf858a18d65 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_162.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_162.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl +--- + http://www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_162.yml b/src/licensedcode/data/rules/gpl-1.0-plus_162.yml deleted file mode 100644 index 17f750dc99b..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_163.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_163.RULE index 6ca2bf63633..1f8a2de49e0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_163.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_163.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl +--- + https://www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_163.yml b/src/licensedcode/data/rules/gpl-1.0-plus_163.yml deleted file mode 100644 index a0bdb4dab3f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_164.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_164.RULE index 267f354a030..637dfd33fa3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_164.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_164.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl +--- + http://gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_164.yml b/src/licensedcode/data/rules/gpl-1.0-plus_164.yml deleted file mode 100644 index 86cd4b8be9f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_165.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_165.RULE index 99aa8ac7a78..d91710fe59d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_165.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_165.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl +--- + https://gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_165.yml b/src/licensedcode/data/rules/gpl-1.0-plus_165.yml deleted file mode 100644 index cca4c1b1f4e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_166.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_166.RULE index 748dc98f914..4a0a404cd22 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_166.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_166.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_166.yml b/src/licensedcode/data/rules/gpl-1.0-plus_166.yml deleted file mode 100644 index 743755f3d2c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_167.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_167.RULE index 495fce4cf4b..ea15c719909 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_167.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_167.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_167.yml b/src/licensedcode/data/rules/gpl-1.0-plus_167.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_168.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_168.RULE index 8bc1c029d91..988cc7d30ef 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_168.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_168.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_168.yml b/src/licensedcode/data/rules/gpl-1.0-plus_168.yml deleted file mode 100644 index 97587f80f11..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_169.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_169.RULE index 86384d016a3..2a65eae2032 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_169.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_169.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_169.yml b/src/licensedcode/data/rules/gpl-1.0-plus_169.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_17.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_17.RULE index a8952e785ae..3a9b2b6311c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_17.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_17.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + is hereby placed under the terms of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_17.yml b/src/licensedcode/data/rules/gpl-1.0-plus_17.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_170.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_170.RULE index e0546d38267..bcb358b792f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_170.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_170.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl +--- + www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_170.yml b/src/licensedcode/data/rules/gpl-1.0-plus_170.yml deleted file mode 100644 index 17f750dc99b..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_170.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_171.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_171.RULE index c52b8e80c13..289b12a8c54 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_171.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_171.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_171.yml b/src/licensedcode/data/rules/gpl-1.0-plus_171.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_172.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_172.RULE index 3694145f167..6557b57ed5e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_172.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_172.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html#GPL + - http://www.gnu.org/philosophy/free-sw.html +--- + covered by the [GNU GPL](http://www.gnu.org/licenses/licenses.html#GPL), a popular license that is both a [free software](http://www.gnu.org/philosophy/free-sw.html) license and also approved by the OSI as an Open Source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_172.yml b/src/licensedcode/data/rules/gpl-1.0-plus_172.yml deleted file mode 100644 index abc2c03e7eb..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_172.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html#GPL - - http://www.gnu.org/philosophy/free-sw.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_173.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_173.RULE index 531e46fd028..674d206d294 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_173.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_173.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Change from GNU CPIO General Public License to GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_173.yml b/src/licensedcode/data/rules/gpl-1.0-plus_173.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_174.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_174.RULE index bb5a5fa2e1c..83024532e32 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_174.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_174.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 99 +notes: note the mistaken use of purpose instead of public +--- + the GNU General Purpose Licence (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_174.yml b/src/licensedcode/data/rules/gpl-1.0-plus_174.yml deleted file mode 100644 index b4b61f9f379..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_174.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 99 -notes: note the mistaken use of purpose instead of public diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_175.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_175.RULE index 8c7066f3e29..0c958281bd2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_175.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_175.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 99 +notes: note the mistaken use of purpose instead of public +--- + GNU General Purpose Licence (GPL), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_175.yml b/src/licensedcode/data/rules/gpl-1.0-plus_175.yml deleted file mode 100644 index b4b61f9f379..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_175.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 99 -notes: note the mistaken use of purpose instead of public diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_176.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_176.RULE index 2a156b5e47e..11d79abb5b7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_176.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_176.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + distributed under the terms of the GNU General Public License. See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_176.yml b/src/licensedcode/data/rules/gpl-1.0-plus_176.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_176.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_177.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_177.RULE index aa3622b1137..b3e43ed0041 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_177.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_177.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_177.yml b/src/licensedcode/data/rules/gpl-1.0-plus_177.yml deleted file mode 100644 index 216cc50ad8d..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_177.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_178.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_178.RULE index f0f08378d90..467e32493fc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_178.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_178.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + it is licensed under the GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_178.yml b/src/licensedcode/data/rules/gpl-1.0-plus_178.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_179.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_179.RULE index b09b635293d..3664b5adc2b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_179.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_179.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + All code developed by the 3L project is released under the GNU General Public License (GPL). This guarantees that users of 3L will have the freedom to run, study, share, and modify 3L, forever. A core value of the 3L Project is user freedom and this means using a license that frees the user. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_179.yml b/src/licensedcode/data/rules/gpl-1.0-plus_179.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_18.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_18.RULE index 12a26687653..86ba116252d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_18.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_18.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + is hereby placed under the GPL - Gnu Public License. You are free and -welcome to copy, view and modify the sources. \ No newline at end of file +welcome to copy, view and modify the sources. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_18.yml b/src/licensedcode/data/rules/gpl-1.0-plus_18.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_180.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_180.RULE index 1d278397470..305a6607ffb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_180.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_180.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 20 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + You may redistribute copies of it under the terms of the GNU General Public License . There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_180.yml b/src/licensedcode/data/rules/gpl-1.0-plus_180.yml deleted file mode 100644 index 51f3536e1bd..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_180.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 20 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_181.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_181.RULE index bb60d5f7ef4..ac2400ab0d3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_181.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_181.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + You may redistribute copies of it under the terms of the GNU General Public License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_181.yml b/src/licensedcode/data/rules/gpl-1.0-plus_181.yml deleted file mode 100644 index c8306959fa7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_182.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_182.RULE index 8635a565844..384188efdd2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_182.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_182.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + You may redistribute copies of it under the terms of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_182.yml b/src/licensedcode/data/rules/gpl-1.0-plus_182.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_183.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_183.RULE index b620a3d6edd..962f4fb53aa 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_183.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_183.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + comes with ABSOLUTELY NO WARRANTY; This program is free software; your freedom to use, change and distribute this program is protected by the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_183.yml b/src/licensedcode/data/rules/gpl-1.0-plus_183.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_184.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_184.RULE index 96878440969..6faa60a6d0a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_184.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_184.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software; your freedom to use, change and distribute this program is protected by the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_184.yml b/src/licensedcode/data/rules/gpl-1.0-plus_184.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_185.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_185.RULE index 9640e5d9fce..ebab541e171 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_185.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_185.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + this program is protected by the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_185.yml b/src/licensedcode/data/rules/gpl-1.0-plus_185.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_186.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_186.RULE index 08b7cd9a9f5..59c5d776ecf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_186.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_186.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Bash 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 1, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_186.yml b/src/licensedcode/data/rules/gpl-1.0-plus_186.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_186.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_187.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_187.RULE index 77701e17f4b..bb7c0352a85 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_187.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_187.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Published under the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_187.yml b/src/licensedcode/data/rules/gpl-1.0-plus_187.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_188.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_188.RULE index e00e50b95e4..1e9a6ebcb82 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_188.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_188.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Released under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_188.yml b/src/licensedcode/data/rules/gpl-1.0-plus_188.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_189.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_189.RULE index b8321a1f33b..3353391bd84 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_189.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_189.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + comes with NO WARRANTY "to the extent permitted by law. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_189.yml b/src/licensedcode/data/rules/gpl-1.0-plus_189.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_189.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_19.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_19.RULE index e29f18251d6..9bb95ba4ec7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_19.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_19.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + is hereby placed under the GPL - Gnu Public License. You are free and welcome to copy, view and modify the sources. My only wish is that my copyright presented above will be left and that a list of the bug fixes, -added features, etc, will be provided. +added features, etc, will be provided. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_19.yml b/src/licensedcode/data/rules/gpl-1.0-plus_19.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_190.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_190.RULE index 6d3ad4c9d64..45cb81e3b5a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_190.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_190.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + "You may redistribute copies of "under the terms of the GNU General Public Licence. "See the file `COPYING' for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_190.yml b/src/licensedcode/data/rules/gpl-1.0-plus_190.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_190.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_191.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_191.RULE index 2507f505c16..5d25770b1c9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_191.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_191.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + under the terms of the GNU General Public Licence. "See the file `COPYING' for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_191.yml b/src/licensedcode/data/rules/gpl-1.0-plus_191.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_191.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_192.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_192.RULE index 3772874564a..4a42f456820 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_192.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_192.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Common-sense licensing statement: Using any portion of this program in your own program means that you must give credit to the original author and release the resulting code under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_192.yml b/src/licensedcode/data/rules/gpl-1.0-plus_192.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_193.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_193.RULE index 23817bd29dc..06d938be40e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_193.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_193.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This software may be used and distributed according to the terms of the GNU General Public License (GPL), incorporated herein by reference. Contact the author for use under other terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_193.yml b/src/licensedcode/data/rules/gpl-1.0-plus_193.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_193.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_194.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_194.RULE index e721ed78863..ce91c349db7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_194.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_194.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This software may be used and distributed according to the terms of the GNU General Public License (GPL), incorporated herein by reference. Contact the author for use under other terms. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_194.yml b/src/licensedcode/data/rules/gpl-1.0-plus_194.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_195.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_195.RULE index fcd2cdf4932..8ab64d8b94a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_195.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_195.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL'ed software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_195.yml b/src/licensedcode/data/rules/gpl-1.0-plus_195.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_196.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_196.RULE index 48453f1af9c..0f698c71e96 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_196.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_196.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + This emulator is normally available under a BSD license. It's available in this form only under GPL. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_196.yml b/src/licensedcode/data/rules/gpl-1.0-plus_196.yml deleted file mode 100644 index c8306959fa7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_197.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_197.RULE index 5fe3dbd704f..62304f65cc2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_197.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_197.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + The GPL license can be found at http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_197.yml b/src/licensedcode/data/rules/gpl-1.0-plus_197.yml deleted file mode 100644 index 743755f3d2c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_198.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_198.RULE index 1ecd595b782..bab3ed13f43 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_198.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_198.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_198.yml b/src/licensedcode/data/rules/gpl-1.0-plus_198.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_199.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_199.RULE index 845a9213f12..9d3169298e8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_199.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_199.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + available under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_199.yml b/src/licensedcode/data/rules/gpl-1.0-plus_199.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE index 529d73ac607..27122b72acb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: Short declaration +--- + * 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 1 or diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_2.yml deleted file mode 100644 index bbf48e89cce..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: Short declaration diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_20.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_20.RULE index 8f24e907ac7..f4e9cd8eaa7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_20.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_20.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + * This file can be redistributed under the terms of the GNU General * Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_20.yml b/src/licensedcode/data/rules/gpl-1.0-plus_20.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_200.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_200.RULE index ebca7f0055a..cdb96724849 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_200.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_200.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_200.yml b/src/licensedcode/data/rules/gpl-1.0-plus_200.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_201.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_201.RULE index 2c608906cc1..b397307793d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_201.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_201.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + My work is under the GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_201.yml b/src/licensedcode/data/rules/gpl-1.0-plus_201.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_202.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_202.RULE index d1be1b449b2..ce29a316ab0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_202.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_202.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_202.yml b/src/licensedcode/data/rules/gpl-1.0-plus_202.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_203.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_203.RULE index cb4e9437322..5cd9a552d59 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_203.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_203.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + free and open-source (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_203.yml b/src/licensedcode/data/rules/gpl-1.0-plus_203.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_204.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_204.RULE index 1125062c31a..87a53bcccd9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_204.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_204.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_204.yml b/src/licensedcode/data/rules/gpl-1.0-plus_204.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_205.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_205.RULE index 36d23480cd9..6dbe49006af 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_205.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_205.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed program \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_205.yml b/src/licensedcode/data/rules/gpl-1.0-plus_205.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_206.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_206.RULE index 415740de447..36526cb9b94 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_206.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_206.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_206.yml b/src/licensedcode/data/rules/gpl-1.0-plus_206.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_207.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_207.RULE index 1f3a17887ae..fe2c25a3e13 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_207.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_207.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL licensed extensions \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_207.yml b/src/licensedcode/data/rules/gpl-1.0-plus_207.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_208.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_208.RULE index cbf878bdae5..c28c3ab6643 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_208.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_208.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + All GPL licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_208.yml b/src/licensedcode/data/rules/gpl-1.0-plus_208.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_209.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_209.RULE index 1d3b382073d..fb1829bb0ea 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_209.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_209.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL licensed source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_209.yml b/src/licensedcode/data/rules/gpl-1.0-plus_209.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_21.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_21.RULE index a164380f40a..da92bdd7ee8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_21.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_21.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + It is included here under the GPL by permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_21.yml b/src/licensedcode/data/rules/gpl-1.0-plus_21.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_210.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_210.RULE index 942297e4d83..325d6bbdc43 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_210.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_210.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL licensed C++ code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_210.yml b/src/licensedcode/data/rules/gpl-1.0-plus_210.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_211.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_211.RULE index 156b9465948..e7ceae105f2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_211.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_211.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed prototype \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_211.yml b/src/licensedcode/data/rules/gpl-1.0-plus_211.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_212.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_212.RULE index 2c01c4b515e..6bf811d1784 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_212.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_212.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed code template \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_212.yml b/src/licensedcode/data/rules/gpl-1.0-plus_212.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_213.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_213.RULE index 33cb337ef24..4e4df7d4ac5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_213.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_213.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed plugins \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_213.yml b/src/licensedcode/data/rules/gpl-1.0-plus_213.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_214.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_214.RULE index dcefe3ab4cf..0a2c16a9cfe 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_214.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_214.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL licensed bash script \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_214.yml b/src/licensedcode/data/rules/gpl-1.0-plus_214.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_215.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_215.RULE index 71911146572..04f9c3857c4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_215.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_215.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed, free software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_215.yml b/src/licensedcode/data/rules/gpl-1.0-plus_215.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_216.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_216.RULE index 0ce9a315984..1413cc8cc82 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_216.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_216.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GPL licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_216.yml b/src/licensedcode/data/rules/gpl-1.0-plus_216.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_217.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_217.RULE index b78d0801f1b..75b4dce966f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_217.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_217.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GPL licensed project \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_217.yml b/src/licensedcode/data/rules/gpl-1.0-plus_217.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_218.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_218.RULE index 2d418752657..061fdd85104 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_218.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_218.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GPL licensed proyect \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_218.yml b/src/licensedcode/data/rules/gpl-1.0-plus_218.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_219.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_219.RULE index 2f38586b366..6f8661fc114 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_219.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_219.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL licensed JavaScript library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_219.yml b/src/licensedcode/data/rules/gpl-1.0-plus_219.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_22.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_22.RULE index a49d473d487..ee754966edb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_22.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_22.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + Copy and use freely under the terms of the GNU General Public License as stated in the LICENSE file in this same directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_22.yml b/src/licensedcode/data/rules/gpl-1.0-plus_22.yml deleted file mode 100644 index c96ccd382d7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_220.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_220.RULE index 5b6d5870b73..e8a470ca0c0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_220.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_220.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL licensed code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_220.yml b/src/licensedcode/data/rules/gpl-1.0-plus_220.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_221.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_221.RULE index e8cf62ebf34..336cdde9647 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_221.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_221.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_221.yml b/src/licensedcode/data/rules/gpl-1.0-plus_221.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_222.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_222.RULE index 9be7f36c6ba..b41f81be7dc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_222.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_222.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + open-sourced, GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_222.yml b/src/licensedcode/data/rules/gpl-1.0-plus_222.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_223.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_223.RULE index 1afb8bc15a7..d89c3ed946e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_223.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_223.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed commandline tool \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_223.yml b/src/licensedcode/data/rules/gpl-1.0-plus_223.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_224.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_224.RULE index f0a9597f394..f37707448db 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_224.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_224.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed Ruby library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_224.yml b/src/licensedcode/data/rules/gpl-1.0-plus_224.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_225.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_225.RULE index a64d0518be5..800d5055631 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_225.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_225.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + free GPL-licensed Ruby library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_225.yml b/src/licensedcode/data/rules/gpl-1.0-plus_225.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_226.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_226.RULE index ffce54885ea..774a5c2a3d0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_226.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_226.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed module \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_226.yml b/src/licensedcode/data/rules/gpl-1.0-plus_226.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_227.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_227.RULE index a40f2495619..38338d04a76 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_227.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_227.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed compiler \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_227.yml b/src/licensedcode/data/rules/gpl-1.0-plus_227.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_228.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_228.RULE index 8bda6d2ab95..6af21fe7b80 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_228.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_228.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed components \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_228.yml b/src/licensedcode/data/rules/gpl-1.0-plus_228.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_229.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_229.RULE index 794016e8311..db9147565fb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_229.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_229.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_229.yml b/src/licensedcode/data/rules/gpl-1.0-plus_229.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_23.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_23.RULE index bb39906cf09..0b0235857ed 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_23.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_23.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +ignorable_copyrights: + - copyrighted by the Free Software Foundation, Inc. +ignorable_holders: + - the Free Software Foundation, Inc. +--- + under the terms of the GNU GPL, as stated below. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_23.yml b/src/licensedcode/data/rules/gpl-1.0-plus_23.yml deleted file mode 100644 index f60f8c8aa65..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -ignorable_copyrights: - - copyrighted by the Free Software Foundation, Inc. -ignorable_holders: - - the Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_230.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_230.RULE index 27645d004b0..789c2c239b5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_230.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_230.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed third-party \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_230.yml b/src/licensedcode/data/rules/gpl-1.0-plus_230.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_231.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_231.RULE index d5f293b4782..9ff182edd2c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_231.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_231.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed, 100% free and open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_231.yml b/src/licensedcode/data/rules/gpl-1.0-plus_231.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_232.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_232.RULE index da924c50aa2..cb303ae23d2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_232.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_232.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_232.yml b/src/licensedcode/data/rules/gpl-1.0-plus_232.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_232.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_233.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_233.RULE index 2df1a3e8a3e..93d88abf876 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_233.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_233.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed program \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_233.yml b/src/licensedcode/data/rules/gpl-1.0-plus_233.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_234.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_234.RULE index 19fb4db53c0..e18ed1e4204 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_234.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_234.RULE @@ -1 +1,7 @@ - The driver was originally released under the GPL and is currently hosted at: +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + + The driver was originally released under the GPL and is currently hosted at: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_234.yml b/src/licensedcode/data/rules/gpl-1.0-plus_234.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_235.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_235.RULE index 619ea092725..a6e0016d8b1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_235.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_235.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_235.yml b/src/licensedcode/data/rules/gpl-1.0-plus_235.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_235.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_236.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_236.RULE index 5acce37a696..17ba4facc58 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_236.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_236.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL licensed extensions \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_236.yml b/src/licensedcode/data/rules/gpl-1.0-plus_236.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_236.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_237.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_237.RULE index 6bcaf6ea92a..c8937fa4080 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_237.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_237.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + All GNU/GPL licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_237.yml b/src/licensedcode/data/rules/gpl-1.0-plus_237.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_238.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_238.RULE index 8bc4eb0e1f9..88f3141f14c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_238.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_238.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL licensed source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_238.yml b/src/licensedcode/data/rules/gpl-1.0-plus_238.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_239.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_239.RULE index 56117884c3d..16fd777ad15 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_239.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_239.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL licensed C++ code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_239.yml b/src/licensedcode/data/rules/gpl-1.0-plus_239.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_24.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_24.RULE index 1cc8e74c872..28b487f447d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_24.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_24.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library is licensed under the GPLv2+. Please refer to the COPYING file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_24.yml b/src/licensedcode/data/rules/gpl-1.0-plus_24.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_240.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_240.RULE index 4a58ae93ff9..0a350864f12 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_240.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_240.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed prototype \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_240.yml b/src/licensedcode/data/rules/gpl-1.0-plus_240.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_241.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_241.RULE index b3fc54699eb..128302d9744 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_241.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_241.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed code template \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_241.yml b/src/licensedcode/data/rules/gpl-1.0-plus_241.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_242.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_242.RULE index 7266ea66283..675f63fbc91 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_242.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_242.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed plugins \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_242.yml b/src/licensedcode/data/rules/gpl-1.0-plus_242.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_243.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_243.RULE index 8862756cd73..43e92897edf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_243.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_243.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL licensed bash script \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_243.yml b/src/licensedcode/data/rules/gpl-1.0-plus_243.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_243.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_244.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_244.RULE index a22b166c6db..f72013564ea 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_244.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_244.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed, free software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_244.yml b/src/licensedcode/data/rules/gpl-1.0-plus_244.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_245.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_245.RULE index 26155a2409f..3f9b6c1e2ab 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_245.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_245.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GNU/GPL licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_245.yml b/src/licensedcode/data/rules/gpl-1.0-plus_245.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_245.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_246.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_246.RULE index 9120d8106a2..6d0377c4753 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_246.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_246.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GNU/GPL licensed project \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_246.yml b/src/licensedcode/data/rules/gpl-1.0-plus_246.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_246.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_247.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_247.RULE index b8e43770fc3..094bbd6401b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_247.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_247.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GNU/GPL licensed proyect \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_247.yml b/src/licensedcode/data/rules/gpl-1.0-plus_247.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_248.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_248.RULE index e767103d99a..362f9eabec8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_248.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_248.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL licensed JavaScript library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_248.yml b/src/licensedcode/data/rules/gpl-1.0-plus_248.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_249.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_249.RULE index 7078a004b7f..9d89a8c154f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_249.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_249.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + free GNU/GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_249.yml b/src/licensedcode/data/rules/gpl-1.0-plus_249.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_25.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_25.RULE index 6f5eead70ac..1db9fd05f09 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_25.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 76 +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. See ../COPYING for -the full agreement. +the full agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_25.yml b/src/licensedcode/data/rules/gpl-1.0-plus_25.yml deleted file mode 100644 index e80bdfd6194..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 76 -referenced_filenames: - - ../COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_250.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_250.RULE index bc2e08fd76c..7deba8eba8e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_250.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_250.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL licensed code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_250.yml b/src/licensedcode/data/rules/gpl-1.0-plus_250.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_251.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_251.RULE index e513fda85a6..adcedad3cc3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_251.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_251.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_251.yml b/src/licensedcode/data/rules/gpl-1.0-plus_251.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_252.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_252.RULE index 9d43e66cc38..501683fd601 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_252.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_252.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed components \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_252.yml b/src/licensedcode/data/rules/gpl-1.0-plus_252.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_253.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_253.RULE index fe0cb450832..e00cd9f312e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_253.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_253.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/GPL-licensed plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_253.yml b/src/licensedcode/data/rules/gpl-1.0-plus_253.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_253.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_254.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_254.RULE index f1816249eeb..7fad18a398c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_254.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_254.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed packages \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_254.yml b/src/licensedcode/data/rules/gpl-1.0-plus_254.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_254.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_255.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_255.RULE index b3d598ae6bd..ff57a0ff1f8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_255.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_255.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed package \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_255.yml b/src/licensedcode/data/rules/gpl-1.0-plus_255.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_255.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_256.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_256.RULE index fae6d8bd000..d1ed533d8a0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_256.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_256.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU GPL-licensed packages \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_256.yml b/src/licensedcode/data/rules/gpl-1.0-plus_256.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_257.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_257.RULE index e5871add9b0..4aba9ecf086 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_257.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_257.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU GPL-licensed package \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_257.yml b/src/licensedcode/data/rules/gpl-1.0-plus_257.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_257.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_258.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_258.RULE index 5135b913977..33233743744 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_258.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_258.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed patches \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_258.yml b/src/licensedcode/data/rules/gpl-1.0-plus_258.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_259.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_259.RULE index dce02bd363a..39bed2ce42c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_259.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_259.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed patch \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_259.yml b/src/licensedcode/data/rules/gpl-1.0-plus_259.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_26.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_26.RULE index 7debc13b2b2..4cac8878a46 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_26.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.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 1, or (at your option) @@ -10,4 +17,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program (in ../COPYING); if not, write to the Free -Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_26.yml b/src/licensedcode/data/rules/gpl-1.0-plus_26.yml deleted file mode 100644 index a79336bcba3..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - ../COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_260.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_260.RULE index ee5f8d25bad..b8615ee0e2a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_260.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_260.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU GPL-licensed patches \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_260.yml b/src/licensedcode/data/rules/gpl-1.0-plus_260.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_261.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_261.RULE index a040ad4a880..8985e04c0e7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_261.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_261.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU GPL-licensed patch \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_261.yml b/src/licensedcode/data/rules/gpl-1.0-plus_261.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_262.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_262.RULE index 60384b23ccc..4c2109e6cf4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_262.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_262.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed Client Libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_262.yml b/src/licensedcode/data/rules/gpl-1.0-plus_262.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_263.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_263.RULE index 8669b9fd990..5f6f85353f2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_263.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_263.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + plugin is GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_263.yml b/src/licensedcode/data/rules/gpl-1.0-plus_263.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_264.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_264.RULE index 549a81a662d..4af49288134 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_264.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_264.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + based on GPL-licensed source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_264.yml b/src/licensedcode/data/rules/gpl-1.0-plus_264.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_265.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_265.RULE index b4d0a21610e..ffa105b6bca 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_265.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_265.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_265.yml b/src/licensedcode/data/rules/gpl-1.0-plus_265.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_266.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_266.RULE index 612126521c3..6c4c384b1c4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_266.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_266.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed repository \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_266.yml b/src/licensedcode/data/rules/gpl-1.0-plus_266.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_267.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_267.RULE index 583e8a57e27..36d9d70db67 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_267.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_267.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + contains third party code that is GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_267.yml b/src/licensedcode/data/rules/gpl-1.0-plus_267.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_268.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_268.RULE index 2917f16033e..5333ef5ec55 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_268.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_268.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed work \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_268.yml b/src/licensedcode/data/rules/gpl-1.0-plus_268.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_269.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_269.RULE index a3b9a3847b9..6ca415ecd63 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_269.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_269.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed "wrapper project" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_269.yml b/src/licensedcode/data/rules/gpl-1.0-plus_269.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_27.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_27.RULE index 4f37e412028..abae2b2dea1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_27.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_27.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - gnu-general-public-license.html +--- + gnu-general-public-license.html -GNU General Public License +GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_27.yml b/src/licensedcode/data/rules/gpl-1.0-plus_27.yml deleted file mode 100644 index 8c2b9d400fb..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - gnu-general-public-license.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_270.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_270.RULE index 193ca54b18b..8224001b4a8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_270.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_270.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + a free, GPL-licensed program \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_270.yml b/src/licensedcode/data/rules/gpl-1.0-plus_270.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_271.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_271.RULE index 07c8e8723c7..aa7223bf2ac 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_271.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_271.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed images \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_271.yml b/src/licensedcode/data/rules/gpl-1.0-plus_271.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_272.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_272.RULE index 584d5afdf91..844c1f99f4d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_272.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_272.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed collection of scripts \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_272.yml b/src/licensedcode/data/rules/gpl-1.0-plus_272.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_273.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_273.RULE index 88f0ef4987b..8de04377d5e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_273.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_273.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_273.yml b/src/licensedcode/data/rules/gpl-1.0-plus_273.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_274.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_274.RULE index 0dfb213f5bf..c2fe84ad177 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_274.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_274.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed codecs \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_274.yml b/src/licensedcode/data/rules/gpl-1.0-plus_274.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_275.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_275.RULE index dc979f26ebb..baa7fca1760 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_275.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_275.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Those files are GPL-licensed, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_275.yml b/src/licensedcode/data/rules/gpl-1.0-plus_275.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_276.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_276.RULE index 3366ddac0f7..ab063b7b00b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_276.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_276.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed MySQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_276.yml b/src/licensedcode/data/rules/gpl-1.0-plus_276.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_277.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_277.RULE index 1a2cc9139c2..66682466a25 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_277.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_277.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed files \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_277.yml b/src/licensedcode/data/rules/gpl-1.0-plus_277.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_277.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_278.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_278.RULE index 8dfe0676623..06df8942016 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_278.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_278.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_278.yml b/src/licensedcode/data/rules/gpl-1.0-plus_278.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_279.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_279.RULE index 7e527f96c13..a80d502e38e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_279.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_279.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed application \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_279.yml b/src/licensedcode/data/rules/gpl-1.0-plus_279.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_279.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_28.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_28.RULE index 88eff78f5a7..f445e51af8f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_28.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_28.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + http://www.gnu.org/copyleft/gpl.html full text of the GPL -for the most authoritative definition of the obligations. +for the most authoritative definition of the obligations. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_28.yml b/src/licensedcode/data/rules/gpl-1.0-plus_28.yml deleted file mode 100644 index 0cfafa5f5b2..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_280.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_280.RULE index 02410cae590..313f67fffba 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_280.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_280.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL-licensed parts \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_280.yml b/src/licensedcode/data/rules/gpl-1.0-plus_280.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_280.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_281.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_281.RULE index bb75987d4f9..e72c336fe7b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_281.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_281.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_281.yml b/src/licensedcode/data/rules/gpl-1.0-plus_281.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_282.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_282.RULE index 45d11facbbe..b9b24d348e6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_282.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_282.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed versions \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_282.yml b/src/licensedcode/data/rules/gpl-1.0-plus_282.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_283.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_283.RULE index 6df9b7da920..ab2f53d7ac4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_283.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_283.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_283.yml b/src/licensedcode/data/rules/gpl-1.0-plus_283.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_283.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_284.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_284.RULE index a25030ffa30..990a01578fa 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_284.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_284.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Code is GPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_284.yml b/src/licensedcode/data/rules/gpl-1.0-plus_284.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_284.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_285.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_285.RULE index bd3ba3566bb..303cb4cfef9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_285.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_285.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed content \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_285.yml b/src/licensedcode/data/rules/gpl-1.0-plus_285.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_285.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_286.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_286.RULE index fc073497822..188f216d4ee 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_286.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_286.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + ## License GPL-licensed. See `LICENSE.txt` for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_286.yml b/src/licensedcode/data/rules/gpl-1.0-plus_286.yml deleted file mode 100644 index 2e361603ba1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_286.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_287.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_287.RULE index 78c2b762d19..a402887aa04 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_287.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_287.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License GPL-Licensed, see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_287.yml b/src/licensedcode/data/rules/gpl-1.0-plus_287.yml deleted file mode 100644 index d686c40de24..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_287.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_288.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_288.RULE index 0b7819c195e..cd0f6fb3043 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_288.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_288.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed linux driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_288.yml b/src/licensedcode/data/rules/gpl-1.0-plus_288.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_289.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_289.RULE index 995a07fab88..a25f446e7ad 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_289.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_289.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + sources are released under the terms of the GPL (http://www.gnu.org/copyleft/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_289.yml b/src/licensedcode/data/rules/gpl-1.0-plus_289.yml deleted file mode 100644 index a191db22d17..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_289.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_29.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_29.RULE index c4f7a782be6..f8db21b0948 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_29.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_29.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + available under the terms of the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_29.yml b/src/licensedcode/data/rules/gpl-1.0-plus_29.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_290.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_290.RULE index f29d57aa3b1..aa2ae6340a1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_290.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_290.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_290.yml b/src/licensedcode/data/rules/gpl-1.0-plus_290.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_290.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_291.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_291.RULE index d3ed0159b47..028bd0c36ba 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_291.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_291.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYLEFT +--- + Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_291.yml b/src/licensedcode/data/rules/gpl-1.0-plus_291.yml deleted file mode 100644 index b7550a1fdaf..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_291.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYLEFT diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_292.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_292.RULE index 1abf19ad406..64a61684452 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_292.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_292.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is subject to the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_292.yml b/src/licensedcode/data/rules/gpl-1.0-plus_292.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_293.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_293.RULE index efbe27abd23..3979d6d745f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_293.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_293.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This code is subject to the GNU general public license. See LICENSE file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_293.yml b/src/licensedcode/data/rules/gpl-1.0-plus_293.yml deleted file mode 100644 index d686c40de24..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_293.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_294.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_294.RULE index 2df55ff2ca7..98719108063 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_294.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_294.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is placed into the Public Domain under the terms of the GNU Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_294.yml b/src/licensedcode/data/rules/gpl-1.0-plus_294.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_295.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_295.RULE index d444d7677ba..fcb3aa58331 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_295.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_295.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + [gpl]: http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_295.yml b/src/licensedcode/data/rules/gpl-1.0-plus_295.yml deleted file mode 100644 index 7e1c8d0fd1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_295.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_296.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_296.RULE index fea50f8d783..0c69d056221 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_296.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_296.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + [gpl]: https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_296.yml b/src/licensedcode/data/rules/gpl-1.0-plus_296.yml deleted file mode 100644 index 87950c72b78..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_296.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_297.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_297.RULE index ebef888f5f6..3aa458f7b67 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_297.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_297.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd program \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_297.yml b/src/licensedcode/data/rules/gpl-1.0-plus_297.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_298.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_298.RULE index c0a3a0e327f..388cc6cd66b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_298.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_298.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd programs \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_298.yml b/src/licensedcode/data/rules/gpl-1.0-plus_298.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_299.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_299.RULE index a247c669fb8..9972874cb84 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_299.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_299.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd system \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_299.yml b/src/licensedcode/data/rules/gpl-1.0-plus_299.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_3.RULE index f140ea2c12d..e61b669ad29 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v1.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_3.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_30.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_30.RULE index feb21fac1ae..3a5f993923f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_30.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_30.RULE @@ -1 +1,7 @@ -full text of the GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +full text of the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_30.yml b/src/licensedcode/data/rules/gpl-1.0-plus_30.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_300.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_300.RULE index d43ae3cc6c2..49c2292072d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_300.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_300.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd systems \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_300.yml b/src/licensedcode/data/rules/gpl-1.0-plus_300.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_301.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_301.RULE index 8a3a4161d90..02a353d5e7b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_301.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_301.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_301.yml b/src/licensedcode/data/rules/gpl-1.0-plus_301.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_301.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_302.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_302.RULE index 73ee00a8bed..2cd8b68efc2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_302.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_302.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd MMORPG engines \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_302.yml b/src/licensedcode/data/rules/gpl-1.0-plus_302.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_303.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_303.RULE index 68cc9d30ef6..9b2bc6c861e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_303.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_303.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_303.yml b/src/licensedcode/data/rules/gpl-1.0-plus_303.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_303.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_304.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_304.RULE index e06fde80cb2..b246b64bce4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_304.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_304.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_304.yml b/src/licensedcode/data/rules/gpl-1.0-plus_304.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_305.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_305.RULE index 0b9049cba34..ad5237c15c1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_305.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_305.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_305.yml b/src/licensedcode/data/rules/gpl-1.0-plus_305.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_306.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_306.RULE index f018ed395d1..73a4bf30a4e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_306.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_306.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd Release \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_306.yml b/src/licensedcode/data/rules/gpl-1.0-plus_306.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_306.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_307.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_307.RULE index 0494936b5ee..a7d2a5f8e28 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_307.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_307.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Linux GPL'd \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_307.yml b/src/licensedcode/data/rules/gpl-1.0-plus_307.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_308.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_308.RULE index 2de67db76bf..4da08f5a0ee 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_308.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_308.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + now GPL'd \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_308.yml b/src/licensedcode/data/rules/gpl-1.0-plus_308.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_308.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_309.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_309.RULE index 68be90aa375..3e7cca810d5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_309.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_309.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_309.yml b/src/licensedcode/data/rules/gpl-1.0-plus_309.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_31.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_31.RULE index 6d17c33685e..dede1e6dbd9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_31.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_31.RULE @@ -1 +1,7 @@ -covered by the Gnu General Public License. \ No newline at end of file +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +covered by the Gnu General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_31.yml b/src/licensedcode/data/rules/gpl-1.0-plus_31.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_310.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_310.RULE index 872f9cd4150..2eaeecfd42c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_310.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_310.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd source \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_310.yml b/src/licensedcode/data/rules/gpl-1.0-plus_310.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_311.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_311.RULE index dd6f6d927ce..afdeaf88a28 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_311.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_311.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd sources \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_311.yml b/src/licensedcode/data/rules/gpl-1.0-plus_311.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_312.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_312.RULE index 77208902688..eb16abebefb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_312.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_312.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd web services software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_312.yml b/src/licensedcode/data/rules/gpl-1.0-plus_312.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_312.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_313.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_313.RULE index 071d2928cb9..487b3326ae8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_313.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_313.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd web services \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_313.yml b/src/licensedcode/data/rules/gpl-1.0-plus_313.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_314.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_314.RULE index 7deb880a72a..12af19cc0d2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_314.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_314.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd suite \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_314.yml b/src/licensedcode/data/rules/gpl-1.0-plus_314.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_314.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_315.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_315.RULE index 113c4db4c15..2aa4b6beb88 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_315.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_315.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd module \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_315.yml b/src/licensedcode/data/rules/gpl-1.0-plus_315.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_315.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_316.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_316.RULE index b3d99f88dd3..7f9ed414b2b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_316.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_316.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd audio editing software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_316.yml b/src/licensedcode/data/rules/gpl-1.0-plus_316.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_316.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_317.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_317.RULE index 107cb4815f4..d0fd673d6b2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_317.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_317.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd Electronic Design Automation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_317.yml b/src/licensedcode/data/rules/gpl-1.0-plus_317.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_318.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_318.RULE index 63cc47dee28..8cd4dcfddb9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_318.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_318.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd Rich Text Editor \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_318.yml b/src/licensedcode/data/rules/gpl-1.0-plus_318.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_319.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_319.RULE index 0cb8ca37256..89ea2189fab 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_319.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_319.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd Python code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_319.yml b/src/licensedcode/data/rules/gpl-1.0-plus_319.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_319.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_32.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_32.RULE index 33ea62fed20..b55fac63338 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_32.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_32.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + This program is free software, released under the GNU General Public License and you are welcome to redistribute it under certain conditions. It comes with ABSOLUTELY NO WARRANTY; for details read the GNU General Public License to be found in the file "COPYING" distributed with this program, or online at: -http://www.gnu.org/copyleft/gpl.html +http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_32.yml b/src/licensedcode/data/rules/gpl-1.0-plus_32.yml deleted file mode 100644 index ffbe9415313..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_320.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_320.RULE index 17da3bbb3ca..0aaf38e6f02 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_320.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_320.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd music. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_320.yml b/src/licensedcode/data/rules/gpl-1.0-plus_320.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_320.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_321.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_321.RULE index 80c3b033a52..82fad530578 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_321.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_321.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd drivers \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_321.yml b/src/licensedcode/data/rules/gpl-1.0-plus_321.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_321.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_322.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_322.RULE index 9430f0cccc5..514d6f8d452 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_322.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_322.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd projects \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_322.yml b/src/licensedcode/data/rules/gpl-1.0-plus_322.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_322.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_323.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_323.RULE index 3e623674bb5..b02aa4ea05c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_323.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_323.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd project \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_323.yml b/src/licensedcode/data/rules/gpl-1.0-plus_323.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_323.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_324.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_324.RULE index c12c18fd7ee..2f7253223e0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_324.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_324.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd server \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_324.yml b/src/licensedcode/data/rules/gpl-1.0-plus_324.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_324.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_325.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_325.RULE index c14eba042de..8b42eec97da 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_325.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_325.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd game engines \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_325.yml b/src/licensedcode/data/rules/gpl-1.0-plus_325.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_325.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_326.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_326.RULE index 9fbe1f5433b..982bfd0b441 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_326.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_326.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + free (GPL'd) text editor \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_326.yml b/src/licensedcode/data/rules/gpl-1.0-plus_326.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_326.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_327.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_327.RULE index caf156ebf63..dc3c6c08897 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_327.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_327.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd perl server \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_327.yml b/src/licensedcode/data/rules/gpl-1.0-plus_327.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_327.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_328.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_328.RULE index c488b3419fe..11ba9f5c715 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_328.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_328.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd hypervisor \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_328.yml b/src/licensedcode/data/rules/gpl-1.0-plus_328.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_328.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_329.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_329.RULE index 0fd6e9aa89f..2b18861238e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_329.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_329.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd apps \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_329.yml b/src/licensedcode/data/rules/gpl-1.0-plus_329.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_329.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE index 446dfea0ed9..538f64d4486 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_33.yml b/src/licensedcode/data/rules/gpl-1.0-plus_33.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_330.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_330.RULE index a6937acb962..f35c5077f8b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_330.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_330.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd patch \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_330.yml b/src/licensedcode/data/rules/gpl-1.0-plus_330.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_330.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_331.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_331.RULE index cbb44344014..934b924e23a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_331.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_331.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_331.yml b/src/licensedcode/data/rules/gpl-1.0-plus_331.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_331.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_332.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_332.RULE index 16efa3f3b5a..8c983df313c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_332.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_332.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd components \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_332.yml b/src/licensedcode/data/rules/gpl-1.0-plus_332.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_333.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_333.RULE index 84e48aef53a..c1d61f87833 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_333.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_333.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd package \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_333.yml b/src/licensedcode/data/rules/gpl-1.0-plus_333.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_333.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_334.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_334.RULE index c43e22473c1..402c4b92946 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_334.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_334.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/doc/copyright/GPL + - COPYING +--- + This microcode data is placed under the terms of the GNU General Public License. The GPL is contained in /usr/doc/copyright/GPL on a - Debian system and in the file COPYING in the Linux kernel source. + Debian system and in the file COPYING in the Linux kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_334.yml b/src/licensedcode/data/rules/gpl-1.0-plus_334.yml deleted file mode 100644 index 6f6b37f4b8b..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_334.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/doc/copyright/GPL - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_335.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_335.RULE index 46baf54eabb..321465bde21 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_335.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_335.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This software falls under the GNU General Public License. -Please read the COPYING file for more information +Please read the COPYING file for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_335.yml b/src/licensedcode/data/rules/gpl-1.0-plus_335.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_335.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_336.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_336.RULE index 0b6cbb22866..f6cfa57771f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_336.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_336.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * This file is released under the GNU General Public License. * Refer to the COPYING file distributed with this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_336.yml b/src/licensedcode/data/rules/gpl-1.0-plus_336.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_337.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_337.RULE index 1a18b510637..0a49a43a4e9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_337.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_337.RULE @@ -1 +1,7 @@ - * This file is released under the GNU General Public License. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + + * This file is released under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_337.yml b/src/licensedcode/data/rules/gpl-1.0-plus_337.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_337.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_338.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_338.RULE index 5b16226a344..b88be211556 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_338.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_338.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd codebase \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_338.yml b/src/licensedcode/data/rules/gpl-1.0-plus_338.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_338.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_339.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_339.RULE index 73b11fc6138..30c24f721b2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_339.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_339.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL'd free \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_339.yml b/src/licensedcode/data/rules/gpl-1.0-plus_339.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_339.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_34.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_34.RULE index a1edf94d850..d1bca2dd65d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_34.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_34.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + You should have received a copy of the GNU General Public License -along with this program. +along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_34.yml b/src/licensedcode/data/rules/gpl-1.0-plus_34.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_340.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_340.RULE index 3b7601f5d28..5b9cf7d0392 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_340.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_340.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + free GPL'd \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_340.yml b/src/licensedcode/data/rules/gpl-1.0-plus_340.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_340.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_341.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_341.RULE index e0660ba307a..7f2864ce54c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_341.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_341.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_341.yml b/src/licensedcode/data/rules/gpl-1.0-plus_341.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_342.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_342.RULE index 9cea3bb02a3..2bc90f9183a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_342.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_342.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + GNU Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_342.yml b/src/licensedcode/data/rules/gpl-1.0-plus_342.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_342.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_343.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_343.RULE index 74b90d22807..437e422a00a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_343.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_343.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +notes: a weak reference typically to the GPL +--- + under the GNU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_343.yml b/src/licensedcode/data/rules/gpl-1.0-plus_343.yml deleted file mode 100644 index 81b37de7cb5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_343.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -notes: a weak reference typically to the GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_344.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_344.RULE index 990981b6d4a..4c8276811c5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_344.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_344.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +notes: a weak reference typically to the GPL +--- + the GNU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_344.yml b/src/licensedcode/data/rules/gpl-1.0-plus_344.yml deleted file mode 100644 index 81b37de7cb5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_344.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -notes: a weak reference typically to the GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_345.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_345.RULE index 22554190b4b..e7e10d67c5c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_345.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_345.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +notes: a weak reference typically to the GPL +--- + GNU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_345.yml b/src/licensedcode/data/rules/gpl-1.0-plus_345.yml deleted file mode 100644 index 81b37de7cb5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_345.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -notes: a weak reference typically to the GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_346.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_346.RULE index abfac3b28d0..9b3ff498d4c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_346.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_346.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +notes: a weak reference typically to the GPL +--- + under the GNU licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_346.yml b/src/licensedcode/data/rules/gpl-1.0-plus_346.yml deleted file mode 100644 index 81b37de7cb5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_346.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -notes: a weak reference typically to the GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_347.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_347.RULE index 35051be7373..d5fd280194b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_347.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_347.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +notes: a weak reference typically to the GPL +--- + the GNU licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_347.yml b/src/licensedcode/data/rules/gpl-1.0-plus_347.yml deleted file mode 100644 index 81b37de7cb5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_347.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -notes: a weak reference typically to the GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_348.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_348.RULE index 68e883f7a27..cc3925d2327 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_348.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_348.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +notes: a weak reference typically to the GPL +--- + GNU licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_348.yml b/src/licensedcode/data/rules/gpl-1.0-plus_348.yml deleted file mode 100644 index 81b37de7cb5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_348.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -notes: a weak reference typically to the GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_349.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_349.RULE index 2ff10b1e095..305f2d4b11f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_349.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_349.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is released under the terms of the GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_349.yml b/src/licensedcode/data/rules/gpl-1.0-plus_349.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_349.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_35.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_35.RULE index 729d8aeec57..1efb5af22cf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_35.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_35.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + 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-1.0-plus_35.yml b/src/licensedcode/data/rules/gpl-1.0-plus_35.yml deleted file mode 100644 index 71bc3df3603..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_350.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_350.RULE index cb2715f4914..1d74e5fccd8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_350.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_350.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +--- + of the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_350.yml b/src/licensedcode/data/rules/gpl-1.0-plus_350.yml deleted file mode 100644 index fb1f61395f4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_350.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_351.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_351.RULE index b3f9dfe9265..5d3ca7a3747 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_351.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_351.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 85 +--- + the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_351.yml b/src/licensedcode/data/rules/gpl-1.0-plus_351.yml deleted file mode 100644 index 1d07caebd45..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_351.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 85 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_352.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_352.RULE index f12b04dce73..f23f5b41ffc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_352.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_352.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + The source code is under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_352.yml b/src/licensedcode/data/rules/gpl-1.0-plus_352.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_352.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_353.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_353.RULE index 6136713bbc6..a2c85c675d5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_353.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_353.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + * This software may be modified and distributed under the terms * of the GPL license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_353.yml b/src/licensedcode/data/rules/gpl-1.0-plus_353.yml deleted file mode 100644 index 7f2b0e8a80a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_353.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_354.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_354.RULE index f8df0b205a0..940e967bbdc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_354.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_354.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + * * This program is free software and may be modified and distributed * under the terms and conditions of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_354.yml b/src/licensedcode/data/rules/gpl-1.0-plus_354.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_354.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_355.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_355.RULE index c880404ae90..e55e803e1fb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_355.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_355.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + * This program may be modified and distributed under the * terms of the GNU Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_355.yml b/src/licensedcode/data/rules/gpl-1.0-plus_355.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_355.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_356.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_356.RULE index 05f9e72a712..865c24f7003 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_356.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_356.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + It is open source and can be modified and distributed under the terms of the GNU General Public License. We think you'll find it useful, but it is distributed without any warranty and without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_356.yml b/src/licensedcode/data/rules/gpl-1.0-plus_356.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_356.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_357.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_357.RULE index 2b624dae163..98fb1006ddb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_357.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_357.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + # This program is free software and may be modified and # distributed under the terms of the GNU Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_357.yml b/src/licensedcode/data/rules/gpl-1.0-plus_357.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_357.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_358.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_358.RULE index 1a8458a3f08..1876cf2d0ac 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_358.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_358.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + /* This software may be modified and distributed under the terms */ /* of the GNU General Public License. See the LICENSE file for details. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_358.yml b/src/licensedcode/data/rules/gpl-1.0-plus_358.yml deleted file mode 100644 index d686c40de24..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_358.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_359.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_359.RULE index 4624879674a..369fff92b4e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_359.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_359.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_359.yml b/src/licensedcode/data/rules/gpl-1.0-plus_359.yml deleted file mode 100644 index 7e1c8d0fd1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_359.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_36.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_36.RULE index b9fb10ae768..ad865a47ad2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_36.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_36.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + 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-1.0-plus_36.yml b/src/licensedcode/data/rules/gpl-1.0-plus_36.yml deleted file mode 100644 index 6da4c89711e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_360.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_360.RULE index 9163065a2a3..7acd4639a8d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_360.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_360.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_360.yml b/src/licensedcode/data/rules/gpl-1.0-plus_360.yml deleted file mode 100644 index 7e1c8d0fd1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_360.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_361.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_361.RULE index f9f2a1e9eeb..bf978bc2ce8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_361.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_361.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/copyleft/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_361.yml b/src/licensedcode/data/rules/gpl-1.0-plus_361.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_361.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_362.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_362.RULE index 9a3c7be1211..911fcfcd652 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_362.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_362.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_362.yml b/src/licensedcode/data/rules/gpl-1.0-plus_362.yml deleted file mode 100644 index 87950c72b78..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_362.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_363.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_363.RULE index 72a0ee56cc2..71ce147661c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_363.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_363.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + license http://www.gnu.org/copyleft/gpl.html GNU/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_363.yml b/src/licensedcode/data/rules/gpl-1.0-plus_363.yml deleted file mode 100644 index 28caa247d24..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_363.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_364.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_364.RULE index 30d0c779474..1e830d215dc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_364.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_364.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + license http://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_364.yml b/src/licensedcode/data/rules/gpl-1.0-plus_364.yml deleted file mode 100644 index 28caa247d24..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_364.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_365.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_365.RULE index fa3c1a9db03..13d2633cd8b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_365.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_365.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + license https://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_365.yml b/src/licensedcode/data/rules/gpl-1.0-plus_365.yml deleted file mode 100644 index e09f50d05bf..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_365.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_366.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_366.RULE index 612a01138a6..16d44208eb8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_366.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_366.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + https://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_366.yml b/src/licensedcode/data/rules/gpl-1.0-plus_366.yml deleted file mode 100644 index e09f50d05bf..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_366.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_367.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_367.RULE index 2c467380eca..bf5c2744baa 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_367.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_367.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This is free software, and you are welcome to redistribute it under the terms of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_367.yml b/src/licensedcode/data/rules/gpl-1.0-plus_367.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_367.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_368.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_368.RULE index ba0db1ddd8c..e807f709d3e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_368.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_368.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +notes: this does not change anything to the GPL +--- + Please note that the GPL allows you to use the driver, NOT the radio. In order to use the radio, you need a license from the communications authority of your country \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_368.yml b/src/licensedcode/data/rules/gpl-1.0-plus_368.yml deleted file mode 100644 index 033a36c759d..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_368.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -notes: this does not change anything to the GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_369.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_369.RULE index 7e4e26ab6e9..103decc289e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_369.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_369.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * You may distribute this file under the terms 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-1.0-plus_369.yml b/src/licensedcode/data/rules/gpl-1.0-plus_369.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_369.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_37.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_37.RULE index b0141836131..368dc490de3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_37.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_37.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + allowing the code to * be released under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_37.yml b/src/licensedcode/data/rules/gpl-1.0-plus_37.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_370.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_370.RULE index 7a490d11747..4faa74e6d70 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_370.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_370.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + GNU General Public License http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_370.yml b/src/licensedcode/data/rules/gpl-1.0-plus_370.yml deleted file mode 100644 index 743755f3d2c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_370.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_371.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_371.RULE index afe038a5b0f..27f10b3795d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_371.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_371.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + GNU General Public License https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_371.yml b/src/licensedcode/data/rules/gpl-1.0-plus_371.yml deleted file mode 100644 index 431084c2a09..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_371.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_372.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_372.RULE index 3a4a6f28322..f01b9560904 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_372.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_372.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +notes: See https://www.agner.org/random/randomc.zip +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + * Copyright notice * GNU General Public License http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_372.yml b/src/licensedcode/data/rules/gpl-1.0-plus_372.yml deleted file mode 100644 index 779b06fc297..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_372.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -notes: See https://www.agner.org/random/randomc.zip -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_373.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_373.RULE index 613e083f360..85ad9215e73 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_373.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_373.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + GNU General Public License www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_373.yml b/src/licensedcode/data/rules/gpl-1.0-plus_373.yml deleted file mode 100644 index 7e1c8d0fd1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_373.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_374.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_374.RULE index d7c90da8557..f0fa9e6d370 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_374.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_374.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_374.yml b/src/licensedcode/data/rules/gpl-1.0-plus_374.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_374.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_375.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_375.RULE index f561dd85bbf..bbbe116ecbc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_375.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_375.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU GENERAL PUBLIC LICENSE applies to the program, it's packages, extensions and source code as published or made available through any third party. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_375.yml b/src/licensedcode/data/rules/gpl-1.0-plus_375.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_375.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_376.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_376.RULE index 0f958e017f3..641976cc53e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_376.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_376.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + License This software is licensed under the GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_376.yml b/src/licensedcode/data/rules/gpl-1.0-plus_376.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_377.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_377.RULE index cc651518aa2..ac53a44373f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_377.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_377.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_377.yml b/src/licensedcode/data/rules/gpl-1.0-plus_377.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_378.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_378.RULE index 66459bb9582..50b8cae7783 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_378.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_378.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + under GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_378.yml b/src/licensedcode/data/rules/gpl-1.0-plus_378.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_378.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_379.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_379.RULE index d5a1d9da959..c82d3a5185c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_379.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_379.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + fall under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_379.yml b/src/licensedcode/data/rules/gpl-1.0-plus_379.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_379.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_38.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_38.RULE index 2e307806c78..1dfb6783b97 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_38.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_38.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This code also uses code from University, rereleased as GPL by its -authors: +authors: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_38.yml b/src/licensedcode/data/rules/gpl-1.0-plus_38.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_380.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_380.RULE index 03632d2b167..3f9813f08d4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_380.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_380.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Under the GPL licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_380.yml b/src/licensedcode/data/rules/gpl-1.0-plus_380.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_380.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_381.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_381.RULE index 33056fdb0a2..a7224f65775 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_381.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_381.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + GPL = Gnu General Public License, http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_381.yml b/src/licensedcode/data/rules/gpl-1.0-plus_381.yml deleted file mode 100644 index 7e1c8d0fd1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_381.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_382.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_382.RULE index 7c09c80bef4..6fb4f76fce3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_382.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_382.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + theme is licensed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_382.yml b/src/licensedcode/data/rules/gpl-1.0-plus_382.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_382.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_383.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_383.RULE index b29d27b5bd9..79f77127a6e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_383.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_383.RULE @@ -1 +1,9 @@ -Licensed under the GNU GPL. See the file COPYING for details. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +Licensed under the GNU GPL. See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_383.yml b/src/licensedcode/data/rules/gpl-1.0-plus_383.yml deleted file mode 100644 index 173d312feb9..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_383.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_384.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_384.RULE index 5631008a2f5..c72e0769eaa 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_384.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_384.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + License This software is licenced under the GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_384.yml b/src/licensedcode/data/rules/gpl-1.0-plus_384.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_384.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_385.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_385.RULE index 4197aa49b7c..27cf4a5db97 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_385.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_385.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is licenced under the GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_385.yml b/src/licensedcode/data/rules/gpl-1.0-plus_385.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_385.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_386.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_386.RULE index 8b2dc3095b4..3eae59bae38 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_386.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_386.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + theme is licenced under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_386.yml b/src/licensedcode/data/rules/gpl-1.0-plus_386.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_387.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_387.RULE index 801fb5126b7..572dd79b710 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_387.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_387.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the Library GNU Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_387.yml b/src/licensedcode/data/rules/gpl-1.0-plus_387.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_388.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_388.RULE index 2d3fbc1ef1e..8f2b805cd3f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_388.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_388.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Some software comes under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_388.yml b/src/licensedcode/data/rules/gpl-1.0-plus_388.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_389.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_389.RULE index 120dc328ecb..6c6c0cf0ad8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_389.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_389.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + For GPL software, the "Obtaining source code" section below applies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_389.yml b/src/licensedcode/data/rules/gpl-1.0-plus_389.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_389.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_39.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_39.RULE index 9cdb4243924..d85efc363c7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_39.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_39.RULE @@ -1 +1,7 @@ - software is licensed under the Free Software Foundation's General Public License (GPL) as Open Source code. \ No newline at end of file +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + + software is licensed under the Free Software Foundation's General Public License (GPL) as Open Source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_39.yml b/src/licensedcode/data/rules/gpl-1.0-plus_39.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_390.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_390.RULE index fd8636eb946..7cedcb1aef8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_390.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_390.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + This is free software. You may redistribute copies of it under the terms of the GNU General Public License . There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_390.yml b/src/licensedcode/data/rules/gpl-1.0-plus_390.yml deleted file mode 100644 index 5f3f640f84c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_390.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_391.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_391.RULE index 7fcb7a59ecd..82b137cb75e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_391.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_391.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + A copy of the GNU General Public License (GPL) is appended to this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_391.yml b/src/licensedcode/data/rules/gpl-1.0-plus_391.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_392.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_392.RULE index 48f2b3f0ef2..1d5f800534a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_392.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_392.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 1, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_392.yml b/src/licensedcode/data/rules/gpl-1.0-plus_392.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_392.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_393.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_393.RULE index d1562303ac4..f00192a46b1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_393.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_393.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 1, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_393.yml b/src/licensedcode/data/rules/gpl-1.0-plus_393.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_393.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_394.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_394.RULE index 0abf84b1aad..01b4b685973 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_394.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_394.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 1, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_394.yml b/src/licensedcode/data/rules/gpl-1.0-plus_394.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_394.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_395.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_395.RULE index 6e22041ebfb..5cb89ce66b5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_395.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_395.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GPL-1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_395.yml b/src/licensedcode/data/rules/gpl-1.0-plus_395.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_395.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_396.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_396.RULE index 25d8364b1c2..64e8076b49f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_396.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_396.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL +--- + See the file COPYING.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_396.yml b/src/licensedcode/data/rules/gpl-1.0-plus_396.yml deleted file mode 100644 index c7ce5b789b8..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_396.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_397.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_397.RULE index eb85d56fe48..e0d4cb386cc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_397.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_397.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-1+ On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_397.yml b/src/licensedcode/data/rules/gpl-1.0-plus_397.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_397.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_398.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_398.RULE index 7a9bb425aa4..312174477fd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_398.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_398.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_398.yml b/src/licensedcode/data/rules/gpl-1.0-plus_398.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_399.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_399.RULE index bc8477e9223..0c35daa0087 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_399.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_399.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License. You should have received a copy of the GPL license along with this program; if you diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_399.yml b/src/licensedcode/data/rules/gpl-1.0-plus_399.yml deleted file mode 100644 index ca6ace2f87d..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_399.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_4.RULE index 36d17e99339..4cbc598cde9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: yes +minimum_coverage: 70 +--- + 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 1, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_4.yml deleted file mode 100644 index 88819261903..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_40.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_40.RULE index b77cd36e5d8..8b74b0b7e57 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_40.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_40.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +notes: see http://www.skybuilders.com/Products/dual_license/ +--- + Our software is licensed under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_40.yml b/src/licensedcode/data/rules/gpl-1.0-plus_40.yml deleted file mode 100644 index 5f3507e2db8..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_40.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -notes: see http://www.skybuilders.com/Products/dual_license/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_400.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_400.RULE index c9c3f060d62..2f4209f2689 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_400.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_400.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License. You should have received a copy of the GPL license along with this program; if you diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_400.yml b/src/licensedcode/data/rules/gpl-1.0-plus_400.yml deleted file mode 100644 index e49cfa695cf..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_400.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_401.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_401.RULE index f6703a39c00..15694453fb1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_401.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_401.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + A copy of the GPL can be found in the file "COPYING" in this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_401.yml b/src/licensedcode/data/rules/gpl-1.0-plus_401.yml deleted file mode 100644 index 173d312feb9..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_401.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_402.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_402.RULE index f0d4fbe3892..22d28a38d93 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_402.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_402.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_402.yml b/src/licensedcode/data/rules/gpl-1.0-plus_402.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_402.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_403.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_403.RULE index d9ac78af1ab..c4855fda919 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_403.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_403.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 1.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_403.yml b/src/licensedcode/data/rules/gpl-1.0-plus_403.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_403.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_404.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_404.RULE index 90ec06f450c..d114d3f8039 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_404.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_404.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v1.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_404.yml b/src/licensedcode/data/rules/gpl-1.0-plus_404.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_404.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_405.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_405.RULE index f6a3ca364ad..1d7b68fc40d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_405.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_405.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GPL v1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_405.yml b/src/licensedcode/data/rules/gpl-1.0-plus_405.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_405.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_406.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_406.RULE index 933b38c0547..a90451685e8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_406.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_406.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + under GNU GPL v1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_406.yml b/src/licensedcode/data/rules/gpl-1.0-plus_406.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_406.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_407.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_407.RULE index fe053d06907..ca073a88cae 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_407.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_407.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms GNU GPL v1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_407.yml b/src/licensedcode/data/rules/gpl-1.0-plus_407.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_407.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_408.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_408.RULE index 6e1b812b82a..48a487ab7b4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_408.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_408.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL v1 or, at your option, any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_408.yml b/src/licensedcode/data/rules/gpl-1.0-plus_408.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_408.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_409.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_409.RULE index 05f1124f31f..f5341768503 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_409.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_409.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_409.yml b/src/licensedcode/data/rules/gpl-1.0-plus_409.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_409.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_41.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_41.RULE index cb7f32e9405..492d301ec97 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_41.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_41.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This program may be freely redistributed under the terms of the GNU GPL -GNU GPL +GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_41.yml b/src/licensedcode/data/rules/gpl-1.0-plus_41.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_410.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_410.RULE index f03ed03a0e3..cba3c3b0cf9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_410.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_410.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL v1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_410.yml b/src/licensedcode/data/rules/gpl-1.0-plus_410.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_410.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_411.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_411.RULE index 325fa2aedee..f34f461e57b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_411.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_411.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + this program is free software. you can redistribute it and modify it under the terms of the gnu general public license. there is no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_411.yml b/src/licensedcode/data/rules/gpl-1.0-plus_411.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_411.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_412.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_412.RULE index 79c2ab01277..399395c73a1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_412.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_412.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_412.yml b/src/licensedcode/data/rules/gpl-1.0-plus_412.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_412.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_413.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_413.RULE index eb8858613b6..c1a63b8047d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_413.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_413.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_413.yml b/src/licensedcode/data/rules/gpl-1.0-plus_413.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_413.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_414.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_414.RULE index 8817f2c3469..1418c337688 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_414.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_414.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_414.yml b/src/licensedcode/data/rules/gpl-1.0-plus_414.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_414.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_415.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_415.RULE index e9914f82c80..71e462812d1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_415.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_415.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 99 +--- + perlgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_415.yml b/src/licensedcode/data/rules/gpl-1.0-plus_415.yml deleted file mode 100644 index b364c41ecc7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_415.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_416.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_416.RULE index 3690512b652..81433906b72 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_416.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_416.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + open source project distributed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_416.yml b/src/licensedcode/data/rules/gpl-1.0-plus_416.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_416.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_417.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_417.RULE index c39849c6b64..70cfb74fe00 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_417.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_417.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + sofware distributed under GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_417.yml b/src/licensedcode/data/rules/gpl-1.0-plus_417.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_417.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_418.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_418.RULE index 82a88e947ab..c9a01e5b21a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_418.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_418.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + It is distributed under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_418.yml b/src/licensedcode/data/rules/gpl-1.0-plus_418.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_418.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_419.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_419.RULE index dc8c0105267..5509e9d3201 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_419.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_419.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_419.yml b/src/licensedcode/data/rules/gpl-1.0-plus_419.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_419.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_42.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_42.RULE index 7c055152f8b..0cdd9773204 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_42.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_42.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + The GNU General Public License, Version 1, February 1989 --- @@ -5,5 +10,4 @@ This software This is free software, licensed under: - The GNU General Public License, Version 1, February 1989 - \ No newline at end of file + The GNU General Public License, Version 1, February 1989 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_42.yml b/src/licensedcode/data/rules/gpl-1.0-plus_42.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_42.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_420.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_420.RULE index 31d93e440b2..4f6048273bb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_420.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_420.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + It is distributed under the GNU General Public License - see the - accompanying COPYING file for more details. + accompanying COPYING file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_420.yml b/src/licensedcode/data/rules/gpl-1.0-plus_420.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_420.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_421.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_421.RULE index bb517973b1b..6e0eff1e615 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_421.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_421.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_421.yml b/src/licensedcode/data/rules/gpl-1.0-plus_421.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_421.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_422.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_422.RULE index b70b8d9bc6c..534a7d631b5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_422.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_422.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + It is licensed under the GNU General Public License which can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_422.yml b/src/licensedcode/data/rules/gpl-1.0-plus_422.yml deleted file mode 100644 index c974511f715..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_422.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_423.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_423.RULE index 3901820e547..586daafbe9b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_423.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_423.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + It is licensed under the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_423.yml b/src/licensedcode/data/rules/gpl-1.0-plus_423.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_423.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE index 696d7463831..86166521812 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_424.yml b/src/licensedcode/data/rules/gpl-1.0-plus_424.yml deleted file mode 100644 index c974511f715..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_424.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_425.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_425.RULE index 721626b8f0f..ad85e29b0e3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_425.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_425.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Changed copyright header to conform with new GNU General Public license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_425.yml b/src/licensedcode/data/rules/gpl-1.0-plus_425.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_425.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_426.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_426.RULE index 26f72ef64cd..ce8da290421 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_426.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_426.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This source is covered by the GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_426.yml b/src/licensedcode/data/rules/gpl-1.0-plus_426.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_426.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_427.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_427.RULE index 1ce0a48d123..07ccff892a4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_427.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_427.RULE @@ -1,2 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/ +--- + This program is part of the GNU project (http://www.gnu.org). See the file COPYING for licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_427.yml b/src/licensedcode/data/rules/gpl-1.0-plus_427.yml deleted file mode 100644 index 31e9bbcee2a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_427.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_428.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_428.RULE index fba0a99f4c6..7f5d632895f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_428.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_428.RULE @@ -1,2 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/ +--- + This program is part of the GNU project (https://www.gnu.org). See the file COPYING for licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_428.yml b/src/licensedcode/data/rules/gpl-1.0-plus_428.yml deleted file mode 100644 index 7306b479fd2..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_428.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_429.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_429.RULE index 31d5cb8f758..711ee6db490 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_429.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_429.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Other files might be available under the GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_429.yml b/src/licensedcode/data/rules/gpl-1.0-plus_429.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_429.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_43.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_43.RULE index 9c942a4dd7e..750cf933129 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_43.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_43.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL-licensed main program \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_43.yml b/src/licensedcode/data/rules/gpl-1.0-plus_43.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_430.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_430.RULE index 307b605f93f..9171055dea3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_430.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_430.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + available under the GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_430.yml b/src/licensedcode/data/rules/gpl-1.0-plus_430.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_430.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_431.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_431.RULE index a38ccb1a480..cde5d19fa59 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_431.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_431.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_431.yml b/src/licensedcode/data/rules/gpl-1.0-plus_431.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_431.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_432.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_432.RULE index 86bba17c147..acb52b14d46 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_432.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_432.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + The GNU General Public License is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_432.yml b/src/licensedcode/data/rules/gpl-1.0-plus_432.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_432.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_433.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_433.RULE index 88f67577286..41a760f69d0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_433.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_433.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + A copy of the GNU General Public License is available in the COPYING.txt file included with all NAnt distributions. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_433.yml b/src/licensedcode/data/rules/gpl-1.0-plus_433.yml deleted file mode 100644 index a03e5ddf912..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_433.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_434.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_434.RULE index 852e8607f49..ed8ab9b53b0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_434.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_434.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_434.yml b/src/licensedcode/data/rules/gpl-1.0-plus_434.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_434.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_435.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_435.RULE index 392c045528a..8b3519437c7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_435.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_435.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Distributed under the FSF GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_435.yml b/src/licensedcode/data/rules/gpl-1.0-plus_435.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_435.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_436.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_436.RULE index 1b428f6e4bd..a2ea38b625e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_436.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_436.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the Free Software Foundation's General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_436.yml b/src/licensedcode/data/rules/gpl-1.0-plus_436.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_436.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_437.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_437.RULE index c88d550b048..2ef3be8bc95 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_437.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_437.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_437.yml b/src/licensedcode/data/rules/gpl-1.0-plus_437.yml deleted file mode 100644 index 71bc3df3603..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_437.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_438.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_438.RULE index c2c9e6ef4fb..28485482658 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_438.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_438.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms and conditions of the GNU General Public License, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_438.yml b/src/licensedcode/data/rules/gpl-1.0-plus_438.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_438.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_439.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_439.RULE index 81639474fd4..755a10c4d65 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_439.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_439.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU GPL v1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_439.yml b/src/licensedcode/data/rules/gpl-1.0-plus_439.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_439.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_44.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_44.RULE index bdc2f29d46e..1ed169ff918 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_44.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_44.RULE @@ -1 +1,7 @@ -License>GNU General Public License +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + +License>GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_44.yml b/src/licensedcode/data/rules/gpl-1.0-plus_44.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_440.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_440.RULE index 26d0837a522..fde7e0d0270 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_440.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_440.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of this General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_440.yml b/src/licensedcode/data/rules/gpl-1.0-plus_440.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_440.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_441.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_441.RULE index 65bf0e7603a..2672edbdba5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_441.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_441.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_441.yml b/src/licensedcode/data/rules/gpl-1.0-plus_441.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_441.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_442.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_442.RULE index 0ce331d99ae..73b24f120f1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_442.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_442.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_442.yml b/src/licensedcode/data/rules/gpl-1.0-plus_442.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_442.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_443.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_443.RULE index 3a3f8493b0d..d4808831d5e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_443.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_443.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_443.yml b/src/licensedcode/data/rules/gpl-1.0-plus_443.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_443.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_444.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_444.RULE index ed00d184a92..cd75afaffec 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_444.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_444.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + GPL'd code cannot be licensed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_444.yml b/src/licensedcode/data/rules/gpl-1.0-plus_444.yml deleted file mode 100644 index 17d7abf8771..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_444.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_445.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_445.RULE index e19e1f9d4e5..d31e9d48097 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_445.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_445.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: an FSF-published minor text variant +--- + 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 1, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_445.yml b/src/licensedcode/data/rules/gpl-1.0-plus_445.yml deleted file mode 100644 index c88604f79af..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_445.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: an FSF-published minor text variant diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_446.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_446.RULE index 321647335e1..b6c787abe1d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_446.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_446.RULE @@ -1 +1,9 @@ -On Debian systems, the complete text of the newest version of the GNU General Public License can be found in /usr/share/common-licenses/GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + +On Debian systems, the complete text of the newest version of the GNU General Public License can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_446.yml b/src/licensedcode/data/rules/gpl-1.0-plus_446.yml deleted file mode 100644 index ae40a2eb6ea..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_446.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_447.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_447.RULE index af87f911233..11ed444e9ea 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_447.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_447.RULE @@ -1,8 +1,14 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + ;; Everyone is granted permission to copy, modify and redistribute ;; , but only under the conditions described in the ;; GNU Emacs General Public License. A copy of this license is ;; supposed to have been given to you along with so you ;; can know your rights and responsibilities. It should be in a ;; file named COPYING. Among other things, the copyright notice -;; and this notice must be preserved on all copies. - +;; and this notice must be preserved on all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_447.yml b/src/licensedcode/data/rules/gpl-1.0-plus_447.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_447.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_448.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_448.RULE index a9ed36b1914..0cc9a8b9714 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_448.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_448.RULE @@ -1,7 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + ;; Everyone is granted permission to copy, modify and redistribute ;; , but only under the conditions described in the ;; General Public License. A copy of this license is ;; supposed to have been given to you along with so you ;; can know your rights and responsibilities. It should be in a ;; file named COPYING. Among other things, the copyright notice -;; and this notice must be preserved on all copies. +;; and this notice must be preserved on all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_448.yml b/src/licensedcode/data/rules/gpl-1.0-plus_448.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_448.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_449.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_449.RULE index 3ddf2207196..95f6ca149bb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_449.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_449.RULE @@ -1,7 +1,16 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + On Debian GNU/Linux systems, the {{complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL}}'. A copy of the {{GNU General Public License is also available}} at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA + St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_449.yml b/src/licensedcode/data/rules/gpl-1.0-plus_449.yml deleted file mode 100644 index 831492636ea..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_449.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_45.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_45.RULE index c63f1cb387b..ec5d3492ab2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_45.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_45.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.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 1, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_45.yml b/src/licensedcode/data/rules/gpl-1.0-plus_45.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_450.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_450.RULE index 1ff6090afc4..80db9c60884 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_450.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_450.RULE @@ -1 +1,9 @@ -The Debian packaging is and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + +The Debian packaging is and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_450.yml b/src/licensedcode/data/rules/gpl-1.0-plus_450.yml deleted file mode 100644 index 490a2e41a27..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_450.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_451.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_451.RULE index 50bbeb2a1c4..8ddbf0a01fe 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_451.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_451.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + The helper programs as well as the documentation are distributed under the terms of the GNU General Public License (GPL); see the file COPYING for the - actual terms. - + actual terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_451.yml b/src/licensedcode/data/rules/gpl-1.0-plus_451.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_451.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_452.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_452.RULE index bbb1493c1ef..a17ef34d249 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_452.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_452.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + the terms of the GPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_452.yml b/src/licensedcode/data/rules/gpl-1.0-plus_452.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_452.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_453.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_453.RULE index 060c2656f71..51f4425695c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_453.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_453.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of the GPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_453.yml b/src/licensedcode/data/rules/gpl-1.0-plus_453.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_453.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_454.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_454.RULE index f0e5d060440..186e4556eb2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_454.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_454.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + the terms of the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_454.yml b/src/licensedcode/data/rules/gpl-1.0-plus_454.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_454.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_455.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_455.RULE index c5d7f429b83..553c9a790f4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_455.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_455.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the GPL (GNU Public License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_455.yml b/src/licensedcode/data/rules/gpl-1.0-plus_455.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_455.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_456.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_456.RULE index 8d27374a08f..5f702b78043 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_456.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_456.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL +--- + distributed under the GPL (see COPYING.GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_456.yml b/src/licensedcode/data/rules/gpl-1.0-plus_456.yml deleted file mode 100644 index d9899fb0cc6..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_456.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_457.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_457.RULE index 39e937b18e1..a425cf7436c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_457.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_457.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + are GPL'ed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_457.yml b/src/licensedcode/data/rules/gpl-1.0-plus_457.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_457.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_458.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_458.RULE index 0a2a52bbbbf..bfbfac39909 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_458.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_458.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_458.yml b/src/licensedcode/data/rules/gpl-1.0-plus_458.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_458.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_459.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_459.RULE index 82b972b5b16..723c628ff29 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_459.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_459.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +--- + On Debian systems, the complete text of the GNU General Public License Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_459.yml b/src/licensedcode/data/rules/gpl-1.0-plus_459.yml deleted file mode 100644 index 274b34f7f06..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_459.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-1 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_46.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_46.RULE index d0de0410af3..7d664bffa15 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_46.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_46.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 90 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + License: GNU General Public Library (http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_46.yml b/src/licensedcode/data/rules/gpl-1.0-plus_46.yml deleted file mode 100644 index 380f686389b..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 90 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_460.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_460.RULE index ac4774fc472..f5e04eeedb4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_460.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_460.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +--- + License: GPL-1+ 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 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_460.yml b/src/licensedcode/data/rules/gpl-1.0-plus_460.yml deleted file mode 100644 index 5f7fc75a866..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_460.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-1 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_461.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_461.RULE index 4881db637f2..48aaa76dd8f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_461.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_461.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.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 1, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_461.yml b/src/licensedcode/data/rules/gpl-1.0-plus_461.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_461.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_462.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_462.RULE index 35617b5f38e..cc8f00b5bf2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_462.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_462.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + system can be used under the terms of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_462.yml b/src/licensedcode/data/rules/gpl-1.0-plus_462.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_462.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_463.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_463.RULE index 68b28e6613c..c0909446073 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_463.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_463.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Everyone is granted permission to copy, modify and redistribute this software, but only under the conditions diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_463.yml b/src/licensedcode/data/rules/gpl-1.0-plus_463.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_463.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_464.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_464.RULE index e9e876ddb72..8490930c9d8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_464.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_464.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Everyone is granted permission to copy, modify and redistribute GNU Ghostscript, but only under the conditions diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_464.yml b/src/licensedcode/data/rules/gpl-1.0-plus_464.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_464.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_465.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_465.RULE index b58d8cd6324..bb525e17278 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_465.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_465.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + This program is released under the GNU General Public License (GPL). . On Debian GNU/Linux systems, the complete text of the latest version diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_465.yml b/src/licensedcode/data/rules/gpl-1.0-plus_465.yml deleted file mode 100644 index 0eade4df8a8..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_465.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_466.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_466.RULE index 09c0113b72a..7edb6e5b6ab 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_466.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_466.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +--- + No explicit version of the GPL has been specified. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_466.yml b/src/licensedcode/data/rules/gpl-1.0-plus_466.yml deleted file mode 100644 index fb1f61395f4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_466.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_467.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_467.RULE index 693d6c2f49a..ca5a9dc088d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_467.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_467.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + License: GPL This program is released under the GNU General Public License (GPL). . diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_467.yml b/src/licensedcode/data/rules/gpl-1.0-plus_467.yml deleted file mode 100644 index 0eade4df8a8..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_467.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_468.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_468.RULE index c1d81a04be2..332fbd8f74e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_468.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_468.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the GPL, and therefore available free of charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_468.yml b/src/licensedcode/data/rules/gpl-1.0-plus_468.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_468.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_469.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_469.RULE index 082a9a36909..458c42c4117 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_469.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_469.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_469.yml b/src/licensedcode/data/rules/gpl-1.0-plus_469.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_469.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_47.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_47.RULE index 0d29cfca4f0..551935876ab 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_47.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_47.RULE @@ -1,6 +1,15 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - copyrighted by the Free Software Foundation +ignorable_holders: + - the Free Software Foundation +--- + Note that the GPL below is copyrighted by the Free Software Foundation, but the instance of code that it refers to is copyrighted - by - + by \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_47.yml b/src/licensedcode/data/rules/gpl-1.0-plus_47.yml deleted file mode 100644 index b139f479cf6..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_47.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - copyrighted by the Free Software Foundation -ignorable_holders: - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_470.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_470.RULE index 9a16179d759..a07ff3f074a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_470.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_470.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + you may use this source under GPL terms! \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_470.yml b/src/licensedcode/data/rules/gpl-1.0-plus_470.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_470.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_471.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_471.RULE index 6e62716ad40..6053939a668 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_471.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_471.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Licence GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_471.yml b/src/licensedcode/data/rules/gpl-1.0-plus_471.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_471.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_472.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_472.RULE index 8422e9f545e..de424dedfd9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_472.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_472.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + http://www.gnu.org/copyleft/gpl.html">Licence GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_472.yml b/src/licensedcode/data/rules/gpl-1.0-plus_472.yml deleted file mode 100644 index 7e1c8d0fd1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_472.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_473.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_473.RULE index 516865eb496..5b9503e77a4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_473.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_473.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This software may be distributed under the terms of the General Public License. See the file COPYING to determine your rights. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_473.yml b/src/licensedcode/data/rules/gpl-1.0-plus_473.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_473.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_474.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_474.RULE index 09f3e405822..ae46feece77 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_474.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_474.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 99 +--- + licenses GPL-Header \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_474.yml b/src/licensedcode/data/rules/gpl-1.0-plus_474.yml deleted file mode 100644 index b364c41ecc7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_474.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_475.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_475.RULE index 8bbc1ba0770..974231e5c8d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_475.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_475.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + . On Debian GNU/Linux systems, the complete text of the newest version of the GNU General Public License can be found in diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_475.yml b/src/licensedcode/data/rules/gpl-1.0-plus_475.yml deleted file mode 100644 index 1d8734fa256..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_475.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_476.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_476.RULE index 33e9bb8be48..ea71983e7c0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_476.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_476.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + The documentation licensed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_476.yml b/src/licensedcode/data/rules/gpl-1.0-plus_476.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_476.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 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 b69729de3e5..2a8c458b60a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_477.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_477.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + taken from the original NTT provided GPL source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_477.yml b/src/licensedcode/data/rules/gpl-1.0-plus_477.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_477.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_478.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_478.RULE index f4dd4bda06f..b4a8529ab03 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_478.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_478.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_478.yml b/src/licensedcode/data/rules/gpl-1.0-plus_478.yml deleted file mode 100644 index c974511f715..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_478.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_479.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_479.RULE index 7a09035ebb1..81a828f65e0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_479.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_479.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_479.yml b/src/licensedcode/data/rules/gpl-1.0-plus_479.yml deleted file mode 100644 index 1d8734fa256..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_479.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_48.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_48.RULE index 81a9b13265a..ce5c5ad4c6b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_48.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_48.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_48.yml b/src/licensedcode/data/rules/gpl-1.0-plus_48.yml deleted file mode 100644 index 97587f80f11..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_480.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_480.RULE index 1b0629bd768..ca2c7858417 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_480.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_480.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License (the "COPYING" file referred to above) can be found in the /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_480.yml b/src/licensedcode/data/rules/gpl-1.0-plus_480.yml deleted file mode 100644 index c974511f715..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_480.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_481.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_481.RULE index 0e0d586bc81..37b84b87473 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_481.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_481.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_481.yml b/src/licensedcode/data/rules/gpl-1.0-plus_481.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_481.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_482.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_482.RULE index 15262c498d9..aa2f352e63e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_482.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_482.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +--- + License: GPL-1+ 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 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_482.yml b/src/licensedcode/data/rules/gpl-1.0-plus_482.yml deleted file mode 100644 index 8ee090e114c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_482.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-1 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_483.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_483.RULE index 3c25ac38366..1886fe47b70 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_483.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_483.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-any # You may freely redistribute, use and modify this software under the terms # of the GNU General Public License. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_483.yml b/src/licensedcode/data/rules/gpl-1.0-plus_483.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_483.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_484.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_484.RULE index 248fd9f3a5c..42fa660e97f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_484.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_484.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + The C# Compiler is released under the terms of the GNU GPL. On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. +License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_484.yml b/src/licensedcode/data/rules/gpl-1.0-plus_484.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_484.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_485.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_485.RULE index 4244a39cf77..8a32f353d1c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_485.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_485.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU General Public Licence. On Debian GNU/Linux systems, the complete text of the GNU General Public -Licence can be found in /usr/share/common-licenses/GPL. +Licence can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_485.yml b/src/licensedcode/data/rules/gpl-1.0-plus_485.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_485.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_486.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_486.RULE index 54c56f56fea..0ee575621cb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_486.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_486.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_486.yml b/src/licensedcode/data/rules/gpl-1.0-plus_486.yml deleted file mode 100644 index 56b4d62aefe..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_486.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-1 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_487.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_487.RULE index 58e039fa041..e6d9349b5f0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_487.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_487.RULE @@ -1 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU GENERAL PUBLIC LICENSE a href https://www.gnu.org/copyleft/gpl +ignorable_holders: + - GNU GENERAL PUBLIC LICENSE +ignorable_urls: + - https://www.gnu.org/copyleft/gpl +--- + copyright: GNU GENERAL PUBLIC LICENSE | | + Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_497.yml b/src/licensedcode/data/rules/gpl-1.0-plus_497.yml deleted file mode 100644 index c177c1c7f17..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_497.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_498.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_498.RULE index f7f1aeb7e5a..443bd9a2f3d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_498.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_498.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +notes: No version gpl declaration +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + Licensed under the https://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_498.yml b/src/licensedcode/data/rules/gpl-1.0-plus_498.yml deleted file mode 100644 index a4e5a70a5b6..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_498.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -notes: No version gpl declaration -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_499.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_499.RULE index ad78afc3c5d..36c37663e17 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_499.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_499.RULE @@ -1 +1,9 @@ -licence https://www.gnu.org/licenses/gpl.html GNU General Public Licence, see LICENCE file +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + +licence https://www.gnu.org/licenses/gpl.html GNU General Public Licence, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_499.yml b/src/licensedcode/data/rules/gpl-1.0-plus_499.yml deleted file mode 100644 index 431084c2a09..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_499.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_5.RULE index 0776f440782..066bdb8ce01 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: Debian GPL 1.0 + +--- + the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_5.yml b/src/licensedcode/data/rules/gpl-1.0-plus_5.yml deleted file mode 100644 index bf20e71435c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: Debian GPL 1.0 + diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_50.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_50.RULE index d5e52c2a87e..9751cf19173 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_50.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_50.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_50.yml b/src/licensedcode/data/rules/gpl-1.0-plus_50.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_500.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_500.RULE index ddcce167bd9..84a0a00d0c0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_500.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_500.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + A copy of the GNU General Public License is available in the COPYING.txt file included with all NAnt distributions. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_500.yml b/src/licensedcode/data/rules/gpl-1.0-plus_500.yml deleted file mode 100644 index 0b033b7c09c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_500.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_501.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_501.RULE index ae0aba2540f..ce5f5c41f92 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_501.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_501.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + https://www.gnu.org/copyleft/gpl.html full text of the GPL -for the most authoritative definition of the obligations. +for the most authoritative definition of the obligations. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_501.yml b/src/licensedcode/data/rules/gpl-1.0-plus_501.yml deleted file mode 100644 index 87950c72b78..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_501.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_502.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_502.RULE index 914be83ff9a..93a14509047 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_502.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_502.RULE @@ -1,5 +1,16 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/licenses.html +--- + LICENSE ===== This software is covered by the GNU General Public License. See the file COPYING for the complete text of the license. - Or the GNU website: + Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_502.yml b/src/licensedcode/data/rules/gpl-1.0-plus_502.yml deleted file mode 100644 index c177c1c7f17..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_502.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_503.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_503.RULE index d650c9cd163..d5105e53d32 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_503.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_503.RULE @@ -1,5 +1,15 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + This program is free software, released under the GNU General Public License and you are welcome to redistribute it under certain conditions. It comes with ABSOLUTELY NO WARRANTY; for details read the GNU General Public License to be found in the file "COPYING" distributed with this program, or online at: -https://www.gnu.org/copyleft/gpl.html +https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_503.yml b/src/licensedcode/data/rules/gpl-1.0-plus_503.yml deleted file mode 100644 index 7584ce1268d..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_503.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_504.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_504.RULE index c02ae9377ab..dcb83cfad45 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_504.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_504.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + https://www.gnu.org/copyleft/gpl.html">Licence GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_504.yml b/src/licensedcode/data/rules/gpl-1.0-plus_504.yml deleted file mode 100644 index 87950c72b78..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_504.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_505.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_505.RULE index d2cafd57ed3..c5f2d1982a9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_505.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_505.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + license https://www.gnu.org/copyleft/gpl.html GNU/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_505.yml b/src/licensedcode/data/rules/gpl-1.0-plus_505.yml deleted file mode 100644 index e09f50d05bf..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_505.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_506.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_506.RULE index eaca37a119a..a76b1e0cdc1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_506.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_506.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * You should have received a copy of the GNU General Public License * (for example COPYING); If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_506.yml b/src/licensedcode/data/rules/gpl-1.0-plus_506.yml deleted file mode 100644 index 8bf609bb35f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_506.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_507.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_507.RULE index 294952be9d9..dd4b48d1253 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_507.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_507.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + The GPL license can be found at https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_507.yml b/src/licensedcode/data/rules/gpl-1.0-plus_507.yml deleted file mode 100644 index 431084c2a09..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_507.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_508.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_508.RULE index eebc6e81be3..2202aaef96c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_508.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_508.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Licensed under the GPL (https://www.gnu.org/licenses/gpl.html) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_508.yml b/src/licensedcode/data/rules/gpl-1.0-plus_508.yml deleted file mode 100644 index 5f3f640f84c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_508.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_509.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_509.RULE index d3dc44f2484..609cdac89c3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_509.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_509.RULE @@ -1,7 +1,18 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/licenses.html +--- + I DISCLAIM ALL RESPONSIBILITY FOR ANY POSSIBLE BAD EFFECTS OF THIS CODE! LICENSE ===== This software is covered by the GNU General Public License. See the file COPYING for the complete text of the license. - Or the GNU website: + Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_509.yml b/src/licensedcode/data/rules/gpl-1.0-plus_509.yml deleted file mode 100644 index c177c1c7f17..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_509.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_51.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_51.RULE index 62b2856cb42..00f96d02104 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_51.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_51.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_51.yml b/src/licensedcode/data/rules/gpl-1.0-plus_51.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_510.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_510.RULE index 81e0cc7e1bd..12c01dd167a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_510.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_510.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +notes: See https://www.agner.org/random/randomc.zip +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + * Copyright notice * GNU General Public License https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_510.yml b/src/licensedcode/data/rules/gpl-1.0-plus_510.yml deleted file mode 100644 index dfc7ef15045..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_510.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -notes: See https://www.agner.org/random/randomc.zip -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_511.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_511.RULE index 3121e18bbff..d60c80d3e27 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_511.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_511.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/licenses.html#GPL + - https://www.gnu.org/philosophy/free-sw.html +--- + covered by the [GNU GPL](https://www.gnu.org/licenses/licenses.html#GPL), a popular license that is both a [free software](https://www.gnu.org/philosophy/free-sw.html) license and also approved by the OSI as an Open Source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_511.yml b/src/licensedcode/data/rules/gpl-1.0-plus_511.yml deleted file mode 100644 index 475ed24ecb8..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_511.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/licenses.html#GPL - - https://www.gnu.org/philosophy/free-sw.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_512.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_512.RULE index cd0d29721b0..2a65a01091d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_512.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_512.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + You may redistribute copies of it under the terms of the GNU General Public License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_512.yml b/src/licensedcode/data/rules/gpl-1.0-plus_512.yml deleted file mode 100644 index 5f3f640f84c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_512.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_513.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_513.RULE index 5158e3284d8..8152f8f90b4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_513.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_513.RULE @@ -1 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General Public License, https://www.gnu.org/licenses/gpl.html +ignorable_holders: + - GNU General Public License +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + @copyright GNU General Public License, https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_513.yml b/src/licensedcode/data/rules/gpl-1.0-plus_513.yml deleted file mode 100644 index d6ffb153f82..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_513.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General Public License, https://www.gnu.org/licenses/gpl.html -ignorable_holders: - - GNU General Public License -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_514.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_514.RULE index 852c14ea423..aef5eb62e39 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_514.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_514.RULE @@ -1,7 +1,17 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + On Debian GNU/Linux systems, the complete {{text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'}}. A copy of the {{GNU General Public License is also available}} at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA + St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_514.yml b/src/licensedcode/data/rules/gpl-1.0-plus_514.yml deleted file mode 100644 index e7ceefcd313..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_514.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_515.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_515.RULE index fa5f7b941d3..84406ced36a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_515.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_515.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + It is released under the General Public License, available here: -https://www.gnu.org/copyleft/gpl.html +https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_515.yml b/src/licensedcode/data/rules/gpl-1.0-plus_515.yml deleted file mode 100644 index 139b609a524..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_515.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_516.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_516.RULE index cbdd3f079d0..834fd4f2f5c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_516.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_516.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + It is released under the General Public Licence, available here: -https://www.gnu.org/copyleft/gpl.html +https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_516.yml b/src/licensedcode/data/rules/gpl-1.0-plus_516.yml deleted file mode 100644 index 139b609a524..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_516.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_517.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_517.RULE index 89368da6f79..d94ed776d7e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_517.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_517.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + This emulator is normally available under a BSD license. It's available in this form only under GPL. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_517.yml b/src/licensedcode/data/rules/gpl-1.0-plus_517.yml deleted file mode 100644 index 5f3f640f84c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_517.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_518.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_518.RULE index af84eb42727..75784026973 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_518.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_518.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 20 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + You may redistribute copies of it under the terms of the GNU General Public License . There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_518.yml b/src/licensedcode/data/rules/gpl-1.0-plus_518.yml deleted file mode 100644 index 90e0282b78f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_518.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 20 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_519.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_519.RULE index bad2d920db6..8f21a4bfd48 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_519.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_519.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + licensed under the `GNU General Public License `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_519.yml b/src/licensedcode/data/rules/gpl-1.0-plus_519.yml deleted file mode 100644 index 5f3f640f84c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_519.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_52.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_52.RULE index 757beb830be..7db6904c460 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_52.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_52.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_52.yml b/src/licensedcode/data/rules/gpl-1.0-plus_52.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_520.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_520.RULE index e1133356222..c5a60b62123 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_520.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_520.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + sources are released under the terms of the GPL (https://www.gnu.org/copyleft/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_520.yml b/src/licensedcode/data/rules/gpl-1.0-plus_520.yml deleted file mode 100644 index 139b609a524..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_520.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_521.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_521.RULE index c1f5bd8640d..1e4a27b360b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_521.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_521.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 90 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.txt +--- + License: GNU General Public Library (https://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_521.yml b/src/licensedcode/data/rules/gpl-1.0-plus_521.yml deleted file mode 100644 index c951be5b46e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_521.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 90 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_522.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_522.RULE index d9f2edafd83..5c1f074c2ae 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_522.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_522.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + A copy of the GNU General Public License is available as /usr/share/common-licenses/GPL in the Debian GNU/Linux distribution or on the World Wide Web at https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_522.yml b/src/licensedcode/data/rules/gpl-1.0-plus_522.yml deleted file mode 100644 index 139b609a524..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_522.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_523.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_523.RULE index c443de95113..5ea38f08888 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_523.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_523.RULE @@ -1 +1,9 @@ -License: GNU General Public Licence (GPL) - https://www.gnu.org/copyleft/gpl.html +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + +License: GNU General Public Licence (GPL) - https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_523.yml b/src/licensedcode/data/rules/gpl-1.0-plus_523.yml deleted file mode 100644 index 87950c72b78..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_523.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_524.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_524.RULE index 14cf54d7e00..f438376665c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_524.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_524.RULE @@ -1 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU GENERAL PUBLIC LICENCE a href https://www.gnu.org/copyleft/gpl +ignorable_holders: + - GNU GENERAL PUBLIC LICENCE +ignorable_urls: + - https://www.gnu.org/copyleft/gpl +--- + copyright: GNU GENERAL PUBLIC LICENCE | | . -There is NO WARRANTY, to the extent permitted by law. - - - +There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_68.yml b/src/licensedcode/data/rules/gpl-1.0-plus_68.yml deleted file mode 100644 index 1d04a80db16..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_69.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_69.RULE index 88852fc5768..0987d8afdbb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_69.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_69.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_69.yml b/src/licensedcode/data/rules/gpl-1.0-plus_69.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_7.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_7.RULE index 77cde3fce22..48e40e5f38b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_7.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - 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 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_7.yml b/src/licensedcode/data/rules/gpl-1.0-plus_7.yml deleted file mode 100644 index c96ccd382d7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_70.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_70.RULE index 15994890d2d..2ce04d79d9d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_70.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_70.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_70.yml b/src/licensedcode/data/rules/gpl-1.0-plus_70.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_71.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_71.RULE index 99285055e24..d690c39b41e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_71.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_71.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL1PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_71.yml b/src/licensedcode/data/rules/gpl-1.0-plus_71.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_72.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_72.RULE index 36371621fed..39f0432165a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_72.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_72.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL10PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_72.yml b/src/licensedcode/data/rules/gpl-1.0-plus_72.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_73.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_73.RULE index 9ca1d4d2483..dbf9480cfdf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_73.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_73.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv1PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_73.yml b/src/licensedcode/data/rules/gpl-1.0-plus_73.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_74.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_74.RULE index 7d00ef109be..5170fd7e292 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_74.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_74.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv10PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_74.yml b/src/licensedcode/data/rules/gpl-1.0-plus_74.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_75.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_75.RULE index bc7396b4e98..02883ffc900 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_75.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_75.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_75.yml b/src/licensedcode/data/rules/gpl-1.0-plus_75.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_76.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_76.RULE index 117822bd9ee..b817883f722 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_76.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_76.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_76.yml b/src/licensedcode/data/rules/gpl-1.0-plus_76.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_77.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_77.RULE index 452b86935d2..b6d7e0f4ac6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_77.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_77.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_77.yml b/src/licensedcode/data/rules/gpl-1.0-plus_77.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_78.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_78.RULE index 528bb2ca897..68086647d96 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_78.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_78.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_78.yml b/src/licensedcode/data/rules/gpl-1.0-plus_78.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_79.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_79.RULE index 7355a58bd13..fa5aa356f30 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_79.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_79.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_79.yml b/src/licensedcode/data/rules/gpl-1.0-plus_79.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_8.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_8.RULE index 987cae79720..0bbdd4010cd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_8.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_8.RULE @@ -1 +1,7 @@ -{{licensed under the terms of the GNU General Public License.}} +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +{{licensed under the terms of the GNU General Public License.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_8.yml b/src/licensedcode/data/rules/gpl-1.0-plus_8.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_80.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_80.RULE index 6f24f370c07..4abd55e8f2a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_80.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_80.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_80.yml b/src/licensedcode/data/rules/gpl-1.0-plus_80.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_81.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_81.RULE index c47eb61e500..24295ddf140 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_81.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_81.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GNU Fortran comes with NO WARRANTY, to the extent permitted by law. You may redistribute copies of GNU Fortran under the terms of the GNU General Public License. -For more information about these matters, see the file named COPYING +For more information about these matters, see the file named COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_81.yml b/src/licensedcode/data/rules/gpl-1.0-plus_81.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_81.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_82.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_82.RULE index 76751cfc8e5..24dad5e4d5a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_82.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_82.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_82.yml b/src/licensedcode/data/rules/gpl-1.0-plus_82.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_83.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_83.RULE index 08ccbb29418..974b6bf407d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_83.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_83.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_83.yml b/src/licensedcode/data/rules/gpl-1.0-plus_83.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_84.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_84.RULE index 1fea619b450..92489819d48 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_84.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_84.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_84.yml b/src/licensedcode/data/rules/gpl-1.0-plus_84.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_85.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_85.RULE index 063871b8568..3a9a898b87a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_85.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_85.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_85.yml b/src/licensedcode/data/rules/gpl-1.0-plus_85.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_86.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_86.RULE index 27212adbe7f..a786b1dc3c7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_86.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_86.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_86.yml b/src/licensedcode/data/rules/gpl-1.0-plus_86.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_87.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_87.RULE index bf40cd9c837..70faa139067 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_87.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_87.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v10 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_87.yml b/src/licensedcode/data/rules/gpl-1.0-plus_87.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_88.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_88.RULE index faf9b820dae..90ae14ac8da 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_88.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_88.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnugpled \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_88.yml b/src/licensedcode/data/rules/gpl-1.0-plus_88.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_89.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_89.RULE index 36b57723e5e..ac297491d0d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_89.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_89.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnugpld \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_89.yml b/src/licensedcode/data/rules/gpl-1.0-plus_89.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_9.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_9.RULE index 8f2b64a4237..2c689b55010 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_9.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software is licensed under the terms of the GNU General Public License, as published by the Free Software Foundation, and -may be copied, distributed, and modified under those terms. +may be copied, distributed, and modified under those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_9.yml b/src/licensedcode/data/rules/gpl-1.0-plus_9.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_90.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_90.RULE index 8c40ba2765f..513279b61d0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_90.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_90.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnugpl ed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_90.yml b/src/licensedcode/data/rules/gpl-1.0-plus_90.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_91.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_91.RULE index 37912a93d3f..f6c9a594cd0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_91.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_91.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +notes: found in linux/arch/arm/nwfpe/ +--- + The is free software. Everything has written is provided under the GNU GPL. See the file COPYING for copying -conditions. Excluded from the above is the code. \ No newline at end of file +conditions. Excluded from the above is the code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_91.yml b/src/licensedcode/data/rules/gpl-1.0-plus_91.yml deleted file mode 100644 index 0bd8ca78547..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -notes: found in linux/arch/arm/nwfpe/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_92.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_92.RULE index 9f0b00d8990..f42fa801ab3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_92.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_92.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + gnugpl d \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_92.yml b/src/licensedcode/data/rules/gpl-1.0-plus_92.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_93.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_93.RULE index bc85be1801d..c61af475d20 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_93.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_93.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_93.yml b/src/licensedcode/data/rules/gpl-1.0-plus_93.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_93.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_94.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_94.RULE index 8b922d5356a..5b2e133bb4e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_94.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_94.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_94.yml b/src/licensedcode/data/rules/gpl-1.0-plus_94.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_95.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_95.RULE index 912c0798d0d..547aa6bb24c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_95.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_95.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_95.yml b/src/licensedcode/data/rules/gpl-1.0-plus_95.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_96.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_96.RULE index 065dd6813f4..e713155bdf4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_96.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_96.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv10+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_96.yml b/src/licensedcode/data/rules/gpl-1.0-plus_96.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_97.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_97.RULE index 4aadd5344a2..cd7c75150b7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_97.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_97.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_97.yml b/src/licensedcode/data/rules/gpl-1.0-plus_97.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_98.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_98.RULE index 53389897912..25e638f13af 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_98.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_98.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl10plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_98.yml b/src/licensedcode/data/rules/gpl-1.0-plus_98.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_99.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_99.RULE index 7ab5b553d13..daafa013686 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_99.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_99.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_99.yml b/src/licensedcode/data/rules/gpl-1.0-plus_99.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-export.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-export.RULE index 4ad94710483..8ccc4358e03 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-export.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-export.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-1.0-plus AND bsd-export +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +notes: found in the Linux kernel +ignorable_copyrights: + - Copyright (c) Cavium Networks (support@cavium.com) +ignorable_holders: + - Cavium Networks +ignorable_emails: + - support@cavium.com +--- + This file is subject to the terms and conditions of the GNU General Public License. See the file "COPYING" in the main directory of this archive for more details. @@ -38,4 +53,4 @@ SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR -PERFORMANCE OF THE SOFTWARE LIES WITH YOU. +PERFORMANCE OF THE SOFTWARE LIES WITH YOU. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-export.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-export.yml deleted file mode 100644 index c7dbd6e1116..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-export.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-1.0-plus AND bsd-export -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING -notes: found in the Linux kernel -ignorable_copyrights: - - Copyright (c) Cavium Networks (support@cavium.com) -ignorable_holders: - - Cavium Networks -ignorable_emails: - - support@cavium.com diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_1.RULE index 07ff9bf0443..ef68eab9736 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus AND bsd-new +is_license_notice: yes +relevance: 100 +notes: See https://www.agner.org/random/randomc.zip +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + * Copyright notice * GNU General Public License http://www.gnu.org/licenses/gpl.html * This C++ implementation of contains parts of the original C code diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_1.yml deleted file mode 100644 index 92b591c9931..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus AND bsd-new -is_license_notice: yes -relevance: 100 -notes: See https://www.agner.org/random/randomc.zip -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_2.RULE index 419ed42ced0..70088af61ad 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus AND bsd-new +is_license_notice: yes +relevance: 100 +notes: See https://www.agner.org/random/randomc.zip +--- + * This C++ implementation of contains parts of the original C code * which was published under the following BSD license, which is therefore * in effect in addition to the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_2.yml deleted file mode 100644 index 36bff2c43c4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND bsd-new -is_license_notice: yes -relevance: 100 -notes: See https://www.agner.org/random/randomc.zip diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_3.RULE index 3a17789c3ee..07d78c637f4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus AND bsd-new +is_license_notice: yes +relevance: 100 +notes: See https://www.agner.org/random/randomc.zip +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + * Copyright notice * GNU General Public License https://www.gnu.org/licenses/gpl.html * This C++ implementation of contains parts of the original C code diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_3.yml deleted file mode 100644 index 8d3128d1791..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus AND bsd-new -is_license_notice: yes -relevance: 100 -notes: See https://www.agner.org/random/randomc.zip -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_7.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_7.RULE index fc2ae083794..c4b3a139e3e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_7.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_7.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gpl-1.0-plus AND bsd-new +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +notes: found in the Linux kernel +--- + This file is subject to the terms and conditions of the GNU General Public License. See the file "COPYING" in the main directory of this archive for more details. -Some parts of the code were originally released under BSD license: +Some parts of the code were originally released under BSD license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_7.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_7.yml deleted file mode 100644 index 0cde2b2095f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_bsd-new_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus AND bsd-new -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING -notes: found in the Linux kernel diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE index 6d284057a0a..a705f39a3a7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE @@ -1,6 +1,14 @@ +--- +license_expression: gpl-1.0-plus AND (epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus) +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * The output this tool generates is subject to our tri-license (GPL,LGPL, * and EPL), but this source file itself is released only under the terms * of the GPL. * * This program is released under the terms of the GPL; see the file - * COPYING for more details. There is NO WARRANTY on this code. + * COPYING for more details. There is NO WARRANTY on this code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index 2fdad1d3a40..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_epl-2.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus AND (epl-2.0 OR gpl-2.0-plus OR lgpl-2.1-plus) -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0-plus_and_lgpl-2.0-plus_and_gfdl-1.1_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0-plus_and_lgpl-2.0-plus_and_gfdl-1.1_1.RULE index e4881ed9c5b..024f8fb9c54 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0-plus_and_lgpl-2.0-plus_and_gfdl-1.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0-plus_and_lgpl-2.0-plus_and_gfdl-1.1_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus AND gpl-2.0-plus AND lgpl-2.0-plus AND gfdl-1.1 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, you can find the complete textes for the GNU (Lesser) General licenses: - GPL: /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0-plus_and_lgpl-2.0-plus_and_gfdl-1.1_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0-plus_and_lgpl-2.0-plus_and_gfdl-1.1_1.yml deleted file mode 100644 index 76f56a7e661..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0-plus_and_lgpl-2.0-plus_and_gfdl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND gpl-2.0-plus AND lgpl-2.0-plus AND gfdl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_1.RULE index 503559ae05c..c6e02cb34bd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_1.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gpl-1.0-plus AND (gpl-2.0 OR xfree86-1.1) +is_license_notice: yes +minimum_coverage: 80 +notes: found in the Linux kernel in some framebuffer driver +--- + This driver consists of two parts. The first part provides the basic interfaces, is derived in part from the driver and drivers, and is covered by the GPL. The second part provides the code to program the hardware. Most of it is derived from the XFree86 driver. The HW-specific code is covered here -under a dual license (GPL and MIT/XFree86 license). +under a dual license (GPL and MIT/XFree86 license). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_1.yml deleted file mode 100644 index 79f61e27b1e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND (gpl-2.0 OR xfree86-1.1) -is_license_notice: yes -minimum_coverage: 80 -notes: found in the Linux kernel in some framebuffer driver diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_2.RULE index 19e89270247..5f02ddb3ae3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_2.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gpl-1.0-plus AND (gpl-2.0 OR xfree86-1.1) +is_license_notice: yes +minimum_coverage: 95 +notes: found in the Linux kernel in some framebuffer driver +--- + This driver consists of two parts. The first part (intelfbdrv.c) provides the basic fbdev interfaces, is derived in part from the radeonfb and vesafb drivers, and is covered by the GPL. The second part (intelfbhw.c) provides the code to program the hardware. Most of it is derived from the i810/i830 XFree86 driver. The HW-specific code is covered here -under a dual license (GPL and MIT/XFree86 license). +under a dual license (GPL and MIT/XFree86 license). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_2.yml deleted file mode 100644 index e885a3471c5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_gpl-2.0_or_mit_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND (gpl-2.0 OR xfree86-1.1) -is_license_notice: yes -minimum_coverage: 95 -notes: found in the Linux kernel in some framebuffer driver diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_1.RULE index 544f65166e5..4c60bcba88f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-1.0-plus AND ijg AND public-domain +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - COPYING + - backend/dll.c + - backend/djpeg.README.gz + - /usr/share/common-licenses/GPL +--- + Verbatim copy of the LICENSE : ******************************************************************************** diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_1.yml deleted file mode 100644 index 6fc058777ca..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-1.0-plus AND ijg AND public-domain -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - COPYING - - backend/dll.c - - backend/djpeg.README.gz - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_2.RULE index 3b6d49c5b03..d3b10613089 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-1.0-plus AND ijg AND public-domain +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - COPYING + - backend/dll.c + - backend/djpeg.README.gz + - /usr/share/common-licenses/GPL +--- + Verbatim copy of the LICENSE : ******************************************************************************** diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_2.yml deleted file mode 100644 index 6fc058777ca..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_ijg_and_public-domain_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-1.0-plus AND ijg AND public-domain -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - COPYING - - backend/dll.c - - backend/djpeg.README.gz - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_1.RULE index 1e252e53434..a2804116e09 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus +is_license_tag: yes +relevance: 90 +--- + Copyright: GPL/LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_1.yml deleted file mode 100644 index c6ed20418b7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_and_bsd-new_and_public-domain.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_and_bsd-new_and_public-domain.RULE index 285ffe8f433..d8a5070cb0f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_and_bsd-new_and_public-domain.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_and_bsd-new_and_public-domain.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus AND bsd-new AND public-domain +is_license_tag: yes +relevance: 90 +--- + license: GPL, LGPL, BSD, public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_and_bsd-new_and_public-domain.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_and_bsd-new_and_public-domain.yml deleted file mode 100644 index a409f5eb78e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.0-plus_and_bsd-new_and_public-domain.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus AND bsd-new AND public-domain -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_1.RULE index 4755f229837..a87163a67ed 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: lesser means LGPL 2.1 +--- + This software is distributed under the following licenses: GNU General Public License (GPL) -GNU Lesser General Public License (LGPL) +GNU Lesser General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_1.yml deleted file mode 100644 index 58aa68f64b0..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: lesser means LGPL 2.1 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_2.RULE index 540b6d04239..4a86cc92cf6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_2.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.1-plus AND lgpl-2.1-plus AND lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the following licenses: -{{GNU General Public License (GPL) +GNU General Public License (GPL) GNU Lesser General Public (LGPL) GNU Lesser General Public (LGPL) -GNU Lesser General Public (LGPL)}} +GNU Lesser General Public (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_2.yml deleted file mode 100644 index 2978e2779a2..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.1-plus AND lgpl-2.1-plus AND lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_3.RULE index f6282ff7652..5849d2617da 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + All files are released under the GNU General Public Licence, except some external libraries that are released under the GNU Lesser General Public Licence. -See https://www.gnu.org/licenses/gpl.html and https://www.gnu.org/licenses/lgpl.html +See https://www.gnu.org/licenses/gpl.html and https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_3.yml deleted file mode 100644 index 1e6447dad47..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_mit_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_mit_1.RULE index 8b714fde4e0..485bc730ef1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND mit +is_license_notice: yes +relevance: 100 +--- + This software is GPL-licensed, with several MIT-licensed dependencies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_mit_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_mit_1.yml deleted file mode 100644 index 3ac7c30ec0f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_1.RULE index 72dd024a226..4cc2e8566db 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus AND other-copyleft +is_license_notice: yes +relevance: 100 +--- + License This software is licensed under the GPL license. The pictures were used under Creative Commons licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_1.yml deleted file mode 100644 index 7cc6dcb4840..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_2.RULE index f5def7d73a3..1f28379d6cf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus AND other-copyleft +is_license_notice: yes +relevance: 100 +--- + License This software is licenced under the GPL license. The pictures were used under Creative Commons licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_2.yml deleted file mode 100644 index 7cc6dcb4840..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_3.RULE index 4ace7623a8c..adf811a5fec 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus AND other-copyleft +is_license_notice: yes +minimum_coverage: 90 +notes: This is ambiguous and may be a rider on top of the GPL +--- + distributed under the terms of the GNU General Public License (GPL). Redistribution of this package is freely allowed, provided that the terms of the GPL are adhered to, including the requirement that the source code for all GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_3.yml deleted file mode 100644 index 2a5e49b7460..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND other-copyleft -is_license_notice: yes -minimum_coverage: 90 -notes: This is ambiguous and may be a rider on top of the GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown.RULE index 34ebff1f6b8..717ac018a5a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus AND other-copyleft AND free-unknown +is_license_reference: yes +relevance: 100 +--- + is distributed under the terms of the GNU General Public Licence, with the following exceptions: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown.yml deleted file mode 100644 index 2c6281bf8be..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND other-copyleft AND free-unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown2.RULE index 5fedd63cd09..41ad7beeadc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND other-copyleft AND free-unknown +is_license_reference: yes +--- + Source code copyright is distributed under the terms of the GNU General Public Licence, with the following exceptions: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown2.yml deleted file mode 100644 index 6c11cda889a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-copyleft_and_free-unknown2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus AND other-copyleft AND free-unknown -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-permissive_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-permissive_and_other-copyleft_1.RULE index e5d51d25574..d47f33bb381 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-permissive_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-permissive_and_other-copyleft_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus AND other-permissive AND other-copyleft +is_license_notice: yes +relevance: 100 +--- + A few of the files needed to use the GNU-style build procedure come with slightly different licenses, though they are all similar in spirit. A few are GPL'ed, but with an exception that should cover all uses in the diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-permissive_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_other-permissive_and_other-copyleft_1.yml deleted file mode 100644 index 66c67df5bb5..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_other-permissive_and_other-copyleft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND other-permissive AND other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_1.RULE index 9b24b86636b..43d80980a2b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + The code is licensed under GPL, resource files (images and maps) are free for non-commercial usage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_1.yml deleted file mode 100644 index f355e5cc7b8..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_2.RULE index c4ab85c8db8..ef963df1bde 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_2.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: the GPL allows to charge fees +--- + Copyright: This code is placed into the Public Domain under the ## terms of the GNU Public License. No fee may be charged ## for its use or distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_2.yml deleted file mode 100644 index 69083cb944c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_proprietary-license_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: the GPL allows to charge fees diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_public-domain_and_mit_and_bsd-new_and_free-unknown_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_public-domain_and_mit_and_bsd-new_and_free-unknown_1.RULE index 45fe3796e52..b420c8d3aae 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_public-domain_and_mit_and_bsd-new_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_public-domain_and_mit_and_bsd-new_and_free-unknown_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus AND public-domain AND mit AND bsd-new AND free-unknown +is_license_reference: yes +relevance: 100 +referenced_filenames: + - docs/AUTHORS_wiki_commons* +--- + license: CC, GPL, PD, MIT, BSD (in separate directories) License link: see docs/AUTHORS_wiki_commons* \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_public-domain_and_mit_and_bsd-new_and_free-unknown_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_public-domain_and_mit_and_bsd-new_and_free-unknown_1.yml deleted file mode 100644 index 772a6ec21d6..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_public-domain_and_mit_and_bsd-new_and_free-unknown_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus AND public-domain AND mit AND bsd-new AND free-unknown -is_license_reference: yes -relevance: 100 -referenced_filenames: - - docs/AUTHORS_wiki_commons* diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_zlib_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_and_zlib_1.RULE index 6f74909de27..37f06e0c5ea 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_zlib_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_and_zlib_1.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus AND zlib +is_license_notice: yes +relevance: 100 +notes: Seen in xymon in Debian +--- + released under the GNU GPL." and then shows the zlib license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_and_zlib_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_and_zlib_1.yml deleted file mode 100644 index 389241fb903..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_and_zlib_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND zlib -is_license_notice: yes -relevance: 100 -notes: Seen in xymon in Debian diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_debian3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_debian3.RULE index eefa5729251..635912d09d7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_debian3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_debian3.RULE @@ -1 +1,7 @@ -All code generated for the Debian adaptions is under the GNU General Public License. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +All code generated for the Debian adaptions is under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_debian3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_debian3.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_debian3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_gcc_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_gcc_1.RULE index a1ba27a1942..b4e120bd562 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_gcc_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_gcc_1.RULE @@ -1,7 +1,12 @@ +--- +license_expression: gpl-1.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +--- + {{In addition to the permissions in the GNU General Public License}}, the Free Software Foundation gives you {{unlimited permission to link the compiled version}} of this file into combinations with other programs, and to distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked -into a combine executable.) +into a combine executable.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_gcc_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_gcc_1.yml deleted file mode 100644 index e063426bd99..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_gcc_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.RULE index 98563347fb5..186985f13dc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +notes: One of the many Linux GPL declaration. It should be treated as GPL-2.0 but this cannot + be done short of knowning what is the license in COPYING +--- + * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive * for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.yml deleted file mode 100644 index f937dfce875..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -notes: One of the many Linux GPL declaration. It should be treated as GPL-2.0 but this cannot - be done short of knowning what is the license in COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_linux_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_linux_2.RULE index c1cbfeb6dbf..575aa81fd6d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_linux_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_linux_2.RULE @@ -1,4 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +notes: One of the many Linux GPL declaration. It should be treated as GPL-2.0 but this cannot + be done short of knowning what is the license in COPYING +--- + This file is subject to the terms and conditions of the GNU General Public Licence. See the file "COPYING" in the main directory of this archive -for more details. +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_linux_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_linux_2.yml deleted file mode 100644 index f937dfce875..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_linux_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -notes: One of the many Linux GPL declaration. It should be treated as GPL-2.0 but this cannot - be done short of knowning what is the license in COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.RULE index 9683dfb98ee..f0fccacd98a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.RULE @@ -1,7 +1,13 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + This software may be used and distributed according to the terms of the GNU General Public License (GPL), incorporated herein by reference. Drivers based on or derived from this code fall under the GPL and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating system is licensed under the GPL. License for under other terms may be -available. Contact the original author for details. +available. Contact the original author for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.yml deleted file mode 100644 index 2dd8fee6659..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.RULE index 978e5c31c05..21749d56c40 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may only be used and distributed according to the terms of the GNU General Public License as modified by , incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.RULE index 39432430ecb..41e0b5e593b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This software may be used and distributed according to the terms of the GNU General Public License (GPL), incorporated herein by reference. Drivers based on or derived from this code fall under the GPL and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating system is licensed under the GPL. -See the file COPYING in this distribution for more information. +See the file COPYING in this distribution for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.RULE index a31f213cd47..d19ac76f260 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. +the GNU General Public License (GPL), incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.yml b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_and_warranty-disclaimer_1.RULE index 0cb0c35b914..199d69685e6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_and_warranty-disclaimer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus AND warranty-disclaimer +is_license_notice: yes +--- + This software may be used and distributed according to the terms of the GNU General Public License, incorporated herein by reference. @@ -8,4 +13,4 @@ intent in sharing this software is to promote the productive interchange of ideas throughout the research community. All software is furnished on an "as-is" basis. No further updates to this software should be - expected. Although updates may occur, no commitment exists. + expected. Although updates may occur, no commitment exists. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_and_warranty-disclaimer_1.yml deleted file mode 100644 index 5f7ea1699ee..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus AND warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_only_known_words_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_only_known_words_1.RULE index fa0ee69be52..3ad6196f333 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_only_known_words_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_only_known_words_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +--- + GPL driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_only_known_words_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_only_known_words_1.yml deleted file mode 100644 index 1f6d102aa1a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_only_known_words_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_1.RULE index c41d770bf3c..a65f9fff564 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-1.0 +is_license_notice: yes +minimum_coverage: 50 +--- + This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. @@ -19,5 +25,4 @@ This is free software, licensed under: The Artistic License 1.0 --- This is free software, licensed under: - The Artistic License 1.0 - \ No newline at end of file + The Artistic License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_1.yml deleted file mode 100644 index b3114030e8d..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-1.0 -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_2.RULE index f78009d53cb..567ee6fe001 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR artistic-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_2.yml deleted file mode 100644 index bf132828a10..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_3.RULE index eb31a03e8b2..f01541ff4f8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-1.0 +is_license_notice: yes +relevance: 100 +--- + This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_3.yml deleted file mode 100644 index f9fc38442fe..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_4.RULE index 45910c1f0e8..3836037faae 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-1.0 +is_license_notice: yes +relevance: 100 +--- + Terms of the Perl programming language system itself a) the GNU General Public License as published by the Free diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_4.yml deleted file mode 100644 index f9fc38442fe..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_5.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_5.RULE index 55f2721d738..6e085360aad 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR artistic-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This is free software, licensed under: The GNU General Public License, Version 1, February 1989 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_5.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_5.yml deleted file mode 100644 index bf132828a10..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-1.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_1.RULE index b314d5c12d0..daa478f9752 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_1.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gpl-1.0-plus OR artistic-2.0 +is_license_notice: yes +ignorable_urls: + - http://dev.perl.org/licenses/ +--- + COPYRIGHT & LICENSE This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. -See http://dev.perl.org/licenses/ for more information. +See http://dev.perl.org/licenses/ for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_1.yml deleted file mode 100644 index 60779457a90..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-2.0 -is_license_notice: yes -ignorable_urls: - - http://dev.perl.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_2.RULE index 7dfbb05b337..cb7e5e36eeb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus OR artistic-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + LICENSING ========= diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_2.yml deleted file mode 100644 index 4db95a46187..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_3.RULE index 6bc61e41917..e9fbaffb08d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-2.0 +is_license_notice: yes +relevance: 100 +--- + It is distributed under GPL and the Artistic License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_3.yml deleted file mode 100644 index 73284561d54..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_4.RULE index 7183b153cdf..5ffd5f3e631 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus OR artistic-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + LICENSING ========= diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_4.yml deleted file mode 100644 index 882d7070689..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_1.RULE index 27f9a8b8da8..affcdd5d08b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_tag: yes +relevance: 100 +--- + License: GPL-1+ or Artistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_1.yml deleted file mode 100644 index 0f76c3f9494..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_10.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_10.RULE index bb4c077c584..d871e31e4f0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This module is released under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_10.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_10.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_11.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_11.RULE index a1fb483ae69..627b99307da 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This package has the same copyright and license as the perl core. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_11.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_11.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_12.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_12.RULE index 675f797d072..3bd375e5328 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This file is a part of Perl itself, licensed as above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_12.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_12.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_13.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_13.RULE index 1cfc5ee5def..5f194021980 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of either: . diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_13.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_13.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_14.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_14.RULE index 0160ac1053d..40617bb4efc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - README +--- + You may distribute this work under the terms of either the GNU General Public License or the Artistic License, as specified in perl's README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_14.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_14.yml deleted file mode 100644 index 4a49955860c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_15.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_15.RULE index d2de5785242..1f8e0346dcc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_15.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENCE +--- + You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the LICENCE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_15.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_15.yml deleted file mode 100644 index dafb3206d52..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_16.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_16.RULE index e5e9f6dbca6..d08c1db89c7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_16.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + free software; you can redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_16.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_16.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_17.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_17.RULE index 58596ff5302..a270e890c4f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of either: . diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_17.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_17.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_18.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_18.RULE index e1106f0d476..86ebc6c8d50 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + You may use and distribute this software under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_18.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_18.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_19.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_19.RULE index 59147fd3c86..bfa78130605 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_19.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_19.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_2.RULE index 9aef61b6b1b..42c3fea9e9c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_tag: yes +relevance: 100 +--- + GPL-1+ or Artistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_2.yml deleted file mode 100644 index 0f76c3f9494..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_20.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_20.RULE index da799f84e8b..01a0f214d4e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + under the same terms as Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_20.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_20.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_21.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_21.RULE index 41e27f9dadc..366c8156ff1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_21.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + same terms as Perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_21.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_21.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_22.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_22.RULE index feef0a2b2d9..b076d8977b6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_22.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_22.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - README +--- + You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_22.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_22.yml deleted file mode 100644 index 4a49955860c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_23.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_23.RULE index 07253ae05d6..ef4b0871c9f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_23.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_23.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_23.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_23.yml deleted file mode 100644 index 0f3dbc5f4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_24.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_24.RULE index 67d9757328d..a14093d1e6d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_24.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_reference: yes +relevance: 99 +--- + Artistic/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_24.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_24.yml deleted file mode 100644 index b47e593a0c7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_25.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_25.RULE index 21b79ebcd34..6798dd364e0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_25.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + The license in the file is specified as . License: Artistic/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_25.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_25.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_26.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_26.RULE index 953ebe2c003..da7873cf864 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_26.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_tag: yes +relevance: 99 +--- + License: Artistic/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_26.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_26.yml deleted file mode 100644 index 9a9b89ab724..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_27.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_27.RULE index a7617a7255c..66b1b9ed49d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_27.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This document may be distributed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_27.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_27.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_28.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_28.RULE index 5e9e8f076fa..b4edc6021d3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_28.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_28.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + You can use and redistribute this document under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_28.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_28.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_29.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_29.RULE index d3908b8ed4e..a3c6e065d82 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_29.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This program is distributed under the same terms as perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_29.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_29.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_3.RULE index cd4f35d31a3..9df0f303d4f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_3.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_30.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_30.RULE index 00eb1ddc4c4..5147ff757db 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_30.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_30.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +--- + You may redistribute only under the same terms as Perl 5, as specified in the README file that comes with the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_30.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_30.yml deleted file mode 100644 index 0f3dbc5f4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_31.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_31.RULE index 026544b4db3..577be25d1ab 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_31.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_31.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Perl 5 Porters, which was released under the same license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_31.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_31.yml deleted file mode 100644 index 737fd30ea21..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_31.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_32.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_32.RULE index 24bc2bd41e9..fc171a62192 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_32.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_32.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +--- + This module is free software; you may redistribute it and/or modify it under the same terms as Perl itself. . diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_32.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_32.yml deleted file mode 100644 index 0f3dbc5f4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_32.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_33.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_33.RULE index 40c47e85637..97523c88b7d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_33.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_33.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 99 +--- + The "Perl for Win32" source code was licensed under the same terms as Perl itself and contained this copyright notice: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_33.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_33.yml deleted file mode 100644 index 5330b6a1357..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_34.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_34.RULE index 987b057744c..e6679ef0208 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_34.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_34.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 70 +minimum_coverage: 100 +notes: seen mostly in Perl +--- + It is assumed that the other parts are licensed under the same terms as the rest of the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_34.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_34.yml deleted file mode 100644 index 5a063856030..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 70 -minimum_coverage: 100 -notes: seen mostly in Perl diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_35.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_35.RULE index 453707893bd..db0795d149d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_35.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_35.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This module is free software, you may distribute it under the same terms as Perl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_35.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_35.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_36.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_36.RULE index 32739e59d9a..e05572c6140 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_36.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_36.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This file is free software, you may distribute it under the same terms as Perl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_36.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_36.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_37.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_37.RULE index 9f2baa8df18..e8ff0efbadc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_37.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_37.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +--- + This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. These distributions include no copyright notices but have diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_37.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_37.yml deleted file mode 100644 index 0f3dbc5f4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_38.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_38.RULE index 7612edb98a2..6fcdd0bc6fe 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_38.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 99 +--- + There are no copyright notices this distribution. . This library is free software; you may redistribute and/or modify it diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_38.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_38.yml deleted file mode 100644 index 5330b6a1357..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_39.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_39.RULE index 52f2287bc06..73458e2855d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_39.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_39.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +--- + This documentation is free; you can redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_39.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_39.yml deleted file mode 100644 index 0f3dbc5f4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_4.RULE index 1b3b04e2095..ffb0b48aa41 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_4.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_40.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_40.RULE index 0169e2505f4..ebee47ad97d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_40.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_40.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +--- + This software is free software and can be modified and distributed under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_40.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_40.yml deleted file mode 100644 index 0f3dbc5f4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_41.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_41.RULE index 452712813ca..1315342cfe7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_41.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_41.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +ignorable_urls: + - https://metacpan.org/release/ExtUtils-Constant +--- + There are no copyright or license notices in this distribution. It is assumed that the copyright and license of Perl itself applies here as well. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_41.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_41.yml deleted file mode 100644 index 3c24813dc10..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_41.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -ignorable_urls: - - https://metacpan.org/release/ExtUtils-Constant diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_42.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_42.RULE index 0404df0088e..0710ae1d1e7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + You may redistribute this under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_42.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_42.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_43.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_43.RULE index 2c1f43185a4..8521679a7e0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_43.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_43.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +--- + This is free software. You may modify and/or redistribute this code under the same terms as Perl 5.10 itself, or, at your option, any later version of Perl 5. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_43.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_43.yml deleted file mode 100644 index 0f3dbc5f4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_43.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_44.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_44.RULE index b5d77549be2..377090336e1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_44.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_44.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This module is free software. You may distribute it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_44.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_44.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_5.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_5.RULE index efa243f1daa..5e1c5895fab 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + is free software; you can redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_5.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_5.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_6.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_6.RULE index 1acff2badd8..9223a4e06c5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_6.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_6.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_7.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_7.RULE index f54e4b36bd5..4d24ae425fe 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This library is free software; you may redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_7.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_7.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_8.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_8.RULE index 5809e24b799..4b7004bc102 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This library is free software; you may redistribute it and/or modify it under the same terms as Perl itself. You may copy and distribute this program under the same terms as diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_8.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_8.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_9.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_9.RULE index 0f9383976e3..62349b0df3b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_9.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + You may copy and distribute this program under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_9.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_9.yml deleted file mode 100644 index 6289698de34..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_and_mit_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_and_mit_1.RULE index c79235e9468..4de21ae22c5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_and_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: (gpl-1.0-plus OR artistic-perl-1.0) AND mit +is_license_tag: yes +relevance: 100 +--- + GPL-1+ or Artistic, and Expat \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_and_mit_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_and_mit_1.yml deleted file mode 100644 index 52651a75a56..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_artistic-perl-1.0_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (gpl-1.0-plus OR artistic-perl-1.0) AND mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_1.RULE index b97e0682cde..9990c67b26f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + This file is dual licensed; you can use it under the terms of either the GPL, or the BSD license, at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_1.yml deleted file mode 100644 index 3cc04731c83..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_2.RULE index d6ad5dc689b..5806003e4b2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + dual GPL/BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_2.yml deleted file mode 100644 index 3cc04731c83..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_3.RULE index c258342351a..c589c73db96 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + dual GPL/BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_3.yml deleted file mode 100644 index 3cc04731c83..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-new_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-simplified_1.RULE index aad307e82ef..c1d6c37bd92 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-simplified_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR bsd-simplified +is_license_notice: yes +minimum_coverage: 95 +notes: openib openfabrics See https://web.archive.org/web/20081201111036/http://www.openfabrics.org/software_license.htm +--- + OpenFabrics License OpenFabrics source code is distributed under a dual license of GPL and OpenFabrics BSD. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-simplified_1.yml deleted file mode 100644 index 077ea679602..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_bsd-simplified_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR bsd-simplified -is_license_notice: yes -minimum_coverage: 95 -notes: openib openfabrics See https://web.archive.org/web/20081201111036/http://www.openfabrics.org/software_license.htm diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_cddl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_cddl-1.0_1.RULE index 418e8a7c3ab..09d2ae43e3e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_cddl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_cddl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR cddl-1.0 +is_license_notice: yes +relevance: 100 +--- + "GPL" or "CDDL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_cddl-1.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_cddl-1.0_1.yml deleted file mode 100644 index eabfeea6b9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_cddl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR cddl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_1.RULE index 7d4685c7727..0df73fbf379 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- + GPL LICENSED, commercial license available upon request \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_1.yml deleted file mode 100644 index 7567a901ddc..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_2.RULE index 116340edc6d..48964fb789d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- + GNU/GPL LICENSED, commercial license available upon request \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_2.yml deleted file mode 100644 index 7567a901ddc..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_qt_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_qt_1.RULE index da62160a135..ed4268b24db 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_qt_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_qt_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR commercial-license +is_license_reference: yes +relevance: 90 +--- + licensing terms are GPL or pay \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_qt_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_qt_1.yml deleted file mode 100644 index e6dc3a91407..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_commercial-license_qt_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR commercial-license -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_cups_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_cups_1.RULE index 5ca22596e2a..f528bfe1ab8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_cups_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_cups_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus OR cups +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.txt +--- + Distribution and use rights are outlined in the file "LICENSE.txt" which should have been included with this file. [...] @@ -6,4 +14,4 @@ Distribution and use rights are outlined in the file "LICENSE.txt" when used with GNU Ghostscript or its derivatives}}. Use of the code (or any derivative of it) with software other than GNU GhostScript (or its derivatives) - is governed by the {{CUPS license agreement}}. + is governed by the {{CUPS license agreement}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_cups_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_cups_1.yml deleted file mode 100644 index a07b21d93a1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_cups_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus OR cups -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_1.RULE index 2d2a47a242a..de53e43be3b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR gpl-2.0-plus OR artistic-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/license-list.html#GNUGPL +--- + * GPL or GPLv2+ (see https://www.gnu.org/licenses/license-list.html#GNUGPL), or * Artistic License - see below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_1.yml deleted file mode 100644 index 645e991b523..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus OR gpl-2.0-plus OR artistic-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/license-list.html#GNUGPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_2.RULE index 4223b02f744..e71b011d7bd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR gpl-2.0-plus OR artistic-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/license-list.html#GNUGPL +--- + * GPL or GPLv2+ (see https://www.gnu.org/licenses/license-list.html#GNUGPL), or * Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_2.yml deleted file mode 100644 index 645e991b523..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_gpl-2.0-plus_or_artistic-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus OR gpl-2.0-plus OR artistic-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/license-list.html#GNUGPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE index 918d24aff6f..4b670ebe860 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_1.RULE @@ -1 +1,7 @@ -This code is released using a dual license strategy: GPL/LGPL +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +This code is released using a dual license strategy: GPL/LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE index d21785d846c..d3397dbf129 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +--- + This code is released using a dual license strategy: GPL/LGPL -You can choose the licence that better fits your requirements. +You can choose the licence that better fits your requirements. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index 94385b9671a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_3.RULE index 66ddf981dd8..8f35efa3834 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB + - COPYING +--- + They are licensed under the GPL or the LGPL. See the COPYING.LIB file in this directory and the COPYING file in the parent directory for licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_3.yml deleted file mode 100644 index 08712159b3d..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_4.RULE index 655bae5d261..c13b0ee925c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_4.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + Most of the package is licensed under the GNU Lesser General Public -License (LGPL) version 2.1 (or later), +License (LGPL) version 2.1 (or later), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_4.yml deleted file mode 100644 index 845158f6dd0..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_lgpl-2.0-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_1.RULE index cb51ad78391..ad2274e84b8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR mit +is_license_notice: yes +--- + This file is dual-licensed: you can use it either under the terms * of the GPL or the X11 license, at your option. Note that this dual * licensing only applies to this file, and not this project as a diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_1.yml deleted file mode 100644 index 62127a228d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_2.RULE index fb32be63daa..a4885998281 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus OR mit +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License or the MIT license. See LICENSE for details. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_2.yml deleted file mode 100644 index b6da573c8b4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR mit -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_3.RULE index faa6c5c9781..4b3cda74fb6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR mit +is_license_notice: yes +relevance: 100 +--- + licensed under both GPL and MIT licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_3.yml deleted file mode 100644 index 83ab9d2fb74..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_4.RULE index 1008732550a..d1d94a1cf2e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_4.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR mit +is_license_notice: yes +--- + released under both the GPL and MIT licenses. You may pick the license that best fits your needs. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_4.yml deleted file mode 100644 index 62127a228d4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_mit_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_1.RULE index dd5bc228b6c..2e4aa4e6c54 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus OR other-copyleft +is_license_notice: yes +minimum_coverage: 80 +notes: a rare license found in older OpenSSL with a choice of GPL +ignorable_authors: + - Bodo Moeller +--- + This is free software; you can redistributed and/or modify it unter the terms of either - the GNU General Public License as published by the @@ -50,4 +59,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_1.yml deleted file mode 100644 index 2e5baf65607..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus OR other-copyleft -is_license_notice: yes -minimum_coverage: 80 -notes: a rare license found in older OpenSSL with a choice of GPL -ignorable_authors: - - Bodo Moeller diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_2.RULE index 43216c75f0d..146c044153d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus OR other-copyleft +is_license_notice: yes +relevance: 100 +notes: damaged text +ignorable_authors: + - Bodo Moeller +--- + This is free software; you can redistributed and/or modify itunter the terms of either - the GNU General Public License as published by theFree Software Foundation, version 1, or (at your option)any later version, or diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_2.yml deleted file mode 100644 index 75c8ff2dfe8..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_other-copyleft_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus OR other-copyleft -is_license_notice: yes -relevance: 100 -notes: damaged text -ignorable_authors: - - Bodo Moeller diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_proprietary-license_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_proprietary-license_1.RULE index 75421dc75aa..dfdbb9ed647 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_proprietary-license_1.RULE @@ -1,7 +1,13 @@ +--- +license_expression: gpl-1.0-plus OR proprietary-license +is_license_notice: yes +notes: see http://www.skybuilders.com/Products/dual_license/ +--- + Dual License Software software is licensed under the Free Software Foundation's General Public License (GPL) as Open Source code. Our code can be downloaded freely from -Code we have written is also available under a dual license agreement that allows a developer organization to make changes to the code without returning those changes to the community. \ No newline at end of file +Code we have written is also available under a dual license agreement that allows a developer organization to make changes to the code without returning those changes to the community. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_proprietary-license_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_proprietary-license_1.yml deleted file mode 100644 index a7d1da606f8..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR proprietary-license -is_license_notice: yes -notes: see http://www.skybuilders.com/Products/dual_license/ diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_python.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_python.RULE index faf1255e612..242f7efa795 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_python.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_python.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR python +is_license_tag: yes +relevance: 100 +--- + __license__ = "Choice of GPL or Python license" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_python.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_python.yml deleted file mode 100644 index 269061fd503..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_python.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR python -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby.RULE index 204d54f4668..a69b8d10e4a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR ruby +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public Licence or Ruby's licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby.yml deleted file mode 100644 index 694687c9e1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby2.RULE index f2a2514b131..8edf386c077 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR ruby +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public Licence or Ruby's license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby2.yml deleted file mode 100644 index 694687c9e1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby3.RULE index cff098db320..4ff6417bfff 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR ruby +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License or Ruby's license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby3.yml deleted file mode 100644 index 694687c9e1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby4.RULE index 6b3da809a3b..e97db6ecc02 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR ruby +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License or Ruby's licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby4.yml deleted file mode 100644 index 694687c9e1f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_or_ruby4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_1.RULE index 05675a20bdd..4b22e9835ca 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_1.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +notes: there is no specific GPL version attached to this URL hence the version that is returned + (meaning effectively any version) +ignorable_urls: + - http://opensource.org/licenses/gpl-license.php +--- + http://opensource.org/licenses/gpl-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_1.yml deleted file mode 100644 index b1fa1518265..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -notes: there is no specific GPL version attached to this URL hence the version that is returned - (meaning effectively any version) -ignorable_urls: - - http://opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_2.RULE index a001645089d..a2642f21a18 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_2.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +notes: there is no specific GPL version attached to this URL hence the version that is returned + (meaning effectively any version) +ignorable_urls: + - https://opensource.org/licenses/gpl-license.php +--- + https://opensource.org/licenses/gpl-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_2.yml deleted file mode 100644 index 7074b8db0de..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_osi_url_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 -notes: there is no specific GPL version attached to this URL hence the version that is returned - (meaning effectively any version) -ignorable_urls: - - https://opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_terse.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_terse.RULE index 3f2d19ed2eb..e41ad29daa1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_terse.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_terse.RULE @@ -1 +1,7 @@ -Licenses: GNU General Public Licence(GPL) +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licenses: GNU General Public Licence(GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_terse.yml b/src/licensedcode/data/rules/gpl-1.0-plus_terse.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_terse.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_terse_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_terse_3.RULE index b3b374704c1..49b255b65c1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_terse_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_terse_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + is free software distributed under the terms of the -GNU General Public Licence. +GNU General Public Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_terse_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_terse_3.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_terse_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_theme.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_theme.RULE index cc313eb869e..f13fc171af6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_theme.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_theme.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + licensed under the `GNU General Public License `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_theme.yml b/src/licensedcode/data/rules/gpl-1.0-plus_theme.yml deleted file mode 100644 index c8306959fa7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_theme.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_url_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_url_1.RULE index 9f9ab65601e..d24559b3dce 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-1.0-or-later +--- + https://spdx.org/licenses/gpl-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_url_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_url_1.yml deleted file mode 100644 index 89ace621a2d..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-1.0-or-later diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_url_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_url_2.RULE index c7204680f93..289b21d0004 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-1.0-or-later.html +--- + https://spdx.org/licenses/gpl-1.0-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_url_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_url_2.yml deleted file mode 100644 index 8283f5f4574..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-1.0-or-later.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_ada-linking-exception_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_ada-linking-exception_1.RULE index 994e3d0b34f..7e3b10bea26 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_ada-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_ada-linking-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH ada-linking-exception +is_license_notice: yes +--- + licensed under the terms of the {{GNU General Public License}}, with this special exception: diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_ada-linking-exception_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_ada-linking-exception_1.yml deleted file mode 100644 index 9316acf65c2..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_ada-linking-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH ada-linking-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-exception-2.0_1.RULE index b1b18838799..4ae1dd1dede 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-exception-2.0_1.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-1.0-plus WITH autoconf-exception-2.0 +is_license_reference: yes +relevance: 95 +--- + There are no restrictions on how the configuration scripts that Autoconf produces may be distributed or used. In Autoconf version 1, they were covered by the GNU General Public License. We still encourage software authors to distribute their work under terms like those of the -GPL, but doing so is not required to use Autoconf. +GPL, but doing so is not required to use Autoconf. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-exception-2.0_1.yml deleted file mode 100644 index 38c9515c49e..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus WITH autoconf-exception-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_1.RULE index 7cc59eb17bf..420c8347779 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH autoconf-macro-exception +is_license_notice: yes +--- + As a special exception, the respective Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_1.yml deleted file mode 100644 index cbc5da1e163..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH autoconf-macro-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_2.RULE index 2506d0f4cc1..84164dfb31d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH autoconf-macro-exception +is_license_notice: yes +--- + This was licensed under the GPL with the following exception: As a special exception, the respective Autoconf Macro's copyright @@ -13,4 +18,4 @@ This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Macro Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your modified -version as well. +version as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_2.yml deleted file mode 100644 index cbc5da1e163..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-macro-exception_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH autoconf-macro-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_1.RULE index 0eb0b022a34..923d92f9155 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +--- + As a special exception to the GNU General Public License, this file may be distributed as part of a program that contains a configuration script generated by Autoconf, under the same distribution terms as the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_1.yml deleted file mode 100644 index 2b5fafec6da..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_2.RULE index 12a5a58f1f5..c44035c6b81 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +--- + This file is free software, distributed under the terms of the GNU General Public License. As a special exception to the GNU General Public License, this file may be distributed as part of a program diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_2.yml deleted file mode 100644 index 2b5fafec6da..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_3.RULE index cce451a67b2..ad26c74d783 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + This file is free software, distributed under the terms of the GNU General Public License. As a special exception to the GNU General Public License, this file may be distributed as part of a program @@ -11,4 +17,4 @@ functionality. Please note that the actual code of the GNU gettext library is covered by the GNU Library General Public License, and the rest of the GNU gettext package package is covered by the GNU General Public License. -They are *not* in the public domain. +They are *not* in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_3.yml deleted file mode 100644 index a4e01f47389..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_autoconf-simple-exception-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_bison-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_bison-exception-2.0_1.RULE index b4758caeca0..15ae2421f18 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_bison-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_bison-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH bison-exception-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 as published by the Free Software Foundation; either version 1, or (at your option) @@ -15,4 +20,4 @@ As a special exception, when this file is copied by Bison++ into a Bison++ output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation - in version 1.24 of Bison, and has been in Bison++ since 1.21.9. \ No newline at end of file + in version 1.24 of Bison, and has been in Bison++ since 1.21.9. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_bison-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_bison-exception-2.0_1.yml deleted file mode 100644 index 299f11f5b8c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_bison-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH bison-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_1.RULE index 1b78cc6275f..f2db848f23c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + The library is licensed under the terms of the GNU General Public License. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_1.yml deleted file mode 100644 index 40d55452350..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_2.RULE index b6a75af2c20..55f037ede55 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + library is {{licensed under the terms of the GNU General Public License. @@ -19,4 +25,4 @@ obligated to do so. If you do not wish to do so, delete this exception statement from your version. You should have received a copy of the GNU General Public License -along with +along with \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_2.yml deleted file mode 100644 index 968febba318..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 - diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_3.RULE index e7663ff4c54..067f48069c9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +--- + licensed {{under the terms of the GNU General Public License, with a special exception}}: diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 55df48c90ab..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH classpath-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_4.RULE index 47b2597a7a5..b0f9da61580 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +--- + The libgcj library is licensed under the terms of the GNU General Public License. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_4.yml deleted file mode 100644 index 55df48c90ab..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_classpath-exception-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH classpath-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-compiler-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-compiler-exception-2.0_1.RULE index 199269b137e..ed02e2366c2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-compiler-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-compiler-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH gcc-compiler-exception-2.0 +is_license_notice: yes +--- + licensed under the terms of the {{GNU General Public License}}, with this special exception: diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-compiler-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-compiler-exception-2.0_1.yml deleted file mode 100644 index 86dff73d650..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-compiler-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH gcc-compiler-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_1.RULE index 3e7c4a42668..477addfb15d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link the compiled version of this file into combinations with other programs, diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_1.yml deleted file mode 100644 index 29281e62271..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_2.RULE index f06cc7d528f..b55f6d5bcdd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +--- + licensed under the terms of the GNU General Public License, and has the following addition: diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_2.yml deleted file mode 100644 index e063426bd99..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_gcc-linking-exception-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_generic-exception_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_generic-exception_1.RULE index 58ba923d246..d9a89f3220c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_generic-exception_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH generic-exception +is_license_reference: yes +relevance: 80 +--- + So, in this situation, there is no requirement that your package itself is licensed under the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_generic-exception_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_generic-exception_1.yml deleted file mode 100644 index 0cdc3feec16..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_generic-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus WITH generic-exception -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_1.RULE index 76e7f7b9a00..5a7e654549b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_1.yml deleted file mode 100644 index 179bb6af654..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_2.RULE index 1729ca311d1..e0b92b3e565 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-1.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_2.yml deleted file mode 100644 index 8e6d927af08..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_libtool-exception-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_linking-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_linking-exception-2.0-plus_1.RULE index a2f6bc72b07..9f86265e599 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_linking-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_linking-exception-2.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH linking-exception-2.0-plus +is_license_notice: yes +--- + licensed under the terms of the GNU General Public License, with a special exception: diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_linking-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_linking-exception-2.0-plus_1.yml deleted file mode 100644 index c8eb05bde0c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_linking-exception-2.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH linking-exception-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_lmbench-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_lmbench-exception-2.0_1.RULE index 1211a0fd10c..9186f30f94d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_lmbench-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_lmbench-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus WITH lmbench-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING-1 +--- + Distributed under the FSF GPL with additional restriction that results may be published only if (1) the benchmark is unmodified, and diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_lmbench-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_lmbench-exception-2.0_1.yml deleted file mode 100644 index 83ed615a555..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_lmbench-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus WITH lmbench-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING-1 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_mif-exception_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_mif-exception_1.RULE index 791560b2e38..2c59f43b141 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_mif-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_mif-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus WITH mif-exception +is_license_notice: yes +--- + library is licensed under the terms of the {{GNU General Public License}}, with this special exception: diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_mif-exception_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_mif-exception_1.yml deleted file mode 100644 index 02b4fc322a9..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_mif-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus WITH mif-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-2.0_1.RULE index d120fbe308e..831606782be 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + In addition, as a special exception, the copyright holders give permission to link the code of portions of this program with the OpenSSL library. You must obey the GNU General Public License in all respects for all of the code used diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-2.0_1.yml deleted file mode 100644 index a5aa62fd4c4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-3.0-plus_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-3.0-plus_and_other-permissive_1.RULE index 3bf5f64fb1e..6f49dee0d1e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-3.0-plus_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-3.0-plus_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus WITH openssl-exception-gpl-3.0-plus AND other-permissive +is_license_notice: yes +relevance: 100 +--- + SLURM LICENSE AGREEMENT All Slurm code and documentation is available under the GNU General Public diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-3.0-plus_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-3.0-plus_and_other-permissive_1.yml deleted file mode 100644 index f2614418853..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_openssl-exception-gpl-3.0-plus_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus WITH openssl-exception-gpl-3.0-plus AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_ps-or-pdf-font-exception-20170817_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_with_ps-or-pdf-font-exception-20170817_1.RULE index e4dccf18b9b..56a209c8c0a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_ps-or-pdf-font-exception-20170817_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_with_ps-or-pdf-font-exception-20170817_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus WITH ps-or-pdf-font-exception-20170817 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + % See the file COPYING (GNU General Public License) for license conditions. % As a special exception, permission is granted to include this font % program in a Postscript or PDF file that consists of a document that diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_with_ps-or-pdf-font-exception-20170817_1.yml b/src/licensedcode/data/rules/gpl-1.0-plus_with_ps-or-pdf-font-exception-20170817_1.yml deleted file mode 100644 index ef89b3f1347..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0-plus_with_ps-or-pdf-font-exception-20170817_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus WITH ps-or-pdf-font-exception-20170817 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-1.0.RULE b/src/licensedcode/data/rules/gpl-1.0.RULE index 0bd7b902152..de374f2b8d4 100644 --- a/src/licensedcode/data/rules/gpl-1.0.RULE +++ b/src/licensedcode/data/rules/gpl-1.0.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0.SPDX.RULE b/src/licensedcode/data/rules/gpl-1.0.SPDX.RULE index a4cfc27ce87..fc81ec9a032 100644 --- a/src/licensedcode/data/rules/gpl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/gpl-1.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU General Public License, version 1 GNU GENERAL PUBLIC LICENSE diff --git a/src/licensedcode/data/rules/gpl-1.0.SPDX.yml b/src/licensedcode/data/rules/gpl-1.0.SPDX.yml deleted file mode 100644 index d43b4a275c4..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-1.0.yml b/src/licensedcode/data/rules/gpl-1.0.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-1.0_1.RULE index ac9c98e91d9..a2394d390de 100644 --- a/src/licensedcode/data/rules/gpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +--- + LICENSING INFORMATION This program is free software; you can redistribute it and/or modify it under @@ -10,4 +15,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. For a full copy of the GNU General Public License, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_1.yml b/src/licensedcode/data/rules/gpl-1.0_1.yml deleted file mode 100644 index 7d9a5c08db7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0_10.RULE b/src/licensedcode/data/rules/gpl-1.0_10.RULE index f5d65df85fb..f69096262c4 100644 --- a/src/licensedcode/data/rules/gpl-1.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_10.RULE @@ -1 +1,7 @@ -The GNU General Public License, Version 1, February 1989 \ No newline at end of file +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + +The GNU General Public License, Version 1, February 1989 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_10.yml b/src/licensedcode/data/rules/gpl-1.0_10.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_11.RULE b/src/licensedcode/data/rules/gpl-1.0_11.RULE index 0aeb3328af9..99b7bf76ad6 100644 --- a/src/licensedcode/data/rules/gpl-1.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_11.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-1.0 +is_license_text: yes +relevance: 100 +notes: an FSF-published minor text variant +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 diff --git a/src/licensedcode/data/rules/gpl-1.0_11.yml b/src/licensedcode/data/rules/gpl-1.0_11.yml deleted file mode 100644 index 1c8926daf3f..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_11.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-1.0 -is_license_text: yes -relevance: 100 -notes: an FSF-published minor text variant -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-1.0_12.RULE b/src/licensedcode/data/rules/gpl-1.0_12.RULE index 665f1fd6302..55ad516d4ec 100644 --- a/src/licensedcode/data/rules/gpl-1.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 95 +--- + GPL10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_12.yml b/src/licensedcode/data/rules/gpl-1.0_12.yml deleted file mode 100644 index 7c1831a8c0b..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-1.0_13.RULE b/src/licensedcode/data/rules/gpl-1.0_13.RULE index 5f9535892a2..22a40ed65ed 100644 --- a/src/licensedcode/data/rules/gpl-1.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 95 +--- + GPLv1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_13.yml b/src/licensedcode/data/rules/gpl-1.0_13.yml deleted file mode 100644 index 7c1831a8c0b..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-1.0_14.RULE b/src/licensedcode/data/rules/gpl-1.0_14.RULE index f99b8c7912e..d99099a7348 100644 --- a/src/licensedcode/data/rules/gpl-1.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 95 +--- + GPLv10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_14.yml b/src/licensedcode/data/rules/gpl-1.0_14.yml deleted file mode 100644 index 7c1831a8c0b..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-1.0_15.RULE b/src/licensedcode/data/rules/gpl-1.0_15.RULE index bfa14baac74..96baf778e9a 100644 --- a/src/licensedcode/data/rules/gpl-1.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_15.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 60 +--- + gpl 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_15.yml b/src/licensedcode/data/rules/gpl-1.0_15.yml deleted file mode 100644 index 8dc09582027..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 60 diff --git a/src/licensedcode/data/rules/gpl-1.0_16.RULE b/src/licensedcode/data/rules/gpl-1.0_16.RULE index 7863700fd3d..a1a91b609dc 100644 --- a/src/licensedcode/data/rules/gpl-1.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-1.0.html +--- + https://www.gnu.org/licenses/gpl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_16.yml b/src/licensedcode/data/rules/gpl-1.0_16.yml deleted file mode 100644 index 4963b006160..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-1.0.html diff --git a/src/licensedcode/data/rules/gpl-1.0_17.RULE b/src/licensedcode/data/rules/gpl-1.0_17.RULE index 66e6ddcca41..079b3a7ec7d 100644 --- a/src/licensedcode/data/rules/gpl-1.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gpl v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_17.yml b/src/licensedcode/data/rules/gpl-1.0_17.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_18.RULE b/src/licensedcode/data/rules/gpl-1.0_18.RULE index 8308c0af4fa..4b453c77042 100644 --- a/src/licensedcode/data/rules/gpl-1.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gpl v10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_18.yml b/src/licensedcode/data/rules/gpl-1.0_18.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_19.RULE b/src/licensedcode/data/rules/gpl-1.0_19.RULE index fe888c93126..0228f2a8e96 100644 --- a/src/licensedcode/data/rules/gpl-1.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNUGPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_19.yml b/src/licensedcode/data/rules/gpl-1.0_19.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_2.RULE b/src/licensedcode/data/rules/gpl-1.0_2.RULE index 6cd38ef9fe8..e0c089d8d4c 100644 --- a/src/licensedcode/data/rules/gpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-1.0.html +--- + http://www.gnu.org/licenses/gpl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_2.yml b/src/licensedcode/data/rules/gpl-1.0_2.yml deleted file mode 100644 index e664c314224..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-1.0.html diff --git a/src/licensedcode/data/rules/gpl-1.0_20.RULE b/src/licensedcode/data/rules/gpl-1.0_20.RULE index 34e9d322344..6b4aa724e63 100644 --- a/src/licensedcode/data/rules/gpl-1.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNUGPL10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_20.yml b/src/licensedcode/data/rules/gpl-1.0_20.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_21.RULE b/src/licensedcode/data/rules/gpl-1.0_21.RULE index 2eacd09b460..45572f7247b 100644 --- a/src/licensedcode/data/rules/gpl-1.0_21.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNUGPLv1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_21.yml b/src/licensedcode/data/rules/gpl-1.0_21.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_22.RULE b/src/licensedcode/data/rules/gpl-1.0_22.RULE index c3369d3ca32..454c470887f 100644 --- a/src/licensedcode/data/rules/gpl-1.0_22.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNUGPLv10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_22.yml b/src/licensedcode/data/rules/gpl-1.0_22.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_23.RULE b/src/licensedcode/data/rules/gpl-1.0_23.RULE index e2e2e13351b..14bf0731e1f 100644 --- a/src/licensedcode/data/rules/gpl-1.0_23.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_23.yml b/src/licensedcode/data/rules/gpl-1.0_23.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_24.RULE b/src/licensedcode/data/rules/gpl-1.0_24.RULE index ef6a0a51b26..3f567007182 100644 --- a/src/licensedcode/data/rules/gpl-1.0_24.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl 10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_24.yml b/src/licensedcode/data/rules/gpl-1.0_24.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_25.RULE b/src/licensedcode/data/rules/gpl-1.0_25.RULE index 53cf0e14af1..de4b8507b62 100644 --- a/src/licensedcode/data/rules/gpl-1.0_25.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_25.yml b/src/licensedcode/data/rules/gpl-1.0_25.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_26.RULE b/src/licensedcode/data/rules/gpl-1.0_26.RULE index 38fcec9ee2c..c37e1a8cae2 100644 --- a/src/licensedcode/data/rules/gpl-1.0_26.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl v10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_26.yml b/src/licensedcode/data/rules/gpl-1.0_26.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_27.RULE b/src/licensedcode/data/rules/gpl-1.0_27.RULE index 3e2766e899c..d0b3128d192 100644 --- a/src/licensedcode/data/rules/gpl-1.0_27.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_27.yml b/src/licensedcode/data/rules/gpl-1.0_27.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_28.RULE b/src/licensedcode/data/rules/gpl-1.0_28.RULE index 4aaca749a3f..dfc6a7cb44f 100644 --- a/src/licensedcode/data/rules/gpl-1.0_28.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_28.yml b/src/licensedcode/data/rules/gpl-1.0_28.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_29.RULE b/src/licensedcode/data/rules/gpl-1.0_29.RULE index 18f90a69be9..5988964b510 100644 --- a/src/licensedcode/data/rules/gpl-1.0_29.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu gplv1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_29.yml b/src/licensedcode/data/rules/gpl-1.0_29.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_3.RULE b/src/licensedcode/data/rules/gpl-1.0_3.RULE index d51451f34a1..b202608b7b1 100644 --- a/src/licensedcode/data/rules/gpl-1.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-1.0.txt +--- + http://www.gnu.org/licenses/gpl-1.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_3.yml b/src/licensedcode/data/rules/gpl-1.0_3.yml deleted file mode 100644 index 86366bf0d41..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-1.0.txt diff --git a/src/licensedcode/data/rules/gpl-1.0_30.RULE b/src/licensedcode/data/rules/gpl-1.0_30.RULE index 11936cdac59..343d9e0a520 100644 --- a/src/licensedcode/data/rules/gpl-1.0_30.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu gplv10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_30.yml b/src/licensedcode/data/rules/gpl-1.0_30.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_31.RULE b/src/licensedcode/data/rules/gpl-1.0_31.RULE index 36c7ac2daf8..83b6c52abab 100644 --- a/src/licensedcode/data/rules/gpl-1.0_31.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_31.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_31.yml b/src/licensedcode/data/rules/gpl-1.0_31.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_32.RULE b/src/licensedcode/data/rules/gpl-1.0_32.RULE index e4584dd90a8..ec36464099d 100644 --- a/src/licensedcode/data/rules/gpl-1.0_32.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl 10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_32.yml b/src/licensedcode/data/rules/gpl-1.0_32.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_33.RULE b/src/licensedcode/data/rules/gpl-1.0_33.RULE index 9c5222e5247..805b55e322a 100644 --- a/src/licensedcode/data/rules/gpl-1.0_33.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_33.yml b/src/licensedcode/data/rules/gpl-1.0_33.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_34.RULE b/src/licensedcode/data/rules/gpl-1.0_34.RULE index c59b70e12ae..dda1d51c9fa 100644 --- a/src/licensedcode/data/rules/gpl-1.0_34.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl v10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_34.yml b/src/licensedcode/data/rules/gpl-1.0_34.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_35.RULE b/src/licensedcode/data/rules/gpl-1.0_35.RULE index 9f1556953cd..6f478d44176 100644 --- a/src/licensedcode/data/rules/gpl-1.0_35.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_35.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + The GNU General Public License, Version 1, February 1989 This software is Copyright diff --git a/src/licensedcode/data/rules/gpl-1.0_35.yml b/src/licensedcode/data/rules/gpl-1.0_35.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_36.RULE b/src/licensedcode/data/rules/gpl-1.0_36.RULE index 1ed565f4117..106c41b3e19 100644 --- a/src/licensedcode/data/rules/gpl-1.0_36.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_36.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + This software is Copyright This is free software, licensed under: diff --git a/src/licensedcode/data/rules/gpl-1.0_36.yml b/src/licensedcode/data/rules/gpl-1.0_36.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_37.RULE b/src/licensedcode/data/rules/gpl-1.0_37.RULE index a000976e482..c00dce928b9 100644 --- a/src/licensedcode/data/rules/gpl-1.0_37.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_37.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + This is free software, licensed under: - The GNU General Public License, Version 1, February 1989 - \ No newline at end of file + The GNU General Public License, Version 1, February 1989 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_37.yml b/src/licensedcode/data/rules/gpl-1.0_37.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_38.RULE b/src/licensedcode/data/rules/gpl-1.0_38.RULE index 837e00cc2b9..004005fc738 100644 --- a/src/licensedcode/data/rules/gpl-1.0_38.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_38.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_38.yml b/src/licensedcode/data/rules/gpl-1.0_38.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_39.RULE b/src/licensedcode/data/rules/gpl-1.0_39.RULE index da135765edf..f4767d7c867 100644 --- a/src/licensedcode/data/rules/gpl-1.0_39.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_39.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-1.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 diff --git a/src/licensedcode/data/rules/gpl-1.0_39.yml b/src/licensedcode/data/rules/gpl-1.0_39.yml deleted file mode 100644 index 8ea63f9ca79..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_39.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-1.0_4.RULE b/src/licensedcode/data/rules/gpl-1.0_4.RULE index 1846e541d54..00384212788 100644 --- a/src/licensedcode/data/rules/gpl-1.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +--- + http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_4.yml b/src/licensedcode/data/rules/gpl-1.0_4.yml deleted file mode 100644 index 82b8b226ada..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-1.0_40.RULE b/src/licensedcode/data/rules/gpl-1.0_40.RULE index d854befb2a9..5f140154870 100644 --- a/src/licensedcode/data/rules/gpl-1.0_40.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License, V1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_40.yml b/src/licensedcode/data/rules/gpl-1.0_40.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_41.RULE b/src/licensedcode/data/rules/gpl-1.0_41.RULE index e5441499972..65dce5cce7b 100644 --- a/src/licensedcode/data/rules/gpl-1.0_41.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License, V 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_41.yml b/src/licensedcode/data/rules/gpl-1.0_41.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_42.RULE b/src/licensedcode/data/rules/gpl-1.0_42.RULE index 8c8d5b01f43..3729cf61c84 100644 --- a/src/licensedcode/data/rules/gpl-1.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence, V1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_42.yml b/src/licensedcode/data/rules/gpl-1.0_42.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_43.RULE b/src/licensedcode/data/rules/gpl-1.0_43.RULE index d5e564ff326..137656079e4 100644 --- a/src/licensedcode/data/rules/gpl-1.0_43.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence, V 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_43.yml b/src/licensedcode/data/rules/gpl-1.0_43.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_44.RULE b/src/licensedcode/data/rules/gpl-1.0_44.RULE index 2b400302fc0..8b27c117d15 100644 --- a/src/licensedcode/data/rules/gpl-1.0_44.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_44.yml b/src/licensedcode/data/rules/gpl-1.0_44.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_45.RULE b/src/licensedcode/data/rules/gpl-1.0_45.RULE index f6ae0f424ee..c052e5b8bab 100644 --- a/src/licensedcode/data/rules/gpl-1.0_45.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_45.yml b/src/licensedcode/data/rules/gpl-1.0_45.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_46.RULE b/src/licensedcode/data/rules/gpl-1.0_46.RULE index 9b482d29f8a..f4291454211 100644 --- a/src/licensedcode/data/rules/gpl-1.0_46.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_46.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_46.yml b/src/licensedcode/data/rules/gpl-1.0_46.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_47.RULE b/src/licensedcode/data/rules/gpl-1.0_47.RULE index fa7bbbac494..044a3fd711b 100644 --- a/src/licensedcode/data/rules/gpl-1.0_47.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_47.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GPL v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_47.yml b/src/licensedcode/data/rules/gpl-1.0_47.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_48.RULE b/src/licensedcode/data/rules/gpl-1.0_48.RULE index e1e0cb39af6..959cdca4277 100644 --- a/src/licensedcode/data/rules/gpl-1.0_48.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + under GNU GPL v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_48.yml b/src/licensedcode/data/rules/gpl-1.0_48.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_49.RULE b/src/licensedcode/data/rules/gpl-1.0_49.RULE index 1809ef0e8ec..2ca4d876fe3 100644 --- a/src/licensedcode/data/rules/gpl-1.0_49.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_49.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + under the terms GNU GPL v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_49.yml b/src/licensedcode/data/rules/gpl-1.0_49.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_5.RULE b/src/licensedcode/data/rules/gpl-1.0_5.RULE index d5d06fd22bc..026e4a3fc52 100644 --- a/src/licensedcode/data/rules/gpl-1.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 1. @@ -8,4 +13,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. For a full copy of the GNU General Public License, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_5.yml b/src/licensedcode/data/rules/gpl-1.0_5.yml deleted file mode 100644 index 7d9a5c08db7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0_50.RULE b/src/licensedcode/data/rules/gpl-1.0_50.RULE index 468b515525d..154c6f8b2aa 100644 --- a/src/licensedcode/data/rules/gpl-1.0_50.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_50.yml b/src/licensedcode/data/rules/gpl-1.0_50.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_51.RULE b/src/licensedcode/data/rules/gpl-1.0_51.RULE index ab4b86ab650..880696aa3d7 100644 --- a/src/licensedcode/data/rules/gpl-1.0_51.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_51.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + THE GPL 1.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_51.yml b/src/licensedcode/data/rules/gpl-1.0_51.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_52.RULE b/src/licensedcode/data/rules/gpl-1.0_52.RULE index a564dcb73be..abd48e56de7 100644 --- a/src/licensedcode/data/rules/gpl-1.0_52.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_52.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE GPL 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_52.yml b/src/licensedcode/data/rules/gpl-1.0_52.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_53.RULE b/src/licensedcode/data/rules/gpl-1.0_53.RULE index 9c409f9d54a..5f5ab9c68f2 100644 --- a/src/licensedcode/data/rules/gpl-1.0_53.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE GPL 1.0 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_53.yml b/src/licensedcode/data/rules/gpl-1.0_53.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_54.RULE b/src/licensedcode/data/rules/gpl-1.0_54.RULE index 114f5393307..045debbcc96 100644 --- a/src/licensedcode/data/rules/gpl-1.0_54.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + GNU General Public License, V1.0 is applicable to the following component(s) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_54.yml b/src/licensedcode/data/rules/gpl-1.0_54.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_55.RULE b/src/licensedcode/data/rules/gpl-1.0_55.RULE index ebb21902132..0dab4866453 100644 --- a/src/licensedcode/data/rules/gpl-1.0_55.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 1.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 1.0 LICENSE. ] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_55.yml b/src/licensedcode/data/rules/gpl-1.0_55.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_56.RULE b/src/licensedcode/data/rules/gpl-1.0_56.RULE index 8b43f1d12ec..a6afb12a1c8 100644 --- a/src/licensedcode/data/rules/gpl-1.0_56.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 1.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 1.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_56.yml b/src/licensedcode/data/rules/gpl-1.0_56.yml deleted file mode 100644 index b7ff4242f96..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_57.RULE b/src/licensedcode/data/rules/gpl-1.0_57.RULE index c410cbdb1a0..223cdbb87e7 100644 --- a/src/licensedcode/data/rules/gpl-1.0_57.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_57.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-1.0.txt +--- + https://www.gnu.org/licenses/gpl-1.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_57.yml b/src/licensedcode/data/rules/gpl-1.0_57.yml deleted file mode 100644 index 8b26ef36eac..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-1.0.txt diff --git a/src/licensedcode/data/rules/gpl-1.0_58.RULE b/src/licensedcode/data/rules/gpl-1.0_58.RULE index 5c139d099a2..c3574ca92cd 100644 --- a/src/licensedcode/data/rules/gpl-1.0_58.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GPL-1.0 GNU General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_58.yml b/src/licensedcode/data/rules/gpl-1.0_58.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_59.RULE b/src/licensedcode/data/rules/gpl-1.0_59.RULE index f71021cb160..4ca6177eea9 100644 --- a/src/licensedcode/data/rules/gpl-1.0_59.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_59.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GPL-1.0-only GNU General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_59.yml b/src/licensedcode/data/rules/gpl-1.0_59.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_6.RULE b/src/licensedcode/data/rules/gpl-1.0_6.RULE index 4cfeb7d6521..f7326aa1ba1 100644 --- a/src/licensedcode/data/rules/gpl-1.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -10,4 +15,4 @@ 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. + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_6.yml b/src/licensedcode/data/rules/gpl-1.0_6.yml deleted file mode 100644 index 7d9a5c08db7..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0_60.RULE b/src/licensedcode/data/rules/gpl-1.0_60.RULE index 108e9339aad..710c4cbc68a 100644 --- a/src/licensedcode/data/rules/gpl-1.0_60.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_60.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v1.0 only GPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_60.yml b/src/licensedcode/data/rules/gpl-1.0_60.yml deleted file mode 100644 index d7a8fbc5e14..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_60.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-1.0_61.RULE b/src/licensedcode/data/rules/gpl-1.0_61.RULE index 2753e89de1b..48192e8ef49 100644 --- a/src/licensedcode/data/rules/gpl-1.0_61.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_61.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : GPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_61.yml b/src/licensedcode/data/rules/gpl-1.0_61.yml deleted file mode 100644 index 25e8f215842..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_61.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-1.0_62.RULE b/src/licensedcode/data/rules/gpl-1.0_62.RULE index 0c7612b5f8f..beb590dfa10 100644 --- a/src/licensedcode/data/rules/gpl-1.0_62.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_62.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_62.yml b/src/licensedcode/data/rules/gpl-1.0_62.yml deleted file mode 100644 index d7a8fbc5e14..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_62.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-1.0_63.RULE b/src/licensedcode/data/rules/gpl-1.0_63.RULE index 62a7cdfd35f..dec56d0ad35 100644 --- a/src/licensedcode/data/rules/gpl-1.0_63.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_63.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_63.yml b/src/licensedcode/data/rules/gpl-1.0_63.yml deleted file mode 100644 index d7a8fbc5e14..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_63.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-1.0_64.RULE b/src/licensedcode/data/rules/gpl-1.0_64.RULE index 4e8f007bda9..99896366274 100644 --- a/src/licensedcode/data/rules/gpl-1.0_64.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_64.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU General Public License v1.0 only GPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_64.yml b/src/licensedcode/data/rules/gpl-1.0_64.yml deleted file mode 100644 index d627f0a1199..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_64.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-1.0_65.RULE b/src/licensedcode/data/rules/gpl-1.0_65.RULE index 7c614dcd017..3981bf24e5e 100644 --- a/src/licensedcode/data/rules/gpl-1.0_65.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_65.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_65.yml b/src/licensedcode/data/rules/gpl-1.0_65.yml deleted file mode 100644 index d54e2cc3a50..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_65.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-1.0_66.RULE b/src/licensedcode/data/rules/gpl-1.0_66.RULE index 6e6a89d3439..b37596cf03c 100644 --- a/src/licensedcode/data/rules/gpl-1.0_66.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_66.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU General Public License v1.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_66.yml b/src/licensedcode/data/rules/gpl-1.0_66.yml deleted file mode 100644 index d54e2cc3a50..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_66.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-1.0_67.RULE b/src/licensedcode/data/rules/gpl-1.0_67.RULE index e2e5e76a55e..9cc79881ad6 100644 --- a/src/licensedcode/data/rules/gpl-1.0_67.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_67.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_67.yml b/src/licensedcode/data/rules/gpl-1.0_67.yml deleted file mode 100644 index d54e2cc3a50..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_67.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-1.0_68.RULE b/src/licensedcode/data/rules/gpl-1.0_68.RULE index f144dda5a78..d250bf48bcb 100644 --- a/src/licensedcode/data/rules/gpl-1.0_68.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_68.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['GPLV1', 'GPL-1.0-only'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_68.yml b/src/licensedcode/data/rules/gpl-1.0_68.yml deleted file mode 100644 index ce24d8dbeeb..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_69.RULE b/src/licensedcode/data/rules/gpl-1.0_69.RULE index 0c2a40dbb89..7371aac593c 100644 --- a/src/licensedcode/data/rules/gpl-1.0_69.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_69.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/GNU_General_Public_License#Version_1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_69.yml b/src/licensedcode/data/rules/gpl-1.0_69.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_7.RULE b/src/licensedcode/data/rules/gpl-1.0_7.RULE index 43520d22b0b..56134f20594 100644 --- a/src/licensedcode/data/rules/gpl-1.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + GPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_7.yml b/src/licensedcode/data/rules/gpl-1.0_7.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_70.RULE b/src/licensedcode/data/rules/gpl-1.0_70.RULE index 58824405767..b27e1b8224b 100644 --- a/src/licensedcode/data/rules/gpl-1.0_70.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_70.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GPL-1.0-only +--- + https://licenses.nuget.org/GPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_70.yml b/src/licensedcode/data/rules/gpl-1.0_70.yml deleted file mode 100644 index 3d30b5735c9..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GPL-1.0-only diff --git a/src/licensedcode/data/rules/gpl-1.0_71.RULE b/src/licensedcode/data/rules/gpl-1.0_71.RULE index 2126b303676..b3c5cfd9e2c 100644 --- a/src/licensedcode/data/rules/gpl-1.0_71.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_71.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_71.yml b/src/licensedcode/data/rules/gpl-1.0_71.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_72.RULE b/src/licensedcode/data/rules/gpl-1.0_72.RULE index a266984e141..5c0a6f463eb 100644 --- a/src/licensedcode/data/rules/gpl-1.0_72.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_72.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-1.0 +--- + {{GPL-1.0}} https://spdx.org/licenses/GPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_72.yml b/src/licensedcode/data/rules/gpl-1.0_72.yml deleted file mode 100644 index c9c62077c2c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-1.0 diff --git a/src/licensedcode/data/rules/gpl-1.0_73.RULE b/src/licensedcode/data/rules/gpl-1.0_73.RULE index e195580fe18..5fb03fd9e2d 100644 --- a/src/licensedcode/data/rules/gpl-1.0_73.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_73.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-1.0-only +--- + {{GPL-1.0-only}} https://spdx.org/licenses/GPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_73.yml b/src/licensedcode/data/rules/gpl-1.0_73.yml deleted file mode 100644 index 68e16fa24b1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-1.0-only diff --git a/src/licensedcode/data/rules/gpl-1.0_74.RULE b/src/licensedcode/data/rules/gpl-1.0_74.RULE index 42118025e7d..2959ab223b0 100644 --- a/src/licensedcode/data/rules/gpl-1.0_74.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_74.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-1.0-only +--- + LICENSE {{GPL-1.0-only}} https://spdx.org/licenses/GPL-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_74.yml b/src/licensedcode/data/rules/gpl-1.0_74.yml deleted file mode 100644 index 68e16fa24b1..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-1.0-only diff --git a/src/licensedcode/data/rules/gpl-1.0_75.RULE b/src/licensedcode/data/rules/gpl-1.0_75.RULE index 83585b67a25..45fb57b12cc 100644 --- a/src/licensedcode/data/rules/gpl-1.0_75.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_75.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-1.0 +--- + LICENSE {{GPL-1.0}} https://spdx.org/licenses/GPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_75.yml b/src/licensedcode/data/rules/gpl-1.0_75.yml deleted file mode 100644 index c9c62077c2c..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-1.0 diff --git a/src/licensedcode/data/rules/gpl-1.0_8.RULE b/src/licensedcode/data/rules/gpl-1.0_8.RULE index a2b73e0749d..e7382582859 100644 --- a/src/licensedcode/data/rules/gpl-1.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +relevance: 100 +--- + License: GPL-1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_8.yml b/src/licensedcode/data/rules/gpl-1.0_8.yml deleted file mode 100644 index 2348c02df13..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_9.RULE b/src/licensedcode/data/rules/gpl-1.0_9.RULE index 2a190d84829..cccf5e58361 100644 --- a/src/licensedcode/data/rules/gpl-1.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_9.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 diff --git a/src/licensedcode/data/rules/gpl-1.0_9.yml b/src/licensedcode/data/rules/gpl-1.0_9.yml deleted file mode 100644 index afca2a0c017..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.RULE b/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.RULE index 0cade744415..b9bd1c96caa 100644 --- a/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.RULE @@ -1 +1,8 @@ -{{gpl 10}} +--- +license_expression: gpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 60 +--- + +{{gpl 10}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.yml b/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.yml deleted file mode 100644 index 8dc09582027..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 60 diff --git a/src/licensedcode/data/rules/gpl-1.0_only_terse_1.RULE b/src/licensedcode/data/rules/gpl-1.0_only_terse_1.RULE index 69341a29567..a20252946a8 100644 --- a/src/licensedcode/data/rules/gpl-1.0_only_terse_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_only_terse_1.RULE @@ -1 +1,7 @@ -Licence - This is under General Public Licence. Version - 1.0.0 +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +--- + +Licence - This is under General Public Licence. Version - 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_only_terse_1.yml b/src/licensedcode/data/rules/gpl-1.0_only_terse_1.yml deleted file mode 100644 index 53738e2144a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_only_terse_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0.RULE b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0.RULE index 5766cf6c14d..44a062c16aa 100644 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0.RULE @@ -1,4 +1,8 @@ +--- +license_expression: gpl-1.0 OR 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 1 or 2 as published by the Free Software Foundation. - + version 1 or 2 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0.yml b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0.yml deleted file mode 100644 index 12a6ef4a1d9..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_1.RULE index ca405628b92..acd4c94e0d2 100644 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +notes: See http://quicklz.com/ +--- + // can be used for free under the GPL 1, 2 or 3 license (where anything // released into public must be open source) or under a commercial license if such // has been acquired . The commercial license diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_1.yml deleted file mode 100644 index f16a45ff813..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -notes: See http://quicklz.com/ diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_2.RULE index 988e743e1da..824b305a528 100644 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +notes: See http://quicklz.com/ +--- + // can be used for free under the GPL 1, 2 or 3 license (where anything // released into public must be open source) or under a commercial license if such // has been acquired . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_2.yml deleted file mode 100644 index f16a45ff813..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -notes: See http://quicklz.com/ diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_3.RULE b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_3.RULE index 80c57400768..7b116e479f1 100644 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_3.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +notes: See http://quicklz.com/ +--- + it can be used under a commercial license if such has been acquired or under GPL 1, 2 or 3 where anything released into public must be open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_3.yml b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_3.yml deleted file mode 100644 index f16a45ff813..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -notes: See http://quicklz.com/ diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_4.RULE b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_4.RULE index af0f0b10bd8..8b167860346 100644 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +notes: See http://quicklz.com/ +ignorable_urls: + - http://www.quicklz.com/order.html +--- + // QuickLZ can be used for free under the GPL 1, 2 or 3 license (where anything // released into public must be open source) or under a commercial license if such // has been acquired (see http://www.quicklz.com/order.html). The commercial license diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_4.yml b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_4.yml deleted file mode 100644 index b886ec0f17a..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -notes: See http://quicklz.com/ -ignorable_urls: - - http://www.quicklz.com/order.html diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_5.RULE b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_5.RULE index 17686bfad14..f5fefeff0fe 100644 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_5.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +notes: See http://quicklz.com/ +ignorable_urls: + - https://www.quicklz.com/order.html +--- + // QuickLZ can be used for free under the GPL 1, 2 or 3 license (where anything // released into public must be open source) or under a commercial license if such // has been acquired (see https://www.quicklz.com/order.html). The commercial license diff --git a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_5.yml b/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_5.yml deleted file mode 100644 index a7dd426fc81..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_or_gpl-2.0_or_gpl-3.0_or_commercial-license_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 OR gpl-2.0 OR gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -notes: See http://quicklz.com/ -ignorable_urls: - - https://www.quicklz.com/order.html diff --git a/src/licensedcode/data/rules/gpl-1.0_url_1.RULE b/src/licensedcode/data/rules/gpl-1.0_url_1.RULE index ceb26f5828d..993518c3f63 100644 --- a/src/licensedcode/data/rules/gpl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-1.0-only +--- + https://spdx.org/licenses/gpl-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_url_1.yml b/src/licensedcode/data/rules/gpl-1.0_url_1.yml deleted file mode 100644 index aa75fdce665..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-1.0-only diff --git a/src/licensedcode/data/rules/gpl-1.0_url_2.RULE b/src/licensedcode/data/rules/gpl-1.0_url_2.RULE index 9606995c3d0..5126a8716e6 100644 --- a/src/licensedcode/data/rules/gpl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-1.0-only.html +--- + https://spdx.org/licenses/gpl-1.0-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_url_2.yml b/src/licensedcode/data/rules/gpl-1.0_url_2.yml deleted file mode 100644 index f4cde5ee9bf..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-1.0-only.html diff --git a/src/licensedcode/data/rules/gpl-1.0_url_glc_129.RULE b/src/licensedcode/data/rules/gpl-1.0_url_glc_129.RULE index e03b4662a8e..e0551fc3d92 100644 --- a/src/licensedcode/data/rules/gpl-1.0_url_glc_129.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_url_glc_129.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_url_glc_129.yml b/src/licensedcode/data/rules/gpl-1.0_url_glc_129.yml deleted file mode 100644 index 38756746ffc..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_url_glc_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-1.0_with_bash-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-1.0_with_bash-exception-gpl_1.RULE index 9d69ed87348..ec3330df56d 100644 --- a/src/licensedcode/data/rules/gpl-1.0_with_bash-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_with_bash-exception-gpl_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-1.0 WITH bash-exception-gpl +is_license_text: yes +relevance: 100 +notes: See in https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?id=726f63884db0132f01745f1fb4465e6621088ccf +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 diff --git a/src/licensedcode/data/rules/gpl-1.0_with_bash-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-1.0_with_bash-exception-gpl_1.yml deleted file mode 100644 index 278d28c1a8d..00000000000 --- a/src/licensedcode/data/rules/gpl-1.0_with_bash-exception-gpl_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-1.0 WITH bash-exception-gpl -is_license_text: yes -relevance: 100 -notes: See in https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?id=726f63884db0132f01745f1fb4465e6621088ccf -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0-clisp.RULE b/src/licensedcode/data/rules/gpl-2.0-clisp.RULE index fb89cb6dc33..2c6b889f770 100644 --- a/src/licensedcode/data/rules/gpl-2.0-clisp.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-clisp.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH clisp-exception-2.0 +is_license_notice: yes +--- + Summary: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-clisp.yml b/src/licensedcode/data/rules/gpl-2.0-clisp.yml deleted file mode 100644 index 4573d65423d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-clisp.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH clisp-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-clisp_1.RULE b/src/licensedcode/data/rules/gpl-2.0-clisp_1.RULE index 1d741bd74c9..3695ca95d77 100644 --- a/src/licensedcode/data/rules/gpl-2.0-clisp_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-clisp_1.RULE @@ -1,3 +1,8 @@ +--- +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; see file GNU-GPL. @@ -9,4 +14,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + 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-clisp_1.yml b/src/licensedcode/data/rules/gpl-2.0-clisp_1.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-clisp_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-cygwin_1.RULE b/src/licensedcode/data/rules/gpl-2.0-cygwin_1.RULE index 9b35e2b31aa..cb4335a2e3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-cygwin_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-cygwin_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH cygwin-exception-2.0 OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/docs/osd/ + - http://www.redhat.com/software/cygwin +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) version 2, as published by the Free Software Foundation. @@ -33,4 +41,4 @@ provide their application in open source code form. For more information, please see: http://www.redhat.com/software/cygwin/, or call tel +1-866-2REDHAT ext. 45300 (toll-free in the US). -Outside the US call your regional Red Hat office, see +Outside the US call your regional Red Hat office, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-cygwin_1.yml b/src/licensedcode/data/rules/gpl-2.0-cygwin_1.yml deleted file mode 100644 index 4c8db4f2a39..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-cygwin_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH cygwin-exception-2.0 OR commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/docs/osd/ - - http://www.redhat.com/software/cygwin diff --git a/src/licensedcode/data/rules/gpl-2.0-font.RULE b/src/licensedcode/data/rules/gpl-2.0-font.RULE index 91c2bac18d0..3f42dc4d00c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-font.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-font.RULE @@ -1 +1,9 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-faq.html#FontException +--- + http://www.gnu.org/licenses/gpl-faq.html#FontException \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-font.SPDX.RULE b/src/licensedcode/data/rules/gpl-2.0-font.SPDX.RULE index 799bde930e5..869119b2bb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-font.SPDX.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-font.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + insert GPL v2 text here Font Exception diff --git a/src/licensedcode/data/rules/gpl-2.0-font.SPDX.yml b/src/licensedcode/data/rules/gpl-2.0-font.SPDX.yml deleted file mode 100644 index a9294ceabdd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-font.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/gpl-2.0-font.yml b/src/licensedcode/data/rules/gpl-2.0-font.yml deleted file mode 100644 index 93a21350a2b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-font.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-faq.html#FontException diff --git a/src/licensedcode/data/rules/gpl-2.0-freertos.RULE b/src/licensedcode/data/rules/gpl-2.0-freertos.RULE index 6b860cc865e..83bc8b2c3e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-freertos.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-freertos.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH freertos-exception-2.0 +is_license_notice: yes +--- + The FreeRTOS source code is licensed by a modified GNU General Public License - the modification taking the form of an exception. The exception permits the source code of applications that use FreeRTOS solely through the API published on this website to remain closed source, thus permitting the use of FreeRTOS in commercial applications without necessitating that the whole application be open sourced. The exception can only be used if you wish to combine FreeRTOS with a proprietary product and you comply with the terms stated in the exception itself. @@ -31,4 +36,4 @@ As a special exception, the copyright holder of FreeRTOS gives you permission to Clause 2 FreeRTOS may not be used for any competitive or comparative purpose, including the publication of any form of run time or compile time metric, without the express permission of Real Time Engineers Ltd. (this is the -norm within the industry and is intended to ensure information accuracy). +norm within the industry and is intended to ensure information accuracy). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-freertos.yml b/src/licensedcode/data/rules/gpl-2.0-freertos.yml deleted file mode 100644 index cfedee87e07..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-freertos.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH freertos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-freertos_2.RULE b/src/licensedcode/data/rules/gpl-2.0-freertos_2.RULE index be10b685d46..b15cd682fe9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-freertos_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-freertos_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH freertos-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.freertos.org/ +--- + The FreeRTOS.org source code is licensed by the modified GNU General Public License (GPL) text provided below. The FreeRTOS download also includes demo application source code, some of which is provided by third parties @@ -36,4 +43,4 @@ copyright owner and are NOT COVERED BY THE GPL. Tern Inc. Errors and omissions should be reported to Richard Barry, contact details for -whom can be obtained from http://www.FreeRTOS.org. +whom can be obtained from http://www.FreeRTOS.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-freertos_2.yml b/src/licensedcode/data/rules/gpl-2.0-freertos_2.yml deleted file mode 100644 index c65fab455a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-freertos_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH freertos-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.freertos.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-freertos_3.RULE b/src/licensedcode/data/rules/gpl-2.0-freertos_3.RULE index 0e07f5965c4..e9a5ccb2fe4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-freertos_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-freertos_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH freertos-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.freertos.org/a00114.html +--- + FreeRTOS 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 >>>> AND MODIFIED BY <<<< the FreeRTOS exception. diff --git a/src/licensedcode/data/rules/gpl-2.0-freertos_3.yml b/src/licensedcode/data/rules/gpl-2.0-freertos_3.yml deleted file mode 100644 index 2e2327087ae..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-freertos_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH freertos-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.freertos.org/a00114.html diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception.RULE b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception.RULE index fa973591525..85427519879 100644 --- a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gcc-compiler-exception-2.0 +is_license_text: yes +--- + As a special exception, if you link this file with files compiled with a GNU compiler to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception.yml b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception.yml deleted file mode 100644 index e771999e2d1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gcc-compiler-exception-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_1.RULE index 8a61fd7ef92..569f89fc023 100644 --- a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-compiler-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GCC 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_1.yml deleted file mode 100644 index 2a337159249..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-compiler-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_2.RULE index 4b57624ac0e..b6e7dfb8f76 100644 --- a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-compiler-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GCC 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_2.yml deleted file mode 100644 index 1e3011cafc0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-gcc-compiler-exception_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-compiler-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc.SPDX.RULE b/src/licensedcode/data/rules/gpl-2.0-gcc.SPDX.RULE index 57f59a5d2ed..52bfe9c9acc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-gcc.SPDX.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-gcc.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + insert GPL v2 text here GCC Linking Exception diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc.SPDX.yml b/src/licensedcode/data/rules/gpl-2.0-gcc.SPDX.yml deleted file mode 100644 index de7a57d96c2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-gcc.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc_1.RULE b/src/licensedcode/data/rules/gpl-2.0-gcc_1.RULE index 01109dd7205..9349a0600a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-gcc_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-gcc_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: A GPL with GCC exception, Apple variant. from http://www.opensource.apple.com/source/gcc_os/gcc_os-1671/libiberty/dyn-string.c +--- + /* GNU CC 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc_1.yml b/src/licensedcode/data/rules/gpl-2.0-gcc_1.yml deleted file mode 100644 index b720cfedb71..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-gcc_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -notes: A GPL with GCC exception, Apple variant. from http://www.opensource.apple.com/source/gcc_os/gcc_os-1671/libiberty/dyn-string.c diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc_2.RULE b/src/licensedcode/data/rules/gpl-2.0-gcc_2.RULE index 2ff525ce106..9b5a4540af2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-gcc_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-gcc_2.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +--- + This file 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. In addition to the permissions in the GNU General Public License, the - Free Software Foundation gives you unlimited permission to link the compiled version of this file into combinations with other programs, and to distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into a combined executable.) + Free Software Foundation gives you unlimited permission to link the compiled version of this file into combinations with other programs, and to distribute those combinations without any restriction coming from the use of this file. (The General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into a combined executable.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-gcc_2.yml b/src/licensedcode/data/rules/gpl-2.0-gcc_2.yml deleted file mode 100644 index dc5a4312676..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-gcc_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-glibc_3.RULE b/src/licensedcode/data/rules/gpl-2.0-glibc_3.RULE index 0017cc4c266..e5ee12d014e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-glibc_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-glibc_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mif-exception +is_license_notice: yes +--- + (This is an exception to the GPL for the GLIBC library As a special exception, you may use this file as part of a free software diff --git a/src/licensedcode/data/rules/gpl-2.0-glibc_3.yml b/src/licensedcode/data/rules/gpl-2.0-glibc_3.yml deleted file mode 100644 index 3d7df2b93b9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-glibc_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mif-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-glibc_4.RULE b/src/licensedcode/data/rules/gpl-2.0-glibc_4.RULE index 31870652bb2..7c4c5731b3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-glibc_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-glibc_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mif-exception +is_license_reference: yes +--- + As a special exception, if other files instantiate templates or use macros or inline functions from these files, or you compile these files and link them with other works to produce a work based on these @@ -7,4 +12,4 @@ these files must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-glibc_4.yml b/src/licensedcode/data/rules/gpl-2.0-glibc_4.yml deleted file mode 100644 index 41a9a1edb67..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-glibc_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-guile.RULE b/src/licensedcode/data/rules/gpl-2.0-guile.RULE index 0c60a568af2..cfea2ca68ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0-guile.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-guile.RULE @@ -1,3 +1,8 @@ +--- +license_expression: guile-exception-2.0 +is_license_notice: yes +--- + As a special exception, the Free Software Foundation gives permission for additional uses of the text contained in its release of GUILE. @@ -7,5 +12,4 @@ This exception does not however invalidate any other reasons why the executable This exception applies only to the code released by the Free Software Foundation under the name GUILE. If you copy code from other Free Software Foundation releases into a copy of GUILE, as the General Public License permits, the exception does not apply to the code that you add in this way. To avoid misleading anyone as to the status of such modified files, you must delete this exception notice from them. -If you write modifications of your own for GUILE, it is your choice whether to permit this exception to apply to your modifications. If you do not wish that, delete this exception notice. -
 \ No newline at end of file +If you write modifications of your own for GUILE, it is your choice whether to permit this exception to apply to your modifications. If you do not wish that, delete this exception notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-guile.yml b/src/licensedcode/data/rules/gpl-2.0-guile.yml deleted file mode 100644 index df426327b93..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-guile.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: guile-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-guile2.RULE b/src/licensedcode/data/rules/gpl-2.0-guile2.RULE index e3afc925663..fc137d159c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-guile2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-guile2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: guile-exception-2.0 +is_license_notice: yes +notes: this essentially the same as the guile exception with a reference to another project +--- + As a special exception, the Project gives permission for additional uses of the text contained in its release of . @@ -10,4 +16,4 @@ This exception does not however invalidate any other reasons why the executable This exception applies only to the code released by the Project under the name . If you copy code from other Project or Free Software Foundation releases into a copy of , as the General Public License permits, the exception does not apply to the code that you add in this way. To avoid misleading anyone as to the status of such modified files, you must delete this exception notice from them. -If you write modifications of your own for , it is your choice whether to permit this exception to apply to your modifications. If you do not wish that, delete this exception notice. \ No newline at end of file +If you write modifications of your own for , it is your choice whether to permit this exception to apply to your modifications. If you do not wish that, delete this exception notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-guile2.yml b/src/licensedcode/data/rules/gpl-2.0-guile2.yml deleted file mode 100644 index 2f9f15258d0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-guile2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: guile-exception-2.0 -is_license_notice: yes -notes: this essentially the same as the guile exception with a reference to another project diff --git a/src/licensedcode/data/rules/gpl-2.0-guile3.RULE b/src/licensedcode/data/rules/gpl-2.0-guile3.RULE index 6dfd4e769cb..6f60bd0d2f6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-guile3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-guile3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: guile-exception-2.0 +is_license_notice: yes +notes: this essentially the same as the guile exception with a reference to another project +--- + As a special exception, the Free Software Foundation gives permission for additional uses of the text contained in its release of . The exception is that, if you link the library with other files to produce an executable, this does not by itself cause the resulting executable to be covered by the GNU General Public License. Your use of that executable is in no way restricted on account of linking the library code into it. diff --git a/src/licensedcode/data/rules/gpl-2.0-guile3.yml b/src/licensedcode/data/rules/gpl-2.0-guile3.yml deleted file mode 100644 index 2f9f15258d0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-guile3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: guile-exception-2.0 -is_license_notice: yes -notes: this essentially the same as the guile exception with a reference to another project diff --git a/src/licensedcode/data/rules/gpl-2.0-javascript.RULE b/src/licensedcode/data/rules/gpl-2.0-javascript.RULE index f47a3589d91..0d0a69afc03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-javascript.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-javascript.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH javascript-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License 2.0 with Javascript exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-javascript.yml b/src/licensedcode/data/rules/gpl-2.0-javascript.yml deleted file mode 100644 index 672c98432b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-javascript.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH javascript-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-javascript_1.RULE b/src/licensedcode/data/rules/gpl-2.0-javascript_1.RULE index d291b40e963..7dbb440bbfa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-javascript_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-javascript_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH javascript-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + GPL-2.0-with-Javascript-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-javascript_1.yml b/src/licensedcode/data/rules/gpl-2.0-javascript_1.yml deleted file mode 100644 index dc0d64e0023..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-javascript_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH javascript-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc.RULE index f45172c3cfc..107679ac4ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus WITH mysql-connector-odbc-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL-2.0-with-MySQL-Connector-ODBC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc.yml deleted file mode 100644 index f0e899dc9df..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH mysql-connector-odbc-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_1.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_1.RULE index 870d13b7171..c6417ae14e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH mysql-connector-odbc-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_1.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_1.yml deleted file mode 100644 index 3c7daa43a4b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH mysql-connector-odbc-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_2.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_2.RULE index 1305682501a..e2e4c6c7e6a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus WITH mysql-connector-odbc-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + GNU General Public License 2.0 with MySQL Connector ODBC exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_2.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_2.yml deleted file mode 100644 index 6fbe6437682..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-connector-odbc_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH mysql-connector-odbc-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-floss.RULE index 9b10dafa256..8b9078b8e2c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-floss.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/philosophy/free-sw.html + - http://www.opensource.org/docs/definition.php +--- + MySQL FLOSS License Exception The MySQL AB Exception for Free/Libre and Open Source Software-only Applications @@ -110,5 +118,4 @@ which are covered by the FLOSS License Exception. Please note that this appendix is provided merely as an additional service to specific FLOSS projects wishing to simplify licensing information for their users. Compliance with one of the licenses noted under -the "FLOSS license list" section remains a prerequisite. - +the "FLOSS license list" section remains a prerequisite. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-floss.yml deleted file mode 100644 index 936b76b13b9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/philosophy/free-sw.html - - http://www.opensource.org/docs/definition.php diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_1.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_1.RULE index 354f1149c04..d39c55b767f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_1.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html + - http://www.mysql.com/about/legal/licensing/foss-exception.html +--- + The MySQL Connector/C++ is licensed under the terms of the GPLv2 , like most MySQL Connectors. There are special exceptions to the terms and conditions of the GPLv2 as it is applied to this software, see the FLOSS License Exception -. - +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_1.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_1.yml deleted file mode 100644 index 74c378ea3d6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html - - http://www.mysql.com/about/legal/licensing/foss-exception.html diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_10.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_10.RULE index 16fdb7bee3a..2ed33937cb0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_10.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH mysql-floss-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/philosophy/free-sw.html + - http://www.opensource.org/docs/definition.php +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_10.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_10.yml deleted file mode 100644 index d7e77b3f75a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH mysql-floss-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/philosophy/free-sw.html - - http://www.opensource.org/docs/definition.php diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_2.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_2.RULE index 406fcb7ee9b..917a15f2756 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + GNU General Public License 2.0 with MySQL FLOSS exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_2.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_2.yml deleted file mode 100644 index 86c0a40caa9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_3.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_3.RULE index 436f5b4a07a..677c3008d6f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + GPL-2.0-with-MySQL-FLOSS-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_3.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_3.yml deleted file mode 100644 index 86c0a40caa9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_4.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_4.RULE index c3aa742e187..69eda56f424 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/philosophy/free-sw.html + - http://www.opensource.org/docs/definition.php +--- + MySQL FLOSS License Exception The MySQL AB Exception for Free/Libre and Open Source diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_4.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_4.yml deleted file mode 100644 index 936b76b13b9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/philosophy/free-sw.html - - http://www.opensource.org/docs/definition.php diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_5.RULE b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_5.RULE index 416045ee59c..c9ade821b93 100644 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html + - http://www.mysql.com/about/legal/licensing/foss-exception.html +--- + The MySQL Connector/C is licensed under the terms of the GPLv2 , like most MySQL Connectors. There are special exceptions to the terms and diff --git a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_5.yml b/src/licensedcode/data/rules/gpl-2.0-mysql-floss_5.yml deleted file mode 100644 index 74c378ea3d6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-mysql-floss_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html - - http://www.mysql.com/about/legal/licensing/foss-exception.html diff --git a/src/licensedcode/data/rules/gpl-2.0-openssl.RULE b/src/licensedcode/data/rules/gpl-2.0-openssl.RULE index 49b67fa8266..9137370310f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-openssl.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-openssl.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-exception-gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://people.gnome.org/~markmc/openssl-and-the-gpl.html +--- + http://people.gnome.org/~markmc/openssl-and-the-gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-openssl.yml b/src/licensedcode/data/rules/gpl-2.0-openssl.yml deleted file mode 100644 index b56eaec9696..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-openssl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-exception-gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://people.gnome.org/~markmc/openssl-and-the-gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-openssl_2.RULE b/src/licensedcode/data/rules/gpl-2.0-openssl_2.RULE index a16b9139e4a..c2105180b43 100644 --- a/src/licensedcode/data/rules/gpl-2.0-openssl_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-openssl_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: openssl-exception-gpl-2.0 +is_license_notice: yes +ignorable_authors: + - the OpenSSL Project +ignorable_urls: + - http://people.gnome.org/~markmc/openssl-and-the-gpl.html + - http://www.openssl.org/ +--- + The OpenSSL License is not compatible with the GPL, since it contains the following two clauses: * 3. All advertising materials mentioning features or use of this diff --git a/src/licensedcode/data/rules/gpl-2.0-openssl_2.yml b/src/licensedcode/data/rules/gpl-2.0-openssl_2.yml deleted file mode 100644 index 8754ffc83c9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-openssl_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: openssl-exception-gpl-2.0 -is_license_notice: yes -ignorable_authors: - - the OpenSSL Project -ignorable_urls: - - http://people.gnome.org/~markmc/openssl-and-the-gpl.html - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-oracle-mysql-foss_1.RULE b/src/licensedcode/data/rules/gpl-2.0-oracle-mysql-foss_1.RULE index 58ed6450455..e205f4d0e56 100644 --- a/src/licensedcode/data/rules/gpl-2.0-oracle-mysql-foss_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-oracle-mysql-foss_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH oracle-mysql-foss-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.mysql.com/about/legal/licensing/foss-exception.html +--- + This library 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. diff --git a/src/licensedcode/data/rules/gpl-2.0-oracle-mysql-foss_1.yml b/src/licensedcode/data/rules/gpl-2.0-oracle-mysql-foss_1.yml deleted file mode 100644 index 9e172a5a50c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-oracle-mysql-foss_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH oracle-mysql-foss-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.mysql.com/about/legal/licensing/foss-exception.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus.RULE b/src/licensedcode/data/rules/gpl-2.0-plus.RULE index 59e58a3d3d9..4e4bca54401 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GPL2 OR LATER is free software; you can redistribute it and/or modify (it)? diff --git a/src/licensedcode/data/rules/gpl-2.0-plus.yml b/src/licensedcode/data/rules/gpl-2.0-plus.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_0.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_0.RULE index 5d20e6375f1..90b020a1a4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_0.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + # 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_0.yml b/src/licensedcode/data/rules/gpl-2.0-plus_0.yml deleted file mode 100644 index 848758e42b8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1.RULE index c00d77d23ea..c4a1b6c0fcc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + License: This package is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1.yml deleted file mode 100644 index 38251d33490..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_10.RULE index 0a91f0ae1d7..1c748451cbe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + GPL: The GPL version 2 (or any later version) applies to all files in the directories: @@ -7,4 +15,4 @@ the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - The GPL may be found in /usr/share/common-licenses/GPL on a Debian system. + The GPL may be found in /usr/share/common-licenses/GPL on a Debian system. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_10.yml deleted file mode 100644 index 0c6d16d30d0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_100.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_100.RULE index b0e58483c4f..b4f77ec55ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_100.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_100.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/gpl-license.html +--- + 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 @@ -6,5 +14,4 @@ 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. - +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_100.yml b/src/licensedcode/data/rules/gpl-2.0-plus_100.yml deleted file mode 100644 index 9d66bc1abbb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/gpl-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1000.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1000.RULE index 96ad8a439ef..0bae941c183 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1000.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1000.RULE @@ -1,5 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + Debian packaging (debian/*) is: Copyright: License: GNU General Public License, version 2 or later (GPL-2+) On Debian systems, the text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. + version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1000.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1000.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1000.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1001.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1001.RULE index b13d063d2fa..992f0a6e0c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1001.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1001.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+. 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1001.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1001.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1001.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1002.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1002.RULE index 44a6896b4de..037c296cd83 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1002.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1002.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ On Debian systems, the text of the GPL-2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1002.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1002.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1002.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1003.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1003.RULE index c81336e70a4..a55a4d68889 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1003.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1003.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1003.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1003.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1003.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1004.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1004.RULE index 4ca0627dad3..ffac7127d65 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1004.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1004.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1004.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1004.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1004.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1005.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1005.RULE index d9f69c29fa5..7b93b3886b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1005.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1005.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1005.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1005.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1005.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1006.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1006.RULE index 0375e8df7f6..b665ccd303e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1006.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1006.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1006.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1006.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1006.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1007.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1007.RULE index 36d447c2640..30ff3e4ef6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1007.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1007.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +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 2 of the License, or @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian systems, the text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1007.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1007.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1007.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1008.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1008.RULE index 0b4bbdf0241..dd0c9b21e22 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1008.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1008.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ | This program is free software; you can redistribute it and/or | modify it under the terms of the GNU General Public License @@ -15,4 +23,4 @@ License: GPL-2+ | | | On Debian systems, the text of the GNU General Public License - | version 2 can be found in “/usr/share/common-licenses/GPL-2”. + | version 2 can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1008.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1008.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1008.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1009.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1009.RULE index b8c86ad720a..a8954f7531b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1009.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1009.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1009.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1009.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1009.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_101.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_101.RULE index e27741f98b1..8bddb792283 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_101.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_101.RULE @@ -1,3 +1,8 @@ +--- +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 -Version 2 or later as published by the Free Software Foundation. +Version 2 or later as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_101.yml b/src/licensedcode/data/rules/gpl-2.0-plus_101.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_101.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1010.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1010.RULE index 1d7f3281f03..854b4a89841 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1010.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1010.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 2 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -14,4 +23,4 @@ On Debian systems, the text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1010.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1010.yml deleted file mode 100644 index fb74c010660..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1010.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 2 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1011.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1011.RULE index de0ce38c8a1..9904206ff41 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1011.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1011.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1011.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1011.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1011.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1012.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1012.RULE index 36503ea9243..8da4e6a2fa8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1012.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1012.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian systems, the text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1012.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1012.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1012.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1013.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1013.RULE index 0759d21aab6..20beb6027b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1013.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1013.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL v2 or later This package is free software; you can redistribute it and/or modify @@ -15,4 +21,4 @@ License: GPL v2 or later Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1013.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1013.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1013.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1014.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1014.RULE index a018eeaeeda..9b4940ac8a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1014.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1014.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + License: This package is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1014.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1014.yml deleted file mode 100644 index a6811fc7509..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1014.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1015.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1015.RULE index 758e281eb2d..b74aed72531 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1015.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1015.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: GPL 2 or later notice, with debian line +--- + This package 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 @@ -13,4 +21,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1015.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1015.yml deleted file mode 100644 index e1932bc77ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1015.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: GPL 2 or later notice, with debian line diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1016.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1016.RULE index 0943778d0c3..568ee3ae3c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1016.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1016.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1016.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1016.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1016.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1017.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1017.RULE index 0754bf78ab6..fd86382c820 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1017.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1017.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: This package is free software; you can redistribute it and/or modify @@ -15,4 +21,4 @@ License: Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1017.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1017.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1017.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1018.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1018.RULE index 007f2f797a0..532c6f714cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1018.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1018.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1018.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1018.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1018.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1019.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1019.RULE index 5d8ea259b91..378dead86ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1019.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1019.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 dated June, 1991, or (at diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1019.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1019.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1019.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_102.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_102.RULE index a249044cf13..cf00e42a217 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_102.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_102.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +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 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, see {\field{\*\{HYPERLINK "http://www.gnu.org/licenses/ http://www.gnu.org/licenses/ +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-2.0-plus_102.yml b/src/licensedcode/data/rules/gpl-2.0-plus_102.yml deleted file mode 100644 index 2d59369df35..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_102.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1020.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1020.RULE index f0301bd93d5..61c569e1f1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1020.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1020.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 2 or later Debian notice +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 2 of the License, or @@ -14,4 +23,4 @@ On Debian systems, the text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1020.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1020.yml deleted file mode 100644 index feb093aa87e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1020.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 2 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1021.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1021.RULE index 2c7ed035e32..af0c8ffe4a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1021.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1021.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + 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. On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1021.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1021.yml deleted file mode 100644 index 4f91576a8d7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1021.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1022.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1022.RULE index 01b3ff833aa..2f6a68f3ed8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1022.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1022.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ # This is free software; you may copy, modify and/or distribute this work # under the terms of the GNU General Public License, version 2 or later. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1022.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1022.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1022.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1023.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1023.RULE index 873a00ced69..064f1059201 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1023.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1023.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +notes: there are some ambiguity wrt the lesser vs. GPL +--- + 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; version 2 of the License, or @@ -13,4 +20,4 @@ Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/GPL-2'. + General Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1023.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1023.yml deleted file mode 100644 index 54c9838091e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1023.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 -notes: there are some ambiguity wrt the lesser vs. GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1024.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1024.RULE index 936eddd9b85..921cbf89a22 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1024.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1024.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Main License (everything except docs): This package is free software; you can redistribute it and/or modify @@ -18,4 +24,4 @@ On Debian systems, the text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. The Debian packaging is Copyright -. It is licensed under the same conditions. +. It is licensed under the same conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1024.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1024.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1024.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1025.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1025.RULE index a5ebcf88967..a527abc1d18 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1025.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1025.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1025.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1025.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1025.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1026.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1026.RULE index 460aba7f216..7ddd2950965 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1026.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1026.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1026.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1026.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1026.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1027.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1027.RULE index 10afc25774d..4b44df361ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1027.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1027.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + However, many parts of this library are licensed differently: This program is free software; you can redistribute it and/or @@ -6,4 +13,4 @@ published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1027.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1027.yml deleted file mode 100644 index e62e0beb5cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1027.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1028.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1028.RULE index fcebdb8c4a4..bd0f37064fe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1028.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1028.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ License: GPL-2+ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1028.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1028.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1028.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1029.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1029.RULE index 85f966f1deb..95beae069dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1029.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1029.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1029.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1029.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1029.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_103.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_103.RULE index 3607e3b93bb..6942ace7413 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_103.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_103.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + GPL'd. * SPDX-License-Identifier: GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_103.yml b/src/licensedcode/data/rules/gpl-2.0-plus_103.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1030.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1030.RULE index 89b906a561c..2493f8af7b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1030.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1030.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1030.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1030.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1030.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1031.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1031.RULE index c1a4dbdf890..a800661e887 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1031.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1031.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1031.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1031.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1031.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1032.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1032.RULE index 4be11f9b8c0..9a9c2bfed50 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1032.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1032.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1032.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1032.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1032.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1033.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1033.RULE index cf5f4b9e1b6..b13574aa845 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1033.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1033.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1033.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1033.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1033.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1034.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1034.RULE index 73328833594..7b1dbf0127f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1034.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1034.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1034.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1034.yml deleted file mode 100644 index 00b2e8b334d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1034.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1035.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1035.RULE index 80675c40e74..c63fe6dad6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1035.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1035.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + eCos 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 or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1035.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1035.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1035.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1036.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1036.RULE index 49a27d4d445..78115f7b0e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1036.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1036.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1036.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1036.yml deleted file mode 100644 index 0b2b8626a7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1036.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1037.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1037.RULE index e10662a1e43..d69472e1894 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1037.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1037.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This program may be distributed and/or modified under the terms of the GNU General Public License as published by the Free Software Foundation (the "GPL"); diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1037.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1037.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1037.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE index fd754476615..52efd5f51fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1038.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1038.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1038.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1039.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1039.RULE index b321ded674e..7556d56b61e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1039.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1039.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1039.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1039.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1039.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_104.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_104.RULE index 305f9e8b488..cfe91c113b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_104.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_104.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + is a free GPL - * SPDX-License-Identifier: GPL-2.0+ + * SPDX-License-Identifier: GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_104.yml b/src/licensedcode/data/rules/gpl-2.0-plus_104.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1040.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1040.RULE index 0d674d085d9..8aca414cc21 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1040.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1040.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1040.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1040.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1040.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1041.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1041.RULE index 3a3efb0fd57..ba48f23a596 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1041.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1041.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + "GPL version 2 or (at your option) later versions" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1041.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1041.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1041.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1042.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1042.RULE index 00961ef5c95..8d7d4c225e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1042.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1042.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1042.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1042.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1042.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1043.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1043.RULE index 8a53d740db8..080f44f9862 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1043.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1043.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + %%%LICENSE_START(GPLv2+_DOC_FULL) This is free documentation; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1043.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1043.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1043.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1044.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1044.RULE index fade9ce25f9..1fa78a1e7fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1044.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1044.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This is free documentation; 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1044.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1044.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1044.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1045.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1045.RULE index bebef5146ee..54a5e535228 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1045.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1045.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: See https://wordpress.org/about/gpl/ +ignorable_urls: + - https://wordpress.org/about/gpl/ +--- + @license https://wordpress.org/about/gpl/ GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1045.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1045.yml deleted file mode 100644 index 53325855496..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1045.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: See https://wordpress.org/about/gpl/ -ignorable_urls: - - https://wordpress.org/about/gpl/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1046.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1046.RULE index a2835176199..bcbe524a283 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1046.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1046.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: See https://wordpress.org/about/gpl/ +ignorable_urls: + - https://wordpress.org/about/gpl/ +--- + https://wordpress.org/about/gpl/ GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1046.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1046.yml deleted file mode 100644 index f4357d9820f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1046.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: See https://wordpress.org/about/gpl/ -ignorable_urls: - - https://wordpress.org/about/gpl/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1047.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1047.RULE index 119784f7619..a329e79645e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1047.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1047.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://wordpress.org/about/gpl/ +--- + https://wordpress.org/about/gpl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1047.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1047.yml deleted file mode 100644 index 2d3637edfe9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1047.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://wordpress.org/about/gpl/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1048.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1048.RULE index 37475399710..93aa1ee0f3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1048.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1048.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + wordpress.org/about/gpl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1048.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1048.yml deleted file mode 100644 index 40757711040..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1048.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1049.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1049.RULE index 87fc97cfd16..d504b8fdb95 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1049.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1049.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 99 +ignorable_urls: + - https://www.r-project.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 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1049.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1049.yml deleted file mode 100644 index 0b8e8ec4b9f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1049.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 99 -ignorable_urls: - - https://www.r-project.org/Licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_105.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_105.RULE index 1732d251837..a693aa84e00 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_105.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_105.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under GPLv2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_105.yml b/src/licensedcode/data/rules/gpl-2.0-plus_105.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1050.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1050.RULE index cd8c87c0c6a..5bc230344a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1050.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1050.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-2.0+ GNU General Public License v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1050.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1050.yml deleted file mode 100644 index e89a9023c7d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1050.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1051.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1051.RULE index 1ab76796f4c..4bd59af0347 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1051.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1051.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v2.0 or later GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1051.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1051.yml deleted file mode 100644 index e89a9023c7d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1051.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1052.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1052.RULE index 6ec4282a00f..fac543d37d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1052.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1052.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1052.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1052.yml deleted file mode 100644 index e89a9023c7d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1052.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1053.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1053.RULE index 45ceafe6907..377df9e0b09 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1053.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1053.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1053.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1053.yml deleted file mode 100644 index e89a9023c7d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1053.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1054.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1054.RULE index 9e6ed06d396..a6dc08ddc17 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1054.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1054.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-2.0-or-later GNU General Public License v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1054.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1054.yml deleted file mode 100644 index 39177f61cd5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1054.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1055.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1055.RULE index 40db71a44c3..f75fbb6191d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1055.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1055.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU General Public License v2.0 or later GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1055.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1055.yml deleted file mode 100644 index 39177f61cd5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1055.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1056.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1056.RULE index 35b78f34620..d03d69be9bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1056.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1056.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1056.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1056.yml deleted file mode 100644 index 47d57a22f19..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1056.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1057.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1057.RULE index 5d8cbb03e9a..e9db4870cfa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1057.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1057.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU General Public License v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1057.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1057.yml deleted file mode 100644 index 47d57a22f19..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1057.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1058.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1058.RULE index e9d68e26a76..17d82652885 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1058.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1058.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1058.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1058.yml deleted file mode 100644 index 47d57a22f19..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1058.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1059.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1059.RULE index 502180be866..da5dbf38d6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1059.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1059.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + These scripts are 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}}, or (at your option) {{any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1059.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1059.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1059.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_106.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_106.RULE index 46e9840f92a..681689b6106 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_106.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_106.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License 1: GPLv2 @@ -12,4 +19,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_106.yml b/src/licensedcode/data/rules/gpl-2.0-plus_106.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_106.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1060.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1060.RULE index 84f08d903fc..0d1e481e4af 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1060.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1060.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GPL-2.0-or-later +--- + https://licenses.nuget.org/GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1060.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1060.yml deleted file mode 100644 index 65b3de1d189..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1060.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GPL-2.0-or-later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1061.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1061.RULE index 2c163fd8f27..e61b186347a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1061.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1061.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1061.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1061.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1061.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1062.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1062.RULE index ffddecabd73..a1bf8879ce4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1062.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1062.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + licenses: GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1062.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1062.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1062.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1063.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1063.RULE index 3344ca16644..3e9fba8b29c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1063.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1063.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the {{GNU General Public License, version 2 or later}} (GPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1063.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1063.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1063.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1064.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1064.RULE index 121796d670d..d5800856036 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1064.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1064.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0-or-later +--- + {{GPL-2.0-or-later}} https://spdx.org/licenses/GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1064.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1064.yml deleted file mode 100644 index 1efebb93c7c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1064.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0-or-later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1065.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1065.RULE index 89fb42ce8ea..8fc98f2f8ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1065.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1065.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL +--- + LICENSE {{GPL 2.0}} https://spdx.org/licenses/GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1065.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1065.yml deleted file mode 100644 index 9339dcd54f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1065.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1066.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1066.RULE index e493674e3d5..c6910618070 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1066.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1066.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL +--- + {{GPL 2.0+}} https://spdx.org/licenses/GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1066.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1066.yml deleted file mode 100644 index 9339dcd54f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1066.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1067.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1067.RULE index 4dd6b0048e5..541bd507172 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1067.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1067.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL +--- + LICENSE {{GPL 2.0+}} https://spdx.org/licenses/GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1067.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1067.yml deleted file mode 100644 index 9339dcd54f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1067.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1068.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1068.RULE index 501a0b4a051..24780e24b54 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1068.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1068.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + it under the terms of the {{GNU General Public License version 2 }} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1068.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1068.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1068.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1069.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1069.RULE index 34673d2d9d0..15c6d36d943 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1069.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1069.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + # This script is distributed under the terms and conditions of the GNU General # Public License, Version 2 or later. See http://www.gnu.org/copyleft/gpl.html # for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1069.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1069.yml deleted file mode 100644 index 53636a743dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1069.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_107.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_107.RULE index 99ada0760b5..e2095b390d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_107.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_107.RULE @@ -1,7 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, or (at your option) any later version. You should have received a copy of the GNU General Public Licence along with ; if not, write to the Free Software Foundation, Inc., -51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_107.yml b/src/licensedcode/data/rules/gpl-2.0-plus_107.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_107.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1070.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1070.RULE index e4be839092c..9d060bc1c0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1070.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1070.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + %%%LICENSE_START(GPLv2+_DOC_FULL) This is free documentation; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1070.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1070.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1070.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1071.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1071.RULE index fa86b7ff4ba..932cb3496de 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1071.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1071.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + LICENSE_START(GPLv2+_DOC_FULL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1071.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1071.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1071.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1072.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1072.RULE index 8e1ddab3c83..bfb780fc140 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1072.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1072.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + LICENSE_START(GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1072.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1072.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1072.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1073.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1073.RULE index 8215c7f244b..02c93fa3b99 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1073.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1073.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + * MPlayer 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1073.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1073.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1073.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1074.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1074.RULE index 502049c8f13..b1ab2f33fa5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1074.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1074.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: seen in FFmpeg +--- + CONFIG_GPL printf( "%s is free software; you can redistribute it and/or modify\n" diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1074.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1074.yml deleted file mode 100644 index c496204d9c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1074.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: seen in FFmpeg diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1075.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1075.RULE index b94913edfe7..1849df8def5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1075.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1075.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: seen in FFmpeg +--- + "%s is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1075.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1075.yml deleted file mode 100644 index c496204d9c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1075.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: seen in FFmpeg diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1076.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1076.RULE index dbca36d0466..46f08b8d083 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1076.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1076.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + FFmpeg 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1076.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1076.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1076.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1077.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1077.RULE index c134f88535b..243127a7fa3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1077.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1077.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: typo in OUT rather than WITHOUT +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1077.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1077.yml deleted file mode 100644 index 6bece023747..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1077.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: typo in OUT rather than WITHOUT diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1078.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1078.RULE index 2b481d0a18a..2c25f7ccad0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1078.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1078.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1078.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1078.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1078.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1079.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1079.RULE index 5d4a9caeb52..622743e2d34 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1079.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1079.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GNU CC 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1079.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1079.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1079.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_108.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_108.RULE index b5bae518a0a..2fb1be0f7c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_108.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_108.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + agreed to publish this driver under the GNU General Public License. @@ -14,4 +19,4 @@ under the GNU General Public License. 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. + 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-plus_108.yml b/src/licensedcode/data/rules/gpl-2.0-plus_108.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_108.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1080.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1080.RULE index 54e5c78ace6..d4a65d21964 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1080.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1080.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + licensed under the GNU General Public License Version 2 or later (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for details), you must upgrade FFmpeg's license to GPL in order to use it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1080.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1080.yml deleted file mode 100644 index 9a1cfcefbe5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1080.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1081.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1081.RULE index 4d4dd6f4542..572a29acab1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1081.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1081.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + licensed under the GNU General Public License Version 2 or later (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for details), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1081.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1081.yml deleted file mode 100644 index 9a1cfcefbe5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1081.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1082.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1082.RULE index 5d75bfe3e2c..3447f72c0ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1082.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1082.RULE @@ -1,3 +1,10 @@ +--- +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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1082.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1082.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1082.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1083.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1083.RULE index a7f0ee03e2a..a2a5d00a903 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1083.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1083.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + LICENSE distributed under the terms of the GNU General Public diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1083.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1083.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1083.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1084.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1084.RULE index ea9ec9b40a9..b0e52b243c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1084.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1084.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + distributed under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1084.yml b/src/licensedcode/data/rules/gpl-2.0-plus_1084.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1084.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_109.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_109.RULE index 6a1cfa64feb..26552a24f4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_109.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_109.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE +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 2 of the License, or @@ -12,4 +22,4 @@ with this program; if not, see . The full GNU General Public License is included in this distribution in the - file called LICENSE. + file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_109.yml b/src/licensedcode/data/rules/gpl-2.0-plus_109.yml deleted file mode 100644 index c2caf405fdd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_109.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_11.RULE index 028e12c66d6..559cf052ba0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_11.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_110.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_110.RULE index f7bbed818ed..5bb2002214b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_110.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_110.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + 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 @@ -16,4 +22,4 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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. +675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_110.yml b/src/licensedcode/data/rules/gpl-2.0-plus_110.yml deleted file mode 100644 index 66ee53d7187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_111.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_111.RULE index 18bdd0abb4d..f28675073c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_111.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_111.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This code was developed from version of the drivers, released by corp. under the GPL @@ -13,4 +20,4 @@ You should have received a copy of the GNU General Public License along with the drivers; if not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_111.yml b/src/licensedcode/data/rules/gpl-2.0-plus_111.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_111.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_112.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_112.RULE index 9b6994b2114..a0e6355e815 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_112.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_112.RULE @@ -1,3 +1,10 @@ +--- +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) @@ -9,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The full GNU General Public License is included in this distribution in the -file called COPYING. +file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_112.yml b/src/licensedcode/data/rules/gpl-2.0-plus_112.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_112.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_113.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_113.RULE index cd0f7c1f0bb..8b550e2456b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_113.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_113.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING +notes: the disclaimer is likely derived from s BSD +--- + 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, or (at your option) @@ -22,4 +31,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_113.yml b/src/licensedcode/data/rules/gpl-2.0-plus_113.yml deleted file mode 100644 index 8380c537cdf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_113.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING -notes: the disclaimer is likely derived from s BSD diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_114.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_114.RULE index 285404f040e..11e03be901a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_114.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_114.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + 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 @@ -10,4 +17,4 @@ 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, you can access it online at -http://www.gnu.org/licenses/gpl-2.0.html. +http://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_114.yml b/src/licensedcode/data/rules/gpl-2.0-plus_114.yml deleted file mode 100644 index 34a9b9ad3ba..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_114.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_115.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_115.RULE index 0ca63e0db27..72031e54cc5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_115.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_115.RULE @@ -1 +1,7 @@ -Licensed under the FSF's {{GNU Public License v2 or later}}. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +Licensed under the FSF's {{GNU Public License v2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_115.yml b/src/licensedcode/data/rules/gpl-2.0-plus_115.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_116.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_116.RULE index 13cd2547f54..e4b024d758b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_116.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_116.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This is free software; you can distribute 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. + 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_116.yml b/src/licensedcode/data/rules/gpl-2.0-plus_116.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_116.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_117.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_117.RULE index 38a4d9ba11c..7bdd45881ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_117.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_117.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This program is free software; you can distribute 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. +or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_117.yml b/src/licensedcode/data/rules/gpl-2.0-plus_117.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_117.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_118.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_118.RULE index 741b7a3ab93..6f7460424ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_118.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_118.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -7,4 +12,4 @@ 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, GOOD TITLE or NON INFRINGEMENT. See the GNU General Public License for more -details. +details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_118.yml b/src/licensedcode/data/rules/gpl-2.0-plus_118.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_118.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_119.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_119.RULE index 195c5367dff..44748a7d7c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_119.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_119.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2 of the License, or @@ -9,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_119.yml b/src/licensedcode/data/rules/gpl-2.0-plus_119.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_119.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_12.RULE index fd46b986bf9..f554ded3722 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +notes: GCC GPL only notice +--- + GNU CC 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, or (at your option) @@ -11,4 +19,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_12.yml deleted file mode 100644 index 8e55dfe8f82..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -notes: GCC GPL only notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_120.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_120.RULE index c616b27b3ad..3323732d4b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_120.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_120.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +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 2 @@ -12,4 +21,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, see . The full GNU General Public License is included in this distribution -in the file called "COPYING". +in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_120.yml b/src/licensedcode/data/rules/gpl-2.0-plus_120.yml deleted file mode 100644 index ae66ed519e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_120.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_121.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_121.RULE index e8d72bb1cc1..d776a80d06b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_121.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_121.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 50 +notes: ths warranty disclaimer is derived from a BSD license +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + 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 @@ -22,4 +32,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_121.yml b/src/licensedcode/data/rules/gpl-2.0-plus_121.yml deleted file mode 100644 index 29429a67ce5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_121.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 50 -notes: ths warranty disclaimer is derived from a BSD license -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_121_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_121_1.RULE index 062e64225be..0ec8bd8d7bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_121_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_121_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 50 +notes: ths warranty disclaimer is derived from a BSD license +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + 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 @@ -24,4 +34,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_121_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_121_1.yml deleted file mode 100644 index 29429a67ce5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_121_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 50 -notes: ths warranty disclaimer is derived from a BSD license -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_122.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_122.RULE index 094ff059174..6b2000c3de3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_122.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_122.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is free software: you may copy, redistribute and/or modify it under the terms of the GNU General Public License as published by the @@ -10,5 +17,4 @@ 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 . - + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_122.yml b/src/licensedcode/data/rules/gpl-2.0-plus_122.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_122.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_123.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_123.RULE index 12a0a82b450..d3ee46a0a55 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_123.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_123.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_123.yml b/src/licensedcode/data/rules/gpl-2.0-plus_123.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_124.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_124.RULE index 94bc0bab88d..5776f0cd531 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_124.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_124.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2, or (at your option) any @@ -9,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 General Public License along -with this program; if not, see . +with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_124.yml b/src/licensedcode/data/rules/gpl-2.0-plus_124.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_124.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_125.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_125.RULE index 7ad86bc9db6..e5f3547a963 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_125.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_125.RULE @@ -1,3 +1,10 @@ +--- +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, or (at your option) @@ -10,4 +17,4 @@ You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to - the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_125.yml b/src/licensedcode/data/rules/gpl-2.0-plus_125.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_125.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_126.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_126.RULE index 5821e980d11..3bddeca12b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_126.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_126.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2, or (at your option) any later version. @@ -8,4 +15,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 General Public License along with -this program; if not, see . +this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_126.yml b/src/licensedcode/data/rules/gpl-2.0-plus_126.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_126.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_127.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_127.RULE index 30ee810d29b..c8826fc4338 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_127.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_127.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -15,4 +20,4 @@ comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it - under certain conditions. + under certain conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_127.yml b/src/licensedcode/data/rules/gpl-2.0-plus_127.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_127.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_128.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_128.RULE index 3ca09b66c7f..ba28daed6b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_128.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_128.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 10 +--- + 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 @@ -10,5 +16,4 @@ 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - +Foundation, 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_128.yml b/src/licensedcode/data/rules/gpl-2.0-plus_128.yml deleted file mode 100644 index 5c201c832a4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 10 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_129.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_129.RULE index ece35c76370..812b4aa28bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_129.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_129.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 10 +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 @@ -11,4 +19,4 @@ You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, - Boston, MA 02110-1301, USA. + Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_129.yml b/src/licensedcode/data/rules/gpl-2.0-plus_129.yml deleted file mode 100644 index 0247558a008..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 10 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_13.RULE index a6d910aa418..4d2ff9941f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later notice variant +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_13.yml b/src/licensedcode/data/rules/gpl-2.0-plus_13.yml deleted file mode 100644 index 02776cc5b1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later notice variant diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_130.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_130.RULE index 93ee0896a05..1d1a0b56f61 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_130.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_130.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +--- + The code contained herein is licensed under the {{GNU General Public License}}. You may obtain a copy of the {{GNU General Public License -Version 2 or later}} at the following locations: - +Version 2 or later}} at the following locations: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_130.yml b/src/licensedcode/data/rules/gpl-2.0-plus_130.yml deleted file mode 100644 index 0978bf3629d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_131.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_131.RULE index ee7854666f9..10d01477a8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_131.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_131.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This software may be redistributed and/or modified under the terms of the GNU General Public License as published by the Free @@ -7,5 +12,4 @@ 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. - +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_131.yml b/src/licensedcode/data/rules/gpl-2.0-plus_131.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_131.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_132.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_132.RULE index b4de2a78200..d1157b3af61 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_132.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_132.RULE @@ -1,3 +1,7 @@ -The product is under the GNU General Public License, version 2 or later. -As such, this file is also under that license. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- +The product is under the GNU General Public License, version 2 or later. +As such, this file is also under that license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_132.yml b/src/licensedcode/data/rules/gpl-2.0-plus_132.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_132.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_133.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_133.RULE index 43371375a6d..b4b4a74974d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_133.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_133.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_133.yml b/src/licensedcode/data/rules/gpl-2.0-plus_133.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_133.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_134.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_134.RULE index 3d1c78d96a0..bb8dc8d098e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_134.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_134.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + 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 @@ -9,4 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The GNU General Public License is available at -http://www.gnu.org/copyleft/gpl.html. +http://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_134.yml b/src/licensedcode/data/rules/gpl-2.0-plus_134.yml deleted file mode 100644 index 53636a743dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_134.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_135.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_135.RULE index 68640eeecde..93b40e01920 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_135.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_135.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ the Free Software Foundation; either version 2 of the License, or This program is distributed in the hope that it would 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 GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_135.yml b/src/licensedcode/data/rules/gpl-2.0-plus_135.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_135.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_136.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_136.RULE index 7c6900c1869..d99dc9e3051 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_136.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_136.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + GnuPG 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 @@ -18,4 +24,4 @@ Note: This code is heavily based on the GNU MP Library. of an optional secure memory allocation which may be used to avoid revealing of sensitive data due to paging etc. The GNU MP Library itself is published under the LGPL; - however I decided to publish this code under the plain GPL. + however I decided to publish this code under the plain GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_136.yml b/src/licensedcode/data/rules/gpl-2.0-plus_136.yml deleted file mode 100644 index 28c839295ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_137.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_137.RULE index eb1a42ff82d..083d9c23bb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_137.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_137.RULE @@ -1,3 +1,8 @@ +--- +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 named License, @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_137.yml b/src/licensedcode/data/rules/gpl-2.0-plus_137.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_137.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_138.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_138.RULE index 3adbb3e6c2f..e0fcbceda97 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_138.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_138.RULE @@ -1,3 +1,8 @@ +--- +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 term of the GNU General Public License as published by @@ -11,5 +16,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_138.yml b/src/licensedcode/data/rules/gpl-2.0-plus_138.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_138.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_139.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_139.RULE index 647b7981bb2..843985c9602 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_139.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_139.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + .\" % % %LICENSE_START(GPLv2+_SW_ONEPARA) .\" This program is free software; you can redistribute it and/or .\" modify it under the terms of the GNU General Public License diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_139.yml b/src/licensedcode/data/rules/gpl-2.0-plus_139.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_139.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_14.RULE index dbdb15a386a..8751346c07d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: Pychess german notice text +--- + PyChess 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 @@ -32,4 +38,4 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit PyChess erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, -Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA. +Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_14.yml b/src/licensedcode/data/rules/gpl-2.0-plus_14.yml deleted file mode 100644 index d53f53d621f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: Pychess german notice text diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_140.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_140.RULE index 2b165384258..30530a089c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_140.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_140.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,4 +15,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111 USA +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-plus_140.yml b/src/licensedcode/data/rules/gpl-2.0-plus_140.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_140.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_141.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_141.RULE index 1abcc3d0689..35c610e5968 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_141.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_141.RULE @@ -1,3 +1,10 @@ +--- +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 @@ -11,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_141.yml b/src/licensedcode/data/rules/gpl-2.0-plus_141.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_141.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_142.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_142.RULE index a2040c32e6b..0eef2e849f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_142.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_142.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This module 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 @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this module; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_142.yml b/src/licensedcode/data/rules/gpl-2.0-plus_142.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_142.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_143.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_143.RULE index f1a32cbb93f..cc8a22d2f1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_143.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_143.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This program is free warftware; 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 @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_143.yml b/src/licensedcode/data/rules/gpl-2.0-plus_143.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_143.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_144.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_144.RULE index c4910daaa27..7f291f27f64 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_144.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_144.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This driver 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 @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_144.yml b/src/licensedcode/data/rules/gpl-2.0-plus_144.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_144.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_145.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_145.RULE index 63492ecd14b..2ef0990b8d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_145.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_145.RULE @@ -1,3 +1,10 @@ +--- +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) @@ -13,4 +20,4 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. The full GNU General Public License is included in this distribution in the -file called COPYING. +file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_145.yml b/src/licensedcode/data/rules/gpl-2.0-plus_145.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_145.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_146.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_146.RULE index 38b2f440b62..e48f2306cdb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_146.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_146.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + 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 @@ -13,5 +20,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -Or, point your browser to http://www.gnu.org/copyleft/gpl.html - +Or, point your browser to http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_146.yml b/src/licensedcode/data/rules/gpl-2.0-plus_146.yml deleted file mode 100644 index 53636a743dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_146.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_147.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_147.RULE index 3d446043582..7b7d94beac1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_147.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_147.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -12,4 +17,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_147.yml b/src/licensedcode/data/rules/gpl-2.0-plus_147.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_147.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_148.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_148.RULE index 4a8721544bd..37c4eebdc37 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_148.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_148.RULE @@ -1,3 +1,8 @@ +--- +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 GNU General Public License as published by the Free @@ -6,4 +11,4 @@ any later version. 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_148.yml b/src/licensedcode/data/rules/gpl-2.0-plus_148.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_148.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_149.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_149.RULE index 12d51520658..c3c9d11cd3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_149.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_149.RULE @@ -1,3 +1,8 @@ +--- +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, @@ -10,4 +15,4 @@ 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +Foundation, 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_149.yml b/src/licensedcode/data/rules/gpl-2.0-plus_149.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_149.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_15.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_15.RULE index 2b62c7257c8..e34e9a2c631 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +notes: there are some ambiguity wrt the lesser vs. GPL +--- + 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; version 2 of the License, or @@ -13,4 +20,4 @@ Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/GPL-2'. + General Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_15.yml b/src/licensedcode/data/rules/gpl-2.0-plus_15.yml deleted file mode 100644 index 54c9838091e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 -notes: there are some ambiguity wrt the lesser vs. GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_150.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_150.RULE index 0a6e569c1f1..d609a756497 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_150.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_150.RULE @@ -1,3 +1,8 @@ +--- +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, or (at your option) @@ -10,4 +15,4 @@ 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. +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-plus_150.yml b/src/licensedcode/data/rules/gpl-2.0-plus_150.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_150.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_151.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_151.RULE index 0401f4c0215..1c8ac29e8e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_151.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_151.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is free software and licensed under GNU GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_151.yml b/src/licensedcode/data/rules/gpl-2.0-plus_151.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_152.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_152.RULE index 9cbed869794..0587ab5a26e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_152.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_152.RULE @@ -1,3 +1,8 @@ +--- +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, or (at your option) @@ -11,4 +16,4 @@ 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-plus_152.yml b/src/licensedcode/data/rules/gpl-2.0-plus_152.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_152.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_153.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_153.RULE index 500c4150960..f7e87e68a82 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_153.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_153.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -15,4 +20,4 @@ OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND HAS NO OBLIGATION -TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_153.yml b/src/licensedcode/data/rules/gpl-2.0-plus_153.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_153.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_154.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_154.RULE index 7a08bdce8d3..ec001f22e32 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_154.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_154.RULE @@ -1,4 +1,9 @@ +--- +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 Licence as published by the Free Software Foundation; either version -2 of the Licence, or (at your option) any later version. +2 of the Licence, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_154.yml b/src/licensedcode/data/rules/gpl-2.0-plus_154.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_154.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_155.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_155.RULE index 44cdf4bd714..068bcbe2fac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_155.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_155.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This documentation 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 @@ -15,4 +22,4 @@ MA 02111-1307 USA For more details see the file COPYING in the source - distribution of Linux. + distribution of Linux. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_155.yml b/src/licensedcode/data/rules/gpl-2.0-plus_155.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_155.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_156.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_156.RULE index 97fc411e6f3..912a2e16362 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_156.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_156.RULE @@ -1,3 +1,10 @@ +--- +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 @@ -13,4 +20,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA The GNU GPL is contained in /usr/doc/copyright/GPL on a Debian -system and in the file COPYING in the Linux kernel source. +system and in the file COPYING in the Linux kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_156.yml b/src/licensedcode/data/rules/gpl-2.0-plus_156.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_156.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_157.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_157.RULE index 0b53a8f0655..a281fa652d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_157.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_157.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License Terms: GNU General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_157.yml b/src/licensedcode/data/rules/gpl-2.0-plus_157.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_158.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_158.RULE index f21840f3f6d..c218befdc55 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_158.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_158.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This file is released under the GPLv2 and any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_158.yml b/src/licensedcode/data/rules/gpl-2.0-plus_158.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_159.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_159.RULE index 58d3e45568b..06414776f4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_159.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_159.RULE @@ -1,4 +1,9 @@ +--- +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 version 2 as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_159.yml b/src/licensedcode/data/rules/gpl-2.0-plus_159.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_159.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_16.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_16.RULE index 4acfe832cb4..ca89c9752c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_16.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: Variants of gpl-2.0 + +--- + Licensed under the GPL v2 or later, see the file LICENSE in this tarball. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_16.yml b/src/licensedcode/data/rules/gpl-2.0-plus_16.yml deleted file mode 100644 index b48fd77915b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: Variants of gpl-2.0 + diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_160.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_160.RULE index 54403809092..fced3595d0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_160.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_160.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This 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. +(at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_160.yml b/src/licensedcode/data/rules/gpl-2.0-plus_160.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_160.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_161.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_161.RULE index 51533dcc48c..b99d6019c7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_161.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_161.RULE @@ -1,5 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This module 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. - + 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_161.yml b/src/licensedcode/data/rules/gpl-2.0-plus_161.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_161.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_162.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_162.RULE index b8c688f5f79..1684518976f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_162.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_162.RULE @@ -1,5 +1,9 @@ +--- +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 -any later version. - +any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_162.yml b/src/licensedcode/data/rules/gpl-2.0-plus_162.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_162.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_163.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_163.RULE index d53e322122d..5d78e222f2b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_163.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_163.RULE @@ -1,3 +1,8 @@ +--- +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) @@ -10,4 +15,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_163.yml b/src/licensedcode/data/rules/gpl-2.0-plus_163.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_163.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_164.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_164.RULE index 0345c9e7df2..cb57d2708e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_164.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_164.RULE @@ -1,5 +1,9 @@ +--- +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 GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. - +any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_164.yml b/src/licensedcode/data/rules/gpl-2.0-plus_164.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_164.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE index e6819c46180..ab7cab61ab3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE @@ -1,4 +1,9 @@ +--- +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, or (at your option) -any later version. +any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_165.yml b/src/licensedcode/data/rules/gpl-2.0-plus_165.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_165.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_166.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_166.RULE index 74830617535..296f3e5cf56 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_166.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_166.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + * * This driver 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. -*/ +*/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_166.yml b/src/licensedcode/data/rules/gpl-2.0-plus_166.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_166.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_167.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_167.RULE index fbe35e7b10f..4a767b4b4e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_167.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_167.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/src/linux/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, or (at your option) @@ -5,4 +12,4 @@ You should have received a copy of the GNU General Public License (for example /usr/src/linux/COPYING); if not, write to the Free - Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + 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-plus_167.yml b/src/licensedcode/data/rules/gpl-2.0-plus_167.yml deleted file mode 100644 index 87279c6fedb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_167.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/src/linux/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_168.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_168.RULE index 454093385c3..9d32e261dc4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_168.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_168.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + X * This program is free software; you can redistribute it and/or modify X * it under the terms of the GNU General Public License as published by X * the Free Software Foundation; either version 2 of the License, or @@ -11,4 +17,4 @@ X * X * You should have received a copy of the GNU General Public License X * along with this program; if not, write to the Free Software X * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -X * +X * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_168.yml b/src/licensedcode/data/rules/gpl-2.0-plus_168.yml deleted file mode 100644 index 66ee53d7187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_169.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_169.RULE index ee0746a247f..2934c129ace 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_169.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_169.RULE @@ -1,6 +1,11 @@ +--- +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, Inc., 53 Temple Place Ste 330, Boston MA 02111-1307, USA; either version 2 of the License, or - (at your option) any later version; incorporated herein by reference. + (at your option) any later version; incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_169.yml b/src/licensedcode/data/rules/gpl-2.0-plus_169.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_169.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_17.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_17.RULE index 626f928ce94..866e4be6ec5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later notice +--- + 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 @@ -10,4 +16,4 @@ You should have received a copy of the GNU General Public License along with this program(see GPL.txt); if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + 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_17.yml b/src/licensedcode/data/rules/gpl-2.0-plus_17.yml deleted file mode 100644 index cad319d0220..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_170.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_170.RULE index 53b3a0fd026..c1d603294ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_170.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_170.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This file 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 or (at your option) any @@ -10,4 +15,4 @@ for more details. You should have received a copy of the GNU General Public License along with this file; if not, write to the Free Software Foundation, Inc., -59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. +59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_170.yml b/src/licensedcode/data/rules/gpl-2.0-plus_170.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_170.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_171.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_171.RULE index 35d44bbc892..b87d851f02a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_171.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_171.RULE @@ -1,3 +1,8 @@ +--- +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, or (at your option) @@ -11,4 +16,4 @@ 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., 59 * Temple Place - Suite 330, Boston, -MA 02111-1307, USA. +MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_171.yml b/src/licensedcode/data/rules/gpl-2.0-plus_171.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_171.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_172.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_172.RULE index 3865c54fe38..9d3fa347732 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_172.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_172.RULE @@ -1,3 +1,8 @@ +--- +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; @@ -12,4 +17,4 @@ 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., -59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_172.yml b/src/licensedcode/data/rules/gpl-2.0-plus_172.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_172.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_173.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_173.RULE index 2877bcc020e..015e2a2b549 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_173.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_173.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + 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 @@ -5,4 +10,4 @@ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 or - later as publishhed by the Free Software Foundation. + later as publishhed by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_173.yml b/src/licensedcode/data/rules/gpl-2.0-plus_173.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_173.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_174.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_174.RULE index e60d245374c..46d28177d8b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_174.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_174.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file is released under GNU General Public Licence version 2 or (at your option) any later version. - See the file COPYING for more details. + See the file COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_174.yml b/src/licensedcode/data/rules/gpl-2.0-plus_174.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_174.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_175.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_175.RULE index b8ec481f19a..4055747a478 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_175.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_175.RULE @@ -1 +1,7 @@ -GPL v2 and any later version +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +GPL v2 and any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_175.yml b/src/licensedcode/data/rules/gpl-2.0-plus_175.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_176.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_176.RULE index dc3766d303a..35100bd8202 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_176.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_176.RULE @@ -1 +1,7 @@ -GPL v2 or later. +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 90 +--- + +GPL v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_176.yml b/src/licensedcode/data/rules/gpl-2.0-plus_176.yml deleted file mode 100644 index 1ad076f8888..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_177.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_177.RULE index ccf97142fbd..63e028c5ffe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_177.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_177.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + This code may be copied under the GPL v.2 or at your option - any later version. + any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_177.yml b/src/licensedcode/data/rules/gpl-2.0-plus_177.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_178.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_178.RULE index 1e4f526d811..c0267e0d62f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_178.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_178.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -5,4 +10,4 @@ Neither nor University admit liability nor provide warranty for any of this software. This material is - provided "AS-IS" and at no charge. + provided "AS-IS" and at no charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_178.yml b/src/licensedcode/data/rules/gpl-2.0-plus_178.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_178.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_179.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_179.RULE index 6178e9fe37d..f66cbdb1934 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_179.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_179.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This program is a part of the Linux kernel, and may be freely copied under the terms of the GNU General Public License (GPL), version 2, or at your option any later version. -/ +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_179.yml b/src/licensedcode/data/rules/gpl-2.0-plus_179.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_179.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_18.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_18.RULE index 3d18a2ef3ac..d594deafe84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later Debian notice +ignorable_urls: + - http://www.fsf.org/ +--- + This software is subject to, and may be distributed under, the GNU General Public License, either Version 2 of the license, or (at your option) any later version. The license should have @@ -7,4 +15,4 @@ 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. + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_18.yml b/src/licensedcode/data/rules/gpl-2.0-plus_18.yml deleted file mode 100644 index e186aa6e7f5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later Debian notice -ignorable_urls: - - http://www.fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_180.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_180.RULE index a26f9e16533..24b4e9b6e01 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_180.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_180.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + This software is distributed under the terms of the GNU General Public License ("GPL") as published by the Free Software Foundation, -either version 2 of that License or (at your option) any later version. +either version 2 of that License or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_180.yml b/src/licensedcode/data/rules/gpl-2.0-plus_180.yml deleted file mode 100644 index 66ee53d7187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_181.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_181.RULE index 4c75ba46535..ac0466cfb48 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_181.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_181.RULE @@ -1,6 +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 of 2 of the License, -or (at your option) any later version. - +or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_181.yml b/src/licensedcode/data/rules/gpl-2.0-plus_181.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_181.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_182.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_182.RULE index 7f8a5d6258f..1a77431bba3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_182.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_182.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This driver is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License; either version 2 of the License, or (at your option) any later version. @@ -8,4 +15,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 General Public License -along with this driver; if not, see . +along with this driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_182.yml b/src/licensedcode/data/rules/gpl-2.0-plus_182.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_182.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_183.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_183.RULE index 030d89cafc6..f153da10683 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_183.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_183.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This implementation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,5 +21,4 @@ See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ; see the file COPYING. If not, see -. - +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_183.yml b/src/licensedcode/data/rules/gpl-2.0-plus_183.yml deleted file mode 100644 index ae66ed519e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_183.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_184.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_184.RULE index 6d619473b2e..1922d06fae1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_184.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_184.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +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 2 of the License, or @@ -10,4 +19,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, see -http://www.gnu.org/licenses/. +http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_184.yml b/src/licensedcode/data/rules/gpl-2.0-plus_184.yml deleted file mode 100644 index e18a37e07e4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_184.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_185.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_185.RULE index f43744c4835..30ddc10aadc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_185.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_185.RULE @@ -1 +1,9 @@ -define MOD_LICENSE "GPL" +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 90 +notes: this is from the Linux kernel and a MODULE_LICENSE macro with "GPL" means "GNU Public + License v2 or later" +--- + +define MOD_LICENSE "GPL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_185.yml b/src/licensedcode/data/rules/gpl-2.0-plus_185.yml deleted file mode 100644 index 3292057c35a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 90 -notes: this is from the Linux kernel and a MODULE_LICENSE macro with "GPL" means "GNU Public - License v2 or later" diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_186.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_186.RULE index 0e3f2d7ed90..8f942091609 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_186.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_186.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 65 +--- + 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 @@ -31,4 +37,4 @@ HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_186.yml b/src/licensedcode/data/rules/gpl-2.0-plus_186.yml deleted file mode 100644 index c9ac9881e20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 65 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_187.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_187.RULE index 9a0ea5fd084..5c4a7c52697 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_187.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_187.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This file is licensed under GPLv2. This program is free software; you can redistribute it and/or @@ -13,4 +18,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - USA + USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_187.yml b/src/licensedcode/data/rules/gpl-2.0-plus_187.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_187.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_188.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_188.RULE index a03013f6206..0aa09c4b3ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_188.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_188.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_188.yml b/src/licensedcode/data/rules/gpl-2.0-plus_188.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_189.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_189.RULE index 5de8a479a7a..d402cd9bfc4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_189.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_189.RULE @@ -1 +1,7 @@ -Released according to the GNU GPL, version 2 or any later version. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +Released according to the GNU GPL, version 2 or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_189.yml b/src/licensedcode/data/rules/gpl-2.0-plus_189.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_19.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_19.RULE index 912afd79af7..a8ba543e4f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later notice +--- + * 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 @@ -10,4 +16,4 @@ * * 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. + * 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-plus_19.yml b/src/licensedcode/data/rules/gpl-2.0-plus_19.yml deleted file mode 100644 index cad319d0220..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_190.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_190.RULE index ed30a4066df..9a55cb3e991 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_190.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_190.RULE @@ -1 +1,7 @@ - Released under the GPL version 2 or later. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + + Released under the GPL version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_190.yml b/src/licensedcode/data/rules/gpl-2.0-plus_190.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_191.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_191.RULE index 34d3122d4a8..3424d6ed5af 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_191.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_191.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -11,4 +16,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_191.yml b/src/licensedcode/data/rules/gpl-2.0-plus_191.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_191.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_192.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_192.RULE index 6c5756c3edc..250cf191952 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_192.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_192.RULE @@ -1,3 +1,8 @@ +--- +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, or (at your option) @@ -6,4 +11,4 @@ any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. +PURPOSE. See the GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_192.yml b/src/licensedcode/data/rules/gpl-2.0-plus_192.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_192.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_193.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_193.RULE index 1c3f86cacae..2ab1065ebbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_193.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_193.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 10 +--- + The driver is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this driver; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_193.yml b/src/licensedcode/data/rules/gpl-2.0-plus_193.yml deleted file mode 100644 index 5c201c832a4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_193.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 10 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_194.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_194.RULE index 92e663fc23b..d0bff6a1ac9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_194.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_194.RULE @@ -1,3 +1,10 @@ +--- +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 @@ -11,4 +18,4 @@ 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 the file COPYING, or write to the Free Software Foundation, Inc., -51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_194.yml b/src/licensedcode/data/rules/gpl-2.0-plus_194.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_194.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_195.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_195.RULE index 4ee408acf29..a6bfd089ac4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_195.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_195.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2 of the License, or @@ -9,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_195.yml b/src/licensedcode/data/rules/gpl-2.0-plus_195.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_195.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_196.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_196.RULE index a22e79b277b..704e15ebbe8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_196.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_196.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2 of the License, or @@ -10,4 +17,4 @@ You should have received a copy of the GNU General Public License along with wireless lan drivers; if not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_196.yml b/src/licensedcode/data/rules/gpl-2.0-plus_196.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_196.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_197.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_197.RULE index 49225612aaf..a1b06c7f890 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_197.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_197.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -12,4 +17,4 @@ 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. +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-plus_197.yml b/src/licensedcode/data/rules/gpl-2.0-plus_197.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_197.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_198.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_198.RULE index 16f2c81370f..4d2f4227592 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_198.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_198.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + 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 @@ -10,4 +15,4 @@ 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. + 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-plus_198.yml b/src/licensedcode/data/rules/gpl-2.0-plus_198.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_198.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_199.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_199.RULE index a797835abfa..9cea8b0b0e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_199.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_199.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -11,4 +16,4 @@ 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. + 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-plus_199.yml b/src/licensedcode/data/rules/gpl-2.0-plus_199.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_199.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_2.RULE index 2460212d9df..dbc4742691c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_2.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later Debian notice, variant with typos +--- + licensend under the terms of the {{GNU General Public License, either version 2 of the License, or (at your option) any later version}}, which on Debian GNU/Linux systems can be found as -`{{/usr/share/common-licenses/GPL}}'. +`{{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_2.yml deleted file mode 100644 index 70b7a37212a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later Debian notice, variant with typos diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_20.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_20.RULE index 32e0d8d7aac..9ddccd78084 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_20.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_20.yml b/src/licensedcode/data/rules/gpl-2.0-plus_20.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_200.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_200.RULE index a04426e5c5c..6b4d070475a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_200.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_200.RULE @@ -1,3 +1,8 @@ +--- +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 vs published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +15,4 @@ 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 Mvss Ave, Cambridge, MA 02139, USA. +Foundation, Inc., 675 Mvss Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_200.yml b/src/licensedcode/data/rules/gpl-2.0-plus_200.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_200.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_201.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_201.RULE index 71c0e6e5683..991c15d12bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_201.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_201.RULE @@ -1 +1,9 @@ -define DRIVER_LICENSE "GPL" +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: this is from the Linux kernel and a MODULE_LICENSE macro with "GPL" means "GNU Public + License v2 or later" +--- + +define DRIVER_LICENSE "GPL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_201.yml b/src/licensedcode/data/rules/gpl-2.0-plus_201.yml deleted file mode 100644 index e0a6fc1f7de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: this is from the Linux kernel and a MODULE_LICENSE macro with "GPL" means "GNU Public - License v2 or later" diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_202.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_202.RULE index 6f8f4a3d362..7b02a13b56a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_202.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_202.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +notes: this contains an extra comment about radio frequencies laws which does not change the + GPL. "Please note that the GPL allows you to use the driver, NOT the radio. In order to + use the radio, you need a license from the communications authority of your country." +--- + 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 @@ -14,4 +23,4 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Please note that the GPL allows you to use the driver, NOT the radio. In order to use the radio, you need a license from the communications -authority of your country. +authority of your country. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_202.yml b/src/licensedcode/data/rules/gpl-2.0-plus_202.yml deleted file mode 100644 index 6b737082181..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_202.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -notes: this contains an extra comment about radio frequencies laws which does not change the - GPL. "Please note that the GPL allows you to use the driver, NOT the radio. In order to - use the radio, you need a license from the communications authority of your country." diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_203.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_203.RULE index 6d3b2f9bba9..69188d0da38 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_203.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_203.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -11,4 +16,4 @@ You should have received a copy of the GNU General Public License along with the program ; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + 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-plus_203.yml b/src/licensedcode/data/rules/gpl-2.0-plus_203.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_203.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_204.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_204.RULE index 91c66219aed..298b97aa6c3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_204.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_204.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2, or (at your option) @@ -11,4 +18,4 @@ GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_204.yml b/src/licensedcode/data/rules/gpl-2.0-plus_204.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_204.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_205.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_205.RULE index b2c351bccf7..c3b5a235845 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_205.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_205.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This code was developed from version of the drivers, released by corp. under the GPL in . It also @@ -23,4 +30,4 @@ You should have received a copy of the GNU General Public License along with Atmel wireless lan drivers; if not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_205.yml b/src/licensedcode/data/rules/gpl-2.0-plus_205.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_205.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_206.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_206.RULE index 27109fee427..69d31a9f350 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_206.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_206.RULE @@ -1 +1,7 @@ - Licensed under the GPLv2 or later. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + + Licensed under the GPLv2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_206.yml b/src/licensedcode/data/rules/gpl-2.0-plus_206.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_207.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_207.RULE index 59f7530d942..9a0d6135d1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_207.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_207.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 (or any -later at your option) as published by the Free Software Foundation. +later at your option) as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_207.yml b/src/licensedcode/data/rules/gpl-2.0-plus_207.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_207.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_208.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_208.RULE index b96f98eeba3..df257e3169b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_208.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_208.RULE @@ -1,3 +1,8 @@ +--- +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 version -2 or any later version as published by the Free Software Foundation. +2 or any later version as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_208.yml b/src/licensedcode/data/rules/gpl-2.0-plus_208.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_208.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_209.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_209.RULE index 5e3826b6054..db4648397de 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_209.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_209.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + licensed under the GNU General Public License version 2 or above See `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_209.yml b/src/licensedcode/data/rules/gpl-2.0-plus_209.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_209.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_21.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_21.RULE index ee87a9ff62b..cb8bc76f262 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 2.0 short notice +--- + You may copy, modify, and redistribute this file under the terms of the GNU General Public License, version 2, or any later version, at your convenience. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_21.yml b/src/licensedcode/data/rules/gpl-2.0-plus_21.yml deleted file mode 100644 index b61eeb31683..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 2.0 short notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_210.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_210.RULE index cb99ffe85c5..5b77a9330a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_210.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_210.RULE @@ -1,7 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + Derived from GPLv2+ licensed source: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, or (at your option) any later version. as published by the Free Software -Foundation +Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_210.yml b/src/licensedcode/data/rules/gpl-2.0-plus_210.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_210.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_211.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_211.RULE index 1e794165aa2..cba47245197 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_211.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_211.RULE @@ -1,4 +1,9 @@ +--- +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 version 2, or (at your option) any later version. as published by the Free Software -Foundation +Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_211.yml b/src/licensedcode/data/rules/gpl-2.0-plus_211.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_211.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_212.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_212.RULE index 82edfb703e4..7b2903bca4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_212.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_212.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 10 +referenced_filenames: + - COPYING +--- + GDB, GAS, and the GNU binutils are free software; you can redistribute them and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation; either version @@ -11,4 +19,4 @@ the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this file; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA -02110-1301, USA. */ +02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_212.yml b/src/licensedcode/data/rules/gpl-2.0-plus_212.yml deleted file mode 100644 index 0247558a008..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_212.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 10 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_213.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_213.RULE index 91d98110025..1a9752f9ca3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_213.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_213.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 as -published by the Free Software Foundation (or any later at your option). +published by the Free Software Foundation (or any later at your option). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_213.yml b/src/licensedcode/data/rules/gpl-2.0-plus_213.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_213.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_214.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_214.RULE index abd8a2c7147..58af9dd1f54 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_214.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_214.RULE @@ -1,4 +1,9 @@ +--- +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 Foundiation. either version 2 of the License, - or (at your option) any later version + or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_214.yml b/src/licensedcode/data/rules/gpl-2.0-plus_214.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_214.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_215.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_215.RULE index 7157d7c41e7..58c5adfa99c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_215.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_215.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This work is licensed under the terms of the GNU GPL, version 2 or later. -See the COPYING file in the top-level directory. +See the COPYING file in the top-level directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_215.yml b/src/licensedcode/data/rules/gpl-2.0-plus_215.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_215.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_216.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_216.RULE index d482ed83d17..3cd2d3d314c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_216.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_216.RULE @@ -1 +1,7 @@ - Licensed under the GPL v2 or later. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + + Licensed under the GPL v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_216.yml b/src/licensedcode/data/rules/gpl-2.0-plus_216.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_217.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_217.RULE index d08dc15d834..47c58f302ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_217.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_217.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This file is licensed under the terms of the GNU General Public License version 2 or later. This program is licensed "as is" without any -warranty of any kind, whether express or implied. +warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_217.yml b/src/licensedcode/data/rules/gpl-2.0-plus_217.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_217.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_218.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_218.RULE index 894546abb71..0ddf6ac61bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_218.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_218.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This source code is licensed under the GNU General Public License, -Version 2 or later. See the file COPYING for more details. +Version 2 or later. See the file COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_218.yml b/src/licensedcode/data/rules/gpl-2.0-plus_218.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_218.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_219.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_219.RULE index 4022f0989a0..02e9066d831 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_219.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_219.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- -This code is released under the GNU General Public License version 2 or -later. +This code is released under the GNU General Public License version 2 or +later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_219.yml b/src/licensedcode/data/rules/gpl-2.0-plus_219.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE index 984a9c59225..094a1bfc618 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GPL-2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_22.yml b/src/licensedcode/data/rules/gpl-2.0-plus_22.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_220.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_220.RULE index 7649e27054a..ea4ab10f26c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_220.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_220.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This file is part of the Linux kernel, and is made available under the terms of the GNU General Public License version 2 or (at your -option) any later version; incorporated herein by reference. +option) any later version; incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_220.yml b/src/licensedcode/data/rules/gpl-2.0-plus_220.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_220.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_221.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_221.RULE index 1ef60a46db5..bda83a11042 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_221.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_221.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -15,4 +20,4 @@ using a set of device structures/vectors for low level operations. 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. + 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_221.yml b/src/licensedcode/data/rules/gpl-2.0-plus_221.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_221.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_222.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_222.RULE index 8076fe0cda7..05b5055cfe2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_222.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_222.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + You may modify and redistribute the device driver code under the GNU General Public License as published by the Free Software -Foundation (version 2 or a later version). +Foundation (version 2 or a later version). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_222.yml b/src/licensedcode/data/rules/gpl-2.0-plus_222.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_222.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_223.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_223.RULE index 1464b10fbd6..7bd4d4abf8c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_223.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_223.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This document is free; 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 @@ -12,4 +17,4 @@ 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., 59 Temple Place, Suite 330, Boston, -MA 02111-1307 USA +MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_223.yml b/src/licensedcode/data/rules/gpl-2.0-plus_223.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_223.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_224.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_224.RULE index 08362887439..1343afc107f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_224.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_224.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + under the GNU General Public License. @@ -13,4 +18,4 @@ GNU General Public License. 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. + 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-plus_224.yml b/src/licensedcode/data/rules/gpl-2.0-plus_224.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_224.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_225.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_225.RULE index e7762426a6e..c0deaa9633f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_225.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_225.RULE @@ -1 +1,7 @@ -Licence: GPLv2+ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licence: GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_225.yml b/src/licensedcode/data/rules/gpl-2.0-plus_225.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_226.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_226.RULE index 104d94e8928..bd50173b0f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_226.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_226.RULE @@ -1 +1,7 @@ -Licence: GPLv2 or later +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licence: GPLv2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_226.yml b/src/licensedcode/data/rules/gpl-2.0-plus_226.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_227.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_227.RULE index 89c25fdfbd8..cd458076f70 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_227.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_227.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -31,4 +36,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, - USA. + USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_227.yml b/src/licensedcode/data/rules/gpl-2.0-plus_227.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_227.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_228.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_228.RULE index 3b9b2b2c7f0..30d6ac133cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_228.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_228.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: the version is written using words (two) not digits +--- + This source/code is public free; you can distribute it and/or modify it under terms of the GNU General Public License (published by the Free Software Foundation) either version two of this License, or any -later version. +later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_228.yml b/src/licensedcode/data/rules/gpl-2.0-plus_228.yml deleted file mode 100644 index 12700b5e058..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: the version is written using words (two) not digits diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_229.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_229.RULE index 83ba3ba2816..08bffca266e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_229.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_229.RULE @@ -1,3 +1,8 @@ +--- +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 Licence as published by the Free Software Foundation; either version 2 of the Licence, or @@ -10,4 +15,4 @@ GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_229.yml b/src/licensedcode/data/rules/gpl-2.0-plus_229.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_229.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_23.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_23.RULE index c3d8ee7eb94..f618b3ec8c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_23.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_23.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + Main License (everything except docs): This package is free software; you can redistribute it and/or modify @@ -18,4 +23,4 @@ On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. The Debian packaging is Copyright -. It is licensed under the same conditions. +. It is licensed under the same conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_23.yml b/src/licensedcode/data/rules/gpl-2.0-plus_23.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_230.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_230.RULE index 9cec5241179..0f966ae3a34 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_230.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_230.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + 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 @@ -20,4 +29,4 @@ program errors, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. Under no circumstances will the contributor of this Program be liable for any damages of any kind arising from your use or distribution of -this program. +this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_230.yml b/src/licensedcode/data/rules/gpl-2.0-plus_230.yml deleted file mode 100644 index 7badd28a352..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_230.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_231.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_231.RULE index 52c661264c8..e4bca2fc8c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_231.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_231.RULE @@ -1,3 +1,8 @@ +--- +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 Lcodecnse as published by @@ -11,4 +16,4 @@ GNU General Public Lcodecnse for more details. You should have received a copy of the GNU General Public Lcodecnse along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_231.yml b/src/licensedcode/data/rules/gpl-2.0-plus_231.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_231.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_232.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_232.RULE index b46876f6eca..6f103e8a4aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_232.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_232.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 or later as published by the Free Software Foundation. @@ -5,4 +10,4 @@ modify it under the terms of the GNU General Public License 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_232.yml b/src/licensedcode/data/rules/gpl-2.0-plus_232.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_232.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_233.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_233.RULE index 251377c26d3..8c3ef652e1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_233.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_233.RULE @@ -1,3 +1,8 @@ +--- +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) @@ -13,4 +18,4 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. The full GNU General Public License is included in this distribution in the -file called LICENSE. +file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_233.yml b/src/licensedcode/data/rules/gpl-2.0-plus_233.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_233.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_234.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_234.RULE index 4665d630d14..c8ae546e290 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_234.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_234.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + 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, or (at your option) @@ -10,4 +17,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_234.yml b/src/licensedcode/data/rules/gpl-2.0-plus_234.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_234.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_235.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_235.RULE index e2250b43353..edaf3caab3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_235.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_235.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + 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. @@ -15,4 +20,4 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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. +675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_235.yml b/src/licensedcode/data/rules/gpl-2.0-plus_235.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_235.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_236.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_236.RULE index 0f9a75318ca..93cad910905 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_236.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_236.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This code 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 @@ -9,5 +16,4 @@ 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 . - + along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_236.yml b/src/licensedcode/data/rules/gpl-2.0-plus_236.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_236.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_237.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_237.RULE index 95a23785e43..b97d4fe3eb9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_237.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_237.RULE @@ -1,3 +1,8 @@ +--- +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 smems of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_237.yml b/src/licensedcode/data/rules/gpl-2.0-plus_237.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_237.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_238.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_238.RULE index f3f75829cee..3ecab8c9a98 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_238.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_238.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + library are free software; you can redistribute them and/or modify them under the terms of the GNU General Public License as @@ -12,4 +19,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., -59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_238.yml b/src/licensedcode/data/rules/gpl-2.0-plus_238.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_238.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_239.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_239.RULE index 2dcb4d0deab..85cbd712199 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_239.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_239.RULE @@ -1,3 +1,10 @@ +--- +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, or (at your option) @@ -11,4 +18,4 @@ gnu general public license for more details. you should have received a copy of the gnu general public license along with this program; see the file copying. if not, write to the free software foundation, -59 temple place - suite 330, boston, ma 02111-1307, usa. +59 temple place - suite 330, boston, ma 02111-1307, usa. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_239.yml b/src/licensedcode/data/rules/gpl-2.0-plus_239.yml deleted file mode 100644 index 2ef5daad75a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_239.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - copying diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_24.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_24.RULE index feb27eb9ebc..9c3de85670c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_24.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: abiword +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 2 of the License, or @@ -9,4 +17,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_24.yml b/src/licensedcode/data/rules/gpl-2.0-plus_24.yml deleted file mode 100644 index c8b7ec2c7e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: abiword -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_240.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_240.RULE index 19c7342ff23..045b340c31f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_240.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_240.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This program/include file 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 @@ -11,4 +18,4 @@ 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 main directory of the Linux distribution in the file COPYING); if not, write to the Free Software -Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_240.yml b/src/licensedcode/data/rules/gpl-2.0-plus_240.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_240.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_241.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_241.RULE index 87c4a6fe355..13aab280942 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_241.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_241.RULE @@ -1,3 +1,10 @@ +--- +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 @@ -11,5 +18,4 @@ details. You should have received a copy of the GNU General Public License along with this program (in the main directory of the source in the file COPYING); if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, -Boston, MA 02111-1307 USA - +Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_241.yml b/src/licensedcode/data/rules/gpl-2.0-plus_241.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_241.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_242.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_242.RULE index 30bbc90d07f..2d450722cfc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_242.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_242.RULE @@ -1,3 +1,10 @@ +--- +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) @@ -11,4 +18,4 @@ 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 main directory of the Linux source in the file COPYING); if not, write to the Free Software Foundation, -Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_242.yml b/src/licensedcode/data/rules/gpl-2.0-plus_242.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_242.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_243.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_243.RULE index bfd4b45b65a..87c6e89f826 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_243.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_243.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This 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 @@ -11,4 +16,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_243.yml b/src/licensedcode/data/rules/gpl-2.0-plus_243.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_243.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_244.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_244.RULE index 7c34221ab2f..ee63289f85e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_244.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_244.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -15,4 +20,4 @@ as published by the Free Software Foundation; {{either version INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND HAS NO OBLIGATION - TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_244.yml b/src/licensedcode/data/rules/gpl-2.0-plus_244.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_244.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_245.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_245.RULE index c9746cc4672..eeb5c096e38 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_245.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_245.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This include file 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. +the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_245.yml b/src/licensedcode/data/rules/gpl-2.0-plus_245.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_245.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_246.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_246.RULE index a612043d30a..18b8e6bc4e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_246.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_246.RULE @@ -1,4 +1,9 @@ +--- +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 optional) any later version of the license. +License or (at your optional) any later version of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_246.yml b/src/licensedcode/data/rules/gpl-2.0-plus_246.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_246.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_247.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_247.RULE index d39d7193e2b..5ad276c7717 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_247.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_247.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ as published by the Free Software Foundation; either version Neither nor admit liability nor provide warranty for any of this software. This material is provided -"AS-IS" and at no charge. +"AS-IS" and at no charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_247.yml b/src/licensedcode/data/rules/gpl-2.0-plus_247.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_247.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_248.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_248.RULE index 438fa4d3597..410d1964a48 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_248.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_248.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ as published by the Free Software Foundation; either version Neither admit liability nor provide warranty for any of this software. This material is provided -"AS-IS" and at no charge. +"AS-IS" and at no charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_248.yml b/src/licensedcode/data/rules/gpl-2.0-plus_248.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_248.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_249.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_249.RULE index 11702303829..1b8f9167912 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_249.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_249.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The SCTP reference implementation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,4 +22,4 @@ See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_249.yml b/src/licensedcode/data/rules/gpl-2.0-plus_249.yml deleted file mode 100644 index 3042903719c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_249.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_25.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_25.RULE index ee3ffb1f390..d4eab564ba3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_25.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later notice, debian style +--- + 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 @@ -10,5 +16,4 @@ . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_25.yml b/src/licensedcode/data/rules/gpl-2.0-plus_25.yml deleted file mode 100644 index e647c43ca3a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later notice, debian style diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_250.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_250.RULE index a0dffeecc0f..36380a5858e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_250.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_250.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The SCTP implementation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,4 +22,4 @@ See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_250.yml b/src/licensedcode/data/rules/gpl-2.0-plus_250.yml deleted file mode 100644 index 3042903719c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_250.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_251.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_251.RULE index 6720fe87c8d..9dcdd233e04 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_251.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_251.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This SCTP implementation is free software; you can redistribute it and/or modify it under the terms of @@ -13,4 +23,4 @@ See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_251.yml b/src/licensedcode/data/rules/gpl-2.0-plus_251.yml deleted file mode 100644 index 3042903719c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_251.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_252.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_252.RULE index a73e06a419a..c90a8e415d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_252.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_252.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -12,4 +17,4 @@ 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. + 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-plus_252.yml b/src/licensedcode/data/rules/gpl-2.0-plus_252.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_252.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_253.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_253.RULE index a355cc97801..4b8e575feaf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_253.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_253.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2 of the License, or @@ -10,4 +17,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with drivers; if not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_253.yml b/src/licensedcode/data/rules/gpl-2.0-plus_253.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_253.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_254.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_254.RULE index c44690bc684..fd10818862f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_254.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_254.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2 of the License, or @@ -10,4 +17,4 @@ You should have received a copy of the GNU General Public License along with Atmel wireless lan drivers; if not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_254.yml b/src/licensedcode/data/rules/gpl-2.0-plus_254.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_254.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_255.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_255.RULE index aa7ccbf6983..eb773539f07 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_255.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_255.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License ========== This program is free software; you can redistribute it and/or modify @@ -12,4 +17,4 @@ 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. + 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-plus_255.yml b/src/licensedcode/data/rules/gpl-2.0-plus_255.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_255.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_256.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_256.RULE index f58eb995ab1..101491605a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_256.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_256.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/ +--- + License This driver is distributed under the terms of the General Public License. @@ -16,4 +23,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - See http://www.gnu.org/ for more information. + See http://www.gnu.org/ for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_256.yml b/src/licensedcode/data/rules/gpl-2.0-plus_256.yml deleted file mode 100644 index 702ba0d40c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_256.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_257.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_257.RULE index 33cd0f2a1e5..9a568766c79 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_257.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_257.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -11,4 +16,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_257.yml b/src/licensedcode/data/rules/gpl-2.0-plus_257.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_257.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_258.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_258.RULE index cc4e984f49a..f8f8d92d03a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_258.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_258.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GnuPG 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 @@ -10,4 +15,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_258.yml b/src/licensedcode/data/rules/gpl-2.0-plus_258.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_258.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_259.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_259.RULE index 85a701d1700..61941cad333 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_259.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_259.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -12,4 +17,4 @@ 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., 59 Temple Place, Suite 330, Boston, -MA 02111-1307 USA +MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_259.yml b/src/licensedcode/data/rules/gpl-2.0-plus_259.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_259.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_26.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_26.RULE index 78865761fc5..7cc5f931cbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_26.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_26.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License Version 2 or later (the "GPL") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_26.yml b/src/licensedcode/data/rules/gpl-2.0-plus_26.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_260.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_260.RULE index c580633976d..caa05bbdedf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_260.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_260.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This documentation 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 @@ -15,4 +22,4 @@ MA 02111-1307 USA For more details see the file COPYING in the source - distribution + distribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_260.yml b/src/licensedcode/data/rules/gpl-2.0-plus_260.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_260.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_261.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_261.RULE index 41623e66895..e965df60ea9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_261.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_261.RULE @@ -1,3 +1,8 @@ +--- +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 Licence as published by the Free Software @@ -9,4 +14,4 @@ # details. # You should have received a copy of the GNU General Public Licence along with # this program; if not, write to the Free Software Foundation, Inc., 51 Franklin -# Street, Fifth Floor, Boston, MA 02110-1301, USA +# 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_261.yml b/src/licensedcode/data/rules/gpl-2.0-plus_261.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_261.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_262.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_262.RULE index a359cc59801..428d3147793 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_262.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_262.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This script is free software - you can redistribute it and/or modify it under the terms of the GNU General Public Licence (GPL) as published by the Free Software Foundation; @@ -8,4 +13,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Licence (GPL)for more details. You should have received a copy of the GNU General Public Licence (GPL) along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_262.yml b/src/licensedcode/data/rules/gpl-2.0-plus_262.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_262.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_263.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_263.RULE index 615b0ce85d0..2bb8ee1e1b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_263.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_263.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify in under the terms of the GNU General Public Licence as @@ -9,4 +14,4 @@ GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software -Foundation Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +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-plus_263.yml b/src/licensedcode/data/rules/gpl-2.0-plus_263.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_263.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_264.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_264.RULE index 4d2995d657e..660ad41da47 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_264.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_264.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + * is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public Licence as published by the Free * Software Foundation; either version 2 of the Licence, or (at your option) @@ -8,4 +13,4 @@ * details. * You should have received a copy of the GNU General Public Licence along * with this program; if not, write to the Free Software Foundation, Inc., - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_264.yml b/src/licensedcode/data/rules/gpl-2.0-plus_264.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_264.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_265.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_265.RULE index 8c714f188bf..a26abe57945 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_265.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_265.RULE @@ -1 +1,7 @@ -licence GNU General Public Licence 2.0 or later +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +licence GNU General Public Licence 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_265.yml b/src/licensedcode/data/rules/gpl-2.0-plus_265.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_265_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_265_1.RULE index 635e411394b..00e0c033fce 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_265_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_265_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +notes: the warranty and disclaimer sections are funky +--- + 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 @@ -29,4 +36,4 @@ USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES You should have received a copy of the GNU General Public License -along with this program. +along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_265_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_265_1.yml deleted file mode 100644 index 5f1c6c21499..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_265_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -notes: the warranty and disclaimer sections are funky diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_265_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_265_2.RULE index 45163981631..9dc803aa921 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_265_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_265_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +minimum_coverage: 25 +notes: the warranty and disclaimer sections are funky +--- + 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 @@ -26,4 +34,4 @@ DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED -HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_265_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_265_2.yml deleted file mode 100644 index 1040fc8e63a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_265_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -minimum_coverage: 25 -notes: the warranty and disclaimer sections are funky diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_266.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_266.RULE index 4eeb91b4d33..f8a2213b1e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_266.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_266.RULE @@ -1 +1,7 @@ -is distributed under the terms of General Public Licence v2 (or later). +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +is distributed under the terms of General Public Licence v2 (or later). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_266.yml b/src/licensedcode/data/rules/gpl-2.0-plus_266.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_267.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_267.RULE index 6d2b759f14b..db23d16b821 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_267.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_267.RULE @@ -1 +1,9 @@ -is relased under the GNU General Public Licence 2.0 or later (see COPYING) +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +is relased under the GNU General Public Licence 2.0 or later (see COPYING) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_267.yml b/src/licensedcode/data/rules/gpl-2.0-plus_267.yml deleted file mode 100644 index 5bf969160df..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_267.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_268.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_268.RULE index 9ffc45d7c35..7fa193cf47f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_268.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_268.RULE @@ -1 +1,7 @@ -// Licensed under the GNU General Public License (GPL) version 2. +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +// Licensed under the GNU General Public License (GPL) version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_268.yml b/src/licensedcode/data/rules/gpl-2.0-plus_268.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_269.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_269.RULE index 4531d663896..89ac15c95db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_269.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_269.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + Licence GNU General Public Licence v2 or later; -Licence URI: +Licence URI: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_269.yml b/src/licensedcode/data/rules/gpl-2.0-plus_269.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_27.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_27.RULE index 2fc32c9b2bc..46019ae32d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_27.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +notes: GPL 2 or later notice, with debian line +--- + This package 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 @@ -13,4 +20,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_27.yml b/src/licensedcode/data/rules/gpl-2.0-plus_27.yml deleted file mode 100644 index 32db147e2da..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 -notes: GPL 2 or later notice, with debian line diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_270.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_270.RULE index 4d62d9f9649..c1d88e9ef38 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_270.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_270.RULE @@ -1 +1,7 @@ -Licence: GNU General Public Licence v2 or later +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licence: GNU General Public Licence v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_270.yml b/src/licensedcode/data/rules/gpl-2.0-plus_270.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_271.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_271.RULE index ed77355daf6..f163737a1cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_271.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_271.RULE @@ -1 +1,7 @@ -license GNU General Public License 2.0 or later +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +license GNU General Public License 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_271.yml b/src/licensedcode/data/rules/gpl-2.0-plus_271.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_272.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_272.RULE index 3a64bd4435c..5bdaa4e56dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_272.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_272.RULE @@ -1 +1,7 @@ -Licence: GNU General Public Licence (GPL) Version 2 or later +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licence: GNU General Public Licence (GPL) Version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_272.yml b/src/licensedcode/data/rules/gpl-2.0-plus_272.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_273.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_273.RULE index 07224127cb8..7d70874390d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_273.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_273.RULE @@ -1 +1,9 @@ -Licensed under GNU General Public Licence v2 or later - refer COPYING +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +Licensed under GNU General Public Licence v2 or later - refer COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_273.yml b/src/licensedcode/data/rules/gpl-2.0-plus_273.yml deleted file mode 100644 index 5bf969160df..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_273.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_274.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_274.RULE index 88ca0e37141..f4325766af7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_274.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_274.RULE @@ -1 +1,6 @@ -This document is released under the terms of the GNU General Public Licence. You can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, or (at your option) any later version. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + +This document is released under the terms of the GNU General Public Licence. You can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_274.yml b/src/licensedcode/data/rules/gpl-2.0-plus_274.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_274.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_275.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_275.RULE index f85ffad0909..6c3b1e5d849 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_275.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_275.RULE @@ -1 +1,7 @@ -This file is licenced under the terms of the GNU General Public Licence V2 or later +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +This file is licenced under the terms of the GNU General Public Licence V2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_275.yml b/src/licensedcode/data/rules/gpl-2.0-plus_275.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_276.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_276.RULE index f2ed975bf83..223879b59aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_276.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_276.RULE @@ -1,7 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/ +--- + This package is publisher under GNU GENERAL PUBLIC LICENCE. You can redistribute it and/or modify it under the terms og he GNU General Public Licence as published by the Free Software Foundation; either version 2 od the Licence, or (at your options) any later version. -See www.gnu.org for details. - +See www.gnu.org for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_276.yml b/src/licensedcode/data/rules/gpl-2.0-plus_276.yml deleted file mode 100644 index 702ba0d40c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_276.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_277.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_277.RULE index 2bcaf94e15d..079d44c65d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_277.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_277.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This program is licenced under terms of the // GNU General Public Licence version 2 or newer. -// See COPYING for details. +// See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_277.yml b/src/licensedcode/data/rules/gpl-2.0-plus_277.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_277.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_278.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_278.RULE index 90b41efd945..1c50966ca5f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_278.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_278.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + * This program is free software; you can redistrubute it and/or modify * * it under the terms of the GUN General Public Licence as published by * @@ -7,4 +12,4 @@ * This program is distrabuted in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public Licence for more details. + * GNU General Public Licence for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_278.yml b/src/licensedcode/data/rules/gpl-2.0-plus_278.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_278.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_279.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_279.RULE index a20c66229ff..0ebc74fe2ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_279.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_279.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This file 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 @@ -6,4 +11,4 @@ This file is free software; you can redistribute it and/or * 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. +* GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_279.yml b/src/licensedcode/data/rules/gpl-2.0-plus_279.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_279.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_28.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_28.RULE index 78ddd5f190c..2b0dea725f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_28.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_28.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later notice, debian style +--- + 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 @@ -13,4 +19,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_28.yml b/src/licensedcode/data/rules/gpl-2.0-plus_28.yml deleted file mode 100644 index e647c43ca3a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later notice, debian style diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_280.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_280.RULE index 32e27ab9b80..7ee3b9a27db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_280.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_280.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Licensed under the terms of the GNU General Public License, version 2 or later. Derivative works and later versions of the code must be free software licensed under the same or a compatible license. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_280.yml b/src/licensedcode/data/rules/gpl-2.0-plus_280.yml deleted file mode 100644 index 065322aa413..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_280.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_281.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_281.RULE index 0ea139d8228..a370f2f1bc0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_281.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_281.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify i t under the terms of the GNU General Public License as published by th e Free Software Foundation; either version 2 of the License, or (at you r -option) any later version. +option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_281.yml b/src/licensedcode/data/rules/gpl-2.0-plus_281.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_281.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_282.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_282.RULE index 6c5d77d6ecc..58e18e696b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_282.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_282.RULE @@ -1,4 +1,9 @@ +--- +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 later version. +2 of the License, or later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_282.yml b/src/licensedcode/data/rules/gpl-2.0-plus_282.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_282.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_283.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_283.RULE index 99452684ae6..8de5151ce1d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_283.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_283.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ the Free Software Foundation; either version 2 of the License, or 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 -General Public License for more details. +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_283.yml b/src/licensedcode/data/rules/gpl-2.0-plus_283.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_283.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_284.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_284.RULE index 0e30a7fe227..8d8f74c65e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_284.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_284.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + 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 @@ -8,4 +15,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. To obtain the license, point your browser to - http://www.gnu.org/copyleft/gpl.html + http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_284.yml b/src/licensedcode/data/rules/gpl-2.0-plus_284.yml deleted file mode 100644 index 53636a743dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_284.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_285.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_285.RULE index 54237fc4c82..bb33a05bee3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_285.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_285.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +--- + The software is licensed 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. A -copy of the GPL version 2 license can be found in the file COPYING. +copy of the GPL version 2 license can be found in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_285.yml b/src/licensedcode/data/rules/gpl-2.0-plus_285.yml deleted file mode 100644 index 0050c2edfb0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_285.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_286.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_286.RULE index c91408a2d94..e06dcd9f9ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_286.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_286.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,5 +15,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 General Public License -along with this program. - +along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_286.yml b/src/licensedcode/data/rules/gpl-2.0-plus_286.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_286.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_287.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_287.RULE index ad3273dea2a..ef75d4b5090 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_287.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_287.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 30 +--- + GNU CC 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, or (at your option) @@ -6,4 +12,4 @@ any later version. GNU CC 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. */ +GNU General Public License for more details. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_287.yml b/src/licensedcode/data/rules/gpl-2.0-plus_287.yml deleted file mode 100644 index 0b4412f5d55..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_287.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 30 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_288.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_288.RULE index a9e22414108..fd0dba70b35 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_288.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_288.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + is licensed 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. A -copy of the GPL version 2 license can be found in the file COPYING. +copy of the GPL version 2 license can be found in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_288.yml b/src/licensedcode/data/rules/gpl-2.0-plus_288.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_288.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_289.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_289.RULE index 3638b3b9279..7fa51e6a603 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_289.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_289.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GPL LICENSE This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -11,4 +16,4 @@ GPL LICENSE 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_289.yml b/src/licensedcode/data/rules/gpl-2.0-plus_289.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_289.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_29.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_29.RULE index 0fdd4ce0c3c..5a63e6457e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_29.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_29.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later Debian notice +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 2 of the License, or @@ -14,4 +22,4 @@ On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_29.yml b/src/licensedcode/data/rules/gpl-2.0-plus_29.yml deleted file mode 100644 index af3f8728064..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_290.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_290.RULE index 0c5cd3fdeaf..1a6e45afe5d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_290.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_290.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ Due to this file being licensed under the GPL there is controversy over whether this permits you to write a module that #includes this file without placing your module under the GPL. Please consult a lawyer for - advice before doing this. + advice before doing this. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_290.yml b/src/licensedcode/data/rules/gpl-2.0-plus_290.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_290.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_291.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_291.RULE index 67cc24b4d1d..4cd5f8be984 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_291.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_291.RULE @@ -1,3 +1,7 @@ -product is under the GNU General Public License, version 2 or later. -As such, this file is also under that license. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- +product is under the GNU General Public License, version 2 or later. +As such, this file is also under that license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_291.yml b/src/licensedcode/data/rules/gpl-2.0-plus_291.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_291.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_292.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_292.RULE index 2118876d4a6..658389e3b03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_292.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_292.RULE @@ -1,2 +1,7 @@ -product is under the GNU General Public License, version 2 or later. +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- +product is under the GNU General Public License, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_292.yml b/src/licensedcode/data/rules/gpl-2.0-plus_292.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_293.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_293.RULE index e8a22ba14e9..374a0d5a229 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_293.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_293.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the GNU General Public License v.2, or (at your option) any later version. @@ -7,4 +12,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 General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. +02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_293.yml b/src/licensedcode/data/rules/gpl-2.0-plus_293.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_293.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_294.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_294.RULE index 3179692c5a5..3739ee13495 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_294.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_294.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + '(("GPL2" t "This program is free software; you can redistribute it and/or" @@ -13,4 +18,4 @@ "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., 59 Temple Place, Suite 330," - "Boston, MA 02111-1307 USA") + "Boston, MA 02111-1307 USA") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_294.yml b/src/licensedcode/data/rules/gpl-2.0-plus_294.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_294.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_295.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_295.RULE index f26798f82e4..f0d043bba89 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_295.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_295.RULE @@ -1,7 +1,16 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +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 2, or (at your option) * any later version. * * You should have received a copy of the GNU General Public License - * (for example COPYING); If not, see . + * (for example COPYING); If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_295.yml b/src/licensedcode/data/rules/gpl-2.0-plus_295.yml deleted file mode 100644 index ae66ed519e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_295.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_296.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_296.RULE index 6fcf0af3b64..144eec856d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_296.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_296.RULE @@ -1,3 +1,10 @@ +--- +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, or (at your option) @@ -5,4 +12,4 @@ * * You should have received a copy of the GNU General Public License * (for example COPYING); if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * 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_296.yml b/src/licensedcode/data/rules/gpl-2.0-plus_296.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_296.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_297.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_297.RULE index d2eb1901775..02334fd3b84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_297.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_297.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_297.yml b/src/licensedcode/data/rules/gpl-2.0-plus_297.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_297.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_298.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_298.RULE index d6c68ab098d..2ec99bd04e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_298.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_298.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/ +--- + comes with ABSOLUTELY NO WARRANTY. This is free " "software, and you are welcome to redistribute it under " "the terms of the GNU General Public License; either " diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_298.yml b/src/licensedcode/data/rules/gpl-2.0-plus_298.yml deleted file mode 100644 index 8c54fffad8e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_298.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_299.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_299.RULE index d9c32a7ba76..b086ceef4ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_299.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_299.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + // eCos 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 or (at your option) any later @@ -10,4 +15,4 @@ // // You should have received a copy of the GNU General Public License // along with eCos; if not, write to the Free Software Foundation, Inc., -// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file +// 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_299.yml b/src/licensedcode/data/rules/gpl-2.0-plus_299.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_299.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_3.RULE index 9e62f59e71f..ebbc51ab2bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_3.RULE @@ -1,3 +1,8 @@ +--- +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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_3.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_30.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_30.RULE index b0231bd163e..2e921f0fffc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_30.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License: GPL v2 or later This package is free software; you can redistribute it and/or modify @@ -15,4 +20,4 @@ License: GPL v2 or later Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_30.yml b/src/licensedcode/data/rules/gpl-2.0-plus_30.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_300.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_300.RULE index 4ae8683f48b..f0d6f55b06a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_300.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_300.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + @license GNU GPL v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_300.yml b/src/licensedcode/data/rules/gpl-2.0-plus_300.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_301.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_301.RULE index a4decabc255..5c6a053ae73 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_301.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_301.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-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 General Public License as published by # the Free Software Foundation; either version 2 of the License, or @@ -9,4 +16,4 @@ # 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 . +# along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_301.yml b/src/licensedcode/data/rules/gpl-2.0-plus_301.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_301.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_302.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_302.RULE index b8c8b3d8d31..3b6f35d1bc6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_302.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_302.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + , released under the GPL. * * This program is free software; you can redistribute it and/or modify @@ -8,4 +13,4 @@ * 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. + * GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_302.yml b/src/licensedcode/data/rules/gpl-2.0-plus_302.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_302.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_303.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_303.RULE index b42340af641..8365bd08942 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_303.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_303.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + Released under the GPL, version 2 or greater. This software carries no warranty of any kind. (See COPYRIGHT for full copyright and warranty notices.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_303.yml b/src/licensedcode/data/rules/gpl-2.0-plus_303.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_303.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_304.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_304.RULE index a4f3a91eed7..8bdf0ec3b87 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_304.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_304.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + Released under the GPL, version 2 or greater. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_304.yml b/src/licensedcode/data/rules/gpl-2.0-plus_304.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_305.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_305.RULE index 6fdc1e8f7d7..03edd431094 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_305.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_305.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + programs is licensed under version 2 or later of the GNU General \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_305.yml b/src/licensedcode/data/rules/gpl-2.0-plus_305.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_306.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_306.RULE index 1f0c3c5b38f..1176f538ff9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_306.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_306.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - COPYING +--- + The keys in the keyrings don't fall under any copyright. Everything else in the package is covered by the GNU GPL. @@ -15,4 +23,4 @@ You should have received a copy of the GNU General Public License with your Debian system, in /usr/share/common-licenses/GPL, or with the Debian GNU debian-archive-keyring source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, -Fifth Floor, Boston, MA 02110-1301 USA. +Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_306.yml b/src/licensedcode/data/rules/gpl-2.0-plus_306.yml deleted file mode 100644 index f5530676fc1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_306.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_307.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_307.RULE index dd569e34545..938dee59a16 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_307.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_307.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +--- + eCos 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 or (at your option) any later version. eCos 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 eCos; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - +You should have received a copy of the GNU General Public License along with eCos; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_307.yml b/src/licensedcode/data/rules/gpl-2.0-plus_307.yml deleted file mode 100644 index 0978bf3629d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_308.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_308.RULE index 3b8251913c2..11e94277752 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_308.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_308.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +--- + the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 or (at your option) any later version.

diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_308.yml b/src/licensedcode/data/rules/gpl-2.0-plus_308.yml deleted file mode 100644 index 0978bf3629d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_308.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_309.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_309.RULE index 4e4db62cfc7..8f3c044a171 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_309.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_309.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + License: GNU General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_309.yml b/src/licensedcode/data/rules/gpl-2.0-plus_309.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_31.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_31.RULE index 5e0610acccd..be7baa810f0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_31.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_31.RULE @@ -1 +1,9 @@ -# This file is distributed under the same license as the Pychess package. +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 80 +minimum_coverage: 100 +notes: In 2006 Pychess used the GPL 2.0. It became GPL 3.0 in 2011 +--- + +# This file is distributed under the same license as the Pychess package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_31.yml b/src/licensedcode/data/rules/gpl-2.0-plus_31.yml deleted file mode 100644 index 896cb265e02..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 80 -minimum_coverage: 100 -notes: In 2006 Pychess used the GPL 2.0. It became GPL 3.0 in 2011 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_310.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_310.RULE index c325e7f414f..77b241c81f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_310.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_310.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_310.yml b/src/licensedcode/data/rules/gpl-2.0-plus_310.yml deleted file mode 100644 index 635029df31b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_310.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_311.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_311.RULE index f0ad16b057d..5b4ac56b3ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_311.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_311.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This texinfo.tex file 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, or (at @@ -11,4 +18,4 @@ You should have received a copy of the GNU General Public License along with this texinfo.tex file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. + Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_311.yml b/src/licensedcode/data/rules/gpl-2.0-plus_311.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_311.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_312.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_312.RULE index daf10bbe2d1..fab75c70842 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_312.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_312.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file 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, or (at @@ -11,4 +18,4 @@ You should have received a copy of the GNU General Public License along with this file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. + Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_312.yml b/src/licensedcode/data/rules/gpl-2.0-plus_312.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_312.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_313.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_313.RULE index 905755c6939..6388210f068 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_313.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_313.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This file may be redistributed under the terms of the GNU General Public License version 2 or at your discretion -any later version. +any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_313.yml b/src/licensedcode/data/rules/gpl-2.0-plus_313.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_313.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_314.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_314.RULE index 9817c57d36f..efa094c2d4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_314.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_314.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + * This library 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 @@ -10,4 +15,4 @@ * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_314.yml b/src/licensedcode/data/rules/gpl-2.0-plus_314.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_314.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_315.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_315.RULE index 619e01927a0..d5e3961f0aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_315.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_315.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) @@ -9,4 +16,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_315.yml b/src/licensedcode/data/rules/gpl-2.0-plus_315.yml deleted file mode 100644 index 02c63c1a7b9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_315.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_316.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_316.RULE index 91f59195a8f..7a9d014c40a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_316.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_316.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,4 +15,4 @@ You should have received copies of the GNU 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. + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_316.yml b/src/licensedcode/data/rules/gpl-2.0-plus_316.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_316.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_317.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_317.RULE index 14a6969ec98..8d79d604f50 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_317.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_317.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_317.yml b/src/licensedcode/data/rules/gpl-2.0-plus_317.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_318.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_318.RULE index 210a46317a7..3f38c9de2ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_318.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_318.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU-GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_318.yml b/src/licensedcode/data/rules/gpl-2.0-plus_318.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_319.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_319.RULE index 2eaf5abb8a0..1d5d273faa3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_319.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_319.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL-2.0-plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_319.yml b/src/licensedcode/data/rules/gpl-2.0-plus_319.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_319.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_32.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_32.RULE index 6a3769652e5..11e88e16852 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_32.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_32.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +notes: GPL 2 or later Debian notice for keyring +--- + Everything else in the package is covered by the GNU GPL. @@ -15,4 +23,4 @@ You should have received a copy of the GNU General Public License with your Debian system, in /usr/share/common-licenses/GPL, or with the Debian GNU debian-archive-keyring source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, -Fifth Floor, Boston, MA 02110-1301 USA. +Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_32.yml b/src/licensedcode/data/rules/gpl-2.0-plus_32.yml deleted file mode 100644 index a0baf439fde..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -notes: GPL 2 or later Debian notice for keyring diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_320.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_320.RULE index 6ce17aea275..bead2f38f90 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_320.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_320.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_320.yml b/src/licensedcode/data/rules/gpl-2.0-plus_320.yml deleted file mode 100644 index e97cdcaac62..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_320.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_321.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_321.RULE index da5e2550751..07229330f5b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_321.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_321.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + For the full software distribution and modifications made under the GNU General Public License version 2: @@ -13,4 +20,4 @@ Public License version 2: You should have received (README.license.GPL) a copy of the GNU 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 + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_321.yml b/src/licensedcode/data/rules/gpl-2.0-plus_321.yml deleted file mode 100644 index e97cdcaac62..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_321.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_322.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_322.RULE index 6bbe257c5fb..fa7ede78ddf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_322.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_322.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.txt +ignorable_urls: + - https://www.gnu.org/ +--- + 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, 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 software; see the file COPYING.txt. If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (or visit the web site https://www.gnu.org/). +You should have received a copy of the GNU General Public License along with this software; see the file COPYING.txt. If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (or visit the web site https://www.gnu.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_322.yml b/src/licensedcode/data/rules/gpl-2.0-plus_322.yml deleted file mode 100644 index a7b474d12f1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_322.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.txt -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_323.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_323.RULE index 1cc930d712e..2eeecac448a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_323.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_323.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - License.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_323.yml b/src/licensedcode/data/rules/gpl-2.0-plus_323.yml deleted file mode 100644 index a8c3daa3129..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_323.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_324.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_324.RULE index 7794a07e151..637fac267ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_324.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_324.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GPL: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_324.yml b/src/licensedcode/data/rules/gpl-2.0-plus_324.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_324.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_325.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_325.RULE index b5c30bdbe5e..6ba84def67f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_325.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_325.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This program is free software; you may 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 @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_325.yml b/src/licensedcode/data/rules/gpl-2.0-plus_325.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_325.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_326.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_326.RULE index f4d0f17ae54..5af4ebdc0a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_326.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_326.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This 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 @@ -11,4 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this software; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_326.yml b/src/licensedcode/data/rules/gpl-2.0-plus_326.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_326.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_327.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_327.RULE index c0d030e6618..08bf35ba8bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_327.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_327.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license GPL v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_327.yml b/src/licensedcode/data/rules/gpl-2.0-plus_327.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_327.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_328.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_328.RULE index 003b4b9fcd0..40b49f27966 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_328.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_328.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 94 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + // 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_328.yml b/src/licensedcode/data/rules/gpl-2.0-plus_328.yml deleted file mode 100644 index cd33082e75f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_328.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 94 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_329.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_329.RULE index bfda692bd87..c60b5a4f8af 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_329.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_329.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/copyleft/gpl.txt +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_329.yml b/src/licensedcode/data/rules/gpl-2.0-plus_329.yml deleted file mode 100644 index ed45989829f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_329.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/copyleft/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_33.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_33.RULE index d155bfbd693..229a1f6b00f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_33.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_33.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 90 +notes: seen in a Debian copyright file for evince +--- + GPLv2h \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_33.yml b/src/licensedcode/data/rules/gpl-2.0-plus_33.yml deleted file mode 100644 index 84c17ce4c06..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_33.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 90 -notes: seen in a Debian copyright file for evince diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_330.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_330.RULE index c37eaeeb5fc..e5a2de26120 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_330.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_330.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/copyleft/gpl.txt +--- + 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 Licenseor (at your @@ -6,4 +13,4 @@ option) any later version. See . This program is distributed in the hope that it will be usefulbut 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. +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_330.yml b/src/licensedcode/data/rules/gpl-2.0-plus_330.yml deleted file mode 100644 index ed45989829f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_330.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/copyleft/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_331.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_331.RULE index 4740b8eec73..2295a0db085 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_331.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_331.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.fsf.org/copyleft/gpl.txt +--- + "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", @@ -6,4 +15,4 @@ "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 (file COPYING in the distribution) for more details.", +"Public License (file COPYING in the distribution) for more details.", \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_331.yml b/src/licensedcode/data/rules/gpl-2.0-plus_331.yml deleted file mode 100644 index 21c2f2633a1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_331.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.fsf.org/copyleft/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_332.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_332.RULE index a19817015e9..5cdb2473404 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_332.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_332.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This is free documentation; 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 @@ -15,4 +23,4 @@ You should have received a copy of the GNU General Public License along with this manual. If not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_332.yml b/src/licensedcode/data/rules/gpl-2.0-plus_332.yml deleted file mode 100644 index 619ef8f707a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_332.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_333.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_333.RULE index c3345211e9e..66ab85f6bbd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_333.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_333.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + You should have received a copy of the GNU General Public License along with this program. If not, see . @@ -18,4 +26,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this manual. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_333.yml b/src/licensedcode/data/rules/gpl-2.0-plus_333.yml deleted file mode 100644 index 619ef8f707a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_333.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_334.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_334.RULE index 21d37f567f3..0d253e935e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_334.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_334.RULE @@ -1,3 +1,8 @@ +--- +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, or (at your option) @@ -10,4 +15,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_334.yml b/src/licensedcode/data/rules/gpl-2.0-plus_334.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_334.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_335.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_335.RULE index 4aa697959af..0463ac179c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_335.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_335.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GNU Autoconf 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, or (at your option) @@ -11,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with autoconf; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_335.yml b/src/licensedcode/data/rules/gpl-2.0-plus_335.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_335.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_336.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_336.RULE index 9410c1e70c8..34f752fb736 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_336.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_336.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - COPYING +--- + GNU 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, or (at your option) @@ -11,4 +19,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_336.yml b/src/licensedcode/data/rules/gpl-2.0-plus_336.yml deleted file mode 100644 index 27c92dc25bc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_337.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_337.RULE index 45aec1a88a3..adab3e4edbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_337.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_337.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + 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, or (at your option) @@ -11,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_337.yml b/src/licensedcode/data/rules/gpl-2.0-plus_337.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_337.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_338.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_338.RULE index 6bf0b2cf38b..eee21a5ba4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_338.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_338.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GNU Autoconf 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, or (at your option) @@ -11,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Autoconf; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_338.yml b/src/licensedcode/data/rules/gpl-2.0-plus_338.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_338.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_339.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_339.RULE index 10a82867548..e2f5991ff97 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_339.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_339.RULE @@ -1,3 +1,10 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_339.yml b/src/licensedcode/data/rules/gpl-2.0-plus_339.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_339.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_34.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_34.RULE index 64b6b55ce42..304287381c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_34.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_34.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: Lizartech gpl notice +ignorable_urls: + - http://www.fsf.org/ +--- + | This software is subject to, and may be distributed under, the | GNU General Public License, either Version 2 of the license, | or (at your option) any later version. The license should have @@ -22,4 +30,4 @@ | The LIZARDTECH ORIGINAL CODE is provided "AS IS" WITHOUT WARRANTY | OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED | TO ANY WARRANTY OF NON-INFRINGEMENT, OR ANY IMPLIED WARRANTY OF - | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_34.yml b/src/licensedcode/data/rules/gpl-2.0-plus_34.yml deleted file mode 100644 index acaf33f9a4f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: Lizartech gpl notice -ignorable_urls: - - http://www.fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_340.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_340.RULE index 1592412079a..760fa48ffd8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_340.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_340.RULE @@ -1,3 +1,10 @@ +--- +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 @@ -10,4 +17,4 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, see the file COPYING, or write - * to the Free Software Foundation, Inc., + * to the Free Software Foundation, Inc., \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_340.yml b/src/licensedcode/data/rules/gpl-2.0-plus_340.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_340.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_341.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_341.RULE index f61dcb1ba50..29477897961 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_341.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_341.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPLv2 or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_341.yml b/src/licensedcode/data/rules/gpl-2.0-plus_341.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_342.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_342.RULE index 032033fbdd8..eec604f1c1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_342.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_342.RULE @@ -1,3 +1,8 @@ +--- +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 version 2, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_342.yml b/src/licensedcode/data/rules/gpl-2.0-plus_342.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_342.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_343.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_343.RULE index e5ae9e1e004..784e227dc09 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_343.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_343.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 and conditions of the GNU General Public License, version 2 or later, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_343.yml b/src/licensedcode/data/rules/gpl-2.0-plus_343.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_343.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_344.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_344.RULE index a2f3c467176..125fcdc58ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_344.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_344.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ License, or (at your option) any later version. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_344.yml b/src/licensedcode/data/rules/gpl-2.0-plus_344.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_344.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_345.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_345.RULE index fc38b2eb642..ed5d5b196b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_345.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_345.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + (OSL/GPL code release authorized by ). @@ -13,5 +20,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. - +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_345.yml b/src/licensedcode/data/rules/gpl-2.0-plus_345.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_345.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_346.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_346.RULE index 800f8017555..5f8901cf124 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_346.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_346.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 96 +--- + GPL/Linux driver written by @@ -9,4 +15,4 @@ the Free Software Foundation; either version 2 of the License, or 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_346.yml b/src/licensedcode/data/rules/gpl-2.0-plus_346.yml deleted file mode 100644 index a9c08e9ea0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_346.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 96 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_347.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_347.RULE index d255ff29243..aa3f7ecd16a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_347.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_347.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This file is released under GPLv2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_347.yml b/src/licensedcode/data/rules/gpl-2.0-plus_347.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_347.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_348.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_348.RULE index 17a4431af48..88bed388321 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_348.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_348.RULE @@ -1,7 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + allowing the code to * be released under the GPL. * * 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. + * (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_348.yml b/src/licensedcode/data/rules/gpl-2.0-plus_348.yml deleted file mode 100644 index 28c839295ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_348.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_349.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_349.RULE index b9c34fe7081..1cb3d78cd09 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_349.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_349.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This code is covered by the GNU GPL and you are free to make any changes you wish to it under the terms of the license. However the code has the potential to render your computer and/or someone else's @@ -12,4 +19,4 @@ 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. + General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_349.yml b/src/licensedcode/data/rules/gpl-2.0-plus_349.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_349.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_35.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_35.RULE index 2c87558c652..062b03e7faf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_35.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_35.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_35.yml b/src/licensedcode/data/rules/gpl-2.0-plus_35.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_350.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_350.RULE index 89cfa08fa5d..4febf712ae7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_350.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_350.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GPL/Linux driver written by This program is free software; you can redistribute it and/or modify it @@ -12,4 +17,4 @@ 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. +Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_350.yml b/src/licensedcode/data/rules/gpl-2.0-plus_350.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_350.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_351.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_351.RULE index 936dad72238..8ef86673c1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_351.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_351.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +--- + GPL Linux driver by This program is free software; you can redistribute it and/or modify @@ -8,4 +14,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_351.yml b/src/licensedcode/data/rules/gpl-2.0-plus_351.yml deleted file mode 100644 index d8233381c10..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_351.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_352.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_352.RULE index 3528adbabdb..409bb676578 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_352.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_352.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This code also uses code from University, rereleased as GPL by its authors: @@ -13,4 +18,4 @@ 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. +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-plus_352.yml b/src/licensedcode/data/rules/gpl-2.0-plus_352.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_352.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_353.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_353.RULE index 4d0fe668729..7efc2869ba3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_353.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_353.RULE @@ -1,3 +1,10 @@ +--- +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) @@ -9,4 +16,4 @@ more details. The full GNU General Public License is in this distribution in the file - called COPYING. + called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_353.yml b/src/licensedcode/data/rules/gpl-2.0-plus_353.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_353.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_354.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_354.RULE index 9666f1030f6..bd60bc4ff1c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_354.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_354.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -14,4 +19,4 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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. +675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_354.yml b/src/licensedcode/data/rules/gpl-2.0-plus_354.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_354.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_355.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_355.RULE index 889d392dbe6..d9c360d2439 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_355.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_355.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This source code 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. +License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_355.yml b/src/licensedcode/data/rules/gpl-2.0-plus_355.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_355.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_356.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_356.RULE index 4b9341aa381..e23c69eb793 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_356.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_356.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This documentation 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. +version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_356.yml b/src/licensedcode/data/rules/gpl-2.0-plus_356.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_356.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_357.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_357.RULE index 91c96eaf114..cb87189fd2f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_357.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_357.RULE @@ -1 +1,7 @@ -is available under the GPL v2 or later. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +is available under the GPL v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_357.yml b/src/licensedcode/data/rules/gpl-2.0-plus_357.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_357.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_358.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_358.RULE index b989f7032e4..7be20d54a8b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_358.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_358.RULE @@ -1 +1,7 @@ -and is available under the GPL v2 or later. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +and is available under the GPL v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_358.yml b/src/licensedcode/data/rules/gpl-2.0-plus_358.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_358.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_359.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_359.RULE index 96d48f401ed..3d74e6b57b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_359.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_359.RULE @@ -1,6 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + and is available under the GPL v2 or later. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version -2 of the License, or (at your option) any later version. +2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_359.yml b/src/licensedcode/data/rules/gpl-2.0-plus_359.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_359.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_36.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_36.RULE index 29f968c4585..5485a088a46 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_36.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_36.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +notes: gpl 2 dedian notice +--- + 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. - The GPL may be found in /usr/share/common-licenses/GPL on a Debian system. + The GPL may be found in /usr/share/common-licenses/GPL on a Debian system. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_36.yml b/src/licensedcode/data/rules/gpl-2.0-plus_36.yml deleted file mode 100644 index 3eb2c7cf213..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 -notes: gpl 2 dedian notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_360.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_360.RULE index 9acff3f8363..cb178bd6606 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_360.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_360.RULE @@ -1 +1,7 @@ -available under the GPL v2 or later. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +available under the GPL v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_360.yml b/src/licensedcode/data/rules/gpl-2.0-plus_360.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_360.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_361.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_361.RULE index 7498b863e1a..6aa962d9b60 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_361.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_361.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + derived from GPLv2+ sources \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_361.yml b/src/licensedcode/data/rules/gpl-2.0-plus_361.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_361.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_362.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_362.RULE index 4a6305266ba..4e211ae67b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_362.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_362.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 any later version. +2 of the License, or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_362.yml b/src/licensedcode/data/rules/gpl-2.0-plus_362.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_362.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_363.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_363.RULE index bc3965edac8..62270484b7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_363.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_363.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is free software. You may copy, modify, and distribute it subject to the terms and conditions of the GNU General Public -License, version 2, or any later version, at your convenience. +License, version 2, or any later version, at your convenience. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_363.yml b/src/licensedcode/data/rules/gpl-2.0-plus_363.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_363.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_364.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_364.RULE index becc9dc6396..54a182eeba2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_364.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_364.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gpl-2.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 GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. You should have received a copy of the GNU General Public License - along with this program. If not, see . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_364.yml b/src/licensedcode/data/rules/gpl-2.0-plus_364.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_364.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_365.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_365.RULE index e903ddf3612..7c786683d28 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_365.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_365.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 @@ -12,6 +18,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_365.yml b/src/licensedcode/data/rules/gpl-2.0-plus_365.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_365.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_366.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_366.RULE index b09f702c161..f00bd508d55 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_366.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_366.RULE @@ -1,5 +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, Inc., 675 Mass Ave, Cambridge MA 02139, USA; either version 2 of the License, or (at your option) any later -version; incorporated herein by reference. +version; incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_366.yml b/src/licensedcode/data/rules/gpl-2.0-plus_366.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_366.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_367.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_367.RULE index 2ce003bf4bf..d5cdae64947 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_367.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_367.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) @@ -6,4 +12,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_367.yml b/src/licensedcode/data/rules/gpl-2.0-plus_367.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_367.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_368.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_368.RULE index d11e01f7dc0..9a728ab2fe8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_368.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_368.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the therms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -6,4 +12,4 @@ the Free Software Foundation; either version 2 of the License, or 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_368.yml b/src/licensedcode/data/rules/gpl-2.0-plus_368.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_368.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_369.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_369.RULE index ed66f0bdcef..3a7cc829e67 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_369.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_369.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 @@ -11,4 +17,4 @@ 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., 59 Temple Place - Suite 330, -Boston, MA 021110-1307, USA. +Boston, MA 021110-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_369.yml b/src/licensedcode/data/rules/gpl-2.0-plus_369.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_369.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_37.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_37.RULE index 64f780800f9..6fd1c09de9c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_37.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_37.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + 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 @@ -13,4 +19,4 @@ 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 PROGRAM. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_37.yml b/src/licensedcode/data/rules/gpl-2.0-plus_37.yml deleted file mode 100644 index 66ee53d7187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_370.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_370.RULE index 2669144eaee..048a204fd96 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_370.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_370.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +16,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_370.yml b/src/licensedcode/data/rules/gpl-2.0-plus_370.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_371.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_371.RULE index d6874b672a4..07e362f04e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_371.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_371.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + * This software may be freely redistributed and/or modified under the * terms of the GNU General Public License as published by the Free * Software Foundation; either version 2, or (at your option) any @@ -11,4 +18,4 @@ * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor - * Boston, MA 02110-1335, USA. + * Boston, MA 02110-1335, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_371.yml b/src/licensedcode/data/rules/gpl-2.0-plus_371.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_371.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_372.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_372.RULE index 1e4cf0aa110..fdcccffb612 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_372.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_372.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + * See file CREDITS for list of people who contributed to this * project. * diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_372.yml b/src/licensedcode/data/rules/gpl-2.0-plus_372.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_372.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_373.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_373.RULE index dea9fd4cb90..233daa2b202 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_373.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_373.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 30 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + This software is supplied under the terms of the GNU General Public License version 2 or later. The full text of the license can be found at: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_373.yml b/src/licensedcode/data/rules/gpl-2.0-plus_373.yml deleted file mode 100644 index d5e6cd60e99..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_373.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 30 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_374.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_374.RULE index 305b3d425eb..03d1a902b30 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_374.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_374.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_374.yml b/src/licensedcode/data/rules/gpl-2.0-plus_374.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_374.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_375.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_375.RULE index 48d87ca3b5a..eaf17f9381a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_375.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_375.RULE @@ -1 +1,8 @@ -is distributed 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. A copy of this license can be found in the file COPYING included with the source code of this program. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + +is distributed 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. A copy of this license can be found in the file COPYING included with the source code of this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_375.yml b/src/licensedcode/data/rules/gpl-2.0-plus_375.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_375.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_376.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_376.RULE index d9b053b1507..0dc49ad1730 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_376.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_376.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -12,4 +17,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_376.yml b/src/licensedcode/data/rules/gpl-2.0-plus_376.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_376.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_377.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_377.RULE index f9d735e5a57..f3230395243 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_377.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_377.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ On Debian systems the full text of the GNU General Public License can be found in the `/usr/share/common-licenses/GPL-2' diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_377.yml b/src/licensedcode/data/rules/gpl-2.0-plus_377.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_377.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE index bf6dd90c8e1..a3ce4446faa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + is free software. You can redistribute it and/or modify it under the terms of the GNU General Public License (GPL); either version 2, or (at your option) any - later version. + later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_378.yml b/src/licensedcode/data/rules/gpl-2.0-plus_378.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_378.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE index c70ad6ec3ed..0f590fc2437 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + You can redistribute it and/or modify it under the terms of the GNU General Public License (GPL); either version 2, or (at your option) any - later version. + later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_379.yml b/src/licensedcode/data/rules/gpl-2.0-plus_379.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_379.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_38.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_38.RULE index 36da7c84a6f..cab94793f00 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_38.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_38.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2 of the License, or @@ -12,4 +19,4 @@ along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_38.yml b/src/licensedcode/data/rules/gpl-2.0-plus_38.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_38.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_380.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_380.RULE index 6e4f4c777cc..0020f771b0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_380.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_380.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 99 +--- + The copyright holder is assumed to agree with the general licensing - terms (GPLv2+). + terms (GPLv2+). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_380.yml b/src/licensedcode/data/rules/gpl-2.0-plus_380.yml deleted file mode 100644 index f18672c1c5a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_380.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE index 5156f8668c2..f37c947d99b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software. You can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the @@ -9,4 +17,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_381.yml b/src/licensedcode/data/rules/gpl-2.0-plus_381.yml deleted file mode 100644 index cb2c8436055..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_381.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE index 5c9c1eddcb4..20e83fdea9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This is free software,GNU General Public License (GPL); -either version 2, or (at your option) any later version. +either version 2, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_382.yml b/src/licensedcode/data/rules/gpl-2.0-plus_382.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_382.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE index ea18de62ac8..901a94285ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This file is free software and is distributed under the terms of the GNU General Public License (GPL); either version 2, or (at your option) any -later version. +later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_383.yml b/src/licensedcode/data/rules/gpl-2.0-plus_383.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_383.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_384.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_384.RULE index b02759732c0..c3472329911 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_384.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_384.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + * Alternatively, this software may be distributed 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_384.yml b/src/licensedcode/data/rules/gpl-2.0-plus_384.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_384.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_385.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_385.RULE index 1e601488a60..b1dace966bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_385.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_385.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + this software may be distributed 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_385.yml b/src/licensedcode/data/rules/gpl-2.0-plus_385.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_385.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_386.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_386.RULE index 3a0657ef958..da013a018d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_386.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_386.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_386.yml b/src/licensedcode/data/rules/gpl-2.0-plus_386.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_387.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_387.RULE index 94b36e064a3..a643f79b5c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_387.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_387.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + FILE_LICENCE ( GPL2_OR_LATER ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_387.yml b/src/licensedcode/data/rules/gpl-2.0-plus_387.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_388.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_388.RULE index 58dce646a80..8095b0aa216 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_388.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_388.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + LICENCE ( GPL2_OR_LATER ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_388.yml b/src/licensedcode/data/rules/gpl-2.0-plus_388.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_389.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_389.RULE index 98f15fcf24b..fb81591e670 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_389.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_389.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_389.yml b/src/licensedcode/data/rules/gpl-2.0-plus_389.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_389.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_39.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_39.RULE index 2e8e58194c7..84dc67f84ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_39.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_39.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + The GNU General Public License, version 2 or (at your option) higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_39.yml b/src/licensedcode/data/rules/gpl-2.0-plus_39.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_390.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_390.RULE index 8168f468df2..8b40bb5a2aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_390.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_390.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GCC 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, or (at your option) @@ -11,4 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_390.yml b/src/licensedcode/data/rules/gpl-2.0-plus_390.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_390.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_391.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_391.RULE index 43f0f4b4965..ee72b0d8fcf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_391.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_391.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, or (at your option) any later version, as published by the Free @@ -11,4 +17,4 @@ GNU General Public License for more details You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +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_391.yml b/src/licensedcode/data/rules/gpl-2.0-plus_391.yml deleted file mode 100644 index 28c839295ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_392.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_392.RULE index c7e116ce5db..39306ac91c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_392.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_392.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed as - * GPL version 2 or later \ No newline at end of file + * GPL version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_392.yml b/src/licensedcode/data/rules/gpl-2.0-plus_392.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_392.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_393.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_393.RULE index 7416ed13900..2df83caf088 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_393.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_393.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + GCC 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, or (at your option) any later @@ -11,4 +19,4 @@ for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. +02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_393.yml b/src/licensedcode/data/rules/gpl-2.0-plus_393.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_393.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_394.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_394.RULE index 976c19f850a..03c9e25e52c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_394.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_394.RULE @@ -1 +1,9 @@ -The tools (tools/) are licensed under the GPLv2+. See the file COPYING.GPL. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL +--- + +The tools (tools/) are licensed under the GPLv2+. See the file COPYING.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_394.yml b/src/licensedcode/data/rules/gpl-2.0-plus_394.yml deleted file mode 100644 index 2c686599ff9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_394.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_395.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_395.RULE index e8f7aa33560..808031c844a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_395.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_395.RULE @@ -1 +1,9 @@ -The tools are licensed under the GPLv2+. +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL +--- + +The tools are licensed under the GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_395.yml b/src/licensedcode/data/rules/gpl-2.0-plus_395.yml deleted file mode 100644 index 2c686599ff9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_395.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_396.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_396.RULE index f269804bf92..e11cc02921c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_396.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_396.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * This plugin may be distributed according to the terms of the GNU * General Public License, version 2 or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_396.yml b/src/licensedcode/data/rules/gpl-2.0-plus_396.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_396.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_397.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_397.RULE index 61ed198d824..fd8fd1f2bc8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_397.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_397.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPL V2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_397.yml b/src/licensedcode/data/rules/gpl-2.0-plus_397.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_397.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_398.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_398.RULE index 74cb7c1f2ed..e40e28e6c78 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_398.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_398.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + licence GNU GPL v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_398.yml b/src/licensedcode/data/rules/gpl-2.0-plus_398.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_399.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_399.RULE index 5eeea836abe..db7fa28244a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_399.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_399.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + GNU GPL v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_399.yml b/src/licensedcode/data/rules/gpl-2.0-plus_399.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_399.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_4.RULE index a06c83a751c..3cd0bae0a21 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2 @@ -8,4 +13,4 @@ is free software; you can redistribute it and/or GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with ; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + 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_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_4.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_40.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_40.RULE index 3c647d42737..1b64d5a6703 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_40.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_40.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + is a free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, or (at your option) any later version. You should have received a copy of the GNU General Public Licence -along with +along with \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_40.yml b/src/licensedcode/data/rules/gpl-2.0-plus_40.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_400.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_400.RULE index 50dcec12ee2..3c71972709f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_400.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_400.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ | This program is free software; you can redistribute it and/or | modify it under the terms of the GNU General Public License @@ -15,4 +22,4 @@ License: GPL-2+ | | | On Debian systems, the complete text of the GNU General Public License - | version 2 can be found in “/usr/share/common-licenses/GPL-2”. + | version 2 can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_400.yml b/src/licensedcode/data/rules/gpl-2.0-plus_400.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_400.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_401.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_401.RULE index 521c7792fe0..05fa9fcbdca 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_401.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_401.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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; version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_401.yml b/src/licensedcode/data/rules/gpl-2.0-plus_401.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_401.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_402.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_402.RULE index 088d0678ba4..999811e4906 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_402.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_402.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -9,4 +17,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with . If not, see . + along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_402.yml b/src/licensedcode/data/rules/gpl-2.0-plus_402.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_402.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_403.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_403.RULE index 732690deb6a..1a2ef76e5bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_403.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_403.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * 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, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA; either version 2 of the License, or (at your option) any - * later version; \ No newline at end of file + * later version; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_403.yml b/src/licensedcode/data/rules/gpl-2.0-plus_403.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_403.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_404.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_404.RULE index 831d5d8e912..5514dfc8e7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_404.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_404.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -10,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with . If not, see . + along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_404.yml b/src/licensedcode/data/rules/gpl-2.0-plus_404.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_404.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_405.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_405.RULE index d66873d75d8..2c7ba2f6a05 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_405.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_405.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +notes: the license pointed to by the url is a GPL 2.0 or later +ignorable_urls: + - http://www.gelato.unsw.edu.au/archives/linux-ia64/0104/1405.html +--- + Stolen from David Mosberger's utrace tool, which he released under the GPL -(http://www.gelato.unsw.edu.au/archives/linux-ia64/0104/1405.html) */ +(http://www.gelato.unsw.edu.au/archives/linux-ia64/0104/1405.html) */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_405.yml b/src/licensedcode/data/rules/gpl-2.0-plus_405.yml deleted file mode 100644 index 9a526f0c651..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_405.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -notes: the license pointed to by the url is a GPL 2.0 or later -ignorable_urls: - - http://www.gelato.unsw.edu.au/archives/linux-ia64/0104/1405.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_406.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_406.RULE index 0387656a709..eb3014281c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_406.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_406.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + ;; 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, or (at your option) any later @@ -11,4 +17,4 @@ ;; You should have received a copy of the GNU General Public License ;; along with ; see the file COPYING. If not, write to the Free ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, -;; MA 02110-1301, USA. +;; MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_406.yml b/src/licensedcode/data/rules/gpl-2.0-plus_406.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_406.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_407.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_407.RULE index d191ceb8254..1ab2508e399 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_407.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_407.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + # 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) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_407.yml b/src/licensedcode/data/rules/gpl-2.0-plus_407.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_407.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_408.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_408.RULE index 10d37908f81..5fa71f1682e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_408.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_408.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * 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 @@ -10,4 +16,4 @@ * * You should have received a copy of the GNU General Public License * along with ; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_408.yml b/src/licensedcode/data/rules/gpl-2.0-plus_408.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_408.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_409.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_409.RULE index d03e76cf7c4..59831dc32b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_409.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_409.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_409.yml b/src/licensedcode/data/rules/gpl-2.0-plus_409.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_409.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_41.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_41.RULE index c8c85cf4277..9b971767bbd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_41.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: Pychess template +--- + 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 @@ -10,4 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with PyChess; if not, write to the Free Software Foundation, Inc. -51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_41.yml b/src/licensedcode/data/rules/gpl-2.0-plus_41.yml deleted file mode 100644 index 582bcd3031a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: Pychess template diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_410.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_410.RULE index 99733336e97..0cf298bcce7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_410.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_410.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL 2+ therefore \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_410.yml b/src/licensedcode/data/rules/gpl-2.0-plus_410.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_410.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_411.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_411.RULE index 33a24badefe..7024aba01d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_411.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_411.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 96 +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 @@ -13,4 +22,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -The GNU General Public License is contained in the file COPYING. +The GNU General Public License is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_411.yml b/src/licensedcode/data/rules/gpl-2.0-plus_411.yml deleted file mode 100644 index d8732bf8361..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_411.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 96 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_412.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_412.RULE index 53835001325..c2703b1216f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_412.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_412.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://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_412.yml b/src/licensedcode/data/rules/gpl-2.0-plus_412.yml deleted file mode 100644 index 1caf2a46fa8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_412.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_413.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_413.RULE index 96ddf16f0eb..d9b9e5e1c39 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_413.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_413.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your @@ -9,4 +17,4 @@ 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 . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_413.yml b/src/licensedcode/data/rules/gpl-2.0-plus_413.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_413.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_414.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_414.RULE index d7efe545396..1c9fefc3b91 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_414.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_414.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +--- + # GPL v2 License # # This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_414.yml b/src/licensedcode/data/rules/gpl-2.0-plus_414.yml deleted file mode 100644 index 6ea9a084bb9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_414.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_415.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_415.RULE index a499eb4fc90..eb80b9bfdb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_415.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_415.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_415.yml b/src/licensedcode/data/rules/gpl-2.0-plus_415.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_415.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_416.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_416.RULE index c5e0e2b4bd2..1570e835bec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_416.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_416.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_416.yml b/src/licensedcode/data/rules/gpl-2.0-plus_416.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_416.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_417.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_417.RULE index 33104bad312..6b1be4c2dd8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_417.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_417.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + and licensed under the GNU General Public License, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_417.yml b/src/licensedcode/data/rules/gpl-2.0-plus_417.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_417.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_418.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_418.RULE index 0de86bd2b69..943b3d7c5d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_418.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_418.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the license.gpl.html The GNU General Public License"> The GNU General Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_418.yml b/src/licensedcode/data/rules/gpl-2.0-plus_418.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_418.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_419.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_419.RULE index f1caf80c0dd..eb5b7c36c03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_419.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_419.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + If you contribute code to Valgrind, please ensure your contributions are licensed as "GPLv2, or (at your option) any later version." This is so as to allow the possibility of easily upgrading -the license to GPLv3 in future. \ No newline at end of file +the license to GPLv3 in future. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_419.yml b/src/licensedcode/data/rules/gpl-2.0-plus_419.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_419.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_42.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_42.RULE index 1a845a91173..092fb152c20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_42.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_42.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,4 +15,4 @@ * * You should have received a copy of the GNU General Public License * along with this program. If not, write to the Free Software - * Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_42.yml b/src/licensedcode/data/rules/gpl-2.0-plus_42.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_42.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_420.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_420.RULE index 5ace10866d0..537750f5710 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_420.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_420.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 @@ -10,5 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ - +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_420.yml b/src/licensedcode/data/rules/gpl-2.0-plus_420.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_420.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_421.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_421.RULE index b2938337235..a9d0d0e1f18 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_421.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_421.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_421.yml b/src/licensedcode/data/rules/gpl-2.0-plus_421.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_421.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_422.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_422.RULE index 88cd8f122bc..a67b65fc597 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_422.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_422.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + naturally licensed under the GNU General Public License version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_422.yml b/src/licensedcode/data/rules/gpl-2.0-plus_422.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_422.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_423.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_423.RULE index 372bb539f1f..861f195f492 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_423.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_423.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + and naturally licensed under the GNU General Public License version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_423.yml b/src/licensedcode/data/rules/gpl-2.0-plus_423.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_423.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_424.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_424.RULE index 3e42507e51b..d5e90c8aeb2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_424.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_424.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL-2-or-later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_424.yml b/src/licensedcode/data/rules/gpl-2.0-plus_424.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_424.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_425.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_425.RULE index f787b55d9b5..1354d6ddb7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_425.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_425.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + and is also GPL-2-or-later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_425.yml b/src/licensedcode/data/rules/gpl-2.0-plus_425.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_425.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_426.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_426.RULE index 2789053d15c..b89bd5dd056 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_426.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_426.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The LZO library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -12,5 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the LZO library; see the file COPYING. If not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - +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_426.yml b/src/licensedcode/data/rules/gpl-2.0-plus_426.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_426.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_427.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_427.RULE index a45a274bcb6..fe4e63ce03d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_427.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_427.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Released under {{GNU General Public License (GPL) version 2}} This program is free software; you can redistribute it and/or @@ -15,4 +23,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -The GNU General Public License is contained in the file COPYING. +The GNU General Public License is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_427.yml b/src/licensedcode/data/rules/gpl-2.0-plus_427.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_427.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_428.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_428.RULE index a9e69854f77..628c4c9c5b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_428.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_428.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 @@ -20,4 +26,4 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. - The GNU General Public License is contained in the file COPYING. + The GNU General Public License is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_428.yml b/src/licensedcode/data/rules/gpl-2.0-plus_428.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_428.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_429.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_429.RULE index af83b0459d1..ed698355228 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_429.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_429.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + released under GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_429.yml b/src/licensedcode/data/rules/gpl-2.0-plus_429.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_429.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_43.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_43.RULE index 28660a1899d..45590244111 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_43.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_43.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + # Distributed under the terms of the GPL (GNU Public License) # # DrPython is free software; you can redistribute it and/or modify @@ -12,4 +17,4 @@ # # 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., +# Foundation, Inc., \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_43.yml b/src/licensedcode/data/rules/gpl-2.0-plus_43.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_43.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_430.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_430.RULE index 8fd7f663f67..b04c7b30bc8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_430.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_430.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + released under GPLv2+ (later versions LGPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_430.yml b/src/licensedcode/data/rules/gpl-2.0-plus_430.yml deleted file mode 100644 index 88b875b6871..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_430.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_431.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_431.RULE index 7a6f344b68b..753f4530b6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_431.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_431.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + 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 @@ -13,4 +20,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - The GNU General Public License is contained in the file COPYING. + The GNU General Public License is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_431.yml b/src/licensedcode/data/rules/gpl-2.0-plus_431.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_431.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_432.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_432.RULE index ff47da73d3d..a0015a8b00f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_432.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_432.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -17,4 +24,4 @@ The GNU General Public License is contained in the file LICENSE.GPL. If you want to contribute code , please ensure it is licensed - as "GPL v2 or later". + as "GPL v2 or later". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_432.yml b/src/licensedcode/data/rules/gpl-2.0-plus_432.yml deleted file mode 100644 index 683204b0a66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_432.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_433.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_433.RULE index 0a659f2086a..809045c4e1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_433.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_433.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -17,4 +24,4 @@ The GNU General Public License is contained in the file LICENSE.GPL. If you want to contribute code to LibVEX, please ensure it is licensed - as "GPL v2 or later". + as "GPL v2 or later". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_433.yml b/src/licensedcode/data/rules/gpl-2.0-plus_433.yml deleted file mode 100644 index 683204b0a66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_433.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_434.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_434.RULE index c027a901c26..3e31ccb26ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_434.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_434.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version - 2 of the License, or (at your option) any later version. - + 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_434.yml b/src/licensedcode/data/rules/gpl-2.0-plus_434.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_434.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_435.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_435.RULE index 7ace7dc3bb4..4c4638a17d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_435.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_435.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_435.yml b/src/licensedcode/data/rules/gpl-2.0-plus_435.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_435.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_436.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_436.RULE index 8c10f5e50ad..1958d415de7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_436.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_436.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - Documentation/scsi/dpti.txt +--- + See Documentation/scsi/dpti.txt for history, notes, license info and credits * 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. * + * (at your option) any later version. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_436.yml b/src/licensedcode/data/rules/gpl-2.0-plus_436.yml deleted file mode 100644 index b29155cece1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_436.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - Documentation/scsi/dpti.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_437.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_437.RULE index 8c01c47f61c..91813d8a49c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_437.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_437.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + lustre 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 @@ -10,4 +18,4 @@ 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-plus_437.yml b/src/licensedcode/data/rules/gpl-2.0-plus_437.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_437.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_438.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_438.RULE index 155480162ad..fa126e66a67 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_438.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_438.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +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) @@ -13,4 +22,4 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. The full GNU General Public License is in this distribution in the file -called COPYING. +called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_438.yml b/src/licensedcode/data/rules/gpl-2.0-plus_438.yml deleted file mode 100644 index 53d63051623..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_438.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_439.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_439.RULE index a3c2930e643..ba5212dcfc1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_439.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_439.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + See file CREDITS for list of people who contributed to this project. @@ -14,4 +19,4 @@ 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., 59 Temple Place, Suite 330, Boston, -MA 02111-1307 USA +MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_439.yml b/src/licensedcode/data/rules/gpl-2.0-plus_439.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_439.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_44.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_44.RULE index 3a9ad9dca00..251fab93e2d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_44.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_44.RULE @@ -1,3 +1,8 @@ +--- +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 * @@ -13,4 +18,4 @@ * You should have received a copy of the GNU General * * Public License along with this kernel; if not, write to * * the Free Software Foundation, Inc., 675 Mass Ave, * - * Cambridge, MA 02139, USA. * + * Cambridge, MA 02139, USA. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_44.yml b/src/licensedcode/data/rules/gpl-2.0-plus_44.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_440.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_440.RULE index 0dbf5f0e7bf..c72b5a4cc39 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_440.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_440.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + Original taken from the GNU Project 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. +2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_440.yml b/src/licensedcode/data/rules/gpl-2.0-plus_440.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_440.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_441.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_441.RULE index 4d8b306cce9..536c2f46ac8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_441.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_441.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +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 2 of the License, or @@ -9,4 +17,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_441.yml b/src/licensedcode/data/rules/gpl-2.0-plus_441.yml deleted file mode 100644 index cb2c8436055..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_441.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_442.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_442.RULE index 343c91dd057..e09a0a3600d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_442.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_442.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This file may be distributed under the terms of the GNU General 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 @@ -11,4 +16,4 @@ 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. +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-plus_442.yml b/src/licensedcode/data/rules/gpl-2.0-plus_442.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_442.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_443.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_443.RULE index ee8ebf2b15f..9bf328af78f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_443.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_443.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +minimum_coverage: 50 +--- + 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 @@ -10,4 +17,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the -Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_443.yml b/src/licensedcode/data/rules/gpl-2.0-plus_443.yml deleted file mode 100644 index c7e2db01d40..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_443.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_444.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_444.RULE index 57f6238f1e1..faf86ed2f25 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_444.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_444.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GPL driver made by This program is free software; you can redistribute it and/or modify @@ -12,4 +17,4 @@ GPL driver made by 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. + 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-plus_444.yml b/src/licensedcode/data/rules/gpl-2.0-plus_444.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_444.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_445.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_445.RULE index 7236d26ef9e..85e8d294017 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_445.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_445.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -5,4 +10,4 @@ the License, or (at your option) any later version. Neither nor University of admit liability nor provide warranty for any of this software. This material is -provided "AS-IS" and at no charg. +provided "AS-IS" and at no charg. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_445.yml b/src/licensedcode/data/rules/gpl-2.0-plus_445.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_445.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_446.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_446.RULE index 22c5ba2ab87..27594edd6a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_446.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_446.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ the License, or (at your option) any later version. Neither University admit liability nor provide warranty for any of this software. This material is -provided "AS-IS" and at no charge. +provided "AS-IS" and at no charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_446.yml b/src/licensedcode/data/rules/gpl-2.0-plus_446.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_446.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_447.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_447.RULE index e28a567c461..3c7dc247db0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_447.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_447.RULE @@ -1,7 +1,12 @@ +--- +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. I provide no warranty for any of this software. -This material is provided "AS-IS" and at no charge. +This material is provided "AS-IS" and at no charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_447.yml b/src/licensedcode/data/rules/gpl-2.0-plus_447.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_447.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_448.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_448.RULE index eb738a18e34..1a510a0033f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_448.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_448.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -5,4 +10,4 @@ as published by the Free Software Foundation; either version The authors do NOT admit liability nor provide warranty for any of this software. This material is provided "AS-IS" in -the hope that it may be useful for others. +the hope that it may be useful for others. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_448.yml b/src/licensedcode/data/rules/gpl-2.0-plus_448.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_448.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_449.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_449.RULE index 8e7de3bb094..dd2f7ef1d9e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_449.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_449.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -5,4 +10,4 @@ as published by the Free Software Foundation; either version The author does NOT admit liability nor provide warranty for any of this software. This material is provided "AS-IS" in -the hope that it may be useful for others. +the hope that it may be useful for others. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_449.yml b/src/licensedcode/data/rules/gpl-2.0-plus_449.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_449.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_45.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_45.RULE index fa3b856c64c..977df5ed69e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_45.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_45.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + /// GPL license users are subject to 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. +/// option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_45.yml b/src/licensedcode/data/rules/gpl-2.0-plus_45.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_450.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_450.RULE index da13619bf23..23c0b951b90 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_450.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_450.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_450.yml b/src/licensedcode/data/rules/gpl-2.0-plus_450.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_450.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_451.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_451.RULE index 42454d56d4a..045cc8aa6c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_451.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_451.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_451.yml b/src/licensedcode/data/rules/gpl-2.0-plus_451.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_451.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_452.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_452.RULE index 662e7271bfa..cc9c297b31f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_452.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_452.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL2PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_452.yml b/src/licensedcode/data/rules/gpl-2.0-plus_452.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_452.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_453.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_453.RULE index 7f922bd7c7b..608a81c5e37 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_453.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_453.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL20PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_453.yml b/src/licensedcode/data/rules/gpl-2.0-plus_453.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_453.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_454.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_454.RULE index d5433211d71..2f5c6c40c0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_454.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_454.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv2PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_454.yml b/src/licensedcode/data/rules/gpl-2.0-plus_454.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_454.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_455.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_455.RULE index e38e78c3d6d..2ba1698b60f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_455.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_455.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv20PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_455.yml b/src/licensedcode/data/rules/gpl-2.0-plus_455.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_455.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_456.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_456.RULE index 59b52794ac6..76b6ff67bf4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_456.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_456.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_456.yml b/src/licensedcode/data/rules/gpl-2.0-plus_456.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_456.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_457.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_457.RULE index 8151a43a712..a8c6a207f84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_457.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_457.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_457.yml b/src/licensedcode/data/rules/gpl-2.0-plus_457.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_457.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_458.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_458.RULE index 7d97b75699d..84da06f80e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_458.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_458.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_458.yml b/src/licensedcode/data/rules/gpl-2.0-plus_458.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_458.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_459.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_459.RULE index effd1dc6a88..99f6b40614d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_459.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_459.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl 2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_459.yml b/src/licensedcode/data/rules/gpl-2.0-plus_459.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_459.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_46.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_46.RULE index 869d60abc8c..2654a0da499 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_46.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_46.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/ + - http://www.fsf.org/licensing/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 (www.fsf.org); either version 2 of the @@ -9,4 +17,4 @@ This program is free software; you can redistribute it and/or modify ' GNU General Public License for more details. ' ' A copy of the GNU General Public License is available at -' http://www.fsf.org/licensing/licenses +' http://www.fsf.org/licensing/licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_46.yml b/src/licensedcode/data/rules/gpl-2.0-plus_46.yml deleted file mode 100644 index c10d637ab81..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/ - - http://www.fsf.org/licensing/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_460.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_460.RULE index 8f7acefde97..76864f4fa6a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_460.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_460.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_460.yml b/src/licensedcode/data/rules/gpl-2.0-plus_460.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_460.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_461.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_461.RULE index 7049e8a89b8..31327237e8a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_461.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_461.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_461.yml b/src/licensedcode/data/rules/gpl-2.0-plus_461.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_461.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_462.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_462.RULE index aa4107d1b4e..ccbf4691132 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_462.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_462.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_462.yml b/src/licensedcode/data/rules/gpl-2.0-plus_462.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_462.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_463.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_463.RULE index eb99ffea777..30d95a28c7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_463.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_463.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_463.yml b/src/licensedcode/data/rules/gpl-2.0-plus_463.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_463.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_464.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_464.RULE index a5421afda6a..8dc62d74cf6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_464.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_464.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_464.yml b/src/licensedcode/data/rules/gpl-2.0-plus_464.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_464.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_465.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_465.RULE index 6a960995986..6bfa482c710 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_465.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_465.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_465.yml b/src/licensedcode/data/rules/gpl-2.0-plus_465.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_465.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_466.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_466.RULE index 4ac73b6460d..fc0353589a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_466.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_466.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL2PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_466.yml b/src/licensedcode/data/rules/gpl-2.0-plus_466.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_466.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_467.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_467.RULE index d790362b871..39a9d23b6a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_467.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_467.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL20PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_467.yml b/src/licensedcode/data/rules/gpl-2.0-plus_467.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_467.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_468.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_468.RULE index 2c3bb22de55..628858d4448 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_468.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_468.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv2PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_468.yml b/src/licensedcode/data/rules/gpl-2.0-plus_468.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_468.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_469.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_469.RULE index eb1d1655ac3..f16e80a501c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_469.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_469.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv20PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_469.yml b/src/licensedcode/data/rules/gpl-2.0-plus_469.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_469.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_47.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_47.RULE index b4dd02ef2b6..820de0f9b3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_47.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_47.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL-2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_47.yml b/src/licensedcode/data/rules/gpl-2.0-plus_47.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_470.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_470.RULE index cf398f32df3..aa864f7db65 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_470.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_470.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_470.yml b/src/licensedcode/data/rules/gpl-2.0-plus_470.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_470.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_471.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_471.RULE index 2c023688995..479fb764ffe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_471.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_471.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_471.yml b/src/licensedcode/data/rules/gpl-2.0-plus_471.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_471.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_472.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_472.RULE index 7b5838c4380..18d09169ab6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_472.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_472.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_472.yml b/src/licensedcode/data/rules/gpl-2.0-plus_472.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_472.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_473.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_473.RULE index 969326b2a60..cd4355c24f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_473.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_473.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_473.yml b/src/licensedcode/data/rules/gpl-2.0-plus_473.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_473.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_474.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_474.RULE index 4f65b0ca22d..bb17fc5804a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_474.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_474.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 2plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_474.yml b/src/licensedcode/data/rules/gpl-2.0-plus_474.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_474.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_475.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_475.RULE index 543c95d5ab8..c375a4607f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_475.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_475.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 20plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_475.yml b/src/licensedcode/data/rules/gpl-2.0-plus_475.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_475.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_476.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_476.RULE index 82455594371..fcecafcada1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_476.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_476.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v2plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_476.yml b/src/licensedcode/data/rules/gpl-2.0-plus_476.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_476.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_477.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_477.RULE index 4fa5301941d..445209baecc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_477.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_477.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v20plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_477.yml b/src/licensedcode/data/rules/gpl-2.0-plus_477.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_477.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_478.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_478.RULE index a483ce7c1d4..e6a67922ac7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_478.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_478.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_478.yml b/src/licensedcode/data/rules/gpl-2.0-plus_478.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_478.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_479.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_479.RULE index 8255bd5fc11..606707878c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_479.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_479.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_479.yml b/src/licensedcode/data/rules/gpl-2.0-plus_479.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_479.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_48.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_48.RULE index 50c1b799b73..c6e08049deb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_48.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_48.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + Released under the GNU GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_48.yml b/src/licensedcode/data/rules/gpl-2.0-plus_48.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_480.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_480.RULE index 8d35d80ddd1..79397a29a3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_480.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_480.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_480.yml b/src/licensedcode/data/rules/gpl-2.0-plus_480.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_480.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_481.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_481.RULE index 01305520db7..fb53ba53e5f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_481.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_481.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_481.yml b/src/licensedcode/data/rules/gpl-2.0-plus_481.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_481.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_482.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_482.RULE index 087851e91db..a2ddf94d6eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_482.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_482.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_482.yml b/src/licensedcode/data/rules/gpl-2.0-plus_482.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_482.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_483.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_483.RULE index 9ff017ad9b5..a7907997b3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_483.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_483.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_483.yml b/src/licensedcode/data/rules/gpl-2.0-plus_483.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_483.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_484.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_484.RULE index b0668c45c77..16ddeb1ed8f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_484.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_484.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_484.yml b/src/licensedcode/data/rules/gpl-2.0-plus_484.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_484.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_485.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_485.RULE index a3f1206d141..4679ce90adc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_485.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_485.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_485.yml b/src/licensedcode/data/rules/gpl-2.0-plus_485.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_485.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_486.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_486.RULE index f50846e727b..eb9958304f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_486.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_486.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_486.yml b/src/licensedcode/data/rules/gpl-2.0-plus_486.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_486.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_487.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_487.RULE index 91478aaa5c9..c69390f555d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_487.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_487.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_487.yml b/src/licensedcode/data/rules/gpl-2.0-plus_487.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_487.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_488.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_488.RULE index 4fc3341b8c3..ad68203ff1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_488.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_488.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_488.yml b/src/licensedcode/data/rules/gpl-2.0-plus_488.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_488.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_489.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_489.RULE index 641f60f35e8..5637912ec50 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_489.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_489.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_489.yml b/src/licensedcode/data/rules/gpl-2.0-plus_489.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_489.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_49.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_49.RULE index e492cea2c6b..551b3409315 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_49.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_49.RULE @@ -1,3 +1,8 @@ +--- +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, or (at your option) @@ -11,4 +16,4 @@ # 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., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. +# 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_49.yml b/src/licensedcode/data/rules/gpl-2.0-plus_49.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_49.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_490.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_490.RULE index e6529f880e0..af54f2aa139 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_490.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_490.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl2plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_490.yml b/src/licensedcode/data/rules/gpl-2.0-plus_490.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_490.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_491.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_491.RULE index 7e675fcd96f..c6ec3345915 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_491.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_491.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl20plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_491.yml b/src/licensedcode/data/rules/gpl-2.0-plus_491.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_491.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_492.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_492.RULE index 0a273e0ff20..0183ab24138 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_492.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_492.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv2plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_492.yml b/src/licensedcode/data/rules/gpl-2.0-plus_492.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_492.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_493.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_493.RULE index c8b70b0a41e..170caf8c36f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_493.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_493.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv20plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_493.yml b/src/licensedcode/data/rules/gpl-2.0-plus_493.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_493.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_494.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_494.RULE index dd9f1fea378..e175aac9715 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_494.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_494.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_494.yml b/src/licensedcode/data/rules/gpl-2.0-plus_494.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_494.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_495.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_495.RULE index d99e0915276..1e6dbfd24fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_495.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_495.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_495.yml b/src/licensedcode/data/rules/gpl-2.0-plus_495.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_495.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_496.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_496.RULE index 5939e014475..e8f3d6f8ef1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_496.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_496.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_496.yml b/src/licensedcode/data/rules/gpl-2.0-plus_496.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_496.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_497.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_497.RULE index 3e001dbdb33..581d6b15092 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_497.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_497.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_497.yml b/src/licensedcode/data/rules/gpl-2.0-plus_497.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_497.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_498.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_498.RULE index 04fcac8cc96..f4fa73594c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_498.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_498.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_498.yml b/src/licensedcode/data/rules/gpl-2.0-plus_498.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_498.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_499.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_499.RULE index af0fc1b5714..bdd581bb909 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_499.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_499.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_499.yml b/src/licensedcode/data/rules/gpl-2.0-plus_499.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_499.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_5.RULE index 6502be284c1..cf09909940d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_5.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: gpl 2 debian notice +--- + * 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, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA; either version 2 of the License, or (at your option) any - * later version; incorporated herein by reference. + * later version; incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_5.yml deleted file mode 100644 index 736fb508e0d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: gpl 2 debian notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_50.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_50.RULE index cbd16077142..189268ef524 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_50.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_50.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU GPL version 2 * or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_50.yml b/src/licensedcode/data/rules/gpl-2.0-plus_50.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_500.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_500.RULE index bc42afc2530..714dd6b1d83 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_500.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_500.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_500.yml b/src/licensedcode/data/rules/gpl-2.0-plus_500.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_500.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_501.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_501.RULE index cddd9e6cb4b..73077459310 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_501.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_501.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_501.yml b/src/licensedcode/data/rules/gpl-2.0-plus_501.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_501.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_502.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_502.RULE index ba7ae0269b7..01e5a3e74f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_502.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_502.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_502.yml b/src/licensedcode/data/rules/gpl-2.0-plus_502.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_502.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_503.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_503.RULE index 534e4884d3c..91d827563c3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_503.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_503.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + 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 @@ -17,4 +23,4 @@ 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 PROGRAM. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_503.yml b/src/licensedcode/data/rules/gpl-2.0-plus_503.yml deleted file mode 100644 index 28c839295ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_503.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_504.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_504.RULE index 86ccf41699d..67679e3abbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_504.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_504.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LICENSE 2 (GNU GPL v2 or later): \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_504.yml b/src/licensedcode/data/rules/gpl-2.0-plus_504.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_504.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_505.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_505.RULE index 22a84b208a0..1f270b71f63 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_505.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_505.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 @@ -9,4 +15,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. A copy of the GNU General Public License version 2 is provided along -with this program. +with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_505.yml b/src/licensedcode/data/rules/gpl-2.0-plus_505.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_505.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_506.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_506.RULE index b67c9e1d945..e932f3eea49 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_506.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_506.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - COPYING +--- + This texinfo.tex file 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, or (at @@ -16,5 +25,4 @@ Boston, MA 02111-1307, USA. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve -what you give them. Help stamp out software-hoarding! - +what you give them. Help stamp out software-hoarding! \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_506.yml b/src/licensedcode/data/rules/gpl-2.0-plus_506.yml deleted file mode 100644 index 53d63051623..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_506.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_507.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_507.RULE index 824e13af580..9f1b819785d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_507.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_507.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - COPYING +--- + This texinfo.tex file 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, or (at @@ -11,5 +20,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this texinfo.tex file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. - +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_507.yml b/src/licensedcode/data/rules/gpl-2.0-plus_507.yml deleted file mode 100644 index 53d63051623..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_507.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_508.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_508.RULE index cf5880a2961..3c2be0c1464 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_508.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_508.RULE @@ -1 +1,10 @@ - * see btnx.c for detailed license information +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - btnx.c +--- + + * see btnx.c for detailed license information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_508.yml b/src/licensedcode/data/rules/gpl-2.0-plus_508.yml deleted file mode 100644 index 460b1bf40c3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_508.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - btnx.c diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_509.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_509.RULE index f9b3a8f0574..f9c4ece3223 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_509.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_509.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license GPLv2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_509.yml b/src/licensedcode/data/rules/gpl-2.0-plus_509.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_509.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_51.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_51.RULE index 41d99332256..465381fed64 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_51.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_51.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + is licensed under the GPLv2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_51.yml b/src/licensedcode/data/rules/gpl-2.0-plus_51.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_510.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_510.RULE index 0573e31df40..78d0ccef6c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_510.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_510.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + tools are licensed under the GNU GPL version 2 or newer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_510.yml b/src/licensedcode/data/rules/gpl-2.0-plus_510.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_510.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_511.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_511.RULE index 54b3a336903..84a0ecfe4ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_511.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_511.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v.2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_511.yml b/src/licensedcode/data/rules/gpl-2.0-plus_511.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_511.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_512.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_512.RULE index a89caf79c31..6cd8b5d9602 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_512.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_512.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_512.yml b/src/licensedcode/data/rules/gpl-2.0-plus_512.yml deleted file mode 100644 index bd5bb5a7221..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_512.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_513.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_513.RULE index 1bde9bbfcd7..1c6402c2bfd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_513.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_513.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/ +--- + * 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. See http://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_513.yml b/src/licensedcode/data/rules/gpl-2.0-plus_513.yml deleted file mode 100644 index 9f34132e8e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_513.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_514.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_514.RULE index d1ec3438f16..4ef25b8a84e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_514.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_514.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + GNU General Public License v2.0+ (see COPYING or https://www.gnu.org/licenses/gpl-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_514.yml b/src/licensedcode/data/rules/gpl-2.0-plus_514.yml deleted file mode 100644 index 298430d1a04..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_514.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_515.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_515.RULE index c190732fb5d..e430c9bb53c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_515.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_515.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_515.yml b/src/licensedcode/data/rules/gpl-2.0-plus_515.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_515.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_516.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_516.RULE index 8efb6451e7f..872b42d7292 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_516.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_516.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.php + - COPYRIGHT.php +--- + * @license GNU/GPL, see LICENSE.php * is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_516.yml b/src/licensedcode/data/rules/gpl-2.0-plus_516.yml deleted file mode 100644 index 140a1fc2e00..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_516.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.php - - COPYRIGHT.php diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_517.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_517.RULE index 5e5dcdfeade..19cab8766b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_517.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_517.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.php +--- + * @license GNU/GPL, see LICENSE.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_517.yml b/src/licensedcode/data/rules/gpl-2.0-plus_517.yml deleted file mode 100644 index 0d7a2471d6d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_517.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.php diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_518.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_518.RULE index 02e3f44a84b..917724787cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_518.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_518.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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. The fonts are distributed 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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_518.yml b/src/licensedcode/data/rules/gpl-2.0-plus_518.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_518.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_519.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_519.RULE index b122b1d3b8e..f382657975e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_519.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_519.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * * The "Artistic Style" project, including all files needed to compile it, * is free software; you can redistribute it and/or use it and/or modify it @@ -10,4 +16,4 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the GNU General Public - * License along with this program. + * License along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_519.yml b/src/licensedcode/data/rules/gpl-2.0-plus_519.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_519.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_52.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_52.RULE index 2911d8d5f66..caf1196fc37 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_52.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_52.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 85 +--- + However, many parts of this library are licensed differently: This program is free software; you can redistribute it and/or @@ -6,4 +12,4 @@ published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_52.yml b/src/licensedcode/data/rules/gpl-2.0-plus_52.yml deleted file mode 100644 index 4d5ae2b1a17..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_520.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_520.RULE index bd3dbdda12e..2589bf54339 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_520.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_520.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + License WordPress is free software, and is released under the terms of the GPL version 2 or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_520.yml b/src/licensedcode/data/rules/gpl-2.0-plus_520.yml deleted file mode 100644 index b63f9c8a42e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_520.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_521.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_521.RULE index 442b782f944..1f537c1c52d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_521.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_521.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + WordPress is free software, and is released under the terms of the GPL version 2 or (at your option) any later version. See ="license.txt">license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_521.yml b/src/licensedcode/data/rules/gpl-2.0-plus_521.yml deleted file mode 100644 index b63f9c8a42e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_521.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_522.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_522.RULE index ad4fe5ae9de..48fcd49ee51 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_522.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_522.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://wordpress.org/about/license/ +--- + WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its license the GPL. https://wordpress.org/about/license/ You have the freedom to run the program, for any purpose. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_522.yml b/src/licensedcode/data/rules/gpl-2.0-plus_522.yml deleted file mode 100644 index c522c8ed2f1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_522.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://wordpress.org/about/license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_523.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_523.RULE index 8c3d8667eb0..e360c1702c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_523.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_523.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + Specify the license is GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_523.yml b/src/licensedcode/data/rules/gpl-2.0-plus_523.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_523.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_524.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_524.RULE index f9001805ec8..b7f0dc3ab6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_524.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_524.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_524.yml b/src/licensedcode/data/rules/gpl-2.0-plus_524.yml deleted file mode 100644 index 8652860de3f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_524.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_525.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_525.RULE index 01f71e35797..60a1ccebd57 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_525.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_525.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + The GPL v2.0 or later license. :) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_525.yml b/src/licensedcode/data/rules/gpl-2.0-plus_525.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_525.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_526.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_526.RULE index 9136667c822..64089b0c9ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_526.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_526.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + is distributed under the terms of the GNU GPL This program is free software: you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_526.yml b/src/licensedcode/data/rules/gpl-2.0-plus_526.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_526.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_527.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_527.RULE index ffeb54e033f..ca408b913a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_527.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_527.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the GNU GPL This program is free software: you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_527.yml b/src/licensedcode/data/rules/gpl-2.0-plus_527.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_527.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_528.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_528.RULE index dac139204bc..29f0999138c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_528.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_528.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GNU GPL, Version 2 (or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_528.yml b/src/licensedcode/data/rules/gpl-2.0-plus_528.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_528.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_529.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_529.RULE index 34e5cee4fa0..a45f824f317 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_529.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_529.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_529.yml b/src/licensedcode/data/rules/gpl-2.0-plus_529.yml deleted file mode 100644 index 8652860de3f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_529.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_53.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_53.RULE index 33bdebdacbb..ba6bf675f98 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_53.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_53.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + This file is licensed under the GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_53.yml b/src/licensedcode/data/rules/gpl-2.0-plus_53.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_530.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_530.RULE index 47e3cca3483..72e2fe2ed7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_530.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_530.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This theme, like WordPress, is licensed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_530.yml b/src/licensedcode/data/rules/gpl-2.0-plus_530.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_530.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_531.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_531.RULE index 0da8fb138e2..e345717721d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_531.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_531.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + This program is free software and open source 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, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_531.yml b/src/licensedcode/data/rules/gpl-2.0-plus_531.yml deleted file mode 100644 index dcc6a91d75b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_531.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_532.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_532.RULE index dc927d4908b..5f3c30e1d36 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_532.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_532.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software and open source 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, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_532.yml b/src/licensedcode/data/rules/gpl-2.0-plus_532.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_532.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_533.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_533.RULE index 159bbb58aaf..c03021d4ae4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_533.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_533.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + GNU General Public License v2 or later (GPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_533.yml b/src/licensedcode/data/rules/gpl-2.0-plus_533.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_533.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_534.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_534.RULE index 43e2b4ff8b9..5a91b5d9df3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_534.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_534.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + GNU GPLv2 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_534.yml b/src/licensedcode/data/rules/gpl-2.0-plus_534.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_534.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_535.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_535.RULE index 76738420563..07c8614c122 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_535.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_535.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + # Licensed under the GNU GPL, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_535.yml b/src/licensedcode/data/rules/gpl-2.0-plus_535.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_535.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_536.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_536.RULE index 8196ef5ab11..2eabcafd336 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_536.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_536.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + # This program is free software; it may be used, copied, modified # and distributed under the terms of the GNU General Public Licence, # either version 2, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_536.yml b/src/licensedcode/data/rules/gpl-2.0-plus_536.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_536.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_537.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_537.RULE index 53e745c5e43..b4223b59189 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_537.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_537.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ License: GPL-2+ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_537.yml b/src/licensedcode/data/rules/gpl-2.0-plus_537.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_537.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_538.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_538.RULE index bebc3d096ce..bb79d997b3c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_538.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_538.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Copyright This repository is licensed under the GPLv2 or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_538.yml b/src/licensedcode/data/rules/gpl-2.0-plus_538.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_538.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_539.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_539.RULE index 18b4d9055c0..3d451aa1baa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_539.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_539.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This repository is licensed under the GPLv2 or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_539.yml b/src/licensedcode/data/rules/gpl-2.0-plus_539.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_539.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_54.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_54.RULE index 1270a964977..5e5900810b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_54.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_54.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.1-plus +is_license_notice: yes +relevance: 95 +notes: there are some confusing references to both LGPL and GPL +--- + * This 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 * @@ -10,4 +17,4 @@ * * * You should have received a copy of the GNU General Public License along with * * software; if not, write to the Free Software Foundation, Inc., 59 Temple * -* Place, Suite 330, Boston, MA 02111-1307 USA * +* Place, Suite 330, Boston, MA 02111-1307 USA * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_54.yml b/src/licensedcode/data/rules/gpl-2.0-plus_54.yml deleted file mode 100644 index 0396322d240..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_54.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.1-plus -is_license_notice: yes -relevance: 95 -notes: there are some confusing references to both LGPL and GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_540.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_540.RULE index 55c55e8bbf4..319a788d551 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_540.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_540.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv2 or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_540.yml b/src/licensedcode/data/rules/gpl-2.0-plus_540.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_540.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_541.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_541.RULE index 1279163b5c8..7ed3bb4691f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_541.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_541.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License, version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_541.yml b/src/licensedcode/data/rules/gpl-2.0-plus_541.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_541.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_542.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_542.RULE index 11ed49e7165..2cc084fa28d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_542.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_542.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ The complete text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_542.yml b/src/licensedcode/data/rules/gpl-2.0-plus_542.yml deleted file mode 100644 index e9e221dcc5d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_542.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_543.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_543.RULE index 732b4270b82..125b042dcf4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_543.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_543.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License, version 2, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_543.yml b/src/licensedcode/data/rules/gpl-2.0-plus_543.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_543.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_544.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_544.RULE index ba5dd918ccd..d32cb011fb0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_544.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_544.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under GPLv2 or later, see file LICENSE in this source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_544.yml b/src/licensedcode/data/rules/gpl-2.0-plus_544.yml deleted file mode 100644 index fd7c42f5523..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_544.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_545.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_545.RULE index aff5b5f557a..22846f4b2f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_545.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_545.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_545.yml b/src/licensedcode/data/rules/gpl-2.0-plus_545.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_545.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_546.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_546.RULE index 2dcc7c09833..cefcd9f0211 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_546.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_546.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GDB, GAS, and the GNU binutils are free software; you can redistribute them and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation; either version diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_546.yml b/src/licensedcode/data/rules/gpl-2.0-plus_546.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_546.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_547.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_547.RULE index 7774bf96923..41e35039722 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_547.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_547.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + - GNU GPL 2 or later http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_547.yml b/src/licensedcode/data/rules/gpl-2.0-plus_547.yml deleted file mode 100644 index f972ae1c98c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_547.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_548.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_548.RULE index d49990fde13..76c2256710c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_548.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_548.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_548.yml b/src/licensedcode/data/rules/gpl-2.0-plus_548.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_548.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_549.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_549.RULE index c6d34b3898b..b43bdb628e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_549.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_549.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU General Public License ("GPL") version 2 or any later version, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_549.yml b/src/licensedcode/data/rules/gpl-2.0-plus_549.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_549.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_55.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_55.RULE index 5963666107c..ca022bddc0b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_55.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_55.RULE @@ -1,7 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + 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. On Debian GNU/Linux systems , the complete text of the GNU General -Public License can be found in '/usr/share/common-licenses/GPL'. +Public License can be found in '/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_55.yml b/src/licensedcode/data/rules/gpl-2.0-plus_55.yml deleted file mode 100644 index 28c839295ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_550.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_550.RULE index c57be596bf1..f5d9caae547 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_550.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_550.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License ("GPL") version 2 or any later version, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_550.yml b/src/licensedcode/data/rules/gpl-2.0-plus_550.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_550.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_551.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_551.RULE index c831e539285..601c510f258 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_551.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_551.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License This software is licensed under the GNU General Public License (GPL), version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_551.yml b/src/licensedcode/data/rules/gpl-2.0-plus_551.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_551.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_552.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_552.RULE index 086d24180e3..547c143d06c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_552.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_552.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the GNU General Public License (GPL), version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_552.yml b/src/licensedcode/data/rules/gpl-2.0-plus_552.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_552.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_553.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_553.RULE index 29265c395a7..e68929468e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_553.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_553.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + software is licensed under the GNU General Public License (GPL), version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_553.yml b/src/licensedcode/data/rules/gpl-2.0-plus_553.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_553.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_554.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_554.RULE index a9dfba326d8..7ee213c02f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_554.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_554.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU General Public License, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_554.yml b/src/licensedcode/data/rules/gpl-2.0-plus_554.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_554.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_555.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_555.RULE index 1273af9417f..59ba38c6a38 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_555.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_555.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU General Public License, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_555.yml b/src/licensedcode/data/rules/gpl-2.0-plus_555.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_555.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_556.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_556.RULE index ec2d325eb9b..64bb91f652d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_556.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_556.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU General Public License, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_556.yml b/src/licensedcode/data/rules/gpl-2.0-plus_556.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_556.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_557.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_557.RULE index d93c0b035ac..e9c112526c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_557.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_557.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL notice: This program is free software; you can redistribute it and/or modifyit 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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_557.yml b/src/licensedcode/data/rules/gpl-2.0-plus_557.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_557.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_558.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_558.RULE index d67068b1b1d..e1f93473307 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_558.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_558.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # Distributed under the terms of the GNU General Public License (GPL) # as published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_558.yml b/src/licensedcode/data/rules/gpl-2.0-plus_558.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_558.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_559.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_559.RULE index 9b12b917f51..5449c6152b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_559.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_559.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + License is free software; you can redistribute it and/or modify it under the terms of diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_559.yml b/src/licensedcode/data/rules/gpl-2.0-plus_559.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_559.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_56.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_56.RULE index 662a4d1644d..4565ad032d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_56.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_56.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + 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 @@ -14,4 +20,4 @@ On Debian systems, a copy of the GNU General Public License (GPL) is available - in the file /usr/share/common-licenses/GPL. + in the file /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_56.yml b/src/licensedcode/data/rules/gpl-2.0-plus_56.yml deleted file mode 100644 index 28c839295ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_560.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_560.RULE index aca3bbe0047..8abad5cd7ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_560.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_560.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + 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, a copy of which is provided under the name diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_560.yml b/src/licensedcode/data/rules/gpl-2.0-plus_560.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_560.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_561.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_561.RULE index 03c19de1451..4a34fc3603f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_561.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_561.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + - GNU GPL 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_561.yml b/src/licensedcode/data/rules/gpl-2.0-plus_561.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_561.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_562.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_562.RULE index e3268263825..4562bb82bed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_562.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_562.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + - GNU GPL 2 or later https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_562.yml b/src/licensedcode/data/rules/gpl-2.0-plus_562.yml deleted file mode 100644 index abeb4c4a088..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_562.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_563.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_563.RULE index fe613dd7549..e151e19ea4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_563.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_563.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license GNU General Public License, version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_563.yml b/src/licensedcode/data/rules/gpl-2.0-plus_563.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_563.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_564.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_564.RULE index 5ae94dc69a7..815d2392028 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_564.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_564.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_564.yml b/src/licensedcode/data/rules/gpl-2.0-plus_564.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_564.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_565.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_565.RULE index 7133d308610..9c849fb1b4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_565.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_565.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + # 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_565.yml b/src/licensedcode/data/rules/gpl-2.0-plus_565.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_565.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_566.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_566.RULE index 32f130cc5e2..687a2749c89 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_566.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_566.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_566.yml b/src/licensedcode/data/rules/gpl-2.0-plus_566.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_566.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_567.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_567.RULE index 0357359d375..73598948d1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_567.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_567.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - LICENSE +--- + The GNU Tilde Library 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, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_567.yml b/src/licensedcode/data/rules/gpl-2.0-plus_567.yml deleted file mode 100644 index 5a3b01516a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_567.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_568.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_568.RULE index c52f6981b0a..56d17a8b4a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_568.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_568.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Readline 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, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_568.yml b/src/licensedcode/data/rules/gpl-2.0-plus_568.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_568.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_569.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_569.RULE index 2f37a2bb8af..ac30846469d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_569.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_569.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - LICENSE +--- + The Library 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_569.yml b/src/licensedcode/data/rules/gpl-2.0-plus_569.yml deleted file mode 100644 index 5a3b01516a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_569.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_57.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_57.RULE index 549997946ec..99a77827a58 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_57.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_57.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +ignorable_emails: + - adns-maint@chiark.greenend.org.uk +--- + 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 @@ -14,4 +23,4 @@ USA, or email adns-maint@chiark.greenend.org.uk. On all Debian systems , a copy of the GNU General Public License (version 2 or - newer) can be found in `/usr/share/common-licenses/GPL'. + newer) can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_57.yml b/src/licensedcode/data/rules/gpl-2.0-plus_57.yml deleted file mode 100644 index 82005decf81..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_57.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL -ignorable_emails: - - adns-maint@chiark.greenend.org.uk diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_570.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_570.RULE index 17eb38a37b7..b91586297e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_570.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_570.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - LICENSE +--- + The GNU Readline Library 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, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_570.yml b/src/licensedcode/data/rules/gpl-2.0-plus_570.yml deleted file mode 100644 index 5a3b01516a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_570.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_571.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_571.RULE index d3c15d38cda..d3d717073c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_571.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_571.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_571.yml b/src/licensedcode/data/rules/gpl-2.0-plus_571.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_571.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_572.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_572.RULE index 9d313e363d6..7e33fd686d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_572.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_572.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_572.yml b/src/licensedcode/data/rules/gpl-2.0-plus_572.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_572.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_573.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_573.RULE index ea64ed26631..6e63bced866 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_573.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_573.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + You may redistribute this program and/or modify this program 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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_573.yml b/src/licensedcode/data/rules/gpl-2.0-plus_573.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_573.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_574.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_574.RULE index a02904e4e61..c1490928535 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_574.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_574.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + You may redistribute this program and/or modify this program 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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_574.yml b/src/licensedcode/data/rules/gpl-2.0-plus_574.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_574.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_575.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_575.RULE index dbd94e849c3..043d2ade84e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_575.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_575.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This definition file 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_575.yml b/src/licensedcode/data/rules/gpl-2.0-plus_575.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_575.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_576.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_576.RULE index 463cb3109f2..e0253f305f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_576.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_576.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_576.yml b/src/licensedcode/data/rules/gpl-2.0-plus_576.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_576.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_577.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_577.RULE index 6ed0fd0696a..eef502cb45b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_577.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_577.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_577.yml b/src/licensedcode/data/rules/gpl-2.0-plus_577.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_577.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_578.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_578.RULE index 501ddf76088..97edb292810 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_578.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_578.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 Foundatio; either version 2 of diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_578.yml b/src/licensedcode/data/rules/gpl-2.0-plus_578.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_578.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_579.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_579.RULE index 0a5c1b18c3d..8d1a1b4a37d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_579.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_579.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_579.yml b/src/licensedcode/data/rules/gpl-2.0-plus_579.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_579.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_58.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_58.RULE index c8812b8c43b..0b96ff459d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_58.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_58.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + The Debian packaging is (C) and -is licensed under the GPLv2 or later, see `/usr/share/common-licenses/GPL-2'. +is licensed under the GPLv2 or later, see `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_58.yml b/src/licensedcode/data/rules/gpl-2.0-plus_58.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_58.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_580.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_580.RULE index a6276515488..07ef90c342a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_580.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_580.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_580.yml b/src/licensedcode/data/rules/gpl-2.0-plus_580.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_580.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_581.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_581.RULE index 441351c2618..a09bacfd17e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_581.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_581.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_581.yml b/src/licensedcode/data/rules/gpl-2.0-plus_581.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_581.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_582.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_582.RULE index 0a1d9496e1c..931fba98f96 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_582.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_582.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_582.yml b/src/licensedcode/data/rules/gpl-2.0-plus_582.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_582.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_583.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_583.RULE index 7edcdbf6932..96d04693b50 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_583.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_583.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_583.yml b/src/licensedcode/data/rules/gpl-2.0-plus_583.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_583.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_584.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_584.RULE index ff8fcddd316..9650bb2ef0f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_584.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_584.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_584.yml b/src/licensedcode/data/rules/gpl-2.0-plus_584.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_584.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_585.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_585.RULE index d669c959b3f..6738153024e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_585.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_585.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_585.yml b/src/licensedcode/data/rules/gpl-2.0-plus_585.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_585.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_586.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_586.RULE index e585010c2c2..d3071902e94 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_586.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_586.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_586.yml b/src/licensedcode/data/rules/gpl-2.0-plus_586.yml deleted file mode 100644 index 76dbcf7873a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_586.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_587.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_587.RULE index 03ea2048c83..c71e61ae4fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_587.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_587.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +notes: there is an uncommon reference to the "source code form" +--- + This source code is free software; you can redistribute it and/or modify it in source code form under the terms of the GNU General Public License as published by the Free Software diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_587.yml b/src/licensedcode/data/rules/gpl-2.0-plus_587.yml deleted file mode 100644 index 582b330a67c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_587.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -notes: there is an uncommon reference to the "source code form" diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_588.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_588.RULE index 832189d08dd..d30cb8ee96b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_588.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_588.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + the following license applies: This program is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_588.yml b/src/licensedcode/data/rules/gpl-2.0-plus_588.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_588.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_589.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_589.RULE index b4e554b4cba..d26f7d01f68 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_589.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_589.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The LZO library 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_589.yml b/src/licensedcode/data/rules/gpl-2.0-plus_589.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_589.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_59.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_59.RULE index 7de16df0a8c..7710bf92798 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_59.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_59.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_59.yml b/src/licensedcode/data/rules/gpl-2.0-plus_59.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_590.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_590.RULE index f7156fa0391..378fb4f1bc5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_590.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_590.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_590.yml b/src/licensedcode/data/rules/gpl-2.0-plus_590.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_590.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_591.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_591.RULE index 4abac3c5b8b..f775e41955f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_591.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_591.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_591.yml b/src/licensedcode/data/rules/gpl-2.0-plus_591.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_591.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_592.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_592.RULE index db821ce775f..ac7d3109569 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_592.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_592.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_592.yml b/src/licensedcode/data/rules/gpl-2.0-plus_592.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_592.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_593.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_593.RULE index 394bb289f0c..548e614a55d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_593.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_593.RULE @@ -1 +1,9 @@ -Adapted from OProfile GPLv2 support +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: oprofile uses a GPL2 or later. its man file has this statment "OProfile is released under + the GNU General Public License, Version 2, or (at your option) any later version." +--- + +Adapted from OProfile GPLv2 support \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_593.yml b/src/licensedcode/data/rules/gpl-2.0-plus_593.yml deleted file mode 100644 index 18c6f07b4a5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_593.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: oprofile uses a GPL2 or later. its man file has this statment "OProfile is released under - the GNU General Public License, Version 2, or (at your option) any later version." diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_594.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_594.RULE index 9e0b08de72a..ed4be72da20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_594.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_594.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv2 or latter \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_594.yml b/src/licensedcode/data/rules/gpl-2.0-plus_594.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_594.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_595.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_595.RULE index 7cc6b8a8d67..af161698f3b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_595.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_595.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL v.2 and later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_595.yml b/src/licensedcode/data/rules/gpl-2.0-plus_595.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_595.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_596.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_596.RULE index 824e3288510..ce3fe5fd45b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_596.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_596.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - (c) Benjamin Reed + - (c) David Hinds +ignorable_holders: + - Benjamin Reed + - David Hinds +ignorable_emails: + - simon@thekelleys.org.uk +--- + This code was developed from version 2.1.1 of the Atmel drivers, released by Atmel corp. under the GPL in December 2002. It also includes code from the Linux aironet drivers (C) Benjamin Reed, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_596.yml b/src/licensedcode/data/rules/gpl-2.0-plus_596.yml deleted file mode 100644 index d3df7df539e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_596.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - (c) Benjamin Reed - - (c) David Hinds -ignorable_holders: - - Benjamin Reed - - David Hinds -ignorable_emails: - - simon@thekelleys.org.uk diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_597.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_597.RULE index 02362472801..da7f3b231d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_597.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_597.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License: GNU General Public License v2 or later License URI: LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_597.yml b/src/licensedcode/data/rules/gpl-2.0-plus_597.yml deleted file mode 100644 index 13ab838a900..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_597.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_598.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_598.RULE index 3ad6301ad09..0e1c15d9165 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_598.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_598.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv2 +--- + licensed under the GNU General Public License version 2 or later (GPL v2+). See the file `COPYING.GPLv2` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_598.yml b/src/licensedcode/data/rules/gpl-2.0-plus_598.yml deleted file mode 100644 index ab502b33b2e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_598.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_599.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_599.RULE index 082817332c2..e4d1b2d6b02 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_599.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_599.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License version 2 or later (GPL v2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_599.yml b/src/licensedcode/data/rules/gpl-2.0-plus_599.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_599.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_6.RULE index 6fd8ba20b3d..6abe537a970 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + under the terms of the GNU General Public License Version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_6.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_60.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_60.RULE index c4db40f4bcc..8c743532d45 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_60.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_60.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.0-plus +is_license_notice: yes +relevance: 95 +notes: there are some confusing references to both LGPL and GPL +--- + 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 @@ -10,4 +17,4 @@ GNU General Public License for more details. You should have received a copy of the GNU Library Public License along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +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-plus_60.yml b/src/licensedcode/data/rules/gpl-2.0-plus_60.yml deleted file mode 100644 index 98c12e1122c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_60.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.0-plus -is_license_notice: yes -relevance: 95 -notes: there are some confusing references to both LGPL and GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_600.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_600.RULE index 945a390ed7e..3f0cef573f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_600.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_600.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_600.yml b/src/licensedcode/data/rules/gpl-2.0-plus_600.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_600.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_601.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_601.RULE index 3b8ed96d4cc..87f9ae2bdb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_601.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_601.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + will stay GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_601.yml b/src/licensedcode/data/rules/gpl-2.0-plus_601.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_601.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_602.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_602.RULE index e5a7a641e03..29d6157f4a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_602.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_602.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + must stay GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_602.yml b/src/licensedcode/data/rules/gpl-2.0-plus_602.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_602.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_603.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_603.RULE index b39e9f28523..de769509d2c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_603.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_603.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + hard (GPL-only parts \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_603.yml b/src/licensedcode/data/rules/gpl-2.0-plus_603.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_603.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_604.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_604.RULE index f6d7fd7993f..94cb2da6914 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_604.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_604.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_604.yml b/src/licensedcode/data/rules/gpl-2.0-plus_604.yml deleted file mode 100644 index 5c9b508d073..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_604.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_605.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_605.RULE index bd32bf6700e..92091f94be3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_605.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_605.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + Licensed under the GNU General Public License Version 2.0 (or later); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_605.yml b/src/licensedcode/data/rules/gpl-2.0-plus_605.yml deleted file mode 100644 index 09587ce2bda..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_605.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_606.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_606.RULE index 1a046ee2fb1..808c1d539b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_606.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_606.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + license Licensed under the GNU General Public License Version 2.0 (or later); you may not use this work except in compliance with the License. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_606.yml b/src/licensedcode/data/rules/gpl-2.0-plus_606.yml deleted file mode 100644 index 09587ce2bda..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_606.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_607.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_607.RULE index ff8f3501886..5bf324e3640 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_607.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_607.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + license Licensed under the GNU General Public License Version 2.0 (or later); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_607.yml b/src/licensedcode/data/rules/gpl-2.0-plus_607.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_607.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_608.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_608.RULE index 124b74a812b..4b18ae95961 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_608.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_608.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License Version 2.0 (or later); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_608.yml b/src/licensedcode/data/rules/gpl-2.0-plus_608.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_608.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_609.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_609.RULE index c2e4cdfcd11..9a5ef79fe1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_609.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_609.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_609.yml b/src/licensedcode/data/rules/gpl-2.0-plus_609.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_609.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_61.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_61.RULE index dc79c7b88cc..affd5a90002 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_61.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_61.RULE @@ -1,7 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +--- + 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. On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_61.yml b/src/licensedcode/data/rules/gpl-2.0-plus_61.yml deleted file mode 100644 index d8233381c10..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_610.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_610.RULE index fe8ab4dc6ca..fc6fa40c22d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_610.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_610.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + License: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_610.yml b/src/licensedcode/data/rules/gpl-2.0-plus_610.yml deleted file mode 100644 index e62e0beb5cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_610.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_611.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_611.RULE index add1aa2365e..ea49d9a55b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_611.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_611.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_611.yml b/src/licensedcode/data/rules/gpl-2.0-plus_611.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_611.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_612.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_612.RULE index cd42169c124..aa8a3919ed5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_612.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_612.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_612.yml b/src/licensedcode/data/rules/gpl-2.0-plus_612.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_612.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_613.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_613.RULE index 9646b647522..bfae8dd775c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_613.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_613.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_613.yml b/src/licensedcode/data/rules/gpl-2.0-plus_613.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_613.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_614.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_614.RULE index d5d9c361c08..d5be64fe1b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_614.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_614.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This program may be distributed and/or modified under the terms of the GNU General Public License as published by the Free Software Foundation (the "GPL"); either version 2 of the GPL, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_614.yml b/src/licensedcode/data/rules/gpl-2.0-plus_614.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_614.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_615.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_615.RULE index 9b2743cf136..6ffc94ec895 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_615.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_615.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License-Grant: This code is subject to the GNU General Public License License: GPL-2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_615.yml b/src/licensedcode/data/rules/gpl-2.0-plus_615.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_615.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_616.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_616.RULE index af07548c0df..65de6fce9aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_616.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_616.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is subject to the GNU General Public License License: GPL-2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_616.yml b/src/licensedcode/data/rules/gpl-2.0-plus_616.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_616.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_617.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_617.RULE index 949a800107f..d32ee52e86e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_617.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_617.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL2.0orlater.html +--- + This code is subject to the GNU General Public License. License: GPL‑2+ https://spdx.org/licenses/GPL‑2.0‑or‑later.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_617.yml b/src/licensedcode/data/rules/gpl-2.0-plus_617.yml deleted file mode 100644 index 1c8686aa8e6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_617.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL2.0orlater.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_618.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_618.RULE index 2fc44898849..fb92dd83aae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_618.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_618.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ./LICENSE.md +--- + ## License licensed under [GNU General Public License v2 (or later)](./LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_618.yml b/src/licensedcode/data/rules/gpl-2.0-plus_618.yml deleted file mode 100644 index 5885b9cb9d8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_618.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ./LICENSE.md diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_619.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_619.RULE index 521b137ba55..9d71009a59f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_619.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_619.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ./LICENSE.md +--- + licensed under [GNU General Public License v2 (or later)](./LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_619.yml b/src/licensedcode/data/rules/gpl-2.0-plus_619.yml deleted file mode 100644 index 5885b9cb9d8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_619.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ./LICENSE.md diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_62.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_62.RULE index a5149944233..6f05c516962 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_62.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_62.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ #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. +#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-plus_62.yml b/src/licensedcode/data/rules/gpl-2.0-plus_62.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_62.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_620.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_620.RULE index 7bc999f4719..85d9b3ba989 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_620.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_620.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under [GNU General Public License v2 (or later)] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_620.yml b/src/licensedcode/data/rules/gpl-2.0-plus_620.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_620.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_621.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_621.RULE index 9bfb7a2498f..94d35dfd503 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_621.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_621.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program may be distributed and/or modified under the terms of the GNU General Public License as published by the Free Software Foundation (the "GPL"); either version 2 of the GPL, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_621.yml b/src/licensedcode/data/rules/gpl-2.0-plus_621.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_621.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_622.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_622.RULE index 1c26fd08929..a60e458ad37 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_622.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_622.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + % 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_622.yml b/src/licensedcode/data/rules/gpl-2.0-plus_622.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_622.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_623.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_623.RULE index 9da41aa3048..38f50f883ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_623.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_623.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1992 URW GmbH, Hamburg, Germany +ignorable_holders: + - URW GmbH, Hamburg, Germany +--- + % Fonts contributed by URW GmbH for distribution under the GNU License. % The following notice accompanied these fonts: % diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_623.yml b/src/licensedcode/data/rules/gpl-2.0-plus_623.yml deleted file mode 100644 index deaede7b049..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_623.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 1992 URW GmbH, Hamburg, Germany -ignorable_holders: - - URW GmbH, Hamburg, Germany diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_624.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_624.RULE index cca7c7f7294..fdba3f21fad 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_624.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_624.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + original code distributed under GPL V2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_624.yml b/src/licensedcode/data/rules/gpl-2.0-plus_624.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_624.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_625.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_625.RULE index 1c28bcab322..fe2712d398e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_625.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_625.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + original code distributed under GPL V2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_625.yml b/src/licensedcode/data/rules/gpl-2.0-plus_625.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_625.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_626.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_626.RULE index fbfddf3eb57..debe0e9f3ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_626.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_626.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GPL, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_626.yml b/src/licensedcode/data/rules/gpl-2.0-plus_626.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_626.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE index 441a7a4943b..3048107a42b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_627.yml b/src/licensedcode/data/rules/gpl-2.0-plus_627.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_627.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_628.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_628.RULE index a598c3ef0aa..192dbbf46b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_628.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_628.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + license = Licensed under GPLv2 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_628.yml b/src/licensedcode/data/rules/gpl-2.0-plus_628.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_628.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_629.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_629.RULE index 80f154c70c7..af8077c4484 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_629.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_629.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licensed under GPLv2, or any later version. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_629.yml b/src/licensedcode/data/rules/gpl-2.0-plus_629.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_629.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_63.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_63.RULE index 1eb98746563..8e1c3574e7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_63.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_63.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/licensing/licenses/gpl-faq.html#InterpreterIncompat +--- + License: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -18,5 +25,4 @@ interpreted AddOn system. You have an implicit licence to use this AddOn with these facilities since that is its designated purpose as per: - http://www.fsf.org/licensing/licenses/gpl-faq.html#InterpreterIncompat - + http://www.fsf.org/licensing/licenses/gpl-faq.html#InterpreterIncompat \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_63.yml b/src/licensedcode/data/rules/gpl-2.0-plus_63.yml deleted file mode 100644 index daf5ca5a549..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_63.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/licensing/licenses/gpl-faq.html#InterpreterIncompat diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_630.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_630.RULE index 12a279a03fa..54950e94bd7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_630.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_630.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licensed under GPLv2+. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_630.yml b/src/licensedcode/data/rules/gpl-2.0-plus_630.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_630.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_631.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_631.RULE index 122b6640b0b..4359cbfaa35 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_631.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_631.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + files are licensed under GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_631.yml b/src/licensedcode/data/rules/gpl-2.0-plus_631.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_631.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_632.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_632.RULE index c003eacb3f2..fb894cb22bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_632.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_632.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * 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 FSF - Free Software diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_632.yml b/src/licensedcode/data/rules/gpl-2.0-plus_632.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_632.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_633.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_633.RULE index 108f77c7267..7b6002f865c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_633.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_633.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_633.yml b/src/licensedcode/data/rules/gpl-2.0-plus_633.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_633.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_634.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_634.RULE index e176bd85581..0c3c010ce68 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_634.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_634.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This file is released under the terms of GNU General Public License v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_634.yml b/src/licensedcode/data/rules/gpl-2.0-plus_634.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_634.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_635.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_635.RULE index c88cff300cc..a7fc1036824 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_635.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_635.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + Licence: GPL V2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_635.yml b/src/licensedcode/data/rules/gpl-2.0-plus_635.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_635.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 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 51e7dd4105a..63ee5bd0431 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_636.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_636.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_636.yml b/src/licensedcode/data/rules/gpl-2.0-plus_636.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_636.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_637.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_637.RULE index 581f91b25c2..e22f67483f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_637.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_637.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +--- + The following files have no copyright/license but are assumed to be under the same conditions than the rest of the majority of the source code (GPLv2+): \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_637.yml b/src/licensedcode/data/rules/gpl-2.0-plus_637.yml deleted file mode 100644 index f4b738b6745..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_637.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_638.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_638.RULE index 2ebc2287ffb..dbb63f197f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_638.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_638.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_638.yml b/src/licensedcode/data/rules/gpl-2.0-plus_638.yml deleted file mode 100644 index 0aa680d89a5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_638.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_639.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_639.RULE index ebc70ed4440..9094d108c63 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_639.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_639.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + released under the GNU GPL license version 2 or later (GPL-2.0+). See the COPYING file for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_639.yml b/src/licensedcode/data/rules/gpl-2.0-plus_639.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_639.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_64.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_64.RULE index cfe32545a71..db8901c4309 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_64.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_64.RULE @@ -1,5 +1,9 @@ +--- +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. - + * 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_64.yml b/src/licensedcode/data/rules/gpl-2.0-plus_64.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_64.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_640.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_640.RULE index dcf0561dd16..a277c5d31af 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_640.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_640.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License Unless otherwise specified, all files are licensed under GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_640.yml b/src/licensedcode/data/rules/gpl-2.0-plus_640.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_640.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_641.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_641.RULE index 7206dfe0368..7e0a6893edd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_641.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_641.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + # This software may be modified and distributed under the terms of the # GPL-2+ license. See the accompanying LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_641.yml b/src/licensedcode/data/rules/gpl-2.0-plus_641.yml deleted file mode 100644 index f8dcf468944..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_641.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_642.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_642.RULE index 4762d019616..de9121a1a23 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_642.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_642.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the terms of the GPL, version 2 or later, excepting that: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_642.yml b/src/licensedcode/data/rules/gpl-2.0-plus_642.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_642.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_643.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_643.RULE index 3af9c8602dd..217fc95a392 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_643.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_643.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the terms of the GPL, version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_643.yml b/src/licensedcode/data/rules/gpl-2.0-plus_643.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_643.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_644.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_644.RULE index ed13ec004ea..4d9bbe1e555 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_644.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_644.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + License: GPL v2 or later http://www.gnu.org/copyleft/gpl.html http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_644.yml b/src/licensedcode/data/rules/gpl-2.0-plus_644.yml deleted file mode 100644 index eb3f5cff7ba..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_644.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_645.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_645.RULE index b5082ba1918..41b911eb8df 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_645.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_645.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + License: GPL v2 or later http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_645.yml b/src/licensedcode/data/rules/gpl-2.0-plus_645.yml deleted file mode 100644 index eb3f5cff7ba..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_645.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_646.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_646.RULE index 584f41973bc..0299f6f1ba6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_646.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_646.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + License: GPL v2 or later https://www.gnu.org/copyleft/gpl.html https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_646.yml b/src/licensedcode/data/rules/gpl-2.0-plus_646.yml deleted file mode 100644 index 1d574de90c9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_646.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_647.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_647.RULE index e7193998eb5..9427df9ded5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_647.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_647.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + License: GPL v2 or later https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_647.yml b/src/licensedcode/data/rules/gpl-2.0-plus_647.yml deleted file mode 100644 index 1d574de90c9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_647.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_648.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_648.RULE index 82f249ba9e9..64c5325f1b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_648.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_648.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + License: GPL v2.0 or later http://www.gnu.org/copyleft/gpl.html http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_648.yml b/src/licensedcode/data/rules/gpl-2.0-plus_648.yml deleted file mode 100644 index eb3f5cff7ba..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_648.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_649.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_649.RULE index e6f161d4f93..97097fa3339 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_649.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_649.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + License: GPL v2.0 or later http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_649.yml b/src/licensedcode/data/rules/gpl-2.0-plus_649.yml deleted file mode 100644 index eb3f5cff7ba..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_649.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_65.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_65.RULE index 38458a5f3d7..d78cc2d5d9a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_65.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_65.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +notes: GPL 2 or later notice +--- + * 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, or (at your option) any @@ -10,4 +16,4 @@ * * 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. + * 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_65.yml b/src/licensedcode/data/rules/gpl-2.0-plus_65.yml deleted file mode 100644 index cad319d0220..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -notes: GPL 2 or later notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_650.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_650.RULE index 53986e08fd7..e9511d9f145 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_650.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_650.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + License: GPL v2.0 or later https://www.gnu.org/copyleft/gpl.html https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_650.yml b/src/licensedcode/data/rules/gpl-2.0-plus_650.yml deleted file mode 100644 index 1d574de90c9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_650.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_651.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_651.RULE index 172438167cf..0d3723606e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_651.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_651.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + License: GPL v2.0 or later https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_651.yml b/src/licensedcode/data/rules/gpl-2.0-plus_651.yml deleted file mode 100644 index 1d574de90c9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_651.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_652.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_652.RULE index 431fe78a937..b1f830fba23 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_652.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_652.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_652.yml b/src/licensedcode/data/rules/gpl-2.0-plus_652.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_652.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_653.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_653.RULE index 6ed01765d53..b972acac9cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_653.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_653.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_653.yml b/src/licensedcode/data/rules/gpl-2.0-plus_653.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_653.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_654.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_654.RULE index ed1c0598def..e69b963dfa9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_654.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_654.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_654.yml b/src/licensedcode/data/rules/gpl-2.0-plus_654.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_654.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_655.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_655.RULE index 356d50a8a7c..d5fd7d8505e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_655.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_655.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_655.yml b/src/licensedcode/data/rules/gpl-2.0-plus_655.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_655.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_656.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_656.RULE index 3e972515ed2..849e816f435 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_656.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_656.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLPv2+: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_656.yml b/src/licensedcode/data/rules/gpl-2.0-plus_656.yml deleted file mode 100644 index 6215ca5d979..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_656.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_657.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_657.RULE index 440b268a7eb..e99eccf6ebd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_657.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_657.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the GNU General Public License (version 2 # or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_657.yml b/src/licensedcode/data/rules/gpl-2.0-plus_657.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_657.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_658.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_658.RULE index c1cc0b95ac8..4490f9427b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_658.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_658.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * This 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 named License, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_658.yml b/src/licensedcode/data/rules/gpl-2.0-plus_658.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_658.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_659.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_659.RULE index d4ec4641a40..a48e21afdb8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_659.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_659.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * 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 named License, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_659.yml b/src/licensedcode/data/rules/gpl-2.0-plus_659.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_659.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_66.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_66.RULE index 6352fe9d3ec..1cc898bc01b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_66.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_66.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + Debian packaging (debian/*) is: Copyright: License: GNU General Public License, version 2 or later (GPL-2+) On Debian systems, the complete text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. + version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_66.yml b/src/licensedcode/data/rules/gpl-2.0-plus_66.yml deleted file mode 100644 index 28c839295ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_660.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_660.RULE index 0b5188a7626..554688d5bd5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_660.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_660.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * This 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_660.yml b/src/licensedcode/data/rules/gpl-2.0-plus_660.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_660.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_661.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_661.RULE index 85a9a507a47..308672b7e16 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_661.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_661.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This is free software, and you are welcome to redistribute it under the terms of the GNU General Public License; either diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_661.yml b/src/licensedcode/data/rules/gpl-2.0-plus_661.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_661.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_662.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_662.RULE index 5b7c2cf7194..74a9e88ca3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_662.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_662.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +notes: this is mixing GPL and LGPL. So we take GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_662.yml b/src/licensedcode/data/rules/gpl-2.0-plus_662.yml deleted file mode 100644 index 169d4bac6a8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_662.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -notes: this is mixing GPL and LGPL. So we take GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_663.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_663.RULE index 843870d8db4..f1ce54e0dc7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_663.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_663.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +notes: this is mixing GPL and LGPL. So we take GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_663.yml b/src/licensedcode/data/rules/gpl-2.0-plus_663.yml deleted file mode 100644 index 169d4bac6a8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_663.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -notes: this is mixing GPL and LGPL. So we take GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_664.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_664.RULE index 6bae1f7ee3f..e2e86014737 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_664.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_664.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This is free documentation; 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_664.yml b/src/licensedcode/data/rules/gpl-2.0-plus_664.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_664.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_665.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_665.RULE index ecfbd5b40c5..d3d7eca8c29 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_665.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_665.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/ +--- + * This is free documentation; 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_665.yml b/src/licensedcode/data/rules/gpl-2.0-plus_665.yml deleted file mode 100644 index b6aeca69170..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_665.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_666.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_666.RULE index 1e8d291c58e..f932ac5a263 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_666.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_666.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This is free documentation; 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_666.yml b/src/licensedcode/data/rules/gpl-2.0-plus_666.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_666.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_667.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_667.RULE index 5885f037d1f..a5da96c2330 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_667.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_667.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This is free documentation; 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_667.yml b/src/licensedcode/data/rules/gpl-2.0-plus_667.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_667.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_668.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_668.RULE index e72b7044e8f..6f299b56dac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_668.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_668.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + %%%LICENSE_START(GPLv2+_DOC_FULL) This is free documentation; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_668.yml b/src/licensedcode/data/rules/gpl-2.0-plus_668.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_668.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_669.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_669.RULE index f77baafc5f5..86c17b2fca7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_669.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_669.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +notes: this is mixing GPL and LGPL. So we take GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_669.yml b/src/licensedcode/data/rules/gpl-2.0-plus_669.yml deleted file mode 100644 index 169d4bac6a8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_669.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -notes: this is mixing GPL and LGPL. So we take GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_67.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_67.RULE index fc53ca46116..abdc352e287 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_67.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_67.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GPL 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_67.yml b/src/licensedcode/data/rules/gpl-2.0-plus_67.yml deleted file mode 100644 index 40757711040..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_67.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_670.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_670.RULE index 6abdd8760b8..8c8d02b0a4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_670.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_670.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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; version 2 or later of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_670.yml b/src/licensedcode/data/rules/gpl-2.0-plus_670.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_670.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_671.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_671.RULE index 19edb027270..410f3c6a125 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_671.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_671.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - GPL.TXT +notes: See https://github.com/nemequ/lzmat/blob/25d9b958fff9514050a28642c99b3fff10761aac/test_lzmat.c +--- + ** The library 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_671.yml b/src/licensedcode/data/rules/gpl-2.0-plus_671.yml deleted file mode 100644 index 8229c4a2ae5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_671.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - GPL.TXT -notes: See https://github.com/nemequ/lzmat/blob/25d9b958fff9514050a28642c99b3fff10761aac/test_lzmat.c diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_672.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_672.RULE index 1c6e9e00396..6056b0550fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_672.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_672.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-GPL-2.0.txt +--- + Two files were previously licensed under the **GPL 2.0+** license by mistake - see the [LICENSE-GPL-2.0](LICENSE-GPL-2.0.txt) file for details. These files contain the following tag instead of the full license text \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_672.yml b/src/licensedcode/data/rules/gpl-2.0-plus_672.yml deleted file mode 100644 index e92ee7b8819..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_672.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-GPL-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_673.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_673.RULE index 28e092705a0..68e9a5702c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_673.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_673.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + License Free use of this software is granted under the terms of the GNU General Public License version 2+ (GPLv2+). For details see the files COPYING included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_673.yml b/src/licensedcode/data/rules/gpl-2.0-plus_673.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_673.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_674.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_674.RULE index f4cfa4f43e5..dd1611fde30 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_674.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_674.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Free use of this software is granted under the terms of the GNU General Public License version 2+ (GPLv2+). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_674.yml b/src/licensedcode/data/rules/gpl-2.0-plus_674.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_674.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_675.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_675.RULE index 216630769fe..5260fd611e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_675.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_675.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + // is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_675.yml b/src/licensedcode/data/rules/gpl-2.0-plus_675.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_675.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_676.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_676.RULE index 56848e44392..1c9a0549307 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_676.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_676.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensing This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_676.yml b/src/licensedcode/data/rules/gpl-2.0-plus_676.yml deleted file mode 100644 index fd7c42f5523..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_676.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_677.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_677.RULE index 90ff1676306..cd818ccf284 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_677.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_677.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. License conditions are included in LICENSE or can be found at the GNU website. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_677.yml b/src/licensedcode/data/rules/gpl-2.0-plus_677.yml deleted file mode 100644 index fd7c42f5523..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_677.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_678.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_678.RULE index 7f0f3fd9c59..c0cd929a1e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_678.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_678.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_678.yml b/src/licensedcode/data/rules/gpl-2.0-plus_678.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_678.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_679.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_679.RULE index 1ba634bfff7..628f28a3cb4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_679.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_679.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + Licensed to the Linux Foundation under the General Public License (GPL) version 2. @@ -9,4 +14,4 @@ the Free Software Foundation; either version 2 of the License, or 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_679.yml b/src/licensedcode/data/rules/gpl-2.0-plus_679.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_679.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_68.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_68.RULE index eeda95fe7af..471590e9c29 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_68.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_68.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License: This package is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_68.yml b/src/licensedcode/data/rules/gpl-2.0-plus_68.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_68.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_680.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_680.RULE index e30cd1aa5f0..4109775a564 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_680.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_680.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + Licensing This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_680.yml b/src/licensedcode/data/rules/gpl-2.0-plus_680.yml deleted file mode 100644 index d9c4b892563..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_680.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_681.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_681.RULE index 316bd461e50..4a341e2f5a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_681.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_681.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. License conditions are included in LICENSE or can be found at the [GNU website](http://www.gnu.org/licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_681.yml b/src/licensedcode/data/rules/gpl-2.0-plus_681.yml deleted file mode 100644 index d9c4b892563..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_681.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_682.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_682.RULE index f8dc8ea2155..4c4644f3935 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_682.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_682.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Licensing This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_682.yml b/src/licensedcode/data/rules/gpl-2.0-plus_682.yml deleted file mode 100644 index 0f7b3041a66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_682.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_683.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_683.RULE index 259fac04600..540f09061a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_683.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_683.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. License conditions are included in LICENSE or can be found at the [GNU website](https://www.gnu.org/licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_683.yml b/src/licensedcode/data/rules/gpl-2.0-plus_683.yml deleted file mode 100644 index 0f7b3041a66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_683.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_684.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_684.RULE index 71948803dbb..5d693aae26b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_684.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_684.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +notes: also seen in FFmpeg configure result strings and found in binaries +--- + license: GPL version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_684.yml b/src/licensedcode/data/rules/gpl-2.0-plus_684.yml deleted file mode 100644 index df21b02f6a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_684.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -notes: also seen in FFmpeg configure result strings and found in binaries diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_685.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_685.RULE index 8ffa0ed811e..51cb177d26e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_685.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_685.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * The class uses code licensed under the terms of the GNU General * Public License and therefore is licensed under GPL v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_685.yml b/src/licensedcode/data/rules/gpl-2.0-plus_685.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_685.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_686.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_686.RULE index 2577ad38048..04c5e476060 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_686.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_686.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * The class uses code licensed under the terms of the GNU General * Public License and therefore is licensed under GPL v2 or later. * diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_686.yml b/src/licensedcode/data/rules/gpl-2.0-plus_686.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_686.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE index 19591214748..ee41b996156 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_687.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + * @license GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_687.yml b/src/licensedcode/data/rules/gpl-2.0-plus_687.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_687.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_688.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_688.RULE index 62ce1f2f241..632979e44c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_688.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_688.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +notes: See https://github.com/pogorelov9/labelparfum.github.io/blob/f6e2961f8501a52c2126c365ea55fd3e04f039db/wp-content/themes/customizr/readme.md#L23 +--- + Feel free to use, modify and redistribute this theme as you like. You may remove any copyright references (unless required by third party components) and crediting is not necessary, but very appreciated... ;-D. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_688.yml b/src/licensedcode/data/rules/gpl-2.0-plus_688.yml deleted file mode 100644 index b1d872d7d55..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_688.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -notes: See https://github.com/pogorelov9/labelparfum.github.io/blob/f6e2961f8501a52c2126c365ea55fd3e04f039db/wp-content/themes/customizr/readme.md#L23 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_689.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_689.RULE index 7b813945a50..0c0779ace8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_689.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_689.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPL v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_689.yml b/src/licensedcode/data/rules/gpl-2.0-plus_689.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_689.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_69.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_69.RULE index c36a8447878..9641c8c581f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_69.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_69.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License: This package is free software; you can redistribute it and/or modify @@ -15,4 +20,4 @@ License: Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_69.yml b/src/licensedcode/data/rules/gpl-2.0-plus_69.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_69.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_690.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_690.RULE index c78129e33b3..8e3d4908c20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_690.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_690.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_690.yml b/src/licensedcode/data/rules/gpl-2.0-plus_690.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_690.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_691.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_691.RULE index 7d711806c36..4e92ef17d67 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_691.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_691.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU GPL version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_691.yml b/src/licensedcode/data/rules/gpl-2.0-plus_691.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_691.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_692.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_692.RULE index 1345fb52a6e..e46552e2a3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_692.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_692.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of GPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_692.yml b/src/licensedcode/data/rules/gpl-2.0-plus_692.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_692.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_693.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_693.RULE index 20edd02a73e..9cb39f35d20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_693.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_693.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPLv2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_693.yml b/src/licensedcode/data/rules/gpl-2.0-plus_693.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_693.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_694.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_694.RULE index b8f8a924179..29496740536 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_694.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_694.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPL v2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_694.yml b/src/licensedcode/data/rules/gpl-2.0-plus_694.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_694.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_695.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_695.RULE index a82e16d1ce4..48ac0d97594 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_695.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_695.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPL 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_695.yml b/src/licensedcode/data/rules/gpl-2.0-plus_695.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_695.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_696.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_696.RULE index 2eb04fb1bec..01cc635b6f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_696.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_696.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPL2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_696.yml b/src/licensedcode/data/rules/gpl-2.0-plus_696.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_696.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_697.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_697.RULE index ab54217fc27..e8e758d859e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_697.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_697.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPL2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_697.yml b/src/licensedcode/data/rules/gpl-2.0-plus_697.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_697.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_698.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_698.RULE index f17602e678f..55459721dbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_698.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_698.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPL 2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_698.yml b/src/licensedcode/data/rules/gpl-2.0-plus_698.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_698.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_699.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_699.RULE index e456ae9f0ea..db1d73e04ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_699.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_699.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licensed under the GNU General Public License, either version 2, or (at your option) any later version. See the included file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_699.yml b/src/licensedcode/data/rules/gpl-2.0-plus_699.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_699.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_7.RULE index 814d848a7a5..9fb19259b03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +notes: GPL 2.0 + debian version +--- + License: GNU General Public License, version 2 or later (GPL-2+) On Debian systems, the complete text of the GNU General Public License version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_7.yml deleted file mode 100644 index 27b7c14b1c2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -notes: GPL 2.0 + debian version diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_70.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_70.RULE index 95af42f3ccf..f3463ab86e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_70.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_70.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + is licensed under the GPLv2 or later, see `/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_70.yml b/src/licensedcode/data/rules/gpl-2.0-plus_70.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_700.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_700.RULE index 520db32e13f..16974c615dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_700.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_700.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License, either version 2, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_700.yml b/src/licensedcode/data/rules/gpl-2.0-plus_700.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_700.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_701.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_701.RULE index 5315dd67815..aebc688bd44 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_701.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_701.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +notes: configure option injected by FFmpeg in the built binaries +--- + --enable-gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_701.yml b/src/licensedcode/data/rules/gpl-2.0-plus_701.yml deleted file mode 100644 index 60cc5e1c6d8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_701.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -notes: configure option injected by FFmpeg in the built binaries diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_702.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_702.RULE index b575d166223..39b72f18087 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_702.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_702.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 +--- + %s 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_702.yml b/src/licensedcode/data/rules/gpl-2.0-plus_702.yml deleted file mode 100644 index ec2d6fdd0e1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_702.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_703.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_703.RULE index a55153200ce..6f7b8b39ddd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_703.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_703.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 99 +notes: configure option for old ffmpeg abd libav +--- + --disable-nonfree --disable-version3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_703.yml b/src/licensedcode/data/rules/gpl-2.0-plus_703.yml deleted file mode 100644 index d32567af2ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_703.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 99 -notes: configure option for old ffmpeg abd libav diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_704.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_704.RULE index 1672db1be5a..99c6813e45a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_704.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_704.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 99 +notes: configure option for old ffmpeg abd libav +--- + --disable-nonfree \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_704.yml b/src/licensedcode/data/rules/gpl-2.0-plus_704.yml deleted file mode 100644 index d32567af2ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_704.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 99 -notes: configure option for old ffmpeg abd libav diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_705.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_705.RULE index 0aeb59d6553..33195c2a276 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_705.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_705.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 +--- + Valid-License-Identifier: GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_705.yml b/src/licensedcode/data/rules/gpl-2.0-plus_705.yml deleted file mode 100644 index 2f7aaad3e18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_705.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_706.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_706.RULE index 70ddc3c3970..8c84d39f435 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_706.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_706.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 +--- + Valid-License-Identifier: GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_706.yml b/src/licensedcode/data/rules/gpl-2.0-plus_706.yml deleted file mode 100644 index 2f7aaad3e18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_706.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_707.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_707.RULE index bb17fba6a9d..4032aa4783e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_707.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_707.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Published under the GPLv2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_707.yml b/src/licensedcode/data/rules/gpl-2.0-plus_707.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_707.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_708.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_708.RULE index 81c00108a20..ff2ce849135 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_708.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_708.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GPLv2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_708.yml b/src/licensedcode/data/rules/gpl-2.0-plus_708.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_708.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_709.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_709.RULE index 1c55f6263dd..a83c814381f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_709.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_709.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Published under the GNU GPLv2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_709.yml b/src/licensedcode/data/rules/gpl-2.0-plus_709.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_709.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_71.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_71.RULE index 21a5ecf1604..e5b1aae7929 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_71.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_71.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + License: GPL-2+ 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. + of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_71.yml b/src/licensedcode/data/rules/gpl-2.0-plus_71.yml deleted file mode 100644 index 66ee53d7187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_710.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_710.RULE index c6ef0bf0ad3..82a7fd41cab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_710.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_710.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU GPLv2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_710.yml b/src/licensedcode/data/rules/gpl-2.0-plus_710.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_710.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_711.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_711.RULE index 140d4cc8ccd..5537a6d5c2c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_711.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_711.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ On Debian systems, the complete text of the GPL-2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_711.yml b/src/licensedcode/data/rules/gpl-2.0-plus_711.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_711.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_712.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_712.RULE index 8782a6c5579..bdac3926e28 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_712.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_712.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The program is distributed under the terms of the GNU General Public License version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_712.yml b/src/licensedcode/data/rules/gpl-2.0-plus_712.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_712.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_713.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_713.RULE index 194bc1129d5..242df0f562d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_713.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_713.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License : GPLv2 or higher, see LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_713.yml b/src/licensedcode/data/rules/gpl-2.0-plus_713.yml deleted file mode 100644 index 855796d4808..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_713.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_714.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_714.RULE index cef2f39f4e9..b88228d5273 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_714.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_714.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is covered by the GNU General Public License (GPLv2 or higher) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_714.yml b/src/licensedcode/data/rules/gpl-2.0-plus_714.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_714.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_715.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_715.RULE index 722ea807f5b..5cf3355de59 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_715.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_715.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This man page is covered by the GNU General Public License (GPLv2 or higher). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_715.yml b/src/licensedcode/data/rules/gpl-2.0-plus_715.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_715.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_716.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_716.RULE index f56b19bf2f6..2fc3279ee84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_716.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_716.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv2 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_716.yml b/src/licensedcode/data/rules/gpl-2.0-plus_716.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_716.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_717.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_717.RULE index 3c19f42cb0e..f52cfeabcc8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_717.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_717.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPLv2 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_717.yml b/src/licensedcode/data/rules/gpl-2.0-plus_717.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_717.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_718.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_718.RULE index 92588f30c90..d3f5a607738 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_718.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_718.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license: GPLv2 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_718.yml b/src/licensedcode/data/rules/gpl-2.0-plus_718.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_718.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_719.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_719.RULE index 04213dd6156..c16e340b41e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_719.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_719.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license: GNU GPLv2 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_719.yml b/src/licensedcode/data/rules/gpl-2.0-plus_719.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_719.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_72.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_72.RULE index 57854862a0b..4a87618a41a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_72.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_72.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_72.yml b/src/licensedcode/data/rules/gpl-2.0-plus_72.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_72.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_720.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_720.RULE index 641faefbf3d..8a78dbd433a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_720.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_720.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the GNU Public License (GPLv2 or higher) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_720.yml b/src/licensedcode/data/rules/gpl-2.0-plus_720.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_720.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_721.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_721.RULE index 940205ba960..913b09c8117 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_721.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_721.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/lisenses/gpl.txt +--- + License: GNU/GPLv2 or higher (http://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_721.yml b/src/licensedcode/data/rules/gpl-2.0-plus_721.yml deleted file mode 100644 index 8884d6c96a1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_721.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/lisenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_722.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_722.RULE index 9a3462f13f5..1f664f985e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_722.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_722.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU General Public License (GPLv2 or higher) as published by the Free Software Foundation (http://www. gnu.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_722.yml b/src/licensedcode/data/rules/gpl-2.0-plus_722.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_722.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_723.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_723.RULE index bf976479ac6..016dae4fdaa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_723.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_723.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU General Public License GPLv2 or higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_723.yml b/src/licensedcode/data/rules/gpl-2.0-plus_723.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_723.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_724.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_724.RULE index d734522eb35..b77c8d19375 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_724.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_724.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under the GNU General Public License GPLv2 or higher, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_724.yml b/src/licensedcode/data/rules/gpl-2.0-plus_724.yml deleted file mode 100644 index fd7c42f5523..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_724.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_725.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_725.RULE index 283fbf24028..cfb799d5da2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_725.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_725.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + distributed under the GNU General Public License GPLv2 or higher. Please see LICENSE.TXT for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_725.yml b/src/licensedcode/data/rules/gpl-2.0-plus_725.yml deleted file mode 100644 index 79e0bcc1208..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_725.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_726.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_726.RULE index 95aedfbd7da..0b7880e91ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_726.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_726.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + This software is distributed under the GNU General Public License GPLv2 or higher, see LICENSE.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_726.yml b/src/licensedcode/data/rules/gpl-2.0-plus_726.yml deleted file mode 100644 index 79e0bcc1208..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_726.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_727.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_727.RULE index aa0515a2df8..ef9d22e5a12 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_727.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_727.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.TXT +--- + License GPLv2 or higher, see the file COPYING.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_727.yml b/src/licensedcode/data/rules/gpl-2.0-plus_727.yml deleted file mode 100644 index 3b6177c3c59..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_727.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.TXT diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_728.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_728.RULE index d322fafc8a8..73c8c5802b0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_728.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_728.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU General Public License GPLv2 or higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_728.yml b/src/licensedcode/data/rules/gpl-2.0-plus_728.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_728.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_729.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_729.RULE index ca25793dba4..a0d23e93edf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_729.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_729.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + free software, distributed under the terms of the GNU General Public License GPLv2 or higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_729.yml b/src/licensedcode/data/rules/gpl-2.0-plus_729.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_729.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_73.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_73.RULE index ecfd74cc797..c6538bc2045 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_73.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_73.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + Even though BusyBox code, as a whole, can only be used under GPL version 2, some individual files may have more permissive licenses: "GPL version 2 or later" - meaning that you can also reuse the code from this source file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_73.yml b/src/licensedcode/data/rules/gpl-2.0-plus_73.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_73.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_730.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_730.RULE index abedc041fc7..f2cb46a488c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_730.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_730.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + free software, distributed under the terms of the GNU General Public License GPLv2 or higher. You must be aware there is no warranty whatsoever \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_730.yml b/src/licensedcode/data/rules/gpl-2.0-plus_730.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_730.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_731.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_731.RULE index affa31b39a0..5f0dc92216b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_731.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_731.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License is a free software, distributed under the terms of the GNU General Public License GPLv2 or higher. You must be aware there is no warranty whatsoever for . This is described in full in the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_731.yml b/src/licensedcode/data/rules/gpl-2.0-plus_731.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_731.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_732.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_732.RULE index c0a72ea5211..5453580d261 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_732.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_732.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + License: GPLv2 or higher License URI: http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_732.yml b/src/licensedcode/data/rules/gpl-2.0-plus_732.yml deleted file mode 100644 index d6a0cf87187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_732.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_733.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_733.RULE index fac71e801b7..d0e05bd99a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_733.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_733.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License Version 2, or (at your option) any later version ("GPL2+"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_733.yml b/src/licensedcode/data/rules/gpl-2.0-plus_733.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_733.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_734.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_734.RULE index 7ed30ed5dfd..342063124a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_734.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_734.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_734.yml b/src/licensedcode/data/rules/gpl-2.0-plus_734.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_734.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_735.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_735.RULE index b1d517997a7..2c3e215c46d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_735.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_735.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_735.yml b/src/licensedcode/data/rules/gpl-2.0-plus_735.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_735.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_736.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_736.RULE index 81f56f84545..5f10f5ed82d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_736.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_736.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_736.yml b/src/licensedcode/data/rules/gpl-2.0-plus_736.yml deleted file mode 100644 index e0fad11f532..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_736.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_737.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_737.RULE index ec8cddd2085..b643bfc3d20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_737.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_737.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_737.yml b/src/licensedcode/data/rules/gpl-2.0-plus_737.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_737.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_738.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_738.RULE index 74cb61c98bd..905f3df804a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_738.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_738.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_738.yml b/src/licensedcode/data/rules/gpl-2.0-plus_738.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_738.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_739.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_739.RULE index 6ca98eb0297..a9557aff038 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_739.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_739.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_739.yml b/src/licensedcode/data/rules/gpl-2.0-plus_739.yml deleted file mode 100644 index a6811fc7509..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_739.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_74.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_74.RULE index 5c07edcb2ba..40bee5272de 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_74.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_74.RULE @@ -1,3 +1,9 @@ -the "GPL v2" has been broadened to -"GPL v2 or any later version". +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- +the "GPL v2" has been broadened to +"GPL v2 or any later version". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_74.yml b/src/licensedcode/data/rules/gpl-2.0-plus_74.yml deleted file mode 100644 index 40757711040..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_74.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_740.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_740.RULE index bef67aec7d5..5651811e45f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_740.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_740.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_740.yml b/src/licensedcode/data/rules/gpl-2.0-plus_740.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_740.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_741.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_741.RULE index 0ba4d70ddab..25be9dc7271 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_741.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_741.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL + - COPYING +notes: Seen in dash +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_741.yml b/src/licensedcode/data/rules/gpl-2.0-plus_741.yml deleted file mode 100644 index 0bd70fbf965..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_741.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL - - COPYING -notes: Seen in dash diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_742.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_742.RULE index 31d5e8f50a5..ab8a8bdfd27 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_742.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_742.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_742.yml b/src/licensedcode/data/rules/gpl-2.0-plus_742.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_742.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_743.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_743.RULE index 11fcd07f264..eaa9974adf8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_743.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_743.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under GNU GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_743.yml b/src/licensedcode/data/rules/gpl-2.0-plus_743.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_743.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_744.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_744.RULE index ce14ae896a6..32db36cc5ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_744.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_744.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_744.yml b/src/licensedcode/data/rules/gpl-2.0-plus_744.yml deleted file mode 100644 index dcc6a91d75b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_744.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_745.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_745.RULE index c85063be902..72b72960621 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_745.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_745.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the terms of [GNU General Public License Version 2 or later] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_745.yml b/src/licensedcode/data/rules/gpl-2.0-plus_745.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_745.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_746.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_746.RULE index 72085cbbf97..fd83c12ae47 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_746.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_746.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Licensed under the terms of [GNU General Public License Version 2 or later](https://www.gnu.org/licenses/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_746.yml b/src/licensedcode/data/rules/gpl-2.0-plus_746.yml deleted file mode 100644 index 9c5cf6f972f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_746.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_747.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_747.RULE index 2077c65b869..5feb34e33d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_747.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_747.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Debian copyright file paragraph footer +--- + License: GPL-2+ On Debian systems the full text of the GNU General Public License version 2 can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_747.yml b/src/licensedcode/data/rules/gpl-2.0-plus_747.yml deleted file mode 100644 index 2338c8872c3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_747.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Debian copyright file paragraph footer diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_748.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_748.RULE index 5b638161d95..712f1d7fcf2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_748.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_748.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + "GNU General Public Licence, version 2 or later"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_748.yml b/src/licensedcode/data/rules/gpl-2.0-plus_748.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_748.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_749.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_749.RULE index 6e105b48b50..ef9622cffc9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_749.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_749.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_749.yml b/src/licensedcode/data/rules/gpl-2.0-plus_749.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_749.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_75.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_75.RULE index c84ff503ceb..4830b75831c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_75.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_75.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GPL: The GPL version 2 (or any later version) applies to all files in the directories: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_75.yml b/src/licensedcode/data/rules/gpl-2.0-plus_75.yml deleted file mode 100644 index 40757711040..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_75.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_750.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_750.RULE index a2d2b0e94e8..97460b5c910 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_750.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_750.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/deuce2367/aware/blob/7fd8331b2b98f9723dc4dc16817937de912a83bc/SRC/perl-Date-Calc/tools/pc2iso.c#L378 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING-2.0 +--- + /* 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 */ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_750.yml b/src/licensedcode/data/rules/gpl-2.0-plus_750.yml deleted file mode 100644 index 99ab343e53f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_750.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/deuce2367/aware/blob/7fd8331b2b98f9723dc4dc16817937de912a83bc/SRC/perl-Date-Calc/tools/pc2iso.c#L378 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_751.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_751.RULE index 5723c12d861..b6239d9a5e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_751.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_751.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/deuce2367/aware/blob/7fd8331b2b98f9723dc4dc16817937de912a83bc/SRC/perl-Date-Calc/tools/pc2iso.c#L378 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING-2.0 +--- + /* LICENSE: */ /* This program is free software; you can redistribute it and/or */ /* modify it under the terms of the GNU General Public License */ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_751.yml b/src/licensedcode/data/rules/gpl-2.0-plus_751.yml deleted file mode 100644 index 99ab343e53f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_751.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/deuce2367/aware/blob/7fd8331b2b98f9723dc4dc16817937de912a83bc/SRC/perl-Date-Calc/tools/pc2iso.c#L378 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_752.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_752.RULE index ea5ab8bb0f2..291c41fd5fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_752.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_752.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_752.yml b/src/licensedcode/data/rules/gpl-2.0-plus_752.yml deleted file mode 100644 index fd7c42f5523..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_752.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_753.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_753.RULE index 12eea14710a..e2ba6f3bbef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_753.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_753.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + all software (original and derived) is covered under the GPL (version 2 or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_753.yml b/src/licensedcode/data/rules/gpl-2.0-plus_753.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_753.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_754.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_754.RULE index 8ca68e6ad64..b264cab0551 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_754.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_754.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + all software (original and derived) is covered under the GPL (version 2 or later) On Debian GNU/Linux systems, the complete text of the GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_754.yml b/src/licensedcode/data/rules/gpl-2.0-plus_754.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_754.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_755.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_755.RULE index 4feb0ff0ea8..88660025619 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_755.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_755.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GPL version 2, or at your option, any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_755.yml b/src/licensedcode/data/rules/gpl-2.0-plus_755.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_755.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_756.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_756.RULE index f87ea664d82..3e62918f87f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_756.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_756.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_756.yml b/src/licensedcode/data/rules/gpl-2.0-plus_756.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_756.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_757.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_757.RULE index 0a05bce782e..6dc02a50f4d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_757.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_757.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + LICENSE This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_757.yml b/src/licensedcode/data/rules/gpl-2.0-plus_757.yml deleted file mode 100644 index 4f91576a8d7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_757.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_758.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_758.RULE index e8cd77e47e5..1367836b241 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_758.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_758.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The programs are distributed under the GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_758.yml b/src/licensedcode/data/rules/gpl-2.0-plus_758.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_758.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_759.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_759.RULE index 8acbf0ee42e..77008c07d0b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_759.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_759.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - README + - 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_759.yml b/src/licensedcode/data/rules/gpl-2.0-plus_759.yml deleted file mode 100644 index 1602c8bb6c7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_759.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - README - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_76.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_76.RULE index 828e5a65f22..60268aad5a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_76.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_76.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + This manual 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_76.yml b/src/licensedcode/data/rules/gpl-2.0-plus_76.yml deleted file mode 100644 index 53636a743dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_76.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_760.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_760.RULE index c27f6c36096..26eedd3b4fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_760.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_760.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_760.yml b/src/licensedcode/data/rules/gpl-2.0-plus_760.yml deleted file mode 100644 index 4d9aac36e3a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_760.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_761.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_761.RULE index 6d9a9ed0257..c73a8cd2644 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_761.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_761.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms GNU GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_761.yml b/src/licensedcode/data/rules/gpl-2.0-plus_761.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_761.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_762.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_762.RULE index 1e1c7d3ec81..abf42365585 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_762.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_762.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_762.yml b/src/licensedcode/data/rules/gpl-2.0-plus_762.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_762.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_763.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_763.RULE index 64e9585133a..c3658acb504 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_763.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_763.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_763.yml b/src/licensedcode/data/rules/gpl-2.0-plus_763.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_763.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_764.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_764.RULE index b8befb7e420..148344b8f09 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_764.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_764.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_764.yml b/src/licensedcode/data/rules/gpl-2.0-plus_764.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_764.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_765.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_765.RULE index 58f2be32218..e1264451cff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_765.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_765.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: typo in andor +--- + Permission is granted to copy, distribute andor modify this document 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_765.yml b/src/licensedcode/data/rules/gpl-2.0-plus_765.yml deleted file mode 100644 index 7acde4585ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_765.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: typo in andor diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_766.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_766.RULE index 572f2476499..7207460bdf7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_766.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_766.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: typo in andor +--- + Permission is granted to copy, distribute andor modify this document 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_766.yml b/src/licensedcode/data/rules/gpl-2.0-plus_766.yml deleted file mode 100644 index 7acde4585ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_766.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: typo in andor diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_767.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_767.RULE index 4c0fad190e4..c5821f5f2b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_767.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_767.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_767.yml b/src/licensedcode/data/rules/gpl-2.0-plus_767.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_767.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_768.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_768.RULE index 277e437486a..2f1bf74bcda 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_768.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_768.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_768.yml b/src/licensedcode/data/rules/gpl-2.0-plus_768.yml deleted file mode 100644 index 38a7c961bbc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_768.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_769.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_769.RULE index 17b237d2569..af69cd403c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_769.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_769.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_769.yml b/src/licensedcode/data/rules/gpl-2.0-plus_769.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_769.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_77.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_77.RULE index 0f8e7b0b7fb..5a838d3d8ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_77.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_77.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: per https://tcltk-team.pages.debian.net/policy-html/tcltk-policy.html/ this is a gpl2+, + not 1+ +--- + The package contains Debian Tcl/Tk policy manual which is distributed -under the terms of GNU GPL. +under the terms of GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_77.yml b/src/licensedcode/data/rules/gpl-2.0-plus_77.yml deleted file mode 100644 index 5c23c8ec7fc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_77.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: per https://tcltk-team.pages.debian.net/policy-html/tcltk-policy.html/ this is a gpl2+, - not 1+ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_770.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_770.RULE index c3c3d9a2476..5855a5623a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_770.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_770.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +notes: mix of library vs. lesser GPL and GPL vs. LGPL +--- + 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, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_770.yml b/src/licensedcode/data/rules/gpl-2.0-plus_770.yml deleted file mode 100644 index 1b26522cbaf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_770.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -notes: mix of library vs. lesser GPL and GPL vs. LGPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_771.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_771.RULE index 3948ea0c6a9..41ecd2a4b12 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_771.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_771.RULE @@ -1 +1,7 @@ -{{GPL-2.0-or-later - GNU General Public License version 2, or any later version}} +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +{{GPL-2.0-or-later - GNU General Public License version 2, or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_771.yml b/src/licensedcode/data/rules/gpl-2.0-plus_771.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_771.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_772.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_772.RULE index 2e4eb3e91f2..f8297e1fda1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_772.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_772.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License version 2, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_772.yml b/src/licensedcode/data/rules/gpl-2.0-plus_772.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_772.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_773.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_773.RULE index caa591b10fa..3db1f1b3ebb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_773.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_773.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + The ./COPYING file (GPL-2.0-or-later) is the default license for code without an explicitly defined license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_773.yml b/src/licensedcode/data/rules/gpl-2.0-plus_773.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_773.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_774.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_774.RULE index 9df594a78a9..dba9e6f224a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_774.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_774.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_774.yml b/src/licensedcode/data/rules/gpl-2.0-plus_774.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_774.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_775.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_775.RULE index 154c3826210..072f6b4774b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_775.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_775.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_775.yml b/src/licensedcode/data/rules/gpl-2.0-plus_775.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_775.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_776.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_776.RULE index 76f2d778074..492901480e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_776.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_776.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed for use, modification and redistribution under the terms of the GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_776.yml b/src/licensedcode/data/rules/gpl-2.0-plus_776.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_776.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_777.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_777.RULE index 0708c685cd4..4b7c4c71ee1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_777.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_777.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU General Public License, version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_777.yml b/src/licensedcode/data/rules/gpl-2.0-plus_777.yml deleted file mode 100644 index 02f126626d2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_777.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_778.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_778.RULE index 1a3481d55cc..65d4a4193cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_778.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_778.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_778.yml b/src/licensedcode/data/rules/gpl-2.0-plus_778.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_778.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_779.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_779.RULE index b4e1831ebb0..6d2a927a19d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_779.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_779.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_779.yml b/src/licensedcode/data/rules/gpl-2.0-plus_779.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_779.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_78.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_78.RULE index 99add821fc4..7b7914d55fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_78.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_78.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + # GNU Classpath 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 @@ -9,4 +14,4 @@ # You should have received a copy of the GNU General Public License # along with GNU Classpath; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -# USA +# USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_78.yml b/src/licensedcode/data/rules/gpl-2.0-plus_78.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_78.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_780.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_780.RULE index 8f6a34c2bd1..66b6c8d68c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_780.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_780.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_780.yml b/src/licensedcode/data/rules/gpl-2.0-plus_780.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_780.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_781.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_781.RULE index 0165803767b..13cbef4d63f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_781.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_781.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_781.yml b/src/licensedcode/data/rules/gpl-2.0-plus_781.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_781.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_782.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_782.RULE index 20e88321ce9..48dc9ba64b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_782.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_782.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl-2.0.html +--- + License GPLv2+: GNU GPL version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_782.yml b/src/licensedcode/data/rules/gpl-2.0-plus_782.yml deleted file mode 100644 index f4a21ff9f07..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_782.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_783.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_783.RULE index 6f08dc15efa..e6f5b4b3683 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_783.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_783.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://gnu.org/licenses/gpl-2.0.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_783.yml b/src/licensedcode/data/rules/gpl-2.0-plus_783.yml deleted file mode 100644 index 94443f18c00..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_783.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_784.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_784.RULE index 87c847b7bf3..80e3d9d1f3a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_784.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_784.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LICENSE INFORMATION: GPL v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_784.yml b/src/licensedcode/data/rules/gpl-2.0-plus_784.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_784.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_785.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_785.RULE index a534366ca64..04c78f11a09 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_785.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_785.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_785.yml b/src/licensedcode/data/rules/gpl-2.0-plus_785.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_785.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_786.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_786.RULE index 08a051bc120..c9de448b8ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_786.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_786.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_786.yml b/src/licensedcode/data/rules/gpl-2.0-plus_786.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_786.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_787.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_787.RULE index 7b9c54d00bf..3eb8ac9307c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_787.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_787.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_787.yml b/src/licensedcode/data/rules/gpl-2.0-plus_787.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_787.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_788.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_788.RULE index 9d401e7d038..c328f543a3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_788.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_788.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + this product may be distributed under the terms of GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_788.yml b/src/licensedcode/data/rules/gpl-2.0-plus_788.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_788.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_789.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_789.RULE index ffde30e67f1..b9438f8744e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_789.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_789.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This library 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_789.yml b/src/licensedcode/data/rules/gpl-2.0-plus_789.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_789.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_79.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_79.RULE index 39eef162896..3c908abe363 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_79.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_79.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + the license is GPL2 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_79.yml b/src/licensedcode/data/rules/gpl-2.0-plus_79.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_790.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_790.RULE index 3cd0c5d3c3c..46dd37fda3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_790.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_790.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_790.yml b/src/licensedcode/data/rules/gpl-2.0-plus_790.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_790.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_791.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_791.RULE index 401ab22d2a6..475a8c5a3f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_791.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_791.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_791.yml b/src/licensedcode/data/rules/gpl-2.0-plus_791.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_791.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_792.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_792.RULE index 79c248d71e5..ff853c4c54b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_792.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_792.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + GNU 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_792.yml b/src/licensedcode/data/rules/gpl-2.0-plus_792.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_792.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_793.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_793.RULE index e53539e9861..d232e537833 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_793.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_793.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL: This file is distributed under the same license as the dialog package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_793.yml b/src/licensedcode/data/rules/gpl-2.0-plus_793.yml deleted file mode 100644 index 88b875b6871..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_793.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_794.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_794.RULE index 26967ffdfc6..94b659ca236 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_794.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_794.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + GNU 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_794.yml b/src/licensedcode/data/rules/gpl-2.0-plus_794.yml deleted file mode 100644 index 93a649a0dcf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_794.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_795.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_795.RULE index d810f0ada6e..60356f19e84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_795.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_795.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_795.yml b/src/licensedcode/data/rules/gpl-2.0-plus_795.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_795.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_796.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_796.RULE index 6b7fac5fe6e..f90d5cfafda 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_796.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_796.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The code is licensed under GNU GPL v2, or any later version at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_796.yml b/src/licensedcode/data/rules/gpl-2.0-plus_796.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_796.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_797.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_797.RULE index abc1294c1f5..4356d41ac3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_797.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_797.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL v2, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_797.yml b/src/licensedcode/data/rules/gpl-2.0-plus_797.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_797.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_798.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_798.RULE index 456cc185c2c..648dbf562f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_798.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_798.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: Seen in pacemaker HTML doc +--- + Public License (GPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_798.yml b/src/licensedcode/data/rules/gpl-2.0-plus_798.yml deleted file mode 100644 index 187a07c7edd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_798.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: Seen in pacemaker HTML doc diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_799.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_799.RULE index b85c9e4560e..016ee168e67 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_799.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_799.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_799.yml b/src/licensedcode/data/rules/gpl-2.0-plus_799.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_799.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_8.RULE index 66753379331..053da8fb142 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This package 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 @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_8.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_80.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_80.RULE index d0f566dfc02..26f7f10dbbc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_80.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_80.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv2h": The GNU General Public License, version 2 or (at your option) higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_80.yml b/src/licensedcode/data/rules/gpl-2.0-plus_80.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_800.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_800.RULE index 2046376a82d..d4a47002913 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_800.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_800.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_800.yml b/src/licensedcode/data/rules/gpl-2.0-plus_800.yml deleted file mode 100644 index a4c012c1e31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_800.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_801.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_801.RULE index f88d681db3b..ee489078858 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_801.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_801.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_801.yml b/src/licensedcode/data/rules/gpl-2.0-plus_801.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_801.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_802.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_802.RULE index fb7c6ba427b..94fb4629879 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_802.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_802.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Subcommander 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_802.yml b/src/licensedcode/data/rules/gpl-2.0-plus_802.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_802.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_803.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_803.RULE index 8ea7ceb7ed1..fa09ef6e881 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_803.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_803.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_803.yml b/src/licensedcode/data/rules/gpl-2.0-plus_803.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_803.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_804.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_804.RULE index 01ce854b88d..c0d0b249ec1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_804.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_804.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of GNU GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_804.yml b/src/licensedcode/data/rules/gpl-2.0-plus_804.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_804.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_805.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_805.RULE index ddbb617179a..8b6ec4ba34d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_805.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_805.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License Version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_805.yml b/src/licensedcode/data/rules/gpl-2.0-plus_805.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_805.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_806.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_806.RULE index ae3d8a3599f..da8d3b9b399 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_806.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_806.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_806.yml b/src/licensedcode/data/rules/gpl-2.0-plus_806.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_806.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_807.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_807.RULE index 027c88f992d..6998a975ca2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_807.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_807.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_807.yml b/src/licensedcode/data/rules/gpl-2.0-plus_807.yml deleted file mode 100644 index 38a7c961bbc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_807.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_808.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_808.RULE index 66aad09dd36..241dc32df3b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_808.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_808.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_808.yml b/src/licensedcode/data/rules/gpl-2.0-plus_808.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_808.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_809.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_809.RULE index c62c5191c71..ff957c5102f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_809.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_809.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU GPL, v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_809.yml b/src/licensedcode/data/rules/gpl-2.0-plus_809.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_809.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_81.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_81.RULE index 12e86f0355b..0cf6e27a093 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_81.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_81.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License: GPL-2+ # This is free software; you may copy, modify and/or distribute this work # under the terms of the GNU General Public License, version 2 or later. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_81.yml b/src/licensedcode/data/rules/gpl-2.0-plus_81.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_81.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_810.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_810.RULE index 946449e93fd..389a1705f58 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_810.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_810.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0-or-later +--- + LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_810.yml b/src/licensedcode/data/rules/gpl-2.0-plus_810.yml deleted file mode 100644 index c0329095fb0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_810.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0-or-later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_811.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_811.RULE index 80dadccbe38..edb260e436f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_811.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_811.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + and is GPL V2 as well. This program is free software; you can redistribute it and/or modify @@ -16,4 +23,4 @@ and is GPL V2 as well. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_811.yml b/src/licensedcode/data/rules/gpl-2.0-plus_811.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_811.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_812.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_812.RULE index 00e17546a17..4660581656e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_812.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_812.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 @@ -5,4 +13,4 @@ the Free Software Foundation; either version 2 of the License, or On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL', version 2 of this -license in `/usr/share/common-licenses/GPL-2'. +license in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_812.yml b/src/licensedcode/data/rules/gpl-2.0-plus_812.yml deleted file mode 100644 index 0fd09a52a20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_812.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_813.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_813.RULE index fbe86ce4be0..b48a816de8f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_813.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_813.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The documentation is licensed under -the GPLv2 (or later), +the GPLv2 (or later), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_813.yml b/src/licensedcode/data/rules/gpl-2.0-plus_813.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_813.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_814.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_814.RULE index f5830c74d0d..1d2f87c92a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_814.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_814.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_814.yml b/src/licensedcode/data/rules/gpl-2.0-plus_814.yml deleted file mode 100644 index 64c42afc688..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_814.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_815.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_815.RULE index 3e0f1451f01..67d4146ae84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_815.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_815.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU GPL, version 2 or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_815.yml b/src/licensedcode/data/rules/gpl-2.0-plus_815.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_815.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_816.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_816.RULE index 64e090fe4a4..56c337b2538 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_816.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_816.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_816.yml b/src/licensedcode/data/rules/gpl-2.0-plus_816.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_816.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_817.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_817.RULE index 4f47627ca0e..2e67045acd1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_817.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_817.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under GPLv2+ license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_817.yml b/src/licensedcode/data/rules/gpl-2.0-plus_817.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_817.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_818.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_818.RULE index 0d97bd6153c..1e7815f2751 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_818.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_818.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + /* Licensed under GPLv2+ - see LICENSE file for details */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_818.yml b/src/licensedcode/data/rules/gpl-2.0-plus_818.yml deleted file mode 100644 index fd7c42f5523..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_818.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_819.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_819.RULE index 991685c3fe6..4f174a434ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_819.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_819.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the GPL (GNU Public License) is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_819.yml b/src/licensedcode/data/rules/gpl-2.0-plus_819.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_819.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_82.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_82.RULE index 61cc2854634..6f5bd34fe27 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_82.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_82.RULE @@ -1,3 +1,8 @@ +--- +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, or (at your option) @@ -10,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. +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_82.yml b/src/licensedcode/data/rules/gpl-2.0-plus_82.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_82.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_820.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_820.RULE index 3ec20f395af..3f1613d52b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_820.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_820.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_820.yml b/src/licensedcode/data/rules/gpl-2.0-plus_820.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_820.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_821.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_821.RULE index ecc95755dc3..3a24384415a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_821.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_821.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This file is licensed under GPLv2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_821.yml b/src/licensedcode/data/rules/gpl-2.0-plus_821.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_821.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_822.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_822.RULE index 93f55c9c03f..1c9150339ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_822.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_822.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This file is licensed under GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_822.yml b/src/licensedcode/data/rules/gpl-2.0-plus_822.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_822.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_823.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_823.RULE index d7b97c0a7d3..46e9390cefc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_823.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_823.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_823.yml b/src/licensedcode/data/rules/gpl-2.0-plus_823.yml deleted file mode 100644 index 4f91576a8d7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_823.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_824.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_824.RULE index 28880c931ff..d3c8585ab3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_824.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_824.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_824.yml b/src/licensedcode/data/rules/gpl-2.0-plus_824.yml deleted file mode 100644 index 4f91576a8d7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_824.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_825.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_825.RULE index a53edc88df1..1ff40de8919 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_825.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_825.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the GPL, version 2.0 (or at you're discretion any later version of this license). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_825.yml b/src/licensedcode/data/rules/gpl-2.0-plus_825.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_825.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_826.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_826.RULE index 0e17705f43a..cff77f2de2f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_826.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_826.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.en.html +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_826.yml b/src/licensedcode/data/rules/gpl-2.0-plus_826.yml deleted file mode 100644 index 332126ff8a2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_826.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_827.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_827.RULE index d476d874532..17e5aeffb37 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_827.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_827.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_827.yml b/src/licensedcode/data/rules/gpl-2.0-plus_827.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_827.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_828.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_828.RULE index 588e428d24a..729a756318d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_828.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_828.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + ## The GPL ## This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_828.yml b/src/licensedcode/data/rules/gpl-2.0-plus_828.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_828.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_829.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_829.RULE index 807db3d4bd5..a36b4843f80 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_829.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_829.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 98 +--- + GNU Public License v2.0 * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_829.yml b/src/licensedcode/data/rules/gpl-2.0-plus_829.yml deleted file mode 100644 index dd27d1a6cc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_829.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_83.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_83.RULE index 8e522138c61..fef87a956c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_83.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_83.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 50 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_83.yml b/src/licensedcode/data/rules/gpl-2.0-plus_83.yml deleted file mode 100644 index cabf080f5e1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_830.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_830.RULE index 5e2b5cd3557..540d1c2f226 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_830.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_830.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under "GPL version 2 or later" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_830.yml b/src/licensedcode/data/rules/gpl-2.0-plus_830.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_830.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_831.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_831.RULE index 4433a827777..4c12d63201a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_831.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_831.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + whole must be conveyed under "GPL version 2 or later". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_831.yml b/src/licensedcode/data/rules/gpl-2.0-plus_831.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_831.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_832.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_832.RULE index b2c6534cfcb..06c6b0975ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_832.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_832.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + files of this project are licensed under GPLV2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_832.yml b/src/licensedcode/data/rules/gpl-2.0-plus_832.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_832.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_833.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_833.RULE index adda87e3e27..2caab905868 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_833.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_833.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL + - COPYING +--- + The files in this package are free software; you can redistribute them and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_833.yml b/src/licensedcode/data/rules/gpl-2.0-plus_833.yml deleted file mode 100644 index 480a970b934..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_833.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_834.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_834.RULE index 0432e40e6d5..85386c3417a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_834.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_834.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_834.yml b/src/licensedcode/data/rules/gpl-2.0-plus_834.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_834.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_835.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_835.RULE index d9b3b53f50c..20a91820bb8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_835.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_835.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_835.yml b/src/licensedcode/data/rules/gpl-2.0-plus_835.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_835.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_836.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_836.RULE index 4d307f4cf52..dd801bd4ad3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_836.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_836.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_836.yml b/src/licensedcode/data/rules/gpl-2.0-plus_836.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_836.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_837.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_837.RULE index feee8aab839..7db3b686da0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_837.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_837.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_837.yml b/src/licensedcode/data/rules/gpl-2.0-plus_837.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_837.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_838.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_838.RULE index 7d59fbebdf7..ab338f14bb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_838.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_838.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_838.yml b/src/licensedcode/data/rules/gpl-2.0-plus_838.yml deleted file mode 100644 index 02c63c1a7b9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_838.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_839.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_839.RULE index 66dfd3ff7d1..1cbe107cc6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_839.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_839.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_839.yml b/src/licensedcode/data/rules/gpl-2.0-plus_839.yml deleted file mode 100644 index edaff48305d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_839.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_84.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_84.RULE index 885ae00df74..0ed932a247f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_84.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_84.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_84.yml b/src/licensedcode/data/rules/gpl-2.0-plus_84.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_84.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_840.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_840.RULE index ec8bbcfd0fd..d3c3a39657c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_840.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_840.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This program is released under the GNU General Public License (GPL), either version 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_840.yml b/src/licensedcode/data/rules/gpl-2.0-plus_840.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_840.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_841.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_841.RULE index 6bd39e43ab3..22cd862c38e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_841.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_841.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This program is released under the GNU General Public License (GPL), either version 2 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_841.yml b/src/licensedcode/data/rules/gpl-2.0-plus_841.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_841.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_842.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_842.RULE index 21cbe895293..3aa2e670b72 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_842.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_842.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_842.yml b/src/licensedcode/data/rules/gpl-2.0-plus_842.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_842.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_843.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_843.RULE index 17dc97ea28c..8dd08e6ebc9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_843.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_843.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems a full copy of the GPL 2 can be found at /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_843.yml b/src/licensedcode/data/rules/gpl-2.0-plus_843.yml deleted file mode 100644 index 565f192628d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_843.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_844.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_844.RULE index 166b5e247c5..d5937256fd7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_844.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_844.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_844.yml b/src/licensedcode/data/rules/gpl-2.0-plus_844.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_844.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_845.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_845.RULE index e8644d0428b..15ef4cb757d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_845.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_845.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_845.yml b/src/licensedcode/data/rules/gpl-2.0-plus_845.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_845.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_846.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_846.RULE index 9b0e2b0daa6..d1237df19de 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_846.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_846.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_846.yml b/src/licensedcode/data/rules/gpl-2.0-plus_846.yml deleted file mode 100644 index 0b2b8626a7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_846.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_847.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_847.RULE index 2e688594cdd..0cd89d68108 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_847.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_847.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_847.yml b/src/licensedcode/data/rules/gpl-2.0-plus_847.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_847.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_848.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_848.RULE index 5291718e9e7..0d2fe708ebf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_848.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_848.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + > Have you intended for that package to be released under a Free > Software license (basically: one that allows distribution and > modification)? If so, could you please provide a version of that diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_848.yml b/src/licensedcode/data/rules/gpl-2.0-plus_848.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_848.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_849.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_849.RULE index c8cf28d9ca8..2540fb376bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_849.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_849.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + It is distributed 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_849.yml b/src/licensedcode/data/rules/gpl-2.0-plus_849.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_849.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_85.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_85.RULE index 69ffbf43ee7..51be9b21691 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_85.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_85.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,4 +15,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_85.yml b/src/licensedcode/data/rules/gpl-2.0-plus_85.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_85.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_850.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_850.RULE index 05753ee1f51..8ed3834d2d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_850.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_850.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + is free software: you may 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_850.yml b/src/licensedcode/data/rules/gpl-2.0-plus_850.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_850.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_851.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_851.RULE index d704c63d0bb..c0f937b75b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_851.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_851.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_851.yml b/src/licensedcode/data/rules/gpl-2.0-plus_851.yml deleted file mode 100644 index 38251d33490..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_851.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_852.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_852.RULE index 93744cdd625..53cd1734b82 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_852.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_852.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_852.yml b/src/licensedcode/data/rules/gpl-2.0-plus_852.yml deleted file mode 100644 index 38251d33490..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_852.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_853.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_853.RULE index 3dfe4a1b464..adf2ecbf9e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_853.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_853.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * This software may be distributed under the terms of the Gnu * Public License version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_853.yml b/src/licensedcode/data/rules/gpl-2.0-plus_853.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_853.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_854.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_854.RULE index 17bdc2e29ce..791b26493a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_854.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_854.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_854.yml b/src/licensedcode/data/rules/gpl-2.0-plus_854.yml deleted file mode 100644 index 0b2b8626a7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_854.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_855.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_855.RULE index 7eaa5f1b633..4bd4efc98d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_855.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_855.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + released separately under the GNU General Public License (GPL) version 2.0 (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_855.yml b/src/licensedcode/data/rules/gpl-2.0-plus_855.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_855.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_856.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_856.RULE index 01bb3fdf27e..b513b8cdb90 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_856.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_856.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_856.yml b/src/licensedcode/data/rules/gpl-2.0-plus_856.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_856.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_857.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_857.RULE index 7593043f79e..5cd3baf0c54 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_857.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_857.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_857.yml b/src/licensedcode/data/rules/gpl-2.0-plus_857.yml deleted file mode 100644 index 38251d33490..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_857.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_858.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_858.RULE index 96fb4f0ddb6..b0df773c007 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_858.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_858.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_858.yml b/src/licensedcode/data/rules/gpl-2.0-plus_858.yml deleted file mode 100644 index 38251d33490..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_858.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_859.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_859.RULE index c748ef4a744..5a00b72f2ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_859.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_859.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_859.yml b/src/licensedcode/data/rules/gpl-2.0-plus_859.yml deleted file mode 100644 index d6677a4a4fe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_859.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_86.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_86.RULE index 6a02c8cee2d..d48ad794aea 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_86.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_86.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,4 +15,4 @@ * * 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., 59 Temple Place, Suite 330, Boston, MA02111-1307USA + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_86.yml b/src/licensedcode/data/rules/gpl-2.0-plus_86.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_86.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_860.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_860.RULE index 52519f23831..f51eddd4b23 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_860.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_860.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_860.yml b/src/licensedcode/data/rules/gpl-2.0-plus_860.yml deleted file mode 100644 index 02c63c1a7b9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_860.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_861.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_861.RULE index 4def3f6c075..4623af8ec40 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_861.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_861.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_861.yml b/src/licensedcode/data/rules/gpl-2.0-plus_861.yml deleted file mode 100644 index edaff48305d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_861.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_862.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_862.RULE index b467fd91e0a..03ef85df363 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_862.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_862.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_862.yml b/src/licensedcode/data/rules/gpl-2.0-plus_862.yml deleted file mode 100644 index 38251d33490..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_862.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_863.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_863.RULE index ee040cb499f..87c87568bd2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_863.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_863.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_863.yml b/src/licensedcode/data/rules/gpl-2.0-plus_863.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_863.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_864.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_864.RULE index 7f2ddb0d7b4..f28a1ec556e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_864.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_864.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_864.yml b/src/licensedcode/data/rules/gpl-2.0-plus_864.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_864.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_865.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_865.RULE index 0a7e35c4d01..490f3e1aeb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_865.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_865.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_865.yml b/src/licensedcode/data/rules/gpl-2.0-plus_865.yml deleted file mode 100644 index 38a7c961bbc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_865.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_866.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_866.RULE index 8559bd1f4d2..c7a320d3432 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_866.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_866.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_866.yml b/src/licensedcode/data/rules/gpl-2.0-plus_866.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_866.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_867.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_867.RULE index be2586703a0..e560cdef958 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_867.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_867.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +notes: GPL 2.0 + debian version +--- + License: GNU General Public License, version 2 or later (GPL-2+) On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_867.yml b/src/licensedcode/data/rules/gpl-2.0-plus_867.yml deleted file mode 100644 index 7297ee97115..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_867.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -notes: GPL 2.0 + debian version diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_868.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_868.RULE index e2588cbd9ab..5f23fb8c2c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_868.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_868.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems a full copy of the GPL 2 can be found at /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_868.yml b/src/licensedcode/data/rules/gpl-2.0-plus_868.yml deleted file mode 100644 index d6dcd3965f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_868.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_869.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_869.RULE index f5ff96d9f26..77013bcf027 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_869.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_869.RULE @@ -1,5 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + Debian packaging (debian/*) is: Copyright: License: GNU General Public License, version 2 or later (GPL-2+) On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. + version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_869.yml b/src/licensedcode/data/rules/gpl-2.0-plus_869.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_869.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_87.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_87.RULE index 88fedc9c4fa..3ce94b354cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_87.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_87.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.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 2 of the License, or @@ -12,4 +19,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems the full text of the GNU General Public -License can be found in the `/usr/share/common-licenses/GPL-2' file. +License can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_87.yml b/src/licensedcode/data/rules/gpl-2.0-plus_87.yml deleted file mode 100644 index 52fb78bda1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_87.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_870.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_870.RULE index 4e346064c49..a2a65ba84c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_870.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_870.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+. 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_870.yml b/src/licensedcode/data/rules/gpl-2.0-plus_870.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_870.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_871.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_871.RULE index 78ce7b6cc75..f78ca047384 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_871.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_871.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ On Debian GNU/Linux systems, the complete text of the GPL-2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_871.yml b/src/licensedcode/data/rules/gpl-2.0-plus_871.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_871.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_872.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_872.RULE index 8da6b870836..5b93f59004e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_872.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_872.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ License: GPL-2+ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_872.yml b/src/licensedcode/data/rules/gpl-2.0-plus_872.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_872.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_873.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_873.RULE index 2f4f92d97f0..86db68ab76c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_873.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_873.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_873.yml b/src/licensedcode/data/rules/gpl-2.0-plus_873.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_873.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_874.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_874.RULE index 3886321b9d1..2d18895abf7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_874.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_874.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_874.yml b/src/licensedcode/data/rules/gpl-2.0-plus_874.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_874.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_875.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_875.RULE index 790dec8b932..15d5d8ba22d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_875.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_875.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_875.yml b/src/licensedcode/data/rules/gpl-2.0-plus_875.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_875.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_876.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_876.RULE index 88fd5102d1f..c178aea610b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_876.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_876.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_876.yml b/src/licensedcode/data/rules/gpl-2.0-plus_876.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_876.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_877.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_877.RULE index a863c524f1d..6cee3a12cb1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_877.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_877.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: GPL 2.0 short notice +--- + License: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_877.yml b/src/licensedcode/data/rules/gpl-2.0-plus_877.yml deleted file mode 100644 index fd7ec1646cb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_877.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: GPL 2.0 short notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_878.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_878.RULE index c83bc5010b6..82515df2e5d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_878.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_878.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +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 2 of the License, or @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian GNU/Linux systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_878.yml b/src/licensedcode/data/rules/gpl-2.0-plus_878.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_878.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_879.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_879.RULE index e8ab56e62e7..00270ab94cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_879.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_879.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ | This program is free software; you can redistribute it and/or | modify it under the terms of the GNU General Public License @@ -15,4 +23,4 @@ License: GPL-2+ | | | On Debian GNU/Linux systems, the complete text of the GNU General Public License - | version 2 can be found in “/usr/share/common-licenses/GPL-2”. + | version 2 can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_879.yml b/src/licensedcode/data/rules/gpl-2.0-plus_879.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_879.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_88.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_88.RULE index abeb5099cfd..7ea0c13834b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_88.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_88.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This is free software; see the GNU General Public License version 2 * or later for copying conditions. There is NO warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_88.yml b/src/licensedcode/data/rules/gpl-2.0-plus_88.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_88.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_880.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_880.RULE index a87c18992c5..ed5d15cc654 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_880.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_880.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_880.yml b/src/licensedcode/data/rules/gpl-2.0-plus_880.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_880.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_881.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_881.RULE index 073eee8d5e7..e0074431f80 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_881.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_881.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_881.yml b/src/licensedcode/data/rules/gpl-2.0-plus_881.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_881.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_882.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_882.RULE index 537b20c2481..1b5c1c86224 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_882.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_882.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_882.yml b/src/licensedcode/data/rules/gpl-2.0-plus_882.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_882.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_883.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_883.RULE index 324c4482fa9..6b4fd25e114 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_883.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_883.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_883.yml b/src/licensedcode/data/rules/gpl-2.0-plus_883.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_883.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_884.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_884.RULE index 8cdf5dee9a0..3fe69915a7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_884.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_884.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +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 2 of the License, or @@ -12,4 +20,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian GNU/Linux systems the full text of the GNU General Public -License can be found in the `/usr/share/common-licenses/GPL-2' file. +License can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_884.yml b/src/licensedcode/data/rules/gpl-2.0-plus_884.yml deleted file mode 100644 index 000de754f70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_884.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_885.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_885.RULE index 58590972719..e630e7edb9a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_885.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_885.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ On Debian GNU/Linux systems the full text of the GNU General Public License can be found in the `/usr/share/common-licenses/GPL-2' diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_885.yml b/src/licensedcode/data/rules/gpl-2.0-plus_885.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_885.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_886.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_886.RULE index 9558029fdaa..2677cd8dd5a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_886.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_886.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_886.yml b/src/licensedcode/data/rules/gpl-2.0-plus_886.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_886.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_887.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_887.RULE index d6dcd6bece9..1d112cb44af 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_887.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_887.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_887.yml b/src/licensedcode/data/rules/gpl-2.0-plus_887.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_887.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_888.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_888.RULE index 8e38e907689..6c17b574f57 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_888.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_888.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_888.yml b/src/licensedcode/data/rules/gpl-2.0-plus_888.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_888.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_889.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_889.RULE index b8e73fa86b3..1ebc1c4ce6f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_889.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_889.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL v2 or later This package is free software; you can redistribute it and/or modify @@ -15,4 +21,4 @@ License: GPL v2 or later Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_889.yml b/src/licensedcode/data/rules/gpl-2.0-plus_889.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_889.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_89.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_89.RULE index 7b22c1e454b..152f56a3bc2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_89.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_89.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +notes: GPL 2.0 short notice +--- + License: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_89.yml b/src/licensedcode/data/rules/gpl-2.0-plus_89.yml deleted file mode 100644 index fd5b21595d5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_89.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 -notes: GPL 2.0 short notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_890.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_890.RULE index c4d591bebd8..3b8c1de0383 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_890.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_890.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + License: This package is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_890.yml b/src/licensedcode/data/rules/gpl-2.0-plus_890.yml deleted file mode 100644 index a6811fc7509..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_890.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_891.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_891.RULE index 1fea390236f..3594711dc17 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_891.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_891.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: GPL 2 or later notice, with debian line +--- + This package 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 @@ -13,4 +21,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_891.yml b/src/licensedcode/data/rules/gpl-2.0-plus_891.yml deleted file mode 100644 index e1932bc77ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_891.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: GPL 2 or later notice, with debian line diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_892.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_892.RULE index ed5cde85d38..999d89ce632 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_892.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_892.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_892.yml b/src/licensedcode/data/rules/gpl-2.0-plus_892.yml deleted file mode 100644 index da108cf1dea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_892.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_893.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_893.RULE index cb7c9eef807..2d562cd0675 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_893.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_893.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + License: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_893.yml b/src/licensedcode/data/rules/gpl-2.0-plus_893.yml deleted file mode 100644 index e62e0beb5cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_893.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_894.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_894.RULE index 272e3487c26..c9e80d7b6bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_894.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_894.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: This package is free software; you can redistribute it and/or modify @@ -15,4 +21,4 @@ License: Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_894.yml b/src/licensedcode/data/rules/gpl-2.0-plus_894.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_894.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_895.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_895.RULE index 8262f1249c8..16a7f9c7629 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_895.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_895.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_895.yml b/src/licensedcode/data/rules/gpl-2.0-plus_895.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_895.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_896.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_896.RULE index 217c080e3cf..f022300f853 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_896.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_896.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 2 or later Debian notice +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 2 of the License, or @@ -14,4 +23,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_896.yml b/src/licensedcode/data/rules/gpl-2.0-plus_896.yml deleted file mode 100644 index feb093aa87e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_896.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 2 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_897.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_897.RULE index 5aae353a3cb..c57500296a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_897.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_897.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + 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. On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_897.yml b/src/licensedcode/data/rules/gpl-2.0-plus_897.yml deleted file mode 100644 index 4f91576a8d7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_897.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_898.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_898.RULE index 6818c9fd9f8..9ea7416b43b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_898.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_898.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Debian copyright file paragraph footer +--- + License: GPL-2+ On Debian GNU/Linux systems the full text of the GNU General Public License version 2 can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_898.yml b/src/licensedcode/data/rules/gpl-2.0-plus_898.yml deleted file mode 100644 index 2338c8872c3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_898.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Debian copyright file paragraph footer diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_899.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_899.RULE index e6e51dcb8ac..7a9d47c86b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_899.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_899.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ # This is free software; you may copy, modify and/or distribute this work # under the terms of the GNU General Public License, version 2 or later. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_899.yml b/src/licensedcode/data/rules/gpl-2.0-plus_899.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_899.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_9.RULE index 7e6c5f42790..d395a6867dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + /* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_9.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_90.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_90.RULE index b95741d426f..5e74770723d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_90.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_90.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ 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. + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_90.yml b/src/licensedcode/data/rules/gpl-2.0-plus_90.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_90.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_900.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_900.RULE index ba9b0b6b025..2f36c7d6617 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_900.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_900.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +notes: there are some ambiguity wrt the lesser vs. GPL +--- + 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; version 2 of the License, or @@ -13,4 +20,4 @@ Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. On Debian GNU/Linux systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/GPL-2'. + General Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_900.yml b/src/licensedcode/data/rules/gpl-2.0-plus_900.yml deleted file mode 100644 index 54c9838091e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_900.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 -notes: there are some ambiguity wrt the lesser vs. GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_901.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_901.RULE index 3ae7e51178b..09642746464 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_901.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_901.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Main License (everything except docs): This package is free software; you can redistribute it and/or modify @@ -18,4 +24,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. The Debian packaging is Copyright -. It is licensed under the same conditions. +. It is licensed under the same conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_901.yml b/src/licensedcode/data/rules/gpl-2.0-plus_901.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_901.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_902.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_902.RULE index 3f0bdf5c1a3..efd18cf0739 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_902.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_902.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_902.yml b/src/licensedcode/data/rules/gpl-2.0-plus_902.yml deleted file mode 100644 index 12817d4a4e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_902.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_903.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_903.RULE index c5d9d3c8fb3..7c23e291879 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_903.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_903.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_903.yml b/src/licensedcode/data/rules/gpl-2.0-plus_903.yml deleted file mode 100644 index 00b2e8b334d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_903.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_904.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_904.RULE index f45c47ac866..3b2b8dc9c1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_904.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_904.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + However, many parts of this library are licensed differently: This program is free software; you can redistribute it and/or @@ -6,4 +13,4 @@ published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_904.yml b/src/licensedcode/data/rules/gpl-2.0-plus_904.yml deleted file mode 100644 index e62e0beb5cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_904.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_905.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_905.RULE index 91bfb0c5a29..c825523cb90 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_905.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_905.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2+ On Debian and Debian-based systems, a copy of the GNU General Public License version 2 is available in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_905.yml b/src/licensedcode/data/rules/gpl-2.0-plus_905.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_905.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_906.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_906.RULE index 02e23390ddc..a9465cafe8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_906.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_906.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_906.yml b/src/licensedcode/data/rules/gpl-2.0-plus_906.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_906.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_907.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_907.RULE index 0ca6044606b..5fc81636381 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_907.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_907.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. @@ -8,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 General Public License along with -this program; if not, see . +this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_907.yml b/src/licensedcode/data/rules/gpl-2.0-plus_907.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_907.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_908.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_908.RULE index 28190346296..102f311d1f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_908.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_908.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + %%%LICENSE_START(GPLv2+_DOC_FULL) This is free documentation; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_908.yml b/src/licensedcode/data/rules/gpl-2.0-plus_908.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_908.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_909.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_909.RULE index b4fce6445d9..2845fbd479c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_909.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_909.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + 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 @@ -9,4 +17,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The GNU General Public License is available at -https://www.gnu.org/copyleft/gpl.html. +https://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_909.yml b/src/licensedcode/data/rules/gpl-2.0-plus_909.yml deleted file mode 100644 index 2998df5aee3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_909.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_91.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_91.RULE index 31087cd729a..b4e5232708c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_91.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_91.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_91.yml b/src/licensedcode/data/rules/gpl-2.0-plus_91.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_91.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_910.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_910.RULE index bf2401fae8d..95ce6645627 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_910.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_910.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This implementation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,5 +22,4 @@ See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ; see the file COPYING. If not, see -. - +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_910.yml b/src/licensedcode/data/rules/gpl-2.0-plus_910.yml deleted file mode 100644 index 19a2146c41b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_910.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_911.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_911.RULE index a8637a037fd..c4e8fd3dbbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_911.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_911.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 99 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + You should have received a copy of the GNU General Public License along with this program. If not, see . @@ -18,4 +26,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this manual. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_911.yml b/src/licensedcode/data/rules/gpl-2.0-plus_911.yml deleted file mode 100644 index 5d411fb620b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_911.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 99 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_912.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_912.RULE index e6694eb9b11..7531aa66abe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_912.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_912.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_912.yml b/src/licensedcode/data/rules/gpl-2.0-plus_912.yml deleted file mode 100644 index 8d479942c1c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_912.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_913.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_913.RULE index a7bc33f63d5..3b5e567ab00 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_913.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_913.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with drivers; if not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_913.yml b/src/licensedcode/data/rules/gpl-2.0-plus_913.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_913.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_914.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_914.RULE index acb70743302..f998c47bfef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_914.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_914.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + lustre 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 @@ -10,4 +18,4 @@ 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-plus_914.yml b/src/licensedcode/data/rules/gpl-2.0-plus_914.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_914.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_915.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_915.RULE index 62803718e05..1f74361fb40 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_915.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_915.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + This program is free software and open source 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, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_915.yml b/src/licensedcode/data/rules/gpl-2.0-plus_915.yml deleted file mode 100644 index 9c5cf6f972f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_915.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_916.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_916.RULE index 82830f87750..1e4667d7dd2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_916.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_916.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, version 2 or later, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_916.yml b/src/licensedcode/data/rules/gpl-2.0-plus_916.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_916.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_917.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_917.RULE index 228c32ec3aa..b0988db2970 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_917.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_917.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_917.yml b/src/licensedcode/data/rules/gpl-2.0-plus_917.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_917.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_918.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_918.RULE index 2f9daeb87ec..3279d74eadd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_918.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_918.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + 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 @@ -13,5 +21,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -Or, point your browser to https://www.gnu.org/copyleft/gpl.html - +Or, point your browser to https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_918.yml b/src/licensedcode/data/rules/gpl-2.0-plus_918.yml deleted file mode 100644 index 2998df5aee3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_918.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_919.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_919.RULE index 635588b4402..975c5c8a1b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_919.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_919.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your @@ -9,4 +17,4 @@ 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 . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_919.yml b/src/licensedcode/data/rules/gpl-2.0-plus_919.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_919.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_92.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_92.RULE index 5e6534f582d..8923f1cb34e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_92.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_92.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + 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 @@ -6,4 +12,4 @@ the Free Software Foundation; either {{version 2 of the License, or 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_92.yml b/src/licensedcode/data/rules/gpl-2.0-plus_92.yml deleted file mode 100644 index 66ee53d7187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_920.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_920.RULE index 9337f68daca..5912d01da18 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_920.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_920.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is free software: you may copy, redistribute and/or modify it under the terms of the GNU General Public License as published by the @@ -10,5 +18,4 @@ 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 . - + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_920.yml b/src/licensedcode/data/rules/gpl-2.0-plus_920.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_920.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_921.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_921.RULE index bc2c7c66725..d33484eef14 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_921.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_921.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_921.yml b/src/licensedcode/data/rules/gpl-2.0-plus_921.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_921.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_922.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_922.RULE index 2f6362621dd..2ac3dfbe7a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_922.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_922.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_922.yml b/src/licensedcode/data/rules/gpl-2.0-plus_922.yml deleted file mode 100644 index 19a2146c41b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_922.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_923.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_923.RULE index f1c8723cf8f..4d5af164c35 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_923.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_923.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 94 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + // 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_923.yml b/src/licensedcode/data/rules/gpl-2.0-plus_923.yml deleted file mode 100644 index c762f3b42ec..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_923.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 94 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_924.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_924.RULE index bd69b93ef34..25d7b1fa7c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_924.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_924.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + 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 @@ -20,4 +30,4 @@ program errors, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. Under no circumstances will the contributor of this Program be liable for any damages of any kind arising from your use or distribution of -this program. +this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_924.yml b/src/licensedcode/data/rules/gpl-2.0-plus_924.yml deleted file mode 100644 index 35ba1246e60..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_924.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_925.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_925.RULE index 6dd21193f34..cc56a90d174 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_925.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_925.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + * 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. See https://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_925.yml b/src/licensedcode/data/rules/gpl-2.0-plus_925.yml deleted file mode 100644 index 17e3beebfb5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_925.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_926.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_926.RULE index 47408d40c8d..270d721db4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_926.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_926.RULE @@ -1,7 +1,17 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * You should have received a copy of the GNU General Public License - * (for example COPYING); If not, see . + * (for example COPYING); If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_926.yml b/src/licensedcode/data/rules/gpl-2.0-plus_926.yml deleted file mode 100644 index 19a2146c41b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_926.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_927.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_927.RULE index 8cc3259b3f1..02afc3001c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_927.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_927.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The SCTP reference implementation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,4 +23,4 @@ See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_927.yml b/src/licensedcode/data/rules/gpl-2.0-plus_927.yml deleted file mode 100644 index 4af1d46259c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_927.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_928.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_928.RULE index c19090a2a9d..693657720fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_928.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_928.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 30 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + This software is supplied under the terms of the GNU General Public License version 2 or later. The full text of the license can be found at: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_928.yml b/src/licensedcode/data/rules/gpl-2.0-plus_928.yml deleted file mode 100644 index 09081e2e3c7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_928.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 30 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_929.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_929.RULE index 0e2cfbd30d9..f92d9032dc8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_929.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_929.RULE @@ -1,7 +1,15 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. You should have received a copy of the GNU General Public License - along with this program. If not, see . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_929.yml b/src/licensedcode/data/rules/gpl-2.0-plus_929.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_929.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_93.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_93.RULE index 481d1786a45..d81c153c6ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_93.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_93.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file is released under the terms of GPL v2 and any later version. -See the file COPYING in the root directory of the source tree for details. +See the file COPYING in the root directory of the source tree for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_93.yml b/src/licensedcode/data/rules/gpl-2.0-plus_93.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_93.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_930.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_930.RULE index dfc5a50b6ca..e7776d1922c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_930.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_930.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This driver is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License; either version 2 of the License, or (at your option) any later version. @@ -8,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 General Public License -along with this driver; if not, see . +along with this driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_930.yml b/src/licensedcode/data/rules/gpl-2.0-plus_930.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_930.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_931.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_931.RULE index 5e33a9689df..a34ac98202c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_931.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_931.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + 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 @@ -10,4 +18,4 @@ 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, you can access it online at -https://www.gnu.org/licenses/gpl-2.0.html. +https://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_931.yml b/src/licensedcode/data/rules/gpl-2.0-plus_931.yml deleted file mode 100644 index 93c4ea0faf7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_931.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_932.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_932.RULE index 9201f41e3b6..ca49d4c5fd0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_932.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_932.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 2 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -14,4 +23,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_932.yml b/src/licensedcode/data/rules/gpl-2.0-plus_932.yml deleted file mode 100644 index fb74c010660..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_932.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 2 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_933.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_933.RULE index 1deac959d95..240d20e86da 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_933.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_933.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -9,4 +17,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_933.yml b/src/licensedcode/data/rules/gpl-2.0-plus_933.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_933.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_934.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_934.RULE index f5680119f75..40e0c78d04d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_934.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_934.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + This manual 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_934.yml b/src/licensedcode/data/rules/gpl-2.0-plus_934.yml deleted file mode 100644 index 2998df5aee3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_934.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_935.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_935.RULE index a5826a2de8d..47655c4bfa8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_935.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_935.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_935.yml b/src/licensedcode/data/rules/gpl-2.0-plus_935.yml deleted file mode 100644 index 87db6c60187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_935.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_936.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_936.RULE index c93d0b99767..652917e85e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_936.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_936.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_936.yml b/src/licensedcode/data/rules/gpl-2.0-plus_936.yml deleted file mode 100644 index 19a2146c41b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_936.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_937.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_937.RULE index aec09956c58..05f5d643a17 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_937.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_937.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + Licensed under the GNU General Public License Version 2.0 (or later); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_937.yml b/src/licensedcode/data/rules/gpl-2.0-plus_937.yml deleted file mode 100644 index 0ec628d6d1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_937.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_938.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_938.RULE index 0bd71b1f91c..0abe030b330 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_938.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_938.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 50 +notes: ths warranty disclaimer is derived from a BSD license +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + 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 @@ -22,4 +32,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_938.yml b/src/licensedcode/data/rules/gpl-2.0-plus_938.yml deleted file mode 100644 index 2fe398e5013..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_938.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 50 -notes: ths warranty disclaimer is derived from a BSD license -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_939.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_939.RULE index 686a17ae99c..436a6f6a81a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_939.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_939.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + License This driver is distributed under the terms of the General Public License. @@ -16,4 +24,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - See https://www.gnu.org/ for more information. + See https://www.gnu.org/ for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_939.yml b/src/licensedcode/data/rules/gpl-2.0-plus_939.yml deleted file mode 100644 index 17e3beebfb5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_939.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_94.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_94.RULE index 4676ede8d45..87429a4d049 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_94.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_94.RULE @@ -1,6 +1,15 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.opensource.org/licenses/gpl-license.html +--- + The code contained herein is licensed under the GNU General Public License. You may obtain a copy of the GNU General Public License Version 2 or later at the following locations: http://www.opensource.org/licenses/gpl-license.html -http://www.gnu.org/copyleft/gpl.html +http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_94.yml b/src/licensedcode/data/rules/gpl-2.0-plus_94.yml deleted file mode 100644 index 2e51474a662..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_94.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.opensource.org/licenses/gpl-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_940.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_940.RULE index bc5b0bb805b..fc59df56e11 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_940.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_940.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The SCTP implementation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,4 +23,4 @@ See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_940.yml b/src/licensedcode/data/rules/gpl-2.0-plus_940.yml deleted file mode 100644 index 4af1d46259c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_940.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_941.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_941.RULE index 0f9af455bed..fb056dd51f6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_941.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_941.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_941.yml b/src/licensedcode/data/rules/gpl-2.0-plus_941.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_941.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_942.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_942.RULE index e0711c5aed3..3fce4078d46 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_942.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_942.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU General Public License, version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_942.yml b/src/licensedcode/data/rules/gpl-2.0-plus_942.yml deleted file mode 100644 index 90591df4574..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_942.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_943.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_943.RULE index 880e96f8c4f..2f7dbbb774b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_943.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_943.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + // is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_943.yml b/src/licensedcode/data/rules/gpl-2.0-plus_943.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_943.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_944.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_944.RULE index 3cfa28fcaf4..0cda3229dc8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_944.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_944.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This code was developed from version of the drivers, released by corp. under the GPL in . It also @@ -23,4 +31,4 @@ You should have received a copy of the GNU General Public License along with Atmel wireless lan drivers; if not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_944.yml b/src/licensedcode/data/rules/gpl-2.0-plus_944.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_944.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_945.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_945.RULE index dc7da494a36..e40e94d77ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_945.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_945.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -12,4 +20,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian GNU/Linux systems the full text of the GNU General Public -License can be found in the `/usr/share/common-licenses/GPL-2' file. +License can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_945.yml b/src/licensedcode/data/rules/gpl-2.0-plus_945.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_945.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_946.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_946.RULE index bdef5d21155..8f1e52de922 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_946.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_946.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * The class uses code licensed under the terms of the GNU General * Public License and therefore is licensed under GPL v2 or later. * diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_946.yml b/src/licensedcode/data/rules/gpl-2.0-plus_946.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_946.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_947.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_947.RULE index a53dbe7dd9d..9a99c56303f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_947.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_947.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +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 General Public License as published by # the Free Software Foundation; either version 2 of the License, or @@ -9,4 +17,4 @@ # 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 . +# along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_947.yml b/src/licensedcode/data/rules/gpl-2.0-plus_947.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_947.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_948.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_948.RULE index dc5013b8317..13e19f50640 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_948.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_948.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +20,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, see -https://www.gnu.org/licenses/. +https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_948.yml b/src/licensedcode/data/rules/gpl-2.0-plus_948.yml deleted file mode 100644 index a4d94631d8f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_948.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_949.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_949.RULE index 05bc0872681..98d97175959 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_949.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_949.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_949.yml b/src/licensedcode/data/rules/gpl-2.0-plus_949.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_949.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_95.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_95.RULE index e292772e2ea..5982b32e0f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_95.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_95.RULE @@ -1,3 +1,8 @@ +--- +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; version 2 or later of the License. @@ -9,4 +14,4 @@ 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 St, Fifth Floor, Boston, MA, 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_95.yml b/src/licensedcode/data/rules/gpl-2.0-plus_95.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_95.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_950.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_950.RULE index e11ab689f28..8cd63bad5fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_950.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_950.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_950.yml b/src/licensedcode/data/rules/gpl-2.0-plus_950.yml deleted file mode 100644 index e7507c3818f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_950.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_951.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_951.RULE index f6333023a50..bcc4e4fc237 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_951.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_951.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This code 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 @@ -9,5 +17,4 @@ 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 . - + along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_951.yml b/src/licensedcode/data/rules/gpl-2.0-plus_951.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_951.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_952.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_952.RULE index 67b7255473b..422bdee6c0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_952.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_952.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_952.yml b/src/licensedcode/data/rules/gpl-2.0-plus_952.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_952.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_953.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_953.RULE index 27d2f5712f2..9b845ad90cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_953.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_953.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + This software is licensed to you under the GNU General Public License as published by the Free Software Foundation; either version 2 of the License (GPLv2) or (at your option) any later version. @@ -5,4 +13,4 @@ There is NO WARRANTY for this software, express or implied, including the implied warranties of MERCHANTABILITY, NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 along with this software; if not, see -https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. +https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_953.yml b/src/licensedcode/data/rules/gpl-2.0-plus_953.yml deleted file mode 100644 index 8d479942c1c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_953.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_954.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_954.RULE index 3563acf319b..d4e4caa51f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_954.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_954.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -12,4 +20,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems the full text of the GNU General Public -License can be found in the `/usr/share/common-licenses/GPL-2' file. +License can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_954.yml b/src/licensedcode/data/rules/gpl-2.0-plus_954.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_954.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_955.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_955.RULE index df44b7f5c1e..a07f26cdc8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_955.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_955.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/ +--- + comes with ABSOLUTELY NO WARRANTY. This is free " "software, and you are welcome to redistribute it under " "the terms of the GNU General Public License; either " diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_955.yml b/src/licensedcode/data/rules/gpl-2.0-plus_955.yml deleted file mode 100644 index c0c11580197..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_955.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_956.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_956.RULE index b01dccdcf29..9d12bead14c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_956.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_956.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + license Licensed under the GNU General Public License Version 2.0 (or later); you may not use this work except in compliance with the License. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_956.yml b/src/licensedcode/data/rules/gpl-2.0-plus_956.yml deleted file mode 100644 index 0ec628d6d1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_956.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_957.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_957.RULE index 7a88fb8891e..e5a82cde922 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_957.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_957.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + # 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_957.yml b/src/licensedcode/data/rules/gpl-2.0-plus_957.yml deleted file mode 100644 index 63bfe830201..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_957.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_958.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_958.RULE index 7e157b98846..9bf90ffe018 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_958.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_958.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -9,4 +18,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_958.yml b/src/licensedcode/data/rules/gpl-2.0-plus_958.yml deleted file mode 100644 index 2e4afd63e21..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_958.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_959.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_959.RULE index 895f21da12e..93588f22d19 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_959.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_959.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 50 +notes: ths warranty disclaimer is derived from a BSD license +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + 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 @@ -24,4 +34,4 @@ 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. +DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_959.yml b/src/licensedcode/data/rules/gpl-2.0-plus_959.yml deleted file mode 100644 index 2fe398e5013..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_959.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 50 -notes: ths warranty disclaimer is derived from a BSD license -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_96.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_96.RULE index 45e02bfba49..ed4fe975962 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_96.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_96.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + The portions of this file whose copyright is held by and which are not considered a derived work of GPL v2-only code may be distributed and/or modified 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. +License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_96.yml b/src/licensedcode/data/rules/gpl-2.0-plus_96.yml deleted file mode 100644 index 28c839295ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_960.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_960.RULE index 1b93717059a..a1b8e947186 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_960.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_960.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_960.yml b/src/licensedcode/data/rules/gpl-2.0-plus_960.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_960.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_961.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_961.RULE index e50155cfbf7..36dbc5b47ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_961.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_961.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_961.yml b/src/licensedcode/data/rules/gpl-2.0-plus_961.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_961.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_962.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_962.RULE index a2e7f73bef7..0e97657ac39 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_962.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_962.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # Distributed under the terms of the GNU General Public License (GPL) # as published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_962.yml b/src/licensedcode/data/rules/gpl-2.0-plus_962.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_962.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_963.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_963.RULE index 025005af854..52df4ecac5c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_963.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_963.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License 1: GPLv2 @@ -12,4 +20,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_963.yml b/src/licensedcode/data/rules/gpl-2.0-plus_963.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_963.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_964.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_964.RULE index 709b1868e90..8ee4cabe79c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_964.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_964.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +18,4 @@ You should have received a copy of the GNU General Public License along with wireless lan drivers; if not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_964.yml b/src/licensedcode/data/rules/gpl-2.0-plus_964.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_964.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_965.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_965.RULE index 4223a16f0af..3b5ffe1838c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_965.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_965.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 2 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -14,4 +23,4 @@ On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_965.yml b/src/licensedcode/data/rules/gpl-2.0-plus_965.yml deleted file mode 100644 index fb74c010660..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_965.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 2 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_966.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_966.RULE index 490c055e501..6ad013f3bbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_966.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_966.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This code was developed from version of the drivers, released by corp. under the GPL @@ -13,4 +21,4 @@ You should have received a copy of the GNU General Public License along with the drivers; if not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_966.yml b/src/licensedcode/data/rules/gpl-2.0-plus_966.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_966.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_967.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_967.RULE index fc1c82c285a..107f2b12709 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_967.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_967.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/lisenses/gpl.txt +--- + License: GNU/GPLv2 or higher (https://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_967.yml b/src/licensedcode/data/rules/gpl-2.0-plus_967.yml deleted file mode 100644 index 1e343f809ad..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_967.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/lisenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_968.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_968.RULE index 44959d5881f..9cbab9f8a59 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_968.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_968.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_968.yml b/src/licensedcode/data/rules/gpl-2.0-plus_968.yml deleted file mode 100644 index 4ca3992901c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_968.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_969.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_969.RULE index b92708605a5..f5c4fd4f2fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_969.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_969.RULE @@ -1,6 +1,16 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.opensource.org/licenses/gpl-license.html + - https://www.gnu.org/copyleft/gpl.html +--- + The code contained herein is licensed under the GNU General Public License. You may obtain a copy of the GNU General Public License Version 2 or later at the following locations: http://www.opensource.org/licenses/gpl-license.html -https://www.gnu.org/copyleft/gpl.html +https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_969.yml b/src/licensedcode/data/rules/gpl-2.0-plus_969.yml deleted file mode 100644 index 2700cacf4d4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_969.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.opensource.org/licenses/gpl-license.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_97.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_97.RULE index c9891b3df96..628376802e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_97.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_97.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + SPDX-License-Identifier: GPL-2.0+ -Heavily borrowed from the following peoples GPL'ed software: +Heavily borrowed from the following peoples GPL'ed software: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_97.yml b/src/licensedcode/data/rules/gpl-2.0-plus_97.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_970.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_970.RULE index 9a364dcf061..7b6dd200a4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_970.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_970.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This SCTP implementation is free software; you can redistribute it and/or modify it under the terms of @@ -13,4 +24,4 @@ See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_970.yml b/src/licensedcode/data/rules/gpl-2.0-plus_970.yml deleted file mode 100644 index 4af1d46259c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_970.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_971.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_971.RULE index 0b2d1fc1464..c37c888859b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_971.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_971.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + 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 @@ -8,4 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. To obtain the license, point your browser to - https://www.gnu.org/copyleft/gpl.html + https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_971.yml b/src/licensedcode/data/rules/gpl-2.0-plus_971.yml deleted file mode 100644 index 2998df5aee3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_971.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_972.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_972.RULE index 00004b84d09..502ac7c0585 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_972.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_972.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 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, see {\field{\*\{HYPERLINK "https://www.gnu.org/licenses/ https://www.gnu.org/licenses/ +You should have received a copy of the GNU General Public License along with this program. If not, see {\field{\*\{HYPERLINK "https://www.gnu.org/licenses/ https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_972.yml b/src/licensedcode/data/rules/gpl-2.0-plus_972.yml deleted file mode 100644 index 2e4afd63e21..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_972.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_973.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_973.RULE index d964d20e0a5..0bf59668bbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_973.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_973.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 @@ -12,4 +22,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, see . The full GNU General Public License is included in this distribution -in the file called "COPYING". +in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_973.yml b/src/licensedcode/data/rules/gpl-2.0-plus_973.yml deleted file mode 100644 index 19a2146c41b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_973.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_974.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_974.RULE index 91e44ea2628..35d3387b0e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_974.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_974.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: abiword +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -9,4 +18,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_974.yml b/src/licensedcode/data/rules/gpl-2.0-plus_974.yml deleted file mode 100644 index 64db4437b04..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_974.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: abiword -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_975.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_975.RULE index 28787a29a65..ddbb4ed58bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_975.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_975.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_975.yml b/src/licensedcode/data/rules/gpl-2.0-plus_975.yml deleted file mode 100644 index a6133ea5f9b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_975.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_976.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_976.RULE index 1d59817184b..7957e2166a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_976.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_976.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_976.yml b/src/licensedcode/data/rules/gpl-2.0-plus_976.yml deleted file mode 100644 index 2998df5aee3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_976.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_977.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_977.RULE index 5a3a2c22bc8..34d3dec3d03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_977.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_977.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian GNU/Linux systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_977.yml b/src/licensedcode/data/rules/gpl-2.0-plus_977.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_977.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_978.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_978.RULE index fd50923a361..4e3e7f6a82f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_978.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_978.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + License: GNU General Public License v2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_978.yml b/src/licensedcode/data/rules/gpl-2.0-plus_978.yml deleted file mode 100644 index 87db6c60187..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_978.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_979.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_979.RULE index 904296672c6..a236694c7b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_979.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_979.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + License: GPLv2 or higher License URI: https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_979.yml b/src/licensedcode/data/rules/gpl-2.0-plus_979.yml deleted file mode 100644 index 93c4ea0faf7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_979.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_98.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_98.RULE index 983b0cd4837..aa7c216d959 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_98.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_98.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + Licensed under the GPL-2 or later. -Heavily borrowed from the following peoples GPL'ed software: +Heavily borrowed from the following peoples GPL'ed software: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_98.yml b/src/licensedcode/data/rules/gpl-2.0-plus_98.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_980.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_980.RULE index 2f7abbded26..5fe2d29f85d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_980.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_980.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software. You can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the @@ -9,4 +18,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_980.yml b/src/licensedcode/data/rules/gpl-2.0-plus_980.yml deleted file mode 100644 index 2e4afd63e21..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_980.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_981.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_981.RULE index a2f40b85fca..59e2de78cf4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_981.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_981.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +18,4 @@ You should have received a copy of the GNU General Public License along with Atmel wireless lan drivers; if not, see - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_981.yml b/src/licensedcode/data/rules/gpl-2.0-plus_981.yml deleted file mode 100644 index 0c19b6e6d61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_981.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_982.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_982.RULE index 67420aa3b7e..80ee9572210 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_982.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_982.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -12,4 +23,4 @@ with this program; if not, see . The full GNU General Public License is included in this distribution in the - file called LICENSE. + file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_982.yml b/src/licensedcode/data/rules/gpl-2.0-plus_982.yml deleted file mode 100644 index a49f93954e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_982.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_983.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_983.RULE index 9f542d9b063..aa3f4e245f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_983.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_983.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_983.yml b/src/licensedcode/data/rules/gpl-2.0-plus_983.yml deleted file mode 100644 index 0b2b8626a7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_983.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_984.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_984.RULE index a02a7566556..9d04cdf7128 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_984.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_984.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_984.yml b/src/licensedcode/data/rules/gpl-2.0-plus_984.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_984.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_985.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_985.RULE index d777d7b8757..a8d76eff1dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_985.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_985.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 dated June, 1991, or (at diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_985.yml b/src/licensedcode/data/rules/gpl-2.0-plus_985.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_985.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_986.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_986.RULE index de5524b64d7..7f7800b034b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_986.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_986.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_986.yml b/src/licensedcode/data/rules/gpl-2.0-plus_986.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_986.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_987.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_987.RULE index 51c9432510b..377730e38e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_987.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_987.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + is free software; see the GNU General Public License version 2 or later for copying conditions. There is no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_987.yml b/src/licensedcode/data/rules/gpl-2.0-plus_987.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_987.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_988.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_988.RULE index eb32f4fd680..1b613b93adb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_988.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_988.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + see the GNU General Public License version 2 or later for copying conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_988.yml b/src/licensedcode/data/rules/gpl-2.0-plus_988.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_988.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_989.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_989.RULE index c219ed48be5..0ce0514a7bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_989.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_989.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This is free software; see the GNU General Public Licence version 2 or later for copying conditions. There is NO warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_989.yml b/src/licensedcode/data/rules/gpl-2.0-plus_989.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_989.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_99.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_99.RULE index e8bbe3ab469..5dad737e20b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_99.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_99.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + The library 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 @@ -11,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the library; see the file COPYING. If not, write to the Free Software Foundation, Inc., -59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_99.yml b/src/licensedcode/data/rules/gpl-2.0-plus_99.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_99.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_990.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_990.RULE index c6a9841c7a6..ec77581aad4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_990.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_990.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_990.yml b/src/licensedcode/data/rules/gpl-2.0-plus_990.yml deleted file mode 100644 index fc94dc4c8f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_990.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_991.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_991.RULE index a104b0a873c..9011da0ced8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_991.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_991.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + These scripts and their documentation are under GNU GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_991.yml b/src/licensedcode/data/rules/gpl-2.0-plus_991.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_991.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_992.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_992.RULE index 02980f789c0..ff5b00ebdb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_992.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_992.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under GNU GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_992.yml b/src/licensedcode/data/rules/gpl-2.0-plus_992.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_992.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_993.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_993.RULE index acb505efab8..3a87c0f9605 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_993.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_993.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0-or-later.html +--- + LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_993.yml b/src/licensedcode/data/rules/gpl-2.0-plus_993.yml deleted file mode 100644 index 0783d786030..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_993.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0-or-later.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_994.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_994.RULE index 71ed8f31452..ebdd4db6d30 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_994.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_994.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0 +--- + LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_994.yml b/src/licensedcode/data/rules/gpl-2.0-plus_994.yml deleted file mode 100644 index 41f4fd88dee..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_994.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_995.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_995.RULE index 79093f29e17..111c87984eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_995.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_995.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_995.yml b/src/licensedcode/data/rules/gpl-2.0-plus_995.yml deleted file mode 100644 index 44214778e8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_995.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_996.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_996.RULE index f185d2b8951..8cefc21f219 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_996.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_996.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_996.yml b/src/licensedcode/data/rules/gpl-2.0-plus_996.yml deleted file mode 100644 index 38a7c961bbc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_996.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_997.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_997.RULE index 69715348b59..2223654427c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_997.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_997.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_997.yml b/src/licensedcode/data/rules/gpl-2.0-plus_997.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_997.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_998.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_998.RULE index 026473d8b16..4582e8107ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_998.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_998.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +notes: GPL 2.0 + debian version +--- + License: GNU General Public License, version 2 or later (GPL-2+) On Debian systems, the text of the GNU General Public License version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_998.yml b/src/licensedcode/data/rules/gpl-2.0-plus_998.yml deleted file mode 100644 index 7297ee97115..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_998.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -notes: GPL 2.0 + debian version diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_999.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_999.RULE index 0c2a101318c..b34f90de41d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_999.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_999.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_999.yml b/src/licensedcode/data/rules/gpl-2.0-plus_999.yml deleted file mode 100644 index 0cb4aa9552e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_999.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_1.RULE index 02fe842c6bf..a75878ee7b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_1.RULE @@ -1,4 +1,13 @@ +--- +license_expression: gpl-2.0-plus AND bootloader-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - COPYING.txt +--- + Distributed under the terms of the {{GNU General Public License}} (version 2 # or later) with exception for distributing the {{bootloader}}. # -# The full license is in the file COPYING.txt, distributed with this software. +# The full license is in the file COPYING.txt, distributed with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_1.yml deleted file mode 100644 index 602c516f26a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus AND bootloader-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - COPYING.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_2.RULE index e4d509fabe7..31c9b776afe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus AND bootloader-exception +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the GNU General Public License (version 2 # or later) with exception for distributing the bootloader. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_2.yml deleted file mode 100644 index 0d6278584ef..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_bootloader-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND bootloader-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_1.RULE index 3c8899a2fbd..3ae3f292fe6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus AND bsd-new +is_license_tag: yes +relevance: 100 +--- + License: GPL-2+-and-BSD-3-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_1.yml deleted file mode 100644 index b737d134177..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_2.RULE index d67e8512804..f43ea36a981 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus AND bsd-new +is_license_tag: yes +relevance: 100 +--- + SPDX-License-Identifier: GPL 2.0+ BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_2.yml deleted file mode 100644 index b737d134177..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_bsd-new_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_1.RULE index 6f97c625594..8edeadfab44 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + This work builds on a lot of work by others; see the CONTRIBUTORS file and the "Credits" section of the documentation for credits. The source code may be modified and distributed under the terms of the GPL, version diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_1.yml deleted file mode 100644 index 7fd5322c803..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_2.RULE index 563f281300e..a0c1cd96e5d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + The source code may be modified and distributed under the terms of the GPL, version 2 or later; the documentation may be modified and distributed under a diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_2.yml deleted file mode 100644 index 7fd5322c803..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-4.0_and_other-copyleft_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-4.0_and_other-copyleft_and_other-permissive_1.RULE index 08afab087f8..10381e91c63 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-4.0_and_other-copyleft_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-4.0_and_other-copyleft_and_other-permissive_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus AND cc-by-sa-4.0 AND other-copyleft AND other-permissive +is_license_notice: yes +relevance: 100 +notes: https://www.mageia.org/en/about/license/ +ignorable_urls: + - http://www.mp3licensing.com/ +--- + Introduction The operating system and the different components available in the Mageia distribution diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-4.0_and_other-copyleft_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-4.0_and_other-copyleft_and_other-permissive_1.yml deleted file mode 100644 index 9470fc15c6e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_cc-by-sa-4.0_and_other-copyleft_and_other-permissive_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus AND cc-by-sa-4.0 AND other-copyleft AND other-permissive -is_license_notice: yes -relevance: 100 -notes: https://www.mageia.org/en/about/license/ -ignorable_urls: - - http://www.mp3licensing.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution.RULE index 89c4214fd2c..58dbbc44867 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus AND crypto-keys-redistribution +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, or (at your option) @@ -12,4 +17,4 @@ * is in an open non patent encumbered format. Where cryptographic key signing * forms part of the process of creating an executable the information * including keys needed to generate an equivalently functional executable - * are deemed to be part of the source code. + * are deemed to be part of the source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution.yml deleted file mode 100644 index 7af3ca2f76e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus AND crypto-keys-redistribution -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution2.RULE index 455ac6aa4d0..888a2231ac1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND crypto-keys-redistribution +is_license_notice: yes +notes: Linux driver GPL with crypto clarification +--- + * 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 * @@ -21,4 +27,4 @@ * the process of creating an executable the information * * including keys needed to generate an equivalently * * functional executable are deemed to be part of the * - * source code are deemed to be part of the source code. * + * source code are deemed to be part of the source code. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution2.yml deleted file mode 100644 index a296feacbde..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_crypto-keys-redistribution2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND crypto-keys-redistribution -is_license_notice: yes -notes: Linux driver GPL with crypto clarification diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.RULE index 924813fa3ea..6643545b632 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0-plus +is_license_notice: yes +notes: GCC debian notice +--- + GCC 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}}, or (at your option) {{any later @@ -14,4 +20,4 @@ later version. On Debian GNU/Linux systems, the complete text of the {{GNU General Public License is in `/usr/share/common-licenses/GPL'}}, {{version 2 of this -license in `/usr/share/common-licenses/GPL-2'.}} +license in `/usr/share/common-licenses/GPL-2'.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.yml deleted file mode 100644 index bc3f8089f3d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0-plus -is_license_notice: yes -notes: GCC debian notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_1.RULE index e20bfd6ffa9..80380af0631 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GPL-2+ and GPL-3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_1.yml deleted file mode 100644 index 13b6df600a2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_2.RULE index 80e88e42ed3..c1a7470ecb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Some libraries are GPLv2+ or GPLv3+ only. Building mpv with Samba support makes it GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_2.yml deleted file mode 100644 index e1eb487afae..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_3.RULE index 9eb14b9ab77..edf868df75f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_3.RULE @@ -1 +1,8 @@ -Mix of GPL-2+ and GPL-3+ +--- +license_expression: gpl-2.0-plus AND gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + +Mix of GPL-2+ and GPL-3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_3.yml deleted file mode 100644 index d2d76326765..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_4.RULE index 521133f395b..e91b2b65218 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under GPLv2+, licensed under GPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_4.yml deleted file mode 100644 index c06a44f3d22..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0.RULE index c009a9276bf..2c65d3fe715 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: This program is free software: you can redistribute it and/or modify @@ -19,6 +26,4 @@ complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. The Debian packaging is: -and is licensed under the GPL version 3, see above. - - +and is licensed under the GPL version 3, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0.yml deleted file mode 100644 index a4f0de1bcb6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_1.RULE index 9d18f6452e3..8d7df193741 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: This program is free software: you can redistribute it and/or modify @@ -19,6 +27,4 @@ complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. The Debian packaging is: -and is licensed under the GPL version 3, see above. - - +and is licensed under the GPL version 3, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_1.yml deleted file mode 100644 index d9ac2b64ad5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_2.RULE index a5dd4df8eec..cb7e0369dde 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: This program is free software: you can redistribute it and/or modify @@ -19,6 +27,4 @@ complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. The Debian packaging is: -and is licensed under the GPL version 3, see above. - - +and is licensed under the GPL version 3, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_2.yml deleted file mode 100644 index af5365bdbc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_3.RULE index fe0cf976eb2..414627a8876 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: This program is free software: you can redistribute it and/or modify @@ -19,6 +27,4 @@ complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. The Debian packaging is: -and is licensed under the GPL version 3, see above. - - +and is licensed under the GPL version 3, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_3.yml deleted file mode 100644 index af5365bdbc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_4.RULE index 8a777580a02..4bebe8437ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: This program is free software: you can redistribute it and/or modify @@ -19,6 +27,4 @@ complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. The Debian packaging is: -and is licensed under the GPL version 3, see above. - - +and is licensed under the GPL version 3, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_4.yml deleted file mode 100644 index af5365bdbc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_5.RULE index 96a59433733..b227fa25e8c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: This program is free software: you can redistribute it and/or modify @@ -19,6 +27,4 @@ complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. The Debian packaging is: -and is licensed under the GPL version 3, see above. - - +and is licensed under the GPL version 3, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_5.yml deleted file mode 100644 index d9ac2b64ad5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_1.RULE index e363537a8ba..a76e06c3ed0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - README +--- + The data files are licensed under LGPLv2+, see the README file. License: GPLv2+ and LGPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_1.yml deleted file mode 100644 index afea8b7d87f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_2.RULE index 2628ed3a9d0..5af71f83877 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +--- + * Note that this file is NOT licensed under the Academic Free License, * as it is based on linc-cleanup-sockets which is LGPL. * diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_2.yml deleted file mode 100644 index a4977cbd74c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_apache-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_apache-2.0_or_mit_1.RULE index e0a93623cd9..8994eae4758 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_apache-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_apache-2.0_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.0-plus AND (apache-2.0 OR mit) +is_license_notice: yes +relevance: 100 +--- + includes code licensed under GPLv2+, LGPLv2+, (Apache 2.0 OR MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_apache-2.0_or_mit_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_apache-2.0_or_mit_1.yml deleted file mode 100644 index 5384912ad31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_apache-2.0_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.0-plus AND (apache-2.0 OR mit) -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_other-copyleft_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_other-copyleft_and_other-permissive_1.RULE index 8b9ae54d0b5..c1f4deba656 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_other-copyleft_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_other-copyleft_and_other-permissive_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.0-plus AND other-copyleft AND other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING + - COPYING.LIB +ignorable_copyrights: + - copyright by the Free Software Foundation, Inc. +ignorable_holders: + - the Free Software Foundation, Inc. +--- + Much of the code and documentation enclosed is copyright by the Free Software Foundation, Inc. See the file COPYING or COPYING.LIB in the various directories, for a description of the diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_other-copyleft_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_other-copyleft_and_other-permissive_1.yml deleted file mode 100644 index f8241dbef5c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0-plus_and_other-copyleft_and_other-permissive_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.0-plus AND other-copyleft AND other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING - - COPYING.LIB -ignorable_copyrights: - - copyright by the Free Software Foundation, Inc. -ignorable_holders: - - the Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_1.RULE index 3e622942ae1..e0751e56e18 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.0 +is_license_notice: yes +relevance: 95 +minimum_coverage: 80 +notes: GPL 2 or later notice, with conflicting references to the LGPL as a leftover +--- + * 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 @@ -10,4 +18,4 @@ * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_1.yml deleted file mode 100644 index a51c228879f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.0 -is_license_notice: yes -relevance: 95 -minimum_coverage: 80 -notes: GPL 2 or later notice, with conflicting references to the LGPL as a leftover diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_2.RULE index ba27de721c5..538a5546aba 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.0 +is_license_notice: yes +relevance: 95 +notes: GPL 2 or later notice, with conflicting references to the LGPL as a leftovera +--- + # This code may be distributed under the terms of the # GNU Public License, either version 2 of the license, or (at your # option) any later version. @@ -9,4 +16,4 @@ # # 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_2.yml deleted file mode 100644 index 7c22ff58b02..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.0 -is_license_notice: yes -relevance: 95 -notes: GPL 2 or later notice, with conflicting references to the LGPL as a leftovera diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_1.RULE index 13768549b56..61b6630193a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + tools are licensed under the GNU GPL version 2 or newer. licensed under the GNU LGPL version 2.1 or newer. On Debian systems the complete text of the licenses can be found in diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_1.yml deleted file mode 100644 index 1a084bf6380..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_2.RULE index 8f83a68bcf0..693434c4c49 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + tools are licensed under the GNU GPL version 2 or newer. licensed under the GNU LGPL version 2.1 or newer. On Debian GNU/Linux systems the complete text of the licenses can be found in diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_2.yml deleted file mode 100644 index 1a084bf6380..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_and_cc-by-sa-4.0_and_bds-new.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_and_cc-by-sa-4.0_and_bds-new.RULE index f43ca628f33..41b11c31a5a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_and_cc-by-sa-4.0_and_bds-new.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_and_cc-by-sa-4.0_and_bds-new.RULE @@ -1,7 +1,12 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.1-plus AND cc-by-sa-4.0 AND bsd-new +is_license_notice: yes +--- + Except where noted otherwise in the file itself, the source code for all programs is licensed under version 2 or later of the GNU General Public License {{(GPLv2+)}}, its headers and libraries under version 2.1 or later of the less restrictive GNU Lesser General Public License {{(LGPLv2.1+)}}, its documentation under version 4.0 or later of the Creative Commons Attribution-ShareAlike International Public License ({{CC-BY-SA v4.0+}}), -and its init scripts under the {{Revised BSD license}}. +and its init scripts under the {{Revised BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_and_cc-by-sa-4.0_and_bds-new.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_and_cc-by-sa-4.0_and_bds-new.yml deleted file mode 100644 index 84661bcfb5a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_lgpl-2.1-plus_and_cc-by-sa-4.0_and_bds-new.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.1-plus AND cc-by-sa-4.0 AND bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys.RULE index e5846508797..d7d9c0464c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND mit-synopsys +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License 1: GPLv2 @@ -44,4 +52,4 @@ permission notice: 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. + THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys.yml deleted file mode 100644 index ba3ae1b08e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND mit-synopsys -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_1.RULE index 69e758a241b..24dd1d62b5b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus AND mit-synopsys +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License 1: GPLv2 @@ -44,4 +53,4 @@ permission notice: 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. + THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_1.yml deleted file mode 100644 index c95013f1ef6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus AND mit-synopsys -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys.RULE index a5f22588453..6fd6e7c9e9d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (gpl-2.0-plus AND mit-synopsys) OR (bsd-new AND mit-synopsys) +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is available to you under your choice of the following two licenses: @@ -105,4 +113,4 @@ permission notice: 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. + THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys.yml deleted file mode 100644 index 8ed324d34a8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (gpl-2.0-plus AND mit-synopsys) OR (bsd-new AND mit-synopsys) -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys_1.RULE index 96541500522..fbc49e7f0f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: (gpl-2.0-plus AND mit-synopsys) OR (bsd-new AND mit-synopsys) +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is available to you under your choice of the following two licenses: @@ -105,4 +114,4 @@ permission notice: 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. + THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys_1.yml deleted file mode 100644 index c139a8677e1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_mit-synopsys_or_bsd-new_and_mit-synopsys_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: (gpl-2.0-plus AND mit-synopsys) OR (bsd-new AND mit-synopsys) -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-copyleft_1.RULE index 95a1ddebc8b..e7bb21322fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-copyleft_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus AND other-copyleft +is_license_notice: yes +relevance: 95 +notes: a rather confusing license notice because QT has a complex license history +ignorable_urls: + - http://www.trolltech.com/ +--- + binaries use Qt (http://www.trolltech.com) which is released under GPL for X11. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-copyleft_1.yml deleted file mode 100644 index 5fdde735d68..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-copyleft_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus AND other-copyleft -is_license_notice: yes -relevance: 95 -notes: a rather confusing license notice because QT has a complex license history -ignorable_urls: - - http://www.trolltech.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_1.RULE index c9f86ddcc86..491aa94f151 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND other-permissive AND other-copyleft +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_1.yml deleted file mode 100644 index 4fd0dae7eaf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND other-permissive AND other-copyleft -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_2.RULE index 820813fd7ae..bbda8abba62 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND other-permissive AND other-copyleft +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_2.yml deleted file mode 100644 index 4fd0dae7eaf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_other-permissive_and_other-copyleft_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND other-permissive AND other-copyleft -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_1.RULE index 64c814cdd4b..47787a9f2cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions of # the GNU General Public License v.2, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_1.yml deleted file mode 100644 index cfbaf5aee08..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_2.RULE index d6c572eabeb..dd1716b540f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: This has a field of use restriction that contradicts the GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_2.yml deleted file mode 100644 index f867dbe4474..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: This has a field of use restriction that contradicts the GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_3.RULE index a37a4a9a35a..67cc25df664 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: THis is likely a conflicted license +--- + * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_3.yml deleted file mode 100644 index 692dbb5069e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: THis is likely a conflicted license diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_or_commercial-license_1.RULE index 1f9d6053f5a..63738da98d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_or_commercial-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: (gpl-2.0-plus AND proprietary-license) OR commercial-license +is_license_notice: yes +relevance: 100 +--- + * This software is dual-licensed: 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_or_commercial-license_1.yml deleted file mode 100644 index 2a8fbf45906..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary-license_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (gpl-2.0-plus AND proprietary-license) OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_1.RULE index 8a72d282ace..e1753a4de5a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +minimum_coverage: 50 +--- + 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 @@ -20,4 +26,4 @@ FOR A PARTICULAR PURPOSE. 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. +675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_1.yml deleted file mode 100644 index 9d7b8f8195f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_2.RULE index 1b50f15fd78..1cf11472063 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +minimum_coverage: 80 +ignorable_copyrights: + - (c) Copyright 2007-2008 Xilinx Inc. +ignorable_holders: + - Xilinx Inc. +--- + 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 @@ -22,4 +32,4 @@ All rights reserved. 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. +675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_2.yml deleted file mode 100644 index ed8629c1912..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -minimum_coverage: 80 -ignorable_copyrights: - - (c) Copyright 2007-2008 Xilinx Inc. -ignorable_holders: - - Xilinx Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_3.RULE index 11ab1b2e13a..f4c5f3c32ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +minimum_coverage: 80 +ignorable_copyrights: + - (c) Copyright 2003-2008 Xilinx Inc. +ignorable_holders: + - Xilinx Inc. +--- + 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 @@ -22,4 +32,4 @@ All rights reserved. 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. +675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_3.yml deleted file mode 100644 index 9ced6cc2ca7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -minimum_coverage: 80 -ignorable_copyrights: - - (c) Copyright 2003-2008 Xilinx Inc. -ignorable_holders: - - Xilinx Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_4.RULE index fb6559e1eb8..ae637da90d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +minimum_coverage: 50 +ignorable_copyrights: + - (c) Copyright Xilinx Inc., Systems Engineering Group +ignorable_holders: + - Xilinx Inc., Systems Engineering Group +--- + 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 @@ -23,4 +33,4 @@ All rights reserved. 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. +675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_4.yml deleted file mode 100644 index 6eff90f462c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -minimum_coverage: 50 -ignorable_copyrights: - - (c) Copyright Xilinx Inc., Systems Engineering Group -ignorable_holders: - - Xilinx Inc., Systems Engineering Group diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_5.RULE index ff2a1adce4f..09f38be3ed4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_5.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +minimum_coverage: 50 +ignorable_copyrights: + - (c) Copyright 2002 Xilinx Inc., Systems Engineering Group + - (c) Copyright 2004 Xilinx Inc., Systems Engineering Group + - (c) Copyright 2007-2008 Xilinx Inc. +ignorable_holders: + - Xilinx Inc. + - Xilinx Inc., Systems Engineering Group +--- + 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 @@ -24,4 +37,4 @@ 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. + 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_5.yml deleted file mode 100644 index c2cc7fb6f38..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_5.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -minimum_coverage: 50 -ignorable_copyrights: - - (c) Copyright 2002 Xilinx Inc., Systems Engineering Group - - (c) Copyright 2004 Xilinx Inc., Systems Engineering Group - - (c) Copyright 2007-2008 Xilinx Inc. -ignorable_holders: - - Xilinx Inc. - - Xilinx Inc., Systems Engineering Group diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_6.RULE index 24b757525cb..c7afd47672d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus AND proprietary-license +is_license_notice: yes +minimum_coverage: 50 +ignorable_copyrights: + - (c) Copyright 2003-2007 Xilinx Inc. +ignorable_holders: + - Xilinx Inc. +--- + 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 @@ -22,4 +32,4 @@ 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. + 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_6.yml deleted file mode 100644 index 910491a5ee9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_proprietary_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus AND proprietary-license -is_license_notice: yes -minimum_coverage: 50 -ignorable_copyrights: - - (c) Copyright 2003-2007 Xilinx Inc. -ignorable_holders: - - Xilinx Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public-domain_810.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_public-domain_810.RULE index 1c0fe329011..41800c45517 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_public-domain_810.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_public-domain_810.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND public-domain +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + redistributed under the terms of the GNU GPL, Version 2 or later, found on Debian systems in the file /usr/share/common-licenses/GPL-2. -which is in the public domain. +which is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public-domain_810.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_public-domain_810.yml deleted file mode 100644 index 5a75c17f23e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_public-domain_810.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND public-domain -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.RULE index 6621b322759..6e031764631 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND public-domain +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + Released under the GNU GPL v2 or later Parts of this file are based on C/7zip/Compress/LZMA_C/LzmaTest.c from the LZMA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.yml deleted file mode 100644 index d86bac6fcf7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND public-domain -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.RULE index 47145b4f471..2f7e9ab5c72 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.RULE @@ -1 +1,7 @@ -License: GPLv2+ and Public Domain +--- +license_expression: gpl-2.0-plus AND public-domain +is_license_tag: yes +relevance: 100 +--- + +License: GPLv2+ and Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.yml deleted file mode 100644 index 144c1de326b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_public_domain_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND public-domain -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode.RULE index 9bb8cad16f9..8e4e4acb551 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND qlogic-microcode +is_license_notice: yes +minimum_coverage: 20 +--- + This program includes a device driver for Linux 2.6 that may be distributed with QLogic hardware specific firmware binary file. You may modify and redistribute the device driver code under the @@ -39,4 +45,4 @@ CREATE OR GIVE GROUNDS FOR A LICENSE BY IMPLICATION, ESTOPPEL, OR OTHERWISE IN ANY INTELLECTUAL PROPERTY RIGHTS (PATENT, COPYRIGHT, TRADE SECRET, MASK WORK, OR OTHER PROPRIETARY RIGHT) EMBODIED IN ANY OTHER QLOGIC HARDWARE OR SOFTWARE EITHER SOLELY OR IN -COMBINATION WITH THIS PROGRAM. +COMBINATION WITH THIS PROGRAM. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode.yml deleted file mode 100644 index e3b948214d0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND qlogic-microcode -is_license_notice: yes -minimum_coverage: 20 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode2.RULE index 1aada9e98a7..e3ddf2306bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode2.RULE @@ -1 +1,11 @@ -See LICENSE.qla3xxx for copyright and licensing details. +--- +license_expression: gpl-2.0-plus AND qlogic-microcode +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.qla3xxx +notes: this i or laters a uinque reference that is to a GPL-2.0-plus +--- + +See LICENSE.qla3xxx for copyright and licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode2.yml deleted file mode 100644 index 5c7b0cad6d9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_qlogic-microcode2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus AND qlogic-microcode -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.qla3xxx -notes: this i or laters a uinque reference that is to a GPL-2.0-plus diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_softfloat.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_softfloat.RULE index 8a28a923494..a7b947a789f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_softfloat.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_softfloat.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0-plus AND softfloat +is_license_notice: yes +relevance: 99 +minimum_coverage: 60 +referenced_filenames: + - COPYING +notes: this combo is alway used with a gpl-2.0-plus +ignorable_authors: + - John R. Hauser +--- + The is free software. Everything has written is provided under the GNU GPL. See the file COPYING for copying conditions. Excluded from the above is the code. @@ -19,4 +31,4 @@ has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT TIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE. -------------------------------------------------------------------------------- +------------------------------------------------------------------------------- \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_softfloat.yml b/src/licensedcode/data/rules/gpl-2.0-plus_and_softfloat.yml deleted file mode 100644 index 1692963a6f3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_softfloat.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0-plus AND softfloat -is_license_notice: yes -relevance: 99 -minimum_coverage: 60 -referenced_filenames: - - COPYING -notes: this combo is alway used with a gpl-2.0-plus -ignorable_authors: - - John R. Hauser diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_bare_single_word.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_bare_single_word.RULE index ed7b705c2b2..ce3ccc9a9e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_bare_single_word.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_bare_single_word.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_bare_single_word.yml b/src/licensedcode/data/rules/gpl-2.0-plus_bare_single_word.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_bare_single_word.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_busybox.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_busybox.RULE index db63aaafc77..2b80b34831a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_busybox.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_busybox.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + Licensed under GPLv2 or later, see file LICENSE in this tarball for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_busybox.yml b/src/licensedcode/data/rules/gpl-2.0-plus_busybox.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_busybox.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.RULE index e8f0954372d..b04f466bba0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0+-only" or "GPL-2.0+-or-later" instead \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.yml b/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_debian.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_debian.RULE index c6a11c98370..0a7bf9db98c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_debian.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_debian.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License: GPL-2+. 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_debian.yml b/src/licensedcode/data/rules/gpl-2.0-plus_debian.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_debian.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_fr_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_fr_1.RULE index 79503255bd7..cc05343cd4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_fr_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_fr_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +language: fr +is_license_notice: yes +--- + Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou le modifier sous les termes de la GNU General Public Licence telle que publiée par la Free Software Fundation ; soit dans la diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_fr_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_fr_1.yml deleted file mode 100644 index d9558cd82a8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_fr_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -language: fr -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_kodi.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_kodi.RULE index 0d74127485c..0d41963468d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_kodi.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_kodi.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +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 2, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_kodi.yml b/src/licensedcode/data/rules/gpl-2.0-plus_kodi.yml deleted file mode 100644 index ae66ed519e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_kodi.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_later_italian.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_later_italian.RULE index 25e8c03e5f0..988ab1984c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_later_italian.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_later_italian.RULE @@ -1 +1,7 @@ -iè distribuito nei termini della General Public Licence v2 (o successiva). +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +iè distribuito nei termini della General Public Licence v2 (o successiva). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_later_italian.yml b/src/licensedcode/data/rules/gpl-2.0-plus_later_italian.yml deleted file mode 100644 index be81fec7fd0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_later_italian.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_1.RULE index 6f8de53ad60..2ade0e8987b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_1.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: See linux kernel module.h. GPL in this context means GPL-2.0 or later +--- + MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_1.yml deleted file mode 100644 index ce5ea2febc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: See linux kernel module.h. GPL in this context means GPL-2.0 or later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_2.RULE index 60e4abee77a..f45a88bbe44 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: MODULE_LICENSE macro in LKMs. See linux kernel module.h. GPL in this context means GPL-2.0 + or later +--- + MODULE_LICENSE("GPL"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_2.yml deleted file mode 100644 index 975699858dc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: MODULE_LICENSE macro in LKMs. See linux kernel module.h. GPL in this context means GPL-2.0 - or later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_3.RULE index d602712af88..e70206cb083 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: MODULE_LICENSE in LKMs. See linux kernel module.h. GPL in this context means GPL-2.0 + or later +--- + DRIVER_LICENSE("GPL"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_module_license_3.yml deleted file mode 100644 index e5f512ba321..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_module_license_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: MODULE_LICENSE in LKMs. See linux kernel module.h. GPL in this context means GPL-2.0 - or later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20.RULE index 3df151abe69..59201844292 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20.RULE @@ -1 +1,9 @@ -http://creativecommons.org/images/public/cc-GPL-a.png +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: the "cc-gpl" has always been/was a gpl-2.0-plus See https://web.archive.org/web/20100803034947/http://creativecommons.org/choose/cc-gpl +--- + +http://creativecommons.org/images/public/cc-GPL-a.png \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20.yml b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20.yml deleted file mode 100644 index 3837d7bc286..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: the "cc-gpl" has always been/was a gpl-2.0-plus See https://web.archive.org/web/20100803034947/http://creativecommons.org/choose/cc-gpl diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20_1.RULE index 5f9c2daa367..11b70ca4fe8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: the "cc-gpl" has always been/was a gpl-2.0-plus See https://web.archive.org/web/20100803034947/http://creativecommons.org/choose/cc-gpl +--- + https://creativecommons.org/images/license/cc-GPL-a.gif \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20_1.yml deleted file mode 100644 index 3837d7bc286..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_20_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: the "cc-gpl" has always been/was a gpl-2.0-plus See https://web.archive.org/web/20100803034947/http://creativecommons.org/choose/cc-gpl diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_24.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_24.RULE index d47c34ebe92..b132e22448b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL v2 or later see http://metadata.ftp-master.debian.org/changelogs/main/t/ttf-indic-fonts/stable_ttf-malayalam-fonts.copyright +--- + There seems to be some confusion regarding the license of Rachana. Praveen has confirmed that Rachana is indeed under GPL. Any queries regarding the exact status of Rachana license issue should be directed diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_24.yml b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_24.yml deleted file mode 100644 index 1fe7eb57737..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL v2 or later see http://metadata.ftp-master.debian.org/changelogs/main/t/ttf-indic-fonts/stable_ttf-malayalam-fonts.copyright diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_42.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_42.RULE index 0bb0f41c39b..6f017967bfe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_42.RULE @@ -1 +1,10 @@ -http://creativecommons.org/choose/cc-gpl +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: http://creativecommons.org/choose/cc-gpl was a gpl-2.0-plus +ignorable_urls: + - http://creativecommons.org/choose/cc-gpl +--- + +http://creativecommons.org/choose/cc-gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_42.yml b/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_42.yml deleted file mode 100644 index a78ed92baa2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_gpl-2.0_42.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: http://creativecommons.org/choose/cc-gpl was a gpl-2.0-plus -ignorable_urls: - - http://creativecommons.org/choose/cc-gpl diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.RULE index dcc997d26c9..6ddf59691cc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This file 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 @@ -10,4 +15,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.yml b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.RULE index 9a47c18b149..d7f5028be75 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +--- + This library 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 @@ -11,4 +17,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -02110-1301 USA +02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.yml deleted file mode 100644 index d8233381c10..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_afpl-9.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_afpl-9.0_1.RULE index 8adbd11e690..32ed0e0152f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_afpl-9.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_afpl-9.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus OR afpl-9.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1989, 2000 Aladdin Enterprises +ignorable_holders: + - Aladdin Enterprises +--- + This program may be distributed and/or modified under the terms of the GNU General Public License as published by the Free Software Foundation (the "GPL"); either version 2 of the GPL, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_afpl-9.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_afpl-9.0_1.yml deleted file mode 100644 index 979e06d73ed..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_afpl-9.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus OR afpl-9.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 1989, 2000 Aladdin Enterprises -ignorable_holders: - - Aladdin Enterprises diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_1.RULE index 1977adadd95..90810d11eaf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR artistic-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 as published by the Free Software Foundation; either version 2 of the @@ -12,4 +17,4 @@ GNU General Public License for more details. You should have received copies of the GNU 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. +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_1.yml deleted file mode 100644 index e77884ef662..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus OR artistic-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_2.RULE index 151f8048e57..518832ce2b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR artistic-2.0 +is_license_notice: yes +--- + LICENSE This program is free software; you can redistribute it and/or @@ -14,4 +19,4 @@ GNU General Public License for more details. You should have received copies of the GNU 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. +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_2.yml deleted file mode 100644 index e77884ef662..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus OR artistic-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_1.RULE index 09d1f0864f0..853b8fae0ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR artistic-perl-1.0 +is_license_tag: yes +relevance: 100 +--- + License: GPL-2+ or Artistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_1.yml deleted file mode 100644 index 4efa794440c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR artistic-perl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_2.RULE index b1e333fe731..a954b4db18d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR artistic-perl-1.0 +is_license_tag: yes +relevance: 100 +--- + GPL-2+ or Artistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_2.yml deleted file mode 100644 index 4efa794440c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_artistic-perl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR artistic-perl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys.RULE index d283ee7b0d0..a4aca5750e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-innosys +is_license_notice: yes +minimum_coverage: 70 +--- + This program is free software; you may redistribute and/or modify it under the terms of either: @@ -51,4 +57,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys.yml deleted file mode 100644 index f1477a7635b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-innosys -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys2.RULE index 373ce5d22ee..12da454f291 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-innosys +is_license_notice: yes +minimum_coverage: 70 +--- + This program is free software; you may redistribute and/or modify it under the terms of either: @@ -51,4 +57,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys2.yml deleted file mode 100644 index f1477a7635b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-innosys2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-innosys -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_1.RULE index 2360a3bbb00..eff48f55ab7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR bsd-mylex +is_license_notice: yes +--- + This file is available under both the GNU General Public License -and a BSD-style copyright; see LICENSE.FlashPoint for details. +and a BSD-style copyright; see LICENSE.FlashPoint for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_1.yml deleted file mode 100644 index 3514d52a4f7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-mylex -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_2.RULE index ff77a26a90b..e799fddaec2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR bsd-mylex +is_license_notice: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1995-1996 by Mylex Corporation +ignorable_holders: + - Mylex Corporation +--- + This program is free software; you may redistribute and/or modify it under the terms of either: @@ -51,4 +61,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_2.yml deleted file mode 100644 index c05452c9d39..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-mylex_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-mylex -is_license_notice: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1995-1996 by Mylex Corporation -ignorable_holders: - - Mylex Corporation diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_1.RULE index 3248fdd2e81..19e02885039 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 85 +--- + it is dual licensed under both GPL and BSD. GPL notice: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_1.yml deleted file mode 100644 index a172dae4db5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_10.RULE index 0d272a8e495..ec4de618859 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND bsd-new +is_license_notice: yes +minimum_coverage: 96 +--- + 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 @@ -33,4 +39,4 @@ 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. + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_10.yml deleted file mode 100644 index 6e097664b5a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND bsd-new -is_license_notice: yes -minimum_coverage: 96 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_11.RULE index eeafab1bcda..8c13855abb4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is available to you under your choice of the following two licenses: @@ -41,4 +49,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_11.yml deleted file mode 100644 index 5a89d14e688..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_12.RULE index e7e62246b24..21944ff4d38 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_12.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + it is dual licensed under both GPL and BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_12.yml deleted file mode 100644 index 058e6458ad1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_13.RULE index 2ecce436751..99983dccfb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_13.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_13.yml deleted file mode 100644 index ad63720ac3b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_14.RULE index 4f93d8f8299..2bcfe1f8bfa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_14.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + The packaging itself is placed under dual license GPLv2+ and BSD (take what fits your needs). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_14.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_14.yml deleted file mode 100644 index 058e6458ad1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_15.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_15.RULE index 36cdfe230db..6d835a5a945 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_15.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + dual-licensed, GPLv2+ and BSD-like. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_15.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_15.yml deleted file mode 100644 index 058e6458ad1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_16.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_16.RULE index d32d0a43a73..5e2699a77ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_16.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +--- + you can chose between GPL-2.0+ and BSD-3-Clause licensing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_16.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_16.yml deleted file mode 100644 index ad63720ac3b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_17.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_17.RULE index 1d60c7e8047..35b62ec4bc5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This driver 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 @@ -41,4 +50,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_17.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_17.yml deleted file mode 100644 index 6a1a39ccbe1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_18.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_18.RULE index a95bca2c68a..af262199ff9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_18.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is available to you under your choice of the following two licenses: @@ -41,4 +50,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_18.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_18.yml deleted file mode 100644 index 6a1a39ccbe1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_19.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_19.RULE index 7194fe8ea38..c9e896d8dc6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_19.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is available to you under your choice of the following two licenses: @@ -41,4 +50,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_19.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_19.yml deleted file mode 100644 index 6a1a39ccbe1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_2.RULE index 121aacb30cf..1638a52574f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +--- + header file is now dual licensed under GNU General Public License version two or later, and under a 3-clause BSD-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_2.yml deleted file mode 100644 index 43bf8c4a6cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_3.RULE index 63ce6f05465..51ba59b9807 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This driver 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 @@ -41,4 +49,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_3.yml deleted file mode 100644 index 5a89d14e688..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_4.RULE index 1d9967e309c..2258962899d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + If distributed as part of the Linux kernel, the following license terms apply: @@ -37,4 +43,4 @@ Otherwise, the following license terms apply: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_4.yml deleted file mode 100644 index 38057240c53..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_5.RULE index 65f2a713773..7ae6381dc15 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is available to you under your choice of the following two licenses: @@ -41,4 +49,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_5.yml deleted file mode 100644 index 5a89d14e688..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_6.RULE index 581964b97cd..38adab0c2b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +minimum_coverage: 95 +--- + 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 @@ -34,4 +40,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_6.yml deleted file mode 100644 index d3ce07a3b58..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_7.RULE index 4bb6a597004..004c8522892 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +minimum_coverage: 95 +--- + This code is dual-licensed under both GPLv2 and 3-clause BSD. What follows is the license notice for both respectively. @@ -39,4 +45,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_7.yml deleted file mode 100644 index d3ce07a3b58..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_8.RULE index ba1ab9dd199..a8e4cbc82d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_8.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_notice: yes +--- + Some platform source code is disjunctively dual licensed (GPL-2.0+ OR BSD-3-Clause). It is used by this project under the terms of the BSD-3-Clause license. Any contributions to this code must be made under the -terms of both licenses. +terms of both licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_8.yml deleted file mode 100644 index 43bf8c4a6cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_9.RULE index 087a66629e9..9dbe69885b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR bsd-new +is_license_tag: yes +relevance: 100 +--- + (GPL-2.0+ OR BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_9.yml deleted file mode 100644 index db03893e3b4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-new_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-original_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-original_1.RULE index 47b9dab301f..fd57adbd71e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-original_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-original_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR bsd-original +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_authors: + - the University of Maryland +--- + * Either license may be used. The respective licenses are found below. * - GPL Version 2 License - @@ -42,4 +51,4 @@ * 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. + * POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-original_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-original_1.yml deleted file mode 100644 index ebf12778809..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-original_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-original -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_authors: - - the University of Maryland diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified.RULE index 5a680ec648f..89e681e926c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +--- + is dual licensed: you can use it either under the terms of the GPL, or the BSD license, at your option. @@ -42,4 +48,4 @@ Alternatively, 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. + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified.yml deleted file mode 100644 index 93e11fc6d8a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified2.RULE index f44172d84ae..6fc0559d328 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +minimum_coverage: 85 +--- + 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 @@ -6,4 +12,4 @@ the Free Software Foundation; either version 2 of the License, or -Version licensed under 2-clause BSD License is available at: +Version licensed under 2-clause BSD License is available at: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified2.yml deleted file mode 100644 index 7b6809ece05..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified3.RULE index 26fdc4d0dbc..640de71d7b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -43,5 +51,4 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. HISTORY : some part of the code was base on BSD driver, - agree to put his code under a DUAL GPL/BSD license. - + agree to put his code under a DUAL GPL/BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified3.yml deleted file mode 100644 index 66392cd802e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_1.RULE index 162db7ecc6d..991246379f0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + This file is dual licensed; you can use it under the terms of either the GPL, or the BSD license, at your option. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_1.yml deleted file mode 100644 index 7426fabefd4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_2.RULE index 5f90787ecd8..81d2b0c13d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + SJCL used to be in the public domain. Now it's: This is for liability reasons. (Speaking of which, SJCL comes with NO diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_2.yml deleted file mode 100644 index 7426fabefd4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_3.RULE index c79c5fe05c1..60357ad7348 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING + - LICENSE +--- + This program is free software. You may redistribute it and/or modify it under the terms of either: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_3.yml deleted file mode 100644 index bae66e16776..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_4.RULE index 2d8dd8af3db..3c3c79af449 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - README + - COPYING + - LICENSE +--- + less is part of the GNU project and is free software. You can redistribute it and/or modify it under the terms of either diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_4.yml deleted file mode 100644 index f99367654e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - README - - COPYING - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_and_ocb-open-source-2013_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_and_ocb-open-source-2013_1.RULE index 82c639c0971..005de6eaa19 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_and_ocb-open-source-2013_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_and_ocb-open-source-2013_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: (gpl-2.0-plus OR bsd-simplified) AND ocb-open-source-2013 +is_license_notice: yes +relevance: 100 +--- + The BSD license is (almost?) strictly more permissive, but the additionally licensing under the GPL allows us to use OCB 2.0 code royalty-free (at least, if OCB 2.0's creator Phil Rogaway has anything diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_and_ocb-open-source-2013_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_and_ocb-open-source-2013_1.yml deleted file mode 100644 index 0353f4fa132..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-simplified_and_ocb-open-source-2013_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (gpl-2.0-plus OR bsd-simplified) AND ocb-open-source-2013 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-unmodified_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-unmodified_1.RULE index b768aca0063..66f9dbc026f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-unmodified_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-unmodified_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR bsd-unmodified +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -45,4 +53,4 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. HISTORY : some part of the code was base on ueagle 1.3 BSD driver, agree to put his code under a DUAL GPL/BSD license. -The rest of the code was was rewritten from scratch. +The rest of the code was was rewritten from scratch. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-unmodified_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-unmodified_1.yml deleted file mode 100644 index fd16a1ffc47..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_bsd-unmodified_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR bsd-unmodified -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_1.RULE index 301b382b2c7..8b639d81d01 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR commercial-license +is_license_notice: yes +--- + This software is released under one of the following two licenses: GPL or Genivia's license for commercial use. -------------------------------------------------------------------------------- @@ -14,4 +19,4 @@ 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., 59 Temple -Place, Suite 330, Boston, MA 02111-1307 USA +Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_1.yml deleted file mode 100644 index b4395de3d95..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus OR commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_2.RULE index 5e1b9a924f6..98de559e84a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- + This program is free software; you may redistribute and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; Version 2 (or later) with the clarifications and diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_2.yml deleted file mode 100644 index ef45a38f79b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_3.RULE index 18f66c549f6..ce163dc22bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + COPYING -- Describes the terms under which sqlmap is distributed. A copy of the GNU General Public License (GPL) is appended to this file. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_3.yml deleted file mode 100644 index 27915cbb7d4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_1.RULE index 45544b2d5cc..af971e035d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING + - doc/THIRD-PARTY.md +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +ignorable_emails: + - dev@sqlmap.org +--- + COPYING -- Describes the terms under which sqlmap is distributed. A copy of the GNU General Public License (GPL) is appended to this file. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_1.yml deleted file mode 100644 index 56862b20807..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING - - doc/THIRD-PARTY.md -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html -ignorable_emails: - - dev@sqlmap.org diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_2.RULE index 965062e28ac..f7f5e141884 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_2.RULE @@ -1,3 +1,18 @@ +--- +license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING + - doc/THIRD-PARTY.md +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +ignorable_emails: + - dev@sqlmap.org + - sales@sqlmap.org +--- + COPYING Describes the terms under which sqlmap is distributed. A copy of the GNU General Public License (GPL) is appended to this file. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_2.yml deleted file mode 100644 index 14e8a29d5ab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_2.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING - - doc/THIRD-PARTY.md -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html -ignorable_emails: - - dev@sqlmap.org - - sales@sqlmap.org diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_3.RULE index 27eaef04fd2..4656b40a480 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - (c) 2006-2020 Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar +ignorable_holders: + - Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +ignorable_emails: + - dev@sqlmap.org + - sales@sqlmap.org +--- + COPYING -- Describes the terms under which sqlmap is distributed. A copy of the GNU General Public License (GPL) is appended to this file. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_3.yml deleted file mode 100644 index bcb34f1c1da..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - (c) 2006-2020 Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar -ignorable_holders: - - Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html -ignorable_emails: - - dev@sqlmap.org - - sales@sqlmap.org diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_4.RULE index cb63618c3fd..1e5cc6026c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_4.RULE @@ -1,3 +1,18 @@ +--- +license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING + - doc/THIRD-PARTY.md +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +ignorable_emails: + - dev@sqlmap.org + - sales@sqlmap.org +--- + COPYING Describes the terms under which sqlmap is distributed. A copy of the GNU General Public License (GPL) is appended to this file. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_4.yml deleted file mode 100644 index 43f51c30684..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_4.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING - - doc/THIRD-PARTY.md -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html -ignorable_emails: - - dev@sqlmap.org - - sales@sqlmap.org diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_5.RULE index 50b7c9e9cdb..a59a89c073d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_5.RULE @@ -1,3 +1,18 @@ +--- +license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - (c) 2006-2020 Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar +ignorable_holders: + - Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +ignorable_emails: + - dev@sqlmap.org + - sales@sqlmap.org +--- + COPYING -- Describes the terms under which sqlmap is distributed. A copy of the GNU General Public License (GPL) is appended to this file. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_5.yml deleted file mode 100644 index b6813f9bc32..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_5.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - (c) 2006-2020 Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar -ignorable_holders: - - Bernardo Damele Assumpcao Guimaraes, Miroslav Stampar -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html -ignorable_emails: - - dev@sqlmap.org - - sales@sqlmap.org diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_6.RULE index 555a5a9d062..f584c91e3e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_6.RULE @@ -1,3 +1,17 @@ +--- +license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING + - doc/THIRD-PARTY.md +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +ignorable_emails: + - dev@sqlmap.org +--- + COPYING -- Describes the terms under which sqlmap is distributed. A copy of the GNU General Public License (GPL) is appended to this file. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_6.yml deleted file mode 100644 index 7c463d982b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_commercial-license_and_unknown-license-reference_6.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: (gpl-2.0-plus OR commercial-license) AND unknown-license-reference -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING - - doc/THIRD-PARTY.md -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html -ignorable_emails: - - dev@sqlmap.org diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_copyleft_next.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_copyleft_next.RULE index 8aaec7b64e3..c0e91423b15 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_copyleft_next.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_copyleft_next.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR copyleft-next-0.3.1 +is_license_notice: yes +ignorable_urls: + - http://copyleft-next.org/ +--- + 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 @@ -7,4 +14,4 @@ license: This program is free software; you can redistribute it and/or modify it under the terms of copyleft-next (version 0.3.1 or later) as published -at http://copyleft-next.org/. +at http://copyleft-next.org/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_copyleft_next.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_copyleft_next.yml deleted file mode 100644 index 4423d8acdb8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_copyleft_next.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR copyleft-next-0.3.1 -is_license_notice: yes -ignorable_urls: - - http://copyleft-next.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_gpl-3.0-plus_and_other-permissive_and_public-domain_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_gpl-3.0-plus_and_other-permissive_and_public-domain_1.RULE index 8f0b3b37db0..d7f020b1612 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_gpl-3.0-plus_and_other-permissive_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_gpl-3.0-plus_and_other-permissive_and_public-domain_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: (gpl-2.0-plus OR gpl-3.0-plus) AND other-permissive AND public-domain +is_license_notice: yes +--- + Nettle is dual licenced under the GNU General Public License version 2 or later, and the GNU Lesser General Public License version 3 or later. When using Nettle, you must comply fully with all conditions diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_gpl-3.0-plus_and_other-permissive_and_public-domain_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_gpl-3.0-plus_and_other-permissive_and_public-domain_1.yml deleted file mode 100644 index fcf73373f5b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_gpl-3.0-plus_and_other-permissive_and_public-domain_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: (gpl-2.0-plus OR gpl-3.0-plus) AND other-permissive AND public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_gsoap-1.3b_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_gsoap-1.3b_or_commercial-license_1.RULE index 6ddcf01c342..99c33202ff3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_gsoap-1.3b_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_gsoap-1.3b_or_commercial-license_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR gsoap-1.3b OR commercial-license +is_license_notice: yes +relevance: 100 +--- + This part of the software is released under ONE of the following licenses: -GPL, or the gSOAP public license, or Genivia's license for commercial use. +GPL, or the gSOAP public license, or Genivia's license for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_gsoap-1.3b_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_gsoap-1.3b_or_commercial-license_1.yml deleted file mode 100644 index 63d8e4fc738..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_gsoap-1.3b_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR gsoap-1.3b OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_1.RULE index 777e3b0c10f..1b819ed5b01 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR isc +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + Permission is granted to use, copy, modify and/or distribute this software under either one of the licenses below. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_1.yml deleted file mode 100644 index 3863b359758..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR isc -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_2.RULE index 0ad9ac0088d..f4b57591fcc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR isc +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + License Option 1: GPL This program is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_2.yml deleted file mode 100644 index 3863b359758..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_isc_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR isc -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE index 75d7635b87c..8682767037b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software. You may use, redistribute and/or modify it under the terms of either GPL 2.0+ or LGPL 2.0+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index 2549e71278c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_10.RULE index b8a2ad34144..8b825bf40c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + This plugin is open sourced under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_10.yml deleted file mode 100644 index 06ba455e316..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_11.RULE index f77decfddfd..fc58517558e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_11.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: This is a choice as seen in this history of this https://github.com/FineUploader/fine-uploader/blame/952eb87f6182d2552f0db3fd54dc812c5ec4e99d/license.txt +--- + File uploader component is licensed under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_11.yml deleted file mode 100644 index 108b6ab8db7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: This is a choice as seen in this history of this https://github.com/FineUploader/fine-uploader/blame/952eb87f6182d2552f0db3fd54dc812c5ec4e99d/license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_12.RULE index 2e3f7585d28..fcaff3286eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_12.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GPLv2+ or LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_12.yml deleted file mode 100644 index 2549e71278c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_13.RULE index 8267dd19568..76a1bb621d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_13.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + This plugin is open sourced under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_13.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_13.yml deleted file mode 100644 index 52df2017816..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html - - https://www.gnu.org/licenses/lgpl-2.1.html 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 851f67f669d..48c3eca2a8d 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 @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + ### License ### This plugin is open sourced under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_14.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_14.yml deleted file mode 100644 index 52df2017816..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE index a4f15ec79f3..73c82013930 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index 4b489bee078..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_3.RULE index 85c64a3b181..6ab392ae071 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_3.yml deleted file mode 100644 index e5aa397c79a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE index 1d5eb6493c7..70897f60200 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + component is licensed under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_4.yml deleted file mode 100644 index 2549e71278c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_5.RULE index 7599d48f626..8aef329d1ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_5.yml deleted file mode 100644 index 2549e71278c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_6.RULE index 4fd60f3876e..9e3cbcac7a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License This plugin is open sourced under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_6.yml deleted file mode 100644 index 2549e71278c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_7.RULE index ba9fdfd670a..23ef4055c9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + open sourced under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_7.yml deleted file mode 100644 index 2549e71278c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_8.RULE index c32afa539da..b7d95e39d20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_8.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + ### License ### This plugin is open sourced under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_8.yml deleted file mode 100644 index 06ba455e316..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_9.RULE index 8b681cfe150..b61fd6e2eb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This plugin is open sourced under GNU GPL 2 or later and GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_9.yml deleted file mode 100644 index 2549e71278c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.0-plus_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE index dc0c70984b4..70924839e0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + ## License GPLv2 "or later" by default, LGPLv2.1 "or later" with `--enable-lgpl`. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index 6a3e97b4ff8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE index 25da4a53eea..1e985d9a975 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + GPLv2 "or later" by default, LGPLv2.1 "or later" with `--enable-lgpl`. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index 6a3e97b4ff8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE index de7936bc91d..de224adef39 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + mpv can be built as LGPLv2.1+ with the --enable-lgpl configure option. To add a LGPL mode to mpv, MPlayer code had to be relicensed from GPLv2+ to LGPLv2.1+ by asking the MPlayer authors for permission. Since permission could not be diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_3.yml deleted file mode 100644 index a3efb25b697..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_4.RULE index 8608aa0ed2a..18f86c29bf6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +--- + None of the cases listed above affect the final binary if it's built as LGPL. Linked libraries still can affect the final license (for example if FFmpeg was built as GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_4.yml deleted file mode 100644 index ea6bfb946d7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_5.RULE index 3432bfb1d04..b3017626242 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + The following files are still GPL only (--enable-lgpl disables them) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_5.yml deleted file mode 100644 index a3efb25b697..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_6.RULE index 3046e22e00d..92dabb951f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPL + - LICENSE.LGPL +--- + mpv as a whole is licensed under the GNU General Public License GPL version 2 or later (called GPLv2+ in this document, see LICENSE.GPL for full license text) by default, or the GNU Lesser General Public License LGPL version 2 or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_6.yml deleted file mode 100644 index ac6d414d3f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPL - - LICENSE.LGPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_and_other-permissive_1.RULE index 721254dadbd..fda6c3efea2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_and_other-permissive_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: (gpl-2.0-plus OR lgpl-2.1-plus) AND other-permissive +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPL + - LICENSE.LGPL +--- + Most source files are LGPLv2.1+ or GPLv2+, but some files are available under more liberal licenses, such as BSD, MIT, ISC, and possibly others. Look at the copyright header of each source file, and grep the sources for "Copyright" if diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_and_other-permissive_1.yml deleted file mode 100644 index 2b43d3d4e6c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_and_other-permissive_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: (gpl-2.0-plus OR lgpl-2.1-plus) AND other-permissive -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPL - - LICENSE.LGPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_1.RULE index 2364447b3b4..60af3c7dc05 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +--- + distributed under GPL, LGPL and/or MPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_1.yml deleted file mode 100644 index 63a7c555c7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_10.RULE index 9df50ad47f8..6aca9c0df00 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_10.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + Licensed under the terms of any of the following licenses at your choice: @@ -19,4 +29,4 @@ modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. In any case, your choice will not restrict any recipient of your version of this software to use, reproduce, modify -and distribute this software under any of the above licenses. +and distribute this software under any of the above licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_10.yml deleted file mode 100644 index 69d0f137d9c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_11.RULE index 6ffefa5bde6..ce169e2c91f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_11.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + Licensed under the terms of any of the following licenses at your choice: * GNU General Public License Version 2 or later (the "GPL"): @@ -9,4 +19,4 @@ Licensed under the terms of any of the following licenses at your choice: * Mozilla Public License Version 1.1 or later (the "MPL"): http://www.mozilla.org/MPL/MPL-1.1.html -You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing th +You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing th \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_11.yml deleted file mode 100644 index 69d0f137d9c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_12.RULE index bc4feb31417..324fed5d33b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_12.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + Licensed under the terms of any of the following licenses at your choice: @@ -11,4 +21,4 @@ choice: - Mozilla Public License Version 1.1 or later (the "MPL") http://www.mozilla.org/MPL/MPL-1.1.html - (See Appendix C) + (See Appendix C) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_12.yml deleted file mode 100644 index 69d0f137d9c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_2.RULE index 4e3e3dc42c7..5daf793e665 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_2.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL + - COPYING.LGPL + - COPYING.MPL +--- + released under the GPL 2.0+/LGPL 2.1+/MPL 1.1 tri-license. See COPYING.GPL, COPYING.LGPL and COPYING.MPL for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_2.yml deleted file mode 100644 index a9708483712..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL - - COPYING.LGPL - - COPYING.MPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_3.RULE index ec20b808cd8..01b86940008 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +--- + released under the GPL 2.0+/LGPL 2.1+/MPL 1.1 tri-license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_3.yml deleted file mode 100644 index 63a7c555c7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_4.RULE index fef7029c1c4..0ef8798cf44 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL + - COPYING.LGPL + - COPYING.MPL +--- + # This library is free software. It is released under the # GPL 2.0+/LGPL 2.1+/MPL 1.1 tri-license. See COPYING.GPL, COPYING.LGPL and # COPYING.MPL for more details. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_4.yml deleted file mode 100644 index a9708483712..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL - - COPYING.LGPL - - COPYING.MPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_5.RULE index bafa7c7c458..fcabfcc0149 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL + - COPYING.LGPL + - COPYING.MPL +--- + License: Pyphen is released under the GPL 2.0+/LGPL 2.1+/MPL 1.1 tri-license. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_5.yml deleted file mode 100644 index a9708483712..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL - - COPYING.LGPL - - COPYING.MPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_6.RULE index 318e30436a8..4f746bdf6f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_tag: yes +relevance: 99 +notes: pyphen +--- + 'License :: OSI Approved :: {{GNU General Public License v2 or later (GPLv2+)}}', 'License :: OSI Approved :: {{GNU Lesser General Public License v2 or later (LGPLv2+)}}', - 'License :: OSI Approved :: {{Mozilla Public License 1.1 (MPL 1.1)}}', + 'License :: OSI Approved :: {{Mozilla Public License 1.1 (MPL 1.1)}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_6.yml deleted file mode 100644 index 4a6b8c73b58..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_tag: yes -relevance: 99 -notes: pyphen diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_7.RULE index 77a8a099660..6723791c67f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_7.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL + - COPYING.LGPL + - COPYING.MPL +notes: http://cgit.freedesktop.org/libreoffice/dictionaries/tree/ +--- + Pyphen is released under the GPL 2.0+/LGPL 2.1+/MPL 1.1 tri-license. See COPYING.GPL, COPYING.LGPL and COPYING.MPL for more details. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_7.yml deleted file mode 100644 index c8ff95f549c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL - - COPYING.LGPL - - COPYING.MPL -notes: http://cgit.freedesktop.org/libreoffice/dictionaries/tree/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_8.RULE index 6a71301835d..fa2194e9647 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html + - https://www.mozilla.org/MPL/MPL-1.1.html +--- + {{GNU General Public License Version 2 or later}} (the "GPL") https://www.gnu.org/licenses/gpl.html {{GNU Lesser General Public License Version 2.1 or later}} (the "LGPL") https://www.gnu.org/licenses/lgpl.html -{{Mozilla Public License Version 1.1 or later}} (the "MPL") https://www.mozilla.org/MPL/MPL-1.1.html +{{Mozilla Public License Version 1.1 or later}} (the "MPL") https://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_8.yml deleted file mode 100644 index 4d217b1e744..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html - - https://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_9.RULE index ebbce8f6c97..c7b2797ea2f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_9.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +relevance: 100 +notes: seen in https://github.com/ckeditor/ckeditor4/blob/major/LICENSE.md +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html + - https://www.mozilla.org/MPL/MPL-1.1.html +--- + Licensed under the terms of any of the following licenses at your choice: GNU General Public License Version 2 or later (the "GPL") https://www.gnu.org/licenses/gpl.html (See Appendix A) GNU Lesser General Public License Version 2.1 or later (the "LGPL") https://www.gnu.org/licenses/lgpl.html (See Appendix B) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_9.yml deleted file mode 100644 index 29a8c5a020c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -relevance: 100 -notes: seen in https://github.com/ckeditor/ckeditor4/blob/major/LICENSE.md -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html - - https://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_bsd-new_1.RULE index 8242534c0a1..1f2c916ca01 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_bsd-new_1.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + This module may be used under the terms of either the GNU General Public License version 2 or later, the GNU Lesser General Public License version 2.1 or later, the Mozilla Public License version 1.1 or the BSD License. The exact terms of either license are -distributed along with this module. +distributed along with this module. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_bsd-new_1.yml deleted file mode 100644 index af94d7b8d38..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later.RULE index 94ca31c0da2..508188eb358 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + Licensed under the terms of any of the following licenses at your choice: @@ -19,4 +28,4 @@ modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. In any case, your choice will not restrict any recipient of your version of this software to use, reproduce, modify -and distribute this software under any of the above licenses. +and distribute this software under any of the above licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later.yml deleted file mode 100644 index 49e58782b0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later2.RULE index 55c6df565b2..d72ec4fc5c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + Licensed under the terms of any of the following licenses at your choice: @@ -11,4 +20,4 @@ choice: - Mozilla Public License Version 1.1 or later (the "MPL") http://www.mozilla.org/MPL/MPL-1.1.html - (See Appendix C) + (See Appendix C) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later2.yml deleted file mode 100644 index 49e58782b0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later3.RULE index a32814609f9..6eb1593af80 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + Licensed under the terms of any of the following licenses at your choice: * GNU General Public License Version 2 or later (the "GPL"): @@ -9,4 +18,4 @@ Licensed under the terms of any of the following licenses at your choice: * Mozilla Public License Version 1.1 or later (the "MPL"): http://www.mozilla.org/MPL/MPL-1.1.html -You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing th +You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing th \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later3.yml deleted file mode 100644 index 49e58782b0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-2.1-plus_or_mpl-1.1_or_later3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.1-plus OR mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_1.RULE index 58409422acb..8f325a24b0b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_1.RULE @@ -1,5 +1,13 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYINGv2 + - COPYING.LESSERv3 +--- + The source code for the C library are licensed under the terms of either the GNU General Public License version 2.0 or later (see the file COPYINGv2) or the GNU Lesser General Public License version 3.0 or later (see the file -COPYING.LESSERv3), or both in parallel as here. +COPYING.LESSERv3), or both in parallel as here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_1.yml deleted file mode 100644 index 31c920c4da9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYINGv2 - - COPYING.LESSERv3 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_2.RULE index 4c2c35a59df..095a18d787d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_2.RULE @@ -1,6 +1,14 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-3.0-plus +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - COPYINGv2 + - COPYING.LESSERv3 +--- + are licensed under the terms of either the GNU General Public License version 2.0 or later (see the file COPYINGv2) or the GNU Lesser General Public License version 3.0 or later (see the file -COPYING.LESSERv3), or both in parallel as here. - +COPYING.LESSERv3), or both in parallel as here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_2.yml deleted file mode 100644 index a84439b58ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-3.0-plus -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - COPYINGv2 - - COPYING.LESSERv3 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_1.RULE index a10571d19c7..dc4a2e84819 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (gpl-2.0-plus OR lgpl-3.0-plus) AND gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYINGv2 + - COPYING.LESSERv3 +--- + The source code for the C library are licensed under the terms of either the GNU General Public License version 2.0 or later (see the file COPYINGv2) or the GNU Lesser @@ -6,4 +14,4 @@ COPYING.LESSERv3), or both in parallel as here. The command line tool, self tests, examples, and other auxilliary files, are licensed under the GNU General Public License version 3.0 -or later. +or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_1.yml deleted file mode 100644 index a514eb670d2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (gpl-2.0-plus OR lgpl-3.0-plus) AND gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYINGv2 - - COPYING.LESSERv3 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_2.RULE index b0b5d4e1b01..4ed760b05bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_2.RULE @@ -1,5 +1,12 @@ +--- +license_expression: (gpl-2.0-plus OR lgpl-3.0-plus) AND gpl-3.0-plus +is_license_reference: yes +referenced_filenames: + - COPYING +--- + # License The installed C library libidn2 is dual-licensed under LGPLv3+|GPLv2+, while the rest of the package is GPLv3+. See the file -[COPYING](COPYING) for detailed information. +[COPYING](COPYING) for detailed information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_2.yml deleted file mode 100644 index 515851b964d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: (gpl-2.0-plus OR lgpl-3.0-plus) AND gpl-3.0-plus -is_license_reference: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_and_other_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_and_other_1.RULE index b80d4930ada..a5934268c6e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_and_other_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_and_other_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: (gpl-2.0-plus OR lgpl-3.0-plus) AND gpl-3.0-plus AND unicode-tou AND unicode + AND other-permissive AND other-copyleft +is_license_notice: yes +referenced_filenames: + - COPYINGv2 + - COPYING.LESSERv3 + - COPYING.unicode +notes: Seen in libidn2 +--- + The source code for the C library are licensed under the terms of either the GNU General Public License version 2.0 or later (see the file COPYINGv2) or the GNU Lesser diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_and_other_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_and_other_1.yml deleted file mode 100644 index d98155ed5c3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_gpl-3.0-plus_and_other_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: (gpl-2.0-plus OR lgpl-3.0-plus) AND gpl-3.0-plus AND unicode-tou AND unicode - AND other-permissive AND other-copyleft -is_license_notice: yes -referenced_filenames: - - COPYINGv2 - - COPYING.LESSERv3 - - COPYING.unicode -notes: Seen in libidn2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_other.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_other.RULE index adfdcc1c3b5..7af2f99188c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_other.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_other.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (gpl-2.0-plus OR lgpl-3.0-plus) AND gpl-3.0-plus AND unicode-tou AND unicode + AND other-permissive AND other-copyleft +is_license_notice: yes +referenced_filenames: + - COPYINGv2 + - COPYIN.LESSERv3 + - COPYING.unicode +--- + The source code for the C library are licensed under the terms of either the GNU General Public License version 2.0 or later (see the file COPYINGv2) or the GNU Lesser @@ -14,4 +24,4 @@ static storage in the library) are documented in COPYING.unicode. Other files are licensed as indicated in each file. There may be exceptions to these general rules, see each file for -precise information. +precise information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_other.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_other.yml deleted file mode 100644 index 9d6b8a7d236..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_lgpl-3.0-plus_and_other.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (gpl-2.0-plus OR lgpl-3.0-plus) AND gpl-3.0-plus AND unicode-tou AND unicode - AND other-permissive AND other-copyleft -is_license_notice: yes -referenced_filenames: - - COPYINGv2 - - COPYIN.LESSERv3 - - COPYING.unicode diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit.RULE index 5934f46660a..7a3057e110a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR mit +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +notes: minor text variation +--- + This source code 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 @@ -23,4 +31,4 @@ 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. +IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit.yml deleted file mode 100644 index f6c88c14ab3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 -notes: minor text variation diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit2.RULE index 302b9199740..ef8b181ef7c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + This file is dual-licensed: you can use it either under the terms * of the GPL or the X11 license, at your option. Note that this dual * licensing only applies to this file, and not this project as a diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit2.yml deleted file mode 100644 index 5e37ef2f202..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit4.RULE index 251ef890e88..85d8d3eadb8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + This file is dual-licensed: you can use it either under the terms of the GPLv2 or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -34,4 +40,4 @@ Or, alternatively, 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit4.yml deleted file mode 100644 index 5e37ef2f202..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit5.RULE index ded8ac9f9e8..298b1a9e4ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + This file is dual-licensed: you can use it either under the terms of the GPL or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -39,4 +45,4 @@ Or, alternatively, 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit5.yml deleted file mode 100644 index 5e37ef2f202..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit6.RULE index 561c09db6d8..41002162757 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + This file is dual-licensed: you can use it either under the terms of the GPL or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -34,4 +40,4 @@ 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit6.yml deleted file mode 100644 index 5e37ef2f202..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit7.RULE index 7f816b6895d..55c7cb5979d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + This file is dual-licensed: you can use it either under the terms of the GPL or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -39,4 +45,4 @@ Or, alternatively, 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit7.yml deleted file mode 100644 index 5e37ef2f202..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit8.RULE index 23c49cf035d..3f3347ee4f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR mit +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is dual-licensed: you can use it either under the terms of the GPL or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -37,4 +45,4 @@ Or, alternatively, 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit8.yml deleted file mode 100644 index 66af1b5805e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit9.RULE index b3701acf4f2..f965b4a5326 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus OR mit +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 @@ -14,5 +19,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As an alternative, at your option, you may use this file under the -following terms, known as the "MIT license": - +following terms, known as the "MIT license": \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit9.yml deleted file mode 100644 index 64d6577cd50..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit_1.RULE index 96e3ae0fc05..af39bc673e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is dual-licensed: you can use it either under the terms of the GPL or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -37,4 +46,4 @@ Or, alternatively, 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_mit_1.yml deleted file mode 100644 index 401f2264e59..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_mit_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_other-copyleft_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_other-copyleft_or_commercial-license_1.RULE index d0832a3910e..c8490289449 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_other-copyleft_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_other-copyleft_or_commercial-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus OR other-copyleft OR commercial-license +is_license_notice: yes +relevance: 100 +notes: https://web.archive.org/web/20130623081057/http://www.cybercom.net/~dcoffin/dcraw/dcraw.c +--- + This is a command-line ANSI C program to convert raw photos from any digital camera on any computer running any operating system. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_other-copyleft_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_other-copyleft_or_commercial-license_1.yml deleted file mode 100644 index 44fed8fa0a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_other-copyleft_or_commercial-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus OR other-copyleft OR commercial-license -is_license_notice: yes -relevance: 100 -notes: https://web.archive.org/web/20130623081057/http://www.cybercom.net/~dcoffin/dcraw/dcraw.c diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_1.RULE index 694df5f8396..3de02ef486b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus OR php-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - LICENSE +ignorable_emails: + - core@php.net +--- + This program is free software; you can redistribute it and/or modify it under the terms of one of the following licenses: @@ -15,4 +26,4 @@ GNU General Public License for more details. You should have received a copy of both licenses referred to here. If you did not, or have any questions about PHP licensing, please -contact core@php.net. +contact core@php.net. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_1.yml deleted file mode 100644 index a691b72045f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus OR php-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - LICENSE -ignorable_emails: - - core@php.net diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_2.RULE index 372ff519e2c..3d0db00448e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus OR php-3.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + | This program is free software; you can redistribute it and/or modify | | it under the terms of one of the following licenses: | diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_2.yml deleted file mode 100644 index 8a5591a1602..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_php-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus OR php-3.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_tgppl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_tgppl-1.0_1.RULE index c9839f1cf80..81aab3b377b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_tgppl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_tgppl-1.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus OR tgppl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL + - COPYING.TGPPL +--- + LICENCE You may use this package under the GNU General Public License, version 2 or, at diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_tgppl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_tgppl-1.0_1.yml deleted file mode 100644 index c05db50c06e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_tgppl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus OR tgppl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL - - COPYING.TGPPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_ubdl_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_ubdl_1.RULE index 8f324abaf87..11906a7c251 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_ubdl_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_ubdl_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH ubdl +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING.UDBL +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_ubdl_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_or_ubdl_1.yml deleted file mode 100644 index 032276c580e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_ubdl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ubdl -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING.UDBL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_pulp.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_pulp.RULE index 161675e4772..88d67a87c7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_pulp.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_pulp.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + This software is licensed to you under the GNU General Public License as published by the Free Software Foundation; either version 2 of the License (GPLv2) or (at your option) any later version. @@ -5,4 +12,4 @@ There is NO WARRANTY for this software, express or implied, including the implied warranties of MERCHANTABILITY, NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 along with this software; if not, see -http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. +http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_pulp.yml b/src/licensedcode/data/rules/gpl-2.0-plus_pulp.yml deleted file mode 100644 index 1fccbb3af2e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_pulp.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_structured.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_structured.RULE index d7cb87bf605..124f20e4f1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_structured.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_structured.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://spdx.org/licenses/GPL-2.0 +--- + * @license GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_structured.yml b/src/licensedcode/data/rules/gpl-2.0-plus_structured.yml deleted file mode 100644 index 6e8d58b867d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_structured.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://spdx.org/licenses/GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_tag_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_tag_1.RULE index a8c2f157b98..185f3d5183e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_tag_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_tag_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 90 +--- + GPLv2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_tag_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_tag_1.yml deleted file mode 100644 index 1ad076f8888..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_tag_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_url_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_url_1.RULE index 9e22421a8b6..d87cd4b47ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-2.0-or-later +--- + https://spdx.org/licenses/gpl-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_url_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_url_1.yml deleted file mode 100644 index 6fe865cb461..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-2.0-or-later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_url_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_url_2.RULE index 8ceb4aa1a57..4f0006c04cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-2.0-or-later.html +--- + https://spdx.org/licenses/gpl-2.0-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_url_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_url_2.yml deleted file mode 100644 index cc8be3b798d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-2.0-or-later.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.RULE index 60819cf84c2..2125cbe384d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH ada-linking-exception +is_license_notice: yes +--- + This library 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 @@ -17,4 +22,4 @@ unit, or you link this unit with other files to produce an executable, this unit does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be -covered by the GNU Public License. +covered by the GNU Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.yml deleted file mode 100644 index cd295e13305..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH ada-linking-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_2.RULE index d636cb91e50..b7ad26381c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_2.RULE @@ -1 +1,9 @@ -Open source license information is in the zlib.ads file. +--- +license_expression: gpl-2.0-plus WITH ada-linking-exception +is_license_notice: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +--- + +Open source license information is in the zlib.ads file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_2.yml deleted file mode 100644 index e1fe4ad8755..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ada-linking-exception -is_license_notice: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_3.RULE index 4439628d7ab..afec8640fe3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH ada-linking-exception +is_license_notice: yes +relevance: 100 +--- + This library 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_3.yml deleted file mode 100644 index 97f0c6fd0c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ada-linking-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH ada-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_2.RULE index ba6ec97b3d2..0de02ae6467 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_2.RULE @@ -1,6 +1,11 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_notice: yes +--- + As a special exception, the Free Software Foundation gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of Autoconf appear in them. The GNU General Public License (GPL) does govern all other use -of the material that constitutes the Autoconf program. \ No newline at end of file +of the material that constitutes the Autoconf program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_2.yml deleted file mode 100644 index 8bff05b360d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_3.RULE index aed1ce5fd1b..a9f15f484e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-exception-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 as published by the Free Software Foundation; either version 2, or (at your option) @@ -38,4 +43,4 @@ of the text that was the non-data portion of the version that you started with. (In other words, unless your change moves or copies text from the non-data portions to the data portions.) If your modification has such potential, you must delete any notice of this special exception -to the GPL from your modified version. +to the GPL from your modified version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_3.yml deleted file mode 100644 index 8d32465b391..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-exception-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_1.RULE index f4960b16d49..74f7e0d594e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-macro-exception +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, or (at your option) @@ -16,4 +21,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA As a special exception, the you may copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public -License when using or distributing such scripts. +License when using or distributing such scripts. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_1.yml deleted file mode 100644 index 74c258a62b9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-macro-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_2.RULE index 30955492504..018326538fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-macro-exception +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your @@ -22,4 +30,4 @@ This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special - exception to the GPL to apply to your modified version as well. + exception to the GPL to apply to your modified version as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_2.yml deleted file mode 100644 index e9d19194890..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-macro-exception -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_3.RULE index 633e08c704c..82b61d4d7f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-exception-2.0 +is_license_notice: yes +relevance: 99 +--- + 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, or (at your option) @@ -26,4 +32,4 @@ This special exception to the GPL applies to versions of the Autoconf Macro released by this project. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your modified version as -well. +well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_3.yml deleted file mode 100644 index a87b7fdde70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-exception-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_4.RULE index 176b617f8fc..acac30c1543 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-macro-exception +is_license_notice: yes +minimum_coverage: 60 +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 @@ -23,4 +31,4 @@ This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special - exception to the GPL to apply to your modified version as well. + exception to the GPL to apply to your modified version as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_4.yml deleted file mode 100644 index 1febea5a729..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-macro-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-macro-exception -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_1.RULE index 2e55e5b50e2..54858e358f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + # 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 @@ -15,4 +21,4 @@ # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. +# the same distribution terms that you use for the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_1.yml deleted file mode 100644 index eabc95ab3a1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_10.RULE index c8ffba71d98..bb5bc8d1d7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-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 as published by the Free Software Foundation; either version 2, or (at your option) @@ -14,4 +21,4 @@ along with this program. If not, see . As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under -the same distribution terms that you use for the rest of that program. +the same distribution terms that you use for the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_10.yml deleted file mode 100644 index 11d974f4804..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_11.RULE index 92f3c6563ca..f5772bd1177 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + License: GPL-2+ with Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_11.yml deleted file mode 100644 index ee3aa201a16..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.RULE index b2f29cb9a98..5c33226763a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-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 as published by the Free Software Foundation; either version 2 of the License, or @@ -15,4 +20,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under -the same distribution terms that you use for the rest of that program. +the same distribution terms that you use for the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.yml deleted file mode 100644 index 7f215f5fdc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_13.RULE index 6f15d43d456..bd333ccedfe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL-2+ with Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_13.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_13.yml deleted file mode 100644 index f268ef858bf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_14.RULE index 479cb5fe959..041bbffa10b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +--- + GPL-2+ with Autoconf exception As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_14.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_14.yml deleted file mode 100644 index 7f215f5fdc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_15.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_15.RULE index 9bc0dfc6d6d..fcaab774613 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +relevance: 100 +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 General Public License as published by # the Free Software Foundation; either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_15.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_15.yml deleted file mode 100644 index 78d78fc3ec9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_16.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_16.RULE index ce3ae886544..0bf4c0c56d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_16.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_16.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_16.yml deleted file mode 100644 index ce495b6e3d9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_17.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_17.RULE index 146679f937b..ce64b9651e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_reference: yes +relevance: 99 +--- + GPL (v2 or later), with Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_17.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_17.yml deleted file mode 100644 index 350c4564d34..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_18.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_18.RULE index 6c03cce437f..2a3fa3823c3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_18.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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 2, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_18.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_18.yml deleted file mode 100644 index 107725254dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_18.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_2.RULE index 7f04b5aed01..b550e62a2a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_2.yml deleted file mode 100644 index 23558b4a36a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_3.RULE index 7969684a344..a0c453e881d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-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 as published by the Free Software Foundation; either version 2, or (at your option) @@ -16,4 +21,4 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under -the same distribution terms that you use for the rest of that program. +the same distribution terms that you use for the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_3.yml deleted file mode 100644 index 7f215f5fdc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_4.RULE index 09c7e673409..1d085c90642 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +--- + This file 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 @@ -16,5 +21,4 @@ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under -the same distribution terms that you use for the rest of that program. - +the same distribution terms that you use for the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_4.yml deleted file mode 100644 index 7f215f5fdc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_5.RULE index 8c8e88367ee..a116f1151b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +--- + # This file 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 @@ -15,4 +20,4 @@ # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. +# the same distribution terms that you use for the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_5.yml deleted file mode 100644 index 7f215f5fdc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_6.RULE index a4419d9e545..cdc7688e8fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +--- + License: GPL-2+ with Autoconf exception As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_6.yml deleted file mode 100644 index 7f215f5fdc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_7.RULE index 009bfa83a63..c5d2d412386 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) @@ -14,4 +21,4 @@ along with this program. If not, see . As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under -the same distribution terms that you use for the rest of that program. +the same distribution terms that you use for the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_7.yml deleted file mode 100644 index 872ae5b0fa0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_8.RULE index 5d196d6e0a7..f8e5cd9c84f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-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 as published by the Free Software Foundation; either version 2, or (at your option) @@ -15,4 +20,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under -the same distribution terms that you use for the rest of that program. +the same distribution terms that you use for the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_8.yml deleted file mode 100644 index 7f215f5fdc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_9.RULE index f2fe698a5bc..2e49d378b60 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 +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 General Public License as published by # the Free Software Foundation; either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_9.yml deleted file mode 100644 index 11d974f4804..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoconf-simple-exception-2.0_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoopts-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoopts-exception-2.0_1.RULE index 73fe186c229..7b275c36d1b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoopts-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoopts-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH autoopts-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Automated Options is free software. You may redistribute it and/or modify it under the terms of the GNU General Public License, as published by the Free Software @@ -28,4 +35,4 @@ modified files, you must delete this exception notice from them. If you write modifications of your own for AutoOpts, it is your choice whether to permit this exception to apply to your modifications. - If you do not wish that, delete this exception notice. + If you do not wish that, delete this exception notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoopts-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_autoopts-exception-2.0_1.yml deleted file mode 100644 index ac17d8f7cef..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_autoopts-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH autoopts-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_1.RULE index 0d06bbbba3f..882f656422c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH avisynth-c-interface-exception +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + // 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 @@ -26,4 +33,4 @@ // terms of the GNU General Public License plus this exception. An // independent module is a module which is not derived from or based // on Avisynth C Interface, such as 3rd-party filters, import and -// export plugins, or graphical user interfaces. +// export plugins, or graphical user interfaces. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_1.yml deleted file mode 100644 index 9e841063bb1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH avisynth-c-interface-exception -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_2.RULE index adfe24ed6dd..0434424db13 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH avisynth-c-interface-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + // 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 @@ -26,4 +34,4 @@ // terms of the GNU General Public License plus this exception. An // independent module is a module which is not derived from or based // on Avisynth C Interface, such as 3rd-party filters, import and -// export plugins, or graphical user interfaces. +// export plugins, or graphical user interfaces. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_2.yml deleted file mode 100644 index 4dcf646a3f1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_avisynth-c-interface-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH avisynth-c-interface-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_1.RULE index 05d8045036b..8b799b2b354 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH bison-exception-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 as published by @@ -17,4 +22,4 @@ MA 02110-1301, USA. */ As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation -in version 1.24 of Bison. */ +in version 1.24 of Bison. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_1.yml deleted file mode 100644 index 18446f9444d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH bison-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_2.RULE index 9337e1ecbe2..4faef90df1d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH bison-exception-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 as published by the Free Software Foundation; either version 2, or (at your option) @@ -15,5 +20,4 @@ /* As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation - in version 1.24 of Bison. */ - + in version 1.24 of Bison. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_2.yml deleted file mode 100644 index 18446f9444d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH bison-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_3.RULE index 2a2cee27ae1..83cbbeee71b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH bison-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_3.yml deleted file mode 100644 index bc35ccea749..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH bison-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_1.RULE index fc7f2f5f863..4b9fdcef2c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH bison-exception-2.2 +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, or (at your option) any later @@ -20,4 +25,4 @@ the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version - 2.2 of Bison. + 2.2 of Bison. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_1.yml deleted file mode 100644 index d2e0bdd4e59..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH bison-exception-2.2 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_2.RULE index caa4995903c..a5ff7228b9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH bison-exception-2.2 +is_license_notice: yes +minimum_coverage: 99 +--- + insert GPL v2+ text here Bison Exception diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_2.yml deleted file mode 100644 index 78eeef4f4c0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bison-exception-2.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH bison-exception-2.2 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bootloader-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_bootloader-exception_1.RULE index e61d26fb135..bb5369d7ec3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bootloader-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_bootloader-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH bootloader-exception +is_license_notice: yes +relevance: 100 +--- + licensed 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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_bootloader-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_bootloader-exception_1.yml deleted file mode 100644 index 0a6dedf8a75..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_bootloader-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH bootloader-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0.RULE index 4c881798c19..888fa43d46e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - COPYING +--- + # GNU Classpath 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, or (at your option) @@ -24,4 +32,4 @@ # or based on this library. If you modify this library, you may extend # this exception to your version of the library, but you are not # obligated to do so. If you do not wish to do so, delete this -# exception statement from your version. +# exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0.yml deleted file mode 100644 index a92e18300ee..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_1.RULE index 0fcb1bd7f19..b847c7c0a7f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +--- + # GNU Classpath 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 @@ -24,4 +29,4 @@ # not derived from or based on this library. If you modify this # library, you may extend this exception to your version of the # library, but you are not obligated to do so. If you do not wish to -# do so, delete this exception statement from your version. +# do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_1.yml deleted file mode 100644 index 687777b5adc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_10.RULE index 892cfc49e30..6901adb0ac5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + GPLv2+ (see above; with GNU classpath exception, see below) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_10.yml deleted file mode 100644 index eeeafd724e8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_11.RULE index fcb36d0e1bd..8175f284574 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LIBGCJ_LICENSE +notes: this is a gplv2 reference +--- + This software is copyrighted work licensed under the terms of the Libgcj License. Please consult the file "LIBGCJ_LICENSE" for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_11.yml deleted file mode 100644 index 539473fef64..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LIBGCJ_LICENSE -notes: this is a gplv2 reference diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_12.RULE index 8e941634279..0f1f7489ab7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_12.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: libgcj is GPLv2 not v1 +--- + The libgcj library is licensed under the terms of the GNU General Public License. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_12.yml deleted file mode 100644 index 80284a3b3fa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: libgcj is GPLv2 not v1 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_13.RULE index a6f76ea18db..d27943cb11c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_13.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: libgcj is GPLv2 not v1 +--- + The libgcj library is licensed under the terms of the GNU General Public License. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_13.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_13.yml deleted file mode 100644 index 80284a3b3fa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: libgcj is GPLv2 not v1 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_16.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_16.RULE index d7d63c071a5..2ad237dd6ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 99 +--- + insert GPL v2+ text here Class Path Exception diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_16.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_16.yml deleted file mode 100644 index d05cbdd15d3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_3.RULE index 08301e2c67a..5483ceaf1e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 70 +--- + # This file is a part of GNU Classpath. # GNU Classpath is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -25,4 +31,4 @@ # not derived from or based on this library. If you modify this # library, you may extend this exception to your version of the # library, but you are not obligated to do so. If you do not wish to -# do so, delete this exception statement from your version. +# do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 386540e65f7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_4.RULE index 19da9ffaa40..0058dee890e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +--- + # This file is a part of GNU Classpath. # # GNU Classpath is free software; you can redistribute it and/or @@ -30,4 +35,4 @@ # not derived from or based on this library. If you modify this # library, you may extend this exception to your version of the # library, but you are not obligated to do so. If you do not wish to -# do so, delete this exception statement from your version. +# do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_4.yml deleted file mode 100644 index 687777b5adc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_5.RULE index 4aa77b3bf52..751e1ab3977 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_5.yml deleted file mode 100644 index d504481e63f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_6.RULE index f5e6b036278..ec3f0f13628 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_6.yml deleted file mode 100644 index d504481e63f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_7.RULE index 36b5d340956..767aa1c517a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 99 +--- + GPL v2+ text here Class Path Exception diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_7.yml deleted file mode 100644 index d05cbdd15d3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_8.RULE index 796559f2b8e..2398925cc67 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-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 // as published by the Free Software Foundation; either version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_8.yml deleted file mode 100644 index 687777b5adc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_9.RULE index 5716e33b279..a77b607a83a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +--- + This file is a part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify @@ -30,4 +35,4 @@ module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this -exception statement from your version. +exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_9.yml deleted file mode 100644 index 687777b5adc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_classpath-exception-2.0_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH classpath-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_1.RULE index e2d52d73838..475200f7241 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +--- + // eCos 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 or (at your option) any later @@ -21,4 +26,4 @@ // General Public License v2. // // This exception does not invalidate any other reasons why a work based -// on this file might be covered by the GNU General Public License. \ No newline at end of file +// on this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_1.yml deleted file mode 100644 index c40a5964c9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_10.RULE index 305d1b66648..4ca6c857aa7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_10.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +ignorable_urls: + - http://sources.redhat.com/ecos/ecos-license/ +--- + The eCos license version 2.0 @@ -28,4 +39,4 @@ This exception does not invalidate any other reasons why a work based on this file might be covered by the GNU General Public License.

Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. -at http://sources.redhat.com/ecos/ecos-license/ +at http://sources.redhat.com/ecos/ecos-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_10.yml deleted file mode 100644 index e095e2baf0f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. -ignorable_holders: - - Red Hat, Inc. -ignorable_urls: - - http://sources.redhat.com/ecos/ecos-license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_11.RULE index 13a6d9b3669..90ef6b574a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus AND ecos-exception-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 as published by the Free Software Foundation; either version 2 or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_11.yml deleted file mode 100644 index 315e1e63070..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus AND ecos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_12.RULE index 38886f94fa1..1173d7c12fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://sources.redhat.com/ecos/license-overview.html + - http://www.gnu.org/copyleft/gpl.html +--- + eCos and RedBoot are open source software, covered by a modified version of the http://www.gnu.org/copyleft/gpl.html" GNU @@ -25,4 +33,4 @@ 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. +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/gpl-2.0-plus_with_ecos-exception-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_12.yml deleted file mode 100644 index b701dc15c8f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://sources.redhat.com/ecos/license-overview.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_13.RULE index 3b753fbb609..7bfdfa1bc3c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://sources.redhat.com/ecos/ecos-license/ +--- + eCos 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 or (at your option) any later version. @@ -22,4 +29,4 @@ This exception does not invalidate any other reasons why a work based on this file might be covered by the GNU General Public License. Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. -at http://sources.redhat.com/ecos/ecos-license/ +at http://sources.redhat.com/ecos/ecos-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_13.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_13.yml deleted file mode 100644 index a535b1b7f1d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://sources.redhat.com/ecos/ecos-license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_14.RULE index a2df8eeb869..de6c7930f6e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +--- + eCos 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 or (at your option) any later version. @@ -19,4 +24,4 @@ License. However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_14.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_14.yml deleted file mode 100644 index c40a5964c9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_15.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_15.RULE index 799a1f39b2b..90fbcf9e7cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_15.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +--- + eCos is distributed under the GPL license with an exception which permits proprietary application code to be linked with eCos without itself being forced to be released under the GPL. It is also royalty and buyout -free. +free. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_15.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_15.yml deleted file mode 100644 index c40a5964c9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_16.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_16.RULE index 9e98e372168..1087e956e9e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_16.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +--- + These rights are granted to you and protected by the GNU Public License (GPL). An exception clause has been added to the eCos license which @@ -8,5 +13,4 @@ These rights are or required to make your embedded applications or any additional components that you develop freely available so long as they are not derived from - eCos code. - \ No newline at end of file + eCos code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_16.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_16.yml deleted file mode 100644 index c40a5964c9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_17.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_17.RULE index 896519eab4d..7f9ba5ea64c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/philosophy/license-list.html +--- + As of May 2002, eCos is released under a modified version of the well known "http://www.gnu.org/copyleft/gpl.html">GNU General Public License (GPL), now making it an http://www.gnu.org/philosophy/license-list.html" official @@ -18,4 +27,4 @@ clause is as follows: License. This exception does not invalidate any other reasons why a work based on - this file might be covered by the GNU General Public License. + this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_17.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_17.yml deleted file mode 100644 index ff0121666e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/philosophy/license-list.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_18.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_18.RULE index fe39fd7a94c..5d21a22dea8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_18.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +--- + //####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_18.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_18.yml deleted file mode 100644 index c40a5964c9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_19.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_19.RULE index 5c1f700ccd9..d42b72fcafe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://sources.redhat.com/ecos/ecos-license/ +--- + ####ECOSGPLCOPYRIGHTBEGIN#### ------------------------------------------- This file is part of eCos, the Embedded Configurable Operating System. @@ -27,4 +35,4 @@ this file might be covered by the GNU General Public License. Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. at http://sources.redhat.com/ecos/ecos-license/ -####ECOSGPLCOPYRIGHTEND#### +####ECOSGPLCOPYRIGHTEND#### \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_19.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_19.yml deleted file mode 100644 index 0854bd9f64c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://sources.redhat.com/ecos/ecos-license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_2.RULE index 77c35782d41..fceb65adc2e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ecos-license.html +--- + http://www.gnu.org/licenses/ecos-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_2.yml deleted file mode 100644 index f33bddb12d8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ecos-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_20.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_20.RULE index 1176a8b1463..a7d1fafe82e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://sources.redhat.com/ecos/ecos-license/ +--- + Both of these 2 wonderful world are GPL, so this is, of course, GPL. ####ECOSGPLCOPYRIGHTBEGIN#### @@ -29,4 +36,4 @@ this file might be covered by the GNU General Public License. Alternative licenses for eCos may be arranged by contacting Red Hat, Inc. at http://sources.redhat.com/ecos/ecos-license/ -####ECOSGPLCOPYRIGHTEND#### +####ECOSGPLCOPYRIGHTEND#### \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_20.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_20.yml deleted file mode 100644 index a535b1b7f1d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://sources.redhat.com/ecos/ecos-license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_21.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_21.RULE index c5535c1fc8b..b34f0d34588 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is part of eCos, the Embedded Configurable Operating System. eCos is free software; you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_21.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_21.yml deleted file mode 100644 index d13c6274d3d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_22.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_22.RULE index 5e73716fa8f..4208bb2033c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_22.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_22.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/philosophy/license-list.html +--- + As of May 2002, eCos is released under a modified version of the well known "https://www.gnu.org/copyleft/gpl.html">GNU General Public License (GPL), now making it an https://www.gnu.org/philosophy/license-list.html" official @@ -18,4 +28,4 @@ clause is as follows: License. This exception does not invalidate any other reasons why a work based on - this file might be covered by the GNU General Public License. + this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_22.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_22.yml deleted file mode 100644 index e7ede3cd998..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_22.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/philosophy/license-list.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_23.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_23.RULE index 1f4bcc3832e..a1f86a70ecd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_23.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_23.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://sources.redhat.com/ecos/license-overview.html + - https://www.gnu.org/copyleft/gpl.html +--- + eCos and RedBoot are open source software, covered by a modified version of the https://www.gnu.org/copyleft/gpl.html" GNU @@ -25,4 +34,4 @@ 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. +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/gpl-2.0-plus_with_ecos-exception-2.0_23.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_23.yml deleted file mode 100644 index 4745dacd890..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://sources.redhat.com/ecos/license-overview.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_24.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_24.RULE index eacea8a2207..5c04c962397 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_24.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ecos-license.html +--- + https://www.gnu.org/licenses/ecos-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_24.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_24.yml deleted file mode 100644 index 638d60efabf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ecos-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_25.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_25.RULE index f1651047815..73bac294bd8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_25.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_25.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +--- + eCos 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 or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_25.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_25.yml deleted file mode 100644 index c40a5964c9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_26.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_26.RULE index b2a18d7d7a9..3c01e4edb5c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_26.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_26.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + eCos-2.0 eCos license version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_26.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_26.yml deleted file mode 100644 index b184cf1edc8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_27.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_27.RULE index 3d6d418b059..b9a87b7b852 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_27.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_27.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + eCos license version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_27.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_27.yml deleted file mode 100644 index b184cf1edc8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_28.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_28.RULE index f8a138430bf..e870bfff63d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_28.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_28.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + eCos license version 2.0 eCos-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_28.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_28.yml deleted file mode 100644 index b184cf1edc8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_29.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_29.RULE index a223d8687a8..1d42f323bea 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_29.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_29.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : eCos-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_29.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_29.yml deleted file mode 100644 index 3d2e3eec7a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_3.RULE index 3e4cf94bb1b..a5aedc19eab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ecos.sourceware.org/license-overview.html +--- + http://ecos.sourceware.org/license-overview.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_3.yml deleted file mode 100644 index ef79e6a18ba..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ecos.sourceware.org/license-overview.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_30.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_30.RULE index 229c5136243..348eab8eeaa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : eCos-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_30.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_30.yml deleted file mode 100644 index b184cf1edc8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_31.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_31.RULE index e43458f48bd..6bd5770bff1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_31.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : eCos license version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_31.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_31.yml deleted file mode 100644 index b184cf1edc8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_32.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_32.RULE index 893b0a3e16f..9420034fa01 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_32.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + eCos-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_32.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_32.yml deleted file mode 100644 index 0f663f8ed90..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_4.RULE index 7557089c2fc..27b7e9aff72 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/ecos-license.html +--- + http://www.fsf.org/licensing/licenses/ecos-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_4.yml deleted file mode 100644 index d28c6ba1268..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/ecos-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_5.RULE index 0c1e74ec897..ef27463caae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://sources.redhat.com/ecos/ecos-license/ +--- + The eCos license version 2.0 This file is part of eCos, the Embedded Configurable Operating System. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_5.yml deleted file mode 100644 index a535b1b7f1d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://sources.redhat.com/ecos/ecos-license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_6.RULE index c40a43f6bb1..36bd8fb5929 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ecos.sourceware.org/ecos-license/ +--- + http://ecos.sourceware.org/ecos-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_6.yml deleted file mode 100644 index 4828c871324..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ecos.sourceware.org/ecos-license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_7.RULE index 8f505b25f61..bbe074f9eb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX, minus copyright +ignorable_urls: + - http://sources.redhat.com/ecos/ecos-license/ +--- + The eCos license version 2.0 This file is part of eCos, the Embedded Configurable Operating System. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_7.yml deleted file mode 100644 index bb9d1c16839..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX, minus copyright -ignorable_urls: - - http://sources.redhat.com/ecos/ecos-license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_8.RULE index 8421adc1d5b..d2b991a7f12 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX, minus copyright +--- + ####ECOSGPLCOPYRIGHTBEGIN#### // ------------------------------------------- // This file is part of eCos, the Embedded Configurable Operating System. @@ -27,4 +34,4 @@ // This exception does not invalidate any other reasons why a work based // on this file might be covered by the GNU General Public License. // ------------------------------------------- -// ####ECOSGPLCOPYRIGHTEND#### \ No newline at end of file +// ####ECOSGPLCOPYRIGHTEND#### \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_8.yml deleted file mode 100644 index 0647b04759d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX, minus copyright diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_9.RULE index 64c18443b97..b33f5d5f8e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_9.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus WITH ecos-exception-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +ignorable_urls: + - http://sources.redhat.com/ecos/ecos-license/ +--- + The eCos license version 2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_9.yml deleted file mode 100644 index e095e2baf0f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_ecos-exception-2.0_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus WITH ecos-exception-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. -ignorable_holders: - - Red Hat, Inc. -ignorable_urls: - - http://sources.redhat.com/ecos/ecos-license/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_1.RULE index 8de4817dde4..d059d29df88 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +--- + 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. The fonts are distributed 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. @@ -11,4 +17,4 @@ Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception -statement from your version. +statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_1.yml deleted file mode 100644 index e21aa504500..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_2.RULE index 52b2a05aa22..70944201087 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-faq.html#FontException +--- + GPL version 2 or any later version with font exception (http://www.gnu.org/licenses/gpl-faq.html#FontException) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_2.yml deleted file mode 100644 index b4f479a449b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-faq.html#FontException diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_3.RULE index fbd5a6117e4..a9a9bda3f23 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-faq.html#FontException +--- + GPL version 2 or any later version with font exception (https://www.gnu.org/licenses/gpl-faq.html#FontException) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_3.yml deleted file mode 100644 index 979a39f674c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-faq.html#FontException diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_and_unknown-license-reference_1.RULE index be1712cf039..9f0f10e0d57 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_and_unknown-license-reference_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH font-exception-gpl AND unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + 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. The fonts are distributed 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. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_and_unknown-license-reference_1.yml deleted file mode 100644 index 2ec90cd5d07..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_font-exception-gpl_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH font-exception-gpl AND unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_freertos-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_freertos-exception-2.0_1.RULE index 6886a09eae5..7541348179d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_freertos-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_freertos-exception-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH freertos-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.freertos.org/ +--- + http://www.freertos.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_freertos-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_freertos-exception-2.0_1.yml deleted file mode 100644 index fdf27e5e591..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_freertos-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH freertos-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.freertos.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_1.RULE index 7ef0dc21708..68fbe8c30f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-compiler-exception-2.0 AND gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file 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, or (at your option) any @@ -26,4 +33,4 @@ the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. -/ +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_1.yml deleted file mode 100644 index 90acd47c945..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-compiler-exception-2.0 AND gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_2.RULE index ab99a8e63d8..617577476da 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-compiler-exception-2.0 AND gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This 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, or (at your option) any @@ -25,5 +32,4 @@ Boston, MA 02111-1307, USA. */ compiled with GCC to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why - the executable file might be covered by the GNU General Public License. */ - + the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_2.yml deleted file mode 100644 index 90acd47c945..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-compiler-exception-2.0 AND gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_3.RULE index f43ddb8fd97..74d90752ceb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-compiler-exception-2.0 AND gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + 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, or (at your option) any @@ -25,5 +32,4 @@ Boston, MA 02111-1307, USA. */ compiled with GCC to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why - the executable file might be covered by the GNU General Public License. */ - + the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_3.yml deleted file mode 100644 index 90acd47c945..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-compiler-exception-2.0_and_gpl-2.0-plus_with_and_others_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-compiler-exception-2.0 AND gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_1.RULE index 388eac43bc6..b1f7afb090a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING +notes: there are some confusing references to both LGPL and GPL +--- + The Library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,4 +29,4 @@ License for more details. You should have received a copy of the GNU General Public License along with library; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, -MA 02111-1307, USA. +MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_1.yml deleted file mode 100644 index 1b75a80a734..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING -notes: there are some confusing references to both LGPL and GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_2.RULE index 909d5904590..7c266c88271 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +minimum_coverage: 20 +referenced_filenames: + - COPYING +--- + GNU CC 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, or (at your option) @@ -20,4 +28,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_2.yml deleted file mode 100644 index 7aa5fe73b0c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -minimum_coverage: 20 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_3.RULE index af47c3907e2..477a0e60dc9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +minimum_coverage: 20 +referenced_filenames: + - COPYING +--- + This file 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, or (at your option) any @@ -20,4 +28,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301, USA. */ +Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_3.yml deleted file mode 100644 index 7aa5fe73b0c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -minimum_coverage: 20 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_4.RULE index e321641cf44..55d827c2484 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file 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, or (at your option) any @@ -20,4 +27,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_4.yml deleted file mode 100644 index 1798a0e6a99..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_5.RULE index 6f0512e278f..3f5f467997c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2, or (at your option) @@ -20,4 +27,4 @@ GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_5.yml deleted file mode 100644 index 1798a0e6a99..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_6.RULE index 1c286382e8c..17b71f48b13 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GNU CC 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, or (at your option) @@ -20,4 +27,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_6.yml deleted file mode 100644 index 1798a0e6a99..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_7.RULE index ce7946ce647..4a374435b4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2, or (at your option) any later version. @@ -16,4 +23,4 @@ GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with ; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_7.yml deleted file mode 100644 index 1798a0e6a99..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_8.RULE index 11ddb0eadd4..9347e0bf71b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING +notes: there are some confusing references to both LGPL and GPL +--- + The GNU MP Library 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 @@ -19,4 +28,4 @@ License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, -MA 02111-1307, USA. +MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_8.yml deleted file mode 100644 index 1b75a80a734..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gcc-linking-exception-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING -notes: there are some confusing references to both LGPL and GPL diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_1.RULE index c8b1f9b4528..f9fc2ef4e54 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH generic-exception +is_license_notice: yes +relevance: 100 +notes: Problematic injections in the GPL main text https://github.com/gat3way/hashkill/blob/50ba2b5971e1b7228df9d1c9e1e775881b18f96c/COPYING#L259 +--- + 12. unrar Exception In addition, as a special exception, the author gives permission to diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_1.yml deleted file mode 100644 index e98fd89b8ab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH generic-exception -is_license_notice: yes -relevance: 100 -notes: Problematic injections in the GPL main text https://github.com/gat3way/hashkill/blob/50ba2b5971e1b7228df9d1c9e1e775881b18f96c/COPYING#L259 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_2.RULE index f8ec641b407..0ebae03165e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH generic-exception +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-OPENSSL +notes: Problematic injections in the GPL main text https://github.com/gat3way/hashkill/blob/50ba2b5971e1b7228df9d1c9e1e775881b18f96c/COPYING#L259 +--- + 11. OpenSSL Exception diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_2.yml deleted file mode 100644 index 5e8f4660290..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_generic-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH generic-exception -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-OPENSSL -notes: Problematic injections in the GPL main text https://github.com/gat3way/hashkill/blob/50ba2b5971e1b7228df9d1c9e1e775881b18f96c/COPYING#L259 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_1.RULE index 03788840b4b..b8299483a0e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH geoserver-exception-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_1.yml deleted file mode 100644 index 196c733012d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH geoserver-exception-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_2.RULE index 12524a08cc0..f2e410ef6e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH geoserver-exception-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_2.yml deleted file mode 100644 index 196c733012d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_geoserver-exception-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH geoserver-exception-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gnu-javamail-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gnu-javamail-exception_1.RULE index afe796adc99..161882fffcb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gnu-javamail-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gnu-javamail-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH gnu-javamail-exception +is_license_notice: yes +minimum_coverage: 70 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gnu-javamail-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gnu-javamail-exception_1.yml deleted file mode 100644 index bd5b7d5833e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gnu-javamail-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH gnu-javamail-exception -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_1.RULE index 328b51a175b..b3fa8aa1e0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + # 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_1.yml deleted file mode 100644 index 62596267da1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_2.RULE index db6aa970d71..86ddc642f3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: This is a rare exception that is used in some old Tahoe-LAFS versions. It was later replaced + by a choice of GPL or TGPPL See https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/COPYING?rev=bf14613b6aa1efdc13195e7578020426a9f4dfdc +--- + In addition to the terms of the GNU General Public License, this licence also comes with the added permission that, if you become obligated to release a derived work under this licence (as per section 2.b), you may delay the diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_2.yml deleted file mode 100644 index e22f9b9a295..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: This is a rare exception that is used in some old Tahoe-LAFS versions. It was later replaced - by a choice of GPL or TGPPL See https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/COPYING?rev=bf14613b6aa1efdc13195e7578020426a9f4dfdc diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_3.RULE index ad7ccebfa37..2e20c3c0ba3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: This is a rare exception that is used in some old Tahoe-LAFS versions. It was later replaced + by a choice of GPL or TGPPL See https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/README?rev=bf14613b6aa1efdc13195e7578020426a9f4dfdc +--- + LICENCE: This program is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_3.yml deleted file mode 100644 index 2f4671cfb21..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: This is a rare exception that is used in some old Tahoe-LAFS versions. It was later replaced - by a choice of GPL or TGPPL See https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/README?rev=bf14613b6aa1efdc13195e7578020426a9f4dfdc diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_4.RULE index 73ae8038a77..90da56e3ab0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: This is a rare exception that is used in some old Tahoe-LAFS versions. It was later replaced + by a choice of GPL or TGPPL See https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/README?rev=bf14613b6aa1efdc13195e7578020426a9f4dfdc +--- + 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) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_4.yml deleted file mode 100644 index 2f4671cfb21..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: This is a rare exception that is used in some old Tahoe-LAFS versions. It was later replaced - by a choice of GPL or TGPPL See https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/README?rev=bf14613b6aa1efdc13195e7578020426a9f4dfdc diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_5.RULE index fed46b5c4ad..29511a74393 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +notes: This is a rare exception that is used in some old Tahoe-LAFS versions. It was later replaced + by a choice of GPL or TGPPL See https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/README?rev=bf14613b6aa1efdc13195e7578020426a9f4dfdc +--- + offered under the GNU General Public License (v2 or later), with the added permission that, if you become obligated to release a derived work under this licence (as per section 2.b), you may delay diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_5.yml deleted file mode 100644 index 2aa7524a2d3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_gpl-generic-additional-terms_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -notes: This is a rare exception that is used in some old Tahoe-LAFS versions. It was later replaced - by a choice of GPL or TGPPL See https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/README?rev=bf14613b6aa1efdc13195e7578020426a9f4dfdc diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_guile-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_guile-exception-2.0_1.RULE index 8466864a98b..47ef682806c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_guile-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_guile-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH guile-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + ;;;; 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_guile-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_guile-exception-2.0_1.yml deleted file mode 100644 index 23a671389cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_guile-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH guile-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_iolib-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_iolib-exception-2.0_3.RULE index bd3de80baaf..8b02883b9fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_iolib-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_iolib-exception-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH iolib-exception-2.0 +is_license_notice: yes +minimum_coverage: 20 +--- + GCC 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, or (at your option) @@ -17,4 +23,4 @@ Boston, MA 02111-1307, USA. */ compiled with GCC to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why -the executable file might be covered by the GNU General Public License. */ +the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_iolib-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_iolib-exception-2.0_3.yml deleted file mode 100644 index 87f0df8503c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_iolib-exception-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH iolib-exception-2.0 -is_license_notice: yes -minimum_coverage: 20 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_1.RULE index ca8afbc40c2..b1a44799dac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +minimum_coverage: 30 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + # GNU Libtool 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 @@ -17,4 +27,4 @@ # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# 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_with_libtool-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_1.yml deleted file mode 100644 index 55cba768424..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -minimum_coverage: 30 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_10.RULE index 13361cd34ce..20d8e9c3e9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + GNU Libtool 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_10.yml deleted file mode 100644 index e8465a8c15f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_11.RULE index 40711a08a04..142743f7fed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_11.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 30 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + # GNU Libtool 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 @@ -17,4 +28,4 @@ # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from https://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# 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_with_libtool-exception-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_11.yml deleted file mode 100644 index 80aeaa54dc9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_11.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 30 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_12.RULE index 0d0cee97952..d7580c5e1f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -17,4 +25,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_12.yml deleted file mode 100644 index 607490e6ad8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_13.RULE index 57551efc8fd..5132df60bd2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -17,5 +25,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 General Public License -along with this program. If not, see . - +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_13.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_13.yml deleted file mode 100644 index 607490e6ad8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_14.RULE index 137de7242f0..5b0537f0050 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_14.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 20 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_14.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_14.yml deleted file mode 100644 index f079e6c6c39..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_14.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 20 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_15.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_15.RULE index d421ec076a6..0d856e3f223 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_15.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 97 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -20,4 +31,4 @@ You should have received a copy of the GNU General Public License along with GNU Libtool; see the file COPYING. If not, a copy can be downloaded from https://www.gnu.org/licenses/gpl.html, or obtained by writing to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +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_with_libtool-exception-2.0_15.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_15.yml deleted file mode 100644 index a533b73a83c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_15.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 97 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_16.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_16.RULE index 2ce05cdb875..1ee07fcead2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_16.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 20 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + 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 @@ -17,4 +28,4 @@ # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from https://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# 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_with_libtool-exception-2.0_16.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_16.yml deleted file mode 100644 index f079e6c6c39..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_16.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 20 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_17.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_17.RULE index 5f672aae48d..21cfdc853f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GNU Libtool 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_17.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_17.yml deleted file mode 100644 index 35f03554000..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_18.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_18.RULE index 7e85fd08271..039be8d1197 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_18.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GNU Libtool 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_18.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_18.yml deleted file mode 100644 index ffca16d28ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_18.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_19.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_19.RULE index 412351e90bb..b2b58aeff34 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + GNU Libtool 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_19.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_19.yml deleted file mode 100644 index e8465a8c15f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_2.RULE index 658fea96547..283c4b7e90b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +--- + GNU Libtool 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_2.yml deleted file mode 100644 index 4d5c2515950..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_3.RULE index 4d226ccf026..6a1e9180232 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +minimum_coverage: 20 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_3.yml deleted file mode 100644 index b1926c29815..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -minimum_coverage: 20 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_4.RULE index f5c459fe099..3d7c571fb9a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +minimum_coverage: 20 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + 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 @@ -17,4 +27,4 @@ # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# 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_with_libtool-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_4.yml deleted file mode 100644 index b1926c29815..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -minimum_coverage: 20 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_5.RULE index 98bf5af2788..72c3c34b476 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -17,5 +24,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 General Public License -along with this program. If not, see . - +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_5.yml deleted file mode 100644 index dd5dcbd872a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_6.RULE index cff9795cd87..85202bf955b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -17,4 +24,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_6.yml deleted file mode 100644 index dd5dcbd872a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_7.RULE index c2f81675ff5..e096f4107b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +minimum_coverage: 97 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -20,4 +30,4 @@ You should have received a copy of the GNU General Public License along with GNU Libtool; see the file COPYING. If not, a copy can be downloaded from http://www.gnu.org/licenses/gpl.html, or obtained by writing to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +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_with_libtool-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_7.yml deleted file mode 100644 index 37d0f0b43cc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -minimum_coverage: 97 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_8.RULE index 8dc19fbcf19..d3ceef5b39d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +--- + GNU Libtool 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_8.yml deleted file mode 100644 index 4d5c2515950..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_9.RULE index 8ad529a6324..4dfa97c46bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +--- + GNU Libtool 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_9.yml deleted file mode 100644 index 4d5c2515950..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_libtool-exception-2.0_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_1.RULE index c0a138fdb4d..349484bf541 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH linking-exception-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -14,4 +21,4 @@ this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file - might be covered by the GNU General Public License. + might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_1.yml deleted file mode 100644 index 1bcae056377..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH linking-exception-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_2.RULE index 0f21106105b..fed6e8ab67b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH linking-exception-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +notes: seen in U-Boot and the kernel +--- + GNU CC 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, or (at your option) any @@ -20,4 +27,4 @@ General Public License for more details. */ compiled with GCC to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why - the executable file might be covered by the GNU General Public License. */ + the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_2.yml deleted file mode 100644 index ec5e3deffe0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_linking-exception-2.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH linking-exception-2.0-plus -is_license_notice: yes -minimum_coverage: 80 -notes: seen in U-Boot and the kernel diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_1.RULE index b1f963ba1d4..095e4f579fe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +--- + 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 or (at your option) any later @@ -23,4 +28,4 @@ of the GNU General Public License. This exception does not invalidate any other reasons why a work based on this file might be covered by the GNU General Public License. -For information on obtaining alternative licences for , see +For information on obtaining alternative licences for , see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_1.yml deleted file mode 100644 index df162235601..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_10.RULE index a7194f339bd..f45efa9f337 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +notes: seen in U-Boot and the kernel +--- + SPDX-License-Identifier: GPL-2.0+ As a special exception, if other files instantiate templates or use @@ -9,4 +15,4 @@ these files must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_10.yml deleted file mode 100644 index 89183fb5f22..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -notes: seen in U-Boot and the kernel diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_2.RULE index 2742babf2be..155b7ff8367 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.sourceware.org/jffs2/jffs2-licence.html +--- + http://www.sourceware.org/jffs2/jffs2-licence.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_2.yml deleted file mode 100644 index 51617aca7ab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.sourceware.org/jffs2/jffs2-licence.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_3.RULE index f7a3c61d220..9cb9ea0a5ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_3.RULE @@ -1 +1,9 @@ -http://sources.redhat.com/jffs2/jffs2-licence.html +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://sources.redhat.com/jffs2/jffs2-licence.html +--- + +http://sources.redhat.com/jffs2/jffs2-licence.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_3.yml deleted file mode 100644 index bd0a32c67eb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://sources.redhat.com/jffs2/jffs2-licence.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_4.RULE index 2edee38fc39..e147b099e73 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +notes: seen in U-Boot and the kernel +--- + This file 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 or (at your option) any later @@ -21,4 +27,4 @@ these files must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_4.yml deleted file mode 100644 index 89183fb5f22..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -notes: seen in U-Boot and the kernel diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_5.RULE index 7918e2e2002..4072f9298e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_5.yml deleted file mode 100644 index 3a46f758e61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_9.RULE index e22fbc601c6..ffe2f8079c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +notes: seen in U-Boot and the kernel +--- + 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 or (at your option) any later @@ -21,4 +27,4 @@ these files must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_9.yml deleted file mode 100644 index 89183fb5f22..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -notes: seen in U-Boot and the kernel diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_1.RULE index 9ca6ba6ce1c..fc8f80f2335 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_1.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - LICENCE +notes: seen in U-Boot and the kernel. The LICENCE file is a clear gpl + exception notice +--- + For licensing information, see the file 'LICENCE' in the -jffs2 directory. +jffs2 directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_1.yml deleted file mode 100644 index 6041cb4cdc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - LICENCE -notes: seen in U-Boot and the kernel. The LICENCE file is a clear gpl + exception notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_2.RULE index bdf8f2e7046..f1b74d40f03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - LICENCE +notes: seen in U-Boot and the kernel. The LICENCE file is a clear gpl + exception notice +--- + JFFS2 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 or (at your option) any later @@ -21,4 +31,4 @@ these files must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_2.yml deleted file mode 100644 index 6041cb4cdc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - LICENCE -notes: seen in U-Boot and the kernel. The LICENCE file is a clear gpl + exception notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_3.RULE index 8ef2a62ac22..4f6282ee8ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - LICENCE +notes: seen in U-Boot and the kernel. The LICENCE file is a clear gpl + exception notice +--- + 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 or (at your option) any later @@ -21,4 +31,4 @@ these files must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_3.yml deleted file mode 100644 index 6041cb4cdc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - LICENCE -notes: seen in U-Boot and the kernel. The LICENCE file is a clear gpl + exception notice diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_4.RULE index 0afcc118023..de3a260b5b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_4.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - LICENCE +--- + JFFS2 -- Journalling Flash File System, Version 2. -For licensing information, see the file 'LICENCE' in this directory. +For licensing information, see the file 'LICENCE' in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_4.yml deleted file mode 100644 index beed122e55e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mif-exception_jjfs2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mysql-floss-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_mysql-floss-exception-2.0_1.RULE index 62f5a7f1fad..9e81be15cd7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mysql-floss-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_mysql-floss-exception-2.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus WITH mysql-floss-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.opensource.org/docs/definition.php + - https://www.gnu.org/philosophy/free-sw.html +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_mysql-floss-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_mysql-floss-exception-2.0_1.yml deleted file mode 100644 index 88a6b766cdd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_mysql-floss-exception-2.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus WITH mysql-floss-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.opensource.org/docs/definition.php - - https://www.gnu.org/philosophy/free-sw.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_1.RULE index bce2e89c0f2..1d25bf661cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH nant-exception-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_1.yml deleted file mode 100644 index aeffc3d6d2d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH nant-exception-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_2.RULE index fa957d67075..c84b24909db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH nant-exception-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_2.yml deleted file mode 100644 index 410a8a26bf8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_nant-exception-2.0-plus_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH nant-exception-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception.RULE index 5938eb335e1..fafd9849133 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0-plus WITH openjdk-exception +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception.yml deleted file mode 100644 index 90593298141..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0-plus WITH openjdk-exception -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception_1.RULE index 36da319b2a7..ab4ea400a9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus WITH openjdk-exception +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - https://www.gnu.org/copyleft/gpl.html +--- + This library 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, or (at your option) any diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception_1.yml deleted file mode 100644 index db12804b304..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openjdk-exception_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus WITH openjdk-exception -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_1.RULE index e103febc17a..c63b7178820 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GPL license. This program is free software; you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_1.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_10.RULE index 497ec27fa21..b3b41329680 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.openssl.org/ + - https://www.gnu.org/licenses/gpl.html +--- + is licensed under the GNU General Public License version 2 or later. The text of the GNU General Public License can be viewed at https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_10.yml deleted file mode 100644 index 0784de970b8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.openssl.org/ - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_11.RULE index 5df22c9f199..6e5fdf45c14 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ with OpenSSL exception This program is free software; you can redistribute it diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_11.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_12.RULE index cbe6776d54e..88811cae4e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_12.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_2.RULE index 7db1309eed0..6421d623fd5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is released under the GPL with the additional exemption that compiling, linking, and/or using OpenSSL is allowed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_2.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_3.RULE index 634ce0193e9..837de88b140 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.openssl.org/ +--- + is licensed under the GNU General Public License version 2 or later. The text of the GNU General Public License can be viewed at http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_3.yml deleted file mode 100644 index cdb06f0f97c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_4.RULE index 4ca1fb0e3a9..eec23f14fea 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ with OpenSSL exception This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_4.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_5.RULE index ec7ded518ad..bb4dff48ace 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_5.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_6.RULE index 7609d87ab2f..cf33580b590 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ with OpenSSL exception This program is free software; you can redistribute it diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_6.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_7.RULE index 19d0694c0e7..c6427bafd40 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License: GPL-2+ with OpenSSL exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_7.yml deleted file mode 100644 index 1e670cc9906..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_8.RULE index a7b504a35fd..43730c056a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ with OpenSSL exception This program is free software; you can redistribute it diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_8.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_9.RULE index 0ddbad22947..4cfb95c7116 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPL-2+ 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_9.yml deleted file mode 100644 index 053d72d02ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.RULE index 14db54fc20e..2f2be85ae70 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 AND lgpl-2.1-plus AND other-permissive +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU General Public License, version 2 or later. A few files are under the Lesser General Public License, a few other files carry the all permissive license note as found at the diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.yml deleted file mode 100644 index 7c950aab95e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 AND lgpl-2.1-plus AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_or_gsoap-1.3b_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_or_gsoap-1.3b_or_commercial-license_1.RULE index 653f810b239..6871fd76e0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_or_gsoap-1.3b_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_or_gsoap-1.3b_or_commercial-license_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 OR gsoap-1.3b OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.cs.fsu.edu/~engelen/soaplicense.html +--- + This part of the software is released under ONE of the following licenses: GPL, or the gSOAP public license, or Genivia's license for commercial use. -------------------------------------------------------------------------------- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_or_gsoap-1.3b_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_or_gsoap-1.3b_or_commercial-license_1.yml deleted file mode 100644 index e01cc645830..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_or_gsoap-1.3b_or_commercial-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0 OR gsoap-1.3b OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.cs.fsu.edu/~engelen/soaplicense.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_1.RULE index d72f3464262..15c1fe6560a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +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 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_1.yml deleted file mode 100644 index f85ecf8cd12..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_2.RULE index 2b7ac7f72b7..aa0c51760d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ with OpenSSL exception This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_2.yml deleted file mode 100644 index e2f3e8d4e76..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_3.RULE index af85ba1a82f..fc5802bea82 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_3.yml deleted file mode 100644 index e27e6524ee4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_4.RULE index 4101362cf9a..ad121ddf807 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_4.yml deleted file mode 100644 index e27e6524ee4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_5.RULE index 21f9429e764..fc27f5507b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ with OpenSSL exception This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_5.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_5.yml deleted file mode 100644 index e2f3e8d4e76..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_6.RULE index 8c889c040b2..07a06aa687a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_6.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_6.yml deleted file mode 100644 index 32e32ff1cb9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_7.RULE index 360ec6c011f..e8aedea5274 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_7.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_7.yml deleted file mode 100644 index e27e6524ee4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_8.RULE index 53bb817b7a7..11510a4fe73 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + License: GPL-2+ with OpenSSL exception This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_8.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_8.yml deleted file mode 100644 index e2f3e8d4e76..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-3.0-plus_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_sane-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_sane-exception-2.0-plus_1.RULE index 81a8a1708e2..3b5cbbaa0ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_sane-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_sane-exception-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH sane-exception-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_sane-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_sane-exception-2.0-plus_1.yml deleted file mode 100644 index f36c27e96bd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_sane-exception-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH sane-exception-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_subcommander-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_subcommander-exception-2.0-plus_1.RULE index b83d0e0647f..7963ff281b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_subcommander-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_subcommander-exception-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH subcommander-exception-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Subcommander 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 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_subcommander-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_subcommander-exception-2.0-plus_1.yml deleted file mode 100644 index 3cef64024f5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_subcommander-exception-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH subcommander-exception-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_1.RULE index 42de6a7b628..815d6b1be75 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH tex-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This texinfo.tex 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 @@ -10,4 +17,4 @@ Boston, MA 02110-1301, USA. As a special exception, when this file is read by TeX when processing a Texinfo source document, you may use the result without -restriction. (This has been our intent since Texinfo was invented.) +restriction. (This has been our intent since Texinfo was invented.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_1.yml deleted file mode 100644 index bc849cff218..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH tex-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_2.RULE index 4fb379cb6db..e70dc6805bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH tex-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This texinfo.tex file 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, or (at @@ -15,4 +22,4 @@ Boston, MA 02110-1301, USA. As a special exception, when this file is read by TeX when processing a Texinfo source document, you may use the result without -restriction. (This has been our intent since Texinfo was invented.) +restriction. (This has been our intent since Texinfo was invented.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_2.yml deleted file mode 100644 index bc849cff218..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_tex-exception_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH tex-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_u-boot-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_u-boot-exception-2.0_1.RULE index 31076054f39..1e595818f57 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_u-boot-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_u-boot-exception-2.0_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0-plus WITH u-boot-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + This library 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, or (at your option) any later @@ -21,4 +34,4 @@ heading of "derived work". Also note that the GPL below is copyrighted by the Free Software Foundation, but the instance of code that it refers to (the U-Boot source code) is copyrighted by me and others who actually wrote it. --- Wolfgang Denk +-- Wolfgang Denk \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_u-boot-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_u-boot-exception-2.0_1.yml deleted file mode 100644 index f93b947c310..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_u-boot-exception-2.0_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0-plus WITH u-boot-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_unlimited-linking-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_unlimited-linking-exception-gpl_1.RULE index 5932087d7f8..566afe9ce1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_unlimited-linking-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_unlimited-linking-exception-gpl_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH unlimited-linking-exception-gpl +is_license_notice: yes +referenced_filenames: + - COPYING +--- + this code is licensed under GPL with a special exception which grants permission to link without transferring GPL to the linked code. @@ -22,6 +29,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ - - +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_unlimited-linking-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_unlimited-linking-exception-gpl_1.yml deleted file mode 100644 index 563a04a142c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_unlimited-linking-exception-gpl_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH unlimited-linking-exception-gpl -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_1.RULE index d8211956dbc..38a11f1922d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: gpl-2.0-plus WITH upx-exception-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_copyrights: + - Copyright (c) 1996-2000 Laszlo Molnar + - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer UPX +ignorable_holders: + - Laszlo Molnar + - Markus Franz Xaver Johannes Oberhumer + - Markus Franz Xaver Johannes Oberhumer UPX +--- + PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION. @@ -97,5 +113,4 @@ ANNOTATIONS - We want to actively support manufacturers of virus scanners and similar security software. Please contact us if you would like to - incorporate parts of UPX or UCL into such a product. - + incorporate parts of UPX or UCL into such a product. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_1.yml deleted file mode 100644 index 20fd8098b84..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: gpl-2.0-plus WITH upx-exception-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_copyrights: - - Copyright (c) 1996-2000 Laszlo Molnar - - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer - - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer UPX -ignorable_holders: - - Laszlo Molnar - - Markus Franz Xaver Johannes Oberhumer - - Markus Franz Xaver Johannes Oberhumer UPX diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_2.RULE index aab542c7a21..41d4a30f06b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_2.RULE @@ -1,3 +1,24 @@ +--- +license_expression: gpl-2.0-plus WITH upx-exception-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_copyrights: + - Copyright (c) 1996-2000 Laszlo Molnar + - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer UPX +ignorable_holders: + - Laszlo Molnar + - Markus Franz Xaver Johannes Oberhumer + - Markus Franz Xaver Johannes Oberhumer UPX +ignorable_urls: + - http://upx.sourceforge.net/upx-license.html +ignorable_emails: + - markus.oberhumer@jk.uni-linz.ac.at + - ml1050@cdata.tvnet.hu +--- + Use of any of this software is governed by the terms of the license below: @@ -111,4 +132,4 @@ Linz, Austria, 25 Feb 2000 Additional License(s) -The UPX license file is at http://upx.sourceforge.net/upx-license.html. +The UPX license file is at http://upx.sourceforge.net/upx-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_2.yml deleted file mode 100644 index 738a4f57269..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_2.yml +++ /dev/null @@ -1,18 +0,0 @@ -license_expression: gpl-2.0-plus WITH upx-exception-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_copyrights: - - Copyright (c) 1996-2000 Laszlo Molnar - - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer - - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer UPX -ignorable_holders: - - Laszlo Molnar - - Markus Franz Xaver Johannes Oberhumer - - Markus Franz Xaver Johannes Oberhumer UPX -ignorable_urls: - - http://upx.sourceforge.net/upx-license.html -ignorable_emails: - - markus.oberhumer@jk.uni-linz.ac.at - - ml1050@cdata.tvnet.hu diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_3.RULE index 5bbb6064773..4aeca2156a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_3.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH upx-exception-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://upx.sourceforge.net/upx-license.html +--- + The UPX license file is at http://upx.sourceforge.net/upx-license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_3.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_3.yml deleted file mode 100644 index ddb1e99c2e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH upx-exception-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://upx.sourceforge.net/upx-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_4.RULE index 714a682d2a6..2a1f7392dfb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_4.RULE @@ -1,3 +1,22 @@ +--- +license_expression: gpl-2.0-plus WITH upx-exception-2.0-plus +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1996-2000 Laszlo Molnar + - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer + - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer UPX +ignorable_holders: + - Laszlo Molnar + - Markus Franz Xaver Johannes Oberhumer + - Markus Franz Xaver Johannes Oberhumer UPX +ignorable_urls: + - http://upx.sourceforge.net/upx-license.html +ignorable_emails: + - markus.oberhumer@jk.uni-linz.ac.at + - ml1050@cdata.tvnet.hu +--- + ABSTRACT ======== diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_4.yml b/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_4.yml deleted file mode 100644 index 032f538b938..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_upx-exception-2.0-plus_4.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: gpl-2.0-plus WITH upx-exception-2.0-plus -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1996-2000 Laszlo Molnar - - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer - - Copyright (c) 1996-2000 Markus Franz Xaver Johannes Oberhumer UPX -ignorable_holders: - - Laszlo Molnar - - Markus Franz Xaver Johannes Oberhumer - - Markus Franz Xaver Johannes Oberhumer UPX -ignorable_urls: - - http://upx.sourceforge.net/upx-license.html -ignorable_emails: - - markus.oberhumer@jk.uni-linz.ac.at - - ml1050@cdata.tvnet.hu diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_xvid_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_xvid_1.RULE index c85de658df4..aa8937ec7ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_xvid_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_xvid_1.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in FFmpeg +--- + This software is derived from the GNU GPL XviD codec \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_xvid_1.yml b/src/licensedcode/data/rules/gpl-2.0-plus_xvid_1.yml deleted file mode 100644 index 3cdfdd31b89..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-plus_xvid_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in FFmpeg diff --git a/src/licensedcode/data/rules/gpl-2.0-redhat.RULE b/src/licensedcode/data/rules/gpl-2.0-redhat.RULE index b4328294167..b97bcb3b601 100644 --- a/src/licensedcode/data/rules/gpl-2.0-redhat.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-redhat.RULE @@ -1 +1,9 @@ +--- +license_expression: 389-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text +--- + http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-redhat.yml b/src/licensedcode/data/rules/gpl-2.0-redhat.yml deleted file mode 100644 index 5090894ccbe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-redhat.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.directory.fedora.redhat.com/wiki/GPL_Exception_License_Text diff --git a/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss.RULE b/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss.RULE index f8b4a75fbd2..6fd300af297 100644 --- a/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND rrdtool-floss-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.mysql.com/company/legal/licensing/foss-exception.html +--- + GNU GPL License diff --git a/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss.yml b/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss.yml deleted file mode 100644 index e0e16356d2b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND rrdtool-floss-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.mysql.com/company/legal/licensing/foss-exception.html diff --git a/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss_1.RULE b/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss_1.RULE index 4d1e61d1860..194bc07a05c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND rrdtool-floss-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.mysql.com/company/legal/licensing/foss-exception.html +--- + GNU GPL License =============== @@ -55,4 +62,4 @@ themselves which are not derivatives of either the Program, a Derivative Work or a FLOSS Work. If the above conditions are not met, then the Program may only be copied, -modified, distributed or used under the terms and conditions of the GPL. +modified, distributed or used under the terms and conditions of the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss_1.yml b/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss_1.yml deleted file mode 100644 index e0e16356d2b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-rrdtool-floss_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND rrdtool-floss-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.mysql.com/company/legal/licensing/foss-exception.html diff --git a/src/licensedcode/data/rules/gpl-2.0-uboot_2.RULE b/src/licensedcode/data/rules/gpl-2.0-uboot_2.RULE index e21cae57e36..54d35864d5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-uboot_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-uboot_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH u-boot-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + GPL 2.0 with U-Boot exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-uboot_2.yml b/src/licensedcode/data/rules/gpl-2.0-uboot_2.yml deleted file mode 100644 index c3fe8e8dfac..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-uboot_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH u-boot-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-uboot_3.RULE b/src/licensedcode/data/rules/gpl-2.0-uboot_3.RULE index 9f93abbb798..5cf2feefe58 100644 --- a/src/licensedcode/data/rules/gpl-2.0-uboot_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-uboot_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH u-boot-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + GNU General Public License 2.0 with U-Boot exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-uboot_3.yml b/src/licensedcode/data/rules/gpl-2.0-uboot_3.yml deleted file mode 100644 index c3fe8e8dfac..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-uboot_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH u-boot-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0-uboot_4.RULE b/src/licensedcode/data/rules/gpl-2.0-uboot_4.RULE index 282c635f4a1..843e139277d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-uboot_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-uboot_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_notice: yes +--- + GPL License Exception: @@ -11,4 +16,4 @@ U-Boot, and does *not* fall under the heading of "derived work". define interfaces to U-Boot. Including these (unmodified) header files in another file is considered normal use of U-Boot, and does *not* fall under the heading of "derived work". --- Wolfgang Denk +-- Wolfgang Denk \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-uboot_4.yml b/src/licensedcode/data/rules/gpl-2.0-uboot_4.yml deleted file mode 100644 index 823c3f4051a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0-uboot_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0.RULE b/src/licensedcode/data/rules/gpl-2.0.RULE index c2f2bafaf80..e4adcf5009b 100644 --- a/src/licensedcode/data/rules/gpl-2.0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + "GPLv2": The GNU General Public License, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0.SPDX.RULE b/src/licensedcode/data/rules/gpl-2.0.SPDX.RULE index 92b5f76a10b..1c81e3b4a1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/gpl-2.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0.SPDX.yml b/src/licensedcode/data/rules/gpl-2.0.SPDX.yml deleted file mode 100644 index eb0436f6b76..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0.yml b/src/licensedcode/data/rules/gpl-2.0.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_0.RULE b/src/licensedcode/data/rules/gpl-2.0_0.RULE index 3d26d2ff718..13ea3290dc3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_0.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This code is placed under the terms of the GNUv2 General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_0.yml b/src/licensedcode/data/rules/gpl-2.0_0.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_1.RULE index 655573e2797..6977c80fe57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 80 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +--- + http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_1.yml deleted file mode 100644 index 6b3c81af2a8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 80 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0_10.RULE index 657018a1040..086efc8ec30 100644 --- a/src/licensedcode/data/rules/gpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + License is specifically licensed under GPL v2.0, and no later version. diff --git a/src/licensedcode/data/rules/gpl-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0_10.yml deleted file mode 100644 index 66b54afa1ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_100.RULE b/src/licensedcode/data/rules/gpl-2.0_100.RULE index 2e5bda7b2e4..c5a82be05ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_100.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_100.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.3 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_100.yml b/src/licensedcode/data/rules/gpl-2.0_100.yml deleted file mode 100644 index 1d5e88f19db..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_100.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.3 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1000.RULE b/src/licensedcode/data/rules/gpl-2.0_1000.RULE index 0c9bcc1b062..25a80f7ee79 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1000.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1000.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + License Unless otherwise specified, all the theme files, scripts and images are licenced under GNU General Public License version 2, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1000.yml b/src/licensedcode/data/rules/gpl-2.0_1000.yml deleted file mode 100644 index ada5c62023a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1000.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1001.RULE b/src/licensedcode/data/rules/gpl-2.0_1001.RULE index afe0e1716ce..defe52d7a2f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1001.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1001.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + Unless otherwise specified, all the theme files, scripts and images are licenced under GNU General Public License version 2, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1001.yml b/src/licensedcode/data/rules/gpl-2.0_1001.yml deleted file mode 100644 index ada5c62023a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1001.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1002.RULE b/src/licensedcode/data/rules/gpl-2.0_1002.RULE index 2e2cbed82b2..00f3cc02a51 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1002.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1002.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + licenced under GNU General Public License version 2, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1002.yml b/src/licensedcode/data/rules/gpl-2.0_1002.yml deleted file mode 100644 index ada5c62023a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1002.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1003.RULE b/src/licensedcode/data/rules/gpl-2.0_1003.RULE index 210b880e608..c3a597a694f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1003.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1003.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.gpl +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, Version 2, June 1991 as published by the Free Software Foundation. Redistribution diff --git a/src/licensedcode/data/rules/gpl-2.0_1003.yml b/src/licensedcode/data/rules/gpl-2.0_1003.yml deleted file mode 100644 index 80f8f57bcd1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1003.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.gpl diff --git a/src/licensedcode/data/rules/gpl-2.0_1004.RULE b/src/licensedcode/data/rules/gpl-2.0_1004.RULE index c90d0c092d8..8bd0802425c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1004.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1004.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1004.yml b/src/licensedcode/data/rules/gpl-2.0_1004.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1004.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1005.RULE b/src/licensedcode/data/rules/gpl-2.0_1005.RULE index 5d032a78360..09fdc759c4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1005.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1005.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU General Public License (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1005.yml b/src/licensedcode/data/rules/gpl-2.0_1005.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1005.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1006.RULE b/src/licensedcode/data/rules/gpl-2.0_1006.RULE index 7f713d4b458..20b88de8c0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1006.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1006.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GPL v2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1006.yml b/src/licensedcode/data/rules/gpl-2.0_1006.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1006.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1007.RULE b/src/licensedcode/data/rules/gpl-2.0_1007.RULE index ca5c51bf5de..374cb009f60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1007.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1007.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GPLv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1007.yml b/src/licensedcode/data/rules/gpl-2.0_1007.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1007.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1008.RULE b/src/licensedcode/data/rules/gpl-2.0_1008.RULE index 8e94f11eff5..7561c9f8df2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1008.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1008.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + 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. Threading Building Blocks is @@ -5,4 +12,4 @@ 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 Threading Building Blocks; if not, write to the - Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1008.yml b/src/licensedcode/data/rules/gpl-2.0_1008.yml deleted file mode 100644 index a31c8bbae89..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1008.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_1009.RULE b/src/licensedcode/data/rules/gpl-2.0_1009.RULE index f5fcf6c5e13..3d1bcbc79b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1009.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1009.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This package, the EXT2 filesystem utilities, is protected by the GNU General Public License. On Debian GNU systems, the complete text of the GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_1009.yml b/src/licensedcode/data/rules/gpl-2.0_1009.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1009.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_101.RULE b/src/licensedcode/data/rules/gpl-2.0_101.RULE index 5589a2f7ea1..5cdd1c5fabf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_101.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_101.RULE @@ -1,3 +1,26 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +notes: | + This is the next version of the GPL text as published by the FSF. + Let's call it the GPL 2.0.1 + This variation was published around December 2003 + http://web.archive.org/web/20031202220858/http://www.fsf.org/copyleft/gpl.html + It also the FSF move to Franklin Street and it refers to the Temple Place address + and the GNU Library General Public License at the top and GNU Lesser General + Public License at the bottom. This show some split on which LGPL version is + recommened. Either 2.0 or 2.1. + The corresponding text version at + http://web.archive.org/web/20031203144405/http://www.fsf.org/copyleft/gpl.txt + was not updated and still in force. +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -135,4 +158,4 @@ by James Hacker. signature of Ty Coon, 1 April 1989 Ty Coon, President of Vice -This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_101.yml b/src/licensedcode/data/rules/gpl-2.0_101.yml deleted file mode 100644 index 5551e374654..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_101.yml +++ /dev/null @@ -1,20 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -notes: | - This is the next version of the GPL text as published by the FSF. - Let's call it the GPL 2.0.1 - This variation was published around December 2003 - http://web.archive.org/web/20031202220858/http://www.fsf.org/copyleft/gpl.html - It also the FSF move to Franklin Street and it refers to the Temple Place address - and the GNU Library General Public License at the top and GNU Lesser General - Public License at the bottom. This show some split on which LGPL version is - recommened. Either 2.0 or 2.1. - The corresponding text version at - http://web.archive.org/web/20031203144405/http://www.fsf.org/copyleft/gpl.txt - was not updated and still in force. -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1010.RULE b/src/licensedcode/data/rules/gpl-2.0_1010.RULE index 6f333ec250f..7f017ee6e73 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1010.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1010.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: Seen in FFmpeg +--- + This software is derived from the GNU GPL XviD codec Your software distributor has to give access to its source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1010.yml b/src/licensedcode/data/rules/gpl-2.0_1010.yml deleted file mode 100644 index cebd01887fc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1010.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: Seen in FFmpeg diff --git a/src/licensedcode/data/rules/gpl-2.0_1011.RULE b/src/licensedcode/data/rules/gpl-2.0_1011.RULE index 5e6a098765a..d22e94d7a66 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1011.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1011.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: Seen in FFmpeg +--- + it is free (GPLd). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1011.yml b/src/licensedcode/data/rules/gpl-2.0_1011.yml deleted file mode 100644 index cebd01887fc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1011.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: Seen in FFmpeg diff --git a/src/licensedcode/data/rules/gpl-2.0_1012.RULE b/src/licensedcode/data/rules/gpl-2.0_1012.RULE index f12e888c91e..416fe750a92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1012.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1012.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +notes: https://github.com/drwetter/testssl.sh/blob/3b89dc6b0a41299fbf462789998e4c103f4f0210/testssl.sh#L19-L22 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/info/GPLv2.html +--- + License: GPLv2, see http://www.fsf.org/licensing/licenses/info/GPLv2.html and accompanying license "LICENSE.txt". Redistribution + modification under this license permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1012.yml b/src/licensedcode/data/rules/gpl-2.0_1012.yml deleted file mode 100644 index 46b360a7c08..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1012.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -notes: https://github.com/drwetter/testssl.sh/blob/3b89dc6b0a41299fbf462789998e4c103f4f0210/testssl.sh#L19-L22 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/info/GPLv2.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1013.RULE b/src/licensedcode/data/rules/gpl-2.0_1013.RULE index b4e055c2f96..f364a39ea70 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1013.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1013.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: See https://github.com/drwetter/testssl.sh/blob/3b89dc6b0a41299fbf462789998e4c103f4f0210/testssl.sh#L19-L22 +--- + This program is licensed under GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1013.yml b/src/licensedcode/data/rules/gpl-2.0_1013.yml deleted file mode 100644 index d2450f521ee..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1013.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: See https://github.com/drwetter/testssl.sh/blob/3b89dc6b0a41299fbf462789998e4c103f4f0210/testssl.sh#L19-L22 diff --git a/src/licensedcode/data/rules/gpl-2.0_1014.RULE b/src/licensedcode/data/rules/gpl-2.0_1014.RULE index 6bf678a395f..ebc16ea5bda 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1014.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1014.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License (GPL 2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1014.yml b/src/licensedcode/data/rules/gpl-2.0_1014.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1014.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1015.RULE b/src/licensedcode/data/rules/gpl-2.0_1015.RULE index b92c7879be4..8469829f32d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1015.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1015.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License (GNU) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1015.yml b/src/licensedcode/data/rules/gpl-2.0_1015.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1015.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1016.RULE b/src/licensedcode/data/rules/gpl-2.0_1016.RULE index 9956eae894b..83984500eed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1016.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1016.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public licence (GPL 2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1016.yml b/src/licensedcode/data/rules/gpl-2.0_1016.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1016.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1017.RULE b/src/licensedcode/data/rules/gpl-2.0_1017.RULE index b6f53628b5d..e380e083bfd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1017.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1017.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public licence (GNU) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1017.yml b/src/licensedcode/data/rules/gpl-2.0_1017.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1017.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1018.RULE b/src/licensedcode/data/rules/gpl-2.0_1018.RULE index 5286793cde7..0151eb1fc29 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1018.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1018.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.5 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1018.yml b/src/licensedcode/data/rules/gpl-2.0_1018.yml deleted file mode 100644 index 55abaf65e4a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1018.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.5 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1019.RULE b/src/licensedcode/data/rules/gpl-2.0_1019.RULE index 1d00d3b77cf..ea2f4acb2bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1019.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1019.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.5.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- +

GNU GENERAL PUBLIC LICENSE

Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1019.yml b/src/licensedcode/data/rules/gpl-2.0_1019.yml deleted file mode 100644 index 125e17019e0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1019.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.5.html -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_102.RULE b/src/licensedcode/data/rules/gpl-2.0_102.RULE index 12f75911a2f..8ee24eaa63d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_102.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_102.RULE @@ -1,3 +1,27 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +notes: | + This is the next version of the GPL text as published by the FSF. + Let's call it the GPL 2.0.2 + This variation was published around about the time of the FSF office + move on May 1, 2005 from Temple Place to Franklin Street + http://web.archive.org/web/20050507090312/http://www.fsf.org/licensing/licenses/gpl.html + In this HTML version, it refers to the Franklin St address and uses the + GNU Library General Public License at the top and GNU Lesser General Public License + at the bottom with still a split opinion on which one to use of the LGPL 2 or 2.1 + This is mostly about an address change. + The corresponding text version at + http://web.archive.org/web/20050507090312/http://www.fsf.org/copyleft/gpl.txt + was not updated for a few days. +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -134,4 +158,4 @@ by James Hacker. signature of Ty Coon, 1 April 1989 Ty Coon, President of Vice -This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. \ No newline at end of file +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_102.yml b/src/licensedcode/data/rules/gpl-2.0_102.yml deleted file mode 100644 index 9e649ed73a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_102.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -notes: | - This is the next version of the GPL text as published by the FSF. - Let's call it the GPL 2.0.2 - This variation was published around about the time of the FSF office - move on May 1, 2005 from Temple Place to Franklin Street - http://web.archive.org/web/20050507090312/http://www.fsf.org/licensing/licenses/gpl.html - In this HTML version, it refers to the Franklin St address and uses the - GNU Library General Public License at the top and GNU Lesser General Public License - at the bottom with still a split opinion on which one to use of the LGPL 2 or 2.1 - This is mostly about an address change. - The corresponding text version at - http://web.archive.org/web/20050507090312/http://www.fsf.org/copyleft/gpl.txt - was not updated for a few days. -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1020.RULE b/src/licensedcode/data/rules/gpl-2.0_1020.RULE index 7927b392339..e187d8d9580 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1020.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1020.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.6.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- +

GNU GENERAL PUBLIC LICENSE

Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1020.yml b/src/licensedcode/data/rules/gpl-2.0_1020.yml deleted file mode 100644 index fd8d51589ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1020.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.6.html -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1021.RULE b/src/licensedcode/data/rules/gpl-2.0_1021.RULE index 17a4f7ecf9c..3bfb862eca0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1021.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1021.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1021.yml b/src/licensedcode/data/rules/gpl-2.0_1021.yml deleted file mode 100644 index 0491e8e19fd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1021.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1022.RULE b/src/licensedcode/data/rules/gpl-2.0_1022.RULE index 62ddc6848e5..8e45719b702 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1022.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1022.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.2 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1022.yml b/src/licensedcode/data/rules/gpl-2.0_1022.yml deleted file mode 100644 index 400796bf981..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1022.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.2 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1023.RULE b/src/licensedcode/data/rules/gpl-2.0_1023.RULE index e100adc624f..77388a0da2d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1023.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1023.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.4 +--- + The Linux Kernel is provided under: SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note diff --git a/src/licensedcode/data/rules/gpl-2.0_1023.yml b/src/licensedcode/data/rules/gpl-2.0_1023.yml deleted file mode 100644 index 9553b6598f8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1023.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.4 diff --git a/src/licensedcode/data/rules/gpl-2.0_1024.RULE b/src/licensedcode/data/rules/gpl-2.0_1024.RULE index 9b02e3a8202..a924b093acb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1024.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1024.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 +--- + Valid-License-Identifier: GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1024.yml b/src/licensedcode/data/rules/gpl-2.0_1024.yml deleted file mode 100644 index 5812320fbbd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1024.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 diff --git a/src/licensedcode/data/rules/gpl-2.0_1025.RULE b/src/licensedcode/data/rules/gpl-2.0_1025.RULE index b787e8f1609..507ec69cd9c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1025.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1025.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 +--- + Valid-License-Identifier: GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1025.yml b/src/licensedcode/data/rules/gpl-2.0_1025.yml deleted file mode 100644 index 5812320fbbd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1025.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 diff --git a/src/licensedcode/data/rules/gpl-2.0_1026.RULE b/src/licensedcode/data/rules/gpl-2.0_1026.RULE index c81836f3fd2..8c0a00d7158 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1026.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1026.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 +--- + GNU General Public License (GPL) version 2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1026.yml b/src/licensedcode/data/rules/gpl-2.0_1026.yml deleted file mode 100644 index 5812320fbbd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1026.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 diff --git a/src/licensedcode/data/rules/gpl-2.0_1027.RULE b/src/licensedcode/data/rules/gpl-2.0_1027.RULE index bd3aa77bfa0..bf501155d0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1027.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1027.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0.html +--- + SPDX-URL: https://spdx.org/licenses/GPL-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1027.yml b/src/licensedcode/data/rules/gpl-2.0_1027.yml deleted file mode 100644 index 7b50dd05ef9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1027.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1028.RULE b/src/licensedcode/data/rules/gpl-2.0_1028.RULE index 379d272ec3f..c5ad68a2ca0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1028.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1028.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License: [GNU GPLv2](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1028.yml b/src/licensedcode/data/rules/gpl-2.0_1028.yml deleted file mode 100644 index 6cef25c8879..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1028.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_1029.RULE b/src/licensedcode/data/rules/gpl-2.0_1029.RULE index d5c31082a06..fb21e296517 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1029.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1029.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The standard GPL V2 text: diff --git a/src/licensedcode/data/rules/gpl-2.0_1029.yml b/src/licensedcode/data/rules/gpl-2.0_1029.yml deleted file mode 100644 index f21c96db573..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1029.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_103.RULE b/src/licensedcode/data/rules/gpl-2.0_103.RULE index ea6aa0dfab2..39b340035b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_103.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_103.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.4 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_103.yml b/src/licensedcode/data/rules/gpl-2.0_103.yml deleted file mode 100644 index 72a54f9916a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_103.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.4 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1030.RULE b/src/licensedcode/data/rules/gpl-2.0_1030.RULE index aa34703120c..bdec402cf6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1030.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1030.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - COPYING +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1030.yml b/src/licensedcode/data/rules/gpl-2.0_1030.yml deleted file mode 100644 index 107cffc3474..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1030.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1031.RULE b/src/licensedcode/data/rules/gpl-2.0_1031.RULE index 17383ad8ae3..b65d880098a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1031.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1031.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +notes: incorrect reference to GPL-1.0 text +--- + This package 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1031.yml b/src/licensedcode/data/rules/gpl-2.0_1031.yml deleted file mode 100644 index ca3a148d54f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1031.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-1 -notes: incorrect reference to GPL-1.0 text diff --git a/src/licensedcode/data/rules/gpl-2.0_1032.RULE b/src/licensedcode/data/rules/gpl-2.0_1032.RULE index c6af4ea47c6..5572eeed2a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1032.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1032.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + This package 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1032.yml b/src/licensedcode/data/rules/gpl-2.0_1032.yml deleted file mode 100644 index 6a267cfc0a1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1032.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_1033.RULE b/src/licensedcode/data/rules/gpl-2.0_1033.RULE index e67cf832cae..7e1da07e322 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1033.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1033.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1033.yml b/src/licensedcode/data/rules/gpl-2.0_1033.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1033.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1034.RULE b/src/licensedcode/data/rules/gpl-2.0_1034.RULE index 776d69507ea..cc11eebae55 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1034.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1034.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: problemtic injection in the main GPL text at https://github.com/audacious-media-player/audacious/blob/ff6887fcbe5b525ac3824a8af310b555c45695fa/COPYING#L237 +--- + For the record, Audacious should only be considered licensed under version 2 of the license ONLY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1034.yml b/src/licensedcode/data/rules/gpl-2.0_1034.yml deleted file mode 100644 index 94b0f569c19..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1034.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: problemtic injection in the main GPL text at https://github.com/audacious-media-player/audacious/blob/ff6887fcbe5b525ac3824a8af310b555c45695fa/COPYING#L237 diff --git a/src/licensedcode/data/rules/gpl-2.0_1035.RULE b/src/licensedcode/data/rules/gpl-2.0_1035.RULE index 1d5776324fa..7212e1fa2f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1035.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1035.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 99 +notes: The text contains some likely mistaken search and replace. Seen in https://raw.githubusercontent.com/narfight/clanlite/d946c1cb7632e7a1eab2b06de20ffbf81594f3f5/DOCS/COPYING +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1035.yml b/src/licensedcode/data/rules/gpl-2.0_1035.yml deleted file mode 100644 index c57f8ed81ad..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1035.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 99 -notes: The text contains some likely mistaken search and replace. Seen in https://raw.githubusercontent.com/narfight/clanlite/d946c1cb7632e7a1eab2b06de20ffbf81594f3f5/DOCS/COPYING -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1036.RULE b/src/licensedcode/data/rules/gpl-2.0_1036.RULE index 41fd178b5a8..61fbe2d094a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1036.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1036.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - COPYING +--- + License: This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_1036.yml b/src/licensedcode/data/rules/gpl-2.0_1036.yml deleted file mode 100644 index 107cffc3474..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1036.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1037.RULE b/src/licensedcode/data/rules/gpl-2.0_1037.RULE index 2fd14dffab3..12ecf8c99d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1037.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1037.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - 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; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_1037.yml b/src/licensedcode/data/rules/gpl-2.0_1037.yml deleted file mode 100644 index 107cffc3474..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1037.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1038.RULE b/src/licensedcode/data/rules/gpl-2.0_1038.RULE index b03f32e9c38..57b8d0786ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1038.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1038.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: the bottom part of the GPL +--- + How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest diff --git a/src/licensedcode/data/rules/gpl-2.0_1038.yml b/src/licensedcode/data/rules/gpl-2.0_1038.yml deleted file mode 100644 index 4020cf4441b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1038.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: the bottom part of the GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_1039.RULE b/src/licensedcode/data/rules/gpl-2.0_1039.RULE index ed9bf70e764..ae645050d02 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1039.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1039.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING-2.0 +--- + ftp://ftp.gnu.org/pub/gnu/COPYING-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1039.yml b/src/licensedcode/data/rules/gpl-2.0_1039.yml deleted file mode 100644 index cd8f51ae745..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1039.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_104.RULE b/src/licensedcode/data/rules/gpl-2.0_104.RULE index 322c0e69d17..a7bd08ba45e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_104.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_104.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + software is licensed pursuant to the GNU General Public License version 2 (GPLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_104.yml b/src/licensedcode/data/rules/gpl-2.0_104.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1040.RULE b/src/licensedcode/data/rules/gpl-2.0_1040.RULE index 55825090255..9974b763a03 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1040.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1040.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of version 2 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1040.yml b/src/licensedcode/data/rules/gpl-2.0_1040.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1040.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1041.RULE b/src/licensedcode/data/rules/gpl-2.0_1041.RULE index 06139b0958b..e8e34a9a10a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1041.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1041.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPL-2 On Debian GNU/Linux systems, the complete text of version 2 of the GNU General Public License can be found in diff --git a/src/licensedcode/data/rules/gpl-2.0_1041.yml b/src/licensedcode/data/rules/gpl-2.0_1041.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1041.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1042.RULE b/src/licensedcode/data/rules/gpl-2.0_1042.RULE index 8c7255fd0a9..049fb9feb26 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1042.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1042.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + released specifically under the GPLv2, and not any later version of the license, unless explicitly otherwise stated \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1042.yml b/src/licensedcode/data/rules/gpl-2.0_1042.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1042.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1043.RULE b/src/licensedcode/data/rules/gpl-2.0_1043.RULE index 312f6b97b08..0acce42ed67 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1043.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1043.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + covered by the GPLv2, unless explicitly otherwise stated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1043.yml b/src/licensedcode/data/rules/gpl-2.0_1043.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1043.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1044.RULE b/src/licensedcode/data/rules/gpl-2.0_1044.RULE index c8a3f839fea..9b5f4055e43 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1044.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1044.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licensed under the {{GNU General Public License v2}} (the "License"); you may not use this file except in compliance with the License. The terms of the License are located in the COPYING file of this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1044.yml b/src/licensedcode/data/rules/gpl-2.0_1044.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1044.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1045.RULE b/src/licensedcode/data/rules/gpl-2.0_1045.RULE index 7498c055ac1..f0a3e152c3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1045.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1045.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1045.yml b/src/licensedcode/data/rules/gpl-2.0_1045.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1045.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1046.RULE b/src/licensedcode/data/rules/gpl-2.0_1046.RULE index 17714f621c9..6c260f6e123 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1046.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1046.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licensed under the GNU General Public License v2 (the "License"); you may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1046.yml b/src/licensedcode/data/rules/gpl-2.0_1046.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1046.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1047.RULE b/src/licensedcode/data/rules/gpl-2.0_1047.RULE index f6f877f3bd7..b573cbdd4a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1047.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1047.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +--- + LICENSE INFORMATION: GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1047.yml b/src/licensedcode/data/rules/gpl-2.0_1047.yml deleted file mode 100644 index c0ee1b5eea4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1047.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_1048.RULE b/src/licensedcode/data/rules/gpl-2.0_1048.RULE index 8c143a53ab9..c23361e2ef6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1048.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1048.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL v2.0 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL v2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1048.yml b/src/licensedcode/data/rules/gpl-2.0_1048.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1048.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1049.RULE b/src/licensedcode/data/rules/gpl-2.0_1049.RULE index a2dc21965cc..0be546aaa8e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1049.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1049.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL v2.0 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1049.yml b/src/licensedcode/data/rules/gpl-2.0_1049.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1049.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_105.RULE b/src/licensedcode/data/rules/gpl-2.0_105.RULE index 9a3a4ffeef7..081d3ad6907 100644 --- a/src/licensedcode/data/rules/gpl-2.0_105.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_105.RULE @@ -1 +1,7 @@ - * Licensed under GPL version 2 only. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + * Licensed under GPL version 2 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_105.yml b/src/licensedcode/data/rules/gpl-2.0_105.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1050.RULE b/src/licensedcode/data/rules/gpl-2.0_1050.RULE index 6791a2d278b..5aea3684745 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1050.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1050.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GNU General Public License, V2.0 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1050.yml b/src/licensedcode/data/rules/gpl-2.0_1050.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1050.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1051.RULE b/src/licensedcode/data/rules/gpl-2.0_1051.RULE index 5bdccb471d3..486361939a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1051.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1051.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + THE TEXT OF THE GPL v2 LICENSE IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1051.yml b/src/licensedcode/data/rules/gpl-2.0_1051.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1051.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1052.RULE b/src/licensedcode/data/rules/gpl-2.0_1052.RULE index 84b44595293..b4da1d6fb45 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1052.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1052.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + 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; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1052.yml b/src/licensedcode/data/rules/gpl-2.0_1052.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1052.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1053.RULE b/src/licensedcode/data/rules/gpl-2.0_1053.RULE index 1c53e9b61a3..570653b3e34 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1053.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1053.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + Use of any of this software is governed by the terms of the license below: GNU GENERAL PUBLIC LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_1053.yml b/src/licensedcode/data/rules/gpl-2.0_1053.yml deleted file mode 100644 index 415ae45d71f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1053.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1054.RULE b/src/licensedcode/data/rules/gpl-2.0_1054.RULE index 54268315a6c..d3185a1957f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1054.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1054.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1054.yml b/src/licensedcode/data/rules/gpl-2.0_1054.yml deleted file mode 100644 index 21970449a66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1054.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1055.RULE b/src/licensedcode/data/rules/gpl-2.0_1055.RULE index e4facd0f903..60b9fd8f60c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1055.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1055.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0 THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1055.yml b/src/licensedcode/data/rules/gpl-2.0_1055.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1055.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1056.RULE b/src/licensedcode/data/rules/gpl-2.0_1056.RULE index c78d36fbf95..6a2e16a3a1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1056.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1056.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0 THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1056.yml b/src/licensedcode/data/rules/gpl-2.0_1056.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1056.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1057.RULE b/src/licensedcode/data/rules/gpl-2.0_1057.RULE index 2ab0b47df4a..b6d17f9dc47 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1057.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1057.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1057.yml b/src/licensedcode/data/rules/gpl-2.0_1057.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1057.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1058.RULE b/src/licensedcode/data/rules/gpl-2.0_1058.RULE index 9cde8a50718..96ff8580155 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1058.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1058.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1058.yml b/src/licensedcode/data/rules/gpl-2.0_1058.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1058.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1059.RULE b/src/licensedcode/data/rules/gpl-2.0_1059.RULE index a160d33de13..1e45b74df20 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1059.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1059.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1059.yml b/src/licensedcode/data/rules/gpl-2.0_1059.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1059.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_106.RULE b/src/licensedcode/data/rules/gpl-2.0_106.RULE index 9fc3ccf2eb8..fca7a44114e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_106.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_106.RULE @@ -1 +1,7 @@ -# Licensed under the terms of the GNU GPL License version 2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +# Licensed under the terms of the GNU GPL License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_106.yml b/src/licensedcode/data/rules/gpl-2.0_106.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1060.RULE b/src/licensedcode/data/rules/gpl-2.0_1060.RULE index 14194608874..ed91ff92761 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1060.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1060.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1060.yml b/src/licensedcode/data/rules/gpl-2.0_1060.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1060.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1061.RULE b/src/licensedcode/data/rules/gpl-2.0_1061.RULE index 590a740f60e..53aa36de3e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1061.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1061.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is licensed under GPL v 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1061.yml b/src/licensedcode/data/rules/gpl-2.0_1061.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1061.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1062.RULE b/src/licensedcode/data/rules/gpl-2.0_1062.RULE index 843c52e6702..6b3103c5f9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1062.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1062.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is licensed under GPL v 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1062.yml b/src/licensedcode/data/rules/gpl-2.0_1062.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1062.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1063.RULE b/src/licensedcode/data/rules/gpl-2.0_1063.RULE index d014af3d973..e97db960643 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1063.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1063.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is licensed under GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1063.yml b/src/licensedcode/data/rules/gpl-2.0_1063.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1063.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1064.RULE b/src/licensedcode/data/rules/gpl-2.0_1064.RULE index c66bb63fe9c..f49a20e051f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1064.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1064.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1064.yml b/src/licensedcode/data/rules/gpl-2.0_1064.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1064.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1065.RULE b/src/licensedcode/data/rules/gpl-2.0_1065.RULE index ed6eb22140c..512d13d4398 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1065.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1065.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1065.yml b/src/licensedcode/data/rules/gpl-2.0_1065.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1065.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1066.RULE b/src/licensedcode/data/rules/gpl-2.0_1066.RULE index 7b13aa14b80..7ebd3e722a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1066.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1066.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1066.yml b/src/licensedcode/data/rules/gpl-2.0_1066.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1066.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1067.RULE b/src/licensedcode/data/rules/gpl-2.0_1067.RULE index 3d2b391a37e..18a3252d775 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1067.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1067.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the terms GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1067.yml b/src/licensedcode/data/rules/gpl-2.0_1067.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1067.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1068.RULE b/src/licensedcode/data/rules/gpl-2.0_1068.RULE index 47fe899da5f..c5f877f8d69 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1068.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1068.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1068.yml b/src/licensedcode/data/rules/gpl-2.0_1068.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1068.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1069.RULE b/src/licensedcode/data/rules/gpl-2.0_1069.RULE index 09d266dbb00..313bc62e7ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1069.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1069.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + based on GNU/GPL Ghostscript \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1069.yml b/src/licensedcode/data/rules/gpl-2.0_1069.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1069.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_107.RULE b/src/licensedcode/data/rules/gpl-2.0_107.RULE index f6e942d2182..642ab192d60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_107.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_107.RULE @@ -1,3 +1,19 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: | + This is the next version of the GPL text as published by the FSF. + Let's call it the GPL 2.0.1 + This variation was published around December 2003 + http://web.archive.org/web/20031202220858/http://www.fsf.org/copyleft/gpl.html + It also the FSF move to Franklin Street and it refers to the Temple Place address + and theGNU Library General Public License at the top and GNU Lesser General + Public License atthe bottom. This show some split on which LGPL version is + recommened. Either 2.0 or 2.1. + The corresponding text version athttp://web.archive.org/web/20031203144405/http://www.fsf.org/copyleft/gpl.txt + was not updated and still in force. +--- + 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; version 2 @@ -10,4 +26,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_107.yml b/src/licensedcode/data/rules/gpl-2.0_107.yml deleted file mode 100644 index 0f8e968e286..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_107.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: | - This is the next version of the GPL text as published by the FSF. - Let's call it the GPL 2.0.1 - This variation was published around December 2003 - http://web.archive.org/web/20031202220858/http://www.fsf.org/copyleft/gpl.html - It also the FSF move to Franklin Street and it refers to the Temple Place address - and theGNU Library General Public License at the top and GNU Lesser General - Public License atthe bottom. This show some split on which LGPL version is - recommened. Either 2.0 or 2.1. - The corresponding text version athttp://web.archive.org/web/20031203144405/http://www.fsf.org/copyleft/gpl.txt - was not updated and still in force. diff --git a/src/licensedcode/data/rules/gpl-2.0_1070.RULE b/src/licensedcode/data/rules/gpl-2.0_1070.RULE index 8f436c83b32..1d076116df3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1070.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1070.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + THE GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1070.yml b/src/licensedcode/data/rules/gpl-2.0_1070.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1070.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1071.RULE b/src/licensedcode/data/rules/gpl-2.0_1071.RULE index a69073a4589..73df23558bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1071.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1071.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1071.yml b/src/licensedcode/data/rules/gpl-2.0_1071.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1071.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1072.RULE b/src/licensedcode/data/rules/gpl-2.0_1072.RULE index fe0973cafed..271fe41fce6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1072.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1072.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1072.yml b/src/licensedcode/data/rules/gpl-2.0_1072.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1072.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1073.RULE b/src/licensedcode/data/rules/gpl-2.0_1073.RULE index 711a6d80d00..572e86dd212 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1073.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1073.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1073.yml b/src/licensedcode/data/rules/gpl-2.0_1073.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1073.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1074.RULE b/src/licensedcode/data/rules/gpl-2.0_1074.RULE index 305697cc0e5..034bafffc42 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1074.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1074.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License : GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1074.yml b/src/licensedcode/data/rules/gpl-2.0_1074.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1074.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1075.RULE b/src/licensedcode/data/rules/gpl-2.0_1075.RULE index a63c02540b3..7c8e79dc214 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1075.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1075.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1075.yml b/src/licensedcode/data/rules/gpl-2.0_1075.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1075.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1076.RULE b/src/licensedcode/data/rules/gpl-2.0_1076.RULE index 946406df102..e12a8583bb9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1076.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1076.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1076.yml b/src/licensedcode/data/rules/gpl-2.0_1076.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1076.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1077.RULE b/src/licensedcode/data/rules/gpl-2.0_1077.RULE index 69d1fca16e4..005b26270b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1077.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1077.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + FULL TEXT OF THE GPL 2.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1077.yml b/src/licensedcode/data/rules/gpl-2.0_1077.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1077.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1078.RULE b/src/licensedcode/data/rules/gpl-2.0_1078.RULE index 69924402723..a437c4a1c7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1078.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1078.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE GPL 2.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1078.yml b/src/licensedcode/data/rules/gpl-2.0_1078.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1078.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1079.RULE b/src/licensedcode/data/rules/gpl-2.0_1079.RULE index b70f6de3c62..f8d219c874f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1079.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1079.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 2.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1079.yml b/src/licensedcode/data/rules/gpl-2.0_1079.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1079.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_108.RULE b/src/licensedcode/data/rules/gpl-2.0_108.RULE index 60cf5bd9c07..77226dc5d0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_108.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_108.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This documentation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2. @@ -6,4 +13,4 @@ useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For more details see the file COPYING in the source - distribution of Linux. + distribution of Linux. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_108.yml b/src/licensedcode/data/rules/gpl-2.0_108.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_108.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1080.RULE b/src/licensedcode/data/rules/gpl-2.0_1080.RULE index e69c47ee0a9..bc3b89d02b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1080.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1080.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1080.yml b/src/licensedcode/data/rules/gpl-2.0_1080.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1080.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1081.RULE b/src/licensedcode/data/rules/gpl-2.0_1081.RULE index a1602b39e6e..17c202deb16 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1081.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1081.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1081.yml b/src/licensedcode/data/rules/gpl-2.0_1081.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1081.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1082.RULE b/src/licensedcode/data/rules/gpl-2.0_1082.RULE index c67177b6d18..ffdf842d207 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1082.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1082.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1082.yml b/src/licensedcode/data/rules/gpl-2.0_1082.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1082.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1083.RULE b/src/licensedcode/data/rules/gpl-2.0_1083.RULE index d7dea49f7fd..fd8dcbce3a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1083.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1083.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1083.yml b/src/licensedcode/data/rules/gpl-2.0_1083.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1083.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1084.RULE b/src/licensedcode/data/rules/gpl-2.0_1084.RULE index c0228719f71..6fc02cc27cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1084.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1084.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1084.yml b/src/licensedcode/data/rules/gpl-2.0_1084.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1084.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1085.RULE b/src/licensedcode/data/rules/gpl-2.0_1085.RULE index efb140b4bb1..c977431afa8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1085.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1085.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1085.yml b/src/licensedcode/data/rules/gpl-2.0_1085.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1085.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1086.RULE b/src/licensedcode/data/rules/gpl-2.0_1086.RULE index 62243e73c65..83f9c4c3d0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1086.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1086.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1086.yml b/src/licensedcode/data/rules/gpl-2.0_1086.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1086.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1087.RULE b/src/licensedcode/data/rules/gpl-2.0_1087.RULE index 8c28a55b051..a0793797546 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1087.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1087.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL-2.0 - GNU General Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1087.yml b/src/licensedcode/data/rules/gpl-2.0_1087.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1087.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1088.RULE b/src/licensedcode/data/rules/gpl-2.0_1088.RULE index ca05c164454..e89f4adf681 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1088.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1088.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - gplv2.lic +--- + gplv2.lic \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1088.yml b/src/licensedcode/data/rules/gpl-2.0_1088.yml deleted file mode 100644 index fbde66dbf9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1088.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - gplv2.lic diff --git a/src/licensedcode/data/rules/gpl-2.0_1089.RULE b/src/licensedcode/data/rules/gpl-2.0_1089.RULE index 2f8f84f503b..f1143d1a1d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1089.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1089.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1089.yml b/src/licensedcode/data/rules/gpl-2.0_1089.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1089.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_109.RULE b/src/licensedcode/data/rules/gpl-2.0_109.RULE index 2478c236d9b..b5303691b1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_109.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_109.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: cpufrequtils is gpl-2.0 only +--- + # This file is distributed under the same license as the cpufrequtils package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_109.yml b/src/licensedcode/data/rules/gpl-2.0_109.yml deleted file mode 100644 index 6d46e22d7b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: cpufrequtils is gpl-2.0 only diff --git a/src/licensedcode/data/rules/gpl-2.0_1090.RULE b/src/licensedcode/data/rules/gpl-2.0_1090.RULE index eb78decbd0b..40e296e9192 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1090.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1090.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl-2.0.html +--- + http://gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1090.yml b/src/licensedcode/data/rules/gpl-2.0_1090.yml deleted file mode 100644 index 1e49de410d5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1090.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1091.RULE b/src/licensedcode/data/rules/gpl-2.0_1091.RULE index 5f644e001e9..0f97c01aeea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1091.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1091.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl-2.0.html +--- + https://gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1091.yml b/src/licensedcode/data/rules/gpl-2.0_1091.yml deleted file mode 100644 index 7363d245057..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1091.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1092.RULE b/src/licensedcode/data/rules/gpl-2.0_1092.RULE index 27e9c64236a..3cad9648e44 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1092.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1092.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the complete text of the GNU General Public License can be found in '/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1092.yml b/src/licensedcode/data/rules/gpl-2.0_1092.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1092.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1093.RULE b/src/licensedcode/data/rules/gpl-2.0_1093.RULE index b2187299864..dd3020a8f0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1093.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1093.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: This is a choice notice +--- + * Alternatively, you may choose to be licensed under the terms of the * GNU General Public License ("GPL") version 2 as published by the Free * Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1093.yml b/src/licensedcode/data/rules/gpl-2.0_1093.yml deleted file mode 100644 index 64d96e47c19..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1093.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: This is a choice notice diff --git a/src/licensedcode/data/rules/gpl-2.0_1094.RULE b/src/licensedcode/data/rules/gpl-2.0_1094.RULE index 4f3f781377f..8d2b51dc419 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1094.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1094.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + this file can be distributed under the terms of the GNU General Public License V2 as published by the Free Software Foundation and can be found at http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1094.yml b/src/licensedcode/data/rules/gpl-2.0_1094.yml deleted file mode 100644 index dd792fa1b37..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1094.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1095.RULE b/src/licensedcode/data/rules/gpl-2.0_1095.RULE index bc9b7400a9d..b3b480d6930 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1095.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1095.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: Seen in FreeBSD +--- + The register values have been taken from GPLed header file published by Creative. The comments have been stripped to avoid GPL pollution in kernel. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1095.yml b/src/licensedcode/data/rules/gpl-2.0_1095.yml deleted file mode 100644 index c7adfdb27d1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1095.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/gpl-2.0_1096.RULE b/src/licensedcode/data/rules/gpl-2.0_1096.RULE index 262eb6d93b5..52e5e4bbc29 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1096.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1096.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + The library 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1096.yml b/src/licensedcode/data/rules/gpl-2.0_1096.yml deleted file mode 100644 index 66b54afa1ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1096.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1097.RULE b/src/licensedcode/data/rules/gpl-2.0_1097.RULE index 9223e8ad9bb..894f81c03a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1097.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1097.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + The library 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1097.yml b/src/licensedcode/data/rules/gpl-2.0_1097.yml deleted file mode 100644 index c799008f6e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1097.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1098.RULE b/src/licensedcode/data/rules/gpl-2.0_1098.RULE index b6457c80b0b..4a6fdedc7a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1098.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1098.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1098.yml b/src/licensedcode/data/rules/gpl-2.0_1098.yml deleted file mode 100644 index 66b54afa1ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1098.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1099.RULE b/src/licensedcode/data/rules/gpl-2.0_1099.RULE index 365881966ae..90a267c02fe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1099.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1099.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + This library 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1099.yml b/src/licensedcode/data/rules/gpl-2.0_1099.yml deleted file mode 100644 index c799008f6e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1099.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0_11.RULE index e08515e1574..693e4fe4385 100644 --- a/src/licensedcode/data/rules/gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + You should have received a copy of the GNU General Public License with the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL-2; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth diff --git a/src/licensedcode/data/rules/gpl-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0_11.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_110.RULE b/src/licensedcode/data/rules/gpl-2.0_110.RULE index 36c390be78c..6769f208c48 100644 --- a/src/licensedcode/data/rules/gpl-2.0_110.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_110.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + This documentation is Free Software licensed under the terms of the - GPL version 2. + GPL version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_110.yml b/src/licensedcode/data/rules/gpl-2.0_110.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1100.RULE b/src/licensedcode/data/rules/gpl-2.0_1100.RULE index e5daa944f66..f4bcb6adade 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1100.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1100.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +minimum_coverage: 95 +referenced_filenames: + - COPYING +notes: this project is using a gpl-2.0 COPYING. It is not clear if the v2 or v2 or later applies. + See shared-mime-info +--- + You may redistribute copies of update-mime-database under the terms of the GNU General Public License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1100.yml b/src/licensedcode/data/rules/gpl-2.0_1100.yml deleted file mode 100644 index 8f68499e529..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1100.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 -minimum_coverage: 95 -referenced_filenames: - - COPYING -notes: this project is using a gpl-2.0 COPYING. It is not clear if the v2 or v2 or later applies. - See shared-mime-info diff --git a/src/licensedcode/data/rules/gpl-2.0_1101.RULE b/src/licensedcode/data/rules/gpl-2.0_1101.RULE index 00b022aac82..ba96f7be38f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1101.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1101.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +minimum_coverage: 95 +referenced_filenames: + - COPYING +notes: this project is using a gpl-2.0 COPYING. It is not clear if the v2 or v2 or later applies. + See shared-mime-info +--- + You may redistribute copies of under the terms of the GNU General Public License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1101.yml b/src/licensedcode/data/rules/gpl-2.0_1101.yml deleted file mode 100644 index 8f68499e529..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1101.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 -minimum_coverage: 95 -referenced_filenames: - - COPYING -notes: this project is using a gpl-2.0 COPYING. It is not clear if the v2 or v2 or later applies. - See shared-mime-info diff --git a/src/licensedcode/data/rules/gpl-2.0_1102.RULE b/src/licensedcode/data/rules/gpl-2.0_1102.RULE index 01a56094bd3..41aed0e5d5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1102.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1102.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +minimum_coverage: 95 +referenced_filenames: + - COPYING +notes: this project is using a gpl-2.0 COPYING. It is not clear if the v2 or v2 or later applies +--- + The freedesktop.org shared MIME database (this file) was created by merging several existing MIME databases (all released under the GPL). diff --git a/src/licensedcode/data/rules/gpl-2.0_1102.yml b/src/licensedcode/data/rules/gpl-2.0_1102.yml deleted file mode 100644 index 43707e0bf9b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1102.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 -minimum_coverage: 95 -referenced_filenames: - - COPYING -notes: this project is using a gpl-2.0 COPYING. It is not clear if the v2 or v2 or later applies diff --git a/src/licensedcode/data/rules/gpl-2.0_1103.RULE b/src/licensedcode/data/rules/gpl-2.0_1103.RULE index abd4d805710..d2459dec506 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1103.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1103.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + license="the GNU General Public License version 2", \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1103.yml b/src/licensedcode/data/rules/gpl-2.0_1103.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1104.RULE b/src/licensedcode/data/rules/gpl-2.0_1104.RULE index c1598c613a6..b9a15b8df70 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1104.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1104.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + licensed under the GNU General Public License, version 2, June 1991. The full text of the GNU General Public License, Version 2, June 1991, is available at: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1104.yml b/src/licensedcode/data/rules/gpl-2.0_1104.yml deleted file mode 100644 index c6857503705..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1104.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1105.RULE b/src/licensedcode/data/rules/gpl-2.0_1105.RULE index e629422bb38..020198b0790 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1105.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1105.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under version 2 of the GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1105.yml b/src/licensedcode/data/rules/gpl-2.0_1105.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1106.RULE b/src/licensedcode/data/rules/gpl-2.0_1106.RULE index 1030f488c1b..fba520be2e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1106.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1106.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1106.yml b/src/licensedcode/data/rules/gpl-2.0_1106.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1107.RULE b/src/licensedcode/data/rules/gpl-2.0_1107.RULE index ba0a8e696c8..fc78591b1c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1107.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1107.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1107.yml b/src/licensedcode/data/rules/gpl-2.0_1107.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1108.RULE b/src/licensedcode/data/rules/gpl-2.0_1108.RULE index f405d9b4395..2f9211e088c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1108.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1108.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE GPL 2.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1108.yml b/src/licensedcode/data/rules/gpl-2.0_1108.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1109.RULE b/src/licensedcode/data/rules/gpl-2.0_1109.RULE index 81d9037f983..3dd23710aca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1109.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1109.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1109.yml b/src/licensedcode/data/rules/gpl-2.0_1109.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_111.RULE b/src/licensedcode/data/rules/gpl-2.0_111.RULE index 8a60ab05e7d..fcd8527d11e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_111.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_111.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: The Linux kernel source code is released under the GPL ... means we are talking GPL-2.0 + only +ignorable_urls: + - http://www.gnu.org/licenses/gpl-faq.html +--- + The Linux kernel source code is released under the GPL. Please see the file, COPYING, in the main directory of the source tree, for details on the license. If you have further questions about the license, please @@ -6,4 +17,4 @@ people on the mailing lists are not lawyers, and you should not rely on their statements on legal matters. For common questions and answers about the GPL, please see: - http://www.gnu.org/licenses/gpl-faq.html + http://www.gnu.org/licenses/gpl-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_111.yml b/src/licensedcode/data/rules/gpl-2.0_111.yml deleted file mode 100644 index 2871004a330..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_111.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -notes: The Linux kernel source code is released under the GPL ... means we are talking GPL-2.0 - only -ignorable_urls: - - http://www.gnu.org/licenses/gpl-faq.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1110.RULE b/src/licensedcode/data/rules/gpl-2.0_1110.RULE index a73f3176f43..f7a8dd1ca85 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1110.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1110.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of GPLV2 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1110.yml b/src/licensedcode/data/rules/gpl-2.0_1110.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1111.RULE b/src/licensedcode/data/rules/gpl-2.0_1111.RULE index 80777256896..74c0aaff383 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1111.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1111.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License (GPL) version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1111.yml b/src/licensedcode/data/rules/gpl-2.0_1111.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1112.RULE b/src/licensedcode/data/rules/gpl-2.0_1112.RULE index af26d03caee..30c9586c96c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1112.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1112.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License version 2 only, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1112.yml b/src/licensedcode/data/rules/gpl-2.0_1112.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1113.RULE b/src/licensedcode/data/rules/gpl-2.0_1113.RULE index d90f3e1b0d4..b0cd3edc60a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1113.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1113.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License version 2 (the “GPL”), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1113.yml b/src/licensedcode/data/rules/gpl-2.0_1113.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1114.RULE b/src/licensedcode/data/rules/gpl-2.0_1114.RULE index 09be18e2053..961bb148eb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1114.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1114.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1114.yml b/src/licensedcode/data/rules/gpl-2.0_1114.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1115.RULE b/src/licensedcode/data/rules/gpl-2.0_1115.RULE index e12bc5e3c2d..5d6026f242f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1115.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1115.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU GPL v 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1115.yml b/src/licensedcode/data/rules/gpl-2.0_1115.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1116.RULE b/src/licensedcode/data/rules/gpl-2.0_1116.RULE index 93ee5e20201..29c5c1ddfa1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1116.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1116.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of version 2 of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1116.yml b/src/licensedcode/data/rules/gpl-2.0_1116.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1117.RULE b/src/licensedcode/data/rules/gpl-2.0_1117.RULE index 5aeb679be51..36896c2bbcf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1117.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1117.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed under the terms of the GNU General Public License Version 2, you will find a copy of this license in the COPYING file included in the source package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1117.yml b/src/licensedcode/data/rules/gpl-2.0_1117.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1118.RULE b/src/licensedcode/data/rules/gpl-2.0_1118.RULE index ae6689e45be..7b5d09084f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1118.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1118.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + All files in the project are covered by the GPLv2, unless explicitly otherwise stated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1118.yml b/src/licensedcode/data/rules/gpl-2.0_1118.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1119.RULE b/src/licensedcode/data/rules/gpl-2.0_1119.RULE index c227e8285cb..b16359e8941 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1119.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1119.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +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 version 2 of the GNU General Public License version 2 as published by the Free Software Foundation. @@ -8,4 +15,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1119.yml b/src/licensedcode/data/rules/gpl-2.0_1119.yml deleted file mode 100644 index 0e9e1493aa6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1119.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_112.RULE b/src/licensedcode/data/rules/gpl-2.0_112.RULE index 66624fcca6c..bc6c661cb42 100644 --- a/src/licensedcode/data/rules/gpl-2.0_112.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_112.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - linux/COPYING +--- + Distributed under the terms of Version 2 of the GNU General Public -License, as defined in linux/COPYING. +License, as defined in linux/COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_112.yml b/src/licensedcode/data/rules/gpl-2.0_112.yml deleted file mode 100644 index fa7225a8c0f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_112.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - linux/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1120.RULE b/src/licensedcode/data/rules/gpl-2.0_1120.RULE index c09ffc4fa10..800d5bc142e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1120.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1120.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the complete text of the GNU General Public - License version 2 can be found in '/usr/share/common-licenses/GPL-2'. + License version 2 can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1120.yml b/src/licensedcode/data/rules/gpl-2.0_1120.yml deleted file mode 100644 index 98135b8f27a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1121.RULE b/src/licensedcode/data/rules/gpl-2.0_1121.RULE index a8ce35fe326..3a14e874ba7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1121.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1121.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +minimum_coverage: 90 +--- + is distributed under the GNU General Public License version 2 and is also available under alternative licenses negotiated directly with . If you obtained under the GPL, then the GPL @@ -40,4 +46,4 @@ is distributed under the GNU General Public License version 2 wish to use these trademarks for purposes other than simple redistribution of source code obtained from , you should contact our licensing department to determine the necessary - steps you must take. + steps you must take. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1121.yml b/src/licensedcode/data/rules/gpl-2.0_1121.yml deleted file mode 100644 index 5b004997c17..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_1122.RULE b/src/licensedcode/data/rules/gpl-2.0_1122.RULE index c3d28282d27..e37b702460d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1122.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1122.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + The Debian specific changes are and {{distributed under the terms of the GNU General Public License, version 2}}. @@ -8,4 +17,4 @@ Public License can be found in `/usr/share/common-licenses/GPL}}'. A copy of the {{GNU General Public License is also available}} at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA + St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1122.yml b/src/licensedcode/data/rules/gpl-2.0_1122.yml deleted file mode 100644 index e7d53ddd8bf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1122.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1123.RULE b/src/licensedcode/data/rules/gpl-2.0_1123.RULE index 9c4911f0373..af089ba1404 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1123.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1123.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + distributed {{under the terms of the GNU General Public License, version 2}}. @@ -7,4 +16,4 @@ Public License can be found in `/usr/share/common-licenses/GPL}}'. {{A copy of the GNU General Public License is also available at}} . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA + St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1123.yml b/src/licensedcode/data/rules/gpl-2.0_1123.yml deleted file mode 100644 index e7d53ddd8bf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1123.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1124.RULE b/src/licensedcode/data/rules/gpl-2.0_1124.RULE index d7287839cc3..0678d0161f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1124.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1124.RULE @@ -1 +1,9 @@ -The GNU General Public License v2 text is contained in /usr/share/common-licenses/GPL-2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + +The GNU General Public License v2 text is contained in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1124.yml b/src/licensedcode/data/rules/gpl-2.0_1124.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1124.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1125.RULE b/src/licensedcode/data/rules/gpl-2.0_1125.RULE index a48e2a25231..c3bafd9c805 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1125.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1125.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 version 2 * as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1125.yml b/src/licensedcode/data/rules/gpl-2.0_1125.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1125.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1126.RULE b/src/licensedcode/data/rules/gpl-2.0_1126.RULE index 3d013f4db64..e31db29ccbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1126.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1126.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under free software license GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1126.yml b/src/licensedcode/data/rules/gpl-2.0_1126.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1127.RULE b/src/licensedcode/data/rules/gpl-2.0_1127.RULE index 337ef118c81..612d481b6a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1127.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1127.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under free software license GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1127.yml b/src/licensedcode/data/rules/gpl-2.0_1127.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1128.RULE b/src/licensedcode/data/rules/gpl-2.0_1128.RULE index 825b3966ca9..297fbeb6046 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1128.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1128.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This code is licensed under the GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1128.yml b/src/licensedcode/data/rules/gpl-2.0_1128.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1129.RULE b/src/licensedcode/data/rules/gpl-2.0_1129.RULE index db60dacbe09..855b60c25f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1129.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1129.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: seen in some SPDX templates +--- + insert GPL v2 text here \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1129.yml b/src/licensedcode/data/rules/gpl-2.0_1129.yml deleted file mode 100644 index 677219b788a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1129.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: seen in some SPDX templates diff --git a/src/licensedcode/data/rules/gpl-2.0_113.RULE b/src/licensedcode/data/rules/gpl-2.0_113.RULE index d53e250e4a5..a8019c416de 100644 --- a/src/licensedcode/data/rules/gpl-2.0_113.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_113.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 of the License. @@ -9,4 +14,4 @@ INFRINGEMENT. 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. +675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_113.yml b/src/licensedcode/data/rules/gpl-2.0_113.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_113.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1130.RULE b/src/licensedcode/data/rules/gpl-2.0_1130.RULE index 8889c0d88ce..e24af271f5b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1130.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1130.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: Seen in vmware tools. Truncated texts +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1130.yml b/src/licensedcode/data/rules/gpl-2.0_1130.yml deleted file mode 100644 index 67cd35c9bb1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1130.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: Seen in vmware tools. Truncated texts -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1131.RULE b/src/licensedcode/data/rules/gpl-2.0_1131.RULE index 61f8665eb09..502db4c6e20 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1131.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1131.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1131.yml b/src/licensedcode/data/rules/gpl-2.0_1131.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1132.RULE b/src/licensedcode/data/rules/gpl-2.0_1132.RULE index 22952e0e318..80cc4fe2f24 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1132.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1132.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * 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 version 2 and no later version. diff --git a/src/licensedcode/data/rules/gpl-2.0_1132.yml b/src/licensedcode/data/rules/gpl-2.0_1132.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1133.RULE b/src/licensedcode/data/rules/gpl-2.0_1133.RULE index 956aed10afe..519a140f4da 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1133.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1133.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The Linux kernel modules are released under the GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1133.yml b/src/licensedcode/data/rules/gpl-2.0_1133.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1134.RULE b/src/licensedcode/data/rules/gpl-2.0_1134.RULE index 5e8932658dd..6f2af4cbe71 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1134.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1134.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1134.yml b/src/licensedcode/data/rules/gpl-2.0_1134.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1135.RULE b/src/licensedcode/data/rules/gpl-2.0_1135.RULE index 08f3decf862..3f7e9d7f4ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1135.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1135.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The code is being released under GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1135.yml b/src/licensedcode/data/rules/gpl-2.0_1135.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1136.RULE b/src/licensedcode/data/rules/gpl-2.0_1136.RULE index d0902ee7443..441ed8b647c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1136.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1136.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license is GPLv2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1136.yml b/src/licensedcode/data/rules/gpl-2.0_1136.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1137.RULE b/src/licensedcode/data/rules/gpl-2.0_1137.RULE index 8f52b7b0a76..5ca76d31ac4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1137.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1137.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This package, the EXT2 filesystem utilities, is protected by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1137.yml b/src/licensedcode/data/rules/gpl-2.0_1137.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1138.RULE b/src/licensedcode/data/rules/gpl-2.0_1138.RULE index ec2dd490b25..a223e19e23e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1138.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1138.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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, version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1138.yml b/src/licensedcode/data/rules/gpl-2.0_1138.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1138.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1139.RULE b/src/licensedcode/data/rules/gpl-2.0_1139.RULE index 3dbf9d83681..9635b7152c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1139.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1139.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + The full text of the GPL is distributed as in /usr/share/common-licenses/GPL-2 on Debian systems. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1139.yml b/src/licensedcode/data/rules/gpl-2.0_1139.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1139.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_114.RULE b/src/licensedcode/data/rules/gpl-2.0_114.RULE index 4053919a5f0..0418fc9d4db 100644 --- a/src/licensedcode/data/rules/gpl-2.0_114.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_114.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is release under the GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_114.yml b/src/licensedcode/data/rules/gpl-2.0_114.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1140.RULE b/src/licensedcode/data/rules/gpl-2.0_1140.RULE index 9342de91d3b..9042715f978 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1140.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1140.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/gpl-2.0_1140.yml b/src/licensedcode/data/rules/gpl-2.0_1140.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1140.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1141.RULE b/src/licensedcode/data/rules/gpl-2.0_1141.RULE index 5aaf7944636..690f6924724 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1141.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1141.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1141.yml b/src/licensedcode/data/rules/gpl-2.0_1141.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1141.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1142.RULE b/src/licensedcode/data/rules/gpl-2.0_1142.RULE index 6bfbd7cd8a9..6bc0873acbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1142.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1142.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + free software licensed under the GNU General Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1142.yml b/src/licensedcode/data/rules/gpl-2.0_1142.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1143.RULE b/src/licensedcode/data/rules/gpl-2.0_1143.RULE index 5a92b8748ea..a7dda18e910 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1143.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1143.RULE @@ -1,3 +1,8 @@ +--- +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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1143.yml b/src/licensedcode/data/rules/gpl-2.0_1143.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1143.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1144.RULE b/src/licensedcode/data/rules/gpl-2.0_1144.RULE index 31a6c62a8e6..74c47254289 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1144.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1144.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1144.yml b/src/licensedcode/data/rules/gpl-2.0_1144.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1144.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1145.RULE b/src/licensedcode/data/rules/gpl-2.0_1145.RULE index 655581043d9..5e5f20e6110 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1145.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1145.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + The complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1145.yml b/src/licensedcode/data/rules/gpl-2.0_1145.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1145.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1146.RULE b/src/licensedcode/data/rules/gpl-2.0_1146.RULE index e1f2831493f..903b9f72367 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1146.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1146.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2 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 diff --git a/src/licensedcode/data/rules/gpl-2.0_1146.yml b/src/licensedcode/data/rules/gpl-2.0_1146.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1146.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1147.RULE b/src/licensedcode/data/rules/gpl-2.0_1147.RULE index cc6b421e705..b6cb825d897 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1147.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1147.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + * GNU General Public License, version 2 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1147.yml b/src/licensedcode/data/rules/gpl-2.0_1147.yml deleted file mode 100644 index b0c82f27444..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1147.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1148.RULE b/src/licensedcode/data/rules/gpl-2.0_1148.RULE index 82900d4c45c..668c5a63881 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1148.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1148.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1148.yml b/src/licensedcode/data/rules/gpl-2.0_1148.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1148.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1149.RULE b/src/licensedcode/data/rules/gpl-2.0_1149.RULE index 137e5645c22..bb95b6262e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1149.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1149.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1149.yml b/src/licensedcode/data/rules/gpl-2.0_1149.yml deleted file mode 100644 index f63b94a4633..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1149.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_115.RULE b/src/licensedcode/data/rules/gpl-2.0_115.RULE index 9fdd8473bbf..d40a2e115d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_115.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_115.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: the "kernel sources" reference means we have a GPL 2 like in Linux +--- + based on GPL'ed 2.6 kernel sources This program is free software; you can redistribute it and/or modify @@ -11,4 +17,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_115.yml b/src/licensedcode/data/rules/gpl-2.0_115.yml deleted file mode 100644 index b166c28c4a0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: the "kernel sources" reference means we have a GPL 2 like in Linux diff --git a/src/licensedcode/data/rules/gpl-2.0_1150.RULE b/src/licensedcode/data/rules/gpl-2.0_1150.RULE index 0d158cc907e..34d617554c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1150.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1150.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is released under the GNU General Public License (GPL), version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1150.yml b/src/licensedcode/data/rules/gpl-2.0_1150.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1151.RULE b/src/licensedcode/data/rules/gpl-2.0_1151.RULE index be3c2f95f23..debe2d96cf7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1151.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1151.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This program is released under the GNU General Public License (GPL), version 2. diff --git a/src/licensedcode/data/rules/gpl-2.0_1151.yml b/src/licensedcode/data/rules/gpl-2.0_1151.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1151.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1152.RULE b/src/licensedcode/data/rules/gpl-2.0_1152.RULE index 5a912679133..7cedc88d32a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1152.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1152.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1152.yml b/src/licensedcode/data/rules/gpl-2.0_1152.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1152.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1153.RULE b/src/licensedcode/data/rules/gpl-2.0_1153.RULE index 96ea3868e3c..58d8731a051 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1153.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1153.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 80 +minimum_coverage: 100 +notes: this is seen in Asterisk debian copyright file. This assumption may not be right since + the GPL with no version is a gpl-1.0-plus +--- + Version of license not mentioned. Assumed to be version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1153.yml b/src/licensedcode/data/rules/gpl-2.0_1153.yml deleted file mode 100644 index c0e17c993cf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1153.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 80 -minimum_coverage: 100 -notes: this is seen in Asterisk debian copyright file. This assumption may not be right since - the GPL with no version is a gpl-1.0-plus diff --git a/src/licensedcode/data/rules/gpl-2.0_1154.RULE b/src/licensedcode/data/rules/gpl-2.0_1154.RULE index f6ec36f69f5..2b55437fb57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1154.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1154.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.htm +--- + Licensed under the GNU General Public License (GPL) Version 2, June 1991:http://www.gnu.org/licenses/gpl-2.0.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1154.yml b/src/licensedcode/data/rules/gpl-2.0_1154.yml deleted file mode 100644 index f9dd9f53683..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1154.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.htm diff --git a/src/licensedcode/data/rules/gpl-2.0_1155.RULE b/src/licensedcode/data/rules/gpl-2.0_1155.RULE index 7736738608f..ae78c854680 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1155.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1155.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 dated June. 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_1155.yml b/src/licensedcode/data/rules/gpl-2.0_1155.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1155.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1156.RULE b/src/licensedcode/data/rules/gpl-2.0_1156.RULE index 1502107c0e9..8c74ea70793 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1156.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1156.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPLv2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1156.yml b/src/licensedcode/data/rules/gpl-2.0_1156.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1157.RULE b/src/licensedcode/data/rules/gpl-2.0_1157.RULE index 2479164fe16..9ac90b84cf0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1157.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1157.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the complete text of the GNU General Public License can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1157.yml b/src/licensedcode/data/rules/gpl-2.0_1157.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1157.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1158.RULE b/src/licensedcode/data/rules/gpl-2.0_1158.RULE index ae3d275e68a..07bf243f729 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1158.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1158.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the complete text of the version of the GNU General Public License distributed with Doxygen can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1158.yml b/src/licensedcode/data/rules/gpl-2.0_1158.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1158.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1159.RULE b/src/licensedcode/data/rules/gpl-2.0_1159.RULE index 3ef1dfe86d6..17366614f0b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1159.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1159.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems, the text of the GNU General Public License, version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1159.yml b/src/licensedcode/data/rules/gpl-2.0_1159.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1159.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_116.RULE b/src/licensedcode/data/rules/gpl-2.0_116.RULE index be1e35afeaa..f95eda9a174 100644 --- a/src/licensedcode/data/rules/gpl-2.0_116.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_116.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +--- + * This file may be distributed under the terms of the GNU General Public - * License version 2. + * License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_116.yml b/src/licensedcode/data/rules/gpl-2.0_116.yml deleted file mode 100644 index 58623bb1f2c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_1160.RULE b/src/licensedcode/data/rules/gpl-2.0_1160.RULE index 60834fe6040..0c9377bb49c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1160.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1160.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the full text of the GNU General Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1160.yml b/src/licensedcode/data/rules/gpl-2.0_1160.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1160.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1161.RULE b/src/licensedcode/data/rules/gpl-2.0_1161.RULE index b958ca8dab6..9b0aad6b6bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1161.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1161.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1161.yml b/src/licensedcode/data/rules/gpl-2.0_1161.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1161.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1162.RULE b/src/licensedcode/data/rules/gpl-2.0_1162.RULE index cfeeccb55ab..8077965c277 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1162.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1162.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) * Version 2 (June 1991). See the "COPYING" file distributed with this software * for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1162.yml b/src/licensedcode/data/rules/gpl-2.0_1162.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1162.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1163.RULE b/src/licensedcode/data/rules/gpl-2.0_1163.RULE index afd01a4a72a..b1a3138e61c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1163.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1163.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + distributed under the terms of the * * GNU General Public License 2. Please see the COPYING file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1163.yml b/src/licensedcode/data/rules/gpl-2.0_1163.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1163.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1164.RULE b/src/licensedcode/data/rules/gpl-2.0_1164.RULE index c33a02e6d05..52755a79a0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1164.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1164.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.kernel.org/pub/linux/kernel/COPYING +--- + based on Linux, which is licensed under the GNU General Public License version 2, see: https://www.kernel.org/pub/linux/kernel/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1164.yml b/src/licensedcode/data/rules/gpl-2.0_1164.yml deleted file mode 100644 index 29c33b5ab00..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1164.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.kernel.org/pub/linux/kernel/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_1165.RULE b/src/licensedcode/data/rules/gpl-2.0_1165.RULE index 27e5615a188..52b97efc6a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1165.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1165.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This package 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; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_1165.yml b/src/licensedcode/data/rules/gpl-2.0_1165.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1165.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1166.RULE b/src/licensedcode/data/rules/gpl-2.0_1166.RULE index 45fd29fab68..266941cbedd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1166.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1166.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1166.yml b/src/licensedcode/data/rules/gpl-2.0_1166.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1166.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1167.RULE b/src/licensedcode/data/rules/gpl-2.0_1167.RULE index c0e4472a554..e3701dc722e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1167.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1167.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This package 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; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_1167.yml b/src/licensedcode/data/rules/gpl-2.0_1167.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1167.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1168.RULE b/src/licensedcode/data/rules/gpl-2.0_1168.RULE index c65a43952c6..05f4eeab752 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1168.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1168.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2 On Debian GNU/Linux systems the full text of the GNU GPL v2 can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1168.yml b/src/licensedcode/data/rules/gpl-2.0_1168.yml deleted file mode 100644 index e18a5fef53a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1169.RULE b/src/licensedcode/data/rules/gpl-2.0_1169.RULE index b49e4c5f5f6..746f31e1a5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1169.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1169.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The package scripts are copyright (C) , written by and licensed under GPL v2. @@ -18,5 +24,4 @@ Copyright: 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1169.yml b/src/licensedcode/data/rules/gpl-2.0_1169.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_117.RULE b/src/licensedcode/data/rules/gpl-2.0_117.RULE index 0093abd485a..8e9db864a74 100644 --- a/src/licensedcode/data/rules/gpl-2.0_117.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_117.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +notes: btrfs is GPL 2.0 only +--- + Btrfs is licensed under the GPL and open for contribution from anyone. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_117.yml b/src/licensedcode/data/rules/gpl-2.0_117.yml deleted file mode 100644 index 77cef7d7473..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -notes: btrfs is GPL 2.0 only diff --git a/src/licensedcode/data/rules/gpl-2.0_1170.RULE b/src/licensedcode/data/rules/gpl-2.0_1170.RULE index d31de1e12d8..58d78be3c78 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1170.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1170.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1170.yml b/src/licensedcode/data/rules/gpl-2.0_1170.yml deleted file mode 100644 index c0da60c33da..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1170.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1171.RULE b/src/licensedcode/data/rules/gpl-2.0_1171.RULE index 11f887b630d..ad7274b2d92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1171.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1171.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/gpl-2.0_1171.yml b/src/licensedcode/data/rules/gpl-2.0_1171.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1171.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1172.RULE b/src/licensedcode/data/rules/gpl-2.0_1172.RULE index e1ce71e3c12..343139421e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1172.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1172.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems, the complete text of the version of the GNU General Public License distributed with Doxygen can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1172.yml b/src/licensedcode/data/rules/gpl-2.0_1172.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1173.RULE b/src/licensedcode/data/rules/gpl-2.0_1173.RULE index 192e245ffec..5c53c3675a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1173.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1173.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + The programs in this package are distributed under the terms of the GNU General Public License, version 2 as distributed by the Free Software Foundation. On Debian GNU/Linux systems, a copy of this license may be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1173.yml b/src/licensedcode/data/rules/gpl-2.0_1173.yml deleted file mode 100644 index d7c8534a868..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1173.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1174.RULE b/src/licensedcode/data/rules/gpl-2.0_1174.RULE index cceb924e11c..4c77ac7b18d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1174.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1174.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1174.yml b/src/licensedcode/data/rules/gpl-2.0_1174.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1175.RULE b/src/licensedcode/data/rules/gpl-2.0_1175.RULE index daea1c2bb00..d101f482389 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1175.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1175.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems, the full text of the GNU General Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1175.yml b/src/licensedcode/data/rules/gpl-2.0_1175.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1175.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1176.RULE b/src/licensedcode/data/rules/gpl-2.0_1176.RULE index 59ee511b5bb..46d589bc893 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1176.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1176.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + and licensed under GPL v2. Copyright: diff --git a/src/licensedcode/data/rules/gpl-2.0_1176.yml b/src/licensedcode/data/rules/gpl-2.0_1176.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1177.RULE b/src/licensedcode/data/rules/gpl-2.0_1177.RULE index 52f7382ed2a..dc8b98111a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1177.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1177.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU General Public License, version 2. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in the file diff --git a/src/licensedcode/data/rules/gpl-2.0_1177.yml b/src/licensedcode/data/rules/gpl-2.0_1177.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1178.RULE b/src/licensedcode/data/rules/gpl-2.0_1178.RULE index 35c1e95c248..594759325d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1178.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1178.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1178.yml b/src/licensedcode/data/rules/gpl-2.0_1178.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1178.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1179.RULE b/src/licensedcode/data/rules/gpl-2.0_1179.RULE index e52d4079ea3..b488da8fe6a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1179.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1179.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems a full copy of the GNU General Public License, GPL, can be found in the file /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1179.yml b/src/licensedcode/data/rules/gpl-2.0_1179.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_118.RULE b/src/licensedcode/data/rules/gpl-2.0_118.RULE index 51116bd6a47..11d14ce5b5c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_118.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_118.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License v2 as published by the Free Software Foundation. @@ -10,4 +16,4 @@ 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., 59 Temple Place - Suite 330, -Boston, MA 021110-1307, USA. +Boston, MA 021110-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_118.yml b/src/licensedcode/data/rules/gpl-2.0_118.yml deleted file mode 100644 index b7e902d5990..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_1180.RULE b/src/licensedcode/data/rules/gpl-2.0_1180.RULE index a8c9277eca0..9f3c1fc22d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1180.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1180.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This package 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; version 2 dated June, 1991. @@ -13,5 +19,4 @@ 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - \ No newline at end of file +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1180.yml b/src/licensedcode/data/rules/gpl-2.0_1180.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1181.RULE b/src/licensedcode/data/rules/gpl-2.0_1181.RULE index 215a978341d..9dace78c339 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1181.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1181.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems the full text of the GNU GPL v2 can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1181.yml b/src/licensedcode/data/rules/gpl-2.0_1181.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1182.RULE b/src/licensedcode/data/rules/gpl-2.0_1182.RULE index 01b2bb39f0d..5133bc177bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1182.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1182.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: This package is free software; you can redistribute it and/or modify @@ -15,4 +21,4 @@ License: MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1182.yml b/src/licensedcode/data/rules/gpl-2.0_1182.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1183.RULE b/src/licensedcode/data/rules/gpl-2.0_1183.RULE index a0ed230d808..a630f2bfaa3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1183.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1183.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +notes: incorrect reference to GPL-1.0 text +--- + This package 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1183.yml b/src/licensedcode/data/rules/gpl-2.0_1183.yml deleted file mode 100644 index 34cd051b0d1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1183.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-1 -notes: incorrect reference to GPL-1.0 text diff --git a/src/licensedcode/data/rules/gpl-2.0_1184.RULE b/src/licensedcode/data/rules/gpl-2.0_1184.RULE index 6123c4aa23d..7ef2180809c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1184.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1184.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + This package 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1184.yml b/src/licensedcode/data/rules/gpl-2.0_1184.yml deleted file mode 100644 index 6a267cfc0a1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_1185.RULE b/src/licensedcode/data/rules/gpl-2.0_1185.RULE index 77cfa285613..10524570bce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1185.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1185.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1185.yml b/src/licensedcode/data/rules/gpl-2.0_1185.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1186.RULE b/src/licensedcode/data/rules/gpl-2.0_1186.RULE index ff8f47566da..18c7645b7e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1186.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1186.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian GNU/Linux systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1186.yml b/src/licensedcode/data/rules/gpl-2.0_1186.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1186.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1187.RULE b/src/licensedcode/data/rules/gpl-2.0_1187.RULE index 2f8cc25f07e..9e3f7031fd7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1187.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1187.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://www.trolltech.com/products/qt/licensing.html + - http://www.trolltech.com/products/qt/opensource.html +ignorable_emails: + - sales@trolltech.com +--- + License for all components is: -- GNU General Public License, version 2 (GPL-2) @@ -21,4 +33,4 @@ License for all components is: On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in - /usr/share/common-licenses/GPL-2 + /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1187.yml b/src/licensedcode/data/rules/gpl-2.0_1187.yml deleted file mode 100644 index f25188c9a95..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1187.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://www.trolltech.com/products/qt/licensing.html - - http://www.trolltech.com/products/qt/opensource.html -ignorable_emails: - - sales@trolltech.com diff --git a/src/licensedcode/data/rules/gpl-2.0_1188.RULE b/src/licensedcode/data/rules/gpl-2.0_1188.RULE index 3186dd030e9..70a309a5ab3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1188.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1188.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian and Debian-based systems, a copy of the GNU General Public License version 2 is available in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1188.yml b/src/licensedcode/data/rules/gpl-2.0_1188.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1188.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1189.RULE b/src/licensedcode/data/rules/gpl-2.0_1189.RULE index 500b9039a1d..205d41db0aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1189.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1189.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, v2, as published by the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1189.yml b/src/licensedcode/data/rules/gpl-2.0_1189.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1189.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_119.RULE b/src/licensedcode/data/rules/gpl-2.0_119.RULE index 649f6985d66..9da54f99abd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_119.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_119.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 50 +--- + the license is GPL version 2 (only version 2, as is true for the Linux kernel) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_119.yml b/src/licensedcode/data/rules/gpl-2.0_119.yml deleted file mode 100644 index 2db3f782079..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_119.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0_1190.RULE b/src/licensedcode/data/rules/gpl-2.0_1190.RULE index 136c99270dc..764fb07b1d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1190.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1190.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,4 +24,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.txt -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1190.yml b/src/licensedcode/data/rules/gpl-2.0_1190.yml deleted file mode 100644 index f61e526180a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1190.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1191.RULE b/src/licensedcode/data/rules/gpl-2.0_1191.RULE index e3a857c3808..13e36328eb9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1191.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1191.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.txt +--- + This software file (the "File") is distributed by Marvell International Ltd. under the terms of the GNU General Public License Version 2, June 1991 (the "License"). You may use, redistribute and/or modify this File in @@ -8,4 +16,4 @@ web at https://www.gnu.org/licenses/gpl.txt. THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The License provides additional details about -this warranty disclaimer. +this warranty disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1191.yml b/src/licensedcode/data/rules/gpl-2.0_1191.yml deleted file mode 100644 index bcd54ac371f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1191.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1192.RULE b/src/licensedcode/data/rules/gpl-2.0_1192.RULE index b7818e69890..72699c13764 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1192.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1192.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + BusyBox is licensed under https://www.gnu.org/licenses/old-licenses/gpl-2.0.html"> the GNU General Public License version 2 , which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat -familiar with it by now.) +familiar with it by now.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1192.yml b/src/licensedcode/data/rules/gpl-2.0_1192.yml deleted file mode 100644 index d43ddc41f2b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1193.RULE b/src/licensedcode/data/rules/gpl-2.0_1193.RULE index efce4d7ba05..c8e5b7c8913 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1193.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1193.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 2 of the License as published by the Free Software Foundation. @@ -8,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1193.yml b/src/licensedcode/data/rules/gpl-2.0_1193.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1194.RULE b/src/licensedcode/data/rules/gpl-2.0_1194.RULE index b340cd0d1b9..63a2ce280c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1194.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1194.RULE @@ -1,6 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.opensource.org/licenses/gpl-license.html + - https://www.gnu.org/copyleft/gpl.html +--- + The code contained herein is licensed under the GNU General Public License. You may obtain a copy of the GNU General Public License Version 2 at the following locations: http://www.opensource.org/licenses/gpl-license.html -https://www.gnu.org/copyleft/gpl.html +https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1194.yml b/src/licensedcode/data/rules/gpl-2.0_1194.yml deleted file mode 100644 index 29eabb38c91..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1194.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.opensource.org/licenses/gpl-license.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1195.RULE b/src/licensedcode/data/rules/gpl-2.0_1195.RULE index 5cfdd1d4d74..b45e7b5287e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1195.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1195.RULE @@ -1 +1,9 @@ -__license__ = "GPLv2 (https://www.gnu.org/licenses/)" \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + +__license__ = "GPLv2 (https://www.gnu.org/licenses/)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1195.yml b/src/licensedcode/data/rules/gpl-2.0_1195.yml deleted file mode 100644 index 8fb35e90a9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1196.RULE b/src/licensedcode/data/rules/gpl-2.0_1196.RULE index 503251bbd13..d320ecb1330 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1196.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1196.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1196.yml b/src/licensedcode/data/rules/gpl-2.0_1196.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1197.RULE b/src/licensedcode/data/rules/gpl-2.0_1197.RULE index e13b729adc4..16b6b2406b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1197.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1197.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + GNU-GPLv2 license (https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1197.yml b/src/licensedcode/data/rules/gpl-2.0_1197.yml deleted file mode 100644 index 682c67b9c7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1198.RULE b/src/licensedcode/data/rules/gpl-2.0_1198.RULE index 944926ac43a..00955d4c4c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1198.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1198.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.xyratex.com/contact + - https://www.gnu.org/licenses +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -18,4 +27,4 @@ version 2 along with this program; If not, see https://www.gnu.org/licenses Please visit http://www.xyratex.com/contact if you need additional information or have any questions. -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1198.yml b/src/licensedcode/data/rules/gpl-2.0_1198.yml deleted file mode 100644 index d73c595dbfd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1198.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.xyratex.com/contact - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1199.RULE b/src/licensedcode/data/rules/gpl-2.0_1199.RULE index e1ce58e263e..313ea37684d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1199.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1199.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-faq.html + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + is licensed under the GNU General Public License, version 2< is licensed under https://www.gnu.org/licenses/old-licenses/gpl-2.0.html @@ -15,4 +24,4 @@ distribute the source code to that GPL-licensed software. If you distribute without making the source code to the version you distribute available, you violate the license terms, and thus infringe on the copyrights of . This requirement applies whether or not you modified ; either way the -license terms still apply to you. +license terms still apply to you. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1199.yml b/src/licensedcode/data/rules/gpl-2.0_1199.yml deleted file mode 100644 index 8ab29891f1f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1199.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-faq.html - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0_12.RULE index 135a5ca2b04..ab7276c92da 100644 --- a/src/licensedcode/data/rules/gpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0_12.yml deleted file mode 100644 index 6a47f807088..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_120.RULE b/src/licensedcode/data/rules/gpl-2.0_120.RULE index b0a7448bfce..6d167209d25 100644 --- a/src/licensedcode/data/rules/gpl-2.0_120.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_120.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +--- + Licensed under GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_120.yml b/src/licensedcode/data/rules/gpl-2.0_120.yml deleted file mode 100644 index ef3e9b00c20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_120.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_1200.RULE b/src/licensedcode/data/rules/gpl-2.0_1200.RULE index c7ab5289c25..5a0fdedc904 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1200.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1200.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + licensed under the GPL v2 https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1200.yml b/src/licensedcode/data/rules/gpl-2.0_1200.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1200.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1201.RULE b/src/licensedcode/data/rules/gpl-2.0_1201.RULE index f8caec3a6f1..a802edecc91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1201.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1201.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + License: GPL (https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1201.yml b/src/licensedcode/data/rules/gpl-2.0_1201.yml deleted file mode 100644 index 716a40dd73d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1202.RULE b/src/licensedcode/data/rules/gpl-2.0_1202.RULE index b2ae36636e9..d48ca5bddb2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1202.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1202.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.htm +--- + Licensed under the GNU General Public License (GPL) Version 2, June 1991:https://www.gnu.org/licenses/gpl-2.0.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1202.yml b/src/licensedcode/data/rules/gpl-2.0_1202.yml deleted file mode 100644 index ad3b6336fab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.htm diff --git a/src/licensedcode/data/rules/gpl-2.0_1203.RULE b/src/licensedcode/data/rules/gpl-2.0_1203.RULE index 47a9585a1df..eed2184e4c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1203.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1203.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License @@ -8,4 +16,4 @@ 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 . + along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1203.yml b/src/licensedcode/data/rules/gpl-2.0_1203.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1203.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1204.RULE b/src/licensedcode/data/rules/gpl-2.0_1204.RULE index f960219d6d0..c2613ad1672 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1204.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1204.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -9,4 +17,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1204.yml b/src/licensedcode/data/rules/gpl-2.0_1204.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1204.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1205.RULE b/src/licensedcode/data/rules/gpl-2.0_1205.RULE index f17072e30c1..2c43179be15 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1205.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1205.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 2 as published by the Free Software Foundation. @@ -8,4 +16,4 @@ 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 . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1205.yml b/src/licensedcode/data/rules/gpl-2.0_1205.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1205.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1206.RULE b/src/licensedcode/data/rules/gpl-2.0_1206.RULE index 27ca8a31eb5..574584b2e72 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1206.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1206.RULE @@ -1,5 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + Copyright Notice This software is distributed under the GNU General Public Licence, Version 2. -https://www.gnu.org/copyleft/gpl.html +https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1206.yml b/src/licensedcode/data/rules/gpl-2.0_1206.yml deleted file mode 100644 index 3b112f6e2b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1206.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1207.RULE b/src/licensedcode/data/rules/gpl-2.0_1207.RULE index 2a606ba193d..411ec3d122c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1207.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1207.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1207.yml b/src/licensedcode/data/rules/gpl-2.0_1207.yml deleted file mode 100644 index d21846151d9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1207.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1208.RULE b/src/licensedcode/data/rules/gpl-2.0_1208.RULE index b19dd5f0e42..05e1115017b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1208.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1208.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - gpl-2.0.txt +ignorable_urls: + - https://github.com/LibreCAD/LibreCAD/tree/master/licenses + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + GPLv2 ## Librecad is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_1208.yml b/src/licensedcode/data/rules/gpl-2.0_1208.yml deleted file mode 100644 index cebeea19e90..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1208.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - gpl-2.0.txt -ignorable_urls: - - https://github.com/LibreCAD/LibreCAD/tree/master/licenses - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1209.RULE b/src/licensedcode/data/rules/gpl-2.0_1209.RULE index cb40cd845a9..fbb0d38d406 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1209.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1209.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1209.yml b/src/licensedcode/data/rules/gpl-2.0_1209.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1209.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_121.RULE b/src/licensedcode/data/rules/gpl-2.0_121.RULE index 575059244c7..36e1c43ebaa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_121.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_121.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -5,5 +10,4 @@ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - \ No newline at end of file + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_121.yml b/src/licensedcode/data/rules/gpl-2.0_121.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_121.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1210.RULE b/src/licensedcode/data/rules/gpl-2.0_1210.RULE index 955e291faf6..68d093c647b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1210.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1210.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + This software program is licensed subject to the GNU General Public License (GPL).Version 2,June 1991, available at - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html + https://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1210.yml b/src/licensedcode/data/rules/gpl-2.0_1210.yml deleted file mode 100644 index d43ddc41f2b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1210.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1211.RULE b/src/licensedcode/data/rules/gpl-2.0_1211.RULE index ceba604d9f8..e5b1f423b98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1211.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1211.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + 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 @@ -23,4 +34,4 @@ any damages of any kind arising from your use or distribution of this program. The Linux Foundation chooses to take subject only to the GPLv2 -license terms, and distributes only under these terms. +license terms, and distributes only under these terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1211.yml b/src/licensedcode/data/rules/gpl-2.0_1211.yml deleted file mode 100644 index b97d4541f35..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1211.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1212.RULE b/src/licensedcode/data/rules/gpl-2.0_1212.RULE index f3e32682320..d4d75beb5b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1212.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1212.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + The Debian specific changes are and distributed {{under the terms of the GNU General Public License, version 2}}. @@ -8,4 +18,4 @@ Public License can be found in `/usr/share/common-licenses/GPL}}'. A copy of the {{GNU General Public License is also available}} at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA + St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1212.yml b/src/licensedcode/data/rules/gpl-2.0_1212.yml deleted file mode 100644 index 94e37f71401..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1212.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1213.RULE b/src/licensedcode/data/rules/gpl-2.0_1213.RULE index ba7d07e2ec0..bb0f7f43537 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1213.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1213.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1213.yml b/src/licensedcode/data/rules/gpl-2.0_1213.yml deleted file mode 100644 index f2f029161a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1213.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1214.RULE b/src/licensedcode/data/rules/gpl-2.0_1214.RULE index f450b1abcb3..cd6ca627536 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1214.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1214.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.htm +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,4 +24,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.htm -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1214.yml b/src/licensedcode/data/rules/gpl-2.0_1214.yml deleted file mode 100644 index ad3b6336fab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.htm diff --git a/src/licensedcode/data/rules/gpl-2.0_1215.RULE b/src/licensedcode/data/rules/gpl-2.0_1215.RULE index ef028de801c..600ed11937c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1215.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1215.RULE @@ -1,6 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +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 2 as published by the Free Software Foundation. You should have received a copy of the GNU General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1215.yml b/src/licensedcode/data/rules/gpl-2.0_1215.yml deleted file mode 100644 index 603725c136f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1215.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1216.RULE b/src/licensedcode/data/rules/gpl-2.0_1216.RULE index 6c7363f271a..07530dd95b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1216.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1216.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,4 +24,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.html -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1216.yml b/src/licensedcode/data/rules/gpl-2.0_1216.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1216.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1217.RULE b/src/licensedcode/data/rules/gpl-2.0_1217.RULE index 11e00e3cf4f..708b098e33a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1217.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1217.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + License: GPL v2 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1217.yml b/src/licensedcode/data/rules/gpl-2.0_1217.yml deleted file mode 100644 index 9a230aca9e1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1217.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1218.RULE b/src/licensedcode/data/rules/gpl-2.0_1218.RULE index 7f0173a46df..dbcd77487b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1218.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1218.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. @@ -9,4 +17,4 @@ GNU General Public License for more details. To obtain the license, point your browser to - https://www.gnu.org/copyleft/gpl.html + https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1218.yml b/src/licensedcode/data/rules/gpl-2.0_1218.yml deleted file mode 100644 index 3b112f6e2b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1218.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1219.RULE b/src/licensedcode/data/rules/gpl-2.0_1219.RULE index e2853ce983c..b09cf0ca077 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1219.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1219.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1219.yml b/src/licensedcode/data/rules/gpl-2.0_1219.yml deleted file mode 100644 index d21846151d9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1219.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_122.RULE b/src/licensedcode/data/rules/gpl-2.0_122.RULE index c9184b39800..e10e75bacc1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_122.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_122.RULE @@ -1,7 +1,12 @@ +--- +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. 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., 59 Temple Place, Suite 330, Boston, -MA 02111-1307 USA +MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_122.yml b/src/licensedcode/data/rules/gpl-2.0_122.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_122.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1220.RULE b/src/licensedcode/data/rules/gpl-2.0_1220.RULE index 605d378cf04..8b08861fafb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1220.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1220.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + GNU General Public License Version 2.0, June 1991 The following applies to all products licensed under the GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_1220.yml b/src/licensedcode/data/rules/gpl-2.0_1220.yml deleted file mode 100644 index f61e526180a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1221.RULE b/src/licensedcode/data/rules/gpl-2.0_1221.RULE index af310099461..6a1b9e6bbfc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1221.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1221.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + {{distributed under the terms of the GNU General Public License, version 2}}. @@ -7,4 +17,4 @@ Public License can be found in `/usr/share/common-licenses/GPL-2}}'. A copy of the {{GNU General Public License is also available}} at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301, USA. + St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1221.yml b/src/licensedcode/data/rules/gpl-2.0_1221.yml deleted file mode 100644 index 6a2bcca20dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1221.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1222.RULE b/src/licensedcode/data/rules/gpl-2.0_1222.RULE index 84d1486ba19..0bc7b4981e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1222.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1222.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -8,5 +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 General Public License -along with this program; if not, see . - +along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1222.yml b/src/licensedcode/data/rules/gpl-2.0_1222.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1222.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1223.RULE b/src/licensedcode/data/rules/gpl-2.0_1223.RULE index 88e2fd2f592..315b00899c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1223.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1223.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + License is specifically licensed under GPL v2.0, and no later version. diff --git a/src/licensedcode/data/rules/gpl-2.0_1223.yml b/src/licensedcode/data/rules/gpl-2.0_1223.yml deleted file mode 100644 index c799008f6e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1223.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1224.RULE b/src/licensedcode/data/rules/gpl-2.0_1224.RULE index ebc1cd370fb..37d3e29a83c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1224.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1224.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + 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. @@ -5,4 +13,4 @@ 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 https://www.gnu.org/licenses/gpl-2.0.html for more details. + See https://www.gnu.org/licenses/gpl-2.0.html for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1224.yml b/src/licensedcode/data/rules/gpl-2.0_1224.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1224.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1225.RULE b/src/licensedcode/data/rules/gpl-2.0_1225.RULE index af222b868aa..29b74f8c350 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1225.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1225.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Distributed under the terms of the GNU General Public License version 2 (GPLv2) The full text of the GPLv2 is available at: https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1225.yml b/src/licensedcode/data/rules/gpl-2.0_1225.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1225.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1226.RULE b/src/licensedcode/data/rules/gpl-2.0_1226.RULE index bd6783e8834..c5fbfc78365 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1226.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1226.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This driver is free software; you can redistribute it and/or modify it under the terms of version 2 only of the GNU General Public License as published by the Free Software Foundation. @@ -8,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 General Public License -along with this program; if not, see . +along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1226.yml b/src/licensedcode/data/rules/gpl-2.0_1226.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1226.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1227.RULE b/src/licensedcode/data/rules/gpl-2.0_1227.RULE index 6df4ba06b2f..806fdb07ec7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1227.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1227.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This driver 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, version 2 of the License. @@ -8,4 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this driver. If not, see . + along with this driver. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1227.yml b/src/licensedcode/data/rules/gpl-2.0_1227.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1227.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1228.RULE b/src/licensedcode/data/rules/gpl-2.0_1228.RULE index 1360d605d94..120e4c4a148 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1228.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1228.RULE @@ -1,7 +1,17 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.opensource.org/licenses/gpl-license.html + - https://www.gnu.org/copyleft/gpl.html +--- + 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. http://www.opensource.org/licenses/gpl-license.html - https://www.gnu.org/copyleft/gpl.html + https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1228.yml b/src/licensedcode/data/rules/gpl-2.0_1228.yml deleted file mode 100644 index b773f127ef9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1228.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.opensource.org/licenses/gpl-license.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1229.RULE b/src/licensedcode/data/rules/gpl-2.0_1229.RULE index c506b598c84..a3b43ad5c65 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1229.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1229.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + # This program is released under the terms of the Gnu General Public # License version 2 (GPLv2) # https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1229.yml b/src/licensedcode/data/rules/gpl-2.0_1229.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1229.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_123.RULE b/src/licensedcode/data/rules/gpl-2.0_123.RULE index 236e2ba9cec..f33df6d93f6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_123.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_123.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -9,4 +14,4 @@ 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. + 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_123.yml b/src/licensedcode/data/rules/gpl-2.0_123.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_123.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1230.RULE b/src/licensedcode/data/rules/gpl-2.0_1230.RULE index c099d37a79b..6bbce7e96d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1230.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1230.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Your use of this code is subject to the terms and conditions of the GNU general public license version 2. See "COPYING" or -https://www.gnu.org/licenses/gpl.html +https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1230.yml b/src/licensedcode/data/rules/gpl-2.0_1230.yml deleted file mode 100644 index de2b4161c57..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1230.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1231.RULE b/src/licensedcode/data/rules/gpl-2.0_1231.RULE index 11494105fad..9307ebe3ce5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1231.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1231.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + under the GNU-GPLv2 license (https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1231.yml b/src/licensedcode/data/rules/gpl-2.0_1231.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1231.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1232.RULE b/src/licensedcode/data/rules/gpl-2.0_1232.RULE index 4f659f63c2d..efb68c79e7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1232.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1232.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + The following applies to all products licensed under the GNU General Public License, Version 2.0: You may not use the identified files except in compliance with the GNU General Public License, Version diff --git a/src/licensedcode/data/rules/gpl-2.0_1232.yml b/src/licensedcode/data/rules/gpl-2.0_1232.yml deleted file mode 100644 index f61e526180a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1233.RULE b/src/licensedcode/data/rules/gpl-2.0_1233.RULE index b5cbce392cb..f057642681e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1233.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1233.RULE @@ -1,4 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.de/documents/gpl-2.0.de.html + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This program falls under the GNU GPL (General Public Licence) version 2 GNU GPL V2 en-> https://www.gnu.org/licenses/gpl-2.0.html -de-> http://www.gnu.de/documents/gpl-2.0.de.html +de-> http://www.gnu.de/documents/gpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1233.yml b/src/licensedcode/data/rules/gpl-2.0_1233.yml deleted file mode 100644 index 4b9df187a36..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1233.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.de/documents/gpl-2.0.de.html - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1234.RULE b/src/licensedcode/data/rules/gpl-2.0_1234.RULE index 2ea2089a0bc..ca309f04295 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1234.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1234.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 2 as published by @@ -9,4 +17,4 @@ more details. You should have received a copy of the GNU General Public License along with - this program. If not, see . + this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1234.yml b/src/licensedcode/data/rules/gpl-2.0_1234.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1234.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1235.RULE b/src/licensedcode/data/rules/gpl-2.0_1235.RULE index 230666a3ca1..81a8201fbbc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1235.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1235.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 55 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is provided under a GPLv2 license. When using or redistributing this file, you may do so under that license. @@ -29,4 +40,4 @@ 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. + 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/gpl-2.0_1235.yml b/src/licensedcode/data/rules/gpl-2.0_1235.yml deleted file mode 100644 index 2e8cf3fd47f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1235.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 55 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1236.RULE b/src/licensedcode/data/rules/gpl-2.0_1236.RULE index 9a1e004b5c9..33d9966add8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1236.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1236.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This ruleset is under the GNU-GPLv2 license (https://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1236.yml b/src/licensedcode/data/rules/gpl-2.0_1236.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1236.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1237.RULE b/src/licensedcode/data/rules/gpl-2.0_1237.RULE index 6bbb91662d9..257daee3c0f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1237.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1237.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can distribute it and/or modify it under the terms of the GNU General Public License (Version 2) as published by the Free Software Foundation. @@ -8,4 +16,4 @@ 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 . +with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1237.yml b/src/licensedcode/data/rules/gpl-2.0_1237.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1237.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1238.RULE b/src/licensedcode/data/rules/gpl-2.0_1238.RULE index de4d9216970..2ec99323ab6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1238.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1238.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 2, as @@ -8,5 +16,4 @@ THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1238.yml b/src/licensedcode/data/rules/gpl-2.0_1238.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1238.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1239.RULE b/src/licensedcode/data/rules/gpl-2.0_1239.RULE index a90dc193082..2718ef418d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1239.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1239.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: GPL 2 only +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + /* This program is free software; you can redistribute it and/or modify */ /* it under the terms of the GNU General Public License as published by */ /* the Free Software Foundation, using version 2 of the License. */ @@ -8,4 +17,4 @@ /* 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 . */ +/* along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1239.yml b/src/licensedcode/data/rules/gpl-2.0_1239.yml deleted file mode 100644 index ca1c11252e1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1239.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: GPL 2 only -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_124.RULE b/src/licensedcode/data/rules/gpl-2.0_124.RULE index 4d558e6df39..e4ae6703727 100644 --- a/src/licensedcode/data/rules/gpl-2.0_124.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_124.RULE @@ -1 +1,7 @@ -Licensed under the GPL-2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_124.yml b/src/licensedcode/data/rules/gpl-2.0_124.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1240.RULE b/src/licensedcode/data/rules/gpl-2.0_1240.RULE index 829ac61e6fd..6d7052385d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1240.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1240.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - gpl-2.0.txt +ignorable_urls: + - https://github.com/LibreCAD/LibreCAD/tree/master/licenses + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + GPLv2 ## is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_1240.yml b/src/licensedcode/data/rules/gpl-2.0_1240.yml deleted file mode 100644 index cebeea19e90..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1240.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - gpl-2.0.txt -ignorable_urls: - - https://github.com/LibreCAD/LibreCAD/tree/master/licenses - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1241.RULE b/src/licensedcode/data/rules/gpl-2.0_1241.RULE index 42c7e85ad6a..d89822ffcb4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1241.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1241.RULE @@ -1 +1,9 @@ -https://www.gnu.org/licenses/gpl-2.0-standalone.html' +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0-standalone.html +--- + +https://www.gnu.org/licenses/gpl-2.0-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1241.yml b/src/licensedcode/data/rules/gpl-2.0_1241.yml deleted file mode 100644 index 15302de5df8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1241.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1242.RULE b/src/licensedcode/data/rules/gpl-2.0_1242.RULE index 1ad994281b8..741853b84b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1242.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1242.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -9,4 +17,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License - along with this software. If not see . + along with this software. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1242.yml b/src/licensedcode/data/rules/gpl-2.0_1242.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1242.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1243.RULE b/src/licensedcode/data/rules/gpl-2.0_1243.RULE index 3469447f1b2..0f9f2876c64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1243.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1243.RULE @@ -1,6 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the GNU General Public License v.2. You should have received a copy of the GNU General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1243.yml b/src/licensedcode/data/rules/gpl-2.0_1243.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1243.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1244.RULE b/src/licensedcode/data/rules/gpl-2.0_1244.RULE index 7d9435d6465..e1fc55c7610 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1244.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1244.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This driver is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. @@ -7,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this driver; if not, see . + along with this driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1244.yml b/src/licensedcode/data/rules/gpl-2.0_1244.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1244.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1245.RULE b/src/licensedcode/data/rules/gpl-2.0_1245.RULE index 714aeb8b103..6180f59f1d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1245.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1245.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This driver software is distributed as is, without any warranty of any kind, either express or implied as further specified in the GNU Public License. This software may be used and distributed according to the terms of the GNU @@ -5,4 +15,4 @@ Public License, version 2 as published by the Free Software Foundation. See the file COPYING in the main directory of this archive for more details. You should have received a copy of the GNU General Public License along with -this program. If not, see . +this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1245.yml b/src/licensedcode/data/rules/gpl-2.0_1245.yml deleted file mode 100644 index 8ad6038cca2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1245.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1246.RULE b/src/licensedcode/data/rules/gpl-2.0_1246.RULE index ef2522ef544..8934a43e41a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1246.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1246.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -8,4 +16,4 @@ more details. You should have received a copy of the GNU General Public License - along with this program. If not, see . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1246.yml b/src/licensedcode/data/rules/gpl-2.0_1246.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1246.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1247.RULE b/src/licensedcode/data/rules/gpl-2.0_1247.RULE index 499de234e0f..b932945a8c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1247.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1247.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + GNU General Public License Version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1247.yml b/src/licensedcode/data/rules/gpl-2.0_1247.yml deleted file mode 100644 index d78401fd399..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1247.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1248.RULE b/src/licensedcode/data/rules/gpl-2.0_1248.RULE index cea52803faf..d7556125e36 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1248.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1248.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -8,4 +16,4 @@ 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 . +this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1248.yml b/src/licensedcode/data/rules/gpl-2.0_1248.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1248.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1249.RULE b/src/licensedcode/data/rules/gpl-2.0_1249.RULE index 71c42193611..7027400f8f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1249.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1249.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, @@ -12,4 +22,4 @@ this program; if not, see . The full GNU General Public License is included in this distribution in - the file called "COPYING". + the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1249.yml b/src/licensedcode/data/rules/gpl-2.0_1249.yml deleted file mode 100644 index 8ad6038cca2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1249.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_125.RULE b/src/licensedcode/data/rules/gpl-2.0_125.RULE index 8a55d1d0aab..9a23378fbc0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_125.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_125.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 100 +--- + 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. +the Free Software Foundation; either version 2 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_125.yml b/src/licensedcode/data/rules/gpl-2.0_125.yml deleted file mode 100644 index 064fbdd0369..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1250.RULE b/src/licensedcode/data/rules/gpl-2.0_1250.RULE index 6069b6824f8..3ba3960b0b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1250.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1250.RULE @@ -1 +1,9 @@ - license 'GPL-2.0', 'https://www.gnu.org/licenses/gpl-2.0-standalone.html' +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0-standalone.html +--- + + license 'GPL-2.0', 'https://www.gnu.org/licenses/gpl-2.0-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1250.yml b/src/licensedcode/data/rules/gpl-2.0_1250.yml deleted file mode 100644 index 15302de5df8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1250.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1251.RULE b/src/licensedcode/data/rules/gpl-2.0_1251.RULE index e725e46f52d..aae99f40eb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1251.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1251.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1251.yml b/src/licensedcode/data/rules/gpl-2.0_1251.yml deleted file mode 100644 index ea0ab9ef437..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1251.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1252.RULE b/src/licensedcode/data/rules/gpl-2.0_1252.RULE index 8ce3f707271..7e0cebf2b97 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1252.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1252.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 General Public License, Version 2, as published by the Free Software Foundation. @@ -11,4 +19,4 @@ details. You should have received a copy of the GNU General Public License along with this file; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -or visit https://www.gnu.org/licenses/. +or visit https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1252.yml b/src/licensedcode/data/rules/gpl-2.0_1252.yml deleted file mode 100644 index c799008f6e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1252.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1253.RULE b/src/licensedcode/data/rules/gpl-2.0_1253.RULE index d92d4f90964..20b5c0ad9f6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1253.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1253.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + This software file (the "File") is distributed by company under the terms of the GNU General Public License Version 2, June 1991 (the "License"). You may use, redistribute and/or modify this File in @@ -10,4 +18,4 @@ worldwide web at https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The License provides additional details about -this warranty disclaimer. +this warranty disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1253.yml b/src/licensedcode/data/rules/gpl-2.0_1253.yml deleted file mode 100644 index c6857503705..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1253.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1254.RULE b/src/licensedcode/data/rules/gpl-2.0_1254.RULE index 55fc75f344f..93070bd4dfc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1254.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1254.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -15,4 +23,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.html -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1254.yml b/src/licensedcode/data/rules/gpl-2.0_1254.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1254.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1255.RULE b/src/licensedcode/data/rules/gpl-2.0_1255.RULE index 4e17254a92f..a33481aee1b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1255.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1255.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Driver 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. @@ -8,4 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with Driver; if not, see . + along with Driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1255.yml b/src/licensedcode/data/rules/gpl-2.0_1255.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1255.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1256.RULE b/src/licensedcode/data/rules/gpl-2.0_1256.RULE index 19e7e6d2b3d..598808dc15f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1256.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1256.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GNU General Public Licence distributed under the terms of the GNU General Public License version 2 (`GPLv2 `_) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1256.yml b/src/licensedcode/data/rules/gpl-2.0_1256.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1256.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1257.RULE b/src/licensedcode/data/rules/gpl-2.0_1257.RULE index 161890a67f6..388f05d6590 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1257.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1257.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -15,4 +23,4 @@ in the LICENSE file that accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this program; If not, see https://www.gnu.org/licenses -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1257.yml b/src/licensedcode/data/rules/gpl-2.0_1257.yml deleted file mode 100644 index c799008f6e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1258.RULE b/src/licensedcode/data/rules/gpl-2.0_1258.RULE index 62f45c0de71..740954dcbd2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1258.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1258.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.txt +--- + * This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_1258.yml b/src/licensedcode/data/rules/gpl-2.0_1258.yml deleted file mode 100644 index bcd54ac371f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1259.RULE b/src/licensedcode/data/rules/gpl-2.0_1259.RULE index 87cdde7b4ca..fdbc42b4a47 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1259.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1259.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + This software file (the "File") is distributed by Marvell International Ltd. under the terms of the GNU General Public License Version 2, June 1991 (the "License"). You may use, redistribute and/or modify this File in @@ -8,4 +16,4 @@ THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The License provides additional details about - this warranty disclaimer. + this warranty disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1259.yml b/src/licensedcode/data/rules/gpl-2.0_1259.yml deleted file mode 100644 index c6857503705..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1259.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_126.RULE b/src/licensedcode/data/rules/gpl-2.0_126.RULE index 1f9032c7ff9..6bc3e8a2906 100644 --- a/src/licensedcode/data/rules/gpl-2.0_126.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_126.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 100 +--- + 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 @@ -11,4 +17,4 @@ 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., 59 Temple Place, Suite 330, Boston, -MA 02111-1307 USA +MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_126.yml b/src/licensedcode/data/rules/gpl-2.0_126.yml deleted file mode 100644 index 064fbdd0369..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1260.RULE b/src/licensedcode/data/rules/gpl-2.0_1260.RULE index 8e2e265cdea..d9829e1bdfa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1260.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1260.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + {{distributed under the terms of the GNU General Public License, version 2}}. @@ -8,4 +18,4 @@ Public License can be found in `/usr/share/common-licenses/GPL}}'. A copy of the {{GNU General Public License is also available}} at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA + St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1260.yml b/src/licensedcode/data/rules/gpl-2.0_1260.yml deleted file mode 100644 index 94e37f71401..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1260.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1261.RULE b/src/licensedcode/data/rules/gpl-2.0_1261.RULE index 1c7dc532b11..f98bc23973b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1261.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1261.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + licensed under the terms of the GNU General Public License, version 2 (GPLv2). The full text of this license may be found in the COPYING file at the top of the source tree and online at https://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1261.yml b/src/licensedcode/data/rules/gpl-2.0_1261.yml deleted file mode 100644 index e8b57138466..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1261.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1262.RULE b/src/licensedcode/data/rules/gpl-2.0_1262.RULE index 86e7161b9b2..bb9f10c9dea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1262.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1262.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + This software file (the "File") is distributed by Marvell International Ltd. under the terms of the GNU General Public License Version 2, June 1991 (the "License"). You may use, redistribute and/or modify this File in @@ -10,4 +18,4 @@ worldwide web at https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The License provides additional details about -this warranty disclaimer. +this warranty disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1262.yml b/src/licensedcode/data/rules/gpl-2.0_1262.yml deleted file mode 100644 index c6857503705..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1262.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1263.RULE b/src/licensedcode/data/rules/gpl-2.0_1263.RULE index 030849f92dd..30fae3d150a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1263.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1263.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: The Linux kernel source code is released under the GPL ... means we are talking GPL-2.0 + only +ignorable_urls: + - https://www.gnu.org/licenses/gpl-faq.html +--- + The Linux kernel source code is released under the GPL. Please see the file, COPYING, in the main directory of the source tree, for details on the license. If you have further questions about the license, please @@ -6,4 +18,4 @@ people on the mailing lists are not lawyers, and you should not rely on their statements on legal matters. For common questions and answers about the GPL, please see: - https://www.gnu.org/licenses/gpl-faq.html + https://www.gnu.org/licenses/gpl-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1263.yml b/src/licensedcode/data/rules/gpl-2.0_1263.yml deleted file mode 100644 index b57eba33684..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1263.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: The Linux kernel source code is released under the GPL ... means we are talking GPL-2.0 - only -ignorable_urls: - - https://www.gnu.org/licenses/gpl-faq.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1264.RULE b/src/licensedcode/data/rules/gpl-2.0_1264.RULE index b1352c69084..f14198deed3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1264.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1264.RULE @@ -1 +1,13 @@ - @copyright GNU General Public Licence * @license https://www.gnu.org/licenses/gpl.html \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + + @copyright GNU General Public Licence * @license https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1264.yml b/src/licensedcode/data/rules/gpl-2.0_1264.yml deleted file mode 100644 index 9188ae431c4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1264.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1265.RULE b/src/licensedcode/data/rules/gpl-2.0_1265.RULE index d973073a86f..5f8a05e4558 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1265.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1265.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + this file can be distributed under the terms of the GNU General Public License V2 as published by the Free Software Foundation and can be found at https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1265.yml b/src/licensedcode/data/rules/gpl-2.0_1265.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1265.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1266.RULE b/src/licensedcode/data/rules/gpl-2.0_1266.RULE index 5a6a2f1b00b..73447697f4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1266.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1266.RULE @@ -1 +1,13 @@ - @copyright GNU General Public License * @license https://www.gnu.org/licenses/gpl.html \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + + @copyright GNU General Public License * @license https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1266.yml b/src/licensedcode/data/rules/gpl-2.0_1266.yml deleted file mode 100644 index 9188ae431c4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1266.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1267.RULE b/src/licensedcode/data/rules/gpl-2.0_1267.RULE index ceeb26614a2..1939beabf1c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1267.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1267.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.txt +--- + is subject to the ?GNU General Public License Version 2?, which may be obtained at the following web site: https://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1267.yml b/src/licensedcode/data/rules/gpl-2.0_1267.yml deleted file mode 100644 index bcd54ac371f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1267.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1268.RULE b/src/licensedcode/data/rules/gpl-2.0_1268.RULE index f3b9b130152..a5a2f8a045b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1268.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1268.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + BusyBox is licensed under https://www.gnu.org/licenses/old-licenses/gpl-2.0.html the GNU General Public License version , which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat diff --git a/src/licensedcode/data/rules/gpl-2.0_1268.yml b/src/licensedcode/data/rules/gpl-2.0_1268.yml deleted file mode 100644 index f2f029161a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1268.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1269.RULE b/src/licensedcode/data/rules/gpl-2.0_1269.RULE index c0aa16e535a..3bfa24f8062 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1269.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1269.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1269.yml b/src/licensedcode/data/rules/gpl-2.0_1269.yml deleted file mode 100644 index b64307ad9e7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1269.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_127.RULE b/src/licensedcode/data/rules/gpl-2.0_127.RULE index 941eabb0f50..fdb9eaaa026 100644 --- a/src/licensedcode/data/rules/gpl-2.0_127.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_127.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Subject to the GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_127.yml b/src/licensedcode/data/rules/gpl-2.0_127.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1270.RULE b/src/licensedcode/data/rules/gpl-2.0_1270.RULE index d4f38ff5d59..992be138ae4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1270.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1270.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License. @@ -9,4 +19,4 @@ You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, see - https://www.gnu.org/licenses/. + https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1270.yml b/src/licensedcode/data/rules/gpl-2.0_1270.yml deleted file mode 100644 index 8dade81e927..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1270.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1271.RULE b/src/licensedcode/data/rules/gpl-2.0_1271.RULE index ae802af9edf..ad1e5f97445 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1271.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1271.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + Read the GPL v2.0 for legal details. https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1271.yml b/src/licensedcode/data/rules/gpl-2.0_1271.yml deleted file mode 100644 index b64307ad9e7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1271.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1272.RULE b/src/licensedcode/data/rules/gpl-2.0_1272.RULE index 725158bed02..5c8f77777db 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1272.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1272.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 version 2 of the GNU General Public License as published by the Free Software Foundation @@ -8,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 General Public License -along with this program; if not, see . +along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1272.yml b/src/licensedcode/data/rules/gpl-2.0_1272.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1272.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1273.RULE b/src/licensedcode/data/rules/gpl-2.0_1273.RULE index c6002a9cf79..cc3e6863d97 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1273.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1273.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.oracle.com/ + - https://www.gnu.org/licenses +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -19,4 +28,4 @@ Please contact Oracle Corporation, Inc., 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any questions. -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1273.yml b/src/licensedcode/data/rules/gpl-2.0_1273.yml deleted file mode 100644 index 93bc06787f6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1273.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.oracle.com/ - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1274.RULE b/src/licensedcode/data/rules/gpl-2.0_1274.RULE index 54e87dd6b56..4d5fd9ac309 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1274.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1274.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.xyratex.com/contact + - https://www.gnu.org/licenses +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_1274.yml b/src/licensedcode/data/rules/gpl-2.0_1274.yml deleted file mode 100644 index d73c595dbfd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1274.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.xyratex.com/contact - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_1275.RULE b/src/licensedcode/data/rules/gpl-2.0_1275.RULE index 0313d3072d1..bcc1e80c86c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1275.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1275.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + distributed under the terms of the GNU General Public License version 2 (`GPLv2 `_) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1275.yml b/src/licensedcode/data/rules/gpl-2.0_1275.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1275.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1276.RULE b/src/licensedcode/data/rules/gpl-2.0_1276.RULE index e54939ec00f..69e0c457dc7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1276.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1276.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1276.yml b/src/licensedcode/data/rules/gpl-2.0_1276.yml deleted file mode 100644 index cf188ab905f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1276.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1277.RULE b/src/licensedcode/data/rules/gpl-2.0_1277.RULE index 1413da3a584..50bff40f3fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1277.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1277.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -10,4 +20,4 @@ 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 . The full GNU General Public License is included in this distribution -in the file called COPYING. +in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1277.yml b/src/licensedcode/data/rules/gpl-2.0_1277.yml deleted file mode 100644 index 8ad6038cca2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1277.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1278.RULE b/src/licensedcode/data/rules/gpl-2.0_1278.RULE index 34257d7804a..51aff5f0266 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1278.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1278.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. @@ -10,5 +18,4 @@ in the LICENSE file that accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this program; If not, see -https://www.gnu.org/licenses/gpl-2.0.html - +https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1278.yml b/src/licensedcode/data/rules/gpl-2.0_1278.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1278.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1279.RULE b/src/licensedcode/data/rules/gpl-2.0_1279.RULE index 741d5446f20..538e30ce84b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1279.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1279.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Licensed under the GPL license: https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1279.yml b/src/licensedcode/data/rules/gpl-2.0_1279.yml deleted file mode 100644 index 9a230aca9e1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1279.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_128.RULE b/src/licensedcode/data/rules/gpl-2.0_128.RULE index 30ad065be4b..d4764a875a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_128.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_128.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The Linux kernel code has the following (c) and license, which is hence propagated to 's tree and here: @@ -12,4 +17,4 @@ 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. +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_128.yml b/src/licensedcode/data/rules/gpl-2.0_128.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_128.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1280.RULE b/src/licensedcode/data/rules/gpl-2.0_1280.RULE index 0e74ebe4083..108c8624e13 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1280.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1280.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.gnu.org/licenses/gpl-faq.html + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + license BusyBox is licensed under the GNU General Public License, version 2 @@ -22,4 +33,4 @@ distribute the source code to that GPL-licensed software. If you distribute BusyBox without making the source code to the version you distribute available, you violate the license terms, and thus infringe on the copyrights of BusyBox. This requirement applies whether or not you modified BusyBox; either way the -license terms still apply to you. \ No newline at end of file +license terms still apply to you. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1280.yml b/src/licensedcode/data/rules/gpl-2.0_1280.yml deleted file mode 100644 index a10742d7b45..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1280.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.gnu.org/licenses/gpl-faq.html - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1281.RULE b/src/licensedcode/data/rules/gpl-2.0_1281.RULE index 39d4e7d65e8..2a9d069ffb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1281.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1281.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + This program and the accompanying materials are made available under the terms of the GPLv2 a copy of which accompanies this distribution, and is available at: diff --git a/src/licensedcode/data/rules/gpl-2.0_1281.yml b/src/licensedcode/data/rules/gpl-2.0_1281.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1281.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1282.RULE b/src/licensedcode/data/rules/gpl-2.0_1282.RULE index d20e29580c9..b44df8a6a41 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1282.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1282.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + licensed under a Creative Commons GNU General Public License Please see the full text of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1282.yml b/src/licensedcode/data/rules/gpl-2.0_1282.yml deleted file mode 100644 index 912ff43f657..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1282.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1283.RULE b/src/licensedcode/data/rules/gpl-2.0_1283.RULE index ce302fbe0f4..8b5a74a8ddc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1283.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1283.RULE @@ -1,4 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Use of this code is subject to the terms and conditions of the GNU general public license version 2. See "COPYING" or -https://www.gnu.org/licenses/gpl.html +https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1283.yml b/src/licensedcode/data/rules/gpl-2.0_1283.yml deleted file mode 100644 index d7adff7c62d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1283.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1284.RULE b/src/licensedcode/data/rules/gpl-2.0_1284.RULE index 511f5da13cf..b07abbe79c3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1284.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1284.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + License: GNU General Public Licence 2.0 -License URI: https://www.gnu.org/licenses/gpl-2.0.html +License URI: https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1284.yml b/src/licensedcode/data/rules/gpl-2.0_1284.yml deleted file mode 100644 index 682c67b9c7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1284.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1285.RULE b/src/licensedcode/data/rules/gpl-2.0_1285.RULE index 4d88ed821b7..d5c3ace0413 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1285.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1285.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + # This software is licensed to you under the GNU General Public License, # version 2 (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS diff --git a/src/licensedcode/data/rules/gpl-2.0_1285.yml b/src/licensedcode/data/rules/gpl-2.0_1285.yml deleted file mode 100644 index c6857503705..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1285.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1286.RULE b/src/licensedcode/data/rules/gpl-2.0_1286.RULE index b8b5d03a6e0..39386d2ee33 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1286.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1286.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1286.yml b/src/licensedcode/data/rules/gpl-2.0_1286.yml deleted file mode 100644 index 5def007926b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1286.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1287.RULE b/src/licensedcode/data/rules/gpl-2.0_1287.RULE index dbaf0fe9c97..d6b7deab5bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1287.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1287.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. @@ -13,4 +22,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - Or, point your browser to https://www.gnu.org/copyleft/gpl.html + Or, point your browser to https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1287.yml b/src/licensedcode/data/rules/gpl-2.0_1287.yml deleted file mode 100644 index 46c3d713ca7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1287.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1288.RULE b/src/licensedcode/data/rules/gpl-2.0_1288.RULE index 9a0ad32b390..78c7b928db0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1288.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1288.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + licensed under the terms of the GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1288.yml b/src/licensedcode/data/rules/gpl-2.0_1288.yml deleted file mode 100644 index d43ddc41f2b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1288.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1289.RULE b/src/licensedcode/data/rules/gpl-2.0_1289.RULE index 0cb16a2350c..17755f46a9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1289.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1289.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + * GNU General Public License, version 2 * https://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1289.yml b/src/licensedcode/data/rules/gpl-2.0_1289.yml deleted file mode 100644 index d43ddc41f2b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1289.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_129.RULE b/src/licensedcode/data/rules/gpl-2.0_129.RULE index b004f8375d6..f15d139176a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_129.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_129.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL from linux +--- + 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; version 2 dated June, 1991. @@ -12,4 +18,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_129.yml b/src/licensedcode/data/rules/gpl-2.0_129.yml deleted file mode 100644 index ce61b90c33a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL from linux diff --git a/src/licensedcode/data/rules/gpl-2.0_1290.RULE b/src/licensedcode/data/rules/gpl-2.0_1290.RULE index d3e5956b79a..baadc99fd9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1290.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1290.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1290.yml b/src/licensedcode/data/rules/gpl-2.0_1290.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1290.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1291.RULE b/src/licensedcode/data/rules/gpl-2.0_1291.RULE index 4798ed4de77..3fbf5f40c5c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1291.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1291.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + The full text of the GPLv can be found in /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1291.yml b/src/licensedcode/data/rules/gpl-2.0_1291.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1291.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1292.RULE b/src/licensedcode/data/rules/gpl-2.0_1292.RULE index 3c69f240155..ed90d6384a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1292.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1292.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1292.yml b/src/licensedcode/data/rules/gpl-2.0_1292.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1292.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1293.RULE b/src/licensedcode/data/rules/gpl-2.0_1293.RULE index b8365e851f8..fd519a63efc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1293.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1293.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian and systems the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2` \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1293.yml b/src/licensedcode/data/rules/gpl-2.0_1293.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1293.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1294.RULE b/src/licensedcode/data/rules/gpl-2.0_1294.RULE index b91489cc8c6..776013555f6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1294.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1294.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + The full text of the GNU General Public License version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1294.yml b/src/licensedcode/data/rules/gpl-2.0_1294.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1294.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1295.RULE b/src/licensedcode/data/rules/gpl-2.0_1295.RULE index 04bffb62a3e..d7dd4bf010d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1295.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1295.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the complete text of version 2 of the GNU General Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1295.yml b/src/licensedcode/data/rules/gpl-2.0_1295.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1295.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1296.RULE b/src/licensedcode/data/rules/gpl-2.0_1296.RULE index e4294a5cfe3..8e1ee57c84c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1296.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1296.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_1296.yml b/src/licensedcode/data/rules/gpl-2.0_1296.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1296.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1297.RULE b/src/licensedcode/data/rules/gpl-2.0_1297.RULE index 7272f921896..ceb958b90e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1297.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1297.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1297.yml b/src/licensedcode/data/rules/gpl-2.0_1297.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1298.RULE b/src/licensedcode/data/rules/gpl-2.0_1298.RULE index 5466e208cc2..c6efde5db64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1298.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1298.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + The GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1298.yml b/src/licensedcode/data/rules/gpl-2.0_1298.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1299.RULE b/src/licensedcode/data/rules/gpl-2.0_1299.RULE index 2d3583fc714..430cc3967b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1299.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1299.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - COPYING + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the complete text of the GNU General Public License can be found in ‘/usr/share/common-licenses/GPL-2’ or in the dpkg source as the file ‘COPYING’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1299.yml b/src/licensedcode/data/rules/gpl-2.0_1299.yml deleted file mode 100644 index fbfcc1b3247..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1299.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - COPYING - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_13.RULE b/src/licensedcode/data/rules/gpl-2.0_13.RULE index ca70412da42..865dc2f7245 100644 --- a/src/licensedcode/data/rules/gpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 70 +notes: kernel gpl notice +--- + 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; version 2 of the License. @@ -29,4 +36,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_13.yml b/src/licensedcode/data/rules/gpl-2.0_13.yml deleted file mode 100644 index 78382045f1b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 70 -notes: kernel gpl notice diff --git a/src/licensedcode/data/rules/gpl-2.0_130.RULE b/src/licensedcode/data/rules/gpl-2.0_130.RULE index 21d88f88cb1..e1eafc3a5e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_130.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_130.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; you can distribute it and/or modify it under the terms of the GNU General Public License (Version 2) as published by the Free Software Foundation. @@ -8,4 +13,4 @@ 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., 59 Temple Place - Suite 330, Boston MA 02111-1307, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_130.yml b/src/licensedcode/data/rules/gpl-2.0_130.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_130.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1300.RULE b/src/licensedcode/data/rules/gpl-2.0_1300.RULE index 7a75654c9bb..55e517629c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1300.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1300.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; diff --git a/src/licensedcode/data/rules/gpl-2.0_1300.yml b/src/licensedcode/data/rules/gpl-2.0_1300.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1300.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1301.RULE b/src/licensedcode/data/rules/gpl-2.0_1301.RULE index 3a4d5ca51aa..7ac1dd06353 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1301.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1301.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; diff --git a/src/licensedcode/data/rules/gpl-2.0_1301.yml b/src/licensedcode/data/rules/gpl-2.0_1301.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1301.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1302.RULE b/src/licensedcode/data/rules/gpl-2.0_1302.RULE index 459b2ff3b83..1664dfe266b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1302.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1302.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation under the terms of the GNU General Public License is hereby granted. No representations are made about the suitability of diff --git a/src/licensedcode/data/rules/gpl-2.0_1302.yml b/src/licensedcode/data/rules/gpl-2.0_1302.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1302.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1303.RULE b/src/licensedcode/data/rules/gpl-2.0_1303.RULE index 3dc11b1c20c..dfd1967aacd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1303.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1303.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_1303.yml b/src/licensedcode/data/rules/gpl-2.0_1303.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1303.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1304.RULE b/src/licensedcode/data/rules/gpl-2.0_1304.RULE index 6ae9698d9f5..ba0abaf8779 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1304.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1304.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation under the terms of the GNU General Public License is hereby granted. No representations are made about the suitability of diff --git a/src/licensedcode/data/rules/gpl-2.0_1304.yml b/src/licensedcode/data/rules/gpl-2.0_1304.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1305.RULE b/src/licensedcode/data/rules/gpl-2.0_1305.RULE index 4d1f50ce5b3..4305a0f814d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1305.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1305.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1305.yml b/src/licensedcode/data/rules/gpl-2.0_1305.yml deleted file mode 100644 index d21846151d9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1305.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1306.RULE b/src/licensedcode/data/rules/gpl-2.0_1306.RULE index c827455ee2c..3af519321ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1306.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1306.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, v2, as published by the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1306.yml b/src/licensedcode/data/rules/gpl-2.0_1306.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1306.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1307.RULE b/src/licensedcode/data/rules/gpl-2.0_1307.RULE index 7e26cecf73e..0c10d4723a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1307.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1307.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The package scripts are copyright (C) , written by and licensed under GPL v2. @@ -18,5 +24,4 @@ Copyright: 02110-1301, USA. On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1307.yml b/src/licensedcode/data/rules/gpl-2.0_1307.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1308.RULE b/src/licensedcode/data/rules/gpl-2.0_1308.RULE index 7eac4257d80..d88cd120f4d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1308.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1308.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_1308.yml b/src/licensedcode/data/rules/gpl-2.0_1308.yml deleted file mode 100644 index c0da60c33da..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1308.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_1309.RULE b/src/licensedcode/data/rules/gpl-2.0_1309.RULE index 8fd669d16f5..b47d6d6262b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1309.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1309.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the text of the version of the GNU General Public License distributed with Doxygen can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1309.yml b/src/licensedcode/data/rules/gpl-2.0_1309.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1309.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_131.RULE b/src/licensedcode/data/rules/gpl-2.0_131.RULE index a5779914802..e1bf2dd2043 100644 --- a/src/licensedcode/data/rules/gpl-2.0_131.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_131.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE.GPL +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -13,4 +21,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA The full GNU General Public License is included in this distribution -in the file called LICENSE.GPL. +in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_131.yml b/src/licensedcode/data/rules/gpl-2.0_131.yml deleted file mode 100644 index f706a313e4a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_131.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_1310.RULE b/src/licensedcode/data/rules/gpl-2.0_1310.RULE index c243d973873..73ed6fa9a9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1310.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1310.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the text of the GNU General Public - License version 2 can be found in '/usr/share/common-licenses/GPL-2'. + License version 2 can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1310.yml b/src/licensedcode/data/rules/gpl-2.0_1310.yml deleted file mode 100644 index aabd145dfe2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1310.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1311.RULE b/src/licensedcode/data/rules/gpl-2.0_1311.RULE index 9698a8be6ed..e69f6a4b1d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1311.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1311.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1311.yml b/src/licensedcode/data/rules/gpl-2.0_1311.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1312.RULE b/src/licensedcode/data/rules/gpl-2.0_1312.RULE index 295e279b436..419e16776ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1312.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1312.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + and licensed under GPL v2. Copyright: diff --git a/src/licensedcode/data/rules/gpl-2.0_1312.yml b/src/licensedcode/data/rules/gpl-2.0_1312.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1312.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1313.RULE b/src/licensedcode/data/rules/gpl-2.0_1313.RULE index fe5f94ac094..57ca1654d8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1313.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1313.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU General Public License, version 2. On Debian systems, the text of the GNU General Public License can be found in the file diff --git a/src/licensedcode/data/rules/gpl-2.0_1313.yml b/src/licensedcode/data/rules/gpl-2.0_1313.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1314.RULE b/src/licensedcode/data/rules/gpl-2.0_1314.RULE index e3887c88ad5..00d3cfe9a35 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1314.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1314.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the text of the GNU General Public License can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1314.yml b/src/licensedcode/data/rules/gpl-2.0_1314.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1314.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1315.RULE b/src/licensedcode/data/rules/gpl-2.0_1315.RULE index 28328262420..9cfed75c8a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1315.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1315.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the text of the GNU General Public License can be found in '/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1315.yml b/src/licensedcode/data/rules/gpl-2.0_1315.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1315.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1316.RULE b/src/licensedcode/data/rules/gpl-2.0_1316.RULE index f4cf7fd40cc..31b05cce091 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1316.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1316.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the text of version 2 of the GNU General Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1316.yml b/src/licensedcode/data/rules/gpl-2.0_1316.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1316.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1317.RULE b/src/licensedcode/data/rules/gpl-2.0_1317.RULE index f40d69bcbd3..13968046d27 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1317.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1317.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This package 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; version 2 dated June, 1991. @@ -13,5 +19,4 @@ 02110-1301, USA. On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. - \ No newline at end of file +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1317.yml b/src/licensedcode/data/rules/gpl-2.0_1317.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1318.RULE b/src/licensedcode/data/rules/gpl-2.0_1318.RULE index 012f0c33923..a592655f9a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1318.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1318.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License: This package is free software; you can redistribute it and/or modify @@ -15,4 +21,4 @@ License: MA 02110-1301, USA. On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1318.yml b/src/licensedcode/data/rules/gpl-2.0_1318.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1319.RULE b/src/licensedcode/data/rules/gpl-2.0_1319.RULE index ac4eff043d8..e3510dd81ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1319.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1319.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +notes: incorrect reference to GPL-1.0 text +--- + This package 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1319.yml b/src/licensedcode/data/rules/gpl-2.0_1319.yml deleted file mode 100644 index ca3a148d54f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1319.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-1 -notes: incorrect reference to GPL-1.0 text diff --git a/src/licensedcode/data/rules/gpl-2.0_132.RULE b/src/licensedcode/data/rules/gpl-2.0_132.RULE index b3361d5756c..32209fab270 100644 --- a/src/licensedcode/data/rules/gpl-2.0_132.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_132.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE.GPL +--- + GPL LICENSE SUMMARY @@ -16,4 +24,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA The full GNU General Public License is included in this distribution -in the file called LICENSE.GPL. +in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_132.yml b/src/licensedcode/data/rules/gpl-2.0_132.yml deleted file mode 100644 index f706a313e4a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_132.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_1320.RULE b/src/licensedcode/data/rules/gpl-2.0_1320.RULE index 704dea997e0..10d432ff812 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1320.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1320.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + This package 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1320.yml b/src/licensedcode/data/rules/gpl-2.0_1320.yml deleted file mode 100644 index 6a267cfc0a1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1320.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_1321.RULE b/src/licensedcode/data/rules/gpl-2.0_1321.RULE index dca1b8e3b5f..c1fad0e5411 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1321.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1321.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1321.yml b/src/licensedcode/data/rules/gpl-2.0_1321.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1321.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1322.RULE b/src/licensedcode/data/rules/gpl-2.0_1322.RULE index 0884e4a1d51..be3448718b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1322.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1322.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://www.trolltech.com/products/qt/licensing.html + - http://www.trolltech.com/products/qt/opensource.html +ignorable_emails: + - sales@trolltech.com +--- + License for all components is: -- GNU General Public License, version 2 (GPL-2) @@ -21,4 +33,4 @@ License for all components is: On Debian systems, the text of the GNU General Public License version 2 can be found in - /usr/share/common-licenses/GPL-2 + /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1322.yml b/src/licensedcode/data/rules/gpl-2.0_1322.yml deleted file mode 100644 index f25188c9a95..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1322.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://www.trolltech.com/products/qt/licensing.html - - http://www.trolltech.com/products/qt/opensource.html -ignorable_emails: - - sales@trolltech.com diff --git a/src/licensedcode/data/rules/gpl-2.0_1323.RULE b/src/licensedcode/data/rules/gpl-2.0_1323.RULE index 72bc3afb07c..cab1a00beab 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1323.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1323.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the text of the GNU General Public License can be found in ‘/usr/share/common-licenses/GPL-2’ or in the dpkg source as the file ‘COPYING’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1323.yml b/src/licensedcode/data/rules/gpl-2.0_1323.yml deleted file mode 100644 index 3ddf657f52b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1323.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1324.RULE b/src/licensedcode/data/rules/gpl-2.0_1324.RULE index 9cd59d53bd7..9bfdb03a360 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1324.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1324.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/gpl-2.0_1324.yml b/src/licensedcode/data/rules/gpl-2.0_1324.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1324.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1325.RULE b/src/licensedcode/data/rules/gpl-2.0_1325.RULE index ded0adafd3a..11219e02e6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1325.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1325.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the complete text of the GPL version 2 license can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1325.yml b/src/licensedcode/data/rules/gpl-2.0_1325.yml deleted file mode 100644 index 51e2bae0042..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1325.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1326.RULE b/src/licensedcode/data/rules/gpl-2.0_1326.RULE index a78f12f0695..f0a304d6b9a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1326.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1326.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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; diff --git a/src/licensedcode/data/rules/gpl-2.0_1326.yml b/src/licensedcode/data/rules/gpl-2.0_1326.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1326.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1327.RULE b/src/licensedcode/data/rules/gpl-2.0_1327.RULE index e6e89602aad..c75c6d8b2a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1327.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1327.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1327.yml b/src/licensedcode/data/rules/gpl-2.0_1327.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1327.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1328.RULE b/src/licensedcode/data/rules/gpl-2.0_1328.RULE index b61e7daac11..613ea4b5a68 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1328.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1328.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING + - README +--- + These files fall under the blanket license specified in the file COPYING and README GPLv2 Disclaimer: diff --git a/src/licensedcode/data/rules/gpl-2.0_1328.yml b/src/licensedcode/data/rules/gpl-2.0_1328.yml deleted file mode 100644 index a157dd0cccc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1328.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING - - README diff --git a/src/licensedcode/data/rules/gpl-2.0_1329.RULE b/src/licensedcode/data/rules/gpl-2.0_1329.RULE index d21b35087f1..2f2944fa4bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1329.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1329.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +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; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_1329.yml b/src/licensedcode/data/rules/gpl-2.0_1329.yml deleted file mode 100644 index f63b94a4633..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1329.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_133.RULE b/src/licensedcode/data/rules/gpl-2.0_133.RULE index 95e6bc03180..24a3f0a0107 100644 --- a/src/licensedcode/data/rules/gpl-2.0_133.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_133.RULE @@ -1,7 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + 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. This program is distributed in the hope that it will be useful, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_133.yml b/src/licensedcode/data/rules/gpl-2.0_133.yml deleted file mode 100644 index b7e902d5990..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_1330.RULE b/src/licensedcode/data/rules/gpl-2.0_1330.RULE index 160cf361b88..bbdeb0a04b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1330.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1330.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This package 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1330.yml b/src/licensedcode/data/rules/gpl-2.0_1330.yml deleted file mode 100644 index f5e7c898469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1330.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1331.RULE b/src/licensedcode/data/rules/gpl-2.0_1331.RULE index 88d0221b5d7..ef640e7dfac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1331.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1331.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This package 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_1331.yml b/src/licensedcode/data/rules/gpl-2.0_1331.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1331.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1332.RULE b/src/licensedcode/data/rules/gpl-2.0_1332.RULE index ecb0ca79ba9..7c488fe9fa4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1332.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1332.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems, the complete text of the GNU General Public License 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1332.yml b/src/licensedcode/data/rules/gpl-2.0_1332.yml deleted file mode 100644 index e133ff878b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1332.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_1333.RULE b/src/licensedcode/data/rules/gpl-2.0_1333.RULE index 73bc53c21e3..86654e1a8f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1333.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1333.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This program is free software, distributed under the terms of the GNU General Public License Version 2. See the LICENSE file at the top of the source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1333.yml b/src/licensedcode/data/rules/gpl-2.0_1333.yml deleted file mode 100644 index 37643e41a3a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1333.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_1334.RULE b/src/licensedcode/data/rules/gpl-2.0_1334.RULE index 6af2a5050b7..5bda6585d0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1334.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1334.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + may be distributed under the terms of GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1334.yml b/src/licensedcode/data/rules/gpl-2.0_1334.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1334.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1335.RULE b/src/licensedcode/data/rules/gpl-2.0_1335.RULE index 3f0a758db7d..10c9d03b85b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1335.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1335.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Version 2 of the GPL is the only version of the GPL which current versions of BusyBox may be distributed under. New code added to the tree is licensed GPL version 2, and the project's license is GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1335.yml b/src/licensedcode/data/rules/gpl-2.0_1335.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1335.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1336.RULE b/src/licensedcode/data/rules/gpl-2.0_1336.RULE index 575da1db477..e2c327b26fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1336.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1336.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1336.yml b/src/licensedcode/data/rules/gpl-2.0_1336.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1336.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1337.RULE b/src/licensedcode/data/rules/gpl-2.0_1337.RULE index 46d3552fd57..52e90d018c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1337.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1337.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + The GNU General Public License, Version 2.0 https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1337.yml b/src/licensedcode/data/rules/gpl-2.0_1337.yml deleted file mode 100644 index 3905530e3cb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1337.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1338.RULE b/src/licensedcode/data/rules/gpl-2.0_1338.RULE index c35e14c59d9..c6abd29db23 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1338.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1338.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + The GNU General Public License, Version 2.0 http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1338.yml b/src/licensedcode/data/rules/gpl-2.0_1338.yml deleted file mode 100644 index d1a613a4422..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1338.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1339.RULE b/src/licensedcode/data/rules/gpl-2.0_1339.RULE index 735c456c5f3..45db5ad41b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1339.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1339.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + The GNU General Public License, Version 2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_1339.yml b/src/licensedcode/data/rules/gpl-2.0_1339.yml deleted file mode 100644 index 3905530e3cb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1339.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_134.RULE b/src/licensedcode/data/rules/gpl-2.0_134.RULE index 00d11856bf0..19c95fb00c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_134.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_134.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 70 +--- + 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 @@ -6,4 +12,4 @@ published by the Free Software Foundation; Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. -See the GNU General Public License for more details. +See the GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_134.yml b/src/licensedcode/data/rules/gpl-2.0_134.yml deleted file mode 100644 index 257732a98e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0_1340.RULE b/src/licensedcode/data/rules/gpl-2.0_1340.RULE index 6577f2a3233..54354275826 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1340.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1340.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + The {{GNU General Public License}}, Version 2.0 - http://www.gnu.org/licenses/gpl-2.0.txt + http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1340.yml b/src/licensedcode/data/rules/gpl-2.0_1340.yml deleted file mode 100644 index d1a613a4422..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1340.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1341.RULE b/src/licensedcode/data/rules/gpl-2.0_1341.RULE index 5890a831d1d..1a51064a623 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1341.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1341.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1341.yml b/src/licensedcode/data/rules/gpl-2.0_1341.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1342.RULE b/src/licensedcode/data/rules/gpl-2.0_1342.RULE index 9533d2daf1d..e9d21365328 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1342.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1342.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_1342.yml b/src/licensedcode/data/rules/gpl-2.0_1342.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1342.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1343.RULE b/src/licensedcode/data/rules/gpl-2.0_1343.RULE index dab21c572ff..99f0ba5670e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1343.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1343.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License version 2, which is often abbreviated as GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1343.yml b/src/licensedcode/data/rules/gpl-2.0_1343.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1343.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1344.RULE b/src/licensedcode/data/rules/gpl-2.0_1344.RULE index 1c3c5fe224c..3aa081104b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1344.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1344.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + released under GNU General Public License, version 2 (GPL v.2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1344.yml b/src/licensedcode/data/rules/gpl-2.0_1344.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1344.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1345.RULE b/src/licensedcode/data/rules/gpl-2.0_1345.RULE index 1c14db7915f..fc96f582470 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1345.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1345.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + released under GNU General Public License, version 2 (GPL v.2). 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 GPLv.2 license for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1345.yml b/src/licensedcode/data/rules/gpl-2.0_1345.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1345.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1346.RULE b/src/licensedcode/data/rules/gpl-2.0_1346.RULE index 29348bb9d39..a78f0345f30 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1346.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1346.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-2.0 GNU General Public License v2.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1346.yml b/src/licensedcode/data/rules/gpl-2.0_1346.yml deleted file mode 100644 index af0e77b2be5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1346.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_1347.RULE b/src/licensedcode/data/rules/gpl-2.0_1347.RULE index 2bc45dba84e..bf72615ca0f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1347.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1347.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v2.0 only GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1347.yml b/src/licensedcode/data/rules/gpl-2.0_1347.yml deleted file mode 100644 index af0e77b2be5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1347.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_1348.RULE b/src/licensedcode/data/rules/gpl-2.0_1348.RULE index 3dd4a11cbd6..1f6f98d7038 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1348.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1348.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1348.yml b/src/licensedcode/data/rules/gpl-2.0_1348.yml deleted file mode 100644 index af0e77b2be5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1348.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_1349.RULE b/src/licensedcode/data/rules/gpl-2.0_1349.RULE index 413c1b2667e..e58e54d7a65 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1349.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1349.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v2.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1349.yml b/src/licensedcode/data/rules/gpl-2.0_1349.yml deleted file mode 100644 index af0e77b2be5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1349.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_135.RULE b/src/licensedcode/data/rules/gpl-2.0_135.RULE index 83bb5e9ae33..c50d7cfc0fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_135.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_135.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: found in a project using the GPL-2.0 +--- + Both of these 2 wonderful world are GPL, so this is, of course, GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_135.yml b/src/licensedcode/data/rules/gpl-2.0_135.yml deleted file mode 100644 index b42c7a7ca20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_135.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: found in a project using the GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_1350.RULE b/src/licensedcode/data/rules/gpl-2.0_1350.RULE index 2103f9573e6..a2fcd28ec08 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1350.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1350.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-2.0-only GNU General Public License v2.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1350.yml b/src/licensedcode/data/rules/gpl-2.0_1350.yml deleted file mode 100644 index 8264318e050..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1350.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0_1351.RULE b/src/licensedcode/data/rules/gpl-2.0_1351.RULE index cd6ac2ac9d1..4c6296b8927 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1351.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1351.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU General Public License v2.0 only GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1351.yml b/src/licensedcode/data/rules/gpl-2.0_1351.yml deleted file mode 100644 index 8264318e050..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1351.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0_1352.RULE b/src/licensedcode/data/rules/gpl-2.0_1352.RULE index d9a82aa6cb3..ccba2014a43 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1352.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1352.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1352.yml b/src/licensedcode/data/rules/gpl-2.0_1352.yml deleted file mode 100644 index e065e5da2c7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1352.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0_1353.RULE b/src/licensedcode/data/rules/gpl-2.0_1353.RULE index 6e992e41573..6e6df2f0462 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1353.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1353.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1353.yml b/src/licensedcode/data/rules/gpl-2.0_1353.yml deleted file mode 100644 index e065e5da2c7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1353.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-2.0_1354.RULE b/src/licensedcode/data/rules/gpl-2.0_1354.RULE index 2a8d513b514..2e8682e50aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1354.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1354.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'GNU General Public License, version 2': 'GPL-2.0-only', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1354.yml b/src/licensedcode/data/rules/gpl-2.0_1354.yml deleted file mode 100644 index 1282c6d9264..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1354.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1355.RULE b/src/licensedcode/data/rules/gpl-2.0_1355.RULE index a4823b31c70..3944a4e7032 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1355.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1355.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['GPLV2', 'GPL-2.0-only'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1355.yml b/src/licensedcode/data/rules/gpl-2.0_1355.yml deleted file mode 100644 index 1282c6d9264..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1355.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1356.RULE b/src/licensedcode/data/rules/gpl-2.0_1356.RULE index 8e1b8493b73..1d276e19940 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1356.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1356.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Gnu public license v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1356.yml b/src/licensedcode/data/rules/gpl-2.0_1356.yml deleted file mode 100644 index 1282c6d9264..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1356.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1357.RULE b/src/licensedcode/data/rules/gpl-2.0_1357.RULE index 47aede89d8d..b504ac3cbee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1357.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1357.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL V2: GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1357.yml b/src/licensedcode/data/rules/gpl-2.0_1357.yml deleted file mode 100644 index 1282c6d9264..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1357.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1358.RULE b/src/licensedcode/data/rules/gpl-2.0_1358.RULE index 686cfbf48f3..5fd95ef2f57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1358.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1358.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL v2.0: GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1358.yml b/src/licensedcode/data/rules/gpl-2.0_1358.yml deleted file mode 100644 index 1282c6d9264..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1358.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1359.RULE b/src/licensedcode/data/rules/gpl-2.0_1359.RULE index c6b981372b1..e00668ad568 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1359.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1359.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPLv2: GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1359.yml b/src/licensedcode/data/rules/gpl-2.0_1359.yml deleted file mode 100644 index 1282c6d9264..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1359.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_136.RULE b/src/licensedcode/data/rules/gpl-2.0_136.RULE index f7ac5e54628..ea2f25b7f04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_136.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_136.RULE @@ -1,3 +1,8 @@ +--- +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; @@ -5,4 +10,4 @@ published by the Free Software Foundation; Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing -rights and limitations under the License. +rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_136.yml b/src/licensedcode/data/rules/gpl-2.0_136.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_136.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1360.RULE b/src/licensedcode/data/rules/gpl-2.0_1360.RULE index b0e461fc6bf..8bfa9f9e44c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1360.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1360.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU General Public License v2.0: GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1360.yml b/src/licensedcode/data/rules/gpl-2.0_1360.yml deleted file mode 100644 index 1282c6d9264..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1360.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1361.RULE b/src/licensedcode/data/rules/gpl-2.0_1361.RULE index 5657549535e..b9ca966f48c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1361.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1361.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed with the GPL Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1361.yml b/src/licensedcode/data/rules/gpl-2.0_1361.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1361.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1362.RULE b/src/licensedcode/data/rules/gpl-2.0_1362.RULE index 1c04e4d16cc..ee70ece7fb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1362.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1362.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + available under the GPLv2 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1362.yml b/src/licensedcode/data/rules/gpl-2.0_1362.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1362.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1363.RULE b/src/licensedcode/data/rules/gpl-2.0_1363.RULE index 504c379da2d..363e68f09cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1363.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1363.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/GNU_General_Public_License#Version_2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1363.yml b/src/licensedcode/data/rules/gpl-2.0_1363.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1363.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1364.RULE b/src/licensedcode/data/rules/gpl-2.0_1364.RULE index 927e49897cd..69c8dbbd497 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1364.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1364.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + licensed under the GNU General Public License (GPL). License terms appear in GNU General Public License version 2 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1364.yml b/src/licensedcode/data/rules/gpl-2.0_1364.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1364.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1365.RULE b/src/licensedcode/data/rules/gpl-2.0_1365.RULE index feb24d98e58..b3b709e256a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1365.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1365.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The C library at the core of this Perl module can additionally be used, modified and redistributed under the terms of the GNU General Public License version 2 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1365.yml b/src/licensedcode/data/rules/gpl-2.0_1365.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1365.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1366.RULE b/src/licensedcode/data/rules/gpl-2.0_1366.RULE index 68ca83f931b..6e4770a8d0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1366.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1366.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1366.yml b/src/licensedcode/data/rules/gpl-2.0_1366.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1366.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1367.RULE b/src/licensedcode/data/rules/gpl-2.0_1367.RULE index a4dc389561f..5c73465e0bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1367.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1367.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/GPL-2.0 +--- + http://opensource.org/licenses/GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1367.yml b/src/licensedcode/data/rules/gpl-2.0_1367.yml deleted file mode 100644 index 9c7ac052739..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1367.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_1368.RULE b/src/licensedcode/data/rules/gpl-2.0_1368.RULE index d8a0a438c03..c3369dcba25 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1368.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1368.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/GPL-2.0 +--- + https://opensource.org/licenses/GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1368.yml b/src/licensedcode/data/rules/gpl-2.0_1368.yml deleted file mode 100644 index 69154a8d619..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1368.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_1369.RULE b/src/licensedcode/data/rules/gpl-2.0_1369.RULE index 420dbd41312..e4fb171ff33 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1369.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1369.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GPL-2.0-only +--- + https://licenses.nuget.org/GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1369.yml b/src/licensedcode/data/rules/gpl-2.0_1369.yml deleted file mode 100644 index 5b6aa1c084f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1369.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GPL-2.0-only diff --git a/src/licensedcode/data/rules/gpl-2.0_137.RULE b/src/licensedcode/data/rules/gpl-2.0_137.RULE index 6f57c311de5..c92e0fa355f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_137.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_137.RULE @@ -1 +1,8 @@ -See linux/lib/crc32.c for license and changes +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +--- + +See linux/lib/crc32.c for license and changes \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_137.yml b/src/licensedcode/data/rules/gpl-2.0_137.yml deleted file mode 100644 index a47f6fc9f34..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_137.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_1370.RULE b/src/licensedcode/data/rules/gpl-2.0_1370.RULE index 88ae8f4e252..ccc315b2f4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1370.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1370.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1370.yml b/src/licensedcode/data/rules/gpl-2.0_1370.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1371.RULE b/src/licensedcode/data/rules/gpl-2.0_1371.RULE index 67ff0575b00..88268c4343e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1371.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1371.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + licenses: GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1371.yml b/src/licensedcode/data/rules/gpl-2.0_1371.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1371.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1372.RULE b/src/licensedcode/data/rules/gpl-2.0_1372.RULE index 428b69cdfab..b5fc540670f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1372.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1372.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + licenses: GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1372.yml b/src/licensedcode/data/rules/gpl-2.0_1372.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1372.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1373.RULE b/src/licensedcode/data/rules/gpl-2.0_1373.RULE index 289bc679715..55a5d707166 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1373.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1373.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + licenses: GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1373.yml b/src/licensedcode/data/rules/gpl-2.0_1373.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1373.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1374.RULE b/src/licensedcode/data/rules/gpl-2.0_1374.RULE index ccd16d8e147..11d455b1769 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1374.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1374.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt +--- + license> GNU General Public License, version 2 https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1374.yml b/src/licensedcode/data/rules/gpl-2.0_1374.yml deleted file mode 100644 index 3905530e3cb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1374.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_1375.RULE b/src/licensedcode/data/rules/gpl-2.0_1375.RULE index d4220f0dbf2..79233888c75 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1375.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1375.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl-2.0.html +--- + GNU General Public License https://gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1375.yml b/src/licensedcode/data/rules/gpl-2.0_1375.yml deleted file mode 100644 index b80f09ed4b8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1375.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1376.RULE b/src/licensedcode/data/rules/gpl-2.0_1376.RULE index 8bd622349e1..c357a14aa48 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1376.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1376.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +notes: minor old FSF variant with "library" and truncated notice. Seen in pyinstaller +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_1376.yml b/src/licensedcode/data/rules/gpl-2.0_1376.yml deleted file mode 100644 index c717a1640ad..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1376.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -notes: minor old FSF variant with "library" and truncated notice. Seen in pyinstaller -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1377.RULE b/src/licensedcode/data/rules/gpl-2.0_1377.RULE index d7bd8d231ba..c0f362b78ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1377.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1377.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +notes: See https://github.com/NationalSecurityAgency/ghidra for various oddities such as https://github.com/NationalSecurityAgency/ghidra/blob/e43ef9baaf3c21efb5ea20c3a4d3314d64fdb5cf/GPL/GnuDisassembler/certification.manifest#L3 +--- + #MODULE IP: GPL 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1377.yml b/src/licensedcode/data/rules/gpl-2.0_1377.yml deleted file mode 100644 index 7bb03dcb8ef..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1377.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -notes: See https://github.com/NationalSecurityAgency/ghidra for various oddities such as https://github.com/NationalSecurityAgency/ghidra/blob/e43ef9baaf3c21efb5ea20c3a4d3314d64fdb5cf/GPL/GnuDisassembler/certification.manifest#L3 diff --git a/src/licensedcode/data/rules/gpl-2.0_1378.RULE b/src/licensedcode/data/rules/gpl-2.0_1378.RULE index 8855397d9a6..bcc886cc913 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1378.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1378.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0-only +--- + {{GPL-2.0-only}} https://spdx.org/licenses/GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1378.yml b/src/licensedcode/data/rules/gpl-2.0_1378.yml deleted file mode 100644 index b41b2b29c88..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1378.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0-only diff --git a/src/licensedcode/data/rules/gpl-2.0_1379.RULE b/src/licensedcode/data/rules/gpl-2.0_1379.RULE index 4e514598f88..71b0ecbe09a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1379.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1379.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0-only +--- + LICENSE {{GPL-2.0-only}} https://spdx.org/licenses/GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1379.yml b/src/licensedcode/data/rules/gpl-2.0_1379.yml deleted file mode 100644 index b41b2b29c88..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1379.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0-only diff --git a/src/licensedcode/data/rules/gpl-2.0_138.RULE b/src/licensedcode/data/rules/gpl-2.0_138.RULE index d5ce32072f1..5d4af04c93c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_138.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_138.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is released under GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_138.yml b/src/licensedcode/data/rules/gpl-2.0_138.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1380.RULE b/src/licensedcode/data/rules/gpl-2.0_1380.RULE index f59650e2ad5..ef06d701de0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1380.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1380.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0 +--- + {{GPL-2.0}} https://spdx.org/licenses/GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1380.yml b/src/licensedcode/data/rules/gpl-2.0_1380.yml deleted file mode 100644 index c75fdd3910e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1380.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_1381.RULE b/src/licensedcode/data/rules/gpl-2.0_1381.RULE index afee740b1ea..77f6ec72dd2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1381.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1381.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0-only +--- + LICENSE {{GPL-2.0}} https://spdx.org/licenses/GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1381.yml b/src/licensedcode/data/rules/gpl-2.0_1381.yml deleted file mode 100644 index b41b2b29c88..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1381.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0-only diff --git a/src/licensedcode/data/rules/gpl-2.0_1382.RULE b/src/licensedcode/data/rules/gpl-2.0_1382.RULE index baf90c31f4d..400fe99ad6f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1382.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1382.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1382.yml b/src/licensedcode/data/rules/gpl-2.0_1382.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1382.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_1383.RULE b/src/licensedcode/data/rules/gpl-2.0_1383.RULE index b45d8134c1a..ced66935e73 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1383.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1383.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU General Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1383.yml b/src/licensedcode/data/rules/gpl-2.0_1383.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1383.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1384.RULE b/src/licensedcode/data/rules/gpl-2.0_1384.RULE index 09f9f5b0c05..4db78e59bcd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1384.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1384.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - nsdax.gpl.c +notes: See https://github.com/kata-containers/kata-containers/blob/main/tools/osbuilder/image-builder/nsdax.gpl.c +--- + image-builder/nsdax.gpl.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1384.yml b/src/licensedcode/data/rules/gpl-2.0_1384.yml deleted file mode 100644 index 77c4a2ab601..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1384.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - nsdax.gpl.c -notes: See https://github.com/kata-containers/kata-containers/blob/main/tools/osbuilder/image-builder/nsdax.gpl.c diff --git a/src/licensedcode/data/rules/gpl-2.0_1385.RULE b/src/licensedcode/data/rules/gpl-2.0_1385.RULE index 1dd2c06274e..1db2c875535 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1385.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1385.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +ignorable_urls: + - https://www.kernel.org/doc/html/latest/process/license-rules.html#id1 +--- + // License of the program. Some helpers are only available if // the license is deemed compatible with the GPL. // diff --git a/src/licensedcode/data/rules/gpl-2.0_1385.yml b/src/licensedcode/data/rules/gpl-2.0_1385.yml deleted file mode 100644 index 4ff7bb7ad47..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1385.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -ignorable_urls: - - https://www.kernel.org/doc/html/latest/process/license-rules.html#id1 diff --git a/src/licensedcode/data/rules/gpl-2.0_1386.RULE b/src/licensedcode/data/rules/gpl-2.0_1386.RULE index 2dd40f938f7..23251d85c19 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1386.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1386.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under GPLv2. See source distribution for detailed copyright notices. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1386.yml b/src/licensedcode/data/rules/gpl-2.0_1386.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_1387.RULE b/src/licensedcode/data/rules/gpl-2.0_1387.RULE index fe040dad61b..ee9951113ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1387.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1387.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: seen in FFmpeg +--- + FFmpeg 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; diff --git a/src/licensedcode/data/rules/gpl-2.0_1387.yml b/src/licensedcode/data/rules/gpl-2.0_1387.yml deleted file mode 100644 index b4d16a83607..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_1387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: seen in FFmpeg diff --git a/src/licensedcode/data/rules/gpl-2.0_139.RULE b/src/licensedcode/data/rules/gpl-2.0_139.RULE index f0ce9a0fe8a..eab69cfddaa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_139.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_139.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -21,4 +26,4 @@ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_139.yml b/src/licensedcode/data/rules/gpl-2.0_139.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_139.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_14.RULE b/src/licensedcode/data/rules/gpl-2.0_14.RULE index fc97523b74b..4b6f4e301c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_14.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -11,4 +16,4 @@ * along with this program; if not, write to: * Free Software Foundation * 51 Franklin Street, Fifth Floor - * Boston, MA 02111-1301 USA + * Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_14.yml b/src/licensedcode/data/rules/gpl-2.0_14.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_140.RULE b/src/licensedcode/data/rules/gpl-2.0_140.RULE index 52273e5f636..1b7968386bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_140.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_140.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: Only GPL 2.0 +--- + * 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. @@ -19,4 +25,4 @@ MAKES NO WARRANTIES, EXPRESS OR IMPLIED, RELATED TO THIS DRIVER. AUTHOR SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY; FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. AUTHOR DOES NOT PROVIDE SUPPORT -SERVICES OR UPDATES FOR THIS DRIVER, EVEN IF YOU ARE A SUPPORT CUSTOMER. +SERVICES OR UPDATES FOR THIS DRIVER, EVEN IF YOU ARE A SUPPORT CUSTOMER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_140.yml b/src/licensedcode/data/rules/gpl-2.0_140.yml deleted file mode 100644 index 63400971afa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: Only GPL 2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_141.RULE b/src/licensedcode/data/rules/gpl-2.0_141.RULE index f57c060aae4..b298e5a3395 100644 --- a/src/licensedcode/data/rules/gpl-2.0_141.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_141.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: Only GPL 2.0 +--- + * The 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. @@ -9,4 +15,4 @@ * * You should have received a copy of the GNU General Public License * along with the program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_141.yml b/src/licensedcode/data/rules/gpl-2.0_141.yml deleted file mode 100644 index 63400971afa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: Only GPL 2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_142.RULE b/src/licensedcode/data/rules/gpl-2.0_142.RULE index 501aebf04dc..119c62c2a27 100644 --- a/src/licensedcode/data/rules/gpl-2.0_142.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_142.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: Only GPL 2.0 +--- + * The 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. @@ -19,4 +25,4 @@ MAKES NO WARRANTIES, EXPRESS OR IMPLIED, RELATED TO THIS DRIVER. AUTHOR SPECIFICALLY DISCLAIMS ALL IMPLIED WARRANTIES OF MERCHANTABILITY; FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. AUTHOR DOES NOT PROVIDE SUPPORT -SERVICES OR UPDATES FOR THIS DRIVER, EVEN IF YOU ARE A SUPPORT CUSTOMER. +SERVICES OR UPDATES FOR THIS DRIVER, EVEN IF YOU ARE A SUPPORT CUSTOMER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_142.yml b/src/licensedcode/data/rules/gpl-2.0_142.yml deleted file mode 100644 index 63400971afa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: Only GPL 2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_143.RULE b/src/licensedcode/data/rules/gpl-2.0_143.RULE index 0de4b383ba0..b04190819bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_143.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_143.RULE @@ -1 +1,7 @@ -This software is licensed under the GNU GPL version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This software is licensed under the GNU GPL version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_143.yml b/src/licensedcode/data/rules/gpl-2.0_143.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_144.RULE b/src/licensedcode/data/rules/gpl-2.0_144.RULE index 60e873e9899..467646ca0e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_144.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_144.RULE @@ -1,8 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +notes: this is only ever seen in a GPL 2 context +--- + Both of these 2 wonderful world are GPL, so this is, of course, GPL. /* This file is part of drivers, and is distributed under the same license. Some of these names and comments originated from the - drivers, which are distributed under the GPL. */ - - + drivers, which are distributed under the GPL. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_144.yml b/src/licensedcode/data/rules/gpl-2.0_144.yml deleted file mode 100644 index ed5e383592d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_144.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 -notes: this is only ever seen in a GPL 2 context diff --git a/src/licensedcode/data/rules/gpl-2.0_145.RULE b/src/licensedcode/data/rules/gpl-2.0_145.RULE index bedecee59d3..b84da9cfbf3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_145.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_145.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: uboot uses the GPL2 only +--- + GPL - u-boot comes with a copy of the GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_145.yml b/src/licensedcode/data/rules/gpl-2.0_145.yml deleted file mode 100644 index a7a8179fa94..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_145.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: uboot uses the GPL2 only diff --git a/src/licensedcode/data/rules/gpl-2.0_146.RULE b/src/licensedcode/data/rules/gpl-2.0_146.RULE index 4568ad1bcf8..32639473d01 100644 --- a/src/licensedcode/data/rules/gpl-2.0_146.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_146.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under GPLv2 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_146.yml b/src/licensedcode/data/rules/gpl-2.0_146.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_147.RULE b/src/licensedcode/data/rules/gpl-2.0_147.RULE index df5d1499a47..0f00a008a2b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_147.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_147.RULE @@ -1 +1,7 @@ -Licensed under GPLv2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_147.yml b/src/licensedcode/data/rules/gpl-2.0_147.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_148.RULE b/src/licensedcode/data/rules/gpl-2.0_148.RULE index 487a027ee86..75c8b2bee0f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_148.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_148.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with ; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + 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_148.yml b/src/licensedcode/data/rules/gpl-2.0_148.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_148.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_149.RULE b/src/licensedcode/data/rules/gpl-2.0_149.RULE index 44fd140c7b6..881b0363a3a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_149.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_149.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/gpl-license.php +--- + provides this source code under the GPL v2 License. The GPL v2 license is available at http://opensource.org/licenses/gpl-license.php. @@ -12,4 +19,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_149.yml b/src/licensedcode/data/rules/gpl-2.0_149.yml deleted file mode 100644 index d7b3b6f42f7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_149.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/gpl-2.0_15.RULE b/src/licensedcode/data/rules/gpl-2.0_15.RULE index 6f3c3f79e20..7bffabd56fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/gpl-license.php +--- + * under the terms of the "GNU General Public License (GPL) Version 2" a * copy of which is available from the Open Source Initiative, see * http://www.opensource.org/licenses/gpl-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_15.yml b/src/licensedcode/data/rules/gpl-2.0_15.yml deleted file mode 100644 index 94ca9f837ee..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/gpl-2.0_150.RULE b/src/licensedcode/data/rules/gpl-2.0_150.RULE index 39fa0fd0ece..ef4ea5f3903 100644 --- a/src/licensedcode/data/rules/gpl-2.0_150.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_150.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the GNU General Public License v.2. +of the GNU General Public License v.2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_150.yml b/src/licensedcode/data/rules/gpl-2.0_150.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_150.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_151.RULE b/src/licensedcode/data/rules/gpl-2.0_151.RULE index 044168b9414..d72d70e6ba0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_151.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_151.RULE @@ -1 +1,7 @@ -License terms: GNU General Public License (GPL) version 2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +License terms: GNU General Public License (GPL) version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_151.yml b/src/licensedcode/data/rules/gpl-2.0_151.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_151_either.RULE b/src/licensedcode/data/rules/gpl-2.0_151_either.RULE index 44fc2f32b60..00744335c41 100644 --- a/src/licensedcode/data/rules/gpl-2.0_151_either.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_151_either.RULE @@ -1,3 +1,8 @@ +--- +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 as published by @@ -10,4 +15,4 @@ 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. +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_151_either.yml b/src/licensedcode/data/rules/gpl-2.0_151_either.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_151_either.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_152.RULE b/src/licensedcode/data/rules/gpl-2.0_152.RULE index fe0dd5072ea..81d0dcf769e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_152.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_152.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +--- + This software is distributed under the terms of the GNU General Public License ("GPL") version 2, as published by the Free Software Foundation. @@ -11,4 +17,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_152.yml b/src/licensedcode/data/rules/gpl-2.0_152.yml deleted file mode 100644 index a32e3cd5833..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_153.RULE b/src/licensedcode/data/rules/gpl-2.0_153.RULE index 89a32c1dc7a..b745aab3873 100644 --- a/src/licensedcode/data/rules/gpl-2.0_153.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_153.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License Terms: GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_153.yml b/src/licensedcode/data/rules/gpl-2.0_153.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_154.RULE b/src/licensedcode/data/rules/gpl-2.0_154.RULE index e7892708f46..c2dd6f6a36c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_154.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_154.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This software may be distributed under the terms of the GNU General Public License ("GPL") version 2 as distributed in the 'COPYING' -file from the main directory of the linux kernel source. +file from the main directory of the linux kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_154.yml b/src/licensedcode/data/rules/gpl-2.0_154.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_154.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_155.RULE b/src/licensedcode/data/rules/gpl-2.0_155.RULE index 8151b999c50..84285286710 100644 --- a/src/licensedcode/data/rules/gpl-2.0_155.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_155.RULE @@ -1 +1,7 @@ -Licensed under the terms of the GNU GPL version 2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the terms of the GNU GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_155.yml b/src/licensedcode/data/rules/gpl-2.0_155.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_156.RULE b/src/licensedcode/data/rules/gpl-2.0_156.RULE index 11fc238b9ad..4b5fac71eed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_156.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_156.RULE @@ -1,4 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - COPYING +notes: linux is GPL2. +--- + WHAT IS LINUX? It is distributed under the GNU General Public License - see the - accompanying COPYING file for more details. + accompanying COPYING file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_156.yml b/src/licensedcode/data/rules/gpl-2.0_156.yml deleted file mode 100644 index 79a1efc1d59..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_156.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - COPYING -notes: linux is GPL2. diff --git a/src/licensedcode/data/rules/gpl-2.0_157.RULE b/src/licensedcode/data/rules/gpl-2.0_157.RULE index be625e62e39..f1de81b63d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_157.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_157.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This code is licenced under the General Public Licence -version 2 +version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_157.yml b/src/licensedcode/data/rules/gpl-2.0_157.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_158.RULE b/src/licensedcode/data/rules/gpl-2.0_158.RULE index 2d544002552..80cdc52309f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_158.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_158.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + based on GPL'ed kernel sources This file is licensed under the terms of the GNU General Public License version 2. This program is licensed "as is" without any -warranty of any kind, whether express or implied. +warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_158.yml b/src/licensedcode/data/rules/gpl-2.0_158.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_158.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_159.RULE b/src/licensedcode/data/rules/gpl-2.0_159.RULE index c70f8a790ff..0598acdf4bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_159.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_159.RULE @@ -1,3 +1,10 @@ +--- +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 and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -8,4 +15,4 @@ 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 . +this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_159.yml b/src/licensedcode/data/rules/gpl-2.0_159.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_159.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_16.RULE b/src/licensedcode/data/rules/gpl-2.0_16.RULE index adb1d21da25..53cd4431268 100644 --- a/src/licensedcode/data/rules/gpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License:: GNU GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_16.yml b/src/licensedcode/data/rules/gpl-2.0_16.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_160.RULE b/src/licensedcode/data/rules/gpl-2.0_160.RULE index ccda79e77c0..7bb0b7bd27c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_160.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_160.RULE @@ -1,6 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.opensource.org/licenses/gpl-license.html +--- + The code contained herein is licensed under the GNU General Public License. You may obtain a copy of the GNU General Public License Version 2 at the following locations: http://www.opensource.org/licenses/gpl-license.html -http://www.gnu.org/copyleft/gpl.html +http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_160.yml b/src/licensedcode/data/rules/gpl-2.0_160.yml deleted file mode 100644 index 1a697cb066e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_160.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.opensource.org/licenses/gpl-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0_161.RULE b/src/licensedcode/data/rules/gpl-2.0_161.RULE index 677f44ea0e8..9e47412d6d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_161.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_161.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The code contained herein is licensed under the GNU General Public - License V2. + License V2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_161.yml b/src/licensedcode/data/rules/gpl-2.0_161.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_162.RULE b/src/licensedcode/data/rules/gpl-2.0_162.RULE index 80643245596..3d317202ffa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_162.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_162.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - linux/COPYING +notes: the linux reference explains why we return a GPLv2 +--- + May be copied or modified under the terms of the GNU General Public -License. See linux/COPYING for more information. +License. See linux/COPYING for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_162.yml b/src/licensedcode/data/rules/gpl-2.0_162.yml deleted file mode 100644 index 93904021760..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_162.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - linux/COPYING -notes: the linux reference explains why we return a GPLv2 diff --git a/src/licensedcode/data/rules/gpl-2.0_162_1.RULE b/src/licensedcode/data/rules/gpl-2.0_162_1.RULE index dbe3edaad3b..9cac7e99ec9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_162_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_162_1.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - linux/COPYING +notes: linux referenced explain why we return a GPLv2 +--- + It is hereby placed under the terms of the GNU general public license. -(See linux/COPYING). +(See linux/COPYING). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_162_1.yml b/src/licensedcode/data/rules/gpl-2.0_162_1.yml deleted file mode 100644 index 34449bf87ab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_162_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - linux/COPYING -notes: linux referenced explain why we return a GPLv2 diff --git a/src/licensedcode/data/rules/gpl-2.0_163.RULE b/src/licensedcode/data/rules/gpl-2.0_163.RULE index 288b9e010e0..39a187b2192 100644 --- a/src/licensedcode/data/rules/gpl-2.0_163.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_163.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 of the GNU General Public License - as published by the Free Software Foundation. + as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_163.yml b/src/licensedcode/data/rules/gpl-2.0_163.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_163.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_164.RULE b/src/licensedcode/data/rules/gpl-2.0_164.RULE index dd4af47d660..443e2d8c708 100644 --- a/src/licensedcode/data/rules/gpl-2.0_164.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_164.RULE @@ -1,7 +1,12 @@ +--- +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 version 2 of the GNU General Public License as published by the Free Software Foundation. The code is based on publicly available information: -- Intel Access Library Software (BSD license) +- Intel Access Library Software (BSD license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_164.yml b/src/licensedcode/data/rules/gpl-2.0_164.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_164.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_165.RULE b/src/licensedcode/data/rules/gpl-2.0_165.RULE index ecad935b82b..de43bd60d62 100644 --- a/src/licensedcode/data/rules/gpl-2.0_165.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_165.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 100 +referenced_filenames: + - COPYING +notes: this is very specific to the linux kernel and its COPYING +--- + This file is subject to the terms and conditions of the GNU General Public License. See the file COPYING in the main directory of this archive for more details. - Some parts are based on viafb \ No newline at end of file + Some parts are based on viafb \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_165.yml b/src/licensedcode/data/rules/gpl-2.0_165.yml deleted file mode 100644 index f0ae93dc331..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_165.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 100 -referenced_filenames: - - COPYING -notes: this is very specific to the linux kernel and its COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_166.RULE b/src/licensedcode/data/rules/gpl-2.0_166.RULE index ccb27b1ed27..249a7393608 100644 --- a/src/licensedcode/data/rules/gpl-2.0_166.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_166.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 98 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -6,4 +12,4 @@ version 2 as published by the Free Software Foundation. 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. +(at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_166.yml b/src/licensedcode/data/rules/gpl-2.0_166.yml deleted file mode 100644 index 18123b9b592..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/gpl-2.0_167.RULE b/src/licensedcode/data/rules/gpl-2.0_167.RULE index f8e0cec752c..b305a49dac6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_167.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_167.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -12,4 +20,4 @@ this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. The full GNU General Public License is included in this distribution in -the file called "COPYING". +the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_167.yml b/src/licensedcode/data/rules/gpl-2.0_167.yml deleted file mode 100644 index 3eb8859d784..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_168.RULE b/src/licensedcode/data/rules/gpl-2.0_168.RULE index 9c91d45b82e..0149ba68fe4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_168.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_168.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +--- + This program is free software; you may redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. @@ -9,4 +15,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_168.yml b/src/licensedcode/data/rules/gpl-2.0_168.yml deleted file mode 100644 index a32e3cd5833..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_169.RULE b/src/licensedcode/data/rules/gpl-2.0_169.RULE index 353f2a5361f..72b3b422544 100644 --- a/src/licensedcode/data/rules/gpl-2.0_169.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_169.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Released under GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_169.yml b/src/licensedcode/data/rules/gpl-2.0_169.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_17.RULE b/src/licensedcode/data/rules/gpl-2.0_17.RULE index 2962ccaa240..0b0a00becb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + In general all applications are covered by the GNU General Public License (GPL) version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_17.yml b/src/licensedcode/data/rules/gpl-2.0_17.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_170.RULE b/src/licensedcode/data/rules/gpl-2.0_170.RULE index ffb6a08715a..5df1fd99101 100644 --- a/src/licensedcode/data/rules/gpl-2.0_170.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_170.RULE @@ -1 +1,7 @@ - This code is released under the GPL version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + This code is released under the GPL version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_170.yml b/src/licensedcode/data/rules/gpl-2.0_170.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_171.RULE b/src/licensedcode/data/rules/gpl-2.0_171.RULE index 88040cdf106..e060d43b358 100644 --- a/src/licensedcode/data/rules/gpl-2.0_171.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_171.RULE @@ -1 +1,7 @@ -Released under the terms of the GNU GPL v2.0. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Released under the terms of the GNU GPL v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_171.yml b/src/licensedcode/data/rules/gpl-2.0_171.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_172.RULE b/src/licensedcode/data/rules/gpl-2.0_172.RULE index a7724c099a8..d74cfcd359b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_172.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_172.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + License: This code can be distributed under the terms of the GNU General Public License (GPL) Version 2 provided that the above header down to and -including this sentence is retained in full. +including this sentence is retained in full. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_172.yml b/src/licensedcode/data/rules/gpl-2.0_172.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_172.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_173.RULE b/src/licensedcode/data/rules/gpl-2.0_173.RULE index 2a1e31a4ab5..e1f02b70bbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_173.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_173.RULE @@ -1 +1,7 @@ -Subject to the GNU General Public License v2 only. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Subject to the GNU General Public License v2 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_173.yml b/src/licensedcode/data/rules/gpl-2.0_173.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_174.RULE b/src/licensedcode/data/rules/gpl-2.0_174.RULE index 5e20de49c8f..b132f6d3558 100644 --- a/src/licensedcode/data/rules/gpl-2.0_174.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_174.RULE @@ -1 +1,7 @@ -Subject to the GPL, v.2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Subject to the GPL, v.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_174.yml b/src/licensedcode/data/rules/gpl-2.0_174.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_175.RULE b/src/licensedcode/data/rules/gpl-2.0_175.RULE index b834df251d0..449fcb01b21 100644 --- a/src/licensedcode/data/rules/gpl-2.0_175.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_175.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This code is licenced under the GPL version 2 as described -in the COPYING file that acompanies the Linux Kernel. +in the COPYING file that acompanies the Linux Kernel. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_175.yml b/src/licensedcode/data/rules/gpl-2.0_175.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_175.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_176.RULE b/src/licensedcode/data/rules/gpl-2.0_176.RULE index 21a1e049392..a0c46227b6d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_176.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_176.RULE @@ -1 +1,7 @@ -This file distributed under the GPL, version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This file distributed under the GPL, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_176.yml b/src/licensedcode/data/rules/gpl-2.0_176.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_177.RULE b/src/licensedcode/data/rules/gpl-2.0_177.RULE index 9156bf41fb9..d56cde313e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_177.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_177.RULE @@ -1 +1,7 @@ - Distributed under the terms of the GPL, version 2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + Distributed under the terms of the GPL, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_177.yml b/src/licensedcode/data/rules/gpl-2.0_177.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_178.RULE b/src/licensedcode/data/rules/gpl-2.0_178.RULE index 7fee14eb4a4..1e925a5f133 100644 --- a/src/licensedcode/data/rules/gpl-2.0_178.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_178.RULE @@ -1 +1,7 @@ -You may use this code as per GPL version 2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +You may use this code as per GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_178.yml b/src/licensedcode/data/rules/gpl-2.0_178.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_179.RULE b/src/licensedcode/data/rules/gpl-2.0_179.RULE index a8f9f382afb..53d2ee540ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_179.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_179.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses + - http://www.xyratex.com/contact +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -18,4 +26,4 @@ version 2 along with this program; If not, see http://www.gnu.org/licenses Please visit http://www.xyratex.com/contact if you need additional information or have any questions. -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_179.yml b/src/licensedcode/data/rules/gpl-2.0_179.yml deleted file mode 100644 index 41e3124af38..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses - - http://www.xyratex.com/contact diff --git a/src/licensedcode/data/rules/gpl-2.0_18.RULE b/src/licensedcode/data/rules/gpl-2.0_18.RULE index 6eb9582219c..fd8e484f4d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_18.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Released under the terms of the GNU General Public License version 2. See /usr/share/common-licenses/GPL for the full license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_18.yml b/src/licensedcode/data/rules/gpl-2.0_18.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_180.RULE b/src/licensedcode/data/rules/gpl-2.0_180.RULE index ad93cbebe9d..1c0e2bda1da 100644 --- a/src/licensedcode/data/rules/gpl-2.0_180.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_180.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + This file may be redistributed under the terms of the GNU General Public -License v2. +License v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_180.yml b/src/licensedcode/data/rules/gpl-2.0_180.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_181.RULE b/src/licensedcode/data/rules/gpl-2.0_181.RULE index 78b2d44ec26..df271111149 100644 --- a/src/licensedcode/data/rules/gpl-2.0_181.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_181.RULE @@ -1,5 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This file is released under the GPL v2. This file may be redistributed under the terms of the GNU Public -License. - +License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_181.yml b/src/licensedcode/data/rules/gpl-2.0_181.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_181.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_181_1.RULE b/src/licensedcode/data/rules/gpl-2.0_181_1.RULE index f965fbe1f18..346471f47ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_181_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_181_1.RULE @@ -1 +1,7 @@ -This file may be redistributed under the GNU Public License v2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +This file may be redistributed under the GNU Public License v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_181_1.yml b/src/licensedcode/data/rules/gpl-2.0_181_1.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_181_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_182.RULE b/src/licensedcode/data/rules/gpl-2.0_182.RULE index 9aefb0963fa..1748351165b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_182.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_182.RULE @@ -1 +1,7 @@ -Distributed under the GNU GPL license version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Distributed under the GNU GPL license version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_182.yml b/src/licensedcode/data/rules/gpl-2.0_182.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_183.RULE b/src/licensedcode/data/rules/gpl-2.0_183.RULE index 3289fb25ab7..3aee4633b51 100644 --- a/src/licensedcode/data/rules/gpl-2.0_183.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_183.RULE @@ -1 +1,7 @@ - GPL version 2 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 95 +--- + + GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_183.yml b/src/licensedcode/data/rules/gpl-2.0_183.yml deleted file mode 100644 index dc4217e7606..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-2.0_184.RULE b/src/licensedcode/data/rules/gpl-2.0_184.RULE index a31bb8b1d58..6696319b0b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_184.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_184.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + License (GPLv2): This program is free software; you can redistribute it and/or modify it @@ -11,4 +16,4 @@ more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. +51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_184.yml b/src/licensedcode/data/rules/gpl-2.0_184.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_184.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_185.RULE b/src/licensedcode/data/rules/gpl-2.0_185.RULE index 4de0241402f..308e492bd12 100644 --- a/src/licensedcode/data/rules/gpl-2.0_185.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_185.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +--- + For the record: _GPL here is only because somebody decided to slap it on the previous export. Sheer idiocy, since it wasn't copyrightable at all and could be open-coded without any exports by anybody who cares. diff --git a/src/licensedcode/data/rules/gpl-2.0_185.yml b/src/licensedcode/data/rules/gpl-2.0_185.yml deleted file mode 100644 index 33df4fb8edb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_185.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 100 -notes: this is Linux specific and therefore GPLv2, not 1+ or 3 diff --git a/src/licensedcode/data/rules/gpl-2.0_186.RULE b/src/licensedcode/data/rules/gpl-2.0_186.RULE index 52e2f82c1c0..5343c8d6353 100644 --- a/src/licensedcode/data/rules/gpl-2.0_186.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_186.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This file is covered by the GNU Public Licence v2 as -described in the kernel's COPYING file. +described in the kernel's COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_186.yml b/src/licensedcode/data/rules/gpl-2.0_186.yml deleted file mode 100644 index 674e1e609c1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_186.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_187.RULE b/src/licensedcode/data/rules/gpl-2.0_187.RULE index 4179e5b5516..287d31be4c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_187.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_187.RULE @@ -1 +1,7 @@ -Subject to the GNU Public License, v.2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Subject to the GNU Public License, v.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_187.yml b/src/licensedcode/data/rules/gpl-2.0_187.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_188.RULE b/src/licensedcode/data/rules/gpl-2.0_188.RULE index ffffea01eab..d02d087ab43 100644 --- a/src/licensedcode/data/rules/gpl-2.0_188.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_188.RULE @@ -1 +1,7 @@ -Subject to the GNU Public License v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Subject to the GNU Public License v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_188.yml b/src/licensedcode/data/rules/gpl-2.0_188.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_189.RULE b/src/licensedcode/data/rules/gpl-2.0_189.RULE index 7704f01adce..bf8c5fa05a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_189.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_189.RULE @@ -1 +1,7 @@ -Subject to the GNU Public License, version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Subject to the GNU Public License, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_189.yml b/src/licensedcode/data/rules/gpl-2.0_189.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_19.RULE b/src/licensedcode/data/rules/gpl-2.0_19.RULE index 77f637c4834..dc0dcd32f45 100644 --- a/src/licensedcode/data/rules/gpl-2.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +notes: this is a partial GPL 2.0 text +--- + a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. diff --git a/src/licensedcode/data/rules/gpl-2.0_19.yml b/src/licensedcode/data/rules/gpl-2.0_19.yml deleted file mode 100644 index 2c8bd632c3d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 -notes: this is a partial GPL 2.0 text diff --git a/src/licensedcode/data/rules/gpl-2.0_190.RULE b/src/licensedcode/data/rules/gpl-2.0_190.RULE index a99cb479c35..acadfe22c35 100644 --- a/src/licensedcode/data/rules/gpl-2.0_190.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_190.RULE @@ -1,7 +1,18 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - COPYING +notes: Intel e100 GPL-licensed linux driver... if this is matched exactly only Seen in the linux + kernel docs. +--- + This software program is released under the terms of a license agreement between you ('Licensee') and Intel. Do not use or load this software or any associated materials (collectively, the 'Software') until you have carefully read the full terms and conditions of the file COPYING located in this software package. By loading or using the Software, you agree to the terms of this Agreement. If you do not agree with the terms of this Agreement, do not install -or use the Software. +or use the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_190.yml b/src/licensedcode/data/rules/gpl-2.0_190.yml deleted file mode 100644 index d88eab39b1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_190.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - COPYING -notes: Intel e100 GPL-licensed linux driver... if this is matched exactly only Seen in the linux - kernel docs. diff --git a/src/licensedcode/data/rules/gpl-2.0_190_1.RULE b/src/licensedcode/data/rules/gpl-2.0_190_1.RULE index 295dd85ccdf..e5c7d29973a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_190_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_190_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - COPYING +notes: Intel e100 GPL-licensed linux driver... if this is matched exactly only Seen in the linux + kernel docs. +--- + License ======= diff --git a/src/licensedcode/data/rules/gpl-2.0_190_1.yml b/src/licensedcode/data/rules/gpl-2.0_190_1.yml deleted file mode 100644 index d88eab39b1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_190_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - COPYING -notes: Intel e100 GPL-licensed linux driver... if this is matched exactly only Seen in the linux - kernel docs. diff --git a/src/licensedcode/data/rules/gpl-2.0_191.RULE b/src/licensedcode/data/rules/gpl-2.0_191.RULE index 3cb5c520f0c..636670b392d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_191.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_191.RULE @@ -1 +1,7 @@ -Licensed under the terms of the GPLv2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the terms of the GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_191.yml b/src/licensedcode/data/rules/gpl-2.0_191.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_192.RULE b/src/licensedcode/data/rules/gpl-2.0_192.RULE index 9da896b5619..c5adefc80ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_192.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_192.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 100 +notes: linux extension under the same license as linux therefore gpl2 +--- + This is an extension to the Linux operating system, and is covered by the -same Gnu Public License that covers that work. +same Gnu Public License that covers that work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_192.yml b/src/licensedcode/data/rules/gpl-2.0_192.yml deleted file mode 100644 index e6c6e8c713d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_192.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 100 -notes: linux extension under the same license as linux therefore gpl2 diff --git a/src/licensedcode/data/rules/gpl-2.0_193.RULE b/src/licensedcode/data/rules/gpl-2.0_193.RULE index d04bd4d310c..9db178e5e17 100644 --- a/src/licensedcode/data/rules/gpl-2.0_193.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_193.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public @@ -10,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with This; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +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_193.yml b/src/licensedcode/data/rules/gpl-2.0_193.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_193.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_194.RULE b/src/licensedcode/data/rules/gpl-2.0_194.RULE index 941c4af84df..c209d482727 100644 --- a/src/licensedcode/data/rules/gpl-2.0_194.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_194.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + "DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. " + "This code is free software; you can redistribute it and/or modify it " + "under the terms of the GNU General Public License version 2 only, as " + -"published by the Free Software Foundation. "; +"published by the Free Software Foundation. "; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_194.yml b/src/licensedcode/data/rules/gpl-2.0_194.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_195.RULE b/src/licensedcode/data/rules/gpl-2.0_195.RULE index d14b27fdd98..8b795a2be04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_195.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_195.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/gpl-v2 +--- + https://choosealicense.com/licenses/gpl-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_195.yml b/src/licensedcode/data/rules/gpl-2.0_195.yml deleted file mode 100644 index 2f129266c1f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/gpl-v2 diff --git a/src/licensedcode/data/rules/gpl-2.0_196.RULE b/src/licensedcode/data/rules/gpl-2.0_196.RULE index b0db14e6a02..7686f9c62c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_196.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_196.RULE @@ -1 +1,10 @@ -For licencing details see kernel-base/COPYING +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - kernel-base/COPYING +notes: this is a notice found in the linux kernel that is both weak and incorrect +--- + +For licencing details see kernel-base/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_196.yml b/src/licensedcode/data/rules/gpl-2.0_196.yml deleted file mode 100644 index 9244d6ccecf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_196.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -referenced_filenames: - - kernel-base/COPYING -notes: this is a notice found in the linux kernel that is both weak and incorrect diff --git a/src/licensedcode/data/rules/gpl-2.0_197.RULE b/src/licensedcode/data/rules/gpl-2.0_197.RULE index 63f41cf290a..4ac07917113 100644 --- a/src/licensedcode/data/rules/gpl-2.0_197.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_197.RULE @@ -1 +1,10 @@ -For licensing details see kernel-base/COPYING +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - kernel-base/COPYING +notes: this is a notice found in the linux kernel that is both weak and incorrect +--- + +For licensing details see kernel-base/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_197.yml b/src/licensedcode/data/rules/gpl-2.0_197.yml deleted file mode 100644 index 9244d6ccecf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_197.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -referenced_filenames: - - kernel-base/COPYING -notes: this is a notice found in the linux kernel that is both weak and incorrect diff --git a/src/licensedcode/data/rules/gpl-2.0_198.RULE b/src/licensedcode/data/rules/gpl-2.0_198.RULE index fbbc63d8aa8..f754d5d5fa7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_198.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_198.RULE @@ -1,2 +1,13 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - COPYING +notes: oprofile uses a GPL2 or later. its man file has this statment "OProfile is released under + the GNU General Public License, Version 2, or (at your option) any later version." +--- + OProfile authors - * @remark Read the file COPYING + * @remark Read the file COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_198.yml b/src/licensedcode/data/rules/gpl-2.0_198.yml deleted file mode 100644 index 0e7261d9932..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_198.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - COPYING -notes: oprofile uses a GPL2 or later. its man file has this statment "OProfile is released under - the GNU General Public License, Version 2, or (at your option) any later version." diff --git a/src/licensedcode/data/rules/gpl-2.0_199.RULE b/src/licensedcode/data/rules/gpl-2.0_199.RULE index 738a9bafa29..7644ebb07c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_199.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_199.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - COPYING +--- + This source code is licensed under the GNU General Public License, -Version 2. See the file COPYING for more details. +Version 2. See the file COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_199.yml b/src/licensedcode/data/rules/gpl-2.0_199.yml deleted file mode 100644 index 4ebc77b4950..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_199.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_2.RULE index d0177e6d412..08b8252a940 100644 --- a/src/licensedcode/data/rules/gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_2.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + are distributed under the GNU General Public Licence n version 2, please see LICENCE.TXT for the complete text \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_2.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_20.RULE b/src/licensedcode/data/rules/gpl-2.0_20.RULE index e3135ac4636..023c649e19d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The project is licensed under the GNU GENERAL PUBLIC LICENSE Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_20.yml b/src/licensedcode/data/rules/gpl-2.0_20.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_200.RULE b/src/licensedcode/data/rules/gpl-2.0_200.RULE index c4d2b2378eb..0414091ca64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_200.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_200.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +minimum_coverage: 95 +notes: there are conflicting references to both GPL and LGPL +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License v2 as published by the Free Software Foundation. @@ -9,4 +16,4 @@ the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_200.yml b/src/licensedcode/data/rules/gpl-2.0_200.yml deleted file mode 100644 index acb11ecd6a0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_200.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -minimum_coverage: 95 -notes: there are conflicting references to both GPL and LGPL diff --git a/src/licensedcode/data/rules/gpl-2.0_201.RULE b/src/licensedcode/data/rules/gpl-2.0_201.RULE index aa3df3e115a..b7094bcf59f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_201.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_201.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - COPYING +notes: oprofile uses a GPL2 or later. its man file has this statment "OProfile is released under + the GNU General Public License, Version 2, or (at your option) any later version." +--- + OProfile authors * @remark * @remark Read the file COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_201.yml b/src/licensedcode/data/rules/gpl-2.0_201.yml deleted file mode 100644 index 0e7261d9932..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_201.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - COPYING -notes: oprofile uses a GPL2 or later. its man file has this statment "OProfile is released under - the GNU General Public License, Version 2, or (at your option) any later version." diff --git a/src/licensedcode/data/rules/gpl-2.0_202.RULE b/src/licensedcode/data/rules/gpl-2.0_202.RULE index 37189c47970..b729eae0f98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_202.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_202.RULE @@ -1 +1,7 @@ -Licensed under the GNU General Public License, version 2.0 (GPLv2) +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the GNU General Public License, version 2.0 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_202.yml b/src/licensedcode/data/rules/gpl-2.0_202.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_203.RULE b/src/licensedcode/data/rules/gpl-2.0_203.RULE index 54d94acec16..bb3412cf2df 100644 --- a/src/licensedcode/data/rules/gpl-2.0_203.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_203.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software is licensed under the terms of the GNU General Public License version 2, as published by the Free Software Foundation, and -may be copied, distributed, and modified under those terms. +may be copied, distributed, and modified under those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_203.yml b/src/licensedcode/data/rules/gpl-2.0_203.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_203.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_204.RULE b/src/licensedcode/data/rules/gpl-2.0_204.RULE index 918dba6171d..c76c5e6e13a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_204.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_204.RULE @@ -1,3 +1,10 @@ +--- +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 as published by @@ -9,4 +16,4 @@ more details. You should have received a copy of the GNU General Public License along with - this program. If not, see . + this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_204.yml b/src/licensedcode/data/rules/gpl-2.0_204.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_204.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_205.RULE b/src/licensedcode/data/rules/gpl-2.0_205.RULE index 2e17667023c..3d37b68a787 100644 --- a/src/licensedcode/data/rules/gpl-2.0_205.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_205.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.sun.com/ +--- + GPL HEADER START @@ -21,4 +28,4 @@ GPLv2.pdf CA 95054 USA or visit www.sun.com if you need additional information or have any questions. - GPL HEADER END + GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_205.yml b/src/licensedcode/data/rules/gpl-2.0_205.yml deleted file mode 100644 index 2dace5b494a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_205.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.sun.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_206.RULE b/src/licensedcode/data/rules/gpl-2.0_206.RULE index bb3e5a6bc0b..23bf1f64887 100644 --- a/src/licensedcode/data/rules/gpl-2.0_206.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_206.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,4 +23,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.txt -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_206.yml b/src/licensedcode/data/rules/gpl-2.0_206.yml deleted file mode 100644 index 61ec5ef694d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_206.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_207.RULE b/src/licensedcode/data/rules/gpl-2.0_207.RULE index f35cf68a114..e964ba605f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_207.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_207.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + 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 @@ -6,5 +12,4 @@ 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. - + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_207.yml b/src/licensedcode/data/rules/gpl-2.0_207.yml deleted file mode 100644 index b7e902d5990..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_208.RULE b/src/licensedcode/data/rules/gpl-2.0_208.RULE index 1cdaa3eb744..3133adf0db4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_208.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_208.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -8,4 +15,4 @@ FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. See the GNU General Public License for more details, a copy of which can be found in the file COPYING -included with this package. +included with this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_208.yml b/src/licensedcode/data/rules/gpl-2.0_208.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_208.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_209.RULE b/src/licensedcode/data/rules/gpl-2.0_209.RULE index e55c3b6e61b..53cf9d76482 100644 --- a/src/licensedcode/data/rules/gpl-2.0_209.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_209.RULE @@ -1,3 +1,8 @@ +--- +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 as published by -the Free Software Foundation; either version 2 +the Free Software Foundation; either version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_209.yml b/src/licensedcode/data/rules/gpl-2.0_209.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_209.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_21.RULE b/src/licensedcode/data/rules/gpl-2.0_21.RULE index c25937314a9..8ad581c3ba3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_21.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +notes: BCM GPL full notice +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + 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, located in the file LICENSE. diff --git a/src/licensedcode/data/rules/gpl-2.0_21.yml b/src/licensedcode/data/rules/gpl-2.0_21.yml deleted file mode 100644 index faa764a4ffa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_21.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -notes: BCM GPL full notice -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_210.RULE b/src/licensedcode/data/rules/gpl-2.0_210.RULE index e57d1feb45c..e1ae8c54d59 100644 --- a/src/licensedcode/data/rules/gpl-2.0_210.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_210.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The original driver's license is GPL, as declared with MODULE_LICENSE() This program is free software; you can redistribute it and/or modify @@ -7,4 +12,4 @@ the Free Software Foundation under version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_210.yml b/src/licensedcode/data/rules/gpl-2.0_210.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_210.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_211.RULE b/src/licensedcode/data/rules/gpl-2.0_211.RULE index 400e74fbc98..641ce2f78fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_211.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_211.RULE @@ -1,3 +1,8 @@ +--- +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; @@ -9,4 +14,4 @@ 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. +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_211.yml b/src/licensedcode/data/rules/gpl-2.0_211.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_211.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_212.RULE b/src/licensedcode/data/rules/gpl-2.0_212.RULE index 12f3cdc99a8..280fd98e422 100644 --- a/src/licensedcode/data/rules/gpl-2.0_212.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_212.RULE @@ -1,7 +1,12 @@ +--- +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. 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. + 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_212.yml b/src/licensedcode/data/rules/gpl-2.0_212.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_212.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_213.RULE b/src/licensedcode/data/rules/gpl-2.0_213.RULE index 654a58eb821..a208e895821 100644 --- a/src/licensedcode/data/rules/gpl-2.0_213.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_213.RULE @@ -1,6 +1,11 @@ +--- +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 as published by the Free Software Foundation; version 2 dated June, 1991. On Debian GNU/Linux systems, the complete text of the GNU General Public -License version 2 can be found in \`/usr/share/common-licenses/GPL-2'. +License version 2 can be found in \`/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_213.yml b/src/licensedcode/data/rules/gpl-2.0_213.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_213.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_214.RULE b/src/licensedcode/data/rules/gpl-2.0_214.RULE index e290a2cac0c..45d83584340 100644 --- a/src/licensedcode/data/rules/gpl-2.0_214.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_214.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: the Linux COPYING reference makes this a v2 license mention +--- + * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the Linux * distribution for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_214.yml b/src/licensedcode/data/rules/gpl-2.0_214.yml deleted file mode 100644 index 1a33bf349f5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_214.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: the Linux COPYING reference makes this a v2 license mention diff --git a/src/licensedcode/data/rules/gpl-2.0_215.RULE b/src/licensedcode/data/rules/gpl-2.0_215.RULE index 5ee81b6cf4f..85e9e979363 100644 --- a/src/licensedcode/data/rules/gpl-2.0_215.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_215.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This file is licensed under the GPL2 license. ############################################################################ @@ -10,4 +15,4 @@ 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. +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_215.yml b/src/licensedcode/data/rules/gpl-2.0_215.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_215.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_216.RULE b/src/licensedcode/data/rules/gpl-2.0_216.RULE index 77ca351e261..3e457b0fef9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_216.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_216.RULE @@ -1,3 +1,9 @@ - This driver is a part of the linux kernel, and is thus distributed - under the GNU General Public License. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: the Linux reference makes this a v2 license mention +--- + This driver is a part of the linux kernel, and is thus distributed + under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_216.yml b/src/licensedcode/data/rules/gpl-2.0_216.yml deleted file mode 100644 index 3483d039f29..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_216.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: the Linux reference makes this a v2 license mention diff --git a/src/licensedcode/data/rules/gpl-2.0_217.RULE b/src/licensedcode/data/rules/gpl-2.0_217.RULE index d24a3637d0f..0e7bb9aba3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_217.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_217.RULE @@ -1 +1,7 @@ -This file is licensed under the GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This file is licensed under the GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_217.yml b/src/licensedcode/data/rules/gpl-2.0_217.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_218.RULE b/src/licensedcode/data/rules/gpl-2.0_218.RULE index 83d43ca717a..0c7a1e05be4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_218.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_218.RULE @@ -1 +1,7 @@ -This file is rleased under the GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This file is rleased under the GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_218.yml b/src/licensedcode/data/rules/gpl-2.0_218.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_219.RULE b/src/licensedcode/data/rules/gpl-2.0_219.RULE index dcfb2cc39fa..d32ce07fc58 100644 --- a/src/licensedcode/data/rules/gpl-2.0_219.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_219.RULE @@ -1 +1,7 @@ -GPL v2 Only +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + +GPL v2 Only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_219.yml b/src/licensedcode/data/rules/gpl-2.0_219.yml deleted file mode 100644 index bb66a2a67d0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_22.RULE b/src/licensedcode/data/rules/gpl-2.0_22.RULE index 7cbcf582e60..076b848bf7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1997-2009 by Dimitri van Heesch +ignorable_holders: + - Dimitri van Heesch +--- + Doxygen license Copyright © 1997-2009 by Dimitri van Heesch. diff --git a/src/licensedcode/data/rules/gpl-2.0_22.yml b/src/licensedcode/data/rules/gpl-2.0_22.yml deleted file mode 100644 index 95ffef0da7f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1997-2009 by Dimitri van Heesch -ignorable_holders: - - Dimitri van Heesch diff --git a/src/licensedcode/data/rules/gpl-2.0_220.RULE b/src/licensedcode/data/rules/gpl-2.0_220.RULE index 6f4ab9cdd7e..13c6b4d7804 100644 --- a/src/licensedcode/data/rules/gpl-2.0_220.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_220.RULE @@ -1 +1,7 @@ -Distributed under the terms of the GNU GPL, version two. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Distributed under the terms of the GNU GPL, version two. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_220.yml b/src/licensedcode/data/rules/gpl-2.0_220.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_221.RULE b/src/licensedcode/data/rules/gpl-2.0_221.RULE index fc485af7689..51e9a779687 100644 --- a/src/licensedcode/data/rules/gpl-2.0_221.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_221.RULE @@ -1 +1,7 @@ -This software is distributed under GNU GPL v2, 1991 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This software is distributed under GNU GPL v2, 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_221.yml b/src/licensedcode/data/rules/gpl-2.0_221.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_222.RULE b/src/licensedcode/data/rules/gpl-2.0_222.RULE index 72a06cae13a..f74c81f78fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_222.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_222.RULE @@ -1 +1,7 @@ -Released under the term of the GNU GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Released under the term of the GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_222.yml b/src/licensedcode/data/rules/gpl-2.0_222.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_223.RULE b/src/licensedcode/data/rules/gpl-2.0_223.RULE index acde1b9b637..5f20e8738d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_223.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_223.RULE @@ -1 +1,7 @@ -GNU GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +--- + +GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_223.yml b/src/licensedcode/data/rules/gpl-2.0_223.yml deleted file mode 100644 index 58623bb1f2c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_224.RULE b/src/licensedcode/data/rules/gpl-2.0_224.RULE index 3baba5bcda3..c5c66c3a79b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_224.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_224.RULE @@ -1 +1,7 @@ -This file is released under the GPL v2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This file is released under the GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_224.yml b/src/licensedcode/data/rules/gpl-2.0_224.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_225.RULE b/src/licensedcode/data/rules/gpl-2.0_225.RULE index e1e97252575..3d96019b9d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_225.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_225.RULE @@ -1 +1,7 @@ -This is released under the GPL v2 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +This is released under the GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_225.yml b/src/licensedcode/data/rules/gpl-2.0_225.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_226.RULE b/src/licensedcode/data/rules/gpl-2.0_226.RULE index b916971b739..d4ad8f78644 100644 --- a/src/licensedcode/data/rules/gpl-2.0_226.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_226.RULE @@ -1 +1,8 @@ -(As all part of the Linux kernel, this file is GPL) +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: GPL v2 because of the linux kernel reference +--- + +(As all part of the Linux kernel, this file is GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_226.yml b/src/licensedcode/data/rules/gpl-2.0_226.yml deleted file mode 100644 index d8515c0c435..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_226.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: GPL v2 because of the linux kernel reference diff --git a/src/licensedcode/data/rules/gpl-2.0_227.RULE b/src/licensedcode/data/rules/gpl-2.0_227.RULE index 9c37718fbcb..51ebb3b8575 100644 --- a/src/licensedcode/data/rules/gpl-2.0_227.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_227.RULE @@ -1 +1,9 @@ - GPL v2, can be found in COPYING. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + + GPL v2, can be found in COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_227.yml b/src/licensedcode/data/rules/gpl-2.0_227.yml deleted file mode 100644 index 674e1e609c1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_227.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_228.RULE b/src/licensedcode/data/rules/gpl-2.0_228.RULE index cef90a1ea71..e193016c547 100644 --- a/src/licensedcode/data/rules/gpl-2.0_228.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_228.RULE @@ -1 +1,7 @@ -Released under the GPL v2. (and only v2, not any later version) +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Released under the GPL v2. (and only v2, not any later version) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_228.yml b/src/licensedcode/data/rules/gpl-2.0_228.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_229.RULE b/src/licensedcode/data/rules/gpl-2.0_229.RULE index b16c155ecc3..815d2e3c552 100644 --- a/src/licensedcode/data/rules/gpl-2.0_229.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_229.RULE @@ -1,3 +1,10 @@ +--- +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 as published by the Free Software Foundation. @@ -8,4 +15,4 @@ 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 . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_229.yml b/src/licensedcode/data/rules/gpl-2.0_229.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_229.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_23.RULE b/src/licensedcode/data/rules/gpl-2.0_23.RULE index d651a5d0abe..5d712bbf633 100644 --- a/src/licensedcode/data/rules/gpl-2.0_23.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + license: GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_23.yml b/src/licensedcode/data/rules/gpl-2.0_23.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_230.RULE b/src/licensedcode/data/rules/gpl-2.0_230.RULE index f1abe6e9287..39752367ac7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_230.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_230.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- -Released under the GPL v2 only. + +Released under the GPL v2 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_230.yml b/src/licensedcode/data/rules/gpl-2.0_230.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_231.RULE b/src/licensedcode/data/rules/gpl-2.0_231.RULE index 01c0308e15a..0944ecd0199 100644 --- a/src/licensedcode/data/rules/gpl-2.0_231.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_231.RULE @@ -1 +1,7 @@ -This file is released under the GNU GPL v2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +This file is released under the GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_231.yml b/src/licensedcode/data/rules/gpl-2.0_231.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_232.RULE b/src/licensedcode/data/rules/gpl-2.0_232.RULE index f8cf75b9f98..65d1c6ff05f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_232.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_232.RULE @@ -1 +1,7 @@ -This file is released undert the GPL v2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +This file is released undert the GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_232.yml b/src/licensedcode/data/rules/gpl-2.0_232.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_232.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_233.RULE b/src/licensedcode/data/rules/gpl-2.0_233.RULE index 16241b02793..d1f65f02c16 100644 --- a/src/licensedcode/data/rules/gpl-2.0_233.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_233.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: GPL v2 because of the linux kernel reference +--- -This source is covered by the GNU GPL, the same as all kernel sources. + +This source is covered by the GNU GPL, the same as all kernel sources. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_233.yml b/src/licensedcode/data/rules/gpl-2.0_233.yml deleted file mode 100644 index 32b07f50a90..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_233.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: GPL v2 because of the linux kernel reference diff --git a/src/licensedcode/data/rules/gpl-2.0_234.RULE b/src/licensedcode/data/rules/gpl-2.0_234.RULE index d658903ec1a..be73401a342 100644 --- a/src/licensedcode/data/rules/gpl-2.0_234.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_234.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- -Licensed to the Linux Foundation under the General Public License (GPL) version 2. + +Licensed to the Linux Foundation under the General Public License (GPL) version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_234.yml b/src/licensedcode/data/rules/gpl-2.0_234.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_235.RULE b/src/licensedcode/data/rules/gpl-2.0_235.RULE index 6bbc819b3d1..abaf71d8c75 100644 --- a/src/licensedcode/data/rules/gpl-2.0_235.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_235.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The files in kernel/ and hotplug/ are licensed under the GNU General Public License Version 2 from the Free Software Foundation. A copy of the license - is included in the file COPYING. + is included in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_235.yml b/src/licensedcode/data/rules/gpl-2.0_235.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_235.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_236.RULE b/src/licensedcode/data/rules/gpl-2.0_236.RULE index 8251135e344..27c9139d640 100644 --- a/src/licensedcode/data/rules/gpl-2.0_236.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_236.RULE @@ -1,3 +1,7 @@ - The contents of this file may be used under the - terms of the GNU Public License version 2 (the "GPL") +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The contents of this file may be used under the + terms of the GNU Public License version 2 (the "GPL") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_236.yml b/src/licensedcode/data/rules/gpl-2.0_236.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_236.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_237.RULE b/src/licensedcode/data/rules/gpl-2.0_237.RULE index ca879deb688..ab5a92dc670 100644 --- a/src/licensedcode/data/rules/gpl-2.0_237.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_237.RULE @@ -1 +1,7 @@ -This file is licenced under the GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This file is licenced under the GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_237.yml b/src/licensedcode/data/rules/gpl-2.0_237.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_238.RULE b/src/licensedcode/data/rules/gpl-2.0_238.RULE index 4cec6f10144..927c5fa0349 100644 --- a/src/licensedcode/data/rules/gpl-2.0_238.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_238.RULE @@ -1 +1,7 @@ -GPL v2 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 98 +--- + +GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_238.yml b/src/licensedcode/data/rules/gpl-2.0_238.yml deleted file mode 100644 index 971c27bb888..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 98 diff --git a/src/licensedcode/data/rules/gpl-2.0_239.RULE b/src/licensedcode/data/rules/gpl-2.0_239.RULE index ea86c71eddd..c94af986014 100644 --- a/src/licensedcode/data/rules/gpl-2.0_239.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_239.RULE @@ -1 +1,7 @@ -This code is placed under the terms of the GNU General Public License v2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This code is placed under the terms of the GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_239.yml b/src/licensedcode/data/rules/gpl-2.0_239.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_24.RULE b/src/licensedcode/data/rules/gpl-2.0_24.RULE index d43135978a5..f6631bb0d5d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_24.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +notes: text has been damaged by markdown conversion +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License, Version 2, June 1991 (GPLv2) ============================================================ diff --git a/src/licensedcode/data/rules/gpl-2.0_24.yml b/src/licensedcode/data/rules/gpl-2.0_24.yml deleted file mode 100644 index 8b740cb8c5d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_24.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -notes: text has been damaged by markdown conversion -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_240.RULE b/src/licensedcode/data/rules/gpl-2.0_240.RULE index 22a07634e32..172717ec9c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_240.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_240.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 40 +notes: the warranty and disclaimer sections are uncommon +--- + 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; version 2 @@ -26,4 +34,4 @@ DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED -HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_240.yml b/src/licensedcode/data/rules/gpl-2.0_240.yml deleted file mode 100644 index c376389240d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_240.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 40 -notes: the warranty and disclaimer sections are uncommon diff --git a/src/licensedcode/data/rules/gpl-2.0_241.RULE b/src/licensedcode/data/rules/gpl-2.0_241.RULE index aad3ed96583..cd631ee4439 100644 --- a/src/licensedcode/data/rules/gpl-2.0_241.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_241.RULE @@ -1 +1,7 @@ -Distributable under version 2 of the GNU General Public License. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Distributable under version 2 of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_241.yml b/src/licensedcode/data/rules/gpl-2.0_241.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_242.RULE b/src/licensedcode/data/rules/gpl-2.0_242.RULE index 82005b6c16c..b7648b8dbda 100644 --- a/src/licensedcode/data/rules/gpl-2.0_242.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_242.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + "This software program is licensed subject to the GNU General Public License (GPL). Version 2, June 1991, available at diff --git a/src/licensedcode/data/rules/gpl-2.0_242.yml b/src/licensedcode/data/rules/gpl-2.0_242.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_242.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_243.RULE b/src/licensedcode/data/rules/gpl-2.0_243.RULE index ddd52ff3190..82327e4c1c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_243.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_243.RULE @@ -1,5 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + License: As part of this driver was derived from the driver it falls under the same license, which is GNU General Public - License v2 - + License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_243.yml b/src/licensedcode/data/rules/gpl-2.0_243.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_243.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_244.RULE b/src/licensedcode/data/rules/gpl-2.0_244.RULE index 3371e1c91fa..f232e4ce728 100644 --- a/src/licensedcode/data/rules/gpl-2.0_244.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_244.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: the Linux reference makes this a v2 license mention +--- + This is an extension to the Linux operating system, and is covered by the -same GNU General Public License that covers the Linux-kernel. +same GNU General Public License that covers the Linux-kernel. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_244.yml b/src/licensedcode/data/rules/gpl-2.0_244.yml deleted file mode 100644 index 3483d039f29..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_244.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: the Linux reference makes this a v2 license mention diff --git a/src/licensedcode/data/rules/gpl-2.0_245.RULE b/src/licensedcode/data/rules/gpl-2.0_245.RULE index 44515c37c85..fad6b7ba10d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_245.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_245.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file is subject to the terms and conditions of the GNU General Public License v2. See the file COPYING in the main directory of this archive for -more details. +more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_245.yml b/src/licensedcode/data/rules/gpl-2.0_245.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_245.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_246.RULE b/src/licensedcode/data/rules/gpl-2.0_246.RULE index 9b9d4ed7aaa..7875b6cd09f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_246.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_246.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software may be redistributed and/or modified under the terms of the GNU General Public License ("GPL") version 2 only as published by the -Free Software Foundation. +Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_246.yml b/src/licensedcode/data/rules/gpl-2.0_246.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_246.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_247.RULE b/src/licensedcode/data/rules/gpl-2.0_247.RULE index b8b81904adc..b313a7862b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_247.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_247.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + You may modify and redistribute the device driver code under the GNU General Public License (a copy of which is attached hereto as Exhibit A) published by the Free Software Foundation (version 2). diff --git a/src/licensedcode/data/rules/gpl-2.0_247.yml b/src/licensedcode/data/rules/gpl-2.0_247.yml deleted file mode 100644 index 8cca08482a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_247.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_248.RULE b/src/licensedcode/data/rules/gpl-2.0_248.RULE index 7d0bd437c54..a911a169256 100644 --- a/src/licensedcode/data/rules/gpl-2.0_248.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_248.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This driver is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. @@ -7,4 +14,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this driver; if not, see . + along with this driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_248.yml b/src/licensedcode/data/rules/gpl-2.0_248.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_248.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_249.RULE b/src/licensedcode/data/rules/gpl-2.0_249.RULE index 844174c4785..c01e28257d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_249.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_249.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/gpl-v2 +--- + http://choosealicense.com/licenses/gpl-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_249.yml b/src/licensedcode/data/rules/gpl-2.0_249.yml deleted file mode 100644 index 6a6ab749797..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_249.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/gpl-v2 diff --git a/src/licensedcode/data/rules/gpl-2.0_25.RULE b/src/licensedcode/data/rules/gpl-2.0_25.RULE index 7333d141b7c..37f8ae47cb4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_25.RULE @@ -1,3 +1,8 @@ +--- +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 as published by - the Free Software Foundation, using version 2 of the License. \ No newline at end of file + the Free Software Foundation, using version 2 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_25.yml b/src/licensedcode/data/rules/gpl-2.0_25.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_250.RULE b/src/licensedcode/data/rules/gpl-2.0_250.RULE index 65255a84242..01124bf2c92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_250.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_250.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This driver 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, version 2 of the License. @@ -8,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this driver. If not, see . + along with this driver. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_250.yml b/src/licensedcode/data/rules/gpl-2.0_250.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_250.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_251.RULE b/src/licensedcode/data/rules/gpl-2.0_251.RULE index e13539f628c..214b2456cb9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_251.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_251.RULE @@ -1,3 +1,10 @@ +--- +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 as published by @@ -9,4 +16,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License - along with this software. If not see . + along with this software. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_251.yml b/src/licensedcode/data/rules/gpl-2.0_251.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_251.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_252.RULE b/src/licensedcode/data/rules/gpl-2.0_252.RULE index de1c51f5e4c..8a5b8e0f7a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_252.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_252.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 of the GNU General Public License as @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA + 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_252.yml b/src/licensedcode/data/rules/gpl-2.0_252.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_252.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_253.RULE b/src/licensedcode/data/rules/gpl-2.0_253.RULE index 26a028d8efd..6f6042fc55c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_253.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_253.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -9,4 +14,4 @@ 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +Foundation, 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_253.yml b/src/licensedcode/data/rules/gpl-2.0_253.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_253.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_254.RULE b/src/licensedcode/data/rules/gpl-2.0_254.RULE index 02a38d21f3c..3d63ec16132 100644 --- a/src/licensedcode/data/rules/gpl-2.0_254.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_254.RULE @@ -1,3 +1,8 @@ +--- +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 and only version 2 as published by the Free Software Foundation. @@ -10,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. +02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_254.yml b/src/licensedcode/data/rules/gpl-2.0_254.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_254.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_255.RULE b/src/licensedcode/data/rules/gpl-2.0_255.RULE index 147acb8739f..7ac05ba3453 100644 --- a/src/licensedcode/data/rules/gpl-2.0_255.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_255.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -10,5 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. - +02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_255.yml b/src/licensedcode/data/rules/gpl-2.0_255.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_255.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_256.RULE b/src/licensedcode/data/rules/gpl-2.0_256.RULE index fd93494dd7d..865de1c2a7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_256.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_256.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 of the GNU General Public @@ -11,4 +16,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA + 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_256.yml b/src/licensedcode/data/rules/gpl-2.0_256.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_256.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_257.RULE b/src/licensedcode/data/rules/gpl-2.0_257.RULE index 01c3d5374f4..38f6f84dc63 100644 --- a/src/licensedcode/data/rules/gpl-2.0_257.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_257.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. @@ -13,4 +21,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - Or, point your browser to http://www.gnu.org/copyleft/gpl.html + Or, point your browser to http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_257.yml b/src/licensedcode/data/rules/gpl-2.0_257.yml deleted file mode 100644 index fd064a17993..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_258.RULE b/src/licensedcode/data/rules/gpl-2.0_258.RULE index ccc2fd8e0d7..fe2588f68a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_258.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_258.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -12,4 +20,4 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA The full GNU General Public License is included in this distribution in the - file called LICENSE. + file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_258.yml b/src/licensedcode/data/rules/gpl-2.0_258.yml deleted file mode 100644 index ba77f35b4d8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_259.RULE b/src/licensedcode/data/rules/gpl-2.0_259.RULE index 63608eb5f17..f641fc196d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_259.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_259.RULE @@ -1,3 +1,8 @@ +--- +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 v2 as published by the @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + 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_259.yml b/src/licensedcode/data/rules/gpl-2.0_259.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_259.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_26.RULE b/src/licensedcode/data/rules/gpl-2.0_26.RULE index 680c0e889f6..7aa8e9dd14e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_26.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_26.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.1 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_26.yml b/src/licensedcode/data/rules/gpl-2.0_26.yml deleted file mode 100644 index 2296b8926ae..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_26.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.1 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_260.RULE b/src/licensedcode/data/rules/gpl-2.0_260.RULE index d881fce36f4..167e50e6173 100644 --- a/src/licensedcode/data/rules/gpl-2.0_260.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_260.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation - version 2. @@ -10,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301 USA. +02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_260.yml b/src/licensedcode/data/rules/gpl-2.0_260.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_260.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_261.RULE b/src/licensedcode/data/rules/gpl-2.0_261.RULE index 7587003bb2d..61ca8a6e1c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_261.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_261.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 of the GNU General Public License as @@ -10,4 +15,4 @@ 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., 59 -Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_261.yml b/src/licensedcode/data/rules/gpl-2.0_261.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_261.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_262.RULE b/src/licensedcode/data/rules/gpl-2.0_262.RULE index ad73a0dd8c8..57af522b72f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_262.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_262.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation version 2. @@ -9,4 +14,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_262.yml b/src/licensedcode/data/rules/gpl-2.0_262.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_262.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_263.RULE b/src/licensedcode/data/rules/gpl-2.0_263.RULE index 2a4b9885283..371ee03386e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_263.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_263.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation, @@ -11,4 +16,4 @@ 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., 59 Temple Place - Suite 330, -Boston, MA 021110-1307, USA. +Boston, MA 021110-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_263.yml b/src/licensedcode/data/rules/gpl-2.0_263.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_263.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_264.RULE b/src/licensedcode/data/rules/gpl-2.0_264.RULE index 5a536d18561..abca601fc54 100644 --- a/src/licensedcode/data/rules/gpl-2.0_264.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_264.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 of the License. @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 300, Boston, MA - 02111-1307, USA. + 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_264.yml b/src/licensedcode/data/rules/gpl-2.0_264.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_264.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_265.RULE b/src/licensedcode/data/rules/gpl-2.0_265.RULE index 67d5d483a4a..d5103c1f48e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_265.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_265.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 25 +notes: the warranty and disclaimer sections are funky +--- + 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; version 2 @@ -29,4 +37,4 @@ USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES You should have received a copy of the GNU General Public License -along with this program. +along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_265.yml b/src/licensedcode/data/rules/gpl-2.0_265.yml deleted file mode 100644 index 5a2c184ff27..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_265.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 25 -notes: the warranty and disclaimer sections are funky diff --git a/src/licensedcode/data/rules/gpl-2.0_266.RULE b/src/licensedcode/data/rules/gpl-2.0_266.RULE index c7dd701108e..84e10b6ea50 100644 --- a/src/licensedcode/data/rules/gpl-2.0_266.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_266.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free @@ -10,4 +15,4 @@ You should find a copy of v2 of the GNU General Public License somewhere on your Linux system; if not, write to the Free Software Foundation, Inc., 59 - Temple Place, Suite 330, Boston, MA 02111-1307 USA. + Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_266.yml b/src/licensedcode/data/rules/gpl-2.0_266.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_266.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_267.RULE b/src/licensedcode/data/rules/gpl-2.0_267.RULE index 44d1c8a0b10..fa1271d3b41 100644 --- a/src/licensedcode/data/rules/gpl-2.0_267.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_267.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_267.yml b/src/licensedcode/data/rules/gpl-2.0_267.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_267.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_268.RULE b/src/licensedcode/data/rules/gpl-2.0_268.RULE index f90c984d67b..91e7ba7c65c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_268.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_268.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General @@ -12,4 +19,4 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. The full GNU General Public License is included in this - distribution in the file called COPYING. + distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_268.yml b/src/licensedcode/data/rules/gpl-2.0_268.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_268.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_269.RULE b/src/licensedcode/data/rules/gpl-2.0_269.RULE index 23388f6168c..1f2c8a78f18 100644 --- a/src/licensedcode/data/rules/gpl-2.0_269.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_269.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://oss.sgi.com/projects/GenInfo/NoticeExplan +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -12,4 +19,4 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. For further information regarding this notice, see: -http://oss.sgi.com/projects/GenInfo/NoticeExplan +http://oss.sgi.com/projects/GenInfo/NoticeExplan \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_269.yml b/src/licensedcode/data/rules/gpl-2.0_269.yml deleted file mode 100644 index 2fd07d2ff3b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_269.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://oss.sgi.com/projects/GenInfo/NoticeExplan diff --git a/src/licensedcode/data/rules/gpl-2.0_269_1.RULE b/src/licensedcode/data/rules/gpl-2.0_269_1.RULE index 12ba1ece638..da2fdf56261 100644 --- a/src/licensedcode/data/rules/gpl-2.0_269_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_269_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: http://oss.sgi.com/projects/GenInfo/NoticeExplan is/was a GPL 2 notice explanantion See + https://web.archive.org/web/20040427101901/http://oss.sgi.com/projects/GenInfo/NoticeExplan/ +ignorable_urls: + - http://oss.sgi.com/projects/GenInfo/NoticeExplan +--- + For further information regarding this notice, see: -http://oss.sgi.com/projects/GenInfo/NoticeExplan +http://oss.sgi.com/projects/GenInfo/NoticeExplan \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_269_1.yml b/src/licensedcode/data/rules/gpl-2.0_269_1.yml deleted file mode 100644 index 3f35fc78ba7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_269_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: http://oss.sgi.com/projects/GenInfo/NoticeExplan is/was a GPL 2 notice explanantion See - https://web.archive.org/web/20040427101901/http://oss.sgi.com/projects/GenInfo/NoticeExplan/ -ignorable_urls: - - http://oss.sgi.com/projects/GenInfo/NoticeExplan diff --git a/src/licensedcode/data/rules/gpl-2.0_27.RULE b/src/licensedcode/data/rules/gpl-2.0_27.RULE index 264657916ce..ff6e37bc311 100644 --- a/src/licensedcode/data/rules/gpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_27.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING + - /usr/share/common-licenses/GPL-2 +notes: GPL 2.0 debian version +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_27.yml b/src/licensedcode/data/rules/gpl-2.0_27.yml deleted file mode 100644 index 371611cb020..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING - - /usr/share/common-licenses/GPL-2 -notes: GPL 2.0 debian version diff --git a/src/licensedcode/data/rules/gpl-2.0_270.RULE b/src/licensedcode/data/rules/gpl-2.0_270.RULE index 44a869a7ff5..eb8181a6701 100644 --- a/src/licensedcode/data/rules/gpl-2.0_270.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_270.RULE @@ -1,3 +1,8 @@ +--- +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 as published by @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program; ifnot, write to the Free Software Foundation, Inc., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_270.yml b/src/licensedcode/data/rules/gpl-2.0_270.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_270.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_271.RULE b/src/licensedcode/data/rules/gpl-2.0_271.RULE index 54bada00d90..7c73c1936d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_271.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_271.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -6,4 +11,4 @@ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or NON INFRINGEMENT. See the GNU General Public License for more - details. + details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_271.yml b/src/licensedcode/data/rules/gpl-2.0_271.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_271.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_272.RULE b/src/licensedcode/data/rules/gpl-2.0_272.RULE index 73e0b717f70..53204be5ed0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_272.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_272.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -17,4 +22,4 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 021110-1307, USA - GPL HEADER END + GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_272.yml b/src/licensedcode/data/rules/gpl-2.0_272.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_272.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_273.RULE b/src/licensedcode/data/rules/gpl-2.0_273.RULE index 9e57a65fb8a..a5156859539 100644 --- a/src/licensedcode/data/rules/gpl-2.0_273.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_273.RULE @@ -1,7 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program can be redistributed or modified under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. This program is distributed without any warranty or implied warranty of merchantability or fitness for a particular purpose. -See the GNU General Public License version 2 for more details. +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_273.yml b/src/licensedcode/data/rules/gpl-2.0_273.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_273.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_274.RULE b/src/licensedcode/data/rules/gpl-2.0_274.RULE index ad3844fbe00..7ad76f075af 100644 --- a/src/licensedcode/data/rules/gpl-2.0_274.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_274.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software is licensed under the terms of the GNU General Public License version 2, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. @@ -5,4 +10,4 @@ may be copied, distributed, and modified under those terms. 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_274.yml b/src/licensedcode/data/rules/gpl-2.0_274.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_274.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_275.RULE b/src/licensedcode/data/rules/gpl-2.0_275.RULE index 12e049b9f66..3347dccec65 100644 --- a/src/licensedcode/data/rules/gpl-2.0_275.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_275.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This file is part of the Linux kernel, and is made available under the terms of the GNU General Public License version 2, as published by the Free Software Foundation. @@ -5,4 +10,4 @@ published by the Free Software Foundation. This program is distributed in the hope 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. +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_275.yml b/src/licensedcode/data/rules/gpl-2.0_275.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_275.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_276.RULE b/src/licensedcode/data/rules/gpl-2.0_276.RULE index c230ba100d3..d144885a672 100644 --- a/src/licensedcode/data/rules/gpl-2.0_276.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_276.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This is licensed under the terms of the GNU General Public License version 2, as published by the Free Software Foundation, and @@ -6,4 +11,4 @@ may be copied, distributed, and modified under those terms. 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_276.yml b/src/licensedcode/data/rules/gpl-2.0_276.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_276.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_277.RULE b/src/licensedcode/data/rules/gpl-2.0_277.RULE index 67fc8e4111a..ba9fcefd775 100644 --- a/src/licensedcode/data/rules/gpl-2.0_277.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_277.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -7,4 +12,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_277.yml b/src/licensedcode/data/rules/gpl-2.0_277.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_277.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_278.RULE b/src/licensedcode/data/rules/gpl-2.0_278.RULE index c99c5e3f776..b9a0f63a636 100644 --- a/src/licensedcode/data/rules/gpl-2.0_278.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_278.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 of the License. @@ -5,4 +10,4 @@ the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_278.yml b/src/licensedcode/data/rules/gpl-2.0_278.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_278.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_279.RULE b/src/licensedcode/data/rules/gpl-2.0_279.RULE index 845553948db..39eb7be5b1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_279.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_279.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation version 2. @@ -5,4 +10,4 @@ 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. + General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_279.yml b/src/licensedcode/data/rules/gpl-2.0_279.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_279.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_28.RULE b/src/licensedcode/data/rules/gpl-2.0_28.RULE index 315719e75b5..0758b3766aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_28.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_28.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + License: GPL-2 This 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 @@ -11,4 +16,4 @@ License: GPL-2 You should have received a copy of the GNU General Public License with the Debian operating system, in /usr/share/common-licenses/GPL-2; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, - Fifth Floor, Boston, MA 02110-1301 USA. + Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_28.yml b/src/licensedcode/data/rules/gpl-2.0_28.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_28.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_280.RULE b/src/licensedcode/data/rules/gpl-2.0_280.RULE index 242115cfcea..01606f80f9c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_280.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_280.RULE @@ -1,3 +1,8 @@ +--- +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 v2.0 as published by @@ -6,4 +11,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_280.yml b/src/licensedcode/data/rules/gpl-2.0_280.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_280.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_281.RULE b/src/licensedcode/data/rules/gpl-2.0_281.RULE index 1422ac16d58..bff6101c2af 100644 --- a/src/licensedcode/data/rules/gpl-2.0_281.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_281.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -5,4 +10,4 @@ version 2, as published by the Free Software Foundation. This program is distributed in the hope 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. +more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_281.yml b/src/licensedcode/data/rules/gpl-2.0_281.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_281.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_282.RULE b/src/licensedcode/data/rules/gpl-2.0_282.RULE index 0488b164dac..8a389b085d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_282.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_282.RULE @@ -1,3 +1,8 @@ +--- +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 only) as published by the Free Software Foundation. @@ -5,4 +10,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_282.yml b/src/licensedcode/data/rules/gpl-2.0_282.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_282.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_283.RULE b/src/licensedcode/data/rules/gpl-2.0_283.RULE index b5ab2313339..f907084e913 100644 --- a/src/licensedcode/data/rules/gpl-2.0_283.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_283.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +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, version 2, as published by the Free Software Foundation. @@ -8,4 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The full GNU General Public License is included in this distribution in -the file called "COPYING". +the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_283.yml b/src/licensedcode/data/rules/gpl-2.0_283.yml deleted file mode 100644 index 3eb8859d784..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_283.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_284.RULE b/src/licensedcode/data/rules/gpl-2.0_284.RULE index b3065c46331..59a993e7610 100644 --- a/src/licensedcode/data/rules/gpl-2.0_284.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_284.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, @@ -9,4 +17,4 @@ more details. The full GNU General Public License is included in this distribution in - the file called "COPYING". + the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_284.yml b/src/licensedcode/data/rules/gpl-2.0_284.yml deleted file mode 100644 index 9f1a4b9edcf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_284.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_285.RULE b/src/licensedcode/data/rules/gpl-2.0_285.RULE index b8dc3ad28a9..f768356dcdb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_285.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_285.RULE @@ -1,3 +1,8 @@ +--- +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 (GPL) Version 2 as published by the Free Software Foundation @@ -5,4 +10,4 @@ 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. + General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_285.yml b/src/licensedcode/data/rules/gpl-2.0_285.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_285.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_286.RULE b/src/licensedcode/data/rules/gpl-2.0_286.RULE index f7b6b3b5a24..543b9fd0f37 100644 --- a/src/licensedcode/data/rules/gpl-2.0_286.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_286.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation, version 2. @@ -6,4 +11,4 @@ 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, GOOD TITLE or NON INFRINGEMENT. See the GNU General Public License for -more details. +more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_286.yml b/src/licensedcode/data/rules/gpl-2.0_286.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_286.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_287.RULE b/src/licensedcode/data/rules/gpl-2.0_287.RULE index 454940b9791..af00feeecbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_287.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_287.RULE @@ -1,3 +1,8 @@ +--- +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 2 as published @@ -6,5 +11,4 @@ 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. - +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_287.yml b/src/licensedcode/data/rules/gpl-2.0_287.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_287.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_288.RULE b/src/licensedcode/data/rules/gpl-2.0_288.RULE index 6cb30b0edeb..718410029ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0_288.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_288.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 of the GNU General Public License as @@ -6,4 +11,4 @@ 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. + more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_288.yml b/src/licensedcode/data/rules/gpl-2.0_288.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_288.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_289.RULE b/src/licensedcode/data/rules/gpl-2.0_289.RULE index b2edb605999..0f8cdd814ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_289.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_289.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 80 +minimum_coverage: 100 +notes: in dutch +--- + GPL versie 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_289.yml b/src/licensedcode/data/rules/gpl-2.0_289.yml deleted file mode 100644 index e8833e2efff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_289.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 80 -minimum_coverage: 100 -notes: in dutch diff --git a/src/licensedcode/data/rules/gpl-2.0_29.RULE b/src/licensedcode/data/rules/gpl-2.0_29.RULE index f30d0705a27..7a5b7834ad1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_29.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_29.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_29.yml b/src/licensedcode/data/rules/gpl-2.0_29.yml deleted file mode 100644 index 1851e10b9cc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_290.RULE b/src/licensedcode/data/rules/gpl-2.0_290.RULE index 3c5f943cf63..455e1bc47d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_290.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_290.RULE @@ -1,3 +1,8 @@ +--- +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 GPLv2. @@ -5,4 +10,4 @@ modify it under the terms of the GPLv2. 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_290.yml b/src/licensedcode/data/rules/gpl-2.0_290.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_290.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_291.RULE b/src/licensedcode/data/rules/gpl-2.0_291.RULE index 4fea71de830..c06a5371602 100644 --- a/src/licensedcode/data/rules/gpl-2.0_291.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_291.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, @@ -5,5 +10,4 @@ version 2, as published by the Free Software Foundation. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - +51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_291.yml b/src/licensedcode/data/rules/gpl-2.0_291.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_291.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_292.RULE b/src/licensedcode/data/rules/gpl-2.0_292.RULE index 10a9a9f4b23..18e563c02c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_292.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_292.RULE @@ -1,3 +1,10 @@ +--- +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, as @@ -8,5 +15,4 @@ THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_292.yml b/src/licensedcode/data/rules/gpl-2.0_292.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_292.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_293.RULE b/src/licensedcode/data/rules/gpl-2.0_293.RULE index c5ed84fad3d..a5f389e6b7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_293.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_293.RULE @@ -1,3 +1,8 @@ +--- +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 as published by @@ -10,4 +15,4 @@ 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. +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_293.yml b/src/licensedcode/data/rules/gpl-2.0_293.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_293.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_294.RULE b/src/licensedcode/data/rules/gpl-2.0_294.RULE index b0d3c6240af..772ed459630 100644 --- a/src/licensedcode/data/rules/gpl-2.0_294.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_294.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +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 2 as published by the Free Software Foundation. @@ -9,4 +16,4 @@ You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to - the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_294.yml b/src/licensedcode/data/rules/gpl-2.0_294.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_294.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_295.RULE b/src/licensedcode/data/rules/gpl-2.0_295.RULE index de655a4aa19..7ceafaba7b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_295.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_295.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation, version 2. @@ -9,4 +14,4 @@ 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. */ + 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_295.yml b/src/licensedcode/data/rules/gpl-2.0_295.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_295.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_296.RULE b/src/licensedcode/data/rules/gpl-2.0_296.RULE index 92c92406646..f3e7aa7196e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_296.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_296.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This package 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. @@ -9,4 +14,4 @@ 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. +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_296.yml b/src/licensedcode/data/rules/gpl-2.0_296.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_296.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_297.RULE b/src/licensedcode/data/rules/gpl-2.0_297.RULE index 4beea8f5e35..0eb0348e7a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_297.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_297.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation version 2 of the License @@ -9,4 +14,4 @@ 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. +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_297.yml b/src/licensedcode/data/rules/gpl-2.0_297.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_297.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_298.RULE b/src/licensedcode/data/rules/gpl-2.0_298.RULE index 252fa103bad..5b9ae72803a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_298.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_298.RULE @@ -1,7 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This package 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. THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_298.yml b/src/licensedcode/data/rules/gpl-2.0_298.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_298.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_299.RULE b/src/licensedcode/data/rules/gpl-2.0_299.RULE index 15f3d5f01af..d3b5d3faee5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_299.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_299.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +notes: there is a typo in the reference. It should have been SPDX-License-Identifier +--- + SPDX-Identifier: GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_299.yml b/src/licensedcode/data/rules/gpl-2.0_299.yml deleted file mode 100644 index cfddeb71f0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_299.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -notes: there is a typo in the reference. It should have been SPDX-License-Identifier diff --git a/src/licensedcode/data/rules/gpl-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_3.RULE index a550b936efb..9fca667a490 100644 --- a/src/licensedcode/data/rules/gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_3.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_30.RULE b/src/licensedcode/data/rules/gpl-2.0_30.RULE index cd0558e7ae4..9834f583693 100644 --- a/src/licensedcode/data/rules/gpl-2.0_30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 70 +notes: ti-gpl +--- + * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as diff --git a/src/licensedcode/data/rules/gpl-2.0_30.yml b/src/licensedcode/data/rules/gpl-2.0_30.yml deleted file mode 100644 index 7d4706e9d28..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 70 -notes: ti-gpl diff --git a/src/licensedcode/data/rules/gpl-2.0_300.RULE b/src/licensedcode/data/rules/gpl-2.0_300.RULE index 9fc74bd8b8d..bd9d80b28dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_300.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_300.RULE @@ -1 +1,7 @@ -Licensed under the GPLv2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_300.yml b/src/licensedcode/data/rules/gpl-2.0_300.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_301.RULE b/src/licensedcode/data/rules/gpl-2.0_301.RULE index d646ba21264..b996d79b265 100644 --- a/src/licensedcode/data/rules/gpl-2.0_301.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_301.RULE @@ -1 +1,7 @@ - re-licensed under GPLv2 for the Linux kernel +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + re-licensed under GPLv2 for the Linux kernel \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_301.yml b/src/licensedcode/data/rules/gpl-2.0_301.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_301.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_302.RULE b/src/licensedcode/data/rules/gpl-2.0_302.RULE index 4eae4594fe7..161d9420e84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_302.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_302.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is licensed under GPLv2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_302.yml b/src/licensedcode/data/rules/gpl-2.0_302.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_303.RULE b/src/licensedcode/data/rules/gpl-2.0_303.RULE index 3b366c42924..1e9bc93885b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_303.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_303.RULE @@ -1 +1,7 @@ -This driver is licensed under the terms of GPLv2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This driver is licensed under the terms of GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_303.yml b/src/licensedcode/data/rules/gpl-2.0_303.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_303.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_304.RULE b/src/licensedcode/data/rules/gpl-2.0_304.RULE index ff41b68dffe..3c39c43c19c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_304.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_304.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This file is licensed under GPLv2. The driver is free software; you can redistribute it and/or @@ -12,4 +17,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with the driver; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_304.yml b/src/licensedcode/data/rules/gpl-2.0_304.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_304.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_305.RULE b/src/licensedcode/data/rules/gpl-2.0_305.RULE index 8996019b129..8231e5b46eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_305.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_305.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, @@ -12,4 +21,4 @@ this program; if not, see . The full GNU General Public License is included in this distribution in - the file called "COPYING". + the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_305.yml b/src/licensedcode/data/rules/gpl-2.0_305.yml deleted file mode 100644 index 3f521620882..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_305.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_306.RULE b/src/licensedcode/data/rules/gpl-2.0_306.RULE index c5c6cc8aaa8..11b8476eba8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_306.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_306.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -8,4 +13,4 @@ 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. +this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_306.yml b/src/licensedcode/data/rules/gpl-2.0_306.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_306.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_307.RULE b/src/licensedcode/data/rules/gpl-2.0_307.RULE index 74a360941d6..5538ac1685d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_307.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_307.RULE @@ -1,3 +1,10 @@ - May be copied or modified under the terms of the GNU General Public - License Version 2. See linux/COPYING for more information. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - linux/COPYING +--- + May be copied or modified under the terms of the GNU General Public + License Version 2. See linux/COPYING for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_307.yml b/src/licensedcode/data/rules/gpl-2.0_307.yml deleted file mode 100644 index 86d86630890..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_307.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - linux/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_308.RULE b/src/licensedcode/data/rules/gpl-2.0_308.RULE index 69eb5a35ac2..63c35945054 100644 --- a/src/licensedcode/data/rules/gpl-2.0_308.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_308.RULE @@ -1,4 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This driver is free software; you can redistribute it and/or modify it under the terms of Version 2 of the GNU General Public License as -published by the Free Software Foundation. - +published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_308.yml b/src/licensedcode/data/rules/gpl-2.0_308.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_308.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_309.RULE b/src/licensedcode/data/rules/gpl-2.0_309.RULE index cc77758e868..7a20026bab8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_309.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_309.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as - published by the Free Software Foundation. + published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_309.yml b/src/licensedcode/data/rules/gpl-2.0_309.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_309.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_31.RULE b/src/licensedcode/data/rules/gpl-2.0_31.RULE index 7aed3f26941..c5a620cbec5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_31.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + License: GNU General Public Licence 2.0 -License URI: http://www.gnu.org/licenses/gpl-2.0.html +License URI: http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_31.yml b/src/licensedcode/data/rules/gpl-2.0_31.yml deleted file mode 100644 index 072786dd5d6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_31.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_310.RULE b/src/licensedcode/data/rules/gpl-2.0_310.RULE index 4732299df3e..73bfdf3e483 100644 --- a/src/licensedcode/data/rules/gpl-2.0_310.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_310.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 70 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the version 2 of the GNU General Public License as -published by the Free Software Foundation +published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_310.yml b/src/licensedcode/data/rules/gpl-2.0_310.yml deleted file mode 100644 index 257732a98e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0_311.RULE b/src/licensedcode/data/rules/gpl-2.0_311.RULE index 1d7a292aa5d..573ee649332 100644 --- a/src/licensedcode/data/rules/gpl-2.0_311.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_311.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + This software program is licensed subject to the GNU General Public License (GPL).Version 2,June 1991, available at - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html + http://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_311.yml b/src/licensedcode/data/rules/gpl-2.0_311.yml deleted file mode 100644 index c6de65a46e7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_311.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_312.RULE b/src/licensedcode/data/rules/gpl-2.0_312.RULE index 3b2c8bb0ac7..6e175ebfd27 100644 --- a/src/licensedcode/data/rules/gpl-2.0_312.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_312.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as @@ -14,4 +22,4 @@ USA The full GNU General Public License is included in this distribution - in the file called COPYING. + in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_312.yml b/src/licensedcode/data/rules/gpl-2.0_312.yml deleted file mode 100644 index 3eb8859d784..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_312.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_313.RULE b/src/licensedcode/data/rules/gpl-2.0_313.RULE index 27c54ec33f5..b00a33cc168 100644 --- a/src/licensedcode/data/rules/gpl-2.0_313.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_313.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 20 +referenced_filenames: + - COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, @@ -13,4 +21,4 @@ this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. The full GNU General Public License is included in this distribution in -the file called "COPYING". +the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_313.yml b/src/licensedcode/data/rules/gpl-2.0_313.yml deleted file mode 100644 index 3b7f14b0c8a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_313.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 20 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_314.RULE b/src/licensedcode/data/rules/gpl-2.0_314.RULE index 7bd46855d5f..d764c7e19a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_314.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_314.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/licenses/licenses.html +--- + is released under the terms of the GNU GPL v2." "For more information, please see the source code or" -"visit http://www.fsf.org/licenses/licenses.html"); +"visit http://www.fsf.org/licenses/licenses.html"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_314.yml b/src/licensedcode/data/rules/gpl-2.0_314.yml deleted file mode 100644 index 5b3d592599d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_314.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/gpl-2.0_315.RULE b/src/licensedcode/data/rules/gpl-2.0_315.RULE index 4b0f6596cec..f0a5e60fecb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_315.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_315.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses + - http://www.oracle.com/ +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -19,4 +27,4 @@ Please contact Oracle Corporation, Inc., 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any questions. -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_315.yml b/src/licensedcode/data/rules/gpl-2.0_315.yml deleted file mode 100644 index 5360d85c5c5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_315.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_316.RULE b/src/licensedcode/data/rules/gpl-2.0_316.RULE index 422251e0234..aba07f2424d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_316.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_316.RULE @@ -1 +1,7 @@ - License: GPLv2 as published by the FSF. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + License: GPLv2 as published by the FSF. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_316.yml b/src/licensedcode/data/rules/gpl-2.0_316.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_316.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_317.RULE b/src/licensedcode/data/rules/gpl-2.0_317.RULE index 4ce6457ea5d..90cb9e7a9c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_317.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_317.RULE @@ -1,3 +1,8 @@ +--- +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 as @@ -6,4 +11,4 @@ published by the Free Software Foundation version 2. This program is distributed WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_317.yml b/src/licensedcode/data/rules/gpl-2.0_317.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_317.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_318.RULE b/src/licensedcode/data/rules/gpl-2.0_318.RULE index dbaebacaa2f..9d606d714cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_318.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_318.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation version 2. @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA -02111-1307, USA +02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_318.yml b/src/licensedcode/data/rules/gpl-2.0_318.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_318.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_319.RULE b/src/licensedcode/data/rules/gpl-2.0_319.RULE index b582a32ba55..8ea3b04e94e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_319.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_319.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -5,4 +10,4 @@ published by the Free Software Foundation. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether expressed or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2 for more details. +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_319.yml b/src/licensedcode/data/rules/gpl-2.0_319.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_319.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_32.RULE b/src/licensedcode/data/rules/gpl-2.0_32.RULE index 1da9fba6d2c..11111adb916 100644 --- a/src/licensedcode/data/rules/gpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_32.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -90,4 +101,4 @@ NO WARRANTY 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_32.yml b/src/licensedcode/data/rules/gpl-2.0_32.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_32.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_320.RULE b/src/licensedcode/data/rules/gpl-2.0_320.RULE index b34fa5b3be3..60f03133144 100644 --- a/src/licensedcode/data/rules/gpl-2.0_320.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_320.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -5,4 +10,4 @@ version 2 as published by the Free Software Foundation. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_320.yml b/src/licensedcode/data/rules/gpl-2.0_320.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_320.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_321.RULE b/src/licensedcode/data/rules/gpl-2.0_321.RULE index c6456dae874..43f71c9f434 100644 --- a/src/licensedcode/data/rules/gpl-2.0_321.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_321.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -9,4 +14,4 @@ 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., 59 Temple -Place - Suite 330, Boston, MA 02111-1307 USA. +Place - Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_321.yml b/src/licensedcode/data/rules/gpl-2.0_321.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_321.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_322.RULE b/src/licensedcode/data/rules/gpl-2.0_322.RULE index 67b6190ff3a..6467b5a23d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_322.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_322.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,4 +23,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_322.yml b/src/licensedcode/data/rules/gpl-2.0_322.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_322.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_323.RULE b/src/licensedcode/data/rules/gpl-2.0_323.RULE index 0e391313543..33ecb696489 100644 --- a/src/licensedcode/data/rules/gpl-2.0_323.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_323.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -9,4 +14,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public Licens along with this program; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111- +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111- \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_323.yml b/src/licensedcode/data/rules/gpl-2.0_323.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_323.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_324.RULE b/src/licensedcode/data/rules/gpl-2.0_324.RULE index 34af34a5ef8..2c9fe251edf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_324.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_324.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation version 2 and no later version. @@ -5,4 +10,4 @@ Free Software Foundation version 2 and no 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. +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_324.yml b/src/licensedcode/data/rules/gpl-2.0_324.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_324.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_325.RULE b/src/licensedcode/data/rules/gpl-2.0_325.RULE index 7f350673a0f..70c182f7201 100644 --- a/src/licensedcode/data/rules/gpl-2.0_325.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_325.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - LICENSE +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as @@ -9,5 +17,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The full GNU General Public License is included in this distribution in the -file called LICENSE. - +file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_325.yml b/src/licensedcode/data/rules/gpl-2.0_325.yml deleted file mode 100644 index 2b7bab29bef..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_325.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_325_1.RULE b/src/licensedcode/data/rules/gpl-2.0_325_1.RULE index 2c142cd3130..b18688d902f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_325_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_325_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + GPL LICENSE SUMMARY @@ -11,4 +18,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The full GNU General Public License is included in this distribution -in the file called COPYING. +in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_325_1.yml b/src/licensedcode/data/rules/gpl-2.0_325_1.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_325_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_325_2.RULE b/src/licensedcode/data/rules/gpl-2.0_325_2.RULE index a9990b2e3a0..be9eb94d6c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_325_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_325_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + GPL LICENSE SUMMARY @@ -11,4 +18,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The full GNU General Public License is included in this distribution -in the file called LICENSE. +in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_325_2.yml b/src/licensedcode/data/rules/gpl-2.0_325_2.yml deleted file mode 100644 index 37643e41a3a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_325_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_325_3.RULE b/src/licensedcode/data/rules/gpl-2.0_325_3.RULE index 6c55390066d..3d0dc0b3468 100644 --- a/src/licensedcode/data/rules/gpl-2.0_325_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_325_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - COPYING +--- + This file is provided under the GPLv2 license. GPL LICENSE SUMMARY @@ -13,4 +21,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The full GNU General Public License is included in this distribution -in the file called COPYING. +in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_325_3.yml b/src/licensedcode/data/rules/gpl-2.0_325_3.yml deleted file mode 100644 index 3b98936e251..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_325_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_326.RULE b/src/licensedcode/data/rules/gpl-2.0_326.RULE index e560cb824ee..aa40b1f6012 100644 --- a/src/licensedcode/data/rules/gpl-2.0_326.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_326.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Tmis program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -8,5 +13,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. The full GNU General Public License is included in this distribution in the -file called LICENSE. - +file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_326.yml b/src/licensedcode/data/rules/gpl-2.0_326.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_326.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_327.RULE b/src/licensedcode/data/rules/gpl-2.0_327.RULE index b70905356e3..42e43128917 100644 --- a/src/licensedcode/data/rules/gpl-2.0_327.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_327.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Tmis program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -8,4 +13,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. Tme full GNU General Public License is included in this distribution in the -file called LICENSE. +file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_327.yml b/src/licensedcode/data/rules/gpl-2.0_327.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_327.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_328.RULE b/src/licensedcode/data/rules/gpl-2.0_328.RULE index c77d8ccd546..82e33a5cfee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_328.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_328.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Tmis program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as @@ -9,4 +14,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. Tme full GNU General Public License is included in this distribution in the -file called LICENSE. +file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_328.yml b/src/licensedcode/data/rules/gpl-2.0_328.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_328.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_329.RULE b/src/licensedcode/data/rules/gpl-2.0_329.RULE index 20cfbfaa979..812fe3c60d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_329.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_329.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -8,4 +13,4 @@ more details. The full GNU General Public License is included in this distribution in the - file called LICENSE. + file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_329.yml b/src/licensedcode/data/rules/gpl-2.0_329.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_329.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_33.RULE b/src/licensedcode/data/rules/gpl-2.0_33.RULE index c1c8c2f403b..09bf5aea417 100644 --- a/src/licensedcode/data/rules/gpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_33.yml b/src/licensedcode/data/rules/gpl-2.0_33.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_330.RULE b/src/licensedcode/data/rules/gpl-2.0_330.RULE index 81196a79f44..8aeff069e42 100644 --- a/src/licensedcode/data/rules/gpl-2.0_330.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_330.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + This code is placed under the terms of the GNU General Public License -Released by under GPLv2. +Released by under GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_330.yml b/src/licensedcode/data/rules/gpl-2.0_330.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_330.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_331.RULE b/src/licensedcode/data/rules/gpl-2.0_331.RULE index 4a92331a4b4..0397e2ee32c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_331.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_331.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +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 2 of the License. @@ -9,4 +18,4 @@ You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, see - http://www.gnu.org/licenses/. + http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_331.yml b/src/licensedcode/data/rules/gpl-2.0_331.yml deleted file mode 100644 index 30663016f32..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_331.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_332.RULE b/src/licensedcode/data/rules/gpl-2.0_332.RULE index 4d0b359684e..2a1505057f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_332.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_332.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +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 version 2 as published by the Free Software Foundation. @@ -9,4 +16,4 @@ more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software -Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_332.yml b/src/licensedcode/data/rules/gpl-2.0_332.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_332.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_333.RULE b/src/licensedcode/data/rules/gpl-2.0_333.RULE index bac56574784..c6225ce252b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_333.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_333.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Driver 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. @@ -8,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with Driver; if not, see . + along with Driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_333.yml b/src/licensedcode/data/rules/gpl-2.0_333.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_333.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_334.RULE b/src/licensedcode/data/rules/gpl-2.0_334.RULE index 6678c2eb38b..f3d265aef0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_334.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_334.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under the GNU General Public License, version 2 (GPL2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_334.yml b/src/licensedcode/data/rules/gpl-2.0_334.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_334.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_335.RULE b/src/licensedcode/data/rules/gpl-2.0_335.RULE index 6bd0d32d0ba..3c0e2a06ab5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_335.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_335.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public @@ -9,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_335.yml b/src/licensedcode/data/rules/gpl-2.0_335.yml deleted file mode 100644 index 0e9e1493aa6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_335.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_336.RULE b/src/licensedcode/data/rules/gpl-2.0_336.RULE index d4ade868b68..c3daace92a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_336.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_336.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - COPYING +--- + This file is subject to the terms and conditions of the GNU General Public License. See the file "COPYING" in the main directory of this archive for more details. @@ -9,4 +17,4 @@ 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 + 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_336.yml b/src/licensedcode/data/rules/gpl-2.0_336.yml deleted file mode 100644 index 3dd9d31eee2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_337.RULE b/src/licensedcode/data/rules/gpl-2.0_337.RULE index 450b79d6bf9..170566e2103 100644 --- a/src/licensedcode/data/rules/gpl-2.0_337.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_337.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This file is subject to the terms and conditions of version 2 of the GNU General Public License. See the file COPYING in the main -directory of this archive for more details. +directory of this archive for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_337.yml b/src/licensedcode/data/rules/gpl-2.0_337.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_337.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_338.RULE b/src/licensedcode/data/rules/gpl-2.0_338.RULE index b07c7207894..b9c716611e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_338.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_338.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - COPYING +--- + This file is subject to the terms and conditions of the GNU General Public License. See the file "COPYING" in the main directory of this archive for more details. @@ -9,4 +17,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_338.yml b/src/licensedcode/data/rules/gpl-2.0_338.yml deleted file mode 100644 index 3dd9d31eee2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_338.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_339.RULE b/src/licensedcode/data/rules/gpl-2.0_339.RULE index ea4e21b9d9a..5dd773772e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_339.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_339.RULE @@ -1,4 +1,9 @@ +--- +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 - publishhed by the Free Software Foundation. + publishhed by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_339.yml b/src/licensedcode/data/rules/gpl-2.0_339.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_339.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_34.RULE b/src/licensedcode/data/rules/gpl-2.0_34.RULE index e3f026e1e5c..9f36a57935b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_34.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_34.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: Only GPL 2.0 +--- + * 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. @@ -9,4 +15,4 @@ * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_34.yml b/src/licensedcode/data/rules/gpl-2.0_34.yml deleted file mode 100644 index 63400971afa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: Only GPL 2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_340.RULE b/src/licensedcode/data/rules/gpl-2.0_340.RULE index 0fe86265f7f..ddf2938ce57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_340.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_340.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Tmis program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -12,4 +17,4 @@ tmis program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA Tme full GNU General Public License is included in this distribution in the -file called LICENSE. +file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_340.yml b/src/licensedcode/data/rules/gpl-2.0_340.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_340.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_341.RULE b/src/licensedcode/data/rules/gpl-2.0_341.RULE index 8db5584ff4a..fa45bcadd19 100644 --- a/src/licensedcode/data/rules/gpl-2.0_341.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_341.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +--- + GPL LICENSE SUMMARY @@ -14,4 +20,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. The full GNU General Public License is included in this distribution - in the file called LICENSE.GPL. + in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_341.yml b/src/licensedcode/data/rules/gpl-2.0_341.yml deleted file mode 100644 index a32e3cd5833..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_342.RULE b/src/licensedcode/data/rules/gpl-2.0_342.RULE index f730b65be63..ffa2d6d4875 100644 --- a/src/licensedcode/data/rules/gpl-2.0_342.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_342.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + 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. Since it is based on ext2, and the only @@ -11,4 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_342.yml b/src/licensedcode/data/rules/gpl-2.0_342.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_342.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_343.RULE b/src/licensedcode/data/rules/gpl-2.0_343.RULE index 19ff7dc729e..2c6b2707718 100644 --- a/src/licensedcode/data/rules/gpl-2.0_343.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_343.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 75 +--- + exofs 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. Since it is based on ext2, and the only @@ -11,4 +17,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with exofs; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_343.yml b/src/licensedcode/data/rules/gpl-2.0_343.yml deleted file mode 100644 index a29eb69895e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_343.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 75 diff --git a/src/licensedcode/data/rules/gpl-2.0_344.RULE b/src/licensedcode/data/rules/gpl-2.0_344.RULE index 30bf0e1010a..b53498d0ba5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_344.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_344.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. -/ +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_344.yml b/src/licensedcode/data/rules/gpl-2.0_344.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_344.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_345.RULE b/src/licensedcode/data/rules/gpl-2.0_345.RULE index 04b64701b6d..2dc03942fc9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_345.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_345.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -10,4 +15,4 @@ 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 St, Fifth Floor, Boston, MA -02110-1301 USA +02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_345.yml b/src/licensedcode/data/rules/gpl-2.0_345.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_345.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_346.RULE b/src/licensedcode/data/rules/gpl-2.0_346.RULE index e38d44bf4b4..7f0da94e6a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_346.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_346.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + this 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. (GPL v2) @@ -9,4 +14,4 @@ You should have received a copy of the GNU General Public License along with the this; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_346.yml b/src/licensedcode/data/rules/gpl-2.0_346.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_346.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_347.RULE b/src/licensedcode/data/rules/gpl-2.0_347.RULE index ba6aa3e3705..e20dd35c993 100644 --- a/src/licensedcode/data/rules/gpl-2.0_347.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_347.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 20 +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; version 2 of the License and no later version. @@ -13,4 +21,4 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. The full GNU General Public License is included in this distribution in -the file called "COPYING". +the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_347.yml b/src/licensedcode/data/rules/gpl-2.0_347.yml deleted file mode 100644 index 3b7f14b0c8a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_347.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 20 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_348.RULE b/src/licensedcode/data/rules/gpl-2.0_348.RULE index 97b050fcc4b..6956cd11070 100644 --- a/src/licensedcode/data/rules/gpl-2.0_348.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_348.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +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 version 2 as published by the Free Software Foundation. The full GNU General - Public License is included in this distribution in the file called COPYING. + Public License is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_348.yml b/src/licensedcode/data/rules/gpl-2.0_348.yml deleted file mode 100644 index 3eb8859d784..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_348.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_349.RULE b/src/licensedcode/data/rules/gpl-2.0_349.RULE index 4efc7417d38..f0d4c412749 100644 --- a/src/licensedcode/data/rules/gpl-2.0_349.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_349.RULE @@ -1,3 +1,8 @@ +--- +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 ("GPL") -version 2}}, as published by the Free Software Foundation. +modify it under the terms of the GNU General Public License ("GPL") +version 2, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_349.yml b/src/licensedcode/data/rules/gpl-2.0_349.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_349.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_35.RULE b/src/licensedcode/data/rules/gpl-2.0_35.RULE index 84fa011e0b7..fd2c270068c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_35.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 99 +--- + license = 'GPL2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_35.yml b/src/licensedcode/data/rules/gpl-2.0_35.yml deleted file mode 100644 index 03933aa52c9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_350.RULE b/src/licensedcode/data/rules/gpl-2.0_350.RULE index 83ac10b6099..766af713658 100644 --- a/src/licensedcode/data/rules/gpl-2.0_350.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_350.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + The contents of this file may be used under the terms of the GNU General Public License version 2 (the "GPL") as distributed in - the kernel source COPYING file. + the kernel source COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_350.yml b/src/licensedcode/data/rules/gpl-2.0_350.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_350.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_351.RULE b/src/licensedcode/data/rules/gpl-2.0_351.RULE index 74f9ec0c557..5a5bbc37633 100644 --- a/src/licensedcode/data/rules/gpl-2.0_351.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_351.RULE @@ -1 +1,7 @@ - released under GPLv2: +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + released under GPLv2: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_351.yml b/src/licensedcode/data/rules/gpl-2.0_351.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_351.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_352.RULE b/src/licensedcode/data/rules/gpl-2.0_352.RULE index 8840923baf9..7c5dacb2415 100644 --- a/src/licensedcode/data/rules/gpl-2.0_352.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_352.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.htm +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,4 +23,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.htm -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_352.yml b/src/licensedcode/data/rules/gpl-2.0_352.yml deleted file mode 100644 index f9dd9f53683..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_352.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.htm diff --git a/src/licensedcode/data/rules/gpl-2.0_353.RULE b/src/licensedcode/data/rules/gpl-2.0_353.RULE index 311c334f711..93e9fc11e83 100644 --- a/src/licensedcode/data/rules/gpl-2.0_353.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_353.RULE @@ -1,3 +1,10 @@ +--- +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 as published by @@ -9,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_353.yml b/src/licensedcode/data/rules/gpl-2.0_353.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_353.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_354.RULE b/src/licensedcode/data/rules/gpl-2.0_354.RULE index 7688a2b8e6b..dc385b3fa4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_354.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_354.RULE @@ -1,3 +1,10 @@ +--- +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 of the License as published by the Free Software Foundation. @@ -8,4 +15,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_354.yml b/src/licensedcode/data/rules/gpl-2.0_354.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_354.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_355.RULE b/src/licensedcode/data/rules/gpl-2.0_355.RULE index 75a4da3cbcb..3204124831b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_355.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_355.RULE @@ -1,3 +1,10 @@ +--- +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 as published by the Free Software Foundation; either version 2 of the License @@ -8,4 +15,4 @@ 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 . + along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_355.yml b/src/licensedcode/data/rules/gpl-2.0_355.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_355.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_356.RULE b/src/licensedcode/data/rules/gpl-2.0_356.RULE index d8eec2a86f5..11249f50d6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_356.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_356.RULE @@ -1,3 +1,10 @@ +--- +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 version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -8,5 +15,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 General Public License -along with this program; if not, see . - +along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_356.yml b/src/licensedcode/data/rules/gpl-2.0_356.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_356.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_357.RULE b/src/licensedcode/data/rules/gpl-2.0_357.RULE index 93e9c88b45e..d78e402bd1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_357.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_357.RULE @@ -1,3 +1,10 @@ +--- +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 version 2 of the GNU General Public License as published by the Free Software Foundation @@ -8,4 +15,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 General Public License -along with this program; if not, see . +along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_357.yml b/src/licensedcode/data/rules/gpl-2.0_357.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_357.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_358.RULE b/src/licensedcode/data/rules/gpl-2.0_358.RULE index a631ba67ce7..4b1704c4a08 100644 --- a/src/licensedcode/data/rules/gpl-2.0_358.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_358.RULE @@ -1 +1,7 @@ -Licensed under the terms of the GNU General Public License, version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the terms of the GNU General Public License, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_358.yml b/src/licensedcode/data/rules/gpl-2.0_358.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_358.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_359.RULE b/src/licensedcode/data/rules/gpl-2.0_359.RULE index 10a66b72d55..3edb37720e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_359.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_359.RULE @@ -1,4 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Use of this code is subject to the terms and conditions of the GNU general public license version 2. See "COPYING" or -http://www.gnu.org/licenses/gpl.html +http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_359.yml b/src/licensedcode/data/rules/gpl-2.0_359.yml deleted file mode 100644 index adc570b4d59..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_359.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_36.RULE b/src/licensedcode/data/rules/gpl-2.0_36.RULE index a2210c408a3..d5365adcc45 100644 --- a/src/licensedcode/data/rules/gpl-2.0_36.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_36.RULE @@ -1 +1,9 @@ -http://creativecommons.org/licenses/GPL/2.0/ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ +--- + +http://creativecommons.org/licenses/GPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_36.yml b/src/licensedcode/data/rules/gpl-2.0_36.yml deleted file mode 100644 index b525b2355ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ diff --git a/src/licensedcode/data/rules/gpl-2.0_360.RULE b/src/licensedcode/data/rules/gpl-2.0_360.RULE index 37e8b01f0f4..9b05a6d8933 100644 --- a/src/licensedcode/data/rules/gpl-2.0_360.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_360.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Your use of this code is subject to the terms and conditions of the GNU general public license version 2. See "COPYING" or -http://www.gnu.org/licenses/gpl.html +http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_360.yml b/src/licensedcode/data/rules/gpl-2.0_360.yml deleted file mode 100644 index f62368a9c7e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_360.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_361.RULE b/src/licensedcode/data/rules/gpl-2.0_361.RULE index 1f00da43117..1811ae40059 100644 --- a/src/licensedcode/data/rules/gpl-2.0_361.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_361.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Release under the terms of the GNU GENERAL PUBLIC LICENSE version 2. -See the file COPYING. +See the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_361.yml b/src/licensedcode/data/rules/gpl-2.0_361.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_361.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_362.RULE b/src/licensedcode/data/rules/gpl-2.0_362.RULE index f64321d5e32..b166150973b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_362.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_362.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This driver is released to the public under the terms of the GNU GENERAL PUBLIC LICENSE version 2 -See the file COPYING for details. +See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_362.yml b/src/licensedcode/data/rules/gpl-2.0_362.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_362.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_363.RULE b/src/licensedcode/data/rules/gpl-2.0_363.RULE index fc949b5f35d..6957c3350aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_363.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_363.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program may be used under the terms of version 2 of the GNU -General Public License. +General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_363.yml b/src/licensedcode/data/rules/gpl-2.0_363.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_363.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_364.RULE b/src/licensedcode/data/rules/gpl-2.0_364.RULE index 131e59f588a..3a6f8586a81 100644 --- a/src/licensedcode/data/rules/gpl-2.0_364.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_364.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This file is subject to the terms and conditions of the GNU General Public -License version 2 as published by the Free Software Foundation. +License version 2 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_364.yml b/src/licensedcode/data/rules/gpl-2.0_364.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_364.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_365.RULE b/src/licensedcode/data/rules/gpl-2.0_365.RULE index 61ffe99ccb5..7f52d4bdcff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_365.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_365.RULE @@ -1,4 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; you can distribute it and/or modify it under the terms of the GNU General Public License (Version 2) as -published by the Free Software Foundation. - +published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_365.yml b/src/licensedcode/data/rules/gpl-2.0_365.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_365.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_366.RULE b/src/licensedcode/data/rules/gpl-2.0_366.RULE index 221512db786..bcfc8e34268 100644 --- a/src/licensedcode/data/rules/gpl-2.0_366.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_366.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licensed under the terms of the GNU General Public -License version 2. See file COPYING for details. +License version 2. See file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_366.yml b/src/licensedcode/data/rules/gpl-2.0_366.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_366.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_367.RULE b/src/licensedcode/data/rules/gpl-2.0_367.RULE index 02ac7ee86d7..d8e710f5ecf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_367.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_367.RULE @@ -1 +1,7 @@ -Distributable under the terms of the GNU General Public License, version 2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Distributable under the terms of the GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_367.yml b/src/licensedcode/data/rules/gpl-2.0_367.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_367.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_368.RULE b/src/licensedcode/data/rules/gpl-2.0_368.RULE index 3d867784db3..de0448c7472 100644 --- a/src/licensedcode/data/rules/gpl-2.0_368.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_368.RULE @@ -1 +1,11 @@ -See LICENSE.qla4xxx for copyright and licensing details. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.qla4xxx +notes: the license filename is unique an in from the Linux kernel GPL-2.0 +--- + +See LICENSE.qla4xxx for copyright and licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_368.yml b/src/licensedcode/data/rules/gpl-2.0_368.yml deleted file mode 100644 index 76f88dd0ffd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_368.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.qla4xxx -notes: the license filename is unique an in from the Linux kernel GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_369.RULE b/src/licensedcode/data/rules/gpl-2.0_369.RULE index 05b0c28d2fb..479be2a893c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_369.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_369.RULE @@ -1 +1,11 @@ - See LICENSE.qla2xxx for copyright and licensing details. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.qla2xxx +notes: the license filename is unique +--- + + See LICENSE.qla2xxx for copyright and licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_369.yml b/src/licensedcode/data/rules/gpl-2.0_369.yml deleted file mode 100644 index 21c384793ec..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_369.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.qla2xxx -notes: the license filename is unique diff --git a/src/licensedcode/data/rules/gpl-2.0_37.RULE b/src/licensedcode/data/rules/gpl-2.0_37.RULE index dbdd032efa9..df9ef450bbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_37.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_37.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + is licensed under the GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_37.yml b/src/licensedcode/data/rules/gpl-2.0_37.yml deleted file mode 100644 index 06fa784548b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_370.RULE b/src/licensedcode/data/rules/gpl-2.0_370.RULE index f71b6649669..b65a6e4eb87 100644 --- a/src/licensedcode/data/rules/gpl-2.0_370.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_370.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.qlcnic +notes: the license filename is unique an in from the Linux kernel GPL-2.0 +--- -See LICENSE.qlcnic for copyright and licensing details. +See LICENSE.qlcnic for copyright and licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_370.yml b/src/licensedcode/data/rules/gpl-2.0_370.yml deleted file mode 100644 index 09c852ccfd4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_370.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.qlcnic -notes: the license filename is unique an in from the Linux kernel GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_371.RULE b/src/licensedcode/data/rules/gpl-2.0_371.RULE index 269cfb8cc9c..30c1d14ca40 100644 --- a/src/licensedcode/data/rules/gpl-2.0_371.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_371.RULE @@ -1 +1,11 @@ -See LICENSE.qlge for copyright and licensing details. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.qlge +notes: the license filename is unique an in from the Linux kernel GPL-2.0 +--- + +See LICENSE.qlge for copyright and licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_371.yml b/src/licensedcode/data/rules/gpl-2.0_371.yml deleted file mode 100644 index 1eb72ea0a8f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_371.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.qlge -notes: the license filename is unique an in from the Linux kernel GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_372.RULE b/src/licensedcode/data/rules/gpl-2.0_372.RULE index 1bb323e4857..9839f3f2db4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_372.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_372.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This documentation 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. @@ -13,4 +20,4 @@ MA 02111-1307 USA For more details see the file COPYING in the source - distribution of Linux. + distribution of Linux. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_372.yml b/src/licensedcode/data/rules/gpl-2.0_372.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_372.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_373.RULE b/src/licensedcode/data/rules/gpl-2.0_373.RULE index d38c2122ed8..565b286db0b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_373.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_373.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This driver 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; version 2 of the License. If you want to use any later version of the GNU GPL, you will probably -be allowed to, but you have to ask me +be allowed to, but you have to ask me \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_373.yml b/src/licensedcode/data/rules/gpl-2.0_373.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_373.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_374.RULE b/src/licensedcode/data/rules/gpl-2.0_374.RULE index 9c24d45da0c..93df3cb53d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_374.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_374.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Reiserfs is hereby licensed under the GNU General -Public License version 2. +Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_374.yml b/src/licensedcode/data/rules/gpl-2.0_374.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_374.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_375.RULE b/src/licensedcode/data/rules/gpl-2.0_375.RULE index 5724ba8e18d..371631a6910 100644 --- a/src/licensedcode/data/rules/gpl-2.0_375.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_375.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - reiserfs/README +notes: the license filename is unique an in from the Linux kernel GPL-2.0 +--- + licensing governed by reiserfs/README \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_375.yml b/src/licensedcode/data/rules/gpl-2.0_375.yml deleted file mode 100644 index 00da3d0b0a5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_375.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - reiserfs/README -notes: the license filename is unique an in from the Linux kernel GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_376.RULE b/src/licensedcode/data/rules/gpl-2.0_376.RULE index c18c580c18d..e4c907b0dac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_376.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_376.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + [LICENSING] ReiserFS is hereby licensed under the GNU General -Public License version 2. - +Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_376.yml b/src/licensedcode/data/rules/gpl-2.0_376.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_377.RULE b/src/licensedcode/data/rules/gpl-2.0_377.RULE index 35f55debb25..42d91134de1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_377.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_377.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + This software file (the "File") is distributed by Marvell International Ltd. under the terms of the GNU General Public License Version 2, June 1991 (the "License"). You may use, redistribute and/or modify this File in @@ -8,4 +15,4 @@ web at http://www.gnu.org/licenses/gpl.txt. THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The License provides additional details about -this warranty disclaimer. +this warranty disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_377.yml b/src/licensedcode/data/rules/gpl-2.0_377.yml deleted file mode 100644 index 9372967a598..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_377.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_378.RULE b/src/licensedcode/data/rules/gpl-2.0_378.RULE index 13bf29cf9e5..69f2f725c05 100644 --- a/src/licensedcode/data/rules/gpl-2.0_378.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_378.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -13,4 +18,4 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. The full GNU General Public License is included in this distribution in the -file called LICENSE. +file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_378.yml b/src/licensedcode/data/rules/gpl-2.0_378.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_378.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_379.RULE b/src/licensedcode/data/rules/gpl-2.0_379.RULE index af7a8ff435b..1031e186891 100644 --- a/src/licensedcode/data/rules/gpl-2.0_379.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_379.RULE @@ -1 +1,7 @@ - License: GPL, version 2.0 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + + License: GPL, version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_379.yml b/src/licensedcode/data/rules/gpl-2.0_379.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_379.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_38.RULE b/src/licensedcode/data/rules/gpl-2.0_38.RULE index 589ce5be28c..4257eefd4e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_38.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_38.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL 2.0 full text +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -277,4 +289,4 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_38.yml b/src/licensedcode/data/rules/gpl-2.0_38.yml deleted file mode 100644 index 42dc456c5b2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_38.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL 2.0 full text -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_380.RULE b/src/licensedcode/data/rules/gpl-2.0_380.RULE index becb1ecb0d7..1b7fab7824f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_380.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_380.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software may be used and distributed according to the terms of the GNU Public License, Version 2, incorporated herein -by reference. +by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_380.yml b/src/licensedcode/data/rules/gpl-2.0_380.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_380.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_381.RULE b/src/licensedcode/data/rules/gpl-2.0_381.RULE index 315b79beffb..afb9a2684f0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_381.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_381.RULE @@ -1 +1,9 @@ -Released under terms in GPL version 2. See COPYING. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +Released under terms in GPL version 2. See COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_381.yml b/src/licensedcode/data/rules/gpl-2.0_381.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_381.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_382.RULE b/src/licensedcode/data/rules/gpl-2.0_382.RULE index 386f09b3ba2..fbbe6ec5864 100644 --- a/src/licensedcode/data/rules/gpl-2.0_382.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_382.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This source file is released under GPL v2 license (no other versions). See the COPYING file included in the main directory of this source - distribution for the license terms and conditions. + distribution for the license terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_382.yml b/src/licensedcode/data/rules/gpl-2.0_382.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_382.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_383.RULE b/src/licensedcode/data/rules/gpl-2.0_383.RULE index 6188594c607..6059d7f65c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_383.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_383.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +ignorable_authors: + - Andy Polyakov + - Andy Polyakov for the OpenSSL project +ignorable_urls: + - http://www.openssl.org/~appro/cryptogams +ignorable_emails: + - appro@fy.chalmers.se +--- + This code is taken from the OpenSSL project but the author (Andy Polyakov) has relicensed it under the GPLv2. Therefore this program is free software; you can redistribute it and/or modify it under the terms of the GNU General @@ -11,4 +25,4 @@ Written by Andy Polyakov for the OpenSSL project. The module is, however, dual licensed under OpenSSL and CRYPTOGAMS licenses depending on where you obtain it. For further details see http://www.openssl.org/~appro/cryptogams/. -==================================================================== +==================================================================== \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_383.yml b/src/licensedcode/data/rules/gpl-2.0_383.yml deleted file mode 100644 index 9f104cbf5bf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_383.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -ignorable_authors: - - Andy Polyakov - - Andy Polyakov for the OpenSSL project -ignorable_urls: - - http://www.openssl.org/~appro/cryptogams -ignorable_emails: - - appro@fy.chalmers.se diff --git a/src/licensedcode/data/rules/gpl-2.0_384.RULE b/src/licensedcode/data/rules/gpl-2.0_384.RULE index 8f257f65f42..a04bafc94e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_384.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_384.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This file is released under the GPLv2. -See the file COPYING for more details. +See the file COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_384.yml b/src/licensedcode/data/rules/gpl-2.0_384.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_384.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_385.RULE b/src/licensedcode/data/rules/gpl-2.0_385.RULE index a5df3ef1d3b..552f8a8bb2c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_385.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_385.RULE @@ -1 +1,7 @@ -Licensed under the GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_385.yml b/src/licensedcode/data/rules/gpl-2.0_385.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_385.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_386.RULE b/src/licensedcode/data/rules/gpl-2.0_386.RULE index 180533ce8cf..c8aa73aa9a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_386.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_386.RULE @@ -1 +1,7 @@ -Licensed under the GNU GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_386.yml b/src/licensedcode/data/rules/gpl-2.0_386.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_387.RULE b/src/licensedcode/data/rules/gpl-2.0_387.RULE index 1512d7055d8..30d6e3533df 100644 --- a/src/licensedcode/data/rules/gpl-2.0_387.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_387.RULE @@ -1 +1,9 @@ -Licensed under the GPL version 2. See COPYING for details. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +Licensed under the GPL version 2. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_387.yml b/src/licensedcode/data/rules/gpl-2.0_387.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_387.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_388.RULE b/src/licensedcode/data/rules/gpl-2.0_388.RULE index 815dc76ca3c..e7e376fe191 100644 --- a/src/licensedcode/data/rules/gpl-2.0_388.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_388.RULE @@ -1 +1,10 @@ -licensing of what follows is governed by reiserfs/README +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +referenced_filenames: + - reiserfs/README +notes: the license filename is unique an in from the Linux kernel GPL-2.0 +--- + +licensing of what follows is governed by reiserfs/README \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_388.yml b/src/licensedcode/data/rules/gpl-2.0_388.yml deleted file mode 100644 index dc1fc021c96..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_388.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -referenced_filenames: - - reiserfs/README -notes: the license filename is unique an in from the Linux kernel GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_389.RULE b/src/licensedcode/data/rules/gpl-2.0_389.RULE index 71a81312616..a65fc8b1af6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_389.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_389.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2 (June 1991). See the "COPYING" file distributed with this software -for more info. +for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_389.yml b/src/licensedcode/data/rules/gpl-2.0_389.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_389.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_39.RULE b/src/licensedcode/data/rules/gpl-2.0_39.RULE index 613fc0ad4bf..0be49072178 100644 --- a/src/licensedcode/data/rules/gpl-2.0_39.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_39.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU General Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_39.yml b/src/licensedcode/data/rules/gpl-2.0_39.yml deleted file mode 100644 index 06fa784548b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_39.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_390.RULE b/src/licensedcode/data/rules/gpl-2.0_390.RULE index 03b3c05e3fc..a396750908e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_390.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_390.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + This software file (the "File") is distributed by Marvell International Ltd. under the terms of the GNU General Public License Version 2, June 1991 (the "License"). You may use, redistribute and/or modify this File in @@ -10,4 +17,4 @@ worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The License provides additional details about -this warranty disclaimer. +this warranty disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_390.yml b/src/licensedcode/data/rules/gpl-2.0_390.yml deleted file mode 100644 index f421a22399c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_390.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_391.RULE b/src/licensedcode/data/rules/gpl-2.0_391.RULE index 8026dc2b65f..1022258c0ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_391.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_391.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + This software file (the "File") is distributed by company under the terms of the GNU General Public License Version 2, June 1991 (the "License"). You may use, redistribute and/or modify this File in @@ -10,4 +17,4 @@ worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The License provides additional details about -this warranty disclaimer. +this warranty disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_391.yml b/src/licensedcode/data/rules/gpl-2.0_391.yml deleted file mode 100644 index f421a22399c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_391.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_392.RULE b/src/licensedcode/data/rules/gpl-2.0_392.RULE index cc20ec9fe0a..1585c4d3189 100644 --- a/src/licensedcode/data/rules/gpl-2.0_392.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_392.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This program is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2 (June 1991). See the "COPYING" file distributed with this software -for more info. - +for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_392.yml b/src/licensedcode/data/rules/gpl-2.0_392.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_392.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_393.RULE b/src/licensedcode/data/rules/gpl-2.0_393.RULE index 07062417820..a0efcc06808 100644 --- a/src/licensedcode/data/rules/gpl-2.0_393.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_393.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2 (June 1991). See the "COPYING" file distributed with this -software for more info. +software for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_393.yml b/src/licensedcode/data/rules/gpl-2.0_393.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_393.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_394.RULE b/src/licensedcode/data/rules/gpl-2.0_394.RULE index 2e0c168de13..77f3fd9d697 100644 --- a/src/licensedcode/data/rules/gpl-2.0_394.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_394.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2 (June 1991). See the "COPYING" file distributed with this software for more info. - Released under the GPL version 2. + Released under the GPL version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_394.yml b/src/licensedcode/data/rules/gpl-2.0_394.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_394.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_395.RULE b/src/licensedcode/data/rules/gpl-2.0_395.RULE index cd7376dbaa5..189f7e45860 100644 --- a/src/licensedcode/data/rules/gpl-2.0_395.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_395.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + USS/Lite for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2 (June 1991). See the "COPYING" file distributed with this software - for more info. + for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_395.yml b/src/licensedcode/data/rules/gpl-2.0_395.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_395.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_396.RULE b/src/licensedcode/data/rules/gpl-2.0_396.RULE index e5718d750c9..e53f212e3a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_396.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_396.RULE @@ -1,4 +1,9 @@ +--- +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 as -published by the Free Software Foundation, version 2. +published by the Free Software Foundation, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_396.yml b/src/licensedcode/data/rules/gpl-2.0_396.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_396.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_397.RULE b/src/licensedcode/data/rules/gpl-2.0_397.RULE index 4fbf02541db..44926b51e84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_397.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_397.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 50 +--- + This program file 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; version 2 of the License. +Free Software Foundation; version 2 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_397.yml b/src/licensedcode/data/rules/gpl-2.0_397.yml deleted file mode 100644 index e0b877f202c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_397.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0_398.RULE b/src/licensedcode/data/rules/gpl-2.0_398.RULE index 01807c1f845..c3fe48986d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_398.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_398.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 50 +--- + This file is licensed under the terms of the GNU General Public License version 2. This program as licensed "as is" without any warranty of any -kind, whether express or implied. +kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_398.yml b/src/licensedcode/data/rules/gpl-2.0_398.yml deleted file mode 100644 index e0b877f202c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0_399.RULE b/src/licensedcode/data/rules/gpl-2.0_399.RULE index 0d3d6b039fa..cc36421101d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_399.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_399.RULE @@ -1 +1,7 @@ -Released under the terms of the GNU GPL v2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +Released under the terms of the GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_399.yml b/src/licensedcode/data/rules/gpl-2.0_399.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_399.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_4.RULE index b57902cb427..ce2f1dd4031 100644 --- a/src/licensedcode/data/rules/gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_4.RULE @@ -1 +1,6 @@ -are distributed under the GNU General Public Licence version 2, n on Debian systems please see /usr/share/common-licenses/GPL-2 for the complete text +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + +are distributed under the GNU General Public Licence version 2, n on Debian systems please see /usr/share/common-licenses/GPL-2 for the complete text \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_4.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_40.RULE b/src/licensedcode/data/rules/gpl-2.0_40.RULE index 5de3c76da46..a4fcb591d09 100644 --- a/src/licensedcode/data/rules/gpl-2.0_40.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_40.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_40.yml b/src/licensedcode/data/rules/gpl-2.0_40.yml deleted file mode 100644 index 18c574de8d4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_400.RULE b/src/licensedcode/data/rules/gpl-2.0_400.RULE index 6be5b23b248..099ebca79bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_400.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_400.RULE @@ -1,3 +1,8 @@ +--- +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 only) - as published by the Free Software Foundation. + as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_400.yml b/src/licensedcode/data/rules/gpl-2.0_400.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_400.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_401.RULE b/src/licensedcode/data/rules/gpl-2.0_401.RULE index ab311e6609d..3a2dc715f97 100644 --- a/src/licensedcode/data/rules/gpl-2.0_401.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_401.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file is subject to the terms and conditions of the GNU General Public License version 2. See the file COPYING in the main -directory of this archive for more details. - +directory of this archive for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_401.yml b/src/licensedcode/data/rules/gpl-2.0_401.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_401.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_402.RULE b/src/licensedcode/data/rules/gpl-2.0_402.RULE index 415c7a76284..155d827722d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_402.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_402.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - kernel-base/COPYING +--- + This code is licenced under the GPL version 2. For details see -kernel-base/COPYING. +kernel-base/COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_402.yml b/src/licensedcode/data/rules/gpl-2.0_402.yml deleted file mode 100644 index a5cd812f887..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_402.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - kernel-base/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_403.RULE b/src/licensedcode/data/rules/gpl-2.0_403.RULE index fb3fb932663..07cd9f0aa62 100644 --- a/src/licensedcode/data/rules/gpl-2.0_403.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_403.RULE @@ -1 +1,7 @@ - Licensed under the GNU General Public License, version 2 (GPLv2). +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + Licensed under the GNU General Public License, version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_403.yml b/src/licensedcode/data/rules/gpl-2.0_403.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_403.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_404.RULE b/src/licensedcode/data/rules/gpl-2.0_404.RULE index d93b1dc508d..dad5f2fc806 100644 --- a/src/licensedcode/data/rules/gpl-2.0_404.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_404.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software may be distributed under the terms of the GNU General Public License ("GPL") version 2 as published by the Free Software -Foundation. +Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_404.yml b/src/licensedcode/data/rules/gpl-2.0_404.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_404.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_405.RULE b/src/licensedcode/data/rules/gpl-2.0_405.RULE index 8f69d8bcd43..72980ad892c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_405.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_405.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 97 +--- + License: As part of this driver was derived from the slram.c driver it falls under the same license, which is GNU General Public - License v2 + License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_405.yml b/src/licensedcode/data/rules/gpl-2.0_405.yml deleted file mode 100644 index bbf111fa1b2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_405.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 97 diff --git a/src/licensedcode/data/rules/gpl-2.0_406.RULE b/src/licensedcode/data/rules/gpl-2.0_406.RULE index ba9eda64758..e6c904f85bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_406.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_406.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is licensed under the term of the GNU General Public License version 2. The program licensed "as is" without any warranty of any - kind, whether express or implied. + kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_406.yml b/src/licensedcode/data/rules/gpl-2.0_406.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_406.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_407.RULE b/src/licensedcode/data/rules/gpl-2.0_407.RULE index b7d14871914..c60c43cd7af 100644 --- a/src/licensedcode/data/rules/gpl-2.0_407.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_407.RULE @@ -1,3 +1,7 @@ - This software is distributed under the terms of the GNU General Public - License ("GPL") version 2, as published by the Free Software Foundation. +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software is distributed under the terms of the GNU General Public + License ("GPL") version 2, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_407.yml b/src/licensedcode/data/rules/gpl-2.0_407.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_407.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_408.RULE b/src/licensedcode/data/rules/gpl-2.0_408.RULE index 8880a3bbd87..ede1e30bb19 100644 --- a/src/licensedcode/data/rules/gpl-2.0_408.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_408.RULE @@ -1,4 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software is distributed under the terms of the GNU General Public License ("GPL") as published by the Free Software Foundation, -version 2 of that License. - +version 2 of that License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_408.yml b/src/licensedcode/data/rules/gpl-2.0_408.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_408.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_409.RULE b/src/licensedcode/data/rules/gpl-2.0_409.RULE index acd6696560f..585cef3c04e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_409.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_409.RULE @@ -1,3 +1,8 @@ +--- +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; @@ -13,4 +18,4 @@ ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS - SOFTWARE IS DISCLAIMED. + SOFTWARE IS DISCLAIMED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_409.yml b/src/licensedcode/data/rules/gpl-2.0_409.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_409.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_41.RULE b/src/licensedcode/data/rules/gpl-2.0_41.RULE index fb888bb8132..4db74143c40 100644 --- a/src/licensedcode/data/rules/gpl-2.0_41.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_41.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL 2.0 year variable +ignorable_copyrights: + - Copyright (c) Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -275,4 +287,4 @@ 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. +POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_41.yml b/src/licensedcode/data/rules/gpl-2.0_41.yml deleted file mode 100644 index 77ee2011f13..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_41.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL 2.0 year variable -ignorable_copyrights: - - Copyright (c) Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_410.RULE b/src/licensedcode/data/rules/gpl-2.0_410.RULE index b6c7467470b..a331d35fd7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_410.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_410.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_emails: + - info@fsf.org +--- + It 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. You should have received a copy of the GNU General Public License along with "ore". If not, write to the Free Software Foundation, Inc: - "Free Software Foundation " + "Free Software Foundation " \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_410.yml b/src/licensedcode/data/rules/gpl-2.0_410.yml deleted file mode 100644 index 430a3551209..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_410.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_emails: - - info@fsf.org diff --git a/src/licensedcode/data/rules/gpl-2.0_411.RULE b/src/licensedcode/data/rules/gpl-2.0_411.RULE index c727b8abe5c..ff3f3862a78 100644 --- a/src/licensedcode/data/rules/gpl-2.0_411.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_411.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +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 General Public License, Version 2, as published by the Free Software Foundation. @@ -11,4 +18,4 @@ details. You should have received a copy of the GNU General Public License along with this file; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -or visit http://www.gnu.org/licenses/. +or visit http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_411.yml b/src/licensedcode/data/rules/gpl-2.0_411.yml deleted file mode 100644 index 9111fe35897..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_411.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_412.RULE b/src/licensedcode/data/rules/gpl-2.0_412.RULE index 249b3120cbb..3a09231a9ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_412.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_412.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + This software file (the "File") is distributed by Marvell International Ltd. under the terms of the GNU General Public License Version 2, June 1991 (the "License"). You may use, redistribute and/or modify this File in @@ -8,4 +15,4 @@ THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY DISCLAIMED. The License provides additional details about - this warranty disclaimer. + this warranty disclaimer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_412.yml b/src/licensedcode/data/rules/gpl-2.0_412.yml deleted file mode 100644 index f421a22399c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_412.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_413.RULE b/src/licensedcode/data/rules/gpl-2.0_413.RULE index e288909f6dc..9ccd7d63243 100644 --- a/src/licensedcode/data/rules/gpl-2.0_413.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_413.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. @@ -8,4 +15,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 General Public License -along with ; if not, see . +along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_413.yml b/src/licensedcode/data/rules/gpl-2.0_413.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_413.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_414.RULE b/src/licensedcode/data/rules/gpl-2.0_414.RULE index 2b65dee5b47..6c1c885a965 100644 --- a/src/licensedcode/data/rules/gpl-2.0_414.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_414.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + You can redistribute and/or modify this software under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. THIS SOFTWARE IS PROVIDED "AS IS" 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. +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_414.yml b/src/licensedcode/data/rules/gpl-2.0_414.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_414.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_415.RULE b/src/licensedcode/data/rules/gpl-2.0_415.RULE index 87cfb7ec7f4..751929a9ff8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_415.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_415.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + You can redistribute and/or modify this software under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. THIS SOFTWARE IS PROVIDED "AS IS" 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. - nor its subsidiaries is obligated to provide any support for this software. + nor its subsidiaries is obligated to provide any support for this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_415.yml b/src/licensedcode/data/rules/gpl-2.0_415.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_415.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_416.RULE b/src/licensedcode/data/rules/gpl-2.0_416.RULE index a650ccd20a4..f242a6024a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_416.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_416.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; yosu 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. +published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_416.yml b/src/licensedcode/data/rules/gpl-2.0_416.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_416.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_417.RULE b/src/licensedcode/data/rules/gpl-2.0_417.RULE index 76b555a01f0..a0d0f4e294b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_417.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_417.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This documentation 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 @@ -14,4 +21,4 @@ 02111-1307 USA For more details see the file COPYING in the Linux kernel source - tree. + tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_417.yml b/src/licensedcode/data/rules/gpl-2.0_417.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_417.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_418.RULE b/src/licensedcode/data/rules/gpl-2.0_418.RULE index 2bbc9ad0b98..ad922ecafbc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_418.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_418.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: the notice references the Linux kernel hence GPL-2.0 +--- + This is an extension to the Linux operating system, and is covered by -same GNU General Public License that covers that work. +same GNU General Public License that covers that work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_418.yml b/src/licensedcode/data/rules/gpl-2.0_418.yml deleted file mode 100644 index 6a3403460b2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_418.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: the notice references the Linux kernel hence GPL-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_419.RULE b/src/licensedcode/data/rules/gpl-2.0_419.RULE index 11c359ba1b7..a8d54c2353b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_419.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_419.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Portals is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -9,4 +14,4 @@ You should have received a copy of the GNU General Public License along with Portals; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + 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_419.yml b/src/licensedcode/data/rules/gpl-2.0_419.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_419.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_42.RULE b/src/licensedcode/data/rules/gpl-2.0_42.RULE index 610f8982c07..baa9d326862 100644 --- a/src/licensedcode/data/rules/gpl-2.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_42.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - README +ignorable_emails: + - snort-info@snort.org +--- + ***************************************************************************** The text that follows is the GNU General Public License, Version 2 (GPL V2) and governs your use, modification and/or distribution of SNORT. diff --git a/src/licensedcode/data/rules/gpl-2.0_42.yml b/src/licensedcode/data/rules/gpl-2.0_42.yml deleted file mode 100644 index 303df2f15c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_42.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - README -ignorable_emails: - - snort-info@snort.org diff --git a/src/licensedcode/data/rules/gpl-2.0_420.RULE b/src/licensedcode/data/rules/gpl-2.0_420.RULE index 5530107fe84..bd490867402 100644 --- a/src/licensedcode/data/rules/gpl-2.0_420.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_420.RULE @@ -1 +1,7 @@ -This code is released under the GNU General Public License version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This code is released under the GNU General Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_420.yml b/src/licensedcode/data/rules/gpl-2.0_420.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_420.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_421.RULE b/src/licensedcode/data/rules/gpl-2.0_421.RULE index cae72b8f000..d4c6b8e0191 100644 --- a/src/licensedcode/data/rules/gpl-2.0_421.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_421.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This documentation 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. @@ -13,4 +20,4 @@ MA 02111-1307 USA For more details see the file COPYING in the source - distribution of Linux. + distribution of Linux. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_421.yml b/src/licensedcode/data/rules/gpl-2.0_421.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_421.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_422.RULE b/src/licensedcode/data/rules/gpl-2.0_422.RULE index 8b7b6341a36..a7b6d194704 100644 --- a/src/licensedcode/data/rules/gpl-2.0_422.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_422.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; you may redistribute and/or modify it under the terms of the GNU General Public License Version 2 as published by the Free Software Foundation. @@ -5,5 +10,4 @@ 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 complete details. - +for complete details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_422.yml b/src/licensedcode/data/rules/gpl-2.0_422.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_422.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_423.RULE b/src/licensedcode/data/rules/gpl-2.0_423.RULE index 4deaea79c65..589bc76c662 100644 --- a/src/licensedcode/data/rules/gpl-2.0_423.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_423.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software is licensed under the terms of the GNU General Public License version 2, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. @@ -9,4 +14,4 @@ You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_423.yml b/src/licensedcode/data/rules/gpl-2.0_423.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_423.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_424.RULE b/src/licensedcode/data/rules/gpl-2.0_424.RULE index dd28cc30147..53c6dd33ba1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_424.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_424.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_emails: + - licensing@fsf.org +--- + exofs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published by the Free Software Foundation. @@ -9,4 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with exofs; if not, write to the: - Free Software Foundation + Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_424.yml b/src/licensedcode/data/rules/gpl-2.0_424.yml deleted file mode 100644 index 82727c3e37e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_424.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_emails: - - licensing@fsf.org diff --git a/src/licensedcode/data/rules/gpl-2.0_425.RULE b/src/licensedcode/data/rules/gpl-2.0_425.RULE index d8d1ab4b933..3bd9b57609f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_425.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_425.RULE @@ -1,3 +1,8 @@ +--- +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 version 2 License as -published by the Free Software Foundation +published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_425.yml b/src/licensedcode/data/rules/gpl-2.0_425.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_425.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_426.RULE b/src/licensedcode/data/rules/gpl-2.0_426.RULE index 1305697e7e5..c98a9e48dc3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_426.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_426.RULE @@ -1,4 +1,8 @@ +--- +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 v2 -as published by the Free Software Foundation. - +as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_426.yml b/src/licensedcode/data/rules/gpl-2.0_426.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_426.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_427.RULE b/src/licensedcode/data/rules/gpl-2.0_427.RULE index a920e1aa832..7fe74b1a42c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_427.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_427.RULE @@ -1,3 +1,8 @@ +--- +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 and - only version 2 as published by the Free Software Foundation. + only version 2 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_427.yml b/src/licensedcode/data/rules/gpl-2.0_427.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_427.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_428.RULE b/src/licensedcode/data/rules/gpl-2.0_428.RULE index 813a0a1777b..297fbdddff0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_428.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_428.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This program file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -12,4 +19,4 @@ along with this program in a file named COPYING; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301 USA + Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_428.yml b/src/licensedcode/data/rules/gpl-2.0_428.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_428.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_429.RULE b/src/licensedcode/data/rules/gpl-2.0_429.RULE index 90a489813f0..fba759b83bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_429.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_429.RULE @@ -1,3 +1,8 @@ +--- +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 publicshed by the Free Software Foundation. @@ -9,4 +14,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_429.yml b/src/licensedcode/data/rules/gpl-2.0_429.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_429.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_43.RULE b/src/licensedcode/data/rules/gpl-2.0_43.RULE index 503e4a27a0b..cc529270fc5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_43.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_43.RULE @@ -1 +1,7 @@ -license GNU General Public Licence 2.0 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +license GNU General Public Licence 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_43.yml b/src/licensedcode/data/rules/gpl-2.0_43.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_430.RULE b/src/licensedcode/data/rules/gpl-2.0_430.RULE index 48df4450b10..c23e3b761a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_430.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_430.RULE @@ -1,3 +1,8 @@ +--- +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 as published by @@ -10,5 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_430.yml b/src/licensedcode/data/rules/gpl-2.0_430.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_430.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_431.RULE b/src/licensedcode/data/rules/gpl-2.0_431.RULE index 80e4d567693..8543a0b1726 100644 --- a/src/licensedcode/data/rules/gpl-2.0_431.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_431.RULE @@ -1,3 +1,8 @@ +--- +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 as published by @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_431.yml b/src/licensedcode/data/rules/gpl-2.0_431.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_431.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_432.RULE b/src/licensedcode/data/rules/gpl-2.0_432.RULE index daaeab2f897..964b45103bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_432.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_432.RULE @@ -1,3 +1,8 @@ +--- +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 as published by @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_432.yml b/src/licensedcode/data/rules/gpl-2.0_432.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_432.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_433.RULE b/src/licensedcode/data/rules/gpl-2.0_433.RULE index 9012015e975..524540d63e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_433.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_433.RULE @@ -1,3 +1,8 @@ +--- +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 of the License as published by the Free Software Foundation. @@ -5,5 +10,4 @@ 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. - + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_433.yml b/src/licensedcode/data/rules/gpl-2.0_433.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_433.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_434.RULE b/src/licensedcode/data/rules/gpl-2.0_434.RULE index 4a8e5013c52..ffa4a37805e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_434.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_434.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; you can distribute it and/or modify it under the terms of the GNU General Public License (Version 2) as @@ -10,5 +15,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_434.yml b/src/licensedcode/data/rules/gpl-2.0_434.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_434.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_435.RULE b/src/licensedcode/data/rules/gpl-2.0_435.RULE index 58b77aa333c..e780257db2d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_435.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_435.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the GNU General Public License version 2. +of the GNU General Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_435.yml b/src/licensedcode/data/rules/gpl-2.0_435.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_435.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_436.RULE b/src/licensedcode/data/rules/gpl-2.0_436.RULE index f1d655286fb..3a1984163ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_436.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_436.RULE @@ -1,3 +1,10 @@ +--- +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 and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -8,4 +15,4 @@ more details. You should have received a copy of the GNU General Public License - along with this program. If not, see . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_436.yml b/src/licensedcode/data/rules/gpl-2.0_436.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_436.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_437.RULE b/src/licensedcode/data/rules/gpl-2.0_437.RULE index b3397e18856..6ea568e1680 100644 --- a/src/licensedcode/data/rules/gpl-2.0_437.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_437.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software; you can distribute it and/or modify it under the terms of the GNU General Public License (Version 2) as published by the Free Software Foundation. @@ -8,4 +15,4 @@ 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 . +with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_437.yml b/src/licensedcode/data/rules/gpl-2.0_437.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_437.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_438.RULE b/src/licensedcode/data/rules/gpl-2.0_438.RULE index 640f926d877..74921991f71 100644 --- a/src/licensedcode/data/rules/gpl-2.0_438.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_438.RULE @@ -1,3 +1,10 @@ +--- +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 v2 as published by the Free Software Foundation. @@ -8,4 +15,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_438.yml b/src/licensedcode/data/rules/gpl-2.0_438.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_438.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_439.RULE b/src/licensedcode/data/rules/gpl-2.0_439.RULE index d4180b4588a..d506bcc08c3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_439.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_439.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the smems of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + the Free Software Foundation; version 2 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_439.yml b/src/licensedcode/data/rules/gpl-2.0_439.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_439.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_44.RULE b/src/licensedcode/data/rules/gpl-2.0_44.RULE index 5ddcf3fc8e1..828e5150db4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_44.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_44.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + * Alternatively, this software may be distributed under the terms of the * GNU General Public License ("GPL") version 2 as published by the Free * Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_44.yml b/src/licensedcode/data/rules/gpl-2.0_44.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_440.RULE b/src/licensedcode/data/rules/gpl-2.0_440.RULE index d7569348157..3af79bcc2c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_440.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_440.RULE @@ -1,4 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software may be redistributed and/or modified under the terms of the GNU General Public License ("GPL") version 2 as published by the -Free Software Foundation. - +Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_440.yml b/src/licensedcode/data/rules/gpl-2.0_440.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_440.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_441.RULE b/src/licensedcode/data/rules/gpl-2.0_441.RULE index ee5c4a0c23c..2e5aa89fce7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_441.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_441.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This driver is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2. @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this driver; 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/gpl-2.0_441.yml b/src/licensedcode/data/rules/gpl-2.0_441.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_441.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_442.RULE b/src/licensedcode/data/rules/gpl-2.0_442.RULE index a2d9c686911..450b7084eb4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_442.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_442.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -10,4 +15,4 @@ 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., 59 Temple Place - Suite 330, - Boston, MA 021110-1307, USA. + Boston, MA 021110-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_442.yml b/src/licensedcode/data/rules/gpl-2.0_442.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_442.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_443.RULE b/src/licensedcode/data/rules/gpl-2.0_443.RULE index 71db31e7850..3f12d5b263d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_443.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_443.RULE @@ -1,3 +1,8 @@ +--- +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, @@ -6,4 +11,4 @@ version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_443.yml b/src/licensedcode/data/rules/gpl-2.0_443.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_443.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_444.RULE b/src/licensedcode/data/rules/gpl-2.0_444.RULE index 0a987d94b05..dda7b18ad98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_444.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_444.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This application 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; version 2. @@ -5,4 +10,4 @@ This application 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. + General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_444.yml b/src/licensedcode/data/rules/gpl-2.0_444.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_444.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_445.RULE b/src/licensedcode/data/rules/gpl-2.0_445.RULE index 31a992da561..7a2683979f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_445.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_445.RULE @@ -1,3 +1,8 @@ +--- +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 v2 as published by the Free Software Foundation. @@ -5,5 +10,4 @@ License v2 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. - +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_445.yml b/src/licensedcode/data/rules/gpl-2.0_445.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_445.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_446.RULE b/src/licensedcode/data/rules/gpl-2.0_446.RULE index 5717e8ab3b2..0c90f9ad1b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_446.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_446.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.sun.com/ +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -20,4 +27,4 @@ CA 95054 USA or visit www.sun.com if you need additional information or have any questions. - GPL HEADER END + GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_446.yml b/src/licensedcode/data/rules/gpl-2.0_446.yml deleted file mode 100644 index 2dace5b494a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_446.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.sun.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_447.RULE b/src/licensedcode/data/rules/gpl-2.0_447.RULE index 5cd31c12f97..fd1b996c29e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_447.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_447.RULE @@ -1,3 +1,8 @@ +--- +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 rev 2 and only rev 2 as published by the free Software foundation. @@ -5,4 +10,4 @@ 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. + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_447.yml b/src/licensedcode/data/rules/gpl-2.0_447.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_447.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_448.RULE b/src/licensedcode/data/rules/gpl-2.0_448.RULE index 8d5815db89d..b0918df49e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_448.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_448.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -8,4 +13,4 @@ with this program; if not, write to the Free Software Foundation, Inc., THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_448.yml b/src/licensedcode/data/rules/gpl-2.0_448.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_448.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_449.RULE b/src/licensedcode/data/rules/gpl-2.0_449.RULE index 4b1c3cb1478..b40deda528f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_449.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_449.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +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 version 2 as published by the Free Software Foundation. @@ -10,4 +17,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_449.yml b/src/licensedcode/data/rules/gpl-2.0_449.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_449.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_45.RULE b/src/licensedcode/data/rules/gpl-2.0_45.RULE index 456721e1a31..de3efcd35fe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_45.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_45.RULE @@ -1 +1,7 @@ -Used-Licenses: GPL-2 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +Used-Licenses: GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_45.yml b/src/licensedcode/data/rules/gpl-2.0_45.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_450.RULE b/src/licensedcode/data/rules/gpl-2.0_450.RULE index 0916facb1b2..cceb4cdf201 100644 --- a/src/licensedcode/data/rules/gpl-2.0_450.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_450.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The driver is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -11,4 +16,4 @@ You should have received a copy of the GNU General Public License along with the driver; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_450.yml b/src/licensedcode/data/rules/gpl-2.0_450.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_450.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_451.RULE b/src/licensedcode/data/rules/gpl-2.0_451.RULE index 9fcb06ba79a..27249dcaf07 100644 --- a/src/licensedcode/data/rules/gpl-2.0_451.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_451.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 70 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -9,4 +15,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 General Public License along -with this program. +with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_451.yml b/src/licensedcode/data/rules/gpl-2.0_451.yml deleted file mode 100644 index 257732a98e2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_451.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl-2.0_452.RULE b/src/licensedcode/data/rules/gpl-2.0_452.RULE index 4b355ee5e25..05ca07300e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_452.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_452.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This is free software; you can redistribute it and/or modify it under the terms of version 2 the GNU General Public License as published by the Free - Software Foundation. + Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_452.yml b/src/licensedcode/data/rules/gpl-2.0_452.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_452.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_453.RULE b/src/licensedcode/data/rules/gpl-2.0_453.RULE index 7e5eaefe5e4..19c0776a89a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_453.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_453.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation version 2. @@ -10,4 +15,4 @@ 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 St, Fifth Floor, Boston, MA -02110-1301 USA +02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_453.yml b/src/licensedcode/data/rules/gpl-2.0_453.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_453.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_454.RULE b/src/licensedcode/data/rules/gpl-2.0_454.RULE index 190aadcf411..d5eadb40c3a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_454.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_454.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -6,4 +11,4 @@ This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_454.yml b/src/licensedcode/data/rules/gpl-2.0_454.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_454.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_455.RULE b/src/licensedcode/data/rules/gpl-2.0_455.RULE index 27d27856729..c10e7136ea3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_455.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_455.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + You can redistribute and/or modify this program under the terms of the GNU General Public License version 2 as published by the Free Software @@ -10,4 +15,4 @@ 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., - 59 Temple Place Suite 330, Boston, MA 02111-1307, USA. + 59 Temple Place Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_455.yml b/src/licensedcode/data/rules/gpl-2.0_455.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_455.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_456.RULE b/src/licensedcode/data/rules/gpl-2.0_456.RULE index ca98be5c40f..3c54710191e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_456.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_456.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The Driver for Linux 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 @@ -12,4 +17,4 @@ License for more details. You should have received a copy of the GNU General Public License along with The Driver for Linux ; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -Suite 330, Boston, MA 02111-1307 USA +Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_456.yml b/src/licensedcode/data/rules/gpl-2.0_456.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_456.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_456_1.RULE b/src/licensedcode/data/rules/gpl-2.0_456_1.RULE index 598f2c5a0ee..a9ca15ba91f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_456_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_456_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The Controller Driver for Linux 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 @@ -12,4 +17,4 @@ License for more details. You should have received a copy of the GNU General Public License along with The Controller Driver for Linux ; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -Suite 330, Boston, MA 02111-1307 USA +Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_456_1.yml b/src/licensedcode/data/rules/gpl-2.0_456_1.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_456_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_457.RULE b/src/licensedcode/data/rules/gpl-2.0_457.RULE index 0ef131e43d0..07e41f9bbe2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_457.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_457.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -9,4 +14,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_457.yml b/src/licensedcode/data/rules/gpl-2.0_457.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_457.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_458.RULE b/src/licensedcode/data/rules/gpl-2.0_458.RULE index 25dc3f01f3e..c1f4a6b32ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_458.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_458.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -10,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_458.yml b/src/licensedcode/data/rules/gpl-2.0_458.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_458.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_459.RULE b/src/licensedcode/data/rules/gpl-2.0_459.RULE index ad1fb4c8842..814264b313e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_459.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_459.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This driver is free software; you can redistribute it and/or modify it under the terms of version 2 only of the GNU General Public License as published by the Free Software Foundation. @@ -8,4 +15,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 General Public License -along with this program; if not, see . +along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_459.yml b/src/licensedcode/data/rules/gpl-2.0_459.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_459.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_46.RULE b/src/licensedcode/data/rules/gpl-2.0_46.RULE index 36b272b9d3d..a29b37d2172 100644 --- a/src/licensedcode/data/rules/gpl-2.0_46.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_46.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL 2 alternative +--- + GPL 2 is free software; you can redistribute it and/or modify (it)? diff --git a/src/licensedcode/data/rules/gpl-2.0_46.yml b/src/licensedcode/data/rules/gpl-2.0_46.yml deleted file mode 100644 index e3a352bc805..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL 2 alternative diff --git a/src/licensedcode/data/rules/gpl-2.0_460.RULE b/src/licensedcode/data/rules/gpl-2.0_460.RULE index 48af02672d3..7c1ff768006 100644 --- a/src/licensedcode/data/rules/gpl-2.0_460.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_460.RULE @@ -1,4 +1,9 @@ +--- +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 of the License as published by the Free Software Foundation. -/ +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_460.yml b/src/licensedcode/data/rules/gpl-2.0_460.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_460.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_461.RULE b/src/licensedcode/data/rules/gpl-2.0_461.RULE index 4cffa33131e..bc2b1c1f6a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_461.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_461.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file 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. +published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_461.yml b/src/licensedcode/data/rules/gpl-2.0_461.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_461.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_462.RULE b/src/licensedcode/data/rules/gpl-2.0_462.RULE index cb9f06fdf40..42380d12b4d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_462.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_462.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This 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. +published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_462.yml b/src/licensedcode/data/rules/gpl-2.0_462.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_462.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_463.RULE b/src/licensedcode/data/rules/gpl-2.0_463.RULE index e3a42aed746..c38e45c3cc2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_463.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_463.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This code 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. +published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_463.yml b/src/licensedcode/data/rules/gpl-2.0_463.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_463.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_464.RULE b/src/licensedcode/data/rules/gpl-2.0_464.RULE index 975a57dcbd6..6dc4619cd43 100644 --- a/src/licensedcode/data/rules/gpl-2.0_464.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_464.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This package 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. + published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_464.yml b/src/licensedcode/data/rules/gpl-2.0_464.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_464.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_465.RULE b/src/licensedcode/data/rules/gpl-2.0_465.RULE index a3c75aa4165..43ce6d3d90e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_465.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_465.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The Driver for Linux 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. +Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_465.yml b/src/licensedcode/data/rules/gpl-2.0_465.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_465.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_466.RULE b/src/licensedcode/data/rules/gpl-2.0_466.RULE index dbc037bc5bf..f8d5452af0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_466.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_466.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + version 2, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_466.yml b/src/licensedcode/data/rules/gpl-2.0_466.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_466.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_467.RULE b/src/licensedcode/data/rules/gpl-2.0_467.RULE index 25f9a3d94c9..706052f1d9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_467.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_467.RULE @@ -1,3 +1,8 @@ +--- +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 Foundationr +published by the Free Software Foundationr \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_467.yml b/src/licensedcode/data/rules/gpl-2.0_467.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_467.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_468.RULE b/src/licensedcode/data/rules/gpl-2.0_468.RULE index 9227d0cbed2..f3bd7e700dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_468.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_468.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 50 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License 2 as published - by the Free Software Foundation. + by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_468.yml b/src/licensedcode/data/rules/gpl-2.0_468.yml deleted file mode 100644 index e0b877f202c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_468.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0_469.RULE b/src/licensedcode/data/rules/gpl-2.0_469.RULE index 90cc288a808..b40c8bddf81 100644 --- a/src/licensedcode/data/rules/gpl-2.0_469.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_469.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the @@ -11,4 +16,4 @@ details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_469.yml b/src/licensedcode/data/rules/gpl-2.0_469.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_469.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_47.RULE b/src/licensedcode/data/rules/gpl-2.0_47.RULE index c1444ceb993..c8c0034b99f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_47.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_47.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL 2 only +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, using version 2 of the License. */ @@ -8,4 +16,4 @@ /* 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 . */ +/* along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_47.yml b/src/licensedcode/data/rules/gpl-2.0_47.yml deleted file mode 100644 index d78f52fea64..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL 2 only -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_470.RULE b/src/licensedcode/data/rules/gpl-2.0_470.RULE index 15d9b2caa79..5d5ec95edd3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_470.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_470.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software may be used and distributed according to the terms - of the GNU General Public License version 2, incorporated herein by reference. + of the GNU General Public License version 2, incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_470.yml b/src/licensedcode/data/rules/gpl-2.0_470.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_470.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_471.RULE b/src/licensedcode/data/rules/gpl-2.0_471.RULE index 9082e59700a..58541525d83 100644 --- a/src/licensedcode/data/rules/gpl-2.0_471.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_471.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + and licensed under GPL v2. Copyright: diff --git a/src/licensedcode/data/rules/gpl-2.0_471.yml b/src/licensedcode/data/rules/gpl-2.0_471.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_471.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_472.RULE b/src/licensedcode/data/rules/gpl-2.0_472.RULE index 580fb994221..9be7fa679b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_472.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_472.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This file is licensed under the terms of the GNU General Public License Version 2. This file is licensed "as is" without any - warranty of any kind, whether express or implied. + warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_472.yml b/src/licensedcode/data/rules/gpl-2.0_472.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_472.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_473.RULE b/src/licensedcode/data/rules/gpl-2.0_473.RULE index cc5e0f9e157..e48ca8fe6e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_473.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_473.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This software is licensed under the terms of the GNU General Public License version 2, as published by the Free Software Foundation, and @@ -11,4 +16,4 @@ 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., 59 Temple Place, Suite 330, Boston, - MA 02111-1307 USA + MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_473.yml b/src/licensedcode/data/rules/gpl-2.0_473.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_473.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_474.RULE b/src/licensedcode/data/rules/gpl-2.0_474.RULE index 80caa25b9bd..9541a4b8378 100644 --- a/src/licensedcode/data/rules/gpl-2.0_474.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_474.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + # License: GPL version 2. # See file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_474.yml b/src/licensedcode/data/rules/gpl-2.0_474.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_474.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_475.RULE b/src/licensedcode/data/rules/gpl-2.0_475.RULE index 9695da7d881..dc8ac5c72e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_475.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_475.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: gpl2 because this is derived from a Linux driver +--- + Adapted from a Linux driver which was written by This software may be used and distributed according to the terms @@ -13,4 +19,4 @@ Drivers based on or derived from this code fall under the GPL and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating system is licensed under the GPL. License for under other terms may be -available. Contact the original author for details. +available. Contact the original author for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_475.yml b/src/licensedcode/data/rules/gpl-2.0_475.yml deleted file mode 100644 index 488bb6b146e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_475.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: gpl2 because this is derived from a Linux driver diff --git a/src/licensedcode/data/rules/gpl-2.0_476.RULE b/src/licensedcode/data/rules/gpl-2.0_476.RULE index 4a3f4a5e1d6..0557d3029c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_476.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_476.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * The contents of this file are subject to the terms of either the GNU - * General Public License Version 2 only ("GPL") \ No newline at end of file + * General Public License Version 2 only ("GPL") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_476.yml b/src/licensedcode/data/rules/gpl-2.0_476.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_476.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_477.RULE b/src/licensedcode/data/rules/gpl-2.0_477.RULE index 30b8f2a3ee8..f6405660452 100644 --- a/src/licensedcode/data/rules/gpl-2.0_477.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_477.RULE @@ -1 +1,7 @@ -License GNU GENERAL PUBLIC LICENCE V2 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +License GNU GENERAL PUBLIC LICENCE V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_477.yml b/src/licensedcode/data/rules/gpl-2.0_477.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_477.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_478.RULE b/src/licensedcode/data/rules/gpl-2.0_478.RULE index cca39c3e939..a5d66d654ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_478.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_478.RULE @@ -1 +1,7 @@ -license General Public Licence 2 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +license General Public Licence 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_478.yml b/src/licensedcode/data/rules/gpl-2.0_478.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_478.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_479.RULE b/src/licensedcode/data/rules/gpl-2.0_479.RULE index cc05b941a81..2affabb3c59 100644 --- a/src/licensedcode/data/rules/gpl-2.0_479.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_479.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This is a free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by @@ -10,5 +15,4 @@ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software -Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - \ No newline at end of file +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_479.yml b/src/licensedcode/data/rules/gpl-2.0_479.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_479.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_48.RULE b/src/licensedcode/data/rules/gpl-2.0_48.RULE index 79c23853dc6..414bbdb094a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_48.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_48.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html +--- + http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_48.yml b/src/licensedcode/data/rules/gpl-2.0_48.yml deleted file mode 100644 index 7602c9f6dd7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html diff --git a/src/licensedcode/data/rules/gpl-2.0_480.RULE b/src/licensedcode/data/rules/gpl-2.0_480.RULE index 8a1a51bba5e..1ece6822695 100644 --- a/src/licensedcode/data/rules/gpl-2.0_480.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_480.RULE @@ -1 +1,7 @@ -Licensed for use under the GNU General Public Licence version 2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +Licensed for use under the GNU General Public Licence version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_480.yml b/src/licensedcode/data/rules/gpl-2.0_480.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_480.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_481.RULE b/src/licensedcode/data/rules/gpl-2.0_481.RULE index 16fb1de1d59..1d44abdce2d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_481.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_481.RULE @@ -1 +1,7 @@ -the GNU General Public Licence v2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +the GNU General Public Licence v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_481.yml b/src/licensedcode/data/rules/gpl-2.0_481.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_481.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_482.RULE b/src/licensedcode/data/rules/gpl-2.0_482.RULE index 07b96d43867..01fb6ed1ae8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_482.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_482.RULE @@ -1 +1,7 @@ -The main code is covered by the GNU General Public Licence v2.0. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +The main code is covered by the GNU General Public Licence v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_482.yml b/src/licensedcode/data/rules/gpl-2.0_482.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_482.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_483.RULE b/src/licensedcode/data/rules/gpl-2.0_483.RULE index 4d46802e654..344e13b3145 100644 --- a/src/licensedcode/data/rules/gpl-2.0_483.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_483.RULE @@ -1 +1,7 @@ -is covered by the GNU General Public Licence v2.0. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +is covered by the GNU General Public Licence v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_483.yml b/src/licensedcode/data/rules/gpl-2.0_483.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_483.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_484.RULE b/src/licensedcode/data/rules/gpl-2.0_484.RULE index 1799bfde7b1..9b0983b196b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_484.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_484.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR -MODIFY IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENCE VERSION 2 +MODIFY IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENCE VERSION 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_484.yml b/src/licensedcode/data/rules/gpl-2.0_484.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_484.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_485.RULE b/src/licensedcode/data/rules/gpl-2.0_485.RULE index de7dda03774..e51846b0e08 100644 --- a/src/licensedcode/data/rules/gpl-2.0_485.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_485.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.de/documents/gpl-2.0.de.html + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This program falls under the GNU GPL (General Public Licence) version 2 GNU GPL V2 en-> http://www.gnu.org/licenses/gpl-2.0.html -de-> http://www.gnu.de/documents/gpl-2.0.de.html +de-> http://www.gnu.de/documents/gpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_485.yml b/src/licensedcode/data/rules/gpl-2.0_485.yml deleted file mode 100644 index a09567e36a8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_485.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.de/documents/gpl-2.0.de.html - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_486.RULE b/src/licensedcode/data/rules/gpl-2.0_486.RULE index 5107cc420cd..d2063651e08 100644 --- a/src/licensedcode/data/rules/gpl-2.0_486.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_486.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + This program falls under the GNU GPL (General Public Licence) version 2 -GNU GPL V2 +GNU GPL V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_486.yml b/src/licensedcode/data/rules/gpl-2.0_486.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_486.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_487.RULE b/src/licensedcode/data/rules/gpl-2.0_487.RULE index d0cd22990a8..0133a5a14c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_487.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_487.RULE @@ -1 +1,9 @@ -http://www.gnu.de/documents/gpl-2.0.de.html +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.de/documents/gpl-2.0.de.html +--- + +http://www.gnu.de/documents/gpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_487.yml b/src/licensedcode/data/rules/gpl-2.0_487.yml deleted file mode 100644 index 79845efde61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_487.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.de/documents/gpl-2.0.de.html diff --git a/src/licensedcode/data/rules/gpl-2.0_488.RULE b/src/licensedcode/data/rules/gpl-2.0_488.RULE index 229793c85cf..c49ffff34d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_488.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_488.RULE @@ -1 +1,7 @@ -This product is licensed under the terms of the GNU General Public Licence v2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +This product is licensed under the terms of the GNU General Public Licence v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_488.yml b/src/licensedcode/data/rules/gpl-2.0_488.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_488.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_489.RULE b/src/licensedcode/data/rules/gpl-2.0_489.RULE index 6c11c3e2688..bc6b310e87e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_489.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_489.RULE @@ -1 +1,7 @@ -This project is under the GNU General Public Licence version 2 (GPLv2) +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +This project is under the GNU General Public Licence version 2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_489.yml b/src/licensedcode/data/rules/gpl-2.0_489.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_489.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_49.RULE b/src/licensedcode/data/rules/gpl-2.0_49.RULE index 78c95c77702..5df88c1ad6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_49.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_49.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.2.5.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- +

GNU GENERAL PUBLIC LICENSE

Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_49.yml b/src/licensedcode/data/rules/gpl-2.0_49.yml deleted file mode 100644 index 3b669ef4e40..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_49.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.2.5.html -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_490.RULE b/src/licensedcode/data/rules/gpl-2.0_490.RULE index cd159dfb4b4..9296c87ade8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_490.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_490.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This version of the program is distributed under the General Public Licence version 2, -as described in the file LICENSE distributed with the program. +as described in the file LICENSE distributed with the program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_490.yml b/src/licensedcode/data/rules/gpl-2.0_490.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_490.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_491.RULE b/src/licensedcode/data/rules/gpl-2.0_491.RULE index a855e1497c1..0d07574c66f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_491.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_491.RULE @@ -1 +1,7 @@ -This file is released under the GPLv2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This file is released under the GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_491.yml b/src/licensedcode/data/rules/gpl-2.0_491.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_491.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_492.RULE b/src/licensedcode/data/rules/gpl-2.0_492.RULE index f6e9c1d2f78..2847ace6af8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_492.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_492.RULE @@ -1 +1,7 @@ - released under the GPLv2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + released under the GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_492.yml b/src/licensedcode/data/rules/gpl-2.0_492.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_492.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_493.RULE b/src/licensedcode/data/rules/gpl-2.0_493.RULE index bb0d36008b8..2736d0519c3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_493.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_493.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Under GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_493.yml b/src/licensedcode/data/rules/gpl-2.0_493.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_493.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_494.RULE b/src/licensedcode/data/rules/gpl-2.0_494.RULE index c0177080565..b5a56afd02c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_494.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_494.RULE @@ -1 +1,7 @@ -This code is licenced under the GPLv2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This code is licenced under the GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_494.yml b/src/licensedcode/data/rules/gpl-2.0_494.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_494.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_495.RULE b/src/licensedcode/data/rules/gpl-2.0_495.RULE index a7f891cfd80..3006b86dcaa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_495.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_495.RULE @@ -1 +1,7 @@ -Distribute under GPLv2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Distribute under GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_495.yml b/src/licensedcode/data/rules/gpl-2.0_495.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_495.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_496.RULE b/src/licensedcode/data/rules/gpl-2.0_496.RULE index c2bbda796ad..9469a346197 100644 --- a/src/licensedcode/data/rules/gpl-2.0_496.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_496.RULE @@ -1 +1,7 @@ - As should be obvious for Linux kernel code, license is GPLv2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + As should be obvious for Linux kernel code, license is GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_496.yml b/src/licensedcode/data/rules/gpl-2.0_496.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_496.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_497.RULE b/src/licensedcode/data/rules/gpl-2.0_497.RULE index 314bb35bec8..bc35988894b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_497.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_497.RULE @@ -1 +1,7 @@ -license is GPLv2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +license is GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_497.yml b/src/licensedcode/data/rules/gpl-2.0_497.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_497.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_498.RULE b/src/licensedcode/data/rules/gpl-2.0_498.RULE index f5cc22994c3..5ec8e6867e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_498.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_498.RULE @@ -1 +1,9 @@ -This file is GPLv2 as found in COPYING. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +This file is GPLv2 as found in COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_498.yml b/src/licensedcode/data/rules/gpl-2.0_498.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_498.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_499.RULE b/src/licensedcode/data/rules/gpl-2.0_499.RULE index 014a889f569..d491e7fd495 100644 --- a/src/licensedcode/data/rules/gpl-2.0_499.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_499.RULE @@ -1 +1,7 @@ -Released under the GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Released under the GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_499.yml b/src/licensedcode/data/rules/gpl-2.0_499.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_499.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_5.RULE index dfc1cd9034c..5dc16af8ea7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This package 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; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_5.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_50.RULE b/src/licensedcode/data/rules/gpl-2.0_50.RULE index 397a1d47654..e0208b54e56 100644 --- a/src/licensedcode/data/rules/gpl-2.0_50.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_50.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL 2 alternative +--- + GPL 2 is free software; you can redistribute it andor modify diff --git a/src/licensedcode/data/rules/gpl-2.0_50.yml b/src/licensedcode/data/rules/gpl-2.0_50.yml deleted file mode 100644 index e3a352bc805..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL 2 alternative diff --git a/src/licensedcode/data/rules/gpl-2.0_500.RULE b/src/licensedcode/data/rules/gpl-2.0_500.RULE index 5fb705d201e..0bc0d125096 100644 --- a/src/licensedcode/data/rules/gpl-2.0_500.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_500.RULE @@ -1 +1,7 @@ -Under GPLv2 only +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Under GPLv2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_500.yml b/src/licensedcode/data/rules/gpl-2.0_500.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_500.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_501.RULE b/src/licensedcode/data/rules/gpl-2.0_501.RULE index 8a3b522b200..c5ca92097ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_501.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_501.RULE @@ -1 +1,7 @@ -All code subject to the GPL version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +All code subject to the GPL version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_501.yml b/src/licensedcode/data/rules/gpl-2.0_501.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_501.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_502.RULE b/src/licensedcode/data/rules/gpl-2.0_502.RULE index faaa3e64446..c0446c38d84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_502.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_502.RULE @@ -1 +1,7 @@ -Distributed under the terms of the GNU GPL, version 2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Distributed under the terms of the GNU GPL, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_502.yml b/src/licensedcode/data/rules/gpl-2.0_502.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_502.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_503.RULE b/src/licensedcode/data/rules/gpl-2.0_503.RULE index 1e6c846447f..957c0982b4c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_503.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_503.RULE @@ -1 +1,7 @@ -This file is licensed under GPLv2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This file is licensed under GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_503.yml b/src/licensedcode/data/rules/gpl-2.0_503.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_503.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_504.RULE b/src/licensedcode/data/rules/gpl-2.0_504.RULE index 30f1f7677e5..731a81f7e73 100644 --- a/src/licensedcode/data/rules/gpl-2.0_504.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_504.RULE @@ -1 +1,7 @@ -GPL 2.0 applies. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + +GPL 2.0 applies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_504.yml b/src/licensedcode/data/rules/gpl-2.0_504.yml deleted file mode 100644 index bb66a2a67d0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_504.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_505.RULE b/src/licensedcode/data/rules/gpl-2.0_505.RULE index 4f3a6339501..1ed4c3fbc45 100644 --- a/src/licensedcode/data/rules/gpl-2.0_505.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_505.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Linux/COPYING +--- + license: GPL Version 2, June 1991 see Linux/COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_505.yml b/src/licensedcode/data/rules/gpl-2.0_505.yml deleted file mode 100644 index fea20508148..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_505.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Linux/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_506.RULE b/src/licensedcode/data/rules/gpl-2.0_506.RULE index bb4f31f39db..1ffbc46f4c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_506.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_506.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Linux/COPYING +--- + GPL Version 2, June 1991 see Linux/COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_506.yml b/src/licensedcode/data/rules/gpl-2.0_506.yml deleted file mode 100644 index fea20508148..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_506.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Linux/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_507.RULE b/src/licensedcode/data/rules/gpl-2.0_507.RULE index 167835a16c4..e0038ef9aee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_507.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_507.RULE @@ -1,3 +1,10 @@ +--- +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 as published by the * Free Software Foundation; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_507.yml b/src/licensedcode/data/rules/gpl-2.0_507.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_507.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_508.RULE b/src/licensedcode/data/rules/gpl-2.0_508.RULE index 93687939b14..bb41a93543c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_508.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_508.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This driver software is distributed as is, without any warranty of any kind, either express or implied as further specified in the GNU Public License. This software may be used and distributed according to the terms of the GNU @@ -5,4 +14,4 @@ Public License, version 2 as published by the Free Software Foundation. See the file COPYING in the main directory of this archive for more details. You should have received a copy of the GNU General Public License along with -this program. If not, see . +this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_508.yml b/src/licensedcode/data/rules/gpl-2.0_508.yml deleted file mode 100644 index 3f521620882..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_508.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_509.RULE b/src/licensedcode/data/rules/gpl-2.0_509.RULE index 0f6a68475b5..bfcb4526c3a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_509.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_509.RULE @@ -1,5 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This software is available under the terms of the GNU General Public License (GPL) Version 2, available from the file COPYING in the main directory of this source tree. -/ +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_509.yml b/src/licensedcode/data/rules/gpl-2.0_509.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_509.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_51.RULE b/src/licensedcode/data/rules/gpl-2.0_51.RULE index 52a08bfc96b..e1a7849481a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_51.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_51.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 50 +--- + 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 version 2 of the License. \ No newline at end of file +Free Software Foundation version 2 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_51.yml b/src/licensedcode/data/rules/gpl-2.0_51.yml deleted file mode 100644 index e0b877f202c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0_510.RULE b/src/licensedcode/data/rules/gpl-2.0_510.RULE index ae4c56b8fb0..be1fdb599be 100644 --- a/src/licensedcode/data/rules/gpl-2.0_510.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_510.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + It is distributed under the GNU General Public License v2 - see the - accompanying COPYING file for more details. + accompanying COPYING file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_510.yml b/src/licensedcode/data/rules/gpl-2.0_510.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_510.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_511.RULE b/src/licensedcode/data/rules/gpl-2.0_511.RULE index 69a82a14627..631a3fb8c85 100644 --- a/src/licensedcode/data/rules/gpl-2.0_511.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_511.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This software may be freely redistributed under the terms of the GNU -General Public License (GPLv2). +General Public License (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_511.yml b/src/licensedcode/data/rules/gpl-2.0_511.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_511.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_512.RULE b/src/licensedcode/data/rules/gpl-2.0_512.RULE index 7677802b0b7..5e904529ffd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_512.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_512.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This work is licensed under the terms of the GNU GPL, version 2. See the -file "COPYING" in the main directory of this archive for more details. +file "COPYING" in the main directory of this archive for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_512.yml b/src/licensedcode/data/rules/gpl-2.0_512.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_512.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_513.RULE b/src/licensedcode/data/rules/gpl-2.0_513.RULE index c6f831cb470..822348b24ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_513.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_513.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundations; version 2 only. @@ -9,4 +14,4 @@ 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. +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_513.yml b/src/licensedcode/data/rules/gpl-2.0_513.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_513.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_514.RULE b/src/licensedcode/data/rules/gpl-2.0_514.RULE index b2cad40312a..a0e6bd3f71a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_514.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_514.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software and is provided to you under the terms of the GNU General Public License version 2 as published by the Free Software Foundation, and any use by you of this program is subject to the terms -of such GNU licence. +of such GNU licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_514.yml b/src/licensedcode/data/rules/gpl-2.0_514.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_514.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_515.RULE b/src/licensedcode/data/rules/gpl-2.0_515.RULE index 28e27b74f5e..aaedecd591b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_515.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_515.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,4 +23,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.html -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_515.yml b/src/licensedcode/data/rules/gpl-2.0_515.yml deleted file mode 100644 index f06fece8dfe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_515.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_516.RULE b/src/licensedcode/data/rules/gpl-2.0_516.RULE index f0874116b22..a085eeea1d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_516.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_516.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, -version 2. +version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_516.yml b/src/licensedcode/data/rules/gpl-2.0_516.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_516.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_517.RULE b/src/licensedcode/data/rules/gpl-2.0_517.RULE index 7b155d9b48d..a7d02d90e86 100644 --- a/src/licensedcode/data/rules/gpl-2.0_517.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_517.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; you can distribute it and/or modify it under the terms of the GNU General Public License (Version 2) as published by the Free Software Foundation. @@ -5,4 +10,4 @@ published by the Free Software Foundation. This program is distributed in the hope 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. +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_517.yml b/src/licensedcode/data/rules/gpl-2.0_517.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_517.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_518.RULE b/src/licensedcode/data/rules/gpl-2.0_518.RULE index 2d4dba2f958..148b1420896 100644 --- a/src/licensedcode/data/rules/gpl-2.0_518.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_518.RULE @@ -1,6 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +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 as published by the Free Software Foundation. You should have received a copy of the GNU General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_518.yml b/src/licensedcode/data/rules/gpl-2.0_518.yml deleted file mode 100644 index d5cc5fd9d42..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_518.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_519.RULE b/src/licensedcode/data/rules/gpl-2.0_519.RULE index 6c65f45789b..49a9a90979b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_519.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_519.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This file 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. @@ -5,4 +10,4 @@ published by the Free Software Foundation. This file is distributed in the hope that it will be useful, but AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or -NONINFRINGEMENT. See the GNU General Public License for more details. +NONINFRINGEMENT. See the GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_519.yml b/src/licensedcode/data/rules/gpl-2.0_519.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_519.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_52.RULE b/src/licensedcode/data/rules/gpl-2.0_52.RULE index 2865895192c..5fc026b05a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_52.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_52.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_52.yml b/src/licensedcode/data/rules/gpl-2.0_52.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_520.RULE b/src/licensedcode/data/rules/gpl-2.0_520.RULE index 7f3a97d09d1..4ce048240e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_520.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_520.RULE @@ -1,5 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; you may redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. - +the Free Software Foundation; version 2 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_520.yml b/src/licensedcode/data/rules/gpl-2.0_520.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_520.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_521.RULE b/src/licensedcode/data/rules/gpl-2.0_521.RULE index 19758b50a04..d447af858f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_521.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_521.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is licensed under the terms of the GNU General Public -License version 2. +License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_521.yml b/src/licensedcode/data/rules/gpl-2.0_521.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_521.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_522.RULE b/src/licensedcode/data/rules/gpl-2.0_522.RULE index 845d3d81944..94668fa5c58 100644 --- a/src/licensedcode/data/rules/gpl-2.0_522.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_522.RULE @@ -1,3 +1,8 @@ +--- +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 bythe Free Software Foundation. +published bythe Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_522.yml b/src/licensedcode/data/rules/gpl-2.0_522.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_522.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_523.RULE b/src/licensedcode/data/rules/gpl-2.0_523.RULE index 8b7b934ccd2..ec61d4c1d1b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_523.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_523.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file is subject to the terms and conditions of version 2 of the GNU General Public License. See the file COPYING in the main directory of the - Linux distribution for more details. + Linux distribution for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_523.yml b/src/licensedcode/data/rules/gpl-2.0_523.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_523.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_524.RULE b/src/licensedcode/data/rules/gpl-2.0_524.RULE index 70f12de2b4e..89889186ea3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_524.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_524.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The driver 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; version 2. @@ -10,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the driver; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_524.yml b/src/licensedcode/data/rules/gpl-2.0_524.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_524.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_525.RULE b/src/licensedcode/data/rules/gpl-2.0_525.RULE index 96886f2ebb3..c0901db6b72 100644 --- a/src/licensedcode/data/rules/gpl-2.0_525.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_525.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software(void); 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. @@ -8,4 +15,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_525.yml b/src/licensedcode/data/rules/gpl-2.0_525.yml deleted file mode 100644 index 34ac9ca28cd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_525.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_526.RULE b/src/licensedcode/data/rules/gpl-2.0_526.RULE index 330dbd518ec..fd790b96c35 100644 --- a/src/licensedcode/data/rules/gpl-2.0_526.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_526.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://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. +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_526.yml b/src/licensedcode/data/rules/gpl-2.0_526.yml deleted file mode 100644 index 215e875c9ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_526.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_527.RULE b/src/licensedcode/data/rules/gpl-2.0_527.RULE index 22d3c48e238..9a3f9ce1735 100644 --- a/src/licensedcode/data/rules/gpl-2.0_527.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_527.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 55 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is provided under a GPLv2 license. When using or redistributing this file, you may do so under that license. @@ -29,4 +39,4 @@ 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. + 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/gpl-2.0_527.yml b/src/licensedcode/data/rules/gpl-2.0_527.yml deleted file mode 100644 index 3331235158f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_527.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 55 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_528.RULE b/src/licensedcode/data/rules/gpl-2.0_528.RULE index a579260dab7..045abcb0833 100644 --- a/src/licensedcode/data/rules/gpl-2.0_528.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_528.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This program is free software; you can distribute it and/or modify it under the terms of the GNU General Public License as published by the - Free Software Foundation; version 2 of the License. + Free Software Foundation; version 2 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_528.yml b/src/licensedcode/data/rules/gpl-2.0_528.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_528.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_529.RULE b/src/licensedcode/data/rules/gpl-2.0_529.RULE index e477dbf6f6b..413409ef9e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_529.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_529.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 50 +--- + is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -5,4 +11,4 @@ License as published by the Free Software Foundation. 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_529.yml b/src/licensedcode/data/rules/gpl-2.0_529.yml deleted file mode 100644 index e0b877f202c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_529.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0_53.RULE b/src/licensedcode/data/rules/gpl-2.0_53.RULE index 89d4aee77bc..8ea71c8a3b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_53.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_53.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL from linux +--- + 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; version 2 dated June, 1991. @@ -9,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_53.yml b/src/licensedcode/data/rules/gpl-2.0_53.yml deleted file mode 100644 index ce61b90c33a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL from linux diff --git a/src/licensedcode/data/rules/gpl-2.0_530.RULE b/src/licensedcode/data/rules/gpl-2.0_530.RULE index ad138f3392b..c043a5c0569 100644 --- a/src/licensedcode/data/rules/gpl-2.0_530.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_530.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 and -only version 2 as published by the Free Software Foundation. +only version 2 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_530.yml b/src/licensedcode/data/rules/gpl-2.0_530.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_530.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_531.RULE b/src/licensedcode/data/rules/gpl-2.0_531.RULE index ceb9664f2ea..521cb2d3953 100644 --- a/src/licensedcode/data/rules/gpl-2.0_531.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_531.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -9,4 +14,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111- +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111- \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_531.yml b/src/licensedcode/data/rules/gpl-2.0_531.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_531.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_532.RULE b/src/licensedcode/data/rules/gpl-2.0_532.RULE index 6030e6fbd7a..01887ece968 100644 --- a/src/licensedcode/data/rules/gpl-2.0_532.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_532.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + driver 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; version 2. @@ -10,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the driver; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_532.yml b/src/licensedcode/data/rules/gpl-2.0_532.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_532.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_533.RULE b/src/licensedcode/data/rules/gpl-2.0_533.RULE index 9064c9d3f4a..a8af0a617e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_533.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_533.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The driver 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; version 2 of the @@ -10,4 +15,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with Driver; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_533.yml b/src/licensedcode/data/rules/gpl-2.0_533.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_533.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_534.RULE b/src/licensedcode/data/rules/gpl-2.0_534.RULE index c5581a1ad57..0200a0b6900 100644 --- a/src/licensedcode/data/rules/gpl-2.0_534.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_534.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 96 +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) @@ -12,4 +20,4 @@ The full GNU General Public License is included in this distribution in the file called COPYING. -Linux Foundation elects GPLv2 license only. */ +Linux Foundation elects GPLv2 license only. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_534.yml b/src/licensedcode/data/rules/gpl-2.0_534.yml deleted file mode 100644 index 95edc7f18bd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_534.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 96 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_535.RULE b/src/licensedcode/data/rules/gpl-2.0_535.RULE index 8fa9924755a..7dcf6d507b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_535.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_535.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- -Linux Foundation elects GPLv2 license only. */ + +Linux Foundation elects GPLv2 license only. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_535.yml b/src/licensedcode/data/rules/gpl-2.0_535.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_535.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_536.RULE b/src/licensedcode/data/rules/gpl-2.0_536.RULE index 5e745abd527..07609b454f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_536.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_536.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 95 +notes: this was a choice but the notice measn the GPL was selected +ignorable_authors: + - Andy Polyakov for the OpenSSL project +ignorable_urls: + - http://www.openssl.org/~appro/cryptogams + - https://www.openssl.org/~appro/cryptogams/ +ignorable_emails: + - appro@openssl.org +--- + This code is taken from CRYPTOGAMs[1] and is included here using the option in the license to distribute the code under the GPL. Therefore this program is free software; you can redistribute it and/or modify it under the terms of @@ -45,4 +59,4 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Written by Andy Polyakov for the OpenSSL project. The module is, however, dual licensed under OpenSSL and CRYPTOGAMS licenses depending on where you obtain it. For further -details see http://www.openssl.org/~appro/cryptogams/. +details see http://www.openssl.org/~appro/cryptogams/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_536.yml b/src/licensedcode/data/rules/gpl-2.0_536.yml deleted file mode 100644 index 415761de47b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_536.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 95 -notes: this was a choice but the notice measn the GPL was selected -ignorable_authors: - - Andy Polyakov for the OpenSSL project -ignorable_urls: - - http://www.openssl.org/~appro/cryptogams - - https://www.openssl.org/~appro/cryptogams/ -ignorable_emails: - - appro@openssl.org diff --git a/src/licensedcode/data/rules/gpl-2.0_537.RULE b/src/licensedcode/data/rules/gpl-2.0_537.RULE index f42e4940f2c..685bab0cf6e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_537.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_537.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -9,5 +14,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 (GPLv2) for more details. You should have received a copy of the GNU General Public License -version 2 (GPLv2) along with this source code. - +version 2 (GPLv2) along with this source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_537.yml b/src/licensedcode/data/rules/gpl-2.0_537.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_537.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_538.RULE b/src/licensedcode/data/rules/gpl-2.0_538.RULE index 3f349887256..ab1a2751d14 100644 --- a/src/licensedcode/data/rules/gpl-2.0_538.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_538.RULE @@ -1,7 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.opensource.org/licenses/gpl-license.html +--- + 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. http://www.opensource.org/licenses/gpl-license.html - http://www.gnu.org/copyleft/gpl.html + http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_538.yml b/src/licensedcode/data/rules/gpl-2.0_538.yml deleted file mode 100644 index 105252723da..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_538.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.opensource.org/licenses/gpl-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0_539.RULE b/src/licensedcode/data/rules/gpl-2.0_539.RULE index c0acb575013..99ca0bef9c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_539.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_539.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. @@ -9,4 +16,4 @@ GNU General Public License for more details. To obtain the license, point your browser to - http://www.gnu.org/copyleft/gpl.html + http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_539.yml b/src/licensedcode/data/rules/gpl-2.0_539.yml deleted file mode 100644 index 8bbe62848ac..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_539.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_54.RULE b/src/licensedcode/data/rules/gpl-2.0_54.RULE index 97a5d479263..d5b07496646 100644 --- a/src/licensedcode/data/rules/gpl-2.0_54.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_54.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL from linux, debian style +ignorable_copyrights: + - copyrighted by Linus Torvalds and others +ignorable_holders: + - Linus Torvalds and others +--- + Linux is copyrighted by Linus Torvalds and others. This program is free software; you can redistribute it and/or modify @@ -14,4 +24,4 @@ Linux is copyrighted by Linus Torvalds and others. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_54.yml b/src/licensedcode/data/rules/gpl-2.0_54.yml deleted file mode 100644 index 53120f42c47..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_54.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL from linux, debian style -ignorable_copyrights: - - copyrighted by Linus Torvalds and others -ignorable_holders: - - Linus Torvalds and others diff --git a/src/licensedcode/data/rules/gpl-2.0_540.RULE b/src/licensedcode/data/rules/gpl-2.0_540.RULE index 8f01ef5e698..0985d24bd39 100644 --- a/src/licensedcode/data/rules/gpl-2.0_540.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_540.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -12,4 +17,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more details (a copy is included in the LICENSE file that accompanied this code). -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_540.yml b/src/licensedcode/data/rules/gpl-2.0_540.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_540.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_541.RULE b/src/licensedcode/data/rules/gpl-2.0_541.RULE index 5c05bcde468..2c144ad87b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_541.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_541.RULE @@ -1,3 +1,8 @@ -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_541.yml b/src/licensedcode/data/rules/gpl-2.0_541.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_541.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_542.RULE b/src/licensedcode/data/rules/gpl-2.0_542.RULE index e716e2dc777..7e9a7a4047c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_542.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_542.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_542.yml b/src/licensedcode/data/rules/gpl-2.0_542.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_542.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_543.RULE b/src/licensedcode/data/rules/gpl-2.0_543.RULE index f7caf2e7457..1cd67852760 100644 --- a/src/licensedcode/data/rules/gpl-2.0_543.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_543.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: availible is a typo +--- + This code is licensed under the GPL 2.0 license, availible at the root - application directory. + application directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_543.yml b/src/licensedcode/data/rules/gpl-2.0_543.yml deleted file mode 100644 index 199989190c1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_543.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: availible is a typo diff --git a/src/licensedcode/data/rules/gpl-2.0_544.RULE b/src/licensedcode/data/rules/gpl-2.0_544.RULE index e961e3014d7..97c27ddc25e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_544.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_544.RULE @@ -1 +1,9 @@ -__license__ = "GPLv2 (http://www.gnu.org/licenses/)" \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + +__license__ = "GPLv2 (http://www.gnu.org/licenses/)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_544.yml b/src/licensedcode/data/rules/gpl-2.0_544.yml deleted file mode 100644 index 4fd8b9d68c8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_544.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_545.RULE b/src/licensedcode/data/rules/gpl-2.0_545.RULE index 8ade9eba79d..6c30890838c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_545.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_545.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-faq.html + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + is licensed under the GNU General Public License, version 2< is licensed under http://www.gnu.org/licenses/old-licenses/gpl-2.0.html @@ -15,4 +23,4 @@ distribute the source code to that GPL-licensed software. If you distribute without making the source code to the version you distribute available, you violate the license terms, and thus infringe on the copyrights of . This requirement applies whether or not you modified ; either way the -license terms still apply to you. +license terms still apply to you. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_545.yml b/src/licensedcode/data/rules/gpl-2.0_545.yml deleted file mode 100644 index 6473f458949..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_545.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-faq.html - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_546.RULE b/src/licensedcode/data/rules/gpl-2.0_546.RULE index 8a2ba9eafbc..0ca24f464fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_546.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_546.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + __license__ = "GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_546.yml b/src/licensedcode/data/rules/gpl-2.0_546.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_546.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_547.RULE b/src/licensedcode/data/rules/gpl-2.0_547.RULE index 5e401bce6b2..03d7c07f88c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_547.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_547.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -10,4 +19,4 @@ 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 . The full GNU General Public License is included in this distribution -in the file called COPYING. +in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_547.yml b/src/licensedcode/data/rules/gpl-2.0_547.yml deleted file mode 100644 index 3f521620882..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_547.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_548.RULE b/src/licensedcode/data/rules/gpl-2.0_548.RULE index d799443f326..333a60cc6c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_548.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_548.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License Terms: GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_548.yml b/src/licensedcode/data/rules/gpl-2.0_548.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_548.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_549.RULE b/src/licensedcode/data/rules/gpl-2.0_549.RULE index 0274c20a7a5..d9cc151f8c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_549.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_549.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Released under the GPL version 2 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_549.yml b/src/licensedcode/data/rules/gpl-2.0_549.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_549.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_55.RULE b/src/licensedcode/data/rules/gpl-2.0_55.RULE index 70127c5a537..31e9c09fdd8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_55.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_55.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL 2 or later Debian notice +--- + This package 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; version 2 dated June, 1991. @@ -13,5 +19,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in -`/usr/share/common-licenses/GPL-2'. - \ No newline at end of file +`/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_55.yml b/src/licensedcode/data/rules/gpl-2.0_55.yml deleted file mode 100644 index 9501c0bbcb1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL 2 or later Debian notice diff --git a/src/licensedcode/data/rules/gpl-2.0_550.RULE b/src/licensedcode/data/rules/gpl-2.0_550.RULE index bb9bac20dcd..6100b260c4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_550.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_550.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + __license__ = "GPL version 2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_550.yml b/src/licensedcode/data/rules/gpl-2.0_550.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_550.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_551.RULE b/src/licensedcode/data/rules/gpl-2.0_551.RULE index 1e8c0d291d3..97d4262a8e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_551.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_551.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -15,4 +22,4 @@ in the LICENSE file that accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this program; If not, see http://www.gnu.org/licenses -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_551.yml b/src/licensedcode/data/rules/gpl-2.0_551.yml deleted file mode 100644 index 9111fe35897..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_551.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_552.RULE b/src/licensedcode/data/rules/gpl-2.0_552.RULE index 54e244b0dff..02a2e739227 100644 --- a/src/licensedcode/data/rules/gpl-2.0_552.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_552.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.sun.com/software/products/lustre/docs/GPLv2.pdf +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,4 +25,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see http://www.sun.com/software/products/lustre/docs/GPLv2.pdf -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_552.yml b/src/licensedcode/data/rules/gpl-2.0_552.yml deleted file mode 100644 index 095e1860c70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_552.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.sun.com/software/products/lustre/docs/GPLv2.pdf diff --git a/src/licensedcode/data/rules/gpl-2.0_553.RULE b/src/licensedcode/data/rules/gpl-2.0_553.RULE index c6970040ed7..58f12117137 100644 --- a/src/licensedcode/data/rules/gpl-2.0_553.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_553.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under version 2 of the - GNU General Public Licence + GNU General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_553.yml b/src/licensedcode/data/rules/gpl-2.0_553.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_553.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_554.RULE b/src/licensedcode/data/rules/gpl-2.0_554.RULE index b6c2c31ef99..3eeb8a6d6d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_554.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_554.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + based on GPL code from which has 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, version 2. + published by the Free Software Foundation, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_554.yml b/src/licensedcode/data/rules/gpl-2.0_554.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_554.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_555.RULE b/src/licensedcode/data/rules/gpl-2.0_555.RULE index 5ee4b3b3cfb..0bf9ed9e96c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_555.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_555.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. @@ -10,5 +17,4 @@ in the LICENSE file that accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this program; If not, see -http://www.gnu.org/licenses/gpl-2.0.html - +http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_555.yml b/src/licensedcode/data/rules/gpl-2.0_555.yml deleted file mode 100644 index f06fece8dfe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_555.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_556.RULE b/src/licensedcode/data/rules/gpl-2.0_556.RULE index d1a29e711c7..bdba6f3b523 100644 --- a/src/licensedcode/data/rules/gpl-2.0_556.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_556.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -15,4 +22,4 @@ You should have received a copy of the GNU General Public License version 2 along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.html -GPL HEADER END +GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_556.yml b/src/licensedcode/data/rules/gpl-2.0_556.yml deleted file mode 100644 index f06fece8dfe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_556.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_557.RULE b/src/licensedcode/data/rules/gpl-2.0_557.RULE index da352c87166..fe1d74ff2a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_557.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_557.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + All the material in this file is subject to the Gnu license version 2. Neither nor the admit liability nor provide warranty for any of this software. This material @@ -11,4 +16,4 @@ provide warranty for any of this software. This material is provided Portions Neither nor admit liability nor provide warranty for any of this software. This material is provided -"AS-IS" and at no charge. +"AS-IS" and at no charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_557.yml b/src/licensedcode/data/rules/gpl-2.0_557.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_557.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_558.RULE b/src/licensedcode/data/rules/gpl-2.0_558.RULE index 33bc00dd12f..0d234e395a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_558.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_558.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + 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. @@ -5,4 +11,4 @@ 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 MERGCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_558.yml b/src/licensedcode/data/rules/gpl-2.0_558.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_558.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_559.RULE b/src/licensedcode/data/rules/gpl-2.0_559.RULE index 143b3bd625b..957a0c8a25a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_559.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_559.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + COPYING [GNU General Public License Version 2] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_559.yml b/src/licensedcode/data/rules/gpl-2.0_559.yml deleted file mode 100644 index 674e1e609c1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_559.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_56.RULE b/src/licensedcode/data/rules/gpl-2.0_56.RULE index f1410297d9b..aab43356f27 100644 --- a/src/licensedcode/data/rules/gpl-2.0_56.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_56.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_56.yml b/src/licensedcode/data/rules/gpl-2.0_56.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_560.RULE b/src/licensedcode/data/rules/gpl-2.0_560.RULE index 4fb70601350..8d078b14eea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_560.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_560.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 dated June, 1991. @@ -5,4 +10,4 @@ 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. + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_560.yml b/src/licensedcode/data/rules/gpl-2.0_560.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_560.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_561.RULE b/src/licensedcode/data/rules/gpl-2.0_561.RULE index 509b87054ca..9b79f6e99d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_561.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_561.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License: GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_561.yml b/src/licensedcode/data/rules/gpl-2.0_561.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_561.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_562.RULE b/src/licensedcode/data/rules/gpl-2.0_562.RULE index 16b8b796847..328763ac5c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_562.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_562.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + are made available under the GNU General Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_562.yml b/src/licensedcode/data/rules/gpl-2.0_562.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_562.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_563.RULE b/src/licensedcode/data/rules/gpl-2.0_563.RULE index 7e31dda206f..6097bbcddda 100644 --- a/src/licensedcode/data/rules/gpl-2.0_563.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_563.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + On Debian GNU systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_563.yml b/src/licensedcode/data/rules/gpl-2.0_563.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_563.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_564.RULE b/src/licensedcode/data/rules/gpl-2.0_564.RULE index 441337f807f..9f3376263c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_564.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_564.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + is hereby placed under the terms of the GNU General Public License. Follows the GNU license. diff --git a/src/licensedcode/data/rules/gpl-2.0_564.yml b/src/licensedcode/data/rules/gpl-2.0_564.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_564.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_565.RULE b/src/licensedcode/data/rules/gpl-2.0_565.RULE index fa00dc90b07..f7c248b4beb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_565.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_565.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.4.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- +

GNU GENERAL PUBLIC LICENSE

Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_565.yml b/src/licensedcode/data/rules/gpl-2.0_565.yml deleted file mode 100644 index b30644f2fa1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_565.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.4.html -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_566.RULE b/src/licensedcode/data/rules/gpl-2.0_566.RULE index 97f45e1c84d..2244d5b1b98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_566.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_566.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + This file may be redistributed under the terms of the GNU Public -License version 2. +License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_566.yml b/src/licensedcode/data/rules/gpl-2.0_566.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_566.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_567.RULE b/src/licensedcode/data/rules/gpl-2.0_567.RULE index ea8e869d3d1..eb5e579a5ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_567.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_567.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + GPL 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 diff --git a/src/licensedcode/data/rules/gpl-2.0_567.yml b/src/licensedcode/data/rules/gpl-2.0_567.yml deleted file mode 100644 index a15f4cffa7a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_567.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_568.RULE b/src/licensedcode/data/rules/gpl-2.0_568.RULE index 2191dead944..fe031bedaef 100644 --- a/src/licensedcode/data/rules/gpl-2.0_568.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_568.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + 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 (the "GPL"). @@ -10,5 +17,4 @@ A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or by writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. - \ No newline at end of file + Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_568.yml b/src/licensedcode/data/rules/gpl-2.0_568.yml deleted file mode 100644 index a15f4cffa7a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_568.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_569.RULE b/src/licensedcode/data/rules/gpl-2.0_569.RULE index 1c93c54af54..da3877d6356 100644 --- a/src/licensedcode/data/rules/gpl-2.0_569.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_569.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +--- + GNU General Public License (GPL) version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_569.yml b/src/licensedcode/data/rules/gpl-2.0_569.yml deleted file mode 100644 index a01d13cd289..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_569.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_57.RULE b/src/licensedcode/data/rules/gpl-2.0_57.RULE index c4471c87e73..0b0b5a6eecb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_57.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_57.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + Read the GPL v2.0 for legal details. http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_57.yml b/src/licensedcode/data/rules/gpl-2.0_57.yml deleted file mode 100644 index 1851e10b9cc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_570.RULE b/src/licensedcode/data/rules/gpl-2.0_570.RULE index c813a41873a..882d5426633 100644 --- a/src/licensedcode/data/rules/gpl-2.0_570.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_570.RULE @@ -1 +1,7 @@ -Released under the GPLv2 only. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Released under the GPLv2 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_570.yml b/src/licensedcode/data/rules/gpl-2.0_570.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_570.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_571.RULE b/src/licensedcode/data/rules/gpl-2.0_571.RULE index dc3f20ff00f..bbe0c682532 100644 --- a/src/licensedcode/data/rules/gpl-2.0_571.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_571.RULE @@ -1 +1,7 @@ -Released under the terms of the GPL v2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Released under the terms of the GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_571.yml b/src/licensedcode/data/rules/gpl-2.0_571.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_571.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_572.RULE b/src/licensedcode/data/rules/gpl-2.0_572.RULE index 41fd2d9786a..3dc455bff6a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_572.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_572.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is subject to the terms and conditions of the GNU General Public -License v2. +License v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_572.yml b/src/licensedcode/data/rules/gpl-2.0_572.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_572.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_573.RULE b/src/licensedcode/data/rules/gpl-2.0_573.RULE index 86a4beeda0d..8496d9d1d83 100644 --- a/src/licensedcode/data/rules/gpl-2.0_573.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_573.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The code in this file 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; version 2 @@ -9,4 +15,4 @@ 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_573.yml b/src/licensedcode/data/rules/gpl-2.0_573.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_573.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_574.RULE b/src/licensedcode/data/rules/gpl-2.0_574.RULE index 37b4a09df50..2bed9d39983 100644 --- a/src/licensedcode/data/rules/gpl-2.0_574.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_574.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +--- + * This file is available under and governed by the GNU General Public * License version 2 only, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_574.yml b/src/licensedcode/data/rules/gpl-2.0_574.yml deleted file mode 100644 index a01d13cd289..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_574.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_575.RULE b/src/licensedcode/data/rules/gpl-2.0_575.RULE index 21ec81b3dee..7655ea5ee82 100644 --- a/src/licensedcode/data/rules/gpl-2.0_575.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_575.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-2.0_575.yml b/src/licensedcode/data/rules/gpl-2.0_575.yml deleted file mode 100644 index 8c25c5e4981..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_575.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_576.RULE b/src/licensedcode/data/rules/gpl-2.0_576.RULE index 1773f1e2d34..e80210da6f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_576.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_576.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the GPLv2 License. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_576.yml b/src/licensedcode/data/rules/gpl-2.0_576.yml deleted file mode 100644 index b7411ee7116..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_576.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_577.RULE b/src/licensedcode/data/rules/gpl-2.0_577.RULE index 140ebc5c252..dfd993262b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_577.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_577.RULE @@ -1 +1,7 @@ -Licensed under the GPLv2 License. \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +Licensed under the GPLv2 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_577.yml b/src/licensedcode/data/rules/gpl-2.0_577.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_577.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_578.RULE b/src/licensedcode/data/rules/gpl-2.0_578.RULE index adaef84d17e..1cbd04d51e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_578.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_578.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 95 +minimum_coverage: 99 +notes: this is a weird truncated GPL text found in eCos tests +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + static char license_txt[] = " GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -17,4 +29,4 @@ General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to -your programs, too."; +your programs, too."; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_578.yml b/src/licensedcode/data/rules/gpl-2.0_578.yml deleted file mode 100644 index c3381d2299a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_578.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 95 -minimum_coverage: 99 -notes: this is a weird truncated GPL text found in eCos tests -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_579.RULE b/src/licensedcode/data/rules/gpl-2.0_579.RULE index ed2209290e2..620609016ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0_579.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_579.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + The complete text of the GNU General Public License v2 is as follows \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_579.yml b/src/licensedcode/data/rules/gpl-2.0_579.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_579.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_58.RULE b/src/licensedcode/data/rules/gpl-2.0_58.RULE index 24a28652713..4252bff5083 100644 --- a/src/licensedcode/data/rules/gpl-2.0_58.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_58.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +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 version 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_58.yml b/src/licensedcode/data/rules/gpl-2.0_58.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_58.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_580.RULE b/src/licensedcode/data/rules/gpl-2.0_580.RULE index cb3cee57cd2..ff3237752ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0_580.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_580.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + License: GPL v2 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_580.yml b/src/licensedcode/data/rules/gpl-2.0_580.yml deleted file mode 100644 index 1de092a0b20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_580.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_581.RULE b/src/licensedcode/data/rules/gpl-2.0_581.RULE index dcce00d5934..55b5042f34c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_581.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_581.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + based on GPL'ed 2.6 kernel sources \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_581.yml b/src/licensedcode/data/rules/gpl-2.0_581.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_581.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_582.RULE b/src/licensedcode/data/rules/gpl-2.0_582.RULE index cae2ccceb82..85f5e936f1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_582.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_582.RULE @@ -1 +1,7 @@ -Subject to the GNU public license, v.2. No warranty of any kind. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Subject to the GNU public license, v.2. No warranty of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_582.yml b/src/licensedcode/data/rules/gpl-2.0_582.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_582.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_583.RULE b/src/licensedcode/data/rules/gpl-2.0_583.RULE index ca2b7ceecf7..29710ec42b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_583.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_583.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This documentation 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. +License version 2 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_583.yml b/src/licensedcode/data/rules/gpl-2.0_583.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_583.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_584.RULE b/src/licensedcode/data/rules/gpl-2.0_584.RULE index ff74e9c5874..7fdfaa671a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_584.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_584.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + 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 Foudation. +as published by the Free Software Foudation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_584.yml b/src/licensedcode/data/rules/gpl-2.0_584.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_584.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_585.RULE b/src/licensedcode/data/rules/gpl-2.0_585.RULE index 28caca9bbc5..750b54888f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_585.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_585.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in Lincense +--- + SPDX-Lincense-Identifier: GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_585.yml b/src/licensedcode/data/rules/gpl-2.0_585.yml deleted file mode 100644 index fbc91422f63..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_585.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in Lincense diff --git a/src/licensedcode/data/rules/gpl-2.0_586.RULE b/src/licensedcode/data/rules/gpl-2.0_586.RULE index 3de8348ed00..1276a41e530 100644 --- a/src/licensedcode/data/rules/gpl-2.0_586.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_586.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_authors: + - Andy Polyakov + - Andy Polyakov for the OpenSSL project +ignorable_urls: + - http://www.openssl.org/~appro/cryptogams +ignorable_emails: + - appro@openssl.org +--- + This code is taken from the OpenSSL project but the author (Andy Polyakov) has relicensed it under the GPLv2. Therefore this program is free software; you can redistribute it and/or modify it under the terms of the GNU General @@ -11,4 +25,4 @@ Written by Andy Polyakov for the OpenSSL project. The module is, however, dual licensed under OpenSSL and CRYPTOGAMS licenses depending on where you obtain it. For further details see http://www.openssl.org/~appro/cryptogams/. -==================================================================== +==================================================================== \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_586.yml b/src/licensedcode/data/rules/gpl-2.0_586.yml deleted file mode 100644 index 9c2bbee1cf0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_586.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_authors: - - Andy Polyakov - - Andy Polyakov for the OpenSSL project -ignorable_urls: - - http://www.openssl.org/~appro/cryptogams -ignorable_emails: - - appro@openssl.org diff --git a/src/licensedcode/data/rules/gpl-2.0_587.RULE b/src/licensedcode/data/rules/gpl-2.0_587.RULE index 36209b404e0..44214899ddc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_587.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_587.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_authors: + - Andy Polyakov + - Andy Polyakov for the OpenSSL project +ignorable_urls: + - http://www.openssl.org/~appro/cryptogams + - https://www.openssl.org/source/license.html +ignorable_emails: + - appro@openssl.org +--- + This code is taken from the OpenSSL project but the author (Andy Polyakov) has relicensed it under the GPLv2. Therefore this program is free software; you can redistribute it and/or modify it under the terms of the GNU General @@ -17,4 +32,4 @@ Written by Andy Polyakov for the OpenSSL project. The module is, however, dual licensed under OpenSSL and CRYPTOGAMS licenses depending on where you obtain it. For further details see http://www.openssl.org/~appro/cryptogams/. -==================================================================== +==================================================================== \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_587.yml b/src/licensedcode/data/rules/gpl-2.0_587.yml deleted file mode 100644 index 9cde59e87d7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_587.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_authors: - - Andy Polyakov - - Andy Polyakov for the OpenSSL project -ignorable_urls: - - http://www.openssl.org/~appro/cryptogams - - https://www.openssl.org/source/license.html -ignorable_emails: - - appro@openssl.org diff --git a/src/licensedcode/data/rules/gpl-2.0_588.RULE b/src/licensedcode/data/rules/gpl-2.0_588.RULE index a7a88a07e3c..e3c895c21df 100644 --- a/src/licensedcode/data/rules/gpl-2.0_588.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_588.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Subject to GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_588.yml b/src/licensedcode/data/rules/gpl-2.0_588.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_588.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_589.RULE b/src/licensedcode/data/rules/gpl-2.0_589.RULE index 2efc47c8d16..bfe9fe1f820 100644 --- a/src/licensedcode/data/rules/gpl-2.0_589.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_589.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is provided under the GPLv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_589.yml b/src/licensedcode/data/rules/gpl-2.0_589.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_589.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_59.RULE b/src/licensedcode/data/rules/gpl-2.0_59.RULE index b174acb8914..3dd3e41b489 100644 --- a/src/licensedcode/data/rules/gpl-2.0_59.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_59.RULE @@ -1,3 +1,8 @@ +--- +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 as published by | the Free Software Foundation; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_59.yml b/src/licensedcode/data/rules/gpl-2.0_59.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_590.RULE b/src/licensedcode/data/rules/gpl-2.0_590.RULE index 134dbe804ba..76a73646627 100644 --- a/src/licensedcode/data/rules/gpl-2.0_590.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_590.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + 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 @@ -23,4 +34,4 @@ any damages of any kind arising from your use or distribution of this program. The Linux Foundation chooses to take subject only to the GPLv2 -license terms, and distributes only under these terms. +license terms, and distributes only under these terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_590.yml b/src/licensedcode/data/rules/gpl-2.0_590.yml deleted file mode 100644 index d5860a9b3bc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_590.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_591.RULE b/src/licensedcode/data/rules/gpl-2.0_591.RULE index 76cb25d4538..fda7f41c2d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_591.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_591.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + based on GPLv2 source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_591.yml b/src/licensedcode/data/rules/gpl-2.0_591.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_591.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_592.RULE b/src/licensedcode/data/rules/gpl-2.0_592.RULE index 8eaa1a14bd6..0fca1717bd4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_592.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_592.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Released under the GPL v2. -based on GPLv2 source code +based on GPLv2 source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_592.yml b/src/licensedcode/data/rules/gpl-2.0_592.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_592.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_593.RULE b/src/licensedcode/data/rules/gpl-2.0_593.RULE index 43e65169a17..15730dfec2d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_593.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_593.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is released under the GNU GPL V2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_593.yml b/src/licensedcode/data/rules/gpl-2.0_593.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_593.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_594.RULE b/src/licensedcode/data/rules/gpl-2.0_594.RULE index d35d4414120..063d22b4624 100644 --- a/src/licensedcode/data/rules/gpl-2.0_594.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_594.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Use of this source code is governed by the GPLv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_594.yml b/src/licensedcode/data/rules/gpl-2.0_594.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_594.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_595.RULE b/src/licensedcode/data/rules/gpl-2.0_595.RULE index 3b069f3e6df..328ec13154c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_595.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_595.RULE @@ -1 +1,7 @@ -This work is licensed under the terms of the GNU GPL, version 2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +This work is licensed under the terms of the GNU GPL, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_595.yml b/src/licensedcode/data/rules/gpl-2.0_595.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_595.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_596.RULE b/src/licensedcode/data/rules/gpl-2.0_596.RULE index c6b77a9b643..ff40d03e645 100644 --- a/src/licensedcode/data/rules/gpl-2.0_596.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_596.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This software is licensed under the GNU General License Version 2, June 1991 as shown in the file COPYING in the top-level directory of this source tree. @@ -7,4 +14,4 @@ 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. + THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_596.yml b/src/licensedcode/data/rules/gpl-2.0_596.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_596.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_597.RULE b/src/licensedcode/data/rules/gpl-2.0_597.RULE index f8f4ea78944..e9cf2544a8f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_597.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_597.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License ------- This book is licensed under the terms of the GNU Public License, v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_597.yml b/src/licensedcode/data/rules/gpl-2.0_597.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_597.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_598.RULE b/src/licensedcode/data/rules/gpl-2.0_598.RULE index 49251d51701..e4b57d2d4c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_598.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_598.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.html +--- + GPLv2: GNU GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_598.yml b/src/licensedcode/data/rules/gpl-2.0_598.yml deleted file mode 100644 index 6b78ae741f9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_598.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_599.RULE b/src/licensedcode/data/rules/gpl-2.0_599.RULE index c156f243aeb..65635438275 100644 --- a/src/licensedcode/data/rules/gpl-2.0_599.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_599.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: language:it +ignorable_urls: + - http://gnu.org/licenses/gpl.html +--- + Licenza GPLv2: GNU GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_599.yml b/src/licensedcode/data/rules/gpl-2.0_599.yml deleted file mode 100644 index 0d2355f5cbd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_599.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: language:it -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_6.RULE index 8b33330fd1a..4c7329056cc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_6.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: This string "\x47\x50\x4c\x20\x76\x32" means GPL. +--- + \x47\x50\x4c\x20\x76\x32 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_6.yml deleted file mode 100644 index 7d9de33cb9c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: This string "\x47\x50\x4c\x20\x76\x32" means GPL. diff --git a/src/licensedcode/data/rules/gpl-2.0_60.RULE b/src/licensedcode/data/rules/gpl-2.0_60.RULE index 5cb84d784b3..c3de79c03a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_60.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This source code is licensed under General Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_60.yml b/src/licensedcode/data/rules/gpl-2.0_60.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_600.RULE b/src/licensedcode/data/rules/gpl-2.0_600.RULE index 70c2be400e5..60dd082e3a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_600.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_600.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + @license GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_600.yml b/src/licensedcode/data/rules/gpl-2.0_600.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_600.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_601.RULE b/src/licensedcode/data/rules/gpl-2.0_601.RULE index eeac47c7519..223e60c41c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_601.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_601.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -5,4 +10,4 @@ published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_601.yml b/src/licensedcode/data/rules/gpl-2.0_601.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_601.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_602.RULE b/src/licensedcode/data/rules/gpl-2.0_602.RULE index 7ed7f9c2dd5..0cfb5907c36 100644 --- a/src/licensedcode/data/rules/gpl-2.0_602.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_602.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This package 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. @@ -5,4 +10,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_602.yml b/src/licensedcode/data/rules/gpl-2.0_602.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_602.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_603.RULE b/src/licensedcode/data/rules/gpl-2.0_603.RULE index 957d77f241e..a65851afa8c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_603.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_603.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + 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. @@ -5,4 +12,4 @@ 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 http://www.gnu.org/licenses/gpl-2.0.html for more details. + See http://www.gnu.org/licenses/gpl-2.0.html for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_603.yml b/src/licensedcode/data/rules/gpl-2.0_603.yml deleted file mode 100644 index f06fece8dfe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_603.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_604.RULE b/src/licensedcode/data/rules/gpl-2.0_604.RULE index 96027773980..e78bdcd5f4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_604.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_604.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -5,4 +10,4 @@ the Free Software Foundation. This program is distributed in the hope 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. +more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_604.yml b/src/licensedcode/data/rules/gpl-2.0_604.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_604.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_605.RULE b/src/licensedcode/data/rules/gpl-2.0_605.RULE index 86b0175f1e7..0964cb20f79 100644 --- a/src/licensedcode/data/rules/gpl-2.0_605.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_605.RULE @@ -1,3 +1,8 @@ +--- +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 (GPL v2) as published by the Free Software Foundation. @@ -5,5 +10,4 @@ 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. - \ No newline at end of file +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_605.yml b/src/licensedcode/data/rules/gpl-2.0_605.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_605.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_606.RULE b/src/licensedcode/data/rules/gpl-2.0_606.RULE index d638a04b2ff..a81a6d84052 100644 --- a/src/licensedcode/data/rules/gpl-2.0_606.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_606.RULE @@ -1,3 +1,8 @@ +--- +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 as version 2, as published by the Free Software Foundation. @@ -5,4 +10,4 @@ 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. +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_606.yml b/src/licensedcode/data/rules/gpl-2.0_606.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_606.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_607.RULE b/src/licensedcode/data/rules/gpl-2.0_607.RULE index 3d09c342ba8..bab4413c402 100644 --- a/src/licensedcode/data/rules/gpl-2.0_607.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_607.RULE @@ -1,3 +1,8 @@ +--- +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 and conditions of the GNU General Public License, version 2, as published by the Free Software Foundation. @@ -5,4 +10,4 @@ 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. + General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_607.yml b/src/licensedcode/data/rules/gpl-2.0_607.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_607.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_608.RULE b/src/licensedcode/data/rules/gpl-2.0_608.RULE index b03a21124f0..26e6e8fa120 100644 --- a/src/licensedcode/data/rules/gpl-2.0_608.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_608.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 of the License. @@ -5,4 +10,4 @@ the Free Software Foundation; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or -NON INFRINGEMENT. See the GNU General Public License for more details. +NON INFRINGEMENT. See the GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_608.yml b/src/licensedcode/data/rules/gpl-2.0_608.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_608.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_609.RULE b/src/licensedcode/data/rules/gpl-2.0_609.RULE index cabbbd022c7..28ef5003a3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_609.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_609.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + based on GPL'ed 2.6 kernel sources This file is licensed under the terms of the GNU General Public License version 2. This program is licensed "as is" without any -warranty of any kind, whether express or implied. +warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_609.yml b/src/licensedcode/data/rules/gpl-2.0_609.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_609.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_61.RULE b/src/licensedcode/data/rules/gpl-2.0_61.RULE index 7e0694fb6f3..2f8fae4fa98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_61.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_61.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + licensed under General Public License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_61.yml b/src/licensedcode/data/rules/gpl-2.0_61.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_610.RULE b/src/licensedcode/data/rules/gpl-2.0_610.RULE index 6d837fef10a..1bb1242c70b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_610.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_610.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License (GPL) Version 2, June 1991 @@ -320,4 +331,4 @@ This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public -License instead of this License. +License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_610.yml b/src/licensedcode/data/rules/gpl-2.0_610.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_610.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_611.RULE b/src/licensedcode/data/rules/gpl-2.0_611.RULE index 2158460b5d7..baa6d0236f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_611.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_611.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -12,4 +19,4 @@ accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this work; if not, write to the Free Software Foundation, -Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_611.yml b/src/licensedcode/data/rules/gpl-2.0_611.yml deleted file mode 100644 index 37643e41a3a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_611.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_612.RULE b/src/licensedcode/data/rules/gpl-2.0_612.RULE index 4f51f25fa7a..187b3ed9089 100644 --- a/src/licensedcode/data/rules/gpl-2.0_612.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_612.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + * This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_612.yml b/src/licensedcode/data/rules/gpl-2.0_612.yml deleted file mode 100644 index 07ce2341afa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_612.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_613.RULE b/src/licensedcode/data/rules/gpl-2.0_613.RULE index 19fdef6614b..2b70ebfef2a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_613.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_613.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + * THIS FILE IS PART OF THE SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY * * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. * * PLEASE READ THESE TERMS DISTRIBUTING. * - * \ No newline at end of file + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_613.yml b/src/licensedcode/data/rules/gpl-2.0_613.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_613.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_614.RULE b/src/licensedcode/data/rules/gpl-2.0_614.RULE index cab773579bd..4f61f8033fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_614.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_614.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY * * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. * - * PLEASE READ THESE TERMS DISTRIBUTING. * + * PLEASE READ THESE TERMS DISTRIBUTING. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_614.yml b/src/licensedcode/data/rules/gpl-2.0_614.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_614.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_615.RULE b/src/licensedcode/data/rules/gpl-2.0_615.RULE index e3e8ddea0a8..e1d3263ea25 100644 --- a/src/licensedcode/data/rules/gpl-2.0_615.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_615.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + They are licensed by the copyright holders as GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_615.yml b/src/licensedcode/data/rules/gpl-2.0_615.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_615.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_616.RULE b/src/licensedcode/data/rules/gpl-2.0_616.RULE index 4b3dac2dc81..324f2fe1187 100644 --- a/src/licensedcode/data/rules/gpl-2.0_616.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_616.RULE @@ -1,7 +1,16 @@ +--- +license_expression: proprietary-license AND gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + SOFTWARE LICENSE AGREEMENT IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. Do not use or load this software and any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software. -* The Linux DRM kernel source code, when included with this Software, is not subject to the terms of this Agreement but is subject to the ?GNU General Public License Version 2?, which may be obtained at the following web site: http://www.gnu.org/licenses/gpl.txt +* The Linux DRM kernel source code, when included with this Software, is not subject to the terms of this Agreement but is subject to the ?GNU General Public License Version 2?, which may be obtained at the following web site: http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_616.yml b/src/licensedcode/data/rules/gpl-2.0_616.yml deleted file mode 100644 index 2c6f4b0259a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_616.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license AND gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_617.RULE b/src/licensedcode/data/rules/gpl-2.0_617.RULE index 4b0397306c4..b3e53ea31e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_617.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_617.RULE @@ -1,5 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +notes: The GPL version is not specified in this notice BUT at https://web.archive.org/web/20020809115410/ftp://prep.ai.mit.edu/pub/gnu/GPL + the text is a GPL 2.0 license text +ignorable_urls: + - ftp://prep.ai.mit.edu/pub/gnu/GPL +--- + COPYRIGHT This file is distributed under the terms of the GNU General Public License (GPL). Copies of the GPL can be obtained from: ftp://prep.ai.mit.edu/pub/gnu/GPL - Each contributing author retains all rights to their own work. + Each contributing author retains all rights to their own work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_617.yml b/src/licensedcode/data/rules/gpl-2.0_617.yml deleted file mode 100644 index e42e2fac18b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_617.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -notes: The GPL version is not specified in this notice BUT at https://web.archive.org/web/20020809115410/ftp://prep.ai.mit.edu/pub/gnu/GPL - the text is a GPL 2.0 license text -ignorable_urls: - - ftp://prep.ai.mit.edu/pub/gnu/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_617_1.RULE b/src/licensedcode/data/rules/gpl-2.0_617_1.RULE index a5307b025f6..eb274e535fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_617_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_617_1.RULE @@ -1 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: At https://web.archive.org/web/20020809115410/ftp://prep.ai.mit.edu/pub/gnu/GPL the text + is a GPL 2.0 license text +ignorable_urls: + - ftp://prep.ai.mit.edu/pub/gnu/GPL +--- + ftp://prep.ai.mit.edu/pub/gnu/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_617_1.yml b/src/licensedcode/data/rules/gpl-2.0_617_1.yml deleted file mode 100644 index bc3cec31011..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_617_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: At https://web.archive.org/web/20020809115410/ftp://prep.ai.mit.edu/pub/gnu/GPL the text - is a GPL 2.0 license text -ignorable_urls: - - ftp://prep.ai.mit.edu/pub/gnu/GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_618.RULE b/src/licensedcode/data/rules/gpl-2.0_618.RULE index a326c5a90e2..d19e06562c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_618.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_618.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + is subject to the ?GNU General Public License Version 2?, which may be obtained at the following web site: http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_618.yml b/src/licensedcode/data/rules/gpl-2.0_618.yml deleted file mode 100644 index 07ce2341afa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_618.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_619.RULE b/src/licensedcode/data/rules/gpl-2.0_619.RULE index c2a98579fae..077e7ad7cbc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_619.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_619.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + START OF GNU GENERAL PUBLIC LICENSE -- diff --git a/src/licensedcode/data/rules/gpl-2.0_619.yml b/src/licensedcode/data/rules/gpl-2.0_619.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_619.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_62.RULE b/src/licensedcode/data/rules/gpl-2.0_62.RULE index 093c5a82117..de5af9d003f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_62.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_62.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + The complete text of the GNU General Public License version 2 is available in /usr/share/common-licenses/GPL on a Debian system. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_62.yml b/src/licensedcode/data/rules/gpl-2.0_62.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_62.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_620.RULE b/src/licensedcode/data/rules/gpl-2.0_620.RULE index d1422f8b31a..83aecf8f9d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_620.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_620.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_620.yml b/src/licensedcode/data/rules/gpl-2.0_620.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_620.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_621.RULE b/src/licensedcode/data/rules/gpl-2.0_621.RULE index 34947502341..340b1adb78e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_621.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_621.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_621.yml b/src/licensedcode/data/rules/gpl-2.0_621.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_621.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_622.RULE b/src/licensedcode/data/rules/gpl-2.0_622.RULE index 1b7a2c9bb37..2086dbd853e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_622.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_622.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + the GNU General Public License version 2 (the "GPL License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_622.yml b/src/licensedcode/data/rules/gpl-2.0_622.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_622.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_623.RULE b/src/licensedcode/data/rules/gpl-2.0_623.RULE index 35427eab65d..8d0adc8ce3b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_623.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_623.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_623.yml b/src/licensedcode/data/rules/gpl-2.0_623.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_623.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_624.RULE b/src/licensedcode/data/rules/gpl-2.0_624.RULE index d68b622da2d..71faf49e4b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_624.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_624.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This library 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. @@ -9,4 +15,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +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_624.yml b/src/licensedcode/data/rules/gpl-2.0_624.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_624.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_625.RULE b/src/licensedcode/data/rules/gpl-2.0_625.RULE index 2c1a53f8d77..21ca67b9ec7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_625.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_625.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This documentation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public @@ -15,4 +22,4 @@ For more details see the file COPYING in the source distribution of Linux. - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_625.yml b/src/licensedcode/data/rules/gpl-2.0_625.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_625.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_626.RULE b/src/licensedcode/data/rules/gpl-2.0_626.RULE index a1c546392e2..4e2ad67524c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_626.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_626.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This documentation 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. @@ -13,4 +20,4 @@ Boston, MA 02110-1301 USA. For more details see the file COPYING in the source - distribution of Linux. + distribution of Linux. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_626.yml b/src/licensedcode/data/rules/gpl-2.0_626.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_626.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_627.RULE b/src/licensedcode/data/rules/gpl-2.0_627.RULE index 09463fd6989..53079022f7e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_627.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_627.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ +--- + cc:license - rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" / + rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_627.yml b/src/licensedcode/data/rules/gpl-2.0_627.yml deleted file mode 100644 index 63edbbcf598..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_627.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ diff --git a/src/licensedcode/data/rules/gpl-2.0_628.RULE b/src/licensedcode/data/rules/gpl-2.0_628.RULE index 022911c18aa..6ceb29ffc99 100644 --- a/src/licensedcode/data/rules/gpl-2.0_628.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_628.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ +--- + . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_633.yml b/src/licensedcode/data/rules/gpl-2.0_633.yml deleted file mode 100644 index 541d895e0a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_633.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_634.RULE b/src/licensedcode/data/rules/gpl-2.0_634.RULE index d5e7ba561f0..8053b1afea5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_634.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_634.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -337,4 +348,4 @@ This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General -Public License instead of this License. +Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_634.yml b/src/licensedcode/data/rules/gpl-2.0_634.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_634.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_635.RULE b/src/licensedcode/data/rules/gpl-2.0_635.RULE index ce128fc4fd2..dd8b5e374eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_635.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_635.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed as - * GPL version 2 \ No newline at end of file + * GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_635.yml b/src/licensedcode/data/rules/gpl-2.0_635.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_635.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_636.RULE b/src/licensedcode/data/rules/gpl-2.0_636.RULE index 9694b286f02..453f1176de8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_636.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_636.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_636.yml b/src/licensedcode/data/rules/gpl-2.0_636.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_636.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_637.RULE b/src/licensedcode/data/rules/gpl-2.0_637.RULE index 3ea36530272..c9d6d759b1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_637.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_637.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + all of the files in this archive are licensed under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_637.yml b/src/licensedcode/data/rules/gpl-2.0_637.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_637.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_638.RULE b/src/licensedcode/data/rules/gpl-2.0_638.RULE index 4c58c9f1333..b94644e4139 100644 --- a/src/licensedcode/data/rules/gpl-2.0_638.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_638.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is available under the GPLv2 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_638.yml b/src/licensedcode/data/rules/gpl-2.0_638.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_638.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_639.RULE b/src/licensedcode/data/rules/gpl-2.0_639.RULE index cd71d688412..168260c0926 100644 --- a/src/licensedcode/data/rules/gpl-2.0_639.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_639.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + source code is distributed under GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_639.yml b/src/licensedcode/data/rules/gpl-2.0_639.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_639.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_64.RULE b/src/licensedcode/data/rules/gpl-2.0_64.RULE index ebecdea5fdd..fbcb1ba6b88 100644 --- a/src/licensedcode/data/rules/gpl-2.0_64.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_64.yml b/src/licensedcode/data/rules/gpl-2.0_64.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_640.RULE b/src/licensedcode/data/rules/gpl-2.0_640.RULE index d8633b32955..fd1f9d23415 100644 --- a/src/licensedcode/data/rules/gpl-2.0_640.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_640.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_640.yml b/src/licensedcode/data/rules/gpl-2.0_640.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_640.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_641.RULE b/src/licensedcode/data/rules/gpl-2.0_641.RULE index 752ccdf8fe1..52b1449093c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_641.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_641.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is distributed under GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_641.yml b/src/licensedcode/data/rules/gpl-2.0_641.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_641.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_642.RULE b/src/licensedcode/data/rules/gpl-2.0_642.RULE index d1b3710629a..3c2cf0d838c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_642.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_642.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is distributed under GPL Version 2.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_642.yml b/src/licensedcode/data/rules/gpl-2.0_642.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_642.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_643.RULE b/src/licensedcode/data/rules/gpl-2.0_643.RULE index 9b94dad5fde..1e22e4bbbe9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_643.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_643.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + License: GPL (http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_643.yml b/src/licensedcode/data/rules/gpl-2.0_643.yml deleted file mode 100644 index 17765909f29..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_643.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_644.RULE b/src/licensedcode/data/rules/gpl-2.0_644.RULE index 512d99d548b..87919bf2cf2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_644.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_644.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + #IS_RIGHT # This program is distributed under GPL Version 2.0 in the hope that # it will be useful, but WITHOUT ANY WARRANTY. -#IS_RIGHT +#IS_RIGHT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_644.yml b/src/licensedcode/data/rules/gpl-2.0_644.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_644.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_645.RULE b/src/licensedcode/data/rules/gpl-2.0_645.RULE index d71446d9b4b..c1861b9fe00 100644 --- a/src/licensedcode/data/rules/gpl-2.0_645.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_645.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0_645.yml b/src/licensedcode/data/rules/gpl-2.0_645.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_645.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_646.RULE b/src/licensedcode/data/rules/gpl-2.0_646.RULE index 39d3fade643..3c1cc1d44c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_646.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_646.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + software is licensed pursuant to the GNU General Public License version 2 (GPLv2), Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_646.yml b/src/licensedcode/data/rules/gpl-2.0_646.yml deleted file mode 100644 index d9109217be4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_646.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_647.RULE b/src/licensedcode/data/rules/gpl-2.0_647.RULE index 4aeee402487..660326eb66e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_647.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_647.RULE @@ -1,2 +1,11 @@ -The software is licensed pursuant to the GNU General Public License version 2 (GPLv2), Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA which is available at httplicense (the "License"). Any use of shall be subject to the License. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- +The software is licensed pursuant to the GNU General Public License version 2 (GPLv2), Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA which is available at httplicense (the "License"). Any use of shall be subject to the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_647.yml b/src/licensedcode/data/rules/gpl-2.0_647.yml deleted file mode 100644 index d9109217be4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_647.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_648.RULE b/src/licensedcode/data/rules/gpl-2.0_648.RULE index af6b9dcb211..912e73c994e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_648.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_648.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + COPYING.GPLv2][gpllicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_648.yml b/src/licensedcode/data/rules/gpl-2.0_648.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_648.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_649.RULE b/src/licensedcode/data/rules/gpl-2.0_649.RULE index cc3acda7e5a..f716eee5486 100644 --- a/src/licensedcode/data/rules/gpl-2.0_649.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_649.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License (GPL) Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_649.yml b/src/licensedcode/data/rules/gpl-2.0_649.yml deleted file mode 100644 index 21970449a66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_649.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_65.RULE b/src/licensedcode/data/rules/gpl-2.0_65.RULE index 95bb90467cd..57488813aae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_65.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_65.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 dated June, 1991. @@ -12,4 +17,4 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. +Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_65.yml b/src/licensedcode/data/rules/gpl-2.0_65.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_65.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_650.RULE b/src/licensedcode/data/rules/gpl-2.0_650.RULE index cbc34bc92df..7ee91a289e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_650.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_650.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + gpllicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_650.yml b/src/licensedcode/data/rules/gpl-2.0_650.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_650.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_651.RULE b/src/licensedcode/data/rules/gpl-2.0_651.RULE index 25fbc8bd303..fd2b9cd33b0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_651.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_651.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License (GPL) Version 2, June 1991 @@ -123,4 +134,4 @@ signature of Ty Coon, 1 April 1989 Ty Coon, President of Vice - This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. + This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_651.yml b/src/licensedcode/data/rules/gpl-2.0_651.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_651.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_652.RULE b/src/licensedcode/data/rules/gpl-2.0_652.RULE index be420970c04..d091f706d63 100644 --- a/src/licensedcode/data/rules/gpl-2.0_652.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_652.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License (GPL) Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -61,4 +72,4 @@ You should also get your employer (if you work as a programmer) or your school, o Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. signature of Ty Coon, 1 April 1989 Ty Coon, President of Vice -This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_652.yml b/src/licensedcode/data/rules/gpl-2.0_652.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_652.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_653.RULE b/src/licensedcode/data/rules/gpl-2.0_653.RULE index e8149861b6b..f6a59c7d587 100644 --- a/src/licensedcode/data/rules/gpl-2.0_653.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_653.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: found in the Linux kernel +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 -See the file COPYING included with this distribution for more details. +See the file COPYING included with this distribution for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_653.yml b/src/licensedcode/data/rules/gpl-2.0_653.yml deleted file mode 100644 index 814aa66ef44..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_653.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -notes: found in the Linux kernel diff --git a/src/licensedcode/data/rules/gpl-2.0_654.RULE b/src/licensedcode/data/rules/gpl-2.0_654.RULE index a2f676b384f..b0850b324ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_654.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_654.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + licensed under the terms of the GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_654.yml b/src/licensedcode/data/rules/gpl-2.0_654.yml deleted file mode 100644 index b0c82f27444..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_654.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_655.RULE b/src/licensedcode/data/rules/gpl-2.0_655.RULE index 54fbd3f8955..6868b1eaa9e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_655.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_655.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under GNU General Public Licence 2.0. No warrantee. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_655.yml b/src/licensedcode/data/rules/gpl-2.0_655.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_655.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_656.RULE b/src/licensedcode/data/rules/gpl-2.0_656.RULE index 882a1d9c9d6..89976649bfe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_656.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_656.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under GNU General Public Licence 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_656.yml b/src/licensedcode/data/rules/gpl-2.0_656.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_656.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_657.RULE b/src/licensedcode/data/rules/gpl-2.0_657.RULE index a6597818801..623a1caeb4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_657.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_657.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + # Licensed under GNU General Public Licence 2.0. No warrantee. -# *** USE AT YOUR OWN RISK *** +# *** USE AT YOUR OWN RISK *** \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_657.yml b/src/licensedcode/data/rules/gpl-2.0_657.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_657.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_658.RULE b/src/licensedcode/data/rules/gpl-2.0_658.RULE index 008c2fa9359..937c6c7bd82 100644 --- a/src/licensedcode/data/rules/gpl-2.0_658.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_658.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + GPL LICENSE SUMMARY @@ -17,5 +25,4 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA The full GNU General Public License is included in this distribution -in the file called COPYING. - +in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_658.yml b/src/licensedcode/data/rules/gpl-2.0_658.yml deleted file mode 100644 index 3eb8859d784..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_658.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_659.RULE b/src/licensedcode/data/rules/gpl-2.0_659.RULE index a43ee28a338..d2786ba65fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_659.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_659.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2.0 of the GNU General Public License @@ -5,4 +11,4 @@ * * This program is distributed in the hope that it would be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_659.yml b/src/licensedcode/data/rules/gpl-2.0_659.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_659.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_66.RULE b/src/licensedcode/data/rules/gpl-2.0_66.RULE index 5828f68a9e6..5a477c4d0ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_66.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_66.RULE @@ -1 +1,6 @@ -The package scripts are licensed under GPL v2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +--- + +The package scripts are licensed under GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_66.yml b/src/licensedcode/data/rules/gpl-2.0_66.yml deleted file mode 100644 index a01d13cd289..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_66.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_660.RULE b/src/licensedcode/data/rules/gpl-2.0_660.RULE index 5fc4ad7c41e..68d3ba73c86 100644 --- a/src/licensedcode/data/rules/gpl-2.0_660.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_660.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + The GNU General Public License, Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_660.yml b/src/licensedcode/data/rules/gpl-2.0_660.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_660.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_661.RULE b/src/licensedcode/data/rules/gpl-2.0_661.RULE index 8c938f6efc1..75168da3622 100644 --- a/src/licensedcode/data/rules/gpl-2.0_661.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_661.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GPLv2 licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_661.yml b/src/licensedcode/data/rules/gpl-2.0_661.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_661.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_662.RULE b/src/licensedcode/data/rules/gpl-2.0_662.RULE index 02b3c31b322..0e1dff6d275 100644 --- a/src/licensedcode/data/rules/gpl-2.0_662.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_662.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Use and redistribute under the terms of the GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_662.yml b/src/licensedcode/data/rules/gpl-2.0_662.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_662.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_663.RULE b/src/licensedcode/data/rules/gpl-2.0_663.RULE index 1cf15947d30..390a5ef05cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_663.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_663.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + redistribute under the terms of the GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_663.yml b/src/licensedcode/data/rules/gpl-2.0_663.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_663.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_664.RULE b/src/licensedcode/data/rules/gpl-2.0_664.RULE index d3bcd6e4380..5be606eab37 100644 --- a/src/licensedcode/data/rules/gpl-2.0_664.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_664.RULE @@ -1 +1,9 @@ - license 'GPL-2.0', 'http://www.gnu.org/licenses/gpl-2.0-standalone.html' +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0-standalone.html +--- + + license 'GPL-2.0', 'http://www.gnu.org/licenses/gpl-2.0-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_664.yml b/src/licensedcode/data/rules/gpl-2.0_664.yml deleted file mode 100644 index f472e2f1e2c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_664.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-2.0_665.RULE b/src/licensedcode/data/rules/gpl-2.0_665.RULE index 98e2f9bc8df..c722482d8b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_665.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_665.RULE @@ -1 +1,9 @@ -http://www.gnu.org/licenses/gpl-2.0-standalone.html' +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0-standalone.html +--- + +http://www.gnu.org/licenses/gpl-2.0-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_665.yml b/src/licensedcode/data/rules/gpl-2.0_665.yml deleted file mode 100644 index f472e2f1e2c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_665.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-2.0_666.RULE b/src/licensedcode/data/rules/gpl-2.0_666.RULE index cc39a2beb05..6604a820ba1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_666.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_666.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL v2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_666.yml b/src/licensedcode/data/rules/gpl-2.0_666.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_666.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_667.RULE b/src/licensedcode/data/rules/gpl-2.0_667.RULE index 8d6c4769cb3..3c9a1443de0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_667.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_667.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + #### License diff --git a/src/licensedcode/data/rules/gpl-2.0_667.yml b/src/licensedcode/data/rules/gpl-2.0_667.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_667.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_668.RULE b/src/licensedcode/data/rules/gpl-2.0_668.RULE index b1224b31623..90e1482c2f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_668.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_668.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + program is GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_668.yml b/src/licensedcode/data/rules/gpl-2.0_668.yml deleted file mode 100644 index bb66a2a67d0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_668.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_669.RULE b/src/licensedcode/data/rules/gpl-2.0_669.RULE index 509c698553e..702c16a20a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_669.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_669.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GPL-v2 licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_669.yml b/src/licensedcode/data/rules/gpl-2.0_669.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_669.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_67.RULE b/src/licensedcode/data/rules/gpl-2.0_67.RULE index 681ff178cbc..58eb809f748 100644 --- a/src/licensedcode/data/rules/gpl-2.0_67.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_67.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_67.yml b/src/licensedcode/data/rules/gpl-2.0_67.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_67.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_670.RULE b/src/licensedcode/data/rules/gpl-2.0_670.RULE index 2df100fe1aa..28db0780518 100644 --- a/src/licensedcode/data/rules/gpl-2.0_670.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_670.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + All examples are GPL-v2 licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_670.yml b/src/licensedcode/data/rules/gpl-2.0_670.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_670.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_671.RULE b/src/licensedcode/data/rules/gpl-2.0_671.RULE index 0d23d9d9d07..2d525dd9ea1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_671.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_671.RULE @@ -1 +1,7 @@ - licensed under the the GNU General Public License version 2 , which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat -familiar with it by now.) +familiar with it by now.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_73.yml b/src/licensedcode/data/rules/gpl-2.0_73.yml deleted file mode 100644 index c6de65a46e7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_73.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_730.RULE b/src/licensedcode/data/rules/gpl-2.0_730.RULE index 80812ffa3ca..47442e144cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_730.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_730.RULE @@ -1 +1,11 @@ -Copyright: GNU General Public License, Version 2. \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - Copyright GNU General +ignorable_holders: + - GNU General +--- + +Copyright: GNU General Public License, Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_730.yml b/src/licensedcode/data/rules/gpl-2.0_730.yml deleted file mode 100644 index 05a1be8a741..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_730.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - Copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_731.RULE b/src/licensedcode/data/rules/gpl-2.0_731.RULE index dbf55098836..a46f3998e46 100644 --- a/src/licensedcode/data/rules/gpl-2.0_731.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_731.RULE @@ -1 +1,7 @@ -Copyright: GNU GENERAL PUBLIC LICENSE (GPL) Version 2. \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +Copyright: GNU GENERAL PUBLIC LICENSE (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_731.yml b/src/licensedcode/data/rules/gpl-2.0_731.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_731.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_732.RULE b/src/licensedcode/data/rules/gpl-2.0_732.RULE index 66034656e23..2dce1dab7a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_732.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_732.RULE @@ -1 +1,7 @@ -Copyright: GNU GENERAL PUBLIC LICENCE (GPL) Version 2. \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +Copyright: GNU GENERAL PUBLIC LICENCE (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_732.yml b/src/licensedcode/data/rules/gpl-2.0_732.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_732.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_733.RULE b/src/licensedcode/data/rules/gpl-2.0_733.RULE index 34540dc010a..a4f7b551ba1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_733.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_733.RULE @@ -1 +1,11 @@ -@copyright GNU General Public License version. 2 (GPLv2) \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +--- + +@copyright GNU General Public License version. 2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_733.yml b/src/licensedcode/data/rules/gpl-2.0_733.yml deleted file mode 100644 index df094e1a9d5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_733.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_734.RULE b/src/licensedcode/data/rules/gpl-2.0_734.RULE index 059f77f2fff..5d44a0de76d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_734.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_734.RULE @@ -1 +1,11 @@ -@copyright GNU General Public Licence version. 2 (GPLv2) \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +--- + +@copyright GNU General Public Licence version. 2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_734.yml b/src/licensedcode/data/rules/gpl-2.0_734.yml deleted file mode 100644 index df094e1a9d5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_734.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_735.RULE b/src/licensedcode/data/rules/gpl-2.0_735.RULE index d37abf21705..7964c8a9715 100644 --- a/src/licensedcode/data/rules/gpl-2.0_735.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_735.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - COPYRIGHT GNU General +ignorable_holders: + - GNU General +--- + COPYRIGHT GNU General Public License v. 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_735.yml b/src/licensedcode/data/rules/gpl-2.0_735.yml deleted file mode 100644 index 48ea9ea89d2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_735.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - COPYRIGHT GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_736.RULE b/src/licensedcode/data/rules/gpl-2.0_736.RULE index 88cc48f63f0..ae01e0ae1b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_736.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_736.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - COPYRIGHT GNU General +ignorable_holders: + - GNU General +--- + COPYRIGHT GNU General Public Licence v. 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_736.yml b/src/licensedcode/data/rules/gpl-2.0_736.yml deleted file mode 100644 index 48ea9ea89d2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_736.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - COPYRIGHT GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_737.RULE b/src/licensedcode/data/rules/gpl-2.0_737.RULE index 8ac3ef9b075..3db6197d6c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_737.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_737.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + Copyright: NO COPYRIGHT (GNU General Public License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_737.yml b/src/licensedcode/data/rules/gpl-2.0_737.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_737.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_738.RULE b/src/licensedcode/data/rules/gpl-2.0_738.RULE index 8845dff8417..af1dd7a4979 100644 --- a/src/licensedcode/data/rules/gpl-2.0_738.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_738.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + Copyright: NO COPYRIGHT (GNU General Public Licence) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_738.yml b/src/licensedcode/data/rules/gpl-2.0_738.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_738.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_739.RULE b/src/licensedcode/data/rules/gpl-2.0_739.RULE index 709e2f1201c..eba830b1c8e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_739.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_739.RULE @@ -1 +1,11 @@ -Released under copyright GNU General Public License Version 2. \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +--- + +Released under copyright GNU General Public License Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_739.yml b/src/licensedcode/data/rules/gpl-2.0_739.yml deleted file mode 100644 index df094e1a9d5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_739.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_74.RULE b/src/licensedcode/data/rules/gpl-2.0_74.RULE index c84306e0442..bb91af706f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_74.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_74.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +notes: busybox uses the GPL 2.0 only +--- + If you distribute GPL-licensed software the license requires that you also distribute the source code to that GPL-licensed software. If you distribute BusyBox without making the source code to the version you distribute available, diff --git a/src/licensedcode/data/rules/gpl-2.0_74.yml b/src/licensedcode/data/rules/gpl-2.0_74.yml deleted file mode 100644 index a2eb1217484..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: busybox uses the GPL 2.0 only diff --git a/src/licensedcode/data/rules/gpl-2.0_740.RULE b/src/licensedcode/data/rules/gpl-2.0_740.RULE index b0c8b8ecee3..98cb55d45c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_740.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_740.RULE @@ -1 +1,11 @@ -Released under copyright GNU General Public Licence Version 2. \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +--- + +Released under copyright GNU General Public Licence Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_740.yml b/src/licensedcode/data/rules/gpl-2.0_740.yml deleted file mode 100644 index df094e1a9d5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_740.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_741.RULE b/src/licensedcode/data/rules/gpl-2.0_741.RULE index 3ccb888e0cf..ea45f7e903d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_741.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_741.RULE @@ -1 +1,13 @@ - @copyright GNU General Public License * @license http://www.gnu.org/licenses/gpl.html \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + + @copyright GNU General Public License * @license http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_741.yml b/src/licensedcode/data/rules/gpl-2.0_741.yml deleted file mode 100644 index 65a4587b709..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_741.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_742.RULE b/src/licensedcode/data/rules/gpl-2.0_742.RULE index fe1f010830e..2e94020af69 100644 --- a/src/licensedcode/data/rules/gpl-2.0_742.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_742.RULE @@ -1 +1,13 @@ - @copyright GNU General Public Licence * @license http://www.gnu.org/licenses/gpl.html \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + + @copyright GNU General Public Licence * @license http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_742.yml b/src/licensedcode/data/rules/gpl-2.0_742.yml deleted file mode 100644 index 65a4587b709..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_742.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_743.RULE b/src/licensedcode/data/rules/gpl-2.0_743.RULE index 3aa0109412e..ea6a041004e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_743.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_743.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - Copyright GNU General +ignorable_holders: + - GNU General +--- + Licence and Copyright GNU General Public License Version 2, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_743.yml b/src/licensedcode/data/rules/gpl-2.0_743.yml deleted file mode 100644 index 05a1be8a741..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_743.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - Copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_744.RULE b/src/licensedcode/data/rules/gpl-2.0_744.RULE index 8864ecfa9b2..ffae8aa19b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_744.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_744.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - Copyright GNU General +ignorable_holders: + - GNU General +--- + Licence and Copyright GNU General Public Licence Version 2, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_744.yml b/src/licensedcode/data/rules/gpl-2.0_744.yml deleted file mode 100644 index 05a1be8a741..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_744.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - Copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_745.RULE b/src/licensedcode/data/rules/gpl-2.0_745.RULE index c065daac7a0..64b4e4ed43c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_745.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_745.RULE @@ -1 +1,11 @@ -Legal Copyright : GNU General Public License v2 \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - Copyright GNU General +ignorable_holders: + - GNU General +--- + +Legal Copyright : GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_745.yml b/src/licensedcode/data/rules/gpl-2.0_745.yml deleted file mode 100644 index 05a1be8a741..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_745.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - Copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_746.RULE b/src/licensedcode/data/rules/gpl-2.0_746.RULE index 9881b32dffe..b3f3adb6876 100644 --- a/src/licensedcode/data/rules/gpl-2.0_746.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_746.RULE @@ -1 +1,11 @@ -Legal Copyright : GNU General Public Licence v2 \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - Copyright GNU General +ignorable_holders: + - GNU General +--- + +Legal Copyright : GNU General Public Licence v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_746.yml b/src/licensedcode/data/rules/gpl-2.0_746.yml deleted file mode 100644 index 05a1be8a741..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_746.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - Copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_747.RULE b/src/licensedcode/data/rules/gpl-2.0_747.RULE index 48a32b27ce6..47fcc45b7cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_747.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_747.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + copyright" -> "GNU General Public License version 2 or later" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_747.yml b/src/licensedcode/data/rules/gpl-2.0_747.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_747.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_748.RULE b/src/licensedcode/data/rules/gpl-2.0_748.RULE index 5223ab9b44d..91a7b599432 100644 --- a/src/licensedcode/data/rules/gpl-2.0_748.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_748.RULE @@ -1 +1,7 @@ -GNU General Public License v2 or later +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +GNU General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_748.yml b/src/licensedcode/data/rules/gpl-2.0_748.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_748.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_749.RULE b/src/licensedcode/data/rules/gpl-2.0_749.RULE index eaf950589cb..b766471d2c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_749.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_749.RULE @@ -1 +1,9 @@ -Copyright GNU GENERAL PUBLIC LICENSE Version 2, June 1991 (see. "COPYING" +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +Copyright GNU GENERAL PUBLIC LICENSE Version 2, June 1991 (see. "COPYING" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_749.yml b/src/licensedcode/data/rules/gpl-2.0_749.yml deleted file mode 100644 index 64ba16e388c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_749.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_75.RULE b/src/licensedcode/data/rules/gpl-2.0_75.RULE index a606e9cac5b..50e7c84b4a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_75.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_75.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +notes: text is damaged by conversions +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_75.yml b/src/licensedcode/data/rules/gpl-2.0_75.yml deleted file mode 100644 index c35953fafb8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_75.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -notes: text is damaged by conversions -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_750.RULE b/src/licensedcode/data/rules/gpl-2.0_750.RULE index 8a137c9fce3..e6086181e74 100644 --- a/src/licensedcode/data/rules/gpl-2.0_750.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_750.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + copyright" -> "GNU General Public Licence version 2 or later" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_750.yml b/src/licensedcode/data/rules/gpl-2.0_750.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_750.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_751.RULE b/src/licensedcode/data/rules/gpl-2.0_751.RULE index 415620ed2e7..fdb706ede2a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_751.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_751.RULE @@ -1 +1,7 @@ -GNU General Public Licence v2 or later +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +GNU General Public Licence v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_751.yml b/src/licensedcode/data/rules/gpl-2.0_751.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_751.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_752.RULE b/src/licensedcode/data/rules/gpl-2.0_752.RULE index ca33ac3a128..87f66b1ad76 100644 --- a/src/licensedcode/data/rules/gpl-2.0_752.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_752.RULE @@ -1 +1,9 @@ -Copyright GNU GENERAL PUBLIC LICENCE Version 2, June 1991 (see. "COPYING" +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +Copyright GNU GENERAL PUBLIC LICENCE Version 2, June 1991 (see. "COPYING" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_752.yml b/src/licensedcode/data/rules/gpl-2.0_752.yml deleted file mode 100644 index 64ba16e388c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_752.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_753.RULE b/src/licensedcode/data/rules/gpl-2.0_753.RULE index ed776150364..6ba2c287eb9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_753.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_753.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-2 On Debian systems the full text of the GNU GPL v2 can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_753.yml b/src/licensedcode/data/rules/gpl-2.0_753.yml deleted file mode 100644 index e18a5fef53a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_753.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_754.RULE b/src/licensedcode/data/rules/gpl-2.0_754.RULE index 14d0bee1d50..9fac617fdab 100644 --- a/src/licensedcode/data/rules/gpl-2.0_754.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_754.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems the full text of the GNU GPL v2 can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_754.yml b/src/licensedcode/data/rules/gpl-2.0_754.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_754.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_755.RULE b/src/licensedcode/data/rules/gpl-2.0_755.RULE index 62f3cccbcf3..eba8cd5e5e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_755.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_755.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence v.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_755.yml b/src/licensedcode/data/rules/gpl-2.0_755.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_755.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_756.RULE b/src/licensedcode/data/rules/gpl-2.0_756.RULE index 7126f1e0982..14bb6d12aac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_756.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_756.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_756.yml b/src/licensedcode/data/rules/gpl-2.0_756.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_756.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_757.RULE b/src/licensedcode/data/rules/gpl-2.0_757.RULE index 73160cbb645..1d54c5e6215 100644 --- a/src/licensedcode/data/rules/gpl-2.0_757.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_757.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, V2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_757.yml b/src/licensedcode/data/rules/gpl-2.0_757.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_757.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_758.RULE b/src/licensedcode/data/rules/gpl-2.0_758.RULE index 3d30832b143..3596eaa46d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_758.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_758.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + 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 @@ -8,4 +14,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 General Public License along with ; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_758.yml b/src/licensedcode/data/rules/gpl-2.0_758.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_758.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_759.RULE b/src/licensedcode/data/rules/gpl-2.0_759.RULE index 89abfd72fc1..dd645e6735f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_759.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_759.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + LicenseText "GNU GENERAL PUBLIC LICENCE, v2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_759.yml b/src/licensedcode/data/rules/gpl-2.0_759.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_759.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_76.RULE b/src/licensedcode/data/rules/gpl-2.0_76.RULE index 2ab2f0fb85e..fd359b0d439 100644 --- a/src/licensedcode/data/rules/gpl-2.0_76.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_76.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPLv2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_76.yml b/src/licensedcode/data/rules/gpl-2.0_76.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_760.RULE b/src/licensedcode/data/rules/gpl-2.0_760.RULE index c124a39855a..54e2e262cb8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_760.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_760.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + license LicenseText "GNU GENERAL PUBLIC LICENCE, v2" - LicenseData COPYING + LicenseData COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_760.yml b/src/licensedcode/data/rules/gpl-2.0_760.yml deleted file mode 100644 index 674e1e609c1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_760.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_761.RULE b/src/licensedcode/data/rules/gpl-2.0_761.RULE index da4cd1bfed4..49c9a6c4610 100644 --- a/src/licensedcode/data/rules/gpl-2.0_761.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_761.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + LicenseText "GNU GENERAL PUBLIC LICENCE, v2" - LicenseData COPYING + LicenseData COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_761.yml b/src/licensedcode/data/rules/gpl-2.0_761.yml deleted file mode 100644 index 674e1e609c1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_761.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_762.RULE b/src/licensedcode/data/rules/gpl-2.0_762.RULE index f541017d383..b974e0b04ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_762.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_762.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + LicenseText "GNU GENERAL PUBLIC LICENSE, v2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_762.yml b/src/licensedcode/data/rules/gpl-2.0_762.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_762.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_763.RULE b/src/licensedcode/data/rules/gpl-2.0_763.RULE index 0c45e5ee4bb..f69656a1678 100644 --- a/src/licensedcode/data/rules/gpl-2.0_763.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_763.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + license LicenseText "GNU GENERAL PUBLIC LICENSE, v2" - LicenseData COPYING + LicenseData COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_763.yml b/src/licensedcode/data/rules/gpl-2.0_763.yml deleted file mode 100644 index 674e1e609c1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_763.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_764.RULE b/src/licensedcode/data/rules/gpl-2.0_764.RULE index 5552339702b..7bb83d79e04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_764.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_764.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + LicenseText "GNU GENERAL PUBLIC LICENSE, v2" - LicenseData COPYING + LicenseData COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_764.yml b/src/licensedcode/data/rules/gpl-2.0_764.yml deleted file mode 100644 index 674e1e609c1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_764.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_765.RULE b/src/licensedcode/data/rules/gpl-2.0_765.RULE index 7dec57d4478..bca70c93859 100644 --- a/src/licensedcode/data/rules/gpl-2.0_765.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_765.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence, V2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_765.yml b/src/licensedcode/data/rules/gpl-2.0_765.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_765.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_766.RULE b/src/licensedcode/data/rules/gpl-2.0_766.RULE index 21a1851a9e1..76088a6a428 100644 --- a/src/licensedcode/data/rules/gpl-2.0_766.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_766.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + LegalCopyright", "GNU General Public Licence, V2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_766.yml b/src/licensedcode/data/rules/gpl-2.0_766.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_766.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_767.RULE b/src/licensedcode/data/rules/gpl-2.0_767.RULE index 0d3c0938739..ac5c6d7a603 100644 --- a/src/licensedcode/data/rules/gpl-2.0_767.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_767.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License, V2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_767.yml b/src/licensedcode/data/rules/gpl-2.0_767.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_767.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_768.RULE b/src/licensedcode/data/rules/gpl-2.0_768.RULE index 6198e57112c..bd11a3a88c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_768.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_768.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + LegalCopyright", "GNU General Public License, V2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_768.yml b/src/licensedcode/data/rules/gpl-2.0_768.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_768.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_769.RULE b/src/licensedcode/data/rules/gpl-2.0_769.RULE index 062d9fd66aa..9555c2dacfb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_769.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_769.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_769.yml b/src/licensedcode/data/rules/gpl-2.0_769.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_769.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_77.RULE b/src/licensedcode/data/rules/gpl-2.0_77.RULE index faf8db7980e..c6846d3dca7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_77.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + be distributed under GPLv2, not under other versions of the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_77.yml b/src/licensedcode/data/rules/gpl-2.0_77.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_770.RULE b/src/licensedcode/data/rules/gpl-2.0_770.RULE index 2e0e4505714..3a434fe6858 100644 --- a/src/licensedcode/data/rules/gpl-2.0_770.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_770.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/gpl-faq.html + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + license BusyBox is licensed under the GNU General Public License, version 2 @@ -22,4 +33,4 @@ distribute the source code to that GPL-licensed software. If you distribute BusyBox without making the source code to the version you distribute available, you violate the license terms, and thus infringe on the copyrights of BusyBox. This requirement applies whether or not you modified BusyBox; either way the -license terms still apply to you. \ No newline at end of file +license terms still apply to you. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_770.yml b/src/licensedcode/data/rules/gpl-2.0_770.yml deleted file mode 100644 index eaeb8c1ac67..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_770.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/gpl-faq.html - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_771.RULE b/src/licensedcode/data/rules/gpl-2.0_771.RULE index df3d28d7c60..0ab69441b91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_771.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_771.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + # This software is licensed to you under the GNU General Public License, # version 2 (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS diff --git a/src/licensedcode/data/rules/gpl-2.0_771.yml b/src/licensedcode/data/rules/gpl-2.0_771.yml deleted file mode 100644 index 6eb97edc4e0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_771.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_772.RULE b/src/licensedcode/data/rules/gpl-2.0_772.RULE index 017b6f064d9..fb4f09d1694 100644 --- a/src/licensedcode/data/rules/gpl-2.0_772.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_772.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU General Public License, version 2. On Debian systems, the complete text of the GNU General Public License can be found in the file diff --git a/src/licensedcode/data/rules/gpl-2.0_772.yml b/src/licensedcode/data/rules/gpl-2.0_772.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_772.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_773.RULE b/src/licensedcode/data/rules/gpl-2.0_773.RULE index e8aa5566945..906a963b390 100644 --- a/src/licensedcode/data/rules/gpl-2.0_773.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_773.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + licensed under the GPL v2 http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_773.yml b/src/licensedcode/data/rules/gpl-2.0_773.yml deleted file mode 100644 index dd792fa1b37..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_773.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_774.RULE b/src/licensedcode/data/rules/gpl-2.0_774.RULE index 8b597126e87..41592d1a774 100644 --- a/src/licensedcode/data/rules/gpl-2.0_774.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_774.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is a 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 FSF - Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_774.yml b/src/licensedcode/data/rules/gpl-2.0_774.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_774.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_775.RULE b/src/licensedcode/data/rules/gpl-2.0_775.RULE index 820d1563f8f..cace8f90705 100644 --- a/src/licensedcode/data/rules/gpl-2.0_775.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_775.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as - published by the FSF - Free Software Foundation. + published by the FSF - Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_775.yml b/src/licensedcode/data/rules/gpl-2.0_775.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_775.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_776.RULE b/src/licensedcode/data/rules/gpl-2.0_776.RULE index fbd186256ee..f0099db55b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_776.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_776.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License -Released under GPL version 2 \ No newline at end of file +Released under GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_776.yml b/src/licensedcode/data/rules/gpl-2.0_776.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_776.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_777.RULE b/src/licensedcode/data/rules/gpl-2.0_777.RULE index 03ba6f0a83a..dff8fa28913 100644 --- a/src/licensedcode/data/rules/gpl-2.0_777.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_777.RULE @@ -1 +1,7 @@ -Released under GPL version 2 \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Released under GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_777.yml b/src/licensedcode/data/rules/gpl-2.0_777.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_777.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_778.RULE b/src/licensedcode/data/rules/gpl-2.0_778.RULE index a0aa9a34d7c..6644787d9e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_778.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_778.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Licensed under the GPL license: http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_778.yml b/src/licensedcode/data/rules/gpl-2.0_778.yml deleted file mode 100644 index 1de092a0b20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_778.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_779.RULE b/src/licensedcode/data/rules/gpl-2.0_779.RULE index 69fec972f11..77c6746fc60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_779.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_779.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed GPLv2 */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_779.yml b/src/licensedcode/data/rules/gpl-2.0_779.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_779.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_78.RULE b/src/licensedcode/data/rules/gpl-2.0_78.RULE index 036b20977c8..2c5fac3e52e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_78.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_78.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + http://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_78.yml b/src/licensedcode/data/rules/gpl-2.0_78.yml deleted file mode 100644 index 118c7ed1cc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_780.RULE b/src/licensedcode/data/rules/gpl-2.0_780.RULE index 98fbb278525..224516d31ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_780.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_780.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + License URI: http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_780.yml b/src/licensedcode/data/rules/gpl-2.0_780.yml deleted file mode 100644 index e5c9296b534..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_780.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_781.RULE b/src/licensedcode/data/rules/gpl-2.0_781.RULE index 1ca4fba22ff..8057cc8ffe8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_781.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_781.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + License URI: https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_781.yml b/src/licensedcode/data/rules/gpl-2.0_781.yml deleted file mode 100644 index 2a1d4dccbf1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_781.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_782.RULE b/src/licensedcode/data/rules/gpl-2.0_782.RULE index 9b7f00b2a6a..206772baec7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_782.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_782.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPL +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_782.yml b/src/licensedcode/data/rules/gpl-2.0_782.yml deleted file mode 100644 index b445f8b97bc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_782.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_783.RULE b/src/licensedcode/data/rules/gpl-2.0_783.RULE index abf7406296c..7e105c40648 100644 --- a/src/licensedcode/data/rules/gpl-2.0_783.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_783.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + available under the terms of the GNU General Public License, Version 2. Please check the LICENSE file for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_783.yml b/src/licensedcode/data/rules/gpl-2.0_783.yml deleted file mode 100644 index 0e2a887bae9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_783.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_784.RULE b/src/licensedcode/data/rules/gpl-2.0_784.RULE index 3c7476d991c..560c7fa82be 100644 --- a/src/licensedcode/data/rules/gpl-2.0_784.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_784.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License This project is released under "GNU General Public License v2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_784.yml b/src/licensedcode/data/rules/gpl-2.0_784.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_784.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_785.RULE b/src/licensedcode/data/rules/gpl-2.0_785.RULE index 326fe352d26..f504fc41e60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_785.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_785.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This project is released under "GNU General Public License v2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_785.yml b/src/licensedcode/data/rules/gpl-2.0_785.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_785.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_786.RULE b/src/licensedcode/data/rules/gpl-2.0_786.RULE index b2fc579a26d..f9f46b56b16 100644 --- a/src/licensedcode/data/rules/gpl-2.0_786.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_786.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + released under "GNU General Public License v2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_786.yml b/src/licensedcode/data/rules/gpl-2.0_786.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_786.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_787.RULE b/src/licensedcode/data/rules/gpl-2.0_787.RULE index 6f8f0a2b3f3..60b2c281675 100644 --- a/src/licensedcode/data/rules/gpl-2.0_787.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_787.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md +--- + ## License This project is released under "[GNU General Public License v2.0](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_787.yml b/src/licensedcode/data/rules/gpl-2.0_787.yml deleted file mode 100644 index 19d3842ff54..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_787.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/gpl-2.0_788.RULE b/src/licensedcode/data/rules/gpl-2.0_788.RULE index 58d254eee8b..52752ae4bff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_788.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_788.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md +--- + This project is released under "[GNU General Public License v2.0](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_788.yml b/src/licensedcode/data/rules/gpl-2.0_788.yml deleted file mode 100644 index 19d3842ff54..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_788.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/gpl-2.0_789.RULE b/src/licensedcode/data/rules/gpl-2.0_789.RULE index 5b486f9e740..147187d0c7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_789.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_789.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md +--- + released under "[GNU General Public License v2.0](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_789.yml b/src/licensedcode/data/rules/gpl-2.0_789.yml deleted file mode 100644 index 19d3842ff54..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_789.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/gpl-2.0_79.RULE b/src/licensedcode/data/rules/gpl-2.0_79.RULE index 0c625466147..77edb8f43a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_79.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_79.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: GPL 2.0 debian version +--- + This work is licensed under the terms of the GNU GPL, version 2. See * the COPYING file in the top-level directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_79.yml b/src/licensedcode/data/rules/gpl-2.0_79.yml deleted file mode 100644 index 93666fe1e1e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -notes: GPL 2.0 debian version diff --git a/src/licensedcode/data/rules/gpl-2.0_790.RULE b/src/licensedcode/data/rules/gpl-2.0_790.RULE index cd3cde8f3ba..640ac947ae6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_790.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_790.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is a free software; you can redistribute it and/or modify it under the terms of GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_790.yml b/src/licensedcode/data/rules/gpl-2.0_790.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_790.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_791.RULE b/src/licensedcode/data/rules/gpl-2.0_791.RULE index 17f5ed4a356..dd159867ab6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_791.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_791.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + open source (GNU/GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_791.yml b/src/licensedcode/data/rules/gpl-2.0_791.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_791.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_792.RULE b/src/licensedcode/data/rules/gpl-2.0_792.RULE index b5fb568175e..c3f4aa9dcf0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_792.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_792.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 95 +notes: This is a truncated GPL license text as seen in wordpress. +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_792.yml b/src/licensedcode/data/rules/gpl-2.0_792.yml deleted file mode 100644 index 4df069cfd7e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_792.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 95 -notes: This is a truncated GPL license text as seen in wordpress. -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_793.RULE b/src/licensedcode/data/rules/gpl-2.0_793.RULE index 61d01373f74..68e90cbe222 100644 --- a/src/licensedcode/data/rules/gpl-2.0_793.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_793.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU-GPLv2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_793.yml b/src/licensedcode/data/rules/gpl-2.0_793.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_793.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_794.RULE b/src/licensedcode/data/rules/gpl-2.0_794.RULE index 464d540a4d1..33ff83672f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_794.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_794.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_794.yml b/src/licensedcode/data/rules/gpl-2.0_794.yml deleted file mode 100644 index dd792fa1b37..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_794.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_795.RULE b/src/licensedcode/data/rules/gpl-2.0_795.RULE index d201cbc26d8..312a7597268 100644 --- a/src/licensedcode/data/rules/gpl-2.0_795.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_795.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_795.yml b/src/licensedcode/data/rules/gpl-2.0_795.yml deleted file mode 100644 index dd792fa1b37..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_795.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_796.RULE b/src/licensedcode/data/rules/gpl-2.0_796.RULE index cffac9c19dc..36423525fce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_796.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_796.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_796.yml b/src/licensedcode/data/rules/gpl-2.0_796.yml deleted file mode 100644 index 3366b1f8fbf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_796.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_797.RULE b/src/licensedcode/data/rules/gpl-2.0_797.RULE index e53e12b64f2..b0567cd893b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_797.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_797.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU-GPLv2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_797.yml b/src/licensedcode/data/rules/gpl-2.0_797.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_797.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_798.RULE b/src/licensedcode/data/rules/gpl-2.0_798.RULE index 2911ed70d53..9d580f02ecb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_798.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_798.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_798.yml b/src/licensedcode/data/rules/gpl-2.0_798.yml deleted file mode 100644 index a6210ab1886..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_798.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0_799.RULE b/src/licensedcode/data/rules/gpl-2.0_799.RULE index 293830faeb6..6104c3eaffb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_799.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_799.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.cs.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.cs.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_799.yml b/src/licensedcode/data/rules/gpl-2.0_799.yml deleted file mode 100644 index 5fae46a17a9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_799.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.cs.html diff --git a/src/licensedcode/data/rules/gpl-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0_8.RULE index 1f4fbe8b402..bf9038074f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_8.RULE @@ -1,3 +1,8 @@ +--- +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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0_8.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_80.RULE b/src/licensedcode/data/rules/gpl-2.0_80.RULE index 00709042f79..8dcc5b78bda 100644 --- a/src/licensedcode/data/rules/gpl-2.0_80.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_80.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/ +--- + All source code in this file is licensed under the following license except where indicated. @@ -11,4 +18,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 General Public License -along with this program; if not, you can find it at http://www.fsf.org +along with this program; if not, you can find it at http://www.fsf.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_80.yml b/src/licensedcode/data/rules/gpl-2.0_80.yml deleted file mode 100644 index 07cdb14bbe7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_80.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_800.RULE b/src/licensedcode/data/rules/gpl-2.0_800.RULE index 9cbd1c5fdb5..d53990d977b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_800.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_800.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.de.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_800.yml b/src/licensedcode/data/rules/gpl-2.0_800.yml deleted file mode 100644 index b985104daa9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_800.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.de.html diff --git a/src/licensedcode/data/rules/gpl-2.0_801.RULE b/src/licensedcode/data/rules/gpl-2.0_801.RULE index e197542c61c..3af0a1c4be7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_801.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_801.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.fr.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_801.yml b/src/licensedcode/data/rules/gpl-2.0_801.yml deleted file mode 100644 index 873d21e6358..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_801.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.fr.html diff --git a/src/licensedcode/data/rules/gpl-2.0_802.RULE b/src/licensedcode/data/rules/gpl-2.0_802.RULE index 599540d35aa..76363be0f54 100644 --- a/src/licensedcode/data/rules/gpl-2.0_802.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_802.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.ja.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_802.yml b/src/licensedcode/data/rules/gpl-2.0_802.yml deleted file mode 100644 index 715e57bb8e5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_802.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.ja.html diff --git a/src/licensedcode/data/rules/gpl-2.0_803.RULE b/src/licensedcode/data/rules/gpl-2.0_803.RULE index 1a4b7b8b6a1..14e3b58e5ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_803.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_803.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.pt-br.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_803.yml b/src/licensedcode/data/rules/gpl-2.0_803.yml deleted file mode 100644 index 0b044b2b6ef..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_803.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.pt-br.html diff --git a/src/licensedcode/data/rules/gpl-2.0_804.RULE b/src/licensedcode/data/rules/gpl-2.0_804.RULE index 3672414e153..cb0675e3e0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_804.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_804.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.ru.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_804.yml b/src/licensedcode/data/rules/gpl-2.0_804.yml deleted file mode 100644 index 81b17698c31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_804.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.ru.html diff --git a/src/licensedcode/data/rules/gpl-2.0_805.RULE b/src/licensedcode/data/rules/gpl-2.0_805.RULE index 45f865673e7..82f6a6f6939 100644 --- a/src/licensedcode/data/rules/gpl-2.0_805.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_805.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.uk.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_805.yml b/src/licensedcode/data/rules/gpl-2.0_805.yml deleted file mode 100644 index e1fabc8aa27..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_805.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.uk.html diff --git a/src/licensedcode/data/rules/gpl-2.0_806.RULE b/src/licensedcode/data/rules/gpl-2.0_806.RULE index 6bba8bb7df6..459d02d8e0b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_806.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_806.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.en.html +--- + https://www.gnu.org/licenses/gpl-2.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_806.yml b/src/licensedcode/data/rules/gpl-2.0_806.yml deleted file mode 100644 index 3c1fc9186db..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_806.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0_807.RULE b/src/licensedcode/data/rules/gpl-2.0_807.RULE index 06818b68834..581845e8bf0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_807.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_807.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.cs.html +--- + https://www.gnu.org/licenses/gpl-2.0.cs.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_807.yml b/src/licensedcode/data/rules/gpl-2.0_807.yml deleted file mode 100644 index ddc1f2c60cc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_807.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.cs.html diff --git a/src/licensedcode/data/rules/gpl-2.0_808.RULE b/src/licensedcode/data/rules/gpl-2.0_808.RULE index b356d3e7b56..19bc21f6081 100644 --- a/src/licensedcode/data/rules/gpl-2.0_808.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_808.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.de.html +--- + https://www.gnu.org/licenses/gpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_808.yml b/src/licensedcode/data/rules/gpl-2.0_808.yml deleted file mode 100644 index 7c414b5d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_808.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.de.html diff --git a/src/licensedcode/data/rules/gpl-2.0_809.RULE b/src/licensedcode/data/rules/gpl-2.0_809.RULE index 5dc670b1fd1..19c0b9639ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_809.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_809.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.fr.html +--- + https://www.gnu.org/licenses/gpl-2.0.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_809.yml b/src/licensedcode/data/rules/gpl-2.0_809.yml deleted file mode 100644 index 436e5242c8f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_809.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.fr.html diff --git a/src/licensedcode/data/rules/gpl-2.0_81.RULE b/src/licensedcode/data/rules/gpl-2.0_81.RULE index 9767bd1fe3b..8e28c32273e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_81.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_81.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + This file is part of the Linux kernel, and is made available under -the terms of the GNU General Public License version 2 incorporated herein by reference. +the terms of the GNU General Public License version 2 incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_81.yml b/src/licensedcode/data/rules/gpl-2.0_81.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_81.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_810.RULE b/src/licensedcode/data/rules/gpl-2.0_810.RULE index 328ef4ee5d7..31f4d7a4307 100644 --- a/src/licensedcode/data/rules/gpl-2.0_810.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_810.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.ja.html +--- + https://www.gnu.org/licenses/gpl-2.0.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_810.yml b/src/licensedcode/data/rules/gpl-2.0_810.yml deleted file mode 100644 index 85f647c7b31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_810.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.ja.html diff --git a/src/licensedcode/data/rules/gpl-2.0_811.RULE b/src/licensedcode/data/rules/gpl-2.0_811.RULE index 5e99374e972..5dfab4efafb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_811.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_811.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.pt-br.html +--- + https://www.gnu.org/licenses/gpl-2.0.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_811.yml b/src/licensedcode/data/rules/gpl-2.0_811.yml deleted file mode 100644 index d3426fe24c3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_811.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.pt-br.html diff --git a/src/licensedcode/data/rules/gpl-2.0_812.RULE b/src/licensedcode/data/rules/gpl-2.0_812.RULE index ed31a79a934..ef794455d80 100644 --- a/src/licensedcode/data/rules/gpl-2.0_812.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_812.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.ru.html +--- + https://www.gnu.org/licenses/gpl-2.0.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_812.yml b/src/licensedcode/data/rules/gpl-2.0_812.yml deleted file mode 100644 index 23fd4b95e63..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_812.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.ru.html diff --git a/src/licensedcode/data/rules/gpl-2.0_813.RULE b/src/licensedcode/data/rules/gpl-2.0_813.RULE index 4dcf8a4414c..0286f3621d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_813.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_813.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.uk.html +--- + https://www.gnu.org/licenses/gpl-2.0.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_813.yml b/src/licensedcode/data/rules/gpl-2.0_813.yml deleted file mode 100644 index 97a471e2612..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_813.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.uk.html diff --git a/src/licensedcode/data/rules/gpl-2.0_814.RULE b/src/licensedcode/data/rules/gpl-2.0_814.RULE index 081ffc6289e..a0625478a9e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_814.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_814.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of GPLV2 License. You are free to use 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/gpl-2.0_814.yml b/src/licensedcode/data/rules/gpl-2.0_814.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_814.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_815.RULE b/src/licensedcode/data/rules/gpl-2.0_815.RULE index 510362bb8ba..9bc94fd74f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_815.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_815.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ +--- + GNU General Public License 2 (GPLv2) link: http://creativecommons.org/licenses/GPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_815.yml b/src/licensedcode/data/rules/gpl-2.0_815.yml deleted file mode 100644 index 53ddc72dc06..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_815.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ diff --git a/src/licensedcode/data/rules/gpl-2.0_816.RULE b/src/licensedcode/data/rules/gpl-2.0_816.RULE index 66ff02a46c6..c510ab55471 100644 --- a/src/licensedcode/data/rules/gpl-2.0_816.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_816.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ +--- + license: GPLv2 license link: http://creativecommons.org/licenses/GPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_816.yml b/src/licensedcode/data/rules/gpl-2.0_816.yml deleted file mode 100644 index 53ddc72dc06..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_816.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ diff --git a/src/licensedcode/data/rules/gpl-2.0_817.RULE b/src/licensedcode/data/rules/gpl-2.0_817.RULE index 2a8e3b2fc5b..d46a6c7e679 100644 --- a/src/licensedcode/data/rules/gpl-2.0_817.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_817.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ +--- + license: GPL License link: http://creativecommons.org/licenses/GPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_817.yml b/src/licensedcode/data/rules/gpl-2.0_817.yml deleted file mode 100644 index 53ddc72dc06..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_817.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ diff --git a/src/licensedcode/data/rules/gpl-2.0_818.RULE b/src/licensedcode/data/rules/gpl-2.0_818.RULE index a20b3dbc135..698f70d3c66 100644 --- a/src/licensedcode/data/rules/gpl-2.0_818.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_818.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPLv2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_818.yml b/src/licensedcode/data/rules/gpl-2.0_818.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_818.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_819.RULE b/src/licensedcode/data/rules/gpl-2.0_819.RULE index be2db23eaa7..c420e0d901c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_819.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_819.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /licenses/gpl-2.0.txt +--- + /licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_819.yml b/src/licensedcode/data/rules/gpl-2.0_819.yml deleted file mode 100644 index 107e4ff461d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_819.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_82.RULE b/src/licensedcode/data/rules/gpl-2.0_82.RULE index c8ecbcff1d9..1ec46aeefdb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_82.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_82.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The following file is licenced under the GPLv2. @@ -12,5 +18,4 @@ 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - +Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_82.yml b/src/licensedcode/data/rules/gpl-2.0_82.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_820.RULE b/src/licensedcode/data/rules/gpl-2.0_820.RULE index 4ec6a8b9cfb..f5e0222632c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_820.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_820.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + The complete text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_820.yml b/src/licensedcode/data/rules/gpl-2.0_820.yml deleted file mode 100644 index e18a5fef53a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_820.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_821.RULE b/src/licensedcode/data/rules/gpl-2.0_821.RULE index 14efaf84326..9fdbceefdc9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_821.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_821.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + license = 'GNU GPLv2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_821.yml b/src/licensedcode/data/rules/gpl-2.0_821.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_821.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_822.RULE b/src/licensedcode/data/rules/gpl-2.0_822.RULE index 4985a169502..86582830831 100644 --- a/src/licensedcode/data/rules/gpl-2.0_822.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_822.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_822.yml b/src/licensedcode/data/rules/gpl-2.0_822.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_822.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_823.RULE b/src/licensedcode/data/rules/gpl-2.0_823.RULE index d2c57ea4b8d..382a49c2375 100644 --- a/src/licensedcode/data/rules/gpl-2.0_823.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_823.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License: GPL2/GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_823.yml b/src/licensedcode/data/rules/gpl-2.0_823.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_823.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_824.RULE b/src/licensedcode/data/rules/gpl-2.0_824.RULE index ecb82cf44ba..63ebbae1ac2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_824.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_824.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + GPL2/GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_824.yml b/src/licensedcode/data/rules/gpl-2.0_824.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_824.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_825.RULE b/src/licensedcode/data/rules/gpl-2.0_825.RULE index 088e7126d0f..e574e1aee3c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_825.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_825.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GPL2 # Distributed under the terms of the GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_825.yml b/src/licensedcode/data/rules/gpl-2.0_825.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_825.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_826.RULE b/src/licensedcode/data/rules/gpl-2.0_826.RULE index fd918ed9a66..4edb905b0eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_826.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_826.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + # Distributed under the terms of the GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_826.yml b/src/licensedcode/data/rules/gpl-2.0_826.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_826.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_827.RULE b/src/licensedcode/data/rules/gpl-2.0_827.RULE index e415a5d3cc2..e1afcb00a58 100644 --- a/src/licensedcode/data/rules/gpl-2.0_827.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_827.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + which is licensed GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_827.yml b/src/licensedcode/data/rules/gpl-2.0_827.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_827.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_828.RULE b/src/licensedcode/data/rules/gpl-2.0_828.RULE index fe2894515d9..57209740c75 100644 --- a/src/licensedcode/data/rules/gpl-2.0_828.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_828.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + On Debian systems a full copy of the GNU General Public License, GPL, can be found in the file /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_828.yml b/src/licensedcode/data/rules/gpl-2.0_828.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_828.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_829.RULE b/src/licensedcode/data/rules/gpl-2.0_829.RULE index a9779aa2830..0341c2b0983 100644 --- a/src/licensedcode/data/rules/gpl-2.0_829.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_829.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Released under the GPLv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_829.yml b/src/licensedcode/data/rules/gpl-2.0_829.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_829.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_82_1.RULE b/src/licensedcode/data/rules/gpl-2.0_82_1.RULE index 2a4e9e4947f..0a3fc538894 100644 --- a/src/licensedcode/data/rules/gpl-2.0_82_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_82_1.RULE @@ -1 +1,7 @@ -The following file is licenced under the GPLv2. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +The following file is licenced under the GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_82_1.yml b/src/licensedcode/data/rules/gpl-2.0_82_1.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_82_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_83.RULE b/src/licensedcode/data/rules/gpl-2.0_83.RULE index 4dfccc6746e..e0ca36e192f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_83.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_83.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 100 +notes: Lizartech gpl notice, rather complex +--- + Released (via statement in email) under the GNU GPL v2. Copyright: @@ -17,5 +24,4 @@ Copyright: On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in -`/usr/share/common-licenses/GPL-2'. - +`/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_83.yml b/src/licensedcode/data/rules/gpl-2.0_83.yml deleted file mode 100644 index 65ec4c96312..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_83.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 100 -notes: Lizartech gpl notice, rather complex diff --git a/src/licensedcode/data/rules/gpl-2.0_830.RULE b/src/licensedcode/data/rules/gpl-2.0_830.RULE index 0b04d60c3e7..1af3f42e725 100644 --- a/src/licensedcode/data/rules/gpl-2.0_830.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_830.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + # This software is licensed to you under the GNU General Public License, # version 2 (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A diff --git a/src/licensedcode/data/rules/gpl-2.0_830.yml b/src/licensedcode/data/rules/gpl-2.0_830.yml deleted file mode 100644 index 1de092a0b20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_830.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_831.RULE b/src/licensedcode/data/rules/gpl-2.0_831.RULE index 672b4324646..572820cfd84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_831.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_831.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + # This software is licensed to you under the GNU General Public License, # version 2 (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A diff --git a/src/licensedcode/data/rules/gpl-2.0_831.yml b/src/licensedcode/data/rules/gpl-2.0_831.yml deleted file mode 100644 index 9a230aca9e1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_831.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_832.RULE b/src/licensedcode/data/rules/gpl-2.0_832.RULE index 2b01a72b672..941b68d6b84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_832.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_832.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under GNU GPL v2 license. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_832.yml b/src/licensedcode/data/rules/gpl-2.0_832.yml deleted file mode 100644 index 0e2a887bae9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_832.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_833.RULE b/src/licensedcode/data/rules/gpl-2.0_833.RULE index ed927500db8..412a217bd45 100644 --- a/src/licensedcode/data/rules/gpl-2.0_833.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_833.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under GNU GPL v2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_833.yml b/src/licensedcode/data/rules/gpl-2.0_833.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_833.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_834.RULE b/src/licensedcode/data/rules/gpl-2.0_834.RULE index ade0921c5c6..7ce42c79e33 100644 --- a/src/licensedcode/data/rules/gpl-2.0_834.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_834.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Some components (as annotated in the source) are licensed under Version 2 of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_834.yml b/src/licensedcode/data/rules/gpl-2.0_834.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_834.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_835.RULE b/src/licensedcode/data/rules/gpl-2.0_835.RULE index dade247c939..31f151fb2bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_835.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_835.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under Version 2 of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_835.yml b/src/licensedcode/data/rules/gpl-2.0_835.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_835.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_836.RULE b/src/licensedcode/data/rules/gpl-2.0_836.RULE index 524efeba5a8..20ac3d48c72 100644 --- a/src/licensedcode/data/rules/gpl-2.0_836.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_836.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Version 2 of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_836.yml b/src/licensedcode/data/rules/gpl-2.0_836.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_836.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_837.RULE b/src/licensedcode/data/rules/gpl-2.0_837.RULE index 68d340b3632..28e4d9e829e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_837.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_837.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + use GPL version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_837.yml b/src/licensedcode/data/rules/gpl-2.0_837.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_837.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_838.RULE b/src/licensedcode/data/rules/gpl-2.0_838.RULE index c81cafe5fae..58adbf1f302 100644 --- a/src/licensedcode/data/rules/gpl-2.0_838.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_838.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + marked as "GPL-2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_838.yml b/src/licensedcode/data/rules/gpl-2.0_838.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_838.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_839.RULE b/src/licensedcode/data/rules/gpl-2.0_839.RULE index 0a7c2580227..34a908d7938 100644 --- a/src/licensedcode/data/rules/gpl-2.0_839.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_839.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + releasing libraries under GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_839.yml b/src/licensedcode/data/rules/gpl-2.0_839.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_839.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_84.RULE b/src/licensedcode/data/rules/gpl-2.0_84.RULE index 2f364c383cd..eae4413dcca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_84.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_84.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION @@ -32,4 +37,4 @@ you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: +above, provided that you also meet all of these conditions: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_84.yml b/src/licensedcode/data/rules/gpl-2.0_84.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_84.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_840.RULE b/src/licensedcode/data/rules/gpl-2.0_840.RULE index 67c8330bfe7..7b1055bcd00 100644 --- a/src/licensedcode/data/rules/gpl-2.0_840.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_840.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + under GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_840.yml b/src/licensedcode/data/rules/gpl-2.0_840.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_840.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_841.RULE b/src/licensedcode/data/rules/gpl-2.0_841.RULE index 08de935b74d..8c4dfe61260 100644 --- a/src/licensedcode/data/rules/gpl-2.0_841.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_841.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + GNU General Public License Version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0_841.yml b/src/licensedcode/data/rules/gpl-2.0_841.yml deleted file mode 100644 index e73a26106f8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_841.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_842.RULE b/src/licensedcode/data/rules/gpl-2.0_842.RULE index 3d5a96b27c8..a0e6345583a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_842.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_842.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + # Licensed under GPL version 2; See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_842.yml b/src/licensedcode/data/rules/gpl-2.0_842.yml deleted file mode 100644 index 0e2a887bae9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_842.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_843.RULE b/src/licensedcode/data/rules/gpl-2.0_843.RULE index 6341d4a97c7..475bfb6c364 100644 --- a/src/licensedcode/data/rules/gpl-2.0_843.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_843.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_843.yml b/src/licensedcode/data/rules/gpl-2.0_843.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_843.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_844.RULE b/src/licensedcode/data/rules/gpl-2.0_844.RULE index 0d39bd19fc4..73321d0a757 100644 --- a/src/licensedcode/data/rules/gpl-2.0_844.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_844.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the GPL v.2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_844.yml b/src/licensedcode/data/rules/gpl-2.0_844.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_844.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_845.RULE b/src/licensedcode/data/rules/gpl-2.0_845.RULE index adbe5fc2265..33d600317d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_845.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_845.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the GPL v.2. This program is provided with NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_845.yml b/src/licensedcode/data/rules/gpl-2.0_845.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_845.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_846.RULE b/src/licensedcode/data/rules/gpl-2.0_846.RULE index 4a13d3cdd95..544ad947b93 100644 --- a/src/licensedcode/data/rules/gpl-2.0_846.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_846.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Open Source software. You can redistribute and/or modify it under the terms of the GNU Public License, version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_846.yml b/src/licensedcode/data/rules/gpl-2.0_846.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_846.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_847.RULE b/src/licensedcode/data/rules/gpl-2.0_847.RULE index f959e5b6fa4..7589fc943a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_847.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_847.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + You can redistribute and/or modify it under the terms of the GNU Public License, version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_847.yml b/src/licensedcode/data/rules/gpl-2.0_847.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_847.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_848.RULE b/src/licensedcode/data/rules/gpl-2.0_848.RULE index f9daee3a217..eb7e4299f13 100644 --- a/src/licensedcode/data/rules/gpl-2.0_848.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_848.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + You can redistribute and/or modify it under the terms of the GNU Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_848.yml b/src/licensedcode/data/rules/gpl-2.0_848.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_848.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_849.RULE b/src/licensedcode/data/rules/gpl-2.0_849.RULE index affacb88106..023ea148f55 100644 --- a/src/licensedcode/data/rules/gpl-2.0_849.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_849.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This is free software, licensed under the GNU General Public License v2. See /LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_849.yml b/src/licensedcode/data/rules/gpl-2.0_849.yml deleted file mode 100644 index 0e2a887bae9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_849.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_85.RULE b/src/licensedcode/data/rules/gpl-2.0_85.RULE index c791e56a293..c76b4106472 100644 --- a/src/licensedcode/data/rules/gpl-2.0_85.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_85.RULE @@ -1,6 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING + - README +--- + * 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. * * - * See README and COPYING for more details. + * See README and COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_85.yml b/src/licensedcode/data/rules/gpl-2.0_85.yml deleted file mode 100644 index 0c7dc811802..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_85.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING - - README diff --git a/src/licensedcode/data/rules/gpl-2.0_850.RULE b/src/licensedcode/data/rules/gpl-2.0_850.RULE index 3665291635d..44449cdf133 100644 --- a/src/licensedcode/data/rules/gpl-2.0_850.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_850.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Published under the GNU General Public License V.2, see file COPYING * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_850.yml b/src/licensedcode/data/rules/gpl-2.0_850.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_850.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_851.RULE b/src/licensedcode/data/rules/gpl-2.0_851.RULE index 541136eea3a..eba19d81a62 100644 --- a/src/licensedcode/data/rules/gpl-2.0_851.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_851.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Published under the GNU General Public License V.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_851.yml b/src/licensedcode/data/rules/gpl-2.0_851.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_851.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_852.RULE b/src/licensedcode/data/rules/gpl-2.0_852.RULE index 0baa55e471f..bdc2a4e69d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_852.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_852.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license socat is distributed under the terms of the GNU GPLv2; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_852.yml b/src/licensedcode/data/rules/gpl-2.0_852.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_852.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_853.RULE b/src/licensedcode/data/rules/gpl-2.0_853.RULE index 7ddface9833..4840c1cf82c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_853.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_853.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the GNU GPLv2; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_853.yml b/src/licensedcode/data/rules/gpl-2.0_853.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_853.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_854.RULE b/src/licensedcode/data/rules/gpl-2.0_854.RULE index 426cd330e82..0bc72746550 100644 --- a/src/licensedcode/data/rules/gpl-2.0_854.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_854.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_854.yml b/src/licensedcode/data/rules/gpl-2.0_854.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_854.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_855.RULE b/src/licensedcode/data/rules/gpl-2.0_855.RULE index 2c60b04fd27..261d7e243a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_855.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_855.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_855.yml b/src/licensedcode/data/rules/gpl-2.0_855.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_855.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_856.RULE b/src/licensedcode/data/rules/gpl-2.0_856.RULE index 820ccd8df0f..ca4ca916643 100644 --- a/src/licensedcode/data/rules/gpl-2.0_856.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_856.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_856.yml b/src/licensedcode/data/rules/gpl-2.0_856.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_856.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_857.RULE b/src/licensedcode/data/rules/gpl-2.0_857.RULE index 6b0c8ab392b..f66ecb85679 100644 --- a/src/licensedcode/data/rules/gpl-2.0_857.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_857.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 80 +ignorable_emails: + - gpl@busybox.net +--- + gpl@busybox.net \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_857.yml b/src/licensedcode/data/rules/gpl-2.0_857.yml deleted file mode 100644 index a9af3d00041..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_857.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 80 -ignorable_emails: - - gpl@busybox.net diff --git a/src/licensedcode/data/rules/gpl-2.0_858.RULE b/src/licensedcode/data/rules/gpl-2.0_858.RULE index b9282b425eb..98f178c2cba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_858.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_858.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 80 +--- + comply with the terms of the license BusyBox is distributed under \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_858.yml b/src/licensedcode/data/rules/gpl-2.0_858.yml deleted file mode 100644 index ce1c9d42179..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_858.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_859.RULE b/src/licensedcode/data/rules/gpl-2.0_859.RULE index 5dc0573d154..37867ed6dbe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_859.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_859.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: there are some uncommon entire program references +--- + This software may be used and distributed according to the terms of the GNU General Public License (GPL) version 2, incorporated herein by reference. Drivers based on or derived from this code fall under the GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_859.yml b/src/licensedcode/data/rules/gpl-2.0_859.yml deleted file mode 100644 index 1d343855c38..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_859.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: there are some uncommon entire program references diff --git a/src/licensedcode/data/rules/gpl-2.0_86.RULE b/src/licensedcode/data/rules/gpl-2.0_86.RULE index cd27a70b5dc..27aeb2fa70b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_86.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_86.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + are made available under the GNU Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_86.yml b/src/licensedcode/data/rules/gpl-2.0_86.yml deleted file mode 100644 index 06fa784548b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_86.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_860.RULE b/src/licensedcode/data/rules/gpl-2.0_860.RULE index 33bf874b5dd..deaa56415cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_860.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_860.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0_860.yml b/src/licensedcode/data/rules/gpl-2.0_860.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_860.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_861.RULE b/src/licensedcode/data/rules/gpl-2.0_861.RULE index e4d6301d8c0..705a6183f98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_861.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_861.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0_861.yml b/src/licensedcode/data/rules/gpl-2.0_861.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_861.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_862.RULE b/src/licensedcode/data/rules/gpl-2.0_862.RULE index 558fa9c4f71..64b7557f010 100644 --- a/src/licensedcode/data/rules/gpl-2.0_862.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_862.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + See file CREDITS for list of people who contributed to this project. diff --git a/src/licensedcode/data/rules/gpl-2.0_862.yml b/src/licensedcode/data/rules/gpl-2.0_862.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_862.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_863.RULE b/src/licensedcode/data/rules/gpl-2.0_863.RULE index d5a501031f6..f40df323e34 100644 --- a/src/licensedcode/data/rules/gpl-2.0_863.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_863.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The Driver for Linux 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 @@ -22,4 +28,4 @@ MAKES NO WARRANTIES, EXPRESS OR IMPLIED, RELATED TO THIS DRIVER. OF MERCHANTABILITY; FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. DOES NOT PROVIDE SUPPORT SERVICES OR UPDATES FOR THIS DRIVER, EVEN IF YOU ARE A -SUPPORT CUSTOMER. +SUPPORT CUSTOMER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_863.yml b/src/licensedcode/data/rules/gpl-2.0_863.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_863.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_864.RULE b/src/licensedcode/data/rules/gpl-2.0_864.RULE index bbfa4ce9888..00babc5cebd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_864.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_864.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is licensed under GPL v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_864.yml b/src/licensedcode/data/rules/gpl-2.0_864.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_864.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_865.RULE b/src/licensedcode/data/rules/gpl-2.0_865.RULE index e21544e270f..0a694481a7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_865.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_865.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL-2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_865.yml b/src/licensedcode/data/rules/gpl-2.0_865.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_865.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_866.RULE b/src/licensedcode/data/rules/gpl-2.0_866.RULE index 9763d7e0339..57b9be34c4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_866.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_866.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL v.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_866.yml b/src/licensedcode/data/rules/gpl-2.0_866.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_866.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_867.RULE b/src/licensedcode/data/rules/gpl-2.0_867.RULE index 2b0f2acdd7a..2bbd12a5642 100644 --- a/src/licensedcode/data/rules/gpl-2.0_867.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_867.RULE @@ -1 +1,7 @@ - * This code is distributed under the terms of GNU GPL v2 +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + * This code is distributed under the terms of GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_867.yml b/src/licensedcode/data/rules/gpl-2.0_867.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_867.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_868.RULE b/src/licensedcode/data/rules/gpl-2.0_868.RULE index 0371c9209de..5e8105cd77d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_868.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_868.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The following libraries are under GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_868.yml b/src/licensedcode/data/rules/gpl-2.0_868.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_868.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_869.RULE b/src/licensedcode/data/rules/gpl-2.0_869.RULE index e53a9aaf6d7..47691914dc0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_869.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_869.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + libraries are under GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_869.yml b/src/licensedcode/data/rules/gpl-2.0_869.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_869.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_87.RULE b/src/licensedcode/data/rules/gpl-2.0_87.RULE index 6f16f154f94..4c552e0ecea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_87.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_87.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + # your license # is as provided by the GNU General Public License version 2, a copy # of which is available in this project in the file named "LICENSE." diff --git a/src/licensedcode/data/rules/gpl-2.0_87.yml b/src/licensedcode/data/rules/gpl-2.0_87.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_87.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_870.RULE b/src/licensedcode/data/rules/gpl-2.0_870.RULE index bdcbb825426..dfe1a087ca5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_870.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_870.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + When combining them with FFmpeg, FFmpeg needs to be licensed as GPL as well by passing `--enable-gpl` to configure. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_870.yml b/src/licensedcode/data/rules/gpl-2.0_870.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_870.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_871.RULE b/src/licensedcode/data/rules/gpl-2.0_871.RULE index f943123ff62..3244743889f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_871.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_871.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 99 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_871.yml b/src/licensedcode/data/rules/gpl-2.0_871.yml deleted file mode 100644 index 73b11ed86a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_871.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 99 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_872.RULE b/src/licensedcode/data/rules/gpl-2.0_872.RULE index 22fbe5dbacb..6e586945bd0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_872.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_872.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc., + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - http://fsf.org/ +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_872.yml b/src/licensedcode/data/rules/gpl-2.0_872.yml deleted file mode 100644 index 76faa486817..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_872.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc., - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_873.RULE b/src/licensedcode/data/rules/gpl-2.0_873.RULE index 1f5746f7b1f..3a91fb8c25e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_873.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_873.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-1.0 +--- + `GPL-1.0` - [GNU General Public License](https://www.gnu.org/licenses/gpl-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_873.yml b/src/licensedcode/data/rules/gpl-2.0_873.yml deleted file mode 100644 index 067be5d0e2c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_873.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-1.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_874.RULE b/src/licensedcode/data/rules/gpl-2.0_874.RULE index cd6b4c5a644..bc61e5f4dda 100644 --- a/src/licensedcode/data/rules/gpl-2.0_874.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_874.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html +--- + `GPL-2.0` - [GNU General Public License 2.0](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_874.yml b/src/licensedcode/data/rules/gpl-2.0_874.yml deleted file mode 100644 index a6210ab1886..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_874.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0_875.RULE b/src/licensedcode/data/rules/gpl-2.0_875.RULE index 9384801ffc3..8c946aeee7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_875.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_875.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ +--- + licensed under a Creative Commons GNU General Public License.

\ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_875.yml b/src/licensedcode/data/rules/gpl-2.0_875.yml deleted file mode 100644 index 9f22eddd453..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_875.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ diff --git a/src/licensedcode/data/rules/gpl-2.0_876.RULE b/src/licensedcode/data/rules/gpl-2.0_876.RULE index 1d6b8e2929c..06eccdb0ea0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_876.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_876.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0 + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + licensed under a Creative Commons GNU General Public License -Please see the full text of the GNU General Public License +Please see the full text of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_876.yml b/src/licensedcode/data/rules/gpl-2.0_876.yml deleted file mode 100644 index 0b165c7f158..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_876.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0 - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_877.RULE b/src/licensedcode/data/rules/gpl-2.0_877.RULE index 877f15720bd..d6748eadb0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_877.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_877.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Creative Commons GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_877.yml b/src/licensedcode/data/rules/gpl-2.0_877.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_877.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_878.RULE b/src/licensedcode/data/rules/gpl-2.0_878.RULE index 1e0daefba22..e9f16175a91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_878.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_878.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + CC GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_878.yml b/src/licensedcode/data/rules/gpl-2.0_878.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_878.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_879.RULE b/src/licensedcode/data/rules/gpl-2.0_879.RULE index 134a5da77f3..b0f0121b818 100644 --- a/src/licensedcode/data/rules/gpl-2.0_879.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_879.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the Creative Commons GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_879.yml b/src/licensedcode/data/rules/gpl-2.0_879.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_879.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_88.RULE b/src/licensedcode/data/rules/gpl-2.0_88.RULE index 9e418e1ca29..d11ea78ac58 100644 --- a/src/licensedcode/data/rules/gpl-2.0_88.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_88.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License, Version 2, June 1991 (GPLv2) > Copyright (C) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_88.yml b/src/licensedcode/data/rules/gpl-2.0_88.yml deleted file mode 100644 index 21970449a66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_88.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_880.RULE b/src/licensedcode/data/rules/gpl-2.0_880.RULE index 9a3cda00f17..ea606489027 100644 --- a/src/licensedcode/data/rules/gpl-2.0_880.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_880.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License GNU General Public License v2.0 only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_880.yml b/src/licensedcode/data/rules/gpl-2.0_880.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_880.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_881.RULE b/src/licensedcode/data/rules/gpl-2.0_881.RULE index 564c087950a..5cb18f517d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_881.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_881.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Legalese: This code is subject to the GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_881.yml b/src/licensedcode/data/rules/gpl-2.0_881.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_881.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_882.RULE b/src/licensedcode/data/rules/gpl-2.0_882.RULE index 7e35fa96c05..3ffa9d5b250 100644 --- a/src/licensedcode/data/rules/gpl-2.0_882.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_882.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + You may use it under the terms of the GNU General Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_882.yml b/src/licensedcode/data/rules/gpl-2.0_882.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_882.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_883.RULE b/src/licensedcode/data/rules/gpl-2.0_883.RULE index a90163c39c3..484af8c2b04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_883.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_883.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This code is subject to the GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_883.yml b/src/licensedcode/data/rules/gpl-2.0_883.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_883.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_884.RULE b/src/licensedcode/data/rules/gpl-2.0_884.RULE index c7f8b309228..475f7a4d776 100644 --- a/src/licensedcode/data/rules/gpl-2.0_884.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_884.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This code is subject to the GNU General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_884.yml b/src/licensedcode/data/rules/gpl-2.0_884.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_884.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_885.RULE b/src/licensedcode/data/rules/gpl-2.0_885.RULE index b8187e706a4..026c7ff47e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_885.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_885.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv2 +--- + See the file `COPYING.GPLv2` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_885.yml b/src/licensedcode/data/rules/gpl-2.0_885.yml deleted file mode 100644 index 916e5ce28ee..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_885.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv2 diff --git a/src/licensedcode/data/rules/gpl-2.0_886.RULE b/src/licensedcode/data/rules/gpl-2.0_886.RULE index 2a9aa0d86ea..70be104b20a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_886.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_886.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_886.yml b/src/licensedcode/data/rules/gpl-2.0_886.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_886.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_887.RULE b/src/licensedcode/data/rules/gpl-2.0_887.RULE index 49dff49a832..fe7a71473dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_887.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_887.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_887.yml b/src/licensedcode/data/rules/gpl-2.0_887.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_887.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_888.RULE b/src/licensedcode/data/rules/gpl-2.0_888.RULE index 09c35daf746..de34da3bc80 100644 --- a/src/licensedcode/data/rules/gpl-2.0_888.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_888.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of GNU GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_888.yml b/src/licensedcode/data/rules/gpl-2.0_888.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_888.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_889.RULE b/src/licensedcode/data/rules/gpl-2.0_889.RULE index 5ad98168b93..59d5a94d719 100644 --- a/src/licensedcode/data/rules/gpl-2.0_889.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_889.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + original code distributed under GPL V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_889.yml b/src/licensedcode/data/rules/gpl-2.0_889.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_889.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_89.RULE b/src/licensedcode/data/rules/gpl-2.0_89.RULE index 7aeb6244994..c2fee8c26c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_89.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_89.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2. diff --git a/src/licensedcode/data/rules/gpl-2.0_89.yml b/src/licensedcode/data/rules/gpl-2.0_89.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_89.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_890.RULE b/src/licensedcode/data/rules/gpl-2.0_890.RULE index 19980cc27c2..0082af903ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0_890.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_890.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + original code distributed under GPL V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_890.yml b/src/licensedcode/data/rules/gpl-2.0_890.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_890.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_891.RULE b/src/licensedcode/data/rules/gpl-2.0_891.RULE index e23bfd09a80..800146f5853 100644 --- a/src/licensedcode/data/rules/gpl-2.0_891.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_891.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 97 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.obj-sys.com/open/license.html +--- + * This software is furnished under an open source license and may be * used and copied only in accordance with the terms of this license. * The text of the license may generally be found in the root diff --git a/src/licensedcode/data/rules/gpl-2.0_891.yml b/src/licensedcode/data/rules/gpl-2.0_891.yml deleted file mode 100644 index 12ef5bea8af..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_891.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 97 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.obj-sys.com/open/license.html diff --git a/src/licensedcode/data/rules/gpl-2.0_892.RULE b/src/licensedcode/data/rules/gpl-2.0_892.RULE index 2708fe0865a..c96d7329405 100644 --- a/src/licensedcode/data/rules/gpl-2.0_892.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_892.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.obj-sys.com/open/license.html +--- + http://www.obj-sys.com/open/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_892.yml b/src/licensedcode/data/rules/gpl-2.0_892.yml deleted file mode 100644 index dd8e49eedd6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_892.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.obj-sys.com/open/license.html diff --git a/src/licensedcode/data/rules/gpl-2.0_893.RULE b/src/licensedcode/data/rules/gpl-2.0_893.RULE index 84145c44a57..5be81ec8b5d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_893.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_893.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + * 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_893.yml b/src/licensedcode/data/rules/gpl-2.0_893.yml deleted file mode 100644 index dd792fa1b37..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_893.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_894.RULE b/src/licensedcode/data/rules/gpl-2.0_894.RULE index c67f37780ae..82d246faabb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_894.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_894.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + * 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_894.yml b/src/licensedcode/data/rules/gpl-2.0_894.yml deleted file mode 100644 index de6b4f1d9b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_894.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_895.RULE b/src/licensedcode/data/rules/gpl-2.0_895.RULE index 65aa47c328a..c6f42ab12b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_895.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_895.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License, version 2 (GPL2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_895.yml b/src/licensedcode/data/rules/gpl-2.0_895.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_895.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_896.RULE b/src/licensedcode/data/rules/gpl-2.0_896.RULE index 9caea9544b1..22c16f96340 100644 --- a/src/licensedcode/data/rules/gpl-2.0_896.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_896.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + GNU General Public License Version 2.0, June 1991 The following applies to all products licensed under the GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_896.yml b/src/licensedcode/data/rules/gpl-2.0_896.yml deleted file mode 100644 index 98ce4765e64..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_896.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_897.RULE b/src/licensedcode/data/rules/gpl-2.0_897.RULE index b5087094c15..426f4c23c40 100644 --- a/src/licensedcode/data/rules/gpl-2.0_897.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_897.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +--- + The following applies to all products licensed under the GNU General Public License, Version 2.0: You may not use the identified files except in compliance with the GNU General Public License, Version diff --git a/src/licensedcode/data/rules/gpl-2.0_897.yml b/src/licensedcode/data/rules/gpl-2.0_897.yml deleted file mode 100644 index 98ce4765e64..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_897.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_898.RULE b/src/licensedcode/data/rules/gpl-2.0_898.RULE index e2861513c1c..293351f42c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_898.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_898.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + // 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_898.yml b/src/licensedcode/data/rules/gpl-2.0_898.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_898.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_899.RULE b/src/licensedcode/data/rules/gpl-2.0_899.RULE index 894f8e4a80d..12d0e39324e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_899.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_899.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License GPLv2: Free Software Foundation, Inc. This is free software: you are free to change and redistribute it under the terms of the license. Usage WITHOUT ANY WARRANTY. USE at your OWN RISK! \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_899.yml b/src/licensedcode/data/rules/gpl-2.0_899.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_899.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0_9.RULE index f98bc40ce32..51edcdb05bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_9.RULE @@ -1 +1,7 @@ -// Licenced under the GNU General Public Licence (GPL) version 2. +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +// Licenced under the GNU General Public Licence (GPL) version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0_9.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_90.RULE b/src/licensedcode/data/rules/gpl-2.0_90.RULE index 6100e246728..5632ec42711 100644 --- a/src/licensedcode/data/rules/gpl-2.0_90.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_90.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + For the avoidance of doubt, except that if any license choice other than GPL or LGPL is available it will apply instead, Sun elects to use only the General Public License version 2 (GPLv2) at this time diff --git a/src/licensedcode/data/rules/gpl-2.0_90.yml b/src/licensedcode/data/rules/gpl-2.0_90.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_90.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_900.RULE b/src/licensedcode/data/rules/gpl-2.0_900.RULE index 329667ac642..b5666a75de0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_900.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_900.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is free software. Distribution and modification under GPLv2 permitted. USAGE w/o ANY WARRANTY. USE IT AT YOUR OWN RISK! \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_900.yml b/src/licensedcode/data/rules/gpl-2.0_900.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_900.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_901.RULE b/src/licensedcode/data/rules/gpl-2.0_901.RULE index f98916d8f16..89eae09cca4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_901.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_901.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ../LICENSE +--- + License GPLv2, see ../LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_901.yml b/src/licensedcode/data/rules/gpl-2.0_901.yml deleted file mode 100644 index 48108a70a4a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_901.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ../LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_902.RULE b/src/licensedcode/data/rules/gpl-2.0_902.RULE index 1cb968e206f..f183a9859db 100644 --- a/src/licensedcode/data/rules/gpl-2.0_902.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_902.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license is GPLv2, see file LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_902.yml b/src/licensedcode/data/rules/gpl-2.0_902.yml deleted file mode 100644 index 0e2a887bae9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_902.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_903.RULE b/src/licensedcode/data/rules/gpl-2.0_903.RULE index 32a636ae571..004156e68bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_903.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_903.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + This program and the accompanying materials are made available under the terms of the GPLv2 a copy of which accompanies this distribution, and is available at: diff --git a/src/licensedcode/data/rules/gpl-2.0_903.yml b/src/licensedcode/data/rules/gpl-2.0_903.yml deleted file mode 100644 index dd792fa1b37..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_903.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_904.RULE b/src/licensedcode/data/rules/gpl-2.0_904.RULE index df95b3d9953..fc93a01a879 100644 --- a/src/licensedcode/data/rules/gpl-2.0_904.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_904.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + SDK licensed under GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_904.yml b/src/licensedcode/data/rules/gpl-2.0_904.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_904.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_905.RULE b/src/licensedcode/data/rules/gpl-2.0_905.RULE index b9544212958..c077422ecda 100644 --- a/src/licensedcode/data/rules/gpl-2.0_905.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_905.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Unless otherwise specified, all the theme files, scripts and images are licensed under GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_905.yml b/src/licensedcode/data/rules/gpl-2.0_905.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_905.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_906.RULE b/src/licensedcode/data/rules/gpl-2.0_906.RULE index e429780e2bd..caf2e3e3a1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_906.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_906.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License: GPL V2 - See file LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_906.yml b/src/licensedcode/data/rules/gpl-2.0_906.yml deleted file mode 100644 index 0e2a887bae9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_906.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_907.RULE b/src/licensedcode/data/rules/gpl-2.0_907.RULE index dbdf8d2252a..9b649fc7d64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_907.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_907.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + Licence: GPL V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_907.yml b/src/licensedcode/data/rules/gpl-2.0_907.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_907.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_908.RULE b/src/licensedcode/data/rules/gpl-2.0_908.RULE index 153f5d418da..6ae77072597 100644 --- a/src/licensedcode/data/rules/gpl-2.0_908.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_908.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Most parts are licensed under GPLv2, for more details check COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_908.yml b/src/licensedcode/data/rules/gpl-2.0_908.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_908.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_909.RULE b/src/licensedcode/data/rules/gpl-2.0_909.RULE index dbb113e0bf4..7c1785f0ec1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_909.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_909.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + The programs in this package are distributed under the terms of the GNU General Public License, version 2 as distributed by the Free Software Foundation. On Debian systems, a copy of this license may be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_909.yml b/src/licensedcode/data/rules/gpl-2.0_909.yml deleted file mode 100644 index d7c8534a868..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_909.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_91.RULE b/src/licensedcode/data/rules/gpl-2.0_91.RULE index a00ba8031d2..825dfd690d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_91.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_91.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 90 +notes: the bottom of the text is truncated +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_91.yml b/src/licensedcode/data/rules/gpl-2.0_91.yml deleted file mode 100644 index 09efc1e8f8c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_91.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 90 -notes: the bottom of the text is truncated -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_910.RULE b/src/licensedcode/data/rules/gpl-2.0_910.RULE index 89a841702fc..3402a3ed405 100644 --- a/src/licensedcode/data/rules/gpl-2.0_910.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_910.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://deb.li/DTLicense +--- + It is subject to the license terms # in the LICENSE file found in the top-level directory of this # distribution and at https://deb.li/DTLicense. No part of Distro Tracker, # including this file, may be copied, modified, diff --git a/src/licensedcode/data/rules/gpl-2.0_910.yml b/src/licensedcode/data/rules/gpl-2.0_910.yml deleted file mode 100644 index eec67a0758f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_910.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://deb.li/DTLicense diff --git a/src/licensedcode/data/rules/gpl-2.0_911.RULE b/src/licensedcode/data/rules/gpl-2.0_911.RULE index 835702cb306..d30d17e6341 100644 --- a/src/licensedcode/data/rules/gpl-2.0_911.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_911.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_911.yml b/src/licensedcode/data/rules/gpl-2.0_911.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_911.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_912.RULE b/src/licensedcode/data/rules/gpl-2.0_912.RULE index 26df7390ff3..b36868b32de 100644 --- a/src/licensedcode/data/rules/gpl-2.0_912.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_912.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License (GPL-2.0) Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_912.yml b/src/licensedcode/data/rules/gpl-2.0_912.yml deleted file mode 100644 index 21970449a66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_912.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_913.RULE b/src/licensedcode/data/rules/gpl-2.0_913.RULE index 64e6ef84a34..512739a65ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0_913.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_913.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +notes: https://github.com/WinMerge/freeimage/ +--- + GNU General Public License, version 2 (GPL-2.0) [OSI Approved License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_913.yml b/src/licensedcode/data/rules/gpl-2.0_913.yml deleted file mode 100644 index fd45c9a3024..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_913.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -notes: https://github.com/WinMerge/freeimage/ diff --git a/src/licensedcode/data/rules/gpl-2.0_914.RULE b/src/licensedcode/data/rules/gpl-2.0_914.RULE index 027231b0fbd..4e2c7ce585d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_914.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_914.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + The GNU General Public License (GPL-2.0) Version 2, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_914.yml b/src/licensedcode/data/rules/gpl-2.0_914.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_914.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_915.RULE b/src/licensedcode/data/rules/gpl-2.0_915.RULE index 114a71eeead..599a8934ac3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_915.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_915.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_915.yml b/src/licensedcode/data/rules/gpl-2.0_915.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_915.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_916.RULE b/src/licensedcode/data/rules/gpl-2.0_916.RULE index 9bd7163b888..d7e766dcd1b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_916.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_916.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * This program may be modified and distributed under the * terms of the GNU Public License V2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_916.yml b/src/licensedcode/data/rules/gpl-2.0_916.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_916.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_917.RULE b/src/licensedcode/data/rules/gpl-2.0_917.RULE index 093aba3e6a9..291fd168fbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_917.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_917.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the terms of the GNU General Public License version 2, which you may download from \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_917.yml b/src/licensedcode/data/rules/gpl-2.0_917.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_917.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_918.RULE b/src/licensedcode/data/rules/gpl-2.0_918.RULE index 3e08288d48e..ba38b541da4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_918.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_918.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + license http://www.gnu.org/copyleft/gpl.html GPL v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_918.yml b/src/licensedcode/data/rules/gpl-2.0_918.yml deleted file mode 100644 index 76fed231efb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_918.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_919.RULE b/src/licensedcode/data/rules/gpl-2.0_919.RULE index c58d12797d8..55499a5fc64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_919.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_919.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + Licensed under GPL v2.0 http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_919.yml b/src/licensedcode/data/rules/gpl-2.0_919.yml deleted file mode 100644 index a194f4e8028..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_919.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_92.RULE b/src/licensedcode/data/rules/gpl-2.0_92.RULE index 59a8d207eb7..bc33f52e7a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_92.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_92.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_92.yml b/src/licensedcode/data/rules/gpl-2.0_92.yml deleted file mode 100644 index d29d927d2a7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_92.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_920.RULE b/src/licensedcode/data/rules/gpl-2.0_920.RULE index 4a73f26c029..699a56a4df1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_920.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_920.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + license https://www.gnu.org/copyleft/gpl.html GPL v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_920.yml b/src/licensedcode/data/rules/gpl-2.0_920.yml deleted file mode 100644 index 04f8a3309ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_920.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_921.RULE b/src/licensedcode/data/rules/gpl-2.0_921.RULE index a7f32738efa..44f769b2150 100644 --- a/src/licensedcode/data/rules/gpl-2.0_921.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_921.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + Licensed under GPL v2.0 https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_921.yml b/src/licensedcode/data/rules/gpl-2.0_921.yml deleted file mode 100644 index 3b112f6e2b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_921.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_922.RULE b/src/licensedcode/data/rules/gpl-2.0_922.RULE index da19680e420..a87a68ec542 100644 --- a/src/licensedcode/data/rules/gpl-2.0_922.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_922.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + license http://www.gnu.org/copyleft/gpl.html GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_922.yml b/src/licensedcode/data/rules/gpl-2.0_922.yml deleted file mode 100644 index 76fed231efb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_922.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_923.RULE b/src/licensedcode/data/rules/gpl-2.0_923.RULE index fc996be7278..2f39307f32a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_923.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_923.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + Licensed under GPL v2 http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_923.yml b/src/licensedcode/data/rules/gpl-2.0_923.yml deleted file mode 100644 index a194f4e8028..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_923.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_924.RULE b/src/licensedcode/data/rules/gpl-2.0_924.RULE index 9f1a80ea25f..71110c98fd4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_924.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_924.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + license https://www.gnu.org/copyleft/gpl.html GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_924.yml b/src/licensedcode/data/rules/gpl-2.0_924.yml deleted file mode 100644 index 04f8a3309ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_924.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_925.RULE b/src/licensedcode/data/rules/gpl-2.0_925.RULE index 640dbaee657..c6b26d389ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_925.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_925.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + Licensed under GPL v2 https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_925.yml b/src/licensedcode/data/rules/gpl-2.0_925.yml deleted file mode 100644 index 3b112f6e2b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_925.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_926.RULE b/src/licensedcode/data/rules/gpl-2.0_926.RULE index 069e64d4635..917b2a6f66c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_926.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_926.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + program licensed under the GPL-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_926.yml b/src/licensedcode/data/rules/gpl-2.0_926.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_926.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_927.RULE b/src/licensedcode/data/rules/gpl-2.0_927.RULE index 7e2d019a2b5..94d89b64c32 100644 --- a/src/licensedcode/data/rules/gpl-2.0_927.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_927.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the GPL-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_927.yml b/src/licensedcode/data/rules/gpl-2.0_927.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_927.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_928.RULE b/src/licensedcode/data/rules/gpl-2.0_928.RULE index d58fc72ccff..f323e07e47c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_928.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_928.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_copyrights: + - copyright by their authors +ignorable_holders: + - their authors +--- + License The programs copyright by their authors and redistributable under the terms of the GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_928.yml b/src/licensedcode/data/rules/gpl-2.0_928.yml deleted file mode 100644 index 2a304c1186e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_928.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_copyrights: - - copyright by their authors -ignorable_holders: - - their authors diff --git a/src/licensedcode/data/rules/gpl-2.0_929.RULE b/src/licensedcode/data/rules/gpl-2.0_929.RULE index d41bb3eaae2..ffff4cd9f57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_929.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_929.RULE @@ -1 +1,7 @@ -distributed {{underthe terms of the GNU General Public License, version 2}}. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +distributed {{underthe terms of the GNU General Public License, version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_929.yml b/src/licensedcode/data/rules/gpl-2.0_929.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_929.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_93.RULE b/src/licensedcode/data/rules/gpl-2.0_93.RULE index c9b5eb3b5ca..cbbe06d5fe1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_93.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_93.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ +--- + Licensed under the Creative Commons GPL http://creativecommons.org/licenses/GPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_93.yml b/src/licensedcode/data/rules/gpl-2.0_93.yml deleted file mode 100644 index 9f22eddd453..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ diff --git a/src/licensedcode/data/rules/gpl-2.0_930.RULE b/src/licensedcode/data/rules/gpl-2.0_930.RULE index 61fb24867b3..086afe2e9a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_930.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_930.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + distributed {{under the terms of the GNU General Public License, version 2}}. @@ -7,4 +17,4 @@ Public License can be found in `/usr/share/common-licenses/GPL-2 }}'. A copy of the {{GNU General Public License is also available}} at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301, USA. + St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_930.yml b/src/licensedcode/data/rules/gpl-2.0_930.yml deleted file mode 100644 index 7eee70cb8f4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_930.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_931.RULE b/src/licensedcode/data/rules/gpl-2.0_931.RULE index 4126cbdd87f..0e63aecf4d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_931.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_931.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is distributed under the terms of GNU GPL v2, 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_931.yml b/src/licensedcode/data/rules/gpl-2.0_931.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_931.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_932.RULE b/src/licensedcode/data/rules/gpl-2.0_932.RULE index a3d21d8162e..7e2d8fc9170 100644 --- a/src/licensedcode/data/rules/gpl-2.0_932.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_932.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is distributed under the terms of GNU GPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_932.yml b/src/licensedcode/data/rules/gpl-2.0_932.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_932.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_933.RULE b/src/licensedcode/data/rules/gpl-2.0_933.RULE index 5e6f63d73f3..569242d89d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_933.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_933.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This code is distributed under the terms of GNU GPL v2, 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_933.yml b/src/licensedcode/data/rules/gpl-2.0_933.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_933.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_934.RULE b/src/licensedcode/data/rules/gpl-2.0_934.RULE index dd76abbca27..381dc5b5efc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_934.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_934.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.gpl +--- + These are thus GPL2 (see COPYING.gpl), and are individually marked as such. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_934.yml b/src/licensedcode/data/rules/gpl-2.0_934.yml deleted file mode 100644 index 37f3704be12..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_934.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.gpl diff --git a/src/licensedcode/data/rules/gpl-2.0_935.RULE b/src/licensedcode/data/rules/gpl-2.0_935.RULE index 707556df4d2..c02c35388be 100644 --- a/src/licensedcode/data/rules/gpl-2.0_935.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_935.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLPv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_935.yml b/src/licensedcode/data/rules/gpl-2.0_935.yml deleted file mode 100644 index d2eb2635055..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_935.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_936.RULE b/src/licensedcode/data/rules/gpl-2.0_936.RULE index 09552b28039..d5ee5ffb612 100644 --- a/src/licensedcode/data/rules/gpl-2.0_936.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_936.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLP v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_936.yml b/src/licensedcode/data/rules/gpl-2.0_936.yml deleted file mode 100644 index d2eb2635055..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_936.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_937.RULE b/src/licensedcode/data/rules/gpl-2.0_937.RULE index aed830ae6db..94e493ae8af 100644 --- a/src/licensedcode/data/rules/gpl-2.0_937.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_937.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLPv2 code, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_937.yml b/src/licensedcode/data/rules/gpl-2.0_937.yml deleted file mode 100644 index d2eb2635055..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_937.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_938.RULE b/src/licensedcode/data/rules/gpl-2.0_938.RULE index cf603dacbb8..d2807e2f1d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_938.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_938.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLPv2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_938.yml b/src/licensedcode/data/rules/gpl-2.0_938.yml deleted file mode 100644 index d2eb2635055..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_938.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_939.RULE b/src/licensedcode/data/rules/gpl-2.0_939.RULE index d26c67f86fe..f3b12cc6dfc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_939.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_939.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + licensed under GLPv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_939.yml b/src/licensedcode/data/rules/gpl-2.0_939.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_939.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_94.RULE b/src/licensedcode/data/rules/gpl-2.0_94.RULE index 0e64966a233..17d1116db61 100644 --- a/src/licensedcode/data/rules/gpl-2.0_94.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_94.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 90 +notes: truncated text +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GPL License --------------------------- @@ -280,4 +293,4 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_94.yml b/src/licensedcode/data/rules/gpl-2.0_94.yml deleted file mode 100644 index 69b11bb996d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_94.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 90 -notes: truncated text -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_940.RULE b/src/licensedcode/data/rules/gpl-2.0_940.RULE index bf98655bf2e..9d5f211bbde 100644 --- a/src/licensedcode/data/rules/gpl-2.0_940.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_940.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + open source program distributed under the GLPv2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_940.yml b/src/licensedcode/data/rules/gpl-2.0_940.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_940.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_941.RULE b/src/licensedcode/data/rules/gpl-2.0_941.RULE index b401ebf3886..c52dcb18184 100644 --- a/src/licensedcode/data/rules/gpl-2.0_941.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_941.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + under GLPv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_941.yml b/src/licensedcode/data/rules/gpl-2.0_941.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_941.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_942.RULE b/src/licensedcode/data/rules/gpl-2.0_942.RULE index 783518c2951..e120ec330dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_942.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_942.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + It was made available by the author under the GNU GLPv2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_942.yml b/src/licensedcode/data/rules/gpl-2.0_942.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_942.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_943.RULE b/src/licensedcode/data/rules/gpl-2.0_943.RULE index 6e8148591e2..9404a4b527f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_943.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_943.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + the platform packages are released in GLPv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_943.yml b/src/licensedcode/data/rules/gpl-2.0_943.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_943.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_944.RULE b/src/licensedcode/data/rules/gpl-2.0_944.RULE index 40bcdea3b0d..a7d6dc9f103 100644 --- a/src/licensedcode/data/rules/gpl-2.0_944.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_944.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + Software licensed under GLPv2:. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_944.yml b/src/licensedcode/data/rules/gpl-2.0_944.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_944.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_945.RULE b/src/licensedcode/data/rules/gpl-2.0_945.RULE index 9e3dfb96e33..40fdac73da7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_945.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_945.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + available under a GNU GLPv2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_945.yml b/src/licensedcode/data/rules/gpl-2.0_945.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_945.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_946.RULE b/src/licensedcode/data/rules/gpl-2.0_946.RULE index 50dc4d6e17b..7889bd6b1bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_946.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_946.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + Licensed under the GLP v2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_946.yml b/src/licensedcode/data/rules/gpl-2.0_946.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_946.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_947.RULE b/src/licensedcode/data/rules/gpl-2.0_947.RULE index 5b1df3d4f76..b236ed93f67 100644 --- a/src/licensedcode/data/rules/gpl-2.0_947.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_947.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + Open source, provided free of charge under GNU GLP v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_947.yml b/src/licensedcode/data/rules/gpl-2.0_947.yml deleted file mode 100644 index 72fad92ff18..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_947.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_948.RULE b/src/licensedcode/data/rules/gpl-2.0_948.RULE index 7229dea350c..e5daa9ac671 100644 --- a/src/licensedcode/data/rules/gpl-2.0_948.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_948.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the GNU General Public License (version 2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_948.yml b/src/licensedcode/data/rules/gpl-2.0_948.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_948.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_949.RULE b/src/licensedcode/data/rules/gpl-2.0_949.RULE index 77369a9a56d..e6e5c395513 100644 --- a/src/licensedcode/data/rules/gpl-2.0_949.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_949.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This is free software, and you are welcome to redistribute it under the terms of the GNU General Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_949.yml b/src/licensedcode/data/rules/gpl-2.0_949.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_949.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_95.RULE b/src/licensedcode/data/rules/gpl-2.0_95.RULE index 526f89be569..661229f869d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_95.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_95.RULE @@ -1,3 +1,8 @@ +--- +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 as published by the Free Software Foundation; version 2 of the License. @@ -9,4 +14,4 @@ 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 St, Fifth Floor, Boston, MA 02110-1301 USA */ +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_95.yml b/src/licensedcode/data/rules/gpl-2.0_95.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_95.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_950.RULE b/src/licensedcode/data/rules/gpl-2.0_950.RULE index 03ff6ae4de2..1ce8dff5a02 100644 --- a/src/licensedcode/data/rules/gpl-2.0_950.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_950.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses + - http://www.xyratex.com/contact +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_950.yml b/src/licensedcode/data/rules/gpl-2.0_950.yml deleted file mode 100644 index 0817065ebab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_950.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses - - http://www.xyratex.com/contact diff --git a/src/licensedcode/data/rules/gpl-2.0_951.RULE b/src/licensedcode/data/rules/gpl-2.0_951.RULE index 6c5305bf7a4..cdf5b5733fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_951.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_951.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: this is mixing GPL and LGPL. So we take GPL +--- + 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, version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_951.yml b/src/licensedcode/data/rules/gpl-2.0_951.yml deleted file mode 100644 index c93491fbb41..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_951.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: this is mixing GPL and LGPL. So we take GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_952.RULE b/src/licensedcode/data/rules/gpl-2.0_952.RULE index 0400e6c7d26..52516a7bd4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_952.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_952.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: this is mixing GPL and LGPL. So we take GPL +--- + 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, version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_952.yml b/src/licensedcode/data/rules/gpl-2.0_952.yml deleted file mode 100644 index c93491fbb41..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_952.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: this is mixing GPL and LGPL. So we take GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_953.RULE b/src/licensedcode/data/rules/gpl-2.0_953.RULE index 90d4b66519d..eff3cce55af 100644 --- a/src/licensedcode/data/rules/gpl-2.0_953.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_953.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: this is mixing GPL and LGPL. So we take GPL +--- + you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. diff --git a/src/licensedcode/data/rules/gpl-2.0_953.yml b/src/licensedcode/data/rules/gpl-2.0_953.yml deleted file mode 100644 index c93491fbb41..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_953.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: this is mixing GPL and LGPL. So we take GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_954.RULE b/src/licensedcode/data/rules/gpl-2.0_954.RULE index 7424bf891c5..291fecced7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_954.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_954.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GPL-v2 licensed file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_954.yml b/src/licensedcode/data/rules/gpl-2.0_954.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_954.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_955.RULE b/src/licensedcode/data/rules/gpl-2.0_955.RULE index 7bcaa337000..9be61c5ea80 100644 --- a/src/licensedcode/data/rules/gpl-2.0_955.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_955.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + It is licensed under the GPLv2. See the included LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_955.yml b/src/licensedcode/data/rules/gpl-2.0_955.yml deleted file mode 100644 index 0e2a887bae9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_955.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_956.RULE b/src/licensedcode/data/rules/gpl-2.0_956.RULE index a194b136752..fe2389f0ccd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_956.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_956.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + It is licensed under the GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_956.yml b/src/licensedcode/data/rules/gpl-2.0_956.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_956.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_957.RULE b/src/licensedcode/data/rules/gpl-2.0_957.RULE index 42c409f0dc3..c7078a71c04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_957.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_957.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Free use of this software is granted under the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_957.yml b/src/licensedcode/data/rules/gpl-2.0_957.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_957.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_958.RULE b/src/licensedcode/data/rules/gpl-2.0_958.RULE index c0f8116ac20..a5b0922bc86 100644 --- a/src/licensedcode/data/rules/gpl-2.0_958.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_958.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Released under the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_958.yml b/src/licensedcode/data/rules/gpl-2.0_958.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_958.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_959.RULE b/src/licensedcode/data/rules/gpl-2.0_959.RULE index 2400fbd1c77..80a2111abe9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_959.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_959.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Released under the terms of the GNU General Public License version 2 (GPLv2). See the file LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_959.yml b/src/licensedcode/data/rules/gpl-2.0_959.yml deleted file mode 100644 index 7da0b0649f1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_959.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_96.RULE b/src/licensedcode/data/rules/gpl-2.0_96.RULE index d11d53ebc45..e109f1b3183 100644 --- a/src/licensedcode/data/rules/gpl-2.0_96.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_96.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +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 @@ -11,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, -MA 02110-1301 USA. +MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_96.yml b/src/licensedcode/data/rules/gpl-2.0_96.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_96.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_960.RULE b/src/licensedcode/data/rules/gpl-2.0_960.RULE index 2b155bd174e..cb0e4d1113c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_960.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_960.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + made available under the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_960.yml b/src/licensedcode/data/rules/gpl-2.0_960.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_960.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_961.RULE b/src/licensedcode/data/rules/gpl-2.0_961.RULE index eeaad498dc2..70908f612fe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_961.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_961.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + provided under the terms of the GNU General Public License, version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_961.yml b/src/licensedcode/data/rules/gpl-2.0_961.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_961.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_962.RULE b/src/licensedcode/data/rules/gpl-2.0_962.RULE index 69ec7b1963c..2ae47d2a69d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_962.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_962.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_962.yml b/src/licensedcode/data/rules/gpl-2.0_962.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_962.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_963.RULE b/src/licensedcode/data/rules/gpl-2.0_963.RULE index 7e1b0440044..8376eee5ab5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_963.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_963.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl-2.0.html +--- + Licensed under the the terms of the [GNU General Public License version 2 (GPLv2)](http://gnu.org/licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_963.yml b/src/licensedcode/data/rules/gpl-2.0_963.yml deleted file mode 100644 index 605f85e466c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_963.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_964.RULE b/src/licensedcode/data/rules/gpl-2.0_964.RULE index 757da7acb67..4262cdd454e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_964.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_964.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - gpl-2.0.txt +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt + - https://github.com/LibreCAD/LibreCAD/tree/master/licenses +--- + GPLv2 ## is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_964.yml b/src/licensedcode/data/rules/gpl-2.0_964.yml deleted file mode 100644 index 6c0a228d355..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_964.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - gpl-2.0.txt -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt - - https://github.com/LibreCAD/LibreCAD/tree/master/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_965.RULE b/src/licensedcode/data/rules/gpl-2.0_965.RULE index d7d075bb409..2a00be42b08 100644 --- a/src/licensedcode/data/rules/gpl-2.0_965.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_965.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - gpl-2.0.txt +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt + - https://github.com/LibreCAD/LibreCAD/tree/master/licenses +--- + GPLv2 ## Librecad is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-2.0_965.yml b/src/licensedcode/data/rules/gpl-2.0_965.yml deleted file mode 100644 index 6c0a228d355..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_965.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - gpl-2.0.txt -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt - - https://github.com/LibreCAD/LibreCAD/tree/master/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_966.RULE b/src/licensedcode/data/rules/gpl-2.0_966.RULE index c65f8f9d756..b331e996897 100644 --- a/src/licensedcode/data/rules/gpl-2.0_966.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_966.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 version 2 (GPLv2) diff --git a/src/licensedcode/data/rules/gpl-2.0_966.yml b/src/licensedcode/data/rules/gpl-2.0_966.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_966.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_967.RULE b/src/licensedcode/data/rules/gpl-2.0_967.RULE index c2de3a69890..bc79d47920f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_967.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_967.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 (GPLv2) as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_967.yml b/src/licensedcode/data/rules/gpl-2.0_967.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_967.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_968.RULE b/src/licensedcode/data/rules/gpl-2.0_968.RULE index 9971c4bf18c..26a0d1a95a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_968.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_968.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + It's licensed under the terms of the GNU General Public License, version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_968.yml b/src/licensedcode/data/rules/gpl-2.0_968.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_968.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_969.RULE b/src/licensedcode/data/rules/gpl-2.0_969.RULE index ccafb7fcb40..c5911d3c940 100644 --- a/src/licensedcode/data/rules/gpl-2.0_969.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_969.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License, version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_969.yml b/src/licensedcode/data/rules/gpl-2.0_969.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_969.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_97.RULE b/src/licensedcode/data/rules/gpl-2.0_97.RULE index ca4db344452..63a64048050 100644 --- a/src/licensedcode/data/rules/gpl-2.0_97.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_97.RULE @@ -1,3 +1,8 @@ +--- +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 as published by * the Free Software Foundation; either version 2 of the License. @@ -9,4 +14,4 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * Foundation, 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_97.yml b/src/licensedcode/data/rules/gpl-2.0_97.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_97.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_970.RULE b/src/licensedcode/data/rules/gpl-2.0_970.RULE index a0c9c4493ac..952ea62656e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_970.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_970.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_970.yml b/src/licensedcode/data/rules/gpl-2.0_970.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_970.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_971.RULE b/src/licensedcode/data/rules/gpl-2.0_971.RULE index 3cb5c52319d..27fb089f90d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_971.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_971.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 General Public License Version 2 (GPLv2) * as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_971.yml b/src/licensedcode/data/rules/gpl-2.0_971.yml deleted file mode 100644 index 541d895e0a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_971.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_972.RULE b/src/licensedcode/data/rules/gpl-2.0_972.RULE index e28274287ee..d577e7abe42 100644 --- a/src/licensedcode/data/rules/gpl-2.0_972.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_972.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +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 General Public License Version 2 (GPLv2) * as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_972.yml b/src/licensedcode/data/rules/gpl-2.0_972.yml deleted file mode 100644 index 67df5e76308..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_972.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_973.RULE b/src/licensedcode/data/rules/gpl-2.0_973.RULE index 421be305a8e..0ca1b415bca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_973.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_973.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the GNU General Public License version 2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_973.yml b/src/licensedcode/data/rules/gpl-2.0_973.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_973.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_974.RULE b/src/licensedcode/data/rules/gpl-2.0_974.RULE index 0a029740b32..10440e01140 100644 --- a/src/licensedcode/data/rules/gpl-2.0_974.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_974.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Distributed under the terms of the GNU General Public License version 2 (GPLv2) The full text of the GPLv2 is available at: http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_974.yml b/src/licensedcode/data/rules/gpl-2.0_974.yml deleted file mode 100644 index 541d895e0a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_974.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_975.RULE b/src/licensedcode/data/rules/gpl-2.0_975.RULE index e2fc5c91967..13323dcc1a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_975.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_975.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_975.yml b/src/licensedcode/data/rules/gpl-2.0_975.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_975.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_976.RULE b/src/licensedcode/data/rules/gpl-2.0_976.RULE index 8c987ee4933..082c85d5cb3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_976.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_976.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + free software licensed under the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_976.yml b/src/licensedcode/data/rules/gpl-2.0_976.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_976.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_977.RULE b/src/licensedcode/data/rules/gpl-2.0_977.RULE index 04426b6a937..a7fb20e0d78 100644 --- a/src/licensedcode/data/rules/gpl-2.0_977.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_977.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + licensed under the terms of the GNU General Public License, version 2 (GPLv2). The full text of this license may be found in the COPYING file at the top of the source tree and online at http://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_977.yml b/src/licensedcode/data/rules/gpl-2.0_977.yml deleted file mode 100644 index 8a3eecb61ab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_977.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_978.RULE b/src/licensedcode/data/rules/gpl-2.0_978.RULE index 309c12a0d8e..01f9726b4f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_978.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_978.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + source code is released under the GNU General Public License version 2. Please see the file COPYING in the main source directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_978.yml b/src/licensedcode/data/rules/gpl-2.0_978.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_978.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_979.RULE b/src/licensedcode/data/rules/gpl-2.0_979.RULE index dd95cefc9d6..0226608a2b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_979.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_979.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_979.yml b/src/licensedcode/data/rules/gpl-2.0_979.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_979.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_98.RULE b/src/licensedcode/data/rules/gpl-2.0_98.RULE index 2e47982182a..5083fb4a21c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_98.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_98.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + * This file is free software; you can redistribute it and/or modify * it under the terms of version 2 of the GNU General Public License * as published by the Free Software Foundation. @@ -9,4 +14,4 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_98.yml b/src/licensedcode/data/rules/gpl-2.0_98.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_98.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_980.RULE b/src/licensedcode/data/rules/gpl-2.0_980.RULE index 9b4fd63870b..bab7a51d9de 100644 --- a/src/licensedcode/data/rules/gpl-2.0_980.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_980.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file is distributed under the terms of the GNU General Public License version 2 (GPLv2) as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_980.yml b/src/licensedcode/data/rules/gpl-2.0_980.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_980.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_981.RULE b/src/licensedcode/data/rules/gpl-2.0_981.RULE index 5ca1148c962..11066454758 100644 --- a/src/licensedcode/data/rules/gpl-2.0_981.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_981.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + distributed under the terms of the GNU General Public License version 2 (`GPLv2 `_) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_981.yml b/src/licensedcode/data/rules/gpl-2.0_981.yml deleted file mode 100644 index 541d895e0a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_981.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_982.RULE b/src/licensedcode/data/rules/gpl-2.0_982.RULE index 8be75f44758..50a3009e38c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_982.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_982.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GNU General Public Licence distributed under the terms of the GNU General Public License version 2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_982.yml b/src/licensedcode/data/rules/gpl-2.0_982.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_982.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_983.RULE b/src/licensedcode/data/rules/gpl-2.0_983.RULE index 3635b1ef748..94c10f2ea98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_983.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_983.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GNU General Public Licence distributed under the terms of the GNU General Public License version 2 (`GPLv2 `_) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_983.yml b/src/licensedcode/data/rules/gpl-2.0_983.yml deleted file mode 100644 index 541d895e0a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_983.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_984.RULE b/src/licensedcode/data/rules/gpl-2.0_984.RULE index 8fd7dd77be6..39b470ed498 100644 --- a/src/licensedcode/data/rules/gpl-2.0_984.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_984.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html/ +--- + free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License version 2 (GPLv2) as published by * the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_984.yml b/src/licensedcode/data/rules/gpl-2.0_984.yml deleted file mode 100644 index f68cc41862c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_984.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html/ diff --git a/src/licensedcode/data/rules/gpl-2.0_985.RULE b/src/licensedcode/data/rules/gpl-2.0_985.RULE index 286e913322a..7970345ee3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_985.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_985.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html/ +--- + free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License version 2 (GPLv2) as published by * the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_985.yml b/src/licensedcode/data/rules/gpl-2.0_985.yml deleted file mode 100644 index cc67808f70b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_985.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html/ diff --git a/src/licensedcode/data/rules/gpl-2.0_986.RULE b/src/licensedcode/data/rules/gpl-2.0_986.RULE index 6ce4ef45db3..ca4c2797801 100644 --- a/src/licensedcode/data/rules/gpl-2.0_986.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_986.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + # This program is released under the terms of the Gnu General Public # License version 2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_986.yml b/src/licensedcode/data/rules/gpl-2.0_986.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_986.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_987.RULE b/src/licensedcode/data/rules/gpl-2.0_987.RULE index 1026e805d3d..f03555b0238 100644 --- a/src/licensedcode/data/rules/gpl-2.0_987.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_987.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + # This program is released under the terms of the Gnu General Public # License version 2 (GPLv2) # http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_987.yml b/src/licensedcode/data/rules/gpl-2.0_987.yml deleted file mode 100644 index dd792fa1b37..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_987.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_988.RULE b/src/licensedcode/data/rules/gpl-2.0_988.RULE index 8f43e6523a9..5e9fee4652c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_988.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_988.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + made available under the terms of the GNU General Public License version 2 (GPLv2), a copy of which can be found in Appendix A. As such, it comes with absolutely no warranty, not even the implied warranties of diff --git a/src/licensedcode/data/rules/gpl-2.0_988.yml b/src/licensedcode/data/rules/gpl-2.0_988.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_988.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_989.RULE b/src/licensedcode/data/rules/gpl-2.0_989.RULE index 44cb90832be..26acb5999e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_989.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_989.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Available under the terms of the GNU General Public License version 2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_989.yml b/src/licensedcode/data/rules/gpl-2.0_989.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_989.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_99.RULE b/src/licensedcode/data/rules/gpl-2.0_99.RULE index cc3a9959e8c..eca722ceb22 100644 --- a/src/licensedcode/data/rules/gpl-2.0_99.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_99.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This documentation is free software; you can redistribute it and/or modify it under the terms of the GNU General Public - License version 2. + License version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_99.yml b/src/licensedcode/data/rules/gpl-2.0_99.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_990.RULE b/src/licensedcode/data/rules/gpl-2.0_990.RULE index 43c4f962e5c..0cc2eb6c599 100644 --- a/src/licensedcode/data/rules/gpl-2.0_990.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_990.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/gpl.txt +--- + GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_990.yml b/src/licensedcode/data/rules/gpl-2.0_990.yml deleted file mode 100644 index 902f6f73f09..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_990.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_991.RULE b/src/licensedcode/data/rules/gpl-2.0_991.RULE index ab081ee7bb1..a873ffb67ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0_991.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_991.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/gpl.txt +--- + http://www.fsf.org/licensing/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_991.yml b/src/licensedcode/data/rules/gpl-2.0_991.yml deleted file mode 100644 index 3e712c4866a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_991.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_992.RULE b/src/licensedcode/data/rules/gpl-2.0_992.RULE index cc2bdcd7360..98ccb3dca41 100644 --- a/src/licensedcode/data/rules/gpl-2.0_992.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_992.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_992.yml b/src/licensedcode/data/rules/gpl-2.0_992.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_992.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_993.RULE b/src/licensedcode/data/rules/gpl-2.0_993.RULE index eb34fae939e..d15499bcc22 100644 --- a/src/licensedcode/data/rules/gpl-2.0_993.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_993.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + covered under the GNU General Public License Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_993.yml b/src/licensedcode/data/rules/gpl-2.0_993.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_993.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_994.RULE b/src/licensedcode/data/rules/gpl-2.0_994.RULE index 59e330b1cdb..a932f84c8a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_994.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_994.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: https://github.com/9fans/plan9port/blob/master/src/cmd/mk/NOTICE +ignorable_urls: + - http://www.fsf.org/copyleft/gpl.html +--- + Under a licence agreement with Lucent Technologies Inc. effective 1st March 2000, Vita Nuova Holdings Limited has the right to determine (within a specified scope) the form and content of sublicences for this software. diff --git a/src/licensedcode/data/rules/gpl-2.0_994.yml b/src/licensedcode/data/rules/gpl-2.0_994.yml deleted file mode 100644 index e069b36d7fe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_994.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: https://github.com/9fans/plan9port/blob/master/src/cmd/mk/NOTICE -ignorable_urls: - - http://www.fsf.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_995.RULE b/src/licensedcode/data/rules/gpl-2.0_995.RULE index 455bbe7b887..96b6f4a53b0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_995.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_995.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: Seen in libminigui +--- + Licensing Policy for GPL'd versions By now, Software releases some versions under diff --git a/src/licensedcode/data/rules/gpl-2.0_995.yml b/src/licensedcode/data/rules/gpl-2.0_995.yml deleted file mode 100644 index 8d918843fc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_995.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: Seen in libminigui diff --git a/src/licensedcode/data/rules/gpl-2.0_996.RULE b/src/licensedcode/data/rules/gpl-2.0_996.RULE index cbc3e7c97ac..da245311cb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_996.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_996.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The script is licensed under the "GPLv2 license". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_996.yml b/src/licensedcode/data/rules/gpl-2.0_996.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_996.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_997.RULE b/src/licensedcode/data/rules/gpl-2.0_997.RULE index a54415edcc9..3f1dcda101b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_997.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_997.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + License Unless otherwise specified, all the theme files, scripts and images are licensed under GNU General Public License version 2, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_997.yml b/src/licensedcode/data/rules/gpl-2.0_997.yml deleted file mode 100644 index ada5c62023a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_997.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_998.RULE b/src/licensedcode/data/rules/gpl-2.0_998.RULE index 71b18b93824..79f89f82612 100644 --- a/src/licensedcode/data/rules/gpl-2.0_998.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_998.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + Unless otherwise specified, all the theme files, scripts and images are licensed under GNU General Public License version 2, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_998.yml b/src/licensedcode/data/rules/gpl-2.0_998.yml deleted file mode 100644 index ada5c62023a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_998.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_999.RULE b/src/licensedcode/data/rules/gpl-2.0_999.RULE index b9a15a2b17e..35239493943 100644 --- a/src/licensedcode/data/rules/gpl-2.0_999.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_999.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + licensed under GNU General Public License version 2, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_999.yml b/src/licensedcode/data/rules/gpl-2.0_999.yml deleted file mode 100644 index ada5c62023a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_999.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_and-unknown-license-reference_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and-unknown-license-reference_1.RULE index f308eb57b65..40c08d69cbe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and-unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and-unknown-license-reference_1.RULE @@ -1,5 +1,12 @@ +--- +license_expression: gpl-2.0 AND unknown-license-reference +is_license_notice: yes +relevance: 100 +notes: found in Android bionic +--- + *** This header was automatically generated from a Linux kernel header *** of the same name, to make information necessary for userspace to *** call into the kernel available to libc. It contains only constants, *** structures, and macros generated from the original header, and thus, - *** contains no copyrightable information. + *** contains no copyrightable information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and-unknown-license-reference_1.yml b/src/licensedcode/data/rules/gpl-2.0_and-unknown-license-reference_1.yml deleted file mode 100644 index 04362a8d784..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and-unknown-license-reference_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND unknown-license-reference -is_license_notice: yes -relevance: 100 -notes: found in Android bionic diff --git a/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_and_mit_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_and_mit_1.RULE index 569cf4ad065..1e6c7bc6d2e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_and_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_and_mit_1.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0 AND bsd-new AND mit +is_license_notice: yes +--- + This package, the , are made available under the GNU General Public License version 2, with the exception of the libraries, which are made available under the GNU Library General Public License Version 2, the library which is made available under a BSD-style license and the and -libraries which are made available under an MIT-style license. +libraries which are made available under an MIT-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_and_mit_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_and_mit_1.yml deleted file mode 100644 index 77c2a0c9bc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_and_mit_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND bsd-new AND mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_or_gpl-2.0_1.RULE index aa7c3300e99..cdf34ebf255 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_or_gpl-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 AND (bsd-new OR gpl-2.0) +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +notes: openib +--- + 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. @@ -35,4 +44,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_or_gpl-2.0_1.yml deleted file mode 100644 index 95506757dfb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_bsd-new_or_gpl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND (bsd-new OR gpl-2.0) -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.RULE index 6b53ce0d16a..4d052514b71 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 AND epl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ + - http://www.eclipse.org/legal/epl-v10.html +--- + - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.yml deleted file mode 100644 index bd094ebf4ae..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND epl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.RULE index 2faebdbb2ad..dc385907ae8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.RULE @@ -1 +1,10 @@ -http://creativecommons.org/licenses/GPL/2.0/ and http://www.eclipse.org/legal/epl-v10.html +--- +license_expression: gpl-2.0 AND epl-1.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/2.0/ + - http://www.eclipse.org/legal/epl-v10.html +--- + +http://creativecommons.org/licenses/GPL/2.0/ and http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.yml deleted file mode 100644 index f21e6d6cf20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_epl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND epl-1.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/2.0/ - - http://www.eclipse.org/legal/epl-v10.html diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_1.RULE index 21ac10badce..9894d6d6b97 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_1.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 AND free-unknown +is_license_tag: yes +relevance: 100 +notes: Linux module.h MODULE_LICENSE as compiled in binary +--- + license=GPL and additional rights \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_1.yml deleted file mode 100644 index bf9d6f92e66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND free-unknown -is_license_tag: yes -relevance: 100 -notes: Linux module.h MODULE_LICENSE as compiled in binary diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_2.RULE index e87481ff733..2d430f7b228 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_2.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 AND free-unknown +is_license_tag: yes +relevance: 100 +notes: Linux module.h MODULE_LICENSE in source +--- + MODULE_LICENSE("GPL and additional rights") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_2.yml deleted file mode 100644 index affd802647e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND free-unknown -is_license_tag: yes -relevance: 100 -notes: Linux module.h MODULE_LICENSE in source diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_3.RULE index 3920cbe8e98..ad4a79be20b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND free-unknown +is_license_notice: yes +minimum_coverage: 10 +--- + This is a GPL v2 license with additional rights found from linux kernel source files with the declaration MODULE_LICENSE("GPL and additional rights") @@ -17,4 +23,4 @@ GPL v2: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - USA + USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_3.yml b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_3.yml deleted file mode 100644 index 7a9950bdf13..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus AND free-unknown -is_license_notice: yes -minimum_coverage: 10 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_4.RULE b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_4.RULE index 637be30c621..a6788ea1646 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_4.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 AND free-unknown +is_license_tag: yes +relevance: 100 +notes: Linux module.h MODULE_LICENSE macro variant (DRIVER_LICENSE) +--- + DRIVER_LICENSE("GPL and additional rights") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_4.yml b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_4.yml deleted file mode 100644 index 3ee28cde703..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND free-unknown -is_license_tag: yes -relevance: 100 -notes: Linux module.h MODULE_LICENSE macro variant (DRIVER_LICENSE) diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_2.RULE index c711de5f30a..bc7dbe8c479 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 AND free-unknown +is_license_notice: yes +relevance: 100 +--- + The Distribution is released as GPLv2. Individual packages in the distribution come with their own licences. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_2.yml deleted file mode 100644 index 83a9a10c6c2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_3.RULE index be9d3df0710..8f4f2ea99bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_3.RULE @@ -1,8 +1,12 @@ +--- +license_expression: gpl-2.0 AND free-unknown +is_license_notice: yes +--- + CentOS Linux 7 EULA CentOS Linux 7 comes with no guarantees or warranties of any sorts, either written or implied. The Distribution is released as GPLv2. Individual packages in the -distribution come with their own licences. - +distribution come with their own licences. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_3.yml b/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_3.yml deleted file mode 100644 index 6991fb8ca27..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_free-unknown_centos_notice_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_and_generic-cla_and_mit_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_generic-cla_and_mit_1.RULE index 82dc4dcd695..b3157af8bb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_generic-cla_and_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_generic-cla_and_mit_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 AND generic-cla AND mit +is_license_notice: yes +relevance: 100 +notes: https://github.com/scanoss/engine/blob/master/CONTRIBUTING.md An assymetric CLA +--- + Licensing The Platform is released under the GPL-2.0 license. If you wish to diff --git a/src/licensedcode/data/rules/gpl-2.0_and_generic-cla_and_mit_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_generic-cla_and_mit_1.yml deleted file mode 100644 index e20f43a5213..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_generic-cla_and_mit_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND generic-cla AND mit -is_license_notice: yes -relevance: 100 -notes: https://github.com/scanoss/engine/blob/master/CONTRIBUTING.md An assymetric CLA diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus.RULE index c7ba71ec0da..45e1f71fe2a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-2.0 AND gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + The portions of this file whose copyright is held by Freescale and which are not considered a derived work of GPL v2-only code may be distributed and/or modified 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. +License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus.yml deleted file mode 100644 index 0ee4170ad66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus2.RULE index 8ecd41a5314..829b6ab00ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus2.RULE @@ -1,7 +1,17 @@ +--- +license_expression: gpl-2.0 AND gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 99 +ignorable_copyrights: + - copyrighted by Wolfgang Denk +ignorable_holders: + - Wolfgang Denk +--- + U-Boot is Free Software. It is copyrighted by Wolfgang Denk and many others who contributed code (see the actual source code and the git commit messages for details). You can redistribute U-Boot and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. Most of it can also be distributed, at your option, under any later version of the -GNU General Public License -- see individual files for exceptions. +GNU General Public License -- see individual files for exceptions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus2.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus2.yml deleted file mode 100644 index 52052431722..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 AND gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 99 -ignorable_copyrights: - - copyrighted by Wolfgang Denk -ignorable_holders: - - Wolfgang Denk diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_1.RULE index 315113cdf3b..b0a7c2a18a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_1.RULE @@ -1,5 +1,15 @@ +--- +license_expression: gpl-2.0 AND gpl-2.0-plus +is_license_notice: yes +relevance: 90 +minimum_coverage: 80 +referenced_filenames: + - COPYING +notes: a notice found in Valgrind README... and this is a tad hard to parse. +--- + is licensed under the GNU General Public License, version 2. Read the file COPYING in the source distribution for details. However: if you contribute code, you need to make it available as GPL -version 2 or later, and not 2-only. +version 2 or later, and not 2-only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_1.yml deleted file mode 100644 index f22b6f8e0bd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 AND gpl-2.0-plus -is_license_notice: yes -relevance: 90 -minimum_coverage: 80 -referenced_filenames: - - COPYING -notes: a notice found in Valgrind README... and this is a tad hard to parse. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_2.RULE index 882a10bd477..cf5d4c3e644 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv2 +--- + The effective license of the modules as a whole is the GNU General Public License Version 2 (GNU GPL-2). diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_2.yml deleted file mode 100644 index de211543f54..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_1.RULE index 708b76370fa..bc4c673897b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND (gpl-2.0 OR gpl-2.0-plus) +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + License This module is licensed under the GNU General Public License v2.0 only. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_1.yml deleted file mode 100644 index cd820f21dd3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND (gpl-2.0 OR gpl-2.0-plus) -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_2.RULE index a00c36e0e64..adc9c4cab84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_2.RULE @@ -1,5 +1,14 @@ +--- +license_expression: gpl-2.0 AND (gpl-2.0 OR gpl-2.0-plus) +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING + - COPYING.GPLv2 +--- + ## License This module is licensed under the {{[GNU General Public License v2.0 only}}](COPYING.GPLv2). Single files, however, are licensed either the {{GNU General Public License v2.0 only or under GNU General Public License v2.0 or later}}, -please see the [COPYING](COPYING) file for details. +please see the [COPYING](COPYING) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_2.yml deleted file mode 100644 index 1d1c41084d0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND (gpl-2.0 OR gpl-2.0-plus) -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING - - COPYING.GPLv2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_1.RULE index bd76dbc4526..a3c1fda16ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND (gpl-2.0 OR lgpl-2.0) +is_license_notice: yes +relevance: 100 +--- + RPM is covered under two separate licenses. The entire code base may be distributed under the terms of the GNU General diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_1.yml deleted file mode 100644 index eb00bcc37a4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND (gpl-2.0 OR lgpl-2.0) -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_4.RULE index 2bf6b199464..03b83cf68d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND (gpl-2.0 OR lgpl-2.0) +is_license_notice: yes +notes: rpm dual license is using v2 (the GNU library reference is for v2) +--- + RPM and it's source code are covered under two separate licenses. The entire code base may be distributed under the terms of the GNU General @@ -10,4 +16,4 @@ at the bottom of this file. This alternatively is allowed to enable applications to be linked against the RPM library (commonly called librpm) without forcing such applications -to be distributed under the GPL. +to be distributed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_4.yml deleted file mode 100644 index ca596216322..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND (gpl-2.0 OR lgpl-2.0) -is_license_notice: yes -notes: rpm dual license is using v2 (the GNU library reference is for v2) diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_5.RULE index 7494c421ff2..c8835dbe13e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND (gpl-2.0 OR lgpl-2.0) +is_license_notice: yes +notes: rpm dual license is using v2 (the GNU library reference is for v2) +--- + # RPM (and it's source code) is covered under two separate licenses. # The entire code base may be distributed under the terms of the GNU @@ -10,4 +16,4 @@ # This alternatively is allowed to enable applications to be linked # against the RPM library (commonly called librpm) without forcing -# such applications to be distributed under the GPL. +# such applications to be distributed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_5.yml deleted file mode 100644 index 17dd2cf9b9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND (gpl-2.0 OR lgpl-2.0) -is_license_notice: yes -notes: rpm dual license is using v2 (the GNU library reference is for v2) diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_7.RULE index 837d92cd2e0..c8be6bff14a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND (gpl-2.0 OR lgpl-2.0) +is_license_notice: yes +--- + RPM is covered under two separate licenses. The entire code base may be distributed under the terms of the GNU General @@ -10,5 +15,4 @@ at the bottom of this file. This alternative is provided to enable applications to be linked against the RPM library (commonly called librpm) without forcing such applications -to be distributed under the GPL. - +to be distributed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_7.yml deleted file mode 100644 index de09dff4af5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.0_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND (gpl-2.0 OR lgpl-2.0) -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.1_f2fs_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.1_f2fs_1.RULE index 8b9680fe44f..e689cca759f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.1_f2fs_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.1_f2fs_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +minimum_coverage: 50 +--- + The tools for are covered by GNU Public License version 2. Exceptionally, the following files are also covered by the GNU Lesser General Public License Version 2.1 as the dual licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.1_f2fs_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.1_f2fs_1.yml deleted file mode 100644 index 0779c55fa29..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_gpl-2.0_or_lgpl-2.1_f2fs_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_khronos.RULE b/src/licensedcode/data/rules/gpl-2.0_and_khronos.RULE index b28f3172ac8..b75aef3fe15 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_khronos.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_khronos.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND khronos +is_license_notice: yes +minimum_coverage: 90 +--- + 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; version 2 of the License. @@ -34,4 +40,4 @@ 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 -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_khronos.yml b/src/licensedcode/data/rules/gpl-2.0_and_khronos.yml deleted file mode 100644 index 39ece54f3de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_khronos.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND khronos -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0-plus.RULE index 8d2700cfd1f..290aa2b9f27 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0-plus.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 + - /usr/share/common-licenses/GPL + - /usr/share/common-licenses/LGPL-3 + - COPYING.LIB +--- + License: The licence for translations is the same as that of the application or library from which they come. The lowest common denominator is GNU @@ -45,4 +57,4 @@ for details. The Debian packaging is and -is licensed under the GPLv2 or later, see `/usr/share/common-licenses/GPL-2'. +is licensed under the GPLv2 or later, see `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0-plus.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0-plus.yml deleted file mode 100644 index 8038c83efa9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0-plus.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 - - /usr/share/common-licenses/GPL - - /usr/share/common-licenses/LGPL-3 - - COPYING.LIB diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0.RULE index 07559c5c635..5542403b6ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the complete text of the GNU General Public License can be found in the '/usr/share/common-licenses/GPL-2' file. The complete text of the GNU Lesser General Public License can be found in the -'/usr/share/common-licenses/LGPL-2' file. +'/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0.yml deleted file mode 100644 index d3085c047c8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_2.RULE index 6c89390ab5c..745f953fa8f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 +is_license_notice: yes +relevance: 95 +notes: we have conflicting lesser and v2 LGPL references +--- + and is distributed under GNU General Public Licence, version 2. -Most parts of the user interface are under Lesser GNU General Public Licence, version 2 (the rest is under GPL). +Most parts of the user interface are under Lesser GNU General Public Licence, version 2 (the rest is under GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_2.yml deleted file mode 100644 index 70ac20d0614..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 -is_license_notice: yes -relevance: 95 -notes: we have conflicting lesser and v2 LGPL references diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_3.RULE index e8eb4873931..2fc8793cb8a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_3.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 +is_license_notice: yes +relevance: 95 +minimum_coverage: 90 +notes: we have conflicting lesser and v2 LGPL references +--- + This product contains certain code packages that are licensed pursuant to the terms of the GNU General Public License ("GPL") and/or the GNU Lesser General Public License ("LGPL"). The software packages that are -licensed under the GPL or LGPL version 2 include: +licensed under the GPL or LGPL version 2 include: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_3.yml deleted file mode 100644 index a8d50c9a438..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 -is_license_notice: yes -relevance: 95 -minimum_coverage: 90 -notes: we have conflicting lesser and v2 LGPL references diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_4.RULE index acd9fc95cc4..e87c9e868c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_4.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + On Debian GNU systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. The complete text of the GNU Library General Public License can be found -in '/usr/share/common-licenses/LGPL-2'. - +in '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_4.yml deleted file mode 100644 index 385c008498f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.RULE index a1d9ba6aabe..c4fb10c8555 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + This package, the ext2 filesystem utilities, are made available under the GNU General Public License version 2, with the exception of the libraries, which are made available under the @@ -8,4 +16,4 @@ which is made available under a BSD-style license and the and On Debian GNU systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. The complete text of the GNU Library General Public License can be found -in '/usr/share/common-licenses/LGPL-2'. +in '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.yml deleted file mode 100644 index dcc517b5d00..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_2.RULE index 30ca73132cc..8f044bb70b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_2.RULE @@ -1,6 +1,12 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert +is_license_notice: yes +minimum_coverage: 80 +--- + This package, the ext2 utilities, are made available under the GNU General Public License version 2, with the exception of the libraries, which are made available under the GNU Library General Public License Version 2, the library which is made available under a BSD-style license and the and - libraries which are made available under an MIT-style license. + libraries which are made available under an MIT-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_2.yml deleted file mode 100644 index 68eb068b5e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.RULE index b50c404fc87..eaa46514df7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert +is_license_notice: yes +minimum_coverage: 80 +--- + This package, the EXT2 filesystem utilities, are made available under the GNU Public License version 2, with the exception of the lib/ext2fs and lib/e2p libraries, which are made available under the GNU Library @@ -6,4 +12,4 @@ available under a BSD-style license and the lib/et and lib/ss libraries which are made available under an MIT-style license. Please see lib/uuid/COPYING for more details for the license for the files comprising the libuuid library, and the source file headers of the -libet and libss libraries for more information. +libet and libss libraries for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.yml deleted file mode 100644 index 68eb068b5e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_4.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_4.RULE index 6391949d9af..662b67af443 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert +is_license_notice: yes +minimum_coverage: 80 +--- + This package, the EXT2 filesystem utilities, are made available under the GNU Public License version 2, with the exception of the lib/ext2fs and lib/e2p libraries, which are made available under the GNU Library @@ -11,4 +17,4 @@ libet and libss libraries for more information. On Debian GNU systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. The complete text of the GNU Library General Public License can be found -in '/usr/share/common-licenses/LGPL-2'. +in '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_4.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_4.yml deleted file mode 100644 index 68eb068b5e3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_5.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_5.RULE index 450f8209014..8de92b8c937 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - lib/uuid/COPYING +--- + This package, the EXT2 filesystem utilities, are made available under the GNU Public License, with the exception of the lib/uuid directory which is made available under a BSD-style license. Please see diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_5.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_5.yml deleted file mode 100644 index 40f637c08f1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - lib/uuid/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_1.RULE index 8fe2acbb570..cb1f93587dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 AND gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +--- + On Debian systems, the complete text of the GNU General Public License version 2, the GNU Lesser General Public License, and the General Public License version 3 can be found diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_1.yml deleted file mode 100644 index bd36eca5e47..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 AND gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_2.RULE index dcde46b7b9d..c7b95aaa02e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 AND gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2, the GNU Lesser General Public License, and the General Public License version 3 can be found diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_2.yml deleted file mode 100644 index bd36eca5e47..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 AND gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_3.RULE index 4eafd69cb27..08dc2db8390 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.0 AND gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +--- + On Debian systems, the text of the GNU General Public License version 2, the GNU Lesser General Public License, and the General Public License version 3 can be found diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_3.yml deleted file mode 100644 index bd36eca5e47..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.0_and_gpl-3.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.0 AND gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.RULE index cae2f876c4e..cb2fe692172 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (gpl-2.0 AND lgpl-2.1-plus) AND other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: seen in libgcrypt +--- + This file contains the copying permission notices for various files in the distribution which are not covered by the GNU Lesser General Public License (LGPL) or the GNU General Public License (GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.yml deleted file mode 100644 index 49c32e8365c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1-plus_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (gpl-2.0 AND lgpl-2.1-plus) AND other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: seen in libgcrypt diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_1.RULE index d7f34c9be37..0846b34e9dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the GNU GENERAL PUBLIC LICENCE Version diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_1.yml deleted file mode 100644 index 67a02ff123f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_10.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_10.RULE index af6812d44da..1ebe36bb253 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + the user application, is distributed under the GPL. The remaining files that make up libst are licensed under the less @@ -12,4 +20,4 @@ any program that requires LGPL only software. On Debian systems, the complete text of the GNU General Public License can be found in the '/usr/share/common-licenses/GPL-2' file. The complete text of the GNU Lesser General Public License can be found in the -'/usr/share/common-licenses/LGPL-2' file. +'/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_10.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_10.yml deleted file mode 100644 index d3085c047c8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_2.RULE index 92b4b265573..14fac063271 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + On Debian systems the complete text of the licenses can be found in -/usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/LGPL-2.1 . +/usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/LGPL-2.1 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_2.yml deleted file mode 100644 index 67a02ff123f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_3.RULE index d45b2d4e658..548a687ab61 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + kernel module and drivers are distributed under the GNU GPLv2 license, LGPLv2.1 for the user-space library, and available in source code format. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_3.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_3.yml deleted file mode 100644 index 67a02ff123f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_4.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_4.RULE index 967cb08f795..4d3fdd08a4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + executables are GPLv2; libraries LGPLv2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_4.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_4.yml deleted file mode 100644 index 67a02ff123f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_5.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_5.RULE index e0b80972c25..6155227b02c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems the complete text of the licenses can be found in -/usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/LGPL-2.1 . +/usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/LGPL-2.1 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_5.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_5.yml deleted file mode 100644 index 67a02ff123f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_6.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_6.RULE index d7ff8354853..68a048cfab9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_6.RULE @@ -1,4 +1,13 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in the '/usr/share/common-licenses/GPL-2' file. The complete text of the GNU Lesser General Public License can be found in the -'/usr/share/common-licenses/LGPL-2' file. +'/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_6.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_6.yml deleted file mode 100644 index 1461207c5de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_7.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_7.RULE index d82f0c49e7d..1774484a491 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + the user application, is distributed under the GPL. The remaining files that make up libst are licensed under the less @@ -12,4 +21,4 @@ any program that requires LGPL only software. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in the '/usr/share/common-licenses/GPL-2' file. The complete text of the GNU Lesser General Public License can be found in the -'/usr/share/common-licenses/LGPL-2' file. +'/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_7.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_7.yml deleted file mode 100644 index 1461207c5de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_8.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_8.RULE index 2679ccbfb09..0ce743b999e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_8.RULE @@ -1,4 +1,13 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the text of the GNU General Public License can be found in the '/usr/share/common-licenses/GPL-2' file. The complete text of the GNU Lesser General Public License can be found in the -'/usr/share/common-licenses/LGPL-2' file. +'/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_8.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_8.yml deleted file mode 100644 index 1461207c5de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_9.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_9.RULE index 8c1b302f7a5..d8e8d44b982 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + the user application, is distributed under the GPL. The remaining files that make up libst are licensed under the less @@ -12,4 +21,4 @@ any program that requires LGPL only software. On Debian systems, the text of the GNU General Public License can be found in the '/usr/share/common-licenses/GPL-2' file. The complete text of the GNU Lesser General Public License can be found in the -'/usr/share/common-licenses/LGPL-2' file. +'/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_9.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_9.yml deleted file mode 100644 index 1461207c5de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_arduino.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_arduino.RULE index 85e4bbeff11..ba480135f4c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_arduino.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_arduino.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +minimum_coverage: 90 +--- + this file includes licensing information for parts of first, the gnu general public license, which covers the main body @@ -5,7 +11,4 @@ of the processing code (in general, all the stuff inside the 'app' and 'core' subfolders). next, the gnu lesser general public license that covers the core -and libraries. - - - +and libraries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_arduino.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_arduino.yml deleted file mode 100644 index a0204de8b0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_arduino.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_command_and_lib_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_command_and_lib_1.RULE index 9eb8745fa16..e2e48226e93 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_command_and_lib_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_command_and_lib_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - COPYING + - COPYING.LIB +--- + The applications are licensed under the GNU General Public License 2.0 (see COPYING) and the libraries are licensed under the GNU -Lesser General Public License 2.1 (See COPYING.LIB). +Lesser General Public License 2.1 (See COPYING.LIB). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_command_and_lib_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_command_and_lib_1.yml deleted file mode 100644 index 0a6d8b656de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_lgpl-2.1_command_and_lib_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - COPYING - - COPYING.LIB diff --git a/src/licensedcode/data/rules/gpl-2.0_and_mit-old-style-no-advert_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_mit-old-style-no-advert_1.RULE index 41fe7aab145..a3ad884db07 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_mit-old-style-no-advert_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_mit-old-style-no-advert_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND mit-old-style-no-advert +is_license_notice: yes +relevance: 100 +--- + license socat is distributed under the terms of the GNU GPLv2; except for install-sh, which is copyright MIT, with its own license; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_mit-old-style-no-advert_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_mit-old-style-no-advert_1.yml deleted file mode 100644 index 40f416c83c5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_mit-old-style-no-advert_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND mit-old-style-no-advert -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_mit_and_generic-cla_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_mit_and_generic-cla_1.RULE index 61ddf7df9a9..412ae4d83f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_mit_and_generic-cla_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_mit_and_generic-cla_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND mit AND generic-cla +is_license_notice: yes +--- + The Platform is released under the GPL-2.0 license. If you wish to contribute, you must accept that you are aware of the license under which the project is released, and that your contribution will be released under the same license. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_mit_and_generic-cla_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_mit_and_generic-cla_1.yml deleted file mode 100644 index 86a0878f835..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_mit_and_generic-cla_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND mit AND generic-cla -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_1.RULE index aa5ec7f2b58..b0df3fe0af4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 AND other-copyleft +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2020 Don HO +ignorable_holders: + - Don HO +ignorable_emails: + - don.h@free.fr +--- + COPYING -- Describes the terms under which Notepad++ is distributed. A copy of the GNU GPL is appended to this file. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_1.yml deleted file mode 100644 index 16ae9f0ecff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 AND other-copyleft -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2020 Don HO -ignorable_holders: - - Don HO -ignorable_emails: - - don.h@free.fr diff --git a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_1.RULE index ca019e0b682..ef9f643c966 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND other-copyleft AND other-permissive +is_license_notice: yes +relevance: 100 +--- + This product contains software whose rights holders license it on the terms of the GNU General Public License, version 2 (GPLv2) and/or other open source software licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_1.yml deleted file mode 100644 index 9ba91895e4d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND other-copyleft AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_2.RULE index f72d082d43e..df40efecd9c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 AND other-copyleft AND other-permissive +is_license_notice: yes +relevance: 100 +--- + The code is being released under GPL v2 and GPL v2 compatible licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_2.yml deleted file mode 100644 index 9ba91895e4d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_other-copyleft_and_other-permissive_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND other-copyleft AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_other-permissive_1.RULE index b479d85867d..f31fac0a787 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: this other-permissive may be a bsd-original or a bsd-new dependending on versions +--- + Red Hat grants you permission to distribute Cygwin with the following files, which are not considered part of Cygwin and are not governed by GPLv2, in source or binary form. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_other-permissive_1.yml deleted file mode 100644 index 92dbc27a2ee..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: this other-permissive may be a bsd-original or a bsd-new dependending on versions diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer.RULE b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer.RULE index 9ee90e3c636..b3544be4fe4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND patent-disclaimer +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://oss.sgi.com/projects/GenInfo/NoticeExplan +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License @@ -20,4 +28,4 @@ For further information regarding this notice, see: - http://oss.sgi.com/projects/GenInfo/NoticeExplan + http://oss.sgi.com/projects/GenInfo/NoticeExplan \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer.yml b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer.yml deleted file mode 100644 index 12ec066b54a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND patent-disclaimer -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://oss.sgi.com/projects/GenInfo/NoticeExplan diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_1.RULE index 56122c26ead..eb9c3f6a5ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND patent-disclaimer +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -15,4 +20,4 @@ other software, or any other product whatsoever. You should have received a copy of the GNU General Public License along with this program; if not, write the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +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_and_patent-disclaimer_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_1.yml deleted file mode 100644 index 46b062e1f58..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_2.RULE index 4041b794be8..d102b84a9ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND patent-disclaimer +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. @@ -15,4 +20,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. + Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_2.yml deleted file mode 100644 index 46b062e1f58..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_3.RULE index 4b8d786435f..c710806435a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND patent-disclaimer +is_license_notice: yes +ignorable_urls: + - http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ + - http://www.sgi.com/ +--- + * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. @@ -24,4 +32,4 @@ * * For further information regarding this notice, see: * - * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ + * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_3.yml b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_3.yml deleted file mode 100644 index 1d5ad06793a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND patent-disclaimer -is_license_notice: yes -ignorable_urls: - - http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ - - http://www.sgi.com/ - diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_4.RULE b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_4.RULE index 46b8c31e3f6..3221d179681 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND patent-disclaimer +is_license_notice: yes +--- + * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. @@ -11,4 +16,4 @@ * or the like. Any license provided herein, whether implied or * otherwise, applies only to this software file. Patent licenses, if * any, provided herein do not apply to combinations of this program with - * other software, or any other product whatsoever. + * other software, or any other product whatsoever. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_4.yml b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_4.yml deleted file mode 100644 index 46b062e1f58..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_5.RULE b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_5.RULE index 8d3e317f001..d5f744fefc3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND patent-disclaimer +is_license_notice: yes +--- + * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_5.yml b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_5.yml deleted file mode 100644 index 46b062e1f58..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_6.RULE b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_6.RULE index 2aa5cc4f93d..9f18547f5e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 AND patent-disclaimer +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + # This program is free software; you can redistribute it and/or modify # it under the terms of version 2 of the GNU General Public License as # published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_6.yml b/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_6.yml deleted file mode 100644 index b342265f6a0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND patent-disclaimer -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_1.RULE index 569758e0a82..00622795f2e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + # This software is licensed to you under the GNU General Public License, # version 2 (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_1.yml deleted file mode 100644 index cfa255196d2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_10.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_10.RULE index 8bc5923b910..5c50bb97f4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: This project allows for academic research only. +--- + is developing under the terms of the GNU General Public License as published by the Free Software Foundation. The project lunched by You can redistribute it and/or modify it under the terms of the GNU General Public License version 2 (GPLv2) of diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_10.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_10.yml deleted file mode 100644 index cb0140089fe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: This project allows for academic research only. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_11.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_11.RULE index 270b1f90ffa..6e464ff1417 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_11.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +notes: https://github.com/drwetter/testssl.sh/blob/3b89dc6b0a41299fbf462789998e4c103f4f0210/testssl.sh#L19-L22 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/info/GPLv2.html +--- + License: GPLv2, see http://www.fsf.org/licensing/licenses/info/GPLv2.html and accompanying license "LICENSE.txt". Redistribution + modification under this license permitted. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_11.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_11.yml deleted file mode 100644 index 6a7173e06c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_11.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -notes: https://github.com/drwetter/testssl.sh/blob/3b89dc6b0a41299fbf462789998e4c103f4f0210/testssl.sh#L19-L22 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/info/GPLv2.html diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_12.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_12.RULE index 2e1aee89330..12292d7267f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://github.com/drwetter/testssl.sh/blob/3b89dc6b0a41299fbf462789998e4c103f4f0210/testssl.sh#L19-L22 +--- + This program is licensed under GPL-2. Please note also that if you're using the program for a paid or free public service you need mention where you got this program from. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_12.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_12.yml deleted file mode 100644 index 08e4ea746f5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://github.com/drwetter/testssl.sh/blob/3b89dc6b0a41299fbf462789998e4c103f4f0210/testssl.sh#L19-L22 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_13.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_13.RULE index bff579d8322..5d0c945c2a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU General Public License, version 2. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in the file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_13.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_13.yml deleted file mode 100644 index c71dbcff3ad..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_14.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_14.RULE index 00a40669876..f1027c16a46 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + # This software is licensed to you under the GNU General Public License, # version 2 (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_14.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_14.yml deleted file mode 100644 index 0d09df94e05..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_15.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_15.RULE index 1954cb07135..19a570ce36f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU General Public License, version 2. On Debian systems, the text of the GNU General Public License can be found in the file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_15.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_15.yml deleted file mode 100644 index c71dbcff3ad..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_2.RULE index b468eb72327..cf1057e8d4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU General Public License, version 2. On Debian systems, the complete text of the GNU General Public License can be found in the file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_2.yml deleted file mode 100644 index c71dbcff3ad..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_3.RULE index 95ac6b401e6..3d956a3aa3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +notes: Weird notice +ignorable_urls: + - https://opensource.org/licenses/gpl-2.0.php +--- + # License: GPLv2, see https://opensource.org/licenses/gpl-2.0.php and # ccompanying license "LICENSE.txt". Redistribution + modification under this # license permitted. diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_3.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_3.yml deleted file mode 100644 index 6aa1eeb5c21..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -notes: Weird notice -ignorable_urls: - - https://opensource.org/licenses/gpl-2.0.php diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_4.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_4.RULE index 0f0ea744e54..1394dbdd1da 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_4.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license +--- + License This software is free. You can use it under the terms of GPLv2, see LICENSE. In addition starting from version 3.0rc1 if you're offering a scanner based on testssl.sh as a public and / or paid service in the internet you need to mention to your audience that you're using this program and where to get this program from. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_4.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_4.yml deleted file mode 100644 index 2c427504f94..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_5.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_5.RULE index 3ec289151ba..a50e6eb4046 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_5.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_reference: yes +relevance: 90 +notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license +ignorable_urls: + - https://github.com/drwetter/testssl.sh/LICENSE + - https://img.shields.io/github/license/drwetter/testssl.sh +--- + [![License](https://img.shields.io/github/license/drwetter/testssl.sh)](https://github.com/drwetter/testssl.sh/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_5.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_5.yml deleted file mode 100644 index 223497b940e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_reference: yes -relevance: 90 -notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license -ignorable_urls: - - https://github.com/drwetter/testssl.sh/LICENSE - - https://img.shields.io/github/license/drwetter/testssl.sh diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_6.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_6.RULE index 4c13b75c0a7..12afcb426de 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_reference: yes +relevance: 90 +notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license +ignorable_urls: + - https://testssl.sh/LICENSE.txt +--- + GPLv2 see https://testssl.sh/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_6.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_6.yml deleted file mode 100644 index 206649c475f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_reference: yes -relevance: 90 -notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license -ignorable_urls: - - https://testssl.sh/LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_7.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_7.RULE index 00d033f10cd..133fb955428 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_reference: yes +relevance: 90 +notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license +ignorable_urls: + - https://testssl.sh/LICENSE.txt +--- + https://testssl.sh/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_7.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_7.yml deleted file mode 100644 index 206649c475f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_reference: yes -relevance: 90 -notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license -ignorable_urls: - - https://testssl.sh/LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_8.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_8.RULE index 84a666a9537..588b781c40b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 90 +referenced_filenames: + - testssl.sh +notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license +--- + License see testssl.sh \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_8.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_8.yml deleted file mode 100644 index 219622dcd21..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 90 -referenced_filenames: - - testssl.sh -notes: formerly at https://github.com/drwetter/testssl.sh/blob/3.0.1/Readme.md#license diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_9.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_9.RULE index 915cd83ca9d..57dbc23f681 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_9.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + License GPLv2: Free Software Foundation, Inc\. This is free software: you are free to change and redistribute it under the terms of the license\. Usage WITHOUT ANY WARRANTY\. USE at your OWN RISK! If you\'re offering testssl\.sh as a public and / or paid service in the internet you need to mention to your audience that you\'re using this program and where to get this program from\. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_9.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_9.yml deleted file mode 100644 index c71dbcff3ad..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_other_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_other_1.RULE index 90fd6f381d5..616f19da699 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_other_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_other_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: ((gpl-2.0 AND proprietary-license) OR commercial-license) AND generic-cla + AND other-copyleft AND other-permissive +is_license_notice: yes +relevance: 100 +notes: https://github.com/sqlmapproject/sqlmap/blob/master/LICENSE The extra terms added to + the GPL are a likely conflict that would require detailed legal review in all cases. +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +ignorable_emails: + - dev@sqlmap.org + - sales@sqlmap.org +--- + This program is free software; you may redistribute and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; Version 2 (or later) with the clarifications and diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_other_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_other_1.yml deleted file mode 100644 index 32d442d918c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_other_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: ((gpl-2.0 AND proprietary-license) OR commercial-license) AND generic-cla - AND other-copyleft AND other-permissive -is_license_notice: yes -relevance: 100 -notes: https://github.com/sqlmapproject/sqlmap/blob/master/LICENSE The extra terms added to - the GPL are a likely conflict that would require detailed legal review in all cases. -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html -ignorable_emails: - - dev@sqlmap.org - - sales@sqlmap.org diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_others_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_others_1.RULE index 83763dd2984..c7753d64f9c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_others_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_others_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: ((gpl-2.0 AND proprietary-license) OR commercial-license) AND generic-cla + AND other-copyleft AND other-permissive +is_license_notice: yes +relevance: 100 +notes: https://github.com/sqlmapproject/sqlmap/blob/master/LICENSE The extra terms added to + the GPL are a likely conflict that would require detailed legal review in all cases. +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +ignorable_emails: + - dev@sqlmap.org + - sales@sqlmap.org +--- + This program is free software; you may redistribute and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; Version 2 (or later) with the clarifications and diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_others_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_others_1.yml deleted file mode 100644 index 71a96c3bc1c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary-license_or_commercial-license_and_others_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: ((gpl-2.0 AND proprietary-license) OR commercial-license) AND generic-cla - AND other-copyleft AND other-permissive -is_license_notice: yes -relevance: 100 -notes: https://github.com/sqlmapproject/sqlmap/blob/master/LICENSE The extra terms added to - the GPL are a likely conflict that would require detailed legal review in all cases. -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html -ignorable_emails: - - dev@sqlmap.org - - sales@sqlmap.org diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary.RULE index 29e10af7793..6e2026c3580 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +notes: GPL 2.0 with ozone db conflicting advertizing-proprietary-license like terms. See http://www.ozone-db.org/noframes/home/license.html +ignorable_authors: + - the Ozone Database Project (http://www.ozone-db.org/) +ignorable_urls: + - http://www.ozone-db.org/ +--- + This program is free software; you can redistribute it and/or modify it provided that the terms of the GNU General Public License as published by the Free Software Foundation version 2 of diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary.yml deleted file mode 100644 index a3865545b87..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -notes: GPL 2.0 with ozone db conflicting advertizing-proprietary-license like terms. See http://www.ozone-db.org/noframes/home/license.html -ignorable_authors: - - the Ozone Database Project (http://www.ozone-db.org/) -ignorable_urls: - - http://www.ozone-db.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary2.RULE index 854c9f85b51..e295d982977 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +minimum_coverage: 80 +ignorable_copyrights: + - copyrighted by Red Hat and others +ignorable_holders: + - Red Hat and others +ignorable_urls: + - http://fedoraproject.org/wiki/Legal +--- + LICENSE AGREEMENT FEDORA(TM) diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary2.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary2.yml deleted file mode 100644 index 768a47059a5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -minimum_coverage: 80 -ignorable_copyrights: - - copyrighted by Red Hat and others -ignorable_holders: - - Red Hat and others -ignorable_urls: - - http://fedoraproject.org/wiki/Legal diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary3.RULE b/src/licensedcode/data/rules/gpl-2.0_and_proprietary3.RULE index 4375b128616..57e845786ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_proprietary3.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 AND proprietary-license +is_license_notice: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2010 Fedora Project + - copyrighted by Fedora Project and others +ignorable_holders: + - Fedora Project + - Fedora Project and others +ignorable_urls: + - http://fedoraproject.org/wiki/Legal +--- + LICENSE AGREEMENT FEDORA(TM) diff --git a/src/licensedcode/data/rules/gpl-2.0_and_proprietary3.yml b/src/licensedcode/data/rules/gpl-2.0_and_proprietary3.yml deleted file mode 100644 index 2a006b83e29..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_proprietary3.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 AND proprietary-license -is_license_notice: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2010 Fedora Project - - copyrighted by Fedora Project and others -ignorable_holders: - - Fedora Project - - Fedora Project and others -ignorable_urls: - - http://fedoraproject.org/wiki/Legal diff --git a/src/licensedcode/data/rules/gpl-2.0_and_trademark-notice_and_gpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_trademark-notice_and_gpl-generic-additional-terms_1.RULE index 5a83e4cdf55..20659f7e999 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_trademark-notice_and_gpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_trademark-notice_and_gpl-generic-additional-terms_1.RULE @@ -1,3 +1,20 @@ +--- +license_expression: gpl-2.0-plus AND generic-trademark AND gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +notes: This notice may be ambiguous. Seen in https://raw.githubusercontent.com/Tripwire/tripwire-open-source/master/COPYING +ignorable_copyrights: + - copyright 2000 Tripwire, Inc. Tripwire +ignorable_holders: + - Tripwire, Inc. Tripwire +ignorable_authors: + - Tripwire, Inc. +ignorable_urls: + - http://www.tripwire.org/ +ignorable_emails: + - info@tripwire.org +--- + Tripwire Trademark Information The developer of the original code and/or files is Tripwire, Inc. Portions diff --git a/src/licensedcode/data/rules/gpl-2.0_and_trademark-notice_and_gpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_trademark-notice_and_gpl-generic-additional-terms_1.yml deleted file mode 100644 index 6fbfb81370a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_trademark-notice_and_gpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: gpl-2.0-plus AND generic-trademark AND gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -notes: This notice may be ambiguous. Seen in https://raw.githubusercontent.com/Tripwire/tripwire-open-source/master/COPYING -ignorable_copyrights: - - copyright 2000 Tripwire, Inc. Tripwire -ignorable_holders: - - Tripwire, Inc. Tripwire -ignorable_authors: - - Tripwire, Inc. -ignorable_urls: - - http://www.tripwire.org/ -ignorable_emails: - - info@tripwire.org diff --git a/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_1.RULE b/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_1.RULE index 39305c30611..3ce2404d8a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 AND unknown +is_license_text: yes +relevance: 95 +minimum_coverage: 95 +notes: this is a modified GPL text +ignorable_copyrights: + - copyrighted by the Free Software Foundation +ignorable_holders: + - the Free Software Foundation +--- + GNU GPL 2.0 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -38,5 +50,4 @@ This section is intended to make thoroughly clear what is believed to be a conse 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. -10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_1.yml b/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_1.yml deleted file mode 100644 index c370179bef6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 AND unknown -is_license_text: yes -relevance: 95 -minimum_coverage: 95 -notes: this is a modified GPL text -ignorable_copyrights: - - copyrighted by the Free Software Foundation -ignorable_holders: - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_2.RULE b/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_2.RULE index 2bb03d6ba06..da692c72af1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_2.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0 AND unknown +is_license_reference: yes +referenced_filenames: + - license.txt +notes: this is reference to a license that is GPL-like but not exactly +ignorable_emails: + - permission@sei.cmu.edu +--- + 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. Released under a GNU GPL 2.0-style license, please see license.txt or contact permission@sei.cmu.edu for full terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_2.yml b/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_2.yml deleted file mode 100644 index e10a395154c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_and_unknown_trommel_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 AND unknown -is_license_reference: yes -referenced_filenames: - - license.txt -notes: this is reference to a license that is GPL-like but not exactly -ignorable_emails: - - permission@sei.cmu.edu diff --git a/src/licensedcode/data/rules/gpl-2.0_arduino.RULE b/src/licensedcode/data/rules/gpl-2.0_arduino.RULE index 32c8167ffb8..3ef205d4310 100644 --- a/src/licensedcode/data/rules/gpl-2.0_arduino.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_arduino.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE @@ -277,7 +288,4 @@ 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. - - - +POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_arduino.yml b/src/licensedcode/data/rules/gpl-2.0_arduino.yml deleted file mode 100644 index 8cca08482a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_arduino.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE b/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE index c0e32dd8e70..4fa74a978b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_bare_single_word.yml b/src/licensedcode/data/rules/gpl-2.0_bare_single_word.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_bare_single_word.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_bcm.RULE b/src/licensedcode/data/rules/gpl-2.0_bcm.RULE index d224de51244..b1e686ad4e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_bcm.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_bcm.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file - COPYING in the main directory of this source tree + COPYING in the main directory of this source tree \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_bcm.yml b/src/licensedcode/data/rules/gpl-2.0_bcm.yml deleted file mode 100644 index e443c71f823..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_bcm.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_busybox_1.RULE b/src/licensedcode/data/rules/gpl-2.0_busybox_1.RULE index 35829b67f56..71f08d5375f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_busybox_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_busybox_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + BusyBox is licensed under http://www.gnu.org/licenses/old-licenses/gpl-2.0.html the GNU General Public License version , which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat diff --git a/src/licensedcode/data/rules/gpl-2.0_busybox_1.yml b/src/licensedcode/data/rules/gpl-2.0_busybox_1.yml deleted file mode 100644 index 527f3d16b09..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_busybox_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_cal.RULE b/src/licensedcode/data/rules/gpl-2.0_cal.RULE index 6cee9f106c2..0fb05e904fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_cal.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_cal.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/gpl-2.0 +--- + License: [`gpl-2.0`](http://choosealicense.com/licenses/gpl-2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_cal.yml b/src/licensedcode/data/rules/gpl-2.0_cal.yml deleted file mode 100644 index eaead6d05d2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_cal.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/gpl-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_centos_notice_1.RULE b/src/licensedcode/data/rules/gpl-2.0_centos_notice_1.RULE index 3e5376580a3..e52fc015c02 100644 --- a/src/licensedcode/data/rules/gpl-2.0_centos_notice_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_centos_notice_1.RULE @@ -1 +1,7 @@ -The Distribution is released as GPLv2. \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +The Distribution is released as GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_centos_notice_1.yml b/src/licensedcode/data/rules/gpl-2.0_centos_notice_1.yml deleted file mode 100644 index 40bcbb97725..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_centos_notice_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_copying_gplv2.RULE b/src/licensedcode/data/rules/gpl-2.0_copying_gplv2.RULE index 5cebfea7d9c..ab67f37ecf6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_copying_gplv2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_copying_gplv2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +--- + COPYING.GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_copying_gplv2.yml b/src/licensedcode/data/rules/gpl-2.0_copying_gplv2.yml deleted file mode 100644 index 07426034452..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_copying_gplv2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_debian.RULE b/src/licensedcode/data/rules/gpl-2.0_debian.RULE index a6cfc7696fb..dd2210e9029 100644 --- a/src/licensedcode/data/rules/gpl-2.0_debian.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_debian.RULE @@ -1 +1,9 @@ - - GPLv2: /usr/share/common-licenses/GPL-2 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + + - GPLv2: /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_debian.yml b/src/licensedcode/data/rules/gpl-2.0_debian.yml deleted file mode 100644 index c167aa8b28b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_debian.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_debian2.RULE b/src/licensedcode/data/rules/gpl-2.0_debian2.RULE index 3bf67317063..1ff46495344 100644 --- a/src/licensedcode/data/rules/gpl-2.0_debian2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_debian2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + Debian adaptions for these packages are licensed under the GNU General -Public License, version 2, and are under Copyright by: +Public License, version 2, and are under Copyright by: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_debian2.yml b/src/licensedcode/data/rules/gpl-2.0_debian2.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_debian2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.RULE b/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.RULE index 4e8a6603480..2695960157a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.RULE @@ -1 +1,8 @@ -{{gpl 20}} +--- +license_expression: gpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 60 +--- + +{{gpl 20}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.yml b/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.yml deleted file mode 100644 index d7264d2c45a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 60 diff --git a/src/licensedcode/data/rules/gpl-2.0_intel2100_1.RULE b/src/licensedcode/data/rules/gpl-2.0_intel2100_1.RULE index d399ccb38f0..8461d0bbdf4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_intel2100_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_intel2100_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/copyleft/gpl.html +--- + This software program is licensed subject to the GNU General Public License (GPL). Version 2, June 1991, available at \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_intel2100_1.yml b/src/licensedcode/data/rules/gpl-2.0_intel2100_1.yml deleted file mode 100644 index b6d058902bc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_intel2100_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_intel2100_2.RULE b/src/licensedcode/data/rules/gpl-2.0_intel2100_2.RULE index 2bb3c573412..c3c94788d6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_intel2100_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_intel2100_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_intel2100_2.yml b/src/licensedcode/data/rules/gpl-2.0_intel2100_2.yml deleted file mode 100644 index 37643e41a3a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_intel2100_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_intel2100_3.RULE b/src/licensedcode/data/rules/gpl-2.0_intel2100_3.RULE index fa942d7af5c..b8a821ebc3c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_intel2100_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_intel2100_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +--- + Parts of this driver are based on the Intel Pro Wireless 2100 GPL driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_intel2100_3.yml b/src/licensedcode/data/rules/gpl-2.0_intel2100_3.yml deleted file mode 100644 index 07426034452..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_intel2100_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_229.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_229.RULE index 89c1dd8abe5..37e1af71a6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_229.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_229.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/src/linux/COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms of the (modified) GNU General Public License @@ -9,4 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should find a copy of the GNU General Public License in -/usr/src/linux/COPYING; +/usr/src/linux/COPYING; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_229.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_229.yml deleted file mode 100644 index e12ad36968d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_229.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/src/linux/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.RULE index 16df43b89da..d87251ec46b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 60 +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +--- + EXPORT_DATA_SYMBOL_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.yml deleted file mode 100644 index 0b7cd224b69..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_data_symbol_gpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 60 -minimum_coverage: 100 -notes: this is Linux specific and therefore GPLv2, not 1+ or 3 diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.RULE index b034bf79543..1b7d40996da 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 60 +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +--- + EXPORT_SYMBOL_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.yml deleted file mode 100644 index 0b7cd224b69..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 60 -minimum_coverage: 100 -notes: this is Linux specific and therefore GPLv2, not 1+ or 3 diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.RULE index 96990362c82..05904aa1fff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 60 +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +--- + EXPORT_SYMBOL_GPL(d \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.yml deleted file mode 100644 index 0b7cd224b69..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 60 -minimum_coverage: 100 -notes: this is Linux specific and therefore GPLv2, not 1+ or 3 diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.RULE index 3a8811bc13d..8fe9fa8a172 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 60 +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +--- + SYMBOL_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.yml deleted file mode 100644 index 0b7cd224b69..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 60 -minimum_coverage: 100 -notes: this is Linux specific and therefore GPLv2, not 1+ or 3 diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.RULE index 23f056293ae..367549509b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 60 +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +--- + EXPORT_SYMBOL_GPL_FUTURE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.yml deleted file mode 100644 index 0b7cd224b69..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_symbol_gpl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 60 -minimum_coverage: 100 -notes: this is Linux specific and therefore GPLv2, not 1+ or 3 diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.RULE index e0ee3b44f68..9dcd7ed665d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 60 +minimum_coverage: 100 +notes: this is Linux specific and therefore GPLv2, not 1+ or 3 +--- + EXPORT_TRACEPOINT_SYMBOL_GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.yml b/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.yml deleted file mode 100644 index 0b7cd224b69..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_export_tracepoint_symbol_gpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 60 -minimum_coverage: 100 -notes: this is Linux specific and therefore GPLv2, not 1+ or 3 diff --git a/src/licensedcode/data/rules/gpl-2.0_kodi.RULE b/src/licensedcode/data/rules/gpl-2.0_kodi.RULE index c192a27d5bc..2cbda4e1712 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kodi.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kodi.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + You may use, distribute and copy Kodi under the terms of GNU General Public License version 2, which is displayed below. @@ -284,4 +295,4 @@ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS -------------------------------------------------------------------------- +------------------------------------------------------------------------- \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kodi.yml b/src/licensedcode/data/rules/gpl-2.0_kodi.yml deleted file mode 100644 index 8cca08482a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kodi.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_kodi2.RULE b/src/licensedcode/data/rules/gpl-2.0_kodi2.RULE index 2a48271c940..5067e698c69 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kodi2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kodi2.RULE @@ -1 +1,7 @@ -By using this code you agree with our policy and will follow the GPLv2 license as included \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +By using this code you agree with our policy and will follow the GPLv2 license as included \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kodi2.yml b/src/licensedcode/data/rules/gpl-2.0_kodi2.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_kodi2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_licensebutton.RULE b/src/licensedcode/data/rules/gpl-2.0_licensebutton.RULE index 47f6ec67455..5a5a9338bba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_licensebutton.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/GPL/2.0 +--- + https://licensebuttons.net/l/GPL/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_licensebutton.yml b/src/licensedcode/data/rules/gpl-2.0_licensebutton.yml deleted file mode 100644 index d191d02d9b3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/GPL/2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license.RULE index 70374ef1e63..39d3b440fb1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + MODULE_LICENSE("GPL v2") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license.yml b/src/licensedcode/data/rules/gpl-2.0_module_license.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_module_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license2.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license2.RULE index 9fa5489f58e..c5220a4886f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + MODULE_LICENSE("GPLv2") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license2.yml b/src/licensedcode/data/rules/gpl-2.0_module_license2.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_module_license2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license3.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license3.RULE index 25c30e9a231..c52fad2ea99 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + DRIVER_LICENSE("GPL v2") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license3.yml b/src/licensedcode/data/rules/gpl-2.0_module_license3.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_module_license3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license30.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license30.RULE index 7a0bd05b0b3..28d39eadc93 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license30.RULE @@ -1 +1,8 @@ - MODULE_LICENSE("\x47\x50\x4c\x20\x76\x32"); \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +notes: MODULE_LICENSE with "GPL v2" in escaped text +--- + + MODULE_LICENSE("\x47\x50\x4c\x20\x76\x32"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license30.yml b/src/licensedcode/data/rules/gpl-2.0_module_license30.yml deleted file mode 100644 index 4ea643a869b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_module_license30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -notes: MODULE_LICENSE with "GPL v2" in escaped text diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license30_2.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license30_2.RULE index 597b6162653..ca0cf2d792e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license30_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license30_2.RULE @@ -1 +1,8 @@ -"\x47\x50\x4c\x76\x32" \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +notes: MODULE_LICENSE with "GPLv2" in escaped text +--- + +"\x47\x50\x4c\x76\x32" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license30_2.yml b/src/licensedcode/data/rules/gpl-2.0_module_license30_2.yml deleted file mode 100644 index 83bff66255a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_module_license30_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -notes: MODULE_LICENSE with "GPLv2" in escaped text diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license31.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license31.RULE index b91f0c98ecf..925c6bf9a12 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license31.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license31.RULE @@ -1 +1,8 @@ -DRIVER_LICENSE("\x47\x50\x4c\x20\x76\x32"); \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +notes: MODULE_LICENSE with GPL v2 in escaped text +--- + +DRIVER_LICENSE("\x47\x50\x4c\x20\x76\x32"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license31.yml b/src/licensedcode/data/rules/gpl-2.0_module_license31.yml deleted file mode 100644 index 532599fa1b1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_module_license31.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 -notes: MODULE_LICENSE with GPL v2 in escaped text diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license4.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license4.RULE index 4f97efc6709..6f4ad316cd8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + DRIVER_LICENSE("GPLv2") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license4.yml b/src/licensedcode/data/rules/gpl-2.0_module_license4.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_module_license4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_not_above.RULE b/src/licensedcode/data/rules/gpl-2.0_not_above.RULE index ed1e53dd59f..7a461536837 100644 --- a/src/licensedcode/data/rules/gpl-2.0_not_above.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_not_above.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + licensed under the GNU General Public License version 2 See `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_not_above.yml b/src/licensedcode/data/rules/gpl-2.0_not_above.yml deleted file mode 100644 index a7c29c36eb2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_not_above.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_not_unknown_kernel.RULE b/src/licensedcode/data/rules/gpl-2.0_not_unknown_kernel.RULE index 344640272f1..06e86f734a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_not_unknown_kernel.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_not_unknown_kernel.RULE @@ -1,3 +1,10 @@ -licensed under the terms outlined in the file COPYING at the root -of the linux kernel sources. +--- +license_expression: gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- +licensed under the terms outlined in the file COPYING at the root +of the linux kernel sources. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_not_unknown_kernel.yml b/src/licensedcode/data/rules/gpl-2.0_not_unknown_kernel.yml deleted file mode 100644 index 2d21d8729b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_not_unknown_kernel.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_nuget_url_1.RULE b/src/licensedcode/data/rules/gpl-2.0_nuget_url_1.RULE index 68f1782adf0..d29320ee94e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/kvernon/JQueryDataTableSerializer/blob/master/LICENSE.txt +--- + https://github.com/kvernon/JQueryDataTableSerializer/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_nuget_url_1.yml b/src/licensedcode/data/rules/gpl-2.0_nuget_url_1.yml deleted file mode 100644 index 0929dbf3ca1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/kvernon/JQueryDataTableSerializer/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_nuget_url_2.RULE b/src/licensedcode/data/rules/gpl-2.0_nuget_url_2.RULE index ce63678f0c1..50f1602c7af 100644 --- a/src/licensedcode/data/rules/gpl-2.0_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/sergey-tihon/Stanford.NLP.Fsharp/blob/master/LICENSE.txt +--- + https://github.com/sergey-tihon/Stanford.NLP.Fsharp/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_nuget_url_2.yml b/src/licensedcode/data/rules/gpl-2.0_nuget_url_2.yml deleted file mode 100644 index 5e308c4afc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/sergey-tihon/Stanford.NLP.Fsharp/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_nuget_url_3.RULE b/src/licensedcode/data/rules/gpl-2.0_nuget_url_3.RULE index c4eabb20f08..e479a92e08b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_nuget_url_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_nuget_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Vannevelj/VSDiagnostics/blob/master/LICENSE +--- + https://github.com/Vannevelj/VSDiagnostics/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_nuget_url_3.yml b/src/licensedcode/data/rules/gpl-2.0_nuget_url_3.yml deleted file mode 100644 index d7a97c6fff0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_nuget_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Vannevelj/VSDiagnostics/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_only.RULE b/src/licensedcode/data/rules/gpl-2.0_only.RULE index a76aab61d52..3e86b575bc7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_only.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_only.RULE @@ -1,5 +1,12 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + Copyright Notice This software is distributed under the GNU General Public Licence, Version 2. -http://www.gnu.org/copyleft/gpl.html +http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_only.yml b/src/licensedcode/data/rules/gpl-2.0_only.yml deleted file mode 100644 index 8bbe62848ac..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_only.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_only2.RULE b/src/licensedcode/data/rules/gpl-2.0_only2.RULE index 4cdfb3dbe9c..2ab54305b7d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_only2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_only2.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + -- A note on GPL versions BusyBox is distributed under version 2 of the General Public License (included in its entirety, below). Version 2 is the only version of this license which this version of BusyBox (or modified versions derived from this one) may be -distributed under. +distributed under. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_only2.yml b/src/licensedcode/data/rules/gpl-2.0_only2.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_only2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_only3.RULE b/src/licensedcode/data/rules/gpl-2.0_only3.RULE index de4b2639b00..c678ffb41c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_only3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_only3.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + -- A note on GPL versions is distributed under version 2 of the General Public License (included in its entirety, below). Version 2 is the only version of this license which this version of (or modified versions derived from this one) may be -distributed under. +distributed under. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_only3.yml b/src/licensedcode/data/rules/gpl-2.0_only3.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_only3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_only4.RULE b/src/licensedcode/data/rules/gpl-2.0_only4.RULE index 15f0dd9fd66..6d8641e5a9e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_only4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_only4.RULE @@ -1 +1,7 @@ -distributed under version 2 of the General Public License \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +distributed under version 2 of the General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_only4.yml b/src/licensedcode/data/rules/gpl-2.0_only4.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_only4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_only5.RULE b/src/licensedcode/data/rules/gpl-2.0_only5.RULE index f1e5414e672..cca7fa1ebbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_only5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_only5.RULE @@ -1 +1,7 @@ -version 2 of the General Public License \ No newline at end of file +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +version 2 of the General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_only5.yml b/src/licensedcode/data/rules/gpl-2.0_only5.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_only5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_only_402.RULE b/src/licensedcode/data/rules/gpl-2.0_only_402.RULE index b7cc745c7c0..e7de8b1ea00 100644 --- a/src/licensedcode/data/rules/gpl-2.0_only_402.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_only_402.RULE @@ -1 +1,7 @@ -FILE_LICENCE ( GPL2_ONLY ) +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +FILE_LICENCE ( GPL2_ONLY ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_only_402.yml b/src/licensedcode/data/rules/gpl-2.0_only_402.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_only_402.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_agpl-3.0_and_unknown_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_agpl-3.0_and_unknown_1.RULE index 6cf98997fe6..bb8f385a806 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_agpl-3.0_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_agpl-3.0_and_unknown_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (gpl-2.0 OR agpl-3.0) AND unknown +is_license_notice: yes +minimum_coverage: 75 +referenced_filenames: + - COPYING.AGPLv3 + - COPYING.GPLv2 + - PATENTS +--- + is available under the GPL version 2, and AGPL version 3. See [COPYING.AGPLv3][agpllicense], [COPYING.GPLv2][gpllicense], and diff --git a/src/licensedcode/data/rules/gpl-2.0_or_agpl-3.0_and_unknown_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_agpl-3.0_and_unknown_1.yml deleted file mode 100644 index 9455822a4e7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_agpl-3.0_and_unknown_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (gpl-2.0 OR agpl-3.0) AND unknown -is_license_notice: yes -minimum_coverage: 75 -referenced_filenames: - - COPYING.AGPLv3 - - COPYING.GPLv2 - - PATENTS diff --git a/src/licensedcode/data/rules/gpl-2.0_or_anu-license.RULE b/src/licensedcode/data/rules/gpl-2.0_or_anu-license.RULE index 12bb3b702a5..28154adaa4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_anu-license.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_anu-license.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR anu-license +is_license_notice: yes +minimum_coverage: 75 +referenced_filenames: + - ../../COPYING +--- + Distribute under the terms of the GPLv2 (see ../../COPYING) or under the following terms. @@ -16,5 +24,4 @@ RED HAT DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND RED HAT HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, -ENHANCEMENTS, OR MODIFICATIONS. - +ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_anu-license.yml b/src/licensedcode/data/rules/gpl-2.0_or_anu-license.yml deleted file mode 100644 index 527d6e4fe5e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_anu-license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR anu-license -is_license_notice: yes -minimum_coverage: 75 -referenced_filenames: - - ../../COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0.RULE index cc7b6a42dd1..82f0262d27e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +--- + Dual-licensed for use under the Apache License Version 2.0 or the General Public License (GPL) Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0.yml deleted file mode 100644 index 60679c51e98..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_1.RULE index 4e972821455..7bab9ea8a77 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file is dual-licensed; you may select either the GNU General Public License version 2 or Apache License, Version 2.0. See the file COPYING -in the main directory of the Linux distribution for more details. +in the main directory of the Linux distribution for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_1.yml deleted file mode 100644 index 8d978a27457..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_2.RULE index 995ec316ad8..ab7174c5778 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING + - LICENSE.Apache +notes: seen in RocksDB +--- + // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_2.yml deleted file mode 100644 index 41746474c20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING - - LICENSE.Apache -notes: seen in RocksDB diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_3.RULE index 8f5d9dec850..8444ebdb681 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING + - LICENSE.Apache +notes: seen in RocksDB +--- + dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2.0 License (found in the LICENSE.Apache file in the root directory). You may select, at your option, one of the above-listed licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_3.yml deleted file mode 100644 index 41746474c20..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING - - LICENSE.Apache -notes: seen in RocksDB diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_4.RULE index 184fcf6c216..3e61468e250 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_4.RULE @@ -1,3 +1,20 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING + - LICENSE.Apache + - notice.md +ignorable_copyrights: + - Copyright (c) the original author or authors +ignorable_holders: + - the original author or authors +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_4.yml deleted file mode 100644 index a4223ed0821..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_4.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING - - LICENSE.Apache - - notice.md -ignorable_copyrights: - - Copyright (c) the original author or authors -ignorable_holders: - - the original author or authors -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_5.RULE index 00c4e68842e..d229a5cb97c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - maven-plugin/LICENSE.txt +notes: Comments about Maven's own license are ignored as they do not describe the license of + the code here +--- + The Maven plugin is dual-licensed (you may use whichever you prefer) under GPL2 and the Apache License, version 2.0 (Apache2). The text of Apache2 appears in file maven-plugin/LICENSE.txt. Maven itself uses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_5.yml deleted file mode 100644 index 561b3d3eb61..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - maven-plugin/LICENSE.txt -notes: Comments about Maven's own license are ignored as they do not describe the license of - the code here diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_6.RULE index 5dd6eadfdb4..4e0748eade7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + plugin is dual-licensed (you may use whichever you prefer) under GPL2 and the Apache License, version 2.0 (Apache2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_6.yml deleted file mode 100644 index e7e62192b75..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_7.RULE index de879411aa8..439a8bae7f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - LICENSE.Apache +--- + License RocksDB is dual-licensed under both the GPLv2 (found in the COPYING file in the diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_7.yml deleted file mode 100644 index 0cb014b290f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - LICENSE.Apache diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_8.RULE index d777d826a93..6953ead4ba6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_8.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - LICENSE.Apache +--- + License is dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2.0 License (found in the LICENSE.Apache file in the root directory). You may select, at your option, one of the above-listed licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_8.yml deleted file mode 100644 index 0cb014b290f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - LICENSE.Apache diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_9.RULE index fdfe33e38d6..37e4b361818 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_9.RULE @@ -1,3 +1,20 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING + - LICENSE.Apache + - notice.md +ignorable_copyrights: + - Copyright (c) the original author or authors +ignorable_holders: + - the original author or authors +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 +--- + // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_9.yml deleted file mode 100644 index ea340d20f08..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_9.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING - - LICENSE.Apache - - notice.md -ignorable_copyrights: - - Copyright (c) the original author or authors -ignorable_holders: - - the original author or authors -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_and_bsd-new_1.RULE index fd1d5203b07..fb865008e11 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_and_bsd-new_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: (gpl-2.0 OR apache-2.0) AND bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING + - LICENSE.Apache + - LICENSE +--- + // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). diff --git a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_and_bsd-new_1.yml deleted file mode 100644 index 2c59b2a17f7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_apache-2.0_and_bsd-new_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: (gpl-2.0 OR apache-2.0) AND bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING - - LICENSE.Apache - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_1.RULE index 76327adc669..0bda23cc431 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + TTHIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_1.yml deleted file mode 100644 index cb5351ed857..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_2.RULE index 848870266f6..637c41a8beb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +notes: paragraph order is modified from standard notice +--- + 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, version 2; OR the Perl Artistic License. On UNIX and similar diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_2.yml deleted file mode 100644 index 4f44458d6c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 -notes: paragraph order is modified from standard notice diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_3.RULE index 6df381366d2..6435ec59d1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +notes: paragraph order is modified from standard notice +--- + THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_3.yml deleted file mode 100644 index 4f44458d6c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 -notes: paragraph order is modified from standard notice diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_4.RULE index 07b603ce310..5d3d9f9530b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_4.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 OR artistic-perl-1.0 +is_license_notice: yes +referenced_filenames: + - README +--- + You may distribute under the terms of either the of the GNU General Public License version 2 or the Artistic License , as specified in the README file of the Perl distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_4.yml deleted file mode 100644 index b671fa855bf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR artistic-perl-1.0 -is_license_notice: yes -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_5.RULE index ad10f3c58b2..c89c410712d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This library is free software and may be used under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_5.yml deleted file mode 100644 index cb5351ed857..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_artistic-perl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_broadcom-confidential_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_broadcom-confidential_1.RULE index a9bd234ce5b..ab19c7fac60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_broadcom-confidential_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_broadcom-confidential_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR broadcom-confidential +is_license_notice: yes +minimum_coverage: 90 +--- + * <:copyright-BRCM:2012:DUAL/GPL:standard diff --git a/src/licensedcode/data/rules/gpl-2.0_or_broadcom-confidential_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_broadcom-confidential_1.yml deleted file mode 100644 index 1c0f44a63e1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_broadcom-confidential_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR broadcom-confidential -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_broadcom-linking-unmodified_or_proprietary-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_broadcom-linking-unmodified_or_proprietary-license_1.RULE index 7902e61b70f..043ed716664 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_broadcom-linking-unmodified_or_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_broadcom-linking-unmodified_or_proprietary-license_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR broadcom-linking-unmodified OR proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Unless you and execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2 (the “GPL”), @@ -10,4 +18,4 @@ distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from this software. The special exception does not apply to any -modifications of the software. +modifications of the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_broadcom-linking-unmodified_or_proprietary-license_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_broadcom-linking-unmodified_or_proprietary-license_1.yml deleted file mode 100644 index c3b89a2bdf9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_broadcom-linking-unmodified_or_proprietary-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR broadcom-linking-unmodified OR proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-export_cavium.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-export_cavium.RULE index 8200429bc02..375aab5b1e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-export_cavium.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-export_cavium.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-export +is_license_notice: yes +minimum_coverage: 85 +--- + License: one of 'Cavium License' or 'GNU General Public License Version 2' This file is provided under the terms of the Cavium License (see below) @@ -36,4 +42,4 @@ WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES -WITH YOU. +WITH YOU. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-export_cavium.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-export_cavium.yml deleted file mode 100644 index 31696915dcb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-export_cavium.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-export -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new1.RULE index c8badf35363..2438b1a412e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE.GPL +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -14,5 +22,4 @@ 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 full GNU General Public License is included in this distribution -in the file called LICENSE.GPL. - +in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new1.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new1.yml deleted file mode 100644 index 096a919c3ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new10.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new10.RULE index 8f2d5a94cc7..07237ff61f0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE.GPL +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -15,4 +23,4 @@ General Public License for more details. The full GNU General Public License is included in this distribution in the file called LICENSE.GPL. -BSD LICENSE +BSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new10.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new10.yml deleted file mode 100644 index 096a919c3ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new11.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new11.RULE index 96bb30b2f05..ab1f8a8188d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new11.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -19,4 +26,4 @@ Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. The full GNU General Public License is included in this distribution in the file called LICENSE.GPL. -BSD LICENSE +BSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new11.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new11.yml deleted file mode 100644 index a76d2b15cc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new12.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new12.RULE index 275447a08a6..274bab722b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -23,4 +30,4 @@ in the file called LICENSE.GPL. Contact Information: -BSD LICENSE +BSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new12.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new12.yml deleted file mode 100644 index a76d2b15cc2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new13.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new13.RULE index 422fd10fa3a..17fec1f4336 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - COPYING +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -46,4 +54,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new13.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new13.yml deleted file mode 100644 index 8c2f31de8fa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new14.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new14.RULE index 393bc9b0abe..d8ca963f7aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -19,5 +26,4 @@ this program; if not, write to the Free Software Foundation, Inc., The full GNU General Public License is included in this distribution in the file called "COPYING". -BSD LICENSE - +BSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new14.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new14.yml deleted file mode 100644 index d377d6321d4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new15.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new15.RULE index daa67ba6a81..1e06d77ccd4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 80 +--- + If distributed as part of the software, this code is licensed under the terms of the GPL v2. @@ -23,4 +29,4 @@ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new15.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new15.yml deleted file mode 100644 index 5665df6885a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new16.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new16.RULE index 6c6c78e1c26..bab1ea3c738 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 80 +--- + If distributed as part of the Linux kernel, this code is licensed under the terms of the GPL v2. @@ -23,4 +29,4 @@ Otherwise, the following license terms apply: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new16.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new16.yml deleted file mode 100644 index 5665df6885a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new17.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new17.RULE index 02970bc4d21..f961f4dd6c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new17.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -9,4 +14,4 @@ This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. -BSD LICENSE +BSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new17.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new17.yml deleted file mode 100644 index 5aed58c50c8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new19.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new19.RULE index 6be6b961a93..0a7922992dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new19.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +--- + This code is released under both the GPL version 2 and BSD licenses. Either license may be used. The respective licenses are found at -the end of this file. +the end of this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new19.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new19.yml deleted file mode 100644 index 5aed58c50c8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new20.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new20.RULE index ad133e32bd2..1d2df739c8f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new20.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - LICENSE.GPL +ignorable_copyrights: + - Copyright (c) Corporation +ignorable_holders: + - Corporation +--- + * This file is provided under a dual BSD/GPLv2 license. When using or * redistributing this file, you may do so under either license. * diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new20.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new20.yml deleted file mode 100644 index 1bfbe6a51e7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new20.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - LICENSE.GPL -ignorable_copyrights: - - Copyright (c) Corporation -ignorable_holders: - - Corporation diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new21.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new21.RULE index 492f0146c44..249a9a468fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new21.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + This file is provided under a dual BSD/GPLv2 license. When using or - redistributing this file, you may do so under either license. + redistributing this file, you may do so under either license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new21.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new21.yml deleted file mode 100644 index b1d76a87390..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new22.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new22.RULE index 1b4bbcfedd4..c54d9e3737d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new22.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new22.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND bsd-new +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 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new22.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new22.yml deleted file mode 100644 index c952bf336b8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new22.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new23.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new23.RULE index 91ed26ffca4..13e833418bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new23.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new23.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 AND bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +notes: openib +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -31,4 +40,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new23.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new23.yml deleted file mode 100644 index 62969dd59a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new25.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new25.RULE index 2c188a4061a..fd8c1cc4aeb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new25.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + If distributed as part of the Linux kernel, this code is licensed under the terms of the GPL v2. @@ -23,4 +29,4 @@ Otherwise, the following license terms apply: * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new25.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new25.yml deleted file mode 100644 index bc59a6dc971..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new26.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new26.RULE index fbb72b692b7..a377ce7d124 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new26.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new26.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 85 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -35,4 +41,4 @@ 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. +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/gpl-2.0_or_bsd-new26.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new26.yml deleted file mode 100644 index 36b8395a1a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new27.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new27.RULE index f30646fb11d..683b697f899 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new27.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new27.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -50,4 +56,4 @@ 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. + 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/gpl-2.0_or_bsd-new27.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new27.yml deleted file mode 100644 index bc59a6dc971..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new28.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new28.RULE index 974d775dd6a..df500d407dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new28.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new28.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -46,4 +54,4 @@ 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. +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/gpl-2.0_or_bsd-new28.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new28.yml deleted file mode 100644 index 70990876a1a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new29.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new29.RULE index ec487f9a42b..af950c81674 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new29.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new29.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -42,4 +48,4 @@ 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. +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/gpl-2.0_or_bsd-new29.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new29.yml deleted file mode 100644 index bc59a6dc971..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new3.RULE index cc68b6e4177..f57f3e28941 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 85 +ignorable_urls: + - http://datatables.net/license_bsd + - http://datatables.net/license_gpl2 +--- + This source file is free software, under either the GPL v2 license or a BSD style license, available at: http://datatables.net/license_gpl2 @@ -5,4 +14,4 @@ BSD style license, available at: This source 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 license files for details. +or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new3.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new3.yml deleted file mode 100644 index df898f5ea9c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 85 -ignorable_urls: - - http://datatables.net/license_bsd - - http://datatables.net/license_gpl2 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new30.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new30.RULE index 0c2db2fd4ef..ef5cf335779 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new30.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -46,4 +52,4 @@ 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. +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/gpl-2.0_or_bsd-new30.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new30.yml deleted file mode 100644 index bc59a6dc971..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new31.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new31.RULE index 653a6c06407..5e8fce30c3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new31.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new31.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 50 +--- + This program is dual-licensed; you may select either version 2 of -the GNU General Public License ("GPL") or BSD license ("BSD"). +the GNU General Public License ("GPL") or BSD license ("BSD"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new31.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new31.yml deleted file mode 100644 index b4cfe42f6b7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new32.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new32.RULE index 9648ed92f0b..011aae4bedd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new32.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new32.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 85 +--- + This program is free software; you may redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. @@ -25,4 +31,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new32.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new32.yml deleted file mode 100644 index 36b8395a1a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new33.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new33.RULE index 252d2da6c50..61d31216246 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new33.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new33.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +notes: openib +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -38,4 +45,4 @@ 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. +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/gpl-2.0_or_bsd-new33.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new33.yml deleted file mode 100644 index 8440a907af8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new33.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new34.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new34.RULE index e9d53483d80..6c0072db540 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new34.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new34.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -43,4 +53,4 @@ 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. +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/gpl-2.0_or_bsd-new34.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new34.yml deleted file mode 100644 index a9084022aa2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new34.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new35.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new35.RULE index b2e791942fb..6708a9e3f7c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new35.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new35.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -48,4 +56,4 @@ 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. + 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/gpl-2.0_or_bsd-new35.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new35.yml deleted file mode 100644 index 70990876a1a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new36.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new36.RULE index 4e6f5d3fe10..bb0ec6a8b64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new36.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new36.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -47,4 +55,4 @@ 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. +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/gpl-2.0_or_bsd-new36.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new36.yml deleted file mode 100644 index 70990876a1a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new37.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new37.RULE index 6974d24c7fd..6906917c27a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new37.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new37.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_reference: yes +minimum_coverage: 90 +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License(GPL) Version 2, or the BSD-3 Clause license below: @@ -26,4 +32,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new37.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new37.yml deleted file mode 100644 index 19bd7c1cde6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_reference: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new38.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new38.RULE index ceed91f45f5..fd64b1bfa6a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new38.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new38.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + This file is licensed under a dual GPLv2 or BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new38.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new38.yml deleted file mode 100644 index 58ed91ea0f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new38.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new4.RULE index 88b7c3c150b..eb58bbac078 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new4.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +--- + This source file is free software, under either the GPL v2 license or a -BSD style license, +BSD style license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new4.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new4.yml deleted file mode 100644 index 58ed91ea0f2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new40.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new40.RULE index b76eed05389..d10a675a460 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new40.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new40.RULE @@ -1 +1,8 @@ -License: GPLv2 or BSD +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +notes: openib +--- + +License: GPLv2 or BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new40.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new40.yml deleted file mode 100644 index 2a75d06b5f7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new40.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new41.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new41.RULE index 92e047d7c92..6b5a73b566b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new41.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new41.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +notes: openib +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -41,4 +48,4 @@ 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. +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/gpl-2.0_or_bsd-new41.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new41.yml deleted file mode 100644 index 8440a907af8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new41.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new42.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new42.RULE index da764503c94..dd6c67a5e7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new42.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new42.RULE @@ -1 +1,7 @@ -This code is dual-licensed under both GPLv2 and 3-clause BSD. \ No newline at end of file +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + +This code is dual-licensed under both GPLv2 and 3-clause BSD. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new42.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new42.yml deleted file mode 100644 index b1d76a87390..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new43.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new43.RULE index d7ddb09c898..c8920189912 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new43.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new43.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -44,4 +52,4 @@ 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. +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/gpl-2.0_or_bsd-new43.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new43.yml deleted file mode 100644 index 70990876a1a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new44.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new44.RULE index 45a1c622332..8edb2e7b19a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new44.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new44.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -41,4 +47,4 @@ 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. +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/gpl-2.0_or_bsd-new44.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new44.yml deleted file mode 100644 index bc59a6dc971..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new45.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new45.RULE index bb26512ea6f..8bf487ec5e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new45.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new45.RULE @@ -1,5 +1,13 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING +notes: openib +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the {{GNU General Public License}} (GPL) Version 2, available from the file COPYING in the main directory of this source tree, or the -{{BSD license}} below: +{{BSD license}} below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new45.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new45.yml deleted file mode 100644 index 49a259997db..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new46.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new46.RULE index e5660fb8dbb..29a7bb75dec 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new46.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new46.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +--- + * This source file is free software, under either the GPL v2 license or a * BSD style license, as supplied with this software. * diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new46.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new46.yml deleted file mode 100644 index 5aed58c50c8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new46.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new47.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new47.RULE index 26e760d052c..f1b65686a8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new47.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new47.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +--- + is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new47.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new47.yml deleted file mode 100644 index 5aed58c50c8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new47.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new48.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new48.RULE index 1279cf82f25..df4d9cc7192 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new48.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new48.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +--- + licensed under dual license, GPLv2 or BSD at user's choice. All contributions to are expected to use compatible licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new48.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new48.yml deleted file mode 100644 index 0f9e7931570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new49.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new49.RULE index c287d81343f..d7ed30892d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new49.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new49.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +--- + licensed under dual license, GPLv2 or BSD at user's choice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new49.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new49.yml deleted file mode 100644 index 0f9e7931570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new5.RULE index b279474cbf5..440b6cf5e25 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -31,4 +39,4 @@ 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. +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/gpl-2.0_or_bsd-new5.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new5.yml deleted file mode 100644 index 70990876a1a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new6.RULE index 514a08a7ac5..f3566cb1644 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -31,4 +39,4 @@ 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new6.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new6.yml deleted file mode 100644 index 70990876a1a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new7.RULE index 617303add45..0202581c15b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -41,4 +47,4 @@ 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. +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/gpl-2.0_or_bsd-new7.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new7.yml deleted file mode 100644 index bc59a6dc971..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new8.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new8.RULE index 8c017468a2e..e655d4289db 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -12,4 +18,4 @@ 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. +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new8.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new8.yml deleted file mode 100644 index bc59a6dc971..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new9.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new9.RULE index 320b564f002..1a99d08acae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -14,4 +20,4 @@ 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. - BSD LICENSE + BSD LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new9.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new9.yml deleted file mode 100644 index bc59a6dc971..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_1.RULE index 70b91bee5e2..0e51b0fe735 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_1.RULE @@ -1,6 +1,12 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 85 +--- + * 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. * * Alternatively, this software may be distributed under the terms of BSD - * license. + * license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_1.yml deleted file mode 100644 index 36b8395a1a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_10.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_10.RULE index f1cf06663dc..9f1eb85758c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +--- + License: GPL2/BSD 3 clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_10.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_10.yml deleted file mode 100644 index 0f9e7931570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_11.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_11.RULE index f4dc90e68e8..dbea2f78280 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_11.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +--- + GPL2/BSD3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_11.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_11.yml deleted file mode 100644 index 0f9e7931570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_12.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_12.RULE index 0d7f3d8f5a3..70effd6fd89 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_12.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +--- + License GPL2/BSD3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_12.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_12.yml deleted file mode 100644 index 0f9e7931570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_13.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_13.RULE index df604e81e9e..ce809a38b8b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_13.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 99 +--- + License: BSD/GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_13.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_13.yml deleted file mode 100644 index 9779193a614..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_14.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_14.RULE index 866418c2b70..d1f545cebbe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_14.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 99 +--- + BSD/GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_14.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_14.yml deleted file mode 100644 index 9779193a614..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_15.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_15.RULE index a84f440575e..9c2b66fc35e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_15.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 99 +--- + License: GPL2/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_15.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_15.yml deleted file mode 100644 index 9779193a614..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_16.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_16.RULE index 8d156d66ca0..9507c6ab0b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_16.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 99 +--- + GPL2/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_16.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_16.yml deleted file mode 100644 index 9779193a614..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_17.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_17.RULE index 1f3d57b461e..22d6897177b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_17.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed both under GPL v2 and modified BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_17.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_17.yml deleted file mode 100644 index b1d76a87390..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_18.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_18.RULE index 8d627ba9403..edfc246c92f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_18.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + licensed under GPL v2 and modified BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_18.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_18.yml deleted file mode 100644 index b1d76a87390..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_19.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_19.RULE index b555843efd6..ad035d761f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_19.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + under GPL v2 and modified BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_19.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_19.yml deleted file mode 100644 index b1d76a87390..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_2.RULE index a0159114156..d4c228cf208 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +notes: Hostapd dual bsd/gpl +--- + This program is dual-licensed under both the GPL version 2 and BSD license. Either license may be used at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_2.yml deleted file mode 100644 index e943380c225..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -notes: Hostapd dual bsd/gpl diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_20.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_20.RULE index c20c274117c..4cde5a597b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_20.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 99 +--- + icon is licensed under the GPL version 2. Alternatively, the icon may be distributed under the terms of BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_20.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_20.yml deleted file mode 100644 index e4fc45f8152..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_21.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_21.RULE index 3bf8e64342e..31c6a721bdd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_21.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +--- + dual GPLv2/BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_21.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_21.yml deleted file mode 100644 index af8e5817442..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_22.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_22.RULE index 960fc08aef8..e1ea01e100c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_22.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_22.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +--- + dual GPLv2/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_22.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_22.yml deleted file mode 100644 index af8e5817442..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_23.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_23.RULE index 12f1308dc01..559366f83d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_23.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_23.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) Intel Corporation +ignorable_holders: + - Intel Corporation +ignorable_emails: + - linuxwifi@intel.com +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_23.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_23.yml deleted file mode 100644 index 5d59a53142a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_23.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) Intel Corporation -ignorable_holders: - - Intel Corporation -ignorable_emails: - - linuxwifi@intel.com diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_24.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_24.RULE index 7b02ffd7887..a93f0058103 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_24.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_24.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Based on BSD-licensed source modules in the Linux iwlwifi driver, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_24.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_24.yml deleted file mode 100644 index a49e5377dbb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_25.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_25.RULE index d7838b7c7f8..875038f16f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_25.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_25.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +--- + dual-licensed hostapd (GPLv2 and BSD licenses) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_25.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_25.yml deleted file mode 100644 index b1d76a87390..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_26.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_26.RULE index eb166fb9d8a..d27b76ae464 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_26.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_26.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 99 +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_26.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_26.yml deleted file mode 100644 index e4fc45f8152..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_27.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_27.RULE index 58f37293605..f10ce46ca24 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_27.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_27.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. @@ -43,4 +54,4 @@ 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. +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/gpl-2.0_or_bsd-new_27.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_27.yml deleted file mode 100644 index 2f9ae8b5675..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_27.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_28.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_28.RULE index 1c0443eb5e3..3e26f72c83e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_28.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_28.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed under a dual GPLv2 or BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_28.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_28.yml deleted file mode 100644 index e4fc45f8152..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_29.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_29.RULE index cf0fe5ede2f..345e5f80c95 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_29.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_29.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 99 +--- + under a dual GPLv2 or BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_29.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_29.yml deleted file mode 100644 index e4fc45f8152..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_3.RULE index 9c8e358324b..17ee4b0a7c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - COPYING +notes: Hostapd dual bsd/gpl +--- + This program is dual-licensed under both the GPL version 2 and BSD license. Either license may be used at your option. @@ -53,5 +62,4 @@ 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. - +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/gpl-2.0_or_bsd-new_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_3.yml deleted file mode 100644 index bd3e53ed9b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - COPYING -notes: Hostapd dual bsd/gpl diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_30.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_30.RULE index f7f42f87fa1..d74370a8351 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_30.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 99 +--- + licenced under a dual GPLv2 or BSD licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_30.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_30.yml deleted file mode 100644 index e4fc45f8152..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_4.RULE index d37bdd8baf0..eccd53c2107 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - LICENSE.GPL +--- + This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_4.yml deleted file mode 100644 index 4b66c82168c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_5.RULE index a9e8657620d..d81285049c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE.GPL +--- + /* This file is provided under a dual BSD/GPLv2 license. When using or redistributing this file, you may do so under either license. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_5.yml deleted file mode 100644 index b07a9f3738b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_6.RULE index a7483e102d2..4087d3bbfc2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +--- + GPL2/BSD 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_6.yml deleted file mode 100644 index 0f9e7931570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_7.RULE index d54db004e3b..2dc1003b988 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_7.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +--- + This code is released under both the GPL version 2 and BSD - licenses. Either license may be used. + licenses. Either license may be used. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_7.yml deleted file mode 100644 index 5aed58c50c8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_8.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_8.RULE index 9271cb3e58a..e653c19f062 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_8.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +--- + GPL2/BSD 3 clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_8.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_8.yml deleted file mode 100644 index 0f9e7931570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_9.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_9.RULE index 4ed68b88f7d..4b2f70f5201 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_tag: yes +relevance: 100 +--- + license GPL2/BSD 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_9.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_9.yml deleted file mode 100644 index 0f9e7931570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_1.RULE index 2ed8133189e..9ea1718bcd0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - COPYING + - README +--- + * * 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 @@ -6,5 +15,4 @@ * Alternatively, this software may be distributed under the terms of BSD * license. * - * See README and COPYING for more details. - \ No newline at end of file + * See README and COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_1.yml deleted file mode 100644 index edd100bad70..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - COPYING - - README diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_2.RULE index 83dec36706d..420721b2b8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-new +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - README +--- + 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. @@ -5,4 +13,4 @@ published by the Free Software Foundation. Alternatively, this software may be distributed under the terms of BSD license. -See COPYING for more details. +See COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_2.yml deleted file mode 100644 index 59a633ba023..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-new_aes_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-new -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_1.RULE index 38fdeba0f42..0a425b31d3c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +--- + This software is available to you under a choice of one of two licenses. You may choose this file to be licensed under the terms @@ -23,4 +29,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_1.yml deleted file mode 100644 index d62afebf8ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_10.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_10.RULE index 973ae77a710..22292139045 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +--- + files should be dual licensed. The preferred license tag is (GPL-2.0-only OR BSD-2-Clause). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_10.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_10.yml deleted file mode 100644 index 3dcd2ee730d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_11.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_11.RULE index 9b8e7aa6ffe..704a30ad09e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_11.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING +notes: openib +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of EITHER the GNU General Public License version 2 as published by the Free Software Foundation or the BSD @@ -37,4 +49,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_11.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_11.yml deleted file mode 100644 index 9433a3b5e56..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_11.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING -notes: openib -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_12.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_12.RULE index 8f5f21fa6c7..a3516725357 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_12.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +notes: openib +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of EITHER the GNU General Public License version 2 as published by the Free Software Foundation or the BSD @@ -37,4 +48,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_12.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_12.yml deleted file mode 100644 index 57dd00a18a2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_12.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING -notes: openib -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_13.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_13.RULE index 7ce13db58e3..426ddcac342 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, @@ -18,4 +24,4 @@ are met: This program is distributed in the hope 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. +more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_13.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_13.yml deleted file mode 100644 index d62afebf8ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_14.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_14.RULE index 17515cd6a79..63dcf1a676f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_14.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of EITHER the GNU General Public License version 2 as published by the Free Software Foundation or the BSD @@ -38,4 +49,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_14.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_14.yml deleted file mode 100644 index 5bd64378a9d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_14.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_15.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_15.RULE index 71cd7147da5..a4ed932d70e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Alternatively, this file can be distributed under the terms of the GNU General Public License V2 as published by the Free Software Foundation and can be found at https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_15.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_15.yml deleted file mode 100644 index 175c69ada9c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_16.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_16.RULE index 96116695f2b..f9e9432e7b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_16.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +notes: openib +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file COPYING in the main @@ -24,4 +33,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_16.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_16.yml deleted file mode 100644 index 797839e5d2a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_17.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_17.RULE index 5110c0af8cb..ce79e2bdd05 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_17.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of EITHER the GNU General Public License version 2 as published by the Free Software Foundation or the BSD @@ -38,4 +48,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_17.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_17.yml deleted file mode 100644 index bbaf91f3440..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_17.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_19.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_19.RULE index 97cb1194847..14472abd443 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_19.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +notes: per https://web.archive.org/web/20081201111036/http://www.openfabrics.org/software_license.htm + this is a the less common openib bsd-simplified and not a bsd-new +ignorable_urls: + - http://www.fsf.org/copyleft/gpl.html + - http://www.openfabrics.org/software_license.htm +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available at @@ -13,4 +23,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_19.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_19.yml deleted file mode 100644 index fad4a7f80c7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -notes: per https://web.archive.org/web/20081201111036/http://www.openfabrics.org/software_license.htm - this is a the less common openib bsd-simplified and not a bsd-new -ignorable_urls: - - http://www.fsf.org/copyleft/gpl.html - - http://www.openfabrics.org/software_license.htm diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_2.RULE index 9fb131a00f7..0fe9e15026c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_tag: yes +relevance: 100 +--- + License: GPL2/BSD2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_2.yml deleted file mode 100644 index 460b4174cc8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_3.RULE index 41af829733d..6cdb5c11723 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU 1. Redistributions of source code must retain the above copyright @@ -26,4 +34,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_3.yml deleted file mode 100644 index afb897fdcf3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_30.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_30.RULE index e547d4ae427..f2617d28ddd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_30.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +--- + This source code is distributed under a dual license of GPL v2.0 and OpenIB BSD. @@ -24,4 +30,4 @@ 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. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_30.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_30.yml deleted file mode 100644 index d62afebf8ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_4.RULE index 9efdd66165e..b15ab960cfe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -25,4 +33,4 @@ 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. + IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_4.yml deleted file mode 100644 index afb897fdcf3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_5.RULE index 415514bd698..66c9090a3c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -25,4 +33,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_5.yml deleted file mode 100644 index afb897fdcf3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_6.RULE index 3fca00ce892..e4732130106 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_tag: yes +relevance: 100 +--- + GPL/BSD2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_6.yml deleted file mode 100644 index 460b4174cc8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_7.RULE index 3960926136d..4f1e36de127 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -25,4 +33,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_7.yml deleted file mode 100644 index afb897fdcf3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_8.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_8.RULE index aa8d475f3a2..02c07886298 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU 1. Redistributions of source code must retain the above copyright @@ -26,4 +34,4 @@ 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. +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_8.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_8.yml deleted file mode 100644 index afb897fdcf3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_9.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_9.RULE index 39ed01bfc42..fe6585dd63c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + Alternatively, this file can be distributed under the terms of the GNU General Public License V2 as published by the Free Software Foundation and can be found at http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_9.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_9.yml deleted file mode 100644 index f94c7b9bbe9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_or_cpl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_or_cpl-1.0_1.RULE index 2c28c64c420..d9933361e20 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_or_cpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_or_cpl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR bsd-simplified OR cpl-1.0 +is_license_tag: yes +relevance: 100 +--- + Any one of the GPLv2, a 2 clause BSD license or the CPLv1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_or_cpl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_or_cpl-1.0_1.yml deleted file mode 100644 index e8ac7508724..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-simplified_or_cpl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-simplified OR cpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-unmodified_9.RULE b/src/licensedcode/data/rules/gpl-2.0_or_bsd-unmodified_9.RULE index d1a8f69c269..ba0eb482af7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-unmodified_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_bsd-unmodified_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR bsd-unmodified +is_license_notice: yes +minimum_coverage: 85 +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -39,4 +45,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_bsd-unmodified_9.yml b/src/licensedcode/data/rules/gpl-2.0_or_bsd-unmodified_9.yml deleted file mode 100644 index f3af8f68fb0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_bsd-unmodified_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR bsd-unmodified -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_1.RULE index 2c29c41cb5a..e280923bf4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_tag: yes +relevance: 100 +--- + license (GPL-2.0 or OEM) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_1.yml deleted file mode 100644 index 59bc06421ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_2.RULE index c80c4dd1d11..4bea05a5a57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_tag: yes +relevance: 100 +--- + (GPL-2.0 or OEM) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_2.yml deleted file mode 100644 index 59bc06421ca..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_3.RULE index 44a22600c23..a7c0f659bb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +relevance: 100 +notes: Seen in libminigui +--- + This is our licensing policy in brief: Our software is 100% GPL, and if yours is also 100% GPL, then you never have to pay us for the licences. In all other instances, you are better served diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_3.yml deleted file mode 100644 index d58f99f2fa4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -relevance: 100 -notes: Seen in libminigui diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_4.RULE index dc918e89b52..d9493349c13 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: Seen in libminigui +--- + Licensing software is licensed under the GPL license. The formal terms diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_4.yml deleted file mode 100644 index b841fe918f3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: Seen in libminigui diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_5.RULE index 6a6e3075731..0989e98c880 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +relevance: 100 +notes: Seen in libminigui +--- + Free use for those who are 100% GPL If your application is licensed under GPL, you are free and welcome diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_5.yml deleted file mode 100644 index d58f99f2fa4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -relevance: 100 -notes: Seen in libminigui diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_6.RULE index 68750796a89..63790548f6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.cesanta.com/license + - https://www.gnu.org/licenses/ +--- + This software is dual-licensed: 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. For the terms of this diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_6.yml deleted file mode 100644 index a3e54b42d6d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.cesanta.com/license - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_7.RULE index 5c344a3a754..64e198641fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.cesanta.com/license +--- + This software is dual-licensed: 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. For the terms of this diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_7.yml deleted file mode 100644 index 1263af012b0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-license_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.cesanta.com/license diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_1.RULE index 8400eb2d6f6..a3f69456970 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.scitechsoft.com/license/ +ignorable_emails: + - license@scitechsoft.com +--- + This file may be distributed and/or modified under the terms of the GNU General Public License version 2.0 as published by the Free Software Foundation and appearing in the file LICENSE.GPL included @@ -16,4 +26,4 @@ the licensing options available and how to purchase a Commercial License Agreement. Contact license@scitechsoft.com if any conditions of this licensing -are not clear to you, or you have questions about licensing options. +are not clear to you, or you have questions about licensing options. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_1.yml deleted file mode 100644 index 7b22df218a1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.scitechsoft.com/license/ -ignorable_emails: - - license@scitechsoft.com diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_2.RULE index c939918737b..62fe9281ddd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + <:label-BRCM:2012:DUAL/GPL:standard This program is free software; you can redistribute it and/or modify @@ -14,4 +22,4 @@ A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -:> \ No newline at end of file +:> \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_2.yml deleted file mode 100644 index 27b7eeec8de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_3.RULE index 058d4a59a66..83559773a6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available at diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_3.yml deleted file mode 100644 index 27b7eeec8de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_4.RULE index 60fad4be0a2..b0ac6c8a3c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_4.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) Broadcom Corporation +ignorable_holders: + - Broadcom Corporation +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + <:copyright-BRCM:2007:DUAL/GPL:standard Copyright (c) Broadcom Corporation @@ -15,5 +27,4 @@ A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or by writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. - \ No newline at end of file + Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_4.yml deleted file mode 100644 index 2c9070da8ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_4.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) Broadcom Corporation -ignorable_holders: - - Broadcom Corporation -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_5.RULE index 35bd7c2f258..1f6a547cf3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_5.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) Broadcom Corporation +ignorable_holders: + - Broadcom Corporation +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + /************************************************************ * * <:copyright-BRCM::DUAL/GPL:standard @@ -17,4 +29,4 @@ * * A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or by * writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_5.yml deleted file mode 100644 index 2c9070da8ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_5.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) Broadcom Corporation -ignorable_holders: - - Broadcom Corporation -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_6.RULE index 25d2a2e7a93..f399d80b2eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 OR commercial-license +is_license_notice: yes +--- + * Unless you and Broadcom execute a separate written software license agreement * governing use of this software, this software is licensed to you under the * terms of the GNU General Public License version 2 (GPLv2). @@ -9,4 +14,4 @@ * 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 (GPLv2) for more details. + * General Public License version 2 (GPLv2) for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_6.yml deleted file mode 100644 index 5ba9247821c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_commercial-option_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_1.RULE index 21120469c89..ddc35086fc4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR epl-1.0 +is_license_notice: yes +relevance: 100 +notes: Comments about Eclipse's own license are ignored as they do not describe the license + of the code here +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v10.php +--- + The Eclipse plugin is dual-licensed (you may use whichever you prefer) under GPL2 and the Eclipse Public License Version 1.0 (EPL). EPL appears http://www.eclipse.org/org/documents/epl-v10.php. Eclipse diff --git a/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_1.yml deleted file mode 100644 index 68acd3286dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR epl-1.0 -is_license_notice: yes -relevance: 100 -notes: Comments about Eclipse's own license are ignored as they do not describe the license - of the code here -ignorable_urls: - - http://www.eclipse.org/org/documents/epl-v10.php diff --git a/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_2.RULE index 1fd4e266540..97dc9507317 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 OR epl-1.0 +is_license_notice: yes +relevance: 100 +--- + plugin is dual-licensed (you may use whichever you prefer) under GPL2 and the Eclipse Public License Version 1.0 (EPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_2.yml deleted file mode 100644 index 04c3eccd19a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_epl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR epl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_1.RULE index 4da5eaa3617..b7873e160dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 OR gfdl-1.1-plus +is_license_notice: yes +--- + This file is dual-licensed: you can use it either under the terms of the GPL 2.0 or the GFDL 1.1+ license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -22,4 +27,4 @@ and no Back-Cover Texts. A copy of the license is included at Documentation/media/uapi/fdl-appendix.rst. - TODO: replace it to GPL-2.0 OR GFDL-1.1-or-later WITH no-invariant-sections + TODO: replace it to GPL-2.0 OR GFDL-1.1-or-later WITH no-invariant-sections \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_1.yml deleted file mode 100644 index 65b224c241b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_2.RULE index 77b84cd02b2..0bccb52b188 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_2.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 OR gfdl-1.1-plus +is_license_notice: yes +--- + This file is dual-licensed: you can use it either under the terms of the GPL 2.0 or the GFDL 1.1+ license, at your option. Note that this dual licensing only applies to this file, and not this project as a - whole. + whole. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_2.yml deleted file mode 100644 index 65b224c241b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gfdl-1.1-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR gfdl-1.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-1.0-plus_or_artistic-perl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-1.0-plus_or_artistic-perl-1.0_1.RULE index 214eb24d460..efe029fa6ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-1.0-plus_or_artistic-perl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-1.0-plus_or_artistic-perl-1.0_1.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-2.0 OR gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +--- + Perl is free software. It can be redistributed under the terms of either the GNU General Public License version 2 as published by the Free Software Foundation (either version 1 or any later version) or the Artistic License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-1.0-plus_or_artistic-perl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-1.0-plus_or_artistic-perl-1.0_1.yml deleted file mode 100644 index afa10d9a469..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-1.0-plus_or_artistic-perl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_1.RULE index bcb46c24a13..3b6bb2f7145 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + 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 or (at your option) diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_1.yml deleted file mode 100644 index f0e0bd3dca6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_or_mit.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_or_mit.RULE index d64277fbc54..192fd478b96 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_or_mit.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_or_mit.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +relevance: 99 +notes: Xen dual mit or GPL 2 only with minor text variation +--- + is distributed under the following license: This program is free software; you can redistribute it and/or @@ -22,4 +29,4 @@ 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. + IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_or_mit.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_or_mit.yml deleted file mode 100644 index 0ca56fd2b66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-2.0_or_mit.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -relevance: 99 -notes: Xen dual mit or GPL 2 only with minor text variation diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0-plus_1.RULE index 2450791e107..d87dbb1ab22 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +minimum_coverage: 85 +notes: see https://community.kde.org/Policies/Licensing_Policy +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 @@ -13,4 +22,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0-plus_1.yml deleted file mode 100644 index 80bf51bdab3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -minimum_coverage: 85 -notes: see https://community.kde.org/Policies/Licensing_Policy -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_1.RULE index d94c92ef37e..e1a4d952fff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +notes: gpl 2 or 3, and no other versions +--- + 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; version 2 dated June, 1991, or diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_1.yml deleted file mode 100644 index 2dda2a50fdf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -notes: gpl 2 or 3, and no other versions diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_10.RULE index e23ed63e9bc..16ba4e41425 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_10.RULE @@ -1 +1,7 @@ -distributed under the term of the GNU General Public License (GPL) version 2 or (at your option) version 3. +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +distributed under the term of the GNU General Public License (GPL) version 2 or (at your option) version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_10.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_10.yml deleted file mode 100644 index f0e0bd3dca6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.RULE index dfe67b75e1f..9e7c7c51c3a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +--- + 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 or 3 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.yml deleted file mode 100644 index f1eb5209d71..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_12.RULE index 1a86c3ce349..288821e0d2f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License: GPL-2 or GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_12.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_12.yml deleted file mode 100644 index ce8881ac44e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_13.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_13.RULE index 0663bf14d94..955e3f8c58e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Distributed under choice of GPL-2 or GPL-3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_13.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_13.yml deleted file mode 100644 index f0e0bd3dca6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_14.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_14.RULE index e479b9b38fd..04b58084b87 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_14.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: from xpdf +--- + open source, dual licensed under GPL v2 and GPL v3. You can distribute derivatives of under any of (1) GPL v2 only, (2) GPL v3 only, or (3) GPL v2 or v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_14.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_14.yml deleted file mode 100644 index 2b5f79feb82..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: from xpdf diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_15.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_15.RULE index 9977c834da4..183b74c9a8b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_15.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: from xpdf +--- + open source, dual licensed under GPL v2 and GPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_15.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_15.yml deleted file mode 100644 index 2b5f79feb82..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: from xpdf diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_16.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_16.RULE index 50f810a386b..1fba9a9bf22 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + this file can be distributed under the terms of the GNU General Public License V2 or V3 as published by the Free Software Foundation and can be found at http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_16.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_16.yml deleted file mode 100644 index 9bd4de4cdab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_17.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_17.RULE index 2484e20a14a..a1ec1616490 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_17.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 93 +notes: gpl 2 or 3, and no other versions +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 dated June, 1991, or diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_17.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_17.yml deleted file mode 100644 index d413091af1b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_17.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 93 -notes: gpl 2 or 3, and no other versions -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_18.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_18.RULE index 43e11b1de2a..a842e5c2916 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + this file can be distributed under the terms of the GNU General Public License V2 or V3 as published by the Free Software Foundation and can be found at https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_18.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_18.yml deleted file mode 100644 index f4d4e5b3054..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_19.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_19.RULE index e5aaae4a383..5448043f25f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 or 3 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_19.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_19.yml deleted file mode 100644 index 8b12ad2be84..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_2.RULE index 105c5b47f09..251c207cb81 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +notes: gpl 2 or 3, and no other versions +--- + This software comes with ABSOLUTELY NO WARRANTY. Dnsmasq is free software, and you are welcome to redistribute it under the terms of the GNU General Public License, version 2 or 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_2.yml deleted file mode 100644 index 2dda2a50fdf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -notes: gpl 2 or 3, and no other versions diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_20.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_20.RULE index 896e93cace4..cfb4a08f939 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_20.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 OR 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 2 or 3 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_20.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_20.yml deleted file mode 100644 index f1eb5209d71..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_21.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_21.RULE index 1927010d08a..d7c18a10fbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +notes: Seen in https://www.remlab.net/ndisc6/ +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This program is free software: you can redistribute and/or modify * * it under the terms of the {{GNU General Public License}} as published by * * the Free Software Foundation, {{versions 2 or 3}} of the license. * diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_21.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_21.yml deleted file mode 100644 index ae59f9d793e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -notes: Seen in https://www.remlab.net/ndisc6/ -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_3.RULE index fe4642be0cf..a58074a43b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +notes: gpl 2 or 3, and no other versions +--- + is free software, and you are welcome to redistribute it under the terms of the GNU General Public License, version 2 or 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_3.yml deleted file mode 100644 index 2dda2a50fdf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -notes: gpl 2 or 3, and no other versions diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_4.RULE index dcd660e6885..f90f6992b4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +notes: gpl 2 or 3, and no other versions +--- + This program is free software: you can redistribute it and/or modify it under the terms of either version 2 or version 3 of the GNU General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_4.yml deleted file mode 100644 index 2dda2a50fdf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -notes: gpl 2 or 3, and no other versions diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_5.RULE index dabdc7a5a5f..4fc10e15159 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +minimum_coverage: 93 +notes: gpl 2 or 3, and no other versions +--- + This program is free software: you can redistribute it and/or modify it under the terms of either version 2 or version 3 of the GNU General Public License as published by the Free Software Foundation. @@ -5,4 +12,4 @@ 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. +details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_5.yml deleted file mode 100644 index c59db272812..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -minimum_coverage: 93 -notes: gpl 2 or 3, and no other versions diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_6.RULE index f73d14350eb..85fc109f2b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +minimum_coverage: 93 +notes: gpl 2 or 3, and no other versions +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; version 2 dated June, 1991, or diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_6.yml deleted file mode 100644 index 8b27739b934..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -minimum_coverage: 93 -notes: gpl 2 or 3, and no other versions -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_7.RULE index 7949b4c0e1f..ae0844c3b3b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +notes: gpl 2 or 3, and no other versions +--- + This program is free software: you can redistribute it and/or modify it under the terms of either version 2 or version 3 of the GNU General Public License @@ -12,4 +18,4 @@ For a license to use the software under conditions other than those described by the GNU General Public License, or for technical support for this software, contact -For further information, see the licensing section in the documentation. +For further information, see the licensing section in the documentation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_7.yml deleted file mode 100644 index 2dda2a50fdf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -notes: gpl 2 or 3, and no other versions diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_8.RULE index e2e583a18a3..f46ba06221d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +notes: gpl 2 or 3 +--- + # This program comes with ABSOLUTELY NO WARRANTY; it may be copied or modified # under the terms of the GNU General Public License version 2 or 3 as -# published by the Free Software Foundation. +# published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_8.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_8.yml deleted file mode 100644 index 28c11c2afc3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -notes: gpl 2 or 3 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_9.RULE index 3ede8bbcbde..6d4586edf2e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL v2, or (at your option) v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_9.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_9.yml deleted file mode 100644 index f0e0bd3dca6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_and_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_and_lgpl-2.1-plus_1.RULE index 6b69876057b..77aaa581bf4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_and_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_and_lgpl-2.1-plus_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: (gpl-2.0 OR gpl-3.0) AND lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - GPL-3 + - LGPL-2.1 + - LGPL-3 + - R_DOC_DIR/COPYRIGHTS +ignorable_urls: + - https://www.r-project.org/Licenses +--- + This software is distributed under the terms of the GNU General Public License, either Version 2, June 1991 or Version 3, June 2007. The terms of version 2 of the license are in a file called COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_and_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_and_lgpl-2.1-plus_1.yml deleted file mode 100644 index 9e1fa9c7dac..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_and_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: (gpl-2.0 OR gpl-3.0) AND lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - GPL-3 - - LGPL-2.1 - - LGPL-3 - - R_DOC_DIR/COPYRIGHTS -ignorable_urls: - - https://www.r-project.org/Licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_1.RULE index 0b917b60145..775049d3d71 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING3 + - APACHE-2.0.txt +--- + Apache Licensing The following modules are licensed under the GNU General Public License (GPL), version 2 or 3, or the Apache License 2.0. This means that you can distribute diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_1.yml deleted file mode 100644 index c52d2af6c36..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING3 - - APACHE-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_2.RULE index 2b6faea2da2..286ac7937fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +notes: seen in xpdf +--- + licensed under the GNU General Public License (GPL), version 2 or 3, or the Apache License 2.0. This means that you can distribute derivates of those modules under any combination of one or more of the diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_2.yml deleted file mode 100644 index 6744450b0d8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -notes: seen in xpdf diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_3.RULE index 01a67f3c3e2..d155110c8dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_3.RULE @@ -1,2 +1,13 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING3 + - APACHE-2.0.txt +notes: seen in xpdf +--- + This package includes the text of all three licenses: COPYING for GPL v2, COPYING3 for GPL v3, APACHE-2.0.txt for Apache v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_3.yml deleted file mode 100644 index 172220a765f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_apache-2.0_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING3 - - APACHE-2.0.txt -notes: seen in xpdf diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_1.RULE index 899b77fe905..b2a491344be 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_1.yml deleted file mode 100644 index 300f8c1db66..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_2.RULE index b77ba68542a..b3faabee4f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_2.yml deleted file mode 100644 index 2f7a96fa86b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_3.RULE index 843c9ed6d7f..c266b6606ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +relevance: 100 +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 2 of diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_3.yml deleted file mode 100644 index b438c9bf954..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_4.RULE index 37b1cc9ba29..7bde21dcf4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_4.yml deleted file mode 100644 index b29571f3168..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_5.RULE index e14098adafd..5811acd8afe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +relevance: 100 +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 2 of the License or ( at diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_5.yml deleted file mode 100644 index dcd7c15491f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_6.RULE index 2024deaf0e2..4311515556e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_6.yml deleted file mode 100644 index b29571f3168..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_7.RULE index 15859087fae..682b2d9b516 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License or ( at diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_7.yml deleted file mode 100644 index 2f7a96fa86b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_or_kde-accepted-gpl_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-2.0_or_ibm-pibs_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_ibm-pibs_1.RULE index 80278186238..df606a46079 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_ibm-pibs_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_ibm-pibs_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR ibm-pibs +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - COPYRIGHT I B M CORPORATION 1995 +ignorable_holders: + - I B M CORPORATION +--- + This source code is dual-licensed. You may use it under the terms of the GNU General Public License version 2, or under the license below. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_ibm-pibs_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_ibm-pibs_1.yml deleted file mode 100644 index 3bed06e433a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_ibm-pibs_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR ibm-pibs -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - COPYRIGHT I B M CORPORATION 1995 -ignorable_holders: - - I B M CORPORATION diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0-plus_1.RULE index f74f8702bb2..5228283bd00 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - LICENSE +--- + This program is free software, distributed under the terms of the GNU General Public License Version 2. See the LICENSE file at the top of the source tree. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index a9e592280ef..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_1.RULE index 68b85018d84..59f1331402e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: rpm dual +ignorable_copyrights: + - Copyright (c) by Red Hat Software, Inc. +ignorable_holders: + - Red Hat Software, Inc. +--- + RPM is Copyright (c) by Red Hat Software, Inc., and may be distributed under the terms of the GPL and LGPL (see the file COPYING for details) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_1.yml deleted file mode 100644 index 641479a5237..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -notes: rpm dual -ignorable_copyrights: - - Copyright (c) by Red Hat Software, Inc. -ignorable_holders: - - Red Hat Software, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_2.RULE index 7a0a111df18..1c2c2e8acc4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_2.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.0 +is_license_notice: yes +notes: rpm dual +ignorable_copyrights: + - Copyright (c) by Red Hat Software, Inc. +ignorable_holders: + - Red Hat Software, Inc. +--- + RPM is Copyright (c) by Red Hat Software, Inc., and may be distributed under the terms of the GPL and LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_2.yml deleted file mode 100644 index 53bf85f8535..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.0 -is_license_notice: yes -notes: rpm dual -ignorable_copyrights: - - Copyright (c) by Red Hat Software, Inc. -ignorable_holders: - - Red Hat Software, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_3.RULE index b190e8f6bc2..43897fe8003 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_3.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.0 +is_license_notice: yes +relevance: 100 +notes: rpm dual +--- + RPM is Copyright and may be distributed under the terms of the GPL and LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_3.yml deleted file mode 100644 index a9af105e1b1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.0 -is_license_notice: yes -relevance: 100 -notes: rpm dual diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_7.RULE index bad01ad00b6..0f5f8c8e1bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual licensed under the GPL or LGPL version 2 licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_7.yml deleted file mode 100644 index ad6e3c08bb0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_1.RULE index 9704f628373..9edba3b4a65 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_1.RULE @@ -1,5 +1,10 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.1 +is_license_notice: yes +--- + * This code is released using a dual license strategy: GPL/LGPL * You can choose the licence that better fits your requirements. * * Released under the terms of the GNU General Public License Version 2.0 - * Released under the terms of the GNU Lesser General Public License Version 2.1 + * Released under the terms of the GNU Lesser General Public License Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_1.yml deleted file mode 100644 index 3d040d476b8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_2.RULE index a7162307cc9..33892c5a264 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + free to use and redistribute in open source or proprietary applications under the terms of any of the open source GPLv2 or LGPLv2.1 licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_2.yml deleted file mode 100644 index f4032d9964e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_3.RULE index 137a5b30bf8..7b569c952e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.1 +is_license_notice: yes +relevance: 100 +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 (GPLv2 only) ! or the terms of the GNU Lesser General Public License (LGPLv2.1 only) diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_3.yml deleted file mode 100644 index d976a644d46..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_4.RULE index 86f7578e874..8e08789d845 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.1 +is_license_notice: yes +relevance: 100 +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 (GPLv2 only) ! or the terms of the GNU Lesser General Public License (LGPLv2.1 only) diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_4.yml deleted file mode 100644 index 06ee397ac42..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_1.RULE index 3301efd036a..f8b225c090d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.1 OR mpl-1.1 +is_license_tag: yes +relevance: 100 +--- + MPL 1.1/GPL 2.0/LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_1.yml deleted file mode 100644 index ba8fff423db..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.1 OR mpl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_2.RULE index 4875a556664..f5b0e145e6e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.1 OR mpl-1.1 +is_license_tag: yes +relevance: 100 +--- + License: GPL-2 | LGPL-2.1 | MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_2.yml deleted file mode 100644 index ba8fff423db..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.1 OR mpl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_3.RULE index 4b75d6988e3..d415f3fd641 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR lgpl-2.1 OR mpl-1.1 +is_license_notice: yes +minimum_coverage: 30 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + #License #GPL 2.0/LGPL 2.1/MPL 1.1 tri-license @@ -13,4 +21,4 @@ #Boston #MA 02110-1301 USA -#You should have received a copy of the Mozilla Public License along with this library; if not, visit http://www.mozilla.org/MPL/MPL-1.1.html +#You should have received a copy of the Mozilla Public License along with this library; if not, visit http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_3.yml deleted file mode 100644 index 834f80cee3f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_lgpl-2.1_or_mpl-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR lgpl-2.1 OR mpl-1.1 -is_license_notice: yes -minimum_coverage: 30 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_1.RULE index 83bc9ac1aad..02ec9204d72 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +referenced_filenames: + - COPYING +notes: openib seen in openfabrics +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -24,4 +32,4 @@ 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. + SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_1.yml deleted file mode 100644 index ea07900e3dd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -referenced_filenames: - - COPYING -notes: openib seen in openfabrics diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_10.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_10.RULE index d490fd2edde..213a6ddccb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +notes: openib +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU @@ -24,4 +30,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_10.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_10.yml deleted file mode 100644 index c34c89a5549..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_11.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_11.RULE index 3fead8da2ca..22bec6460f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_11.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +referenced_filenames: + - COPYING +notes: openib +--- + /* GPLv2 or OpenIB.org BSD (MIT) See COPYING file */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_11.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_11.yml deleted file mode 100644 index 39984d1e723..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -referenced_filenames: - - COPYING -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_12.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_12.RULE index 7b52e01e3df..85083338581 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_12.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +referenced_filenames: + - COPYING +notes: found in the kernel 5rc3. There are typos in this notice +--- + * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_12.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_12.yml deleted file mode 100644 index c21e17783a6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -referenced_filenames: - - COPYING -notes: found in the kernel 5rc3. There are typos in this notice diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_13.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_13.RULE index dfc1db73b49..83576e64243 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +relevance: 99 +notes: openib, but a word is missing +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU @@ -23,4 +30,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_13.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_13.yml deleted file mode 100644 index 0ea718a5e32..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -relevance: 99 -notes: openib, but a word is missing diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_2.RULE index 7f4ad009603..0f5ebe3925f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +relevance: 98 +referenced_filenames: + - COPYING +notes: openib seen in openfabrics with typos +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the fileA @@ -24,4 +33,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_2.yml deleted file mode 100644 index 6e585d36009..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -relevance: 98 -referenced_filenames: - - COPYING -notes: openib seen in openfabrics with typos diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_4.RULE index 7f790cdcfec..30e56ac5731 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +relevance: 98 +referenced_filenames: + - COPYING +notes: openib +--- + This software is waitailable to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, waitailable from the file @@ -24,4 +33,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_4.yml deleted file mode 100644 index 20e2a3b9a55..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -relevance: 98 -referenced_filenames: - - COPYING -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_6.RULE index 0174cb8e3e4..6fd29c87626 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +notes: openib +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -22,4 +28,4 @@ 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. +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/gpl-2.0_or_linux-openib_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_6.yml deleted file mode 100644 index c34c89a5549..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_7.RULE index d07ba96d3a8..f06efec8ac1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +referenced_filenames: + - COPYING +notes: openib +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -24,4 +32,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_7.yml deleted file mode 100644 index 359616aba8d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -referenced_filenames: - - COPYING -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_8.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_8.RULE index 52ea6a5a0dd..9031baeb172 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +relevance: 90 +minimum_coverage: 95 +referenced_filenames: + - COPYING +notes: found in the kernel 4.13. There are MANY typos in this notice, hence the low relevance +--- + This software is available to you under a choice of one of two licenses. You may choose to be licensed under the terms of the GNU General Public License (GPL) Version 2, available from the file @@ -24,4 +34,4 @@ NONINFRINGEMENT. NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS THE -SOFTWARE. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_8.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_8.yml deleted file mode 100644 index f068ece7a16..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -relevance: 90 -minimum_coverage: 95 -referenced_filenames: - - COPYING -notes: found in the kernel 4.13. There are MANY typos in this notice, hence the low relevance diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_9.RULE b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_9.RULE index dbcc19a4c48..35f7173c24c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR linux-openib +is_license_notice: yes +referenced_filenames: + - COPYING +notes: openib +--- + This software is dual licensed under the GNU General License Version 2, June 1991 as shown in the file COPYING in the top-level directory of this source tree or the BSD 2-Clause License provided below. You have the @@ -25,4 +33,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_9.yml b/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_9.yml deleted file mode 100644 index 359616aba8d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_linux-openib_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR linux-openib -is_license_notice: yes -referenced_filenames: - - COPYING -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit.RULE index bdc01a6d1d3..621b7a03a28 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +--- + 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; or, when distributed @@ -20,4 +27,4 @@ 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. + IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit.yml deleted file mode 100644 index 1352951eef2..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_1.RULE index 1de4c1e6c4f..810ba9707d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + Dual licensed under the MIT or GPL Version 2 licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_1.yml deleted file mode 100644 index 7898d034769..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_10.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_10.RULE index 899034c8b4a..de8126c3c1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + # License -Dual licensed under GPLv2 or MIT +Dual licensed under GPLv2 or MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_10.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_10.yml deleted file mode 100644 index 7898d034769..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_11.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_11.RULE index 005da4d91c3..a1125fcde74 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_11.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_tag: yes +relevance: 100 +--- + "license": "(GPL-2.0 OR MIT)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_11.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_11.yml deleted file mode 100644 index 6628de33df0..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_2.RULE index 7a1e7d0ef92..e43d98e4b87 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + This file is dual-licensed: you can use it either under the terms of the GPL or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -33,4 +39,4 @@ Or, alternatively, 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_2.yml deleted file mode 100644 index d4bd57acae8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_3.RULE index ddc9369001f..39f6c4c31db 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + * The script is copyrighted by licensed GPL & MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_3.yml deleted file mode 100644 index 7898d034769..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_4.RULE index 48735933e40..c048a5d64f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + This file is dual-licensed: you can use it either under the terms of the GPL or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -34,4 +40,4 @@ Or, alternatively, 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_4.yml deleted file mode 100644 index d4bd57acae8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_5.RULE index f5c2a792575..bbb085bf3cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +minimum_coverage: 85 +--- + based on GPL'ed 2.6 kernel sources @@ -32,4 +38,4 @@ 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/gpl-2.0_or_mit_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_5.yml deleted file mode 100644 index e04230aba2b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_6.RULE index c03dfff60c2..fb0ea22662a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +minimum_coverage: 90 +--- + This file is dual-licensed: you can use it either under the terms of the GPL or the X11 license, at your option. Note that this dual licensing only applies to this file, and not this project as a @@ -29,4 +35,4 @@ 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/gpl-2.0_or_mit_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_6.yml deleted file mode 100644 index d4bd57acae8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_7.RULE index 675b9e833bd..5a4d3d07099 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + * The script is copyrighted by licenced GPL & MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_7.yml deleted file mode 100644 index 7898d034769..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_8.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_8.RULE index 80467e47350..ddaf62f7651 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_8.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + Dual licensed under GPLv2 & MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_8.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_8.yml deleted file mode 100644 index 7898d034769..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_9.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mit_9.RULE index 5e0b65c5a51..345cebbb7d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mit_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + Dual licensed under GPLv2 or MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mit_9.yml b/src/licensedcode/data/rules/gpl-2.0_or_mit_9.yml deleted file mode 100644 index 7898d034769..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mit_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mpl-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_mpl-1.0_1.RULE index 864ed8d583d..6273f4c8c5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_mpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_mpl-1.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 OR mpl-1.0 +is_license_notice: yes +--- + Downloaders of the software may choose to have their access to and use of the software governed under either the GNU General Public License (Version 2) or the Mozilla -License (Version 1.0). \ No newline at end of file +License (Version 1.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_mpl-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_mpl-1.0_1.yml deleted file mode 100644 index 36995ee8bf8..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_mpl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 OR mpl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_1.RULE index 1028e90ba9a..0f2e5666e61 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR other-copyleft +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/danlucraft/redcar/blob/ff1a671b26a8969ad16da893995cf07e293319e5/LICENSE + this is a unique license never seen elsewhere hence the use of the other-copyleft key +--- + is copyrighted free software by and contributors. You can redistribute it and/or modify it under either the terms of the GPLv2 or the conditions below: diff --git a/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_1.yml deleted file mode 100644 index fbed0b1b5bb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR other-copyleft -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/danlucraft/redcar/blob/ff1a671b26a8969ad16da893995cf07e293319e5/LICENSE - this is a unique license never seen elsewhere hence the use of the other-copyleft key diff --git a/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_or_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_or_other-permissive_1.RULE index f0938867fd0..524e2443964 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_or_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_or_other-permissive_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR other-copyleft OR other-permissive +is_license_reference: yes +relevance: 100 +--- + Every plugin and theme in WordPress.org's directory is 100%% GPL or a similarly free and compatible license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_or_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_or_other-permissive_1.yml deleted file mode 100644 index d9610083d50..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_other-copyleft_or_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR other-copyleft OR other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_other-permissive_1.RULE index fc179c55484..8ed89d7db1b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_other-permissive_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +--- + IBM is dual-licensing the IBM code contributions already present in U-Boot under either the terms of the GNU General Public License version 2, or the original code license already present. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_other-permissive_1.yml deleted file mode 100644 index ddae5b74ddb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_other-permissive_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_1.RULE index a7b69e38a0b..f2a76a1647c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.jrsoftware.org/files/tb2k/GPL-LICENSE.txt + - http://www.jrsoftware.org/files/tb2k/TB2k-LICENSE.txt +--- + Use and/or distribution of the files requires compliance with the "Toolbar2000 License", found in TB2k-LICENSE.txt or at: diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_1.yml deleted file mode 100644 index c58488b693d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.jrsoftware.org/files/tb2k/GPL-LICENSE.txt - - http://www.jrsoftware.org/files/tb2k/TB2k-LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_2.RULE index fe900d3e4e1..6ebf5e32dd2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_2.yml deleted file mode 100644 index 8a786f147d1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_3.RULE index 9082e939af0..9338cf179bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +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 General Public License, Version 2, as @@ -15,4 +24,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA or visit https://www.gnu.org/licenses/. This file may also be available under a different license from Cavium. -Contact Cavium Networks for more information +Contact Cavium Networks for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_3.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_3.yml deleted file mode 100644 index 27ff6bd009c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_4.RULE index 9ab1f944024..7b00178c303 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Unless you and execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available @@ -6,4 +15,4 @@ at https://www.gnu.org/licenses/gpl-2.0.html (the "GPL"). Notwithstanding the above, under no circumstances may you combine this software in any way with any other software provided under a license other than the GPL, without 's express prior written -consent. +consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_4.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_4.yml deleted file mode 100644 index 8cb0f555c7a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_5.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_5.RULE index bce79dd7385..a34497c0946 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +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 General Public License, Version 2, as published by the Free Software Foundation. @@ -14,4 +23,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA or visit https://www.gnu.org/licenses/. This file may also be available under a different license from Cavium. -Contact Cavium Inc. for more information +Contact Cavium Inc. for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_5.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_5.yml deleted file mode 100644 index 27ff6bd009c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_6.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_6.RULE index b3123f72bb5..f94b54e55f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available @@ -6,4 +15,4 @@ at https://www.gnu.org/licenses/gpl-2.0.html (the "GPL"). Notwithstanding the above, under no circumstances may you combine this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior written -consent. +consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_6.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_6.yml deleted file mode 100644 index 8cb0f555c7a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_7.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_7.RULE index 8d08fd34abc..b32e28fa3f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + Unless you and execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available @@ -6,4 +15,4 @@ at https://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL"). Notwithstanding the above, under no circumstances may you combine this software in any way with any other software provided under a license other than the GPL, without 's express prior written -consent. +consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_7.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_7.yml deleted file mode 100644 index 6b72fcecfc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_8.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_8.RULE index d2c7c7bbc7b..3f0a1c1028c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available @@ -6,4 +15,4 @@ at https://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL"). Notwithstanding the above, under no circumstances may you combine this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior written -consent. +consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_8.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_8.yml deleted file mode 100644 index 6b72fcecfc4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary-license_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary.RULE index c14eb4ccb4c..fa6aba98e98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 90 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License v2 as published by the Free Software Foundation. @@ -14,4 +20,4 @@ Boston, MA 021110-1307, USA. If you can't comply with GPLv2, alternative licensing terms may be arranged. Please contact for proprietary -alternative licensing inquiries. +alternative licensing inquiries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary.yml deleted file mode 100644 index 7310d4894bb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary2.RULE index ca1e3ea3458..8b98c257830 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 90 +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 General Public License, Version 2, as @@ -15,4 +23,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA or visit http://www.gnu.org/licenses/. This file may also be available under a different license from Cavium. -Contact Cavium Networks for more information +Contact Cavium Networks for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary2.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary2.yml deleted file mode 100644 index ce92a4350c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary3.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary3.RULE index 14d058b284c..ce3c0ac2376 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 90 +--- + License type: GPLv2 This program is free software; you can redistribute it and/or modify it under @@ -9,4 +15,4 @@ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This program may alternatively be licensed under a proprietary license from -MaxLinear, Inc. +MaxLinear, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary3.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary3.yml deleted file mode 100644 index 7310d4894bb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary4.RULE b/src/licensedcode/data/rules/gpl-2.0_or_proprietary4.RULE index c488b50bf51..f4fe9ef24a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_proprietary4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 90 +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 General Public License, Version 2, as published by the Free Software Foundation. @@ -14,4 +22,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA or visit http://www.gnu.org/licenses/. This file may also be available under a different license from Cavium. -Contact Cavium Inc. for more information +Contact Cavium Inc. for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_proprietary4.yml b/src/licensedcode/data/rules/gpl-2.0_or_proprietary4.yml deleted file mode 100644 index ce92a4350c6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_proprietary4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_or_ruby_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_ruby_1.RULE index 42c617ae83a..aa3fe433d8b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_ruby_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_ruby_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +relevance: 95 +referenced_filenames: + - GPL +notes: Seen in https://github.com/eventmachine/eventmachine/blob/b50c135dfdd4e7b20c8e0b7ce1d8fe7176d4d14d/LICENSE + The text is modified, but mostly reworded and essnetially similar +ignorable_authors: + - the Owner +--- + The Owner of this software permits you to redistribute and/or modify the software under either the terms of the GPL version 2 (see the file GPL), or the conditions below ("Ruby License"): diff --git a/src/licensedcode/data/rules/gpl-2.0_or_ruby_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_ruby_1.yml deleted file mode 100644 index fa90476b79f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_ruby_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -relevance: 95 -referenced_filenames: - - GPL -notes: Seen in https://github.com/eventmachine/eventmachine/blob/b50c135dfdd4e7b20c8e0b7ce1d8fe7176d4d14d/LICENSE - The text is modified, but mostly reworded and essnetially similar -ignorable_authors: - - the Owner diff --git a/src/licensedcode/data/rules/gpl-2.0_or_ruby_2.RULE b/src/licensedcode/data/rules/gpl-2.0_or_ruby_2.RULE index 59ec9c2cec9..c084f6b7f3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_ruby_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_ruby_2.RULE @@ -1,3 +1,17 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +relevance: 97 +referenced_filenames: + - GPL +notes: Seen in https://github.com/evanphx/json/blob/82ed5b724fb36dcba884cdb2251d953580c9de56/COPYING + with common extra text in 4. +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.co.jp +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL (see GPL file), or the conditions below: diff --git a/src/licensedcode/data/rules/gpl-2.0_or_ruby_2.yml b/src/licensedcode/data/rules/gpl-2.0_or_ruby_2.yml deleted file mode 100644 index 07e7868ac29..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_ruby_2.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -relevance: 97 -referenced_filenames: - - GPL -notes: Seen in https://github.com/evanphx/json/blob/82ed5b724fb36dcba884cdb2251d953580c9de56/COPYING - with common extra text in 4. -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.co.jp diff --git a/src/licensedcode/data/rules/gpl-2.0_or_w3c_or_bsd-new_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-2.0_or_w3c_or_bsd-new_or_mit_1.RULE index f45f44c9002..de52617450c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_w3c_or_bsd-new_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_w3c_or_bsd-new_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 OR w3c OR bsd-new OR mit +is_license_tag: yes +relevance: 100 +--- + License: GPL 2, W3C, BSD, or MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_w3c_or_bsd-new_or_mit_1.yml b/src/licensedcode/data/rules/gpl-2.0_or_w3c_or_bsd-new_or_mit_1.yml deleted file mode 100644 index 880792bbc42..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_w3c_or_bsd-new_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR w3c OR bsd-new OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_or_x11.RULE b/src/licensedcode/data/rules/gpl-2.0_or_x11.RULE index 62a488c53f0..702025bbefc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_x11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_x11.RULE @@ -1 +1,7 @@ -This file is licensed under a dual GPLv2 or X11 license. +--- +license_expression: gpl-2.0 OR x11 +is_license_notice: yes +relevance: 99 +--- + +This file is licensed under a dual GPLv2 or X11 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_x11.yml b/src/licensedcode/data/rules/gpl-2.0_or_x11.yml deleted file mode 100644 index b541602b637..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_or_x11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR x11 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_qt.RULE b/src/licensedcode/data/rules/gpl-2.0_qt.RULE index 76f92f6db92..1a80c829d8f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_qt.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_qt.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + GNU GENERAL PUBLIC LICENSE You may use, distribute and copy the Qt GUI Toolkit under the terms of - GNU General Public License version 2, which is displayed below. + GNU General Public License version 2, which is displayed below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_qt.yml b/src/licensedcode/data/rules/gpl-2.0_qt.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_qt.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_released.RULE b/src/licensedcode/data/rules/gpl-2.0_released.RULE index e2cf0a1b09f..2b3aefa2d67 100644 --- a/src/licensedcode/data/rules/gpl-2.0_released.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_released.RULE @@ -1 +1,7 @@ -Released under the terms of the GNU General Public License Version 2.0 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +Released under the terms of the GNU General Public License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_released.yml b/src/licensedcode/data/rules/gpl-2.0_released.yml deleted file mode 100644 index d1e2553e419..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_released.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_templatized.RULE b/src/licensedcode/data/rules/gpl-2.0_templatized.RULE index 9a5b62a6cdf..708f6f217b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_templatized.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_templatized.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc., + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - http://fsf.org/ +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -335,4 +348,4 @@ This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. +Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_templatized.yml b/src/licensedcode/data/rules/gpl-2.0_templatized.yml deleted file mode 100644 index 79173bf6a6a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_templatized.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc., - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_temple_variant.RULE b/src/licensedcode/data/rules/gpl-2.0_temple_variant.RULE index 15c88db5810..fce18faf52e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_temple_variant.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_temple_variant.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 +is_license_text: yes +notes: yet another variant of the GPL-2.0, using the temple address and library instead of lesser + plus some mojibake. See https://github.com/pombredanne/gpl-history/blob/v1.0/allvers/COPYING.2 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_temple_variant.yml b/src/licensedcode/data/rules/gpl-2.0_temple_variant.yml deleted file mode 100644 index 3c5d929ba06..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_temple_variant.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 -is_license_text: yes -notes: yet another variant of the GPL-2.0, using the temple address and library instead of lesser - plus some mojibake. See https://github.com/pombredanne/gpl-history/blob/v1.0/allvers/COPYING.2 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_url_1.RULE b/src/licensedcode/data/rules/gpl-2.0_url_1.RULE index 52a0200b397..99f47ca1e92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-2.0-only +--- + https://spdx.org/licenses/gpl-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_url_1.yml b/src/licensedcode/data/rules/gpl-2.0_url_1.yml deleted file mode 100644 index 3f40d16a404..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-2.0-only diff --git a/src/licensedcode/data/rules/gpl-2.0_url_2.RULE b/src/licensedcode/data/rules/gpl-2.0_url_2.RULE index f322c62f889..e619f40011a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-2.0-only.html +--- + https://spdx.org/licenses/gpl-2.0-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_url_2.yml b/src/licensedcode/data/rules/gpl-2.0_url_2.yml deleted file mode 100644 index 1d3da1f3126..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-2.0-only.html diff --git a/src/licensedcode/data/rules/gpl-2.0_url_badge.RULE b/src/licensedcode/data/rules/gpl-2.0_url_badge.RULE index 39ea619a769..e2c16d16cb0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_url_badge.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-GPL%20v2-blue.svg + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html +--- + [![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_url_badge.yml b/src/licensedcode/data/rules/gpl-2.0_url_badge.yml deleted file mode 100644 index c59f4f79059..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-GPL%20v2-blue.svg - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html diff --git a/src/licensedcode/data/rules/gpl-2.0_url_glc_131.RULE b/src/licensedcode/data/rules/gpl-2.0_url_glc_131.RULE index 63f4e494d8f..3fce29c787b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_url_glc_131.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_url_glc_131.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +--- + https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_url_glc_131.yml b/src/licensedcode/data/rules/gpl-2.0_url_glc_131.yml deleted file mode 100644 index 26eb236ef81..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_url_glc_131.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-2.0_url_glc_166.RULE b/src/licensedcode/data/rules/gpl-2.0_url_glc_166.RULE index 4f7f47b19b8..56c7febce73 100644 --- a/src/licensedcode/data/rules/gpl-2.0_url_glc_166.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_url_glc_166.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/gpl-2.0 +--- + http://www.opensource.org/licenses/gpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_url_glc_166.yml b/src/licensedcode/data/rules/gpl-2.0_url_glc_166.yml deleted file mode 100644 index 6a204cb9494..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_url_glc_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/gpl-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_url_glc_167.RULE b/src/licensedcode/data/rules/gpl-2.0_url_glc_167.RULE index bfe456e2c6f..38863ecb1ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_url_glc_167.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_url_glc_167.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/gpl-2.0 +--- + https://www.opensource.org/licenses/gpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_url_glc_167.yml b/src/licensedcode/data/rules/gpl-2.0_url_glc_167.yml deleted file mode 100644 index d4a4bc81d46..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_url_glc_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/gpl-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_389-exception.RULE b/src/licensedcode/data/rules/gpl-2.0_with_389-exception.RULE index d588b338e4e..41a9ac2d3a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_389-exception.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_389-exception.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH 389-exception +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; version 2 of the License. @@ -25,4 +30,4 @@ extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to provide this exception without modification, you must delete this exception statement from your version - and license this file solely under the GPL without exception. + and license this file solely under the GPL without exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_389-exception.yml b/src/licensedcode/data/rules/gpl-2.0_with_389-exception.yml deleted file mode 100644 index 841be8cc146..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_389-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH 389-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_1.RULE index 0b5bba71659..3e1bb85514c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH autoconf-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL-2.0-with-autoconf-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_1.yml deleted file mode 100644 index d9086147ef4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH autoconf-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_2.RULE index 16242f3c387..3a17eaa1486 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH autoconf-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0 w/Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_2.yml deleted file mode 100644 index d9086147ef4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH autoconf-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_3.RULE index 7a04ad211aa..8d600ee5b1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH autoconf-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-2.0-with-autoconf-exception GNU General Public License v2.0 w/Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_3.yml deleted file mode 100644 index 56e61f63910..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH autoconf-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_4.RULE index beb18f9ffdd..bf76a75e691 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH autoconf-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v2.0 w/Autoconf exception GPL-2.0-with-autoconf-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_4.yml deleted file mode 100644 index 56e61f63910..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH autoconf-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_5.RULE index 13fabe82283..1c362adb14b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH autoconf-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : GPL-2.0-with-autoconf-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_5.yml deleted file mode 100644 index 95075d5864f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH autoconf-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_6.RULE index 1d849c60f34..4897f34dca5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH autoconf-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-2.0-with-autoconf-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_6.yml deleted file mode 100644 index 56e61f63910..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH autoconf-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_7.RULE index 96d72d28396..da51f89f72f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH autoconf-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v2.0 w/Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_7.yml deleted file mode 100644 index 56e61f63910..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_autoconf-exception-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH autoconf-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bash-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bash-exception-gpl_1.RULE index ec2b9ce45ca..6ccb9e3e3dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bash-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bash-exception-gpl_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 WITH bash-exception-gpl +is_license_text: yes +relevance: 100 +notes: A weird inclusion of the exception text inside the GPL text Seen in https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 + It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bash-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_bash-exception-gpl_1.yml deleted file mode 100644 index a1cbdb65282..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bash-exception-gpl_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 WITH bash-exception-gpl -is_license_text: yes -relevance: 100 -notes: A weird inclusion of the exception text inside the GPL text Seen in https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 - It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_1.RULE index c0e0866a1fb..49a099f3f6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_notice: yes +minimum_coverage: 99 +--- + insert GPL v2 text here Bison Exception diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_1.yml deleted file mode 100644 index af599c38ec9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_10.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_10.RULE index b993380981a..d415e737f1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v2.0 w/Bison exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_10.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_10.yml deleted file mode 100644 index c3e1bf6d589..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_2.RULE index d98a3332050..f8a5e1c4f0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_reference: yes +relevance: 99 +--- + LICENSE INFORMATION: GPL 2.0 with Bison parser Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_2.yml deleted file mode 100644 index 3cc4edf7893..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_3.RULE index 902260d70e3..48feef909b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_reference: yes +relevance: 99 +--- + GPL 2.0 with Bison parser Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_3.yml deleted file mode 100644 index 3cc4edf7893..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_4.RULE index dd262be6b75..20347df1e99 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_reference: yes +relevance: 100 +--- + GPL-2.0-with-bison-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_4.yml deleted file mode 100644 index cfa2b031c36..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_5.RULE index 7ace7d428e5..28ce07084f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0 w/Bison exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_5.yml deleted file mode 100644 index cfa2b031c36..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_6.RULE index 3d951531342..ad562249d07 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-2.0-with-bison-exception GNU General Public License v2.0 w/Bison exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_6.yml deleted file mode 100644 index c3e1bf6d589..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_7.RULE index 2402747a950..29f8347951f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v2.0 w/Bison exception GPL-2.0-with-bison-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_7.yml deleted file mode 100644 index c3e1bf6d589..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_8.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_8.RULE index 82631c58d1c..a31bdf9a095 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : GPL-2.0-with-bison-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_8.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_8.yml deleted file mode 100644 index 5fcb890056b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_9.RULE b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_9.RULE index ebae54fea94..3cc0a05b5d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_9.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH bison-exception-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-2.0-with-bison-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_9.yml b/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_9.yml deleted file mode 100644 index c3e1bf6d589..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_bison-exception-2.2_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH bison-exception-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_broadcom-linking-unmodified_or_proprietary.RULE b/src/licensedcode/data/rules/gpl-2.0_with_broadcom-linking-unmodified_or_proprietary.RULE index 98f92bc0900..059df3ddf71 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_broadcom-linking-unmodified_or_proprietary.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_broadcom-linking-unmodified_or_proprietary.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 OR broadcom-linking-unmodified OR proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + Unless you and execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2 (the “GPL”), @@ -10,4 +17,4 @@ distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from this software. The special exception does not apply to any -modifications of the software. +modifications of the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_broadcom-linking-unmodified_or_proprietary.yml b/src/licensedcode/data/rules/gpl-2.0_with_broadcom-linking-unmodified_or_proprietary.yml deleted file mode 100644 index 26e05468e37..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_broadcom-linking-unmodified_or_proprietary.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 OR broadcom-linking-unmodified OR proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_1.RULE index 4a84b1f3463..cb3be4f6915 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.sun.com/ +--- + * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_1.yml deleted file mode 100644 index 17bed45c811..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.sun.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_10.RULE index 2b924faaf21..9c17ab0397d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_10.yml deleted file mode 100644 index 4d07923ae89..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_11.RULE index 4fd57704e35..76461c45865 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_11.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this @@ -16,4 +25,4 @@ * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any - * questions. + * questions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_11.yml deleted file mode 100644 index 91012633fb6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_12.RULE index 154710829e8..df0b35db903 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this @@ -12,4 +19,4 @@ * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_12.yml deleted file mode 100644 index 4d07923ae89..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_13.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_13.RULE index 77c8f69a027..ddefe4ba955 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_13.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: there is some ambiguity in the redundant gpl notice +ignorable_urls: + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_13.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_13.yml deleted file mode 100644 index 86c51bd2793..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_13.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: there is some ambiguity in the redundant gpl notice -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_14.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_14.RULE index 3e82d3dfb1f..5dd7b09fd09 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_14.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_14.yml deleted file mode 100644 index 4d07923ae89..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_15.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_15.RULE index 65b95283280..454d646df53 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 99 +notes: this is a rather useless rule since this is a made-up text by SPDX. +--- + insert GPL v2 license text here Class Path Exception diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_15.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_15.yml deleted file mode 100644 index a856e5f54db..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 99 -notes: this is a rather useless rule since this is a made-up text by SPDX. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_16.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_16.RULE index 3186c02e6f0..0e98269c5ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_16.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + is licensed under the GPL v2. See `/usr/share/common-licenses/GPL-2'. - The exception is: "CLASSPATH" EXCEPTION TO THE GPL. + The exception is: "CLASSPATH" EXCEPTION TO THE GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_16.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_16.yml deleted file mode 100644 index 3a3acf7e62f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_17.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_17.RULE index fcb6a259c32..02b9bde9275 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + GNU General Public License v2.0 w/Classpath exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_17.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_17.yml deleted file mode 100644 index 60dd058b84b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_18.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_18.RULE index 4208b266ce8..e3cac13eda9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_18.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_text: yes +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + ********************************** START LICENSE file ********************************** @@ -351,5 +363,4 @@ exception as provided by Oracle in the LICENSE file that accompanied this code." so, delete this exception statement from your version. ********************************** END LICENSE file -********************************** - +********************************** \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_18.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_18.yml deleted file mode 100644 index 2eec5112e2d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_18.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_text: yes -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_19.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_19.RULE index 1f08de3612c..ba153b832fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. designates this @@ -12,4 +19,4 @@ accompanied this code). You should have received a copy of the GNU General Public License version 2 along with this work; if not, write to the Free Software Foundation, -Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_19.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_19.yml deleted file mode 100644 index 4d07923ae89..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_2.RULE index 6a844827e08..637c1d74b15 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: gpl + classpath from openjdk +--- + * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_2.yml deleted file mode 100644 index 03c1bdce8eb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: gpl + classpath from openjdk diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_20.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_20.RULE index 105bfe35f8f..636c33b663f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_20.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + This file was generated from and is licensed under the same terms. The copyright and license information for follows. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_20.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_20.yml deleted file mode 100644 index 950a731a5fa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_20.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_21.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_21.RULE index 460499eeaca..add35916dbe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_21.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + licensed under the same terms. The copyright and license information for follows. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_21.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_21.yml deleted file mode 100644 index 950a731a5fa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_21.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_22.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_22.RULE index 8d2c14c31d2..eaad08d6dc5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_22.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_22.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This file implements interfaces from the file. This implementation @@ -24,4 +34,4 @@ Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any -questions. +questions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_22.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_22.yml deleted file mode 100644 index 950a731a5fa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_22.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_23.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_23.RULE index d4adbe5e8b3..dc3dd7d34d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_23.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_23.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/software/classpath/license.html +--- + License: GNU General Public License, version 2 (GPL2, with the classpath exception (http://www.gnu.org/software/classpath/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_23.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_23.yml deleted file mode 100644 index 9b96d5e0e22..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_24.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_24.RULE index a6d440c55e9..5cf61ea2c6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_24.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + License: GPL2 w/ CPE (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_with_classpath-exception-2.0_24.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_24.yml deleted file mode 100644 index ba4f21f76b3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_25.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_25.RULE index 9f783815f1e..8cfddd9fba8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_25.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html +--- + License: GPL2 w/ CPE (https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_25.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_25.yml deleted file mode 100644 index 64ac1656f4c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_26.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_26.RULE index 8cddb6afe83..7ba55a7e453 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_26.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_26.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://glassfish.java.net/public/CDDL+GPL_1_1.html +--- + License: GPL2 w/ CPE (https://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_with_classpath-exception-2.0_26.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_26.yml deleted file mode 100644 index 0b3f5aa6842..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://glassfish.java.net/public/CDDL+GPL_1_1.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_27.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_27.RULE index 3f459644c3f..303fa0d3c92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_27.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPLv2 + Classpath Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_27.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_27.yml deleted file mode 100644 index 8f62f481c72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_28.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_28.RULE index af22007bcfb..960fb322c60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_28.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_28.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPLv2 + Classpath Exception -GNU General Public License, version 2, with the Classpath Exception +GNU General Public License, version 2, with the Classpath Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_28.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_28.yml deleted file mode 100644 index 8f62f481c72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_29.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_29.RULE index c443b49fa19..dd8ce801ea2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_29.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_29.RULE @@ -1 +1,7 @@ -GPLv2-CPE +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + +GPLv2-CPE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_29.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_29.yml deleted file mode 100644 index 60dd058b84b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_3.RULE index 8bffda3a65b..9db8f767f33 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_text: yes +minimum_coverage: 99 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + Oracle designates certain files in this repository as subject to the "Classpath" exception. The designated files include the following notices. In the following notices, the @@ -356,5 +368,4 @@ exception as provided by Oracle in the LICENSE file that accompanied this code." so, delete this exception statement from your version. ********************************** END LICENSE file -********************************** - +********************************** \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 2eec5112e2d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_text: yes -minimum_coverage: 99 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_30.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_30.RULE index f4fbcd1d422..0c03949db4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_30.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_30.yml deleted file mode 100644 index d5dfccccc04..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_31.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_31.RULE index b63f77a10f5..184197429f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_31.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_31.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.terms +ignorable_urls: + - http://www.gnu.org/software/classpath/classpath.html +--- + GNU Classpath is licensed under the terms of the GNU General Public License with the following clarification and special exception: diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_31.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_31.yml deleted file mode 100644 index 0a1e09d1a45..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_31.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.terms -ignorable_urls: - - http://www.gnu.org/software/classpath/classpath.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_32.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_32.RULE index b94db778b0d..c699d737c2c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_32.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GPL 2 with Classpath Exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_32.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_32.yml deleted file mode 100644 index 9c51654e411..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_33.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_33.RULE index 03ee8ed52cc..6f342df0099 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_33.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_33.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://openjdk.java.net/ +--- + includes a bundled version of http://openjdk.java.net[OpenJDK] from the JDK maintainers (GPLv2+CE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_33.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_33.yml deleted file mode 100644 index 7626c140a6b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://openjdk.java.net/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_34.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_34.RULE index 1360dfa8cd9..9ca781c36fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_34.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPLv2+CE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_34.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_34.yml deleted file mode 100644 index 8f62f481c72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_35.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_35.RULE index eed96d42c74..02668988438 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_35.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_35.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + OpenJDK is licensed under the GPLv2+CE. A copy of that license is included in this distribution immediately below this notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_35.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_35.yml deleted file mode 100644 index 9c51654e411..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_36.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_36.RULE index 82c0805f1d3..cdf7a03a525 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_36.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_36.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GPLv2+CE. A copy of that license is included in this distribution immediately below this notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_36.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_36.yml deleted file mode 100644 index 9c51654e411..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_37.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_37.RULE index e5c905c6492..b0e3099e47f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_37.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GPLv2+CE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_37.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_37.yml deleted file mode 100644 index 9c51654e411..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_38.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_38.RULE index c3c56b9a2e6..04e03c7697e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_38.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 99 +--- + ## CLASSPATH EXCEPTION Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_38.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_38.yml deleted file mode 100644 index a9359b7c37e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_39.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_39.RULE index 5ff584132a8..8e390eb98ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_39.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_39.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 99 +--- + Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License version 2 cover the whole diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_39.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_39.yml deleted file mode 100644 index a9359b7c37e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_4.RULE index 983dc44a978..890c100eb08 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License (GPL) Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_4.yml deleted file mode 100644 index feb7a3e69fa..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_40.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_40.RULE index af8e8d0513b..121ffd29d8a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_40.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_40.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License, version 2 (GPL2), with the classpath exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_40.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_40.yml deleted file mode 100644 index 9c51654e411..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_41.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_41.RULE index 6c798c24c88..00482cce8e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_41.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + (GPL2), with the classpath exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_41.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_41.yml deleted file mode 100644 index 8f62f481c72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_42.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_42.RULE index 6e4725cfb82..e5cad1bef8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under the GNU General Public License, version 2 (GPL2), diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_42.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_42.yml deleted file mode 100644 index 9c51654e411..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_43.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_43.RULE index 6ee1beec82c..350b1962973 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_43.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_43.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLPv2 + classpath exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_43.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_43.yml deleted file mode 100644 index a27d7e36933..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_43.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_44.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_44.RULE index ebc622af057..e1a8d2cbece 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_44.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + released under version 2 of the GNU General Public License with the “Classpath” Exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_44.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_44.yml deleted file mode 100644 index 9c51654e411..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_45.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_45.RULE index ba5fc54c5b7..d983e26c72d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_45.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + Sun GPL with Classpath Exception v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_45.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_45.yml deleted file mode 100644 index 8f62f481c72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_46.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_46.RULE index 5314d4d88fd..0a37f51546f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_46.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_46.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_46.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_46.yml deleted file mode 100644 index 4d07923ae89..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_46.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_47.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_47.RULE index 1dae01c3ca3..35afb9aad06 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_47.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_47.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/software/classpath/license.html +--- + License: GNU General Public License, version 2 (GPL2, with the classpath exception (https://www.gnu.org/software/classpath/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_47.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_47.yml deleted file mode 100644 index 9d2768ca7c4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/software/classpath/license.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_48.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_48.RULE index d3719e5ecbf..6c3572c41ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_48.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_48.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.terms +ignorable_urls: + - https://www.gnu.org/software/classpath/classpath.html +--- + GNU Classpath is licensed under the terms of the GNU General Public License with the following clarification and special exception: diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_48.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_48.yml deleted file mode 100644 index d1f3c1a8a31..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_48.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.terms -ignorable_urls: - - https://www.gnu.org/software/classpath/classpath.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_49.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_49.RULE index 8d81c95e614..8480e297f66 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_49.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_49.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-2.0-with-classpath-exception GNU General Public License v2.0 w/Classpath exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_49.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_49.yml deleted file mode 100644 index 2ecaa97f10b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_49.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_5.RULE index 8e3ffb7a2b9..ec844342cdb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + The complete text of the GPL v2, and classpath exception: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_5.yml deleted file mode 100644 index 8f62f481c72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_50.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_50.RULE index 17111c3ef8e..4b6fb2d6e10 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_50.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_50.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v2.0 w/Classpath exception GPL-2.0-with-classpath-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_50.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_50.yml deleted file mode 100644 index 2ecaa97f10b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_50.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_51.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_51.RULE index 0944d6dda01..f0d0af62e18 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_51.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_51.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : GPL-2.0-with-classpath-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_51.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_51.yml deleted file mode 100644 index f5973dee51a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_51.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_52.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_52.RULE index 93b856c60a2..c396ea97aae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_52.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_52.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-2.0-with-classpath-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_52.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_52.yml deleted file mode 100644 index 2ecaa97f10b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_52.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_53.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_53.RULE index 7baa3330419..81e1b3b1acc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_53.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_53.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v2.0 w/Classpath exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_53.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_53.yml deleted file mode 100644 index 2ecaa97f10b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_53.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_54.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_54.RULE index ec21eb0fe4a..4d6f14672bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_54.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0 only, with Classpath exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_54.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_54.yml deleted file mode 100644 index 8f62f481c72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_6.RULE index 11033eddffa..a08efe18d39 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_6.RULE @@ -1 +1,7 @@ -"defaultLicense" : "GPLv2-CPE +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +--- + +"defaultLicense" : "GPLv2-CPE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_6.yml deleted file mode 100644 index 60dd058b84b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_7.RULE index 8412f8469e4..fd4c8909416 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - legal/gplv2+ce.html +--- + License: GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_7.yml deleted file mode 100644 index 5aea429a60f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - legal/gplv2+ce.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_8.RULE index bd1ba176191..69ddb28f1b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_8.RULE @@ -1 +1,7 @@ -GNU General Public License version 2 with the Classpath Exception +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + +GNU General Public License version 2 with the Classpath Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_8.yml deleted file mode 100644 index 8f62f481c72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_9.RULE index e1136dca01c..733da9d088b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_9.yml deleted file mode 100644 index 91012633fb6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_1.RULE index ca2d22c3666..4c36747358a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND bsd-new +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -52,4 +62,4 @@ * 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. + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_1.yml deleted file mode 100644 index 85ae5f3f87d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND bsd-new -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_2.RULE index 431dc713a99..7da29da1a1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND bsd-new +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -54,5 +64,4 @@ * 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 + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_2.yml deleted file mode 100644 index 85ae5f3f87d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND bsd-new -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_3.RULE index f8d801caccd..17d6e22fd21 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND bsd-new +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -49,4 +59,4 @@ 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. +THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_3.yml deleted file mode 100644 index 85ae5f3f87d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND bsd-new -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_4.RULE index 7611d0c66a2..1d11b1635aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND bsd-new +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -26,4 +36,4 @@ This file is available under and governed by the GNU General Public License version 2 only, as published by the Free Software Foundation. However, the following notice accompanied the original version of this file, and Oracle licenses the original version of this file under the BSD -license: +license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_4.yml deleted file mode 100644 index 801928d41fd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND bsd-new -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_1.RULE index 109e76231c7..ee4963852e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND (bsd-new OR apache-2.0) +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -76,4 +87,4 @@ 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/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_1.yml deleted file mode 100644 index 4028862cc0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND (bsd-new OR apache-2.0) -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_2.RULE index 246319d7c9b..4cbe9ff33e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND (bsd-new OR apache-2.0) +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -76,4 +87,4 @@ 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/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_2.yml deleted file mode 100644 index 9c5d0f4f2bd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_bsd-new_or_apache-2.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND (bsd-new OR apache-2.0) -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_1.RULE index a2448bad8a0..9bc8556616f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND cc0-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -29,4 +39,4 @@ * * Written by with assistance from and released to the public domain, as explained at - * http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file + * http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_1.yml deleted file mode 100644 index 0de1e1d28b6..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND cc0-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_2.RULE index 264dc149d79..2aebbce84f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND cc0-1.0 +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - LICENSE +ignorable_authors: + - Doug Lea +ignorable_urls: + - http://creativecommons.org/publicdomain/zero/1.0/ + - http://www.oracle.com/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -29,4 +42,4 @@ file: Written by Doug Lea with assistance from members of JCP JSR-166 Expert Group and released to the public domain, as explained at -http://creativecommons.org/publicdomain/zero/1.0/ +http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_2.yml deleted file mode 100644 index 3a44488f58e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_cc0-1.0_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND cc0-1.0 -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - LICENSE -ignorable_authors: - - Doug Lea -ignorable_urls: - - http://creativecommons.org/publicdomain/zero/1.0/ - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_1.RULE index 865d635a3e1..608b6c3bd20 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND mit +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -47,4 +57,4 @@ 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. +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/gpl-2.0_with_classpath-exception-2.0_and_mit_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_1.yml deleted file mode 100644 index c5dd49aa14e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND mit -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_2.RULE index 08ff967973d..5ad3ba78498 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND mit +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -42,4 +52,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL AUTHOR 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. + 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/gpl-2.0_with_classpath-exception-2.0_and_mit_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_2.yml deleted file mode 100644 index c5dd49aa14e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND mit -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_3.RULE index 2588a14a972..6bfffecc316 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND mit +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -45,4 +55,4 @@ 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. + 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/gpl-2.0_with_classpath-exception-2.0_and_mit_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_3.yml deleted file mode 100644 index c5dd49aa14e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_mit_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND mit -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_other-permissive_1.RULE index 7f3a21be8ba..4d60e94ee84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_other-permissive_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND other-permissive +is_license_reference: yes +--- + ADDITIONAL INFORMATION ABOUT LICENSING Certain files distributed by Oracle America, Inc. and/or its affiliates are diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_other-permissive_1.yml deleted file mode 100644 index 71bb51832be..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_other-permissive_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND other-permissive -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_others_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_others_1.RULE index cf7f0f93806..49151c90761 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_others_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_others_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 AND apache-1.1 AND apache-2.0 + AND bsd-new AND bsd-original AND gpl-1.0-plus AND ijg AND lgpl-2.0-plus AND mit AND mpl-2.0 + AND public-domain AND w3c AND zlib +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + license : 'ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with ' + - 'exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib.', + 'exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib.', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_others_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_others_1.yml deleted file mode 100644 index af06f6672dc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_others_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND gpl-2.0 AND apache-1.1 AND apache-2.0 - AND bsd-new AND bsd-original AND gpl-1.0-plus AND ijg AND lgpl-2.0-plus AND mit AND mpl-2.0 - AND public-domain AND w3c AND zlib -is_license_tag: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_1.RULE index de802c7f260..34ad03c3a49 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND w3c +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: found in the OpenJDK. Some ambiguity because of the double gpl 2 only notice +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium +ignorable_holders: + - World Wide Web Consortium +ignorable_urls: + - http://www.oracle.com/ + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -35,4 +51,4 @@ work is distributed under the W3C(r) Software License [1] 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. -[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_1.yml deleted file mode 100644 index 23b48fd026d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND w3c -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: found in the OpenJDK. Some ambiguity because of the double gpl 2 only notice -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium -ignorable_holders: - - World Wide Web Consortium -ignorable_urls: - - http://www.oracle.com/ - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_2.RULE index a3c48ebc678..a2e56488d1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_2.RULE @@ -1,3 +1,19 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND w3c +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: found in the OpenJDK. Some ambiguity because of the double gpl 2 only notice +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium +ignorable_holders: + - World Wide Web Consortium +ignorable_urls: + - http://www.oracle.com/ + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. Oracle designates this @@ -33,4 +49,4 @@ work is distributed under the W3C(r) Software License [1] 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. -[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_2.yml deleted file mode 100644 index 23b48fd026d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_2.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND w3c -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: found in the OpenJDK. Some ambiguity because of the double gpl 2 only notice -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium -ignorable_holders: - - World Wide Web Consortium -ignorable_urls: - - http://www.oracle.com/ - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_3.RULE index ea28e2e92b5..037e76e3ba1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND w3c +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: found in the OpenJDK. Some ambiguity because of the double gpl 2 only notice +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium +ignorable_holders: + - World Wide Web Consortium +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + This code is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 only, as published by the Free Software Foundation. Oracle designates this @@ -29,4 +44,4 @@ work is distributed under the W3C(r) Software License [1] 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. -[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_3.yml deleted file mode 100644 index 2bc3611b2cc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND w3c -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: found in the OpenJDK. Some ambiguity because of the double gpl 2 only notice -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium -ignorable_holders: - - World Wide Web Consortium -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_4.RULE index 928f038e7f3..7b37573e691 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_4.RULE @@ -1,3 +1,21 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND w3c +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: found in the OpenJDK. Some ambiguity because of the double gpl 2 only notice +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.oracle.com/ + - http://www.w3.org/Consortium/Legal/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it @@ -35,4 +53,4 @@ Intellectual Property 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 W3C License http://www.w3.org/Consortium/Legal/ for more details. +See W3C License http://www.w3.org/Consortium/Legal/ for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_4.yml deleted file mode 100644 index 3a8c752fc1f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_w3c_4.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND w3c -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: found in the OpenJDK. Some ambiguity because of the double gpl 2 only notice -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.oracle.com/ - - http://www.w3.org/Consortium/Legal/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_1.RULE index 13637b02f9d..087c84a8357 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND x11-xconsortium +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.oracle.com/ +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -49,5 +59,4 @@ OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization -from the X Consortium. - +from the X Consortium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_1.yml deleted file mode 100644 index 905b21e3e56..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND x11-xconsortium -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_2.RULE index 57f6bdb17d9..146a8306235 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 AND x11-xconsortium +is_license_notice: yes +relevance: 100 +--- + This file is available under and governed by the GNU General Public License version 2 only, as published by the Free Software Foundation. However, the following notice accompanied the original version of this @@ -25,4 +31,4 @@ Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization - from the X Consortium. + from the X Consortium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_2.yml deleted file mode 100644 index c0f5d0e8c0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_and_x11-xconsortium_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 AND x11-xconsortium -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_1.RULE index f3d4c73620e..84620d7db97 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE-GPL.txt +notes: always used with the GPL 2.0 +ignorable_copyrights: + - Copyright (c) 2003 Per Cederberg +ignorable_holders: + - Per Cederberg +--- + GRAMMATICA LICENSE ================== @@ -29,4 +42,4 @@ _____________________________________________________________________ Copyright (c) 2003 Per Cederberg. Permission is granted to copy this document verbatim in any medium, provided that this copyright notice -is left intact. +is left intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_1.yml deleted file mode 100644 index 7c413d0a93c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE-GPL.txt -notes: always used with the GPL 2.0 -ignorable_copyrights: - - Copyright (c) 2003 Per Cederberg -ignorable_holders: - - Per Cederberg diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_2.RULE index a8b05a54a8d..924a6920202 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - LICENSE-GPL.txt +notes: always used with the GPL 2.0 +--- + The software in this package is distributed under the GNU General Public License with the "Library Exception" described below. A copy of GNU General Public License (GPL) is included in this distribution, in the diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_2.yml deleted file mode 100644 index 9ceaf319fcc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_grammatica_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - LICENSE-GPL.txt -notes: always used with the GPL 2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_library-exception.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_library-exception.RULE index f8f69f5a555..b052d2086a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_library-exception.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_library-exception.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 99 +notes: always used with the gpl-2.0 +--- + As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to @@ -12,4 +19,4 @@ from your version. As such, this software can be used to run free as well as proprietary applications and applets. Modifications made to the classes in this distribution must however be distributed under the GPL, optionally with the same exception as -above. +above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_library-exception.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_library-exception.yml deleted file mode 100644 index 7eb0ffbc789..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_library-exception.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 99 -notes: always used with the gpl-2.0 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_1.RULE index fd5dd6e1bdc..422549a33d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://github.com/javaee/grizzly/blob/master/LICENSE.txt +--- + ## License -This project is licensed under the CDDLw/CPE - see the [LICENSE.txt](https://github.com/javaee/grizzly/blob/master/LICENSE.txt) file for details. +This project is licensed under the CDDLw/CPE - see the [LICENSE.txt](https://github.com/javaee/grizzly/blob/master/LICENSE.txt) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_1.yml deleted file mode 100644 index b5bd49ed7f3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://github.com/javaee/grizzly/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_2.RULE index e5f4541dcdf..fd11d631e41 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + ## License This project is licensed under the CDDLw/CPE - see the [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_2.yml deleted file mode 100644 index c10ed5213b3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_3.RULE index 68bcb62e531..ae74a8eff24 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License This project is licensed under the CDDLw/CPE - see the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_3.yml deleted file mode 100644 index c10ed5213b3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_4.RULE index 674f0fd52e9..d9daf1d4434 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://oss.oracle.com/licenses/CDDL+GPL-1.1 +--- + /* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_4.yml deleted file mode 100644 index e47b21b5f51..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://oss.oracle.com/licenses/CDDL+GPL-1.1 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_5.RULE index cb07f00fe59..726262b74e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_5.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://oss.oracle.com/licenses/CDDL+GPL-1.1 +--- + https://oss.oracle.com/licenses/CDDL+GPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_5.yml deleted file mode 100644 index d06e61338bb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://oss.oracle.com/licenses/CDDL+GPL-1.1 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_url_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_url_1.RULE index 11e70d0c285..c8e87387066 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://javaee.github.io/javamail/LICENSE +--- + https://javaee.github.io/javamail/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_url_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_url_1.yml deleted file mode 100644 index 550e678df73..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_classpath-exception-2.0_or_cddl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH classpath-exception-2.0 OR cddl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://javaee.github.io/javamail/LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_1.RULE index 5e840724d6a..6dfceacbdb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH cygwin-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License version 2 (GPLv2), as published by the Free Software Foundation, along with the additional permissions given diff --git a/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_1.yml deleted file mode 100644 index 69bf5ee4bba..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH cygwin-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_2.RULE index 2d91be74e64..712d86ee61f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH cygwin-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +--- + Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License version 2 (GPLv2), as published by the Free Software Foundation, along with the additional permissions given diff --git a/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_2.yml deleted file mode 100644 index c64f4207d88..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_cygwin-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH cygwin-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_with_dune-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_dune-exception_1.RULE index 2b38bc0204e..600a3a4413e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_dune-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_dune-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH dune-exception +is_license_notice: yes +relevance: 100 +--- + The DUNE library and headers are licensed under version 2 of the GNU General Public License (see below), with a special exception for linking and compiling against DUNE, the so-called "runtime exception." The license is intended to be similar to the GNU Lesser General Public License, which by itself isn't suitable for a template library. The exact wording of the exception reads as follows: diff --git a/src/licensedcode/data/rules/gpl-2.0_with_dune-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_dune-exception_1.yml deleted file mode 100644 index 8d7b2eb67c4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_dune-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH dune-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_1.RULE index 9d1a72e2841..5093896f0d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +notes: seen in U-Boot and the kernel +--- + 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. @@ -19,4 +25,4 @@ License. However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based on -this file might be covered by the GNU General Public License. +this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_1.yml deleted file mode 100644 index 2464fd706e5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes -notes: seen in U-Boot and the kernel diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_10.RULE index 3f7b6761898..02c262b6bc5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_10.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_text: yes +relevance: 100 +notes: this is a frankenstein license since this is a modified GPL seen in GNU libmicrohttpd +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GPL with eCos Extension Version 2, June 1991 Copyright © 1989, 1991 Free Software Foundation, Inc. @@ -291,4 +304,4 @@ This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public -License instead of this License. +License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_10.yml deleted file mode 100644 index f1cc32c9887..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_10.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_text: yes -relevance: 100 -notes: this is a frankenstein license since this is a modified GPL seen in GNU libmicrohttpd -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_11.RULE index 2c591e262f3..330b771eecc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_11.RULE @@ -1 +1,7 @@ -eCos, GNU General Public License with eCos Extension +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + +eCos, GNU General Public License with eCos Extension \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_11.yml deleted file mode 100644 index b2911b19149..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_12.RULE index d667ca91594..d348cb0bf57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_12.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_text: yes +relevance: 99 +notes: frankenstein modified GPL seen in libmicrothttpd +ignorable_copyrights: + - Copyright 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + @cindex GPL, GNU General Public License @cindex eCos, GNU General Public License with eCos Extension @center Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_12.yml deleted file mode 100644 index fbef7321fb1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_12.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_text: yes -relevance: 99 -notes: frankenstein modified GPL seen in libmicrothttpd -ignorable_copyrights: - - Copyright 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation 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 66d0b2ce321..330ac4029d2 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 @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +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). diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_2.yml deleted file mode 100644 index 8d53b23758a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_3.RULE index 95364989dd5..8ae1ceb0b4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +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). @@ -14,5 +22,4 @@ However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based -on this file might be covered by the GNU General Public License. - +on this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_3.yml deleted file mode 100644 index 8d53b23758a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_4.RULE index 3c82b719297..bfb634fa728 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPL +--- + The C++ wrapper "ftdipp" is distributed under the GNU General Public License version 2 (with a special exception described below). @@ -14,4 +22,4 @@ However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License. This exception does not invalidate any other reasons why a work based -on this file might be covered by the GNU General Public License. +on this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_4.yml deleted file mode 100644 index 8d53b23758a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPL diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_5.RULE index 9fe721a532b..0dadd3f1eb3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + Relicensed under GPLv2 + linking exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_5.yml deleted file mode 100644 index 8dc623631ae..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_6.RULE index a5d96d71f2e..4fb42932500 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_6.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +--- + GPL, GNU General Public License eCos, GNU General Public License with eCos Extension Version 2, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_6.yml deleted file mode 100644 index 4c44994e8e9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_7.RULE index ce3ed02ea57..e9f73da6220 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + eCos, GNU General Public License with eCos Extension Version 2, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_7.yml deleted file mode 100644 index b2911b19149..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_8.RULE index 5b057dc34f5..e7c73979301 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + ECOS EXTENSION 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. However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License v2. This exception does not invalidate any other reasons why a work based on this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_8.yml deleted file mode 100644 index 8dc623631ae..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_9.RULE index 95e95216d8a..d8a0217d0b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +notes: this is a frankenstein notice since this is a modified GPL seen in GNU libmicrohttpd +--- + 14. ECOS EXTENSION 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. However the source code for this file must still be made available in accordance with section (3) of the GNU General Public License v2. This exception does not invalidate any other reasons why a work based on this file might be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_9.yml deleted file mode 100644 index 295b42d38d9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ecos-exception-2.0_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 -notes: this is a frankenstein notice since this is a modified GPL seen in GNU libmicrohttpd diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_1.RULE index 373abdfd53c..cc02e1e77bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_notice: yes +--- + License: This package is free software; you can redistribute it and/or modify @@ -26,4 +31,4 @@ Font Exception: statement from your version. On Debian systems, the complete text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_1.yml deleted file mode 100644 index 70c995caaf4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_10.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_10.RULE index 9713a8e88fa..4dafeed2b8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : GPL-2.0-with-font-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_10.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_10.yml deleted file mode 100644 index 98c2d7d39d9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_11.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_11.RULE index fe37037c718..029a73f8429 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_11.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-2.0-with-font-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_11.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_11.yml deleted file mode 100644 index a5da06be5ea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_12.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_12.RULE index ade4e7fadd8..a0d02fbc248 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_12.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v2.0 w/Font exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_12.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_12.yml deleted file mode 100644 index a5da06be5ea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_2.RULE index 3db058ff281..9327ce4103f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_2.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_text: yes +relevance: 99 +minimum_coverage: 98 +notes: Seen in https://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineTTF_5.3.0_2012_07_02.tgz/download + this is a modified GPL which is problematic +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE (with font exception) Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_2.yml deleted file mode 100644 index 144014764a3..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_2.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_text: yes -relevance: 99 -minimum_coverage: 98 -notes: Seen in https://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineTTF_5.3.0_2012_07_02.tgz/download - this is a modified GPL which is problematic -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_3.RULE index 541a0aafabe..04a466cd7e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_3.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_reference: yes +relevance: 99 +notes: Seen in https://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineTTF_5.3.0_2012_07_02.tgz/download +--- + GNU GENERAL PUBLIC LICENSE (with font exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_3.yml deleted file mode 100644 index cdc969f9290..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_reference: yes -relevance: 99 -notes: Seen in https://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineTTF_5.3.0_2012_07_02.tgz/download diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_4.RULE index b99a69a46d4..735b48212f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +--- + License: This package is free software; you can redistribute it and/or modify @@ -26,4 +32,4 @@ Font Exception: statement from your version. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_4.yml deleted file mode 100644 index ac2e7baa595..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_5.RULE index e88694cb1e5..5febf423e57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +--- + License: This package is free software; you can redistribute it and/or modify @@ -26,4 +32,4 @@ Font Exception: statement from your version. On Debian systems, the text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_5.yml deleted file mode 100644 index ac2e7baa595..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_6.RULE index a24462e075f..6e36d8e01fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_reference: yes +relevance: 100 +--- + GPL-2.0-with-font-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_6.yml deleted file mode 100644 index 84c5c77c48c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_7.RULE index 9461b50db6c..eb9c0acbf53 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0 w/Font exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_7.yml deleted file mode 100644 index 84c5c77c48c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_8.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_8.RULE index 3a7f463538c..fafc9a5c1ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-2.0-with-font-exception GNU General Public License v2.0 w/Font exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_8.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_8.yml deleted file mode 100644 index a5da06be5ea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_9.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_9.RULE index 90252867fea..864b74c0f0f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_9.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v2.0 w/Font exception GPL-2.0-with-font-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_9.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_9.yml deleted file mode 100644 index a5da06be5ea..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_or_ofl-1.1_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_or_ofl-1.1_1.RULE index 15f2c793b73..07d2c659364 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_or_ofl-1.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_or_ofl-1.1_1.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-2.0 WITH font-exception-gpl OR ofl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - GPL.txt + - OFL.txt +notes: Seen in https://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineTTF_5.3.0_2012_07_02.tgz/download +--- + Our fonts are free in the sense of the GPL. In short: Changing the font is allowed as long as the derivative work is published under the same licence again. Pedantics keep claiming that the embedded use of GPL-fonts in i.e. PDFs requires the free publication of the PDF as well. This is why our GPL contains the so called "font exception". Further information about the GPL (licence text with font exception see GPL.txt in this package). Additionally our fonts are licensed under the Open Fonts License (see OFL.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_or_ofl-1.1_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_or_ofl-1.1_1.yml deleted file mode 100644 index 046515b16de..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_font-exception-gpl_or_ofl-1.1_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH font-exception-gpl OR ofl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - GPL.txt - - OFL.txt -notes: Seen in https://sourceforge.net/projects/linuxlibertine/files/linuxlibertine/5.3.0/LinLibertineTTF_5.3.0_2012_07_02.tgz/download diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-compiler-exception-2.0_and_gpl-2.0_with_mif-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-compiler-exception-2.0_and_gpl-2.0_with_mif-exception_1.RULE index 0c55708abcd..8ea535577b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-compiler-exception-2.0_and_gpl-2.0_with_mif-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-compiler-exception-2.0_and_gpl-2.0_with_mif-exception_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH gcc-compiler-exception-2.0 AND gpl-2.0 WITH mif-exception +is_license_notice: yes +relevance: 99 +--- + Parts of this software include the libgcc and libstdc++ libraries owned by the FSF. You may obtain a complete machine-readable copy of the source code for the FSF software under the terms of GNU General Public License (GPL) with libgcc exception and GPL plus libstdc++ exception, without charge except for the cost of media, shipping, and handling, upon written request to Apple. The FSF software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GPL for more details; a copy of the GPL is included below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-compiler-exception-2.0_and_gpl-2.0_with_mif-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-compiler-exception-2.0_and_gpl-2.0_with_mif-exception_1.yml deleted file mode 100644 index 1ab5cf496f4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-compiler-exception-2.0_and_gpl-2.0_with_mif-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-compiler-exception-2.0 AND gpl-2.0 WITH mif-exception -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE index 965de3a8204..b695419bb7f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL-2.0-with-GCC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.yml deleted file mode 100644 index 74fe2421a0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_10.RULE index d22da290941..67a36df44ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : GPL-2.0-with-GCC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_10.yml deleted file mode 100644 index aab086d24a4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_11.RULE index 5dc5ddf6f98..5ee38722990 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-2.0-with-GCC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_11.yml deleted file mode 100644 index ce39e9d9f7a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_12.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_12.RULE index ef16cc9dee0..194fbf5d8ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v2.0 w/GCC Runtime Library exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_12.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_12.yml deleted file mode 100644 index ce39e9d9f7a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_2.RULE index 8ddcf6edd7c..c96a6210b1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_2.RULE @@ -1 +1,9 @@ -https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html \ No newline at end of file +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html +--- + +https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_2.yml deleted file mode 100644 index 1e840697e9c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_3.RULE index 06b97a86254..5a2dd8b32a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + Note that the only valid version of the GPL as far as this project is concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x or whatever), unless explicitly otherwise stated. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_3.yml deleted file mode 100644 index a2b1b450428..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_4.RULE index 503cfd67880..9a340043dee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + License: GPLv2 with linking exception This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_4.yml deleted file mode 100644 index 0b791a4aff5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_5.RULE index b03bc316f15..b13ea647514 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.mit +notes: https://github.com/newren/git-filter-repo/blob/e9e0308df1e9e792598b8e41d0086d7a785e9cc5/COPYING +--- + (currently GPL[2] and GPL-with-linking-exception[3]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_5.yml deleted file mode 100644 index a8c4e1b99bd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.mit -notes: https://github.com/newren/git-filter-repo/blob/e9e0308df1e9e792598b8e41d0086d7a785e9cc5/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_6.RULE index 7ca930d0ca8..41206cab8a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + Note that the only valid version of the GPL as far as this project is concerned is _this_ particular version of the license (ie v2, not v2.2 or v3.x or whatever), unless explicitly otherwise stated. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_6.yml deleted file mode 100644 index 0b791a4aff5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_7.RULE index d1c6e86cb5c..5a25338e050 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v2.0 w/GCC Runtime Library exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_7.yml deleted file mode 100644 index 74fe2421a0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_8.RULE index e12aa0e6e0a..5e65a7d7633 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-2.0-with-GCC-exception GNU General Public License v2.0 w/GCC Runtime Library exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_8.yml deleted file mode 100644 index ce39e9d9f7a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_9.RULE index a52bc29dff5..db8d9aa4811 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v2.0 w/GCC Runtime Library exception GPL-2.0-with-GCC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_9.yml deleted file mode 100644 index ce39e9d9f7a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gcc-linking-exception-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_1.RULE index ee5e28fa244..785137b3cae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_text: yes +relevance: 100 +notes: See https://github.com/Sebijk/vBulletin-Jabber-Integration/blob/3399e0824600e196d5981a4f63e801759fb015ea/vBulletin + 3.x/upload/includes/XMPPHP/LICENSE#L345 +--- + Exceptions: As a special exception to this license, the "Enhanced Jabber Integration" diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_1.yml deleted file mode 100644 index c985515a7ef..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_text: yes -relevance: 100 -notes: See https://github.com/Sebijk/vBulletin-Jabber-Integration/blob/3399e0824600e196d5981a4f63e801759fb015ea/vBulletin - 3.x/upload/includes/XMPPHP/LICENSE#L345 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_10.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_10.RULE index f47e270d499..13fe769e7bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://openvpn.net/ + - http://www.openssl.org/ +--- + Hereby I grant a special exception to the OpenVPN project (http://openvpn.net/) to link the LZO library with the OpenSSL library (http://www.openssl.org). diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_10.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_10.yml deleted file mode 100644 index 8c8c4c1c83a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://openvpn.net/ - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_11.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_11.RULE index 78dbe411eef..8f5dbd914f0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_11.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://openvpn.net/ + - http://www.openssl.org/ +--- + Hereby I grant a special exception to the OpenVPN project (http://openvpn.net/) to link the LZO library with the OpenSSL library (http://www.openssl.org). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_11.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_11.yml deleted file mode 100644 index 8c8c4c1c83a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://openvpn.net/ - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_12.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_12.RULE index fe55f5ca1a0..d813b331dc7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_12.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://openvpn.sourceforge.net/ + - http://www.openssl.org/ +ignorable_emails: + - markus@oberhumer.com +--- + Markus F.X.J. Oberhumer made the following exception in LZO's license to make possible the use of LZO with OpenSSL in OpenVPN: diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_12.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_12.yml deleted file mode 100644 index 7b0a6d36210..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_12.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://openvpn.sourceforge.net/ - - http://www.openssl.org/ -ignorable_emails: - - markus@oberhumer.com diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_13.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_13.RULE index b9530f6959a..260908ffdb8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_13.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://openvpn.sourceforge.net/ + - http://www.openssl.org/ +--- + Hereby I grant a special exception to the OpenVPN project (http://openvpn.sourceforge.net) to link the LZO library with the OpenSSL library (http://www.openssl.org). diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_13.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_13.yml deleted file mode 100644 index 7c76cb6dadc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://openvpn.sourceforge.net/ - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_14.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_14.RULE index 8411c9f148c..6a38992978f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_14.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://openvpn.sourceforge.net/ + - http://www.openssl.org/ +--- + Hereby I grant a special exception to the OpenVPN project (http://openvpn.sourceforge.net) to link the LZO library with the OpenSSL library (http://www.openssl.org). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_14.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_14.yml deleted file mode 100644 index 7c76cb6dadc..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://openvpn.sourceforge.net/ - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_2.RULE index c436296dadf..5e7425e5df7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +notes: see https://raw.githubusercontent.com/armedbear/abcl/master/COPYING +--- + As a special exception, the copyright holders of this software give you permission to link this software with independent modules to produce an executable, regardless of the license terms of these diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_2.yml deleted file mode 100644 index cbeec7d7258..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 -notes: see https://raw.githubusercontent.com/armedbear/abcl/master/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_3.RULE index 8f5dfc3da44..db152b6d548 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: see https://raw.githubusercontent.com/armedbear/abcl/master/COPYING +--- + Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_3.yml deleted file mode 100644 index c49d9f0d570..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: see https://raw.githubusercontent.com/armedbear/abcl/master/COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_4.RULE index 97916df970d..6adaeeb6c1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_reference: yes +relevance: 99 +--- + GPL 2.0 with Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_4.yml deleted file mode 100644 index 25194443f32..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_5.RULE index 75e57838394..efe9828a8ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +--- + released as open source under the GNU General Public License version 2 with exceptions \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_5.yml deleted file mode 100644 index 41fd3ee28ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_6.RULE index 1e78535e761..0f379818d71 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.OpenSSL +--- + In addition, as a special exception, the copyright holder gives permission to link the code of this program with any version of the OpenSSL library which is distributed diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_6.yml deleted file mode 100644 index b4e97496e79..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.OpenSSL diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_7.RULE index cb30ffb03dc..fbaf42ad7ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +--- + licensed under version 2 of the GNU GPL. As copyright holder, I give permission for vsftpd to be linked to the OpenSSL libraries. This includes permission for binaries to be distributed diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_7.yml deleted file mode 100644 index 41fd3ee28ff..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_8.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_8.RULE index 4062d52a061..2f2e76bd318 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_8.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 99 +ignorable_copyrights: + - Copyright (c) Markus F.X.J. Oberhumer +ignorable_holders: + - Markus F.X.J. Oberhumer +ignorable_urls: + - http://openvpn.net/ + - http://www.openssl.org/ +--- + LZO license: LZO is Copyright (C) Markus F.X.J. Oberhumer, diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_8.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_8.yml deleted file mode 100644 index 83132c0b3f9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_8.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 99 -ignorable_copyrights: - - Copyright (c) Markus F.X.J. Oberhumer -ignorable_holders: - - Markus F.X.J. Oberhumer -ignorable_urls: - - http://openvpn.net/ - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_9.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_9.RULE index ed7ab3f9578..27c890fbd7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://openvpn.net/ + - http://www.openssl.org/ +--- + Special exception for linking OpenVPN with both OpenSSL and LZO: Hereby I grant a special exception to the OpenVPN project diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_9.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_9.yml deleted file mode 100644 index 8c8c4c1c83a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://openvpn.net/ - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_and_gpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_and_gpl-generic-additional-terms_1.RULE index 63c9f123da4..f4c31ec64ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_and_gpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_and_gpl-generic-additional-terms_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 WITH generic-exception AND gpl-generic-additional-terms +is_license_text: yes +relevance: 100 +notes: See https://github.com/armedbear/abcl/blob/master/COPYING The GPL text is modified which + is problematic +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The software in this package is distributed under the GNU General Public License (with a special exception described below as 13th term). diff --git a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_and_gpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_and_gpl-generic-additional-terms_1.yml deleted file mode 100644 index b98798649ae..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_generic-exception_and_gpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 WITH generic-exception AND gpl-generic-additional-terms -is_license_text: yes -relevance: 100 -notes: See https://github.com/armedbear/abcl/blob/master/COPYING The GPL text is modified which - is problematic -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_1.RULE index c35d281ad3c..912d3fc5469 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + <:label-BRCM:2011:DUAL/GPL:standard Unless you and Broadcom execute a separate written software license diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_1.yml deleted file mode 100644 index b9b1acbecd4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_2.RULE index 093d30d5423..2293c6ccb29 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + DUAL/GPL:standard Unless you and Broadcom execute a separate written software license diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_2.yml deleted file mode 100644 index b9b1acbecd4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_3.RULE index 846b1546e57..3304a2c64eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + <:label-BRCM:2008:DUAL/GPL:standard Unless you and Broadcom execute a separate written software license diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_3.yml deleted file mode 100644 index b9b1acbecd4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_4.RULE index 124405accc0..3234ebf05f0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 2008 Broadcom +ignorable_holders: + - Broadcom +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + <:copyright-BRCM:2008:DUAL/GPL:standard Copyright (c) 2008 Broadcom @@ -23,4 +34,4 @@ this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior written consent. -:> +:> \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_4.yml deleted file mode 100644 index 407cbac0d72..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 2008 Broadcom -ignorable_holders: - - Broadcom -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_5.RULE index 8c65deb6c4d..3424e15eb9d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.broadcom.com/licenses/GPLv2.php +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2 @@ -16,4 +23,4 @@ with the following added to such license: Not withstanding the above, under no circumstances may you combine this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior -written consent. +written consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_5.yml deleted file mode 100644 index b9b1acbecd4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-2.0-broadcom-linking_or_commercial-option_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH broadcom-linking-exception-2.0 OR commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.broadcom.com/licenses/GPLv2.php diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_1.RULE index c6474c321e6..bf57b087422 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.OpenSSL +--- + In addition, as a special exception, the copyright holder gives permission to link the code of this program with any version of the OpenSSL library which is distributed diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_1.yml deleted file mode 100644 index b8b64608c26..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.OpenSSL diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_1.RULE index 88d2c578cf0..69ca76260a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH gpl-generic-additional-terms AND mit-old-style-no-advert +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.OpenSSL +--- + license socat is distributed under the terms of the GNU GPLv2; except for install-sh, which is copyright MIT, with its own license; diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_1.yml deleted file mode 100644 index 9af0ddec38b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH gpl-generic-additional-terms AND mit-old-style-no-advert -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.OpenSSL diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_2.RULE index a92ca9bdd96..dabf9fca3c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH gpl-generic-additional-terms AND mit-old-style-no-advert +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.OpenSSL +--- + is distributed under the terms of the GNU GPLv2; except for install-sh, which is copyright MIT, with its own license; diff --git a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_2.yml deleted file mode 100644 index 9af0ddec38b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_gpl-generic-additional-terms_and_mit-old-style-no-advert_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH gpl-generic-additional-terms AND mit-old-style-no-advert -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.OpenSSL diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_1.RULE index 6a82db072f7..59567e8d35b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH ice-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://mumble.sourceforge.net/ + - http://orca-robotics.sourceforge.net/ + - http://www.gnu.org/licenses + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + This copy of Ice 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. @@ -37,4 +47,4 @@ (https://www.apache.org/licenses/LICENSE-2.0.html) If you modify this copy of Ice, you may extend any of the exceptions provided above to your version of Ice, but you are not obligated to - do so. + do so. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_1.yml deleted file mode 100644 index 493a62c5a34..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH ice-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://mumble.sourceforge.net/ - - http://orca-robotics.sourceforge.net/ - - http://www.gnu.org/licenses - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_2.RULE index cc9454a9323..9779aaf3c20 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH ice-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mumble.sourceforge.net/ + - http://orca-robotics.sourceforge.net/ + - https://www.apache.org/licenses/LICENSE-2.0.html + - https://www.gnu.org/licenses +--- + This copy of Ice 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. @@ -37,4 +48,4 @@ (https://www.apache.org/licenses/LICENSE-2.0.html) If you modify this copy of Ice, you may extend any of the exceptions provided above to your version of Ice, but you are not obligated to - do so. + do so. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_2.yml deleted file mode 100644 index 70cb38acdd4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH ice-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mumble.sourceforge.net/ - - http://orca-robotics.sourceforge.net/ - - https://www.apache.org/licenses/LICENSE-2.0.html - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_3.RULE index 7be024695cf..cb3486c6a71 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH ice-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mumble.sourceforge.net/ + - http://orca-robotics.sourceforge.net/ + - http://www.apache.org/licenses/LICENSE-2.0.html + - https://www.gnu.org/licenses +--- + This copy of Ice 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. @@ -37,4 +48,4 @@ (http://www.apache.org/licenses/LICENSE-2.0.html) If you modify this copy of Ice, you may extend any of the exceptions provided above to your version of Ice, but you are not obligated to - do so. + do so. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_3.yml deleted file mode 100644 index 3540390eca1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_ice-exception-2.0_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH ice-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mumble.sourceforge.net/ - - http://orca-robotics.sourceforge.net/ - - http://www.apache.org/licenses/LICENSE-2.0.html - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_1.RULE index baa9ce7c48e..cf8aa4e8ce2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 WITH liberation-font-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/LiberationFontLicense +--- + Older versions of the Liberation(tm) Fonts is released as open source under the GNU General Public License version 2 with exceptions. ``_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_1.yml deleted file mode 100644 index 7797b80008d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH liberation-font-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/LiberationFontLicense diff --git a/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_2.RULE index 9bbac3a1cd2..a4dcf493bf0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_2.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 WITH liberation-font-exception +is_license_notice: yes +is_continuous: yes +relevance: 99 +--- + {{released under the terms of the Liberation License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_2.yml deleted file mode 100644 index 5507b7191f9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_liberation-font-exception_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH liberation-font-exception -is_license_notice: yes -is_continuous: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_1.RULE index 18de94b5ed7..96b84ff70df 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_notice: yes +minimum_coverage: 90 +--- + The Linux Kernel is provided under: SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note @@ -15,4 +21,4 @@ In addition, other licenses may also apply. Please see: Documentation/process/license-rules.rst -for more details. +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_1.yml deleted file mode 100644 index 2c69f366126..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_10.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_10.RULE index 34af419256e..7df8f88a514 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_10.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_notice: yes +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". Also note that the diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_10.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_10.yml deleted file mode 100644 index 3472b6de1d9..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_notice: yes -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_2.RULE index f3abb43354e..144031f7268 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_2.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.1 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_2.yml deleted file mode 100644 index 7b75ebb3c92..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_2.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.1 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_3.RULE index 49a05b541d8..3880c153bca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.3 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_3.yml deleted file mode 100644 index f297d603050..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.3 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_4.RULE index 90a9ebe7678..fa16f3ee5a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_4.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.4 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_4.yml deleted file mode 100644 index 7b6a2d70e01..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_4.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.4 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_5.RULE index cfec1723148..9e1ae91c1a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_5.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.5 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_5.yml deleted file mode 100644 index aa930721f45..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_5.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.5 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_6.RULE index b2e7ab4080e..bef816d47e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_6.RULE @@ -1,3 +1,19 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_text: yes +relevance: 100 +minimum_coverage: 98 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.1 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_6.yml deleted file mode 100644 index 268bec2c6c7..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_6.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_text: yes -relevance: 100 -minimum_coverage: 98 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.1 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_7.RULE index 900ab90f48d..be4061c3028 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_7.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.2 +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_7.yml deleted file mode 100644 index cb752f881ce..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_7.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.2 -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_8.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_8.RULE index f7c446f0c06..8d853cd39c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_8.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_8.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_8.yml deleted file mode 100644 index 773118de8e5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_8.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_9.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_9.RULE index edddddd3140..7b5b6b1b74e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_9.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". Also note that the diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_9.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_9.yml deleted file mode 100644 index 5ea558bda82..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_9.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_and_other-permissive_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_and_other-permissive_and_other-copyleft_1.RULE index c6f43a47f26..29579142d47 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_and_other-permissive_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_and_other-permissive_and_other-copyleft_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl AND (other-permissive AND other-copyleft) +is_license_notice: yes +relevance: 100 +notes: Linux new COPYING +--- + The Linux Kernel is provided under: SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-notelinux @@ -15,4 +22,4 @@ In addition, other licenses may also apply. Please see: Documentation/process/license-rules.rst -for more details. +for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_and_other-permissive_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_and_other-permissive_and_other-copyleft_1.yml deleted file mode 100644 index f9324bfc229..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_and_other-permissive_and_other-copyleft_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl AND (other-permissive AND other-copyleft) -is_license_notice: yes -relevance: 100 -notes: Linux new COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_or_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_or_bsd-new_1.RULE index c2c3f76a655..84203326fcc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_or_bsd-new_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +notes: openib +--- + SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */ @@ -43,4 +50,4 @@ 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. + 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/gpl-2.0_with_linux-syscall-exception-gpl_or_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_or_bsd-new_1.yml deleted file mode 100644 index 7552ed8b40f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_or_bsd-new_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH linux-syscall-exception-gpl OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -notes: openib diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mif-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mif-exception_1.RULE index 433aa8bc265..edabc5e3b10 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mif-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mif-exception_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH mif-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + This file is part of Threading Building Blocks. Threading Building Blocks 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. Threading Building Blocks is diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mif-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_mif-exception_1.yml deleted file mode 100644 index f1502d19192..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mif-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH mif-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_1.RULE index 05141090ca4..32f95e48ef1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_1.RULE @@ -1,7 +1,15 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mysql.com/about/legal/licensing/foss-exception.html + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + The MySQL Connector/C++ is licensed under the terms of the GPLv2 , like most MySQL Connectors. There are special exceptions to the terms and conditions of the GPLv2 as it is applied to this software, see the FLOSS License Exception -. - +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_1.yml deleted file mode 100644 index 01fcfc294be..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mysql.com/about/legal/licensing/foss-exception.html - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_2.RULE index 454d865dec7..fbc997c4ddf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/docs/definition.php + - https://www.gnu.org/philosophy/free-sw.html +--- + MySQL FLOSS License Exception The MySQL AB Exception for Free/Libre and Open Source diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_2.yml deleted file mode 100644 index 9107cd2bfa4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/docs/definition.php - - https://www.gnu.org/philosophy/free-sw.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_3.RULE index efb96517661..89b9e5c959d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/docs/definition.php + - https://www.gnu.org/philosophy/free-sw.html +--- + MySQL FLOSS License Exception The MySQL AB Exception for Free/Libre and Open Source Software-only Applications @@ -110,5 +119,4 @@ which are covered by the FLOSS License Exception. Please note that this appendix is provided merely as an additional service to specific FLOSS projects wishing to simplify licensing information for their users. Compliance with one of the licenses noted under -the "FLOSS license list" section remains a prerequisite. - +the "FLOSS license list" section remains a prerequisite. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_3.yml deleted file mode 100644 index 9107cd2bfa4..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/docs/definition.php - - https://www.gnu.org/philosophy/free-sw.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_4.RULE index ce14415dc5c..97ddc0a4e31 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mysql.com/about/legal/licensing/foss-exception.html + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + The MySQL Connector/C is licensed under the terms of the GPLv2 , like most MySQL Connectors. There are special exceptions to the terms and diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_4.yml deleted file mode 100644 index 01fcfc294be..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-floss-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-floss-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mysql.com/about/legal/licensing/foss-exception.html - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_1.RULE index fc2eaaf224f..d8c17b29c53 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 +is_license_notice: yes +relevance: 100 +--- + This distribution of MySQL is distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in the diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_1.yml deleted file mode 100644 index 81844284b5c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-linking-exception-2018 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_2.RULE index 4eecbf080f7..cd9fac03bf7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 +is_license_notice: yes +relevance: 100 +--- + // 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. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_2.yml deleted file mode 100644 index 81844284b5c..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-linking-exception-2018 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_3.RULE index 177681a19f4..f36ee77680d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 +is_license_notice: yes +referenced_filenames: + - EXCEPTIONS-CONNECTOR-J +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + The GNU General Public License, Version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_3.yml deleted file mode 100644 index e0846828d54..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-linking-exception-2018 -is_license_notice: yes -referenced_filenames: - - EXCEPTIONS-CONNECTOR-J -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_4.RULE index 1c0360f853c..655df392d9e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 +is_license_notice: yes +referenced_filenames: + - EXCEPTIONS-CONNECTOR-J +--- + MySQL Connector/J contains exceptions to GPL requirements when linking with other components that are licensed under OSI-approved open source licenses, see EXCEPTIONS-CONNECTOR-J in this distribution for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_4.yml deleted file mode 100644 index 81eb216fe0b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-linking-exception-2018 -is_license_notice: yes -referenced_filenames: - - EXCEPTIONS-CONNECTOR-J diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_1.RULE index f27c17ca53d..bc697186972 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception +--- + This is a release of MySQL 8.0, brought to you by the MySQL team at Oracle. This software is released under version 2 of the GNU General Public License (GPLv2), as set forth below, with the following diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_1.yml deleted file mode 100644 index 3cc68199ead..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/universal-foss-exception diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_2.RULE index 8ea92201448..8a670a5718b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception +--- + This is a release of MySQL, brought to you by the MySQL team at Oracle. This software is released under version 2 of the GNU General Public License (GPLv2), as set forth below, with the following diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_2.yml deleted file mode 100644 index 3cc68199ead..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/universal-foss-exception diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_3.RULE index cbc833c7591..d4440647718 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_3.yml deleted file mode 100644 index 3cc68199ead..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_mysql-linking-exception-2018_and_gpl-2.0_with_and_others_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH mysql-linking-exception-2018 AND gpl-2.0 WITH universal-foss-exception-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/universal-foss-exception diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception2.RULE index f5670769a46..b7d30330b04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception @@ -24,5 +32,4 @@ build an executable that includes those portions of necessary code that Sun could not provide under GPL2 (or that Sun has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the -new code is made subject to this exception by its copyright holder. - +new code is made subject to this exception by its copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception2.yml b/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception2.yml deleted file mode 100644 index fac1cea7a45..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception_1.RULE index bb525583555..2cd749218ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH openjdk-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - https://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception @@ -24,5 +33,4 @@ build an executable that includes those portions of necessary code that Sun could not provide under GPL2 (or that Sun has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the -new code is made subject to this exception by its copyright holder. - +new code is made subject to this exception by its copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception_1.yml deleted file mode 100644 index b371be5e0cf..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openjdk-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH openjdk-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_1.RULE index b34badb2137..c42800df7a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This LICENSE file is a modification to the main LICENSE file, which is GPLv2. It applies only to the files in the "src" directory. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_1.yml deleted file mode 100644 index 1229b37a420..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_10.RULE index 5ba971ed2e9..8a79f975b3b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + All other files are released under the GNU General Public License version 2, with the additional exemption that compiling, linking, and/or using OpenSSL is allowed. See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_10.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_10.yml deleted file mode 100644 index efc07761e83..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_11.RULE index a539964f183..a83f3def6fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: Seen in xymon https://sourceforge.net/projects/xymon/ +--- + Open Source software, made available under the GNU General Public License (GPL) version 2, with the explicit exemption that linking with the OpenSSL libraries is permitted. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_11.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_11.yml deleted file mode 100644 index 1aeb228a69b..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -notes: Seen in xymon https://sourceforge.net/projects/xymon/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_2.RULE index 43e61a4f9fc..381bf92534a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License version 2 with the addition of the following special exception: diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_2.yml deleted file mode 100644 index 8882611340e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_3.RULE index 9d48fdf13c6..87abf0bddcb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 95 +notes: Seen inhttps://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp The text + is not exactly the same with small modifications . +--- + In addition, as a special exception, gives permission to link the code of its release of with the OpenSSL project's "OpenSSL" library (or modified versions of the "OpenSSL" library that use the same license diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_3.yml deleted file mode 100644 index b9bdac73b6d..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 95 -notes: Seen inhttps://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp The text - is not exactly the same with small modifications . diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_4.RULE index 1b0b9ce9894..3ea80d5545d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: Seen inhttps://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp The text + is not exactly the same but modifications are minor. +--- + In addition, as a special exception, give permission to link the code of with the OpenSSL project's "OpenSSL" library (or modified versions of the "OpenSSL" library that use the same license diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_4.yml deleted file mode 100644 index d59eb45eeef..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: Seen inhttps://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp The text - is not exactly the same but modifications are minor. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_5.RULE index 18b2349dec3..715849bb00d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + In addition, as a special exception, give permission to link the code of with the OpenSSL library under certain conditions as described in each diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_5.yml deleted file mode 100644 index 8882611340e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_6.RULE index a7fbd0a95b7..4a3bba29ea5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + In addition, as a special exception, Tobias Doerffel gives permission to link the code of its release of iTALC with the OpenSSL project's "OpenSSL" library (or modified versions of the "OpenSSL" library that use the same license diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_6.yml deleted file mode 100644 index 8882611340e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_7.RULE index 3ba4f8b322b..60c315399c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: Seen in monit at https://bitbucket.org/tildeslash/monit/src/7b8f180bdb1732620e07c62f939fb2d0e7c68c0f/COPYING?at=master +--- + License Exception In addition, as a special exception, the copyright holders give diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_7.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_7.yml deleted file mode 100644 index 9325b4e0bab..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: Seen in monit at https://bitbucket.org/tildeslash/monit/src/7b8f180bdb1732620e07c62f939fb2d0e7c68c0f/COPYING?at=master diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_8.RULE index 0ae9f64be17..aeffafdb812 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +--- + This program is released under the GNU General Public License (GPL), version 2, with the explicit exemption that linking with the OpenSSL libraries is permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_8.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_8.yml deleted file mode 100644 index 7c6ef88617f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_9.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_9.RULE index 9c88af05daf..8447cd40806 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + This program is released under the GNU General Public License (GPL), version 2, with the explicit exemption that linking with the OpenSSL libraries is permitted. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_9.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_9.yml deleted file mode 100644 index de12254d523..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-2.0_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_1.RULE index 799f6ff42b3..c6bd9a23c5f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.openssl.org/ +--- + is a 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 FSF - Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_1.yml deleted file mode 100644 index 93c1f7f5685..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_2.RULE index 40174588469..5720a9d5937 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.openssl.org/ +--- + is a 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 FSF - Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_2.yml deleted file mode 100644 index 93c1f7f5685..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_3.RULE index d9989586f1c..8b3c4860d5a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + documentation are licensed under the terms of the GNU General Public License Version 2, you will find a copy of this license in the COPYING file included in the source package. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_3.yml deleted file mode 100644 index 4ccad137ebd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_4.RULE index 9f34f39a890..b3cba9947de 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed under the terms of the GNU General Public License Version 2, you will find a copy of this license in the COPYING file included in the source package. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_4.yml deleted file mode 100644 index 4ccad137ebd..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_openssl-ssleay_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_openssl-ssleay_1.RULE index 5eed94ae1cf..71cac70ef21 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_openssl-ssleay_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_openssl-ssleay_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus AND openssl-ssleay +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.openssl.org/ +--- + is a 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 FSF - Free Software Foundation. @@ -53,6 +61,4 @@ 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 below for more details. - - + See the GNU General Public License Version 2 below for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_openssl-ssleay_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_openssl-ssleay_1.yml deleted file mode 100644 index a91d252f1b5..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_openssl-ssleay_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus AND openssl-ssleay -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_unknown_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_unknown_1.RULE index fd11124913e..6c3b348768e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_unknown_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus AND unknown +is_license_notice: yes +relevance: 100 +notes: the GPL impact interpretation is uncommon and short of a legal analysis is reported as + an extra unknown license +ignorable_urls: + - http://www.openssl.org/ +--- + OSSEC HIDS is a 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 FSF - Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_unknown_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_unknown_1.yml deleted file mode 100644 index f7c9501090e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openssl-exception-gpl-3.0-plus_and_unknown_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH openssl-exception-gpl-3.0-plus AND unknown -is_license_notice: yes -relevance: 100 -notes: the GPL impact interpretation is uncommon and short of a legal analysis is reported as - an extra unknown license -ignorable_urls: - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_1.RULE index 314034ad9f3..6ca4017953c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0 WITH openvpn-openssl-exception +is_license_notice: yes +relevance: 100 +--- + OpenVPN is distributed under the GPL license version 2 (see Below). Special exception for linking OpenVPN with OpenSSL: diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_1.yml deleted file mode 100644 index 11a69062ce1..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH openvpn-openssl-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_2.RULE index ee019708647..45b4ebc1550 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH openvpn-openssl-exception +is_license_notice: yes +relevance: 100 +notes: https://tracker.debian.org/media/packages/o/openvpn/copyright-2.4.0-6%2Bdeb9u2 +--- + This package 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; version 2 dated June, 1991. diff --git a/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_2.yml deleted file mode 100644 index 251faff4d4a..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_openvpn-openssl-exception_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH openvpn-openssl-exception -is_license_notice: yes -relevance: 100 -notes: https://tracker.debian.org/media/packages/o/openvpn/copyright-2.4.0-6%2Bdeb9u2 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_1.RULE index 3417f82e90e..7ac09f83717 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-2.0 WITH oracle-openjdk-classpath-exception-2.0 +is_license_text: yes +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The GNU General Public License (GPL) Version 2, June 1991 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_1.yml deleted file mode 100644 index 4cbf8f119ed..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-2.0 WITH oracle-openjdk-classpath-exception-2.0 -is_license_text: yes -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_and_other_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_and_other_1.RULE index 67a5a743b6b..f2286f71f53 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_and_other_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_and_other_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 WITH oracle-openjdk-classpath-exception-2.0 AND gpl-2.0 WITH openjdk-assembly-exception-1.0 + AND other-copyleft AND other-permissive +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - THIRD_PARTY_README +--- + OpenJDK is licensed under the GPL v2 with exceptions, see `/usr/share/common-licenses/GPL-2'. The exceptions are: diff --git a/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_and_other_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_and_other_1.yml deleted file mode 100644 index 6bfbdece6cb..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_oracle-openjdk-classpath-exception-2.0_and_other_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 WITH oracle-openjdk-classpath-exception-2.0 AND gpl-2.0 WITH openjdk-assembly-exception-1.0 - AND other-copyleft AND other-permissive -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - THIRD_PARTY_README diff --git a/src/licensedcode/data/rules/gpl-2.0_with_qt-qca-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_qt-qca-exception-2.0_1.RULE index 47c0df2deeb..c894a9f34bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_qt-qca-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_qt-qca-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH qt-qca-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, version 2. @@ -18,4 +25,4 @@ source distribution, provided that the library interfaces with this program only via the following plugin interfaces: 1. The Qt Plugin APIs, only as authored by Trolltech - 2. The QCA Plugin API, only as authored by Justin Karneges + 2. The QCA Plugin API, only as authored by Justin Karneges \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_qt-qca-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_qt-qca-exception-2.0_1.yml deleted file mode 100644 index 3a6a83f3982..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_qt-qca-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH qt-qca-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_1.RULE index 2402a4076f0..0964763896f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-2.0 WITH trolltech-gpl-exception-1.2 +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL + - GPL_EXCEPTION.txt +ignorable_urls: + - http://trolltech.com/products/qt/licenses/licensing/licensingoverview + - http://trolltech.com/products/qt/licenses/licensing/opensource/ + - http://www.trolltech.com/products/qt/gplexception/ +ignorable_emails: + - sales@trolltech.com +--- + ** This file may be used under the terms of the GNU General Public ** License version 2.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of diff --git a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_1.yml deleted file mode 100644 index 7d71a4de257..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-2.0 WITH trolltech-gpl-exception-1.2 -is_license_notice: yes -referenced_filenames: - - LICENSE.GPL - - GPL_EXCEPTION.txt -ignorable_urls: - - http://trolltech.com/products/qt/licenses/licensing/licensingoverview - - http://trolltech.com/products/qt/licenses/licensing/opensource/ - - http://www.trolltech.com/products/qt/gplexception/ -ignorable_emails: - - sales@trolltech.com diff --git a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_1.RULE index ee5ebdf4017..daad526f89f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-2.0 WITH trolltech-gpl-exception-1.2 OR gpl-3.0 WITH trolltech-gpl-exception-1.2 +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL2 + - LICENSE.GPL3 + - GPL_EXCEPTION.txt +ignorable_urls: + - http://trolltech.com/products/qt/licenses/licensing/licensingoverview + - http://trolltech.com/products/qt/licenses/licensing/opensource + - http://www.trolltech.com/products/qt/gplexception/ +ignorable_emails: + - sales@trolltech.com +--- + ** This file may be used under the terms of the GNU General Public ** License versions 2.0 or 3.0 as published by the Free Software ** Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_1.yml deleted file mode 100644 index 90849ee7819..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-2.0 WITH trolltech-gpl-exception-1.2 OR gpl-3.0 WITH trolltech-gpl-exception-1.2 -is_license_notice: yes -referenced_filenames: - - LICENSE.GPL2 - - LICENSE.GPL3 - - GPL_EXCEPTION.txt -ignorable_urls: - - http://trolltech.com/products/qt/licenses/licensing/licensingoverview - - http://trolltech.com/products/qt/licenses/licensing/opensource - - http://www.trolltech.com/products/qt/gplexception/ -ignorable_emails: - - sales@trolltech.com diff --git a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_2.RULE index e718d177ae4..5fa91d04200 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH trolltech-gpl-exception-1.2 OR gpl-3.0 WITH trolltech-gpl-exception-1.2 +is_license_notice: yes +referenced_filenames: + - GPL_Exception_Addendum.txt +--- + Trolltech GPL Exception version 1.2 Additional rights granted beyond the GPL (the "Exception"). diff --git a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_2.yml deleted file mode 100644 index 77ba519fbbe..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_trolltech-gpl-exception-1.2_or_gpl-3.0_with_and_others_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH trolltech-gpl-exception-1.2 OR gpl-3.0 WITH trolltech-gpl-exception-1.2 -is_license_notice: yes -referenced_filenames: - - GPL_Exception_Addendum.txt diff --git a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_1.RULE index ba2b20ac004..9f9ccdd1926 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-2.0 WITH u-boot-exception-2.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover the so-called "standalone" applications that use U-Boot services by means of the jump table provided by U-Boot exactly for this purpose - this is merely diff --git a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_1.yml deleted file mode 100644 index c9c61cf4e9e..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-2.0 WITH u-boot-exception-2.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_1.RULE index 72f895518d9..9558091fc3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH u-boot-exception-2.0 AND gpl-2.0-plus WITH u-boot-exception-2.0 +is_license_notice: yes +--- + GPL License Exception: Even though U-Boot in general is covered by the GPL-2.0/GPL-2.0+, diff --git a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_1.yml deleted file mode 100644 index edd4d7cf10f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH u-boot-exception-2.0 AND gpl-2.0-plus WITH u-boot-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_2.RULE index 463a1053554..bbff4f940f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH u-boot-exception-2.0 AND gpl-2.0-plus WITH u-boot-exception-2.0 +is_license_notice: yes +--- + Even though U-Boot in general is covered by the GPL-2.0/GPL-2.0+, this does *not* cover the so-called "standalone" applications that use U-Boot services by means of the jump table provided by U-Boot diff --git a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_2.yml deleted file mode 100644 index edd4d7cf10f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH u-boot-exception-2.0 AND gpl-2.0-plus WITH u-boot-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_3.RULE index d62b073b651..d5e4bd37002 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 WITH u-boot-exception-2.0 AND gpl-2.0-plus WITH u-boot-exception-2.0 +is_license_notice: yes +--- + Even though U-Boot in general is covered by the GPL-2.0/GPL-2.0+, this does *not* cover the so-called "standalone" applications that use U-Boot services by means of the jump table provided by U-Boot diff --git a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_3.yml deleted file mode 100644 index edd4d7cf10f..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_u-boot-exception-2.0_and_gpl-2.0-plus_with_u-boot-exception-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH u-boot-exception-2.0 AND gpl-2.0-plus WITH u-boot-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_1.RULE index 0a224bee7a2..32be6095224 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception +--- + This distribution includes the MySQL C API client library (libmysqlclient) otherwise known as MySQL Connector/C. Without limiting the foregoing grant of rights under the GPLv2 and additional permission diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_1.yml b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_1.yml deleted file mode 100644 index d842ed78b97..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH universal-foss-exception-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/universal-foss-exception diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_2.RULE b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_2.RULE index aa54cdd3317..8265ac21073 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception +--- + Without limiting anything contained in the foregoing, this file, which is part of C Driver for MySQL (Connector/C), is also subject to the Universal FOSS Exception, version 1.0, a copy of which can be found at diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_2.yml b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_2.yml deleted file mode 100644 index d842ed78b97..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH universal-foss-exception-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/universal-foss-exception diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_3.RULE index 41832186929..002bc0039bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception +--- + subject to the Universal FOSS Exception, version 1.0, a copy of which can be found at http://oss.oracle.com/licenses/universal-foss-exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_3.yml b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_3.yml deleted file mode 100644 index d842ed78b97..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH universal-foss-exception-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/universal-foss-exception diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_4.RULE index d09c9a0583a..9cc345efe60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH universal-foss-exception-1.0 +is_license_notice: yes +relevance: 100 +--- + subject to the Universal FOSS Exception, version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_4.yml b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_4.yml deleted file mode 100644 index 1e8f0295470..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH universal-foss-exception-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_5.RULE index abb5914c024..9383514439f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 WITH universal-foss-exception-1.0 +is_license_reference: yes +relevance: 100 +--- + Universal FOSS Exception, version 1.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_5.yml b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_5.yml deleted file mode 100644 index 59e1472cc83..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 WITH universal-foss-exception-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_6.RULE b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_6.RULE index 643b1823793..d250c04a064 100644 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 WITH universal-foss-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/universal-foss-exception +--- + http://oss.oracle.com/licenses/universal-foss-exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_6.yml b/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_6.yml deleted file mode 100644 index 2868823f1db..00000000000 --- a/src/licensedcode/data/rules/gpl-2.0_with_universal-foss-exception-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 WITH universal-foss-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/universal-foss-exception diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_1.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_1.RULE index f535793e3f2..99810610231 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-3.0 Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_1.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_1.yml deleted file mode 100644 index 75c09c33839..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_2.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_2.RULE index 9506797bde8..7d12cbff850 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GPL-3.0 Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_2.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_2.yml deleted file mode 100644 index 75c09c33839..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_3.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_3.RULE index e8e6f14d2da..cceffad69a6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-3.0-linking-exception GPL-3.0 Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_3.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_3.yml deleted file mode 100644 index 75c09c33839..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_4.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_4.RULE index 40b723190ed..ade0c9ed21e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_4.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_4.yml deleted file mode 100644 index 3d97133a9dd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_5.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_5.RULE index caed188d08b..9cbbb157a83 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: GPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_5.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_5.yml deleted file mode 100644 index 3d97133a9dd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_6.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_6.RULE index 3a485b47464..85745bea9d8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_6.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GPL-3.0-linking-exception +--- + https://licenses.nuget.org/GPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_6.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_6.yml deleted file mode 100644 index a7ce6dfa709..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GPL-3.0-linking-exception diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_7.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_7.RULE index 75ac843d6b3..d45c3b9bb76 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_7.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_7.yml deleted file mode 100644 index 1e6db6f4251..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_8.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_8.RULE index cae6e257dd1..729073e1172 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-linking-exception +--- + LICENSE {{GPL-3.0-linking-exception}} https://spdx.org/licenses/GPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_8.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_8.yml deleted file mode 100644 index bc6c57d2f2b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-linking-exception diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_9.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-exception_9.RULE index b2e53df634f..8887a0bf6b3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-exception_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-linking-exception +--- + {{GPL-3.0-linking-exception}} https://spdx.org/licenses/GPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-exception_9.yml b/src/licensedcode/data/rules/gpl-3.0-linking-exception_9.yml deleted file mode 100644 index bc6c57d2f2b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-exception_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-linking-exception diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_1.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_1.RULE index 157c5b5b26f..e254547f7e2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-3.0 Linking Exception (with Corresponding Source) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_1.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_1.yml deleted file mode 100644 index db39c2ab657..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_10.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_10.RULE index 1bce5fc4ae7..c71947cfae1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-linking-source-exception +--- + {{GPL-3.0-linking-source-exception}} https://spdx.org/licenses/GPL-3.0-linking-source-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_10.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_10.yml deleted file mode 100644 index ebcfbe08674..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-linking-source-exception diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_11.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_11.RULE index 5816a0e350c..8e06056da51 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-linking-source-exception +--- + LICENSE {{GPL-3.0-linking-source-exception}} https://spdx.org/licenses/GPL-3.0-linking-source-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_11.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_11.yml deleted file mode 100644 index ebcfbe08674..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-linking-source-exception diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_2.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_2.RULE index 9fccf68808c..c3b154f4499 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GPL-3.0 Linking Exception (with Corresponding Source) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_2.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_2.yml deleted file mode 100644 index db39c2ab657..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_3.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_3.RULE index 32332d2eac8..8a8000545c5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-3.0-linking-source-exception GPL-3.0 Linking Exception (with Corresponding Source) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_3.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_3.yml deleted file mode 100644 index db39c2ab657..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_4.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_4.RULE index d0f18436389..2dbe18f22e9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-3.0 Linking Exception (with Corresponding Source) GPL-3.0-linking-source-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_4.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_4.yml deleted file mode 100644 index db39c2ab657..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_5.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_5.RULE index 1b35532687b..d134b7f8bc7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-3.0-linking-source-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_5.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_5.yml deleted file mode 100644 index 7f7bc53ccc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_6.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_6.RULE index 7ace3c24540..8d0251a7ff0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-3.0 Linking Exception (with Corresponding Source) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_6.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_6.yml deleted file mode 100644 index 7f7bc53ccc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_7.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_7.RULE index 22914ed129c..2447d73965e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: GPL-3.0-linking-source-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_7.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_7.yml deleted file mode 100644 index 7f7bc53ccc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_8.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_8.RULE index 0ebe2948fa0..4756eaf9d2d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GPL-3.0-linking-source-exception +--- + https://licenses.nuget.org/GPL-3.0-linking-source-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_8.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_8.yml deleted file mode 100644 index 5ffd0957e2d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GPL-3.0-linking-source-exception diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_9.RULE b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_9.RULE index dc64c071cf5..f8e71d27119 100644 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-linking-source-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GPL-3.0-linking-source-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_9.yml b/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_9.yml deleted file mode 100644 index 4448b01f4d7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-linking-source-exception_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-linking-source-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_0.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_0.RULE index 59a7e62c371..1d5a6aa72ad 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_0.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_0.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GNU package released under GPL 3 license This program is free software; you can redistribute it and/or modify @@ -11,4 +21,4 @@ GNU package released under GPL 3 license 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_0.yml b/src/licensedcode/data/rules/gpl-3.0-plus_0.yml deleted file mode 100644 index e4b019de3af..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_0.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_1.RULE index edf30eecaad..ea93d432b93 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING + - /usr/share/common-licenses/GPL-3 +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 @@ -11,4 +21,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License with your Debian GNU system, in /usr/share/common-licenses/GPL-3, or with the Debian GNU ed source package as the file COPYING. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_1.yml deleted file mode 100644 index e4b019de3af..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_10.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_10.RULE index 9071a515da4..3b8e09699f3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software; you may redistribute it under the terms of the GNU General Public License version 3 or (at your option) any later version. -This program has absolutely no warranty. +This program has absolutely no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_10.yml b/src/licensedcode/data/rules/gpl-3.0-plus_10.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_100.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_100.RULE index 252531ffe8c..29508cf4688 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_100.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_100.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY WHATSOEVER. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_100.yml b/src/licensedcode/data/rules/gpl-3.0-plus_100.yml deleted file mode 100644 index 35a649afdbb..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_101.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_101.RULE index 483d08063e1..9122dd3e8f2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_101.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_101.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + * This program is free software; you can redistribute it and/or modify * it under the terms of version 3 or later of the GNU General Public License as * published by the Free Software Foundation. @@ -9,4 +14,4 @@ * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_101.yml b/src/licensedcode/data/rules/gpl-3.0-plus_101.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_101.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_102.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_102.RULE index c57002e0e17..9751318b236 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_102.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_102.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPLv3 or newer \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_102.yml b/src/licensedcode/data/rules/gpl-3.0-plus_102.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_103.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_103.RULE index f32409275b0..ac7a6d09a9a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_103.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_103.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 3 of the License, or @@ -10,4 +15,4 @@ * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_103.yml b/src/licensedcode/data/rules/gpl-3.0-plus_103.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_103.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_104.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_104.RULE index 4c8a56876fd..ffa370f65cd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_104.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_104.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + which is licensed as a whole under version 3 * (or any later version) of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_104.yml b/src/licensedcode/data/rules/gpl-3.0-plus_104.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_104.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_105.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_105.RULE index b046789066f..0aefaffe208 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_105.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_105.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + version 3 (or any later version) of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_105.yml b/src/licensedcode/data/rules/gpl-3.0-plus_105.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_106.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_106.RULE index 6ca0d3492df..a99caebd9a2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_106.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_106.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed as a whole under version 3 * (or any later version) of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_106.yml b/src/licensedcode/data/rules/gpl-3.0-plus_106.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_107.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_107.RULE index ef33f880d7c..0bdc0ccc14b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_107.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_107.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + " GNU cpio 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" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_107.yml b/src/licensedcode/data/rules/gpl-3.0-plus_107.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_107.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_108.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_108.RULE index 6a48410c508..984dfe793f5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_108.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_108.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus AND lgpl-3.0-plus +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING3 +notes: this is a set of confusing LGPL and GPL mixed references +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GCC 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; either version 3 of the License, or (at your option) @@ -10,4 +21,4 @@ more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_108.yml b/src/licensedcode/data/rules/gpl-3.0-plus_108.yml deleted file mode 100644 index 4869f5c1f3b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_108.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus AND lgpl-3.0-plus -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING3 -notes: this is a set of confusing LGPL and GPL mixed references -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_109.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_109.RULE index a247df4b10d..6fa7813b11a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_109.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_109.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 98 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file belongs to a GNU package released under GPL 3 license. This program is free software; you can redistribute it and/or modify @@ -12,4 +20,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . -*/ +*/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_109.yml b/src/licensedcode/data/rules/gpl-3.0-plus_109.yml deleted file mode 100644 index c8ccc4f3507..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 98 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_11.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_11.RULE index c786c802586..ea8ddea0d6d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_11.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + This program is free software; you may redistribute it under the terms of -the GNU General Public License version 3 or (at your option) any later version. +the GNU General Public License version 3 or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_11.yml b/src/licensedcode/data/rules/gpl-3.0-plus_11.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_110.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_110.RULE index 815ee2d0b5b..c7ea75d4297 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_110.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_110.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 20 +referenced_filenames: + - COPYING +--- + ;; 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, or (at your option) any later @@ -11,4 +19,4 @@ ;; You should have received a copy of the GNU General Public License ;; along with ; see the file COPYING. If not, write to the Free ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, -;; MA 02110-1301, USA. +;; MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_110.yml b/src/licensedcode/data/rules/gpl-3.0-plus_110.yml deleted file mode 100644 index f13b3cb475b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 20 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_111.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_111.RULE index 494835086e9..462e9c3f336 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_111.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_111.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_111.yml b/src/licensedcode/data/rules/gpl-3.0-plus_111.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_112.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_112.RULE index 0aa827d7b16..d87c0fcc06d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_112.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_112.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License GPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_112.yml b/src/licensedcode/data/rules/gpl-3.0-plus_112.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_113.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_113.RULE index 2f803605792..63c3350a399 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_113.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_113.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + "This is free software: you are free to change and redistribute it. " "There is NO WARRANTY, to the extent permitted by law. "; diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_113.yml b/src/licensedcode/data/rules/gpl-3.0-plus_113.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_113.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_114.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_114.RULE index 184a543d74c..5365ad9b65f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_114.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_114.RULE @@ -1 +1,7 @@ -@license GPL-3.0+ \ No newline at end of file +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + +@license GPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_114.yml b/src/licensedcode/data/rules/gpl-3.0-plus_114.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_115.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_115.RULE index 9726d3d9acb..1d5062343e3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_115.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_115.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-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 General Public License as published by " diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_115.yml b/src/licensedcode/data/rules/gpl-3.0-plus_115.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_115.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_116.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_116.RULE index b84d0ba22e7..8359ba3a297 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_116.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_116.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License # # This program is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_116.yml b/src/licensedcode/data/rules/gpl-3.0-plus_116.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_117.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_117.RULE index 3dbded90fa7..c8e632f0f55 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_117.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_117.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_117.yml b/src/licensedcode/data/rules/gpl-3.0-plus_117.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_118.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_118.RULE index 7343b0562e4..a96b43eb6a9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_118.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_118.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GPL 3+ GPL-3.0+ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_118.yml b/src/licensedcode/data/rules/gpl-3.0-plus_118.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_118.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_119.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_119.RULE index 6b66b8ae6f9..dd4296710cc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_119.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_119.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_119.yml b/src/licensedcode/data/rules/gpl-3.0-plus_119.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_12.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_12.RULE index 3a9247315de..45aad5d5642 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_12.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 3, or (at your option) @@ -11,4 +16,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, - MA 02110-1301, USA. + MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_12.yml b/src/licensedcode/data/rules/gpl-3.0-plus_12.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_120.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_120.RULE index a10a4c13a7b..0c08d743e44 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_120.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_120.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_120.yml b/src/licensedcode/data/rules/gpl-3.0-plus_120.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_121.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_121.RULE index 761ea47fa1d..03e3554f1e8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_121.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_121.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_121.yml b/src/licensedcode/data/rules/gpl-3.0-plus_121.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_122.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_122.RULE index 12bd1461943..a594255e956 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_122.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_122.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_122.yml b/src/licensedcode/data/rules/gpl-3.0-plus_122.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_123.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_123.RULE index a7de2697171..157345e250c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_123.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_123.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_123.yml b/src/licensedcode/data/rules/gpl-3.0-plus_123.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_124.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_124.RULE index 1e49b4ab0bb..035b19bb338 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_124.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_124.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_124.yml b/src/licensedcode/data/rules/gpl-3.0-plus_124.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_125.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_125.RULE index f3cc55fed6f..dc69d12b9c8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_125.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_125.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_125.yml b/src/licensedcode/data/rules/gpl-3.0-plus_125.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_126.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_126.RULE index e531706374f..eecc990b570 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_126.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_126.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_126.yml b/src/licensedcode/data/rules/gpl-3.0-plus_126.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_127.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_127.RULE index ae4b3cd1322..9d1349f51da 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_127.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_127.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_127.yml b/src/licensedcode/data/rules/gpl-3.0-plus_127.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_128.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_128.RULE index f73a80e0887..2e243784c3d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_128.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_128.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_128.yml b/src/licensedcode/data/rules/gpl-3.0-plus_128.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_129.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_129.RULE index 23dac58f8fc..cbad4003d9c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_129.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_129.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_129.yml b/src/licensedcode/data/rules/gpl-3.0-plus_129.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_13.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_13.RULE index 3b7bfc028b7..1ac6c1c60e9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_13.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 3, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_13.yml b/src/licensedcode/data/rules/gpl-3.0-plus_13.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_130.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_130.RULE index ba531d344fd..0ce4404eea6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_130.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_130.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_130.yml b/src/licensedcode/data/rules/gpl-3.0-plus_130.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_131.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_131.RULE index 15576d90c4d..45f6b80fd1d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_131.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_131.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_131.yml b/src/licensedcode/data/rules/gpl-3.0-plus_131.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_132.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_132.RULE index 5483ef90548..1b3b82aeca6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_132.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_132.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_132.yml b/src/licensedcode/data/rules/gpl-3.0-plus_132.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_133.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_133.RULE index b13c0d3fa76..e2923044d36 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_133.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_133.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_133.yml b/src/licensedcode/data/rules/gpl-3.0-plus_133.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_134.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_134.RULE index f76d27a8793..71f8b4a8e09 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_134.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_134.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_134.yml b/src/licensedcode/data/rules/gpl-3.0-plus_134.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_135.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_135.RULE index bc2e3e69c64..bf4e3613f9e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_135.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_135.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_135.yml b/src/licensedcode/data/rules/gpl-3.0-plus_135.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_136.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_136.RULE index a853a44937a..a72d338e25c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_136.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_136.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_136.yml b/src/licensedcode/data/rules/gpl-3.0-plus_136.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_137.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_137.RULE index 82a6204fda7..c7fb889cd29 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_137.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_137.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_137.yml b/src/licensedcode/data/rules/gpl-3.0-plus_137.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_138.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_138.RULE index b3ade0290cb..dc017b1d04c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_138.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_138.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_138.yml b/src/licensedcode/data/rules/gpl-3.0-plus_138.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_139.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_139.RULE index 4ca8a6ca684..b06d52e9ac8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_139.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_139.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_139.yml b/src/licensedcode/data/rules/gpl-3.0-plus_139.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_14.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_14.RULE index 42bf07e1ba0..607aab14104 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_14.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://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_14.yml b/src/licensedcode/data/rules/gpl-3.0-plus_14.yml deleted file mode 100644 index 06d649debe2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_140.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_140.RULE index 981764eb32a..18f0018451b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_140.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_140.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPL30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_140.yml b/src/licensedcode/data/rules/gpl-3.0-plus_140.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_141.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_141.RULE index 6a776c3c63c..650e5f587de 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_141.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_141.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_141.yml b/src/licensedcode/data/rules/gpl-3.0-plus_141.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_142.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_142.RULE index f24f56d97bb..0fa7d902eb8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_142.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_142.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNUGPLv30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_142.yml b/src/licensedcode/data/rules/gpl-3.0-plus_142.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_143.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_143.RULE index d04c88c1007..e016da761ef 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_143.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_143.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_143.yml b/src/licensedcode/data/rules/gpl-3.0-plus_143.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_144.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_144.RULE index 5a25c2edbba..6c06b83d2b6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_144.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_144.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_144.yml b/src/licensedcode/data/rules/gpl-3.0-plus_144.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_145.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_145.RULE index 6c1e1f2922e..5d2e3c0a48c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_145.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_145.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_145.yml b/src/licensedcode/data/rules/gpl-3.0-plus_145.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_146.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_146.RULE index 9915897a4db..24e5df38aed 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_146.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_146.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_146.yml b/src/licensedcode/data/rules/gpl-3.0-plus_146.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_147.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_147.RULE index d395d756917..f6dac8d79ad 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_147.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_147.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_147.yml b/src/licensedcode/data/rules/gpl-3.0-plus_147.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_148.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_148.RULE index 6db1fde7354..c0d141f69c9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_148.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_148.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_148.yml b/src/licensedcode/data/rules/gpl-3.0-plus_148.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_149.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_149.RULE index f262274d966..0699440299b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_149.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_149.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_149.yml b/src/licensedcode/data/rules/gpl-3.0-plus_149.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_15.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_15.RULE index a991dcd91d4..f175e0efe87 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_15.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 85 +--- + 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_15.yml b/src/licensedcode/data/rules/gpl-3.0-plus_15.yml deleted file mode 100644 index 1347859b93c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_150.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_150.RULE index 26c67102331..a4c8509d74a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_150.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_150.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugplv3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_150.yml b/src/licensedcode/data/rules/gpl-3.0-plus_150.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_151.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_151.RULE index 9e77ee4ba7a..e54070a0042 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_151.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_151.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_151.yml b/src/licensedcode/data/rules/gpl-3.0-plus_151.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_152.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_152.RULE index 0725dd9df62..fed420266e9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_152.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_152.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_152.yml b/src/licensedcode/data/rules/gpl-3.0-plus_152.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_153.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_153.RULE index a12c5036202..5f523a25c92 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_153.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_153.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_153.yml b/src/licensedcode/data/rules/gpl-3.0-plus_153.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_154.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_154.RULE index afa54d149cf..bebd6bda390 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_154.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_154.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_154.yml b/src/licensedcode/data/rules/gpl-3.0-plus_154.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_155.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_155.RULE index 87d64b6e7c6..dfd38950f68 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_155.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_155.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_155.yml b/src/licensedcode/data/rules/gpl-3.0-plus_155.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_156.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_156.RULE index e3a1b3a56ca..be37fa86d8c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_156.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_156.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_156.yml b/src/licensedcode/data/rules/gpl-3.0-plus_156.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_157.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_157.RULE index 3a8c8d05871..04cbb3e877a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_157.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_157.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_157.yml b/src/licensedcode/data/rules/gpl-3.0-plus_157.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_158.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_158.RULE index ceaed7be27d..e8c95b6b2a4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_158.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_158.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnugpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_158.yml b/src/licensedcode/data/rules/gpl-3.0-plus_158.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_159.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_159.RULE index ee76774cb42..5ea76706da0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_159.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_159.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_159.yml b/src/licensedcode/data/rules/gpl-3.0-plus_159.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_16.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_16.RULE index 6a7ff843e21..98a608c9a42 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_16.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-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 General Public License as published by the Free Software Foundation; either version 3 of @@ -10,4 +17,4 @@ You should have received a copy of the GNU General Public License along with gnulib; if not, see - . */ + . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_16.yml b/src/licensedcode/data/rules/gpl-3.0-plus_16.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_160.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_160.RULE index a993a3d5db1..c843d027f11 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_160.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_160.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_160.yml b/src/licensedcode/data/rules/gpl-3.0-plus_160.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_161.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_161.RULE index a4287db732a..3aa943ef055 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_161.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_161.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_161.yml b/src/licensedcode/data/rules/gpl-3.0-plus_161.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_162.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_162.RULE index 11a13981648..b65eed1c731 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_162.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_162.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_162.yml b/src/licensedcode/data/rules/gpl-3.0-plus_162.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_163.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_163.RULE index 40dbdea308a..1d83dad4ce3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_163.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_163.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_163.yml b/src/licensedcode/data/rules/gpl-3.0-plus_163.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_164.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_164.RULE index 543ce9c9eae..b14155fd7aa 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_164.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_164.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_164.yml b/src/licensedcode/data/rules/gpl-3.0-plus_164.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_165.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_165.RULE index 7e58651aec2..ef376e843a8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_165.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_165.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_165.yml b/src/licensedcode/data/rules/gpl-3.0-plus_165.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_166.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_166.RULE index 6354e0d0f91..736bef73553 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_166.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_166.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_166.yml b/src/licensedcode/data/rules/gpl-3.0-plus_166.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_167.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_167.RULE index f0356ddee9f..13279cc2a70 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_167.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_167.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_167.yml b/src/licensedcode/data/rules/gpl-3.0-plus_167.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_168.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_168.RULE index 5a9b5701844..27ba6411ed5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_168.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_168.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_168.yml b/src/licensedcode/data/rules/gpl-3.0-plus_168.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_169.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_169.RULE index b1c3874c4a8..dd508ac82e8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_169.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_169.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_169.yml b/src/licensedcode/data/rules/gpl-3.0-plus_169.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_17.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_17.RULE index 9ff282baac3..6795d5f669f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_17.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_17.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + License: This package is free software; you can redistribute it and/or modify @@ -11,4 +16,4 @@ License: You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, - Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_17.yml b/src/licensedcode/data/rules/gpl-3.0-plus_17.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_170.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_170.RULE index 13972a22c60..a6aa47efdba 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_170.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_170.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_170.yml b/src/licensedcode/data/rules/gpl-3.0-plus_170.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_171.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_171.RULE index 79975234f63..46d66fc95c1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_171.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_171.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gplv3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_171.yml b/src/licensedcode/data/rules/gpl-3.0-plus_171.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_172.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_172.RULE index 4e7bff65dd4..af99bdc4c4a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_172.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_172.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_172.yml b/src/licensedcode/data/rules/gpl-3.0-plus_172.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_173.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_173.RULE index b66e9ec40e1..1af291dc1c4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_173.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_173.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_173.yml b/src/licensedcode/data/rules/gpl-3.0-plus_173.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_174.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_174.RULE index 463ba5b9a0a..afc16f73071 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_174.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_174.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_174.yml b/src/licensedcode/data/rules/gpl-3.0-plus_174.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_175.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_175.RULE index 66bdf030fe7..8a45e2fa02e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_175.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_175.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_175.yml b/src/licensedcode/data/rules/gpl-3.0-plus_175.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_176.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_176.RULE index e9389fc494e..f4019576380 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_176.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_176.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_176.yml b/src/licensedcode/data/rules/gpl-3.0-plus_176.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_177.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_177.RULE index 5901058c15c..e3beb4ce4c3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_177.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_177.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_177.yml b/src/licensedcode/data/rules/gpl-3.0-plus_177.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_178.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_178.RULE index 11270c05825..f29c9e85886 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_178.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_178.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_178.yml b/src/licensedcode/data/rules/gpl-3.0-plus_178.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_179.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_179.RULE index a6f460fa5b3..b5d3a41cfc6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_179.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_179.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu gpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_179.yml b/src/licensedcode/data/rules/gpl-3.0-plus_179.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_18.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_18.RULE index 743cf25399a..c2b26803688 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_18.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://gnu.org/licenses/gpl.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU General Public License, version 3 or later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_18.yml b/src/licensedcode/data/rules/gpl-3.0-plus_18.yml deleted file mode 100644 index ba9898f1850..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_180.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_180.RULE index 33ad102e521..80d3a8fddb5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_180.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_180.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + Licence: GNU Public Licence v3 or later (GPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_180.yml b/src/licensedcode/data/rules/gpl-3.0-plus_180.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_181.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_181.RULE index fcf7c3df70c..1515829071c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_181.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_181.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - COPYRIGHT GNU General +ignorable_holders: + - GNU General +--- + COPYRIGHT # GNU General Public License v3.0+ (see COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_181.yml b/src/licensedcode/data/rules/gpl-3.0-plus_181.yml deleted file mode 100644 index 3d2ec2e2668..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_181.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - COPYRIGHT GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_182.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_182.RULE index f2355deadcd..a1bd036bed1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_182.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_182.RULE @@ -1 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - COPYRIGHT GNU General +ignorable_holders: + - GNU General +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + COPYRIGHT# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_182.yml b/src/licensedcode/data/rules/gpl-3.0-plus_182.yml deleted file mode 100644 index 4099042e0e4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_182.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - COPYRIGHT GNU General -ignorable_holders: - - GNU General -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_183.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_183.RULE index f4b654a0cf9..67832e02bed 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_183.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_183.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - COPYRIGHT GNU General +ignorable_holders: + - GNU General +--- + COPYRIGHT # GNU General Public Licence v3.0+ (see COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_183.yml b/src/licensedcode/data/rules/gpl-3.0-plus_183.yml deleted file mode 100644 index 3d2ec2e2668..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_183.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - COPYRIGHT GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_184.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_184.RULE index 177e8e98b79..d782cc91bd5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_184.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_184.RULE @@ -1 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - COPYRIGHT GNU General +ignorable_holders: + - GNU General +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + COPYRIGHT# GNU General Public Licence v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_184.yml b/src/licensedcode/data/rules/gpl-3.0-plus_184.yml deleted file mode 100644 index 4099042e0e4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_184.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - COPYRIGHT GNU General -ignorable_holders: - - GNU General -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_185.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_185.RULE index a7a62735556..a285dbeeb3e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_185.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_185.RULE @@ -1 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_185.yml b/src/licensedcode/data/rules/gpl-3.0-plus_185.yml deleted file mode 100644 index 943ba83a34e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_185.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_186.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_186.RULE index 8f938e47b0c..27599f95b66 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_186.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_186.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_186.yml b/src/licensedcode/data/rules/gpl-3.0-plus_186.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_187.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_187.RULE index af237e6f24e..c9d54518aaf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_187.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_187.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/ +--- + * 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. See http://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_187.yml b/src/licensedcode/data/rules/gpl-3.0-plus_187.yml deleted file mode 100644 index 29a3a97c3a9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_188.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_188.RULE index a0a1e705102..8600aadc55e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_188.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_188.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + # This module 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. +# your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_188.yml b/src/licensedcode/data/rules/gpl-3.0-plus_188.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_189.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_189.RULE index 1e91c192be9..79fa34ef1b7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_189.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_189.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License v3.0 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_189.yml b/src/licensedcode/data/rules/gpl-3.0-plus_189.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_19.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_19.RULE index 4210772ec62..151f993f266 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_19.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_19.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the -GNU General Public License, version 3 or later +GNU General Public License, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_19.yml b/src/licensedcode/data/rules/gpl-3.0-plus_19.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_190.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_190.RULE index d7880b7cf4b..c8bcd3c5b96 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_190.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_190.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Distributed under the GNU General Public License v3.0 or any later version (see the file LICENSE for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_190.yml b/src/licensedcode/data/rules/gpl-3.0-plus_190.yml deleted file mode 100644 index 06723102079..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_190.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_191.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_191.RULE index 6cc46445265..8a8e7f59797 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_191.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_191.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.html +--- + GNU GPL version 3 or later http://gnu.org/licenses/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_191.yml b/src/licensedcode/data/rules/gpl-3.0-plus_191.yml deleted file mode 100644 index 8ee2ec78790..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_191.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_192.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_192.RULE index 0104644c787..fc862c59df0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_192.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_192.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_192.yml b/src/licensedcode/data/rules/gpl-3.0-plus_192.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_193.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_193.RULE index b09770b0bf7..1d4cc9134ae 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_193.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_193.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_193.yml b/src/licensedcode/data/rules/gpl-3.0-plus_193.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_193.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_194.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_194.RULE index 6d2b0086dc4..fd97210359f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_194.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_194.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-3+ The complete text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_194.yml b/src/licensedcode/data/rules/gpl-3.0-plus_194.yml deleted file mode 100644 index efb24445e3d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_195.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_195.RULE index e5b50192d86..1b756c4ddf6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_195.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_195.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + License: GPL-3+ The complete text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_195.yml b/src/licensedcode/data/rules/gpl-3.0-plus_195.yml deleted file mode 100644 index 21a2880f846..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_196.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_196.RULE index eba47c7fde1..53a84f186b1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_196.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_196.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl +--- + .. _GNU GPL version 3 (or above) License: http://www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_196.yml b/src/licensedcode/data/rules/gpl-3.0-plus_196.yml deleted file mode 100644 index 3caa9e745e6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_197.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_197.RULE index ab9b87e6f07..8990a673822 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_197.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_197.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL version 3 (or above) License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_197.yml b/src/licensedcode/data/rules/gpl-3.0-plus_197.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_197.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_198.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_198.RULE index 9e60c234c67..bf342b681e4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_198.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_198.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License (manual): GPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_198.yml b/src/licensedcode/data/rules/gpl-3.0-plus_198.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_199.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_199.RULE index dea9a81e71f..e5645f6f41a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_199.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_199.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + # Licensed under the GNU Public License version 3 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_199.yml b/src/licensedcode/data/rules/gpl-3.0-plus_199.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_2.RULE index 9443410b06a..dcab3f8fc15 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_2.yml deleted file mode 100644 index 3eb680a3a2c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 85 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_20.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_20.RULE index 31d308b8dd3..10c75577146 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_20.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: GPL-3+ 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 @@ -13,4 +20,4 @@ License: GPL-3+ along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. + can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_20.yml b/src/licensedcode/data/rules/gpl-3.0-plus_20.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_200.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_200.RULE index fee0e4a9cd8..512ce8d9ba0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_200.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_200.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_200.yml b/src/licensedcode/data/rules/gpl-3.0-plus_200.yml deleted file mode 100644 index 06723102079..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_200.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_201.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_201.RULE index b8bb682cb4b..bb7e11a8b36 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_201.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_201.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_201.yml b/src/licensedcode/data/rules/gpl-3.0-plus_201.yml deleted file mode 100644 index 06723102079..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_202.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_202.RULE index 16c8c6091fb..ed202d4e880 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_202.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_202.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - gpl3 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + Unless otherwise noted, Styrene is free software which is distributed under the terms of the GNU [General Public License, version 3.0 or later][gpl3]. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_202.yml b/src/licensedcode/data/rules/gpl-3.0-plus_202.yml deleted file mode 100644 index 0152af03369..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_202.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - gpl3 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_203.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_203.RULE index ab65b108fef..805be395448 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_203.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_203.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license='GPL v3 or later', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_203.yml b/src/licensedcode/data/rules/gpl-3.0-plus_203.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_204.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_204.RULE index 9a816b64133..d4d31c41275 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_204.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_204.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license GNU General Public License, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_204.yml b/src/licensedcode/data/rules/gpl-3.0-plus_204.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_205.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_205.RULE index 1e8e88e7d2f..c6f98047843 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_205.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_205.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This package is published under the GNU General Public License, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_205.yml b/src/licensedcode/data/rules/gpl-3.0-plus_205.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_206.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_206.RULE index 7c0cbb3da61..e9b38e33ded 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_206.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_206.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This source file is copyrighted and licensed under the following terms: is free software: you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_206.yml b/src/licensedcode/data/rules/gpl-3.0-plus_206.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_206.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_207.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_207.RULE index 6aebb705e4c..de3875488d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_207.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_207.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This source file is copyrighted and licensed under the following terms: This is free software: you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_207.yml b/src/licensedcode/data/rules/gpl-3.0-plus_207.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_208.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_208.RULE index 996e3741a8c..f60935f9ccb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_208.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_208.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + AutoOpts is a copyrighted work. This source file is not encumbered by AutoOpts licensing, but is provided under the licensing terms chosen by the author or copyright holder. AutoOpts is diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_208.yml b/src/licensedcode/data/rules/gpl-3.0-plus_208.yml deleted file mode 100644 index 474980fa3e1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_208.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_209.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_209.RULE index 07d4d319dfc..43c979a20e6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_209.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_209.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This file was produced by an AutoOpts template. AutoOpts is a * copyrighted work. This source file is not encumbered by AutoOpts * licensing, but is provided under the licensing terms chosen by the diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_209.yml b/src/licensedcode/data/rules/gpl-3.0-plus_209.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_209.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_21.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_21.RULE index 0692ebfbdd3..6501caf3c20 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_21.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://gnu.org/licenses/gpl.html +--- + GNU GPL version 3 or later http://gnu.org/licenses/gpl.html. 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_21.yml b/src/licensedcode/data/rules/gpl-3.0-plus_21.yml deleted file mode 100644 index 06d649debe2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_210.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_210.RULE index 21de8f93421..1363cc33d1a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_210.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_210.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + "genshellopt 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 \ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_210.yml b/src/licensedcode/data/rules/gpl-3.0-plus_210.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_210.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_211.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_211.RULE index c60b064291f..70884f94c82 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_211.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_211.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + AutoGen 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_211.yml b/src/licensedcode/data/rules/gpl-3.0-plus_211.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_211.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_212.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_212.RULE index 2539d03e249..d8a4af2c527 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_212.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_212.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 99 +--- + GNU which comes with ABSOLUTELY NO WARRANTY; This program is free software; your freedom to use, change and distribute this program is protected by the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_212.yml b/src/licensedcode/data/rules/gpl-3.0-plus_212.yml deleted file mode 100644 index 057f8f38aad..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_212.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_213.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_213.RULE index 6914d15d244..6a3f058d771 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_213.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_213.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License **GNU GPLv3** or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_213.yml b/src/licensedcode/data/rules/gpl-3.0-plus_213.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_214.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_214.RULE index cd190ee2662..b0c0daceab2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_214.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_214.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - legal/GPLv3 +--- + licensed under the terms of the GNU General Public License Version 3, or (at your option) any later version ("GPL3+"). A copy of the license can be found in [legal/GPLV3](/legal/GPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_214.yml b/src/licensedcode/data/rules/gpl-3.0-plus_214.yml deleted file mode 100644 index d88b8a5b32e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - legal/GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_215.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_215.RULE index d4d35cac844..b57da9f212d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_215.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_215.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License Version 3, or (at your option) any later version ("GPL3+"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_215.yml b/src/licensedcode/data/rules/gpl-3.0-plus_215.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_216.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_216.RULE index 9a8cee2c97a..11604876c99 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_216.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_216.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_216.yml b/src/licensedcode/data/rules/gpl-3.0-plus_216.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_217.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_217.RULE index 8f26b690f35..7f3dab486b3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_217.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_217.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + License: GPL-3+ 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_217.yml b/src/licensedcode/data/rules/gpl-3.0-plus_217.yml deleted file mode 100644 index 70cde977b9e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_217.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_218.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_218.RULE index d0305f2312f..98d40b2f169 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_218.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_218.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_218.yml b/src/licensedcode/data/rules/gpl-3.0-plus_218.yml deleted file mode 100644 index 70cde977b9e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_218.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_219.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_219.RULE index 94499ba32fd..5f968521cd9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_219.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_219.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License: GPL-3+ 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_219.yml b/src/licensedcode/data/rules/gpl-3.0-plus_219.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_22.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_22.RULE index 618d1df5033..8e0237b85f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_22.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +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, or (at your option) @@ -11,4 +20,4 @@ # You should have received a copy of the GNU General Public License # along with this program (see the file COPYING); if not, see # http://www.gnu.org/licenses/, or contact Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA +# 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_22.yml b/src/licensedcode/data/rules/gpl-3.0-plus_22.yml deleted file mode 100644 index 932342f2bc6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_220.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_220.RULE index 005de74b256..4e482905c5d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_220.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_220.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_220.yml b/src/licensedcode/data/rules/gpl-3.0-plus_220.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_221.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_221.RULE index 0224568b68f..5c5f6e512d9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_221.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_221.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This program may be distributed and/or modified under the terms of the GNU General Public License as published by the Free Software Foundation (the "GPL"); either version 3 of the GPL, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_221.yml b/src/licensedcode/data/rules/gpl-3.0-plus_221.yml deleted file mode 100644 index 2d1b5332c20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_221.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_222.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_222.RULE index b7d23d80755..c6737b4408e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_222.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_222.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_222.yml b/src/licensedcode/data/rules/gpl-3.0-plus_222.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_222.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_223.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_223.RULE index 9345b228f83..f3d7bf319bf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_223.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_223.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + Licence: GPLV3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_223.yml b/src/licensedcode/data/rules/gpl-3.0-plus_223.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_224.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_224.RULE index 210df24021a..89a3d3b1978 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_224.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_224.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + Licence: GPL V3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_224.yml b/src/licensedcode/data/rules/gpl-3.0-plus_224.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_225.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_225.RULE index 5b8ecd028b7..ddf0338d055 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_225.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_225.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPLv3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The script code used to import data and/or generate the database, together with their related code, are both licensed under the GNU GPL3+. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_225.yml b/src/licensedcode/data/rules/gpl-3.0-plus_225.yml deleted file mode 100644 index 5c75716bbaf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_225.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPLv3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_226.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_226.RULE index 924ad0e6303..12948401289 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_226.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_226.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This project is licensed GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_226.yml b/src/licensedcode/data/rules/gpl-3.0-plus_226.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_227.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_227.RULE index 847595e7409..322585374c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_227.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_227.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_227.yml b/src/licensedcode/data/rules/gpl-3.0-plus_227.yml deleted file mode 100644 index 663c769b789..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_227.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_228.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_228.RULE index 13a2f9f8e76..289048c7134 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_228.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_228.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_228.yml b/src/licensedcode/data/rules/gpl-3.0-plus_228.yml deleted file mode 100644 index 5e00e6a7583..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_228.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_229.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_229.RULE index e84cfc7551c..6b3e95b8fe8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_229.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_229.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_229.yml b/src/licensedcode/data/rules/gpl-3.0-plus_229.yml deleted file mode 100644 index 663c769b789..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_229.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_23.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_23.RULE index c01d256a025..62c706ab20a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_23.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_23.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_23.yml b/src/licensedcode/data/rules/gpl-3.0-plus_23.yml deleted file mode 100644 index 591fbe36a5b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_230.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_230.RULE index bd4be3a76ba..8d2f75587f2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_230.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_230.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_230.yml b/src/licensedcode/data/rules/gpl-3.0-plus_230.yml deleted file mode 100644 index 5e00e6a7583..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_230.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_231.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_231.RULE index c53fa1a6a98..a894a58113e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_231.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_231.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_231.yml b/src/licensedcode/data/rules/gpl-3.0-plus_231.yml deleted file mode 100644 index 5e00e6a7583..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_231.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_232.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_232.RULE index aba09b4c2d1..366ae941cb9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_232.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_232.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + https://www.gnu.org/copyleft/gpl.html GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_232.yml b/src/licensedcode/data/rules/gpl-3.0-plus_232.yml deleted file mode 100644 index 5e00e6a7583..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_233.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_233.RULE index a9467addb38..b8d69fd8dd4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_233.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_233.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_233.yml b/src/licensedcode/data/rules/gpl-3.0-plus_233.yml deleted file mode 100644 index 62275806186..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_233.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_234.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_234.RULE index 905f780648f..f06368ce7c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_234.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_234.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_234.yml b/src/licensedcode/data/rules/gpl-3.0-plus_234.yml deleted file mode 100644 index 3d9a6c2242e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_234.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_235.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_235.RULE index d24d2ba8636..bc038ea6956 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_235.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_235.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + (GNU GLP v3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_235.yml b/src/licensedcode/data/rules/gpl-3.0-plus_235.yml deleted file mode 100644 index 48dabbdfca2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_235.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_236.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_236.RULE index 49061b45e1c..6a223f91af3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_236.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_236.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + under GLP V3 license (or above) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_236.yml b/src/licensedcode/data/rules/gpl-3.0-plus_236.yml deleted file mode 100644 index 02cd732f3be..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_236.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_237.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_237.RULE index 2657da75ebd..455b17500ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_237.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_237.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: Also seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_237.yml b/src/licensedcode/data/rules/gpl-3.0-plus_237.yml deleted file mode 100644 index f90b1d4312f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_237.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: Also seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_238.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_238.RULE index 408a30dee3c..066df800beb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_238.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_238.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-GPL +--- + This 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_238.yml b/src/licensedcode/data/rules/gpl-3.0-plus_238.yml deleted file mode 100644 index 442c3dfe7f5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_238.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-GPL diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_239.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_239.RULE index 86b78a7b8b2..e161ddf102c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_239.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_239.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_239.yml b/src/licensedcode/data/rules/gpl-3.0-plus_239.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_24.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_24.RULE index 92e6390451c..710001950b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_24.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_24.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 98 +--- + GNU Public License v3.0 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_24.yml b/src/licensedcode/data/rules/gpl-3.0-plus_24.yml deleted file mode 100644 index 8350a11c955..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_240.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_240.RULE index f2c47952645..b718abf62cf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_240.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_240.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_240.yml b/src/licensedcode/data/rules/gpl-3.0-plus_240.yml deleted file mode 100644 index 442c3dfe7f5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_240.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-GPL diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_241.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_241.RULE index 4df8a312008..3f1dcb93dff 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_241.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_241.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE +ignorable_urls: + - http://www.gnu.org/licenses +--- + The project utilizes code licensed under the terms of the GNU General Public License and therefore is licensed under GPL v3 or later. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 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 http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_241.yml b/src/licensedcode/data/rules/gpl-3.0-plus_241.yml deleted file mode 100644 index f5d6c951154..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_241.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_242.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_242.RULE index db30f9983b5..e0c8eda04cf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_242.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_242.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_242.yml b/src/licensedcode/data/rules/gpl-3.0-plus_242.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_243.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_243.RULE index 72ff3d37e50..6fc3015535e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_243.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_243.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPL v3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_243.yml b/src/licensedcode/data/rules/gpl-3.0-plus_243.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_243.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_244.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_244.RULE index fe0f38923ee..067086309d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_244.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_244.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU GPL version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_244.yml b/src/licensedcode/data/rules/gpl-3.0-plus_244.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_245.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_245.RULE index c74404ebc16..0b8f1197d2c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_245.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_245.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of GPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_245.yml b/src/licensedcode/data/rules/gpl-3.0-plus_245.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_245.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_246.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_246.RULE index 3779c01871d..4d9476d6c56 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_246.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_246.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPLv3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_246.yml b/src/licensedcode/data/rules/gpl-3.0-plus_246.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_246.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_247.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_247.RULE index 4e7b582ffc6..2277b1cbc69 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_247.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_247.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPL v3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_247.yml b/src/licensedcode/data/rules/gpl-3.0-plus_247.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_248.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_248.RULE index 14b4561ebda..14598728009 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_248.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_248.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPL3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_248.yml b/src/licensedcode/data/rules/gpl-3.0-plus_248.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_249.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_249.RULE index 43d99d5c50a..f21e6942357 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_249.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_249.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under GPL 3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_249.yml b/src/licensedcode/data/rules/gpl-3.0-plus_249.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_25.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_25.RULE index 657b819f323..6598a7ec7c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_25.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 95 +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 @@ -12,5 +20,4 @@ along with this program. If not, see . . On Debian systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-3' file. - + License can be found in the `/usr/share/common-licenses/GPL-3' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_25.yml b/src/licensedcode/data/rules/gpl-3.0-plus_25.yml deleted file mode 100644 index 524c058053f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_250.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_250.RULE index 8f2ebb59352..05a90d70ab1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_250.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_250.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPL3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_250.yml b/src/licensedcode/data/rules/gpl-3.0-plus_250.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_251.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_251.RULE index 33f67aa2614..eb6da47bb87 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_251.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_251.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GPL 3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_251.yml b/src/licensedcode/data/rules/gpl-3.0-plus_251.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_252.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_252.RULE index 8fce3ff6f53..e84adbbaa6b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_252.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_252.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of GPL 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_252.yml b/src/licensedcode/data/rules/gpl-3.0-plus_252.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_253.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_253.RULE index 76544f06357..35bf3717fe1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_253.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_253.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +notes: FFmpeg configure result strings as found in binaries +--- + license="GPL version 3 or later" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_253.yml b/src/licensedcode/data/rules/gpl-3.0-plus_253.yml deleted file mode 100644 index 66a6bead135..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_253.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -notes: FFmpeg configure result strings as found in binaries diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_254.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_254.RULE index 79823c91946..dae75eef854 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_254.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_254.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +notes: configure option injected by FFmpeg in the built binaries +--- + --enable-gpl --enable-version3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_254.yml b/src/licensedcode/data/rules/gpl-3.0-plus_254.yml deleted file mode 100644 index 62077f1b130..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_254.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -notes: configure option injected by FFmpeg in the built binaries diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_255.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_255.RULE index 87da9c7cc46..da8c5e146e4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_255.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_255.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +notes: configure option injected by FFmpeg in the built binaries +--- + --enable-version3 --enable-gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_255.yml b/src/licensedcode/data/rules/gpl-3.0-plus_255.yml deleted file mode 100644 index 62077f1b130..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_255.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -notes: configure option injected by FFmpeg in the built binaries diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_256.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_256.RULE index 62857aa3899..2e0e9b749e7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_256.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_256.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in libpipeline, this is a notice copied from a GPL 2.0 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_256.yml b/src/licensedcode/data/rules/gpl-3.0-plus_256.yml deleted file mode 100644 index cc9a25615d7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_256.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in libpipeline, this is a notice copied from a GPL 2.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_257.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_257.RULE index add188b3e80..4b495f69b57 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_257.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_257.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Bash is free software, distributed under the terms of the [GNU] General Public License as published by the Free Software Foundation, version 3 of the License (or any later version). For more information, diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_257.yml b/src/licensedcode/data/rules/gpl-3.0-plus_257.yml deleted file mode 100644 index 2d1b5332c20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_258.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_258.RULE index b9894e5944d..38f4056c094 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_258.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_258.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + is free software, distributed under the terms of the [GNU] General Public License as published by the Free Software Foundation, version 3 of the License (or any later version). For more information, diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_258.yml b/src/licensedcode/data/rules/gpl-3.0-plus_258.yml deleted file mode 100644 index 2d1b5332c20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_259.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_259.RULE index 14d073ee7a4..9ac424cebf7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_259.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_259.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + is free software, distributed under the terms of the [GNU] General Public License as published by the Free Software Foundation, version 3 of the License (or any later version). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_259.yml b/src/licensedcode/data/rules/gpl-3.0-plus_259.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_26.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_26.RULE index a1ba17b2410..1e69b5dc319 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_26.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 100 +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 General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +17,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 General Public License along -with this program. If not, see . +with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_26.yml b/src/licensedcode/data/rules/gpl-3.0-plus_26.yml deleted file mode 100644 index 56489596fcc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_260.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_260.RULE index b7259578681..e520824bd50 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_260.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_260.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + The script code used to import data and/or generate the database, together with their related code, are both licensed under the GNU GPL3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_260.yml b/src/licensedcode/data/rules/gpl-3.0-plus_260.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_261.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_261.RULE index 3c928cd171e..a5a45b353d2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_261.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_261.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU GPL3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_261.yml b/src/licensedcode/data/rules/gpl-3.0-plus_261.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_262.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_262.RULE index 14549acd392..ff46b0de581 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_262.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_262.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.GPLv3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_262.yml b/src/licensedcode/data/rules/gpl-3.0-plus_262.yml deleted file mode 100644 index 5c75716bbaf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_262.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.GPLv3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_263.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_263.RULE index 4d644234c0d..3e250726950 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_263.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_263.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv3 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_263.yml b/src/licensedcode/data/rules/gpl-3.0-plus_263.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_264.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_264.RULE index 5034a044bb8..87e53e15312 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_264.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_264.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPLv3 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_264.yml b/src/licensedcode/data/rules/gpl-3.0-plus_264.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_265.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_265.RULE index d723477ef67..25422c9ae4b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_265.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_265.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license: GPLv3 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_265.yml b/src/licensedcode/data/rules/gpl-3.0-plus_265.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_266.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_266.RULE index e051340412e..5c87dad7898 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_266.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_266.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license: GNU GPLv3 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_266.yml b/src/licensedcode/data/rules/gpl-3.0-plus_266.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_267.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_267.RULE index 44b160ca7b4..7d5630c9892 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_267.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_267.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the GNU Public License (GPLv3 or higher) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_267.yml b/src/licensedcode/data/rules/gpl-3.0-plus_267.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_268.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_268.RULE index 4665daab9fc..47c221483d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_268.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_268.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/lisenses/gpl.txt +--- + License: GNU/GPLv3 or higher (http://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_268.yml b/src/licensedcode/data/rules/gpl-3.0-plus_268.yml deleted file mode 100644 index e137b5b1e47..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_268.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/lisenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_269.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_269.RULE index 1781adaaee6..388d813b0fd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_269.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_269.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU General Public License (GPLv3 or higher) as published by the Free Software Foundation (http://www. gnu.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_269.yml b/src/licensedcode/data/rules/gpl-3.0-plus_269.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_27.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_27.RULE index 4e1e64d0b39..7dedf8702bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_27.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_27.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +17,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 General Public License along -with this program. If not, see . +with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_27.yml b/src/licensedcode/data/rules/gpl-3.0-plus_27.yml deleted file mode 100644 index 21ab39d516e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_270.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_270.RULE index de449798378..864980e9584 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_270.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_270.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU General Public License GPLv3 or higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_270.yml b/src/licensedcode/data/rules/gpl-3.0-plus_270.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_271.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_271.RULE index beda874dfc8..8a43067b908 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_271.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_271.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under the GNU General Public License GPLv3 or higher, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_271.yml b/src/licensedcode/data/rules/gpl-3.0-plus_271.yml deleted file mode 100644 index 06723102079..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_271.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_272.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_272.RULE index 25de76adc94..465ded3fb09 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_272.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_272.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + distributed under the GNU General Public License GPLv3 or higher. Please see LICENSE.TXT for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_272.yml b/src/licensedcode/data/rules/gpl-3.0-plus_272.yml deleted file mode 100644 index 7f7261fd06d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_272.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_273.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_273.RULE index 245d392829c..0fa21eecba2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_273.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_273.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + This software is distributed under the GNU General Public License GPLv3 or higher, see LICENSE.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_273.yml b/src/licensedcode/data/rules/gpl-3.0-plus_273.yml deleted file mode 100644 index 7f7261fd06d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_273.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_274.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_274.RULE index 7a3afcc0111..7380ff2a0e3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_274.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_274.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.TXT +--- + License GPLv3 or higher, see the file COPYING.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_274.yml b/src/licensedcode/data/rules/gpl-3.0-plus_274.yml deleted file mode 100644 index f2b25cf2899..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_274.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.TXT diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_275.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_275.RULE index 24101a04a6a..936f441c061 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_275.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_275.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU General Public License GPLv3 or higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_275.yml b/src/licensedcode/data/rules/gpl-3.0-plus_275.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_276.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_276.RULE index 1722b352e18..4bf3751174f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_276.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_276.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + free software, distributed under the terms of the GNU General Public License GPLv3 or higher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_276.yml b/src/licensedcode/data/rules/gpl-3.0-plus_276.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_277.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_277.RULE index 3dd62adc2f9..675bd403274 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_277.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_277.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + free software, distributed under the terms of the GNU General Public License GPLv3 or higher. You must be aware there is no warranty whatsoever \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_277.yml b/src/licensedcode/data/rules/gpl-3.0-plus_277.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_277.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_278.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_278.RULE index 4283ed01af9..73df1f204b9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_278.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_278.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License is a free software, distributed under the terms of the GNU General Public License GPLv3 or higher. You must be aware there is no warranty whatsoever for . This is described in full in the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_278.yml b/src/licensedcode/data/rules/gpl-3.0-plus_278.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_279.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_279.RULE index 0266dec0860..8692c075678 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_279.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_279.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + License: GPLv3 or higher License URI: http://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_279.yml b/src/licensedcode/data/rules/gpl-3.0-plus_279.yml deleted file mode 100644 index 095a0a2a426..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_279.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_28.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_28.RULE index fbd0cdcabe7..912310fd0a5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_28.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_28.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_28.yml b/src/licensedcode/data/rules/gpl-3.0-plus_28.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_280.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_280.RULE index f44956986e0..e610e335c5e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_280.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_280.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is covered by the GNU General Public License (GPLv3 or higher) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_280.yml b/src/licensedcode/data/rules/gpl-3.0-plus_280.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_280.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_281.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_281.RULE index d60a5e7a250..c3ddde5844b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_281.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_281.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This man page is covered by the GNU General Public License (GPLv3 or higher). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_281.yml b/src/licensedcode/data/rules/gpl-3.0-plus_281.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_282.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_282.RULE index ba684aaa052..a657d1ac57a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_282.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_282.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - legal/GPLV3 +notes: https://github.com/janisozaur/openage-priv/blob/a10f54f003a46e7743f4c22d4566290df8d5f500/copying.md#L5 +--- + licensed under the terms of the GNU General Public License Version 3, or (at your option) any later version ("GPL3+"). A copy of the license can be found in legal/GPLV3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_282.yml b/src/licensedcode/data/rules/gpl-3.0-plus_282.yml deleted file mode 100644 index b6dd694df68..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_282.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - legal/GPLV3 -notes: https://github.com/janisozaur/openage-priv/blob/a10f54f003a46e7743f4c22d4566290df8d5f500/copying.md#L5 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_283.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_283.RULE index f13086ac449..1595f97b0c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_283.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_283.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_283.yml b/src/licensedcode/data/rules/gpl-3.0-plus_283.yml deleted file mode 100644 index c4a310135f4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_283.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE index 5c6ece49686..8f4d0a217bd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_284.yml b/src/licensedcode/data/rules/gpl-3.0-plus_284.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_284.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_285.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_285.RULE index 7c5a739fde5..6b4c9acffb4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_285.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_285.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + GNU 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_285.yml b/src/licensedcode/data/rules/gpl-3.0-plus_285.yml deleted file mode 100644 index c4a310135f4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_285.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_286.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_286.RULE index 304ec446b0f..3581df8c1a2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_286.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_286.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_286.yml b/src/licensedcode/data/rules/gpl-3.0-plus_286.yml deleted file mode 100644 index 28abee8a792..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_286.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_287.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_287.RULE index e555661735a..192c2a89e84 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_287.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_287.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_287.yml b/src/licensedcode/data/rules/gpl-3.0-plus_287.yml deleted file mode 100644 index 3d9a6c2242e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_287.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE index d6141179ee0..acb53b6f752 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_288.yml b/src/licensedcode/data/rules/gpl-3.0-plus_288.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_288.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_289.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_289.RULE index a45e8a8de95..c6e13145ed3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_289.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_289.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_289.yml b/src/licensedcode/data/rules/gpl-3.0-plus_289.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_289.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_29.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_29.RULE index 564a68e7f1c..fa401579ca5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_29.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_29.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licences/ +--- + ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public Licence as published by ## the Free Software Foundation; either version 3 of the Licence, or @@ -9,4 +16,4 @@ ## GNU General Public Licence for more details. ## ## You should have received a copy of the GNU General Public Licence -## along with this program. If not, see . +## along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_29.yml b/src/licensedcode/data/rules/gpl-3.0-plus_29.yml deleted file mode 100644 index e49c8491f6c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licences/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE index 279b584d117..1996711cef0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE @@ -1,3 +1,10 @@ +--- +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, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_290.yml b/src/licensedcode/data/rules/gpl-3.0-plus_290.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_290.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_291.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_291.RULE index b48916d29b7..9ed28335348 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_291.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_291.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + "GNU General Public Licence, version 3 or later"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_291.yml b/src/licensedcode/data/rules/gpl-3.0-plus_291.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_292.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_292.RULE index 75f1f6018c5..aaf4e50aa7e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_292.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_292.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_292.yml b/src/licensedcode/data/rules/gpl-3.0-plus_292.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_293.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_293.RULE index 0fe864249e7..b116a869dbd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_293.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_293.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + available under the GNU General Public License version 3 or, at your option, any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_293.yml b/src/licensedcode/data/rules/gpl-3.0-plus_293.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_294.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_294.RULE index db49bcb5383..7267177b5a1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_294.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_294.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + GNU General Public License v3.0+ (see COPYING) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_294.yml b/src/licensedcode/data/rules/gpl-3.0-plus_294.yml deleted file mode 100644 index 2d1b5332c20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_294.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_295.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_295.RULE index 701ebc43ef8..7c69efb51c8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_295.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_295.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + The source tree contains parts GNU Gnulib which is distributed under GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_295.yml b/src/licensedcode/data/rules/gpl-3.0-plus_295.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_295.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_296.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_296.RULE index 4b817a168fd..2d0c1769345 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_296.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_296.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + is licensed under the GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_296.yml b/src/licensedcode/data/rules/gpl-3.0-plus_296.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_296.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_297.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_297.RULE index a1fa5b6b31a..c0a2be3bfb0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_297.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_297.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU General Public License, V3.0 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_297.yml b/src/licensedcode/data/rules/gpl-3.0-plus_297.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_298.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_298.RULE index e094f19f302..626f6044da4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_298.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_298.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_298.yml b/src/licensedcode/data/rules/gpl-3.0-plus_298.yml deleted file mode 100644 index 00460f68746..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_298.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_299.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_299.RULE index 0dc5269c4c9..cb126681ca2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_299.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_299.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_299.yml b/src/licensedcode/data/rules/gpl-3.0-plus_299.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_299.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_3.RULE index cc0cfd86f67..b0063c5024e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-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 General Public License as published by # the Free Software Foundation; either version 3 of the License, or @@ -9,4 +16,4 @@ # 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 . +# along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_3.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_30.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_30.RULE index de00d064bc1..ac24622bcec 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_30.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_30.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - misc/LICENSE +--- + Licenced under GNU General Public Licence Version 3 or higher - * See misc/LICENSE for details + * See misc/LICENSE for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_30.yml b/src/licensedcode/data/rules/gpl-3.0-plus_30.yml deleted file mode 100644 index 572ce0c1608..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - misc/LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_300.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_300.RULE index 0031044abce..03ff0c2d9ed 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_300.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_300.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_300.yml b/src/licensedcode/data/rules/gpl-3.0-plus_300.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_300.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_301.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_301.RULE index 523b1f907dc..c495af08ee6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_301.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_301.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_301.yml b/src/licensedcode/data/rules/gpl-3.0-plus_301.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_301.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_302.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_302.RULE index 8541f8ab33c..f16a64a1ce4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_302.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_302.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_302.yml b/src/licensedcode/data/rules/gpl-3.0-plus_302.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_303.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_303.RULE index 93df7d6a2e2..88f9fd6ff9d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_303.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_303.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_303.yml b/src/licensedcode/data/rules/gpl-3.0-plus_303.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_303.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_304.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_304.RULE index f89c8b97a3a..e9986abcc19 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_304.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_304.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_304.yml b/src/licensedcode/data/rules/gpl-3.0-plus_304.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_305.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_305.RULE index bf031d7e6fb..9c9dc3963a3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_305.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_305.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_305.yml b/src/licensedcode/data/rules/gpl-3.0-plus_305.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_306.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_306.RULE index 89845ba0a99..df8e6ee2749 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_306.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_306.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_306.yml b/src/licensedcode/data/rules/gpl-3.0-plus_306.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_306.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_307.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_307.RULE index 72028298c27..2d1a742c576 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_307.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_307.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_307.yml b/src/licensedcode/data/rules/gpl-3.0-plus_307.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_308.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_308.RULE index f44bf61f511..f09a40f36fc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_308.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_308.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_308.yml b/src/licensedcode/data/rules/gpl-3.0-plus_308.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_308.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_309.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_309.RULE index e268f7d9759..ceed0f904e1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_309.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_309.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL v3 or above \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_309.yml b/src/licensedcode/data/rules/gpl-3.0-plus_309.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_31.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_31.RULE index 26e6de8d29f..1a9af88099e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_31.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_31.RULE @@ -1 +1,7 @@ -Licenced under GNU General Public Licence Version 3 or higher +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licenced under GNU General Public Licence Version 3 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_31.yml b/src/licensedcode/data/rules/gpl-3.0-plus_31.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_310.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_310.RULE index d7dfa43c0db..26c7d8c903a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_310.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_310.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + available under the terms of the GNU GPL v3 or above \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_310.yml b/src/licensedcode/data/rules/gpl-3.0-plus_310.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_311.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_311.RULE index 130bd049054..4d596ae89eb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_311.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_311.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + is available under the terms of the GNU GPL v3 or above \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_311.yml b/src/licensedcode/data/rules/gpl-3.0-plus_311.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_312.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_312.RULE index 245e2e3c70f..83ec8a73491 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_312.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_312.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Bash 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_312.yml b/src/licensedcode/data/rules/gpl-3.0-plus_312.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_312.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_313.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_313.RULE index a760e6c3e05..b263e7b8e3e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_313.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_313.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Copying +--- + Permission is granted to copy, distribute and/or modify this document 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_313.yml b/src/licensedcode/data/rules/gpl-3.0-plus_313.yml deleted file mode 100644 index 8d774244e08..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_313.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - Copying diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_314.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_314.RULE index 03b878977e4..2e8fca02cc2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_314.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_314.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Permission is granted to copy, distribute and/or modify this document 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_314.yml b/src/licensedcode/data/rules/gpl-3.0-plus_314.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_314.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_315.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_315.RULE index 6bcb7d138e4..7fdc3328bf3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_315.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_315.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: typo in andor +--- + This program is free software you can redistribute it andor 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_315.yml b/src/licensedcode/data/rules/gpl-3.0-plus_315.yml deleted file mode 100644 index 3d07029a820..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_315.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: typo in andor diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_316.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_316.RULE index 84cb35381da..5a7b6c77ca8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_316.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_316.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_316.yml b/src/licensedcode/data/rules/gpl-3.0-plus_316.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_316.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_317.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_317.RULE index 22d9f0f8b63..5bc05dbba35 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_317.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_317.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_317.yml b/src/licensedcode/data/rules/gpl-3.0-plus_317.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_317.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_318.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_318.RULE index 46601b87fac..28feb206684 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_318.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_318.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_318.yml b/src/licensedcode/data/rules/gpl-3.0-plus_318.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_318.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_319.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_319.RULE index 98d3d2b3f91..e8443ca87f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_319.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_319.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_319.yml b/src/licensedcode/data/rules/gpl-3.0-plus_319.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_319.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_32.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_32.RULE index 2fbf0cfea53..b13bb77c479 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_32.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_32.RULE @@ -1 +1,7 @@ -Licensed under GNU General Public License Version 3 or higher +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licensed under GNU General Public License Version 3 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_32.yml b/src/licensedcode/data/rules/gpl-3.0-plus_32.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_320.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_320.RULE index fe6d0e50c3e..4b7e2960c82 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_320.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_320.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_320.yml b/src/licensedcode/data/rules/gpl-3.0-plus_320.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_320.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_321.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_321.RULE index 75c32194565..ce19301af38 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_321.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_321.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_321.yml b/src/licensedcode/data/rules/gpl-3.0-plus_321.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_321.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_322.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_322.RULE index 656d407da45..082dcf98209 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_322.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_322.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_322.yml b/src/licensedcode/data/rules/gpl-3.0-plus_322.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_322.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_323.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_323.RULE index 2763964f9c9..dd9f76b683b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_323.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_323.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_323.yml b/src/licensedcode/data/rules/gpl-3.0-plus_323.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_323.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_324.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_324.RULE index 82aa6bfa4d8..8e4f1327d76 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_324.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_324.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_324.yml b/src/licensedcode/data/rules/gpl-3.0-plus_324.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_324.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_325.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_325.RULE index b54bcd50bb1..c3b641f9ec8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_325.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_325.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_325.yml b/src/licensedcode/data/rules/gpl-3.0-plus_325.yml deleted file mode 100644 index fe239060339..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_325.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_326.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_326.RULE index 2e01dfa762a..b3a798fa4db 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_326.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_326.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_326.yml b/src/licensedcode/data/rules/gpl-3.0-plus_326.yml deleted file mode 100644 index fe239060339..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_326.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_327.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_327.RULE index e63bcde482d..f05bfa1c4b2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_327.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_327.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_327.yml b/src/licensedcode/data/rules/gpl-3.0-plus_327.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_327.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_328.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_328.RULE index baf7a6e6d91..7302d0ddfbf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_328.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_328.RULE @@ -1 +1,7 @@ -{{GPL-3.0-or-later - GNU General Public License version 3, or any later version}} +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + +{{GPL-3.0-or-later - GNU General Public License version 3, or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_328.yml b/src/licensedcode/data/rules/gpl-3.0-plus_328.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_328.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_329.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_329.RULE index b2dcde3d6e4..60ac0310e42 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_329.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_329.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU General Public License, version 3 or later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_329.yml b/src/licensedcode/data/rules/gpl-3.0-plus_329.yml deleted file mode 100644 index 6ad61bcac28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_329.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_33.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_33.RULE index 39ede12d5c3..c4e77fd1fea 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_33.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_33.RULE @@ -1 +1,8 @@ - is licenced under the terms of the GNU General Public Licence (version 3 or later). Please see the file COPYING for details. +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + + is licenced under the terms of the GNU General Public Licence (version 3 or later). Please see the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_33.yml b/src/licensedcode/data/rules/gpl-3.0-plus_33.yml deleted file mode 100644 index 1a09d2cc555..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_33.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_330.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_330.RULE index 159e6b51979..76f3f72820b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_330.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_330.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU General Public License, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_330.yml b/src/licensedcode/data/rules/gpl-3.0-plus_330.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_330.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_331.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_331.RULE index 5ec648980fd..0a98ee145ed 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_331.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_331.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_331.yml b/src/licensedcode/data/rules/gpl-3.0-plus_331.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_331.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_332.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_332.RULE index 294de5d70c5..3ec21956ecd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_332.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_332.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_332.yml b/src/licensedcode/data/rules/gpl-3.0-plus_332.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_333.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_333.RULE index 9be95beb7d0..14d67123faa 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_333.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_333.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_333.yml b/src/licensedcode/data/rules/gpl-3.0-plus_333.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_333.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_334.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_334.RULE index 0dda50bfc9a..bed9a70190e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_334.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_334.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_334.yml b/src/licensedcode/data/rules/gpl-3.0-plus_334.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_334.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_335.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_335.RULE index 62dd5901b5d..d48433f3705 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_335.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_335.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_335.yml b/src/licensedcode/data/rules/gpl-3.0-plus_335.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_335.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_336.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_336.RULE index 2a81fc6457c..cfdb1577004 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_336.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_336.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_336.yml b/src/licensedcode/data/rules/gpl-3.0-plus_336.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_337.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_337.RULE index 4823993c9c3..a930c67f5eb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_337.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_337.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_337.yml b/src/licensedcode/data/rules/gpl-3.0-plus_337.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_337.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_338.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_338.RULE index fde00a5f17a..bf81f18736e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_338.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_338.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_338.yml b/src/licensedcode/data/rules/gpl-3.0-plus_338.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_338.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_339.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_339.RULE index 7a2ff735014..6bcb544606b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_339.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_339.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_339.yml b/src/licensedcode/data/rules/gpl-3.0-plus_339.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_34.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_34.RULE index ed67d1ed234..ac5d2f363f3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_34.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_34.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Licence - is licenced under the terms of the GNU General Public Licence (version 3 or later). Please see the file COPYING for details. + is licenced under the terms of the GNU General Public Licence (version 3 or later). Please see the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_34.yml b/src/licensedcode/data/rules/gpl-3.0-plus_34.yml deleted file mode 100644 index 1a09d2cc555..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_340.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_340.RULE index 1753162a9c9..9c6796d3a68 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_340.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_340.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_340.yml b/src/licensedcode/data/rules/gpl-3.0-plus_340.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_340.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_341.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_341.RULE index aabc1655a89..2794a9435f8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_341.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_341.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_341.yml b/src/licensedcode/data/rules/gpl-3.0-plus_341.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_342.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_342.RULE index ed090ef0f7b..73b8549430e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_342.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_342.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_342.yml b/src/licensedcode/data/rules/gpl-3.0-plus_342.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_342.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_343.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_343.RULE index 29b01d19684..073fd82ad6a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_343.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_343.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_343.yml b/src/licensedcode/data/rules/gpl-3.0-plus_343.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_343.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_344.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_344.RULE index 2a1d99c40e5..b3ca2eb3e59 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_344.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_344.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + Less is now released under the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_344.yml b/src/licensedcode/data/rules/gpl-3.0-plus_344.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_344.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_345.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_345.RULE index d16432a419b..87bab2de223 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_345.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_345.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/GPL-3.0 +--- + http://spdx.org/licenses/GPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_345.yml b/src/licensedcode/data/rules/gpl-3.0-plus_345.yml deleted file mode 100644 index 56b6cad2af2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_345.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_346.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_346.RULE index abb254aee42..462341599ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_346.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_346.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0 +--- + https://spdx.org/licenses/GPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_346.yml b/src/licensedcode/data/rules/gpl-3.0-plus_346.yml deleted file mode 100644 index 285a6ac07c3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_346.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_347.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_347.RULE index 14570039630..d2b75f8ad99 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_347.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_347.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/ +--- + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_347.yml b/src/licensedcode/data/rules/gpl-3.0-plus_347.yml deleted file mode 100644 index 3065e68008e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_347.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_348.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_348.RULE index 3ce057200e6..9e15b7c89de 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_348.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_348.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/ +--- + under the terms of the GNU General Public License as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_348.yml b/src/licensedcode/data/rules/gpl-3.0-plus_348.yml deleted file mode 100644 index 3065e68008e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_348.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_349.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_349.RULE index 38c1897de22..627976b14c3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_349.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_349.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of GNU [GPL-3.0]+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_349.yml b/src/licensedcode/data/rules/gpl-3.0-plus_349.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_349.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_35.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_35.RULE index 6e28ed8c988..84b0002f777 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_35.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_35.RULE @@ -1 +1,7 @@ - is licenced under the terms of the GNU General Public Licence (version 3 or later). +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + + is licenced under the terms of the GNU General Public Licence (version 3 or later). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_35.yml b/src/licensedcode/data/rules/gpl-3.0-plus_35.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_350.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_350.RULE index d8401f221fd..6ce5baa69b2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_350.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_350.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License Version 3, or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_350.yml b/src/licensedcode/data/rules/gpl-3.0-plus_350.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_350.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_351.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_351.RULE index 49a2af454dc..32736e21f52 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_351.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_351.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the GPL 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_351.yml b/src/licensedcode/data/rules/gpl-3.0-plus_351.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_351.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_352.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_352.RULE index 630bf2d20a4..55b8a359794 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_352.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_352.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/ +--- + licensed under the GNU GPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_352.yml b/src/licensedcode/data/rules/gpl-3.0-plus_352.yml deleted file mode 100644 index dbfba4b951d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_352.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_353.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_353.RULE index d51b3177d8c..6d05bdd1bbe 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_353.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_353.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + 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, or (at your option) @@ -6,4 +11,4 @@ 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. +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_353.yml b/src/licensedcode/data/rules/gpl-3.0-plus_353.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_353.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_354.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_354.RULE index 69a3fb610a5..9f7b4131be7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_354.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_354.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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, or (at your option) any later @@ -14,4 +21,4 @@ later version. On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL', version 3 of this -license in `/usr/share/common-licenses/GPL-3'. +license in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_354.yml b/src/licensedcode/data/rules/gpl-3.0-plus_354.yml deleted file mode 100644 index 17550e16ca6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_354.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_355.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_355.RULE index 77738a89197..b7e5689733e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_355.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_355.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Code licensed under GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_355.yml b/src/licensedcode/data/rules/gpl-3.0-plus_355.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_355.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_356.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_356.RULE index 57d58a5e70f..64e47cb3a9a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_356.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_356.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_356.yml b/src/licensedcode/data/rules/gpl-3.0-plus_356.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_356.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_357.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_357.RULE index a3fc7dad5c5..b3a719bd079 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_357.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_357.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_357.yml b/src/licensedcode/data/rules/gpl-3.0-plus_357.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_357.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_358.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_358.RULE index 02725ad72e7..86c86021a12 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_358.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_358.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_358.yml b/src/licensedcode/data/rules/gpl-3.0-plus_358.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_358.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_359.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_359.RULE index 1bd8bdbcbd6..4cddd419949 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_359.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_359.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under GPLv3+ license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_359.yml b/src/licensedcode/data/rules/gpl-3.0-plus_359.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_359.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_36.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_36.RULE index ebcae55c0c1..917f9e56255 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_36.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_36.RULE @@ -1 +1,7 @@ - is licensed under the terms of the GNU General Public license (version 3 or later). +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + + is licensed under the terms of the GNU General Public license (version 3 or later). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_36.yml b/src/licensedcode/data/rules/gpl-3.0-plus_36.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_360.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_360.RULE index 59ff4386047..26103992b98 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_360.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_360.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + /* Licensed under GPLv3+ - see LICENSE file for details */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_360.yml b/src/licensedcode/data/rules/gpl-3.0-plus_360.yml deleted file mode 100644 index 06723102079..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_360.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_361.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_361.RULE index cb2d419065e..b5b9bfc8986 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_361.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_361.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GPLv3+ (GPL version 3 or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_361.yml b/src/licensedcode/data/rules/gpl-3.0-plus_361.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_361.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_362.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_362.RULE index bb006a474c6..396e783935a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_362.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_362.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl +--- + licensed under GPLv3+ (GNU GPL version 3 or later http://gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_362.yml b/src/licensedcode/data/rules/gpl-3.0-plus_362.yml deleted file mode 100644 index c384c5bf54c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_362.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_363.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_363.RULE index c242985b0d6..e2a8dc7cc8f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_363.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_363.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.html +--- + licensed under GPLv3+: GNU GPL version 3 or later (http://gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_363.yml b/src/licensedcode/data/rules/gpl-3.0-plus_363.yml deleted file mode 100644 index 77eba7a289c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_363.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_364.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_364.RULE index 8b9708b8a96..c4f3a32dc13 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_364.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_364.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is licensed under GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_364.yml b/src/licensedcode/data/rules/gpl-3.0-plus_364.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_364.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_365.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_365.RULE index b3fb03dd87b..0460c7f87f9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_365.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_365.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0 +--- + Licensed under GPLv3+ https://www.gnu.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_365.yml b/src/licensedcode/data/rules/gpl-3.0-plus_365.yml deleted file mode 100644 index 2da6a4c3002..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_365.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_366.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_366.RULE index ec16acf0e91..d16f1919eed 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_366.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_366.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.rst +--- + licensed under GPLv3+ (see LICENSE.rst). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_366.yml b/src/licensedcode/data/rules/gpl-3.0-plus_366.yml deleted file mode 100644 index b4f056229f9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_366.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.rst diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_367.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_367.RULE index e5d61286893..29b90c49e5f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_367.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_367.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + The code in this project is licensed under GPLv3+. The full licensing text can be found in the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_367.yml b/src/licensedcode/data/rules/gpl-3.0-plus_367.yml deleted file mode 100644 index 06723102079..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_367.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_368.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_368.RULE index 04c48c4678b..c416eca07ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_368.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_368.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GPLv3+ terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_368.yml b/src/licensedcode/data/rules/gpl-3.0-plus_368.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_368.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_369.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_369.RULE index 82d5775df70..dd18524c38f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_369.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_369.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GPLv3+ ("three plus"), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_369.yml b/src/licensedcode/data/rules/gpl-3.0-plus_369.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_369.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_37.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_37.RULE index 973a276e131..fa18d46d401 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_37.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_37.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 Licence as published by the Free Software Foundation; either version 3 @@ -8,4 +13,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software Foundation, -Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +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-3.0-plus_37.yml b/src/licensedcode/data/rules/gpl-3.0-plus_37.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_370.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_370.RULE index 7a0de33e503..47501b20754 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_370.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_370.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Since these are GPLv3+ compatible licenses, the whole project is licensed under GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_370.yml b/src/licensedcode/data/rules/gpl-3.0-plus_370.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_371.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_371.RULE index bc34e094b31..2b38ff9c18e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_371.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_371.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This file is licensed under GPLv3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_371.yml b/src/licensedcode/data/rules/gpl-3.0-plus_371.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_371.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_372.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_372.RULE index 0adb871865f..f648e0c1af6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_372.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_372.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_372.yml b/src/licensedcode/data/rules/gpl-3.0-plus_372.yml deleted file mode 100644 index 79a1c448de3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_372.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_373.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_373.RULE index dc9a19319db..d92d7bf1166 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_373.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_373.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_373.yml b/src/licensedcode/data/rules/gpl-3.0-plus_373.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_373.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_374.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_374.RULE index bbe41e01fb8..e04be78c29b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_374.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_374.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_374.yml b/src/licensedcode/data/rules/gpl-3.0-plus_374.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_374.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_375.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_375.RULE index 13ebb595bf8..3e75b6e8828 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_375.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_375.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_375.yml b/src/licensedcode/data/rules/gpl-3.0-plus_375.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_375.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_376.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_376.RULE index 98fcda6cba2..3947b033a88 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_376.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_376.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under "GPL version 3 or later" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_376.yml b/src/licensedcode/data/rules/gpl-3.0-plus_376.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_377.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_377.RULE index 1ff141b0f6a..da09e0a9c5f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_377.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_377.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + whole must be conveyed under "GPL version 3 or later". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_377.yml b/src/licensedcode/data/rules/gpl-3.0-plus_377.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_378.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_378.RULE index 5af4158b773..218f931b727 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_378.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_378.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GPLv3+ license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_378.yml b/src/licensedcode/data/rules/gpl-3.0-plus_378.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_378.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_379.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_379.RULE index 7de0213035a..03a35fd5333 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_379.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_379.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + The package as a whole can be redistributed under GPL3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_379.yml b/src/licensedcode/data/rules/gpl-3.0-plus_379.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_379.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_38.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_38.RULE index 38a8fd43791..56926a7347d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_38.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_38.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + __license__ = "GPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_38.yml b/src/licensedcode/data/rules/gpl-3.0-plus_38.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_380.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_380.RULE index e6482623857..e1a02405f87 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_380.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_380.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + redistributed under GPL3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_380.yml b/src/licensedcode/data/rules/gpl-3.0-plus_380.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_380.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_381.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_381.RULE index 4022362171c..1613b850dd2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_381.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_381.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + License: GPL-3+ 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_381.yml b/src/licensedcode/data/rules/gpl-3.0-plus_381.yml deleted file mode 100644 index 17550e16ca6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_381.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_382.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_382.RULE index a3f7104c3a7..b694e42f6a4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_382.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_382.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_382.yml b/src/licensedcode/data/rules/gpl-3.0-plus_382.yml deleted file mode 100644 index 17550e16ca6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_382.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_383.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_383.RULE index a4f67e70637..8b421ead166 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_383.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_383.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + License: GPL-3+ 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_383.yml b/src/licensedcode/data/rules/gpl-3.0-plus_383.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_383.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_384.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_384.RULE index 98f2f62982d..7e771b4460f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_384.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_384.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 3, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_384.yml b/src/licensedcode/data/rules/gpl-3.0-plus_384.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_384.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_385.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_385.RULE index e10c894f893..13a6c5eb76d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_385.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_385.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_385.yml b/src/licensedcode/data/rules/gpl-3.0-plus_385.yml deleted file mode 100644 index 7786ab1b979..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_385.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_386.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_386.RULE index 2c06e42272c..c72f926927e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_386.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_386.RULE @@ -1,3 +1,10 @@ +--- +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, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_386.yml b/src/licensedcode/data/rules/gpl-3.0-plus_386.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_386.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_387.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_387.RULE index ff3501a0530..5140aa3a57c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_387.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_387.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_387.yml b/src/licensedcode/data/rules/gpl-3.0-plus_387.yml deleted file mode 100644 index 17550e16ca6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_387.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_388.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_388.RULE index f416bbc2220..5614e78c48e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_388.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_388.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed under the GNU General Public License version 3.0 or later. See the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_388.yml b/src/licensedcode/data/rules/gpl-3.0-plus_388.yml deleted file mode 100644 index 2d1b5332c20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_388.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_389.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_389.RULE index ccd14bf9d5e..a6e265f5bb9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_389.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_389.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + the build system, test-suite and command-line tools (package -bin) are GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_389.yml b/src/licensedcode/data/rules/gpl-3.0-plus_389.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_389.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_39.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_39.RULE index 4ad162246fe..76aebe95603 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_39.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_39.RULE @@ -1,3 +1,10 @@ +--- +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 licence as published by @@ -8,5 +15,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public licence for more details. You should have received a copy of the GNU General Public licence -along with this program. If not, see . - +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_39.yml b/src/licensedcode/data/rules/gpl-3.0-plus_39.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_39.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_390.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_390.RULE index 5723807504f..dbdf07dd60b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_390.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_390.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + are GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_390.yml b/src/licensedcode/data/rules/gpl-3.0-plus_390.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_390.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_391.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_391.RULE index 7b594e6351f..a5b273ae9a7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_391.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_391.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License version 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_391.yml b/src/licensedcode/data/rules/gpl-3.0-plus_391.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_392.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_392.RULE index f80f435cbda..805bb842837 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_392.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_392.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + The command line tool, self tests, examples, and other auxilliary files, are licensed under the GNU General Public License version 3.0 or later. See the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_392.yml b/src/licensedcode/data/rules/gpl-3.0-plus_392.yml deleted file mode 100644 index 1a09d2cc555..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_392.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_393.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_393.RULE index 1bfc9cd3a11..414bcfc3655 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_393.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_393.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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_393.yml b/src/licensedcode/data/rules/gpl-3.0-plus_393.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_393.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_394.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_394.RULE index 71a727ef1f6..66cc05fef79 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_394.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_394.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_394.yml b/src/licensedcode/data/rules/gpl-3.0-plus_394.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_394.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_395.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_395.RULE index 5f5ddd632c7..2e5e72058af 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_395.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_395.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * GnuTLS-extra 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_395.yml b/src/licensedcode/data/rules/gpl-3.0-plus_395.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_395.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_396.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_396.RULE index a24fd5abd3b..72178bde4c4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_396.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_396.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This texinfo.tex file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_396.yml b/src/licensedcode/data/rules/gpl-3.0-plus_396.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_396.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_397.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_397.RULE index a8541204f44..904aeb37399 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_397.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_397.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + GNU Modula-2 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_397.yml b/src/licensedcode/data/rules/gpl-3.0-plus_397.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_397.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_398.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_398.RULE index efbdd8975fd..071f97ccb27 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_398.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_398.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + GCC 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_398.yml b/src/licensedcode/data/rules/gpl-3.0-plus_398.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_398.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_399.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_399.RULE index d9c989d03a6..7b73d414ebd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_399.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_399.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_399.yml b/src/licensedcode/data/rules/gpl-3.0-plus_399.yml deleted file mode 100644 index 14d146ab068..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_399.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_4.RULE index 9ba36311a01..b773d1d792d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: Another GPL 3 notice +--- + 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, or (at your option) @@ -10,4 +16,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + 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-3.0-plus_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_4.yml deleted file mode 100644 index 996aa91acbd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: Another GPL 3 notice diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_40.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_40.RULE index 0fa7a7a73be..1b2dfed1612 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_40.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_40.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 99 +--- + GPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_40.yml b/src/licensedcode/data/rules/gpl-3.0-plus_40.yml deleted file mode 100644 index 9675bdc755a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_400.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_400.RULE index 400faa141cc..50fc15a2d23 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_400.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_400.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_400.yml b/src/licensedcode/data/rules/gpl-3.0-plus_400.yml deleted file mode 100644 index c4a310135f4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_400.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_401.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_401.RULE index a4f276a52cd..01cbbab6802 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_401.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_401.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_401.yml b/src/licensedcode/data/rules/gpl-3.0-plus_401.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_401.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_402.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_402.RULE index f765446010d..0d27e515f95 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_402.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_402.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: GPL-3+ 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 @@ -13,4 +21,4 @@ License: GPL-3+ along with this program. If not, see . . On Debian GNU/Linux systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. + can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_402.yml b/src/licensedcode/data/rules/gpl-3.0-plus_402.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_402.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_403.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_403.RULE index c0e3ef3a1f4..4f74ceb55c3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_403.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_403.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + License: GPL-3+ 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_403.yml b/src/licensedcode/data/rules/gpl-3.0-plus_403.yml deleted file mode 100644 index c4a310135f4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_403.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_404.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_404.RULE index 854efbaec17..4238302751f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_404.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_404.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +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 @@ -13,4 +22,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_404.yml b/src/licensedcode/data/rules/gpl-3.0-plus_404.yml deleted file mode 100644 index 5de3dfc0be4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_404.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_405.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_405.RULE index 970c562264e..43e13cdefd6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_405.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_405.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_405.yml b/src/licensedcode/data/rules/gpl-3.0-plus_405.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_405.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_406.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_406.RULE index 9ed6cf3eb79..d431653a81d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_406.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_406.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_406.yml b/src/licensedcode/data/rules/gpl-3.0-plus_406.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_406.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_407.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_407.RULE index 8bec047e1f8..ce8a6e23f80 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_407.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_407.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_407.yml b/src/licensedcode/data/rules/gpl-3.0-plus_407.yml deleted file mode 100644 index 70cde977b9e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_407.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_408.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_408.RULE index 9809cdea929..0951e5db802 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_408.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_408.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_408.yml b/src/licensedcode/data/rules/gpl-3.0-plus_408.yml deleted file mode 100644 index 3d9a6c2242e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_408.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_409.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_409.RULE index 3c663e6a651..61a8c305541 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_409.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_409.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 95 +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 @@ -12,5 +20,4 @@ along with this program. If not, see . . On Debian GNU/Linux systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-3' file. - + License can be found in the `/usr/share/common-licenses/GPL-3' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_409.yml b/src/licensedcode/data/rules/gpl-3.0-plus_409.yml deleted file mode 100644 index 524c058053f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_409.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_41.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_41.RULE index 92c798098df..0fa8280d01f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_41.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_41.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -12,4 +20,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_41.yml b/src/licensedcode/data/rules/gpl-3.0-plus_41.yml deleted file mode 100644 index 21ab39d516e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE index 7756e5742c4..6d7bcf44b6d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +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 @@ -14,4 +23,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_410.yml b/src/licensedcode/data/rules/gpl-3.0-plus_410.yml deleted file mode 100644 index 5de3dfc0be4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_410.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_411.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_411.RULE index 1d16052e496..3455c0cc2fc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_411.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_411.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_411.yml b/src/licensedcode/data/rules/gpl-3.0-plus_411.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_411.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_412.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_412.RULE index 2459333bae7..1cbc3b12d57 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_412.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_412.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL +License can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_412.yml b/src/licensedcode/data/rules/gpl-3.0-plus_412.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_412.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_413.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_413.RULE index 1f8b4a4987c..46dfaccca0c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_413.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_413.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_413.yml b/src/licensedcode/data/rules/gpl-3.0-plus_413.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_413.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_414.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_414.RULE index efa8acadd03..13e42661001 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_414.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_414.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_414.yml b/src/licensedcode/data/rules/gpl-3.0-plus_414.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_414.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_415.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_415.RULE index d7e06367e3a..cafd6308dbf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_415.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_415.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_415.yml b/src/licensedcode/data/rules/gpl-3.0-plus_415.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_415.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_416.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_416.RULE index 87997b73d52..61ee89bc791 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_416.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_416.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_416.yml b/src/licensedcode/data/rules/gpl-3.0-plus_416.yml deleted file mode 100644 index 5d38e2b76cc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_416.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE index e274c7a9ae3..36799291c0f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -14,4 +23,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_417.yml b/src/licensedcode/data/rules/gpl-3.0-plus_417.yml deleted file mode 100644 index 98cf6d79c34..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_417.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_418.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_418.RULE index 48116754682..38acbd108ca 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_418.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_418.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) @@ -9,4 +17,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_418.yml b/src/licensedcode/data/rules/gpl-3.0-plus_418.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_418.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_419.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_419.RULE index 96f330d8483..9708bed5cd1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_419.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_419.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_419.yml b/src/licensedcode/data/rules/gpl-3.0-plus_419.yml deleted file mode 100644 index f687a2f8ea5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_419.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_42.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_42.RULE index 7b8eaccb1dc..c8254c53e7b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_42.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_42.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + ("GPL3" t "This program is free software: you can redistribute it and/or modify" @@ -11,4 +18,4 @@ "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 .") + "along with this program. If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_42.yml b/src/licensedcode/data/rules/gpl-3.0-plus_42.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_42.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_420.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_420.RULE index f76a594df3e..78beb6e8b24 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_420.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_420.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 licence as published by @@ -8,5 +16,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public licence for more details. You should have received a copy of the GNU General Public licence -along with this program. If not, see . - +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_420.yml b/src/licensedcode/data/rules/gpl-3.0-plus_420.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_420.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_421.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_421.RULE index c991b6e88ac..9eefd079a17 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_421.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_421.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU General Public License, version 3 or later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_421.yml b/src/licensedcode/data/rules/gpl-3.0-plus_421.yml deleted file mode 100644 index 11a62710527..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_421.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_422.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_422.RULE index 0e8877ebd66..ef207b75e38 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_422.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_422.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 General Public License as published by " diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_422.yml b/src/licensedcode/data/rules/gpl-3.0-plus_422.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_422.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_423.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_423.RULE index f450f599b43..c20aaa30194 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_423.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_423.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Bash 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_423.yml b/src/licensedcode/data/rules/gpl-3.0-plus_423.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_423.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_424.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_424.RULE index fbd7f3a319a..1b97cae6ab7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_424.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_424.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/lisenses/gpl.txt +--- + License: GNU/GPLv3 or higher (https://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_424.yml b/src/licensedcode/data/rules/gpl-3.0-plus_424.yml deleted file mode 100644 index 47747ee2c24..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_424.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/lisenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_425.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_425.RULE index 61b4710594c..02529595f94 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_425.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_425.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This texinfo.tex file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_425.yml b/src/licensedcode/data/rules/gpl-3.0-plus_425.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_425.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_426.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_426.RULE index 1dfac97bc18..7cc33672081 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_426.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_426.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_426.yml b/src/licensedcode/data/rules/gpl-3.0-plus_426.yml deleted file mode 100644 index 98d55fd6ac9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_426.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_427.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_427.RULE index dce4ad0d9ba..f42b04c3f2a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_427.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_427.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: GPL-3+ 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 @@ -13,4 +21,4 @@ License: GPL-3+ along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. + can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_427.yml b/src/licensedcode/data/rules/gpl-3.0-plus_427.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_427.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_428.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_428.RULE index 7a7d01495a9..cfe20ebd368 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_428.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_428.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + gnulib 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 @@ -10,4 +18,4 @@ You should have received a copy of the GNU General Public License along with gnulib; if not, see - . */ + . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_428.yml b/src/licensedcode/data/rules/gpl-3.0-plus_428.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_428.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_429.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_429.RULE index bafdc3d9c65..aa61f171ce6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_429.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_429.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -13,4 +22,4 @@ On Debian systems, the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_429.yml b/src/licensedcode/data/rules/gpl-3.0-plus_429.yml deleted file mode 100644 index 98cf6d79c34..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_429.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_43.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_43.RULE index c25f912ac4f..b998478e3df 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_43.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_43.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + and licensed under the terms of the GNU General Public License Version 3, or (at your option) any later version ("GPL3+"). A copy of the license can be found in legal/GPLV3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_43.yml b/src/licensedcode/data/rules/gpl-3.0-plus_43.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_43.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_430.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_430.RULE index 31b5d12ccbc..73394b08cee 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_430.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_430.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + "genshellopt 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 \ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_430.yml b/src/licensedcode/data/rules/gpl-3.0-plus_430.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_430.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_431.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_431.RULE index f5e875ce56b..32b55701ac0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_431.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_431.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + 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. 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_431.yml b/src/licensedcode/data/rules/gpl-3.0-plus_431.yml deleted file mode 100644 index e0514776053..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_431.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_432.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_432.RULE index 38c69aea2f8..e99084507d9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_432.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_432.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License , or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_432.yml b/src/licensedcode/data/rules/gpl-3.0-plus_432.yml deleted file mode 100644 index 1efa4f42e0e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_432.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_433.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_433.RULE index c66738bd5c6..f3e068c67d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_433.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_433.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses +--- + # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) @@ -11,4 +21,4 @@ # You should have received a copy of the GNU General Public License # along with this program (see the file COPYING); if not, see # https://www.gnu.org/licenses/, or contact Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA +# 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_433.yml b/src/licensedcode/data/rules/gpl-3.0-plus_433.yml deleted file mode 100644 index 1efa4f42e0e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_433.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_434.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_434.RULE index 8838f4128d7..872191b5881 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_434.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_434.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licences/ +--- + ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public Licence as published by ## the Free Software Foundation; either version 3 of the Licence, or @@ -9,4 +17,4 @@ ## GNU General Public Licence for more details. ## ## You should have received a copy of the GNU General Public Licence -## along with this program. If not, see . +## along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_434.yml b/src/licensedcode/data/rules/gpl-3.0-plus_434.yml deleted file mode 100644 index 49614e86bb4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_434.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licences/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_435.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_435.RULE index e2e89e0468c..5703b7a2272 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_435.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_435.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file belongs to a GNU package released under GPL 3 license. This program is free software; you can redistribute it and/or modify @@ -12,4 +21,4 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . -*/ +*/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_435.yml b/src/licensedcode/data/rules/gpl-3.0-plus_435.yml deleted file mode 100644 index 5f22225b8d0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_435.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_436.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_436.RULE index 0bc025d5470..bf3ec23affd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_436.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_436.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 75 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + ("GPL3-fr" t "Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_436.yml b/src/licensedcode/data/rules/gpl-3.0-plus_436.yml deleted file mode 100644 index acae1359895..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_436.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 75 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_437.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_437.RULE index 8f7e8a4e859..aea950d8eb5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_437.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_437.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + AutoOpts is a copyrighted work. This source file is not encumbered by AutoOpts licensing, but is provided under the licensing terms chosen by the author or copyright holder. AutoOpts is diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_437.yml b/src/licensedcode/data/rules/gpl-3.0-plus_437.yml deleted file mode 100644 index 21a997977d8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_437.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_438.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_438.RULE index af360e744db..76cc7646c36 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_438.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_438.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -24,4 +32,4 @@ "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." + "ALL NECESSARY SERVICING, REPAIR OR CORRECTION." \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_438.yml b/src/licensedcode/data/rules/gpl-3.0-plus_438.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_438.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_439.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_439.RULE index f84ef98f30e..218a2469f6f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_439.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_439.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -12,5 +20,4 @@ along with this program. If not, see . . On Debian systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-3' file. - + License can be found in the `/usr/share/common-licenses/GPL-3' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_439.yml b/src/licensedcode/data/rules/gpl-3.0-plus_439.yml deleted file mode 100644 index 9b6ec279cca..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_439.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_44.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_44.RULE index e17c1cef90b..4e7ee6a844e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_44.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_44.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + licensed as "GPLv3 or higher". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_44.yml b/src/licensedcode/data/rules/gpl-3.0-plus_44.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_440.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_440.RULE index 2ed4f563cd2..8e7d772a447 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_440.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_440.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +18,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_440.yml b/src/licensedcode/data/rules/gpl-3.0-plus_440.yml deleted file mode 100644 index 98cf6d79c34..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_440.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_441.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_441.RULE index 45df6060a2e..67c5329a2c4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_441.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_441.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- + License: GPLv3 or higher License URI: https://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_441.yml b/src/licensedcode/data/rules/gpl-3.0-plus_441.yml deleted file mode 100644 index f9580f546e6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_441.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_442.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_442.RULE index c0329faead5..d5eb8665646 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_442.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_442.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -14,4 +23,4 @@ On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_442.yml b/src/licensedcode/data/rules/gpl-3.0-plus_442.yml deleted file mode 100644 index 98cf6d79c34..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_442.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_443.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_443.RULE index acca3cb0c2a..7829afa56ba 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_443.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_443.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + ("GPL3" t "This program is free software: you can redistribute it and/or modify" @@ -11,4 +19,4 @@ "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 .") + "along with this program. If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_443.yml b/src/licensedcode/data/rules/gpl-3.0-plus_443.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_443.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_444.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_444.RULE index 612955d838c..853e6101d48 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_444.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_444.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GNU Time 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 @@ -9,4 +17,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 General Public License -along with GNU Time. If not, see . +along with GNU Time. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_444.yml b/src/licensedcode/data/rules/gpl-3.0-plus_444.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_444.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_445.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_445.RULE index 57bf20a7e1f..0fc0dd403a2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_445.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_445.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -9,4 +18,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 General Public License -along with this program; if not, see https://www.gnu.org/licenses/

+along with this program; if not, see https://www.gnu.org/licenses/

\ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_445.yml b/src/licensedcode/data/rules/gpl-3.0-plus_445.yml deleted file mode 100644 index f687a2f8ea5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_445.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_446.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_446.RULE index 54818c74b8e..c2aadf89bfb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_446.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_446.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_446.yml b/src/licensedcode/data/rules/gpl-3.0-plus_446.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_446.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_447.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_447.RULE index eb02d386642..0ab2b25eec6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_447.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_447.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: GPL-3+ 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 @@ -13,4 +21,4 @@ License: GPL-3+ along with this program. If not, see . . On Debian GNU/Linux systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. + can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_447.yml b/src/licensedcode/data/rules/gpl-3.0-plus_447.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_447.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_448.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_448.RULE index 5b72193422f..21047f36b57 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_448.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_448.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at @@ -11,4 +22,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License with your Debian GNU system, in /usr/share/common-licenses/GPL-3, or with the Debian GNU ed source package as the file COPYING. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_448.yml b/src/licensedcode/data/rules/gpl-3.0-plus_448.yml deleted file mode 100644 index 8b44cde83c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_448.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_449.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_449.RULE index aaf1818bf03..cfa1f997313 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_449.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_449.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + AutoGen 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_449.yml b/src/licensedcode/data/rules/gpl-3.0-plus_449.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_449.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_45.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_45.RULE index c943d0ab881..82b3f7ef7f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_45.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_45.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - copying.md + - legal/GPLv3 +--- + GNU GPLv3 or later; see copying.md and legal/GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_45.yml b/src/licensedcode/data/rules/gpl-3.0-plus_45.yml deleted file mode 100644 index 8661fc937b6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_45.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - copying.md - - legal/GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_450.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_450.RULE index 4c44600de69..b4777cf59a9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_450.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_450.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_450.yml b/src/licensedcode/data/rules/gpl-3.0-plus_450.yml deleted file mode 100644 index 9370ce5a1f9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_450.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_451.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_451.RULE index 487e5c118ef..ed8f38032ad 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_451.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_451.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE +ignorable_urls: + - https://www.gnu.org/licenses +--- + The project utilizes code licensed under the terms of the GNU General Public License and therefore is licensed under GPL v3 or later. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 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 https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_451.yml b/src/licensedcode/data/rules/gpl-3.0-plus_451.yml deleted file mode 100644 index 6b89b59dd1b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_451.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_452.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_452.RULE index aa460a87e86..d1d3e5478e2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_452.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_452.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * GnuTLS-extra 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_452.yml b/src/licensedcode/data/rules/gpl-3.0-plus_452.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_452.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_453.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_453.RULE index f9a6d7993e3..bcbbdba20a6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_453.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_453.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_453.yml b/src/licensedcode/data/rules/gpl-3.0-plus_453.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_453.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_454.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_454.RULE index 50c424d0fd4..a50bafee5df 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_454.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_454.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GNU package released under GPL 3 license This program is free software; you can redistribute it and/or modify @@ -11,4 +22,4 @@ GNU package released under GPL 3 license 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_454.yml b/src/licensedcode/data/rules/gpl-3.0-plus_454.yml deleted file mode 100644 index 8b44cde83c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_454.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_455.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_455.RULE index 3ea40e6d392..7ab4ad72aa3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_455.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_455.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_455.yml b/src/licensedcode/data/rules/gpl-3.0-plus_455.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_455.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_456.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_456.RULE index 289bc29a97a..e099eab32d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_456.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_456.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This source file is copyrighted and licensed under the following terms: This is free software: you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_456.yml b/src/licensedcode/data/rules/gpl-3.0-plus_456.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_456.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_457.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_457.RULE index 2c1858b5c83..e175b90ea4e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_457.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_457.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This source file is copyrighted and licensed under the following terms: is free software: you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_457.yml b/src/licensedcode/data/rules/gpl-3.0-plus_457.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_457.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_458.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_458.RULE index 31d9d463bc5..43153dda3c0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_458.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_458.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +18,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 General Public License along -with this program. If not, see . +with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_458.yml b/src/licensedcode/data/rules/gpl-3.0-plus_458.yml deleted file mode 100644 index 0ee8644653c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_458.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_459.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_459.RULE index 191cf185434..b87f65e810f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_459.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_459.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GPL 3+ GPL-3.0+ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_459.yml b/src/licensedcode/data/rules/gpl-3.0-plus_459.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_459.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_46.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_46.RULE index 4b786558672..fcbb4881c5c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_46.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_46.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + gpl-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_46.yml b/src/licensedcode/data/rules/gpl-3.0-plus_46.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_460.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_460.RULE index a877e02f807..0193bdf3d55 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_460.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_460.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -25,4 +33,4 @@ "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." + "ALL NECESSARY SERVICING, REPAIR OR CORRECTION." \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_460.yml b/src/licensedcode/data/rules/gpl-3.0-plus_460.yml deleted file mode 100644 index 95df8dcb4aa..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_460.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_461.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_461.RULE index f6036ab2f55..865fb596300 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_461.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_461.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +notes: Gpl 3.0 GCC version +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) @@ -10,4 +21,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see -. \ No newline at end of file +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_461.yml b/src/licensedcode/data/rules/gpl-3.0-plus_461.yml deleted file mode 100644 index 6bfb395c695..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_461.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -notes: Gpl 3.0 GCC version -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_462.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_462.RULE index ede8ab8f3bf..be53345bc19 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_462.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_462.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL +License can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_462.yml b/src/licensedcode/data/rules/gpl-3.0-plus_462.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_462.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_463.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_463.RULE index cb12f0f7f5f..8657fe57c57 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_463.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_463.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, 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 https://www.gnu.org/licenses/. - +You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_463.yml b/src/licensedcode/data/rules/gpl-3.0-plus_463.yml deleted file mode 100644 index 98d55fd6ac9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_463.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_464.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_464.RULE index 4da8962e30c..93187061d72 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_464.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_464.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + "Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le" "modifier suivant les termes de la GNU General Public License telle que" "publiée par la Free Software Foundation : soit la version 3 de cette" @@ -10,4 +18,4 @@ "" "Vous devriez avoir reçu une copie de la Licence Générale Publique GNU avec" "ce programme ; si ce n'est pas le cas, consultez :" - ".") + ".") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_464.yml b/src/licensedcode/data/rules/gpl-3.0-plus_464.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_464.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_465.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_465.RULE index 7deb1afd59b..fae0ba25d9d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_465.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_465.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -12,4 +21,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_465.yml b/src/licensedcode/data/rules/gpl-3.0-plus_465.yml deleted file mode 100644 index 0ee8644653c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_465.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_466.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_466.RULE index 2a4a5b5d6b8..5d203c8a3ed 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_466.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_466.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl +--- + .. _GNU GPL version 3 (or above) License: https://www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_466.yml b/src/licensedcode/data/rules/gpl-3.0-plus_466.yml deleted file mode 100644 index cfa4532eae2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_466.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_467.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_467.RULE index 88f39b3f7cd..63fb0d930d8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_467.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_467.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + * 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. See https://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_467.yml b/src/licensedcode/data/rules/gpl-3.0-plus_467.yml deleted file mode 100644 index 2ff5b268cae..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_467.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_468.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_468.RULE index ac405b08869..6a93e187686 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_468.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_468.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +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 General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +18,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 General Public License along -with this program. If not, see . +with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_468.yml b/src/licensedcode/data/rules/gpl-3.0-plus_468.yml deleted file mode 100644 index c83d399cbe6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_468.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_469.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_469.RULE index 6708fdf031b..2f76d3c8eab 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_469.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_469.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + "This is free software: you are free to change and redistribute it. " "There is NO WARRANTY, to the extent permitted by law. "; diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_469.yml b/src/licensedcode/data/rules/gpl-3.0-plus_469.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_469.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_47.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_47.RULE index e26eddf6f43..f3bc10371c8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_47.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_47.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + The code can be freely shared (copied, studiewd, modified, distributed) under the terms of the GNU General Public License, either version 3 or a later version, -as published by the Free Software Foundation +as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_47.yml b/src/licensedcode/data/rules/gpl-3.0-plus_47.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_47.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_470.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_470.RULE index b7d2bfe397f..a3c1db4611b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_470.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_470.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/graphics/gplv3 + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/gpl.html +--- + ## License ![GPLv3](https://www.gnu.org/graphics/gplv3) @@ -14,4 +24,4 @@ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with -. If not, see . +. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_470.yml b/src/licensedcode/data/rules/gpl-3.0-plus_470.yml deleted file mode 100644 index 42bd0d2f6b4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_470.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/graphics/gplv3 - - https://www.gnu.org/licenses/ - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_471.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_471.RULE index 20a99eb67cd..77fc444aa1e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_471.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_471.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -12,5 +20,4 @@ along with this program. If not, see . . On Debian GNU/Linux systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-3' file. - + License can be found in the `/usr/share/common-licenses/GPL-3' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_471.yml b/src/licensedcode/data/rules/gpl-3.0-plus_471.yml deleted file mode 100644 index 9b6ec279cca..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_471.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_472.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_472.RULE index 0a8a62b33b1..12453c2f459 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_472.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_472.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/gpl.html +--- + is licensed under [GNU General Public License] (https://www.gnu.org/licenses/gpl.html) Version 3 or later. @@ -11,4 +20,4 @@ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with -. If not, see . +. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_472.yml b/src/licensedcode/data/rules/gpl-3.0-plus_472.yml deleted file mode 100644 index e4258cfecde..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_472.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_473.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_473.RULE index ea34e192fb0..6a80d7a63e6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_473.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_473.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.txt +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_473.yml b/src/licensedcode/data/rules/gpl-3.0-plus_473.yml deleted file mode 100644 index e7fd4eabacd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_473.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_474.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_474.RULE index c159dca1057..6a0420a4af8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_474.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_474.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -13,4 +22,4 @@ On Debian GNU/Linux systems, the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_474.yml b/src/licensedcode/data/rules/gpl-3.0-plus_474.yml deleted file mode 100644 index 98cf6d79c34..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_474.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_475.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_475.RULE index c53828b35b3..015b4b73640 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_475.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_475.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This file was produced by an AutoOpts template. AutoOpts is a * copyrighted work. This source file is not encumbered by AutoOpts * licensing, but is provided under the licensing terms chosen by the diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_475.yml b/src/licensedcode/data/rules/gpl-3.0-plus_475.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_475.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_476.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_476.RULE index a4f19c1054b..d04de1947a2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_476.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_476.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_476.yml b/src/licensedcode/data/rules/gpl-3.0-plus_476.yml deleted file mode 100644 index f687a2f8ea5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_476.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_477.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_477.RULE index 6be42758283..77d59bfef8d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_477.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_477.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL +License can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_477.yml b/src/licensedcode/data/rules/gpl-3.0-plus_477.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_477.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_478.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_478.RULE index 60a745de12e..3c7a282ddde 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_478.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_478.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_478.yml b/src/licensedcode/data/rules/gpl-3.0-plus_478.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_478.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_479.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_479.RULE index 7080ce32d32..e19cf4ac539 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_479.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_479.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GnuPG 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_479.yml b/src/licensedcode/data/rules/gpl-3.0-plus_479.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_479.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_48.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_48.RULE index 517043d6df7..38f097d0edd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_48.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_48.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + * 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 @@ -6,4 +11,4 @@ * application 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. +* GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_48.yml b/src/licensedcode/data/rules/gpl-3.0-plus_48.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_48.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_480.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_480.RULE index 89164403ab1..a09279d0af2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_480.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_480.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GnuPG 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_480.yml b/src/licensedcode/data/rules/gpl-3.0-plus_480.yml deleted file mode 100644 index 7786ab1b979..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_480.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_481.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_481.RULE index 141c3a1e3c1..cb256a1dbec 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_481.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_481.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_481.yml b/src/licensedcode/data/rules/gpl-3.0-plus_481.yml deleted file mode 100644 index 17550e16ca6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_481.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_482.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_482.RULE index 9b18e539325..466bda5a1ec 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_482.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_482.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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, or (at your option) diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_482.yml b/src/licensedcode/data/rules/gpl-3.0-plus_482.yml deleted file mode 100644 index 5d38e2b76cc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_482.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_483.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_483.RULE index f7d6ff432a7..ef37aad91d5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_483.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_483.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_483.yml b/src/licensedcode/data/rules/gpl-3.0-plus_483.yml deleted file mode 100644 index 70cde977b9e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_483.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_484.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_484.RULE index c2c47134051..160131c3040 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_484.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_484.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_484.yml b/src/licensedcode/data/rules/gpl-3.0-plus_484.yml deleted file mode 100644 index 5d38e2b76cc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_484.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_485.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_485.RULE index 749715382b4..2c3eed9df3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_485.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_485.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_485.yml b/src/licensedcode/data/rules/gpl-3.0-plus_485.yml deleted file mode 100644 index 14d146ab068..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_485.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_486.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_486.RULE index 5954b5cf886..060783859ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_486.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_486.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_486.yml b/src/licensedcode/data/rules/gpl-3.0-plus_486.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_486.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE index 95f674d6b37..1574e666511 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: GPL-3+ 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 @@ -13,4 +21,4 @@ License: GPL-3+ along with this program. If not, see . . On Debian systems, the text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. + can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_487.yml b/src/licensedcode/data/rules/gpl-3.0-plus_487.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_487.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_488.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_488.RULE index 22b9f7a3ed4..527416d2979 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_488.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_488.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_488.yml b/src/licensedcode/data/rules/gpl-3.0-plus_488.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_488.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_489.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_489.RULE index f7b8aa3570a..2d90c16d36f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_489.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_489.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + On Debian systems, the text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_489.yml b/src/licensedcode/data/rules/gpl-3.0-plus_489.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_489.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_49.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_49.RULE index ece2624d20a..507ce02d830 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_49.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_49.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://spdx.org/licenses/GPL-3.0 +--- + * 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_49.yml b/src/licensedcode/data/rules/gpl-3.0-plus_49.yml deleted file mode 100644 index 3ecdebf0a22..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_49.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_490.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_490.RULE index 1adf4624a1c..87e19210b0d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_490.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_490.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -14,4 +23,4 @@ On Debian systems, the text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_490.yml b/src/licensedcode/data/rules/gpl-3.0-plus_490.yml deleted file mode 100644 index 98cf6d79c34..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_490.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_491.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_491.RULE index d7198eac304..d922b703215 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_491.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_491.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL +License can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_491.yml b/src/licensedcode/data/rules/gpl-3.0-plus_491.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_491.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_492.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_492.RULE index 0dce9b3adc0..5515c54c6e8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_492.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_492.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_492.yml b/src/licensedcode/data/rules/gpl-3.0-plus_492.yml deleted file mode 100644 index 3d9a6c2242e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_492.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_493.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_493.RULE index 7b6dd60fabb..a5c57de5809 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_493.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_493.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_493.yml b/src/licensedcode/data/rules/gpl-3.0-plus_493.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_493.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_494.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_494.RULE index 20d418e5fdb..684c38078d4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_494.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_494.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_494.yml b/src/licensedcode/data/rules/gpl-3.0-plus_494.yml deleted file mode 100644 index f687a2f8ea5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_494.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_495.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_495.RULE index efcfee736ff..0b21846bf11 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_495.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_495.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL 3 or later Debian notice +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 @@ -14,4 +23,4 @@ On Debian systems, the text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_495.yml b/src/licensedcode/data/rules/gpl-3.0-plus_495.yml deleted file mode 100644 index 5de3dfc0be4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_495.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL 3 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_496.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_496.RULE index 372df46e4db..7b7344e225a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_496.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_496.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_496.yml b/src/licensedcode/data/rules/gpl-3.0-plus_496.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_496.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_497.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_497.RULE index dbf2dc622f2..3300a078cf5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_497.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_497.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 @@ -12,4 +20,4 @@ along with this program. If not, see . On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL +License can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_497.yml b/src/licensedcode/data/rules/gpl-3.0-plus_497.yml deleted file mode 100644 index 9e1e5dd2997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_497.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_498.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_498.RULE index cf6a273cca1..49c789e0f26 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_498.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_498.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: GPL-3+ 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 @@ -13,4 +21,4 @@ License: GPL-3+ along with this program. If not, see . . On Debian systems, the text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. + can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_498.yml b/src/licensedcode/data/rules/gpl-3.0-plus_498.yml deleted file mode 100644 index 8a9c1e37e28..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_498.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_499.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_499.RULE index bb004fd0a18..e86f02a2620 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_499.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_499.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_499.yml b/src/licensedcode/data/rules/gpl-3.0-plus_499.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_499.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_5.RULE index 28b4130989f..de25baf0931 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: GPL 3 alternative +--- + GPL 3 is free software; you can redistribute it and/or modify (it)? @@ -12,4 +18,4 @@ GNU General Public License for more details You should have received a copy of the GNU General Public License along with .* if not, write to the Free Software -Foundation .* .*USA +Foundation .* .*USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_5.yml deleted file mode 100644 index 88e1abd8c4b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: GPL 3 alternative diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_50.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_50.RULE index 71dfb72086a..ad9ef144686 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_50.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_50.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/GPL-3.0 +--- + * @license GPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_50.yml b/src/licensedcode/data/rules/gpl-3.0-plus_50.yml deleted file mode 100644 index 3801e74255d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_500.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_500.RULE index a080a6082cb..c0bfc10e8b5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_500.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_500.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_500.yml b/src/licensedcode/data/rules/gpl-3.0-plus_500.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_500.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_501.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_501.RULE index 69c0f526dbe..da01e7e1354 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_501.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_501.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_501.yml b/src/licensedcode/data/rules/gpl-3.0-plus_501.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_501.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_502.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_502.RULE index 056d1b4821e..f5dd04a46b1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_502.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_502.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Bash 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_502.yml b/src/licensedcode/data/rules/gpl-3.0-plus_502.yml deleted file mode 100644 index b6a70b0a7c0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_502.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_503.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_503.RULE index 4c0fb95a3c1..7882447a612 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_503.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_503.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_503.yml b/src/licensedcode/data/rules/gpl-3.0-plus_503.yml deleted file mode 100644 index c4a310135f4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_503.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_504.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_504.RULE index c92f9ebce8a..b15eb129529 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_504.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_504.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GnuPG 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_504.yml b/src/licensedcode/data/rules/gpl-3.0-plus_504.yml deleted file mode 100644 index 4c139f5ee33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_504.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_505.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_505.RULE index e0556ffc404..d702c8347b2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_505.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_505.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + License: GPL-3+ 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_505.yml b/src/licensedcode/data/rules/gpl-3.0-plus_505.yml deleted file mode 100644 index 70cde977b9e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_505.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_506.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_506.RULE index d9cbad02b32..9727ba87a9c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_506.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_506.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_506.yml b/src/licensedcode/data/rules/gpl-3.0-plus_506.yml deleted file mode 100644 index 70cde977b9e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_506.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_507.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_507.RULE index 94c3fec1798..2e4c9c4622a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_507.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_507.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_507.yml b/src/licensedcode/data/rules/gpl-3.0-plus_507.yml deleted file mode 100644 index 70cde977b9e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_507.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_508.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_508.RULE index 3bcb73547b9..f23ff590310 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_508.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_508.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_508.yml b/src/licensedcode/data/rules/gpl-3.0-plus_508.yml deleted file mode 100644 index 290a933fb92..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_508.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_509.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_509.RULE index da7185bc9cc..37dd3201f3c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_509.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_509.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_509.yml b/src/licensedcode/data/rules/gpl-3.0-plus_509.yml deleted file mode 100644 index 17550e16ca6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_509.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_51.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_51.RULE index 722c1a53295..3b088a3f822 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_51.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_51.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 3 of the License, or @@ -6,4 +11,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_51.yml b/src/licensedcode/data/rules/gpl-3.0-plus_51.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_51.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_510.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_510.RULE index 6437ebd7f1f..25628a8f0c1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_510.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_510.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_510.yml b/src/licensedcode/data/rules/gpl-3.0-plus_510.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_510.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_511.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_511.RULE index ddd86eaa8ed..4aa863eaa2b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_511.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_511.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_511.yml b/src/licensedcode/data/rules/gpl-3.0-plus_511.yml deleted file mode 100644 index 17550e16ca6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_511.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE index 866e3b519b4..986a164f161 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + This package 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_512.yml b/src/licensedcode/data/rules/gpl-3.0-plus_512.yml deleted file mode 100644 index 17550e16ca6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_512.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_513.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_513.RULE index 69f261e3fcb..438a5a28132 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_513.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_513.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +notes: this is a plain GPL not "or later" +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ + - https://www.gnu.org/ + - https://www.gnu.org/licenses/ +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_513.yml b/src/licensedcode/data/rules/gpl-3.0-plus_513.yml deleted file mode 100644 index ece346fe792..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_513.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -notes: this is a plain GPL not "or later" -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ - - https://www.gnu.org/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_514.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_514.RULE index bd0a01c0829..741e9e71d74 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_514.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_514.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + * This code is licensed under terms of GPL version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_514.yml b/src/licensedcode/data/rules/gpl-3.0-plus_514.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_514.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_515.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_515.RULE index 453022f95ca..a3a8640ed83 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_515.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_515.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + The program (src/), the test suite (test/), and various developer tools in this source tree are available under the GNU General Public License version 3 or, at your option, any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_515.yml b/src/licensedcode/data/rules/gpl-3.0-plus_515.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_515.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_516.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_516.RULE index 80cd3ecd3db..296690a56b6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_516.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_516.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed GPLv3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_516.yml b/src/licensedcode/data/rules/gpl-3.0-plus_516.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_516.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_517.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_517.RULE index 4a267b742ef..523845438b6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_517.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_517.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is distributed under the GNU GPL version 3 or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_517.yml b/src/licensedcode/data/rules/gpl-3.0-plus_517.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_517.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_518.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_518.RULE index ca1963ac6ba..aafd9c8d929 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_518.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_518.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-3.0+ GNU General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_518.yml b/src/licensedcode/data/rules/gpl-3.0-plus_518.yml deleted file mode 100644 index b2e162c5cc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_518.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_519.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_519.RULE index 6918fb0ae22..6f336d8024c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_519.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_519.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_519.yml b/src/licensedcode/data/rules/gpl-3.0-plus_519.yml deleted file mode 100644 index b2e162c5cc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_519.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_52.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_52.RULE index 1a35d8aa4c9..59f4883fa04 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_52.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_52.RULE @@ -1 +1,7 @@ - is licensed under the GPLv3+ licence \ No newline at end of file +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + + is licensed under the GPLv3+ licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_52.yml b/src/licensedcode/data/rules/gpl-3.0-plus_52.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_520.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_520.RULE index 5424a667bb2..b72292970e7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_520.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_520.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v3.0 or later GPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_520.yml b/src/licensedcode/data/rules/gpl-3.0-plus_520.yml deleted file mode 100644 index b2e162c5cc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_520.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_521.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_521.RULE index f807000f0ec..4debec182cf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_521.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_521.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_521.yml b/src/licensedcode/data/rules/gpl-3.0-plus_521.yml deleted file mode 100644 index b2e162c5cc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_521.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_522.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_522.RULE index d5749d80193..acfc88fe54a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_522.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_522.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_522.yml b/src/licensedcode/data/rules/gpl-3.0-plus_522.yml deleted file mode 100644 index b2e162c5cc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_522.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_523.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_523.RULE index 310c2141259..9ee3bbbc469 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_523.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_523.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-3.0-or-later GNU General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_523.yml b/src/licensedcode/data/rules/gpl-3.0-plus_523.yml deleted file mode 100644 index 5ab1df5dc34..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_523.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_524.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_524.RULE index 29e9d5fbea8..1210f680d00 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_524.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_524.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU General Public License v3.0 or later GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_524.yml b/src/licensedcode/data/rules/gpl-3.0-plus_524.yml deleted file mode 100644 index 5ab1df5dc34..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_524.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_525.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_525.RULE index e535f4d9030..cd2517a0164 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_525.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_525.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_525.yml b/src/licensedcode/data/rules/gpl-3.0-plus_525.yml deleted file mode 100644 index 9cac6acb548..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_525.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_526.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_526.RULE index 8d84147bc65..6f45c1adc8d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_526.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_526.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_526.yml b/src/licensedcode/data/rules/gpl-3.0-plus_526.yml deleted file mode 100644 index 9cac6acb548..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_526.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_527.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_527.RULE index 9ac20aec2b7..64a8e2a10e8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_527.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_527.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_527.yml b/src/licensedcode/data/rules/gpl-3.0-plus_527.yml deleted file mode 100644 index 9cac6acb548..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_527.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_528.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_528.RULE index 8318aa461c3..8112cb5466f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_528.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_528.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'GNU License v3': 'GPL-3.0-or-later', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_528.yml b/src/licensedcode/data/rules/gpl-3.0-plus_528.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_528.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_529.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_529.RULE index 6fa3ec2659d..cfdeb8c1d3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_529.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_529.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['GPL', 'GPL-3.0-or-later'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_529.yml b/src/licensedcode/data/rules/gpl-3.0-plus_529.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_529.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_53.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_53.RULE index c1b94751064..bb7c386f6d7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_53.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_53.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.gnu.org/graphics/gplv3 + - https://www.gnu.org/licenses/gpl.html +--- + ## License ![GPLv3](https://www.gnu.org/graphics/gplv3) @@ -14,4 +23,4 @@ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with -. If not, see . +. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_53.yml b/src/licensedcode/data/rules/gpl-3.0-plus_53.yml deleted file mode 100644 index 6fce87bfba3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_53.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.gnu.org/graphics/gplv3 - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_530.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_530.RULE index b46ab3a709e..a655c29fd71 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_530.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_530.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'GLP': 'GPL-3.0-or-later', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_530.yml b/src/licensedcode/data/rules/gpl-3.0-plus_530.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_530.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_531.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_531.RULE index 644089f3087..3c076e6ae7c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_531.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_531.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'GLPv3': 'GPL-3.0-or-later', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_531.yml b/src/licensedcode/data/rules/gpl-3.0-plus_531.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_531.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_532.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_532.RULE index 847697c9320..e431ea7d2d2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_532.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_532.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GENERAL PUBLIC LICENSE: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_532.yml b/src/licensedcode/data/rules/gpl-3.0-plus_532.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_532.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_533.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_533.RULE index 0f34efe6936..cde97082bfd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_533.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_533.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GLP v3.0: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_533.yml b/src/licensedcode/data/rules/gpl-3.0-plus_533.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_533.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_534.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_534.RULE index f0b21103ba8..4f6df46df51 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_534.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_534.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL 3: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_534.yml b/src/licensedcode/data/rules/gpl-3.0-plus_534.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_534.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_535.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_535.RULE index e6a5e566afc..553d646058d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_535.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_535.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL 3.0: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_535.yml b/src/licensedcode/data/rules/gpl-3.0-plus_535.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_535.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_536.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_536.RULE index b28fd382ad3..65f97963bb1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_536.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_536.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL V3.0: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_536.yml b/src/licensedcode/data/rules/gpl-3.0-plus_536.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_536.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_537.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_537.RULE index 4e86c53894b..34ec667e02f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_537.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_537.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL v3: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_537.yml b/src/licensedcode/data/rules/gpl-3.0-plus_537.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_537.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_538.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_538.RULE index e1265311576..951e26529ab 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_538.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_538.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL ver 3: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_538.yml b/src/licensedcode/data/rules/gpl-3.0-plus_538.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_538.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_539.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_539.RULE index aaf9a94a556..3ffbcd20021 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_539.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_539.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPL: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_539.yml b/src/licensedcode/data/rules/gpl-3.0-plus_539.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_539.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_54.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_54.RULE index 2e29a92e13b..b4cbf55f80c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_54.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_54.RULE @@ -1,6 +1,14 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/graphics/gplv3 + - https://www.gnu.org/licenses/gpl.html +--- + ## License ![GPLv3](https://www.gnu.org/graphics/gplv3) is licensed under [GNU General Public License] -(https://www.gnu.org/licenses/gpl.html) Version 3 or later. +(https://www.gnu.org/licenses/gpl.html) Version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_54.yml b/src/licensedcode/data/rules/gpl-3.0-plus_54.yml deleted file mode 100644 index ebfa21c79f6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/graphics/gplv3 - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_540.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_540.RULE index 35d21dc0b80..f07a755e79f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_540.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_540.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPLv3: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_540.yml b/src/licensedcode/data/rules/gpl-3.0-plus_540.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_540.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_541.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_541.RULE index 5894be191f5..66304bbaccc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_541.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_541.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GPLv3+: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_541.yml b/src/licensedcode/data/rules/gpl-3.0-plus_541.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_541.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_542.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_542.RULE index ed8c704379a..b7390d873a3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_542.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_542.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU General Public License v3: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_542.yml b/src/licensedcode/data/rules/gpl-3.0-plus_542.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_542.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_543.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_543.RULE index fa9544a9f34..d7986c8af84 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_543.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_543.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU General Public: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_543.yml b/src/licensedcode/data/rules/gpl-3.0-plus_543.yml deleted file mode 100644 index 57fbede5c81..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_543.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_544.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_544.RULE index 3fba350f46d..d4d095653c5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_544.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_544.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GPL-3.0-or-later +--- + https://licenses.nuget.org/GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_544.yml b/src/licensedcode/data/rules/gpl-3.0-plus_544.yml deleted file mode 100644 index 168d74a46dd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_544.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GPL-3.0-or-later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_545.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_545.RULE index adbf5731623..ad4ca78b019 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_545.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_545.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_545.yml b/src/licensedcode/data/rules/gpl-3.0-plus_545.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_545.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_546.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_546.RULE index 688d149f2f1..4d874cf647f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_546.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_546.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + licenses: GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_546.yml b/src/licensedcode/data/rules/gpl-3.0-plus_546.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_546.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_547.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_547.RULE index b439d61fa6b..dc818a035f8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_547.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_547.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-or-later +--- + LICENSE {{GPL-3.0-or-later}} https://spdx.org/licenses/GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_547.yml b/src/licensedcode/data/rules/gpl-3.0-plus_547.yml deleted file mode 100644 index 7514608a292..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_547.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-or-later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_548.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_548.RULE index 6d29de3c03c..43aaf4de99e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_548.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_548.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0 +--- + LICENSE {{GPL-3.0}} https://spdx.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_548.yml b/src/licensedcode/data/rules/gpl-3.0-plus_548.yml deleted file mode 100644 index 285a6ac07c3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_548.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_549.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_549.RULE index ed77fea2110..90ab973e5b1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_549.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_549.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-or-later +--- + {{GPL-3.0-or-later}} https://spdx.org/licenses/GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_549.yml b/src/licensedcode/data/rules/gpl-3.0-plus_549.yml deleted file mode 100644 index 7514608a292..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_549.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-or-later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_55.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_55.RULE index bf570cbb902..b7c84766327 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_55.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_55.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/gpl.html +--- + is licensed under [GNU General Public License] (https://www.gnu.org/licenses/gpl.html) Version 3 or later. @@ -11,4 +19,4 @@ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with -. If not, see . +. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_55.yml b/src/licensedcode/data/rules/gpl-3.0-plus_55.yml deleted file mode 100644 index 190765516d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_550.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_550.RULE index 06fe615899a..add2b34ffc6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_550.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_550.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0 +--- + {{GPL-3.0}} https://spdx.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_550.yml b/src/licensedcode/data/rules/gpl-3.0-plus_550.yml deleted file mode 100644 index 285a6ac07c3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_550.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_551.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_551.RULE index 07b805dc6dc..94ceee9156b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_551.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_551.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0 +--- + LICENSE {{GPL-3.0+}} https://spdx.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_551.yml b/src/licensedcode/data/rules/gpl-3.0-plus_551.yml deleted file mode 100644 index 285a6ac07c3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_551.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_552.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_552.RULE index cc6e8de9bdc..5aaff94a50e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_552.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_552.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0 +--- + {{GPL-3.0+}} https://spdx.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_552.yml b/src/licensedcode/data/rules/gpl-3.0-plus_552.yml deleted file mode 100644 index 285a6ac07c3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_552.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_553.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_553.RULE index d30a0f41caf..f4591e122a5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_553.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_553.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 99 +minimum_coverage: 98 +notes: confusing reference to the LGPL in a GPL notice +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify     it under the terms of the GNU General Public License as published by     the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_553.yml b/src/licensedcode/data/rules/gpl-3.0-plus_553.yml deleted file mode 100644 index 26f77989375..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_553.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 99 -minimum_coverage: 98 -notes: confusing reference to the LGPL in a GPL notice -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_554.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_554.RULE index 9b4d4d465e3..a895499334d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_554.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_554.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * LICENSE [[file:./LICENSE][GPL v3.0 or any later version]]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_554.yml b/src/licensedcode/data/rules/gpl-3.0-plus_554.yml deleted file mode 100644 index 06723102079..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_554.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_555.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_555.RULE index da03c7c895c..aab512742ba 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_555.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_555.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + [[file:./LICENSE][GPL v3.0 or any later version]]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_555.yml b/src/licensedcode/data/rules/gpl-3.0-plus_555.yml deleted file mode 100644 index 06723102079..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_555.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_556.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_556.RULE index 62ac6560127..9abf7edbfff 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_556.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_556.RULE @@ -1,3 +1,10 @@ +--- +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, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_556.yml b/src/licensedcode/data/rules/gpl-3.0-plus_556.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_556.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_557.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_557.RULE index dc9710a73e4..d1741299729 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_557.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_557.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU GPL version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_557.yml b/src/licensedcode/data/rules/gpl-3.0-plus_557.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_557.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_558.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_558.RULE index 216d98f7e2b..01f92f1e304 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_558.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_558.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed under the GNU GPL version 3 or later. See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_558.yml b/src/licensedcode/data/rules/gpl-3.0-plus_558.yml deleted file mode 100644 index 2d1b5332c20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_558.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_559.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_559.RULE index 643ba348b5f..c3e0a1f4320 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_559.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_559.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: seen in FFmpeg +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + CONFIG_GPLV3 printf( "%s is free software; you can redistribute it and/or modify\n" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_559.yml b/src/licensedcode/data/rules/gpl-3.0-plus_559.yml deleted file mode 100644 index cef73bcde15..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_559.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: seen in FFmpeg -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_56.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_56.RULE index 1b23dd07b78..554be703264 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_56.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_56.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: Also seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, @@ -8,4 +16,4 @@ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with -. If not, see . +. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_56.yml b/src/licensedcode/data/rules/gpl-3.0-plus_56.yml deleted file mode 100644 index 5683a747598..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: Also seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_560.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_560.RULE index 6ac5498f430..c9d22ac04da 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_560.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_560.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: seen in FFmpeg +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + "%s is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 3 of the License, or\n" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_560.yml b/src/licensedcode/data/rules/gpl-3.0-plus_560.yml deleted file mode 100644 index cef73bcde15..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_560.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: seen in FFmpeg -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_57.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_57.RULE index 585edbd22d6..91aa253d8e1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_57.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_57.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 85 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -9,4 +17,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 General Public License -along with this program; if not, see http://www.gnu.org/licenses/

+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_57.yml b/src/licensedcode/data/rules/gpl-3.0-plus_57.yml deleted file mode 100644 index 3eb680a3a2c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 85 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_58.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_58.RULE index 8ddd40f529f..a6806121d9d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_58.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_58.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-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 General Public License as published by # the Free Software Foundation; either version 3 of the License, or @@ -10,4 +17,4 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, see . -# +# \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_58.yml b/src/licensedcode/data/rules/gpl-3.0-plus_58.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_58.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_59.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_59.RULE index bfcdaf3941f..5a93f07763c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_59.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_59.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + This program is free software; you may redistribute it under the terms of the GNU General Public License version 3 or (at your option) a later version. This program has absolutely no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_59.yml b/src/licensedcode/data/rules/gpl-3.0-plus_59.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_6.RULE index b6a99604b68..d09883ed317 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING3 +notes: Gpl 3.0 GCC version +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) @@ -10,4 +20,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see -. \ No newline at end of file +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_6.yml deleted file mode 100644 index ee2554aaa49..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING3 -notes: Gpl 3.0 GCC version -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_60.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_60.RULE index b48bab7efbb..243619294d2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_60.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_60.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +16,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_60.yml b/src/licensedcode/data/rules/gpl-3.0-plus_60.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_60.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_61.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_61.RULE index c14b2be7392..c360fc65104 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_61.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_61.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-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 General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -9,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 General Public License -along with this file. If not, see . +along with this file. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_61.yml b/src/licensedcode/data/rules/gpl-3.0-plus_61.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_61.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_62.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_62.RULE index ffc68f6771b..161c398c889 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_62.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_62.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) @@ -9,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_62.yml b/src/licensedcode/data/rules/gpl-3.0-plus_62.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_62.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_63.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_63.RULE index ca14256788d..41bbf6dfbf9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_63.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_63.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 65 +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. +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_63.yml b/src/licensedcode/data/rules/gpl-3.0-plus_63.yml deleted file mode 100644 index 353eb09cca1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_63.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 65 -ignorable_urls: - - https://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_64.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_64.RULE index 2885c7cc830..228e4cb7c8b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_64.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_64.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The Library 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 @@ -10,4 +17,4 @@ You should have received a copy of the GNU General Public License along with the Library; if not, see - . */ + . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_64.yml b/src/licensedcode/data/rules/gpl-3.0-plus_64.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_64.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_65.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_65.RULE index d236ecc9be2..3052e7a9cca 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_65.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_65.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU C Library 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 @@ -10,4 +17,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with the GNU C Library; if not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_65.yml b/src/licensedcode/data/rules/gpl-3.0-plus_65.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_65.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_66.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_66.RULE index fd7c3b8c2dc..33a7efb3c1d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_66.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_66.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU Library 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 @@ -10,4 +17,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with the GNU Library; if not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_66.yml b/src/licensedcode/data/rules/gpl-3.0-plus_66.yml deleted file mode 100644 index 153ff7ae320..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_66.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_67.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_67.RULE index b681769fb9d..a2ec30e3c47 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_67.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_67.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GNU Time 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 @@ -9,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 General Public License -along with GNU Time. If not, see . +along with GNU Time. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_67.yml b/src/licensedcode/data/rules/gpl-3.0-plus_67.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_67.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_68.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_68.RULE index 6d3b18a11c5..e45616ec3e3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_68.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_68.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPLv3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_68.yml b/src/licensedcode/data/rules/gpl-3.0-plus_68.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_69.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_69.RULE index a053246f255..f8c17406b2a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_69.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_69.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU-GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_69.yml b/src/licensedcode/data/rules/gpl-3.0-plus_69.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_7.RULE index 88a6c6e8930..b279d74706a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: GPL 3 and later notice +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_7.yml b/src/licensedcode/data/rules/gpl-3.0-plus_7.yml deleted file mode 100644 index c0ec9c136e5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: GPL 3 and later notice diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_70.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_70.RULE index 42506b4ea98..a4b4591d47c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_70.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_70.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-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 General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_70.yml b/src/licensedcode/data/rules/gpl-3.0-plus_70.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_70.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_71.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_71.RULE index 4b6b23b5a0a..49e7e8a0a6f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_71.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_71.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + gnulib 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 @@ -10,4 +17,4 @@ You should have received a copy of the GNU General Public License along with gnulib; if not, see - . */ + . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_71.yml b/src/licensedcode/data/rules/gpl-3.0-plus_71.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_71.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_72.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_72.RULE index e3331e8d88c..5f7f393d236 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_72.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_72.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C Library 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 @@ -10,4 +17,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with the GNU C Library; if not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_72.yml b/src/licensedcode/data/rules/gpl-3.0-plus_72.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_72.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_73.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_73.RULE index 24816a30a62..90503d80f93 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_73.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_73.RULE @@ -1,3 +1,10 @@ +--- +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, or @@ -24,4 +31,4 @@ "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." + "ALL NECESSARY SERVICING, REPAIR OR CORRECTION." \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_73.yml b/src/licensedcode/data/rules/gpl-3.0-plus_73.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_73.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_74.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_74.RULE index f32570ed7d0..f172ee95f51 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_74.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_74.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + Relicense under GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_74.yml b/src/licensedcode/data/rules/gpl-3.0-plus_74.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_75.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_75.RULE index 56016ca1521..c4c0da90625 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_75.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_75.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: 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, or @@ -25,4 +32,4 @@ "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." + "ALL NECESSARY SERVICING, REPAIR OR CORRECTION." \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_75.yml b/src/licensedcode/data/rules/gpl-3.0-plus_75.yml deleted file mode 100644 index 5cca87312df..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_75.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_76.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_76.RULE index 83e50e93f1c..a3ff4e27b54 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_76.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_76.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_76.yml b/src/licensedcode/data/rules/gpl-3.0-plus_76.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_77.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_77.RULE index ba172ab3a47..531958e3240 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_77.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_77.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License version 3, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_77.yml b/src/licensedcode/data/rules/gpl-3.0-plus_77.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_78.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_78.RULE index 7cb023d4dbc..a7d16a0cfa8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_78.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_78.RULE @@ -1 +1,7 @@ -# License: GNU General Public License version 3, or any later version +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + +# License: GNU General Public License version 3, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_78.yml b/src/licensedcode/data/rules/gpl-3.0-plus_78.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_79.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_79.RULE index 64b28a23539..df8615ce42c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_79.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_79.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + # License: GNU General Public License version 3, or any later version -# See top-level LICENSE file for more information +# See top-level LICENSE file for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_79.yml b/src/licensedcode/data/rules/gpl-3.0-plus_79.yml deleted file mode 100644 index 98a0e3e0017..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_79.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_8.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_8.RULE index 2fbf2e319c6..226286f5df9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_8.RULE @@ -1,3 +1,10 @@ +--- +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, or @@ -9,4 +16,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_8.yml b/src/licensedcode/data/rules/gpl-3.0-plus_8.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_80.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_80.RULE index ec492cc89ac..7b967ebe873 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_80.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_80.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Unless otherwise stated, this project is released under the GPLv3 or later license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_80.yml b/src/licensedcode/data/rules/gpl-3.0-plus_80.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_81.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_81.RULE index 402a67447ce..6ac49154510 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_81.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_81.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/GPL-3.0 +--- + The GPL-3.0+ license http://spdx.org/licenses/GPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_81.yml b/src/licensedcode/data/rules/gpl-3.0-plus_81.yml deleted file mode 100644 index 56b6cad2af2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_82.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_82.RULE index 920307917d8..bd7f0e3018c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_82.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_82.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: GPL 3 or later Debian notice +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 @@ -14,4 +22,4 @@ On Debian systems, the {{complete text}} of the GNU General Public License {{version 2 can be found in `/usr/share/common-licenses/GPL-2}}'. the {{complete text}} of the GNU General Public License {{version 3 can be found -in `/usr/share/common-licenses/GPL-3'}}. +in `/usr/share/common-licenses/GPL-3'}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_82.yml b/src/licensedcode/data/rules/gpl-3.0-plus_82.yml deleted file mode 100644 index e5af857f3e8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: GPL 3 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_83.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_83.RULE index ace728b5536..4af03dbbda9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_83.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_83.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: GPL 3 or later Debian notice +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 @@ -13,4 +21,4 @@ On Debian systems, the complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. +in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_83.yml b/src/licensedcode/data/rules/gpl-3.0-plus_83.yml deleted file mode 100644 index e5af857f3e8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: GPL 3 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_84.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_84.RULE index cb266d2202c..07aef84dba5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_84.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_84.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: GPL 3 or later Debian notice +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 @@ -9,4 +17,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_84.yml b/src/licensedcode/data/rules/gpl-3.0-plus_84.yml deleted file mode 100644 index e5af857f3e8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_84.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: GPL 3 or later Debian notice -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_85.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_85.RULE index 253e5a05071..ce225af0de4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_85.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_85.RULE @@ -1,6 +1,12 @@ +--- +license_expression: gpl-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 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 http://www.gnu.org/licenses/. - +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_85.yml b/src/licensedcode/data/rules/gpl-3.0-plus_85.yml deleted file mode 100644 index b1e5c7dbf29..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_85.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_86.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_86.RULE index 350056509b6..0a95f3d396f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_86.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_86.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://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_86.yml b/src/licensedcode/data/rules/gpl-3.0-plus_86.yml deleted file mode 100644 index 77eba7a289c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_87.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_87.RULE index 31395d00627..b2aece3c540 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_87.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_87.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + // Licensed under the GPLv3, or at your option any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_87.yml b/src/licensedcode/data/rules/gpl-3.0-plus_87.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_88.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_88.RULE index b8a809a459c..efc62d649cb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_88.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_88.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +notes: see https://community.kde.org/Policies/Licensing_Policy +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 @@ -12,5 +20,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 General Public License -along with this program. If not, see . - +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_88.yml b/src/licensedcode/data/rules/gpl-3.0-plus_88.yml deleted file mode 100644 index 23f02e8406d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -notes: see https://community.kde.org/Policies/Licensing_Policy -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_89.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_89.RULE index e83d95873c2..4a326baf29e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_89.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_89.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_89.yml b/src/licensedcode/data/rules/gpl-3.0-plus_89.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_9.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_9.RULE index 3fcf002b23d..5240f912e18 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_9.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 80 +--- + License: GPL-3+ 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. + of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_9.yml b/src/licensedcode/data/rules/gpl-3.0-plus_9.yml deleted file mode 100644 index a6c272be24c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_90.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_90.RULE index c4923b77260..7613c3e03f5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_90.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_90.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + Some files are under GNU GPL v3 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_90.yml b/src/licensedcode/data/rules/gpl-3.0-plus_90.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_91.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_91.RULE index 89b969c745a..01d04a80c11 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_91.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_91.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + 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. 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_91.yml b/src/licensedcode/data/rules/gpl-3.0-plus_91.yml deleted file mode 100644 index d7106fdc5b8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_91.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_92.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_92.RULE index c64d897a24c..f33eed12c15 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_92.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_92.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GPL-3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_92.yml b/src/licensedcode/data/rules/gpl-3.0-plus_92.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_93.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_93.RULE index a3eed37040c..266451c31d9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_93.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_93.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GPL 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_93.yml b/src/licensedcode/data/rules/gpl-3.0-plus_93.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_93.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_94.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_94.RULE index d1caf55bea0..dcc064b8cf9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_94.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_94.RULE @@ -1,3 +1,10 @@ +--- +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, or any later version. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_94.yml b/src/licensedcode/data/rules/gpl-3.0-plus_94.yml deleted file mode 100644 index b1e5c7dbf29..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_94.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_95.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_95.RULE index a54907307a3..98e015556a0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_95.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_95.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + the GNU General Public License, version 3 -or (at your option) any later version published by the Free Software Foundation. \ No newline at end of file +or (at your option) any later version published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_95.yml b/src/licensedcode/data/rules/gpl-3.0-plus_95.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_95.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_96.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_96.RULE index 6767054b107..e4098200ce4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_96.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_96.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_96.yml b/src/licensedcode/data/rules/gpl-3.0-plus_96.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_96.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE index e8f64978410..1df76521a41 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) @@ -9,4 +16,4 @@ 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 . + along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_97.yml b/src/licensedcode/data/rules/gpl-3.0-plus_97.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_97.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_98.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_98.RULE index 9ba89ca455d..01484d18b71 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_98.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_98.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + 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. \ No newline at end of file + * any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_98.yml b/src/licensedcode/data/rules/gpl-3.0-plus_98.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_98.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE index f49df38c6e7..d74abdba0af 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -8,5 +15,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with . If not, see https://www.gnu.org/licenses/. - +along with . If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_99.yml b/src/licensedcode/data/rules/gpl-3.0-plus_99.yml deleted file mode 100644 index e31ecb5a43a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_99.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_cc-by-sa-4.0_and_cc0-1.0_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_cc-by-sa-4.0_and_cc0-1.0_and_apache-2.0_1.RULE index 05fa0fb6794..03c21225951 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_cc-by-sa-4.0_and_cc0-1.0_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_cc-by-sa-4.0_and_cc0-1.0_and_apache-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus AND cc-by-sa-4.0 AND cc0-1.0 AND apache-2.0 +is_license_notice: yes +minimum_coverage: 85 +--- + License This work is licensed under multiple licences. Because keeping this section up-to-date is challenging, here is a brief summary as of April 2020: All original source code is licensed under GPL-3.0-or-later. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_cc-by-sa-4.0_and_cc0-1.0_and_apache-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_cc-by-sa-4.0_and_cc0-1.0_and_apache-2.0_1.yml deleted file mode 100644 index e0481b088f9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_cc-by-sa-4.0_and_cc0-1.0_and_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus AND cc-by-sa-4.0 AND cc0-1.0 AND apache-2.0 -is_license_notice: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_1.RULE index 77ef3864746..b140b09ef45 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus AND cygwin-exception-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/docs/osd/ +--- + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_1.yml deleted file mode 100644 index 4ff4bd209ba..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus AND cygwin-exception-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/docs/osd/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_2.RULE index eef2e9bb732..f1aa51f511f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus AND cygwin-exception-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/ + - http://www.opensource.org/docs/osd/ +--- + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_2.yml deleted file mode 100644 index 192768df844..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus AND cygwin-exception-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/ - - http://www.opensource.org/docs/osd/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_3.RULE index 2a1d8d83f71..ded5bef7001 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus AND cygwin-exception-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/docs/osd/ +--- + Additional Permissions: diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_3.yml deleted file mode 100644 index 4ff4bd209ba..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_cygwin-exception-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus AND cygwin-exception-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/docs/osd/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-2.0-plus__and_mit_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-2.0-plus__and_mit_1.RULE index e6b51f31874..28ca05a1085 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-2.0-plus__and_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-2.0-plus__and_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus AND gpl-2.0-plus AND mit +is_license_notice: yes +relevance: 100 +--- + distributed under GPL3+/GPLv2+/MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-2.0-plus__and_mit_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-2.0-plus__and_mit_1.yml deleted file mode 100644 index c020bd9c167..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-2.0-plus__and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus AND gpl-2.0-plus AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc.RULE index 492c62b46c5..d0d81dd6e22 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Soft- ware Foundation; either version 3, or (at your option) any later ver- @@ -12,4 +22,4 @@ You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . \ No newline at end of file + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc.yml deleted file mode 100644 index b82a2f5d85d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc_2.RULE index 0c36202dc51..15a9b85e7f1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + -- you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc_2.yml deleted file mode 100644 index b82a2f5d85d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_gpl-3.0-gcc_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_1.RULE index 5ceb87ad816..5e622282054 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus AND lgpl-3.0-plus +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) @@ -13,4 +21,4 @@ * * You should have received a copy of the GNU General Public License * and GNU Lesser General Public License along with . If not, see - * . + * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_1.yml deleted file mode 100644 index db3da21fdc8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus AND lgpl-3.0-plus -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_2.RULE index 0e9c6a27d84..871b69f78b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus AND lgpl-3.0-plus +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING3 +notes: this is a set of confusing LGPL and GPL mixed references +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GCC 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; either version 3 of the License, or (at your option) @@ -10,4 +21,4 @@ more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_2.yml deleted file mode 100644 index 812fdf28f1b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus AND lgpl-3.0-plus -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING3 -notes: this is a set of confusing LGPL and GPL mixed references -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_3.RULE index 3c100a8ffce..7d0137ad2c7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus AND lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) @@ -13,4 +22,4 @@ * * You should have received a copy of the GNU General Public License * and GNU Lesser General Public License along with . If not, see - * . + * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_3.yml deleted file mode 100644 index 3b372831a75..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_lgpl-3.0-plus_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus AND lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-copyleft_1.RULE index 7835adf35d1..dcaab679740 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-copyleft_1.RULE @@ -1,6 +1,13 @@ +--- +license_expression: gpl-3.0-plus AND other-copyleft +is_license_notice: yes +ignorable_urls: + - http://www.swig.org/legal.html +--- + * This file is part of SWIG, which is licensed as a whole under version 3 * (or any later version) of the GNU General Public License. Some additional * terms also apply to certain portions of SWIG. The full details of the SWIG * license and copyrights can be found in the LICENSE and COPYRIGHT files * included with the SWIG source code as distributed by the SWIG developers - * and at http://www.swig.org/legal.html. + * and at http://www.swig.org/legal.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-copyleft_1.yml deleted file mode 100644 index b481bde79b0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-copyleft_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus AND other-copyleft -is_license_notice: yes -ignorable_urls: - - http://www.swig.org/legal.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_1.RULE index d02be41b7a8..f602fb48b3d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus AND other-permissive +is_license_notice: yes +relevance: 100 +--- + 2. Files Excluded from GPL Coverage. Red Hat grants you permission to distribute Cygwin with the following diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_1.yml deleted file mode 100644 index 09d4aefd26d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_2.RULE index 5408571fc67..15336cccfbd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus AND other-permissive +is_license_notice: yes +relevance: 100 +--- + 2. Files Excluded from GPL Coverage. Red Hat grants you permission to distribute Cygwin with the following diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_2.yml deleted file mode 100644 index 09d4aefd26d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_3.RULE index d003096760b..e4fbc416e7b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus AND other-permissive +is_license_notice: yes +relevance: 100 +--- + Red Hat grants you permission to distribute Cygwin with the following files, which are not considered part of Cygwin and are not governed by GPLv3+, in source or binary form. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_3.yml deleted file mode 100644 index 09d4aefd26d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_other-permissive_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_1.RULE index dd6663d9473..6ffbfd78a87 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions of # the GNU General Public License v.3, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_1.yml deleted file mode 100644 index e14c0df5edb..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_2.RULE index f0678d736b3..84bd6103e29 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/feramhq/transity/commit/53c0c0f6aa75f64ed8373cdc050deb748653df65 the + notice seems to be a conflict with the GPL See also https://github.com/feramhq/transity#license +--- + is licensed under GPL-3.0-or-later and can be used free of charge at non-profits and for evaluation. For long-term usage, however, please make sure to purchase a license at \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_2.yml deleted file mode 100644 index 88124adc1c8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/feramhq/transity/commit/53c0c0f6aa75f64ed8373cdc050deb748653df65 the - notice seems to be a conflict with the GPL See also https://github.com/feramhq/transity#license diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_3.RULE index 5cb569f9011..b6870190f6b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/feramhq/transity/commit/53c0c0f6aa75f64ed8373cdc050deb748653df65 the + notice seems to be a conflict with the GPL See also https://github.com/feramhq/transity#license +--- + Transity is licensed under GPL-3.0-or-later and can be used free of charge at non-profits and for evaluation. For long-term usage, however, please make sure to purchase a license diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_3.yml deleted file mode 100644 index 88124adc1c8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_proprietary-license_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/feramhq/transity/commit/53c0c0f6aa75f64ed8373cdc050deb748653df65 the - notice seems to be a conflict with the GPL See also https://github.com/feramhq/transity#license diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_swig.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_and_swig.RULE index 59ab6dcfa8d..d1b8e19fcc2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_swig.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_and_swig.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus AND swig +is_license_notice: yes +--- + SWIG 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_and_swig.yml b/src/licensedcode/data/rules/gpl-3.0-plus_and_swig.yml deleted file mode 100644 index b536dc2fb7a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_and_swig.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus AND swig -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_available.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_available.RULE index 8ade26d24f7..e6f709d6ac8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_available.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_available.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + License: -Code is available under the GNU General Public Licence, Version 3. +Code is available under the GNU General Public Licence, Version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_available.yml b/src/licensedcode/data/rules/gpl-3.0-plus_available.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_available.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_dist.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_dist.RULE index 4eb51741165..88bc31c655c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_dist.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_dist.RULE @@ -1 +1,7 @@ -Distributed under the GNU General Public License, version 3 or later version. +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + +Distributed under the GNU General Public License, version 3 or later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_dist.yml b/src/licensedcode/data/rules/gpl-3.0-plus_dist.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_dist.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_docutils.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_docutils.RULE index 27208283b8e..61d30cc27bd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_docutils.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_docutils.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +--- + released under the `GNU General Public License`_ version 3 or later (`local copy`__). diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_docutils.yml b/src/licensedcode/data/rules/gpl-3.0-plus_docutils.yml deleted file mode 100644 index 6d261686656..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_docutils.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fr.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_fr.RULE index ba189ad5a58..5a86222d4b0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fr.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_fr.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +minimum_coverage: 75 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + ("GPL3-fr" t "Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fr.yml b/src/licensedcode/data/rules/gpl-3.0-plus_fr.yml deleted file mode 100644 index f51bc49b120..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fr.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -minimum_coverage: 75 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fr2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_fr2.RULE index c6134cd643c..d6810cb0b01 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fr2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_fr2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + "Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le" "modifier suivant les termes de la GNU General Public License telle que" "publiée par la Free Software Foundation : soit la version 3 de cette" @@ -10,4 +17,4 @@ "" "Vous devriez avoir reçu une copie de la Licence Générale Publique GNU avec" "ce programme ; si ce n'est pas le cas, consultez :" - ".") + ".") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fr2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_fr2.yml deleted file mode 100644 index 25a772d29fc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fr2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.RULE index 67849646048..1b939c771c9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + Licensed under the GNU General Public License version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.yml b/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_licenced.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_licenced.RULE index fc31a658620..5d10fa67604 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_licenced.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_licenced.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + *** LICENCE *** -This implementation licenced under the GNU General Public Licence version3. +This implementation licenced under the GNU General Public Licence version3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_licenced.yml b/src/licensedcode/data/rules/gpl-3.0-plus_licenced.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_licenced.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.RULE index 5941e0509ba..d4ee8b7d2d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v3 or later (GPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.RULE index 573e3f14ffc..86ff33eb947 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.RULE index 90fae905838..843368a88e7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + license: GNU General Public License v3 or later (GPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_1.RULE index f64c286c664..7b5ac55c013 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING + - LICENSE +--- + This program is free software. You may redistribute it and/or modify it under the terms of either: diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_1.yml deleted file mode 100644 index 65a7cd9fe20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_2.RULE index 01e91a6fa96..601ef87d7cd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - README +--- + You may distribute under the terms of either the GNU General Public License or the Less License, as specified in the README file. For more information, see the README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_2.yml deleted file mode 100644 index 35fe5a2fecf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_3.RULE index 5b2e85b9bce..b5d4fb65b0c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - README +--- + * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_3.yml deleted file mode 100644 index 35fe5a2fecf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_4.RULE index 01442373c15..2e7b127383d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_4.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-3.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - README +--- + * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_4.yml deleted file mode 100644 index 35fe5a2fecf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_5.RULE index 53793d4e3ef..808fe7b924c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus OR bsd-simplified +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - WARRANTY +--- + less comes with NO WARRANTY, to the extent permitted by law. For information about the terms of redistribution, see the file named README in the less distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_5.yml deleted file mode 100644 index 9b457c1a26b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus OR bsd-simplified -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - WARRANTY diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_6.RULE index 76e9eb3b76d..a1536b8726a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus OR bsd-simplified +is_license_tag: yes +relevance: 100 +--- + license: "dual-licensed under GPLv3+ or BSD 2-clause" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_6.yml deleted file mode 100644 index 52daa08637a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_7.RULE index 07b9a971cfa..e08480e4a3a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus OR bsd-simplified +is_license_tag: yes +relevance: 100 +--- + Licence: "Dual-Licensed Under Gplv3+ Or Bsd 2-Clause" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_7.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_7.yml deleted file mode 100644 index 52daa08637a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_bsd-simplified_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR bsd-simplified -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_1.RULE index 2adb4439c70..39d54a97dca 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus OR (cc-by-sa-3.0 OR cc-by-sa-4.0) +is_license_notice: yes +relevance: 100 +notes: http://www.damhan.net/aaben/dan-eng/dan-eng.tei https://lists.debian.org/debian-legal/2019/09/msg00003.html +--- + Available under the terms of the GNU General Public License ver. 3.0 and any later version and all changes after version 0.3 (0.3 included) is also released under Text of Creative Commons Attribution-ShareAlike 3.0 Unported License and diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_1.yml deleted file mode 100644 index 7f99d61e131..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus OR (cc-by-sa-3.0 OR cc-by-sa-4.0) -is_license_notice: yes -relevance: 100 -notes: http://www.damhan.net/aaben/dan-eng/dan-eng.tei https://lists.debian.org/debian-legal/2019/09/msg00003.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_2.RULE index 089ccdd8bc5..f8d4348d5d1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus OR (cc-by-sa-3.0 OR cc-by-sa-4.0) +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: http://www.damhan.net/aaben/dan-eng/dan-eng.tei https://lists.debian.org/debian-legal/2019/09/msg00003.html +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- + Available under the terms of the GNU General Public License ver. 3.0 and any later version and all changes after version 0.3 (0.3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_2.yml deleted file mode 100644 index 13d521687dd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_cc-by-sa-3.0_or_cc-by-sa-4.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus OR (cc-by-sa-3.0 OR cc-by-sa-4.0) -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: http://www.damhan.net/aaben/dan-eng/dan-eng.tei https://lists.debian.org/debian-legal/2019/09/msg00003.html -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_1.RULE index 413b32b4862..ccc45863028 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- + is available under the terms of the GNU GPL v3 or above (full text below). If this license is too restrictive for your needs, you may obtain a commercial licens \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_1.yml deleted file mode 100644 index f140668111c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_2.RULE index c0bbb692b63..b0f489a87eb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Licensing: (A) MPFR C++ is under GNU General Public License ("GPL"). @@ -25,4 +33,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_2.yml deleted file mode 100644 index 366a3d47254..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_1.RULE index 3d8436a4073..4d1057806ca 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus OR commercial-license +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Licensing: (A) MPFR C++ is under GNU General Public License ("GPL"). @@ -25,4 +32,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_1.yml deleted file mode 100644 index 4d5e68162c8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus OR commercial-license -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.RULE index 313ee1dc130..fe6e3e1941f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus OR commercial-license +is_license_notice: yes +--- + // You can redistribute it and/or modify it under the terms of the GNU // General Public License as published by the Free Software Foundation, // either version 3 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.yml deleted file mode 100644 index 65ce8934ae4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus OR commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_lgpl-3.0-plus_libreoffice.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_lgpl-3.0-plus_libreoffice.RULE index ed61d3e9db6..8aa6316cc8e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_lgpl-3.0-plus_libreoffice.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_lgpl-3.0-plus_libreoffice.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-3.0-plus OR lgpl-3.0-plus +is_license_notice: yes +notes: found in Libreoffice +--- + # Alternatively, the contents of this file may be used under the terms of # either the GNU General Public License Version 3 or later (the "GPLv3+"), or # the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable -# instead of those above. +# instead of those above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_lgpl-3.0-plus_libreoffice.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_lgpl-3.0-plus_libreoffice.yml deleted file mode 100644 index 1c3898a7fb2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_lgpl-3.0-plus_libreoffice.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR lgpl-3.0-plus -is_license_notice: yes -notes: found in Libreoffice diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit.RULE index b9bfebd294f..8ddc217b284 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_tag: yes +relevance: 100 +--- + GPL-3.0+ OR MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit.yml deleted file mode 100644 index 9cd48f882ce..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit2.RULE index 1d3d87b0cc4..0cb1277c0f9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_tag: yes +relevance: 100 +--- + license: GPL-3.0+ OR MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit2.yml deleted file mode 100644 index 9cd48f882ce..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit3.RULE index 852f1394257..cad1e0dbffe 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit3.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl + - https://opensource.org/licenses/MIT +--- + is dual-licensed under [GNU GPL version 3 (or above) License](http://www.gnu.org/licenses/gpl) and [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit3.yml deleted file mode 100644 index f7f7fed061b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit4.RULE index e4c24c3c8a8..ab292099956 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl + - https://opensource.org/licenses/MIT +--- + is dual-licensed under [GNU GPL version 3 (or above) License](http://www.gnu.org/licenses/gpl) and [MIT License](https://opensource.org/licenses/MIT). Personally, I prefer anyone using this to respect the GPL license and use that itself for derivative works - thus making them also Free Software. But, your diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit4.yml deleted file mode 100644 index f7f7fed061b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit5.RULE index 0a5594e039f..c05888e96b3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit5.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl +--- + is released under two licenses: `GNU GPL version 3 (or above) License` and `MIT License`_. .. _GNU GPL version 3 (or above) License: http://www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit5.yml deleted file mode 100644 index bdf74497d2c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit6.RULE index 0be343335f0..c119ef9781a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit6.RULE @@ -1 +1,7 @@ -is released under two licenses: `GNU GPL version 3 (or above) License` and `MIT License`_. +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +--- + +is released under two licenses: `GNU GPL version 3 (or above) License` and `MIT License`_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit6.yml deleted file mode 100644 index 3bc760216b1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.RULE index 1bf6f5ff2bc..eb891030f2e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/%7B%7Bgpl-3.0%7D%7D.php + - http://www.opensource.org/licenses/%7B%7Bmit-license%7D%7D.php +--- + @license {{dual GPL (3.0 or later) and MIT}}, at your choice. * @license http://www.opensource.org/licenses/{{mit-license}}.php - * @license http://www.opensource.org/licenses/{{gpl-3.0}}.php + * @license http://www.opensource.org/licenses/{{gpl-3.0}}.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.yml deleted file mode 100644 index 5ffc7c26155..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/%7B%7Bgpl-3.0%7D%7D.php - - http://www.opensource.org/licenses/%7B%7Bmit-license%7D%7D.php diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_10.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_10.RULE index 3cf3d754add..c51ccce1ca6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT + - https://www.gnu.org/licenses/gpl +--- + is dual-licensed under [GNU GPL version 3 (or above) License](https://www.gnu.org/licenses/gpl) and [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_10.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_10.yml deleted file mode 100644 index e5494fd4bc8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT - - https://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_11.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_11.RULE index 649ab0df778..a196ae31914 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl +--- + released under two licenses: `GNU GPL version 3 (or above) License` and `MIT License`_. .. _GNU GPL version 3 (or above) License: https://www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_11.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_11.yml deleted file mode 100644 index d1478c3951e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_2.RULE index 4d8428f1275..ba7993df883 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_2.RULE @@ -1 +1,7 @@ -@license {{dual GPL (3.0 or later) and MIT}}, at your choice. +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +--- + +@license {{dual GPL (3.0 or later) and MIT}}, at your choice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_2.yml deleted file mode 100644 index 3bc760216b1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_3.RULE index 262eb1314e3..aa015d6e916 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +--- + dual GPL (3.0 or later) and MIT, at your choice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_3.yml deleted file mode 100644 index 3bc760216b1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_4.RULE index 8f2b203765d..e123a041811 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +--- + dual GPL (3.0 or later) and MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_4.yml deleted file mode 100644 index 3bc760216b1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_5.RULE index 6c47e1715d2..42c1039a553 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +--- + dual GPL (3.0 or later) or MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_5.yml deleted file mode 100644 index 3bc760216b1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_6.RULE index 5f970ad130f..5b2749564bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl +--- + released under two licenses: `GNU GPL version 3 (or above) License` and `MIT License`_. .. _GNU GPL version 3 (or above) License: http://www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_6.yml deleted file mode 100644 index b6966190da9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_7.RULE index 137d4e45c7a..f70993ee850 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +--- + released under two licenses: `GNU GPL version 3 (or above) License` and `MIT License`_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_7.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_7.yml deleted file mode 100644 index 3bc760216b1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_8.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_8.RULE index 81f0683c84e..ee6d6f3040b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT + - https://www.gnu.org/licenses/gpl +--- + is dual-licensed under [GNU GPL version 3 (or above) License](https://www.gnu.org/licenses/gpl) and [MIT License](https://opensource.org/licenses/MIT). Personally, I prefer anyone using this to respect the GPL license and use that itself for derivative works - thus making them also Free Software. But, your diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_8.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_8.yml deleted file mode 100644 index e5494fd4bc8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT - - https://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_9.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_9.RULE index da7fc50e992..a224d93c74a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0-plus OR mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl +--- + is released under two licenses: `GNU GPL version 3 (or above) License` and `MIT License`_. .. _GNU GPL version 3 (or above) License: https://www.gnu.org/licenses/gpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_9.yml b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_9.yml deleted file mode 100644 index d1478c3951e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus OR mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_pychess.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_pychess.RULE index 229d198692f..563de1a6db1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_pychess.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_pychess.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +notes: German Pychess +--- + PyChess ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation veröffentlicht, @@ -16,4 +22,4 @@ Public License. Sie sollten ein Exemplar der GNU General Public License zusammen mit PyChess -erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, +erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_pychess.yml b/src/licensedcode/data/rules/gpl-3.0-plus_pychess.yml deleted file mode 100644 index 75b08986f88..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_pychess.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -notes: German Pychess diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_readme.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_readme.RULE index 33e351b5256..a6583941cc2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_readme.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_readme.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - copying.md + - legal/GPLv3 +--- + License ------- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_readme.yml b/src/licensedcode/data/rules/gpl-3.0-plus_readme.yml deleted file mode 100644 index 873a8313156..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_readme.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - copying.md - - legal/GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_readme2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_readme2.RULE index 1adb0fe01b0..771e4a25683 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_readme2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_readme2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + and licensed under the terms of the GNU General Public License Version 3, or (at your option) any later version ("GPL3+"). diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_readme2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_readme2.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_readme2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_tag_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_tag_1.RULE index 56475758785..9d8ac97a7ef 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_tag_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_tag_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + GPLv3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_tag_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_tag_1.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_tag_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_tag_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_tag_2.RULE index 23a134d5797..a2793395a99 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_tag_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_tag_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + release under GPLv3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_tag_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_tag_2.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_tag_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_tag_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_tag_3.RULE index 7ed75c73624..620d9e2697f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_tag_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_tag_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + updated to GPLv3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_tag_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_tag_3.yml deleted file mode 100644 index 9b990ec48d1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_tag_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_url_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_url_1.RULE index 4801d69e500..09c71887968 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-3.0-or-later +--- + https://spdx.org/licenses/gpl-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_url_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_url_1.yml deleted file mode 100644 index ae5d9804404..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-3.0-or-later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_url_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_url_2.RULE index b113f82bb69..ec3cc57f6a7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-3.0-or-later.html +--- + https://spdx.org/licenses/gpl-3.0-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_url_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_url_2.yml deleted file mode 100644 index 41cdd4532ec..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-3.0-or-later.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_1.RULE index 4021357bfd1..39cc0dff3b3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + 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, or (at your option) @@ -38,4 +44,4 @@ of the text that was the non-data portion of the version that you started with. (In other words, unless your change moves or copies text from the non-data portions to the data portions.) If your modification has such potential, you must delete any notice of this special exception -to the GPL from your modified version. +to the GPL from your modified version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_1.yml deleted file mode 100644 index 409973a21c8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_2.RULE index 770429fd734..408686b35f7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -17,4 +26,4 @@ are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of the Macro appear in them. The GNU General Public License (GPL) does govern -all other use of the material that constitutes the Autoconf Macro. +all other use of the material that constitutes the Autoconf Macro. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_2.yml deleted file mode 100644 index f6f00b266db..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_1.RULE index 337c8bb0c77..8ca15340044 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-exception-3.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - 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) @@ -39,4 +52,4 @@ the second paragraph of Section 7 of GPLv3. 2. No Weakening of Autoconf Copyleft. The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the -license of Autoconf. +license of Autoconf. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_1.yml deleted file mode 100644 index 416c4680c90..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-exception-3.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_2.RULE index e87fde850fd..d2ef6d48fdd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_2.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-exception-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://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 General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) @@ -39,4 +53,4 @@ the second paragraph of Section 7 of GPLv3. 2. No Weakening of Autoconf Copyleft. The availability of this Exception does not imply any general presumption that third-party software is unaffected by the copyleft requirements of the -license of Autoconf. +license of Autoconf. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_2.yml deleted file mode 100644 index bfd623e97e7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_2.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-exception-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_3.RULE index 238dcd7a836..0728748e589 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-exception-3.0 +is_license_reference: yes +relevance: 99 +--- + GPL (v3 or later), with Autoconf exception: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_3.yml deleted file mode 100644 index eb88ff5baf6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-exception-3.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-exception-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_1.RULE index 8a3c3a1bc28..d4fe7da058b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, 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. @@ -6,4 +14,4 @@ You should have received a copy of the GNU General Public License along with thi As a special exception, the respective Autoconf Macro’s copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of the Macro appear in them. The GNU General Public License (GPL) does govern all other use of the material that constitutes the Autoconf Macro. -This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your modified version as well. \ No newline at end of file +This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your modified version as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_1.yml deleted file mode 100644 index 3a197d83fae..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_2.RULE index efab80a6fc2..1d52bc7bb37 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-macro-exception +is_license_notice: yes +minimum_coverage: 80 +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 @@ -25,4 +33,4 @@ This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Macro Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your -modified version as well. +modified version as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_2.yml deleted file mode 100644 index 35f474c6ed5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-macro-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_3.RULE index a9106e5f37e..80afca1c8fa 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +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 @@ -17,4 +25,4 @@ are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of the Macro appear in them. The GNU General Public License (GPL) does govern -all other use of the material that constitutes the Autoconf Macro. +all other use of the material that constitutes the Autoconf Macro. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_3.yml deleted file mode 100644 index 4322fa9dea5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_4.RULE index 04dab7120ca..54f601fd7fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-macro-exception +is_license_notice: yes +minimum_coverage: 80 +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 @@ -22,4 +30,4 @@ all other use of the material that constitutes the Autoconf Macro. This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special -exception to the GPL to apply to your modified version as well. +exception to the GPL to apply to your modified version as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_4.yml deleted file mode 100644 index 35f474c6ed5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-macro-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_5.RULE index 6b38fbce2e5..ebebbd685cf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-macro-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the @@ -25,4 +34,4 @@ This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Macro Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your -modified version as well. +modified version as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_5.yml deleted file mode 100644 index a784dbc6f07..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-macro-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_6.RULE index 196ba91c983..e1168124e1e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-macro-exception +is_license_text: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_6.yml deleted file mode 100644 index 729d1427094..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-macro-exception -is_license_text: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_7.RULE index c0104066837..95567aba4b2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-macro-exception +is_license_text: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_7.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_7.yml deleted file mode 100644 index 986161952cc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-macro-exception_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-macro-exception -is_license_text: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_1.RULE index 707917dac72..b3a4b2f5e53 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -14,5 +22,4 @@ along with this file. If not, see . As a special exception to the GNU General Public License, this file may be distributed as part of a program that contains a configuration script generated by Autoconf, under -the same distribution terms as the rest of that program. - +the same distribution terms as the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_1.yml deleted file mode 100644 index b0c6adc3557..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_2.RULE index 9a923faa968..c5d08b439d1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -14,4 +22,4 @@ along with this file. If not, see . As a special exception to the GNU General Public License, this file may be distributed as part of a program that contains a configuration script generated by Autoconf, under -the same distribution terms as the rest of that program. +the same distribution terms as the rest of that program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_2.yml deleted file mode 100644 index 618e6e2df58..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_1.RULE index fd8a5ab5345..b0b0caed69b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +minimum_coverage: 80 +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 General Public License as published by # the Free Software Foundation; either version 3 of the License, or @@ -16,5 +24,4 @@ # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 -# of the GNU General Public License, version 3 ("GPLv3"). - +# of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_1.yml deleted file mode 100644 index 2cf206b9ec5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_2.RULE index 90f2fa66dd1..7cb9c054a7e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +--- + This file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_2.yml deleted file mode 100644 index 7a58843af13..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_3.RULE index 4c494679d97..1da4d1ee74b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +minimum_coverage: 80 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_3.yml deleted file mode 100644 index 2cf206b9ec5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_4.RULE index e93f4075b80..e5cf7b01f20 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +minimum_coverage: 80 +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 General Public License as published by # the Free Software Foundation; either version 3 of the License, or @@ -16,4 +24,4 @@ # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 -# of the GNU General Public License, version 3 ("GPLv3"). +# of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_4.yml deleted file mode 100644 index fe81ae427e0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_5.RULE index 5c5390d6a34..aa5fd43e789 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_5.yml deleted file mode 100644 index c9d371426e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_6.RULE index 5d75cee5c66..89954c785c4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_6.yml deleted file mode 100644 index a4da3aa28ff..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_7.RULE index f37aa0d0779..12e4615f70e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH autoconf-simple-exception +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_7.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_7.yml deleted file mode 100644 index 81ca41c4284..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_autoconf-simple-exception_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH autoconf-simple-exception -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_1.RULE index b782f445897..0dc7689d943 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_notice: yes +minimum_coverage: 99 +--- + insert GPL v3+ text here Bison Exception diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_1.yml deleted file mode 100644 index a6ac42ec37e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_2.RULE index a1903d78f3f..3871841c324 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + /* A Bison parser, made by GNU Bison 3.4.2. */ /* Bison interface for Yacc-like parsers in C diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_2.yml deleted file mode 100644 index 1f2b63604d3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_3.RULE index 600b8870084..c55364a451e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_reference: yes +relevance: 99 +--- + LICENSE INFORMATION: GPL 3.0 WITH BISON PARSER EXCEPTION \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_3.yml deleted file mode 100644 index ba0782f26da..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_4.RULE index 90e3f53a334..c4422ed4532 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_reference: yes +relevance: 99 +--- + GPL 3.0 WITH BISON PARSER EXCEPTION \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_4.yml deleted file mode 100644 index ba0782f26da..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_5.RULE index c075a96faa9..7b2107c1fc1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_5.yml deleted file mode 100644 index 67dc2999c38..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_6.RULE index 4cefe44be10..c42c8be3234 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_notice: yes +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_6.yml deleted file mode 100644 index f0e4b2c7740..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_7.RULE index 226d8682fec..c6d992d905d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_7.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + /* A Bison parser, made by GNU Bison 3.4.2. */ /* Bison interface for Yacc-like parsers in C diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_7.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_7.yml deleted file mode 100644 index bd9252c5084..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_7.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_8.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_8.RULE index ed0cb5ecf0f..97a1b1389c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -22,4 +31,4 @@ Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in -version 2.2 of Bison. */ +version 2.2 of Bison. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_8.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_8.yml deleted file mode 100644 index 26972d2eeee..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-2.2_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-3.0_1.RULE index 6986e49c599..be469f55cf2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH bison-exception-2.2 +is_license_notice: yes +minimum_coverage: 80 +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 @@ -22,4 +30,4 @@ Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in -version 2.2 of Bison. */ +version 2.2 of Bison. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-3.0_1.yml deleted file mode 100644 index 3a9853c4afa..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_bison-exception-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH bison-exception-2.2 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_1.RULE index 8498b8502f0..9d2292b1818 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * Fabric3 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_1.yml deleted file mode 100644 index 437ee6acd76..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_2.RULE index 058feae3471..3043053d94f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_2.yml deleted file mode 100644 index 437ee6acd76..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_3.RULE index 2fbb52d15cb..c2e0d62a234 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +minimum_coverage: 99 +--- + insert GPL v3+ license text here Class Path Exception diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_3.yml deleted file mode 100644 index 9d3d1d0fad4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_4.RULE index 3d980124e63..9ad3008975b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_4.yml deleted file mode 100644 index 4c30af6d6e8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_5.RULE index fbe1b79b1d2..80c779d25f2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * Fabric3 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_5.yml deleted file mode 100644 index 4c30af6d6e8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_classpath-exception-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_1.RULE index 206adb54f7f..110d8722e15 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH cygwin-exception-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/ +--- + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_1.yml deleted file mode 100644 index 919859ea9e5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH cygwin-exception-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_and_other-permissive_1.RULE index 5ec445b470a..5ec585d21c5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH cygwin-exception-3.0 AND other-permissive +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/docs/osd/ +--- + Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the terms of the GNU General Public License as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_and_other-permissive_1.yml deleted file mode 100644 index a47b9f53091..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_cygwin-exception-3.0_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH cygwin-exception-3.0 AND other-permissive -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/docs/osd/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_1.RULE index efd9c4d5d71..4554c846764 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ +--- + It 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 font 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 font. If not, see diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_1.yml deleted file mode 100644 index c553f11784f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_10.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_10.RULE index 5604c4293ad..0108ab2a31f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 P diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_10.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_10.yml deleted file mode 100644 index 35b6005be92..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_11.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_11.RULE index 650815e7d30..a823ab5e196 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_11.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.gnu.org/copyleft/gpl.html +--- + This computer font is part of GNU FreeFont. It 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 font 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 P diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_11.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_11.yml deleted file mode 100644 index 34dfc632319..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_12.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_12.RULE index 632c3715998..2e97c11ef66 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_12.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 P diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_12.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_12.yml deleted file mode 100644 index db9f5d21035..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_13.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_13.RULE index f8f69d764db..e02138190aa 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_13.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_13.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_13.yml deleted file mode 100644 index db9f5d21035..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_14.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_14.RULE index c2d26be435d..e8eec9a5f9b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_14.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_14.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ + - https://savannah.gnu.org/projects/freefont/ +--- + https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_14.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_14.yml deleted file mode 100644 index 8cbc456f7c6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ - - https://savannah.gnu.org/projects/freefont/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_15.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_15.RULE index e8d075d46bc..bfb66bfc2d6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_15.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_15.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://savannah.gnu.org/projects/freefont/ + - https://www.gnu.org/copyleft/gpl.html +--- + https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_15.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_15.yml deleted file mode 100644 index 74fbc383ea9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_15.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://savannah.gnu.org/projects/freefont/ - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_16.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_16.RULE index 9d2cbc5926f..42f52a8ee9b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_16.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_16.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 P diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_16.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_16.yml deleted file mode 100644 index 35b6005be92..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_17.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_17.RULE index 95ce6803baa..4062b2aa561 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_17.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.gnu.org/copyleft/gpl.html +--- + This computer font is part of GNU FreeFont. It 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 font 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 P diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_17.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_17.yml deleted file mode 100644 index 34dfc632319..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_18.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_18.RULE index a22eb7e7f94..f907d374082 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_18.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_18.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_18.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_18.yml deleted file mode 100644 index 35b6005be92..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_19.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_19.RULE index 2532ee1840a..5dd985fe230 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_19.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_19.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.gnu.org/copyleft/gpl.html +--- + This computer font is part of GNU FreeFont. It 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 font 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_19.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_19.yml deleted file mode 100644 index 34dfc632319..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_2.RULE index b99cc73c5f1..5c88824144e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + This font 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. @@ -11,4 +18,4 @@ your own computer, but if you redistribute modified versions to anyone at all, y This font 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. -As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. +As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_2.yml deleted file mode 100644 index ff369bebc03..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_20.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_20.RULE index 07df76a8d1f..be39fd226d7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_20.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_20.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_20.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_20.yml deleted file mode 100644 index 35b6005be92..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_21.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_21.RULE index 110fa8ad012..932ed4a62cf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_21.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://savannah.gnu.org/projects/freefont/ +--- + https://savannah.gnu.org/projects/freefont/ https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_21.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_21.yml deleted file mode 100644 index dd9f17ff73e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://savannah.gnu.org/projects/freefont/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_22.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_22.RULE index 3095b7d8102..f9cae6b07a2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_22.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_22.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +notes: https://github.com/opensourcedesign/fonts/tree/96da5c8b6cdc1b91d2ee58efef3f0402f5a47217/gnu-freefont_freemono +--- + Licensing Free UCS scalable fonts is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_22.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_22.yml deleted file mode 100644 index 56ad2c29fe0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -notes: https://github.com/opensourcedesign/fonts/tree/96da5c8b6cdc1b91d2ee58efef3f0402f5a47217/gnu-freefont_freemono diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_23.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_23.RULE index 03dc59e5067..62ee1d1da92 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_23.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +notes: https://github.com/opensourcedesign/fonts/tree/96da5c8b6cdc1b91d2ee58efef3f0402f5a47217/gnu-freefont_freemono +--- + fonts 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_23.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_23.yml deleted file mode 100644 index 56ad2c29fe0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -notes: https://github.com/opensourcedesign/fonts/tree/96da5c8b6cdc1b91d2ee58efef3f0402f5a47217/gnu-freefont_freemono diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_24.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_24.RULE index 1cc1b35cd89..4c7987eae3e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_24.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_24.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://savannah.gnu.org/projects/freefont/ + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_24.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_24.yml deleted file mode 100644 index 5336ce9c36d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_24.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://savannah.gnu.org/projects/freefont/ - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_25.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_25.RULE index 00672e61fd2..a4227846e67 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_25.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_25.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 P diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_25.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_25.yml deleted file mode 100644 index 2ec27946fde..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_26.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_26.RULE index 3abd4d672e2..2878b0e2c29 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_26.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_26.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://savannah.gnu.org/projects/freefont/ + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_26.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_26.yml deleted file mode 100644 index 5336ce9c36d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_26.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://savannah.gnu.org/projects/freefont/ - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_27.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_27.RULE index 09108f569af..ba04e016fb2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_27.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_27.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_27.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_27.yml deleted file mode 100644 index 2ec27946fde..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_28.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_28.RULE index b36f02e2189..c1f776c1789 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_28.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_28.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 font. If not, see diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_28.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_28.yml deleted file mode 100644 index 2ec27946fde..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_29.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_29.RULE index 30a21bc3792..1f273b3c652 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_29.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_29.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_29.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_29.yml deleted file mode 100644 index 2ec27946fde..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_3.RULE index a80a3f74a00..7293a34f673 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +--- + 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. The fonts are distributed 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. @@ -11,4 +17,4 @@ Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception -statement from your version. +statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_3.yml deleted file mode 100644 index 7fdbca3cab6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_30.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_30.RULE index a31c795a956..14feb31ee2c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_30.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_30.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://savannah.gnu.org/projects/freefont/ + - https://www.gnu.org/licenses/ +--- + https://savannah.gnu.org/projects/freefont/ https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_30.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_30.yml deleted file mode 100644 index fe0f6571d78..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://savannah.gnu.org/projects/freefont/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_31.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_31.RULE index 3202f086fea..4484709fef3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_31.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_31.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://savannah.gnu.org/projects/freefont/ + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_31.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_31.yml deleted file mode 100644 index 5336ce9c36d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_31.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://savannah.gnu.org/projects/freefont/ - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_33.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_33.RULE index 2304911059d..af8619f60bf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_33.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_33.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 P diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_33.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_33.yml deleted file mode 100644 index 2ec27946fde..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_34.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_34.RULE index da116e98bad..294be908d88 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_34.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_34.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_34.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_34.yml deleted file mode 100644 index 8f01e761a15..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_35.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_35.RULE index 433e5190d57..6d3c509b803 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_35.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_35.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + This font 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. @@ -11,4 +19,4 @@ your own computer, but if you redistribute modified versions to anyone at all, y This font 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. -As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. +As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_35.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_35.yml deleted file mode 100644 index 16e390f7189..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_38.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_38.RULE index 3b343e1a5fe..9edbe74f268 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_38.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_38.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 P diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_38.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_38.yml deleted file mode 100644 index 8f01e761a15..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_4.RULE index c51980f5c55..deb7e5a0071 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 font. If not, see diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_4.yml deleted file mode 100644 index 8c6c8dcb970..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_5.RULE index 35382960250..10fd5712013 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ +--- + This computer font is part of GNU FreeFont. It 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 font 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 font. If not, see diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_5.yml deleted file mode 100644 index 35b6005be92..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_6.RULE index 8069c98e643..6f8aa19153b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_6.RULE @@ -1,6 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.gnu.org/copyleft/gpl.html +--- + This computer font is part of GNU FreeFont. It 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 font 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 font. If not, see http://www.gnu.org/licenses/ As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. -https://www.gnu.org/copyleft/gpl.html +https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_6.yml deleted file mode 100644 index 34dfc632319..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_7.RULE index ba07f1ca418..eb436bcb524 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ + - https://savannah.gnu.org/projects/freefont/ +--- + https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_7.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_7.yml deleted file mode 100644 index 8cbc456f7c6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ - - https://savannah.gnu.org/projects/freefont/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_8.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_8.RULE index b613934d24a..c105422de1c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://savannah.gnu.org/projects/freefont/ +--- + https://savannah.gnu.org/projects/freefont/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_8.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_8.yml deleted file mode 100644 index 0375cef0ce4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://savannah.gnu.org/projects/freefont/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_9.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_9.RULE index e6688bf8700..edb3d7a709f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_9.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/ + - https://savannah.gnu.org/projects/freefont/ +--- + https://savannah.gnu.org/projects/freefont/ This computer font is part of GNU FreeFont. It 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. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_9.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_9.yml deleted file mode 100644 index 8cbc456f7c6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_font-exception-gpl_9.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/ - - https://savannah.gnu.org/projects/freefont/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_1.RULE index ed95def84dc..a263e17261e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://www.gnu.org/licenses/gcc-exception-3.1.html +--- + http://www.gnu.org/licenses/gcc-exception-3.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_1.yml deleted file mode 100644 index 1d037ed2886..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://www.gnu.org/licenses/gcc-exception-3.1.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_10.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_10.RULE index b773d0a4112..44520258636 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_10.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +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 General Public License as published by the Free Software Foundation; either version 3, or (at your option) any @@ -15,4 +25,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_10.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_10.yml deleted file mode 100644 index b82a2f5d85d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_11.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_11.RULE index 04b7c9ebe25..3c59cbed671 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_11.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU MP Library 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 @@ -15,4 +25,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_11.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_11.yml deleted file mode 100644 index b82a2f5d85d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_12.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_12.RULE index b15d1d0dad2..a60aef57641 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_12.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_12.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) @@ -15,4 +25,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_12.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_12.yml deleted file mode 100644 index b82a2f5d85d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_13.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_13.RULE index b446f417d9c..ec7e5217686 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_13.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_13.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 90 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +notes: the exception is not super clear +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) any later @@ -11,4 +23,4 @@ You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . */ + . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_13.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_13.yml deleted file mode 100644 index 9f46a3dbdd9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_13.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 90 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -notes: the exception is not super clear -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_14.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_14.RULE index e16246f53bd..8e79b558460 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_14.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_14.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) @@ -14,4 +24,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_14.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_14.yml deleted file mode 100644 index b82a2f5d85d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_15.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_15.RULE index 627047b2851..80a277ae5d7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_15.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_15.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This software is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_15.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_15.yml deleted file mode 100644 index 1bd78696271..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_15.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_16.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_16.RULE index 91440eda2d0..474b156cb77 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_16.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_16.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_16.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_16.yml deleted file mode 100644 index 1bd78696271..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_16.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_17.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_17.RULE index 78a8977a743..5a58c6c5287 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_17.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_17.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_17.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_17.yml deleted file mode 100644 index 1bd78696271..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_17.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_18.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_18.RULE index f55d6a0d165..dc6292125f2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_18.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +minimum_coverage: 90 +--- + The following runtime libraries are licensed under the terms of the GNU General Public License (v3 or later) with version 3.1 of the GCC -Runtime Library Exception (included in this file): +Runtime Library Exception (included in this file): \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_18.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_18.yml deleted file mode 100644 index 6990c364edf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_19.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_19.RULE index 6a549bc8709..d6c65d9a9e8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_19.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_19.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + covered by GPL3+ with the GCC Runtime Library Exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_19.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_19.yml deleted file mode 100644 index 542782a2e80..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_2.RULE index 424a1bb5203..8c4a5c90b4a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + GCC RUNTIME LIBRARY EXCEPTION diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_2.yml deleted file mode 100644 index 9154691c810..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.RULE index fef68bcad64..a0a290fc1e5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +--- + GNU Modula-2 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.yml deleted file mode 100644 index e4d227449dd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_21.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_21.RULE index 36e5250ea30..2fed70ed143 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_21.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + GCC 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, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_21.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_21.yml deleted file mode 100644 index 2d0d6ed0424..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_22.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_22.RULE index 57612caf1d5..6f5a85c8dd3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_22.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_22.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +--- + licensed under the terms of the GNU General Public License (v3 or later) with version 3.1 of the GCC Runtime Library Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_22.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_22.yml deleted file mode 100644 index e4d227449dd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_22.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_23.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_23.RULE index 5e2df875c4d..082faf31af0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_23.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_23.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) @@ -14,4 +25,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_23.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_23.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_23.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_24.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_24.RULE index f9fb935cce5..c1fd1e84ba2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_24.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_24.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://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 General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_24.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_24.yml deleted file mode 100644 index 85f9f1e8e7c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_24.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_25.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_25.RULE index 440773b8c03..1709387dd05 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_25.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_25.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) any later @@ -15,4 +26,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_25.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_25.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_25.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_26.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_26.RULE index 2007bbef1f9..f4c1b97fc1d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_26.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_26.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +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 General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) @@ -15,4 +26,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_26.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_26.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_26.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_27.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_27.RULE index 183df216c3b..0092d488cce 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_27.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_27.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 90 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +notes: the exception is not super clear +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) any later @@ -11,4 +23,4 @@ You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . */ + . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_27.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_27.yml deleted file mode 100644 index c29a2b8a8f1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_27.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 90 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -notes: the exception is not super clear -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_28.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_28.RULE index 6161f89380d..e0748b771d9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_28.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_28.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Soft- ware Foundation; either version 3, or (at your option) any later ver- @@ -12,4 +23,4 @@ You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . \ No newline at end of file + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_28.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_28.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_28.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_29.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_29.RULE index 7ccdd16a87e..105da278e61 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_29.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_29.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GNAT is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. @@ -11,4 +23,4 @@ You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . \ No newline at end of file + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_29.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_29.yml deleted file mode 100644 index b030c67c317..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_29.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_3.RULE index df8e126202d..b7c1275137f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_3.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses/gcc-exception.html +--- + GCC RUNTIME LIBRARY EXCEPTION Version 3.1, 31 March 2009 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_3.yml deleted file mode 100644 index 2ed07991450..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_3.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/gcc-exception.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_30.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_30.RULE index 97e7c6d08ba..d888114cd2f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_30.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_30.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -16,5 +28,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. - +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_30.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_30.yml deleted file mode 100644 index b030c67c317..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_30.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_31.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_31.RULE index eda86b59179..65ecba5c2e3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_31.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_31.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/gcc-exception.html +--- + GCC RUNTIME LIBRARY EXCEPTION Version 3.1, 31 March 2009 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_31.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_31.yml deleted file mode 100644 index 60cad5a5997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_31.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/gcc-exception.html diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_32.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_32.RULE index 19048a96a69..01f9a3a81a3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_32.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_32.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Under {{Section 7 of GPL version 3}}, you are granted additional permissions described in the {{GCC Runtime Library Exception, version @@ -6,5 +18,4 @@ permissions described in the {{GCC Runtime Library Exception, version You should have received a copy of the {{GNU General Public License}} and a copy of the {{GCC Runtime Library Exception}} along with this program; see the files {{COPYING3 and COPYING.RUNTIME}} respectively. If not, see -. - +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_32.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_32.yml deleted file mode 100644 index b08f6e090e5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_32.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_33.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_33.RULE index 3e972723dc9..cfad24c741e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_33.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_33.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU MP Library 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 @@ -15,4 +26,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_33.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_33.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_33.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_34.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_34.RULE index 1b569711d29..7c21ced525b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_34.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_34.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +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 General Public License as published by the Free Software Foundation; either version 3, or (at your option) any @@ -15,4 +26,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_34.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_34.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_34.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_35.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_35.RULE index 77229081419..d565e5124bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_35.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_35.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + -- you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_35.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_35.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_35.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_36.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_36.RULE index 376eeca14a0..b5cb4bee027 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_36.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_36.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -15,4 +25,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License along with this library; see the file COPYING3. If not see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_36.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_36.yml deleted file mode 100644 index 53ce94382be..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_36.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_37.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_37.RULE index eeb94339b00..4e20e2d2674 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_37.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_37.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + -- you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Software -- -- Foundation; either version 3, or (at your option) any later version. -- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_37.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_37.yml deleted file mode 100644 index b030c67c317..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_37.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_38.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_38.RULE index e2b13b5674e..ab56322bd1e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_38.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_38.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_38.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_38.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_38.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_39.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_39.RULE index 36671f0f41c..478dcf336d5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_39.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_39.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_39.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_39.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_39.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_4.RULE index c9f00bc580a..ee5fa397784 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + -- you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Software -- -- Foundation; either version 3, or (at your option) any later version. -- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_4.yml deleted file mode 100644 index 64c2308d438..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_40.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_40.RULE index 2c256557d60..e4aa991a598 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_40.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_40.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This software is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_40.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_40.yml deleted file mode 100644 index 8cde90cb023..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_40.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_41.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_41.RULE index 5eedcd5244e..a9ae75fb4b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_41.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_41.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + This has a mix of licenses, most as GPL-3+ plus GCC Runtime Library Exception, version 3.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_41.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_41.yml deleted file mode 100644 index 542782a2e80..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_5.RULE index ca6e0c75bcd..3c419f11121 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Under Section 7 of GPL version 3, you are granted additional permissions described in the GCC Runtime Library Exception, version @@ -6,5 +17,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. - +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_5.yml deleted file mode 100644 index 756a0a3497b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_6.RULE index 0c33c75a279..571a60f0352 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_6.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GNAT is free software; you can redistribute it and/or modify it under terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. @@ -11,4 +22,4 @@ You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see - . \ No newline at end of file + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_6.yml deleted file mode 100644 index 64c2308d438..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_7.RULE index a152249aed0..da15139fab4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_7.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -16,5 +27,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. - +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_7.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_7.yml deleted file mode 100644 index 64c2308d438..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_8.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_8.RULE index 5b622cd5747..736149be28e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -15,4 +24,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License along with this library; see the file COPYING3. If not see -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_8.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_8.yml deleted file mode 100644 index f9ec9dc5640..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_9.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_9.RULE index 5f5b85452d8..bc053684979 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_9.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) any later @@ -15,4 +25,4 @@ permissions described in the GCC Runtime Library Exception, version You should have received a copy of the GNU General Public License and a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_9.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_9.yml deleted file mode 100644 index b82a2f5d85d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_9.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_gpl-3.0-plus_with_linking-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_gpl-3.0-plus_with_linking-exception-2.0-plus_1.RULE index a45c63a5ea0..75c266801c9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_gpl-3.0-plus_with_linking-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_gpl-3.0-plus_with_linking-exception-2.0-plus_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 AND gpl-3.0-plus WITH linking-exception-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) any later @@ -22,4 +34,4 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why - the executable file might be covered by the GNU General Public License. */ + the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_gpl-3.0-plus_with_linking-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_gpl-3.0-plus_with_linking-exception-2.0-plus_1.yml deleted file mode 100644 index 92f32009302..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_gpl-3.0-plus_with_linking-exception-2.0-plus_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 AND gpl-3.0-plus WITH linking-exception-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_linking-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_linking-exception-2.0-plus_1.RULE index 666e14250f5..929c971fdf3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_linking-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_linking-exception-2.0-plus_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-exception-3.1 AND gpl-3.0-plus WITH linking-exception-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING3 + - COPYING.RUNTIME +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GCC 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, or (at your option) any later @@ -22,4 +33,4 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why - the executable file might be covered by the GNU General Public License. */ + the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_linking-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_linking-exception-2.0-plus_1.yml deleted file mode 100644 index 298a443e185..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_and_linking-exception-2.0-plus_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-exception-3.1 AND gpl-3.0-plus WITH linking-exception-2.0-plus -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING3 - - COPYING.RUNTIME -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_1.RULE index 57b2d8a5f8c..503eee02cbe 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING3 +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 General Public License as published by the Free Software Foundation; either version 3, or (at your option) any @@ -19,4 +28,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING3. If not see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_1.yml deleted file mode 100644 index 98cbc21006a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_2.RULE index 5837940a140..d7caee22be0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - COPYING3 +--- + This file 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, or (at your option) any @@ -20,4 +28,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301, USA. +Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_2.yml deleted file mode 100644 index 6ae6307c802..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - COPYING3 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_3.RULE index 2fb7724b430..f914f401b96 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +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 General Public License as published by the Free Software Foundation; either version 3, or (at your option) any @@ -19,4 +29,4 @@ General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING3. If not see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_3.yml deleted file mode 100644 index 93caaf25a16..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-linking-exception-2.0_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_1.RULE index 8828316a31e..e92fbbb483e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH gpl-generic-additional-terms +is_license_notice: yes +notes: Seen in older https://github.com/ca4ti/chiaki/ +--- + Additional permission under {{GNU GPL version 3}} section 7 If you modify this program, or any covered work, by linking or diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_1.yml deleted file mode 100644 index 76f4d524f74..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH gpl-generic-additional-terms -is_license_notice: yes -notes: Seen in older https://github.com/ca4ti/chiaki/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_and_other-copyleft_1.RULE index 2c213c1b85e..74b1ee7d5bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_and_other-copyleft_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH gpl-generic-additional-terms AND other-copyleft +is_license_notice: yes +relevance: 100 +--- + License The code is released under the GPLv3 or later, except for ThreadPool.h, cl2.hpp, half.hpp and the eigen and clblast_level3 subdirs, which have specific licenses diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_and_other-copyleft_1.yml deleted file mode 100644 index 0313738356c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gpl-generic-additional-terms_and_other-copyleft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH gpl-generic-additional-terms AND other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_1.RULE index 5efbe7fb727..539fe35198f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -17,4 +25,4 @@ MERCHANTABILITY or FITNES 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 . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_1.yml deleted file mode 100644 index 92a1908fe32..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_2.RULE index 254aa020afa..c815f3d3e65 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -14,4 +20,4 @@ for the rest of that program. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_2.yml deleted file mode 100644 index 445caea8c05..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_3.RULE index 007418a5554..ff0d12ad221 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -17,4 +26,4 @@ MERCHANTABILITY or FITNES 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 . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_3.yml deleted file mode 100644 index e19419c1088..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_libtool-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_1.RULE index c8763358cf9..971666e1364 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH linking-exception-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +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 @@ -16,4 +24,4 @@ some of which are compiled with GCC, to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why -the executable file might be covered by the GNU General Public License. */ +the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_1.yml deleted file mode 100644 index cbc6884a2ae..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH linking-exception-2.0-plus -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_2.RULE index 7b6a7e42629..b78230ba0d3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH linking-exception-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -16,4 +25,4 @@ some of which are compiled with GCC, to produce an executable, this library does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why -the executable file might be covered by the GNU General Public License. */ +the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_2.yml deleted file mode 100644 index 67b2ad46c9a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_linking-exception-2.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH linking-exception-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-2.0_or_gpl-2.0-plus_with_and_others_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-2.0_or_gpl-2.0-plus_with_and_others_1.RULE index 6dfb44c9e7f..215361ce65b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-2.0_or_gpl-2.0-plus_with_and_others_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-2.0_or_gpl-2.0-plus_with_and_others_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0-plus WITH openssl-exception-gpl-2.0 OR gpl-2.0-plus WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING + - COPYING-GPLv2 +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, version 3 or above of the License. You can also diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-2.0_or_gpl-2.0-plus_with_and_others_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-2.0_or_gpl-2.0-plus_with_and_others_1.yml deleted file mode 100644 index 556e63c53ee..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-2.0_or_gpl-2.0-plus_with_and_others_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0-plus WITH openssl-exception-gpl-2.0 OR gpl-2.0-plus WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING - - COPYING-GPLv2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-3.0-plus_1.RULE index 0c1bcd34406..b5fa0834685 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-3.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) @@ -19,4 +27,4 @@ of the file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source - files in the program, then also delete it here. + files in the program, then also delete it here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-3.0-plus_1.yml deleted file mode 100644 index 4ebe5637963..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_openssl-exception-gpl-3.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_1.RULE index 03d3315363f..58c699a271c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_1.RULE @@ -1,7 +1,16 @@ +--- +license_expression: gpl-3.0-plus WITH other-copyleft +is_license_notice: yes +relevance: 100 +notes: https://lab.nexedi.com/nexedi/wendelin.core/blob/master/COPYING +ignorable_urls: + - https://www.nexedi.com/licensing +--- + is free software licensed under GPLv3+ with additional permission to link, combine and redistribute it with other free or open source software. Please see https://www.nexedi.com/licensing for rationale and options. -The exact licensing terms follow: +The exact licensing terms follow: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_1.yml deleted file mode 100644 index 7a4450c6052..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH other-copyleft -is_license_notice: yes -relevance: 100 -notes: https://lab.nexedi.com/nexedi/wendelin.core/blob/master/COPYING -ignorable_urls: - - https://www.nexedi.com/licensing diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_2.RULE index 82118db411d..6e5d75a21c2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0-plus WITH other-copyleft +is_license_notice: yes +relevance: 99 +--- + licensed under GPLv3+ with additional permission to link, combine and redistribute it with other free or open source software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_2.yml deleted file mode 100644 index cd7e0839c65..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_other-copyleft_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH other-copyleft -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_1.RULE index 1e0048934f1..104ce3dae22 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH tex-exception +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This texinfo.tex file 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 @@ -14,4 +22,4 @@ along with this program. If not, see . As a special exception, when this file is read by TeX when processing a Texinfo source document, you may use the result without restriction. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). +of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_1.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_1.yml deleted file mode 100644 index 3e18b14ca4e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH tex-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_2.RULE index b48f26ae894..8a57213b341 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH tex-exception +is_license_notice: yes +minimum_coverage: 80 +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 General Public License as published by the Free Software Foundation, either version 3 of the @@ -14,4 +22,4 @@ along with this program. If not, see . As a special exception, when this file is read by TeX when processing a Texinfo source document, you may use the result without restriction. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). +of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_2.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_2.yml deleted file mode 100644 index 3e18b14ca4e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH tex-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_3.RULE index f5e99dd0155..bf10021a99f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH tex-exception +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This texinfo.tex file 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 @@ -14,4 +22,4 @@ along with this program. If not, see . As a special exception, when this file is read by TeX when processing a Texinfo source document, you may use the result without restriction. This Exception is an additional permission under section 7 -of the GNU General Public License, version 3 ("GPLv3"). +of the GNU General Public License, version 3 ("GPLv3"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_3.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_3.yml deleted file mode 100644 index 42b7ed83815..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH tex-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_4.RULE index 4faf2535ab8..00d84e5b241 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0-plus WITH tex-exception +is_license_notice: yes +minimum_coverage: 60 +--- + This package is published under the GNU General Public License, version 3 or later with the following exception for LaTeX packages (based on the exception used in Texinfo's texinfo.tex file): diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_4.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_4.yml deleted file mode 100644 index 840a12932b5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus WITH tex-exception -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_5.RULE index 124c80b4ba1..0d712f30503 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0-plus WITH tex-exception +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + % This texinfo.tex file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_5.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_5.yml deleted file mode 100644 index 42b7ed83815..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0-plus WITH tex-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_6.RULE index 21e3adc9bde..09fcde83f2e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0-plus WITH tex-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + % This texinfo.tex file 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 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_6.yml b/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_6.yml deleted file mode 100644 index 7eae0215e8e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_tex-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus WITH tex-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0.RULE b/src/licensedcode/data/rules/gpl-3.0.RULE index 17a214708fb..79e65ce2939 100644 --- a/src/licensedcode/data/rules/gpl-3.0.RULE +++ b/src/licensedcode/data/rules/gpl-3.0.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0.SPDX.RULE b/src/licensedcode/data/rules/gpl-3.0.SPDX.RULE index 50054946afc..f72d298ce3d 100644 --- a/src/licensedcode/data/rules/gpl-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/gpl-3.0.SPDX.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses/ + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright © 2007 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-3.0.SPDX.yml b/src/licensedcode/data/rules/gpl-3.0.SPDX.yml deleted file mode 100644 index e3e6ac38ed2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0.SPDX.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0.yml b/src/licensedcode/data/rules/gpl-3.0.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_0.RULE b/src/licensedcode/data/rules/gpl-3.0_0.RULE index bae2d773a2c..01b2ccedbc0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_0.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_0.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + package released under GPL 3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_0.yml b/src/licensedcode/data/rules/gpl-3.0_0.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_1.RULE index 0d3f33d5363..820e02fa017 100644 --- a/src/licensedcode/data/rules/gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_1.RULE @@ -1,5 +1,13 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + License ======= GNU General Public License v3.0 -See [COPYING](COPYING) to see the full text. +See [COPYING](COPYING) to see the full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_1.yml deleted file mode 100644 index 18cdd8dc615..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0_10.RULE b/src/licensedcode/data/rules/gpl-3.0_10.RULE index f00dcc05426..8f61cf1fcf4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The Debian packaging is: Copyright -and is licensed under the GPL version 3. +and is licensed under the GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_10.yml b/src/licensedcode/data/rules/gpl-3.0_10.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_100.RULE b/src/licensedcode/data/rules/gpl-3.0_100.RULE index 928460e490f..61d66f2ad73 100644 --- a/src/licensedcode/data/rules/gpl-3.0_100.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_100.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU General Public * License as published by the Free Software Foundation. @@ -8,4 +15,4 @@ * 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 + * along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_100.yml b/src/licensedcode/data/rules/gpl-3.0_100.yml deleted file mode 100644 index b591a489aa8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_100.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_101.RULE b/src/licensedcode/data/rules/gpl-3.0_101.RULE index 596b05b8ef4..f1305c56f3c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_101.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_101.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +notes: this is a V3 not a V3-plus +--- + This package 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. @@ -9,4 +15,4 @@ You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, - Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_101.yml b/src/licensedcode/data/rules/gpl-3.0_101.yml deleted file mode 100644 index fc80718e07a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -notes: this is a V3 not a V3-plus diff --git a/src/licensedcode/data/rules/gpl-3.0_102.RULE b/src/licensedcode/data/rules/gpl-3.0_102.RULE index f9e3d14ed86..f60fc30836b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_102.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_102.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is released under the terms of the GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_102.yml b/src/licensedcode/data/rules/gpl-3.0_102.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_103.RULE b/src/licensedcode/data/rules/gpl-3.0_103.RULE index be205c4be8d..fe8f2627834 100644 --- a/src/licensedcode/data/rules/gpl-3.0_103.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_103.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the terms of the GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_103.yml b/src/licensedcode/data/rules/gpl-3.0_103.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_104.RULE b/src/licensedcode/data/rules/gpl-3.0_104.RULE index addf5ee9559..3b74e7c5fa4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_104.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_104.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is distributed under the GPL v3.0 license which means it can be used freely by anyone! \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_104.yml b/src/licensedcode/data/rules/gpl-3.0_104.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_105.RULE b/src/licensedcode/data/rules/gpl-3.0_105.RULE index f57076576fd..565a2b15793 100644 --- a/src/licensedcode/data/rules/gpl-3.0_105.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_105.RULE @@ -1 +1,7 @@ -Click here to read the full license text of the GPL version 3.0. +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +Click here to read the full license text of the GPL version 3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_105.yml b/src/licensedcode/data/rules/gpl-3.0_105.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_106.RULE b/src/licensedcode/data/rules/gpl-3.0_106.RULE index fece7b23cce..99c5cc8041b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_106.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_106.RULE @@ -1 +1,7 @@ -GPL version 3.0. +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +GPL version 3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_106.yml b/src/licensedcode/data/rules/gpl-3.0_106.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_107.RULE b/src/licensedcode/data/rules/gpl-3.0_107.RULE index 6438ca17f7c..cfc0caf4a5b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_107.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_107.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This program is distributed under GPL Version 3.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_107.yml b/src/licensedcode/data/rules/gpl-3.0_107.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_108.RULE b/src/licensedcode/data/rules/gpl-3.0_108.RULE index def93dcdf89..937f7346934 100644 --- a/src/licensedcode/data/rules/gpl-3.0_108.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_108.RULE @@ -1 +1,9 @@ -// Licensed under GPLv3, full text at http://www.gnu.org/licenses/gpl-3.0.txt +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + +// Licensed under GPLv3, full text at http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_108.yml b/src/licensedcode/data/rules/gpl-3.0_108.yml deleted file mode 100644 index 9e43c6059ef..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_109.RULE b/src/licensedcode/data/rules/gpl-3.0_109.RULE index bf0547740fa..e93a3956860 100644 --- a/src/licensedcode/data/rules/gpl-3.0_109.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_109.RULE @@ -1,6 +1,15 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSES.txt +ignorable_urls: + - http://www.fsf.org/licensing/licenses/gpl-3.0.html +--- + is licensed under the GNU GENERAL PUBLIC LICENSE Version 3 (http://www.fsf.org/licensing/licenses/gpl-3.0.html) ("GPL") to all third parties and that license, as required by the GPL, is -included in the LICENSE.txt file. - \ No newline at end of file +included in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_109.yml b/src/licensedcode/data/rules/gpl-3.0_109.yml deleted file mode 100644 index 078fd05fec8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_109.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSES.txt -ignorable_urls: - - http://www.fsf.org/licensing/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_11.RULE b/src/licensedcode/data/rules/gpl-3.0_11.RULE index a30c81db176..0a2e6d5b72d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/gpl-3.0.html +--- + http://opensource.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_11.yml b/src/licensedcode/data/rules/gpl-3.0_11.yml deleted file mode 100644 index 9eb51e9a9e4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_110.RULE b/src/licensedcode/data/rules/gpl-3.0_110.RULE index e73c15d9f27..fc7e6d0fe6c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_110.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_110.RULE @@ -1 +1,9 @@ -http://www.fsf.org/licensing/licenses/gpl-3.0.html +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/gpl-3.0.html +--- + +http://www.fsf.org/licensing/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_110.yml b/src/licensedcode/data/rules/gpl-3.0_110.yml deleted file mode 100644 index 1cc31664de3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_111.RULE b/src/licensedcode/data/rules/gpl-3.0_111.RULE index fdabb53d9f9..dd3131a36dd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_111.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_111.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + IS_RIGHT This program is distributed under GPL Version 3.0 in the hope that diff --git a/src/licensedcode/data/rules/gpl-3.0_111.yml b/src/licensedcode/data/rules/gpl-3.0_111.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_112.RULE b/src/licensedcode/data/rules/gpl-3.0_112.RULE index c6e574481b1..01a3f8605d2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_112.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_112.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License (GPL) Version 3, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_112.yml b/src/licensedcode/data/rules/gpl-3.0_112.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_113.RULE b/src/licensedcode/data/rules/gpl-3.0_113.RULE index c68ee04c753..73eec74b404 100644 --- a/src/licensedcode/data/rules/gpl-3.0_113.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_113.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + source was placed under the GNU General Public License version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_113.yml b/src/licensedcode/data/rules/gpl-3.0_113.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_114.RULE b/src/licensedcode/data/rules/gpl-3.0_114.RULE index 01131ba6b8c..581922402ad 100644 --- a/src/licensedcode/data/rules/gpl-3.0_114.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_114.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under GPL 3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_114.yml b/src/licensedcode/data/rules/gpl-3.0_114.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_115.RULE b/src/licensedcode/data/rules/gpl-3.0_115.RULE index 54b12b89525..9ae473eb9b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_115.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_115.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 95 +referenced_filenames: + - LICENSES/GPL-3 +--- + License-Filename: LICENSES/GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_115.yml b/src/licensedcode/data/rules/gpl-3.0_115.yml deleted file mode 100644 index 725a13cef5b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 95 -referenced_filenames: - - LICENSES/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_116.RULE b/src/licensedcode/data/rules/gpl-3.0_116.RULE index 33a1d2ab27c..5378a869a7d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_116.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_116.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This file belongs to a GNU package released under GPL 3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_116.yml b/src/licensedcode/data/rules/gpl-3.0_116.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_117.RULE b/src/licensedcode/data/rules/gpl-3.0_117.RULE index 037ed199029..52bdc161b8a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_117.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_117.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensing: Firmware: Unless otherwise stated are in GPL3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_117.yml b/src/licensedcode/data/rules/gpl-3.0_117.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_118.RULE b/src/licensedcode/data/rules/gpl-3.0_118.RULE index 4115bd2d744..b0466c2bc30 100644 --- a/src/licensedcode/data/rules/gpl-3.0_118.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_118.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License -This project is published under GPLv3. \ No newline at end of file +This project is published under GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_118.yml b/src/licensedcode/data/rules/gpl-3.0_118.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_119.RULE b/src/licensedcode/data/rules/gpl-3.0_119.RULE index 8e49f17177e..b1bfd486b07 100644 --- a/src/licensedcode/data/rules/gpl-3.0_119.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_119.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is free software; you can redistribute it and/or modify it under the terms of version 3 of the GNU General Public @@ -10,4 +16,4 @@ You should have received a copy of the GNU General Public License along with ; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + 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_119.yml b/src/licensedcode/data/rules/gpl-3.0_119.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_12.RULE b/src/licensedcode/data/rules/gpl-3.0_12.RULE index 338440cb3c8..245d28e0953 100644 --- a/src/licensedcode/data/rules/gpl-3.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + http://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_12.yml b/src/licensedcode/data/rules/gpl-3.0_12.yml deleted file mode 100644 index 2f7c35d0dd2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_120.RULE b/src/licensedcode/data/rules/gpl-3.0_120.RULE index cdd591b6d91..bd70ce1b64b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_120.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_120.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + mq_perf_tests 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, version 3. @@ -7,5 +15,4 @@ 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. -For the full text of the license, see . - +For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_120.yml b/src/licensedcode/data/rules/gpl-3.0_120.yml deleted file mode 100644 index b16d8b0cec0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_121.RULE b/src/licensedcode/data/rules/gpl-3.0_121.RULE index 0d81f9fd9a8..dec6f81d7d7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_121.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_121.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + mq_open_tests 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, version 3. @@ -7,4 +14,4 @@ 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. -For the full text of the license, see . +For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_121.yml b/src/licensedcode/data/rules/gpl-3.0_121.yml deleted file mode 100644 index b591a489aa8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_121.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_122.RULE b/src/licensedcode/data/rules/gpl-3.0_122.RULE index ee24612ba28..3405d7341ef 100644 --- a/src/licensedcode/data/rules/gpl-3.0_122.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_122.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Licence: GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_122.yml b/src/licensedcode/data/rules/gpl-3.0_122.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_123.RULE b/src/licensedcode/data/rules/gpl-3.0_123.RULE index 5bec0a65a24..f8f4c87e315 100644 --- a/src/licensedcode/data/rules/gpl-3.0_123.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_123.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + The GNU General Public License, Version 3.0 https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_123.yml b/src/licensedcode/data/rules/gpl-3.0_123.yml deleted file mode 100644 index dad8d930bcc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_123.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_124.RULE b/src/licensedcode/data/rules/gpl-3.0_124.RULE index 79d96e0515a..3904220de03 100644 --- a/src/licensedcode/data/rules/gpl-3.0_124.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_124.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 95 +--- + GPL30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_124.yml b/src/licensedcode/data/rules/gpl-3.0_124.yml deleted file mode 100644 index 0e733147501..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-3.0_125.RULE b/src/licensedcode/data/rules/gpl-3.0_125.RULE index 8032c182b7a..8101559e6ba 100644 --- a/src/licensedcode/data/rules/gpl-3.0_125.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_125.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GPLv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_125.yml b/src/licensedcode/data/rules/gpl-3.0_125.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_126.RULE b/src/licensedcode/data/rules/gpl-3.0_126.RULE index 54e8dc1f073..6b1b5633dd4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_126.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_126.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_126.yml b/src/licensedcode/data/rules/gpl-3.0_126.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_127.RULE b/src/licensedcode/data/rules/gpl-3.0_127.RULE index 0eb8a3e4a78..bf60400b4b0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_127.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_127.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_127.yml b/src/licensedcode/data/rules/gpl-3.0_127.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_128.RULE b/src/licensedcode/data/rules/gpl-3.0_128.RULE index 293c1bfbd84..e97c129e7c2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_128.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_128.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_128.yml b/src/licensedcode/data/rules/gpl-3.0_128.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_129.RULE b/src/licensedcode/data/rules/gpl-3.0_129.RULE index 72554d189ee..5b18a9871e5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_129.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_129.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_129.yml b/src/licensedcode/data/rules/gpl-3.0_129.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_13.RULE b/src/licensedcode/data/rules/gpl-3.0_13.RULE index b9ee1e12a99..1fa2d447a81 100644 --- a/src/licensedcode/data/rules/gpl-3.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0-standalone.html +--- + http://www.gnu.org/licenses/gpl-3.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_13.yml b/src/licensedcode/data/rules/gpl-3.0_13.yml deleted file mode 100644 index 1dbc9c2b17e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-3.0_130.RULE b/src/licensedcode/data/rules/gpl-3.0_130.RULE index aeecc208bbe..43a35a0255f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_130.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_130.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNUGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_130.yml b/src/licensedcode/data/rules/gpl-3.0_130.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_131.RULE b/src/licensedcode/data/rules/gpl-3.0_131.RULE index 749e7498bc5..879a7a0b449 100644 --- a/src/licensedcode/data/rules/gpl-3.0_131.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_131.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNUGPL30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_131.yml b/src/licensedcode/data/rules/gpl-3.0_131.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_132.RULE b/src/licensedcode/data/rules/gpl-3.0_132.RULE index dec842eb711..0a09655c2e0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_132.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_132.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNUGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_132.yml b/src/licensedcode/data/rules/gpl-3.0_132.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_133.RULE b/src/licensedcode/data/rules/gpl-3.0_133.RULE index 33a45cda499..57715fd5050 100644 --- a/src/licensedcode/data/rules/gpl-3.0_133.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_133.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNUGPLv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_133.yml b/src/licensedcode/data/rules/gpl-3.0_133.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_134.RULE b/src/licensedcode/data/rules/gpl-3.0_134.RULE index 7f69c2cbfac..74b9af9bfed 100644 --- a/src/licensedcode/data/rules/gpl-3.0_134.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_134.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_134.yml b/src/licensedcode/data/rules/gpl-3.0_134.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_135.RULE b/src/licensedcode/data/rules/gpl-3.0_135.RULE index e02e4e0a643..8c987da4725 100644 --- a/src/licensedcode/data/rules/gpl-3.0_135.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_135.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_135.yml b/src/licensedcode/data/rules/gpl-3.0_135.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_136.RULE b/src/licensedcode/data/rules/gpl-3.0_136.RULE index 5a2c9a47f57..b0c5bbe3b0e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_136.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_136.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_136.yml b/src/licensedcode/data/rules/gpl-3.0_136.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_137.RULE b/src/licensedcode/data/rules/gpl-3.0_137.RULE index 11c2c320376..cc83116422a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_137.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_137.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnugplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_137.yml b/src/licensedcode/data/rules/gpl-3.0_137.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_138.RULE b/src/licensedcode/data/rules/gpl-3.0_138.RULE index 4f2441349b6..a089702e329 100644 --- a/src/licensedcode/data/rules/gpl-3.0_138.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_138.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_138.yml b/src/licensedcode/data/rules/gpl-3.0_138.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_139.RULE b/src/licensedcode/data/rules/gpl-3.0_139.RULE index a528fabd574..8d4958bfa77 100644 --- a/src/licensedcode/data/rules/gpl-3.0_139.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_139.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnugpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_139.yml b/src/licensedcode/data/rules/gpl-3.0_139.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_14.RULE b/src/licensedcode/data/rules/gpl-3.0_14.RULE index b5fc2f9ce83..fe330db0590 100644 --- a/src/licensedcode/data/rules/gpl-3.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_14.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +minimum_coverage: 99 +notes: this is a bizarre rule for a partially truncated GPL-3.0 license that shows up now and + then in a few places. See for some examples https://github.com/search?q=%22interactive+mode%3A+Copyright+(C)+This+program%22&type=Code +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -681,4 +693,4 @@ may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -.. +.. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_14.yml b/src/licensedcode/data/rules/gpl-3.0_14.yml deleted file mode 100644 index 3933aacd7a8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_14.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -minimum_coverage: 99 -notes: this is a bizarre rule for a partially truncated GPL-3.0 license that shows up now and - then in a few places. See for some examples https://github.com/search?q=%22interactive+mode%3A+Copyright+(C)+This+program%22&type=Code -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-3.0_140.RULE b/src/licensedcode/data/rules/gpl-3.0_140.RULE index a86eedf3273..4a7c81fee14 100644 --- a/src/licensedcode/data/rules/gpl-3.0_140.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_140.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_140.yml b/src/licensedcode/data/rules/gpl-3.0_140.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_141.RULE b/src/licensedcode/data/rules/gpl-3.0_141.RULE index fbf0267d6ac..f892a4a8581 100644 --- a/src/licensedcode/data/rules/gpl-3.0_141.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_141.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_141.yml b/src/licensedcode/data/rules/gpl-3.0_141.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_142.RULE b/src/licensedcode/data/rules/gpl-3.0_142.RULE index f7f4dbd4c97..ad2742962a3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_142.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_142.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gplv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_142.yml b/src/licensedcode/data/rules/gpl-3.0_142.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_143.RULE b/src/licensedcode/data/rules/gpl-3.0_143.RULE index 5ec6fdef5ea..d0352e92da9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_143.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_143.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gplv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_143.yml b/src/licensedcode/data/rules/gpl-3.0_143.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_144.RULE b/src/licensedcode/data/rules/gpl-3.0_144.RULE index e016b737a61..74ab6da116d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_144.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_144.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_144.yml b/src/licensedcode/data/rules/gpl-3.0_144.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_145.RULE b/src/licensedcode/data/rules/gpl-3.0_145.RULE index e31d5f1d9cf..8b884fc6919 100644 --- a/src/licensedcode/data/rules/gpl-3.0_145.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_145.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_145.yml b/src/licensedcode/data/rules/gpl-3.0_145.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_146.RULE b/src/licensedcode/data/rules/gpl-3.0_146.RULE index 7a585c36026..c5d9df4e387 100644 --- a/src/licensedcode/data/rules/gpl-3.0_146.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_146.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_146.yml b/src/licensedcode/data/rules/gpl-3.0_146.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_147.RULE b/src/licensedcode/data/rules/gpl-3.0_147.RULE index 007ed5b28d9..cd5dd37e42e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_147.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_147.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_147.yml b/src/licensedcode/data/rules/gpl-3.0_147.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_148.RULE b/src/licensedcode/data/rules/gpl-3.0_148.RULE index 92666e068ba..f5a764a002b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_148.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_148.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_148.yml b/src/licensedcode/data/rules/gpl-3.0_148.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_149.RULE b/src/licensedcode/data/rules/gpl-3.0_149.RULE index ae6bd816927..c4e7ca3d794 100644 --- a/src/licensedcode/data/rules/gpl-3.0_149.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_149.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu gpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_149.yml b/src/licensedcode/data/rules/gpl-3.0_149.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_15.RULE b/src/licensedcode/data/rules/gpl-3.0_15.RULE index 7fda3639c20..4a1d96b6dba 100644 --- a/src/licensedcode/data/rules/gpl-3.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under GNU General Public License (GPL) version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_15.yml b/src/licensedcode/data/rules/gpl-3.0_15.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_150.RULE b/src/licensedcode/data/rules/gpl-3.0_150.RULE index 9de10554e96..e46376c69fb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_150.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_150.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_150.yml b/src/licensedcode/data/rules/gpl-3.0_150.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_151.RULE b/src/licensedcode/data/rules/gpl-3.0_151.RULE index cb3e3678280..88d0692ac52 100644 --- a/src/licensedcode/data/rules/gpl-3.0_151.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_151.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/gpl-v3 +--- + https://choosealicense.com/licenses/gpl-v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_151.yml b/src/licensedcode/data/rules/gpl-3.0_151.yml deleted file mode 100644 index 699e758beca..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_151.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/gpl-v3 diff --git a/src/licensedcode/data/rules/gpl-3.0_152.RULE b/src/licensedcode/data/rules/gpl-3.0_152.RULE index ba230ab8657..9f538602500 100644 --- a/src/licensedcode/data/rules/gpl-3.0_152.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_152.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/gpl-v3 +--- + http://choosealicense.com/licenses/gpl-v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_152.yml b/src/licensedcode/data/rules/gpl-3.0_152.yml deleted file mode 100644 index 1ba23c69ce8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_152.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/gpl-v3 diff --git a/src/licensedcode/data/rules/gpl-3.0_153.RULE b/src/licensedcode/data/rules/gpl-3.0_153.RULE index 77bc2cb621f..3da3fee979b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_153.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_153.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/gpl-3.0 +--- + https://choosealicense.com/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_153.yml b/src/licensedcode/data/rules/gpl-3.0_153.yml deleted file mode 100644 index 4a4784cbb19..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_153.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_154.RULE b/src/licensedcode/data/rules/gpl-3.0_154.RULE index 140ac4442de..234131e4447 100644 --- a/src/licensedcode/data/rules/gpl-3.0_154.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_154.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/gpl-3.0 +--- + http://choosealicense.com/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_154.yml b/src/licensedcode/data/rules/gpl-3.0_154.yml deleted file mode 100644 index 938da2e3266..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_154.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_155.RULE b/src/licensedcode/data/rules/gpl-3.0_155.RULE index 298931a94c8..66247ce1b03 100644 --- a/src/licensedcode/data/rules/gpl-3.0_155.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_155.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_155.yml b/src/licensedcode/data/rules/gpl-3.0_155.yml deleted file mode 100644 index 29d7c8daa91..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_156.RULE b/src/licensedcode/data/rules/gpl-3.0_156.RULE index 09e2443ffda..89bd41c5a2d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_156.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_156.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://opensource.org/licenses/GPL-3.0 +--- + http://opensource.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_156.yml b/src/licensedcode/data/rules/gpl-3.0_156.yml deleted file mode 100644 index 3eaaffd22bd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_156.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://opensource.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_157.RULE b/src/licensedcode/data/rules/gpl-3.0_157.RULE index 49a76fb64e2..264edefe99d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_157.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_157.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://opensource.org/licenses/GPL-3.0 +--- + https://opensource.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_157.yml b/src/licensedcode/data/rules/gpl-3.0_157.yml deleted file mode 100644 index 3b40aa4a06b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://opensource.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_158.RULE b/src/licensedcode/data/rules/gpl-3.0_158.RULE index c063908e2a9..b0e2725294b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_158.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_158.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + COPYRIGHT = """ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_158.yml b/src/licensedcode/data/rules/gpl-3.0_158.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_159.RULE b/src/licensedcode/data/rules/gpl-3.0_159.RULE index 70cc50b90e0..4c005dc0246 100644 --- a/src/licensedcode/data/rules/gpl-3.0_159.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_159.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Copyright : GNU GENERAL PUBLIC LICENSE. Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_159.yml b/src/licensedcode/data/rules/gpl-3.0_159.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_16.RULE b/src/licensedcode/data/rules/gpl-3.0_16.RULE index ffb0ea69fe7..6463b18b12b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_16.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_16.yml b/src/licensedcode/data/rules/gpl-3.0_16.yml deleted file mode 100644 index e0018b6a76f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_160.RULE b/src/licensedcode/data/rules/gpl-3.0_160.RULE index f9dfa418f45..0699dc94365 100644 --- a/src/licensedcode/data/rules/gpl-3.0_160.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_160.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + copyright GNU GENERAL PUBLIC LICENSE v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_160.yml b/src/licensedcode/data/rules/gpl-3.0_160.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_161.RULE b/src/licensedcode/data/rules/gpl-3.0_161.RULE index 36fb17e7f0c..93d04cc7d3b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_161.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_161.RULE @@ -1 +1,11 @@ -copyright: GNU General Public License, version 3 (GPL-3.0) \ No newline at end of file +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +--- + +copyright: GNU General Public License, version 3 (GPL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_161.yml b/src/licensedcode/data/rules/gpl-3.0_161.yml deleted file mode 100644 index a2122607b6c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_161.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-3.0_162.RULE b/src/licensedcode/data/rules/gpl-3.0_162.RULE index 455d8ebaee5..ac97b45d0f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_162.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_162.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Copyright (GNU General Public License v3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_162.yml b/src/licensedcode/data/rules/gpl-3.0_162.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_163.RULE b/src/licensedcode/data/rules/gpl-3.0_163.RULE index 505f899c611..5b231c344c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_163.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_163.RULE @@ -1 +1,9 @@ -Copyright: GNU GENERAL PUBLIC LICENSE version 3 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + +Copyright: GNU GENERAL PUBLIC LICENSE version 3 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_163.yml b/src/licensedcode/data/rules/gpl-3.0_163.yml deleted file mode 100644 index f6148e86cf3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_164.RULE b/src/licensedcode/data/rules/gpl-3.0_164.RULE index ad1aab4b7d5..a0271832245 100644 --- a/src/licensedcode/data/rules/gpl-3.0_164.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_164.RULE @@ -1 +1,7 @@ -Copyright GNU GENERAL PUBLIC LICENSE Version 3. \ No newline at end of file +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +Copyright GNU GENERAL PUBLIC LICENSE Version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_164.yml b/src/licensedcode/data/rules/gpl-3.0_164.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_165.RULE b/src/licensedcode/data/rules/gpl-3.0_165.RULE index 29c2ab2d395..fda92653e90 100644 --- a/src/licensedcode/data/rules/gpl-3.0_165.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_165.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + (Copyright ) GNU General Public License 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_165.yml b/src/licensedcode/data/rules/gpl-3.0_165.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_166.RULE b/src/licensedcode/data/rules/gpl-3.0_166.RULE index afefd12068b..4358a0934c7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_166.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_166.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + COPYRIGHT = """ GNU GENERAL PUBLIC LICENCE Version 3, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_166.yml b/src/licensedcode/data/rules/gpl-3.0_166.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_167.RULE b/src/licensedcode/data/rules/gpl-3.0_167.RULE index b401a12aeaf..c383cc7b6fc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_167.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_167.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Copyright : GNU GENERAL PUBLIC LICENCE. Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_167.yml b/src/licensedcode/data/rules/gpl-3.0_167.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_168.RULE b/src/licensedcode/data/rules/gpl-3.0_168.RULE index 5e6c627384b..b402d5cc7c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_168.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_168.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + copyright GNU GENERAL PUBLIC LICENCE v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_168.yml b/src/licensedcode/data/rules/gpl-3.0_168.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_169.RULE b/src/licensedcode/data/rules/gpl-3.0_169.RULE index 9a3fa61b685..58c14103a6a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_169.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_169.RULE @@ -1 +1,11 @@ -copyright: GNU General Public Licence, version 3 (GPL-3.0) \ No newline at end of file +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +--- + +copyright: GNU General Public Licence, version 3 (GPL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_169.yml b/src/licensedcode/data/rules/gpl-3.0_169.yml deleted file mode 100644 index a2122607b6c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_169.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-3.0_17.RULE b/src/licensedcode/data/rules/gpl-3.0_17.RULE index cdf8c1f6b2f..21ef133ecf9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + distributed under the GPL v3.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_17.yml b/src/licensedcode/data/rules/gpl-3.0_17.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_170.RULE b/src/licensedcode/data/rules/gpl-3.0_170.RULE index a3e8c11fe5e..3bad0127e53 100644 --- a/src/licensedcode/data/rules/gpl-3.0_170.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_170.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Copyright (GNU General Public Licence v3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_170.yml b/src/licensedcode/data/rules/gpl-3.0_170.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_171.RULE b/src/licensedcode/data/rules/gpl-3.0_171.RULE index 9cbb7c3f29c..443421e157f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_171.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_171.RULE @@ -1 +1,9 @@ -Copyright: GNU GENERAL PUBLIC LICENCE version 3 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + +Copyright: GNU GENERAL PUBLIC LICENCE version 3 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_171.yml b/src/licensedcode/data/rules/gpl-3.0_171.yml deleted file mode 100644 index f6148e86cf3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_171.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_172.RULE b/src/licensedcode/data/rules/gpl-3.0_172.RULE index 33dc05305d8..c5625c4c6a7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_172.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_172.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + (Copyright ) GNU General Public Licence 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_172.yml b/src/licensedcode/data/rules/gpl-3.0_172.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_173.RULE b/src/licensedcode/data/rules/gpl-3.0_173.RULE index ffeca23d779..dc6a050919e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_173.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_173.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + "license": "GPL-3.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_173.yml b/src/licensedcode/data/rules/gpl-3.0_173.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_174.RULE b/src/licensedcode/data/rules/gpl-3.0_174.RULE index 8d930c0a19c..fb44d743526 100644 --- a/src/licensedcode/data/rules/gpl-3.0_174.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_174.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + available under the terms of the GPL, version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_174.yml b/src/licensedcode/data/rules/gpl-3.0_174.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_175.RULE b/src/licensedcode/data/rules/gpl-3.0_175.RULE index ea3bb8984c0..3215456edea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_175.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_175.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 95 +--- + under GNU GPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_175.yml b/src/licensedcode/data/rules/gpl-3.0_175.yml deleted file mode 100644 index 0e733147501..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-3.0_176.RULE b/src/licensedcode/data/rules/gpl-3.0_176.RULE index d39ea504bbf..3c29b850b6d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_176.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_176.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License: Unless otherwise noted, this content is licensed under the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_176.yml b/src/licensedcode/data/rules/gpl-3.0_176.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_177.RULE b/src/licensedcode/data/rules/gpl-3.0_177.RULE index 68da618494a..a6b2402bee3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_177.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_177.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + // 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. diff --git a/src/licensedcode/data/rules/gpl-3.0_177.yml b/src/licensedcode/data/rules/gpl-3.0_177.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_178.RULE b/src/licensedcode/data/rules/gpl-3.0_178.RULE index e0e47da513c..03b55bebe9a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_178.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_178.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Unless otherwise noted, this content is licensed under the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_178.yml b/src/licensedcode/data/rules/gpl-3.0_178.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_179.RULE b/src/licensedcode/data/rules/gpl-3.0_179.RULE index f6fd0b27d90..82ecd0ed281 100644 --- a/src/licensedcode/data/rules/gpl-3.0_179.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_179.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + this content is licensed under the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_179.yml b/src/licensedcode/data/rules/gpl-3.0_179.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_18.RULE b/src/licensedcode/data/rules/gpl-3.0_18.RULE index 7a184deb9e0..9794e769241 100644 --- a/src/licensedcode/data/rules/gpl-3.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_18.yml b/src/licensedcode/data/rules/gpl-3.0_18.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_180.RULE b/src/licensedcode/data/rules/gpl-3.0_180.RULE index 8d90762fe9e..5231db507f2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_180.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_180.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_180.yml b/src/licensedcode/data/rules/gpl-3.0_180.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_181.RULE b/src/licensedcode/data/rules/gpl-3.0_181.RULE index aefc8275c44..0f17bdba121 100644 --- a/src/licensedcode/data/rules/gpl-3.0_181.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_181.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_181.yml b/src/licensedcode/data/rules/gpl-3.0_181.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_181.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_182.RULE b/src/licensedcode/data/rules/gpl-3.0_182.RULE index 4133cb6ae42..f0d370a812a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_182.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_182.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License This project is available under the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_182.yml b/src/licensedcode/data/rules/gpl-3.0_182.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_183.RULE b/src/licensedcode/data/rules/gpl-3.0_183.RULE index 8df0983b792..2562b110330 100644 --- a/src/licensedcode/data/rules/gpl-3.0_183.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_183.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This project is available under the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_183.yml b/src/licensedcode/data/rules/gpl-3.0_183.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_184.RULE b/src/licensedcode/data/rules/gpl-3.0_184.RULE index eeacfe57506..0bd78abbc3e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_184.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_184.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License This package is licensed under GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_184.yml b/src/licensedcode/data/rules/gpl-3.0_184.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_185.RULE b/src/licensedcode/data/rules/gpl-3.0_185.RULE index 0e5ba5b8642..a6a50b53ddb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_185.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_185.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This package is licensed under GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_185.yml b/src/licensedcode/data/rules/gpl-3.0_185.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_186.RULE b/src/licensedcode/data/rules/gpl-3.0_186.RULE index 30b77830e02..ce102b4f789 100644 --- a/src/licensedcode/data/rules/gpl-3.0_186.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_186.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + package is licensed under GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_186.yml b/src/licensedcode/data/rules/gpl-3.0_186.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_187.RULE b/src/licensedcode/data/rules/gpl-3.0_187.RULE index 691eef2a2cf..201d2d08f6d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_187.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_187.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_187.yml b/src/licensedcode/data/rules/gpl-3.0_187.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_188.RULE b/src/licensedcode/data/rules/gpl-3.0_188.RULE index 93649e6cd45..1818d89ad5c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_188.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_188.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.ar.html +--- + https://www.gnu.org/licenses/gpl-3.0.ar.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_188.yml b/src/licensedcode/data/rules/gpl-3.0_188.yml deleted file mode 100644 index 24323892744..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_188.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.ar.html diff --git a/src/licensedcode/data/rules/gpl-3.0_189.RULE b/src/licensedcode/data/rules/gpl-3.0_189.RULE index 7129299914e..339e8a3138e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_189.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_189.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.ca.html +--- + https://www.gnu.org/licenses/gpl-3.0.ca.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_189.yml b/src/licensedcode/data/rules/gpl-3.0_189.yml deleted file mode 100644 index c000c95a470..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_189.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.ca.html diff --git a/src/licensedcode/data/rules/gpl-3.0_19.RULE b/src/licensedcode/data/rules/gpl-3.0_19.RULE index 46f5c8693b2..2c51247a46b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_19.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_19.yml b/src/licensedcode/data/rules/gpl-3.0_19.yml deleted file mode 100644 index f838edbe354..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_190.RULE b/src/licensedcode/data/rules/gpl-3.0_190.RULE index 23eb0ae77b5..d22031f3964 100644 --- a/src/licensedcode/data/rules/gpl-3.0_190.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_190.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.de.html +--- + https://www.gnu.org/licenses/gpl-3.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_190.yml b/src/licensedcode/data/rules/gpl-3.0_190.yml deleted file mode 100644 index 634828d782c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_190.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.de.html diff --git a/src/licensedcode/data/rules/gpl-3.0_191.RULE b/src/licensedcode/data/rules/gpl-3.0_191.RULE index 4cd1d20ce91..c534db1ee18 100644 --- a/src/licensedcode/data/rules/gpl-3.0_191.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_191.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.fr.html +--- + https://www.gnu.org/licenses/gpl-3.0.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_191.yml b/src/licensedcode/data/rules/gpl-3.0_191.yml deleted file mode 100644 index ec12c048190..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_191.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.fr.html diff --git a/src/licensedcode/data/rules/gpl-3.0_192.RULE b/src/licensedcode/data/rules/gpl-3.0_192.RULE index 230f84b24df..863819edfd5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_192.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_192.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.ja.html +--- + https://www.gnu.org/licenses/gpl-3.0.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_192.yml b/src/licensedcode/data/rules/gpl-3.0_192.yml deleted file mode 100644 index cc89e948c7e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.ja.html diff --git a/src/licensedcode/data/rules/gpl-3.0_193.RULE b/src/licensedcode/data/rules/gpl-3.0_193.RULE index 0de6d1d625d..e890ebb5472 100644 --- a/src/licensedcode/data/rules/gpl-3.0_193.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_193.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.nl.html +--- + https://www.gnu.org/licenses/gpl-3.0.nl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_193.yml b/src/licensedcode/data/rules/gpl-3.0_193.yml deleted file mode 100644 index 238b394e3f0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.nl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_194.RULE b/src/licensedcode/data/rules/gpl-3.0_194.RULE index 26d9841ce34..45507c6856e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_194.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_194.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.pt-br.html +--- + https://www.gnu.org/licenses/gpl-3.0.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_194.yml b/src/licensedcode/data/rules/gpl-3.0_194.yml deleted file mode 100644 index 45c8cca15b5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.pt-br.html diff --git a/src/licensedcode/data/rules/gpl-3.0_195.RULE b/src/licensedcode/data/rules/gpl-3.0_195.RULE index 34b93ce862b..ac6941adf13 100644 --- a/src/licensedcode/data/rules/gpl-3.0_195.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_195.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.ru.html +--- + https://www.gnu.org/licenses/gpl-3.0.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_195.yml b/src/licensedcode/data/rules/gpl-3.0_195.yml deleted file mode 100644 index 573fefa97de..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.ru.html diff --git a/src/licensedcode/data/rules/gpl-3.0_196.RULE b/src/licensedcode/data/rules/gpl-3.0_196.RULE index 1475b602f4e..70a632df312 100644 --- a/src/licensedcode/data/rules/gpl-3.0_196.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_196.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.uk.html +--- + https://www.gnu.org/licenses/gpl-3.0.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_196.yml b/src/licensedcode/data/rules/gpl-3.0_196.yml deleted file mode 100644 index 3ae5bc885d8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.uk.html diff --git a/src/licensedcode/data/rules/gpl-3.0_197.RULE b/src/licensedcode/data/rules/gpl-3.0_197.RULE index 5c9c536ac65..c3e82e242c2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_197.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_197.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.zh-cn.html +--- + https://www.gnu.org/licenses/gpl-3.0.zh-cn.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_197.yml b/src/licensedcode/data/rules/gpl-3.0_197.yml deleted file mode 100644 index 6946c07a31d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.zh-cn.html diff --git a/src/licensedcode/data/rules/gpl-3.0_198.RULE b/src/licensedcode/data/rules/gpl-3.0_198.RULE index 5d73d362d0e..2d4627e2f90 100644 --- a/src/licensedcode/data/rules/gpl-3.0_198.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_198.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/3.0/ +--- + GNU General Public License 3 (GPLv3) link: http://creativecommons.org/licenses/GPL/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_198.yml b/src/licensedcode/data/rules/gpl-3.0_198.yml deleted file mode 100644 index d20ae158cc9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_198.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/3.0/ diff --git a/src/licensedcode/data/rules/gpl-3.0_199.RULE b/src/licensedcode/data/rules/gpl-3.0_199.RULE index 0a04bd34b2c..3e36c5c8a0e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_199.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_199.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/GPL/3.0/ +--- + license: GPLv3 license link: http://creativecommons.org/licenses/GPL/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_199.yml b/src/licensedcode/data/rules/gpl-3.0_199.yml deleted file mode 100644 index d20ae158cc9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_199.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/GPL/3.0/ diff --git a/src/licensedcode/data/rules/gpl-3.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0_2.RULE index 1227993820a..001964a2adf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - ftp://prep.ai.mit.edu/pub/gnu/GPL +--- + * COPYRIGHT * This file is distributed under the terms of the GNU General Public * License (GPL) v3. Copies of the GPL can be obtained from: diff --git a/src/licensedcode/data/rules/gpl-3.0_2.yml b/src/licensedcode/data/rules/gpl-3.0_2.yml deleted file mode 100644 index c7afeffd2d3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - ftp://prep.ai.mit.edu/pub/gnu/GPL diff --git a/src/licensedcode/data/rules/gpl-3.0_20.RULE b/src/licensedcode/data/rules/gpl-3.0_20.RULE index da572a2b5bf..1f36a838f48 100644 --- a/src/licensedcode/data/rules/gpl-3.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_20.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + is distributed under GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_20.yml b/src/licensedcode/data/rules/gpl-3.0_20.yml deleted file mode 100644 index f838edbe354..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_200.RULE b/src/licensedcode/data/rules/gpl-3.0_200.RULE index 70c4c32c0e1..e89abc3f52b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_200.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_200.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + "" This file is licensed under GPLv3, see https://www.gnu.org/licenses/ """ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_200.yml b/src/licensedcode/data/rules/gpl-3.0_200.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_200.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_201.RULE b/src/licensedcode/data/rules/gpl-3.0_201.RULE index b407fd20586..90d880d8f7d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_201.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_201.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, Version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-3.0_201.yml b/src/licensedcode/data/rules/gpl-3.0_201.yml deleted file mode 100644 index b16d8b0cec0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_202.RULE b/src/licensedcode/data/rules/gpl-3.0_202.RULE index e3634e75d55..2f3e82ff8ec 100644 --- a/src/licensedcode/data/rules/gpl-3.0_202.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_202.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation; diff --git a/src/licensedcode/data/rules/gpl-3.0_202.yml b/src/licensedcode/data/rules/gpl-3.0_202.yml deleted file mode 100644 index b16d8b0cec0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_203.RULE b/src/licensedcode/data/rules/gpl-3.0_203.RULE index de9232d3f11..77a6d55fc24 100644 --- a/src/licensedcode/data/rules/gpl-3.0_203.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_203.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + license GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_203.yml b/src/licensedcode/data/rules/gpl-3.0_203.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_204.RULE b/src/licensedcode/data/rules/gpl-3.0_204.RULE index 94a9ed024d3..49c301b895b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_204.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_204.RULE @@ -1,3 +1,16 @@ +--- +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: + - http://fsf.org/ + - http://www.gnu.org/licenses/ + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -671,4 +684,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_204.yml b/src/licensedcode/data/rules/gpl-3.0_204.yml deleted file mode 100644 index 3a11920fed4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_204.yml +++ /dev/null @@ -1,10 +0,0 @@ -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: - - http://fsf.org/ - - http://www.gnu.org/licenses/ - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_205.RULE b/src/licensedcode/data/rules/gpl-3.0_205.RULE index c1ba9de30f4..504de4d8bf6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_205.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_205.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + _LICENSE_GPL3, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_205.yml b/src/licensedcode/data/rules/gpl-3.0_205.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_206.RULE b/src/licensedcode/data/rules/gpl-3.0_206.RULE index 8e977b07788..e255a9922eb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_206.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_206.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /licenses/gpl-3.0.txt +--- + /licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_206.yml b/src/licensedcode/data/rules/gpl-3.0_206.yml deleted file mode 100644 index 5edf988c62f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_206.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_207.RULE b/src/licensedcode/data/rules/gpl-3.0_207.RULE index fad1a14cffe..02a4057c576 100644 --- a/src/licensedcode/data/rules/gpl-3.0_207.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_207.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + License: GPL-3 The complete text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_207.yml b/src/licensedcode/data/rules/gpl-3.0_207.yml deleted file mode 100644 index 47ffa6be69c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-3.0_208.RULE b/src/licensedcode/data/rules/gpl-3.0_208.RULE index 5c0f6bc5c65..b796df9111d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_208.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_208.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + License: GPL-3 The complete text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_208.yml b/src/licensedcode/data/rules/gpl-3.0_208.yml deleted file mode 100644 index 9f31e496dfb..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_208.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_209.RULE b/src/licensedcode/data/rules/gpl-3.0_209.RULE index 99caa4a4e33..5fc55ca12d5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_209.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_209.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_209.yml b/src/licensedcode/data/rules/gpl-3.0_209.yml deleted file mode 100644 index 2f7c35d0dd2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_209.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_21.RULE b/src/licensedcode/data/rules/gpl-3.0_21.RULE index e41ccace3b2..a746ee31348 100644 --- a/src/licensedcode/data/rules/gpl-3.0_21.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + and is licensed under the GPL version 3, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_21.yml b/src/licensedcode/data/rules/gpl-3.0_21.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_210.RULE b/src/licensedcode/data/rules/gpl-3.0_210.RULE index f6ae3c0747e..bfb4a5d4e38 100644 --- a/src/licensedcode/data/rules/gpl-3.0_210.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_210.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_210.yml b/src/licensedcode/data/rules/gpl-3.0_210.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_211.RULE b/src/licensedcode/data/rules/gpl-3.0_211.RULE index 0825e8c7a7c..80f75a26789 100644 --- a/src/licensedcode/data/rules/gpl-3.0_211.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_211.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_211.yml b/src/licensedcode/data/rules/gpl-3.0_211.yml deleted file mode 100644 index e0018b6a76f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_211.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_212.RULE b/src/licensedcode/data/rules/gpl-3.0_212.RULE index c82cebf4022..1d4ad13c020 100644 --- a/src/licensedcode/data/rules/gpl-3.0_212.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_212.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_212.yml b/src/licensedcode/data/rules/gpl-3.0_212.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_213.RULE b/src/licensedcode/data/rules/gpl-3.0_213.RULE index ba115826215..c3b9934a583 100644 --- a/src/licensedcode/data/rules/gpl-3.0_213.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_213.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0 +--- + www.gnu.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_213.yml b/src/licensedcode/data/rules/gpl-3.0_213.yml deleted file mode 100644 index 2b1d8eb57d5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_213.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_214.RULE b/src/licensedcode/data/rules/gpl-3.0_214.RULE index a4a32c144b9..6b110e97674 100644 --- a/src/licensedcode/data/rules/gpl-3.0_214.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_214.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_214.yml b/src/licensedcode/data/rules/gpl-3.0_214.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_215.RULE b/src/licensedcode/data/rules/gpl-3.0_215.RULE index c4011e00608..47787eb12d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_215.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_215.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- + https://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_215.yml b/src/licensedcode/data/rules/gpl-3.0_215.yml deleted file mode 100644 index a4e7d9554e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_215.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_216.RULE b/src/licensedcode/data/rules/gpl-3.0_216.RULE index 62120564d55..72604135e40 100644 --- a/src/licensedcode/data/rules/gpl-3.0_216.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_216.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl-3.0.html +--- + http://gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_216.yml b/src/licensedcode/data/rules/gpl-3.0_216.yml deleted file mode 100644 index ab9db0a0f0f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_216.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_217.RULE b/src/licensedcode/data/rules/gpl-3.0_217.RULE index a3488e91a0a..1db12b7a559 100644 --- a/src/licensedcode/data/rules/gpl-3.0_217.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_217.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl-3.0.html +--- + https://gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_217.yml b/src/licensedcode/data/rules/gpl-3.0_217.yml deleted file mode 100644 index bc4069a3812..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_217.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_218.RULE b/src/licensedcode/data/rules/gpl-3.0_218.RULE index a5e68bbedba..dd87c41353b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_218.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_218.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_218.yml b/src/licensedcode/data/rules/gpl-3.0_218.yml deleted file mode 100644 index 14b9fe8e249..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_218.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_219.RULE b/src/licensedcode/data/rules/gpl-3.0_219.RULE index 43aa6bfef52..f205abeb31a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_219.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_219.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl-3.0.txt +--- + http://gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_219.yml b/src/licensedcode/data/rules/gpl-3.0_219.yml deleted file mode 100644 index 3d8db5bd110..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_219.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_22.RULE b/src/licensedcode/data/rules/gpl-3.0_22.RULE index d36d0a3f6ec..46287eba027 100644 --- a/src/licensedcode/data/rules/gpl-3.0_22.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_22.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + and is licensed under the GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_22.yml b/src/licensedcode/data/rules/gpl-3.0_22.yml deleted file mode 100644 index f838edbe354..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_220.RULE b/src/licensedcode/data/rules/gpl-3.0_220.RULE index 876c26ff67d..9277d5d78c7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_220.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_220.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl-3.0.txt +--- + https://gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_220.yml b/src/licensedcode/data/rules/gpl-3.0_220.yml deleted file mode 100644 index 60d6d74ae19..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_221.RULE b/src/licensedcode/data/rules/gpl-3.0_221.RULE index a8253a34d2b..8bfb7d03a97 100644 --- a/src/licensedcode/data/rules/gpl-3.0_221.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_221.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0 +--- + http://www.gnu.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_221.yml b/src/licensedcode/data/rules/gpl-3.0_221.yml deleted file mode 100644 index 2b1d8eb57d5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_221.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_222.RULE b/src/licensedcode/data/rules/gpl-3.0_222.RULE index 1c8e063784f..be8e7b949fa 100644 --- a/src/licensedcode/data/rules/gpl-3.0_222.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_222.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0 +--- + https://www.gnu.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_222.yml b/src/licensedcode/data/rules/gpl-3.0_222.yml deleted file mode 100644 index fc5a81359ca..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_222.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_223.RULE b/src/licensedcode/data/rules/gpl-3.0_223.RULE index 278d1baab12..79855937c39 100644 --- a/src/licensedcode/data/rules/gpl-3.0_223.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_223.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/gpl-3.0 +--- + http://gnu.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_223.yml b/src/licensedcode/data/rules/gpl-3.0_223.yml deleted file mode 100644 index 5ce91166019..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_223.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_224.RULE b/src/licensedcode/data/rules/gpl-3.0_224.RULE index 4356bee6b4d..68e48ea5b03 100644 --- a/src/licensedcode/data/rules/gpl-3.0_224.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_224.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl-3.0 +--- + https://gnu.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_224.yml b/src/licensedcode/data/rules/gpl-3.0_224.yml deleted file mode 100644 index ba590b120e7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_224.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_225.RULE b/src/licensedcode/data/rules/gpl-3.0_225.RULE index 038b19b2db5..727989cb52a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_225.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_225.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.tldrlegal.com/license/gnu-general-public-license-v3- +--- + https://www.tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_225.yml b/src/licensedcode/data/rules/gpl-3.0_225.yml deleted file mode 100644 index bf65061af64..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_225.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.tldrlegal.com/license/gnu-general-public-license-v3- diff --git a/src/licensedcode/data/rules/gpl-3.0_226.RULE b/src/licensedcode/data/rules/gpl-3.0_226.RULE index a7a2ab7ce13..a66de81093c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_226.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_226.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/src/licensedcode/data/rules/gpl-3.0_226.yml b/src/licensedcode/data/rules/gpl-3.0_226.yml deleted file mode 100644 index 8a714176728..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_226.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_227.RULE b/src/licensedcode/data/rules/gpl-3.0_227.RULE index 83327159004..60e6800b53a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_227.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_227.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/GPL-3.0 +--- + GPL v3 http://www.opensource.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_227.yml b/src/licensedcode/data/rules/gpl-3.0_227.yml deleted file mode 100644 index 3c00335b9a2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_227.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_228.RULE b/src/licensedcode/data/rules/gpl-3.0_228.RULE index 5fd92df5adf..79128c4cf64 100644 --- a/src/licensedcode/data/rules/gpl-3.0_228.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_228.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/GPL-3.0 +--- + GPL v3 https://opensource.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_228.yml b/src/licensedcode/data/rules/gpl-3.0_228.yml deleted file mode 100644 index bb5d34bfa8f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_228.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_229.RULE b/src/licensedcode/data/rules/gpl-3.0_229.RULE index 8fe5d008f76..70fc26ffc38 100644 --- a/src/licensedcode/data/rules/gpl-3.0_229.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_229.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/GPL-3.0 +--- + GPL v3 https://www.opensource.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_229.yml b/src/licensedcode/data/rules/gpl-3.0_229.yml deleted file mode 100644 index 72eb7d030d7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_229.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_23.RULE b/src/licensedcode/data/rules/gpl-3.0_23.RULE index 217165ef0f1..ae171c8ed7f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_23.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_23.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org/ http://fsf.org +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses + - http://www.gnu.org/licenses/ + - http://www.gnu.org/licenses/gpl-3.0.rdf + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU General Public License v3.0 - GNU Project - Free Software Foundation (FSF) http://www.gnu.org/licenses/gpl-3.0.rdf @@ -684,5 +699,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read - "http://www.gnu.org/philosophy/why-not-lgpl.html" http://www.gnu.org/philosophy/why-not-lgpl.html . - + "http://www.gnu.org/philosophy/why-not-lgpl.html" http://www.gnu.org/philosophy/why-not-lgpl.html . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_23.yml b/src/licensedcode/data/rules/gpl-3.0_23.yml deleted file mode 100644 index 5450a0c392b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_23.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org/ http://fsf.org -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses - - http://www.gnu.org/licenses/ - - http://www.gnu.org/licenses/gpl-3.0.rdf - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_230.RULE b/src/licensedcode/data/rules/gpl-3.0_230.RULE index fe125eb8033..a7ba95040e5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_230.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_230.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + # This software is licensed to you under the GNU General Public License, # version 3 (GPLv3). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A diff --git a/src/licensedcode/data/rules/gpl-3.0_230.yml b/src/licensedcode/data/rules/gpl-3.0_230.yml deleted file mode 100644 index 3741b969021..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_230.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_231.RULE b/src/licensedcode/data/rules/gpl-3.0_231.RULE index e9efe78da94..bf02fb196fd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_231.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_231.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + # This software is licensed to you under the GNU General Public License, # version 3 (GPLv3). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A diff --git a/src/licensedcode/data/rules/gpl-3.0_231.yml b/src/licensedcode/data/rules/gpl-3.0_231.yml deleted file mode 100644 index e84afa547af..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_231.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_232.RULE b/src/licensedcode/data/rules/gpl-3.0_232.RULE index 11e7ce9bbd1..654bdc468f6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_232.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_232.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under GNU GPL v3 license. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_232.yml b/src/licensedcode/data/rules/gpl-3.0_232.yml deleted file mode 100644 index d1de98d40b2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0_233.RULE b/src/licensedcode/data/rules/gpl-3.0_233.RULE index e3ef435d615..1679a13047e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_233.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_233.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under GNU GPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_233.yml b/src/licensedcode/data/rules/gpl-3.0_233.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_234.RULE b/src/licensedcode/data/rules/gpl-3.0_234.RULE index 6466e212b28..4b9ce16af77 100644 --- a/src/licensedcode/data/rules/gpl-3.0_234.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_234.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/src/licensedcode/data/rules/gpl-3.0_234.yml b/src/licensedcode/data/rules/gpl-3.0_234.yml deleted file mode 100644 index 22533d58e3a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_234.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_235.RULE b/src/licensedcode/data/rules/gpl-3.0_235.RULE index 4e71d8330a6..79d099a9f2b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_235.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_235.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Relicense under GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_235.yml b/src/licensedcode/data/rules/gpl-3.0_235.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_235.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_236.RULE b/src/licensedcode/data/rules/gpl-3.0_236.RULE index 26f283ab28e..9c103e5298b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_236.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_236.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under version 3 of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_236.yml b/src/licensedcode/data/rules/gpl-3.0_236.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_236.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_237.RULE b/src/licensedcode/data/rules/gpl-3.0_237.RULE index ec2c6ef57fe..39e572a9847 100644 --- a/src/licensedcode/data/rules/gpl-3.0_237.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_237.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + version 3 of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_237.yml b/src/licensedcode/data/rules/gpl-3.0_237.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_238.RULE b/src/licensedcode/data/rules/gpl-3.0_238.RULE index dacc4959974..a2de0236bef 100644 --- a/src/licensedcode/data/rules/gpl-3.0_238.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_238.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + # Licensed under the GNU GPL-3 # The GNU Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_238.yml b/src/licensedcode/data/rules/gpl-3.0_238.yml deleted file mode 100644 index 0e167b1d762..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_238.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_239.RULE b/src/licensedcode/data/rules/gpl-3.0_239.RULE index 9e5b0444b97..d51d77fccbf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_239.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_239.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the General Public License, version 3 (no other versions!). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_239.yml b/src/licensedcode/data/rules/gpl-3.0_239.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_24.RULE b/src/licensedcode/data/rules/gpl-3.0_24.RULE index cb2594e6936..30e48b97c9b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_24.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_24.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU GENERAL PUBLIC LICENSE Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_24.yml b/src/licensedcode/data/rules/gpl-3.0_24.yml deleted file mode 100644 index f838edbe354..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_240.RULE b/src/licensedcode/data/rules/gpl-3.0_240.RULE index e088e18b422..c2ea1755601 100644 --- a/src/licensedcode/data/rules/gpl-3.0_240.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_240.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +--- + License GNU GLP v3. Unless stated within the file, all files within this repository are subject to these license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_240.yml b/src/licensedcode/data/rules/gpl-3.0_240.yml deleted file mode 100644 index ed6a26b1d75..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0_241.RULE b/src/licensedcode/data/rules/gpl-3.0_241.RULE index 0269939f253..c8e9089275d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_241.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_241.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +--- + License GNU GLP v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_241.yml b/src/licensedcode/data/rules/gpl-3.0_241.yml deleted file mode 100644 index ed6a26b1d75..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0_242.RULE b/src/licensedcode/data/rules/gpl-3.0_242.RULE index 13557ea6d02..b1fe0999aab 100644 --- a/src/licensedcode/data/rules/gpl-3.0_242.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_242.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is free software. You can redistribute it and/or modify it 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_242.yml b/src/licensedcode/data/rules/gpl-3.0_242.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_243.RULE b/src/licensedcode/data/rules/gpl-3.0_243.RULE index bff2d1b7281..b5a051cd0c5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_243.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_243.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + You can redistribute it and/or modify it 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_243.yml b/src/licensedcode/data/rules/gpl-3.0_243.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_243.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_244.RULE b/src/licensedcode/data/rules/gpl-3.0_244.RULE index 8e951ae6c57..70d55410fd0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_244.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_244.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + * This program is free software, distributed 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_244.yml b/src/licensedcode/data/rules/gpl-3.0_244.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_245.RULE b/src/licensedcode/data/rules/gpl-3.0_245.RULE index 0dbe6ef2dad..d40d55fcdcf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_245.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_245.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + license License * This program is free software, distributed under the terms of * the GNU General Public License Version 3. For more details diff --git a/src/licensedcode/data/rules/gpl-3.0_245.yml b/src/licensedcode/data/rules/gpl-3.0_245.yml deleted file mode 100644 index 0e05cda41aa..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_245.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0_246.RULE b/src/licensedcode/data/rules/gpl-3.0_246.RULE index 77b09f7e542..d0336a6de38 100644 --- a/src/licensedcode/data/rules/gpl-3.0_246.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_246.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + GPLv3 licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_246.yml b/src/licensedcode/data/rules/gpl-3.0_246.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_246.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_247.RULE b/src/licensedcode/data/rules/gpl-3.0_247.RULE index e07c1d3d143..9ff64322950 100644 --- a/src/licensedcode/data/rules/gpl-3.0_247.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_247.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License and credits GPLv3 licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_247.yml b/src/licensedcode/data/rules/gpl-3.0_247.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_248.RULE b/src/licensedcode/data/rules/gpl-3.0_248.RULE index f09b3b7bc01..ad6137c73db 100644 --- a/src/licensedcode/data/rules/gpl-3.0_248.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_248.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under the GPLv3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_248.yml b/src/licensedcode/data/rules/gpl-3.0_248.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_249.RULE b/src/licensedcode/data/rules/gpl-3.0_249.RULE index bd001beee1f..8a2e8961539 100644 --- a/src/licensedcode/data/rules/gpl-3.0_249.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_249.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_249.yml b/src/licensedcode/data/rules/gpl-3.0_249.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_25.RULE b/src/licensedcode/data/rules/gpl-3.0_25.RULE index 4730a7c72a3..1ba98dd92fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_25.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_25.yml b/src/licensedcode/data/rules/gpl-3.0_25.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_250.RULE b/src/licensedcode/data/rules/gpl-3.0_250.RULE index 1d68f7c5fca..d6854abd693 100644 --- a/src/licensedcode/data/rules/gpl-3.0_250.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_250.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_250.yml b/src/licensedcode/data/rules/gpl-3.0_250.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_251.RULE b/src/licensedcode/data/rules/gpl-3.0_251.RULE index 948938f7616..6796aa05242 100644 --- a/src/licensedcode/data/rules/gpl-3.0_251.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_251.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_251.yml b/src/licensedcode/data/rules/gpl-3.0_251.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_252.RULE b/src/licensedcode/data/rules/gpl-3.0_252.RULE index 45ca8c353ae..1df09c0ccc4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_252.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_252.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Changed the license to GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_252.yml b/src/licensedcode/data/rules/gpl-3.0_252.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_253.RULE b/src/licensedcode/data/rules/gpl-3.0_253.RULE index 87fa2dfbac8..5ad4e31eac1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_253.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_253.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - legal/GPLv3 + - copying.md +--- + see [copying.md](copying.md) and [legal/GPLv3](/legal/GPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_253.yml b/src/licensedcode/data/rules/gpl-3.0_253.yml deleted file mode 100644 index e4b4e0abd97..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_253.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - legal/GPLv3 - - copying.md diff --git a/src/licensedcode/data/rules/gpl-3.0_254.RULE b/src/licensedcode/data/rules/gpl-3.0_254.RULE index 6680e075369..5cd78187617 100644 --- a/src/licensedcode/data/rules/gpl-3.0_254.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_254.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + library is under the GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_254.yml b/src/licensedcode/data/rules/gpl-3.0_254.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_254.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_255.RULE b/src/licensedcode/data/rules/gpl-3.0_255.RULE index d6fc6d30f98..e80af829bed 100644 --- a/src/licensedcode/data/rules/gpl-3.0_255.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_255.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_255.yml b/src/licensedcode/data/rules/gpl-3.0_255.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_255.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_256.RULE b/src/licensedcode/data/rules/gpl-3.0_256.RULE index c54c5a62e14..0ac8b98940c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_256.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_256.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The smbclient library is under the GPL v3, to combine it with FFmpeg, the options `--enable-gpl` and `--enable-version3` have to be passed to configure to upgrade FFmpeg to the GPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_256.yml b/src/licensedcode/data/rules/gpl-3.0_256.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_257.RULE b/src/licensedcode/data/rules/gpl-3.0_257.RULE index 183bf286124..1b7ef8f87e2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_257.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_257.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.en.html +--- + `GPL-3.0` - [GNU General Public License 3.0](http://www.gnu.org/licenses/gpl-3.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_257.yml b/src/licensedcode/data/rules/gpl-3.0_257.yml deleted file mode 100644 index dfac9a57868..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_258.RULE b/src/licensedcode/data/rules/gpl-3.0_258.RULE index 101ecf19c51..5170e4ef592 100644 --- a/src/licensedcode/data/rules/gpl-3.0_258.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_258.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-only.html +--- + `GPL-3.0-only` - [GNU General Public License 3.0](https://spdx.org/licenses/GPL-3.0-only.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_258.yml b/src/licensedcode/data/rules/gpl-3.0_258.yml deleted file mode 100644 index 6deb8ca231b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-only.html diff --git a/src/licensedcode/data/rules/gpl-3.0_259.RULE b/src/licensedcode/data/rules/gpl-3.0_259.RULE index 70566f2d0e5..37be8f58afa 100644 --- a/src/licensedcode/data/rules/gpl-3.0_259.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_259.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses/ + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/src/licensedcode/data/rules/gpl-3.0_259.yml b/src/licensedcode/data/rules/gpl-3.0_259.yml deleted file mode 100644 index f54f4328735..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_259.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_26.RULE b/src/licensedcode/data/rules/gpl-3.0_26.RULE index 9052c1d96a4..51fa18d70e4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_26.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_26.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_26.yml b/src/licensedcode/data/rules/gpl-3.0_26.yml deleted file mode 100644 index f838edbe354..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_260.RULE b/src/licensedcode/data/rules/gpl-3.0_260.RULE index b27df0a7e96..1e5045c780a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_260.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_260.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + provided under the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_260.yml b/src/licensedcode/data/rules/gpl-3.0_260.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_261.RULE b/src/licensedcode/data/rules/gpl-3.0_261.RULE index a02da0650d7..16916eab010 100644 --- a/src/licensedcode/data/rules/gpl-3.0_261.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_261.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + You are free to use and modify this script as you wish for commercial and non commercial use, within the GNU v3.0 (General Public License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_261.yml b/src/licensedcode/data/rules/gpl-3.0_261.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_262.RULE b/src/licensedcode/data/rules/gpl-3.0_262.RULE index 16070ffd3e5..87709e12aba 100644 --- a/src/licensedcode/data/rules/gpl-3.0_262.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_262.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This code is placed in the public domain under a GPL3 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_262.yml b/src/licensedcode/data/rules/gpl-3.0_262.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_263.RULE b/src/licensedcode/data/rules/gpl-3.0_263.RULE index 557c4049c2e..f7c43c9bb82 100644 --- a/src/licensedcode/data/rules/gpl-3.0_263.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_263.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under a GPL3 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_263.yml b/src/licensedcode/data/rules/gpl-3.0_263.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_264.RULE b/src/licensedcode/data/rules/gpl-3.0_264.RULE index 2adb51a75e2..3ac4a1ed1c4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_264.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_264.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GPL3 licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_264.yml b/src/licensedcode/data/rules/gpl-3.0_264.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_265.RULE b/src/licensedcode/data/rules/gpl-3.0_265.RULE index 8e3e5e6f39c..18d8e40b72d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_265.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_265.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License This software is licensed under the [GPL v3 license][gpl]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_265.yml b/src/licensedcode/data/rules/gpl-3.0_265.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_266.RULE b/src/licensedcode/data/rules/gpl-3.0_266.RULE index 248870dd689..1de6b1a62b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_266.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_266.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License This software is licensed under the [GPL v3 license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_266.yml b/src/licensedcode/data/rules/gpl-3.0_266.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_267.RULE b/src/licensedcode/data/rules/gpl-3.0_267.RULE index 5a916edb787..1981ff6aa8c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_267.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_267.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the [GPL v3 license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_267.yml b/src/licensedcode/data/rules/gpl-3.0_267.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_268.RULE b/src/licensedcode/data/rules/gpl-3.0_268.RULE index 232abd435fa..aec062d293a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_268.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_268.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the [GPL v3 license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_268.yml b/src/licensedcode/data/rules/gpl-3.0_268.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_269.RULE b/src/licensedcode/data/rules/gpl-3.0_269.RULE index b9fab1f2c43..b1787de71a5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_269.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_269.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the [GPL v3 license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_269.yml b/src/licensedcode/data/rules/gpl-3.0_269.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_27.RULE b/src/licensedcode/data/rules/gpl-3.0_27.RULE index 152097c9577..a5564bdda59 100644 --- a/src/licensedcode/data/rules/gpl-3.0_27.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_27.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU Public License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_27.yml b/src/licensedcode/data/rules/gpl-3.0_27.yml deleted file mode 100644 index f838edbe354..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_270.RULE b/src/licensedcode/data/rules/gpl-3.0_270.RULE index 9971bce1771..28927370e28 100644 --- a/src/licensedcode/data/rules/gpl-3.0_270.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_270.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + * 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. diff --git a/src/licensedcode/data/rules/gpl-3.0_270.yml b/src/licensedcode/data/rules/gpl-3.0_270.yml deleted file mode 100644 index 6ca8cc8e78c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_270.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_271.RULE b/src/licensedcode/data/rules/gpl-3.0_271.RULE index 15915682169..bda6365b000 100644 --- a/src/licensedcode/data/rules/gpl-3.0_271.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_271.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- + * 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. diff --git a/src/licensedcode/data/rules/gpl-3.0_271.yml b/src/licensedcode/data/rules/gpl-3.0_271.yml deleted file mode 100644 index 582828739bc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_271.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_272.RULE b/src/licensedcode/data/rules/gpl-3.0_272.RULE index dc75f97069f..6264007c20c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_272.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_272.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + It is free and open-source software, written in Python, released under GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_272.yml b/src/licensedcode/data/rules/gpl-3.0_272.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_273.RULE b/src/licensedcode/data/rules/gpl-3.0_273.RULE index 4e3ded83ce3..787632a871a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_273.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_273.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_273.yml b/src/licensedcode/data/rules/gpl-3.0_273.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_274.RULE b/src/licensedcode/data/rules/gpl-3.0_274.RULE index 50abff5ad04..03c1adc6a0d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_274.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_274.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + It is free and open-source software, released under GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_274.yml b/src/licensedcode/data/rules/gpl-3.0_274.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_275.RULE b/src/licensedcode/data/rules/gpl-3.0_275.RULE index 6b896e4b007..61eced5395d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_275.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_275.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0_275.yml b/src/licensedcode/data/rules/gpl-3.0_275.yml deleted file mode 100644 index b16d8b0cec0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_275.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_276.RULE b/src/licensedcode/data/rules/gpl-3.0_276.RULE index 0b64f37cf05..a4c24a0107d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_276.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_276.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + license="GNU GPL v3", \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_276.yml b/src/licensedcode/data/rules/gpl-3.0_276.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_277.RULE b/src/licensedcode/data/rules/gpl-3.0_277.RULE index 947b7f3aff2..13bfa643c2c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_277.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_277.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License This project is free software: you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/gpl-3.0_277.yml b/src/licensedcode/data/rules/gpl-3.0_277.yml deleted file mode 100644 index 402ab9bdcd1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_277.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_278.RULE b/src/licensedcode/data/rules/gpl-3.0_278.RULE index ef7a353b33f..99a30d60a16 100644 --- a/src/licensedcode/data/rules/gpl-3.0_278.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_278.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This project 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. No other version currently applies to this project. diff --git a/src/licensedcode/data/rules/gpl-3.0_278.yml b/src/licensedcode/data/rules/gpl-3.0_278.yml deleted file mode 100644 index 402ab9bdcd1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_278.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_279.RULE b/src/licensedcode/data/rules/gpl-3.0_279.RULE index 58ecb256ae5..0d8301cca34 100644 --- a/src/licensedcode/data/rules/gpl-3.0_279.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_279.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License This project is free software: you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/gpl-3.0_279.yml b/src/licensedcode/data/rules/gpl-3.0_279.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_279.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_28.RULE b/src/licensedcode/data/rules/gpl-3.0_28.RULE index efd3687e8d2..e7b985d0123 100644 --- a/src/licensedcode/data/rules/gpl-3.0_28.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_28.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. @@ -7,4 +14,4 @@ is free software: you can redistribute it and/or modify * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * For the full text of the license, see . + * For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_28.yml b/src/licensedcode/data/rules/gpl-3.0_28.yml deleted file mode 100644 index b591a489aa8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_280.RULE b/src/licensedcode/data/rules/gpl-3.0_280.RULE index e273248164f..3c0d17b77a1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_280.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_280.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This project 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. No other version currently applies to this project. diff --git a/src/licensedcode/data/rules/gpl-3.0_280.yml b/src/licensedcode/data/rules/gpl-3.0_280.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_280.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_281.RULE b/src/licensedcode/data/rules/gpl-3.0_281.RULE index 164a71e2913..4c9f83384b2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_281.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_281.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Licence: GPL V3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_281.yml b/src/licensedcode/data/rules/gpl-3.0_281.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_282.RULE b/src/licensedcode/data/rules/gpl-3.0_282.RULE index d0d2b577200..53a2afc6b9a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_282.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_282.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is licensed GPLv3, which is more restrictive than the Pillow license, therefore we will not be distributing binaries with libimagequant support enabled. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_282.yml b/src/licensedcode/data/rules/gpl-3.0_282.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_283.RULE b/src/licensedcode/data/rules/gpl-3.0_283.RULE index 68467871180..c51aea573ec 100644 --- a/src/licensedcode/data/rules/gpl-3.0_283.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_283.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +notes: https://github.com/WinMerge/freeimage/ +--- + GNU General Public License, version 3 (GPL-3.0) [OSI Approved License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_283.yml b/src/licensedcode/data/rules/gpl-3.0_283.yml deleted file mode 100644 index 16637343f43..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_283.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -notes: https://github.com/WinMerge/freeimage/ diff --git a/src/licensedcode/data/rules/gpl-3.0_284.RULE b/src/licensedcode/data/rules/gpl-3.0_284.RULE index 70834ae0193..4e9f1d17beb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_284.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_284.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License, Version 3.0, and a copy of the license is included in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_284.yml b/src/licensedcode/data/rules/gpl-3.0_284.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_284.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_285.RULE b/src/licensedcode/data/rules/gpl-3.0_285.RULE index 5d8a6585abc..0c8b9d7c69f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_285.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_285.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license +--- + This software of this project can be used under GPL v.3, see :doc:`license`. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_285.yml b/src/licensedcode/data/rules/gpl-3.0_285.yml deleted file mode 100644 index f60758d7e5c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_285.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license diff --git a/src/licensedcode/data/rules/gpl-3.0_286.RULE b/src/licensedcode/data/rules/gpl-3.0_286.RULE index 5c7dfc2777f..b10bdf6a733 100644 --- a/src/licensedcode/data/rules/gpl-3.0_286.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_286.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + licensed under GNU GPLv3 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_286.yml b/src/licensedcode/data/rules/gpl-3.0_286.yml deleted file mode 100644 index 3741b969021..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_286.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_287.RULE b/src/licensedcode/data/rules/gpl-3.0_287.RULE index afa00507fa7..2f6f4d14793 100644 --- a/src/licensedcode/data/rules/gpl-3.0_287.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_287.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_287.yml b/src/licensedcode/data/rules/gpl-3.0_287.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_287.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_288.RULE b/src/licensedcode/data/rules/gpl-3.0_288.RULE index 81c54575fb2..a75da62ca44 100644 --- a/src/licensedcode/data/rules/gpl-3.0_288.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_288.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Licence: GNU Public Licence v3 (GPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_288.yml b/src/licensedcode/data/rules/gpl-3.0_288.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_289.RULE b/src/licensedcode/data/rules/gpl-3.0_289.RULE index ccf1615e95a..0a93bdcc453 100644 --- a/src/licensedcode/data/rules/gpl-3.0_289.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_289.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + * This software may be modified and distributed under the terms * of the GPL 3 license. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_289.yml b/src/licensedcode/data/rules/gpl-3.0_289.yml deleted file mode 100644 index 402ab9bdcd1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_289.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_29.RULE b/src/licensedcode/data/rules/gpl-3.0_29.RULE index 5b484dbc755..61068493d16 100644 --- a/src/licensedcode/data/rules/gpl-3.0_29.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under the GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_29.yml b/src/licensedcode/data/rules/gpl-3.0_29.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_290.RULE b/src/licensedcode/data/rules/gpl-3.0_290.RULE index 2128cd15e1f..360b833e6b5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_290.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_290.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/gpl-3.0_290.yml b/src/licensedcode/data/rules/gpl-3.0_290.yml deleted file mode 100644 index d1de98d40b2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_290.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0_291.RULE b/src/licensedcode/data/rules/gpl-3.0_291.RULE index f5960e19c4f..835fbb101ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_291.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_291.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * This software may be modified and distributed under the terms of the * GNU General Public License v3.0. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_291.yml b/src/licensedcode/data/rules/gpl-3.0_291.yml deleted file mode 100644 index d1de98d40b2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_291.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0_292.RULE b/src/licensedcode/data/rules/gpl-3.0_292.RULE index 38c752c436e..27713566017 100644 --- a/src/licensedcode/data/rules/gpl-3.0_292.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_292.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + # This software may be modified and distributed under the terms # of the GPLv3 license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_292.yml b/src/licensedcode/data/rules/gpl-3.0_292.yml deleted file mode 100644 index 10af121a2b2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_292.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0_293.RULE b/src/licensedcode/data/rules/gpl-3.0_293.RULE index 840af294f03..37d12a89c38 100644 --- a/src/licensedcode/data/rules/gpl-3.0_293.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_293.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + * This software may be modified and distributed under the terms * of the GPL 3-Clause license. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_293.yml b/src/licensedcode/data/rules/gpl-3.0_293.yml deleted file mode 100644 index 402ab9bdcd1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_293.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_294.RULE b/src/licensedcode/data/rules/gpl-3.0_294.RULE index dd545eb7b88..066ae80d6e1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_294.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_294.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + This software is distributed under the terms of the GNU General Public License v3, dated 2007/06/29 (see http://www.gnu.org/licenses/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_294.yml b/src/licensedcode/data/rules/gpl-3.0_294.yml deleted file mode 100644 index 3741b969021..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_294.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_295.RULE b/src/licensedcode/data/rules/gpl-3.0_295.RULE index 9f5326d64ec..bee73e8ca18 100644 --- a/src/licensedcode/data/rules/gpl-3.0_295.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_295.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + This software is distributed under the terms of the GNU General Public License % as published by the Free Software Foundation. Further details on the GPLv3 % license can be found at http://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_295.yml b/src/licensedcode/data/rules/gpl-3.0_295.yml deleted file mode 100644 index bce80b19f4d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_295.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_296.RULE b/src/licensedcode/data/rules/gpl-3.0_296.RULE index 957d18c5d92..738f8e93af3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_296.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_296.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the terms of the GNU General Public License version 3 (GPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_296.yml b/src/licensedcode/data/rules/gpl-3.0_296.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_296.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_297.RULE b/src/licensedcode/data/rules/gpl-3.0_297.RULE index a0865e30f0c..28c038279ba 100644 --- a/src/licensedcode/data/rules/gpl-3.0_297.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_297.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_297.yml b/src/licensedcode/data/rules/gpl-3.0_297.yml deleted file mode 100644 index b9e7e802538..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_297.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_298.RULE b/src/licensedcode/data/rules/gpl-3.0_298.RULE index 75932d66b39..467df84e239 100644 --- a/src/licensedcode/data/rules/gpl-3.0_298.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_298.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + http://www.gnu.org/copyleft/gpl.html GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_298.yml b/src/licensedcode/data/rules/gpl-3.0_298.yml deleted file mode 100644 index b9e7e802538..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_298.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_299.RULE b/src/licensedcode/data/rules/gpl-3.0_299.RULE index 987b37a492f..b603b97f52b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_299.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_299.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://github.com/tianon/gosu +--- + license: GPL-3 (full text at https://github.com/tianon/gosu) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_299.yml b/src/licensedcode/data/rules/gpl-3.0_299.yml deleted file mode 100644 index bd7d797e026..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_299.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://github.com/tianon/gosu diff --git a/src/licensedcode/data/rules/gpl-3.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0_3.RULE index 650199ab00c..e7e089b65f3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + the complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_3.yml b/src/licensedcode/data/rules/gpl-3.0_3.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_30.RULE b/src/licensedcode/data/rules/gpl-3.0_30.RULE index e928c392357..f5c95bff5b5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_30.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + binary is also GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_30.yml b/src/licensedcode/data/rules/gpl-3.0_30.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_300.RULE b/src/licensedcode/data/rules/gpl-3.0_300.RULE index bedd33772e3..00f4620a5ab 100644 --- a/src/licensedcode/data/rules/gpl-3.0_300.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_300.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLPv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_300.yml b/src/licensedcode/data/rules/gpl-3.0_300.yml deleted file mode 100644 index 81cde0308f3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_300.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_301.RULE b/src/licensedcode/data/rules/gpl-3.0_301.RULE index 5811f212cc2..01b5df8d37c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_301.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_301.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_301.yml b/src/licensedcode/data/rules/gpl-3.0_301.yml deleted file mode 100644 index 81cde0308f3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_301.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_302.RULE b/src/licensedcode/data/rules/gpl-3.0_302.RULE index fba078a013c..d04322f007e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_302.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_302.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLP v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_302.yml b/src/licensedcode/data/rules/gpl-3.0_302.yml deleted file mode 100644 index 81cde0308f3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_302.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_303.RULE b/src/licensedcode/data/rules/gpl-3.0_303.RULE index 10b93eb1223..a5351a9ee56 100644 --- a/src/licensedcode/data/rules/gpl-3.0_303.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_303.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLP v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_303.yml b/src/licensedcode/data/rules/gpl-3.0_303.yml deleted file mode 100644 index 81cde0308f3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_303.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_304.RULE b/src/licensedcode/data/rules/gpl-3.0_304.RULE index f968a31d46c..aa78a6009ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0_304.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_304.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + open source (GLP-v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_304.yml b/src/licensedcode/data/rules/gpl-3.0_304.yml deleted file mode 100644 index 81cde0308f3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_304.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_305.RULE b/src/licensedcode/data/rules/gpl-3.0_305.RULE index 7f62959c995..10ee227397e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_305.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_305.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GNU GLP v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_305.yml b/src/licensedcode/data/rules/gpl-3.0_305.yml deleted file mode 100644 index 81cde0308f3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_305.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_306.RULE b/src/licensedcode/data/rules/gpl-3.0_306.RULE index 6b10584e0ac..37b9bb0cd94 100644 --- a/src/licensedcode/data/rules/gpl-3.0_306.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_306.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + code licensed under GLP v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_306.yml b/src/licensedcode/data/rules/gpl-3.0_306.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_306.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_307.RULE b/src/licensedcode/data/rules/gpl-3.0_307.RULE index 23fafc31b83..2d86b5c01db 100644 --- a/src/licensedcode/data/rules/gpl-3.0_307.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_307.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + It is available (GNU GLP v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_307.yml b/src/licensedcode/data/rules/gpl-3.0_307.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_307.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_308.RULE b/src/licensedcode/data/rules/gpl-3.0_308.RULE index 4d59f0d856c..1fd9e85a9d3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_308.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_308.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + open source (GLP v3+). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_308.yml b/src/licensedcode/data/rules/gpl-3.0_308.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_308.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_309.RULE b/src/licensedcode/data/rules/gpl-3.0_309.RULE index ea7fc69356d..90279ca04bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_309.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_309.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + released under GLP v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_309.yml b/src/licensedcode/data/rules/gpl-3.0_309.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_309.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_31.RULE b/src/licensedcode/data/rules/gpl-3.0_31.RULE index 24a17817374..68234c9030d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_31.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_31.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 15 +--- + Licensing ========= is licensed under the GPLv3. uses the interface file from which means that the resulting binary is also GPLv3. This can still be used to link non-GPLv3 programs -just as much as could without the plugin. +just as much as could without the plugin. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_31.yml b/src/licensedcode/data/rules/gpl-3.0_31.yml deleted file mode 100644 index 40d8b56ba36..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_31.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 15 diff --git a/src/licensedcode/data/rules/gpl-3.0_310.RULE b/src/licensedcode/data/rules/gpl-3.0_310.RULE index 28128f909da..d0a88b28734 100644 --- a/src/licensedcode/data/rules/gpl-3.0_310.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_310.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + distributed under GLP v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_310.yml b/src/licensedcode/data/rules/gpl-3.0_310.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_310.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_311.RULE b/src/licensedcode/data/rules/gpl-3.0_311.RULE index 940e6ecb8f0..57f2d721b2b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_311.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_311.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + License: GNU General Public License (GPL) (GNU GLP v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_311.yml b/src/licensedcode/data/rules/gpl-3.0_311.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_311.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_312.RULE b/src/licensedcode/data/rules/gpl-3.0_312.RULE index f852384fab9..7c63b52b80f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_312.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_312.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + available under GNU GLP V3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_312.yml b/src/licensedcode/data/rules/gpl-3.0_312.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_312.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_313.RULE b/src/licensedcode/data/rules/gpl-3.0_313.RULE index c452696a24c..273c707879d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_313.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_313.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + offered under GLPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_313.yml b/src/licensedcode/data/rules/gpl-3.0_313.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_313.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_314.RULE b/src/licensedcode/data/rules/gpl-3.0_314.RULE index 7082a9bde01..975d072805e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_314.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_314.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + This program licensed under GLP v3 and is free software \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_314.yml b/src/licensedcode/data/rules/gpl-3.0_314.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_314.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_315.RULE b/src/licensedcode/data/rules/gpl-3.0_315.RULE index 169f98f01ad..ec121d286c2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_315.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_315.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + under the GLP v3.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_315.yml b/src/licensedcode/data/rules/gpl-3.0_315.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_315.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_316.RULE b/src/licensedcode/data/rules/gpl-3.0_316.RULE index 94822736262..c746d8bcd25 100644 --- a/src/licensedcode/data/rules/gpl-3.0_316.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_316.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + developed under GLP V3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_316.yml b/src/licensedcode/data/rules/gpl-3.0_316.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_316.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_317.RULE b/src/licensedcode/data/rules/gpl-3.0_317.RULE index 1f3f4a7c06f..de7fd6917d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_317.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_317.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + distributed under the GNU GLP v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_317.yml b/src/licensedcode/data/rules/gpl-3.0_317.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_317.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_318.RULE b/src/licensedcode/data/rules/gpl-3.0_318.RULE index 3da2000ee13..f03bc3929cf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_318.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_318.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + Licensed under same GNU GLP v3 license as the original part, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_318.yml b/src/licensedcode/data/rules/gpl-3.0_318.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_318.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_319.RULE b/src/licensedcode/data/rules/gpl-3.0_319.RULE index 9143b86a5b3..46f61cdd489 100644 --- a/src/licensedcode/data/rules/gpl-3.0_319.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_319.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + GPL license version used is GLP v3.0, for License should be set to GPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_319.yml b/src/licensedcode/data/rules/gpl-3.0_319.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_319.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_32.RULE b/src/licensedcode/data/rules/gpl-3.0_32.RULE index 1cd340811c2..7951d4c4678 100644 --- a/src/licensedcode/data/rules/gpl-3.0_32.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_32.yml b/src/licensedcode/data/rules/gpl-3.0_32.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_320.RULE b/src/licensedcode/data/rules/gpl-3.0_320.RULE index 633b4071884..95d65b90d8b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_320.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_320.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + distributed under the terms of the GLP-V3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_320.yml b/src/licensedcode/data/rules/gpl-3.0_320.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_320.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_321.RULE b/src/licensedcode/data/rules/gpl-3.0_321.RULE index aad847b90fb..dec55700a5f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_321.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_321.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + GLP v3 license applies: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_321.yml b/src/licensedcode/data/rules/gpl-3.0_321.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_321.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_322.RULE b/src/licensedcode/data/rules/gpl-3.0_322.RULE index 83417d71081..b7bc90a98fb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_322.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_322.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + open source product under GLP v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_322.yml b/src/licensedcode/data/rules/gpl-3.0_322.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_322.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_323.RULE b/src/licensedcode/data/rules/gpl-3.0_323.RULE index 51e961725ba..f1f90fdc3cd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_323.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_323.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + It is open source (GLP v3), free \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_323.yml b/src/licensedcode/data/rules/gpl-3.0_323.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_323.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_324.RULE b/src/licensedcode/data/rules/gpl-3.0_324.RULE index af5dbd2389e..e1adb48499c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_324.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_324.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + free open source (GLP v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_324.yml b/src/licensedcode/data/rules/gpl-3.0_324.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_324.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_325.RULE b/src/licensedcode/data/rules/gpl-3.0_325.RULE index 0e680baa354..82bacd74ed3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_325.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_325.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + has a GLP v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_325.yml b/src/licensedcode/data/rules/gpl-3.0_325.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_325.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_326.RULE b/src/licensedcode/data/rules/gpl-3.0_326.RULE index ee140102627..676740a75fd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_326.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_326.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + under GLP V3 license source code under the GLP v3 licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_326.yml b/src/licensedcode/data/rules/gpl-3.0_326.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_326.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_327.RULE b/src/licensedcode/data/rules/gpl-3.0_327.RULE index 4c0522f1bba..f9de207938d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_327.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_327.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + licensed under the GLP v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_327.yml b/src/licensedcode/data/rules/gpl-3.0_327.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_327.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_328.RULE b/src/licensedcode/data/rules/gpl-3.0_328.RULE index ea81093c290..03eddde8be2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_328.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_328.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + It is free software, released under the GLP v3 (see GPL license). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_328.yml b/src/licensedcode/data/rules/gpl-3.0_328.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_328.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_329.RULE b/src/licensedcode/data/rules/gpl-3.0_329.RULE index f90aa8bc101..860ed48b3f1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_329.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_329.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + provided under the GNU GLP v3 Open Source License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_329.yml b/src/licensedcode/data/rules/gpl-3.0_329.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_329.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_33.RULE b/src/licensedcode/data/rules/gpl-3.0_33.RULE index ad8e9f78701..9780fc4ef98 100644 --- a/src/licensedcode/data/rules/gpl-3.0_33.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + This patch is offered under the same modified GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_33.yml b/src/licensedcode/data/rules/gpl-3.0_33.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_330.RULE b/src/licensedcode/data/rules/gpl-3.0_330.RULE index bdc89d6b2b8..1ce6d398d02 100644 --- a/src/licensedcode/data/rules/gpl-3.0_330.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_330.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + distributed as GLP v3.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_330.yml b/src/licensedcode/data/rules/gpl-3.0_330.yml deleted file mode 100644 index 0fd495782e2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_330.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_331.RULE b/src/licensedcode/data/rules/gpl-3.0_331.RULE index 8a1c8526463..28cd0eba536 100644 --- a/src/licensedcode/data/rules/gpl-3.0_331.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_331.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU General Public License ************************** diff --git a/src/licensedcode/data/rules/gpl-3.0_331.yml b/src/licensedcode/data/rules/gpl-3.0_331.yml deleted file mode 100644 index 8c7c92a97c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_331.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_332.RULE b/src/licensedcode/data/rules/gpl-3.0_332.RULE index 671e14a7d8a..53a17a95bfe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_332.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_332.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_332.yml b/src/licensedcode/data/rules/gpl-3.0_332.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_333.RULE b/src/licensedcode/data/rules/gpl-3.0_333.RULE index d72d5641237..93c021e4ef2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_333.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_333.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This 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 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_333.yml b/src/licensedcode/data/rules/gpl-3.0_333.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_333.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_334.RULE b/src/licensedcode/data/rules/gpl-3.0_334.RULE index ed580f6fb9c..e133e9170c9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_334.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_334.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + 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 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_334.yml b/src/licensedcode/data/rules/gpl-3.0_334.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_334.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_335.RULE b/src/licensedcode/data/rules/gpl-3.0_335.RULE index d2b32aae3ec..e957fb580fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_335.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_335.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPLv3 TERMS AND CONDITIONS REPRODUCED HERE FOR CLARITY: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_335.yml b/src/licensedcode/data/rules/gpl-3.0_335.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_335.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_336.RULE b/src/licensedcode/data/rules/gpl-3.0_336.RULE index 3b51fd79b62..077a32a422c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_336.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_336.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPLv3 TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_336.yml b/src/licensedcode/data/rules/gpl-3.0_336.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_336.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_337.RULE b/src/licensedcode/data/rules/gpl-3.0_337.RULE index 0548c1ad661..9c7a24ad0e7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_337.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_337.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_337.yml b/src/licensedcode/data/rules/gpl-3.0_337.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_337.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_338.RULE b/src/licensedcode/data/rules/gpl-3.0_338.RULE index c3c8f78fe0a..84ad807ec30 100644 --- a/src/licensedcode/data/rules/gpl-3.0_338.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_338.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_338.yml b/src/licensedcode/data/rules/gpl-3.0_338.yml deleted file mode 100644 index b16d8b0cec0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_338.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_339.RULE b/src/licensedcode/data/rules/gpl-3.0_339.RULE index acd1b10a200..dcef5abf259 100644 --- a/src/licensedcode/data/rules/gpl-3.0_339.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_339.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_339.yml b/src/licensedcode/data/rules/gpl-3.0_339.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_34.RULE b/src/licensedcode/data/rules/gpl-3.0_34.RULE index 9e5cd031060..1dab2dc5fbd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_34.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_34.yml b/src/licensedcode/data/rules/gpl-3.0_34.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_340.RULE b/src/licensedcode/data/rules/gpl-3.0_340.RULE index 9557a6ee9e1..bfe9f0d4a46 100644 --- a/src/licensedcode/data/rules/gpl-3.0_340.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_340.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensing Policy for GPLed versions By now, releases versions under GPLv3 license. This is the licensing policy for the GPLed versions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_340.yml b/src/licensedcode/data/rules/gpl-3.0_340.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_340.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_341.RULE b/src/licensedcode/data/rules/gpl-3.0_341.RULE index db6592642b9..fa61156f1da 100644 --- a/src/licensedcode/data/rules/gpl-3.0_341.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_341.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_341.yml b/src/licensedcode/data/rules/gpl-3.0_341.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_342.RULE b/src/licensedcode/data/rules/gpl-3.0_342.RULE index 4fbfb0be3d8..9e2369e6272 100644 --- a/src/licensedcode/data/rules/gpl-3.0_342.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_342.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under GPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_342.yml b/src/licensedcode/data/rules/gpl-3.0_342.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_342.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_343.RULE b/src/licensedcode/data/rules/gpl-3.0_343.RULE index 8bf842260d5..6fe7ab1e5ab 100644 --- a/src/licensedcode/data/rules/gpl-3.0_343.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_343.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU General Public License (GPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_343.yml b/src/licensedcode/data/rules/gpl-3.0_343.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_343.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_344.RULE b/src/licensedcode/data/rules/gpl-3.0_344.RULE index 494d5421082..c7aba77248b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_344.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_344.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GPL v3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_344.yml b/src/licensedcode/data/rules/gpl-3.0_344.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_344.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_345.RULE b/src/licensedcode/data/rules/gpl-3.0_345.RULE index 414426030f8..2bcf64ff98a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_345.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_345.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_345.yml b/src/licensedcode/data/rules/gpl-3.0_345.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_345.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_346.RULE b/src/licensedcode/data/rules/gpl-3.0_346.RULE index f7c32f6107e..b30e6902bb7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_346.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_346.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License (GPL 3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_346.yml b/src/licensedcode/data/rules/gpl-3.0_346.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_346.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_347.RULE b/src/licensedcode/data/rules/gpl-3.0_347.RULE index 5c42e5675ce..18261a396c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_347.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_347.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License (GNU) 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_347.yml b/src/licensedcode/data/rules/gpl-3.0_347.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_347.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_348.RULE b/src/licensedcode/data/rules/gpl-3.0_348.RULE index cf5d9ad64aa..476496a6c50 100644 --- a/src/licensedcode/data/rules/gpl-3.0_348.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_348.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public licence (GPL 3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_348.yml b/src/licensedcode/data/rules/gpl-3.0_348.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_348.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_349.RULE b/src/licensedcode/data/rules/gpl-3.0_349.RULE index 026636aba35..8d5ae01fe63 100644 --- a/src/licensedcode/data/rules/gpl-3.0_349.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_349.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public licence (GNU) 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_349.yml b/src/licensedcode/data/rules/gpl-3.0_349.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_349.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_35.RULE b/src/licensedcode/data/rules/gpl-3.0_35.RULE index ce0cb4d6989..8fc0a9b1029 100644 --- a/src/licensedcode/data/rules/gpl-3.0_35.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_35.yml b/src/licensedcode/data/rules/gpl-3.0_35.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_350.RULE b/src/licensedcode/data/rules/gpl-3.0_350.RULE index eaa444599bf..1c9c91e914f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_350.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_350.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed 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_350.yml b/src/licensedcode/data/rules/gpl-3.0_350.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_350.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_351.RULE b/src/licensedcode/data/rules/gpl-3.0_351.RULE index a1b936f39cf..7b0e4809901 100644 --- a/src/licensedcode/data/rules/gpl-3.0_351.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_351.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed 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_351.yml b/src/licensedcode/data/rules/gpl-3.0_351.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_351.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_352.RULE b/src/licensedcode/data/rules/gpl-3.0_352.RULE index 023026c6009..c09980421b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_352.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_352.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0 + - https://img.shields.io/badge/License-GPL%20v3-blue.svg +--- + License [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_352.yml b/src/licensedcode/data/rules/gpl-3.0_352.yml deleted file mode 100644 index ba33a675d83..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_352.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0 - - https://img.shields.io/badge/License-GPL%20v3-blue.svg diff --git a/src/licensedcode/data/rules/gpl-3.0_353.RULE b/src/licensedcode/data/rules/gpl-3.0_353.RULE index 07d417cc3f1..47bd76d8954 100644 --- a/src/licensedcode/data/rules/gpl-3.0_353.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_353.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + available under a GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_353.yml b/src/licensedcode/data/rules/gpl-3.0_353.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_353.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_354.RULE b/src/licensedcode/data/rules/gpl-3.0_354.RULE index 9077b52a281..e4808c97e41 100644 --- a/src/licensedcode/data/rules/gpl-3.0_354.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_354.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 + - COPYING +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-3.0_354.yml b/src/licensedcode/data/rules/gpl-3.0_354.yml deleted file mode 100644 index f2b9c74f000..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_354.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0_355.RULE b/src/licensedcode/data/rules/gpl-3.0_355.RULE index 1d2e780d611..988535b838b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_355.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_355.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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; version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_355.yml b/src/licensedcode/data/rules/gpl-3.0_355.yml deleted file mode 100644 index 0e167b1d762..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_355.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_356.RULE b/src/licensedcode/data/rules/gpl-3.0_356.RULE index 9ed42c73a78..cc2fbea6f61 100644 --- a/src/licensedcode/data/rules/gpl-3.0_356.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_356.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_356.yml b/src/licensedcode/data/rules/gpl-3.0_356.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_356.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_357.RULE b/src/licensedcode/data/rules/gpl-3.0_357.RULE index 0d348577612..5be89365c7f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_357.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_357.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 70 +referenced_filenames: + - COPYINGv3 +--- + COPYINGv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_357.yml b/src/licensedcode/data/rules/gpl-3.0_357.yml deleted file mode 100644 index a08d8888c47..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_357.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 70 -referenced_filenames: - - COPYINGv3 diff --git a/src/licensedcode/data/rules/gpl-3.0_358.RULE b/src/licensedcode/data/rules/gpl-3.0_358.RULE index 09ac58ca1ea..e655edb38fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_358.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_358.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +--- + LICENSE INFORMATION: GPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_358.yml b/src/licensedcode/data/rules/gpl-3.0_358.yml deleted file mode 100644 index 927a9e17ade..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_358.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0_359.RULE b/src/licensedcode/data/rules/gpl-3.0_359.RULE index d6dd6b013af..321d67b4dd4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_359.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_359.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + 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; version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_359.yml b/src/licensedcode/data/rules/gpl-3.0_359.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_359.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_36.RULE b/src/licensedcode/data/rules/gpl-3.0_36.RULE index d38c1960bcf..b6c95bbce76 100644 --- a/src/licensedcode/data/rules/gpl-3.0_36.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_36.yml b/src/licensedcode/data/rules/gpl-3.0_36.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_360.RULE b/src/licensedcode/data/rules/gpl-3.0_360.RULE index 23120a27199..0b6f09e4be5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_360.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_360.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-3.0_360.yml b/src/licensedcode/data/rules/gpl-3.0_360.yml deleted file mode 100644 index b16d8b0cec0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_360.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_361.RULE b/src/licensedcode/data/rules/gpl-3.0_361.RULE index b83e1a25e51..6e5177684ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_361.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_361.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-3.0_361.yml b/src/licensedcode/data/rules/gpl-3.0_361.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_361.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_362.RULE b/src/licensedcode/data/rules/gpl-3.0_362.RULE index ab6b415ad87..856f78a963f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_362.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_362.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_362.yml b/src/licensedcode/data/rules/gpl-3.0_362.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_362.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_363.RULE b/src/licensedcode/data/rules/gpl-3.0_363.RULE index 02afde9a777..3987c3a8113 100644 --- a/src/licensedcode/data/rules/gpl-3.0_363.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_363.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public Licence, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_363.yml b/src/licensedcode/data/rules/gpl-3.0_363.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_363.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_364.RULE b/src/licensedcode/data/rules/gpl-3.0_364.RULE index 65af399710c..29bb9ec9558 100644 --- a/src/licensedcode/data/rules/gpl-3.0_364.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_364.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_364.yml b/src/licensedcode/data/rules/gpl-3.0_364.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_364.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_365.RULE b/src/licensedcode/data/rules/gpl-3.0_365.RULE index fc14d6db4fa..80bc7791ef9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_365.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_365.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_365.yml b/src/licensedcode/data/rules/gpl-3.0_365.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_365.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_366.RULE b/src/licensedcode/data/rules/gpl-3.0_366.RULE index 81ad0edaec2..57924bc052e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_366.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_366.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_366.yml b/src/licensedcode/data/rules/gpl-3.0_366.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_366.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_367.RULE b/src/licensedcode/data/rules/gpl-3.0_367.RULE index 9049086c7e9..c9d67d82c69 100644 --- a/src/licensedcode/data/rules/gpl-3.0_367.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_367.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_367.yml b/src/licensedcode/data/rules/gpl-3.0_367.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_367.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_368.RULE b/src/licensedcode/data/rules/gpl-3.0_368.RULE index 78a47daa2f0..862cf9cf906 100644 --- a/src/licensedcode/data/rules/gpl-3.0_368.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_368.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_368.yml b/src/licensedcode/data/rules/gpl-3.0_368.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_368.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_369.RULE b/src/licensedcode/data/rules/gpl-3.0_369.RULE index ba4b1d467e8..224f12bc945 100644 --- a/src/licensedcode/data/rules/gpl-3.0_369.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_369.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + available under the terms of the GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_369.yml b/src/licensedcode/data/rules/gpl-3.0_369.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_369.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_37.RULE b/src/licensedcode/data/rules/gpl-3.0_37.RULE index f5f65a98328..72569ff654c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_37.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public license v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_37.yml b/src/licensedcode/data/rules/gpl-3.0_37.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_370.RULE b/src/licensedcode/data/rules/gpl-3.0_370.RULE index c7944a48bfc..dd402e46ab7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_370.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_370.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_370.yml b/src/licensedcode/data/rules/gpl-3.0_370.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_371.RULE b/src/licensedcode/data/rules/gpl-3.0_371.RULE index 211a4a3a5a9..f48a23113cd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_371.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_371.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + available under the terms of the GNU GPL v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_371.yml b/src/licensedcode/data/rules/gpl-3.0_371.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_371.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_372.RULE b/src/licensedcode/data/rules/gpl-3.0_372.RULE index 2bc807143b6..8c776ec61d4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_372.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_372.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU GPL v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_372.yml b/src/licensedcode/data/rules/gpl-3.0_372.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_372.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_373.RULE b/src/licensedcode/data/rules/gpl-3.0_373.RULE index 9281478caa1..8267e3df970 100644 --- a/src/licensedcode/data/rules/gpl-3.0_373.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_373.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License +--- + This project is made available under the terms of the GNU GPL, version 3. See the 'License' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_373.yml b/src/licensedcode/data/rules/gpl-3.0_373.yml deleted file mode 100644 index c068160374e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_373.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License diff --git a/src/licensedcode/data/rules/gpl-3.0_374.RULE b/src/licensedcode/data/rules/gpl-3.0_374.RULE index feedb5f9928..28563957b0e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_374.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_374.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +--- + 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; version 3 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_374.yml b/src/licensedcode/data/rules/gpl-3.0_374.yml deleted file mode 100644 index 52405473559..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_374.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 diff --git a/src/licensedcode/data/rules/gpl-3.0_375.RULE b/src/licensedcode/data/rules/gpl-3.0_375.RULE index f8bb4f5e5dc..b4416456292 100644 --- a/src/licensedcode/data/rules/gpl-3.0_375.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_375.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +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; version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_375.yml b/src/licensedcode/data/rules/gpl-3.0_375.yml deleted file mode 100644 index 2fe20f2b1bf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_375.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_376.RULE b/src/licensedcode/data/rules/gpl-3.0_376.RULE index 6c27eac6a18..27e12f9183a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_376.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_376.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +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; version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_376.yml b/src/licensedcode/data/rules/gpl-3.0_376.yml deleted file mode 100644 index 2fe20f2b1bf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_376.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_377.RULE b/src/licensedcode/data/rules/gpl-3.0_377.RULE index dedb908c058..826749948c0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_377.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_377.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE GPL 3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_377.yml b/src/licensedcode/data/rules/gpl-3.0_377.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_378.RULE b/src/licensedcode/data/rules/gpl-3.0_378.RULE index 72b16894204..5715f9935a8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_378.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_378.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + the GNU General Public License, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_378.yml b/src/licensedcode/data/rules/gpl-3.0_378.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_378.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_379.RULE b/src/licensedcode/data/rules/gpl-3.0_379.RULE index ee3dfcb6d9a..d785a62602c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_379.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_379.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_379.yml b/src/licensedcode/data/rules/gpl-3.0_379.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_379.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_38.RULE b/src/licensedcode/data/rules/gpl-3.0_38.RULE index f08816329b9..fc0663ecd46 100644 --- a/src/licensedcode/data/rules/gpl-3.0_38.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public license 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_38.yml b/src/licensedcode/data/rules/gpl-3.0_38.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_380.RULE b/src/licensedcode/data/rules/gpl-3.0_380.RULE index 8c6cfd7b576..75294d9cd31 100644 --- a/src/licensedcode/data/rules/gpl-3.0_380.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_380.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Update GPL to version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_380.yml b/src/licensedcode/data/rules/gpl-3.0_380.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_380.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_381.RULE b/src/licensedcode/data/rules/gpl-3.0_381.RULE index 60f2b8c058f..56fe3a9714d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_381.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_381.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv3 +--- + COPYING.GPLv3: GNU General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_381.yml b/src/licensedcode/data/rules/gpl-3.0_381.yml deleted file mode 100644 index 414979af90c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_381.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0_382.RULE b/src/licensedcode/data/rules/gpl-3.0_382.RULE index 4648abd6749..ed4a64e43d6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_382.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_382.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_382.yml b/src/licensedcode/data/rules/gpl-3.0_382.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_382.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_383.RULE b/src/licensedcode/data/rules/gpl-3.0_383.RULE index 7f75a6a154e..d9a90a37015 100644 --- a/src/licensedcode/data/rules/gpl-3.0_383.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_383.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE GPL 3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_383.yml b/src/licensedcode/data/rules/gpl-3.0_383.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_383.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_384.RULE b/src/licensedcode/data/rules/gpl-3.0_384.RULE index 0d65e12c767..732ace70423 100644 --- a/src/licensedcode/data/rules/gpl-3.0_384.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_384.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU General Public License v3 ("GPL v3"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_384.yml b/src/licensedcode/data/rules/gpl-3.0_384.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_384.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_385.RULE b/src/licensedcode/data/rules/gpl-3.0_385.RULE index b0435e6ccd0..8146b18c6c5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_385.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_385.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_385.yml b/src/licensedcode/data/rules/gpl-3.0_385.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_385.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_386.RULE b/src/licensedcode/data/rules/gpl-3.0_386.RULE index 3521788d1d0..c4f12b68d53 100644 --- a/src/licensedcode/data/rules/gpl-3.0_386.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_386.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU GPL v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_386.yml b/src/licensedcode/data/rules/gpl-3.0_386.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_387.RULE b/src/licensedcode/data/rules/gpl-3.0_387.RULE index eb5e08ba28f..21972dc8f1d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_387.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_387.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of version 3 of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_387.yml b/src/licensedcode/data/rules/gpl-3.0_387.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_388.RULE b/src/licensedcode/data/rules/gpl-3.0_388.RULE index 39ee04967f5..2c5262755c5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_388.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_388.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU GPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_388.yml b/src/licensedcode/data/rules/gpl-3.0_388.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_389.RULE b/src/licensedcode/data/rules/gpl-3.0_389.RULE index abe7ff07e9a..c43b8b3658d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_389.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_389.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + .. _`GNU GPL v3.0`: http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_389.yml b/src/licensedcode/data/rules/gpl-3.0_389.yml deleted file mode 100644 index e0018b6a76f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_389.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_39.RULE b/src/licensedcode/data/rules/gpl-3.0_39.RULE index ece856256f7..8febcb1f6f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_39.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public license v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_39.yml b/src/licensedcode/data/rules/gpl-3.0_39.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_390.RULE b/src/licensedcode/data/rules/gpl-3.0_390.RULE index 6bb76ce88cc..84fe2aef721 100644 --- a/src/licensedcode/data/rules/gpl-3.0_390.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_390.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + All of our software is open source (GPL-3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_390.yml b/src/licensedcode/data/rules/gpl-3.0_390.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_390.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_391.RULE b/src/licensedcode/data/rules/gpl-3.0_391.RULE index e1ea1c0c0b1..3b5b04537ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_391.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_391.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_391.yml b/src/licensedcode/data/rules/gpl-3.0_391.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_392.RULE b/src/licensedcode/data/rules/gpl-3.0_392.RULE index 288f948fe1b..c82ebc970bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_392.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_392.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the GPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_392.yml b/src/licensedcode/data/rules/gpl-3.0_392.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_392.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_393.RULE b/src/licensedcode/data/rules/gpl-3.0_393.RULE index 3048a8965ac..c4effb2e164 100644 --- a/src/licensedcode/data/rules/gpl-3.0_393.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_393.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On a Debian system you can find a copy of this license in -/usr/share/common-licenses/GPL-3. +/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_393.yml b/src/licensedcode/data/rules/gpl-3.0_393.yml deleted file mode 100644 index ed054c5e21f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_393.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_394.RULE b/src/licensedcode/data/rules/gpl-3.0_394.RULE index 0208e930fd8..d0a841117ae 100644 --- a/src/licensedcode/data/rules/gpl-3.0_394.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_394.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems, the complete text of the GNU General Public - License version 3 can be found in '/usr/share/common-licenses/GPL-3'. + License version 3 can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_394.yml b/src/licensedcode/data/rules/gpl-3.0_394.yml deleted file mode 100644 index 7754a2350d6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_394.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_395.RULE b/src/licensedcode/data/rules/gpl-3.0_395.RULE index 5e7df6f5e7f..e6e101e3346 100644 --- a/src/licensedcode/data/rules/gpl-3.0_395.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_395.RULE @@ -1 +1,9 @@ -The GNU General Public License v3 text is contained in /usr/share/common-licenses/GPL-3. +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + +The GNU General Public License v3 text is contained in /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_395.yml b/src/licensedcode/data/rules/gpl-3.0_395.yml deleted file mode 100644 index 258bcc22878..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_395.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_396.RULE b/src/licensedcode/data/rules/gpl-3.0_396.RULE index aa08d325d7e..09b53c695c9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_396.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_396.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + the GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_396.yml b/src/licensedcode/data/rules/gpl-3.0_396.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_396.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_397.RULE b/src/licensedcode/data/rules/gpl-3.0_397.RULE index f237d30772b..cce2068f07f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_397.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_397.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +notes: seen in some SPDX templates +--- + insert GPL v3 text here \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_397.yml b/src/licensedcode/data/rules/gpl-3.0_397.yml deleted file mode 100644 index 7689223090a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_397.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -notes: seen in some SPDX templates diff --git a/src/licensedcode/data/rules/gpl-3.0_398.RULE b/src/licensedcode/data/rules/gpl-3.0_398.RULE index 6437220a1fe..bd8b9bf9517 100644 --- a/src/licensedcode/data/rules/gpl-3.0_398.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_398.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the General Public License v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_398.yml b/src/licensedcode/data/rules/gpl-3.0_398.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_399.RULE b/src/licensedcode/data/rules/gpl-3.0_399.RULE index 5e6dabc4729..93b923c3878 100644 --- a/src/licensedcode/data/rules/gpl-3.0_399.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_399.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + the effective license is GPLv3 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_399.yml b/src/licensedcode/data/rules/gpl-3.0_399.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_399.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_4.RULE b/src/licensedcode/data/rules/gpl-3.0_4.RULE index b50d5593c33..79276640838 100644 --- a/src/licensedcode/data/rules/gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + Alternatively, this file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE.GPL included in the diff --git a/src/licensedcode/data/rules/gpl-3.0_4.yml b/src/licensedcode/data/rules/gpl-3.0_4.yml deleted file mode 100644 index d54cf1a75cf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_40.RULE b/src/licensedcode/data/rules/gpl-3.0_40.RULE index b24b6cc78c5..3e26427891e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_40.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_40.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + All source code writen by me falls under the terms of the GNU General Public Licence Version 3. See: https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_40.yml b/src/licensedcode/data/rules/gpl-3.0_40.yml deleted file mode 100644 index 4f7e7e5e03c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_400.RULE b/src/licensedcode/data/rules/gpl-3.0_400.RULE index 6482916e0eb..2576d76e3e1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_400.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_400.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - GPL3 +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, version 3. The complete license terms can be found in the file GPL3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_400.yml b/src/licensedcode/data/rules/gpl-3.0_400.yml deleted file mode 100644 index e770a49a439..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_400.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - GPL3 diff --git a/src/licensedcode/data/rules/gpl-3.0_401.RULE b/src/licensedcode/data/rules/gpl-3.0_401.RULE index a96c2318c43..42f8bd50dde 100644 --- a/src/licensedcode/data/rules/gpl-3.0_401.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_401.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The program is released under GPL 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_401.yml b/src/licensedcode/data/rules/gpl-3.0_401.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_401.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_402.RULE b/src/licensedcode/data/rules/gpl-3.0_402.RULE index 8163ae47920..1211d06d690 100644 --- a/src/licensedcode/data/rules/gpl-3.0_402.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_402.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + license: The program is released under GPL 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_402.yml b/src/licensedcode/data/rules/gpl-3.0_402.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_402.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_403.RULE b/src/licensedcode/data/rules/gpl-3.0_403.RULE index 6243724a1eb..d7130ffbae2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_403.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_403.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_403.yml b/src/licensedcode/data/rules/gpl-3.0_403.yml deleted file mode 100644 index b932580c2a8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_403.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0_404.RULE b/src/licensedcode/data/rules/gpl-3.0_404.RULE index 23421735199..1277fe02534 100644 --- a/src/licensedcode/data/rules/gpl-3.0_404.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_404.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/gpl-3.0_404.yml b/src/licensedcode/data/rules/gpl-3.0_404.yml deleted file mode 100644 index 16df597b2c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_404.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_405.RULE b/src/licensedcode/data/rules/gpl-3.0_405.RULE index 4fec8db3af4..9fc7dd7bf35 100644 --- a/src/licensedcode/data/rules/gpl-3.0_405.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_405.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +--- + On Debian systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_405.yml b/src/licensedcode/data/rules/gpl-3.0_405.yml deleted file mode 100644 index eb42cd8d440..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_405.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_406.RULE b/src/licensedcode/data/rules/gpl-3.0_406.RULE index 6863df5393d..db08265a47e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_406.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_406.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Copying +--- + Adding the GPL v3 Copying file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_406.yml b/src/licensedcode/data/rules/gpl-3.0_406.yml deleted file mode 100644 index 61bf4ac74a2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_406.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - Copying diff --git a/src/licensedcode/data/rules/gpl-3.0_407.RULE b/src/licensedcode/data/rules/gpl-3.0_407.RULE index 4aff5cca9b2..39c9980615f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_407.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_407.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Putting GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_407.yml b/src/licensedcode/data/rules/gpl-3.0_407.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_407.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_408.RULE b/src/licensedcode/data/rules/gpl-3.0_408.RULE index f27c3a87933..b49c49178ae 100644 --- a/src/licensedcode/data/rules/gpl-3.0_408.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_408.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - copying +--- + Adding the copying file for GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_408.yml b/src/licensedcode/data/rules/gpl-3.0_408.yml deleted file mode 100644 index c6fee56d7d3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_408.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - copying diff --git a/src/licensedcode/data/rules/gpl-3.0_409.RULE b/src/licensedcode/data/rules/gpl-3.0_409.RULE index 0345b3545bd..177c78cc0af 100644 --- a/src/licensedcode/data/rules/gpl-3.0_409.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_409.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Put the GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_409.yml b/src/licensedcode/data/rules/gpl-3.0_409.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_409.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_41.RULE b/src/licensedcode/data/rules/gpl-3.0_41.RULE index 30808efbe91..c8a68b52939 100644 --- a/src/licensedcode/data/rules/gpl-3.0_41.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + and may be licenced for use under version 3 of the GNU General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_41.yml b/src/licensedcode/data/rules/gpl-3.0_41.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_410.RULE b/src/licensedcode/data/rules/gpl-3.0_410.RULE index e41ace668de..4d744128c45 100644 --- a/src/licensedcode/data/rules/gpl-3.0_410.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_410.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of the General Public License (GPL) Version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_410.yml b/src/licensedcode/data/rules/gpl-3.0_410.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_410.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_411.RULE b/src/licensedcode/data/rules/gpl-3.0_411.RULE index 3dc20e7a4d5..05293923611 100644 --- a/src/licensedcode/data/rules/gpl-3.0_411.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_411.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + the source code published in this project, in the scripts folder, has the GPL V3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_411.yml b/src/licensedcode/data/rules/gpl-3.0_411.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_411.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_412.RULE b/src/licensedcode/data/rules/gpl-3.0_412.RULE index 276118da5e2..4eda6e038d8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_412.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_412.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + has the GPL V3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_412.yml b/src/licensedcode/data/rules/gpl-3.0_412.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_412.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_413.RULE b/src/licensedcode/data/rules/gpl-3.0_413.RULE index e2d1c582a32..962750d0391 100644 --- a/src/licensedcode/data/rules/gpl-3.0_413.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_413.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU GENERAL PUBLIC LICENSE v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_413.yml b/src/licensedcode/data/rules/gpl-3.0_413.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_413.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_414.RULE b/src/licensedcode/data/rules/gpl-3.0_414.RULE index bde05a48e06..f317de9b92e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_414.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_414.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + The complete text of the GNU General Public License can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_414.yml b/src/licensedcode/data/rules/gpl-3.0_414.yml deleted file mode 100644 index 6ba7fb65a74..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_414.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_415.RULE b/src/licensedcode/data/rules/gpl-3.0_415.RULE index 513419af7f0..71f9b7f1100 100644 --- a/src/licensedcode/data/rules/gpl-3.0_415.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_415.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + General Public License (GPL) Version 3 Details of these licenses can be found at: www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_415.yml b/src/licensedcode/data/rules/gpl-3.0_415.yml deleted file mode 100644 index 9142a923c42..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_415.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_416.RULE b/src/licensedcode/data/rules/gpl-3.0_416.RULE index 1f2141c4153..cbe4495a462 100644 --- a/src/licensedcode/data/rules/gpl-3.0_416.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_416.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + # This software is distributed under the terms of the GNU General Public # # Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_416.yml b/src/licensedcode/data/rules/gpl-3.0_416.yml deleted file mode 100644 index 2a04d04ba48..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_416.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0_417.RULE b/src/licensedcode/data/rules/gpl-3.0_417.RULE index 09fd8155b34..8383282e6a4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_417.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_417.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-3.0_417.yml b/src/licensedcode/data/rules/gpl-3.0_417.yml deleted file mode 100644 index 16df597b2c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_417.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_418.RULE b/src/licensedcode/data/rules/gpl-3.0_418.RULE index d7d58dc2e5d..3852d3ccb97 100644 --- a/src/licensedcode/data/rules/gpl-3.0_418.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_418.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-3.0_418.yml b/src/licensedcode/data/rules/gpl-3.0_418.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_418.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_419.RULE b/src/licensedcode/data/rules/gpl-3.0_419.RULE index ad67ec22a53..8aca76219d4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_419.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_419.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems a full copy of the GPL 3 can be found at /usr/share/common-licenses/GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_419.yml b/src/licensedcode/data/rules/gpl-3.0_419.yml deleted file mode 100644 index 6ba7fb65a74..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_419.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_42.RULE b/src/licensedcode/data/rules/gpl-3.0_42.RULE index 34f862f5336..5014c11efff 100644 --- a/src/licensedcode/data/rules/gpl-3.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_42.RULE @@ -1 +1,9 @@ -code is released under the GNU General Public Licence version 3.0 (http://www.gnu.org/licenses/gpl-3.0.html) +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + +code is released under the GNU General Public Licence version 3.0 (http://www.gnu.org/licenses/gpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_42.yml b/src/licensedcode/data/rules/gpl-3.0_42.yml deleted file mode 100644 index 6ca8cc8e78c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_420.RULE b/src/licensedcode/data/rules/gpl-3.0_420.RULE index 93cb5f4ef72..3802094581e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_420.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_420.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + library is released under the GNU General Public License, version 3 (GPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_420.yml b/src/licensedcode/data/rules/gpl-3.0_420.yml deleted file mode 100644 index d54cf1a75cf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_420.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_421.RULE b/src/licensedcode/data/rules/gpl-3.0_421.RULE index 9586c4609ce..a4ad822dea6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_421.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_421.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License is in `/usr/share/common-licenses/GPL', version 3 of this license in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_421.yml b/src/licensedcode/data/rules/gpl-3.0_421.yml deleted file mode 100644 index 6ba7fb65a74..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_421.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_422.RULE b/src/licensedcode/data/rules/gpl-3.0_422.RULE index 7ec0fa42d80..2c5e93e74ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_422.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_422.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Licensing: All the source code specific to this project is licensed under a [GNU-GPL license (v. 3)](http://www.gnu.org/licenses/gpl.html) All the usual liability waivers and disclaimers about using this code at your own considerable risk apply. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_422.yml b/src/licensedcode/data/rules/gpl-3.0_422.yml deleted file mode 100644 index 0cb92a0bc08..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_422.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_423.RULE b/src/licensedcode/data/rules/gpl-3.0_423.RULE index c27a1bf2163..161469efde2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_423.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_423.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Licensing: All the source code specific to this project is licensed uner a GNU-GPL license (v. 3) http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_423.yml b/src/licensedcode/data/rules/gpl-3.0_423.yml deleted file mode 100644 index 0cb92a0bc08..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_423.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_424.RULE b/src/licensedcode/data/rules/gpl-3.0_424.RULE index ec6b6e4c0dd..50fa490f7fd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_424.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_424.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian GNU/Linux systems a full copy of the GPL 3 can be found at /usr/share/common-licenses/GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_424.yml b/src/licensedcode/data/rules/gpl-3.0_424.yml deleted file mode 100644 index 258bcc22878..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_424.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_425.RULE b/src/licensedcode/data/rules/gpl-3.0_425.RULE index fd509f2cec0..ae7b0884da7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_425.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_425.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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; version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_425.yml b/src/licensedcode/data/rules/gpl-3.0_425.yml deleted file mode 100644 index 0e167b1d762..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_425.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_426.RULE b/src/licensedcode/data/rules/gpl-3.0_426.RULE index ca2640ba458..1c9aba63637 100644 --- a/src/licensedcode/data/rules/gpl-3.0_426.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_426.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian GNU/Linux systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_426.yml b/src/licensedcode/data/rules/gpl-3.0_426.yml deleted file mode 100644 index 258bcc22878..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_426.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_427.RULE b/src/licensedcode/data/rules/gpl-3.0_427.RULE index d12f8d58795..9e07296f28e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_427.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_427.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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. diff --git a/src/licensedcode/data/rules/gpl-3.0_427.yml b/src/licensedcode/data/rules/gpl-3.0_427.yml deleted file mode 100644 index 0e167b1d762..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_427.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_428.RULE b/src/licensedcode/data/rules/gpl-3.0_428.RULE index 73bae50318b..2b0435f8b4e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_428.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_428.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/gpl-3.0_428.yml b/src/licensedcode/data/rules/gpl-3.0_428.yml deleted file mode 100644 index 0e167b1d762..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_428.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_429.RULE b/src/licensedcode/data/rules/gpl-3.0_429.RULE index 59fcc44798d..63bfac41d4e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_429.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_429.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the full text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_429.yml b/src/licensedcode/data/rules/gpl-3.0_429.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_429.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_43.RULE b/src/licensedcode/data/rules/gpl-3.0_43.RULE index f1d91168e64..713b4246819 100644 --- a/src/licensedcode/data/rules/gpl-3.0_43.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_43.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Distributed under GNU General Public Licence v3 -http://www.gnu.org/licenses/gpl.html +http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_43.yml b/src/licensedcode/data/rules/gpl-3.0_43.yml deleted file mode 100644 index e94ef82b714..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_430.RULE b/src/licensedcode/data/rules/gpl-3.0_430.RULE index 75d63a54792..9cd16b91c10 100644 --- a/src/licensedcode/data/rules/gpl-3.0_430.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_430.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public - License version 3 can be found in '/usr/share/common-licenses/GPL-3'. + License version 3 can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_430.yml b/src/licensedcode/data/rules/gpl-3.0_430.yml deleted file mode 100644 index 5cdae28077b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_430.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_431.RULE b/src/licensedcode/data/rules/gpl-3.0_431.RULE index d0b8f6aa802..fc155f8d37c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_431.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_431.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + licensed under GNU GPLv3 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_431.yml b/src/licensedcode/data/rules/gpl-3.0_431.yml deleted file mode 100644 index e84afa547af..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_431.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_432.RULE b/src/licensedcode/data/rules/gpl-3.0_432.RULE index c893b6e728b..c1251e49c83 100644 --- a/src/licensedcode/data/rules/gpl-3.0_432.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_432.RULE @@ -1 +1,9 @@ -Copyright: GNU GENERAL PUBLIC LICENSE version 3 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + +Copyright: GNU GENERAL PUBLIC LICENSE version 3 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_432.yml b/src/licensedcode/data/rules/gpl-3.0_432.yml deleted file mode 100644 index 4b700655373..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_432.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_433.RULE b/src/licensedcode/data/rules/gpl-3.0_433.RULE index 574fd4f99a5..6e967479c79 100644 --- a/src/licensedcode/data/rules/gpl-3.0_433.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_433.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, Version 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-3.0_433.yml b/src/licensedcode/data/rules/gpl-3.0_433.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_433.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_434.RULE b/src/licensedcode/data/rules/gpl-3.0_434.RULE index d53b3aa3653..cdcc38dfb4c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_434.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_434.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU General Public * License as published by the Free Software Foundation. @@ -8,4 +16,4 @@ * 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 + * along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_434.yml b/src/licensedcode/data/rules/gpl-3.0_434.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_434.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_435.RULE b/src/licensedcode/data/rules/gpl-3.0_435.RULE index 01016d21e67..1db632c8b3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_435.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_435.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + mq_open_tests 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, version 3. @@ -7,4 +15,4 @@ 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. -For the full text of the license, see . +For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_435.yml b/src/licensedcode/data/rules/gpl-3.0_435.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_435.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_436.RULE b/src/licensedcode/data/rules/gpl-3.0_436.RULE index 9e3638597e0..9ba01ef5a70 100644 --- a/src/licensedcode/data/rules/gpl-3.0_436.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_436.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + * This program is licensed to you under Version 3 only of the GNU General Public License 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. diff --git a/src/licensedcode/data/rules/gpl-3.0_436.yml b/src/licensedcode/data/rules/gpl-3.0_436.yml deleted file mode 100644 index 77b1ff18a35..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_436.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0_437.RULE b/src/licensedcode/data/rules/gpl-3.0_437.RULE index 824d3a1618f..0122bf18928 100644 --- a/src/licensedcode/data/rules/gpl-3.0_437.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_437.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Distributed under GNU General Public Licence v3 -https://www.gnu.org/licenses/gpl.html +https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_437.yml b/src/licensedcode/data/rules/gpl-3.0_437.yml deleted file mode 100644 index b4bd287ac11..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_437.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_438.RULE b/src/licensedcode/data/rules/gpl-3.0_438.RULE index 733b0e9b103..b775699f80a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_438.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_438.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- -license GNU General Public Licence https://www.gnu.org/licenses/gpl-3.0.html + +license GNU General Public Licence https://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_438.yml b/src/licensedcode/data/rules/gpl-3.0_438.yml deleted file mode 100644 index a4e7d9554e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_438.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_439.RULE b/src/licensedcode/data/rules/gpl-3.0_439.RULE index 9d17ca4da8e..466a42ff2c3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_439.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_439.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. @@ -7,4 +15,4 @@ is free software: you can redistribute it and/or modify * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * For the full text of the license, see . + * For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_439.yml b/src/licensedcode/data/rules/gpl-3.0_439.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_439.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_44.RULE b/src/licensedcode/data/rules/gpl-3.0_44.RULE index 5381a7b9b74..9ebd876bb4b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_44.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_44.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + which is licensed under the * GNU General Public Licence version 3 (GPLv3). You can redistribute * and/or modify it under the terms of the GPLv3, and you must not use @@ -9,4 +16,4 @@ which is licensed under the * GNU General Public Licence for more details. * * You should have received a copy of the GNU General Public Licence - * along with this program. If not, see . + * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_44.yml b/src/licensedcode/data/rules/gpl-3.0_44.yml deleted file mode 100644 index b591a489aa8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_44.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_440.RULE b/src/licensedcode/data/rules/gpl-3.0_440.RULE index f99d627197b..fc871190ce7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_440.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_440.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + mq_perf_tests 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, version 3. @@ -7,5 +15,4 @@ 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. -For the full text of the license, see . - +For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_440.yml b/src/licensedcode/data/rules/gpl-3.0_440.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_440.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_441.RULE b/src/licensedcode/data/rules/gpl-3.0_441.RULE index 8c3e3046ed2..ff9c404e5d4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_441.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_441.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + This software is distributed under the terms of the GNU General Public License v3, dated 2007/06/29 (see https://www.gnu.org/licenses/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_441.yml b/src/licensedcode/data/rules/gpl-3.0_441.yml deleted file mode 100644 index e84afa547af..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_441.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_442.RULE b/src/licensedcode/data/rules/gpl-3.0_442.RULE index afbe5c9c4bc..094bc9b2dae 100644 --- a/src/licensedcode/data/rules/gpl-3.0_442.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_442.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/src/licensedcode/data/rules/gpl-3.0_442.yml b/src/licensedcode/data/rules/gpl-3.0_442.yml deleted file mode 100644 index 424c422b169..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_442.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_443.RULE b/src/licensedcode/data/rules/gpl-3.0_443.RULE index 7389c6e36af..02e9fcc06bd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_443.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_443.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + Alternatively, this file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE.GPL included in the diff --git a/src/licensedcode/data/rules/gpl-3.0_443.yml b/src/licensedcode/data/rules/gpl-3.0_443.yml deleted file mode 100644 index 89237aed04e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_443.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_444.RULE b/src/licensedcode/data/rules/gpl-3.0_444.RULE index 9e07ab06e0e..26b5d5b4912 100644 --- a/src/licensedcode/data/rules/gpl-3.0_444.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_444.RULE @@ -1 +1,9 @@ -code is released under the GNU General Public Licence version 3.0 (https://www.gnu.org/licenses/gpl-3.0.html) +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- + +code is released under the GNU General Public Licence version 3.0 (https://www.gnu.org/licenses/gpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_444.yml b/src/licensedcode/data/rules/gpl-3.0_444.yml deleted file mode 100644 index 582828739bc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_444.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_445.RULE b/src/licensedcode/data/rules/gpl-3.0_445.RULE index 913dcd66ce1..2cfd16c854e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_445.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_445.RULE @@ -1 +1,9 @@ -// Licensed under GPLv3, full text at https://www.gnu.org/licenses/gpl-3.0.txt +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + +// Licensed under GPLv3, full text at https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_445.yml b/src/licensedcode/data/rules/gpl-3.0_445.yml deleted file mode 100644 index 0dd5a96fe66..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_445.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_446.RULE b/src/licensedcode/data/rules/gpl-3.0_446.RULE index 073216f7eb7..37a7ddefbaa 100644 --- a/src/licensedcode/data/rules/gpl-3.0_446.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_446.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/quick-guide-gplv3.html +--- + https://www.gnu.org/licenses/quick-guide-gplv3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_446.yml b/src/licensedcode/data/rules/gpl-3.0_446.yml deleted file mode 100644 index 498249af47f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_446.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/quick-guide-gplv3.html diff --git a/src/licensedcode/data/rules/gpl-3.0_447.RULE b/src/licensedcode/data/rules/gpl-3.0_447.RULE index 47e9002887b..dce9b33a485 100644 --- a/src/licensedcode/data/rules/gpl-3.0_447.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_447.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +relevance: 100 +notes: this text is damaged by some script... +ignorable_urls: + - https://www.gnu.org/licenses/ + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -671,4 +681,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_447.yml b/src/licensedcode/data/rules/gpl-3.0_447.yml deleted file mode 100644 index 21a1cc737a8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_447.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -relevance: 100 -notes: this text is damaged by some script... -ignorable_urls: - - https://www.gnu.org/licenses/ - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_448.RULE b/src/licensedcode/data/rules/gpl-3.0_448.RULE index 818f60e55bf..1f091334123 100644 --- a/src/licensedcode/data/rules/gpl-3.0_448.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_448.RULE @@ -1,3 +1,19 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org/ http://fsf.org +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/gpl-3.0.rdf + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU General Public License v3.0 - GNU Project - Free Software Foundation (FSF) https://www.gnu.org/licenses/gpl-3.0.rdf @@ -684,5 +700,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read - "https://www.gnu.org/philosophy/why-not-lgpl.html" https://www.gnu.org/philosophy/why-not-lgpl.html . - + "https://www.gnu.org/philosophy/why-not-lgpl.html" https://www.gnu.org/philosophy/why-not-lgpl.html . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_448.yml b/src/licensedcode/data/rules/gpl-3.0_448.yml deleted file mode 100644 index 11f0e3a62c3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_448.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org/ http://fsf.org -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses - - https://www.gnu.org/licenses/ - - https://www.gnu.org/licenses/gpl-3.0.rdf - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_449.RULE b/src/licensedcode/data/rules/gpl-3.0_449.RULE index 386ff1071cd..e3620478a41 100644 --- a/src/licensedcode/data/rules/gpl-3.0_449.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_449.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Licensing: All the source code specific to this project is licensed under a [GNU-GPL license (v. 3)](https://www.gnu.org/licenses/gpl.html) All the usual liability waivers and disclaimers about using this code at your own considerable risk apply. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_449.yml b/src/licensedcode/data/rules/gpl-3.0_449.yml deleted file mode 100644 index e84afa547af..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_449.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_45.RULE b/src/licensedcode/data/rules/gpl-3.0_45.RULE index 111bbb10df1..d26a88d37a8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_45.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_45.RULE @@ -1 +1,11 @@ -copyright = GNU General Public Licence, version 3, +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright GNU General +ignorable_holders: + - GNU General +--- + +copyright = GNU General Public Licence, version 3, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_45.yml b/src/licensedcode/data/rules/gpl-3.0_45.yml deleted file mode 100644 index a2122607b6c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_45.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright GNU General -ignorable_holders: - - GNU General diff --git a/src/licensedcode/data/rules/gpl-3.0_450.RULE b/src/licensedcode/data/rules/gpl-3.0_450.RULE index e97794f1870..e769c692654 100644 --- a/src/licensedcode/data/rules/gpl-3.0_450.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_450.RULE @@ -1,3 +1,18 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +relevance: 100 +notes: a damaged gpl 3 text +ignorable_copyrights: + - Copyright 2007 Free Software Foundation, Inc. http://fsf.org/' http://fsf.org +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU General Public License version 3 Version 3, 29 June 2007 @@ -736,6 +751,4 @@ under certain conditions; type " show c " for details. subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this - License. But first, please read https://www.gnu.org/philosophy/why-not-lgpl.html">https://www.gnu.org/philosophy/why-not-lgpl.html . - - \ No newline at end of file + License. But first, please read https://www.gnu.org/philosophy/why-not-lgpl.html">https://www.gnu.org/philosophy/why-not-lgpl.html . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_450.yml b/src/licensedcode/data/rules/gpl-3.0_450.yml deleted file mode 100644 index 9bfa694cdf1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_450.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -relevance: 100 -notes: a damaged gpl 3 text -ignorable_copyrights: - - Copyright 2007 Free Software Foundation, Inc. http://fsf.org/' http://fsf.org -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_451.RULE b/src/licensedcode/data/rules/gpl-3.0_451.RULE index b9c5f2dbdd2..914c7dcc70f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_451.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_451.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/License-GPL%20v3-blue.svg + - https://www.gnu.org/licenses/gpl-3.0 +--- + License [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_451.yml b/src/licensedcode/data/rules/gpl-3.0_451.yml deleted file mode 100644 index 31ec263010a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_451.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/License-GPL%20v3-blue.svg - - https://www.gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_452.RULE b/src/licensedcode/data/rules/gpl-3.0_452.RULE index 7873548c976..cba21314fa8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_452.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_452.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + This software is distributed under the terms of the GNU General Public License % as published by the Free Software Foundation. Further details on the GPLv3 % license can be found at https://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_452.yml b/src/licensedcode/data/rules/gpl-3.0_452.yml deleted file mode 100644 index 19a3fe3995b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_452.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_453.RULE b/src/licensedcode/data/rules/gpl-3.0_453.RULE index 925a5f07665..70aaaaa83f2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_453.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_453.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +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. @@ -8,4 +17,4 @@ SATISFACTORY QUALITY, 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 +this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_453.yml b/src/licensedcode/data/rules/gpl-3.0_453.yml deleted file mode 100644 index a80926aaf06..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_453.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_454.RULE b/src/licensedcode/data/rules/gpl-3.0_454.RULE index 312cfd85fb6..0dfc52a5cd1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_454.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_454.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # This library 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 diff --git a/src/licensedcode/data/rules/gpl-3.0_454.yml b/src/licensedcode/data/rules/gpl-3.0_454.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_454.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_455.RULE b/src/licensedcode/data/rules/gpl-3.0_455.RULE index 8d468380e85..984f0f73bbc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_455.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_455.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/src/licensedcode/data/rules/gpl-3.0_455.yml b/src/licensedcode/data/rules/gpl-3.0_455.yml deleted file mode 100644 index 22533d58e3a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_455.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_456.RULE b/src/licensedcode/data/rules/gpl-3.0_456.RULE index 5ede2dd7b0d..8feb6ff0153 100644 --- a/src/licensedcode/data/rules/gpl-3.0_456.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_456.RULE @@ -1 +1,9 @@ - [GNU License](https://www.gnu.org/licenses/gpl-3.0.en.html) +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + + [GNU License](https://www.gnu.org/licenses/gpl-3.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_456.yml b/src/licensedcode/data/rules/gpl-3.0_456.yml deleted file mode 100644 index 29d7c8daa91..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_456.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_457.RULE b/src/licensedcode/data/rules/gpl-3.0_457.RULE index 54542184d83..0b9f647f649 100644 --- a/src/licensedcode/data/rules/gpl-3.0_457.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_457.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: GPL-3 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 diff --git a/src/licensedcode/data/rules/gpl-3.0_457.yml b/src/licensedcode/data/rules/gpl-3.0_457.yml deleted file mode 100644 index a80926aaf06..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_457.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_458.RULE b/src/licensedcode/data/rules/gpl-3.0_458.RULE index 6996026c1cc..6f6724e17fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_458.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_458.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + which is licensed under the * GNU General Public Licence version 3 (GPLv3). You can redistribute * and/or modify it under the terms of the GPLv3, and you must not use @@ -9,4 +17,4 @@ which is licensed under the * GNU General Public Licence for more details. * * You should have received a copy of the GNU General Public Licence - * along with this program. If not, see . + * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_458.yml b/src/licensedcode/data/rules/gpl-3.0_458.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_458.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_459.RULE b/src/licensedcode/data/rules/gpl-3.0_459.RULE index f31038b2073..5b702cbaea3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_459.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_459.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Licensing: All the source code specific to this project is licensed uner a GNU-GPL license (v. 3) https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_459.yml b/src/licensedcode/data/rules/gpl-3.0_459.yml deleted file mode 100644 index e84afa547af..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_459.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_46.RULE b/src/licensedcode/data/rules/gpl-3.0_46.RULE index 2b236cdc6b2..63999937a9f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_46.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_46.RULE @@ -1 +1,7 @@ -Distributed under GNU General Public Licence v3 +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +Distributed under GNU General Public Licence v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_46.yml b/src/licensedcode/data/rules/gpl-3.0_46.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_460.RULE b/src/licensedcode/data/rules/gpl-3.0_460.RULE index 8a4f2ea7ca8..e976ed024b0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_460.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_460.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is distributed under the GNU General Public License (v3). A copy of this can be found in the COPYING.txt file or at https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_460.yml b/src/licensedcode/data/rules/gpl-3.0_460.yml deleted file mode 100644 index 20150208fc8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_460.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_461.RULE b/src/licensedcode/data/rules/gpl-3.0_461.RULE index d37dffc53e0..79c81a00d1d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_461.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_461.RULE @@ -1 +1,9 @@ -Copyright: GNU GENERAL PUBLIC LICENCE version 3 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + +Copyright: GNU GENERAL PUBLIC LICENCE version 3 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_461.yml b/src/licensedcode/data/rules/gpl-3.0_461.yml deleted file mode 100644 index 4b700655373..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_461.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_462.RULE b/src/licensedcode/data/rules/gpl-3.0_462.RULE index 7532f9ca45b..6393070d039 100644 --- a/src/licensedcode/data/rules/gpl-3.0_462.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_462.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation; diff --git a/src/licensedcode/data/rules/gpl-3.0_462.yml b/src/licensedcode/data/rules/gpl-3.0_462.yml deleted file mode 100644 index 311ae5dd898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_462.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_463.RULE b/src/licensedcode/data/rules/gpl-3.0_463.RULE index 82ccce11f44..8875e3305ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_463.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_463.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + `GPL-3.0` - [GNU General Public License 3.0](https://www.gnu.org/licenses/gpl-3.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_463.yml b/src/licensedcode/data/rules/gpl-3.0_463.yml deleted file mode 100644 index 29d7c8daa91..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_463.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_464.RULE b/src/licensedcode/data/rules/gpl-3.0_464.RULE index 5873c3c9431..0139be33e28 100644 --- a/src/licensedcode/data/rules/gpl-3.0_464.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_464.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + .. _`GNU GPL v3.0`: https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_464.yml b/src/licensedcode/data/rules/gpl-3.0_464.yml deleted file mode 100644 index 14b9fe8e249..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_464.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_465.RULE b/src/licensedcode/data/rules/gpl-3.0_465.RULE index 173b4edf613..d98115bf09f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_465.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_465.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + LICENSE -GNU General Public Licence, Version 3. https://www.gnu.org/licenses/gpl-3.0.txt +GNU General Public Licence, Version 3. https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_465.yml b/src/licensedcode/data/rules/gpl-3.0_465.yml deleted file mode 100644 index 0dd5a96fe66..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_465.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_466.RULE b/src/licensedcode/data/rules/gpl-3.0_466.RULE index f8312483aa5..ffe209f3de9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_466.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_466.RULE @@ -1,3 +1,19 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright © 2007 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-3.0_466.yml b/src/licensedcode/data/rules/gpl-3.0_466.yml deleted file mode 100644 index cf1131e5ea2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_466.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_467.RULE b/src/licensedcode/data/rules/gpl-3.0_467.RULE index 59489404e9a..a65e660c734 100644 --- a/src/licensedcode/data/rules/gpl-3.0_467.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_467.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + library is released under the GNU General Public License, version 3 (GPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_467.yml b/src/licensedcode/data/rules/gpl-3.0_467.yml deleted file mode 100644 index 89237aed04e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_467.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_468.RULE b/src/licensedcode/data/rules/gpl-3.0_468.RULE index 4a23ada6e26..e723e58aeb6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_468.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_468.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + and is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_468.yml b/src/licensedcode/data/rules/gpl-3.0_468.yml deleted file mode 100644 index 0e167b1d762..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_468.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_469.RULE b/src/licensedcode/data/rules/gpl-3.0_469.RULE index bd3828cd8c3..061d9e3c437 100644 --- a/src/licensedcode/data/rules/gpl-3.0_469.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_469.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + see `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_469.yml b/src/licensedcode/data/rules/gpl-3.0_469.yml deleted file mode 100644 index 258bcc22878..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_469.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_47.RULE b/src/licensedcode/data/rules/gpl-3.0_47.RULE index 42ea9b02f1b..a397ac7241b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_47.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_47.RULE @@ -1 +1,7 @@ -Distributed under the terms of the GNU General Public Licence version 3 +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +Distributed under the terms of the GNU General Public Licence version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_47.yml b/src/licensedcode/data/rules/gpl-3.0_47.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_470.RULE b/src/licensedcode/data/rules/gpl-3.0_470.RULE index eb8e0a5b19b..90dc1de6f7f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_470.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_470.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + the GNU GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_470.yml b/src/licensedcode/data/rules/gpl-3.0_470.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_470.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_471.RULE b/src/licensedcode/data/rules/gpl-3.0_471.RULE index ff23d265b2a..3b20d21354c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_471.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_471.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_471.yml b/src/licensedcode/data/rules/gpl-3.0_471.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_471.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_472.RULE b/src/licensedcode/data/rules/gpl-3.0_472.RULE index 7852d7423b6..0dd984a8352 100644 --- a/src/licensedcode/data/rules/gpl-3.0_472.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_472.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + library are under the GNU GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_472.yml b/src/licensedcode/data/rules/gpl-3.0_472.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_472.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_473.RULE b/src/licensedcode/data/rules/gpl-3.0_473.RULE index a3d69cfb6ae..8b842873cb2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_473.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_473.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_473.yml b/src/licensedcode/data/rules/gpl-3.0_473.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_473.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_474.RULE b/src/licensedcode/data/rules/gpl-3.0_474.RULE index d06cab00129..1e57ae4dca1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_474.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_474.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + The GNU General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_474.yml b/src/licensedcode/data/rules/gpl-3.0_474.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_474.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_475.RULE b/src/licensedcode/data/rules/gpl-3.0_475.RULE index beac6353cfa..402cc21dd2c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_475.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_475.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + 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; version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_475.yml b/src/licensedcode/data/rules/gpl-3.0_475.yml deleted file mode 100644 index 0e167b1d762..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_475.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_476.RULE b/src/licensedcode/data/rules/gpl-3.0_476.RULE index c11b3750160..94ae5190823 100644 --- a/src/licensedcode/data/rules/gpl-3.0_476.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_476.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems, the text of the GNU General Public - License version 3 can be found in '/usr/share/common-licenses/GPL-3'. + License version 3 can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_476.yml b/src/licensedcode/data/rules/gpl-3.0_476.yml deleted file mode 100644 index 5cdae28077b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_476.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_477.RULE b/src/licensedcode/data/rules/gpl-3.0_477.RULE index 0978a4ef885..7af5052b4c1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_477.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_477.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly + in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 +--- + On Debian systems, the text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_477.yml b/src/licensedcode/data/rules/gpl-3.0_477.yml deleted file mode 100644 index b932580c2a8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_477.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 -notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen most commonly - in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 diff --git a/src/licensedcode/data/rules/gpl-3.0_478.RULE b/src/licensedcode/data/rules/gpl-3.0_478.RULE index e08773e91ed..1754b2a3bce 100644 --- a/src/licensedcode/data/rules/gpl-3.0_478.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_478.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/gpl-3.0_478.yml b/src/licensedcode/data/rules/gpl-3.0_478.yml deleted file mode 100644 index 0e167b1d762..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_478.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_479.RULE b/src/licensedcode/data/rules/gpl-3.0_479.RULE index f9afb2887ac..fe10d3ab4fa 100644 --- a/src/licensedcode/data/rules/gpl-3.0_479.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_479.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + On Debian systems, the text of the GNU General Public License version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_479.yml b/src/licensedcode/data/rules/gpl-3.0_479.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_479.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_48.RULE b/src/licensedcode/data/rules/gpl-3.0_48.RULE index a00dbf4b860..4073134e980 100644 --- a/src/licensedcode/data/rules/gpl-3.0_48.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_48.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + LICENCE Code should be assumed to be under the GNU General Public Licence, version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_48.yml b/src/licensedcode/data/rules/gpl-3.0_48.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_480.RULE b/src/licensedcode/data/rules/gpl-3.0_480.RULE index c679adaac97..12d62f1a36c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_480.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_480.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems, the complete text of the GPL version 3 license can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_480.yml b/src/licensedcode/data/rules/gpl-3.0_480.yml deleted file mode 100644 index a023b3ed945..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_480.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_481.RULE b/src/licensedcode/data/rules/gpl-3.0_481.RULE index fff0cc0c204..ad52a79d50a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_481.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_481.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems, the complete text of the GNU General Public License version 3 can be found in file "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_481.yml b/src/licensedcode/data/rules/gpl-3.0_481.yml deleted file mode 100644 index 6ba7fb65a74..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_481.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_482.RULE b/src/licensedcode/data/rules/gpl-3.0_482.RULE index 73d1915a070..9df8f29aa69 100644 --- a/src/licensedcode/data/rules/gpl-3.0_482.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_482.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems, the complete text of the GNU General Public License 3 can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_482.yml b/src/licensedcode/data/rules/gpl-3.0_482.yml deleted file mode 100644 index 6ba7fb65a74..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_482.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_483.RULE b/src/licensedcode/data/rules/gpl-3.0_483.RULE index ea55861392b..c390f6adb6c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_483.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_483.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +notes: skinny GPL 3.0 text cut after END OF TERMS AND CONDITIONS +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 diff --git a/src/licensedcode/data/rules/gpl-3.0_483.yml b/src/licensedcode/data/rules/gpl-3.0_483.yml deleted file mode 100644 index 133deb2e31f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_483.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -notes: skinny GPL 3.0 text cut after END OF TERMS AND CONDITIONS -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-3.0_484.RULE b/src/licensedcode/data/rules/gpl-3.0_484.RULE index 2224df847b1..320094499a2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_484.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_484.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv3 +--- + Licensed under terms of GPL version 3. See COPYING.GPLv3 for full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_484.yml b/src/licensedcode/data/rules/gpl-3.0_484.yml deleted file mode 100644 index 3f545772ac9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_484.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0_485.RULE b/src/licensedcode/data/rules/gpl-3.0_485.RULE index 92c50adc4c9..3147766e9f1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_485.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_485.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv3 +--- + This piece of software distributed under terms of GPLv3, see COPYING.GPLv3 for full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_485.yml b/src/licensedcode/data/rules/gpl-3.0_485.yml deleted file mode 100644 index 3f545772ac9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_485.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0_486.RULE b/src/licensedcode/data/rules/gpl-3.0_486.RULE index 993674f06f3..ef1107e6c5f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_486.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_486.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv3 +--- + Licensed under terms of GPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_486.yml b/src/licensedcode/data/rules/gpl-3.0_486.yml deleted file mode 100644 index 3f545772ac9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_486.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0_487.RULE b/src/licensedcode/data/rules/gpl-3.0_487.RULE index 9ce542f2f11..ee336ac30d5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_487.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_487.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv3 +--- + distributed under terms of GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_487.yml b/src/licensedcode/data/rules/gpl-3.0_487.yml deleted file mode 100644 index 3f545772ac9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_487.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0_488.RULE b/src/licensedcode/data/rules/gpl-3.0_488.RULE index 9eed99e59c8..2143515a37c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_488.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_488.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GLPv3 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_488.yml b/src/licensedcode/data/rules/gpl-3.0_488.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_488.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_489.RULE b/src/licensedcode/data/rules/gpl-3.0_489.RULE index 0e165d61f56..b54a80697ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0_489.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_489.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GLPv3 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_489.yml b/src/licensedcode/data/rules/gpl-3.0_489.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_489.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_49.RULE b/src/licensedcode/data/rules/gpl-3.0_49.RULE index c51980730b7..ce03881bee9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_49.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_49.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- -is licensed under the terms of the GNU General Public Licence version 3. + +is licensed under the terms of the GNU General Public Licence version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_49.yml b/src/licensedcode/data/rules/gpl-3.0_49.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_490.RULE b/src/licensedcode/data/rules/gpl-3.0_490.RULE index 7192c53e5e6..9ddc44f9580 100644 --- a/src/licensedcode/data/rules/gpl-3.0_490.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_490.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Seen in Signal library +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_490.yml b/src/licensedcode/data/rules/gpl-3.0_490.yml deleted file mode 100644 index bbb98fd2ddc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_490.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Seen in Signal library -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_491.RULE b/src/licensedcode/data/rules/gpl-3.0_491.RULE index 57e2ae2558f..976b3e8bada 100644 --- a/src/licensedcode/data/rules/gpl-3.0_491.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_491.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + The GNU General Public License, Version 3.0 http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_491.yml b/src/licensedcode/data/rules/gpl-3.0_491.yml deleted file mode 100644 index 06bd2467f45..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_491.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_492.RULE b/src/licensedcode/data/rules/gpl-3.0_492.RULE index 7a29b72f640..efda04ecaf3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_492.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_492.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + The GNU General Public License, Version 3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_492.yml b/src/licensedcode/data/rules/gpl-3.0_492.yml deleted file mode 100644 index dad8d930bcc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_492.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_493.RULE b/src/licensedcode/data/rules/gpl-3.0_493.RULE index 7bfbbff04aa..9ce0c322701 100644 --- a/src/licensedcode/data/rules/gpl-3.0_493.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_493.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + The GNU General Public License, Version 3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_493.yml b/src/licensedcode/data/rules/gpl-3.0_493.yml deleted file mode 100644 index 06bd2467f45..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_493.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_494.RULE b/src/licensedcode/data/rules/gpl-3.0_494.RULE index a13776b37fb..94e24bd9422 100644 --- a/src/licensedcode/data/rules/gpl-3.0_494.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_494.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-3.0 GNU General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_494.yml b/src/licensedcode/data/rules/gpl-3.0_494.yml deleted file mode 100644 index a784bdc5576..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_494.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_495.RULE b/src/licensedcode/data/rules/gpl-3.0_495.RULE index 9e2ededbf27..a2fb0dc615b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_495.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_495.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v3.0 GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_495.yml b/src/licensedcode/data/rules/gpl-3.0_495.yml deleted file mode 100644 index a784bdc5576..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_495.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_496.RULE b/src/licensedcode/data/rules/gpl-3.0_496.RULE index 6311905eaeb..06fea907edf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_496.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_496.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_496.yml b/src/licensedcode/data/rules/gpl-3.0_496.yml deleted file mode 100644 index a784bdc5576..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_496.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_497.RULE b/src/licensedcode/data/rules/gpl-3.0_497.RULE index 4281c7e6899..062aefdeb17 100644 --- a/src/licensedcode/data/rules/gpl-3.0_497.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_497.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_497.yml b/src/licensedcode/data/rules/gpl-3.0_497.yml deleted file mode 100644 index a784bdc5576..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_497.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_498.RULE b/src/licensedcode/data/rules/gpl-3.0_498.RULE index 9daa6d6218f..84d3fe23ab4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_498.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_498.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_498.yml b/src/licensedcode/data/rules/gpl-3.0_498.yml deleted file mode 100644 index 65a51608d75..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_498.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0_499.RULE b/src/licensedcode/data/rules/gpl-3.0_499.RULE index d27429184b5..fb72b936bbc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_499.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_499.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-3.0-only GNU General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_499.yml b/src/licensedcode/data/rules/gpl-3.0_499.yml deleted file mode 100644 index 65a51608d75..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_499.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0_5.RULE b/src/licensedcode/data/rules/gpl-3.0_5.RULE index 9745b9fe1c2..f62db8650ca 100644 --- a/src/licensedcode/data/rules/gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + 0. Definitions. "This License" refers to version 3 of the GNU General Public License. @@ -544,4 +549,4 @@ 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. +copy of the Program in return for a fee. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_5.yml b/src/licensedcode/data/rules/gpl-3.0_5.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_50.RULE b/src/licensedcode/data/rules/gpl-3.0_50.RULE index aff7606dd1b..3961462a3f7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_50.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_50.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- -License :GNU General Public Licence V3 + +License :GNU General Public Licence V3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_50.yml b/src/licensedcode/data/rules/gpl-3.0_50.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_500.RULE b/src/licensedcode/data/rules/gpl-3.0_500.RULE index c715d62dad6..cf750bf3697 100644 --- a/src/licensedcode/data/rules/gpl-3.0_500.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_500.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the GNU GENERAL PUBLIC LICENSE Version 3 . See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_500.yml b/src/licensedcode/data/rules/gpl-3.0_500.yml deleted file mode 100644 index 52cfb16a1a0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_500.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0_501.RULE b/src/licensedcode/data/rules/gpl-3.0_501.RULE index f688d5739d4..57d6fd1b1e6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_501.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_501.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + Licensed under the GNU GENERAL PUBLIC LICENSE Version 3 . See LICENSE.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_501.yml b/src/licensedcode/data/rules/gpl-3.0_501.yml deleted file mode 100644 index 140c27834dd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_501.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_502.RULE b/src/licensedcode/data/rules/gpl-3.0_502.RULE index ef8704cda48..7aec871a183 100644 --- a/src/licensedcode/data/rules/gpl-3.0_502.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_502.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + The GNU GPLv3. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_502.yml b/src/licensedcode/data/rules/gpl-3.0_502.yml deleted file mode 100644 index 140c27834dd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_502.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_503.RULE b/src/licensedcode/data/rules/gpl-3.0_503.RULE index f19b3feba84..8add84aa296 100644 --- a/src/licensedcode/data/rules/gpl-3.0_503.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_503.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU General Public License v3.0 only GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_503.yml b/src/licensedcode/data/rules/gpl-3.0_503.yml deleted file mode 100644 index 65a51608d75..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_503.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0_504.RULE b/src/licensedcode/data/rules/gpl-3.0_504.RULE index c065718e241..ad2e362a374 100644 --- a/src/licensedcode/data/rules/gpl-3.0_504.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_504.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_504.yml b/src/licensedcode/data/rules/gpl-3.0_504.yml deleted file mode 100644 index 96d496f5ba3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_504.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0_505.RULE b/src/licensedcode/data/rules/gpl-3.0_505.RULE index 5b9a6c28919..1da895f2a22 100644 --- a/src/licensedcode/data/rules/gpl-3.0_505.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_505.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_505.yml b/src/licensedcode/data/rules/gpl-3.0_505.yml deleted file mode 100644 index 96d496f5ba3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_505.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0_506.RULE b/src/licensedcode/data/rules/gpl-3.0_506.RULE index 0dfc22ddd17..76af1c208ec 100644 --- a/src/licensedcode/data/rules/gpl-3.0_506.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_506.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_506.yml b/src/licensedcode/data/rules/gpl-3.0_506.yml deleted file mode 100644 index 96d496f5ba3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_506.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0_507.RULE b/src/licensedcode/data/rules/gpl-3.0_507.RULE index 28e9452c50a..3b926fa29f8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_507.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_507.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-3.0 GNU General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_507.yml b/src/licensedcode/data/rules/gpl-3.0_507.yml deleted file mode 100644 index 65a51608d75..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_507.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0_508.RULE b/src/licensedcode/data/rules/gpl-3.0_508.RULE index bcbca96b48d..86da064a237 100644 --- a/src/licensedcode/data/rules/gpl-3.0_508.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_508.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU General Public License v3.0 only GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_508.yml b/src/licensedcode/data/rules/gpl-3.0_508.yml deleted file mode 100644 index 65a51608d75..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_508.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gpl-3.0_509.RULE b/src/licensedcode/data/rules/gpl-3.0_509.RULE index fa69f993e11..a5247228bdf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_509.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_509.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_509.yml b/src/licensedcode/data/rules/gpl-3.0_509.yml deleted file mode 100644 index c40a580e734..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_509.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_51.RULE b/src/licensedcode/data/rules/gpl-3.0_51.RULE index 435835cef61..f53a557f0cc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_51.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_51.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/quick-guide-gplv3.html +--- -Licence: GNU General Public licence version 3 + +Licence: GNU General Public licence version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_51.yml b/src/licensedcode/data/rules/gpl-3.0_51.yml deleted file mode 100644 index 0bc4aa0b76f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/quick-guide-gplv3.html diff --git a/src/licensedcode/data/rules/gpl-3.0_510.RULE b/src/licensedcode/data/rules/gpl-3.0_510.RULE index e4618ef53d9..e95b4a7134e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_510.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_510.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + GENERAL PUBLIC LICENSE, version 3 (GPL-3.0) http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_510.yml b/src/licensedcode/data/rules/gpl-3.0_510.yml deleted file mode 100644 index 2156d536446..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_510.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_511.RULE b/src/licensedcode/data/rules/gpl-3.0_511.RULE index ec920b53310..d312454779a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_511.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_511.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + GENERAL PUBLIC LICENSE, version 3 (GPL-3.0) http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_511.yml b/src/licensedcode/data/rules/gpl-3.0_511.yml deleted file mode 100644 index 2156d536446..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_511.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_512.RULE b/src/licensedcode/data/rules/gpl-3.0_512.RULE index a323d6014fb..acf2dc5be94 100644 --- a/src/licensedcode/data/rules/gpl-3.0_512.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_512.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_512.yml b/src/licensedcode/data/rules/gpl-3.0_512.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_512.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_513.RULE b/src/licensedcode/data/rules/gpl-3.0_513.RULE index 70644f21c3c..e5c19be76f9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_513.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_513.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + GPLv3, use at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_513.yml b/src/licensedcode/data/rules/gpl-3.0_513.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_513.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_514.RULE b/src/licensedcode/data/rules/gpl-3.0_514.RULE index 48071125fbf..02be6a2832f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_514.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_514.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Public Licence v3 (GPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_514.yml b/src/licensedcode/data/rules/gpl-3.0_514.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_514.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_515.RULE b/src/licensedcode/data/rules/gpl-3.0_515.RULE index dc8521d3781..c99a09f879d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_515.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_515.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under the GPL3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_515.yml b/src/licensedcode/data/rules/gpl-3.0_515.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_515.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_516.RULE b/src/licensedcode/data/rules/gpl-3.0_516.RULE index f22b9a187cc..d4c5422b8c3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_516.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_516.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/GNU_General_Public_License#Version_3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_516.yml b/src/licensedcode/data/rules/gpl-3.0_516.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_516.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_517.RULE b/src/licensedcode/data/rules/gpl-3.0_517.RULE index 4036bdd4d27..38b90699fb7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_517.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_517.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.txt +--- + # Licensed under the GNU General Public License, version 3. # See the file http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_517.yml b/src/licensedcode/data/rules/gpl-3.0_517.yml deleted file mode 100644 index 2156d536446..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_517.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_518.RULE b/src/licensedcode/data/rules/gpl-3.0_518.RULE index 4c99c381dd2..aba1b535274 100644 --- a/src/licensedcode/data/rules/gpl-3.0_518.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_518.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_518.yml b/src/licensedcode/data/rules/gpl-3.0_518.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_518.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_519.RULE b/src/licensedcode/data/rules/gpl-3.0_519.RULE index 38bec6b2714..db85cb95707 100644 --- a/src/licensedcode/data/rules/gpl-3.0_519.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_519.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GPL-3.0-only +--- + https://licenses.nuget.org/GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_519.yml b/src/licensedcode/data/rules/gpl-3.0_519.yml deleted file mode 100644 index c56bbb3371f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_519.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GPL-3.0-only diff --git a/src/licensedcode/data/rules/gpl-3.0_52.RULE b/src/licensedcode/data/rules/gpl-3.0_52.RULE index e98cb9ec79e..620bcfac2fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_52.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_52.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- -Licence: GNU General Public Licence version 3 + +Licence: GNU General Public Licence version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_52.yml b/src/licensedcode/data/rules/gpl-3.0_52.yml deleted file mode 100644 index a4e7d9554e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_520.RULE b/src/licensedcode/data/rules/gpl-3.0_520.RULE index 667035c2c7d..fa6df7cfe21 100644 --- a/src/licensedcode/data/rules/gpl-3.0_520.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_520.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_520.yml b/src/licensedcode/data/rules/gpl-3.0_520.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_520.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_521.RULE b/src/licensedcode/data/rules/gpl-3.0_521.RULE index 9b9aed3f227..ddb52859686 100644 --- a/src/licensedcode/data/rules/gpl-3.0_521.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_521.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + licenses: GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_521.yml b/src/licensedcode/data/rules/gpl-3.0_521.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_521.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_522.RULE b/src/licensedcode/data/rules/gpl-3.0_522.RULE index 9ee306ca331..30753b01a10 100644 --- a/src/licensedcode/data/rules/gpl-3.0_522.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_522.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License The source code and the documentation in this project are released under the GPL v3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_522.yml b/src/licensedcode/data/rules/gpl-3.0_522.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_522.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_523.RULE b/src/licensedcode/data/rules/gpl-3.0_523.RULE index 618b35d92a1..5517bd02ef6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_523.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_523.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The source code and the documentation in this project are released under the GPL v3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_523.yml b/src/licensedcode/data/rules/gpl-3.0_523.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_523.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_524.RULE b/src/licensedcode/data/rules/gpl-3.0_524.RULE index 482333e8d06..5f33942dca7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_524.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_524.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the GPL v3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_524.yml b/src/licensedcode/data/rules/gpl-3.0_524.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_524.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_525.RULE b/src/licensedcode/data/rules/gpl-3.0_525.RULE index 11c1b466a4f..86802607c5c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_525.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_525.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + open source under the {{GPLv3}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_525.yml b/src/licensedcode/data/rules/gpl-3.0_525.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_525.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_526.RULE b/src/licensedcode/data/rules/gpl-3.0_526.RULE index f79c4683fb5..799a3134e1e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_526.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_526.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-only +--- + {{GPL-3.0-only}} https://spdx.org/licenses/GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_526.yml b/src/licensedcode/data/rules/gpl-3.0_526.yml deleted file mode 100644 index 179324b4705..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_526.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-only diff --git a/src/licensedcode/data/rules/gpl-3.0_527.RULE b/src/licensedcode/data/rules/gpl-3.0_527.RULE index d0851a424e8..0121b408653 100644 --- a/src/licensedcode/data/rules/gpl-3.0_527.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_527.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-3.0-only +--- + LICENSE {{GPL-3.0-only}} https://spdx.org/licenses/GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_527.yml b/src/licensedcode/data/rules/gpl-3.0_527.yml deleted file mode 100644 index 179324b4705..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_527.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-3.0-only diff --git a/src/licensedcode/data/rules/gpl-3.0_528.RULE b/src/licensedcode/data/rules/gpl-3.0_528.RULE index 0a0666e6893..8d6091a5cf3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_528.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_528.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed to the public under the terms of the GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_528.yml b/src/licensedcode/data/rules/gpl-3.0_528.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_528.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_529.RULE b/src/licensedcode/data/rules/gpl-3.0_529.RULE index fabf5db08d3..3560fb7761c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_529.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_529.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + You are licensed to use this software under the terms of the GNU General Public License (GPL) version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_529.yml b/src/licensedcode/data/rules/gpl-3.0_529.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_529.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_53.RULE b/src/licensedcode/data/rules/gpl-3.0_53.RULE index af819edcafb..15ee35f1003 100644 --- a/src/licensedcode/data/rules/gpl-3.0_53.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_53.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- -license GNU General Public Licence http://www.gnu.org/licenses/gpl-3.0.html + +license GNU General Public Licence http://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_53.yml b/src/licensedcode/data/rules/gpl-3.0_53.yml deleted file mode 100644 index 2f7c35d0dd2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_530.RULE b/src/licensedcode/data/rules/gpl-3.0_530.RULE index 2fd497afc55..5749f9cff28 100644 --- a/src/licensedcode/data/rules/gpl-3.0_530.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_530.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + You are licensed to use this software under the terms of the GNU General Public License (GPL) versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_530.yml b/src/licensedcode/data/rules/gpl-3.0_530.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_530.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_531.RULE b/src/licensedcode/data/rules/gpl-3.0_531.RULE index 6e0ab9004b9..da0448c94ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_531.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_531.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + You are licensed to use this software under the terms of the GNU GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_531.yml b/src/licensedcode/data/rules/gpl-3.0_531.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_531.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_532.RULE b/src/licensedcode/data/rules/gpl-3.0_532.RULE index 9c6d1a5115e..65dc6c334a3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_532.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_532.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + You are licensed to use this software under the terms of the GNU GPL versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_532.yml b/src/licensedcode/data/rules/gpl-3.0_532.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_532.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_533.RULE b/src/licensedcode/data/rules/gpl-3.0_533.RULE index 4d3f83d8725..5c9f5ecfa2b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_533.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_533.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + You are also licensed to use this software under the terms of the GNU General Public License (GPL) version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_533.yml b/src/licensedcode/data/rules/gpl-3.0_533.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_533.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_534.RULE b/src/licensedcode/data/rules/gpl-3.0_534.RULE index 109b15fec13..21ee8c9fed4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_534.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_534.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + You are also licensed to use this software under the terms of the GNU General Public License (GPL) versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_534.yml b/src/licensedcode/data/rules/gpl-3.0_534.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_534.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_535.RULE b/src/licensedcode/data/rules/gpl-3.0_535.RULE index c6ade3731f8..7292179635b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_535.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_535.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + You are also licensed to use this software under the terms of the GNU GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_535.yml b/src/licensedcode/data/rules/gpl-3.0_535.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_535.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_536.RULE b/src/licensedcode/data/rules/gpl-3.0_536.RULE index b56c4241ab3..121bcbd6df8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_536.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_536.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + You are also licensed to use this software under the terms of the GNU GPL versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_536.yml b/src/licensedcode/data/rules/gpl-3.0_536.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_536.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_537.RULE b/src/licensedcode/data/rules/gpl-3.0_537.RULE index a946667b9da..066e64c5098 100644 --- a/src/licensedcode/data/rules/gpl-3.0_537.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_537.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License (GPL) versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_537.yml b/src/licensedcode/data/rules/gpl-3.0_537.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_537.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_538.RULE b/src/licensedcode/data/rules/gpl-3.0_538.RULE index b923df1cb07..5ac256719fa 100644 --- a/src/licensedcode/data/rules/gpl-3.0_538.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_538.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_538.yml b/src/licensedcode/data/rules/gpl-3.0_538.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_538.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_539.RULE b/src/licensedcode/data/rules/gpl-3.0_539.RULE index 8c25a5982a7..c16a60ec8b2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_539.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_539.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU GPL versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_539.yml b/src/licensedcode/data/rules/gpl-3.0_539.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_539.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_54.RULE b/src/licensedcode/data/rules/gpl-3.0_54.RULE index a04f24b434b..a3790e3051c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_54.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_54.RULE @@ -1 +1,7 @@ -LICENCE: GNU General Public Licence version 3. +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +LICENCE: GNU General Public Licence version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_54.yml b/src/licensedcode/data/rules/gpl-3.0_54.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_540.RULE b/src/licensedcode/data/rules/gpl-3.0_540.RULE index 55894fff3dc..b1363a3b087 100644 --- a/src/licensedcode/data/rules/gpl-3.0_540.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_540.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - COPYING.GPLv3 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + License This library and utilities are licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html also included in the repository in the `COPYING.GPLv3` file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_540.yml b/src/licensedcode/data/rules/gpl-3.0_540.yml deleted file mode 100644 index 5643e2f60b4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_540.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -referenced_filenames: - - COPYING.GPLv3 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_541.RULE b/src/licensedcode/data/rules/gpl-3.0_541.RULE index 392b6299bbf..c46187d38f8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_541.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_541.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - COPYING.GPLv3 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html also included in the repository in the `COPYING.GPLv3` file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_541.yml b/src/licensedcode/data/rules/gpl-3.0_541.yml deleted file mode 100644 index 5643e2f60b4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_541.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -referenced_filenames: - - COPYING.GPLv3 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_542.RULE b/src/licensedcode/data/rules/gpl-3.0_542.RULE index 37709e29a65..3f162debf9e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_542.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_542.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + License This library and utilities are licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_542.yml b/src/licensedcode/data/rules/gpl-3.0_542.yml deleted file mode 100644 index 573ec2bf644..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_542.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_543.RULE b/src/licensedcode/data/rules/gpl-3.0_543.RULE index 642b8b1571f..1e72e130a10 100644 --- a/src/licensedcode/data/rules/gpl-3.0_543.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_543.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_543.yml b/src/licensedcode/data/rules/gpl-3.0_543.yml deleted file mode 100644 index 573ec2bf644..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_543.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_544.RULE b/src/licensedcode/data/rules/gpl-3.0_544.RULE index 4622e7198fe..52ce40d6440 100644 --- a/src/licensedcode/data/rules/gpl-3.0_544.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_544.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html +--- + GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_544.yml b/src/licensedcode/data/rules/gpl-3.0_544.yml deleted file mode 100644 index 29d7c8daa91..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_544.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_545.RULE b/src/licensedcode/data/rules/gpl-3.0_545.RULE index f6942bfe986..2897226fdcf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_545.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_545.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv3 +--- + included in the repository in the `COPYING.GPLv3` file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_545.yml b/src/licensedcode/data/rules/gpl-3.0_545.yml deleted file mode 100644 index 414979af90c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_545.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0_546.RULE b/src/licensedcode/data/rules/gpl-3.0_546.RULE index 1b630d1b86e..c5b35e69d05 100644 --- a/src/licensedcode/data/rules/gpl-3.0_546.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_546.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.GPLv3 +--- + in the `COPYING.GPLv3` file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_546.yml b/src/licensedcode/data/rules/gpl-3.0_546.yml deleted file mode 100644 index 414979af90c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_546.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/gpl-3.0_55.RULE b/src/licensedcode/data/rules/gpl-3.0_55.RULE index b6bc568b405..dcdb1914f21 100644 --- a/src/licensedcode/data/rules/gpl-3.0_55.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_55.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- -license 'GNU General Public Licence, version 3.0' + +license 'GNU General Public Licence, version 3.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_55.yml b/src/licensedcode/data/rules/gpl-3.0_55.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_56.RULE b/src/licensedcode/data/rules/gpl-3.0_56.RULE index 63e201846cd..ce3951a8cdd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_56.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_56.RULE @@ -1 +1,7 @@ -LICENCE: GNU General Public Licence version 3. See LICENCE file for details. +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +LICENCE: GNU General Public Licence version 3. See LICENCE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_56.yml b/src/licensedcode/data/rules/gpl-3.0_56.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_57.RULE b/src/licensedcode/data/rules/gpl-3.0_57.RULE index 7ac4f9b745a..82337e460c1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_57.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_57.RULE @@ -1 +1,7 @@ -Licensed under GNU General Public Licence version 3 +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +Licensed under GNU General Public Licence version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_57.yml b/src/licensedcode/data/rules/gpl-3.0_57.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_58.RULE b/src/licensedcode/data/rules/gpl-3.0_58.RULE index 5b7d143751d..41e0b624421 100644 --- a/src/licensedcode/data/rules/gpl-3.0_58.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_58.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- -Lincenced under The GNU General Public Licence v3.0 + +Lincenced under The GNU General Public Licence v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_58.yml b/src/licensedcode/data/rules/gpl-3.0_58.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_59.RULE b/src/licensedcode/data/rules/gpl-3.0_59.RULE index 8724803dd15..d67f7f01801 100644 --- a/src/licensedcode/data/rules/gpl-3.0_59.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_59.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- -The application is licenced under GNU General Public Licence version 3 + +The application is licenced under GNU General Public Licence version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_59.yml b/src/licensedcode/data/rules/gpl-3.0_59.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_6.RULE b/src/licensedcode/data/rules/gpl-3.0_6.RULE index a83ef265a16..0403b000268 100644 --- a/src/licensedcode/data/rules/gpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_6.yml b/src/licensedcode/data/rules/gpl-3.0_6.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_60.RULE b/src/licensedcode/data/rules/gpl-3.0_60.RULE index 0a5b9e233ed..36e5e1eca3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_60.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_60.RULE @@ -1 +1,7 @@ -This implementation licenced under the GNU General Public Licence version3. +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +This implementation licenced under the GNU General Public Licence version3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_60.yml b/src/licensedcode/data/rules/gpl-3.0_60.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_61.RULE b/src/licensedcode/data/rules/gpl-3.0_61.RULE index cc0be3921db..b12fc906967 100644 --- a/src/licensedcode/data/rules/gpl-3.0_61.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_61.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + this software is distributed under the terms of the GNU General Public -Licence version 3 (GPL Version 3), copied verbatim in the file "LICENCE". +Licence version 3 (GPL Version 3), copied verbatim in the file "LICENCE". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_61.yml b/src/licensedcode/data/rules/gpl-3.0_61.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_61.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_62.RULE b/src/licensedcode/data/rules/gpl-3.0_62.RULE index 1e3cd7b5099..f47ad8f7b4e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_62.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_62.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - gpl.txt +--- + This application is made available under the GNU General Public Licence, -version 3. The full text of this licence can found in the file "gpl-3.0.txt". +version 3. The full text of this licence can found in the file "gpl-3.0.txt". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_62.yml b/src/licensedcode/data/rules/gpl-3.0_62.yml deleted file mode 100644 index 97e2ce56030..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_62.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -referenced_filenames: - - gpl.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_63.RULE b/src/licensedcode/data/rules/gpl-3.0_63.RULE index 372ef4f3129..4a0a823be31 100644 --- a/src/licensedcode/data/rules/gpl-3.0_63.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_63.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + LICENSE -GNU General Public Licence, Version 3. http://www.gnu.org/licenses/gpl-3.0.txt +GNU General Public Licence, Version 3. http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_63.yml b/src/licensedcode/data/rules/gpl-3.0_63.yml deleted file mode 100644 index 9e43c6059ef..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_64.RULE b/src/licensedcode/data/rules/gpl-3.0_64.RULE index 134227a6d6c..82bda17cf8e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_64.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_64.RULE @@ -1 +1,7 @@ -Licenced under GNU General Public Licence version 3 +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +Licenced under GNU General Public Licence version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_64.yml b/src/licensedcode/data/rules/gpl-3.0_64.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_65.RULE b/src/licensedcode/data/rules/gpl-3.0_65.RULE index 5fadca359d7..555e4e67555 100644 --- a/src/licensedcode/data/rules/gpl-3.0_65.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_65.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + software is a free software download and may be modified to the needs of the user as long as the user adheres to version three of the GPL license. The GPLv3 license can be found on the gnu.org website diff --git a/src/licensedcode/data/rules/gpl-3.0_65.yml b/src/licensedcode/data/rules/gpl-3.0_65.yml deleted file mode 100644 index 993909e1938..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_65.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_66.RULE b/src/licensedcode/data/rules/gpl-3.0_66.RULE index d8623f63e9a..2a929e3cf08 100644 --- a/src/licensedcode/data/rules/gpl-3.0_66.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_66.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + version three of the GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_66.yml b/src/licensedcode/data/rules/gpl-3.0_66.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_67.RULE b/src/licensedcode/data/rules/gpl-3.0_67.RULE index 5374ba5d10e..29247a9f39f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_67.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_67.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + __license__ = "GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_67.yml b/src/licensedcode/data/rules/gpl-3.0_67.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_68.RULE b/src/licensedcode/data/rules/gpl-3.0_68.RULE index 65c88435a96..4b909c65095 100644 --- a/src/licensedcode/data/rules/gpl-3.0_68.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_68.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + * This program is licensed to you under Version 3 only of the GNU General Public License 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. diff --git a/src/licensedcode/data/rules/gpl-3.0_68.yml b/src/licensedcode/data/rules/gpl-3.0_68.yml deleted file mode 100644 index d91dd896300..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_68.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0_69.RULE b/src/licensedcode/data/rules/gpl-3.0_69.RULE index 03cd219ad9a..95e7e68e81a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_69.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_69.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/gpl-3.0_69.yml b/src/licensedcode/data/rules/gpl-3.0_69.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_7.RULE b/src/licensedcode/data/rules/gpl-3.0_7.RULE index 6b2b981b1dc..c49d3c6639e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/quick-guide-gplv3.html +--- + http://www.gnu.org/licenses/quick-guide-gplv3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_7.yml b/src/licensedcode/data/rules/gpl-3.0_7.yml deleted file mode 100644 index 6170463ac26..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/quick-guide-gplv3.html diff --git a/src/licensedcode/data/rules/gpl-3.0_70.RULE b/src/licensedcode/data/rules/gpl-3.0_70.RULE index af0e70296ed..15d5d771028 100644 --- a/src/licensedcode/data/rules/gpl-3.0_70.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_70.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is distributed under the GNU General Public License (v3). A copy of this can be found in the COPYING.txt file or at http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_70.yml b/src/licensedcode/data/rules/gpl-3.0_70.yml deleted file mode 100644 index 4fa7d6b9b79..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_70.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_71.RULE b/src/licensedcode/data/rules/gpl-3.0_71.RULE index 8109fdd9fee..3d60740b216 100644 --- a/src/licensedcode/data/rules/gpl-3.0_71.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_71.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + is available under the terms of the GPL-3.0. See `COPYING` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_71.yml b/src/licensedcode/data/rules/gpl-3.0_71.yml deleted file mode 100644 index 0e05cda41aa..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0_71_1.RULE b/src/licensedcode/data/rules/gpl-3.0_71_1.RULE index 4342b840a8e..2aa4d802b55 100644 --- a/src/licensedcode/data/rules/gpl-3.0_71_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_71_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + License is available under the terms of the GPL-3.0. See `COPYING` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_71_1.yml b/src/licensedcode/data/rules/gpl-3.0_71_1.yml deleted file mode 100644 index 0e05cda41aa..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_71_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0_72.RULE b/src/licensedcode/data/rules/gpl-3.0_72.RULE index 663f7c4fcdd..abe120ce67c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_72.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_72.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms of the GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_72.yml b/src/licensedcode/data/rules/gpl-3.0_72.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_73.RULE b/src/licensedcode/data/rules/gpl-3.0_73.RULE index f6213d76277..547a010178c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_73.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_73.RULE @@ -1 +1,9 @@ - [GNU License](http://www.gnu.org/licenses/gpl-3.0.en.html) +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.en.html +--- + + [GNU License](http://www.gnu.org/licenses/gpl-3.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_73.yml b/src/licensedcode/data/rules/gpl-3.0_73.yml deleted file mode 100644 index dfac9a57868..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.en.html diff --git a/src/licensedcode/data/rules/gpl-3.0_74.RULE b/src/licensedcode/data/rules/gpl-3.0_74.RULE index 76de836de91..aff98521c10 100644 --- a/src/licensedcode/data/rules/gpl-3.0_74.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_74.RULE @@ -1 +1,9 @@ - [GPL V3](http://opensource.org/licenses/GPL-3.0) +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/GPL-3.0 +--- + + [GPL V3](http://opensource.org/licenses/GPL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_74.yml b/src/licensedcode/data/rules/gpl-3.0_74.yml deleted file mode 100644 index 28165095458..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_75.RULE b/src/licensedcode/data/rules/gpl-3.0_75.RULE index 2106b0ca89b..9b085a80ae4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_75.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_75.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/gpl-3.0 +--- + License: [`gpl-3.0`](http://choosealicense.com/licenses/gpl-3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_75.yml b/src/licensedcode/data/rules/gpl-3.0_75.yml deleted file mode 100644 index 938da2e3266..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_76.RULE b/src/licensedcode/data/rules/gpl-3.0_76.RULE index e42472bcdb4..f397058ebf5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_76.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_76.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_76.yml b/src/licensedcode/data/rules/gpl-3.0_76.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_77.RULE b/src/licensedcode/data/rules/gpl-3.0_77.RULE index 89d93e28133..d84a30fc267 100644 --- a/src/licensedcode/data/rules/gpl-3.0_77.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Released under GPL V3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_77.yml b/src/licensedcode/data/rules/gpl-3.0_77.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_78.RULE b/src/licensedcode/data/rules/gpl-3.0_78.RULE index 254a55b4cc7..f1d32e7240c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_78.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_78.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License (GPL) version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_78.yml b/src/licensedcode/data/rules/gpl-3.0_78.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_79.RULE b/src/licensedcode/data/rules/gpl-3.0_79.RULE index 2d795466c4c..7bffb36a182 100644 --- a/src/licensedcode/data/rules/gpl-3.0_79.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_79.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +--- + licensed under the terms of the GPL, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_79.yml b/src/licensedcode/data/rules/gpl-3.0_79.yml deleted file mode 100644 index 927a9e17ade..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0_8.RULE b/src/licensedcode/data/rules/gpl-3.0_8.RULE index fa78303e086..dfa41621674 100644 --- a/src/licensedcode/data/rules/gpl-3.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_8.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_8.yml b/src/licensedcode/data/rules/gpl-3.0_8.yml deleted file mode 100644 index 330b110344e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_80.RULE b/src/licensedcode/data/rules/gpl-3.0_80.RULE index 7c056512732..0bb76a967ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0_80.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_80.RULE @@ -1,3 +1,14 @@ +--- +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: + - http://fsf.org/ +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -619,4 +630,4 @@ 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 + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_80.yml b/src/licensedcode/data/rules/gpl-3.0_80.yml deleted file mode 100644 index 13764b0ec0c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_80.yml +++ /dev/null @@ -1,8 +0,0 @@ -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: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-3.0_81.RULE b/src/licensedcode/data/rules/gpl-3.0_81.RULE index bfc97b5d674..a5855098632 100644 --- a/src/licensedcode/data/rules/gpl-3.0_81.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_81.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + in the case of code licensed under the GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_81.yml b/src/licensedcode/data/rules/gpl-3.0_81.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_82.RULE b/src/licensedcode/data/rules/gpl-3.0_82.RULE index 867f075e8ca..e47e179356c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_82.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_82.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_82.yml b/src/licensedcode/data/rules/gpl-3.0_82.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_83.RULE b/src/licensedcode/data/rules/gpl-3.0_83.RULE index 5e95f3b4c26..ab3a908f787 100644 --- a/src/licensedcode/data/rules/gpl-3.0_83.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_83.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + code licensed under the GPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_83.yml b/src/licensedcode/data/rules/gpl-3.0_83.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_84.RULE b/src/licensedcode/data/rules/gpl-3.0_84.RULE index 1972b81b144..5329657ad10 100644 --- a/src/licensedcode/data/rules/gpl-3.0_84.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_84.RULE @@ -1 +1,7 @@ -This file is under GPL version 3. +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +This file is under GPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_84.yml b/src/licensedcode/data/rules/gpl-3.0_84.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_85.RULE b/src/licensedcode/data/rules/gpl-3.0_85.RULE index bbcbd56f655..6e21db7df92 100644 --- a/src/licensedcode/data/rules/gpl-3.0_85.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_85.RULE @@ -1 +1,7 @@ -under the GNU General Public License (v3 or later) +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +under the GNU General Public License (v3 or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_85.yml b/src/licensedcode/data/rules/gpl-3.0_85.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_86.RULE b/src/licensedcode/data/rules/gpl-3.0_86.RULE index ed17b448078..c87a04a9b3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_86.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_86.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + and is available as open source under the GNU Public License (v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_86.yml b/src/licensedcode/data/rules/gpl-3.0_86.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_87.RULE b/src/licensedcode/data/rules/gpl-3.0_87.RULE index 6c744ac0c88..e2df5bdfc28 100644 --- a/src/licensedcode/data/rules/gpl-3.0_87.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_87.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_87.yml b/src/licensedcode/data/rules/gpl-3.0_87.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_88.RULE b/src/licensedcode/data/rules/gpl-3.0_88.RULE index 717ffefe69a..250201709fc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_88.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_88.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_88.yml b/src/licensedcode/data/rules/gpl-3.0_88.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_89.RULE b/src/licensedcode/data/rules/gpl-3.0_89.RULE index 200186ef59a..7e615d20773 100644 --- a/src/licensedcode/data/rules/gpl-3.0_89.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_89.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +notes: a damaged gpl 3 text +ignorable_copyrights: + - Copyright 2007 Free Software Foundation, Inc. http://fsf.org/' http://fsf.org +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.gnu.org/licenses/ + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU General Public License version 3 Version 3, 29 June 2007 @@ -736,6 +750,4 @@ under certain conditions; type " show c " for details. subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this - License. But first, please read http://www.gnu.org/philosophy/why-not-lgpl.html">http://www.gnu.org/philosophy/why-not-lgpl.html . - - \ No newline at end of file + License. But first, please read http://www.gnu.org/philosophy/why-not-lgpl.html">http://www.gnu.org/philosophy/why-not-lgpl.html . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_89.yml b/src/licensedcode/data/rules/gpl-3.0_89.yml deleted file mode 100644 index fc5e5a16019..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_89.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -notes: a damaged gpl 3 text -ignorable_copyrights: - - Copyright 2007 Free Software Foundation, Inc. http://fsf.org/' http://fsf.org -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.gnu.org/licenses/ - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_9.RULE b/src/licensedcode/data/rules/gpl-3.0_9.RULE index 04be89bdf70..c8e0023389c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + under the GPL3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_9.yml b/src/licensedcode/data/rules/gpl-3.0_9.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_90.RULE b/src/licensedcode/data/rules/gpl-3.0_90.RULE index c09ee9d0cee..9cac3ff2727 100644 --- a/src/licensedcode/data/rules/gpl-3.0_90.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_90.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + (GPLv3 license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_90.yml b/src/licensedcode/data/rules/gpl-3.0_90.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_91.RULE b/src/licensedcode/data/rules/gpl-3.0_91.RULE index 9d04634db43..d1afe66fedb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_91.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_91.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 99 +--- + Library (GPLv3 license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_91.yml b/src/licensedcode/data/rules/gpl-3.0_91.yml deleted file mode 100644 index 927a9e17ade..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0_92.RULE b/src/licensedcode/data/rules/gpl-3.0_92.RULE index e64bb992c42..7279c158b5b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_92.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_92.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + The complete text of the GNU General Public License version 3 is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_92.yml b/src/licensedcode/data/rules/gpl-3.0_92.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_93.RULE b/src/licensedcode/data/rules/gpl-3.0_93.RULE index e101b91f43c..f3c3eb2c7b7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_93.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_93.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + /usr/share/common-licenses/GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_93.yml b/src/licensedcode/data/rules/gpl-3.0_93.yml deleted file mode 100644 index 258bcc22878..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_94.RULE b/src/licensedcode/data/rules/gpl-3.0_94.RULE index a57d2825015..58797e019f9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_94.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_94.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + GNU package released under GPL 3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_94.yml b/src/licensedcode/data/rules/gpl-3.0_94.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_95.RULE b/src/licensedcode/data/rules/gpl-3.0_95.RULE index e3377147f26..8ec3682af64 100644 --- a/src/licensedcode/data/rules/gpl-3.0_95.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_95.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is released under the GPL. (3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_95.yml b/src/licensedcode/data/rules/gpl-3.0_95.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_96.RULE b/src/licensedcode/data/rules/gpl-3.0_96.RULE index bd62d5efa40..e1b96e578a0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_96.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_96.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 3 of the License. diff --git a/src/licensedcode/data/rules/gpl-3.0_96.yml b/src/licensedcode/data/rules/gpl-3.0_96.yml deleted file mode 100644 index d91dd896300..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_96.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0_97.RULE b/src/licensedcode/data/rules/gpl-3.0_97.RULE index 9c66e1e590f..f5d58e82464 100644 --- a/src/licensedcode/data/rules/gpl-3.0_97.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_97.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; version 3. @@ -9,4 +14,4 @@ # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_97.yml b/src/licensedcode/data/rules/gpl-3.0_97.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_97.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_98.RULE b/src/licensedcode/data/rules/gpl-3.0_98.RULE index 624b8f8c713..531c5b9c3ce 100644 --- a/src/licensedcode/data/rules/gpl-3.0_98.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_98.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +minimum_coverage: 50 +--- + * 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, version 3 of the License. @@ -5,4 +11,4 @@ * 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. + * General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_98.yml b/src/licensedcode/data/rules/gpl-3.0_98.yml deleted file mode 100644 index 26d9bf7f5bb..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/gpl-3.0_99.RULE b/src/licensedcode/data/rules/gpl-3.0_99.RULE index f59cc215baa..b946c49d1c1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_99.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_99.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU General Public * License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-3.0_99.yml b/src/licensedcode/data/rules/gpl-3.0_99.yml deleted file mode 100644 index 42b6a8c05c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_99.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_and_agpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_agpl-3.0_1.RULE index 7ed71fe583d..3cc4fbeafc8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_agpl-3.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 AND agpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License PyMuPDF is distributed under GNU GPL V3. Because you will implicitely also be diff --git a/src/licensedcode/data/rules/gpl-3.0_and_agpl-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_agpl-3.0_1.yml deleted file mode 100644 index 424b4c053c4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_agpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 AND agpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_cc-by-nc-sa.RULE b/src/licensedcode/data/rules/gpl-3.0_and_cc-by-nc-sa.RULE index d6979578445..22e6fe1dd3a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_cc-by-nc-sa.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_cc-by-nc-sa.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-3.0 AND cc-by-nc-sa-3.0 +is_license_notice: yes +--- + LICENCE -Code should be assumed to be under the GNU General Public Licence, version 3. Documents should be assumed Creative-Commons Attribution NonCommercial Share-Alike. +Code should be assumed to be under the GNU General Public Licence, version 3. Documents should be assumed Creative-Commons Attribution NonCommercial Share-Alike. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_cc-by-nc-sa.yml b/src/licensedcode/data/rules/gpl-3.0_and_cc-by-nc-sa.yml deleted file mode 100644 index 92cdb68971c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_cc-by-nc-sa.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 AND cc-by-nc-sa-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_1.RULE index 9edb3d654a2..bc14888d87d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 AND cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed as follows: GPLv3 or later for the tool itself. CC0 for code templates and generated code inside bundles. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_1.yml deleted file mode 100644 index 6ab26f11ab8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 AND cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_2.RULE index 83d24219363..323d3ec96a9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 AND cc0-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - cc0 +--- + ## Licenses Styrene’s code is licensed as follows: diff --git a/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_2.yml b/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_2.yml deleted file mode 100644 index de49c29555b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_cc0-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 AND cc0-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - cc0 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_1.RULE index 3a53ae7e9b5..677ca465a58 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 AND gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU General Public * License as published by the Free Software Foundation. @@ -11,4 +19,4 @@ * along with this program; if not, see * * Parts of this file based on code from , licensed as - * GPL version 2 or later \ No newline at end of file + * GPL version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_1.yml deleted file mode 100644 index 2558ce251cb..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 AND gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_2.RULE index 0b17fb67d30..ac68d19d7e2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU General Public * License as published by the Free Software Foundation. @@ -11,4 +20,4 @@ * along with this program; if not, see * * Parts of this file based on code from , licensed as - * GPL version 2 or later \ No newline at end of file + * GPL version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_2.yml deleted file mode 100644 index 93f909c951a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0_and_lgpl-3.0-plus_and_other-copyleft_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0_and_lgpl-3.0-plus_and_other-copyleft_and_other-permissive_1.RULE index 3101b47881f..a552c552697 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0_and_lgpl-3.0-plus_and_other-copyleft_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0_and_lgpl-3.0-plus_and_other-copyleft_and_other-permissive_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 AND gpl-2.0 AND lgpl-3.0-plus WITH cygwin-exception-lgpl-3.0-plus + AND other-copyleft AND other-permissive +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - CYGWIN_LICENSE +--- + This software is a copyrighted work licensed under the terms of the Cygwin license. Please consult the file "CYGWIN_LICENSE" for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0_and_lgpl-3.0-plus_and_other-copyleft_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0_and_lgpl-3.0-plus_and_other-copyleft_and_other-permissive_1.yml deleted file mode 100644 index b00f6ddd4ba..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_gpl-2.0_and_lgpl-3.0-plus_and_other-copyleft_and_other-permissive_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 AND gpl-2.0 AND lgpl-3.0-plus WITH cygwin-exception-lgpl-3.0-plus - AND other-copyleft AND other-permissive -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - CYGWIN_LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_1.RULE index 5cfc356c752..09640b74526 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 95 +--- + This has a mix of licenses, both LGPL-2.1 and GPL-3.0, plus the apparently \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_1.yml deleted file mode 100644 index ad7f93107ef..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_2.RULE index e6319342d04..1ba5a26c587 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_2.RULE @@ -1 +1,8 @@ -Mix of GPL-3 and LGPL-2.1. +--- +license_expression: gpl-3.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + +Mix of GPL-3 and LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_2.yml b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_2.yml deleted file mode 100644 index 29a00834898..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_3.RULE b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_3.RULE index db9ece6f8e8..4631cb03935 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + mix of GPL-3.0 and LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_3.yml b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_3.yml deleted file mode 100644 index 6c730524fa8..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_and_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_and_lgpl-3.0_1.RULE index 94c2f264c07..c3cab36c336 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_and_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_and_lgpl-3.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 AND lgpl-2.1 AND lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + mix of GPL-3.0 and LGPL-2.1/3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_and_lgpl-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_and_lgpl-3.0_1.yml deleted file mode 100644 index eb7490aca05..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-2.1_and_lgpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 AND lgpl-2.1 AND lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_1.RULE index a20505719ee..d3cd39cb48d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 AND lgpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + hardware GLP v3, software LGPL v3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_1.yml deleted file mode 100644 index a98b2b55288..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 AND lgpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_2.RULE index ff5fd669e6c..e8f794a3e71 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0 AND lgpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - gpl-3.0.txt + - lgpl-3.0.txt +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html +--- + License agreement Due to some external dependencies, the framework does not have a common diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_2.yml b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_2.yml deleted file mode 100644 index 62353cfa71c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0 AND lgpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - gpl-3.0.txt - - lgpl-3.0.txt -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_3.RULE index b2df2297141..d1254ba2bb3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: gpl-3.0 AND lgpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - gpl-3.0.txt + - lgpl-3.0.txt +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html + - https://www.gnu.org/licenses/lgpl.html +--- + License agreement Due to some external dependencies, the framework does not have a common diff --git a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_3.yml b/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_3.yml deleted file mode 100644 index b451b6316e4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_lgpl-3.0_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: gpl-3.0 AND lgpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - gpl-3.0.txt - - lgpl-3.0.txt -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_and_mit_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_mit_1.RULE index 731152ea6e1..f31b474a30b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 AND mit +is_license_tag: yes +relevance: 100 +--- + license: GPLv3, MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_mit_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_mit_1.yml deleted file mode 100644 index 96d44f398cc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 AND mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_1.RULE index da6adaeaa46..f2821c7f4c1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 AND other-copyleft +is_license_notice: yes +relevance: 100 +--- + Additional permission under GNU GPL version 3 section 7: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_1.yml deleted file mode 100644 index 727fa213bab..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 AND other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_2.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_2.RULE index d0d0ab98b0d..524e10005ac 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 AND other-copyleft +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + Liscence: DISCLAIMER AND CONDITIONS FOR USE: diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_2.yml b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_2.yml deleted file mode 100644 index 62e24ec6eb0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 AND other-copyleft -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_3.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_3.RULE index 27985a7e327..0a058fe4d09 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 AND other-copyleft +is_license_notice: yes +relevance: 90 +notes: eclipse word introdcued in some mass replacement +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 Eclipse Public License as published by * the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_3.yml b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_3.yml deleted file mode 100644 index 36990ae41d3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 AND other-copyleft -is_license_notice: yes -relevance: 90 -notes: eclipse word introdcued in some mass replacement -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_4.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_4.RULE index 4f4bf3a4410..20749c83483 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 AND other-copyleft +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + Liscence: DISCLAIMER AND CONDITIONS FOR USE: diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_4.yml b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_4.yml deleted file mode 100644 index 76db02bedaa..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 AND other-copyleft -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_5.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_5.RULE index 149b135f70c..25a1bd9463d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 AND other-copyleft +is_license_notice: yes +relevance: 90 +notes: eclipse word introdcued in some mass replacement +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 Eclipse Public License as published by * the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_5.yml b/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_5.yml deleted file mode 100644 index 2d90ce53c37..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-copyleft_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 AND other-copyleft -is_license_notice: yes -relevance: 90 -notes: eclipse word introdcued in some mass replacement -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_1.RULE index bf81aa2ef35..4986f43012b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 AND other-permissive +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + # GNU General Public License v3.0 # # Permissions of this strong copyleft license are conditioned on making available diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_1.yml deleted file mode 100644 index dc957836ede..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 AND other-permissive -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_2.RULE b/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_2.RULE index 5faabfbd888..e23a68669e9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 AND other-permissive +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + # GNU General Public License v3.0 # # Permissions of this strong copyleft license are conditioned on making available diff --git a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_2.yml b/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_2.yml deleted file mode 100644 index 2aa85a4ca1f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_other-permissive_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 AND other-permissive -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_1.RULE index 44e72056b3e..e63b580dcec 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 AND proprietary-license +is_license_text: yes +relevance: 100 +notes: see http://lists.opensource.org/pipermail/license-review_lists.opensource.org/2019-March/004000.html +--- + ADDITIONAL TERMS APPLICABLE per GNU GPL version 3 section 7 . Notwithstanding any other provision of this License, diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_1.yml deleted file mode 100644 index 15ed7d27602..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 AND proprietary-license -is_license_text: yes -relevance: 100 -notes: see http://lists.opensource.org/pipermail/license-review_lists.opensource.org/2019-March/004000.html diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_2.RULE index b04e27df42a..9d49c4a5d83 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + You are free to use and modify this script as you wish for commercial and non commercial use, within the GNU v3.0 (General Public License). We just ask that you keep our ads and credits unedited unless you have donated \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_2.yml deleted file mode 100644 index e39ae65c0e7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_3.RULE index f492857bb15..ab92334fddc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + This software is distributed under the terms of the GNU General Public License % as published by the Free Software Foundation. Further details on the GPLv3 % license can be found at http://www.gnu.org/copyleft/gpl.html. diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_3.yml b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_3.yml deleted file mode 100644 index f668b6f4c79..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_4.RULE b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_4.RULE index 228830186b0..5092dc50a66 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html +--- + This software is distributed under the terms of the GNU General Public License % as published by the Free Software Foundation. Further details on the GPLv3 % license can be found at https://www.gnu.org/copyleft/gpl.html. diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_4.yml b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_4.yml deleted file mode 100644 index 33dee25442a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_and_unknown_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_and_unknown_1.RULE index e0080b33a46..c47d6849903 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_and_unknown_1.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 AND proprietary-license AND unknown +is_license_notice: yes +relevance: 100 +notes: excluding military use may conflict with the GPL +--- + # Licence: GNU Public Licence v3 (GPLv3), but not for military use \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_and_unknown_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_and_unknown_1.yml deleted file mode 100644 index 0d4702be247..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_proprietary-license_and_unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 AND proprietary-license AND unknown -is_license_notice: yes -relevance: 100 -notes: excluding military use may conflict with the GPL diff --git a/src/licensedcode/data/rules/gpl-3.0_and_public-domain_1.RULE b/src/licensedcode/data/rules/gpl-3.0_and_public-domain_1.RULE index 2c95724f02a..ea4b334441a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_and_public-domain_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 AND public-domain +is_license_notice: yes +relevance: 100 +--- + GPLv3 and public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_and_public-domain_1.yml b/src/licensedcode/data/rules/gpl-3.0_and_public-domain_1.yml deleted file mode 100644 index bdd17f9aed2..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_and_public-domain_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 AND public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_bruce_korb.RULE b/src/licensedcode/data/rules/gpl-3.0_bruce_korb.RULE index bb72e14e272..1971e216c98 100644 --- a/src/licensedcode/data/rules/gpl-3.0_bruce_korb.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_bruce_korb.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 +is_license_text: yes +notes: this text is damaged by some script... +ignorable_urls: + - http://www.gnu.org/licenses/ + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -671,4 +680,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_bruce_korb.yml b/src/licensedcode/data/rules/gpl-3.0_bruce_korb.yml deleted file mode 100644 index 944aada6223..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_bruce_korb.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_text: yes -notes: this text is damaged by some script... -ignorable_urls: - - http://www.gnu.org/licenses/ - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_copying_gplv3.RULE b/src/licensedcode/data/rules/gpl-3.0_copying_gplv3.RULE index f5c9908efbd..95aa7af9c8b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_copying_gplv3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_copying_gplv3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 90 +--- + COPYING.GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_copying_gplv3.yml b/src/licensedcode/data/rules/gpl-3.0_copying_gplv3.yml deleted file mode 100644 index 284a170b5ca..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_copying_gplv3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-3.0_directory.RULE b/src/licensedcode/data/rules/gpl-3.0_directory.RULE index 94fc507ca93..b89be038089 100644 --- a/src/licensedcode/data/rules/gpl-3.0_directory.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_directory.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Also, in the GPL directory, there are several stand-alone support programs that are released -using the GPL 3 license. \ No newline at end of file +using the GPL 3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_directory.yml b/src/licensedcode/data/rules/gpl-3.0_directory.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_directory.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_flossmole.RULE b/src/licensedcode/data/rules/gpl-3.0_flossmole.RULE index c786b88ce5b..541a5b64da0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_flossmole.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_flossmole.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + # This program is free software; you can redistribute it # and/or modify it under the GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_flossmole.yml b/src/licensedcode/data/rules/gpl-3.0_flossmole.yml deleted file mode 100644 index 2774025859b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_flossmole.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.RULE b/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.RULE index 60c234e047a..4629fa05aeb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.RULE @@ -1 +1,8 @@ -{{gpl 30}} +--- +license_expression: gpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 60 +--- + +{{gpl 30}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.yml b/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.yml deleted file mode 100644 index 9bb6d64cfc4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 60 diff --git a/src/licensedcode/data/rules/gpl-3.0_nuget_url_1.RULE b/src/licensedcode/data/rules/gpl-3.0_nuget_url_1.RULE index a82046f9e1d..1bc37a8c451 100644 --- a/src/licensedcode/data/rules/gpl-3.0_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Zoxive/HttpLoadTesting/blob/master/LICENSE +--- + https://github.com/Zoxive/HttpLoadTesting/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_nuget_url_1.yml b/src/licensedcode/data/rules/gpl-3.0_nuget_url_1.yml deleted file mode 100644 index 9986354c64b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Zoxive/HttpLoadTesting/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0_nuget_url_2.RULE b/src/licensedcode/data/rules/gpl-3.0_nuget_url_2.RULE index 8b8854112bb..88cf9dee3a8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/ByronAP/Lisk-API/master/LICENSE +--- + https://raw.githubusercontent.com/ByronAP/Lisk-API/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_nuget_url_2.yml b/src/licensedcode/data/rules/gpl-3.0_nuget_url_2.yml deleted file mode 100644 index 47962c9201b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/ByronAP/Lisk-API/master/LICENSE diff --git a/src/licensedcode/data/rules/gpl-3.0_nuget_url_3.RULE b/src/licensedcode/data/rules/gpl-3.0_nuget_url_3.RULE index 9273ba39691..f61a4d8b082 100644 --- a/src/licensedcode/data/rules/gpl-3.0_nuget_url_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_nuget_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/byrney/OwinUtils/blob/master/LICENSE.txt +--- + https://github.com/byrney/OwinUtils/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_nuget_url_3.yml b/src/licensedcode/data/rules/gpl-3.0_nuget_url_3.yml deleted file mode 100644 index cf7825e52ec..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_nuget_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/byrney/OwinUtils/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_only.RULE b/src/licensedcode/data/rules/gpl-3.0_only.RULE index 14e2c682b7e..e2dbbd9ce9c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_only.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_only.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +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 3, as published by the Free Software Foundation. @@ -8,4 +16,4 @@ SATISFACTORY QUALITY, 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 +this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_only.yml b/src/licensedcode/data/rules/gpl-3.0_only.yml deleted file mode 100644 index f32c1dc137c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_only.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_only_1.RULE b/src/licensedcode/data/rules/gpl-3.0_only_1.RULE index 8edeff854b9..5e2f7c19d67 100644 --- a/src/licensedcode/data/rules/gpl-3.0_only_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_only_1.RULE @@ -1,2 +1,7 @@ -LICENCE: Assume GNU General Public Licence v3. +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +--- +LICENCE: Assume GNU General Public Licence v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_only_1.yml b/src/licensedcode/data/rules/gpl-3.0_only_1.yml deleted file mode 100644 index 9a4537d99e9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_only_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_only_2.RULE b/src/licensedcode/data/rules/gpl-3.0_only_2.RULE index 3b94aa3a634..c77db0aaf7d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_only_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_only_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: GPL-3 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 diff --git a/src/licensedcode/data/rules/gpl-3.0_only_2.yml b/src/licensedcode/data/rules/gpl-3.0_only_2.yml deleted file mode 100644 index f32c1dc137c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_only_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_notice: yes -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_1.RULE index a445d9d1e3f..dc27e0b5bcd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 OR agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/agpl-3.0.txt + - http://www.gnu.org/licenses/gpl-3.0.txt +--- + The source code of all software components is licensed under either the `GNU GPL v3`_ or the `GNU AGPL v3`_. diff --git a/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_1.yml deleted file mode 100644 index 983026934a6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 OR agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/agpl-3.0.txt - - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_2.RULE index a6d8b2d6113..78ed404383f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 OR agpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.txt + - https://www.gnu.org/licenses/gpl-3.0.txt +--- + The source code of all software components is licensed under either the `GNU GPL v3`_ or the `GNU AGPL v3`_. diff --git a/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_2.yml b/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_2.yml deleted file mode 100644 index 2bbebee98f0..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_agpl-3.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 OR agpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.txt - - https://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0.RULE index a8c84e135ec..330c9e7eae2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_notice: yes +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +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 3, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0.yml deleted file mode 100644 index 8a92ea04f1e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_notice: yes -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_1.RULE index 3335ca12260..94a0e992b8c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_notice: yes +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +--- + Alternatively, this program may be used under the terms of the Apache License, Version 2.0, in which case the provisions of that license are applicable instead of those above. If you wish to allow use of your version of this diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_1.yml deleted file mode 100644 index 34524abd301..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_notice: yes -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_10.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_10.RULE index b01fa2b53c0..f30c3ab2085 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm + spec file +--- + LICENSE: Allow dual licensing GPL-3 or Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_10.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_10.yml deleted file mode 100644 index f06056906e7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm - spec file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_11.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_11.RULE index 9fa061fdad9..9b8b2c29eac 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_11.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +ignorable_urls: + - http://www.gnu.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License: GPL-3 or Apache-2.0 License: GPL-3 This program is free software: you can redistribute it and/or modify @@ -28,4 +38,4 @@ License: Apache-2.0 limitations under the License. . On Debian-based systems the full text of the Apache version 2.0 license - can be found in `/usr/share/common-licenses/Apache-2.0'. + can be found in `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_11.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_11.yml deleted file mode 100644 index 27727945a92..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_notice: yes -minimum_coverage: 70 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - http://www.gnu.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_12.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_12.RULE index d3584281451..cef2f1eae0e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_12.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_12.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/ +--- + License: GPL-3 or Apache-2.0 License: GPL-3 This program is free software: you can redistribute it and/or modify @@ -28,4 +39,4 @@ License: Apache-2.0 limitations under the License. . On Debian-based systems the full text of the Apache version 2.0 license - can be found in `/usr/share/common-licenses/Apache-2.0'. + can be found in `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_12.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_12.yml deleted file mode 100644 index c1ad31e3a43..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_12.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_13.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_13.RULE index 9dbb181b3fe..42d2e1f5a91 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_13.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://www.gnu.org/licenses/ +--- + License: GPL-3 or Apache-2.0 License: GPL-3 This program is free software: you can redistribute it and/or modify @@ -28,4 +39,4 @@ License: Apache-2.0 limitations under the License. . On Debian-based systems the full text of the Apache version 2.0 license - can be found in `/usr/share/common-licenses/Apache-2.0'. + can be found in `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_13.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_13.yml deleted file mode 100644 index 52619352b0d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_13.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_14.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_14.RULE index 9e4b1e33cdd..1e70d103c74 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_14.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +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. diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_14.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_14.yml deleted file mode 100644 index b8268431c20..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_2.RULE index 35bb30b279d..3726c4cfa4b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_2.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +--- + Dual-licensed under GPLv3 or Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_2.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_2.yml deleted file mode 100644 index b304642c30a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_3.RULE index bdd62f728e4..1a72beb4e7c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_3.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +--- + License: GPL-3 or Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_3.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_3.yml deleted file mode 100644 index b304642c30a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_4.RULE index cb05bed1987..168c22dc57e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_4.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +--- + GPL-3 or Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_4.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_4.yml deleted file mode 100644 index b304642c30a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_5.RULE index 2c730a7af7a..eff8b4fca43 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_notice: yes +minimum_coverage: 70 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.gnu.org/licenses/ +--- + License: GPL-3 or Apache-2.0 License: GPL-3 This program is free software: you can redistribute it and/or modify @@ -28,4 +38,4 @@ License: Apache-2.0 limitations under the License. . On Debian-based systems the full text of the Apache version 2.0 license - can be found in `/usr/share/common-licenses/Apache-2.0'. + can be found in `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_5.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_5.yml deleted file mode 100644 index bc4c2c7d56f..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_notice: yes -minimum_coverage: 70 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_6.RULE index bb51cfa2a90..d2c26a5aaf1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm + spec file +--- + License: Dual-licesed GPLv3 or Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_6.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_6.yml deleted file mode 100644 index f06056906e7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm - spec file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_7.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_7.RULE index 23865866850..f8ef09e0fe8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm + spec file +--- + Dual-licesed GPLv3 or Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_7.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_7.yml deleted file mode 100644 index f06056906e7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm - spec file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_8.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_8.RULE index d38dfcf91f9..675e0758ed0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm + spec file +--- + License: Dual licensed GPLv3 or Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_8.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_8.yml deleted file mode 100644 index f06056906e7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm - spec file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_9.RULE b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_9.RULE index d90a8926e17..adac24f5694 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm + spec file +--- + Dual licensed GPLv3 or Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_9.yml b/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_9.yml deleted file mode 100644 index f06056906e7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_apache-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: found in https://github.com/nexB/scancode-toolkit/issues/508 cloudinit typo in the rpm - spec file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_bsd-new_1.RULE b/src/licensedcode/data/rules/gpl-3.0_or_bsd-new_1.RULE index 0b512c191dc..2bab6eef2a0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_bsd-new_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 OR bsd-new +is_license_reference: yes +relevance: 100 +--- + Licenses GPL-3.0-only/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_bsd-new_1.yml b/src/licensedcode/data/rules/gpl-3.0_or_bsd-new_1.yml deleted file mode 100644 index 55aef15296b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 OR bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_1.RULE index 7005c3f0174..c4f95c8ddc2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSES.txt +ignorable_urls: + - http://www.fsf.org/licensing/licenses/gpl-3.0.html +--- + The Software developed and owned by is licensed under the GNU GENERAL PUBLIC LICENSE @@ -13,5 +23,4 @@ such Commercial Agreement will supersede the GPL and you may use the software solely pursuant to the terms of the relevant Commercial Agreement. -Full license texts are found in LICENSES.txt. - +Full license texts are found in LICENSES.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_1.yml deleted file mode 100644 index 3ff141ae149..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSES.txt -ignorable_urls: - - http://www.fsf.org/licensing/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_2.RULE index ce53bad6a13..3eec863b34c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: (gpl-3.0 OR commercial-license) AND unknown +is_license_notice: yes +relevance: 100 +--- + License The is available in two licensing options: commercial and open source license. diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_2.yml deleted file mode 100644 index 6d58c7b8699..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (gpl-3.0 OR commercial-license) AND unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_3.RULE b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_3.RULE index 8e616f3db0a..20728717a8c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * * \section license License * This program is free software, distributed under the terms of diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_3.yml b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_3.yml deleted file mode 100644 index f64d364b1ac..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_4.RULE b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_4.RULE index 3443b4f50bd..01e8ff22b08 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * This program is free software, distributed under the terms of * the {{GNU General Public License Version 3}}. For more details and licensing - * options, including a {{commercial license}}, see the ef COPYING page. + * options, including a {{commercial license}}, see the ef COPYING page. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_4.yml b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_4.yml deleted file mode 100644 index f64d364b1ac..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_5.RULE b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_5.RULE index 238dcbe6ba4..e0cb5e95b27 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the terms of the GNU General Public License version 3 (GPLv3). offers alternative licensing choices for sale. Contact if you or your company are interested in licensing this software under diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_5.yml b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_5.yml deleted file mode 100644 index 1d8a42e18b1..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_6.RULE b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_6.RULE index ee7bf4c8377..d34c0991321 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_6.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE.txt +notes: Seen in https://gitlab.linphone.org/BC/public/ortp/-/archive/4.5.15/ortp-4.5.15.tar.gz +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html + - https://www.linphone.org/contact +--- + License diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_6.yml b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_6.yml deleted file mode 100644 index f8a7cab5991..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_6.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE.txt -notes: Seen in https://gitlab.linphone.org/BC/public/ortp/-/archive/4.5.15/ortp-4.5.15.tar.gz -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html - - https://www.linphone.org/contact diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_7.RULE b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_7.RULE index 511974f6e14..4036881e71e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_7.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE.txt +notes: Seen in https://gitlab.linphone.org/BC/public/ortp/-/archive/4.5.15/ortp-4.5.15.tar.gz +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.en.html + - https://www.linphone.org/contact +--- + License diff --git a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_7.yml b/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_7.yml deleted file mode 100644 index f8a7cab5991..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_commercial-license_7.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE.txt -notes: Seen in https://gitlab.linphone.org/BC/public/ortp/-/archive/4.5.15/ortp-4.5.15.tar.gz -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.en.html - - https://www.linphone.org/contact diff --git a/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_1.RULE index 23dfe95b524..6afeabbee0e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0 OR gpl-2.0 OR gpl-1.0 OR lgpl-3.0 OR mpl-2.0 OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/gpl.html + - https://gnu.org/licenses/lgpl.html + - https://gnu.org/licenses/old-licenses/gpl-1.0.html + - https://gnu.org/licenses/old-licenses/gpl-2.0.html + - https://www.getid3.org/#gCL + - https://www.mozilla.org/MPL/2.0/ +--- + getID3() is released under multiple licenses. You may choose from the following licenses, and use getID3 according to the terms of the license most suitable to your project. diff --git a/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_1.yml deleted file mode 100644 index 4867b6dea91..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0 OR gpl-2.0 OR gpl-1.0 OR lgpl-3.0 OR mpl-2.0 OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/gpl.html - - https://gnu.org/licenses/lgpl.html - - https://gnu.org/licenses/old-licenses/gpl-1.0.html - - https://gnu.org/licenses/old-licenses/gpl-2.0.html - - https://www.getid3.org/#gCL - - https://www.mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_2.RULE index 4ab8e87c4c0..6c367ba4c85 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0 OR gpl-2.0 OR gpl-1.0 OR lgpl-3.0 OR mpl-2.0 OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://getid3.org/#gCL + - http://www.mozilla.org/MPL/2.0/ + - https://gnu.org/licenses/gpl.html + - https://gnu.org/licenses/lgpl.html + - https://gnu.org/licenses/old-licenses/gpl-1.0.html + - https://gnu.org/licenses/old-licenses/gpl-2.0.html +--- + getID3() is released under multiple licenses. You may choose from the following licenses, and use getID3 according to the terms of the license most suitable to your project. diff --git a/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_2.yml deleted file mode 100644 index e0e6fea355e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_gpl-2.0_or_gpl-1.0_or_lgpl-3.0_or_mpl-2.0_or_commercial-license_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0 OR gpl-2.0 OR gpl-1.0 OR lgpl-3.0 OR mpl-2.0 OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://getid3.org/#gCL - - http://www.mozilla.org/MPL/2.0/ - - https://gnu.org/licenses/gpl.html - - https://gnu.org/licenses/lgpl.html - - https://gnu.org/licenses/old-licenses/gpl-1.0.html - - https://gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_or_kde-accepted-gpl_1.RULE b/src/licensedcode/data/rules/gpl-3.0_or_kde-accepted-gpl_1.RULE index 3e8e2b40d8d..cadbf78218f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_kde-accepted-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_kde-accepted-gpl_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 OR kde-accepted-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of diff --git a/src/licensedcode/data/rules/gpl-3.0_or_kde-accepted-gpl_1.yml b/src/licensedcode/data/rules/gpl-3.0_or_kde-accepted-gpl_1.yml deleted file mode 100644 index 7c06efbaa4c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_kde-accepted-gpl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 OR kde-accepted-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-3.0_or_mit_1.RULE index 2e0885ec750..8d476e7ed9b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 OR mit +is_license_notice: yes +relevance: 100 +--- + releases its sourcecode under the GPL v3 and MIT licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_mit_1.yml b/src/licensedcode/data/rules/gpl-3.0_or_mit_1.yml deleted file mode 100644 index 323de58ff36..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_or_mit_2.RULE b/src/licensedcode/data/rules/gpl-3.0_or_mit_2.RULE index 0029d5662ae..9160cd8a8c4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_or_mit_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_or_mit_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 OR mit +is_license_reference: yes +relevance: 100 +--- + GPL v3 and MIT licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_or_mit_2.yml b/src/licensedcode/data/rules/gpl-3.0_or_mit_2.yml deleted file mode 100644 index 282ed914dbb..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_or_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 OR mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_rdesc_1.RULE b/src/licensedcode/data/rules/gpl-3.0_rdesc_1.RULE index 3c0984a8e75..dc8c2ce3da2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_rdesc_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_rdesc_1.RULE @@ -1 +1,7 @@ -License: GPL-3 +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +License: GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_rdesc_1.yml b/src/licensedcode/data/rules/gpl-3.0_rdesc_1.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_rdesc_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_url_1.RULE b/src/licensedcode/data/rules/gpl-3.0_url_1.RULE index 7b26c21ab75..ab7b83663db 100644 --- a/src/licensedcode/data/rules/gpl-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-3.0-only +--- + https://spdx.org/licenses/gpl-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_url_1.yml b/src/licensedcode/data/rules/gpl-3.0_url_1.yml deleted file mode 100644 index dbc62ae2dce..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-3.0-only diff --git a/src/licensedcode/data/rules/gpl-3.0_url_2.RULE b/src/licensedcode/data/rules/gpl-3.0_url_2.RULE index 368aa179b72..6f84c7854bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-3.0-only.html +--- + https://spdx.org/licenses/gpl-3.0-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_url_2.yml b/src/licensedcode/data/rules/gpl-3.0_url_2.yml deleted file mode 100644 index dbb4e64b62a..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-3.0-only.html diff --git a/src/licensedcode/data/rules/gpl-3.0_url_badge.RULE b/src/licensedcode/data/rules/gpl-3.0_url_badge.RULE index 7dc948c8955..fcdf1992439 100644 --- a/src/licensedcode/data/rules/gpl-3.0_url_badge.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-GPLv3-blue.svg + - https://www.gnu.org/licenses/gpl-3.0 +--- + [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_url_badge.yml b/src/licensedcode/data/rules/gpl-3.0_url_badge.yml deleted file mode 100644 index 3e3551487cf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-GPLv3-blue.svg - - https://www.gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_url_glc_123.RULE b/src/licensedcode/data/rules/gpl-3.0_url_glc_123.RULE index 80efe0b3864..a6f7adf95c8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_url_glc_123.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_url_glc_123.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0-standalone.html +--- + https://www.gnu.org/licenses/gpl-3.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_url_glc_123.yml b/src/licensedcode/data/rules/gpl-3.0_url_glc_123.yml deleted file mode 100644 index 26824db85bd..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_url_glc_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0-standalone.html diff --git a/src/licensedcode/data/rules/gpl-3.0_url_glc_168.RULE b/src/licensedcode/data/rules/gpl-3.0_url_glc_168.RULE index 765034434f1..1157cc31818 100644 --- a/src/licensedcode/data/rules/gpl-3.0_url_glc_168.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_url_glc_168.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/gpl-3.0 +--- + http://www.opensource.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_url_glc_168.yml b/src/licensedcode/data/rules/gpl-3.0_url_glc_168.yml deleted file mode 100644 index 125bcd94a33..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_url_glc_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_url_glc_169.RULE b/src/licensedcode/data/rules/gpl-3.0_url_glc_169.RULE index 6dd3e853838..d81071c0f15 100644 --- a/src/licensedcode/data/rules/gpl-3.0_url_glc_169.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_url_glc_169.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/gpl-3.0 +--- + https://www.opensource.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_url_glc_169.yml b/src/licensedcode/data/rules/gpl-3.0_url_glc_169.yml deleted file mode 100644 index 1ec82335fe7..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_url_glc_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_aptana-exception-3.0_and_unknown_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_aptana-exception-3.0_and_unknown_1.RULE index f5756975168..21803a6d7a8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_aptana-exception-3.0_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_aptana-exception-3.0_and_unknown_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 WITH aptana-exception-3.0 AND unknown +is_license_notice: yes +ignorable_urls: + - http://www.aptana.com/legal/gpl +--- + This program is distributed under the GNU General Public license. This program is free software; you can redistribute it and/or modify it under the terms of the @@ -67,4 +74,4 @@ This program is interface screen and in the Appropriate Legal Notices the following text: "Powered by Aptana". On user interface screens, this text must be visibly and clearly displayed in the title bar, status bar, or otherwise directly - in the view that is in focus. + in the view that is in focus. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_aptana-exception-3.0_and_unknown_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_aptana-exception-3.0_and_unknown_1.yml deleted file mode 100644 index f7e03553f58..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_aptana-exception-3.0_and_unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 WITH aptana-exception-3.0 AND unknown -is_license_notice: yes -ignorable_urls: - - http://www.aptana.com/legal/gpl diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_1.RULE index 149a2a2f037..7d326919c61 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2009 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + insert GPL v3 text here AUTOCONF CONFIGURE SCRIPT EXCEPTION diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_1.yml deleted file mode 100644 index 4265c5e8b8e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2009 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_10.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_10.RULE index 4e36b138730..a47611eaa26 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v3.0 w/Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_10.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_10.yml deleted file mode 100644 index 8e5609965e3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_2.RULE index 8fc4f726d0e..15b2fc7aff6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_2.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_2.yml deleted file mode 100644 index 9028703be25..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_3.RULE index 649a6afe9e3..0c81dee36c5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_notice: yes +--- + Under Section 7 of GPL version 3, you are granted additional permissions described in the Autoconf Configure Script Exception, version 3.0, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_3.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_3.yml deleted file mode 100644 index a0af45789dc..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_4.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_4.RULE index c68c17ff231..9f6f5adf614 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +--- + GPL-3.0-with-autoconf-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_4.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_4.yml deleted file mode 100644 index c78bd02c796..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_5.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_5.RULE index c65061d7c0b..a112a81aadf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v3.0 w/Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_5.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_5.yml deleted file mode 100644 index c78bd02c796..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_6.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_6.RULE index 18103a80318..0baa5fd58bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-3.0-with-autoconf-exception GNU General Public License v3.0 w/Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_6.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_6.yml deleted file mode 100644 index 8e5609965e3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_7.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_7.RULE index eed349a4601..3a6ee804784 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v3.0 w/Autoconf exception GPL-3.0-with-autoconf-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_7.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_7.yml deleted file mode 100644 index 8e5609965e3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_8.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_8.RULE index a63546e2ed3..60dc5c274ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : GPL-3.0-with-autoconf-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_8.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_8.yml deleted file mode 100644 index 3dfed42ae87..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_9.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_9.RULE index 5c56af18d04..8711405dd7a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH autoconf-exception-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-3.0-with-autoconf-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_9.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_9.yml deleted file mode 100644 index 8e5609965e3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-exception-3.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-exception-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-simple-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-simple-exception-2.0_1.RULE index 8539ceeb97c..8ae16cb56b7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-simple-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-simple-exception-2.0_1.RULE @@ -1 +1,7 @@ -are provided under the GPL v3.0 with the Autoconf exception \ No newline at end of file +--- +license_expression: gpl-3.0 WITH autoconf-simple-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + +are provided under the GPL v3.0 with the Autoconf exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-simple-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_autoconf-simple-exception-2.0_1.yml deleted file mode 100644 index cb69a9f7628..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_autoconf-simple-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH autoconf-simple-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_1.RULE index bb8d25261f5..2b59b3ae566 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH bison-exception-2.2 +is_license_notice: yes +minimum_coverage: 99 +--- + insert GPL v3 text here Bison Exception diff --git a/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_1.yml deleted file mode 100644 index 5e61354ca1d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH bison-exception-2.2 -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_2.RULE b/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_2.RULE index 132b4bc51df..eede399d859 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 WITH bison-exception-2.2 +is_license_reference: yes +relevance: 95 +--- + GPL 3.0 – Bison parsers exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_2.yml b/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_2.yml deleted file mode 100644 index 1bf1fa8c9e4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_bison-exception-2.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH bison-exception-2.2 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_classpath-exception-2.0_1.RULE index 4d282a4d4fd..4b363e54334 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_classpath-exception-2.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 WITH classpath-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + // Licensed under the terms of the GNU GPL v3, -// with Classpath Linking Exception for Libraries +// with Classpath Linking Exception for Libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_classpath-exception-2.0_1.yml deleted file mode 100644 index 243dcc875a4..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_classpath-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH classpath-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_1.RULE index 359616ec2f7..72f69782f35 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl +is_license_notice: yes +notes: this is a V3 not a V3-plus +--- + License: This package is free software; you can redistribute it and/or modify @@ -26,4 +32,4 @@ Font Exception: statement from your version. On Debian systems, the complete text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_1.yml deleted file mode 100644 index 834914982b3..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl -is_license_notice: yes -notes: this is a V3 not a V3-plus diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_2.RULE b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_2.RULE index 570c68ff555..e53a22f3f93 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_2.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +notes: https://github.com/python-pillow/Pillow/blob/master/Tests/fonts/LICENSE.txt and https://github.com/opensourcedesign/fonts/tree/96da5c8b6cdc1b91d2ee58efef3f0402f5a47217/gnu-freefont_freemono +--- + licensed under GPLv3, with the GPL font exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_2.yml b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_2.yml deleted file mode 100644 index 3b265c5f7cf..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -notes: https://github.com/python-pillow/Pillow/blob/master/Tests/fonts/LICENSE.txt and https://github.com/opensourcedesign/fonts/tree/96da5c8b6cdc1b91d2ee58efef3f0402f5a47217/gnu-freefont_freemono diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_3.RULE b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_3.RULE index 8650adaf855..e49b2e44ef4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +notes: this is a V3 not a V3-plus +--- + License: This package is free software; you can redistribute it and/or modify @@ -26,4 +33,4 @@ Font Exception: statement from your version. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_3.yml b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_3.yml deleted file mode 100644 index 31a32f4b5c9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -notes: this is a V3 not a V3-plus diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_4.RULE b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_4.RULE index 29290b33d2b..132c488b19e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/ +--- + It 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 font 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 font. If not, see diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_4.yml b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_4.yml deleted file mode 100644 index eab750f5268..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_5.RULE b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_5.RULE index 35527eb93cf..218bad534f2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 100 +notes: this is a V3 not a V3-plus +--- + License: This package is free software; you can redistribute it and/or modify @@ -26,4 +33,4 @@ Font Exception: statement from your version. On Debian systems, the text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_5.yml b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_5.yml deleted file mode 100644 index 31a32f4b5c9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 100 -notes: this is a V3 not a V3-plus diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_1.RULE index deb4b4fe857..865d8b5e18e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl OR gpl-2.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 90 +--- + Font Exception: As a special exception, if you create a document which uses this font, @@ -11,4 +17,4 @@ Font Exception: statement from your version. On Debian systems, the complete text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_1.yml deleted file mode 100644 index 21159d37363..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl OR gpl-2.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_2.RULE b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_2.RULE index 6c0eb22ac67..4f0913c0887 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl OR gpl-2.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 90 +--- + Font Exception: As a special exception, if you create a document which uses this font, @@ -11,4 +17,4 @@ Font Exception: statement from your version. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_2.yml b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_2.yml deleted file mode 100644 index 21159d37363..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl OR gpl-2.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_3.RULE b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_3.RULE index 2f7d76cafbe..4423248ca32 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH font-exception-gpl OR gpl-2.0 WITH font-exception-gpl +is_license_notice: yes +relevance: 90 +--- + Font Exception: As a special exception, if you create a document which uses this font, @@ -11,4 +17,4 @@ Font Exception: statement from your version. On Debian systems, the text of the GNU General Public License can be -found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. +found in /usr/share/common-licenses/GPL-2 and /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_3.yml b/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_3.yml deleted file mode 100644 index 21159d37363..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_font-exception-gpl_or_gpl-2.0_with_font-exception-gpl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH font-exception-gpl OR gpl-2.0 WITH font-exception-gpl -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_1.RULE index 8f428fae8b0..b4b2938b766 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + licensed exactly like libstdc++ (GPLv3 + GCC Runtime Library Exception), which essentially means you can use it everywhere, exactly like libstdc++. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_1.yml deleted file mode 100644 index 6e81bdfec32..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_10.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_10.RULE index e5dc52d097b..046c499d711 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + GNU General Public License v3.0 w/GCC Runtime Library exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_10.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_10.yml deleted file mode 100644 index 69f88bc7028..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_11.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_11.RULE index 9aa5c3a77e3..413f0c9ef2c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GPL-3.0-with-GCC-exception GNU General Public License v3.0 w/GCC Runtime Library exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_11.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_11.yml deleted file mode 100644 index 028b7023b73..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_12.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_12.RULE index 3988d8fbb73..e1564ca5387 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_12.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU General Public License v3.0 w/GCC Runtime Library exception GPL-3.0-with-GCC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_12.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_12.yml deleted file mode 100644 index 028b7023b73..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_13.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_13.RULE index b9b00ca8362..44e082910c1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_13.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_13.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : GPL-3.0-with-GCC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_13.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_13.yml deleted file mode 100644 index 62a91fd4c99..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_14.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_14.RULE index 00192d176c9..c93418b41d3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_14.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_14.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : GPL-3.0-with-GCC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_14.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_14.yml deleted file mode 100644 index 028b7023b73..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_15.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_15.RULE index 00a0244fe1b..4d73cc19af4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_15.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_15.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU General Public License v3.0 w/GCC Runtime Library exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_15.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_15.yml deleted file mode 100644 index 028b7023b73..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_2.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_2.RULE index eb5cb9e579c..a4c0d57aa68 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 90 +--- + licensed exactly like libstdc++ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_2.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_2.yml deleted file mode 100644 index 327f2dbc33e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_3.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_3.RULE index 94d08ba8bbf..bda5cfe87ca 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_tag: yes +relevance: 100 +--- + (GPLv3 + GCC Runtime Library Exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_3.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_3.yml deleted file mode 100644 index e2ede1ca977..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_4.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_4.RULE index f0266b1f6a2..1ed5174d72d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: The reported license is the most common occurence for this short mention +--- + GPL 3.0 with Run Time exception Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_4.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_4.yml deleted file mode 100644 index b85d1ec36a6..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: The reported license is the most common occurence for this short mention diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_5.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_5.RULE index e1e30e6e5d3..af58bfdd891 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_5.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_notice: yes +--- + runtime libraries are licensed under an exception to GNU 3 called the GCC Runtime Library Exception. See GCC Runtime Library Exception version 3.1 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_5.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_5.yml deleted file mode 100644 index 413f22a437d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_6.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_6.RULE index f4a5f74a893..87d1cb3fbde 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This library is free software; you can redistribute it and/or modify @@ -11,5 +19,4 @@ * See the GNU General Public Licence for more details. * * You should have received a copy of the GNU General Public Licence along - * with this library. If not, see . - + * with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_6.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_6.yml deleted file mode 100644 index 2b5044eb489..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_7.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_7.RULE index e4da575cb3f..3105651b952 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_7.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://www.gnu.org/licenses/gcc-exception-3.1.html +--- + https://www.gnu.org/licenses/gcc-exception-3.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_7.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_7.yml deleted file mode 100644 index ca668b5550c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://www.gnu.org/licenses/gcc-exception-3.1.html diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_8.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_8.RULE index ca67e47f927..deb5d115cb6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_notice: yes +--- + Under Section 7 of GPL version 3, you are granted additional permissions described in the GCC Runtime Library Exception, version 3.1, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_8.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_8.yml deleted file mode 100644 index 413f22a437d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_9.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_9.RULE index f79bf8c1537..3786f354cee 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + GPL-3.0-with-GCC-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_9.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_9.yml deleted file mode 100644 index 69f88bc7028..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-exception-3.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_1.RULE index 6cf5e5d1c75..07acc04cede 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-3.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +notes: The reported license is the most common occurence for this short mention +--- + GPL 3.0 with Special Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_1.yml deleted file mode 100644 index bbaca72c3df..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 -notes: The reported license is the most common occurence for this short mention diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_2.RULE index 2d29f50b902..9003d2d5fc3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_2.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 WITH gcc-linking-exception-2.0 +is_license_tag: yes +relevance: 99 +notes: https://github.com/NationalSecurityAgency/ghidra/blob/da94eb86bd2b89c8b0ab9bd89e9f0dc5a3157055/GPL/DemanglerGnu/src/demangler_gnu_v2_24/headers/cp-demangle.h#L2 +--- + IP: GPL 3 Linking Permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_2.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_2.yml deleted file mode 100644 index 9ffcb0a0502..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc-linking-exception-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-linking-exception-2.0 -is_license_tag: yes -relevance: 99 -notes: https://github.com/NationalSecurityAgency/ghidra/blob/da94eb86bd2b89c8b0ab9bd89e9f0dc5a3157055/GPL/DemanglerGnu/src/demangler_gnu_v2_24/headers/cp-demangle.h#L2 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc_exception31_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gcc_exception31_1.RULE index c661c8c17b0..e3fe72712e4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc_exception31_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gcc_exception31_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 WITH gcc-exception-3.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This library is free software; you can redistribute it and/or modify @@ -11,5 +18,4 @@ * See the GNU General Public Licence for more details. * * You should have received a copy of the GNU General Public Licence along - * with this library. If not, see . - + * with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gcc_exception31_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_gcc_exception31_1.yml deleted file mode 100644 index 5948bc6737d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gcc_exception31_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 WITH gcc-exception-3.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_with_generic-exception_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_generic-exception_1.RULE index 3a06e945426..a8dd583342a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_generic-exception_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-3.0 WITH generic-exception +is_license_notice: yes +notes: Seen in Signal library +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html + - https://www.mozilla.org/en-US/MPL/2.0 +--- + Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html Additional Permissions For Submission to Apple App Store: Provided that you are diff --git a/src/licensedcode/data/rules/gpl-3.0_with_generic-exception_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_generic-exception_1.yml deleted file mode 100644 index e992c4adbc9..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_generic-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 WITH generic-exception -is_license_notice: yes -notes: Seen in Signal library -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html - - https://www.mozilla.org/en-US/MPL/2.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_1.RULE index 6d5ca9fc4df..a3de30b6f7e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 99 +--- + If you modify this Program, or any covered work, by linking or combining it with OpenSSL (or a modified version of that library), containing parts covered by the terms of OpenSSL License, the licensors of this diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_1.yml deleted file mode 100644 index 7a1c1624810..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_2.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_2.RULE index e2aaf461e21..dae6941bc37 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +--- + Additional permission under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_2.yml b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_2.yml deleted file mode 100644 index 34ea8e9f7b5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_3.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_3.RULE index 58ae4487bfb..238774b4073 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 99 +--- + If you modify this Program, or any covered work, by linking or combining it with the OpenSSL library (or a modified version of that library), containing parts covered by the terms of the OpenSSL License, the diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_3.yml b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_3.yml deleted file mode 100644 index 7a1c1624810..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_4.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_4.RULE index a49879bd627..84d64209c74 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * AutoGen 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 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_4.yml b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_4.yml deleted file mode 100644 index ac26d834697..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_5.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_5.RULE index 8c965ecb32b..5f0edc82258 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0 WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +notes: seen in OpenBD +--- + Permission under GNU GPL version 3 section 7 If you modify this Program, or any covered work, by linking or combining diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_5.yml b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_5.yml deleted file mode 100644 index e826a2f0997..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0 WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -notes: seen in OpenBD diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_6.RULE b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_6.RULE index 485a96eaf96..d1bb6eb6ca5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-3.0 WITH gpl-generic-additional-terms +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * AutoGen 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 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_6.yml b/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_6.yml deleted file mode 100644 index bd395fd446c..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_gpl-generic-additional-terms_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 WITH gpl-generic-additional-terms -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_with_openssl-exception-gpl-2.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_openssl-exception-gpl-2.0_1.RULE index c8fabd9b8d0..8a8c65dd882 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_openssl-exception-gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_openssl-exception-gpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-3.0 WITH openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU General Public License version 3 with the addition of the following special exception: diff --git a/src/licensedcode/data/rules/gpl-3.0_with_openssl-exception-gpl-2.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_openssl-exception-gpl-2.0_1.yml deleted file mode 100644 index ad09658868d..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_openssl-exception-gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_other-copyleft_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_other-copyleft_1.RULE index 801245e5f94..3ff68b3e3f1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_other-copyleft_1.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-3.0 WITH other-copyleft +is_license_notice: yes +relevance: 100 +notes: this is a really weird wording and not clear if this relates to an LGPL 3.0 or something + else +--- + This license is the same as the GPL 3 license with linking exceptions. See individual files for specific wording. -See GPL 3 license in this directory. +See GPL 3 license in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_other-copyleft_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_other-copyleft_1.yml deleted file mode 100644 index 9246da2c8e5..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_other-copyleft_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 WITH other-copyleft -is_license_notice: yes -relevance: 100 -notes: this is a really weird wording and not clear if this relates to an LGPL 3.0 or something - else diff --git a/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_1.RULE index a4fc6ace3fe..2fcc6d8daaf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-3.0 WITH qt-gpl-exception-1.0 +is_license_notice: yes +relevance: 100 +--- + This is the GNU General Public License version 3, annotated with The -Qt Company GPL Exception 1.0: +Qt Company GPL Exception 1.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_1.yml deleted file mode 100644 index b0f4010ff1e..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 WITH qt-gpl-exception-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_or_commercial-license_1.RULE index d7f579bc738..a7bb73b43b1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_or_commercial-license_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0 WITH qt-gpl-exception-1.0 OR commercial-license +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL3-EXCEPT +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html + - https://www.qt.io/contact-us + - https://www.qt.io/terms-conditions +--- + ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in diff --git a/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_or_commercial-license_1.yml deleted file mode 100644 index 6744158de19..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_qt-gpl-exception-1.0_or_commercial-license_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0 WITH qt-gpl-exception-1.0 OR commercial-license -is_license_notice: yes -referenced_filenames: - - LICENSE.GPL3-EXCEPT -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html - - https://www.qt.io/contact-us - - https://www.qt.io/terms-conditions diff --git a/src/licensedcode/data/rules/gpl-3.0_with_sencha-app-floss-exception_and_other_1.RULE b/src/licensedcode/data/rules/gpl-3.0_with_sencha-app-floss-exception_and_other_1.RULE index eb97864c449..b097dcd1028 100644 --- a/src/licensedcode/data/rules/gpl-3.0_with_sencha-app-floss-exception_and_other_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_with_sencha-app-floss-exception_and_other_1.RULE @@ -1,3 +1,22 @@ +--- +license_expression: (gpl-3.0 WITH sencha-app-floss-exception OR gpl-3.0 WITH sencha-dev-floss-exception + OR sencha-commercial) AND (public-domain AND mit AND mit) +is_license_notice: yes +relevance: 100 +notes: complex notice for Sencha +ignorable_urls: + - http://code.google.com/p/flexible-js-formatting/ + - http://www.json.org/js.html + - http://www.sencha.com/products/complete-team/license + - http://www.sencha.com/products/complete/license + - http://www.sencha.com/products/floss-exception.php + - http://www.sencha.com/products/touch/license.php + - http://www.sencha.com/products/ux-exception.php + - http://www.sencha.com/store/touch/license.php + - https://github.com/pivotal/jasmine + - https://www.gnu.org/licenses/gpl.html +--- + http://www.sencha.com/products/touch/license.php diff --git a/src/licensedcode/data/rules/gpl-3.0_with_sencha-app-floss-exception_and_other_1.yml b/src/licensedcode/data/rules/gpl-3.0_with_sencha-app-floss-exception_and_other_1.yml deleted file mode 100644 index 048d6d2f20b..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_with_sencha-app-floss-exception_and_other_1.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: (gpl-3.0 WITH sencha-app-floss-exception OR gpl-3.0 WITH sencha-dev-floss-exception - OR sencha-commercial) AND (public-domain AND mit AND mit) -is_license_notice: yes -relevance: 100 -notes: complex notice for Sencha -ignorable_urls: - - http://code.google.com/p/flexible-js-formatting/ - - http://www.json.org/js.html - - http://www.sencha.com/products/complete-team/license - - http://www.sencha.com/products/complete/license - - http://www.sencha.com/products/floss-exception.php - - http://www.sencha.com/products/touch/license.php - - http://www.sencha.com/products/ux-exception.php - - http://www.sencha.com/store/touch/license.php - - https://github.com/pivotal/jasmine - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-3.0_without_qt-gpl-exception-1.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/gpl-3.0_without_qt-gpl-exception-1.0_or_commercial-license_2.RULE index de5154fc887..00a3666d64f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_without_qt-gpl-exception-1.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_without_qt-gpl-exception-1.0_or_commercial-license_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-3.0 OR commercial-license +is_license_notice: yes +referenced_filenames: + - LICENSE.GPL3 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html + - https://www.qt.io/contact-us + - https://www.qt.io/terms-conditions +--- + ** $QT_BEGIN_LICENSE:GPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in diff --git a/src/licensedcode/data/rules/gpl-3.0_without_qt-gpl-exception-1.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/gpl-3.0_without_qt-gpl-exception-1.0_or_commercial-license_2.yml deleted file mode 100644 index f6c87344842..00000000000 --- a/src/licensedcode/data/rules/gpl-3.0_without_qt-gpl-exception-1.0_or_commercial-license_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-3.0 OR commercial-license -is_license_notice: yes -referenced_filenames: - - LICENSE.GPL3 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html - - https://www.qt.io/contact-us - - https://www.qt.io/terms-conditions diff --git a/src/licensedcode/data/rules/gpl-derived.RULE b/src/licensedcode/data/rules/gpl-derived.RULE index ffbf993dd8b..f9210654ceb 100644 --- a/src/licensedcode/data/rules/gpl-derived.RULE +++ b/src/licensedcode/data/rules/gpl-derived.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 79 +minimum_coverage: 100 +notes: linux is GPL-2.0 licensed, mostly +--- + Derived from code originally in linux \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-derived.yml b/src/licensedcode/data/rules/gpl-derived.yml deleted file mode 100644 index 437fa286edb..00000000000 --- a/src/licensedcode/data/rules/gpl-derived.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 79 -minimum_coverage: 100 -notes: linux is GPL-2.0 licensed, mostly diff --git a/src/licensedcode/data/rules/gpl-derived2.RULE b/src/licensedcode/data/rules/gpl-derived2.RULE index 8565f43d132..8207b4b06bc 100644 --- a/src/licensedcode/data/rules/gpl-derived2.RULE +++ b/src/licensedcode/data/rules/gpl-derived2.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - linux/arch/arm/kernel/fiq.c +--- + Derived from code originally in linux/arch/arm/kernel/fiq.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-derived2.yml b/src/licensedcode/data/rules/gpl-derived2.yml deleted file mode 100644 index e2ff42cd9df..00000000000 --- a/src/licensedcode/data/rules/gpl-derived2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - linux/arch/arm/kernel/fiq.c diff --git a/src/licensedcode/data/rules/gpl1_bare_word_only.RULE b/src/licensedcode/data/rules/gpl1_bare_word_only.RULE index 2ea05f1ca74..7389218cd6d 100644 --- a/src/licensedcode/data/rules/gpl1_bare_word_only.RULE +++ b/src/licensedcode/data/rules/gpl1_bare_word_only.RULE @@ -1 +1,7 @@ -GPL1 +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 50 +--- + +GPL1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl1_bare_word_only.yml b/src/licensedcode/data/rules/gpl1_bare_word_only.yml deleted file mode 100644 index 7dbbd63d394..00000000000 --- a/src/licensedcode/data/rules/gpl1_bare_word_only.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/gpl2_bare_word_only.RULE b/src/licensedcode/data/rules/gpl2_bare_word_only.RULE index 911077e993d..61ee1d88821 100644 --- a/src/licensedcode/data/rules/gpl2_bare_word_only.RULE +++ b/src/licensedcode/data/rules/gpl2_bare_word_only.RULE @@ -1 +1,7 @@ -GPL2 +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 50 +--- + +GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl2_bare_word_only.yml b/src/licensedcode/data/rules/gpl2_bare_word_only.yml deleted file mode 100644 index 760f035a6a7..00000000000 --- a/src/licensedcode/data/rules/gpl2_bare_word_only.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/gpl3_bare_word_only.RULE b/src/licensedcode/data/rules/gpl3_bare_word_only.RULE index 2939dbc652b..59fa53a84fa 100644 --- a/src/licensedcode/data/rules/gpl3_bare_word_only.RULE +++ b/src/licensedcode/data/rules/gpl3_bare_word_only.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 95 +--- + GPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl3_bare_word_only.yml b/src/licensedcode/data/rules/gpl3_bare_word_only.yml deleted file mode 100644 index 0e733147501..00000000000 --- a/src/licensedcode/data/rules/gpl3_bare_word_only.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/gpl_0.RULE b/src/licensedcode/data/rules/gpl_0.RULE index a83f0b39b2f..560c9311764 100644 --- a/src/licensedcode/data/rules/gpl_0.RULE +++ b/src/licensedcode/data/rules/gpl_0.RULE @@ -1 +1,7 @@ -you can use, modify, distribute and sell this under the terms of GPL *only*. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +you can use, modify, distribute and sell this under the terms of GPL *only*. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_0.yml b/src/licensedcode/data/rules/gpl_0.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_1.RULE b/src/licensedcode/data/rules/gpl_1.RULE index 8ad379ec313..ed0be49722a 100644 --- a/src/licensedcode/data/rules/gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is licenced under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_1.yml b/src/licensedcode/data/rules/gpl_1.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_10.RULE b/src/licensedcode/data/rules/gpl_10.RULE index 013d9b0f9c1..4a0a8e04bc8 100644 --- a/src/licensedcode/data/rules/gpl_10.RULE +++ b/src/licensedcode/data/rules/gpl_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + All code released under the GPL, see /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_10.yml b/src/licensedcode/data/rules/gpl_10.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_100.RULE b/src/licensedcode/data/rules/gpl_100.RULE index 6507fa4d676..5bfbce06ed4 100644 --- a/src/licensedcode/data/rules/gpl_100.RULE +++ b/src/licensedcode/data/rules/gpl_100.RULE @@ -1 +1,7 @@ -This code is covered by the GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This code is covered by the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_100.yml b/src/licensedcode/data/rules/gpl_100.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_101.RULE b/src/licensedcode/data/rules/gpl_101.RULE index bc0a0db4310..55c9e099360 100644 --- a/src/licensedcode/data/rules/gpl_101.RULE +++ b/src/licensedcode/data/rules/gpl_101.RULE @@ -1 +1,7 @@ -This file is covered by the GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This file is covered by the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_101.yml b/src/licensedcode/data/rules/gpl_101.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_102.RULE b/src/licensedcode/data/rules/gpl_102.RULE index 26addaf79b7..c82fa6ad555 100644 --- a/src/licensedcode/data/rules/gpl_102.RULE +++ b/src/licensedcode/data/rules/gpl_102.RULE @@ -1 +1,7 @@ -This file is licenced under the GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This file is licenced under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_102.yml b/src/licensedcode/data/rules/gpl_102.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_103.RULE b/src/licensedcode/data/rules/gpl_103.RULE index dad419ab861..64c80c983ca 100644 --- a/src/licensedcode/data/rules/gpl_103.RULE +++ b/src/licensedcode/data/rules/gpl_103.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + -This file distributed under the GNU GPL. +This file distributed under the GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_103.yml b/src/licensedcode/data/rules/gpl_103.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_104.RULE b/src/licensedcode/data/rules/gpl_104.RULE index f436d5a3f53..2102f89c010 100644 --- a/src/licensedcode/data/rules/gpl_104.RULE +++ b/src/licensedcode/data/rules/gpl_104.RULE @@ -1 +1,7 @@ -This file may be distributed under the terms of the GNU GPL license. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This file may be distributed under the terms of the GNU GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_104.yml b/src/licensedcode/data/rules/gpl_104.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_105.RULE b/src/licensedcode/data/rules/gpl_105.RULE index be95a475839..871f9f9e12c 100644 --- a/src/licensedcode/data/rules/gpl_105.RULE +++ b/src/licensedcode/data/rules/gpl_105.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- -Licence: GPL + +Licence: GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_105.yml b/src/licensedcode/data/rules/gpl_105.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_106.RULE b/src/licensedcode/data/rules/gpl_106.RULE index fbbf238132b..4f494f08ef0 100644 --- a/src/licensedcode/data/rules/gpl_106.RULE +++ b/src/licensedcode/data/rules/gpl_106.RULE @@ -1 +1,7 @@ -Distribute under GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Distribute under GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_106.yml b/src/licensedcode/data/rules/gpl_106.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_107.RULE b/src/licensedcode/data/rules/gpl_107.RULE index 79f6dd83719..a2b7c7b0803 100644 --- a/src/licensedcode/data/rules/gpl_107.RULE +++ b/src/licensedcode/data/rules/gpl_107.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - COPYING +--- + This test is based on driver source (which declares its module licence as "GPL" although the -driver source does not include a "COPYING" file). +driver source does not include a "COPYING" file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_107.yml b/src/licensedcode/data/rules/gpl_107.yml deleted file mode 100644 index a120e02cbba..00000000000 --- a/src/licensedcode/data/rules/gpl_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_108.RULE b/src/licensedcode/data/rules/gpl_108.RULE index 2909e3485f4..f5d3d58219d 100644 --- a/src/licensedcode/data/rules/gpl_108.RULE +++ b/src/licensedcode/data/rules/gpl_108.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + (which declares its module licence as "GPL" although the -driver source does not include a "COPYING" file). +driver source does not include a "COPYING" file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_108.yml b/src/licensedcode/data/rules/gpl_108.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_109.RULE b/src/licensedcode/data/rules/gpl_109.RULE index 20047dcd9fe..d737d0a65f5 100644 --- a/src/licensedcode/data/rules/gpl_109.RULE +++ b/src/licensedcode/data/rules/gpl_109.RULE @@ -1 +1,7 @@ -based on GPL code from +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +based on GPL code from \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_109.yml b/src/licensedcode/data/rules/gpl_109.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_11.RULE b/src/licensedcode/data/rules/gpl_11.RULE index e11b7d84414..c15366b0992 100644 --- a/src/licensedcode/data/rules/gpl_11.RULE +++ b/src/licensedcode/data/rules/gpl_11.RULE @@ -1 +1,6 @@ -This file is released under General Public License \ No newline at end of file +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +--- + +This file is released under General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_11.yml b/src/licensedcode/data/rules/gpl_11.yml deleted file mode 100644 index 5c8568e5f3f..00000000000 --- a/src/licensedcode/data/rules/gpl_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl_110.RULE b/src/licensedcode/data/rules/gpl_110.RULE index a7b2e7c9607..76fb182b0f1 100644 --- a/src/licensedcode/data/rules/gpl_110.RULE +++ b/src/licensedcode/data/rules/gpl_110.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + other GPL, unpublished (until now), Linux driver code, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_110.yml b/src/licensedcode/data/rules/gpl_110.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_111.RULE b/src/licensedcode/data/rules/gpl_111.RULE index 0caf42dbb58..74789d7a38d 100644 --- a/src/licensedcode/data/rules/gpl_111.RULE +++ b/src/licensedcode/data/rules/gpl_111.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is taken from the System written by . has agreed that this code can use the GPL licence, -although he does not use that licence in his own code. +although he does not use that licence in his own code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_111.yml b/src/licensedcode/data/rules/gpl_111.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_112.RULE b/src/licensedcode/data/rules/gpl_112.RULE index 0fbcc0ccd62..331b72ce94c 100644 --- a/src/licensedcode/data/rules/gpl_112.RULE +++ b/src/licensedcode/data/rules/gpl_112.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 80 +--- + ...Insert GPL boilerplate here.. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_112.yml b/src/licensedcode/data/rules/gpl_112.yml deleted file mode 100644 index 1b1913806fb..00000000000 --- a/src/licensedcode/data/rules/gpl_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/gpl_113.RULE b/src/licensedcode/data/rules/gpl_113.RULE index 0361031365b..85ffc33069b 100644 --- a/src/licensedcode/data/rules/gpl_113.RULE +++ b/src/licensedcode/data/rules/gpl_113.RULE @@ -1,7 +1,14 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +--- + Use consistent with the GNU GPL is permitted, provided that this copyright notice is preserved in its entirety in all copies and derived works. HEWLETT-PACKARD COMPANY MAKES NO WARRANTIES, EXPRESSED OR IMPLIED, AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS -FITNESS FOR ANY PARTICULAR PURPOSE. +FITNESS FOR ANY PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_113.yml b/src/licensedcode/data/rules/gpl_113.yml deleted file mode 100644 index fb5562106f8..00000000000 --- a/src/licensedcode/data/rules/gpl_113.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/gpl_114.RULE b/src/licensedcode/data/rules/gpl_114.RULE index c57721d4393..ad669d5f072 100644 --- a/src/licensedcode/data/rules/gpl_114.RULE +++ b/src/licensedcode/data/rules/gpl_114.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This software may be used and distributed according to the terms -of the GNU General Public License, incorporated herein by reference. +of the GNU General Public License, incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_114.yml b/src/licensedcode/data/rules/gpl_114.yml deleted file mode 100644 index 3f2d27eb13b..00000000000 --- a/src/licensedcode/data/rules/gpl_114.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl_115.RULE b/src/licensedcode/data/rules/gpl_115.RULE index c3eebf4eebc..bf3e3cd0f73 100644 --- a/src/licensedcode/data/rules/gpl_115.RULE +++ b/src/licensedcode/data/rules/gpl_115.RULE @@ -1 +1,8 @@ -This code is placed under the terms of the GNU General Public License +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +--- + +This code is placed under the terms of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_115.yml b/src/licensedcode/data/rules/gpl_115.yml deleted file mode 100644 index 68c8d19dfdf..00000000000 --- a/src/licensedcode/data/rules/gpl_115.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl_116.RULE b/src/licensedcode/data/rules/gpl_116.RULE index 5bcec06ad99..1a973444857 100644 --- a/src/licensedcode/data/rules/gpl_116.RULE +++ b/src/licensedcode/data/rules/gpl_116.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may be used and distributed according to the terms of the GNU General Public License (GPL), incorporated herein by reference. Drivers based on or derived from this code fall under the GPL and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating - system is licensed under the GPL. + system is licensed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_116.yml b/src/licensedcode/data/rules/gpl_116.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_116.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_117.RULE b/src/licensedcode/data/rules/gpl_117.RULE index f4ffac17f73..43e8b64e578 100644 --- a/src/licensedcode/data/rules/gpl_117.RULE +++ b/src/licensedcode/data/rules/gpl_117.RULE @@ -1,2 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * You should have received a copy of the GNU General Public License * (for example COPYING); If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_117.yml b/src/licensedcode/data/rules/gpl_117.yml deleted file mode 100644 index 155dc8ece9b..00000000000 --- a/src/licensedcode/data/rules/gpl_117.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl_118.RULE b/src/licensedcode/data/rules/gpl_118.RULE index d1bece377ae..8b2267f9721 100644 --- a/src/licensedcode/data/rules/gpl_118.RULE +++ b/src/licensedcode/data/rules/gpl_118.RULE @@ -1,4 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - ftp://prep.ai.mit.edu/pub/gnu/GPL +--- + COPYRIGHT This file is distributed under the terms of the GNU General Public License (GPL). Copies of the GPL can be obtained from: - ftp://prep.ai.mit.edu/pub/gnu/GPL + ftp://prep.ai.mit.edu/pub/gnu/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_118.yml b/src/licensedcode/data/rules/gpl_118.yml deleted file mode 100644 index bce168ae929..00000000000 --- a/src/licensedcode/data/rules/gpl_118.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - ftp://prep.ai.mit.edu/pub/gnu/GPL diff --git a/src/licensedcode/data/rules/gpl_118_2.RULE b/src/licensedcode/data/rules/gpl_118_2.RULE index 2e0fa9445cc..911906c0941 100644 --- a/src/licensedcode/data/rules/gpl_118_2.RULE +++ b/src/licensedcode/data/rules/gpl_118_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - ftp://prep.ai.mit.edu/pub/gnu/GPL +--- + This file is distributed under the terms of the GNU General Public License (GPL). Copies of the GPL can be obtained from: - ftp://prep.ai.mit.edu/pub/gnu/GPL + ftp://prep.ai.mit.edu/pub/gnu/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_118_2.yml b/src/licensedcode/data/rules/gpl_118_2.yml deleted file mode 100644 index bce168ae929..00000000000 --- a/src/licensedcode/data/rules/gpl_118_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - ftp://prep.ai.mit.edu/pub/gnu/GPL diff --git a/src/licensedcode/data/rules/gpl_119.RULE b/src/licensedcode/data/rules/gpl_119.RULE index d2a38a85cb2..45129331afe 100644 --- a/src/licensedcode/data/rules/gpl_119.RULE +++ b/src/licensedcode/data/rules/gpl_119.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + COPYRIGHT This file is distributed under the terms of the GNU General Public - License (GPL). Copies of the GPL can be obtained from: + License (GPL). Copies of the GPL can be obtained from: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_119.yml b/src/licensedcode/data/rules/gpl_119.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_12.RULE b/src/licensedcode/data/rules/gpl_12.RULE index f3825ffd2f6..5c904355c0e 100644 --- a/src/licensedcode/data/rules/gpl_12.RULE +++ b/src/licensedcode/data/rules/gpl_12.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_12.yml b/src/licensedcode/data/rules/gpl_12.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_120.RULE b/src/licensedcode/data/rules/gpl_120.RULE index 0887cbcdc29..e9a67752442 100644 --- a/src/licensedcode/data/rules/gpl_120.RULE +++ b/src/licensedcode/data/rules/gpl_120.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This file is distributed under the terms of the GNU General Public -License (GPL). Copies of the GPL can be obtained from gnu.org/gpl. +License (GPL). Copies of the GPL can be obtained from gnu.org/gpl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_120.yml b/src/licensedcode/data/rules/gpl_120.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_121.RULE b/src/licensedcode/data/rules/gpl_121.RULE index 56e0a2f2492..01dd4499632 100644 --- a/src/licensedcode/data/rules/gpl_121.RULE +++ b/src/licensedcode/data/rules/gpl_121.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This file may be distributed under the terms of the -GNU General Public License. +GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_121.yml b/src/licensedcode/data/rules/gpl_121.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_122.RULE b/src/licensedcode/data/rules/gpl_122.RULE index 92fe63e188c..20f45667da6 100644 --- a/src/licensedcode/data/rules/gpl_122.RULE +++ b/src/licensedcode/data/rules/gpl_122.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- -May be copied or modified under the terms of the GNU General Public License + +May be copied or modified under the terms of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_122.yml b/src/licensedcode/data/rules/gpl_122.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_123.RULE b/src/licensedcode/data/rules/gpl_123.RULE index bbd790dc63b..9088bc1e907 100644 --- a/src/licensedcode/data/rules/gpl_123.RULE +++ b/src/licensedcode/data/rules/gpl_123.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This file is subject to the terms and conditions of the GNU General Publ -License. +License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_123.yml b/src/licensedcode/data/rules/gpl_123.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_124.RULE b/src/licensedcode/data/rules/gpl_124.RULE index 8623d57540e..a8eb1d0cceb 100644 --- a/src/licensedcode/data/rules/gpl_124.RULE +++ b/src/licensedcode/data/rules/gpl_124.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This file is subject to the terms and conditions of the GNU General Public -License. +License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_124.yml b/src/licensedcode/data/rules/gpl_124.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_125.RULE b/src/licensedcode/data/rules/gpl_125.RULE index d2bd31170c5..b723bd58a1c 100644 --- a/src/licensedcode/data/rules/gpl_125.RULE +++ b/src/licensedcode/data/rules/gpl_125.RULE @@ -1 +1,7 @@ -Under the terms of the GNU General Public License. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Under the terms of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_125.yml b/src/licensedcode/data/rules/gpl_125.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_126.RULE b/src/licensedcode/data/rules/gpl_126.RULE index 5573f29c52e..46f30844e1e 100644 --- a/src/licensedcode/data/rules/gpl_126.RULE +++ b/src/licensedcode/data/rules/gpl_126.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This software may be used and distributed according to the terms of -the GNU General Public License. +the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_126.yml b/src/licensedcode/data/rules/gpl_126.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_127.RULE b/src/licensedcode/data/rules/gpl_127.RULE index 7e6672fab51..2d709c480db 100644 --- a/src/licensedcode/data/rules/gpl_127.RULE +++ b/src/licensedcode/data/rules/gpl_127.RULE @@ -1 +1,9 @@ -'COPYING' : general public licence +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +'COPYING' : general public licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_127.yml b/src/licensedcode/data/rules/gpl_127.yml deleted file mode 100644 index 173d312feb9..00000000000 --- a/src/licensedcode/data/rules/gpl_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_128.RULE b/src/licensedcode/data/rules/gpl_128.RULE index 333b1433fc3..35570e75c84 100644 --- a/src/licensedcode/data/rules/gpl_128.RULE +++ b/src/licensedcode/data/rules/gpl_128.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Redistribution of this file is permitted under the terms of the GNU -Public License (GPL) +Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_128.yml b/src/licensedcode/data/rules/gpl_128.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_129.RULE b/src/licensedcode/data/rules/gpl_129.RULE index b0326562a2e..afdb5d9f807 100644 --- a/src/licensedcode/data/rules/gpl_129.RULE +++ b/src/licensedcode/data/rules/gpl_129.RULE @@ -1 +1,7 @@ -License: GPL as published by the FSF. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +License: GPL as published by the FSF. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_129.yml b/src/licensedcode/data/rules/gpl_129.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_13.RULE b/src/licensedcode/data/rules/gpl_13.RULE index 0a69d0388d6..e1edadde1f1 100644 --- a/src/licensedcode/data/rules/gpl_13.RULE +++ b/src/licensedcode/data/rules/gpl_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +notes: gpl in wpa supplicant variant +--- + Please note that # even though the core GnuTLS library is released under LGPL, this extra # library uses GPL and as such, the terms of GPL apply to the combination diff --git a/src/licensedcode/data/rules/gpl_13.yml b/src/licensedcode/data/rules/gpl_13.yml deleted file mode 100644 index 0176ce8bb88..00000000000 --- a/src/licensedcode/data/rules/gpl_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -notes: gpl in wpa supplicant variant diff --git a/src/licensedcode/data/rules/gpl_130.RULE b/src/licensedcode/data/rules/gpl_130.RULE index ef40a8d5979..873c23d6ca3 100644 --- a/src/licensedcode/data/rules/gpl_130.RULE +++ b/src/licensedcode/data/rules/gpl_130.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 90 +minimum_coverage: 100 +--- + device interface is opened. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED @@ -10,4 +17,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_130.yml b/src/licensedcode/data/rules/gpl_130.yml deleted file mode 100644 index 4aab4308370..00000000000 --- a/src/licensedcode/data/rules/gpl_130.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl_131.RULE b/src/licensedcode/data/rules/gpl_131.RULE index c1e13e1e4c2..f21968916c3 100644 --- a/src/licensedcode/data/rules/gpl_131.RULE +++ b/src/licensedcode/data/rules/gpl_131.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This program can be redistributed or modified under the terms of the GNU General Public License as published by the Free Software Foundation. This program is distributed without any warranty or implied warranty of merchantability or fitness for a particular purpose. - See the GNU General Public License for more details. + See the GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_131.yml b/src/licensedcode/data/rules/gpl_131.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_131.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_132.RULE b/src/licensedcode/data/rules/gpl_132.RULE index c39801c6049..234553c56b9 100644 --- a/src/licensedcode/data/rules/gpl_132.RULE +++ b/src/licensedcode/data/rules/gpl_132.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: 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. @@ -9,4 +16,4 @@ You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to - the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_132.yml b/src/licensedcode/data/rules/gpl_132.yml deleted file mode 100644 index 7adbd129915..00000000000 --- a/src/licensedcode/data/rules/gpl_132.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_133.RULE b/src/licensedcode/data/rules/gpl_133.RULE index 749a701bf1c..0df9d891ab2 100644 --- a/src/licensedcode/data/rules/gpl_133.RULE +++ b/src/licensedcode/data/rules/gpl_133.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + 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 @@ -8,5 +13,4 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA The full GNU General Public License is included in this distribution in the - file called LICENSE. - + file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_133.yml b/src/licensedcode/data/rules/gpl_133.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_133.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_134.RULE b/src/licensedcode/data/rules/gpl_134.RULE index d831b3f039a..7927c136f0d 100644 --- a/src/licensedcode/data/rules/gpl_134.RULE +++ b/src/licensedcode/data/rules/gpl_134.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may be used and distributed according to the terms of the GNU General Public License (GPL), incorporated herein by reference. @@ -7,4 +12,4 @@ 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. + General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_134.yml b/src/licensedcode/data/rules/gpl_134.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_134.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_135.RULE b/src/licensedcode/data/rules/gpl_135.RULE index 04b751c6636..022134738b0 100644 --- a/src/licensedcode/data/rules/gpl_135.RULE +++ b/src/licensedcode/data/rules/gpl_135.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU General Public License, @@ -11,4 +20,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, see . The full GNU General Public License is included in this distribution in -the file called "COPYING". +the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_135.yml b/src/licensedcode/data/rules/gpl_135.yml deleted file mode 100644 index 00e53e41678..00000000000 --- a/src/licensedcode/data/rules/gpl_135.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl_136.RULE b/src/licensedcode/data/rules/gpl_136.RULE index 9523c5e4578..9a884ed8553 100644 --- a/src/licensedcode/data/rules/gpl_136.RULE +++ b/src/licensedcode/data/rules/gpl_136.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: yes +--- + driver library 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 @@ -11,4 +16,4 @@ 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., 59 Temple Place - Suite 330, Boston, -MA 02111-1307, USA. +MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_136.yml b/src/licensedcode/data/rules/gpl_136.yml deleted file mode 100644 index 0d33a4d1c6c..00000000000 --- a/src/licensedcode/data/rules/gpl_136.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/gpl_137.RULE b/src/licensedcode/data/rules/gpl_137.RULE index 57f84f78fc8..b5ec5b8fa52 100644 --- a/src/licensedcode/data/rules/gpl_137.RULE +++ b/src/licensedcode/data/rules/gpl_137.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.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. +modify it under the terms of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_137.yml b/src/licensedcode/data/rules/gpl_137.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_137.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_138.RULE b/src/licensedcode/data/rules/gpl_138.RULE index 3ae05d418c8..5d5fb1fbe54 100644 --- a/src/licensedcode/data/rules/gpl_138.RULE +++ b/src/licensedcode/data/rules/gpl_138.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -6,5 +11,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_138.yml b/src/licensedcode/data/rules/gpl_138.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_138.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_139.RULE b/src/licensedcode/data/rules/gpl_139.RULE index e645474cbcf..db8fd168d2e 100644 --- a/src/licensedcode/data/rules/gpl_139.RULE +++ b/src/licensedcode/data/rules/gpl_139.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: 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. @@ -9,4 +14,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, write the Free Software Foundation, - Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_139.yml b/src/licensedcode/data/rules/gpl_139.yml deleted file mode 100644 index 0d33a4d1c6c..00000000000 --- a/src/licensedcode/data/rules/gpl_139.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/gpl_14.RULE b/src/licensedcode/data/rules/gpl_14.RULE index f02ac0118dd..ba6257c3384 100644 --- a/src/licensedcode/data/rules/gpl_14.RULE +++ b/src/licensedcode/data/rules/gpl_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: gpl in wpa supplicant variant2 +--- + please note that these # libraries are licensed under GPL and as such, BSD license may not apply for # the resulting binary. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_14.yml b/src/licensedcode/data/rules/gpl_14.yml deleted file mode 100644 index 2c9fe753729..00000000000 --- a/src/licensedcode/data/rules/gpl_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: gpl in wpa supplicant variant2 diff --git a/src/licensedcode/data/rules/gpl_140.RULE b/src/licensedcode/data/rules/gpl_140.RULE index fc32b7fce13..6b8b70e135a 100644 --- a/src/licensedcode/data/rules/gpl_140.RULE +++ b/src/licensedcode/data/rules/gpl_140.RULE @@ -1 +1,7 @@ - May be used under the terms of the GNU General Public License (GPL) +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + + May be used under the terms of the GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_140.yml b/src/licensedcode/data/rules/gpl_140.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_141.RULE b/src/licensedcode/data/rules/gpl_141.RULE index 2f0adf2a7b6..3b02008d294 100644 --- a/src/licensedcode/data/rules/gpl_141.RULE +++ b/src/licensedcode/data/rules/gpl_141.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + The project team have placed their code under the GPL. The -software is provided "as is" and without warranty express or implied. +software is provided "as is" and without warranty express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_141.yml b/src/licensedcode/data/rules/gpl_141.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_141.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_142.RULE b/src/licensedcode/data/rules/gpl_142.RULE index beb1d38d686..c0b40f71b7c 100644 --- a/src/licensedcode/data/rules/gpl_142.RULE +++ b/src/licensedcode/data/rules/gpl_142.RULE @@ -1 +1,7 @@ - Licence: Allegedly GPL, but no source visible. \ No newline at end of file +--- +license_expression: gpl-1.0-plus AND unknown +is_license_reference: yes +relevance: 100 +--- + + Licence: Allegedly GPL, but no source visible. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_142.yml b/src/licensedcode/data/rules/gpl_142.yml deleted file mode 100644 index b596240f5b5..00000000000 --- a/src/licensedcode/data/rules/gpl_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_143.RULE b/src/licensedcode/data/rules/gpl_143.RULE index 273a6ce5619..4ec5f5bf80c 100644 --- a/src/licensedcode/data/rules/gpl_143.RULE +++ b/src/licensedcode/data/rules/gpl_143.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This driver is provided under the GNU General Public License, incorporated herein by reference. The driver is provided without - warranty or support. + warranty or support. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_143.yml b/src/licensedcode/data/rules/gpl_143.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_143.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_144.RULE b/src/licensedcode/data/rules/gpl_144.RULE index f6d6e3e0f37..345c6c56e58 100644 --- a/src/licensedcode/data/rules/gpl_144.RULE +++ b/src/licensedcode/data/rules/gpl_144.RULE @@ -1 +1,7 @@ -GPL/Linux driver written by +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +GPL/Linux driver written by \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_144.yml b/src/licensedcode/data/rules/gpl_144.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_145.RULE b/src/licensedcode/data/rules/gpl_145.RULE index cc4a63bf3f9..366c310904d 100644 --- a/src/licensedcode/data/rules/gpl_145.RULE +++ b/src/licensedcode/data/rules/gpl_145.RULE @@ -1 +1,7 @@ -Licensed and distributed under the GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licensed and distributed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_145.yml b/src/licensedcode/data/rules/gpl_145.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_146.RULE b/src/licensedcode/data/rules/gpl_146.RULE index 761f1aeab61..9b043b2caa6 100644 --- a/src/licensedcode/data/rules/gpl_146.RULE +++ b/src/licensedcode/data/rules/gpl_146.RULE @@ -1 +1,7 @@ -Licensed under the GNU GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licensed under the GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_146.yml b/src/licensedcode/data/rules/gpl_146.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_147.RULE b/src/licensedcode/data/rules/gpl_147.RULE index bff8bbc1f8f..6e26d695d4d 100644 --- a/src/licensedcode/data/rules/gpl_147.RULE +++ b/src/licensedcode/data/rules/gpl_147.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + This is free software. You may redistribute copies of it under the terms of the GNU General Public License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_147.yml b/src/licensedcode/data/rules/gpl_147.yml deleted file mode 100644 index 261305ef32b..00000000000 --- a/src/licensedcode/data/rules/gpl_147.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl_148.RULE b/src/licensedcode/data/rules/gpl_148.RULE index 39007f13ce4..1488f770ae9 100644 --- a/src/licensedcode/data/rules/gpl_148.RULE +++ b/src/licensedcode/data/rules/gpl_148.RULE @@ -1,6 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This software may be freely redistributed under the terms of the GNU General Public License. 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. +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_148.yml b/src/licensedcode/data/rules/gpl_148.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_148.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_149.RULE b/src/licensedcode/data/rules/gpl_149.RULE index 4a2ddf53264..c3558faca32 100644 --- a/src/licensedcode/data/rules/gpl_149.RULE +++ b/src/licensedcode/data/rules/gpl_149.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 70 +--- + This software may be used and distributed according to the terms of the GNU General Public License (GPL), incorporated herein by reference. Drivers based on this skeleton fall under the GPL and must retain -the authorship (implicit copyright) notice. +the authorship (implicit copyright) notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_149.yml b/src/licensedcode/data/rules/gpl_149.yml deleted file mode 100644 index 9adcd23d798..00000000000 --- a/src/licensedcode/data/rules/gpl_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl_15.RULE b/src/licensedcode/data/rules/gpl_15.RULE index 5adfe776240..68c02dc7000 100644 --- a/src/licensedcode/data/rules/gpl_15.RULE +++ b/src/licensedcode/data/rules/gpl_15.RULE @@ -1 +1,7 @@ -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, located in the file LICENSE. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: BCM GPL notice +--- + +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, located in the file LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_15.yml b/src/licensedcode/data/rules/gpl_15.yml deleted file mode 100644 index 455b84941bd..00000000000 --- a/src/licensedcode/data/rules/gpl_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: BCM GPL notice diff --git a/src/licensedcode/data/rules/gpl_150.RULE b/src/licensedcode/data/rules/gpl_150.RULE index 05b43f2dcab..c20444cf3a8 100644 --- a/src/licensedcode/data/rules/gpl_150.RULE +++ b/src/licensedcode/data/rules/gpl_150.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 60 +referenced_filenames: + - COPYING +--- + This file is subject to the terms and conditions of the GNU General Public License. See the file "COPYING" in the main directory of this @@ -6,4 +14,4 @@ archive for more details. 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_150.yml b/src/licensedcode/data/rules/gpl_150.yml deleted file mode 100644 index a12b16b261f..00000000000 --- a/src/licensedcode/data/rules/gpl_150.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 60 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_151.RULE b/src/licensedcode/data/rules/gpl_151.RULE index c6a5498ae6f..0efb7d59ef7 100644 --- a/src/licensedcode/data/rules/gpl_151.RULE +++ b/src/licensedcode/data/rules/gpl_151.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + * 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 @@ -5,4 +10,4 @@ * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_151.yml b/src/licensedcode/data/rules/gpl_151.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_151.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_152.RULE b/src/licensedcode/data/rules/gpl_152.RULE index 1dbe325f6b1..e4f0f952ae5 100644 --- a/src/licensedcode/data/rules/gpl_152.RULE +++ b/src/licensedcode/data/rules/gpl_152.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 70 +--- + 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_152.yml b/src/licensedcode/data/rules/gpl_152.yml deleted file mode 100644 index 9adcd23d798..00000000000 --- a/src/licensedcode/data/rules/gpl_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/gpl_153.RULE b/src/licensedcode/data/rules/gpl_153.RULE index 870a918116c..1cee319ebdb 100644 --- a/src/licensedcode/data/rules/gpl_153.RULE +++ b/src/licensedcode/data/rules/gpl_153.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: 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 @@ -10,4 +15,4 @@ more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_153.yml b/src/licensedcode/data/rules/gpl_153.yml deleted file mode 100644 index 0d33a4d1c6c..00000000000 --- a/src/licensedcode/data/rules/gpl_153.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/gpl_153_1.RULE b/src/licensedcode/data/rules/gpl_153_1.RULE index 5b1611fef3a..cd98185b57f 100644 --- a/src/licensedcode/data/rules/gpl_153_1.RULE +++ b/src/licensedcode/data/rules/gpl_153_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: 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. @@ -9,4 +14,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, -Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +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_153_1.yml b/src/licensedcode/data/rules/gpl_153_1.yml deleted file mode 100644 index 0d33a4d1c6c..00000000000 --- a/src/licensedcode/data/rules/gpl_153_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/gpl_154.RULE b/src/licensedcode/data/rules/gpl_154.RULE index 860f5bb3e4c..decc84bf1ec 100644 --- a/src/licensedcode/data/rules/gpl_154.RULE +++ b/src/licensedcode/data/rules/gpl_154.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: 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 @@ -10,4 +15,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_154.yml b/src/licensedcode/data/rules/gpl_154.yml deleted file mode 100644 index 0d33a4d1c6c..00000000000 --- a/src/licensedcode/data/rules/gpl_154.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/gpl_155.RULE b/src/licensedcode/data/rules/gpl_155.RULE index af94c87442a..bfa2323a5aa 100644 --- a/src/licensedcode/data/rules/gpl_155.RULE +++ b/src/licensedcode/data/rules/gpl_155.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 98 +--- + This code is released under the GNU General Public License (GPL) THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED @@ -10,4 +16,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_155.yml b/src/licensedcode/data/rules/gpl_155.yml deleted file mode 100644 index d588d592755..00000000000 --- a/src/licensedcode/data/rules/gpl_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/gpl_156.RULE b/src/licensedcode/data/rules/gpl_156.RULE index aa4cbb4506b..45f04beff32 100644 --- a/src/licensedcode/data/rules/gpl_156.RULE +++ b/src/licensedcode/data/rules/gpl_156.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 100 +--- + communications. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED @@ -10,4 +16,4 @@ 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. + OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_156.yml b/src/licensedcode/data/rules/gpl_156.yml deleted file mode 100644 index e83508416f1..00000000000 --- a/src/licensedcode/data/rules/gpl_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl_157.RULE b/src/licensedcode/data/rules/gpl_157.RULE index 5602c33c392..e12f2dff184 100644 --- a/src/licensedcode/data/rules/gpl_157.RULE +++ b/src/licensedcode/data/rules/gpl_157.RULE @@ -1 +1,7 @@ -Distributed under the GNU General Public Licence +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Distributed under the GNU General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_157.yml b/src/licensedcode/data/rules/gpl_157.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_158.RULE b/src/licensedcode/data/rules/gpl_158.RULE index 715d3c54d79..d51fa8d3fd2 100644 --- a/src/licensedcode/data/rules/gpl_158.RULE +++ b/src/licensedcode/data/rules/gpl_158.RULE @@ -1 +1,6 @@ -Files in the following subdirectories are covered by the GNU General Public License (see GPL.txt for text): +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + +Files in the following subdirectories are covered by the GNU General Public License (see GPL.txt for text): \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_158.yml b/src/licensedcode/data/rules/gpl_158.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_158.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_159.RULE b/src/licensedcode/data/rules/gpl_159.RULE index cebc694c34a..6a51a505c02 100644 --- a/src/licensedcode/data/rules/gpl_159.RULE +++ b/src/licensedcode/data/rules/gpl_159.RULE @@ -1 +1,7 @@ -GNU General Public Licence +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +GNU General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_159.yml b/src/licensedcode/data/rules/gpl_159.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_16.RULE b/src/licensedcode/data/rules/gpl_16.RULE index 95ca6f5a21b..036fefe3e95 100644 --- a/src/licensedcode/data/rules/gpl_16.RULE +++ b/src/licensedcode/data/rules/gpl_16.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: No version gpl declaration +--- + The rest of the code is released under the terms of the GPL license, see /usr/share/common-licenses/GPL for the full license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_16.yml b/src/licensedcode/data/rules/gpl_16.yml deleted file mode 100644 index 972b1157986..00000000000 --- a/src/licensedcode/data/rules/gpl_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: No version gpl declaration diff --git a/src/licensedcode/data/rules/gpl_160.RULE b/src/licensedcode/data/rules/gpl_160.RULE index 9ad985bead3..4704f0ffaad 100644 --- a/src/licensedcode/data/rules/gpl_160.RULE +++ b/src/licensedcode/data/rules/gpl_160.RULE @@ -1 +1,7 @@ -licence GNU General Public Licence +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +licence GNU General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_160.yml b/src/licensedcode/data/rules/gpl_160.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_161.RULE b/src/licensedcode/data/rules/gpl_161.RULE index 71f396e6c89..89fbb9b9289 100644 --- a/src/licensedcode/data/rules/gpl_161.RULE +++ b/src/licensedcode/data/rules/gpl_161.RULE @@ -1 +1,7 @@ -is released under the GNU General Public Licence (GPL). +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +is released under the GNU General Public Licence (GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_161.yml b/src/licensedcode/data/rules/gpl_161.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_162.RULE b/src/licensedcode/data/rules/gpl_162.RULE index 2cff70a511a..7606b9457bc 100644 --- a/src/licensedcode/data/rules/gpl_162.RULE +++ b/src/licensedcode/data/rules/gpl_162.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + It is released under the General Public Licence, available here: -http://www.gnu.org/copyleft/gpl.html +http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_162.yml b/src/licensedcode/data/rules/gpl_162.yml deleted file mode 100644 index a191db22d17..00000000000 --- a/src/licensedcode/data/rules/gpl_162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl_163.RULE b/src/licensedcode/data/rules/gpl_163.RULE index add0855fd72..1662c903a06 100644 --- a/src/licensedcode/data/rules/gpl_163.RULE +++ b/src/licensedcode/data/rules/gpl_163.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- -is published unser the GNU General Public License in + +is published unser the GNU General Public License in \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_163.yml b/src/licensedcode/data/rules/gpl_163.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_164.RULE b/src/licensedcode/data/rules/gpl_164.RULE index fcb8225bf2d..acacf73a8a8 100644 --- a/src/licensedcode/data/rules/gpl_164.RULE +++ b/src/licensedcode/data/rules/gpl_164.RULE @@ -1 +1,7 @@ -is free software distributed under the GPL(General Public Licence). +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +is free software distributed under the GPL(General Public Licence). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_164.yml b/src/licensedcode/data/rules/gpl_164.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_165.RULE b/src/licensedcode/data/rules/gpl_165.RULE index 437c48ffd2d..ec3d734472a 100644 --- a/src/licensedcode/data/rules/gpl_165.RULE +++ b/src/licensedcode/data/rules/gpl_165.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + It is released under the General Public License, available here: -http://www.gnu.org/copyleft/gpl.html +http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_165.yml b/src/licensedcode/data/rules/gpl_165.yml deleted file mode 100644 index a191db22d17..00000000000 --- a/src/licensedcode/data/rules/gpl_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl_166.RULE b/src/licensedcode/data/rules/gpl_166.RULE index f7f51125c07..ab5b6457b8e 100644 --- a/src/licensedcode/data/rules/gpl_166.RULE +++ b/src/licensedcode/data/rules/gpl_166.RULE @@ -1 +1,9 @@ -Items are licensed under the GNU General Public Licence. Please consult the file "COPYING" for further details. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +Items are licensed under the GNU General Public Licence. Please consult the file "COPYING" for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_166.yml b/src/licensedcode/data/rules/gpl_166.yml deleted file mode 100644 index 016d63a60d4..00000000000 --- a/src/licensedcode/data/rules/gpl_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_167.RULE b/src/licensedcode/data/rules/gpl_167.RULE index ca6064e5ee4..6a620e06072 100644 --- a/src/licensedcode/data/rules/gpl_167.RULE +++ b/src/licensedcode/data/rules/gpl_167.RULE @@ -1 +1,9 @@ -licence http://www.gnu.org/licenses/gpl.html GNU General Public Licence, see LICENCE file +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + +licence http://www.gnu.org/licenses/gpl.html GNU General Public Licence, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_167.yml b/src/licensedcode/data/rules/gpl_167.yml deleted file mode 100644 index 743755f3d2c..00000000000 --- a/src/licensedcode/data/rules/gpl_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl_168.RULE b/src/licensedcode/data/rules/gpl_168.RULE index cd31ed59fa8..0546c35b876 100644 --- a/src/licensedcode/data/rules/gpl_168.RULE +++ b/src/licensedcode/data/rules/gpl_168.RULE @@ -1 +1,9 @@ -licence GNU General Public Licence see LICENCE file or http://www.gnu.org/licenses/gpl.html +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + +licence GNU General Public Licence see LICENCE file or http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_168.yml b/src/licensedcode/data/rules/gpl_168.yml deleted file mode 100644 index 743755f3d2c..00000000000 --- a/src/licensedcode/data/rules/gpl_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl_169.RULE b/src/licensedcode/data/rules/gpl_169.RULE index 533624a9bc8..0809e7ec3e0 100644 --- a/src/licensedcode/data/rules/gpl_169.RULE +++ b/src/licensedcode/data/rules/gpl_169.RULE @@ -1 +1,7 @@ -License General Public Licence +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +License General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_169.yml b/src/licensedcode/data/rules/gpl_169.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_17.RULE b/src/licensedcode/data/rules/gpl_17.RULE index b38f4ae5a1a..b0625c0f636 100644 --- a/src/licensedcode/data/rules/gpl_17.RULE +++ b/src/licensedcode/data/rules/gpl_17.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GPL'd \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_17.yml b/src/licensedcode/data/rules/gpl_17.yml deleted file mode 100644 index 67cef1b7257..00000000000 --- a/src/licensedcode/data/rules/gpl_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl_170.RULE b/src/licensedcode/data/rules/gpl_170.RULE index da3fa26882a..4150aff0d04 100644 --- a/src/licensedcode/data/rules/gpl_170.RULE +++ b/src/licensedcode/data/rules/gpl_170.RULE @@ -1 +1,7 @@ -licenced with General Public Licence. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +licenced with General Public Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_170.yml b/src/licensedcode/data/rules/gpl_170.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_171.RULE b/src/licensedcode/data/rules/gpl_171.RULE index 73827b23f4a..f3372dbabb1 100644 --- a/src/licensedcode/data/rules/gpl_171.RULE +++ b/src/licensedcode/data/rules/gpl_171.RULE @@ -1 +1,7 @@ -is free software distributed under the GPL(General Public License). +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +is free software distributed under the GPL(General Public License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_171.yml b/src/licensedcode/data/rules/gpl_171.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_172.RULE b/src/licensedcode/data/rules/gpl_172.RULE index 5abf04abef5..f652839626c 100644 --- a/src/licensedcode/data/rules/gpl_172.RULE +++ b/src/licensedcode/data/rules/gpl_172.RULE @@ -1 +1,7 @@ -License General Public License +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +License General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_172.yml b/src/licensedcode/data/rules/gpl_172.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_173.RULE b/src/licensedcode/data/rules/gpl_173.RULE index 6a193658355..ab66f0ef947 100644 --- a/src/licensedcode/data/rules/gpl_173.RULE +++ b/src/licensedcode/data/rules/gpl_173.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- -License GNU General Public Licence + +License GNU General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_173.yml b/src/licensedcode/data/rules/gpl_173.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_174.RULE b/src/licensedcode/data/rules/gpl_174.RULE index 7a4d6f9021b..8ad5498d8d5 100644 --- a/src/licensedcode/data/rules/gpl_174.RULE +++ b/src/licensedcode/data/rules/gpl_174.RULE @@ -1 +1,9 @@ -License: GNU General Public Licence (GPL) - http://www.gnu.org/copyleft/gpl.html +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + +License: GNU General Public Licence (GPL) - http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_174.yml b/src/licensedcode/data/rules/gpl_174.yml deleted file mode 100644 index 7e1c8d0fd1f..00000000000 --- a/src/licensedcode/data/rules/gpl_174.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl_175.RULE b/src/licensedcode/data/rules/gpl_175.RULE index 86ec76cce74..891fa87590b 100644 --- a/src/licensedcode/data/rules/gpl_175.RULE +++ b/src/licensedcode/data/rules/gpl_175.RULE @@ -1 +1,7 @@ -Published under the GNU General Public Licence. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Published under the GNU General Public Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_175.yml b/src/licensedcode/data/rules/gpl_175.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_176.RULE b/src/licensedcode/data/rules/gpl_176.RULE index 7e675181a74..b0fc0cb03e9 100644 --- a/src/licensedcode/data/rules/gpl_176.RULE +++ b/src/licensedcode/data/rules/gpl_176.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Released under the GNU General Public Licence (GPL) -See the file COPYING for details. +See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_176.yml b/src/licensedcode/data/rules/gpl_176.yml deleted file mode 100644 index 173d312feb9..00000000000 --- a/src/licensedcode/data/rules/gpl_176.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_177.RULE b/src/licensedcode/data/rules/gpl_177.RULE index b35c01c54d0..323225facbd 100644 --- a/src/licensedcode/data/rules/gpl_177.RULE +++ b/src/licensedcode/data/rules/gpl_177.RULE @@ -1 +1,7 @@ -See the GNU General Public Licence for distribution semantics +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +See the GNU General Public Licence for distribution semantics \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_177.yml b/src/licensedcode/data/rules/gpl_177.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_178.RULE b/src/licensedcode/data/rules/gpl_178.RULE index 6a911db8978..c1884db8222 100644 --- a/src/licensedcode/data/rules/gpl_178.RULE +++ b/src/licensedcode/data/rules/gpl_178.RULE @@ -1 +1,7 @@ -the GNU General Public Licence (GPL) +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +the GNU General Public Licence (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_178.yml b/src/licensedcode/data/rules/gpl_178.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_179.RULE b/src/licensedcode/data/rules/gpl_179.RULE index 30620e91d9a..87ad36ff0a5 100644 --- a/src/licensedcode/data/rules/gpl_179.RULE +++ b/src/licensedcode/data/rules/gpl_179.RULE @@ -1 +1,7 @@ -This card may be freely distributed under the terms of the GNU general public licence. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This card may be freely distributed under the terms of the GNU general public licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_179.yml b/src/licensedcode/data/rules/gpl_179.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_18.RULE b/src/licensedcode/data/rules/gpl_18.RULE index faf5a375f2f..278cc0f98cd 100644 --- a/src/licensedcode/data/rules/gpl_18.RULE +++ b/src/licensedcode/data/rules/gpl_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: GPL license declaration +--- + The code provided here will not assemble out of the box using the GNU assembler, however it is being included in order to comply with the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_18.yml b/src/licensedcode/data/rules/gpl_18.yml deleted file mode 100644 index 8418ea40ecc..00000000000 --- a/src/licensedcode/data/rules/gpl_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: GPL license declaration diff --git a/src/licensedcode/data/rules/gpl_180.RULE b/src/licensedcode/data/rules/gpl_180.RULE index 3477d95e9b1..b4f6961b9f0 100644 --- a/src/licensedcode/data/rules/gpl_180.RULE +++ b/src/licensedcode/data/rules/gpl_180.RULE @@ -1 +1,8 @@ -This file is distributed under the terms of the General Public Licence. See the file COPYING for more information. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + +This file is distributed under the terms of the General Public Licence. See the file COPYING for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_180.yml b/src/licensedcode/data/rules/gpl_180.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl_180.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_181.RULE b/src/licensedcode/data/rules/gpl_181.RULE index 271cbc7e777..4568512fae3 100644 --- a/src/licensedcode/data/rules/gpl_181.RULE +++ b/src/licensedcode/data/rules/gpl_181.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This software is distributed under the GNU General Public Licence as published by the Free Software Foundation. Please see the file -COPYING for the exact licensing terms and conditions. +COPYING for the exact licensing terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_181.yml b/src/licensedcode/data/rules/gpl_181.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl_181.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_182.RULE b/src/licensedcode/data/rules/gpl_182.RULE index 8d54d30468a..d7f9a3616b0 100644 --- a/src/licensedcode/data/rules/gpl_182.RULE +++ b/src/licensedcode/data/rules/gpl_182.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + You are free to distribute this software under the terms of the GNU General Public Licence. On Debian systems, the complete text of the GNU General Public -Licence can be found in /usr/share/common-licenses/GPL. +Licence can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_182.yml b/src/licensedcode/data/rules/gpl_182.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_182.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_183.RULE b/src/licensedcode/data/rules/gpl_183.RULE index c3b8cbfb732..e4961c6e487 100644 --- a/src/licensedcode/data/rules/gpl_183.RULE +++ b/src/licensedcode/data/rules/gpl_183.RULE @@ -1 +1,7 @@ -This product is copyrighted under the GNU's General Public Licence (GPL). +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This product is copyrighted under the GNU's General Public Licence (GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_183.yml b/src/licensedcode/data/rules/gpl_183.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_184.RULE b/src/licensedcode/data/rules/gpl_184.RULE index dc605430c27..2813190d7b5 100644 --- a/src/licensedcode/data/rules/gpl_184.RULE +++ b/src/licensedcode/data/rules/gpl_184.RULE @@ -1 +1,7 @@ -GNU's General Public Licence (GPL) +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +GNU's General Public Licence (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_184.yml b/src/licensedcode/data/rules/gpl_184.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_185.RULE b/src/licensedcode/data/rules/gpl_185.RULE index 642be6b8988..cae4e63d656 100644 --- a/src/licensedcode/data/rules/gpl_185.RULE +++ b/src/licensedcode/data/rules/gpl_185.RULE @@ -1,4 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + * This is free software distributed under the GNU General Public Licence * described in the file COPYING. Contact the author if you don't have this * or can't live with it. There is ABSOLUTELY NO WARRANTY, explicit or implied, - * on this software. + * on this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_185.yml b/src/licensedcode/data/rules/gpl_185.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl_185.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_186.RULE b/src/licensedcode/data/rules/gpl_186.RULE index edfd0caf0aa..beb4adcba2d 100644 --- a/src/licensedcode/data/rules/gpl_186.RULE +++ b/src/licensedcode/data/rules/gpl_186.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + exported GPL-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_186.yml b/src/licensedcode/data/rules/gpl_186.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_187.RULE b/src/licensedcode/data/rules/gpl_187.RULE index 1b51c162712..5bf227a678b 100644 --- a/src/licensedcode/data/rules/gpl_187.RULE +++ b/src/licensedcode/data/rules/gpl_187.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Full source released under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_187.yml b/src/licensedcode/data/rules/gpl_187.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_188.RULE b/src/licensedcode/data/rules/gpl_188.RULE index f013e219dd4..2b09a320198 100644 --- a/src/licensedcode/data/rules/gpl_188.RULE +++ b/src/licensedcode/data/rules/gpl_188.RULE @@ -1 +1,7 @@ -Copyright See GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Copyright See GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_188.yml b/src/licensedcode/data/rules/gpl_188.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_189.RULE b/src/licensedcode/data/rules/gpl_189.RULE index 734d1bfd657..8c5644bac48 100644 --- a/src/licensedcode/data/rules/gpl_189.RULE +++ b/src/licensedcode/data/rules/gpl_189.RULE @@ -1 +1,7 @@ -The driver is free software. It's released under the GNU GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +The driver is free software. It's released under the GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_189.yml b/src/licensedcode/data/rules/gpl_189.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_19.RULE b/src/licensedcode/data/rules/gpl_19.RULE index b3609531773..65e4a836516 100644 --- a/src/licensedcode/data/rules/gpl_19.RULE +++ b/src/licensedcode/data/rules/gpl_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + licensed under the {{GNU General Public License}} which on Debian GNU/Linux systems can be -found as {{/usr/share/common-licenses/GPL}}'. +found as {{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_19.yml b/src/licensedcode/data/rules/gpl_19.yml deleted file mode 100644 index c974511f715..00000000000 --- a/src/licensedcode/data/rules/gpl_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl_190.RULE b/src/licensedcode/data/rules/gpl_190.RULE index 4185cd5d463..2377de9973f 100644 --- a/src/licensedcode/data/rules/gpl_190.RULE +++ b/src/licensedcode/data/rules/gpl_190.RULE @@ -1 +1,7 @@ -Distributable under GPL. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +Distributable under GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_190.yml b/src/licensedcode/data/rules/gpl_190.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_191.RULE b/src/licensedcode/data/rules/gpl_191.RULE index 66f71d290ad..541268aa8f9 100644 --- a/src/licensedcode/data/rules/gpl_191.RULE +++ b/src/licensedcode/data/rules/gpl_191.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + released under GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_191.yml b/src/licensedcode/data/rules/gpl_191.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_192.RULE b/src/licensedcode/data/rules/gpl_192.RULE index a27d4901ae3..03e4e6497e3 100644 --- a/src/licensedcode/data/rules/gpl_192.RULE +++ b/src/licensedcode/data/rules/gpl_192.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This file is under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_192.yml b/src/licensedcode/data/rules/gpl_192.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_193.RULE b/src/licensedcode/data/rules/gpl_193.RULE index 951f3b56f05..d32d56d06f3 100644 --- a/src/licensedcode/data/rules/gpl_193.RULE +++ b/src/licensedcode/data/rules/gpl_193.RULE @@ -1 +1,7 @@ -This file is distributed under the GNU GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This file is distributed under the GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_193.yml b/src/licensedcode/data/rules/gpl_193.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_193.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_194.RULE b/src/licensedcode/data/rules/gpl_194.RULE index b30b2f0b286..8de8c477854 100644 --- a/src/licensedcode/data/rules/gpl_194.RULE +++ b/src/licensedcode/data/rules/gpl_194.RULE @@ -1 +1,7 @@ -released under the GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +released under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_194.yml b/src/licensedcode/data/rules/gpl_194.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_194_1.RULE b/src/licensedcode/data/rules/gpl_194_1.RULE index b66ad31f151..f0b0061c2a2 100644 --- a/src/licensedcode/data/rules/gpl_194_1.RULE +++ b/src/licensedcode/data/rules/gpl_194_1.RULE @@ -1 +1,9 @@ -released under the GPL (See file COPYING for details). +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +released under the GPL (See file COPYING for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_194_1.yml b/src/licensedcode/data/rules/gpl_194_1.yml deleted file mode 100644 index 173d312feb9..00000000000 --- a/src/licensedcode/data/rules/gpl_194_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_195.RULE b/src/licensedcode/data/rules/gpl_195.RULE index dda58677431..42d424bebb8 100644 --- a/src/licensedcode/data/rules/gpl_195.RULE +++ b/src/licensedcode/data/rules/gpl_195.RULE @@ -1 +1,7 @@ -Released under the terms of GPL (General Public Licence) +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Released under the terms of GPL (General Public Licence) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_195.yml b/src/licensedcode/data/rules/gpl_195.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_196.RULE b/src/licensedcode/data/rules/gpl_196.RULE index 53c198e7b89..3dc657ffce4 100644 --- a/src/licensedcode/data/rules/gpl_196.RULE +++ b/src/licensedcode/data/rules/gpl_196.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Released under the terms of GPL (General Public Licence) Parts of this driver are based on the GPL part of the -official driver. +official driver. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_196.yml b/src/licensedcode/data/rules/gpl_196.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_196.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_197.RULE b/src/licensedcode/data/rules/gpl_197.RULE index 66a137f7f3c..7fbc3401619 100644 --- a/src/licensedcode/data/rules/gpl_197.RULE +++ b/src/licensedcode/data/rules/gpl_197.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + This code is covered by the GNU GPL and you are free to make any changes you wish to it under the terms of the license. However the code has the potential to render your computer and/or someone else's -unusable. Please proceed with care when modifying the code. +unusable. Please proceed with care when modifying the code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_197.yml b/src/licensedcode/data/rules/gpl_197.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_197.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_198.RULE b/src/licensedcode/data/rules/gpl_198.RULE index be1631dad3a..f622b7de80f 100644 --- a/src/licensedcode/data/rules/gpl_198.RULE +++ b/src/licensedcode/data/rules/gpl_198.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Parts of this driver are based on the GPL driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_198.yml b/src/licensedcode/data/rules/gpl_198.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_199.RULE b/src/licensedcode/data/rules/gpl_199.RULE index aed6c2a6a48..0daaa3eb147 100644 --- a/src/licensedcode/data/rules/gpl_199.RULE +++ b/src/licensedcode/data/rules/gpl_199.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Parts of this driver are based on the GPL part of the official driver. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_199.yml b/src/licensedcode/data/rules/gpl_199.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_2.RULE b/src/licensedcode/data/rules/gpl_2.RULE index 22ce5de8e33..72ec413040a 100644 --- a/src/licensedcode/data/rules/gpl_2.RULE +++ b/src/licensedcode/data/rules/gpl_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + /* This is GPL */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_2.yml b/src/licensedcode/data/rules/gpl_2.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_20.RULE b/src/licensedcode/data/rules/gpl_20.RULE index a5ddbcc4bd4..68232392721 100644 --- a/src/licensedcode/data/rules/gpl_20.RULE +++ b/src/licensedcode/data/rules/gpl_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: gpl in wpa supplicant +--- + # When building a binary for distribution, please note that these # libraries are licensed under GPL and as such, BSD license may not apply for -# the resulting binary. +# the resulting binary. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_20.yml b/src/licensedcode/data/rules/gpl_20.yml deleted file mode 100644 index 22f67a32676..00000000000 --- a/src/licensedcode/data/rules/gpl_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: gpl in wpa supplicant diff --git a/src/licensedcode/data/rules/gpl_200.RULE b/src/licensedcode/data/rules/gpl_200.RULE index 3e2d3d9b540..1c5d54b99db 100644 --- a/src/licensedcode/data/rules/gpl_200.RULE +++ b/src/licensedcode/data/rules/gpl_200.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_200.yml b/src/licensedcode/data/rules/gpl_200.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_200_1.RULE b/src/licensedcode/data/rules/gpl_200_1.RULE index 6440a60e623..0dd32a4fd47 100644 --- a/src/licensedcode/data/rules/gpl_200_1.RULE +++ b/src/licensedcode/data/rules/gpl_200_1.RULE @@ -1 +1,7 @@ -GPL LICENSE SUMMARY +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 99 +--- + +GPL LICENSE SUMMARY \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_200_1.yml b/src/licensedcode/data/rules/gpl_200_1.yml deleted file mode 100644 index b364c41ecc7..00000000000 --- a/src/licensedcode/data/rules/gpl_200_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl_201.RULE b/src/licensedcode/data/rules/gpl_201.RULE index 58edfa836b0..a610a1da47b 100644 --- a/src/licensedcode/data/rules/gpl_201.RULE +++ b/src/licensedcode/data/rules/gpl_201.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_201.yml b/src/licensedcode/data/rules/gpl_201.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_203.RULE b/src/licensedcode/data/rules/gpl_203.RULE index 63d3ac936cd..7ceafc5d0b9 100644 --- a/src/licensedcode/data/rules/gpl_203.RULE +++ b/src/licensedcode/data/rules/gpl_203.RULE @@ -1 +1,7 @@ -This code is licensed under GNU GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This code is licensed under GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_203.yml b/src/licensedcode/data/rules/gpl_203.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_204.RULE b/src/licensedcode/data/rules/gpl_204.RULE index 586e667376a..29009828bb6 100644 --- a/src/licensedcode/data/rules/gpl_204.RULE +++ b/src/licensedcode/data/rules/gpl_204.RULE @@ -1 +1,7 @@ -licensed under GNU GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +licensed under GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_204.yml b/src/licensedcode/data/rules/gpl_204.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_205.RULE b/src/licensedcode/data/rules/gpl_205.RULE index 326a7d5dff5..940c66d87ae 100644 --- a/src/licensedcode/data/rules/gpl_205.RULE +++ b/src/licensedcode/data/rules/gpl_205.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Distributed under the terms of GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_205.yml b/src/licensedcode/data/rules/gpl_205.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_206.RULE b/src/licensedcode/data/rules/gpl_206.RULE index a55fb6d5791..b6d6f4d621e 100644 --- a/src/licensedcode/data/rules/gpl_206.RULE +++ b/src/licensedcode/data/rules/gpl_206.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + under the terms of GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_206.yml b/src/licensedcode/data/rules/gpl_206.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_207.RULE b/src/licensedcode/data/rules/gpl_207.RULE index 59cd5dc98ff..79e37580373 100644 --- a/src/licensedcode/data/rules/gpl_207.RULE +++ b/src/licensedcode/data/rules/gpl_207.RULE @@ -1 +1,7 @@ -Released under the terms of the GNU GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Released under the terms of the GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_207.yml b/src/licensedcode/data/rules/gpl_207.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_208.RULE b/src/licensedcode/data/rules/gpl_208.RULE index 5446ef79517..7a5c04b6b0b 100644 --- a/src/licensedcode/data/rules/gpl_208.RULE +++ b/src/licensedcode/data/rules/gpl_208.RULE @@ -1 +1,7 @@ -Licensed under GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +Licensed under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_208.yml b/src/licensedcode/data/rules/gpl_208.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_209.RULE b/src/licensedcode/data/rules/gpl_209.RULE index a2891390ebe..769588088ea 100644 --- a/src/licensedcode/data/rules/gpl_209.RULE +++ b/src/licensedcode/data/rules/gpl_209.RULE @@ -1 +1,7 @@ -Licenced under GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 99 +--- + +Licenced under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_209.yml b/src/licensedcode/data/rules/gpl_209.yml deleted file mode 100644 index b364c41ecc7..00000000000 --- a/src/licensedcode/data/rules/gpl_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl_21.RULE b/src/licensedcode/data/rules/gpl_21.RULE index e946edc74c9..17482abbef5 100644 --- a/src/licensedcode/data/rules/gpl_21.RULE +++ b/src/licensedcode/data/rules/gpl_21.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + ALTERNATIVELY, provided that this notice is retained in full, this product may be distributed under the terms of the GNU General Public License (GPL), - in which case the provisions of the GPL apply INSTEAD OF those given above. + in which case the provisions of the GPL apply INSTEAD OF those given above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_21.yml b/src/licensedcode/data/rules/gpl_21.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_21.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_210.RULE b/src/licensedcode/data/rules/gpl_210.RULE index 58c6174687d..3245a9115b4 100644 --- a/src/licensedcode/data/rules/gpl_210.RULE +++ b/src/licensedcode/data/rules/gpl_210.RULE @@ -1 +1,7 @@ -It is distributed under the GPL, +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +It is distributed under the GPL, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_210.yml b/src/licensedcode/data/rules/gpl_210.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_211.RULE b/src/licensedcode/data/rules/gpl_211.RULE index c0119478730..7fce69b83d7 100644 --- a/src/licensedcode/data/rules/gpl_211.RULE +++ b/src/licensedcode/data/rules/gpl_211.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + project team have placed their code under the GPL. The software is provided "as is" and without warranty express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_211.yml b/src/licensedcode/data/rules/gpl_211.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_211.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_212.RULE b/src/licensedcode/data/rules/gpl_212.RULE index 71b7db284a7..5d5dea00be6 100644 --- a/src/licensedcode/data/rules/gpl_212.RULE +++ b/src/licensedcode/data/rules/gpl_212.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_212.yml b/src/licensedcode/data/rules/gpl_212.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_213.RULE b/src/licensedcode/data/rules/gpl_213.RULE index ba331bdd6b7..0cf9f005e1e 100644 --- a/src/licensedcode/data/rules/gpl_213.RULE +++ b/src/licensedcode/data/rules/gpl_213.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This software is distributed under the following licenses: GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_213.yml b/src/licensedcode/data/rules/gpl_213.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_214.RULE b/src/licensedcode/data/rules/gpl_214.RULE index f8d6c3487af..a10b8a724b7 100644 --- a/src/licensedcode/data/rules/gpl_214.RULE +++ b/src/licensedcode/data/rules/gpl_214.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_214.yml b/src/licensedcode/data/rules/gpl_214.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_215.RULE b/src/licensedcode/data/rules/gpl_215.RULE index cbdef449421..d6f4d9ee87f 100644 --- a/src/licensedcode/data/rules/gpl_215.RULE +++ b/src/licensedcode/data/rules/gpl_215.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + All the drivers and utilities are published in form of source code under GNU General Public License in this version. Please refer to GNU General -Public License announcement in each source code file for more detail. +Public License announcement in each source code file for more detail. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_215.yml b/src/licensedcode/data/rules/gpl_215.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_215.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_216.RULE b/src/licensedcode/data/rules/gpl_216.RULE index 5b196929b95..7503758a8ef 100644 --- a/src/licensedcode/data/rules/gpl_216.RULE +++ b/src/licensedcode/data/rules/gpl_216.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_text: yes +referenced_filenames: + - COPYING +--- + Copyright --------- The driver is free software. It is protected by the GNU General Public @@ -9,4 +16,4 @@ Please be aware the following: While we do my best to provide a working and reliable driver, there is a chance, that it will kill your valuable data. We refuse to take any responsibility for that. The driver is provided as-is - and YOU USE IT AT YOUR OWN RESPONSIBILITY. + and YOU USE IT AT YOUR OWN RESPONSIBILITY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_216.yml b/src/licensedcode/data/rules/gpl_216.yml deleted file mode 100644 index 7adbd129915..00000000000 --- a/src/licensedcode/data/rules/gpl_216.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_text: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_217.RULE b/src/licensedcode/data/rules/gpl_217.RULE index a6a8bd5df84..7dbcaedbd60 100644 --- a/src/licensedcode/data/rules/gpl_217.RULE +++ b/src/licensedcode/data/rules/gpl_217.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +referenced_filenames: + - COPYING +--- + There is NO warranty. You may redistribute this software under the terms of the GNU General Public License. -For more information about these matters, see the files named COPYING. +For more information about these matters, see the files named COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_217.yml b/src/licensedcode/data/rules/gpl_217.yml deleted file mode 100644 index 0cbab360404..00000000000 --- a/src/licensedcode/data/rules/gpl_217.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_218.RULE b/src/licensedcode/data/rules/gpl_218.RULE index 53cd4f0d9b8..918202bc37e 100644 --- a/src/licensedcode/data/rules/gpl_218.RULE +++ b/src/licensedcode/data/rules/gpl_218.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GPL Linux driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_218.yml b/src/licensedcode/data/rules/gpl_218.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_219.RULE b/src/licensedcode/data/rules/gpl_219.RULE index 19edadf24dd..524d070410b 100644 --- a/src/licensedcode/data/rules/gpl_219.RULE +++ b/src/licensedcode/data/rules/gpl_219.RULE @@ -1 +1,7 @@ -This file is (c) under GNU General Public License +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +This file is (c) under GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_219.yml b/src/licensedcode/data/rules/gpl_219.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_22.RULE b/src/licensedcode/data/rules/gpl_22.RULE index 96036c2e69d..85147c3b6d4 100644 --- a/src/licensedcode/data/rules/gpl_22.RULE +++ b/src/licensedcode/data/rules/gpl_22.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + is released under the terms of the GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_22.yml b/src/licensedcode/data/rules/gpl_22.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_220.RULE b/src/licensedcode/data/rules/gpl_220.RULE index f583f59f6a8..b4dabfa4b54 100644 --- a/src/licensedcode/data/rules/gpl_220.RULE +++ b/src/licensedcode/data/rules/gpl_220.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Released under terms of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_220.yml b/src/licensedcode/data/rules/gpl_220.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_221.RULE b/src/licensedcode/data/rules/gpl_221.RULE index be1ae1cf2e8..dc335ba9baa 100644 --- a/src/licensedcode/data/rules/gpl_221.RULE +++ b/src/licensedcode/data/rules/gpl_221.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 100 +--- + 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 +GNU General Public License for more details. The \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_221.yml b/src/licensedcode/data/rules/gpl_221.yml deleted file mode 100644 index e83508416f1..00000000000 --- a/src/licensedcode/data/rules/gpl_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl_222.RULE b/src/licensedcode/data/rules/gpl_222.RULE index 2f21c22b733..e6f5200f41c 100644 --- a/src/licensedcode/data/rules/gpl_222.RULE +++ b/src/licensedcode/data/rules/gpl_222.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This program may be redistributed under the terms of the GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_222.yml b/src/licensedcode/data/rules/gpl_222.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_223.RULE b/src/licensedcode/data/rules/gpl_223.RULE index 649fc3f805e..23fc5d58303 100644 --- a/src/licensedcode/data/rules/gpl_223.RULE +++ b/src/licensedcode/data/rules/gpl_223.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + 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_35.yml b/src/licensedcode/data/rules/gpl_35.yml deleted file mode 100644 index 8e79bf7147f..00000000000 --- a/src/licensedcode/data/rules/gpl_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 99 -notes: rare gpl 1,2,3 or later -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl_36.RULE b/src/licensedcode/data/rules/gpl_36.RULE index 0096fc0105c..d5ec78e9cfb 100644 --- a/src/licensedcode/data/rules/gpl_36.RULE +++ b/src/licensedcode/data/rules/gpl_36.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +notes: This software is released under the GPL. +--- + This software is released under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_36.yml b/src/licensedcode/data/rules/gpl_36.yml deleted file mode 100644 index 2510ffc5592..00000000000 --- a/src/licensedcode/data/rules/gpl_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -notes: This software is released under the GPL. diff --git a/src/licensedcode/data/rules/gpl_37.RULE b/src/licensedcode/data/rules/gpl_37.RULE index 8f9926549b0..989c9215872 100644 --- a/src/licensedcode/data/rules/gpl_37.RULE +++ b/src/licensedcode/data/rules/gpl_37.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +notes: Debian GPL +--- + GPL, on Debian systems you can find the full text of the GPL in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_37.yml b/src/licensedcode/data/rules/gpl_37.yml deleted file mode 100644 index 2f56d980d4a..00000000000 --- a/src/licensedcode/data/rules/gpl_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -notes: Debian GPL diff --git a/src/licensedcode/data/rules/gpl_38.RULE b/src/licensedcode/data/rules/gpl_38.RULE index 5521cdccd6e..bee158f6d07 100644 --- a/src/licensedcode/data/rules/gpl_38.RULE +++ b/src/licensedcode/data/rules/gpl_38.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Distributed under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_38.yml b/src/licensedcode/data/rules/gpl_38.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_39.RULE b/src/licensedcode/data/rules/gpl_39.RULE index 0e0fa7e5fd3..8ff5c7be0ba 100644 --- a/src/licensedcode/data/rules/gpl_39.RULE +++ b/src/licensedcode/data/rules/gpl_39.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + * This file may be modified and redistributed under - * the terms of the GNU Public License. + * the terms of the GNU Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_39.yml b/src/licensedcode/data/rules/gpl_39.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_4.RULE b/src/licensedcode/data/rules/gpl_4.RULE index d8966b0ac1a..4c3d052993c 100644 --- a/src/licensedcode/data/rules/gpl_4.RULE +++ b/src/licensedcode/data/rules/gpl_4.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: 3com GPL mention +--- + is distributed as is, without any warranty of any kind, either express or implied as further specified in the GNU Public License. This software may be used and distributed according to the terms of -the GNU Public License, located in the file LICENSE. +the GNU Public License, located in the file LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_4.yml b/src/licensedcode/data/rules/gpl_4.yml deleted file mode 100644 index 20bf5ff6477..00000000000 --- a/src/licensedcode/data/rules/gpl_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: 3com GPL mention diff --git a/src/licensedcode/data/rules/gpl_40.RULE b/src/licensedcode/data/rules/gpl_40.RULE index fe57969a3a9..80b294e17db 100644 --- a/src/licensedcode/data/rules/gpl_40.RULE +++ b/src/licensedcode/data/rules/gpl_40.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Released under the General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_40.yml b/src/licensedcode/data/rules/gpl_40.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_41.RULE b/src/licensedcode/data/rules/gpl_41.RULE index e98e1651591..1c6e65d4ca9 100644 --- a/src/licensedcode/data/rules/gpl_41.RULE +++ b/src/licensedcode/data/rules/gpl_41.RULE @@ -1 +1,8 @@ -"GPL": The GNU General Public License, without versioning constraints. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +notes: gpl no verson constraints +--- + +"GPL": The GNU General Public License, without versioning constraints. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_41.yml b/src/licensedcode/data/rules/gpl_41.yml deleted file mode 100644 index 8e8b3949e18..00000000000 --- a/src/licensedcode/data/rules/gpl_41.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -notes: gpl no verson constraints diff --git a/src/licensedcode/data/rules/gpl_42.RULE b/src/licensedcode/data/rules/gpl_42.RULE index 9bf47fa3b23..c543a761560 100644 --- a/src/licensedcode/data/rules/gpl_42.RULE +++ b/src/licensedcode/data/rules/gpl_42.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + and is licensed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_42.yml b/src/licensedcode/data/rules/gpl_42.yml deleted file mode 100644 index 67cef1b7257..00000000000 --- a/src/licensedcode/data/rules/gpl_42.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl_43.RULE b/src/licensedcode/data/rules/gpl_43.RULE index 0f5dee6e357..66f67b28de5 100644 --- a/src/licensedcode/data/rules/gpl_43.RULE +++ b/src/licensedcode/data/rules/gpl_43.RULE @@ -1 +1,8 @@ -My work is under the GNU GPL license +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +notes: GPL short declaration +--- + +My work is under the GNU GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_43.yml b/src/licensedcode/data/rules/gpl_43.yml deleted file mode 100644 index e0ae9055c19..00000000000 --- a/src/licensedcode/data/rules/gpl_43.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -notes: GPL short declaration diff --git a/src/licensedcode/data/rules/gpl_44.RULE b/src/licensedcode/data/rules/gpl_44.RULE index b828d03b520..6a9d3b5e772 100644 --- a/src/licensedcode/data/rules/gpl_44.RULE +++ b/src/licensedcode/data/rules/gpl_44.RULE @@ -1 +1,9 @@ -licensed under the terms of the pure GNU General Public License. +--- +license_expression: gpl-1.0-plus +relevance: 100 +is_license_notice: yes +minimum_coverage: 100 +is_continuous: yes +--- + +licensed under the terms of the pure GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_44.yml b/src/licensedcode/data/rules/gpl_44.yml deleted file mode 100644 index fa6f48e7051..00000000000 --- a/src/licensedcode/data/rules/gpl_44.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -relevance: 100 -is_license_notice: yes -minimum_coverage: 100 -is_continuous: yes - diff --git a/src/licensedcode/data/rules/gpl_45.RULE b/src/licensedcode/data/rules/gpl_45.RULE index 6a0c857d72f..537309a1da7 100644 --- a/src/licensedcode/data/rules/gpl_45.RULE +++ b/src/licensedcode/data/rules/gpl_45.RULE @@ -1 +1,6 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +--- + distributed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_45.yml b/src/licensedcode/data/rules/gpl_45.yml deleted file mode 100644 index 5c8568e5f3f..00000000000 --- a/src/licensedcode/data/rules/gpl_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl_46.RULE b/src/licensedcode/data/rules/gpl_46.RULE index 8b4d3308cd8..5409baea4a9 100644 --- a/src/licensedcode/data/rules/gpl_46.RULE +++ b/src/licensedcode/data/rules/gpl_46.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + fall under its license of GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_46.yml b/src/licensedcode/data/rules/gpl_46.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_47.RULE b/src/licensedcode/data/rules/gpl_47.RULE index 8c77cff0ae0..3ed205b8bf3 100644 --- a/src/licensedcode/data/rules/gpl_47.RULE +++ b/src/licensedcode/data/rules/gpl_47.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + Trademarks and the GPL AbiSource software products, such as AbiWord, are copyrighted works @@ -22,4 +27,4 @@ when applied to derivative works based on an AbiSource GPL product. Thus, for example, you are free to use the mark "AbiWord Personal" in connection with derivative works that are based on "AbiWord". To help maintain this distinction, AbiSource releases the -sources to its GPL products with Personal-based trademarks. +sources to its GPL products with Personal-based trademarks. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_47.yml b/src/licensedcode/data/rules/gpl_47.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_47.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_48.RULE b/src/licensedcode/data/rules/gpl_48.RULE index 0712e373075..aa4148e51b9 100644 --- a/src/licensedcode/data/rules/gpl_48.RULE +++ b/src/licensedcode/data/rules/gpl_48.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +--- + is licensed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_48.yml b/src/licensedcode/data/rules/gpl_48.yml deleted file mode 100644 index fb1f61395f4..00000000000 --- a/src/licensedcode/data/rules/gpl_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl_49.RULE b/src/licensedcode/data/rules/gpl_49.RULE index 618b18120f5..2f817c1ac2d 100644 --- a/src/licensedcode/data/rules/gpl_49.RULE +++ b/src/licensedcode/data/rules/gpl_49.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + licensed using GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_49.yml b/src/licensedcode/data/rules/gpl_49.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_5.RULE b/src/licensedcode/data/rules/gpl_5.RULE index e00f56ca1ac..aa78ef43387 100644 --- a/src/licensedcode/data/rules/gpl_5.RULE +++ b/src/licensedcode/data/rules/gpl_5.RULE @@ -1,5 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +ignorable_authors: + - Per Bothner +--- + Originally written by Per Bothner. This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_5.yml b/src/licensedcode/data/rules/gpl_5.yml deleted file mode 100644 index 606a90b990a..00000000000 --- a/src/licensedcode/data/rules/gpl_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -ignorable_authors: - - Per Bothner diff --git a/src/licensedcode/data/rules/gpl_50.RULE b/src/licensedcode/data/rules/gpl_50.RULE index 16612a785d8..b270eff3cf8 100644 --- a/src/licensedcode/data/rules/gpl_50.RULE +++ b/src/licensedcode/data/rules/gpl_50.RULE @@ -1,4 +1,8 @@ -The Debian packaging is (C) and -is licensed under the GPL, see `/usr/share/common-licenses/GPL'. - +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- +The Debian packaging is (C) and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_50.yml b/src/licensedcode/data/rules/gpl_50.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_51.RULE b/src/licensedcode/data/rules/gpl_51.RULE index 4303e003996..3b1ca29921a 100644 --- a/src/licensedcode/data/rules/gpl_51.RULE +++ b/src/licensedcode/data/rules/gpl_51.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-faq.html +--- + http://www.gnu.org/licenses/gpl-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_51.yml b/src/licensedcode/data/rules/gpl_51.yml deleted file mode 100644 index bf5b69cde00..00000000000 --- a/src/licensedcode/data/rules/gpl_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-faq.html diff --git a/src/licensedcode/data/rules/gpl_52.RULE b/src/licensedcode/data/rules/gpl_52.RULE index 472697a10ef..50808778268 100644 --- a/src/licensedcode/data/rules/gpl_52.RULE +++ b/src/licensedcode/data/rules/gpl_52.RULE @@ -1,3 +1,20 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +notes: | + No version is specified in this notice found in ansiknr.c as redistributed + with automake in this RPM + http://vault.centos.org/6.7/os/Source/SPackages/automake-1.11.1-4.el6.src.rpm + The original tarball for automake found in this RPM contains a GPL 2.0 text + at the top-level and a GPL 3.0 text at the same level as ansiknr.c. Since + ansiknr.c copyright pre-dates the GPL 3.0 and the notice has no version + stated, this rule is defined to match a bare GPL rather than a GPL 3.0. GPL + 3.0 is the license for automake proper and unlikely the license for + ansiknr.c. +--- + is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or diff --git a/src/licensedcode/data/rules/gpl_52.yml b/src/licensedcode/data/rules/gpl_52.yml deleted file mode 100644 index 1a4274d253b..00000000000 --- a/src/licensedcode/data/rules/gpl_52.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -notes: | - No version is specified in this notice found in ansiknr.c as redistributed - with automake in this RPM - http://vault.centos.org/6.7/os/Source/SPackages/automake-1.11.1-4.el6.src.rpm - The original tarball for automake found in this RPM contains a GPL 2.0 text - at the top-level and a GPL 3.0 text at the same level as ansiknr.c. Since - ansiknr.c copyright pre-dates the GPL 3.0 and the notice has no version - stated, this rule is defined to match a bare GPL rather than a GPL 3.0. GPL - 3.0 is the license for automake proper and unlikely the license for - ansiknr.c. diff --git a/src/licensedcode/data/rules/gpl_53.RULE b/src/licensedcode/data/rules/gpl_53.RULE index d6cdf3f0dc3..783ad031e83 100644 --- a/src/licensedcode/data/rules/gpl_53.RULE +++ b/src/licensedcode/data/rules/gpl_53.RULE @@ -1 +1,8 @@ -The Debian packaging is licensed under the GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +notes: debian packaging simple gpl +--- + +The Debian packaging is licensed under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_53.yml b/src/licensedcode/data/rules/gpl_53.yml deleted file mode 100644 index 3c566ae50d6..00000000000 --- a/src/licensedcode/data/rules/gpl_53.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -notes: debian packaging simple gpl diff --git a/src/licensedcode/data/rules/gpl_54.RULE b/src/licensedcode/data/rules/gpl_54.RULE index 5350c97221e..1ab75c1aaed 100644 --- a/src/licensedcode/data/rules/gpl_54.RULE +++ b/src/licensedcode/data/rules/gpl_54.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.txt +--- + You can redistribute it and/or modify it under either the terms of the GPL (see COPYING.txt file), or the conditions below \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_54.yml b/src/licensedcode/data/rules/gpl_54.yml deleted file mode 100644 index ecd772d4307..00000000000 --- a/src/licensedcode/data/rules/gpl_54.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.txt diff --git a/src/licensedcode/data/rules/gpl_55.RULE b/src/licensedcode/data/rules/gpl_55.RULE index be35a66020b..b1e117c7e49 100644 --- a/src/licensedcode/data/rules/gpl_55.RULE +++ b/src/licensedcode/data/rules/gpl_55.RULE @@ -1,5 +1,12 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Backend libraries are protected by the GNU General Public License (see file COPYING), but as an exception, it is permissible to link against such a library without affecting the licensing status of the program that uses the libraries. For details, see the copyright notice at the - head of the backend files + head of the backend files \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_55.yml b/src/licensedcode/data/rules/gpl_55.yml deleted file mode 100644 index cd117461335..00000000000 --- a/src/licensedcode/data/rules/gpl_55.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_56.RULE b/src/licensedcode/data/rules/gpl_56.RULE index 1c81c3f241c..b5a1de2e099 100644 --- a/src/licensedcode/data/rules/gpl_56.RULE +++ b/src/licensedcode/data/rules/gpl_56.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + The source is Copyright (c) -licensed using GPL. +licensed using GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_56.yml b/src/licensedcode/data/rules/gpl_56.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_57.RULE b/src/licensedcode/data/rules/gpl_57.RULE index d47b92be61d..392b4d54a16 100644 --- a/src/licensedcode/data/rules/gpl_57.RULE +++ b/src/licensedcode/data/rules/gpl_57.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU General Public License (GPL). -This comes with NO WARRANTY, see file license.txt. +This comes with NO WARRANTY, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_57.yml b/src/licensedcode/data/rules/gpl_57.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_58.RULE b/src/licensedcode/data/rules/gpl_58.RULE index 289f01ac662..03c383bff16 100644 --- a/src/licensedcode/data/rules/gpl_58.RULE +++ b/src/licensedcode/data/rules/gpl_58.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +--- + The Debian packaging is (C) and -is licensed under the GPL, see above. +is licensed under the GPL, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_58.yml b/src/licensedcode/data/rules/gpl_58.yml deleted file mode 100644 index 5c8568e5f3f..00000000000 --- a/src/licensedcode/data/rules/gpl_58.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes diff --git a/src/licensedcode/data/rules/gpl_59.RULE b/src/licensedcode/data/rules/gpl_59.RULE index a554bf6a951..b3e7a083f66 100644 --- a/src/licensedcode/data/rules/gpl_59.RULE +++ b/src/licensedcode/data/rules/gpl_59.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html +--- + licensed under http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_59.yml b/src/licensedcode/data/rules/gpl_59.yml deleted file mode 100644 index 743755f3d2c..00000000000 --- a/src/licensedcode/data/rules/gpl_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl_6.RULE b/src/licensedcode/data/rules/gpl_6.RULE index a4b3fd62b1a..91d5ee9fd73 100644 --- a/src/licensedcode/data/rules/gpl_6.RULE +++ b/src/licensedcode/data/rules/gpl_6.RULE @@ -1,4 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: GPL on debian copyrights +--- + Copyright: GPL, on Debian systems you can find the full text of the GPL in -/usr/share/common-licenses/GPL +/usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_6.yml b/src/licensedcode/data/rules/gpl_6.yml deleted file mode 100644 index 316b4c64826..00000000000 --- a/src/licensedcode/data/rules/gpl_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: GPL on debian copyrights diff --git a/src/licensedcode/data/rules/gpl_60.RULE b/src/licensedcode/data/rules/gpl_60.RULE index 43cea892f9a..9a7f2007588 100644 --- a/src/licensedcode/data/rules/gpl_60.RULE +++ b/src/licensedcode/data/rules/gpl_60.RULE @@ -1,2 +1,9 @@ -/* licensed under http://www.fsf.org/licensing/licenses/gpl.html */ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/gpl.html +--- +/* licensed under http://www.fsf.org/licensing/licenses/gpl.html */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_60.yml b/src/licensedcode/data/rules/gpl_60.yml deleted file mode 100644 index a465cbda3c2..00000000000 --- a/src/licensedcode/data/rules/gpl_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl_61.RULE b/src/licensedcode/data/rules/gpl_61.RULE index cb148a83ade..f92a80512f8 100644 --- a/src/licensedcode/data/rules/gpl_61.RULE +++ b/src/licensedcode/data/rules/gpl_61.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This program may be freely redistributed under the terms of the GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_61.yml b/src/licensedcode/data/rules/gpl_61.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_62.RULE b/src/licensedcode/data/rules/gpl_62.RULE index da51ab4b127..bd4ba21e801 100644 --- a/src/licensedcode/data/rules/gpl_62.RULE +++ b/src/licensedcode/data/rules/gpl_62.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This code is GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_62.yml b/src/licensedcode/data/rules/gpl_62.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_63.RULE b/src/licensedcode/data/rules/gpl_63.RULE index 83381e3504a..d2a07cd223f 100644 --- a/src/licensedcode/data/rules/gpl_63.RULE +++ b/src/licensedcode/data/rules/gpl_63.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: No version gpl declaration +--- + GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_63.yml b/src/licensedcode/data/rules/gpl_63.yml deleted file mode 100644 index 417954cdb72..00000000000 --- a/src/licensedcode/data/rules/gpl_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: No version gpl declaration diff --git a/src/licensedcode/data/rules/gpl_64.RULE b/src/licensedcode/data/rules/gpl_64.RULE index d9a5a5f0bdf..b7c50f360a3 100644 --- a/src/licensedcode/data/rules/gpl_64.RULE +++ b/src/licensedcode/data/rules/gpl_64.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +notes: No version gpl declaration +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + Licensed under the http://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_64.yml b/src/licensedcode/data/rules/gpl_64.yml deleted file mode 100644 index 0a8c4e3cc17..00000000000 --- a/src/licensedcode/data/rules/gpl_64.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -notes: No version gpl declaration -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl_65.RULE b/src/licensedcode/data/rules/gpl_65.RULE index 55c9fd0bcc8..8ead6173df3 100644 --- a/src/licensedcode/data/rules/gpl_65.RULE +++ b/src/licensedcode/data/rules/gpl_65.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +notes: No version gpl declaration +--- + This is licensed under the GNU General Public License (GPL) and comes with NO WARRANTY. See file license.txt for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_65.yml b/src/licensedcode/data/rules/gpl_65.yml deleted file mode 100644 index 972b1157986..00000000000 --- a/src/licensedcode/data/rules/gpl_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -notes: No version gpl declaration diff --git a/src/licensedcode/data/rules/gpl_66.RULE b/src/licensedcode/data/rules/gpl_66.RULE index c16b5818478..dc2bfd1fc6a 100644 --- a/src/licensedcode/data/rules/gpl_66.RULE +++ b/src/licensedcode/data/rules/gpl_66.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL +License can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_66.yml b/src/licensedcode/data/rules/gpl_66.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_66.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_67.RULE b/src/licensedcode/data/rules/gpl_67.RULE index b57fcf2eb59..9a73082e332 100644 --- a/src/licensedcode/data/rules/gpl_67.RULE +++ b/src/licensedcode/data/rules/gpl_67.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + The C# Compiler is released under the terms of the GNU GPL. On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. +License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_67.yml b/src/licensedcode/data/rules/gpl_67.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_67.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_68.RULE b/src/licensedcode/data/rules/gpl_68.RULE index 1f0470d1d47..8b4cc1a4fea 100644 --- a/src/licensedcode/data/rules/gpl_68.RULE +++ b/src/licensedcode/data/rules/gpl_68.RULE @@ -1 +1,7 @@ -is under the GNU GPL license +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +is under the GNU GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_68.yml b/src/licensedcode/data/rules/gpl_68.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_69.RULE b/src/licensedcode/data/rules/gpl_69.RULE index a549589b3f5..2b8ae03429c 100644 --- a/src/licensedcode/data/rules/gpl_69.RULE +++ b/src/licensedcode/data/rules/gpl_69.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Licensed under the GNU General Public License (GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_69.yml b/src/licensedcode/data/rules/gpl_69.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_7.RULE b/src/licensedcode/data/rules/gpl_7.RULE index 83eb0279e56..0efdb76118d 100644 --- a/src/licensedcode/data/rules/gpl_7.RULE +++ b/src/licensedcode/data/rules/gpl_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Redistribution of this file is * permitted under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_7.yml b/src/licensedcode/data/rules/gpl_7.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_70.RULE b/src/licensedcode/data/rules/gpl_70.RULE index b005e1443f9..eb8942c67c3 100644 --- a/src/licensedcode/data/rules/gpl_70.RULE +++ b/src/licensedcode/data/rules/gpl_70.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 90 +--- + under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_70.yml b/src/licensedcode/data/rules/gpl_70.yml deleted file mode 100644 index 3a844f8b4a3..00000000000 --- a/src/licensedcode/data/rules/gpl_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl_71.RULE b/src/licensedcode/data/rules/gpl_71.RULE index 6bd52f9b56f..96e64e5d83f 100644 --- a/src/licensedcode/data/rules/gpl_71.RULE +++ b/src/licensedcode/data/rules/gpl_71.RULE @@ -1 +1,9 @@ -is licensed under the GPL, see `/usr/share/common-licenses/GPL' +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + +is licensed under the GPL, see `/usr/share/common-licenses/GPL' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_71.yml b/src/licensedcode/data/rules/gpl_71.yml deleted file mode 100644 index c974511f715..00000000000 --- a/src/licensedcode/data/rules/gpl_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl_72.RULE b/src/licensedcode/data/rules/gpl_72.RULE index 5852795b4db..60698bebd25 100644 --- a/src/licensedcode/data/rules/gpl_72.RULE +++ b/src/licensedcode/data/rules/gpl_72.RULE @@ -1 +1,7 @@ -License: GPL +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + +License: GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_72.yml b/src/licensedcode/data/rules/gpl_72.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/gpl_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_73.RULE b/src/licensedcode/data/rules/gpl_73.RULE index 17111a5a8a8..9577c8d5152 100644 --- a/src/licensedcode/data/rules/gpl_73.RULE +++ b/src/licensedcode/data/rules/gpl_73.RULE @@ -1,2 +1,11 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + Full text of GPL can be found on Debian systems in file /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_73.yml b/src/licensedcode/data/rules/gpl_73.yml deleted file mode 100644 index ee206ab27ec..00000000000 --- a/src/licensedcode/data/rules/gpl_73.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl_74.RULE b/src/licensedcode/data/rules/gpl_74.RULE index 45052fb5024..057c0c496fe 100644 --- a/src/licensedcode/data/rules/gpl_74.RULE +++ b/src/licensedcode/data/rules/gpl_74.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + A. gpl (GNU General Public License) -The full text of the GPL is given in /usr/share/common-licenses/GPL. +The full text of the GPL is given in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_74.yml b/src/licensedcode/data/rules/gpl_74.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_75.RULE b/src/licensedcode/data/rules/gpl_75.RULE index 5e95a441fc3..b8086d8c437 100644 --- a/src/licensedcode/data/rules/gpl_75.RULE +++ b/src/licensedcode/data/rules/gpl_75.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This file is under GPL licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_75.yml b/src/licensedcode/data/rules/gpl_75.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_76.RULE b/src/licensedcode/data/rules/gpl_76.RULE index a4e183eca6c..a3f69d22033 100644 --- a/src/licensedcode/data/rules/gpl_76.RULE +++ b/src/licensedcode/data/rules/gpl_76.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 99 +--- + This file is under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_76.yml b/src/licensedcode/data/rules/gpl_76.yml deleted file mode 100644 index b8fa90df236..00000000000 --- a/src/licensedcode/data/rules/gpl_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl_77.RULE b/src/licensedcode/data/rules/gpl_77.RULE index 2f581309a6a..b430ad54bf2 100644 --- a/src/licensedcode/data/rules/gpl_77.RULE +++ b/src/licensedcode/data/rules/gpl_77.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + License: GPL-any # You may freely redistribute, use and modify this software under the terms # of the GNU General Public License. diff --git a/src/licensedcode/data/rules/gpl_77.yml b/src/licensedcode/data/rules/gpl_77.yml deleted file mode 100644 index 2dd8fee6659..00000000000 --- a/src/licensedcode/data/rules/gpl_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl_78.RULE b/src/licensedcode/data/rules/gpl_78.RULE index 6fc16db85a0..a300bd7eb9d 100644 --- a/src/licensedcode/data/rules/gpl_78.RULE +++ b/src/licensedcode/data/rules/gpl_78.RULE @@ -1,2 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + are made available under the GNU Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_78.yml b/src/licensedcode/data/rules/gpl_78.yml deleted file mode 100644 index 67cef1b7257..00000000000 --- a/src/licensedcode/data/rules/gpl_78.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl_79.RULE b/src/licensedcode/data/rules/gpl_79.RULE index d5fa78e3f44..26f34b6557e 100644 --- a/src/licensedcode/data/rules/gpl_79.RULE +++ b/src/licensedcode/data/rules/gpl_79.RULE @@ -1 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/gpl-license.php +--- + Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_79.yml b/src/licensedcode/data/rules/gpl_79.yml deleted file mode 100644 index 5c26196190a..00000000000 --- a/src/licensedcode/data/rules/gpl_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/gpl-license.php diff --git a/src/licensedcode/data/rules/gpl_8.RULE b/src/licensedcode/data/rules/gpl_8.RULE index 8790cf3a3b8..a6d17c74d2b 100644 --- a/src/licensedcode/data/rules/gpl_8.RULE +++ b/src/licensedcode/data/rules/gpl_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + On Debian systems, the complete text of the GNU General Public License (the "COPYING" file referred to above) can be found in the /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_8.yml b/src/licensedcode/data/rules/gpl_8.yml deleted file mode 100644 index 0eade4df8a8..00000000000 --- a/src/licensedcode/data/rules/gpl_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl_80.RULE b/src/licensedcode/data/rules/gpl_80.RULE index 3d03792b744..3e2de3cd682 100644 --- a/src/licensedcode/data/rules/gpl_80.RULE +++ b/src/licensedcode/data/rules/gpl_80.RULE @@ -1 +1,7 @@ -Released under GPL License. +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +Released under GPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_80.yml b/src/licensedcode/data/rules/gpl_80.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_81.RULE b/src/licensedcode/data/rules/gpl_81.RULE index e29550033ff..16fca6fb0c5 100644 --- a/src/licensedcode/data/rules/gpl_81.RULE +++ b/src/licensedcode/data/rules/gpl_81.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Distributed under the GPL, Copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_81.yml b/src/licensedcode/data/rules/gpl_81.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_82.RULE b/src/licensedcode/data/rules/gpl_82.RULE index 15cfbf62b14..c0b71b353d3 100644 --- a/src/licensedcode/data/rules/gpl_82.RULE +++ b/src/licensedcode/data/rules/gpl_82.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. - Type "show copying" to see the conditions. + Type "show copying" to see the conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_82.yml b/src/licensedcode/data/rules/gpl_82.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_82.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_83.RULE b/src/licensedcode/data/rules/gpl_83.RULE index a41681a706d..688f82c9faf 100644 --- a/src/licensedcode/data/rules/gpl_83.RULE +++ b/src/licensedcode/data/rules/gpl_83.RULE @@ -1 +1,7 @@ -License: This document is published under the GNU GPL \ No newline at end of file +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +License: This document is published under the GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_83.yml b/src/licensedcode/data/rules/gpl_83.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_84.RULE b/src/licensedcode/data/rules/gpl_84.RULE index 5ed5afa376c..1661f38bafc 100644 --- a/src/licensedcode/data/rules/gpl_84.RULE +++ b/src/licensedcode/data/rules/gpl_84.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 99 +--- + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_84.yml b/src/licensedcode/data/rules/gpl_84.yml deleted file mode 100644 index b364c41ecc7..00000000000 --- a/src/licensedcode/data/rules/gpl_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gpl_85.RULE b/src/licensedcode/data/rules/gpl_85.RULE index 99de31eddf4..e773830c04f 100644 --- a/src/licensedcode/data/rules/gpl_85.RULE +++ b/src/licensedcode/data/rules/gpl_85.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_85.yml b/src/licensedcode/data/rules/gpl_85.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_86.RULE b/src/licensedcode/data/rules/gpl_86.RULE index 02703db239b..c5663123eb9 100644 --- a/src/licensedcode/data/rules/gpl_86.RULE +++ b/src/licensedcode/data/rules/gpl_86.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This code is released under the GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_86.yml b/src/licensedcode/data/rules/gpl_86.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_87.RULE b/src/licensedcode/data/rules/gpl_87.RULE index 47a18641c78..4e9e91c6320 100644 --- a/src/licensedcode/data/rules/gpl_87.RULE +++ b/src/licensedcode/data/rules/gpl_87.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This program can be distributed under the terms of the GNU GPL. -See the file COPYING. +See the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_87.yml b/src/licensedcode/data/rules/gpl_87.yml deleted file mode 100644 index 173d312feb9..00000000000 --- a/src/licensedcode/data/rules/gpl_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_88.RULE b/src/licensedcode/data/rules/gpl_88.RULE index 3fce7257545..b5f4b6b101b 100644 --- a/src/licensedcode/data/rules/gpl_88.RULE +++ b/src/licensedcode/data/rules/gpl_88.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + # This code is released under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_88.yml b/src/licensedcode/data/rules/gpl_88.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_89.RULE b/src/licensedcode/data/rules/gpl_89.RULE index f0c749de936..749d09431e1 100644 --- a/src/licensedcode/data/rules/gpl_89.RULE +++ b/src/licensedcode/data/rules/gpl_89.RULE @@ -1 +1,7 @@ -License: GNU GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +License: GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_89.yml b/src/licensedcode/data/rules/gpl_89.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_9.RULE b/src/licensedcode/data/rules/gpl_9.RULE index 033f844e4e8..3c9da45f2ba 100644 --- a/src/licensedcode/data/rules/gpl_9.RULE +++ b/src/licensedcode/data/rules/gpl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Released under the terms of the GNU General Public license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_9.yml b/src/licensedcode/data/rules/gpl_9.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_90.RULE b/src/licensedcode/data/rules/gpl_90.RULE index c4d31103f07..ebe3d90bbf1 100644 --- a/src/licensedcode/data/rules/gpl_90.RULE +++ b/src/licensedcode/data/rules/gpl_90.RULE @@ -1 +1,7 @@ -This file is (c) under GNU PUBLIC LICENSE +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This file is (c) under GNU PUBLIC LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_90.yml b/src/licensedcode/data/rules/gpl_90.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_91.RULE b/src/licensedcode/data/rules/gpl_91.RULE index 99eed82cdbd..0dc5024d01e 100644 --- a/src/licensedcode/data/rules/gpl_91.RULE +++ b/src/licensedcode/data/rules/gpl_91.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.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. +the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_91.yml b/src/licensedcode/data/rules/gpl_91.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_91.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_92.RULE b/src/licensedcode/data/rules/gpl_92.RULE index 8f0d82e0b71..5879b20e5c5 100644 --- a/src/licensedcode/data/rules/gpl_92.RULE +++ b/src/licensedcode/data/rules/gpl_92.RULE @@ -1,2 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + This file may be redistributed under the terms of the GNU General Public - License. + License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_92.yml b/src/licensedcode/data/rules/gpl_92.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_93.RULE b/src/licensedcode/data/rules/gpl_93.RULE index 66ac59b2277..94c55b82f42 100644 --- a/src/licensedcode/data/rules/gpl_93.RULE +++ b/src/licensedcode/data/rules/gpl_93.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + eCryptfs is free software. Please see the file COPYING for details. For documentation, please see the files in the doc/ subdirectory. For - building and installation instructions please see the INSTALL file. + building and installation instructions please see the INSTALL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_93.yml b/src/licensedcode/data/rules/gpl_93.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_94.RULE b/src/licensedcode/data/rules/gpl_94.RULE index 10f43f27838..622932d1931 100644 --- a/src/licensedcode/data/rules/gpl_94.RULE +++ b/src/licensedcode/data/rules/gpl_94.RULE @@ -1 +1,9 @@ - This file is licensed under the GPL. See COPYING in the package. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + + This file is licensed under the GPL. See COPYING in the package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_94.yml b/src/licensedcode/data/rules/gpl_94.yml deleted file mode 100644 index 173d312feb9..00000000000 --- a/src/licensedcode/data/rules/gpl_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_95.RULE b/src/licensedcode/data/rules/gpl_95.RULE index 357bd604713..5c311ebd6f6 100644 --- a/src/licensedcode/data/rules/gpl_95.RULE +++ b/src/licensedcode/data/rules/gpl_95.RULE @@ -1 +1,7 @@ - Under the terms of the GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + + Under the terms of the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_95.yml b/src/licensedcode/data/rules/gpl_95.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_96.RULE b/src/licensedcode/data/rules/gpl_96.RULE index 3bd477e700a..fd8297fccb7 100644 --- a/src/licensedcode/data/rules/gpl_96.RULE +++ b/src/licensedcode/data/rules/gpl_96.RULE @@ -1 +1,9 @@ -See COPYING for GPL terms. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +See COPYING for GPL terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_96.yml b/src/licensedcode/data/rules/gpl_96.yml deleted file mode 100644 index 173d312feb9..00000000000 --- a/src/licensedcode/data/rules/gpl_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gpl_97.RULE b/src/licensedcode/data/rules/gpl_97.RULE index fceea5ff1ce..e34f8e8dd47 100644 --- a/src/licensedcode/data/rules/gpl_97.RULE +++ b/src/licensedcode/data/rules/gpl_97.RULE @@ -1 +1,7 @@ -This file is released under the GPL. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This file is released under the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_97.yml b/src/licensedcode/data/rules/gpl_97.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_98.RULE b/src/licensedcode/data/rules/gpl_98.RULE index d83265c806e..66087a5ac1d 100644 --- a/src/licensedcode/data/rules/gpl_98.RULE +++ b/src/licensedcode/data/rules/gpl_98.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + Use consistent with the GNU GPL is permitted, provided that this copyright notice is - preserved in its entirety in all copies and derived works. + preserved in its entirety in all copies and derived works. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_98.yml b/src/licensedcode/data/rules/gpl_98.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_98.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_99.RULE b/src/licensedcode/data/rules/gpl_99.RULE index d8bfbaeac57..5ac6f1689db 100644 --- a/src/licensedcode/data/rules/gpl_99.RULE +++ b/src/licensedcode/data/rules/gpl_99.RULE @@ -1 +1,7 @@ -This file is licenced under GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + +This file is licenced under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_99.yml b/src/licensedcode/data/rules/gpl_99.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_and_crypto-keys-redistribution.RULE b/src/licensedcode/data/rules/gpl_and_crypto-keys-redistribution.RULE index 1d7c69a70de..f85670182bb 100644 --- a/src/licensedcode/data/rules/gpl_and_crypto-keys-redistribution.RULE +++ b/src/licensedcode/data/rules/gpl_and_crypto-keys-redistribution.RULE @@ -1,7 +1,13 @@ +--- +license_expression: gpl-1.0-plus AND crypto-keys-redistribution +is_license_notice: yes +minimum_coverage: 90 +--- + Redistributable under terms of the GNU General Public License For the avoidance of doubt the "preferred form" of this code is one which is in an open non patent encumbered format. Where cryptographic key signing forms part of the process of creating an executable the information including keys needed to generate an equivalently functional executable -are deemed to be part of the source code. +are deemed to be part of the source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_crypto-keys-redistribution.yml b/src/licensedcode/data/rules/gpl_and_crypto-keys-redistribution.yml deleted file mode 100644 index 49599687ddf..00000000000 --- a/src/licensedcode/data/rules/gpl_and_crypto-keys-redistribution.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND crypto-keys-redistribution -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/gpl_and_jpeg.RULE b/src/licensedcode/data/rules/gpl_and_jpeg.RULE index 1dd95080908..0ebe48e8f92 100644 --- a/src/licensedcode/data/rules/gpl_and_jpeg.RULE +++ b/src/licensedcode/data/rules/gpl_and_jpeg.RULE @@ -1,3 +1,14 @@ +--- +license_expression: gpl-1.0-plus AND ijg AND public-domain +is_license_notice: yes +referenced_filenames: + - LICENSE + - COPYING + - backend/dll.c + - backend/djpeg.README.gz + - /usr/share/common-licenses/GPL +--- + Verbatim copy of the LICENSE : ******************************************************************************** diff --git a/src/licensedcode/data/rules/gpl_and_jpeg.yml b/src/licensedcode/data/rules/gpl_and_jpeg.yml deleted file mode 100644 index 8642f5b845e..00000000000 --- a/src/licensedcode/data/rules/gpl_and_jpeg.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gpl-1.0-plus AND ijg AND public-domain -is_license_notice: yes -referenced_filenames: - - LICENSE - - COPYING - - backend/dll.c - - backend/djpeg.README.gz - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus.RULE b/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus.RULE index 19bfc6a7058..ee05ff75e62 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.gnu.org/licenses/lgpl.html +--- + All files are released under the GNU General Public Licence, except some external libraries that are released under the GNU Lesser General Public Licence. -See http://www.gnu.org/licenses/gpl.html and http://www.gnu.org/licenses/lgpl.html +See http://www.gnu.org/licenses/gpl.html and http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus.yml b/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus.yml deleted file mode 100644 index a20c4f2f2ce..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus_2.RULE index d45f25ed766..baf7cd573d6 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus_2.RULE @@ -1,5 +1,12 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LESSER +--- + (this package), which is distributed under GNU General Public Licence and which is distributed under GNU Lesser General Public Licence. The license DOES NOT permit including into proprietary programs, but the license does permit incorporating the output of and as well the - into proprietary programs (see COPYING.LESSER for the details). + into proprietary programs (see COPYING.LESSER for the details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus_2.yml deleted file mode 100644 index b7970e5d108..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LESSER diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_1.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_1.RULE index 4c28aa6e8fd..8e4c3c81b46 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_1.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus +is_license_notice: yes +notes: Double licenses gpl and lgpl +--- + To the extent you receive Software or Applications under this Agreement which contains components subject to the GPL or LGPL terms, you agree to be bound by all the terms and restrictions therein including keeping all copyright notices intact for the duration of your use of the Software or Applications and modifying and/or redistributing such components only in accordance with the terms of the GNU GPL or LGPL terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_1.yml b/src/licensedcode/data/rules/gpl_and_lgpl_1.yml deleted file mode 100644 index 4e4b52f30f8..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus -is_license_notice: yes -notes: Double licenses gpl and lgpl diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_10.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_10.RULE index 5604c12a4be..ad664ce8961 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_10.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 25 +notes: Double licenses gpl and lgpl. Lesser means lgpl 2.1 +--- + License: The binary utilities in this package are distributed under the terms @@ -6,4 +13,4 @@ on Debian systems in the /usr/share/common-licenses/GPL file. The shared library in this package is distributed under the terms of the GNU Lesser General Public License. The text of the license is -available on Debian systems in the /usr/share/common-licenses/LGPL file. +available on Debian systems in the /usr/share/common-licenses/LGPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_10.yml b/src/licensedcode/data/rules/gpl_and_lgpl_10.yml deleted file mode 100644 index 345ebfd7751..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 25 -notes: Double licenses gpl and lgpl. Lesser means lgpl 2.1 diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_2.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_2.RULE index d37cc70b85f..3af347f3a1a 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_2.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus +is_license_notice: yes +relevance: 90 +minimum_coverage: 90 +notes: dual licensed of gpl and lgpl but not fully conclusive +--- + This file can can be used in projects which are not available under the GNU General Public License or the GNU Library General Public License but which still want to provide support for the GNU gettext diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_2.yml b/src/licensedcode/data/rules/gpl_and_lgpl_2.yml deleted file mode 100644 index 7c9114049fe..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus -is_license_notice: yes -relevance: 90 -minimum_coverage: 90 -notes: dual licensed of gpl and lgpl but not fully conclusive diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_3.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_3.RULE index bbf0d4fbce9..f1297b6de2e 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_3.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + under GPL or LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_3.yml b/src/licensedcode/data/rules/gpl_and_lgpl_3.yml deleted file mode 100644 index 7ef8bf968c5..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_4.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_4.RULE index 0abd76db699..3340cabcc74 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_4.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_4.RULE @@ -1,7 +1,13 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +notes: No version l/gpl declaration +--- + Copyright: The libraries are released under the terms of the LGPL license, see /usr/share/common-licenses/LGPL for reference. The rest of the code is released under the terms of the GPL license, -see /usr/share/common-licenses/GPL for the full license. +see /usr/share/common-licenses/GPL for the full license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_4.yml b/src/licensedcode/data/rules/gpl_and_lgpl_4.yml deleted file mode 100644 index 9c6e52d850f..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -notes: No version l/gpl declaration diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_5.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_5.RULE index f5b686972a1..c772faeea31 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_5.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus +is_license_notice: yes +--- + All source code located in this directory may fall under GPL or LGPL license. OpenSIPStack core library does not rely on any of the code/library found in this directory. If an application uses any of the library found here, the diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_5.yml b/src/licensedcode/data/rules/gpl_and_lgpl_5.yml deleted file mode 100644 index d4cd22527d7..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_6.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_6.RULE index dee598e3761..da3af802a75 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_6.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_6.RULE @@ -1,2 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus +is_license_tag: yes +--- + Note: The various versions of the GPL and the LGPL can be found in -/usr/share/common-licenses/. +/usr/share/common-licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_6.yml b/src/licensedcode/data/rules/gpl_and_lgpl_6.yml deleted file mode 100644 index 6463958f48a..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus -is_license_tag: yes diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown.RULE index 41415d342b1..01e017fab72 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus AND free-unknown +is_license_notice: yes +relevance: 100 +--- + is licensed under the GPL or LGPL, some components have different licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown.yml b/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown.yml deleted file mode 100644 index 6a5389360c3..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus AND free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown2.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown2.RULE index 3c55c0e6968..755f280b5ee 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown2.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus AND free-unknown +is_license_notice: yes +relevance: 100 +--- + We provide source code licensed under the GPL or LGPL, and some other open source licenses allowing source code distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown2.yml b/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown2.yml deleted file mode 100644 index 6a5389360c3..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_and_free-unknown2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus AND free-unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_and_gfdl-1.2.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_and_gfdl-1.2.RULE index 6471ac91211..33cad6af799 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_and_gfdl-1.2.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_and_gfdl-1.2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus AND gfdl-1.2 +is_license_notice: yes +minimum_coverage: 80 +--- + All code released under the GPL, see /usr/share/common-licenses/GPL With the exception of @@ -5,4 +11,4 @@ With the exception of which is released under the LGPL, see /usr/share/common-licenses/LGPL The documentation in the help/ directory is released under the -GNU Free Documentation License, see /usr/share/common-licenses/GFDL-1.2. +GNU Free Documentation License, see /usr/share/common-licenses/GFDL-1.2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_and_gfdl-1.2.yml b/src/licensedcode/data/rules/gpl_and_lgpl_and_gfdl-1.2.yml deleted file mode 100644 index 933ba39a6d0..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_and_gfdl-1.2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus AND gfdl-1.2 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_or_bsd-simplified.RULE b/src/licensedcode/data/rules/gpl_and_lgpl_or_bsd-simplified.RULE index 7f6a69081cf..29f70248ad9 100644 --- a/src/licensedcode/data/rules/gpl_and_lgpl_or_bsd-simplified.RULE +++ b/src/licensedcode/data/rules/gpl_and_lgpl_or_bsd-simplified.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus OR bsd-simplified +is_license_notice: yes +--- + You can redistribute it and/or modify it under either the terms of the GPL (see the file GPL), LGPL (see the file LGPL), or the conditions below: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -10,4 +15,4 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 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 THISEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THISEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_lgpl_or_bsd-simplified.yml b/src/licensedcode/data/rules/gpl_and_lgpl_or_bsd-simplified.yml deleted file mode 100644 index efc522634e6..00000000000 --- a/src/licensedcode/data/rules/gpl_and_lgpl_or_bsd-simplified.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus OR bsd-simplified -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_and_ossn-3.0.RULE b/src/licensedcode/data/rules/gpl_and_ossn-3.0.RULE index da243852321..c1cc629b3ec 100644 --- a/src/licensedcode/data/rules/gpl_and_ossn-3.0.RULE +++ b/src/licensedcode/data/rules/gpl_and_ossn-3.0.RULE @@ -1 +1,9 @@ -@license General Public Licence http://www.opensource-socialnetwork.org/licence +--- +license_expression: gpl-1.0-plus AND ossn-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource-socialnetwork.org/licence +--- + +@license General Public Licence http://www.opensource-socialnetwork.org/licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_and_ossn-3.0.yml b/src/licensedcode/data/rules/gpl_and_ossn-3.0.yml deleted file mode 100644 index 45af0032f06..00000000000 --- a/src/licensedcode/data/rules/gpl_and_ossn-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus AND ossn-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource-socialnetwork.org/licence diff --git a/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE b/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE index 957ac6c6f34..7c73f647be4 100644 --- a/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE +++ b/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_bare_gnu_gpl.yml b/src/licensedcode/data/rules/gpl_bare_gnu_gpl.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_bare_gnu_gpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_bare_word_only.RULE b/src/licensedcode/data/rules/gpl_bare_word_only.RULE index 505faa142ba..dd3e5ad52a7 100644 --- a/src/licensedcode/data/rules/gpl_bare_word_only.RULE +++ b/src/licensedcode/data/rules/gpl_bare_word_only.RULE @@ -1 +1,7 @@ -GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 50 +--- + +GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_bare_word_only.yml b/src/licensedcode/data/rules/gpl_bare_word_only.yml deleted file mode 100644 index c336eb4d0b6..00000000000 --- a/src/licensedcode/data/rules/gpl_bare_word_only.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/gpl_copying_gpl.RULE b/src/licensedcode/data/rules/gpl_copying_gpl.RULE index faba7740e38..a78afc59892 100644 --- a/src/licensedcode/data/rules/gpl_copying_gpl.RULE +++ b/src/licensedcode/data/rules/gpl_copying_gpl.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 90 +--- + COPYING.GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_copying_gpl.yml b/src/licensedcode/data/rules/gpl_copying_gpl.yml deleted file mode 100644 index fb1f61395f4..00000000000 --- a/src/licensedcode/data/rules/gpl_copying_gpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gpl_debian.RULE b/src/licensedcode/data/rules/gpl_debian.RULE index d7d6212485a..8902dba7285 100644 --- a/src/licensedcode/data/rules/gpl_debian.RULE +++ b/src/licensedcode/data/rules/gpl_debian.RULE @@ -1 +1,7 @@ - - GPL: /usr/share/common-licenses/GPL +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + + - GPL: /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_debian.yml b/src/licensedcode/data/rules/gpl_debian.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/gpl_debian.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_debian2.RULE b/src/licensedcode/data/rules/gpl_debian2.RULE index c6fb38c932a..6d769444fc7 100644 --- a/src/licensedcode/data/rules/gpl_debian2.RULE +++ b/src/licensedcode/data/rules/gpl_debian2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + A copy of the GNU General Public License is available as /usr/share/common-licenses/GPL in the Debian GNU/Linux distribution or on the World Wide Web at http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_debian2.yml b/src/licensedcode/data/rules/gpl_debian2.yml deleted file mode 100644 index 1cdb0a6fd67..00000000000 --- a/src/licensedcode/data/rules/gpl_debian2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/gpl_may.RULE b/src/licensedcode/data/rules/gpl_may.RULE index 9ebd3efbea5..d35bad104a4 100644 --- a/src/licensedcode/data/rules/gpl_may.RULE +++ b/src/licensedcode/data/rules/gpl_may.RULE @@ -1 +1,7 @@ -May be used/distributed under the GPL +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + +May be used/distributed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_may.yml b/src/licensedcode/data/rules/gpl_may.yml deleted file mode 100644 index 116c9848025..00000000000 --- a/src/licensedcode/data/rules/gpl_may.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_not_lgpl_lesser.RULE b/src/licensedcode/data/rules/gpl_not_lgpl_lesser.RULE index 24385af36e1..4f49ca7ec69 100644 --- a/src/licensedcode/data/rules/gpl_not_lgpl_lesser.RULE +++ b/src/licensedcode/data/rules/gpl_not_lgpl_lesser.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-1.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. @@ -9,4 +14,4 @@ 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 St, Fifth Floor, Boston, MA 02110-1301 USA +Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_not_lgpl_lesser.yml b/src/licensedcode/data/rules/gpl_not_lgpl_lesser.yml deleted file mode 100644 index 761b0ddd47f..00000000000 --- a/src/licensedcode/data/rules/gpl_not_lgpl_lesser.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gpl_not_not-a-license_16.RULE b/src/licensedcode/data/rules/gpl_not_not-a-license_16.RULE index c5956fe6176..3b06f2b393c 100644 --- a/src/licensedcode/data/rules/gpl_not_not-a-license_16.RULE +++ b/src/licensedcode/data/rules/gpl_not_not-a-license_16.RULE @@ -1,2 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 50 +notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing + which is interesting but not a license notice or statement. +--- + Frequently Asked Questions about the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_not_not-a-license_16.yml b/src/licensedcode/data/rules/gpl_not_not-a-license_16.yml deleted file mode 100644 index f8730c11563..00000000000 --- a/src/licensedcode/data/rules/gpl_not_not-a-license_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 50 -notes: Curl doc on licensing where nothing should be detected. This is a discussion on licensing - which is interesting but not a license notice or statement. diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_1.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_1.RULE index f7e132885d2..3349f0fe0df 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_1.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + published under GPL or LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_1.yml b/src/licensedcode/data/rules/gpl_or_lgpl_1.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_10.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_10.RULE index 376d66d9a4c..7a40ebea310 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_10.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_10.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Everything in (unless otherwise stated below) are licensed under the GPL or LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_10.yml b/src/licensedcode/data/rules/gpl_or_lgpl_10.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_11.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_11.RULE index 7b5a7a7e3ef..264a0bcc6ac 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_11.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_11.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The following components are licensed under the GPL or LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_11.yml b/src/licensedcode/data/rules/gpl_or_lgpl_11.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_12.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_12.RULE index 460db62d8b2..995f9e56a0c 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_12.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_12.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Pursuant to Section 11, this file may be distributed as part of a Larger Work licensed under the GPL or LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_12.yml b/src/licensedcode/data/rules/gpl_or_lgpl_12.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_2.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_2.RULE index e5b09f54b8d..2b505cc8c27 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_2.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This work is provided under the GPL or LGPL at your choice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_2.yml b/src/licensedcode/data/rules/gpl_or_lgpl_2.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_3.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_3.RULE index 3ea89f40360..aaf5a3b3e4c 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_3.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GPL or LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_3.yml b/src/licensedcode/data/rules/gpl_or_lgpl_3.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_4.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_4.RULE index 24a23d3a188..522030807b1 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_4.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_4.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The projects are licensed under the GPL or LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_4.yml b/src/licensedcode/data/rules/gpl_or_lgpl_4.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_5.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_5.RULE index a1ce19e8712..512dc2144d2 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_5.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_5.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: the lesser reference means 2.1+ +--- + are licensed under the GPL or LGPL (Lesser General Public License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_5.yml b/src/licensedcode/data/rules/gpl_or_lgpl_5.yml deleted file mode 100644 index 7b78ea19fcf..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: the lesser reference means 2.1+ diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_6.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_6.RULE index 0c1e308dd20..1cb82debfdd 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_6.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_6.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + project’s offerings are licensed under the GPL or LGPL, so the same caveats apply \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_6.yml b/src/licensedcode/data/rules/gpl_or_lgpl_6.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_7.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_7.RULE index ac84b393b63..13b14bd38a4 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_7.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_7.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Dual licensed under the GPL or LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_7.yml b/src/licensedcode/data/rules/gpl_or_lgpl_7.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_8.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_8.RULE index 0d315d9b19d..68ae0524673 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_8.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_8.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The files are licensed under the GPL or LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_8.yml b/src/licensedcode/data/rules/gpl_or_lgpl_8.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_9.RULE b/src/licensedcode/data/rules/gpl_or_lgpl_9.RULE index ce4b2ea139f..1608a678920 100644 --- a/src/licensedcode/data/rules/gpl_or_lgpl_9.RULE +++ b/src/licensedcode/data/rules/gpl_or_lgpl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + All code within the project is licensed under the GPL or LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_lgpl_9.yml b/src/licensedcode/data/rules/gpl_or_lgpl_9.yml deleted file mode 100644 index acd42c23489..00000000000 --- a/src/licensedcode/data/rules/gpl_or_lgpl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_mit.RULE b/src/licensedcode/data/rules/gpl_or_mit.RULE index cf90a43a0f9..e997ff2ceea 100644 --- a/src/licensedcode/data/rules/gpl_or_mit.RULE +++ b/src/licensedcode/data/rules/gpl_or_mit.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR mit +is_license_tag: yes +relevance: 100 +--- + dual-licensed under GPL and MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_mit.yml b/src/licensedcode/data/rules/gpl_or_mit.yml deleted file mode 100644 index e3058f215d9..00000000000 --- a/src/licensedcode/data/rules/gpl_or_mit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_mit_1.RULE b/src/licensedcode/data/rules/gpl_or_mit_1.RULE index 22d630401c3..abd4230a334 100644 --- a/src/licensedcode/data/rules/gpl_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl_or_mit_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + * This TipTip jQuery plug-in is dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_mit_1.yml b/src/licensedcode/data/rules/gpl_or_mit_1.yml deleted file mode 100644 index b2d33f1a80e..00000000000 --- a/src/licensedcode/data/rules/gpl_or_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/gpl_or_mit_2.RULE b/src/licensedcode/data/rules/gpl_or_mit_2.RULE index 1fa7d93b584..31bc050cf29 100644 --- a/src/licensedcode/data/rules/gpl_or_mit_2.RULE +++ b/src/licensedcode/data/rules/gpl_or_mit_2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR mit +is_license_notice: yes +notes: masonry +--- + license: is dual-licensed under GPL and MIT, just like itself. You can use it for both personal and commercial applications. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_mit_2.yml b/src/licensedcode/data/rules/gpl_or_mit_2.yml deleted file mode 100644 index 1834a9be12f..00000000000 --- a/src/licensedcode/data/rules/gpl_or_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR mit -is_license_notice: yes -notes: masonry diff --git a/src/licensedcode/data/rules/gpl_or_mit_3.RULE b/src/licensedcode/data/rules/gpl_or_mit_3.RULE index 2e6cadb9241..1056a5d23cc 100644 --- a/src/licensedcode/data/rules/gpl_or_mit_3.RULE +++ b/src/licensedcode/data/rules/gpl_or_mit_3.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus OR mit +is_license_tag: yes +relevance: 100 +--- + license: is dual-licensed under GPL and MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_mit_3.yml b/src/licensedcode/data/rules/gpl_or_mit_3.yml deleted file mode 100644 index e3058f215d9..00000000000 --- a/src/licensedcode/data/rules/gpl_or_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gpl_or_mit_4.RULE b/src/licensedcode/data/rules/gpl_or_mit_4.RULE index 977ca90e26d..1dd89788c4c 100644 --- a/src/licensedcode/data/rules/gpl_or_mit_4.RULE +++ b/src/licensedcode/data/rules/gpl_or_mit_4.RULE @@ -1 +1,7 @@ -MIT/GPL2 Licensed +--- +license_expression: mit OR gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +MIT/GPL2 Licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_or_mit_4.yml b/src/licensedcode/data/rules/gpl_or_mit_4.yml deleted file mode 100644 index d53119bfaf7..00000000000 --- a/src/licensedcode/data/rules/gpl_or_mit_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gplcc-1.0_1.RULE b/src/licensedcode/data/rules/gplcc-1.0_1.RULE index 3238a8da10d..5398cb5fee9 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_1.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL Cooperation Commitment 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_1.yml b/src/licensedcode/data/rules/gplcc-1.0_1.yml deleted file mode 100644 index fcea050d04d..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gplcc-1.0_10.RULE b/src/licensedcode/data/rules/gplcc-1.0_10.RULE index c3c81ec8799..2d5832274f5 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_10.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-CC-1.0 +--- + LICENSE {{GPL-CC-1.0}} https://spdx.org/licenses/GPL-CC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_10.yml b/src/licensedcode/data/rules/gplcc-1.0_10.yml deleted file mode 100644 index 2835417ed1c..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-CC-1.0 diff --git a/src/licensedcode/data/rules/gplcc-1.0_11.RULE b/src/licensedcode/data/rules/gplcc-1.0_11.RULE index 08030212ec2..fda3b577854 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_11.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-CC-1.0 +--- + {{GPL-CC-1.0}} https://spdx.org/licenses/GPL-CC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_11.yml b/src/licensedcode/data/rules/gplcc-1.0_11.yml deleted file mode 100644 index 2835417ed1c..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GPL-CC-1.0 diff --git a/src/licensedcode/data/rules/gplcc-1.0_2.RULE b/src/licensedcode/data/rules/gplcc-1.0_2.RULE index 085a5b1fe72..2061150378e 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_2.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GPL Cooperation Commitment 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_2.yml b/src/licensedcode/data/rules/gplcc-1.0_2.yml deleted file mode 100644 index fcea050d04d..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gplcc-1.0_3.RULE b/src/licensedcode/data/rules/gplcc-1.0_3.RULE index 04cea7cc0ea..de954b44723 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_3.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL-CC-1.0 GPL Cooperation Commitment 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_3.yml b/src/licensedcode/data/rules/gplcc-1.0_3.yml deleted file mode 100644 index fcea050d04d..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gplcc-1.0_4.RULE b/src/licensedcode/data/rules/gplcc-1.0_4.RULE index 0113afc5b58..48175334fdf 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_4.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GPL Cooperation Commitment 1.0 GPL-CC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_4.yml b/src/licensedcode/data/rules/gplcc-1.0_4.yml deleted file mode 100644 index fcea050d04d..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gplcc-1.0_5.RULE b/src/licensedcode/data/rules/gplcc-1.0_5.RULE index ad57245cbca..198c2fb2e6f 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_5.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: gplcc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL-CC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_5.yml b/src/licensedcode/data/rules/gplcc-1.0_5.yml deleted file mode 100644 index f0441771c6e..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gplcc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gplcc-1.0_6.RULE b/src/licensedcode/data/rules/gplcc-1.0_6.RULE index 6d1d88ae434..a1620fd319c 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_6.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gplcc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GPL Cooperation Commitment 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_6.yml b/src/licensedcode/data/rules/gplcc-1.0_6.yml deleted file mode 100644 index f0441771c6e..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gplcc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gplcc-1.0_7.RULE b/src/licensedcode/data/rules/gplcc-1.0_7.RULE index 67592e6eb64..0b7b01360ac 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_7.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gplcc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: GPL-CC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_7.yml b/src/licensedcode/data/rules/gplcc-1.0_7.yml deleted file mode 100644 index f0441771c6e..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gplcc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gplcc-1.0_8.RULE b/src/licensedcode/data/rules/gplcc-1.0_8.RULE index 224108fe571..c0eb63926da 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_8.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GPL-CC-1.0 +--- + https://licenses.nuget.org/GPL-CC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_8.yml b/src/licensedcode/data/rules/gplcc-1.0_8.yml deleted file mode 100644 index c733d484b8d..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GPL-CC-1.0 diff --git a/src/licensedcode/data/rules/gplcc-1.0_9.RULE b/src/licensedcode/data/rules/gplcc-1.0_9.RULE index 7e8ca2ed7f0..c0cc9f674bf 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_9.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GPL-CC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_9.yml b/src/licensedcode/data/rules/gplcc-1.0_9.yml deleted file mode 100644 index 33aa19cb7f4..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gplcc-1.0_brief.RULE b/src/licensedcode/data/rules/gplcc-1.0_brief.RULE index 60ffc629f3a..3d360052ad4 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_brief.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_brief.RULE @@ -1 +1,7 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +relevance: 100 +--- + GPL Cooperation Commitment \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_brief.yml b/src/licensedcode/data/rules/gplcc-1.0_brief.yml deleted file mode 100644 index 33aa19cb7f4..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_brief.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gplcc-1.0_ca.RULE b/src/licensedcode/data/rules/gplcc-1.0_ca.RULE index 1047564b726..b55701eb929 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_ca.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_ca.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_notice: yes +--- + Our GPL Commitment Before filing or continuing to prosecute any legal proceeding or claim (other than a Defensive Action) arising from termination of a Covered License, CA commits to extend to the person or entity (“you”) accused of violating the Covered License the following provisions regarding cure and reinstatement, taken from GPL version 3. As used here, the term ‘this License’ refers to the specific Covered License being enforced. diff --git a/src/licensedcode/data/rules/gplcc-1.0_ca.yml b/src/licensedcode/data/rules/gplcc-1.0_ca.yml deleted file mode 100644 index 8a0238cc706..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_ca.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_cisco.RULE b/src/licensedcode/data/rules/gplcc-1.0_cisco.RULE index 86351d8688e..e606c69d9eb 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_cisco.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_cisco.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + Our GPL Enforcement Commitment Before filing or continuing to prosecute any legal proceeding or claim (other than a Defensive Action) arising from termination of a Covered License, Cisco commits to extend to the person or entity (“you”) accused of violating the Covered License the following provisions regarding cure and reinstatement, taken from GPL version 3. As used here, the term ‘this License’ refers to the specific Covered License being enforced. diff --git a/src/licensedcode/data/rules/gplcc-1.0_cisco.yml b/src/licensedcode/data/rules/gplcc-1.0_cisco.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_cisco.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_google.RULE b/src/licensedcode/data/rules/gplcc-1.0_google.RULE index fe18f7779c3..6869a0ba97c 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_google.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_google.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + Our Commitment @@ -16,4 +21,4 @@ Definitions 'Defensive Action' means a legal proceeding or claim that Google brings against you in response to a prior proceeding or claim initiated by you or your affiliate. -'Google' means Google LLC and its subsidiaries. +'Google' means Google LLC and its subsidiaries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_google.yml b/src/licensedcode/data/rules/gplcc-1.0_google.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_google.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_individual.RULE b/src/licensedcode/data/rules/gplcc-1.0_individual.RULE index 38a5b993103..a0acda93b44 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_individual.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_individual.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gplcc-1.0 +is_license_notice: yes +notes: see https://github.com/gplcc/gplcc/blob/master/Individual/README-INDIVIDUAL.md +--- + GPL Cooperation Commitment - For Individuals Solely for any software for which I personally own copyright that is licensed under a Covered License, before filing or continuing to prosecute any legal proceeding or claim (other than a Defensive Action) arising from termination of a Covered License, I commit to extend to the person or entity (“you”) accused of violating the Covered License the following provisions regarding cure and reinstatement, taken from GPL version 3. As used here, the term ‘this License’ refers to the specific Covered License being enforced. diff --git a/src/licensedcode/data/rules/gplcc-1.0_individual.yml b/src/licensedcode/data/rules/gplcc-1.0_individual.yml deleted file mode 100644 index c4881eb3b80..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_individual.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gplcc-1.0 -is_license_notice: yes -notes: see https://github.com/gplcc/gplcc/blob/master/Individual/README-INDIVIDUAL.md diff --git a/src/licensedcode/data/rules/gplcc-1.0_kernel.RULE b/src/licensedcode/data/rules/gplcc-1.0_kernel.RULE index e6f29ef11e9..8ee9067801c 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_kernel.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_kernel.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gplcc-1.0 +is_license_notice: yes +notes: see https://www.kernel.org/doc/html/latest/_sources/process/kernel-enforcement-statement.rst.txt +--- + Linux Kernel Enforcement Statement ---------------------------------- diff --git a/src/licensedcode/data/rules/gplcc-1.0_kernel.yml b/src/licensedcode/data/rules/gplcc-1.0_kernel.yml deleted file mode 100644 index 2c7fc5021a7..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_kernel.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gplcc-1.0 -is_license_notice: yes -notes: see https://www.kernel.org/doc/html/latest/_sources/process/kernel-enforcement-statement.rst.txt diff --git a/src/licensedcode/data/rules/gplcc-1.0_microsoft.RULE b/src/licensedcode/data/rules/gplcc-1.0_microsoft.RULE index 9f9582c42f3..6081634886f 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_microsoft.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_microsoft.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + Our Commitment Before filing or continuing to prosecute any legal proceeding or claim (other than a Defensive Action) arising from termination of a Covered License, Microsoft commits to extend to the person or entity (“you”) accused of violating the Covered License the following provisions regarding cure and reinstatement, taken from GPL version 3. As used here, the term ‘this License’ refers to the specific Covered License being enforced. diff --git a/src/licensedcode/data/rules/gplcc-1.0_microsoft.yml b/src/licensedcode/data/rules/gplcc-1.0_microsoft.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_microsoft.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_original.RULE b/src/licensedcode/data/rules/gplcc-1.0_original.RULE index be4cab17ae7..a0a996048bd 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_original.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_original.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_notice: yes +--- + Before filing or continuing to prosecute any legal proceeding or claim (other than a Defensive Action) arising from termination of a Covered License, [Company] commits to extend to the person or entity (“you”) accused of violating the Covered License the following provisions regarding cure and reinstatement, taken from GPL version 3. As used here, the term ‘this License’ refers to the specific Covered License being enforced. 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. diff --git a/src/licensedcode/data/rules/gplcc-1.0_original.yml b/src/licensedcode/data/rules/gplcc-1.0_original.yml deleted file mode 100644 index 8a0238cc706..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_original.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_plain.RULE b/src/licensedcode/data/rules/gplcc-1.0_plain.RULE index 7ca83b52c64..000bed0373c 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_plain.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_plain.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + Before filing or continuing to prosecute any legal proceeding or claim (other than a Defensive Action) arising from termination of a Covered License, [Company] commits to extend to the person or entity (“you”) accused of violating the Covered License the following provisions regarding cure and reinstatement, taken from GPL version 3. As used here, the term ‘this License’ refers to the specific Covered License being enforced. 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. diff --git a/src/licensedcode/data/rules/gplcc-1.0_plain.yml b/src/licensedcode/data/rules/gplcc-1.0_plain.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_plain.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_pulp.RULE b/src/licensedcode/data/rules/gplcc-1.0_pulp.RULE index 642f119a873..ca86d070ee5 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_pulp.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_pulp.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + Common Cure Rights Commitment, version 1.0 Common Cure Rights Commitment, version 1.0 diff --git a/src/licensedcode/data/rules/gplcc-1.0_pulp.yml b/src/licensedcode/data/rules/gplcc-1.0_pulp.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_pulp.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_pulp2.RULE b/src/licensedcode/data/rules/gplcc-1.0_pulp2.RULE index bfa237f419b..ff8b32f7a75 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_pulp2.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_pulp2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + Common Cure Rights Commitment, version 1.0 Before filing or continuing to prosecute any legal proceeding or claim @@ -42,4 +47,4 @@ inclusion of this file, including subsidiaries of a corporate contributor. This work is available under a Creative Commons Attribution-ShareAlike -4.0 International license. +4.0 International license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_pulp2.yml b/src/licensedcode/data/rules/gplcc-1.0_pulp2.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_pulp2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_redhat_original.RULE b/src/licensedcode/data/rules/gplcc-1.0_redhat_original.RULE index ad49e850599..47f1a948ffb 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_redhat_original.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_redhat_original.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + Our Commitment Before filing or continuing to prosecute any legal proceeding or claim (other than a Defensive Action) arising from termination of a Covered License, Red Hat commits to extend to the person or entity (“you”) accused of violating the Covered License the following provisions regarding cure and reinstatement, taken from GPL version 3. As used here, the term ‘this License’ refers to the specific Covered License being enforced. diff --git a/src/licensedcode/data/rules/gplcc-1.0_redhat_original.yml b/src/licensedcode/data/rules/gplcc-1.0_redhat_original.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_redhat_original.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_renamed_gplcc-1.0_1.RULE b/src/licensedcode/data/rules/gplcc-1.0_renamed_gplcc-1.0_1.RULE index 8bd39c49866..392ddcf99b6 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_renamed_gplcc-1.0_1.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_renamed_gplcc-1.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0 +--- + Common Cure Rights Commitment Version 1.0 @@ -43,5 +50,4 @@ inclusion of this file, including subsidiaries of a corporate contributor. This work is available under a Creative Commons Attribution-ShareAlike -4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). - +4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_renamed_gplcc-1.0_1.yml b/src/licensedcode/data/rules/gplcc-1.0_renamed_gplcc-1.0_1.yml deleted file mode 100644 index debe8201eca..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_renamed_gplcc-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes -ignorable_urls: - - https://creativecommons.org/licenses/by-sa/4.0 diff --git a/src/licensedcode/data/rules/gplcc-1.0_suse.RULE b/src/licensedcode/data/rules/gplcc-1.0_suse.RULE index bade590f832..adcb20849de 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_suse.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_suse.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_notice: yes +--- + GPL Statement Our Commitment @@ -18,4 +23,4 @@ Definitions 'Defensive Action' means a legal proceeding or claim that SUSE brings against you in response to a prior proceeding or claim initiated by you or your affiliate. -'SUSE' means SUSE LLC. +'SUSE' means SUSE LLC. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_suse.yml b/src/licensedcode/data/rules/gplcc-1.0_suse.yml deleted file mode 100644 index 8a0238cc706..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_suse.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_template.RULE b/src/licensedcode/data/rules/gplcc-1.0_template.RULE index f3faead0531..568d681f7dd 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_template.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_template.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + Our Commitment Before filing or continuing to prosecute any legal proceeding or claim diff --git a/src/licensedcode/data/rules/gplcc-1.0_template.yml b/src/licensedcode/data/rules/gplcc-1.0_template.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_template.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_template2.RULE b/src/licensedcode/data/rules/gplcc-1.0_template2.RULE index 295b9128d1e..d9a4a15d2dc 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_template2.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_template2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gplcc-1.0 +is_license_text: yes +--- + The following text may be used as a template by your company to support the GPL Cooperation Commitment: Our Commitment diff --git a/src/licensedcode/data/rules/gplcc-1.0_template2.yml b/src/licensedcode/data/rules/gplcc-1.0_template2.yml deleted file mode 100644 index ed488d41134..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_template2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gplcc-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/gplcc-1.0_url_1.RULE b/src/licensedcode/data/rules/gplcc-1.0_url_1.RULE index e32d2f1d364..a529be18fa2 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-cc-1.0 +--- + https://spdx.org/licenses/gpl-cc-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_url_1.yml b/src/licensedcode/data/rules/gplcc-1.0_url_1.yml deleted file mode 100644 index 0693ac1cb25..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-cc-1.0 diff --git a/src/licensedcode/data/rules/gplcc-1.0_url_2.RULE b/src/licensedcode/data/rules/gplcc-1.0_url_2.RULE index b09caf93ea1..d9af87ceffd 100644 --- a/src/licensedcode/data/rules/gplcc-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/gplcc-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gplcc-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gpl-cc-1.0.html +--- + https://spdx.org/licenses/gpl-cc-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gplcc-1.0_url_2.yml b/src/licensedcode/data/rules/gplcc-1.0_url_2.yml deleted file mode 100644 index 921dbb62bdd..00000000000 --- a/src/licensedcode/data/rules/gplcc-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gplcc-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gpl-cc-1.0.html diff --git a/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_1.RULE index 2ab37ac5155..6375b674527 100644 --- a/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: greg-roelofs OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_authors: + - Greg Roelofs and contributors +--- + This software is provided "as is," without warranty of any kind, express or implied. In no event shall the author or contributors be held liable for any damages arising in any way from the use of @@ -41,4 +49,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 422d227c401..00000000000 --- a/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: greg-roelofs OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_authors: - - Greg Roelofs and contributors diff --git a/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_2.RULE index fa52d5c7d5f..9689eaccea7 100644 --- a/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: greg-roelofs OR gpl-2.0-plus +is_license_reference: yes +relevance: 90 +--- + LICENSE terms of distribution and reuse (BSD-like or GNU GPL) -COPYING GNU General Public License (GPL) +COPYING GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_2.yml deleted file mode 100644 index a09130c5b9c..00000000000 --- a/src/licensedcode/data/rules/greg-roelofs_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: greg-roelofs OR gpl-2.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/gregory-pietsch_1.RULE b/src/licensedcode/data/rules/gregory-pietsch_1.RULE index 671bc909521..8777c5babc1 100644 --- a/src/licensedcode/data/rules/gregory-pietsch_1.RULE +++ b/src/licensedcode/data/rules/gregory-pietsch_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gregory-pietsch +is_license_text: yes +--- + This file and the accompanying getopt.h header file are hereby placed in the public domain without restrictions. Just give the author credit, don't -claim you wrote it or prevent anyone else from using it. +claim you wrote it or prevent anyone else from using it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gregory-pietsch_1.yml b/src/licensedcode/data/rules/gregory-pietsch_1.yml deleted file mode 100644 index 3812728a23a..00000000000 --- a/src/licensedcode/data/rules/gregory-pietsch_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gregory-pietsch -is_license_text: yes diff --git a/src/licensedcode/data/rules/gsoap-1.3b_1.RULE b/src/licensedcode/data/rules/gsoap-1.3b_1.RULE index 171b1c32ced..bf88de5a348 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_1.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +minimum_coverage: 50 +ignorable_copyrights: + - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. +ignorable_holders: + - Robert A. van Engelen, Genivia inc. +ignorable_authors: + - Robert A. van Engelen +ignorable_urls: + - http://www.cs.fsu.edu/ +--- + "The contents of this file are subject to the gSOAP Public License Version 1.3 (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.cs.fsu.edu/ engelen/soaplicense.html Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. diff --git a/src/licensedcode/data/rules/gsoap-1.3b_1.yml b/src/licensedcode/data/rules/gsoap-1.3b_1.yml deleted file mode 100644 index 713c08ad2a1..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -minimum_coverage: 50 -ignorable_copyrights: - - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. -ignorable_holders: - - Robert A. van Engelen, Genivia inc. -ignorable_authors: - - Robert A. van Engelen -ignorable_urls: - - http://www.cs.fsu.edu/ diff --git a/src/licensedcode/data/rules/gsoap-1.3b_10.RULE b/src/licensedcode/data/rules/gsoap-1.3b_10.RULE index 5907bf9795d..1e9aeef7ef4 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_10.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_10.RULE @@ -1 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: gSOAP-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_10.yml b/src/licensedcode/data/rules/gsoap-1.3b_10.yml deleted file mode 100644 index 3a8553ed410..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gsoap-1.3b -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gsoap-1.3b_11.RULE b/src/licensedcode/data/rules/gsoap-1.3b_11.RULE index f265009129f..85d879aeeff 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_11.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_11.RULE @@ -1 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: gSOAP Public License v1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_11.yml b/src/licensedcode/data/rules/gsoap-1.3b_11.yml deleted file mode 100644 index 3a8553ed410..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gsoap-1.3b -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gsoap-1.3b_12.RULE b/src/licensedcode/data/rules/gsoap-1.3b_12.RULE index 284f7204c8f..cadd12343e3 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_12.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_12.RULE @@ -1 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: gSOAP-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_12.yml b/src/licensedcode/data/rules/gsoap-1.3b_12.yml deleted file mode 100644 index 3a8553ed410..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gsoap-1.3b -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gsoap-1.3b_13.RULE b/src/licensedcode/data/rules/gsoap-1.3b_13.RULE index e0c31139468..204b400803b 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_13.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_13.RULE @@ -1 +1,9 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/gSOAP-1.3b +--- + https://licenses.nuget.org/gSOAP-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_13.yml b/src/licensedcode/data/rules/gsoap-1.3b_13.yml deleted file mode 100644 index 5a7e48900f7..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/gSOAP-1.3b diff --git a/src/licensedcode/data/rules/gsoap-1.3b_14.RULE b/src/licensedcode/data/rules/gsoap-1.3b_14.RULE index 95f5b164008..6349ccf37d8 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_14.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_14.RULE @@ -1 +1,7 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/gSOAP-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_14.yml b/src/licensedcode/data/rules/gsoap-1.3b_14.yml deleted file mode 100644 index ac6f8015808..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gsoap-1.3b_15.RULE b/src/licensedcode/data/rules/gsoap-1.3b_15.RULE index f3a9a1418cb..d2bb9e3e3ff 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_15.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_15.RULE @@ -1 +1,9 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/gSOAP-1.3b +--- + {{gSOAP-1.3b}} https://spdx.org/licenses/gSOAP-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_15.yml b/src/licensedcode/data/rules/gsoap-1.3b_15.yml deleted file mode 100644 index 722292286fe..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/gSOAP-1.3b diff --git a/src/licensedcode/data/rules/gsoap-1.3b_16.RULE b/src/licensedcode/data/rules/gsoap-1.3b_16.RULE index e9e843ecd74..eb4d5a6238b 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_16.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_16.RULE @@ -1 +1,9 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/gSOAP-1.3b +--- + LICENSE {{gSOAP-1.3b}} https://spdx.org/licenses/gSOAP-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_16.yml b/src/licensedcode/data/rules/gsoap-1.3b_16.yml deleted file mode 100644 index 722292286fe..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/gSOAP-1.3b diff --git a/src/licensedcode/data/rules/gsoap-1.3b_2.RULE b/src/licensedcode/data/rules/gsoap-1.3b_2.RULE index 35df42889ee..47e5cd9b409 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_2.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gsoap-1.3b +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. +ignorable_holders: + - Robert A. van Engelen, Genivia inc. +ignorable_authors: + - Robert A. van Engelen +ignorable_urls: + - http://www.cs.fsu.edu/~engelen/soaplicense.html +--- + gSOAP Public License Version 1.3b The gSOAP public license is derived from the Mozilla Public License (MPL1.1). The sections that were deleted from the original MPL1.1 text are 1.0.1, 2.1.(c),(d), 2.2.(c),(d), 8.2.(b), 10, and 11. Section 3.8 was added. The modified sections are 2.1.(b), 2.2.(b), 3.2 (simplified), 3.5 (deleted the last sentence), and 3.6 (simplified). @@ -155,4 +168,4 @@ Contributor(s): EXHIBIT B. "Part of the software embedded in this product is gSOAP software. Portions created by gSOAP are Copyright (C) 2001-2004 Robert A. van Engelen, Genivia inc. All Rights Reserved. -THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY GENIVIA INC 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 +THE SOFTWARE IN THIS PRODUCT WAS IN PART PROVIDED BY GENIVIA INC 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/gsoap-1.3b_2.yml b/src/licensedcode/data/rules/gsoap-1.3b_2.yml deleted file mode 100644 index abc3f9e6749..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gsoap-1.3b -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2001-2004 Robert A. van Engelen, Genivia inc. -ignorable_holders: - - Robert A. van Engelen, Genivia inc. -ignorable_authors: - - Robert A. van Engelen -ignorable_urls: - - http://www.cs.fsu.edu/~engelen/soaplicense.html diff --git a/src/licensedcode/data/rules/gsoap-1.3b_3.RULE b/src/licensedcode/data/rules/gsoap-1.3b_3.RULE index b257155d5ca..946062e74bc 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_3.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_notice: yes +ignorable_urls: + - http://www.cs.fsu.edu/~engelen/soaplicense.html +--- + gSOAP public license. The contents of this file are subject to the gSOAP Public License Version 1.3 diff --git a/src/licensedcode/data/rules/gsoap-1.3b_3.yml b/src/licensedcode/data/rules/gsoap-1.3b_3.yml deleted file mode 100644 index 6c77bf926f3..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gsoap-1.3b -is_license_notice: yes -ignorable_urls: - - http://www.cs.fsu.edu/~engelen/soaplicense.html diff --git a/src/licensedcode/data/rules/gsoap-1.3b_4.RULE b/src/licensedcode/data/rules/gsoap-1.3b_4.RULE index 264641d3dc4..ae485d39b47 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_4.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_4.RULE @@ -1 +1,7 @@ -gSOAP public license. +--- +license_expression: gsoap-1.3b +is_license_reference: yes +relevance: 99 +--- + +gSOAP public license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_4.yml b/src/licensedcode/data/rules/gsoap-1.3b_4.yml deleted file mode 100644 index 4e61459acaf..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/gsoap-1.3b_5.RULE b/src/licensedcode/data/rules/gsoap-1.3b_5.RULE index abee489bbdb..f3fc1e530be 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_5.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_5.RULE @@ -1 +1,9 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cs.fsu.edu/~engelen/license.html +--- + http://www.cs.fsu.edu/~engelen/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_5.yml b/src/licensedcode/data/rules/gsoap-1.3b_5.yml deleted file mode 100644 index ab6fd541c3f..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cs.fsu.edu/~engelen/license.html diff --git a/src/licensedcode/data/rules/gsoap-1.3b_6.RULE b/src/licensedcode/data/rules/gsoap-1.3b_6.RULE index 570cbb5cf09..92d2637b6a3 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_6.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_6.RULE @@ -1 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + gSOAP Public License v1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_6.yml b/src/licensedcode/data/rules/gsoap-1.3b_6.yml deleted file mode 100644 index c44c733109e..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gsoap-1.3b_7.RULE b/src/licensedcode/data/rules/gsoap-1.3b_7.RULE index 69231cb3c1e..385620aaa8f 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_7.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_7.RULE @@ -1 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: gSOAP Public License v1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_7.yml b/src/licensedcode/data/rules/gsoap-1.3b_7.yml deleted file mode 100644 index c44c733109e..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gsoap-1.3b_8.RULE b/src/licensedcode/data/rules/gsoap-1.3b_8.RULE index 7691f10b62f..cc10f69d572 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_8.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_8.RULE @@ -1 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + gSOAP-1.3b gSOAP Public License v1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_8.yml b/src/licensedcode/data/rules/gsoap-1.3b_8.yml deleted file mode 100644 index c44c733109e..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gsoap-1.3b_9.RULE b/src/licensedcode/data/rules/gsoap-1.3b_9.RULE index cefb5e38bb3..c8520529ddc 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_9.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_9.RULE @@ -1 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + gSOAP Public License v1.3b gSOAP-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_9.yml b/src/licensedcode/data/rules/gsoap-1.3b_9.yml deleted file mode 100644 index c44c733109e..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/gsoap-1.3b_url_1.RULE b/src/licensedcode/data/rules/gsoap-1.3b_url_1.RULE index 7c4f4445b3e..2cf55f70295 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_url_1.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gsoap-1.3b +--- + https://spdx.org/licenses/gsoap-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_url_1.yml b/src/licensedcode/data/rules/gsoap-1.3b_url_1.yml deleted file mode 100644 index aa9375d7e11..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gsoap-1.3b diff --git a/src/licensedcode/data/rules/gsoap-1.3b_url_2.RULE b/src/licensedcode/data/rules/gsoap-1.3b_url_2.RULE index 2ccaeb2a493..77d2357ca78 100644 --- a/src/licensedcode/data/rules/gsoap-1.3b_url_2.RULE +++ b/src/licensedcode/data/rules/gsoap-1.3b_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/gsoap-1.3b.html +--- + https://spdx.org/licenses/gsoap-1.3b.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gsoap-1.3b_url_2.yml b/src/licensedcode/data/rules/gsoap-1.3b_url_2.yml deleted file mode 100644 index 5d006da7d40..00000000000 --- a/src/licensedcode/data/rules/gsoap-1.3b_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/gsoap-1.3b.html diff --git a/src/licensedcode/data/rules/guile-exception-2.0_1.RULE b/src/licensedcode/data/rules/guile-exception-2.0_1.RULE index c7ef8794bd6..5e5fece2489 100644 --- a/src/licensedcode/data/rules/guile-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/guile-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH guile-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -26,4 +33,4 @@ must delete this exception notice from them. If you write modifications of your own for GUILE, it is your choice whether to permit this exception to apply to your modifications. If you do not wish - that, delete this exception notice. + that, delete this exception notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/guile-exception-2.0_1.yml b/src/licensedcode/data/rules/guile-exception-2.0_1.yml deleted file mode 100644 index 0d4db9dae07..00000000000 --- a/src/licensedcode/data/rules/guile-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH guile-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/gust-font-1.0.RULE b/src/licensedcode/data/rules/gust-font-1.0.RULE index 8d95f7a95e3..a21eefcb942 100644 --- a/src/licensedcode/data/rules/gust-font-1.0.RULE +++ b/src/licensedcode/data/rules/gust-font-1.0.RULE @@ -1 +1,12 @@ +--- +license_expression: gust-font-1.0 +is_license_reference: yes +relevance: 100 +notes: see http://www.gust.org.pl/projects/e-foundry/licenses GUST Font License The GUST font + license (GFL) is legally identical to the LaTeX Project Public License (LPPL), version 1.3c + or later, but please observe its additional but not legally binding clause. Some font families + developed by the GUST e-foundry are released under this license. It is intended to do so + for all GUST e-foundry products. +--- + gust font license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gust-font-1.0.yml b/src/licensedcode/data/rules/gust-font-1.0.yml deleted file mode 100644 index 1d45bfcf61a..00000000000 --- a/src/licensedcode/data/rules/gust-font-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: gust-font-1.0 -is_license_reference: yes -relevance: 100 -notes: see http://www.gust.org.pl/projects/e-foundry/licenses GUST Font License The GUST font - license (GFL) is legally identical to the LaTeX Project Public License (LPPL), version 1.3c - or later, but please observe its additional but not legally binding clause. Some font families - developed by the GUST e-foundry are released under this license. It is intended to do so - for all GUST e-foundry products. diff --git a/src/licensedcode/data/rules/gutenberg-2020_1.RULE b/src/licensedcode/data/rules/gutenberg-2020_1.RULE index 1a7d472b1b1..290f2086f5c 100644 --- a/src/licensedcode/data/rules/gutenberg-2020_1.RULE +++ b/src/licensedcode/data/rules/gutenberg-2020_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gutenberg-2020 +is_license_reference: yes +relevance: 100 +--- + Project Gutenberg License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gutenberg-2020_1.yml b/src/licensedcode/data/rules/gutenberg-2020_1.yml deleted file mode 100644 index 39e112f1843..00000000000 --- a/src/licensedcode/data/rules/gutenberg-2020_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gutenberg-2020 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/gutenberg-2020_2.RULE b/src/licensedcode/data/rules/gutenberg-2020_2.RULE index 3456130b3e9..9b92f933f89 100644 --- a/src/licensedcode/data/rules/gutenberg-2020_2.RULE +++ b/src/licensedcode/data/rules/gutenberg-2020_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gutenberg-2020 +is_license_notice: yes +ignorable_urls: + - http://www.gutenberg.org/ +--- + This code bundles book text files used for testing purposes which contain the following header: diff --git a/src/licensedcode/data/rules/gutenberg-2020_2.yml b/src/licensedcode/data/rules/gutenberg-2020_2.yml deleted file mode 100644 index f521d312b4f..00000000000 --- a/src/licensedcode/data/rules/gutenberg-2020_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gutenberg-2020 -is_license_notice: yes -ignorable_urls: - - http://www.gutenberg.org/ diff --git a/src/licensedcode/data/rules/gutenberg-2020_3.RULE b/src/licensedcode/data/rules/gutenberg-2020_3.RULE index 6c254abaace..acd44dca345 100644 --- a/src/licensedcode/data/rules/gutenberg-2020_3.RULE +++ b/src/licensedcode/data/rules/gutenberg-2020_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gutenberg-2020 +is_license_notice: yes +ignorable_urls: + - http://www.gutenberg.org/ +--- + This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included diff --git a/src/licensedcode/data/rules/gutenberg-2020_3.yml b/src/licensedcode/data/rules/gutenberg-2020_3.yml deleted file mode 100644 index f521d312b4f..00000000000 --- a/src/licensedcode/data/rules/gutenberg-2020_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gutenberg-2020 -is_license_notice: yes -ignorable_urls: - - http://www.gutenberg.org/ diff --git a/src/licensedcode/data/rules/h2-1.0_or_epl-1.0.RULE b/src/licensedcode/data/rules/h2-1.0_or_epl-1.0.RULE index cdaf4dda9e1..7aa339f7bb0 100644 --- a/src/licensedcode/data/rules/h2-1.0_or_epl-1.0.RULE +++ b/src/licensedcode/data/rules/h2-1.0_or_epl-1.0.RULE @@ -1,3 +1,11 @@ +--- +license_expression: h2-1.0 OR epl-1.0 +is_license_notice: yes +minimum_coverage: 98 +ignorable_urls: + - http://h2database.com/html/license.html +--- + H2 License - Version 1.0 @@ -151,5 +159,4 @@ Exhibit A Multiple-Licensed under the H2 License, Version 1.0, and under the Eclipse Public License, Version 1.0 (http://h2database.com/html/license.html). -Initial Developer: H2 Group - +Initial Developer: H2 Group \ No newline at end of file diff --git a/src/licensedcode/data/rules/h2-1.0_or_epl-1.0.yml b/src/licensedcode/data/rules/h2-1.0_or_epl-1.0.yml deleted file mode 100644 index 6b787e93a13..00000000000 --- a/src/licensedcode/data/rules/h2-1.0_or_epl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: h2-1.0 OR epl-1.0 -is_license_notice: yes -minimum_coverage: 98 -ignorable_urls: - - http://h2database.com/html/license.html diff --git a/src/licensedcode/data/rules/h2-1.0_or_epl-1.0_2.RULE b/src/licensedcode/data/rules/h2-1.0_or_epl-1.0_2.RULE index 2b905e01d00..fd3adb9fb44 100644 --- a/src/licensedcode/data/rules/h2-1.0_or_epl-1.0_2.RULE +++ b/src/licensedcode/data/rules/h2-1.0_or_epl-1.0_2.RULE @@ -1,4 +1,11 @@ +--- +license_expression: h2-1.0 OR epl-1.0 +is_license_notice: yes +minimum_coverage: 98 +ignorable_urls: + - http://h2database.com/html/license.html +--- + Multiple-Licensed under the H2 License, Version 1.0, and under the Eclipse Public License, Version 1.0 -(http://h2database.com/html/license.html). - +(http://h2database.com/html/license.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/h2-1.0_or_epl-1.0_2.yml b/src/licensedcode/data/rules/h2-1.0_or_epl-1.0_2.yml deleted file mode 100644 index 6b787e93a13..00000000000 --- a/src/licensedcode/data/rules/h2-1.0_or_epl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: h2-1.0 OR epl-1.0 -is_license_notice: yes -minimum_coverage: 98 -ignorable_urls: - - http://h2database.com/html/license.html diff --git a/src/licensedcode/data/rules/hacos-1.2.RULE b/src/licensedcode/data/rules/hacos-1.2.RULE index 54c692058c9..489c1671949 100644 --- a/src/licensedcode/data/rules/hacos-1.2.RULE +++ b/src/licensedcode/data/rules/hacos-1.2.RULE @@ -1 +1,9 @@ +--- +license_expression: hacos-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 +--- + https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hacos-1.2.yml b/src/licensedcode/data/rules/hacos-1.2.yml deleted file mode 100644 index 1c14e1de10b..00000000000 --- a/src/licensedcode/data/rules/hacos-1.2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hacos-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://sourceforge.net/project/shownotes.php?group_id=123700&release_id=291669 diff --git a/src/licensedcode/data/rules/happy-bunny_1.RULE b/src/licensedcode/data/rules/happy-bunny_1.RULE index 8af8544c7d9..331147f2ce4 100644 --- a/src/licensedcode/data/rules/happy-bunny_1.RULE +++ b/src/licensedcode/data/rules/happy-bunny_1.RULE @@ -1 +1,7 @@ +--- +license_expression: happy-bunny +is_license_reference: yes +relevance: 100 +--- + The Happy Bunny License (Modified MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/happy-bunny_1.yml b/src/licensedcode/data/rules/happy-bunny_1.yml deleted file mode 100644 index 3415eb2b3f6..00000000000 --- a/src/licensedcode/data/rules/happy-bunny_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: happy-bunny -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/haskell-report_1.RULE b/src/licensedcode/data/rules/haskell-report_1.RULE index 99699834eda..fb297fa0c21 100644 --- a/src/licensedcode/data/rules/haskell-report_1.RULE +++ b/src/licensedcode/data/rules/haskell-report_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: haskell-report +is_license_notice: yes +relevance: 100 +--- + Haskell 2010", is distributed under the following license: The authors intend this Report to belong to the entire Haskell community, diff --git a/src/licensedcode/data/rules/haskell-report_1.yml b/src/licensedcode/data/rules/haskell-report_1.yml deleted file mode 100644 index edbc5dd5b5a..00000000000 --- a/src/licensedcode/data/rules/haskell-report_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: haskell-report -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/haskell-report_10.RULE b/src/licensedcode/data/rules/haskell-report_10.RULE index 04294508a75..53136d479da 100644 --- a/src/licensedcode/data/rules/haskell-report_10.RULE +++ b/src/licensedcode/data/rules/haskell-report_10.RULE @@ -1 +1,9 @@ +--- +license_expression: haskell-report +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + HaskellReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_10.yml b/src/licensedcode/data/rules/haskell-report_10.yml deleted file mode 100644 index d1d4a3f0886..00000000000 --- a/src/licensedcode/data/rules/haskell-report_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/haskell-report_11.RULE b/src/licensedcode/data/rules/haskell-report_11.RULE index 784aa6b6224..69c4c9c7626 100644 --- a/src/licensedcode/data/rules/haskell-report_11.RULE +++ b/src/licensedcode/data/rules/haskell-report_11.RULE @@ -1 +1,9 @@ +--- +license_expression: haskell-report +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/HaskellReport +--- + https://licenses.nuget.org/HaskellReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_11.yml b/src/licensedcode/data/rules/haskell-report_11.yml deleted file mode 100644 index d088c90c580..00000000000 --- a/src/licensedcode/data/rules/haskell-report_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/HaskellReport diff --git a/src/licensedcode/data/rules/haskell-report_12.RULE b/src/licensedcode/data/rules/haskell-report_12.RULE index 6e53adacf21..08421e2e443 100644 --- a/src/licensedcode/data/rules/haskell-report_12.RULE +++ b/src/licensedcode/data/rules/haskell-report_12.RULE @@ -1 +1,7 @@ +--- +license_expression: haskell-report +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/HaskellReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_12.yml b/src/licensedcode/data/rules/haskell-report_12.yml deleted file mode 100644 index 0778ae3800b..00000000000 --- a/src/licensedcode/data/rules/haskell-report_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/haskell-report_13.RULE b/src/licensedcode/data/rules/haskell-report_13.RULE index 5a1edf31ba1..4e6567e6f48 100644 --- a/src/licensedcode/data/rules/haskell-report_13.RULE +++ b/src/licensedcode/data/rules/haskell-report_13.RULE @@ -1 +1,9 @@ +--- +license_expression: haskell-report +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/HaskellReport +--- + LICENSE {{HaskellReport}} https://spdx.org/licenses/HaskellReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_13.yml b/src/licensedcode/data/rules/haskell-report_13.yml deleted file mode 100644 index efcc68ab6e8..00000000000 --- a/src/licensedcode/data/rules/haskell-report_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/HaskellReport diff --git a/src/licensedcode/data/rules/haskell-report_14.RULE b/src/licensedcode/data/rules/haskell-report_14.RULE index 048cdbeb1cf..a74fc92f4e7 100644 --- a/src/licensedcode/data/rules/haskell-report_14.RULE +++ b/src/licensedcode/data/rules/haskell-report_14.RULE @@ -1 +1,9 @@ +--- +license_expression: haskell-report +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/HaskellReport +--- + {{HaskellReport}} https://spdx.org/licenses/HaskellReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_14.yml b/src/licensedcode/data/rules/haskell-report_14.yml deleted file mode 100644 index efcc68ab6e8..00000000000 --- a/src/licensedcode/data/rules/haskell-report_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/HaskellReport diff --git a/src/licensedcode/data/rules/haskell-report_2.RULE b/src/licensedcode/data/rules/haskell-report_2.RULE index ea6e0e78e27..244c854d4c3 100644 --- a/src/licensedcode/data/rules/haskell-report_2.RULE +++ b/src/licensedcode/data/rules/haskell-report_2.RULE @@ -1 +1,7 @@ +--- +license_expression: haskell-report +is_license_notice: yes +relevance: 100 +--- + Haskell 2010", is distributed under the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_2.yml b/src/licensedcode/data/rules/haskell-report_2.yml deleted file mode 100644 index edbc5dd5b5a..00000000000 --- a/src/licensedcode/data/rules/haskell-report_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: haskell-report -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/haskell-report_3.RULE b/src/licensedcode/data/rules/haskell-report_3.RULE index 48aa3f36d53..9ea9d07cbfe 100644 --- a/src/licensedcode/data/rules/haskell-report_3.RULE +++ b/src/licensedcode/data/rules/haskell-report_3.RULE @@ -1 +1,10 @@ +--- +license_expression: haskell-report +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Haskell Language Report License \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_3.yml b/src/licensedcode/data/rules/haskell-report_3.yml deleted file mode 100644 index 17a9a01ced0..00000000000 --- a/src/licensedcode/data/rules/haskell-report_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/haskell-report_4.RULE b/src/licensedcode/data/rules/haskell-report_4.RULE index 317643ede63..011e2f95bea 100644 --- a/src/licensedcode/data/rules/haskell-report_4.RULE +++ b/src/licensedcode/data/rules/haskell-report_4.RULE @@ -1 +1,10 @@ +--- +license_expression: haskell-report +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Haskell Language Report License \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_4.yml b/src/licensedcode/data/rules/haskell-report_4.yml deleted file mode 100644 index 17a9a01ced0..00000000000 --- a/src/licensedcode/data/rules/haskell-report_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/haskell-report_5.RULE b/src/licensedcode/data/rules/haskell-report_5.RULE index 3475e0cb8b4..c5a00cf5b18 100644 --- a/src/licensedcode/data/rules/haskell-report_5.RULE +++ b/src/licensedcode/data/rules/haskell-report_5.RULE @@ -1 +1,10 @@ +--- +license_expression: haskell-report +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + HaskellReport Haskell Language Report License \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_5.yml b/src/licensedcode/data/rules/haskell-report_5.yml deleted file mode 100644 index 17a9a01ced0..00000000000 --- a/src/licensedcode/data/rules/haskell-report_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/haskell-report_6.RULE b/src/licensedcode/data/rules/haskell-report_6.RULE index 287ac9eafaf..f7c44c284c4 100644 --- a/src/licensedcode/data/rules/haskell-report_6.RULE +++ b/src/licensedcode/data/rules/haskell-report_6.RULE @@ -1 +1,10 @@ +--- +license_expression: haskell-report +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Haskell Language Report License HaskellReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_6.yml b/src/licensedcode/data/rules/haskell-report_6.yml deleted file mode 100644 index 17a9a01ced0..00000000000 --- a/src/licensedcode/data/rules/haskell-report_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/haskell-report_7.RULE b/src/licensedcode/data/rules/haskell-report_7.RULE index 8d986876836..7ce565d2478 100644 --- a/src/licensedcode/data/rules/haskell-report_7.RULE +++ b/src/licensedcode/data/rules/haskell-report_7.RULE @@ -1 +1,10 @@ +--- +license_expression: haskell-report +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: HaskellReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_7.yml b/src/licensedcode/data/rules/haskell-report_7.yml deleted file mode 100644 index 70a5244fdc3..00000000000 --- a/src/licensedcode/data/rules/haskell-report_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: haskell-report -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/haskell-report_8.RULE b/src/licensedcode/data/rules/haskell-report_8.RULE index a7d4cceb55e..29500eee9e4 100644 --- a/src/licensedcode/data/rules/haskell-report_8.RULE +++ b/src/licensedcode/data/rules/haskell-report_8.RULE @@ -1 +1,10 @@ +--- +license_expression: haskell-report +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Haskell Language Report License \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_8.yml b/src/licensedcode/data/rules/haskell-report_8.yml deleted file mode 100644 index 70a5244fdc3..00000000000 --- a/src/licensedcode/data/rules/haskell-report_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: haskell-report -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/haskell-report_9.RULE b/src/licensedcode/data/rules/haskell-report_9.RULE index efc4ab494b5..bc56e7a4d74 100644 --- a/src/licensedcode/data/rules/haskell-report_9.RULE +++ b/src/licensedcode/data/rules/haskell-report_9.RULE @@ -1 +1,10 @@ +--- +license_expression: haskell-report +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: HaskellReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_9.yml b/src/licensedcode/data/rules/haskell-report_9.yml deleted file mode 100644 index 70a5244fdc3..00000000000 --- a/src/licensedcode/data/rules/haskell-report_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: haskell-report -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/haskell-report_url_1.RULE b/src/licensedcode/data/rules/haskell-report_url_1.RULE index 85ba454dcbb..c8bf0827ad0 100644 --- a/src/licensedcode/data/rules/haskell-report_url_1.RULE +++ b/src/licensedcode/data/rules/haskell-report_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: haskell-report +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/haskellreport +--- + https://spdx.org/licenses/haskellreport \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_url_1.yml b/src/licensedcode/data/rules/haskell-report_url_1.yml deleted file mode 100644 index 25b0c284010..00000000000 --- a/src/licensedcode/data/rules/haskell-report_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/haskellreport diff --git a/src/licensedcode/data/rules/haskell-report_url_2.RULE b/src/licensedcode/data/rules/haskell-report_url_2.RULE index 960b421cf3c..92e79fa0db6 100644 --- a/src/licensedcode/data/rules/haskell-report_url_2.RULE +++ b/src/licensedcode/data/rules/haskell-report_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: haskell-report +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/haskellreport.html +--- + https://spdx.org/licenses/haskellreport.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/haskell-report_url_2.yml b/src/licensedcode/data/rules/haskell-report_url_2.yml deleted file mode 100644 index 9d1ef858791..00000000000 --- a/src/licensedcode/data/rules/haskell-report_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: haskell-report -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/haskellreport.html diff --git a/src/licensedcode/data/rules/hdf4_1.RULE b/src/licensedcode/data/rules/hdf4_1.RULE index 0f5665ce65c..c9c76abb50e 100644 --- a/src/licensedcode/data/rules/hdf4_1.RULE +++ b/src/licensedcode/data/rules/hdf4_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: hdf4 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://hdfgroup.org/HDF4/doc/Copyright.html +ignorable_emails: + - help@hdfgroup.org +--- + # This file is part of HDF4. The full HDF4 copyright notice, including # terms governing use, modification, and redistribution, is contained in # the files COPYING and Copyright.html. COPYING can be found at the root @@ -5,4 +15,4 @@ # root level of an installed copy of the electronic HDF4 document set and # is linked from the top-level documents page. It can also be found at # http://hdfgroup.org/HDF4/doc/Copyright.html. If you do not have -# access to either file, you may request a copy from help@hdfgroup.org. +# access to either file, you may request a copy from help@hdfgroup.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hdf4_1.yml b/src/licensedcode/data/rules/hdf4_1.yml deleted file mode 100644 index fefcb369aeb..00000000000 --- a/src/licensedcode/data/rules/hdf4_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: hdf4 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://hdfgroup.org/HDF4/doc/Copyright.html -ignorable_emails: - - help@hdfgroup.org diff --git a/src/licensedcode/data/rules/hdf5_1.RULE b/src/licensedcode/data/rules/hdf5_1.RULE index f05663e7ba5..39c7d2c0a8f 100644 --- a/src/licensedcode/data/rules/hdf5_1.RULE +++ b/src/licensedcode/data/rules/hdf5_1.RULE @@ -1,6 +1,18 @@ +--- +license_expression: hdf5 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://support.hdfgroup.org/ftp/HDF5/releases +ignorable_emails: + - help@hdfgroup.org +--- + * This file is part of HDF5. The full HDF5 copyright notice, including * * terms governing use, modification, and redistribution, is contained in * * the COPYING file, which can be found at the root of the source code * * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * * If you do not have access to either file, you may request a copy from * - * help@hdfgroup.org. \ No newline at end of file + * help@hdfgroup.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hdf5_1.yml b/src/licensedcode/data/rules/hdf5_1.yml deleted file mode 100644 index 3d5ed250669..00000000000 --- a/src/licensedcode/data/rules/hdf5_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: hdf5 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://support.hdfgroup.org/ftp/HDF5/releases -ignorable_emails: - - help@hdfgroup.org diff --git a/src/licensedcode/data/rules/hdf5_2.RULE b/src/licensedcode/data/rules/hdf5_2.RULE index 30b3c651424..dff321235ea 100644 --- a/src/licensedcode/data/rules/hdf5_2.RULE +++ b/src/licensedcode/data/rules/hdf5_2.RULE @@ -1,7 +1,19 @@ +--- +license_expression: hdf5 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://support.hdfgroup.org/ftp/HDF5/releases +ignorable_emails: + - help@hdfgroup.org +--- + The files and subdirectories in this directory are part of HDF5. The full HDF5 copyright notice, including terms governing use, modification, and redistribution, is contained in the COPYING file which can be found at the root of the source code distribution tree or in https://support.hdfgroup.org/ftp/HDF5/releases. If you do not have access to either file, you may request a copy from - help@hdfgroup.org. \ No newline at end of file + help@hdfgroup.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hdf5_2.yml b/src/licensedcode/data/rules/hdf5_2.yml deleted file mode 100644 index 3d5ed250669..00000000000 --- a/src/licensedcode/data/rules/hdf5_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: hdf5 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://support.hdfgroup.org/ftp/HDF5/releases -ignorable_emails: - - help@hdfgroup.org diff --git a/src/licensedcode/data/rules/hdf5_3.RULE b/src/licensedcode/data/rules/hdf5_3.RULE index b36e7ee4fef..f85ef36c66e 100644 --- a/src/licensedcode/data/rules/hdf5_3.RULE +++ b/src/licensedcode/data/rules/hdf5_3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: hdf5 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - Copyright.html +ignorable_urls: + - http://hdfgroup.org/HDF5/doc/Copyright.html +ignorable_emails: + - help@hdfgroup.org +--- + * This file is part of HDF5. The full HDF5 copyright notice, including * * terms governing use, modification, and redistribution, is contained in * * the files COPYING and Copyright.html. COPYING can be found at the root * diff --git a/src/licensedcode/data/rules/hdf5_3.yml b/src/licensedcode/data/rules/hdf5_3.yml deleted file mode 100644 index b8873cee947..00000000000 --- a/src/licensedcode/data/rules/hdf5_3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: hdf5 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - Copyright.html -ignorable_urls: - - http://hdfgroup.org/HDF5/doc/Copyright.html -ignorable_emails: - - help@hdfgroup.org diff --git a/src/licensedcode/data/rules/hdf5_4.RULE b/src/licensedcode/data/rules/hdf5_4.RULE index be36cbce30a..e5fa24077a3 100644 --- a/src/licensedcode/data/rules/hdf5_4.RULE +++ b/src/licensedcode/data/rules/hdf5_4.RULE @@ -1,6 +1,14 @@ +--- +license_expression: hdf5 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://support.hdfgroup.org/ftp/HDF5/releases +--- + $fh " * This file is part of HDF5. The full HDF5 copyright notice, including * "; $fh " * terms governing use, modification, and redistribution, is contained in * "; $fh " * the COPYING file, which can be found at the root of the source code * "; $fh " * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * "; $fh " * If you do not have access to either file, you may request a copy from * "; -$fh " * help\@hdfgroup.org. * "; +$fh " * help\@hdfgroup.org. * "; \ No newline at end of file diff --git a/src/licensedcode/data/rules/hdf5_4.yml b/src/licensedcode/data/rules/hdf5_4.yml deleted file mode 100644 index 7318a61dd4a..00000000000 --- a/src/licensedcode/data/rules/hdf5_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hdf5 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://support.hdfgroup.org/ftp/HDF5/releases diff --git a/src/licensedcode/data/rules/hdf5_and_llnl_1.RULE b/src/licensedcode/data/rules/hdf5_and_llnl_1.RULE index 2535822079a..cb01a872b68 100644 --- a/src/licensedcode/data/rules/hdf5_and_llnl_1.RULE +++ b/src/licensedcode/data/rules/hdf5_and_llnl_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: hdf5 AND llnl +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING_LBNL_HDF5 +--- + LBNL's Copyright Notice and Licensing Terms can be found here: COPYING_LBNL_HDF5 file in this directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/hdf5_and_llnl_1.yml b/src/licensedcode/data/rules/hdf5_and_llnl_1.yml deleted file mode 100644 index f6ae5af7135..00000000000 --- a/src/licensedcode/data/rules/hdf5_and_llnl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hdf5 AND llnl -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING_LBNL_HDF5 diff --git a/src/licensedcode/data/rules/hdparm_1.RULE b/src/licensedcode/data/rules/hdparm_1.RULE index e83491663bb..feaabbe3dd9 100644 --- a/src/licensedcode/data/rules/hdparm_1.RULE +++ b/src/licensedcode/data/rules/hdparm_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: hdparm +is_license_text: yes +relevance: 100 +--- + You may freely use, modify, and redistribute the hdparm program, as either binary or source, or both. The only condition is that my name and copyright notice diff --git a/src/licensedcode/data/rules/hdparm_1.yml b/src/licensedcode/data/rules/hdparm_1.yml deleted file mode 100644 index 2a293738558..00000000000 --- a/src/licensedcode/data/rules/hdparm_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hdparm -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hdparm_2.RULE b/src/licensedcode/data/rules/hdparm_2.RULE index 881b4db5816..6155716c3d1 100644 --- a/src/licensedcode/data/rules/hdparm_2.RULE +++ b/src/licensedcode/data/rules/hdparm_2.RULE @@ -1 +1,7 @@ +--- +license_expression: hdparm +is_license_tag: yes +relevance: 100 +--- + License: hdparm \ No newline at end of file diff --git a/src/licensedcode/data/rules/hdparm_2.yml b/src/licensedcode/data/rules/hdparm_2.yml deleted file mode 100644 index 73064437b41..00000000000 --- a/src/licensedcode/data/rules/hdparm_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hdparm -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/helix.RULE b/src/licensedcode/data/rules/helix.RULE index b92f0a9e37a..20db4f5daa6 100644 --- a/src/licensedcode/data/rules/helix.RULE +++ b/src/licensedcode/data/rules/helix.RULE @@ -1 +1,9 @@ +--- +license_expression: helix +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://helixcommunity.org/beula/ +--- + https://helixcommunity.org/beula/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/helix.yml b/src/licensedcode/data/rules/helix.yml deleted file mode 100644 index 480f17b0ddd..00000000000 --- a/src/licensedcode/data/rules/helix.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: helix -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://helixcommunity.org/beula/ diff --git a/src/licensedcode/data/rules/henry-spencer-1999_1.RULE b/src/licensedcode/data/rules/henry-spencer-1999_1.RULE index 311faf165a9..60eae53f218 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_1.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_1.RULE @@ -1 +1,10 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer License 99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_1.yml b/src/licensedcode/data/rules/henry-spencer-1999_1.yml deleted file mode 100644 index 8a80c9dd5ec..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/henry-spencer-1999_10.RULE b/src/licensedcode/data/rules/henry-spencer-1999_10.RULE index d912510f440..ef39e2076f8 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_10.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_10.RULE @@ -1 +1,9 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Spencer-99 +--- + {{Spencer-99}} https://spdx.org/licenses/Spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_10.yml b/src/licensedcode/data/rules/henry-spencer-1999_10.yml deleted file mode 100644 index 0becffc1a79..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Spencer-99 diff --git a/src/licensedcode/data/rules/henry-spencer-1999_11.RULE b/src/licensedcode/data/rules/henry-spencer-1999_11.RULE index e214084391d..9936404f900 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_11.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_11.RULE @@ -1 +1,9 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Spencer-99 +--- + LICENSE {{Spencer-99}} https://spdx.org/licenses/Spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_11.yml b/src/licensedcode/data/rules/henry-spencer-1999_11.yml deleted file mode 100644 index 0becffc1a79..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Spencer-99 diff --git a/src/licensedcode/data/rules/henry-spencer-1999_2.RULE b/src/licensedcode/data/rules/henry-spencer-1999_2.RULE index 9a0babac337..03cd382a668 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_2.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_2.RULE @@ -1 +1,10 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Spencer License 99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_2.yml b/src/licensedcode/data/rules/henry-spencer-1999_2.yml deleted file mode 100644 index 8a80c9dd5ec..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/henry-spencer-1999_3.RULE b/src/licensedcode/data/rules/henry-spencer-1999_3.RULE index ef0c7353139..a18398f1062 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_3.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_3.RULE @@ -1 +1,10 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer-99 Spencer License 99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_3.yml b/src/licensedcode/data/rules/henry-spencer-1999_3.yml deleted file mode 100644 index 8a80c9dd5ec..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/henry-spencer-1999_4.RULE b/src/licensedcode/data/rules/henry-spencer-1999_4.RULE index 55e91396f91..ea3adc544d8 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_4.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_4.RULE @@ -1 +1,10 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer License 99 Spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_4.yml b/src/licensedcode/data/rules/henry-spencer-1999_4.yml deleted file mode 100644 index 8a80c9dd5ec..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/henry-spencer-1999_5.RULE b/src/licensedcode/data/rules/henry-spencer-1999_5.RULE index e6c2fff1a12..5d5a841f63e 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_5.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_5.RULE @@ -1 +1,10 @@ +--- +license_expression: henry-spencer-1999 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_5.yml b/src/licensedcode/data/rules/henry-spencer-1999_5.yml deleted file mode 100644 index 439078be7f7..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/henry-spencer-1999_6.RULE b/src/licensedcode/data/rules/henry-spencer-1999_6.RULE index d94842c3d39..81ef994bcdf 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_6.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_6.RULE @@ -1 +1,10 @@ +--- +license_expression: henry-spencer-1999 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Spencer License 99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_6.yml b/src/licensedcode/data/rules/henry-spencer-1999_6.yml deleted file mode 100644 index 439078be7f7..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/henry-spencer-1999_7.RULE b/src/licensedcode/data/rules/henry-spencer-1999_7.RULE index 3b04e56b9a0..6e9ab733788 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_7.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_7.RULE @@ -1 +1,10 @@ +--- +license_expression: henry-spencer-1999 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_7.yml b/src/licensedcode/data/rules/henry-spencer-1999_7.yml deleted file mode 100644 index 439078be7f7..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/henry-spencer-1999_8.RULE b/src/licensedcode/data/rules/henry-spencer-1999_8.RULE index 4f5f86fbd02..6d2788d0926 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_8.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_8.RULE @@ -1 +1,9 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Spencer-99 +--- + https://licenses.nuget.org/Spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_8.yml b/src/licensedcode/data/rules/henry-spencer-1999_8.yml deleted file mode 100644 index 1b6ef96ac7d..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Spencer-99 diff --git a/src/licensedcode/data/rules/henry-spencer-1999_9.RULE b/src/licensedcode/data/rules/henry-spencer-1999_9.RULE index 3dd8f2ee7ca..1af21cbb3b2 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_9.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_9.RULE @@ -1 +1,7 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_9.yml b/src/licensedcode/data/rules/henry-spencer-1999_9.yml deleted file mode 100644 index 35b03ab7acd..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/henry-spencer-1999_url_1.RULE b/src/licensedcode/data/rules/henry-spencer-1999_url_1.RULE index abc54f7a14d..a6de8e79c04 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_url_1.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/spencer-99 +--- + https://spdx.org/licenses/spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_url_1.yml b/src/licensedcode/data/rules/henry-spencer-1999_url_1.yml deleted file mode 100644 index 9864a23e697..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/spencer-99 diff --git a/src/licensedcode/data/rules/henry-spencer-1999_url_2.RULE b/src/licensedcode/data/rules/henry-spencer-1999_url_2.RULE index 1c3422c2a96..8923b923e31 100644 --- a/src/licensedcode/data/rules/henry-spencer-1999_url_2.RULE +++ b/src/licensedcode/data/rules/henry-spencer-1999_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/spencer-99.html +--- + https://spdx.org/licenses/spencer-99.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/henry-spencer-1999_url_2.yml b/src/licensedcode/data/rules/henry-spencer-1999_url_2.yml deleted file mode 100644 index 17d8c38e45b..00000000000 --- a/src/licensedcode/data/rules/henry-spencer-1999_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/spencer-99.html diff --git a/src/licensedcode/data/rules/here-proprietary_1.RULE b/src/licensedcode/data/rules/here-proprietary_1.RULE index e68fe838b0c..a4466c90323 100644 --- a/src/licensedcode/data/rules/here-proprietary_1.RULE +++ b/src/licensedcode/data/rules/here-proprietary_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: here-proprietary +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://here.com/ +--- + licenses { license { name 'HERE Proprietary License' diff --git a/src/licensedcode/data/rules/here-proprietary_1.yml b/src/licensedcode/data/rules/here-proprietary_1.yml deleted file mode 100644 index d74c43074b8..00000000000 --- a/src/licensedcode/data/rules/here-proprietary_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: here-proprietary -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://here.com/ diff --git a/src/licensedcode/data/rules/here-proprietary_2.RULE b/src/licensedcode/data/rules/here-proprietary_2.RULE index 72ed4ec17b1..6ae4b057c61 100644 --- a/src/licensedcode/data/rules/here-proprietary_2.RULE +++ b/src/licensedcode/data/rules/here-proprietary_2.RULE @@ -1,4 +1,12 @@ +--- +license_expression: here-proprietary +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://here.com/ +--- + licenses { license { name 'HERE Proprietary License' - url 'https://here.com/' + url 'https://here.com/' \ No newline at end of file diff --git a/src/licensedcode/data/rules/here-proprietary_2.yml b/src/licensedcode/data/rules/here-proprietary_2.yml deleted file mode 100644 index d74c43074b8..00000000000 --- a/src/licensedcode/data/rules/here-proprietary_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: here-proprietary -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://here.com/ diff --git a/src/licensedcode/data/rules/here-proprietary_3.RULE b/src/licensedcode/data/rules/here-proprietary_3.RULE index b6c4f261f22..d71a8cd5a34 100644 --- a/src/licensedcode/data/rules/here-proprietary_3.RULE +++ b/src/licensedcode/data/rules/here-proprietary_3.RULE @@ -1 +1,8 @@ +--- +license_expression: here-proprietary +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + HERE Proprietary License \ No newline at end of file diff --git a/src/licensedcode/data/rules/here-proprietary_3.yml b/src/licensedcode/data/rules/here-proprietary_3.yml deleted file mode 100644 index 4782f10d3f5..00000000000 --- a/src/licensedcode/data/rules/here-proprietary_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: here-proprietary -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/hippocratic-1.1_1.RULE b/src/licensedcode/data/rules/hippocratic-1.1_1.RULE index 2fd0539555d..16b6864baac 100644 --- a/src/licensedcode/data/rules/hippocratic-1.1_1.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.1_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: hippocratic-1.1 +is_license_text: yes +relevance: 99 +minimum_coverage: 60 +ignorable_urls: + - https://www.un.org/en/universal-declaration-human-rights +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/hippocratic-1.1_1.yml b/src/licensedcode/data/rules/hippocratic-1.1_1.yml deleted file mode 100644 index 7eb0a3a5f52..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hippocratic-1.1 -is_license_text: yes -relevance: 99 -minimum_coverage: 60 -ignorable_urls: - - https://www.un.org/en/universal-declaration-human-rights diff --git a/src/licensedcode/data/rules/hippocratic-1.1_2.RULE b/src/licensedcode/data/rules/hippocratic-1.1_2.RULE index d8cd11f68ab..fc806d00139 100644 --- a/src/licensedcode/data/rules/hippocratic-1.1_2.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.1_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: hippocratic-1.1 +is_license_text: yes +relevance: 99 +minimum_coverage: 60 +ignorable_urls: + - https://www.un.org/en/universal-declaration-human-rights +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/hippocratic-1.1_2.yml b/src/licensedcode/data/rules/hippocratic-1.1_2.yml deleted file mode 100644 index 7eb0a3a5f52..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hippocratic-1.1 -is_license_text: yes -relevance: 99 -minimum_coverage: 60 -ignorable_urls: - - https://www.un.org/en/universal-declaration-human-rights diff --git a/src/licensedcode/data/rules/hippocratic-1.1_3.RULE b/src/licensedcode/data/rules/hippocratic-1.1_3.RULE index 90af8f4ab7a..da93fc79e57 100644 --- a/src/licensedcode/data/rules/hippocratic-1.1_3.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.1_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: hippocratic-1.1 +is_license_notice: yes +relevance: 99 +--- + License This project uses the Hippocratic License, and is thus freely available to use for purposes that do not infringe on the United Nations Universal Declaration of Human Rights. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.1_3.yml b/src/licensedcode/data/rules/hippocratic-1.1_3.yml deleted file mode 100644 index 0b9ddcd0d11..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.1 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.1_4.RULE b/src/licensedcode/data/rules/hippocratic-1.1_4.RULE index 57e738aac8a..bb5a63f9fed 100644 --- a/src/licensedcode/data/rules/hippocratic-1.1_4.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.1 +is_license_notice: yes +relevance: 99 +--- + This project uses the Hippocratic License, and is thus freely available to use for purposes that do not infringe on the United Nations Universal Declaration of Human Rights. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.1_4.yml b/src/licensedcode/data/rules/hippocratic-1.1_4.yml deleted file mode 100644 index 0b9ddcd0d11..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.1 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.1_5.RULE b/src/licensedcode/data/rules/hippocratic-1.1_5.RULE index 1b34ec9de48..ac3e2891c39 100644 --- a/src/licensedcode/data/rules/hippocratic-1.1_5.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.1_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: hippocratic-1.1 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - https://firstdonoharm.dev/ +--- + License This project uses the [Hippocratic License](https://firstdonoharm.dev/), and is thus freely diff --git a/src/licensedcode/data/rules/hippocratic-1.1_5.yml b/src/licensedcode/data/rules/hippocratic-1.1_5.yml deleted file mode 100644 index 2eee4feafa6..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.1_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-1.1 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - https://firstdonoharm.dev/ diff --git a/src/licensedcode/data/rules/hippocratic-1.1_6.RULE b/src/licensedcode/data/rules/hippocratic-1.1_6.RULE index 7dc45b6f554..7a703306ba8 100644 --- a/src/licensedcode/data/rules/hippocratic-1.1_6.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.1_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: hippocratic-1.1 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - https://firstdonoharm.dev/ +--- + This project uses the [Hippocratic License](https://firstdonoharm.dev/), and is thus freely available to use for purposes that do not infringe on the United Nations Universal Declaration of Human Rights. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.1_6.yml b/src/licensedcode/data/rules/hippocratic-1.1_6.yml deleted file mode 100644 index 2eee4feafa6..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-1.1 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - https://firstdonoharm.dev/ diff --git a/src/licensedcode/data/rules/hippocratic-1.2_1.RULE b/src/licensedcode/data/rules/hippocratic-1.2_1.RULE index 0bfc5b26989..2965fa496e3 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_1.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_1.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 100 +--- + license = "MIT-Hippocratic-1.2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_1.yml b/src/licensedcode/data/rules/hippocratic-1.2_1.yml deleted file mode 100644 index 32863aeec23..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_10.RULE b/src/licensedcode/data/rules/hippocratic-1.2_10.RULE index 4e51b3e833b..1af029532a4 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_10.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://firstdonoharm.dev/ +--- + Hippocratic License https://firstdonoharm.dev \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_10.yml b/src/licensedcode/data/rules/hippocratic-1.2_10.yml deleted file mode 100644 index aa3fdafdeb5..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://firstdonoharm.dev/ diff --git a/src/licensedcode/data/rules/hippocratic-1.2_11.RULE b/src/licensedcode/data/rules/hippocratic-1.2_11.RULE index 2c9568ef8d6..ac4bc50804a 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_11.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: hippocratic-1.2 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.txt +--- + distributed under the conditions of the Hippocratic License See LICENSE.txt for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_11.yml b/src/licensedcode/data/rules/hippocratic-1.2_11.yml deleted file mode 100644 index 0c9a38d1700..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/hippocratic-1.2_12.RULE b/src/licensedcode/data/rules/hippocratic-1.2_12.RULE index d05146af67d..614ce67d2bc 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_12.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_12.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_notice: yes +relevance: 99 +--- + distributed under the conditions of the Hippocratic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_12.yml b/src/licensedcode/data/rules/hippocratic-1.2_12.yml deleted file mode 100644 index ebf7abfc9bd..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_13.RULE b/src/licensedcode/data/rules/hippocratic-1.2_13.RULE index 070ca0fd346..52b1e0eaa47 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_13.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_13.RULE @@ -1,2 +1,12 @@ +--- +license_expression: hippocratic-1.2 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://firstdonoharm.dev/version/1/2/license.html +--- + distributed under the conditions of the [Hippocratic License](https://firstdonoharm.dev/version/1/2/license.html) - See LICENSE.txt for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_13.yml b/src/licensedcode/data/rules/hippocratic-1.2_13.yml deleted file mode 100644 index bffe74f18c6..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_13.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://firstdonoharm.dev/version/1/2/license.html diff --git a/src/licensedcode/data/rules/hippocratic-1.2_14.RULE b/src/licensedcode/data/rules/hippocratic-1.2_14.RULE index 424a34d0189..1de2d56d572 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_14.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_14.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-1.2 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - https://firstdonoharm.dev/version/1/2/license.html +--- + distributed under the conditions of the [Hippocratic License](https://firstdonoharm.dev/version/1/2/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_14.yml b/src/licensedcode/data/rules/hippocratic-1.2_14.yml deleted file mode 100644 index 4def98ab65f..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - https://firstdonoharm.dev/version/1/2/license.html diff --git a/src/licensedcode/data/rules/hippocratic-1.2_15.RULE b/src/licensedcode/data/rules/hippocratic-1.2_15.RULE index 5dc0093db6e..76112b99149 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_15.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_15.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 99 +--- + licenses = ['MIT (Hippocratic)'] \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_15.yml b/src/licensedcode/data/rules/hippocratic-1.2_15.yml deleted file mode 100644 index 9e5c6439630..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_16.RULE b/src/licensedcode/data/rules/hippocratic-1.2_16.RULE index 3206b1d30d9..7ecb7210d22 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_16.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_16.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 99 +--- + license = ['MIT (Hippocratic)'] \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_16.yml b/src/licensedcode/data/rules/hippocratic-1.2_16.yml deleted file mode 100644 index 9e5c6439630..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_17.RULE b/src/licensedcode/data/rules/hippocratic-1.2_17.RULE index d26b9d85843..cb49f1fdc75 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_17.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_17.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 99 +--- + licences = ['MIT (Hippocratic)'] \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_17.yml b/src/licensedcode/data/rules/hippocratic-1.2_17.yml deleted file mode 100644 index 9e5c6439630..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_18.RULE b/src/licensedcode/data/rules/hippocratic-1.2_18.RULE index 37dbe0a9880..c09d82c402d 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_18.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_18.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 99 +--- + licence = ['MIT (Hippocratic)'] \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_18.yml b/src/licensedcode/data/rules/hippocratic-1.2_18.yml deleted file mode 100644 index 9e5c6439630..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_19.RULE b/src/licensedcode/data/rules/hippocratic-1.2_19.RULE index 9dbf405ba8e..0d8ac8203e0 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_19.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_19.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 99 +--- + = ['MIT (Hippocratic)'] \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_19.yml b/src/licensedcode/data/rules/hippocratic-1.2_19.yml deleted file mode 100644 index 9e5c6439630..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_2.RULE b/src/licensedcode/data/rules/hippocratic-1.2_2.RULE index 35be868d25b..a197dc3d55e 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_2.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 100 +--- + license = "Hippocratic-1.2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_2.yml b/src/licensedcode/data/rules/hippocratic-1.2_2.yml deleted file mode 100644 index 32863aeec23..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_3.RULE b/src/licensedcode/data/rules/hippocratic-1.2_3.RULE index 2d77cb9c248..a82aef2b541 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_3.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 100 +--- + MIT-Hippocratic-1.2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_3.yml b/src/licensedcode/data/rules/hippocratic-1.2_3.yml deleted file mode 100644 index 32863aeec23..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_4.RULE b/src/licensedcode/data/rules/hippocratic-1.2_4.RULE index fe83208fc89..f5dbe6671dd 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_4.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_4.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 100 +--- + Hippocratic-1.2" \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_4.yml b/src/licensedcode/data/rules/hippocratic-1.2_4.yml deleted file mode 100644 index 32863aeec23..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_5.RULE b/src/licensedcode/data/rules/hippocratic-1.2_5.RULE index c3f840a9659..da9edd265fd 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_5.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_5.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 99 +--- + license='Hippocratic', \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_5.yml b/src/licensedcode/data/rules/hippocratic-1.2_5.yml deleted file mode 100644 index 9e5c6439630..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_6.RULE b/src/licensedcode/data/rules/hippocratic-1.2_6.RULE index df6071358c1..8d1b539d0ca 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_6.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_6.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_tag: yes +relevance: 99 +--- + licence='Hippocratic', \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_6.yml b/src/licensedcode/data/rules/hippocratic-1.2_6.yml deleted file mode 100644 index 9e5c6439630..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_7.RULE b/src/licensedcode/data/rules/hippocratic-1.2_7.RULE index 9b563d83210..32f1fcc0f55 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_7.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_7.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_reference: yes +relevance: 100 +--- + Hippocratic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_7.yml b/src/licensedcode/data/rules/hippocratic-1.2_7.yml deleted file mode 100644 index 5371ae3cd7b..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-1.2_8.RULE b/src/licensedcode/data/rules/hippocratic-1.2_8.RULE index 491b3c218b7..cb375cfc5c4 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_8.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://firstdonoharm.dev/ +--- + https://firstdonoharm.dev \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_8.yml b/src/licensedcode/data/rules/hippocratic-1.2_8.yml deleted file mode 100644 index aa3fdafdeb5..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://firstdonoharm.dev/ diff --git a/src/licensedcode/data/rules/hippocratic-1.2_9.RULE b/src/licensedcode/data/rules/hippocratic-1.2_9.RULE index 5df4d03e63b..6a216f84b72 100644 --- a/src/licensedcode/data/rules/hippocratic-1.2_9.RULE +++ b/src/licensedcode/data/rules/hippocratic-1.2_9.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-1.2 +is_license_reference: yes +relevance: 100 +--- + firstdonoharm.dev \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-1.2_9.yml b/src/licensedcode/data/rules/hippocratic-1.2_9.yml deleted file mode 100644 index 5371ae3cd7b..00000000000 --- a/src/licensedcode/data/rules/hippocratic-1.2_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-2.0_1.RULE b/src/licensedcode/data/rules/hippocratic-2.0_1.RULE index 67b117a53c8..13af794281d 100644 --- a/src/licensedcode/data/rules/hippocratic-2.0_1.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-2.0 +is_license_tag: yes +relevance: 100 +--- + license = "MIT-Hippocratic-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.0_1.yml b/src/licensedcode/data/rules/hippocratic-2.0_1.yml deleted file mode 100644 index 5a656476128..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-2.0_2.RULE b/src/licensedcode/data/rules/hippocratic-2.0_2.RULE index e324a5a1780..7688e86d545 100644 --- a/src/licensedcode/data/rules/hippocratic-2.0_2.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-2.0 +is_license_tag: yes +relevance: 100 +--- + license = "Hippocratic-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.0_2.yml b/src/licensedcode/data/rules/hippocratic-2.0_2.yml deleted file mode 100644 index 5a656476128..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_1.RULE b/src/licensedcode/data/rules/hippocratic-2.1_1.RULE index 4c12adf6024..3e14db2aaeb 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_1.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-2.1 +is_license_tag: yes +relevance: 100 +--- + license = "MIT-Hippocratic-2.1" \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_1.yml b/src/licensedcode/data/rules/hippocratic-2.1_1.yml deleted file mode 100644 index da6930c0d30..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_10.RULE b/src/licensedcode/data/rules/hippocratic-2.1_10.RULE index eb261136238..eb6cb756896 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_10.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Hippocratic License 2.1 Hippocratic-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_10.yml b/src/licensedcode/data/rules/hippocratic-2.1_10.yml deleted file mode 100644 index 241cff5b109..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hippocratic-2.1_11.RULE b/src/licensedcode/data/rules/hippocratic-2.1_11.RULE index 205447a8352..e5df90a3f2a 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_11.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: hippocratic-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Hippocratic License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_11.yml b/src/licensedcode/data/rules/hippocratic-2.1_11.yml deleted file mode 100644 index 3762ca22682..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hippocratic-2.1_12.RULE b/src/licensedcode/data/rules/hippocratic-2.1_12.RULE index 8ca9f8b224b..273f206637c 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_12.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: hippocratic-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Hippocratic-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_12.yml b/src/licensedcode/data/rules/hippocratic-2.1_12.yml deleted file mode 100644 index 3762ca22682..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hippocratic-2.1_13.RULE b/src/licensedcode/data/rules/hippocratic-2.1_13.RULE index ab33546fe41..2ece4a7de14 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_13.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Hippocratic-2.1 +--- + https://licenses.nuget.org/Hippocratic-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_13.yml b/src/licensedcode/data/rules/hippocratic-2.1_13.yml deleted file mode 100644 index 60d0fe79869..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Hippocratic-2.1 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_14.RULE b/src/licensedcode/data/rules/hippocratic-2.1_14.RULE index 9b3c62b18f0..9ec345aeb83 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_14.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_14.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Hippocratic-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_14.yml b/src/licensedcode/data/rules/hippocratic-2.1_14.yml deleted file mode 100644 index f7d63be5072..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_15.RULE b/src/licensedcode/data/rules/hippocratic-2.1_15.RULE index 87feca92409..f7ce2a20f3c 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_15.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Hippocratic-2.1 +--- + {{Hippocratic-2.1}} https://spdx.org/licenses/Hippocratic-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_15.yml b/src/licensedcode/data/rules/hippocratic-2.1_15.yml deleted file mode 100644 index 6b0c438057c..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Hippocratic-2.1 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_16.RULE b/src/licensedcode/data/rules/hippocratic-2.1_16.RULE index b1a18b093b0..91415c3c714 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_16.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_16.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Hippocratic-2.1 +--- + LICENSE {{Hippocratic-2.1}} https://spdx.org/licenses/Hippocratic-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_16.yml b/src/licensedcode/data/rules/hippocratic-2.1_16.yml deleted file mode 100644 index 6b0c438057c..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Hippocratic-2.1 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_2.RULE b/src/licensedcode/data/rules/hippocratic-2.1_2.RULE index 756662936c5..8f7597dcbab 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_2.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-2.1 +is_license_tag: yes +relevance: 100 +--- + license = "Hippocratic-2.1" \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_2.yml b/src/licensedcode/data/rules/hippocratic-2.1_2.yml deleted file mode 100644 index da6930c0d30..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_3.RULE b/src/licensedcode/data/rules/hippocratic-2.1_3.RULE index 9499a8b382c..4219c8f56f3 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_3.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://firstdonoharm.dev/version/2/1/license.html +--- + https://firstdonoharm.dev/version/2/1/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_3.yml b/src/licensedcode/data/rules/hippocratic-2.1_3.yml deleted file mode 100644 index 539f33e58ed..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://firstdonoharm.dev/version/2/1/license.html diff --git a/src/licensedcode/data/rules/hippocratic-2.1_4.RULE b/src/licensedcode/data/rules/hippocratic-2.1_4.RULE index 825928d7b19..b18d830fd26 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_4.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +--- + The Hippocratic License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_4.yml b/src/licensedcode/data/rules/hippocratic-2.1_4.yml deleted file mode 100644 index f7d63be5072..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_5.RULE b/src/licensedcode/data/rules/hippocratic-2.1_5.RULE index 38ce169fe7f..0a82bab83b0 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_5.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_5.RULE @@ -1 +1,7 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +--- + Hippocratic License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_5.yml b/src/licensedcode/data/rules/hippocratic-2.1_5.yml deleted file mode 100644 index f7d63be5072..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_6.RULE b/src/licensedcode/data/rules/hippocratic-2.1_6.RULE index 4096302f322..22c87aed2de 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_6.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_6.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://firstdonoharm.dev/version/2/1/license.md +--- + https://firstdonoharm.dev/version/2/1/license.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_6.yml b/src/licensedcode/data/rules/hippocratic-2.1_6.yml deleted file mode 100644 index 66c437d08a2..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://firstdonoharm.dev/version/2/1/license.md diff --git a/src/licensedcode/data/rules/hippocratic-2.1_7.RULE b/src/licensedcode/data/rules/hippocratic-2.1_7.RULE index c9044b0bfe7..82996c40f34 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_7.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_7.RULE @@ -1 +1,9 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://firstdonoharm.dev/version/2/1 +--- + https://firstdonoharm.dev/version/2/1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_7.yml b/src/licensedcode/data/rules/hippocratic-2.1_7.yml deleted file mode 100644 index 239ee8a4552..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://firstdonoharm.dev/version/2/1 diff --git a/src/licensedcode/data/rules/hippocratic-2.1_8.RULE b/src/licensedcode/data/rules/hippocratic-2.1_8.RULE index d7400d56aa9..69fc5dd2015 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_8.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Hippocratic License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_8.yml b/src/licensedcode/data/rules/hippocratic-2.1_8.yml deleted file mode 100644 index 241cff5b109..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hippocratic-2.1_9.RULE b/src/licensedcode/data/rules/hippocratic-2.1_9.RULE index c9c4c4d7665..3573fb09f76 100644 --- a/src/licensedcode/data/rules/hippocratic-2.1_9.RULE +++ b/src/licensedcode/data/rules/hippocratic-2.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: hippocratic-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Hippocratic-2.1 Hippocratic License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hippocratic-2.1_9.yml b/src/licensedcode/data/rules/hippocratic-2.1_9.yml deleted file mode 100644 index 241cff5b109..00000000000 --- a/src/licensedcode/data/rules/hippocratic-2.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hippocratic-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/historical-ntp.RULE b/src/licensedcode/data/rules/historical-ntp.RULE index 6f57e5cc8c9..1a164b5faf0 100644 --- a/src/licensedcode/data/rules/historical-ntp.RULE +++ b/src/licensedcode/data/rules/historical-ntp.RULE @@ -1,4 +1,9 @@ +--- +license_expression: historical-ntp +is_license_notice: yes +--- + Permission is hereby granted for unlimited modification, use, and distribution. This software is made available with no warranty of any kind, express or implied. This copyright notice must remain intact in -all versions of this software. +all versions of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical-ntp.yml b/src/licensedcode/data/rules/historical-ntp.yml deleted file mode 100644 index 37c1d2d4420..00000000000 --- a/src/licensedcode/data/rules/historical-ntp.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical-ntp -is_license_notice: yes diff --git a/src/licensedcode/data/rules/historical_1.RULE b/src/licensedcode/data/rules/historical_1.RULE index eef8054dac2..f9d8db48108 100644 --- a/src/licensedcode/data/rules/historical_1.RULE +++ b/src/licensedcode/data/rules/historical_1.RULE @@ -1 +1,7 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 100 +--- + Historic Permission Notice and Disclaimer \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_1.yml b/src/licensedcode/data/rules/historical_1.yml deleted file mode 100644 index b72cfca391c..00000000000 --- a/src/licensedcode/data/rules/historical_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/historical_10.RULE b/src/licensedcode/data/rules/historical_10.RULE index 3f8ebbd1f92..a00d3a1146b 100644 --- a/src/licensedcode/data/rules/historical_10.RULE +++ b/src/licensedcode/data/rules/historical_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_notice: yes +--- + * Permission to use, copy, modify, and 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, and that @@ -12,4 +17,4 @@ * 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. + * SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_10.yml b/src/licensedcode/data/rules/historical_10.yml deleted file mode 100644 index 3a6c9c5bbb0..00000000000 --- a/src/licensedcode/data/rules/historical_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_notice: yes diff --git a/src/licensedcode/data/rules/historical_11.RULE b/src/licensedcode/data/rules/historical_11.RULE index 026cb75aae6..52f50539273 100644 --- a/src/licensedcode/data/rules/historical_11.RULE +++ b/src/licensedcode/data/rules/historical_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -11,4 +16,4 @@ INCLUDINGALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHAL BE LIABLE FOR ANY SPECIAL, 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. +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/historical_11.yml b/src/licensedcode/data/rules/historical_11.yml deleted file mode 100644 index 981ce1be7da..00000000000 --- a/src/licensedcode/data/rules/historical_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/historical_12.RULE b/src/licensedcode/data/rules/historical_12.RULE index 29e53e20864..78e6c62769f 100644 --- a/src/licensedcode/data/rules/historical_12.RULE +++ b/src/licensedcode/data/rules/historical_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_text: yes +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission diff --git a/src/licensedcode/data/rules/historical_12.yml b/src/licensedcode/data/rules/historical_12.yml deleted file mode 100644 index 981ce1be7da..00000000000 --- a/src/licensedcode/data/rules/historical_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/historical_13.RULE b/src/licensedcode/data/rules/historical_13.RULE index 8281bb40357..d82235370bf 100644 --- a/src/licensedcode/data/rules/historical_13.RULE +++ b/src/licensedcode/data/rules/historical_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_text: yes +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies, and diff --git a/src/licensedcode/data/rules/historical_13.yml b/src/licensedcode/data/rules/historical_13.yml deleted file mode 100644 index 981ce1be7da..00000000000 --- a/src/licensedcode/data/rules/historical_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/historical_14.RULE b/src/licensedcode/data/rules/historical_14.RULE index 63a272ffbdb..9f1c2e48e77 100644 --- a/src/licensedcode/data/rules/historical_14.RULE +++ b/src/licensedcode/data/rules/historical_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_notice: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and @@ -12,4 +17,4 @@ 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. + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_14.yml b/src/licensedcode/data/rules/historical_14.yml deleted file mode 100644 index 3a6c9c5bbb0..00000000000 --- a/src/licensedcode/data/rules/historical_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_notice: yes diff --git a/src/licensedcode/data/rules/historical_15.RULE b/src/licensedcode/data/rules/historical_15.RULE index 6d358dc623c..cbc6b8e3d85 100644 --- a/src/licensedcode/data/rules/historical_15.RULE +++ b/src/licensedcode/data/rules/historical_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: historical +is_license_notice: yes +minimum_coverage: 99 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/historical_15.yml b/src/licensedcode/data/rules/historical_15.yml deleted file mode 100644 index 64813675881..00000000000 --- a/src/licensedcode/data/rules/historical_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_notice: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/historical_16.RULE b/src/licensedcode/data/rules/historical_16.RULE index 67f415d77cf..5e1da9ea8d1 100644 --- a/src/licensedcode/data/rules/historical_16.RULE +++ b/src/licensedcode/data/rules/historical_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright diff --git a/src/licensedcode/data/rules/historical_16.yml b/src/licensedcode/data/rules/historical_16.yml deleted file mode 100644 index bb43711cc71..00000000000 --- a/src/licensedcode/data/rules/historical_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/historical_17.RULE b/src/licensedcode/data/rules/historical_17.RULE index 56c909d4d28..e305487f8a1 100644 --- a/src/licensedcode/data/rules/historical_17.RULE +++ b/src/licensedcode/data/rules/historical_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: historical +is_license_notice: yes +minimum_coverage: 30 +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright @@ -11,4 +17,4 @@ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL BE LIABLE FOR ANY SPECIAL, 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. +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_17.yml b/src/licensedcode/data/rules/historical_17.yml deleted file mode 100644 index bcf6fc75eb5..00000000000 --- a/src/licensedcode/data/rules/historical_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_notice: yes -minimum_coverage: 30 diff --git a/src/licensedcode/data/rules/historical_18.RULE b/src/licensedcode/data/rules/historical_18.RULE index 66991449f2e..d7d14a49e0d 100644 --- a/src/licensedcode/data/rules/historical_18.RULE +++ b/src/licensedcode/data/rules/historical_18.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all @@ -15,4 +20,4 @@ NO EVENT SHALL BITSTREAM BE LIABLE FOR ANY SPECIAL, 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. +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_18.yml b/src/licensedcode/data/rules/historical_18.yml deleted file mode 100644 index 981ce1be7da..00000000000 --- a/src/licensedcode/data/rules/historical_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/historical_19.RULE b/src/licensedcode/data/rules/historical_19.RULE index 960fba62c48..90f6e21cc02 100644 --- a/src/licensedcode/data/rules/historical_19.RULE +++ b/src/licensedcode/data/rules/historical_19.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -12,4 +17,4 @@ DIGITAL BE LIABLE FOR ANY SPECIAL, 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_19.yml b/src/licensedcode/data/rules/historical_19.yml deleted file mode 100644 index 981ce1be7da..00000000000 --- a/src/licensedcode/data/rules/historical_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/historical_2.RULE b/src/licensedcode/data/rules/historical_2.RULE index 63667fc38df..364c917f88c 100644 --- a/src/licensedcode/data/rules/historical_2.RULE +++ b/src/licensedcode/data/rules/historical_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_notice: yes +--- + MIT Permission to use, copy, modify, and distribute this software and its diff --git a/src/licensedcode/data/rules/historical_2.yml b/src/licensedcode/data/rules/historical_2.yml deleted file mode 100644 index 3a6c9c5bbb0..00000000000 --- a/src/licensedcode/data/rules/historical_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_notice: yes diff --git a/src/licensedcode/data/rules/historical_20.RULE b/src/licensedcode/data/rules/historical_20.RULE index fefed384ce1..6aa10831105 100644 --- a/src/licensedcode/data/rules/historical_20.RULE +++ b/src/licensedcode/data/rules/historical_20.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/historical_20.yml b/src/licensedcode/data/rules/historical_20.yml deleted file mode 100644 index 981ce1be7da..00000000000 --- a/src/licensedcode/data/rules/historical_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/historical_21.RULE b/src/licensedcode/data/rules/historical_21.RULE index 34ef5704c4c..ad904be110f 100644 --- a/src/licensedcode/data/rules/historical_21.RULE +++ b/src/licensedcode/data/rules/historical_21.RULE @@ -1 +1,7 @@ +--- +license_expression: historical +is_license_tag: yes +relevance: 100 +--- + "License :: OSI Approved :: Historical Permission Notice and Disclaimer (HPND) \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_21.yml b/src/licensedcode/data/rules/historical_21.yml deleted file mode 100644 index e2f9855eb90..00000000000 --- a/src/licensedcode/data/rules/historical_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/historical_22.RULE b/src/licensedcode/data/rules/historical_22.RULE index 08c805cbb8a..ce6d5b1bb73 100644 --- a/src/licensedcode/data/rules/historical_22.RULE +++ b/src/licensedcode/data/rules/historical_22.RULE @@ -1,3 +1,10 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/historical_22.yml b/src/licensedcode/data/rules/historical_22.yml deleted file mode 100644 index b7f00d6b88b..00000000000 --- a/src/licensedcode/data/rules/historical_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/historical_23.RULE b/src/licensedcode/data/rules/historical_23.RULE index 3e2b5cc54c8..2a31c40f5e5 100644 --- a/src/licensedcode/data/rules/historical_23.RULE +++ b/src/licensedcode/data/rules/historical_23.RULE @@ -1,3 +1,9 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and 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, and that diff --git a/src/licensedcode/data/rules/historical_23.yml b/src/licensedcode/data/rules/historical_23.yml deleted file mode 100644 index bb43711cc71..00000000000 --- a/src/licensedcode/data/rules/historical_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/historical_24.RULE b/src/licensedcode/data/rules/historical_24.RULE index c759a717588..5b0717a1ea0 100644 --- a/src/licensedcode/data/rules/historical_24.RULE +++ b/src/licensedcode/data/rules/historical_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/historical_24.yml b/src/licensedcode/data/rules/historical_24.yml deleted file mode 100644 index 3ab3078a7cd..00000000000 --- a/src/licensedcode/data/rules/historical_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/historical_25.RULE b/src/licensedcode/data/rules/historical_25.RULE index 5cd446736ba..41cc37dcba9 100644 --- a/src/licensedcode/data/rules/historical_25.RULE +++ b/src/licensedcode/data/rules/historical_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/historical_25.yml b/src/licensedcode/data/rules/historical_25.yml deleted file mode 100644 index 3ab3078a7cd..00000000000 --- a/src/licensedcode/data/rules/historical_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/historical_26.RULE b/src/licensedcode/data/rules/historical_26.RULE index 217c7c82591..19eb5c2155d 100644 --- a/src/licensedcode/data/rules/historical_26.RULE +++ b/src/licensedcode/data/rules/historical_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/historical_26.yml b/src/licensedcode/data/rules/historical_26.yml deleted file mode 100644 index 3ab3078a7cd..00000000000 --- a/src/licensedcode/data/rules/historical_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/historical_27.RULE b/src/licensedcode/data/rules/historical_27.RULE index 1ffc30b95ca..ce91af81912 100644 --- a/src/licensedcode/data/rules/historical_27.RULE +++ b/src/licensedcode/data/rules/historical_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 99 +notes: in x11 +--- + License to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/historical_27.yml b/src/licensedcode/data/rules/historical_27.yml deleted file mode 100644 index d16edb1f130..00000000000 --- a/src/licensedcode/data/rules/historical_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 99 -notes: in x11 diff --git a/src/licensedcode/data/rules/historical_28.RULE b/src/licensedcode/data/rules/historical_28.RULE index 07747009996..3ece99efd04 100644 --- a/src/licensedcode/data/rules/historical_28.RULE +++ b/src/licensedcode/data/rules/historical_28.RULE @@ -1 +1,10 @@ +--- +license_expression: historical +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Historical Permission Notice and Disclaimer \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_28.yml b/src/licensedcode/data/rules/historical_28.yml deleted file mode 100644 index b421c266aaa..00000000000 --- a/src/licensedcode/data/rules/historical_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: historical -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/historical_29.RULE b/src/licensedcode/data/rules/historical_29.RULE index d63e5615be8..2636dd77c00 100644 --- a/src/licensedcode/data/rules/historical_29.RULE +++ b/src/licensedcode/data/rules/historical_29.RULE @@ -1 +1,10 @@ +--- +license_expression: historical +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Historical Permission Notice and Disclaimer \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_29.yml b/src/licensedcode/data/rules/historical_29.yml deleted file mode 100644 index b421c266aaa..00000000000 --- a/src/licensedcode/data/rules/historical_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: historical -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/historical_3.RULE b/src/licensedcode/data/rules/historical_3.RULE index b2833d92734..12bd1c7b4c2 100644 --- a/src/licensedcode/data/rules/historical_3.RULE +++ b/src/licensedcode/data/rules/historical_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: historical +is_license_notice: yes +notes: Historical, NEC variant +--- + Permission to use, copy, modify, and 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 @@ -12,4 +18,4 @@ SYSTEMS LABORATORY 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. +OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_3.yml b/src/licensedcode/data/rules/historical_3.yml deleted file mode 100644 index 549333d4998..00000000000 --- a/src/licensedcode/data/rules/historical_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_notice: yes -notes: Historical, NEC variant diff --git a/src/licensedcode/data/rules/historical_30.RULE b/src/licensedcode/data/rules/historical_30.RULE index 06b8720b4e4..3143988d17c 100644 --- a/src/licensedcode/data/rules/historical_30.RULE +++ b/src/licensedcode/data/rules/historical_30.RULE @@ -1 +1,10 @@ +--- +license_expression: historical +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + HPND Historical Permission Notice and Disclaimer \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_30.yml b/src/licensedcode/data/rules/historical_30.yml deleted file mode 100644 index b421c266aaa..00000000000 --- a/src/licensedcode/data/rules/historical_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: historical -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/historical_31.RULE b/src/licensedcode/data/rules/historical_31.RULE index 665350c8b66..f1db467ade5 100644 --- a/src/licensedcode/data/rules/historical_31.RULE +++ b/src/licensedcode/data/rules/historical_31.RULE @@ -1 +1,10 @@ +--- +license_expression: historical +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Historical Permission Notice and Disclaimer HPND \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_31.yml b/src/licensedcode/data/rules/historical_31.yml deleted file mode 100644 index b421c266aaa..00000000000 --- a/src/licensedcode/data/rules/historical_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: historical -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/historical_32.RULE b/src/licensedcode/data/rules/historical_32.RULE index 8e74daadfa3..e3bd8942db3 100644 --- a/src/licensedcode/data/rules/historical_32.RULE +++ b/src/licensedcode/data/rules/historical_32.RULE @@ -1 +1,10 @@ +--- +license_expression: historical +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: HPND \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_32.yml b/src/licensedcode/data/rules/historical_32.yml deleted file mode 100644 index ae15b11a379..00000000000 --- a/src/licensedcode/data/rules/historical_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: historical -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/historical_33.RULE b/src/licensedcode/data/rules/historical_33.RULE index cb299eb5b1c..aa4d0d3bd0b 100644 --- a/src/licensedcode/data/rules/historical_33.RULE +++ b/src/licensedcode/data/rules/historical_33.RULE @@ -1 +1,10 @@ +--- +license_expression: historical +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Historical Permission Notice and Disclaimer \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_33.yml b/src/licensedcode/data/rules/historical_33.yml deleted file mode 100644 index ae15b11a379..00000000000 --- a/src/licensedcode/data/rules/historical_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: historical -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/historical_34.RULE b/src/licensedcode/data/rules/historical_34.RULE index ae0307dd145..cba4599c831 100644 --- a/src/licensedcode/data/rules/historical_34.RULE +++ b/src/licensedcode/data/rules/historical_34.RULE @@ -1 +1,10 @@ +--- +license_expression: historical +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: HPND \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_34.yml b/src/licensedcode/data/rules/historical_34.yml deleted file mode 100644 index ae15b11a379..00000000000 --- a/src/licensedcode/data/rules/historical_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: historical -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/historical_35.RULE b/src/licensedcode/data/rules/historical_35.RULE index b5f67347e7b..e57e1aa639f 100644 --- a/src/licensedcode/data/rules/historical_35.RULE +++ b/src/licensedcode/data/rules/historical_35.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + HPND \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_35.yml b/src/licensedcode/data/rules/historical_35.yml deleted file mode 100644 index 6162a6e6b87..00000000000 --- a/src/licensedcode/data/rules/historical_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/historical_36.RULE b/src/licensedcode/data/rules/historical_36.RULE index 765a1eb0b1a..5f43ff686d4 100644 --- a/src/licensedcode/data/rules/historical_36.RULE +++ b/src/licensedcode/data/rules/historical_36.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/HPND +--- + https://licenses.nuget.org/HPND \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_36.yml b/src/licensedcode/data/rules/historical_36.yml deleted file mode 100644 index 9c46b11beae..00000000000 --- a/src/licensedcode/data/rules/historical_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/HPND diff --git a/src/licensedcode/data/rules/historical_37.RULE b/src/licensedcode/data/rules/historical_37.RULE index 4ea27fde9b4..f3e37055123 100644 --- a/src/licensedcode/data/rules/historical_37.RULE +++ b/src/licensedcode/data/rules/historical_37.RULE @@ -1 +1,7 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/HPND \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_37.yml b/src/licensedcode/data/rules/historical_37.yml deleted file mode 100644 index b72cfca391c..00000000000 --- a/src/licensedcode/data/rules/historical_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/historical_38.RULE b/src/licensedcode/data/rules/historical_38.RULE index 91860b514ef..d7c1a8ea967 100644 --- a/src/licensedcode/data/rules/historical_38.RULE +++ b/src/licensedcode/data/rules/historical_38.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/HPND +--- + {{HPND}} https://spdx.org/licenses/HPND \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_38.yml b/src/licensedcode/data/rules/historical_38.yml deleted file mode 100644 index 02b64abe7d3..00000000000 --- a/src/licensedcode/data/rules/historical_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/HPND diff --git a/src/licensedcode/data/rules/historical_39.RULE b/src/licensedcode/data/rules/historical_39.RULE index 11cc49a500b..3b3545f01a8 100644 --- a/src/licensedcode/data/rules/historical_39.RULE +++ b/src/licensedcode/data/rules/historical_39.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/HPND +--- + LICENSE {{HPND}} https://spdx.org/licenses/HPND \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_39.yml b/src/licensedcode/data/rules/historical_39.yml deleted file mode 100644 index 02b64abe7d3..00000000000 --- a/src/licensedcode/data/rules/historical_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/HPND diff --git a/src/licensedcode/data/rules/historical_4.RULE b/src/licensedcode/data/rules/historical_4.RULE index 82d9f18cc88..c124faa0418 100644 --- a/src/licensedcode/data/rules/historical_4.RULE +++ b/src/licensedcode/data/rules/historical_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: historical +is_license_text: yes +minimum_coverage: 90 +notes: this is a weird notice with double disclaimer +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/historical_4.yml b/src/licensedcode/data/rules/historical_4.yml deleted file mode 100644 index 2a5d529db8e..00000000000 --- a/src/licensedcode/data/rules/historical_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: historical -is_license_text: yes -minimum_coverage: 90 -notes: this is a weird notice with double disclaimer diff --git a/src/licensedcode/data/rules/historical_5.RULE b/src/licensedcode/data/rules/historical_5.RULE index b02b9f30cc4..95ada5903e2 100644 --- a/src/licensedcode/data/rules/historical_5.RULE +++ b/src/licensedcode/data/rules/historical_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_text: yes +--- + By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: @@ -16,4 +21,4 @@ IN NO EVENT SHALL OR THE AUTHORS BE LIABLE FOR ANY SPECIAL, 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. +PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_5.yml b/src/licensedcode/data/rules/historical_5.yml deleted file mode 100644 index 981ce1be7da..00000000000 --- a/src/licensedcode/data/rules/historical_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/historical_6.RULE b/src/licensedcode/data/rules/historical_6.RULE index 986db2d33da..5c6d9781d9e 100644 --- a/src/licensedcode/data/rules/historical_6.RULE +++ b/src/licensedcode/data/rules/historical_6.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/historical.php +--- + http://www.opensource.org/licenses/historical.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_6.yml b/src/licensedcode/data/rules/historical_6.yml deleted file mode 100644 index 139b632d408..00000000000 --- a/src/licensedcode/data/rules/historical_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/historical.php diff --git a/src/licensedcode/data/rules/historical_7.RULE b/src/licensedcode/data/rules/historical_7.RULE index 680bf2beb2c..5e830f27460 100644 --- a/src/licensedcode/data/rules/historical_7.RULE +++ b/src/licensedcode/data/rules/historical_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 100 +--- + COMMENT Permission to use, copy, modify, and distribute this software and COMMENT its documentation for any purpose and without fee is hereby granted, COMMENT provided that the above copyright notices appear in all copies and @@ -17,4 +23,4 @@ COMMENT SYSTEMS AND DIGITAL EQUIPMENT CORPORATION BE LIABLE FOR ANY SPECIAL, COMMENT INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER COMMENT RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF COMMENT CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -COMMENT CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +COMMENT CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_7.yml b/src/licensedcode/data/rules/historical_7.yml deleted file mode 100644 index bb43711cc71..00000000000 --- a/src/licensedcode/data/rules/historical_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/historical_8.RULE b/src/licensedcode/data/rules/historical_8.RULE index b9fd3603bfe..21c2d4a72cc 100644 --- a/src/licensedcode/data/rules/historical_8.RULE +++ b/src/licensedcode/data/rules/historical_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: historical +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of IBM not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. -IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, 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. +IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, 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/historical_8.yml b/src/licensedcode/data/rules/historical_8.yml deleted file mode 100644 index bb43711cc71..00000000000 --- a/src/licensedcode/data/rules/historical_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/historical_9.RULE b/src/licensedcode/data/rules/historical_9.RULE index 653278213a4..2d35c7f2816 100644 --- a/src/licensedcode/data/rules/historical_9.RULE +++ b/src/licensedcode/data/rules/historical_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_notice: yes +--- + * Permission to use, copy, modify, and distribute this material * for any purpose and without fee is hereby granted, provided * that the above copyright notice and this permission notice @@ -7,4 +12,4 @@ * of an authorized representative of Bellcore. BELLCORE * MAKES NO REPRESENTATIONS ABOUT THE ACCURACY OR SUITABILITY * OF THIS MATERIAL FOR ANY PURPOSE. IT IS PROVIDED "AS IS", - * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_9.yml b/src/licensedcode/data/rules/historical_9.yml deleted file mode 100644 index 3a6c9c5bbb0..00000000000 --- a/src/licensedcode/data/rules/historical_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_notice: yes diff --git a/src/licensedcode/data/rules/historical_SPDX.RULE b/src/licensedcode/data/rules/historical_SPDX.RULE index c844fe78c39..0923546c449 100644 --- a/src/licensedcode/data/rules/historical_SPDX.RULE +++ b/src/licensedcode/data/rules/historical_SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: historical +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Historical Permission Notice and Disclaimer diff --git a/src/licensedcode/data/rules/historical_SPDX.yml b/src/licensedcode/data/rules/historical_SPDX.yml deleted file mode 100644 index a64c7f48adc..00000000000 --- a/src/licensedcode/data/rules/historical_SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: historical -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/historical_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/historical_and_warranty-disclaimer_1.RULE index de2256728fe..4e8337cfc63 100644 --- a/src/licensedcode/data/rules/historical_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/historical_and_warranty-disclaimer_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: historical AND warranty-disclaimer +is_license_text: yes +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/historical_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/historical_and_warranty-disclaimer_1.yml deleted file mode 100644 index 2d9d176e943..00000000000 --- a/src/licensedcode/data/rules/historical_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: historical AND warranty-disclaimer -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/historical_medusa_1.RULE b/src/licensedcode/data/rules/historical_medusa_1.RULE index 2d828eaef53..74762771cdc 100644 --- a/src/licensedcode/data/rules/historical_medusa_1.RULE +++ b/src/licensedcode/data/rules/historical_medusa_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: historical +is_license_text: yes +--- + Medusa was once distributed under a 'free for non-commercial use' license, but in May of 2000 Sam Rushing changed the license to be identical to the standard Python license at the time. The standard diff --git a/src/licensedcode/data/rules/historical_medusa_1.yml b/src/licensedcode/data/rules/historical_medusa_1.yml deleted file mode 100644 index 981ce1be7da..00000000000 --- a/src/licensedcode/data/rules/historical_medusa_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: historical -is_license_text: yes diff --git a/src/licensedcode/data/rules/historical_url_1.RULE b/src/licensedcode/data/rules/historical_url_1.RULE index 69d57b50972..a876af09b16 100644 --- a/src/licensedcode/data/rules/historical_url_1.RULE +++ b/src/licensedcode/data/rules/historical_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/hpnd +--- + https://spdx.org/licenses/hpnd \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_url_1.yml b/src/licensedcode/data/rules/historical_url_1.yml deleted file mode 100644 index f000ec58e99..00000000000 --- a/src/licensedcode/data/rules/historical_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/hpnd diff --git a/src/licensedcode/data/rules/historical_url_2.RULE b/src/licensedcode/data/rules/historical_url_2.RULE index 0614ce99da7..f7ab204705a 100644 --- a/src/licensedcode/data/rules/historical_url_2.RULE +++ b/src/licensedcode/data/rules/historical_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/hpnd.html +--- + https://spdx.org/licenses/hpnd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_url_2.yml b/src/licensedcode/data/rules/historical_url_2.yml deleted file mode 100644 index f7ab80a0980..00000000000 --- a/src/licensedcode/data/rules/historical_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/hpnd.html diff --git a/src/licensedcode/data/rules/historical_url_glc_170.RULE b/src/licensedcode/data/rules/historical_url_glc_170.RULE index f504423d0bb..bbc6c565cff 100644 --- a/src/licensedcode/data/rules/historical_url_glc_170.RULE +++ b/src/licensedcode/data/rules/historical_url_glc_170.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/hpnd +--- + http://www.opensource.org/licenses/hpnd \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_url_glc_170.yml b/src/licensedcode/data/rules/historical_url_glc_170.yml deleted file mode 100644 index a3e0beff857..00000000000 --- a/src/licensedcode/data/rules/historical_url_glc_170.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/hpnd diff --git a/src/licensedcode/data/rules/historical_url_glc_171.RULE b/src/licensedcode/data/rules/historical_url_glc_171.RULE index 6032563a1a4..c21380c6bf1 100644 --- a/src/licensedcode/data/rules/historical_url_glc_171.RULE +++ b/src/licensedcode/data/rules/historical_url_glc_171.RULE @@ -1 +1,9 @@ +--- +license_expression: historical +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/hpnd +--- + https://www.opensource.org/licenses/hpnd \ No newline at end of file diff --git a/src/licensedcode/data/rules/historical_url_glc_171.yml b/src/licensedcode/data/rules/historical_url_glc_171.yml deleted file mode 100644 index 0d48942cc3a..00000000000 --- a/src/licensedcode/data/rules/historical_url_glc_171.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: historical -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/hpnd diff --git a/src/licensedcode/data/rules/homebrewed_1.RULE b/src/licensedcode/data/rules/homebrewed_1.RULE index 0196bcd5a9d..3bf5cb9bbaf 100644 --- a/src/licensedcode/data/rules/homebrewed_1.RULE +++ b/src/licensedcode/data/rules/homebrewed_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: homebrewed +is_license_text: yes +notes: Seen in https://github.com/spiral-project/ihatemoney/blob/master/LICENSE This is a bsd-new + with an extra beer-ware-like clause +--- + Redistribution and use in source and binary forms of the software as well as documentation, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/homebrewed_1.yml b/src/licensedcode/data/rules/homebrewed_1.yml deleted file mode 100644 index 02b68b82e1f..00000000000 --- a/src/licensedcode/data/rules/homebrewed_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: homebrewed -is_license_text: yes -notes: Seen in https://github.com/spiral-project/ihatemoney/blob/master/LICENSE This is a bsd-new - with an extra beer-ware-like clause diff --git a/src/licensedcode/data/rules/hp-netperf.RULE b/src/licensedcode/data/rules/hp-netperf.RULE index 9f9e3074e6a..644e40dc952 100644 --- a/src/licensedcode/data/rules/hp-netperf.RULE +++ b/src/licensedcode/data/rules/hp-netperf.RULE @@ -1 +1,9 @@ +--- +license_expression: hp-netperf +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.netperf.org/netperf/training/Netperf.html +--- + http://www.netperf.org/netperf/training/Netperf.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/hp-netperf.yml b/src/licensedcode/data/rules/hp-netperf.yml deleted file mode 100644 index 360f1957ba6..00000000000 --- a/src/licensedcode/data/rules/hp-netperf.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hp-netperf -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.netperf.org/netperf/training/Netperf.html diff --git a/src/licensedcode/data/rules/hp-ux-java.RULE b/src/licensedcode/data/rules/hp-ux-java.RULE index 44f9e59af8a..2efda6cec4d 100644 --- a/src/licensedcode/data/rules/hp-ux-java.RULE +++ b/src/licensedcode/data/rules/hp-ux-java.RULE @@ -1 +1,8 @@ +--- +license_expression: hp-ux-java +is_license_reference: yes +ignorable_urls: + - http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html +--- + http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/hp-ux-java.yml b/src/licensedcode/data/rules/hp-ux-java.yml deleted file mode 100644 index 4934cf81b1e..00000000000 --- a/src/licensedcode/data/rules/hp-ux-java.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: hp-ux-java -is_license_reference: yes -ignorable_urls: - - http://www.hp.com/products1/unix/java/java2/sdkrte1_3/downloads/license_rte_1-3-1-17_pa-risc.html diff --git a/src/licensedcode/data/rules/hp.RULE b/src/licensedcode/data/rules/hp.RULE index 90995ca2bfd..bea76455188 100644 --- a/src/licensedcode/data/rules/hp.RULE +++ b/src/licensedcode/data/rules/hp.RULE @@ -1 +1,9 @@ +--- +license_expression: hp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://h30097.www3.hp.com/hp_sw_license.html +--- + http://h30097.www3.hp.com/hp_sw_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/hp.yml b/src/licensedcode/data/rules/hp.yml deleted file mode 100644 index f7303869dfd..00000000000 --- a/src/licensedcode/data/rules/hp.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://h30097.www3.hp.com/hp_sw_license.html diff --git a/src/licensedcode/data/rules/hs-regexp-orig_1.RULE b/src/licensedcode/data/rules/hs-regexp-orig_1.RULE index 4097e8737b9..9a975642731 100644 --- a/src/licensedcode/data/rules/hs-regexp-orig_1.RULE +++ b/src/licensedcode/data/rules/hs-regexp-orig_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: regexp +is_license_text: yes +minimum_coverage: 80 +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: diff --git a/src/licensedcode/data/rules/hs-regexp-orig_1.yml b/src/licensedcode/data/rules/hs-regexp-orig_1.yml deleted file mode 100644 index 1f65bd00ce9..00000000000 --- a/src/licensedcode/data/rules/hs-regexp-orig_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: regexp -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/hs-regexp-orig_2.RULE b/src/licensedcode/data/rules/hs-regexp-orig_2.RULE index ec136f03099..b16bf774745 100644 --- a/src/licensedcode/data/rules/hs-regexp-orig_2.RULE +++ b/src/licensedcode/data/rules/hs-regexp-orig_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: regexp +is_license_text: yes +minimum_coverage: 80 +notes: | + This is a rare almost identical variation on the license + found in curl Mac code. + See for example + https://github.com/bagder/curl/blob/master/src/macos/src/macos_main.cpp +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: @@ -10,4 +21,4 @@ claim or by omission. - You are allowed to distributed modified copies of the software, in source and binary form, provided they are marked plainly as altered versions, and are not -misrepresented as being the original software. +misrepresented as being the original software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp-orig_2.yml b/src/licensedcode/data/rules/hs-regexp-orig_2.yml deleted file mode 100644 index d6a86f951f5..00000000000 --- a/src/licensedcode/data/rules/hs-regexp-orig_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: regexp -is_license_text: yes -minimum_coverage: 80 -notes: | - This is a rare almost identical variation on the license - found in curl Mac code. - See for example - https://github.com/bagder/curl/blob/master/src/macos/src/macos_main.cpp diff --git a/src/licensedcode/data/rules/hs-regexp-orig_3.RULE b/src/licensedcode/data/rules/hs-regexp-orig_3.RULE index fc2cf64a301..ddafe55c15a 100644 --- a/src/licensedcode/data/rules/hs-regexp-orig_3.RULE +++ b/src/licensedcode/data/rules/hs-regexp-orig_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: regexp +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + Not derived from licensed software. Permission is granted to anyone to use this software for any @@ -12,5 +19,4 @@ subject to the following restrictions: by explicit claim or by omission. 3. Altered versions must be plainly marked as such, and must not - be misrepresented as being the original software. - + be misrepresented as being the original software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp-orig_3.yml b/src/licensedcode/data/rules/hs-regexp-orig_3.yml deleted file mode 100644 index 850802de545..00000000000 --- a/src/licensedcode/data/rules/hs-regexp-orig_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: regexp -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/hs-regexp_1.RULE b/src/licensedcode/data/rules/hs-regexp_1.RULE index ade1e8d5733..1727bb50cce 100644 --- a/src/licensedcode/data/rules/hs-regexp_1.RULE +++ b/src/licensedcode/data/rules/hs-regexp_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: hs-regexp +is_license_text: yes +minimum_coverage: 80 +--- + This software is not subject to any license of the American Telephone and Telegraph Company or of the Regents of the University of California. @@ -16,4 +22,4 @@ credits must appear in the documentation. misrepresented as being the original software. Since few users ever read sources, credits must appear in the documentation. -4. This notice may not be removed or altered. +4. This notice may not be removed or altered. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_1.yml b/src/licensedcode/data/rules/hs-regexp_1.yml deleted file mode 100644 index 49d6fd652ed..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hs-regexp -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/hs-regexp_10.RULE b/src/licensedcode/data/rules/hs-regexp_10.RULE index 759465a0c4d..d69c1ad7376 100644 --- a/src/licensedcode/data/rules/hs-regexp_10.RULE +++ b/src/licensedcode/data/rules/hs-regexp_10.RULE @@ -1 +1,10 @@ +--- +license_expression: hs-regexp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_10.yml b/src/licensedcode/data/rules/hs-regexp_10.yml deleted file mode 100644 index b79d3b6d770..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hs-regexp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hs-regexp_11.RULE b/src/licensedcode/data/rules/hs-regexp_11.RULE index 63f053232e6..b817dda15b4 100644 --- a/src/licensedcode/data/rules/hs-regexp_11.RULE +++ b/src/licensedcode/data/rules/hs-regexp_11.RULE @@ -1 +1,10 @@ +--- +license_expression: hs-regexp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Spencer License 94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_11.yml b/src/licensedcode/data/rules/hs-regexp_11.yml deleted file mode 100644 index b79d3b6d770..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hs-regexp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hs-regexp_12.RULE b/src/licensedcode/data/rules/hs-regexp_12.RULE index 5c26176539b..56483613544 100644 --- a/src/licensedcode/data/rules/hs-regexp_12.RULE +++ b/src/licensedcode/data/rules/hs-regexp_12.RULE @@ -1 +1,10 @@ +--- +license_expression: hs-regexp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_12.yml b/src/licensedcode/data/rules/hs-regexp_12.yml deleted file mode 100644 index b79d3b6d770..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hs-regexp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hs-regexp_13.RULE b/src/licensedcode/data/rules/hs-regexp_13.RULE index f7435204e57..8d4b0b54015 100644 --- a/src/licensedcode/data/rules/hs-regexp_13.RULE +++ b/src/licensedcode/data/rules/hs-regexp_13.RULE @@ -1 +1,9 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Spencer-94 +--- + https://licenses.nuget.org/Spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_13.yml b/src/licensedcode/data/rules/hs-regexp_13.yml deleted file mode 100644 index fb910d9cb73..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Spencer-94 diff --git a/src/licensedcode/data/rules/hs-regexp_14.RULE b/src/licensedcode/data/rules/hs-regexp_14.RULE index a53ef965e65..5660a7b7118 100644 --- a/src/licensedcode/data/rules/hs-regexp_14.RULE +++ b/src/licensedcode/data/rules/hs-regexp_14.RULE @@ -1 +1,7 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_14.yml b/src/licensedcode/data/rules/hs-regexp_14.yml deleted file mode 100644 index 3df8bd1096b..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/hs-regexp_15.RULE b/src/licensedcode/data/rules/hs-regexp_15.RULE index 8151568daf4..c07044af01c 100644 --- a/src/licensedcode/data/rules/hs-regexp_15.RULE +++ b/src/licensedcode/data/rules/hs-regexp_15.RULE @@ -1 +1,9 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Spencer-94 +--- + LICENSE {{Spencer-94}} https://spdx.org/licenses/Spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_15.yml b/src/licensedcode/data/rules/hs-regexp_15.yml deleted file mode 100644 index 94ac4040738..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Spencer-94 diff --git a/src/licensedcode/data/rules/hs-regexp_16.RULE b/src/licensedcode/data/rules/hs-regexp_16.RULE index 0a870e6b73d..29a298305c8 100644 --- a/src/licensedcode/data/rules/hs-regexp_16.RULE +++ b/src/licensedcode/data/rules/hs-regexp_16.RULE @@ -1 +1,9 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Spencer-94 +--- + {{Spencer-94}} https://spdx.org/licenses/Spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_16.yml b/src/licensedcode/data/rules/hs-regexp_16.yml deleted file mode 100644 index 94ac4040738..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Spencer-94 diff --git a/src/licensedcode/data/rules/hs-regexp_2.RULE b/src/licensedcode/data/rules/hs-regexp_2.RULE index e6983fbc719..db79968fe93 100644 --- a/src/licensedcode/data/rules/hs-regexp_2.RULE +++ b/src/licensedcode/data/rules/hs-regexp_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: hs-regexp +is_license_text: yes +minimum_coverage: 80 +--- + This software is not subject to any license of the American Telephone and Telegraph Company or of the Regents of the University of California. @@ -16,4 +22,4 @@ credits must appear in the documentation. misrepresented as being the original software. Since few users ever read sources, credits must appear in the documentation. -4. This notice may not be removed or altered. +4. This notice may not be removed or altered. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_2.yml b/src/licensedcode/data/rules/hs-regexp_2.yml deleted file mode 100644 index 49d6fd652ed..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hs-regexp -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/hs-regexp_3.RULE b/src/licensedcode/data/rules/hs-regexp_3.RULE index b2aec4ec271..584c18e20ce 100644 --- a/src/licensedcode/data/rules/hs-regexp_3.RULE +++ b/src/licensedcode/data/rules/hs-regexp_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: hs-regexp +is_license_notice: yes +minimum_coverage: 80 +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to alter it and redistribute it, subject to the following restrictions: diff --git a/src/licensedcode/data/rules/hs-regexp_3.yml b/src/licensedcode/data/rules/hs-regexp_3.yml deleted file mode 100644 index db9322a942a..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: hs-regexp -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/hs-regexp_4.RULE b/src/licensedcode/data/rules/hs-regexp_4.RULE index 7316e05617f..ed1c13e03c2 100644 --- a/src/licensedcode/data/rules/hs-regexp_4.RULE +++ b/src/licensedcode/data/rules/hs-regexp_4.RULE @@ -1 +1,8 @@ +--- +license_expression: hs-regexp +is_license_notice: yes +relevance: 99 +minimum_coverage: 99 +--- + It is distributed under a "C News-like" copyright. \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_4.yml b/src/licensedcode/data/rules/hs-regexp_4.yml deleted file mode 100644 index 67f1e5af2bc..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: hs-regexp -is_license_notice: yes -relevance: 99 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/hs-regexp_5.RULE b/src/licensedcode/data/rules/hs-regexp_5.RULE index 970d0959db0..e966f366612 100644 --- a/src/licensedcode/data/rules/hs-regexp_5.RULE +++ b/src/licensedcode/data/rules/hs-regexp_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: hs-regexp +is_license_text: yes +relevance: 95 +minimum_coverage: 80 +notes: The word "should" has been added in a few places and the warranty disclaimer is missing +--- + * Permission is granted to anyone to use this software for any purpose * on any computer system, and to alter it and redistribute it, subject * to the following restrictions: diff --git a/src/licensedcode/data/rules/hs-regexp_5.yml b/src/licensedcode/data/rules/hs-regexp_5.yml deleted file mode 100644 index 306b1278132..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hs-regexp -is_license_text: yes -relevance: 95 -minimum_coverage: 80 -notes: The word "should" has been added in a few places and the warranty disclaimer is missing diff --git a/src/licensedcode/data/rules/hs-regexp_6.RULE b/src/licensedcode/data/rules/hs-regexp_6.RULE index e3985d1c70c..02e68edc79b 100644 --- a/src/licensedcode/data/rules/hs-regexp_6.RULE +++ b/src/licensedcode/data/rules/hs-regexp_6.RULE @@ -1 +1,10 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer License 94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_6.yml b/src/licensedcode/data/rules/hs-regexp_6.yml deleted file mode 100644 index 5c1b5470105..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hs-regexp_7.RULE b/src/licensedcode/data/rules/hs-regexp_7.RULE index f0ec713147c..786a6ff98a9 100644 --- a/src/licensedcode/data/rules/hs-regexp_7.RULE +++ b/src/licensedcode/data/rules/hs-regexp_7.RULE @@ -1 +1,10 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Spencer License 94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_7.yml b/src/licensedcode/data/rules/hs-regexp_7.yml deleted file mode 100644 index 5c1b5470105..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hs-regexp_8.RULE b/src/licensedcode/data/rules/hs-regexp_8.RULE index 6dfd5c07cb0..956c350d285 100644 --- a/src/licensedcode/data/rules/hs-regexp_8.RULE +++ b/src/licensedcode/data/rules/hs-regexp_8.RULE @@ -1 +1,10 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer-94 Spencer License 94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_8.yml b/src/licensedcode/data/rules/hs-regexp_8.yml deleted file mode 100644 index 5c1b5470105..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hs-regexp_9.RULE b/src/licensedcode/data/rules/hs-regexp_9.RULE index 3fa4273195d..a36798309a9 100644 --- a/src/licensedcode/data/rules/hs-regexp_9.RULE +++ b/src/licensedcode/data/rules/hs-regexp_9.RULE @@ -1 +1,10 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer License 94 Spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_9.yml b/src/licensedcode/data/rules/hs-regexp_9.yml deleted file mode 100644 index 5c1b5470105..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/hs-regexp_url_1.RULE b/src/licensedcode/data/rules/hs-regexp_url_1.RULE index 8b21f3c6a38..b015ad3178a 100644 --- a/src/licensedcode/data/rules/hs-regexp_url_1.RULE +++ b/src/licensedcode/data/rules/hs-regexp_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/spencer-94 +--- + https://spdx.org/licenses/spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_url_1.yml b/src/licensedcode/data/rules/hs-regexp_url_1.yml deleted file mode 100644 index da602a5f4ed..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/spencer-94 diff --git a/src/licensedcode/data/rules/hs-regexp_url_2.RULE b/src/licensedcode/data/rules/hs-regexp_url_2.RULE index ecf5a44156d..0d01131eb2e 100644 --- a/src/licensedcode/data/rules/hs-regexp_url_2.RULE +++ b/src/licensedcode/data/rules/hs-regexp_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/spencer-94.html +--- + https://spdx.org/licenses/spencer-94.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/hs-regexp_url_2.yml b/src/licensedcode/data/rules/hs-regexp_url_2.yml deleted file mode 100644 index f73bb4607a3..00000000000 --- a/src/licensedcode/data/rules/hs-regexp_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/spencer-94.html diff --git a/src/licensedcode/data/rules/html5_1.RULE b/src/licensedcode/data/rules/html5_1.RULE index 182d020a37e..b578f566c8b 100644 --- a/src/licensedcode/data/rules/html5_1.RULE +++ b/src/licensedcode/data/rules/html5_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: html5 +is_license_text: yes +relevance: 100 +--- + The license used for the WHATWG HTML specification, which states, in full: You are granted a license to use, reproduce and create derivative works of this document. \ No newline at end of file diff --git a/src/licensedcode/data/rules/html5_1.yml b/src/licensedcode/data/rules/html5_1.yml deleted file mode 100644 index 89fa05d9255..00000000000 --- a/src/licensedcode/data/rules/html5_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: html5 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/html5_2.RULE b/src/licensedcode/data/rules/html5_2.RULE index ba8d25e9001..e1a836a5303 100644 --- a/src/licensedcode/data/rules/html5_2.RULE +++ b/src/licensedcode/data/rules/html5_2.RULE @@ -1 +1,7 @@ +--- +license_expression: html5 +is_license_notice: yes +relevance: 100 +--- + ou are granted a license to use, reproduce and create derivative works of this document. Document use rules apply. \ No newline at end of file diff --git a/src/licensedcode/data/rules/html5_2.yml b/src/licensedcode/data/rules/html5_2.yml deleted file mode 100644 index f7d3f3ec651..00000000000 --- a/src/licensedcode/data/rules/html5_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: html5 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_1.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_1.RULE index f9ae7f66ed5..d9f85fb6bb8 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_1.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + i2p GPL+Java Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_1.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_1.yml deleted file mode 100644 index 8b765967ea6..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_10.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_10.RULE index 583e8496c26..bfb2f5681d2 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_10.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/i2p-gpl-java-exception +--- + {{i2p-gpl-java-exception}} https://spdx.org/licenses/i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_10.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_10.yml deleted file mode 100644 index 2cdd933d90d..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/i2p-gpl-java-exception diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_11.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_11.RULE index 18f9a79c064..a9fc588274c 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_11.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_11.RULE @@ -1 +1,9 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/i2p-gpl-java-exception +--- + LICENSE {{i2p-gpl-java-exception}} https://spdx.org/licenses/i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_11.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_11.yml deleted file mode 100644 index 2cdd933d90d..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/i2p-gpl-java-exception diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_2.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_2.RULE index 5d1222a3500..4587025e160 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_2.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: i2p GPL+Java Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_2.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_2.yml deleted file mode 100644 index 8b765967ea6..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_3.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_3.RULE index 39cdad3f4c7..354a21f4d91 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_3.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + i2p-gpl-java-exception i2p GPL+Java Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_3.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_3.yml deleted file mode 100644 index 8b765967ea6..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_4.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_4.RULE index 876f756afe2..ead3ec0e7bc 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_4.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + i2p GPL+Java Exception i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_4.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_4.yml deleted file mode 100644 index 8b765967ea6..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_5.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_5.RULE index 73d56d140e7..1b0cf7ae23f 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_5.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_5.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_5.yml deleted file mode 100644 index 28d3ae58ee4..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_6.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_6.RULE index 52c21fcd2fe..f187648e0e9 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_6.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: i2p GPL+Java Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_6.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_6.yml deleted file mode 100644 index 28d3ae58ee4..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_7.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_7.RULE index 190b9b45552..f2af868028f 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_7.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_7.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_7.yml deleted file mode 100644 index 28d3ae58ee4..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_8.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_8.RULE index 2e0b9d8bdf3..2723adeff84 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_8.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/i2p-gpl-java-exception +--- + https://licenses.nuget.org/i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_8.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_8.yml deleted file mode 100644 index cd6880dc088..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/i2p-gpl-java-exception diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_9.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_9.RULE index d86272f56f9..f86ba74bb3d 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_9.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_9.RULE @@ -1 +1,7 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_9.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_9.yml deleted file mode 100644 index 5dd76181010..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_url_1.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_url_1.RULE index 15002ebe80c..94dd7a9aeee 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_url_1.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/i2p-gpl-java-exception +--- + https://spdx.org/licenses/i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_url_1.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_url_1.yml deleted file mode 100644 index f5b27a13ec2..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/i2p-gpl-java-exception diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_url_2.RULE b/src/licensedcode/data/rules/i2p-gpl-java-exception_url_2.RULE index 4a756998993..66cdfd28051 100644 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_url_2.RULE +++ b/src/licensedcode/data/rules/i2p-gpl-java-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/i2p-gpl-java-exception.html +--- + https://spdx.org/licenses/i2p-gpl-java-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/i2p-gpl-java-exception_url_2.yml b/src/licensedcode/data/rules/i2p-gpl-java-exception_url_2.yml deleted file mode 100644 index 62a80b60073..00000000000 --- a/src/licensedcode/data/rules/i2p-gpl-java-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/i2p-gpl-java-exception.html diff --git a/src/licensedcode/data/rules/ian-piumarta_1.RULE b/src/licensedcode/data/rules/ian-piumarta_1.RULE index 20926147d8b..83df47293fe 100644 --- a/src/licensedcode/data/rules/ian-piumarta_1.RULE +++ b/src/licensedcode/data/rules/ian-piumarta_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ian-piumarta +is_license_text: yes +relevance: 99 +notes: extra documentation requirement +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/ian-piumarta_1.yml b/src/licensedcode/data/rules/ian-piumarta_1.yml deleted file mode 100644 index 390f7e731f3..00000000000 --- a/src/licensedcode/data/rules/ian-piumarta_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ian-piumarta -is_license_text: yes -relevance: 99 -notes: extra documentation requirement diff --git a/src/licensedcode/data/rules/ibm-dhcp_1.RULE b/src/licensedcode/data/rules/ibm-dhcp_1.RULE index 2d69ad844b4..b7992deeb9c 100644 --- a/src/licensedcode/data/rules/ibm-dhcp_1.RULE +++ b/src/licensedcode/data/rules/ibm-dhcp_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-dhcp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://svn.opendnssec.org/trunk/OpenDNSSEC/common/b64_pton.c +--- + http://svn.opendnssec.org/trunk/OpenDNSSEC/common/b64_pton.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-dhcp_1.yml b/src/licensedcode/data/rules/ibm-dhcp_1.yml deleted file mode 100644 index 7f456528853..00000000000 --- a/src/licensedcode/data/rules/ibm-dhcp_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-dhcp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://svn.opendnssec.org/trunk/OpenDNSSEC/common/b64_pton.c diff --git a/src/licensedcode/data/rules/ibm-jre.RULE b/src/licensedcode/data/rules/ibm-jre.RULE index c8031374d13..ce30483ad5d 100644 --- a/src/licensedcode/data/rules/ibm-jre.RULE +++ b/src/licensedcode/data/rules/ibm-jre.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-jre +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide +--- + http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-jre.yml b/src/licensedcode/data/rules/ibm-jre.yml deleted file mode 100644 index 6fabfcf0412..00000000000 --- a/src/licensedcode/data/rules/ibm-jre.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-jre -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.ibm.com/developerworks/views/download.jsp?contentid=10947&filename=zip&method=ftp&locale=worldwide diff --git a/src/licensedcode/data/rules/ibm-nwsc.RULE b/src/licensedcode/data/rules/ibm-nwsc.RULE index 97cf8500fc9..df27d7fc921 100644 --- a/src/licensedcode/data/rules/ibm-nwsc.RULE +++ b/src/licensedcode/data/rules/ibm-nwsc.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-nwsc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ibm.com/developerworks/data/zones/informix/library/techarticle/nair/0204nairlicense.html +--- + http://www.ibm.com/developerworks/data/zones/informix/library/techarticle/nair/0204nairlicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-nwsc.yml b/src/licensedcode/data/rules/ibm-nwsc.yml deleted file mode 100644 index d967f94db29..00000000000 --- a/src/licensedcode/data/rules/ibm-nwsc.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-nwsc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ibm.com/developerworks/data/zones/informix/library/techarticle/nair/0204nairlicense.html diff --git a/src/licensedcode/data/rules/ibm-pibs_1.RULE b/src/licensedcode/data/rules/ibm-pibs_1.RULE index 0a25b997e50..631510ca6ba 100644 --- a/src/licensedcode/data/rules/ibm-pibs_1.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + IBM PowerPC Initialization and Boot Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_1.yml b/src/licensedcode/data/rules/ibm-pibs_1.yml deleted file mode 100644 index 909034f6536..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibm-pibs_10.RULE b/src/licensedcode/data/rules/ibm-pibs_10.RULE index 53aa37a9410..c5a7a2c31d8 100644 --- a/src/licensedcode/data/rules/ibm-pibs_10.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/IBM-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_10.yml b/src/licensedcode/data/rules/ibm-pibs_10.yml deleted file mode 100644 index 5f3ada999ca..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ibm-pibs_11.RULE b/src/licensedcode/data/rules/ibm-pibs_11.RULE index f38f280aed0..2ced82cbadf 100644 --- a/src/licensedcode/data/rules/ibm-pibs_11.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/IBM-pibs +--- + {{IBM-pibs}} https://spdx.org/licenses/IBM-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_11.yml b/src/licensedcode/data/rules/ibm-pibs_11.yml deleted file mode 100644 index 23f8571cdfb..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/IBM-pibs diff --git a/src/licensedcode/data/rules/ibm-pibs_12.RULE b/src/licensedcode/data/rules/ibm-pibs_12.RULE index a68e4dc8bec..8708e0ea92b 100644 --- a/src/licensedcode/data/rules/ibm-pibs_12.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/IBM-pibs +--- + LICENSE {{IBM-pibs}} https://spdx.org/licenses/IBM-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_12.yml b/src/licensedcode/data/rules/ibm-pibs_12.yml deleted file mode 100644 index 23f8571cdfb..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/IBM-pibs diff --git a/src/licensedcode/data/rules/ibm-pibs_2.RULE b/src/licensedcode/data/rules/ibm-pibs_2.RULE index 4cff70ea3ca..8eb64fde883 100644 --- a/src/licensedcode/data/rules/ibm-pibs_2.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: IBM PowerPC Initialization and Boot Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_2.yml b/src/licensedcode/data/rules/ibm-pibs_2.yml deleted file mode 100644 index 909034f6536..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibm-pibs_3.RULE b/src/licensedcode/data/rules/ibm-pibs_3.RULE index b95df0073ea..3ce4ec9f907 100644 --- a/src/licensedcode/data/rules/ibm-pibs_3.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + IBM-pibs IBM PowerPC Initialization and Boot Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_3.yml b/src/licensedcode/data/rules/ibm-pibs_3.yml deleted file mode 100644 index 909034f6536..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibm-pibs_4.RULE b/src/licensedcode/data/rules/ibm-pibs_4.RULE index cdfd6711e32..d9b62b023d8 100644 --- a/src/licensedcode/data/rules/ibm-pibs_4.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + IBM PowerPC Initialization and Boot Software IBM-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_4.yml b/src/licensedcode/data/rules/ibm-pibs_4.yml deleted file mode 100644 index 909034f6536..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibm-pibs_5.RULE b/src/licensedcode/data/rules/ibm-pibs_5.RULE index 4454f98d018..847ca773609 100644 --- a/src/licensedcode/data/rules/ibm-pibs_5.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ibm-pibs +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: IBM-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_5.yml b/src/licensedcode/data/rules/ibm-pibs_5.yml deleted file mode 100644 index e39c47b3c9b..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibm-pibs -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibm-pibs_6.RULE b/src/licensedcode/data/rules/ibm-pibs_6.RULE index 12fe3597abb..fe717553a2e 100644 --- a/src/licensedcode/data/rules/ibm-pibs_6.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ibm-pibs +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: IBM PowerPC Initialization and Boot Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_6.yml b/src/licensedcode/data/rules/ibm-pibs_6.yml deleted file mode 100644 index e39c47b3c9b..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibm-pibs -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibm-pibs_7.RULE b/src/licensedcode/data/rules/ibm-pibs_7.RULE index d30609b6766..edd69c61555 100644 --- a/src/licensedcode/data/rules/ibm-pibs_7.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ibm-pibs +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: IBM-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_7.yml b/src/licensedcode/data/rules/ibm-pibs_7.yml deleted file mode 100644 index e39c47b3c9b..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibm-pibs -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibm-pibs_8.RULE b/src/licensedcode/data/rules/ibm-pibs_8.RULE index e8a085b582c..293aabdf343 100644 --- a/src/licensedcode/data/rules/ibm-pibs_8.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + IBM-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_8.yml b/src/licensedcode/data/rules/ibm-pibs_8.yml deleted file mode 100644 index 924eaaa2073..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ibm-pibs_9.RULE b/src/licensedcode/data/rules/ibm-pibs_9.RULE index 596c30f2557..7b8cdfe76b9 100644 --- a/src/licensedcode/data/rules/ibm-pibs_9.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/IBM-pibs +--- + https://licenses.nuget.org/IBM-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_9.yml b/src/licensedcode/data/rules/ibm-pibs_9.yml deleted file mode 100644 index 6ae2e6e98a5..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/IBM-pibs diff --git a/src/licensedcode/data/rules/ibm-pibs_url_1.RULE b/src/licensedcode/data/rules/ibm-pibs_url_1.RULE index 297f5f63d27..60cf8c4a1f2 100644 --- a/src/licensedcode/data/rules/ibm-pibs_url_1.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ibm-pibs +--- + https://spdx.org/licenses/ibm-pibs \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_url_1.yml b/src/licensedcode/data/rules/ibm-pibs_url_1.yml deleted file mode 100644 index 954172e4df0..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ibm-pibs diff --git a/src/licensedcode/data/rules/ibm-pibs_url_2.RULE b/src/licensedcode/data/rules/ibm-pibs_url_2.RULE index b355b50ec0e..7e5333afc0d 100644 --- a/src/licensedcode/data/rules/ibm-pibs_url_2.RULE +++ b/src/licensedcode/data/rules/ibm-pibs_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ibm-pibs +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ibm-pibs.html +--- + https://spdx.org/licenses/ibm-pibs.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibm-pibs_url_2.yml b/src/licensedcode/data/rules/ibm-pibs_url_2.yml deleted file mode 100644 index 5835be2c546..00000000000 --- a/src/licensedcode/data/rules/ibm-pibs_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibm-pibs -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ibm-pibs.html diff --git a/src/licensedcode/data/rules/ibmpl-1.0.RULE b/src/licensedcode/data/rules/ibmpl-1.0.RULE index 8bf2d3e6777..e3b8226efb4 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ibmpl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright International Business Machines Corporation and others +ignorable_holders: + - International Business Machines Corporation and others +--- + IBM Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES @@ -207,4 +216,4 @@ Program not expressly granted under this Agreement are reserved. This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. -Each party waives its rights to a jury trial in any resulting litigation. +Each party waives its rights to a jury trial in any resulting litigation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0.SPDX.RULE b/src/licensedcode/data/rules/ibmpl-1.0.SPDX.RULE index 26d74f83cfa..ad5fa6f68db 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ibmpl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1996, 1999 International Business Machines Corporation and others +ignorable_holders: + - International Business Machines Corporation and others +--- + IBM Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM diff --git a/src/licensedcode/data/rules/ibmpl-1.0.SPDX.yml b/src/licensedcode/data/rules/ibmpl-1.0.SPDX.yml deleted file mode 100644 index 3a356d2e86e..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1996, 1999 International Business Machines Corporation and others -ignorable_holders: - - International Business Machines Corporation and others diff --git a/src/licensedcode/data/rules/ibmpl-1.0.yml b/src/licensedcode/data/rules/ibmpl-1.0.yml deleted file mode 100644 index b7c83b110a6..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright International Business Machines Corporation and others -ignorable_holders: - - International Business Machines Corporation and others diff --git a/src/licensedcode/data/rules/ibmpl-1.0_1.RULE b/src/licensedcode/data/rules/ibmpl-1.0_1.RULE index 2574e1148c0..f3a000829e4 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_1.RULE @@ -1 +1,7 @@ -distributed under the IBM Public License (IPL). \ No newline at end of file +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +--- + +distributed under the IBM Public License (IPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_1.yml b/src/licensedcode/data/rules/ibmpl-1.0_1.yml deleted file mode 100644 index 61fac7abcb5..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_10.RULE b/src/licensedcode/data/rules/ibmpl-1.0_10.RULE index 43638e9039c..99cbbff2015 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_10.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ibmpl-1.0 +is_license_text: yes +relevance: 99 +--- + This code licensed under the "IBM PUBLIC LICENSE" \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_10.yml b/src/licensedcode/data/rules/ibmpl-1.0_10.yml deleted file mode 100644 index 468230d7f62..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_11.RULE b/src/licensedcode/data/rules/ibmpl-1.0_11.RULE index 8d7bc99d09f..92a6e9b5196 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_11.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: IBM Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_11.yml b/src/licensedcode/data/rules/ibmpl-1.0_11.yml deleted file mode 100644 index a899ca3d44b..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibmpl-1.0_12.RULE b/src/licensedcode/data/rules/ibmpl-1.0_12.RULE index 2c74cce35fa..59720b16527 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_12.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + IPL-1.0 IBM Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_12.yml b/src/licensedcode/data/rules/ibmpl-1.0_12.yml deleted file mode 100644 index a899ca3d44b..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibmpl-1.0_13.RULE b/src/licensedcode/data/rules/ibmpl-1.0_13.RULE index c973b9237c8..c59d689165f 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_13.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + IBM Public License v1.0 IPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_13.yml b/src/licensedcode/data/rules/ibmpl-1.0_13.yml deleted file mode 100644 index a899ca3d44b..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibmpl-1.0_14.RULE b/src/licensedcode/data/rules/ibmpl-1.0_14.RULE index 7bd047262f2..b91a1514435 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_14.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: ibmpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: IPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_14.yml b/src/licensedcode/data/rules/ibmpl-1.0_14.yml deleted file mode 100644 index 363bad09b03..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibmpl-1.0_15.RULE b/src/licensedcode/data/rules/ibmpl-1.0_15.RULE index a364ca8418b..f6d4ad2cd9c 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_15.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: ibmpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: IBM Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_15.yml b/src/licensedcode/data/rules/ibmpl-1.0_15.yml deleted file mode 100644 index 363bad09b03..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibmpl-1.0_16.RULE b/src/licensedcode/data/rules/ibmpl-1.0_16.RULE index df010016b1d..f3670874722 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_16.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: ibmpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: IPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_16.yml b/src/licensedcode/data/rules/ibmpl-1.0_16.yml deleted file mode 100644 index 363bad09b03..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ibmpl-1.0_17.RULE b/src/licensedcode/data/rules/ibmpl-1.0_17.RULE index 0a945a18bb4..9eab03c0bb0 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_17.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/IBM_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_17.yml b/src/licensedcode/data/rules/ibmpl-1.0_17.yml deleted file mode 100644 index 61fac7abcb5..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_18.RULE b/src/licensedcode/data/rules/ibmpl-1.0_18.RULE index 4d7a188e407..ccdae05111f 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_18.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/IPL-1.0 +--- + https://licenses.nuget.org/IPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_18.yml b/src/licensedcode/data/rules/ibmpl-1.0_18.yml deleted file mode 100644 index 8b924ef45c3..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/IPL-1.0 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_19.RULE b/src/licensedcode/data/rules/ibmpl-1.0_19.RULE index 826d9d8bfa0..bf1f5d615c5 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_19.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/IPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_19.yml b/src/licensedcode/data/rules/ibmpl-1.0_19.yml deleted file mode 100644 index 61fac7abcb5..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_2.RULE b/src/licensedcode/data/rules/ibmpl-1.0_2.RULE index da08e46ff78..86d9e6919ec 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ibmpl.php +--- + http://www.opensource.org/licenses/ibmpl.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_2.yml b/src/licensedcode/data/rules/ibmpl-1.0_2.yml deleted file mode 100644 index a9c887860e9..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ibmpl.php diff --git a/src/licensedcode/data/rules/ibmpl-1.0_20.RULE b/src/licensedcode/data/rules/ibmpl-1.0_20.RULE index 9c56fb498a2..5c9afe6a3c1 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_20.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/IPL-1.0 +--- + {{IPL-1.0}} https://spdx.org/licenses/IPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_20.yml b/src/licensedcode/data/rules/ibmpl-1.0_20.yml deleted file mode 100644 index 83fcb0001ae..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/IPL-1.0 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_21.RULE b/src/licensedcode/data/rules/ibmpl-1.0_21.RULE index 186d6320b6d..2627196267e 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_21.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/IPL-1.0 +--- + LICENSE {{IPL-1.0}} https://spdx.org/licenses/IPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_21.yml b/src/licensedcode/data/rules/ibmpl-1.0_21.yml deleted file mode 100644 index 83fcb0001ae..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/IPL-1.0 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_3.RULE b/src/licensedcode/data/rules/ibmpl-1.0_3.RULE index f2e54d474f9..5ff4fed0115 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_3.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +--- + IBM Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_3.yml b/src/licensedcode/data/rules/ibmpl-1.0_3.yml deleted file mode 100644 index 61fac7abcb5..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_4.RULE b/src/licensedcode/data/rules/ibmpl-1.0_4.RULE index e2340fab9e6..dc5f0d30485 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_4.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ibmpl-1.0 +is_license_text: yes +--- + IBM Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES @@ -207,4 +212,4 @@ Program not expressly granted under this Agreement are reserved. This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. -Each party waives its rights to a jury trial in any resulting litigation. +Each party waives its rights to a jury trial in any resulting litigation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_4.yml b/src/licensedcode/data/rules/ibmpl-1.0_4.yml deleted file mode 100644 index c608d976924..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/ibmpl-1.0_5.RULE b/src/licensedcode/data/rules/ibmpl-1.0_5.RULE index 998639fa636..15c4f184b31 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_5.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ibmpl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) International Business Machines Corporation and others +ignorable_holders: + - International Business Machines Corporation and others +--- + IBM Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS diff --git a/src/licensedcode/data/rules/ibmpl-1.0_5.yml b/src/licensedcode/data/rules/ibmpl-1.0_5.yml deleted file mode 100644 index ac0f8115c1a..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) International Business Machines Corporation and others -ignorable_holders: - - International Business Machines Corporation and others diff --git a/src/licensedcode/data/rules/ibmpl-1.0_6.RULE b/src/licensedcode/data/rules/ibmpl-1.0_6.RULE index d60dc1ce24c..605291ec9f7 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_6.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_6.RULE @@ -1,2 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + The Secure Mailer license must be distributed with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_6.yml b/src/licensedcode/data/rules/ibmpl-1.0_6.yml deleted file mode 100644 index 7b3bc01362f..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_7.RULE b/src/licensedcode/data/rules/ibmpl-1.0_7.RULE index 66691ec55e7..a753229ec79 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_7.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + LICENSE The Secure Mailer license must be distributed with this diff --git a/src/licensedcode/data/rules/ibmpl-1.0_7.yml b/src/licensedcode/data/rules/ibmpl-1.0_7.yml deleted file mode 100644 index 7b3bc01362f..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_8.RULE b/src/licensedcode/data/rules/ibmpl-1.0_8.RULE index 4820c272d23..b95a348ba57 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_8.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ibmpl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ +--- + distributed under the IBM Public License (IPL). The IPL is an approved open source license (see http://www.opensource.org/licenses/ for a list). It grants similar diff --git a/src/licensedcode/data/rules/ibmpl-1.0_8.yml b/src/licensedcode/data/rules/ibmpl-1.0_8.yml deleted file mode 100644 index d982aded1ab..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ diff --git a/src/licensedcode/data/rules/ibmpl-1.0_9.RULE b/src/licensedcode/data/rules/ibmpl-1.0_9.RULE index 6391f2755f7..c8246356426 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_9.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/IPL-1.0 +--- + `IPL-1.0` - [IBM Public License](https://opensource.org/licenses/IPL-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_9.yml b/src/licensedcode/data/rules/ibmpl-1.0_9.yml deleted file mode 100644 index 56649078db7..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/IPL-1.0 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_1.RULE index 9e97b5a5837..2898146becd 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ibmpl-1.0 AND cpl-1.0 AND gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License: IBM Public License / Common Public License / GPL 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_1.yml deleted file mode 100644 index 13b155eda5e..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibmpl-1.0 AND cpl-1.0 AND gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_2.RULE b/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_2.RULE index 392e8453705..137ebc9e5d4 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ibmpl-1.0 AND cpl-1.0 AND gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + IBM Public License / Common Public License / GPL 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_2.yml b/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_2.yml deleted file mode 100644 index 480b3f3a95a..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_and_cpl-1.0_and_gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibmpl-1.0 AND cpl-1.0 AND gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_1.RULE index 88a79110d57..1c133146630 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ibmpl-1.0 AND other-copyleft +is_license_text: yes +relevance: 100 +notes: an old license based on or preceding the ibmpl Seen in https://fossies.org/linux/misc/old/dx-4.4.4.tar.gz/dx-4.4.4/LICENSE?m=t + and https://github.com/aur-archive/opendx/blob/fe0b9f3b94319f869b8edf2e2093cd11757d42ac/LICENSE +ignorable_copyrights: + - (c) Copyright 1989, 1999 International Business Machines Corporation and others +ignorable_holders: + - International Business Machines Corporation and others +--- + IBM PUBLIC LICENSE - Open Visualization Data Explorer VERSION 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS IBM diff --git a/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_1.yml b/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_1.yml deleted file mode 100644 index 652df7dd37f..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ibmpl-1.0 AND other-copyleft -is_license_text: yes -relevance: 100 -notes: an old license based on or preceding the ibmpl Seen in https://fossies.org/linux/misc/old/dx-4.4.4.tar.gz/dx-4.4.4/LICENSE?m=t - and https://github.com/aur-archive/opendx/blob/fe0b9f3b94319f869b8edf2e2093cd11757d42ac/LICENSE -ignorable_copyrights: - - (c) Copyright 1989, 1999 International Business Machines Corporation and others -ignorable_holders: - - International Business Machines Corporation and others diff --git a/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_2.RULE b/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_2.RULE index 9b5b9c8b331..0ab91af2c0a 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 AND other-copyleft +is_license_text: yes +relevance: 100 +notes: and old license based on or preceding the ibmpl Seen in https://fossies.org/linux/misc/old/dx-4.4.4.tar.gz/dx-4.4.4/LICENSE?m=t + and https://github.com/aur-archive/opendx/blob/fe0b9f3b94319f869b8edf2e2093cd11757d42ac/LICENSE +--- + This code licensed under the "IBM PUBLIC LICENSE - Open Visualization Data Explorer" \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_2.yml b/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_2.yml deleted file mode 100644 index b0d34fcf65c..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_and_other-copyleft_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 AND other-copyleft -is_license_text: yes -relevance: 100 -notes: and old license based on or preceding the ibmpl Seen in https://fossies.org/linux/misc/old/dx-4.4.4.tar.gz/dx-4.4.4/LICENSE?m=t - and https://github.com/aur-archive/opendx/blob/fe0b9f3b94319f869b8edf2e2093cd11757d42ac/LICENSE diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_1.RULE b/src/licensedcode/data/rules/ibmpl-1.0_url_1.RULE index 31a5269210f..ffc34e30997 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ipl-1.0 +--- + https://spdx.org/licenses/ipl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_1.yml b/src/licensedcode/data/rules/ibmpl-1.0_url_1.yml deleted file mode 100644 index 64153968355..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ipl-1.0 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_2.RULE b/src/licensedcode/data/rules/ibmpl-1.0_url_2.RULE index 9589987313f..f00e96b4952 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ipl-1.0.html +--- + https://spdx.org/licenses/ipl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_2.yml b/src/licensedcode/data/rules/ibmpl-1.0_url_2.yml deleted file mode 100644 index b0f6a3e7313..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ipl-1.0.html diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_badge.RULE b/src/licensedcode/data/rules/ibmpl-1.0_url_badge.RULE index c00ba0ea873..15612bf43f2 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_badge.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-IPL%201.0-blue.svg + - https://opensource.org/licenses/IPL-1.0 +--- + [![License: IPL 1.0](https://img.shields.io/badge/License-IPL%201.0-blue.svg)](https://opensource.org/licenses/IPL-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_badge.yml b/src/licensedcode/data/rules/ibmpl-1.0_url_badge.yml deleted file mode 100644 index cda53e05439..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-IPL%201.0-blue.svg - - https://opensource.org/licenses/IPL-1.0 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_glc_174.RULE b/src/licensedcode/data/rules/ibmpl-1.0_url_glc_174.RULE index 024f974ccaf..12c93224deb 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_glc_174.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_url_glc_174.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ipl-1.0 +--- + http://www.opensource.org/licenses/ipl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_glc_174.yml b/src/licensedcode/data/rules/ibmpl-1.0_url_glc_174.yml deleted file mode 100644 index e0159cd3fdd..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_glc_174.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ipl-1.0 diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_glc_175.RULE b/src/licensedcode/data/rules/ibmpl-1.0_url_glc_175.RULE index c6241fe87c2..8f3cf1f2fc0 100644 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_glc_175.RULE +++ b/src/licensedcode/data/rules/ibmpl-1.0_url_glc_175.RULE @@ -1 +1,9 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ipl-1.0 +--- + https://www.opensource.org/licenses/ipl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ibmpl-1.0_url_glc_175.yml b/src/licensedcode/data/rules/ibmpl-1.0_url_glc_175.yml deleted file mode 100644 index 0ea4b990b0e..00000000000 --- a/src/licensedcode/data/rules/ibmpl-1.0_url_glc_175.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ipl-1.0 diff --git a/src/licensedcode/data/rules/ic-1.0_1.RULE b/src/licensedcode/data/rules/ic-1.0_1.RULE index 62b48d91d24..368f92b9094 100644 --- a/src/licensedcode/data/rules/ic-1.0_1.RULE +++ b/src/licensedcode/data/rules/ic-1.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ic-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - /licenses/IC-1.0.txt +ignorable_urls: + - http://dfinity.org/licenses/IC-1.0 +--- + Each file in this directory is licensed under the license as described in the LICENSE file in the same directory that contains the file or, if that doesn't exist, the first LICENSE file in any diff --git a/src/licensedcode/data/rules/ic-1.0_1.yml b/src/licensedcode/data/rules/ic-1.0_1.yml deleted file mode 100644 index 773ee1a8f90..00000000000 --- a/src/licensedcode/data/rules/ic-1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ic-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - /licenses/IC-1.0.txt -ignorable_urls: - - http://dfinity.org/licenses/IC-1.0 diff --git a/src/licensedcode/data/rules/ic-1.0_2.RULE b/src/licensedcode/data/rules/ic-1.0_2.RULE index 5f90f9b39b0..77602582f9e 100644 --- a/src/licensedcode/data/rules/ic-1.0_2.RULE +++ b/src/licensedcode/data/rules/ic-1.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ic-1.0 +is_license_notice: yes +referenced_filenames: + - /licenses/IC-1.0.txt +ignorable_urls: + - http://dfinity.org/licenses/IC-1.0 +--- + Some files in this repository are licensed under the Internet Computer Community Source License, Version 1.0 of which you can obtain a copy of at: diff --git a/src/licensedcode/data/rules/ic-1.0_2.yml b/src/licensedcode/data/rules/ic-1.0_2.yml deleted file mode 100644 index 72f68fc2010..00000000000 --- a/src/licensedcode/data/rules/ic-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ic-1.0 -is_license_notice: yes -referenced_filenames: - - /licenses/IC-1.0.txt -ignorable_urls: - - http://dfinity.org/licenses/IC-1.0 diff --git a/src/licensedcode/data/rules/ic-shared-1.0_1.RULE b/src/licensedcode/data/rules/ic-shared-1.0_1.RULE index 4733e92fdc7..c119d552569 100644 --- a/src/licensedcode/data/rules/ic-shared-1.0_1.RULE +++ b/src/licensedcode/data/rules/ic-shared-1.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ic-shared-1.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - /licenses/IC-shared-1.0.txt +ignorable_urls: + - http://dfinity.org/licenses/IC-shared-1.0 +--- + Each file in this directory is licensed under the license as described in the LICENSE file in the same directory that contains the file or, if that doesn't exist, the first LICENSE file in any diff --git a/src/licensedcode/data/rules/ic-shared-1.0_1.yml b/src/licensedcode/data/rules/ic-shared-1.0_1.yml deleted file mode 100644 index 9980c49f77f..00000000000 --- a/src/licensedcode/data/rules/ic-shared-1.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ic-shared-1.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - /licenses/IC-shared-1.0.txt -ignorable_urls: - - http://dfinity.org/licenses/IC-shared-1.0 diff --git a/src/licensedcode/data/rules/ic-shared-1.0_2.RULE b/src/licensedcode/data/rules/ic-shared-1.0_2.RULE index 39ed404baa1..257b1542c61 100644 --- a/src/licensedcode/data/rules/ic-shared-1.0_2.RULE +++ b/src/licensedcode/data/rules/ic-shared-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ic-shared-1.0 +is_license_notice: yes +ignorable_urls: + - http://dfinity.org/licenses/IC-shared-1.0 +--- + Some other files are licensed under the Internet Computer Shared Community Source License, Version 1.0 of which you can obtain a copy of at: diff --git a/src/licensedcode/data/rules/ic-shared-1.0_2.yml b/src/licensedcode/data/rules/ic-shared-1.0_2.yml deleted file mode 100644 index 79d357ece72..00000000000 --- a/src/licensedcode/data/rules/ic-shared-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ic-shared-1.0 -is_license_notice: yes -ignorable_urls: - - http://dfinity.org/licenses/IC-shared-1.0 diff --git a/src/licensedcode/data/rules/icann-public_1.RULE b/src/licensedcode/data/rules/icann-public_1.RULE index 6f6bd64c9ef..e1e719ef889 100644 --- a/src/licensedcode/data/rules/icann-public_1.RULE +++ b/src/licensedcode/data/rules/icann-public_1.RULE @@ -1 +1,7 @@ +--- +license_expression: icann-public +is_license_tag: yes +relevance: 100 +--- + License: ICANN-Public \ No newline at end of file diff --git a/src/licensedcode/data/rules/icann-public_1.yml b/src/licensedcode/data/rules/icann-public_1.yml deleted file mode 100644 index c9364ee2e2b..00000000000 --- a/src/licensedcode/data/rules/icann-public_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: icann-public -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ice-exception-2.0_1.RULE b/src/licensedcode/data/rules/ice-exception-2.0_1.RULE index 1160430047d..5de89498f7b 100644 --- a/src/licensedcode/data/rules/ice-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/ice-exception-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: gpl-2.0 WITH ice-exception-2.0 +is_license_notice: yes +ignorable_urls: + - http://mumble.sourceforge.net/ + - http://orca-robotics.sourceforge.net/ + - http://www.apache.org/licenses/LICENSE-2.0.html + - http://www.gnu.org/licenses +--- + This copy of Ice 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. @@ -37,4 +47,4 @@ (http://www.apache.org/licenses/LICENSE-2.0.html) If you modify this copy of Ice, you may extend any of the exceptions provided above to your version of Ice, but you are not obligated to - do so. + do so. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ice-exception-2.0_1.yml b/src/licensedcode/data/rules/ice-exception-2.0_1.yml deleted file mode 100644 index 3ff46ee1ad0..00000000000 --- a/src/licensedcode/data/rules/ice-exception-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: gpl-2.0 WITH ice-exception-2.0 -is_license_notice: yes -ignorable_urls: - - http://mumble.sourceforge.net/ - - http://orca-robotics.sourceforge.net/ - - http://www.apache.org/licenses/LICENSE-2.0.html - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/ietf-trust.RULE b/src/licensedcode/data/rules/ietf-trust.RULE index 78500e165ca..6eaac2616db 100644 --- a/src/licensedcode/data/rules/ietf-trust.RULE +++ b/src/licensedcode/data/rules/ietf-trust.RULE @@ -1 +1,10 @@ +--- +license_expression: ietf-trust +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf +--- + http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf-trust.yml b/src/licensedcode/data/rules/ietf-trust.yml deleted file mode 100644 index cf41cfbd7c4..00000000000 --- a/src/licensedcode/data/rules/ietf-trust.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ietf-trust -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://trustee.ietf.org/docs/IETF-Trust-License-Policy.pdf diff --git a/src/licensedcode/data/rules/ietf-trust_1.RULE b/src/licensedcode/data/rules/ietf-trust_1.RULE index c3cd60a3ed5..a9a956839bb 100644 --- a/src/licensedcode/data/rules/ietf-trust_1.RULE +++ b/src/licensedcode/data/rules/ietf-trust_1.RULE @@ -1,3 +1,25 @@ +--- +license_expression: ietf-trust +is_license_text: yes +ignorable_copyrights: + - Copyright (c) IETF Trust + - Copyright (c) IETF Trust and the persons identified as the document authors +ignorable_holders: + - IETF Trust + - IETF Trust and the persons identified as the document authors +ignorable_authors: + - IETF Trust + - the IETF Trust +ignorable_urls: + - http://opensource.org/licenses/bsd-license.php + - http://trustee.ietf.org/license-info + - http://trustee.ietf.org/policyandprocedures.html + - http://www.ietf.org/ipr +ignorable_emails: + - ietf-ipr@ietf.org + - trustees@ietf.org +--- + 1. Background The IETF Trust was formed on December 15, 2005, for, among other things, the purpose of acquiring, holding, maintaining and licensing certain existing and future intellectual property used in connection with the Internet standards process and its administration, for the advancement of science and technology associated with the Internet and related technology. Accordingly, pursuant to RFC 5378, Contributors grant the IETF Trust certain licenses with respect to their IETF Contributions. In RFC 5377, the IETF Community has provided the IETF Trust with guidance regarding licenses that the IETF Trust should grant to others with respect to such IETF Contributions and IETF Documents. These Legal Provisions describe the rights and licenses that the IETF Trust grants to others with respect to such IETF Contributions and IETF Documents; as well as certain restrictions, limitations and notices relating to IETF Documents. These Legal Provisions also apply to other document streams that have requested that the IETF Trust act as licensing administrator, as described in Section 8 below. Capitalized terms used in these Legal Provisions that are not otherwise defined have the meanings set forth in RFC 5378. @@ -289,4 +311,4 @@ licensing administrator for the IRTF Document Stream and that these Legal Provis applied to documents submitted and published in the IRTF Document Stream following December 28, 2009. Section 4 of these Legal Provisions shall not apply to documents in the IRTF Document Stream, and all references to Section 4 hereof shall be disregarded with respect -to documents in the IRTF Document Stream. \ No newline at end of file +to documents in the IRTF Document Stream. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf-trust_1.yml b/src/licensedcode/data/rules/ietf-trust_1.yml deleted file mode 100644 index cb1bbb64f14..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_1.yml +++ /dev/null @@ -1,19 +0,0 @@ -license_expression: ietf-trust -is_license_text: yes -ignorable_copyrights: - - Copyright (c) IETF Trust - - Copyright (c) IETF Trust and the persons identified as the document authors -ignorable_holders: - - IETF Trust - - IETF Trust and the persons identified as the document authors -ignorable_authors: - - IETF Trust - - the IETF Trust -ignorable_urls: - - http://opensource.org/licenses/bsd-license.php - - http://trustee.ietf.org/license-info - - http://trustee.ietf.org/policyandprocedures.html - - http://www.ietf.org/ipr -ignorable_emails: - - ietf-ipr@ietf.org - - trustees@ietf.org diff --git a/src/licensedcode/data/rules/ietf-trust_10.RULE b/src/licensedcode/data/rules/ietf-trust_10.RULE index 1281fed7ce3..1446a976b34 100644 --- a/src/licensedcode/data/rules/ietf-trust_10.RULE +++ b/src/licensedcode/data/rules/ietf-trust_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ietf-trust +is_license_notice: yes +relevance: 100 +--- + This document is subject to the rights, licenses and restrictions contained in BCP 78, and except as set forth therein, the authors retain all their rights. diff --git a/src/licensedcode/data/rules/ietf-trust_10.yml b/src/licensedcode/data/rules/ietf-trust_10.yml deleted file mode 100644 index ae1fcf9661d..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ietf-trust -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ietf-trust_2.RULE b/src/licensedcode/data/rules/ietf-trust_2.RULE index e6bf42224d0..62b9c7c9994 100644 --- a/src/licensedcode/data/rules/ietf-trust_2.RULE +++ b/src/licensedcode/data/rules/ietf-trust_2.RULE @@ -1 +1,10 @@ -http://trustee.ietf.org/license-info/ +--- +license_expression: ietf-trust +is_license_reference: yes +relevance: 100 +notes: http://trustee.ietf.org/license-info/ +ignorable_urls: + - http://trustee.ietf.org/license-info/ +--- + +http://trustee.ietf.org/license-info/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf-trust_2.yml b/src/licensedcode/data/rules/ietf-trust_2.yml deleted file mode 100644 index a92c5ef564d..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ietf-trust -is_license_reference: yes -relevance: 100 -notes: http://trustee.ietf.org/license-info/ -ignorable_urls: - - http://trustee.ietf.org/license-info/ diff --git a/src/licensedcode/data/rules/ietf-trust_3.RULE b/src/licensedcode/data/rules/ietf-trust_3.RULE index 52e6b256030..10e281ccdf3 100644 --- a/src/licensedcode/data/rules/ietf-trust_3.RULE +++ b/src/licensedcode/data/rules/ietf-trust_3.RULE @@ -1 +1,10 @@ -http://trustee.ietf.org/policyandprocedures.html +--- +license_expression: ietf-trust +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://trustee.ietf.org/policyandprocedures.html +--- + +http://trustee.ietf.org/policyandprocedures.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf-trust_3.yml b/src/licensedcode/data/rules/ietf-trust_3.yml deleted file mode 100644 index 8dd3729673c..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ietf-trust -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://trustee.ietf.org/policyandprocedures.html diff --git a/src/licensedcode/data/rules/ietf-trust_4.RULE b/src/licensedcode/data/rules/ietf-trust_4.RULE index 5b92083b78e..12caa173493 100644 --- a/src/licensedcode/data/rules/ietf-trust_4.RULE +++ b/src/licensedcode/data/rules/ietf-trust_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ietf-trust +is_license_notice: yes +ignorable_urls: + - http://trustee.ietf.org/license-info +--- + This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info) in effect on the date of @@ -18,4 +25,4 @@ the copyright in such materials, this document may not be modified outside the IETF Standards Process, and derivative works of it may not be created outside the IETF Standards Process, except to format it for publication as an RFC or to translate it into languages other -than English. +than English. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf-trust_4.yml b/src/licensedcode/data/rules/ietf-trust_4.yml deleted file mode 100644 index 34479b2d135..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ietf-trust -is_license_notice: yes -ignorable_urls: - - http://trustee.ietf.org/license-info diff --git a/src/licensedcode/data/rules/ietf-trust_5.RULE b/src/licensedcode/data/rules/ietf-trust_5.RULE index d5ded09dac3..247b0530a3c 100644 --- a/src/licensedcode/data/rules/ietf-trust_5.RULE +++ b/src/licensedcode/data/rules/ietf-trust_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ietf-trust +is_license_notice: yes +--- + This document is subject to the rights, licenses and restrictions contained in BCP 78, and except as set forth therein, the authors retain all their rights. @@ -8,4 +13,4 @@ THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED - WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf-trust_5.yml b/src/licensedcode/data/rules/ietf-trust_5.yml deleted file mode 100644 index 55dbce7235f..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ietf-trust -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ietf-trust_6.RULE b/src/licensedcode/data/rules/ietf-trust_6.RULE index 6225e8a59cb..3a8b2445514 100644 --- a/src/licensedcode/data/rules/ietf-trust_6.RULE +++ b/src/licensedcode/data/rules/ietf-trust_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ietf-trust +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://trustee.ietf.org/license-info +--- + This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info) in effect on the date of diff --git a/src/licensedcode/data/rules/ietf-trust_6.yml b/src/licensedcode/data/rules/ietf-trust_6.yml deleted file mode 100644 index 56363519360..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ietf-trust -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://trustee.ietf.org/license-info diff --git a/src/licensedcode/data/rules/ietf-trust_7.RULE b/src/licensedcode/data/rules/ietf-trust_7.RULE index 52d91e0498b..21097bf2f70 100644 --- a/src/licensedcode/data/rules/ietf-trust_7.RULE +++ b/src/licensedcode/data/rules/ietf-trust_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ietf-trust +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://trustee.ietf.org/license-info +--- + This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of diff --git a/src/licensedcode/data/rules/ietf-trust_7.yml b/src/licensedcode/data/rules/ietf-trust_7.yml deleted file mode 100644 index 3f3bb05c283..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ietf-trust -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://trustee.ietf.org/license-info diff --git a/src/licensedcode/data/rules/ietf-trust_8.RULE b/src/licensedcode/data/rules/ietf-trust_8.RULE index 2b7a96c07dd..29f760c6148 100644 --- a/src/licensedcode/data/rules/ietf-trust_8.RULE +++ b/src/licensedcode/data/rules/ietf-trust_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ietf-trust +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://trustee.ietf.org/trust-legal-provisions.html +--- + This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/trust-legal-provisions.html) in effect on the date of diff --git a/src/licensedcode/data/rules/ietf-trust_8.yml b/src/licensedcode/data/rules/ietf-trust_8.yml deleted file mode 100644 index c319ec85e72..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ietf-trust -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://trustee.ietf.org/trust-legal-provisions.html diff --git a/src/licensedcode/data/rules/ietf-trust_9.RULE b/src/licensedcode/data/rules/ietf-trust_9.RULE index 279b894a3a0..923e0404fb5 100644 --- a/src/licensedcode/data/rules/ietf-trust_9.RULE +++ b/src/licensedcode/data/rules/ietf-trust_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ietf-trust +is_license_notice: yes +relevance: 100 +--- + This document is subject to the rights, licenses and restrictions contained in BCP 78, and except as set forth therein, the authors retain all their rights. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf-trust_9.yml b/src/licensedcode/data/rules/ietf-trust_9.yml deleted file mode 100644 index ae1fcf9661d..00000000000 --- a/src/licensedcode/data/rules/ietf-trust_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ietf-trust -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ietf.RULE b/src/licensedcode/data/rules/ietf.RULE index 1d71aa166ec..e3857d64053 100644 --- a/src/licensedcode/data/rules/ietf.RULE +++ b/src/licensedcode/data/rules/ietf.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ietf +is_license_text: yes +notes: license text, with page breaks and hyphenation +--- + This document and translations of it may be copied and furnished to oth- ers, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and dis- @@ -19,4 +25,4 @@ IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FIT- -NESS FOR A PARTICULAR PURPOSE. +NESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf.yml b/src/licensedcode/data/rules/ietf.yml deleted file mode 100644 index 7f9d0c965ac..00000000000 --- a/src/licensedcode/data/rules/ietf.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ietf -is_license_text: yes -notes: license text, with page breaks and hyphenation diff --git a/src/licensedcode/data/rules/ietf_1.RULE b/src/licensedcode/data/rules/ietf_1.RULE index 7c4f251025f..711d0223d59 100644 --- a/src/licensedcode/data/rules/ietf_1.RULE +++ b/src/licensedcode/data/rules/ietf_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ietf +is_license_text: yes +notes: IETF license text, with typos +--- + This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implmentation may be prepared, copied, published @@ -20,5 +26,4 @@ TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF - MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - \ No newline at end of file + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf_1.yml b/src/licensedcode/data/rules/ietf_1.yml deleted file mode 100644 index 9743b7c1019..00000000000 --- a/src/licensedcode/data/rules/ietf_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ietf -is_license_text: yes -notes: IETF license text, with typos diff --git a/src/licensedcode/data/rules/ietf_2.RULE b/src/licensedcode/data/rules/ietf_2.RULE index 89823f62ab6..70ee781dd29 100644 --- a/src/licensedcode/data/rules/ietf_2.RULE +++ b/src/licensedcode/data/rules/ietf_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ietf +is_license_notice: yes +notes: IETF license text, with typos +ignorable_copyrights: + - Copyright (c) The Internet Society +ignorable_holders: + - The Internet Society +--- + Full Copyright Statement Copyright (C) The Internet Society . All Rights Reserved. @@ -29,4 +39,4 @@ Full Copyright Statement Acknowledgement Funding for the RFC editor function is currently provided by the - Internet Society. + Internet Society. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf_2.yml b/src/licensedcode/data/rules/ietf_2.yml deleted file mode 100644 index f2968ebba61..00000000000 --- a/src/licensedcode/data/rules/ietf_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ietf -is_license_notice: yes -notes: IETF license text, with typos -ignorable_copyrights: - - Copyright (c) The Internet Society -ignorable_holders: - - The Internet Society diff --git a/src/licensedcode/data/rules/ietf_3.RULE b/src/licensedcode/data/rules/ietf_3.RULE index 4c695e89f6f..79baeb68c07 100644 --- a/src/licensedcode/data/rules/ietf_3.RULE +++ b/src/licensedcode/data/rules/ietf_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ietf +is_license_notice: yes +notes: IETF license text, with typos +ignorable_copyrights: + - Copyright (c) The Internet Society +ignorable_holders: + - The Internet Society +--- + Full Copyright Statement Copyright (C) The Internet Society . All Rights Reserved. @@ -23,5 +33,4 @@ TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF - MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf_3.yml b/src/licensedcode/data/rules/ietf_3.yml deleted file mode 100644 index f2968ebba61..00000000000 --- a/src/licensedcode/data/rules/ietf_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ietf -is_license_notice: yes -notes: IETF license text, with typos -ignorable_copyrights: - - Copyright (c) The Internet Society -ignorable_holders: - - The Internet Society diff --git a/src/licensedcode/data/rules/ietf_4.RULE b/src/licensedcode/data/rules/ietf_4.RULE index 1c88e318f1d..ae6a97dd164 100644 --- a/src/licensedcode/data/rules/ietf_4.RULE +++ b/src/licensedcode/data/rules/ietf_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ietf +is_license_text: yes +notes: IETF license text, with typos +ignorable_copyrights: + - Copyright (c) The Internet Society (1999) +ignorable_holders: + - The Internet Society +--- + Full Copyright Statement Copyright (C) The Internet Society (1999). All Rights Reserved. @@ -23,4 +33,4 @@ IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FIT- -NESS FOR A PARTICULAR PURPOSE. +NESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf_4.yml b/src/licensedcode/data/rules/ietf_4.yml deleted file mode 100644 index a945ae2244a..00000000000 --- a/src/licensedcode/data/rules/ietf_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ietf -is_license_text: yes -notes: IETF license text, with typos -ignorable_copyrights: - - Copyright (c) The Internet Society (1999) -ignorable_holders: - - The Internet Society diff --git a/src/licensedcode/data/rules/ietf_5.RULE b/src/licensedcode/data/rules/ietf_5.RULE index 77ce10f86d3..971ac0e6435 100644 --- a/src/licensedcode/data/rules/ietf_5.RULE +++ b/src/licensedcode/data/rules/ietf_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ietf +is_license_notice: yes +notes: IETF license text, with typos +ignorable_copyrights: + - Copyright (c) The Internet Society (1999) +ignorable_holders: + - The Internet Society +--- + Full Copyright Statement Copyright (C) The Internet Society (1999). All Rights Reserved. @@ -24,4 +34,4 @@ Full Copyright Statement TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF - MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf_5.yml b/src/licensedcode/data/rules/ietf_5.yml deleted file mode 100644 index 53c7f912927..00000000000 --- a/src/licensedcode/data/rules/ietf_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ietf -is_license_notice: yes -notes: IETF license text, with typos -ignorable_copyrights: - - Copyright (c) The Internet Society (1999) -ignorable_holders: - - The Internet Society diff --git a/src/licensedcode/data/rules/ietf_6.RULE b/src/licensedcode/data/rules/ietf_6.RULE index a57755f7ef5..2f297d18e1d 100644 --- a/src/licensedcode/data/rules/ietf_6.RULE +++ b/src/licensedcode/data/rules/ietf_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ietf +is_license_text: yes +relevance: 90 +--- + The Internet Society. All Rights Reserved. This document and translations of it may be copied and furnished to diff --git a/src/licensedcode/data/rules/ietf_6.yml b/src/licensedcode/data/rules/ietf_6.yml deleted file mode 100644 index fb567a034df..00000000000 --- a/src/licensedcode/data/rules/ietf_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ietf -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/ietf_7.RULE b/src/licensedcode/data/rules/ietf_7.RULE index 9d0f6d40b27..508dae3db66 100644 --- a/src/licensedcode/data/rules/ietf_7.RULE +++ b/src/licensedcode/data/rules/ietf_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ietf +is_license_text: yes +relevance: 90 +--- + This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published @@ -13,4 +19,4 @@ English. . The limited permissions granted above are perpetual and will not be - revoked by the Internet Society or its successors or assigns. + revoked by the Internet Society or its successors or assigns. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ietf_7.yml b/src/licensedcode/data/rules/ietf_7.yml deleted file mode 100644 index fb567a034df..00000000000 --- a/src/licensedcode/data/rules/ietf_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ietf -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/ijg_1.RULE b/src/licensedcode/data/rules/ijg_1.RULE index 4557fdf157a..a2b54852fe2 100644 --- a/src/licensedcode/data/rules/ijg_1.RULE +++ b/src/licensedcode/data/rules/ijg_1.RULE @@ -1 +1,8 @@ -This software is based in part on the work of the Independent JPEG Group. +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +--- + +This software is based in part on the work of the Independent JPEG Group. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_1.yml b/src/licensedcode/data/rules/ijg_1.yml deleted file mode 100644 index 808b7ee5409..00000000000 --- a/src/licensedcode/data/rules/ijg_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/ijg_10.RULE b/src/licensedcode/data/rules/ijg_10.RULE index 06169aa75c2..f8ae72bcc7a 100644 --- a/src/licensedcode/data/rules/ijg_10.RULE +++ b/src/licensedcode/data/rules/ijg_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + You must also agree to be bound by the terms of the Independent JPEG Group license for the portions of this library that are based on the work of the Independent JPEG Group, if you use those portions \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_10.yml b/src/licensedcode/data/rules/ijg_10.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_11.RULE b/src/licensedcode/data/rules/ijg_11.RULE index a039dffcc37..27dbb94d129 100644 --- a/src/licensedcode/data/rules/ijg_11.RULE +++ b/src/licensedcode/data/rules/ijg_11.RULE @@ -1 +1,7 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + file contains the Independent JPEG Group license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_11.yml b/src/licensedcode/data/rules/ijg_11.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_12.RULE b/src/licensedcode/data/rules/ijg_12.RULE index a1d7afaf652..ce379b5e5d8 100644 --- a/src/licensedcode/data/rules/ijg_12.RULE +++ b/src/licensedcode/data/rules/ijg_12.RULE @@ -1 +1,7 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +--- + the Independent JPEG Group license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_12.yml b/src/licensedcode/data/rules/ijg_12.yml deleted file mode 100644 index 208ee47d65e..00000000000 --- a/src/licensedcode/data/rules/ijg_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_13.RULE b/src/licensedcode/data/rules/ijg_13.RULE index f5794b682ef..52f7ee295be 100644 --- a/src/licensedcode/data/rules/ijg_13.RULE +++ b/src/licensedcode/data/rules/ijg_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This software is based in part on the work of the Independent JPEG Group. ---------------------- @@ -5,4 +12,4 @@ This software is based in part on the work of the Independent JPEG Group. The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and you, -its user, assume the entire risk as to its quality and accuracy. +its user, assume the entire risk as to its quality and accuracy. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_13.yml b/src/licensedcode/data/rules/ijg_13.yml deleted file mode 100644 index c392e7ccda0..00000000000 --- a/src/licensedcode/data/rules/ijg_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/ijg_14.RULE b/src/licensedcode/data/rules/ijg_14.RULE index 9abcbb13693..a9a6ed02814 100644 --- a/src/licensedcode/data/rules/ijg_14.RULE +++ b/src/licensedcode/data/rules/ijg_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + IT IS INCLUDED VERBATIM, INCLUDING ITS COPYRIGHT AND LICENSE NOTICES, IN THE PACKAGE AS ONE OF THE TERMS UNDER WHICH THE INDEPENDENT JPEG GROUP GRANTED diff --git a/src/licensedcode/data/rules/ijg_14.yml b/src/licensedcode/data/rules/ijg_14.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_15.RULE b/src/licensedcode/data/rules/ijg_15.RULE index 1c552a3676b..9159c371f88 100644 --- a/src/licensedcode/data/rules/ijg_15.RULE +++ b/src/licensedcode/data/rules/ijg_15.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.ijg.org/files/jpegsrc.v8c.tar.gz +--- + It is based on the code in from the Independent JPEG Group, found at http://www.ijg.org/files/jpegsrc.v8c.tar.gz. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_15.yml b/src/licensedcode/data/rules/ijg_15.yml deleted file mode 100644 index 87264c81f18..00000000000 --- a/src/licensedcode/data/rules/ijg_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.ijg.org/files/jpegsrc.v8c.tar.gz diff --git a/src/licensedcode/data/rules/ijg_16.RULE b/src/licensedcode/data/rules/ijg_16.RULE index 29e3375b415..f0abd68a86e 100644 --- a/src/licensedcode/data/rules/ijg_16.RULE +++ b/src/licensedcode/data/rules/ijg_16.RULE @@ -1 +1,7 @@ - * This file was part of the Independent JPEG Group's software: +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + + * This file was part of the Independent JPEG Group's software: \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_16.yml b/src/licensedcode/data/rules/ijg_16.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_17.RULE b/src/licensedcode/data/rules/ijg_17.RULE index f794db16615..0315e338eb3 100644 --- a/src/licensedcode/data/rules/ijg_17.RULE +++ b/src/licensedcode/data/rules/ijg_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ijg +is_license_text: yes +relevance: 100 +referenced_filenames: + - README +--- + Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for any purpose, without fee, subject to these conditions: @@ -10,4 +18,4 @@ the Independent JPEG Group". (3) Permission for use of this software is granted only if the user accepts full responsibility for any undesirable consequences; the authors accept - NO LIABILITY for damages of any kind. + NO LIABILITY for damages of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_17.yml b/src/licensedcode/data/rules/ijg_17.yml deleted file mode 100644 index 122d873f5a1..00000000000 --- a/src/licensedcode/data/rules/ijg_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ijg -is_license_text: yes -relevance: 100 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/ijg_18.RULE b/src/licensedcode/data/rules/ijg_18.RULE index 45d5b7dcad5..2afb343efcb 100644 --- a/src/licensedcode/data/rules/ijg_18.RULE +++ b/src/licensedcode/data/rules/ijg_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + This distribution contains the ninth public release of the Independent JPEG Group's free JPEG software. You are welcome to redistribute this software and to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_18.yml b/src/licensedcode/data/rules/ijg_18.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_19.RULE b/src/licensedcode/data/rules/ijg_19.RULE index 8d7efdcc784..94fade334c9 100644 --- a/src/licensedcode/data/rules/ijg_19.RULE +++ b/src/licensedcode/data/rules/ijg_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + This distribution contains the eigth public release of the Independent JPEG Group's free JPEG software. You are welcome to redistribute this software and to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_19.yml b/src/licensedcode/data/rules/ijg_19.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_2.RULE b/src/licensedcode/data/rules/ijg_2.RULE index 8e4a1785ed0..c2202edeebb 100644 --- a/src/licensedcode/data/rules/ijg_2.RULE +++ b/src/licensedcode/data/rules/ijg_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/IJG +--- + http://fedoraproject.org/wiki/Licensing/IJG \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_2.yml b/src/licensedcode/data/rules/ijg_2.yml deleted file mode 100644 index 2d72cad1c56..00000000000 --- a/src/licensedcode/data/rules/ijg_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/IJG diff --git a/src/licensedcode/data/rules/ijg_20.RULE b/src/licensedcode/data/rules/ijg_20.RULE index 5cdbe6f28a0..1bfb8c3cdff 100644 --- a/src/licensedcode/data/rules/ijg_20.RULE +++ b/src/licensedcode/data/rules/ijg_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + This distribution contains the seventh public release of the Independent JPEG Group's free JPEG software. You are welcome to redistribute this software and to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_20.yml b/src/licensedcode/data/rules/ijg_20.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_21.RULE b/src/licensedcode/data/rules/ijg_21.RULE index 908d951821f..2698ac41c98 100644 --- a/src/licensedcode/data/rules/ijg_21.RULE +++ b/src/licensedcode/data/rules/ijg_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + This distribution contains the sixth public release of the Independent JPEG Group's free JPEG software. You are welcome to redistribute this software and to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_21.yml b/src/licensedcode/data/rules/ijg_21.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_22.RULE b/src/licensedcode/data/rules/ijg_22.RULE index 45ccd151533..83b5b1eb3f0 100644 --- a/src/licensedcode/data/rules/ijg_22.RULE +++ b/src/licensedcode/data/rules/ijg_22.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + This distribution contains the fifth public release of the Independent JPEG Group's free JPEG software. You are welcome to redistribute this software and to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_22.yml b/src/licensedcode/data/rules/ijg_22.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_23.RULE b/src/licensedcode/data/rules/ijg_23.RULE index a0d34cd9194..d6cd0c1f9b4 100644 --- a/src/licensedcode/data/rules/ijg_23.RULE +++ b/src/licensedcode/data/rules/ijg_23.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + This distribution contains the fourth public release of the Independent JPEG Group's free JPEG software. You are welcome to redistribute this software and to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_23.yml b/src/licensedcode/data/rules/ijg_23.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_24.RULE b/src/licensedcode/data/rules/ijg_24.RULE index 996ddffec41..9cdeacc6082 100644 --- a/src/licensedcode/data/rules/ijg_24.RULE +++ b/src/licensedcode/data/rules/ijg_24.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + This distribution contains the third public release of the Independent JPEG Group's free JPEG software. You are welcome to redistribute this software and to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_24.yml b/src/licensedcode/data/rules/ijg_24.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_25.RULE b/src/licensedcode/data/rules/ijg_25.RULE index 7577899f19c..0e9e86d052c 100644 --- a/src/licensedcode/data/rules/ijg_25.RULE +++ b/src/licensedcode/data/rules/ijg_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +--- + This distribution contains the second public release of the Independent JPEG Group's free JPEG software. You are welcome to redistribute this software and to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_25.yml b/src/licensedcode/data/rules/ijg_25.yml deleted file mode 100644 index 76d8bd03b22..00000000000 --- a/src/licensedcode/data/rules/ijg_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_26.RULE b/src/licensedcode/data/rules/ijg_26.RULE index 14137bbf49c..0eb1705bd32 100644 --- a/src/licensedcode/data/rules/ijg_26.RULE +++ b/src/licensedcode/data/rules/ijg_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +--- + LEGAL ISSUES diff --git a/src/licensedcode/data/rules/ijg_26.yml b/src/licensedcode/data/rules/ijg_26.yml deleted file mode 100644 index d108c7d334e..00000000000 --- a/src/licensedcode/data/rules/ijg_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/ijg_27.RULE b/src/licensedcode/data/rules/ijg_27.RULE index f9d15bbcce6..f12889674ca 100644 --- a/src/licensedcode/data/rules/ijg_27.RULE +++ b/src/licensedcode/data/rules/ijg_27.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ijg +is_license_text: yes +relevance: 100 +--- + In legalese: The authors make NO WARRANTY or representation, either express or implied, diff --git a/src/licensedcode/data/rules/ijg_27.yml b/src/licensedcode/data/rules/ijg_27.yml deleted file mode 100644 index 77c63565d2e..00000000000 --- a/src/licensedcode/data/rules/ijg_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_28.RULE b/src/licensedcode/data/rules/ijg_28.RULE index a24823d8326..1c69fed04f5 100644 --- a/src/licensedcode/data/rules/ijg_28.RULE +++ b/src/licensedcode/data/rules/ijg_28.RULE @@ -1 +1,7 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +--- + taken from libjpeg, see the top of the files for licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_28.yml b/src/licensedcode/data/rules/ijg_28.yml deleted file mode 100644 index 208ee47d65e..00000000000 --- a/src/licensedcode/data/rules/ijg_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_29.RULE b/src/licensedcode/data/rules/ijg_29.RULE index a29e739546d..2e0ebbac633 100644 --- a/src/licensedcode/data/rules/ijg_29.RULE +++ b/src/licensedcode/data/rules/ijg_29.RULE @@ -1,3 +1,19 @@ +--- +license_expression: ijg +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright property of CompuServe Incorporated + - copyright (c) 1991-2016, Thomas G. Lane, Guido Vollbeding + - copyright by X Consortium + - copyright by the Free Software Foundation +ignorable_holders: + - CompuServe Incorporated + - Thomas G. Lane, Guido Vollbeding + - X Consortium + - the Free Software Foundation +--- + libjpeg license, Independent JPEG Group This license applies to the libjpeg API library and associated programs diff --git a/src/licensedcode/data/rules/ijg_29.yml b/src/licensedcode/data/rules/ijg_29.yml deleted file mode 100644 index 2fbf86bfb95..00000000000 --- a/src/licensedcode/data/rules/ijg_29.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: ijg -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright property of CompuServe Incorporated - - copyright (c) 1991-2016, Thomas G. Lane, Guido Vollbeding - - copyright by X Consortium - - copyright by the Free Software Foundation -ignorable_holders: - - CompuServe Incorporated - - Thomas G. Lane, Guido Vollbeding - - X Consortium - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/ijg_3.RULE b/src/licensedcode/data/rules/ijg_3.RULE index 974f2717e79..7e794926914 100644 --- a/src/licensedcode/data/rules/ijg_3.RULE +++ b/src/licensedcode/data/rules/ijg_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ijg +is_license_notice: yes +ignorable_copyrights: + - Copyright property of CompuServe Incorporated +ignorable_holders: + - CompuServe Incorporated +--- + This software is based in part on the work of the Independent JPEG Group. The Graphics Interchange Format is the -Copyright property of CompuServe Incorporated. \ No newline at end of file +Copyright property of CompuServe Incorporated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_3.yml b/src/licensedcode/data/rules/ijg_3.yml deleted file mode 100644 index df1498d1b51..00000000000 --- a/src/licensedcode/data/rules/ijg_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_notice: yes -ignorable_copyrights: - - Copyright property of CompuServe Incorporated -ignorable_holders: - - CompuServe Incorporated diff --git a/src/licensedcode/data/rules/ijg_30.RULE b/src/licensedcode/data/rules/ijg_30.RULE index 83bbbf58ba9..ec05df5adea 100644 --- a/src/licensedcode/data/rules/ijg_30.RULE +++ b/src/licensedcode/data/rules/ijg_30.RULE @@ -1 +1,11 @@ +--- +license_expression: ijg +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - README.ijg +notes: in libjpeg-turbo +--- + For conditions of distribution and use, see the accompanying README.ijg file \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_30.yml b/src/licensedcode/data/rules/ijg_30.yml deleted file mode 100644 index 79a9b75ff7d..00000000000 --- a/src/licensedcode/data/rules/ijg_30.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ijg -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - README.ijg -notes: in libjpeg-turbo diff --git a/src/licensedcode/data/rules/ijg_31.RULE b/src/licensedcode/data/rules/ijg_31.RULE index 05eb37da675..a1ee7d8563e 100644 --- a/src/licensedcode/data/rules/ijg_31.RULE +++ b/src/licensedcode/data/rules/ijg_31.RULE @@ -1 +1,10 @@ +--- +license_expression: ijg +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Independent JPEG Group License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_31.yml b/src/licensedcode/data/rules/ijg_31.yml deleted file mode 100644 index f13d4fc7963..00000000000 --- a/src/licensedcode/data/rules/ijg_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ijg_32.RULE b/src/licensedcode/data/rules/ijg_32.RULE index fa9d047bed7..dae505e5ad7 100644 --- a/src/licensedcode/data/rules/ijg_32.RULE +++ b/src/licensedcode/data/rules/ijg_32.RULE @@ -1 +1,10 @@ +--- +license_expression: ijg +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + IJG Independent JPEG Group License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_32.yml b/src/licensedcode/data/rules/ijg_32.yml deleted file mode 100644 index f13d4fc7963..00000000000 --- a/src/licensedcode/data/rules/ijg_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ijg_33.RULE b/src/licensedcode/data/rules/ijg_33.RULE index 2f17f593bc7..ae6a876ca9d 100644 --- a/src/licensedcode/data/rules/ijg_33.RULE +++ b/src/licensedcode/data/rules/ijg_33.RULE @@ -1 +1,10 @@ +--- +license_expression: ijg +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Independent JPEG Group License IJG \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_33.yml b/src/licensedcode/data/rules/ijg_33.yml deleted file mode 100644 index f13d4fc7963..00000000000 --- a/src/licensedcode/data/rules/ijg_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ijg_34.RULE b/src/licensedcode/data/rules/ijg_34.RULE index a88bb976001..c2468a95a65 100644 --- a/src/licensedcode/data/rules/ijg_34.RULE +++ b/src/licensedcode/data/rules/ijg_34.RULE @@ -1 +1,10 @@ +--- +license_expression: ijg +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: IJG \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_34.yml b/src/licensedcode/data/rules/ijg_34.yml deleted file mode 100644 index b79cd31c94a..00000000000 --- a/src/licensedcode/data/rules/ijg_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ijg_35.RULE b/src/licensedcode/data/rules/ijg_35.RULE index 889bcec095a..559b772621e 100644 --- a/src/licensedcode/data/rules/ijg_35.RULE +++ b/src/licensedcode/data/rules/ijg_35.RULE @@ -1 +1,10 @@ +--- +license_expression: ijg +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Independent JPEG Group License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_35.yml b/src/licensedcode/data/rules/ijg_35.yml deleted file mode 100644 index b79cd31c94a..00000000000 --- a/src/licensedcode/data/rules/ijg_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ijg_36.RULE b/src/licensedcode/data/rules/ijg_36.RULE index a579f7bd70b..ac75b9375d4 100644 --- a/src/licensedcode/data/rules/ijg_36.RULE +++ b/src/licensedcode/data/rules/ijg_36.RULE @@ -1 +1,10 @@ +--- +license_expression: ijg +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: IJG \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_36.yml b/src/licensedcode/data/rules/ijg_36.yml deleted file mode 100644 index b79cd31c94a..00000000000 --- a/src/licensedcode/data/rules/ijg_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ijg_37.RULE b/src/licensedcode/data/rules/ijg_37.RULE index 77d9fa58b1b..8988d7b1fbb 100644 --- a/src/licensedcode/data/rules/ijg_37.RULE +++ b/src/licensedcode/data/rules/ijg_37.RULE @@ -1 +1,9 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/IJG +--- + https://licenses.nuget.org/IJG \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_37.yml b/src/licensedcode/data/rules/ijg_37.yml deleted file mode 100644 index 8abaef8063e..00000000000 --- a/src/licensedcode/data/rules/ijg_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/IJG diff --git a/src/licensedcode/data/rules/ijg_38.RULE b/src/licensedcode/data/rules/ijg_38.RULE index 6b19cca437e..0ceee6a8b9c 100644 --- a/src/licensedcode/data/rules/ijg_38.RULE +++ b/src/licensedcode/data/rules/ijg_38.RULE @@ -1 +1,7 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/IJG \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_38.yml b/src/licensedcode/data/rules/ijg_38.yml deleted file mode 100644 index 208ee47d65e..00000000000 --- a/src/licensedcode/data/rules/ijg_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_39.RULE b/src/licensedcode/data/rules/ijg_39.RULE index d9560c6c9c7..83c44dfe7a8 100644 --- a/src/licensedcode/data/rules/ijg_39.RULE +++ b/src/licensedcode/data/rules/ijg_39.RULE @@ -1 +1,9 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/IJG +--- + {{IJG}} https://spdx.org/licenses/IJG \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_39.yml b/src/licensedcode/data/rules/ijg_39.yml deleted file mode 100644 index 94a90a1bf40..00000000000 --- a/src/licensedcode/data/rules/ijg_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/IJG diff --git a/src/licensedcode/data/rules/ijg_4.RULE b/src/licensedcode/data/rules/ijg_4.RULE index dfd1e3f31e4..1cdc18922db 100644 --- a/src/licensedcode/data/rules/ijg_4.RULE +++ b/src/licensedcode/data/rules/ijg_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz +--- + This software is based in part on the work of the Independent JPEG Group. % See ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz for copyright and % licensing restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_4.yml b/src/licensedcode/data/rules/ijg_4.yml deleted file mode 100644 index 1d9ee1e1bac..00000000000 --- a/src/licensedcode/data/rules/ijg_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz diff --git a/src/licensedcode/data/rules/ijg_40.RULE b/src/licensedcode/data/rules/ijg_40.RULE index 63db0b76242..54f2d135a9e 100644 --- a/src/licensedcode/data/rules/ijg_40.RULE +++ b/src/licensedcode/data/rules/ijg_40.RULE @@ -1 +1,9 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/IJG +--- + LICENSE {{IJG}} https://spdx.org/licenses/IJG \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_40.yml b/src/licensedcode/data/rules/ijg_40.yml deleted file mode 100644 index 94a90a1bf40..00000000000 --- a/src/licensedcode/data/rules/ijg_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/IJG diff --git a/src/licensedcode/data/rules/ijg_41.RULE b/src/licensedcode/data/rules/ijg_41.RULE index 693fc312d4d..8b9ca0cdc0b 100644 --- a/src/licensedcode/data/rules/ijg_41.RULE +++ b/src/licensedcode/data/rules/ijg_41.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ijg +is_license_text: yes +ignorable_copyrights: + - copyright (c) 1994-1996, Thomas G. Lane +ignorable_holders: + - Thomas G. Lane +--- + The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and diff --git a/src/licensedcode/data/rules/ijg_41.yml b/src/licensedcode/data/rules/ijg_41.yml deleted file mode 100644 index 05c5332658a..00000000000 --- a/src/licensedcode/data/rules/ijg_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_text: yes -ignorable_copyrights: - - copyright (c) 1994-1996, Thomas G. Lane -ignorable_holders: - - Thomas G. Lane diff --git a/src/licensedcode/data/rules/ijg_5.RULE b/src/licensedcode/data/rules/ijg_5.RULE index bee652b39d6..047004e3a97 100644 --- a/src/licensedcode/data/rules/ijg_5.RULE +++ b/src/licensedcode/data/rules/ijg_5.RULE @@ -1 +1,7 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +--- + Independent JPEG Group License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_5.yml b/src/licensedcode/data/rules/ijg_5.yml deleted file mode 100644 index 208ee47d65e..00000000000 --- a/src/licensedcode/data/rules/ijg_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ijg_6.RULE b/src/licensedcode/data/rules/ijg_6.RULE index 9a155cffb8b..19988d623df 100644 --- a/src/licensedcode/data/rules/ijg_6.RULE +++ b/src/licensedcode/data/rules/ijg_6.RULE @@ -1,3 +1,22 @@ +--- +license_expression: ijg +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright property of CompuServe Incorporated + - copyright (c) 1991-1998, Thomas G. Lane + - copyright by M.I.T. + - copyright by the Free Software Foundation + - copyright holder, Aladdin Enterprises of Menlo Park +ignorable_holders: + - Aladdin Enterprises of Menlo Park + - CompuServe Incorporated + - M.I.T. + - Thomas G. Lane + - the Free Software Foundation +--- + Independent JPEG Group License diff --git a/src/licensedcode/data/rules/ijg_6.yml b/src/licensedcode/data/rules/ijg_6.yml deleted file mode 100644 index 5f663052b72..00000000000 --- a/src/licensedcode/data/rules/ijg_6.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: ijg -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright property of CompuServe Incorporated - - copyright (c) 1991-1998, Thomas G. Lane - - copyright by M.I.T. - - copyright by the Free Software Foundation - - copyright holder, Aladdin Enterprises of Menlo Park -ignorable_holders: - - Aladdin Enterprises of Menlo Park - - CompuServe Incorporated - - M.I.T. - - Thomas G. Lane - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/ijg_7.RULE b/src/licensedcode/data/rules/ijg_7.RULE index ed780f2dfc6..eab4f765946 100644 --- a/src/licensedcode/data/rules/ijg_7.RULE +++ b/src/licensedcode/data/rules/ijg_7.RULE @@ -1,2 +1,11 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - README +--- + This file is part of the Independent JPEG Group's software. -For conditions of distribution and use, see the accompanying README file. +For conditions of distribution and use, see the accompanying README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_7.yml b/src/licensedcode/data/rules/ijg_7.yml deleted file mode 100644 index bba1b6ad520..00000000000 --- a/src/licensedcode/data/rules/ijg_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/ijg_8.RULE b/src/licensedcode/data/rules/ijg_8.RULE index 05d8a26a5ca..69283d1fa70 100644 --- a/src/licensedcode/data/rules/ijg_8.RULE +++ b/src/licensedcode/data/rules/ijg_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ijg +is_license_text: yes +--- + Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for any purpose, without fee, subject to these conditions: diff --git a/src/licensedcode/data/rules/ijg_8.yml b/src/licensedcode/data/rules/ijg_8.yml deleted file mode 100644 index 39c00cc9cff..00000000000 --- a/src/licensedcode/data/rules/ijg_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ijg -is_license_text: yes diff --git a/src/licensedcode/data/rules/ijg_9.RULE b/src/licensedcode/data/rules/ijg_9.RULE index 27db48e6c27..8a4e5f2a051 100644 --- a/src/licensedcode/data/rules/ijg_9.RULE +++ b/src/licensedcode/data/rules/ijg_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ijg +is_license_notice: yes +--- + All Rights Reserved except as specified below. Permission is hereby granted to use, copy, modify, and distribute this @@ -25,4 +30,4 @@ software". We specifically permit and encourage the use of this software as the basis of commercial products, provided that all warranty or liability claims are -assumed by the product vendor. +assumed by the product vendor. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_9.yml b/src/licensedcode/data/rules/ijg_9.yml deleted file mode 100644 index 4dcc0426c24..00000000000 --- a/src/licensedcode/data/rules/ijg_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ijg -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ijg_url_1.RULE b/src/licensedcode/data/rules/ijg_url_1.RULE index f7e6ce4b106..f6458e72eaa 100644 --- a/src/licensedcode/data/rules/ijg_url_1.RULE +++ b/src/licensedcode/data/rules/ijg_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ijg +--- + https://spdx.org/licenses/ijg \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_url_1.yml b/src/licensedcode/data/rules/ijg_url_1.yml deleted file mode 100644 index 09b2b0158b5..00000000000 --- a/src/licensedcode/data/rules/ijg_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ijg diff --git a/src/licensedcode/data/rules/ijg_url_2.RULE b/src/licensedcode/data/rules/ijg_url_2.RULE index 373d7ed1266..fe9230adbbd 100644 --- a/src/licensedcode/data/rules/ijg_url_2.RULE +++ b/src/licensedcode/data/rules/ijg_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ijg +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ijg.html +--- + https://spdx.org/licenses/ijg.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ijg_url_2.yml b/src/licensedcode/data/rules/ijg_url_2.yml deleted file mode 100644 index 867d8d02e13..00000000000 --- a/src/licensedcode/data/rules/ijg_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ijg -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ijg.html diff --git a/src/licensedcode/data/rules/imagemagick_1.RULE b/src/licensedcode/data/rules/imagemagick_1.RULE index c4a4885de6c..cb4d6a26554 100644 --- a/src/licensedcode/data/rules/imagemagick_1.RULE +++ b/src/licensedcode/data/rules/imagemagick_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: imagemagick +is_license_text: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) ImageMagick Studio LLC +ignorable_holders: + - ImageMagick Studio LLC +ignorable_urls: + - https://imagemagick.org/script/license.php +--- + Terms and Conditions for Use, Reproduction, and Distribution The legally binding and authoritative terms and conditions for use, reproduction, and distribution of ImageMagick follow: @@ -64,4 +76,4 @@ To apply the ImageMagick License to your work, attach the following boilerplate 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. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_1.yml b/src/licensedcode/data/rules/imagemagick_1.yml deleted file mode 100644 index aba760a18ee..00000000000 --- a/src/licensedcode/data/rules/imagemagick_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: imagemagick -is_license_text: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) ImageMagick Studio LLC -ignorable_holders: - - ImageMagick Studio LLC -ignorable_urls: - - https://imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_10.RULE b/src/licensedcode/data/rules/imagemagick_10.RULE index c7ff56df77d..bcd12b9d8d4 100644 --- a/src/licensedcode/data/rules/imagemagick_10.RULE +++ b/src/licensedcode/data/rules/imagemagick_10.RULE @@ -1,3 +1,15 @@ +--- +license_expression: imagemagick +is_license_text: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright ImageMagick Studio LLC +ignorable_holders: + - ImageMagick Studio LLC +ignorable_urls: + - https://www.imagemagick.org/script/license.php +--- + Before we get to the text of the license, lets just review what the license says in simple terms: It allows you to: diff --git a/src/licensedcode/data/rules/imagemagick_10.yml b/src/licensedcode/data/rules/imagemagick_10.yml deleted file mode 100644 index 84e04368a0f..00000000000 --- a/src/licensedcode/data/rules/imagemagick_10.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: imagemagick -is_license_text: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright ImageMagick Studio LLC -ignorable_holders: - - ImageMagick Studio LLC -ignorable_urls: - - https://www.imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_11.RULE b/src/licensedcode/data/rules/imagemagick_11.RULE index c7cbedc1ce2..ce43ce76383 100644 --- a/src/licensedcode/data/rules/imagemagick_11.RULE +++ b/src/licensedcode/data/rules/imagemagick_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: imagemagick +is_license_notice: yes +minimum_coverage: 100 +--- + ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and proprietary applications. It is distributed under the Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_11.yml b/src/licensedcode/data/rules/imagemagick_11.yml deleted file mode 100644 index 32c6bd657e5..00000000000 --- a/src/licensedcode/data/rules/imagemagick_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/imagemagick_12.RULE b/src/licensedcode/data/rules/imagemagick_12.RULE index 87b6ef36bd7..ac285b3d021 100644 --- a/src/licensedcode/data/rules/imagemagick_12.RULE +++ b/src/licensedcode/data/rules/imagemagick_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: imagemagick +is_license_notice: yes +ignorable_urls: + - http://www.imagemagick.org/script/license.php +--- + # You may not use this file except in compliance with the License. # obtain a copy of the License at # @@ -7,4 +14,4 @@ # 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. +# limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_12.yml b/src/licensedcode/data/rules/imagemagick_12.yml deleted file mode 100644 index 06e537a3866..00000000000 --- a/src/licensedcode/data/rules/imagemagick_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -ignorable_urls: - - http://www.imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_13.RULE b/src/licensedcode/data/rules/imagemagick_13.RULE index 6f007a416bf..a61a7981dd3 100644 --- a/src/licensedcode/data/rules/imagemagick_13.RULE +++ b/src/licensedcode/data/rules/imagemagick_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: imagemagick +is_license_notice: yes +ignorable_urls: + - http://www.imagemagick.org/MagicksToolkit/script/license.php +--- + You may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -7,4 +14,4 @@ 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_13.yml b/src/licensedcode/data/rules/imagemagick_13.yml deleted file mode 100644 index 6ad43816045..00000000000 --- a/src/licensedcode/data/rules/imagemagick_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -ignorable_urls: - - http://www.imagemagick.org/MagicksToolkit/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_14.RULE b/src/licensedcode/data/rules/imagemagick_14.RULE index 47d188b3b96..0857c60d1b8 100644 --- a/src/licensedcode/data/rules/imagemagick_14.RULE +++ b/src/licensedcode/data/rules/imagemagick_14.RULE @@ -1,6 +1,11 @@ +--- +license_expression: imagemagick +is_license_notice: yes +--- + ImageMagick is freely available without charge; you may include ImageMagick on any digital media as long as you comply with the terms of the license; you can give modified code away for free or sell it under the terms of the ImageMagick license or distribute the result under a different license, but you need to acknowledge the use of the ImageMagick software; the license is compatible with the GPL V3. - when exporting the ImageMagick software, review its export classification + when exporting the ImageMagick software, review its export classification \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_14.yml b/src/licensedcode/data/rules/imagemagick_14.yml deleted file mode 100644 index aafd9a2adc1..00000000000 --- a/src/licensedcode/data/rules/imagemagick_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes diff --git a/src/licensedcode/data/rules/imagemagick_15.RULE b/src/licensedcode/data/rules/imagemagick_15.RULE index 8e483ef9bab..71fd26108bd 100644 --- a/src/licensedcode/data/rules/imagemagick_15.RULE +++ b/src/licensedcode/data/rules/imagemagick_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imagemagick +is_license_reference: yes +minimum_coverage: 80 +ignorable_urls: + - http://imagemagick.org/script/license.php +--- + ImageMagick is licensed with a derived Apache license 2.0. See http://imagemagick.org/script/license.php for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_15.yml b/src/licensedcode/data/rules/imagemagick_15.yml deleted file mode 100644 index aae58ee79b5..00000000000 --- a/src/licensedcode/data/rules/imagemagick_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -minimum_coverage: 80 -ignorable_urls: - - http://imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_16.RULE b/src/licensedcode/data/rules/imagemagick_16.RULE index d701135ece2..0e08ede4389 100644 --- a/src/licensedcode/data/rules/imagemagick_16.RULE +++ b/src/licensedcode/data/rules/imagemagick_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: imagemagick +is_license_reference: yes +minimum_coverage: 80 +--- + ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and proprietary applications. It is distributed under a dervived Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_16.yml b/src/licensedcode/data/rules/imagemagick_16.yml deleted file mode 100644 index 186076f789b..00000000000 --- a/src/licensedcode/data/rules/imagemagick_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/imagemagick_17.RULE b/src/licensedcode/data/rules/imagemagick_17.RULE index 9fa5f50a072..23013204855 100644 --- a/src/licensedcode/data/rules/imagemagick_17.RULE +++ b/src/licensedcode/data/rules/imagemagick_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: imagemagick +is_license_notice: yes +ignorable_urls: + - https://imagemagick.org/script/license.php +--- + # You may not use this file except in compliance with the License. You may # obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/imagemagick_17.yml b/src/licensedcode/data/rules/imagemagick_17.yml deleted file mode 100644 index 1992399aaec..00000000000 --- a/src/licensedcode/data/rules/imagemagick_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -ignorable_urls: - - https://imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_18.RULE b/src/licensedcode/data/rules/imagemagick_18.RULE index 15cb764af4b..f4553f1ea36 100644 --- a/src/licensedcode/data/rules/imagemagick_18.RULE +++ b/src/licensedcode/data/rules/imagemagick_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: imagemagick +is_license_notice: yes +minimum_coverage: 80 +--- + ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and proprietary applications. It is distributed under a derived Apache 2.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_18.yml b/src/licensedcode/data/rules/imagemagick_18.yml deleted file mode 100644 index 033124c4fd1..00000000000 --- a/src/licensedcode/data/rules/imagemagick_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/imagemagick_19.RULE b/src/licensedcode/data/rules/imagemagick_19.RULE index 3138f2a565c..c6d9337e324 100644 --- a/src/licensedcode/data/rules/imagemagick_19.RULE +++ b/src/licensedcode/data/rules/imagemagick_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imagemagick +is_license_text: yes +minimum_coverage: 90 +ignorable_urls: + - https://imagemagick.org/script/license.php +--- + 1. Definitions. diff --git a/src/licensedcode/data/rules/imagemagick_19.yml b/src/licensedcode/data/rules/imagemagick_19.yml deleted file mode 100644 index 30146a69fab..00000000000 --- a/src/licensedcode/data/rules/imagemagick_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_text: yes -minimum_coverage: 90 -ignorable_urls: - - https://imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_2.RULE b/src/licensedcode/data/rules/imagemagick_2.RULE index ecfd9be3a85..5f323eba8bd 100644 --- a/src/licensedcode/data/rules/imagemagick_2.RULE +++ b/src/licensedcode/data/rules/imagemagick_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imagemagick +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.imagemagick.org/script/license.php +--- + You may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -7,4 +15,4 @@ 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_2.yml b/src/licensedcode/data/rules/imagemagick_2.yml deleted file mode 100644 index bc34490b761..00000000000 --- a/src/licensedcode/data/rules/imagemagick_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_20.RULE b/src/licensedcode/data/rules/imagemagick_20.RULE index 028db92e2d2..de673cd00ac 100644 --- a/src/licensedcode/data/rules/imagemagick_20.RULE +++ b/src/licensedcode/data/rules/imagemagick_20.RULE @@ -1 +1,10 @@ +--- +license_expression: imagemagick +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ImageMagick License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_20.yml b/src/licensedcode/data/rules/imagemagick_20.yml deleted file mode 100644 index 0c77995e969..00000000000 --- a/src/licensedcode/data/rules/imagemagick_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imagemagick_21.RULE b/src/licensedcode/data/rules/imagemagick_21.RULE index e83b60c0257..4f36a708eb9 100644 --- a/src/licensedcode/data/rules/imagemagick_21.RULE +++ b/src/licensedcode/data/rules/imagemagick_21.RULE @@ -1 +1,10 @@ +--- +license_expression: imagemagick +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: ImageMagick License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_21.yml b/src/licensedcode/data/rules/imagemagick_21.yml deleted file mode 100644 index 0c77995e969..00000000000 --- a/src/licensedcode/data/rules/imagemagick_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imagemagick_22.RULE b/src/licensedcode/data/rules/imagemagick_22.RULE index 299d9de0bbb..4b2ff29bf73 100644 --- a/src/licensedcode/data/rules/imagemagick_22.RULE +++ b/src/licensedcode/data/rules/imagemagick_22.RULE @@ -1 +1,10 @@ +--- +license_expression: imagemagick +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ImageMagick ImageMagick License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_22.yml b/src/licensedcode/data/rules/imagemagick_22.yml deleted file mode 100644 index 0c77995e969..00000000000 --- a/src/licensedcode/data/rules/imagemagick_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imagemagick_23.RULE b/src/licensedcode/data/rules/imagemagick_23.RULE index 41dd0742814..d9a4d750887 100644 --- a/src/licensedcode/data/rules/imagemagick_23.RULE +++ b/src/licensedcode/data/rules/imagemagick_23.RULE @@ -1 +1,10 @@ +--- +license_expression: imagemagick +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ImageMagick License ImageMagick \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_23.yml b/src/licensedcode/data/rules/imagemagick_23.yml deleted file mode 100644 index 0c77995e969..00000000000 --- a/src/licensedcode/data/rules/imagemagick_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imagemagick_24.RULE b/src/licensedcode/data/rules/imagemagick_24.RULE index 6203de8cb56..fb7e3142ac2 100644 --- a/src/licensedcode/data/rules/imagemagick_24.RULE +++ b/src/licensedcode/data/rules/imagemagick_24.RULE @@ -1 +1,10 @@ +--- +license_expression: imagemagick +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ImageMagick \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_24.yml b/src/licensedcode/data/rules/imagemagick_24.yml deleted file mode 100644 index e61ebe07d0b..00000000000 --- a/src/licensedcode/data/rules/imagemagick_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imagemagick -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imagemagick_25.RULE b/src/licensedcode/data/rules/imagemagick_25.RULE index cadc6d10187..50b1a54aa7a 100644 --- a/src/licensedcode/data/rules/imagemagick_25.RULE +++ b/src/licensedcode/data/rules/imagemagick_25.RULE @@ -1 +1,10 @@ +--- +license_expression: imagemagick +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ImageMagick License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_25.yml b/src/licensedcode/data/rules/imagemagick_25.yml deleted file mode 100644 index e61ebe07d0b..00000000000 --- a/src/licensedcode/data/rules/imagemagick_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imagemagick -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imagemagick_26.RULE b/src/licensedcode/data/rules/imagemagick_26.RULE index 1d845b95a72..6d862995efb 100644 --- a/src/licensedcode/data/rules/imagemagick_26.RULE +++ b/src/licensedcode/data/rules/imagemagick_26.RULE @@ -1 +1,10 @@ +--- +license_expression: imagemagick +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ImageMagick \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_26.yml b/src/licensedcode/data/rules/imagemagick_26.yml deleted file mode 100644 index e61ebe07d0b..00000000000 --- a/src/licensedcode/data/rules/imagemagick_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imagemagick -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imagemagick_27.RULE b/src/licensedcode/data/rules/imagemagick_27.RULE index d017a9f0121..3a5d44cbaab 100644 --- a/src/licensedcode/data/rules/imagemagick_27.RULE +++ b/src/licensedcode/data/rules/imagemagick_27.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imagemagick +is_license_text: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.imagemagick.org/www/license.html +--- + 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 limited to compiled object code, generated documentation, conversions to other media types. Work shall mean the work of authorship, whether in Source 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 intentionally sent to the Licensor by its copyright holder 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. @@ -37,4 +45,4 @@ 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. +under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_27.yml b/src/licensedcode/data/rules/imagemagick_27.yml deleted file mode 100644 index 18890640b32..00000000000 --- a/src/licensedcode/data/rules/imagemagick_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_text: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.imagemagick.org/www/license.html diff --git a/src/licensedcode/data/rules/imagemagick_28.RULE b/src/licensedcode/data/rules/imagemagick_28.RULE index 6362eefa3b1..1d9ed04836b 100644 --- a/src/licensedcode/data/rules/imagemagick_28.RULE +++ b/src/licensedcode/data/rules/imagemagick_28.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imagemagick +is_license_text: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.imagemagick.org/script/license.php +--- + 1. Definitions. License shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. diff --git a/src/licensedcode/data/rules/imagemagick_28.yml b/src/licensedcode/data/rules/imagemagick_28.yml deleted file mode 100644 index c6f2ecc04c2..00000000000 --- a/src/licensedcode/data/rules/imagemagick_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_text: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_29.RULE b/src/licensedcode/data/rules/imagemagick_29.RULE index c432a18cdfe..e01d0ba569b 100644 --- a/src/licensedcode/data/rules/imagemagick_29.RULE +++ b/src/licensedcode/data/rules/imagemagick_29.RULE @@ -1,3 +1,10 @@ +--- +license_expression: imagemagick +is_license_notice: yes +ignorable_urls: + - http://www.imagemagick.org/www/license.html +--- + Licensed under the ImageMagick License (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.imagemagick.org/www/license.html diff --git a/src/licensedcode/data/rules/imagemagick_29.yml b/src/licensedcode/data/rules/imagemagick_29.yml deleted file mode 100644 index a2c1882d5c1..00000000000 --- a/src/licensedcode/data/rules/imagemagick_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -ignorable_urls: - - http://www.imagemagick.org/www/license.html diff --git a/src/licensedcode/data/rules/imagemagick_3.RULE b/src/licensedcode/data/rules/imagemagick_3.RULE index d58ea074f9d..f296f5548a6 100644 --- a/src/licensedcode/data/rules/imagemagick_3.RULE +++ b/src/licensedcode/data/rules/imagemagick_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imagemagick +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.imagemagick.org/script/license.php +--- + You may not use this file except in compliance with the License. obtain a copy of the License at @@ -7,4 +15,4 @@ 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_3.yml b/src/licensedcode/data/rules/imagemagick_3.yml deleted file mode 100644 index bc34490b761..00000000000 --- a/src/licensedcode/data/rules/imagemagick_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_30.RULE b/src/licensedcode/data/rules/imagemagick_30.RULE index 1e2d2276766..90c9cb3f3fe 100644 --- a/src/licensedcode/data/rules/imagemagick_30.RULE +++ b/src/licensedcode/data/rules/imagemagick_30.RULE @@ -1 +1,9 @@ +--- +license_expression: imagemagick +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ImageMagick +--- + https://licenses.nuget.org/ImageMagick \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_30.yml b/src/licensedcode/data/rules/imagemagick_30.yml deleted file mode 100644 index c7f7676a23a..00000000000 --- a/src/licensedcode/data/rules/imagemagick_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ImageMagick diff --git a/src/licensedcode/data/rules/imagemagick_31.RULE b/src/licensedcode/data/rules/imagemagick_31.RULE index 72b233652cf..f0f291f2532 100644 --- a/src/licensedcode/data/rules/imagemagick_31.RULE +++ b/src/licensedcode/data/rules/imagemagick_31.RULE @@ -1 +1,7 @@ +--- +license_expression: imagemagick +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ImageMagick \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_31.yml b/src/licensedcode/data/rules/imagemagick_31.yml deleted file mode 100644 index 8f7e0e81451..00000000000 --- a/src/licensedcode/data/rules/imagemagick_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/imagemagick_32.RULE b/src/licensedcode/data/rules/imagemagick_32.RULE index d5179c15926..db32d424a88 100644 --- a/src/licensedcode/data/rules/imagemagick_32.RULE +++ b/src/licensedcode/data/rules/imagemagick_32.RULE @@ -1 +1,9 @@ +--- +license_expression: imagemagick +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ImageMagick +--- + LICENSE {{ImageMagick}} https://spdx.org/licenses/ImageMagick \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_32.yml b/src/licensedcode/data/rules/imagemagick_32.yml deleted file mode 100644 index 721893473db..00000000000 --- a/src/licensedcode/data/rules/imagemagick_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ImageMagick diff --git a/src/licensedcode/data/rules/imagemagick_33.RULE b/src/licensedcode/data/rules/imagemagick_33.RULE index c03c0563555..be9a60148f7 100644 --- a/src/licensedcode/data/rules/imagemagick_33.RULE +++ b/src/licensedcode/data/rules/imagemagick_33.RULE @@ -1 +1,9 @@ +--- +license_expression: imagemagick +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ImageMagick +--- + {{ImageMagick}} https://spdx.org/licenses/ImageMagick \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_33.yml b/src/licensedcode/data/rules/imagemagick_33.yml deleted file mode 100644 index 721893473db..00000000000 --- a/src/licensedcode/data/rules/imagemagick_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ImageMagick diff --git a/src/licensedcode/data/rules/imagemagick_4.RULE b/src/licensedcode/data/rules/imagemagick_4.RULE index 6aa8a29c1ea..02b238b08d6 100644 --- a/src/licensedcode/data/rules/imagemagick_4.RULE +++ b/src/licensedcode/data/rules/imagemagick_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: imagemagick +is_license_notice: yes +minimum_coverage: 100 +--- + ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and proprietary applications. It is distributed under the Apache 2.0 [license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_4.yml b/src/licensedcode/data/rules/imagemagick_4.yml deleted file mode 100644 index 32c6bd657e5..00000000000 --- a/src/licensedcode/data/rules/imagemagick_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/imagemagick_5.RULE b/src/licensedcode/data/rules/imagemagick_5.RULE index f46a8e2c360..f93336c950b 100644 --- a/src/licensedcode/data/rules/imagemagick_5.RULE +++ b/src/licensedcode/data/rules/imagemagick_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imagemagick +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.imagemagick.org/script/license.php +--- + You may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -7,4 +15,4 @@ 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_5.yml b/src/licensedcode/data/rules/imagemagick_5.yml deleted file mode 100644 index 572596702a6..00000000000 --- a/src/licensedcode/data/rules/imagemagick_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_6.RULE b/src/licensedcode/data/rules/imagemagick_6.RULE index 0dc908aa31d..235e25f5fcd 100644 --- a/src/licensedcode/data/rules/imagemagick_6.RULE +++ b/src/licensedcode/data/rules/imagemagick_6.RULE @@ -1 +1,6 @@ -ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you can freely use, copy, modify, and distribute. Its license is compatible with the GPL. It runs on all major operating systems. +--- +license_expression: imagemagick +is_license_notice: yes +--- + +ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you can freely use, copy, modify, and distribute. Its license is compatible with the GPL. It runs on all major operating systems. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_6.yml b/src/licensedcode/data/rules/imagemagick_6.yml deleted file mode 100644 index aafd9a2adc1..00000000000 --- a/src/licensedcode/data/rules/imagemagick_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes diff --git a/src/licensedcode/data/rules/imagemagick_7.RULE b/src/licensedcode/data/rules/imagemagick_7.RULE index 865627ac8b5..876ea244a11 100644 --- a/src/licensedcode/data/rules/imagemagick_7.RULE +++ b/src/licensedcode/data/rules/imagemagick_7.RULE @@ -1,3 +1,16 @@ +--- +license_expression: imagemagick +is_license_text: yes +minimum_coverage: 70 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright 1999-2013 ImageMagick Studio LLC +ignorable_holders: + - ImageMagick Studio LLC +ignorable_urls: + - http://www.imagemagick.org/script/license.php +--- + Before we get to the text of the license, lets just review what the license says in simple terms: It allows you to: diff --git a/src/licensedcode/data/rules/imagemagick_7.yml b/src/licensedcode/data/rules/imagemagick_7.yml deleted file mode 100644 index e86ece98fe0..00000000000 --- a/src/licensedcode/data/rules/imagemagick_7.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: imagemagick -is_license_text: yes -minimum_coverage: 70 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright 1999-2013 ImageMagick Studio LLC -ignorable_holders: - - ImageMagick Studio LLC -ignorable_urls: - - http://www.imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_8.RULE b/src/licensedcode/data/rules/imagemagick_8.RULE index 1390b4f2981..71edd5e5c13 100644 --- a/src/licensedcode/data/rules/imagemagick_8.RULE +++ b/src/licensedcode/data/rules/imagemagick_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imagemagick +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.imagemagick.org/MagicksToolkit/script/license.php +--- + You may not use this file except in compliance with the License. obtain a copy of the License at @@ -7,4 +15,4 @@ 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_8.yml b/src/licensedcode/data/rules/imagemagick_8.yml deleted file mode 100644 index 71104510724..00000000000 --- a/src/licensedcode/data/rules/imagemagick_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.imagemagick.org/MagicksToolkit/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_9.RULE b/src/licensedcode/data/rules/imagemagick_9.RULE index 07cc3a23c48..60a02488a49 100644 --- a/src/licensedcode/data/rules/imagemagick_9.RULE +++ b/src/licensedcode/data/rules/imagemagick_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: imagemagick +is_license_notice: yes +ignorable_urls: + - http://www.imagemagick.org/script/license.php +--- + ImageMagick is licensed with the Apache license 2.0. See http://www.imagemagick.org/script/license.php for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_9.yml b/src/licensedcode/data/rules/imagemagick_9.yml deleted file mode 100644 index 06e537a3866..00000000000 --- a/src/licensedcode/data/rules/imagemagick_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: imagemagick -is_license_notice: yes -ignorable_urls: - - http://www.imagemagick.org/script/license.php diff --git a/src/licensedcode/data/rules/imagemagick_url_1.RULE b/src/licensedcode/data/rules/imagemagick_url_1.RULE index 833b956193b..35a3511be6c 100644 --- a/src/licensedcode/data/rules/imagemagick_url_1.RULE +++ b/src/licensedcode/data/rules/imagemagick_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: imagemagick +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/imagemagick +--- + https://spdx.org/licenses/imagemagick \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_url_1.yml b/src/licensedcode/data/rules/imagemagick_url_1.yml deleted file mode 100644 index d1dfcda1965..00000000000 --- a/src/licensedcode/data/rules/imagemagick_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/imagemagick diff --git a/src/licensedcode/data/rules/imagemagick_url_2.RULE b/src/licensedcode/data/rules/imagemagick_url_2.RULE index cbd2e68f6ae..4caa888cc40 100644 --- a/src/licensedcode/data/rules/imagemagick_url_2.RULE +++ b/src/licensedcode/data/rules/imagemagick_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: imagemagick +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/imagemagick.html +--- + https://spdx.org/licenses/imagemagick.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_url_2.yml b/src/licensedcode/data/rules/imagemagick_url_2.yml deleted file mode 100644 index 759f9800632..00000000000 --- a/src/licensedcode/data/rules/imagemagick_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/imagemagick.html diff --git a/src/licensedcode/data/rules/imagen_1.RULE b/src/licensedcode/data/rules/imagen_1.RULE index 813fdb83a2b..74e75cc768f 100644 --- a/src/licensedcode/data/rules/imagen_1.RULE +++ b/src/licensedcode/data/rules/imagen_1.RULE @@ -1 +1,8 @@ +--- +license_expression: imagemagick +is_license_reference: yes +relevance: 80 +minimum_coverage: 100 +--- + IMAGEN License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagen_1.yml b/src/licensedcode/data/rules/imagen_1.yml deleted file mode 100644 index ad077581b63..00000000000 --- a/src/licensedcode/data/rules/imagen_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: imagemagick -is_license_reference: yes -relevance: 80 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/imlib2.RULE b/src/licensedcode/data/rules/imlib2.RULE index 25f1c3de83e..a8148dfb1a7 100644 --- a/src/licensedcode/data/rules/imlib2.RULE +++ b/src/licensedcode/data/rules/imlib2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: imlib2 +is_license_text: yes +referenced_filenames: + - COPYING-PLAIN +notes: IMLIB 2 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the diff --git a/src/licensedcode/data/rules/imlib2.yml b/src/licensedcode/data/rules/imlib2.yml deleted file mode 100644 index 7010f60e254..00000000000 --- a/src/licensedcode/data/rules/imlib2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imlib2 -is_license_text: yes -referenced_filenames: - - COPYING-PLAIN -notes: IMLIB 2 diff --git a/src/licensedcode/data/rules/imlib2_1.RULE b/src/licensedcode/data/rules/imlib2_1.RULE index 2f9e77cefb7..36bd7a95c57 100644 --- a/src/licensedcode/data/rules/imlib2_1.RULE +++ b/src/licensedcode/data/rules/imlib2_1.RULE @@ -1 +1,10 @@ +--- +license_expression: imlib2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Imlib2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_1.yml b/src/licensedcode/data/rules/imlib2_1.yml deleted file mode 100644 index 6f3ea1647d6..00000000000 --- a/src/licensedcode/data/rules/imlib2_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imlib2_10.RULE b/src/licensedcode/data/rules/imlib2_10.RULE index 58693443486..bc2f5ce576c 100644 --- a/src/licensedcode/data/rules/imlib2_10.RULE +++ b/src/licensedcode/data/rules/imlib2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: imlib2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Imlib2 +--- + {{Imlib2}} https://spdx.org/licenses/Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_10.yml b/src/licensedcode/data/rules/imlib2_10.yml deleted file mode 100644 index f0d8a5af5ac..00000000000 --- a/src/licensedcode/data/rules/imlib2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Imlib2 diff --git a/src/licensedcode/data/rules/imlib2_11.RULE b/src/licensedcode/data/rules/imlib2_11.RULE index 7976529162a..3e5a6d3d8cb 100644 --- a/src/licensedcode/data/rules/imlib2_11.RULE +++ b/src/licensedcode/data/rules/imlib2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: imlib2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Imlib2 +--- + LICENSE {{Imlib2}} https://spdx.org/licenses/Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_11.yml b/src/licensedcode/data/rules/imlib2_11.yml deleted file mode 100644 index f0d8a5af5ac..00000000000 --- a/src/licensedcode/data/rules/imlib2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Imlib2 diff --git a/src/licensedcode/data/rules/imlib2_2.RULE b/src/licensedcode/data/rules/imlib2_2.RULE index 335c158a968..02f6a9dd2a7 100644 --- a/src/licensedcode/data/rules/imlib2_2.RULE +++ b/src/licensedcode/data/rules/imlib2_2.RULE @@ -1 +1,10 @@ +--- +license_expression: imlib2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Imlib2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_2.yml b/src/licensedcode/data/rules/imlib2_2.yml deleted file mode 100644 index 6f3ea1647d6..00000000000 --- a/src/licensedcode/data/rules/imlib2_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imlib2_3.RULE b/src/licensedcode/data/rules/imlib2_3.RULE index e5d700dda95..71de7ac3275 100644 --- a/src/licensedcode/data/rules/imlib2_3.RULE +++ b/src/licensedcode/data/rules/imlib2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: imlib2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Imlib2 Imlib2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_3.yml b/src/licensedcode/data/rules/imlib2_3.yml deleted file mode 100644 index 6f3ea1647d6..00000000000 --- a/src/licensedcode/data/rules/imlib2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imlib2_4.RULE b/src/licensedcode/data/rules/imlib2_4.RULE index b7e316f27d9..d14d127706f 100644 --- a/src/licensedcode/data/rules/imlib2_4.RULE +++ b/src/licensedcode/data/rules/imlib2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: imlib2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Imlib2 License Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_4.yml b/src/licensedcode/data/rules/imlib2_4.yml deleted file mode 100644 index 6f3ea1647d6..00000000000 --- a/src/licensedcode/data/rules/imlib2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imlib2_5.RULE b/src/licensedcode/data/rules/imlib2_5.RULE index 2aafbef153f..ba0144834d3 100644 --- a/src/licensedcode/data/rules/imlib2_5.RULE +++ b/src/licensedcode/data/rules/imlib2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: imlib2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_5.yml b/src/licensedcode/data/rules/imlib2_5.yml deleted file mode 100644 index 50c6587b453..00000000000 --- a/src/licensedcode/data/rules/imlib2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imlib2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imlib2_6.RULE b/src/licensedcode/data/rules/imlib2_6.RULE index ed5254c3fc2..d5694fb0539 100644 --- a/src/licensedcode/data/rules/imlib2_6.RULE +++ b/src/licensedcode/data/rules/imlib2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: imlib2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Imlib2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_6.yml b/src/licensedcode/data/rules/imlib2_6.yml deleted file mode 100644 index 50c6587b453..00000000000 --- a/src/licensedcode/data/rules/imlib2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imlib2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imlib2_7.RULE b/src/licensedcode/data/rules/imlib2_7.RULE index e8dbeca152a..80e809241b2 100644 --- a/src/licensedcode/data/rules/imlib2_7.RULE +++ b/src/licensedcode/data/rules/imlib2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: imlib2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_7.yml b/src/licensedcode/data/rules/imlib2_7.yml deleted file mode 100644 index 50c6587b453..00000000000 --- a/src/licensedcode/data/rules/imlib2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: imlib2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/imlib2_8.RULE b/src/licensedcode/data/rules/imlib2_8.RULE index a85bf30a092..30227ae6f75 100644 --- a/src/licensedcode/data/rules/imlib2_8.RULE +++ b/src/licensedcode/data/rules/imlib2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: imlib2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Imlib2 +--- + https://licenses.nuget.org/Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_8.yml b/src/licensedcode/data/rules/imlib2_8.yml deleted file mode 100644 index 3871cfb1274..00000000000 --- a/src/licensedcode/data/rules/imlib2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Imlib2 diff --git a/src/licensedcode/data/rules/imlib2_9.RULE b/src/licensedcode/data/rules/imlib2_9.RULE index d1e8d040d19..72f9eb01406 100644 --- a/src/licensedcode/data/rules/imlib2_9.RULE +++ b/src/licensedcode/data/rules/imlib2_9.RULE @@ -1 +1,7 @@ +--- +license_expression: imlib2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_9.yml b/src/licensedcode/data/rules/imlib2_9.yml deleted file mode 100644 index f04ee94473e..00000000000 --- a/src/licensedcode/data/rules/imlib2_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/imlib2_url_1.RULE b/src/licensedcode/data/rules/imlib2_url_1.RULE index 3e812e807e2..85808f6890b 100644 --- a/src/licensedcode/data/rules/imlib2_url_1.RULE +++ b/src/licensedcode/data/rules/imlib2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: imlib2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/imlib2 +--- + https://spdx.org/licenses/imlib2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_url_1.yml b/src/licensedcode/data/rules/imlib2_url_1.yml deleted file mode 100644 index 57ca8812b34..00000000000 --- a/src/licensedcode/data/rules/imlib2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/imlib2 diff --git a/src/licensedcode/data/rules/imlib2_url_2.RULE b/src/licensedcode/data/rules/imlib2_url_2.RULE index 9daa893155f..9981a5b244b 100644 --- a/src/licensedcode/data/rules/imlib2_url_2.RULE +++ b/src/licensedcode/data/rules/imlib2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: imlib2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/imlib2.html +--- + https://spdx.org/licenses/imlib2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/imlib2_url_2.yml b/src/licensedcode/data/rules/imlib2_url_2.yml deleted file mode 100644 index bbb782479b2..00000000000 --- a/src/licensedcode/data/rules/imlib2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: imlib2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/imlib2.html diff --git a/src/licensedcode/data/rules/independent-module-linking-exception-2.0.RULE b/src/licensedcode/data/rules/independent-module-linking-exception-2.0.RULE index 613b8522a72..39e485f9011 100644 --- a/src/licensedcode/data/rules/independent-module-linking-exception-2.0.RULE +++ b/src/licensedcode/data/rules/independent-module-linking-exception-2.0.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -34,4 +41,4 @@ Note The exception is changed to reflect the latest GNU Classpath exception. Older versions of #ziplib did have another exception, but the new one is clearer and it doesn't break compatibility with the old one. Bottom line In plain English this means you can use this library in commercial closed-source -applications. +applications. \ No newline at end of file diff --git a/src/licensedcode/data/rules/independent-module-linking-exception-2.0.yml b/src/licensedcode/data/rules/independent-module-linking-exception-2.0.yml deleted file mode 100644 index 8ec1ec7626d..00000000000 --- a/src/licensedcode/data/rules/independent-module-linking-exception-2.0.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2.SPDX.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2.SPDX.RULE index 6f35e69cf28..89bd6339eb6 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2.SPDX.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2.SPDX.RULE @@ -1,3 +1,18 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2002 The Trustees of Indiana University +ignorable_holders: + - The Trustees of Indiana University +ignorable_authors: + - the Indiana University Extreme! Lab +ignorable_urls: + - http://www.extreme.indiana.edu/ +--- + LICENSE FOR THE Extreme! Lab PullParser Copyright (c) 2002 The Trustees of Indiana University. All rights reserved. diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2.SPDX.yml b/src/licensedcode/data/rules/indiana-extreme-1.2.SPDX.yml deleted file mode 100644 index fd7722d9145..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2.SPDX.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2002 The Trustees of Indiana University -ignorable_holders: - - The Trustees of Indiana University -ignorable_authors: - - the Indiana University Extreme! Lab -ignorable_urls: - - http://www.extreme.indiana.edu/ diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_1.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_1.RULE index de1737c9ea3..1c6fcb08367 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_1.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_1.RULE @@ -1 +1,10 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + XPP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_1.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_1.yml deleted file mode 100644 index 7f413eaa774..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_10.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_10.RULE index da491dd851b..f1a96cdcaa5 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_10.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/xpp +--- + {{xpp}} https://spdx.org/licenses/xpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_10.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_10.yml deleted file mode 100644 index 1d16bcfd962..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/xpp diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_11.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_11.RULE index 5d1e2b98e5c..1b45963564c 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_11.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/xpp +--- + LICENSE {{xpp}} https://spdx.org/licenses/xpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_11.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_11.yml deleted file mode 100644 index 1d16bcfd962..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/xpp diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_2.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_2.RULE index cb73371a573..0a2f92bdf34 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_2.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_2.RULE @@ -1 +1,10 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: XPP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_2.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_2.yml deleted file mode 100644 index 7f413eaa774..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_3.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_3.RULE index 40363ee709d..db2e436b47a 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_3.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + xpp XPP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_3.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_3.yml deleted file mode 100644 index 7f413eaa774..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_4.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_4.RULE index 2cbbeb99ce5..ee290d4c429 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_4.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + XPP License xpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_4.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_4.yml deleted file mode 100644 index 7f413eaa774..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_5.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_5.RULE index 1d91182f074..819e1c67afb 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_5.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: xpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_5.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_5.yml deleted file mode 100644 index d1a1c813bca..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_6.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_6.RULE index c45b28ccbc6..0cb22a78ab5 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_6.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: XPP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_6.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_6.yml deleted file mode 100644 index d1a1c813bca..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_7.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_7.RULE index 87a8783505e..583aa3da053 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_7.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: xpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_7.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_7.yml deleted file mode 100644 index d1a1c813bca..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_8.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_8.RULE index 2bb34cea424..75fc5f18476 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_8.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/xpp +--- + https://licenses.nuget.org/xpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_8.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_8.yml deleted file mode 100644 index f1360621dab..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/xpp diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_9.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_9.RULE index 3da47c2878e..4269241a657 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_9.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_9.RULE @@ -1 +1,7 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/xpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_9.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_9.yml deleted file mode 100644 index 4d69fdd1c5e..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_url_1.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_url_1.RULE index a42c9162974..fe34eb70371 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xpp +--- + https://spdx.org/licenses/xpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_url_1.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_url_1.yml deleted file mode 100644 index 33e0c963492..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xpp diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_url_2.RULE b/src/licensedcode/data/rules/indiana-extreme-1.2_url_2.RULE index bcc56421a9e..adca4c19795 100644 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/indiana-extreme-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: indiana-extreme-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xpp.html +--- + https://spdx.org/licenses/xpp.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme-1.2_url_2.yml b/src/licensedcode/data/rules/indiana-extreme-1.2_url_2.yml deleted file mode 100644 index ec0ec78330b..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: indiana-extreme-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xpp.html diff --git a/src/licensedcode/data/rules/indiana-extreme.RULE b/src/licensedcode/data/rules/indiana-extreme.RULE index b3ba3f8ff9e..1808a6577ae 100644 --- a/src/licensedcode/data/rules/indiana-extreme.RULE +++ b/src/licensedcode/data/rules/indiana-extreme.RULE @@ -1 +1,10 @@ -http://www.bearcave.com/software/java/xml/xmlpull_license.html \ No newline at end of file +--- +license_expression: indiana-extreme +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.bearcave.com/software/java/xml/xmlpull_license.html +--- + +http://www.bearcave.com/software/java/xml/xmlpull_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme.yml b/src/licensedcode/data/rules/indiana-extreme.yml deleted file mode 100644 index b11c78200b9..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: indiana-extreme -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.bearcave.com/software/java/xml/xmlpull_license.html diff --git a/src/licensedcode/data/rules/indiana-extreme2.RULE b/src/licensedcode/data/rules/indiana-extreme2.RULE index e0e8c94b95a..380acf5688a 100644 --- a/src/licensedcode/data/rules/indiana-extreme2.RULE +++ b/src/licensedcode/data/rules/indiana-extreme2.RULE @@ -1,3 +1,17 @@ +--- +license_expression: indiana-extreme +is_license_text: yes +minimum_coverage: 85 +ignorable_copyrights: + - Copyright (c) 2002 Extreme! Lab, Indiana University +ignorable_holders: + - Extreme! Lab, Indiana University +ignorable_authors: + - the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/) +ignorable_urls: + - http://www.extreme.indiana.edu/ +--- + Indiana University Extreme! Lab Software License Version 1.1.1 Copyright (c) 2002 Extreme! Lab, Indiana University. All rights reserved. @@ -30,4 +44,4 @@ 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. +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme2.yml b/src/licensedcode/data/rules/indiana-extreme2.yml deleted file mode 100644 index 0c6bdbcb4f5..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme2.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: indiana-extreme -is_license_text: yes -minimum_coverage: 85 -ignorable_copyrights: - - Copyright (c) 2002 Extreme! Lab, Indiana University -ignorable_holders: - - Extreme! Lab, Indiana University -ignorable_authors: - - the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/) -ignorable_urls: - - http://www.extreme.indiana.edu/ diff --git a/src/licensedcode/data/rules/indiana-extreme3.RULE b/src/licensedcode/data/rules/indiana-extreme3.RULE index 784396908b3..1c7e0e9ae9b 100644 --- a/src/licensedcode/data/rules/indiana-extreme3.RULE +++ b/src/licensedcode/data/rules/indiana-extreme3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: indiana-extreme +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2002 Extreme! Lab, Indiana University +ignorable_holders: + - Extreme! Lab, Indiana University +ignorable_authors: + - the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/) +ignorable_urls: + - http://www.extreme.indiana.edu/ +--- + This is licensed under the Indiana University Extreme! Lab Software License, version 1.1.1: Indiana University Extreme! Lab Software License diff --git a/src/licensedcode/data/rules/indiana-extreme3.yml b/src/licensedcode/data/rules/indiana-extreme3.yml deleted file mode 100644 index 9085feece0d..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: indiana-extreme -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2002 Extreme! Lab, Indiana University -ignorable_holders: - - Extreme! Lab, Indiana University -ignorable_authors: - - the Indiana University Extreme! Lab (http://www.extreme.indiana.edu/) -ignorable_urls: - - http://www.extreme.indiana.edu/ diff --git a/src/licensedcode/data/rules/indiana-extreme4.RULE b/src/licensedcode/data/rules/indiana-extreme4.RULE index 3029798f2f4..639b1c3528e 100644 --- a/src/licensedcode/data/rules/indiana-extreme4.RULE +++ b/src/licensedcode/data/rules/indiana-extreme4.RULE @@ -1 +1,7 @@ -This is licensed under the Indiana University Extreme! Lab Software License, version 1.1.1: +--- +license_expression: indiana-extreme +is_license_reference: yes +relevance: 100 +--- + +This is licensed under the Indiana University Extreme! Lab Software License, version 1.1.1: \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme4.yml b/src/licensedcode/data/rules/indiana-extreme4.yml deleted file mode 100644 index 803e44b003b..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: indiana-extreme -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/indiana-extreme_1.RULE b/src/licensedcode/data/rules/indiana-extreme_1.RULE index 66d9dbe8ecb..30bc477ef36 100644 --- a/src/licensedcode/data/rules/indiana-extreme_1.RULE +++ b/src/licensedcode/data/rules/indiana-extreme_1.RULE @@ -1 +1,8 @@ +--- +license_expression: indiana-extreme +is_license_notice: yes +relevance: 100 +notes: Copyright © 2002 Extreme! Lab, Indiana University. All rights reserved. +--- + See {{XPP3 License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme_1.yml b/src/licensedcode/data/rules/indiana-extreme_1.yml deleted file mode 100644 index 375e47d2edf..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: indiana-extreme -is_license_notice: yes -relevance: 100 -notes: Copyright © 2002 Extreme! Lab, Indiana University. All rights reserved. diff --git a/src/licensedcode/data/rules/indiana-extreme_2.RULE b/src/licensedcode/data/rules/indiana-extreme_2.RULE index d5f437de235..6ebb0238e8e 100644 --- a/src/licensedcode/data/rules/indiana-extreme_2.RULE +++ b/src/licensedcode/data/rules/indiana-extreme_2.RULE @@ -1 +1,8 @@ +--- +license_expression: indiana-extreme +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Indiana University Extreme! Lab Software License Version 1.1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/indiana-extreme_2.yml b/src/licensedcode/data/rules/indiana-extreme_2.yml deleted file mode 100644 index 80751671b86..00000000000 --- a/src/licensedcode/data/rules/indiana-extreme_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: indiana-extreme -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/infineon-free_1.RULE b/src/licensedcode/data/rules/infineon-free_1.RULE index 98e979c61cc..2a251698af4 100644 --- a/src/licensedcode/data/rules/infineon-free_1.RULE +++ b/src/licensedcode/data/rules/infineon-free_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: infineon-free +is_license_text: yes +relevance: 100 +--- + All rights reserved. No Warranty Because the program is licensed free of charge, there is no warranty for the program, to the extent permitted by applicable law. Except when diff --git a/src/licensedcode/data/rules/infineon-free_1.yml b/src/licensedcode/data/rules/infineon-free_1.yml deleted file mode 100644 index 2cffff3bc2c..00000000000 --- a/src/licensedcode/data/rules/infineon-free_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: infineon-free -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/info-zip-2009-01_1.RULE b/src/licensedcode/data/rules/info-zip-2009-01_1.RULE index cf90c1f9f47..7183fcffc9f 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_1.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: info-zip-2009-01 +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: Seen in Info-Zip with a notice "copyrighted 1997 by Steve P. Miller. Relicensed to Info-Zip + terms per Info-Zip documentation" +--- + The product "Pocket UnZip" itself is property of the author and cannot be altered in any way without written consent from. \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_1.yml b/src/licensedcode/data/rules/info-zip-2009-01_1.yml deleted file mode 100644 index 4325cc5ecd8..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: Seen in Info-Zip with a notice "copyrighted 1997 by Steve P. Miller. Relicensed to Info-Zip - terms per Info-Zip documentation" diff --git a/src/licensedcode/data/rules/info-zip-2009-01_10.RULE b/src/licensedcode/data/rules/info-zip-2009-01_10.RULE index 3ee3a8e4b83..75f7756e0e0 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_10.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_10.RULE @@ -1 +1,7 @@ +--- +license_expression: info-zip-2009-01 +is_license_notice: yes +relevance: 100 +--- + covered by the new Info-ZIP license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_10.yml b/src/licensedcode/data/rules/info-zip-2009-01_10.yml deleted file mode 100644 index eba3060a5d5..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/info-zip-2009-01_11.RULE b/src/licensedcode/data/rules/info-zip-2009-01_11.RULE index 50ccebdb576..1d58c7fe922 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_11.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_11.RULE @@ -1,3 +1,14 @@ +--- +license_expression: info-zip-2009-01 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - zip.h +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + See the accompanying file LICENSE, version 2000-Apr-09 or later (the contents of which are also included in zip.h) for terms of use. If, for some reason, all these files are missing, the Info-ZIP license diff --git a/src/licensedcode/data/rules/info-zip-2009-01_11.yml b/src/licensedcode/data/rules/info-zip-2009-01_11.yml deleted file mode 100644 index d7809619bba..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_11.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - zip.h -ignorable_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/rules/info-zip-2009-01_12.RULE b/src/licensedcode/data/rules/info-zip-2009-01_12.RULE index 24abcc37e74..d8c9f8bf294 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_12.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_12.RULE @@ -1,3 +1,15 @@ +--- +license_expression: info-zip-2009-01 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1990-2009 Info-ZIP. +ignorable_holders: + - Info-ZIP +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html + - http://www.info-zip.org/pub/infozip/license.html +--- + This is version 2009-Jan-02 of the Info-ZIP license. The definitive version of this document should be available at ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely and diff --git a/src/licensedcode/data/rules/info-zip-2009-01_12.yml b/src/licensedcode/data/rules/info-zip-2009-01_12.yml deleted file mode 100644 index 6eaa6ece13e..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_12.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1990-2009 Info-ZIP. -ignorable_holders: - - Info-ZIP -ignorable_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html - - http://www.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/rules/info-zip-2009-01_13.RULE b/src/licensedcode/data/rules/info-zip-2009-01_13.RULE index 51659533a19..0c6df438d44 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_13.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_13.RULE @@ -1 +1,7 @@ +--- +license_expression: info-zip-2009-01 +is_license_reference: yes +relevance: 100 +--- + Info-ZIP Info-ZIP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_13.yml b/src/licensedcode/data/rules/info-zip-2009-01_13.yml deleted file mode 100644 index 0565c342726..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/info-zip-2009-01_2.RULE b/src/licensedcode/data/rules/info-zip-2009-01_2.RULE index a0c89da7c8b..bd4ee793df4 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_2.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_2.RULE @@ -1 +1,9 @@ -ftp://ftp.info-zip.org/pub/infozip/license.html +--- +license_expression: info-zip-2009-01 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - ftp://ftp.info-zip.org/pub/infozip/license.html +--- + +ftp://ftp.info-zip.org/pub/infozip/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_2.yml b/src/licensedcode/data/rules/info-zip-2009-01_2.yml deleted file mode 100644 index bda83bd767e..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - ftp://ftp.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/rules/info-zip-2009-01_3.RULE b/src/licensedcode/data/rules/info-zip-2009-01_3.RULE index adb15094c80..112881bf3bd 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_3.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_3.RULE @@ -1 +1,9 @@ -http://www.info-zip.org/pub/infozip/license.html +--- +license_expression: info-zip-2009-01 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.info-zip.org/pub/infozip/license.html +--- + +http://www.info-zip.org/pub/infozip/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_3.yml b/src/licensedcode/data/rules/info-zip-2009-01_3.yml deleted file mode 100644 index c00eb3b1b52..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.info-zip.org/pub/infozip/license.html diff --git a/src/licensedcode/data/rules/info-zip-2009-01_4.RULE b/src/licensedcode/data/rules/info-zip-2009-01_4.RULE index f011382c253..d018df36812 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_4.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_4.RULE @@ -1,2 +1,24 @@ +--- +license_expression: info-zip-2009-01 +is_license_notice: yes +relevance: 99 +minimum_coverage: 99 +notes: | + Seen in Info-zip this note: + * MacBinaryIII.h + * + * Copyright 1997 Christopher Evans (cevans@poppybank.com) + * + * Basic encoding and decoding of Macintosh files to the + * MacBinary III spec. + + * This source is copyrighted by Christopher Evans (cevans@poppybank.com) + * (available at ftp://ftp.lazerware.com/MacBinaryIII_src_C.sit + * homepage of Leonard Rosenthol leonardr@netcom.com) + + This copyright note does not contain any usage terms. So, we assume + that this code is freely reusable until we are proved wrong... +--- + This copyright note does not contain any usage terms. So, we assume that this code is freely reusable until we are proved wrong... \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_4.yml b/src/licensedcode/data/rules/info-zip-2009-01_4.yml deleted file mode 100644 index 2aa7bba22a8..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_4.yml +++ /dev/null @@ -1,19 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_notice: yes -relevance: 99 -minimum_coverage: 99 -notes: | - Seen in Info-zip this note: - * MacBinaryIII.h - * - * Copyright 1997 Christopher Evans (cevans@poppybank.com) - * - * Basic encoding and decoding of Macintosh files to the - * MacBinary III spec. - - * This source is copyrighted by Christopher Evans (cevans@poppybank.com) - * (available at ftp://ftp.lazerware.com/MacBinaryIII_src_C.sit - * homepage of Leonard Rosenthol leonardr@netcom.com) - - This copyright note does not contain any usage terms. So, we assume - that this code is freely reusable until we are proved wrong... diff --git a/src/licensedcode/data/rules/info-zip-2009-01_5.RULE b/src/licensedcode/data/rules/info-zip-2009-01_5.RULE index 9c21c420fb6..f6f400f2b55 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_5.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_5.RULE @@ -1 +1,7 @@ +--- +license_expression: info-zip-2009-01 +is_license_reference: yes +relevance: 100 +--- + covered by the Info-ZIP Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_5.yml b/src/licensedcode/data/rules/info-zip-2009-01_5.yml deleted file mode 100644 index 0565c342726..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/info-zip-2009-01_6.RULE b/src/licensedcode/data/rules/info-zip-2009-01_6.RULE index 8e38e135c58..d043c63d071 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_6.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_6.RULE @@ -1 +1,7 @@ +--- +license_expression: info-zip-2009-01 +is_license_reference: yes +relevance: 100 +--- + complete core code is now covered by the Info-ZIP Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_6.yml b/src/licensedcode/data/rules/info-zip-2009-01_6.yml deleted file mode 100644 index 0565c342726..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/info-zip-2009-01_7.RULE b/src/licensedcode/data/rules/info-zip-2009-01_7.RULE index 43f3c3ed0b5..bb9f2dfb04c 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_7.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: info-zip-2009-01 +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +--- + previously put into the public domain). All these Info-ZIP contributors (or "primary" authors) have permitted us to replace their copyright notes by the Info-ZIP License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_7.yml b/src/licensedcode/data/rules/info-zip-2009-01_7.yml deleted file mode 100644 index b8a72913c0e..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/info-zip-2009-01_8.RULE b/src/licensedcode/data/rules/info-zip-2009-01_8.RULE index fc4b92963ec..648174fef84 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_8.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: info-zip-2009-01 +is_license_reference: yes +relevance: 100 +--- + The remaining copyright notes have been superseeded by the new Info-ZIP license, with explicit permission from the respective original authors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_8.yml b/src/licensedcode/data/rules/info-zip-2009-01_8.yml deleted file mode 100644 index 0565c342726..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/info-zip-2009-01_9.RULE b/src/licensedcode/data/rules/info-zip-2009-01_9.RULE index 9f7575d3afe..082920ba02f 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_9.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_9.RULE @@ -1 +1,7 @@ +--- +license_expression: info-zip-2009-01 +is_license_reference: yes +relevance: 100 +--- + Info-ZIP license \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_9.yml b/src/licensedcode/data/rules/info-zip-2009-01_9.yml deleted file mode 100644 index 0565c342726..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: info-zip-2009-01 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_1.RULE b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_1.RULE index 94bb223b0c5..ed7a0316c9b 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: info-zip-2009-01 AND other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: Seen in Info-Zip with a notice Copyright (c) 1996 Mike White. Relicensed to Info-Zip + terms per Info-Zip documentation +--- + Permission is granted to any individual or institution to use, copy, or redistribute this software so long as all of the original files are included, that it is not sold for profit, and that this diff --git a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_1.yml b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_1.yml deleted file mode 100644 index 85b77a65819..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip-2009-01 AND other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: Seen in Info-Zip with a notice Copyright (c) 1996 Mike White. Relicensed to Info-Zip - terms per Info-Zip documentation diff --git a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_2.RULE b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_2.RULE index 32f5cb41f6e..dde0b791051 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: info-zip-2009-01 AND other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: Seen in Info-Zip with a notice Copyright (c) 1994 Greg Roelofs. Relicensed to Info-Zip + terms per Info-Zip documentation +--- + Permission is granted to any individual/institution/corporate entity to use, copy, redistribute or modify this software for any purpose whatsoever, subject to the conditions noted in the diff --git a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_2.yml b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_2.yml deleted file mode 100644 index 261ea674059..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip-2009-01 AND other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: Seen in Info-Zip with a notice Copyright (c) 1994 Greg Roelofs. Relicensed to Info-Zip - terms per Info-Zip documentation diff --git a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_3.RULE b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_3.RULE index 0e42bb74e64..714cbe459b8 100644 --- a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: info-zip-2009-01 AND other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: Seen in Info-Zip with a notice Copyright (c) 1992-93 Igor Mandrichenko. Relicensed to + Info-Zip terms per Info-Zip documentation +--- + Permission is granted to any individual or institution to use, copy, or redistribute this software so long as all of the original files are included unmodified and that this copyright notice is retained. \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_3.yml b/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_3.yml deleted file mode 100644 index a15ee20ee5e..00000000000 --- a/src/licensedcode/data/rules/info-zip-2009-01_and_other-permissive_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip-2009-01 AND other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: Seen in Info-Zip with a notice Copyright (c) 1992-93 Igor Mandrichenko. Relicensed to - Info-Zip terms per Info-Zip documentation diff --git a/src/licensedcode/data/rules/info-zip_1.RULE b/src/licensedcode/data/rules/info-zip_1.RULE index f52fd745fd8..a17a67cd3c9 100644 --- a/src/licensedcode/data/rules/info-zip_1.RULE +++ b/src/licensedcode/data/rules/info-zip_1.RULE @@ -1 +1,10 @@ +--- +license_expression: info-zip +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Info-ZIP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_1.yml b/src/licensedcode/data/rules/info-zip_1.yml deleted file mode 100644 index 5025cc7d383..00000000000 --- a/src/licensedcode/data/rules/info-zip_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/info-zip_2.RULE b/src/licensedcode/data/rules/info-zip_2.RULE index ad23acb70df..818695ff181 100644 --- a/src/licensedcode/data/rules/info-zip_2.RULE +++ b/src/licensedcode/data/rules/info-zip_2.RULE @@ -1 +1,10 @@ +--- +license_expression: info-zip +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Info-ZIP License Info-ZIP \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_2.yml b/src/licensedcode/data/rules/info-zip_2.yml deleted file mode 100644 index 5025cc7d383..00000000000 --- a/src/licensedcode/data/rules/info-zip_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/info-zip_3.RULE b/src/licensedcode/data/rules/info-zip_3.RULE index f40e12d4f83..93ac399cfc2 100644 --- a/src/licensedcode/data/rules/info-zip_3.RULE +++ b/src/licensedcode/data/rules/info-zip_3.RULE @@ -1 +1,10 @@ +--- +license_expression: info-zip +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Info-ZIP \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_3.yml b/src/licensedcode/data/rules/info-zip_3.yml deleted file mode 100644 index 9a044d54637..00000000000 --- a/src/licensedcode/data/rules/info-zip_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/info-zip_4.RULE b/src/licensedcode/data/rules/info-zip_4.RULE index 1eac7d979f5..c3d86f0f56f 100644 --- a/src/licensedcode/data/rules/info-zip_4.RULE +++ b/src/licensedcode/data/rules/info-zip_4.RULE @@ -1 +1,10 @@ +--- +license_expression: info-zip +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Info-ZIP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_4.yml b/src/licensedcode/data/rules/info-zip_4.yml deleted file mode 100644 index 9a044d54637..00000000000 --- a/src/licensedcode/data/rules/info-zip_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/info-zip_5.RULE b/src/licensedcode/data/rules/info-zip_5.RULE index f3b2a497e9f..8ecd0701147 100644 --- a/src/licensedcode/data/rules/info-zip_5.RULE +++ b/src/licensedcode/data/rules/info-zip_5.RULE @@ -1 +1,10 @@ +--- +license_expression: info-zip +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Info-ZIP \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_5.yml b/src/licensedcode/data/rules/info-zip_5.yml deleted file mode 100644 index 9a044d54637..00000000000 --- a/src/licensedcode/data/rules/info-zip_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: info-zip -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/info-zip_6.RULE b/src/licensedcode/data/rules/info-zip_6.RULE index 211b5cf39c0..b29c849ba42 100644 --- a/src/licensedcode/data/rules/info-zip_6.RULE +++ b/src/licensedcode/data/rules/info-zip_6.RULE @@ -1 +1,9 @@ +--- +license_expression: info-zip +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Info-ZIP +--- + https://licenses.nuget.org/Info-ZIP \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_6.yml b/src/licensedcode/data/rules/info-zip_6.yml deleted file mode 100644 index 4b223a0daa4..00000000000 --- a/src/licensedcode/data/rules/info-zip_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: info-zip -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Info-ZIP diff --git a/src/licensedcode/data/rules/info-zip_7.RULE b/src/licensedcode/data/rules/info-zip_7.RULE index de683aabe02..2c8a7ad18ed 100644 --- a/src/licensedcode/data/rules/info-zip_7.RULE +++ b/src/licensedcode/data/rules/info-zip_7.RULE @@ -1 +1,7 @@ +--- +license_expression: info-zip +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Info-ZIP \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_7.yml b/src/licensedcode/data/rules/info-zip_7.yml deleted file mode 100644 index ea02b5608a8..00000000000 --- a/src/licensedcode/data/rules/info-zip_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: info-zip -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/info-zip_8.RULE b/src/licensedcode/data/rules/info-zip_8.RULE index 69d2957d218..16cb9522362 100644 --- a/src/licensedcode/data/rules/info-zip_8.RULE +++ b/src/licensedcode/data/rules/info-zip_8.RULE @@ -1 +1,9 @@ +--- +license_expression: info-zip +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Info-ZIP +--- + {{Info-ZIP}} https://spdx.org/licenses/Info-ZIP \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_8.yml b/src/licensedcode/data/rules/info-zip_8.yml deleted file mode 100644 index 27fc6be77e5..00000000000 --- a/src/licensedcode/data/rules/info-zip_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: info-zip -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Info-ZIP diff --git a/src/licensedcode/data/rules/info-zip_9.RULE b/src/licensedcode/data/rules/info-zip_9.RULE index d5ccfee45ca..af675333069 100644 --- a/src/licensedcode/data/rules/info-zip_9.RULE +++ b/src/licensedcode/data/rules/info-zip_9.RULE @@ -1 +1,9 @@ +--- +license_expression: info-zip +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Info-ZIP +--- + LICENSE {{Info-ZIP}} https://spdx.org/licenses/Info-ZIP \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_9.yml b/src/licensedcode/data/rules/info-zip_9.yml deleted file mode 100644 index 27fc6be77e5..00000000000 --- a/src/licensedcode/data/rules/info-zip_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: info-zip -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Info-ZIP diff --git a/src/licensedcode/data/rules/info-zip_url_1.RULE b/src/licensedcode/data/rules/info-zip_url_1.RULE index 216441d7457..ef41c1d6d57 100644 --- a/src/licensedcode/data/rules/info-zip_url_1.RULE +++ b/src/licensedcode/data/rules/info-zip_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: info-zip +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/info-zip +--- + https://spdx.org/licenses/info-zip \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_url_1.yml b/src/licensedcode/data/rules/info-zip_url_1.yml deleted file mode 100644 index 7b6bd0a886e..00000000000 --- a/src/licensedcode/data/rules/info-zip_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: info-zip -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/info-zip diff --git a/src/licensedcode/data/rules/info-zip_url_2.RULE b/src/licensedcode/data/rules/info-zip_url_2.RULE index e234d306607..6daf439f009 100644 --- a/src/licensedcode/data/rules/info-zip_url_2.RULE +++ b/src/licensedcode/data/rules/info-zip_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: info-zip +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/info-zip.html +--- + https://spdx.org/licenses/info-zip.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/info-zip_url_2.yml b/src/licensedcode/data/rules/info-zip_url_2.yml deleted file mode 100644 index cf15a4e7a56..00000000000 --- a/src/licensedcode/data/rules/info-zip_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: info-zip -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/info-zip.html diff --git a/src/licensedcode/data/rules/inner-net-2.0_1.RULE b/src/licensedcode/data/rules/inner-net-2.0_1.RULE index 59aea319370..a2d6dc5c127 100644 --- a/src/licensedcode/data/rules/inner-net-2.0_1.RULE +++ b/src/licensedcode/data/rules/inner-net-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: inner-net-2.0 +is_license_text: yes +--- + /* The Inner Net License, Version 2.00 The author(s) grant permission for redistribution and use in source and @@ -31,5 +36,4 @@ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - If these license terms cause you a real problem, contact the author. */ - + If these license terms cause you a real problem, contact the author. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/inner-net-2.0_1.yml b/src/licensedcode/data/rules/inner-net-2.0_1.yml deleted file mode 100644 index 65e297d317c..00000000000 --- a/src/licensedcode/data/rules/inner-net-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: inner-net-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/inner-net-2.0_2.RULE b/src/licensedcode/data/rules/inner-net-2.0_2.RULE index 37a5f67e00d..121ce9142f5 100644 --- a/src/licensedcode/data/rules/inner-net-2.0_2.RULE +++ b/src/licensedcode/data/rules/inner-net-2.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: inner-net-2.0 +is_license_text: yes +--- + distributed under the following license: /* The Inner Net License, Version 2.00 @@ -33,4 +38,4 @@ distributed under the following license: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - If these license terms cause you a real problem, contact the author. */ + If these license terms cause you a real problem, contact the author. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/inner-net-2.0_2.yml b/src/licensedcode/data/rules/inner-net-2.0_2.yml deleted file mode 100644 index 65e297d317c..00000000000 --- a/src/licensedcode/data/rules/inner-net-2.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: inner-net-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/inner-net-2.0_3.RULE b/src/licensedcode/data/rules/inner-net-2.0_3.RULE index f66c2e06e22..b9f7190eab0 100644 --- a/src/licensedcode/data/rules/inner-net-2.0_3.RULE +++ b/src/licensedcode/data/rules/inner-net-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: inner-net-2.0 +is_license_reference: yes +relevance: 100 +--- + The Inner Net License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/inner-net-2.0_3.yml b/src/licensedcode/data/rules/inner-net-2.0_3.yml deleted file mode 100644 index 213d44bfa2c..00000000000 --- a/src/licensedcode/data/rules/inner-net-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: inner-net-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/inner-net-2.0_4.RULE b/src/licensedcode/data/rules/inner-net-2.0_4.RULE index c3a40c1f971..d21a384a71a 100644 --- a/src/licensedcode/data/rules/inner-net-2.0_4.RULE +++ b/src/licensedcode/data/rules/inner-net-2.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: inner-net-2.0 +is_license_text: yes +relevance: 100 +--- + The Inner Net License, Version 2 ================================ diff --git a/src/licensedcode/data/rules/inner-net-2.0_4.yml b/src/licensedcode/data/rules/inner-net-2.0_4.yml deleted file mode 100644 index b96f083f875..00000000000 --- a/src/licensedcode/data/rules/inner-net-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: inner-net-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/inno-setup_1.RULE b/src/licensedcode/data/rules/inno-setup_1.RULE index 112fdd46b99..40da516a2a2 100644 --- a/src/licensedcode/data/rules/inno-setup_1.RULE +++ b/src/licensedcode/data/rules/inno-setup_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: inno-setup +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1997-2007 Jordan Russell + - copyrighted by Jordan Russell +ignorable_holders: + - Jordan Russell +ignorable_urls: + - http://www.jrsoftware.org/ +--- + Inno Setup License ================== diff --git a/src/licensedcode/data/rules/inno-setup_1.yml b/src/licensedcode/data/rules/inno-setup_1.yml deleted file mode 100644 index 246ccb4ea9a..00000000000 --- a/src/licensedcode/data/rules/inno-setup_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: inno-setup -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1997-2007 Jordan Russell - - copyrighted by Jordan Russell -ignorable_holders: - - Jordan Russell -ignorable_urls: - - http://www.jrsoftware.org/ diff --git a/src/licensedcode/data/rules/inno-setup_2.RULE b/src/licensedcode/data/rules/inno-setup_2.RULE index 7a04c13e9e9..5b5374049a5 100644 --- a/src/licensedcode/data/rules/inno-setup_2.RULE +++ b/src/licensedcode/data/rules/inno-setup_2.RULE @@ -1 +1,7 @@ +--- +license_expression: inno-setup +is_license_reference: yes +relevance: 100 +--- + Inno Setup License \ No newline at end of file diff --git a/src/licensedcode/data/rules/inno-setup_2.yml b/src/licensedcode/data/rules/inno-setup_2.yml deleted file mode 100644 index 11f014c4a05..00000000000 --- a/src/licensedcode/data/rules/inno-setup_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: inno-setup -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/inno-setup_3.RULE b/src/licensedcode/data/rules/inno-setup_3.RULE index c91443a2f03..ae6ee7291be 100644 --- a/src/licensedcode/data/rules/inno-setup_3.RULE +++ b/src/licensedcode/data/rules/inno-setup_3.RULE @@ -1 +1,9 @@ +--- +license_expression: inno-setup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.jrsoftware.org/files/is/license.txt +--- + http://www.jrsoftware.org/files/is/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/inno-setup_3.yml b/src/licensedcode/data/rules/inno-setup_3.yml deleted file mode 100644 index 42592c1d25d..00000000000 --- a/src/licensedcode/data/rules/inno-setup_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: inno-setup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.jrsoftware.org/files/is/license.txt diff --git a/src/licensedcode/data/rules/inno-setup_4.RULE b/src/licensedcode/data/rules/inno-setup_4.RULE index 4c9a58705e6..7e2627bda72 100644 --- a/src/licensedcode/data/rules/inno-setup_4.RULE +++ b/src/licensedcode/data/rules/inno-setup_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: inno-setup +is_license_text: yes +--- + This software is provided on an "as-is" basis, without any express or implied warranty. In no event shall the author be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/inno-setup_4.yml b/src/licensedcode/data/rules/inno-setup_4.yml deleted file mode 100644 index fc865b94fdc..00000000000 --- a/src/licensedcode/data/rules/inno-setup_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: inno-setup -is_license_text: yes diff --git a/src/licensedcode/data/rules/intel-acpi_1.RULE b/src/licensedcode/data/rules/intel-acpi_1.RULE index fe6659137d7..c33ee5e0e58 100644 --- a/src/licensedcode/data/rules/intel-acpi_1.RULE +++ b/src/licensedcode/data/rules/intel-acpi_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: intel-acpi +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1999 - Intel Corp. +ignorable_holders: + - Intel Corp. +--- + 1. Copyright Notice Some or all of this work - Copyright (c) 1999 - Intel Corp. diff --git a/src/licensedcode/data/rules/intel-acpi_1.yml b/src/licensedcode/data/rules/intel-acpi_1.yml deleted file mode 100644 index bb752dac924..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: intel-acpi -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1999 - Intel Corp. -ignorable_holders: - - Intel Corp. diff --git a/src/licensedcode/data/rules/intel-acpi_10.RULE b/src/licensedcode/data/rules/intel-acpi_10.RULE index e614baaaa1a..243a25c6de5 100644 --- a/src/licensedcode/data/rules/intel-acpi_10.RULE +++ b/src/licensedcode/data/rules/intel-acpi_10.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Intel-ACPI +--- + https://licenses.nuget.org/Intel-ACPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_10.yml b/src/licensedcode/data/rules/intel-acpi_10.yml deleted file mode 100644 index 0b519767e47..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Intel-ACPI diff --git a/src/licensedcode/data/rules/intel-acpi_11.RULE b/src/licensedcode/data/rules/intel-acpi_11.RULE index 2777a954d88..9f2523e5c0b 100644 --- a/src/licensedcode/data/rules/intel-acpi_11.RULE +++ b/src/licensedcode/data/rules/intel-acpi_11.RULE @@ -1 +1,7 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Intel-ACPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_11.yml b/src/licensedcode/data/rules/intel-acpi_11.yml deleted file mode 100644 index 89bbd44d5ce..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-acpi_12.RULE b/src/licensedcode/data/rules/intel-acpi_12.RULE index ce00b9020d5..0e1e02cb23e 100644 --- a/src/licensedcode/data/rules/intel-acpi_12.RULE +++ b/src/licensedcode/data/rules/intel-acpi_12.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Intel-ACPI +--- + {{Intel-ACPI}} https://spdx.org/licenses/Intel-ACPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_12.yml b/src/licensedcode/data/rules/intel-acpi_12.yml deleted file mode 100644 index b503b0b8a3a..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Intel-ACPI diff --git a/src/licensedcode/data/rules/intel-acpi_13.RULE b/src/licensedcode/data/rules/intel-acpi_13.RULE index 9a6c2d9405a..964f4f4f6a7 100644 --- a/src/licensedcode/data/rules/intel-acpi_13.RULE +++ b/src/licensedcode/data/rules/intel-acpi_13.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Intel-ACPI +--- + LICENSE {{Intel-ACPI}} https://spdx.org/licenses/Intel-ACPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_13.yml b/src/licensedcode/data/rules/intel-acpi_13.yml deleted file mode 100644 index b503b0b8a3a..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Intel-ACPI diff --git a/src/licensedcode/data/rules/intel-acpi_2.RULE b/src/licensedcode/data/rules/intel-acpi_2.RULE index 8869e8bedc3..1e3c2a43bf8 100644 --- a/src/licensedcode/data/rules/intel-acpi_2.RULE +++ b/src/licensedcode/data/rules/intel-acpi_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: intel-acpi +is_license_text: yes +relevance: 100 +--- + 2. License 2.1. This is your license from Intel Corp. under its intellectual property diff --git a/src/licensedcode/data/rules/intel-acpi_2.yml b/src/licensedcode/data/rules/intel-acpi_2.yml deleted file mode 100644 index f489b5f4f5f..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-acpi -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-acpi_3.RULE b/src/licensedcode/data/rules/intel-acpi_3.RULE index 1cae8b49040..95ecd76eea4 100644 --- a/src/licensedcode/data/rules/intel-acpi_3.RULE +++ b/src/licensedcode/data/rules/intel-acpi_3.RULE @@ -1 +1,7 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +relevance: 100 +--- + Intel-ACPI Intel ACPI Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_3.yml b/src/licensedcode/data/rules/intel-acpi_3.yml deleted file mode 100644 index 89bbd44d5ce..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-acpi_4.RULE b/src/licensedcode/data/rules/intel-acpi_4.RULE index eb71630d42c..680b24286e3 100644 --- a/src/licensedcode/data/rules/intel-acpi_4.RULE +++ b/src/licensedcode/data/rules/intel-acpi_4.RULE @@ -1 +1,7 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +relevance: 100 +--- + Intel ACPI Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_4.yml b/src/licensedcode/data/rules/intel-acpi_4.yml deleted file mode 100644 index 89bbd44d5ce..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-acpi_5.RULE b/src/licensedcode/data/rules/intel-acpi_5.RULE index 1af4bb5d0de..966dba646e3 100644 --- a/src/licensedcode/data/rules/intel-acpi_5.RULE +++ b/src/licensedcode/data/rules/intel-acpi_5.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Intel ACPI Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_5.yml b/src/licensedcode/data/rules/intel-acpi_5.yml deleted file mode 100644 index 59065a68cd6..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-acpi_6.RULE b/src/licensedcode/data/rules/intel-acpi_6.RULE index 1fa9b96ca9f..71da684fe3d 100644 --- a/src/licensedcode/data/rules/intel-acpi_6.RULE +++ b/src/licensedcode/data/rules/intel-acpi_6.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Intel ACPI Software License Agreement Intel-ACPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_6.yml b/src/licensedcode/data/rules/intel-acpi_6.yml deleted file mode 100644 index 59065a68cd6..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-acpi_7.RULE b/src/licensedcode/data/rules/intel-acpi_7.RULE index 0cf21e356ab..3795194fc84 100644 --- a/src/licensedcode/data/rules/intel-acpi_7.RULE +++ b/src/licensedcode/data/rules/intel-acpi_7.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-acpi +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Intel-ACPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_7.yml b/src/licensedcode/data/rules/intel-acpi_7.yml deleted file mode 100644 index 3852043cf32..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-acpi -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-acpi_8.RULE b/src/licensedcode/data/rules/intel-acpi_8.RULE index b1b73ec59c1..15618ef73e5 100644 --- a/src/licensedcode/data/rules/intel-acpi_8.RULE +++ b/src/licensedcode/data/rules/intel-acpi_8.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-acpi +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Intel ACPI Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_8.yml b/src/licensedcode/data/rules/intel-acpi_8.yml deleted file mode 100644 index 3852043cf32..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-acpi -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-acpi_9.RULE b/src/licensedcode/data/rules/intel-acpi_9.RULE index 828efbf1180..7b2080a10b3 100644 --- a/src/licensedcode/data/rules/intel-acpi_9.RULE +++ b/src/licensedcode/data/rules/intel-acpi_9.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-acpi +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Intel-ACPI \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_9.yml b/src/licensedcode/data/rules/intel-acpi_9.yml deleted file mode 100644 index 3852043cf32..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-acpi -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_1.RULE index 287a7735f16..28b0ed7bff3 100644 --- a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: intel-acpi OR intel-bsd OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1999 - 2021, Intel Corp. +ignorable_holders: + - Intel Corp. +--- + * 1. Copyright Notice * * Some or all of this work - Copyright (c) 1999 - 2021, Intel Corp. diff --git a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_1.yml deleted file mode 100644 index 5ebf4c71d91..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: intel-acpi OR intel-bsd OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1999 - 2021, Intel Corp. -ignorable_holders: - - Intel Corp. diff --git a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_2.RULE index 00fa96b569c..5bd5d268d31 100644 --- a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: intel-acpi OR intel-bsd OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1999 -, Intel Corp. +ignorable_holders: + - Intel Corp. +--- + * 1. Copyright Notice * * Some or all of this work - Copyright (c) 1999 - , Intel Corp. diff --git a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_2.yml deleted file mode 100644 index fb7028a4ff9..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: intel-acpi OR intel-bsd OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1999 -, Intel Corp. -ignorable_holders: - - Intel Corp. diff --git a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_3.RULE index 286d2cc5fef..2985774e60e 100644 --- a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: intel-acpi OR intel-bsd OR gpl-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +--- + The licensing information at the start of each source code module has been updated. In addition to the Intel license, the dual GPLv2/BSD license has been added for completeness. \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_3.yml deleted file mode 100644 index 84e0d52aa79..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_or_intel-bsd_or_gpl-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: intel-acpi OR intel-bsd OR gpl-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/intel-acpi_url_1.RULE b/src/licensedcode/data/rules/intel-acpi_url_1.RULE index 64e7bf36024..6c419f8d549 100644 --- a/src/licensedcode/data/rules/intel-acpi_url_1.RULE +++ b/src/licensedcode/data/rules/intel-acpi_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/intel-acpi +--- + https://spdx.org/licenses/intel-acpi \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_url_1.yml b/src/licensedcode/data/rules/intel-acpi_url_1.yml deleted file mode 100644 index 8b36988b4a1..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/intel-acpi diff --git a/src/licensedcode/data/rules/intel-acpi_url_2.RULE b/src/licensedcode/data/rules/intel-acpi_url_2.RULE index b79cbfd93a7..e294888c8b5 100644 --- a/src/licensedcode/data/rules/intel-acpi_url_2.RULE +++ b/src/licensedcode/data/rules/intel-acpi_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-acpi +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/intel-acpi.html +--- + https://spdx.org/licenses/intel-acpi.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-acpi_url_2.yml b/src/licensedcode/data/rules/intel-acpi_url_2.yml deleted file mode 100644 index 31e8a9589e7..00000000000 --- a/src/licensedcode/data/rules/intel-acpi_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-acpi -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/intel-acpi.html diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_1.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_1.RULE index 8a208357984..4de1c39da0b 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_1.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_1.RULE @@ -1 +1,8 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + Intel Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_1.yml b/src/licensedcode/data/rules/intel-bsd-export-control_1.yml deleted file mode 100644 index 05b5d979198..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_10.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_10.RULE index df03d766cda..9f95ceca938 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_10.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_10.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Intel +--- + {{Intel}} https://spdx.org/licenses/Intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_10.yml b/src/licensedcode/data/rules/intel-bsd-export-control_10.yml deleted file mode 100644 index ba1a8c0a044..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Intel diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_11.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_11.RULE index fabe02deceb..1e582c9a4f9 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_11.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_11.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Intel +--- + LICENSE {{Intel}} https://spdx.org/licenses/Intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_11.yml b/src/licensedcode/data/rules/intel-bsd-export-control_11.yml deleted file mode 100644 index ba1a8c0a044..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Intel diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_2.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_2.RULE index abd1bf36162..4eab156b255 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_2.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_2.RULE @@ -1 +1,7 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 100 +--- + Intel Intel Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_2.yml b/src/licensedcode/data/rules/intel-bsd-export-control_2.yml deleted file mode 100644 index c92f346a671..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_3.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_3.RULE index 3f2d5661cd8..9a1722be7cc 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_3.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_3.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Intel Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_3.yml b/src/licensedcode/data/rules/intel-bsd-export-control_3.yml deleted file mode 100644 index 41a56806b49..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_4.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_4.RULE index 14441e054b9..d133b79943f 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_4.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_4.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Intel Open Source License Intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_4.yml b/src/licensedcode/data/rules/intel-bsd-export-control_4.yml deleted file mode 100644 index 41a56806b49..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_5.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_5.RULE index eeeae9c811a..3335243968e 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_5.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_5.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-bsd-export-control +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_5.yml b/src/licensedcode/data/rules/intel-bsd-export-control_5.yml deleted file mode 100644 index 080e2ad6ed4..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_6.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_6.RULE index dcdf9633c52..b942b0c0ac2 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_6.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_6.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-bsd-export-control +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Intel Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_6.yml b/src/licensedcode/data/rules/intel-bsd-export-control_6.yml deleted file mode 100644 index 080e2ad6ed4..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_7.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_7.RULE index 104a28e1fe5..caff105220b 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_7.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_7.RULE @@ -1 +1,10 @@ +--- +license_expression: intel-bsd-export-control +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_7.yml b/src/licensedcode/data/rules/intel-bsd-export-control_7.yml deleted file mode 100644 index 080e2ad6ed4..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_8.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_8.RULE index 210c8265731..84a9c4c8052 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_8.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_8.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Intel +--- + https://licenses.nuget.org/Intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_8.yml b/src/licensedcode/data/rules/intel-bsd-export-control_8.yml deleted file mode 100644 index 06b8dc32f4c..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Intel diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_9.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_9.RULE index 6771b471dd5..03ca968f51d 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_9.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_9.RULE @@ -1 +1,7 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_9.yml b/src/licensedcode/data/rules/intel-bsd-export-control_9.yml deleted file mode 100644 index c92f346a671..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_url_1.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_url_1.RULE index 1fbb1868e65..37e56a625d7 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_url_1.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/intel +--- + https://spdx.org/licenses/intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_url_1.yml b/src/licensedcode/data/rules/intel-bsd-export-control_url_1.yml deleted file mode 100644 index 51e6ef78742..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/intel diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_url_2.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_url_2.RULE index 8c106b56f8a..e79fa26a71f 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_url_2.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/intel.html +--- + https://spdx.org/licenses/intel.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_url_2.yml b/src/licensedcode/data/rules/intel-bsd-export-control_url_2.yml deleted file mode 100644 index 73223ddaebf..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/intel.html diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_86.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_86.RULE index d28c9cf482d..63ef185f0d5 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_86.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_86.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/intel +--- + http://opensource.org/licenses/intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_86.yml b/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_86.yml deleted file mode 100644 index 0ec37dd662d..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/intel diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_87.RULE b/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_87.RULE index 231c3169595..020a71612df 100644 --- a/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_87.RULE +++ b/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_87.RULE @@ -1 +1,9 @@ +--- +license_expression: intel-bsd-export-control +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/intel +--- + https://opensource.org/licenses/intel \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_87.yml b/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_87.yml deleted file mode 100644 index 0228ea60379..00000000000 --- a/src/licensedcode/data/rules/intel-bsd-export-control_url_glc_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/intel diff --git a/src/licensedcode/data/rules/intel-bsd_1.RULE b/src/licensedcode/data/rules/intel-bsd_1.RULE index 72a5c02e209..2cc572d9426 100644 --- a/src/licensedcode/data/rules/intel-bsd_1.RULE +++ b/src/licensedcode/data/rules/intel-bsd_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: intel-bsd +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: @@ -25,5 +30,4 @@ 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 DAMAGES. - +POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd_1.yml b/src/licensedcode/data/rules/intel-bsd_1.yml deleted file mode 100644 index d6bafc05879..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: intel-bsd -is_license_text: yes diff --git a/src/licensedcode/data/rules/intel-bsd_2.RULE b/src/licensedcode/data/rules/intel-bsd_2.RULE index 981dfe32044..8cdd02b3b66 100644 --- a/src/licensedcode/data/rules/intel-bsd_2.RULE +++ b/src/licensedcode/data/rules/intel-bsd_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: intel-bsd +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: diff --git a/src/licensedcode/data/rules/intel-bsd_2.yml b/src/licensedcode/data/rules/intel-bsd_2.yml deleted file mode 100644 index d6bafc05879..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: intel-bsd -is_license_text: yes diff --git a/src/licensedcode/data/rules/intel-bsd_3.RULE b/src/licensedcode/data/rules/intel-bsd_3.RULE index 768040572ea..69997b6746f 100644 --- a/src/licensedcode/data/rules/intel-bsd_3.RULE +++ b/src/licensedcode/data/rules/intel-bsd_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: intel-bsd +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: diff --git a/src/licensedcode/data/rules/intel-bsd_3.yml b/src/licensedcode/data/rules/intel-bsd_3.yml deleted file mode 100644 index d6bafc05879..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: intel-bsd -is_license_text: yes diff --git a/src/licensedcode/data/rules/intel-bsd_4.RULE b/src/licensedcode/data/rules/intel-bsd_4.RULE index 7461fa63225..769982c74d0 100644 --- a/src/licensedcode/data/rules/intel-bsd_4.RULE +++ b/src/licensedcode/data/rules/intel-bsd_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: intel-bsd +is_license_text: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/intel-bsd_4.yml b/src/licensedcode/data/rules/intel-bsd_4.yml deleted file mode 100644 index 78bae63fde4..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-bsd_5.RULE b/src/licensedcode/data/rules/intel-bsd_5.RULE index 41374182e8e..95d3eae893c 100644 --- a/src/licensedcode/data/rules/intel-bsd_5.RULE +++ b/src/licensedcode/data/rules/intel-bsd_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: intel-bsd +is_license_text: yes +relevance: 95 +notes: similar to inte-bsd with extra warranty terms +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/intel-bsd_5.yml b/src/licensedcode/data/rules/intel-bsd_5.yml deleted file mode 100644 index d5b9a6cbf1a..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: intel-bsd -is_license_text: yes -relevance: 95 -notes: similar to inte-bsd with extra warranty terms diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_1.RULE index 7ed660b7342..e08633384fc 100644 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: intel-bsd OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * Alternatively, you may choose to be licensed under the terms of the * following license: * diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_1.yml deleted file mode 100644 index c85d88482bd..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_2.RULE index c66c27339e9..6a268a04b2d 100644 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: intel-bsd OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -27,4 +33,4 @@ * 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 DAMAGES. + * THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_2.yml deleted file mode 100644 index a361c756194..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_3.RULE index 2432d8386e5..b6a3434bc1a 100644 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: intel-bsd OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -27,4 +33,4 @@ * 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 DAMAGES. + * THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_3.yml deleted file mode 100644 index a361c756194..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_4.RULE index c02aee49815..126f7ebe74e 100644 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: intel-bsd OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +notes: formerly the madwifi-dual license key +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_4.yml deleted file mode 100644 index 008f9a6dfba..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: intel-bsd OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 -notes: formerly the madwifi-dual license key diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_5.RULE index 17496f86861..26a8caee9cb 100644 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: intel-bsd OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_5.yml deleted file mode 100644 index c85d88482bd..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl_3.RULE b/src/licensedcode/data/rules/intel-bsd_or_gpl_3.RULE index cbfb9a7a592..32fb8075572 100644 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl_3.RULE +++ b/src/licensedcode/data/rules/intel-bsd_or_gpl_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: intel-bsd OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -28,4 +34,4 @@ 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 DAMAGES. +POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel-bsd_or_gpl_3.yml b/src/licensedcode/data/rules/intel-bsd_or_gpl_3.yml deleted file mode 100644 index a361c756194..00000000000 --- a/src/licensedcode/data/rules/intel-bsd_or_gpl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/intel-confidential_1.RULE b/src/licensedcode/data/rules/intel-confidential_1.RULE index 07ae7d665d8..20782e34134 100644 --- a/src/licensedcode/data/rules/intel-confidential_1.RULE +++ b/src/licensedcode/data/rules/intel-confidential_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: intel-confidential +is_license_text: yes +--- + CONFIDENTIAL * * The source code contained or described herein and all documents related to diff --git a/src/licensedcode/data/rules/intel-confidential_1.yml b/src/licensedcode/data/rules/intel-confidential_1.yml deleted file mode 100644 index e1708794270..00000000000 --- a/src/licensedcode/data/rules/intel-confidential_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: intel-confidential -is_license_text: yes diff --git a/src/licensedcode/data/rules/intel-firmware_1.RULE b/src/licensedcode/data/rules/intel-firmware_1.RULE index 72e74041ac1..ca54f9af0fd 100644 --- a/src/licensedcode/data/rules/intel-firmware_1.RULE +++ b/src/licensedcode/data/rules/intel-firmware_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: intel-firmware +is_license_text: yes +relevance: 95 +notes: See https://github.com/freebsd/freebsd-src/blob/cf5d1112408ddef3fdff8212599727c49ba90fa4/sys/contrib/dev/ipw/LICENSE + This has extra terms for confidentiality and is still a problematic license +--- + TERMS AND CONDITIONS IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS INTEL(C) SOFTWARE diff --git a/src/licensedcode/data/rules/intel-firmware_1.yml b/src/licensedcode/data/rules/intel-firmware_1.yml deleted file mode 100644 index f548d6e7f59..00000000000 --- a/src/licensedcode/data/rules/intel-firmware_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel-firmware -is_license_text: yes -relevance: 95 -notes: See https://github.com/freebsd/freebsd-src/blob/cf5d1112408ddef3fdff8212599727c49ba90fa4/sys/contrib/dev/ipw/LICENSE - This has extra terms for confidentiality and is still a problematic license diff --git a/src/licensedcode/data/rules/intel-material_1.RULE b/src/licensedcode/data/rules/intel-material_1.RULE index 1a6c3aeed52..47944455c39 100644 --- a/src/licensedcode/data/rules/intel-material_1.RULE +++ b/src/licensedcode/data/rules/intel-material_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: intel-material +is_license_text: yes +relevance: 100 +notes: paragraphs are reordered +--- + Unless otherwise agreed by Intel in writing, you may not remove or alter this notice or any other notice embedded in Materials by Intel or Intel's suppliers or licensors in any way. diff --git a/src/licensedcode/data/rules/intel-material_1.yml b/src/licensedcode/data/rules/intel-material_1.yml deleted file mode 100644 index eddc6820634..00000000000 --- a/src/licensedcode/data/rules/intel-material_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: intel-material -is_license_text: yes -relevance: 100 -notes: paragraphs are reordered diff --git a/src/licensedcode/data/rules/intel.RULE b/src/licensedcode/data/rules/intel.RULE index 68a0bb56a50..57c74b61aa9 100644 --- a/src/licensedcode/data/rules/intel.RULE +++ b/src/licensedcode/data/rules/intel.RULE @@ -1 +1,9 @@ +--- +license_expression: intel +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mepis.org/node/10358 +--- + http://www.mepis.org/node/10358 \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel.yml b/src/licensedcode/data/rules/intel.yml deleted file mode 100644 index c72a6064cb9..00000000000 --- a/src/licensedcode/data/rules/intel.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: intel -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mepis.org/node/10358 diff --git a/src/licensedcode/data/rules/intel_1.RULE b/src/licensedcode/data/rules/intel_1.RULE index b6d39b9a4c8..8082819c6be 100644 --- a/src/licensedcode/data/rules/intel_1.RULE +++ b/src/licensedcode/data/rules/intel_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: intel +is_license_text: yes +relevance: 95 +notes: intel for Realtek +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/intel_1.yml b/src/licensedcode/data/rules/intel_1.yml deleted file mode 100644 index b3f204947a4..00000000000 --- a/src/licensedcode/data/rules/intel_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel -is_license_text: yes -relevance: 95 -notes: intel for Realtek -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/rules/intel_2.RULE b/src/licensedcode/data/rules/intel_2.RULE index 295b6a03bb4..aa88d13d8a1 100644 --- a/src/licensedcode/data/rules/intel_2.RULE +++ b/src/licensedcode/data/rules/intel_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: intel +is_license_text: yes +relevance: 95 +notes: slighty different wording for the patent license which extends to non-OSS +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/intel_2.yml b/src/licensedcode/data/rules/intel_2.yml deleted file mode 100644 index 3fb631acacc..00000000000 --- a/src/licensedcode/data/rules/intel_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: intel -is_license_text: yes -relevance: 95 -notes: slighty different wording for the patent license which extends to non-OSS diff --git a/src/licensedcode/data/rules/intel_3.RULE b/src/licensedcode/data/rules/intel_3.RULE index c11d3ac19c0..5abb8b69af7 100644 --- a/src/licensedcode/data/rules/intel_3.RULE +++ b/src/licensedcode/data/rules/intel_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: intel +is_license_text: yes +relevance: 95 +notes: intel for Atheros +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/intel_3.yml b/src/licensedcode/data/rules/intel_3.yml deleted file mode 100644 index f6a9a11a0b9..00000000000 --- a/src/licensedcode/data/rules/intel_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel -is_license_text: yes -relevance: 95 -notes: intel for Atheros -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/rules/intel_4.RULE b/src/licensedcode/data/rules/intel_4.RULE index 4d62299b91a..d3efc654587 100644 --- a/src/licensedcode/data/rules/intel_4.RULE +++ b/src/licensedcode/data/rules/intel_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: intel +is_license_text: yes +relevance: 95 +notes: intel for Atheros +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/intel_4.yml b/src/licensedcode/data/rules/intel_4.yml deleted file mode 100644 index f6a9a11a0b9..00000000000 --- a/src/licensedcode/data/rules/intel_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: intel -is_license_text: yes -relevance: 95 -notes: intel for Atheros -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/rules/intel_5.RULE b/src/licensedcode/data/rules/intel_5.RULE index c89f3c62933..83eea85da3c 100644 --- a/src/licensedcode/data/rules/intel_5.RULE +++ b/src/licensedcode/data/rules/intel_5.RULE @@ -1 +1,7 @@ +--- +license_expression: intel +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Intel_Open_Source_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/intel_5.yml b/src/licensedcode/data/rules/intel_5.yml deleted file mode 100644 index 91a7eec18ff..00000000000 --- a/src/licensedcode/data/rules/intel_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/interbase-1.0_1.RULE b/src/licensedcode/data/rules/interbase-1.0_1.RULE index 584f1e95f1c..3f8b0e7f18f 100644 --- a/src/licensedcode/data/rules/interbase-1.0_1.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://info.borland.com/devsupport/interbase/opensource/IPL.html +--- + http://info.borland.com/devsupport/interbase/opensource/IPL.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_1.yml b/src/licensedcode/data/rules/interbase-1.0_1.yml deleted file mode 100644 index 0d5ea7750b8..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://info.borland.com/devsupport/interbase/opensource/IPL.html diff --git a/src/licensedcode/data/rules/interbase-1.0_10.RULE b/src/licensedcode/data/rules/interbase-1.0_10.RULE index 0c5d20928bb..eac36a1f876 100644 --- a/src/licensedcode/data/rules/interbase-1.0_10.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_10.yml b/src/licensedcode/data/rules/interbase-1.0_10.yml deleted file mode 100644 index 831ab23a36a..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/interbase-1.0_11.RULE b/src/licensedcode/data/rules/interbase-1.0_11.RULE index 018570f37ff..32ae49fa831 100644 --- a/src/licensedcode/data/rules/interbase-1.0_11.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Interbase-1.0 +--- + https://licenses.nuget.org/Interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_11.yml b/src/licensedcode/data/rules/interbase-1.0_11.yml deleted file mode 100644 index 6dd342aae69..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Interbase-1.0 diff --git a/src/licensedcode/data/rules/interbase-1.0_12.RULE b/src/licensedcode/data/rules/interbase-1.0_12.RULE index 06d3695ac1c..cf16ae1bb46 100644 --- a/src/licensedcode/data/rules/interbase-1.0_12.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_12.yml b/src/licensedcode/data/rules/interbase-1.0_12.yml deleted file mode 100644 index 2cd6157e016..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/interbase-1.0_13.RULE b/src/licensedcode/data/rules/interbase-1.0_13.RULE index 4e2f19ee562..4091efa8da6 100644 --- a/src/licensedcode/data/rules/interbase-1.0_13.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Interbase-1.0 +--- + LICENSE {{Interbase-1.0}} https://spdx.org/licenses/Interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_13.yml b/src/licensedcode/data/rules/interbase-1.0_13.yml deleted file mode 100644 index cde81c3fb33..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Interbase-1.0 diff --git a/src/licensedcode/data/rules/interbase-1.0_14.RULE b/src/licensedcode/data/rules/interbase-1.0_14.RULE index 7ba5b6c4f4c..797525e89ef 100644 --- a/src/licensedcode/data/rules/interbase-1.0_14.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Interbase-1.0 +--- + {{Interbase-1.0}} https://spdx.org/licenses/Interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_14.yml b/src/licensedcode/data/rules/interbase-1.0_14.yml deleted file mode 100644 index cde81c3fb33..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Interbase-1.0 diff --git a/src/licensedcode/data/rules/interbase-1.0_2.RULE b/src/licensedcode/data/rules/interbase-1.0_2.RULE index 77501d2efa0..fc5c4f66d70 100644 --- a/src/licensedcode/data/rules/interbase-1.0_2.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: interbase-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.inprise.com/IPL.html +--- + * The contents of this file are subject to the Interbase Public * License Version 1.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy diff --git a/src/licensedcode/data/rules/interbase-1.0_2.yml b/src/licensedcode/data/rules/interbase-1.0_2.yml deleted file mode 100644 index d159791f979..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: interbase-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.inprise.com/IPL.html diff --git a/src/licensedcode/data/rules/interbase-1.0_3.RULE b/src/licensedcode/data/rules/interbase-1.0_3.RULE index b35ba7bfbac..ad2dcd2580c 100644 --- a/src/licensedcode/data/rules/interbase-1.0_3.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +relevance: 100 +--- + Interbase-1.0 Interbase Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_3.yml b/src/licensedcode/data/rules/interbase-1.0_3.yml deleted file mode 100644 index 2cd6157e016..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/interbase-1.0_4.RULE b/src/licensedcode/data/rules/interbase-1.0_4.RULE index a9812ea818e..07e4b1ddbaa 100644 --- a/src/licensedcode/data/rules/interbase-1.0_4.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Interbase Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_4.yml b/src/licensedcode/data/rules/interbase-1.0_4.yml deleted file mode 100644 index 179d1a44b5f..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/interbase-1.0_5.RULE b/src/licensedcode/data/rules/interbase-1.0_5.RULE index d243397ac15..74a5c8c743e 100644 --- a/src/licensedcode/data/rules/interbase-1.0_5.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Interbase Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_5.yml b/src/licensedcode/data/rules/interbase-1.0_5.yml deleted file mode 100644 index 179d1a44b5f..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/interbase-1.0_6.RULE b/src/licensedcode/data/rules/interbase-1.0_6.RULE index fd43fe6b7e2..9c0174fa472 100644 --- a/src/licensedcode/data/rules/interbase-1.0_6.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Interbase Public License v1.0 Interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_6.yml b/src/licensedcode/data/rules/interbase-1.0_6.yml deleted file mode 100644 index 179d1a44b5f..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/interbase-1.0_7.RULE b/src/licensedcode/data/rules/interbase-1.0_7.RULE index 4de0adb1a8c..244faf69060 100644 --- a/src/licensedcode/data/rules/interbase-1.0_7.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: interbase-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_7.yml b/src/licensedcode/data/rules/interbase-1.0_7.yml deleted file mode 100644 index 7657d5e1dbc..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: interbase-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/interbase-1.0_8.RULE b/src/licensedcode/data/rules/interbase-1.0_8.RULE index 22944d007fd..565c39e51c7 100644 --- a/src/licensedcode/data/rules/interbase-1.0_8.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: interbase-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Interbase Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_8.yml b/src/licensedcode/data/rules/interbase-1.0_8.yml deleted file mode 100644 index 7657d5e1dbc..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: interbase-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/interbase-1.0_9.RULE b/src/licensedcode/data/rules/interbase-1.0_9.RULE index 34060da84c8..c986deb895f 100644 --- a/src/licensedcode/data/rules/interbase-1.0_9.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: interbase-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_9.yml b/src/licensedcode/data/rules/interbase-1.0_9.yml deleted file mode 100644 index 7657d5e1dbc..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: interbase-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/interbase-1.0_url_1.RULE b/src/licensedcode/data/rules/interbase-1.0_url_1.RULE index 6f43fa1a27a..b60afe6021d 100644 --- a/src/licensedcode/data/rules/interbase-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/interbase-1.0 +--- + https://spdx.org/licenses/interbase-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_url_1.yml b/src/licensedcode/data/rules/interbase-1.0_url_1.yml deleted file mode 100644 index 7a36125aec7..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/interbase-1.0 diff --git a/src/licensedcode/data/rules/interbase-1.0_url_2.RULE b/src/licensedcode/data/rules/interbase-1.0_url_2.RULE index 97ae7216866..5eb4a297cbd 100644 --- a/src/licensedcode/data/rules/interbase-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/interbase-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: interbase-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/interbase-1.0.html +--- + https://spdx.org/licenses/interbase-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/interbase-1.0_url_2.yml b/src/licensedcode/data/rules/interbase-1.0_url_2.yml deleted file mode 100644 index 8063dd7626d..00000000000 --- a/src/licensedcode/data/rules/interbase-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: interbase-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/interbase-1.0.html diff --git a/src/licensedcode/data/rules/iolib-exception-2.0_1.RULE b/src/licensedcode/data/rules/iolib-exception-2.0_1.RULE index ebb1be47ee9..a9b44b2ea3f 100644 --- a/src/licensedcode/data/rules/iolib-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/iolib-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH iolib-exception-2.0 +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - COPYING +--- + This file is part of the GNU IO Library. This library 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 @@ -15,4 +23,4 @@ As a special exception, if you link this library with files compiled with a GNU compiler to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might -be covered by the GNU General Public License. +be covered by the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/iolib-exception-2.0_1.yml b/src/licensedcode/data/rules/iolib-exception-2.0_1.yml deleted file mode 100644 index 372a9a79071..00000000000 --- a/src/licensedcode/data/rules/iolib-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH iolib-exception-2.0 -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/iolib-exception-2.0_2.RULE b/src/licensedcode/data/rules/iolib-exception-2.0_2.RULE index e73bce431c1..fd813f35df6 100644 --- a/src/licensedcode/data/rules/iolib-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/iolib-exception-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus WITH iolib-exception-2.0 +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - COPYING +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -17,4 +25,4 @@ As a special exception, if you link this library with files compiled with a GNU compiler to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why -the executable file might be covered by the GNU General Public License. */ +the executable file might be covered by the GNU General Public License. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/iolib-exception-2.0_2.yml b/src/licensedcode/data/rules/iolib-exception-2.0_2.yml deleted file mode 100644 index 372a9a79071..00000000000 --- a/src/licensedcode/data/rules/iolib-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus WITH iolib-exception-2.0 -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/ipa-font.RULE b/src/licensedcode/data/rules/ipa-font.RULE index 9f08cce3cec..befa43b0774 100644 --- a/src/licensedcode/data/rules/ipa-font.RULE +++ b/src/licensedcode/data/rules/ipa-font.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ipafont.html +--- + http://opensource.org/licenses/ipafont.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font.yml b/src/licensedcode/data/rules/ipa-font.yml deleted file mode 100644 index 86102281efe..00000000000 --- a/src/licensedcode/data/rules/ipa-font.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ipafont.html diff --git a/src/licensedcode/data/rules/ipa-font_1.RULE b/src/licensedcode/data/rules/ipa-font_1.RULE index 96326c55fb6..9645fce0a9d 100644 --- a/src/licensedcode/data/rules/ipa-font_1.RULE +++ b/src/licensedcode/data/rules/ipa-font_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +--- + IPA Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_1.yml b/src/licensedcode/data/rules/ipa-font_1.yml deleted file mode 100644 index f9605f7bf31..00000000000 --- a/src/licensedcode/data/rules/ipa-font_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ipa-font_10.RULE b/src/licensedcode/data/rules/ipa-font_10.RULE index 11944f9b1c5..8aa4ac5bd3b 100644 --- a/src/licensedcode/data/rules/ipa-font_10.RULE +++ b/src/licensedcode/data/rules/ipa-font_10.RULE @@ -1 +1,10 @@ +--- +license_expression: ipa-font +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: IPA Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_10.yml b/src/licensedcode/data/rules/ipa-font_10.yml deleted file mode 100644 index eaa2e69e156..00000000000 --- a/src/licensedcode/data/rules/ipa-font_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ipa-font -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ipa-font_11.RULE b/src/licensedcode/data/rules/ipa-font_11.RULE index 298795be166..fdf83f22958 100644 --- a/src/licensedcode/data/rules/ipa-font_11.RULE +++ b/src/licensedcode/data/rules/ipa-font_11.RULE @@ -1 +1,10 @@ +--- +license_expression: ipa-font +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: IPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_11.yml b/src/licensedcode/data/rules/ipa-font_11.yml deleted file mode 100644 index eaa2e69e156..00000000000 --- a/src/licensedcode/data/rules/ipa-font_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ipa-font -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ipa-font_12.RULE b/src/licensedcode/data/rules/ipa-font_12.RULE index 430f78c122f..e0c2c54946a 100644 --- a/src/licensedcode/data/rules/ipa-font_12.RULE +++ b/src/licensedcode/data/rules/ipa-font_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/IPA +--- + https://licenses.nuget.org/IPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_12.yml b/src/licensedcode/data/rules/ipa-font_12.yml deleted file mode 100644 index a6d4345380d..00000000000 --- a/src/licensedcode/data/rules/ipa-font_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/IPA diff --git a/src/licensedcode/data/rules/ipa-font_13.RULE b/src/licensedcode/data/rules/ipa-font_13.RULE index 0e478fe1176..f3bf29792a8 100644 --- a/src/licensedcode/data/rules/ipa-font_13.RULE +++ b/src/licensedcode/data/rules/ipa-font_13.RULE @@ -1 +1,7 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/IPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_13.yml b/src/licensedcode/data/rules/ipa-font_13.yml deleted file mode 100644 index f9605f7bf31..00000000000 --- a/src/licensedcode/data/rules/ipa-font_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ipa-font_14.RULE b/src/licensedcode/data/rules/ipa-font_14.RULE index 1eacc1d8dbe..9cc9e3102ac 100644 --- a/src/licensedcode/data/rules/ipa-font_14.RULE +++ b/src/licensedcode/data/rules/ipa-font_14.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/IPA +--- + LICENSE {{IPA}} https://spdx.org/licenses/IPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_14.yml b/src/licensedcode/data/rules/ipa-font_14.yml deleted file mode 100644 index fefcd8f47c4..00000000000 --- a/src/licensedcode/data/rules/ipa-font_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/IPA diff --git a/src/licensedcode/data/rules/ipa-font_15.RULE b/src/licensedcode/data/rules/ipa-font_15.RULE index 36736959faa..4504cf83d3e 100644 --- a/src/licensedcode/data/rules/ipa-font_15.RULE +++ b/src/licensedcode/data/rules/ipa-font_15.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/IPA +--- + {{IPA}} https://spdx.org/licenses/IPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_15.yml b/src/licensedcode/data/rules/ipa-font_15.yml deleted file mode 100644 index fefcd8f47c4..00000000000 --- a/src/licensedcode/data/rules/ipa-font_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/IPA diff --git a/src/licensedcode/data/rules/ipa-font_2.RULE b/src/licensedcode/data/rules/ipa-font_2.RULE index 88baaba05e0..62d97e4e7dd 100644 --- a/src/licensedcode/data/rules/ipa-font_2.RULE +++ b/src/licensedcode/data/rules/ipa-font_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ipafont.html +--- + http://www.opensource.org/licenses/ipafont.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_2.yml b/src/licensedcode/data/rules/ipa-font_2.yml deleted file mode 100644 index 99f02ee2477..00000000000 --- a/src/licensedcode/data/rules/ipa-font_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ipafont.html diff --git a/src/licensedcode/data/rules/ipa-font_3.RULE b/src/licensedcode/data/rules/ipa-font_3.RULE index aebc208f91e..5643700e44d 100644 --- a/src/licensedcode/data/rules/ipa-font_3.RULE +++ b/src/licensedcode/data/rules/ipa-font_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +--- + IPA_Font_License_Agreement_v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_3.yml b/src/licensedcode/data/rules/ipa-font_3.yml deleted file mode 100644 index f9605f7bf31..00000000000 --- a/src/licensedcode/data/rules/ipa-font_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ipa-font_4.RULE b/src/licensedcode/data/rules/ipa-font_4.RULE index ce43fcb9edb..f37c783e785 100644 --- a/src/licensedcode/data/rules/ipa-font_4.RULE +++ b/src/licensedcode/data/rules/ipa-font_4.RULE @@ -1 +1,7 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +--- + IPA_Font_License_Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_4.yml b/src/licensedcode/data/rules/ipa-font_4.yml deleted file mode 100644 index f9605f7bf31..00000000000 --- a/src/licensedcode/data/rules/ipa-font_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ipa-font_5.RULE b/src/licensedcode/data/rules/ipa-font_5.RULE index c8c6b78b503..8d2b97dabad 100644 --- a/src/licensedcode/data/rules/ipa-font_5.RULE +++ b/src/licensedcode/data/rules/ipa-font_5.RULE @@ -1,2 +1,7 @@ +--- +license_expression: ipa-font +is_license_reference: yes +--- + In using IPA fonts, please comply with the terms and conditions set out in "IPA Font License Agreement v1.0" included in this package. Any use, reproduction or distribution of the IPA Font or any exercise of rights under "IPA Font License Agreement v1.0" by a Recipient constitutes the Recipient's acceptance of the License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_5.yml b/src/licensedcode/data/rules/ipa-font_5.yml deleted file mode 100644 index 28803fff2c9..00000000000 --- a/src/licensedcode/data/rules/ipa-font_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes diff --git a/src/licensedcode/data/rules/ipa-font_6.RULE b/src/licensedcode/data/rules/ipa-font_6.RULE index 7870781a107..06f094252e9 100644 --- a/src/licensedcode/data/rules/ipa-font_6.RULE +++ b/src/licensedcode/data/rules/ipa-font_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ipa-font +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: IPA Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_6.yml b/src/licensedcode/data/rules/ipa-font_6.yml deleted file mode 100644 index 1fe1be3a0f7..00000000000 --- a/src/licensedcode/data/rules/ipa-font_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ipa-font_7.RULE b/src/licensedcode/data/rules/ipa-font_7.RULE index 9008405c983..1a902e47039 100644 --- a/src/licensedcode/data/rules/ipa-font_7.RULE +++ b/src/licensedcode/data/rules/ipa-font_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ipa-font +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + IPA IPA Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_7.yml b/src/licensedcode/data/rules/ipa-font_7.yml deleted file mode 100644 index 1fe1be3a0f7..00000000000 --- a/src/licensedcode/data/rules/ipa-font_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ipa-font_8.RULE b/src/licensedcode/data/rules/ipa-font_8.RULE index 5c5d92d176b..b25bc80a041 100644 --- a/src/licensedcode/data/rules/ipa-font_8.RULE +++ b/src/licensedcode/data/rules/ipa-font_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ipa-font +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + IPA Font License IPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_8.yml b/src/licensedcode/data/rules/ipa-font_8.yml deleted file mode 100644 index 1fe1be3a0f7..00000000000 --- a/src/licensedcode/data/rules/ipa-font_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ipa-font_9.RULE b/src/licensedcode/data/rules/ipa-font_9.RULE index 6b9a1ca9628..769ada889ed 100644 --- a/src/licensedcode/data/rules/ipa-font_9.RULE +++ b/src/licensedcode/data/rules/ipa-font_9.RULE @@ -1 +1,10 @@ +--- +license_expression: ipa-font +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: IPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_9.yml b/src/licensedcode/data/rules/ipa-font_9.yml deleted file mode 100644 index eaa2e69e156..00000000000 --- a/src/licensedcode/data/rules/ipa-font_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ipa-font -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ipa-font_url_1.RULE b/src/licensedcode/data/rules/ipa-font_url_1.RULE index cbd963f2da8..7682c4016db 100644 --- a/src/licensedcode/data/rules/ipa-font_url_1.RULE +++ b/src/licensedcode/data/rules/ipa-font_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ipa +--- + https://spdx.org/licenses/ipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_url_1.yml b/src/licensedcode/data/rules/ipa-font_url_1.yml deleted file mode 100644 index dcef7f3b79f..00000000000 --- a/src/licensedcode/data/rules/ipa-font_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ipa diff --git a/src/licensedcode/data/rules/ipa-font_url_2.RULE b/src/licensedcode/data/rules/ipa-font_url_2.RULE index d57d4830728..dad69483456 100644 --- a/src/licensedcode/data/rules/ipa-font_url_2.RULE +++ b/src/licensedcode/data/rules/ipa-font_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ipa.html +--- + https://spdx.org/licenses/ipa.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_url_2.yml b/src/licensedcode/data/rules/ipa-font_url_2.yml deleted file mode 100644 index 976c8149150..00000000000 --- a/src/licensedcode/data/rules/ipa-font_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ipa.html diff --git a/src/licensedcode/data/rules/ipa-font_url_glc_172.RULE b/src/licensedcode/data/rules/ipa-font_url_glc_172.RULE index db7df4167d4..14fd6b4de6d 100644 --- a/src/licensedcode/data/rules/ipa-font_url_glc_172.RULE +++ b/src/licensedcode/data/rules/ipa-font_url_glc_172.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ipa +--- + http://www.opensource.org/licenses/ipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_url_glc_172.yml b/src/licensedcode/data/rules/ipa-font_url_glc_172.yml deleted file mode 100644 index 23e6a24cff4..00000000000 --- a/src/licensedcode/data/rules/ipa-font_url_glc_172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ipa diff --git a/src/licensedcode/data/rules/ipa-font_url_glc_173.RULE b/src/licensedcode/data/rules/ipa-font_url_glc_173.RULE index e20d740f7a0..e82d737fe7d 100644 --- a/src/licensedcode/data/rules/ipa-font_url_glc_173.RULE +++ b/src/licensedcode/data/rules/ipa-font_url_glc_173.RULE @@ -1 +1,9 @@ +--- +license_expression: ipa-font +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ipa +--- + https://www.opensource.org/licenses/ipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/ipa-font_url_glc_173.yml b/src/licensedcode/data/rules/ipa-font_url_glc_173.yml deleted file mode 100644 index a8a5612a89c..00000000000 --- a/src/licensedcode/data/rules/ipa-font_url_glc_173.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ipa-font -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ipa diff --git a/src/licensedcode/data/rules/iptc-2006_1.RULE b/src/licensedcode/data/rules/iptc-2006_1.RULE index eaaae086fcf..271307832f8 100644 --- a/src/licensedcode/data/rules/iptc-2006_1.RULE +++ b/src/licensedcode/data/rules/iptc-2006_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: iptc-2006 +is_license_text: yes +relevance: 99 +--- + 1. The Specifications and Materials are licensed for use only on the condition that you agree to be bound by the terms of this license. Subject to this and other licensing requirements contained herein, you may, on a non-exclusive basis, use the Specifications and Materials. 2. The IPTC openly provides the Specifications and Materials for voluntary use by individuals, partnerships, companies, corporations, organizations and any other entity for use at the entity's own risk. This disclaimer, license and release is intended to apply to the IPTC, its officers, directors, agents, representatives, members, contributors, affiliates, contractors, or co-venturers acting jointly or severally. 3. The Document and translations thereof may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the copyright and license notices and references to the IPTC appearing in the Document and the terms of this Specifications License Agreement are included on all such copies and derivative works. Further, upon the receipt of written permission from the IPTC, the Document may be modified for the purpose of developing applications that use IPTC Specifications or as required to translate the Document into languages other than English. diff --git a/src/licensedcode/data/rules/iptc-2006_1.yml b/src/licensedcode/data/rules/iptc-2006_1.yml deleted file mode 100644 index 4d1667526a8..00000000000 --- a/src/licensedcode/data/rules/iptc-2006_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: iptc-2006 -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/isc-ormlite_1.RULE b/src/licensedcode/data/rules/isc-ormlite_1.RULE index c3a36f69d96..2beed774b9e 100644 --- a/src/licensedcode/data/rules/isc-ormlite_1.RULE +++ b/src/licensedcode/data/rules/isc-ormlite_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_text: yes +relevance: 98 +minimum_coverage: 95 +notes: this is mostly the same as the ISC but there is one sentence removed see https://github.com/j256/ormlite-core/blob/master/LICENSE.txt +--- + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that this permission notice appear in all copies. diff --git a/src/licensedcode/data/rules/isc-ormlite_1.yml b/src/licensedcode/data/rules/isc-ormlite_1.yml deleted file mode 100644 index 6259a4c9ef5..00000000000 --- a/src/licensedcode/data/rules/isc-ormlite_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_text: yes -relevance: 98 -minimum_coverage: 95 -notes: this is mostly the same as the ISC but there is one sentence removed see https://github.com/j256/ormlite-core/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/isc-ormlite_2.RULE b/src/licensedcode/data/rules/isc-ormlite_2.RULE index 46dd8cb7ec1..dbe9c5aca41 100644 --- a/src/licensedcode/data/rules/isc-ormlite_2.RULE +++ b/src/licensedcode/data/rules/isc-ormlite_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_text: yes +relevance: 98 +minimum_coverage: 95 +notes: this is mostly the same as the ISC but there is one sentence removed see https://github.com/j256/ormlite-core/blob/master/LICENSE.txt +--- + ISC License Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby diff --git a/src/licensedcode/data/rules/isc-ormlite_2.yml b/src/licensedcode/data/rules/isc-ormlite_2.yml deleted file mode 100644 index 6259a4c9ef5..00000000000 --- a/src/licensedcode/data/rules/isc-ormlite_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_text: yes -relevance: 98 -minimum_coverage: 95 -notes: this is mostly the same as the ISC but there is one sentence removed see https://github.com/j256/ormlite-core/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/isc.RULE b/src/licensedcode/data/rules/isc.RULE index c6566013802..ebb28658055 100644 --- a/src/licensedcode/data/rules/isc.RULE +++ b/src/licensedcode/data/rules/isc.RULE @@ -1,7 +1,15 @@ +--- +license_expression: isc +is_license_notice: yes +notes: Used in ISC DHCP +ignorable_urls: + - http://www.isc.org/isc-license-1.0.html +--- + * Use is subject to license terms which appear in the file named * ISC-LICENSE that should have accompanied this file when you * received it. If a file named ISC-LICENSE did not accompany this * file, or you are not sure the one you have is correct, you may * obtain an applicable copy of the license at: * - * http://www.isc.org/isc-license-1.0.html. + * http://www.isc.org/isc-license-1.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc.yml b/src/licensedcode/data/rules/isc.yml deleted file mode 100644 index 66f4fca5098..00000000000 --- a/src/licensedcode/data/rules/isc.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -notes: Used in ISC DHCP -ignorable_urls: - - http://www.isc.org/isc-license-1.0.html diff --git a/src/licensedcode/data/rules/isc_0.RULE b/src/licensedcode/data/rules/isc_0.RULE index 8e8c8283523..8fe4cbb2822 100644 --- a/src/licensedcode/data/rules/isc_0.RULE +++ b/src/licensedcode/data/rules/isc_0.RULE @@ -1,3 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + License This is free software, licensed under the ISC License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_0.yml b/src/licensedcode/data/rules/isc_0.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_1.RULE b/src/licensedcode/data/rules/isc_1.RULE index 8f67b8616eb..c21f601fb55 100644 --- a/src/licensedcode/data/rules/isc_1.RULE +++ b/src/licensedcode/data/rules/isc_1.RULE @@ -1 +1,9 @@ -https://www.isc.org/isc-license-1.0.html +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.isc.org/isc-license-1.0.html +--- + +https://www.isc.org/isc-license-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_1.yml b/src/licensedcode/data/rules/isc_1.yml deleted file mode 100644 index c2f5c1cafaf..00000000000 --- a/src/licensedcode/data/rules/isc_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.isc.org/isc-license-1.0.html diff --git a/src/licensedcode/data/rules/isc_10.RULE b/src/licensedcode/data/rules/isc_10.RULE index 9b63606a8fc..f5ff07ed51a 100644 --- a/src/licensedcode/data/rules/isc_10.RULE +++ b/src/licensedcode/data/rules/isc_10.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +--- + ISC License (Bind,DHCP Server) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_10.yml b/src/licensedcode/data/rules/isc_10.yml deleted file mode 100644 index ae8f6e9ff22..00000000000 --- a/src/licensedcode/data/rules/isc_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_100.RULE b/src/licensedcode/data/rules/isc_100.RULE index cc45dd41274..613edcc85ca 100644 --- a/src/licensedcode/data/rules/isc_100.RULE +++ b/src/licensedcode/data/rules/isc_100.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_100.yml b/src/licensedcode/data/rules/isc_100.yml deleted file mode 100644 index ae8f6e9ff22..00000000000 --- a/src/licensedcode/data/rules/isc_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_101.RULE b/src/licensedcode/data/rules/isc_101.RULE index 9216b8fbd9e..7487bd8c854 100644 --- a/src/licensedcode/data/rules/isc_101.RULE +++ b/src/licensedcode/data/rules/isc_101.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ISC +--- + LICENSE {{ISC}} https://spdx.org/licenses/ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_101.yml b/src/licensedcode/data/rules/isc_101.yml deleted file mode 100644 index 45941a8603b..00000000000 --- a/src/licensedcode/data/rules/isc_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ISC diff --git a/src/licensedcode/data/rules/isc_11.RULE b/src/licensedcode/data/rules/isc_11.RULE index feba24a1cd7..ef29f1f4d73 100644 --- a/src/licensedcode/data/rules/isc_11.RULE +++ b/src/licensedcode/data/rules/isc_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: isc +is_license_text: yes +minimum_coverage: 100 +--- + The ISC License Permission to use, copy, modify, and/or distribute this software for any @@ -10,4 +16,4 @@ 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. +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_11.yml b/src/licensedcode/data/rules/isc_11.yml deleted file mode 100644 index 1ef1f5ccd1d..00000000000 --- a/src/licensedcode/data/rules/isc_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_text: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/isc_12.RULE b/src/licensedcode/data/rules/isc_12.RULE index 38fd99aaa6e..3f24bb6cc64 100644 --- a/src/licensedcode/data/rules/isc_12.RULE +++ b/src/licensedcode/data/rules/isc_12.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +--- + ISC License (ISCL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_12.yml b/src/licensedcode/data/rules/isc_12.yml deleted file mode 100644 index ae8f6e9ff22..00000000000 --- a/src/licensedcode/data/rules/isc_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_13.RULE b/src/licensedcode/data/rules/isc_13.RULE index cde0a7a9935..368eb6d5caa 100644 --- a/src/licensedcode/data/rules/isc_13.RULE +++ b/src/licensedcode/data/rules/isc_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: isc +is_license_text: yes +minimum_coverage: 100 +--- + ISC License Permission to use, copy, modify, and/or distribute this software for any purpose @@ -10,4 +16,4 @@ 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. +THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_13.yml b/src/licensedcode/data/rules/isc_13.yml deleted file mode 100644 index 1ef1f5ccd1d..00000000000 --- a/src/licensedcode/data/rules/isc_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_text: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/isc_14.RULE b/src/licensedcode/data/rules/isc_14.RULE index 9dfe2777fdf..e24c6f27127 100644 --- a/src/licensedcode/data/rules/isc_14.RULE +++ b/src/licensedcode/data/rules/isc_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: isc +is_license_text: yes +--- + Permission to use, copy, modify, and 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. @@ -8,4 +13,4 @@ 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. +this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_14.yml b/src/licensedcode/data/rules/isc_14.yml deleted file mode 100644 index 9f49b6ea951..00000000000 --- a/src/licensedcode/data/rules/isc_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc -is_license_text: yes diff --git a/src/licensedcode/data/rules/isc_15.RULE b/src/licensedcode/data/rules/isc_15.RULE index 10d8f77cbe7..c56d292305f 100644 --- a/src/licensedcode/data/rules/isc_15.RULE +++ b/src/licensedcode/data/rules/isc_15.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2 +--- + http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_15.yml b/src/licensedcode/data/rules/isc_15.yml deleted file mode 100644 index ea254d10edf..00000000000 --- a/src/licensedcode/data/rules/isc_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2 diff --git a/src/licensedcode/data/rules/isc_16.RULE b/src/licensedcode/data/rules/isc_16.RULE index 122ac9e5721..77c7f866d71 100644 --- a/src/licensedcode/data/rules/isc_16.RULE +++ b/src/licensedcode/data/rules/isc_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 95 +minimum_coverage: 80 +notes: Theodore T'so variant +--- + * * Permission to use, copy, modify, and distribute this software for * any purpose with or without fee is hereby granted, provided that diff --git a/src/licensedcode/data/rules/isc_16.yml b/src/licensedcode/data/rules/isc_16.yml deleted file mode 100644 index 018719f7049..00000000000 --- a/src/licensedcode/data/rules/isc_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 95 -minimum_coverage: 80 -notes: Theodore T'so variant diff --git a/src/licensedcode/data/rules/isc_17.RULE b/src/licensedcode/data/rules/isc_17.RULE index 5788947891c..4a2ebad481c 100644 --- a/src/licensedcode/data/rules/isc_17.RULE +++ b/src/licensedcode/data/rules/isc_17.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + fall under the ISC license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_17.yml b/src/licensedcode/data/rules/isc_17.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_18.RULE b/src/licensedcode/data/rules/isc_18.RULE index 9483dd64ecd..10471d34ece 100644 --- a/src/licensedcode/data/rules/isc_18.RULE +++ b/src/licensedcode/data/rules/isc_18.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/isc-license.txt +--- + http://www.opensource.org/licenses/isc-license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_18.yml b/src/licensedcode/data/rules/isc_18.yml deleted file mode 100644 index 9ba64fdad9d..00000000000 --- a/src/licensedcode/data/rules/isc_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/isc-license.txt diff --git a/src/licensedcode/data/rules/isc_19.RULE b/src/licensedcode/data/rules/isc_19.RULE index 53b1b7e9eb8..3d3bba746d3 100644 --- a/src/licensedcode/data/rules/isc_19.RULE +++ b/src/licensedcode/data/rules/isc_19.RULE @@ -1,3 +1,8 @@ +--- +license_expression: isc +is_license_text: yes +--- + 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. diff --git a/src/licensedcode/data/rules/isc_19.yml b/src/licensedcode/data/rules/isc_19.yml deleted file mode 100644 index 9f49b6ea951..00000000000 --- a/src/licensedcode/data/rules/isc_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc -is_license_text: yes diff --git a/src/licensedcode/data/rules/isc_2.RULE b/src/licensedcode/data/rules/isc_2.RULE index 20b30105811..aebb1aec21e 100644 --- a/src/licensedcode/data/rules/isc_2.RULE +++ b/src/licensedcode/data/rules/isc_2.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/isc-license.txt +--- + http://opensource.org/licenses/isc-license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_2.yml b/src/licensedcode/data/rules/isc_2.yml deleted file mode 100644 index f249b074b0e..00000000000 --- a/src/licensedcode/data/rules/isc_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/isc-license.txt diff --git a/src/licensedcode/data/rules/isc_20.RULE b/src/licensedcode/data/rules/isc_20.RULE index f1248a7c567..430089bec45 100644 --- a/src/licensedcode/data/rules/isc_20.RULE +++ b/src/licensedcode/data/rules/isc_20.RULE @@ -1,3 +1,8 @@ +--- +license_expression: isc +is_license_text: yes +--- + 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. @@ -8,4 +13,4 @@ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC 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. +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_20.yml b/src/licensedcode/data/rules/isc_20.yml deleted file mode 100644 index 9f49b6ea951..00000000000 --- a/src/licensedcode/data/rules/isc_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc -is_license_text: yes diff --git a/src/licensedcode/data/rules/isc_21.RULE b/src/licensedcode/data/rules/isc_21.RULE index 2a361ce3182..a83a0536dbb 100644 --- a/src/licensedcode/data/rules/isc_21.RULE +++ b/src/licensedcode/data/rules/isc_21.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 90 +minimum_coverage: 100 +notes: Seen in libevent +--- + available under the following, sometimes called the "OpenBSD" license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_21.yml b/src/licensedcode/data/rules/isc_21.yml deleted file mode 100644 index b0268adb083..00000000000 --- a/src/licensedcode/data/rules/isc_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 90 -minimum_coverage: 100 -notes: Seen in libevent diff --git a/src/licensedcode/data/rules/isc_22.RULE b/src/licensedcode/data/rules/isc_22.RULE index a713faf04fe..0cbcc9759e3 100644 --- a/src/licensedcode/data/rules/isc_22.RULE +++ b/src/licensedcode/data/rules/isc_22.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 99 +--- + ISC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_22.yml b/src/licensedcode/data/rules/isc_22.yml deleted file mode 100644 index 197ae686075..00000000000 --- a/src/licensedcode/data/rules/isc_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/isc_23.RULE b/src/licensedcode/data/rules/isc_23.RULE index d6279663917..4978ce2ae59 100644 --- a/src/licensedcode/data/rules/isc_23.RULE +++ b/src/licensedcode/data/rules/isc_23.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + Licensed under the ISC license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_23.yml b/src/licensedcode/data/rules/isc_23.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_24.RULE b/src/licensedcode/data/rules/isc_24.RULE index b5f9cce3321..b226151a5ba 100644 --- a/src/licensedcode/data/rules/isc_24.RULE +++ b/src/licensedcode/data/rules/isc_24.RULE @@ -1 +1,9 @@ - [ISC](https://opensource.org/licenses/ISC) +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/ISC +--- + + [ISC](https://opensource.org/licenses/ISC) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_24.yml b/src/licensedcode/data/rules/isc_24.yml deleted file mode 100644 index f2f266042b0..00000000000 --- a/src/licensedcode/data/rules/isc_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/ISC diff --git a/src/licensedcode/data/rules/isc_25.RULE b/src/licensedcode/data/rules/isc_25.RULE index 445b305d80e..83a3a77dc8d 100644 --- a/src/licensedcode/data/rules/isc_25.RULE +++ b/src/licensedcode/data/rules/isc_25.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +--- + Code licensed ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_25.yml b/src/licensedcode/data/rules/isc_25.yml deleted file mode 100644 index ae8f6e9ff22..00000000000 --- a/src/licensedcode/data/rules/isc_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_26.RULE b/src/licensedcode/data/rules/isc_26.RULE index 6445400e5e3..8bdadc93de3 100644 --- a/src/licensedcode/data/rules/isc_26.RULE +++ b/src/licensedcode/data/rules/isc_26.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + project contains or reuses code that is licensed under the ISC license from the following projects. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_26.yml b/src/licensedcode/data/rules/isc_26.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_27.RULE b/src/licensedcode/data/rules/isc_27.RULE index 72358955f45..f4ad18fa636 100644 --- a/src/licensedcode/data/rules/isc_27.RULE +++ b/src/licensedcode/data/rules/isc_27.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + This is free software, licensed under The ISC License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_27.yml b/src/licensedcode/data/rules/isc_27.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_28.RULE b/src/licensedcode/data/rules/isc_28.RULE index 480b766c8ab..ee181b8de49 100644 --- a/src/licensedcode/data/rules/isc_28.RULE +++ b/src/licensedcode/data/rules/isc_28.RULE @@ -1,3 +1,9 @@ +--- +license_expression: isc +is_license_text: yes +minimum_coverage: 40 +--- + Permission to use, copy, modify, and 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. @@ -7,4 +13,4 @@ THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ... 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. +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/isc_28.yml b/src/licensedcode/data/rules/isc_28.yml deleted file mode 100644 index cf84ab772d8..00000000000 --- a/src/licensedcode/data/rules/isc_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_text: yes -minimum_coverage: 40 diff --git a/src/licensedcode/data/rules/isc_29.RULE b/src/licensedcode/data/rules/isc_29.RULE index d75b522a710..d1026711376 100644 --- a/src/licensedcode/data/rules/isc_29.RULE +++ b/src/licensedcode/data/rules/isc_29.RULE @@ -1,2 +1,8 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + is licensed under the liberal ISC license, so it may be used in open source or commercial projects. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_29.yml b/src/licensedcode/data/rules/isc_29.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_3.RULE b/src/licensedcode/data/rules/isc_3.RULE index f4e3d6017cb..4cf645cf816 100644 --- a/src/licensedcode/data/rules/isc_3.RULE +++ b/src/licensedcode/data/rules/isc_3.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.isc.org/software/license +--- + https://www.isc.org/software/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_3.yml b/src/licensedcode/data/rules/isc_3.yml deleted file mode 100644 index e11ff277c14..00000000000 --- a/src/licensedcode/data/rules/isc_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.isc.org/software/license diff --git a/src/licensedcode/data/rules/isc_30.RULE b/src/licensedcode/data/rules/isc_30.RULE index 1df11fb7d29..a161c57eff2 100644 --- a/src/licensedcode/data/rules/isc_30.RULE +++ b/src/licensedcode/data/rules/isc_30.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://copyfree.org/ +--- + ## License is licensed under the [copyfree](http://copyfree.org) ISC License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_30.yml b/src/licensedcode/data/rules/isc_30.yml deleted file mode 100644 index 4ab6f88a79b..00000000000 --- a/src/licensedcode/data/rules/isc_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://copyfree.org/ diff --git a/src/licensedcode/data/rules/isc_31.RULE b/src/licensedcode/data/rules/isc_31.RULE index 7f6e7b56ae4..b62d2276e63 100644 --- a/src/licensedcode/data/rules/isc_31.RULE +++ b/src/licensedcode/data/rules/isc_31.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://copyfree.org/ +--- + is licensed under the [copyfree](http://copyfree.org) ISC License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_31.yml b/src/licensedcode/data/rules/isc_31.yml deleted file mode 100644 index 4ab6f88a79b..00000000000 --- a/src/licensedcode/data/rules/isc_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://copyfree.org/ diff --git a/src/licensedcode/data/rules/isc_32.RULE b/src/licensedcode/data/rules/isc_32.RULE index 7618bac1500..ee1b5247043 100644 --- a/src/licensedcode/data/rules/isc_32.RULE +++ b/src/licensedcode/data/rules/isc_32.RULE @@ -1,3 +1,8 @@ +--- +license_expression: isc +is_license_text: yes +--- + This file incorporates work covered by the following copyright and @@ -14,4 +19,4 @@ 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. + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_32.yml b/src/licensedcode/data/rules/isc_32.yml deleted file mode 100644 index 9f49b6ea951..00000000000 --- a/src/licensedcode/data/rules/isc_32.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc -is_license_text: yes diff --git a/src/licensedcode/data/rules/isc_33.RULE b/src/licensedcode/data/rules/isc_33.RULE index 6fad146efcc..14890d6e134 100644 --- a/src/licensedcode/data/rules/isc_33.RULE +++ b/src/licensedcode/data/rules/isc_33.RULE @@ -1,3 +1,9 @@ +--- +license_expression: isc +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and 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. diff --git a/src/licensedcode/data/rules/isc_33.yml b/src/licensedcode/data/rules/isc_33.yml deleted file mode 100644 index b60a011b2d6..00000000000 --- a/src/licensedcode/data/rules/isc_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_34.RULE b/src/licensedcode/data/rules/isc_34.RULE index bd4117f5f63..c6784db36bd 100644 --- a/src/licensedcode/data/rules/isc_34.RULE +++ b/src/licensedcode/data/rules/isc_34.RULE @@ -1,3 +1,8 @@ +--- +license_expression: isc +is_license_text: yes +--- + The one exception is licensed with a slightly different MIT variant: The contents of this directory are licensed under the following terms: @@ -13,4 +18,4 @@ 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. +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_34.yml b/src/licensedcode/data/rules/isc_34.yml deleted file mode 100644 index 9f49b6ea951..00000000000 --- a/src/licensedcode/data/rules/isc_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc -is_license_text: yes diff --git a/src/licensedcode/data/rules/isc_35.RULE b/src/licensedcode/data/rules/isc_35.RULE index 89f71ac4b16..ba60ca5df40 100644 --- a/src/licensedcode/data/rules/isc_35.RULE +++ b/src/licensedcode/data/rules/isc_35.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/isc +--- + https://choosealicense.com/licenses/isc \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_35.yml b/src/licensedcode/data/rules/isc_35.yml deleted file mode 100644 index bcf8a3ae3bf..00000000000 --- a/src/licensedcode/data/rules/isc_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/isc diff --git a/src/licensedcode/data/rules/isc_36.RULE b/src/licensedcode/data/rules/isc_36.RULE index 3f1a90a9b8e..ca72bac0338 100644 --- a/src/licensedcode/data/rules/isc_36.RULE +++ b/src/licensedcode/data/rules/isc_36.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/isc +--- + http://choosealicense.com/licenses/isc \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_36.yml b/src/licensedcode/data/rules/isc_36.yml deleted file mode 100644 index 6cf5617f04e..00000000000 --- a/src/licensedcode/data/rules/isc_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/isc diff --git a/src/licensedcode/data/rules/isc_37.RULE b/src/licensedcode/data/rules/isc_37.RULE index a046ca2099d..aba1e8eaa9b 100644 --- a/src/licensedcode/data/rules/isc_37.RULE +++ b/src/licensedcode/data/rules/isc_37.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 70 +ignorable_urls: + - https://github.com/lynxx131/aspnet5-microservice/raw/master/LICENSE +--- + https://github.com/lynxx131/aspnet5-microservice/raw/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_37.yml b/src/licensedcode/data/rules/isc_37.yml deleted file mode 100644 index f834ba724c7..00000000000 --- a/src/licensedcode/data/rules/isc_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 70 -ignorable_urls: - - https://github.com/lynxx131/aspnet5-microservice/raw/master/LICENSE diff --git a/src/licensedcode/data/rules/isc_38.RULE b/src/licensedcode/data/rules/isc_38.RULE index 7dd498c5f03..605b542df45 100644 --- a/src/licensedcode/data/rules/isc_38.RULE +++ b/src/licensedcode/data/rules/isc_38.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_tag: yes +relevance: 100 +--- + "license": "ISC", \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_38.yml b/src/licensedcode/data/rules/isc_38.yml deleted file mode 100644 index a1246b64e26..00000000000 --- a/src/licensedcode/data/rules/isc_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_39.RULE b/src/licensedcode/data/rules/isc_39.RULE index b6c0deb711e..cac62622ab4 100644 --- a/src/licensedcode/data/rules/isc_39.RULE +++ b/src/licensedcode/data/rules/isc_39.RULE @@ -1,2 +1,12 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +ignorable_urls: + - http://isc.org/copyright.html +--- + See COPYRIGHT in the source root or http://isc.org/copyright.html for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_39.yml b/src/licensedcode/data/rules/isc_39.yml deleted file mode 100644 index 166c6c379da..00000000000 --- a/src/licensedcode/data/rules/isc_39.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT -ignorable_urls: - - http://isc.org/copyright.html diff --git a/src/licensedcode/data/rules/isc_4.RULE b/src/licensedcode/data/rules/isc_4.RULE index 8ff6a87d020..617deee55ce 100644 --- a/src/licensedcode/data/rules/isc_4.RULE +++ b/src/licensedcode/data/rules/isc_4.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.isc.org/software/license +--- + http://www.isc.org/software/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_4.yml b/src/licensedcode/data/rules/isc_4.yml deleted file mode 100644 index aef4e256e35..00000000000 --- a/src/licensedcode/data/rules/isc_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.isc.org/software/license diff --git a/src/licensedcode/data/rules/isc_40.RULE b/src/licensedcode/data/rules/isc_40.RULE index ca9c2cd04a2..8d9ab3d6b8e 100644 --- a/src/licensedcode/data/rules/isc_40.RULE +++ b/src/licensedcode/data/rules/isc_40.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://isc.org/copyright.html +--- + http://isc.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_40.yml b/src/licensedcode/data/rules/isc_40.yml deleted file mode 100644 index e30e1073bc5..00000000000 --- a/src/licensedcode/data/rules/isc_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://isc.org/copyright.html diff --git a/src/licensedcode/data/rules/isc_41.RULE b/src/licensedcode/data/rules/isc_41.RULE index 6d19b351e7c..5895743c8b3 100644 --- a/src/licensedcode/data/rules/isc_41.RULE +++ b/src/licensedcode/data/rules/isc_41.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://isc.org/copyright.html +--- + https://isc.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_41.yml b/src/licensedcode/data/rules/isc_41.yml deleted file mode 100644 index d8a43635645..00000000000 --- a/src/licensedcode/data/rules/isc_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://isc.org/copyright.html diff --git a/src/licensedcode/data/rules/isc_42.RULE b/src/licensedcode/data/rules/isc_42.RULE index 542e82dcf9f..b245622e983 100644 --- a/src/licensedcode/data/rules/isc_42.RULE +++ b/src/licensedcode/data/rules/isc_42.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.isc.org/copyright.html +--- + http://www.isc.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_42.yml b/src/licensedcode/data/rules/isc_42.yml deleted file mode 100644 index fce78d1b4ee..00000000000 --- a/src/licensedcode/data/rules/isc_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.isc.org/copyright.html diff --git a/src/licensedcode/data/rules/isc_43.RULE b/src/licensedcode/data/rules/isc_43.RULE index 0d6c7200136..174a32d851d 100644 --- a/src/licensedcode/data/rules/isc_43.RULE +++ b/src/licensedcode/data/rules/isc_43.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.isc.org/copyright.html +--- + https://www.isc.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_43.yml b/src/licensedcode/data/rules/isc_43.yml deleted file mode 100644 index 3c81773ea56..00000000000 --- a/src/licensedcode/data/rules/isc_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.isc.org/copyright.html diff --git a/src/licensedcode/data/rules/isc_44.RULE b/src/licensedcode/data/rules/isc_44.RULE index 5a26be09080..9c9f97c2c49 100644 --- a/src/licensedcode/data/rules/isc_44.RULE +++ b/src/licensedcode/data/rules/isc_44.RULE @@ -1,2 +1,8 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + Some code is licensed under an ISC-style license, to the following - copyright holders: + copyright holders: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_44.yml b/src/licensedcode/data/rules/isc_44.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_45.RULE b/src/licensedcode/data/rules/isc_45.RULE index 10282c519fb..d20fdb59c9b 100644 --- a/src/licensedcode/data/rules/isc_45.RULE +++ b/src/licensedcode/data/rules/isc_45.RULE @@ -1,3 +1,9 @@ +--- +license_expression: isc +is_license_text: yes +relevance: 99 +--- + * Permission to use, copy, modify, and 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. diff --git a/src/licensedcode/data/rules/isc_45.yml b/src/licensedcode/data/rules/isc_45.yml deleted file mode 100644 index a5dcd0bd5cd..00000000000 --- a/src/licensedcode/data/rules/isc_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/isc_46.RULE b/src/licensedcode/data/rules/isc_46.RULE index 99e2282f50e..f42f97319d0 100644 --- a/src/licensedcode/data/rules/isc_46.RULE +++ b/src/licensedcode/data/rules/isc_46.RULE @@ -1,3 +1,10 @@ +--- +license_expression: isc +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +--- + The README, CHANGES, FAQ and TODO files are licensed under the ISC license. All other files have a license and copyright notice at their start, typically: diff --git a/src/licensedcode/data/rules/isc_46.yml b/src/licensedcode/data/rules/isc_46.yml deleted file mode 100644 index befd7404475..00000000000 --- a/src/licensedcode/data/rules/isc_46.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: isc -is_license_text: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/isc_47.RULE b/src/licensedcode/data/rules/isc_47.RULE index 3a18e9a5951..51c35cedd3d 100644 --- a/src/licensedcode/data/rules/isc_47.RULE +++ b/src/licensedcode/data/rules/isc_47.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + Open Source Software Licensed Under the ISC License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_47.yml b/src/licensedcode/data/rules/isc_47.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_48.RULE b/src/licensedcode/data/rules/isc_48.RULE index 2ef1329277d..3ac83dfef1c 100644 --- a/src/licensedcode/data/rules/isc_48.RULE +++ b/src/licensedcode/data/rules/isc_48.RULE @@ -1,3 +1,10 @@ +--- +license_expression: isc +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + Terms of the ISC License: 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. diff --git a/src/licensedcode/data/rules/isc_48.yml b/src/licensedcode/data/rules/isc_48.yml deleted file mode 100644 index 69bf1ea48e4..00000000000 --- a/src/licensedcode/data/rules/isc_48.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: isc -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/isc_49.RULE b/src/licensedcode/data/rules/isc_49.RULE index 197f29edc14..068223aaf6a 100644 --- a/src/licensedcode/data/rules/isc_49.RULE +++ b/src/licensedcode/data/rules/isc_49.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + under the ISC license \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_49.yml b/src/licensedcode/data/rules/isc_49.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_5.RULE b/src/licensedcode/data/rules/isc_5.RULE index d35bc7f5378..19ce0d32e97 100644 --- a/src/licensedcode/data/rules/isc_5.RULE +++ b/src/licensedcode/data/rules/isc_5.RULE @@ -1 +1,10 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +notes: http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license +ignorable_urls: + - http://openbsd.wikia.com/wiki/OpenBSD's_BSD_license +--- + http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_5.yml b/src/licensedcode/data/rules/isc_5.yml deleted file mode 100644 index d16d00fd749..00000000000 --- a/src/licensedcode/data/rules/isc_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -notes: http://openbsd.wikia.com/wiki/OpenBSD%27s_BSD_license -ignorable_urls: - - http://openbsd.wikia.com/wiki/OpenBSD's_BSD_license diff --git a/src/licensedcode/data/rules/isc_50.RULE b/src/licensedcode/data/rules/isc_50.RULE index e498b9cb5b5..3b14670830e 100644 --- a/src/licensedcode/data/rules/isc_50.RULE +++ b/src/licensedcode/data/rules/isc_50.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.isc.org/downloads/software-support-policy/isc-license +--- + `ISC` - [Internet Systems Consortium License](https://www.isc.org/downloads/software-support-policy/isc-license/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_50.yml b/src/licensedcode/data/rules/isc_50.yml deleted file mode 100644 index b402280d9e0..00000000000 --- a/src/licensedcode/data/rules/isc_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.isc.org/downloads/software-support-policy/isc-license diff --git a/src/licensedcode/data/rules/isc_51.RULE b/src/licensedcode/data/rules/isc_51.RULE index 697378a07ca..ab4dc04dfc1 100644 --- a/src/licensedcode/data/rules/isc_51.RULE +++ b/src/licensedcode/data/rules/isc_51.RULE @@ -1,2 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + # This software may be modified and distributed under the terms # of the ISC license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_51.yml b/src/licensedcode/data/rules/isc_51.yml deleted file mode 100644 index b2e060ca2c8..00000000000 --- a/src/licensedcode/data/rules/isc_51.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/isc_52.RULE b/src/licensedcode/data/rules/isc_52.RULE index c16a09df92d..8b0aa430703 100644 --- a/src/licensedcode/data/rules/isc_52.RULE +++ b/src/licensedcode/data/rules/isc_52.RULE @@ -1 +1,11 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://opensource.org/licenses/ISC + - https://opensource.org/licenses/MIT +--- + - Changed: relicense ([MIT](https://opensource.org/licenses/MIT) → [ISC](https://opensource.org/licenses/ISC)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_52.yml b/src/licensedcode/data/rules/isc_52.yml deleted file mode 100644 index 9175c2497d0..00000000000 --- a/src/licensedcode/data/rules/isc_52.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://opensource.org/licenses/ISC - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/isc_53.RULE b/src/licensedcode/data/rules/isc_53.RULE index 1a7f5c12c4f..079913b3166 100644 --- a/src/licensedcode/data/rules/isc_53.RULE +++ b/src/licensedcode/data/rules/isc_53.RULE @@ -1,2 +1,10 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + this software may be distributed under the terms of ISC license, see COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_53.yml b/src/licensedcode/data/rules/isc_53.yml deleted file mode 100644 index 8e2aa6152dc..00000000000 --- a/src/licensedcode/data/rules/isc_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/isc_54.RULE b/src/licensedcode/data/rules/isc_54.RULE index eeacad7041b..a267a097c91 100644 --- a/src/licensedcode/data/rules/isc_54.RULE +++ b/src/licensedcode/data/rules/isc_54.RULE @@ -1,3 +1,10 @@ +--- +license_expression: isc +is_license_text: yes +relevance: 100 +notes: text is hyphenated +--- + Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permis- sion notice appear in all copies. diff --git a/src/licensedcode/data/rules/isc_54.yml b/src/licensedcode/data/rules/isc_54.yml deleted file mode 100644 index aa5a56e1f33..00000000000 --- a/src/licensedcode/data/rules/isc_54.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: isc -is_license_text: yes -relevance: 100 -notes: text is hyphenated diff --git a/src/licensedcode/data/rules/isc_55.RULE b/src/licensedcode/data/rules/isc_55.RULE index b172c08788a..ab573637f64 100644 --- a/src/licensedcode/data/rules/isc_55.RULE +++ b/src/licensedcode/data/rules/isc_55.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Licensed under the ISC License (the "License"). You may not use this file except in compliance with the License. A copy of the License is in the LICENSE.txt file accompanying this file. diff --git a/src/licensedcode/data/rules/isc_55.yml b/src/licensedcode/data/rules/isc_55.yml deleted file mode 100644 index cd01234a3d3..00000000000 --- a/src/licensedcode/data/rules/isc_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/isc_56.RULE b/src/licensedcode/data/rules/isc_56.RULE index ff6f1b0e45a..f6322ba05c9 100644 --- a/src/licensedcode/data/rules/isc_56.RULE +++ b/src/licensedcode/data/rules/isc_56.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License This software is licensed under the ISC License, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_56.yml b/src/licensedcode/data/rules/isc_56.yml deleted file mode 100644 index cd01234a3d3..00000000000 --- a/src/licensedcode/data/rules/isc_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/isc_57.RULE b/src/licensedcode/data/rules/isc_57.RULE index 0a239ab2bc4..e2f360d4f24 100644 --- a/src/licensedcode/data/rules/isc_57.RULE +++ b/src/licensedcode/data/rules/isc_57.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This software is licensed under the ISC License, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_57.yml b/src/licensedcode/data/rules/isc_57.yml deleted file mode 100644 index cd01234a3d3..00000000000 --- a/src/licensedcode/data/rules/isc_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/isc_58.RULE b/src/licensedcode/data/rules/isc_58.RULE index fea34f53ab2..759617555d7 100644 --- a/src/licensedcode/data/rules/isc_58.RULE +++ b/src/licensedcode/data/rules/isc_58.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the ISC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_58.yml b/src/licensedcode/data/rules/isc_58.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_59.RULE b/src/licensedcode/data/rules/isc_59.RULE index 564ab8e00f7..8696c44fe31 100644 --- a/src/licensedcode/data/rules/isc_59.RULE +++ b/src/licensedcode/data/rules/isc_59.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This software is licensed under the ISC License, the text of which can be found in [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_59.yml b/src/licensedcode/data/rules/isc_59.yml deleted file mode 100644 index cd01234a3d3..00000000000 --- a/src/licensedcode/data/rules/isc_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/isc_6.RULE b/src/licensedcode/data/rules/isc_6.RULE index 3d8a9d1366c..a9dcdee7d63 100644 --- a/src/licensedcode/data/rules/isc_6.RULE +++ b/src/licensedcode/data/rules/isc_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: isc +is_license_text: yes +notes: ISC with other holder and typos +--- + * Permission to use, copy modify, and 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. @@ -9,4 +15,4 @@ * 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 THE SOFTWARE. + * WITH THE USE OR PERFORMANCE OF THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_6.yml b/src/licensedcode/data/rules/isc_6.yml deleted file mode 100644 index c35f86861bc..00000000000 --- a/src/licensedcode/data/rules/isc_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_text: yes -notes: ISC with other holder and typos diff --git a/src/licensedcode/data/rules/isc_60.RULE b/src/licensedcode/data/rules/isc_60.RULE index 9c1b16e91e8..58c0118e954 100644 --- a/src/licensedcode/data/rules/isc_60.RULE +++ b/src/licensedcode/data/rules/isc_60.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.isc.org/downloads/software-support-policy/isc-license/ +--- + ; Licensed under the ISC License, ( the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/isc_60.yml b/src/licensedcode/data/rules/isc_60.yml deleted file mode 100644 index cec5bfba4f3..00000000000 --- a/src/licensedcode/data/rules/isc_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.isc.org/downloads/software-support-policy/isc-license/ diff --git a/src/licensedcode/data/rules/isc_61.RULE b/src/licensedcode/data/rules/isc_61.RULE index 3f425dac535..402e330cff1 100644 --- a/src/licensedcode/data/rules/isc_61.RULE +++ b/src/licensedcode/data/rules/isc_61.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.isc.org/downloads/software-support-policy/isc-license/ +--- + ; Licensed under the ISC License, ( the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/isc_61.yml b/src/licensedcode/data/rules/isc_61.yml deleted file mode 100644 index 5b5a745565e..00000000000 --- a/src/licensedcode/data/rules/isc_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.isc.org/downloads/software-support-policy/isc-license/ diff --git a/src/licensedcode/data/rules/isc_62.RULE b/src/licensedcode/data/rules/isc_62.RULE index e5378690eb5..3a429269fdd 100644 --- a/src/licensedcode/data/rules/isc_62.RULE +++ b/src/licensedcode/data/rules/isc_62.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.isc.org/downloads/software-support-policy/isc-license/ +--- + http://www.isc.org/downloads/software-support-policy/isc-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_62.yml b/src/licensedcode/data/rules/isc_62.yml deleted file mode 100644 index 303a85133cf..00000000000 --- a/src/licensedcode/data/rules/isc_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.isc.org/downloads/software-support-policy/isc-license/ diff --git a/src/licensedcode/data/rules/isc_63.RULE b/src/licensedcode/data/rules/isc_63.RULE index f4db4aa96eb..9a6c47d096f 100644 --- a/src/licensedcode/data/rules/isc_63.RULE +++ b/src/licensedcode/data/rules/isc_63.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.isc.org/downloads/software-support-policy/isc-license/ +--- + https://www.isc.org/downloads/software-support-policy/isc-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_63.yml b/src/licensedcode/data/rules/isc_63.yml deleted file mode 100644 index 99e6e0f276d..00000000000 --- a/src/licensedcode/data/rules/isc_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.isc.org/downloads/software-support-policy/isc-license/ diff --git a/src/licensedcode/data/rules/isc_64.RULE b/src/licensedcode/data/rules/isc_64.RULE index cd6fe967631..93d2b15d20b 100644 --- a/src/licensedcode/data/rules/isc_64.RULE +++ b/src/licensedcode/data/rules/isc_64.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.isc.org/downloads/software-support-policy/isc-license/ +--- + www.isc.org/downloads/software-support-policy/isc-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_64.yml b/src/licensedcode/data/rules/isc_64.yml deleted file mode 100644 index 303a85133cf..00000000000 --- a/src/licensedcode/data/rules/isc_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.isc.org/downloads/software-support-policy/isc-license/ diff --git a/src/licensedcode/data/rules/isc_65.RULE b/src/licensedcode/data/rules/isc_65.RULE index bddfa865f65..c254d4090d6 100644 --- a/src/licensedcode/data/rules/isc_65.RULE +++ b/src/licensedcode/data/rules/isc_65.RULE @@ -1,2 +1,8 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + License Unless otherwise marked, everything in this repo is licensed under the [ISC License]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_65.yml b/src/licensedcode/data/rules/isc_65.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_66.RULE b/src/licensedcode/data/rules/isc_66.RULE index 9cde2878f94..9a2173080b8 100644 --- a/src/licensedcode/data/rules/isc_66.RULE +++ b/src/licensedcode/data/rules/isc_66.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + Unless otherwise marked, everything in this repo is licensed under the [ISC License]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_66.yml b/src/licensedcode/data/rules/isc_66.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_67.RULE b/src/licensedcode/data/rules/isc_67.RULE index ec519320f49..2011a46bcab 100644 --- a/src/licensedcode/data/rules/isc_67.RULE +++ b/src/licensedcode/data/rules/isc_67.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + everything in this repo is licensed under the [ISC License]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_67.yml b/src/licensedcode/data/rules/isc_67.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_68.RULE b/src/licensedcode/data/rules/isc_68.RULE index 0c697c90c8b..a56fee9b449 100644 --- a/src/licensedcode/data/rules/isc_68.RULE +++ b/src/licensedcode/data/rules/isc_68.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.isc.org/downloads/software-support-policy/isc-license/ +--- + licensed under the ISC License, ( the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/isc_68.yml b/src/licensedcode/data/rules/isc_68.yml deleted file mode 100644 index cec5bfba4f3..00000000000 --- a/src/licensedcode/data/rules/isc_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.isc.org/downloads/software-support-policy/isc-license/ diff --git a/src/licensedcode/data/rules/isc_69.RULE b/src/licensedcode/data/rules/isc_69.RULE index 45f25249ac1..84b0461fdbd 100644 --- a/src/licensedcode/data/rules/isc_69.RULE +++ b/src/licensedcode/data/rules/isc_69.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + The following libraries are licensed under the ISC License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_69.yml b/src/licensedcode/data/rules/isc_69.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_7.RULE b/src/licensedcode/data/rules/isc_7.RULE index 70caee7cb58..64e038355be 100644 --- a/src/licensedcode/data/rules/isc_7.RULE +++ b/src/licensedcode/data/rules/isc_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: isc +is_license_text: yes +--- + Permission to use, copy, modify, and or : the text exist without 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 diff --git a/src/licensedcode/data/rules/isc_7.yml b/src/licensedcode/data/rules/isc_7.yml deleted file mode 100644 index 9f49b6ea951..00000000000 --- a/src/licensedcode/data/rules/isc_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc -is_license_text: yes diff --git a/src/licensedcode/data/rules/isc_70.RULE b/src/licensedcode/data/rules/isc_70.RULE index d419becb118..9372222ce47 100644 --- a/src/licensedcode/data/rules/isc_70.RULE +++ b/src/licensedcode/data/rules/isc_70.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + licensed under the ISC license, the full text of which is reproduced below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_70.yml b/src/licensedcode/data/rules/isc_70.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_71.RULE b/src/licensedcode/data/rules/isc_71.RULE index 72fa88e3b0e..eae4b6d3309 100644 --- a/src/licensedcode/data/rules/isc_71.RULE +++ b/src/licensedcode/data/rules/isc_71.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed under the ISC license. The license can be found in the COPYING file that should have accompanied this release. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_71.yml b/src/licensedcode/data/rules/isc_71.yml deleted file mode 100644 index 8e2aa6152dc..00000000000 --- a/src/licensedcode/data/rules/isc_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/isc_72.RULE b/src/licensedcode/data/rules/isc_72.RULE index e98bf01081f..15db41af2c1 100644 --- a/src/licensedcode/data/rules/isc_72.RULE +++ b/src/licensedcode/data/rules/isc_72.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License This software is licenced under the ISC License, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_72.yml b/src/licensedcode/data/rules/isc_72.yml deleted file mode 100644 index cd01234a3d3..00000000000 --- a/src/licensedcode/data/rules/isc_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/isc_73.RULE b/src/licensedcode/data/rules/isc_73.RULE index 2fd62425674..bc2c7a215b4 100644 --- a/src/licensedcode/data/rules/isc_73.RULE +++ b/src/licensedcode/data/rules/isc_73.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This software is licenced under the ISC License, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_73.yml b/src/licensedcode/data/rules/isc_73.yml deleted file mode 100644 index cd01234a3d3..00000000000 --- a/src/licensedcode/data/rules/isc_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/isc_74.RULE b/src/licensedcode/data/rules/isc_74.RULE index 3eb6407dbc2..39ef1f72036 100644 --- a/src/licensedcode/data/rules/isc_74.RULE +++ b/src/licensedcode/data/rules/isc_74.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + This software is licenced under the ISC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_74.yml b/src/licensedcode/data/rules/isc_74.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_75.RULE b/src/licensedcode/data/rules/isc_75.RULE index d14b38f9991..089fac5a96e 100644 --- a/src/licensedcode/data/rules/isc_75.RULE +++ b/src/licensedcode/data/rules/isc_75.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This software is licenced under the ISC License, the text of which can be found in [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_75.yml b/src/licensedcode/data/rules/isc_75.yml deleted file mode 100644 index cd01234a3d3..00000000000 --- a/src/licensedcode/data/rules/isc_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/isc_76.RULE b/src/licensedcode/data/rules/isc_76.RULE index ea9f8e6883c..e5c8d8443c1 100644 --- a/src/licensedcode/data/rules/isc_76.RULE +++ b/src/licensedcode/data/rules/isc_76.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + licenced under the ISC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_76.yml b/src/licensedcode/data/rules/isc_76.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_77.RULE b/src/licensedcode/data/rules/isc_77.RULE index 5e4e87379b8..cefd3971095 100644 --- a/src/licensedcode/data/rules/isc_77.RULE +++ b/src/licensedcode/data/rules/isc_77.RULE @@ -1,2 +1,8 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + License Unless otherwise marked, everything in this repo is licenced under the [ISC License]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_77.yml b/src/licensedcode/data/rules/isc_77.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_78.RULE b/src/licensedcode/data/rules/isc_78.RULE index b013eec48b3..dae8c0a54ab 100644 --- a/src/licensedcode/data/rules/isc_78.RULE +++ b/src/licensedcode/data/rules/isc_78.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + Unless otherwise marked, everything in this repo is licenced under the [ISC License]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_78.yml b/src/licensedcode/data/rules/isc_78.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_79.RULE b/src/licensedcode/data/rules/isc_79.RULE index f83c52a5b5e..987cadf4765 100644 --- a/src/licensedcode/data/rules/isc_79.RULE +++ b/src/licensedcode/data/rules/isc_79.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + everything in this repo is licenced under the [ISC License]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_79.yml b/src/licensedcode/data/rules/isc_79.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_8.RULE b/src/licensedcode/data/rules/isc_8.RULE index fea575b6135..3593f9b3fcb 100644 --- a/src/licensedcode/data/rules/isc_8.RULE +++ b/src/licensedcode/data/rules/isc_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: isc +is_license_text: yes +--- + * Permission to use, copy, modify, and 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. @@ -8,4 +13,4 @@ * 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. + * 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/isc_8.yml b/src/licensedcode/data/rules/isc_8.yml deleted file mode 100644 index 9f49b6ea951..00000000000 --- a/src/licensedcode/data/rules/isc_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc -is_license_text: yes diff --git a/src/licensedcode/data/rules/isc_80.RULE b/src/licensedcode/data/rules/isc_80.RULE index a8dc74f5e54..712fdc82ef0 100644 --- a/src/licensedcode/data/rules/isc_80.RULE +++ b/src/licensedcode/data/rules/isc_80.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + The following libraries are licenced under the ISC License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_80.yml b/src/licensedcode/data/rules/isc_80.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_81.RULE b/src/licensedcode/data/rules/isc_81.RULE index c8519a5a417..a20caa0836a 100644 --- a/src/licensedcode/data/rules/isc_81.RULE +++ b/src/licensedcode/data/rules/isc_81.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + licenced under the ISC license, the full text of which is reproduced below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_81.yml b/src/licensedcode/data/rules/isc_81.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_82.RULE b/src/licensedcode/data/rules/isc_82.RULE index 87b79971556..93e16952077 100644 --- a/src/licensedcode/data/rules/isc_82.RULE +++ b/src/licensedcode/data/rules/isc_82.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licenced under the ISC license. The license can be found in the COPYING file that should have accompanied this release. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_82.yml b/src/licensedcode/data/rules/isc_82.yml deleted file mode 100644 index 8e2aa6152dc..00000000000 --- a/src/licensedcode/data/rules/isc_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/isc_83.RULE b/src/licensedcode/data/rules/isc_83.RULE index e9344f8f59a..a5244c3c3dd 100644 --- a/src/licensedcode/data/rules/isc_83.RULE +++ b/src/licensedcode/data/rules/isc_83.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +--- + ISC licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_83.yml b/src/licensedcode/data/rules/isc_83.yml deleted file mode 100644 index ae8f6e9ff22..00000000000 --- a/src/licensedcode/data/rules/isc_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_84.RULE b/src/licensedcode/data/rules/isc_84.RULE index 9acf57d7b67..6cb24ae85b0 100644 --- a/src/licensedcode/data/rules/isc_84.RULE +++ b/src/licensedcode/data/rules/isc_84.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +--- + ISC License (MIT- Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_84.yml b/src/licensedcode/data/rules/isc_84.yml deleted file mode 100644 index ae8f6e9ff22..00000000000 --- a/src/licensedcode/data/rules/isc_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_85.RULE b/src/licensedcode/data/rules/isc_85.RULE index d3bc66a2c0c..00e0370f3c4 100644 --- a/src/licensedcode/data/rules/isc_85.RULE +++ b/src/licensedcode/data/rules/isc_85.RULE @@ -1,3 +1,12 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +notes: Seen in ptyprocess-0.6.0 +ignorable_urls: + - http://opensource.org/licenses/isc-license.txt +--- + ISC LICENSE This license is approved by the OSI and FSF as GPL-compatible. diff --git a/src/licensedcode/data/rules/isc_85.yml b/src/licensedcode/data/rules/isc_85.yml deleted file mode 100644 index 0225e00a600..00000000000 --- a/src/licensedcode/data/rules/isc_85.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -notes: Seen in ptyprocess-0.6.0 -ignorable_urls: - - http://opensource.org/licenses/isc-license.txt diff --git a/src/licensedcode/data/rules/isc_86.RULE b/src/licensedcode/data/rules/isc_86.RULE index 42e602e745f..1d8503d179e 100644 --- a/src/licensedcode/data/rules/isc_86.RULE +++ b/src/licensedcode/data/rules/isc_86.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + ISC license used for completely new code \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_86.yml b/src/licensedcode/data/rules/isc_86.yml deleted file mode 100644 index 4dbad09f4dc..00000000000 --- a/src/licensedcode/data/rules/isc_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_87.RULE b/src/licensedcode/data/rules/isc_87.RULE index 377fd1b6259..c937e014bf3 100644 --- a/src/licensedcode/data/rules/isc_87.RULE +++ b/src/licensedcode/data/rules/isc_87.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://copyfree.org/ +--- + licensed under the [copyfree](http://copyfree.org) ISC License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_87.yml b/src/licensedcode/data/rules/isc_87.yml deleted file mode 100644 index 4ab6f88a79b..00000000000 --- a/src/licensedcode/data/rules/isc_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://copyfree.org/ diff --git a/src/licensedcode/data/rules/isc_88.RULE b/src/licensedcode/data/rules/isc_88.RULE index 80af689248d..c79c1b3bc67 100644 --- a/src/licensedcode/data/rules/isc_88.RULE +++ b/src/licensedcode/data/rules/isc_88.RULE @@ -1 +1,10 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://copyfree.org/ + - http://img.shields.io/badge/license-ISC-blue.svg +--- + (http://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_88.yml b/src/licensedcode/data/rules/isc_88.yml deleted file mode 100644 index 7256b7e381f..00000000000 --- a/src/licensedcode/data/rules/isc_88.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://copyfree.org/ - - http://img.shields.io/badge/license-ISC-blue.svg diff --git a/src/licensedcode/data/rules/isc_89.RULE b/src/licensedcode/data/rules/isc_89.RULE index 056f08cce90..645566f6eda 100644 --- a/src/licensedcode/data/rules/isc_89.RULE +++ b/src/licensedcode/data/rules/isc_89.RULE @@ -1 +1,10 @@ +--- +license_expression: isc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: ISC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_89.yml b/src/licensedcode/data/rules/isc_89.yml deleted file mode 100644 index 5f9e7b456eb..00000000000 --- a/src/licensedcode/data/rules/isc_89.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/isc_9.RULE b/src/licensedcode/data/rules/isc_9.RULE index ec3d2badc8f..7c21b2b1945 100644 --- a/src/licensedcode/data/rules/isc_9.RULE +++ b/src/licensedcode/data/rules/isc_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: isc +is_license_text: yes +--- + * Permission to use, copy, modify, and 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. @@ -9,4 +14,4 @@ * 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. + * SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_9.yml b/src/licensedcode/data/rules/isc_9.yml deleted file mode 100644 index 9f49b6ea951..00000000000 --- a/src/licensedcode/data/rules/isc_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc -is_license_text: yes diff --git a/src/licensedcode/data/rules/isc_90.RULE b/src/licensedcode/data/rules/isc_90.RULE index cb0cf1a0e53..8521d679ba9 100644 --- a/src/licensedcode/data/rules/isc_90.RULE +++ b/src/licensedcode/data/rules/isc_90.RULE @@ -1 +1,10 @@ +--- +license_expression: isc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ISC ISC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_90.yml b/src/licensedcode/data/rules/isc_90.yml deleted file mode 100644 index 5f9e7b456eb..00000000000 --- a/src/licensedcode/data/rules/isc_90.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/isc_91.RULE b/src/licensedcode/data/rules/isc_91.RULE index 50e35467278..21df93c6f8d 100644 --- a/src/licensedcode/data/rules/isc_91.RULE +++ b/src/licensedcode/data/rules/isc_91.RULE @@ -1 +1,10 @@ +--- +license_expression: isc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ISC License ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_91.yml b/src/licensedcode/data/rules/isc_91.yml deleted file mode 100644 index 5f9e7b456eb..00000000000 --- a/src/licensedcode/data/rules/isc_91.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/isc_92.RULE b/src/licensedcode/data/rules/isc_92.RULE index 2e3efd4300e..1c024864c77 100644 --- a/src/licensedcode/data/rules/isc_92.RULE +++ b/src/licensedcode/data/rules/isc_92.RULE @@ -1 +1,10 @@ +--- +license_expression: isc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ISC License \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_92.yml b/src/licensedcode/data/rules/isc_92.yml deleted file mode 100644 index 6b04d9ed467..00000000000 --- a/src/licensedcode/data/rules/isc_92.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/isc_93.RULE b/src/licensedcode/data/rules/isc_93.RULE index c0fbc943803..0335060c049 100644 --- a/src/licensedcode/data/rules/isc_93.RULE +++ b/src/licensedcode/data/rules/isc_93.RULE @@ -1 +1,10 @@ +--- +license_expression: isc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_93.yml b/src/licensedcode/data/rules/isc_93.yml deleted file mode 100644 index 6b04d9ed467..00000000000 --- a/src/licensedcode/data/rules/isc_93.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: isc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/isc_94.RULE b/src/licensedcode/data/rules/isc_94.RULE index 3ff53a1db9d..a6b125abb69 100644 --- a/src/licensedcode/data/rules/isc_94.RULE +++ b/src/licensedcode/data/rules/isc_94.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/ISC_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_94.yml b/src/licensedcode/data/rules/isc_94.yml deleted file mode 100644 index ae8f6e9ff22..00000000000 --- a/src/licensedcode/data/rules/isc_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_95.RULE b/src/licensedcode/data/rules/isc_95.RULE index 149eb67082b..eab6263cdd5 100644 --- a/src/licensedcode/data/rules/isc_95.RULE +++ b/src/licensedcode/data/rules/isc_95.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ISC +--- + {{ISC}} https://spdx.org/licenses/ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_95.yml b/src/licensedcode/data/rules/isc_95.yml deleted file mode 100644 index 45941a8603b..00000000000 --- a/src/licensedcode/data/rules/isc_95.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ISC diff --git a/src/licensedcode/data/rules/isc_96.RULE b/src/licensedcode/data/rules/isc_96.RULE index b5c4fa754ef..dbd699bb198 100644 --- a/src/licensedcode/data/rules/isc_96.RULE +++ b/src/licensedcode/data/rules/isc_96.RULE @@ -1 +1,7 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_96.yml b/src/licensedcode/data/rules/isc_96.yml deleted file mode 100644 index ae8f6e9ff22..00000000000 --- a/src/licensedcode/data/rules/isc_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_97.RULE b/src/licensedcode/data/rules/isc_97.RULE index 71d4cfa30c8..c3384929dc4 100644 --- a/src/licensedcode/data/rules/isc_97.RULE +++ b/src/licensedcode/data/rules/isc_97.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ISC +--- + http://opensource.org/licenses/ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_97.yml b/src/licensedcode/data/rules/isc_97.yml deleted file mode 100644 index adf7bdcb960..00000000000 --- a/src/licensedcode/data/rules/isc_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ISC diff --git a/src/licensedcode/data/rules/isc_98.RULE b/src/licensedcode/data/rules/isc_98.RULE index ccd907e1422..6ae180a5f2d 100644 --- a/src/licensedcode/data/rules/isc_98.RULE +++ b/src/licensedcode/data/rules/isc_98.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/ISC +--- + https://opensource.org/licenses/ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_98.yml b/src/licensedcode/data/rules/isc_98.yml deleted file mode 100644 index f2f266042b0..00000000000 --- a/src/licensedcode/data/rules/isc_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/ISC diff --git a/src/licensedcode/data/rules/isc_99.RULE b/src/licensedcode/data/rules/isc_99.RULE index 184a84de7e7..866454e7121 100644 --- a/src/licensedcode/data/rules/isc_99.RULE +++ b/src/licensedcode/data/rules/isc_99.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ISC +--- + https://licenses.nuget.org/ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_99.yml b/src/licensedcode/data/rules/isc_99.yml deleted file mode 100644 index 7aebf156dc6..00000000000 --- a/src/licensedcode/data/rules/isc_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ISC diff --git a/src/licensedcode/data/rules/isc_and_free-unknown.RULE b/src/licensedcode/data/rules/isc_and_free-unknown.RULE index 987a21c2c69..1f64cfacbf4 100644 --- a/src/licensedcode/data/rules/isc_and_free-unknown.RULE +++ b/src/licensedcode/data/rules/isc_and_free-unknown.RULE @@ -1,2 +1,7 @@ +--- +license_expression: isc AND free-unknown +is_license_notice: yes +--- + files are licensed under the ISC license. All other files have a license and copyright notice at their start. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_and_free-unknown.yml b/src/licensedcode/data/rules/isc_and_free-unknown.yml deleted file mode 100644 index 4bd393285ec..00000000000 --- a/src/licensedcode/data/rules/isc_and_free-unknown.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: isc AND free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/isc_and_free-unknown2.RULE b/src/licensedcode/data/rules/isc_and_free-unknown2.RULE index 11db7e937b9..a29fa327aeb 100644 --- a/src/licensedcode/data/rules/isc_and_free-unknown2.RULE +++ b/src/licensedcode/data/rules/isc_and_free-unknown2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: isc AND free-unknown +is_license_text: yes +minimum_coverage: 70 +--- + THIS IS FOR INFORMATION ONLY, CODE IS UNDER THE LICENCE AT THE TOP OF ITS FILE. The README, CHANGES, FAQ and TODO files are licensed under the ISC @@ -17,4 +23,4 @@ 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 MIND, 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. +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/isc_and_free-unknown2.yml b/src/licensedcode/data/rules/isc_and_free-unknown2.yml deleted file mode 100644 index ddee9f2e848..00000000000 --- a/src/licensedcode/data/rules/isc_and_free-unknown2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc AND free-unknown -is_license_text: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/isc_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/isc_and_proprietary-license_1.RULE index 12b546295ec..7ddd9b3e33f 100644 --- a/src/licensedcode/data/rules/isc_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/isc_and_proprietary-license_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc AND proprietary-license +is_license_text: yes +relevance: 90 +notes: Seen in https://github.com/norouzi/mih/blob/96a629de834c1b974b0c5e378ab1037ee42120ab/license.txt + The rare extra citation requirement is reported as proprietary +--- + 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 diff --git a/src/licensedcode/data/rules/isc_and_proprietary-license_1.yml b/src/licensedcode/data/rules/isc_and_proprietary-license_1.yml deleted file mode 100644 index a8b8bc0d451..00000000000 --- a/src/licensedcode/data/rules/isc_and_proprietary-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc AND proprietary-license -is_license_text: yes -relevance: 90 -notes: Seen in https://github.com/norouzi/mih/blob/96a629de834c1b974b0c5e378ab1037ee42120ab/license.txt - The rare extra citation requirement is reported as proprietary diff --git a/src/licensedcode/data/rules/isc_or_mit_1.RULE b/src/licensedcode/data/rules/isc_or_mit_1.RULE index ac11d03d8db..b30eff7e620 100644 --- a/src/licensedcode/data/rules/isc_or_mit_1.RULE +++ b/src/licensedcode/data/rules/isc_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: isc OR mit +is_license_notice: yes +relevance: 100 +--- + This software is dual-licensed under the ISC and MIT licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_or_mit_1.yml b/src/licensedcode/data/rules/isc_or_mit_1.yml deleted file mode 100644 index 0da3646d7f1..00000000000 --- a/src/licensedcode/data/rules/isc_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_or_mit_2.RULE b/src/licensedcode/data/rules/isc_or_mit_2.RULE index 971dfd806d6..ee40e45ddae 100644 --- a/src/licensedcode/data/rules/isc_or_mit_2.RULE +++ b/src/licensedcode/data/rules/isc_or_mit_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: isc OR mit +is_license_notice: yes +relevance: 100 +--- + This software is dual-licensed under the ISC and MIT licenses. You may use this software under EITHER of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_or_mit_2.yml b/src/licensedcode/data/rules/isc_or_mit_2.yml deleted file mode 100644 index 0da3646d7f1..00000000000 --- a/src/licensedcode/data/rules/isc_or_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/isc_truncated.RULE b/src/licensedcode/data/rules/isc_truncated.RULE index fc527094042..65bfcb9d7c5 100644 --- a/src/licensedcode/data/rules/isc_truncated.RULE +++ b/src/licensedcode/data/rules/isc_truncated.RULE @@ -1,3 +1,11 @@ +--- +license_expression: isc +is_license_text: yes +relevance: 99 +minimum_coverage: 99 +notes: truncated and missing warranty disclaimer +--- + Permission to use, copy, modify, and 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. + copyright notice and this permission notice appear in all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_truncated.yml b/src/licensedcode/data/rules/isc_truncated.yml deleted file mode 100644 index bba91ff906d..00000000000 --- a/src/licensedcode/data/rules/isc_truncated.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_text: yes -relevance: 99 -minimum_coverage: 99 -notes: truncated and missing warranty disclaimer diff --git a/src/licensedcode/data/rules/isc_url_1.RULE b/src/licensedcode/data/rules/isc_url_1.RULE index 854f32728ca..ccb4cf4c81f 100644 --- a/src/licensedcode/data/rules/isc_url_1.RULE +++ b/src/licensedcode/data/rules/isc_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/isc +--- + https://spdx.org/licenses/isc \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_url_1.yml b/src/licensedcode/data/rules/isc_url_1.yml deleted file mode 100644 index a5e54958a78..00000000000 --- a/src/licensedcode/data/rules/isc_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/isc diff --git a/src/licensedcode/data/rules/isc_url_2.RULE b/src/licensedcode/data/rules/isc_url_2.RULE index 18b22c63eaf..239af5a77ae 100644 --- a/src/licensedcode/data/rules/isc_url_2.RULE +++ b/src/licensedcode/data/rules/isc_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/isc.html +--- + https://spdx.org/licenses/isc.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_url_2.yml b/src/licensedcode/data/rules/isc_url_2.yml deleted file mode 100644 index 6357fc57f41..00000000000 --- a/src/licensedcode/data/rules/isc_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/isc.html diff --git a/src/licensedcode/data/rules/isc_url_glc_176.RULE b/src/licensedcode/data/rules/isc_url_glc_176.RULE index d99c81ce95d..c5dea723256 100644 --- a/src/licensedcode/data/rules/isc_url_glc_176.RULE +++ b/src/licensedcode/data/rules/isc_url_glc_176.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/isc +--- + http://www.opensource.org/licenses/isc \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_url_glc_176.yml b/src/licensedcode/data/rules/isc_url_glc_176.yml deleted file mode 100644 index cc5c6bfef2c..00000000000 --- a/src/licensedcode/data/rules/isc_url_glc_176.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/isc diff --git a/src/licensedcode/data/rules/isc_url_glc_177.RULE b/src/licensedcode/data/rules/isc_url_glc_177.RULE index 6ef6331edc2..78cc6523bff 100644 --- a/src/licensedcode/data/rules/isc_url_glc_177.RULE +++ b/src/licensedcode/data/rules/isc_url_glc_177.RULE @@ -1 +1,9 @@ +--- +license_expression: isc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/isc +--- + https://www.opensource.org/licenses/isc \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_url_glc_177.yml b/src/licensedcode/data/rules/isc_url_glc_177.yml deleted file mode 100644 index 45fc232a19e..00000000000 --- a/src/licensedcode/data/rules/isc_url_glc_177.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/isc diff --git a/src/licensedcode/data/rules/iso-cpp-exception-2.0_1.RULE b/src/licensedcode/data/rules/iso-cpp-exception-2.0_1.RULE index 8c836dfeb29..42925956a60 100644 --- a/src/licensedcode/data/rules/iso-cpp-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/iso-cpp-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH mif-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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; @@ -16,4 +23,4 @@ does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General - Public License. + Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/iso-cpp-exception-2.0_1.yml b/src/licensedcode/data/rules/iso-cpp-exception-2.0_1.yml deleted file mode 100644 index 1edc6a28078..00000000000 --- a/src/licensedcode/data/rules/iso-cpp-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH mif-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/iso-cpp-exception-2.0_2.RULE b/src/licensedcode/data/rules/iso-cpp-exception-2.0_2.RULE index b6e002d15cb..c3ff000c14f 100644 --- a/src/licensedcode/data/rules/iso-cpp-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/iso-cpp-exception-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0 WITH mif-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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; @@ -16,4 +23,4 @@ does not by itself cause the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General - Public License. + Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/iso-cpp-exception-2.0_2.yml b/src/licensedcode/data/rules/iso-cpp-exception-2.0_2.yml deleted file mode 100644 index 6303eb49396..00000000000 --- a/src/licensedcode/data/rules/iso-cpp-exception-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 WITH mif-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/isotope-cla_1.RULE b/src/licensedcode/data/rules/isotope-cla_1.RULE index 6f1b7993c18..dc91249b030 100644 --- a/src/licensedcode/data/rules/isotope-cla_1.RULE +++ b/src/licensedcode/data/rules/isotope-cla_1.RULE @@ -1 +1,9 @@ +--- +license_expression: isotope-cla +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://isotope.metafizzy.co/docs/license.html +--- + The script licenses URI: http://isotope.metafizzy.co/docs/license.html . \ No newline at end of file diff --git a/src/licensedcode/data/rules/isotope-cla_1.yml b/src/licensedcode/data/rules/isotope-cla_1.yml deleted file mode 100644 index 3ec5b1e9468..00000000000 --- a/src/licensedcode/data/rules/isotope-cla_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: isotope-cla -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://isotope.metafizzy.co/docs/license.html diff --git a/src/licensedcode/data/rules/itu-t_1.RULE b/src/licensedcode/data/rules/itu-t_1.RULE index 995c2857330..4e5f552ee36 100644 --- a/src/licensedcode/data/rules/itu-t_1.RULE +++ b/src/licensedcode/data/rules/itu-t_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: itu-t +is_license_text: yes +relevance: 100 +ignorable_authors: + - the User's Group +--- + ITU-T software tools General Public License Terms and conditions diff --git a/src/licensedcode/data/rules/itu-t_1.yml b/src/licensedcode/data/rules/itu-t_1.yml deleted file mode 100644 index 5d8c63d49eb..00000000000 --- a/src/licensedcode/data/rules/itu-t_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: itu-t -is_license_text: yes -relevance: 100 -ignorable_authors: - - the User's Group diff --git a/src/licensedcode/data/rules/itu-t_2.RULE b/src/licensedcode/data/rules/itu-t_2.RULE index bd485b698aa..776d5fd02f4 100644 --- a/src/licensedcode/data/rules/itu-t_2.RULE +++ b/src/licensedcode/data/rules/itu-t_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: itu-t +is_license_text: yes +relevance: 100 +ignorable_authors: + - the User's Group +--- + Terms and conditions B.1 This License Agreement applies to any module or other work related to the ITU-T Software Tool Library, diff --git a/src/licensedcode/data/rules/itu-t_2.yml b/src/licensedcode/data/rules/itu-t_2.yml deleted file mode 100644 index 5d8c63d49eb..00000000000 --- a/src/licensedcode/data/rules/itu-t_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: itu-t -is_license_text: yes -relevance: 100 -ignorable_authors: - - the User's Group diff --git a/src/licensedcode/data/rules/itunes.RULE b/src/licensedcode/data/rules/itunes.RULE index 3b618056df3..46fc0827699 100644 --- a/src/licensedcode/data/rules/itunes.RULE +++ b/src/licensedcode/data/rules/itunes.RULE @@ -1 +1,9 @@ +--- +license_expression: itunes +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://images.apple.com/legal/sla/docs/itunes.pdf +--- + http://images.apple.com/legal/sla/docs/itunes.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/itunes.yml b/src/licensedcode/data/rules/itunes.yml deleted file mode 100644 index 3dfe0917f2a..00000000000 --- a/src/licensedcode/data/rules/itunes.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: itunes -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://images.apple.com/legal/sla/docs/itunes.pdf diff --git a/src/licensedcode/data/rules/jabber.RULE b/src/licensedcode/data/rules/jabber.RULE index f444881a57d..7f60841fd3c 100644 --- a/src/licensedcode/data/rules/jabber.RULE +++ b/src/licensedcode/data/rules/jabber.RULE @@ -1,3 +1,18 @@ +--- +license_expression: josl-1.0 +is_license_reference: yes +ignorable_copyrights: + - Copyright (c) 1999-2000 Jabber.com, Inc. + - Portions Copyright (c) 1998-1999 Jeremie Miller +ignorable_holders: + - Jabber.com, Inc. + - Jeremie Miller +ignorable_urls: + - http://www.jabber.com/ + - http://www.jabber.com/license/ + - http://www.opensource.org/ +--- + Preamble This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. diff --git a/src/licensedcode/data/rules/jabber.yml b/src/licensedcode/data/rules/jabber.yml deleted file mode 100644 index 7d01122e0f8..00000000000 --- a/src/licensedcode/data/rules/jabber.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: josl-1.0 -is_license_reference: yes -ignorable_copyrights: - - Copyright (c) 1999-2000 Jabber.com, Inc. - - Portions Copyright (c) 1998-1999 Jeremie Miller -ignorable_holders: - - Jabber.com, Inc. - - Jeremie Miller -ignorable_urls: - - http://www.jabber.com/ - - http://www.jabber.com/license/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/rules/jahia-1.3.1.RULE b/src/licensedcode/data/rules/jahia-1.3.1.RULE index 94a6640715c..89ea264b794 100644 --- a/src/licensedcode/data/rules/jahia-1.3.1.RULE +++ b/src/licensedcode/data/rules/jahia-1.3.1.RULE @@ -1 +1,9 @@ +--- +license_expression: jahia-1.3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing +--- + http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/jahia-1.3.1.yml b/src/licensedcode/data/rules/jahia-1.3.1.yml deleted file mode 100644 index c6fa700d309..00000000000 --- a/src/licensedcode/data/rules/jahia-1.3.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jahia-1.3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.jahia.org/cms/home/Jahiapedia/Jahia_Licensing diff --git a/src/licensedcode/data/rules/jam.RULE b/src/licensedcode/data/rules/jam.RULE index 65c4d946fb3..585bbf3d353 100644 --- a/src/licensedcode/data/rules/jam.RULE +++ b/src/licensedcode/data/rules/jam.RULE @@ -1 +1,7 @@ +--- +license_expression: jam +is_license_reference: yes +relevance: 100 +--- + Jam License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jam.yml b/src/licensedcode/data/rules/jam.yml deleted file mode 100644 index 8a3a5a2164d..00000000000 --- a/src/licensedcode/data/rules/jam.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jam -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jam_1.RULE b/src/licensedcode/data/rules/jam_1.RULE index 22253a0faac..0a9c16ab9b4 100644 --- a/src/licensedcode/data/rules/jam_1.RULE +++ b/src/licensedcode/data/rules/jam_1.RULE @@ -1 +1,9 @@ +--- +license_expression: jam +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Jam +--- + https://licenses.nuget.org/Jam \ No newline at end of file diff --git a/src/licensedcode/data/rules/jam_1.yml b/src/licensedcode/data/rules/jam_1.yml deleted file mode 100644 index 7951d5f7d11..00000000000 --- a/src/licensedcode/data/rules/jam_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jam -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Jam diff --git a/src/licensedcode/data/rules/jam_2.RULE b/src/licensedcode/data/rules/jam_2.RULE index 4e06ac805fa..c5f6c158b31 100644 --- a/src/licensedcode/data/rules/jam_2.RULE +++ b/src/licensedcode/data/rules/jam_2.RULE @@ -1 +1,7 @@ +--- +license_expression: jam +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Jam \ No newline at end of file diff --git a/src/licensedcode/data/rules/jam_2.yml b/src/licensedcode/data/rules/jam_2.yml deleted file mode 100644 index 8a3a5a2164d..00000000000 --- a/src/licensedcode/data/rules/jam_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jam -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jam_3.RULE b/src/licensedcode/data/rules/jam_3.RULE index 8c5a323c9ee..dbe0d1844dd 100644 --- a/src/licensedcode/data/rules/jam_3.RULE +++ b/src/licensedcode/data/rules/jam_3.RULE @@ -1 +1,9 @@ +--- +license_expression: jam +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Jam +--- + LICENSE {{Jam}} https://spdx.org/licenses/Jam \ No newline at end of file diff --git a/src/licensedcode/data/rules/jam_3.yml b/src/licensedcode/data/rules/jam_3.yml deleted file mode 100644 index 171af0d1aeb..00000000000 --- a/src/licensedcode/data/rules/jam_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jam -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Jam diff --git a/src/licensedcode/data/rules/jam_4.RULE b/src/licensedcode/data/rules/jam_4.RULE index 24eb36e9409..96b1088e559 100644 --- a/src/licensedcode/data/rules/jam_4.RULE +++ b/src/licensedcode/data/rules/jam_4.RULE @@ -1 +1,9 @@ +--- +license_expression: jam +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Jam +--- + {{Jam}} https://spdx.org/licenses/Jam \ No newline at end of file diff --git a/src/licensedcode/data/rules/jam_4.yml b/src/licensedcode/data/rules/jam_4.yml deleted file mode 100644 index 171af0d1aeb..00000000000 --- a/src/licensedcode/data/rules/jam_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jam -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Jam diff --git a/src/licensedcode/data/rules/jasper-2.0_1.RULE b/src/licensedcode/data/rules/jasper-2.0_1.RULE index 2b18f8b0a5f..65b7a05321c 100644 --- a/src/licensedcode/data/rules/jasper-2.0_1.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: jasper-2.0 +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person (the "User") obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/jasper-2.0_1.yml b/src/licensedcode/data/rules/jasper-2.0_1.yml deleted file mode 100644 index ab799944dac..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jasper-2.0_10.RULE b/src/licensedcode/data/rules/jasper-2.0_10.RULE index fa369fd1345..c9bd561ca2d 100644 --- a/src/licensedcode/data/rules/jasper-2.0_10.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + JasPer License JasPer-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_10.yml b/src/licensedcode/data/rules/jasper-2.0_10.yml deleted file mode 100644 index e774abe5e87..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jasper-2.0_11.RULE b/src/licensedcode/data/rules/jasper-2.0_11.RULE index ba16543d856..2bb8e787575 100644 --- a/src/licensedcode/data/rules/jasper-2.0_11.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: jasper-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: JasPer-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_11.yml b/src/licensedcode/data/rules/jasper-2.0_11.yml deleted file mode 100644 index 4f0bb5d1595..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jasper-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jasper-2.0_12.RULE b/src/licensedcode/data/rules/jasper-2.0_12.RULE index f1542dfcd09..cefa6dc1f90 100644 --- a/src/licensedcode/data/rules/jasper-2.0_12.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: jasper-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: JasPer-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_12.yml b/src/licensedcode/data/rules/jasper-2.0_12.yml deleted file mode 100644 index 4f0bb5d1595..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jasper-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jasper-2.0_13.RULE b/src/licensedcode/data/rules/jasper-2.0_13.RULE index 7ee78628cf9..2d57fc98c93 100644 --- a/src/licensedcode/data/rules/jasper-2.0_13.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/JasPer-2.0 +--- + https://licenses.nuget.org/JasPer-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_13.yml b/src/licensedcode/data/rules/jasper-2.0_13.yml deleted file mode 100644 index f0a6b7dc47d..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/JasPer-2.0 diff --git a/src/licensedcode/data/rules/jasper-2.0_14.RULE b/src/licensedcode/data/rules/jasper-2.0_14.RULE index 9670876c188..5054e81d528 100644 --- a/src/licensedcode/data/rules/jasper-2.0_14.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/JasPer-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_14.yml b/src/licensedcode/data/rules/jasper-2.0_14.yml deleted file mode 100644 index 6165ae75149..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jasper-2.0_15.RULE b/src/licensedcode/data/rules/jasper-2.0_15.RULE index c65626af13e..a3b2ffd6714 100644 --- a/src/licensedcode/data/rules/jasper-2.0_15.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/JasPer-2.0 +--- + LICENSE {{JasPer-2.0}} https://spdx.org/licenses/JasPer-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_15.yml b/src/licensedcode/data/rules/jasper-2.0_15.yml deleted file mode 100644 index bae36a71970..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/JasPer-2.0 diff --git a/src/licensedcode/data/rules/jasper-2.0_16.RULE b/src/licensedcode/data/rules/jasper-2.0_16.RULE index 3f592e70303..a5863a8a7e0 100644 --- a/src/licensedcode/data/rules/jasper-2.0_16.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/JasPer-2.0 +--- + {{JasPer-2.0}} https://spdx.org/licenses/JasPer-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_16.yml b/src/licensedcode/data/rules/jasper-2.0_16.yml deleted file mode 100644 index bae36a71970..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/JasPer-2.0 diff --git a/src/licensedcode/data/rules/jasper-2.0_2.RULE b/src/licensedcode/data/rules/jasper-2.0_2.RULE index ef03dccf665..554098486be 100644 --- a/src/licensedcode/data/rules/jasper-2.0_2.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 100 +--- + The JasPer license can be found in libjasper. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_2.yml b/src/licensedcode/data/rules/jasper-2.0_2.yml deleted file mode 100644 index 6165ae75149..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jasper-2.0_3.RULE b/src/licensedcode/data/rules/jasper-2.0_3.RULE index 2a6a9737300..91af6a90f44 100644 --- a/src/licensedcode/data/rules/jasper-2.0_3.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 100 +--- + JasPer License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_3.yml b/src/licensedcode/data/rules/jasper-2.0_3.yml deleted file mode 100644 index 6165ae75149..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jasper-2.0_4.RULE b/src/licensedcode/data/rules/jasper-2.0_4.RULE index 8776764c3e4..81d5e11c193 100644 --- a/src/licensedcode/data/rules/jasper-2.0_4.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 99 +--- + JasPer License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_4.yml b/src/licensedcode/data/rules/jasper-2.0_4.yml deleted file mode 100644 index 929a479b8e9..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/jasper-2.0_5.RULE b/src/licensedcode/data/rules/jasper-2.0_5.RULE index 70e0fd43dc5..ef4a0efccd9 100644 --- a/src/licensedcode/data/rules/jasper-2.0_5.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: jasper-2.0 +is_license_tag: yes +relevance: 100 +--- + License: JasPer License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_5.yml b/src/licensedcode/data/rules/jasper-2.0_5.yml deleted file mode 100644 index 573a1ec7cf5..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jasper-2.0_6.RULE b/src/licensedcode/data/rules/jasper-2.0_6.RULE index 90149cdbc7e..bb1216b8bf6 100644 --- a/src/licensedcode/data/rules/jasper-2.0_6.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: jasper-2.0 +is_license_tag: yes +relevance: 95 +--- + License: JasPer License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_6.yml b/src/licensedcode/data/rules/jasper-2.0_6.yml deleted file mode 100644 index be096b2af0c..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_tag: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/jasper-2.0_7.RULE b/src/licensedcode/data/rules/jasper-2.0_7.RULE index 3dce2133615..ac2b54602be 100644 --- a/src/licensedcode/data/rules/jasper-2.0_7.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: jasper-2.0 +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person (the "User") obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/jasper-2.0_7.yml b/src/licensedcode/data/rules/jasper-2.0_7.yml deleted file mode 100644 index ab799944dac..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jasper-2.0_8.RULE b/src/licensedcode/data/rules/jasper-2.0_8.RULE index 077791f129c..a4c9733be47 100644 --- a/src/licensedcode/data/rules/jasper-2.0_8.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 100 +--- + JasPer-2.0 JasPer License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_8.yml b/src/licensedcode/data/rules/jasper-2.0_8.yml deleted file mode 100644 index 6165ae75149..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jasper-2.0_9.RULE b/src/licensedcode/data/rules/jasper-2.0_9.RULE index afadc2d429c..c2331511064 100644 --- a/src/licensedcode/data/rules/jasper-2.0_9.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: JasPer License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_9.yml b/src/licensedcode/data/rules/jasper-2.0_9.yml deleted file mode 100644 index e774abe5e87..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jasper-2.0_url_1.RULE b/src/licensedcode/data/rules/jasper-2.0_url_1.RULE index d3e26ebf890..7671e37818e 100644 --- a/src/licensedcode/data/rules/jasper-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/jasper-2.0 +--- + https://spdx.org/licenses/jasper-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_url_1.yml b/src/licensedcode/data/rules/jasper-2.0_url_1.yml deleted file mode 100644 index 350d591515c..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/jasper-2.0 diff --git a/src/licensedcode/data/rules/jasper-2.0_url_2.RULE b/src/licensedcode/data/rules/jasper-2.0_url_2.RULE index d3da390e968..40ecb140428 100644 --- a/src/licensedcode/data/rules/jasper-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/jasper-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: jasper-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/jasper-2.0.html +--- + https://spdx.org/licenses/jasper-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/jasper-2.0_url_2.yml b/src/licensedcode/data/rules/jasper-2.0_url_2.yml deleted file mode 100644 index fb034a42fb6..00000000000 --- a/src/licensedcode/data/rules/jasper-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jasper-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/jasper-2.0.html diff --git a/src/licensedcode/data/rules/java-research-1.6_1.RULE b/src/licensedcode/data/rules/java-research-1.6_1.RULE index efd0b170400..ff4bdaf29c3 100644 --- a/src/licensedcode/data/rules/java-research-1.6_1.RULE +++ b/src/licensedcode/data/rules/java-research-1.6_1.RULE @@ -1 +1,7 @@ +--- +license_expression: java-research-1.6 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/Java_Research_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/java-research-1.6_1.yml b/src/licensedcode/data/rules/java-research-1.6_1.yml deleted file mode 100644 index 884043a3caf..00000000000 --- a/src/licensedcode/data/rules/java-research-1.6_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: java-research-1.6 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/javascript-exception-2.0_1.RULE b/src/licensedcode/data/rules/javascript-exception-2.0_1.RULE index 0004f42690d..1877ed6aa5e 100644 --- a/src/licensedcode/data/rules/javascript-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/javascript-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH javascript-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later @@ -18,4 +25,4 @@ this code and the LGPL for the libraries. If you modify this code, you may extend this exception to your version of the code, but you are not obligated to do so. If you do not wish to do so, delete this exception - statement from your version. + statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/javascript-exception-2.0_1.yml b/src/licensedcode/data/rules/javascript-exception-2.0_1.yml deleted file mode 100644 index 4c152ef0b68..00000000000 --- a/src/licensedcode/data/rules/javascript-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH javascript-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/jboss-eula.RULE b/src/licensedcode/data/rules/jboss-eula.RULE index 50531e5b241..b4405ec8461 100644 --- a/src/licensedcode/data/rules/jboss-eula.RULE +++ b/src/licensedcode/data/rules/jboss-eula.RULE @@ -1 +1,9 @@ +--- +license_expression: jboss-eula +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://repository.jboss.org/licenses/jbossorg-eula.txt +--- + http://repository.jboss.org/licenses/jbossorg-eula.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/jboss-eula.yml b/src/licensedcode/data/rules/jboss-eula.yml deleted file mode 100644 index 3d9a7e6c875..00000000000 --- a/src/licensedcode/data/rules/jboss-eula.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jboss-eula -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://repository.jboss.org/licenses/jbossorg-eula.txt diff --git a/src/licensedcode/data/rules/jdbm-1.00_1.RULE b/src/licensedcode/data/rules/jdbm-1.00_1.RULE index 346021fe4fa..27cc1513e1c 100644 --- a/src/licensedcode/data/rules/jdbm-1.00_1.RULE +++ b/src/licensedcode/data/rules/jdbm-1.00_1.RULE @@ -1 +1,6 @@ +--- +license_expression: jdbm-1.00 +is_license_notice: yes +--- + JDBM is licensed in the {{JDBM License}} v 1.00. For license terms, see JDBM LICENSE v1.00 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/jdbm-1.00_1.yml b/src/licensedcode/data/rules/jdbm-1.00_1.yml deleted file mode 100644 index 9093e3b11a1..00000000000 --- a/src/licensedcode/data/rules/jdbm-1.00_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: jdbm-1.00 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/jdom.RULE b/src/licensedcode/data/rules/jdom.RULE index 701b429f826..e63a4874bc1 100644 --- a/src/licensedcode/data/rules/jdom.RULE +++ b/src/licensedcode/data/rules/jdom.RULE @@ -1,3 +1,19 @@ +--- +license_expression: jdom +is_license_text: yes +ignorable_authors: + - Brett McLaughlin and Jason Hunter + - the JDOM Project (http://www.jdom.org/) +ignorable_urls: + - http://www.jdom.org/ + - http://www.jdom.org/images/logos +ignorable_emails: + - brett@jdom.org + - jhunter@jdom.org + - license@jdom.org + - pm@jdom.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/jdom.yml b/src/licensedcode/data/rules/jdom.yml deleted file mode 100644 index 0204885af46..00000000000 --- a/src/licensedcode/data/rules/jdom.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: jdom -is_license_text: yes -ignorable_authors: - - Brett McLaughlin and Jason Hunter - - the JDOM Project (http://www.jdom.org/) -ignorable_urls: - - http://www.jdom.org/ - - http://www.jdom.org/images/logos -ignorable_emails: - - brett@jdom.org - - jhunter@jdom.org - - license@jdom.org - - pm@jdom.org diff --git a/src/licensedcode/data/rules/jdom_1.RULE b/src/licensedcode/data/rules/jdom_1.RULE index d2e06aa368a..26632d92be6 100644 --- a/src/licensedcode/data/rules/jdom_1.RULE +++ b/src/licensedcode/data/rules/jdom_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: jdom +is_license_reference: yes +relevance: 100 +--- + This distribution includes the JDOM 2 library, licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/jdom_1.yml b/src/licensedcode/data/rules/jdom_1.yml deleted file mode 100644 index aa7a0e2c158..00000000000 --- a/src/licensedcode/data/rules/jdom_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jdom -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jdom_2.RULE b/src/licensedcode/data/rules/jdom_2.RULE index 9a767e545d8..08fae20ae7d 100644 --- a/src/licensedcode/data/rules/jdom_2.RULE +++ b/src/licensedcode/data/rules/jdom_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: jdom +is_license_text: yes +ignorable_authors: + - Jason Hunter + - the JDOM Project (http://www.jdom.org/) +ignorable_urls: + - http://www.jdom.org/ + - http://www.jdom.org/images/logos +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/jdom_2.yml b/src/licensedcode/data/rules/jdom_2.yml deleted file mode 100644 index 366e2bcb39b..00000000000 --- a/src/licensedcode/data/rules/jdom_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: jdom -is_license_text: yes -ignorable_authors: - - Jason Hunter - - the JDOM Project (http://www.jdom.org/) -ignorable_urls: - - http://www.jdom.org/ - - http://www.jdom.org/images/logos diff --git a/src/licensedcode/data/rules/jdom_3.RULE b/src/licensedcode/data/rules/jdom_3.RULE index 570ce0e98cf..50a1dfe7cd6 100644 --- a/src/licensedcode/data/rules/jdom_3.RULE +++ b/src/licensedcode/data/rules/jdom_3.RULE @@ -1,3 +1,19 @@ +--- +license_expression: jdom +is_license_text: yes +notes: Original text +ignorable_copyrights: + - Copyright (c) 2000-2002 Jason Hunter & Brett McLaughlin +ignorable_holders: + - Jason Hunter & Brett McLaughlin +ignorable_authors: + - Jason Hunter and Brett McLaughlin + - the JDOM Project (http://www.jdom.org/) +ignorable_urls: + - http://www.jdom.org/ + - http://www.jdom.org/images/logos +--- + JdomLicense 1.1.txt Copyright (C) 2000-2002 Jason Hunter & Brett McLaughlin. diff --git a/src/licensedcode/data/rules/jdom_3.yml b/src/licensedcode/data/rules/jdom_3.yml deleted file mode 100644 index 6406fbe2dca..00000000000 --- a/src/licensedcode/data/rules/jdom_3.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: jdom -is_license_text: yes -notes: Original text -ignorable_copyrights: - - Copyright (c) 2000-2002 Jason Hunter & Brett McLaughlin -ignorable_holders: - - Jason Hunter & Brett McLaughlin -ignorable_authors: - - Jason Hunter and Brett McLaughlin - - the JDOM Project (http://www.jdom.org/) -ignorable_urls: - - http://www.jdom.org/ - - http://www.jdom.org/images/logos diff --git a/src/licensedcode/data/rules/jdom_4.RULE b/src/licensedcode/data/rules/jdom_4.RULE index 218d78c4f2f..c6fffee19a3 100644 --- a/src/licensedcode/data/rules/jdom_4.RULE +++ b/src/licensedcode/data/rules/jdom_4.RULE @@ -1 +1,7 @@ +--- +license_expression: jdom +is_license_reference: yes +relevance: 100 +--- + JDOM license \ No newline at end of file diff --git a/src/licensedcode/data/rules/jdom_4.yml b/src/licensedcode/data/rules/jdom_4.yml deleted file mode 100644 index aa7a0e2c158..00000000000 --- a/src/licensedcode/data/rules/jdom_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jdom -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jetty_1.RULE b/src/licensedcode/data/rules/jetty_1.RULE index 1e585380f1a..314b1ce7a6a 100644 --- a/src/licensedcode/data/rules/jetty_1.RULE +++ b/src/licensedcode/data/rules/jetty_1.RULE @@ -1 +1,9 @@ +--- +license_expression: jetty +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt +--- + http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/jetty_1.yml b/src/licensedcode/data/rules/jetty_1.yml deleted file mode 100644 index 2d2c550ae45..00000000000 --- a/src/licensedcode/data/rules/jetty_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jetty -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.tinyos.net/tinyos-1.x/tools/java/jars/JETTY-LICENSE.txt diff --git a/src/licensedcode/data/rules/jetty_2.RULE b/src/licensedcode/data/rules/jetty_2.RULE index 6137f1eac41..09d43e1c84e 100644 --- a/src/licensedcode/data/rules/jetty_2.RULE +++ b/src/licensedcode/data/rules/jetty_2.RULE @@ -1 +1,9 @@ +--- +license_expression: jetty +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/Jetty_ +--- + http://en.wikipedia.org/wiki/Jetty_(web_server) \ No newline at end of file diff --git a/src/licensedcode/data/rules/jetty_2.yml b/src/licensedcode/data/rules/jetty_2.yml deleted file mode 100644 index d5a0136d9f5..00000000000 --- a/src/licensedcode/data/rules/jetty_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jetty -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/Jetty_ diff --git a/src/licensedcode/data/rules/jetty_3.RULE b/src/licensedcode/data/rules/jetty_3.RULE index 00fb67803d4..0fd1cbcd621 100644 --- a/src/licensedcode/data/rules/jetty_3.RULE +++ b/src/licensedcode/data/rules/jetty_3.RULE @@ -1,3 +1,19 @@ +--- +license_expression: jetty +is_license_text: yes +ignorable_copyrights: + - Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others + - copyright Sun Microsystems Inc. +ignorable_holders: + - Mort Bay Consulting Pty. Ltd. (Australia) and others + - Sun Microsystems Inc. +ignorable_urls: + - http://ftp.uu.net/ + - http://jetty.mortbay.org/ + - http://www.opensource.com/ + - http://www.opensource.org/ +--- + Jetty License $Revision: 3.7 $ @@ -69,4 +85,4 @@ Definitions: 14. This license shall be read under the laws of Australia. The End -This license was derived from the Artistic license published on http://www.opensource.com +This license was derived from the Artistic license published on http://www.opensource.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/jetty_3.yml b/src/licensedcode/data/rules/jetty_3.yml deleted file mode 100644 index 0341bf47305..00000000000 --- a/src/licensedcode/data/rules/jetty_3.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: jetty -is_license_text: yes -ignorable_copyrights: - - Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others - - copyright Sun Microsystems Inc. -ignorable_holders: - - Mort Bay Consulting Pty. Ltd. (Australia) and others - - Sun Microsystems Inc. -ignorable_urls: - - http://ftp.uu.net/ - - http://jetty.mortbay.org/ - - http://www.opensource.com/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/rules/jetty_4.RULE b/src/licensedcode/data/rules/jetty_4.RULE index 1798896a407..2bf4b23712b 100644 --- a/src/licensedcode/data/rules/jetty_4.RULE +++ b/src/licensedcode/data/rules/jetty_4.RULE @@ -1,3 +1,21 @@ +--- +license_expression: jetty +is_license_text: yes +ignorable_copyrights: + - Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others + - copyright Sun Microsystems Inc. + - copyright holders. Definitions 95 Jetty +ignorable_holders: + - Definitions Jetty + - Mort Bay Consulting Pty. Ltd. (Australia) and others + - Sun Microsystems Inc. +ignorable_urls: + - http://ftp.uu.net/ + - http://jetty.mortbay.org/ + - http://www.opensource.com/ + - http://www.opensource.org/ +--- + Jetty License $Revision: 3.7 $ Preamble: @@ -35,5 +53,4 @@ c) Make other arrangements with the Copyright Holder. 13. If any superior law implies a warranty, the sole remedy under such shall be , at the Copyright Holders option either a) return of any price paid or b) use or reasonable endeavours to repair or replace the software. 14. This license shall be read under the laws of Australia. The End -This license was derived from the Artistic license published on http://www.opensource.com - +This license was derived from the Artistic license published on http://www.opensource.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/jetty_4.yml b/src/licensedcode/data/rules/jetty_4.yml deleted file mode 100644 index c008ede8587..00000000000 --- a/src/licensedcode/data/rules/jetty_4.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: jetty -is_license_text: yes -ignorable_copyrights: - - Copyright (c) Mort Bay Consulting Pty. Ltd. (Australia) and others - - copyright Sun Microsystems Inc. - - copyright holders. Definitions 95 Jetty -ignorable_holders: - - Definitions Jetty - - Mort Bay Consulting Pty. Ltd. (Australia) and others - - Sun Microsystems Inc. -ignorable_urls: - - http://ftp.uu.net/ - - http://jetty.mortbay.org/ - - http://www.opensource.com/ - - http://www.opensource.org/ diff --git a/src/licensedcode/data/rules/jetty_5.RULE b/src/licensedcode/data/rules/jetty_5.RULE index b30070baf3c..d33adf6fe08 100644 --- a/src/licensedcode/data/rules/jetty_5.RULE +++ b/src/licensedcode/data/rules/jetty_5.RULE @@ -1 +1,7 @@ +--- +license_expression: jetty +is_license_notice: yes +relevance: 100 +--- + The Jetty license is derived from the Artistic license. See {{Jetty License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/jetty_5.yml b/src/licensedcode/data/rules/jetty_5.yml deleted file mode 100644 index 65bd7cd5eea..00000000000 --- a/src/licensedcode/data/rules/jetty_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jetty -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jgraph-general.RULE b/src/licensedcode/data/rules/jgraph-general.RULE index c9b33e3c3b6..a1f6758f97c 100644 --- a/src/licensedcode/data/rules/jgraph-general.RULE +++ b/src/licensedcode/data/rules/jgraph-general.RULE @@ -1,3 +1,8 @@ +--- +license_expression: jgraph-general +is_license_text: yes +--- + JGRAPH GENERAL LICENSE STATEMENT AND LIMITED WARRANTY IMPORTANT - READ CAREFULLY diff --git a/src/licensedcode/data/rules/jgraph-general.yml b/src/licensedcode/data/rules/jgraph-general.yml deleted file mode 100644 index 59502693c25..00000000000 --- a/src/licensedcode/data/rules/jgraph-general.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: jgraph-general -is_license_text: yes diff --git a/src/licensedcode/data/rules/josl-1.0.RULE b/src/licensedcode/data/rules/josl-1.0.RULE index 283637edf81..e2a15fc93dd 100644 --- a/src/licensedcode/data/rules/josl-1.0.RULE +++ b/src/licensedcode/data/rules/josl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: josl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/jabberpl.php +--- + http://www.opensource.org/licenses/jabberpl.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/josl-1.0.yml b/src/licensedcode/data/rules/josl-1.0.yml deleted file mode 100644 index 430ddf9cef2..00000000000 --- a/src/licensedcode/data/rules/josl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: josl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/jabberpl.php diff --git a/src/licensedcode/data/rules/josl-1.0_1.RULE b/src/licensedcode/data/rules/josl-1.0_1.RULE index e60803ec95d..a67458e3eac 100644 --- a/src/licensedcode/data/rules/josl-1.0_1.RULE +++ b/src/licensedcode/data/rules/josl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: josl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://code.google.com/p/jabber-net/source/browse/branches/RELEASE_1_0/LICENSE.txt +--- + http://code.google.com/p/jabber-net/source/browse/branches/RELEASE_1_0/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/josl-1.0_1.yml b/src/licensedcode/data/rules/josl-1.0_1.yml deleted file mode 100644 index 426d0e50afb..00000000000 --- a/src/licensedcode/data/rules/josl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: josl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://code.google.com/p/jabber-net/source/browse/branches/RELEASE_1_0/LICENSE.txt diff --git a/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_1.RULE index c8cdd26a4dd..d4cdbbdd393 100644 --- a/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: josl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.jabber.org/about/josl.php +--- + can be used under either of two licenses. The Jabber Open Source License (JOSL) is probably most appropriate for @@ -6,4 +15,4 @@ http://www.jabber.org/about/josl.php The GNU Public License (GPL) is probably most appropriate for inclusion in other open source projects. -http://www.gnu.org/copyleft/gpl.html +http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index a457683eea8..00000000000 --- a/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: josl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.jabber.org/about/josl.php diff --git a/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_2.RULE index 99fa93e75de..6470bd5b32d 100644 --- a/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: josl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.jabber.org/about/josl.php + - https://www.gnu.org/copyleft/gpl.html +--- + can be used under either of two licenses. The Jabber Open Source License (JOSL) is probably most appropriate for @@ -6,4 +15,4 @@ http://www.jabber.org/about/josl.php The GNU Public License (GPL) is probably most appropriate for inclusion in other open source projects. -https://www.gnu.org/copyleft/gpl.html +https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 470d5ce7aa7..00000000000 --- a/src/licensedcode/data/rules/josl-1.0_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: josl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.jabber.org/about/josl.php - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/jpnic-idnkit_1.RULE b/src/licensedcode/data/rules/jpnic-idnkit_1.RULE index fbf1e951272..6baeec78061 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_1.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_1.RULE @@ -1 +1,10 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Japan Network Information Center License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_1.yml b/src/licensedcode/data/rules/jpnic-idnkit_1.yml deleted file mode 100644 index bb1f076b605..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jpnic-idnkit_10.RULE b/src/licensedcode/data/rules/jpnic-idnkit_10.RULE index 199c79c76d5..ebb2bba7a44 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_10.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_10.RULE @@ -1 +1,9 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/JPNIC +--- + {{JPNIC}} https://spdx.org/licenses/JPNIC \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_10.yml b/src/licensedcode/data/rules/jpnic-idnkit_10.yml deleted file mode 100644 index 9e4ddaab50e..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/JPNIC diff --git a/src/licensedcode/data/rules/jpnic-idnkit_11.RULE b/src/licensedcode/data/rules/jpnic-idnkit_11.RULE index ac9f5201423..1e77556d829 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_11.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_11.RULE @@ -1 +1,9 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/JPNIC +--- + LICENSE {{JPNIC}} https://spdx.org/licenses/JPNIC \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_11.yml b/src/licensedcode/data/rules/jpnic-idnkit_11.yml deleted file mode 100644 index 9e4ddaab50e..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/JPNIC diff --git a/src/licensedcode/data/rules/jpnic-idnkit_2.RULE b/src/licensedcode/data/rules/jpnic-idnkit_2.RULE index 21569458e9d..1c1eb6298f9 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_2.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_2.RULE @@ -1 +1,10 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Japan Network Information Center License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_2.yml b/src/licensedcode/data/rules/jpnic-idnkit_2.yml deleted file mode 100644 index bb1f076b605..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jpnic-idnkit_3.RULE b/src/licensedcode/data/rules/jpnic-idnkit_3.RULE index 21ced558f0b..0a40de7e544 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_3.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_3.RULE @@ -1 +1,10 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + JPNIC Japan Network Information Center License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_3.yml b/src/licensedcode/data/rules/jpnic-idnkit_3.yml deleted file mode 100644 index bb1f076b605..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jpnic-idnkit_4.RULE b/src/licensedcode/data/rules/jpnic-idnkit_4.RULE index fd1aba83963..8fd14dfa20d 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_4.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_4.RULE @@ -1 +1,10 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Japan Network Information Center License JPNIC \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_4.yml b/src/licensedcode/data/rules/jpnic-idnkit_4.yml deleted file mode 100644 index bb1f076b605..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jpnic-idnkit_5.RULE b/src/licensedcode/data/rules/jpnic-idnkit_5.RULE index ad7ff621c24..02297320c51 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_5.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_5.RULE @@ -1 +1,10 @@ +--- +license_expression: jpnic-idnkit +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: JPNIC \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_5.yml b/src/licensedcode/data/rules/jpnic-idnkit_5.yml deleted file mode 100644 index 23cfbaf2910..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jpnic-idnkit -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jpnic-idnkit_6.RULE b/src/licensedcode/data/rules/jpnic-idnkit_6.RULE index a64fe681022..6699ea8ee62 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_6.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_6.RULE @@ -1 +1,10 @@ +--- +license_expression: jpnic-idnkit +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Japan Network Information Center License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_6.yml b/src/licensedcode/data/rules/jpnic-idnkit_6.yml deleted file mode 100644 index 23cfbaf2910..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jpnic-idnkit -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jpnic-idnkit_7.RULE b/src/licensedcode/data/rules/jpnic-idnkit_7.RULE index c75e7cffb95..6dd6f695bf8 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_7.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_7.RULE @@ -1 +1,10 @@ +--- +license_expression: jpnic-idnkit +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: JPNIC \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_7.yml b/src/licensedcode/data/rules/jpnic-idnkit_7.yml deleted file mode 100644 index 23cfbaf2910..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: jpnic-idnkit -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/jpnic-idnkit_8.RULE b/src/licensedcode/data/rules/jpnic-idnkit_8.RULE index ca04d036dd5..b72f1b2104c 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_8.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_8.RULE @@ -1 +1,9 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/JPNIC +--- + https://licenses.nuget.org/JPNIC \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_8.yml b/src/licensedcode/data/rules/jpnic-idnkit_8.yml deleted file mode 100644 index 261b3b48c7f..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/JPNIC diff --git a/src/licensedcode/data/rules/jpnic-idnkit_9.RULE b/src/licensedcode/data/rules/jpnic-idnkit_9.RULE index fdba002ebb9..4c502de29ef 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_9.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_9.RULE @@ -1 +1,7 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/JPNIC \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_9.yml b/src/licensedcode/data/rules/jpnic-idnkit_9.yml deleted file mode 100644 index eb99096cb97..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jpnic-idnkit_url_1.RULE b/src/licensedcode/data/rules/jpnic-idnkit_url_1.RULE index 1e6b32d6732..0558a7b4388 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_url_1.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/jpnic +--- + https://spdx.org/licenses/jpnic \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_url_1.yml b/src/licensedcode/data/rules/jpnic-idnkit_url_1.yml deleted file mode 100644 index 7431b7eaa92..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/jpnic diff --git a/src/licensedcode/data/rules/jpnic-idnkit_url_2.RULE b/src/licensedcode/data/rules/jpnic-idnkit_url_2.RULE index 74a2f6262e9..880ec2e573e 100644 --- a/src/licensedcode/data/rules/jpnic-idnkit_url_2.RULE +++ b/src/licensedcode/data/rules/jpnic-idnkit_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: jpnic-idnkit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/jpnic.html +--- + https://spdx.org/licenses/jpnic.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpnic-idnkit_url_2.yml b/src/licensedcode/data/rules/jpnic-idnkit_url_2.yml deleted file mode 100644 index 807c989a2bb..00000000000 --- a/src/licensedcode/data/rules/jpnic-idnkit_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jpnic-idnkit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/jpnic.html diff --git a/src/licensedcode/data/rules/jpython-1.1.RULE b/src/licensedcode/data/rules/jpython-1.1.RULE index 0350a5864b4..c22454b5933 100644 --- a/src/licensedcode/data/rules/jpython-1.1.RULE +++ b/src/licensedcode/data/rules/jpython-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: jpython-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.jython.org/license.html +--- + http://www.jython.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpython-1.1.yml b/src/licensedcode/data/rules/jpython-1.1.yml deleted file mode 100644 index 0783b6e6b1c..00000000000 --- a/src/licensedcode/data/rules/jpython-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jpython-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.jython.org/license.html diff --git a/src/licensedcode/data/rules/jpython-1.1_1.RULE b/src/licensedcode/data/rules/jpython-1.1_1.RULE index d5b13a6547e..84d9986b3f2 100644 --- a/src/licensedcode/data/rules/jpython-1.1_1.RULE +++ b/src/licensedcode/data/rules/jpython-1.1_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: jpython-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 +--- + JPython 1.1.x Software License. ========================= @@ -82,4 +93,4 @@ Licensee. 9. By clicking on the "ACCEPT" button where indicated, or by installing, copying or otherwise using the Software, Licensee agrees to be bound by -the terms and conditions of this License Agreement. +the terms and conditions of this License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpython-1.1_1.yml b/src/licensedcode/data/rules/jpython-1.1_1.yml deleted file mode 100644 index a56582d2ff5..00000000000 --- a/src/licensedcode/data/rules/jpython-1.1_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: jpython-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1996-1999 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1006 diff --git a/src/licensedcode/data/rules/jpython-1.1_2.RULE b/src/licensedcode/data/rules/jpython-1.1_2.RULE index 430fcd82f7d..b2582674808 100644 --- a/src/licensedcode/data/rules/jpython-1.1_2.RULE +++ b/src/licensedcode/data/rules/jpython-1.1_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: jpython-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 +--- + JPython 1.1.x Software License. @@ -69,4 +80,4 @@ JPython 1.1.x Software License. 9. By clicking on the "ACCEPT" button where indicated, or by installing, copying or otherwise using the Software, Licensee agrees to be bound by - the terms and conditions of this License Agreement. + the terms and conditions of this License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jpython-1.1_2.yml b/src/licensedcode/data/rules/jpython-1.1_2.yml deleted file mode 100644 index a56582d2ff5..00000000000 --- a/src/licensedcode/data/rules/jpython-1.1_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: jpython-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1996-1999 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1006 diff --git a/src/licensedcode/data/rules/jrunner.RULE b/src/licensedcode/data/rules/jrunner.RULE index a847c6e5b23..92b324d9ffb 100644 --- a/src/licensedcode/data/rules/jrunner.RULE +++ b/src/licensedcode/data/rules/jrunner.RULE @@ -1 +1,9 @@ +--- +license_expression: jrunner +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.altera.com/download/licensing/lic-jrunner.html +--- + https://www.altera.com/download/licensing/lic-jrunner.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/jrunner.yml b/src/licensedcode/data/rules/jrunner.yml deleted file mode 100644 index 10373ec2e57..00000000000 --- a/src/licensedcode/data/rules/jrunner.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jrunner -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.altera.com/download/licensing/lic-jrunner.html diff --git a/src/licensedcode/data/rules/jscheme_1.RULE b/src/licensedcode/data/rules/jscheme_1.RULE index 3a7f31628df..8fc3f508606 100644 --- a/src/licensedcode/data/rules/jscheme_1.RULE +++ b/src/licensedcode/data/rules/jscheme_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: jscheme +is_license_text: yes +ignorable_emails: + - peter@norvig.com +--- + Software License Agreement Permission is granted to anyone to use this software, in source or object code form, on any computer system, and to modify, compile, decompile, run, and redistribute it to anyone else, subject to the following restrictions: @@ -13,4 +20,4 @@ Permission is granted to anyone to use this software, in source or object code f If you find this software useful, it would be nice if you let me (peter@norvig.com) know about it, and nicer still if you send me modifications that you are willing to share. However, you are not required to do so. License License Agreement -A few people have written to say they like this license agreement and want to know if they can use it. So this is to clarify that you are free to use this license agreement, subject to this license agreement. \ No newline at end of file +A few people have written to say they like this license agreement and want to know if they can use it. So this is to clarify that you are free to use this license agreement, subject to this license agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jscheme_1.yml b/src/licensedcode/data/rules/jscheme_1.yml deleted file mode 100644 index dfc97dfe09c..00000000000 --- a/src/licensedcode/data/rules/jscheme_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: jscheme -is_license_text: yes -ignorable_emails: - - peter@norvig.com diff --git a/src/licensedcode/data/rules/jscheme_2.RULE b/src/licensedcode/data/rules/jscheme_2.RULE index 7b8c2a3cc7e..5e7a229cdca 100644 --- a/src/licensedcode/data/rules/jscheme_2.RULE +++ b/src/licensedcode/data/rules/jscheme_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: jscheme +is_license_text: yes +ignorable_emails: + - peter@norvig.com +--- + Permission is granted to anyone to use this software, in source or object code form, on any computer system, and to modify, compile, decompile, run, and redistribute it to anyone else, subject to the following restrictions: The author makes no warranty of any kind, either expressed or implied, about the suitability of this software for any purpose. @@ -8,4 +15,4 @@ Permission is granted to anyone to use this software, in source or object code f Altered versions must be plainly marked as such, and must not be misrepresented as being the original software. Altered versions may be distributed in packages under other licenses (such as the GNU license). -If you find this software useful, it would be nice if you let me (peter@norvig.com) know about it, and nicer still if you send me modifications that you are willing to share. However, you are not required to do so. +If you find this software useful, it would be nice if you let me (peter@norvig.com) know about it, and nicer still if you send me modifications that you are willing to share. However, you are not required to do so. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jscheme_2.yml b/src/licensedcode/data/rules/jscheme_2.yml deleted file mode 100644 index dfc97dfe09c..00000000000 --- a/src/licensedcode/data/rules/jscheme_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: jscheme -is_license_text: yes -ignorable_emails: - - peter@norvig.com diff --git a/src/licensedcode/data/rules/jscheme_3.RULE b/src/licensedcode/data/rules/jscheme_3.RULE index 906b661d7c1..bdf1169f5d6 100644 --- a/src/licensedcode/data/rules/jscheme_3.RULE +++ b/src/licensedcode/data/rules/jscheme_3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: jscheme +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright by Peter Norvig +ignorable_holders: + - Peter Norvig +ignorable_emails: + - peter@norvig.com +--- + Software License Agreement Copyright by Peter Norvig. Permission is granted to anyone to use this software, in source or object code diff --git a/src/licensedcode/data/rules/jscheme_3.yml b/src/licensedcode/data/rules/jscheme_3.yml deleted file mode 100644 index b0cc6f1c1fa..00000000000 --- a/src/licensedcode/data/rules/jscheme_3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: jscheme -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright by Peter Norvig -ignorable_holders: - - Peter Norvig -ignorable_emails: - - peter@norvig.com diff --git a/src/licensedcode/data/rules/jscheme_4.RULE b/src/licensedcode/data/rules/jscheme_4.RULE index 3faafa8b08b..b6c5d8c67ef 100644 --- a/src/licensedcode/data/rules/jscheme_4.RULE +++ b/src/licensedcode/data/rules/jscheme_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: jscheme +is_license_text: yes +ignorable_emails: + - peter@norvig.com +--- + Software License Agreement Permission is granted to anyone to use this software, in source or object code form, on any computer system, and to modify, compile, decompile, run, and diff --git a/src/licensedcode/data/rules/jscheme_4.yml b/src/licensedcode/data/rules/jscheme_4.yml deleted file mode 100644 index dfc97dfe09c..00000000000 --- a/src/licensedcode/data/rules/jscheme_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: jscheme -is_license_text: yes -ignorable_emails: - - peter@norvig.com diff --git a/src/licensedcode/data/rules/json-pd_1.RULE b/src/licensedcode/data/rules/json-pd_1.RULE index 60dd99e4ca4..fb034815318 100644 --- a/src/licensedcode/data/rules/json-pd_1.RULE +++ b/src/licensedcode/data/rules/json-pd_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: json-pd +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.json.org/js.html +--- + Public Domain. NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. diff --git a/src/licensedcode/data/rules/json-pd_1.yml b/src/licensedcode/data/rules/json-pd_1.yml deleted file mode 100644 index d9b4e15d8fd..00000000000 --- a/src/licensedcode/data/rules/json-pd_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json-pd -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.json.org/js.html diff --git a/src/licensedcode/data/rules/json.RULE b/src/licensedcode/data/rules/json.RULE index 887ab627931..48e3009117e 100644 --- a/src/licensedcode/data/rules/json.RULE +++ b/src/licensedcode/data/rules/json.RULE @@ -1 +1,9 @@ -http://www.json.org/license.html \ No newline at end of file +--- +license_expression: json +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.json.org/license.html +--- + +http://www.json.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/json.yml b/src/licensedcode/data/rules/json.yml deleted file mode 100644 index 858b3385c79..00000000000 --- a/src/licensedcode/data/rules/json.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.json.org/license.html diff --git a/src/licensedcode/data/rules/json2.RULE b/src/licensedcode/data/rules/json2.RULE index dd17e24066f..1bc727f2c59 100644 --- a/src/licensedcode/data/rules/json2.RULE +++ b/src/licensedcode/data/rules/json2.RULE @@ -1 +1,9 @@ +--- +license_expression: json +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.json.org/license.html +--- + You can see the license term at http://www.JSON.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/json2.yml b/src/licensedcode/data/rules/json2.yml deleted file mode 100644 index 234c2caa762..00000000000 --- a/src/licensedcode/data/rules/json2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.json.org/license.html diff --git a/src/licensedcode/data/rules/json3.RULE b/src/licensedcode/data/rules/json3.RULE index 06e28ef42f7..36586206dff 100644 --- a/src/licensedcode/data/rules/json3.RULE +++ b/src/licensedcode/data/rules/json3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: json +is_license_text: yes +minimum_coverage: 80 +--- + Terms of the JSON License: --------------------------------------------------- @@ -7,4 +13,4 @@ The above copyright notice and this permission notice shall be included in all c The Software shall be used for Good, not Evil. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +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/json3.yml b/src/licensedcode/data/rules/json3.yml deleted file mode 100644 index 241e40c6d04..00000000000 --- a/src/licensedcode/data/rules/json3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: json -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/json4.RULE b/src/licensedcode/data/rules/json4.RULE index cfdab04e005..2355dbba97f 100644 --- a/src/licensedcode/data/rules/json4.RULE +++ b/src/licensedcode/data/rules/json4.RULE @@ -1 +1,7 @@ +--- +license_expression: json +is_license_text: yes +relevance: 99 +--- + Open Source Software Licensed Under the JSON License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/json4.yml b/src/licensedcode/data/rules/json4.yml deleted file mode 100644 index 524ec9db805..00000000000 --- a/src/licensedcode/data/rules/json4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: json -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/json_1.RULE b/src/licensedcode/data/rules/json_1.RULE index 1693d25f812..ac1343b9193 100644 --- a/src/licensedcode/data/rules/json_1.RULE +++ b/src/licensedcode/data/rules/json_1.RULE @@ -1 +1,9 @@ +--- +license_expression: json +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.json.org/license.html +--- + License: provided without support or warranty (http://www.json.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_1.yml b/src/licensedcode/data/rules/json_1.yml deleted file mode 100644 index 287e3eaf3a7..00000000000 --- a/src/licensedcode/data/rules/json_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.json.org/license.html diff --git a/src/licensedcode/data/rules/json_10.RULE b/src/licensedcode/data/rules/json_10.RULE index 356a37f371a..819c8eb80dd 100644 --- a/src/licensedcode/data/rules/json_10.RULE +++ b/src/licensedcode/data/rules/json_10.RULE @@ -1 +1,10 @@ +--- +license_expression: json +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: JSON \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_10.yml b/src/licensedcode/data/rules/json_10.yml deleted file mode 100644 index 19ba1e16f70..00000000000 --- a/src/licensedcode/data/rules/json_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: json -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/json_11.RULE b/src/licensedcode/data/rules/json_11.RULE index 5748c1b5e64..0426e59b604 100644 --- a/src/licensedcode/data/rules/json_11.RULE +++ b/src/licensedcode/data/rules/json_11.RULE @@ -1 +1,7 @@ +--- +license_expression: json +is_license_notice: yes +relevance: 100 +--- + License terms appear in JSON License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_11.yml b/src/licensedcode/data/rules/json_11.yml deleted file mode 100644 index 7426a282d20..00000000000 --- a/src/licensedcode/data/rules/json_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: json -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/json_12.RULE b/src/licensedcode/data/rules/json_12.RULE index d0a9f622bfb..3274f815f89 100644 --- a/src/licensedcode/data/rules/json_12.RULE +++ b/src/licensedcode/data/rules/json_12.RULE @@ -1 +1,9 @@ +--- +license_expression: json +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/JSON +--- + https://licenses.nuget.org/JSON \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_12.yml b/src/licensedcode/data/rules/json_12.yml deleted file mode 100644 index de3b94b3e20..00000000000 --- a/src/licensedcode/data/rules/json_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/JSON diff --git a/src/licensedcode/data/rules/json_13.RULE b/src/licensedcode/data/rules/json_13.RULE index 6501e8999ab..daf19304a5c 100644 --- a/src/licensedcode/data/rules/json_13.RULE +++ b/src/licensedcode/data/rules/json_13.RULE @@ -1 +1,7 @@ +--- +license_expression: json +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/JSON \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_13.yml b/src/licensedcode/data/rules/json_13.yml deleted file mode 100644 index 6a1bd33d500..00000000000 --- a/src/licensedcode/data/rules/json_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/json_14.RULE b/src/licensedcode/data/rules/json_14.RULE index befe8dabcb1..e64f40f3198 100644 --- a/src/licensedcode/data/rules/json_14.RULE +++ b/src/licensedcode/data/rules/json_14.RULE @@ -1 +1,9 @@ +--- +license_expression: json +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/JSON +--- + {{JSON}} https://spdx.org/licenses/JSON \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_14.yml b/src/licensedcode/data/rules/json_14.yml deleted file mode 100644 index 887f80c6c03..00000000000 --- a/src/licensedcode/data/rules/json_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/JSON diff --git a/src/licensedcode/data/rules/json_15.RULE b/src/licensedcode/data/rules/json_15.RULE index 1633a03959a..b5a13515ac6 100644 --- a/src/licensedcode/data/rules/json_15.RULE +++ b/src/licensedcode/data/rules/json_15.RULE @@ -1 +1,9 @@ +--- +license_expression: json +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/JSON +--- + LICENSE {{JSON}} https://spdx.org/licenses/JSON \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_15.yml b/src/licensedcode/data/rules/json_15.yml deleted file mode 100644 index 887f80c6c03..00000000000 --- a/src/licensedcode/data/rules/json_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/JSON diff --git a/src/licensedcode/data/rules/json_2.RULE b/src/licensedcode/data/rules/json_2.RULE index f04fa78c380..1fc40094751 100644 --- a/src/licensedcode/data/rules/json_2.RULE +++ b/src/licensedcode/data/rules/json_2.RULE @@ -1 +1,9 @@ +--- +license_expression: json +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.json.org/license.html +--- + https://www.json.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_2.yml b/src/licensedcode/data/rules/json_2.yml deleted file mode 100644 index da3675642e9..00000000000 --- a/src/licensedcode/data/rules/json_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.json.org/license.html diff --git a/src/licensedcode/data/rules/json_3.RULE b/src/licensedcode/data/rules/json_3.RULE index 505b932ac73..f9da704ad34 100644 --- a/src/licensedcode/data/rules/json_3.RULE +++ b/src/licensedcode/data/rules/json_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: json +is_license_text: yes +relevance: 100 +--- + JSON processing code subject to the JSON License from JSON.org: Permission is hereby granted, free of charge, to any person obtaining a copy of @@ -10,11 +16,11 @@ subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -{{The Software shall be used for Good, not Evil.}} +The Software shall be used for Good, not Evil. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +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/json_3.yml b/src/licensedcode/data/rules/json_3.yml deleted file mode 100644 index 17e4b03771d..00000000000 --- a/src/licensedcode/data/rules/json_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: json -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/json_4.RULE b/src/licensedcode/data/rules/json_4.RULE index 5716653f272..4d7f3cd21aa 100644 --- a/src/licensedcode/data/rules/json_4.RULE +++ b/src/licensedcode/data/rules/json_4.RULE @@ -1 +1,7 @@ +--- +license_expression: json +is_license_reference: yes +relevance: 100 +--- + JSON JSON License \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_4.yml b/src/licensedcode/data/rules/json_4.yml deleted file mode 100644 index 6a1bd33d500..00000000000 --- a/src/licensedcode/data/rules/json_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/json_5.RULE b/src/licensedcode/data/rules/json_5.RULE index c87899329ae..948f6c798a9 100644 --- a/src/licensedcode/data/rules/json_5.RULE +++ b/src/licensedcode/data/rules/json_5.RULE @@ -1 +1,10 @@ +--- +license_expression: json +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + JSON License \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_5.yml b/src/licensedcode/data/rules/json_5.yml deleted file mode 100644 index 6c3074025e9..00000000000 --- a/src/licensedcode/data/rules/json_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: json -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/json_6.RULE b/src/licensedcode/data/rules/json_6.RULE index 44cc131570d..9e77567bf55 100644 --- a/src/licensedcode/data/rules/json_6.RULE +++ b/src/licensedcode/data/rules/json_6.RULE @@ -1 +1,10 @@ +--- +license_expression: json +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: JSON License \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_6.yml b/src/licensedcode/data/rules/json_6.yml deleted file mode 100644 index 6c3074025e9..00000000000 --- a/src/licensedcode/data/rules/json_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: json -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/json_7.RULE b/src/licensedcode/data/rules/json_7.RULE index 36ed5dfe985..541dda599a4 100644 --- a/src/licensedcode/data/rules/json_7.RULE +++ b/src/licensedcode/data/rules/json_7.RULE @@ -1 +1,10 @@ +--- +license_expression: json +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + JSON License JSON \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_7.yml b/src/licensedcode/data/rules/json_7.yml deleted file mode 100644 index 6c3074025e9..00000000000 --- a/src/licensedcode/data/rules/json_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: json -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/json_8.RULE b/src/licensedcode/data/rules/json_8.RULE index ed6eac8522f..191c141b671 100644 --- a/src/licensedcode/data/rules/json_8.RULE +++ b/src/licensedcode/data/rules/json_8.RULE @@ -1 +1,10 @@ +--- +license_expression: json +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: JSON \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_8.yml b/src/licensedcode/data/rules/json_8.yml deleted file mode 100644 index 19ba1e16f70..00000000000 --- a/src/licensedcode/data/rules/json_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: json -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/json_9.RULE b/src/licensedcode/data/rules/json_9.RULE index 4ce0fd6b231..bdfe7f1000c 100644 --- a/src/licensedcode/data/rules/json_9.RULE +++ b/src/licensedcode/data/rules/json_9.RULE @@ -1 +1,10 @@ +--- +license_expression: json +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: JSON License \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_9.yml b/src/licensedcode/data/rules/json_9.yml deleted file mode 100644 index 19ba1e16f70..00000000000 --- a/src/licensedcode/data/rules/json_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: json -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/json_url_1.RULE b/src/licensedcode/data/rules/json_url_1.RULE index 45bd22509cb..a592586353c 100644 --- a/src/licensedcode/data/rules/json_url_1.RULE +++ b/src/licensedcode/data/rules/json_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: json +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/json +--- + https://spdx.org/licenses/json \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_url_1.yml b/src/licensedcode/data/rules/json_url_1.yml deleted file mode 100644 index 0dae0f4a26c..00000000000 --- a/src/licensedcode/data/rules/json_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/json diff --git a/src/licensedcode/data/rules/json_url_2.RULE b/src/licensedcode/data/rules/json_url_2.RULE index f1ec45607b0..092b087356b 100644 --- a/src/licensedcode/data/rules/json_url_2.RULE +++ b/src/licensedcode/data/rules/json_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: json +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/json.html +--- + https://spdx.org/licenses/json.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/json_url_2.yml b/src/licensedcode/data/rules/json_url_2.yml deleted file mode 100644 index a1ad74d13d0..00000000000 --- a/src/licensedcode/data/rules/json_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: json -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/json.html diff --git a/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_1.RULE b/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_1.RULE index 68436e787d7..43300b97f61 100644 --- a/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_1.RULE +++ b/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: jsr-107-jcache-spec-2013 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt +--- + JSR-000107 JCACHE 2.9 Public Review - Updated Specification License diff --git a/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_1.yml b/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_1.yml deleted file mode 100644 index 6437ccc6748..00000000000 --- a/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jsr-107-jcache-spec-2013 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://raw.github.com/jsr107/jsr107spec/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_2.RULE b/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_2.RULE index 8829163d1a2..f9b4a3ffd50 100644 --- a/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_2.RULE +++ b/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_2.RULE @@ -1 +1,7 @@ +--- +license_expression: jsr-107-jcache-spec-2013 +is_license_reference: yes +relevance: 100 +--- + JSR-000107 JCACHE 2.9 Public Review - Updated Specification License \ No newline at end of file diff --git a/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_2.yml b/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_2.yml deleted file mode 100644 index 9a957171092..00000000000 --- a/src/licensedcode/data/rules/jsr-107-jcache-spec-2013_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jsr-107-jcache-spec-2013 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jsr-107-jcache-spec_1.RULE b/src/licensedcode/data/rules/jsr-107-jcache-spec_1.RULE index fa60eb84462..8ecfaa6f6bc 100644 --- a/src/licensedcode/data/rules/jsr-107-jcache-spec_1.RULE +++ b/src/licensedcode/data/rules/jsr-107-jcache-spec_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: jsr-107-jcache-spec +is_license_text: yes +relevance: 95 +minimum_coverage: 30 +notes: this is for a slightly diffreent version of the sp3c license +ignorable_copyrights: + - Copyright 2014 Oracle America, Inc. and Greg Luck +ignorable_holders: + - Oracle America, Inc. and Greg Luck +ignorable_urls: + - http://www.jcp.org/ +--- + JSR-000107 JCache - JavaTM Temporary Caching API Final Release for Evaluation @@ -33,5 +47,4 @@ If you provide Specification Leads with any comments or suggestions concerning t GOVERNING LAW -Any action relating to or arising out of this Agreement will be governed by California law and controlling U.S. federal law. The U.N. Convention for the International Sale of Goods and the choice of law rules of any jurisdiction will not apply. - +Any action relating to or arising out of this Agreement will be governed by California law and controlling U.S. federal law. The U.N. Convention for the International Sale of Goods and the choice of law rules of any jurisdiction will not apply. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jsr-107-jcache-spec_1.yml b/src/licensedcode/data/rules/jsr-107-jcache-spec_1.yml deleted file mode 100644 index 54c2098ed8f..00000000000 --- a/src/licensedcode/data/rules/jsr-107-jcache-spec_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: jsr-107-jcache-spec -is_license_text: yes -relevance: 95 -minimum_coverage: 30 -notes: this is for a slightly diffreent version of the sp3c license -ignorable_copyrights: - - Copyright 2014 Oracle America, Inc. and Greg Luck -ignorable_holders: - - Oracle America, Inc. and Greg Luck -ignorable_urls: - - http://www.jcp.org/ diff --git a/src/licensedcode/data/rules/jython.RULE b/src/licensedcode/data/rules/jython.RULE index cd3e650bae7..3988f5f59fe 100644 --- a/src/licensedcode/data/rules/jython.RULE +++ b/src/licensedcode/data/rules/jython.RULE @@ -1 +1,9 @@ +--- +license_expression: jython +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.jython.org/license.txt +--- + http://www.jython.org/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/jython.yml b/src/licensedcode/data/rules/jython.yml deleted file mode 100644 index a41857d3d6d..00000000000 --- a/src/licensedcode/data/rules/jython.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: jython -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.jython.org/license.txt diff --git a/src/licensedcode/data/rules/jython2.RULE b/src/licensedcode/data/rules/jython2.RULE index 2466c5dd13a..f79666b2fc9 100644 --- a/src/licensedcode/data/rules/jython2.RULE +++ b/src/licensedcode/data/rules/jython2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: jython +is_license_notice: yes +relevance: 100 +--- + originally licensed under the GNU Public License. The package is now covered by the Jython Software License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/jython2.yml b/src/licensedcode/data/rules/jython2.yml deleted file mode 100644 index 062073e1e79..00000000000 --- a/src/licensedcode/data/rules/jython2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: jython -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/jython3.RULE b/src/licensedcode/data/rules/jython3.RULE index cc5c79752eb..768d71eaa16 100644 --- a/src/licensedcode/data/rules/jython3.RULE +++ b/src/licensedcode/data/rules/jython3.RULE @@ -1,3 +1,21 @@ +--- +license_expression: jython +is_license_text: yes +minimum_coverage: 85 +ignorable_copyrights: + - Copyright (c) 1996-1999 Corporation for National Research Initiatives + - Copyright (c) 2000-2009 Jython Developers + - Copyright (c) 2007 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Jython Developers + - Python Software Foundation +ignorable_authors: + - Brian Zimmer +ignorable_urls: + - http://hdl.handle.net/1895.22/1006 +--- + A. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING JYTHON ======================================================= diff --git a/src/licensedcode/data/rules/jython3.yml b/src/licensedcode/data/rules/jython3.yml deleted file mode 100644 index f3660635edb..00000000000 --- a/src/licensedcode/data/rules/jython3.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: jython -is_license_text: yes -minimum_coverage: 85 -ignorable_copyrights: - - Copyright (c) 1996-1999 Corporation for National Research Initiatives - - Copyright (c) 2000-2009 Jython Developers - - Copyright (c) 2007 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Jython Developers - - Python Software Foundation -ignorable_authors: - - Brian Zimmer -ignorable_urls: - - http://hdl.handle.net/1895.22/1006 diff --git a/src/licensedcode/data/rules/kalle-kaukonen_5.RULE b/src/licensedcode/data/rules/kalle-kaukonen_5.RULE index ec452f92d67..6d237639181 100644 --- a/src/licensedcode/data/rules/kalle-kaukonen_5.RULE +++ b/src/licensedcode/data/rules/kalle-kaukonen_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: kalle-kaukonen +is_license_notice: yes +--- + License: Redistribution and use in source and binary forms, with or without modification, diff --git a/src/licensedcode/data/rules/kalle-kaukonen_5.yml b/src/licensedcode/data/rules/kalle-kaukonen_5.yml deleted file mode 100644 index 7007ee81bd2..00000000000 --- a/src/licensedcode/data/rules/kalle-kaukonen_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: kalle-kaukonen -is_license_notice: yes diff --git a/src/licensedcode/data/rules/kerberos_1.RULE b/src/licensedcode/data/rules/kerberos_1.RULE index 97192cfee57..560bce13516 100644 --- a/src/licensedcode/data/rules/kerberos_1.RULE +++ b/src/licensedcode/data/rules/kerberos_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: kerberos +is_license_notice: yes +minimum_coverage: 80 +--- + Export of software employing encryption from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization @@ -14,4 +20,4 @@ this software you must label your software as modified software and not distribute it in such a fashion that it might be confused with the original MIT software. M.I.T. makes no representations about the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. +without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/kerberos_1.yml b/src/licensedcode/data/rules/kerberos_1.yml deleted file mode 100644 index d67891888e1..00000000000 --- a/src/licensedcode/data/rules/kerberos_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: kerberos -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/khronos.RULE b/src/licensedcode/data/rules/khronos.RULE index ce132283c0c..8f2653220b8 100644 --- a/src/licensedcode/data/rules/khronos.RULE +++ b/src/licensedcode/data/rules/khronos.RULE @@ -1 +1,9 @@ +--- +license_expression: khronos +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.khronos.org/developers +--- + http://www.khronos.org/developers \ No newline at end of file diff --git a/src/licensedcode/data/rules/khronos.yml b/src/licensedcode/data/rules/khronos.yml deleted file mode 100644 index 8a2a90a61ba..00000000000 --- a/src/licensedcode/data/rules/khronos.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: khronos -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.khronos.org/developers diff --git a/src/licensedcode/data/rules/khronos2.RULE b/src/licensedcode/data/rules/khronos2.RULE index 77e325ab3db..a22f70c6343 100644 --- a/src/licensedcode/data/rules/khronos2.RULE +++ b/src/licensedcode/data/rules/khronos2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: khronos +is_license_notice: yes +--- + License: other ** Permission is hereby granted, free of charge, to any person obtaining a ** copy of this software and/or associated documentation files (the @@ -16,4 +21,4 @@ License: other ** 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 - ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS + ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS \ No newline at end of file diff --git a/src/licensedcode/data/rules/khronos2.yml b/src/licensedcode/data/rules/khronos2.yml deleted file mode 100644 index 776f1055b34..00000000000 --- a/src/licensedcode/data/rules/khronos2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: khronos -is_license_notice: yes diff --git a/src/licensedcode/data/rules/khronos_1.RULE b/src/licensedcode/data/rules/khronos_1.RULE index 8a09abc0f6a..95d0045c9be 100644 --- a/src/licensedcode/data/rules/khronos_1.RULE +++ b/src/licensedcode/data/rules/khronos_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: khronos +is_license_notice: yes +relevance: 99 +--- + ** Permission is hereby granted, free of charge, to any person obtaining a ** copy of this software and/or associated documentation files (the ** "Materials"), to deal in the Materials without restriction, including @@ -15,4 +21,4 @@ ** 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 - ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIA + ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIA \ No newline at end of file diff --git a/src/licensedcode/data/rules/khronos_1.yml b/src/licensedcode/data/rules/khronos_1.yml deleted file mode 100644 index a1dbd35bcca..00000000000 --- a/src/licensedcode/data/rules/khronos_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: khronos -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/khronos_2.RULE b/src/licensedcode/data/rules/khronos_2.RULE index e53bcc2e6c5..c5fece2134e 100644 --- a/src/licensedcode/data/rules/khronos_2.RULE +++ b/src/licensedcode/data/rules/khronos_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: khronos +is_license_notice: yes +relevance: 100 +notes: truncated text seen in OpenOffice +--- + ** Permission is hereby granted, free of charge, to any person obtaining a ** copy of this software and/or associated documentation files (the ** "Materials"), to deal in the Materials without restriction, including @@ -15,4 +22,4 @@ ** 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 - ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE + ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE \ No newline at end of file diff --git a/src/licensedcode/data/rules/khronos_2.yml b/src/licensedcode/data/rules/khronos_2.yml deleted file mode 100644 index f6648da4c9a..00000000000 --- a/src/licensedcode/data/rules/khronos_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: khronos -is_license_notice: yes -relevance: 100 -notes: truncated text seen in OpenOffice diff --git a/src/licensedcode/data/rules/khronos_3.RULE b/src/licensedcode/data/rules/khronos_3.RULE index 41f1c26ef79..9f8e7bdb6ef 100644 --- a/src/licensedcode/data/rules/khronos_3.RULE +++ b/src/licensedcode/data/rules/khronos_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: khronos +is_license_notice: yes +relevance: 99 +--- + License: other ** Permission is hereby granted, free of charge, to any person obtaining a ** copy of this software and/or associated documentation files (the diff --git a/src/licensedcode/data/rules/khronos_3.yml b/src/licensedcode/data/rules/khronos_3.yml deleted file mode 100644 index a1dbd35bcca..00000000000 --- a/src/licensedcode/data/rules/khronos_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: khronos -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/kumar-robotics_1.RULE b/src/licensedcode/data/rules/kumar-robotics_1.RULE index b57ed8fed4b..00bf0d9f842 100644 --- a/src/licensedcode/data/rules/kumar-robotics_1.RULE +++ b/src/licensedcode/data/rules/kumar-robotics_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: kumar-robotics +is_license_text: yes +--- + This code is 100% free. Use it any where you want. Rewrite it, restructure it, whatever. If you can write software that makes money off of it, good for you. I kinda like capitalism. diff --git a/src/licensedcode/data/rules/kumar-robotics_1.yml b/src/licensedcode/data/rules/kumar-robotics_1.yml deleted file mode 100644 index 2617ee3d772..00000000000 --- a/src/licensedcode/data/rules/kumar-robotics_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: kumar-robotics -is_license_text: yes diff --git a/src/licensedcode/data/rules/lal-1.2_1.RULE b/src/licensedcode/data/rules/lal-1.2_1.RULE index 367d0052672..7726cf106db 100644 --- a/src/licensedcode/data/rules/lal-1.2_1.RULE +++ b/src/licensedcode/data/rules/lal-1.2_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lal-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LAL-1.2 +--- + https://licenses.nuget.org/LAL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lal-1.2_1.yml b/src/licensedcode/data/rules/lal-1.2_1.yml deleted file mode 100644 index 45683366819..00000000000 --- a/src/licensedcode/data/rules/lal-1.2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lal-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LAL-1.2 diff --git a/src/licensedcode/data/rules/lal-1.2_2.RULE b/src/licensedcode/data/rules/lal-1.2_2.RULE index c29b69a8a60..893f0c09d98 100644 --- a/src/licensedcode/data/rules/lal-1.2_2.RULE +++ b/src/licensedcode/data/rules/lal-1.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lal-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LAL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lal-1.2_2.yml b/src/licensedcode/data/rules/lal-1.2_2.yml deleted file mode 100644 index 71b960f9f0a..00000000000 --- a/src/licensedcode/data/rules/lal-1.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lal-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lal-1.2_3.RULE b/src/licensedcode/data/rules/lal-1.2_3.RULE index a9928ff7903..ed74419e38e 100644 --- a/src/licensedcode/data/rules/lal-1.2_3.RULE +++ b/src/licensedcode/data/rules/lal-1.2_3.RULE @@ -1 +1,9 @@ +--- +license_expression: lal-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LAL-1.2 +--- + {{LAL-1.2}} https://spdx.org/licenses/LAL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lal-1.2_3.yml b/src/licensedcode/data/rules/lal-1.2_3.yml deleted file mode 100644 index 63d7d8648ff..00000000000 --- a/src/licensedcode/data/rules/lal-1.2_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lal-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LAL-1.2 diff --git a/src/licensedcode/data/rules/lal-1.2_4.RULE b/src/licensedcode/data/rules/lal-1.2_4.RULE index bcca40fdb14..ba399d3217d 100644 --- a/src/licensedcode/data/rules/lal-1.2_4.RULE +++ b/src/licensedcode/data/rules/lal-1.2_4.RULE @@ -1 +1,9 @@ +--- +license_expression: lal-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LAL-1.2 +--- + LICENSE {{LAL-1.2}} https://spdx.org/licenses/LAL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lal-1.2_4.yml b/src/licensedcode/data/rules/lal-1.2_4.yml deleted file mode 100644 index 63d7d8648ff..00000000000 --- a/src/licensedcode/data/rules/lal-1.2_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lal-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LAL-1.2 diff --git a/src/licensedcode/data/rules/lal-1.3_1.RULE b/src/licensedcode/data/rules/lal-1.3_1.RULE index a43166837dd..a891b185e3c 100644 --- a/src/licensedcode/data/rules/lal-1.3_1.RULE +++ b/src/licensedcode/data/rules/lal-1.3_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lal-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LAL-1.3 +--- + https://licenses.nuget.org/LAL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lal-1.3_1.yml b/src/licensedcode/data/rules/lal-1.3_1.yml deleted file mode 100644 index d0d94fb03ac..00000000000 --- a/src/licensedcode/data/rules/lal-1.3_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lal-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LAL-1.3 diff --git a/src/licensedcode/data/rules/lal-1.3_2.RULE b/src/licensedcode/data/rules/lal-1.3_2.RULE index 08e7574149b..854ce0c9137 100644 --- a/src/licensedcode/data/rules/lal-1.3_2.RULE +++ b/src/licensedcode/data/rules/lal-1.3_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lal-1.3 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LAL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lal-1.3_2.yml b/src/licensedcode/data/rules/lal-1.3_2.yml deleted file mode 100644 index 873b46e5510..00000000000 --- a/src/licensedcode/data/rules/lal-1.3_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lal-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lal-1.3_3.RULE b/src/licensedcode/data/rules/lal-1.3_3.RULE index 5cf1076628e..b136f07b3ff 100644 --- a/src/licensedcode/data/rules/lal-1.3_3.RULE +++ b/src/licensedcode/data/rules/lal-1.3_3.RULE @@ -1 +1,9 @@ +--- +license_expression: lal-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LAL-1.3 +--- + {{LAL-1.3}} https://spdx.org/licenses/LAL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lal-1.3_3.yml b/src/licensedcode/data/rules/lal-1.3_3.yml deleted file mode 100644 index 6c17ff02fdb..00000000000 --- a/src/licensedcode/data/rules/lal-1.3_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lal-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LAL-1.3 diff --git a/src/licensedcode/data/rules/lal-1.3_4.RULE b/src/licensedcode/data/rules/lal-1.3_4.RULE index c53c6c3ae39..242ebca3007 100644 --- a/src/licensedcode/data/rules/lal-1.3_4.RULE +++ b/src/licensedcode/data/rules/lal-1.3_4.RULE @@ -1 +1,9 @@ +--- +license_expression: lal-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LAL-1.3 +--- + LICENSE {{LAL-1.3}} https://spdx.org/licenses/LAL-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lal-1.3_4.yml b/src/licensedcode/data/rules/lal-1.3_4.yml deleted file mode 100644 index 6c17ff02fdb..00000000000 --- a/src/licensedcode/data/rules/lal-1.3_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lal-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LAL-1.3 diff --git a/src/licensedcode/data/rules/larabie.RULE b/src/licensedcode/data/rules/larabie.RULE index 7c318bda1c1..54d5ec0d52d 100644 --- a/src/licensedcode/data/rules/larabie.RULE +++ b/src/licensedcode/data/rules/larabie.RULE @@ -1,3 +1,10 @@ +--- +license_expression: larabie +is_license_notice: yes +ignorable_emails: + - rlarabie@hotmail.com +--- + ------------------------------- Larabie Fonts End-user license agreement software product from Larabie Fonts --------------------------------------------------- diff --git a/src/licensedcode/data/rules/larabie.yml b/src/licensedcode/data/rules/larabie.yml deleted file mode 100644 index 550c15518c8..00000000000 --- a/src/licensedcode/data/rules/larabie.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: larabie -is_license_notice: yes -ignorable_emails: - - rlarabie@hotmail.com diff --git a/src/licensedcode/data/rules/latex2e_1.RULE b/src/licensedcode/data/rules/latex2e_1.RULE index 89f84e6feb2..c32beb499b7 100644 --- a/src/licensedcode/data/rules/latex2e_1.RULE +++ b/src/licensedcode/data/rules/latex2e_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e +is_license_notice: yes +relevance: 95 +notes: there is some extra wording added +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice @@ -12,4 +19,4 @@ Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be included in translations approved by the Free Software Foundation instead of in -the original English. +the original English. \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_1.yml b/src/licensedcode/data/rules/latex2e_1.yml deleted file mode 100644 index 944df6537ec..00000000000 --- a/src/licensedcode/data/rules/latex2e_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e -is_license_notice: yes -relevance: 95 -notes: there is some extra wording added diff --git a/src/licensedcode/data/rules/latex2e_10.RULE b/src/licensedcode/data/rules/latex2e_10.RULE index 7d22b37ef1c..fbbf973e038 100644 --- a/src/licensedcode/data/rules/latex2e_10.RULE +++ b/src/licensedcode/data/rules/latex2e_10.RULE @@ -1 +1,10 @@ +--- +license_expression: latex2e +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Latex2e License \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_10.yml b/src/licensedcode/data/rules/latex2e_10.yml deleted file mode 100644 index 433c09dd347..00000000000 --- a/src/licensedcode/data/rules/latex2e_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/latex2e_11.RULE b/src/licensedcode/data/rules/latex2e_11.RULE index bbe99c6e254..34eacdaf81a 100644 --- a/src/licensedcode/data/rules/latex2e_11.RULE +++ b/src/licensedcode/data/rules/latex2e_11.RULE @@ -1 +1,10 @@ +--- +license_expression: latex2e +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Latex2e Latex2e License \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_11.yml b/src/licensedcode/data/rules/latex2e_11.yml deleted file mode 100644 index 433c09dd347..00000000000 --- a/src/licensedcode/data/rules/latex2e_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/latex2e_12.RULE b/src/licensedcode/data/rules/latex2e_12.RULE index 0e61f09bed6..90e80a7f8cd 100644 --- a/src/licensedcode/data/rules/latex2e_12.RULE +++ b/src/licensedcode/data/rules/latex2e_12.RULE @@ -1 +1,10 @@ +--- +license_expression: latex2e +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Latex2e License Latex2e \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_12.yml b/src/licensedcode/data/rules/latex2e_12.yml deleted file mode 100644 index 433c09dd347..00000000000 --- a/src/licensedcode/data/rules/latex2e_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/latex2e_13.RULE b/src/licensedcode/data/rules/latex2e_13.RULE index ed4559c9d11..20a440e5cce 100644 --- a/src/licensedcode/data/rules/latex2e_13.RULE +++ b/src/licensedcode/data/rules/latex2e_13.RULE @@ -1 +1,10 @@ +--- +license_expression: latex2e +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Latex2e \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_13.yml b/src/licensedcode/data/rules/latex2e_13.yml deleted file mode 100644 index 44b1e02c96e..00000000000 --- a/src/licensedcode/data/rules/latex2e_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: latex2e -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/latex2e_14.RULE b/src/licensedcode/data/rules/latex2e_14.RULE index 20eebd4f7c0..0d74a3d173a 100644 --- a/src/licensedcode/data/rules/latex2e_14.RULE +++ b/src/licensedcode/data/rules/latex2e_14.RULE @@ -1 +1,10 @@ +--- +license_expression: latex2e +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Latex2e License \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_14.yml b/src/licensedcode/data/rules/latex2e_14.yml deleted file mode 100644 index 44b1e02c96e..00000000000 --- a/src/licensedcode/data/rules/latex2e_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: latex2e -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/latex2e_15.RULE b/src/licensedcode/data/rules/latex2e_15.RULE index c4a052b58ec..8a7f5436640 100644 --- a/src/licensedcode/data/rules/latex2e_15.RULE +++ b/src/licensedcode/data/rules/latex2e_15.RULE @@ -1 +1,10 @@ +--- +license_expression: latex2e +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Latex2e \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_15.yml b/src/licensedcode/data/rules/latex2e_15.yml deleted file mode 100644 index 44b1e02c96e..00000000000 --- a/src/licensedcode/data/rules/latex2e_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: latex2e -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/latex2e_16.RULE b/src/licensedcode/data/rules/latex2e_16.RULE index af6abdddf0d..f3de02097cd 100644 --- a/src/licensedcode/data/rules/latex2e_16.RULE +++ b/src/licensedcode/data/rules/latex2e_16.RULE @@ -1 +1,9 @@ +--- +license_expression: latex2e +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Latex2e +--- + https://licenses.nuget.org/Latex2e \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_16.yml b/src/licensedcode/data/rules/latex2e_16.yml deleted file mode 100644 index 31119d9b56d..00000000000 --- a/src/licensedcode/data/rules/latex2e_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Latex2e diff --git a/src/licensedcode/data/rules/latex2e_17.RULE b/src/licensedcode/data/rules/latex2e_17.RULE index af1974ab48a..87b905205af 100644 --- a/src/licensedcode/data/rules/latex2e_17.RULE +++ b/src/licensedcode/data/rules/latex2e_17.RULE @@ -1 +1,7 @@ +--- +license_expression: latex2e +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Latex2e \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_17.yml b/src/licensedcode/data/rules/latex2e_17.yml deleted file mode 100644 index 55af656a48e..00000000000 --- a/src/licensedcode/data/rules/latex2e_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/latex2e_18.RULE b/src/licensedcode/data/rules/latex2e_18.RULE index fa19232f028..2788deb4b7d 100644 --- a/src/licensedcode/data/rules/latex2e_18.RULE +++ b/src/licensedcode/data/rules/latex2e_18.RULE @@ -1 +1,9 @@ +--- +license_expression: latex2e +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Latex2e +--- + LICENSE {{Latex2e}} https://spdx.org/licenses/Latex2e \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_18.yml b/src/licensedcode/data/rules/latex2e_18.yml deleted file mode 100644 index 26920d7b6d2..00000000000 --- a/src/licensedcode/data/rules/latex2e_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Latex2e diff --git a/src/licensedcode/data/rules/latex2e_19.RULE b/src/licensedcode/data/rules/latex2e_19.RULE index 5e4f68f0965..eb6235ba154 100644 --- a/src/licensedcode/data/rules/latex2e_19.RULE +++ b/src/licensedcode/data/rules/latex2e_19.RULE @@ -1 +1,9 @@ +--- +license_expression: latex2e +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Latex2e +--- + {{Latex2e}} https://spdx.org/licenses/Latex2e \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_19.yml b/src/licensedcode/data/rules/latex2e_19.yml deleted file mode 100644 index 26920d7b6d2..00000000000 --- a/src/licensedcode/data/rules/latex2e_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Latex2e diff --git a/src/licensedcode/data/rules/latex2e_2.RULE b/src/licensedcode/data/rules/latex2e_2.RULE index 63bccf64396..345c2617db8 100644 --- a/src/licensedcode/data/rules/latex2e_2.RULE +++ b/src/licensedcode/data/rules/latex2e_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e +is_license_notice: yes +relevance: 99 +notes: Seen in bash doc +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. diff --git a/src/licensedcode/data/rules/latex2e_2.yml b/src/licensedcode/data/rules/latex2e_2.yml deleted file mode 100644 index 8dd96bc49c3..00000000000 --- a/src/licensedcode/data/rules/latex2e_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e -is_license_notice: yes -relevance: 99 -notes: Seen in bash doc diff --git a/src/licensedcode/data/rules/latex2e_3.RULE b/src/licensedcode/data/rules/latex2e_3.RULE index 162a2995b42..8f5a41907f8 100644 --- a/src/licensedcode/data/rules/latex2e_3.RULE +++ b/src/licensedcode/data/rules/latex2e_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e +is_license_notice: yes +relevance: 99 +notes: Seen in bash doc +--- + Permission is granted to process this file through Tex and print the results, provided the printed document carries copying permission notice identical to this one except for the removal of this paragraph (this diff --git a/src/licensedcode/data/rules/latex2e_3.yml b/src/licensedcode/data/rules/latex2e_3.yml deleted file mode 100644 index 8dd96bc49c3..00000000000 --- a/src/licensedcode/data/rules/latex2e_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e -is_license_notice: yes -relevance: 99 -notes: Seen in bash doc diff --git a/src/licensedcode/data/rules/latex2e_4.RULE b/src/licensedcode/data/rules/latex2e_4.RULE index deebc4e075f..37bc594b751 100644 --- a/src/licensedcode/data/rules/latex2e_4.RULE +++ b/src/licensedcode/data/rules/latex2e_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e +is_license_notice: yes +relevance: 95 +notes: there is some extra wording added +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. @@ -10,4 +17,4 @@ permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved -by the Foundation. +by the Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_4.yml b/src/licensedcode/data/rules/latex2e_4.yml deleted file mode 100644 index 944df6537ec..00000000000 --- a/src/licensedcode/data/rules/latex2e_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e -is_license_notice: yes -relevance: 95 -notes: there is some extra wording added diff --git a/src/licensedcode/data/rules/latex2e_5.RULE b/src/licensedcode/data/rules/latex2e_5.RULE index b2e494b7320..17b76386c2e 100644 --- a/src/licensedcode/data/rules/latex2e_5.RULE +++ b/src/licensedcode/data/rules/latex2e_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e +is_license_notice: yes +relevance: 95 +notes: there is some extra wording added +--- + Permission is granted to make and distribute verbatim copies of this document provided the copyright notice and this permission notice are preserved on all copies. diff --git a/src/licensedcode/data/rules/latex2e_5.yml b/src/licensedcode/data/rules/latex2e_5.yml deleted file mode 100644 index 944df6537ec..00000000000 --- a/src/licensedcode/data/rules/latex2e_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e -is_license_notice: yes -relevance: 95 -notes: there is some extra wording added diff --git a/src/licensedcode/data/rules/latex2e_6.RULE b/src/licensedcode/data/rules/latex2e_6.RULE index 30185fd15f8..31cdd05f55d 100644 --- a/src/licensedcode/data/rules/latex2e_6.RULE +++ b/src/licensedcode/data/rules/latex2e_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e +is_license_notice: yes +relevance: 85 +notes: there is some extra wording added and an ignore paragraph +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. @@ -17,4 +24,4 @@ permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved -by the author. +by the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_6.yml b/src/licensedcode/data/rules/latex2e_6.yml deleted file mode 100644 index 43fc4a32cdb..00000000000 --- a/src/licensedcode/data/rules/latex2e_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e -is_license_notice: yes -relevance: 85 -notes: there is some extra wording added and an ignore paragraph diff --git a/src/licensedcode/data/rules/latex2e_7.RULE b/src/licensedcode/data/rules/latex2e_7.RULE index 72732d160d4..5f3f44c1eff 100644 --- a/src/licensedcode/data/rules/latex2e_7.RULE +++ b/src/licensedcode/data/rules/latex2e_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e +is_license_notice: yes +relevance: 99 +notes: Seen in bash doc +--- + Permission is granted to process this file through TeX and print the results, provided the printed document carries copying permission notice identical to this one except for the removal of this paragraph diff --git a/src/licensedcode/data/rules/latex2e_7.yml b/src/licensedcode/data/rules/latex2e_7.yml deleted file mode 100644 index 8dd96bc49c3..00000000000 --- a/src/licensedcode/data/rules/latex2e_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e -is_license_notice: yes -relevance: 99 -notes: Seen in bash doc diff --git a/src/licensedcode/data/rules/latex2e_8.RULE b/src/licensedcode/data/rules/latex2e_8.RULE index 74fcf98ae9f..ec97981df9b 100644 --- a/src/licensedcode/data/rules/latex2e_8.RULE +++ b/src/licensedcode/data/rules/latex2e_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e +is_license_notice: yes +relevance: 85 +notes: there is some extra wording added and an ignore paragraph +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. @@ -15,4 +22,4 @@ Permission is granted to make and distribute verbatim copies of Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved - by the Foundation. + by the Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_8.yml b/src/licensedcode/data/rules/latex2e_8.yml deleted file mode 100644 index 43fc4a32cdb..00000000000 --- a/src/licensedcode/data/rules/latex2e_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e -is_license_notice: yes -relevance: 85 -notes: there is some extra wording added and an ignore paragraph diff --git a/src/licensedcode/data/rules/latex2e_9.RULE b/src/licensedcode/data/rules/latex2e_9.RULE index c4eb102166c..5c145735dad 100644 --- a/src/licensedcode/data/rules/latex2e_9.RULE +++ b/src/licensedcode/data/rules/latex2e_9.RULE @@ -1 +1,10 @@ +--- +license_expression: latex2e +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Latex2e License \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_9.yml b/src/licensedcode/data/rules/latex2e_9.yml deleted file mode 100644 index 433c09dd347..00000000000 --- a/src/licensedcode/data/rules/latex2e_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/latex2e_and_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/latex2e_and_gpl-1.0-plus_1.RULE index c84354989e6..c4d1c8e80d0 100644 --- a/src/licensedcode/data/rules/latex2e_and_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/latex2e_and_gpl-1.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: latex2e AND gpl-1.0-plus +is_license_notice: yes +relevance: 90 +notes: mixed and complex notice +--- + Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the section entitled ``GNU General Public License'' is included exactly as diff --git a/src/licensedcode/data/rules/latex2e_and_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/latex2e_and_gpl-1.0-plus_1.yml deleted file mode 100644 index 80d45a00fa4..00000000000 --- a/src/licensedcode/data/rules/latex2e_and_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: latex2e AND gpl-1.0-plus -is_license_notice: yes -relevance: 90 -notes: mixed and complex notice diff --git a/src/licensedcode/data/rules/latex2e_url_1.RULE b/src/licensedcode/data/rules/latex2e_url_1.RULE index 1c7e97002a4..93993a17e1e 100644 --- a/src/licensedcode/data/rules/latex2e_url_1.RULE +++ b/src/licensedcode/data/rules/latex2e_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: latex2e +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/latex2e +--- + https://spdx.org/licenses/latex2e \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_url_1.yml b/src/licensedcode/data/rules/latex2e_url_1.yml deleted file mode 100644 index 0188f5d774c..00000000000 --- a/src/licensedcode/data/rules/latex2e_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/latex2e diff --git a/src/licensedcode/data/rules/latex2e_url_2.RULE b/src/licensedcode/data/rules/latex2e_url_2.RULE index 42aab9e5047..19ec999e262 100644 --- a/src/licensedcode/data/rules/latex2e_url_2.RULE +++ b/src/licensedcode/data/rules/latex2e_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: latex2e +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/latex2e.html +--- + https://spdx.org/licenses/latex2e.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/latex2e_url_2.yml b/src/licensedcode/data/rules/latex2e_url_2.yml deleted file mode 100644 index 96a0b0f1222..00000000000 --- a/src/licensedcode/data/rules/latex2e_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: latex2e -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/latex2e.html diff --git a/src/licensedcode/data/rules/lavantech.RULE b/src/licensedcode/data/rules/lavantech.RULE index 32d23959d21..213c3399cc9 100644 --- a/src/licensedcode/data/rules/lavantech.RULE +++ b/src/licensedcode/data/rules/lavantech.RULE @@ -1 +1,9 @@ +--- +license_expression: lavantech +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.lavantech.com/license.shtml +--- + http://www.lavantech.com/license.shtml \ No newline at end of file diff --git a/src/licensedcode/data/rules/lavantech.yml b/src/licensedcode/data/rules/lavantech.yml deleted file mode 100644 index 3ba6eb958a9..00000000000 --- a/src/licensedcode/data/rules/lavantech.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lavantech -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.lavantech.com/license.shtml diff --git a/src/licensedcode/data/rules/lbnl-bsd_1.RULE b/src/licensedcode/data/rules/lbnl-bsd_1.RULE index 0f7057171f1..128f3e25c8b 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_1.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lbnl-bsd +is_license_notice: yes +relevance: 100 +referenced_filenames: + - BSD-LBNL-License.doc + - LICENSE.txt +--- + * By downloading or using this software you are agreeing to the modified * BSD license "BSD-LBNL-License.doc" (see LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_1.yml b/src/licensedcode/data/rules/lbnl-bsd_1.yml deleted file mode 100644 index 3ca9749da7e..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lbnl-bsd -is_license_notice: yes -relevance: 100 -referenced_filenames: - - BSD-LBNL-License.doc - - LICENSE.txt diff --git a/src/licensedcode/data/rules/lbnl-bsd_10.RULE b/src/licensedcode/data/rules/lbnl-bsd_10.RULE index c68a035f8b1..28415ba9e47 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_10.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_10.RULE @@ -1 +1,10 @@ +--- +license_expression: lbnl-bsd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-LBNL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_10.yml b/src/licensedcode/data/rules/lbnl-bsd_10.yml deleted file mode 100644 index b02fda7d7c9..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lbnl-bsd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lbnl-bsd_11.RULE b/src/licensedcode/data/rules/lbnl-bsd_11.RULE index f06e3d312bc..90799094783 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_11.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_11.RULE @@ -1 +1,10 @@ +--- +license_expression: lbnl-bsd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Lawrence Berkeley National Labs BSD variant license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_11.yml b/src/licensedcode/data/rules/lbnl-bsd_11.yml deleted file mode 100644 index b02fda7d7c9..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lbnl-bsd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lbnl-bsd_12.RULE b/src/licensedcode/data/rules/lbnl-bsd_12.RULE index dbf6339899a..ebeb700aa3b 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_12.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_12.RULE @@ -1 +1,10 @@ +--- +license_expression: lbnl-bsd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-LBNL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_12.yml b/src/licensedcode/data/rules/lbnl-bsd_12.yml deleted file mode 100644 index b02fda7d7c9..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lbnl-bsd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lbnl-bsd_13.RULE b/src/licensedcode/data/rules/lbnl-bsd_13.RULE index b2de02275b5..be555df34e1 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_13.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_13.RULE @@ -1 +1,9 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-LBNL +--- + https://licenses.nuget.org/BSD-3-Clause-LBNL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_13.yml b/src/licensedcode/data/rules/lbnl-bsd_13.yml deleted file mode 100644 index 0defc2e46f2..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-LBNL diff --git a/src/licensedcode/data/rules/lbnl-bsd_14.RULE b/src/licensedcode/data/rules/lbnl-bsd_14.RULE index 0e795eecfe1..dd4436b712d 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_14.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_14.RULE @@ -1 +1,7 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-LBNL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_14.yml b/src/licensedcode/data/rules/lbnl-bsd_14.yml deleted file mode 100644 index 5a1fb22b20b..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lbnl-bsd_15.RULE b/src/licensedcode/data/rules/lbnl-bsd_15.RULE index 313700c2f29..647ab2faddc 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_15.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_15.RULE @@ -1 +1,9 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-LBNL +--- + {{BSD-3-Clause-LBNL}} https://spdx.org/licenses/BSD-3-Clause-LBNL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_15.yml b/src/licensedcode/data/rules/lbnl-bsd_15.yml deleted file mode 100644 index 8a8f2fa0cf6..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-LBNL diff --git a/src/licensedcode/data/rules/lbnl-bsd_16.RULE b/src/licensedcode/data/rules/lbnl-bsd_16.RULE index 57869d09999..f093ff47956 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_16.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_16.RULE @@ -1 +1,9 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-LBNL +--- + LICENSE {{BSD-3-Clause-LBNL}} https://spdx.org/licenses/BSD-3-Clause-LBNL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_16.yml b/src/licensedcode/data/rules/lbnl-bsd_16.yml deleted file mode 100644 index 8a8f2fa0cf6..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-LBNL diff --git a/src/licensedcode/data/rules/lbnl-bsd_2.RULE b/src/licensedcode/data/rules/lbnl-bsd_2.RULE index 7d42489b960..a1d092d546f 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_2.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lbnl-bsd +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/lbnl-bsd_2.yml b/src/licensedcode/data/rules/lbnl-bsd_2.yml deleted file mode 100644 index ef553bbe1b6..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lbnl-bsd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lbnl-bsd_3.RULE b/src/licensedcode/data/rules/lbnl-bsd_3.RULE index 0f0f3f1fb93..7afc4b69269 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_3.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lbnl-bsd +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/lbnl-bsd_3.yml b/src/licensedcode/data/rules/lbnl-bsd_3.yml deleted file mode 100644 index ef553bbe1b6..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lbnl-bsd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lbnl-bsd_4.RULE b/src/licensedcode/data/rules/lbnl-bsd_4.RULE index fe3a55d2bb4..b21070267a8 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_4.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lbnl-bsd +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley + National Laboratory +ignorable_holders: + - The Regents of the University of California, through Lawrence Berkeley National Laboratory +--- + Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved. diff --git a/src/licensedcode/data/rules/lbnl-bsd_4.yml b/src/licensedcode/data/rules/lbnl-bsd_4.yml deleted file mode 100644 index 8ddf68a16ea..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lbnl-bsd -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2003, The Regents of the University of California, through Lawrence Berkeley - National Laboratory -ignorable_holders: - - The Regents of the University of California, through Lawrence Berkeley National Laboratory diff --git a/src/licensedcode/data/rules/lbnl-bsd_5.RULE b/src/licensedcode/data/rules/lbnl-bsd_5.RULE index 1fe54924442..5be2acbc9b7 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_5.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lbnl-bsd +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/lbnl-bsd_5.yml b/src/licensedcode/data/rules/lbnl-bsd_5.yml deleted file mode 100644 index ef553bbe1b6..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lbnl-bsd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lbnl-bsd_6.RULE b/src/licensedcode/data/rules/lbnl-bsd_6.RULE index ab550c6eac4..6da5f4499a7 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_6.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_6.RULE @@ -1 +1,8 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +--- + BSD-3-Clause-LBNL Lawrence Berkeley National Labs BSD variant license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_6.yml b/src/licensedcode/data/rules/lbnl-bsd_6.yml deleted file mode 100644 index 4f8796ca1bd..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lbnl-bsd_7.RULE b/src/licensedcode/data/rules/lbnl-bsd_7.RULE index 804434f1363..caaa41cf7b5 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_7.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_7.RULE @@ -1 +1,8 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +--- + Lawrence Berkeley National Labs BSD variant license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_7.yml b/src/licensedcode/data/rules/lbnl-bsd_7.yml deleted file mode 100644 index 4f8796ca1bd..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lbnl-bsd_8.RULE b/src/licensedcode/data/rules/lbnl-bsd_8.RULE index 0defe692593..6e127c1b51e 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_8.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_8.RULE @@ -1 +1,10 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Lawrence Berkeley National Labs BSD variant license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_8.yml b/src/licensedcode/data/rules/lbnl-bsd_8.yml deleted file mode 100644 index c171ecb36e0..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lbnl-bsd_9.RULE b/src/licensedcode/data/rules/lbnl-bsd_9.RULE index e81f6c20c50..bbb1a19796a 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_9.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_9.RULE @@ -1 +1,10 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Lawrence Berkeley National Labs BSD variant license BSD-3-Clause-LBNL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_9.yml b/src/licensedcode/data/rules/lbnl-bsd_9.yml deleted file mode 100644 index c171ecb36e0..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lbnl-bsd_url_1.RULE b/src/licensedcode/data/rules/lbnl-bsd_url_1.RULE index 4e8b94e2ae9..82299a7e341 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_url_1.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-lbnl +--- + https://spdx.org/licenses/bsd-3-clause-lbnl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_url_1.yml b/src/licensedcode/data/rules/lbnl-bsd_url_1.yml deleted file mode 100644 index 7d7fb74f5f4..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-lbnl diff --git a/src/licensedcode/data/rules/lbnl-bsd_url_2.RULE b/src/licensedcode/data/rules/lbnl-bsd_url_2.RULE index d9cd1524ea0..80fc6de5d87 100644 --- a/src/licensedcode/data/rules/lbnl-bsd_url_2.RULE +++ b/src/licensedcode/data/rules/lbnl-bsd_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-lbnl.html +--- + https://spdx.org/licenses/bsd-3-clause-lbnl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lbnl-bsd_url_2.yml b/src/licensedcode/data/rules/lbnl-bsd_url_2.yml deleted file mode 100644 index b11aef369bd..00000000000 --- a/src/licensedcode/data/rules/lbnl-bsd_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-lbnl.html diff --git a/src/licensedcode/data/rules/ldpgpl-1_1.RULE b/src/licensedcode/data/rules/ldpgpl-1_1.RULE index 900a9f59e7b..1cc411eaf69 100644 --- a/src/licensedcode/data/rules/ldpgpl-1_1.RULE +++ b/src/licensedcode/data/rules/ldpgpl-1_1.RULE @@ -1 +1,7 @@ -This file may be copied under the conditions described in the LDP GENERAL PUBLIC LICENSE, Version 1, September 1998 that should have been distributed together with this file. +--- +license_expression: ldpgpl-1 +is_license_notice: yes +relevance: 100 +--- + +This file may be copied under the conditions described in the LDP GENERAL PUBLIC LICENSE, Version 1, September 1998 that should have been distributed together with this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ldpgpl-1_1.yml b/src/licensedcode/data/rules/ldpgpl-1_1.yml deleted file mode 100644 index 86510c92f56..00000000000 --- a/src/licensedcode/data/rules/ldpgpl-1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ldpgpl-1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ldpgpl-1a_1.RULE b/src/licensedcode/data/rules/ldpgpl-1a_1.RULE index 60a8c44355e..240b7139edc 100644 --- a/src/licensedcode/data/rules/ldpgpl-1a_1.RULE +++ b/src/licensedcode/data/rules/ldpgpl-1a_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ldpgpl-1a +is_license_text: yes +--- + .\" You may copy, distribute and modify under the terms of the LDP General .\" Public License as specified in the LICENSE file that comes with the .\" gnumaniak distribution diff --git a/src/licensedcode/data/rules/ldpgpl-1a_1.yml b/src/licensedcode/data/rules/ldpgpl-1a_1.yml deleted file mode 100644 index 12008eeb431..00000000000 --- a/src/licensedcode/data/rules/ldpgpl-1a_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ldpgpl-1a -is_license_text: yes diff --git a/src/licensedcode/data/rules/ldpgpl-1a_2.RULE b/src/licensedcode/data/rules/ldpgpl-1a_2.RULE index c3dd9131079..c7a9baa5b9d 100644 --- a/src/licensedcode/data/rules/ldpgpl-1a_2.RULE +++ b/src/licensedcode/data/rules/ldpgpl-1a_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ldpgpl-1a +is_license_text: yes +--- + .\" You may copy, distribute and modify under the terms of the LDP General .\" Public License as specified in the LICENSE file that comes with the -.\" gnumaniak distribution +.\" gnumaniak distribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/ldpgpl-1a_2.yml b/src/licensedcode/data/rules/ldpgpl-1a_2.yml deleted file mode 100644 index 12008eeb431..00000000000 --- a/src/licensedcode/data/rules/ldpgpl-1a_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ldpgpl-1a -is_license_text: yes diff --git a/src/licensedcode/data/rules/ldpgpl-1a_3.RULE b/src/licensedcode/data/rules/ldpgpl-1a_3.RULE index f835adcf8dd..adaf1156296 100644 --- a/src/licensedcode/data/rules/ldpgpl-1a_3.RULE +++ b/src/licensedcode/data/rules/ldpgpl-1a_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ldpgpl-1a +is_license_reference: yes +relevance: 99 +--- + LDP General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ldpgpl-1a_3.yml b/src/licensedcode/data/rules/ldpgpl-1a_3.yml deleted file mode 100644 index a14f29602a4..00000000000 --- a/src/licensedcode/data/rules/ldpgpl-1a_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ldpgpl-1a -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lead-in_unknown_2.RULE b/src/licensedcode/data/rules/lead-in_unknown_2.RULE index efd42f12520..9c1b938f835 100644 --- a/src/licensedcode/data/rules/lead-in_unknown_2.RULE +++ b/src/licensedcode/data/rules/lead-in_unknown_2.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + This software is covered under the following copyright: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lead-in_unknown_2.yml b/src/licensedcode/data/rules/lead-in_unknown_2.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/lead-in_unknown_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lead-in_unknown_30.RULE b/src/licensedcode/data/rules/lead-in_unknown_30.RULE index f2e8a35d1c9..82fb705bbb7 100644 --- a/src/licensedcode/data/rules/lead-in_unknown_30.RULE +++ b/src/licensedcode/data/rules/lead-in_unknown_30.RULE @@ -1 +1,7 @@ -Dual licensed under \ No newline at end of file +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + +Dual licensed under \ No newline at end of file diff --git a/src/licensedcode/data/rules/lead-in_unknown_30.yml b/src/licensedcode/data/rules/lead-in_unknown_30.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/lead-in_unknown_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lead-in_unknown_31.RULE b/src/licensedcode/data/rules/lead-in_unknown_31.RULE index c84545a477c..5dc3a58db00 100644 --- a/src/licensedcode/data/rules/lead-in_unknown_31.RULE +++ b/src/licensedcode/data/rules/lead-in_unknown_31.RULE @@ -1 +1,7 @@ -Dual licensed under license +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + +Dual licensed under license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lead-in_unknown_31.yml b/src/licensedcode/data/rules/lead-in_unknown_31.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/lead-in_unknown_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lead-in_unknown_43.RULE b/src/licensedcode/data/rules/lead-in_unknown_43.RULE index 84af7868f57..fe40deb0434 100644 --- a/src/licensedcode/data/rules/lead-in_unknown_43.RULE +++ b/src/licensedcode/data/rules/lead-in_unknown_43.RULE @@ -1 +1,8 @@ -cc:license +--- +license_expression: unknown-license-reference +is_license_tag: yes +relevance: 60 +notes: Creative commons tag seen in RDF or XML documents +--- + +cc:license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lead-in_unknown_43.yml b/src/licensedcode/data/rules/lead-in_unknown_43.yml deleted file mode 100644 index 1df09a83715..00000000000 --- a/src/licensedcode/data/rules/lead-in_unknown_43.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_tag: yes -relevance: 60 -notes: Creative commons tag seen in RDF or XML documents diff --git a/src/licensedcode/data/rules/leptonica_1.RULE b/src/licensedcode/data/rules/leptonica_1.RULE index 21792b998ae..0473bb80360 100644 --- a/src/licensedcode/data/rules/leptonica_1.RULE +++ b/src/licensedcode/data/rules/leptonica_1.RULE @@ -1 +1,10 @@ +--- +license_expression: leptonica +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Leptonica License \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_1.yml b/src/licensedcode/data/rules/leptonica_1.yml deleted file mode 100644 index 1025052511c..00000000000 --- a/src/licensedcode/data/rules/leptonica_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/leptonica_10.RULE b/src/licensedcode/data/rules/leptonica_10.RULE index 7a1652e92f6..649d1586af8 100644 --- a/src/licensedcode/data/rules/leptonica_10.RULE +++ b/src/licensedcode/data/rules/leptonica_10.RULE @@ -1 +1,9 @@ +--- +license_expression: leptonica +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Leptonica +--- + {{Leptonica}} https://spdx.org/licenses/Leptonica \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_10.yml b/src/licensedcode/data/rules/leptonica_10.yml deleted file mode 100644 index 040cfab0121..00000000000 --- a/src/licensedcode/data/rules/leptonica_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Leptonica diff --git a/src/licensedcode/data/rules/leptonica_11.RULE b/src/licensedcode/data/rules/leptonica_11.RULE index be52487ee3d..665ac899721 100644 --- a/src/licensedcode/data/rules/leptonica_11.RULE +++ b/src/licensedcode/data/rules/leptonica_11.RULE @@ -1 +1,9 @@ +--- +license_expression: leptonica +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Leptonica +--- + LICENSE {{Leptonica}} https://spdx.org/licenses/Leptonica \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_11.yml b/src/licensedcode/data/rules/leptonica_11.yml deleted file mode 100644 index 040cfab0121..00000000000 --- a/src/licensedcode/data/rules/leptonica_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Leptonica diff --git a/src/licensedcode/data/rules/leptonica_2.RULE b/src/licensedcode/data/rules/leptonica_2.RULE index 4dbaefd95f6..f7fbe1560cf 100644 --- a/src/licensedcode/data/rules/leptonica_2.RULE +++ b/src/licensedcode/data/rules/leptonica_2.RULE @@ -1 +1,10 @@ +--- +license_expression: leptonica +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Leptonica License \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_2.yml b/src/licensedcode/data/rules/leptonica_2.yml deleted file mode 100644 index 1025052511c..00000000000 --- a/src/licensedcode/data/rules/leptonica_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/leptonica_3.RULE b/src/licensedcode/data/rules/leptonica_3.RULE index a4f9934d272..47055089459 100644 --- a/src/licensedcode/data/rules/leptonica_3.RULE +++ b/src/licensedcode/data/rules/leptonica_3.RULE @@ -1 +1,10 @@ +--- +license_expression: leptonica +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Leptonica Leptonica License \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_3.yml b/src/licensedcode/data/rules/leptonica_3.yml deleted file mode 100644 index 1025052511c..00000000000 --- a/src/licensedcode/data/rules/leptonica_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/leptonica_4.RULE b/src/licensedcode/data/rules/leptonica_4.RULE index 524e34ecf55..fa44b292175 100644 --- a/src/licensedcode/data/rules/leptonica_4.RULE +++ b/src/licensedcode/data/rules/leptonica_4.RULE @@ -1 +1,10 @@ +--- +license_expression: leptonica +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Leptonica License Leptonica \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_4.yml b/src/licensedcode/data/rules/leptonica_4.yml deleted file mode 100644 index 1025052511c..00000000000 --- a/src/licensedcode/data/rules/leptonica_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/leptonica_5.RULE b/src/licensedcode/data/rules/leptonica_5.RULE index e98d57e0a48..f33ebe78419 100644 --- a/src/licensedcode/data/rules/leptonica_5.RULE +++ b/src/licensedcode/data/rules/leptonica_5.RULE @@ -1 +1,10 @@ +--- +license_expression: leptonica +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Leptonica \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_5.yml b/src/licensedcode/data/rules/leptonica_5.yml deleted file mode 100644 index 1838d326c33..00000000000 --- a/src/licensedcode/data/rules/leptonica_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: leptonica -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/leptonica_6.RULE b/src/licensedcode/data/rules/leptonica_6.RULE index 8f640f79286..70e5142e39a 100644 --- a/src/licensedcode/data/rules/leptonica_6.RULE +++ b/src/licensedcode/data/rules/leptonica_6.RULE @@ -1 +1,10 @@ +--- +license_expression: leptonica +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Leptonica License \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_6.yml b/src/licensedcode/data/rules/leptonica_6.yml deleted file mode 100644 index 1838d326c33..00000000000 --- a/src/licensedcode/data/rules/leptonica_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: leptonica -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/leptonica_7.RULE b/src/licensedcode/data/rules/leptonica_7.RULE index d2042093b40..892cfc61165 100644 --- a/src/licensedcode/data/rules/leptonica_7.RULE +++ b/src/licensedcode/data/rules/leptonica_7.RULE @@ -1 +1,10 @@ +--- +license_expression: leptonica +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Leptonica \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_7.yml b/src/licensedcode/data/rules/leptonica_7.yml deleted file mode 100644 index 1838d326c33..00000000000 --- a/src/licensedcode/data/rules/leptonica_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: leptonica -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/leptonica_8.RULE b/src/licensedcode/data/rules/leptonica_8.RULE index 45214b90efa..30dba022171 100644 --- a/src/licensedcode/data/rules/leptonica_8.RULE +++ b/src/licensedcode/data/rules/leptonica_8.RULE @@ -1 +1,9 @@ +--- +license_expression: leptonica +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Leptonica +--- + https://licenses.nuget.org/Leptonica \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_8.yml b/src/licensedcode/data/rules/leptonica_8.yml deleted file mode 100644 index 9b8d4599ab3..00000000000 --- a/src/licensedcode/data/rules/leptonica_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Leptonica diff --git a/src/licensedcode/data/rules/leptonica_9.RULE b/src/licensedcode/data/rules/leptonica_9.RULE index 076be36059e..aceaf91d3e7 100644 --- a/src/licensedcode/data/rules/leptonica_9.RULE +++ b/src/licensedcode/data/rules/leptonica_9.RULE @@ -1 +1,7 @@ +--- +license_expression: leptonica +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Leptonica \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_9.yml b/src/licensedcode/data/rules/leptonica_9.yml deleted file mode 100644 index 1571ed0c01a..00000000000 --- a/src/licensedcode/data/rules/leptonica_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/leptonica_url_1.RULE b/src/licensedcode/data/rules/leptonica_url_1.RULE index 5c26ca602c9..ecec9eb31ff 100644 --- a/src/licensedcode/data/rules/leptonica_url_1.RULE +++ b/src/licensedcode/data/rules/leptonica_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: leptonica +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/leptonica +--- + https://spdx.org/licenses/leptonica \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_url_1.yml b/src/licensedcode/data/rules/leptonica_url_1.yml deleted file mode 100644 index f9858a323c7..00000000000 --- a/src/licensedcode/data/rules/leptonica_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/leptonica diff --git a/src/licensedcode/data/rules/leptonica_url_2.RULE b/src/licensedcode/data/rules/leptonica_url_2.RULE index 48315a028c7..fec59d9b239 100644 --- a/src/licensedcode/data/rules/leptonica_url_2.RULE +++ b/src/licensedcode/data/rules/leptonica_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: leptonica +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/leptonica.html +--- + https://spdx.org/licenses/leptonica.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/leptonica_url_2.yml b/src/licensedcode/data/rules/leptonica_url_2.yml deleted file mode 100644 index 9e0991603cc..00000000000 --- a/src/licensedcode/data/rules/leptonica_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: leptonica -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/leptonica.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus.RULE index 2a584319bea..920c5c6e4b5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus.RULE @@ -1 +1,7 @@ -under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. \ No newline at end of file +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 50 +--- + +under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus.yml b/src/licensedcode/data/rules/lgpl-2.0-plus.yml deleted file mode 100644 index d78ab841f1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_0.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_0.RULE index 87e28406971..76560cc2618 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_0.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + ;;;; LGPL ;;;; ;;;; diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_0.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_0.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_1.RULE index e86f4455449..b1545e7c626 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +notes: this is a confused notice mixing v2 and v2.1 references +--- + 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 of the License, or (at diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_1.yml deleted file mode 100644 index 0a705275f39..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -notes: this is a confused notice mixing v2 and v2.1 references diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_10.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_10.RULE index c25d7127dd9..458278db908 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_10.RULE @@ -1,3 +1,8 @@ +--- +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 Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_10.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_10.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_100.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_100.RULE index 31ec056ffc1..33779a8f508 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_100.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_100.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.txt +--- + http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_100.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_100.yml deleted file mode 100644 index 2cb608658b9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_101.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_101.RULE index 6bf61bc9eea..6596741585e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_101.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_101.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + some code licensed under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_101.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_101.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_102.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_102.RULE index db1f592f55c..d8ad75d7cb3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_102.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_102.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - ftp://prep.ai.mit.edu/pub/gnu/GNUinfo/LGPL +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_102.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_102.yml deleted file mode 100644 index 010c7d6e22e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - ftp://prep.ai.mit.edu/pub/gnu/GNUinfo/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_103.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_103.RULE index f99ec734be9..54eed356363 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_103.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_103.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 95 +--- + LGPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_103.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_103.yml deleted file mode 100644 index 265281003ae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_104.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_104.RULE index 3e027127af3..046039ed538 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_104.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_104.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_104.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_104.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_105.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_105.RULE index 5bc19c3dcb7..45c2be00c9f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_105.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_105.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_105.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_105.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_106.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_106.RULE index 5fc2b441215..d3a91a7bb50 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_106.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_106.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL2PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_106.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_106.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_107.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_107.RULE index e64bb484507..f5e6b47933e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_107.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_107.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL20PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_107.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_107.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_108.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_108.RULE index 5811f5209e7..189708dce4f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_108.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_108.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv2PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_108.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_108.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_109.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_109.RULE index 397c104ce47..40c219bb7a8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_109.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_109.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv20PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_109.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_109.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_11.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_11.RULE index 6f45657e443..fe40e68f1fb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + * 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; either @@ -10,4 +15,4 @@ * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free - * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_11.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_11.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_110.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_110.RULE index 44e18155022..d9b5a4031f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_110.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_110.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_110.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_110.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_111.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_111.RULE index af395da2125..ebec4ea8825 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_111.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_111.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_111.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_111.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_112.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_112.RULE index 80e193dac67..e7f56646059 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_112.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_112.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_112.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_112.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_113.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_113.RULE index 9f205bd3626..1415ebd09fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_113.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_113.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_113.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_113.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_114.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_114.RULE index 30a1f2ec192..431946e69ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_114.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_114.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_114.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_114.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_115.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_115.RULE index 8452e226774..40b9f958d19 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_115.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_115.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_115.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_115.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_116.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_116.RULE index 6451eb71756..cecf6bc491f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_116.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_116.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_116.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_116.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_117.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_117.RULE index 957921a4463..86497623e53 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_117.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_117.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_117.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_117.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_118.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_118.RULE index c1d84b84e44..280fbdf7495 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_118.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_118.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_118.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_118.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_119.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_119.RULE index e98be52b107..b32b5c9fe2f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_119.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_119.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_119.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_119.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_12.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_12.RULE index b9f5384ac84..414ac17fb8f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_12.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +notes: lgpl 2 or later python +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This file is part of a program licensed under the terms of the GNU Lesser # General Public License version 2 (or at your option any later version) # as published by the Free Software Foundation: http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_12.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_12.yml deleted file mode 100644 index 58ae40306ba..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -notes: lgpl 2 or later python -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_120.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_120.RULE index 6dfae36111f..9af04728486 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_120.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_120.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + lgpl d \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_120.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_120.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_121.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_121.RULE index ea4c8c64702..d61e05caed8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_121.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_121.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_121.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_121.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_122.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_122.RULE index a94e76f59ae..cf785dbf91f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_122.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_122.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_122.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_122.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_123.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_123.RULE index 585f9c5d6ee..2ec27e2901b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_123.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_123.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_123.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_123.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_124.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_124.RULE index b606053c89d..ce2e6ba1bd9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_124.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_124.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_124.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_124.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_125.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_125.RULE index 06b83ae4e18..3422017b981 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_125.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_125.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL2PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_125.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_125.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_126.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_126.RULE index bdb0c6c974f..e591fb4bd21 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_126.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_126.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL20PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_126.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_126.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_127.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_127.RULE index 1a96a0ce31d..e8607735146 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_127.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_127.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv2PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_127.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_127.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_128.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_128.RULE index 0b6cff4b09c..1ace6b9869b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_128.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_128.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv20PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_128.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_128.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_129.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_129.RULE index c2a1ea03316..33c99f8f09a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_129.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_129.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_129.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_129.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_13.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_13.RULE index 221492b3b2e..41b883ba905 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_13.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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; either version 2 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 Library General Public License for more details. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_13.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_13.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_130.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_130.RULE index 4f67dedd18e..d49368085ff 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_130.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_130.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_130.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_130.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_131.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_131.RULE index 108e01b1a16..a4216abefa9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_131.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_131.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_131.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_131.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_132.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_132.RULE index 9490aa206e1..228240d88f3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_132.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_132.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_132.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_132.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_133.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_133.RULE index b9244f3c73a..e14e12317fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_133.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_133.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_133.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_133.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_134.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_134.RULE index a73d6bc7620..d9d35950db9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_134.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_134.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 20plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_134.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_134.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_135.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_135.RULE index 7528d2150d3..c215de15b3a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_135.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_135.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_135.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_135.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_136.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_136.RULE index 405e3ce1492..8ff2022e35b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_136.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_136.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v20plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_136.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_136.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_137.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_137.RULE index a499a1c965b..bd034f4fda0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_137.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_137.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_137.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_137.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_138.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_138.RULE index 9d5ee162d9d..ce4b7f061ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_138.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_138.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_138.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_138.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_139.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_139.RULE index 9c30c483499..f12c070ced0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_139.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_139.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_139.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_139.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_14.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_14.RULE index 6d8fd78be84..b53d76107f9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_14.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_14.RULE @@ -1,3 +1,8 @@ +--- +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 Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_14.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_14.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_140.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_140.RULE index 6c175c96f12..3c097b1b992 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_140.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_140.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_140.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_140.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_141.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_141.RULE index e1ee06f6332..a2afd7ec6fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_141.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_141.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_141.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_141.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_142.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_142.RULE index b312db61cf6..870c14fa3d0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_142.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_142.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_142.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_142.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_143.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_143.RULE index 012d983adb5..874b0d3151b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_143.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_143.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_143.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_143.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_144.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_144.RULE index 284f9cdb54e..b63d9dbe2ae 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_144.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_144.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_144.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_144.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_145.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_145.RULE index ad620d2f2f8..4675f041f86 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_145.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_145.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnulgpled \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_145.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_145.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_146.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_146.RULE index 00e27c822c8..4ce4b597047 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_146.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_146.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnulgpld \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_146.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_146.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_147.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_147.RULE index d4256451460..66ddd378f27 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_147.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_147.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnulgpl ed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_147.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_147.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_148.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_148.RULE index 61d3fa8a8e3..cc361d00974 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_148.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_148.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnulgpl d \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_148.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_148.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_149.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_149.RULE index f1dc9534531..fcd0befeb98 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_149.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_149.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_149.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_149.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_15.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_15.RULE index 1cb56f9ee1b..cb7e62f8de1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_15.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_15.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_15.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_15.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_150.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_150.RULE index bd1c75bc76b..2202d7c6c55 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_150.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_150.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_150.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_150.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_151.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_151.RULE index 23e4151e72b..19452273ee6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_151.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_151.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_151.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_151.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_152.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_152.RULE index c2ac38b6200..a61c5020bfd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_152.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_152.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_152.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_152.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_153.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_153.RULE index 0ba36277c2f..397a6c7aec5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_153.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_153.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl2plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_153.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_153.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_154.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_154.RULE index 183e4c237e1..5f2caadafa4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_154.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_154.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl20plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_154.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_154.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_155.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_155.RULE index cfbf59e42aa..d5c94c75671 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_155.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_155.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv2plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_155.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_155.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_156.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_156.RULE index 12c0d6410b3..efb7f4a6ba8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_156.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_156.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv20plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_156.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_156.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_157.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_157.RULE index 2f8498b28a2..443e6d893ec 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_157.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_157.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_157.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_157.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_158.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_158.RULE index fc70d81e62a..253bfdafacd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_158.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_158.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_158.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_158.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_159.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_159.RULE index 424ef2e7b70..421c65df908 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_159.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_159.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v20+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_159.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_159.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_16.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_16.RULE index 4acb999cea9..9c6dfb9846f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_16.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_16.RULE @@ -1,7 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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; either version 2 of the License, or (at your option) any later version. On Debian systems, the complete text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2 file. +License can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_16.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_16.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_160.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_160.RULE index eb3c94a7cbb..bf755640795 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_160.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_160.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_160.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_160.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_161.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_161.RULE index 56dc854857a..162d205db98 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_161.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_161.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_161.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_161.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_162.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_162.RULE index bcb16b21c29..d1a68ceb885 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_162.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_162.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_162.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_162.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_163.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_163.RULE index 5ba12d0bbe0..719bb427f78 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_163.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_163.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_163.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_163.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_164.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_164.RULE index 8273ade3c39..cd6147cd97c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_164.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_164.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_164.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_164.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_165.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_165.RULE index b84d6728fec..b7cd93a20f1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_165.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_165.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_165.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_165.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_166.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_166.RULE index 9dc3822f187..96fe4560eae 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_166.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_166.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_166.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_166.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_167.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_167.RULE index 7fe4375d3be..9d394b340fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_167.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_167.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_167.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_167.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_168.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_168.RULE index ecfaa736ff7..9a5443e2abd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_168.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_168.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu lgpled \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_168.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_168.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_169.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_169.RULE index b586685c46b..f24f346d9fb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_169.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_169.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu lgpld \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_169.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_169.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_17.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_17.RULE index 1a71ebffba6..d3fd4bc5250 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + This package 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 @@ -13,4 +22,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. +Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_17.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_17.yml deleted file mode 100644 index 939f714c002..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_170.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_170.RULE index 690d3f63901..0ac3c5ad95b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_170.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_170.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu lgpl ed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_170.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_170.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_171.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_171.RULE index 31070862043..18fdfb2043c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_171.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_171.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu lgpl d \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_171.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_171.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_172.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_172.RULE index 72c8bd4c6c9..fe3fdac3e6b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_172.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_172.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +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 Library General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_172.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_172.yml deleted file mode 100644 index 972dd1f896a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_173.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_173.RULE index 4a6f457af7e..2563c970fff 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_173.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_173.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_173.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_173.yml deleted file mode 100644 index 972dd1f896a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_173.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_174.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_174.RULE index b51673e7931..2b4595e5e54 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_174.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_174.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + // Release under LGPL license. // \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_174.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_174.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_175.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_175.RULE index 960ce82a5ee..4fc63f76dfe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_175.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_175.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_175.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_175.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_176.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_176.RULE index 44008451b5f..f828ee55c12 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_176.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_176.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 90 +ignorable_urls: + - https://github.com/robinvanderknaap/iDeal.NET +--- + https://github.com/robinvanderknaap/iDeal.NET \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_176.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_176.yml deleted file mode 100644 index 4dc5d48ed15..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_176.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 90 -ignorable_urls: - - https://github.com/robinvanderknaap/iDeal.NET diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_177.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_177.RULE index 6e484fb985a..bb26cfd6016 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_177.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_177.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License All source code is licensed under the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_177.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_177.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_178.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_178.RULE index 75e95ec2a81..5faefa92f79 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_178.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_178.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + ## License All source code is licensed under the [GNU Lesser General Public License](http://www.gnu.org/licenses/lgpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_178.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_178.yml deleted file mode 100644 index 1ee0dcd5675..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_178.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_179.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_179.RULE index 85ee26de552..6221cc84967 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_179.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_179.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 80 +ignorable_urls: + - http://code.google.com/p/functional-utils-csharp +--- + http://code.google.com/p/functional-utils-csharp \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_179.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_179.yml deleted file mode 100644 index fe7c174fe16..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 80 -ignorable_urls: - - http://code.google.com/p/functional-utils-csharp diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_18.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_18.RULE index b942218fe84..fe4eccaca5d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_18.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_18.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + This package 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 @@ -13,4 +18,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. +Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_18.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_18.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_180.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_180.RULE index ee64fa5328a..e25aa08a2bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_180.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_180.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + covered by his -original LGPL license. \ No newline at end of file +original LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_180.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_180.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_181.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_181.RULE index 0129ce98d66..7ceda28d792 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_181.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_181.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lgpl-license.php +--- + The distribution is licensed under the terms of the GNU Lesser General Public License (http://www.opensource.org/licenses/lgpl-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_181.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_181.yml deleted file mode 100644 index 0485f201edd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_182.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_182.RULE index cd97661ae5a..f1e5a3dbe20 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_182.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_182.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.LGPL +--- + The complete text of the GNU LGPL can be found in LICENSE.LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_182.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_182.yml deleted file mode 100644 index b4f3fe340d0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_183.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_183.RULE index 130fa14ed6e..95b54ba8628 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_183.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_183.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: LGPL-2+ On Debian systems the full text of the GNU LGPL v2 can be found in the `/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_183.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_183.yml deleted file mode 100644 index 937f7988c1c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_183.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_184.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_184.RULE index 6999b97ffd4..cf47288726d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_184.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_184.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 96 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; either version 2 @@ -9,4 +18,4 @@ // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with this program; if not, see . +// along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_184.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_184.yml deleted file mode 100644 index 95a1fc233af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_184.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 96 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_185.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_185.RULE index cddfa4bb426..7704a4cbb9f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_185.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_185.RULE @@ -1 +1,7 @@ -under the GNU Library General Public License \ No newline at end of file +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +under the GNU Library General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_185.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_185.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_186.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_186.RULE index 465e5ed42f7..d66affdfca5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_186.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_186.RULE @@ -1 +1,7 @@ -GNU Library General Public License \ No newline at end of file +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +GNU Library General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_186.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_186.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_187.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_187.RULE index 51246fe434b..be52568ab12 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_187.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_187.RULE @@ -1 +1,7 @@ -Library General Public License \ No newline at end of file +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +Library General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_187.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_187.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_188.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_188.RULE index f9ae242751f..4d6789cccc6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_188.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_188.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lgpl-license.html +--- + * @license LGPL http://www.opensource.org/licenses/lgpl-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_188.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_188.yml deleted file mode 100644 index a16ec35962a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_188.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lgpl-license.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_189.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_189.RULE index 7ea6d444f65..73769f5313d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_189.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_189.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Released under LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_189.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_189.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_19.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_19.RULE index c6208d34ea9..57118305b19 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_19.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_19.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + This package 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 @@ -10,4 +15,4 @@ You should have received a copy of the GNU Lesser General Public License along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_19.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_19.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_190.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_190.RULE index 953c58211d4..dad4b40a1c3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_190.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_190.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + used under LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_190.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_190.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_191.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_191.RULE index 29db3741b03..a63c8e65b70 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_191.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_191.RULE @@ -1,2 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://opensource.org/licenses/lgpl-license.php +--- + See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://opensource.org/licenses/lgpl-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_191.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_191.yml deleted file mode 100644 index 6790eeee113..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_191.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_192.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_192.RULE index ca1aa1f0e78..b6eb057c48b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_192.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_192.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + See the enclosed file COPYING for license information (LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_192.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_192.yml deleted file mode 100644 index 4681cdf83a7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_193.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_193.RULE index 4db6a939675..f39f1699f20 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_193.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_193.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/lgpl-license.php +--- + see http://opensource.org/licenses/lgpl-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_193.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_193.yml deleted file mode 100644 index 7c881c6e203..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_194.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_194.RULE index c95f70bdc48..009b48fb137 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_194.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_194.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/lgpl-license.php +--- + http://opensource.org/licenses/lgpl-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_194.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_194.yml deleted file mode 100644 index 7c881c6e203..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_195.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_195.RULE index efd2780b9f0..66b08c0a1e9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_195.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_195.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/lgpl-license.php +--- + https://opensource.org/licenses/lgpl-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_195.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_195.yml deleted file mode 100644 index 45d6aa00662..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_196.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_196.RULE index 3c748e4060d..25c5a8a4230 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_196.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_196.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/lgpl-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_196.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_196.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_196.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_197.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_197.RULE index 6a1fbf1a3af..85d521c2956 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_197.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_197.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + released as open-source software under the LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_197.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_197.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_197.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_198.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_198.RULE index 7276f3d1ffd..2567ad84c2b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_198.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_198.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_198.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_198.yml deleted file mode 100644 index d639274e111..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_198.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_199.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_199.RULE index 1ddaf54a501..96abdc22a7e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_199.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_199.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/lgpl.html +--- + http://gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_199.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_199.yml deleted file mode 100644 index d7eb29849ab..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_199.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_2.RULE index 3c8ec820251..5e2197be102 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_2.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_20.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_20.RULE index 5c9b21f798f..e82443b2e2a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_20.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_20.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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; either version 2, or (at your option) @@ -6,4 +11,4 @@ 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. +Library General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_20.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_20.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_200.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_200.RULE index 33446a464e5..4deb55543c9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_200.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_200.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/lgpl.html +--- + https://gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_200.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_200.yml deleted file mode 100644 index 70ad4618113..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_200.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_201.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_201.RULE index 55ce38a5b23..f8a0df22bdb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_201.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_201.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.txt +--- + https://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_201.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_201.yml deleted file mode 100644 index 33e4280b3d5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_202.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_202.RULE index 28fcc09ac25..81dc7dbf154 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_202.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_202.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/lgpl.txt +--- + http://gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_202.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_202.yml deleted file mode 100644 index fdb9709d5ec..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_203.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_203.RULE index f9b97df8f49..9c0655c9193 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_203.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_203.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/lgpl.txt +--- + https://gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_203.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_203.yml deleted file mode 100644 index 490f62e09f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_203.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_204.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_204.RULE index 7a0148daef9..26f7fd8ec5f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_204.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_204.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl +--- + http://www.gnu.org/licenses/lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_204.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_204.yml deleted file mode 100644 index eb7423599a1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_204.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_205.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_205.RULE index 3c4bf377681..087ff1fe7c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_205.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_205.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl +--- + https://www.gnu.org/licenses/lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_205.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_205.yml deleted file mode 100644 index 87e0553fc9d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_205.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_206.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_206.RULE index 7b1a4508422..29c2116e0c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_206.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_206.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/lgpl +--- + http://gnu.org/licenses/lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_206.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_206.yml deleted file mode 100644 index 88fa3afc671..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_206.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/lgpl diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_207.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_207.RULE index 86704b5e1be..9dce8ef553b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_207.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_207.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/lgpl +--- + https://gnu.org/licenses/lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_207.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_207.yml deleted file mode 100644 index 7dfafefef23..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/lgpl diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_208.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_208.RULE index 537ccc07091..03168d8a2f9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_208.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_208.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_208.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_208.yml deleted file mode 100644 index 4a09ba6318a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_208.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_209.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_209.RULE index 70f6b9fcba7..17cef67f13c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_209.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_209.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_209.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_209.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_21.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_21.RULE index 3ea6a2fbfba..51c2a53feb5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_21.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + Copyright: This package is free software; you can redistribute it and/or @@ -15,4 +24,4 @@ Copyright: Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. +Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_21.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_21.yml deleted file mode 100644 index 939f714c002..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_210.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_210.RULE index 5034897d5ae..6e366d088da 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_210.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_210.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.txt +--- + www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_210.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_210.yml deleted file mode 100644 index 2cb608658b9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_210.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_211.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_211.RULE index ecdf773f95d..107ac132561 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_211.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_211.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_211.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_211.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_212.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_212.RULE index 5d6914b5880..4de5b8f134a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_212.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_212.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl +--- + www.gnu.org/licenses/lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_212.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_212.yml deleted file mode 100644 index eb7423599a1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_212.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_213.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_213.RULE index fed066b3105..e48f5477dd0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_213.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_213.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_213.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_213.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_214.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_214.RULE index 90a6360aed4..2883d1481c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_214.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_214.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.0.txt +--- + - GNU LGPL 2 or later http://www.gnu.org/licenses/lgpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_214.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_214.yml deleted file mode 100644 index 074aa789052..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_215.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_215.RULE index 8fd5e850c96..b3aa78c0893 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_215.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_215.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Library General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_215.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_215.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_216.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_216.RULE index 6c47e06277f..731ca7fb439 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_216.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_216.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_216.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_216.yml deleted file mode 100644 index 724d7a37c27..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_217.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_217.RULE index 5791c1a0eda..1e7d2221669 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_217.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_217.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 99 +--- + reflect license change discussion that was never actually implemented in the repository and update to LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_217.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_217.yml deleted file mode 100644 index 35b5091f3be..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_218.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_218.RULE index d60c5744365..ed768be8f32 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_218.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_218.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + all licensed under LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_218.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_218.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_219.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_219.RULE index a5f250f4cc5..cd019883bfd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_219.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_219.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_219.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_219.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_22.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_22.RULE index ea962c553f7..31b8cf8a1c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_22.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: This library is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_22.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_22.yml deleted file mode 100644 index 597ece82b5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_220.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_220.RULE index 73fb63b5e3c..ab83fad8b4b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_220.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_220.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + Now under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_220.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_220.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_221.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_221.RULE index 4a67a82e188..82fc20bc8c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_221.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_221.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_221.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_221.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_222.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_222.RULE index b8ad0faef4e..857af04f84a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_222.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_222.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ### License LGPL License LGPL license, see LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_222.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_222.yml deleted file mode 100644 index 78c077dc002..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_222.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_223.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_223.RULE index 25012f6295e..9ee5c53653f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_223.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_223.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + LGPL license, see LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_223.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_223.yml deleted file mode 100644 index 78c077dc002..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_223.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_224.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_224.RULE index aceca3ea463..ddccdb38290 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_224.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_224.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + ### License LGPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_224.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_224.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_225.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_225.RULE index c9fe77297f3..c70d304b0fc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_225.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_225.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LIB +--- + The library is distributed under the LGPLv2+. The programs are distributed under the GPLv2+. Please see the files COPYING and COPYING.LIB for full license information. The examples are under a diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_225.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_225.yml deleted file mode 100644 index d028d48add7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_225.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_226.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_226.RULE index 0344a8a17d0..4e070ffd4e7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_226.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_226.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + The software in this package is published under the terms of the LGPL license * a copy of which has been included with this distribution in the license.txt file. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_226.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_226.yml deleted file mode 100644 index 9ddaf81852b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_226.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_227.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_227.RULE index 0562d497235..dfd70c8a51d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_227.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_227.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + # 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 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_227.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_227.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_228.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_228.RULE index 9d07a98818c..74f111b2b31 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_228.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_228.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + released under a commercial-friendly LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_228.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_228.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_229.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_229.RULE index 26d154cac2e..99dff6d33cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_229.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_229.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + - GNU LGPL 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_229.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_229.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_23.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_23.RULE index fe9ecb5ad93..a9869053fc0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_23.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + * 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; either @@ -11,4 +18,4 @@ * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. + * Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_23.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_23.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_230.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_230.RULE index f6eb49b0c94..b16cf63dd18 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_230.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_230.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.txt +--- + - GNU LGPL 2 or later https://www.gnu.org/licenses/lgpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_230.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_230.yml deleted file mode 100644 index 28fc8421542..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_230.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_231.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_231.RULE index 9ec1d2abd68..11b25e3c60e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_231.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_231.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license PROJECT_LICENSE_LGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_231.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_231.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_232.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_232.RULE index 14d19d008c1..d80ae999e59 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_232.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_232.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license LICENSE_LGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_232.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_232.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_232.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_233.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_233.RULE index a9494b2a955..f3b4b131bf3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_233.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_233.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + PROJECT_LICENSE_LGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_233.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_233.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_234.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_234.RULE index 8df5dc45628..a7af93b67e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_234.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_234.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + The GNU C 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; either version 2 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_234.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_234.yml deleted file mode 100644 index 7dfe66a8e56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_234.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_235.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_235.RULE index be3aee14a8f..3f6136cbd0e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_235.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_235.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + The GNU C 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; either version 2 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_235.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_235.yml deleted file mode 100644 index 7dfe66a8e56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_235.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_236.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_236.RULE index bbfa1688986..7279bf9f1b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_236.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_236.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +notes: contains a repeated trailing address fragment +--- + The GNU C 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; either version 2 of the @@ -12,4 +21,4 @@ You should have received a copy of the GNU Library General Public License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -Cambridge, MA 02139, USA. */ +Cambridge, MA 02139, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_236.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_236.yml deleted file mode 100644 index b608c3e1615..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_236.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB -notes: contains a repeated trailing address fragment diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_237.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_237.RULE index 8d365c2bc55..d780a173d31 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_237.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_237.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 99 +--- + * licensed under the terms of the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_237.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_237.yml deleted file mode 100644 index 724d7a37c27..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_238.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_238.RULE index b49c1275e56..ab065b9af5e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_238.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_238.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + * AutoOpts is a copyrighted work. This header file is not encumbered * by AutoOpts licensing, but is provided under the licensing terms chosen * by the genshellopt author or copyright holder. AutoOpts is diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_238.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_238.yml deleted file mode 100644 index 77aa88bf7c3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_238.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_239.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_239.RULE index 91dcc56ef3c..d063d53d194 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_239.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_239.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + * AutoOpts is a copyrighted work. This source file is not encumbered * by AutoOpts licensing, but is provided under the licensing terms chosen * by the genshellopt author or copyright holder. AutoOpts is diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_239.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_239.yml deleted file mode 100644 index 77aa88bf7c3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_239.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_24.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_24.RULE index 5559c5f9126..d5498050c8c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_24.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + Libiberty 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_24.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_24.yml deleted file mode 100644 index 7dfe66a8e56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_240.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_240.RULE index 1fe0adb2b6f..1a6489257d5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_240.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_240.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_240.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_240.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_241.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_241.RULE index 4ae8c9eeaef..5dac01f6885 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_241.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_241.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed program \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_241.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_241.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_242.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_242.RULE index 30ea18472ce..f1358dda718 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_242.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_242.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_242.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_242.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_243.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_243.RULE index 2b97d33a83c..a2719579193 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_243.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_243.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL licensed extensions \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_243.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_243.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_243.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_244.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_244.RULE index cc8a7c37aaf..22cbbbfd26d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_244.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_244.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + All LGPL licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_244.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_244.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_245.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_245.RULE index f4053b6a0ed..af2c5d742c3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_245.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_245.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL licensed source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_245.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_245.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_245.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_246.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_246.RULE index 2a7754864c8..fe40c270993 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_246.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_246.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL licensed C++ code \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_246.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_246.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_246.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_247.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_247.RULE index 1884ae57173..9d6fbd28f24 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_247.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_247.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed prototype \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_247.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_247.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_248.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_248.RULE index 6758af3e72b..e1b24520deb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_248.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_248.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed code template \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_248.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_248.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_249.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_249.RULE index 2554a5f2811..a285b888287 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_249.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_249.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed plugins \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_249.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_249.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_25.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_25.RULE index 070a7b7ffcb..deab4e19ff0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_25.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_25.RULE @@ -1,3 +1,8 @@ +--- +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 Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_25.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_25.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_250.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_250.RULE index 2cb96438ce9..33e157cb8ff 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_250.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_250.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL licensed bash script \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_250.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_250.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_251.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_251.RULE index 208c007b45d..18098aa6087 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_251.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_251.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed, free software \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_251.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_251.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_252.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_252.RULE index 6982808d33f..ed05346ef54 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_252.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_252.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source LGPL licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_252.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_252.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_253.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_253.RULE index da46fa4e630..90a39e47b1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_253.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_253.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source LGPL licensed project \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_253.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_253.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_253.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_254.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_254.RULE index 29881c6f66a..e7fbc62d287 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_254.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_254.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source LGPL licensed proyect \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_254.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_254.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_254.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_255.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_255.RULE index 1e967f06134..3e78fa157be 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_255.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_255.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL licensed JavaScript library \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_255.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_255.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_255.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_256.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_256.RULE index 6d79e196983..721352f485c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_256.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_256.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + free gpl-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_256.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_256.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_257.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_257.RULE index 90625294f4e..8706c953104 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_257.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_257.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL licensed code \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_257.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_257.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_257.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_258.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_258.RULE index 1648081b0d5..8da44894166 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_258.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_258.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed software \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_258.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_258.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_259.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_259.RULE index be6c5c8945e..1906d361594 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_259.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_259.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed components \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_259.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_259.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_26.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_26.RULE index efa75bcd0e0..e399b213e0a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_26.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_26.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_26.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_26.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_260.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_260.RULE index 04b5b3ac773..1336d0e7635 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_260.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_260.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_260.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_260.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_261.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_261.RULE index 7a6ed63739c..286e97776ee 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_261.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_261.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_261.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_261.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_262.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_262.RULE index 9f24a71a4a9..8a43a991d0f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_262.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_262.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed program \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_262.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_262.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_263.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_263.RULE index 5add64e7fec..8fbec6b3e2a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_263.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_263.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_263.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_263.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_264.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_264.RULE index 35f962eb284..4e8d0890e42 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_264.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_264.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL licensed extensions \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_264.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_264.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_265.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_265.RULE index a0e04c24396..8d7042552ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_265.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_265.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + All GNU/LGPL licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_265.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_265.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_266.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_266.RULE index f5610c96ced..7cd8d41669d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_266.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_266.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL licensed source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_266.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_266.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_267.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_267.RULE index f3b4aa9c338..a88e5dfbb55 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_267.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_267.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL licensed C++ code \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_267.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_267.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_268.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_268.RULE index b4e6b25ff87..66870081329 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_268.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_268.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed prototype \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_268.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_268.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_269.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_269.RULE index 0f83d495c14..d1e9e259131 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_269.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_269.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed code template \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_269.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_269.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_27.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_27.RULE index 136d16f6829..b09ace1f438 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_27.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_27.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 99 +notes: seen in a Debian copyright file for evince +--- + LGPLv2h \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_27.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_27.yml deleted file mode 100644 index c69d82ee734..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 99 -notes: seen in a Debian copyright file for evince diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_270.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_270.RULE index 70e6e8de9a7..4d9afd504ec 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_270.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_270.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed plugins \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_270.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_270.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_271.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_271.RULE index 36ae9b8bf84..5c546343dc7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_271.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_271.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL licensed bash script \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_271.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_271.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_272.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_272.RULE index 6963bc7d77d..d515f9caeee 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_272.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_272.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed, free software \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_272.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_272.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_273.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_273.RULE index ab6bdeb265b..abaa8adfccd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_273.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_273.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GNU/LGPL licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_273.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_273.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_274.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_274.RULE index 89ce0b7f690..59e6cdb1b62 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_274.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_274.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GNU/LGPL licensed project \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_274.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_274.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_275.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_275.RULE index a7fb3e7f21d..4cdc83396a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_275.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_275.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Open-Source GNU/LGPL licensed proyect \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_275.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_275.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_276.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_276.RULE index b0b7899a174..5720e08aa90 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_276.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_276.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL licensed JavaScript library \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_276.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_276.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_277.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_277.RULE index 6fc68d9cbbf..83a7065f75d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_277.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_277.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + free GNU/LGPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_277.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_277.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_277.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_278.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_278.RULE index 36b04464998..1c59c898c6f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_278.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_278.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL licensed code \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_278.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_278.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_279.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_279.RULE index ec42267acc4..df2616a6fe7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_279.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_279.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed software \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_279.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_279.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_279.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_28.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_28.RULE index 3b9640a586d..ad6f8b5c8b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_28.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_28.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + Copyright (C) year @@ -12,4 +17,4 @@ 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 library; if not, write to the Free Software Foundation, Inc., 51 -Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_28.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_28.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_28.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_280.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_280.RULE index 9739b609b35..f49c03fd762 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_280.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_280.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed components \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_280.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_280.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_280.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_281.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_281.RULE index cdfe81d146a..523d9f4451b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_281.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_281.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL-licensed plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_281.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_281.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_282.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_282.RULE index 8c51d81c089..c765d111393 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_282.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_282.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed packages \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_282.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_282.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_283.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_283.RULE index 5e37ce62818..90f2832c729 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_283.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_283.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed package \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_283.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_283.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_283.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_284.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_284.RULE index 1a17fb724d9..d03d78ac098 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_284.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_284.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU LGPL-licensed packages \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_284.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_284.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_284.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_285.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_285.RULE index 806612be836..4b5d8e18984 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_285.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_285.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU LGPL-licensed package \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_285.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_285.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_285.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_286.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_286.RULE index 3aec6b44439..cff8f99ae36 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_286.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_286.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed patches \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_286.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_286.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_286.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_287.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_287.RULE index 5f9f977ddda..77babef5a62 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_287.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_287.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed patch \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_287.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_287.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_287.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_288.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_288.RULE index a5ff78e692e..486e9aa4271 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_288.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_288.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU LGPL-licensed patches \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_288.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_288.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_289.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_289.RULE index 168e2c22e1f..131e4d56725 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_289.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_289.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + GNU LGPL-licensed patch \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_289.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_289.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_289.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_29.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_29.RULE index 3d4d7953cc9..935a1ec110a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_29.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_29.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_29.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_29.yml deleted file mode 100644 index 597ece82b5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_290.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_290.RULE index bb70afbc1a0..2f4527942df 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_290.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_290.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed Client Libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_290.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_290.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_291.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_291.RULE index 6c6120d98e1..22f92dfba72 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_291.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_291.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + plugin is LGPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_291.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_291.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_292.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_292.RULE index 83c2c31fde9..536aaa9fa04 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_292.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_292.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + based on LGPL-licensed source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_292.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_292.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_293.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_293.RULE index 023d7903a80..cba78aeb51e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_293.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_293.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_293.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_293.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_294.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_294.RULE index 4fe3375a0c0..45e25f619dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_294.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_294.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed repository \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_294.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_294.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_295.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_295.RULE index 656ae1daf80..5b1db2a6327 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_295.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_295.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + contains third party code that is LGPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_295.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_295.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_295.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_296.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_296.RULE index 7871317971c..113530477f2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_296.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_296.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed work \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_296.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_296.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_296.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_297.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_297.RULE index a2ba8946eff..fcdc3e46b79 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_297.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_297.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed "wrapper project" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_297.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_297.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_298.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_298.RULE index 77658764753..ffe67c9db1b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_298.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_298.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + a free, LGPL-licensed program \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_298.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_298.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_299.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_299.RULE index aceba6ee900..52d6013d188 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_299.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_299.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed images \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_299.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_299.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_3.RULE index 2d21624da46..699707d4e63 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +notes: GNU C Library variant +--- + The GNU C 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; either version 2 of the @@ -11,4 +19,4 @@ You should have received a copy of the GNU Library General Public License along with the GNU C Library; see the file COPYING.LIB. 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 + Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_3.yml deleted file mode 100644 index f647d998765..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -notes: GNU C Library variant diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_30.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_30.RULE index ffe1d81e327..e74bcced2e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_30.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +referenced_filenames: + - COPYING +--- + This file is placed under the conditions of the GNU Library General Public License, version 2, or any later version. See file COPYING for information on distribution conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_30.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_30.yml deleted file mode 100644 index f62d2647e69..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_300.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_300.RULE index 9c1825a226f..ad3c79f893c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_300.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_300.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed collection of scripts \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_300.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_300.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_301.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_301.RULE index 4453dd93435..bf01da0925e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_301.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_301.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_301.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_301.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_301.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_302.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_302.RULE index a7b72224e9e..6d449a4cc26 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_302.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_302.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed codecs \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_302.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_302.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_303.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_303.RULE index cf49c1aa71c..8f4a4f39bce 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_303.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_303.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Those files are LGPL-licensed, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_303.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_303.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_303.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_304.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_304.RULE index f7d050cada8..703ed220b76 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_304.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_304.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed MySQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_304.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_304.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_305.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_305.RULE index 1db6898457e..efb9c1005a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_305.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_305.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed files \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_305.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_305.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_306.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_306.RULE index 62915141938..de3732350fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_306.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_306.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This software is LGPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_306.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_306.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_306.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_307.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_307.RULE index 4521a1b5312..82cedddfed1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_307.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_307.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed application \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_307.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_307.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_308.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_308.RULE index 733891ba83d..b57f7927a8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_308.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_308.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under terms of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_308.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_308.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_308.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_309.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_309.RULE index ae7546a73cd..49addc14f6b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_309.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_309.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL-licensed parts \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_309.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_309.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_31.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_31.RULE index c03725659eb..81b3f6b3bba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_31.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_31.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + "LGPLv2h": The Lesser (or Library) GNU General Public License, version 2 or (at your option). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_31.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_31.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_310.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_310.RULE index a0bb216444d..6a5928f6546 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_310.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_310.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed library \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_310.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_310.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_311.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_311.RULE index 6188d6e685f..b2573632c35 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_311.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_311.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed versions \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_311.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_311.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_312.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_312.RULE index ba0e0716306..c45056a730a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_312.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_312.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_312.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_312.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_312.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_313.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_313.RULE index a58bdf84527..7dc3570348a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_313.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_313.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Code is LGPL-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_313.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_313.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_314.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_314.RULE index 1f8053a304f..e5fc21b0c2a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_314.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_314.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPL-licensed content \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_314.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_314.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_314.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_315.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_315.RULE index 949b42982a7..22296b8db98 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_315.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_315.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + ## License LGPL-licensed. See `LICENSE.txt` for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_315.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_315.yml deleted file mode 100644 index 07d79dc81a2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_315.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_316.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_316.RULE index e1366730cd4..7045464ffba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_316.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_316.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License LGPL-Licensed, see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_316.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_316.yml deleted file mode 100644 index 78c077dc002..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_316.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_317.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_317.RULE index 2380dcdc5f2..483d62870db 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_317.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_317.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL'd software \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_317.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_317.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_318.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_318.RULE index 97c61bcf050..097593b8a19 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_318.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_318.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_318.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_318.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_319.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_319.RULE index 3b85243ee33..93a88e19bfa 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_319.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_319.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + # This software may be freely redistributed under the terms of the GNU # library public license. # diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_319.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_319.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_319.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_32.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_32.RULE index d620343b70d..ec213e21c90 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_32.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_32.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_32.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_32.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_32.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_320.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_320.RULE index 17e3f2077ca..e1951772cd4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_320.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_320.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed as lgpl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_320.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_320.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_320.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_321.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_321.RULE index daa0184e45f..4fd80c73e32 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_321.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_321.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensing: This code is distributed under the GNU LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_321.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_321.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_321.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_322.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_322.RULE index 83201f3effa..33e23f70e8b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_322.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_322.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is distributed under the GNU LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_322.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_322.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_322.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_323.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_323.RULE index 0bbff76a677..009f111a74d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_323.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_323.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_323.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_323.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_323.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_324.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_324.RULE index 32fa7bc24ee..c57d4d6449f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_324.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_324.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + www.gnu.org/copyleft/lesser.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_324.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_324.yml deleted file mode 100644 index 23b77b55869..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_324.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_325.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_325.RULE index a586c94cb3b..7810ef7aef0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_325.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_325.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gnu.org/copyleft/lesser \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_325.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_325.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_325.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_326.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_326.RULE index d2719cea198..b120f78390b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_326.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_326.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + https://www.gnu.org/copyleft/lesser.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_326.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_326.yml deleted file mode 100644 index a82d22f45f2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_326.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_327.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_327.RULE index f4b1f567edb..5535dbd997c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_327.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_327.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU Lesser (Library) General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_327.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_327.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_327.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_328.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_328.RULE index 9514728f1db..762e412c8c2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_328.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_328.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 99 +notes: The LGPL may not always apply in tis case. +--- + if compiled with these files - is under LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_328.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_328.yml deleted file mode 100644 index b023df53138..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_328.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 99 -notes: The LGPL may not always apply in tis case. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_329.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_329.RULE index bf84936d648..1185283f477 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_329.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_329.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + is under LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_329.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_329.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_329.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_33.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_33.RULE index 478a9dd9e8f..1409a1e1231 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_33.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_33.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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; either @@ -11,4 +16,4 @@ You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA + MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_33.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_33.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_330.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_330.RULE index 232039152ef..6a16a5a8d23 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_330.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_330.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_330.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_330.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_330.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_331.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_331.RULE index c52d5464214..97356034593 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_331.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_331.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: this is a 2.1 notice with a 2 version +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_331.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_331.yml deleted file mode 100644 index 696ca72d9f3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_331.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: this is a 2.1 notice with a 2 version -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_332.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_332.RULE index 5cd87f504a0..0af7e48f0bc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_332.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_332.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + Free software distributed under the GNU LGPL. Read license.txt for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_332.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_332.yml deleted file mode 100644 index 9ddaf81852b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_332.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_333.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_333.RULE index fba07d122fd..c7b96a4f04a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_333.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_333.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/lgpl-license.php +--- + license: http://opensource.org/licenses/lgpl-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_333.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_333.yml deleted file mode 100644 index 176d31e87ef..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_333.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_334.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_334.RULE index ed695055f96..d3e9bc45169 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_334.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_334.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + The files in this directory are placed under the LGPL, as given in the LICENSE file in this directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_334.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_334.yml deleted file mode 100644 index 78c077dc002..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_334.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_335.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_335.RULE index 0bbaaddf711..d441d0a7937 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_335.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_335.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The files in this directory are placed under the LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_335.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_335.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_335.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_336.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_336.RULE index dd39f471709..9620e6ca426 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_336.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_336.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + ## License This project as a whole is licensed under the **LGPL 2.0+** license - see the [LICENSE](LICENSE.txt) file for details. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_336.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_336.yml deleted file mode 100644 index 07d79dc81a2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_337.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_337.RULE index 5d2a2a6a44f..879f55dd3ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_337.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_337.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_337.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_337.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_337.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_338.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_338.RULE index b1f77fe288b..a953b24fa54 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_338.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_338.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lgpl.html +--- + LGPL = GNU General Public License, http://www.gnu.org/copyleft/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_338.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_338.yml deleted file mode 100644 index 5d14e607047..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_338.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_339.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_339.RULE index 2ca3235bf48..60ad1a48f9a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_339.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_339.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 97 +notes: in newlib +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License @@ -7,4 +15,4 @@ 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. +GNU Library General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_339.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_339.yml deleted file mode 100644 index 5ceda22c06f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 97 -notes: in newlib diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_34.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_34.RULE index 04d582bba5a..fa98e012769 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_34.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_34.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + The 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; either version 2 of the @@ -11,4 +18,4 @@ You should have received a copy of the GNU Library General Public License along with the Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_34.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_34.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_340.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_340.RULE index 7f341e51e04..3eb5ad643fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_340.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_340.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL v2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_340.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_340.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_340.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_341.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_341.RULE index b92a18b2862..1b9f27bcaf0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_341.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_341.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of LGPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_341.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_341.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_342.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_342.RULE index 293c541fd8f..afe1b3a0420 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_342.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_342.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPLv2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_342.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_342.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_342.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_343.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_343.RULE index 5b1f64aba2d..8bf3ca22443 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_343.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_343.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_343.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_343.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_343.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_344.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_344.RULE index ff873d528bc..fd26bbb3dc5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_344.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_344.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_344.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_344.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_344.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_345.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_345.RULE index 8fc2cc5517e..f95140770d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_345.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_345.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL 2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_345.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_345.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_345.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_346.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_346.RULE index be511f82af8..e9606b816f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_346.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_346.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_346.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_346.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_346.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_347.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_347.RULE index f7c4a191e78..fd92acb2c22 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_347.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_347.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_347.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_347.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_347.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_348.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_348.RULE index 6206a8b470c..65483e01d0b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_348.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_348.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_348.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_348.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_348.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_349.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_349.RULE index 354c3cdbb00..b60be6d8f21 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_349.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_349.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + It is distributed under the Library GNU Public License (see the file LICENSE for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_349.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_349.yml deleted file mode 100644 index 78c077dc002..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_349.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_35.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_35.RULE index 7bf114156d7..03085aaf0c3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_35.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_35.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 99 +referenced_filenames: + - COPYING.LIB +--- + The Gnome 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; either version 2 of the @@ -11,4 +19,4 @@ You should have received a copy of the GNU Library General Public License along with the Gnome Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_35.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_35.yml deleted file mode 100644 index 05f72599f86..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 99 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_350.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_350.RULE index 51f9f089812..c6f9dacfd67 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_350.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_350.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/abiquo-rpms/anaconda-ee/blob/a4771519c87f4367397a8510a1dde159a8d2e71a/anaconda-ee-11.1.2.242/xsetup.py +--- + This software may be freely redistributed under the terms of the GNU library public license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_350.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_350.yml deleted file mode 100644 index 245937064f2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_350.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/abiquo-rpms/anaconda-ee/blob/a4771519c87f4367397a8510a1dde159a8d2e71a/anaconda-ee-11.1.2.242/xsetup.py diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_351.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_351.RULE index 29c0bf6ad6c..8f3f40d834c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_351.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_351.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/Jossef-767/bbb20/blob/76ff1b255277714dbd7ebbaa7ffb82208bd4dd94/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/util/jhotdraw/Shapes.java +--- + * You may not use, copy or modify this file, except in compliance with the * accompanying license terms. * diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_351.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_351.yml deleted file mode 100644 index 6c9e8e45d51..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_351.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/Jossef-767/bbb20/blob/76ff1b255277714dbd7ebbaa7ffb82208bd4dd94/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/util/jhotdraw/Shapes.java diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_352.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_352.RULE index 395eec8a7b4..538535e3350 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_352.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_352.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv2 (or later) license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_352.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_352.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_352.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_353.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_353.RULE index 4ccbd6713ce..364d5ba1817 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_353.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_353.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv2 (or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_353.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_353.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_353.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_354.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_354.RULE index a215765e47e..5f358c7425b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_354.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_354.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: this is a notice mixing some (mistaken?) GPL and LGPL references and is seen in Pulseaudio +--- + uses this LGPLv2 (or later) license: PulseAudio is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_354.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_354.yml deleted file mode 100644 index 0ebadf0abd5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_354.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: this is a notice mixing some (mistaken?) GPL and LGPL references and is seen in Pulseaudio diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_355.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_355.RULE index 8bfb1caa9e0..ac31bde537f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_355.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_355.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: this is a notice mixing some (mistaken?) GPL and LGPL references and is seen in Pulseaudio +--- + uses this LGPLv2 (or later) license: is free software; you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_355.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_355.yml deleted file mode 100644 index 0ebadf0abd5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_355.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: this is a notice mixing some (mistaken?) GPL and LGPL references and is seen in Pulseaudio diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_356.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_356.RULE index 28c0e9534ec..f32a0eff641 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_356.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_356.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + uses this LGPLv2 (or later) license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_356.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_356.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_356.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_357.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_357.RULE index da814f340f1..be9eb4fa41c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_357.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_357.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: this is a notice mixing GPL and LGPL references from Pulseaudio +--- + PulseAudio 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 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_357.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_357.yml deleted file mode 100644 index bc683bec23b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_357.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: this is a notice mixing GPL and LGPL references from Pulseaudio diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_358.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_358.RULE index 4746fe20e04..aa454dedbab 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_358.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_358.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: this is a notice mixing GPL and LGPL references from Pulseaudio +--- + 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 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_358.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_358.yml deleted file mode 100644 index bc683bec23b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_358.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: this is a notice mixing GPL and LGPL references from Pulseaudio diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_359.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_359.RULE index ec6b242666f..58796a53c2e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_359.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_359.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: seen in pyzmq +--- + and inherits LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_359.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_359.yml deleted file mode 100644 index 7e66e673328..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_359.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: seen in pyzmq diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_36.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_36.RULE index 6ff14b32b33..bf4dbc3ce1b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_36.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_36.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -10,4 +15,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +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-2.0-plus_36.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_36.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_360.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_360.RULE index 7e2ef03f26f..71565a4879a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_360.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_360.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: seen in pyzmq +--- + and LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_360.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_360.yml deleted file mode 100644 index 86d4b2703db..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_360.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: seen in pyzmq diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_361.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_361.RULE index eb5b8e3a54a..d09dc19a75f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_361.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_361.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + 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; either version 2 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_361.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_361.yml deleted file mode 100644 index b11629d3917..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_361.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_362.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_362.RULE index f9f47db4c5f..20efade9a34 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_362.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_362.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/res2k/seveninstall/blob/master/LICENSE +--- + licensed under GNU LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_362.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_362.yml deleted file mode 100644 index c8dae417a87..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_362.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/res2k/seveninstall/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_363.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_363.RULE index 890449914a6..290cd392989 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_363.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_363.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 +--- + /* LICENSE: */ /*****************************************************************************/ /* */ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_363.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_363.yml deleted file mode 100644 index 612237ec53c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_363.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_364.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_364.RULE index 32ff06fdbf7..d01214d90e8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_364.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_364.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 +--- + /* LICENSE: */ /*****************************************************************************/ /* */ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_364.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_364.yml deleted file mode 100644 index 78d44086501..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_364.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_365.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_365.RULE index def8a34bfeb..124e028d86e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_365.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_365.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 +--- + /* 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; either */ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_365.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_365.yml deleted file mode 100644 index 612237ec53c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_365.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_366.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_366.RULE index f10d67e9021..cdfea80c3d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_366.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_366.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 +--- + LICENSE: This library is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_366.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_366.yml deleted file mode 100644 index 612237ec53c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_366.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_367.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_367.RULE index 65a326331b5..3ba79b805ac 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_367.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_367.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_367.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_367.yml deleted file mode 100644 index 612237ec53c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_367.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_368.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_368.RULE index 68a64a167a8..b4b5a895444 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_368.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_368.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 +--- + LICENSE: This library is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_368.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_368.yml deleted file mode 100644 index 78d44086501..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_368.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_369.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_369.RULE index ddf08aefe11..db4c5cec82f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_369.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_369.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_369.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_369.yml deleted file mode 100644 index 78d44086501..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_369.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9501fbd1c411a/Date/calendario/date-calc/toolbox.h#L170 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_37.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_37.RULE index 166498c96be..859963f5243 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_37.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_37.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + 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; either version 2 of the @@ -11,4 +18,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, -Cambridge, MA 02139, USA. +Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_37.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_37.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_370.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_370.RULE index 1856538415d..8f2f3afdfd0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_370.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_370.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 +--- + /*****************************************************************************/ /* GNU LIBRARY GENERAL PUBLIC LICENSE: */ /*****************************************************************************/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_370.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_370.yml deleted file mode 100644 index 83ae1caa481..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_370.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_371.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_371.RULE index 9ae903c6e6a..54846e23f4a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_371.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_371.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + /*****************************************************************************/ /* GNU LIBRARY GENERAL PUBLIC LICENSE: */ /*****************************************************************************/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_371.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_371.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_371.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_372.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_372.RULE index c5c66fa4025..f3945d4add3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_372.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_372.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c +--- + GNU GENERAL PUBLIC LICENSE: */ /*****************************************************************************/ /* This program is free software; you can redistribute it and/or */ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_372.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_372.yml deleted file mode 100644 index 06b6e3f7736..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_372.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_373.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_373.RULE index a56237b1f93..57439dba0fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_373.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_373.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c +--- + /* The C library at the core of this Perl module can additionally */ /* be used, modified and redistributed under the terms of the */ /* "GNU Library General Public License". */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_373.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_373.yml deleted file mode 100644 index 103b51bac63..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_373.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d823/libyasm/bitvect.c diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_374.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_374.RULE index 44cff185bda..4fae845eda6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_374.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_374.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_374.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_374.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_374.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_375.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_375.RULE index bdb3acf72bf..9f794e5ecf5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_375.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_375.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Free Software and licenced under LGPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_375.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_375.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_375.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_376.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_376.RULE index 9657a145cc2..8ab23932669 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_376.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_376.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licenced under LGPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_376.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_376.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_377.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_377.RULE index c8f22b10609..50e33090e58 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_377.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_377.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The library and database are licensed under the terms of the GNU LGPL version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_377.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_377.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_378.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_378.RULE index 66d5a584faa..fb4b0d643a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_378.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_378.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + License: The library is distributed under the LGPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_378.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_378.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_378.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_379.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_379.RULE index 7eeb8a0d836..09e087ef508 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_379.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_379.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The library is distributed under the LGPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_379.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_379.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_379.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_38.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_38.RULE index 3a50b05c85b..63499f4edc8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_38.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_38.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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; either version 2 of @@ -10,4 +15,4 @@ GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +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-2.0-plus_38.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_38.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_38.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_380.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_380.RULE index ccefe257795..e06bbd56c57 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_380.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_380.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_380.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_380.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_380.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_381.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_381.RULE index 4a2c033f961..fb1b42ae76f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_381.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_381.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_381.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_381.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_381.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_382.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_382.RULE index aa1c69f6f0c..072dad9e33e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_382.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_382.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License v 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_382.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_382.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_382.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_383.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_383.RULE index e1aa8fd191c..8b8924afe52 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_383.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_383.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + All patches must be offered under the terms of the GNU LGPL license, so be sure you are authorized to give us the patch under those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_383.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_383.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_383.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_384.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_384.RULE index 8133408c16b..c39be45c1c7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_384.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_384.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + under the terms of the GNU LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_384.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_384.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_384.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_385.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_385.RULE index 15358dea92c..142b44491ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_385.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_385.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + under the terms of the GNU LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_385.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_385.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_385.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_386.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_386.RULE index 64cb3259f84..26a29678b7a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_386.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_386.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_386.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_386.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_387.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_387.RULE index 723bfbcd3fb..cb4b69f1b96 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_387.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_387.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + components licensed under LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_387.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_387.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_388.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_388.RULE index a3960a6090f..4fe5ab8d984 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_388.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_388.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + components licensed under LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_388.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_388.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_389.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_389.RULE index 22c0a7dbed3..6498eacb667 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_389.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_389.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_389.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_389.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_389.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_39.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_39.RULE index ebd9dfb9c39..fb6bc5d04a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_39.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_39.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + The GNU C 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; either version 2 of the @@ -11,4 +18,4 @@ You should have received a copy of the GNU Library General Public License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, - Fifth Floor, Boston, MA 02110-1301, USA. */ + Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_39.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_39.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_39.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_390.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_390.RULE index 91e949f6afd..3a54589d4bc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_390.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_390.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under GNU LGPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_390.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_390.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_390.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_391.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_391.RULE index 67c8696b033..6a936442261 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_391.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_391.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms GNU LGPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_391.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_391.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_392.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_392.RULE index c5b273b1b6c..a91013336d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_392.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_392.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_392.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_392.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_392.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_393.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_393.RULE index ccffc3c0916..d985ad9ebb9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_393.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_393.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU LGPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_393.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_393.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_393.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_394.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_394.RULE index fb02993c917..28825fe412f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_394.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_394.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: conflicting references to GPL in the LGPL notice +--- + This program 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; either version 2.0 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_394.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_394.yml deleted file mode 100644 index f97fc5412e8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_394.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: conflicting references to GPL in the LGPL notice diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_395.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_395.RULE index 1f228af346b..7c966130dbc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_395.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_395.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +notes: typo in andor +--- + The GNU C Library is free software you can redistribute it andor modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation either version 2 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_395.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_395.yml deleted file mode 100644 index 15dc6987c9d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_395.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB -notes: typo in andor diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_396.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_396.RULE index 703c346f98f..b709a716754 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_396.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_396.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_396.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_396.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_396.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_397.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_397.RULE index 58987dfb367..e6ed9e66b23 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_397.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_397.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_397.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_397.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_397.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_398.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_398.RULE index 84000e6e056..67e0d8e67b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_398.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_398.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program 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; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_398.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_398.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_399.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_399.RULE index df41f03d048..eb91f6329f1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_399.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_399.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_399.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_399.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_399.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_4.RULE index 3607f9638ce..198b7c9ed92 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_4.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_40.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_40.RULE index 6d62ad9625d..72b6dbd91a5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_40.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_40.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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; either @@ -6,4 +11,4 @@ version 2 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 -Library General Public License for more details. +Library General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_40.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_40.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_400.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_400.RULE index 63fdf034b16..7231ade771a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_400.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_400.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_400.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_400.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_400.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_401.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_401.RULE index 308ee4be7fa..5f3f5f56090 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_401.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_401.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU Library General Public License as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_401.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_401.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_401.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_402.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_402.RULE index bc35501f6b8..cdb6bc75f7f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_402.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_402.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_402.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_402.yml deleted file mode 100644 index b11629d3917..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_402.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_403.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_403.RULE index 6369a72790f..63e7774d739 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_403.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_403.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_403.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_403.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_403.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_404.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_404.RULE index 3335eba15ea..7a47d792c28 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_404.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_404.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_404.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_404.yml deleted file mode 100644 index 7dfe66a8e56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_404.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_405.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_405.RULE index e7fed44cad5..09b72e1f1fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_405.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_405.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_405.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_405.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_405.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_406.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_406.RULE index 029306d4dd5..a0a7c58e6d1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_406.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_406.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + sofware distributed under LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_406.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_406.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_406.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_407.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_407.RULE index 5d3389df11f..9e4628e3125 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_407.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_407.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_407.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_407.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_407.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_408.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_408.RULE index f7d529b99d3..eb84a96408f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_408.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_408.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_408.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_408.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_408.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_409.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_409.RULE index 98fda1190df..74cf329575a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_409.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_409.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_409.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_409.yml deleted file mode 100644 index 4681cdf83a7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_409.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_41.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_41.RULE index 53dc727ff2d..815a165cae8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_41.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +notes: the wording of this notice is uncommon but the license terms seem to be clearly LGPL-2.0-plu +--- + 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 of the License, or @@ -6,4 +12,4 @@ 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. + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_41.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_41.yml deleted file mode 100644 index b9ecdfc2797..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -notes: the wording of this notice is uncommon but the license terms seem to be clearly LGPL-2.0-plu diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_410.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_410.RULE index 4ac86953fcc..ca4541899a7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_410.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_410.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_410.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_410.yml deleted file mode 100644 index 4681cdf83a7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_410.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_411.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_411.RULE index ee8f765df82..e75ea21b739 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_411.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_411.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This file may be used subject to the terms and conditions of the GNU Library General Public License Version 2, or any later version at your option, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_411.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_411.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_411.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_412.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_412.RULE index 1ca1b6b3c5f..9824ba76032 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_412.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_412.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library Public License as published by the Free Software Foundation; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_412.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_412.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_412.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_413.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_413.RULE index d6def0242e8..3c1dee0c0c7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_413.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_413.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, version 2 or later diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_413.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_413.yml deleted file mode 100644 index 77aa88bf7c3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_413.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_414.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_414.RULE index 8bcec930482..27d5ad5b3b2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_414.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_414.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 99 +referenced_filenames: + - lgpl.lic +--- + lgpl.lic \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_414.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_414.yml deleted file mode 100644 index 19c5951caeb..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_414.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 99 -referenced_filenames: - - lgpl.lic diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_415.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_415.RULE index eb7d6ebeb71..839f2b684a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_415.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_415.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Library General Public License, version 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_415.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_415.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_415.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_416.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_416.RULE index 037521d4c0c..678760628e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_416.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_416.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser General Public License, version 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_416.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_416.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_416.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_417.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_417.RULE index 50d7ed1da49..20f54d5ccfb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_417.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_417.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_417.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_417.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_417.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_418.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_418.RULE index a46c45a1a5f..02510a40663 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_418.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_418.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + The GNU C 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; either version 2 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_418.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_418.yml deleted file mode 100644 index 7dfe66a8e56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_418.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_419.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_419.RULE index 0ec16de3fb6..2e698e4981f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_419.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_419.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU Library General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_419.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_419.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_419.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_42.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_42.RULE index e564c640bb5..df1130e9aa5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_42.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_42.RULE @@ -1,4 +1,9 @@ +--- +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 Lesser General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_42.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_42.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_42.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_420.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_420.RULE index fd31a0b72ee..1f5b55ac0e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_420.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_420.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_420.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_420.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_420.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_421.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_421.RULE index 999ab8ffc9d..46212a60de3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_421.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_421.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + this product may be distributed under the terms of LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_421.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_421.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_421.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_422.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_422.RULE index d10fe82bbf5..b0fb3ba5be2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_422.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_422.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 99 +--- + change license to LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_422.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_422.yml deleted file mode 100644 index cae72560810..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_422.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_423.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_423.RULE index ed729591811..cfeed6dc89d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_423.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_423.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 99 +--- + Copying-policy: LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_423.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_423.yml deleted file mode 100644 index cae72560810..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_423.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_424.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_424.RULE index 12d988a91a3..b597a5c48e0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_424.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_424.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 90 +notes: the relevance is not 100 because the license uses "lesser" and a v2 but the v2 should + be "library" and only v2.1 and v3 of the lgpl are using "lesser". +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_424.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_424.yml deleted file mode 100644 index 13fd1702326..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_424.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 90 -notes: the relevance is not 100 because the license uses "lesser" and a v2 - but the v2 should be "library" and only v2.1 and v3 of the lgpl are - using "lesser". diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_425.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_425.RULE index 58a7d0fe927..c713572b84a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_425.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_425.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_425.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_425.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_425.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_426.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_426.RULE index 4468b15c957..6079e267f6b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_426.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_426.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + You can Freely distribute this program under the GNU Library General Public License. See the file "COPYING" for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_426.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_426.yml deleted file mode 100644 index 4681cdf83a7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_426.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_427.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_427.RULE index 20eb1e5abd4..f02a7089123 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_427.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_427.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Library or "Lesser" General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_427.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_427.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_427.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_428.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_428.RULE index 07628ec5b91..a410ad1e404 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_428.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_428.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_428.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_428.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_428.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_429.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_429.RULE index df27676d7f4..57667d1c5ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_429.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_429.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_429.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_429.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_429.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_43.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_43.RULE index 30728945548..cbf62b18eb2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_43.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_43.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + This file is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by @@ -12,4 +19,4 @@ License for more details. You should have received a copy of the GNU Library General Public License along with this file; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, -MA 02111-1307, USA. */ +MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_43.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_43.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_43.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_430.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_430.RULE index 5fdeef592c4..4b76e9437c4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_430.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_430.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU LGPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_430.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_430.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_430.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_431.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_431.RULE index b1ed5d4399d..16df246952c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_431.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_431.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Library General Public \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_431.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_431.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_431.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_432.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_432.RULE index 3a938785fbb..99413da3b37 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_432.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_432.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Library General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_432.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_432.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_432.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_433.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_433.RULE index 192cf2027ab..8b80cbb4f19 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_433.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_433.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU (Library)|(Lesser) General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_433.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_433.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_433.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_434.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_434.RULE index 28e5cb32da2..56ad70110f2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_434.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_434.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU LGPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_434.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_434.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_434.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_435.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_435.RULE index 72a686a5c0d..cda71ada38e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_435.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_435.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lgpl-license.html +--- + License: Lesser GNU Public License (LGPL) * http://www.opensource.org/licenses/lgpl-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_435.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_435.yml deleted file mode 100644 index a16ec35962a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_435.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lgpl-license.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_436.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_436.RULE index 029842c3b62..5d50c08b349 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_436.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_436.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: Seen in libguestfs +--- + (NB: I modified the original GPL boilerplate here to LGPLv2+. This is because of the weird way that gnulib uses licenses, where the real license is covered in the modules/X file. The real license diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_436.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_436.yml deleted file mode 100644 index 9043cfaa67c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_436.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: Seen in libguestfs diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_437.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_437.RULE index 1003baf0a1e..1cc2562a1e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_437.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_437.RULE @@ -1 +1,9 @@ -On Debian systems, the complete text of the GNU Lesser General Public License can be found in usr/share/common-licenses/LGPL. +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + +On Debian systems, the complete text of the GNU Lesser General Public License can be found in usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_437.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_437.yml deleted file mode 100644 index 787d49d1892..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_437.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_438.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_438.RULE index c72bd40c843..5599b5c4c49 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_438.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_438.RULE @@ -1 +1,10 @@ -can be found in /usr/share/common-licenses/LGPL +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + +can be found in /usr/share/common-licenses/LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_438.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_438.yml deleted file mode 100644 index 353ad8d2739..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_438.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_439.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_439.RULE index cc1808b1937..60fa0b53f08 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_439.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_439.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + The library is distributed under the terms of the GNU Lesser General Public License (LGPL); see the file COPYING.LIB for the - actual terms. + actual terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_439.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_439.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_439.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_44.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_44.RULE index 19df3dd2cb8..b8f5ce40298 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_44.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_44.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, or (at @@ -11,4 +18,4 @@ You should have received a copy of the GNU Library General Public Licence along with this software, usually in a file named COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, - MA 02110-1301, USA. + MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_44.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_44.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_44.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_440.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_440.RULE index e0e1874675e..ea7edf855fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_440.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_440.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GNU Lesser General Public \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_440.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_440.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_440.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_441.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_441.RULE index 418fe50755f..917ff5b08e4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_441.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_441.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_441.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_441.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_441.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_442.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_442.RULE index c64bd3d2ced..9461d57383e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_442.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_442.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Previous versions are still licensed LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_442.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_442.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_442.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_443.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_443.RULE index 57f1cb253d8..0a84ccf8363 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_443.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_443.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_443.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_443.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_443.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_444.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_444.RULE index 338f93305c4..b25d69df545 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_444.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_444.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPLv2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_444.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_444.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_444.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_445.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_445.RULE index e6b5e0bba75..52f9e0bc201 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_445.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_445.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + /* Licensed under LGPLv2+ - see LICENSE file for details */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_445.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_445.yml deleted file mode 100644 index 78c077dc002..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_445.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_446.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_446.RULE index ff64b22bcc8..ea7e68b9284 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_446.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_446.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPLv2+ only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_446.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_446.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_446.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_447.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_447.RULE index d1cfb035bf7..978f12b91ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_447.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_447.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + additions are licensed under LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_447.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_447.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_447.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_448.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_448.RULE index 773f398e953..5c7071d812d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_448.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_448.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - README +--- + The data files are licensed under LGPLv2+, see the README file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_448.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_448.yml deleted file mode 100644 index a8283b01717..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_448.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_449.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_449.RULE index 2e2e0c7b707..eb59536d57f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_449.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_449.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The data files are licensed under LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_449.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_449.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_449.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_45.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_45.RULE index b3fba3a5bbe..8d7d4f26246 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_45.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_45.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + 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; either version 2 of the License, or (at @@ -11,4 +18,4 @@ You should have received a copy of the GNU Library General Public License along with this software, usually in a file named COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, - MA 02110-1301, USA. + MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_45.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_45.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_45.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_450.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_450.RULE index dda6177d93e..7625862faa4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_450.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_450.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + which is LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_450.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_450.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_450.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_451.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_451.RULE index 05ccfe429cc..b234c8a6ed9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_451.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_451.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_451.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_451.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_451.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_452.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_452.RULE index 91651a22f15..8057811c790 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_452.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_452.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_452.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_452.yml deleted file mode 100644 index 1a5e48416ee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_452.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_453.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_453.RULE index 73430b9e4b2..ac79f2278e4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_453.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_453.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Putting LGPL headers \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_453.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_453.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_453.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_454.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_454.RULE index d5810c64b94..b1017c706d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_454.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_454.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + "LGPL version 2 or later", \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_454.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_454.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_454.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_455.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_455.RULE index e7e1e6312a8..257b12069de 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_455.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_455.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + library is covered by LGPL2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_455.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_455.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_455.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_456.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_456.RULE index 45119014aea..8873b559e33 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_456.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_456.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_456.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_456.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_456.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_457.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_457.RULE index 790e0ed503f..0619c7ea423 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_457.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_457.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_457.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_457.yml deleted file mode 100644 index 1a5e48416ee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_457.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_458.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_458.RULE index ec881f6734e..2c5a14f7a4b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_458.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_458.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: LGPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by @@ -15,4 +23,4 @@ License: LGPL-2+ . On Debian GNU/Linux systems, the complete text of the GNU Library General Public License, version 2, can be found in - /usr/share/common-licenses/LGPL-2. + /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_458.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_458.yml deleted file mode 100644 index 5f3cc5b8cbc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_458.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_459.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_459.RULE index 7605ed4696d..cb68763ca30 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_459.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_459.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + License: LGPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_459.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_459.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_459.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_46.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_46.RULE index af386371faf..fbccd96e34f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_46.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_46.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/ +--- + is free; you can redistribute it and/or modify it under the terms of the GNU Library General Public Licence as published by the Free Software Foundation; either @@ -14,4 +21,4 @@ is free; you can redistribute it and/or Licence along with ; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA, or see - http://www.gnu.org/ + http://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_46.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_46.yml deleted file mode 100644 index 725aa8f5022..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_46.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_460.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_460.RULE index 499a1d9d0ec..7c9cfd332a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_460.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_460.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + This program 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; either version 2 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_460.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_460.yml deleted file mode 100644 index 1a5e48416ee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_460.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_461.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_461.RULE index dc0868b4497..f561278d91b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_461.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_461.RULE @@ -1,3 +1,8 @@ +--- +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 Library General Public License as published by the Free Software Foundation; either version 2 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_461.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_461.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_461.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_462.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_462.RULE index 3d4c1cefbb5..1b2f6959189 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_462.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_462.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_462.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_462.yml deleted file mode 100644 index f90d3d114af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_462.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_463.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_463.RULE index 9160c3f49ec..24e87a2ef30 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_463.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_463.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_463.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_463.yml deleted file mode 100644 index ecb6e389dc6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_463.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_464.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_464.RULE index c2457b41553..23e65a668a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_464.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_464.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - http://www.gnu.org/ +--- + Covered under GNU LibraryGeneral Public License. More about Library GPL can be found at http://www.gnu.org/ (or) in file named LGPL-2 under /usr/share/common-licenses/ directory and is also stated as below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_464.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_464.yml deleted file mode 100644 index d70d85046db..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_464.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_465.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_465.RULE index 904804379c1..d99a15a3b74 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_465.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_465.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_465.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_465.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_465.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_466.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_466.RULE index f53d5d05387..b08edd7b279 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_466.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_466.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + . On Debian GNU/Linux systems, the complete text of the newest version of the GNU Lesser General Public License can be found in diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_466.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_466.yml deleted file mode 100644 index eecb7e83217..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_466.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_467.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_467.RULE index be2102f40f7..d28d29f694f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_467.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_467.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + the license headers of the LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_467.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_467.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_467.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_468.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_468.RULE index b54ad0bdd63..439934d19a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_468.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_468.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_468.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_468.yml deleted file mode 100644 index 864902de87f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_468.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_469.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_469.RULE index d792c23c63e..ca4488bd13b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_469.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_469.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + This file is part of the libiberty library. Libiberty is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_469.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_469.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_469.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_47.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_47.RULE index 515ef57c542..c5902599521 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_47.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_47.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB + - COPYING.LIother.m_ +notes: there is a likely typo in the referenced filename +--- + 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; either @@ -11,4 +20,4 @@ You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIother.m_ If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USm_ + Boston, MA 02110-1301, USm_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_47.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_47.yml deleted file mode 100644 index 3ea2fff5edf..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_47.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB - - COPYING.LIother.m_ -notes: there is a likely typo in the referenced filename diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_470.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_470.RULE index 7723cbd1644..31d62bfe7ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_470.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_470.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: LGPL-2+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -14,4 +23,4 @@ License: LGPL-2+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . On Debian GNU/Linux systems, the complete text of the GNU Library General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. + can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_470.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_470.yml deleted file mode 100644 index 597ece82b5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_470.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_471.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_471.RULE index e4a3b4d5a37..c6ff2058015 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_471.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_471.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: LGPL-2+ On Debian GNU/Linux systems the full text of the GNU LGPL v2 can be found in the `/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_471.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_471.yml deleted file mode 100644 index 937f7988c1c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_471.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_472.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_472.RULE index 8fdf5e28108..af284a28e43 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_472.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_472.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_472.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_472.yml deleted file mode 100644 index ab6ad2bc5af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_472.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_473.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_473.RULE index 29c09dc80cb..501df8ee713 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_473.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_473.RULE @@ -1,7 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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; either version 2 of the License, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2 file. +License can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_473.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_473.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_473.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_474.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_474.RULE index 04361b9a820..3b0447657b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_474.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_474.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_474.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_474.yml deleted file mode 100644 index 597ece82b5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_474.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_475.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_475.RULE index fea5894faeb..f6ab7cc40a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_475.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_475.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_475.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_475.yml deleted file mode 100644 index ab6ad2bc5af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_475.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_476.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_476.RULE index 5fd7d119f39..4c7f1291d0c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_476.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_476.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_476.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_476.yml deleted file mode 100644 index 84a7632320e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_476.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE index 2c9250c82db..89b15b7ee5b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_477.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_477.yml deleted file mode 100644 index ecb6e389dc6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_477.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_478.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_478.RULE index 02e291b0bf1..f4000478494 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_478.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_478.RULE @@ -1,2 +1,9 @@ -/* licensed under https://www.gnu.org/licenses/lgpl.html */ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- +/* licensed under https://www.gnu.org/licenses/lgpl.html */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_478.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_478.yml deleted file mode 100644 index d639274e111..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_478.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_479.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_479.RULE index 1208691859c..4cfeb2b0bd9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_479.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_479.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: lgpl 2 or later python +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + # This file is part of a program licensed under the terms of the GNU Lesser # General Public License version 2 (or at your option any later version) # as published by the Free Software Foundation: https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_479.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_479.yml deleted file mode 100644 index ac42ec6fb61..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_479.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: lgpl 2 or later python -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_48.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_48.RULE index c13f2538918..6ccc06f8851 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_48.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_48.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + 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; either @@ -11,4 +18,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_48.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_48.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_48.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_480.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_480.RULE index 667708d202b..fcc1d65b15c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_480.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_480.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, version 2 or later @@ -12,4 +20,4 @@ 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 library; if not, see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_480.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_480.yml deleted file mode 100644 index 2e3d0d09173..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_480.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_481.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_481.RULE index 2972dc39361..bfddc65964c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_481.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_481.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, version 2 or later @@ -14,4 +22,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_481.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_481.yml deleted file mode 100644 index 2e3d0d09173..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_481.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_482.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_482.RULE index c51051d7ca6..6a4483f9db1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_482.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_482.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: this is a confused notice mixing v2 and v2.1 references +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_482.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_482.yml deleted file mode 100644 index 05b477c455b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_482.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: this is a confused notice mixing v2 and v2.1 references -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_483.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_483.RULE index bd22fb341c2..34fa9e97232 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_483.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_483.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + The Java library is covered by the GNU Lesser General Public License: diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_483.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_483.yml deleted file mode 100644 index da84d614998..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_483.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_484.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_484.RULE index e3c101c2a6a..4c006c1a8b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_484.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_484.RULE @@ -1,7 +1,15 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + covered by the GNU Lesser General Public License: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 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 library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html https://www.gnu.org/licenses/lgpl.html +You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_484.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_484.yml deleted file mode 100644 index a4d5ea271b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_484.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_485.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_485.RULE index 70656ae363f..0d138c4f028 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_485.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_485.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + ** NOTE! The following LGPL license applies to the tdb ** library. This does NOT imply that all of Samba is released diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_485.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_485.yml deleted file mode 100644 index 46c33577263..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_485.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_486.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_486.RULE index 078985fcb13..3070931cf41 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_486.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_486.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- +

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_486.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_486.yml deleted file mode 100644 index a4d5ea271b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_486.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_487.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_487.RULE index 9bc7de549c4..c701775957a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_487.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_487.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, -version 2 or later +version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_487.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_487.yml deleted file mode 100644 index 2e3d0d09173..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_487.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_488.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_488.RULE index 60727439379..345641e9fe6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_488.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_488.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + library is covered by the GNU Lesser General Public License: This library is free software; you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_488.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_488.yml deleted file mode 100644 index a4d5ea271b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_488.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_489.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_489.RULE index d116c21b2b3..514d8c2cbf5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_489.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_489.RULE @@ -1,5 +1,15 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/licenses/licenses.html#LGPL +--- + is available under the terms of the GNU Library General Public License (LGPL), version 2 (or at your discretion any later version). A copy of the LGPL should be included with this library in the file COPYING. If not, write to https://www.gnu.org/licenses/licenses.html#LGPL -https://www.gnu.org/licenses/licenses.html#LGPL +https://www.gnu.org/licenses/licenses.html#LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_489.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_489.yml deleted file mode 100644 index bb5db89b1c6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_489.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/licenses/licenses.html#LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_49.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_49.RULE index 25388ba8e2b..d79093e6d7f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_49.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_49.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + 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; either @@ -11,5 +18,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License aint with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA 02110-1301, USA. - +Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_49.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_49.yml deleted file mode 100644 index e9e078caea5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_49.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_490.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_490.RULE index 199d93180d5..9e4db9596bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_490.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_490.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + 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 of diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_490.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_490.yml deleted file mode 100644 index 80681a7045e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_490.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_491.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_491.RULE index f96021bb9a5..b77358206bf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_491.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_491.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + The Java library is covered by the GNU Lesser General Public License: This library is free software; you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_491.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_491.yml deleted file mode 100644 index a4d5ea271b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_491.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_492.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_492.RULE index 97d632bfb36..88fa1e1d255 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_492.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_492.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + library is covered by the GNU Lesser General Public License: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_492.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_492.yml deleted file mode 100644 index da84d614998..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_492.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_493.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_493.RULE index 55f40b6dc9d..fc246b2c489 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_493.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_493.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + * AutoOpts is a copyrighted work. This header file is not encumbered * by AutoOpts licensing, but is provided under the licensing terms chosen * by the genshellopt author or copyright holder. AutoOpts is diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_493.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_493.yml deleted file mode 100644 index 2e3d0d09173..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_493.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_494.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_494.RULE index a717846572e..6786c656380 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_494.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_494.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +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 Library General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_494.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_494.yml deleted file mode 100644 index 30dd5e4cce2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_494.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_495.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_495.RULE index 5c6b01398a8..9700d796f0e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_495.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_495.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + This is "Open Source" software and released under the "https://www.gnu.org/licenses/lgpl.html">GNU/LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_495.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_495.yml deleted file mode 100644 index a4d5ea271b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_495.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_496.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_496.RULE index 8e1206c09bb..25923ab0ecc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_496.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_496.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + ## License All source code is licensed under the [GNU Lesser General Public License](https://www.gnu.org/licenses/lgpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_496.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_496.yml deleted file mode 100644 index a4d5ea271b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_496.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_497.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_497.RULE index c3562897e3c..02ba04ca33b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_497.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_497.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lgpl.html +--- + LGPL = GNU General Public License, https://www.gnu.org/copyleft/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_497.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_497.yml deleted file mode 100644 index f7dc86da85f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_497.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_498.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_498.RULE index 6556b0f74d5..28c88616ea3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_498.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_498.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + 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; either @@ -11,5 +19,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not see or write to the Free Software Foundation, Inc., -51 Franklin St., Fifth Floor, Boston, MA 02110, USA - +51 Franklin St., Fifth Floor, Boston, MA 02110, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_498.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_498.yml deleted file mode 100644 index aa1857edcc7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_498.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_499.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_499.RULE index 378305f9e50..f901b0b7f8c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_499.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_499.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + 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 of diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_499.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_499.yml deleted file mode 100644 index 80681a7045e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_499.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_5.RULE index 5caf7201110..652d7507ed2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +notes: lgpl 2.0 + +--- + LGPL 2 OR LATER is free software; you can redistribute it and/or modify (it)? diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_5.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_5.yml deleted file mode 100644 index 8667ead5007..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -notes: lgpl 2.0 + diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_50.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_50.RULE index 49638cf9db1..d22a8cbbf54 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_50.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_50.RULE @@ -1,3 +1,8 @@ +--- +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 Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at @@ -6,4 +11,4 @@ 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. + General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_50.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_50.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_50.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_500.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_500.RULE index 8106b645b92..84b9d3e98c9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_500.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_500.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 96 +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 Lesser General Public License // as published by the Free Software Foundation; either version 2 @@ -9,4 +18,4 @@ // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with this program; if not, see . +// along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_500.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_500.yml deleted file mode 100644 index 48db9893330..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_500.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 96 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_501.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_501.RULE index bc426305607..51e7e7d0ed4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_501.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_501.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - https://www.gnu.org/ +--- + Covered under GNU LibraryGeneral Public License. More about Library GPL can be found at https://www.gnu.org/ (or) in file named LGPL-2 under /usr/share/common-licenses/ directory and is also stated as below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_501.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_501.yml deleted file mode 100644 index 65c50d11f70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_501.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_502.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_502.RULE index 9575d842d00..2008da8e1ce 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_502.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_502.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_502.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_502.yml deleted file mode 100644 index 30dd5e4cce2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_502.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_503.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_503.RULE index 5f7af611a56..3220169e7a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_503.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_503.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + ### License * [LGPL](https://www.gnu.org/licenses/lgpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_503.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_503.yml deleted file mode 100644 index a4d5ea271b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_503.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_504.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_504.RULE index 73c2db7adee..f35ba62d33e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_504.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_504.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_504.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_504.yml deleted file mode 100644 index 11c640ea343..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_504.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_505.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_505.RULE index d9e37257185..46724a0609b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_505.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_505.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- +

The Java library is covered by the GNU Lesser General Public License:

diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_505.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_505.yml deleted file mode 100644 index da84d614998..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_505.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_506.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_506.RULE index e27afee78de..5c99b91e20d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_506.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_506.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, version 2 or later diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_506.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_506.yml deleted file mode 100644 index 2e3d0d09173..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_506.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_507.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_507.RULE index 2619e9f5e42..3879fcf27a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_507.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_507.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +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 Lesser General Public License as published by the Free Software Foundation, either version 2 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_507.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_507.yml deleted file mode 100644 index ba94f233016..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_507.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_508.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_508.RULE index 18cc6971864..5aca08b944d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_508.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_508.RULE @@ -1 +1,9 @@ -https://www.gnu.org/licenses/licenses.html#LGPL +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/licenses.html#LGPL +--- + +https://www.gnu.org/licenses/licenses.html#LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_508.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_508.yml deleted file mode 100644 index 25983c869c6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_508.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/licenses.html#LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_509.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_509.RULE index 0cbea1eb5fb..09d104ec511 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_509.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_509.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + is free; you can redistribute it and/or modify it under the terms of the GNU Library General Public Licence as published by the Free Software Foundation; either @@ -14,4 +22,4 @@ is free; you can redistribute it and/or Licence along with ; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA, or see - https://www.gnu.org/ + https://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_509.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_509.yml deleted file mode 100644 index 80681a7045e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_509.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_51.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_51.RULE index eec4b214302..f63648c3082 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_51.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_51.RULE @@ -1 +1,7 @@ -license: LGPL +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + +license: LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_51.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_51.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_510.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_510.RULE index 78dca372f72..31e08719176 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_510.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_510.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_510.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_510.yml deleted file mode 100644 index ba94f233016..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_510.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_511.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_511.RULE index 36df4bb4b8f..9fea94fd99e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_511.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_511.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + * AutoOpts is a copyrighted work. This source file is not encumbered * by AutoOpts licensing, but is provided under the licensing terms chosen * by the genshellopt author or copyright holder. AutoOpts is diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_511.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_511.yml deleted file mode 100644 index 2e3d0d09173..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_511.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_512.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_512.RULE index 9c8ca01f288..16302a6e1cc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_512.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_512.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: this is a 2.1 notice with a 2 version +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 Lesser General Public License as published by the Free Software Foundation; either version 2, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_512.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_512.yml deleted file mode 100644 index b5f17012a7d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_512.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: this is a 2.1 notice with a 2 version -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_513.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_513.RULE index d3efdf0f4fd..d2cff36fc82 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_513.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_513.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_513.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_513.yml deleted file mode 100644 index 30dd5e4cce2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_513.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_514.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_514.RULE index 13458c5875a..ec9bf4e6521 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_514.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_514.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_514.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_514.yml deleted file mode 100644 index ba94f233016..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_514.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_515.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_515.RULE index 03596f4ac1c..b3bc328a0f3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_515.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_515.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the LGPL, version 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_515.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_515.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_515.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_516.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_516.RULE index a56e7d71393..b9729bef9c3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_516.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_516.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + library is released under LGPL so that it may be linked with 3rd party software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_516.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_516.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_516.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_517.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_517.RULE index b650e23bd05..ebc9753a311 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_517.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_517.RULE @@ -1 +1,10 @@ -On Debian systems, the text of the GNU Lesser General Public License can be found in usr/share/common-licenses/LGPL. +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + +On Debian systems, the text of the GNU Lesser General Public License can be found in usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_517.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_517.yml deleted file mode 100644 index 353ad8d2739..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_517.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_518.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_518.RULE index 6df3b9c5f56..65f180f3441 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_518.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_518.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: LGPL-2+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -14,4 +23,4 @@ License: LGPL-2+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the text of the GNU Library General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. + can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_518.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_518.yml deleted file mode 100644 index 597ece82b5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_518.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_519.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_519.RULE index 87cfb825651..08e807b6cf4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_519.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_519.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This package 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 @@ -13,4 +19,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. +Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_519.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_519.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_519.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_52.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_52.RULE index a86e01850db..373b73db242 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_52.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_52.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, version 2 or later @@ -14,4 +21,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_52.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_52.yml deleted file mode 100644 index db65438e245..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_52.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_520.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_520.RULE index de9c5ffeaa9..2250ae7d3bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_520.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_520.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_520.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_520.yml deleted file mode 100644 index ab6ad2bc5af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_520.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_521.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_521.RULE index 23ff804e01a..aab1f6ac258 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_521.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_521.RULE @@ -1,7 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + 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; either version 2 of the License, or (at your option) any later version. On Debian systems, the text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2 file. +License can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_521.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_521.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_521.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_522.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_522.RULE index ec88eee0b2c..5d896398636 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_522.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_522.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_522.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_522.yml deleted file mode 100644 index ba94f233016..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_522.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_523.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_523.RULE index cdf92b53d86..e668c55dc65 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_523.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_523.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_523.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_523.yml deleted file mode 100644 index 597ece82b5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_523.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_524.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_524.RULE index 0794ae66bd4..0637edafdc0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_524.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_524.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_524.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_524.yml deleted file mode 100644 index 84a7632320e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_524.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_525.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_525.RULE index 4041c0baf2f..72eb2febcbc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_525.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_525.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_525.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_525.yml deleted file mode 100644 index ab6ad2bc5af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_525.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_526.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_526.RULE index 1507c7daf25..5a02af052f9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_526.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_526.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + This module 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 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_526.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_526.yml deleted file mode 100644 index 1a5e48416ee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_526.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_527.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_527.RULE index dc979166fca..3bf41f9f9e4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_527.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_527.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + This module is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_527.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_527.yml deleted file mode 100644 index 1a5e48416ee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_527.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_528.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_528.RULE index 9242d0c8a78..9f5a756c748 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_528.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_528.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: LGPL-2+ On Debian systems, the complete text of the LGPL-2 can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_528.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_528.yml deleted file mode 100644 index 611d91f095a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_528.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_529.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_529.RULE index 715f3fc3643..419c64575b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_529.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_529.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_529.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_529.yml deleted file mode 100644 index 1a5e48416ee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_529.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_53.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_53.RULE index ed810ffeef1..faa46f307b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_53.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_53.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, -version 2 or later +version 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_53.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_53.yml deleted file mode 100644 index db65438e245..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_53.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_530.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_530.RULE index 4de1f1337bf..2708603a9d6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_530.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_530.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_530.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_530.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_530.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_531.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_531.RULE index 11b28ff76b3..c41cbc3a621 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_531.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_531.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 99 +--- + Lesser General Purpose license (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_531.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_531.yml deleted file mode 100644 index 35b5091f3be..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_531.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_532.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_532.RULE index eab0c6345a8..9a9065562e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_532.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_532.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 99 +--- + Lesser General Purpose license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_532.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_532.yml deleted file mode 100644 index 35b5091f3be..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_532.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_533.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_533.RULE index c0d6e85f061..232bba75d77 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_533.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_533.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 99 +--- + Lesser General Purpose Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_533.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_533.yml deleted file mode 100644 index 35b5091f3be..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_533.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_534.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_534.RULE index 51ae65c5314..9631ebead23 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_534.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_534.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + LGPL-2.0+ GNU Library General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_534.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_534.yml deleted file mode 100644 index e2f529069b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_534.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_535.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_535.RULE index a3100779b0b..f5153c113fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_535.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_535.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Library General Public License v2 or later LGPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_535.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_535.yml deleted file mode 100644 index e2f529069b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_535.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_536.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_536.RULE index 909e55b53f7..88674abcb84 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_536.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_536.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : LGPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_536.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_536.yml deleted file mode 100644 index c2afb0ada6b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_536.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_537.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_537.RULE index 6025f60c925..3cc0d75df25 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_537.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_537.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : LGPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_537.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_537.yml deleted file mode 100644 index e2f529069b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_537.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_538.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_538.RULE index f31384503e6..15c31ac25d9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_538.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_538.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Library General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_538.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_538.yml deleted file mode 100644 index e2f529069b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_538.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_539.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_539.RULE index 6e68386a1a7..54d8090a1ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_539.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_539.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPL-2.0-or-later GNU Library General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_539.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_539.yml deleted file mode 100644 index 4501a7f3e1d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_539.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_54.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_54.RULE index 7661ac99ed5..1480b7e15a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_54.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_54.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, version 2 or later @@ -12,4 +19,4 @@ 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 library; if not, see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_54.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_54.yml deleted file mode 100644 index db65438e245..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_54.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_540.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_540.RULE index 52caa619947..aa5d1fdb0af 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_540.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_540.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Library General Public License v2 or later LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_540.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_540.yml deleted file mode 100644 index 4501a7f3e1d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_540.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_541.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_541.RULE index 36944c1ac9d..aef4e6c0060 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_541.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_541.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_541.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_541.yml deleted file mode 100644 index 2af435ffd56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_541.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_542.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_542.RULE index 6e1f5b5a656..a3c5f96cdb5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_542.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_542.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Library General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_542.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_542.yml deleted file mode 100644 index 2af435ffd56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_542.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_543.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_543.RULE index 3e05f61a941..2eb37dfa510 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_543.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_543.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_543.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_543.yml deleted file mode 100644 index 2af435ffd56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_543.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_544.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_544.RULE index 25b17add54d..44347a8ba14 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_544.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_544.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + - LicenseRef-LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_544.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_544.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_544.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_545.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_545.RULE index 15405e992c7..4c0151c48fb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_545.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_545.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LGPL-2.0-or-later +--- + https://licenses.nuget.org/LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_545.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_545.yml deleted file mode 100644 index ed7ba5a7748..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_545.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LGPL-2.0-or-later diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_546.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_546.RULE index 184317bae96..08b73b93e29 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_546.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_546.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_546.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_546.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_546.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_547.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_547.RULE index a59d97e3daa..282bb481cfc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_547.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_547.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + licenses: LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_547.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_547.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_547.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_548.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_548.RULE index dffc57937ef..9889bd5c7e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_548.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_548.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0 +--- + {{LGPL-2.0}} https://spdx.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_548.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_548.yml deleted file mode 100644 index 8773afde649..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_548.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_549.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_549.RULE index 843a47f65fd..133d7cec5b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_549.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_549.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0 +--- + LICENSE {{LGPL-2.0}} https://spdx.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_549.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_549.yml deleted file mode 100644 index 8773afde649..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_549.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_55.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_55.RULE index 816827e8e4a..f31e7b305a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_55.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_55.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + LEGAL LGPL @@ -15,4 +20,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +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-2.0-plus_55.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_55.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_55.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_550.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_550.RULE index c0f85a020aa..d8f8e9fa149 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_550.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_550.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0-or-later +--- + LICENSE {{LGPL-2.0-or-later}} https://spdx.org/licenses/LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_550.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_550.yml deleted file mode 100644 index 755452a31dc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_550.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0-or-later diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_551.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_551.RULE index ae3b7b5d8d1..7ab186edd0d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_551.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_551.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0-or-later +--- + {{LGPL-2.0-or-later}} https://spdx.org/licenses/LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_551.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_551.yml deleted file mode 100644 index 755452a31dc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_551.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0-or-later diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_552.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_552.RULE index ec27f0f266f..b1d1f5d75a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_552.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_552.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0 +--- + LICENSE {{LGPL-2.0+}} https://spdx.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_552.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_552.yml deleted file mode 100644 index 8773afde649..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_552.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_553.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_553.RULE index 5b320e85f23..69c6ac07bcd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_553.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_553.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0 +--- + LICENSE {{LGPL-2+}} https://spdx.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_553.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_553.yml deleted file mode 100644 index 8773afde649..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_553.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_554.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_554.RULE index 6b46bf6e4a6..970559adf7b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_554.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_554.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0 +--- + {{LGPL-2.0+}} https://spdx.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_554.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_554.yml deleted file mode 100644 index 8773afde649..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_554.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_555.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_555.RULE index afef428c01e..5cc11882c3f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_555.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_555.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * This file is placed under the LGPL. Please see the * file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_555.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_555.yml deleted file mode 100644 index 4681cdf83a7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_555.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_556.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_556.RULE index a1cce95026a..6a312d96d11 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_556.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_556.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * This file is placed under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_556.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_556.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_556.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_56.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_56.RULE index 20bf7f78aa0..ea3a7c6d7ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_56.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_56.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + ("LGPL2" t "This library is free software; you can redistribute it and/or" @@ -15,4 +20,4 @@ "You should have received a copy of the GNU Lesser General" "Public License along with this library; if not, write to the" "Free Software Foundation, Inc., 59 Temple Place, Suite 330," - "Boston, MA 02111-1307 USA") + "Boston, MA 02111-1307 USA") \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_56.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_56.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_57.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_57.RULE index f31b699d7c0..1de61bbf1d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_57.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_57.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + LGPL Copyright @@ -14,4 +19,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +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-2.0-plus_57.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_57.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_58.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_58.RULE index cffb75b496b..f20fe2682d9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_58.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_58.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + library is covered by the GNU Lesser General Public License: This library is free software; you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_58.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_58.yml deleted file mode 100644 index 5462ecac6ca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_58.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_59.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_59.RULE index 3fc260a053b..e96d32222a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_59.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_59.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + The Java library is covered by the GNU Lesser General Public License: This library is free software; you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_59.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_59.yml deleted file mode 100644 index 5462ecac6ca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_59.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_590.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_590.RULE index bd1743b9d1e..18840713629 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_590.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_590.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_590.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_590.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_590.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_6.RULE index b18d85eabb1..3ac2ab43bfd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 100 +--- + 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 of the License, or @@ -10,4 +16,4 @@ 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 + 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-2.0-plus_6.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_6.yml deleted file mode 100644 index 6454f72f031..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60.RULE index e6f16246690..158d03a6b30 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + library is covered by the GNU Lesser General Public License: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_60.yml deleted file mode 100644 index 9fbadc8f072..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60_1.RULE index 1b03caf6433..bd2f72f5c4b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- +

The Java library is covered by the GNU Lesser General Public License:

diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_60_1.yml deleted file mode 100644 index 9fbadc8f072..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.RULE index cc3389477c9..c49f370d3de 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + The Java library is covered by the GNU Lesser General Public License: diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.yml deleted file mode 100644 index 9fbadc8f072..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.RULE index 366aa81e921..6cf339a4878 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- +

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.yml deleted file mode 100644 index 5462ecac6ca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.RULE index 45bfba0378c..e6d7763faef 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.yml deleted file mode 100644 index b5479376de4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_61.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_61.RULE index 313490f9ca9..f00e422b0d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_61.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_61.RULE @@ -1 +1,7 @@ -License: LGPL-2+ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + +License: LGPL-2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_61.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_61.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_62.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_62.RULE index e546e941ae4..0cc38ed90d1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_62.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_62.RULE @@ -1 +1,7 @@ -License: LGPL2+ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +License: LGPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_62.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_62.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_63.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_63.RULE index 3be174e6109..469400191a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_63.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_63.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_63.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_63.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_64.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_64.RULE index 94a99ef14a0..d2005ef6c90 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_64.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_64.RULE @@ -1,3 +1,8 @@ +--- +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 Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) @@ -11,4 +16,4 @@ 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, Fifth Floor, Boston, MA 02110-1301, - USA. */ + USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_64.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_64.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_64.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE index 33629855afe..484d6463a4b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + ** NOTE! The following LGPL license applies to the tdb ** library. This does NOT imply that all of Samba is released ** under the LGPL @@ -14,4 +19,4 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + 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/lgpl-2.0-plus_65.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_65.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_65.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_66.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_66.RULE index 88febcd166c..799ee2470a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_66.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_66.RULE @@ -1,5 +1,14 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html#LGPL +--- + is available under the terms of the GNU Library General Public License (LGPL), version 2 (or at your discretion any later version). A copy of the LGPL should be included with this library in the file COPYING. If not, write to http://www.gnu.org/licenses/licenses.html#LGPL -http://www.gnu.org/licenses/licenses.html#LGPL +http://www.gnu.org/licenses/licenses.html#LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_66.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_66.yml deleted file mode 100644 index 896b1a15ac2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_66.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html#LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_67.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_67.RULE index 665f305a29d..592a3a54a9e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_67.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_67.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + /* LGPL * This library is free software; you can redistribute it and/or @@ -13,4 +18,4 @@ * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_67.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_67.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_67.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_68.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_68.RULE index 6118109eb1a..f722396ee0a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_68.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_68.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_68.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_68.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_69.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_69.RULE index e569244851a..0cb387e1ef6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_69.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_69.RULE @@ -1 +1,9 @@ -http://www.gnu.org/licenses/licenses.html#LGPL +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html#LGPL +--- + +http://www.gnu.org/licenses/licenses.html#LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_69.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_69.yml deleted file mode 100644 index 3b02ebdda72..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html#LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_7.RULE index 18ff3855985..94adfe6d5f6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_7.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - COPYING.LIB + - /usr/share/common-licenses/LGPL-2 + - /usr/share/common-licenses/LGPL-3 +--- + | 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; either @@ -15,4 +26,4 @@ On Debian GNU/Linux systems, the complete text of the GNU Library General Public License can be found in /usr/share/common-licenses/LGPL-2 and version 3 - in /usr/share/common-licenses/LGPL-3 + in /usr/share/common-licenses/LGPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_7.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_7.yml deleted file mode 100644 index 6cb89b4cef2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - COPYING.LIB - - /usr/share/common-licenses/LGPL-2 - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_70.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_70.RULE index b86220b69b2..bcf24ac5795 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_70.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_70.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + Licensed under the LGPL License. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_70.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_70.yml deleted file mode 100644 index 6f5cbb1ae07..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_71.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_71.RULE index d0f9354a684..07e3b7e6478 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_71.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_71.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the LGPL License. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_71.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_71.yml deleted file mode 100644 index 156116ef1c6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_72.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_72.RULE index 3ca3c5b4525..c9f57846255 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_72.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_72.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 20 +--- + 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; either @@ -10,4 +16,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +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/lgpl-2.0-plus_72.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_72.yml deleted file mode 100644 index e049c565195..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 20 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_73.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_73.RULE index e851b81a46e..4e641d9c1fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_73.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_73.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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; either @@ -10,4 +15,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +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-2.0-plus_73.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_73.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_73.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_74.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_74.RULE index ff8f6503ea7..b6d3a40bce5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_74.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_74.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + ------------------------ < License Information > ------------------------ This file was originally a part of . @@ -9,4 +16,4 @@ LICENSE for full information. Under this file is also protected by an LGPL. Please - see LICENSE for full details on this license. + see LICENSE for full details on this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_74.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_74.yml deleted file mode 100644 index f3920019088..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_74.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_75.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_75.RULE index 0ee47f359c4..76c36d26980 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_75.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_75.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/ +--- + 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 of diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_75.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_75.yml deleted file mode 100644 index 725aa8f5022..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_75.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_76.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_76.RULE index 8d5980b3215..0ec554aa201 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_76.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_76.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/ +--- + 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 of diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_76.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_76.yml deleted file mode 100644 index 725aa8f5022..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_76.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_77.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_77.RULE index 51290704ac2..31e7da6ef98 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_77.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_77.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + 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 of @@ -6,4 +11,4 @@ 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. +GNU Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_77.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_77.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_77.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_78.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_78.RULE index a0eab9beec1..e608e6ad9ae 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_78.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_78.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + gave his permission to relicense the code to * the Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_78.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_78.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_79.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_79.RULE index 80cb7b88bd5..bd58d76fcbe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_79.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_79.RULE @@ -1,3 +1,8 @@ +--- +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 Library General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +15,4 @@ 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., 675 Mass Ave, Cambridge, MA 02139, USA. +Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_79.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_79.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_79.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_8.RULE index f22bc4e9b5e..289d87debda 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +notes: Diff format declaration +--- + * 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; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_8.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_8.yml deleted file mode 100644 index 0111361bd2d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -notes: Diff format declaration diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_80.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_80.RULE index e2e0c9bf302..733e420ad71 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_80.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_80.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_80.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_80.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_81.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_81.RULE index 24d6931336f..bc6c5ad0c35 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_81.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_81.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + an LGPLed inplementation of the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_81.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_81.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_82.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_82.RULE index 315271eba56..c1e125d02a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_82.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_82.RULE @@ -1,3 +1,8 @@ -implementation is distributed -under the Lesser/Library GNU Public License. +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- +implementation is distributed +under the Lesser/Library GNU Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_82.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_82.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_83.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_83.RULE index d123e852521..bbba9a51202 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_83.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_83.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + * * * THIS FILE IS PART OF THE SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY * diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_83.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_83.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_83.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_84.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_84.RULE index 044e7758bfa..584ca40b49d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_84.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_84.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY * * THE GNU LESSER/LIBRARY PUBLIC LICENSE, WHICH IS INCLUDED WITH * * THIS SOURCE. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_84.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_84.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_84.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_85.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_85.RULE index 1149cc7ae02..4ff62cb3dc8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_85.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_85.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + The C Library is licensed under the LGPL. For details see the COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_85.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_85.yml deleted file mode 100644 index 4681cdf83a7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_86.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_86.RULE index feb2545c793..4ab5625f098 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_86.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_86.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + * This program is free software, distributed under the terms of * the GNU Lesser (Library) General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_86.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_86.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_87.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_87.RULE index f9d07899181..3bdb5a9b1c7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_87.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_87.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_87.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_87.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_88.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_88.RULE index e5d5238b832..1cc61b83bfb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_88.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_88.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - admin/cvs.sh +--- + Copied from admin/cvs.sh. Licence presumed LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_88.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_88.yml deleted file mode 100644 index 524b44258e8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_88.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - admin/cvs.sh diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_89.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_89.RULE index 5ea246c92b4..0829b4f4d11 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_89.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_89.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - COPYING.LGPL +--- + are licensed under the LGPLv2+. See the file COPYING.LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_89.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_89.yml deleted file mode 100644 index 16573135d6e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_89.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - COPYING.LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_9.RULE index c9b7a23b754..76fdfb0570b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: LGPL-2+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -14,4 +23,4 @@ License: LGPL-2+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU Library General Public License - can be found in /usr/share/common-licenses/LGPL-2 file. + can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_9.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_9.yml deleted file mode 100644 index 597ece82b5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_90.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_90.RULE index 2fe6f234d1c..02061c3d0a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_90.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_90.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - COPYING.LGPL +--- + are -licensed under the LGPLv2+. \ No newline at end of file +licensed under the LGPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_90.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_90.yml deleted file mode 100644 index 16573135d6e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_90.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - COPYING.LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_91.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_91.RULE index 57dbafbd29e..7581a36be16 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_91.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_91.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - COPYING.LGPL +--- + See the file COPYING.LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_91.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_91.yml deleted file mode 100644 index cbc86ca7328..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_91.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - COPYING.LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_92.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_92.RULE index 50fffdc8da2..3b538dace7f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_92.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_92.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + License: LGPL-2 On Debian GNU/Linux system you can find the complete text of the LGPL 2 license in '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_92.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_92.yml deleted file mode 100644 index ab6ad2bc5af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_93.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_93.RULE index c84c4543fa4..12f968e3b8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_93.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_93.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian GNU/Linux system you can find the complete text of the LGPL 2 license in '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_93.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_93.yml deleted file mode 100644 index ab6ad2bc5af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_94.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_94.RULE index 81d47bcb087..4f221f83fc5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_94.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_94.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + ### License * [LGPL](http://www.gnu.org/licenses/lgpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_94.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_94.yml deleted file mode 100644 index 1ee0dcd5675..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_95.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_95.RULE index 466cabe3fe1..1fb0e8b264d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_95.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_95.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/lgpl.txt +--- + http://www.fsf.org/licensing/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_95.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_95.yml deleted file mode 100644 index d51d9157bc3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_95.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_96.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_96.RULE index 26f6a5a980a..e5bdff261e9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_96.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_96.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU General Public Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_96.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_96.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_97.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_97.RULE index d81beca2277..52b4eb58935 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_97.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_97.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +notes: this is a confused notice mixing v2 and v2.1 references +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_97.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_97.yml deleted file mode 100644 index 23ac3d07dde..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -notes: this is a confused notice mixing v2 and v2.1 references -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_98.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_98.RULE index 4ca5605bbb0..ed98b2768b4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_98.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_98.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either @@ -11,5 +19,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not see or write to the Free Software Foundation, Inc., -51 Franklin St., Fifth Floor, Boston, MA 02110, USA - +51 Franklin St., Fifth Floor, Boston, MA 02110, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_98.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_98.yml deleted file mode 100644 index b5d443d436f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_99.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_99.RULE index 311bff634e5..5a819d02f32 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_99.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_99.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + ;;;;LEGAL ;;;; LGPL ;;;; diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_99.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_99.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_1.RULE index 429d82d1ca7..1fdadb1d537 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus AND bsd-new +is_license_tag: yes +relevance: 95 +--- + License: LGPL and BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_1.yml deleted file mode 100644 index 208e4c72275..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND bsd-new -is_license_tag: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_2.RULE index 49807536a4d..c09be9821fc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus AND bsd-new +is_license_reference: yes +relevance: 100 +--- + LGPL and BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_2.yml deleted file mode 100644 index c6a82e150c9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND bsd-new -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_and_mit_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_and_mit_1.RULE index 085a88f89b8..531c3187ba2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_and_mit_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_and_mit_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus AND bsd-new AND mit +is_license_notice: yes +relevance: 99 +notes: this notice is ambiguous wrt. LGPL version and BSD variant. +--- + This library is mostly governed by the Lesser GNU Public License (LGPL). If a module comes from another source then it may have another, more liberal, license. Parts here may be Other Peoples Code under the BSD or MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_and_mit_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_and_mit_1.yml deleted file mode 100644 index aff718b3bca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_bsd-new_and_mit_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus AND bsd-new AND mit -is_license_notice: yes -relevance: 99 -notes: this notice is ambiguous wrt. LGPL version and BSD variant. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_cc-by-sa-3.0_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_cc-by-sa-3.0_and_other-copyleft_1.RULE index 12039f1a812..0e477586429 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_cc-by-sa-3.0_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_cc-by-sa-3.0_and_other-copyleft_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus AND cc-by-sa-3.0 AND other-copyleft +is_license_notice: yes +relevance: 100 +--- + licenced on the terms of (inter alia) LGPL and Creative Commons ShareAlike. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_cc-by-sa-3.0_and_other-copyleft_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_cc-by-sa-3.0_and_other-copyleft_1.yml deleted file mode 100644 index 1e01ed95c0b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_cc-by-sa-3.0_and_other-copyleft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND cc-by-sa-3.0 AND other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE index f85c15655f4..3b1ba55bdec 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING.LGPL + - COPYING +--- + The library is released under the GNU Lesser General Public License (LGPL), as included in the file COPYING.LGPL. The rest of this package may be distributed according to the GNU General Public License diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_1.yml deleted file mode 100644 index bb1cb9eae33..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING.LGPL - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_2.RULE index 1806ddf01c1..c81df3bd42b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL + - /usr/share/common-licenses/GPL +--- + Parts of this work are licensed under the terms of the GNU General Public License. On Debian systems, the complete text of this license @@ -5,5 +13,4 @@ can be found in /usr/share/common-licenses/GPL. Parts of this work are licensed under the terms of the GNU Library General Public License. On Debian systems, the complete text of this -license be found in /usr/share/common-licenses/LGPL. - +license be found in /usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_2.yml deleted file mode 100644 index eea65b7b27c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_3.RULE index fc99b2a8d38..6323c8577ad 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_3.RULE @@ -1,7 +1,12 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + The library is distributed under the terms of the GNU Lesser General Public License (LGPL); see the file COPYING.LIB for the actual terms. The helper programs as well as the documentation are distributed under the terms of the GNU General Public License (GPL); see the file COPYING for the - actual terms. - + actual terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_3.yml deleted file mode 100644 index 46186e625fe..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_4.RULE index 724a00b4cd0..ae35076b0c4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 97 +ignorable_urls: + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + The library is distributed under the terms of the GNU Lesser General Public License (LGPL); see the file COPYING.LIB for the actual terms. The helper programs @@ -18,4 +26,4 @@ software projects. The Lesser GPL is so named because it does 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. + more explanation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_4.yml deleted file mode 100644 index f7e7ab9a6a1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 97 -ignorable_urls: - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_5.RULE index 9ecdcebb706..e27f8bc6d02 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL + - /usr/share/common-licenses/GPL +--- + Parts of this work are licensed under the terms of the GNU General Public License. On Debian GNU/Linux systems, the complete text of this license @@ -5,5 +14,4 @@ can be found in /usr/share/common-licenses/GPL. Parts of this work are licensed under the terms of the GNU Library General Public License. On Debian GNU/Linux systems, the complete text of this -license be found in /usr/share/common-licenses/LGPL. - +license be found in /usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_5.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_5.yml deleted file mode 100644 index 9eceabad568..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_6.RULE index 43e8d1880d1..f2e9cbcf588 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + The library is distributed under the terms of the GNU Lesser General Public License (LGPL); see the file COPYING.LIB for the actual terms. The helper programs @@ -18,4 +27,4 @@ software projects. The Lesser GPL is so named because it does less to protect the freedom of the users of the code that it covers. See https://www.gnu.org/philosophy/why-not-lgpl.html for - more explanation. + more explanation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_6.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_6.yml deleted file mode 100644 index 30996eddfa0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_7.RULE index ec4a3d53d7b..d2c1a718ebe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL + - /usr/share/common-licenses/GPL +--- + Parts of this work are licensed under the terms of the GNU General Public License. On Debian systems, the text of this license @@ -5,5 +14,4 @@ can be found in /usr/share/common-licenses/GPL. Parts of this work are licensed under the terms of the GNU Library General Public License. On Debian systems, the text of this -license be found in /usr/share/common-licenses/LGPL. - +license be found in /usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_7.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_7.yml deleted file mode 100644 index 9eceabad568..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_1.RULE index 8013c0f66c1..fdffb069ab3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus AND bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.LIB + - COPYING + - COPYING.BSD +notes: the bsd-style license is not entirely clear +--- + Licensing The libraries themselves have been covered (since Saturday, June 21st, 1997) by the GNU Library General Public License (LGPL). Any other programs (such diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_1.yml deleted file mode 100644 index 485a25abd64..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus AND bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.LIB - - COPYING - - COPYING.BSD -notes: the bsd-style license is not entirely clear diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_2.RULE index 70ee7241628..f8274d8ba67 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus AND bsd-new +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.LIB + - COPYING + - COPYING.BSD +notes: the bsd-style license is not entirely clear +--- + by the GNU Library General Public License (LGPL). Any other programs (such as the examples) are covered by the GNU General Public License (GPL). All the gory details for the LGPL reside in COPYING.LIB, and for the GPL reside diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_2.yml deleted file mode 100644 index 485a25abd64..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-1.0-plus_and_bsd-new_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus AND bsd-new -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.LIB - - COPYING - - COPYING.BSD -notes: the bsd-style license is not entirely clear diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus.RULE index fb88c3253ec..68269cea36a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + The official license is: This library is free software; you can redistribute it and/or @@ -17,4 +27,4 @@ published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus.yml deleted file mode 100644 index 80e28569c44..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_1.RULE index 74b7fe206ee..fb76120d3a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LIB +--- + The library is distributed under the LGPLv2+. The programs are distributed under the GPLv2+. Please see the files COPYING and COPYING.LIB for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_1.yml deleted file mode 100644 index d44d66ed1f6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_10.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_10.RULE index 932261aae45..975ff8c80b3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_10.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + The official license is: This library is free software; you can redistribute it and/or @@ -17,4 +27,4 @@ published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_10.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_10.yml deleted file mode 100644 index 80e28569c44..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_2.RULE index 267b8400b22..9c4c2f0d980 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The library is distributed under the LGPLv2+. The programs are distributed under the GPLv2+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_2.yml deleted file mode 100644 index 6c7fa7085ca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_3.RULE index 360817a32dd..fa763887de3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_3.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPLv2+, GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_3.yml deleted file mode 100644 index 6c7fa7085ca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_4.RULE index ce548548bb7..d23ce71b5dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_4.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GPLv2+ and LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_4.yml deleted file mode 100644 index 5dfdc6e7360..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_5.RULE index 2035cd08144..4620d22d29a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_5.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + libraries will be licensed under LGPLv2+ and applications will be licensed under GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_5.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_5.yml deleted file mode 100644 index 6c7fa7085ca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_6.RULE index 4e1f5921e40..94346121bbc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_6.RULE @@ -1,2 +1,12 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPL + - COPYING.GPL +notes: the AND measn OR here in this context +--- + All other programs, libraries, and plugins are distributed under the LGPL or GPL (see COPYING.LGPL and COPYING.GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_6.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_6.yml deleted file mode 100644 index 660d3690327..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPL - - COPYING.GPL -notes: the AND measn OR here in this context diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_7.RULE index 43e3e659e39..8a25beb4bcb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB + - COPYING +ignorable_urls: + - http://www.gnu.org/philosophy/why-not-lgpl.html +--- + The library is distributed under the terms of the GNU Lesser General Public License (LGPL); see the file COPYING.LIB for the actual terms. The helper programs (e.g. gcryptrnd and getrandom) diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_7.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_7.yml deleted file mode 100644 index 29cf89bb5e6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB - - COPYING -ignorable_urls: - - http://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_8.RULE index 0a99de347d9..45953be734a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/LGPL-2 +--- + The official license is: This library is free software; you can redistribute it and/or @@ -17,4 +27,4 @@ published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. +License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_8.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_8.yml deleted file mode 100644 index 80e28569c44..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_9.RULE index b6b22003280..146ab547bb2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_9.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB + - COPYING +ignorable_urls: + - https://www.gnu.org/philosophy/why-not-lgpl.html +--- + The library is distributed under the terms of the GNU Lesser General Public License (LGPL); see the file COPYING.LIB for the actual terms. The helper programs (e.g. gcryptrnd and getrandom) diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_9.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_9.yml deleted file mode 100644 index 4fcb8462578..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_gpl-2.0-plus_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB - - COPYING -ignorable_urls: - - https://www.gnu.org/philosophy/why-not-lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE index 942d1c8ba7e..3d676a8b5ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE @@ -1,4 +1,9 @@ +--- +license_expression: lgpl-2.0-plus AND lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +--- + This package contains an LGPLed software implementation of an LGPLed convenience library - and a number of GPL example programs, utilities and plugins. + and a number of GPL example programs, utilities and plugins. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.yml deleted file mode 100644 index 4281ded8dea..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus AND lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1.RULE index 10c9d0a79c3..e0e0ccb21d3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1.RULE @@ -1,5 +1,9 @@ +--- +license_expression: lgpl-2.0-plus AND lgpl-2.1 +is_license_notice: yes +--- + On Debian systems, the complete text of the GNU Library General Public License can be found in /usr/share/common-licenses/LGPL-2. Some of the files are licensed under the GNU Lesser General Public License which -can be found in /usr/share/common-licenses/LGPL-2.1. - +can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1.yml deleted file mode 100644 index 6df0f1c7318..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus AND lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_1.RULE index 2ba2adfbc80..7a044e608aa 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_1.RULE @@ -1,5 +1,10 @@ +--- +license_expression: lgpl-2.0-plus AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of the GNU Library General Public License can be found in /usr/share/common-licenses/LGPL-2. Some of the files are licensed under the GNU Lesser General Public License which -can be found in /usr/share/common-licenses/LGPL-2.1. - +can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_1.yml deleted file mode 100644 index c090cc9091b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_2.RULE index c70c9fad29d..4e2185f687e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus AND lgpl-2.1 +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 + - /usr/share/common-licenses/LGPL-2.1 +--- + 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; either @@ -16,4 +25,4 @@ Boston, MA 02110-1301, USA. On Debian systems, the complete text of the GNU Library General Public License can be found in /usr/share/common-licenses/LGPL-2. Some of the files are licensed under the GNU Lesser General Public License which -can be found in /usr/share/common-licenses/LGPL-2.1. +can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_2.yml deleted file mode 100644 index 7ed7a8a24b1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus AND lgpl-2.1 -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_3.RULE index 090672216ea..638a160cba5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 + - /usr/share/common-licenses/LGPL-2.1 +--- + 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; either @@ -16,4 +26,4 @@ Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the GNU Library General Public License can be found in /usr/share/common-licenses/LGPL-2. Some of the files are licensed under the GNU Lesser General Public License which -can be found in /usr/share/common-licenses/LGPL-2.1. +can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_3.yml deleted file mode 100644 index 9c3a7051400..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_4.RULE index e550c88eb31..9f0f29ac281 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_4.RULE @@ -1,5 +1,10 @@ +--- +license_expression: lgpl-2.0-plus AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + On Debian systems, the text of the GNU Library General Public License can be found in /usr/share/common-licenses/LGPL-2. Some of the files are licensed under the GNU Lesser General Public License which -can be found in /usr/share/common-licenses/LGPL-2.1. - +can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_4.yml deleted file mode 100644 index c090cc9091b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_5.RULE index 9a614d0f71a..d4f2dafc35d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 + - /usr/share/common-licenses/LGPL-2.1 +--- + 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; either @@ -16,4 +26,4 @@ Boston, MA 02110-1301, USA. On Debian systems, the text of the GNU Library General Public License can be found in /usr/share/common-licenses/LGPL-2. Some of the files are licensed under the GNU Lesser General Public License which -can be found in /usr/share/common-licenses/LGPL-2.1. +can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_5.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_5.yml deleted file mode 100644 index 9c3a7051400..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-2.1_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-3.0_and_gpl-1.0-plus_and_gpl-3.0_and_gfdl-1.3_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-3.0_and_gpl-1.0-plus_and_gpl-3.0_and_gfdl-1.3_1.RULE index 63fd6eb104b..7dd972e3a22 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-3.0_and_gpl-1.0-plus_and_gpl-3.0_and_gfdl-1.3_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-3.0_and_gpl-1.0-plus_and_gpl-3.0_and_gfdl-1.3_1.RULE @@ -1,7 +1,18 @@ +--- +license_expression: lgpl-2.0-plus AND lgpl-3.0 AND gpl-1.0-plus AND gpl-3.0 AND gfdl-1.3 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL + - /usr/share/common-licenses/LGPL-3 + - /usr/share/common-licenses/GPL + - /usr/share/common-licenses/GPL-3 + - /usr/share/common-licenses/GFDL-1.3 +--- + On Debian GNU/Linux systems, the complete text of the latest version of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL' v3 of the license in `/usr/share/common-licenses/LGPL-3'; the GNU General Public License can be found in `/usr/share/common-licenses/GPL' (version 3 in /usr/share/common-licenses/GPL-3) The GNU Free Documentation -License is available under /usr/share/common-licenses/GFDL-1.3. +License is available under /usr/share/common-licenses/GFDL-1.3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-3.0_and_gpl-1.0-plus_and_gpl-3.0_and_gfdl-1.3_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-3.0_and_gpl-1.0-plus_and_gpl-3.0_and_gfdl-1.3_1.yml deleted file mode 100644 index 75a99b904b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_lgpl-3.0_and_gpl-1.0-plus_and_gpl-3.0_and_gfdl-1.3_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0-plus AND lgpl-3.0 AND gpl-1.0-plus AND gpl-3.0 AND gfdl-1.3 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL - - /usr/share/common-licenses/LGPL-3 - - /usr/share/common-licenses/GPL - - /usr/share/common-licenses/GPL-3 - - /usr/share/common-licenses/GFDL-1.3 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_mit_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_mit_1.RULE index 86d51fb65ab..d83229925ab 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_mit_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus AND mit +is_license_notice: yes +relevance: 100 +--- + This software is LGPL-licensed, with several MIT-licensed dependencies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_mit_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_mit_1.yml deleted file mode 100644 index 88d77a9feb9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_patent-disclaimer_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_patent-disclaimer_1.RULE index f6839a0e75d..6e179f41bfd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_patent-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_patent-disclaimer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus AND patent-disclaimer +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; {{ either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_patent-disclaimer_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_patent-disclaimer_1.yml deleted file mode 100644 index d48461af03b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_patent-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus AND patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_proprietary-license_1.RULE index bd93e6b4057..8f6970d62eb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_proprietary-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/jirkamarsik/quex/tree/9e9846c87b3383fd24f3b240ba02089b3aaa2ede +--- + LICENSE: The Software is distributed under LGPL, provided the following restriction: diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_proprietary-license_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_proprietary-license_1.yml deleted file mode 100644 index 4314af199b1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_proprietary-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/jirkamarsik/quex/tree/9e9846c87b3383fd24f3b240ba02089b3aaa2ede diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_and_unknown-license-reference_1.RULE index 02ddf82cef1..c0137192b75 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_and_unknown-license-reference_1.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus AND unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: See https://github.com/tudo-astroparticlephysics/PROPOSAL/blob/master/README.md +--- + This software may be modified and distributed under the terms of a modified LGPL License. See the LICENSE for details of the LGPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_and_unknown-license-reference_1.yml deleted file mode 100644 index a459ce70672..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus AND unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: See https://github.com/tudo-astroparticlephysics/PROPOSAL/blob/master/README.md diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver.RULE index fc24e4687b3..19cb59b6880 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-1.0-plus AND lgpl-2.0-plus +is_license_notice: yes +notes: this could be some author typo, but there is no clear way to say this is LGPL or GPL. + yes with this specific wording the project top level license is LGPL with the vxwindows + exception (from http://cbccl.sourceforge.net/) +--- + --[ License ] ------------------------------------------------------------ GPL (Free for private and comercial use) @@ -14,4 +22,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + 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-2.0-plus_cbcserver.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver.yml deleted file mode 100644 index a7f18b3d952..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-1.0-plus AND lgpl-2.0-plus -is_license_notice: yes -notes: this could be some author typo, but there is no clear way to say this is LGPL or GPL. - yes with this specific wording the project top level license is LGPL with the vxwindows - exception (from http://cbccl.sourceforge.net/) diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver2.RULE index 5f940906de8..aaac4662407 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + --[ License ] ------------------------------------------------------------ - GPL (Free for private and comercial use) + GPL (Free for private and comercial use) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver2.yml deleted file mode 100644 index 7071924eb9e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.RULE index 782582c5186..0f5ec2c3f25 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + Free for private and comercial use This program is free software; you can redistribute it and/or @@ -12,4 +17,4 @@ Free for private and comercial use 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + 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-2.0-plus_cbcserver3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_debian.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_debian.RULE index 529bc900603..19b957db314 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_debian.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_debian.RULE @@ -1,2 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + the complete text of the GNU Library General Public License can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_debian.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_debian.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_debian.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_microwin_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_microwin_1.RULE index cee6d878d47..2bd0e32245e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_microwin_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_microwin_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 90 +--- + because it's small, clean and LGPL (as opposed to GPL, which would cause mlibs to be GPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_microwin_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_microwin_1.yml deleted file mode 100644 index d1b6729b057..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_microwin_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.RULE index ab3e77868eb..1d1bf5e607d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 93 +notes: seen in newlib +--- + LGPL License This program is free software; you can redistribute it and/or @@ -8,4 +15,4 @@ 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. +GNU Library General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.yml deleted file mode 100644 index ca2a7edb106..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 93 -notes: seen in newlib diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.RULE index fe6f09a6667..d5fdc88bf2f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + ** NOTE! The following LGPL license applies to the tdb ** library. This does NOT imply that all of Samba is released diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.yml deleted file mode 100644 index bf16d152150..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.RULE index b7205e74e69..3e626bb2344 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +--- + ** NOTE! The following LGPL license applies to the tdb ** library. This does NOT imply that all of Samba is released ** under the LGPL @@ -14,4 +20,4 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + 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-2.0-plus_not_3_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.yml deleted file mode 100644 index e0679fe9939..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.RULE index d894d9dec08..b9a1365d9e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + permission is hereby granted to copy, modify and redistribute this code in terms of the GNU Library General Public License, Version 2 or later, -at your option. +at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.RULE index fe2d067b4d6..746bea8d8db 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.RULE @@ -1,7 +1,14 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + covered by the GNU Lesser General Public License: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 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 library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html http://www.gnu.org/licenses/lgpl.html +You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.yml deleted file mode 100644 index 5462ecac6ca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_afl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_afl-3.0_1.RULE index 44e3b6f744d..8fab9689815 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_afl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_afl-3.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus OR afl-3.0 +is_license_notice: yes +relevance: 100 +--- + It is dual-licensed under the terms of the GNU Lesser General Public License, and the Academic Free License, version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_afl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_afl-3.0_1.yml deleted file mode 100644 index b93aed03b32..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_afl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR afl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_1.RULE index 81442fd8846..50eaf832d87 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus OR bsd-new +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + is a copyrighted work. This header file is not encumbered by licensing, but is provided under the licensing terms chosen by the genshellopt author or copyright holder. is @@ -25,4 +33,4 @@ under the following terms: You should have received a copy of the GNU Library General Public License along with this library; if not, see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_1.yml deleted file mode 100644 index 757e30ef979..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus OR bsd-new -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_2.RULE index 2aa717fd776..96d62342383 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus OR bsd-new +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + is a copyrighted work. This source file is not encumbered by licensing, but is provided under the licensing terms chosen by the author or copyright holder. is @@ -25,4 +33,4 @@ under the following terms: You should have received a copy of the GNU Library General Public License along with this library; if not, see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_2.yml deleted file mode 100644 index 757e30ef979..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus OR bsd-new -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_3.RULE index eeb9fa62de5..fee5f9afb21 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + * licensed under the terms of the LGPL. The redistributable library * (``libopts'') is licensed under the terms of either the LGPL or, at the * users discretion, the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_3.yml deleted file mode 100644 index d80eddf5f35..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_4.RULE index 97be504e7f0..f8caee81bfd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + AutoOpts is * licensed under the terms of the LGPL. The redistributable library * (``libopts'') is licensed under the terms of either the LGPL or, at the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_4.yml deleted file mode 100644 index d80eddf5f35..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_5.RULE index 56722aa8581..d70414a884c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_5.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 99 +--- + licensed under the terms of either the LGPL or, at the users discretion, the BSD license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_5.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_5.yml deleted file mode 100644 index d80eddf5f35..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_6.RULE index 1c625528c5f..973ece8544a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + is a copyrighted work. This header file is not encumbered by licensing, but is provided under the licensing terms chosen by the genshellopt author or copyright holder. is @@ -25,4 +34,4 @@ under the following terms: You should have received a copy of the GNU Library General Public License along with this library; if not, see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_6.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_6.yml deleted file mode 100644 index 74841a963c2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_7.RULE index b2fcdb4cb06..cb17ecfcf90 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + is a copyrighted work. This source file is not encumbered by licensing, but is provided under the licensing terms chosen by the author or copyright holder. is @@ -25,4 +34,4 @@ under the following terms: You should have received a copy of the GNU Library General Public License along with this library; if not, see - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_7.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_7.yml deleted file mode 100644 index 74841a963c2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_bsd-new_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_1.RULE index caed6fc21a2..5be22ceb154 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- + LGPL LICENSED, commercial license available upon request \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_1.yml deleted file mode 100644 index 62b849b823c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_2.RULE index e8c3247b392..276c21a7b57 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- + GNU/LGPL LICENSED, commercial license available upon request \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_2.yml deleted file mode 100644 index 62b849b823c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_commercial-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE index ab96b278324..58c231977e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL or the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_1.yml deleted file mode 100644 index c3e74009446..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE index 51f904819b6..9a7a82130b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + derivative code must *also* be LGPL or GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 1127b41890f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_3.RULE index 73a326719c0..b14e33e928b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_3.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus OR gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL or GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_3.yml deleted file mode 100644 index 5d1c73b5d7e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_300.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_300.RULE index 9f0ed709af9..f2d5aece90e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_300.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_300.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + is covered either by the LGPL, or -under the GNU General Public License /usr/share/common-licenses/GPL. +under the GNU General Public License /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_300.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_300.yml deleted file mode 100644 index 7bea49c834c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-1.0-plus_300.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 100 -referenced_filenames: - - /usr/share/common-licenses/GPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-2.0-plus_or_commercial-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-2.0-plus_or_commercial-license_1.RULE index 40bb25589a6..827c0d8ae77 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-2.0-plus_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-2.0-plus_or_commercial-license_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus OR gpl-2.0-plus OR commercial-license +is_license_notice: yes +relevance: 100 +--- - is free software (all components are either GPL or LGPL). is also available for commercial licensing. + + is free software (all components are either GPL or LGPL). is also available for commercial licensing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-2.0-plus_or_commercial-license_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-2.0-plus_or_commercial-license_1.yml deleted file mode 100644 index a99f7dc06dc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_gpl-2.0-plus_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR gpl-2.0-plus OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_mit_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_or_mit_1.RULE index 17960102f58..ae60fffe9d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_mit_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus OR mit +is_license_notice: yes +relevance: 100 +--- + licensed under LGPLv2+ or MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_or_mit_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_or_mit_1.yml deleted file mode 100644 index 165a5eda803..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.RULE index c9af0f4f949..f8940c575bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_short_tag.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_url_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_url_1.RULE index 928283e32e9..6fa9148e121 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-2.0-or-later +--- + https://spdx.org/licenses/lgpl-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_url_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_url_1.yml deleted file mode 100644 index aabd829a80f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-2.0-or-later diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_url_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_url_2.RULE index 37c4cd8a16b..2e4a9cfda83 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-2.0-or-later.html +--- + https://spdx.org/licenses/lgpl-2.0-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_url_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_url_2.yml deleted file mode 100644 index 9baea17cc77..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-2.0-or-later.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk-exception-lgpl-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk-exception-lgpl-2.0_1.RULE index 7095924db8a..81e224219c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk-exception-lgpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk-exception-lgpl-2.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH fltk-exception-lgpl-2.0 +is_license_tag: yes +relevance: 100 +notes: See https://www.fltk.org/COPYING.php +ignorable_urls: + - http://www.fltk.org/COPYING.php +--- + license = "GNU LGPL with exceptions (http://www.fltk.org/COPYING.php)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk-exception-lgpl-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk-exception-lgpl-2.0_1.yml deleted file mode 100644 index faab32fd016..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk-exception-lgpl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH fltk-exception-lgpl-2.0 -is_license_tag: yes -relevance: 100 -notes: See https://www.fltk.org/COPYING.php -ignorable_urls: - - http://www.fltk.org/COPYING.php diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk.RULE index d3fa5f2dcf1..5e127ae965a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus WITH fltk-exception-lgpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.fltk.org/ +ignorable_emails: + - fltk-bugs@fltk.org +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General @@ -65,4 +74,4 @@ exceptions: You can find multiple versions of the LGPL in /usr/share/common-licenses; in particular, /usr/share/common-licenses/LGPL-2 contains version 2. Also, the CREDITS file in this directory contains a more complete list of -contributors. +contributors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk.yml deleted file mode 100644 index a95c605e45e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_fltk.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH fltk-exception-lgpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.fltk.org/ -ignorable_emails: - - fltk-bugs@fltk.org diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_gcc-linking-exception-2.0_1.RULE index bf4361ebe5e..17eaba36f5d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_gcc-linking-exception-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Libiberty 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; either @@ -19,4 +29,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with libiberty; see the file COPYING.LIB. -If not, see . */ +If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_gcc-linking-exception-2.0_1.yml deleted file mode 100644 index 38c3eb19fa9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_generic-exception_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_generic-exception_1.RULE index ffae08c54c2..6b951c990db 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_generic-exception_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus WITH generic-exception +is_license_notice: yes +relevance: 100 +--- + the actual library is released using the LGPL license as modified by a special exception and a clarification \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_generic-exception_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_generic-exception_1.yml deleted file mode 100644 index ce74c2660fb..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_generic-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH generic-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_1.RULE index f420cc225d2..49c65185e74 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + GNU is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -17,4 +27,4 @@ You should have received a copy of the GNU Lesser General Public License along with GNU; see the file COPYING.LIB. If not, a copy can be downloaded from http://www.gnu.org/licenses/lgpl.html, or obtained by writing to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_1.yml deleted file mode 100644 index 899f0676ff1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_2.RULE index 38597a33731..3d0456001e0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + uses this LGPLv2 (or later) license: GNU Libltdl is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_2.yml deleted file mode 100644 index ca00250b695..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_3.RULE index 438bb3ec3ec..3f9e96dab9f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + GNU is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_3.yml deleted file mode 100644 index ca00250b695..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_4.RULE index d48ed8732a7..863e77e6327 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +--- + GNU Libltdl 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 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_4.yml deleted file mode 100644 index f88cf1928d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_5.RULE index 4b3b98f0ed1..7ec4a789378 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + uses this LGPLv2 (or later) license: GNU Libltdl is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_5.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_5.yml deleted file mode 100644 index 30f22055b66..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_6.RULE index d6a9c8b6711..eda4c15bf79 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + GNU is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_6.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_6.yml deleted file mode 100644 index 30f22055b66..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_7.RULE index 132ecba6ca6..5897f4a12de 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_7.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + GNU is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -17,4 +28,4 @@ You should have received a copy of the GNU Lesser General Public License along with GNU; see the file COPYING.LIB. If not, a copy can be downloaded from https://www.gnu.org/licenses/lgpl.html, or obtained by writing to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_7.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_7.yml deleted file mode 100644 index bcfdb5de078..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_libtool-exception-2.0_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0-plus WITH libtool-exception-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_linking-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_linking-exception-2.0-plus_1.RULE index 88b6d9995b1..2b4f56b9988 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_linking-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_linking-exception-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH linking-exception-2.0-plus +is_license_notice: yes +minimum_coverage: 95 +--- + licensed under the terms of the {{GNU Lesser General Public License, with a special exception}}: diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_linking-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_linking-exception-2.0-plus_1.yml deleted file mode 100644 index 399dfe96a13..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_linking-exception-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH linking-exception-2.0-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_1.RULE index dc1d06f218e..ff6d6f407f0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 85 +referenced_filenames: + - ../LICENSE +--- + This file is distributed *) (* under the terms of the GNU Library General Public License, with *) -(* the special exception on linking described in file ../LICENSE. \ No newline at end of file +(* the special exception on linking described in file ../LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_1.yml deleted file mode 100644 index bf9ded14599..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 85 -referenced_filenames: - - ../LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_10.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_10.RULE index 9e135c0bcd6..8e082a323db 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_10.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_10.yml deleted file mode 100644 index e11706bd055..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_11.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_11.RULE index 02dc062ee2d..3aeb3b0d47d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_11.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_11.yml deleted file mode 100644 index e6f845a5579..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_2.RULE index d5c1f8a37ca..24782501d55 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + As a special exception to the GNU Library General Public License, you may link, statically or dynamically, a "work that uses the Library" with a publicly distributed version of the Library to produce an diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_2.yml deleted file mode 100644 index 4a5122caaee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_3.RULE index 7231d5d32ed..cd4fd137874 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + As a special exception to the GNU Library General Public License, you may link, statically or dynamically, a "work that uses the Library" with a publicly distributed version of the Library to produce an diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_3.yml deleted file mode 100644 index 4a5122caaee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_4.RULE index fcd3e8c8603..ec55eae84b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + As a special exception to the GNU Library General Public License, you may link, statically or dynamically, a "work that uses the Library" with a publicly distributed version of the Library to produce an diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_4.yml deleted file mode 100644 index 4a5122caaee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_5.RULE index 74c6e905623..195679fb6d8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + As a special exception to the GNU Library General Public License, you may link, statically or dynamically, a "work that uses the Library" with a publicly distributed version of the Library to produce an diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_5.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_5.yml deleted file mode 100644 index 4a5122caaee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_6.RULE index b0e8bbc8681..647ea25bcce 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + As a special exception to the GNU Library General Public License, you may link, statically or dynamically, a "work that uses the Library" with a publicly distributed version of the Library to produce an diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_6.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_6.yml deleted file mode 100644 index 4a5122caaee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_7.RULE index 85cb3081156..73b4e8b497a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING +notes: it has a few extra permissions +--- + 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 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_7.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_7.yml deleted file mode 100644 index 4e6fcc63c9c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING -notes: it has a few extra permissions diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_8.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_8.RULE index 45a948978fa..855260487ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 95 +referenced_filenames: + - COPYING +notes: it has a few extra permissions +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_8.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_8.yml deleted file mode 100644 index 4e6fcc63c9c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 95 -referenced_filenames: - - COPYING -notes: it has a few extra permissions diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_9.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_9.RULE index 8c570439615..8e40621b92e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_9.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_9.yml deleted file mode 100644 index 130eeb827fa..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_ocaml-lgpl-linking-exception_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_unlimited-binary-linking.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_unlimited-binary-linking.RULE index 3f5d66aaf74..afd60371037 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_unlimited-binary-linking.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_unlimited-binary-linking.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH unlimited-binary-linking +is_license_notice: yes +minimum_coverage: 80 +--- + s free software; you can redistribute it and/or modify it under the term of the GNU Library General Public Licence as published by the @@ -9,4 +15,4 @@ Library General Public Licence for more details EXCEPTION NOTICE As a special exception, you may use, copy, link, modify and distribute under the user's own terms, binary object code versions of works based -on the library. +on the library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_unlimited-binary-linking.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_unlimited-binary-linking.yml deleted file mode 100644 index 9e98eb97188..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_unlimited-binary-linking.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH unlimited-binary-linking -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.RULE index 64eb948e5e8..a287ab84435 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +ignorable_copyrights: + - Copyright (c) 1998-2005 Julian Smart, Robert Roebling +ignorable_holders: + - Julian Smart, Robert Roebling +--- + wxWindows Library Licence, Version 3.1 ====================================== diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.yml deleted file mode 100644 index f4eaf2bbccc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -ignorable_copyrights: - - Copyright (c) 1998-2005 Julian Smart, Robert Roebling -ignorable_holders: - - Julian Smart, Robert Roebling diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_10.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_10.RULE index 3761001206b..06f1170c8b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + * This library is free software and may be redistributed and/or modified under * the terms of the wxWindows Library License, Version 3.1 or (at your option) * any later version. The full license is in the LICENSE.txt file included diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_10.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_10.yml deleted file mode 100644 index d607f985d27..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_11.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_11.RULE index c5906a42180..8614d141c4d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + wxWindows wxWindows Library License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_11.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_11.yml deleted file mode 100644 index 137bd7d2a10..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_12.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_12.RULE index cfdb7a05673..aaf78bf6413 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_12.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + wxWindows Library License wxWindows \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_12.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_12.yml deleted file mode 100644 index 137bd7d2a10..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_13.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_13.RULE index bfa2cfa6405..95096d223ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_13.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_13.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : wxWindows \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_13.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_13.yml deleted file mode 100644 index 1e3d6a0439b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_14.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_14.RULE index dfaad6aa77f..d40ffe326bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_14.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_14.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : wxWindows \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_14.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_14.yml deleted file mode 100644 index 137bd7d2a10..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_15.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_15.RULE index 894c8154f4e..2a22e44bf43 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_15.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_15.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : wxWindows Library License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_15.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_15.yml deleted file mode 100644 index 137bd7d2a10..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_16.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_16.RULE index 82d99669341..5bfe5aab6fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_16.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_16.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +--- + wxWindows Library Licence Everyone is permitted to copy and distribute verbatim copies diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_16.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_16.yml deleted file mode 100644 index 945cb25e0b0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_17.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_17.RULE index 76852d54f31..a2fcf107af4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_17.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +--- + Everyone is permitted to copy and distribute verbatim copies of this licence document, but changing it is not allowed. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_17.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_17.yml deleted file mode 100644 index 945cb25e0b0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_2.RULE index fc7512247f9..a6d78e1588e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +ignorable_copyrights: + - Copyright (c) 1998 Julian Smart, Robert Roebling + - Copyright (c) 2002 Robert Osfield +ignorable_holders: + - Julian Smart, Robert Roebling + - Robert Osfield +--- + /usr/share/common-licenses/LGPL-2.1 OpenSceneGraph Public License, Version 0.0 @@ -75,5 +88,4 @@ code and/or adjust the licensing conditions notice accordingly. ------------------------------------------------------------------------------- - +------------------------------------------------------------------------------ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_2.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_2.yml deleted file mode 100644 index 6fdb060c3ff..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -ignorable_copyrights: - - Copyright (c) 1998 Julian Smart, Robert Roebling - - Copyright (c) 2002 Robert Osfield -ignorable_holders: - - Julian Smart, Robert Roebling - - Robert Osfield diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_3.RULE index 41be62cee47..3a698540a55 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_3.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +ignorable_copyrights: + - Copyright (c) 1998 Julian Smart, Robert Roebling + - Copyright (c) 2002 Robert Osfield +ignorable_holders: + - Julian Smart, Robert Roebling + - Robert Osfield +--- + Copyright: /usr/share/common-licenses/LGPL-2.1 @@ -77,4 +90,4 @@ Copyright: code and/or adjust the licensing conditions notice accordingly. ------------------------------------------------------------------------------- +------------------------------------------------------------------------------ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_3.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_3.yml deleted file mode 100644 index 6fdb060c3ff..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_3.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -ignorable_copyrights: - - Copyright (c) 1998 Julian Smart, Robert Roebling - - Copyright (c) 2002 Robert Osfield -ignorable_holders: - - Julian Smart, Robert Roebling - - Robert Osfield diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_4.RULE index 06221ebb3ef..cf21aa5a08b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_4.RULE @@ -1,3 +1,20 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - Copyright (c) 1998 Julian Smart, Robert Roebling + - Copyright (c) 2002 Robert Osfield + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - Julian Smart, Robert Roebling + - Robert Osfield + - the Free Software Foundation +--- + OpenSceneGraph Public License, Version 0.0 ========================================== diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_4.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_4.yml deleted file mode 100644 index 1fc1466b828..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_4.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - Copyright (c) 1998 Julian Smart, Robert Roebling - - Copyright (c) 2002 Robert Osfield - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - Julian Smart, Robert Roebling - - Robert Osfield - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_5.RULE index 89f4e1eeb0b..50bfc5e07e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +--- + Copyright: /usr/share/common-licenses/LGPL-2.1 @@ -19,5 +24,4 @@ Copyright: Notes: the OSGPL is based on the LGPL, with the 4 exceptions laid in in the wxWindows section below. The LGPL in the final section of this - license. - + license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_5.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_5.yml deleted file mode 100644 index 945cb25e0b0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_6.RULE index eb2150722ea..bc7826cb66b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +minimum_coverage: 60 +--- + --[ License ] ---------------------------------------------------------- wxWindows Library License. See docs/license.doc for more information. @@ -5,4 +11,4 @@ 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 - wxWindows Library License for more details. + wxWindows Library License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_6.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_6.yml deleted file mode 100644 index 21f10be3b0b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_7.RULE index 1d84951339d..9cc7fdd6063 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + License wxWindows Library License (free for comercial use). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_7.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_7.yml deleted file mode 100644 index d2ad27fb11e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_8.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_8.RULE index a5469d54efc..7d85e4a2d64 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + --[ License ] ---------------------------------------------------------- - wxWindows Library License. See docs/license.doc for more information. + wxWindows Library License. See docs/license.doc for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_8.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_8.yml deleted file mode 100644 index d2ad27fb11e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_9.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_9.RULE index d0d66bd7248..ff4a030ca6c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_9.RULE @@ -1,4 +1,10 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +minimum_coverage: 90 +--- + 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 - wxWindows Library License for more details. + wxWindows Library License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_9.yml b/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_9.yml deleted file mode 100644 index 5b86bdd4d45..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_with_wxwindows-exception-3.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/lgpl-2.0.SPDX.RULE b/src/licensedcode/data/rules/lgpl-2.0.SPDX.RULE index 752658ff350..ee6ca099884 100644 --- a/src/licensedcode/data/rules/lgpl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lgpl-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/lgpl-2.0.SPDX.yml b/src/licensedcode/data/rules/lgpl-2.0.SPDX.yml deleted file mode 100644 index 76af7ffb545..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lgpl-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_1.RULE index facd96fd7be..3ef77bb27fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.0.txt +--- + http://www.gnu.org/licenses/lgpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0_1.yml deleted file mode 100644 index f654346814c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0_10.RULE b/src/licensedcode/data/rules/lgpl-2.0_10.RULE index d20a61d2799..9b447b952bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_10.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + which are made available under the GNU Library General Public License Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_10.yml b/src/licensedcode/data/rules/lgpl-2.0_10.yml deleted file mode 100644 index af703320928..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_100.RULE b/src/licensedcode/data/rules/lgpl-2.0_100.RULE index deaf6574d46..0ae95d50d35 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_100.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_100.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This library is licensed under the GNU LESSER GENERAL PUBLIC LICENSE v2. For further information see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_100.yml b/src/licensedcode/data/rules/lgpl-2.0_100.yml deleted file mode 100644 index 8ae36eeb160..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0_101.RULE b/src/licensedcode/data/rules/lgpl-2.0_101.RULE index 181c36e2207..d578ae2341c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_101.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_101.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License: LGPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_101.yml b/src/licensedcode/data/rules/lgpl-2.0_101.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_102.RULE b/src/licensedcode/data/rules/lgpl-2.0_102.RULE index 5eac5f5c02c..585a1b5bb40 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_102.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_102.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + LGPLv2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_102.yml b/src/licensedcode/data/rules/lgpl-2.0_102.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_103.RULE b/src/licensedcode/data/rules/lgpl-2.0_103.RULE index 941d6577eff..d2ceab6bd28 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_103.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_103.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +notes: weird spelling +--- + released under the \fILGPL V2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_103.yml b/src/licensedcode/data/rules/lgpl-2.0_103.yml deleted file mode 100644 index c97707a08a9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_103.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-2.0_104.RULE b/src/licensedcode/data/rules/lgpl-2.0_104.RULE index 15a2c9174e9..59e219a3156 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_104.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_104.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +notes: weird spelling +--- + released under the ILGPL V2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_104.yml b/src/licensedcode/data/rules/lgpl-2.0_104.yml deleted file mode 100644 index c97707a08a9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_104.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-2.0_105.RULE b/src/licensedcode/data/rules/lgpl-2.0_105.RULE index 7d0cabcbf0e..feae884f6b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_105.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_105.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +notes: weird spelling +--- + fILGPL V2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_105.yml b/src/licensedcode/data/rules/lgpl-2.0_105.yml deleted file mode 100644 index 0aa07613927..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_105.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-2.0_106.RULE b/src/licensedcode/data/rules/lgpl-2.0_106.RULE index d684e2ccce2..823095b47cd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_106.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_106.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +notes: weird spelling +--- + ILGPL V2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_106.yml b/src/licensedcode/data/rules/lgpl-2.0_106.yml deleted file mode 100644 index 0aa07613927..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_106.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-2.0_107.RULE b/src/licensedcode/data/rules/lgpl-2.0_107.RULE index 6954292ab7a..d8cf7c5c207 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_107.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_107.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + Licensed under the GNU LGPL v2.0 - http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_107.yml b/src/licensedcode/data/rules/lgpl-2.0_107.yml deleted file mode 100644 index 06f516c8344..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_108.RULE b/src/licensedcode/data/rules/lgpl-2.0_108.RULE index 7c82b948e2b..ba5c4bc48ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_108.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_108.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU LGPL v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_108.yml b/src/licensedcode/data/rules/lgpl-2.0_108.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_109.RULE b/src/licensedcode/data/rules/lgpl-2.0_109.RULE index 23ef46679a0..7eaf75a3e3a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_109.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_109.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_copyrights: + - copyright by their authors +ignorable_holders: + - their authors +--- + All other software is copyright by their authors and redistributable under the terms of the GNU Library General Public License. On Debian Linux systems, the complete text of the GNU Library General Public License can diff --git a/src/licensedcode/data/rules/lgpl-2.0_109.yml b/src/licensedcode/data/rules/lgpl-2.0_109.yml deleted file mode 100644 index 1304910cab2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_109.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_copyrights: - - copyright by their authors -ignorable_holders: - - their authors diff --git a/src/licensedcode/data/rules/lgpl-2.0_11.RULE b/src/licensedcode/data/rules/lgpl-2.0_11.RULE index 1b641b223a5..33b4b378713 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License v2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_11.yml b/src/licensedcode/data/rules/lgpl-2.0_11.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_110.RULE b/src/licensedcode/data/rules/lgpl-2.0_110.RULE index 49947de4590..23184b31948 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_110.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_110.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the complete text of the GNU Lesser (Library) General Public License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_110.yml b/src/licensedcode/data/rules/lgpl-2.0_110.yml deleted file mode 100644 index 7ffa197c6c9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_111.RULE b/src/licensedcode/data/rules/lgpl-2.0_111.RULE index 635e4c791bb..edcc666b1a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_111.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_111.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 99 +notes: typo in license id +--- + GLPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_111.yml b/src/licensedcode/data/rules/lgpl-2.0_111.yml deleted file mode 100644 index 11505f6ed22..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_111.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/lgpl-2.0_112.RULE b/src/licensedcode/data/rules/lgpl-2.0_112.RULE index 78f25c1af10..6dea6851bf5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_112.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_112.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_112.yml b/src/licensedcode/data/rules/lgpl-2.0_112.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_113.RULE b/src/licensedcode/data/rules/lgpl-2.0_113.RULE index 34d481436fd..724097f110b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_113.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_113.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + 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 version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_113.yml b/src/licensedcode/data/rules/lgpl-2.0_113.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_114.RULE b/src/licensedcode/data/rules/lgpl-2.0_114.RULE index 2c0bd966114..070599676b4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_114.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_114.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_114.yml b/src/licensedcode/data/rules/lgpl-2.0_114.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_115.RULE b/src/licensedcode/data/rules/lgpl-2.0_115.RULE index 4bd05585637..fc7fd64bdb4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_115.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_115.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_115.yml b/src/licensedcode/data/rules/lgpl-2.0_115.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_116.RULE b/src/licensedcode/data/rules/lgpl-2.0_116.RULE index 930592dfe46..c965425265d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_116.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_116.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL v2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_116.yml b/src/licensedcode/data/rules/lgpl-2.0_116.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_117.RULE b/src/licensedcode/data/rules/lgpl-2.0_117.RULE index 6041dc9d41e..a75e4b6733c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_117.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_117.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPLv2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_117.yml b/src/licensedcode/data/rules/lgpl-2.0_117.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_118.RULE b/src/licensedcode/data/rules/lgpl-2.0_118.RULE index 2058c82bb77..d796ca8cab9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_118.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_118.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_118.yml b/src/licensedcode/data/rules/lgpl-2.0_118.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_119.RULE b/src/licensedcode/data/rules/lgpl-2.0_119.RULE index 93f1c0e9e42..97b9cd01523 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_119.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_119.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_119.yml b/src/licensedcode/data/rules/lgpl-2.0_119.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_12.RULE b/src/licensedcode/data/rules/lgpl-2.0_12.RULE index c3a166fbdca..227af774b19 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License: LGPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_12.yml b/src/licensedcode/data/rules/lgpl-2.0_12.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_120.RULE b/src/licensedcode/data/rules/lgpl-2.0_120.RULE index 5b704b4a81f..6ccc28881f6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_120.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_120.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL 2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_120.yml b/src/licensedcode/data/rules/lgpl-2.0_120.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_121.RULE b/src/licensedcode/data/rules/lgpl-2.0_121.RULE index 4707cf77e67..78ba22f41cc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_121.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_121.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_121.yml b/src/licensedcode/data/rules/lgpl-2.0_121.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_122.RULE b/src/licensedcode/data/rules/lgpl-2.0_122.RULE index fbaa4cd423b..fd4c3b2e325 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_122.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_122.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: truncated notice "either version 2.0 of the License." .... +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.0_122.yml b/src/licensedcode/data/rules/lgpl-2.0_122.yml deleted file mode 100644 index 861b9520450..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_122.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: truncated notice "either version 2.0 of the License." .... diff --git a/src/licensedcode/data/rules/lgpl-2.0_123.RULE b/src/licensedcode/data/rules/lgpl-2.0_123.RULE index 6df4a9f9081..57b3f49d3a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_123.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_123.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 +--- + ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_123.yml b/src/licensedcode/data/rules/lgpl-2.0_123.yml deleted file mode 100644 index 91d38c1f577..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0_124.RULE b/src/licensedcode/data/rules/lgpl-2.0_124.RULE index a0a492332a6..2736ba5bf33 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_124.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_124.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_124.yml b/src/licensedcode/data/rules/lgpl-2.0_124.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_125.RULE b/src/licensedcode/data/rules/lgpl-2.0_125.RULE index 72e9d442c14..5ce04482e87 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_125.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_125.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_125.yml b/src/licensedcode/data/rules/lgpl-2.0_125.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_126.RULE b/src/licensedcode/data/rules/lgpl-2.0_126.RULE index beed6b06e88..0b7e5b3ce22 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_126.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_126.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GNU Library General Public License, V2.0 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_126.yml b/src/licensedcode/data/rules/lgpl-2.0_126.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_127.RULE b/src/licensedcode/data/rules/lgpl-2.0_127.RULE index d9a175b82aa..a2894acfea4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_127.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_127.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE LGPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_127.yml b/src/licensedcode/data/rules/lgpl-2.0_127.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_128.RULE b/src/licensedcode/data/rules/lgpl-2.0_128.RULE index 361d9c5665b..6e15ee9732d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_128.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_128.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE LGPL 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_128.yml b/src/licensedcode/data/rules/lgpl-2.0_128.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_129.RULE b/src/licensedcode/data/rules/lgpl-2.0_129.RULE index 3cf1a8f43b7..dcc59c5a515 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_129.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_129.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_129.yml b/src/licensedcode/data/rules/lgpl-2.0_129.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_13.RULE b/src/licensedcode/data/rules/lgpl-2.0_13.RULE index b7662814ebd..d57bc116a41 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_13.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -487,4 +498,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_13.yml b/src/licensedcode/data/rules/lgpl-2.0_13.yml deleted file mode 100644 index 80432993b43..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_13.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.0_130.RULE b/src/licensedcode/data/rules/lgpl-2.0_130.RULE index ce70a895feb..2f87143b2cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_130.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_130.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program 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; version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_130.yml b/src/licensedcode/data/rules/lgpl-2.0_130.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_131.RULE b/src/licensedcode/data/rules/lgpl-2.0_131.RULE index 89454364897..45869726985 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_131.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_131.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + 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; version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_131.yml b/src/licensedcode/data/rules/lgpl-2.0_131.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_132.RULE b/src/licensedcode/data/rules/lgpl-2.0_132.RULE index 94105194f62..6198fe9d6c3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_132.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_132.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + 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; version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_132.yml b/src/licensedcode/data/rules/lgpl-2.0_132.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_133.RULE b/src/licensedcode/data/rules/lgpl-2.0_133.RULE index 9619bd3a1e8..6cf9551fd8b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_133.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_133.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This program 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; version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_133.yml b/src/licensedcode/data/rules/lgpl-2.0_133.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_134.RULE b/src/licensedcode/data/rules/lgpl-2.0_134.RULE index f7231627477..616adc1018f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_134.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_134.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + available under LGPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_134.yml b/src/licensedcode/data/rules/lgpl-2.0_134.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_135.RULE b/src/licensedcode/data/rules/lgpl-2.0_135.RULE index 4e7f0d6d76a..fd44b29fb8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_135.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_135.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public Licence, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_135.yml b/src/licensedcode/data/rules/lgpl-2.0_135.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_136.RULE b/src/licensedcode/data/rules/lgpl-2.0_136.RULE index df9d57eaee6..284ab57304a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_136.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_136.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public Licence, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_136.yml b/src/licensedcode/data/rules/lgpl-2.0_136.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_137.RULE b/src/licensedcode/data/rules/lgpl-2.0_137.RULE index 249a8c4a2dc..ddaf1237960 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_137.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_137.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_137.yml b/src/licensedcode/data/rules/lgpl-2.0_137.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_138.RULE b/src/licensedcode/data/rules/lgpl-2.0_138.RULE index f5954716e60..8d6660b2580 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_138.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_138.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_138.yml b/src/licensedcode/data/rules/lgpl-2.0_138.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_139.RULE b/src/licensedcode/data/rules/lgpl-2.0_139.RULE index ca17db325f7..7f86fed1e63 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_139.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_139.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public Licence, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_139.yml b/src/licensedcode/data/rules/lgpl-2.0_139.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_14.RULE b/src/licensedcode/data/rules/lgpl-2.0_14.RULE index 782cf6ea2c7..ed01fbdafa5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_14.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + The remaining files that make up libst are licensed under the less -restrictive license LGPL. +restrictive license LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_14.yml b/src/licensedcode/data/rules/lgpl-2.0_14.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_140.RULE b/src/licensedcode/data/rules/lgpl-2.0_140.RULE index 85a424677e5..5e885565193 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_140.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_140.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public Licence, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_140.yml b/src/licensedcode/data/rules/lgpl-2.0_140.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_141.RULE b/src/licensedcode/data/rules/lgpl-2.0_141.RULE index 606930c8802..0c8fde3f043 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_141.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_141.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_141.yml b/src/licensedcode/data/rules/lgpl-2.0_141.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_142.RULE b/src/licensedcode/data/rules/lgpl-2.0_142.RULE index 20fc050ddc1..b513f312939 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_142.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_142.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_142.yml b/src/licensedcode/data/rules/lgpl-2.0_142.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_143.RULE b/src/licensedcode/data/rules/lgpl-2.0_143.RULE index 2b1509ac9a0..7a5b221e77f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_143.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_143.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_143.yml b/src/licensedcode/data/rules/lgpl-2.0_143.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_144.RULE b/src/licensedcode/data/rules/lgpl-2.0_144.RULE index e928ba559cb..4c00808da14 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_144.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_144.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under GNU LGPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_144.yml b/src/licensedcode/data/rules/lgpl-2.0_144.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_145.RULE b/src/licensedcode/data/rules/lgpl-2.0_145.RULE index a2fec9cdfe9..5eade0548ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_145.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_145.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the terms GNU LGPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_145.yml b/src/licensedcode/data/rules/lgpl-2.0_145.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_146.RULE b/src/licensedcode/data/rules/lgpl-2.0_146.RULE index 1e3a20627af..c2a110a765d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_146.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_146.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU LGPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_146.yml b/src/licensedcode/data/rules/lgpl-2.0_146.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_147.RULE b/src/licensedcode/data/rules/lgpl-2.0_147.RULE index 70e4c58a2a1..3c65beaae9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_147.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_147.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - lgplv2.lic +--- + lgplv2.lic \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_147.yml b/src/licensedcode/data/rules/lgpl-2.0_147.yml deleted file mode 100644 index f388c9997fe..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_147.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - lgplv2.lic diff --git a/src/licensedcode/data/rules/lgpl-2.0_148.RULE b/src/licensedcode/data/rules/lgpl-2.0_148.RULE index 654162d60ac..3306abf3839 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_148.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_148.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the GNU Library General Public License, version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_148.yml b/src/licensedcode/data/rules/lgpl-2.0_148.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_149.RULE b/src/licensedcode/data/rules/lgpl-2.0_149.RULE index 981fa805360..1e6fffd5fc9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_149.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_149.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser General Public License, version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_149.yml b/src/licensedcode/data/rules/lgpl-2.0_149.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_15.RULE b/src/licensedcode/data/rules/lgpl-2.0_15.RULE index 28c2e4072ae..aed3f4609d5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_15.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/lgpl-2.0_15.yml b/src/licensedcode/data/rules/lgpl-2.0_15.yml deleted file mode 100644 index 80432993b43..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_15.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.0_150.RULE b/src/licensedcode/data/rules/lgpl-2.0_150.RULE index 56bab64a082..2651f2e6159 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_150.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_150.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU LGPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_150.yml b/src/licensedcode/data/rules/lgpl-2.0_150.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_151.RULE b/src/licensedcode/data/rules/lgpl-2.0_151.RULE index 6bcb29dca00..22e63fac549 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_151.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_151.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library or "Lesser" General Public License (LGPL) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_151.yml b/src/licensedcode/data/rules/lgpl-2.0_151.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_152.RULE b/src/licensedcode/data/rules/lgpl-2.0_152.RULE index fa1c560d5f5..944d71c8ee7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_152.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_152.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of version 2 of the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_152.yml b/src/licensedcode/data/rules/lgpl-2.0_152.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_153.RULE b/src/licensedcode/data/rules/lgpl-2.0_153.RULE index 0538e5c9365..a096cb55c86 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_153.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_153.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_153.yml b/src/licensedcode/data/rules/lgpl-2.0_153.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_154.RULE b/src/licensedcode/data/rules/lgpl-2.0_154.RULE index b112dd4cbcf..d274d67666b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_154.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_154.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU LGPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_154.yml b/src/licensedcode/data/rules/lgpl-2.0_154.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_155.RULE b/src/licensedcode/data/rules/lgpl-2.0_155.RULE index ac60bb404f6..afbf71bdc5f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_155.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_155.RULE @@ -1 +1,9 @@ -The complete text of the GNU Lesser General Public License can be found in /usr/share/common-licenses/LGPL-2. +--- +license_expression: lgpl-2.0 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + +The complete text of the GNU Lesser General Public License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_155.yml b/src/licensedcode/data/rules/lgpl-2.0_155.yml deleted file mode 100644 index 09d0f422a9b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_156.RULE b/src/licensedcode/data/rules/lgpl-2.0_156.RULE index e2fb3e3ee58..cda0551b447 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_156.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_156.RULE @@ -1 +1,9 @@ -On Debian systems, the complete text of the GNU Library General Public License, version 2, can be found in /usr/share/common-licenses/LGPL-2. +--- +license_expression: lgpl-2.0 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + +On Debian systems, the complete text of the GNU Library General Public License, version 2, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_156.yml b/src/licensedcode/data/rules/lgpl-2.0_156.yml deleted file mode 100644 index 09d0f422a9b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_156.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_157.RULE b/src/licensedcode/data/rules/lgpl-2.0_157.RULE index 9f19d16d8d7..c8e2dd22a53 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_157.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_157.RULE @@ -1 +1,10 @@ -can be found in /usr/share/common-licenses/LGPL-2 +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + +can be found in /usr/share/common-licenses/LGPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_157.yml b/src/licensedcode/data/rules/lgpl-2.0_157.yml deleted file mode 100644 index a5ea1ab2afe..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_157.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_158.RULE b/src/licensedcode/data/rules/lgpl-2.0_158.RULE index a412a224b51..f42ee037e9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_158.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_158.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the LGPL v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_158.yml b/src/licensedcode/data/rules/lgpl-2.0_158.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_159.RULE b/src/licensedcode/data/rules/lgpl-2.0_159.RULE index b0b874bda37..8dabe394c66 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_159.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_159.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the LGPL v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_159.yml b/src/licensedcode/data/rules/lgpl-2.0_159.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_16.RULE b/src/licensedcode/data/rules/lgpl-2.0_16.RULE index 0353751d464..fb1a2c90788 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_16.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-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 Lesser General Public License as published by the Free Software Foundation; version 2 of the @@ -11,4 +16,4 @@ 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. + Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_16.yml b/src/licensedcode/data/rules/lgpl-2.0_16.yml deleted file mode 100644 index 6250d5ddf80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_160.RULE b/src/licensedcode/data/rules/lgpl-2.0_160.RULE index 5902b906a5f..c87c1b63b5d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_160.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_160.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the LGPL v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_160.yml b/src/licensedcode/data/rules/lgpl-2.0_160.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_161.RULE b/src/licensedcode/data/rules/lgpl-2.0_161.RULE index 2479b2f2a1d..deb85905359 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_161.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_161.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the LGPL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_161.yml b/src/licensedcode/data/rules/lgpl-2.0_161.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_162.RULE b/src/licensedcode/data/rules/lgpl-2.0_162.RULE index 54fca72c72c..8382ecff0ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_162.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_162.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the LGPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_162.yml b/src/licensedcode/data/rules/lgpl-2.0_162.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_163.RULE b/src/licensedcode/data/rules/lgpl-2.0_163.RULE index 658b3b568cd..5da71a8d075 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_163.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_163.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the LGPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_163.yml b/src/licensedcode/data/rules/lgpl-2.0_163.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_164.RULE b/src/licensedcode/data/rules/lgpl-2.0_164.RULE index 6d2580ebb2f..8a1769e9ad7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_164.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_164.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the full text of the GNU Lesser General Public License version 2 can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_164.yml b/src/licensedcode/data/rules/lgpl-2.0_164.yml deleted file mode 100644 index b935a7abcae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_164.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_165.RULE b/src/licensedcode/data/rules/lgpl-2.0_165.RULE index dd658db44a5..f2102905505 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_165.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_165.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian GNU/Linux systems, the complete text of the GNU Library General Public License, version 2, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_165.yml b/src/licensedcode/data/rules/lgpl-2.0_165.yml deleted file mode 100644 index b935a7abcae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_165.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_166.RULE b/src/licensedcode/data/rules/lgpl-2.0_166.RULE index d4e328f9c2b..d9a45bb71b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_166.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_166.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the complete text of the GNU General Public License can be found at '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_166.yml b/src/licensedcode/data/rules/lgpl-2.0_166.yml deleted file mode 100644 index b935a7abcae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_166.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_167.RULE b/src/licensedcode/data/rules/lgpl-2.0_167.RULE index e0ff951e115..c26c3628bbf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_167.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_167.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License version 2 can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_167.yml b/src/licensedcode/data/rules/lgpl-2.0_167.yml deleted file mode 100644 index 6809bb3eac9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_168.RULE b/src/licensedcode/data/rules/lgpl-2.0_168.RULE index d0f1cc681e1..28863910da2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_168.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_168.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU Lesser (Library) General Public License. diff --git a/src/licensedcode/data/rules/lgpl-2.0_168.yml b/src/licensedcode/data/rules/lgpl-2.0_168.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_169.RULE b/src/licensedcode/data/rules/lgpl-2.0_169.RULE index f2c893de5e0..1eeec5b60bf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_169.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_169.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found at '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_169.yml b/src/licensedcode/data/rules/lgpl-2.0_169.yml deleted file mode 100644 index 6809bb3eac9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_17.RULE b/src/licensedcode/data/rules/lgpl-2.0_17.RULE index e275fea115a..8062d32c3c8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +minimum_coverage: 97 +--- + 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; version 2 @@ -11,4 +17,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, -MA 02110-1301, USA */ +MA 02110-1301, USA */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_17.yml b/src/licensedcode/data/rules/lgpl-2.0_17.yml deleted file mode 100644 index e87e6c98d3c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -minimum_coverage: 97 diff --git a/src/licensedcode/data/rules/lgpl-2.0_170.RULE b/src/licensedcode/data/rules/lgpl-2.0_170.RULE index 32e6a754405..07e5d42f53e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_170.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_170.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian GNU/Linux systems the full text of the GNU LGPL v2 can be found in the `/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_170.yml b/src/licensedcode/data/rules/lgpl-2.0_170.yml deleted file mode 100644 index 6809bb3eac9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_170.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_171.RULE b/src/licensedcode/data/rules/lgpl-2.0_171.RULE index 209885ed95b..db488806c34 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_171.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_171.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian GNU/Linux systems, the complete text of the GNU Lesser (Library) General Public License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_171.yml b/src/licensedcode/data/rules/lgpl-2.0_171.yml deleted file mode 100644 index 7ffa197c6c9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_171.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_172.RULE b/src/licensedcode/data/rules/lgpl-2.0_172.RULE index 23772efdd3e..71d966c06bc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_172.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_172.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lgpl.html +--- + This code is licensed under the LGPLv2: - LGPL (https://www.gnu.org/copyleft/lgpl.html + LGPL (https://www.gnu.org/copyleft/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_172.yml b/src/licensedcode/data/rules/lgpl-2.0_172.yml deleted file mode 100644 index b625dff6061..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_173.RULE b/src/licensedcode/data/rules/lgpl-2.0_173.RULE index 9e9564a1a8f..6a8b554992a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_173.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_173.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.html +--- + https://www.gnu.org/licenses/lgpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_173.yml b/src/licensedcode/data/rules/lgpl-2.0_173.yml deleted file mode 100644 index 64a68ec0db1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_173.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_174.RULE b/src/licensedcode/data/rules/lgpl-2.0_174.RULE index e58837d26cf..25cd0e4c1d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_174.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_174.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + Licensed under the GNU LGPL v2.0 - https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_174.yml b/src/licensedcode/data/rules/lgpl-2.0_174.yml deleted file mode 100644 index 39b80aeb9c5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_174.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_175.RULE b/src/licensedcode/data/rules/lgpl-2.0_175.RULE index 8a450a571a0..d4b52b3ea8c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_175.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_175.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_175.yml b/src/licensedcode/data/rules/lgpl-2.0_175.yml deleted file mode 100644 index 95a5d4a0dd5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_175.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_176.RULE b/src/licensedcode/data/rules/lgpl-2.0_176.RULE index 78259064385..8dfb4dcb310 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_176.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_176.RULE @@ -1 +1,10 @@ -https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +notes: text url LGPL 2 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt +--- + +https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_176.yml b/src/licensedcode/data/rules/lgpl-2.0_176.yml deleted file mode 100644 index 458edc83cb4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_176.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -notes: text url LGPL 2 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0_177.RULE b/src/licensedcode/data/rules/lgpl-2.0_177.RULE index d4d5ebe6c61..3dbc07d1691 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_177.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_177.RULE @@ -1 +1,9 @@ -https://www.gnu.org/licenses/old-licenses/library.html +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/library.html +--- + +https://www.gnu.org/licenses/old-licenses/library.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_177.yml b/src/licensedcode/data/rules/lgpl-2.0_177.yml deleted file mode 100644 index 49f80d14269..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_177.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/library.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_178.RULE b/src/licensedcode/data/rules/lgpl-2.0_178.RULE index 1bec34f0550..a80ba8f6276 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_178.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_178.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.txt +--- + https://www.gnu.org/licenses/lgpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_178.yml b/src/licensedcode/data/rules/lgpl-2.0_178.yml deleted file mode 100644 index 7eaeb0e3f94..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_178.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0_179.RULE b/src/licensedcode/data/rules/lgpl-2.0_179.RULE index d0e2790637d..527c23ac07e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_179.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_179.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * GLL is free software: you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License Version 2 (LGPL2) * as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.0_179.yml b/src/licensedcode/data/rules/lgpl-2.0_179.yml deleted file mode 100644 index 62201c18f51..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0_18.RULE b/src/licensedcode/data/rules/lgpl-2.0_18.RULE index 913b345dfcd..f6e588f2123 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_18.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 diff --git a/src/licensedcode/data/rules/lgpl-2.0_18.yml b/src/licensedcode/data/rules/lgpl-2.0_18.yml deleted file mode 100644 index 80432993b43..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_18.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.0_180.RULE b/src/licensedcode/data/rules/lgpl-2.0_180.RULE index 828deb161c5..7906fec5230 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_180.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_180.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/library.txt +--- + https://www.gnu.org/licenses/old-licenses/library.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_180.yml b/src/licensedcode/data/rules/lgpl-2.0_180.yml deleted file mode 100644 index 9989f9c7e0c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_180.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/library.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0_181.RULE b/src/licensedcode/data/rules/lgpl-2.0_181.RULE index 4bcba2f3677..97ddb236280 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_181.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_181.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the GNU Lesser (Library) General Public License. diff --git a/src/licensedcode/data/rules/lgpl-2.0_181.yml b/src/licensedcode/data/rules/lgpl-2.0_181.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_181.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_182.RULE b/src/licensedcode/data/rules/lgpl-2.0_182.RULE index 2601da01258..2c473a6dcf0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_182.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_182.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the text of the GNU General Public License can be found at '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_182.yml b/src/licensedcode/data/rules/lgpl-2.0_182.yml deleted file mode 100644 index 6809bb3eac9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_183.RULE b/src/licensedcode/data/rules/lgpl-2.0_183.RULE index d5acaa385ab..93422772397 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_183.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_183.RULE @@ -1 +1,10 @@ -On Debian systems, the text of the GNU Library General Public License, version 2, can be found in /usr/share/common-licenses/LGPL-2. +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + +On Debian systems, the text of the GNU Library General Public License, version 2, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_183.yml b/src/licensedcode/data/rules/lgpl-2.0_183.yml deleted file mode 100644 index a5ea1ab2afe..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_183.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_184.RULE b/src/licensedcode/data/rules/lgpl-2.0_184.RULE index 598d2b19757..a2e12ea1e05 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_184.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_184.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the text of the GNU Lesser (Library) General Public License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_184.yml b/src/licensedcode/data/rules/lgpl-2.0_184.yml deleted file mode 100644 index 7ffa197c6c9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_185.RULE b/src/licensedcode/data/rules/lgpl-2.0_185.RULE index aceec61b3d6..f74df448059 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_185.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_185.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the text of the GNU Lesser General Public License version 2 can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_185.yml b/src/licensedcode/data/rules/lgpl-2.0_185.yml deleted file mode 100644 index 6809bb3eac9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_186.RULE b/src/licensedcode/data/rules/lgpl-2.0_186.RULE index a6cfd0a406d..f165936e9d1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_186.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_186.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the complete text of the GNU Lesser General Public License version 2 can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_186.yml b/src/licensedcode/data/rules/lgpl-2.0_186.yml deleted file mode 100644 index 36b3f2179d9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_186.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_187.RULE b/src/licensedcode/data/rules/lgpl-2.0_187.RULE index b11852ae377..0d56de61acc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_187.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_187.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License Version 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.0_187.yml b/src/licensedcode/data/rules/lgpl-2.0_187.yml deleted file mode 100644 index 901b95111bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_187.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0_188.RULE b/src/licensedcode/data/rules/lgpl-2.0_188.RULE index eff042d59a5..9cf41e624c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_188.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_188.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License Version 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.0_188.yml b/src/licensedcode/data/rules/lgpl-2.0_188.yml deleted file mode 100644 index db28bcc9011..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_188.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0_189.RULE b/src/licensedcode/data/rules/lgpl-2.0_189.RULE index 4ef4707f1bd..a2184b4835f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_189.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_189.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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; version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_189.yml b/src/licensedcode/data/rules/lgpl-2.0_189.yml deleted file mode 100644 index 36b3f2179d9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_189.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_19.RULE b/src/licensedcode/data/rules/lgpl-2.0_19.RULE index 16ba66d6def..f346d11eb46 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_19.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_19.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +--- + This code is distributed "AS IS" without warranty of any kind under the terms of the GNU Library General Public Licence Version 2, as shown in the file LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_19.yml b/src/licensedcode/data/rules/lgpl-2.0_19.yml deleted file mode 100644 index 6250d5ddf80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_190.RULE b/src/licensedcode/data/rules/lgpl-2.0_190.RULE index 62a8bd89107..87377764d85 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_190.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_190.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian and systems the full text of the GNU Library General Public License version 2 can be found in the file `/usr/share/common-licenses/LGPL-2` \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_190.yml b/src/licensedcode/data/rules/lgpl-2.0_190.yml deleted file mode 100644 index b935a7abcae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_190.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_191.RULE b/src/licensedcode/data/rules/lgpl-2.0_191.RULE index 9a2da1d1aa8..2e8118f27a5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_191.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_191.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems, the complete text of version 2 of the GNU Lesser General Public License can be found in '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_191.yml b/src/licensedcode/data/rules/lgpl-2.0_191.yml deleted file mode 100644 index b935a7abcae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_191.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_192.RULE b/src/licensedcode/data/rules/lgpl-2.0_192.RULE index b7c056a4240..18fbbc3d3ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_192.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_192.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +notes: seen in zkoss +--- + This program is distributed under LGPL Version 2.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_192.yml b/src/licensedcode/data/rules/lgpl-2.0_192.yml deleted file mode 100644 index 3574573599f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -notes: seen in zkoss diff --git a/src/licensedcode/data/rules/lgpl-2.0_193.RULE b/src/licensedcode/data/rules/lgpl-2.0_193.RULE index 5ef372edd08..b9b66414b04 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_193.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_193.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + LGPL-2.0 GNU Library General Public License v2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_193.yml b/src/licensedcode/data/rules/lgpl-2.0_193.yml deleted file mode 100644 index 1526f75f686..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_193.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0_194.RULE b/src/licensedcode/data/rules/lgpl-2.0_194.RULE index f43603c8e4c..b82f0eb46aa 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_194.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_194.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Library General Public License v2 only LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_194.yml b/src/licensedcode/data/rules/lgpl-2.0_194.yml deleted file mode 100644 index 1526f75f686..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_194.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0_195.RULE b/src/licensedcode/data/rules/lgpl-2.0_195.RULE index 2ce6ad31f27..2265fdc194f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_195.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_195.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_195.yml b/src/licensedcode/data/rules/lgpl-2.0_195.yml deleted file mode 100644 index 06e60098e70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_195.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0_196.RULE b/src/licensedcode/data/rules/lgpl-2.0_196.RULE index 2734680a21c..c89a5221216 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_196.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_196.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_196.yml b/src/licensedcode/data/rules/lgpl-2.0_196.yml deleted file mode 100644 index 1526f75f686..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_196.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0_197.RULE b/src/licensedcode/data/rules/lgpl-2.0_197.RULE index 8a53ac9c73a..a1a32313eb3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_197.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_197.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Library General Public License v2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_197.yml b/src/licensedcode/data/rules/lgpl-2.0_197.yml deleted file mode 100644 index 1526f75f686..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_197.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.0_198.RULE b/src/licensedcode/data/rules/lgpl-2.0_198.RULE index e2535d93d6d..0404163b1f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_198.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_198.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPL-2.0-only GNU Library General Public License v2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_198.yml b/src/licensedcode/data/rules/lgpl-2.0_198.yml deleted file mode 100644 index 85727752a67..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_198.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0_199.RULE b/src/licensedcode/data/rules/lgpl-2.0_199.RULE index d0e4d378a36..277b6e6d741 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_199.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_199.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Library General Public License v2 only LGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_199.yml b/src/licensedcode/data/rules/lgpl-2.0_199.yml deleted file mode 100644 index 85727752a67..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_199.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.0_2.RULE index 6ba1f7d37b3..0573f9bdac7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.0.html +--- + http://www.gnu.org/licenses/lgpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_2.yml b/src/licensedcode/data/rules/lgpl-2.0_2.yml deleted file mode 100644 index cf1a5db9000..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_20.RULE b/src/licensedcode/data/rules/lgpl-2.0_20.RULE index 7459ff46b6f..497beffe273 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_20.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lgpl.html +--- + This code is licensed under the LGPLv2: - LGPL (http://www.gnu.org/copyleft/lgpl.html + LGPL (http://www.gnu.org/copyleft/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_20.yml b/src/licensedcode/data/rules/lgpl-2.0_20.yml deleted file mode 100644 index ba0538aca16..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_200.RULE b/src/licensedcode/data/rules/lgpl-2.0_200.RULE index a8f6b1f2870..165efb2c183 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_200.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_200.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_200.yml b/src/licensedcode/data/rules/lgpl-2.0_200.yml deleted file mode 100644 index 8d966cf9433..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_200.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0_201.RULE b/src/licensedcode/data/rules/lgpl-2.0_201.RULE index 029f7d23f6d..9d729d294e8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_201.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_201.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Library General Public License v2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_201.yml b/src/licensedcode/data/rules/lgpl-2.0_201.yml deleted file mode 100644 index 8d966cf9433..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_201.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0_202.RULE b/src/licensedcode/data/rules/lgpl-2.0_202.RULE index 73961d6b24e..027208a21b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_202.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_202.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_202.yml b/src/licensedcode/data/rules/lgpl-2.0_202.yml deleted file mode 100644 index 8d966cf9433..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_202.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.0_203.RULE b/src/licensedcode/data/rules/lgpl-2.0_203.RULE index 3e4463caf5a..b58b0ebfe0d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_203.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_203.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + - LicenseRef-LGPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_203.yml b/src/licensedcode/data/rules/lgpl-2.0_203.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_204.RULE b/src/licensedcode/data/rules/lgpl-2.0_204.RULE index 5d07ecdbb70..beeaccacaec 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_204.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_204.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + - LicenseRef-LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_204.yml b/src/licensedcode/data/rules/lgpl-2.0_204.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_205.RULE b/src/licensedcode/data/rules/lgpl-2.0_205.RULE index 7990b04728b..69a41054e00 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_205.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_205.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d846376/include/igl/copyleft/marching_cubes_tables.h +--- + * License * * * * This library is free software; you can redistribute it and/or modify it * diff --git a/src/licensedcode/data/rules/lgpl-2.0_205.yml b/src/licensedcode/data/rules/lgpl-2.0_205.yml deleted file mode 100644 index 6ee8cffe48a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d846376/include/igl/copyleft/marching_cubes_tables.h diff --git a/src/licensedcode/data/rules/lgpl-2.0_206.RULE b/src/licensedcode/data/rules/lgpl-2.0_206.RULE index 09b1bae50fa..d6ff6bb8110 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_206.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_206.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_206.yml b/src/licensedcode/data/rules/lgpl-2.0_206.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_207.RULE b/src/licensedcode/data/rules/lgpl-2.0_207.RULE index 6d7991c1cb9..1b3dbb3117a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_207.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_207.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/LGPL-2.0 +--- + http://opensource.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_207.yml b/src/licensedcode/data/rules/lgpl-2.0_207.yml deleted file mode 100644 index 2a6b89f995e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/LGPL-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0_208.RULE b/src/licensedcode/data/rules/lgpl-2.0_208.RULE index 33f66a6c918..8c17c6ece54 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_208.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_208.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/LGPL-2.0 +--- + https://opensource.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_208.yml b/src/licensedcode/data/rules/lgpl-2.0_208.yml deleted file mode 100644 index 6810e25d1a0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_208.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/LGPL-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0_209.RULE b/src/licensedcode/data/rules/lgpl-2.0_209.RULE index 9ad2b5f578e..b165f636340 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_209.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_209.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LGPL-2.0-only +--- + https://licenses.nuget.org/LGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_209.yml b/src/licensedcode/data/rules/lgpl-2.0_209.yml deleted file mode 100644 index 7d5905f0490..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_209.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LGPL-2.0-only diff --git a/src/licensedcode/data/rules/lgpl-2.0_21.RULE b/src/licensedcode/data/rules/lgpl-2.0_21.RULE index 55cc8e0cbd9..bb7f4285abf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_21.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +--- + This code is distributed "AS IS" without warranty of any kind under the terms of the GNU Library General Public License Version 2, as shown in the file LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_21.yml b/src/licensedcode/data/rules/lgpl-2.0_21.yml deleted file mode 100644 index 6250d5ddf80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_21.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_210.RULE b/src/licensedcode/data/rules/lgpl-2.0_210.RULE index d626f3060ef..6f2f96b3921 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_210.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_210.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_210.yml b/src/licensedcode/data/rules/lgpl-2.0_210.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_211.RULE b/src/licensedcode/data/rules/lgpl-2.0_211.RULE index 8ae77ef126a..cddcdc4cd33 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_211.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_211.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + licenses: LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_211.yml b/src/licensedcode/data/rules/lgpl-2.0_211.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_212.RULE b/src/licensedcode/data/rules/lgpl-2.0_212.RULE index def0f02695b..059d1cf2746 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_212.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_212.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + licenses: lGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_212.yml b/src/licensedcode/data/rules/lgpl-2.0_212.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_213.RULE b/src/licensedcode/data/rules/lgpl-2.0_213.RULE index c6798fbb04a..01b25c2f928 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_213.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_213.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0-only +--- + LICENSE {{LGPL-2.0-only}} https://spdx.org/licenses/LGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_213.yml b/src/licensedcode/data/rules/lgpl-2.0_213.yml deleted file mode 100644 index 625343e9010..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_213.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0-only diff --git a/src/licensedcode/data/rules/lgpl-2.0_214.RULE b/src/licensedcode/data/rules/lgpl-2.0_214.RULE index e1db86376dd..da2ef9d6e6b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_214.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_214.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0-only +--- + {{LGPL-2.0-only}} https://spdx.org/licenses/LGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_214.yml b/src/licensedcode/data/rules/lgpl-2.0_214.yml deleted file mode 100644 index 625343e9010..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0-only diff --git a/src/licensedcode/data/rules/lgpl-2.0_215.RULE b/src/licensedcode/data/rules/lgpl-2.0_215.RULE index 68b1ad9b660..461abf19fd7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_215.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_215.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.0 +--- + LICENSE {{LGPL-2}} https://spdx.org/licenses/LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_215.yml b/src/licensedcode/data/rules/lgpl-2.0_215.yml deleted file mode 100644 index fb3b828cf83..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_215.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0_22.RULE b/src/licensedcode/data/rules/lgpl-2.0_22.RULE index a73b7e23987..68464a8498e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_22.RULE @@ -1 +1,7 @@ -is licenced under the GNU Library General Public Licence. \ No newline at end of file +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +is licenced under the GNU Library General Public Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_22.yml b/src/licensedcode/data/rules/lgpl-2.0_22.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_23.RULE b/src/licensedcode/data/rules/lgpl-2.0_23.RULE index bbb7c9ba0c1..ec57c07024f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_23.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_23.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + is licensed under the LGPL v2. See `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_23.yml b/src/licensedcode/data/rules/lgpl-2.0_23.yml deleted file mode 100644 index 7ffa197c6c9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_24.RULE b/src/licensedcode/data/rules/lgpl-2.0_24.RULE index fb02024bc79..6f21e274125 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_24.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +--- + You are free to distribute this software under the terms of the GNU Lesser (Library) General Public License. diff --git a/src/licensedcode/data/rules/lgpl-2.0_24.yml b/src/licensedcode/data/rules/lgpl-2.0_24.yml deleted file mode 100644 index 6250d5ddf80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_25.RULE b/src/licensedcode/data/rules/lgpl-2.0_25.RULE index 8dcd8116295..b0f59ad599c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_25.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This file may be redistributed under the terms of the GNU Library -General Public License, version 2. +General Public License, version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_25.yml b/src/licensedcode/data/rules/lgpl-2.0_25.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_26.RULE b/src/licensedcode/data/rules/lgpl-2.0_26.RULE index 665de7ce71c..cf5a1c2c42a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_26.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_26.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + This file can be redistributed under the terms of the -GNU Lesser General Public License +GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_26.yml b/src/licensedcode/data/rules/lgpl-2.0_26.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_27.RULE b/src/licensedcode/data/rules/lgpl-2.0_27.RULE index 1af9c974243..d84c830c971 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_27.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + This file may be redistributed under the terms of the GNU Library -General Public License, v2. +General Public License, v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_27.yml b/src/licensedcode/data/rules/lgpl-2.0_27.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_28.RULE b/src/licensedcode/data/rules/lgpl-2.0_28.RULE index a8acad9c85a..dc5cf847449 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_28.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_28.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1991 Free Software Foundation, Inc. @@ -54,4 +65,4 @@ Each version is given a distinguishing version number. If the Library specifies 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. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_28.yml b/src/licensedcode/data/rules/lgpl-2.0_28.yml deleted file mode 100644 index 80432993b43..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_28.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.0_29.RULE b/src/licensedcode/data/rules/lgpl-2.0_29.RULE index b90a189531b..2dd390d2975 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_29.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_29.RULE @@ -1,4 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +--- + * %Begin-Header% * This file may be redistributed under the terms of the GNU Library * General Public License, version 2. - * %End-Header% + * %End-Header% \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_29.yml b/src/licensedcode/data/rules/lgpl-2.0_29.yml deleted file mode 100644 index 6250d5ddf80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.0_3.RULE index 40d752a0e42..1352feddfbe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html +--- + http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_3.yml b/src/licensedcode/data/rules/lgpl-2.0_3.yml deleted file mode 100644 index 0a4cf018c8c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_30.RULE b/src/licensedcode/data/rules/lgpl-2.0_30.RULE index 7f0026618d2..7fb507281aa 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_30.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_30.RULE @@ -1,7 +1,12 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU Lesser General Public License as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_30.yml b/src/licensedcode/data/rules/lgpl-2.0_30.yml deleted file mode 100644 index 6250d5ddf80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_31.RULE b/src/licensedcode/data/rules/lgpl-2.0_31.RULE index f3ff3272dd0..633025db523 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_31.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU Lesser General Public * License as published by the Free Software Foundation. @@ -10,4 +16,4 @@ * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, -* Boston, MA 02110-1301, USA. +* Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_31.yml b/src/licensedcode/data/rules/lgpl-2.0_31.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_32.RULE b/src/licensedcode/data/rules/lgpl-2.0_32.RULE index 20eb150669f..0583e9f8b70 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_32.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-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 Library General Public License as published by # the Free Software Foundation; version 2 only @@ -9,4 +14,4 @@ # # 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# 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-2.0_32.yml b/src/licensedcode/data/rules/lgpl-2.0_32.yml deleted file mode 100644 index 6250d5ddf80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_32.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_33.RULE b/src/licensedcode/data/rules/lgpl-2.0_33.RULE index d8fbd9a96ee..4f88e1e11b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 95 +--- + LGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_33.yml b/src/licensedcode/data/rules/lgpl-2.0_33.yml deleted file mode 100644 index 57203ee1c7d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.0_34.RULE b/src/licensedcode/data/rules/lgpl-2.0_34.RULE index 9a60088c8cb..792736829cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_34.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 95 +--- + LGPL20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_34.yml b/src/licensedcode/data/rules/lgpl-2.0_34.yml deleted file mode 100644 index 57203ee1c7d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.0_35.RULE b/src/licensedcode/data/rules/lgpl-2.0_35.RULE index aa58f7f8bad..ac7412b6e2a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_35.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + LGPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_35.yml b/src/licensedcode/data/rules/lgpl-2.0_35.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_36.RULE b/src/licensedcode/data/rules/lgpl-2.0_36.RULE index 8d9969a3541..2a906e352b3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_36.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + LGPLv20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_36.yml b/src/licensedcode/data/rules/lgpl-2.0_36.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_37.RULE b/src/licensedcode/data/rules/lgpl-2.0_37.RULE index 87eaf5b642f..9f1d436feee 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_37.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + lgpl 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_37.yml b/src/licensedcode/data/rules/lgpl-2.0_37.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_38.RULE b/src/licensedcode/data/rules/lgpl-2.0_38.RULE index 50c0b806679..7725e5bb629 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_38.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + lgpl 20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_38.yml b/src/licensedcode/data/rules/lgpl-2.0_38.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_39.RULE b/src/licensedcode/data/rules/lgpl-2.0_39.RULE index e78c30c4631..0d818bdeec4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_39.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + lgpl v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_39.yml b/src/licensedcode/data/rules/lgpl-2.0_39.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.0_4.RULE index 6a61e91b93b..db8e2b5767e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_4.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.0 +is_license_text: yes +notes: Lgpl 2.0 formatting variant, derived from GPL +ignorable_copyrights: + - Copyright (c) 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -434,4 +446,4 @@ 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. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_4.yml b/src/licensedcode/data/rules/lgpl-2.0_4.yml deleted file mode 100644 index 3d141013fd4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_4.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.0 -is_license_text: yes -notes: Lgpl 2.0 formatting variant, derived from GPL -ignorable_copyrights: - - Copyright (c) 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.0_40.RULE b/src/licensedcode/data/rules/lgpl-2.0_40.RULE index 263a017d4fe..9c3f863ddbe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_40.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + lgpl v20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_40.yml b/src/licensedcode/data/rules/lgpl-2.0_40.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_41.RULE b/src/licensedcode/data/rules/lgpl-2.0_41.RULE index bf2807f2afc..ecdb9c82d47 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_41.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + lgpl v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_41.yml b/src/licensedcode/data/rules/lgpl-2.0_41.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_42.RULE b/src/licensedcode/data/rules/lgpl-2.0_42.RULE index 643f29084eb..7a86c0ced27 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_42.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNULGPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_42.yml b/src/licensedcode/data/rules/lgpl-2.0_42.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_43.RULE b/src/licensedcode/data/rules/lgpl-2.0_43.RULE index 0b093da3048..d7c7d57c0c2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_43.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNULGPL20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_43.yml b/src/licensedcode/data/rules/lgpl-2.0_43.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_44.RULE b/src/licensedcode/data/rules/lgpl-2.0_44.RULE index fcc2da2e614..0081ad39d35 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_44.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNULGPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_44.yml b/src/licensedcode/data/rules/lgpl-2.0_44.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_45.RULE b/src/licensedcode/data/rules/lgpl-2.0_45.RULE index e931122cfb3..05f97f38850 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_45.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNULGPLv20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_45.yml b/src/licensedcode/data/rules/lgpl-2.0_45.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_46.RULE b/src/licensedcode/data/rules/lgpl-2.0_46.RULE index 7efdfd98e76..aac0b23620a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_46.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_46.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_46.yml b/src/licensedcode/data/rules/lgpl-2.0_46.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_47.RULE b/src/licensedcode/data/rules/lgpl-2.0_47.RULE index 2b024498dd8..6b6f422d724 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_47.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_47.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl 20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_47.yml b/src/licensedcode/data/rules/lgpl-2.0_47.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_48.RULE b/src/licensedcode/data/rules/lgpl-2.0_48.RULE index 7f464bdb7c4..6945d7e6fca 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_48.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_48.yml b/src/licensedcode/data/rules/lgpl-2.0_48.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_49.RULE b/src/licensedcode/data/rules/lgpl-2.0_49.RULE index 8bbe7022760..a86200143d9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_49.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_49.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl v20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_49.yml b/src/licensedcode/data/rules/lgpl-2.0_49.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_5.RULE b/src/licensedcode/data/rules/lgpl-2.0_5.RULE index 5acf31262ef..630cb6bc81d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_5.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +notes: Declaration variant +--- + This program is licensed under the GNU Library General Public License, v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_5.yml b/src/licensedcode/data/rules/lgpl-2.0_5.yml deleted file mode 100644 index b4638306c4e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -notes: Declaration variant diff --git a/src/licensedcode/data/rules/lgpl-2.0_50.RULE b/src/licensedcode/data/rules/lgpl-2.0_50.RULE index 8409db61ab3..2ac9f983283 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_50.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_50.yml b/src/licensedcode/data/rules/lgpl-2.0_50.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_51.RULE b/src/licensedcode/data/rules/lgpl-2.0_51.RULE index 024c5a6f460..3a1e4305c78 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_51.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_51.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_51.yml b/src/licensedcode/data/rules/lgpl-2.0_51.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_52.RULE b/src/licensedcode/data/rules/lgpl-2.0_52.RULE index a6c4079d715..baa159a3cab 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_52.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_52.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_52.yml b/src/licensedcode/data/rules/lgpl-2.0_52.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_53.RULE b/src/licensedcode/data/rules/lgpl-2.0_53.RULE index 355635031d8..01ebe60e4c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_53.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_53.yml b/src/licensedcode/data/rules/lgpl-2.0_53.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_54.RULE b/src/licensedcode/data/rules/lgpl-2.0_54.RULE index 1a1440571fc..398cc6e4c14 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_54.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgplv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_54.yml b/src/licensedcode/data/rules/lgpl-2.0_54.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_55.RULE b/src/licensedcode/data/rules/lgpl-2.0_55.RULE index 2830486d993..cffda5ef6ca 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_55.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgplv20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_55.yml b/src/licensedcode/data/rules/lgpl-2.0_55.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_56.RULE b/src/licensedcode/data/rules/lgpl-2.0_56.RULE index 2c8301e4712..8e30cc82839 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_56.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_56.yml b/src/licensedcode/data/rules/lgpl-2.0_56.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_57.RULE b/src/licensedcode/data/rules/lgpl-2.0_57.RULE index e022eea0d0b..38481705395 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_57.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_57.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_57.yml b/src/licensedcode/data/rules/lgpl-2.0_57.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_58.RULE b/src/licensedcode/data/rules/lgpl-2.0_58.RULE index 3b222a95e84..43980ca9f60 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_58.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_58.yml b/src/licensedcode/data/rules/lgpl-2.0_58.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_59.RULE b/src/licensedcode/data/rules/lgpl-2.0_59.RULE index 56c0cd6441a..0a018e65d1d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_59.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_59.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v20 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_59.yml b/src/licensedcode/data/rules/lgpl-2.0_59.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_6.RULE b/src/licensedcode/data/rules/lgpl-2.0_6.RULE index f9e5c0effe8..099d381811a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/library.txt +--- + http://www.gnu.org/licenses/old-licenses/library.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_6.yml b/src/licensedcode/data/rules/lgpl-2.0_6.yml deleted file mode 100644 index 48b50a77dde..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/library.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0_60.RULE b/src/licensedcode/data/rules/lgpl-2.0_60.RULE index 0653498552f..f9e9d1a21c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_60.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_60.yml b/src/licensedcode/data/rules/lgpl-2.0_60.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_61.RULE b/src/licensedcode/data/rules/lgpl-2.0_61.RULE index f0304194fe5..24311f52171 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_61.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_61.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_61.yml b/src/licensedcode/data/rules/lgpl-2.0_61.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_62.RULE b/src/licensedcode/data/rules/lgpl-2.0_62.RULE index b5ba90a0c94..89c1a4fef95 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_62.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_62.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://jsvalidator.codeplex.com/license +--- + http://jsvalidator.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_62.yml b/src/licensedcode/data/rules/lgpl-2.0_62.yml deleted file mode 100644 index 5a2a69bb55f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://jsvalidator.codeplex.com/license diff --git a/src/licensedcode/data/rules/lgpl-2.0_63.RULE b/src/licensedcode/data/rules/lgpl-2.0_63.RULE index 3cb7c38e6b7..0b43eb0a6b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_63.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_63.RULE @@ -1,5 +1,14 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - COPYING.LIB +--- + The C library "libftdi" is distributed under the GNU Library General Public License version 2. A copy of the GNU Library General Public License (LGPL) is included -in this distribution, in the file COPYING.LIB. +in this distribution, in the file COPYING.LIB. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_63.yml b/src/licensedcode/data/rules/lgpl-2.0_63.yml deleted file mode 100644 index 5eb54747618..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_63.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0_64.RULE b/src/licensedcode/data/rules/lgpl-2.0_64.RULE index 6189f32aa36..75da052fb0c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_64.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_64.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + On Debian systems the full text of the GNU LGPL v2 can be found in the `/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_64.yml b/src/licensedcode/data/rules/lgpl-2.0_64.yml deleted file mode 100644 index 6809bb3eac9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_65.RULE b/src/licensedcode/data/rules/lgpl-2.0_65.RULE index e6134678a09..6b5c7934ba7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_65.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_65.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * GLL is free software: you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License Version 2 (LGPL2) * as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.0_65.yml b/src/licensedcode/data/rules/lgpl-2.0_65.yml deleted file mode 100644 index 5af323429de..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.0_66.RULE b/src/licensedcode/data/rules/lgpl-2.0_66.RULE index 4fa1b1152c6..56ea319cc43 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_66.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_66.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + portions licensed under the GNU Library General Public License Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_66.yml b/src/licensedcode/data/rules/lgpl-2.0_66.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_67.RULE b/src/licensedcode/data/rules/lgpl-2.0_67.RULE index afb7491ddee..ef3a269c6b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_67.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_67.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU Library General Public License Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_67.yml b/src/licensedcode/data/rules/lgpl-2.0_67.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_68.RULE b/src/licensedcode/data/rules/lgpl-2.0_68.RULE index ecfd94b003a..86d50fb0215 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_68.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_68.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + software is released under the GNU Library General Public License Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_68.yml b/src/licensedcode/data/rules/lgpl-2.0_68.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_69.RULE b/src/licensedcode/data/rules/lgpl-2.0_69.RULE index 7eeddd82203..5da2731d1dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_69.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_69.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the GNU Library General Public License Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_69.yml b/src/licensedcode/data/rules/lgpl-2.0_69.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_7.RULE b/src/licensedcode/data/rules/lgpl-2.0_7.RULE index 69791118182..731ecd0f353 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_7.RULE @@ -1 +1,9 @@ -http://www.gnu.org/licenses/old-licenses/library.html +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/library.html +--- + +http://www.gnu.org/licenses/old-licenses/library.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_7.yml b/src/licensedcode/data/rules/lgpl-2.0_7.yml deleted file mode 100644 index 21dfa617839..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/library.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_70.RULE b/src/licensedcode/data/rules/lgpl-2.0_70.RULE index aaae29f48a2..23003a5b924 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_70.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_70.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Library General Public License Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_70.yml b/src/licensedcode/data/rules/lgpl-2.0_70.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_71.RULE b/src/licensedcode/data/rules/lgpl-2.0_71.RULE index e47feb6e789..bdaa06fd0f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_71.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_71.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License Version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_71.yml b/src/licensedcode/data/rules/lgpl-2.0_71.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_72.RULE b/src/licensedcode/data/rules/lgpl-2.0_72.RULE index a5f4288513b..2ab44fb9b4c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_72.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_72.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + library General Public License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_72.yml b/src/licensedcode/data/rules/lgpl-2.0_72.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_73.RULE b/src/licensedcode/data/rules/lgpl-2.0_73.RULE index 5fff1a031d4..1a5e2905c36 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_73.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_73.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). You may obtain a complete machine-readable copy of the source code for the libiconv software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request to Apple. The libiconv software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_73.yml b/src/licensedcode/data/rules/lgpl-2.0_73.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_74.RULE b/src/licensedcode/data/rules/lgpl-2.0_74.RULE index 6385dd73fac..25be73f529d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_74.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_74.RULE @@ -1 +1,7 @@ - owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). \ No newline at end of file +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_74.yml b/src/licensedcode/data/rules/lgpl-2.0_74.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_75.RULE b/src/licensedcode/data/rules/lgpl-2.0_75.RULE index ec2b7a8f170..61173d0278b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_75.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_75.RULE @@ -1 +1,7 @@ - owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). You may obtain a complete machine-readable copy of the source code for the software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request. The software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + + owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). You may obtain a complete machine-readable copy of the source code for the software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request. The software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_75.yml b/src/licensedcode/data/rules/lgpl-2.0_75.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_76.RULE b/src/licensedcode/data/rules/lgpl-2.0_76.RULE index 033dc5a203f..ae22fd51b64 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_76.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_76.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_76.yml b/src/licensedcode/data/rules/lgpl-2.0_76.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_77.RULE b/src/licensedcode/data/rules/lgpl-2.0_77.RULE index 5d7cfcd6a90..89013878ec4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_77.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License, Version 2 (LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_77.yml b/src/licensedcode/data/rules/lgpl-2.0_77.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_78.RULE b/src/licensedcode/data/rules/lgpl-2.0_78.RULE index 494e91d0277..e199dafc049 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_78.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_78.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + GNU libiconv is owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). You may obtain a complete machine-readable copy of the source code for the libiconv software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request to Apple. The libiconv software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_78.yml b/src/licensedcode/data/rules/lgpl-2.0_78.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_79.RULE b/src/licensedcode/data/rules/lgpl-2.0_79.RULE index 6fc14233197..c1b0f00f2fb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_79.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_79.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_79.yml b/src/licensedcode/data/rules/lgpl-2.0_79.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_8.RULE b/src/licensedcode/data/rules/lgpl-2.0_8.RULE index 7bda127d6b0..84758bf265d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html +--- + http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_8.yml b/src/licensedcode/data/rules/lgpl-2.0_8.yml deleted file mode 100644 index f105836d1d7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_80.RULE b/src/licensedcode/data/rules/lgpl-2.0_80.RULE index 920143f6cd5..1adec998957 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_80.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_80.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.en.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_80.yml b/src/licensedcode/data/rules/lgpl-2.0_80.yml deleted file mode 100644 index 42a0d286b6d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_81.RULE b/src/licensedcode/data/rules/lgpl-2.0_81.RULE index 8b08df8ee9c..04c7cb72a11 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_81.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_81.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.de.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_81.yml b/src/licensedcode/data/rules/lgpl-2.0_81.yml deleted file mode 100644 index 4bb5041fef5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.de.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_82.RULE b/src/licensedcode/data/rules/lgpl-2.0_82.RULE index a8cc6404d0c..9e35ed6bc43 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_82.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_82.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.fr.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_82.yml b/src/licensedcode/data/rules/lgpl-2.0_82.yml deleted file mode 100644 index c8bbb8bf6ea..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.fr.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_83.RULE b/src/licensedcode/data/rules/lgpl-2.0_83.RULE index a9895cc4eda..e8ac40e90f7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_83.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_83.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.ja.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_83.yml b/src/licensedcode/data/rules/lgpl-2.0_83.yml deleted file mode 100644 index 5e9ceadafcd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.ja.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_84.RULE b/src/licensedcode/data/rules/lgpl-2.0_84.RULE index b8b60486a4b..337f29d3917 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_84.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_84.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.pt-br.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_84.yml b/src/licensedcode/data/rules/lgpl-2.0_84.yml deleted file mode 100644 index 34e9756446d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_84.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.pt-br.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_85.RULE b/src/licensedcode/data/rules/lgpl-2.0_85.RULE index 9d52a880e6c..9a53700f3d9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_85.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_85.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.ru.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_85.yml b/src/licensedcode/data/rules/lgpl-2.0_85.yml deleted file mode 100644 index d30cd29d6e0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.ru.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_86.RULE b/src/licensedcode/data/rules/lgpl-2.0_86.RULE index 197574d29eb..507cb685167 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_86.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_86.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.uk.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_86.yml b/src/licensedcode/data/rules/lgpl-2.0_86.yml deleted file mode 100644 index b9adbb3a5b9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0.uk.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_87.RULE b/src/licensedcode/data/rules/lgpl-2.0_87.RULE index fde3aed9455..e97dd18f702 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_87.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_87.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.en.html +--- + https://www.gnu.org/licenses/lgpl-2.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_87.yml b/src/licensedcode/data/rules/lgpl-2.0_87.yml deleted file mode 100644 index 41afd949620..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_88.RULE b/src/licensedcode/data/rules/lgpl-2.0_88.RULE index 7327b204fa2..952e6a4bafd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_88.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_88.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.de.html +--- + https://www.gnu.org/licenses/lgpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_88.yml b/src/licensedcode/data/rules/lgpl-2.0_88.yml deleted file mode 100644 index 201afa93c8f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.de.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_89.RULE b/src/licensedcode/data/rules/lgpl-2.0_89.RULE index d89e8f7e33b..efc8318a7f7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_89.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_89.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.fr.html +--- + https://www.gnu.org/licenses/lgpl-2.0.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_89.yml b/src/licensedcode/data/rules/lgpl-2.0_89.yml deleted file mode 100644 index 0866d2467ce..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.fr.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_9.RULE b/src/licensedcode/data/rules/lgpl-2.0_9.RULE index 7dceadeb0fc..d4b97702126 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_9.RULE @@ -1 +1,10 @@ -http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +notes: text url LGPL 2 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt +--- + +http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_9.yml b/src/licensedcode/data/rules/lgpl-2.0_9.yml deleted file mode 100644 index 7e1c755b399..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -notes: text url LGPL 2 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/lgpl-2.0_90.RULE b/src/licensedcode/data/rules/lgpl-2.0_90.RULE index 20d28e1c396..5851899a34d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_90.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_90.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.ja.html +--- + https://www.gnu.org/licenses/lgpl-2.0.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_90.yml b/src/licensedcode/data/rules/lgpl-2.0_90.yml deleted file mode 100644 index 11225fd1b03..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_90.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.ja.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_91.RULE b/src/licensedcode/data/rules/lgpl-2.0_91.RULE index c4c8c700adf..0541d4197a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_91.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_91.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.pt-br.html +--- + https://www.gnu.org/licenses/lgpl-2.0.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_91.yml b/src/licensedcode/data/rules/lgpl-2.0_91.yml deleted file mode 100644 index 6e70d38a560..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.pt-br.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_92.RULE b/src/licensedcode/data/rules/lgpl-2.0_92.RULE index 25ef97be15e..8f84fb81f3f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_92.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_92.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.ru.html +--- + https://www.gnu.org/licenses/lgpl-2.0.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_92.yml b/src/licensedcode/data/rules/lgpl-2.0_92.yml deleted file mode 100644 index 2d5a50712cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.ru.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_93.RULE b/src/licensedcode/data/rules/lgpl-2.0_93.RULE index a2344258990..c45fd4e4daf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_93.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_93.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.0.uk.html +--- + https://www.gnu.org/licenses/lgpl-2.0.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_93.yml b/src/licensedcode/data/rules/lgpl-2.0_93.yml deleted file mode 100644 index 949f26367f2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.0.uk.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_94.RULE b/src/licensedcode/data/rules/lgpl-2.0_94.RULE index 20fa967b28b..ef25111dc55 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_94.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_94.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed with GNU LGPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_94.yml b/src/licensedcode/data/rules/lgpl-2.0_94.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_95.RULE b/src/licensedcode/data/rules/lgpl-2.0_95.RULE index c84493ba3f1..61435075d7b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_95.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_95.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + _LICENSE_LGPL2, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_95.yml b/src/licensedcode/data/rules/lgpl-2.0_95.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_96.RULE b/src/licensedcode/data/rules/lgpl-2.0_96.RULE index fce07508266..9bf0c4997d3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_96.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_96.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + has been donated to the Free Software Foundation, Inc. It is covered by the GNU library license version 2, see the file 'COPYING.LIB'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_96.yml b/src/licensedcode/data/rules/lgpl-2.0_96.yml deleted file mode 100644 index 069eacc3fae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0_97.RULE b/src/licensedcode/data/rules/lgpl-2.0_97.RULE index a23ca2ccaa2..676b16d8443 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_97.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_97.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + It is covered by the GNU library license version 2, see the file 'COPYING.LIB'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_97.yml b/src/licensedcode/data/rules/lgpl-2.0_97.yml deleted file mode 100644 index 069eacc3fae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0_98.RULE b/src/licensedcode/data/rules/lgpl-2.0_98.RULE index b450ab41d6d..e9e6f4cc604 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_98.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_98.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +--- + It is covered by the GNU library license version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_98.yml b/src/licensedcode/data/rules/lgpl-2.0_98.yml deleted file mode 100644 index 398cd185341..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_99.RULE b/src/licensedcode/data/rules/lgpl-2.0_99.RULE index 1d3de888aac..546676cf89e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_99.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_99.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This library is licensed under the GNU LESSER GENERAL PUBLIC LICENSE v2. For further information see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_99.yml b/src/licensedcode/data/rules/lgpl-2.0_99.yml deleted file mode 100644 index 8ae36eeb160..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_bsd-new_1.RULE index 83508bdcb24..6a762aa14bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_bsd-new_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 AND bsd-new +is_license_notice: yes +relevance: 99 +--- + is open source software with portions licensed under the LGPL and BSD licenses available here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/lgpl-2.0_and_bsd-new_1.yml deleted file mode 100644 index d82d0163eb0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 AND bsd-new -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_gpl-2.0.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_gpl-2.0.RULE index 8fb4fac966b..d80c25aa83c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_gpl-2.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND gpl-2.0-plus AND lgpl-2.0-plus +is_license_notice: yes +--- + The lowest common denominator is GNU GPL 2 only. Many apps are under GNU GPL 2 or later and libraries under GNU LGPL 2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_gpl-2.0.yml b/src/licensedcode/data/rules/lgpl-2.0_and_gpl-2.0.yml deleted file mode 100644 index dbdcf8c8d18..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND gpl-2.0-plus AND lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_gpl-3.0_1.RULE index e2a1cd3918e..4ac15ea1e18 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_gpl-3.0_1.RULE @@ -1 +1,8 @@ -Mix of LGPL-2.1 and GPL-3.0. +--- +license_expression: lgpl-2.0 AND gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + +Mix of LGPL-2.1 and GPL-3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0_and_gpl-3.0_1.yml deleted file mode 100644 index f91795b8cbb..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_gpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 AND gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_1.RULE index 88765ad3cd9..14f55654dce 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0 AND lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - intl/COPYING.LIB-2.0 + - /usr/share/common-licenses/LGPL-2 + - intl/COPYING.LIB-2.1 + - /usr/share/common-licenses/LGPL-2.1 +--- + The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0 and intl/COPYING.LIB-2.1. . diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_1.yml b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_1.yml deleted file mode 100644 index 9d1e0a32a14..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0 AND lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - intl/COPYING.LIB-2.0 - - /usr/share/common-licenses/LGPL-2 - - intl/COPYING.LIB-2.1 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_2.RULE index 58f48c39a9f..1bfaa7f4aa1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0 AND lgpl-2.1 +is_license_reference: yes +referenced_filenames: + - intl/COPYING.LIB-2.0 + - /usr/share/common-licenses/LGPL-2 + - intl/COPYING.LIB-2.1 + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the complete text of intl/COPYING.LIB-2.0 from gettext-runtime can be found in ‘/usr/share/common-licenses/LGPL-2’ and the text of intl/COPYING.LIB-2.1 can be found in diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_2.yml b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_2.yml deleted file mode 100644 index d054204edd7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0 AND lgpl-2.1 -is_license_reference: yes -referenced_filenames: - - intl/COPYING.LIB-2.0 - - /usr/share/common-licenses/LGPL-2 - - intl/COPYING.LIB-2.1 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_3.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_3.RULE index 2f90dade7d0..87326cfbc68 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0 AND lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - intl/COPYING.LIB-2.0 + - /usr/share/common-licenses/LGPL-2 + - intl/COPYING.LIB-2.1 + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems, the complete text of intl/COPYING.LIB-2.0 from gettext-runtime can be found in ‘/usr/share/common-licenses/LGPL-2’ and the text of intl/COPYING.LIB-2.1 can be found in diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_3.yml b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_3.yml deleted file mode 100644 index bc17cb228ff..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0 AND lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - intl/COPYING.LIB-2.0 - - /usr/share/common-licenses/LGPL-2 - - intl/COPYING.LIB-2.1 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_4.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_4.RULE index fcdc97e1e5b..9985b8de5d1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - intl/COPYING.LIB-2.0 + - /usr/share/common-licenses/LGPL-2 + - intl/COPYING.LIB-2.1 + - /usr/share/common-licenses/LGPL-2.1 +--- + The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0 and intl/COPYING.LIB-2.1. . diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_4.yml b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_4.yml deleted file mode 100644 index 60b3edc588f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - intl/COPYING.LIB-2.0 - - /usr/share/common-licenses/LGPL-2 - - intl/COPYING.LIB-2.1 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_5.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_5.RULE index 945ee5e0f39..84a1231c748 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0 AND lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - intl/COPYING.LIB-2.0 + - /usr/share/common-licenses/LGPL-2 + - intl/COPYING.LIB-2.1 + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the text of intl/COPYING.LIB-2.0 from gettext-runtime can be found in ‘/usr/share/common-licenses/LGPL-2’ and the text of intl/COPYING.LIB-2.1 can be found in diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_5.yml b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_5.yml deleted file mode 100644 index bc17cb228ff..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0 AND lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - intl/COPYING.LIB-2.0 - - /usr/share/common-licenses/LGPL-2 - - intl/COPYING.LIB-2.1 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_6.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_6.RULE index 7500d169492..ed41c9667d0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_6.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - intl/COPYING.LIB-2.0 + - /usr/share/common-licenses/LGPL-2 + - intl/COPYING.LIB-2.1 + - /usr/share/common-licenses/LGPL-2.1 +--- + The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0 and intl/COPYING.LIB-2.1. . diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_6.yml b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_6.yml deleted file mode 100644 index 60b3edc588f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-2.1_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - intl/COPYING.LIB-2.0 - - /usr/share/common-licenses/LGPL-2 - - intl/COPYING.LIB-2.1 - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-3.0_1.RULE index e9470784592..734c9dde09b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-3.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 AND lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Adding in LGPL 2/3 headers \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-3.0_1.yml deleted file mode 100644 index 87267e3d799..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_lgpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 AND lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_mit_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_mit_1.RULE index f781c3ddc69..b835e50599a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_mit_1.RULE @@ -1,2 +1,7 @@ -"license": "(LGPL-2.0 or MIT)" +--- +license_expression: lgpl-2.0 AND mit +is_license_tag: yes +relevance: 100 +--- +"license": "(LGPL-2.0 or MIT)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_mit_1.yml b/src/licensedcode/data/rules/lgpl-2.0_and_mit_1.yml deleted file mode 100644 index 60515c498e9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 AND mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_proprietary.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_proprietary.RULE index a89697dda12..691e70be635 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_proprietary.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_proprietary.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0 AND proprietary-license +is_license_notice: yes +notes: LGPL 2.0 with ozone db conflicting advertizing-proprietary like terms. See http://www.ozone-db.org/noframes/home/license.html +ignorable_authors: + - the Ozone Database Project (http://www.ozone-db.org/) +ignorable_urls: + - http://www.ozone-db.org/ +--- + This library is free software; you can redistribute it and/or modify it provided that the terms of the GNU Library General Public License as published by the Free Software Foundation @@ -26,4 +36,4 @@ written permission of SMB. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Library General Public License for more details. \ No newline at end of file +GNU Library General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_proprietary.yml b/src/licensedcode/data/rules/lgpl-2.0_and_proprietary.yml deleted file mode 100644 index 8986658bc37..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_proprietary.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0 AND proprietary-license -is_license_notice: yes -notes: LGPL 2.0 with ozone db conflicting advertizing-proprietary like terms. See http://www.ozone-db.org/noframes/home/license.html -ignorable_authors: - - the Ozone Database Project (http://www.ozone-db.org/) -ignorable_urls: - - http://www.ozone-db.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_and_unknown-license-reference_1.RULE index 1af8946c4cc..0c5f8e1d2ff 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_and_unknown-license-reference_1.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 AND unknown-license-reference +is_license_tag: yes +relevance: 100 +notes: the license refrence is not 100% clear but is typically the libwebsockets-exception +--- + License: LGPLv2 with exceptions \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/lgpl-2.0_and_unknown-license-reference_1.yml deleted file mode 100644 index d40ef75a67d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 AND unknown-license-reference -is_license_tag: yes -relevance: 100 -notes: the license refrence is not 100% clear but is typically the libwebsockets-exception diff --git a/src/licensedcode/data/rules/lgpl-2.0_bare_id.RULE b/src/licensedcode/data/rules/lgpl-2.0_bare_id.RULE index 433a22019d2..4c90b37c114 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_bare_id.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_bare_id.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 80 +--- + LGPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_bare_id.yml b/src/licensedcode/data/rules/lgpl-2.0_bare_id.yml deleted file mode 100644 index c57cfe10495..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_bare_id.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/lgpl-2.0_debian.RULE b/src/licensedcode/data/rules/lgpl-2.0_debian.RULE index 7dc632f7308..d72beec6603 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_debian.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_debian.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + - LGPLv2: /usr/share/common-licenses/LGPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_debian.yml b/src/licensedcode/data/rules/lgpl-2.0_debian.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_debian.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_debian_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_debian_1.RULE index 642793f028b..9b266035463 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_debian_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_debian_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +--- + You can find multiple versions of the LGPL in /usr/share/common-licenses; -in particular, /usr/share/common-licenses/LGPL-2 contains version 2. +in particular, /usr/share/common-licenses/LGPL-2 contains version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_debian_1.yml b/src/licensedcode/data/rules/lgpl-2.0_debian_1.yml deleted file mode 100644 index 6250d5ddf80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_debian_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_not_gpl.RULE b/src/licensedcode/data/rules/lgpl-2.0_not_gpl.RULE index 05e824bce63..5f05ebc9d99 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_not_gpl.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_not_gpl.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_not_gpl.yml b/src/licensedcode/data/rules/lgpl-2.0_not_gpl.yml deleted file mode 100644 index b74be30f5cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_not_gpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_apache-2.0_1.RULE index 2277131eeec..6e51e7bd82e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: LGPL-2 | Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0_or_apache-2.0_1.yml deleted file mode 100644 index f451d589b29..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_gpl-2.0_1.RULE index 6f75d39f9b4..23216b2dac0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_gpl-2.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + the license is dual LGPL2 / GPL2 at your choice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0_or_gpl-2.0_1.yml deleted file mode 100644 index 4bfbb221019..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_1.RULE index 571c8ddad4d..59cf6fc2f20 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0 OR lgpl-3.0 OR kde-accepted-lgpl +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.LIB +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License or ( at diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_1.yml b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_1.yml deleted file mode 100644 index 856cf12f143..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 OR lgpl-3.0 OR kde-accepted-lgpl -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_2.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_2.RULE index bec6ed8e6ce..1eca6f29db6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0 OR lgpl-3.0 OR kde-accepted-lgpl +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING.LIB +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License or (at diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_2.yml b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_2.yml deleted file mode 100644 index 856cf12f143..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 OR lgpl-3.0 OR kde-accepted-lgpl -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_3.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_3.RULE index 8ddde90cd65..f1477a587e9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0 OR lgpl-3.0 OR kde-accepted-lgpl +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + 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; either version 2 of the License or diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_3.yml b/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_3.yml deleted file mode 100644 index 69a22a7ce0c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_lgpl-3.0_or_kde-accepted-lgpl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 OR lgpl-3.0 OR kde-accepted-lgpl -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_mit_1.RULE index 0ad0bdedbc9..6319b600633 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + Dual license LGPL-2.0 or MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mit_1.yml b/src/licensedcode/data/rules/lgpl-2.0_or_mit_1.yml deleted file mode 100644 index 1977139a394..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik.RULE index 57d0d6986ca..f282d8171b1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik.RULE @@ -1,5 +1,10 @@ +--- +license_expression: lgpl-2.0 OR mulle-kybernetik +is_license_notice: yes +--- + This code is distributed "AS IS" without warranty of any kind under the terms of the GNU Library General Public Licence Version 2, as shown in the file LICENSE, or under the license shown below. The technical and financial contributors to program are listed in the file -CREDITS. +CREDITS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik.yml b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik.yml deleted file mode 100644 index cab0c1cfa72..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 OR mulle-kybernetik -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik2.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik2.RULE index b74ea0bcbc6..e4353066350 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik2.RULE @@ -1,5 +1,10 @@ +--- +license_expression: lgpl-2.0 OR mulle-kybernetik +is_license_notice: yes +--- + This code is distributed "AS IS" without warranty of any kind under the terms of the GNU Library General Public License Version 2, as shown in the file LICENSE, or under the license shown below. The technical and financial contributors to program are listed in the file -CREDITS. +CREDITS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik2.yml b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik2.yml deleted file mode 100644 index cab0c1cfa72..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 OR mulle-kybernetik -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik3.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik3.RULE index 92dcd98e059..7c53e997e7f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.0 OR mulle-kybernetik +is_license_notice: yes +--- + You may distribute this file under either of the two licenses that follow at your discretion. */ @@ -36,4 +41,4 @@ ANY DERIVATIVE WORK. encourages users of this software to return any improvements or extensions that they make, and to grant - the rights to redistribute these changes without encumbrance. + the rights to redistribute these changes without encumbrance. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik3.yml b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik3.yml deleted file mode 100644 index cab0c1cfa72..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 OR mulle-kybernetik -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik4.RULE b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik4.RULE index 15eff5066e4..b5229b785cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik4.RULE @@ -1,5 +1,10 @@ +--- +license_expression: lgpl-2.0 OR mulle-kybernetik +is_license_notice: yes +--- + This code is distributed "AS IS" without warranty of any kind under the terms of the GNU Library General Public Licence Version 2, as shown in the file LICENSE, or under the license shown below. The technical and financial contributors to are listed in the file -CREDITS. +CREDITS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik4.yml b/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik4.yml deleted file mode 100644 index cab0c1cfa72..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_or_mulle-kybernetik4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0 OR mulle-kybernetik -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.0_other.RULE b/src/licensedcode/data/rules/lgpl-2.0_other.RULE index 77ad482d3b7..7cbdce5a4f2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_other.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_other.RULE @@ -1,5 +1,12 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://gate.ac.uk/ + - http://gate.ac.uk/gate/licence.html +--- + * This file is part of GATE (see http://gate.ac.uk/), and is free * software, licenced under the GNU Library General Public License, * Version 2, June 1991 (in the distribution as file licence.html, -* and also available at http://gate.ac.uk/gate/licence.html). - +* and also available at http://gate.ac.uk/gate/licence.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_other.yml b/src/licensedcode/data/rules/lgpl-2.0_other.yml deleted file mode 100644 index 66bee154f41..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_other.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://gate.ac.uk/ - - http://gate.ac.uk/gate/licence.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_readme.RULE b/src/licensedcode/data/rules/lgpl-2.0_readme.RULE index bcb7e9399f6..21a15fae612 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_readme.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_readme.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +--- + ([LGPL 2.0](/legal/LGPLv2.0)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_readme.yml b/src/licensedcode/data/rules/lgpl-2.0_readme.yml deleted file mode 100644 index 341f9da0563..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_readme.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_url_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_url_1.RULE index 7f417f24f2e..12a41f73071 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-2.0-only +--- + https://spdx.org/licenses/lgpl-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_url_1.yml b/src/licensedcode/data/rules/lgpl-2.0_url_1.yml deleted file mode 100644 index d5bb8a40f0e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-2.0-only diff --git a/src/licensedcode/data/rules/lgpl-2.0_url_2.RULE b/src/licensedcode/data/rules/lgpl-2.0_url_2.RULE index 7a5b93f712b..cc38dc5f9da 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-2.0-only.html +--- + https://spdx.org/licenses/lgpl-2.0-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_url_2.yml b/src/licensedcode/data/rules/lgpl-2.0_url_2.yml deleted file mode 100644 index 94c618fc01b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-2.0-only.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_url_glc_133.RULE b/src/licensedcode/data/rules/lgpl-2.0_url_glc_133.RULE index 09d5e1590dc..918bada97b5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_url_glc_133.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_url_glc_133.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_url_glc_133.yml b/src/licensedcode/data/rules/lgpl-2.0_url_glc_133.yml deleted file mode 100644 index 0f4b90ddcae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_url_glc_133.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_with_gcc-linking-exception-2.0_1.RULE index 66fc6155eb6..febc7a02dc2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_with_gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_with_gcc-linking-exception-2.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0 WITH gcc-linking-exception-2.0 +is_license_reference: yes +relevance: 95 +notes: most common exception with this short mention +--- + LGPL 2.0 with Special exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.0_with_gcc-linking-exception-2.0_1.yml deleted file mode 100644 index a0ff6ba7519..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_with_gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0 WITH gcc-linking-exception-2.0 -is_license_reference: yes -relevance: 95 -notes: most common exception with this short mention diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_1.RULE index 6effa3a5bfa..d776bb0c8ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + The Library is distributed under the terms of the GNU Library General Public License version 2 (included below). diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_1.yml b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_1.yml deleted file mode 100644 index cf51d83e029..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_2.RULE b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_2.RULE index a6da125ac2b..420264d885b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + The Library is distributed under the terms of the GNU Library General Public License version 2 (included below). diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_2.yml b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_2.yml deleted file mode 100644 index cf51d83e029..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_3.RULE b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_3.RULE index 289953ce39c..1d56590ee7c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + The Library is distributed under the terms of the GNU Library General Public License version 2 (included below). diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_3.yml b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_3.yml deleted file mode 100644 index cf51d83e029..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_4.RULE b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_4.RULE index 9ac1c4c9d84..162bf10bc18 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + The Library is distributed under the terms of the GNU Library General Public License version 2 (included below). diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_4.yml b/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_4.yml deleted file mode 100644 index cf51d83e029..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_with_ocaml-lgpl-linking-exception_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_qt-kde-linking-exception_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_with_qt-kde-linking-exception_1.RULE index 5fe41afbfda..54107da05b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_with_qt-kde-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_with_qt-kde-linking-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0 WITH qt-kde-linking-exception +is_license_notice: yes +relevance: 99 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.0_with_qt-kde-linking-exception_1.yml b/src/licensedcode/data/rules/lgpl-2.0_with_qt-kde-linking-exception_1.yml deleted file mode 100644 index 70c49f3b2a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.0_with_qt-kde-linking-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 WITH qt-kde-linking-exception -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.1-digia-qt_exception.RULE b/src/licensedcode/data/rules/lgpl-2.1-digia-qt_exception.RULE index 7be3d7949f9..b36eaa78c62 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-digia-qt_exception.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-digia-qt_exception.RULE @@ -1,3 +1,8 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_notice: yes +--- + ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** 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/lgpl-2.1-digia-qt_exception.yml b/src/licensedcode/data/rules/lgpl-2.1-digia-qt_exception.yml deleted file mode 100644 index 2292b9976d9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-digia-qt_exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others.RULE b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others.RULE index 03c4e86e687..5dfff3a12d6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others.RULE @@ -1,3 +1,16 @@ +--- +license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Commercial Usage Licensees holding valid Qt Commercial licenses may use this file in accordance with the Qt Commercial License Agreement provided with the diff --git a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others.yml b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others.yml deleted file mode 100644 index 19250e9d215..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_1.RULE index c50c430b2af..e169a4b6115 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +ignorable_emails: + - qt-info@nokia.com +--- + ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial Usage ** Licensees holding valid Qt Commercial licenses may use this file in @@ -27,4 +41,4 @@ ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. - ** $QT_END_LICENSE$ + ** $QT_END_LICENSE$ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_1.yml b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_1.yml deleted file mode 100644 index a66a13ceb79..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: commercial-license OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html -ignorable_emails: - - qt-info@nokia.com diff --git a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_2.RULE index fe0f5b7b870..55335a31e3f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 OR commercial-license +is_license_notice: yes +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public @@ -27,4 +39,4 @@ ** ** ** -** $QT_END_LICENSE$ +** $QT_END_LICENSE$ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_2.yml b/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_2.yml deleted file mode 100644 index 07ae00269a2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-nokia-qt_and_others_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 OR commercial-license -is_license_notice: yes -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus-linking.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus-linking.RULE index 4fc6640db89..2cbf5cd5310 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus-linking.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus-linking.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus WITH linking-exception-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h +--- + http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus-linking.yml b/src/licensedcode/data/rules/lgpl-2.1-plus-linking.yml deleted file mode 100644 index cd92c1d1932..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus-linking.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH linking-exception-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=blob;f=libio/libio.h diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus.RULE index 8587661a78e..7893a6e4f4a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus.yml b/src/licensedcode/data/rules/lgpl-2.1-plus.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_1.RULE index dccadb157bf..ef220e124c7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -14,4 +22,4 @@ 02110-1301 USA On Debian systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_1.yml deleted file mode 100644 index 24fa81e687a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_10.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_10.RULE index 8861dbc332d..0d5b292cb34 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_10.RULE @@ -1,4 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. (See .) + (at your option) any later version. (See .) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_10.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_10.yml deleted file mode 100644 index d50c93d7ec6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_100.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_100.RULE index dbc861d3713..9e8358b9c94 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_100.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_100.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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) @@ -13,4 +22,4 @@ along with ; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. On Debian GNU/Linux systems, the complete text of the Lesser GNU General -Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file +Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_100.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_100.yml deleted file mode 100644 index c2591f9f83f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_100.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_101.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_101.RULE index 1960571ebe2..31e2414ae2a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_101.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_101.RULE @@ -1,4 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This file and the modifications can be redistributed and/or * modified under the terms and conditions of the GNU General Public * License, version 2.1 or any later version of the GPL, as published - * by the Free Software Foundation. \ No newline at end of file + * by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_101.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_101.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_102.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_102.RULE index a19f37d2a43..6ce26d46bcf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_102.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_102.RULE @@ -1 +1,7 @@ -All Icons are 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. +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + +All Icons are 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_102.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_102.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_103.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_103.RULE index 5401b1e5bb4..ffe69ad264b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_103.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_103.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + Anything that ends up being part of the library needs to be released under LGPLv2.1+ or a license compatible with it (though the latter will only be accepted for cases where the code originated elsewhere and was diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_103.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_103.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_104.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_104.RULE index df2579eda8c..aaf0d0793b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_104.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_104.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/licenses/lgpl.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of License, or @@ -12,4 +19,4 @@ License along with this library in the file named "LICENSE". If not, write to the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA or visit their web page on the - internet at http://www.fsf.org/licenses/lgpl.html. + internet at http://www.fsf.org/licenses/lgpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_104.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_104.yml deleted file mode 100644 index 5e060fba166..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_104.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_105.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_105.RULE index b64f2ddaa89..48da4072317 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_105.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_105.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LESSER +--- + Free use of this software is granted under the terms of the GNU Lesser General Public License (LGPL v2.1+). For details see the files `COPYING` and -`COPYING.LESSER` included with the distribution. +`COPYING.LESSER` included with the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_105.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_105.yml deleted file mode 100644 index 7dd8ed14db8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_105.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LESSER diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_106.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_106.RULE index bd60b65d59f..836e668d909 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_106.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_106.RULE @@ -1,5 +1,9 @@ -The source code for GNU is licensed under the Lesser GNU Public License (LGPL). +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- +The source code for GNU is licensed under the Lesser GNU Public License (LGPL). -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_106.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_106.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_106.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_107.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_107.RULE index 3e4ae12e2d0..607df68ba6c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_107.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_107.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either @@ -10,4 +16,4 @@ * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_107.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_107.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE index 590ce984765..29d7a73d633 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + License: LGPL-2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_108.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_108.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_109.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_109.RULE index 6d653c60478..4e2eb22ef2d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_109.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_109.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -9,4 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You can receive a copy of the GNU Lesser General Public License from -http://www.gnu.org/ +http://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_109.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_109.yml deleted file mode 100644 index 9cade665c2f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_109.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_11.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_11.RULE index 7cd2e5d2766..fedd69bbb6e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_11.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_11.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_11.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_110.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_110.RULE index 2c245584cf1..c0dfecd6244 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_110.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_110.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + library is licensed under the Lesser GNU Public License, -which is included with the distribution in a file called LICENSE.txt. +which is included with the distribution in a file called LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_110.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_110.yml deleted file mode 100644 index 778a8337b86..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_111.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_111.RULE index cdeb61948eb..8732ee0472f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_111.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_111.RULE @@ -1,5 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING + - COPYING.LESSER +--- + COPYING ------- Free use of this software is granted under the terms of the GNU Lesser General Public License (LGPL v2.1+). For details see the files `COPYING` and -`COPYING.LESSER` included with the distribution. +`COPYING.LESSER` included with the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_111.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_111.yml deleted file mode 100644 index e51dc4d9e93..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING - - COPYING.LESSER diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_112.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_112.RULE index ed11e36ca85..9080e1a2251 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_112.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_112.RULE @@ -1,6 +1,14 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.txt +--- + GNU LESSER GENERAL PUBLIC LICENSE http://www.gnu.org/licenses/lgpl.txt - +
\ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_112.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_112.yml deleted file mode 100644 index 34d84764140..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_113.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_113.RULE index c5a311bbf31..b0f97806645 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_113.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_113.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser Lesser General Public * License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_113.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_113.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_113.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_114.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_114.RULE index e418d19070c..b08d4accf23 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_114.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_114.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + LGPL 2.1 LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_114.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_114.yml deleted file mode 100644 index b3190f5778c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_115.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_115.RULE index 9fa8fdd434f..671764ccd5b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_115.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_115.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + # 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) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_115.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_115.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_116.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_116.RULE index b66b0a41956..2c3d093b572 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_116.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_116.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + version 2.1 or later of the GNU Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_116.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_116.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_117.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_117.RULE index 68f923523e7..8721dba7de5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_117.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_117.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + available under version 2.1 or later of the GNU Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_117.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_117.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_118.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_118.RULE index 8c5235e86ed..845c993bf25 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_118.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_118.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + and available under version 2.1 or later of the GNU Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_118.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_118.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_119.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_119.RULE index 8dbad9eb474..2defca2bb58 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_119.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_119.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + GNU Lesser General Public License version 2.1 or later applies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_119.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_119.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_12.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_12.RULE index 5c303d889ce..d18c9e9f8c7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_12.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -11,4 +16,4 @@ You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301 USA + 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_12.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_12.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_120.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_120.RULE index a38a19df518..ddcca99dcd0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_120.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_120.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + LGPL21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_120.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_120.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_121.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_121.RULE index ad0314a407f..76f21dd997c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_121.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_121.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_121.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_121.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_122.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_122.RULE index 9e4316b9afe..4536f5d53cd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_122.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_122.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + LGPL21PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_122.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_122.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_123.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_123.RULE index 3b5a0a79b5b..43ddf5dc9c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_123.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_123.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv21PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_123.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_123.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_124.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_124.RULE index 0f698d19da8..29389bdd8c8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_124.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_124.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_124.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_124.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_125.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_125.RULE index fb0b0c41332..c27283bb04d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_125.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_125.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_125.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_125.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_126.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_126.RULE index ba819ce526b..2d905eb7317 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_126.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_126.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 2.1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_126.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_126.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_127.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_127.RULE index 732fed466a8..bbf1c447748 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_127.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_127.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v2.1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_127.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_127.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_128.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_128.RULE index c04b7aa42e5..34ef8ac62b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_128.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_128.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 2.1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_128.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_128.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_129.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_129.RULE index f82a2678543..6c86e076958 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_129.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_129.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v2.1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_129.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_129.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_13.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_13.RULE index f7790fd78b0..c88bb81697a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_13.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 95 +notes: MP variant originally with "dnl" comment markers +--- + The GNU MP Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_13.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_13.yml deleted file mode 100644 index b9ff3b309b0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 95 -notes: MP variant originally with "dnl" comment markers diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_130.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_130.RULE index 5e8b680b4bc..773044a851f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_130.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_130.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_130.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_130.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_131.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_131.RULE index 380a3a96019..5e67b9814f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_131.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_131.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_131.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_131.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_132.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_132.RULE index 84497129531..c27493f9f16 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_132.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_132.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL21PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_132.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_132.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_133.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_133.RULE index ec5135cbba0..8267cee62fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_133.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_133.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv21PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_133.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_133.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_134.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_134.RULE index 56094883075..6b3ad463a82 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_134.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_134.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_134.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_134.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_135.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_135.RULE index 6f6811e856a..070567b224a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_135.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_135.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_135.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_135.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_136.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_136.RULE index 80a573d6e14..aafbc776887 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_136.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_136.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 21plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_136.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_136.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_137.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_137.RULE index 601545e0b9b..eb9eea630d1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_137.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_137.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v21plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_137.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_137.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_138.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_138.RULE index deb4717104b..8bcf75e4e5c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_138.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_138.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_138.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_138.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_139.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_139.RULE index 173f46aad01..7392b4e6f5d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_139.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_139.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_139.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_139.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_14.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_14.RULE index 3c85024550f..d0eec28c8d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_14.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + Some of the files are licensed under the GNU Lesser General Public License which -can be found in /usr/share/common-licenses/LGPL-2.1. +can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_14.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_14.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_140.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_140.RULE index a3f6fc16558..7d4b35f745e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_140.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_140.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2.1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_140.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_140.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_141.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_141.RULE index b0016321608..fc9993ae375 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_141.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_141.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2.1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_141.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_141.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_142.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_142.RULE index 77d86884f56..0fc50efa6bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_142.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_142.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2.1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_142.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_142.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_143.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_143.RULE index da3d641d3ec..bff359f837d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_143.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_143.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2.1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_143.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_143.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_144.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_144.RULE index 98224a92a0e..36931b5f32d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_144.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_144.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_144.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_144.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_145.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_145.RULE index 6b37ea772db..6e8583ef8ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_145.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_145.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_145.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_145.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_146.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_146.RULE index 40c9cc7f6fa..1212907c9a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_146.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_146.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl21plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_146.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_146.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_147.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_147.RULE index 97d3a99a679..5f3f65900c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_147.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_147.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv21plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_147.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_147.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_148.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_148.RULE index 630124c9e8b..d133988d376 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_148.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_148.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v21+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_148.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_148.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_149.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_149.RULE index 10c81b49b07..ed4a9f405d3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_149.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_149.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_149.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_149.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_15.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_15.RULE index ebacadbee27..317e43cfb55 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_15.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or @@ -13,4 +21,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_15.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_15.yml deleted file mode 100644 index f5352db126a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_150.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_150.RULE index 85ee8bc827a..58c071cb7b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_150.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_150.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_150.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_150.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_151.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_151.RULE index 7ac15368460..5e3cfa5dc46 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_151.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_151.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2.1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_151.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_151.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_152.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_152.RULE index 663e2f96e82..ce19ed9be5c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_152.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_152.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2.1plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_152.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_152.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_153.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_153.RULE index a6feacb520b..8c75c8be42a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_153.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_153.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2.1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_153.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_153.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_154.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_154.RULE index 67cd1411025..e3fa718ca10 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_154.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_154.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v2.1 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_154.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_154.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_155.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_155.RULE index 548f5b9536c..14d19fab040 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_155.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_155.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_155.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_155.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_156.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_156.RULE index 938f5903109..d685f1b7333 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_156.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_156.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + licensed under the CC-GNU LGPL version 2.1. http://creativecommons.org/licenses/LGPL/2.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_156.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_156.yml deleted file mode 100644 index f71ddfa9f1b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_156.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_157.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_157.RULE index 8ca4cd40306..a2a1dd1483a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_157.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_157.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LESSER +--- + // This file is part of , distributed under the LESSER GNU GPL. For full terms see the included COPYING file and the COPYING.LESSER file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_157.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_157.yml deleted file mode 100644 index 7dd8ed14db8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_157.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LESSER diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_158.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_158.RULE index e09dd757d93..67d0a511280 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_158.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_158.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU LGPL version 2.1 or newer. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_158.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_158.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_159.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_159.RULE index 9d60a4467ab..1ad1eb1cd7e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_159.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_159.RULE @@ -1 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + License:: GNU Lesser General Public License (COPYING, http://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_159.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_159.yml deleted file mode 100644 index e28ecf7a604..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_159.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_16.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_16.RULE index 4cbd15e8970..ff7cb05b9fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_16.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -13,4 +21,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_16.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_16.yml deleted file mode 100644 index f5352db126a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_160.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_160.RULE index 1365a898273..8ee692de532 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_160.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_160.RULE @@ -1 +1,7 @@ -software is released under the GNU lesser General Public License \ No newline at end of file +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + +software is released under the GNU lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_160.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_160.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_161.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_161.RULE index 7e7a0caeea8..bb5f96c4342 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_161.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_161.RULE @@ -1 +1,7 @@ -released under the GNU lesser General Public License \ No newline at end of file +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + +released under the GNU lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_161.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_161.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_162.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_162.RULE index 9e230199717..d6d95bfebd3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_162.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_162.RULE @@ -1 +1,7 @@ -lesser General Public License \ No newline at end of file +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + +lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_162.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_162.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_163.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_163.RULE index 12d8b412356..28f31a6f211 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_163.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_163.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License @note This program is distributed in the hope that it will be useful - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_163.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_163.yml deleted file mode 100644 index 0481afeaa4e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_164.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_164.RULE index b1049cf8d61..22933445806 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_164.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_164.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_164.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_164.yml deleted file mode 100644 index 0481afeaa4e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_165.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_165.RULE index a2b25b4c64d..68f97098bf8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_165.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_165.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.tinymce.com/license +--- + License: http://www.tinymce.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_165.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_165.yml deleted file mode 100644 index 7bf463e199b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.tinymce.com/license diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_166.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_166.RULE index a8523bfb7c9..7b0093c9394 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_166.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_166.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.tinymce.com/license +--- + Released under LGPL License. License: http://www.tinymce.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_166.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_166.yml deleted file mode 100644 index 51f7b927b62..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.tinymce.com/license diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_167.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_167.RULE index 19cc0284e65..8378ecfa83b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_167.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_167.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_167.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_167.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_168.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_168.RULE index f7b88becd55..0255eacc0b1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_168.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_168.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 95 +--- + The pre-built opencv_ffmpeg*.dll is: * LGPL library, not BSD libraries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_168.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_168.yml deleted file mode 100644 index 9061bc799ec..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_169.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_169.RULE index 8a57be0eadb..30425bee55b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_169.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_169.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 95 +referenced_filenames: + - license.txt +--- + See license.txt for the FFMPEG copyright notice and the licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_169.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_169.yml deleted file mode 100644 index 28106cc0ab4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 95 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_17.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_17.RULE index 3d08e1a396c..fec3d5e7933 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_17.RULE @@ -1,4 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: lgpl with markup +--- + * 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. + * License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_17.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_17.yml deleted file mode 100644 index bbe591461ee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: lgpl with markup diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_170.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_170.RULE index 592a48affb6..47c5c39603d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_170.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_170.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - OPENCV_SOURCE_CODE/3rdparty/ffmpeg/readme.txt +ignorable_urls: + - http://ffmpeg.org/legal.html +--- + FFmpeg is licensed under the GNU Lesser General Public License (LGPL) version 2.1 or later. See `OPENCV_SOURCE_CODE/3rdparty/ffmpeg/readme.txt` and http://ffmpeg.org/legal.html for details and licensing information \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_170.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_170.yml deleted file mode 100644 index 9a9cd83b820..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_170.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - OPENCV_SOURCE_CODE/3rdparty/ffmpeg/readme.txt -ignorable_urls: - - http://ffmpeg.org/legal.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_171.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_171.RULE index c9edadbbe3c..96ff347598a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_171.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_171.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + FFmpeg is licensed under the GNU Lesser General Public License (LGPL) version 2.1 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_171.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_171.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_172.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_172.RULE index 544015a2dad..af6f75f987a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_172.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_172.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU Lesser General Public License (LGPL) version 2.1 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_172.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_172.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_173.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_173.RULE index 3e831c600ee..8ba6989f78c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_173.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_173.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU Lesser General Public License (LGPL) version 2.1 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_173.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_173.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_174.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_174.RULE index 9aad289ed10..0cfae03886c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_174.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_174.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + LGPLv2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_174.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_174.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_175.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_175.RULE index 99cecf6a004..db35f57d193 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_175.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_175.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License, version 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_175.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_175.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_176.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_176.RULE index 2add98ead12..58b83519445 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_176.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_176.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + Upgrade license from LGPLv2+ to LGPLv2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_176.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_176.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_177.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_177.RULE index cf1cb9d1dff..cdd840319a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_177.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_177.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is distributed under the terms of the GNU Lesser General Public License, version 2.1 or later - see the file COPYING.LIB for details. If you did not receive a copy of the license with this program, please diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_177.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_177.yml deleted file mode 100644 index 336c7cdfdbf..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_177.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_178.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_178.RULE index 1f1f19fa7cc..33667f61582 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_178.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_178.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is distributed under the terms of the GNU Lesser General Public License, version 2.1 or later - see the file COPYING.LIB for details. If you did not receive a copy of the license with this program, please diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_178.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_178.yml deleted file mode 100644 index 2cdef6c8172..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_178.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_179.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_179.RULE index 8b775f89021..00d72d6147b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_179.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_179.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This file is distributed under the terms of the GNU Lesser General Public License, version 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_179.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_179.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_18.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_18.RULE index ebe2ec98efd..79804bec4fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_18.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: LGPL 2.1 or later notice, alternate formatting, debian style +--- + license // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as @@ -12,4 +18,4 @@ // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -// USA. +// USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_18.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_18.yml deleted file mode 100644 index 4fd3b1abbe9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: LGPL 2.1 or later notice, alternate formatting, debian style diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_180.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_180.RULE index 48435d680dd..8e5bb3314f2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_180.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_180.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GNU is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_180.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_180.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_180.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_181.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_181.RULE index fd2870738c7..0bbfb13da85 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_181.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_181.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GNU is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_181.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_181.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_182.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_182.RULE index 2a3d87fbedc..f8e061f6cdb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_182.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_182.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 99 +notes: note the mistaken use of purpose instead of public +--- + Lesser General Purpose Licence (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_182.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_182.yml deleted file mode 100644 index 23552e10f3a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_182.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 99 -notes: note the mistaken use of purpose instead of public diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_183.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_183.RULE index e38ae9696ae..e22c3384996 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_183.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_183.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + License (software): LGPLv2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_183.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_183.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_184.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_184.RULE index e6c78264bbb..61ff4134918 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_184.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_184.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + license GNU Lesser General Public License, version 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_184.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_184.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_185.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_185.RULE index 71b2ec04f5f..24424c41519 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_185.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_185.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_185.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_185.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_186.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_186.RULE index e8816a90bf3..8da7306ccee 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_186.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_186.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPLv2.1 +--- + # License Most files in FFmpeg are under the GNU Lesser General Public License version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_186.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_186.yml deleted file mode 100644 index c7dc79fcd05..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_186.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPLv2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_187.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_187.RULE index f2b0376e31f..b524dfc6b07 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_187.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_187.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPLv2.1 +--- + Most files in FFmpeg are under the GNU Lesser General Public License version 2.1 or later (LGPL v2.1+). Read the file `COPYING.LGPLv2.1` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_187.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_187.yml deleted file mode 100644 index c7dc79fcd05..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPLv2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_188.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_188.RULE index c1ef4fec1bb..ee7f25f821f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_188.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_188.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU Lesser General Public License version 2.1 or later (LGPL v2.1+). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_188.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_188.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_189.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_189.RULE index 6963c5192b3..c58a71ea499 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_189.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_189.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + are under the GNU Lesser General Public License version 2.1 or later (LGPL v2.1+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_189.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_189.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_19.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_19.RULE index 9056b31596f..054be7db5cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_19.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 50 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: This library is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_19.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_19.yml deleted file mode 100644 index f5352db126a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 50 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_190.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_190.RULE index 58eaf08f5bc..e41f99a8473 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_190.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_190.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser General Public License version 2.1 or later (LGPL v2.1+). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_190.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_190.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_191.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_191.RULE index 55b27687b22..63bdfa7149a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_191.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_191.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser General Public License version 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_191.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_191.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_192.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_192.RULE index 87fc5816a45..a7ea17893c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_192.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_192.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + The intended use for LGPL mode is with libmpv, and currently it's not recommended to build mpv CLI in LGPL mode at all. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_192.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_192.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_193.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_193.RULE index 728de5ab37a..3f49a924bed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_193.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_193.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + "v2.1+" in this context means "version 2.1 or later". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_193.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_193.yml deleted file mode 100644 index 5f6e718d5a8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_193.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_194.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_194.RULE index ab60a914415..3439bfc807b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_194.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_194.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - trove_license.txt +--- + The Trove library is licensed under the Lesser GNU Public License, which is included with the distribution in a file called trove_license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_194.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_194.yml deleted file mode 100644 index cebca7884f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_194.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - trove_license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_195.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_195.RULE index af7f0019c27..e9757816fa1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_195.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_195.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + license lgpl2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_195.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_195.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_196.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_196.RULE index b1f9ccf1634..a424a82718f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_196.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_196.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + # This program is free software. It may be redistributed and/or modified under # the terms of the LGPL version 2.1 (or later). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_196.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_196.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_196.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_197.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_197.RULE index 1b36c85874f..55b47cf333d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_197.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_197.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + # This program is free software. It may be redistributed and/or modified under # the terms of the LGPL version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_197.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_197.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_197.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_198.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_198.RULE index 5b47d929441..6b6f59d8b7c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_198.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_198.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + # This software may be modified and distributed under the terms of the # GNU Lesser General Public License v2.1 or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_198.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_198.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_199.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_199.RULE index 118028444a9..6b96abdbf5e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_199.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_199.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + * This software may be modified and distributed under the terms of the * GNU Lesser General Public Licence v2.1 or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_199.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_199.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_2.RULE index 15538a1c097..753ea2974eb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + ALTERNATIVELY, the code may be distributed under the terms of the GNU Lesser General Public License, version 2.1 or any later version published by the Free Software Foundation, in which case the @@ -6,4 +11,4 @@ restrictions. Although not required under the terms of the LGPL, it would still be nice if you could make any changes available to the author to allow -a consistent code base to be maintained. */ +a consistent code base to be maintained. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_2.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_20.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_20.RULE index 5276e9cda5d..cdd5adbb811 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_20.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_20.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: This library is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_20.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_20.yml deleted file mode 100644 index 11c9f8e3c93..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_200.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_200.RULE index 04562d5dbaf..119797e878a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_200.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_200.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This Software is distributed under the terms of the GNU Lesser General Public License version 2.1 (included below), or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_200.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_200.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_201.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_201.RULE index 6ba8c0b94be..3e225d0365b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_201.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_201.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + distributed 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_201.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_201.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_202.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_202.RULE index 8431858b72e..5e284cb8408 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_202.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_202.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This module 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_202.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_202.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_203.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_203.RULE index 97082ec15ac..f4f904ca2cc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_203.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_203.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU Lesser General Public License, version 2.1 (or any later version, at your choice). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_203.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_203.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_204.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_204.RULE index 89b206f796d..3d64fca3487 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_204.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_204.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_204.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_204.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_205.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_205.RULE index b7fc84280bf..ed570ca7db8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_205.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_205.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_205.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_205.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_206.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_206.RULE index 1a9adb29649..9512b129008 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_206.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_206.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + under GNU LGPL v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_206.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_206.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_207.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_207.RULE index c697d4f7496..0d30efa1435 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_207.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_207.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL v2.1+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_207.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_207.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_208.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_208.RULE index 0e4d90c4304..4ae1ba174b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_208.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_208.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of LGPL2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_208.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_208.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_209.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_209.RULE index 8ba1a9e622c..8fb01b2b9f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_209.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_209.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPLv2.1+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_209.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_209.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_21.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_21.RULE index 17f159dc0e3..5f2e4b7720d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_21.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +notes: Variants of lgpl-2.1-plus +--- + The GNU MP Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your @@ -11,4 +19,4 @@ License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, -MA 02110-1301, USA. */ +MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_21.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_21.yml deleted file mode 100644 index 3803df88c95..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -notes: Variants of lgpl-2.1-plus diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_210.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_210.RULE index 87dcd2129eb..bfb2fb57b25 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_210.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_210.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL v2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_210.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_210.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_211.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_211.RULE index b69618a6497..18fdc3a123a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_211.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_211.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPLv2.1+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_211.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_211.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_212.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_212.RULE index cb43e8911a8..46fbfbcced9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_212.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_212.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL 2.1+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_212.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_212.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_213.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_213.RULE index c8bfa8bfb0d..55792098f25 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_213.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_213.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL2.1+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_213.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_213.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_214.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_214.RULE index 3768551c019..a098aff56f9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_214.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_214.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL 2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_214.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_214.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_215.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_215.RULE index 5a6238cfdf3..7cc07af8240 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_215.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_215.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL2.1+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_215.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_215.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_216.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_216.RULE index 4a35533defc..73fbc4d0a22 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_216.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_216.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + is distributed under the LGPLv2.1+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_216.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_216.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_217.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_217.RULE index 1c033ddf887..288ee008b83 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_217.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_217.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + library is distributed under the LGPLv2.1+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_217.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_217.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_218.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_218.RULE index a8f6456490e..4dbdb0391b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_218.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_218.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +notes: FFmpeg configure result strings as found in binaries +--- + license="LGPL version 2.1 or later" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_218.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_218.yml deleted file mode 100644 index 356cdff9581..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_218.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -notes: FFmpeg configure result strings as found in binaries diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_219.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_219.RULE index 2aa9138498b..03bcb8176da 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_219.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_219.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 99 +notes: configure option for mplayer and/or gstreamer +--- + --enable-lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_219.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_219.yml deleted file mode 100644 index 83b7564ccd6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_219.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 99 -notes: configure option for mplayer and/or gstreamer diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_22.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_22.RULE index 51964b149be..d0ba0a66fb5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_22.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_22.RULE @@ -1,13 +1,19 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: Variants of lgpl-2.1-plus +--- + * FFmpeg is free software; you can redistribute it and/or - * modify it under the terms of the {{GNU Lesser General}} Public + * 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. + * version 2.1 of the License, or (at your option) any later version. * * FFmpeg 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. + * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with FFmpeg; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * 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/lgpl-2.1-plus_22.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_22.yml deleted file mode 100644 index dfc8415332b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: Variants of lgpl-2.1-plus diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_220.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_220.RULE index 65a5da4c390..2f83061509c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_220.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_220.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: Seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 +--- + %s 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_220.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_220.yml deleted file mode 100644 index 322fb8163fb..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_220.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: Seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_221.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_221.RULE index 4458df2772b..320cec4e4e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_221.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_221.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 99 +notes: configure option for old ffmpeg and libav +--- + --disable-gpl --disable-version3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_221.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_221.yml deleted file mode 100644 index 86b1e5c486d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_221.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 99 -notes: configure option for old ffmpeg and libav diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_222.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_222.RULE index 3c486b85bc2..9c19243ddf8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_222.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_222.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 99 +notes: configure option for old ffmpeg and libav +--- + --disable-gpl --disable-nonfree --disable-version3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_222.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_222.yml deleted file mode 100644 index 86b1e5c486d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_222.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 99 -notes: configure option for old ffmpeg and libav diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_223.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_223.RULE index b5a3484d3c9..1b5646953d9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_223.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_223.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This work 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_223.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_223.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_224.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_224.RULE index 3dff0b6b1af..fc6f690226b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_224.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_224.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + This work 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_224.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_224.yml deleted file mode 100644 index 8a7b5f42549..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_224.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_225.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_225.RULE index 56c97add955..35c8a07c595 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_225.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_225.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + License GNU Lesser General Public License (LGPL), version 2.1 or later. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_225.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_225.yml deleted file mode 100644 index 9b1fa0ab2d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_225.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_226.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_226.RULE index 173e796ca0e..de01b9e1447 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_226.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_226.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License (LGPL), version 2.1 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_226.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_226.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_227.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_227.RULE index 3bb512ffeeb..6515666d2b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_227.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_227.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + GNU Lesser General Public License (LGPL), version 2.1 or later. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_227.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_227.yml deleted file mode 100644 index 9b1fa0ab2d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_227.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_228.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_228.RULE index 119d4e355c7..77f108e35a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_228.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_228.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under this LGPLv2.1 or later license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_228.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_228.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_229.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_229.RULE index 48108e108ea..62db8d0c539 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_229.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_229.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + under this LGPLv2.1 or later license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_229.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_229.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_23.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_23.RULE index 7bf2609bcc6..77425c2b9b3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_23.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/ +--- + GNU LGPL information -------------------- @@ -12,4 +19,4 @@ Lesser General Public License for more details. You can receive a copy of the GNU Lesser General Public License from - http://www.gnu.org/ + http://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_23.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_23.yml deleted file mode 100644 index 9cade665c2f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_230.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_230.RULE index 6cdf072fb23..c8f72229242 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_230.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_230.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv2.1 or later license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_230.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_230.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_231.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_231.RULE index cd9627f22d6..992ca75e026 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_231.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_231.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: LGPL-2.1+ On Debian systems, the complete text of the LGPL-2.1 can be found in diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_231.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_231.yml deleted file mode 100644 index ba97799ece7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_231.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_232.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_232.RULE index 214e85f3ab4..0aaff898f71 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_232.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_232.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the complete text of the LGPL-2.1 can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_232.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_232.yml deleted file mode 100644 index 973bb895802..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_233.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_233.RULE index 76e315f1471..fbc25cfa0f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_233.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_233.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_233.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_233.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_234.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_234.RULE index 31adcb210aa..d5f94caeb7f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_234.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_234.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: http://accord-framework.net/license.txt +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_234.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_234.yml deleted file mode 100644 index 4c3442c7cc6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_234.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: http://accord-framework.net/license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_235.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_235.RULE index cdc2b89a334..7ddf5e1414b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_235.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_235.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/jirkamarsik/quex/tree/9e9846c87b3383fd24f3b240ba02089b3aaa2ede +--- + The LGPL: Quex is free software; you can redistribute it and/or modify it under the diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_235.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_235.yml deleted file mode 100644 index 6b4d70321a9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_235.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/jirkamarsik/quex/tree/9e9846c87b3383fd24f3b240ba02089b3aaa2ede diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_236.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_236.RULE index 254f0df814a..ef9fa03fc3c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_236.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_236.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: See in https://github.com/mplucinski/quex/blob/7865d0a37a57738c7a33781b23fa36d119e16bd6/README +--- + LICENSE: Quex is free software; you can redistribute it and/or modify it under the diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_236.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_236.yml deleted file mode 100644 index 514b5a1248b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_236.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: See in https://github.com/mplucinski/quex/blob/7865d0a37a57738c7a33781b23fa36d119e16bd6/README diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_237.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_237.RULE index 805813e221b..ecf578c92f1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_237.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_237.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/ +--- + Licensed under GNU LGPL 2.1 or later. See . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_237.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_237.yml deleted file mode 100644 index 993bb26d960..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_237.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_238.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_238.RULE index 054e55f3ccf..f65192bfe34 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_238.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_238.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under GNU LGPL 2.1 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_238.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_238.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_239.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_239.RULE index fe0813e5bae..e2ca6dd89f0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_239.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_239.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_239.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_239.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_24.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_24.RULE index d3d75b7a419..961c7a11714 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_24.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_24.RULE @@ -1,5 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: LGPL 2.1 or later notice, alternate formatting, debian style +--- + License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_24.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_24.yml deleted file mode 100644 index 4fd3b1abbe9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: LGPL 2.1 or later notice, alternate formatting, debian style diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_240.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_240.RULE index 58a1d2b3ef0..192b9051175 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_240.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_240.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + "GNU Lesser General Public Licence, version 2.1 or later"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_240.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_240.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_241.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_241.RULE index 6ec79b7d9c2..66c87cbe3e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_241.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_241.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + License: LGPL-2.1+ On Debian GNU/Linux systems, the complete text of the LGPL 2.1 license can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_241.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_241.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_242.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_242.RULE index d3ece90a510..97160e4196b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_242.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_242.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_242.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_242.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_243.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_243.RULE index 318fc71cef2..a63e98bf7f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_243.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_243.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_243.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_243.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_243.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_244.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_244.RULE index 07b501951b3..e4ef83120e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_244.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_244.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_244.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_244.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_244.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_245.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_245.RULE index 512e65bcba4..8e78b11113e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_245.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_245.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_245.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_245.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_245.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_246.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_246.RULE index fd80acc7df7..dab4b0156e0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_246.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_246.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_246.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_246.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_246.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_247.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_247.RULE index 279f04a7f67..07430c8f2ff 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_247.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_247.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_247.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_247.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_247.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_248.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_248.RULE index 61b3b7a2944..9fba6c2b6e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_248.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_248.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_248.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_248.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_248.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_249.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_249.RULE index fc5cc3ca7ce..fbe6f58d7e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_249.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_249.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_249.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_249.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_249.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_25.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_25.RULE index 47d5c4b5182..cd75e58aa17 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_25.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_25.RULE @@ -1 +1,9 @@ -This software is licensed under the href="http://creativecommons.org/licenses/LGPL/2.1/">CC-GNU LGPL version 2.1 or later. +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: http://creativecommons.org/licenses/LGPL/2.1/ +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + +This software is licensed under the href="http://creativecommons.org/licenses/LGPL/2.1/">CC-GNU LGPL version 2.1 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_25.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_25.yml deleted file mode 100644 index f2a85a54e79..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: http://creativecommons.org/licenses/LGPL/2.1/ -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_250.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_250.RULE index 9008adb129f..0b24d3e6245 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_250.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_250.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_250.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_250.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_250.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_251.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_251.RULE index 938b80d44d3..47cb4e89a2a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_251.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_251.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_251.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_251.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_251.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_252.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_252.RULE index 13d8adfa52c..0138054db2f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_252.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_252.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_252.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_252.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_252.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_253.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_253.RULE index 6e543a8e08a..e23094dddae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_253.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_253.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + under the terms GNU LGPL v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_253.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_253.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_253.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_254.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_254.RULE index 94aadec3689..dd0609dd78b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_254.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_254.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU LGPL v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_254.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_254.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_254.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_255.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_255.RULE index d889de141e0..f5675048f29 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_255.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_255.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_255.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_255.yml deleted file mode 100644 index 9b1fa0ab2d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_255.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_256.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_256.RULE index 832119051de..490fd2fcfff 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_256.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_256.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +notes: conflicting references to GPL in the LGPL notice +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_256.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_256.yml deleted file mode 100644 index 665cc6d7c89..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_256.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -notes: conflicting references to GPL in the LGPL notice diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_257.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_257.RULE index d26ce949e8c..e727b0f3eed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_257.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_257.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GnuTLS 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_257.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_257.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_258.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_258.RULE index 2bef76a33ba..e72f2edc07f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_258.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_258.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C 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 either version 2 of the diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_258.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_258.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_259.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_259.RULE index 34fbf73d087..39c7ed25ac7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_259.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_259.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_259.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_259.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_259.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_26.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_26.RULE index 2f1b6c06d9f..11c1f5a99d3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_26.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_26.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +minimum_coverage: 100 +notes: http://creativecommons.org/licenses/LGPL/2.1/ +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + Creative Commons License http://creativecommons.org/licenses/LGPL/2.1/ CC-GNU LGPL http://creativecommons.org/images/public/cc-LGPL-a.png @@ -5,4 +14,4 @@ CC-GNU LGPL http://creativecommons.org/images/public/cc-LGPL-a.png This software is licensed under the "http://creativecommons.org/licenses/LGPL/2.1/" CC-GNU LGPL version 2.1 or later. -Creative Commons License +Creative Commons License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_26.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_26.yml deleted file mode 100644 index f2da22430c4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -minimum_coverage: 100 -notes: http://creativecommons.org/licenses/LGPL/2.1/ -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_260.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_260.RULE index 1f04733659c..ee045ee5eca 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_260.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_260.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_260.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_260.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_260.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_261.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_261.RULE index bc55ba1aeb0..f150e145798 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_261.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_261.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 version 2.1 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_261.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_261.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_261.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_262.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_262.RULE index 9cabb6c4c45..c77b063c006 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_262.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_262.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_262.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_262.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_262.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_263.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_263.RULE index df54cd2da9e..ec9d9345ecf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_263.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_263.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_263.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_263.yml deleted file mode 100644 index 9b1fa0ab2d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_263.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_264.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_264.RULE index c29711398f7..99de121de50 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_264.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_264.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: typo in andor +--- + is free software you can redistribute it andor modify it under the terms of the GNU Lesser general Public License as published by the Free Software Foundation either version 2.1 of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_264.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_264.yml deleted file mode 100644 index 56dabb68ba8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_264.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: typo in andor diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_265.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_265.RULE index d0dea022553..9dd5fc4b894 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_265.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_265.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This program 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; either version 2.1, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_265.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_265.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_266.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_266.RULE index 157d1b2d002..7c04ec9d7da 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_266.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_266.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + License: LGPL-2.1+ On Debian systems, the complete text of the LGPL-2.1 can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_266.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_266.yml deleted file mode 100644 index 29faa7eb3d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_266.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_267.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_267.RULE index 43c4d26af6e..c961af604e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_267.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_267.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + The upstream license clarifies pretty well that the sources of pulseaudio are LGPL (please see LGPL license grant below), but that some parts will be effectively GPL since they rely on GPL libraries, quoting the upstream diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_267.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_267.yml deleted file mode 100644 index 29faa7eb3d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_267.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_268.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_268.RULE index 977d3a76645..9fcb40714ce 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_268.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_268.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + * This file may be redistributed under the terms of the * GNU Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_268.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_268.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_269.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_269.RULE index fbadbe26f19..bb16b5b407d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_269.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_269.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_269.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_269.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_27.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_27.RULE index 48261643c25..433b44ef8dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_27.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_27.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_27.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_27.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_27.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_270.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_270.RULE index 7ac537357e5..fb52d3a6764 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_270.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_270.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/ +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_270.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_270.yml deleted file mode 100644 index 06885d0ae35..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_270.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_271.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_271.RULE index 8a07537f5f4..a2aedbc1ed9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_271.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_271.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_271.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_271.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_272.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_272.RULE index 9ec8e549f8b..04905d53206 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_272.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_272.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_272.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_272.yml deleted file mode 100644 index 9b1fa0ab2d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_272.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_273.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_273.RULE index 6acaaed7141..ca86fa4bec4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_273.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_273.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This file may be used subject to the terms and conditions of the GNU Library General Public License Version 2.1, or any later version at your option, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_273.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_273.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_274.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_274.RULE index 45568caa9a0..f42605538f3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_274.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_274.RULE @@ -1 +1,7 @@ -{{LGPL-2.1-or-later - GNU Lesser General Public License 2.1 or any later version}} +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + +{{LGPL-2.1-or-later - GNU Lesser General Public License 2.1 or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_274.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_274.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_275.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_275.RULE index 00146625162..0ee94fc4474 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_275.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_275.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License 2.1 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_275.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_275.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_276.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_276.RULE index def26eaf646..15304c4aeb8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_276.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_276.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: mix up of LGPL and GPL +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_276.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_276.yml deleted file mode 100644 index 8e360c455b2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_276.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: mix up of LGPL and GPL -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_277.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_277.RULE index dbb067eecf5..6501e4ab200 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_277.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_277.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: mix up of LGPL and GPL +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 Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_277.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_277.yml deleted file mode 100644 index f8b8bdf77ce..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_277.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: mix up of LGPL and GPL -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_278.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_278.RULE index a82d8149407..66e8e519ccb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_278.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_278.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Library General Public License, version 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_278.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_278.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_279.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_279.RULE index 9dcfa8d495f..3517f3d6b01 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_279.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_279.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL version 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_279.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_279.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_279.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_28.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_28.RULE index de9d687d491..a22e438669a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_28.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_28.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + This software is provided under // the provisions of the Lesser GNU Public License (LGPL). See the // file ../ReadMe.txt for further information. @@ -5,4 +10,4 @@ This software is provided under // The University of Maryland (U.M.) and the authors make no // representations about the suitability or fitness of this software for // any purpose. It is provided "as is" without express or implied -// warranty. +// warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_28.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_28.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_28.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_280.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_280.RULE index 70f4400fb35..e824ab67ddf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_280.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_280.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + error 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_280.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_280.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_280.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_281.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_281.RULE index ca097e2a6c0..8dff8e45b93 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_281.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_281.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + error 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_281.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_281.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_281.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_282.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_282.RULE index 8fe3ae164b7..9c74582e0b3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_282.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_282.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + 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. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_282.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_282.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_283.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_283.RULE index 99741805d3e..1f39e8b5702 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_283.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_283.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + This file is distributed under the same license as the dialog package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_283.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_283.yml deleted file mode 100644 index 73120231ad8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_283.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_284.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_284.RULE index 8a0297a9a0d..44ad79fc9b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_284.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_284.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_284.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_284.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_284.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_285.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_285.RULE index 641ee87a8b0..c6c28123d13 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_285.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_285.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: Seen in pacemaker HTML doc +--- + less restrictive GNU Lesser General Public License (LGPLv2.1+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_285.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_285.yml deleted file mode 100644 index badc2118585..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_285.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: Seen in pacemaker HTML doc diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_286.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_286.RULE index 4824347508d..0c38b8f8f25 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_286.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_286.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: Seen in pacemaker HTML doc +--- + GNU Lesser General Public License (LGPLv2.1+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_286.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_286.yml deleted file mode 100644 index 6a1e521de15..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_286.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: Seen in pacemaker HTML doc diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_287.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_287.RULE index 7f7c9d9cb2e..75f0d17d826 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_287.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_287.RULE @@ -1 +1,8 @@ -licensed under the terms of the {{GNU Lesser General Public License}} +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: no version but lesser implies 2.1 +--- + +licensed under the terms of the {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_287.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_287.yml deleted file mode 100644 index 9897d4c23a2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_287.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: no version but lesser implies 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_288.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_288.RULE index 7cc9723bd49..7913433ebf6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_288.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_288.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms and conditions of the GNU Lesser General Public License, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_288.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_288.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_289.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_289.RULE index 72551d1bc17..9aa2525943a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_289.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_289.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Lesser General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_289.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_289.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_289.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_29.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_29.RULE index e2b389f5c71..24226b05a9c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_29.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_29.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your @@ -20,4 +27,4 @@ Disclaimer ---------- The University of Maryland and the authors make no representations about the suitability or fitness of this software for any purpose. It is -provided "as is" without express or implied warranty. +provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_29.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_29.yml deleted file mode 100644 index d50c93d7ec6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_290.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_290.RULE index 3cf4fb79e53..8bb183b4a06 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_290.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_290.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Lesser Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_290.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_290.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_291.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_291.RULE index 9e31d5624a2..4356e7d8dd9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_291.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_291.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU LGPL v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_291.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_291.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_292.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_292.RULE index 84b064d4158..74564423ef4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_292.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_292.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_292.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_292.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_293.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_293.RULE index 9ea02e91703..3d7a4faf556 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_293.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_293.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_293.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_293.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_294.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_294.RULE index a3359de442d..5ce5f5ef15d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_294.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_294.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: Seen in mariadb +--- + * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_294.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_294.yml deleted file mode 100644 index 89483720179..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_294.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: Seen in mariadb diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_295.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_295.RULE index aa502ae7880..ee6e3b724ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_295.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_295.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: Seen in mariadb +--- + * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_295.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_295.yml deleted file mode 100644 index 89483720179..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_295.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: Seen in mariadb diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_296.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_296.RULE index 8aab9e1f997..3b27fc8d349 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_296.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_296.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 97 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is part of. is free software; you can redistribute it and/or @@ -11,4 +19,4 @@ This file is part of. Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with ; if not, see . + License along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_296.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_296.yml deleted file mode 100644 index 968201db642..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_296.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 97 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_297.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_297.RULE index 5cc52529e3f..53af38890f1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_297.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_297.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + The overall license for is the {{GNU Lesser General Public License, version 2.1 (or, at your option, any later version)}}; see -the file COPYING.LIB for the full terms of this license. +the file COPYING.LIB for the full terms of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_297.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_297.yml deleted file mode 100644 index 41aa1afa917..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_297.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE index 9beef4f85b1..526a26e64aa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -14,5 +21,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the Lesser GNU General -Public License can be found in `/usr/share/common-licenses/LGPL'. - +Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_298.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_298.yml deleted file mode 100644 index 08550362d99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_298.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_299.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_299.RULE index 243a03422ad..7a5a0e89547 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_299.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_299.RULE @@ -1 +1,7 @@ - License: LGPLv2.1+ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + + License: LGPLv2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_299.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_299.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_3.RULE index 38801a0b0ab..79555d151ae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: LGPL 2.1 or later notice, alternate formatting, debian style +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the @@ -10,4 +16,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_3.yml deleted file mode 100644 index 4fd3b1abbe9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: LGPL 2.1 or later notice, alternate formatting, debian style diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_30.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_30.RULE index aeb1005a31a..09c9f388b35 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_30.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_30.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + Library (all versions) is provided under the terms and conditions of the GNU Lesser General Public Library, which is stated below. It can also be found at: @@ -446,4 +459,4 @@ 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 +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-plus_30.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_30.yml deleted file mode 100644 index cda776b7c40..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_30.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_300.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_300.RULE index 8291ebeb50a..1447f0b077d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_300.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_300.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_300.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_300.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_301.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_301.RULE index d1f998ad7e1..97e80cbd46d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_301.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_301.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: found in libdnf +--- + Licensed under the GNU Lesser General Public License Version 2.1 This library is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_301.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_301.yml deleted file mode 100644 index 92ab259a425..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_301.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: found in libdnf diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_302.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_302.RULE index 9a56631865b..20501874475 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_302.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_302.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL version 2.1 (or at you're discretion any later version of this license). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_302.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_302.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_303.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_303.RULE index f49e118ecd7..0c4dcbf6bf7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_303.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_303.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_303.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_303.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_303.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_304.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_304.RULE index ade842fdcaf..07e016b464a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_304.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_304.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_304.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_304.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_304.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_305.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_305.RULE index 32bea3f8ac2..dd94ed2aa65 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_305.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_305.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU Lesser General Public License, version 2.1 (or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_305.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_305.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_306.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_306.RULE index d10630540f3..e919603941c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_306.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_306.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_306.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_306.yml deleted file mode 100644 index 507f315d317..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_306.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_307.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_307.RULE index 9a6437b6df7..51bb02891fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_307.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_307.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +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 Lesser General Public License as published by the Free Software Foundation; either version 2.1 of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_307.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_307.yml deleted file mode 100644 index 5d0dd6233a8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_307.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_308.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_308.RULE index 1596bb36712..8495a40077b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_308.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_308.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + License: LGPL-2.1+ The library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_308.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_308.yml deleted file mode 100644 index 08550362d99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_308.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_309.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_309.RULE index 3bb30ebce2b..25b6125e9b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_309.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_309.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + The library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_309.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_309.yml deleted file mode 100644 index 08550362d99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_309.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_31.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_31.RULE index 6c2722b0902..3851bd02257 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_31.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_31.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + 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) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_31.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_31.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_31.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_310.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_310.RULE index f33dc3b74b9..c33a25ae2bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_310.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_310.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + The library itself is licensed as LGPLv2.1+, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_310.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_310.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_311.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_311.RULE index b87ec982c91..eacabf3e2b2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_311.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_311.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + licensed as LGPLv2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_311.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_311.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE index 0c7b6ab9336..f66b348b214 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL + - /usr/share/common-licenses/LGPL-2.1 +notes: See in LIBTASN1 +--- + * The library is free software; you can redistribute it * and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_312.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_312.yml deleted file mode 100644 index 2050973038d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_312.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL - - /usr/share/common-licenses/LGPL-2.1 -notes: See in LIBTASN1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_313.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_313.RULE index 98abe0bb0ad..84e2ab2251e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_313.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_313.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: See in LIBTASN1 +--- + * The library is free software; you can redistribute it * and/or modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_313.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_313.yml deleted file mode 100644 index 3ebd7990fd2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: See in LIBTASN1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_314.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_314.RULE index 62ab8a39666..53df03fdbbc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_314.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_314.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +notes: See in LIBTASN1 +--- + The library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_314.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_314.yml deleted file mode 100644 index 7414f2bf2e7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_314.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -notes: See in LIBTASN1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_315.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_315.RULE index 8bc30b65e57..af63ff93769 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_315.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_315.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/LGPL + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL'; the text of the earliest applying version diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_315.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_315.yml deleted file mode 100644 index f96ea38e006..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_315.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 99 -referenced_filenames: - - /usr/share/common-licenses/LGPL - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_316.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_316.RULE index c0d260b5b22..cc98e3bb60d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_316.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_316.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + The C library is licensed under the GNU Lesser General Public License version 2.1 or later. See the file COPYING.LIB. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_316.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_316.yml deleted file mode 100644 index 41aa1afa917..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_316.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_317.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_317.RULE index eb7e512ad1c..07eae91544b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_317.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_317.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + licensed under the GNU Lesser General Public License version 2.1 or later. See the file COPYING.LIB. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_317.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_317.yml deleted file mode 100644 index 41aa1afa917..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_317.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_318.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_318.RULE index d150b20ce0d..9d1e797a733 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_318.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_318.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + The library is released under the GNU Lesser General Public License (LGPL), version 2.1 or (at your option) any later version, this open-source license allows anyone to use the library, on any vendors processor/FPGA/SoC, which may be controlling any vendors peripheral device (ADC, DAC, etc) either locally or remotely. This includes closed or open-source, commercial or non-commercial applications (subject to the LGPL license freedoms, obligations and restrictions). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_318.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_318.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_318.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_319.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_319.RULE index 38c5cfb05ae..d234aa3550c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_319.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_319.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + The library is released under the GNU Lesser General Public License (LGPL), version 2.1 or (at your option) any later version, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_319.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_319.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_319.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_32.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_32.RULE index fd2a12c9d70..8c69e5253cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_32.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_32.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + This is licensed under the GNU LGPL, version 2.1 or later. -For details, see: http://creativecommons.org/licenses/LGPL/2.1/ +For details, see: http://creativecommons.org/licenses/LGPL/2.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_32.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_32.yml deleted file mode 100644 index 7c0daf6f67e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_32.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_320.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_320.RULE index f97122562ec..60c6a5859a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_320.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_320.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Libgcrypt 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_320.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_320.yml deleted file mode 100644 index acd0aa6c2db..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_320.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_321.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_321.RULE index cf458ec6f39..8b6047028c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_321.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_321.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Libgcrypt 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_321.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_321.yml deleted file mode 100644 index af8b9445a5c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_321.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_322.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_322.RULE index 197b53b7923..8a1ed8aebb4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_322.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_322.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Libgcrypt 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_322.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_322.yml deleted file mode 100644 index acd0aa6c2db..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_322.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_323.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_323.RULE index bca243e4e27..acd0e8d5ce1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_323.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_323.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL'; \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_323.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_323.yml deleted file mode 100644 index 041a6795351..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_323.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_324.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_324.RULE index eeaca81456a..91c2174d876 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_324.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_324.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +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 Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_324.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_324.yml deleted file mode 100644 index 5d0dd6233a8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_324.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_325.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_325.RULE index 4a5c670efcd..01eaa15fd98 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_325.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_325.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the full text of the GNU Lesser General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_325.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_325.yml deleted file mode 100644 index c6ea91c2743..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_325.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_326.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_326.RULE index 670926c9cb6..a4e385452c2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_326.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_326.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_326.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_326.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_326.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_327.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_327.RULE index 42e9df780d6..e07f4ecf13c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_327.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_327.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_327.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_327.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_327.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_328.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_328.RULE index b256c5926cb..24a73d85607 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_328.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_328.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_328.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_328.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_328.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_329.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_329.RULE index dc4231ae335..7e37d80dece 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_329.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_329.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_329.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_329.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_329.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_33.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_33.RULE index dc2ed41814a..2d82306d729 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_33.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_33.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-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 Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or @@ -11,4 +18,4 @@ You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . - See LICENSE.TXT file for more information. + See LICENSE.TXT file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_33.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_33.yml deleted file mode 100644 index 5aeea4d698f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_33.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_330.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_330.RULE index 756e4b74bab..4b48ea5113f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_330.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_330.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_330.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_330.yml deleted file mode 100644 index 08550362d99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_330.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_331.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_331.RULE index 4bb8c021f12..238765caa17 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_331.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_331.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_331.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_331.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_331.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_332.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_332.RULE index 3b287af3cbd..19cc4aeac76 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_332.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_332.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_332.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_332.yml deleted file mode 100644 index 973bb895802..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_332.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_333.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_333.RULE index 5f6e74ee029..ab3645fb488 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_333.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_333.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This module 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_333.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_333.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_333.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_334.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_334.RULE index 437ce2e1350..77e4b19af99 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_334.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_334.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -14,4 +23,4 @@ 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_334.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_334.yml deleted file mode 100644 index 25a9eaa3e45..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_334.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_335.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_335.RULE index 93b07015b67..4a5509f5d92 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_335.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_335.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + distributed 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_335.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_335.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_335.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_336.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_336.RULE index d51c44d7322..6f5baa172af 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_336.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_336.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems, the complete text of the LGPL-2.1 can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_336.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_336.yml deleted file mode 100644 index 973bb895802..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_337.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_337.RULE index f3eeec5ec71..91a4acb01d9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_337.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_337.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +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 Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_337.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_337.yml deleted file mode 100644 index cd4ca49441d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_337.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_338.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_338.RULE index ac9738b0f6d..a68b64f3174 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_338.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_338.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_338.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_338.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_338.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_339.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_339.RULE index a1488cf9b8a..b4ca9625c2d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_339.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_339.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: This library is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_339.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_339.yml deleted file mode 100644 index c2591f9f83f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_339.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_34.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_34.RULE index 71da700ff13..307fe556933 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_34.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_34.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or @@ -6,4 +11,4 @@ by the Free Software Foundation; either version 2.1 of the License, or 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. +the GNU Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_34.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_34.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_340.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_340.RULE index 23f64b4568a..746ebd1e9a8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_340.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_340.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + License: LGPL-2.1+ On Debian GNU/Linux systems, the complete text of the LGPL-2.1 can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_340.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_340.yml deleted file mode 100644 index 29faa7eb3d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_340.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_341.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_341.RULE index b73c8fc9f3e..253d779ea5e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_341.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_341.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +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 Lesser General Public License as published by the Free Software Foundation; either version 2.1 of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_341.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_341.yml deleted file mode 100644 index cd4ca49441d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_341.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_342.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_342.RULE index 5f86d92ebae..e8143603209 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_342.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_342.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: LGPL-2.1+ On Debian GNU/Linux systems, the complete text of the LGPL-2.1 can be found in diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_342.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_342.yml deleted file mode 100644 index ba97799ece7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_342.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_343.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_343.RULE index 7dc47355d2d..f01eb6a0f29 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_343.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_343.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or @@ -13,4 +22,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_343.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_343.yml deleted file mode 100644 index 4f6690a00dd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_343.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_344.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_344.RULE index 3b16ba72c4f..59cd026c010 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_344.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_344.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_344.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_344.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_344.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_345.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_345.RULE index 9f01e3a4206..b981032acf1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_345.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_345.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + This file may be redistributed under the terms of the GNU Lesser General Public License. . diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_345.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_345.yml deleted file mode 100644 index 08550362d99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_345.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_346.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_346.RULE index 849ea8c50a5..b33f08255e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_346.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_346.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GnuTLS 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_346.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_346.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_346.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_347.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_347.RULE index 7204f844c85..edf551a2cd3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_347.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_347.RULE @@ -1,4 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- -is available under the GNU Lesser General Public license (LGPL). -See https://www.gnu.org/copyleft/lesser.html for the license. +is available under the GNU Lesser General Public license (LGPL). +See https://www.gnu.org/copyleft/lesser.html for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_347.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_347.yml deleted file mode 100644 index f223d17b6cc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_347.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_348.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_348.RULE index 14fd77b835b..06c7bfca1f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_348.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_348.RULE @@ -1 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + License:: GNU Lesser General Public License (COPYING, https://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_348.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_348.yml deleted file mode 100644 index 7f6307db99e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_348.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_349.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_349.RULE index 2b1c7b1ebbc..f805e65a702 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_349.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_349.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public License as published by the Free Software Foundation; either @@ -9,4 +17,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License - along with this manual. If not, see . + along with this manual. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_349.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_349.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_349.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_35.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_35.RULE index bdbad608294..b163069510b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_35.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_35.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,4 +15,4 @@ 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, write to the Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +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-2.1-plus_35.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_35.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_35.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_350.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_350.RULE index 7bb0f44565e..6b1d62ccd37 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_350.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_350.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + GNU LGPL information -------------------- @@ -12,4 +20,4 @@ Lesser General Public License for more details. You can receive a copy of the GNU Lesser General Public License from - https://www.gnu.org/ + https://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_350.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_350.yml deleted file mode 100644 index 494a7373b25..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_350.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_351.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_351.RULE index 07b2458c702..c0cb6ff87ac 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_351.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_351.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU C 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 either version 2 of the diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_351.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_351.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_351.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_352.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_352.RULE index 24918bba97c..6ce4300c857 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_352.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_352.RULE @@ -1 +1,9 @@ -licence GNU Lesser General Public Licence see LICENCE file or https://www.gnu.org/licenses/lgpl.html +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + +licence GNU Lesser General Public Licence see LICENCE file or https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_352.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_352.yml deleted file mode 100644 index ab6f411c1f6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_352.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_353.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_353.RULE index e6a217dc562..97bffd5f5e4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_353.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_353.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_353.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_353.yml deleted file mode 100644 index 494a7373b25..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_353.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_354.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_354.RULE index 034fd2bb36d..7ca920e6ebd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_354.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_354.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 97 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is part of. is free software; you can redistribute it and/or @@ -11,4 +20,4 @@ This file is part of. Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with ; if not, see . + License along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_354.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_354.yml deleted file mode 100644 index ba75d1f73ae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_354.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 97 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_355.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_355.RULE index 00c5871c2a4..5474bab14c8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_355.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_355.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 version 2.1 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_355.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_355.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_355.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_356.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_356.RULE index d6507eab425..0f152e923b5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_356.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_356.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + is available under the GNU Lesser General Public Licence (LGPL). -See https://www.gnu.org/copyleft/lesser.html for the license. +See https://www.gnu.org/copyleft/lesser.html for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_356.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_356.yml deleted file mode 100644 index f223d17b6cc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_356.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_357.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_357.RULE index cb80851babc..2e29cef3986 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_357.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_357.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.gnu.org/ +--- + is distributed under the GNU LGPL license Notes: @@ -19,4 +28,4 @@ is distributed under the GNU LGPL license Lesser General Public License for more details. You can receive a copy of the GNU Lesser General Public License from - https://www.gnu.org/ + https://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_357.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_357.yml deleted file mode 100644 index f9da0d5f0a1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_357.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_358.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_358.RULE index aaed404b70b..f4688a1df65 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_358.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_358.RULE @@ -1 +1,9 @@ -licence https://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + +licence https://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_358.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_358.yml deleted file mode 100644 index feabfc5f1f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_358.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_359.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_359.RULE index 3fde6c12f2e..fa8a8a4ede2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_359.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_359.RULE @@ -1 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: If no version is specified, we return a generic LGPL. Here with lesser hence the 2.1-plus + version +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + https://www.gnu.org/copyleft/lesser.html LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_359.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_359.yml deleted file mode 100644 index ad979fb4be3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_359.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: If no version is specified, we return a generic LGPL. Here with lesser hence the 2.1-plus - version -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_36.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_36.RULE index 6bf14f77533..edf06c9026b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_36.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_36.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published @@ -10,4 +17,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this library; if not, see . +along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_36.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_36.yml deleted file mode 100644 index 5aeea4d698f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_360.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_360.RULE index d3778de1e34..a2cf99dda06 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_360.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_360.RULE @@ -1,6 +1,14 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.txt +--- + GNU LESSER GENERAL PUBLIC LICENSE https://www.gnu.org/licenses/lgpl.txt - +
\ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_360.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_360.yml deleted file mode 100644 index 2149974efba..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_360.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_361.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_361.RULE index 8aee9129cff..0e03f9e981a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_361.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_361.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public License as published by @@ -10,4 +18,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this program; if not, see . */ +along with this program; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_361.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_361.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_361.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_362.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_362.RULE index 8d294a8f6e9..0c86a5a0743 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_362.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_362.RULE @@ -1,7 +1,16 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: lesser mean 2.1 or later +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE OR USE. 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 . If not, see https://www.gnu.org/licenses/lgpl.html +along with . If not, see https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_362.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_362.yml deleted file mode 100644 index 01c62cbe355..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_362.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: lesser mean 2.1 or later -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_363.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_363.RULE index 0b9fa2607a1..070c0a418f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_363.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_363.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 Library General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_363.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_363.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_363.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_364.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_364.RULE index 5441f8f0358..8a661c4523e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_364.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_364.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + @license https://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License @note This program is distributed in the hope that it will be useful - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_364.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_364.yml deleted file mode 100644 index f223d17b6cc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_364.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_365.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_365.RULE index f9d18a50a00..907c9631ad9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_365.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_365.RULE @@ -1 +1,11 @@ -license https://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENCE +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + +license https://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_365.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_365.yml deleted file mode 100644 index 4c6a5fa8029..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_365.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENCE -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_366.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_366.RULE index 8969e6c2192..9863f4b57db 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_366.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_366.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or @@ -11,4 +19,4 @@ You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . - See LICENSE.TXT file for more information. + See LICENSE.TXT file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_366.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_366.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_366.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_367.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_367.RULE index 895688d7a84..5929b0b4c47 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_367.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_367.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your @@ -20,4 +28,4 @@ Disclaimer ---------- The University of Maryland and the authors make no representations about the suitability or fitness of this software for any purpose. It is -provided "as is" without express or implied warranty. +provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_367.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_367.yml deleted file mode 100644 index f223d17b6cc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_367.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_368.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_368.RULE index 44d03346510..cc03b1650be 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_368.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_368.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: with lesser hence the 2.1-plus version +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + license https://www.gnu.org/copyleft/lesser.html LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_368.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_368.yml deleted file mode 100644 index 694ee0d9dec..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_368.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: with lesser hence the 2.1-plus version -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_369.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_369.RULE index 2d5db1577a3..abcfbfd6969 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_369.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_369.RULE @@ -1 +1,9 @@ -license GNU Lesser General Public license see license file or https://www.gnu.org/licenses/lgpl.html +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + +license GNU Lesser General Public license see license file or https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_369.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_369.yml deleted file mode 100644 index ab6f411c1f6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_369.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_37.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_37.RULE index dae8eae0b14..c8af8ed9b2e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_37.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_37.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -11,4 +16,4 @@ 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 St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_37.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_37.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_37.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_370.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_370.RULE index 34ace2a49b9..fae89e6bcba 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_370.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_370.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_370.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_370.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_370.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_371.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_371.RULE index 9fff7831b56..bddc4a450c1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_371.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_371.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Libgcrypt 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_371.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_371.yml deleted file mode 100644 index ec233525a16..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_371.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_372.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_372.RULE index b82afc47e4b..2ef69b2adb8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_372.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_372.RULE @@ -1,3 +1,17 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + Library (all versions) is provided under the terms and conditions of the GNU Lesser General Public Library, which is stated below. It can also be found at: @@ -446,4 +460,4 @@ 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 +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-plus_372.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_372.yml deleted file mode 100644 index 574a06c137a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_372.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_373.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_373.RULE index dc7b5c05d2a..a280c697e0e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_373.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_373.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or @@ -6,4 +14,4 @@ the Free Software Foundation; either version 2.1 of the License, or 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. +See the GNU Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_373.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_373.yml deleted file mode 100644 index f223d17b6cc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_373.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_374.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_374.RULE index 3bd4aef5ae3..b3138c02ee3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_374.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_374.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + GNU Lesser General Public Licence' (LGPL): https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_374.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_374.yml deleted file mode 100644 index feabfc5f1f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_374.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_375.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_375.RULE index b3979659298..33c2918546c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_375.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_375.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -9,4 +17,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You can receive a copy of the GNU Lesser General Public License from -https://www.gnu.org/ +https://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_375.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_375.yml deleted file mode 100644 index 494a7373b25..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_375.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_376.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_376.RULE index 18e05a2f738..c86604864fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_376.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_376.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_376.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_376.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_376.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_377.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_377.RULE index cbe97ff4a15..6cc9b3577e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_377.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_377.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: with lesser hence the 2.1-plus version +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + License : GNU LGPL (https://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_377.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_377.yml deleted file mode 100644 index 694ee0d9dec..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_377.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: with lesser hence the 2.1-plus version -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_378.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_378.RULE index 0c807d374c0..fd8354b8869 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_378.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_378.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + @license https://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_378.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_378.yml deleted file mode 100644 index f223d17b6cc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_378.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_379.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_379.RULE index a93eac6642f..8e0f391b33d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_379.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_379.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + * Licence * ==================================================================== * This program is free software; you can redistribute it and/or modify @@ -13,4 +21,4 @@ * You should have received a copy of the GNU General Public License * or GNU Lesser General Public License along with this program; if not, * write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * or visit https://www.gnu.org + * or visit https://www.gnu.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_379.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_379.yml deleted file mode 100644 index 494a7373b25..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_379.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_38.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_38.RULE index 3fbefdeac24..60a423d70a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_38.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 95 +--- + 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 @@ -10,4 +16,4 @@ 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 + 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-2.1-plus_38.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_38.yml deleted file mode 100644 index 2c87948b850..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_380.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_380.RULE index 12b5a09c769..e160d0e3ad9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_380.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_380.RULE @@ -1,4 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. (See .) + (at your option) any later version. (See .) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_380.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_380.yml deleted file mode 100644 index f223d17b6cc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_380.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_381.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_381.RULE index a0dd1262be4..78e6840a2a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_381.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_381.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + LGPL 2.1 LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_381.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_381.yml deleted file mode 100644 index ad258e482d9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_381.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_382.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_382.RULE index 64aeb098719..4cb1b086f07 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_382.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_382.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published @@ -10,4 +18,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this library; if not, see . +along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_382.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_382.yml deleted file mode 100644 index 91e3859117f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_382.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_383.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_383.RULE index 1f531849ab5..bcaaa1d0dea 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_383.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_383.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + The GNU C Library is distributed 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_383.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_383.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_383.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_384.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_384.RULE index efca9c3dbbc..bc62d39d48f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_384.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_384.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + The GNU C Library is distributed 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_384.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_384.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_384.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_385.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_385.RULE index f97fa47ecdf..5acfc1fae1c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_385.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_385.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_385.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_385.yml deleted file mode 100644 index 08550362d99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_385.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_386.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_386.RULE index e3017da8cd9..e32fdbfcd4a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_386.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_386.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB + - /usr/share/common-licenses/LGPL-2.1 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is distributed under the terms of the GNU Lesser General Public License, version 2.1 or later - see the file COPYING.LIB for details. If you did not receive a copy of the license with this program, please diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_386.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_386.yml deleted file mode 100644 index 1aacb7b5673..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_386.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_387.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_387.RULE index dc87c3d8082..5205a0f5431 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_387.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_387.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_387.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_387.yml deleted file mode 100644 index 1c8629ff0ea..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_387.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_388.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_388.RULE index 8295c2af315..38e5cfbd8d5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_388.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_388.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: This library is free software; you can redistribute it and/or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_388.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_388.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_388.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_389.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_389.RULE index 9aaa60581bf..9ca9aec1e89 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_389.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_389.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: libgcryptis LGPL-license +--- + based on the code in libgcrypt, copyright owned by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_389.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_389.yml deleted file mode 100644 index 5462892bc29..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_389.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: libgcryptis LGPL-license diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_39.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_39.RULE index d63b6ee5018..e4966d60478 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_39.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_39.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 95 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -12,4 +18,4 @@ You should have received a copy of the GNU Lesser General Public License along with this software; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + 02111-1307 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_39.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_39.yml deleted file mode 100644 index 2c87948b850..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_390.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_390.RULE index 25b2af55328..7919e91ca93 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_390.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_390.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_390.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_390.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_390.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_391.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_391.RULE index 02b01a79695..9e4dad7f30c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_391.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_391.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + released under the GNU Lesser General Public License (LGPL) version 2.1 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_391.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_391.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_392.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_392.RULE index 249b569b5f0..9ac7af048ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_392.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_392.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + LGPL (v2.1 or later): \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_392.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_392.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_392.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_393.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_393.RULE index 6f9ae258cd4..f4af1ee834c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_393.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_393.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + The getopt_long code is under GNU LGPLv2.1+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_393.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_393.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_393.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_394.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_394.RULE index 0808b60371a..8e5caf0b1b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_394.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_394.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + code is under GNU LGPLv2.1+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_394.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_394.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_394.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_395.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_395.RULE index e07cbe620cb..3889e6daa67 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_395.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_395.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPLv2.1+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_395.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_395.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_395.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_396.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_396.RULE index e565d76fe25..850fc6314e0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_396.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_396.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_396.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_396.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_396.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_397.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_397.RULE index d18febdc493..ef3a6e9d8d3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_397.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_397.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + The GNU C Library is distributed 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_397.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_397.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_397.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_398.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_398.RULE index e39166bc725..9ddcbec40fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_398.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_398.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This module 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_398.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_398.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_398.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_399.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_399.RULE index 8489754f416..e3d757715d0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_399.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_399.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -14,4 +23,4 @@ 02110-1301 USA On Debian systems, the text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_399.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_399.yml deleted file mode 100644 index b23b74113dc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_399.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_4.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_4.RULE index d7880e37f7d..25979f9be2f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_4.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License Version 2.1 or later (the "LGPL") \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_4.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_4.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_40.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_40.RULE index c06e12c416c..53893731827 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_40.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_40.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 95 +--- + 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 @@ -10,4 +16,4 @@ 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. + 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-2.1-plus_40.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_40.yml deleted file mode 100644 index 2c87948b850..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_400.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_400.RULE index 37d5ecdbd59..9a815765a9c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_400.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_400.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + distributed 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_400.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_400.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_400.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_401.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_401.RULE index c892932708c..e3468bf2da3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_401.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_401.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the text of the LGPL-2.1 can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_401.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_401.yml deleted file mode 100644 index 973bb895802..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_401.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_402.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_402.RULE index d4a546a992a..d31e3674813 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_402.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_402.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_402.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_402.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_402.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_403.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_403.RULE index 67f5caea8ed..1dd7a6b3d70 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_403.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_403.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB + - /usr/share/common-licenses/LGPL-2.1 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is distributed under the terms of the GNU Lesser General Public License, version 2.1 or later - see the file COPYING.LIB for details. If you did not receive a copy of the license with this program, please diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_403.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_403.yml deleted file mode 100644 index 6644c748625..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_403.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_404.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_404.RULE index 1443b571f96..c24b4a6a912 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_404.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_404.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_404.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_404.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_404.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_405.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_405.RULE index 874f25bba94..b89d8a3b42c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_405.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_405.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: LGPL-2.1+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_405.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_405.yml deleted file mode 100644 index e42f1357cb6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_405.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_406.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_406.RULE index 9b8254f0109..834467c1dee 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_406.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_406.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: This library is free software; you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_406.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_406.yml deleted file mode 100644 index c2591f9f83f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_406.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_407.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_407.RULE index 02cdb64b086..9a6a3f36273 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_407.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_407.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + License: LGPL-2.1+ On Debian systems, the text of the LGPL-2.1 can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_407.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_407.yml deleted file mode 100644 index 29faa7eb3d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_407.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_408.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_408.RULE index c036c1dcd95..aa40cbc1dc4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_408.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_408.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + This file may be redistributed under the terms of the GNU Lesser General Public License. . diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_408.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_408.yml deleted file mode 100644 index 1c66b15f2dc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_408.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_409.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_409.RULE index 34585b75d46..3c1849dd93d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_409.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_409.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: LGPL-2.1+ On Debian systems, the text of the LGPL-2.1 can be found in diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_409.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_409.yml deleted file mode 100644 index ba97799ece7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_409.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_41.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_41.RULE index a88990e85e1..4ba864e6e21 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_41.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 95 +--- + 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 @@ -10,4 +16,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_41.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_41.yml deleted file mode 100644 index 2c87948b850..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_410.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_410.RULE index 23b14dca333..244234e69b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_410.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_410.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_410.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_410.yml deleted file mode 100644 index d7623da4a2a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_410.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_411.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_411.RULE index d2246a5404a..bfa45667dd4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_411.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_411.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or @@ -13,4 +22,4 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_411.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_411.yml deleted file mode 100644 index 4f6690a00dd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_411.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_412.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_412.RULE index 70decebb0fa..736386f648c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_412.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_412.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the text of the GNU Lesser General Public License can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_412.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_412.yml deleted file mode 100644 index 973bb895802..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_412.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_413.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_413.RULE index 1e531145fbf..6bfbe02e15e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_413.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_413.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +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 Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_413.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_413.yml deleted file mode 100644 index cd4ca49441d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_413.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_414.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_414.RULE index 9e991d8f36a..af1e48fe01c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_414.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_414.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +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 Lesser General Public License as published by the Free Software Foundation; either version 2.1 of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_414.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_414.yml deleted file mode 100644 index cd4ca49441d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_414.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_415.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_415.RULE index 23758235791..c8197ee8d6a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_415.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_415.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_415.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_415.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_415.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_416.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_416.RULE index 5c3ac38c5f8..15c7bed91b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_416.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_416.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_416.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_416.yml deleted file mode 100644 index 5d0dd6233a8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_416.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_417.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_417.RULE index 6f3f0788be2..a3cf607adff 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_417.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_417.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_417.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_417.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_417.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE index c65e435157d..fc4ffee2beb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_418.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_418.yml deleted file mode 100644 index 793618359a5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_418.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_419.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_419.RULE index de5cd5dfb2e..4e6401a813c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_419.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_419.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2 +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_419.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_419.yml deleted file mode 100644 index 709c576b7bd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_419.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_42.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_42.RULE index 18cb4baace9..517b99a14e8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_42.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 95 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of @@ -10,4 +16,4 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + 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-2.1-plus_42.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_42.yml deleted file mode 100644 index 2c87948b850..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_420.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_420.RULE index a42df342069..79c9c5ce396 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_420.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_420.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_420.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_420.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_420.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_421.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_421.RULE index ba904057d60..15819dd51f6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_421.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_421.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + LGPL-2.1+ GNU Library General Public License v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_421.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_421.yml deleted file mode 100644 index af5faccda8d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_421.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_422.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_422.RULE index 2ddded7e404..1b3a2d45065 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_422.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_422.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Library General Public License v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_422.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_422.yml deleted file mode 100644 index af5faccda8d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_422.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_423.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_423.RULE index fcdd77d6510..96ce64f21ad 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_423.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_423.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Library General Public License v2.1 or later LGPL-2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_423.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_423.yml deleted file mode 100644 index af5faccda8d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_423.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_424.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_424.RULE index 800bc9f78f8..27e3d0f39ce 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_424.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_424.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : LGPL-2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_424.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_424.yml deleted file mode 100644 index af5faccda8d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_424.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_425.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_425.RULE index 9d6b12c930a..011abedb64c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_425.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_425.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Library General Public License v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_425.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_425.yml deleted file mode 100644 index af5faccda8d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_425.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_426.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_426.RULE index 9d5618f4dd5..2481fbc494c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_426.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_426.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GNU Lesser General Public License v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_426.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_426.yml deleted file mode 100644 index b9571eeec99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_426.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_427.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_427.RULE index 7549cad0b38..577497045f7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_427.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_427.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPL-2.1-or-later GNU Lesser General Public License v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_427.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_427.yml deleted file mode 100644 index b9571eeec99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_427.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_428.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_428.RULE index 112163686db..715698ef2b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_428.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_428.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Lesser General Public License v2.1 or later LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_428.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_428.yml deleted file mode 100644 index b9571eeec99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_428.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_429.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_429.RULE index 75fe514d240..c58b595de5f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_429.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_429.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_429.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_429.yml deleted file mode 100644 index 688065d88c6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_429.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_43.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_43.RULE index b281515499d..d855047198f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_43.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_43.RULE @@ -1,2 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + Files in the following subdirectories are covered by the GNU Lesser General Public License (see LGPL.txt for text) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_43.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_43.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_43.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_430.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_430.RULE index fe816cc2d6e..4eb52cd579c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_430.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_430.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Lesser General Public License v2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_430.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_430.yml deleted file mode 100644 index 688065d88c6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_430.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_431.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_431.RULE index 05487369153..3811c266a77 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_431.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_431.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_431.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_431.yml deleted file mode 100644 index 688065d88c6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_431.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_432.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_432.RULE index dd3f9ce3bd9..b4357b08228 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_432.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_432.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/GNU_Lesser_General_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_432.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_432.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_432.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_433.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_433.RULE index a362725d044..787daed0a28 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_433.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_433.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_433.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_433.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_433.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_434.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_434.RULE index 295a66890ae..44f6815452d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_434.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_434.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_434.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_434.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_434.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_435.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_435.RULE index ec692c1d87e..64e509f3508 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_435.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_435.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + Lesser GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_435.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_435.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_435.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_436.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_436.RULE index 870246e05c6..fd73fbe671d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_436.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_436.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + Lesser GPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_436.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_436.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_436.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_437.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_437.RULE index fa07b51a4be..39da7df5a8d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_437.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_437.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser GPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_437.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_437.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_437.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_438.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_438.RULE index 967bc32d990..8ef602557fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_438.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_438.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser GPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_438.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_438.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_438.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_439.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_439.RULE index 6c1f6a0da26..1f3bac4cef8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_439.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_439.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LGPL-2.1-or-later +--- + https://licenses.nuget.org/LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_439.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_439.yml deleted file mode 100644 index ecc930ae2d5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_439.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LGPL-2.1-or-later diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_44.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_44.RULE index 03686461fe9..f27c4143100 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_44.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_44.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + GNU Lesser General Public Licence' (LGPL): http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_44.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_44.yml deleted file mode 100644 index 8837763eff9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_440.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_440.RULE index fa36bdf9fb6..b4c3e8f082c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_440.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_440.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_440.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_440.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_440.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_441.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_441.RULE index c4f0e46e795..d7d6caa033a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_441.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_441.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +--- + licenses: LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_441.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_441.yml deleted file mode 100644 index e16781609d4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_441.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_442.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_442.RULE index e729153ee73..2ed2c0b0e65 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_442.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_442.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.1-or-later +--- + {{LGPL-2.1-or-later}} https://spdx.org/licenses/LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_442.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_442.yml deleted file mode 100644 index eb18b3a4a06..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_442.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.1-or-later diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_443.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_443.RULE index 6cc1aadb3a5..2dea5a57b7e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_443.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_443.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.1-or-later +--- + LICENSE {{LGPL-2.1-or-later}} https://spdx.org/licenses/LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_443.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_443.yml deleted file mode 100644 index eb18b3a4a06..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_443.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.1-or-later diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_444.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_444.RULE index 217d9aeec69..790ff0dfb45 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_444.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_444.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.1 +--- + LICENSE {{LGPL-2.1+}} https://spdx.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_444.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_444.yml deleted file mode 100644 index 3973bb550d2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_444.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_445.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_445.RULE index 71be4948145..ba43b6b1966 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_445.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_445.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.1 +--- + {{LGPL-2.1+}} https://spdx.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_445.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_445.yml deleted file mode 100644 index 3973bb550d2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_445.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_446.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_446.RULE index 30cc7fea254..09703fba857 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_446.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_446.RULE @@ -1,3 +1,8 @@ +--- +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_446.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_446.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_446.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_447.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_447.RULE index b09c048014a..e675ca3acff 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_447.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_447.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 2.1 of the diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_447.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_447.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_447.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_448.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_448.RULE index c254619a307..14be351748f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_448.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_448.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: seen in FFmpeg +--- + "%s is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU Lesser General Public\n" "License as published by the Free Software Foundation; either\n" diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_448.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_448.yml deleted file mode 100644 index a70238493a1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_448.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: seen in FFmpeg diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_449.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_449.RULE index 595e1db86fa..eb508d639eb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_449.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_449.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + FFmpeg 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_449.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_449.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_449.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_45.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_45.RULE index 78bac976ee6..51d8a078252 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_45.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_45.RULE @@ -1 +1,7 @@ -is published unser the GNU Lesser General Public Licence in +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + +is published unser the GNU Lesser General Public Licence in \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_45.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_45.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_450.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_450.RULE index 1711f11fff9..24b1c0384ae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_450.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_450.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: weird mildly danaged text +--- + FFmpeg 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_450.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_450.yml deleted file mode 100644 index 48bbf5a1671..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_450.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: weird mildly danaged text diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_451.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_451.RULE index f7ddac61caf..196d1a51a1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_451.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_451.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + MPlayer 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_451.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_451.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_451.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_452.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_452.RULE index afc39e285e9..bb02a0bdb1e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_452.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_452.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + libswresample 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_452.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_452.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_452.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_453.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_453.RULE index 439c426a791..a205119e22a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_453.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_453.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_453.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_453.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_453.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_454.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_454.RULE index a7584fb1728..a89691218b1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_454.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_454.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + License This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License;see www.gnu.org/copyleft/lesser.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_454.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_454.yml deleted file mode 100644 index d50c93d7ec6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_454.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_455.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_455.RULE index fc8d9c1220d..70be714dbe3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_455.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_455.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License;see www.gnu.org/copyleft/lesser.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_455.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_455.yml deleted file mode 100644 index d50c93d7ec6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_455.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_456.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_456.RULE index cec2e9ba9f7..27a23c19138 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_456.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_456.RULE @@ -1,2 +1,7 @@ +--- +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 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_456.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_456.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_456.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_457.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_457.RULE index f9af7db12a4..47c64f54914 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_457.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_457.RULE @@ -1,2 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_457.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_457.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_457.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_46.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_46.RULE index e7e48fb35eb..963b69243e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_46.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_46.RULE @@ -1 +1,11 @@ -license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENCE +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + +license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_46.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_46.yml deleted file mode 100644 index 329bfd52cc7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_46.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENCE -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_47.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_47.RULE index 2c1eb5d59b6..22b6f0eb2c7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_47.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_47.RULE @@ -1 +1,9 @@ -licence http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + +licence http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_47.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_47.yml deleted file mode 100644 index 8837763eff9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_48.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_48.RULE index eda36c4597e..037c1fddb4f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_48.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_48.RULE @@ -1 +1,9 @@ -licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + +licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_48.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_48.yml deleted file mode 100644 index 3892d95777e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_49.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_49.RULE index dda02f4e472..e65a68fcd86 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_49.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_49.RULE @@ -1 +1,7 @@ -This file is under LGPL, the GNU Lesser General Public Licence +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + +This file is under LGPL, the GNU Lesser General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_49.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_49.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_5.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_5.RULE index 1e656c78e38..d1c9e1ff562 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: This was used by Kaboom and is an LGPL 2.1 with some mistake and disclaimer taken from + GPL http://git.debian.org/?p=pkg-kde/kaboom.git;a=summary +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or @@ -10,4 +17,4 @@ You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_5.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_5.yml deleted file mode 100644 index 9b938d8a31d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: This was used by Kaboom and is an LGPL 2.1 with some mistake and disclaimer taken from - GPL http://git.debian.org/?p=pkg-kde/kaboom.git;a=summary diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_50.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_50.RULE index ba680ca9f57..d8ca7b5c1fc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_50.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_50.RULE @@ -1 +1,9 @@ -The library is distrubuted under the GNU Lesser General Public Licence. See the COPYING file for details. +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +The library is distrubuted under the GNU Lesser General Public Licence. See the COPYING file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_50.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_50.yml deleted file mode 100644 index 9b1fa0ab2d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_51.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_51.RULE index b749b94e156..ff59298c360 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_51.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_51.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + This software is distributed under the terms of the GNU Lesser General Public Licence (LGPL) See LICENSE.txt for further details \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_51.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_51.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_51.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_52.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_52.RULE index b1f500959e0..fa8e7be6b04 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_52.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_52.RULE @@ -1 +1,9 @@ -license GNU Lesser General Public license see license file or http://www.gnu.org/licenses/lgpl.html +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + +license GNU Lesser General Public license see license file or http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_52.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_52.yml deleted file mode 100644 index 3892d95777e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_53.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_53.RULE index 4241c6c2e2e..368184f63b2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_53.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_53.RULE @@ -1,4 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LESSER + - COPYING +--- + This software is distributed under the GNU Lesser General Public Licence as published by the Free Software Foundation. Please see the file -COPYING.LESSER and COPYING for the exact licensing terms and conditions. - +COPYING.LESSER and COPYING for the exact licensing terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_53.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_53.yml deleted file mode 100644 index 0e3a925a61f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LESSER - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_54.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_54.RULE index 2998f89e8df..a5209102a4a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_54.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_54.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + is available under the GNU Lesser General Public Licence (LGPL). -See http://www.gnu.org/copyleft/lesser.html for the license. +See http://www.gnu.org/copyleft/lesser.html for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_54.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_54.yml deleted file mode 100644 index d50c93d7ec6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_54.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_55.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_55.RULE index 106d8550d83..a960ec0abef 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_55.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_55.RULE @@ -1,4 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- -is available under the GNU Lesser General Public license (LGPL). -See http://www.gnu.org/copyleft/lesser.html for the license. +is available under the GNU Lesser General Public license (LGPL). +See http://www.gnu.org/copyleft/lesser.html for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_55.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_55.yml deleted file mode 100644 index d50c93d7ec6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_55.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_56.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_56.RULE index 48c55508ac8..eb0cc4edbfb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_56.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_56.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -10,4 +17,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_56.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_56.yml deleted file mode 100644 index 5aeea4d698f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_56.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_57.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_57.RULE index ddefa80581d..f8cf3b0289c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_57.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_57.RULE @@ -1,4 +1,9 @@ +--- +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 licence, or (at your option) any later version. +of the licence, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_57.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_57.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_58.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_58.RULE index 51a3a7b54b5..160b6b78127 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_58.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_58.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + 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 @@ -6,4 +11,4 @@ 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 -Lesser General Public License for more details. +Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_58.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_58.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_58.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE index 7a89dbe6ecc..251864af9e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/ +--- + 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 @@ -11,4 +18,4 @@ You should have received a copy of the GNU Lesser General Public License along with this software; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301 USA, or see the FSF site: http://www.fsf.org. + 02110-1301 USA, or see the FSF site: http://www.fsf.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_59.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_59.yml deleted file mode 100644 index e99bc270074..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_59.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_6.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_6.RULE index 40517873d3e..7c4bcead612 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: lgpl with markup +--- + // This library is free software; you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the @@ -11,4 +17,4 @@ // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -// USA. +// USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_6.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_6.yml deleted file mode 100644 index bbe591461ee..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: lgpl with markup diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_60.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_60.RULE index dc697aca67b..a29721be99e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_60.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_60.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + LGPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -15,4 +20,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library. -LGPL HEADER END +LGPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_60.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_60.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_60.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_61.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_61.RULE index 96f5196396d..fccb9569caa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_61.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_61.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-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 Lesser General Public License as published by @@ -10,4 +17,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this program; if not, see . */ +along with this program; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_61.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_61.yml deleted file mode 100644 index 5aeea4d698f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_61.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_62.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_62.RULE index f30577afb20..3cc5ee30365 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_62.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_62.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or @@ -9,4 +17,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this program. If not, see . */ +along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_62.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_62.yml deleted file mode 100644 index e36b409a95b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_63.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_63.RULE index 27fd39866bf..d9cf379c4fc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_63.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_63.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -11,4 +16,4 @@ You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - MA 02110-1301 USA. */ + MA 02110-1301 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_63.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_63.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_63.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE index f65392ad9c2..dc1a9717f38 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE @@ -1 +1,7 @@ -LGPL-2.1+ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + +LGPL-2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_64.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_64.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_65.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_65.RULE index f066e3571db..a681eae21f7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_65.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_65.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + later of the less restrictive GNU Lesser General Public License (LGPLv2.1+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_65.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_65.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_66.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_66.RULE index f507518b4c6..f22daefe1fc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_66.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_66.RULE @@ -1,3 +1,10 @@ +--- +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) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_66.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_66.yml deleted file mode 100644 index 507f315d317..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_66.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_67.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_67.RULE index fc9882009bc..99688343693 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_67.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_67.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.gnu.org/ +--- + is distributed under the GNU LGPL license Notes: @@ -19,4 +27,4 @@ is distributed under the GNU LGPL license Lesser General Public License for more details. You can receive a copy of the GNU Lesser General Public License from - http://www.gnu.org/ + http://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_67.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_67.yml deleted file mode 100644 index 45b653c4a16..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_68.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_68.RULE index 6986f9b598b..b0ae3072989 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_68.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_68.RULE @@ -1,3 +1,10 @@ +--- +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 @@ -9,4 +16,4 @@ 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 ; If not, see . +along with ; If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_68.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_68.yml deleted file mode 100644 index 5aeea4d698f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_68.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_69.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_69.RULE index 37c82d26e55..8b89451f5a5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_69.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_69.RULE @@ -1,4 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_69.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_69.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_69.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_7.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_7.RULE index c62cdc2892c..b6dfb77f054 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + Copyright (C) year diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_7.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_7.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_70.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_70.RULE index 1d165d7fe54..9aa55f068ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_70.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_70.RULE @@ -1 +1,7 @@ -LGPLv2.1+. +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 95 +--- + +LGPLv2.1+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_70.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_70.yml deleted file mode 100644 index 9061bc799ec..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_71.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_71.RULE index 4ea1cccd7e6..17a95ec1ee1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_71.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_71.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 99 +--- + This code was derived from originally licenced -under LGPLv2.1+. +under LGPLv2.1+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_71.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_71.yml deleted file mode 100644 index d014f969cac..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_72.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_72.RULE index 621ae20d93a..7e1ba58f78b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_72.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_72.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 99 +--- + originally licenced -under LGPLv2.1+. +under LGPLv2.1+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_72.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_72.yml deleted file mode 100644 index d014f969cac..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_73.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_73.RULE index 56145f9d414..d851dcabc0e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_73.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_73.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at @@ -9,4 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_73.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_73.yml deleted file mode 100644 index 507f315d317..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_73.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_74.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_74.RULE index f1dcddc636c..14cf729ace0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_74.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_74.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + License -This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 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. \ No newline at end of file +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 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_74.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_74.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_75.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_75.RULE index 28633ba2fd8..64f3d4ff251 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_75.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_75.RULE @@ -1,2 +1,7 @@ +--- +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 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. \ No newline at end of file + +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 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_75.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_75.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_75.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_76.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_76.RULE index d29647dadd9..dfc81c324e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_76.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_76.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + 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 @@ -10,4 +15,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this Module; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_76.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_76.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_76.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_77.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_77.RULE index 655d99c397a..1491f125257 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_77.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_77.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the @@ -11,4 +18,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_77.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_77.yml deleted file mode 100644 index 41aa1afa917..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_77.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_78.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_78.RULE index 144bb0c661b..fa17cf6399b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_78.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_78.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_78.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_78.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_79.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_79.RULE index c7e8132b582..4fa0f156996 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_79.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_79.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + [LGPL]. This library is free software; you can redistribute it and/or @@ -13,4 +18,4 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - USA. */ + USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_79.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_79.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_79.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_8.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_8.RULE index 29e326c8f2f..3b506e59d15 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: LGPL 2.1 or later notice, alternate formatting +--- + # This library 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 @@ -10,4 +16,4 @@ # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# 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-2.1-plus_8.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_8.yml deleted file mode 100644 index 03bfa0e094e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: LGPL 2.1 or later notice, alternate formatting diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_80.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_80.RULE index 54f332aa1fc..36d1acbfffb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_80.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_80.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-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 Lesser General Public License as published by the Free Software Foundation; either @@ -9,4 +16,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License - along with this manual. If not, see . + along with this manual. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_80.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_80.yml deleted file mode 100644 index 5aeea4d698f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_80.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_81.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_81.RULE index 909b2803f54..89a84341760 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_81.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_81.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + * %Begin-Header% * This file may be redistributed under the terms of the * GNU Lesser General Public License. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_81.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_81.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_81.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_82.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_82.RULE index 79e05f28acd..0cfe0148130 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_82.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_82.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +referenced_filenames: + - COPYING.LESSER + - COPYING +--- + distributed under the LESSER GNU GPL. For full terms see the included COPYING file and the COPYING.LESSER file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_82.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_82.yml deleted file mode 100644 index 8a1640a3173..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -referenced_filenames: - - COPYING.LESSER - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_83.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_83.RULE index 1b1611c60f8..96cf0f03af0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_83.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_83.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -7,4 +12,4 @@ 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. + GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_83.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_83.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_83.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.RULE index d4d719d13ae..759c82b6849 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.RULE @@ -1 +1,7 @@ -the gnu lesser general public license \ No newline at end of file +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +--- + +the gnu lesser general public license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.yml deleted file mode 100644 index 027a651a31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_84.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_84.RULE index 10ee43806e2..c5f44fac851 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_84.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_84.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of @@ -6,4 +11,4 @@ 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. +GNU Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_84.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_84.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_84.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_85.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_85.RULE index cbe952e73b6..814ffde1a34 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_85.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_85.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 99 +minimum_coverage: 95 +notes: mix of lgpl and gpl +--- + 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 @@ -6,4 +14,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_85.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_85.yml deleted file mode 100644 index 2a6ad941a04..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 99 -minimum_coverage: 95 -notes: mix of lgpl and gpl diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_86.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_86.RULE index d58a8d978dd..010b0dc2a68 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_86.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_86.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 98 +ignorable_urls: + - http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/tip/src/share/native/sun/security/ec/impl +--- + Written Offer for ECC Source Code For third party technology that you receive from Oracle in binary form which is licensed under an open source license that gives you the right diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_86.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_86.yml deleted file mode 100644 index 7d2677a9a99..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 98 -ignorable_urls: - - http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/file/tip/src/share/native/sun/security/ec/impl diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_87.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_87.RULE index 042fdb5ddde..c6a362626aa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_87.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_87.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +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 Library General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_87.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_87.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_88.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_88.RULE index 012ad18cd21..21f0eeaee2b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_88.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_88.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_88.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_88.yml deleted file mode 100644 index b77bc7b610a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_89.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_89.RULE index 0018f631a8f..8e64d607802 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_89.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_89.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.oracle.com/ +--- + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -15,4 +22,4 @@ * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any -* questions. +* questions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_89.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_89.yml deleted file mode 100644 index 2d7991b4e2e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_89.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_9.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_9.RULE index f61a545be5f..25b3a271257 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: LGPL variant +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -11,4 +17,4 @@ You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + 02111-1307 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_9.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_9.yml deleted file mode 100644 index 1493d6fb0a2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: LGPL variant diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_90.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_90.RULE index 41261d50b1f..84faa7e0b97 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_90.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_90.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/ +--- + * Licence * ==================================================================== * This program is free software; you can redistribute it and/or modify @@ -13,4 +20,4 @@ * You should have received a copy of the GNU General Public License * or GNU Lesser General Public License along with this program; if not, * write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * or visit http://www.gnu.org + * or visit http://www.gnu.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_90.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_90.yml deleted file mode 100644 index 9cade665c2f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_90.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE index 94c88672777..240c259bc24 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -10,4 +15,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +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/lgpl-2.1-plus_91.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_91.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_91.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE index 98ffea68d77..a7e95fa48db 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,4 +15,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +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/lgpl-2.1-plus_92.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_92.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_92.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE index 2899db16cb4..01c8a41f2cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE @@ -1,3 +1,8 @@ +--- +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 @@ -10,5 +15,4 @@ 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, Fifth Floor, Boston, MA 02110-1301 USA - \ No newline at end of file + 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/lgpl-2.1-plus_93.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_93.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_94.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_94.RULE index 7c92f2f623b..27a6be3cde1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_94.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_94.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU LGPL (v2.1 or later), and relies on the implicit patent license of the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_94.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_94.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_95.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_95.RULE index d410799bf84..287302cbf0c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_95.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_95.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + under the GNU LGPL (v2.1 or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_95.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_95.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_96.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_96.RULE index a9a8a54138f..64b337e3b5b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_96.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_96.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + The source code for GNU Trove is licensed under the Lesser GNU Public License (LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_96.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_96.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_97.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_97.RULE index 6aa7aa331cf..6f0c0b5d1d0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_97.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + The source code for GNU Trove is licensed under the Lesser GNU Public License (LGPL). This library is free software; you can redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_97.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_97.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.RULE index aad9ee91163..3602a4e657a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + The source code for GNU Trove is licensed under the Lesser GNU Public License (LGPL). This library is free software; you can redistribute it and/or modify it under @@ -8,4 +14,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +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/lgpl-2.1-plus_97_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.RULE index 102d1c04ed3..0741de89af3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any @@ -6,4 +12,4 @@ 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, write to the Free Software Foundation, -Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +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-2.1-plus_97_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_98.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_98.RULE index ffb7b914385..8f1b764cf42 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_98.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_98.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + # '' 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) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_98.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_98.yml deleted file mode 100644 index 1a70d978fde..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_98.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_99.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_99.RULE index ade9ef9f56d..8a45e0203cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_99.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_99.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + # 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) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_99.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_99.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_1.RULE index 5d1e9ce5fc1..94129a84c8d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus AND other-permissive AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPLv2.1 + - COPYING.GPLv2 +--- + # License Most files in FFmpeg are under the GNU Lesser General Public License version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_1.yml deleted file mode 100644 index db6a7d57e22..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus AND other-permissive AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPLv2.1 - - COPYING.GPLv2 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_2.RULE index d72b1702a9d..30bfaad2f90 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus AND other-permissive AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPLv2.1 + - COPYING.GPLv2 +--- + Most files in FFmpeg are under the GNU Lesser General Public License version 2.1 or later (LGPL v2.1+). Read the file `COPYING.LGPLv2.1` for details. Some other files have MIT/X11/BSD-style licenses. In combination the LGPL v2.1+ applies to diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_2.yml deleted file mode 100644 index db6a7d57e22..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and__other-permissive_and_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus AND other-permissive AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPLv2.1 - - COPYING.GPLv2 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_free-unknown_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_free-unknown_1.RULE index ec747fe562a..c0f647aba72 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_free-unknown_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus AND free-unknown +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + License: LGPL-2.1+, other This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_free-unknown_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_free-unknown_1.yml deleted file mode 100644 index fa68ab50e3d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_free-unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus AND free-unknown -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.RULE index 01d8ba30a73..f2c8c2b78a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 80 +referenced_filenames: + - COPYING +--- + "This library is free software; you can redistribute it and/or" "modify it under the terms of the GNU Lesser General Public" "License as published by the Free Software Foundation; either" diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.yml deleted file mode 100644 index 7bb8b5f1d47..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 80 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_2.RULE index 8725662c7c6..58114c52211 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus AND gfdl-1.3 +is_license_notice: yes +minimum_coverage: 80 +--- + "This library is free software; you can redistribute it and/or" "modify it under the terms of the GNU Lesser General Public" "License as published by the Free Software Foundation; either" diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_2.yml deleted file mode 100644 index 687313fdd56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND gfdl-1.3 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_1.RULE index 7a8d2b0f4fc..a2cb0a93fcf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB + - COPYING.UTILS +--- + The first, the library (librarian and headers) is distributed under the LGPL version 2.1 (or at you're discretion any later version of this license). Please see the file COPYING.LIB for full details. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_1.yml deleted file mode 100644 index d4d762dca09..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB - - COPYING.UTILS diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_2.RULE index a0e8239ca9a..f6d56a9c954 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-2.0-plus +is_license_notice: yes +--- + License: Most of the package is licensed under the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_2.yml deleted file mode 100644 index b90fbb79909..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_3.RULE index 2ffb1398c5d..0c0c456c183 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-2.0-plus +is_license_notice: yes +--- + Most of the package is licensed under the GNU Lesser General Public License (LGPL) version 2.1 (or later), except for helper and debugging binaries. See below for details. The documentation is licensed under diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_3.yml deleted file mode 100644 index b90fbb79909..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_1.RULE index a1386e794a3..35a6cc7f154 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: http://accord-framework.net/license.txt +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_1.yml deleted file mode 100644 index 83356728ef1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: http://accord-framework.net/license.txt -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_2.RULE index feb12fe28c4..ca4baf00d80 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-2.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: http://accord-framework.net/license.txt +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_2.yml deleted file mode 100644 index 20d664418f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-2.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-2.0 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: http://accord-framework.net/license.txt -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_1.RULE index 97c3e324649..683b928b855 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License (software): LGPLv2.1+ License (manual): GPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_1.yml deleted file mode 100644 index ec509cc7de8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_2.RULE index 2b0e6a98992..288883cb90f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-3.0-plus +is_license_notice: yes +--- + The library itself is licensed as LGPLv2.1+, the build system, test-suite and command-line tools (package -bin) are GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_2.yml deleted file mode 100644 index aeb1c6bb7fc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_1.RULE index f3840de66c1..4c530f15c99 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-3.0-plus AND (lgpl-3.0-plus AND gpl-2.0-plus) +is_license_notice: yes +--- + License: The main library is licensed under GNU Lesser General Public License (LGPL) version 2.1+, are licenced under the GNU General Public License version 3+. The bindings use the same license as the respective underlying library, @@ -8,4 +13,4 @@ available under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS requires which requires is dual licensed LGPLv3+ or GPLv2+. Starting with is needed, too. It also is dual licensed LGPLv3+ or GPLv2+ ( earlier -version were LGPLv3+ only.) +version were LGPLv3+ only.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_1.yml deleted file mode 100644 index afd9cb7c060..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-3.0-plus AND (lgpl-3.0-plus AND gpl-2.0-plus) -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_2.RULE index b84349db7dc..c7bd5afa8f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-3.0-plus AND (lgpl-3.0-plus AND gpl-2.0-plus) +is_license_notice: yes +--- + License: The main library is licensed under GNU Lesser General Public License (LGPL) version 2.1+, Gnutls Extra (which is currently just the openssl wrapper library), build system, testsuite and commandline @@ -10,4 +15,4 @@ available under a license compatible with LGPLv3+ or GPLv2+ since GnuTLS requires nettle which requires GMP. GMP (>= 6.0.0) is dual licensed LGPLv3+ or GPLv2+. Starting with 3.5.7 libunistring is needed, too. It also is dual licensed LGPLv3+ or GPLv2+ (libunistring 0.9.7 and above, earlier -version were LGPLv3+ only.) +version were LGPLv3+ only.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_2.yml deleted file mode 100644 index afd9cb7c060..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0-plus_and_lgpl-3.0-plus_and_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-3.0-plus AND (lgpl-3.0-plus AND gpl-2.0-plus) -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_1.RULE index 8655c272302..9be5621d817 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The license of is LGPL v2.1 or later and the licence of programs in tests directory is GPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_1.yml deleted file mode 100644 index 8fe137755ff..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_2.RULE index bae912c1143..a0d673d29a3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-3.0 +is_license_notice: yes +notes: seen in libmodbis +--- + The license is LGPL v2.1 or later and the licence of programs in tests directory is GPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_2.yml deleted file mode 100644 index 4930d34948f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gpl-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-3.0 -is_license_notice: yes -notes: seen in libmodbis diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_1.RULE index af27eeab29e..b947035afb2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus AND other-copyleft +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The author added a static linking exception, see License.txt. 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. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_1.yml deleted file mode 100644 index 9848993440a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus AND other-copyleft -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_and_other-permissive_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_and_other-permissive_1.RULE index 09eca828305..18817e48f68 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus AND other-copyleft AND other-permissive +is_license_reference: yes +relevance: 100 +--- + This file contains the copying permission notices for various files in the GNU C Library distribution that have copyright owners other than the Free Software Foundation. These notices all require that a copy of the notice diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_and_other-permissive_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_and_other-permissive_1.yml deleted file mode 100644 index 5d04f5cb731..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-copyleft_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND other-copyleft AND other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_1.RULE index 0bd9def782a..6a24dfe1a96 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus AND other-permissive +is_license_notice: yes +minimum_coverage: 60 +--- + License: Your use or distribution of or any modified version of @@ -26,4 +32,4 @@ version of this code must cite the Copyright, this License, the Availability note, and "Used by permission." Permission to modify the code and to distribute modified code is granted, provided the Copyright, this License, and the Availability note are retained, -and a notice that the code was modified is included. +and a notice that the code was modified is included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_1.yml deleted file mode 100644 index bac28b3688e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND other-permissive -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_2.RULE index 1b9e2237a75..f16f03e168a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus AND other-permissive +is_license_notice: yes +minimum_coverage: 60 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -21,4 +27,4 @@ version of this code must cite the Copyright, this License, the Availability note, and "Used by permission." Permission to modify the code and to distribute modified code is granted, provided the Copyright, this License, and the Availability note are retained, -and a notice that the code was modified is included. +and a notice that the code was modified is included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_2.yml deleted file mode 100644 index bac28b3688e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_other-permissive_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND other-permissive -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_1.RULE index ca96e192964..8c790d355ad 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus AND patent-disclaimer +is_license_notice: yes +notes: Seen in https://mevislab.github.io/pythonqt/PythonQtCppWrapperFactory_8h_source.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_1.yml deleted file mode 100644 index fdafa73a16e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND patent-disclaimer -is_license_notice: yes -notes: Seen in https://mevislab.github.io/pythonqt/PythonQtCppWrapperFactory_8h_source.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_2.RULE index c01ec0c863a..e5a8c4cd8ae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus AND patent-disclaimer +is_license_notice: yes +notes: Seen in Athena +ignorable_urls: + - http://oss.sgi.com/projects/GenInfo/NoticeExplan/ + - http://www.sgi.com/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; {{ either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_2.yml deleted file mode 100644 index 8a6e83360cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_patent-disclaimer_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus AND patent-disclaimer -is_license_notice: yes -notes: Seen in Athena -ignorable_urls: - - http://oss.sgi.com/projects/GenInfo/NoticeExplan/ - - http://www.sgi.com/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_1.RULE index 057dc38e6b7..1edb0e35329 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus AND proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_1.yml deleted file mode 100644 index 0ebe083cc9d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus AND proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_2.RULE index 3884f47adc0..d8be808beb0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_2.yml deleted file mode 100644 index 1f24fd92b78..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_proprietary-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_linking_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_linking_2.RULE index 278daf930b6..7d8bf741c1e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_linking_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_linking_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH linking-exception-2.1-plus +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -19,4 +27,4 @@ the GNU Lesser General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Lesser General Public License. This exception applies to code released by its copyright holders -in files containing the exception. */ +in files containing the exception. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_linking_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_linking_2.yml deleted file mode 100644 index 60090e842a6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_linking_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH linking-exception-2.1-plus -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.RULE index 1df3e6420c6..29c12914904 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: seen in newlib +--- + Free Software Foundation LGPL License The GNU C Library is free software; you can redistribute it and/or @@ -13,5 +19,4 @@ Free Software Foundation LGPL License You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA. - + 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.yml deleted file mode 100644 index 79746f1c41c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: seen in newlib diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_1.RULE index 76bfd9ee0a2..0e4c66b309f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_1.RULE @@ -1,4 +1,12 @@ +--- +license_expression: lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LGPL2.1 + - AL2.0 +--- + The contents of this file is dual-licensed under 2 alternative Open Source/Free licenses: LGPL 2.1 or later and -Apache License 2.0. +Apache License 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_1.yml deleted file mode 100644 index 0845e8f6d87..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - LGPL2.1 - - AL2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_2.RULE index 375f08ccd04..15f8f36d791 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LGPL2.1 + - AL2.0 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.gnu.org/licenses/licenses.html +--- + The contents of this file is dual-licensed under 2 alternative Open Source/Free licenses: LGPL 2.1 or later and Apache License 2.0. . @@ -17,4 +28,4 @@ You may obtain a copy of the Apache License at: http://www.apache.org/licenses/ A copy is also included in the downloadable source code package -containing, in file "AL2.0". +containing, in file "AL2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_2.yml deleted file mode 100644 index 3721fbda851..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - LGPL2.1 - - AL2.0 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_3.RULE index 583cb5d6433..f5644b81cf3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LGPL2.1 + - AL2.0 +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html + - https://www.apache.org/licenses/ +--- + The contents of this file is dual-licensed under 2 alternative Open Source/Free licenses: LGPL 2.1 or later and Apache License 2.0. . @@ -17,4 +28,4 @@ You may obtain a copy of the Apache License at: https://www.apache.org/licenses/ A copy is also included in the downloadable source code package -containing, in file "AL2.0". +containing, in file "AL2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_3.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_3.yml deleted file mode 100644 index b97cd509c8a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - LGPL2.1 - - AL2.0 -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_4.RULE index 0b6f8935a4f..2dd8135b8b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +relevance: 100 +notes: Seen in Java JNA +--- + licensed under the LGPL, version 2.1 or later, or (from version 4.0 onward) the Apache License, version 2.0. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_4.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_4.yml deleted file mode 100644 index 0bf710d98bd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -relevance: 100 -notes: Seen in Java JNA diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_5.RULE index 05a815b3eed..28a884080be 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_5.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LGPL2.1 + - AL2.0 +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.gnu.org/licenses/licenses.html +--- + The contents of this file is dual-licensed under 2 alternative Open Source/Free licenses: LGPL 2.1 or later and Apache License 2.0. . @@ -17,4 +29,4 @@ You may obtain a copy of the Apache License at: https://www.apache.org/licenses/ A copy is also included in the downloadable source code package -containing, in file "AL2.0". +containing, in file "AL2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_5.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_5.yml deleted file mode 100644 index 977dc8d6218..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_5.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LGPL2.1 - - AL2.0 -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_6.RULE index 7db3297cddd..d0dde979db9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_6.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LGPL2.1 + - AL2.0 +ignorable_urls: + - http://www.apache.org/licenses/ + - https://www.gnu.org/licenses/licenses.html +--- + The contents of this file is dual-licensed under 2 alternative Open Source/Free licenses: LGPL 2.1 or later and Apache License 2.0. . @@ -17,4 +29,4 @@ You may obtain a copy of the Apache License at: http://www.apache.org/licenses/ A copy is also included in the downloadable source code package -containing, in file "AL2.0". +containing, in file "AL2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_6.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_6.yml deleted file mode 100644 index 15f40c805dc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_6.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LGPL2.1 - - AL2.0 -ignorable_urls: - - http://www.apache.org/licenses/ - - https://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_or_commercial-license_1.RULE index b72cd0fd264..2a5c0357474 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_or_commercial-license_1.RULE @@ -1,5 +1,11 @@ +--- +license_expression: lgpl-2.1-plus OR apache-2.0 OR commercial-license +is_license_notice: yes +minimum_coverage: 50 +--- + License This library is licensed under the LGPL, version 2.1 or later, and (from version 4.0 onward) the Apache Software License, version 2.0. -Commercial license arrangements are negotiable. +Commercial license arrangements are negotiable. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_or_commercial-license_1.yml deleted file mode 100644 index 2f5400d7f65..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_apache-2.0_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus OR apache-2.0 OR commercial-license -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_bsd-new_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_bsd-new_1.RULE index ff78ae4cfb3..78bba405e3f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_bsd-new_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus OR bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: Seen in Libestream +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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_bsd-new_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_bsd-new_1.yml deleted file mode 100644 index 301652977b0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_bsd-new_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus OR bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: Seen in Libestream -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_1.RULE index f785389fda6..ed09a414390 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + library is licensed under the Lesser GNU Public License, which is included with the distribution in a file called LICENSE.txt. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_1.yml deleted file mode 100644 index 7a7878693c7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_commercial-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0-plus_1.RULE index aee93294420..3c8c901f2ad 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus OR mpl-1.1 OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://mozilla.org/MPL + - http://www.fsf.org/licenses/lgpl.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published @@ -18,4 +27,4 @@ Alternatively, the contents of this file may be used under the terms of the Mozilla Public License (http://mozilla.org/MPL) or 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. + either version 2 of the License or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0-plus_1.yml deleted file mode 100644 index bd71082cda9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus OR mpl-1.1 OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://mozilla.org/MPL - - http://www.fsf.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0.RULE index 440395aa190..cc22b85baec 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus OR mpl-1.1 OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +notes: Mozilla tri license +ignorable_urls: + - http://www.fsf.org/copyleft/gpl.html + - http://www.mozilla.org/MPL/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -24,4 +34,4 @@ version of this file under the LGPL, indicate your decision by deletingthe provisions above and replace them with the notice and other provisions required by the MPL or the GPL, as the case may be. If you do not delete the provisions above, a recipient may use your -version of this file under any of the LGPL, the MPL or the GPL. +version of this file under any of the LGPL, the MPL or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0.yml deleted file mode 100644 index 6ac920d4799..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus OR mpl-1.1 OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 -notes: Mozilla tri license -ignorable_urls: - - http://www.fsf.org/copyleft/gpl.html - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0_2.RULE index 3297ad073f0..5d459184fc3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1-plus OR mpl-1.1 OR gpl-2.0 +is_license_notice: yes +notes: Mozilla tri license +ignorable_urls: + - http://www.fsf.org/copyleft/gpl.html + - http://www.fsf.org/copyleft/lesser.html + - http://www.mozilla.org/MPL/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, @@ -22,4 +32,4 @@ this file under the LGPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the MPL or the GPL, as the case may be. If you do not delete the provisions above, a recipient may use your version of this file under any of the LGPL, the MPL or -the GPL. +the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0_2.yml deleted file mode 100644 index 8f5e31d42cc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_mpl-1.1_or_gpl-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus OR mpl-1.1 OR gpl-2.0 -is_license_notice: yes -notes: Mozilla tri license -ignorable_urls: - - http://www.fsf.org/copyleft/gpl.html - - http://www.fsf.org/copyleft/lesser.html - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_proprietary-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_or_proprietary-license_1.RULE index c9e4e13b10b..4b783216d1f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_or_proprietary-license_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus OR proprietary-license +is_license_notice: yes +relevance: 95 +minimum_coverage: 100 +notes: Seen in https://github.com/Upipe/upipe/blob/cb8109860b4200ed4d6e39bcdb06dcbb93a7072e/README +--- + For non-LGPL uses, please contact \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_or_proprietary-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_or_proprietary-license_1.yml deleted file mode 100644 index 74e9f9d9821..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_or_proprietary-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus OR proprietary-license -is_license_notice: yes -relevance: 95 -minimum_coverage: 100 -notes: Seen in https://github.com/Upipe/upipe/blob/cb8109860b4200ed4d6e39bcdb06dcbb93a7072e/README diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_partial.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_partial.RULE index c87b03aa26f..c88e1858ca8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_partial.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_partial.RULE @@ -1 +1,6 @@ -If you modify your copy or copies of the library or any portion of it, you may distribute the resulting library provided you do so under the GNU Lesser General Public Licence. However, programs that link to the library may be licenced under terms of your choice, so long as the library itself can be changed. Any translation of the GNU Lesser General Public Licence must be accompanied by the GNU Lesser General Public Licence. +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +--- + +If you modify your copy or copies of the library or any portion of it, you may distribute the resulting library provided you do so under the GNU Lesser General Public Licence. However, programs that link to the library may be licenced under terms of your choice, so long as the library itself can be changed. Any translation of the GNU Lesser General Public Licence must be accompanied by the GNU Lesser General Public Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_partial.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_partial.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_partial.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_url_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_url_1.RULE index 983b7443da4..a9c83bb3415 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-2.1-or-later +--- + https://spdx.org/licenses/lgpl-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_url_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_url_1.yml deleted file mode 100644 index 11ea5ecc4a2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-2.1-or-later diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_url_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_url_2.RULE index 609d4400a4b..d3dbf01b3f9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-2.1-or-later.html +--- + https://spdx.org/licenses/lgpl-2.1-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_url_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_url_2.yml deleted file mode 100644 index 80a6a639a80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-2.1-or-later.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_gcc-exception-3.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_gcc-exception-3.1_1.RULE index 1aa624ca1e2..d410ce4c561 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_gcc-exception-3.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_gcc-exception-3.1_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus WITH gcc-exception-3.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_gcc-exception-3.1_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_gcc-exception-3.1_1.yml deleted file mode 100644 index c5eb6943eea..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_gcc-exception-3.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus WITH gcc-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_linking-exception-2.1-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_linking-exception-2.1-plus_1.RULE index 6661481229a..4203ab7c4ff 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_linking-exception-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_linking-exception-2.1-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus WITH linking-exception-2.1-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -19,4 +28,4 @@ the GNU Lesser General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Lesser General Public License. This exception applies to code released by its copyright holders -in files containing the exception. */ +in files containing the exception. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_linking-exception-2.1-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_linking-exception-2.1-plus_1.yml deleted file mode 100644 index cf24aae2187..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_linking-exception-2.1-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus WITH linking-exception-2.1-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_1.RULE index cd76406ba56..7c53ea9ccb2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 99 +--- + This Software is distributed under the terms of the GNU Lesser General Public License version 2.1 (included below), or (at your option) any later version. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_1.yml deleted file mode 100644 index 8cdc043c6b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_2.RULE index e53f582069e..86c9c910376 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + As a special exception to the GNU Lesser General Public License, you may link, statically or dynamically, a "work that uses the " with a publicly distributed version of the to produce an executable file containing portions of the , and distribute that executable file under terms of your choice, without any of the additional requirements listed in clause 6 of the GNU Lesser General Public License. By "a publicly distributed version of the ", we mean either the unmodified as distributed by , or a modified version of the that is distributed under the conditions defined in clause 2 of the GNU Lesser General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_2.yml deleted file mode 100644 index d815c9f4025..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_3.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_3.RULE index ab05c8b56ac..84c2086cf61 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_3.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + As a special exception to the GNU Lesser General Public License, you may link, statically or dynamically, a "work that uses the OCaml Core System" with a publicly distributed version of the OCaml Core System to produce an executable file containing portions of the OCaml Core System, and distribute that executable file under terms of your choice, without any of the additional requirements listed in clause 6 of the GNU Lesser General Public License. By "a publicly distributed version of the OCaml Core System", we mean either the unmodified OCaml Core System as distributed by INRIA, or a modified version of the OCaml Core System that is distributed under the conditions defined in clause 2 of the GNU Lesser General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_3.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_3.yml deleted file mode 100644 index d815c9f4025..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_ocaml-lgpl-linking-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_1.RULE index 11a8d0c1bbb..ba50249b62e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_1.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus +is_license_tag: yes +relevance: 95 +notes: This references the LGPL instead of the GPL Seen in debian +--- + License: LGPL-2.1+ with OpenSSL exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_1.yml deleted file mode 100644 index 5dbb8cb3d37..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus -is_license_tag: yes -relevance: 95 -notes: This references the LGPL instead of the GPL Seen in debian diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_2.RULE index 7ac2fb89560..647d6a93f13 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_2.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus +is_license_reference: yes +relevance: 95 +notes: This references the LGPL instead of the GPL Seen in debian +--- + LGPL-2.1+ with OpenSSL exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_2.yml deleted file mode 100644 index d778309667f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus -is_license_reference: yes -relevance: 95 -notes: This references the LGPL instead of the GPL Seen in debian diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_3.RULE index 8ee9537ea3f..0b1afad33bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 80 +notes: This references the LGPL instead of the GPL +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_3.yml deleted file mode 100644 index 260c8cb894f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 80 -notes: This references the LGPL instead of the GPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_4.RULE index 04f16e160e6..a7d8f0fde9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 80 +notes: This references the LGPL instead of the GPL +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_4.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_4.yml deleted file mode 100644 index 260c8cb894f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 80 -notes: This references the LGPL instead of the GPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_5.RULE index 11b4391a9da..2f586c506fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus +is_license_notice: yes +relevance: 95 +minimum_coverage: 80 +notes: This references the LGPL instead of the GPL +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_5.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_5.yml deleted file mode 100644 index 260c8cb894f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_openssl-exception-gpl-3.0-plus_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -relevance: 95 -minimum_coverage: 80 -notes: This references the LGPL instead of the GPL diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_other-copyleft_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_other-copyleft_1.RULE index ac8a2abd737..fedd01d8390 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_other-copyleft_1.RULE @@ -1 +1,9 @@ -LGPL-2.1+ The author added a static linking exception, see License.txt. +--- +license_expression: lgpl-2.1-plus AND other-copyleft +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + +LGPL-2.1+ The author added a static linking exception, see License.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_other-copyleft_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_other-copyleft_1.yml deleted file mode 100644 index 9848993440a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_other-copyleft_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus AND other-copyleft -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_qt-lgpl-exception-1.1_older.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_qt-lgpl-exception-1.1_older.RULE index c4665ed8911..7e57643f911 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_qt-lgpl-exception-1.1_older.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_qt-lgpl-exception-1.1_older.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus WITH qt-lgpl-exception-1.1 +is_license_notice: yes +minimum_coverage: 80 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at @@ -29,4 +35,4 @@ (iii) accessors; and (iv) small macros, templates and inline functions of five lines or less in length. Furthermore, you are not required to apply this additional permission to a - modified version of the Library. + modified version of the Library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_qt-lgpl-exception-1.1_older.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_qt-lgpl-exception-1.1_older.yml deleted file mode 100644 index bd95f493ecb..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_qt-lgpl-exception-1.1_older.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus WITH qt-lgpl-exception-1.1 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_rxtx-exception-lgpl-2.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_rxtx-exception-lgpl-2.1_1.RULE index d68f291f41b..a6ea1801a16 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_rxtx-exception-lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_rxtx-exception-lgpl-2.1_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others +ignorable_holders: + - Trent Jarvi and others +ignorable_urls: + - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface +ignorable_emails: + - tjarvi@qbang.org +--- + RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. RXTX is a native interface to serial ports in java. Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_rxtx-exception-lgpl-2.1_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_rxtx-exception-lgpl-2.1_1.yml deleted file mode 100644 index 81678a34147..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_rxtx-exception-lgpl-2.1_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others -ignorable_holders: - - Trent Jarvi and others -ignorable_urls: - - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface -ignorable_emails: - - tjarvi@qbang.org diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_1.RULE index 8f24cefe5b2..af125f6b066 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. In addition to the permissions in the GNU Lesser General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute those programs without any restriction coming from the use of this file. (The GNU Lesser General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into another program.) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_1.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_1.yml deleted file mode 100644 index 7a341429e69..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_10.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_10.RULE index ed645a809f2..02134be56ca 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +relevance: 100 +notes: the text of the exception is small variant +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -19,4 +28,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_10.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_10.yml deleted file mode 100644 index e3bca5c41cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -relevance: 100 -notes: the text of the exception is small variant -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_2.RULE index 60f65642b2b..d27269f6213 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -19,4 +26,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_2.yml deleted file mode 100644 index 7a341429e69..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_3.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_3.RULE index f2df9245790..3bd946a9a5e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This files 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 @@ -19,4 +26,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with GCC; see the file COPYING.LIB. If not see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_3.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_3.yml deleted file mode 100644 index 7a341429e69..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_4.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_4.RULE index e97944dd557..5d88321d25b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +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 @@ -19,4 +26,4 @@ You should have received a copy of the GNU Lesser General Public License along with GCC; see the file COPYING.LIB. If not see - . */ + . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_4.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_4.yml deleted file mode 100644 index 7a341429e69..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_5.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_5.RULE index 16fad9f6db6..0db8d071642 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +notes: the text of the exception is small variant +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -19,4 +27,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_5.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_5.yml deleted file mode 100644 index 500bbdc222d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -notes: the text of the exception is small variant -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_6.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_6.RULE index 74738644f86..b7584bdb57c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. In addition to the permissions in the GNU Lesser General Public License, the Free Software Foundation gives you unlimited permission to link the compiled version of this file with other programs, and to distribute those programs without any restriction coming from the use of this file. (The GNU Lesser General Public License restrictions do apply in other respects; for example, they cover modification of the file, and distribution when not linked into another program.) diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_6.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_6.yml deleted file mode 100644 index 1653bb77f0c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_7.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_7.RULE index 118f7af0afc..ac041b01a40 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -19,4 +27,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_7.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_7.yml deleted file mode 100644 index 1653bb77f0c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_8.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_8.RULE index 91491b7ca2b..7246cf16d8b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This files 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 @@ -19,4 +27,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with GCC; see the file COPYING.LIB. If not see -. */ +. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_8.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_8.yml deleted file mode 100644 index 1653bb77f0c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_9.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_9.RULE index c0746f4688b..3777b8e4442 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl +is_license_notice: yes +relevance: 100 +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 @@ -19,4 +27,4 @@ You should have received a copy of the GNU Lesser General Public License along with GCC; see the file COPYING.LIB. If not see - . */ + . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_9.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_9.yml deleted file mode 100644 index 1653bb77f0c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_with_unlimited-linking-exception-lgpl_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH unlimited-linking-exception-lgpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.RULE index e87f26fc2c4..32a0308dcfe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.RULE @@ -1,3 +1,10 @@ +--- +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 5the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 2.1 of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.yml deleted file mode 100644 index 5aeea4d698f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.RULE index ef5d289deef..a5338682247 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.RULE @@ -1,3 +1,10 @@ +--- +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 5the terms of the GNU Lesser General Public License as # published by the Free Software Foundation; either version 2.1 of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.yml b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.yml deleted file mode 100644 index 507f315d317..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1-rxtx.RULE b/src/licensedcode/data/rules/lgpl-2.1-rxtx.RULE index e680bf7abab..a4ee0b697ae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-rxtx.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-rxtx.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 +is_license_reference: yes +relevance: 50 +ignorable_urls: + - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface +--- + http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-rxtx.yml b/src/licensedcode/data/rules/lgpl-2.1-rxtx.yml deleted file mode 100644 index 4186a1f5aca..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-rxtx.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 -is_license_reference: yes -relevance: 50 -ignorable_urls: - - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface diff --git a/src/licensedcode/data/rules/lgpl-2.1-rxtx_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-rxtx_1.RULE index ec820905a6a..89997f8e77b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-rxtx_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-rxtx_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://users.frii.com/jarvi/rxtx/license.html +--- + http://users.frii.com/jarvi/rxtx/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-rxtx_1.yml b/src/licensedcode/data/rules/lgpl-2.1-rxtx_1.yml deleted file mode 100644 index e0a39345453..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-rxtx_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://users.frii.com/jarvi/rxtx/license.html diff --git a/src/licensedcode/data/rules/lgpl-2.1-rxtx_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-rxtx_2.RULE index eb2fd7210be..1618bc2ca95 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-rxtx_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-rxtx_2.RULE @@ -1,3 +1,17 @@ +--- +license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 +is_license_notice: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others +ignorable_holders: + - Trent Jarvi and others +ignorable_urls: + - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface +ignorable_emails: + - tjarvi@qbang.org +--- + RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. RXTX is a native interface to serial ports in java. Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others who diff --git a/src/licensedcode/data/rules/lgpl-2.1-rxtx_2.yml b/src/licensedcode/data/rules/lgpl-2.1-rxtx_2.yml deleted file mode 100644 index 4dfb58e6f40..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1-rxtx_2.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 -is_license_notice: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright 1997-2007 by Trent Jarvi tjarvi@qbang.org and others -ignorable_holders: - - Trent Jarvi and others -ignorable_urls: - - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface -ignorable_emails: - - tjarvi@qbang.org diff --git a/src/licensedcode/data/rules/lgpl-2.1.RULE b/src/licensedcode/data/rules/lgpl-2.1.RULE index 8a5cfd25a20..ccbe55ed4db 100644 --- a/src/licensedcode/data/rules/lgpl-2.1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +notes: Creative Commons LGPL declaration +--- + Creative Commons GNU LGPL, Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1.SPDX.RULE b/src/licensedcode/data/rules/lgpl-2.1.SPDX.RULE index abbd747d424..82154df3035 100644 --- a/src/licensedcode/data/rules/lgpl-2.1.SPDX.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1.SPDX.yml b/src/licensedcode/data/rules/lgpl-2.1.SPDX.yml deleted file mode 100644 index 607be6d67ea..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1.txt_bare.RULE b/src/licensedcode/data/rules/lgpl-2.1.txt_bare.RULE index 4006070e17b..1d1317804e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1.txt_bare.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1.txt_bare.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - lgpl-2.1.txt +--- + lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1.txt_bare.yml b/src/licensedcode/data/rules/lgpl-2.1.txt_bare.yml deleted file mode 100644 index 8ed158a388b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1.txt_bare.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1.yml b/src/licensedcode/data/rules/lgpl-2.1.yml deleted file mode 100644 index f0b4650b64b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -notes: Creative Commons LGPL declaration diff --git a/src/licensedcode/data/rules/lgpl-2.1_0.RULE b/src/licensedcode/data/rules/lgpl-2.1_0.RULE index 8e662a33f94..32c760757e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_0.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation version diff --git a/src/licensedcode/data/rules/lgpl-2.1_0.yml b/src/licensedcode/data/rules/lgpl-2.1_0.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_1.RULE index 13ac4b52bff..0c431fd0140 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + license: name: GNU Lesser General Public License, version 2.1 url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_1.yml b/src/licensedcode/data/rules/lgpl-2.1_1.yml deleted file mode 100644 index 4422925b692..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_10.RULE b/src/licensedcode/data/rules/lgpl-2.1_10.RULE index 777d8c688d1..882df4a5cab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_10.RULE @@ -1 +1,9 @@ -http://creativecommons.org/choose/cc-lgpl +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/choose/cc-lgpl +--- + +http://creativecommons.org/choose/cc-lgpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_10.yml b/src/licensedcode/data/rules/lgpl-2.1_10.yml deleted file mode 100644 index 58690ff52d8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/choose/cc-lgpl diff --git a/src/licensedcode/data/rules/lgpl-2.1_100.RULE b/src/licensedcode/data/rules/lgpl-2.1_100.RULE index 459df23d2e1..04cac4d38e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_100.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_100.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; only @@ -10,4 +15,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +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/lgpl-2.1_100.yml b/src/licensedcode/data/rules/lgpl-2.1_100.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_100.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_101.RULE b/src/licensedcode/data/rules/lgpl-2.1_101.RULE index cfe59bcadb8..96045953b87 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_101.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_101.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +notes: in this variant the address has changed to 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 @@ -499,4 +511,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_101.yml b/src/licensedcode/data/rules/lgpl-2.1_101.yml deleted file mode 100644 index 83c6c34936e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_101.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -notes: in this variant the address has changed to 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_102.RULE b/src/licensedcode/data/rules/lgpl-2.1_102.RULE index a27280da5d3..9de3cc6bdb5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_102.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_102.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +notes: in this variant the address has changed to 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +ignorable_copyrights: + - Copyright A9 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - A9 Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 @@ -499,5 +511,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_102.yml b/src/licensedcode/data/rules/lgpl-2.1_102.yml deleted file mode 100644 index 8b7f6ee985c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_102.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -notes: in this variant the address has changed to 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -ignorable_copyrights: - - Copyright A9 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - A9 Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_103.RULE b/src/licensedcode/data/rules/lgpl-2.1_103.RULE index 2af2a528642..1c00421ba35 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_103.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_103.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +notes: this variant has a type and refers to v2 +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 @@ -499,5 +511,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_103.yml b/src/licensedcode/data/rules/lgpl-2.1_103.yml deleted file mode 100644 index 634fb23bdcd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_103.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -notes: this variant has a type and refers to v2 -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_104.RULE b/src/licensedcode/data/rules/lgpl-2.1_104.RULE index f74ddc478f6..3d9ab8e08ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_104.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_104.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 @@ -499,6 +510,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - - +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_104.yml b/src/licensedcode/data/rules/lgpl-2.1_104.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_104.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_105.RULE b/src/licensedcode/data/rules/lgpl-2.1_105.RULE index 8b366a8ea8e..20bf55a7c18 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_105.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_105.RULE @@ -1,4 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + This file and the modifications can be redistributed and/or * modified under the terms and conditions of the GNU General Public * License, version 2.1 and not any later version of the GPL, as published - * by the Free Software Foundation. \ No newline at end of file + * by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_105.yml b/src/licensedcode/data/rules/lgpl-2.1_105.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_106.RULE b/src/licensedcode/data/rules/lgpl-2.1_106.RULE index d259cd51b05..cc340795598 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_106.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_106.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + This code is licensed under the Lesser GNU General Public License, version 2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_106.yml b/src/licensedcode/data/rules/lgpl-2.1_106.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_107.RULE b/src/licensedcode/data/rules/lgpl-2.1_107.RULE index 803d75861f5..c9986175212 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_107.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_107.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/ +--- + # This file is licensed under the # GNU Lesser General Public License v2.1. -# See the file COPYING or visit http://www.gnu.org/ for details. +# See the file COPYING or visit http://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_107.yml b/src/licensedcode/data/rules/lgpl-2.1_107.yml deleted file mode 100644 index 4ead2b65627..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_108.RULE b/src/licensedcode/data/rules/lgpl-2.1_108.RULE index 97fe5786634..50194c68c3e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_108.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_108.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + This program is distributed under Lesser GPL Version 2.1 in the hope that it will be useful, but WITHOUT ANY WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_108.yml b/src/licensedcode/data/rules/lgpl-2.1_108.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_109.RULE b/src/licensedcode/data/rules/lgpl-2.1_109.RULE index d7617591f2a..b4a5a07fe52 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_109.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_109.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + This program is distributed under LGPL Version 2.1 in the hope that it will be useful, but WITHOUT ANY WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_109.yml b/src/licensedcode/data/rules/lgpl-2.1_109.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_11.RULE b/src/licensedcode/data/rules/lgpl-2.1_11.RULE index 9e073b4c86a..686bb6f7d3f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: Ajax4jsf 1.1 sample +--- + * This library 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. diff --git a/src/licensedcode/data/rules/lgpl-2.1_11.yml b/src/licensedcode/data/rules/lgpl-2.1_11.yml deleted file mode 100644 index f4111c2fef3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: Ajax4jsf 1.1 sample diff --git a/src/licensedcode/data/rules/lgpl-2.1_110.RULE b/src/licensedcode/data/rules/lgpl-2.1_110.RULE index 8a0abb7751f..c915934cee6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_110.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_110.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, @@ -7,5 +14,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public -License along with this library (see the the license.txt file); if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - +License along with this library (see the the license.txt file); 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-2.1_110.yml b/src/licensedcode/data/rules/lgpl-2.1_110.yml deleted file mode 100644 index 37b97b5d9eb..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_110.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/lgpl-2.1_111.RULE b/src/licensedcode/data/rules/lgpl-2.1_111.RULE index 22665f61730..0d7a7442f1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_111.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_111.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_authors: + - the U.S. +--- + Portions of this product were created by the U.S. Government and not subject to U.S. copyright protections under 17 U.S.C. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_111.yml b/src/licensedcode/data/rules/lgpl-2.1_111.yml deleted file mode 100644 index 70c01251b63..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_authors: - - the U.S. diff --git a/src/licensedcode/data/rules/lgpl-2.1_112.RULE b/src/licensedcode/data/rules/lgpl-2.1_112.RULE index 2aa172753b5..beccca17429 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_112.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_112.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU LESSER GENERAL PUBLIC LICENSE (LGPL)Version 2.1, February 1999. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_112.yml b/src/licensedcode/data/rules/lgpl-2.1_112.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_113.RULE b/src/licensedcode/data/rules/lgpl-2.1_113.RULE index 77057e8189e..7ab81caf736 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_113.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_113.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + are covered under the LGPL_2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_113.yml b/src/licensedcode/data/rules/lgpl-2.1_113.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_114.RULE b/src/licensedcode/data/rules/lgpl-2.1_114.RULE index a02e1381afe..917b8c71c7c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_114.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_114.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/lgpl.txt +--- + License: GNU Lesser General Public License (LGPL, Version 2.1 (http://www.fsf.org/licensing/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_114.yml b/src/licensedcode/data/rules/lgpl-2.1_114.yml deleted file mode 100644 index 64110c9691f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_115.RULE b/src/licensedcode/data/rules/lgpl-2.1_115.RULE index fa9196e88e4..9582702f787 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_115.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_115.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + License: LGPL 2.1 (http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_115.yml b/src/licensedcode/data/rules/lgpl-2.1_115.yml deleted file mode 100644 index f593acb35c5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_116.RULE b/src/licensedcode/data/rules/lgpl-2.1_116.RULE index 8f991ed1507..b4766629ef2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_116.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_116.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_116.yml b/src/licensedcode/data/rules/lgpl-2.1_116.yml deleted file mode 100644 index 2a3112c2cba..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_116.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/lgpl-2.1_117.RULE b/src/licensedcode/data/rules/lgpl-2.1_117.RULE index 085566f7d39..5e87bf13bbf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_117.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_117.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +--- + License: LGPL (http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_117.yml b/src/licensedcode/data/rules/lgpl-2.1_117.yml deleted file mode 100644 index e3b0c3ed8e3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_118.RULE b/src/licensedcode/data/rules/lgpl-2.1_118.RULE index 5ef9231c1bf..8471b184f6b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_118.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_118.RULE @@ -1,4 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + # This program is free software. # You can distribute/modify this program under the terms of -# the GNU LGPL, Lesser General Public License version 2.1. - +# the GNU LGPL, Lesser General Public License version 2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_118.yml b/src/licensedcode/data/rules/lgpl-2.1_118.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_119.RULE b/src/licensedcode/data/rules/lgpl-2.1_119.RULE index fe491dff785..5f7d9983787 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_119.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_119.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + The complete text of the GNU Lesser General Public License 2.1 is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_119.yml b/src/licensedcode/data/rules/lgpl-2.1_119.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_12.RULE b/src/licensedcode/data/rules/lgpl-2.1_12.RULE index 235412e7f0b..c3cdaf43a3b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_12.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_12.RULE @@ -1 +1,9 @@ -http://creativecommons.org/licenses/LGPL/2.1/ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + +http://creativecommons.org/licenses/LGPL/2.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_12.yml b/src/licensedcode/data/rules/lgpl-2.1_12.yml deleted file mode 100644 index 1c0a3b5a742..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_120.RULE b/src/licensedcode/data/rules/lgpl-2.1_120.RULE index eaea9d4312f..fdd01f95877 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_120.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_120.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Lesser Gnu Public License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_120.yml b/src/licensedcode/data/rules/lgpl-2.1_120.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_121.RULE b/src/licensedcode/data/rules/lgpl-2.1_121.RULE index 6343d08628b..b834fd16042 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_121.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_121.RULE @@ -1 +1,9 @@ - license 'LGPL-2.1', 'http://www.gnu.org/licenses/lgpl-2.1-standalone.html' +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1-standalone.html +--- + + license 'LGPL-2.1', 'http://www.gnu.org/licenses/lgpl-2.1-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_121.yml b/src/licensedcode/data/rules/lgpl-2.1_121.yml deleted file mode 100644 index 630adb9780e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_121.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_122.RULE b/src/licensedcode/data/rules/lgpl-2.1_122.RULE index 28ed1cdfe25..9c89b07a22e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_122.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_122.RULE @@ -1 +1,9 @@ -http://www.gnu.org/licenses/lgpl-2.1-standalone.html' +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1-standalone.html +--- + +http://www.gnu.org/licenses/lgpl-2.1-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_122.yml b/src/licensedcode/data/rules/lgpl-2.1_122.yml deleted file mode 100644 index 630adb9780e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_122.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_123.RULE b/src/licensedcode/data/rules/lgpl-2.1_123.RULE index 5eb0f47d7f2..bdca04c24ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_123.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_123.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 95 +--- + LGPL21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_123.yml b/src/licensedcode/data/rules/lgpl-2.1_123.yml deleted file mode 100644 index c01e2f6cd71..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1_124.RULE b/src/licensedcode/data/rules/lgpl-2.1_124.RULE index d3052e6a031..a5ffa83f321 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_124.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_124.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LGPLv21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_124.yml b/src/licensedcode/data/rules/lgpl-2.1_124.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_125.RULE b/src/licensedcode/data/rules/lgpl-2.1_125.RULE index 650627d5701..cfcf3211193 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_125.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_125.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + lgpl 21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_125.yml b/src/licensedcode/data/rules/lgpl-2.1_125.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_126.RULE b/src/licensedcode/data/rules/lgpl-2.1_126.RULE index 80e51455055..c4719ce458d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_126.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_126.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + lgpl v21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_126.yml b/src/licensedcode/data/rules/lgpl-2.1_126.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_127.RULE b/src/licensedcode/data/rules/lgpl-2.1_127.RULE index 5fbb5ba0752..154ef08a58f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_127.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_127.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNULGPL21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_127.yml b/src/licensedcode/data/rules/lgpl-2.1_127.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_128.RULE b/src/licensedcode/data/rules/lgpl-2.1_128.RULE index 7df0f954b13..82b8a082b8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_128.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_128.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNULGPLv21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_128.yml b/src/licensedcode/data/rules/lgpl-2.1_128.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_129.RULE b/src/licensedcode/data/rules/lgpl-2.1_129.RULE index 42edbcad9b3..c08e99c5aea 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_129.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_129.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnulgpl 21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_129.yml b/src/licensedcode/data/rules/lgpl-2.1_129.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_13.RULE b/src/licensedcode/data/rules/lgpl-2.1_13.RULE index ae1dbbb433e..2afb9b6d5a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_13.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_13.RULE @@ -1 +1,10 @@ -http://creativecommons.org/images/public/cc-LGPL +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +notes: http://creativecommons.org/images/public/cc-LGPL +ignorable_urls: + - http://creativecommons.org/images/public/cc-LGPL +--- + +http://creativecommons.org/images/public/cc-LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_13.yml b/src/licensedcode/data/rules/lgpl-2.1_13.yml deleted file mode 100644 index c0fc7442a87..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -notes: http://creativecommons.org/images/public/cc-LGPL -ignorable_urls: - - http://creativecommons.org/images/public/cc-LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1_130.RULE b/src/licensedcode/data/rules/lgpl-2.1_130.RULE index f57c6af5097..fefafcc5ed4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_130.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_130.RULE @@ -1 +1,7 @@ -source code is distributed under GNU LGPL v2.1. +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + +source code is distributed under GNU LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_130.yml b/src/licensedcode/data/rules/lgpl-2.1_130.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_131.RULE b/src/licensedcode/data/rules/lgpl-2.1_131.RULE index 13c1808c37c..24f4eabf182 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_131.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_131.RULE @@ -1 +1,7 @@ -distributed under GNU LGPL v2.1. +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + +distributed under GNU LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_131.yml b/src/licensedcode/data/rules/lgpl-2.1_131.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_132.RULE b/src/licensedcode/data/rules/lgpl-2.1_132.RULE index 92ab288979a..a5891b450f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_132.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_132.RULE @@ -1 +1,7 @@ -is distributed under GNU LGPL v2.1. +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + +is distributed under GNU LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_132.yml b/src/licensedcode/data/rules/lgpl-2.1_132.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_133.RULE b/src/licensedcode/data/rules/lgpl-2.1_133.RULE index 7229d8b65c4..bd210f5a32f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_133.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_133.RULE @@ -1 +1,7 @@ -GNU LGPL v2.1. +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +--- + +GNU LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_133.yml b/src/licensedcode/data/rules/lgpl-2.1_133.yml deleted file mode 100644 index 0968b4d8a9c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/lgpl-2.1_134.RULE b/src/licensedcode/data/rules/lgpl-2.1_134.RULE index 6c563b78e9e..dcbe30291f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_134.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_134.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnulgpl v21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_134.yml b/src/licensedcode/data/rules/lgpl-2.1_134.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_135.RULE b/src/licensedcode/data/rules/lgpl-2.1_135.RULE index fb3d4e7db0c..bcce929753c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_135.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_135.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnulgpl 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_135.yml b/src/licensedcode/data/rules/lgpl-2.1_135.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_136.RULE b/src/licensedcode/data/rules/lgpl-2.1_136.RULE index ab861cca1b5..23a7c96c688 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_136.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_136.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnulgpl v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_136.yml b/src/licensedcode/data/rules/lgpl-2.1_136.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_137.RULE b/src/licensedcode/data/rules/lgpl-2.1_137.RULE index b888122adcf..d9bbd319224 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_137.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_137.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_137.yml b/src/licensedcode/data/rules/lgpl-2.1_137.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_138.RULE b/src/licensedcode/data/rules/lgpl-2.1_138.RULE index 80fa6c85bc9..e1fe9efce19 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_138.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_138.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnu lgplv21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_138.yml b/src/licensedcode/data/rules/lgpl-2.1_138.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_139.RULE b/src/licensedcode/data/rules/lgpl-2.1_139.RULE index b5b30982d67..390e24e8cb9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_139.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_139.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_139.yml b/src/licensedcode/data/rules/lgpl-2.1_139.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_14.RULE b/src/licensedcode/data/rules/lgpl-2.1_14.RULE index b7477cf8fe9..46d0b6652cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_14.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_14.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +--- + http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_14.yml b/src/licensedcode/data/rules/lgpl-2.1_14.yml deleted file mode 100644 index 08ef357ab81..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_140.RULE b/src/licensedcode/data/rules/lgpl-2.1_140.RULE index 04c16bba660..7453ba1b231 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_140.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_140.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_140.yml b/src/licensedcode/data/rules/lgpl-2.1_140.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_141.RULE b/src/licensedcode/data/rules/lgpl-2.1_141.RULE index 0bd8b08ab42..337c792bf19 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_141.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_141.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_141.yml b/src/licensedcode/data/rules/lgpl-2.1_141.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_142.RULE b/src/licensedcode/data/rules/lgpl-2.1_142.RULE index 714542f43e2..e138d20e93f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_142.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_142.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LGPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_142.yml b/src/licensedcode/data/rules/lgpl-2.1_142.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_143.RULE b/src/licensedcode/data/rules/lgpl-2.1_143.RULE index 01a1cd15b9a..4db61420eb6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_143.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_143.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - doc/lgpl-2.1.txt +--- + Licensed under the terms of the GNU Lesser General Public License 2.1 - (see doc/lgpl-2.1.txt for the full terms of this license) + (see doc/lgpl-2.1.txt for the full terms of this license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_143.yml b/src/licensedcode/data/rules/lgpl-2.1_143.yml deleted file mode 100644 index ab6505cacc7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_143.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - doc/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_144.RULE b/src/licensedcode/data/rules/lgpl-2.1_144.RULE index c54335d64cb..51bc330be09 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_144.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_144.RULE @@ -1 +1,9 @@ - Licensed under the terms of the GNU Lesser General Public License 2.1 +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - doc/lgpl-2.1.txt +--- + + Licensed under the terms of the GNU Lesser General Public License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_144.yml b/src/licensedcode/data/rules/lgpl-2.1_144.yml deleted file mode 100644 index ab6505cacc7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_144.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - doc/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_145.RULE b/src/licensedcode/data/rules/lgpl-2.1_145.RULE index c95bba1e7cf..41a53b1b46b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_145.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_145.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/lgpl-v2.1 +--- + https://choosealicense.com/licenses/lgpl-v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_145.yml b/src/licensedcode/data/rules/lgpl-2.1_145.yml deleted file mode 100644 index b587f5f9137..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_145.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/lgpl-v2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_146.RULE b/src/licensedcode/data/rules/lgpl-2.1_146.RULE index 42cf7712d1e..eeeea52e5b3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_146.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_146.RULE @@ -1 +1,9 @@ -http://choosealicense.com/licenses/lgpl-v2.1 +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/lgpl-v2.1 +--- + +http://choosealicense.com/licenses/lgpl-v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_146.yml b/src/licensedcode/data/rules/lgpl-2.1_146.yml deleted file mode 100644 index 20d1b421a72..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_146.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/lgpl-v2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_147.RULE b/src/licensedcode/data/rules/lgpl-2.1_147.RULE index 49b848a75d0..6799b1fcaec 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_147.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_147.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://mockablewebsecurity.codeplex.com/license +--- + http://mockablewebsecurity.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_147.yml b/src/licensedcode/data/rules/lgpl-2.1_147.yml deleted file mode 100644 index 93100a84d1f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_147.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://mockablewebsecurity.codeplex.com/license diff --git a/src/licensedcode/data/rules/lgpl-2.1_148.RULE b/src/licensedcode/data/rules/lgpl-2.1_148.RULE index fb68ffece81..65c8d3d9a2a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_148.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_148.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://pwmis.codeplex.com/license +--- + http://pwmis.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_148.yml b/src/licensedcode/data/rules/lgpl-2.1_148.yml deleted file mode 100644 index d773b962496..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_148.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://pwmis.codeplex.com/license diff --git a/src/licensedcode/data/rules/lgpl-2.1_149.RULE b/src/licensedcode/data/rules/lgpl-2.1_149.RULE index 74e30c8cdfe..4ce65c26518 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_149.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_149.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://directoryinfoex.codeplex.com/license +--- + https://directoryinfoex.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_149.yml b/src/licensedcode/data/rules/lgpl-2.1_149.yml deleted file mode 100644 index 5efd2b00877..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_149.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://directoryinfoex.codeplex.com/license diff --git a/src/licensedcode/data/rules/lgpl-2.1_15.RULE b/src/licensedcode/data/rules/lgpl-2.1_15.RULE index 52c0cefc786..2c65643c951 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_15.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_15.RULE @@ -1 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: TinyMCE license url +ignorable_urls: + - http://tinymce.moxiecode.com/license +--- + http://tinymce.moxiecode.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_15.yml b/src/licensedcode/data/rules/lgpl-2.1_15.yml deleted file mode 100644 index 74b8260ef1f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_15.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: TinyMCE license url -ignorable_urls: - - http://tinymce.moxiecode.com/license diff --git a/src/licensedcode/data/rules/lgpl-2.1_150.RULE b/src/licensedcode/data/rules/lgpl-2.1_150.RULE index 63f19dc1475..129ed170e74 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_150.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_150.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +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. +# the GNU Lesser General Public License version 2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_150.yml b/src/licensedcode/data/rules/lgpl-2.1_150.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_151.RULE b/src/licensedcode/data/rules/lgpl-2.1_151.RULE index fd9cebc4e6c..393b7ab90bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_151.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_151.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/lgpl-2.1 +--- + https://choosealicense.com/licenses/lgpl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_151.yml b/src/licensedcode/data/rules/lgpl-2.1_151.yml deleted file mode 100644 index 91adc600c2c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_151.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/lgpl-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_152.RULE b/src/licensedcode/data/rules/lgpl-2.1_152.RULE index af354e3b2ec..ba25b12bb18 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_152.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_152.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/lgpl-2.1 +--- + http://choosealicense.com/licenses/lgpl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_152.yml b/src/licensedcode/data/rules/lgpl-2.1_152.yml deleted file mode 100644 index ae34de9fbd2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_152.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/lgpl-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_153.RULE b/src/licensedcode/data/rules/lgpl-2.1_153.RULE index ccd03318669..8475b425815 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_153.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_153.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + 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; }} +it 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_153.yml b/src/licensedcode/data/rules/lgpl-2.1_153.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_154.RULE b/src/licensedcode/data/rules/lgpl-2.1_154.RULE index 63e58186050..32b6172dfe3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_154.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_154.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: LGPL-2.1 On Debian systems the full text of the GNU LGPL v2.1 can be found in the `/usr/share/common-licenses/LGPL-2.1' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_154.yml b/src/licensedcode/data/rules/lgpl-2.1_154.yml deleted file mode 100644 index 63b455da64d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_154.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_155.RULE b/src/licensedcode/data/rules/lgpl-2.1_155.RULE index 6392181bdde..c6de1f16164 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_155.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_155.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems the full text of the GNU LGPL v2.1 can be found in the `/usr/share/common-licenses/LGPL-2.1' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_155.yml b/src/licensedcode/data/rules/lgpl-2.1_155.yml deleted file mode 100644 index 63b455da64d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_156.RULE b/src/licensedcode/data/rules/lgpl-2.1_156.RULE index d92116f8f0d..7833f537cdc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_156.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_156.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_156.yml b/src/licensedcode/data/rules/lgpl-2.1_156.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_157.RULE b/src/licensedcode/data/rules/lgpl-2.1_157.RULE index 2e9e80ee4d6..e5926433f3d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_157.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_157.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + portions licensed under the GNU lesser General Public License Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_157.yml b/src/licensedcode/data/rules/lgpl-2.1_157.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_158.RULE b/src/licensedcode/data/rules/lgpl-2.1_158.RULE index 08deca8c284..26e63ab5662 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_158.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_158.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU lesser General Public License Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_158.yml b/src/licensedcode/data/rules/lgpl-2.1_158.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_159.RULE b/src/licensedcode/data/rules/lgpl-2.1_159.RULE index 8bb684b3730..73cb199d750 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_159.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_159.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + software is released under the GNU lesser General Public License Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_159.yml b/src/licensedcode/data/rules/lgpl-2.1_159.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_16.RULE b/src/licensedcode/data/rules/lgpl-2.1_16.RULE index 212dc4d1110..a335e71ba1c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_16.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_16.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_16.yml b/src/licensedcode/data/rules/lgpl-2.1_16.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_16.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_160.RULE b/src/licensedcode/data/rules/lgpl-2.1_160.RULE index 5a2a664492e..cbc7b6a5fd4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_160.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_160.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + released under the GNU lesser General Public License Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_160.yml b/src/licensedcode/data/rules/lgpl-2.1_160.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_161.RULE b/src/licensedcode/data/rules/lgpl-2.1_161.RULE index 2081a9de6a0..2df666a4a95 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_161.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_161.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + under the GNU lesser General Public License Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_161.yml b/src/licensedcode/data/rules/lgpl-2.1_161.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_162.RULE b/src/licensedcode/data/rules/lgpl-2.1_162.RULE index 0ccd5f368bb..a6927a5cea2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_162.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_162.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + lesser General Public License Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_162.yml b/src/licensedcode/data/rules/lgpl-2.1_162.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_163.RULE b/src/licensedcode/data/rules/lgpl-2.1_163.RULE index 8b8e6bcf8fc..40beaef3527 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_163.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_163.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_163.yml b/src/licensedcode/data/rules/lgpl-2.1_163.yml deleted file mode 100644 index 32acceb4ca6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_164.RULE b/src/licensedcode/data/rules/lgpl-2.1_164.RULE index b31f1a16dac..c67ac19b6f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_164.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_164.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.de.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_164.yml b/src/licensedcode/data/rules/lgpl-2.1_164.yml deleted file mode 100644 index 5383373791c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.de.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_165.RULE b/src/licensedcode/data/rules/lgpl-2.1_165.RULE index 6bbae2fb807..0b0a8b3ec8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_165.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_165.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.fr.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_165.yml b/src/licensedcode/data/rules/lgpl-2.1_165.yml deleted file mode 100644 index 1a654316a57..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.fr.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_166.RULE b/src/licensedcode/data/rules/lgpl-2.1_166.RULE index cb119788215..ed7ede511a7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_166.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_166.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.ja.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_166.yml b/src/licensedcode/data/rules/lgpl-2.1_166.yml deleted file mode 100644 index 318dcd90e70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.ja.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_167.RULE b/src/licensedcode/data/rules/lgpl-2.1_167.RULE index 8e4b4837d28..5afd70fdaf8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_167.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_167.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.pt-br.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_167.yml b/src/licensedcode/data/rules/lgpl-2.1_167.yml deleted file mode 100644 index 51c487f83c6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.pt-br.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_168.RULE b/src/licensedcode/data/rules/lgpl-2.1_168.RULE index eb906e63e15..5a45755bbd2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_168.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_168.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.ru.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_168.yml b/src/licensedcode/data/rules/lgpl-2.1_168.yml deleted file mode 100644 index 4bf47a9bc56..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.ru.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_169.RULE b/src/licensedcode/data/rules/lgpl-2.1_169.RULE index 129451bf619..7f1f8f4a8b1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_169.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_169.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.uk.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_169.yml b/src/licensedcode/data/rules/lgpl-2.1_169.yml deleted file mode 100644 index c1cfdc81a8f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.uk.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_17.RULE b/src/licensedcode/data/rules/lgpl-2.1_17.RULE index 3b6fea6d71f..fb427af633f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_17.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License v2.1only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_17.yml b/src/licensedcode/data/rules/lgpl-2.1_17.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_170.RULE b/src/licensedcode/data/rules/lgpl-2.1_170.RULE index fb6c411880b..0c956ba19e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_170.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_170.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.de.html +--- + https://www.gnu.org/licenses/lgpl-2.1.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_170.yml b/src/licensedcode/data/rules/lgpl-2.1_170.yml deleted file mode 100644 index 7c92a3e410b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_170.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.de.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_171.RULE b/src/licensedcode/data/rules/lgpl-2.1_171.RULE index 3855ba21703..4df13ae416a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_171.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_171.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.fr.html +--- + https://www.gnu.org/licenses/lgpl-2.1.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_171.yml b/src/licensedcode/data/rules/lgpl-2.1_171.yml deleted file mode 100644 index ce020932c18..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_171.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.fr.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_172.RULE b/src/licensedcode/data/rules/lgpl-2.1_172.RULE index 91625aafb8b..cec98c094be 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_172.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_172.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.ja.html +--- + https://www.gnu.org/licenses/lgpl-2.1.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_172.yml b/src/licensedcode/data/rules/lgpl-2.1_172.yml deleted file mode 100644 index f60498eb250..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.ja.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_173.RULE b/src/licensedcode/data/rules/lgpl-2.1_173.RULE index 5be5f7d5307..3def8b12f76 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_173.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_173.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.pt-br.html +--- + https://www.gnu.org/licenses/lgpl-2.1.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_173.yml b/src/licensedcode/data/rules/lgpl-2.1_173.yml deleted file mode 100644 index 2ff9d936091..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_173.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.pt-br.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_174.RULE b/src/licensedcode/data/rules/lgpl-2.1_174.RULE index 429a8f275df..51600202805 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_174.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_174.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.ru.html +--- + https://www.gnu.org/licenses/lgpl-2.1.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_174.yml b/src/licensedcode/data/rules/lgpl-2.1_174.yml deleted file mode 100644 index 69b07fcd6dc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_174.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.ru.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_175.RULE b/src/licensedcode/data/rules/lgpl-2.1_175.RULE index 31d4e2cf428..4fa3cccb17e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_175.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_175.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.uk.html +--- + https://www.gnu.org/licenses/lgpl-2.1.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_175.yml b/src/licensedcode/data/rules/lgpl-2.1_175.yml deleted file mode 100644 index 1f955fdafe9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_175.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.uk.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_176.RULE b/src/licensedcode/data/rules/lgpl-2.1_176.RULE index be77c953830..c9ae43999ee 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_176.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_176.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + GNU Lesser General Public License 2.1 (LGPL) link: http://creativecommons.org/licenses/LGPL/2.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_176.yml b/src/licensedcode/data/rules/lgpl-2.1_176.yml deleted file mode 100644 index 1c0a3b5a742..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_176.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_177.RULE b/src/licensedcode/data/rules/lgpl-2.1_177.RULE index 731948ca3d0..d46578c1991 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_177.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_177.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + license: LGPL-2.1 license link: http://creativecommons.org/licenses/LGPL/2.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_177.yml b/src/licensedcode/data/rules/lgpl-2.1_177.yml deleted file mode 100644 index 1c0a3b5a742..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_177.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_178.RULE b/src/licensedcode/data/rules/lgpl-2.1_178.RULE index 39a114e8b37..2b41d1b0a1c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_178.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_178.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU GPLv2 license, LGPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_178.yml b/src/licensedcode/data/rules/lgpl-2.1_178.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_179.RULE b/src/licensedcode/data/rules/lgpl-2.1_179.RULE index 7e2c9806b3b..8bbf155b798 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_179.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_179.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LGPLv 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_179.yml b/src/licensedcode/data/rules/lgpl-2.1_179.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_18.RULE b/src/licensedcode/data/rules/lgpl-2.1_18.RULE index c8dddc71340..1298cc8d58b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_18.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_18.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +--- + http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_18.yml b/src/licensedcode/data/rules/lgpl-2.1_18.yml deleted file mode 100644 index 451023210e3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_180.RULE b/src/licensedcode/data/rules/lgpl-2.1_180.RULE index 29d9aec97c8..7d4b0c32be9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_180.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_180.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /licenses/lgpl-2.1.txt +--- + /licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_180.yml b/src/licensedcode/data/rules/lgpl-2.1_180.yml deleted file mode 100644 index 475133d463a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_180.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_181.RULE b/src/licensedcode/data/rules/lgpl-2.1_181.RULE index 22f04eb47c3..53b674858de 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_181.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_181.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_181.yml b/src/licensedcode/data/rules/lgpl-2.1_181.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_181.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_182.RULE b/src/licensedcode/data/rules/lgpl-2.1_182.RULE index 958bdd0a348..1986225cb51 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_182.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_182.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_182.yml b/src/licensedcode/data/rules/lgpl-2.1_182.yml deleted file mode 100644 index 4c05b4ddd57..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_183.RULE b/src/licensedcode/data/rules/lgpl-2.1_183.RULE index b313b4a0954..1045645847c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_183.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_183.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + Licensed under the LGPL: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_183.yml b/src/licensedcode/data/rules/lgpl-2.1_183.yml deleted file mode 100644 index 7ad7e1152b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_183.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_184.RULE b/src/licensedcode/data/rules/lgpl-2.1_184.RULE index 5b6eeb2e133..c3b729d271b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_184.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_184.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_184.yml b/src/licensedcode/data/rules/lgpl-2.1_184.yml deleted file mode 100644 index 35828427231..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_184.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_185.RULE b/src/licensedcode/data/rules/lgpl-2.1_185.RULE index 348865253fd..8ab232938a8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_185.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_185.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + License This package is licensed under the LGPL-2.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_185.yml b/src/licensedcode/data/rules/lgpl-2.1_185.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_186.RULE b/src/licensedcode/data/rules/lgpl-2.1_186.RULE index cad3023a3dd..0050ab3243a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_186.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_186.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPL +--- + licensed under Version 2.1 of the GNU Lesser General Public License (see COPYING.LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_186.yml b/src/licensedcode/data/rules/lgpl-2.1_186.yml deleted file mode 100644 index 30fc8c869a0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_186.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1_187.RULE b/src/licensedcode/data/rules/lgpl-2.1_187.RULE index 2ea172506dc..07960a77fca 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_187.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_187.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under Version 2.1 of the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_187.yml b/src/licensedcode/data/rules/lgpl-2.1_187.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_188.RULE b/src/licensedcode/data/rules/lgpl-2.1_188.RULE index 002fb2d56a8..88ee2a91cd0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_188.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_188.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Version 2.1 of the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_188.yml b/src/licensedcode/data/rules/lgpl-2.1_188.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_189.RULE b/src/licensedcode/data/rules/lgpl-2.1_189.RULE index 66958138c58..081ad3836f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_189.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_189.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LICENSE IS BEING CHANGED TO LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_189.yml b/src/licensedcode/data/rules/lgpl-2.1_189.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_19.RULE b/src/licensedcode/data/rules/lgpl-2.1_19.RULE index ea0676b3d9c..1d54f4c6c6f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_19.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_19.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +notes: is licensed under the Lesser GNU Public License v2.1. +--- + is licensed under the Lesser GNU Public License v2.1. A copy of the LGPL license is available \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_19.yml b/src/licensedcode/data/rules/lgpl-2.1_19.yml deleted file mode 100644 index 183320ad194..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -notes: is licensed under the Lesser GNU Public License v2.1. diff --git a/src/licensedcode/data/rules/lgpl-2.1_190.RULE b/src/licensedcode/data/rules/lgpl-2.1_190.RULE index e200c0d07f4..f824b7bf3b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_190.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_190.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_190.yml b/src/licensedcode/data/rules/lgpl-2.1_190.yml deleted file mode 100644 index c21c00ee4a1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_190.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_191.RULE b/src/licensedcode/data/rules/lgpl-2.1_191.RULE index 0883263723d..72a17271144 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_191.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_191.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + license = "LGPLv2.1", \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_191.yml b/src/licensedcode/data/rules/lgpl-2.1_191.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_192.RULE b/src/licensedcode/data/rules/lgpl-2.1_192.RULE index 30148da7449..2c7f0075d31 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_192.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_192.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + licence = "LGPLv2.1", \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_192.yml b/src/licensedcode/data/rules/lgpl-2.1_192.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_193.RULE b/src/licensedcode/data/rules/lgpl-2.1_193.RULE index f80e0af4286..b5e6b59f193 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_193.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_193.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation: diff --git a/src/licensedcode/data/rules/lgpl-2.1_193.yml b/src/licensedcode/data/rules/lgpl-2.1_193.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_193.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_194.RULE b/src/licensedcode/data/rules/lgpl-2.1_194.RULE index 43f647aa006..01fefaa7d8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_194.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_194.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + * 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: diff --git a/src/licensedcode/data/rules/lgpl-2.1_194.yml b/src/licensedcode/data/rules/lgpl-2.1_194.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_195.RULE b/src/licensedcode/data/rules/lgpl-2.1_195.RULE index e1f03bb7a9f..c84d128a273 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_195.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_195.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + * 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: diff --git a/src/licensedcode/data/rules/lgpl-2.1_195.yml b/src/licensedcode/data/rules/lgpl-2.1_195.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_196.RULE b/src/licensedcode/data/rules/lgpl-2.1_196.RULE index 21a6f26e5c7..b1e13f5926e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_196.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_196.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 95 +notes: this notice starts clearly as an LGPL but ends as GPL and has therefore some ambiguity. +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation: diff --git a/src/licensedcode/data/rules/lgpl-2.1_196.yml b/src/licensedcode/data/rules/lgpl-2.1_196.yml deleted file mode 100644 index b6f5380480b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_196.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 95 -notes: this notice starts clearly as an LGPL but ends as GPL and has therefore some ambiguity. diff --git a/src/licensedcode/data/rules/lgpl-2.1_197.RULE b/src/licensedcode/data/rules/lgpl-2.1_197.RULE index 2f4b6446e8e..587c0e3fdae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_197.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_197.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + * 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: diff --git a/src/licensedcode/data/rules/lgpl-2.1_197.yml b/src/licensedcode/data/rules/lgpl-2.1_197.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_197.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_198.RULE b/src/licensedcode/data/rules/lgpl-2.1_198.RULE index 4db7bead34a..f9c4569f1b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_198.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_198.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation: diff --git a/src/licensedcode/data/rules/lgpl-2.1_198.yml b/src/licensedcode/data/rules/lgpl-2.1_198.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_199.RULE b/src/licensedcode/data/rules/lgpl-2.1_199.RULE index ee7ffd1f4f7..c9accee0546 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_199.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_199.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + * This code is licensed under LGPL 2.1 * http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_199.yml b/src/licensedcode/data/rules/lgpl-2.1_199.yml deleted file mode 100644 index abd2750cb15..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_199.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml.RULE b/src/licensedcode/data/rules/lgpl-2.1_1_xml.RULE index 09a484b13f4..f4aee629fc5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1_xml.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: from a maven POM +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml.yml b/src/licensedcode/data/rules/lgpl-2.1_1_xml.yml deleted file mode 100644 index 19cf86de11f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: from a maven POM -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml2.RULE b/src/licensedcode/data/rules/lgpl-2.1_1_xml2.RULE index d6f496d1095..b6f624e6cfa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1_xml2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: from a maven POM +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, Version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml2.yml b/src/licensedcode/data/rules/lgpl-2.1_1_xml2.yml deleted file mode 100644 index b595f59b007..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: from a maven POM -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml3.RULE b/src/licensedcode/data/rules/lgpl-2.1_1_xml3.RULE index ea55c6ab027..6291652da0f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1_xml3.RULE @@ -1,4 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: from a maven POM +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, version 2.1 - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt + http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml3.yml b/src/licensedcode/data/rules/lgpl-2.1_1_xml3.yml deleted file mode 100644 index 19cf86de11f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: from a maven POM -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml4.RULE b/src/licensedcode/data/rules/lgpl-2.1_1_xml4.RULE index 78e4c72284c..500ee6a7b1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1_xml4.RULE @@ -1,4 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: from a maven POM +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, Version 2.1 - http://www.gnu.org/licenses/lgpl-2.1.txt + http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml4.yml b/src/licensedcode/data/rules/lgpl-2.1_1_xml4.yml deleted file mode 100644 index b595f59b007..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: from a maven POM -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_2.RULE index b3d2289c5db..1f3813cb651 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LICENSE INFORMATION: LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_2.yml b/src/licensedcode/data/rules/lgpl-2.1_2.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_20.RULE b/src/licensedcode/data/rules/lgpl-2.1_20.RULE index 6ec51c5e9fc..d1a771b178e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_20.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_20.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/lgpl-2.1.php +--- + http://opensource.org/licenses/lgpl-2.1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_20.yml b/src/licensedcode/data/rules/lgpl-2.1_20.yml deleted file mode 100644 index 4290cf50ad6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/lgpl-2.1.php diff --git a/src/licensedcode/data/rules/lgpl-2.1_200.RULE b/src/licensedcode/data/rules/lgpl-2.1_200.RULE index 7cc95682d84..36d96e1f13b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_200.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_200.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_200.yml b/src/licensedcode/data/rules/lgpl-2.1_200.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_201.RULE b/src/licensedcode/data/rules/lgpl-2.1_201.RULE index 31cc11c30f3..f402518251d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_201.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_201.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + under LGPL2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_201.yml b/src/licensedcode/data/rules/lgpl-2.1_201.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_202.RULE b/src/licensedcode/data/rules/lgpl-2.1_202.RULE index d55df7f5d09..e0eb640f3af 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_202.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_202.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LGPL2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_202.yml b/src/licensedcode/data/rules/lgpl-2.1_202.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_203.RULE b/src/licensedcode/data/rules/lgpl-2.1_203.RULE index b2509d5fb98..4e4bb5aa6d0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_203.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_203.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPLv2.1 +--- + Read the file `COPYING.LGPLv2.1` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_203.yml b/src/licensedcode/data/rules/lgpl-2.1_203.yml deleted file mode 100644 index 90071d5b98d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_203.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPLv2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_204.RULE b/src/licensedcode/data/rules/lgpl-2.1_204.RULE index 0bae66bd515..25d0c09eb05 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_204.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_204.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPLv2.1 +--- + COPYING.LGPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_204.yml b/src/licensedcode/data/rules/lgpl-2.1_204.yml deleted file mode 100644 index 90071d5b98d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_204.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPLv2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_205.RULE b/src/licensedcode/data/rules/lgpl-2.1_205.RULE index 3251a585621..7be30b54ffe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_205.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_205.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/testdata/findbugs_license.txt +--- + [findbugs]: third_party/testdata/findbugs_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_205.yml b/src/licensedcode/data/rules/lgpl-2.1_205.yml deleted file mode 100644 index 6ef8c3ad787..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_205.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/testdata/findbugs_license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_206.RULE b/src/licensedcode/data/rules/lgpl-2.1_206.RULE index 0469057a061..69cdf57bce1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_206.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_206.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/testdata/findbugs_license.txt +--- + License: LGPL 2.1 ([license/third_party/testdata/findbugs_license.txt][findbugs]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_206.yml b/src/licensedcode/data/rules/lgpl-2.1_206.yml deleted file mode 100644 index 5819e7b8d86..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_206.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/testdata/findbugs_license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_207.RULE b/src/licensedcode/data/rules/lgpl-2.1_207.RULE index 5f180286889..472eb5cca59 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_207.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_207.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + LGPL 2.1 https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_207.yml b/src/licensedcode/data/rules/lgpl-2.1_207.yml deleted file mode 100644 index 32acceb4ca6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_208.RULE b/src/licensedcode/data/rules/lgpl-2.1_208.RULE index aa94ae08794..b6f1fc3e144 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_208.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_208.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_208.yml b/src/licensedcode/data/rules/lgpl-2.1_208.yml deleted file mode 100644 index 1c629e5cc1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_208.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_209.RULE b/src/licensedcode/data/rules/lgpl-2.1_209.RULE index 3b20b8a0f48..31ddcbad549 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_209.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_209.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_209.yml b/src/licensedcode/data/rules/lgpl-2.1_209.yml deleted file mode 100644 index 1c629e5cc1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_209.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_21.RULE b/src/licensedcode/data/rules/lgpl-2.1_21.RULE index dede43579cd..a4cb03f0391 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_21.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_21.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_21.yml b/src/licensedcode/data/rules/lgpl-2.1_21.yml deleted file mode 100644 index fbc2c75f353..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_210.RULE b/src/licensedcode/data/rules/lgpl-2.1_210.RULE index 8c388470e31..70887b3b172 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_210.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_210.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_210.yml b/src/licensedcode/data/rules/lgpl-2.1_210.yml deleted file mode 100644 index 1c629e5cc1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_210.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_211.RULE b/src/licensedcode/data/rules/lgpl-2.1_211.RULE index 24d853c5ef2..36e905451ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_211.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_211.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/LGPL-2.1 +--- + `LGPL-2.1` - [Lesser General Public License 2.1](http://opensource.org/licenses/LGPL-2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_211.yml b/src/licensedcode/data/rules/lgpl-2.1_211.yml deleted file mode 100644 index 3b7cc5d52b9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_211.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_212.RULE b/src/licensedcode/data/rules/lgpl-2.1_212.RULE index 91cae3bd85b..12ba15f0bd4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_212.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_212.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.obj-sys.com/open/lgpl2.html +--- + http://www.obj-sys.com/open/lgpl2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_212.yml b/src/licensedcode/data/rules/lgpl-2.1_212.yml deleted file mode 100644 index f0bc5bdaed2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_212.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.obj-sys.com/open/lgpl2.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_213.RULE b/src/licensedcode/data/rules/lgpl-2.1_213.RULE index b2160c689de..553cfc14ac3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_213.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_213.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://www.obj-sys.com/open/lgpl2.html +--- + https://www.obj-sys.com/open/lgpl2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_213.yml b/src/licensedcode/data/rules/lgpl-2.1_213.yml deleted file mode 100644 index 26e9decb559..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_213.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://www.obj-sys.com/open/lgpl2.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_214.RULE b/src/licensedcode/data/rules/lgpl-2.1_214.RULE index 3b956135574..e39441e6c60 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_214.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_214.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + licensed under the GNU Lesser General Public License (ILGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_214.yml b/src/licensedcode/data/rules/lgpl-2.1_214.yml deleted file mode 100644 index 06f09fa0f53..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_214.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_215.RULE b/src/licensedcode/data/rules/lgpl-2.1_215.RULE index 0d8232ebefa..18164042a49 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_215.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_215.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + open source software released under the `GNU LGPLv2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_215.yml b/src/licensedcode/data/rules/lgpl-2.1_215.yml deleted file mode 100644 index 7ad7e1152b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_215.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_216.RULE b/src/licensedcode/data/rules/lgpl-2.1_216.RULE index 9d77e0988ff..5b86814d4b4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_216.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_216.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + software released under the `GNU LGPLv2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_216.yml b/src/licensedcode/data/rules/lgpl-2.1_216.yml deleted file mode 100644 index 7ad7e1152b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_216.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_217.RULE b/src/licensedcode/data/rules/lgpl-2.1_217.RULE index 5f4fa0c37c0..b300b8a9ef3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_217.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_217.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + released under the `GNU LGPLv2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_217.yml b/src/licensedcode/data/rules/lgpl-2.1_217.yml deleted file mode 100644 index 7ad7e1152b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_217.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_218.RULE b/src/licensedcode/data/rules/lgpl-2.1_218.RULE index 050d35d1154..f7484c1a409 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_218.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_218.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU LGPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_218.yml b/src/licensedcode/data/rules/lgpl-2.1_218.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_219.RULE b/src/licensedcode/data/rules/lgpl-2.1_219.RULE index c5a1ae806c5..cccf14e5fdc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_219.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_219.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the OSI-approved GNU LGPLv2.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_219.yml b/src/licensedcode/data/rules/lgpl-2.1_219.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_22.RULE b/src/licensedcode/data/rules/lgpl-2.1_22.RULE index 67a1a203f3a..2a56b4ac30c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_22.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_22.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License 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_22.yml b/src/licensedcode/data/rules/lgpl-2.1_22.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_22.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_220.RULE b/src/licensedcode/data/rules/lgpl-2.1_220.RULE index 80f4c363505..10b18691915 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_220.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_220.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + Licensed under the GNU LGPL v2.1 - http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_220.yml b/src/licensedcode/data/rules/lgpl-2.1_220.yml deleted file mode 100644 index aa23f764d72..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_221.RULE b/src/licensedcode/data/rules/lgpl-2.1_221.RULE index ee0d34a1abc..3868a0d4e49 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_221.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_221.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_221.yml b/src/licensedcode/data/rules/lgpl-2.1_221.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_222.RULE b/src/licensedcode/data/rules/lgpl-2.1_222.RULE index e2f0888cf30..0c3d79f4103 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_222.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_222.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + % This software may be modified and distributed under the terms of the % GNU Lesser General Public License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_222.yml b/src/licensedcode/data/rules/lgpl-2.1_222.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_223.RULE b/src/licensedcode/data/rules/lgpl-2.1_223.RULE index d6d8a513a55..bf48966c3d1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_223.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_223.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_223.yml b/src/licensedcode/data/rules/lgpl-2.1_223.yml deleted file mode 100644 index a553574c325..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_223.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_224.RULE b/src/licensedcode/data/rules/lgpl-2.1_224.RULE index a21d1754801..c538f34e10e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_224.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_224.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Released under the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_224.yml b/src/licensedcode/data/rules/lgpl-2.1_224.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_225.RULE b/src/licensedcode/data/rules/lgpl-2.1_225.RULE index 73c0a3feb5e..b3ceb8196c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_225.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_225.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/LGPL-2.1;md5=1a6d268fd218675ffea8be556788b780" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_225.yml b/src/licensedcode/data/rules/lgpl-2.1_225.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_226.RULE b/src/licensedcode/data/rules/lgpl-2.1_226.RULE index cdc90ce3d92..9509619b38a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_226.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_226.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 99 +--- + md5=1a6d268fd218675ffea8be556788b780" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_226.yml b/src/licensedcode/data/rules/lgpl-2.1_226.yml deleted file mode 100644 index a7c67247a89..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.1_227.RULE b/src/licensedcode/data/rules/lgpl-2.1_227.RULE index 1ff2f633522..36afb4f1340 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_227.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_227.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +notes: typo in license id +--- + GLPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_227.yml b/src/licensedcode/data/rules/lgpl-2.1_227.yml deleted file mode 100644 index 5295883222d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_227.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 -notes: typo in license id diff --git a/src/licensedcode/data/rules/lgpl-2.1_228.RULE b/src/licensedcode/data/rules/lgpl-2.1_228.RULE index 2f22cfb764b..8ce81af621a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_228.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_228.RULE @@ -1,3 +1,17 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +relevance: 99 +notes: there is one typo with "authoried" instead of "authorized" and that text variant is frequent + enough +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_228.yml b/src/licensedcode/data/rules/lgpl-2.1_228.yml deleted file mode 100644 index c78f693be85..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_228.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -relevance: 99 -notes: there is one typo with "authoried" instead of "authorized" and that text variant is frequent - enough -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_229.RULE b/src/licensedcode/data/rules/lgpl-2.1_229.RULE index 0bef8061bc6..752678bfc1b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_229.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_229.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + * 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, June 1999 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_229.yml b/src/licensedcode/data/rules/lgpl-2.1_229.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_23.RULE b/src/licensedcode/data/rules/lgpl-2.1_23.RULE index 069f371f9ea..e8b82a69519 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_23.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_23.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +notes: lgpl 2.1 alternative +ignorable_copyrights: + - Copyright (c) Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_23.yml b/src/licensedcode/data/rules/lgpl-2.1_23.yml deleted file mode 100644 index 2a75786944a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_23.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -notes: lgpl 2.1 alternative -ignorable_copyrights: - - Copyright (c) Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_230.RULE b/src/licensedcode/data/rules/lgpl-2.1_230.RULE index 4e412c73758..84287314b47 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_230.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_230.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_230.yml b/src/licensedcode/data/rules/lgpl-2.1_230.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_231.RULE b/src/licensedcode/data/rules/lgpl-2.1_231.RULE index cfbadadc1e0..44ed5f955b1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_231.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_231.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_231.yml b/src/licensedcode/data/rules/lgpl-2.1_231.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_232.RULE b/src/licensedcode/data/rules/lgpl-2.1_232.RULE index 3ab81267c5d..b2358433ab0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_232.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_232.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL v2.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_232.yml b/src/licensedcode/data/rules/lgpl-2.1_232.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_232.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_233.RULE b/src/licensedcode/data/rules/lgpl-2.1_233.RULE index 5a16cbebc1a..a7714e6faed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_233.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_233.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPLv2.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_233.yml b/src/licensedcode/data/rules/lgpl-2.1_233.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_234.RULE b/src/licensedcode/data/rules/lgpl-2.1_234.RULE index a318b2ac668..be57f89d988 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_234.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_234.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_234.yml b/src/licensedcode/data/rules/lgpl-2.1_234.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_235.RULE b/src/licensedcode/data/rules/lgpl-2.1_235.RULE index 4e75a8e5ebc..3fa319e6db2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_235.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_235.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_235.yml b/src/licensedcode/data/rules/lgpl-2.1_235.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_235.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_236.RULE b/src/licensedcode/data/rules/lgpl-2.1_236.RULE index ba45b3181d9..1ff5a9d3fc5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_236.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_236.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL 2.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_236.yml b/src/licensedcode/data/rules/lgpl-2.1_236.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_236.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_237.RULE b/src/licensedcode/data/rules/lgpl-2.1_237.RULE index bbca3fe634e..1c9387b0d81 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_237.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_237.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL2.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_237.yml b/src/licensedcode/data/rules/lgpl-2.1_237.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_238.RULE b/src/licensedcode/data/rules/lgpl-2.1_238.RULE index 74a77644ef2..244c69e727a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_238.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_238.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + copyrighted software made available under Version 2.1 of the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_238.yml b/src/licensedcode/data/rules/lgpl-2.1_238.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_239.RULE b/src/licensedcode/data/rules/lgpl-2.1_239.RULE index 8e6ff93d19c..182c115bde2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_239.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_239.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License (LGPL) 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_239.yml b/src/licensedcode/data/rules/lgpl-2.1_239.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_24.RULE b/src/licensedcode/data/rules/lgpl-2.1_24.RULE index 5efec5b0dc3..9cc031af109 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_24.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_24.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + is licensed under the Lesser GNU Public License v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_24.yml b/src/licensedcode/data/rules/lgpl-2.1_24.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_240.RULE b/src/licensedcode/data/rules/lgpl-2.1_240.RULE index ca9a2229d68..6e85436a13b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_240.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_240.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public licence (LGPL) 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_240.yml b/src/licensedcode/data/rules/lgpl-2.1_240.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_241.RULE b/src/licensedcode/data/rules/lgpl-2.1_241.RULE index b7e3f08ab09..c6f016cb255 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_241.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_241.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Oracle elects to use only the GNU Lesser General Public License version 2.1 (LGPL) for any software where a choice of LGPL/GPL license versions are made available with the language indicating that LGPLv2.1/GPLv2 or any later version diff --git a/src/licensedcode/data/rules/lgpl-2.1_241.yml b/src/licensedcode/data/rules/lgpl-2.1_241.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_242.RULE b/src/licensedcode/data/rules/lgpl-2.1_242.RULE index b83da4ba2ce..b288502a110 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_242.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_242.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + elects to use only the GNU Lesser General Public License version 2.1 (LGPL) for any software where a choice of LGPL/GPL license versions are made available with the language indicating that LGPLv2.1/GPLv2 or any later version diff --git a/src/licensedcode/data/rules/lgpl-2.1_242.yml b/src/licensedcode/data/rules/lgpl-2.1_242.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_243.RULE b/src/licensedcode/data/rules/lgpl-2.1_243.RULE index c28070377f6..f38b3c1a309 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_243.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_243.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Sun elects to use only the GNU Lesser General Public License version 2.1 (LGPL)/GNU General Public License version 2 (GPL) for any software where a choice of LGPL/GPL license versions are made available with the language diff --git a/src/licensedcode/data/rules/lgpl-2.1_243.yml b/src/licensedcode/data/rules/lgpl-2.1_243.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_243.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_244.RULE b/src/licensedcode/data/rules/lgpl-2.1_244.RULE index de2406f23fa..9023988a987 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_244.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_244.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://wiki.netbeans.org/DevFaqLgpl3rdPartySources +--- + ========================= LGPL-2.1 ========================= ------------------------------------------------------------ diff --git a/src/licensedcode/data/rules/lgpl-2.1_244.yml b/src/licensedcode/data/rules/lgpl-2.1_244.yml deleted file mode 100644 index 6807c5af7da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_244.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://wiki.netbeans.org/DevFaqLgpl3rdPartySources diff --git a/src/licensedcode/data/rules/lgpl-2.1_245.RULE b/src/licensedcode/data/rules/lgpl-2.1_245.RULE index a583ccbd16f..16b413dc680 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_245.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_245.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Released under the GNU Lesser General Public License (LGPL) v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_245.yml b/src/licensedcode/data/rules/lgpl-2.1_245.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_245.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_246.RULE b/src/licensedcode/data/rules/lgpl-2.1_246.RULE index 5d0186c7c35..ddadce3f572 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_246.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_246.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + open-source software and is released under the
GNU Lesser General Public License (LGPL) v2.1. The library can be further distributed and used in other diff --git a/src/licensedcode/data/rules/lgpl-2.1_246.yml b/src/licensedcode/data/rules/lgpl-2.1_246.yml deleted file mode 100644 index 2219e2d4c36..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_246.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_247.RULE b/src/licensedcode/data/rules/lgpl-2.1_247.RULE index 958801713a2..b132331c234 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_247.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_247.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Licensed under GNU LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_247.yml b/src/licensedcode/data/rules/lgpl-2.1_247.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_248.RULE b/src/licensedcode/data/rules/lgpl-2.1_248.RULE index a2516d1299d..e320249f41c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_248.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_248.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + License: LGPL-2.1 On Debian GNU/Linux systems, the complete text of the LGPL 2.1 license can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_248.yml b/src/licensedcode/data/rules/lgpl-2.1_248.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_249.RULE b/src/licensedcode/data/rules/lgpl-2.1_249.RULE index 1d4e0e8a3e0..f01ae07ba47 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_249.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_249.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of the LGPL 2.1 license can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_249.yml b/src/licensedcode/data/rules/lgpl-2.1_249.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_25.RULE b/src/licensedcode/data/rules/lgpl-2.1_25.RULE index 9fa96853508..b8d430ab6d6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_25.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + http://creativecommons.org/licenses/LGPL/2.1/ Creative Commons License http://i.creativecommons.org/l/LGPL/2.1/88x62.png diff --git a/src/licensedcode/data/rules/lgpl-2.1_25.yml b/src/licensedcode/data/rules/lgpl-2.1_25.yml deleted file mode 100644 index ef0e8bf3891..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_250.RULE b/src/licensedcode/data/rules/lgpl-2.1_250.RULE index 0d0c74ceed4..bfef8bb66a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_250.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_250.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licensed under the GNU Lesser General Public License v2.1 (the "License"); you may not use this file except in compliance with the License. The terms of the License are located in the COPYING file of this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_250.yml b/src/licensedcode/data/rules/lgpl-2.1_250.yml deleted file mode 100644 index 46c8f90d221..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_250.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1_251.RULE b/src/licensedcode/data/rules/lgpl-2.1_251.RULE index f788fbc432e..11ba1501426 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_251.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_251.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU Lesser General Public License v2.1 (the "License"); you may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_251.yml b/src/licensedcode/data/rules/lgpl-2.1_251.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_252.RULE b/src/licensedcode/data/rules/lgpl-2.1_252.RULE index 374d50d62c3..54cbdbd8bea 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_252.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_252.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Licensed under the GNU Lesser General Public License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_252.yml b/src/licensedcode/data/rules/lgpl-2.1_252.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_253.RULE b/src/licensedcode/data/rules/lgpl-2.1_253.RULE index 39da87af440..ccc0b36520a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_253.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_253.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + components licensed under LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_253.yml b/src/licensedcode/data/rules/lgpl-2.1_253.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_253.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_254.RULE b/src/licensedcode/data/rules/lgpl-2.1_254.RULE index 67d1d9c40ac..bd08c2da63c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_254.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_254.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + components licensed under LGPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_254.yml b/src/licensedcode/data/rules/lgpl-2.1_254.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_254.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_255.RULE b/src/licensedcode/data/rules/lgpl-2.1_255.RULE index a2f8b48b4fd..173ac789113 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_255.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_255.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + components licensed under LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_255.yml b/src/licensedcode/data/rules/lgpl-2.1_255.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_255.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_256.RULE b/src/licensedcode/data/rules/lgpl-2.1_256.RULE index d8f276dd1db..91a24bf0cd5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_256.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_256.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + components licensed under LGPL v 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_256.yml b/src/licensedcode/data/rules/lgpl-2.1_256.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_257.RULE b/src/licensedcode/data/rules/lgpl-2.1_257.RULE index 3a5b3fab05c..f67e8f717e0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_257.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_257.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_257.yml b/src/licensedcode/data/rules/lgpl-2.1_257.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_257.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_258.RULE b/src/licensedcode/data/rules/lgpl-2.1_258.RULE index 3a50a765209..4a93261e5b4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_258.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_258.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_258.yml b/src/licensedcode/data/rules/lgpl-2.1_258.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_259.RULE b/src/licensedcode/data/rules/lgpl-2.1_259.RULE index 63b61d5f17f..d53943018e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_259.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_259.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_259.yml b/src/licensedcode/data/rules/lgpl-2.1_259.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_26.RULE b/src/licensedcode/data/rules/lgpl-2.1_26.RULE index 5dfd5a69fb7..10425df909b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_26.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_26.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU Lesser General Public License Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 20 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -84,5 +95,4 @@ You should also get your employer (if you work as a programmer) or your school, Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. signature of Ty Coon, 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_26.yml b/src/licensedcode/data/rules/lgpl-2.1_26.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_26.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_260.RULE b/src/licensedcode/data/rules/lgpl-2.1_260.RULE index 4cf2691194e..6b3be913e08 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_260.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_260.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL v 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_260.yml b/src/licensedcode/data/rules/lgpl-2.1_260.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_261.RULE b/src/licensedcode/data/rules/lgpl-2.1_261.RULE index 18da0bea6ac..8dbc14824db 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_261.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_261.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public Licence, V 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_261.yml b/src/licensedcode/data/rules/lgpl-2.1_261.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_262.RULE b/src/licensedcode/data/rules/lgpl-2.1_262.RULE index eebc2c49cd4..f15ee3f2b6a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_262.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_262.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU lesser General Public Licence, V 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_262.yml b/src/licensedcode/data/rules/lgpl-2.1_262.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_263.RULE b/src/licensedcode/data/rules/lgpl-2.1_263.RULE index 1cf141e246c..e66e52a71ce 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_263.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_263.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License, V 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_263.yml b/src/licensedcode/data/rules/lgpl-2.1_263.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_264.RULE b/src/licensedcode/data/rules/lgpl-2.1_264.RULE index 94dfe2866ad..2d0f30e9d24 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_264.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_264.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU lesser General Public License, V 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_264.yml b/src/licensedcode/data/rules/lgpl-2.1_264.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_265.RULE b/src/licensedcode/data/rules/lgpl-2.1_265.RULE index 54f8c84e528..ee8f7ee9552 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_265.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_265.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public Licence, V2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_265.yml b/src/licensedcode/data/rules/lgpl-2.1_265.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_266.RULE b/src/licensedcode/data/rules/lgpl-2.1_266.RULE index 42ed5a7576d..0051af824ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_266.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_266.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU lesser General Public Licence, V2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_266.yml b/src/licensedcode/data/rules/lgpl-2.1_266.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_267.RULE b/src/licensedcode/data/rules/lgpl-2.1_267.RULE index 28373e6cbf3..3b965540055 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_267.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_267.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License, V2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_267.yml b/src/licensedcode/data/rules/lgpl-2.1_267.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_268.RULE b/src/licensedcode/data/rules/lgpl-2.1_268.RULE index afaa4420e45..a23065b109b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_268.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_268.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_268.yml b/src/licensedcode/data/rules/lgpl-2.1_268.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_269.RULE b/src/licensedcode/data/rules/lgpl-2.1_269.RULE index 36d0cc0fc6a..b9b69393990 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_269.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_269.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1. PLEASE SEE BELOW FOR THE FULL TEXT OF THE LGPL 2.1. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_269.yml b/src/licensedcode/data/rules/lgpl-2.1_269.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_27.RULE b/src/licensedcode/data/rules/lgpl-2.1_27.RULE index 8c177f8bedc..c09c4ac3e8b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_27.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_27.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +notes: account for address changes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 @@ -455,4 +467,4 @@ 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. - END OF TERMS AND CONDITIONS + END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_27.yml b/src/licensedcode/data/rules/lgpl-2.1_27.yml deleted file mode 100644 index 22fb4d38b8a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_27.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -notes: account for address changes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_270.RULE b/src/licensedcode/data/rules/lgpl-2.1_270.RULE index 5bceea55d99..870f07150b1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_270.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_270.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1. PLEASE SEE BELOW FOR THE FULL TEXT OF THE LGPL 2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_270.yml b/src/licensedcode/data/rules/lgpl-2.1_270.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_271.RULE b/src/licensedcode/data/rules/lgpl-2.1_271.RULE index 636fb453706..d09b126fe59 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_271.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_271.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_271.yml b/src/licensedcode/data/rules/lgpl-2.1_271.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_272.RULE b/src/licensedcode/data/rules/lgpl-2.1_272.RULE index 762a23e4fd8..4a58965efca 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_272.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_272.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_272.yml b/src/licensedcode/data/rules/lgpl-2.1_272.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_273.RULE b/src/licensedcode/data/rules/lgpl-2.1_273.RULE index 5a0766c66a7..9776064dd76 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_273.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_273.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + under GNU LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_273.yml b/src/licensedcode/data/rules/lgpl-2.1_273.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_274.RULE b/src/licensedcode/data/rules/lgpl-2.1_274.RULE index 0e91dd60a1e..0a57f0d64cd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_274.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_274.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + under the terms GNU LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_274.yml b/src/licensedcode/data/rules/lgpl-2.1_274.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_275.RULE b/src/licensedcode/data/rules/lgpl-2.1_275.RULE index 6477d171af0..868901a4d2e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_275.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_275.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_275.yml b/src/licensedcode/data/rules/lgpl-2.1_275.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_276.RULE b/src/licensedcode/data/rules/lgpl-2.1_276.RULE index e782106266d..20cb97d0056 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_276.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_276.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + GNU Lesser General Public License, V2.1 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_276.yml b/src/licensedcode/data/rules/lgpl-2.1_276.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_277.RULE b/src/licensedcode/data/rules/lgpl-2.1_277.RULE index ea1243df3bc..5d1e15ae353 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_277.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_277.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LGPL 2.1 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_277.yml b/src/licensedcode/data/rules/lgpl-2.1_277.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_277.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_278.RULE b/src/licensedcode/data/rules/lgpl-2.1_278.RULE index 81eebcfcb19..82d2176d1eb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_278.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_278.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + THE LGPL 2.1 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_278.yml b/src/licensedcode/data/rules/lgpl-2.1_278.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_279.RULE b/src/licensedcode/data/rules/lgpl-2.1_279.RULE index 362b80c9296..f632a5db3bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_279.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_279.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1 LICENSE. PLEASE SEE THE APPENDIX FOR FULL TEXT OF THE LGPL 2.1 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_279.yml b/src/licensedcode/data/rules/lgpl-2.1_279.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_279.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_28.RULE b/src/licensedcode/data/rules/lgpl-2.1_28.RULE index c3b499a9d4a..063478b3169 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_28.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_28.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_28.yml b/src/licensedcode/data/rules/lgpl-2.1_28.yml deleted file mode 100644 index bd0439b63e3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_280.RULE b/src/licensedcode/data/rules/lgpl-2.1_280.RULE index f24dc577c80..fb5ad7f9f75 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_280.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_280.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL 2.1 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_280.yml b/src/licensedcode/data/rules/lgpl-2.1_280.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_280.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_281.RULE b/src/licensedcode/data/rules/lgpl-2.1_281.RULE index d24c856533d..a80ef642b8c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_281.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_281.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + the GNU Library General Public License, version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_281.yml b/src/licensedcode/data/rules/lgpl-2.1_281.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_282.RULE b/src/licensedcode/data/rules/lgpl-2.1_282.RULE index cacdb217e8b..fca4cf9fd86 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_282.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_282.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser General Public License, version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_282.yml b/src/licensedcode/data/rules/lgpl-2.1_282.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_283.RULE b/src/licensedcode/data/rules/lgpl-2.1_283.RULE index e62047ca2db..4097ba3c86d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_283.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_283.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU LGPL version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_283.yml b/src/licensedcode/data/rules/lgpl-2.1_283.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_283.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_284.RULE b/src/licensedcode/data/rules/lgpl-2.1_284.RULE index 557d563db8a..5b06e3791d5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_284.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_284.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE LGPL 2.1 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_284.yml b/src/licensedcode/data/rules/lgpl-2.1_284.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_284.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_285.RULE b/src/licensedcode/data/rules/lgpl-2.1_285.RULE index e43f8a8aa34..6f920401e66 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_285.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_285.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + LICENSE= LGPL21 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_285.yml b/src/licensedcode/data/rules/lgpl-2.1_285.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_285.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_286.RULE b/src/licensedcode/data/rules/lgpl-2.1_286.RULE index b0302b9627c..d7d0a953d3b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_286.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_286.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPLv2.1 +--- + COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_286.yml b/src/licensedcode/data/rules/lgpl-2.1_286.yml deleted file mode 100644 index 90071d5b98d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_286.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPLv2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_287.RULE b/src/licensedcode/data/rules/lgpl-2.1_287.RULE index 79b514cef8e..c758694dd23 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_287.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_287.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of version 2.1 of the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_287.yml b/src/licensedcode/data/rules/lgpl-2.1_287.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_287.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_288.RULE b/src/licensedcode/data/rules/lgpl-2.1_288.RULE index f5895c6494b..907fb30b5c8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_288.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_288.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_288.yml b/src/licensedcode/data/rules/lgpl-2.1_288.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_289.RULE b/src/licensedcode/data/rules/lgpl-2.1_289.RULE index d3697cd82f7..1e20634caee 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_289.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_289.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL 2.1 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_289.yml b/src/licensedcode/data/rules/lgpl-2.1_289.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_289.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_29.RULE b/src/licensedcode/data/rules/lgpl-2.1_29.RULE index 582b152b4ce..75eb465f488 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_29.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_29.RULE @@ -1,2 +1,9 @@ - * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_29.yml b/src/licensedcode/data/rules/lgpl-2.1_29.yml deleted file mode 100644 index e84b04297de..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.1_290.RULE b/src/licensedcode/data/rules/lgpl-2.1_290.RULE index cd1a6377620..ff110997727 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_290.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_290.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_290.yml b/src/licensedcode/data/rules/lgpl-2.1_290.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_291.RULE b/src/licensedcode/data/rules/lgpl-2.1_291.RULE index 9a8ce84ac92..66539d33b4c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_291.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_291.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + On Debian systems, the complete text of the GNU Lesser General Public License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_291.yml b/src/licensedcode/data/rules/lgpl-2.1_291.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_292.RULE b/src/licensedcode/data/rules/lgpl-2.1_292.RULE index 143946d7cc5..736fce14add 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_292.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_292.RULE @@ -1 +1,10 @@ -can be found in /usr/share/common-licenses/LGPL-2.1 +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + +can be found in /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_292.yml b/src/licensedcode/data/rules/lgpl-2.1_292.yml deleted file mode 100644 index aff039ea3c8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_292.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_293.RULE b/src/licensedcode/data/rules/lgpl-2.1_293.RULE index 8e43c9d7479..df6b4e59578 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_293.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_293.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. + License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_293.yml b/src/licensedcode/data/rules/lgpl-2.1_293.yml deleted file mode 100644 index 392d6a76937..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_293.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_294.RULE b/src/licensedcode/data/rules/lgpl-2.1_294.RULE index 7fc459d0b5a..ccf16b13150 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_294.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_294.RULE @@ -1 +1,9 @@ -On Debian systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. +--- +license_expression: lgpl-2.1 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + +On Debian systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_294.yml b/src/licensedcode/data/rules/lgpl-2.1_294.yml deleted file mode 100644 index 392d6a76937..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_294.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_295.RULE b/src/licensedcode/data/rules/lgpl-2.1_295.RULE index 6c7550f8185..e9e6e2f7a0a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_295.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_295.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + governed by the GNU Lesser General Public License version 2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_295.yml b/src/licensedcode/data/rules/lgpl-2.1_295.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_295.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_296.RULE b/src/licensedcode/data/rules/lgpl-2.1_296.RULE index 235962fbeec..4136389ebfe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_296.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_296.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +relevance: 100 +notes: See in vmware tools. Truncated texts +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_296.yml b/src/licensedcode/data/rules/lgpl-2.1_296.yml deleted file mode 100644 index 295ea58f16a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_296.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -relevance: 100 -notes: See in vmware tools. Truncated texts -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_297.RULE b/src/licensedcode/data/rules/lgpl-2.1_297.RULE index 075d6065eed..06a72c34910 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_297.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_297.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published # by the Free Software Foundation version 2.1 and no later version. diff --git a/src/licensedcode/data/rules/lgpl-2.1_297.yml b/src/licensedcode/data/rules/lgpl-2.1_297.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_298.RULE b/src/licensedcode/data/rules/lgpl-2.1_298.RULE index 624920f0ac7..eb9418d364f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_298.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_298.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + components are released under the LGPL v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_298.yml b/src/licensedcode/data/rules/lgpl-2.1_298.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_299.RULE b/src/licensedcode/data/rules/lgpl-2.1_299.RULE index 2abed8e6dea..3243cd1e2f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_299.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_299.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + released under the LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_299.yml b/src/licensedcode/data/rules/lgpl-2.1_299.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_3.RULE index f51be9b4f1b..1a2f459370d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_3.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, version 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_3.yml b/src/licensedcode/data/rules/lgpl-2.1_3.yml deleted file mode 100644 index 02b2e32df08..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_30.RULE b/src/licensedcode/data/rules/lgpl-2.1_30.RULE index bc08f9ca1a6..e6b802fc04d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_30.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_30.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +notes: This Name and Url combination is not "or later" +ignorable_urls: + - http://tinymce.moxiecode.com/license +--- + Released under LGPL License. * - * License: http://tinymce.moxiecode.com/license + * License: http://tinymce.moxiecode.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_30.yml b/src/licensedcode/data/rules/lgpl-2.1_30.yml deleted file mode 100644 index 0ba9b308ab0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -notes: This Name and Url combination is not "or later" -ignorable_urls: - - http://tinymce.moxiecode.com/license diff --git a/src/licensedcode/data/rules/lgpl-2.1_300.RULE b/src/licensedcode/data/rules/lgpl-2.1_300.RULE index 3a406ebc8d6..e08c651d863 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_300.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_300.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + under the LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_300.yml b/src/licensedcode/data/rules/lgpl-2.1_300.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_301.RULE b/src/licensedcode/data/rules/lgpl-2.1_301.RULE index b987ed92e3e..80937ae44d9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_301.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_301.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + the LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_301.yml b/src/licensedcode/data/rules/lgpl-2.1_301.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_301.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_302.RULE b/src/licensedcode/data/rules/lgpl-2.1_302.RULE index 205c9593609..f09bce7242a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_302.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_302.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_302.yml b/src/licensedcode/data/rules/lgpl-2.1_302.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_302.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_303.RULE b/src/licensedcode/data/rules/lgpl-2.1_303.RULE index 9b4cae790f3..d46e08a1dd4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_303.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_303.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_303.yml b/src/licensedcode/data/rules/lgpl-2.1_303.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_303.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_304.RULE b/src/licensedcode/data/rules/lgpl-2.1_304.RULE index f86c811bb7d..07056b304fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_304.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_304.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library 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. diff --git a/src/licensedcode/data/rules/lgpl-2.1_304.yml b/src/licensedcode/data/rules/lgpl-2.1_304.yml deleted file mode 100644 index 59fb03f784d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_304.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_305.RULE b/src/licensedcode/data/rules/lgpl-2.1_305.RULE index 6493f5eb02b..d7832f5c59e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_305.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_305.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + has the LGPL V2.1 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_305.yml b/src/licensedcode/data/rules/lgpl-2.1_305.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_306.RULE b/src/licensedcode/data/rules/lgpl-2.1_306.RULE index 45d56783fc2..68556ec104f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_306.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_306.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz +--- + 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_306.yml b/src/licensedcode/data/rules/lgpl-2.1_306.yml deleted file mode 100644 index b5091acd872..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_306.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz diff --git a/src/licensedcode/data/rules/lgpl-2.1_307.RULE b/src/licensedcode/data/rules/lgpl-2.1_307.RULE index a877ba6fdcb..cd4fa518c66 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_307.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_307.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the complete text of the GNU Library General Public License can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_307.yml b/src/licensedcode/data/rules/lgpl-2.1_307.yml deleted file mode 100644 index 1e3d2b303ce..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_307.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_308.RULE b/src/licensedcode/data/rules/lgpl-2.1_308.RULE index 92742f93809..0de091d2563 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_308.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_308.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems a full copy of the LGPL 2.1 can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_308.yml b/src/licensedcode/data/rules/lgpl-2.1_308.yml deleted file mode 100644 index 59fb03f784d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_308.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_309.RULE b/src/licensedcode/data/rules/lgpl-2.1_309.RULE index 42a908ee77a..fe1b47b2417 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_309.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_309.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + On Debian systems a full copy of the LGPL 2.1 can be found \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_309.yml b/src/licensedcode/data/rules/lgpl-2.1_309.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_31.RULE b/src/licensedcode/data/rules/lgpl-2.1_31.RULE index b6ad4df2e93..584b948ba43 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_31.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_31.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + LGPL 2.1 http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_31.yml b/src/licensedcode/data/rules/lgpl-2.1_31.yml deleted file mode 100644 index 183aab18bbd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_310.RULE b/src/licensedcode/data/rules/lgpl-2.1_310.RULE index 2dd0e398ecd..ae0530e6bb3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_310.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_310.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + used under the LGPL v2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_310.yml b/src/licensedcode/data/rules/lgpl-2.1_310.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_311.RULE b/src/licensedcode/data/rules/lgpl-2.1_311.RULE index 0e38c40ca55..cb38078a9fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_311.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_311.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + is free software and can be used under the terms of the GNU Lesser General Public License (LGPL), Version 2.1 (February 1999). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_311.yml b/src/licensedcode/data/rules/lgpl-2.1_311.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_311.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_312.RULE b/src/licensedcode/data/rules/lgpl-2.1_312.RULE index 64b9e9f7b24..24a485e4dc2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_312.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_312.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1_312.yml b/src/licensedcode/data/rules/lgpl-2.1_312.yml deleted file mode 100644 index 59fb03f784d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_312.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_313.RULE b/src/licensedcode/data/rules/lgpl-2.1_313.RULE index c70fd2b1260..9c860c359c2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_313.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_313.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 + - LICENSE.LGPL +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + This file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. diff --git a/src/licensedcode/data/rules/lgpl-2.1_313.yml b/src/licensedcode/data/rules/lgpl-2.1_313.yml deleted file mode 100644 index 91b31f170f2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_313.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 - - LICENSE.LGPL -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_314.RULE b/src/licensedcode/data/rules/lgpl-2.1_314.RULE index cb43dd2608a..3dfef192525 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_314.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_314.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/lgpl-2.1_314.yml b/src/licensedcode/data/rules/lgpl-2.1_314.yml deleted file mode 100644 index 59fb03f784d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_314.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_315.RULE b/src/licensedcode/data/rules/lgpl-2.1_315.RULE index 9b64fc6aef3..bc2bd25204b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_315.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_315.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL version 2.1. See LGPL version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_315.yml b/src/licensedcode/data/rules/lgpl-2.1_315.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_315.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_316.RULE b/src/licensedcode/data/rules/lgpl-2.1_316.RULE index 1747dc6ddf9..d41bf36ade1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_316.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_316.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Licensed under the GNU Lesser General Public License v.2.1:http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_316.yml b/src/licensedcode/data/rules/lgpl-2.1_316.yml deleted file mode 100644 index 1316dd7626b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_316.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_317.RULE b/src/licensedcode/data/rules/lgpl-2.1_317.RULE index ef85820da27..594a4e6a40b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_317.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_317.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library 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. diff --git a/src/licensedcode/data/rules/lgpl-2.1_317.yml b/src/licensedcode/data/rules/lgpl-2.1_317.yml deleted file mode 100644 index e0b6b814cfd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_317.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_318.RULE b/src/licensedcode/data/rules/lgpl-2.1_318.RULE index 0dc374b5722..54619037514 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_318.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_318.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_318.yml b/src/licensedcode/data/rules/lgpl-2.1_318.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_319.RULE b/src/licensedcode/data/rules/lgpl-2.1_319.RULE index 0999249830f..c94bf722d45 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_319.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_319.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. + License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_319.yml b/src/licensedcode/data/rules/lgpl-2.1_319.yml deleted file mode 100644 index aff039ea3c8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_319.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_32.RULE b/src/licensedcode/data/rules/lgpl-2.1_32.RULE index ffa4df0b0c9..c46faaac195 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_32.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_32.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_32.yml b/src/licensedcode/data/rules/lgpl-2.1_32.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_32.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_320.RULE b/src/licensedcode/data/rules/lgpl-2.1_320.RULE index e84ee1c9a85..ab8db644126 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_320.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_320.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/lgpl-2.1_320.yml b/src/licensedcode/data/rules/lgpl-2.1_320.yml deleted file mode 100644 index e0b6b814cfd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_320.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_321.RULE b/src/licensedcode/data/rules/lgpl-2.1_321.RULE index fb04d69685c..dedbf04d201 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_321.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_321.RULE @@ -1 +1,10 @@ -On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + +On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_321.yml b/src/licensedcode/data/rules/lgpl-2.1_321.yml deleted file mode 100644 index aff039ea3c8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_321.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_322.RULE b/src/licensedcode/data/rules/lgpl-2.1_322.RULE index 5b0eadf6563..f01e1660df8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_322.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_322.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_322.yml b/src/licensedcode/data/rules/lgpl-2.1_322.yml deleted file mode 100644 index e0b6b814cfd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_322.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_323.RULE b/src/licensedcode/data/rules/lgpl-2.1_323.RULE index 96e0fc59c7c..1f9b88dd456 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_323.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_323.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + License: LGPL-2.1 On Debian GNU/Linux systems the full text of the GNU LGPL v2.1 can be found in the `/usr/share/common-licenses/LGPL-2.1' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_323.yml b/src/licensedcode/data/rules/lgpl-2.1_323.yml deleted file mode 100644 index 63b455da64d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_323.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_324.RULE b/src/licensedcode/data/rules/lgpl-2.1_324.RULE index a274fd782dc..1fbe30f827f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_324.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_324.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 + - LICENSE.LGPL +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + This file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. diff --git a/src/licensedcode/data/rules/lgpl-2.1_324.yml b/src/licensedcode/data/rules/lgpl-2.1_324.yml deleted file mode 100644 index 686133c4d60..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_324.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 - - LICENSE.LGPL -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_325.RULE b/src/licensedcode/data/rules/lgpl-2.1_325.RULE index 8a7ecb21d89..7ba533918b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_325.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_325.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_325.yml b/src/licensedcode/data/rules/lgpl-2.1_325.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_325.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_326.RULE b/src/licensedcode/data/rules/lgpl-2.1_326.RULE index 5efa7b1b48f..cc2b0d697fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_326.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_326.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems, the complete text of the GNU Library General Public License can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_326.yml b/src/licensedcode/data/rules/lgpl-2.1_326.yml deleted file mode 100644 index fc2c38c8a67..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_326.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_327.RULE b/src/licensedcode/data/rules/lgpl-2.1_327.RULE index 403f515d609..22ac4488569 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_327.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_327.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1_327.yml b/src/licensedcode/data/rules/lgpl-2.1_327.yml deleted file mode 100644 index e0b6b814cfd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_327.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_328.RULE b/src/licensedcode/data/rules/lgpl-2.1_328.RULE index 0da2299d4fd..82fba629e90 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_328.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_328.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian GNU/Linux systems the full text of the GNU LGPL v2.1 can be found in the `/usr/share/common-licenses/LGPL-2.1' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_328.yml b/src/licensedcode/data/rules/lgpl-2.1_328.yml deleted file mode 100644 index 63b455da64d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_328.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_329.RULE b/src/licensedcode/data/rules/lgpl-2.1_329.RULE index de311d31cf2..e8af0b528de 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_329.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_329.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + LGPL 2.1 https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_329.yml b/src/licensedcode/data/rules/lgpl-2.1_329.yml deleted file mode 100644 index 7360925f058..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_329.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_33.RULE b/src/licensedcode/data/rules/lgpl-2.1_33.RULE index e61411c3ac7..259fcfd8863 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_33.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_33.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU Lesser General Public License Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. @@ -84,5 +95,4 @@ You should also get your employer (if you work as a programmer) or your school, Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. signature of Ty Coon, 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_33.yml b/src/licensedcode/data/rules/lgpl-2.1_33.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_33.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_330.RULE b/src/licensedcode/data/rules/lgpl-2.1_330.RULE index f9e35fd2ba2..535771c18c3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_330.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_330.RULE @@ -1,6 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** This file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_330.yml b/src/licensedcode/data/rules/lgpl-2.1_330.yml deleted file mode 100644 index 1f2dfa1e895..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_330.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_331.RULE b/src/licensedcode/data/rules/lgpl-2.1_331.RULE index fcc9605ffdf..16eabfb1c2d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_331.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_331.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + * This code is licensed under LGPL 2.1 * https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_331.yml b/src/licensedcode/data/rules/lgpl-2.1_331.yml deleted file mode 100644 index e8d932e23f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_331.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_332.RULE b/src/licensedcode/data/rules/lgpl-2.1_332.RULE index 91d80c93f34..3ebb3f1ac7c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_332.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_332.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 + - LICENSE.LGPL +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + This file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. diff --git a/src/licensedcode/data/rules/lgpl-2.1_332.yml b/src/licensedcode/data/rules/lgpl-2.1_332.yml deleted file mode 100644 index 299918f667f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_332.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 - - LICENSE.LGPL -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_333.RULE b/src/licensedcode/data/rules/lgpl-2.1_333.RULE index b1d4bcb6a3b..b4152377eae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_333.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_333.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + Licence -Licensed under the Lesser General Public Licence (LGPL) Version 2.1 (https://www.gnu.org/licenses/lgpl-2.1.html) +Licensed under the Lesser General Public Licence (LGPL) Version 2.1 (https://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_333.yml b/src/licensedcode/data/rules/lgpl-2.1_333.yml deleted file mode 100644 index e8d932e23f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_333.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_334.RULE b/src/licensedcode/data/rules/lgpl-2.1_334.RULE index 9328b0d8dcb..37f5dc4c17b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_334.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_334.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + license: name: GNU Lesser General Public License, version 2.1 url: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_334.yml b/src/licensedcode/data/rules/lgpl-2.1_334.yml deleted file mode 100644 index a88a31e0200..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_334.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_335.RULE b/src/licensedcode/data/rules/lgpl-2.1_335.RULE index 40724345c04..54cc87bd462 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_335.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_335.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + open source software released under the `GNU LGPLv2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_335.yml b/src/licensedcode/data/rules/lgpl-2.1_335.yml deleted file mode 100644 index 4c05b4ddd57..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_335.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_336.RULE b/src/licensedcode/data/rules/lgpl-2.1_336.RULE index a63abba228d..c58ac44655a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_336.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_336.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LGPL2.1 +ignorable_urls: + - https://www.gnu.org/licenses/licenses.html +--- + This copy of is licensed under the Lesser General Public License (LGPL), version 2.1 ("the License"). See the License for details about distribution rights, and the @@ -9,4 +19,4 @@ https://www.gnu.org/licenses/licenses.html A copy is also included in the downloadable source code package containing , in file "LGPL2.1", under the same directory -as this file. +as this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_336.yml b/src/licensedcode/data/rules/lgpl-2.1_336.yml deleted file mode 100644 index 64157b42fb5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_336.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LGPL2.1 -ignorable_urls: - - https://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_337.RULE b/src/licensedcode/data/rules/lgpl-2.1_337.RULE index bddfc3a3544..44748538cb8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_337.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_337.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + This program and the accompanying materials * are made available under the terms of the GNU Lesser General Public License * (LGPL) version 2.1 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/lgpl-2.1_337.yml b/src/licensedcode/data/rules/lgpl-2.1_337.yml deleted file mode 100644 index 819f57f7cb4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_337.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_338.RULE b/src/licensedcode/data/rules/lgpl-2.1_338.RULE index 587d0e6a8f1..04c3a507c1b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_338.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_338.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 51 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + license GNU Lesser General Public License, version 2.1 https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_338.yml b/src/licensedcode/data/rules/lgpl-2.1_338.yml deleted file mode 100644 index 029ffa45973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_338.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 51 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_339.RULE b/src/licensedcode/data/rules/lgpl-2.1_339.RULE index c979e818199..7655218195e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_339.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_339.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + License: LGPL 2.1 (https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_339.yml b/src/licensedcode/data/rules/lgpl-2.1_339.yml deleted file mode 100644 index ab69aa562d8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_34.RULE b/src/licensedcode/data/rules/lgpl-2.1_34.RULE index 1d3824a7e1b..73a4370ee43 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_34.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_34.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +notes: http://creativecommons.org/licenses/LGPL/2.1/ +--- + CC-GNU LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_34.yml b/src/licensedcode/data/rules/lgpl-2.1_34.yml deleted file mode 100644 index 4601a2bd31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -notes: http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_340.RULE b/src/licensedcode/data/rules/lgpl-2.1_340.RULE index bdc0237dcb3..ffb5fd4a6af 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_340.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_340.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +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 Lesser General Public License as published by the Free Software Foundation; @@ -9,4 +17,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public -License along with this program; if not, see +License along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_340.yml b/src/licensedcode/data/rules/lgpl-2.1_340.yml deleted file mode 100644 index 08b19462797..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_340.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-2.1_341.RULE b/src/licensedcode/data/rules/lgpl-2.1_341.RULE index a27246019a9..ac9724d8887 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_341.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_341.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + Licensed under the GNU LGPL v2.1 - https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_341.yml b/src/licensedcode/data/rules/lgpl-2.1_341.yml deleted file mode 100644 index 4d26e53b0f8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_341.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_342.RULE b/src/licensedcode/data/rules/lgpl-2.1_342.RULE index 17099290b36..84de213a6d4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_342.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_342.RULE @@ -1 +1,9 @@ -https://www.gnu.org/licenses/lgpl-2.1-standalone.html' +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1-standalone.html +--- + +https://www.gnu.org/licenses/lgpl-2.1-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_342.yml b/src/licensedcode/data/rules/lgpl-2.1_342.yml deleted file mode 100644 index 647c4b4aaf7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_342.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_343.RULE b/src/licensedcode/data/rules/lgpl-2.1_343.RULE index 9ea1c65c3d1..1855a984e0a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_343.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_343.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: LGPL 2.1 notice +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Alternatively, this file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the diff --git a/src/licensedcode/data/rules/lgpl-2.1_343.yml b/src/licensedcode/data/rules/lgpl-2.1_343.yml deleted file mode 100644 index b59aa606971..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_343.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: LGPL 2.1 notice -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_344.RULE b/src/licensedcode/data/rules/lgpl-2.1_344.RULE index 91a4b2c78b6..224314b1690 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_344.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_344.RULE @@ -1,4 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: from a maven POM +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, version 2.1 - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_344.yml b/src/licensedcode/data/rules/lgpl-2.1_344.yml deleted file mode 100644 index 1dc297e802b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_344.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: from a maven POM -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_345.RULE b/src/licensedcode/data/rules/lgpl-2.1_345.RULE index bf7a22b9be4..56318bcf552 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_345.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_345.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.txt +--- + License: LGPL (https://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_345.yml b/src/licensedcode/data/rules/lgpl-2.1_345.yml deleted file mode 100644 index 48d3dfa52bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_345.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_346.RULE b/src/licensedcode/data/rules/lgpl-2.1_346.RULE index 1efbe78446c..13e82bbe465 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_346.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_346.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + available under the Lesser General Public Licence (LGPL) Version 2.1 (https://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_346.yml b/src/licensedcode/data/rules/lgpl-2.1_346.yml deleted file mode 100644 index e8d932e23f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_346.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_347.RULE b/src/licensedcode/data/rules/lgpl-2.1_347.RULE index 89e917dacdc..3dbe5365160 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_347.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_347.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 + - LICENSE.LGPL +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + This file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. diff --git a/src/licensedcode/data/rules/lgpl-2.1_347.yml b/src/licensedcode/data/rules/lgpl-2.1_347.yml deleted file mode 100644 index 299918f667f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_347.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 - - LICENSE.LGPL -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_348.RULE b/src/licensedcode/data/rules/lgpl-2.1_348.RULE index f2b051d683b..41493f56cbd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_348.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_348.RULE @@ -1,7 +1,16 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + * GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_348.yml b/src/licensedcode/data/rules/lgpl-2.1_348.yml deleted file mode 100644 index 1f2dfa1e895..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_348.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_349.RULE b/src/licensedcode/data/rules/lgpl-2.1_349.RULE index 9c13b8a8b94..eba7c8a3274 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_349.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_349.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - lgpl-v21.txt +ignorable_urls: + - https://www.gnu.org/ + - https://www.gnu.org/licenses/lgpl.html +--- + * The contents of this file are made available under the terms * of the GNU Lesser General Public License (LGPL) Version 2.1 that * accompanies this distribution (lgpl-v21.txt). The LGPL is also @@ -5,4 +16,4 @@ * of the LGPL at https://www.gnu.org is different to the version of * the LGPL accompanying this distribution and there is any conflict * between the two license versions, the terms of the LGPL accompanying -* this distribution shall govern. +* this distribution shall govern. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_349.yml b/src/licensedcode/data/rules/lgpl-2.1_349.yml deleted file mode 100644 index ff29ca6ed1e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_349.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - lgpl-v21.txt -ignorable_urls: - - https://www.gnu.org/ - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_35.RULE b/src/licensedcode/data/rules/lgpl-2.1_35.RULE index 7f159bb5a72..53a34188a04 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_35.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_35.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +notes: http://creativecommons.org/licenses/LGPL/2.1/ +--- + http://creativecommons.org/images/public/cc-LGPL-a.png \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_35.yml b/src/licensedcode/data/rules/lgpl-2.1_35.yml deleted file mode 100644 index 4601a2bd31c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -notes: http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_350.RULE b/src/licensedcode/data/rules/lgpl-2.1_350.RULE index 3963b772c54..ac3fd4892c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_350.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_350.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + license https://www.gnu.org/copyleft/lesser.html LGPL License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_350.yml b/src/licensedcode/data/rules/lgpl-2.1_350.yml deleted file mode 100644 index 9bb9cc6f083..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_350.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_351.RULE b/src/licensedcode/data/rules/lgpl-2.1_351.RULE index e3c0aed72b4..fe5b5056d62 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_351.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_351.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/ +--- + # This file is licensed under the # GNU Lesser General Public License v2.1. -# See the file COPYING or visit https://www.gnu.org/ for details. +# See the file COPYING or visit https://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_351.yml b/src/licensedcode/data/rules/lgpl-2.1_351.yml deleted file mode 100644 index 29070099e07..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_351.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_352.RULE b/src/licensedcode/data/rules/lgpl-2.1_352.RULE index aba72eca4f3..4c3e2d71f33 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_352.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_352.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_352.yml b/src/licensedcode/data/rules/lgpl-2.1_352.yml deleted file mode 100644 index 06b2281c9f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_352.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_353.RULE b/src/licensedcode/data/rules/lgpl-2.1_353.RULE index f930e8a2c96..3a9525b32a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_353.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_353.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This header is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License. @@ -7,4 +15,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this header. If not, see . +along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_353.yml b/src/licensedcode/data/rules/lgpl-2.1_353.yml deleted file mode 100644 index 069897413a0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_353.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_354.RULE b/src/licensedcode/data/rules/lgpl-2.1_354.RULE index 7e113f71b94..a5a9a68e51d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_354.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_354.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: from a maven POM +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, Version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_354.yml b/src/licensedcode/data/rules/lgpl-2.1_354.yml deleted file mode 100644 index e1c4cd3dcea..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_354.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: from a maven POM -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_355.RULE b/src/licensedcode/data/rules/lgpl-2.1_355.RULE index 19dde8acc12..26a5db3a277 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_355.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_355.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_355.yml b/src/licensedcode/data/rules/lgpl-2.1_355.yml deleted file mode 100644 index 06b2281c9f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_355.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_356.RULE b/src/licensedcode/data/rules/lgpl-2.1_356.RULE index 2eac272ccc8..e489722d158 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_356.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_356.RULE @@ -1 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: This text is from the GPL 2.0 with a manual replacement to make it look like an LGPL + 2.1 notice. This introduces a bias in license detection towards GPL 2.0 when this is really + an LGPL 2.1 license. This weird license header was originally found in the source code of + the http://sourceforge.net/projects/glassbox/ project. +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.txt +--- + This program along with all accompanying source code and applicable materials are made available under the terms of the Lesser Gnu Public License v2.1, which accompanies this distribution and is available at https://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_356.yml b/src/licensedcode/data/rules/lgpl-2.1_356.yml deleted file mode 100644 index d25a51b8f9d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_356.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: This text is from the GPL 2.0 with a manual replacement to make it look like an LGPL - 2.1 notice. This introduces a bias in license detection towards GPL 2.0 when this is really - an LGPL 2.1 license. This weird license header was originally found in the source code of - the http://sourceforge.net/projects/glassbox/ project. -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_357.RULE b/src/licensedcode/data/rules/lgpl-2.1_357.RULE index f62eb7e6b58..a095cf22c1b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_357.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_357.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Licensed under the GNU Lesser General Public License v.2.1:https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_357.yml b/src/licensedcode/data/rules/lgpl-2.1_357.yml deleted file mode 100644 index 2219e2d4c36..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_357.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_358.RULE b/src/licensedcode/data/rules/lgpl-2.1_358.RULE index bd2e0a8c3ad..9ea04b299ec 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_358.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_358.RULE @@ -1,6 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lgpl-license.html + - https://www.gnu.org/copyleft/lgpl.html +--- + The code contained herein is licensed under the GNU Lesser General Public License. You may obtain a copy of the GNU Lesser General Public License Version 2.1 or later at the following locations: http://www.opensource.org/licenses/lgpl-license.html -https://www.gnu.org/copyleft/lgpl.html +https://www.gnu.org/copyleft/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_358.yml b/src/licensedcode/data/rules/lgpl-2.1_358.yml deleted file mode 100644 index a2d59f6fd85..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_358.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lgpl-license.html - - https://www.gnu.org/copyleft/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_359.RULE b/src/licensedcode/data/rules/lgpl-2.1_359.RULE index 24dcf2d3aed..a8f66eb7e79 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_359.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_359.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + software released under the `GNU LGPLv2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_359.yml b/src/licensedcode/data/rules/lgpl-2.1_359.yml deleted file mode 100644 index 4c05b4ddd57..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_359.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_36.RULE b/src/licensedcode/data/rules/lgpl-2.1_36.RULE index e2ad247150a..cd825879545 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_36.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_36.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU Lesser General Public License, version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_36.yml b/src/licensedcode/data/rules/lgpl-2.1_36.yml deleted file mode 100644 index 705452629d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_360.RULE b/src/licensedcode/data/rules/lgpl-2.1_360.RULE index 267e15d3f14..5873f1cd0e1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_360.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_360.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, version 2.1 https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_360.yml b/src/licensedcode/data/rules/lgpl-2.1_360.yml deleted file mode 100644 index b2d77d9da4b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_360.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_361.RULE b/src/licensedcode/data/rules/lgpl-2.1_361.RULE index 10d64c4869c..7fb8d4c8462 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_361.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_361.RULE @@ -1 +1,9 @@ - license 'LGPL-2.1', 'https://www.gnu.org/licenses/lgpl-2.1-standalone.html' +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1-standalone.html +--- + + license 'LGPL-2.1', 'https://www.gnu.org/licenses/lgpl-2.1-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_361.yml b/src/licensedcode/data/rules/lgpl-2.1_361.yml deleted file mode 100644 index 647c4b4aaf7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_361.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_362.RULE b/src/licensedcode/data/rules/lgpl-2.1_362.RULE index 0ed2caf8744..e8572066d65 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_362.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_362.RULE @@ -1,4 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: from a maven POM +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, Version 2.1 - https://www.gnu.org/licenses/lgpl-2.1.txt + https://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_362.yml b/src/licensedcode/data/rules/lgpl-2.1_362.yml deleted file mode 100644 index e1c4cd3dcea..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_362.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: from a maven POM -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_363.RULE b/src/licensedcode/data/rules/lgpl-2.1_363.RULE index 5314703b3c4..4cd2db8cbf9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_363.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_363.RULE @@ -1,5 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + This program and the accompanying materials * are made available under the terms of the GNU Lesser General Public License * (LGPL) version 2.1 which accompanies this distribution, and is available at * https://www.gnu.org/licenses/lgpl-2.1.html - * + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_363.yml b/src/licensedcode/data/rules/lgpl-2.1_363.yml deleted file mode 100644 index e8d932e23f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_363.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_364.RULE b/src/licensedcode/data/rules/lgpl-2.1_364.RULE index b8e6ff523ba..0c09f44494b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_364.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_364.RULE @@ -1 +1,9 @@ -License: LGPL, version 2.1 (https://www.gnu.org/licenses/licenses.html) +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/licenses.html +--- + +License: LGPL, version 2.1 (https://www.gnu.org/licenses/licenses.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_364.yml b/src/licensedcode/data/rules/lgpl-2.1_364.yml deleted file mode 100644 index 6ea07011ed4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_364.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_365.RULE b/src/licensedcode/data/rules/lgpl-2.1_365.RULE index e57ebed8fc4..266aa450325 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_365.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_365.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html +--- + released under the `GNU LGPLv2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_365.yml b/src/licensedcode/data/rules/lgpl-2.1_365.yml deleted file mode 100644 index 4c05b4ddd57..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_365.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_366.RULE b/src/licensedcode/data/rules/lgpl-2.1_366.RULE index 15155a9e793..f1ccfaeeeda 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_366.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_366.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +notes: from a maven POM +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License, version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_366.yml b/src/licensedcode/data/rules/lgpl-2.1_366.yml deleted file mode 100644 index 1dc297e802b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_366.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -notes: from a maven POM -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_367.RULE b/src/licensedcode/data/rules/lgpl-2.1_367.RULE index 3d3ebb1adb2..d767b1ff484 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_367.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_367.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + This library is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_367.yml b/src/licensedcode/data/rules/lgpl-2.1_367.yml deleted file mode 100644 index 63c73272cb8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_367.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-2.1_368.RULE b/src/licensedcode/data/rules/lgpl-2.1_368.RULE index 1daa689bf4a..30302b69948 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_368.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_368.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +ignorable_urls: + - http://www.gnu.org/licenses +--- + This library is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_368.yml b/src/licensedcode/data/rules/lgpl-2.1_368.yml deleted file mode 100644 index dd68e97f0cb..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_368.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-2.1_369.RULE b/src/licensedcode/data/rules/lgpl-2.1_369.RULE index b17b1e1cfa6..05ba5e9e352 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_369.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_369.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +notes: the GPL reference is incorrect +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License in version 2.1 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_369.yml b/src/licensedcode/data/rules/lgpl-2.1_369.yml deleted file mode 100644 index 770b6aff03f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_369.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -notes: the GPL reference is incorrect -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_37.RULE b/src/licensedcode/data/rules/lgpl-2.1_37.RULE index 7bf6cfc9e28..615846fdb99 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_37.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_37.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_37.yml b/src/licensedcode/data/rules/lgpl-2.1_37.yml deleted file mode 100644 index ca6dcbacd32..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_370.RULE b/src/licensedcode/data/rules/lgpl-2.1_370.RULE index 8b4bfc0988f..7049cae4a83 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_370.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_370.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + see `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_370.yml b/src/licensedcode/data/rules/lgpl-2.1_370.yml deleted file mode 100644 index fc2c38c8a67..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_370.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_371.RULE b/src/licensedcode/data/rules/lgpl-2.1_371.RULE index cbc0db1d6ad..538a45161d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_371.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_371.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, refer to /usr/share/common-licenses/LGPL-2.1 for the complete text of the GNU Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_371.yml b/src/licensedcode/data/rules/lgpl-2.1_371.yml deleted file mode 100644 index 1e3d2b303ce..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_371.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_372.RULE b/src/licensedcode/data/rules/lgpl-2.1_372.RULE index 5c59da50413..3579036d73a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_372.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_372.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + library is released under LGPL so that it may be linked with 3rd party software. diff --git a/src/licensedcode/data/rules/lgpl-2.1_372.yml b/src/licensedcode/data/rules/lgpl-2.1_372.yml deleted file mode 100644 index 59fb03f784d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_372.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_373.RULE b/src/licensedcode/data/rules/lgpl-2.1_373.RULE index a8b8cf3a255..ef3a12f3dc2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_373.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_373.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + code is under GNU LGPLv2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_373.yml b/src/licensedcode/data/rules/lgpl-2.1_373.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_373.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_374.RULE b/src/licensedcode/data/rules/lgpl-2.1_374.RULE index 0f6d3c79a69..9a83eeb7b79 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_374.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_374.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + On Debian systems, the text of the GNU Lesser General Public License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_374.yml b/src/licensedcode/data/rules/lgpl-2.1_374.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_374.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_375.RULE b/src/licensedcode/data/rules/lgpl-2.1_375.RULE index 9663d953103..0f71375e6f0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_375.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_375.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the text of the GNU Lesser General Public - License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. + License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_375.yml b/src/licensedcode/data/rules/lgpl-2.1_375.yml deleted file mode 100644 index aff039ea3c8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_375.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_376.RULE b/src/licensedcode/data/rules/lgpl-2.1_376.RULE index 4b869cfc4e1..ec837ad7c2f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_376.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_376.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +notes: the GPL reference is incorrect +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License in version 2.1 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_376.yml b/src/licensedcode/data/rules/lgpl-2.1_376.yml deleted file mode 100644 index d294a82492c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_376.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -notes: the GPL reference is incorrect -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_377.RULE b/src/licensedcode/data/rules/lgpl-2.1_377.RULE index 69abaea8c53..11661f07e51 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_377.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_377.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + On Debian systems, the text of the GNU Library General Public License can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_377.yml b/src/licensedcode/data/rules/lgpl-2.1_377.yml deleted file mode 100644 index fc2c38c8a67..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_377.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_378.RULE b/src/licensedcode/data/rules/lgpl-2.1_378.RULE index 116c97297d2..87b5b5da579 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_378.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_378.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +ignorable_urls: + - http://www.gnu.org/licenses +--- + This library is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_378.yml b/src/licensedcode/data/rules/lgpl-2.1_378.yml deleted file mode 100644 index 89c9b088f8d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_378.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-2.1_379.RULE b/src/licensedcode/data/rules/lgpl-2.1_379.RULE index 34ac8e30442..5ee03eb41b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_379.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_379.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This library 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. diff --git a/src/licensedcode/data/rules/lgpl-2.1_379.yml b/src/licensedcode/data/rules/lgpl-2.1_379.yml deleted file mode 100644 index e0b6b814cfd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_379.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_38.RULE b/src/licensedcode/data/rules/lgpl-2.1_38.RULE index dc072552ee6..56d1241ac9a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_38.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_38.RULE @@ -1 +1,7 @@ -license: LGPL-2.1 +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + +license: LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_38.yml b/src/licensedcode/data/rules/lgpl-2.1_38.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_380.RULE b/src/licensedcode/data/rules/lgpl-2.1_380.RULE index f58644774b6..c2f9c1cfd27 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_380.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_380.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + 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, Fifth Floor, Boston, diff --git a/src/licensedcode/data/rules/lgpl-2.1_380.yml b/src/licensedcode/data/rules/lgpl-2.1_380.yml deleted file mode 100644 index e0b6b814cfd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_380.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_381.RULE b/src/licensedcode/data/rules/lgpl-2.1_381.RULE index a00e4ba1848..b4734299428 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_381.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_381.RULE @@ -1 +1,10 @@ -On Debian systems, the text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + +On Debian systems, the text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_381.yml b/src/licensedcode/data/rules/lgpl-2.1_381.yml deleted file mode 100644 index aff039ea3c8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_381.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_382.RULE b/src/licensedcode/data/rules/lgpl-2.1_382.RULE index 9b2dcaa351a..9117768fe8f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_382.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_382.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + This module 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. diff --git a/src/licensedcode/data/rules/lgpl-2.1_382.yml b/src/licensedcode/data/rules/lgpl-2.1_382.yml deleted file mode 100644 index 59fb03f784d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_382.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_383.RULE b/src/licensedcode/data/rules/lgpl-2.1_383.RULE index 0fb3593901d..7eed8ea1955 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_383.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_383.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/licensedcode/data/rules/lgpl-2.1_383.yml b/src/licensedcode/data/rules/lgpl-2.1_383.yml deleted file mode 100644 index 60e0a9a529c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_383.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_384.RULE b/src/licensedcode/data/rules/lgpl-2.1_384.RULE index d038dbea872..f6938c54d3a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_384.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_384.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 90 +notes: the LGPl state that no version should mean any version e.g. LGPL-2.0 or later +--- + Version of LGPL license not mentioned. Assumed to be version 2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_384.yml b/src/licensedcode/data/rules/lgpl-2.1_384.yml deleted file mode 100644 index ae78ece861e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_384.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 90 -notes: the LGPl state that no version should mean any version e.g. LGPL-2.0 or later diff --git a/src/licensedcode/data/rules/lgpl-2.1_385.RULE b/src/licensedcode/data/rules/lgpl-2.1_385.RULE index 45e60696635..c94e8874e32 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_385.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_385.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_385.yml b/src/licensedcode/data/rules/lgpl-2.1_385.yml deleted file mode 100644 index f9460848129..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_385.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/lgpl-2.1_386.RULE b/src/licensedcode/data/rules/lgpl-2.1_386.RULE index 7bed357b852..815694e1727 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_386.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_386.RULE @@ -1,2 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + The Library is distributed under the terms of the GNU Lesser General Public License version 2.1 (included below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_386.yml b/src/licensedcode/data/rules/lgpl-2.1_386.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_386.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_387.RULE b/src/licensedcode/data/rules/lgpl-2.1_387.RULE index b0bba325bad..1ff5809bf9f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_387.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_387.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + is subject to the GNU Lesser General Public License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_387.yml b/src/licensedcode/data/rules/lgpl-2.1_387.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_388.RULE b/src/licensedcode/data/rules/lgpl-2.1_388.RULE index 27c0a6e831b..088b7748674 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_388.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_388.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + License: LGPL 2.1 (GNU Lesser General Public License, Version 2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_388.yml b/src/licensedcode/data/rules/lgpl-2.1_388.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_389.RULE b/src/licensedcode/data/rules/lgpl-2.1_389.RULE index 9a6565e08e8..9eca37d9597 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_389.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_389.RULE @@ -1,3 +1,10 @@ +--- +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 {{version 2.1 of the GNU Lesser}} General * Public License published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_389.yml b/src/licensedcode/data/rules/lgpl-2.1_389.yml deleted file mode 100644 index 9234c3cf9bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_389.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_39.RULE b/src/licensedcode/data/rules/lgpl-2.1_39.RULE index 99fef167aa8..77d5a1e2d4d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_39.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_39.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +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 version 2.1 * as published by the Free Software Foundation @@ -5,4 +10,4 @@ * 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. + * GNU Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_39.yml b/src/licensedcode/data/rules/lgpl-2.1_39.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_390.RULE b/src/licensedcode/data/rules/lgpl-2.1_390.RULE index 1a38708d30e..e6813cf9a6c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_390.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_390.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +--- + GNU Lesser General Public License 2.1 http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_390.yml b/src/licensedcode/data/rules/lgpl-2.1_390.yml deleted file mode 100644 index 451023210e3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_390.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_391.RULE b/src/licensedcode/data/rules/lgpl-2.1_391.RULE index b60563400f5..975f9a34e0d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_391.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_391.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.txt +--- + The GNU Lesser General Public License, Version 2.1 https://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_391.yml b/src/licensedcode/data/rules/lgpl-2.1_391.yml deleted file mode 100644 index 1f50209120e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_391.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_392.RULE b/src/licensedcode/data/rules/lgpl-2.1_392.RULE index 16281c0256b..9e8a24af77c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_392.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_392.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +--- + The GNU Lesser General Public License, Version 2.1 http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_392.yml b/src/licensedcode/data/rules/lgpl-2.1_392.yml deleted file mode 100644 index 5d9452c5b39..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_392.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_393.RULE b/src/licensedcode/data/rules/lgpl-2.1_393.RULE index a4aa9ed81a8..7090cf527ac 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_393.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_393.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.txt +--- + The GNU Lesser General Public License, Version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_393.yml b/src/licensedcode/data/rules/lgpl-2.1_393.yml deleted file mode 100644 index 1f50209120e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_393.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_394.RULE b/src/licensedcode/data/rules/lgpl-2.1_394.RULE index 5f4b5876083..1fe566ca32d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_394.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_394.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.txt +--- + The GNU Lesser General Public License, Version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_394.yml b/src/licensedcode/data/rules/lgpl-2.1_394.yml deleted file mode 100644 index 5d9452c5b39..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_394.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_395.RULE b/src/licensedcode/data/rules/lgpl-2.1_395.RULE index a360067a3a6..867def65ec8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_395.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_395.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + LGPL-2.1 GNU Lesser General Public License v2.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_395.yml b/src/licensedcode/data/rules/lgpl-2.1_395.yml deleted file mode 100644 index 2dace2c5e50..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_395.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1_396.RULE b/src/licensedcode/data/rules/lgpl-2.1_396.RULE index 560c1fc26b1..5ce8de50dad 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_396.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_396.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Lesser General Public License v2.1 only LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_396.yml b/src/licensedcode/data/rules/lgpl-2.1_396.yml deleted file mode 100644 index 2dace2c5e50..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_396.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1_397.RULE b/src/licensedcode/data/rules/lgpl-2.1_397.RULE index b9e622ab255..9c54177d95e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_397.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_397.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_397.yml b/src/licensedcode/data/rules/lgpl-2.1_397.yml deleted file mode 100644 index 2dace2c5e50..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_397.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1_398.RULE b/src/licensedcode/data/rules/lgpl-2.1_398.RULE index 7e3b970d336..3e7880257ca 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_398.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_398.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Lesser General Public License v2.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_398.yml b/src/licensedcode/data/rules/lgpl-2.1_398.yml deleted file mode 100644 index 2dace2c5e50..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_398.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1_399.RULE b/src/licensedcode/data/rules/lgpl-2.1_399.RULE index f0f8841657f..8e0292c18ab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_399.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_399.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPL-2.1-only GNU Lesser General Public License v2.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_399.yml b/src/licensedcode/data/rules/lgpl-2.1_399.yml deleted file mode 100644 index b0c9cf0c3e9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_399.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_4.RULE index 46e4527fae1..d477ea850a8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: LGPL 2.1 notice +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + Alternatively, this file may be used under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the diff --git a/src/licensedcode/data/rules/lgpl-2.1_4.yml b/src/licensedcode/data/rules/lgpl-2.1_4.yml deleted file mode 100644 index ecd45d4d692..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: LGPL 2.1 notice -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_40.RULE b/src/licensedcode/data/rules/lgpl-2.1_40.RULE index cdb87269938..55c3413c861 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_40.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_40.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +minimum_coverage: 51 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + license GNU Lesser General Public License, version 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_40.yml b/src/licensedcode/data/rules/lgpl-2.1_40.yml deleted file mode 100644 index 31222debed2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -minimum_coverage: 51 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_400.RULE b/src/licensedcode/data/rules/lgpl-2.1_400.RULE index 24d0879fac2..01291f2adaf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_400.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_400.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Lesser General Public License v2.1 only LGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_400.yml b/src/licensedcode/data/rules/lgpl-2.1_400.yml deleted file mode 100644 index b0c9cf0c3e9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_400.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1_401.RULE b/src/licensedcode/data/rules/lgpl-2.1_401.RULE index 7cbb2647559..b72ec651740 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_401.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_401.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_401.yml b/src/licensedcode/data/rules/lgpl-2.1_401.yml deleted file mode 100644 index 50f26cdf4f7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_401.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1_402.RULE b/src/licensedcode/data/rules/lgpl-2.1_402.RULE index f48868be7ef..f86a0be2c86 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_402.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_402.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Lesser General Public License v2.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_402.yml b/src/licensedcode/data/rules/lgpl-2.1_402.yml deleted file mode 100644 index 50f26cdf4f7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_402.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1_403.RULE b/src/licensedcode/data/rules/lgpl-2.1_403.RULE index 6d4b76166f5..03b45f131f6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_403.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_403.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_403.yml b/src/licensedcode/data/rules/lgpl-2.1_403.yml deleted file mode 100644 index 50f26cdf4f7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_403.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-2.1_404.RULE b/src/licensedcode/data/rules/lgpl-2.1_404.RULE index f529d42dbd3..9d94b923261 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_404.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_404.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL version 2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_404.yml b/src/licensedcode/data/rules/lgpl-2.1_404.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_404.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_405.RULE b/src/licensedcode/data/rules/lgpl-2.1_405.RULE index 2fd5e0f6b2a..0690f925a4e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_405.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_405.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL version 2.1 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_405.yml b/src/licensedcode/data/rules/lgpl-2.1_405.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_405.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_406.RULE b/src/licensedcode/data/rules/lgpl-2.1_406.RULE index b22c6df9a4e..085fd4085b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_406.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_406.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LGPL, version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_406.yml b/src/licensedcode/data/rules/lgpl-2.1_406.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_406.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_407.RULE b/src/licensedcode/data/rules/lgpl-2.1_407.RULE index d14e2cd6c11..35b010fbf80 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_407.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_407.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/LGPL-2.1 +--- + http://opensource.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_407.yml b/src/licensedcode/data/rules/lgpl-2.1_407.yml deleted file mode 100644 index 3b7cc5d52b9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_407.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_408.RULE b/src/licensedcode/data/rules/lgpl-2.1_408.RULE index 5069550049b..64f5820b74c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_408.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_408.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LGPL-2.1-only +--- + https://licenses.nuget.org/LGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_408.yml b/src/licensedcode/data/rules/lgpl-2.1_408.yml deleted file mode 100644 index a9210efabb0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_408.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LGPL-2.1-only diff --git a/src/licensedcode/data/rules/lgpl-2.1_409.RULE b/src/licensedcode/data/rules/lgpl-2.1_409.RULE index ebb0540cbfe..c2b01b68307 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_409.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_409.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_409.yml b/src/licensedcode/data/rules/lgpl-2.1_409.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_409.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_41.RULE b/src/licensedcode/data/rules/lgpl-2.1_41.RULE index 11c3fd10d87..4fb4f24840f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_41.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_41.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + GNU Library General Public License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_41.yml b/src/licensedcode/data/rules/lgpl-2.1_41.yml deleted file mode 100644 index 705452629d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_41.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_410.RULE b/src/licensedcode/data/rules/lgpl-2.1_410.RULE index 9309cbcb3c7..7ca29ba4cfe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_410.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_410.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + licenses: LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_410.yml b/src/licensedcode/data/rules/lgpl-2.1_410.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_410.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_411.RULE b/src/licensedcode/data/rules/lgpl-2.1_411.RULE index 406c1bc2807..df86421fa4f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_411.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_411.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +--- + licenses: lGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_411.yml b/src/licensedcode/data/rules/lgpl-2.1_411.yml deleted file mode 100644 index b14a280a5da..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_411.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_412.RULE b/src/licensedcode/data/rules/lgpl-2.1_412.RULE index 35ed31f212a..bae2be77810 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_412.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_412.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.1 +--- + {{LGPL-2.1}} https://spdx.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_412.yml b/src/licensedcode/data/rules/lgpl-2.1_412.yml deleted file mode 100644 index 63787165345..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_412.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_413.RULE b/src/licensedcode/data/rules/lgpl-2.1_413.RULE index d16516f6246..2c48bb9dec6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_413.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_413.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.1-only +--- + {{LGPL-2.1-only}} https://spdx.org/licenses/LGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_413.yml b/src/licensedcode/data/rules/lgpl-2.1_413.yml deleted file mode 100644 index 996c70580b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_413.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.1-only diff --git a/src/licensedcode/data/rules/lgpl-2.1_414.RULE b/src/licensedcode/data/rules/lgpl-2.1_414.RULE index 27c62689a20..742e2f769b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_414.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_414.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.1 +--- + LICENSE {{LGPL-2.1}} https://spdx.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_414.yml b/src/licensedcode/data/rules/lgpl-2.1_414.yml deleted file mode 100644 index 63787165345..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_414.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_415.RULE b/src/licensedcode/data/rules/lgpl-2.1_415.RULE index 66b0d4d7172..875f54ac187 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_415.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_415.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-2.1-only +--- + LICENSE {{LGPL-2.1-only}} https://spdx.org/licenses/LGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_415.yml b/src/licensedcode/data/rules/lgpl-2.1_415.yml deleted file mode 100644 index 996c70580b7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_415.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-2.1-only diff --git a/src/licensedcode/data/rules/lgpl-2.1_416.RULE b/src/licensedcode/data/rules/lgpl-2.1_416.RULE index 651622032cb..81f95d0e05f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_416.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_416.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + covered under the LGPL_2.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_416.yml b/src/licensedcode/data/rules/lgpl-2.1_416.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_416.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_417.RULE b/src/licensedcode/data/rules/lgpl-2.1_417.RULE index 346eb373a17..d87ac03d5e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_417.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_417.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + images provided with this release are statically linked with the following [GNU LGPL-2.1][lgpl-2.1] licensed library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_417.yml b/src/licensedcode/data/rules/lgpl-2.1_417.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_417.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_418.RULE b/src/licensedcode/data/rules/lgpl-2.1_418.RULE index 06c194c3893..47d5428585d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_418.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_418.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + However, in order to comply with the LGPL-2.1 (§6(a)), we attach the complete source code for the library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_418.yml b/src/licensedcode/data/rules/lgpl-2.1_418.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_418.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_419.RULE b/src/licensedcode/data/rules/lgpl-2.1_419.RULE index 485c2941582..9e6a694bd17 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_419.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_419.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + [lgpl-2.1]: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_419.yml b/src/licensedcode/data/rules/lgpl-2.1_419.yml deleted file mode 100644 index 6522f77f688..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_419.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_42.RULE b/src/licensedcode/data/rules/lgpl-2.1_42.RULE index cf5de1cebeb..dc96fe50aa9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_42.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_42.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_42.yml b/src/licensedcode/data/rules/lgpl-2.1_42.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_42.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_420.RULE b/src/licensedcode/data/rules/lgpl-2.1_420.RULE index 6e57c6d1a1a..c9115529097 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_420.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_420.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + You are licensed to use this software under the terms of the Lesser GNU LGPL version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_420.yml b/src/licensedcode/data/rules/lgpl-2.1_420.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_420.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_421.RULE b/src/licensedcode/data/rules/lgpl-2.1_421.RULE index 452b44415da..4a7f14bdd07 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_421.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_421.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + You are licensed to use this software under the terms of the Lesser GNU LGPL versions 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_421.yml b/src/licensedcode/data/rules/lgpl-2.1_421.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_421.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_422.RULE b/src/licensedcode/data/rules/lgpl-2.1_422.RULE index 2b42e0c94eb..37d7b41c921 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_422.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_422.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + You are licensed to use this software under the terms of the Lesser GNU General Public License (LGPL) version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_422.yml b/src/licensedcode/data/rules/lgpl-2.1_422.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_422.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_423.RULE b/src/licensedcode/data/rules/lgpl-2.1_423.RULE index 614057c4f8e..23899774a1f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_423.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_423.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + You are licensed to use this software under the terms of the Lesser GNU General Public License (LGPL) versions 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_423.yml b/src/licensedcode/data/rules/lgpl-2.1_423.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_423.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_424.RULE b/src/licensedcode/data/rules/lgpl-2.1_424.RULE index c5e5b568676..7bf7fd88d5a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_424.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_424.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Lesser GNU LGPL version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_424.yml b/src/licensedcode/data/rules/lgpl-2.1_424.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_424.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_425.RULE b/src/licensedcode/data/rules/lgpl-2.1_425.RULE index 2777a606372..6ff6f2d06b7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_425.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_425.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Lesser GNU LGPL versions 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_425.yml b/src/licensedcode/data/rules/lgpl-2.1_425.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_425.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_426.RULE b/src/licensedcode/data/rules/lgpl-2.1_426.RULE index b1caf761f35..243b875f13d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_426.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_426.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Lesser GNU General Public License (LGPL) version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_426.yml b/src/licensedcode/data/rules/lgpl-2.1_426.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_426.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_427.RULE b/src/licensedcode/data/rules/lgpl-2.1_427.RULE index 9d249b213c4..5a4879169a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_427.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_427.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Lesser GNU General Public License (LGPL) versions 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_427.yml b/src/licensedcode/data/rules/lgpl-2.1_427.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_427.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_428.RULE b/src/licensedcode/data/rules/lgpl-2.1_428.RULE index dcfc5eef760..e3161827b28 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_428.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_428.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Lesser GNU General Public License versions 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_428.yml b/src/licensedcode/data/rules/lgpl-2.1_428.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_428.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_429.RULE b/src/licensedcode/data/rules/lgpl-2.1_429.RULE index 1cea3ed5401..02a9ced87a5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_429.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_429.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License 2.1 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_429.yml b/src/licensedcode/data/rules/lgpl-2.1_429.yml deleted file mode 100644 index fb830b1203d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_429.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.1_43.RULE b/src/licensedcode/data/rules/lgpl-2.1_43.RULE index 8af5df7ac7c..0b42331ee41 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_43.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_43.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + The LGPL License ---------------------------- @@ -458,4 +469,4 @@ 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. -END OF TERMS AND CONDITIONS +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_43.yml b/src/licensedcode/data/rules/lgpl-2.1_43.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_43.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_44.RULE b/src/licensedcode/data/rules/lgpl-2.1_44.RULE index 6a64a6f491c..dd49c505c0d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_44.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_44.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_44.yml b/src/licensedcode/data/rules/lgpl-2.1_44.yml deleted file mode 100644 index ca6dcbacd32..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_45.RULE b/src/licensedcode/data/rules/lgpl-2.1_45.RULE index bef647c94c5..74cd966b0d5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_45.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_45.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 @@ -511,5 +522,4 @@ Random Hacker. , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_45.yml b/src/licensedcode/data/rules/lgpl-2.1_45.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_45.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_46.RULE b/src/licensedcode/data/rules/lgpl-2.1_46.RULE index 3050b2eab1c..7e2f172094e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_46.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_46.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + are licensed under the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_46.yml b/src/licensedcode/data/rules/lgpl-2.1_46.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_47.RULE b/src/licensedcode/data/rules/lgpl-2.1_47.RULE index ffd842db1d7..ba965a56678 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_47.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_47.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + This is free software; see lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_47.yml b/src/licensedcode/data/rules/lgpl-2.1_47.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_48.RULE b/src/licensedcode/data/rules/lgpl-2.1_48.RULE index f2d3a8fade1..a1801bff5d1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_48.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_48.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +minimum_coverage: 40 +referenced_filenames: + - COPYING.LIB +--- + This file is subject to the terms and conditions of the GNU Lesser General Public License. See the file "COPYING.LIB" in the main -directory of this archive for more details. +directory of this archive for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_48.yml b/src/licensedcode/data/rules/lgpl-2.1_48.yml deleted file mode 100644 index 75e758d7ed4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -minimum_coverage: 40 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-2.1_49.RULE b/src/licensedcode/data/rules/lgpl-2.1_49.RULE index f7731cda586..6f4814d1bd1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_49.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_49.RULE @@ -1,5 +1,11 @@ +--- +license_expression: lgpl-2.1 AND gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 75 +--- + 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. - Note: Only headers are LGPL, C code is covered by GPL. + Note: Only headers are LGPL, C code is covered by GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_49.yml b/src/licensedcode/data/rules/lgpl-2.1_49.yml deleted file mode 100644 index e3d6b37e283..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 75 diff --git a/src/licensedcode/data/rules/lgpl-2.1_5.RULE b/src/licensedcode/data/rules/lgpl-2.1_5.RULE index 5218339a3fc..7f30f97cfd5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_5.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_5.yml b/src/licensedcode/data/rules/lgpl-2.1_5.yml deleted file mode 100644 index ca6dcbacd32..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_50.RULE b/src/licensedcode/data/rules/lgpl-2.1_50.RULE index b3ee4353c54..d079ddd70a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_50.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_50.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; @@ -9,4 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public -License along with this program; if not, see +License along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_50.yml b/src/licensedcode/data/rules/lgpl-2.1_50.yml deleted file mode 100644 index 63c73272cb8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_50.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-2.1_51.RULE b/src/licensedcode/data/rules/lgpl-2.1_51.RULE index 49babbbc58b..2a9454c1515 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_51.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_51.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +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. @@ -10,4 +15,4 @@ You should have received a copy of the GNU Lesser General Public License along with this program; if not, write the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -/ +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_51.yml b/src/licensedcode/data/rules/lgpl-2.1_51.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_51.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_52.RULE b/src/licensedcode/data/rules/lgpl-2.1_52.RULE index 9a43374e1ab..183cc79fa1c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_52.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_52.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This header is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License. @@ -7,4 +14,4 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this header. If not, see . +along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_52.yml b/src/licensedcode/data/rules/lgpl-2.1_52.yml deleted file mode 100644 index 9234c3cf9bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_52.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_53.RULE b/src/licensedcode/data/rules/lgpl-2.1_53.RULE index 6b38de4c8e5..3b522aaa57a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_53.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_53.RULE @@ -1,7 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_53.yml b/src/licensedcode/data/rules/lgpl-2.1_53.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_53.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_54.RULE b/src/licensedcode/data/rules/lgpl-2.1_54.RULE index 299a7dd6486..f262d6c3ca6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_54.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_54.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +minimum_coverage: 80 +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. @@ -9,4 +15,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_54.yml b/src/licensedcode/data/rules/lgpl-2.1_54.yml deleted file mode 100644 index 5eb257e5d17..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/lgpl-2.1_55.RULE b/src/licensedcode/data/rules/lgpl-2.1_55.RULE index 8e89f0c037e..34acfc36345 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_55.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_55.RULE @@ -1,6 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/lgpl.html + - http://www.opensource.org/licenses/lgpl-license.html +--- + The code contained herein is licensed under the GNU Lesser General Public License. You may obtain a copy of the GNU Lesser General Public License Version 2.1 or later at the following locations: http://www.opensource.org/licenses/lgpl-license.html -http://www.gnu.org/copyleft/lgpl.html +http://www.gnu.org/copyleft/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_55.yml b/src/licensedcode/data/rules/lgpl-2.1_55.yml deleted file mode 100644 index e865f1da4a9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/lgpl.html - - http://www.opensource.org/licenses/lgpl-license.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_56.RULE b/src/licensedcode/data/rules/lgpl-2.1_56.RULE index e55e28997b0..06a942e0351 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_56.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_56.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +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; @@ -10,4 +15,4 @@ 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, Fifth Floor, Boston, MA 02110-1301 USA. +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/lgpl-2.1_56.yml b/src/licensedcode/data/rules/lgpl-2.1_56.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_57.RULE b/src/licensedcode/data/rules/lgpl-2.1_57.RULE index b59ea1a7a33..91e40a82ad5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_57.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_57.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. @@ -5,4 +10,4 @@ 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. +GNU General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_57.yml b/src/licensedcode/data/rules/lgpl-2.1_57.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_58.RULE b/src/licensedcode/data/rules/lgpl-2.1_58.RULE index 72791666656..dfdf3f0c89e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_58.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_58.RULE @@ -1,6 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This 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. See file COPYING. - + Foundation. See file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_58.yml b/src/licensedcode/data/rules/lgpl-2.1_58.yml deleted file mode 100644 index 482d3eaa543..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_58.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1_59.RULE b/src/licensedcode/data/rules/lgpl-2.1_59.RULE index 15a6745db37..e97f9605d1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_59.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_59.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This code 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. @@ -5,4 +10,4 @@ This code 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. + GNU LESSER GENERAL PUBLIC LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_59.yml b/src/licensedcode/data/rules/lgpl-2.1_59.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_6.RULE b/src/licensedcode/data/rules/lgpl-2.1_6.RULE index a4a4e23162d..e9298f55c9b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_6.RULE @@ -1 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: This text is from the GPL 2.0 with a manual replacement to make it look like an LGPL + 2.1 notice. This introduces a bias in license detection towards GPL 2.0 when this is really + an LGPL 2.1 license. This weird license header was originally found in the source code of + the http://sourceforge.net/projects/glassbox/ project. +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.txt +--- + This program along with all accompanying source code and applicable materials are made available under the terms of the Lesser Gnu Public License v2.1, which accompanies this distribution and is available at http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_6.yml b/src/licensedcode/data/rules/lgpl-2.1_6.yml deleted file mode 100644 index 14793593570..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: This text is from the GPL 2.0 with a manual replacement to make it look like an LGPL - 2.1 notice. This introduces a bias in license detection towards GPL 2.0 when this is really - an LGPL 2.1 license. This weird license header was originally found in the source code of - the http://sourceforge.net/projects/glassbox/ project. -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_60.RULE b/src/licensedcode/data/rules/lgpl-2.1_60.RULE index 9a83d98c03b..48678455a32 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_60.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_60.RULE @@ -1,4 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + Code adapted from uClibc It is therefore covered by the GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 + Version 2.1, February 1999 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_60.yml b/src/licensedcode/data/rules/lgpl-2.1_60.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_60.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_61.RULE b/src/licensedcode/data/rules/lgpl-2.1_61.RULE index b1d19ac5cba..5c282f62381 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_61.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_61.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + It is therefore covered by the GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 + Version 2.1, February 1999 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_61.yml b/src/licensedcode/data/rules/lgpl-2.1_61.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_62.RULE b/src/licensedcode/data/rules/lgpl-2.1_62.RULE index 803a58193c4..1367d1caeb3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_62.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_62.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + available under the Lesser General Public Licence (LGPL) Version 2.1 (http://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_62.yml b/src/licensedcode/data/rules/lgpl-2.1_62.yml deleted file mode 100644 index a16d6c5f0e3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_62.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_63.RULE b/src/licensedcode/data/rules/lgpl-2.1_63.RULE index eab44d3aac1..db9766e87b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_63.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_63.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + Licence -Licensed under the Lesser General Public Licence (LGPL) Version 2.1 (http://www.gnu.org/licenses/lgpl-2.1.html) +Licensed under the Lesser General Public Licence (LGPL) Version 2.1 (http://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_63.yml b/src/licensedcode/data/rules/lgpl-2.1_63.yml deleted file mode 100644 index a16d6c5f0e3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_63.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_64.RULE b/src/licensedcode/data/rules/lgpl-2.1_64.RULE index d149b57176a..f6cb475b44f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_64.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_64.RULE @@ -1,2 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This file is subject to the terms and conditions of version 2.1 of the GNU -Lesser General Public License as published by the Free Software Foundation. +Lesser General Public License as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_64.yml b/src/licensedcode/data/rules/lgpl-2.1_64.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_64.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_65.RULE b/src/licensedcode/data/rules/lgpl-2.1_65.RULE index 9d02c0c756e..dea07ab97de 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_65.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_65.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; @@ -6,4 +11,4 @@ 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. + Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_65.yml b/src/licensedcode/data/rules/lgpl-2.1_65.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_65.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_66.RULE b/src/licensedcode/data/rules/lgpl-2.1_66.RULE index cc667f43366..53081da63fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_66.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_66.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/ +--- + 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; version 2.1 of @@ -11,4 +18,4 @@ You should have received a copy of the GNU Lesser General Public License along with this software; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - 02110-1301 USA, or see the FSF site: http://www.fsf.org. + 02110-1301 USA, or see the FSF site: http://www.fsf.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_66.yml b/src/licensedcode/data/rules/lgpl-2.1_66.yml deleted file mode 100644 index bb923312ffb..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_66.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_67.RULE b/src/licensedcode/data/rules/lgpl-2.1_67.RULE index 3693c75a77b..76d7baf8274 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_67.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_67.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_67.yml b/src/licensedcode/data/rules/lgpl-2.1_67.yml deleted file mode 100644 index 06b2281c9f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_68.RULE b/src/licensedcode/data/rules/lgpl-2.1_68.RULE index fb82f1536b1..1d223302418 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_68.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_68.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +notes: LGPL 2.1 notice +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_68.yml b/src/licensedcode/data/rules/lgpl-2.1_68.yml deleted file mode 100644 index b9c37e55f91..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_68.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -notes: LGPL 2.1 notice -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_69.RULE b/src/licensedcode/data/rules/lgpl-2.1_69.RULE index 8695091a80f..58c14c4268c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_69.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_69.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +notes: LGPL 2.1 notice +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_69.yml b/src/licensedcode/data/rules/lgpl-2.1_69.yml deleted file mode 100644 index 0a649c992e3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_69.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -notes: LGPL 2.1 notice -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_7.RULE b/src/licensedcode/data/rules/lgpl-2.1_7.RULE index c0f4d2c2de1..85f3a0d8b1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_7.yml b/src/licensedcode/data/rules/lgpl-2.1_7.yml deleted file mode 100644 index 2a3112c2cba..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/lgpl-2.1_70.RULE b/src/licensedcode/data/rules/lgpl-2.1_70.RULE index 9e8b73deb09..c5e9e3793da 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_70.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_70.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_70.yml b/src/licensedcode/data/rules/lgpl-2.1_70.yml deleted file mode 100644 index 8a750425ae9..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_71.RULE b/src/licensedcode/data/rules/lgpl-2.1_71.RULE index 0c1d2e2e565..ac8e1dda0f1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_71.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_71.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.txt +--- + https://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_71.yml b/src/licensedcode/data/rules/lgpl-2.1_71.yml deleted file mode 100644 index 097da9ffa9a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_72.RULE b/src/licensedcode/data/rules/lgpl-2.1_72.RULE index 5f572fdf143..19b1090951d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_72.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_72.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1 +--- + www.gnu.org/licenses/lgpl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_72.yml b/src/licensedcode/data/rules/lgpl-2.1_72.yml deleted file mode 100644 index cb70378ac94..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_73.RULE b/src/licensedcode/data/rules/lgpl-2.1_73.RULE index 47eae8d4353..a08a4ccd7c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_73.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_73.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.en.html +--- + http://www.gnu.org/licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_73.yml b/src/licensedcode/data/rules/lgpl-2.1_73.yml deleted file mode 100644 index 4388e910296..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_74.RULE b/src/licensedcode/data/rules/lgpl-2.1_74.RULE index 4ff2e336362..11ca008f503 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_74.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_74.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-2.1.en.html +--- + https://www.gnu.org/licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_74.yml b/src/licensedcode/data/rules/lgpl-2.1_74.yml deleted file mode 100644 index 11562efc238..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_75.RULE b/src/licensedcode/data/rules/lgpl-2.1_75.RULE index c427912dcf9..dc30bb26530 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_75.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_75.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/LGPL/2.1 +--- + https://creativecommons.org/licenses/LGPL/2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_75.yml b/src/licensedcode/data/rules/lgpl-2.1_75.yml deleted file mode 100644 index f961d9d93c4..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/LGPL/2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_76.RULE b/src/licensedcode/data/rules/lgpl-2.1_76.RULE index 8eba9690390..0c2a6e48ca7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_76.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_76.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/LGPL-2.1 +--- + http://www.opensource.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_76.yml b/src/licensedcode/data/rules/lgpl-2.1_76.yml deleted file mode 100644 index 6f5f10f17b0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_76.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_77.RULE b/src/licensedcode/data/rules/lgpl-2.1_77.RULE index 327536baa91..1f579b87f12 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_77.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_77.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/LGPL-2.1 +--- + https://opensource.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_77.yml b/src/licensedcode/data/rules/lgpl-2.1_77.yml deleted file mode 100644 index c556340dd17..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_78.RULE b/src/licensedcode/data/rules/lgpl-2.1_78.RULE index f8ca5ef4f54..40eb2c358b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_78.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_78.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_78.yml b/src/licensedcode/data/rules/lgpl-2.1_78.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_79.RULE b/src/licensedcode/data/rules/lgpl-2.1_79.RULE index da24bee7110..7ab6f9f206b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_79.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_79.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + Please also see the LICENSE file for our notice and the LGPL. This program is free software; you can redistribute it and/or modify @@ -9,4 +14,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and conditions of 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, write to the Free Software Foundation, -Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +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-2.1_79.yml b/src/licensedcode/data/rules/lgpl-2.1_79.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_79.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_8.RULE b/src/licensedcode/data/rules/lgpl-2.1_8.RULE index b56799a41aa..ac3c979bdfc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_8.RULE @@ -1 +1,9 @@ -http://i.creativecommons.org/l/LGPL/2.1/ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://i.creativecommons.org/l/LGPL/2.1/ +--- + +http://i.creativecommons.org/l/LGPL/2.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_8.yml b/src/licensedcode/data/rules/lgpl-2.1_8.yml deleted file mode 100644 index 87dd5bdab7b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://i.creativecommons.org/l/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_80.RULE b/src/licensedcode/data/rules/lgpl-2.1_80.RULE index f671d51942a..5225a0ea7c4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_80.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_80.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +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) version 2.1 dated February 1999. @@ -7,4 +12,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and conditions of 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, write to the Free Software Foundation, -Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +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-2.1_80.yml b/src/licensedcode/data/rules/lgpl-2.1_80.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_80.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_81.RULE b/src/licensedcode/data/rules/lgpl-2.1_81.RULE index 093dfccdd5e..1ede0d47c47 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_81.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_81.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 99 +--- + Copyright: diff --git a/src/licensedcode/data/rules/lgpl-2.1_81.yml b/src/licensedcode/data/rules/lgpl-2.1_81.yml deleted file mode 100644 index 320eb3e620f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.1_82.RULE b/src/licensedcode/data/rules/lgpl-2.1_82.RULE index a58b62edc12..c548d68a176 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_82.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_82.RULE @@ -1 +1,9 @@ -/usr/share/common-licenses/LGPL-2.1 +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 +--- + +/usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_82.yml b/src/licensedcode/data/rules/lgpl-2.1_82.yml deleted file mode 100644 index fc2c38c8a67..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_83.RULE b/src/licensedcode/data/rules/lgpl-2.1_83.RULE index 66b6418924e..5a5571fbdfc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_83.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_83.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 @@ -453,5 +464,4 @@ 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. - +DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_83.yml b/src/licensedcode/data/rules/lgpl-2.1_83.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_83.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_84.RULE b/src/licensedcode/data/rules/lgpl-2.1_84.RULE index 15a6b3d717e..a221272cdf4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_84.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_84.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License v2.1 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_84.yml b/src/licensedcode/data/rules/lgpl-2.1_84.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_85.RULE b/src/licensedcode/data/rules/lgpl-2.1_85.RULE index 41d5800dcab..f7d56218646 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_85.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_85.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_85.yml b/src/licensedcode/data/rules/lgpl-2.1_85.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_86.RULE b/src/licensedcode/data/rules/lgpl-2.1_86.RULE index e890789d913..bcdc0cebf06 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_86.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_86.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/lgpl-2.1 +--- + License: [`lgpl-2.1`](http://choosealicense.com/licenses/lgpl-2.1/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_86.yml b/src/licensedcode/data/rules/lgpl-2.1_86.yml deleted file mode 100644 index ae34de9fbd2..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/lgpl-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_87.RULE b/src/licensedcode/data/rules/lgpl-2.1_87.RULE index 89ed676593f..fea085cde2d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_87.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_87.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + That is released under GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_87.yml b/src/licensedcode/data/rules/lgpl-2.1_87.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_88.RULE b/src/licensedcode/data/rules/lgpl-2.1_88.RULE index 29e016942a8..48787cb7930 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_88.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_88.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +--- + LGPL v2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_88.yml b/src/licensedcode/data/rules/lgpl-2.1_88.yml deleted file mode 100644 index 9ea4e2c0146..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_89.RULE b/src/licensedcode/data/rules/lgpl-2.1_89.RULE index 208f33efad2..dd6cbe20339 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_89.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_89.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -10,4 +15,4 @@ 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 St, Fifth Floor, Boston, MA 02110-1301, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_89.yml b/src/licensedcode/data/rules/lgpl-2.1_89.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_89.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_9.RULE b/src/licensedcode/data/rules/lgpl-2.1_9.RULE index 68c6aaa8423..335c2a264c1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/LGPL/2.1/ +--- + Creative Commons License "http://creativecommons.org/licenses/LGPL/2.1/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_9.yml b/src/licensedcode/data/rules/lgpl-2.1_9.yml deleted file mode 100644 index 1c0a3b5a742..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/LGPL/2.1/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_90.RULE b/src/licensedcode/data/rules/lgpl-2.1_90.RULE index 103be1fa221..23873a04dd7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_90.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_90.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_90.yml b/src/licensedcode/data/rules/lgpl-2.1_90.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_90.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_91.RULE b/src/licensedcode/data/rules/lgpl-2.1_91.RULE index 100037230d4..55edc7c81f3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_91.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_91.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + // SPDX-License-Identifier: LGPL-2.1 /* * @@ -5,4 +11,4 @@ * Linux Kernel that were written by gave his permission to relicense the code to - * the Lesser General Public License. + * the Lesser General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_91.yml b/src/licensedcode/data/rules/lgpl-2.1_91.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_92.RULE b/src/licensedcode/data/rules/lgpl-2.1_92.RULE index 462e09f2973..1e48036aef1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_92.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_92.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms and conditions of the GNU Lesser General Public License, version 2.1, as published by the Free Software Foundation. @@ -5,4 +10,4 @@ version 2.1, as published by the Free Software Foundation. This program is distributed in the hope 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. +more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_92.yml b/src/licensedcode/data/rules/lgpl-2.1_92.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_92.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_93.RULE b/src/licensedcode/data/rules/lgpl-2.1_93.RULE index 96f0d5d37f5..83edc32145d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_93.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_93.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; only @@ -6,4 +11,4 @@ version 2.1 of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_93.yml b/src/licensedcode/data/rules/lgpl-2.1_93.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_94.RULE b/src/licensedcode/data/rules/lgpl-2.1_94.RULE index 3bc7272acde..4ec23c4fe73 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_94.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_94.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_94.yml b/src/licensedcode/data/rules/lgpl-2.1_94.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_94.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_95.RULE b/src/licensedcode/data/rules/lgpl-2.1_95.RULE index 85f0f739ba3..7c671961f59 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_95.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_95.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + // This code is a derivative work of the LGPL code at // License: LGPL 2.1 (same terms as original code) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_95.yml b/src/licensedcode/data/rules/lgpl-2.1_95.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_95.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_96.RULE b/src/licensedcode/data/rules/lgpl-2.1_96.RULE index e36c3260082..c7164f6f8a7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_96.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_96.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + # This is free software, licensed under: # # The GNU Lesser General Public License, Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_96.yml b/src/licensedcode/data/rules/lgpl-2.1_96.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_97.RULE b/src/licensedcode/data/rules/lgpl-2.1_97.RULE index 5ccba5000dd..be969b05f1f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_97.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_97.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html + - http://www.gnu.org/licenses/lgpl.html +--- + This program and the accompanying materials * are made available under the terms of the GNU Lesser General Public License * (LGPL) version 2.1 which accompanies this distribution, and is available at diff --git a/src/licensedcode/data/rules/lgpl-2.1_97.yml b/src/licensedcode/data/rules/lgpl-2.1_97.yml deleted file mode 100644 index 79324515e4d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_98.RULE b/src/licensedcode/data/rules/lgpl-2.1_98.RULE index 98bc6790ec3..1db052adfd9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_98.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_98.RULE @@ -1,5 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html +--- + This program and the accompanying materials * are made available under the terms of the GNU Lesser General Public License * (LGPL) version 2.1 which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-2.1.html - * + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_98.yml b/src/licensedcode/data/rules/lgpl-2.1_98.yml deleted file mode 100644 index a16d6c5f0e3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_98.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_99.RULE b/src/licensedcode/data/rules/lgpl-2.1_99.RULE index 72a53dbf42a..8f3e1203d13 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_99.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_99.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - lgpl-v21.txt +ignorable_urls: + - http://www.gnu.org/ + - http://www.gnu.org/licenses/lgpl.html +--- + * The contents of this file are made available under the terms * of the GNU Lesser General Public License (LGPL) Version 2.1 that * accompanies this distribution (lgpl-v21.txt). The LGPL is also @@ -5,4 +15,4 @@ * of the LGPL at http://www.gnu.org is different to the version of * the LGPL accompanying this distribution and there is any conflict * between the two license versions, the terms of the LGPL accompanying -* this distribution shall govern. +* this distribution shall govern. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_99.yml b/src/licensedcode/data/rules/lgpl-2.1_99.yml deleted file mode 100644 index 66b0eabda6f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_99.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - lgpl-v21.txt -ignorable_urls: - - http://www.gnu.org/ - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_alternative.RULE b/src/licensedcode/data/rules/lgpl-2.1_alternative.RULE index d8c9cefe606..bade9d0a907 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_alternative.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_alternative.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 @@ -508,6 +519,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - - +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_alternative.yml b/src/licensedcode/data/rules/lgpl-2.1_alternative.yml deleted file mode 100644 index c867da2d68e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_alternative.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.RULE index cb94665a703..9591ff3d4bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + License Agreement. * * This library is free software; you can redistribute it and/or @@ -12,5 +17,4 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.yml b/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.yml deleted file mode 100644 index 2f63b78d973..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.RULE index d9c53bc7a7f..c7c12aaaf1c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1 AND commons-clause +is_license_notice: yes +relevance: 100 +notes: this is a likely license conflict, seen in semgrep +--- + license: Commons Clause License Condition v1.0[LGPL-2.1-only] \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.yml deleted file mode 100644 index 5b4bbf221c5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 AND commons-clause -is_license_notice: yes -relevance: 100 -notes: this is a likely license conflict, seen in semgrep diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_1.RULE index 56c977fde0c..82c5195cfa5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_1.RULE @@ -1,6 +1,12 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 +is_license_notice: yes +notes: classic library lgpl and tools gpl combo +--- + library itself is released under the GNU Lesser General Public License, see the text of the GNU LGPL below. The executable programs in the bin, examples, and libtest directories are release under the GNU General Public License, see the text of the -GNU GPL below. +GNU GPL below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_1.yml deleted file mode 100644 index 228b02d7501..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 -is_license_notice: yes -notes: classic library lgpl and tools gpl combo diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_2.RULE index 894b49d2215..83f5a9a3c07 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_2.RULE @@ -1,5 +1,12 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING.LGPL +--- + Most components of the "" package are licensed under Version 2.1 of the GNU Lesser General Public License (see COPYING.LGPL). Some components (as annotated in the source) are licensed -under Version 2 of the GNU General Public License (see below), +under Version 2 of the GNU General Public License (see below), \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_2.yml deleted file mode 100644 index 432324b6e6a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING.LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_3.RULE index d48fa743f12..482e145e070 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + Most components of the "" package are licensed under Version 2.1 of the GNU Lesser General Public License (see below). below. diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_3.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_3.yml deleted file mode 100644 index d4587bde84a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_4.RULE index 84cd2be2b1a..5b8e45bee66 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPL +--- + Most components of the "acl" package are licensed under Version 2.1 of the GNU Lesser General Public License (see COPYING.LGPL). diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_4.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_4.yml deleted file mode 100644 index 8731ccc7148..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_5.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_5.RULE index 80b75faf1c3..3cd50e4c38f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Most components of the "acl" package are licensed under Version 2.1 of the GNU Lesser General Public License (see below). below. diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_5.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_5.yml deleted file mode 100644 index d76e6d1ee70..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0.RULE index be30d142b0e..4941f1861e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 +is_license_notice: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems, the complete text of the licenses can be found in: GNU Lesser General Public License - `/usr/share/common-licenses/LGPL-2.1', GNU General Public License v2 - `/usr/share/common-licenses/GPL-2', diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0.yml deleted file mode 100644 index 2b60b9a32f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 -is_license_notice: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_1.RULE index d87e8f423d6..652a045c5f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 +is_license_notice: yes +minimum_coverage: 60 +--- + are licensed under the terms of the GNU Lesser General Public License version 2.1 (“LGPL”) and/or the GNU General Public License versions 2.0 and 3.0 -(“GPL”) \ No newline at end of file +(“GPL”) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_1.yml deleted file mode 100644 index 2b2cffb574f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_2.RULE index 8657f95d201..7d48ce8ee5a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/info/GPLv2.html + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + under the terms of the GNU Lesser General Public License version 2.1 (Qt only) or GNU General Public License version 2.0 (Qt, Qtopia and Qt Extended) or version 3 (Qt only) copies of which are diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_2.yml deleted file mode 100644 index 67ec1fbd4a8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/info/GPLv2.html - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE index b3fe5ed4ee6..c6a635a9cbe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - COPYING.LGPLv2.1 + - COPYING.GPLv2 + - COPYING.GPLv3 +--- + The following license texts are included in the following files: - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1 - COPYING.GPLv2: GNU General Public License version 2 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.yml deleted file mode 100644 index dc05ca8898d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - COPYING.LGPLv2.1 - - COPYING.GPLv2 - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_4.RULE index 75affca5c49..ee1689230bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/GPL-3 +--- + On Debian GNU/Linux systems, the complete text of the licenses can be found in: GNU Lesser General Public License - `/usr/share/common-licenses/LGPL-2.1', GNU General Public License v2 - `/usr/share/common-licenses/GPL-2', diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_4.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_4.yml deleted file mode 100644 index 2bfc1947b33..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_5.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_5.RULE index 70a7c1e1be8..1945225adab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/info/GPLv2.html + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + under the terms of the GNU Lesser General Public License version 2.1 (Qt only) or GNU General Public License version 2.0 (Qt, Qtopia and Qt Extended) or version 3 (Qt only) copies of which are diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_5.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_5.yml deleted file mode 100644 index 40ed963dd48..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/info/GPLv2.html - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_6.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_6.RULE index 4bb1b26ef99..6c9f339cf66 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_6.RULE @@ -1,4 +1,15 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - /usr/share/common-licenses/LGPL-2.1 + - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/GPL-3 +--- + On Debian systems, the text of the licenses can be found in: GNU {Lesser General Public License} - `/usr/share/common-licenses/{LGPL-2.1}', GNU {General Public License v2} - `/usr/share/common-licenses/{GPL-2}', -GNU {General Public License v3} - `/usr/share/common-licenses/{GPL-3}' +GNU {General Public License v3} - `/usr/share/common-licenses/{GPL-3}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_6.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_6.yml deleted file mode 100644 index 7fb6e6437f6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_and_gpl-3.0_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 AND gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - /usr/share/common-licenses/LGPL-2.1 - - /usr/share/common-licenses/GPL-2 - - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_ecos-exception-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_ecos-exception-2.0_1.RULE index 16c04c13856..95ff88e8200 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_ecos-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_ecos-exception-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 WITH ecos-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + License: LGPL for libftdi and GPLv2+linking exception for the C++ wrapper \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_ecos-exception-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_ecos-exception-2.0_1.yml deleted file mode 100644 index cdb60494b80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_ecos-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 WITH ecos-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_1.RULE index 916185b9388..e80444284cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +--- + License This Product is licensed under the LGPL License. diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_1.yml deleted file mode 100644 index 321225a14c1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_2.RULE index 67cfa044e61..e604d441edc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 AND gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +--- + License This Product is licenced under the LGPL License. diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_2.yml b/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_2.yml deleted file mode 100644 index 321225a14c1..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_gpl-2.0_with_generic-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 AND gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_1.RULE index 779ac371cbc..a308640b4dd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_1.RULE @@ -1 +1,8 @@ -Mix of LGPL-2.1 and LGPL-3. +--- +license_expression: lgpl-2.1 AND lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + +Mix of LGPL-2.1 and LGPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_1.yml deleted file mode 100644 index 49f971090f0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 AND lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_and_gpl-3.0_1.RULE index 7d05b752760..c3b369715e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_and_gpl-3.0_1.RULE @@ -1 +1,8 @@ -Mix of LGPL-2.1, LGPL-3 and GPL-3. +--- +license_expression: lgpl-2.1 AND lgpl-3.0 AND gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + +Mix of LGPL-2.1, LGPL-3 and GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_and_gpl-3.0_1.yml deleted file mode 100644 index 2e71ac7b0af..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_lgpl-3.0_and_gpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 AND lgpl-3.0 AND gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer.RULE index e8d3d170a75..afa39b406ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 AND patent-disclaimer +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. @@ -16,4 +21,4 @@ other software, or any other product whatsoever. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, -USA. +USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer.yml b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer.yml deleted file mode 100644 index 69b2f1422ae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 AND patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_1.RULE index 06e3ad01646..a0d8eda5da4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 AND patent-disclaimer +is_license_notice: yes +notes: Seen in libdwarf +ignorable_urls: + - http://oss.sgi.com/projects/GenInfo/NoticeExplan + - http://www.sgi.com/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of {{ version 2.1 of the GNU Lesser General Public License }} as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_1.yml deleted file mode 100644 index 3bc38195182..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 AND patent-disclaimer -is_license_notice: yes -notes: Seen in libdwarf -ignorable_urls: - - http://oss.sgi.com/projects/GenInfo/NoticeExplan - - http://www.sgi.com/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_2.RULE index f63c8862259..7e285537a59 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 AND patent-disclaimer +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_2.yml b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_2.yml deleted file mode 100644 index 69b2f1422ae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 AND patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_3.RULE index 98507e31eaf..afd649a9b0e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 AND patent-disclaimer +is_license_notice: yes +--- + This program is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_3.yml b/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_3.yml deleted file mode 100644 index 69b2f1422ae..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_patent-disclaimer_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 AND patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_1.RULE index 11fe5d70cd7..58a85640b0c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: The nature of these "extensins" is not clear and reported as proprietary +--- + Unless otherwise indicated in components taken from elsewhere, this software is licensed under the GNU Lesser General Public License, version 2.1 ("LGPL", reproduced below), extended and modified with the following terms: diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_1.yml deleted file mode 100644 index cd6d6df8c50..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: The nature of these "extensins" is not clear and reported as proprietary diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_2.RULE index 0b47af30db5..8587b68cf4c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 AND proprietary-license +is_license_notice: yes +relevance: 100 +notes: The nature of these "extensins" is not clear and reported as proprietary +--- + Unless otherwise indicated in components taken from elsewhere, this software is licensed under the GNU Lesser General Public License, version 2.1 ("LGPL", reproduced below), extended and modified with the following terms: diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_2.yml b/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_2.yml deleted file mode 100644 index cd6d6df8c50..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_proprietary-license_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 AND proprietary-license -is_license_notice: yes -relevance: 100 -notes: The nature of these "extensins" is not clear and reported as proprietary diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_public-domain.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_public-domain.RULE index b5d278e2579..80caffd07c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_public-domain.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_public-domain.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 AND public-domain +is_license_notice: yes +--- + It is therefore covered by the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_public-domain.yml b/src/licensedcode/data/rules/lgpl-2.1_and_public-domain.yml deleted file mode 100644 index 25265d86304..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_public-domain.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 AND public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_public-domain2.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_public-domain2.RULE index ca4d363faf6..133a1d07d18 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_public-domain2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_public-domain2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 AND public-domain +is_license_notice: yes +--- + * Code adapted from uClibc * * It is therefore covered by the GNU LESSER GENERAL PUBLIC LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_public-domain2.yml b/src/licensedcode/data/rules/lgpl-2.1_and_public-domain2.yml deleted file mode 100644 index 25265d86304..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_and_public-domain2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 AND public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.RULE index d4185b785a6..1368903c1ff 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +minimum_coverage: 99 +--- + The byteswap codes are copied from: * samba_3_master/lib/ccan/endian/endian.h under LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.yml b/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.yml deleted file mode 100644 index ce9a8028b1e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/lgpl-2.1_jna.RULE b/src/licensedcode/data/rules/lgpl-2.1_jna.RULE index 5a5b7f900a0..8317956edc8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_jna.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_jna.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +referenced_filenames: + - LGPL2.1 +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html +--- + This copy of is licensed under the Lesser General Public License (LGPL), version 2.1 ("the License"). See the License for details about distribution rights, and the @@ -9,4 +18,4 @@ http://www.gnu.org/licenses/licenses.html A copy is also included in the downloadable source code package containing , in file "LGPL2.1", under the same directory -as this file. +as this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_jna.yml b/src/licensedcode/data/rules/lgpl-2.1_jna.yml deleted file mode 100644 index 3af9c3d9ebf..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_jna.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -referenced_filenames: - - LGPL2.1 -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_licensebutton.RULE b/src/licensedcode/data/rules/lgpl-2.1_licensebutton.RULE index 3b7ffadff11..4fcf24f6120 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_licensebutton.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/LGPL/2.1 +--- + https://licensebuttons.net/l/LGPL/2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_licensebutton.yml b/src/licensedcode/data/rules/lgpl-2.1_licensebutton.yml deleted file mode 100644 index b2af1a5355a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/LGPL/2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_notice.RULE b/src/licensedcode/data/rules/lgpl-2.1_notice.RULE index e418bc2446e..639df6455fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_notice.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_notice.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or @@ -6,4 +13,4 @@ the Free Software Foundation; either version 2.1 of the License, or 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. +See the GNU Lesser General Public License for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_notice.yml b/src/licensedcode/data/rules/lgpl-2.1_notice.yml deleted file mode 100644 index d50c93d7ec6..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_notice.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_1.RULE index 7c09b44a174..ee6ca00002e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Cyberboss/SmartIrc4net/blob/netstandard/LICENSE +--- + https://github.com/Cyberboss/SmartIrc4net/blob/netstandard/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_1.yml b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_1.yml deleted file mode 100644 index 6478d6b1f0b..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Cyberboss/SmartIrc4net/blob/netstandard/LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_2.RULE index 9ab94662294..b80b38825c9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/izrik/ChamberLib/blob/master/LICENSE +--- + https://github.com/izrik/ChamberLib/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_2.yml b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_2.yml deleted file mode 100644 index f438e8d1ad8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/izrik/ChamberLib/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_3.RULE index 4f2e450c6bc..d14a863e793 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/izrik/FbxSharp/blob/master/LICENSE +--- + https://github.com/izrik/FbxSharp/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_3.yml b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_3.yml deleted file mode 100644 index 3afaf294b1c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/izrik/FbxSharp/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_4.RULE index 631af465ae5..d247ba058de 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/majorsilence/MPlayerControl/master/lgpl-2.1.txt +--- + https://raw.github.com/majorsilence/MPlayerControl/master/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_4.yml b/src/licensedcode/data/rules/lgpl-2.1_nuget_url_4.yml deleted file mode 100644 index 23d6246167d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_nuget_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/majorsilence/MPlayerControl/master/lgpl-2.1.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.RULE index 28e5773dabe..db382ea21d9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.RULE @@ -1,7 +1,15 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + * GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.yml b/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.yml deleted file mode 100644 index d7e38aa6174..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.RULE index 102a0fced96..710d883b110 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.RULE @@ -1,6 +1,14 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** This file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.yml b/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.yml deleted file mode 100644 index d7e38aa6174..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_1.RULE index b8d7b423525..35b830b1a4b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: Seen in Java JNA +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - http://www.gnu.org/licenses/licenses.html +--- + LGPL, version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_1.yml deleted file mode 100644 index c4756e61cc8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: Seen in Java JNA -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - http://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_2.RULE index cbff1bc0420..dc078f37dd8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 OR apache-2.0 +is_license_tag: yes +relevance: 100 +notes: Seen in Java JNA +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - https://www.gnu.org/licenses/licenses.html +--- + LGPL, version 2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_2.yml deleted file mode 100644 index 6be0dadb5dd..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_apache-2.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 OR apache-2.0 -is_license_tag: yes -relevance: 100 -notes: Seen in Java JNA -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - https://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_1.RULE index 6674b05640f..da76931a8cd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_1.RULE @@ -1,4 +1,10 @@ +--- +license_expression: lgpl-2.1 OR bsd-simplified +is_license_notice: yes +relevance: 100 +--- + License ======= - is dual-licensed under LGPL 2.1 and BSD 2-Clause. + is dual-licensed under LGPL 2.1 and BSD 2-Clause. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_1.yml deleted file mode 100644 index fc015e70e38..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 OR bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_2.RULE index 65b69049090..0efc5957ef2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_2.RULE @@ -1 +1,7 @@ - is dual-licensed under LGPL 2.1 and BSD 2-Clause. +--- +license_expression: lgpl-2.1 OR bsd-simplified +is_license_notice: yes +relevance: 100 +--- + + is dual-licensed under LGPL 2.1 and BSD 2-Clause. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_2.yml b/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_2.yml deleted file mode 100644 index fc015e70e38..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_bsd-simplified_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 OR bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_cddl-1.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_cddl-1.0_1.RULE index 1ff8ba65279..6d74f6fb3b3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_cddl-1.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_cddl-1.0_1.RULE @@ -1,6 +1,14 @@ +--- +license_expression: lgpl-2.1 OR cddl-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +notes: https://github.com/WinMerge/freeimage/blob/410c812544728b8e30c2a6b1da93312750908632/Source/LibRawLite/internal/demosaic_packs.cpp +--- + LibRaw is free software; you can redistribute it and/or modify it under the terms of the one of two licenses as you choose: 1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1 (See file LICENSE.LGPL provided in LibRaw distribution archive for details). 2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 - (See file LICENSE.CDDL provided in LibRaw distribution archive for details). + (See file LICENSE.CDDL provided in LibRaw distribution archive for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_cddl-1.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_cddl-1.0_1.yml deleted file mode 100644 index 69d26ea4720..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_cddl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 OR cddl-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -notes: https://github.com/WinMerge/freeimage/blob/410c812544728b8e30c2a6b1da93312750908632/Source/LibRawLite/internal/demosaic_packs.cpp diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_1.RULE index 5365060603a..d4e33fd11ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 OR epl-2.0 +is_license_notice: yes +relevance: 100 +notes: See https://github.com/jgrapht/jgrapht/tree/ccd78f3efd8646160b0388b037bc11fa827bc3dc +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v20.php + - http://www.gnu.org/licenses/lgpl-2.1.html + - https://github.com/wiki/Relicensing +--- + may be used under the terms of either the GNU Lesser General Public License (LGPL) 2.1 http://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_1.yml deleted file mode 100644 index 9eabcea5bef..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 OR epl-2.0 -is_license_notice: yes -relevance: 100 -notes: See https://github.com/jgrapht/jgrapht/tree/ccd78f3efd8646160b0388b037bc11fa827bc3dc -ignorable_urls: - - http://www.eclipse.org/org/documents/epl-v20.php - - http://www.gnu.org/licenses/lgpl-2.1.html - - https://github.com/wiki/Relicensing diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_2.RULE index 57944e2c794..a67453de589 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 OR epl-2.0 +is_license_notice: yes +relevance: 100 +notes: See https://github.com/jgrapht/jgrapht/tree/ccd78f3efd8646160b0388b037bc11fa827bc3dc +ignorable_urls: + - http://www.eclipse.org/org/documents/epl-v20.php + - https://github.com/wiki/Relicensing + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + may be used under the terms of either the GNU Lesser General Public License (LGPL) 2.1 https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_2.yml deleted file mode 100644 index d739d895e43..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_epl-2.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 OR epl-2.0 -is_license_notice: yes -relevance: 100 -notes: See https://github.com/jgrapht/jgrapht/tree/ccd78f3efd8646160b0388b037bc11fa827bc3dc -ignorable_urls: - - http://www.eclipse.org/org/documents/epl-v20.php - - https://github.com/wiki/Relicensing - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_1.RULE index 6a27350761f..bc2edbbfdd0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 +is_license_notice: yes +notes: see https://community.kde.org/Policies/Licensing_Policy +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -13,4 +21,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public -License along with this library. If not, see . +License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_1.yml deleted file mode 100644 index 9dd1fd565ef..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 OR lgpl-3.0 -is_license_notice: yes -notes: see https://community.kde.org/Policies/Licensing_Policy -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_2.RULE index 128035b116d..189823193ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 OR kde-accepted-lgpl +is_license_notice: yes +notes: see https://community.kde.org/Policies/Licensing_Policy +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -12,4 +20,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public -License along with this library. If not, see . +License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_2.yml deleted file mode 100644 index 2da9a270c05..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 OR lgpl-3.0 OR kde-accepted-lgpl -is_license_notice: yes -notes: see https://community.kde.org/Policies/Licensing_Policy -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_3.RULE index 200f9307747..946885a149a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 +is_license_notice: yes +notes: see https://community.kde.org/Policies/Licensing_Policy +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_3.yml b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_3.yml deleted file mode 100644 index 1b11fd38340..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 OR lgpl-3.0 -is_license_notice: yes -notes: see https://community.kde.org/Policies/Licensing_Policy diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_4.RULE index 1b288586389..01e80a2e930 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either or both of the following licenses: 1) the GNU Lesser General Public License version 3, as published by the diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_4.yml b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_4.yml deleted file mode 100644 index dd5e50e9841..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 OR lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_5.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_5.RULE index 81612b39a2f..7a3881d03a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + GNU LGPL v2.1, GNU LGPL v3 (Following license of ) Licensed under the LGPL License, Version 3.0 (the "License"); diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_5.yml b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_5.yml deleted file mode 100644 index b4a77ba10f0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 OR lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_6.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_6.RULE index f2d7a0ee22f..cb8de35d57f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either or both of the following licenses: 1) the GNU Lesser General Public License version 3, as published by the diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_6.yml b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_6.yml deleted file mode 100644 index 96cb7e7d67e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 OR lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_7.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_7.RULE index ca5ebd43b84..3a4d9562877 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +notes: see https://community.kde.org/Policies/Licensing_Policy +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -13,4 +22,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public -License along with this library. If not, see . +License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_7.yml b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_7.yml deleted file mode 100644 index ef7ddfe86f3..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 OR lgpl-3.0 -is_license_notice: yes -relevance: 100 -notes: see https://community.kde.org/Policies/Licensing_Policy -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_or_kde-accepted-lgpl_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_or_kde-accepted-lgpl_1.RULE index 568500c5460..7b26cf5224e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_or_kde-accepted-lgpl_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_or_kde-accepted-lgpl_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 OR lgpl-3.0 OR kde-accepted-lgpl +is_license_notice: yes +relevance: 100 +notes: see https://community.kde.org/Policies/Licensing_Policy +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -12,4 +21,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public -License along with this library. If not, see . +License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_or_kde-accepted-lgpl_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_or_kde-accepted-lgpl_1.yml deleted file mode 100644 index 211200a0fb5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_lgpl-3.0_or_kde-accepted-lgpl_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 OR lgpl-3.0 OR kde-accepted-lgpl -is_license_notice: yes -relevance: 100 -notes: see https://community.kde.org/Policies/Licensing_Policy -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.0.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.0.RULE index cbc524bb2ed..f8d1fc67ea2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.0.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 OR mpl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/copyleft/lesser.html + - http://www.mozilla.org/MPL/ +--- + This program is free software; you can redistribute it and/or modify it under the terms of either: @@ -7,4 +15,4 @@ This program is free software; you can redistribute it and/or modify Or: The Mozilla Public License Version 1.0. You may obtain a copy of - the License at http://www.mozilla.org/MPL/ + the License at http://www.mozilla.org/MPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.0.yml b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.0.yml deleted file mode 100644 index 14d2eee2068..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 OR mpl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/copyleft/lesser.html - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_1.RULE index 0cc51f96995..59897a7463a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 OR mpl-1.1 +is_license_notice: yes +referenced_filenames: + - COPYING-LGPL-2.1 + - COPYING-MPL-1.1 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + * This library is free software; you can redistribute it and/or * modify it either under the terms of the GNU Lesser General Public * License version 2.1 as published by the Free Software Foundation @@ -19,4 +29,4 @@ * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY * OF ANY KIND, either express or implied. See the LGPL or the MPL for - * the specific language governing rights and limitations. + * the specific language governing rights and limitations. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_1.yml deleted file mode 100644 index 8193377f40e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 OR mpl-1.1 -is_license_notice: yes -referenced_filenames: - - COPYING-LGPL-2.1 - - COPYING-MPL-1.1 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_2.RULE index 8afd358c31a..f5061378e0f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 OR mpl-1.1 +is_license_notice: yes +referenced_filenames: + - COPYING-LGPL-2.1 + - COPYING-MPL-1.1 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + * This library is free software; you can redistribute it and/or * modify it either under the terms of the GNU Lesser General Public * License version 2.1 as published by the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_2.yml b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_2.yml deleted file mode 100644 index 8193377f40e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 OR mpl-1.1 -is_license_notice: yes -referenced_filenames: - - COPYING-LGPL-2.1 - - COPYING-MPL-1.1 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_3.RULE index 78eaf8b4e10..c2123487891 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 OR mpl-1.1 +is_license_notice: yes +minimum_coverage: 85 +referenced_filenames: + - COPYING-LGPL-2.1 + - COPYING-MPL-1.1 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + * This library 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. * diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_3.yml b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_3.yml deleted file mode 100644 index 8a9f9a4bed0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 OR mpl-1.1 -is_license_notice: yes -minimum_coverage: 85 -referenced_filenames: - - COPYING-LGPL-2.1 - - COPYING-MPL-1.1 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_and_other-permissive_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_and_other-permissive_1.RULE index 9a650f40ffd..2be9ef8c721 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_and_other-permissive_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: (lgpl-2.1 OR mpl-1.1) AND other-permissive +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING-LGPL-2.1 + - COPYING-MPL-1.1 +--- + Every source file in the implementation[*] of is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_and_other-permissive_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_and_other-permissive_1.yml deleted file mode 100644 index 26ba3f0139d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_mpl-1.1_and_other-permissive_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: (lgpl-2.1 OR mpl-1.1) AND other-permissive -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING-LGPL-2.1 - - COPYING-MPL-1.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_proprietary-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_or_proprietary-license_1.RULE index 275f87215f2..28066bf1252 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_or_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_or_proprietary-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 OR proprietary-license +is_license_notice: yes +relevance: 100 +--- + Licensing Gensim is licensed under the OSI-approved GNU LGPLv2.1 license. This means that diff --git a/src/licensedcode/data/rules/lgpl-2.1_or_proprietary-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1_or_proprietary-license_1.yml deleted file mode 100644 index d1c39943118..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_or_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 OR proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_qt.RULE b/src/licensedcode/data/rules/lgpl-2.1_qt.RULE index cc13b84bd16..7aa164ca7dd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_qt.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_qt.RULE @@ -1,3 +1,18 @@ +--- +license_expression: lgpl-2.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991, 1999 Free Software Foundation, Inc. + - Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). Contact http://www.qt-project.org/legal + - copyrighted by the Free Software Foundation +ignorable_holders: + - Digia Plc and/or its subsidiary(-ies). Contact + - Free Software Foundation, Inc. + - the Free Software Foundation +ignorable_urls: + - http://www.qt-project.org/legal +--- + GNU LESSER GENERAL PUBLIC LICENSE The Qt Toolkit is Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). @@ -509,5 +524,4 @@ necessary. Here is a sample; alter the names: , 1 April 1990 Ty Coon, President of Vice -That's all there is to it! - +That's all there is to it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_qt.yml b/src/licensedcode/data/rules/lgpl-2.1_qt.yml deleted file mode 100644 index dd7928e0ec8..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_qt.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: lgpl-2.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - - Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). Contact http://www.qt-project.org/legal - - copyrighted by the Free Software Foundation -ignorable_holders: - - Digia Plc and/or its subsidiary(-ies). Contact - - Free Software Foundation, Inc. - - the Free Software Foundation -ignorable_urls: - - http://www.qt-project.org/legal diff --git a/src/licensedcode/data/rules/lgpl-2.1_released.RULE b/src/licensedcode/data/rules/lgpl-2.1_released.RULE index c1c42d1b47f..f4a1a895763 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_released.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_released.RULE @@ -1 +1,7 @@ - * Released under the terms of the GNU Lesser General Public License Version 2.1 +--- +license_expression: lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + + * Released under the terms of the GNU Lesser General Public License Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_released.yml b/src/licensedcode/data/rules/lgpl-2.1_released.yml deleted file mode 100644 index c88bfbd6701..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_released.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_url_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_url_1.RULE index fe7ac1897fe..2f32ddc2349 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-2.1-only +--- + https://spdx.org/licenses/lgpl-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_url_1.yml b/src/licensedcode/data/rules/lgpl-2.1_url_1.yml deleted file mode 100644 index 9cb622aab55..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-2.1-only diff --git a/src/licensedcode/data/rules/lgpl-2.1_url_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_url_2.RULE index be2c66ff29e..d01e97dbc14 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-2.1-only.html +--- + https://spdx.org/licenses/lgpl-2.1-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_url_2.yml b/src/licensedcode/data/rules/lgpl-2.1_url_2.yml deleted file mode 100644 index e9afea5b4d5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-2.1-only.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_url_glc_135.RULE b/src/licensedcode/data/rules/lgpl-2.1_url_glc_135.RULE index a9973cb0531..8759523d116 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_url_glc_135.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_url_glc_135.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html +--- + https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_url_glc_135.yml b/src/licensedcode/data/rules/lgpl-2.1_url_glc_135.yml deleted file mode 100644 index bf07be6850a..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_url_glc_135.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_url_glc_179.RULE b/src/licensedcode/data/rules/lgpl-2.1_url_glc_179.RULE index 3ea11880efe..62974ff3033 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_url_glc_179.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_url_glc_179.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/lgpl-2.1 +--- + https://www.opensource.org/licenses/lgpl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_url_glc_179.yml b/src/licensedcode/data/rules/lgpl-2.1_url_glc_179.yml deleted file mode 100644 index 6e9e60e7a80..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_url_glc_179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/lgpl-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_1.RULE index a4817c89f34..d198c6d623a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 WITH broadcom-linking-exception-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +notes: found in the freepascal compiler +--- + The source code of the Free Pascal Runtime Libraries and packages are distributed under the Library GNU General Public License (see the file COPYING) with the following modification: @@ -17,5 +25,4 @@ If you didn't receive a copy of the file COPYING, contact: Free Software Foundation 675 Mass Ave Cambridge, MA 02139 - USA - + USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_1.yml deleted file mode 100644 index adde665756e..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH broadcom-linking-exception-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -notes: found in the freepascal compiler diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_2.RULE index 90edafdd673..f29b252f0b1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1 WITH broadcom-linking-exception-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: found in the freepascal compiler +--- + P.License := 'LGPL with modification, ' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_2.yml deleted file mode 100644 index c2796186677..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH broadcom-linking-exception-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: found in the freepascal compiler diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_3.RULE index 85b9359fe29..1c88e3a54c8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 WITH broadcom-linking-exception-2.0 +is_license_notice: yes +minimum_coverage: 99 +referenced_filenames: + - COPYING.FPC +notes: found in the freepascal compiler +--- + See the file COPYING.FPC, included in this distribution, for details about the copyright. diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_3.yml b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_3.yml deleted file mode 100644 index e572981dc02..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 WITH broadcom-linking-exception-2.0 -is_license_notice: yes -minimum_coverage: 99 -referenced_filenames: - - COPYING.FPC -notes: found in the freepascal compiler diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_4.RULE index 675669fa2cb..0d074cfbe33 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.1 WITH broadcom-linking-exception-2.0 +is_license_notice: yes +minimum_coverage: 99 +referenced_filenames: + - COPYING.FPC + - COPYING +notes: found in the freepascal compiler +--- + This is the file COPYING.FPC, it applies to the Free Pascal Run-Time Library (RTL) and packages (packages) distributed by members of the Free Pascal Development Team. @@ -21,5 +31,4 @@ If you didn't receive a copy of the file COPYING, contact: Free Software Foundation 675 Mass Ave Cambridge, MA 02139 - USA - + USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_4.yml b/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_4.yml deleted file mode 100644 index 5c913e74b67..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_broadcom-linking-exception-2.0_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1 WITH broadcom-linking-exception-2.0 -is_license_notice: yes -minimum_coverage: 99 -referenced_filenames: - - COPYING.FPC - - COPYING -notes: found in the freepascal compiler diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_1.RULE index 407a5ce47c4..9d529431c83 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.1 WITH gplcc-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This software is distributed under the LGPL 2.1 license, along with the GPL Cooperation Commitment. Please read LICENSE for information on the software availability and distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_1.yml deleted file mode 100644 index f96fbb44264..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH gplcc-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_2.RULE index 80a053cecfe..29e8bde3d7a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 WITH gplcc-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html + - https://gplcc.github.io/gplcc +--- + License This software is distributed under the LGPL 2.1 license, along with the GPL Cooperation Commitment. Please read LICENSE for information on the software availability and distribution. ## License diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_2.yml b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_2.yml deleted file mode 100644 index d36158e641f..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 WITH gplcc-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html - - https://gplcc.github.io/gplcc diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_3.RULE index 41871607f98..5dd01abf3a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 WITH gplcc-1.0 +is_license_tag: yes +relevance: 90 +minimum_coverage: 100 +ignorable_urls: + - https://github.com/PHPMailer/PHPMailer#license +--- + https://github.com/PHPMailer/PHPMailer#license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_3.yml b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_3.yml deleted file mode 100644 index c450f142b75..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 WITH gplcc-1.0 -is_license_tag: yes -relevance: 90 -minimum_coverage: 100 -ignorable_urls: - - https://github.com/PHPMailer/PHPMailer#license diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_4.RULE index 4d078441395..44dc00f0fb1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-2.1 WITH gplcc-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://gplcc.github.io/gplcc + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + License This software is distributed under the LGPL 2.1 license, along with the GPL Cooperation Commitment. Please read LICENSE for information on the software availability and distribution. ## License diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_4.yml b/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_4.yml deleted file mode 100644 index 72cea2d0e38..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_gplcc-1.0_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-2.1 WITH gplcc-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://gplcc.github.io/gplcc - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_lgpl-2.1-digia-qt_exception.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_lgpl-2.1-digia-qt_exception.RULE index 76c1b25f0c8..8b0365748bc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_lgpl-2.1-digia-qt_exception.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_lgpl-2.1-digia-qt_exception.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the @@ -7,4 +15,4 @@ ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** 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/lgpl-2.1_with_lgpl-2.1-digia-qt_exception.yml b/src/licensedcode/data/rules/lgpl-2.1_with_lgpl-2.1-digia-qt_exception.yml deleted file mode 100644 index 66d8d1a2b84..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_lgpl-2.1-digia-qt_exception.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_1.RULE index cc2fd7672d9..79ab02a1318 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 WITH libwebsockets-exception +is_license_notice: yes +relevance: 100 +--- + * This version is LGPL2.1+SLE like the rest of libwebsockets \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_1.yml deleted file mode 100644 index e1e0480980d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 WITH libwebsockets-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_2.RULE index 67229f0a046..c8fc190fe71 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 WITH libwebsockets-exception +is_license_notice: yes +relevance: 100 +--- + * This version is LGPL2.1+SLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_2.yml b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_2.yml deleted file mode 100644 index e1e0480980d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 WITH libwebsockets-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_3.RULE index 0f037a4cf53..6e913aa9026 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_3.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 WITH libwebsockets-exception +is_license_reference: yes +relevance: 100 +--- + LGPL2.1+SLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_3.yml b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_3.yml deleted file mode 100644 index 20aa1abd17c..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 WITH libwebsockets-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_4.RULE index 87661541426..693471eeb57 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 WITH libwebsockets-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://libwebsockets.org/ +--- + Libwebsockets and included programs are provided under the terms of the GNU Library General Public License (LGPL) 2.1, with the following exceptions: diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_4.yml b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_4.yml deleted file mode 100644 index 0c12de707aa..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH libwebsockets-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://libwebsockets.org/ diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_5.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_5.RULE index dc219d7e4df..9dd44fdb4f2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_5.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 WITH libwebsockets-exception +is_license_notice: yes +relevance: 100 +--- + relicensed to LGPL2.1+SLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_5.yml b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_5.yml deleted file mode 100644 index e1e0480980d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 WITH libwebsockets-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_6.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_6.RULE index c5b0349e18f..1f661420c5a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_6.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 WITH libwebsockets-exception +is_license_notice: yes +relevance: 100 +--- + this version is under LGPL2.1 + SLE like the rest of lws since he explicitly allows sublicensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_6.yml b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_6.yml deleted file mode 100644 index e1e0480980d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 WITH libwebsockets-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_7.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_7.RULE index 9b1d9535a0e..5fefc54edf7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_7.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 WITH libwebsockets-exception +is_license_notice: yes +relevance: 100 +--- + under LGPL2.1 + SLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_7.yml b/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_7.yml deleted file mode 100644 index e1e0480980d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_libwebsockets-exception_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 WITH libwebsockets-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_linking-exception-lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_linking-exception-lgpl-2.0-plus_1.RULE index fc49a87bd08..389f66c6453 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_linking-exception-lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_linking-exception-lgpl-2.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 WITH linking-exception-lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LGPL.2.1.txt +notes: https://github.com/tcs-ulli/laz-n-tier/blob/130ed758f044a04afb2cba3aafa9c5b3a52f47a0/License.txt +--- + distributed under the GNU Lesser General Public License (see the file LGPL.2.1.txt) with the following modification: diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_linking-exception-lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_linking-exception-lgpl-2.0-plus_1.yml deleted file mode 100644 index 558815c6757..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_linking-exception-lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 WITH linking-exception-lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LGPL.2.1.txt -notes: https://github.com/tcs-ulli/laz-n-tier/blob/130ed758f044a04afb2cba3aafa9c5b3a52f47a0/License.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_1.RULE index 9a8509d80e3..f3a0c4ad386 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + opam distributed under the terms of the GNU Lesser General Public License version 2.1, with the special exception on linking described in the file LICENSE. diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_1.yml deleted file mode 100644 index da9015bcdde..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_2.RULE index 49a404162e1..7d47195b067 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 100 +--- + All files are distributed under the terms of the GNU Lesser General Public License (LGPL) version 2.1 (included below). diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_2.yml b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_2.yml deleted file mode 100644 index 86e8aea6915..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_3.RULE index 721b5fbf4fb..865b598eb99 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + This file is distributed under the terms of the *) (* GNU Lesser General Public License version 2.1, with the special *) (* exception on linking described in the file LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_3.yml b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_3.yml deleted file mode 100644 index a2ad741d7e0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_4.RULE index 8dffef56606..9e0692f9c1c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 99 +referenced_filenames: + - license.txt +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) version 2.1 as published by the Free Software Foundation, with the diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_4.yml b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_4.yml deleted file mode 100644 index 689654fb4bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 99 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_5.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_5.RULE index e8bc23f7b9a..f1e0713f624 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 99 +referenced_filenames: + - license.txt +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) version 2.1 as published by the Free Software Foundation, with the diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_5.yml b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_5.yml deleted file mode 100644 index 689654fb4bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 99 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_6.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_6.RULE index 702f1538f42..34942ff2108 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +--- + The Library is distributed under the terms of the GNU Lesser General Public License version 2.1 (included below). diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_6.yml b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_6.yml deleted file mode 100644 index cd5883a96a0..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_7.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_7.RULE index 6ced48a4a12..16658de3d3b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 99 +referenced_filenames: + - license.txt +--- + * This library 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, with the diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_7.yml b/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_7.yml deleted file mode 100644 index 689654fb4bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_ocaml-lgpl-linking-exception_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 99 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_1.RULE index 9abb57f0056..cfd6cfabbaa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 WITH occt-exception-1.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - OCCT_LGPL_EXCEPTION.txt + - LICENSE_LGPL_21.txt +--- + // This library 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, with special exception defined in the file @@ -5,4 +14,4 @@ // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. +// commercial license or contractual agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_1.yml deleted file mode 100644 index 4e50677e75d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 WITH occt-exception-1.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - OCCT_LGPL_EXCEPTION.txt - - LICENSE_LGPL_21.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_2.RULE index 4ba3e7e6c18..b356925fb75 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 WITH occt-exception-1.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - OCCT_LGPL_EXCEPTION.txt + - LICENSE_LGPL_21.txt +--- + License ------- diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_2.yml deleted file mode 100644 index 4e50677e75d..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_occt-exception-1.0_or_commercial-license_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 WITH occt-exception-1.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - OCCT_LGPL_EXCEPTION.txt - - LICENSE_LGPL_21.txt diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_openssl-exception-lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_openssl-exception-lgpl-2.0-plus_1.RULE index 1bea27a26fc..db55af17186 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_openssl-exception-lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_openssl-exception-lgpl-2.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1 WITH openssl-exception-lgpl-2.0-plus +is_license_notice: yes +relevance: 95 +notes: this is not exactly the same exacption text but highky similar purpose +--- + is licensed under the GNU LGPL (see below) with this exception: @@ -6,4 +13,4 @@ license exception: explicitly allows the compilation and distribution of with the OpenSSL Toolkit. -No developer is required to provide this exception in a derived work. +No developer is required to provide this exception in a derived work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_openssl-exception-lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_openssl-exception-lgpl-2.0-plus_1.yml deleted file mode 100644 index 8a52875b504..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_openssl-exception-lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1 WITH openssl-exception-lgpl-2.0-plus -is_license_notice: yes -relevance: 95 -notes: this is not exactly the same exacption text but highky similar purpose diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_1.RULE index 8222ebf919e..a5d1ef4176f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 +is_license_notice: yes +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the @@ -7,4 +16,4 @@ ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** 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/lgpl-2.1_with_qt-lgpl-exception-1.1_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_1.yml deleted file mode 100644 index ef683f1eab5..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 -is_license_notice: yes -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_older.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_older.RULE index b1806d698f3..b3219682aec 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_older.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_older.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; version 2.1 of the License. @@ -28,4 +33,4 @@ (iii) accessors; and (iv) small macros, templates and inline functions of five lines or less in length. Furthermore, you are not required to apply this additional permission to a - modified version of the Library. + modified version of the Library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_older.yml b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_older.yml deleted file mode 100644 index 0453a57efb7..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_older.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_or_commercial-license_1.RULE index a3c804acc5a..6c3501e47d0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_or_commercial-license_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.LGPL + - LGPL_EXCEPTION.txt + - LICENSE.GPL +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public @@ -27,4 +40,4 @@ ** ** ** -** $QT_END_LICENSE$ +** $QT_END_LICENSE$ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_or_commercial-license_1.yml deleted file mode 100644 index c0772313540..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_qt-lgpl-exception-1.1_or_gpl-3.0_or_commercial-license_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.LGPL - - LGPL_EXCEPTION.txt - - LICENSE.GPL -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_unlimited-linking-exception-lgpl_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_with_unlimited-linking-exception-lgpl_1.RULE index ef7e7d30472..af8259bc9aa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_with_unlimited-linking-exception-lgpl_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_with_unlimited-linking-exception-lgpl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1 WITH unlimited-linking-exception-lgpl +is_license_reference: yes +relevance: 90 +--- + LGPL 2.1 with Special Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_with_unlimited-linking-exception-lgpl_1.yml b/src/licensedcode/data/rules/lgpl-2.1_with_unlimited-linking-exception-lgpl_1.yml deleted file mode 100644 index 64efc8ad154..00000000000 --- a/src/licensedcode/data/rules/lgpl-2.1_with_unlimited-linking-exception-lgpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1 WITH unlimited-linking-exception-lgpl -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/lgpl-3-plus-linking2.RULE b/src/licensedcode/data/rules/lgpl-3-plus-linking2.RULE index 4da2f2ad458..1ef728452e9 100644 --- a/src/licensedcode/data/rules/lgpl-3-plus-linking2.RULE +++ b/src/licensedcode/data/rules/lgpl-3-plus-linking2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-3.0-plus WITH lgpl-3.0-linking-exception +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + This software is licensed under the LGPLv3, included below. As a special exception to the GNU Lesser General Public License version 3 diff --git a/src/licensedcode/data/rules/lgpl-3-plus-linking2.yml b/src/licensedcode/data/rules/lgpl-3-plus-linking2.yml deleted file mode 100644 index e35e15ef624..00000000000 --- a/src/licensedcode/data/rules/lgpl-3-plus-linking2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-3.0-plus WITH lgpl-3.0-linking-exception -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/lgpl-3-plus-linking_3.RULE b/src/licensedcode/data/rules/lgpl-3-plus-linking_3.RULE index ab5f6facc16..b5acb81bf9c 100644 --- a/src/licensedcode/data/rules/lgpl-3-plus-linking_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3-plus-linking_3.RULE @@ -1 +1,8 @@ -The yaml package is licensed under the LGPL with an exception that allows it to be linked statically. Please see the LICENSE file for details. +--- +license_expression: lgpl-3.0-plus WITH lgpl-3.0-linking-exception +is_license_notice: yes +relevance: 60 +minimum_coverage: 98 +--- + +The yaml package is licensed under the LGPL with an exception that allows it to be linked statically. Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3-plus-linking_3.yml b/src/licensedcode/data/rules/lgpl-3-plus-linking_3.yml deleted file mode 100644 index dab828560f7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3-plus-linking_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus WITH lgpl-3.0-linking-exception -is_license_notice: yes -relevance: 60 -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_1.RULE index 4733d5adea5..e282908f8fd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPL-3.0 Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_1.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_1.yml deleted file mode 100644 index 36f86d0deb1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_2.RULE index baa0b8871f4..565afbb2fbd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: LGPL-3.0 Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_2.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_2.yml deleted file mode 100644 index 36f86d0deb1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_3.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_3.RULE index 9c2585eef2e..4c231dfe5dc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPL-3.0-linking-exception LGPL-3.0 Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_3.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_3.yml deleted file mode 100644 index 36f86d0deb1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_4.RULE index 23ce1de40cb..ecd6b25a2cf 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LGPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_4.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_4.yml deleted file mode 100644 index 36689ed77e2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_5.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_5.RULE index fd05ba2717a..cf992b47d1b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: LGPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_5.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_5.yml deleted file mode 100644 index 36689ed77e2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_6.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_6.RULE index d4d83fe9659..b3ab3d12abe 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_6.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_6.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LGPL-3.0-linking-exception +--- + https://licenses.nuget.org/LGPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_6.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_6.yml deleted file mode 100644 index b30e2516e92..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LGPL-3.0-linking-exception diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_7.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_7.RULE index 1fab7a44f18..9b31bcf2a2f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_7.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_7.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LGPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_7.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_7.yml deleted file mode 100644 index a0c5ebd67fa..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_8.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_8.RULE index 5831943a007..aa49ec14b07 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_8.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0-linking-exception +--- + {{LGPL-3.0-linking-exception}} https://spdx.org/licenses/LGPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_8.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_8.yml deleted file mode 100644 index 57cc13be1d7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0-linking-exception diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_9.RULE b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_9.RULE index 112719e4f2a..b2db840c6d5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_9.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_9.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0-linking-exception +--- + LICENSE {{LGPL-3.0-linking-exception}} https://spdx.org/licenses/LGPL-3.0-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_9.yml b/src/licensedcode/data/rules/lgpl-3.0-linking-exception_9.yml deleted file mode 100644 index 57cc13be1d7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-linking-exception_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0-linking-exception diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_1.RULE index 0e32a666660..7b57a155851 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_1.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_10.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_10.RULE index bf519894dd6..74ed5a441d7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_10.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + The library is Free Software. You may distribute it and/or modify it under the terms of the GNU Lesser General @@ -9,5 +16,4 @@ particular purpose. Please see the GNU Lesser General Public Licence for more details. You should have have received a copy of the GNU Lesser General Public Licence along with this library. If not, see: -http://www.gnu.org/licenses/lgpl.html - +http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_10.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_10.yml deleted file mode 100644 index 2ecb132c878..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_100.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_100.RULE index 45cc53203ac..c97db142a1d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_100.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_100.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + The GNU MP Library test suite 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, diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_100.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_100.yml deleted file mode 100644 index 74b8c3b671f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_101.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_101.RULE index caaf0beed47..7e94c9e46bb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_101.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_101.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + The GNU MP Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_101.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_101.yml deleted file mode 100644 index cbaace88651..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_102.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_102.RULE index ac15794e848..bc1d9bc849c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_102.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_102.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LESSER +--- + License The source code is released 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. Please refer to the included files COPYING and COPYING.LESSER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_102.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_102.yml deleted file mode 100644 index 811a906099c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_102.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LESSER diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE index f79488504d0..d1f01b491bc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + License The source code is released 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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_103.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_103.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_104.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_104.RULE index af8b015504a..1853cccbdb7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_104.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_104.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LESSER +--- + The source code is released 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. Please refer to the included files COPYING and COPYING.LESSER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_104.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_104.yml deleted file mode 100644 index 811a906099c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_104.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LESSER diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_105.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_105.RULE index 44c26c3ea55..7ffb40f0a71 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_105.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_105.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license GNU Lesser General Public License, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_105.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_105.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_106.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_106.RULE index 3dcff0dedf2..4caff43961e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_106.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_106.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * AutoOpts 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_106.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_106.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_106.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_107.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_107.RULE index b6162e7aa3d..0e630c7ba09 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_107.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_107.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_107.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_107.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_108.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_108.RULE index 924b1eb9538..b15bf4d393b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_108.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_108.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the terms of the GNU Lesser General Public License, version 3 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_108.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_108.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_109.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_109.RULE index b5d55822cc8..a5352c55a90 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_109.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_109.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms of the GNU Lesser General Public License, version 3 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_109.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_109.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_11.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_11.RULE index e8fa441153d..0a0ca9b16e3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_11.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_11.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + The library is Free Software. You may distribute it and/or modify it under the terms of the GNU Lesser General @@ -9,5 +16,4 @@ particular purpose. Please see the GNU Lesser General Public license for more details. You should have have received a copy of the GNU Lesser General Public license along with this library. If not, see: -http://www.gnu.org/licenses/lgpl.html - +http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_11.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_11.yml deleted file mode 100644 index 2ecb132c878..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_110.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_110.RULE index 55a8b8d656e..7f231283ae8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_110.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_110.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + Licence: LGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_110.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_110.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_111.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_111.RULE index 88516a41f5f..29c32508ec9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_111.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_111.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + Licence: LGPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_111.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_111.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_112.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_112.RULE index 8a4253bdac1..5641bedff44 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_112.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_112.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released under LGPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_112.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_112.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_113.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_113.RULE index 536584082ac..fc557f48c39 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_113.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_113.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + # 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_113.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_113.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_114.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_114.RULE index bb44f8b91b2..9c037ca7b49 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_114.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_114.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + # pysycopg2 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_114.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_114.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_115.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_115.RULE index 672f9e8a4a2..f17506d94f0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_115.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_115.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + psycopg2 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_115.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_115.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_116.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_116.RULE index 14e906b4477..0e91df29ceb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_116.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_116.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_116.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_116.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_117.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_117.RULE index 7d38bc9a39d..2d3b6c22529 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_117.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_117.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + # psycopg2 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_117.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_117.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_118.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_118.RULE index 5978bcd8419..50fa0d0fade 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_118.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_118.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Lesser GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_118.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_118.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_118.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_119.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_119.RULE index 732ae4b0547..55cd43b4268 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_119.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_119.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Lesser GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_119.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_119.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_119.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_12.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_12.RULE index ead282c536b..6a6a26b4522 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_12.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +--- + this library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) @@ -6,4 +11,4 @@ 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 -below for more details. +below for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_12.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_12.yml deleted file mode 100644 index 5af8fed278d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_120.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_120.RULE index 0ef9cc827b1..c76acda73b4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_120.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_120.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of LGPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_120.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_120.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_121.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_121.RULE index c7dfd68a92d..de998ab4edf 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_121.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_121.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPLv3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_121.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_121.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_122.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_122.RULE index 1a2995f0ab9..2648878781c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_122.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_122.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL v3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_122.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_122.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_123.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_123.RULE index f21c4a0f51d..d0a08f301ac 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_123.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_123.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_123.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_123.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_124.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_124.RULE index a3d0928cc25..26e2096edc9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_124.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_124.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL v3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_124.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_124.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_125.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_125.RULE index f5b8f94d260..f5bbc61f511 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_125.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_125.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_125.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_125.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_126.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_126.RULE index fe986fbed8e..f10451b20fe 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_126.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_126.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL 3+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_126.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_126.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_127.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_127.RULE index def35f5d65d..393e985ef17 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_127.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_127.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_127.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_127.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_128.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_128.RULE index d5e3a9737bb..537ec0a19a6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_128.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_128.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL 3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_128.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_128.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_129.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_129.RULE index 7ca3368f140..95f8d874728 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_129.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_129.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +notes: FFmpeg configure result strings as found in binaries +--- + license="LGPL version 3 or later" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_129.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_129.yml deleted file mode 100644 index 3f3aefb7ee4..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_129.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 -notes: FFmpeg configure result strings as found in binaries diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_13.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_13.RULE index 2e2ab80e574..aabbf345bfc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_13.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_13.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + __license__ = "LGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_13.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_13.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_130.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_130.RULE index cd00b42a46b..0e0103a2732 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_130.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_130.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 99 +notes: configure option injected by FFmpeg in the built binaries alone this should be for LGPL +--- + --enable-version3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_130.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_130.yml deleted file mode 100644 index 0ac72d5a3a9..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_130.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 99 -notes: configure option injected by FFmpeg in the built binaries alone this should be for LGPL diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_131.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_131.RULE index c445644f456..81c3fa7fd36 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_131.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_131.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: Seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + %s 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_131.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_131.yml deleted file mode 100644 index 0cfffd4d719..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_131.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: Seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_132.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_132.RULE index 40e02c2e705..d3e50f4876f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_132.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_132.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 99 +notes: configure option for old ffmpeg abd libav +--- + --disable-gpl --disable-nonfree \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_132.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_132.yml deleted file mode 100644 index e58f5d88589..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_132.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 99 -notes: configure option for old ffmpeg abd libav diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_133.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_133.RULE index d733c4ff3f5..ced4a91ffbc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_133.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_133.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3.0 of the License, or (at your option) any diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_133.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_133.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_134.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_134.RULE index 128d645670e..6a52d449c56 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_134.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_134.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + "GNU Lesser General Public Licence, version 3 or later"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_134.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_134.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_135.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_135.RULE index 6075dac4699..3b92c31c505 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_135.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_135.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + released as LGPL (v3 or later). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_135.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_135.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_136.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_136.RULE index 8ca1bc6a98f..ccb4551982e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_136.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_136.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPLv3+, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_136.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_136.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_137.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_137.RULE index 8356789235d..e133841df4a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_137.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_137.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + available under the GNU Lesser General Public License version 3 or, at your option, any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_137.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_137.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_138.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_138.RULE index d55068fade5..ec7505c26ab 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_138.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_138.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_138.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_138.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_138.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_139.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_139.RULE index 783bb5e30b8..c42e42ca3c4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_139.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_139.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU MPFR Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_139.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_139.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_14.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_14.RULE index fc68c22a6c7..a1ab52039a4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_14.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_14.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_14.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_14.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_140.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_140.RULE index f0c077690d9..b9d77417394 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_140.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_140.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU MPFR Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_140.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_140.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_140.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_141.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_141.RULE index 87cdab03363..8560e940df2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_141.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_141.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + components licensed under LGPL 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_141.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_141.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_142.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_142.RULE index c08dc8cf395..aa5422768c3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_142.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_142.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_142.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_142.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_143.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_143.RULE index 606b067ea5f..c8b70b9a573 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_143.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_143.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_143.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_143.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_144.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_144.RULE index d6f24906b43..0d053fc695b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_144.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_144.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL v3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_144.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_144.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_145.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_145.RULE index 034ca2d85f1..c76394ead14 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_145.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_145.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_145.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_145.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_146.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_146.RULE index 353cce3a64b..ae914cf8320 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_146.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_146.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_146.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_146.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_146.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_147.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_147.RULE index a3681511811..b6e0c0a5513 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_147.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_147.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_147.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_147.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_147.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_148.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_148.RULE index 86f5f73a63a..c3f2cb9b7d2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_148.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_148.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + 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; either version 3, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_148.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_148.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_148.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_149.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_149.RULE index 661e281486c..fd531a5229b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_149.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_149.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + 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; either version 3, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_149.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_149.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_149.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_15.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_15.RULE index 6475f68158a..052f95c40c5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_15.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- + * * 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 @@ -9,4 +16,4 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * -* See +* See \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_15.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_15.yml deleted file mode 100644 index 03174083cff..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_150.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_150.RULE index ad70516cc77..388945b8e93 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_150.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_150.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The 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; either version 3 of the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_150.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_150.yml deleted file mode 100644 index 6ebfebfc2f7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_150.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_151.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_151.RULE index 19d35e1904b..8eeb1c0340f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_151.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_151.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + The GNU C 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; either version 3 of the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_151.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_151.yml deleted file mode 100644 index 6ebfebfc2f7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_151.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_152.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_152.RULE index bb2c9f1f325..aa88e40a859 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_152.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_152.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU C 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; either version 3 of the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_152.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_152.yml deleted file mode 100644 index 56c02d6a7cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_152.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_153.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_153.RULE index 14d25a1c2a2..62d87a01943 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_153.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_153.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_153.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_153.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_154.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_154.RULE index ce8ebc9732f..3e2ecccae51 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_154.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_154.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_154.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_154.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_155.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_155.RULE index 9d15fa97931..15c8faca295 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_155.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_155.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_155.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_155.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_156.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_156.RULE index 8f28da59b76..a530f6c6906 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_156.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_156.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_156.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_156.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_157.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_157.RULE index 867879561f8..ed12740d3fd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_157.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_157.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under GNU LGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_157.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_157.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_158.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_158.RULE index 81917e72900..0d1155aa80d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_158.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_158.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + under the terms GNU LGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_158.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_158.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_159.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_159.RULE index 206110fd7c2..1c74669c0eb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_159.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_159.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_159.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_159.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_16.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_16.RULE index 2426676c13b..e652de40c4a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_16.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_16.RULE @@ -1 +1,9 @@ -* See +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- + +* See \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_16.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_16.yml deleted file mode 100644 index c09297ab2e4..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_160.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_160.RULE index 141016dd023..94c2875190b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_160.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_160.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed under GNU LGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_160.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_160.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_161.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_161.RULE index f86fd197218..5a8a5058e6f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_161.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_161.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_161.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_161.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_162.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_162.RULE index cf1ca4ca4d1..b7c89a9efab 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_162.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_162.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public License as published by the Free Software Foundation; either version 3 of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_162.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_162.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_163.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_163.RULE index ab4158b9fdc..e7572783d40 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_163.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_163.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_163.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_163.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_164.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_164.RULE index 2a2fd2cc455..617310a1a96 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_164.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_164.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_164.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_164.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_165.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_165.RULE index 8b46e2f69ff..4818039204f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_165.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_165.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This program 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; either version 3, or (at your option) diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_165.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_165.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE index 964b49ef6e8..0719e8fa5e3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_166.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: LGPL-3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_166.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_166.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_167.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_167.RULE index 99a57c0c0f5..f682e99f50c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_167.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_167.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_167.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_167.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_167.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_168.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_168.RULE index 8e7240d93e6..12cea2b7b58 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_168.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_168.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_168.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_168.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_169.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_169.RULE index c8a84a3f4b9..97d7125267c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_169.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_169.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_169.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_169.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_169.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_17.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_17.RULE index 581de5c8165..ecdf97fc1f8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_17.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_17.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License, Version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_17.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_17.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_170.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_170.RULE index 592fa9bb374..200f371fbf5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_170.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_170.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_170.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_170.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_170.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_171.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_171.RULE index 727d8e9629c..ba52bb86b90 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_171.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_171.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_171.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_171.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_171.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_172.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_172.RULE index 1a2f396f3ff..fb59993fb74 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_172.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_172.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_172.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_172.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_173.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_173.RULE index b5a25dd91ce..217f2466a1f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_173.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_173.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_173.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_173.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_173.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_174.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_174.RULE index 2cee2baf2d9..cd205359e79 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_174.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_174.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_174.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_174.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_174.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_175.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_175.RULE index 583d174d75e..819d7bb5c29 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_175.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_175.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_175.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_175.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_176.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_176.RULE index 22036cf537d..147c0e4d269 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_176.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_176.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_176.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_176.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_177.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_177.RULE index 8f9829f2b0b..461635498bc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_177.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_177.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_177.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_177.yml deleted file mode 100644 index 13b488b83fd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_177.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_178.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_178.RULE index 21d33d1ff00..a468a8c1073 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_178.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_178.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - COPYING +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_178.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_178.yml deleted file mode 100644 index 5a836fbed70..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_178.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_179.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_179.RULE index 854c1b86f0b..1ecdc6b56ea 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_179.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_179.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_179.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_179.yml deleted file mode 100644 index 435e1ae2182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_18.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_18.RULE index 51a44245fa8..c12f5c4fb5f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_18.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +notes: Also seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 +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 of the License, or (at your @@ -9,4 +17,4 @@ * License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with . If not, see . + * along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_18.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_18.yml deleted file mode 100644 index 72031e7bff9..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -notes: Also seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_180.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_180.RULE index 849913f159e..d33d6b0b015 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_180.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_180.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/lgpl.html + - http://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, version 3 or later diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_180.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_180.yml deleted file mode 100644 index 4dc5c241c54..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_180.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/lgpl.html - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_181.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_181.RULE index 311af62ee62..2c420d4f6ba 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_181.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_181.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Library General Public License, version 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_181.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_181.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_181.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_182.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_182.RULE index 8787a69a0bf..487fc67c190 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_182.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_182.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser General Public License, version 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_182.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_182.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_183.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_183.RULE index e0a0e5e0f60..386e6e1521a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_183.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_183.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNU LGPL version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_183.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_183.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_184.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_184.RULE index 6d44254a136..3cd5c77567f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_184.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_184.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.LIB +--- + The GNU C 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; either version 3 of the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_184.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_184.yml deleted file mode 100644 index 6246e4ea3f4..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.LIB diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_185.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_185.RULE index d0ace032477..777b5d98985 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_185.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_185.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + /* Licensed under LGPLv3+ - see LICENSE file for details */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_185.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_185.yml deleted file mode 100644 index 818aa96f34a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_186.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_186.RULE index d5eaee53d97..3b621699363 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_186.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_186.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + "LGPL version 3 or later", \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_186.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_186.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_187.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_187.RULE index ace144d769f..4fcb87da1b6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_187.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_187.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING + - COPYING.LESSER +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_187.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_187.yml deleted file mode 100644 index cc2f8afeb87..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_187.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING - - COPYING.LESSER -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_188.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_188.RULE index 6e80cf9afad..ce10948c447 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_188.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_188.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_188.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_188.yml deleted file mode 100644 index 5af8fed278d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_188.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE index 667af234c5c..d56df02c43b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_189.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_189.yml deleted file mode 100644 index 8a90cb40014..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_189.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_19.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_19.RULE index 8119fb9d3b6..6ba27e4b6b4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_19.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +notes: a damaged notice using library rather than lesser +--- + 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; either version 3 of the @@ -11,4 +19,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin -Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +Street, Fifth Floor, Boston, MA 02110-1301 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_19.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_19.yml deleted file mode 100644 index b400295fe68..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -notes: a damaged notice using library rather than lesser diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_190.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_190.RULE index 03dedd544c8..27f20eae03c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_190.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_190.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian systems, the full text of the GNU Lesser General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_190.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_190.yml deleted file mode 100644 index 8a90cb40014..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_190.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_191.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_191.RULE index fbd02ff317d..b337f3c63b7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_191.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_191.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +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 Lesser General Public License as published by the Free Software Foundation; either version 3 of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_191.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_191.yml deleted file mode 100644 index b79a4b6dfea..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_191.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_192.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_192.RULE index 2d3d96ac21b..c8cb238ca0a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_192.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_192.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_192.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_192.yml deleted file mode 100644 index a0e179d7e1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_192.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_193.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_193.RULE index 291ec71b064..71108751cf4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_193.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_193.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_193.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_193.yml deleted file mode 100644 index 75e07854a43..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_193.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_194.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_194.RULE index b94077388ed..148d7c8d3cd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_194.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_194.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + The nettle library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_194.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_194.yml deleted file mode 100644 index 7cf06ba0fa3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_194.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_195.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_195.RULE index dd79e2be6d4..a64f2d96787 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_195.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_195.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses +--- + The nettle library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_195.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_195.yml deleted file mode 100644 index e98700784df..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_195.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_196.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_196.RULE index 9ff01580716..0eb676ce28b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_196.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_196.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL +ignorable_urls: + - http://www.gnu.org/licenses +--- + The nettle library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_196.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_196.yml deleted file mode 100644 index 91752144a5f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_196.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_197.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_197.RULE index 6cac83d422f..5e14bd22903 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_197.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_197.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_197.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_197.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_197.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_198.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_198.RULE index feefca65019..5cc67793b1d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_198.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_198.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_198.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_198.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_198.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_199.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_199.RULE index 08e108f1f56..69242e6917b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_199.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_199.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +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 Lesser General Public License as published by the Free Software Foundation; either version 3 of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_199.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_199.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_199.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_2.RULE index 2aa0b4e1ad6..e84c6534404 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_2.RULE @@ -1,4 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3.0 of the -License, or (at your option) any later version. +License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_2.yml deleted file mode 100644 index 5af8fed278d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_20.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_20.RULE index e1fc73992e7..5385c226d04 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_20.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_20.RULE @@ -1,4 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +--- + Collection Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_20.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_20.yml deleted file mode 100644 index 5af8fed278d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_200.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_200.RULE index b5caa43aaae..ed38bc942f6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_200.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_200.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_200.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_200.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_200.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_201.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_201.RULE index 594d4ad83d2..649fa519375 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_201.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_201.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_201.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_201.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_201.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_202.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_202.RULE index 11ae73227f0..7c3b393119c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_202.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_202.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_202.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_202.yml deleted file mode 100644 index 37227724802..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_203.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_203.RULE index 7b901831d2b..32675a80bdc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_203.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_203.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_203.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_203.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_203.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_204.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_204.RULE index 1a6e8972d6f..157a22204b6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_204.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_204.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: LGPL-3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_204.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_204.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_204.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_205.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_205.RULE index 1dc40ee0459..5b06935922e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_205.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_205.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_205.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_205.yml deleted file mode 100644 index 37227724802..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_205.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_206.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_206.RULE index c8628068e48..d934442108e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_206.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_206.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_206.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_206.yml deleted file mode 100644 index 75e07854a43..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_206.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_207.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_207.RULE index 5d3bca893a7..ab7e84d54d6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_207.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_207.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - https://www.gnu.org/licenses +--- + Collection Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +18,4 @@ GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License - along with Collection Library. If not, see <https://www.gnu.org/licenses/>. + along with Collection Library. If not, see <https://www.gnu.org/licenses/>. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_207.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_207.yml deleted file mode 100644 index 413b596e80e..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_207.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_208.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_208.RULE index 568978ab7b5..b6a4d913a23 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_208.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_208.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LESSER +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 Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_208.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_208.yml deleted file mode 100644 index 0c93cd8475f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_208.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LESSER -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_209.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_209.RULE index a0ef806ecd2..37c4ae8476e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_209.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_209.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -8,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 program. If not, see . -See LICENSE.TXT file for more information. +See LICENSE.TXT file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_209.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_209.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_209.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_21.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_21.RULE index 134a658d1fb..240f5476d88 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_21.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + ("LGPL3" t @@ -15,4 +22,4 @@ "" "You should have received a copy of the GNU Lesser General" "Public License along with this library." - "If not, see .") + "If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_21.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_21.yml deleted file mode 100644 index a0e179d7e1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_210.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_210.RULE index e8b6ebc69e4..3522f23985f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_210.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_210.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + The GNU MP Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_210.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_210.yml deleted file mode 100644 index 74b8c3b671f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_210.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_211.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_211.RULE index 757af9ddc06..83db599e60c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_211.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_211.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + ("LGPL3" t @@ -15,4 +23,4 @@ "" "You should have received a copy of the GNU Lesser General" "Public License along with this library." - "If not, see .") + "If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_211.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_211.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_211.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_212.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_212.RULE index e11b2600a28..2dc11d6b52d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_212.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_212.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_212.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_212.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_212.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_213.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_213.RULE index e437c30cab8..a540252a013 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_213.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_213.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + The library is Free Software. You may distribute it and/or modify it under the terms of the GNU Lesser General @@ -9,5 +17,4 @@ particular purpose. Please see the GNU Lesser General Public Licence for more details. You should have have received a copy of the GNU Lesser General Public Licence along with this library. If not, see: -https://www.gnu.org/licenses/lgpl.html - +https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_213.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_213.yml deleted file mode 100644 index bf2d35f787b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_213.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_214.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_214.RULE index 5c9b063b71b..6a3c439aff5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_214.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_214.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + The library is Free Software. You may distribute it and/or modify it under the terms of the GNU Lesser General @@ -9,5 +17,4 @@ particular purpose. Please see the GNU Lesser General Public license for more details. You should have have received a copy of the GNU Lesser General Public license along with this library. If not, see: -https://www.gnu.org/licenses/lgpl.html - +https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_214.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_214.yml deleted file mode 100644 index bf2d35f787b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_215.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_215.RULE index b04d828031d..1c8afc02fd7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_215.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_215.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/lgpl.html + - https://www.gnu.org/licenses/ +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the GNU Lesser General Public License, version 3 or later diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_215.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_215.yml deleted file mode 100644 index 7fd716099cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_215.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/lgpl.html - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_216.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_216.RULE index ebd9bd5ee67..cad1829409f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_216.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_216.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 93 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + GNU Lesser General Public License, Version 3 */ is free software: you can redistribute it and/or modify it under @@ -11,4 +20,4 @@ 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 . If not, see . +along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_216.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_216.yml deleted file mode 100644 index 4d75c73b769..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_216.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 93 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_217.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_217.RULE index 72b3399f3b9..9902408c013 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_217.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_217.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_217.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_217.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_217.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_218.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_218.RULE index 384bfd0904a..ed00a67d885 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_218.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_218.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The GNU Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_218.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_218.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_218.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_219.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_219.RULE index d567e7cba6d..7d581de83bf 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_219.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_219.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + is free software licensed under the GNU Lesser General Public Licence version 3 or later -(see licenses/gpl-3.txt or https://www.gnu.org/licenses/lgpl.html). +(see licenses/gpl-3.txt or https://www.gnu.org/licenses/lgpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_219.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_219.yml deleted file mode 100644 index bf2d35f787b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_219.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_22.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_22.RULE index c399dc51a91..8d90c7d0697 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_22.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + ** NOTE! The following LGPL license applies to the tdb ** library. This does NOT imply that all of Samba is released diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_22.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_22.yml deleted file mode 100644 index 248fd7e3b6b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_220.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_220.RULE index 4c6dc32144d..10e06e224b1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_220.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_220.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + Collection Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -8,4 +16,4 @@ 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 Collection Library. If not, see +along with Collection Library. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_220.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_220.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_221.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_221.RULE index ed5c42f09b7..a38a3f34809 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_221.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_221.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL +ignorable_urls: + - https://www.gnu.org/licenses +--- + The nettle library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_221.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_221.yml deleted file mode 100644 index 7b313a1f73a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_221.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_222.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_222.RULE index 4572ae51c41..a7382572990 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_222.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_222.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_222.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_222.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_222.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_223.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_223.RULE index 9f91aa8dbc2..0e232f5bfca 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_223.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_223.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_223.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_223.yml deleted file mode 100644 index 74b8c3b671f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_223.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_224.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_224.RULE index bdc1e1a08f4..43ce89323ec 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_224.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_224.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_224.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_224.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_224.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_225.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_225.RULE index 3b8a2f8dc6c..fb77a65036b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_225.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_225.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + is free software licensed under the GNU Lesser General Public license version 3 or later -(see licenses/gpl-3.txt or https://www.gnu.org/licenses/lgpl.html). +(see licenses/gpl-3.txt or https://www.gnu.org/licenses/lgpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_225.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_225.yml deleted file mode 100644 index bf2d35f787b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_225.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_226.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_226.RULE index 6c978d0b307..a2a82a704aa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_226.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_226.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_226.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_226.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_226.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_227.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_227.RULE index a2fec642cc4..5ec7838ab01 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_227.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_227.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + The 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; either version 3 of the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_227.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_227.yml deleted file mode 100644 index 56c02d6a7cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_227.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_228.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_228.RULE index 6cba7397734..4e6025591fc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_228.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_228.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: LGPL-3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_228.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_228.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_228.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_229.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_229.RULE index 8f9c28f05a0..3de9dbade0c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_229.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_229.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_229.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_229.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_229.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_23.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_23.RULE index 24d12487021..22b311ac20c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_23.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_23.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_23.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_23.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_230.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_230.RULE index 53881997b70..f660baddbd9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_230.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_230.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + * * 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 @@ -9,4 +17,4 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * -* See +* See \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_230.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_230.yml deleted file mode 100644 index ee7e90bb133..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_230.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_231.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_231.RULE index 0939e43dbd5..a6af6331077 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_231.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_231.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * AutoOpts 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_231.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_231.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_231.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_232.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_232.RULE index 6106a07bd15..77c62c200eb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_232.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_232.RULE @@ -1 +1,9 @@ -* See +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + +* See \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_232.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_232.yml deleted file mode 100644 index 277b2d7616b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_233.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_233.RULE index 09861e34abf..983771593e2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_233.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_233.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * version 3, or (at your option) any later version as published by diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_233.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_233.yml deleted file mode 100644 index ee7e90bb133..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_233.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_234.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_234.RULE index e9571404a62..b36b3f09885 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_234.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_234.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_234.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_234.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_234.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_235.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_235.RULE index 56e4be2e2ca..f414b7ed94e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_235.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_235.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Library General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_235.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_235.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_235.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_236.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_236.RULE index c0db720fdfb..b656d0ff98a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_236.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_236.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: LGPL-3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_236.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_236.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_236.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_237.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_237.RULE index 01e274bc814..db130ac34f3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_237.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_237.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_237.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_237.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_237.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_238.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_238.RULE index 0ee9666c09b..c00e490ed0b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_238.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_238.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + ** NOTE! The following LGPL license applies to the tdb ** library. This does NOT imply that all of Samba is released diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_238.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_238.yml deleted file mode 100644 index 880f25d8f88..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_238.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_239.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_239.RULE index 4497502f6f0..dfc07a8c4fc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_239.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_239.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -7,4 +15,4 @@ 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 . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_239.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_239.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_239.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_24.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_24.RULE index d680eac5bc1..c08b3bf5b33 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_24.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-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 Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_24.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_24.yml deleted file mode 100644 index a0e179d7e1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_240.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_240.RULE index 36f63383b83..5a52e2be80a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_240.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_240.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: LGPL-3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_240.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_240.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_240.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_241.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_241.RULE index 7823bc9dcb6..2747709a87d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_241.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_241.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +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 Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_241.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_241.yml deleted file mode 100644 index b79a4b6dfea..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_241.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_242.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_242.RULE index be71e36c435..84b6b23da3f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_242.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_242.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_242.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_242.yml deleted file mode 100644 index 75e07854a43..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_242.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_243.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_243.RULE index 185d33dfc10..8d48dbcb71f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_243.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_243.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public License version 3 can be found in /usr/share/common-licenses/LGPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_243.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_243.yml deleted file mode 100644 index 1dbfd0dd12b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_243.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_244.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_244.RULE index 1b6fe5d5e78..161fe8fac3a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_244.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_244.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_244.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_244.yml deleted file mode 100644 index 75e07854a43..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_244.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_245.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_245.RULE index d3d4ef6b090..f59a0c92249 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_245.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_245.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_245.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_245.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_245.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_246.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_246.RULE index ca5835b43c7..6d5dc907f73 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_246.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_246.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_246.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_246.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_246.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_247.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_247.RULE index 635c4fdcc62..1d34f0d2ee6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_247.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_247.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_247.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_247.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_247.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_248.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_248.RULE index 9c2c9f888f5..f955c94c945 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_248.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_248.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_248.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_248.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_248.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_249.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_249.RULE index 0e16bfe6c56..24e9ddfbef0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_249.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_249.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_249.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_249.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_249.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_25.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_25.RULE index c1cd849edc6..3f74a6a3586 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_25.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_25.RULE @@ -1,3 +1,10 @@ +--- +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 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_25.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_25.yml deleted file mode 100644 index a0e179d7e1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_250.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_250.RULE index 67196122b3f..a27947951a4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_250.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_250.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_250.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_250.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_250.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_251.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_251.RULE index 4d1ca8bacfc..c1899e64049 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_251.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_251.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_251.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_251.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_251.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_252.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_252.RULE index 69638477369..d63f0b6e57b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_252.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_252.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This package 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_252.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_252.yml deleted file mode 100644 index ad18bb11e05..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_252.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_253.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_253.RULE index 79c63ce7405..2f8e7898d93 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_253.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_253.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_253.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_253.yml deleted file mode 100644 index 37227724802..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_253.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_254.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_254.RULE index 53b7a504728..d974a63bdb2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_254.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_254.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +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 Lesser General Public License as published by the Free Software Foundation; either version 3 of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_254.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_254.yml deleted file mode 100644 index def90027ad7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_254.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_255.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_255.RULE index c9e592ea84d..a5288c460ff 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_255.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_255.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian systems, the text of the GNU Lesser General Public License version 3 can be found in the file `/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_255.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_255.yml deleted file mode 100644 index 37227724802..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_255.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_256.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_256.RULE index 8089eb14e9d..df3e1f7b2f9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_256.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_256.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: LGPL-3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_256.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_256.yml deleted file mode 100644 index 3e2b49aa090..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_256.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_257.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_257.RULE index 0b46c2ec926..6b76a536e90 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_257.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_257.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: LGPL-3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_257.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_257.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_258.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_258.RULE index dcf85fff872..8987f5dbe67 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_258.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_258.RULE @@ -1 +1,6 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +--- + The library (include/ and lib/) is available under the GNU Lesser General Public License version 3 or, at your option, any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_258.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_258.yml deleted file mode 100644 index 5af8fed278d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_258.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_259.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_259.RULE index 099919aeedd..a48e4468455 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_259.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_259.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + LGPL-3.0+ GNU Lesser General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_259.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_259.yml deleted file mode 100644 index ba0ed79a570..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_259.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_26.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_26.RULE index 67151527294..5633325dbd0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_26.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_26.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +--- + * 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 @@ -11,4 +16,4 @@ * 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, Fifth Floor, Boston, MA 02110-1301, USA. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_26.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_26.yml deleted file mode 100644 index 5af8fed278d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_26.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_260.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_260.RULE index 49c70fd42d1..3f0778ca2da 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_260.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_260.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Lesser General Public License v3.0 or later LGPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_260.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_260.yml deleted file mode 100644 index ba0ed79a570..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_260.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_261.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_261.RULE index b0ba8c6645b..7a95a8169a1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_261.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_261.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : LGPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_261.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_261.yml deleted file mode 100644 index 2ec63be9b4a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_261.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_262.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_262.RULE index e3c248387db..f12df423f2f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_262.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_262.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : LGPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_262.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_262.yml deleted file mode 100644 index ba0ed79a570..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_262.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_263.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_263.RULE index 83d0d761b65..973fa323e17 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_263.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_263.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Lesser General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_263.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_263.yml deleted file mode 100644 index ba0ed79a570..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_263.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_264.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_264.RULE index e99e91cdbf3..8785f810e84 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_264.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_264.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPL-3.0-or-later GNU Lesser General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_264.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_264.yml deleted file mode 100644 index 0e175231c88..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_264.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_265.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_265.RULE index e8eb382e8e0..7523a9b77b0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_265.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_265.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Lesser General Public License v3.0 or later LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_265.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_265.yml deleted file mode 100644 index 0e175231c88..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_265.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_266.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_266.RULE index 0937c679631..da24822e28e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_266.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_266.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_266.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_266.yml deleted file mode 100644 index 3f38067ee3f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_266.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_267.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_267.RULE index 83c130e7922..5e3a454118c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_267.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_267.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Lesser General Public License v3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_267.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_267.yml deleted file mode 100644 index 3f38067ee3f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_267.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_268.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_268.RULE index 57678eace15..91a008fa68e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_268.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_268.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_268.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_268.yml deleted file mode 100644 index 3f38067ee3f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_268.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_269.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_269.RULE index 6292411182d..20e0253dc96 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_269.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_269.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['LGPL', 'LGPL-3.0-or-later'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_269.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_269.yml deleted file mode 100644 index 33b67d9bde4..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_269.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_27.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_27.RULE index 3a14c5f7770..86d686921ca 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_27.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_27.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +minimum_coverage: 93 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + GNU Lesser General Public License, Version 3 */ is free software: you can redistribute it and/or modify it under @@ -11,4 +19,4 @@ 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 . If not, see . +along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_27.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_27.yml deleted file mode 100644 index 0acc9d7ab95..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -minimum_coverage: 93 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_270.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_270.RULE index 76965e978e4..3c92340e96c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_270.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_270.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://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}} of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_270.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_270.yml deleted file mode 100644 index bea9246270e..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_270.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_271.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_271.RULE index 9dc68d3df5d..b4d35d42bc5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_271.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_271.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LGPL-3.0-or-later +--- + https://licenses.nuget.org/LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_271.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_271.yml deleted file mode 100644 index 1f2fc9c8ef2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_271.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LGPL-3.0-or-later diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_272.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_272.RULE index 2f98bcf34ee..9ee948c2f6b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_272.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_272.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_272.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_272.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_273.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_273.RULE index d44a30f67c5..7c21146fd48 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_273.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_273.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + licenses: LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_273.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_273.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_274.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_274.RULE index bf6274c2d60..2f0594381e0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_274.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_274.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0-or-later +--- + LICENSE {{LGPL-3.0-or-later}} https://spdx.org/licenses/LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_274.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_274.yml deleted file mode 100644 index c80e593e8e0..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_274.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0-or-later diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_275.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_275.RULE index 632e8672c5b..614ca083c46 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_275.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_275.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0-or-later +--- + {{LGPL-3.0-or-later}} https://spdx.org/licenses/LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_275.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_275.yml deleted file mode 100644 index c80e593e8e0..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_275.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0-or-later diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_276.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_276.RULE index 472c86e7498..fb706531a85 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_276.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_276.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0 +--- + {{LGPL-3.0}} https://spdx.org/licenses/LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_276.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_276.yml deleted file mode 100644 index 237dde5bbb8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_276.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_277.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_277.RULE index 54c916dcc7b..6fcc65d6e2a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_277.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_277.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0 +--- + LICENSE {{LGPL-3.0}} https://spdx.org/licenses/LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_277.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_277.yml deleted file mode 100644 index 237dde5bbb8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_277.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_278.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_278.RULE index a195df2264a..2510a143bf2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_278.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_278.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0 +--- + {{LGPL-3.0+}} https://spdx.org/licenses/LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_278.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_278.yml deleted file mode 100644 index 237dde5bbb8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_278.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_279.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_279.RULE index d3eeff56818..113c852178d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_279.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_279.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0 +--- + LICENSE {{LGPL-3.0+}} https://spdx.org/licenses/LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_279.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_279.yml deleted file mode 100644 index 237dde5bbb8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_279.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_28.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_28.RULE index 1a1ea1ed59d..3f434f7f18d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_28.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_28.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING.LIB +notes: a damaged notice using library rather than lesser +--- + 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, diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_28.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_28.yml deleted file mode 100644 index b400295fe68..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING.LIB -notes: a damaged notice using library rather than lesser diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_280.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_280.RULE index 2ff3489ffad..d0a832fbb7b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_280.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_280.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-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 {{Lesser General Public # License version 3 as published}} by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_280.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_280.yml deleted file mode 100644 index a0e179d7e1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_280.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_281.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_281.RULE index e25c516fd08..f247ac9a369 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_281.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_281.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +notes: seen in FFmpeg +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + CONFIG_LGPLV3 printf( "%s is free software; you can redistribute it and/or modify\n" diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_281.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_281.yml deleted file mode 100644 index 5c29820ea94..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_281.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -notes: seen in FFmpeg -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_282.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_282.RULE index b7d6ac477c4..4fbf135f849 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_282.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_282.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +notes: seen in FFmpeg +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + "%s is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU Lesser General Public License as published by\n" "the Free Software Foundation; either version 3 of the License, or\n" diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_282.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_282.yml deleted file mode 100644 index 5c29820ea94..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_282.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -notes: seen in FFmpeg -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_29.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_29.RULE index 458cec38afb..6f23e1ff2da 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_29.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_29.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_29.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_29.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_3.RULE index 44884734284..5c235bc5d31 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +notes: LGPL text with some weird characters +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -62,4 +74,4 @@ The Free Software Foundation may publish revised and/or new versions of the GNU Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License or any later version applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. -If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. +If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_3.yml deleted file mode 100644 index 9af8208b0c5..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -notes: LGPL text with some weird characters -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_30.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_30.RULE index 43d2cd4dfb1..78e53718406 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_30.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_30.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_30.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_30.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_31.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_31.RULE index e7dd06705fb..9facf6c350b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_31.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_31.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_31.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_31.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_32.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_32.RULE index 2043175a9f8..54fddbdbc05 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_32.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_32.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_32.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_32.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_33.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_33.RULE index 1a7292fc5fe..6626fb3a869 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_33.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_33.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_33.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_33.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_34.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_34.RULE index 03ee872bed5..2a416bde415 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_34.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_34.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_34.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_34.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_35.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_35.RULE index dfc37c4ba00..70141f11b71 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_35.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_35.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPLv30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_35.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_35.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_36.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_36.RULE index 2677cba0e5b..2ed31cf8764 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_36.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_36.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_36.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_36.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_37.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_37.RULE index a17dc7f9ac3..982bbbfe794 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_37.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_37.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_37.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_37.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_38.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_38.RULE index 4210c49663f..9dd2b8dea86 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_38.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_38.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license: LGPL v3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_38.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_38.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_39.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_39.RULE index 30f7f560006..3b6fb93ae39 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_39.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_39.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + license: LGPL v.3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_39.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_39.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_4.RULE index febbe8ce02a..a43f56f8f79 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-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 Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -7,4 +14,4 @@ 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 . +along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_4.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_4.yml deleted file mode 100644 index a0e179d7e1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_40.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_40.RULE index 69128e0b723..b74ee1ac625 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_40.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_40.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_40.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_40.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_41.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_41.RULE index c05fba93e34..55c1636c80c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_41.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_41.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_41.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_41.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_42.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_42.RULE index b5d2256ea16..eed5034f49d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_42.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_42.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_42.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_42.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_43.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_43.RULE index be19ae6c885..5a3e34c6073 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_43.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_43.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_43.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_43.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_44.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_44.RULE index 7294b218b79..8faf3dcacda 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_44.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_44.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_44.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_44.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_45.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_45.RULE index e76b9e56262..a542658705c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_45.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_45.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_45.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_45.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_46.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_46.RULE index 97a7b18fd5b..d06ebf6a899 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_46.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_46.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_46.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_46.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_47.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_47.RULE index 78be5972130..fb86315c11c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_47.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_47.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + lgpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_47.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_47.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_48.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_48.RULE index e0e4332cdf6..be8d96a5d73 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_48.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_48.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_48.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_48.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_49.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_49.RULE index 87538715282..a9a2dbae9a7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_49.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_49.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_49.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_49.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_5.RULE index 2fa775c94ff..b4c7b7b3762 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + Collection Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -8,4 +15,4 @@ 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 Collection Library. If not, see +along with Collection Library. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_5.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_5.yml deleted file mode 100644 index a0e179d7e1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_50.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_50.RULE index c2267cbd6af..bb6ca43f475 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_50.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_50.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_50.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_50.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_51.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_51.RULE index 0c2420740ad..573266e3881 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_51.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_51.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_51.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_51.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_52.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_52.RULE index 7921ae4b4f0..e4d35ea18d3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_52.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_52.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_52.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_52.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_53.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_53.RULE index b951d59cfd5..8910067fc87 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_53.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_53.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPL30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_53.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_53.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_54.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_54.RULE index 4ea7d945ee6..0ef2e92d20a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_54.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_54.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv3PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_54.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_54.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_55.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_55.RULE index 84ae9eb8273..8bb93b05a28 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_55.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_55.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + GNULGPLv30PLUS \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_55.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_55.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_56.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_56.RULE index 9756b16f827..07e853d7576 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_56.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_56.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_56.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_56.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_57.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_57.RULE index 215f7193e46..95009c55081 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_57.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_57.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_57.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_57.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_58.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_58.RULE index 65a8bca1c4e..d2b9d98afc8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_58.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_58.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_58.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_58.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_59.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_59.RULE index 1a505b05951..b1e4f9afc05 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_59.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_59.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_59.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_59.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_5_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_5_1.RULE index 58ad8df6cbb..10213fd5c32 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_5_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_5_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.gnu.org/licenses +--- + Collection Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or @@ -9,4 +17,4 @@ GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License - along with Collection Library. If not, see <http://www.gnu.org/licenses/>. + along with Collection Library. If not, see <http://www.gnu.org/licenses/>. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_5_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_5_1.yml deleted file mode 100644 index 7d60ad80132..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_6.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_6.RULE index a6ef7fe70b7..bcfb1e75248 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-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 Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or @@ -8,4 +15,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 program. If not, see . -See LICENSE.TXT file for more information. +See LICENSE.TXT file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_6.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_6.yml deleted file mode 100644 index a0e179d7e1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_60.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_60.RULE index 7e8aca9c3cb..7f2f603b994 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_60.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_60.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_60.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_60.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_61.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_61.RULE index fcbaa4d9586..7791ea32978 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_61.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_61.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_61.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_61.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_62.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_62.RULE index 8c0d487af13..414120eed19 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_62.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_62.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_62.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_62.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_63.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_63.RULE index 1f8d0f2b6f8..8e56321345c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_63.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_63.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgplv3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_63.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_63.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_64.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_64.RULE index 5c079a4f2f0..cbed8d0484f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_64.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_64.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_64.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_64.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_65.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_65.RULE index cec361e3118..49c11976936 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_65.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_65.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_65.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_65.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_66.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_66.RULE index 60485420b00..4b8e370d101 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_66.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_66.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_66.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_66.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_67.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_67.RULE index aae86ebb590..b66f304ce3d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_67.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_67.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_67.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_67.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_68.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_68.RULE index 4e1584cf40d..a7939fe3f9f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_68.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_68.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_68.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_68.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_69.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_69.RULE index 3221f4bc850..cf8b0023a7f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_69.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_69.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_69.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_69.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_7.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_7.RULE index df4bae9d221..8b091c5eb42 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_7.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_7.yml deleted file mode 100644 index 7cf06ba0fa3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_70.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_70.RULE index ac5bb6dcc80..113b80013ea 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_70.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_70.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_70.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_70.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_71.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_71.RULE index 7531c592091..904389e4352 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_71.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_71.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnulgpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_71.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_71.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_72.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_72.RULE index ecdf0f9b68d..b5c0454d232 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_72.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_72.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_72.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_72.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_73.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_73.RULE index ec3cdd852e1..ec9818ac573 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_73.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_73.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_73.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_73.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_74.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_74.RULE index a4e42e26365..3bfe7cfdbdf 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_74.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_74.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_74.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_74.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_75.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_75.RULE index cecb1e57d64..bb4ea6849bb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_75.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_75.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv30+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_75.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_75.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_76.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_76.RULE index c1705fcc77c..6cafc7832e8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_76.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_76.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_76.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_76.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_77.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_77.RULE index 9af534c4b13..f6fb3b4b667 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_77.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_77.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_77.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_77.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_78.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_78.RULE index 86806f55c38..f66716146bd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_78.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_78.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_78.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_78.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_79.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_79.RULE index ac9c168ad73..54340957f24 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_79.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_79.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv30plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_79.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_79.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_8.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_8.RULE index 4d75e8e92ce..8bb4ebf8f7a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_8.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + is free software licensed under the GNU Lesser General Public Licence version 3 or later -(see licenses/gpl-3.txt or http://www.gnu.org/licenses/lgpl.html). +(see licenses/gpl-3.txt or http://www.gnu.org/licenses/lgpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_8.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_8.yml deleted file mode 100644 index 2ecb132c878..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_80.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_80.RULE index bad59b52eab..3e895806c78 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_80.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_80.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_80.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_80.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_81.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_81.RULE index 5d82c88f29b..11b5fe4e838 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_81.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_81.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_81.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_81.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_82.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_82.RULE index f76aa220200..3d9f2ecfb2e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_82.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_82.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_82.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_82.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_83.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_83.RULE index 2cc08bff4cd..c018ff77806 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_83.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_83.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_83.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_83.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_84.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_84.RULE index 62691ddbfc8..c687f12c140 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_84.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_84.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgplv3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_84.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_84.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_85.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_85.RULE index 3cfd007c01d..c1e25767359 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_85.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_85.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v 3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_85.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_85.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_86.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_86.RULE index df6a24d6884..3d9ea10365a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_86.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_86.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_86.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_86.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_87.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_87.RULE index 24851d162ef..cda94b793ff 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_87.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_87.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v 3plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_87.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_87.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_88.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_88.RULE index cb3ba339be3..840d705e0de 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_88.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_88.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v 3.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_88.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_88.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_89.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_89.RULE index cff2304bb93..2df6a88e62e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_89.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_89.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_89.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_89.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_9.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_9.RULE index b655e625301..34ef2759cf7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_9.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + is free software licensed under the GNU Lesser General Public license version 3 or later -(see licenses/gpl-3.txt or http://www.gnu.org/licenses/lgpl.html). +(see licenses/gpl-3.txt or http://www.gnu.org/licenses/lgpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_9.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_9.yml deleted file mode 100644 index 2ecb132c878..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_90.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_90.RULE index 9c828c58985..654fcb0e9a0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_90.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_90.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_90.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_90.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_91.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_91.RULE index c5b1adf7e69..6666c6b105e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_91.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_91.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v 3 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_91.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_91.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_92.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_92.RULE index 7d435fafda1..1ec740ed100 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_92.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_92.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v 3.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_92.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_92.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_93.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_93.RULE index f0bd9289758..d9cea24f723 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_93.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_93.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +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 Library General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_93.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_93.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_94.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_94.RULE index 625fc43518d..7f94446e1fc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_94.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_94.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_94.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_94.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_95.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_95.RULE index 211f65622f5..caa8211fd0c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_95.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_95.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 100 +--- + library : GNU Lesser General Public License, version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_95.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_95.yml deleted file mode 100644 index 9fe75e072a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_96.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_96.RULE index 3d27b559b06..69003a6a32f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_96.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_96.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: LGPL-3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_96.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_96.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_97.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_97.RULE index c9a6e054229..560059fee20 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_97.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_97.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * version 3, or (at your option) any later version as published by diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_97.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_97.yml deleted file mode 100644 index 03174083cff..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_97.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_98.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_98.RULE index 02b656bd155..629254a3c18 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_98.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_98.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: LGPL-3 This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_98.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_98.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_99.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_99.RULE index ec182a71b04..0c21157498a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_99.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_99.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_99.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_99.yml deleted file mode 100644 index 388507054b8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-2.0-plus_1.RULE index 734da3036ac..d8ee7dccebf 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-2.0-plus_1.RULE @@ -1 +1,7 @@ -License: LGPLv3+_or_GPLv2+ +--- +license_expression: lgpl-3.0-plus AND gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + +License: LGPLv3+_or_GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-2.0-plus_1.yml deleted file mode 100644 index f6d1508f971..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus AND gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-3.0-plus_1.RULE index 1e1d5d2502d..9cb1e5e9ad8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-3.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus AND gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GPLv3+ and LGPLv3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-3.0-plus_1.yml deleted file mode 100644 index 35ace5033f2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus AND gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_lgpl-2.0-plus_and_apache-2.0_and_bsd-new_and_cc-by-4.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_and_lgpl-2.0-plus_and_apache-2.0_and_bsd-new_and_cc-by-4.0_1.RULE index 2e911171641..b4629533701 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_lgpl-2.0-plus_and_apache-2.0_and_bsd-new_and_cc-by-4.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_and_lgpl-2.0-plus_and_apache-2.0_and_bsd-new_and_cc-by-4.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus AND lgpl-2.0-plus AND apache-2.0 AND bsd-new AND cc-by-4.0 +is_license_tag: yes +relevance: 100 +--- + License: GPLv3+ and LGPLv2+ and ASL 2.0 and CC-BY \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_lgpl-2.0-plus_and_apache-2.0_and_bsd-new_and_cc-by-4.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_and_lgpl-2.0-plus_and_apache-2.0_and_bsd-new_and_cc-by-4.0_1.yml deleted file mode 100644 index 15841bd5c6b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_lgpl-2.0-plus_and_apache-2.0_and_bsd-new_and_cc-by-4.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus AND lgpl-2.0-plus AND apache-2.0 AND bsd-new AND cc-by-4.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_1.RULE index 2e63bf94c21..7465e7aff71 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0-plus AND proprietary-license +is_license_notice: yes +--- + are free software and can be redistributed and/or modified under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (optionally) any later version. @@ -16,4 +21,4 @@ including: state that was used, with a sentence such as “We used the open- source software [Ref] to compute...” • You are required to cite our papers in any publications that use this code. The citation for -the various different modules of our software is described in Section 2. +the various different modules of our software is described in Section 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_1.yml deleted file mode 100644 index 9c3775eab93..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus AND proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_2.RULE index a94b04458c7..e814cbb078e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0-plus AND proprietary-license +is_license_notice: yes +--- + are free software and can be redistributed and/or modified under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (optionally) any later version. @@ -16,4 +21,4 @@ including: state that was used, with a sentence such as “We used the open- source software [Ref] to compute...” • You are required to cite our papers in any publications that use this code. The citation for -the various different modules of our software is described in Section 2. +the various different modules of our software is described in Section 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_2.yml deleted file mode 100644 index 9c3775eab93..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus AND proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_3.RULE index 5c3f8ecfb89..688e3e51773 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus AND proprietary-license +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 of the License, or (at your option) any @@ -16,5 +23,4 @@ modification or extension of the code; (B) you are required to cite our papers in any publications that use this code. The citation for the various different modules of our software, together with a complete list of requirements and restrictions are found in the document license.pdf enclosed -with this distribution. - +with this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_3.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_3.yml deleted file mode 100644 index 9f196f9af49..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus AND proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_4.RULE index 5c1cad93e6e..32017b045f1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus AND proprietary-license +is_license_notice: yes +relevance: 100 +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 of the License, or (at your option) any @@ -16,5 +24,4 @@ modification or extension of the code; (B) you are required to cite our papers in any publications that use this code. The citation for the various different modules of our software, together with a complete list of requirements and restrictions are found in the document license.pdf enclosed -with this distribution. - +with this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_4.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_4.yml deleted file mode 100644 index 75ed4001cbc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_and_proprietary-license_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus AND proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_1.RULE index e59e945e7b5..2d90e85085c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENCE.APACHE + - LICENCE.LGPL +--- + * can be used either under the terms of * a) the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_1.yml deleted file mode 100644 index ee88e94e442..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENCE.APACHE - - LICENCE.LGPL diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_2.RULE index 923feca4fac..47fdca56a15 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENCE.APACHE + - LICENCE.LGPL +--- + License 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 adopt . diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_2.yml deleted file mode 100644 index ee88e94e442..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENCE.APACHE - - LICENCE.LGPL diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_3.RULE index cc60bf95eff..d85df173fee 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENCE.APACHE + - LICENCE.LGPL + - LICENCE.GPL +--- + JavaParser 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 JavaParser. For details about the LGPL License please refer to LICENSE.LGPL. Please note diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_3.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_3.yml deleted file mode 100644 index b636b80cf2d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENCE.APACHE - - LICENCE.LGPL - - LICENCE.GPL diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_4.RULE index 7c3afbd98c4..8a4c8c9fba3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 80 +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 @@ -7,4 +17,4 @@ 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_4.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_4.yml deleted file mode 100644 index abed22ef5ea..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus OR apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - http://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_5.RULE index 8c51e12e948..2c04c423060 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.LGPL + - LICENSE.APACHE +--- + * JavaParser can be used either under the terms of * a) the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_5.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_5.yml deleted file mode 100644 index adaadc08c91..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.LGPL - - LICENSE.APACHE diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_6.RULE index 7e7387618ac..43c06abe944 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.html + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + GNU Lesser General Public License @@ -7,4 +17,4 @@ Apache License, Version 2.0 https://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_6.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_6.yml deleted file mode 100644 index b814f5278ba..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus OR apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.html - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_7.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_7.RULE index fe27b7c84c9..a66b26abcb3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - https://www.gnu.org/licenses/lgpl-3.0.html +--- + GNU Lesser General Public License @@ -7,4 +17,4 @@ 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_7.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_7.yml deleted file mode 100644 index 776058cc3ec..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus OR apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - https://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_8.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_8.RULE index 5a75d75efef..de31dd3e971 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus OR apache-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt + - https://www.gnu.org/licenses/lgpl-3.0.html +--- + GNU Lesser General Public License @@ -7,4 +17,4 @@ Apache License, Version 2.0 https://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_8.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_8.yml deleted file mode 100644 index 8352a90bd1f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_apache-2.0_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus OR apache-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt - - https://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new.RULE index 9935d5cea9b..c7e8206b6ea 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING.lgplv3 + - COPYING.gplv3 + - COPYING.mbsd +--- + * is available under any one of two licenses. The license * in use must be one of these two and the choice is under the control * of the user of the license. @@ -6,4 +15,4 @@ * See the files "COPYING.lgplv3" and "COPYING.gplv3" * * The Modified Berkeley Software Distribution License - * See the file "COPYING.mbsd" + * See the file "COPYING.mbsd" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new.yml deleted file mode 100644 index e109a341a5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING.lgplv3 - - COPYING.gplv3 - - COPYING.mbsd diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new2.RULE index a6c2d9f77b9..c484c95ce5a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING.lgpl + - COPYING.mbsd +--- + It is redistributable under the terms of either the LGPL (see COPYING.lgpl) or under the terms of the advertising clause free BSD -license (see COPYING.mbsd). +license (see COPYING.mbsd). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new2.yml deleted file mode 100644 index d050c5f3d6f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING.lgpl - - COPYING.mbsd diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new3.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new3.RULE index 515733e09e6..83b14641b7f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING.lgpl + - COPYING.mbsd +--- + LICENSING: This material is Copyright . You are diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new3.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new3.yml deleted file mode 100644 index d050c5f3d6f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING.lgpl - - COPYING.mbsd diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new4.RULE index 071cb12733f..46524dbd25b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING.lgplv3 + - COPYING.gplv3 + - COPYING.mbsd +--- + * is free software. * * is available under any one of two licenses. The license @@ -14,4 +23,4 @@ * * 8584710e9b04216a394078dc156b781d0b47e1729104d666658aecef8ee32e95 COPYING.gplv3 * 4379e7444a0e2ce2b12dd6f5a52a27a4d02d39d247901d3285c88cf0d37f477b COPYING.lgplv3 - * 13aa749a5b0a454917a944ed8fffc530b784f5ead522b1aacaf4ec8aa55a6239 COPYING.mbsd + * 13aa749a5b0a454917a944ed8fffc530b784f5ead522b1aacaf4ec8aa55a6239 COPYING.mbsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new4.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new4.yml deleted file mode 100644 index e109a341a5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING.lgplv3 - - COPYING.gplv3 - - COPYING.mbsd diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new5.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new5.RULE index c839dec9652..8a95fc052d9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR bsd-new +is_license_notice: yes +referenced_filenames: + - COPYING.lgplv3 + - COPYING.gplv3 + - COPYING.mbsd +--- + is available under any one of two licenses. The license in use must be one of these two and the choice is under the control of the user of the license. @@ -12,4 +21,4 @@ These files have the following sha256 sums: 8584710e9b04216a394078dc156b781d0b47e1729104d666658aecef8ee32e95 COPYING.gplv3 4379e7444a0e2ce2b12dd6f5a52a27a4d02d39d247901d3285c88cf0d37f477b COPYING.lgplv3 -13aa749a5b0a454917a944ed8fffc530b784f5ead522b1aacaf4ec8aa55a6239 COPYING.mbsd +13aa749a5b0a454917a944ed8fffc530b784f5ead522b1aacaf4ec8aa55a6239 COPYING.mbsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new5.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new5.yml deleted file mode 100644 index e109a341a5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR bsd-new -is_license_notice: yes -referenced_filenames: - - COPYING.lgplv3 - - COPYING.gplv3 - - COPYING.mbsd diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new_1.RULE index 14339139724..f4a17b95b19 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0-plus OR bsd-new +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.lgplv3 + - COPYING.gplv3 + - COPYING.mbsd +--- + AutoOpts is available under any one of two licenses. The license in use must be one of these two and the choice is under the control of the user of the license. diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new_1.yml deleted file mode 100644 index 210c9bef51f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_bsd-new_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0-plus OR bsd-new -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.lgplv3 - - COPYING.gplv3 - - COPYING.mbsd diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_cc-by-sa-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_cc-by-sa-3.0_1.RULE index 6fb507682bf..ba90d4434f4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_cc-by-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_cc-by-sa-3.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus OR cc-by-sa-3.0 +is_license_notice: yes +relevance: 100 +--- + The logo is released under the terms of the GNU Lesser General Public License, version 3 or any later version, or, at your option, of the Creative Commons diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_cc-by-sa-3.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_cc-by-sa-3.0_1.yml deleted file mode 100644 index b5968aa2e26..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_cc-by-sa-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus OR cc-by-sa-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_1.RULE index c03a4d71f0d..205dc0686f5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + The library is dual-licensed under LGPLv3 or GPLv2, see the file COPYING for detailed information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_1.yml deleted file mode 100644 index f8563727b26..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_10.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_10.RULE index 4fbb44e9a73..3973d6f244f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_10.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + The GNU Library is free software; you can redistribute it and/or modify it under the terms of either: diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_10.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_10.yml deleted file mode 100644 index 79e9b3981c3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_11.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_11.RULE index 5a997f5c17c..23fdbba29c1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_11.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The GNU Library is free software; you can redistribute it and/or modify it under the terms of either: diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_11.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_11.yml deleted file mode 100644 index 839b584f8fc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_12.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_12.RULE index 97b639a3028..eab45ec0cb1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_12.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_12.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - Copying +--- + Copying LGPL3+ or GPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_12.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_12.yml deleted file mode 100644 index 422df790be0..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - Copying diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_13.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_13.RULE index c2fe48fd346..1c6766a9d7b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_13.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_13.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + LGPL3+ or GPL2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_13.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_13.yml deleted file mode 100644 index 7ddaa877be3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_14.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_14.RULE index 926f696b234..9f57f982d71 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_14.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_14.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: in GNU Nettle +ignorable_urls: + - http://www.gnu.org/licenses +--- + GNU is free software: you can redistribute it and/or modify it under the terms of either: * the GNU Lesser General Public License as published by the Free diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_14.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_14.yml deleted file mode 100644 index a686fe3c290..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: in GNU Nettle -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_15.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_15.RULE index c5d74287b48..188849b9e99 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_15.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: in GNU Nettle +--- + is dual licenced under the GNU General Public License version 2 or later, and the GNU Lesser General Public License version 3 or later. When using , you must comply fully with all conditions of at least diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_15.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_15.yml deleted file mode 100644 index 81a4b9670c4..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: in GNU Nettle diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_16.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_16.RULE index 3b589048925..20017f0aff9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_16.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + is free software: you can redistribute it and/or modify it under the terms of either: @@ -20,4 +28,4 @@ You should have received copies of the GNU General Public License and the GNU Lesser General Public License along with this program. If - not, see . + not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_16.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_16.yml deleted file mode 100644 index 879cc7d5a84..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_17.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_17.RULE index 03e1a297512..46cd3d3ac69 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_17.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: in GNU Nettle +ignorable_urls: + - https://www.gnu.org/licenses +--- + GNU is free software: you can redistribute it and/or modify it under the terms of either: * the GNU Lesser General Public License as published by the Free diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_17.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_17.yml deleted file mode 100644 index a0e766425a1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: in GNU Nettle -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_18.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_18.RULE index 3f371d9b80b..a246e8bf1ef 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_18.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either: @@ -20,4 +28,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, see . -*/ +*/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_18.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_18.yml deleted file mode 100644 index 879cc7d5a84..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_19.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_19.RULE index eba3eb779d6..4a5cee4871c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_19.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_19.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + lgpl3_header = ''' // is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -16,4 +25,4 @@ lgpl3_header = ''' // // You should have received a copy of the GNU Lesser General Public // License and a copy of the GNU General Public License along with -// . If not, see . +// . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_19.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_19.yml deleted file mode 100644 index 32fb746735f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_2.RULE index 06158e3c047..2dd16d0efce 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.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 either: @@ -20,4 +27,4 @@ You should have received a copy of the GNU General Public License along with this program; if not, see . -*/ +*/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_2.yml deleted file mode 100644 index 03acc0fe2b3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_20.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_20.RULE index 899e49f8c0e..400ad646ef1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_20.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_20.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +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 @@ -15,4 +24,4 @@ GNU General Public License for more details. You should have received a copy of the GNU Lesser General Public License and a copy of the GNU General Public License along with -. If not, see . +. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_20.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_20.yml deleted file mode 100644 index 32fb746735f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_21.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_21.RULE index 9751e9e12db..a748f107105 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_21.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either: @@ -18,4 +26,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . */ + along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_21.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_21.yml deleted file mode 100644 index 879cc7d5a84..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_22.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_22.RULE index 5a555a1639f..c7dd4b58c6b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_22.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: from https://sourceware.org/git/?p=elfutils.git;a=blob;f=libdwelf/dwelf_dwarf_gnu_debugaltlink.c;h=b8285d0906680f3f1b2243c1185c2dea50b7bab7;hb=HEAD +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + This file is free software; you can redistribute it and/or modify it under the terms of either @@ -20,4 +29,4 @@ You should have received copies of the GNU General Public License and the GNU Lesser General Public License along with this program. If - not, see . */ + not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_22.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_22.yml deleted file mode 100644 index e0f8ee91178..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: from https://sourceware.org/git/?p=elfutils.git;a=blob;f=libdwelf/dwelf_dwarf_gnu_debugaltlink.c;h=b8285d0906680f3f1b2243c1185c2dea50b7bab7;hb=HEAD -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_23.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_23.RULE index 18507556703..4805c5cbc20 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_23.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.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 either: * diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_23.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_23.yml deleted file mode 100644 index e2104f95fb8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_24.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_24.RULE index a46e26993c6..b393a0b126d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_24.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_24.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + LGPLv3+ or GPLv2+ dual license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_24.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_24.yml deleted file mode 100644 index 839b584f8fc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_25.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_25.RULE index 4fce54a28af..adc6e86da45 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_25.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_25.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + distributed under a LGPLv3+ or GPLv2+ dual license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_25.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_25.yml deleted file mode 100644 index 839b584f8fc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_26.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_26.RULE index 7f80dd46a15..29211c10b99 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_26.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_26.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +--- + distributed under a LGPLv3+ or GPLv2+ dual license, and as such binaries of this library need to adhere to either LGPLv3+ or GPLv2+ license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_26.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_26.yml deleted file mode 100644 index ae29b8c09b1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_26.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_27.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_27.RULE index 7e484ecfa0b..721f7c72dec 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_27.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses +--- + The GNU MP Library is free software; you can redistribute it and/or modify it under the terms of either: diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_27.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_27.yml deleted file mode 100644 index 8cfd102808f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_3.RULE index 2de70d24d75..0eba8561607 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of either: @@ -18,4 +26,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . */ + along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_3.yml deleted file mode 100644 index 7ef35b96c57..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_4.RULE index 6938a96ffeb..bea9acf6bfb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_4.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_reference: yes +relevance: 80 +--- + lgpl=3orGPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_4.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_4.yml deleted file mode 100644 index 96b6c6aa9ad..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_5.RULE index 157318fe951..12a02fde678 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.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 either: @@ -20,4 +27,4 @@ You should have received copies of the GNU General Public License and the GNU Lesser General Public License along with this program. If - not, see . + not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_5.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_5.yml deleted file mode 100644 index 03acc0fe2b3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_6.RULE index 5ff756370db..1ec58e4d360 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + lgpl3_header = ''' // is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -16,4 +24,4 @@ lgpl3_header = ''' // // You should have received a copy of the GNU Lesser General Public // License and a copy of the GNU General Public License along with -// . If not, see . +// . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_6.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_6.yml deleted file mode 100644 index 1d505a97672..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_7.RULE index 390aafaed67..e6c8374ff19 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +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 @@ -15,4 +23,4 @@ GNU General Public License for more details. You should have received a copy of the GNU Lesser General Public License and a copy of the GNU General Public License along with -. If not, see . +. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_7.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_7.yml deleted file mode 100644 index 1d505a97672..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_8.RULE index 71a67e72e59..38d8d2f97fe 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + # The GNU MP Library is free software; you can redistribute it and/or modify # it under the terms of either: # diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_8.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_8.yml deleted file mode 100644 index 79e9b3981c3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_9.RULE index de4cf031aed..55dac9d799d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + The GNU MP Library is free software; you can redistribute it and/or modify it under the terms of either: diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_9.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_9.yml deleted file mode 100644 index 839b584f8fc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_elfutils.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_elfutils.RULE index 8c919cca069..c7871f00866 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_elfutils.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_elfutils.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus OR gpl-2.0-plus +is_license_notice: yes +notes: from https://sourceware.org/git/?p=elfutils.git;a=blob;f=libdwelf/dwelf_dwarf_gnu_debugaltlink.c;h=b8285d0906680f3f1b2243c1185c2dea50b7bab7;hb=HEAD +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This file is free software; you can redistribute it and/or modify it under the terms of either @@ -20,4 +28,4 @@ You should have received copies of the GNU General Public License and the GNU Lesser General Public License along with this program. If - not, see . */ + not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_elfutils.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_elfutils.yml deleted file mode 100644 index f7f55972cc4..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_gpl-2.0-plus_elfutils.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus OR gpl-2.0-plus -is_license_notice: yes -notes: from https://sourceware.org/git/?p=elfutils.git;a=blob;f=libdwelf/dwelf_dwarf_gnu_debugaltlink.c;h=b8285d0906680f3f1b2243c1185c2dea50b7bab7;hb=HEAD -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_url_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_url_1.RULE index 714dbbde8b5..b85f46febef 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-3.0-or-later +--- + https://spdx.org/licenses/lgpl-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_url_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_url_1.yml deleted file mode 100644 index ae316da4115..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-3.0-or-later diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_url_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_url_2.RULE index f8528f07b5e..6045c8be71e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-3.0-or-later.html +--- + https://spdx.org/licenses/lgpl-3.0-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_url_2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_url_2.yml deleted file mode 100644 index 19392192cad..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-3.0-or-later.html diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_cygwin-exception_and_gpl-3.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_cygwin-exception_and_gpl-3.0_and_other-permissive_1.RULE index dba58e8dbfb..939b3729e05 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_cygwin-exception_and_gpl-3.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_cygwin-exception_and_gpl-3.0_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus WITH cygwin-exception-lgpl-3.0-plus AND gpl-3.0-plus AND other-permissive +is_license_notice: yes +referenced_filenames: + - COPYING.LIB + - COPYING +--- + THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. @@ -26,5 +34,4 @@ Linking Exception: convey the resulting executable under terms of your choice, without any need to comply with the conditions of LGPLv3 section 4. An independent module is a module which is not itself based on the - Cygwin library. - + Cygwin library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_cygwin-exception_and_gpl-3.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_cygwin-exception_and_gpl-3.0_and_other-permissive_1.yml deleted file mode 100644 index bdaa62979cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_cygwin-exception_and_gpl-3.0_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus WITH cygwin-exception-lgpl-3.0-plus AND gpl-3.0-plus AND other-permissive -is_license_notice: yes -referenced_filenames: - - COPYING.LIB - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_1.RULE index f45e8cdbd68..70cebbe53af 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus WITH independent-module-linking-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +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 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_1.yml deleted file mode 100644 index 7194fedeb9f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus WITH independent-module-linking-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_1.RULE index f90ca03ec96..19ee300a718 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus WITH independent-module-linking-exception AND free-unknown +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +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 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_1.yml deleted file mode 100644 index adb39f02c40..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus WITH independent-module-linking-exception AND free-unknown -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_2.RULE index 38671f3977a..7e80130623e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0-plus WITH independent-module-linking-exception AND free-unknown +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + LICENSE TERMS Please carefully read the license terms below. If you do not accept the terms, @@ -47,5 +56,4 @@ statement from your version. Some files included with may be licensed under other terms or made available for use without requiring a license. Where applicable, such terms are -noted in the file to which they apply. - +noted in the file to which they apply. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_2.yml deleted file mode 100644 index adb39f02c40..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_independent-module-linking-exception_and_free-unknown_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus WITH independent-module-linking-exception AND free-unknown -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_4.RULE index 8aa6f85c95d..5b9e5f82562 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus WITH independent-module-linking-exception +is_license_notice: yes +minimum_coverage: 80 +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 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_4.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_4.yml deleted file mode 100644 index d4028d535fb..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus WITH independent-module-linking-exception -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other3.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other3.RULE index 2af1d1f3df8..2457d422d80 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus WITH independent-module-linking-exception AND free-unknown +is_license_notice: yes +minimum_coverage: 80 +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 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other3.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other3.yml deleted file mode 100644 index ed023ab2af6..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus WITH independent-module-linking-exception AND free-unknown -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other4.RULE index 7e41c9679d5..93740671203 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus WITH independent-module-linking-exception AND free-unknown +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + LICENSE TERMS Please carefully read the license terms below. If you do not accept the terms, @@ -47,5 +55,4 @@ statement from your version. Some files included with may be licensed under other terms or made available for use without requiring a license. Where applicable, such terms are -noted in the file to which they apply. - +noted in the file to which they apply. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other4.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other4.yml deleted file mode 100644 index ed023ab2af6..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_linking_exception_and_other4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus WITH independent-module-linking-exception AND free-unknown -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_ocaml-lgpl-linking-exception_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_ocaml-lgpl-linking-exception_1.RULE index 23f2efad1ff..a2a55089a81 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_ocaml-lgpl-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_ocaml-lgpl-linking-exception_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus WITH ocaml-lgpl-linking-exception +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 3 or later as published by the Free Software Foundation, with the special diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_ocaml-lgpl-linking-exception_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_ocaml-lgpl-linking-exception_1.yml deleted file mode 100644 index b71226f09f0..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_ocaml-lgpl-linking-exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus WITH ocaml-lgpl-linking-exception -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_1.RULE index 349d3708526..ae0db338033 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses +--- + psycopg2 and the LGPL psycopg2 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. @@ -7,4 +14,4 @@ In addition, as a special exception, the copyright holders give permission to li You must obey the GNU Lesser General Public License in all respects for all of the code used other than OpenSSL. If you modify file(s) with this exception, you may extend this exception to your version of the file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source files in the program, then also delete it here. -You should have received a copy of the GNU Lesser General Public License along with psycopg2 (see the doc directory.) If not, see http://www.gnu.org/licenses/. +You should have received a copy of the GNU Lesser General Public License along with psycopg2 (see the doc directory.) If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_1.yml deleted file mode 100644 index f4621166f46..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_2.RULE index 83a0ad51b87..988cac6b46b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + psycopg2 and the LGPL psycopg2 is free software: you can redistribute it and/or modify it diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_2.yml deleted file mode 100644 index deeab72974f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_3.RULE index 0ace20f83f2..41b3804682a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_3.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus +is_license_tag: yes +relevance: 95 +notes: only ever seen in pysycopg2 setup.py +--- + license="LGPL with exceptions" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_3.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_3.yml deleted file mode 100644 index c5b513ee521..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus -is_license_tag: yes -relevance: 95 -notes: only ever seen in pysycopg2 setup.py diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_4.RULE index f60d6462181..dc50621c732 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: psycopg2 +--- + In addition, as a special exception, the copyright holders give permission to link this program with the OpenSSL library (or with modified versions of OpenSSL that use the same license as OpenSSL), diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_4.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_4.yml deleted file mode 100644 index 05b66b6de90..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: psycopg2 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_5.RULE index 78d61042549..5c65fd40fe0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: psycopg2 +--- + psycopg2 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 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_5.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_5.yml deleted file mode 100644 index 05b66b6de90..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: psycopg2 diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_and_zpl-2.0_and_zlib_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_and_zpl-2.0_and_zlib_1.RULE index ae91ee60968..af1b450ab0f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_and_zpl-2.0_and_zlib_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_and_zpl-2.0_and_zlib_1.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus AND zpl-2.0 AND zlib +is_license_tag: yes +relevance: 95 +notes: only ever seen in pysycopg2 setup.py +--- + license="LGPL with exceptions or ZPL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_and_zpl-2.0_and_zlib_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_and_zpl-2.0_and_zlib_1.yml deleted file mode 100644 index b78ed25b179..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_openssl-exception-lgpl-3.0-plus_and_zpl-2.0_and_zlib_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus WITH openssl-exception-lgpl-3.0-plus AND zpl-2.0 AND zlib -is_license_tag: yes -relevance: 95 -notes: only ever seen in pysycopg2 setup.py diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_1.RULE index fd8699fab42..82dc1406a65 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 +is_license_notice: yes +relevance: 100 +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 (LGPL) as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_1.yml deleted file mode 100644 index 796c7a3caee..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_2.RULE index f01a63f637e..b825c0ab0eb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + libzmq is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_2.yml b/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_2.yml deleted file mode 100644 index 796c7a3caee..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_with_zeromq-exception-lgpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0.RULE b/src/licensedcode/data/rules/lgpl-3.0.RULE index 26e4f884033..c9b28ee06cc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- + http://www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0.SPDX.RULE b/src/licensedcode/data/rules/lgpl-3.0.SPDX.RULE index e5c4a5b34db..423c75da281 100644 --- a/src/licensedcode/data/rules/lgpl-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lgpl-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright r 2007 Free Software Foundation, Inc. +ignorable_holders: + - r Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/src/licensedcode/data/rules/lgpl-3.0.SPDX.yml b/src/licensedcode/data/rules/lgpl-3.0.SPDX.yml deleted file mode 100644 index 09081c0868f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lgpl-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright r 2007 Free Software Foundation, Inc. -ignorable_holders: - - r Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/lgpl-3.0.yml b/src/licensedcode/data/rules/lgpl-3.0.yml deleted file mode 100644 index 53a1b8d93e2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_1.RULE index 6792b18cc3e..161b2036318 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.html +--- + http://www.gnu.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0_1.yml deleted file mode 100644 index 8351e624642..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_10.RULE b/src/licensedcode/data/rules/lgpl-3.0_10.RULE index 5f51492d458..032eb8ad8ea 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_10.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0-standalone.html + - http://www.gnu.org/licenses/lgpl-3.0-standalone.html +--- + released under the GNU LGPL. GNU GPL v3 applies by its formulation found at http://www.gnu.org/licenses/gpl-3.0-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_10.yml b/src/licensedcode/data/rules/lgpl-3.0_10.yml deleted file mode 100644 index 1f87d2d5734..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0-standalone.html - - http://www.gnu.org/licenses/lgpl-3.0-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_100.RULE b/src/licensedcode/data/rules/lgpl-3.0_100.RULE index ae68f05a995..dd6cc46e240 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_100.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_100.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.en.html +--- + https://www.gnu.org/licenses/lgpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_100.yml b/src/licensedcode/data/rules/lgpl-3.0_100.yml deleted file mode 100644 index adc229742d9..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.en.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_101.RULE b/src/licensedcode/data/rules/lgpl-3.0_101.RULE index cf8e209d95a..edb9066d49f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_101.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_101.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.ca.html +--- + https://www.gnu.org/licenses/lgpl-3.0.ca.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_101.yml b/src/licensedcode/data/rules/lgpl-3.0_101.yml deleted file mode 100644 index f2927f94df0..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.ca.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_102.RULE b/src/licensedcode/data/rules/lgpl-3.0_102.RULE index d85ad9a7157..46a024c06b2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_102.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_102.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.de.html +--- + https://www.gnu.org/licenses/lgpl-3.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_102.yml b/src/licensedcode/data/rules/lgpl-3.0_102.yml deleted file mode 100644 index 14c46a5c7af..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.de.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_103.RULE b/src/licensedcode/data/rules/lgpl-3.0_103.RULE index 48e300002dd..a367745fb3c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_103.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_103.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.fr.html +--- + https://www.gnu.org/licenses/lgpl-3.0.fr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_103.yml b/src/licensedcode/data/rules/lgpl-3.0_103.yml deleted file mode 100644 index bc3ee517e2b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.fr.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_104.RULE b/src/licensedcode/data/rules/lgpl-3.0_104.RULE index c20875f3e75..47c8cf526fe 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_104.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_104.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.ja.html +--- + https://www.gnu.org/licenses/lgpl-3.0.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_104.yml b/src/licensedcode/data/rules/lgpl-3.0_104.yml deleted file mode 100644 index d45da190ead..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_104.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.ja.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_105.RULE b/src/licensedcode/data/rules/lgpl-3.0_105.RULE index 1e05ce2cbf1..7b22e55b1dc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_105.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_105.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.nl.html +--- + https://www.gnu.org/licenses/lgpl-3.0.nl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_105.yml b/src/licensedcode/data/rules/lgpl-3.0_105.yml deleted file mode 100644 index 5b05e26f348..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.nl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_106.RULE b/src/licensedcode/data/rules/lgpl-3.0_106.RULE index ab3a2934f16..2d55d6a8157 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_106.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_106.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.pt-br.html +--- + https://www.gnu.org/licenses/lgpl-3.0.pt-br.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_106.yml b/src/licensedcode/data/rules/lgpl-3.0_106.yml deleted file mode 100644 index b488ea2c7d7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_106.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.pt-br.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_107.RULE b/src/licensedcode/data/rules/lgpl-3.0_107.RULE index c82e06081dd..c977d9b746c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_107.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_107.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.ru.html +--- + https://www.gnu.org/licenses/lgpl-3.0.ru.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_107.yml b/src/licensedcode/data/rules/lgpl-3.0_107.yml deleted file mode 100644 index 581e6742c55..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.ru.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_108.RULE b/src/licensedcode/data/rules/lgpl-3.0_108.RULE index 9b915371155..99e885e01cb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_108.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_108.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.uk.html +--- + https://www.gnu.org/licenses/lgpl-3.0.uk.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_108.yml b/src/licensedcode/data/rules/lgpl-3.0_108.yml deleted file mode 100644 index 1d7dd212a15..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.uk.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_109.RULE b/src/licensedcode/data/rules/lgpl-3.0_109.RULE index eb1ad9ce0f5..9ad784b25e9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_109.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_109.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- + GNU Lesser General Public License 3.0 (LGPLv3) link: http://www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_109.yml b/src/licensedcode/data/rules/lgpl-3.0_109.yml deleted file mode 100644 index 53a1b8d93e2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_11.RULE b/src/licensedcode/data/rules/lgpl-3.0_11.RULE index 9214ac0485e..1fb8ba067be 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_11.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + This file may be distributed under the terms of the GNU LGPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_11.yml b/src/licensedcode/data/rules/lgpl-3.0_11.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_110.RULE b/src/licensedcode/data/rules/lgpl-3.0_110.RULE index 855453fc88c..d81c012cccb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_110.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_110.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.html +--- + Open Source project licensed under the terms of the LGPLv3 license. Please see for license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_110.yml b/src/licensedcode/data/rules/lgpl-3.0_110.yml deleted file mode 100644 index 254cdee003b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_111.RULE b/src/licensedcode/data/rules/lgpl-3.0_111.RULE index 4ba31a80d40..9ac2664562c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_111.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_111.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + _LICENSE_LGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_111.yml b/src/licensedcode/data/rules/lgpl-3.0_111.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_112.RULE b/src/licensedcode/data/rules/lgpl-3.0_112.RULE index c556b356237..f9721441cbb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_112.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_112.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /licenses/lgpl-3.0.txt +--- + /licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_112.yml b/src/licensedcode/data/rules/lgpl-3.0_112.yml deleted file mode 100644 index cdccc8749fa..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_113.RULE b/src/licensedcode/data/rules/lgpl-3.0_113.RULE index f421c54065e..773642a7ee4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_113.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_113.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_113.yml b/src/licensedcode/data/rules/lgpl-3.0_113.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_114.RULE b/src/licensedcode/data/rules/lgpl-3.0_114.RULE index 5816800d40c..6ddbcbb6f62 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_114.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_114.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.html +--- + www.gnu.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_114.yml b/src/licensedcode/data/rules/lgpl-3.0_114.yml deleted file mode 100644 index 8351e624642..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_115.RULE b/src/licensedcode/data/rules/lgpl-3.0_115.RULE index 5a1f03ff766..575747e90fa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_115.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_115.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_115.yml b/src/licensedcode/data/rules/lgpl-3.0_115.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_116.RULE b/src/licensedcode/data/rules/lgpl-3.0_116.RULE index 6f640aab390..8da98a13f41 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_116.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_116.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- + www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_116.yml b/src/licensedcode/data/rules/lgpl-3.0_116.yml deleted file mode 100644 index 53a1b8d93e2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_117.RULE b/src/licensedcode/data/rules/lgpl-3.0_117.RULE index 27422a288ee..1b597ef214e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_117.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_117.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_117.yml b/src/licensedcode/data/rules/lgpl-3.0_117.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_118.RULE b/src/licensedcode/data/rules/lgpl-3.0_118.RULE index 7fbb01274f7..8c8a6467ca7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_118.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_118.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0 +--- + www.gnu.org/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_118.yml b/src/licensedcode/data/rules/lgpl-3.0_118.yml deleted file mode 100644 index c8bc8fdb519..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_118.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_119.RULE b/src/licensedcode/data/rules/lgpl-3.0_119.RULE index cd67af0477d..b049884cf06 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_119.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_119.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + gnu.org/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_119.yml b/src/licensedcode/data/rules/lgpl-3.0_119.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_12.RULE b/src/licensedcode/data/rules/lgpl-3.0_12.RULE index 82970c11768..032df0f4832 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_12.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Licensed under LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_12.yml b/src/licensedcode/data/rules/lgpl-3.0_12.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_120.RULE b/src/licensedcode/data/rules/lgpl-3.0_120.RULE index c2c484e9d9c..e0886d3e31e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_120.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_120.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.html +--- + https://www.gnu.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_120.yml b/src/licensedcode/data/rules/lgpl-3.0_120.yml deleted file mode 100644 index c5af754670c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_121.RULE b/src/licensedcode/data/rules/lgpl-3.0_121.RULE index 4113fc66b83..814fbd78a8e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_121.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_121.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/lgpl-3.0.html +--- + http://gnu.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_121.yml b/src/licensedcode/data/rules/lgpl-3.0_121.yml deleted file mode 100644 index 127a8f73946..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_121.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_122.RULE b/src/licensedcode/data/rules/lgpl-3.0_122.RULE index 35e477200af..17e7d690fb1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_122.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_122.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/lgpl-3.0.html +--- + https://gnu.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_122.yml b/src/licensedcode/data/rules/lgpl-3.0_122.yml deleted file mode 100644 index 220c12c6fa5..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_122.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_123.RULE b/src/licensedcode/data/rules/lgpl-3.0_123.RULE index e92a2732c58..b62ac4918df 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_123.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_123.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + https://www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_123.yml b/src/licensedcode/data/rules/lgpl-3.0_123.yml deleted file mode 100644 index a2572f6af24..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_124.RULE b/src/licensedcode/data/rules/lgpl-3.0_124.RULE index b3cb249af3b..7ad890b767f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_124.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_124.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/lgpl-3.0.txt +--- + http://gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_124.yml b/src/licensedcode/data/rules/lgpl-3.0_124.yml deleted file mode 100644 index 6d63f9f26ac..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_124.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_125.RULE b/src/licensedcode/data/rules/lgpl-3.0_125.RULE index 00e91f6abcc..df413ad7afd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_125.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_125.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/lgpl-3.0.txt +--- + https://gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_125.yml b/src/licensedcode/data/rules/lgpl-3.0_125.yml deleted file mode 100644 index 6bc98f0b2a1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_125.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_126.RULE b/src/licensedcode/data/rules/lgpl-3.0_126.RULE index b5d79b335b5..6f9ea282f26 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_126.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_126.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0 +--- + http://www.gnu.org/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_126.yml b/src/licensedcode/data/rules/lgpl-3.0_126.yml deleted file mode 100644 index c8bc8fdb519..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_126.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_127.RULE b/src/licensedcode/data/rules/lgpl-3.0_127.RULE index 741c999cec2..8aa79664322 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_127.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_127.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0 +--- + https://www.gnu.org/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_127.yml b/src/licensedcode/data/rules/lgpl-3.0_127.yml deleted file mode 100644 index 28cc9a43585..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_128.RULE b/src/licensedcode/data/rules/lgpl-3.0_128.RULE index 98415ac5a47..8d812d74c10 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_128.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_128.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gnu.org/licenses/lgpl-3.0 +--- + http://gnu.org/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_128.yml b/src/licensedcode/data/rules/lgpl-3.0_128.yml deleted file mode 100644 index 5b4a97fd2cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_128.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gnu.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_129.RULE b/src/licensedcode/data/rules/lgpl-3.0_129.RULE index fa9d3aede84..894ad28153c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_129.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_129.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gnu.org/licenses/lgpl-3.0 +--- + https://gnu.org/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_129.yml b/src/licensedcode/data/rules/lgpl-3.0_129.yml deleted file mode 100644 index 4564bc9c1a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gnu.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_13.RULE b/src/licensedcode/data/rules/lgpl-3.0_13.RULE index f954aff6134..2a2adae1e3c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_13.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_13.yml b/src/licensedcode/data/rules/lgpl-3.0_13.yml deleted file mode 100644 index 54fa161f2dd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_130.RULE b/src/licensedcode/data/rules/lgpl-3.0_130.RULE index 2530332113e..98feca23649 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_130.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_130.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + License is now LGPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_130.yml b/src/licensedcode/data/rules/lgpl-3.0_130.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_131.RULE b/src/licensedcode/data/rules/lgpl-3.0_131.RULE index fc825c8c50a..c00730b99f2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_131.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_131.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + LGPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_131.yml b/src/licensedcode/data/rules/lgpl-3.0_131.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_132.RULE b/src/licensedcode/data/rules/lgpl-3.0_132.RULE index 2ab8082903b..ef9ea1d1482 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_132.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_132.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +--- + The Source Code is subject of the GNU LESSER GENERAL PUBLIC LICENSE. The text of the License is the following: diff --git a/src/licensedcode/data/rules/lgpl-3.0_132.yml b/src/licensedcode/data/rules/lgpl-3.0_132.yml deleted file mode 100644 index 541e96853ed..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_132.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/lgpl-3.0_133.RULE b/src/licensedcode/data/rules/lgpl-3.0_133.RULE index 8c1063a9068..4b622ee4f6b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_133.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_133.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + All files in this repository are licensed as follows. If you contribute to this repository, it is assumed that you license your contribution under the same license unless you state otherwise. diff --git a/src/licensedcode/data/rules/lgpl-3.0_133.yml b/src/licensedcode/data/rules/lgpl-3.0_133.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_134.RULE b/src/licensedcode/data/rules/lgpl-3.0_134.RULE index 0ff9818b93a..afc2d3c347b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_134.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_134.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + version 3 of the (L)GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_134.yml b/src/licensedcode/data/rules/lgpl-3.0_134.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_135.RULE b/src/licensedcode/data/rules/lgpl-3.0_135.RULE index f9de6b2c7cc..ad13d6a1bba 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_135.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_135.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The following libraries are under LGPL version 3: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_135.yml b/src/licensedcode/data/rules/lgpl-3.0_135.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_136.RULE b/src/licensedcode/data/rules/lgpl-3.0_136.RULE index ed5c47590ca..85470302f1f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_136.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_136.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + libraries are under LGPL version 3: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_136.yml b/src/licensedcode/data/rules/lgpl-3.0_136.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_137.RULE b/src/licensedcode/data/rules/lgpl-3.0_137.RULE index 9550e1a194a..66a1f2b46ba 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_137.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_137.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + When combining them with FFmpeg, use the configure option `--enable-version3` to upgrade FFmpeg to the LGPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_137.yml b/src/licensedcode/data/rules/lgpl-3.0_137.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_138.RULE b/src/licensedcode/data/rules/lgpl-3.0_138.RULE index 7894b8fd784..dff4e6d3742 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_138.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_138.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + LGPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_138.yml b/src/licensedcode/data/rules/lgpl-3.0_138.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_139.RULE b/src/licensedcode/data/rules/lgpl-3.0_139.RULE index 94930571e35..1297a0489f6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_139.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_139.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.html +--- + licensed under the terms of the LGPLv3 license. Please see for license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_139.yml b/src/licensedcode/data/rules/lgpl-3.0_139.yml deleted file mode 100644 index 254cdee003b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_14.RULE b/src/licensedcode/data/rules/lgpl-3.0_14.RULE index 9970d5e8bbc..c9f5b1daae5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_14.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_14.yml b/src/licensedcode/data/rules/lgpl-3.0_14.yml deleted file mode 100644 index 54fa161f2dd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_140.RULE b/src/licensedcode/data/rules/lgpl-3.0_140.RULE index e723239d4b1..4616aa9d1e3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_140.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_140.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the LGPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_140.yml b/src/licensedcode/data/rules/lgpl-3.0_140.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_141.RULE b/src/licensedcode/data/rules/lgpl-3.0_141.RULE index c409b051da3..71f852dc52b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_141.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_141.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + the LGPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_141.yml b/src/licensedcode/data/rules/lgpl-3.0_141.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_142.RULE b/src/licensedcode/data/rules/lgpl-3.0_142.RULE index 8446d5cf566..c9c08280e48 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_142.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_142.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/LGPL-3.0 +--- + `LGPL-3.0` - [Lesser General Public License 3.0](http://opensource.org/licenses/LGPL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_142.yml b/src/licensedcode/data/rules/lgpl-3.0_142.yml deleted file mode 100644 index e38538abd78..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_142.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/LGPL-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_143.RULE b/src/licensedcode/data/rules/lgpl-3.0_143.RULE index cd7004798ce..ef91f293887 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_143.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_143.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 97 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.obj-sys.com/open/lgpl3.html +--- + * This software is furnished under an open source license and may be * used and copied only in accordance with the terms of this license. * The text of the license may generally be found in the root diff --git a/src/licensedcode/data/rules/lgpl-3.0_143.yml b/src/licensedcode/data/rules/lgpl-3.0_143.yml deleted file mode 100644 index f3af63e9737..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_143.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 97 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.obj-sys.com/open/lgpl3.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_144.RULE b/src/licensedcode/data/rules/lgpl-3.0_144.RULE index a2a3c995b8d..c3fb81c82ce 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_144.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_144.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.obj-sys.com/open/lgpl3.html +--- + http://www.obj-sys.com/open/lgpl3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_144.yml b/src/licensedcode/data/rules/lgpl-3.0_144.yml deleted file mode 100644 index 4ae6848e19d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_144.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.obj-sys.com/open/lgpl3.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_145.RULE b/src/licensedcode/data/rules/lgpl-3.0_145.RULE index 81460760280..899dc8fb815 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_145.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_145.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://www.obj-sys.com/open/lgpl3.html +--- + https://www.obj-sys.com/open/lgpl3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_145.yml b/src/licensedcode/data/rules/lgpl-3.0_145.yml deleted file mode 100644 index 668ff7d328b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_145.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://www.obj-sys.com/open/lgpl3.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_146.RULE b/src/licensedcode/data/rules/lgpl-3.0_146.RULE index 7df58bce10a..65c88ae7ce4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_146.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_146.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - javaparser/COPYING.LESSER +--- + * javaparser is licensed under the LGPL. (The javaparser source code contains a file with the text of the GPL, but it is not clear why, since javaparser does not use the GPL.) See file javaparser/COPYING.LESSER diff --git a/src/licensedcode/data/rules/lgpl-3.0_146.yml b/src/licensedcode/data/rules/lgpl-3.0_146.yml deleted file mode 100644 index 98421a43e54..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_146.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - javaparser/COPYING.LESSER diff --git a/src/licensedcode/data/rules/lgpl-3.0_147.RULE b/src/licensedcode/data/rules/lgpl-3.0_147.RULE index 707661c3282..b5e97ec2db5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_147.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_147.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 99 +notes: weird spelling +--- + license="GNU iLGPL v3", \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_147.yml b/src/licensedcode/data/rules/lgpl-3.0_147.yml deleted file mode 100644 index 3a545a1f49f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_147.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 99 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-3.0_148.RULE b/src/licensedcode/data/rules/lgpl-3.0_148.RULE index 18864706aa1..1c479ab33b2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_148.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_148.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +notes: weird spelling +--- + released under the \fILGPL V3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_148.yml b/src/licensedcode/data/rules/lgpl-3.0_148.yml deleted file mode 100644 index 2a5eb426884..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_148.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-3.0_149.RULE b/src/licensedcode/data/rules/lgpl-3.0_149.RULE index 73012fc1834..bc20a98af4e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_149.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_149.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +notes: weird spelling +--- + released under the ILGPL V3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_149.yml b/src/licensedcode/data/rules/lgpl-3.0_149.yml deleted file mode 100644 index 2a5eb426884..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_149.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-3.0_15.RULE b/src/licensedcode/data/rules/lgpl-3.0_15.RULE index 1321650505a..f62d20ca118 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_15.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU-LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_15.yml b/src/licensedcode/data/rules/lgpl-3.0_15.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_150.RULE b/src/licensedcode/data/rules/lgpl-3.0_150.RULE index bb57f2be225..e490335d0e7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_150.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_150.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +notes: weird spelling +--- + fILGPL V3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_150.yml b/src/licensedcode/data/rules/lgpl-3.0_150.yml deleted file mode 100644 index dd7f942d89d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_150.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-3.0_151.RULE b/src/licensedcode/data/rules/lgpl-3.0_151.RULE index 11ed50cb7f2..156fa7e1e8d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_151.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_151.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +notes: weird spelling +--- + ILGPL V3 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_151.yml b/src/licensedcode/data/rules/lgpl-3.0_151.yml deleted file mode 100644 index dd7f942d89d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_151.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -notes: weird spelling diff --git a/src/licensedcode/data/rules/lgpl-3.0_152.RULE b/src/licensedcode/data/rules/lgpl-3.0_152.RULE index 98b37ca83d3..5b1483ee8d5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_152.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_152.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + license='LGPLv3', \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_152.yml b/src/licensedcode/data/rules/lgpl-3.0_152.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_153.RULE b/src/licensedcode/data/rules/lgpl-3.0_153.RULE index 20f2efda9c4..d90720ed59b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_153.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_153.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Licence: LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_153.yml b/src/licensedcode/data/rules/lgpl-3.0_153.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_154.RULE b/src/licensedcode/data/rules/lgpl-3.0_154.RULE index 744ea64d1fc..d4b3c10a300 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_154.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_154.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + Licence: LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_154.yml b/src/licensedcode/data/rules/lgpl-3.0_154.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_155.RULE b/src/licensedcode/data/rules/lgpl-3.0_155.RULE index 947c3ce11d7..a8e5e24cdfc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_155.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_155.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under LGPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_155.yml b/src/licensedcode/data/rules/lgpl-3.0_155.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_156.RULE b/src/licensedcode/data/rules/lgpl-3.0_156.RULE index f61fc85e034..2a15631b041 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_156.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_156.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under LGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_156.yml b/src/licensedcode/data/rules/lgpl-3.0_156.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_157.RULE b/src/licensedcode/data/rules/lgpl-3.0_157.RULE index 1c73bbce1c8..5757d8d6ea3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_157.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_157.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.en.html +--- + [LGPL v3]: https://www.gnu.org/licenses/lgpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_157.yml b/src/licensedcode/data/rules/lgpl-3.0_157.yml deleted file mode 100644 index adc229742d9..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.en.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_158.RULE b/src/licensedcode/data/rules/lgpl-3.0_158.RULE index 31da8e30c83..c7e72212113 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_158.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_158.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE.md +notes: typo in license id +--- + The source code is released under GLPLv3. See complete license in LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_158.yml b/src/licensedcode/data/rules/lgpl-3.0_158.yml deleted file mode 100644 index 146be683b46..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_158.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE.md -notes: typo in license id diff --git a/src/licensedcode/data/rules/lgpl-3.0_159.RULE b/src/licensedcode/data/rules/lgpl-3.0_159.RULE index 357176c556e..2371f5661e3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_159.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_159.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 99 +--- + The source code is released under GLPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_159.yml b/src/licensedcode/data/rules/lgpl-3.0_159.yml deleted file mode 100644 index cd150413d28..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-3.0_16.RULE b/src/licensedcode/data/rules/lgpl-3.0_16.RULE index 81a7cc81ce7..75355d740ca 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_16.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_16.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-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 Lesser General Public License version 3 as * published by the Free Software Foundation. @@ -9,4 +14,4 @@ * * You should have received a copy of the GNU Lesser General Public License version 3 * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_16.yml b/src/licensedcode/data/rules/lgpl-3.0_16.yml deleted file mode 100644 index d30e6ede3f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0_160.RULE b/src/licensedcode/data/rules/lgpl-3.0_160.RULE index 10aaf8751f6..8189e94a55a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_160.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_160.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + this library was distributed under the GNU Lesser General Public License version 3.0 (GLPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_160.yml b/src/licensedcode/data/rules/lgpl-3.0_160.yml deleted file mode 100644 index cfe4fe5f6a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_160.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/lgpl-3.0_161.RULE b/src/licensedcode/data/rules/lgpl-3.0_161.RULE index da78a10d04d..3f8676d655c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_161.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_161.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the Lesser GNU Public License Version 3, LGPLv3. You should have recieved a copy of this with the source distribution as LICENSE, otherwise it is available at https \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_161.yml b/src/licensedcode/data/rules/lgpl-3.0_161.yml deleted file mode 100644 index 8a238f51a9a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl-3.0_162.RULE b/src/licensedcode/data/rules/lgpl-3.0_162.RULE index cc2c81e9f2c..d62aa252679 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_162.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_162.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + * This is free software; you can redistribute it and/or modify it under * the terms of version 3 of the GNU Lesser General Public License as published * by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-3.0_162.yml b/src/licensedcode/data/rules/lgpl-3.0_162.yml deleted file mode 100644 index 827d4a8f095..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0_163.RULE b/src/licensedcode/data/rules/lgpl-3.0_163.RULE index 570f55ce253..e53f8cd2e2b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_163.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_163.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + * This is free software; you can redistribute it and/or modify it under * the terms of version 3 of the GNU Lesser General Public License as published * by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-3.0_163.yml b/src/licensedcode/data/rules/lgpl-3.0_163.yml deleted file mode 100644 index a850bfc969e..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0_164.RULE b/src/licensedcode/data/rules/lgpl-3.0_164.RULE index f79b1f59391..69fb9ff2a7f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_164.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_164.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses +--- + * This library is free software; you can redistribute it and/or modify it under * the terms of version 3 of the GNU Lesser General Public License as published * by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-3.0_164.yml b/src/licensedcode/data/rules/lgpl-3.0_164.yml deleted file mode 100644 index 827d4a8f095..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0_165.RULE b/src/licensedcode/data/rules/lgpl-3.0_165.RULE index 81268b7cb5c..629f6e0da49 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_165.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_165.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses +--- + * This library is free software; you can redistribute it and/or modify it under * the terms of version 3 of the GNU Lesser General Public License as published * by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-3.0_165.yml b/src/licensedcode/data/rules/lgpl-3.0_165.yml deleted file mode 100644 index a850bfc969e..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses diff --git a/src/licensedcode/data/rules/lgpl-3.0_166.RULE b/src/licensedcode/data/rules/lgpl-3.0_166.RULE index 561a5077c93..33b2e922ea5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_166.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_166.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 99 +notes: typo in license id +--- + under the GLPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_166.yml b/src/licensedcode/data/rules/lgpl-3.0_166.yml deleted file mode 100644 index cfe4fe5f6a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_166.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/lgpl-3.0_167.RULE b/src/licensedcode/data/rules/lgpl-3.0_167.RULE index 1bac060294a..da5cae0e21f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_167.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_167.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation version 3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_167.yml b/src/licensedcode/data/rules/lgpl-3.0_167.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_168.RULE b/src/licensedcode/data/rules/lgpl-3.0_168.RULE index 80d6a326eb8..d60974442c7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_168.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_168.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + 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 version 3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_168.yml b/src/licensedcode/data/rules/lgpl-3.0_168.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_169.RULE b/src/licensedcode/data/rules/lgpl-3.0_169.RULE index f5b6dfecbd5..c357eed40d9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_169.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_169.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +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 Lesser GNU General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/lgpl-3.0_169.yml b/src/licensedcode/data/rules/lgpl-3.0_169.yml deleted file mode 100644 index 689a5d10a1d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0_17.RULE b/src/licensedcode/data/rules/lgpl-3.0_17.RULE index 41281004959..f1884e867f0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_17.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + licence http://www.gnu.org/licenses/lgpl.html Lesser General Public Licence version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_17.yml b/src/licensedcode/data/rules/lgpl-3.0_17.yml deleted file mode 100644 index af083a277cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_170.RULE b/src/licensedcode/data/rules/lgpl-3.0_170.RULE index 446c44e8d3e..14a51d7fc49 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_170.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_170.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +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 Lesser GNU General Public License as published by the Free Software Foundation, version 3 of the License. diff --git a/src/licensedcode/data/rules/lgpl-3.0_170.yml b/src/licensedcode/data/rules/lgpl-3.0_170.yml deleted file mode 100644 index 9dbe30a10df..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_170.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0_171.RULE b/src/licensedcode/data/rules/lgpl-3.0_171.RULE index e2620648ad9..8ef2152ec0a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_171.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_171.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + * The contents of this file are subject to the LGPL License, Version 3.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_171.yml b/src/licensedcode/data/rules/lgpl-3.0_171.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_172.RULE b/src/licensedcode/data/rules/lgpl-3.0_172.RULE index 2c3cb8d0573..1961e1fbcba 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_172.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_172.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL v3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_172.yml b/src/licensedcode/data/rules/lgpl-3.0_172.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_173.RULE b/src/licensedcode/data/rules/lgpl-3.0_173.RULE index 4f12d10b595..26e8d6c3b7e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_173.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_173.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_173.yml b/src/licensedcode/data/rules/lgpl-3.0_173.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_174.RULE b/src/licensedcode/data/rules/lgpl-3.0_174.RULE index abc8f7b3439..7a66402e63f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_174.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_174.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_174.yml b/src/licensedcode/data/rules/lgpl-3.0_174.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_175.RULE b/src/licensedcode/data/rules/lgpl-3.0_175.RULE index 19d4289bf23..74de42d7ef2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_175.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_175.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL v3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_175.yml b/src/licensedcode/data/rules/lgpl-3.0_175.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_176.RULE b/src/licensedcode/data/rules/lgpl-3.0_176.RULE index 16a9c9aa0b8..5fa839e1473 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_176.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_176.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL 3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_176.yml b/src/licensedcode/data/rules/lgpl-3.0_176.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_177.RULE b/src/licensedcode/data/rules/lgpl-3.0_177.RULE index 1f4c827da5d..78ea680c6bb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_177.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_177.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the LGPL3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_177.yml b/src/licensedcode/data/rules/lgpl-3.0_177.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_178.RULE b/src/licensedcode/data/rules/lgpl-3.0_178.RULE index 098c62420b8..7f7ae13f895 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_178.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_178.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_178.yml b/src/licensedcode/data/rules/lgpl-3.0_178.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_179.RULE b/src/licensedcode/data/rules/lgpl-3.0_179.RULE index 6e8b06ebd10..a062ff09c14 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_179.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_179.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under LGPL 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_179.yml b/src/licensedcode/data/rules/lgpl-3.0_179.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_18.RULE b/src/licensedcode/data/rules/lgpl-3.0_18.RULE index 866ab69fda6..37ab975d34f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_18.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + license http://www.gnu.org/licenses/lgpl.html Lesser General Public license version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_18.yml b/src/licensedcode/data/rules/lgpl-3.0_18.yml deleted file mode 100644 index af083a277cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_180.RULE b/src/licensedcode/data/rules/lgpl-3.0_180.RULE index 1023e6d4a89..ec6661da53c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_180.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_180.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_180.yml b/src/licensedcode/data/rules/lgpl-3.0_180.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_181.RULE b/src/licensedcode/data/rules/lgpl-3.0_181.RULE index e137d9188d8..497c7f7a323 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_181.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_181.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This is licensed under the LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_181.yml b/src/licensedcode/data/rules/lgpl-3.0_181.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_181.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_182.RULE b/src/licensedcode/data/rules/lgpl-3.0_182.RULE index 495c30bf27b..e9cb417e199 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_182.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_182.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_182.yml b/src/licensedcode/data/rules/lgpl-3.0_182.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_183.RULE b/src/licensedcode/data/rules/lgpl-3.0_183.RULE index 2ea41b61ac8..c5afd8d0741 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_183.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_183.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License (LGPL) 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_183.yml b/src/licensedcode/data/rules/lgpl-3.0_183.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_184.RULE b/src/licensedcode/data/rules/lgpl-3.0_184.RULE index 4709b521a00..9c5576fbc6d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_184.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_184.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public licence (LGPL) 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_184.yml b/src/licensedcode/data/rules/lgpl-3.0_184.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_185.RULE b/src/licensedcode/data/rules/lgpl-3.0_185.RULE index 4a8538d5b7f..c455e044cf1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_185.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_185.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_185.yml b/src/licensedcode/data/rules/lgpl-3.0_185.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_186.RULE b/src/licensedcode/data/rules/lgpl-3.0_186.RULE index 4b228e2f7d7..52a2dd629a9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_186.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_186.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License The code of this mod is available under LGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_186.yml b/src/licensedcode/data/rules/lgpl-3.0_186.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_187.RULE b/src/licensedcode/data/rules/lgpl-3.0_187.RULE index bfdc6e10f65..0243f16e2c9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_187.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_187.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + The code of this mod is available under LGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_187.yml b/src/licensedcode/data/rules/lgpl-3.0_187.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_188.RULE b/src/licensedcode/data/rules/lgpl-3.0_188.RULE index 85c95cf2777..e2beaea9baa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_188.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_188.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + available under LGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_188.yml b/src/licensedcode/data/rules/lgpl-3.0_188.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_189.RULE b/src/licensedcode/data/rules/lgpl-3.0_189.RULE index adc1ed77044..d8b2a2d16ed 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_189.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_189.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPLv3. This just means that if you make any changes to how that code works, you must release those changes under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_189.yml b/src/licensedcode/data/rules/lgpl-3.0_189.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_19.RULE b/src/licensedcode/data/rules/lgpl-3.0_19.RULE index 5553ae12342..ef96fefbd02 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_19.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_19.RULE @@ -1,5 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +--- + This software is distributed under the terms of the # GNU Lesser General Public Licence version 3 (LGPL) version 3, # -copied verbatim in the file "LICENSE" +copied verbatim in the file "LICENSE" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_19.yml b/src/licensedcode/data/rules/lgpl-3.0_19.yml deleted file mode 100644 index d30e6ede3f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0_190.RULE b/src/licensedcode/data/rules/lgpl-3.0_190.RULE index 75c9e73cd6f..dbfb74357be 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_190.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_190.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL v 3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_190.yml b/src/licensedcode/data/rules/lgpl-3.0_190.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_191.RULE b/src/licensedcode/data/rules/lgpl-3.0_191.RULE index 49b5daec8c1..0c3fa2183d7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_191.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_191.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_191.yml b/src/licensedcode/data/rules/lgpl-3.0_191.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_192.RULE b/src/licensedcode/data/rules/lgpl-3.0_192.RULE index c22d5984b6a..f2ffed732a2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_192.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_192.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPLv3 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_192.yml b/src/licensedcode/data/rules/lgpl-3.0_192.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_193.RULE b/src/licensedcode/data/rules/lgpl-3.0_193.RULE index cec46847134..fb732c6e5d6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_193.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_193.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_193.yml b/src/licensedcode/data/rules/lgpl-3.0_193.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_193.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_194.RULE b/src/licensedcode/data/rules/lgpl-3.0_194.RULE index 191ca44b3a7..faca0e0f574 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_194.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_194.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPLv3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_194.yml b/src/licensedcode/data/rules/lgpl-3.0_194.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_195.RULE b/src/licensedcode/data/rules/lgpl-3.0_195.RULE index 2cdd7a298fc..8d002a53be7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_195.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_195.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPLv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_195.yml b/src/licensedcode/data/rules/lgpl-3.0_195.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_196.RULE b/src/licensedcode/data/rules/lgpl-3.0_196.RULE index 92cd0f2a173..81c705ab187 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_196.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_196.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL 3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_196.yml b/src/licensedcode/data/rules/lgpl-3.0_196.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_196.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_197.RULE b/src/licensedcode/data/rules/lgpl-3.0_197.RULE index f88f51c0d43..d376fa6c286 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_197.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_197.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_197.yml b/src/licensedcode/data/rules/lgpl-3.0_197.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_197.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_198.RULE b/src/licensedcode/data/rules/lgpl-3.0_198.RULE index 5f5f964cc30..bba8daf071e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_198.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_198.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL v3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_198.yml b/src/licensedcode/data/rules/lgpl-3.0_198.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_199.RULE b/src/licensedcode/data/rules/lgpl-3.0_199.RULE index 3ba71d86da3..d01a2ec0461 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_199.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_199.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE LGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_199.yml b/src/licensedcode/data/rules/lgpl-3.0_199.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_2.RULE index dacf8f875f7..33522de8eb5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + none specified, but does this incorporate the GPL v3 notice? \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_2.yml b/src/licensedcode/data/rules/lgpl-3.0_2.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_20.RULE b/src/licensedcode/data/rules/lgpl-3.0_20.RULE index 64725acd546..f7f42cc22cb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_20.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gate.ac.uk/gate/licence.html +--- + https://gate.ac.uk/gate/licence.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_20.yml b/src/licensedcode/data/rules/lgpl-3.0_20.yml deleted file mode 100644 index d35cccd401e..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gate.ac.uk/gate/licence.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_200.RULE b/src/licensedcode/data/rules/lgpl-3.0_200.RULE index a5c9d550044..2d6c47a9e16 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_200.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_200.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 3.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE LGPL 3.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_200.yml b/src/licensedcode/data/rules/lgpl-3.0_200.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_201.RULE b/src/licensedcode/data/rules/lgpl-3.0_201.RULE index 2520efa8c86..bd17b15f52b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_201.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_201.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 3.0 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_201.yml b/src/licensedcode/data/rules/lgpl-3.0_201.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_202.RULE b/src/licensedcode/data/rules/lgpl-3.0_202.RULE index eaa49e3d5d6..260e0c7c747 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_202.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_202.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + components licensed under LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_202.yml b/src/licensedcode/data/rules/lgpl-3.0_202.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_203.RULE b/src/licensedcode/data/rules/lgpl-3.0_203.RULE index e8f73e6f5c0..fce776281f8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_203.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_203.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_203.yml b/src/licensedcode/data/rules/lgpl-3.0_203.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_204.RULE b/src/licensedcode/data/rules/lgpl-3.0_204.RULE index 86c9461a126..30a79299c39 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_204.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_204.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_204.yml b/src/licensedcode/data/rules/lgpl-3.0_204.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_205.RULE b/src/licensedcode/data/rules/lgpl-3.0_205.RULE index 91c9295c675..686a9fd82ad 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_205.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_205.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under LGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_205.yml b/src/licensedcode/data/rules/lgpl-3.0_205.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_206.RULE b/src/licensedcode/data/rules/lgpl-3.0_206.RULE index 05505f6302f..89008b0c8e7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_206.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_206.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public Licence, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_206.yml b/src/licensedcode/data/rules/lgpl-3.0_206.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_207.RULE b/src/licensedcode/data/rules/lgpl-3.0_207.RULE index ae36b40f130..f0e55347e81 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_207.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_207.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public Licence, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_207.yml b/src/licensedcode/data/rules/lgpl-3.0_207.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_208.RULE b/src/licensedcode/data/rules/lgpl-3.0_208.RULE index 571e0ee87d7..7e5e8735e29 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_208.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_208.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_208.yml b/src/licensedcode/data/rules/lgpl-3.0_208.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_209.RULE b/src/licensedcode/data/rules/lgpl-3.0_209.RULE index e6f140c2b32..9bb456cae54 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_209.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_209.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License, V 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_209.yml b/src/licensedcode/data/rules/lgpl-3.0_209.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_21.RULE b/src/licensedcode/data/rules/lgpl-3.0_21.RULE index 333556d27bf..e552f015400 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_21.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_21.RULE @@ -1 +1,7 @@ -It is released under the GNU Lesser General Public Licence version 3. +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +It is released under the GNU Lesser General Public Licence version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_21.yml b/src/licensedcode/data/rules/lgpl-3.0_21.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_210.RULE b/src/licensedcode/data/rules/lgpl-3.0_210.RULE index 6fcdade6501..9d1a8ce7c68 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_210.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_210.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public Licence, V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_210.yml b/src/licensedcode/data/rules/lgpl-3.0_210.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_211.RULE b/src/licensedcode/data/rules/lgpl-3.0_211.RULE index 06dc270b224..78c0af95ccc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_211.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_211.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public Licence, V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_211.yml b/src/licensedcode/data/rules/lgpl-3.0_211.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_212.RULE b/src/licensedcode/data/rules/lgpl-3.0_212.RULE index addc627349c..69069a3deff 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_212.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_212.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Library General Public License, V3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_212.yml b/src/licensedcode/data/rules/lgpl-3.0_212.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_213.RULE b/src/licensedcode/data/rules/lgpl-3.0_213.RULE index e3781047c73..2f3950e379c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_213.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_213.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU LGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_213.yml b/src/licensedcode/data/rules/lgpl-3.0_213.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_214.RULE b/src/licensedcode/data/rules/lgpl-3.0_214.RULE index 6fd44dcc6db..950ec9082fa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_214.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_214.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_214.yml b/src/licensedcode/data/rules/lgpl-3.0_214.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_215.RULE b/src/licensedcode/data/rules/lgpl-3.0_215.RULE index 96359589c12..2a2deb7c1cc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_215.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_215.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under GNU LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_215.yml b/src/licensedcode/data/rules/lgpl-3.0_215.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_216.RULE b/src/licensedcode/data/rules/lgpl-3.0_216.RULE index 7af17d674eb..95611716c8b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_216.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_216.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the terms GNU LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_216.yml b/src/licensedcode/data/rules/lgpl-3.0_216.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_217.RULE b/src/licensedcode/data/rules/lgpl-3.0_217.RULE index c5c73ffca58..3be264366f1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_217.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_217.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under GNU LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_217.yml b/src/licensedcode/data/rules/lgpl-3.0_217.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_218.RULE b/src/licensedcode/data/rules/lgpl-3.0_218.RULE index 57a8312c383..8df76d36125 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_218.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_218.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Copying LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_218.yml b/src/licensedcode/data/rules/lgpl-3.0_218.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_219.RULE b/src/licensedcode/data/rules/lgpl-3.0_219.RULE index c9801a1176d..96ec24677e8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_219.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_219.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + the GNU Library General Public License, version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_219.yml b/src/licensedcode/data/rules/lgpl-3.0_219.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_22.RULE b/src/licensedcode/data/rules/lgpl-3.0_22.RULE index 03884a75d85..92c2021aecf 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_22.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_22.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- -license http://www.gnu.org/licenses/lgpl-3.0.txt GNU Lesser General Public Licence Version 3 + +license http://www.gnu.org/licenses/lgpl-3.0.txt GNU Lesser General Public Licence Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_22.yml b/src/licensedcode/data/rules/lgpl-3.0_22.yml deleted file mode 100644 index 53a1b8d93e2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_220.RULE b/src/licensedcode/data/rules/lgpl-3.0_220.RULE index 88dff5857b6..3694f886f31 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_220.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_220.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + LICENSE INFORMATION: LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_220.yml b/src/licensedcode/data/rules/lgpl-3.0_220.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_221.RULE b/src/licensedcode/data/rules/lgpl-3.0_221.RULE index 1a05e4f2ed0..72c517f46df 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_221.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_221.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU LGPL version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_221.yml b/src/licensedcode/data/rules/lgpl-3.0_221.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_222.RULE b/src/licensedcode/data/rules/lgpl-3.0_222.RULE index 612f900e619..330b4b51f9d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_222.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_222.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the GNU Lesser General Public License, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_222.yml b/src/licensedcode/data/rules/lgpl-3.0_222.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_223.RULE b/src/licensedcode/data/rules/lgpl-3.0_223.RULE index 5480ab26449..dadabd98caf 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_223.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_223.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_223.yml b/src/licensedcode/data/rules/lgpl-3.0_223.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_224.RULE b/src/licensedcode/data/rules/lgpl-3.0_224.RULE index abcec8c65ea..ed8317d0760 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_224.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_224.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL 3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_224.yml b/src/licensedcode/data/rules/lgpl-3.0_224.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_225.RULE b/src/licensedcode/data/rules/lgpl-3.0_225.RULE index 75bfd3ba3d6..7293bf30971 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_225.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_225.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_225.yml b/src/licensedcode/data/rules/lgpl-3.0_225.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_226.RULE b/src/licensedcode/data/rules/lgpl-3.0_226.RULE index 7a521c21ea3..6e390f5ca4a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_226.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_226.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_226.yml b/src/licensedcode/data/rules/lgpl-3.0_226.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_227.RULE b/src/licensedcode/data/rules/lgpl-3.0_227.RULE index 9397a2aa003..5ec6f85d8e0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_227.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_227.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_227.yml b/src/licensedcode/data/rules/lgpl-3.0_227.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_228.RULE b/src/licensedcode/data/rules/lgpl-3.0_228.RULE index ee1b4fa7b82..434e5140c8a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_228.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_228.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPLv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_228.yml b/src/licensedcode/data/rules/lgpl-3.0_228.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_229.RULE b/src/licensedcode/data/rules/lgpl-3.0_229.RULE index f9857a084fb..2a1be16eeb4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_229.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_229.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL v 3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_229.yml b/src/licensedcode/data/rules/lgpl-3.0_229.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_23.RULE b/src/licensedcode/data/rules/lgpl-3.0_23.RULE index 21429cb1fad..aeb00603bc6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_23.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_23.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + GNU Lesser General Public License ================================= diff --git a/src/licensedcode/data/rules/lgpl-3.0_23.yml b/src/licensedcode/data/rules/lgpl-3.0_23.yml deleted file mode 100644 index 597793eaf31..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_23.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-3.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/lgpl-3.0_230.RULE b/src/licensedcode/data/rules/lgpl-3.0_230.RULE index 3460001027e..33ab7a6f974 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_230.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_230.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPL v3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_230.yml b/src/licensedcode/data/rules/lgpl-3.0_230.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_231.RULE b/src/licensedcode/data/rules/lgpl-3.0_231.RULE index 1af95679041..4b0b9899dbd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_231.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_231.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed UNDER THE TERMS OF THE LGPLv3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_231.yml b/src/licensedcode/data/rules/lgpl-3.0_231.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_232.RULE b/src/licensedcode/data/rules/lgpl-3.0_232.RULE index 2131a5005c4..f8f58efdbae 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_232.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_232.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_232.yml b/src/licensedcode/data/rules/lgpl-3.0_232.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_232.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_233.RULE b/src/licensedcode/data/rules/lgpl-3.0_233.RULE index 245351bdc89..f55a53a215d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_233.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_233.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms GNU LGPL v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_233.yml b/src/licensedcode/data/rules/lgpl-3.0_233.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_234.RULE b/src/licensedcode/data/rules/lgpl-3.0_234.RULE index 54e6d3de73e..8c10341467c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_234.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_234.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + open source LGPLv3 library \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_234.yml b/src/licensedcode/data/rules/lgpl-3.0_234.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_235.RULE b/src/licensedcode/data/rules/lgpl-3.0_235.RULE index 5109bd58202..3e7433d0f8c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_235.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_235.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: worded like an Apache notice +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + Licensed under the LGPL License, Version 3.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/lgpl-3.0_235.yml b/src/licensedcode/data/rules/lgpl-3.0_235.yml deleted file mode 100644 index 04449c7e848..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_235.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: worded like an Apache notice -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_236.RULE b/src/licensedcode/data/rules/lgpl-3.0_236.RULE index d3a8a8e5f22..83a97591ab8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_236.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_236.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3" + Public License can be found in "/usr/share/common-licenses/LGPL-3" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_236.yml b/src/licensedcode/data/rules/lgpl-3.0_236.yml deleted file mode 100644 index 82e01a0d4da..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_236.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_237.RULE b/src/licensedcode/data/rules/lgpl-3.0_237.RULE index fdc2edd3a49..4978815a3f6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_237.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_237.RULE @@ -1 +1,10 @@ -can be found in /usr/share/common-licenses/LGPL-3 +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + +can be found in /usr/share/common-licenses/LGPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_237.yml b/src/licensedcode/data/rules/lgpl-3.0_237.yml deleted file mode 100644 index 1ca7c7c72cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_237.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_238.RULE b/src/licensedcode/data/rules/lgpl-3.0_238.RULE index 9c814cf8c43..5792ebc8609 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_238.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_238.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + governed by the GNU Lesser General Public License version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_238.yml b/src/licensedcode/data/rules/lgpl-3.0_238.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_239.RULE b/src/licensedcode/data/rules/lgpl-3.0_239.RULE index e16b060ad60..25a620c9f33 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_239.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_239.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation version 3.0 and no later version. diff --git a/src/licensedcode/data/rules/lgpl-3.0_239.yml b/src/licensedcode/data/rules/lgpl-3.0_239.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_24.RULE b/src/licensedcode/data/rules/lgpl-3.0_24.RULE index 712c39210f3..0b6800070ea 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_24.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_24.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_text: yes +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 diff --git a/src/licensedcode/data/rules/lgpl-3.0_24.yml b/src/licensedcode/data/rules/lgpl-3.0_24.yml deleted file mode 100644 index 33de1fc1825..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0_240.RULE b/src/licensedcode/data/rules/lgpl-3.0_240.RULE index 9d3126b75de..5d85a414729 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_240.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_240.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + project is open source software released under the LGPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_240.yml b/src/licensedcode/data/rules/lgpl-3.0_240.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_241.RULE b/src/licensedcode/data/rules/lgpl-3.0_241.RULE index b40fdeba6d3..d7a1d241066 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_241.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_241.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_241.yml b/src/licensedcode/data/rules/lgpl-3.0_241.yml deleted file mode 100644 index 779a559fca8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_241.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_242.RULE b/src/licensedcode/data/rules/lgpl-3.0_242.RULE index d339ef8dca3..032e634c070 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_242.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_242.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +notes: https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz +--- + the GNU Lesser General Public License version 3, as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_242.yml b/src/licensedcode/data/rules/lgpl-3.0_242.yml deleted file mode 100644 index 76b27b888da..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_242.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -notes: https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz diff --git a/src/licensedcode/data/rules/lgpl-3.0_243.RULE b/src/licensedcode/data/rules/lgpl-3.0_243.RULE index 2ab7d3f4a71..acb45d7426e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_243.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_243.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + . On Debian systems, the complete text of the GNU Lesser General Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_243.yml b/src/licensedcode/data/rules/lgpl-3.0_243.yml deleted file mode 100644 index 6ef2d18d02b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_243.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_244.RULE b/src/licensedcode/data/rules/lgpl-3.0_244.RULE index df5ba8026ee..a295cbc2025 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_244.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_244.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + Licensed under the GNU Lesser General Public License v.3:http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_244.yml b/src/licensedcode/data/rules/lgpl-3.0_244.yml deleted file mode 100644 index 4e2f79429d8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_244.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_245.RULE b/src/licensedcode/data/rules/lgpl-3.0_245.RULE index afc2b59008a..0d48dd93473 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_245.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_245.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + Licensed under the GNU Lesser General Public License, Version 3:http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_245.yml b/src/licensedcode/data/rules/lgpl-3.0_245.yml deleted file mode 100644 index 4e2f79429d8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_245.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_246.RULE b/src/licensedcode/data/rules/lgpl-3.0_246.RULE index 3d939d74b6f..635bf1f3ed6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_246.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_246.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian systems, the complete text of the GNU General Public License can be found at '/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_246.yml b/src/licensedcode/data/rules/lgpl-3.0_246.yml deleted file mode 100644 index 6ef2d18d02b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_246.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_247.RULE b/src/licensedcode/data/rules/lgpl-3.0_247.RULE index 3f889e01340..ed683f5b735 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_247.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_247.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + See LGPL version 3 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_247.yml b/src/licensedcode/data/rules/lgpl-3.0_247.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_248.RULE b/src/licensedcode/data/rules/lgpl-3.0_248.RULE index d2f7361681f..260ee464c7e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_248.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_248.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3" + Public License can be found in "/usr/share/common-licenses/LGPL-3" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_248.yml b/src/licensedcode/data/rules/lgpl-3.0_248.yml deleted file mode 100644 index 1ca7c7c72cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_248.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_249.RULE b/src/licensedcode/data/rules/lgpl-3.0_249.RULE index 1ff1f2a7c3b..c8c8ba7e4dd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_249.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_249.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian GNU/Linux systems the full text of the GNU LGPL v3 can be found in the `/usr/share/common-licenses/LGPL-3' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_249.yml b/src/licensedcode/data/rules/lgpl-3.0_249.yml deleted file mode 100644 index 611a9a7c058..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_249.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_25.RULE b/src/licensedcode/data/rules/lgpl-3.0_25.RULE index d9fc5b5e9d4..dae6893411e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_25.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_25.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU LESSER GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 + Version 3, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_25.yml b/src/licensedcode/data/rules/lgpl-3.0_25.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_250.RULE b/src/licensedcode/data/rules/lgpl-3.0_250.RULE index bd922d59f18..c09dd58298b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_250.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_250.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + License: LGPL-3 On Debian GNU/Linux systems the full text of the GNU LGPL v3 can be found in the `/usr/share/common-licenses/LGPL-3' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_250.yml b/src/licensedcode/data/rules/lgpl-3.0_250.yml deleted file mode 100644 index 611a9a7c058..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_250.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_251.RULE b/src/licensedcode/data/rules/lgpl-3.0_251.RULE index 92358ec9156..504bc9e7c43 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_251.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_251.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found at '/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_251.yml b/src/licensedcode/data/rules/lgpl-3.0_251.yml deleted file mode 100644 index 178ac3b95bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_251.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_252.RULE b/src/licensedcode/data/rules/lgpl-3.0_252.RULE index 6a5174f127f..f0f9c65fa70 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_252.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_252.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + . On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_252.yml b/src/licensedcode/data/rules/lgpl-3.0_252.yml deleted file mode 100644 index 178ac3b95bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_252.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_253.RULE b/src/licensedcode/data/rules/lgpl-3.0_253.RULE index e5c1c71466b..d53e16b6a53 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_253.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_253.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + GNU-LGPL v3 (https://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_253.yml b/src/licensedcode/data/rules/lgpl-3.0_253.yml deleted file mode 100644 index d7b48d7f329..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_253.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_254.RULE b/src/licensedcode/data/rules/lgpl-3.0_254.RULE index 071fa7cbe13..fe82db4baf2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_254.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_254.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + The GNU Lesser General Public License, Version 3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_254.yml b/src/licensedcode/data/rules/lgpl-3.0_254.yml deleted file mode 100644 index b8095cdfd9b..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_254.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_255.RULE b/src/licensedcode/data/rules/lgpl-3.0_255.RULE index 8d0b71cec01..50a4d4a6b4b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_255.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_255.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + GNU Lesser General Public License 3.0 (LGPLv3) link: https://www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_255.yml b/src/licensedcode/data/rules/lgpl-3.0_255.yml deleted file mode 100644 index a2572f6af24..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_255.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_256.RULE b/src/licensedcode/data/rules/lgpl-3.0_256.RULE index c1dd009805c..03af0c0ec29 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_256.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_256.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + Licensed under the GNU Lesser General Public License v.3:https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_256.yml b/src/licensedcode/data/rules/lgpl-3.0_256.yml deleted file mode 100644 index aebf923a78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_256.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_257.RULE b/src/licensedcode/data/rules/lgpl-3.0_257.RULE index 51f3de4e88e..67d90e0f435 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_257.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_257.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.html +--- + licensed under the terms of the LGPLv3 license. Please see for license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_257.yml b/src/licensedcode/data/rules/lgpl-3.0_257.yml deleted file mode 100644 index 4c3a9e1218a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_258.RULE b/src/licensedcode/data/rules/lgpl-3.0_258.RULE index 7af4909f4e9..41f58b20ba7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_258.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_258.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + https://www.gnu.org/licenses/lgpl.html LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_258.yml b/src/licensedcode/data/rules/lgpl-3.0_258.yml deleted file mode 100644 index 4e411cfd9ef..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_259.RULE b/src/licensedcode/data/rules/lgpl-3.0_259.RULE index 1aafa0432c2..5eb111e33c4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_259.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_259.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.html +--- + Open Source project licensed under the terms of the LGPLv3 license. Please see for license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_259.yml b/src/licensedcode/data/rules/lgpl-3.0_259.yml deleted file mode 100644 index 4c3a9e1218a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_259.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_26.RULE b/src/licensedcode/data/rules/lgpl-3.0_26.RULE index 57abf74b5ef..11df3577213 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_26.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_26.yml b/src/licensedcode/data/rules/lgpl-3.0_26.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_260.RULE b/src/licensedcode/data/rules/lgpl-3.0_260.RULE index ee24dc1b0e2..f22bd4757ac 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_260.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_260.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0-standalone.html + - https://www.gnu.org/licenses/lgpl-3.0-standalone.html +--- + released under the GNU LGPL. GNU GPL v3 applies by its formulation found at https://www.gnu.org/licenses/gpl-3.0-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_260.yml b/src/licensedcode/data/rules/lgpl-3.0_260.yml deleted file mode 100644 index 640ed518b44..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_260.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0-standalone.html - - https://www.gnu.org/licenses/lgpl-3.0-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_261.RULE b/src/licensedcode/data/rules/lgpl-3.0_261.RULE index 592e705b40a..81a19e9fb5f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_261.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_261.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + licence https://www.gnu.org/licenses/lgpl.html Lesser General Public Licence version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_261.yml b/src/licensedcode/data/rules/lgpl-3.0_261.yml deleted file mode 100644 index 4e411cfd9ef..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_261.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_262.RULE b/src/licensedcode/data/rules/lgpl-3.0_262.RULE index 48fbca34eed..7bc326f3218 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_262.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_262.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU Lesser General * Public License as published by the Free Software Foundation. @@ -8,4 +16,4 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU General Public Lesser License - * along with this program; if not, see + * along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_262.yml b/src/licensedcode/data/rules/lgpl-3.0_262.yml deleted file mode 100644 index 9dbe30a10df..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_262.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0_263.RULE b/src/licensedcode/data/rules/lgpl-3.0_263.RULE index 43aed5276cc..f89c3a7598f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_263.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_263.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + License : GNU-LGPL v3 (https://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_263.yml b/src/licensedcode/data/rules/lgpl-3.0_263.yml deleted file mode 100644 index d7b48d7f329..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_263.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_264.RULE b/src/licensedcode/data/rules/lgpl-3.0_264.RULE index 56922bec377..9ea0ddd2e80 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_264.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_264.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + license https://www.gnu.org/licenses/lgpl.html Lesser General Public license version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_264.yml b/src/licensedcode/data/rules/lgpl-3.0_264.yml deleted file mode 100644 index 4e411cfd9ef..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_264.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_265.RULE b/src/licensedcode/data/rules/lgpl-3.0_265.RULE index 1633c4da628..9d0b947fe01 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_265.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_265.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- -license https://www.gnu.org/licenses/lgpl-3.0.txt GNU Lesser General Public Licence Version 3 + +license https://www.gnu.org/licenses/lgpl-3.0.txt GNU Lesser General Public Licence Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_265.yml b/src/licensedcode/data/rules/lgpl-3.0_265.yml deleted file mode 100644 index a2572f6af24..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_265.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_266.RULE b/src/licensedcode/data/rules/lgpl-3.0_266.RULE index 9260cde6e10..3e07ae0e3fe 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_266.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_266.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + license https://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_266.yml b/src/licensedcode/data/rules/lgpl-3.0_266.yml deleted file mode 100644 index 090e1098a69..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_266.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_267.RULE b/src/licensedcode/data/rules/lgpl-3.0_267.RULE index 5111b6f955b..96aefede85a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_267.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_267.RULE @@ -1 +1,9 @@ -* @license https://www.gnu.org/copyleft/lesser.html The GNU LESSER GENERAL PUBLIC LICENSE, Version 3.0 +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/lesser.html +--- + +* @license https://www.gnu.org/copyleft/lesser.html The GNU LESSER GENERAL PUBLIC LICENSE, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_267.yml b/src/licensedcode/data/rules/lgpl-3.0_267.yml deleted file mode 100644 index 090e1098a69..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_267.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_268.RULE b/src/licensedcode/data/rules/lgpl-3.0_268.RULE index 922b8c824f6..db1bd69e0e6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_268.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_268.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl.html +--- + Licensed under the GNU Lesser General Public License, Version 3:https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_268.yml b/src/licensedcode/data/rules/lgpl-3.0_268.yml deleted file mode 100644 index aebf923a78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_268.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_269.RULE b/src/licensedcode/data/rules/lgpl-3.0_269.RULE index cfac8d7ead1..9548cc9b259 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_269.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_269.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Lesser General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_269.yml b/src/licensedcode/data/rules/lgpl-3.0_269.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_27.RULE b/src/licensedcode/data/rules/lgpl-3.0_27.RULE index f52ce8b8ee2..0cd4be25c09 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_27.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + is under LGPLv3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_27.yml b/src/licensedcode/data/rules/lgpl-3.0_27.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_270.RULE b/src/licensedcode/data/rules/lgpl-3.0_270.RULE index b5da4191de6..acb107e2a9c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_270.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_270.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_270.yml b/src/licensedcode/data/rules/lgpl-3.0_270.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_271.RULE b/src/licensedcode/data/rules/lgpl-3.0_271.RULE index bef57bd229f..1abcd462154 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_271.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_271.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + The GNU Lesser General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_271.yml b/src/licensedcode/data/rules/lgpl-3.0_271.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_272.RULE b/src/licensedcode/data/rules/lgpl-3.0_272.RULE index b0e8a1e84af..b391ee6de1d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_272.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_272.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + The GNU Lesser General Public License v3 text is contained in /usr/share/common-licenses/LGPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_272.yml b/src/licensedcode/data/rules/lgpl-3.0_272.yml deleted file mode 100644 index 178ac3b95bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_272.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_273.RULE b/src/licensedcode/data/rules/lgpl-3.0_273.RULE index 75aec0770db..9cd4ac706ce 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_273.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_273.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian systems, the text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-3" + Public License can be found in "/usr/share/common-licenses/LGPL-3" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_273.yml b/src/licensedcode/data/rules/lgpl-3.0_273.yml deleted file mode 100644 index 1ca7c7c72cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_273.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_274.RULE b/src/licensedcode/data/rules/lgpl-3.0_274.RULE index 33120993a60..40ac9b9177c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_274.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_274.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian systems, the text of the GNU General Public License can be found at '/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_274.yml b/src/licensedcode/data/rules/lgpl-3.0_274.yml deleted file mode 100644 index 178ac3b95bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_274.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_275.RULE b/src/licensedcode/data/rules/lgpl-3.0_275.RULE index a2d198eb381..774e0d8bdc9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_275.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_275.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + . On Debian systems, the text of the GNU Lesser General Public License 3 can be found in `/usr/share/common-licenses/LGPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_275.yml b/src/licensedcode/data/rules/lgpl-3.0_275.yml deleted file mode 100644 index 178ac3b95bc..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_275.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_276.RULE b/src/licensedcode/data/rules/lgpl-3.0_276.RULE index ebc70005cc1..566b468b3a8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_276.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_276.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 3.0 as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-3.0_276.yml b/src/licensedcode/data/rules/lgpl-3.0_276.yml deleted file mode 100644 index d30e6ede3f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_276.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0_277.RULE b/src/licensedcode/data/rules/lgpl-3.0_277.RULE index 0fd09b3373a..b19ebaea475 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_277.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_277.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + LGPL-3.0 GNU Lesser General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_277.yml b/src/licensedcode/data/rules/lgpl-3.0_277.yml deleted file mode 100644 index 374d36f2838..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_277.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0_278.RULE b/src/licensedcode/data/rules/lgpl-3.0_278.RULE index 102496ee74c..723d8574572 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_278.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_278.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + GNU Lesser General Public License v3.0 only LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_278.yml b/src/licensedcode/data/rules/lgpl-3.0_278.yml deleted file mode 100644 index 374d36f2838..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_278.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0_279.RULE b/src/licensedcode/data/rules/lgpl-3.0_279.RULE index b634d3c3820..fc78216b35c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_279.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_279.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_279.yml b/src/licensedcode/data/rules/lgpl-3.0_279.yml deleted file mode 100644 index 374d36f2838..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_279.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0_28.RULE b/src/licensedcode/data/rules/lgpl-3.0_28.RULE index e76f1604e7c..00588266e70 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_28.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + LGPLv3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_28.yml b/src/licensedcode/data/rules/lgpl-3.0_28.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_280.RULE b/src/licensedcode/data/rules/lgpl-3.0_280.RULE index 54143548dfb..bdecbd066e7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_280.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_280.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : GNU Lesser General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_280.yml b/src/licensedcode/data/rules/lgpl-3.0_280.yml deleted file mode 100644 index 374d36f2838..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_280.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0_281.RULE b/src/licensedcode/data/rules/lgpl-3.0_281.RULE index 69eabbabe3f..b287aea01cc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_281.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_281.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPL-3.0-only GNU Lesser General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_281.yml b/src/licensedcode/data/rules/lgpl-3.0_281.yml deleted file mode 100644 index 13e41ed3405..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_281.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0_282.RULE b/src/licensedcode/data/rules/lgpl-3.0_282.RULE index 5ac9501ce1c..ede6979b4c3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_282.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_282.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GNU Lesser General Public License v3.0 only LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_282.yml b/src/licensedcode/data/rules/lgpl-3.0_282.yml deleted file mode 100644 index 13e41ed3405..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_282.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0_283.RULE b/src/licensedcode/data/rules/lgpl-3.0_283.RULE index 4eb69197dd9..d4c854282fa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_283.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_283.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_283.yml b/src/licensedcode/data/rules/lgpl-3.0_283.yml deleted file mode 100644 index 6cdceadfb1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_283.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0_284.RULE b/src/licensedcode/data/rules/lgpl-3.0_284.RULE index 68e2f7482b3..419e831fc1a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_284.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_284.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GNU Lesser General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_284.yml b/src/licensedcode/data/rules/lgpl-3.0_284.yml deleted file mode 100644 index 6cdceadfb1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_284.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0_285.RULE b/src/licensedcode/data/rules/lgpl-3.0_285.RULE index 2145d92fbc9..9f5779d4ce3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_285.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_285.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_285.yml b/src/licensedcode/data/rules/lgpl-3.0_285.yml deleted file mode 100644 index 6cdceadfb1a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_285.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpl-3.0_286.RULE b/src/licensedcode/data/rules/lgpl-3.0_286.RULE index 3013dea73c2..05e2b2a5f29 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_286.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_286.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.txt +--- + GNU LESSER GENERAL PUBLIC LICENSE, version 3 (LGPL-3.0) http://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_286.yml b/src/licensedcode/data/rules/lgpl-3.0_286.yml deleted file mode 100644 index a17a807b9d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_286.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_287.RULE b/src/licensedcode/data/rules/lgpl-3.0_287.RULE index cedf8e18f55..4cced3958db 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_287.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_287.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.txt +--- + GNU LESSER GENERAL PUBLIC LICENSE, version 3 (LGPL-3.0) http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_287.yml b/src/licensedcode/data/rules/lgpl-3.0_287.yml deleted file mode 100644 index a17a807b9d1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_287.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_288.RULE b/src/licensedcode/data/rules/lgpl-3.0_288.RULE index d10a93685af..78b9607c04b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_288.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_288.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Released under the LGPL3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_288.yml b/src/licensedcode/data/rules/lgpl-3.0_288.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_289.RULE b/src/licensedcode/data/rules/lgpl-3.0_289.RULE index ddcf6f67737..044cc68b4f4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_289.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_289.RULE @@ -1 +1,7 @@ -licensed under the {{LGPL (GNU Lesser General Public License) version 3.}} {{See LGPL version 3 .}} +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +licensed under the LGPL (GNU Lesser General Public License) version 3. See LGPL version 3 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_289.yml b/src/licensedcode/data/rules/lgpl-3.0_289.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_289.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_29.RULE b/src/licensedcode/data/rules/lgpl-3.0_29.RULE index 6fab34be571..bd8288bac8a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_29.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_29.yml b/src/licensedcode/data/rules/lgpl-3.0_29.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_290.RULE b/src/licensedcode/data/rules/lgpl-3.0_290.RULE index a1315dacd18..f630bb65228 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_290.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_290.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the LGPL (GNU Lesser General Public License) version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_290.yml b/src/licensedcode/data/rules/lgpl-3.0_290.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_291.RULE b/src/licensedcode/data/rules/lgpl-3.0_291.RULE index db5087c0189..3199adc698b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_291.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_291.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + Lesser GPL License, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_291.yml b/src/licensedcode/data/rules/lgpl-3.0_291.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_292.RULE b/src/licensedcode/data/rules/lgpl-3.0_292.RULE index 3cd0e02afa3..65b148295a7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_292.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_292.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser GPL License, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_292.yml b/src/licensedcode/data/rules/lgpl-3.0_292.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_293.RULE b/src/licensedcode/data/rules/lgpl-3.0_293.RULE index b711cdae3c5..5110a2862e5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_293.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_293.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + the GNU Lesser GPL License, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_293.yml b/src/licensedcode/data/rules/lgpl-3.0_293.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_294.RULE b/src/licensedcode/data/rules/lgpl-3.0_294.RULE index 250f54a0b13..2f97206b706 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_294.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_294.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the GNU Lesser GPL License, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_294.yml b/src/licensedcode/data/rules/lgpl-3.0_294.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_295.RULE b/src/licensedcode/data/rules/lgpl-3.0_295.RULE index b6a97f6012c..3b6370ece4a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_295.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_295.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU Lesser GPL License, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_295.yml b/src/licensedcode/data/rules/lgpl-3.0_295.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_295.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_296.RULE b/src/licensedcode/data/rules/lgpl-3.0_296.RULE index 8b7f333339f..d5d16c3d5a7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_296.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_296.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LGPL-3.0-only +--- + https://licenses.nuget.org/LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_296.yml b/src/licensedcode/data/rules/lgpl-3.0_296.yml deleted file mode 100644 index f9329e7ea0c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_296.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LGPL-3.0-only diff --git a/src/licensedcode/data/rules/lgpl-3.0_297.RULE b/src/licensedcode/data/rules/lgpl-3.0_297.RULE index b96d198435a..99d14df939a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_297.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_297.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_297.yml b/src/licensedcode/data/rules/lgpl-3.0_297.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_298.RULE b/src/licensedcode/data/rules/lgpl-3.0_298.RULE index 69db7f5f42e..7cd38909221 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_298.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_298.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + licenses: LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_298.yml b/src/licensedcode/data/rules/lgpl-3.0_298.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_299.RULE b/src/licensedcode/data/rules/lgpl-3.0_299.RULE index ec7c367d693..7d0972f8aa9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_299.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_299.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + licenses: LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_299.yml b/src/licensedcode/data/rules/lgpl-3.0_299.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_3.RULE b/src/licensedcode/data/rules/lgpl-3.0_3.RULE index 43eb82b0ab7..c6242d87355 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_3.RULE @@ -1 +1,7 @@ -The copying licence is the GNU LGPL 3, see Policies/Licensing_Policy and LGPL licence text for the full legal details. +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +The copying licence is the GNU LGPL 3, see Policies/Licensing_Policy and LGPL licence text for the full legal details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_3.yml b/src/licensedcode/data/rules/lgpl-3.0_3.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_30.RULE b/src/licensedcode/data/rules/lgpl-3.0_30.RULE index a0dc16ea77d..00bec5f63ea 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_30.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_30.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License: LGPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_30.yml b/src/licensedcode/data/rules/lgpl-3.0_30.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_300.RULE b/src/licensedcode/data/rules/lgpl-3.0_300.RULE index c8e9aefc96b..134e5107227 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_300.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_300.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0 +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 diff --git a/src/licensedcode/data/rules/lgpl-3.0_300.yml b/src/licensedcode/data/rules/lgpl-3.0_300.yml deleted file mode 100644 index f8ae0fe7480..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_300.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0_301.RULE b/src/licensedcode/data/rules/lgpl-3.0_301.RULE index fc0e6c49439..718313bdf8f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_301.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_301.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0-only +--- + LICENSE {{LGPL-3.0-only}} https://spdx.org/licenses/LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_301.yml b/src/licensedcode/data/rules/lgpl-3.0_301.yml deleted file mode 100644 index f7c82fb3d38..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_301.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0-only diff --git a/src/licensedcode/data/rules/lgpl-3.0_302.RULE b/src/licensedcode/data/rules/lgpl-3.0_302.RULE index 102fbf29c5c..b4953929daa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_302.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_302.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPL-3.0-only +--- + {{LGPL-3.0-only}} https://spdx.org/licenses/LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_302.yml b/src/licensedcode/data/rules/lgpl-3.0_302.yml deleted file mode 100644 index f7c82fb3d38..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_302.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPL-3.0-only diff --git a/src/licensedcode/data/rules/lgpl-3.0_303.RULE b/src/licensedcode/data/rules/lgpl-3.0_303.RULE index 934c3a6d78f..1fb5f71e543 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_303.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_303.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +referenced_filenames: + - lgpl3-license.txt +notes: https://github.com/translate5/ZfExtended/blob/c18f8771dff7e6df94dad43f883e5bea4c18cac6/Worker/Abstract.php +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + START LICENSE AND COPYRIGHT This file may be used under the terms of the GNU LESSER GENERAL PUBLIC LICENSE version 3 as published by the Free Software Foundation and appearing in the file lgpl3-license.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_303.yml b/src/licensedcode/data/rules/lgpl-3.0_303.yml deleted file mode 100644 index e3f7df1c4cb..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_303.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -referenced_filenames: - - lgpl3-license.txt -notes: https://github.com/translate5/ZfExtended/blob/c18f8771dff7e6df94dad43f883e5bea4c18cac6/Worker/Abstract.php -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_304.RULE b/src/licensedcode/data/rules/lgpl-3.0_304.RULE index 16b53f0277f..cdcf49fe7c3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_304.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_304.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +referenced_filenames: + - lgpl3-license.txt +notes: https://github.com/translate5/ZfExtended/blob/c18f8771dff7e6df94dad43f883e5bea4c18cac6/Worker/Abstract.php +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + This file may be used under the terms of the GNU LESSER GENERAL PUBLIC LICENSE version 3 as published by the Free Software Foundation and appearing in the file lgpl3-license.txt included in the packaging of this file. Please review the following information diff --git a/src/licensedcode/data/rules/lgpl-3.0_304.yml b/src/licensedcode/data/rules/lgpl-3.0_304.yml deleted file mode 100644 index e3f7df1c4cb..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_304.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -referenced_filenames: - - lgpl3-license.txt -notes: https://github.com/translate5/ZfExtended/blob/c18f8771dff7e6df94dad43f883e5bea4c18cac6/Worker/Abstract.php -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_305.RULE b/src/licensedcode/data/rules/lgpl-3.0_305.RULE index 27faa2cb351..99e4e57dfe5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_305.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_305.RULE @@ -1,2 +1,13 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - lgpl3-license.txt +notes: https://github.com/translate5/ZfExtended/blob/c18f8771dff7e6df94dad43f883e5bea4c18cac6/Worker/Abstract.php +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.txt +--- + @license GNU LESSER GENERAL PUBLIC LICENSE version 3 https://www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_305.yml b/src/licensedcode/data/rules/lgpl-3.0_305.yml deleted file mode 100644 index 2c14d236e06..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_305.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - lgpl3-license.txt -notes: https://github.com/translate5/ZfExtended/blob/c18f8771dff7e6df94dad43f883e5bea4c18cac6/Worker/Abstract.php -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_306.RULE b/src/licensedcode/data/rules/lgpl-3.0_306.RULE index 2c69ef68efc..a91fef64f69 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_306.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_306.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0.en.html +--- + GNU Lesser General Public License v3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_306.yml b/src/licensedcode/data/rules/lgpl-3.0_306.yml deleted file mode 100644 index adc229742d9..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_306.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0.en.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_307.RULE b/src/licensedcode/data/rules/lgpl-3.0_307.RULE index 6b562ab73e7..69cc7db0274 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_307.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_307.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/agpl-3.0.en.html +--- + GNU Affero General Public License v3.0](https://www.gnu.org/licenses/agpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_307.yml b/src/licensedcode/data/rules/lgpl-3.0_307.yml deleted file mode 100644 index 0caba5f5c5d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_307.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_31.RULE b/src/licensedcode/data/rules/lgpl-3.0_31.RULE index 282812bc47c..4dc3e0c623d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_31.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_31.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + On Debian systems the full text of the GNU LGPL v3 can be found in the `/usr/share/common-licenses/LGPL-3' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_31.yml b/src/licensedcode/data/rules/lgpl-3.0_31.yml deleted file mode 100644 index 31f8f1dea51..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_32.RULE b/src/licensedcode/data/rules/lgpl-3.0_32.RULE index 203866bad8b..e3b9c20511f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_32.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_32.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + License: LGPL-3 On Debian systems the full text of the GNU LGPL v3 can be found in the `/usr/share/common-licenses/LGPL-3' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_32.yml b/src/licensedcode/data/rules/lgpl-3.0_32.yml deleted file mode 100644 index 611a9a7c058..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_33.RULE b/src/licensedcode/data/rules/lgpl-3.0_33.RULE index 61f9a817c16..f4709ad8591 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_33.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_33.RULE @@ -1 +1,7 @@ -licensed under the terms of the LGPL version 3. \ No newline at end of file +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 99 +--- + +licensed under the terms of the LGPL version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_33.yml b/src/licensedcode/data/rules/lgpl-3.0_33.yml deleted file mode 100644 index 307829bef99..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl-3.0_34.RULE b/src/licensedcode/data/rules/lgpl-3.0_34.RULE index 32ec1b7bcd3..0fc4aa4f010 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_34.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the LGPL License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_34.yml b/src/licensedcode/data/rules/lgpl-3.0_34.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_35.RULE b/src/licensedcode/data/rules/lgpl-3.0_35.RULE index 279910b4c40..4f3c21cd0fd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_35.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_35.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This software is distributed under the LGPL License v3 For more information, see the COPYING file in the top directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_35.yml b/src/licensedcode/data/rules/lgpl-3.0_35.yml deleted file mode 100644 index 2e574c3486f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/lgpl-3.0_36.RULE b/src/licensedcode/data/rules/lgpl-3.0_36.RULE index 5600afc19a0..eb2fd2ae701 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_36.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + license: LGPL v.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_36.yml b/src/licensedcode/data/rules/lgpl-3.0_36.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_37.RULE b/src/licensedcode/data/rules/lgpl-3.0_37.RULE index b65ad1b6642..63f91a8f4b5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_37.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + license: LGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_37.yml b/src/licensedcode/data/rules/lgpl-3.0_37.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_38.RULE b/src/licensedcode/data/rules/lgpl-3.0_38.RULE index 8bb45d4e1c3..7590521eefb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_38.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + All the source files are licensed under the terms of the GNU Lesser General Public License version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_38.yml b/src/licensedcode/data/rules/lgpl-3.0_38.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_39.RULE b/src/licensedcode/data/rules/lgpl-3.0_39.RULE index 731ed9fb5e9..1328e1e9c8a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_39.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + "license": "LGPL-3.0", \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_39.yml b/src/licensedcode/data/rules/lgpl-3.0_39.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_4.RULE b/src/licensedcode/data/rules/lgpl-3.0_4.RULE index 817053c15e6..2ecc83490d8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_4.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +notes: Short declaration +--- + Lesser General Public License (LGPL v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_4.yml b/src/licensedcode/data/rules/lgpl-3.0_4.yml deleted file mode 100644 index 25d39251344..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -notes: Short declaration diff --git a/src/licensedcode/data/rules/lgpl-3.0_40.RULE b/src/licensedcode/data/rules/lgpl-3.0_40.RULE index 7d9c0668c47..1873b4c53f2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_40.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_40.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/lgpl-3.0.html +--- + https://opensource.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_40.yml b/src/licensedcode/data/rules/lgpl-3.0_40.yml deleted file mode 100644 index 3f1ec989cf4..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_41.RULE b/src/licensedcode/data/rules/lgpl-3.0_41.RULE index 27f579d2a52..03b29a302a7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_41.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_41.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL-3 +--- + /usr/share/common-licenses/LGPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_41.yml b/src/licensedcode/data/rules/lgpl-3.0_41.yml deleted file mode 100644 index 8f8c433baf0..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL-3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_42.RULE b/src/licensedcode/data/rules/lgpl-3.0_42.RULE index 430a28d7041..baa538aca34 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_42.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + LGPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_42.yml b/src/licensedcode/data/rules/lgpl-3.0_42.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_43.RULE b/src/licensedcode/data/rules/lgpl-3.0_43.RULE index d4a0fb9503b..c711cedfdb9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_43.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_43.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.openoffice.org/license.html +--- + * is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. diff --git a/src/licensedcode/data/rules/lgpl-3.0_43.yml b/src/licensedcode/data/rules/lgpl-3.0_43.yml deleted file mode 100644 index 701060058a2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.openoffice.org/license.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_44.RULE b/src/licensedcode/data/rules/lgpl-3.0_44.RULE index 76def667c71..b1da0da4b6c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_44.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_44.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.openoffice.org/license.html +--- + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * is free software: you can redistribute it and/or modify diff --git a/src/licensedcode/data/rules/lgpl-3.0_44.yml b/src/licensedcode/data/rules/lgpl-3.0_44.yml deleted file mode 100644 index 701060058a2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.openoffice.org/license.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_45.RULE b/src/licensedcode/data/rules/lgpl-3.0_45.RULE index 34dbcc1e382..fa9aa1f833c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_45.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_45.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of version 3 of the GNU Lesser General * Public License as published by the Free Software Foundation. @@ -8,4 +16,4 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU General Public Lesser License - * along with this program; if not, see + * along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_45.yml b/src/licensedcode/data/rules/lgpl-3.0_45.yml deleted file mode 100644 index 689a5d10a1d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/lgpl-3.0_46.RULE b/src/licensedcode/data/rules/lgpl-3.0_46.RULE index d33e099cbaf..24c591bfe26 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_46.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_46.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is distributed under LGPL Version 3.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_46.yml b/src/licensedcode/data/rules/lgpl-3.0_46.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_47.RULE b/src/licensedcode/data/rules/lgpl-3.0_47.RULE index dc7f055b430..905f8850d6e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_47.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_47.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.txt +--- + The GNU Lesser General Public License, Version 3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_47.yml b/src/licensedcode/data/rules/lgpl-3.0_47.yml deleted file mode 100644 index 6f535ba4e58..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_48.RULE b/src/licensedcode/data/rules/lgpl-3.0_48.RULE index e330a2edde1..0044c183892 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_48.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + The GNU Lesser General Public License, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_48.yml b/src/licensedcode/data/rules/lgpl-3.0_48.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_49.RULE b/src/licensedcode/data/rules/lgpl-3.0_49.RULE index 28007214547..52548dd79eb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_49.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_49.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This program is distributed under Lesser GPL Version 3.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_49.yml b/src/licensedcode/data/rules/lgpl-3.0_49.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_5.RULE b/src/licensedcode/data/rules/lgpl-3.0_5.RULE index 72003bbbeda..320c83af4f5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lgpl-3.0.html +--- + http://www.opensource.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_5.yml b/src/licensedcode/data/rules/lgpl-3.0_5.yml deleted file mode 100644 index db947fd4fcb..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_50.RULE b/src/licensedcode/data/rules/lgpl-3.0_50.RULE index 66065f220d4..be286a22727 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_50.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License (LGPL) Version 3, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_50.yml b/src/licensedcode/data/rules/lgpl-3.0_50.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_500.RULE b/src/licensedcode/data/rules/lgpl-3.0_500.RULE index 3217dccd7cb..2bea9bfdbff 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_500.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_500.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + // Licensed under the GNU Lesser General Public License v3.0. // See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_500.yml b/src/licensedcode/data/rules/lgpl-3.0_500.yml deleted file mode 100644 index 215ebbd55de..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_500.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_51.RULE b/src/licensedcode/data/rules/lgpl-3.0_51.RULE index 3230249ca20..d0192ecdec3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_51.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_51.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License, Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_51.yml b/src/licensedcode/data/rules/lgpl-3.0_51.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_52.RULE b/src/licensedcode/data/rules/lgpl-3.0_52.RULE index 4183722d22f..6ffdeaaa7db 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_52.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_52.RULE @@ -1 +1,7 @@ -{{GNU Lesser General Public License, Version 3 (LGPL-3.0).}} +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +{{GNU Lesser General Public License, Version 3 (LGPL-3.0).}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_52.yml b/src/licensedcode/data/rules/lgpl-3.0_52.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_53.RULE b/src/licensedcode/data/rules/lgpl-3.0_53.RULE index 4fcae6651b5..0fc0c78f9fb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_53.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_53.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + made freely available under the GNU Lesser General Public License, Version 3 (LGPL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_53.yml b/src/licensedcode/data/rules/lgpl-3.0_53.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_54.RULE b/src/licensedcode/data/rules/lgpl-3.0_54.RULE index 15621b20aa3..7a6d947b560 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_54.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_54.RULE @@ -1 +1,7 @@ -GNU LESSER GENERAL PUBLIC LICENSE V3, 29 June 2007 \ No newline at end of file +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +GNU LESSER GENERAL PUBLIC LICENSE V3, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_54.yml b/src/licensedcode/data/rules/lgpl-3.0_54.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_55.RULE b/src/licensedcode/data/rules/lgpl-3.0_55.RULE index bb78dd7b314..23d2537e9d5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_55.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_55.RULE @@ -1 +1,7 @@ -This Project is Under GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 \ No newline at end of file +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +This Project is Under GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_55.yml b/src/licensedcode/data/rules/lgpl-3.0_55.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_56.RULE b/src/licensedcode/data/rules/lgpl-3.0_56.RULE index 7b3c0eeb982..a067c86e87a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_56.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_56.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, version 3 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_56.yml b/src/licensedcode/data/rules/lgpl-3.0_56.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_57.RULE b/src/licensedcode/data/rules/lgpl-3.0_57.RULE index b77a96bd9da..2029892691a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_57.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_57.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, version 3 of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_57.yml b/src/licensedcode/data/rules/lgpl-3.0_57.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_58.RULE b/src/licensedcode/data/rules/lgpl-3.0_58.RULE index 8e4ea0e0c1d..3524dadfd31 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_58.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 95 +--- + LGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_58.yml b/src/licensedcode/data/rules/lgpl-3.0_58.yml deleted file mode 100644 index 25b1a1781f7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-3.0_59.RULE b/src/licensedcode/data/rules/lgpl-3.0_59.RULE index 5a85095bacc..6f98abe537b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_59.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_59.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 95 +--- + LGPL30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_59.yml b/src/licensedcode/data/rules/lgpl-3.0_59.yml deleted file mode 100644 index 25b1a1781f7..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/lgpl-3.0_6.RULE b/src/licensedcode/data/rules/lgpl-3.0_6.RULE index 2c81f2e1701..f34db162f8f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +--- + 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; either diff --git a/src/licensedcode/data/rules/lgpl-3.0_6.yml b/src/licensedcode/data/rules/lgpl-3.0_6.yml deleted file mode 100644 index d30e6ede3f1..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl-3.0_60.RULE b/src/licensedcode/data/rules/lgpl-3.0_60.RULE index f560f4e0773..8b774c32926 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_60.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + LGPLv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_60.yml b/src/licensedcode/data/rules/lgpl-3.0_60.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_61.RULE b/src/licensedcode/data/rules/lgpl-3.0_61.RULE index f78b2b11769..209ce3a1dc9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_61.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_61.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + lgpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_61.yml b/src/licensedcode/data/rules/lgpl-3.0_61.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_62.RULE b/src/licensedcode/data/rules/lgpl-3.0_62.RULE index 4369f373350..ca1dd136154 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_62.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_62.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + lgplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_62.yml b/src/licensedcode/data/rules/lgpl-3.0_62.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_63.RULE b/src/licensedcode/data/rules/lgpl-3.0_63.RULE index 4f200b7c8f6..a40b950c109 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_63.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_63.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + lgpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_63.yml b/src/licensedcode/data/rules/lgpl-3.0_63.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_64.RULE b/src/licensedcode/data/rules/lgpl-3.0_64.RULE index 8b966132d6f..2e5d2744246 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_64.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + lgpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_64.yml b/src/licensedcode/data/rules/lgpl-3.0_64.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_65.RULE b/src/licensedcode/data/rules/lgpl-3.0_65.RULE index f7bcd7ab0e7..c2a884834be 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_65.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_65.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNULGPL3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_65.yml b/src/licensedcode/data/rules/lgpl-3.0_65.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_66.RULE b/src/licensedcode/data/rules/lgpl-3.0_66.RULE index 9877ac0ac12..5b8b3d52bce 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_66.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_66.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNULGPL30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_66.yml b/src/licensedcode/data/rules/lgpl-3.0_66.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_67.RULE b/src/licensedcode/data/rules/lgpl-3.0_67.RULE index 0c73d294544..c2c97684645 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_67.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_67.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNULGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_67.yml b/src/licensedcode/data/rules/lgpl-3.0_67.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_68.RULE b/src/licensedcode/data/rules/lgpl-3.0_68.RULE index 64177a45b2a..45d66e5e130 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_68.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_68.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNULGPLv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_68.yml b/src/licensedcode/data/rules/lgpl-3.0_68.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_69.RULE b/src/licensedcode/data/rules/lgpl-3.0_69.RULE index 2758487f3f4..4616c35e728 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_69.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_69.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_69.yml b/src/licensedcode/data/rules/lgpl-3.0_69.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_7.RULE b/src/licensedcode/data/rules/lgpl-3.0_7.RULE index ae873821ac9..f822bf37e45 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_7.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + http://www.gnu.org/licenses/lgpl.html LGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_7.yml b/src/licensedcode/data/rules/lgpl-3.0_7.yml deleted file mode 100644 index af083a277cf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_70.RULE b/src/licensedcode/data/rules/lgpl-3.0_70.RULE index fd2a7724de2..21eb25f083d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_70.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_70.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_70.yml b/src/licensedcode/data/rules/lgpl-3.0_70.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_71.RULE b/src/licensedcode/data/rules/lgpl-3.0_71.RULE index 7457bca1705..f70812af901 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_71.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_71.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_71.yml b/src/licensedcode/data/rules/lgpl-3.0_71.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_72.RULE b/src/licensedcode/data/rules/lgpl-3.0_72.RULE index 1cc4761c6cd..45e2ff9025d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_72.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_72.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnulgplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_72.yml b/src/licensedcode/data/rules/lgpl-3.0_72.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_73.RULE b/src/licensedcode/data/rules/lgpl-3.0_73.RULE index c74c4caf6bf..3c26b4a7ec3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_73.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_73.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_73.yml b/src/licensedcode/data/rules/lgpl-3.0_73.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_74.RULE b/src/licensedcode/data/rules/lgpl-3.0_74.RULE index b98c9c26ca2..4e8be24c760 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_74.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_74.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnulgpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_74.yml b/src/licensedcode/data/rules/lgpl-3.0_74.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_75.RULE b/src/licensedcode/data/rules/lgpl-3.0_75.RULE index 1f5c10fe5ab..d3a6a86560a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_75.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_75.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_75.yml b/src/licensedcode/data/rules/lgpl-3.0_75.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_76.RULE b/src/licensedcode/data/rules/lgpl-3.0_76.RULE index acd6639dabc..f54f2b501cb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_76.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_76.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_76.yml b/src/licensedcode/data/rules/lgpl-3.0_76.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_77.RULE b/src/licensedcode/data/rules/lgpl-3.0_77.RULE index 83ecd0da9ed..fdac5b7b8a1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_77.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_77.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgplv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_77.yml b/src/licensedcode/data/rules/lgpl-3.0_77.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_78.RULE b/src/licensedcode/data/rules/lgpl-3.0_78.RULE index 1b6a06fa18f..91ca762cac9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_78.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_78.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgplv30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_78.yml b/src/licensedcode/data/rules/lgpl-3.0_78.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_79.RULE b/src/licensedcode/data/rules/lgpl-3.0_79.RULE index b0c893a1fca..52a314531ac 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_79.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_79.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_79.yml b/src/licensedcode/data/rules/lgpl-3.0_79.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_8.RULE b/src/licensedcode/data/rules/lgpl-3.0_8.RULE index 3c53333ac51..d5e1e8dbb7c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_8.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU Lesser General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_8.yml b/src/licensedcode/data/rules/lgpl-3.0_8.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_80.RULE b/src/licensedcode/data/rules/lgpl-3.0_80.RULE index a833ab5a1b7..2a548699734 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_80.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_80.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_80.yml b/src/licensedcode/data/rules/lgpl-3.0_80.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_81.RULE b/src/licensedcode/data/rules/lgpl-3.0_81.RULE index aaae4d3a745..014885b62ce 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_81.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_81.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_81.yml b/src/licensedcode/data/rules/lgpl-3.0_81.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_82.RULE b/src/licensedcode/data/rules/lgpl-3.0_82.RULE index 30d6496a9e5..44201553bae 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_82.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_82.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgplv3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_82.yml b/src/licensedcode/data/rules/lgpl-3.0_82.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_83.RULE b/src/licensedcode/data/rules/lgpl-3.0_83.RULE index 8eae6cd5ebe..404291ec49e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_83.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_83.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_83.yml b/src/licensedcode/data/rules/lgpl-3.0_83.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_84.RULE b/src/licensedcode/data/rules/lgpl-3.0_84.RULE index 4a335324ebe..f5d7f71dd63 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_84.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_84.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + gnu lgpl v 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_84.yml b/src/licensedcode/data/rules/lgpl-3.0_84.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_85.RULE b/src/licensedcode/data/rules/lgpl-3.0_85.RULE index 25172fc1fa7..e6a3e0b9a9f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_85.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_85.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/lgpl-v3 +--- + https://choosealicense.com/licenses/lgpl-v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_85.yml b/src/licensedcode/data/rules/lgpl-3.0_85.yml deleted file mode 100644 index 14551f84a39..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/lgpl-v3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_86.RULE b/src/licensedcode/data/rules/lgpl-3.0_86.RULE index de043f94f46..035beb6eee3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_86.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_86.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/lgpl-v3 +--- + http://choosealicense.com/licenses/lgpl-v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_86.yml b/src/licensedcode/data/rules/lgpl-3.0_86.yml deleted file mode 100644 index 3cf7c5c5b75..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/lgpl-v3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_87.RULE b/src/licensedcode/data/rules/lgpl-3.0_87.RULE index 729333127fa..91fec87136a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_87.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_87.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/lgpl-3.0 +--- + https://choosealicense.com/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_87.yml b/src/licensedcode/data/rules/lgpl-3.0_87.yml deleted file mode 100644 index eb873d11ad0..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_88.RULE b/src/licensedcode/data/rules/lgpl-3.0_88.RULE index 5ced840a35d..f4936b38ce3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_88.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_88.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/lgpl-3.0 +--- + http://choosealicense.com/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_88.yml b/src/licensedcode/data/rules/lgpl-3.0_88.yml deleted file mode 100644 index a481723ad6f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_89.RULE b/src/licensedcode/data/rules/lgpl-3.0_89.RULE index e37f6918eff..94a7509c72b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_89.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_89.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- -This project uses a modified version of the LGPL v3 license, see COPYING.LESSER. + +This project uses a modified version of the LGPL v3 license, see COPYING.LESSER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_89.yml b/src/licensedcode/data/rules/lgpl-3.0_89.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_9.RULE b/src/licensedcode/data/rules/lgpl-3.0_9.RULE index ffe5a0ecdde..f2587c69a10 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_9.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0-standalone.html +--- + http://www.gnu.org/licenses/lgpl-3.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_9.yml b/src/licensedcode/data/rules/lgpl-3.0_9.yml deleted file mode 100644 index 9cae7bebcef..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_90.RULE b/src/licensedcode/data/rules/lgpl-3.0_90.RULE index 9edaeb11963..196e0fb7a95 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_90.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_90.RULE @@ -1 +1,7 @@ -This is an open source project licensed under the LGPLv3. \ No newline at end of file +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +This is an open source project licensed under the LGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_90.yml b/src/licensedcode/data/rules/lgpl-3.0_90.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_91.RULE b/src/licensedcode/data/rules/lgpl-3.0_91.RULE index d38702c739f..2bf81278215 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_91.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_91.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://opensource.org/licenses/LGPL-3.0 +--- + http://opensource.org/licenses/LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_91.yml b/src/licensedcode/data/rules/lgpl-3.0_91.yml deleted file mode 100644 index e5a82f53182..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://opensource.org/licenses/LGPL-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_92.RULE b/src/licensedcode/data/rules/lgpl-3.0_92.RULE index 451d1deeab3..3db032bfd98 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_92.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_92.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://opensource.org/licenses/LGPL-3.0 +--- + https://opensource.org/licenses/LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_92.yml b/src/licensedcode/data/rules/lgpl-3.0_92.yml deleted file mode 100644 index 8c9d5b0cbea..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://opensource.org/licenses/LGPL-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_93.RULE b/src/licensedcode/data/rules/lgpl-3.0_93.RULE index 87472c8c859..5812da6835c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_93.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_93.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + portions licensed under the GNU lesser General Public License Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_93.yml b/src/licensedcode/data/rules/lgpl-3.0_93.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_93.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_94.RULE b/src/licensedcode/data/rules/lgpl-3.0_94.RULE index 9d152c15cee..5170e6e0302 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_94.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_94.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the GNU lesser General Public License Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_94.yml b/src/licensedcode/data/rules/lgpl-3.0_94.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_95.RULE b/src/licensedcode/data/rules/lgpl-3.0_95.RULE index dd4a9060fb2..a43c92669cc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_95.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_95.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + software is released under the GNU lesser General Public License Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_95.yml b/src/licensedcode/data/rules/lgpl-3.0_95.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_96.RULE b/src/licensedcode/data/rules/lgpl-3.0_96.RULE index bc07586a265..2d0956ab7cc 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_96.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_96.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the GNU lesser General Public License Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_96.yml b/src/licensedcode/data/rules/lgpl-3.0_96.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_97.RULE b/src/licensedcode/data/rules/lgpl-3.0_97.RULE index c75642a2444..87232a7e769 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_97.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_97.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + under the GNU lesser General Public License Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_97.yml b/src/licensedcode/data/rules/lgpl-3.0_97.yml deleted file mode 100644 index c01463209bf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_98.RULE b/src/licensedcode/data/rules/lgpl-3.0_98.RULE index 9a3671822d2..f6fe23a91d6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_98.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_98.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + GNU lesser General Public License Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_98.yml b/src/licensedcode/data/rules/lgpl-3.0_98.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_99.RULE b/src/licensedcode/data/rules/lgpl-3.0_99.RULE index 79fc0fe8f50..58e72a7ded7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_99.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_99.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + lesser General Public License Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_99.yml b/src/licensedcode/data/rules/lgpl-3.0_99.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_and_bsd-new_1.RULE index cd631c097b9..972bafb9efa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_and_bsd-new_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 AND bsd-new +is_license_notice: yes +relevance: 100 +--- + The 'core' of (located in /core) is licensed under LGPLv3. This just means that if you make any changes to how that code works, you must release those changes under the LGPL. diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/lgpl-3.0_and_bsd-new_1.yml deleted file mode 100644 index 365a1e5fd9c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 AND bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_1.RULE index 03c78e0c86f..5e6581ff23b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 AND gpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://ivrtoolkit.com/LGPL.txt +--- + http://ivrtoolkit.com/LGPL.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_1.yml deleted file mode 100644 index 85af5108564..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 AND gpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://ivrtoolkit.com/LGPL.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_2.RULE index b3dfb3bc1f5..a1f38dd7e90 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_2.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-3.0 AND gpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.LGPLv3 + - COPYING.GPLv3 +--- + Read the file `COPYING.LGPLv3` or, if you have enabled GPL parts, `COPYING.GPLv3` to learn the exact legal terms that apply in this case. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_2.yml b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_2.yml deleted file mode 100644 index c255515ff1c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 AND gpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.LGPLv3 - - COPYING.GPLv3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_3.RULE b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_3.RULE index 96eee543252..fa95a66e3d1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_3.RULE @@ -1 +1,8 @@ -mix of GPL-3.0 and LGPL-3.0 +--- +license_expression: lgpl-3.0 AND gpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + +mix of GPL-3.0 and LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_3.yml b/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_3.yml deleted file mode 100644 index 3f4239554c2..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_and_gpl-3.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 AND gpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_1.RULE index 0d92571b9d9..7891aea7f0b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + These should be LGPL v3/2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_1.yml b/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_1.yml deleted file mode 100644 index 8a91aecf4ed..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_2.RULE index 5f251a08046..8bae19171a5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 AND lgpl-2.1 +is_license_notice: yes +relevance: 100 +--- + Add in the LGPL 2.1/3 text \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_2.yml b/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_2.yml deleted file mode 100644 index 8a91aecf4ed..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_and_lgpl-2.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 AND lgpl-2.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_and_unknown-license-reference_1.RULE index 5e1151b500f..a5ffd846c62 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_and_unknown-license-reference_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 AND unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: See http://software.icecube.wisc.edu/coverage/00_LATEST/PROPOSAL/public/PROPOSAL/Propagator.h.gcov.html +--- + * This software may be modified and distributed under the terms of a * * modified GNU Lesser General Public Licence version 3 (LGPL), * * copied verbatim in the file "LICENSE". * diff --git a/src/licensedcode/data/rules/lgpl-3.0_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/lgpl-3.0_and_unknown-license-reference_1.yml deleted file mode 100644 index dd17977eba4..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 AND unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: See http://software.icecube.wisc.edu/coverage/00_LATEST/PROPOSAL/public/PROPOSAL/Propagator.h.gcov.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_copying_lgplv3.RULE b/src/licensedcode/data/rules/lgpl-3.0_copying_lgplv3.RULE index 64f5f3d0cf1..aae053b0368 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_copying_lgplv3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_copying_lgplv3.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 90 +--- + COPYING.lGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_copying_lgplv3.yml b/src/licensedcode/data/rules/lgpl-3.0_copying_lgplv3.yml deleted file mode 100644 index 93d9598f389..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_copying_lgplv3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/lgpl-3.0_not_plus_18.RULE b/src/licensedcode/data/rules/lgpl-3.0_not_plus_18.RULE index 1483cdf73cb..87b94b74eb4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_not_plus_18.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_not_plus_18.RULE @@ -1 +1,9 @@ -* @license http://www.gnu.org/copyleft/lesser.html The GNU LESSER GENERAL PUBLIC LICENSE, Version 3.0 +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + +* @license http://www.gnu.org/copyleft/lesser.html The GNU LESSER GENERAL PUBLIC LICENSE, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_not_plus_18.yml b/src/licensedcode/data/rules/lgpl-3.0_not_plus_18.yml deleted file mode 100644 index 779a559fca8..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_not_plus_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.RULE index 95a5f6657b4..63472dab533 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +notes: See https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md +--- + This software component is licensed under the LGPL 3.0 (see below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.yml b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.yml deleted file mode 100644 index 6cd8ece337e..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -notes: See https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.RULE index fe32c9b483f..eaeef3cd926 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: See https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md +--- + This software component is licensed under the LGPL 3.0 (see below). But for your entertainment, here are the previous ad-hoc terms. Note that I'd still appreciate $$, and please do still file a bug report if any of those scenarios occur. The compiled product may be used commercially but a donation would be greatly appreciated if you do so. If you happen to make over $1 million with this software as part of your product though... come on, don't be stingy! diff --git a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.yml b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.yml deleted file mode 100644 index 2ab2357b407..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: See https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_not_unknown_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_not_unknown_1.RULE index db2236ace34..565864cfd20 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_not_unknown_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_not_unknown_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md +--- + https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_not_unknown_1.yml b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_not_unknown_1.yml deleted file mode 100644 index 2d1f6f494a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_not_unknown_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/lgpl-3.0_only.RULE b/src/licensedcode/data/rules/lgpl-3.0_only.RULE index 7c7b7f6fa8b..ab3d3339326 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_only.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_only.RULE @@ -1 +1,7 @@ -This software is distributed under the LGPL (GNU Lesser General Public Licence) v3.0 +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +--- + +This software is distributed under the LGPL (GNU Lesser General Public Licence) v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_only.yml b/src/licensedcode/data/rules/lgpl-3.0_only.yml deleted file mode 100644 index 0f6285dc7cd..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_only.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_1.RULE index 6dc53107592..0fde1505968 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.LGPL + - LICENSE.APACHE +--- + License JavaParser is available either under the terms of the LGPL License or the Apache License. diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_1.yml deleted file mode 100644 index 7d5da1dda89..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.LGPL - - LICENSE.APACHE diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_2.RULE index 103fc505810..733b200311f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lgpl-3.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + JavaParser 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 adopt JavaParser. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_2.yml b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_2.yml deleted file mode 100644 index 96e4688edcf..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_3.RULE index 9234cbdede0..ae1dc6b4697 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +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 diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_3.yml b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_3.yml deleted file mode 100644 index 41070d788a3..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - http://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_4.RULE index 2db8ac9611c..0e8e246e7f9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.html + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + GNU Lesser General Public License diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_4.yml b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_4.yml deleted file mode 100644 index c0dc03a7d30..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.html - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_5.RULE index fa1fa943025..1bb020348e4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +--- + license: LGPL-3 | Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_5.yml b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_5.yml deleted file mode 100644 index 04a346d1025..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_6.RULE index 2b42ed4e7e8..cdbbbb718af 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt + - https://www.gnu.org/licenses/lgpl-3.0.html +--- + GNU Lesser General Public License diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_6.yml b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_6.yml deleted file mode 100644 index b0399c7481e..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt - - https://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_7.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_7.RULE index 526b1ac8627..23d0a380efa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lgpl-3.0 OR apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt + - https://www.gnu.org/licenses/lgpl-3.0.html +--- + GNU Lesser General Public License diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_7.yml b/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_7.yml deleted file mode 100644 index 1942057b6fa..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_apache-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 OR apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt - - https://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_1.RULE index 29c18816654..b98df51810f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_1.RULE @@ -1,7 +1,18 @@ +--- +license_expression: lgpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COMM-LICENSE +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-3.0.html + - https://sidekiq.org/products/pro.html +--- + Sidekiq is an Open Source project licensed under the terms of the LGPLv3 license. Please see for license text. Sidekiq Pro has a commercial-friendly license allowing private forks and modifications of Sidekiq. Please see https://sidekiq.org/products/pro.html for -more detail. You can find the commercial license terms in COMM-LICENSE. +more detail. You can find the commercial license terms in COMM-LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_1.yml deleted file mode 100644 index 7676bcd3ee6..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COMM-LICENSE -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-3.0.html - - https://sidekiq.org/products/pro.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_2.RULE index 864ce0710cd..ed8af3c79c8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_2.RULE @@ -1,7 +1,18 @@ +--- +license_expression: lgpl-3.0 OR commercial-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COMM-LICENSE +ignorable_urls: + - https://sidekiq.org/products/pro.html + - https://www.gnu.org/licenses/lgpl-3.0.html +--- + Sidekiq is an Open Source project licensed under the terms of the LGPLv3 license. Please see for license text. Sidekiq Pro has a commercial-friendly license allowing private forks and modifications of Sidekiq. Please see https://sidekiq.org/products/pro.html for -more detail. You can find the commercial license terms in COMM-LICENSE. +more detail. You can find the commercial license terms in COMM-LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_2.yml deleted file mode 100644 index c1d076ea342..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_commercial-license_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-3.0 OR commercial-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COMM-LICENSE -ignorable_urls: - - https://sidekiq.org/products/pro.html - - https://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_1.RULE index f75d4e7c6c2..2f9016aaa42 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 OR gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License Dual LGPLv3 and GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_1.yml deleted file mode 100644 index fabbc2dfd0a..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 OR gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_2.RULE index a0d5aeebb6e..0133f2ae914 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 OR gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Dual LGPLv3 and GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_2.yml deleted file mode 100644 index 60ebd06b28c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 OR gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_lgpl-2.1_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_or_lgpl-2.1_1.RULE index 5cdc43f023d..e46f01e2cd0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_or_lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_or_lgpl-2.1_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 OR lgpl-2.1 +is_license_notice: yes +notes: https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz +--- + This program is free software: you can redistribute it and/or modify it under the terms of either or both of the following licenses: diff --git a/src/licensedcode/data/rules/lgpl-3.0_or_lgpl-2.1_1.yml b/src/licensedcode/data/rules/lgpl-3.0_or_lgpl-2.1_1.yml deleted file mode 100644 index 351b33a018d..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_or_lgpl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 OR lgpl-2.1 -is_license_notice: yes -notes: https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz diff --git a/src/licensedcode/data/rules/lgpl-3.0_prep.ai.mit.edu.RULE b/src/licensedcode/data/rules/lgpl-3.0_prep.ai.mit.edu.RULE index 03a3d45228f..e39c03359d2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_prep.ai.mit.edu.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_prep.ai.mit.edu.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lgpl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ +--- + GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -162,4 +173,4 @@ General Public License ever published by the Free Software Foundation. whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the -Library. +Library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_prep.ai.mit.edu.yml b/src/licensedcode/data/rules/lgpl-3.0_prep.ai.mit.edu.yml deleted file mode 100644 index 597793eaf31..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_prep.ai.mit.edu.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lgpl-3.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ diff --git a/src/licensedcode/data/rules/lgpl-3.0_qt.RULE b/src/licensedcode/data/rules/lgpl-3.0_qt.RULE index 48d6adfa5a6..e041df3dc59 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_qt.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_qt.RULE @@ -1,3 +1,17 @@ +--- +license_expression: lgpl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. + - Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). Contact http://www.qt-project.org/legal +ignorable_holders: + - Digia Plc and/or its subsidiary(-ies). Contact + - Free Software Foundation, Inc. +ignorable_urls: + - http://fsf.org/ + - http://www.qt-project.org/legal +--- + GNU LESSER GENERAL PUBLIC LICENSE The Qt Toolkit is Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). @@ -169,4 +183,4 @@ ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is -permanent authorization for you to choose that version for the Library. +permanent authorization for you to choose that version for the Library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_qt.yml b/src/licensedcode/data/rules/lgpl-3.0_qt.yml deleted file mode 100644 index 79824ddd6fb..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_qt.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: lgpl-3.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. - - Copyright (c) 2014 Digia Plc and/or its subsidiary(-ies). Contact http://www.qt-project.org/legal -ignorable_holders: - - Digia Plc and/or its subsidiary(-ies). Contact - - Free Software Foundation, Inc. -ignorable_urls: - - http://fsf.org/ - - http://www.qt-project.org/legal diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_url_1.RULE index 8571ddc60d7..275d15b2de7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-3.0-only +--- + https://spdx.org/licenses/lgpl-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_1.yml b/src/licensedcode/data/rules/lgpl-3.0_url_1.yml deleted file mode 100644 index 926890c0d10..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-3.0-only diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_url_2.RULE index ca0f1be164c..be0afac0d25 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpl-3.0-only.html +--- + https://spdx.org/licenses/lgpl-3.0-only.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_2.yml b/src/licensedcode/data/rules/lgpl-3.0_url_2.yml deleted file mode 100644 index dc51da36406..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpl-3.0-only.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_badge.RULE b/src/licensedcode/data/rules/lgpl-3.0_url_badge.RULE index 6edab9c508c..5c9486832a2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_url_badge.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-LGPL%20v3-blue.svg + - https://www.gnu.org/licenses/lgpl-3.0 +--- + [![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_badge.yml b/src/licensedcode/data/rules/lgpl-3.0_url_badge.yml deleted file mode 100644 index 544d51e069c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-LGPL%20v3-blue.svg - - https://www.gnu.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_glc_125.RULE b/src/licensedcode/data/rules/lgpl-3.0_url_glc_125.RULE index 31fec5b2413..7a5e280b93f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_url_glc_125.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_url_glc_125.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/lgpl-3.0-standalone.html +--- + https://www.gnu.org/licenses/lgpl-3.0-standalone.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_glc_125.yml b/src/licensedcode/data/rules/lgpl-3.0_url_glc_125.yml deleted file mode 100644 index 18b5743895c..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_url_glc_125.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/lgpl-3.0-standalone.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_glc_180.RULE b/src/licensedcode/data/rules/lgpl-3.0_url_glc_180.RULE index f44795ed7b4..f8a116783da 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_url_glc_180.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_url_glc_180.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lgpl-3.0 +--- + http://www.opensource.org/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_glc_180.yml b/src/licensedcode/data/rules/lgpl-3.0_url_glc_180.yml deleted file mode 100644 index bc0d302e7af..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_url_glc_180.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_glc_181.RULE b/src/licensedcode/data/rules/lgpl-3.0_url_glc_181.RULE index 1f3137d872c..b8d81161f35 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_url_glc_181.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_url_glc_181.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/lgpl-3.0 +--- + https://www.opensource.org/licenses/lgpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_url_glc_181.yml b/src/licensedcode/data/rules/lgpl-3.0_url_glc_181.yml deleted file mode 100644 index 978871c556f..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_url_glc_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_1.RULE index 68d2483634f..5e298397f74 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 WITH lgpl-3.0-linking-exception +is_license_notice: yes +relevance: 100 +--- + All files in this repository are licensed as follows. If you contribute to this repository, it is assumed that you license your contribution under the same license unless you state otherwise. diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_1.yml b/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_1.yml deleted file mode 100644 index bbd0386d624..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 WITH lgpl-3.0-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_2.RULE index edd4effc753..db13011ab3e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0 WITH lgpl-3.0-linking-exception +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the LGPLv3, included below. As a special exception to the GNU Lesser General Public License version 3 diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_2.yml b/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_2.yml deleted file mode 100644 index bbd0386d624..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking-exception-lgpl-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 WITH lgpl-3.0-linking-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_1.RULE index 1918784b475..b9a5efa393a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-3.0 WITH independent-module-linking-exception +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +notes: a reference to https://github.com/artoolkit/jsartoolkit5/blob/b02f2b8ae94d0e4e45ffad0a05222199b3801962/LICENSE.txt +--- + is under LGPLv3 license and additional permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_1.yml b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_1.yml deleted file mode 100644 index 03fd8d945ca..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 WITH independent-module-linking-exception -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -notes: a reference to https://github.com/artoolkit/jsartoolkit5/blob/b02f2b8ae94d0e4e45ffad0a05222199b3801962/LICENSE.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_2.RULE index 3675e6801ae..737df92ad97 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-3.0 WITH independent-module-linking-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: a reference to https://github.com/artoolkit/jsartoolkit5/blob/b02f2b8ae94d0e4e45ffad0a05222199b3801962/LICENSE.txt +--- + is licensed primarily under the LGPLv3 (with the addition of a special -exception permitting static-linking). Please see below for the license text. +exception permitting static-linking). Please see below for the license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_2.yml b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_2.yml deleted file mode 100644 index 9a5ee6e5675..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 WITH independent-module-linking-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: a reference to https://github.com/artoolkit/jsartoolkit5/blob/b02f2b8ae94d0e4e45ffad0a05222199b3801962/LICENSE.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_3.RULE b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_3.RULE index 2e2cd9988b6..3ee0e53fd40 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_3.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-3.0 WITH independent-module-linking-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: a reference to https://github.com/artoolkit/jsartoolkit5/blob/b02f2b8ae94d0e4e45ffad0a05222199b3801962/LICENSE.txt +--- + LGPLv3 license and additional permission. 2) Full text of the LGPLv3. -3) Full text of the GPLv3, incorporated by reference into the LGPLv3. +3) Full text of the GPLv3, incorporated by reference into the LGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_3.yml b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_3.yml deleted file mode 100644 index 9a5ee6e5675..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-3.0 WITH independent-module-linking-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: a reference to https://github.com/artoolkit/jsartoolkit5/blob/b02f2b8ae94d0e4e45ffad0a05222199b3801962/LICENSE.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other.RULE b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other.RULE index 184a78ebe34..cd2a7fcf6f2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0 WITH independent-module-linking-exception AND free-unknown +is_license_notice: yes +relevance: 100 +notes: a reference to https://github.com/artoolkit/jsartoolkit5 +--- + is licensed primarily under the LGPLv3 (with the addition of a special exception permitting static-linking). Please see below for the license text. diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other.yml b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other.yml deleted file mode 100644 index ee39beda876..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 WITH independent-module-linking-exception AND free-unknown -is_license_notice: yes -relevance: 100 -notes: a reference to https://github.com/artoolkit/jsartoolkit5 diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other2.RULE b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other2.RULE index 25878a583f8..5b9ab8bdc17 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0 WITH independent-module-linking-exception AND free-unknown +is_license_notice: yes +relevance: 100 +notes: a reference to https://github.com/artoolkit/jsartoolkit5 +--- + is licensed primarily under the LGPLv3 (with the addition of a special exception permitting static-linking). Please see below for the license text. @@ -9,4 +16,4 @@ Contents: 1) LGPLv3 license and additional permission. 2) Full text of the LGPLv3. -3) Full text of the GPLv3, incorporated by reference into the LGPLv3. +3) Full text of the GPLv3, incorporated by reference into the LGPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other2.yml b/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other2.yml deleted file mode 100644 index ee39beda876..00000000000 --- a/src/licensedcode/data/rules/lgpl-3.0_with_linking_exception_and_other2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0 WITH independent-module-linking-exception AND free-unknown -is_license_notice: yes -relevance: 100 -notes: a reference to https://github.com/artoolkit/jsartoolkit5 diff --git a/src/licensedcode/data/rules/lgpl-doctrine.RULE b/src/licensedcode/data/rules/lgpl-doctrine.RULE index b395846b436..28c2ff9f039 100644 --- a/src/licensedcode/data/rules/lgpl-doctrine.RULE +++ b/src/licensedcode/data/rules/lgpl-doctrine.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +minimum_coverage: 100 +ignorable_urls: + - http://www.doctrine-project.org/ +--- + 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 @@ -13,4 +21,4 @@ This software consists of voluntary contributions made by many individuals and is licensed under the LGPL. For more information, see . -/ +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-doctrine.yml b/src/licensedcode/data/rules/lgpl-doctrine.yml deleted file mode 100644 index d6ee3da7062..00000000000 --- a/src/licensedcode/data/rules/lgpl-doctrine.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -minimum_coverage: 100 -ignorable_urls: - - http://www.doctrine-project.org/ diff --git a/src/licensedcode/data/rules/lgpl.RULE b/src/licensedcode/data/rules/lgpl.RULE index b2895e88c1f..cca79871702 100644 --- a/src/licensedcode/data/rules/lgpl.RULE +++ b/src/licensedcode/data/rules/lgpl.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + This is LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl.yml b/src/licensedcode/data/rules/lgpl.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_1.RULE b/src/licensedcode/data/rules/lgpl_1.RULE index 3232805a468..07f385b2c25 100644 --- a/src/licensedcode/data/rules/lgpl_1.RULE +++ b/src/licensedcode/data/rules/lgpl_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +--- + The GNOME libraries are released under the terms of the LGPL license, see /usr/share/common-licenses/LGPL for reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_1.yml b/src/licensedcode/data/rules/lgpl_1.yml deleted file mode 100644 index ab39c902973..00000000000 --- a/src/licensedcode/data/rules/lgpl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl_10.RULE b/src/licensedcode/data/rules/lgpl_10.RULE index ccdb3001cda..8203ef620d1 100644 --- a/src/licensedcode/data/rules/lgpl_10.RULE +++ b/src/licensedcode/data/rules/lgpl_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 30 +notes: Debian LGPL license with lesser hence the 2.1-plus version +--- + The shared library in this package is distributed under the terms of the GNU Lesser General Public License. The text of the license is available on Debian systems in the /usr/share/common-licenses/LGPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_10.yml b/src/licensedcode/data/rules/lgpl_10.yml deleted file mode 100644 index 79f1f3f9857..00000000000 --- a/src/licensedcode/data/rules/lgpl_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 30 -notes: Debian LGPL license with lesser hence the 2.1-plus version diff --git a/src/licensedcode/data/rules/lgpl_12.RULE b/src/licensedcode/data/rules/lgpl_12.RULE index 795087e3a80..cb8a4efebc9 100644 --- a/src/licensedcode/data/rules/lgpl_12.RULE +++ b/src/licensedcode/data/rules/lgpl_12.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + /* My work is under the GNU LGPL license */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_12.yml b/src/licensedcode/data/rules/lgpl_12.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_13.RULE b/src/licensedcode/data/rules/lgpl_13.RULE index 439acc90c35..2b4a0535ade 100644 --- a/src/licensedcode/data/rules/lgpl_13.RULE +++ b/src/licensedcode/data/rules/lgpl_13.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + /* My work is under the LGPL license */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_13.yml b/src/licensedcode/data/rules/lgpl_13.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_14.RULE b/src/licensedcode/data/rules/lgpl_14.RULE index d487168dd3a..9975e230048 100644 --- a/src/licensedcode/data/rules/lgpl_14.RULE +++ b/src/licensedcode/data/rules/lgpl_14.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + /* This is GNU LGPL */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_14.yml b/src/licensedcode/data/rules/lgpl_14.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_15.RULE b/src/licensedcode/data/rules/lgpl_15.RULE index c72d04dbfd8..5271c209389 100644 --- a/src/licensedcode/data/rules/lgpl_15.RULE +++ b/src/licensedcode/data/rules/lgpl_15.RULE @@ -1 +1,8 @@ -May be distributed under the conditions of the GNU Library General Public License +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: LGPL, any version and since this is library, then that's 2.0 or later +--- + +May be distributed under the conditions of the GNU Library General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_15.yml b/src/licensedcode/data/rules/lgpl_15.yml deleted file mode 100644 index 2b91a2d384e..00000000000 --- a/src/licensedcode/data/rules/lgpl_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: LGPL, any version and since this is library, then that's 2.0 or later diff --git a/src/licensedcode/data/rules/lgpl_16.RULE b/src/licensedcode/data/rules/lgpl_16.RULE index 4f9fc34728c..76f3b408cef 100644 --- a/src/licensedcode/data/rules/lgpl_16.RULE +++ b/src/licensedcode/data/rules/lgpl_16.RULE @@ -1 +1,7 @@ -you can use, modify, distribute and sell under the terms of LGPL *only*. +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +you can use, modify, distribute and sell under the terms of LGPL *only*. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_16.yml b/src/licensedcode/data/rules/lgpl_16.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_17.RULE b/src/licensedcode/data/rules/lgpl_17.RULE index 785d4805426..542c4d8d7f8 100644 --- a/src/licensedcode/data/rules/lgpl_17.RULE +++ b/src/licensedcode/data/rules/lgpl_17.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: Simple LGPL declaration +--- + Distributable under LGPL license See terms of license at gnuorg \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_17.yml b/src/licensedcode/data/rules/lgpl_17.yml deleted file mode 100644 index d96929d1217..00000000000 --- a/src/licensedcode/data/rules/lgpl_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: Simple LGPL declaration diff --git a/src/licensedcode/data/rules/lgpl_18.RULE b/src/licensedcode/data/rules/lgpl_18.RULE index 3de167444c9..06b534ee7a0 100644 --- a/src/licensedcode/data/rules/lgpl_18.RULE +++ b/src/licensedcode/data/rules/lgpl_18.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + /* Gnu LGPL is what governs this work */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_18.yml b/src/licensedcode/data/rules/lgpl_18.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_19.RULE b/src/licensedcode/data/rules/lgpl_19.RULE index d409fcec24f..8fb5257362f 100644 --- a/src/licensedcode/data/rules/lgpl_19.RULE +++ b/src/licensedcode/data/rules/lgpl_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL Distributable under LGPL license diff --git a/src/licensedcode/data/rules/lgpl_19.yml b/src/licensedcode/data/rules/lgpl_19.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_2.RULE b/src/licensedcode/data/rules/lgpl_2.RULE index aa7e53193b7..1c1cdf7a080 100644 --- a/src/licensedcode/data/rules/lgpl_2.RULE +++ b/src/licensedcode/data/rules/lgpl_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + LGPL is what governs this work \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_2.yml b/src/licensedcode/data/rules/lgpl_2.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_20.RULE b/src/licensedcode/data/rules/lgpl_20.RULE index 77b0f7aca77..a6273305b60 100644 --- a/src/licensedcode/data/rules/lgpl_20.RULE +++ b/src/licensedcode/data/rules/lgpl_20.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This library is distributed under the conditions of the GNU LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_20.yml b/src/licensedcode/data/rules/lgpl_20.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_20_tag.RULE b/src/licensedcode/data/rules/lgpl_20_tag.RULE index c402e593c0f..cd1cb393f08 100644 --- a/src/licensedcode/data/rules/lgpl_20_tag.RULE +++ b/src/licensedcode/data/rules/lgpl_20_tag.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +is_continuous: yes +relevance: 99 +--- + COPYRIGHT: LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_20_tag.yml b/src/licensedcode/data/rules/lgpl_20_tag.yml deleted file mode 100644 index f8a387b02de..00000000000 --- a/src/licensedcode/data/rules/lgpl_20_tag.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -is_continuous: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl_21.RULE b/src/licensedcode/data/rules/lgpl_21.RULE index 324c4b99dc0..da4bebedc89 100644 --- a/src/licensedcode/data/rules/lgpl_21.RULE +++ b/src/licensedcode/data/rules/lgpl_21.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + licensed under the less restrictive license LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_21.yml b/src/licensedcode/data/rules/lgpl_21.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_22.RULE b/src/licensedcode/data/rules/lgpl_22.RULE index b2a47c1c251..9a1eb5a294f 100644 --- a/src/licensedcode/data/rules/lgpl_22.RULE +++ b/src/licensedcode/data/rules/lgpl_22.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 99 +--- + requires LGPL only software \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_22.yml b/src/licensedcode/data/rules/lgpl_22.yml deleted file mode 100644 index 35b5091f3be..00000000000 --- a/src/licensedcode/data/rules/lgpl_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl_223.RULE b/src/licensedcode/data/rules/lgpl_223.RULE index 05be4bbe856..111bc74c7a2 100644 --- a/src/licensedcode/data/rules/lgpl_223.RULE +++ b/src/licensedcode/data/rules/lgpl_223.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + Provided under the terms of the GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_223.yml b/src/licensedcode/data/rules/lgpl_223.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/src/licensedcode/data/rules/lgpl_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_23.RULE b/src/licensedcode/data/rules/lgpl_23.RULE index ebbb3f7fc01..bc5df4b7ada 100644 --- a/src/licensedcode/data/rules/lgpl_23.RULE +++ b/src/licensedcode/data/rules/lgpl_23.RULE @@ -1,2 +1,9 @@ -/* licensed under http://www.gnu.org/licenses/lgpl.html */ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- +/* licensed under http://www.gnu.org/licenses/lgpl.html */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_23.yml b/src/licensedcode/data/rules/lgpl_23.yml deleted file mode 100644 index 4a09ba6318a..00000000000 --- a/src/licensedcode/data/rules/lgpl_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl_24.RULE b/src/licensedcode/data/rules/lgpl_24.RULE index 1c6a5a8183d..d51ded1d5dd 100644 --- a/src/licensedcode/data/rules/lgpl_24.RULE +++ b/src/licensedcode/data/rules/lgpl_24.RULE @@ -1,4 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + LGPL ---- -licenses/marj4j.LICENSE.txt +licenses/marj4j.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_24.yml b/src/licensedcode/data/rules/lgpl_24.yml deleted file mode 100644 index 1853da728c3..00000000000 --- a/src/licensedcode/data/rules/lgpl_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl_25.RULE b/src/licensedcode/data/rules/lgpl_25.RULE index 44fb025726c..3f812791597 100644 --- a/src/licensedcode/data/rules/lgpl_25.RULE +++ b/src/licensedcode/data/rules/lgpl_25.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/lgpl.html +--- + licensed under http://www.fsf.org/licensing/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_25.yml b/src/licensedcode/data/rules/lgpl_25.yml deleted file mode 100644 index 8fbf0befb4a..00000000000 --- a/src/licensedcode/data/rules/lgpl_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl_26.RULE b/src/licensedcode/data/rules/lgpl_26.RULE index 874acbe0a77..fdb96c67f73 100644 --- a/src/licensedcode/data/rules/lgpl_26.RULE +++ b/src/licensedcode/data/rules/lgpl_26.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: with lesser hence the 2.1-plus version +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + license http://www.gnu.org/copyleft/lesser.html LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_26.yml b/src/licensedcode/data/rules/lgpl_26.yml deleted file mode 100644 index ed403a2e8ba..00000000000 --- a/src/licensedcode/data/rules/lgpl_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: with lesser hence the 2.1-plus version -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl_27.RULE b/src/licensedcode/data/rules/lgpl_27.RULE index 53ca1e08ed2..558f68943c2 100644 --- a/src/licensedcode/data/rules/lgpl_27.RULE +++ b/src/licensedcode/data/rules/lgpl_27.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - /usr/share/common-licenses/LGPL +--- + Full text of LGPL can be found on Debian systems in file - /usr/share/common-licenses/LGPL. \ No newline at end of file + /usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_27.yml b/src/licensedcode/data/rules/lgpl_27.yml deleted file mode 100644 index 5f00abaabee..00000000000 --- a/src/licensedcode/data/rules/lgpl_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - /usr/share/common-licenses/LGPL diff --git a/src/licensedcode/data/rules/lgpl_28.RULE b/src/licensedcode/data/rules/lgpl_28.RULE index b46151f13db..10b082e0ca6 100644 --- a/src/licensedcode/data/rules/lgpl_28.RULE +++ b/src/licensedcode/data/rules/lgpl_28.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + you can use, modify, distribute and sell this under the terms of LGPL *only*. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_28.yml b/src/licensedcode/data/rules/lgpl_28.yml deleted file mode 100644 index 6846b54bdba..00000000000 --- a/src/licensedcode/data/rules/lgpl_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl_29.RULE b/src/licensedcode/data/rules/lgpl_29.RULE index f91f540c6ca..e6633f20835 100644 --- a/src/licensedcode/data/rules/lgpl_29.RULE +++ b/src/licensedcode/data/rules/lgpl_29.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + so you can use,modify, distribute and sell under the terms of LGPL *only*. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_29.yml b/src/licensedcode/data/rules/lgpl_29.yml deleted file mode 100644 index 1853da728c3..00000000000 --- a/src/licensedcode/data/rules/lgpl_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl_3.RULE b/src/licensedcode/data/rules/lgpl_3.RULE index b7ef89e6ce1..f8259df894a 100644 --- a/src/licensedcode/data/rules/lgpl_3.RULE +++ b/src/licensedcode/data/rules/lgpl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_3.yml b/src/licensedcode/data/rules/lgpl_3.yml deleted file mode 100644 index 4a09ba6318a..00000000000 --- a/src/licensedcode/data/rules/lgpl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl_30.RULE b/src/licensedcode/data/rules/lgpl_30.RULE index 2c2fc4e5077..2476f156c20 100644 --- a/src/licensedcode/data/rules/lgpl_30.RULE +++ b/src/licensedcode/data/rules/lgpl_30.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lgpl-license.php +--- + license http://www.opensource.org/licenses/lgpl-license.php LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_30.yml b/src/licensedcode/data/rules/lgpl_30.yml deleted file mode 100644 index 7aa756d4964..00000000000 --- a/src/licensedcode/data/rules/lgpl_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/lgpl_31.RULE b/src/licensedcode/data/rules/lgpl_31.RULE index 71dce892757..0f0a912899c 100644 --- a/src/licensedcode/data/rules/lgpl_31.RULE +++ b/src/licensedcode/data/rules/lgpl_31.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: with lesser hence the 2.1-plus version +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + License : GNU LGPL (http://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_31.yml b/src/licensedcode/data/rules/lgpl_31.yml deleted file mode 100644 index ed403a2e8ba..00000000000 --- a/src/licensedcode/data/rules/lgpl_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: with lesser hence the 2.1-plus version -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl_32.RULE b/src/licensedcode/data/rules/lgpl_32.RULE index 8ee5a77fe40..eee6092c898 100644 --- a/src/licensedcode/data/rules/lgpl_32.RULE +++ b/src/licensedcode/data/rules/lgpl_32.RULE @@ -1 +1,7 @@ -This file is released under the LGPL. +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + +This file is released under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_32.yml b/src/licensedcode/data/rules/lgpl_32.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_33.RULE b/src/licensedcode/data/rules/lgpl_33.RULE index 8b790e29f7e..f2b0a787dd3 100644 --- a/src/licensedcode/data/rules/lgpl_33.RULE +++ b/src/licensedcode/data/rules/lgpl_33.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 99 +--- + LGPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_33.yml b/src/licensedcode/data/rules/lgpl_33.yml deleted file mode 100644 index 35b5091f3be..00000000000 --- a/src/licensedcode/data/rules/lgpl_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lgpl_34.RULE b/src/licensedcode/data/rules/lgpl_34.RULE index b24bf64fda2..87c6012d827 100644 --- a/src/licensedcode/data/rules/lgpl_34.RULE +++ b/src/licensedcode/data/rules/lgpl_34.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + This is "Open Source" software and released under the "http://www.gnu.org/licenses/lgpl.html">GNU/LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_34.yml b/src/licensedcode/data/rules/lgpl_34.yml deleted file mode 100644 index 5462ecac6ca..00000000000 --- a/src/licensedcode/data/rules/lgpl_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl_35.RULE b/src/licensedcode/data/rules/lgpl_35.RULE index e454e034b43..ce15cade9f1 100644 --- a/src/licensedcode/data/rules/lgpl_35.RULE +++ b/src/licensedcode/data/rules/lgpl_35.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: with lesser hence the 2.1-plus version +--- + GNU Lesser General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_35.yml b/src/licensedcode/data/rules/lgpl_35.yml deleted file mode 100644 index 5a037b9d3c1..00000000000 --- a/src/licensedcode/data/rules/lgpl_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: with lesser hence the 2.1-plus version diff --git a/src/licensedcode/data/rules/lgpl_36.RULE b/src/licensedcode/data/rules/lgpl_36.RULE index c0712de2232..31fa65210b9 100644 --- a/src/licensedcode/data/rules/lgpl_36.RULE +++ b/src/licensedcode/data/rules/lgpl_36.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: with lesser hence the 2.1-plus version +--- + This software is distributed under the following licenses: GNU Lesser General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_36.yml b/src/licensedcode/data/rules/lgpl_36.yml deleted file mode 100644 index 23c5e8e7766..00000000000 --- a/src/licensedcode/data/rules/lgpl_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: with lesser hence the 2.1-plus version diff --git a/src/licensedcode/data/rules/lgpl_37.RULE b/src/licensedcode/data/rules/lgpl_37.RULE index 663d1474090..f1f0ad2b3ec 100644 --- a/src/licensedcode/data/rules/lgpl_37.RULE +++ b/src/licensedcode/data/rules/lgpl_37.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: with lesser hence the 2.1-plus version +--- + GNU Lesser General Public (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_37.yml b/src/licensedcode/data/rules/lgpl_37.yml deleted file mode 100644 index 5a037b9d3c1..00000000000 --- a/src/licensedcode/data/rules/lgpl_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: with lesser hence the 2.1-plus version diff --git a/src/licensedcode/data/rules/lgpl_38.RULE b/src/licensedcode/data/rules/lgpl_38.RULE index 8383b66b6c8..cb06139b142 100644 --- a/src/licensedcode/data/rules/lgpl_38.RULE +++ b/src/licensedcode/data/rules/lgpl_38.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + This module is released with the LGPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_38.yml b/src/licensedcode/data/rules/lgpl_38.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_39.RULE b/src/licensedcode/data/rules/lgpl_39.RULE index d08db598e65..ad733579899 100644 --- a/src/licensedcode/data/rules/lgpl_39.RULE +++ b/src/licensedcode/data/rules/lgpl_39.RULE @@ -1 +1,7 @@ -Free Software Foundation LGPL License +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + +Free Software Foundation LGPL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_39.yml b/src/licensedcode/data/rules/lgpl_39.yml deleted file mode 100644 index c04460543a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_4.RULE b/src/licensedcode/data/rules/lgpl_4.RULE index 51fcfab83d9..99b4f9a7691 100644 --- a/src/licensedcode/data/rules/lgpl_4.RULE +++ b/src/licensedcode/data/rules/lgpl_4.RULE @@ -1 +1,8 @@ -This is licensed under the GNU Lesser General Public License (LGPL) and comes with NO WARRANTY +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: with lesser hence the 2.1-plus version +--- + +This is licensed under the GNU Lesser General Public License (LGPL) and comes with NO WARRANTY \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_4.yml b/src/licensedcode/data/rules/lgpl_4.yml deleted file mode 100644 index 5a037b9d3c1..00000000000 --- a/src/licensedcode/data/rules/lgpl_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: with lesser hence the 2.1-plus version diff --git a/src/licensedcode/data/rules/lgpl_40.RULE b/src/licensedcode/data/rules/lgpl_40.RULE index 5a0f77569a0..1a5bd5b0f08 100644 --- a/src/licensedcode/data/rules/lgpl_40.RULE +++ b/src/licensedcode/data/rules/lgpl_40.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: since the text mentions a Lesser GPL with no version this is 2.1 or later as the 2.0 + would have been library and not lesser +--- + * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. @@ -11,5 +18,4 @@ * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor - * Boston, MA 02110-1301 USA - + * Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_40.yml b/src/licensedcode/data/rules/lgpl_40.yml deleted file mode 100644 index f76ec0ec796..00000000000 --- a/src/licensedcode/data/rules/lgpl_40.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: since the text mentions a Lesser GPL with no version this is 2.1 or later as the 2.0 - would have been library and not lesser diff --git a/src/licensedcode/data/rules/lgpl_41.RULE b/src/licensedcode/data/rules/lgpl_41.RULE index b17e902ee87..926c60f693e 100644 --- a/src/licensedcode/data/rules/lgpl_41.RULE +++ b/src/licensedcode/data/rules/lgpl_41.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This library is covered by the LGPL, read LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_41.yml b/src/licensedcode/data/rules/lgpl_41.yml deleted file mode 100644 index 78c077dc002..00000000000 --- a/src/licensedcode/data/rules/lgpl_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/lgpl_42.RULE b/src/licensedcode/data/rules/lgpl_42.RULE index b0fa33f5a28..1568351fe8c 100644 --- a/src/licensedcode/data/rules/lgpl_42.RULE +++ b/src/licensedcode/data/rules/lgpl_42.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 95 +referenced_filenames: + - license.txt +--- + is a free software distributed under the GNU LGPL. Read license.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_42.yml b/src/licensedcode/data/rules/lgpl_42.yml deleted file mode 100644 index fbd7a82d563..00000000000 --- a/src/licensedcode/data/rules/lgpl_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 95 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/lgpl_43.RULE b/src/licensedcode/data/rules/lgpl_43.RULE index 3065e6ba4ec..c8577e52ed0 100644 --- a/src/licensedcode/data/rules/lgpl_43.RULE +++ b/src/licensedcode/data/rules/lgpl_43.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 90 +--- + from GPL to LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_43.yml b/src/licensedcode/data/rules/lgpl_43.yml deleted file mode 100644 index d1b6729b057..00000000000 --- a/src/licensedcode/data/rules/lgpl_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/lgpl_44.RULE b/src/licensedcode/data/rules/lgpl_44.RULE index 2c33b66bb23..454844856d5 100644 --- a/src/licensedcode/data/rules/lgpl_44.RULE +++ b/src/licensedcode/data/rules/lgpl_44.RULE @@ -1 +1,7 @@ -LGPLd +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 60 +--- + +LGPLd \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_44.yml b/src/licensedcode/data/rules/lgpl_44.yml deleted file mode 100644 index 85a3c5ed77a..00000000000 --- a/src/licensedcode/data/rules/lgpl_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 60 diff --git a/src/licensedcode/data/rules/lgpl_45.RULE b/src/licensedcode/data/rules/lgpl_45.RULE index 616954d0647..fc8824bc54a 100644 --- a/src/licensedcode/data/rules/lgpl_45.RULE +++ b/src/licensedcode/data/rules/lgpl_45.RULE @@ -1 +1,7 @@ -LGPLed +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 60 +--- + +LGPLed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_45.yml b/src/licensedcode/data/rules/lgpl_45.yml deleted file mode 100644 index 85a3c5ed77a..00000000000 --- a/src/licensedcode/data/rules/lgpl_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 60 diff --git a/src/licensedcode/data/rules/lgpl_46.RULE b/src/licensedcode/data/rules/lgpl_46.RULE index 1733cdc8165..f13580a1fbf 100644 --- a/src/licensedcode/data/rules/lgpl_46.RULE +++ b/src/licensedcode/data/rules/lgpl_46.RULE @@ -1 +1,7 @@ -LGPL ed +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 60 +--- + +LGPL ed \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_46.yml b/src/licensedcode/data/rules/lgpl_46.yml deleted file mode 100644 index 85a3c5ed77a..00000000000 --- a/src/licensedcode/data/rules/lgpl_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 60 diff --git a/src/licensedcode/data/rules/lgpl_47.RULE b/src/licensedcode/data/rules/lgpl_47.RULE index 636caa9f6a3..f0599e5df92 100644 --- a/src/licensedcode/data/rules/lgpl_47.RULE +++ b/src/licensedcode/data/rules/lgpl_47.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: GNU LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_47.yml b/src/licensedcode/data/rules/lgpl_47.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_48.RULE b/src/licensedcode/data/rules/lgpl_48.RULE index 3e7a20a9e70..6004b32177a 100644 --- a/src/licensedcode/data/rules/lgpl_48.RULE +++ b/src/licensedcode/data/rules/lgpl_48.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + GNU LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_48.yml b/src/licensedcode/data/rules/lgpl_48.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/lgpl_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_49.RULE b/src/licensedcode/data/rules/lgpl_49.RULE index d96d555fac7..ce0da55674b 100644 --- a/src/licensedcode/data/rules/lgpl_49.RULE +++ b/src/licensedcode/data/rules/lgpl_49.RULE @@ -1 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + you can use, modify, distribute and sell under the terms of LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_49.yml b/src/licensedcode/data/rules/lgpl_49.yml deleted file mode 100644 index 6846b54bdba..00000000000 --- a/src/licensedcode/data/rules/lgpl_49.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl_5.RULE b/src/licensedcode/data/rules/lgpl_5.RULE index a72e0e0c3f6..b8a4dc42810 100644 --- a/src/licensedcode/data/rules/lgpl_5.RULE +++ b/src/licensedcode/data/rules/lgpl_5.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fsf.org/licensing/licenses/lgpl.html +--- + http://www.fsf.org/licensing/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_5.yml b/src/licensedcode/data/rules/lgpl_5.yml deleted file mode 100644 index 4878d1023e2..00000000000 --- a/src/licensedcode/data/rules/lgpl_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fsf.org/licensing/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl_50.RULE b/src/licensedcode/data/rules/lgpl_50.RULE index 884f0ac21a3..8e307f99c6e 100644 --- a/src/licensedcode/data/rules/lgpl_50.RULE +++ b/src/licensedcode/data/rules/lgpl_50.RULE @@ -1,7 +1,15 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +notes: lesser mean 2.1 or later +ignorable_urls: + - http://www.gnu.org/licenses/lgpl.html +--- + is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE OR USE. 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 . If not, see http://www.gnu.org/licenses/lgpl.html +along with . If not, see http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_50.yml b/src/licensedcode/data/rules/lgpl_50.yml deleted file mode 100644 index 966901ed970..00000000000 --- a/src/licensedcode/data/rules/lgpl_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -notes: lesser mean 2.1 or later -ignorable_urls: - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/lgpl_51.RULE b/src/licensedcode/data/rules/lgpl_51.RULE index 5c67674e4ef..4d764e51d56 100644 --- a/src/licensedcode/data/rules/lgpl_51.RULE +++ b/src/licensedcode/data/rules/lgpl_51.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + licensed as a LGPL project \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_51.yml b/src/licensedcode/data/rules/lgpl_51.yml deleted file mode 100644 index 8775364f78c..00000000000 --- a/src/licensedcode/data/rules/lgpl_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpl_6.RULE b/src/licensedcode/data/rules/lgpl_6.RULE index 2d8525d6754..c9157c549e5 100644 --- a/src/licensedcode/data/rules/lgpl_6.RULE +++ b/src/licensedcode/data/rules/lgpl_6.RULE @@ -1 +1,8 @@ -This file can be redistributed under the terms of the GNU Library General Public License +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: LGPL, any version +--- + +This file can be redistributed under the terms of the GNU Library General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_6.yml b/src/licensedcode/data/rules/lgpl_6.yml deleted file mode 100644 index 1a6d85c9754..00000000000 --- a/src/licensedcode/data/rules/lgpl_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: LGPL, any version diff --git a/src/licensedcode/data/rules/lgpl_7.RULE b/src/licensedcode/data/rules/lgpl_7.RULE index c78e335f661..d4a87f34042 100644 --- a/src/licensedcode/data/rules/lgpl_7.RULE +++ b/src/licensedcode/data/rules/lgpl_7.RULE @@ -1 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: If no version is specified, any LGPL verion can be used. Here with lesser hence the 2.1-plus + version +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + http://www.gnu.org/copyleft/lesser.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_7.yml b/src/licensedcode/data/rules/lgpl_7.yml deleted file mode 100644 index 16b5edf30eb..00000000000 --- a/src/licensedcode/data/rules/lgpl_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: If no version is specified, any LGPL verion can be used. Here with lesser hence the 2.1-plus - version -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl_8.RULE b/src/licensedcode/data/rules/lgpl_8.RULE index 28314c84f6f..0352ba6931c 100644 --- a/src/licensedcode/data/rules/lgpl_8.RULE +++ b/src/licensedcode/data/rules/lgpl_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: LGPL exception +--- + With the exception of which is released under the LGPL, see /usr/share/common-licenses/LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_8.yml b/src/licensedcode/data/rules/lgpl_8.yml deleted file mode 100644 index c04b586ff8d..00000000000 --- a/src/licensedcode/data/rules/lgpl_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: LGPL exception diff --git a/src/licensedcode/data/rules/lgpl_9.RULE b/src/licensedcode/data/rules/lgpl_9.RULE index 2344ffca42b..b45ccf60cae 100644 --- a/src/licensedcode/data/rules/lgpl_9.RULE +++ b/src/licensedcode/data/rules/lgpl_9.RULE @@ -1 +1,11 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +notes: If no version is specified, we return a generic LGPL. Here with lesser hence the 2.1-plus + version +ignorable_urls: + - http://www.gnu.org/copyleft/lesser.html +--- + http://www.gnu.org/copyleft/lesser.html LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_9.yml b/src/licensedcode/data/rules/lgpl_9.yml deleted file mode 100644 index 1886130c9fb..00000000000 --- a/src/licensedcode/data/rules/lgpl_9.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -notes: If no version is specified, we return a generic LGPL. Here with lesser hence the 2.1-plus - version -ignorable_urls: - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/lgpl_and_gpl.RULE b/src/licensedcode/data/rules/lgpl_and_gpl.RULE index 7c0e3a1c7aa..75a7af6aa19 100644 --- a/src/licensedcode/data/rules/lgpl_and_gpl.RULE +++ b/src/licensedcode/data/rules/lgpl_and_gpl.RULE @@ -1,6 +1,13 @@ +--- +license_expression: lgpl-2.1-plus AND gpl-1.0-plus +is_license_notice: yes +notes: since the text mentions a Lesser GPL with no version this is 2.1 or later as the 2.0 + would have been library and not lesser +--- + is released under the GNU Lesser General Public License, see the text of the GNU LGPL below. The executable programs in the bin, examples, and libtest directories are release under the GNU General Public License, see the text of the -GNU GPL below. +GNU GPL below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_and_gpl.yml b/src/licensedcode/data/rules/lgpl_and_gpl.yml deleted file mode 100644 index aa88ecf9774..00000000000 --- a/src/licensedcode/data/rules/lgpl_and_gpl.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.1-plus AND gpl-1.0-plus -is_license_notice: yes -notes: since the text mentions a Lesser GPL with no version this is 2.1 or later as the 2.0 - would have been library and not lesser diff --git a/src/licensedcode/data/rules/lgpl_and_sun-bcl.RULE b/src/licensedcode/data/rules/lgpl_and_sun-bcl.RULE index 031beec6f17..f050c672010 100644 --- a/src/licensedcode/data/rules/lgpl_and_sun-bcl.RULE +++ b/src/licensedcode/data/rules/lgpl_and_sun-bcl.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus AND sun-bcl-sdk-5.0 +is_license_notice: yes +notes: rxtx is 2.1+ +--- + This product includes RXTX serial library which is licensed under LGPL and Suns javax.comm library licensed under Suns Binary Code License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_and_sun-bcl.yml b/src/licensedcode/data/rules/lgpl_and_sun-bcl.yml deleted file mode 100644 index fb821e9262a..00000000000 --- a/src/licensedcode/data/rules/lgpl_and_sun-bcl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus AND sun-bcl-sdk-5.0 -is_license_notice: yes -notes: rxtx is 2.1+ diff --git a/src/licensedcode/data/rules/lgpl_bare_single_word.RULE b/src/licensedcode/data/rules/lgpl_bare_single_word.RULE index bb62e53f675..7c6859facdb 100644 --- a/src/licensedcode/data/rules/lgpl_bare_single_word.RULE +++ b/src/licensedcode/data/rules/lgpl_bare_single_word.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 75 +--- + LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_bare_single_word.yml b/src/licensedcode/data/rules/lgpl_bare_single_word.yml deleted file mode 100644 index 1911b958ba6..00000000000 --- a/src/licensedcode/data/rules/lgpl_bare_single_word.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 75 diff --git a/src/licensedcode/data/rules/lgpl_copying_lgpl.RULE b/src/licensedcode/data/rules/lgpl_copying_lgpl.RULE index b9b083cf9e8..ec9de244f0a 100644 --- a/src/licensedcode/data/rules/lgpl_copying_lgpl.RULE +++ b/src/licensedcode/data/rules/lgpl_copying_lgpl.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 90 +--- + COPYING.LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_copying_lgpl.yml b/src/licensedcode/data/rules/lgpl_copying_lgpl.yml deleted file mode 100644 index d1b6729b057..00000000000 --- a/src/licensedcode/data/rules/lgpl_copying_lgpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/lgpl_lesser_33.RULE b/src/licensedcode/data/rules/lgpl_lesser_33.RULE index 204ef93af51..8cf78207d3a 100644 --- a/src/licensedcode/data/rules/lgpl_lesser_33.RULE +++ b/src/licensedcode/data/rules/lgpl_lesser_33.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -9,4 +14,4 @@ GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesset General Public License along with this program; if not, write to the Free Software Foundation, -Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_lesser_33.yml b/src/licensedcode/data/rules/lgpl_lesser_33.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl_lesser_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl_lesser_34.RULE b/src/licensedcode/data/rules/lgpl_lesser_34.RULE index 999f8130a71..e8ab580356c 100644 --- a/src/licensedcode/data/rules/lgpl_lesser_34.RULE +++ b/src/licensedcode/data/rules/lgpl_lesser_34.RULE @@ -1,3 +1,8 @@ +--- +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. @@ -9,4 +14,4 @@ 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 St, Fifth Floor, Boston, MA 02110-1301 USA +Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_lesser_34.yml b/src/licensedcode/data/rules/lgpl_lesser_34.yml deleted file mode 100644 index 18bddb7795a..00000000000 --- a/src/licensedcode/data/rules/lgpl_lesser_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpl_or_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/lgpl_or_gpl-2.0-plus.RULE index 02e0193acba..5c54bdc2b1f 100644 --- a/src/licensedcode/data/rules/lgpl_or_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/lgpl_or_gpl-2.0-plus.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +notes: From snprintf in ftp://ftp.gnu.org/gnu/inetutils/inetutils-1.4.0.tar.gz +--- + 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 @@ -12,4 +18,4 @@ 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. + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_or_gpl-2.0-plus.yml b/src/licensedcode/data/rules/lgpl_or_gpl-2.0-plus.yml deleted file mode 100644 index d60acfa1fd0..00000000000 --- a/src/licensedcode/data/rules/lgpl_or_gpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -notes: From snprintf in ftp://ftp.gnu.org/gnu/inetutils/inetutils-1.4.0.tar.gz diff --git a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new.RULE b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new.RULE index afd24daaeeb..37b3c7f5dcb 100644 --- a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new.RULE +++ b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lgpl-2.0-plus OR mpl-1.1 OR bsd-new +is_license_reference: yes +relevance: 100 +notes: tri license +--- + is available under * the LGPL, MPL or BSD license (at your choice). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new.yml b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new.yml deleted file mode 100644 index 5800fcfbde1..00000000000 --- a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-2.0-plus OR mpl-1.1 OR bsd-new -is_license_reference: yes -relevance: 100 -notes: tri license diff --git a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_1.RULE b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_1.RULE index 5e47fff3a51..c9b720ba483 100644 --- a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lgpl-2.0-plus OR mpl-1.1 OR bsd-new +is_license_notice: yes +relevance: 100 +notes: This is found in wireless tools. Because of the code dates (2002) the MPL license that + applies should be the MPL 1.1. Unlike the GPL, the MPL does not allow to select any version + when no version is stated +--- + this particular snippet of code is available under the LGPL, MPL or BSD license (at your choice). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_1.yml b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_1.yml deleted file mode 100644 index a6ae90f2508..00000000000 --- a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus OR mpl-1.1 OR bsd-new -is_license_notice: yes -relevance: 100 -notes: This is found in wireless tools. Because of the code dates (2002) the MPL license that - applies should be the MPL 1.1. Unlike the GPL, the MPL does not allow to select any version - when no version is stated diff --git a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_2.RULE b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_2.RULE index 7df16d4d1fa..40fe901022c 100644 --- a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_2.RULE @@ -1 +1,11 @@ +--- +license_expression: lgpl-2.0-plus OR mpl-1.1 OR bsd-new +is_license_notice: yes +relevance: 100 +notes: LGPL, MPL or BSD license for Wireless tools This is used in wireless tools and has a + typo in the original) Because of the date of the snippets (2002) the MPL license that applies + should be the MPL 1.1. Unlike the GPL, the MPL does not allow to select any version when + no version is stated +--- + this particular snipset of code is available under the LGPL, MPL or BSD license (at your choice). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_2.yml b/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_2.yml deleted file mode 100644 index a26195d8578..00000000000 --- a/src/licensedcode/data/rules/lgpl_or_mpl-1.1_or_bsd-new_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus OR mpl-1.1 OR bsd-new -is_license_notice: yes -relevance: 100 -notes: LGPL, MPL or BSD license for Wireless tools This is used in wireless tools and has a - typo in the original) Because of the date of the snippets (2002) the MPL license that applies - should be the MPL 1.1. Unlike the GPL, the MPL does not allow to select any version when - no version is stated diff --git a/src/licensedcode/data/rules/lgpl_with_wxwindows.RULE b/src/licensedcode/data/rules/lgpl_with_wxwindows.RULE index 80024fb8f5d..dd22e35bbf6 100644 --- a/src/licensedcode/data/rules/lgpl_with_wxwindows.RULE +++ b/src/licensedcode/data/rules/lgpl_with_wxwindows.RULE @@ -1,3 +1,7 @@ -For the full wxWindows Library Licence text see LICENCE-wxWindows.txt. -For the full GNU Library General Public Licence text see LICENCE-LGPL.txt. +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +--- +For the full wxWindows Library Licence text see LICENCE-wxWindows.txt. +For the full GNU Library General Public Licence text see LICENCE-LGPL.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_with_wxwindows.yml b/src/licensedcode/data/rules/lgpl_with_wxwindows.yml deleted file mode 100644 index 945cb25e0b0..00000000000 --- a/src/licensedcode/data/rules/lgpl_with_wxwindows.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lgpllr_1.RULE b/src/licensedcode/data/rules/lgpllr_1.RULE index b2380825988..7a6f057cff2 100644 --- a/src/licensedcode/data/rules/lgpllr_1.RULE +++ b/src/licensedcode/data/rules/lgpllr_1.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpllr +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Lesser General Public License For Linguistic Resources \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_1.yml b/src/licensedcode/data/rules/lgpllr_1.yml deleted file mode 100644 index f69671c71c6..00000000000 --- a/src/licensedcode/data/rules/lgpllr_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpllr_10.RULE b/src/licensedcode/data/rules/lgpllr_10.RULE index 902ed012a8e..f397a3d0a61 100644 --- a/src/licensedcode/data/rules/lgpllr_10.RULE +++ b/src/licensedcode/data/rules/lgpllr_10.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpllr +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPLLR +--- + LICENSE {{LGPLLR}} https://spdx.org/licenses/LGPLLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_10.yml b/src/licensedcode/data/rules/lgpllr_10.yml deleted file mode 100644 index f0393c6c288..00000000000 --- a/src/licensedcode/data/rules/lgpllr_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPLLR diff --git a/src/licensedcode/data/rules/lgpllr_11.RULE b/src/licensedcode/data/rules/lgpllr_11.RULE index a0a1da606a0..d8e3b8beb64 100644 --- a/src/licensedcode/data/rules/lgpllr_11.RULE +++ b/src/licensedcode/data/rules/lgpllr_11.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpllr +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LGPLLR +--- + {{LGPLLR}} https://spdx.org/licenses/LGPLLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_11.yml b/src/licensedcode/data/rules/lgpllr_11.yml deleted file mode 100644 index f0393c6c288..00000000000 --- a/src/licensedcode/data/rules/lgpllr_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LGPLLR diff --git a/src/licensedcode/data/rules/lgpllr_2.RULE b/src/licensedcode/data/rules/lgpllr_2.RULE index 0f20cf3c1da..9d8995c4248 100644 --- a/src/licensedcode/data/rules/lgpllr_2.RULE +++ b/src/licensedcode/data/rules/lgpllr_2.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpllr +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Lesser General Public License For Linguistic Resources \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_2.yml b/src/licensedcode/data/rules/lgpllr_2.yml deleted file mode 100644 index f69671c71c6..00000000000 --- a/src/licensedcode/data/rules/lgpllr_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpllr_3.RULE b/src/licensedcode/data/rules/lgpllr_3.RULE index 7d62c38febc..1649b78c029 100644 --- a/src/licensedcode/data/rules/lgpllr_3.RULE +++ b/src/licensedcode/data/rules/lgpllr_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpllr +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LGPLLR Lesser General Public License For Linguistic Resources \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_3.yml b/src/licensedcode/data/rules/lgpllr_3.yml deleted file mode 100644 index f69671c71c6..00000000000 --- a/src/licensedcode/data/rules/lgpllr_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpllr_4.RULE b/src/licensedcode/data/rules/lgpllr_4.RULE index bb1d130b898..ebad39cfbc2 100644 --- a/src/licensedcode/data/rules/lgpllr_4.RULE +++ b/src/licensedcode/data/rules/lgpllr_4.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpllr +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Lesser General Public License For Linguistic Resources LGPLLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_4.yml b/src/licensedcode/data/rules/lgpllr_4.yml deleted file mode 100644 index f69671c71c6..00000000000 --- a/src/licensedcode/data/rules/lgpllr_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpllr_5.RULE b/src/licensedcode/data/rules/lgpllr_5.RULE index c4db254d30a..51b3fe0ded9 100644 --- a/src/licensedcode/data/rules/lgpllr_5.RULE +++ b/src/licensedcode/data/rules/lgpllr_5.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpllr +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LGPLLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_5.yml b/src/licensedcode/data/rules/lgpllr_5.yml deleted file mode 100644 index fe2a783e717..00000000000 --- a/src/licensedcode/data/rules/lgpllr_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpllr -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpllr_6.RULE b/src/licensedcode/data/rules/lgpllr_6.RULE index f4179493a8d..94c170d7eb3 100644 --- a/src/licensedcode/data/rules/lgpllr_6.RULE +++ b/src/licensedcode/data/rules/lgpllr_6.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpllr +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Lesser General Public License For Linguistic Resources \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_6.yml b/src/licensedcode/data/rules/lgpllr_6.yml deleted file mode 100644 index fe2a783e717..00000000000 --- a/src/licensedcode/data/rules/lgpllr_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpllr -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpllr_7.RULE b/src/licensedcode/data/rules/lgpllr_7.RULE index 420a0720d70..737627afa40 100644 --- a/src/licensedcode/data/rules/lgpllr_7.RULE +++ b/src/licensedcode/data/rules/lgpllr_7.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpllr +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LGPLLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_7.yml b/src/licensedcode/data/rules/lgpllr_7.yml deleted file mode 100644 index fe2a783e717..00000000000 --- a/src/licensedcode/data/rules/lgpllr_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpllr -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lgpllr_8.RULE b/src/licensedcode/data/rules/lgpllr_8.RULE index b4f441bcb0c..7ed9bbf4934 100644 --- a/src/licensedcode/data/rules/lgpllr_8.RULE +++ b/src/licensedcode/data/rules/lgpllr_8.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpllr +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LGPLLR +--- + https://licenses.nuget.org/LGPLLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_8.yml b/src/licensedcode/data/rules/lgpllr_8.yml deleted file mode 100644 index 9a6f4061f65..00000000000 --- a/src/licensedcode/data/rules/lgpllr_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LGPLLR diff --git a/src/licensedcode/data/rules/lgpllr_9.RULE b/src/licensedcode/data/rules/lgpllr_9.RULE index d887eac4029..565a82a965c 100644 --- a/src/licensedcode/data/rules/lgpllr_9.RULE +++ b/src/licensedcode/data/rules/lgpllr_9.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpllr +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LGPLLR \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_9.yml b/src/licensedcode/data/rules/lgpllr_9.yml deleted file mode 100644 index ef96266c130..00000000000 --- a/src/licensedcode/data/rules/lgpllr_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lgpllr_url_1.RULE b/src/licensedcode/data/rules/lgpllr_url_1.RULE index ca0ac08ba8f..59cdcc2beed 100644 --- a/src/licensedcode/data/rules/lgpllr_url_1.RULE +++ b/src/licensedcode/data/rules/lgpllr_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpllr +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpllr +--- + https://spdx.org/licenses/lgpllr \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_url_1.yml b/src/licensedcode/data/rules/lgpllr_url_1.yml deleted file mode 100644 index e21c486a3e7..00000000000 --- a/src/licensedcode/data/rules/lgpllr_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpllr diff --git a/src/licensedcode/data/rules/lgpllr_url_2.RULE b/src/licensedcode/data/rules/lgpllr_url_2.RULE index ae592ca9b34..3075a2d5446 100644 --- a/src/licensedcode/data/rules/lgpllr_url_2.RULE +++ b/src/licensedcode/data/rules/lgpllr_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpllr +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lgpllr.html +--- + https://spdx.org/licenses/lgpllr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpllr_url_2.yml b/src/licensedcode/data/rules/lgpllr_url_2.yml deleted file mode 100644 index 423b58a18dd..00000000000 --- a/src/licensedcode/data/rules/lgpllr_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lgpllr.html diff --git a/src/licensedcode/data/rules/liberation-font-exception_1.RULE b/src/licensedcode/data/rules/liberation-font-exception_1.RULE index b2655c9c122..c41ef74c320 100644 --- a/src/licensedcode/data/rules/liberation-font-exception_1.RULE +++ b/src/licensedcode/data/rules/liberation-font-exception_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: liberation-font-exception +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 2007 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +--- + LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY LIBERATION FONT SOFTWARE @@ -16,4 +25,4 @@ 4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential damages, including lost profits or lost savings arising out of the use or inability to use the Software, even if Red Hat or such dealer has been advised of the possibility of such damages. 5. General. If any provision of this agreement is held to be unenforceable, that shall not affect the enforceability of the remaining provisions. This agreement shall be governed by the laws of the State of North Carolina and of the United States, without regard to any conflict of laws provisions, except that the United Nations Convention on the International Sale of Goods shall not apply. - Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. + Copyright © 2007 Red Hat, Inc. All rights reserved. LIBERATION is a trademark of Red Hat, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/liberation-font-exception_1.yml b/src/licensedcode/data/rules/liberation-font-exception_1.yml deleted file mode 100644 index 449866fce4e..00000000000 --- a/src/licensedcode/data/rules/liberation-font-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: liberation-font-exception -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 2007 Red Hat, Inc. -ignorable_holders: - - Red Hat, Inc. diff --git a/src/licensedcode/data/rules/liberation-font-exception_2.RULE b/src/licensedcode/data/rules/liberation-font-exception_2.RULE index 0662c75fa23..bd489cf9d63 100644 --- a/src/licensedcode/data/rules/liberation-font-exception_2.RULE +++ b/src/licensedcode/data/rules/liberation-font-exception_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: liberation-font-exception +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2007-2011 Red Hat, Inc. +ignorable_holders: + - Red Hat, Inc. +--- + LICENSE AGREEMENT AND LIMITED PRODUCT WARRANTY LIBERATION FONT SOFTWARE diff --git a/src/licensedcode/data/rules/liberation-font-exception_2.yml b/src/licensedcode/data/rules/liberation-font-exception_2.yml deleted file mode 100644 index 6b9966d6794..00000000000 --- a/src/licensedcode/data/rules/liberation-font-exception_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: liberation-font-exception -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2007-2011 Red Hat, Inc. -ignorable_holders: - - Red Hat, Inc. diff --git a/src/licensedcode/data/rules/libgd-2018_1.RULE b/src/licensedcode/data/rules/libgd-2018_1.RULE index ef27f51e373..8788b0bc605 100644 --- a/src/licensedcode/data/rules/libgd-2018_1.RULE +++ b/src/licensedcode/data/rules/libgd-2018_1.RULE @@ -1 +1,10 @@ +--- +license_expression: libgd-2018 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_1.yml b/src/licensedcode/data/rules/libgd-2018_1.yml deleted file mode 100644 index b954a78a7f3..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libgd-2018 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libgd-2018_10.RULE b/src/licensedcode/data/rules/libgd-2018_10.RULE index 0da8372a174..f7256e9f84c 100644 --- a/src/licensedcode/data/rules/libgd-2018_10.RULE +++ b/src/licensedcode/data/rules/libgd-2018_10.RULE @@ -1 +1,9 @@ +--- +license_expression: libgd-2018 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GD +--- + {{GD}} https://spdx.org/licenses/GD \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_10.yml b/src/licensedcode/data/rules/libgd-2018_10.yml deleted file mode 100644 index 6bfcf49efd9..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libgd-2018 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GD diff --git a/src/licensedcode/data/rules/libgd-2018_11.RULE b/src/licensedcode/data/rules/libgd-2018_11.RULE index b56fd27c012..47e4bd594ff 100644 --- a/src/licensedcode/data/rules/libgd-2018_11.RULE +++ b/src/licensedcode/data/rules/libgd-2018_11.RULE @@ -1 +1,9 @@ +--- +license_expression: libgd-2018 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GD +--- + LICENSE {{GD}} https://spdx.org/licenses/GD \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_11.yml b/src/licensedcode/data/rules/libgd-2018_11.yml deleted file mode 100644 index 6bfcf49efd9..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libgd-2018 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/GD diff --git a/src/licensedcode/data/rules/libgd-2018_2.RULE b/src/licensedcode/data/rules/libgd-2018_2.RULE index ca54f3cd077..0c6c2138edc 100644 --- a/src/licensedcode/data/rules/libgd-2018_2.RULE +++ b/src/licensedcode/data/rules/libgd-2018_2.RULE @@ -1 +1,10 @@ +--- +license_expression: libgd-2018 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: GD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_2.yml b/src/licensedcode/data/rules/libgd-2018_2.yml deleted file mode 100644 index b954a78a7f3..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libgd-2018 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libgd-2018_3.RULE b/src/licensedcode/data/rules/libgd-2018_3.RULE index 742bcee3298..53d49e22240 100644 --- a/src/licensedcode/data/rules/libgd-2018_3.RULE +++ b/src/licensedcode/data/rules/libgd-2018_3.RULE @@ -1 +1,10 @@ +--- +license_expression: libgd-2018 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GD GD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_3.yml b/src/licensedcode/data/rules/libgd-2018_3.yml deleted file mode 100644 index b954a78a7f3..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libgd-2018 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libgd-2018_4.RULE b/src/licensedcode/data/rules/libgd-2018_4.RULE index 6da44e58233..24a15e21793 100644 --- a/src/licensedcode/data/rules/libgd-2018_4.RULE +++ b/src/licensedcode/data/rules/libgd-2018_4.RULE @@ -1 +1,10 @@ +--- +license_expression: libgd-2018 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + GD License GD \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_4.yml b/src/licensedcode/data/rules/libgd-2018_4.yml deleted file mode 100644 index b954a78a7f3..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libgd-2018 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libgd-2018_5.RULE b/src/licensedcode/data/rules/libgd-2018_5.RULE index 6bcfeb094ae..b27757d854e 100644 --- a/src/licensedcode/data/rules/libgd-2018_5.RULE +++ b/src/licensedcode/data/rules/libgd-2018_5.RULE @@ -1 +1,10 @@ +--- +license_expression: libgd-2018 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GD \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_5.yml b/src/licensedcode/data/rules/libgd-2018_5.yml deleted file mode 100644 index a0ddd4c72a3..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libgd-2018 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libgd-2018_6.RULE b/src/licensedcode/data/rules/libgd-2018_6.RULE index 99255034775..e4dd9ffe323 100644 --- a/src/licensedcode/data/rules/libgd-2018_6.RULE +++ b/src/licensedcode/data/rules/libgd-2018_6.RULE @@ -1 +1,10 @@ +--- +license_expression: libgd-2018 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: GD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_6.yml b/src/licensedcode/data/rules/libgd-2018_6.yml deleted file mode 100644 index a0ddd4c72a3..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libgd-2018 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libgd-2018_7.RULE b/src/licensedcode/data/rules/libgd-2018_7.RULE index b7ccabe24f1..3f46caa1a52 100644 --- a/src/licensedcode/data/rules/libgd-2018_7.RULE +++ b/src/licensedcode/data/rules/libgd-2018_7.RULE @@ -1 +1,10 @@ +--- +license_expression: libgd-2018 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: GD \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_7.yml b/src/licensedcode/data/rules/libgd-2018_7.yml deleted file mode 100644 index a0ddd4c72a3..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libgd-2018 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libgd-2018_8.RULE b/src/licensedcode/data/rules/libgd-2018_8.RULE index 0be872c6de3..fe0cb4662a5 100644 --- a/src/licensedcode/data/rules/libgd-2018_8.RULE +++ b/src/licensedcode/data/rules/libgd-2018_8.RULE @@ -1 +1,9 @@ +--- +license_expression: libgd-2018 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/GD +--- + https://licenses.nuget.org/GD \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_8.yml b/src/licensedcode/data/rules/libgd-2018_8.yml deleted file mode 100644 index 73447eb327c..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libgd-2018 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/GD diff --git a/src/licensedcode/data/rules/libgd-2018_9.RULE b/src/licensedcode/data/rules/libgd-2018_9.RULE index a6131e3f34e..75e5e5984ae 100644 --- a/src/licensedcode/data/rules/libgd-2018_9.RULE +++ b/src/licensedcode/data/rules/libgd-2018_9.RULE @@ -1 +1,7 @@ +--- +license_expression: libgd-2018 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/GD \ No newline at end of file diff --git a/src/licensedcode/data/rules/libgd-2018_9.yml b/src/licensedcode/data/rules/libgd-2018_9.yml deleted file mode 100644 index 49421a054e3..00000000000 --- a/src/licensedcode/data/rules/libgd-2018_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libgd-2018 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpbm_1.RULE b/src/licensedcode/data/rules/libpbm_1.RULE index 9d50a77ce3d..ffd7005adf7 100644 --- a/src/licensedcode/data/rules/libpbm_1.RULE +++ b/src/licensedcode/data/rules/libpbm_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: libpbm +is_license_notice: yes +relevance: 90 +minimum_coverage: 10 +notes: The warranty disclaimer is different and possibly predates libpbm. See https://github.com/oracle/solaris-xorg/blob/master/open-src/app/xlock/sun-src/image.c +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -8,4 +16,4 @@ This file is provided AS IS with no warranties of any kind. The author shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by this file or any part thereof. In no event will the author be liable for any lost revenue or profits or -other special, indirect and consequential damages. +other special, indirect and consequential damages. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpbm_1.yml b/src/licensedcode/data/rules/libpbm_1.yml deleted file mode 100644 index b44454b8609..00000000000 --- a/src/licensedcode/data/rules/libpbm_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpbm -is_license_notice: yes -relevance: 90 -minimum_coverage: 10 -notes: The warranty disclaimer is different and possibly predates libpbm. See https://github.com/oracle/solaris-xorg/blob/master/open-src/app/xlock/sun-src/image.c diff --git a/src/licensedcode/data/rules/libpbm_2.RULE b/src/licensedcode/data/rules/libpbm_2.RULE index 266a892bfea..dec53026c9a 100644 --- a/src/licensedcode/data/rules/libpbm_2.RULE +++ b/src/licensedcode/data/rules/libpbm_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: libpbm +is_license_text: yes +relevance: 99 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/libpbm_2.yml b/src/licensedcode/data/rules/libpbm_2.yml deleted file mode 100644 index 9a9724339f8..00000000000 --- a/src/licensedcode/data/rules/libpbm_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpbm -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/libpbm_3.RULE b/src/licensedcode/data/rules/libpbm_3.RULE index 23bb514d9e6..496daac901f 100644 --- a/src/licensedcode/data/rules/libpbm_3.RULE +++ b/src/licensedcode/data/rules/libpbm_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: libpbm +is_license_text: yes +relevance: 100 +--- + {{Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee}} is hereby granted, provided that the above copyright notice appear in all copies @@ -8,4 +14,4 @@ shall have no liability with respect to the infringement of copyrights, trade secrets or any patents by this software or any part thereof. In no event will the author be liable for any lost revenue or profits or other - special, indirect and consequential damages. + special, indirect and consequential damages. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpbm_3.yml b/src/licensedcode/data/rules/libpbm_3.yml deleted file mode 100644 index 3632e31f373..00000000000 --- a/src/licensedcode/data/rules/libpbm_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpbm -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng-v2_1.RULE b/src/licensedcode/data/rules/libpng-v2_1.RULE index 5f7d03785c7..8782d6ccd95 100644 --- a/src/licensedcode/data/rules/libpng-v2_1.RULE +++ b/src/licensedcode/data/rules/libpng-v2_1.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PNG Reference Library version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_1.yml b/src/licensedcode/data/rules/libpng-v2_1.yml deleted file mode 100644 index 1ecae4f7469..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng-v2_10.RULE b/src/licensedcode/data/rules/libpng-v2_10.RULE index 3e0053fb358..a1c58694183 100644 --- a/src/licensedcode/data/rules/libpng-v2_10.RULE +++ b/src/licensedcode/data/rules/libpng-v2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/libpng-2.0 +--- + {{libpng-2.0}} https://spdx.org/licenses/libpng-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_10.yml b/src/licensedcode/data/rules/libpng-v2_10.yml deleted file mode 100644 index bea741d99bd..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/libpng-2.0 diff --git a/src/licensedcode/data/rules/libpng-v2_11.RULE b/src/licensedcode/data/rules/libpng-v2_11.RULE index 2d55615ca6d..4ad9d2f301e 100644 --- a/src/licensedcode/data/rules/libpng-v2_11.RULE +++ b/src/licensedcode/data/rules/libpng-v2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/libpng-2.0 +--- + LICENSE {{libpng-2.0}} https://spdx.org/licenses/libpng-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_11.yml b/src/licensedcode/data/rules/libpng-v2_11.yml deleted file mode 100644 index bea741d99bd..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/libpng-2.0 diff --git a/src/licensedcode/data/rules/libpng-v2_2.RULE b/src/licensedcode/data/rules/libpng-v2_2.RULE index e88c90e738f..66777f3f432 100644 --- a/src/licensedcode/data/rules/libpng-v2_2.RULE +++ b/src/licensedcode/data/rules/libpng-v2_2.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: PNG Reference Library version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_2.yml b/src/licensedcode/data/rules/libpng-v2_2.yml deleted file mode 100644 index 1ecae4f7469..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng-v2_3.RULE b/src/licensedcode/data/rules/libpng-v2_3.RULE index b055defcfb5..f4c7554cc0e 100644 --- a/src/licensedcode/data/rules/libpng-v2_3.RULE +++ b/src/licensedcode/data/rules/libpng-v2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + libpng-2.0 PNG Reference Library version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_3.yml b/src/licensedcode/data/rules/libpng-v2_3.yml deleted file mode 100644 index 1ecae4f7469..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng-v2_4.RULE b/src/licensedcode/data/rules/libpng-v2_4.RULE index 23de329271d..d2d5df6f869 100644 --- a/src/licensedcode/data/rules/libpng-v2_4.RULE +++ b/src/licensedcode/data/rules/libpng-v2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PNG Reference Library version 2 libpng-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_4.yml b/src/licensedcode/data/rules/libpng-v2_4.yml deleted file mode 100644 index 1ecae4f7469..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng-v2_5.RULE b/src/licensedcode/data/rules/libpng-v2_5.RULE index a5cb2beab52..072db8190f5 100644 --- a/src/licensedcode/data/rules/libpng-v2_5.RULE +++ b/src/licensedcode/data/rules/libpng-v2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng-v2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: libpng-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_5.yml b/src/licensedcode/data/rules/libpng-v2_5.yml deleted file mode 100644 index 6dcdf594613..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng-v2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng-v2_6.RULE b/src/licensedcode/data/rules/libpng-v2_6.RULE index b94384755cc..536a624ca7e 100644 --- a/src/licensedcode/data/rules/libpng-v2_6.RULE +++ b/src/licensedcode/data/rules/libpng-v2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng-v2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PNG Reference Library version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_6.yml b/src/licensedcode/data/rules/libpng-v2_6.yml deleted file mode 100644 index 6dcdf594613..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng-v2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng-v2_7.RULE b/src/licensedcode/data/rules/libpng-v2_7.RULE index a5bb95f394e..280e7ba921f 100644 --- a/src/licensedcode/data/rules/libpng-v2_7.RULE +++ b/src/licensedcode/data/rules/libpng-v2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng-v2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: libpng-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_7.yml b/src/licensedcode/data/rules/libpng-v2_7.yml deleted file mode 100644 index 6dcdf594613..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng-v2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng-v2_8.RULE b/src/licensedcode/data/rules/libpng-v2_8.RULE index a639205dcd9..40bf5a3df9b 100644 --- a/src/licensedcode/data/rules/libpng-v2_8.RULE +++ b/src/licensedcode/data/rules/libpng-v2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/libpng-2.0 +--- + https://licenses.nuget.org/libpng-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_8.yml b/src/licensedcode/data/rules/libpng-v2_8.yml deleted file mode 100644 index 65d741510fa..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/libpng-2.0 diff --git a/src/licensedcode/data/rules/libpng-v2_9.RULE b/src/licensedcode/data/rules/libpng-v2_9.RULE index ceaf39ddbde..d44ab525447 100644 --- a/src/licensedcode/data/rules/libpng-v2_9.RULE +++ b/src/licensedcode/data/rules/libpng-v2_9.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/libpng-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_9.yml b/src/licensedcode/data/rules/libpng-v2_9.yml deleted file mode 100644 index 68cfe77509c..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng-v2_url_1.RULE b/src/licensedcode/data/rules/libpng-v2_url_1.RULE index 0f62b02875d..c00de81c158 100644 --- a/src/licensedcode/data/rules/libpng-v2_url_1.RULE +++ b/src/licensedcode/data/rules/libpng-v2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/libpng-2.0 +--- + https://spdx.org/licenses/libpng-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_url_1.yml b/src/licensedcode/data/rules/libpng-v2_url_1.yml deleted file mode 100644 index b090216bda8..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/libpng-2.0 diff --git a/src/licensedcode/data/rules/libpng-v2_url_2.RULE b/src/licensedcode/data/rules/libpng-v2_url_2.RULE index a491ce6f9c1..069a9171ee3 100644 --- a/src/licensedcode/data/rules/libpng-v2_url_2.RULE +++ b/src/licensedcode/data/rules/libpng-v2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng-v2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/libpng-2.0.html +--- + https://spdx.org/licenses/libpng-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng-v2_url_2.yml b/src/licensedcode/data/rules/libpng-v2_url_2.yml deleted file mode 100644 index a6dab9f79a0..00000000000 --- a/src/licensedcode/data/rules/libpng-v2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng-v2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/libpng-2.0.html diff --git a/src/licensedcode/data/rules/libpng.SPDX.RULE b/src/licensedcode/data/rules/libpng.SPDX.RULE index 7c4c023f0d3..1526b8c0fbd 100644 --- a/src/licensedcode/data/rules/libpng.SPDX.RULE +++ b/src/licensedcode/data/rules/libpng.SPDX.RULE @@ -1,3 +1,20 @@ +--- +license_expression: libpng +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1996, 1997 Andreas Dilger + - Copyright (c) 1998, 1999 Glenn Randers-Pehrson + - Copyright (c) 2000-2002 Glenn Randers-Pehrson + - Copyright (c) 2004, 2006-2010 Glenn Randers-Pehrson +ignorable_holders: + - Andreas Dilger + - Glenn Randers-Pehrson + - Guy Eric Schalnat, Group 42, Inc. +--- + This copy of the libpng notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file png.h that is included in the libpng distribution, the latter shall prevail. diff --git a/src/licensedcode/data/rules/libpng.SPDX.yml b/src/licensedcode/data/rules/libpng.SPDX.yml deleted file mode 100644 index 2028a64ceec..00000000000 --- a/src/licensedcode/data/rules/libpng.SPDX.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: libpng -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. - - Copyright (c) 1996, 1997 Andreas Dilger - - Copyright (c) 1998, 1999 Glenn Randers-Pehrson - - Copyright (c) 2000-2002 Glenn Randers-Pehrson - - Copyright (c) 2004, 2006-2010 Glenn Randers-Pehrson -ignorable_holders: - - Andreas Dilger - - Glenn Randers-Pehrson - - Guy Eric Schalnat, Group 42, Inc. diff --git a/src/licensedcode/data/rules/libpng_1.RULE b/src/licensedcode/data/rules/libpng_1.RULE index 4f866ea2f77..7fe0b868bf2 100644 --- a/src/licensedcode/data/rules/libpng_1.RULE +++ b/src/licensedcode/data/rules/libpng_1.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +--- + libpng License \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_1.yml b/src/licensedcode/data/rules/libpng_1.yml deleted file mode 100644 index ca6d4a05805..00000000000 --- a/src/licensedcode/data/rules/libpng_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_10.RULE b/src/licensedcode/data/rules/libpng_10.RULE index d7d72add0dd..a5465ba301f 100644 --- a/src/licensedcode/data/rules/libpng_10.RULE +++ b/src/licensedcode/data/rules/libpng_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: libpng +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000-2002, 2004, 2006-2016 Glenn Randers-Pehrson +ignorable_holders: + - Glenn Randers-Pehrson +--- + This copy of the libpng notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file png.h that is included in the libpng distribution, the latter shall prevail. COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: @@ -19,4 +28,4 @@ OSI CERTIFICATION: Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a certification mark of the Open Source Initiative. OSI has not addressed the additional disclaimers inserted at version 1.0.7. EXPORT CONTROL: -The Copyright owner believes that the Export Control Classification Number (ECCN) for libpng is EAR99, which means not subject to export controls or International Traffic in Arms Regulations (ITAR) because it is open source, publicly available software, that does not contain any encryption software. See the EAR, paragraphs 734.3(b)(3) and 734.7(b). +The Copyright owner believes that the Export Control Classification Number (ECCN) for libpng is EAR99, which means not subject to export controls or International Traffic in Arms Regulations (ITAR) because it is open source, publicly available software, that does not contain any encryption software. See the EAR, paragraphs 734.3(b)(3) and 734.7(b). \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_10.yml b/src/licensedcode/data/rules/libpng_10.yml deleted file mode 100644 index 98ec0fd7e1e..00000000000 --- a/src/licensedcode/data/rules/libpng_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000-2002, 2004, 2006-2016 Glenn Randers-Pehrson -ignorable_holders: - - Glenn Randers-Pehrson diff --git a/src/licensedcode/data/rules/libpng_11.RULE b/src/licensedcode/data/rules/libpng_11.RULE index 47d5fb00643..74685c50e56 100644 --- a/src/licensedcode/data/rules/libpng_11.RULE +++ b/src/licensedcode/data/rules/libpng_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: libpng +is_license_text: yes +--- + The PNG Reference Library is supplied "AS IS". The Contributing Authors and Group 42, Inc. disclaim all warranties, expressed or implied, including, without limitation, the warranties of merchantability and of fitness for any purpose. The Contributing Authors and Group 42, Inc. assume no liability for direct, indirect, incidental, special, exemplary, or consequential damages, which may result from the use of the PNG Reference Library, even if advised of the possibility of such damage. Permission is hereby granted to use, copy, modify, and distribute this source code, or portions hereof, for any purpose, without fee, subject to the following restrictions: @@ -12,4 +17,4 @@ OSI CERTIFICATION: Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a certification mark of the Open Source Initiative. OSI has not addressed the additional disclaimers inserted at version 1.0.7. EXPORT CONTROL: -The Copyright owner believes that the Export Control Classification Number (ECCN) for libpng is EAR99, which means not subject to export controls or International Traffic in Arms Regulations (ITAR) because it is open source, publicly available software, that does not contain any encryption software. See the EAR, paragraphs 734.3(b)(3) and 734.7(b). +The Copyright owner believes that the Export Control Classification Number (ECCN) for libpng is EAR99, which means not subject to export controls or International Traffic in Arms Regulations (ITAR) because it is open source, publicly available software, that does not contain any encryption software. See the EAR, paragraphs 734.3(b)(3) and 734.7(b). \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_11.yml b/src/licensedcode/data/rules/libpng_11.yml deleted file mode 100644 index 21f0b837e7a..00000000000 --- a/src/licensedcode/data/rules/libpng_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: libpng -is_license_text: yes diff --git a/src/licensedcode/data/rules/libpng_12.RULE b/src/licensedcode/data/rules/libpng_12.RULE index 07c2c7937fa..cdffa9e0392 100644 --- a/src/licensedcode/data/rules/libpng_12.RULE +++ b/src/licensedcode/data/rules/libpng_12.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - png.h +--- + For conditions of distribution and use, see copyright notice in png.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_12.yml b/src/licensedcode/data/rules/libpng_12.yml deleted file mode 100644 index edea001c543..00000000000 --- a/src/licensedcode/data/rules/libpng_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - png.h diff --git a/src/licensedcode/data/rules/libpng_13.RULE b/src/licensedcode/data/rules/libpng_13.RULE index 0ae372ddb88..d1b90e616b6 100644 --- a/src/licensedcode/data/rules/libpng_13.RULE +++ b/src/licensedcode/data/rules/libpng_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: libpng +is_license_text: yes +relevance: 99 +--- + The PNG Reference Library is supplied "AS IS". The Contributing Authors and Group 42, Inc. disclaim all warranties, expressed or implied, including, without limitation, the warranties of merchantability and of diff --git a/src/licensedcode/data/rules/libpng_13.yml b/src/licensedcode/data/rules/libpng_13.yml deleted file mode 100644 index c97728defcc..00000000000 --- a/src/licensedcode/data/rules/libpng_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/libpng_14.RULE b/src/licensedcode/data/rules/libpng_14.RULE index 7fd66686ba0..41b8cb77b85 100644 --- a/src/licensedcode/data/rules/libpng_14.RULE +++ b/src/licensedcode/data/rules/libpng_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 90 +minimum_coverage: 60 +notes: this is based on but not exactly libpng +--- + // This computer program source file is supplied "AS IS". (hereinafter referred to as "Author") disclaims all warranties, // expressed or implied, including, without limitation, the warranties diff --git a/src/licensedcode/data/rules/libpng_14.yml b/src/licensedcode/data/rules/libpng_14.yml deleted file mode 100644 index f10ae6b3186..00000000000 --- a/src/licensedcode/data/rules/libpng_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 90 -minimum_coverage: 60 -notes: this is based on but not exactly libpng diff --git a/src/licensedcode/data/rules/libpng_15.RULE b/src/licensedcode/data/rules/libpng_15.RULE index 7fea8d869fb..d4a2a2a74a5 100644 --- a/src/licensedcode/data/rules/libpng_15.RULE +++ b/src/licensedcode/data/rules/libpng_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 90 +notes: this is based on but not exactly libpng +--- + // COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: // diff --git a/src/licensedcode/data/rules/libpng_15.yml b/src/licensedcode/data/rules/libpng_15.yml deleted file mode 100644 index dda5c02cc83..00000000000 --- a/src/licensedcode/data/rules/libpng_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 90 -notes: this is based on but not exactly libpng diff --git a/src/licensedcode/data/rules/libpng_16.RULE b/src/licensedcode/data/rules/libpng_16.RULE index 8224117dfe6..3806a865f29 100644 --- a/src/licensedcode/data/rules/libpng_16.RULE +++ b/src/licensedcode/data/rules/libpng_16.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +--- + released under the libpng license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_16.yml b/src/licensedcode/data/rules/libpng_16.yml deleted file mode 100644 index 2af598d9484..00000000000 --- a/src/licensedcode/data/rules/libpng_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_17.RULE b/src/licensedcode/data/rules/libpng_17.RULE index a65029180e5..9f0ded9e257 100644 --- a/src/licensedcode/data/rules/libpng_17.RULE +++ b/src/licensedcode/data/rules/libpng_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +--- + This document is released under the libpng license. For conditions of distribution and use, see the disclaimer -and license in png.h. +and license in png.h. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_17.yml b/src/licensedcode/data/rules/libpng_17.yml deleted file mode 100644 index 2af598d9484..00000000000 --- a/src/licensedcode/data/rules/libpng_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_18.RULE b/src/licensedcode/data/rules/libpng_18.RULE index 504ac732c46..15228ce9d56 100644 --- a/src/licensedcode/data/rules/libpng_18.RULE +++ b/src/licensedcode/data/rules/libpng_18.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +referenced_filenames: + - libpng/LICENSE +--- + The license and copyright notes can be found in libpng/LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_18.yml b/src/licensedcode/data/rules/libpng_18.yml deleted file mode 100644 index 387e0dc86c7..00000000000 --- a/src/licensedcode/data/rules/libpng_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 -referenced_filenames: - - libpng/LICENSE diff --git a/src/licensedcode/data/rules/libpng_19.RULE b/src/licensedcode/data/rules/libpng_19.RULE index 358a1ac72d4..5a97ac7f02e 100644 --- a/src/licensedcode/data/rules/libpng_19.RULE +++ b/src/licensedcode/data/rules/libpng_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +referenced_filenames: + - png.h +--- + This code is released under the libpng license. For conditions of distribution and use, see the disclaimer and license in png.h diff --git a/src/licensedcode/data/rules/libpng_19.yml b/src/licensedcode/data/rules/libpng_19.yml deleted file mode 100644 index b0a62d2940a..00000000000 --- a/src/licensedcode/data/rules/libpng_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 -referenced_filenames: - - png.h diff --git a/src/licensedcode/data/rules/libpng_2.RULE b/src/licensedcode/data/rules/libpng_2.RULE index 80f9cda8a16..eba15527e7c 100644 --- a/src/licensedcode/data/rules/libpng_2.RULE +++ b/src/licensedcode/data/rules/libpng_2.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://libpng.org/pub/png/src/libpng-LICENSE.txt +--- + http://libpng.org/pub/png/src/libpng-LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_2.yml b/src/licensedcode/data/rules/libpng_2.yml deleted file mode 100644 index b252f9b3341..00000000000 --- a/src/licensedcode/data/rules/libpng_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://libpng.org/pub/png/src/libpng-LICENSE.txt diff --git a/src/licensedcode/data/rules/libpng_20.RULE b/src/licensedcode/data/rules/libpng_20.RULE index bfe1c947286..afbd62c506f 100644 --- a/src/licensedcode/data/rules/libpng_20.RULE +++ b/src/licensedcode/data/rules/libpng_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +--- + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: If you modify libpng you may insert additional notices immediately following diff --git a/src/licensedcode/data/rules/libpng_20.yml b/src/licensedcode/data/rules/libpng_20.yml deleted file mode 100644 index 2af598d9484..00000000000 --- a/src/licensedcode/data/rules/libpng_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_21.RULE b/src/licensedcode/data/rules/libpng_21.RULE index 3e401207e26..baab98f2d9d 100644 --- a/src/licensedcode/data/rules/libpng_21.RULE +++ b/src/licensedcode/data/rules/libpng_21.RULE @@ -1,2 +1,8 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +--- + and are distributed according to the same disclaimer and license as libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_21.yml b/src/licensedcode/data/rules/libpng_21.yml deleted file mode 100644 index ca6d4a05805..00000000000 --- a/src/licensedcode/data/rules/libpng_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_22.RULE b/src/licensedcode/data/rules/libpng_22.RULE index c58fa43e595..0669ac95e4f 100644 --- a/src/licensedcode/data/rules/libpng_22.RULE +++ b/src/licensedcode/data/rules/libpng_22.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +--- + derived from libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_22.yml b/src/licensedcode/data/rules/libpng_22.yml deleted file mode 100644 index ca6d4a05805..00000000000 --- a/src/licensedcode/data/rules/libpng_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_23.RULE b/src/licensedcode/data/rules/libpng_23.RULE index c9c3cadb191..e69bad9a21d 100644 --- a/src/licensedcode/data/rules/libpng_23.RULE +++ b/src/licensedcode/data/rules/libpng_23.RULE @@ -1,3 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +--- + derived from libpng and are distributed according to the same disclaimer and license as libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_23.yml b/src/licensedcode/data/rules/libpng_23.yml deleted file mode 100644 index ca6d4a05805..00000000000 --- a/src/licensedcode/data/rules/libpng_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_24.RULE b/src/licensedcode/data/rules/libpng_24.RULE index 51427ec29fa..bb80cd1283a 100644 --- a/src/licensedcode/data/rules/libpng_24.RULE +++ b/src/licensedcode/data/rules/libpng_24.RULE @@ -1,2 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +--- + Some files in the "scripts" directory have other copyright owners but are released under this license. libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_24.yml b/src/licensedcode/data/rules/libpng_24.yml deleted file mode 100644 index 2f5a421afa6..00000000000 --- a/src/licensedcode/data/rules/libpng_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/libpng_25.RULE b/src/licensedcode/data/rules/libpng_25.RULE index 454c095438e..d7ad319b23a 100644 --- a/src/licensedcode/data/rules/libpng_25.RULE +++ b/src/licensedcode/data/rules/libpng_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: libpng +is_license_text: yes +relevance: 99 +--- + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: For the purposes of this copyright and license, Contributing Authors is defined as the following set of individuals: Andreas Dilger, Dave Martindale, Guy Eric Schalnat, Paul Schmidt, Tim Wegner. diff --git a/src/licensedcode/data/rules/libpng_25.yml b/src/licensedcode/data/rules/libpng_25.yml deleted file mode 100644 index c97728defcc..00000000000 --- a/src/licensedcode/data/rules/libpng_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/libpng_26.RULE b/src/licensedcode/data/rules/libpng_26.RULE index c85531bc839..24b0e78b7c6 100644 --- a/src/licensedcode/data/rules/libpng_26.RULE +++ b/src/licensedcode/data/rules/libpng_26.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +--- + Parts of this software have been adapted from the libpng package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_26.yml b/src/licensedcode/data/rules/libpng_26.yml deleted file mode 100644 index 2af598d9484..00000000000 --- a/src/licensedcode/data/rules/libpng_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_27.RULE b/src/licensedcode/data/rules/libpng_27.RULE index 360ce14bf4e..cddd638d482 100644 --- a/src/licensedcode/data/rules/libpng_27.RULE +++ b/src/licensedcode/data/rules/libpng_27.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +--- + This code is released under the libpng license (See LICENSE, below) \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_27.yml b/src/licensedcode/data/rules/libpng_27.yml deleted file mode 100644 index 2af598d9484..00000000000 --- a/src/licensedcode/data/rules/libpng_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_28.RULE b/src/licensedcode/data/rules/libpng_28.RULE index beac94054d4..e135458a911 100644 --- a/src/licensedcode/data/rules/libpng_28.RULE +++ b/src/licensedcode/data/rules/libpng_28.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This code is released under the libpng license (See LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_28.yml b/src/licensedcode/data/rules/libpng_28.yml deleted file mode 100644 index 5c46442c0ab..00000000000 --- a/src/licensedcode/data/rules/libpng_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/libpng_29.RULE b/src/licensedcode/data/rules/libpng_29.RULE index 83603742a20..a0740231113 100644 --- a/src/licensedcode/data/rules/libpng_29.RULE +++ b/src/licensedcode/data/rules/libpng_29.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released under the libpng license (See LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_29.yml b/src/licensedcode/data/rules/libpng_29.yml deleted file mode 100644 index 5c46442c0ab..00000000000 --- a/src/licensedcode/data/rules/libpng_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/libpng_3.RULE b/src/licensedcode/data/rules/libpng_3.RULE index b45d3817ae2..b00d5e46180 100644 --- a/src/licensedcode/data/rules/libpng_3.RULE +++ b/src/licensedcode/data/rules/libpng_3.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.libpng.org/pub/png/src/libpng-LICENSE.txt +--- + http://www.libpng.org/pub/png/src/libpng-LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_3.yml b/src/licensedcode/data/rules/libpng_3.yml deleted file mode 100644 index f500b8fefbf..00000000000 --- a/src/licensedcode/data/rules/libpng_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.libpng.org/pub/png/src/libpng-LICENSE.txt diff --git a/src/licensedcode/data/rules/libpng_30.RULE b/src/licensedcode/data/rules/libpng_30.RULE index 07f647968d2..8e5175d3c70 100644 --- a/src/licensedcode/data/rules/libpng_30.RULE +++ b/src/licensedcode/data/rules/libpng_30.RULE @@ -1,3 +1,9 @@ +--- +license_expression: libpng +is_license_text: yes +relevance: 100 +--- + The software is supplied "as is", without warranty of any kind, express or implied, including, without limitation, the warranties of merchantability, fitness for a particular purpose, title, and diff --git a/src/licensedcode/data/rules/libpng_30.yml b/src/licensedcode/data/rules/libpng_30.yml deleted file mode 100644 index 62d012df47c..00000000000 --- a/src/licensedcode/data/rules/libpng_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_31.RULE b/src/licensedcode/data/rules/libpng_31.RULE index b63632ef38e..0d6f0d55d29 100644 --- a/src/licensedcode/data/rules/libpng_31.RULE +++ b/src/licensedcode/data/rules/libpng_31.RULE @@ -1,3 +1,18 @@ +--- +license_expression: libpng +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1996-1997 Andreas Dilger + - Copyright (c) 1998-2000 Glenn Randers-Pehrson + - Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson +ignorable_holders: + - Andreas Dilger + - Glenn Randers-Pehrson + - Guy Eric Schalnat, Group 42, Inc. +--- + libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are derived from libpng-1.0.6, and are distributed according to the same diff --git a/src/licensedcode/data/rules/libpng_31.yml b/src/licensedcode/data/rules/libpng_31.yml deleted file mode 100644 index c7794b6a430..00000000000 --- a/src/licensedcode/data/rules/libpng_31.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: libpng -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. - - Copyright (c) 1996-1997 Andreas Dilger - - Copyright (c) 1998-2000 Glenn Randers-Pehrson - - Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson -ignorable_holders: - - Andreas Dilger - - Glenn Randers-Pehrson - - Guy Eric Schalnat, Group 42, Inc. diff --git a/src/licensedcode/data/rules/libpng_32.RULE b/src/licensedcode/data/rules/libpng_32.RULE index 7ad640e68c8..3c03fc81aa5 100644 --- a/src/licensedcode/data/rules/libpng_32.RULE +++ b/src/licensedcode/data/rules/libpng_32.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: libpng License \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_32.yml b/src/licensedcode/data/rules/libpng_32.yml deleted file mode 100644 index d683d63d221..00000000000 --- a/src/licensedcode/data/rules/libpng_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng_33.RULE b/src/licensedcode/data/rules/libpng_33.RULE index af8acf74b67..ddb88f55de1 100644 --- a/src/licensedcode/data/rules/libpng_33.RULE +++ b/src/licensedcode/data/rules/libpng_33.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Libpng libpng License \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_33.yml b/src/licensedcode/data/rules/libpng_33.yml deleted file mode 100644 index d683d63d221..00000000000 --- a/src/licensedcode/data/rules/libpng_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng_34.RULE b/src/licensedcode/data/rules/libpng_34.RULE index cae08172e34..cb2ad3198fe 100644 --- a/src/licensedcode/data/rules/libpng_34.RULE +++ b/src/licensedcode/data/rules/libpng_34.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + libpng License Libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_34.yml b/src/licensedcode/data/rules/libpng_34.yml deleted file mode 100644 index d683d63d221..00000000000 --- a/src/licensedcode/data/rules/libpng_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng_35.RULE b/src/licensedcode/data/rules/libpng_35.RULE index eee889ce037..378df74ede9 100644 --- a/src/licensedcode/data/rules/libpng_35.RULE +++ b/src/licensedcode/data/rules/libpng_35.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_35.yml b/src/licensedcode/data/rules/libpng_35.yml deleted file mode 100644 index 9425db9301e..00000000000 --- a/src/licensedcode/data/rules/libpng_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng_36.RULE b/src/licensedcode/data/rules/libpng_36.RULE index 0681a46f285..c79356b7952 100644 --- a/src/licensedcode/data/rules/libpng_36.RULE +++ b/src/licensedcode/data/rules/libpng_36.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: libpng License \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_36.yml b/src/licensedcode/data/rules/libpng_36.yml deleted file mode 100644 index 9425db9301e..00000000000 --- a/src/licensedcode/data/rules/libpng_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng_37.RULE b/src/licensedcode/data/rules/libpng_37.RULE index 5fe18df241b..4a9081415ad 100644 --- a/src/licensedcode/data/rules/libpng_37.RULE +++ b/src/licensedcode/data/rules/libpng_37.RULE @@ -1 +1,10 @@ +--- +license_expression: libpng +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_37.yml b/src/licensedcode/data/rules/libpng_37.yml deleted file mode 100644 index 9425db9301e..00000000000 --- a/src/licensedcode/data/rules/libpng_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libpng -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libpng_38.RULE b/src/licensedcode/data/rules/libpng_38.RULE index 33577ba8a73..c8f59adaa81 100644 --- a/src/licensedcode/data/rules/libpng_38.RULE +++ b/src/licensedcode/data/rules/libpng_38.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Libpng +--- + https://licenses.nuget.org/Libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_38.yml b/src/licensedcode/data/rules/libpng_38.yml deleted file mode 100644 index 47803b15c3d..00000000000 --- a/src/licensedcode/data/rules/libpng_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Libpng diff --git a/src/licensedcode/data/rules/libpng_39.RULE b/src/licensedcode/data/rules/libpng_39.RULE index 926a95976b9..b5e79d5a1ea 100644 --- a/src/licensedcode/data/rules/libpng_39.RULE +++ b/src/licensedcode/data/rules/libpng_39.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_39.yml b/src/licensedcode/data/rules/libpng_39.yml deleted file mode 100644 index ca6d4a05805..00000000000 --- a/src/licensedcode/data/rules/libpng_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_4.RULE b/src/licensedcode/data/rules/libpng_4.RULE index 0a88fe7411c..ca59557bafb 100644 --- a/src/licensedcode/data/rules/libpng_4.RULE +++ b/src/licensedcode/data/rules/libpng_4.RULE @@ -1,3 +1,18 @@ +--- +license_expression: libpng +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + - Copyright (c) 1996, 1997 Andreas Dilger + - Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson + - Copyright (c) 2000-2002 Glenn Randers-Pehrson + - Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson +ignorable_holders: + - Andreas Dilger + - Glenn Randers-Pehrson + - Guy Eric Schalnat, Group 42, Inc. +--- + //* * COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: * @@ -87,4 +102,4 @@ * supporting the PNG file format in commercial products. If you use this * source code in a product, acknowledgment is not required but would be * appreciated. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_4.yml b/src/licensedcode/data/rules/libpng_4.yml deleted file mode 100644 index 2ab0148fad5..00000000000 --- a/src/licensedcode/data/rules/libpng_4.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: libpng -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. - - Copyright (c) 1996, 1997 Andreas Dilger - - Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson - - Copyright (c) 2000-2002 Glenn Randers-Pehrson - - Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson -ignorable_holders: - - Andreas Dilger - - Glenn Randers-Pehrson - - Guy Eric Schalnat, Group 42, Inc. diff --git a/src/licensedcode/data/rules/libpng_40.RULE b/src/licensedcode/data/rules/libpng_40.RULE index eaed0ec2c4f..81ca939d70c 100644 --- a/src/licensedcode/data/rules/libpng_40.RULE +++ b/src/licensedcode/data/rules/libpng_40.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Libpng +--- + LICENSE {{Libpng}} https://spdx.org/licenses/Libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_40.yml b/src/licensedcode/data/rules/libpng_40.yml deleted file mode 100644 index e8c0537dab9..00000000000 --- a/src/licensedcode/data/rules/libpng_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Libpng diff --git a/src/licensedcode/data/rules/libpng_41.RULE b/src/licensedcode/data/rules/libpng_41.RULE index ef29e4b2582..faf25b33fb5 100644 --- a/src/licensedcode/data/rules/libpng_41.RULE +++ b/src/licensedcode/data/rules/libpng_41.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Libpng +--- + {{Libpng}} https://spdx.org/licenses/Libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_41.yml b/src/licensedcode/data/rules/libpng_41.yml deleted file mode 100644 index e8c0537dab9..00000000000 --- a/src/licensedcode/data/rules/libpng_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Libpng diff --git a/src/licensedcode/data/rules/libpng_5.RULE b/src/licensedcode/data/rules/libpng_5.RULE index ca77df93b72..d3ed60fc781 100644 --- a/src/licensedcode/data/rules/libpng_5.RULE +++ b/src/licensedcode/data/rules/libpng_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: libpng +is_license_text: yes +--- + This software and documentation is provided "as is," and the copyright holders and contributing author(s) make no representations or warranties, express or implied, including but not limited to, warranties of @@ -23,4 +28,4 @@ purpose, without fee, subject to the following restrictions: The copyright holders and contributing author(s) specifically permit, without fee, and encourage the use of this source code as a component for supporting image processing in commercial products. If you use this -source code in a product, acknowledgment is not required but would be +source code in a product, acknowledgment is not required but would be \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_5.yml b/src/licensedcode/data/rules/libpng_5.yml deleted file mode 100644 index 21f0b837e7a..00000000000 --- a/src/licensedcode/data/rules/libpng_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: libpng -is_license_text: yes diff --git a/src/licensedcode/data/rules/libpng_6.RULE b/src/licensedcode/data/rules/libpng_6.RULE index 075144173d5..49e7b23cff5 100644 --- a/src/licensedcode/data/rules/libpng_6.RULE +++ b/src/licensedcode/data/rules/libpng_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: libpng +is_license_text: yes +--- + This software and documentation is provided "as is," and the copyright holders and contributing author(s) make no representations or warranties, express or implied, including but not limited to, warranties of merchantability or fitness @@ -23,4 +28,4 @@ altered source distribution. The copyright holders and contributing author(s) specifically permit, without fee, and encourage the use of this source code as a component for supporting the Hypertext Markup Language in commercial products. If you use this source code in -a product, acknowledgment is not required but would be appreciated. +a product, acknowledgment is not required but would be appreciated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_6.yml b/src/licensedcode/data/rules/libpng_6.yml deleted file mode 100644 index 21f0b837e7a..00000000000 --- a/src/licensedcode/data/rules/libpng_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: libpng -is_license_text: yes diff --git a/src/licensedcode/data/rules/libpng_7.RULE b/src/licensedcode/data/rules/libpng_7.RULE index 4301b06e932..5ccf19a784d 100644 --- a/src/licensedcode/data/rules/libpng_7.RULE +++ b/src/licensedcode/data/rules/libpng_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: libpng +is_license_notice: yes +--- + This copy of the libpng notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file png.h that is included in the libpng distribution, the latter shall prevail. COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: -This code is released under the libpng license. +This code is released under the libpng license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_7.yml b/src/licensedcode/data/rules/libpng_7.yml deleted file mode 100644 index 7ad6200ff72..00000000000 --- a/src/licensedcode/data/rules/libpng_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: libpng -is_license_notice: yes diff --git a/src/licensedcode/data/rules/libpng_8.RULE b/src/licensedcode/data/rules/libpng_8.RULE index f4c2f849683..aee546478eb 100644 --- a/src/licensedcode/data/rules/libpng_8.RULE +++ b/src/licensedcode/data/rules/libpng_8.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng +is_license_notice: yes +relevance: 100 +--- + This code is released under the libpng license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_8.yml b/src/licensedcode/data/rules/libpng_8.yml deleted file mode 100644 index 2af598d9484..00000000000 --- a/src/licensedcode/data/rules/libpng_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_9.RULE b/src/licensedcode/data/rules/libpng_9.RULE index 1587aa08347..4832feb9845 100644 --- a/src/licensedcode/data/rules/libpng_9.RULE +++ b/src/licensedcode/data/rules/libpng_9.RULE @@ -1 +1,7 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 100 +--- + are distributed according to the same disclaimer and license as libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_9.yml b/src/licensedcode/data/rules/libpng_9.yml deleted file mode 100644 index ca6d4a05805..00000000000 --- a/src/licensedcode/data/rules/libpng_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_1.RULE index 27054fcf313..68aafa52ab2 100644 --- a/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: libpng AND apache-2.0 AND bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_copyrights: + - copyright Glenn Randers-Pehrson +ignorable_holders: + - Glenn Randers-Pehrson +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://cs.chromium.org/chromium/src/LICENSE + - https://github.com/google/oss-fuzz/tree/master/projects/libpng +--- + This code is released under the libpng license. For conditions of distribution and use, see the disclaimer and license in png.h @@ -14,4 +29,4 @@ If they have been modified, the derivatives are copyright Glenn Randers-Pehrson and are released under the same licenses as the originals. Several of the original files (libpng_read_fuzzer.options, png.dict, project.yaml) had no licensing information; we assumed that these were under the Chromium -license. Any new files are released under the libpng license (see png.h). +license. Any new files are released under the libpng license (see png.h). \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_1.yml deleted file mode 100644 index 1dfa61ba6f9..00000000000 --- a/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: libpng AND apache-2.0 AND bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_copyrights: - - copyright Glenn Randers-Pehrson -ignorable_holders: - - Glenn Randers-Pehrson -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://cs.chromium.org/chromium/src/LICENSE - - https://github.com/google/oss-fuzz/tree/master/projects/libpng diff --git a/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_2.RULE b/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_2.RULE index b8b1266469d..f9902968f22 100644 --- a/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_2.RULE @@ -1,3 +1,18 @@ +--- +license_expression: libpng AND apache-2.0 AND bsd-new +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_copyrights: + - copyright Glenn Randers-Pehrson +ignorable_holders: + - Glenn Randers-Pehrson +ignorable_urls: + - https://cs.chromium.org/chromium/src/LICENSE + - https://github.com/google/oss-fuzz/tree/master/projects/libpng + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This code is released under the libpng license. For conditions of distribution and use, see the disclaimer and license in png.h @@ -14,4 +29,4 @@ If they have been modified, the derivatives are copyright Glenn Randers-Pehrson and are released under the same licenses as the originals. Several of the original files (libpng_read_fuzzer.options, png.dict, project.yaml) had no licensing information; we assumed that these were under the Chromium -license. Any new files are released under the libpng license (see png.h). +license. Any new files are released under the libpng license (see png.h). \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_2.yml b/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_2.yml deleted file mode 100644 index 41f760b0cf2..00000000000 --- a/src/licensedcode/data/rules/libpng_and_apache-2.0_and_bsd-new_2.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: libpng AND apache-2.0 AND bsd-new -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_copyrights: - - copyright Glenn Randers-Pehrson -ignorable_holders: - - Glenn Randers-Pehrson -ignorable_urls: - - https://cs.chromium.org/chromium/src/LICENSE - - https://github.com/google/oss-fuzz/tree/master/projects/libpng - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/libpng_and_cc0-1.0_1.RULE b/src/licensedcode/data/rules/libpng_and_cc0-1.0_1.RULE index 7d9f218a2b0..6b5967efbc1 100644 --- a/src/licensedcode/data/rules/libpng_and_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/libpng_and_cc0-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: libpng AND cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0/ +--- + * LICENSING * ========= * @@ -12,4 +20,4 @@ * symbol 0xA9U (\251) in ISO-Latin-1 encoding and 0xC20xA9 (\302\251) in UTF-8. */ define IMAGE_LICENSING "Dedicated to the public domain per Creative Commons "\ - "license \"CC0 1.0\"; https://creativecommons.org/publicdomain/zero/1.0/" + "license \"CC0 1.0\"; https://creativecommons.org/publicdomain/zero/1.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_and_cc0-1.0_1.yml b/src/licensedcode/data/rules/libpng_and_cc0-1.0_1.yml deleted file mode 100644 index c547f24937d..00000000000 --- a/src/licensedcode/data/rules/libpng_and_cc0-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng AND cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/libpng_url_1.RULE b/src/licensedcode/data/rules/libpng_url_1.RULE index 33b2cf3c364..5ef3dfd232d 100644 --- a/src/licensedcode/data/rules/libpng_url_1.RULE +++ b/src/licensedcode/data/rules/libpng_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/libpng +--- + https://spdx.org/licenses/libpng \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_url_1.yml b/src/licensedcode/data/rules/libpng_url_1.yml deleted file mode 100644 index 853c37ead0b..00000000000 --- a/src/licensedcode/data/rules/libpng_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/libpng diff --git a/src/licensedcode/data/rules/libpng_url_2.RULE b/src/licensedcode/data/rules/libpng_url_2.RULE index 6336b76fb5e..780bf690e8d 100644 --- a/src/licensedcode/data/rules/libpng_url_2.RULE +++ b/src/licensedcode/data/rules/libpng_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: libpng +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/libpng.html +--- + https://spdx.org/licenses/libpng.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/libpng_url_2.yml b/src/licensedcode/data/rules/libpng_url_2.yml deleted file mode 100644 index f8fceac9db2..00000000000 --- a/src/licensedcode/data/rules/libpng_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libpng -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/libpng.html diff --git a/src/licensedcode/data/rules/librejs_apache-2.0_1.RULE b/src/licensedcode/data/rules/librejs_apache-2.0_1.RULE index 9b5ede4e86a..2ded3f2a868 100644 --- a/src/licensedcode/data/rules/librejs_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/librejs_apache-2.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +notes: from librejs +--- + @license magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn=apache-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_apache-2.0_1.yml b/src/licensedcode/data/rules/librejs_apache-2.0_1.yml deleted file mode 100644 index 1972a5c15ee..00000000000 --- a/src/licensedcode/data/rules/librejs_apache-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -notes: from librejs diff --git a/src/licensedcode/data/rules/librejs_apache-2.0_2.RULE b/src/licensedcode/data/rules/librejs_apache-2.0_2.RULE index 588fa7c3a19..199107ac94c 100644 --- a/src/licensedcode/data/rules/librejs_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/librejs_apache-2.0_2.RULE @@ -1 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +notes: from librejs +--- + magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn=apache-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_apache-2.0_2.yml b/src/licensedcode/data/rules/librejs_apache-2.0_2.yml deleted file mode 100644 index 1972a5c15ee..00000000000 --- a/src/licensedcode/data/rules/librejs_apache-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -notes: from librejs diff --git a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.RULE index 9169853f5d9..b844ffb781b 100644 --- a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +notes: from librejs +--- + @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.yml deleted file mode 100644 index a2d18586f62..00000000000 --- a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -notes: from librejs diff --git a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.RULE index 646180f4624..3cc55eaff0d 100644 --- a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +notes: from librejs +--- + magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.yml deleted file mode 100644 index a2d18586f62..00000000000 --- a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 -notes: from librejs diff --git a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.RULE index 56d94766e1a..d6a87ba0399 100644 --- a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.RULE @@ -1 +1,8 @@ -@license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3 +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +notes: from librejs +--- + +@license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.yml deleted file mode 100644 index 648a71ef603..00000000000 --- a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -notes: from librejs diff --git a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.RULE index ae6a871bd66..6db42919a94 100644 --- a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.RULE @@ -1 +1,8 @@ -magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3 +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +notes: from librejs +--- + +magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.yml b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.yml deleted file mode 100644 index 648a71ef603..00000000000 --- a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 -notes: from librejs diff --git a/src/licensedcode/data/rules/libselinux-pd_1.RULE b/src/licensedcode/data/rules/libselinux-pd_1.RULE index ff9a12e3da2..8ced2920b31 100644 --- a/src/licensedcode/data/rules/libselinux-pd_1.RULE +++ b/src/licensedcode/data/rules/libselinux-pd_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: libselinux-pd +is_license_text: yes +--- + This configuration is public domain, i.e. not copyrighted. Warranty Exclusion @@ -18,4 +23,4 @@ consequential, direct or indirect damages arising from the software or the use thereof, however caused and on any theory of liability. This limitation will apply even if NSA has been advised of the possibility of such damage. You acknowledge that this is a reasonable allocation of -risk. +risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/libselinux-pd_1.yml b/src/licensedcode/data/rules/libselinux-pd_1.yml deleted file mode 100644 index bbfe7500d82..00000000000 --- a/src/licensedcode/data/rules/libselinux-pd_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: libselinux-pd -is_license_text: yes diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_1.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_1.RULE index 804fa9f1af1..9bb31d9a801 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: libtool-exception-2.0 +is_license_text: yes +relevance: 99 +notes: this exception is usually for the GPL. But this is the LGPL that is referenced here. +--- + As a special exception to the GNU Lesser General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_1.yml b/src/licensedcode/data/rules/libtool-exception-2.0_1.yml deleted file mode 100644 index b115b80fe68..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_text: yes -relevance: 99 -notes: this exception is usually for the GPL. But this is the LGPL that is referenced here. diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_2.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_2.RULE index c6f8233452e..8565969ce82 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Libtool Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_2.yml b/src/licensedcode/data/rules/libtool-exception-2.0_2.yml deleted file mode 100644 index 745b83c0a53..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_3.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_3.RULE index f7a5679ef92..74d7a40b3a5 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Libtool-exception Libtool Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_3.yml b/src/licensedcode/data/rules/libtool-exception-2.0_3.yml deleted file mode 100644 index 745b83c0a53..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_4.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_4.RULE index ab30546cc55..65bb7d4a7f2 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: libtool-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Libtool-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_4.yml b/src/licensedcode/data/rules/libtool-exception-2.0_4.yml deleted file mode 100644 index 32cd86b13c3..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_5.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_5.RULE index 8c1aeb5a49f..eb0264afd0d 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: libtool-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Libtool-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_5.yml b/src/licensedcode/data/rules/libtool-exception-2.0_5.yml deleted file mode 100644 index 32cd86b13c3..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_6.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_6.RULE index 8009a9fcadc..3ff4531c162 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Libtool-exception +--- + https://licenses.nuget.org/Libtool-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_6.yml b/src/licensedcode/data/rules/libtool-exception-2.0_6.yml deleted file mode 100644 index a311212bac8..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Libtool-exception diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_7.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_7.RULE index 45a8734c9c8..b93a0a475ac 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Libtool-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_7.yml b/src/licensedcode/data/rules/libtool-exception-2.0_7.yml deleted file mode 100644 index 4099ad7babe..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_8.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_8.RULE index 873e6193d12..ef50dee9856 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Libtool-exception +--- + {{Libtool-exception}} https://spdx.org/licenses/Libtool-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_8.yml b/src/licensedcode/data/rules/libtool-exception-2.0_8.yml deleted file mode 100644 index b33093509f4..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Libtool-exception diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_9.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_9.RULE index f5e295a2b76..dfb9e0adbe8 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_9.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Libtool-exception +--- + LICENSE {{Libtool-exception}} https://spdx.org/licenses/Libtool-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_9.yml b/src/licensedcode/data/rules/libtool-exception-2.0_9.yml deleted file mode 100644 index b33093509f4..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Libtool-exception diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_url_1.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_url_1.RULE index d086c65cea8..8b7eec3a631 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/libtool-exception +--- + https://spdx.org/licenses/libtool-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_url_1.yml b/src/licensedcode/data/rules/libtool-exception-2.0_url_1.yml deleted file mode 100644 index 34caf2f46a2..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/libtool-exception diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_url_2.RULE b/src/licensedcode/data/rules/libtool-exception-2.0_url_2.RULE index 83d2f05a0d5..2bb1e5e5f0e 100644 --- a/src/licensedcode/data/rules/libtool-exception-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/libtool-exception-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/libtool-exception.html +--- + https://spdx.org/licenses/libtool-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/libtool-exception-2.0_url_2.yml b/src/licensedcode/data/rules/libtool-exception-2.0_url_2.yml deleted file mode 100644 index 122e07bb81c..00000000000 --- a/src/licensedcode/data/rules/libtool-exception-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/libtool-exception.html diff --git a/src/licensedcode/data/rules/libzip_1.RULE b/src/licensedcode/data/rules/libzip_1.RULE index ae303ff6872..911adafea19 100644 --- a/src/licensedcode/data/rules/libzip_1.RULE +++ b/src/licensedcode/data/rules/libzip_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new +is_license_text: yes +notes: used to be libzip, deprecated in favor of bsd-new See https://github.com/nexB/scancode-toolkit/issues/2995 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/libzip_1.yml b/src/licensedcode/data/rules/libzip_1.yml deleted file mode 100644 index cb1022d3269..00000000000 --- a/src/licensedcode/data/rules/libzip_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_text: yes -notes: used to be libzip, deprecated in favor of bsd-new - See https://github.com/nexB/scancode-toolkit/issues/2995 diff --git a/src/licensedcode/data/rules/license-intro_1.RULE b/src/licensedcode/data/rules/license-intro_1.RULE index 8be335dfed1..49b5fd1f637 100644 --- a/src/licensedcode/data/rules/license-intro_1.RULE +++ b/src/licensedcode/data/rules/license-intro_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +--- + Your use of the source code for the these subcomponents is subject to the terms and -conditions of the following licenses. \ No newline at end of file +conditions of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_1.yml b/src/licensedcode/data/rules/license-intro_1.yml deleted file mode 100644 index f9a9c1348ac..00000000000 --- a/src/licensedcode/data/rules/license-intro_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes diff --git a/src/licensedcode/data/rules/license-intro_10.RULE b/src/licensedcode/data/rules/license-intro_10.RULE index 38d99f846d1..d1d1b062bc8 100644 --- a/src/licensedcode/data/rules/license-intro_10.RULE +++ b/src/licensedcode/data/rules/license-intro_10.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Permission is granted to \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_10.yml b/src/licensedcode/data/rules/license-intro_10.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_11.RULE b/src/licensedcode/data/rules/license-intro_11.RULE index d101fc82fda..73b51b1f0ae 100644 --- a/src/licensedcode/data/rules/license-intro_11.RULE +++ b/src/licensedcode/data/rules/license-intro_11.RULE @@ -1 +1,7 @@ -Use of any of this software is governed by the terms of the license below: +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + +Use of any of this software is governed by the terms of the license below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_11.yml b/src/licensedcode/data/rules/license-intro_11.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_12.RULE b/src/licensedcode/data/rules/license-intro_12.RULE index cee926d3d93..7c719b3f88f 100644 --- a/src/licensedcode/data/rules/license-intro_12.RULE +++ b/src/licensedcode/data/rules/license-intro_12.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + This software is distributed under the following licenses: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_12.yml b/src/licensedcode/data/rules/license-intro_12.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_13.RULE b/src/licensedcode/data/rules/license-intro_13.RULE index cf8a522a82c..e45676e66a4 100644 --- a/src/licensedcode/data/rules/license-intro_13.RULE +++ b/src/licensedcode/data/rules/license-intro_13.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + it is licensed under the following license \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_13.yml b/src/licensedcode/data/rules/license-intro_13.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_14.RULE b/src/licensedcode/data/rules/license-intro_14.RULE index 7dbe6d293af..aa784cddeeb 100644 --- a/src/licensedcode/data/rules/license-intro_14.RULE +++ b/src/licensedcode/data/rules/license-intro_14.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Licenced under \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_14.yml b/src/licensedcode/data/rules/license-intro_14.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_15.RULE b/src/licensedcode/data/rules/license-intro_15.RULE index ec4d37e19f7..4e8dd2715e5 100644 --- a/src/licensedcode/data/rules/license-intro_15.RULE +++ b/src/licensedcode/data/rules/license-intro_15.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + licensed under the terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_15.yml b/src/licensedcode/data/rules/license-intro_15.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_16.RULE b/src/licensedcode/data/rules/license-intro_16.RULE index 63bd878d63f..85e57d32d39 100644 --- a/src/licensedcode/data/rules/license-intro_16.RULE +++ b/src/licensedcode/data/rules/license-intro_16.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + are subject to the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_16.yml b/src/licensedcode/data/rules/license-intro_16.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_17.RULE b/src/licensedcode/data/rules/license-intro_17.RULE index 3a0441a0d46..38f482af27c 100644 --- a/src/licensedcode/data/rules/license-intro_17.RULE +++ b/src/licensedcode/data/rules/license-intro_17.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + are licensed under the terms of \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_17.yml b/src/licensedcode/data/rules/license-intro_17.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_18.RULE b/src/licensedcode/data/rules/license-intro_18.RULE index c421a1b8378..3035ffc2e2c 100644 --- a/src/licensedcode/data/rules/license-intro_18.RULE +++ b/src/licensedcode/data/rules/license-intro_18.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Permission is granted \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_18.yml b/src/licensedcode/data/rules/license-intro_18.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_19.RULE b/src/licensedcode/data/rules/license-intro_19.RULE index b6d5e2046e1..409ec928554 100644 --- a/src/licensedcode/data/rules/license-intro_19.RULE +++ b/src/licensedcode/data/rules/license-intro_19.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + There are two licenses, one for the software library, and one for the data. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_19.yml b/src/licensedcode/data/rules/license-intro_19.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_2.RULE b/src/licensedcode/data/rules/license-intro_2.RULE index 8c42f9c6503..9041616dfd2 100644 --- a/src/licensedcode/data/rules/license-intro_2.RULE +++ b/src/licensedcode/data/rules/license-intro_2.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 50 +--- + Licensed under \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_2.yml b/src/licensedcode/data/rules/license-intro_2.yml deleted file mode 100644 index c4dff58f364..00000000000 --- a/src/licensedcode/data/rules/license-intro_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/license-intro_20.RULE b/src/licensedcode/data/rules/license-intro_20.RULE index e2ae71357b0..03b086173d4 100644 --- a/src/licensedcode/data/rules/license-intro_20.RULE +++ b/src/licensedcode/data/rules/license-intro_20.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Licensed under the terms of \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_20.yml b/src/licensedcode/data/rules/license-intro_20.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_21.RULE b/src/licensedcode/data/rules/license-intro_21.RULE index b0d2b09dae5..8c83f21a508 100644 --- a/src/licensedcode/data/rules/license-intro_21.RULE +++ b/src/licensedcode/data/rules/license-intro_21.RULE @@ -1 +1,7 @@ -Software License Agreement +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + +Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_21.yml b/src/licensedcode/data/rules/license-intro_21.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_22.RULE b/src/licensedcode/data/rules/license-intro_22.RULE index 35a124d6932..42780bec421 100644 --- a/src/licensedcode/data/rules/license-intro_22.RULE +++ b/src/licensedcode/data/rules/license-intro_22.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 90 +--- + license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_22.yml b/src/licensedcode/data/rules/license-intro_22.yml deleted file mode 100644 index 1e0f627ff4b..00000000000 --- a/src/licensedcode/data/rules/license-intro_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/license-intro_23.RULE b/src/licensedcode/data/rules/license-intro_23.RULE index b495dcf75f3..e838199d239 100644 --- a/src/licensedcode/data/rules/license-intro_23.RULE +++ b/src/licensedcode/data/rules/license-intro_23.RULE @@ -1 +1,7 @@ -Distributed under the same terms as \ No newline at end of file +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + +Distributed under the same terms as \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_23.yml b/src/licensedcode/data/rules/license-intro_23.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_24.RULE b/src/licensedcode/data/rules/license-intro_24.RULE index 9a104010e00..4b9a017d128 100644 --- a/src/licensedcode/data/rules/license-intro_24.RULE +++ b/src/licensedcode/data/rules/license-intro_24.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + copyright statement and Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_24.yml b/src/licensedcode/data/rules/license-intro_24.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_25.RULE b/src/licensedcode/data/rules/license-intro_25.RULE index b588276a9e4..4ba1edcabae 100644 --- a/src/licensedcode/data/rules/license-intro_25.RULE +++ b/src/licensedcode/data/rules/license-intro_25.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Licenced under the \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_25.yml b/src/licensedcode/data/rules/license-intro_25.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_26.RULE b/src/licensedcode/data/rules/license-intro_26.RULE index 7ea1fbd5ae1..11cc4fae744 100644 --- a/src/licensedcode/data/rules/license-intro_26.RULE +++ b/src/licensedcode/data/rules/license-intro_26.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Licensed under the \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_26.yml b/src/licensedcode/data/rules/license-intro_26.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_27.RULE b/src/licensedcode/data/rules/license-intro_27.RULE index bcbe7286172..626ee1934b3 100644 --- a/src/licensedcode/data/rules/license-intro_27.RULE +++ b/src/licensedcode/data/rules/license-intro_27.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Permission is hereby granted \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_27.yml b/src/licensedcode/data/rules/license-intro_27.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_28.RULE b/src/licensedcode/data/rules/license-intro_28.RULE index 48b023bb672..f7a13998231 100644 --- a/src/licensedcode/data/rules/license-intro_28.RULE +++ b/src/licensedcode/data/rules/license-intro_28.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + files are licensed under \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_28.yml b/src/licensedcode/data/rules/license-intro_28.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_29.RULE b/src/licensedcode/data/rules/license-intro_29.RULE index dbf0fdcfa60..fe3bf204a0e 100644 --- a/src/licensedcode/data/rules/license-intro_29.RULE +++ b/src/licensedcode/data/rules/license-intro_29.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + This program and the accompanying materials are made available under the terms of the \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_29.yml b/src/licensedcode/data/rules/license-intro_29.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_3.RULE b/src/licensedcode/data/rules/license-intro_3.RULE index 2439ad05075..a579749ec26 100644 --- a/src/licensedcode/data/rules/license-intro_3.RULE +++ b/src/licensedcode/data/rules/license-intro_3.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 60 +--- + subject to the terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_3.yml b/src/licensedcode/data/rules/license-intro_3.yml deleted file mode 100644 index 573c2947b24..00000000000 --- a/src/licensedcode/data/rules/license-intro_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 60 diff --git a/src/licensedcode/data/rules/license-intro_30.RULE b/src/licensedcode/data/rules/license-intro_30.RULE index 3c567978e47..f527bbb2516 100644 --- a/src/licensedcode/data/rules/license-intro_30.RULE +++ b/src/licensedcode/data/rules/license-intro_30.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + licensed under the following conditions \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_30.yml b/src/licensedcode/data/rules/license-intro_30.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_31.RULE b/src/licensedcode/data/rules/license-intro_31.RULE index 3c488c9da29..e4804462caf 100644 --- a/src/licensedcode/data/rules/license-intro_31.RULE +++ b/src/licensedcode/data/rules/license-intro_31.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + This file incorporates work covered by the following copyright and permission notice: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_31.yml b/src/licensedcode/data/rules/license-intro_31.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_32.RULE b/src/licensedcode/data/rules/license-intro_32.RULE index 24071fa7227..45f3fa86b2e 100644 --- a/src/licensedcode/data/rules/license-intro_32.RULE +++ b/src/licensedcode/data/rules/license-intro_32.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + program is copyrighted and licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_32.yml b/src/licensedcode/data/rules/license-intro_32.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_33.RULE b/src/licensedcode/data/rules/license-intro_33.RULE index acbff574ba9..985b6e02fe3 100644 --- a/src/licensedcode/data/rules/license-intro_33.RULE +++ b/src/licensedcode/data/rules/license-intro_33.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + portions are under the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_33.yml b/src/licensedcode/data/rules/license-intro_33.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_34.RULE b/src/licensedcode/data/rules/license-intro_34.RULE index f786c132087..2647e497c90 100644 --- a/src/licensedcode/data/rules/license-intro_34.RULE +++ b/src/licensedcode/data/rules/license-intro_34.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + covered by the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_34.yml b/src/licensedcode/data/rules/license-intro_34.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_35.RULE b/src/licensedcode/data/rules/license-intro_35.RULE index f50ea17d208..c2ce6ec49cd 100644 --- a/src/licensedcode/data/rules/license-intro_35.RULE +++ b/src/licensedcode/data/rules/license-intro_35.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + subject to the terms and conditions \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_35.yml b/src/licensedcode/data/rules/license-intro_35.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_36.RULE b/src/licensedcode/data/rules/license-intro_36.RULE index a76aab3a470..d58ae6422fb 100644 --- a/src/licensedcode/data/rules/license-intro_36.RULE +++ b/src/licensedcode/data/rules/license-intro_36.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +minimum_coverage: 90 +--- + includes a number of subcomponents with separate copyright notices and license terms. Your use of the source code for these subcomponents is subject to the terms and conditions diff --git a/src/licensedcode/data/rules/license-intro_36.yml b/src/licensedcode/data/rules/license-intro_36.yml deleted file mode 100644 index 6ea26ee5065..00000000000 --- a/src/licensedcode/data/rules/license-intro_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/license-intro_37.RULE b/src/licensedcode/data/rules/license-intro_37.RULE index 1e9471eeff3..bf60fe92425 100644 --- a/src/licensedcode/data/rules/license-intro_37.RULE +++ b/src/licensedcode/data/rules/license-intro_37.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + The majority of the source code and the collective work is subject to the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_37.yml b/src/licensedcode/data/rules/license-intro_37.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_38.RULE b/src/licensedcode/data/rules/license-intro_38.RULE index 84f84d6274d..8c93a64a9f9 100644 --- a/src/licensedcode/data/rules/license-intro_38.RULE +++ b/src/licensedcode/data/rules/license-intro_38.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + distributed under the following license terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_38.yml b/src/licensedcode/data/rules/license-intro_38.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_39.RULE b/src/licensedcode/data/rules/license-intro_39.RULE index 9528055a26b..650be6b0a65 100644 --- a/src/licensedcode/data/rules/license-intro_39.RULE +++ b/src/licensedcode/data/rules/license-intro_39.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + released under the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_39.yml b/src/licensedcode/data/rules/license-intro_39.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_4.RULE b/src/licensedcode/data/rules/license-intro_4.RULE index 8508d62c734..20783edda53 100644 --- a/src/licensedcode/data/rules/license-intro_4.RULE +++ b/src/licensedcode/data/rules/license-intro_4.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +notes: licensed under +--- + licensed under the following terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_4.yml b/src/licensedcode/data/rules/license-intro_4.yml deleted file mode 100644 index 94307529fcd..00000000000 --- a/src/licensedcode/data/rules/license-intro_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 -notes: licensed under diff --git a/src/licensedcode/data/rules/license-intro_40.RULE b/src/licensedcode/data/rules/license-intro_40.RULE index 20a38d4076c..d45937576fe 100644 --- a/src/licensedcode/data/rules/license-intro_40.RULE +++ b/src/licensedcode/data/rules/license-intro_40.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + It is provided under the terms of the licence below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_40.yml b/src/licensedcode/data/rules/license-intro_40.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_41.RULE b/src/licensedcode/data/rules/license-intro_41.RULE index b2b8d42913a..b7bbc6d7aec 100644 --- a/src/licensedcode/data/rules/license-intro_41.RULE +++ b/src/licensedcode/data/rules/license-intro_41.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + package is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_41.yml b/src/licensedcode/data/rules/license-intro_41.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_42.RULE b/src/licensedcode/data/rules/license-intro_42.RULE index 20d86e18e72..24a530b2f80 100644 --- a/src/licensedcode/data/rules/license-intro_42.RULE +++ b/src/licensedcode/data/rules/license-intro_42.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + The package is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_42.yml b/src/licensedcode/data/rules/license-intro_42.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_43.RULE b/src/licensedcode/data/rules/license-intro_43.RULE index 28b74771a9e..53c05a9e1cc 100644 --- a/src/licensedcode/data/rules/license-intro_43.RULE +++ b/src/licensedcode/data/rules/license-intro_43.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + library is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_43.yml b/src/licensedcode/data/rules/license-intro_43.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_44.RULE b/src/licensedcode/data/rules/license-intro_44.RULE index 52ec2c8cb2a..21ea0035d9d 100644 --- a/src/licensedcode/data/rules/license-intro_44.RULE +++ b/src/licensedcode/data/rules/license-intro_44.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + file is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_44.yml b/src/licensedcode/data/rules/license-intro_44.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_45.RULE b/src/licensedcode/data/rules/license-intro_45.RULE index 79c8b12cf76..c57811bc19d 100644 --- a/src/licensedcode/data/rules/license-intro_45.RULE +++ b/src/licensedcode/data/rules/license-intro_45.RULE @@ -1,2 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +--- + Except as otherwise noted in the files distributed as part of this package, this package is licensed under the following terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_45.yml b/src/licensedcode/data/rules/license-intro_45.yml deleted file mode 100644 index f9a9c1348ac..00000000000 --- a/src/licensedcode/data/rules/license-intro_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes diff --git a/src/licensedcode/data/rules/license-intro_46.RULE b/src/licensedcode/data/rules/license-intro_46.RULE index d248baaab9a..ea7f26bdbac 100644 --- a/src/licensedcode/data/rules/license-intro_46.RULE +++ b/src/licensedcode/data/rules/license-intro_46.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + this package is licensed under the following terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_46.yml b/src/licensedcode/data/rules/license-intro_46.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_47.RULE b/src/licensedcode/data/rules/license-intro_47.RULE index bb0dc328d91..6788f3f00c7 100644 --- a/src/licensedcode/data/rules/license-intro_47.RULE +++ b/src/licensedcode/data/rules/license-intro_47.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + directory is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_47.yml b/src/licensedcode/data/rules/license-intro_47.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_48.RULE b/src/licensedcode/data/rules/license-intro_48.RULE index 1b15c99d8c3..154dcd0c0ec 100644 --- a/src/licensedcode/data/rules/license-intro_48.RULE +++ b/src/licensedcode/data/rules/license-intro_48.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Unless otherwise specified, all code is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_48.yml b/src/licensedcode/data/rules/license-intro_48.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_49.RULE b/src/licensedcode/data/rules/license-intro_49.RULE index b878dd90a79..6792b401b0b 100644 --- a/src/licensedcode/data/rules/license-intro_49.RULE +++ b/src/licensedcode/data/rules/license-intro_49.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + code is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_49.yml b/src/licensedcode/data/rules/license-intro_49.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_5.RULE b/src/licensedcode/data/rules/license-intro_5.RULE index d0005ca4a8a..4138d7372b4 100644 --- a/src/licensedcode/data/rules/license-intro_5.RULE +++ b/src/licensedcode/data/rules/license-intro_5.RULE @@ -1 +1,7 @@ -distributed under the following license +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + +distributed under the following license \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_5.yml b/src/licensedcode/data/rules/license-intro_5.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_50.RULE b/src/licensedcode/data/rules/license-intro_50.RULE index 45f556d457e..e5629caf72d 100644 --- a/src/licensedcode/data/rules/license-intro_50.RULE +++ b/src/licensedcode/data/rules/license-intro_50.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_50.yml b/src/licensedcode/data/rules/license-intro_50.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_51.RULE b/src/licensedcode/data/rules/license-intro_51.RULE index 699f40954a1..5579670f504 100644 --- a/src/licensedcode/data/rules/license-intro_51.RULE +++ b/src/licensedcode/data/rules/license-intro_51.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + this library is licensed under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_51.yml b/src/licensedcode/data/rules/license-intro_51.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_52.RULE b/src/licensedcode/data/rules/license-intro_52.RULE index e234f2daef1..29d761bd71e 100644 --- a/src/licensedcode/data/rules/license-intro_52.RULE +++ b/src/licensedcode/data/rules/license-intro_52.RULE @@ -1,3 +1,8 @@ +--- +license_expression: free-unknown +is_license_intro: yes +--- + The following is a listing of the open source components detailed in this document. This list is provided for your convenience; please read further if you wish to review the copyright notice(s) and the full text diff --git a/src/licensedcode/data/rules/license-intro_52.yml b/src/licensedcode/data/rules/license-intro_52.yml deleted file mode 100644 index 4b5b1ea3567..00000000000 --- a/src/licensedcode/data/rules/license-intro_52.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: free-unknown -is_license_intro: yes diff --git a/src/licensedcode/data/rules/license-intro_53.RULE b/src/licensedcode/data/rules/license-intro_53.RULE index 7583636296b..0638ffa0dce 100644 --- a/src/licensedcode/data/rules/license-intro_53.RULE +++ b/src/licensedcode/data/rules/license-intro_53.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + // See end of file for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_53.yml b/src/licensedcode/data/rules/license-intro_53.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_54.RULE b/src/licensedcode/data/rules/license-intro_54.RULE index a82d7147103..3b0e534e919 100644 --- a/src/licensedcode/data/rules/license-intro_54.RULE +++ b/src/licensedcode/data/rules/license-intro_54.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + This software contains the following license and notice below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_54.yml b/src/licensedcode/data/rules/license-intro_54.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_55.RULE b/src/licensedcode/data/rules/license-intro_55.RULE index 3771d10da31..65ccb0076b8 100644 --- a/src/licensedcode/data/rules/license-intro_55.RULE +++ b/src/licensedcode/data/rules/license-intro_55.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new AND other-permissive AND other-copyleft +is_license_intro: yes +notes: Seen in newlib +--- + The {{newlib subdirectory is a collection of software from several sources}}. Each file may have its own copyright/license that is embedded in the source file. Unless otherwise noted in the body of the source file(s), the following {{copyright diff --git a/src/licensedcode/data/rules/license-intro_55.yml b/src/licensedcode/data/rules/license-intro_55.yml deleted file mode 100644 index f79781e9b44..00000000000 --- a/src/licensedcode/data/rules/license-intro_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND other-permissive AND other-copyleft -is_license_intro: yes -notes: Seen in newlib diff --git a/src/licensedcode/data/rules/license-intro_56.RULE b/src/licensedcode/data/rules/license-intro_56.RULE index 4251d681a45..72436e81a77 100644 --- a/src/licensedcode/data/rules/license-intro_56.RULE +++ b/src/licensedcode/data/rules/license-intro_56.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_intro: yes +minimum_coverage: 80 +--- + WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY. BY diff --git a/src/licensedcode/data/rules/license-intro_56.yml b/src/licensedcode/data/rules/license-intro_56.yml deleted file mode 100644 index adfeb433e82..00000000000 --- a/src/licensedcode/data/rules/license-intro_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_intro: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/license-intro_57.RULE b/src/licensedcode/data/rules/license-intro_57.RULE index ff9d8b0283e..07a0d47cc7c 100644 --- a/src/licensedcode/data/rules/license-intro_57.RULE +++ b/src/licensedcode/data/rules/license-intro_57.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + This file contains code that was {{originally under the following license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_57.yml b/src/licensedcode/data/rules/license-intro_57.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_58.RULE b/src/licensedcode/data/rules/license-intro_58.RULE index 1a67953a2d6..4416748ed32 100644 --- a/src/licensedcode/data/rules/license-intro_58.RULE +++ b/src/licensedcode/data/rules/license-intro_58.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + For license terms see \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_58.yml b/src/licensedcode/data/rules/license-intro_58.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_59.RULE b/src/licensedcode/data/rules/license-intro_59.RULE index 628ae9620f7..5c7a45e83ce 100644 --- a/src/licensedcode/data/rules/license-intro_59.RULE +++ b/src/licensedcode/data/rules/license-intro_59.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + distributed under the \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_59.yml b/src/licensedcode/data/rules/license-intro_59.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_6.RULE b/src/licensedcode/data/rules/license-intro_6.RULE index 9cb96277966..3a2adc45b11 100644 --- a/src/licensedcode/data/rules/license-intro_6.RULE +++ b/src/licensedcode/data/rules/license-intro_6.RULE @@ -1 +1,7 @@ -This file is distributed under the same license as the \ No newline at end of file +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + +This file is distributed under the same license as the \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_6.yml b/src/licensedcode/data/rules/license-intro_6.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_60.RULE b/src/licensedcode/data/rules/license-intro_60.RULE index 9c65faa564e..2eec3fefe22 100644 --- a/src/licensedcode/data/rules/license-intro_60.RULE +++ b/src/licensedcode/data/rules/license-intro_60.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + It is released under the terms of \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_60.yml b/src/licensedcode/data/rules/license-intro_60.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_61.RULE b/src/licensedcode/data/rules/license-intro_61.RULE index 7eaa927ae96..7934002ba17 100644 --- a/src/licensedcode/data/rules/license-intro_61.RULE +++ b/src/licensedcode/data/rules/license-intro_61.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + distributed under the terms of \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_61.yml b/src/licensedcode/data/rules/license-intro_61.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_62.RULE b/src/licensedcode/data/rules/license-intro_62.RULE index 93d6ef624c0..e13676464d4 100644 --- a/src/licensedcode/data/rules/license-intro_62.RULE +++ b/src/licensedcode/data/rules/license-intro_62.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + available under the terms of \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_62.yml b/src/licensedcode/data/rules/license-intro_62.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_63.RULE b/src/licensedcode/data/rules/license-intro_63.RULE index 0c279f7e89c..31a8c04ba10 100644 --- a/src/licensedcode/data/rules/license-intro_63.RULE +++ b/src/licensedcode/data/rules/license-intro_63.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +notes: See https://raw.githubusercontent.com/spring-projects/spring-framework/main/src/docs/dist/license.txt +--- + includes a number of subcomponents with separate copyright notices and license terms. The product that includes this file does not necessarily use all the open source diff --git a/src/licensedcode/data/rules/license-intro_63.yml b/src/licensedcode/data/rules/license-intro_63.yml deleted file mode 100644 index e5651b64f12..00000000000 --- a/src/licensedcode/data/rules/license-intro_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -notes: See https://raw.githubusercontent.com/spring-projects/spring-framework/main/src/docs/dist/license.txt diff --git a/src/licensedcode/data/rules/license-intro_7.RULE b/src/licensedcode/data/rules/license-intro_7.RULE index 2f578f21fb3..f96d3752fb8 100644 --- a/src/licensedcode/data/rules/license-intro_7.RULE +++ b/src/licensedcode/data/rules/license-intro_7.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Its license terms and conditions are shown below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_7.yml b/src/licensedcode/data/rules/license-intro_7.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_8.RULE b/src/licensedcode/data/rules/license-intro_8.RULE index a376afe8dba..57efa92525b 100644 --- a/src/licensedcode/data/rules/license-intro_8.RULE +++ b/src/licensedcode/data/rules/license-intro_8.RULE @@ -1 +1,7 @@ +--- +license_expression: generic-exception +is_license_intro: yes +relevance: 99 +--- + As a special exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_8.yml b/src/licensedcode/data/rules/license-intro_8.yml deleted file mode 100644 index 47f35e262e2..00000000000 --- a/src/licensedcode/data/rules/license-intro_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: generic-exception -is_license_intro: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/license-intro_9.RULE b/src/licensedcode/data/rules/license-intro_9.RULE index 9fb542629a5..d001c5af648 100644 --- a/src/licensedcode/data/rules/license-intro_9.RULE +++ b/src/licensedcode/data/rules/license-intro_9.RULE @@ -1 +1,7 @@ -distributed under +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + +distributed under \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_9.yml b/src/licensedcode/data/rules/license-intro_9.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/license-intro_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/license-intro_bsd-new_and_other-permissive_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/license-intro_bsd-new_and_other-permissive_and_other-copyleft_1.RULE index 7b8fa0ddaf2..ccb4159e77e 100644 --- a/src/licensedcode/data/rules/license-intro_bsd-new_and_other-permissive_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/license-intro_bsd-new_and_other-permissive_and_other-copyleft_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-new AND other-permissive AND other-copyleft +is_license_intro: yes +notes: header in the newlib license notice +--- + Each file may have its own copyright/license that is embedded in the source file. Unless otherwise noted in the body of the source file(s), the following {{copyright -notices will apply to the contents of the newlib subdirectory}}: +notices will apply to the contents of the newlib subdirectory}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_bsd-new_and_other-permissive_and_other-copyleft_1.yml b/src/licensedcode/data/rules/license-intro_bsd-new_and_other-permissive_and_other-copyleft_1.yml deleted file mode 100644 index 5becae3bf8d..00000000000 --- a/src/licensedcode/data/rules/license-intro_bsd-new_and_other-permissive_and_other-copyleft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND other-permissive AND other-copyleft -is_license_intro: yes -notes: header in the newlib license notice diff --git a/src/licensedcode/data/rules/lil-1_1.RULE b/src/licensedcode/data/rules/lil-1_1.RULE index bbadab9dca9..4b8bd2ba2c6 100644 --- a/src/licensedcode/data/rules/lil-1_1.RULE +++ b/src/licensedcode/data/rules/lil-1_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lil-1 +is_license_text: yes +--- + The Lil License v1 Permission is hereby granted by the authors of this software, to any person, diff --git a/src/licensedcode/data/rules/lil-1_1.yml b/src/licensedcode/data/rules/lil-1_1.yml deleted file mode 100644 index 84f9342e7f8..00000000000 --- a/src/licensedcode/data/rules/lil-1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lil-1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/lil-1_2.RULE b/src/licensedcode/data/rules/lil-1_2.RULE index a59c131c658..445c5273449 100644 --- a/src/licensedcode/data/rules/lil-1_2.RULE +++ b/src/licensedcode/data/rules/lil-1_2.RULE @@ -1 +1,7 @@ -The Lil License v1 +--- +license_expression: lil-1 +is_license_reference: yes +relevance: 100 +--- + +The Lil License v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lil-1_2.yml b/src/licensedcode/data/rules/lil-1_2.yml deleted file mode 100644 index 357f38ee293..00000000000 --- a/src/licensedcode/data/rules/lil-1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lil-1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lil-1_3.RULE b/src/licensedcode/data/rules/lil-1_3.RULE index 2879f6383f6..8f042930312 100644 --- a/src/licensedcode/data/rules/lil-1_3.RULE +++ b/src/licensedcode/data/rules/lil-1_3.RULE @@ -1 +1,7 @@ -Lil License +--- +license_expression: lil-1 +is_license_reference: yes +relevance: 100 +--- + +Lil License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lil-1_3.yml b/src/licensedcode/data/rules/lil-1_3.yml deleted file mode 100644 index 357f38ee293..00000000000 --- a/src/licensedcode/data/rules/lil-1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lil-1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/liliq-p-1.1_1.RULE b/src/licensedcode/data/rules/liliq-p-1.1_1.RULE index 1134e8b5309..621865cf2ce 100644 --- a/src/licensedcode/data/rules/liliq-p-1.1_1.RULE +++ b/src/licensedcode/data/rules/liliq-p-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-p-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LiLiQ-P-1.1 +--- + https://licenses.nuget.org/LiLiQ-P-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-p-1.1_1.yml b/src/licensedcode/data/rules/liliq-p-1.1_1.yml deleted file mode 100644 index 5ca274a09a5..00000000000 --- a/src/licensedcode/data/rules/liliq-p-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-p-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LiLiQ-P-1.1 diff --git a/src/licensedcode/data/rules/liliq-p-1.1_2.RULE b/src/licensedcode/data/rules/liliq-p-1.1_2.RULE index 188e3038086..a57662964b3 100644 --- a/src/licensedcode/data/rules/liliq-p-1.1_2.RULE +++ b/src/licensedcode/data/rules/liliq-p-1.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: liliq-p-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LiLiQ-P-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-p-1.1_2.yml b/src/licensedcode/data/rules/liliq-p-1.1_2.yml deleted file mode 100644 index f1c800dbffb..00000000000 --- a/src/licensedcode/data/rules/liliq-p-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: liliq-p-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/liliq-p-1.1_3.RULE b/src/licensedcode/data/rules/liliq-p-1.1_3.RULE index 18bfd03478d..401345793ec 100644 --- a/src/licensedcode/data/rules/liliq-p-1.1_3.RULE +++ b/src/licensedcode/data/rules/liliq-p-1.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-p-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LiLiQ-P-1.1 +--- + LICENSE {{LiLiQ-P-1.1}} https://spdx.org/licenses/LiLiQ-P-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-p-1.1_3.yml b/src/licensedcode/data/rules/liliq-p-1.1_3.yml deleted file mode 100644 index 9f01db3116d..00000000000 --- a/src/licensedcode/data/rules/liliq-p-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-p-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LiLiQ-P-1.1 diff --git a/src/licensedcode/data/rules/liliq-p-1.1_4.RULE b/src/licensedcode/data/rules/liliq-p-1.1_4.RULE index 05dfd985abf..918313c66d7 100644 --- a/src/licensedcode/data/rules/liliq-p-1.1_4.RULE +++ b/src/licensedcode/data/rules/liliq-p-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-p-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LiLiQ-P-1.1 +--- + {{LiLiQ-P-1.1}} https://spdx.org/licenses/LiLiQ-P-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-p-1.1_4.yml b/src/licensedcode/data/rules/liliq-p-1.1_4.yml deleted file mode 100644 index 9f01db3116d..00000000000 --- a/src/licensedcode/data/rules/liliq-p-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-p-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LiLiQ-P-1.1 diff --git a/src/licensedcode/data/rules/liliq-r-1.1_1.RULE b/src/licensedcode/data/rules/liliq-r-1.1_1.RULE index 84ad161e672..96da9a8aadc 100644 --- a/src/licensedcode/data/rules/liliq-r-1.1_1.RULE +++ b/src/licensedcode/data/rules/liliq-r-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-r-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LiLiQ-R-1.1 +--- + https://licenses.nuget.org/LiLiQ-R-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-r-1.1_1.yml b/src/licensedcode/data/rules/liliq-r-1.1_1.yml deleted file mode 100644 index 0dbafe578fa..00000000000 --- a/src/licensedcode/data/rules/liliq-r-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-r-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LiLiQ-R-1.1 diff --git a/src/licensedcode/data/rules/liliq-r-1.1_2.RULE b/src/licensedcode/data/rules/liliq-r-1.1_2.RULE index e790e6d9f66..55218f33d1a 100644 --- a/src/licensedcode/data/rules/liliq-r-1.1_2.RULE +++ b/src/licensedcode/data/rules/liliq-r-1.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: liliq-r-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LiLiQ-R-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-r-1.1_2.yml b/src/licensedcode/data/rules/liliq-r-1.1_2.yml deleted file mode 100644 index d3201763d34..00000000000 --- a/src/licensedcode/data/rules/liliq-r-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: liliq-r-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/liliq-r-1.1_3.RULE b/src/licensedcode/data/rules/liliq-r-1.1_3.RULE index 577b9c19269..b3bdde23c01 100644 --- a/src/licensedcode/data/rules/liliq-r-1.1_3.RULE +++ b/src/licensedcode/data/rules/liliq-r-1.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-r-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LiLiQ-R-1.1 +--- + {{LiLiQ-R-1.1}} https://spdx.org/licenses/LiLiQ-R-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-r-1.1_3.yml b/src/licensedcode/data/rules/liliq-r-1.1_3.yml deleted file mode 100644 index 1c1de076abb..00000000000 --- a/src/licensedcode/data/rules/liliq-r-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-r-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LiLiQ-R-1.1 diff --git a/src/licensedcode/data/rules/liliq-r-1.1_4.RULE b/src/licensedcode/data/rules/liliq-r-1.1_4.RULE index 55cc106516f..285022e3904 100644 --- a/src/licensedcode/data/rules/liliq-r-1.1_4.RULE +++ b/src/licensedcode/data/rules/liliq-r-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-r-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LiLiQ-R-1.1 +--- + LICENSE {{LiLiQ-R-1.1}} https://spdx.org/licenses/LiLiQ-R-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-r-1.1_4.yml b/src/licensedcode/data/rules/liliq-r-1.1_4.yml deleted file mode 100644 index 1c1de076abb..00000000000 --- a/src/licensedcode/data/rules/liliq-r-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-r-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LiLiQ-R-1.1 diff --git a/src/licensedcode/data/rules/liliq-rplus-1.1_1.RULE b/src/licensedcode/data/rules/liliq-rplus-1.1_1.RULE index f4b4a8a3886..6558a81ff06 100644 --- a/src/licensedcode/data/rules/liliq-rplus-1.1_1.RULE +++ b/src/licensedcode/data/rules/liliq-rplus-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-rplus-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LiLiQ-Rplus-1.1 +--- + https://licenses.nuget.org/LiLiQ-Rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-rplus-1.1_1.yml b/src/licensedcode/data/rules/liliq-rplus-1.1_1.yml deleted file mode 100644 index 7e26162d56c..00000000000 --- a/src/licensedcode/data/rules/liliq-rplus-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-rplus-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LiLiQ-Rplus-1.1 diff --git a/src/licensedcode/data/rules/liliq-rplus-1.1_2.RULE b/src/licensedcode/data/rules/liliq-rplus-1.1_2.RULE index 195f83d738d..ebeaf11d477 100644 --- a/src/licensedcode/data/rules/liliq-rplus-1.1_2.RULE +++ b/src/licensedcode/data/rules/liliq-rplus-1.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: liliq-rplus-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LiLiQ-Rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-rplus-1.1_2.yml b/src/licensedcode/data/rules/liliq-rplus-1.1_2.yml deleted file mode 100644 index ea243ec3092..00000000000 --- a/src/licensedcode/data/rules/liliq-rplus-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: liliq-rplus-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/liliq-rplus-1.1_3.RULE b/src/licensedcode/data/rules/liliq-rplus-1.1_3.RULE index d6ec6d27f0f..b7ce964cbf9 100644 --- a/src/licensedcode/data/rules/liliq-rplus-1.1_3.RULE +++ b/src/licensedcode/data/rules/liliq-rplus-1.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-rplus-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LiLiQ-Rplus-1.1 +--- + LICENSE {{LiLiQ-Rplus-1.1}} https://spdx.org/licenses/LiLiQ-Rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-rplus-1.1_3.yml b/src/licensedcode/data/rules/liliq-rplus-1.1_3.yml deleted file mode 100644 index 4eb6760faf4..00000000000 --- a/src/licensedcode/data/rules/liliq-rplus-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-rplus-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LiLiQ-Rplus-1.1 diff --git a/src/licensedcode/data/rules/liliq-rplus-1.1_4.RULE b/src/licensedcode/data/rules/liliq-rplus-1.1_4.RULE index 978eb43793a..893635685eb 100644 --- a/src/licensedcode/data/rules/liliq-rplus-1.1_4.RULE +++ b/src/licensedcode/data/rules/liliq-rplus-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: liliq-rplus-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LiLiQ-Rplus-1.1 +--- + {{LiLiQ-Rplus-1.1}} https://spdx.org/licenses/LiLiQ-Rplus-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/liliq-rplus-1.1_4.yml b/src/licensedcode/data/rules/liliq-rplus-1.1_4.yml deleted file mode 100644 index 4eb6760faf4..00000000000 --- a/src/licensedcode/data/rules/liliq-rplus-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: liliq-rplus-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LiLiQ-Rplus-1.1 diff --git a/src/licensedcode/data/rules/lilo_2.RULE b/src/licensedcode/data/rules/lilo_2.RULE index 7f290f4ba04..4a7b03f911a 100644 --- a/src/licensedcode/data/rules/lilo_2.RULE +++ b/src/licensedcode/data/rules/lilo_2.RULE @@ -1 +1,10 @@ +--- +license_expression: lilo +is_license_reference: yes +relevance: 100 +notes: https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright +ignorable_urls: + - https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright +--- + https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/lilo_2.yml b/src/licensedcode/data/rules/lilo_2.yml deleted file mode 100644 index 1381ab1e14e..00000000000 --- a/src/licensedcode/data/rules/lilo_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lilo -is_license_reference: yes -relevance: 100 -notes: https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright -ignorable_urls: - - https://launchpad.net/ubuntu/oneiric/+source/rxtx/+copyright diff --git a/src/licensedcode/data/rules/lilo_4.RULE b/src/licensedcode/data/rules/lilo_4.RULE index 723b63ebaaf..898e22533e1 100644 --- a/src/licensedcode/data/rules/lilo_4.RULE +++ b/src/licensedcode/data/rules/lilo_4.RULE @@ -1 +1,8 @@ -lilo license +--- +license_expression: lilo +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + +lilo license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lilo_4.yml b/src/licensedcode/data/rules/lilo_4.yml deleted file mode 100644 index 3c80ae78778..00000000000 --- a/src/licensedcode/data/rules/lilo_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lilo -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/linking-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/linking-exception-2.0-plus_1.RULE index f6d99cbe7c4..7b586eaa9a2 100644 --- a/src/licensedcode/data/rules/linking-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/linking-exception-2.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: linking-exception-2.0-plus +is_license_notice: yes +--- + As a special exception, if you link this library with files compiled with GCC to produce an executable, this does not cause the resulting executable to be covered by the GNU General Public License. diff --git a/src/licensedcode/data/rules/linking-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/linking-exception-2.0-plus_1.yml deleted file mode 100644 index fbc737cef62..00000000000 --- a/src/licensedcode/data/rules/linking-exception-2.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: linking-exception-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/linking-exception-lgpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/linking-exception-lgpl-3.0-plus_1.RULE index 8070efaeef8..557e35c44ec 100644 --- a/src/licensedcode/data/rules/linking-exception-lgpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/linking-exception-lgpl-3.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-3.0-plus WITH lgpl-3.0-linking-exception +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your @@ -23,4 +28,4 @@ obliged to do so. If you do not wish to do so, delete this exception statement from your version. This exception does not (and cannot) modify any license terms which apply to the Application, with which you must still - comply. + comply. \ No newline at end of file diff --git a/src/licensedcode/data/rules/linking-exception-lgpl-3.0-plus_1.yml b/src/licensedcode/data/rules/linking-exception-lgpl-3.0-plus_1.yml deleted file mode 100644 index e0407ee9ef1..00000000000 --- a/src/licensedcode/data/rules/linking-exception-lgpl-3.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-3.0-plus WITH lgpl-3.0-linking-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/linotype-eula.RULE b/src/licensedcode/data/rules/linotype-eula.RULE index d53020b24f8..6f1b5ca89b6 100644 --- a/src/licensedcode/data/rules/linotype-eula.RULE +++ b/src/licensedcode/data/rules/linotype-eula.RULE @@ -1 +1,9 @@ +--- +license_expression: linotype-eula +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.linotype.com/2061-28225/licenseagreementforfontsoftware.html +--- + http://www.linotype.com/2061-28225/licenseagreementforfontsoftware.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/linotype-eula.yml b/src/licensedcode/data/rules/linotype-eula.yml deleted file mode 100644 index 764c36aa102..00000000000 --- a/src/licensedcode/data/rules/linotype-eula.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linotype-eula -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.linotype.com/2061-28225/licenseagreementforfontsoftware.html diff --git a/src/licensedcode/data/rules/linux-openib_1.RULE b/src/licensedcode/data/rules/linux-openib_1.RULE index a3ba1f734b6..cafeee5d688 100644 --- a/src/licensedcode/data/rules/linux-openib_1.RULE +++ b/src/licensedcode/data/rules/linux-openib_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: linux-openib +is_license_notice: yes +notes: openib +--- + This software is available to you under the BSD license below: Redistribution and use in source and binary forms, with or @@ -20,4 +26,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_1.yml b/src/licensedcode/data/rules/linux-openib_1.yml deleted file mode 100644 index 6c2104b466a..00000000000 --- a/src/licensedcode/data/rules/linux-openib_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: linux-openib -is_license_notice: yes -notes: openib diff --git a/src/licensedcode/data/rules/linux-openib_10.RULE b/src/licensedcode/data/rules/linux-openib_10.RULE index e57127ae975..211cde80103 100644 --- a/src/licensedcode/data/rules/linux-openib_10.RULE +++ b/src/licensedcode/data/rules/linux-openib_10.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-openib +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Linux Kernel Variant of OpenIB.org license \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_10.yml b/src/licensedcode/data/rules/linux-openib_10.yml deleted file mode 100644 index 6200b41d34b..00000000000 --- a/src/licensedcode/data/rules/linux-openib_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-openib_11.RULE b/src/licensedcode/data/rules/linux-openib_11.RULE index 711d0f3d76d..854d4aaaae3 100644 --- a/src/licensedcode/data/rules/linux-openib_11.RULE +++ b/src/licensedcode/data/rules/linux-openib_11.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-openib +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Linux-OpenIB Linux Kernel Variant of OpenIB.org license \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_11.yml b/src/licensedcode/data/rules/linux-openib_11.yml deleted file mode 100644 index 6200b41d34b..00000000000 --- a/src/licensedcode/data/rules/linux-openib_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-openib_12.RULE b/src/licensedcode/data/rules/linux-openib_12.RULE index 69756feecdf..399e4278cb5 100644 --- a/src/licensedcode/data/rules/linux-openib_12.RULE +++ b/src/licensedcode/data/rules/linux-openib_12.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-openib +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Linux Kernel Variant of OpenIB.org license Linux-OpenIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_12.yml b/src/licensedcode/data/rules/linux-openib_12.yml deleted file mode 100644 index 6200b41d34b..00000000000 --- a/src/licensedcode/data/rules/linux-openib_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-openib_13.RULE b/src/licensedcode/data/rules/linux-openib_13.RULE index 708288b873b..64a3bc5dee4 100644 --- a/src/licensedcode/data/rules/linux-openib_13.RULE +++ b/src/licensedcode/data/rules/linux-openib_13.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-openib +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Linux-OpenIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_13.yml b/src/licensedcode/data/rules/linux-openib_13.yml deleted file mode 100644 index 1a2c9c51b5e..00000000000 --- a/src/licensedcode/data/rules/linux-openib_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-openib -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-openib_14.RULE b/src/licensedcode/data/rules/linux-openib_14.RULE index 0934ae30b28..3962e0cf32e 100644 --- a/src/licensedcode/data/rules/linux-openib_14.RULE +++ b/src/licensedcode/data/rules/linux-openib_14.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-openib +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Linux Kernel Variant of OpenIB.org license \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_14.yml b/src/licensedcode/data/rules/linux-openib_14.yml deleted file mode 100644 index 1a2c9c51b5e..00000000000 --- a/src/licensedcode/data/rules/linux-openib_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-openib -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-openib_15.RULE b/src/licensedcode/data/rules/linux-openib_15.RULE index 4dce4f05543..0752954dc66 100644 --- a/src/licensedcode/data/rules/linux-openib_15.RULE +++ b/src/licensedcode/data/rules/linux-openib_15.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-openib +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Linux-OpenIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_15.yml b/src/licensedcode/data/rules/linux-openib_15.yml deleted file mode 100644 index 1a2c9c51b5e..00000000000 --- a/src/licensedcode/data/rules/linux-openib_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-openib -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-openib_16.RULE b/src/licensedcode/data/rules/linux-openib_16.RULE index aa46aea9e99..a30175e3f81 100644 --- a/src/licensedcode/data/rules/linux-openib_16.RULE +++ b/src/licensedcode/data/rules/linux-openib_16.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-openib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Linux-OpenIB +--- + https://licenses.nuget.org/Linux-OpenIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_16.yml b/src/licensedcode/data/rules/linux-openib_16.yml deleted file mode 100644 index c8082e68fc5..00000000000 --- a/src/licensedcode/data/rules/linux-openib_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Linux-OpenIB diff --git a/src/licensedcode/data/rules/linux-openib_17.RULE b/src/licensedcode/data/rules/linux-openib_17.RULE index a62990de9e9..2a9cf11ea88 100644 --- a/src/licensedcode/data/rules/linux-openib_17.RULE +++ b/src/licensedcode/data/rules/linux-openib_17.RULE @@ -1 +1,7 @@ +--- +license_expression: linux-openib +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Linux-OpenIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_17.yml b/src/licensedcode/data/rules/linux-openib_17.yml deleted file mode 100644 index 6503ee2d5b1..00000000000 --- a/src/licensedcode/data/rules/linux-openib_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/linux-openib_18.RULE b/src/licensedcode/data/rules/linux-openib_18.RULE index 82a339168dc..f28e2c5c63a 100644 --- a/src/licensedcode/data/rules/linux-openib_18.RULE +++ b/src/licensedcode/data/rules/linux-openib_18.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-openib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Linux-OpenIB +--- + {{Linux-OpenIB}} https://spdx.org/licenses/Linux-OpenIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_18.yml b/src/licensedcode/data/rules/linux-openib_18.yml deleted file mode 100644 index 439b7da3f86..00000000000 --- a/src/licensedcode/data/rules/linux-openib_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Linux-OpenIB diff --git a/src/licensedcode/data/rules/linux-openib_19.RULE b/src/licensedcode/data/rules/linux-openib_19.RULE index 08699bc85e9..9ba40b40c8a 100644 --- a/src/licensedcode/data/rules/linux-openib_19.RULE +++ b/src/licensedcode/data/rules/linux-openib_19.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-openib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Linux-OpenIB +--- + LICENSE {{Linux-OpenIB}} https://spdx.org/licenses/Linux-OpenIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_19.yml b/src/licensedcode/data/rules/linux-openib_19.yml deleted file mode 100644 index 439b7da3f86..00000000000 --- a/src/licensedcode/data/rules/linux-openib_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Linux-OpenIB diff --git a/src/licensedcode/data/rules/linux-openib_2.RULE b/src/licensedcode/data/rules/linux-openib_2.RULE index 0ac99a6d2ab..5fc30370205 100644 --- a/src/licensedcode/data/rules/linux-openib_2.RULE +++ b/src/licensedcode/data/rules/linux-openib_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: linux-openib +is_license_notice: yes +notes: openib +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -18,4 +24,4 @@ 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. + SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_2.yml b/src/licensedcode/data/rules/linux-openib_2.yml deleted file mode 100644 index 6c2104b466a..00000000000 --- a/src/licensedcode/data/rules/linux-openib_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: linux-openib -is_license_notice: yes -notes: openib diff --git a/src/licensedcode/data/rules/linux-openib_3.RULE b/src/licensedcode/data/rules/linux-openib_3.RULE index d9185dce0eb..b5eecb57911 100644 --- a/src/licensedcode/data/rules/linux-openib_3.RULE +++ b/src/licensedcode/data/rules/linux-openib_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: linux-openib +is_license_text: yes +notes: openib +--- + OpenIB.org BSD license (MIT variant) Redistribution and use in source and binary forms, with or without @@ -16,4 +22,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_3.yml b/src/licensedcode/data/rules/linux-openib_3.yml deleted file mode 100644 index 30add69b507..00000000000 --- a/src/licensedcode/data/rules/linux-openib_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: linux-openib -is_license_text: yes -notes: openib diff --git a/src/licensedcode/data/rules/linux-openib_4.RULE b/src/licensedcode/data/rules/linux-openib_4.RULE index bd122efbec6..9bfd0f792b7 100644 --- a/src/licensedcode/data/rules/linux-openib_4.RULE +++ b/src/licensedcode/data/rules/linux-openib_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: linux-openib +is_license_notice: yes +--- + This End User License Agreement is a legal agreement between you (either an individual or a single entity) and the Open Fabrics Alliance. Please read the following End User License Agreement carefully. diff --git a/src/licensedcode/data/rules/linux-openib_4.yml b/src/licensedcode/data/rules/linux-openib_4.yml deleted file mode 100644 index 38095dd3750..00000000000 --- a/src/licensedcode/data/rules/linux-openib_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: linux-openib -is_license_notice: yes diff --git a/src/licensedcode/data/rules/linux-openib_5.RULE b/src/licensedcode/data/rules/linux-openib_5.RULE index f42187f0944..28f4066ee00 100644 --- a/src/licensedcode/data/rules/linux-openib_5.RULE +++ b/src/licensedcode/data/rules/linux-openib_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: linux-openib +is_license_text: yes +minimum_coverage: 80 +notes: openib +--- + OpenIB.org BSD license (MIT variant) Redistribution and use in source and binary forms, with or without @@ -16,4 +23,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_5.yml b/src/licensedcode/data/rules/linux-openib_5.yml deleted file mode 100644 index 224a03e82ec..00000000000 --- a/src/licensedcode/data/rules/linux-openib_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: linux-openib -is_license_text: yes -minimum_coverage: 80 -notes: openib diff --git a/src/licensedcode/data/rules/linux-openib_6.RULE b/src/licensedcode/data/rules/linux-openib_6.RULE index fd41efd1ef6..9feb04ec239 100644 --- a/src/licensedcode/data/rules/linux-openib_6.RULE +++ b/src/licensedcode/data/rules/linux-openib_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: linux-openib +is_license_notice: yes +notes: openib +--- + This software is available to you under the OpenIB.org BSD license below: @@ -22,4 +28,4 @@ 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. + SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_6.yml b/src/licensedcode/data/rules/linux-openib_6.yml deleted file mode 100644 index 6c2104b466a..00000000000 --- a/src/licensedcode/data/rules/linux-openib_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: linux-openib -is_license_notice: yes -notes: openib diff --git a/src/licensedcode/data/rules/linux-openib_7.RULE b/src/licensedcode/data/rules/linux-openib_7.RULE index 56dcfa2bd0f..55909ce75c4 100644 --- a/src/licensedcode/data/rules/linux-openib_7.RULE +++ b/src/licensedcode/data/rules/linux-openib_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: linux-openib +is_license_notice: yes +--- + This software is available to you under the OpenFabrics.org BSD license below: @@ -21,4 +26,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_7.yml b/src/licensedcode/data/rules/linux-openib_7.yml deleted file mode 100644 index 38095dd3750..00000000000 --- a/src/licensedcode/data/rules/linux-openib_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: linux-openib -is_license_notice: yes diff --git a/src/licensedcode/data/rules/linux-openib_8.RULE b/src/licensedcode/data/rules/linux-openib_8.RULE index c3e7620b67f..622ad14f37d 100644 --- a/src/licensedcode/data/rules/linux-openib_8.RULE +++ b/src/licensedcode/data/rules/linux-openib_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: linux-openib +is_license_text: yes +relevance: 100 +--- + This software is available to you under the OpenIB.org BSD license below: diff --git a/src/licensedcode/data/rules/linux-openib_8.yml b/src/licensedcode/data/rules/linux-openib_8.yml deleted file mode 100644 index e848cef949c..00000000000 --- a/src/licensedcode/data/rules/linux-openib_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: linux-openib -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/linux-openib_9.RULE b/src/licensedcode/data/rules/linux-openib_9.RULE index 9ee14f5d903..9bc3ee889a2 100644 --- a/src/licensedcode/data/rules/linux-openib_9.RULE +++ b/src/licensedcode/data/rules/linux-openib_9.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-openib +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Linux Kernel Variant of OpenIB.org license \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_9.yml b/src/licensedcode/data/rules/linux-openib_9.yml deleted file mode 100644 index 6200b41d34b..00000000000 --- a/src/licensedcode/data/rules/linux-openib_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-openib_or_gpl-2.0_11.RULE b/src/licensedcode/data/rules/linux-openib_or_gpl-2.0_11.RULE index e98e26ab00f..0b36964c9bd 100644 --- a/src/licensedcode/data/rules/linux-openib_or_gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/linux-openib_or_gpl-2.0_11.RULE @@ -1 +1,10 @@ -Licensed under BSD (MIT variant) or GPLv2. See COPYING. +--- +license_expression: linux-openib OR gpl-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - COPYING +notes: openib mention in the kernel and/or libfabric +--- + +Licensed under BSD (MIT variant) or GPLv2. See COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_or_gpl-2.0_11.yml b/src/licensedcode/data/rules/linux-openib_or_gpl-2.0_11.yml deleted file mode 100644 index 360be7d0bb8..00000000000 --- a/src/licensedcode/data/rules/linux-openib_or_gpl-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-openib OR gpl-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - COPYING -notes: openib mention in the kernel and/or libfabric diff --git a/src/licensedcode/data/rules/linux-openib_url_1.RULE b/src/licensedcode/data/rules/linux-openib_url_1.RULE index a012354756c..8b2f4f5f7cd 100644 --- a/src/licensedcode/data/rules/linux-openib_url_1.RULE +++ b/src/licensedcode/data/rules/linux-openib_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-openib +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/linux-openib +--- + https://spdx.org/licenses/linux-openib \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_url_1.yml b/src/licensedcode/data/rules/linux-openib_url_1.yml deleted file mode 100644 index d9b3bd7d808..00000000000 --- a/src/licensedcode/data/rules/linux-openib_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/linux-openib diff --git a/src/licensedcode/data/rules/linux-openib_url_2.RULE b/src/licensedcode/data/rules/linux-openib_url_2.RULE index 5331049df69..028488f2b3c 100644 --- a/src/licensedcode/data/rules/linux-openib_url_2.RULE +++ b/src/licensedcode/data/rules/linux-openib_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-openib +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/linux-openib.html +--- + https://spdx.org/licenses/linux-openib.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-openib_url_2.yml b/src/licensedcode/data/rules/linux-openib_url_2.yml deleted file mode 100644 index f5df5fb2dae..00000000000 --- a/src/licensedcode/data/rules/linux-openib_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-openib -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/linux-openib.html diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_1.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_1.RULE index f8e44092d18..f10ffb5a49d 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_1.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_text: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.2 +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_1.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_1.yml deleted file mode 100644 index 2b77cabc884..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_text: yes -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.2 -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_10.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_10.RULE index 7f5e75a52ab..9f2477f20cd 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_10.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Linux-syscall-note +--- + {{Linux-syscall-note}} https://spdx.org/licenses/Linux-syscall-note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_10.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_10.yml deleted file mode 100644 index b79000466ca..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Linux-syscall-note diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_2.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_2.RULE index eda5b24791e..3570ec06bc6 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_2.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_2.RULE @@ -1,3 +1,17 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_text: yes +minimum_coverage: 70 +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.4 +ignorable_copyrights: + - copyrighted by me and others + - copyrighted by the Free Software Foundation +ignorable_holders: + - me and others + - the Free Software Foundation +--- + NOTE! This copyright does *not* cover user programs that use kernel services by normal system calls - this is merely considered normal use of the kernel, and does *not* fall under the heading of "derived work". diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_2.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_2.yml deleted file mode 100644 index 9c6f8125d98..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_2.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_text: yes -minimum_coverage: 70 -relevance: 100 -notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0.4 -ignorable_copyrights: - - copyrighted by me and others - - copyrighted by the Free Software Foundation -ignorable_holders: - - me and others - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_3.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_3.RULE index 34153fffe52..f2eb860e575 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_3.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_3.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Linux Syscall Note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_3.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_3.yml deleted file mode 100644 index 0977272a40e..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_4.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_4.RULE index 58886b9f116..af868ed89e4 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_4.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Linux-syscall-note Linux Syscall Note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_4.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_4.yml deleted file mode 100644 index 0977272a40e..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_5.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_5.RULE index f54e0aa6c36..c40604c1de6 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_5.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Linux-syscall-note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_5.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_5.yml deleted file mode 100644 index 95f1dccc335..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_6.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_6.RULE index 114ed21fe49..494df4fe2e0 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_6.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Linux-syscall-note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_6.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_6.yml deleted file mode 100644 index 95f1dccc335..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_7.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_7.RULE index 26a1b00d344..c653f7c962d 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_7.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_7.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Linux-syscall-note +--- + https://licenses.nuget.org/Linux-syscall-note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_7.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_7.yml deleted file mode 100644 index 027e532d2e4..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Linux-syscall-note diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_8.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_8.RULE index 2d794107474..06ceaf42f57 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_8.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_8.RULE @@ -1 +1,7 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Linux-syscall-note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_8.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_8.yml deleted file mode 100644 index 803b57ac849..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_9.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_9.RULE index 9b65e437c06..a82b269e317 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_9.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_9.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Linux-syscall-note +--- + LICENSE {{Linux-syscall-note}} https://spdx.org/licenses/Linux-syscall-note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_9.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_9.yml deleted file mode 100644 index b79000466ca..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Linux-syscall-note diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_1.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_1.RULE index e421cdf5737..3778d37216e 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_1.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/linux-syscall-note +--- + https://spdx.org/licenses/linux-syscall-note \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_1.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_1.yml deleted file mode 100644 index d94edaf3639..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/linux-syscall-note diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_2.RULE b/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_2.RULE index 478eea74e2c..556218fa77f 100644 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_2.RULE +++ b/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/linux-syscall-note.html +--- + https://spdx.org/licenses/linux-syscall-note.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_2.yml b/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_2.yml deleted file mode 100644 index ebf1c9d09c0..00000000000 --- a/src/licensedcode/data/rules/linux-syscall-exception-gpl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/linux-syscall-note.html diff --git a/src/licensedcode/data/rules/linuxbios_1.RULE b/src/licensedcode/data/rules/linuxbios_1.RULE index d6eab640bab..91e8b58c001 100644 --- a/src/licensedcode/data/rules/linuxbios_1.RULE +++ b/src/licensedcode/data/rules/linuxbios_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: linuxbios +is_license_text: yes +--- + This software and ancillary information (herein called SOFTWARE) called SCRIP is made available under the terms described here. The SOFTWARE has been approved for release with associated LA-CC Number 98-45. diff --git a/src/licensedcode/data/rules/linuxbios_1.yml b/src/licensedcode/data/rules/linuxbios_1.yml deleted file mode 100644 index 4e389d09982..00000000000 --- a/src/licensedcode/data/rules/linuxbios_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: linuxbios -is_license_text: yes diff --git a/src/licensedcode/data/rules/llgpl_1.RULE b/src/licensedcode/data/rules/llgpl_1.RULE index 07e98008ca8..84e50edf16a 100644 --- a/src/licensedcode/data/rules/llgpl_1.RULE +++ b/src/licensedcode/data/rules/llgpl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: llgpl +is_license_tag: yes +relevance: 90 +--- + licenses(["restricted"]) # LLGPL (Lisp Lesser General Public Licence) \ No newline at end of file diff --git a/src/licensedcode/data/rules/llgpl_1.yml b/src/licensedcode/data/rules/llgpl_1.yml deleted file mode 100644 index 30eedfb0873..00000000000 --- a/src/licensedcode/data/rules/llgpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: llgpl -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/llgpl_2.RULE b/src/licensedcode/data/rules/llgpl_2.RULE index 639435dc21f..2acc2140e55 100644 --- a/src/licensedcode/data/rules/llgpl_2.RULE +++ b/src/licensedcode/data/rules/llgpl_2.RULE @@ -1 +1,7 @@ +--- +license_expression: llgpl +is_license_reference: yes +relevance: 100 +--- + Lisp Lesser General Public Licence) \ No newline at end of file diff --git a/src/licensedcode/data/rules/llgpl_2.yml b/src/licensedcode/data/rules/llgpl_2.yml deleted file mode 100644 index 3523be9b24b..00000000000 --- a/src/licensedcode/data/rules/llgpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: llgpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/llgpl_3.RULE b/src/licensedcode/data/rules/llgpl_3.RULE index 66c7a159322..3c5678e07d1 100644 --- a/src/licensedcode/data/rules/llgpl_3.RULE +++ b/src/licensedcode/data/rules/llgpl_3.RULE @@ -1 +1,7 @@ +--- +license_expression: llgpl +is_license_reference: yes +relevance: 90 +--- + LLGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/llgpl_3.yml b/src/licensedcode/data/rules/llgpl_3.yml deleted file mode 100644 index 63225c800fa..00000000000 --- a/src/licensedcode/data/rules/llgpl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: llgpl -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/llgpl_4.RULE b/src/licensedcode/data/rules/llgpl_4.RULE index 21d0f9418ad..7697061112f 100644 --- a/src/licensedcode/data/rules/llgpl_4.RULE +++ b/src/licensedcode/data/rules/llgpl_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: llgpl +is_license_notice: yes +--- + ("LLGPL" t diff --git a/src/licensedcode/data/rules/llgpl_4.yml b/src/licensedcode/data/rules/llgpl_4.yml deleted file mode 100644 index 0b950a75fda..00000000000 --- a/src/licensedcode/data/rules/llgpl_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: llgpl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/llgpl_5.RULE b/src/licensedcode/data/rules/llgpl_5.RULE index 742e9d9551b..2c35821dc1d 100644 --- a/src/licensedcode/data/rules/llgpl_5.RULE +++ b/src/licensedcode/data/rules/llgpl_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: llgpl +is_license_notice: yes +--- + "This library is licenced under the Lisp Lesser General Public" "License." diff --git a/src/licensedcode/data/rules/llgpl_5.yml b/src/licensedcode/data/rules/llgpl_5.yml deleted file mode 100644 index 0b950a75fda..00000000000 --- a/src/licensedcode/data/rules/llgpl_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: llgpl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/llgpl_6.RULE b/src/licensedcode/data/rules/llgpl_6.RULE index f10124be58f..c7db0adb85f 100644 --- a/src/licensedcode/data/rules/llgpl_6.RULE +++ b/src/licensedcode/data/rules/llgpl_6.RULE @@ -1,4 +1,11 @@ +--- +license_expression: llgpl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.franz.com/preamble.html +--- + ;;;; You are granted the rights to distribute and use this software ;;;; as governed by the terms of the Lisp Lesser General Public License -;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. - +;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/llgpl_6.yml b/src/licensedcode/data/rules/llgpl_6.yml deleted file mode 100644 index 9808755d14b..00000000000 --- a/src/licensedcode/data/rules/llgpl_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: llgpl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.franz.com/preamble.html diff --git a/src/licensedcode/data/rules/llnl_1.RULE b/src/licensedcode/data/rules/llnl_1.RULE index 50f0b843709..a2425a737d8 100644 --- a/src/licensedcode/data/rules/llnl_1.RULE +++ b/src/licensedcode/data/rules/llnl_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: llnl +is_license_text: yes +relevance: 100 +--- + This work was partially produced at the University of California, Lawrence Livermore National Laboratory (UC LLNL) under contract no. W-7405-ENG-48 (Contract 48) between the U.S. Department of Energy diff --git a/src/licensedcode/data/rules/llnl_1.yml b/src/licensedcode/data/rules/llnl_1.yml deleted file mode 100644 index fbbd3e4732b..00000000000 --- a/src/licensedcode/data/rules/llnl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: llnl -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/llvm-exception_1.RULE b/src/licensedcode/data/rules/llvm-exception_1.RULE index 0392fd97304..c73d48caf34 100644 --- a/src/licensedcode/data/rules/llvm-exception_1.RULE +++ b/src/licensedcode/data/rules/llvm-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LLVM Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_1.yml b/src/licensedcode/data/rules/llvm-exception_1.yml deleted file mode 100644 index d3275b05b1b..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/llvm-exception_2.RULE b/src/licensedcode/data/rules/llvm-exception_2.RULE index d026bc935e5..762308dc785 100644 --- a/src/licensedcode/data/rules/llvm-exception_2.RULE +++ b/src/licensedcode/data/rules/llvm-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: LLVM Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_2.yml b/src/licensedcode/data/rules/llvm-exception_2.yml deleted file mode 100644 index d3275b05b1b..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/llvm-exception_3.RULE b/src/licensedcode/data/rules/llvm-exception_3.RULE index 3f1b9ee7dd3..b5ab0029bf5 100644 --- a/src/licensedcode/data/rules/llvm-exception_3.RULE +++ b/src/licensedcode/data/rules/llvm-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LLVM-exception LLVM Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_3.yml b/src/licensedcode/data/rules/llvm-exception_3.yml deleted file mode 100644 index d3275b05b1b..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/llvm-exception_4.RULE b/src/licensedcode/data/rules/llvm-exception_4.RULE index 2be385e7f31..66ae8295f59 100644 --- a/src/licensedcode/data/rules/llvm-exception_4.RULE +++ b/src/licensedcode/data/rules/llvm-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: llvm-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LLVM-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_4.yml b/src/licensedcode/data/rules/llvm-exception_4.yml deleted file mode 100644 index b7fae32b454..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: llvm-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/llvm-exception_5.RULE b/src/licensedcode/data/rules/llvm-exception_5.RULE index 572a0ade818..e503a1463d7 100644 --- a/src/licensedcode/data/rules/llvm-exception_5.RULE +++ b/src/licensedcode/data/rules/llvm-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: llvm-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: LLVM-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_5.yml b/src/licensedcode/data/rules/llvm-exception_5.yml deleted file mode 100644 index b7fae32b454..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: llvm-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/llvm-exception_6.RULE b/src/licensedcode/data/rules/llvm-exception_6.RULE index 556c9e1bd65..3074649dfa8 100644 --- a/src/licensedcode/data/rules/llvm-exception_6.RULE +++ b/src/licensedcode/data/rules/llvm-exception_6.RULE @@ -1 +1,9 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LLVM-exception +--- + https://licenses.nuget.org/LLVM-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_6.yml b/src/licensedcode/data/rules/llvm-exception_6.yml deleted file mode 100644 index fa87ac49cbe..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LLVM-exception diff --git a/src/licensedcode/data/rules/llvm-exception_7.RULE b/src/licensedcode/data/rules/llvm-exception_7.RULE index f31689e4f73..9447adb21f7 100644 --- a/src/licensedcode/data/rules/llvm-exception_7.RULE +++ b/src/licensedcode/data/rules/llvm-exception_7.RULE @@ -1 +1,7 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LLVM-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_7.yml b/src/licensedcode/data/rules/llvm-exception_7.yml deleted file mode 100644 index 4750cd94aba..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/llvm-exception_8.RULE b/src/licensedcode/data/rules/llvm-exception_8.RULE index 0626028fc1a..6eb2787a784 100644 --- a/src/licensedcode/data/rules/llvm-exception_8.RULE +++ b/src/licensedcode/data/rules/llvm-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LLVM-exception +--- + LICENSE {{LLVM-exception}} https://spdx.org/licenses/LLVM-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_8.yml b/src/licensedcode/data/rules/llvm-exception_8.yml deleted file mode 100644 index c55616bd163..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LLVM-exception diff --git a/src/licensedcode/data/rules/llvm-exception_9.RULE b/src/licensedcode/data/rules/llvm-exception_9.RULE index 04bf7ab4a04..fe7669782a1 100644 --- a/src/licensedcode/data/rules/llvm-exception_9.RULE +++ b/src/licensedcode/data/rules/llvm-exception_9.RULE @@ -1 +1,9 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LLVM-exception +--- + {{LLVM-exception}} https://spdx.org/licenses/LLVM-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_9.yml b/src/licensedcode/data/rules/llvm-exception_9.yml deleted file mode 100644 index c55616bd163..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LLVM-exception diff --git a/src/licensedcode/data/rules/llvm-exception_url_1.RULE b/src/licensedcode/data/rules/llvm-exception_url_1.RULE index 1732f62ec4c..af99979faf8 100644 --- a/src/licensedcode/data/rules/llvm-exception_url_1.RULE +++ b/src/licensedcode/data/rules/llvm-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/llvm-exception +--- + https://spdx.org/licenses/llvm-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_url_1.yml b/src/licensedcode/data/rules/llvm-exception_url_1.yml deleted file mode 100644 index 7c73af3dd7a..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/llvm-exception diff --git a/src/licensedcode/data/rules/llvm-exception_url_2.RULE b/src/licensedcode/data/rules/llvm-exception_url_2.RULE index 1e0b3f0b018..f5d6aaacd4e 100644 --- a/src/licensedcode/data/rules/llvm-exception_url_2.RULE +++ b/src/licensedcode/data/rules/llvm-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: llvm-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/llvm-exception.html +--- + https://spdx.org/licenses/llvm-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/llvm-exception_url_2.yml b/src/licensedcode/data/rules/llvm-exception_url_2.yml deleted file mode 100644 index ce7ba30fb4c..00000000000 --- a/src/licensedcode/data/rules/llvm-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: llvm-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/llvm-exception.html diff --git a/src/licensedcode/data/rules/logica-1.0.RULE b/src/licensedcode/data/rules/logica-1.0.RULE index e52d05e0b6e..bcb7f0d1606 100644 --- a/src/licensedcode/data/rules/logica-1.0.RULE +++ b/src/licensedcode/data/rules/logica-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: logica-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensmpp.logica.com/CommonPart/Download/Download.htm +--- + http://opensmpp.logica.com/CommonPart/Download/Download.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/logica-1.0.yml b/src/licensedcode/data/rules/logica-1.0.yml deleted file mode 100644 index ec1cd892628..00000000000 --- a/src/licensedcode/data/rules/logica-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: logica-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensmpp.logica.com/CommonPart/Download/Download.htm diff --git a/src/licensedcode/data/rules/lppl-1.0.RULE b/src/licensedcode/data/rules/lppl-1.0.RULE index d90027d1ba9..da66fef51ff 100644 --- a/src/licensedcode/data/rules/lppl-1.0.RULE +++ b/src/licensedcode/data/rules/lppl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.latex-project.org/lppl/lppl-1-0.txt +--- + http://www.latex-project.org/lppl/lppl-1-0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0.yml b/src/licensedcode/data/rules/lppl-1.0.yml deleted file mode 100644 index 26da5ceedf0..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.latex-project.org/lppl/lppl-1-0.txt diff --git a/src/licensedcode/data/rules/lppl-1.0_1.RULE b/src/licensedcode/data/rules/lppl-1.0_1.RULE index cbab059209e..243d56e8b01 100644 --- a/src/licensedcode/data/rules/lppl-1.0_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lppl-1.0 +is_license_notice: yes +--- + pig.sty Copyright 2001 M. Y. Name diff --git a/src/licensedcode/data/rules/lppl-1.0_1.yml b/src/licensedcode/data/rules/lppl-1.0_1.yml deleted file mode 100644 index 42db4019af8..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lppl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lppl-1.0_10.RULE b/src/licensedcode/data/rules/lppl-1.0_10.RULE index a555150c868..136f60bb64e 100644 --- a/src/licensedcode/data/rules/lppl-1.0_10.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LPPL-1.0 +--- + https://licenses.nuget.org/LPPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_10.yml b/src/licensedcode/data/rules/lppl-1.0_10.yml deleted file mode 100644 index e1944c82238..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LPPL-1.0 diff --git a/src/licensedcode/data/rules/lppl-1.0_11.RULE b/src/licensedcode/data/rules/lppl-1.0_11.RULE index 83e1b8c75ba..085358f99ac 100644 --- a/src/licensedcode/data/rules/lppl-1.0_11.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LPPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_11.yml b/src/licensedcode/data/rules/lppl-1.0_11.yml deleted file mode 100644 index 2fe2578dac1..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.0_12.RULE b/src/licensedcode/data/rules/lppl-1.0_12.RULE index 9841b789046..b7a343dcd12 100644 --- a/src/licensedcode/data/rules/lppl-1.0_12.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.0 +--- + {{LPPL-1.0}} https://spdx.org/licenses/LPPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_12.yml b/src/licensedcode/data/rules/lppl-1.0_12.yml deleted file mode 100644 index 13b0eb4034d..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.0 diff --git a/src/licensedcode/data/rules/lppl-1.0_13.RULE b/src/licensedcode/data/rules/lppl-1.0_13.RULE index e4fc2d29921..a086d35d9bc 100644 --- a/src/licensedcode/data/rules/lppl-1.0_13.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.0 +--- + LICENSE {{LPPL-1.0}} https://spdx.org/licenses/LPPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_13.yml b/src/licensedcode/data/rules/lppl-1.0_13.yml deleted file mode 100644 index 13b0eb4034d..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.0 diff --git a/src/licensedcode/data/rules/lppl-1.0_2.RULE b/src/licensedcode/data/rules/lppl-1.0_2.RULE index 2a462d2f477..59b5978fe3d 100644 --- a/src/licensedcode/data/rules/lppl-1.0_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_2.RULE @@ -1 +1,7 @@ -LPPL 1+ +--- +license_expression: lppl-1.0 +is_license_reference: yes +relevance: 100 +--- + +LPPL 1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_2.yml b/src/licensedcode/data/rules/lppl-1.0_2.yml deleted file mode 100644 index 2fe2578dac1..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.0_3.RULE b/src/licensedcode/data/rules/lppl-1.0_3.RULE index 341458e5fdf..b591a7e8876 100644 --- a/src/licensedcode/data/rules/lppl-1.0_3.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_3.yml b/src/licensedcode/data/rules/lppl-1.0_3.yml deleted file mode 100644 index 1848f7ea884..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.0_4.RULE b/src/licensedcode/data/rules/lppl-1.0_4.RULE index 5a31a5d8bc9..137663cec5e 100644 --- a/src/licensedcode/data/rules/lppl-1.0_4.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: LaTeX Project Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_4.yml b/src/licensedcode/data/rules/lppl-1.0_4.yml deleted file mode 100644 index 1848f7ea884..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.0_5.RULE b/src/licensedcode/data/rules/lppl-1.0_5.RULE index 2106795f0ed..84e489beb00 100644 --- a/src/licensedcode/data/rules/lppl-1.0_5.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LPPL-1.0 LaTeX Project Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_5.yml b/src/licensedcode/data/rules/lppl-1.0_5.yml deleted file mode 100644 index 1848f7ea884..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.0_6.RULE b/src/licensedcode/data/rules/lppl-1.0_6.RULE index 3bf93291baa..fef781ad253 100644 --- a/src/licensedcode/data/rules/lppl-1.0_6.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.0 LPPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_6.yml b/src/licensedcode/data/rules/lppl-1.0_6.yml deleted file mode 100644 index 1848f7ea884..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.0_7.RULE b/src/licensedcode/data/rules/lppl-1.0_7.RULE index 76f409cd0a0..8fd7c3f773c 100644 --- a/src/licensedcode/data/rules/lppl-1.0_7.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LPPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_7.yml b/src/licensedcode/data/rules/lppl-1.0_7.yml deleted file mode 100644 index 9348d1da07a..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.0_8.RULE b/src/licensedcode/data/rules/lppl-1.0_8.RULE index 7a130fb7124..6c924d26fbd 100644 --- a/src/licensedcode/data/rules/lppl-1.0_8.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LaTeX Project Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_8.yml b/src/licensedcode/data/rules/lppl-1.0_8.yml deleted file mode 100644 index 9348d1da07a..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.0_9.RULE b/src/licensedcode/data/rules/lppl-1.0_9.RULE index 6672b1b273c..28fdeb2a3e1 100644 --- a/src/licensedcode/data/rules/lppl-1.0_9.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LPPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_9.yml b/src/licensedcode/data/rules/lppl-1.0_9.yml deleted file mode 100644 index 9348d1da07a..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.0_url_1.RULE b/src/licensedcode/data/rules/lppl-1.0_url_1.RULE index dff560f9cde..9692ac7cc71 100644 --- a/src/licensedcode/data/rules/lppl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.0 +--- + https://spdx.org/licenses/lppl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_url_1.yml b/src/licensedcode/data/rules/lppl-1.0_url_1.yml deleted file mode 100644 index 47e4be639ac..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.0 diff --git a/src/licensedcode/data/rules/lppl-1.0_url_2.RULE b/src/licensedcode/data/rules/lppl-1.0_url_2.RULE index f15e7e6ef77..e2df960e3c8 100644 --- a/src/licensedcode/data/rules/lppl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.0.html +--- + https://spdx.org/licenses/lppl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.0_url_2.yml b/src/licensedcode/data/rules/lppl-1.0_url_2.yml deleted file mode 100644 index 71af34d21af..00000000000 --- a/src/licensedcode/data/rules/lppl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.0.html diff --git a/src/licensedcode/data/rules/lppl-1.1.RULE b/src/licensedcode/data/rules/lppl-1.1.RULE index 8f0ad7633ac..afff46242c4 100644 --- a/src/licensedcode/data/rules/lppl-1.1.RULE +++ b/src/licensedcode/data/rules/lppl-1.1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + pig.dtx Copyright 2001 M. Y. Name diff --git a/src/licensedcode/data/rules/lppl-1.1.yml b/src/licensedcode/data/rules/lppl-1.1.yml deleted file mode 100644 index be861e5e129..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lppl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.1_1.RULE b/src/licensedcode/data/rules/lppl-1.1_1.RULE index 71136ffa52c..17f04ecf13c 100644 --- a/src/licensedcode/data/rules/lppl-1.1_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.latex-project.org/lppl/lppl-1-1.txt +--- + http://www.latex-project.org/lppl/lppl-1-1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_1.yml b/src/licensedcode/data/rules/lppl-1.1_1.yml deleted file mode 100644 index bdde18d58d4..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.latex-project.org/lppl/lppl-1-1.txt diff --git a/src/licensedcode/data/rules/lppl-1.1_10.RULE b/src/licensedcode/data/rules/lppl-1.1_10.RULE index 46a1c8f885a..c0e7cf77227 100644 --- a/src/licensedcode/data/rules/lppl-1.1_10.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_10.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LPPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_10.yml b/src/licensedcode/data/rules/lppl-1.1_10.yml deleted file mode 100644 index f26afbd1d27..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.1_11.RULE b/src/licensedcode/data/rules/lppl-1.1_11.RULE index c2fab9104fa..284392bac8c 100644 --- a/src/licensedcode/data/rules/lppl-1.1_11.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.1 +--- + {{LPPL-1.1}} https://spdx.org/licenses/LPPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_11.yml b/src/licensedcode/data/rules/lppl-1.1_11.yml deleted file mode 100644 index 4a5150cd62c..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.1 diff --git a/src/licensedcode/data/rules/lppl-1.1_12.RULE b/src/licensedcode/data/rules/lppl-1.1_12.RULE index 8882fc4239c..814742d4356 100644 --- a/src/licensedcode/data/rules/lppl-1.1_12.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.1 +--- + LICENSE {{LPPL-1.1}} https://spdx.org/licenses/LPPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_12.yml b/src/licensedcode/data/rules/lppl-1.1_12.yml deleted file mode 100644 index 4a5150cd62c..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.1 diff --git a/src/licensedcode/data/rules/lppl-1.1_2.RULE b/src/licensedcode/data/rules/lppl-1.1_2.RULE index 9405d84b67d..2a2edd7a231 100644 --- a/src/licensedcode/data/rules/lppl-1.1_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_2.yml b/src/licensedcode/data/rules/lppl-1.1_2.yml deleted file mode 100644 index 65e2a8949aa..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.1_3.RULE b/src/licensedcode/data/rules/lppl-1.1_3.RULE index 680b0fbd482..da78b9373b3 100644 --- a/src/licensedcode/data/rules/lppl-1.1_3.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: LaTeX Project Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_3.yml b/src/licensedcode/data/rules/lppl-1.1_3.yml deleted file mode 100644 index 65e2a8949aa..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.1_4.RULE b/src/licensedcode/data/rules/lppl-1.1_4.RULE index 79069af7464..0baf1c9db54 100644 --- a/src/licensedcode/data/rules/lppl-1.1_4.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LPPL-1.1 LaTeX Project Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_4.yml b/src/licensedcode/data/rules/lppl-1.1_4.yml deleted file mode 100644 index 65e2a8949aa..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.1_5.RULE b/src/licensedcode/data/rules/lppl-1.1_5.RULE index 9fc22321239..4e2ea252113 100644 --- a/src/licensedcode/data/rules/lppl-1.1_5.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.1 LPPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_5.yml b/src/licensedcode/data/rules/lppl-1.1_5.yml deleted file mode 100644 index 65e2a8949aa..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.1_6.RULE b/src/licensedcode/data/rules/lppl-1.1_6.RULE index 78822199e46..e2e074ab966 100644 --- a/src/licensedcode/data/rules/lppl-1.1_6.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LPPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_6.yml b/src/licensedcode/data/rules/lppl-1.1_6.yml deleted file mode 100644 index b6034f4cdfc..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.1_7.RULE b/src/licensedcode/data/rules/lppl-1.1_7.RULE index 1038f154383..6080e1f43ad 100644 --- a/src/licensedcode/data/rules/lppl-1.1_7.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LaTeX Project Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_7.yml b/src/licensedcode/data/rules/lppl-1.1_7.yml deleted file mode 100644 index b6034f4cdfc..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.1_8.RULE b/src/licensedcode/data/rules/lppl-1.1_8.RULE index e1d3d23a0d8..1fae1945dc7 100644 --- a/src/licensedcode/data/rules/lppl-1.1_8.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LPPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_8.yml b/src/licensedcode/data/rules/lppl-1.1_8.yml deleted file mode 100644 index b6034f4cdfc..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.1_9.RULE b/src/licensedcode/data/rules/lppl-1.1_9.RULE index b2999f22b9b..a5b781f35af 100644 --- a/src/licensedcode/data/rules/lppl-1.1_9.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_9.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LPPL-1.1 +--- + https://licenses.nuget.org/LPPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_9.yml b/src/licensedcode/data/rules/lppl-1.1_9.yml deleted file mode 100644 index 95c59ef9832..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LPPL-1.1 diff --git a/src/licensedcode/data/rules/lppl-1.1_url_1.RULE b/src/licensedcode/data/rules/lppl-1.1_url_1.RULE index 37cb46a9a33..eab7c2d4463 100644 --- a/src/licensedcode/data/rules/lppl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.1 +--- + https://spdx.org/licenses/lppl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_url_1.yml b/src/licensedcode/data/rules/lppl-1.1_url_1.yml deleted file mode 100644 index 7eac5a33a49..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.1 diff --git a/src/licensedcode/data/rules/lppl-1.1_url_2.RULE b/src/licensedcode/data/rules/lppl-1.1_url_2.RULE index a6bd7e636ab..27607bcfe6f 100644 --- a/src/licensedcode/data/rules/lppl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.1.html +--- + https://spdx.org/licenses/lppl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.1_url_2.yml b/src/licensedcode/data/rules/lppl-1.1_url_2.yml deleted file mode 100644 index 1624adeef85..00000000000 --- a/src/licensedcode/data/rules/lppl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.1.html diff --git a/src/licensedcode/data/rules/lppl-1.2.RULE b/src/licensedcode/data/rules/lppl-1.2.RULE index 883ad46246b..c8314b666fc 100644 --- a/src/licensedcode/data/rules/lppl-1.2.RULE +++ b/src/licensedcode/data/rules/lppl-1.2.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.latex-project.org/lppl/lppl-1-2.txt +--- + http://www.latex-project.org/lppl/lppl-1-2.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2.yml b/src/licensedcode/data/rules/lppl-1.2.yml deleted file mode 100644 index d0fef9574d7..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.latex-project.org/lppl/lppl-1-2.txt diff --git a/src/licensedcode/data/rules/lppl-1.2_1.RULE b/src/licensedcode/data/rules/lppl-1.2_1.RULE index da822b6898b..952b89998a0 100644 --- a/src/licensedcode/data/rules/lppl-1.2_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_notice: yes +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + pig.dtx Copyright 2001 M. Y. Name diff --git a/src/licensedcode/data/rules/lppl-1.2_1.yml b/src/licensedcode/data/rules/lppl-1.2_1.yml deleted file mode 100644 index e907c203f7e..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lppl-1.2 -is_license_notice: yes -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.2_10.RULE b/src/licensedcode/data/rules/lppl-1.2_10.RULE index ccc344ceff1..a7eca8e32d4 100644 --- a/src/licensedcode/data/rules/lppl-1.2_10.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LPPL-1.2 +--- + https://licenses.nuget.org/LPPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_10.yml b/src/licensedcode/data/rules/lppl-1.2_10.yml deleted file mode 100644 index eace002e0e9..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LPPL-1.2 diff --git a/src/licensedcode/data/rules/lppl-1.2_11.RULE b/src/licensedcode/data/rules/lppl-1.2_11.RULE index 7e574e14a82..9495e21aeec 100644 --- a/src/licensedcode/data/rules/lppl-1.2_11.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_11.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LPPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_11.yml b/src/licensedcode/data/rules/lppl-1.2_11.yml deleted file mode 100644 index 55f5fa64272..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.2_12.RULE b/src/licensedcode/data/rules/lppl-1.2_12.RULE index 24e1b70294e..0d8fe0c0bf7 100644 --- a/src/licensedcode/data/rules/lppl-1.2_12.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_12.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.2 +--- + {{LPPL-1.2}} https://spdx.org/licenses/LPPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_12.yml b/src/licensedcode/data/rules/lppl-1.2_12.yml deleted file mode 100644 index fa22fc3ffa0..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.2 diff --git a/src/licensedcode/data/rules/lppl-1.2_13.RULE b/src/licensedcode/data/rules/lppl-1.2_13.RULE index 4ad80f7cc7f..c06f9b66ad3 100644 --- a/src/licensedcode/data/rules/lppl-1.2_13.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_13.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.2 +--- + LICENSE {{LPPL-1.2}} https://spdx.org/licenses/LPPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_13.yml b/src/licensedcode/data/rules/lppl-1.2_13.yml deleted file mode 100644 index fa22fc3ffa0..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.2 diff --git a/src/licensedcode/data/rules/lppl-1.2_2.RULE b/src/licensedcode/data/rules/lppl-1.2_2.RULE index 9c68dbb2c0c..219d68826a4 100644 --- a/src/licensedcode/data/rules/lppl-1.2_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_2.RULE @@ -1 +1,8 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +relevance: 100 +notes: this should be an lpp-1.2 or later BUT we do not track this license which is too rare +--- + LPPL 1.2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_2.yml b/src/licensedcode/data/rules/lppl-1.2_2.yml deleted file mode 100644 index 21ef8c33ae7..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -relevance: 100 -notes: this should be an lpp-1.2 or later BUT we do not track this license which is too rare diff --git a/src/licensedcode/data/rules/lppl-1.2_3.RULE b/src/licensedcode/data/rules/lppl-1.2_3.RULE index 7b512155b88..25e31992f7d 100644 --- a/src/licensedcode/data/rules/lppl-1.2_3.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_3.yml b/src/licensedcode/data/rules/lppl-1.2_3.yml deleted file mode 100644 index 3366fefbb37..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.2_4.RULE b/src/licensedcode/data/rules/lppl-1.2_4.RULE index 663add8e7d6..9f79b761924 100644 --- a/src/licensedcode/data/rules/lppl-1.2_4.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: LaTeX Project Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_4.yml b/src/licensedcode/data/rules/lppl-1.2_4.yml deleted file mode 100644 index 3366fefbb37..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.2_5.RULE b/src/licensedcode/data/rules/lppl-1.2_5.RULE index c25eb77a941..abd09ecf731 100644 --- a/src/licensedcode/data/rules/lppl-1.2_5.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LPPL-1.2 LaTeX Project Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_5.yml b/src/licensedcode/data/rules/lppl-1.2_5.yml deleted file mode 100644 index 3366fefbb37..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.2_6.RULE b/src/licensedcode/data/rules/lppl-1.2_6.RULE index 7eca3cfe234..43198234fc4 100644 --- a/src/licensedcode/data/rules/lppl-1.2_6.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.2 LPPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_6.yml b/src/licensedcode/data/rules/lppl-1.2_6.yml deleted file mode 100644 index 3366fefbb37..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.2_7.RULE b/src/licensedcode/data/rules/lppl-1.2_7.RULE index f9f73d96a11..9f9c891994f 100644 --- a/src/licensedcode/data/rules/lppl-1.2_7.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LPPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_7.yml b/src/licensedcode/data/rules/lppl-1.2_7.yml deleted file mode 100644 index 36c8d4b264e..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.2_8.RULE b/src/licensedcode/data/rules/lppl-1.2_8.RULE index 050b87309c5..b77e251f3e8 100644 --- a/src/licensedcode/data/rules/lppl-1.2_8.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_8.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LaTeX Project Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_8.yml b/src/licensedcode/data/rules/lppl-1.2_8.yml deleted file mode 100644 index 36c8d4b264e..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.2_9.RULE b/src/licensedcode/data/rules/lppl-1.2_9.RULE index df9a4c205a9..0fdc392f311 100644 --- a/src/licensedcode/data/rules/lppl-1.2_9.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_9.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LPPL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_9.yml b/src/licensedcode/data/rules/lppl-1.2_9.yml deleted file mode 100644 index 36c8d4b264e..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.2_url_1.RULE b/src/licensedcode/data/rules/lppl-1.2_url_1.RULE index 026d9ea3b2e..33e1417b0df 100644 --- a/src/licensedcode/data/rules/lppl-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.2 +--- + https://spdx.org/licenses/lppl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_url_1.yml b/src/licensedcode/data/rules/lppl-1.2_url_1.yml deleted file mode 100644 index f2700c4147d..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.2 diff --git a/src/licensedcode/data/rules/lppl-1.2_url_2.RULE b/src/licensedcode/data/rules/lppl-1.2_url_2.RULE index 4489f360704..56d7aa81b46 100644 --- a/src/licensedcode/data/rules/lppl-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.2.html +--- + https://spdx.org/licenses/lppl-1.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.2_url_2.yml b/src/licensedcode/data/rules/lppl-1.2_url_2.yml deleted file mode 100644 index 50a9959abda..00000000000 --- a/src/licensedcode/data/rules/lppl-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.2.html diff --git a/src/licensedcode/data/rules/lppl-1.3a.RULE b/src/licensedcode/data/rules/lppl-1.3a.RULE index 339aa6bcf5d..ff2b5a3126f 100644 --- a/src/licensedcode/data/rules/lppl-1.3a.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.latex-project.org/lppl/lppl-1-3a.txt +--- + http://www.latex-project.org/lppl/lppl-1-3a.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a.yml b/src/licensedcode/data/rules/lppl-1.3a.yml deleted file mode 100644 index 81b4389c9d9..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.latex-project.org/lppl/lppl-1-3a.txt diff --git a/src/licensedcode/data/rules/lppl-1.3a_1.RULE b/src/licensedcode/data/rules/lppl-1.3a_1.RULE index 14147236c46..70c6ef1c088 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_notice: yes +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + This work may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 of this license or (at your option) any later version. @@ -6,5 +13,4 @@ http://www.latex-project.org/lppl.txt and version 1.3 or later is part of all distributions of LaTeX version 2003/12/01 or later. -This work has the LPPL maintenance status "maintained". - +This work has the LPPL maintenance status "maintained". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_1.yml b/src/licensedcode/data/rules/lppl-1.3a_1.yml deleted file mode 100644 index 89aca500653..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lppl-1.3a -is_license_notice: yes -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3a_10.RULE b/src/licensedcode/data/rules/lppl-1.3a_10.RULE index a8965d09180..450e6c2d979 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_10.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_10.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LPPL-1.3a +--- + https://licenses.nuget.org/LPPL-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_10.yml b/src/licensedcode/data/rules/lppl-1.3a_10.yml deleted file mode 100644 index e4c70307126..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LPPL-1.3a diff --git a/src/licensedcode/data/rules/lppl-1.3a_11.RULE b/src/licensedcode/data/rules/lppl-1.3a_11.RULE index 39a98d0de41..8107a5398d1 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_11.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_11.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LPPL-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_11.yml b/src/licensedcode/data/rules/lppl-1.3a_11.yml deleted file mode 100644 index 6e093ae99d1..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.3a_12.RULE b/src/licensedcode/data/rules/lppl-1.3a_12.RULE index 67ca40b3f60..fe7e43ff430 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_12.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_12.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.3a +--- + LICENSE {{LPPL-1.3a}} https://spdx.org/licenses/LPPL-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_12.yml b/src/licensedcode/data/rules/lppl-1.3a_12.yml deleted file mode 100644 index d7cc4cb2fb7..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.3a diff --git a/src/licensedcode/data/rules/lppl-1.3a_13.RULE b/src/licensedcode/data/rules/lppl-1.3a_13.RULE index 7c4dd5eff07..203b8aba657 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_13.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_13.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.3a +--- + {{LPPL-1.3a}} https://spdx.org/licenses/LPPL-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_13.yml b/src/licensedcode/data/rules/lppl-1.3a_13.yml deleted file mode 100644 index d7cc4cb2fb7..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.3a diff --git a/src/licensedcode/data/rules/lppl-1.3a_2.RULE b/src/licensedcode/data/rules/lppl-1.3a_2.RULE index 81db0b038c9..8f823e79b10 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lppl-1.3a +is_license_text: yes +relevance: 99 +notes: this is a really for 1.3 not 1.3a but this is rather rare and highly similar +ignorable_copyrights: + - Copyright 1999 2002-03 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @@ -398,4 +411,4 @@ Important Recommendations impossible for the licensee to determine what is considered by you to comprise the Work and, in such a case, the licensee would be entitled to make reasonable conjectures as to which files comprise - the Work. + the Work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_2.yml b/src/licensedcode/data/rules/lppl-1.3a_2.yml deleted file mode 100644 index 80d9b8c774b..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lppl-1.3a -is_license_text: yes -relevance: 99 -notes: this is a really for 1.3 not 1.3a but this is rather rare and highly similar -ignorable_copyrights: - - Copyright 1999 2002-03 LaTeX3 Project -ignorable_holders: - - LaTeX3 Project -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3a_3.RULE b/src/licensedcode/data/rules/lppl-1.3a_3.RULE index 965f66adf2e..e8930751d50 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_3.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_3.yml b/src/licensedcode/data/rules/lppl-1.3a_3.yml deleted file mode 100644 index a746c0f0360..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3a_4.RULE b/src/licensedcode/data/rules/lppl-1.3a_4.RULE index 866fff5ded2..4f226a97af0 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_4.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_4.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: LaTeX Project Public License v1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_4.yml b/src/licensedcode/data/rules/lppl-1.3a_4.yml deleted file mode 100644 index a746c0f0360..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3a_5.RULE b/src/licensedcode/data/rules/lppl-1.3a_5.RULE index 24ea8a00bb0..0932c890f2c 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_5.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_5.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LPPL-1.3a LaTeX Project Public License v1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_5.yml b/src/licensedcode/data/rules/lppl-1.3a_5.yml deleted file mode 100644 index a746c0f0360..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3a_6.RULE b/src/licensedcode/data/rules/lppl-1.3a_6.RULE index 0614c99c9e4..dd55b229017 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_6.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_6.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.3a LPPL-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_6.yml b/src/licensedcode/data/rules/lppl-1.3a_6.yml deleted file mode 100644 index a746c0f0360..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3a_7.RULE b/src/licensedcode/data/rules/lppl-1.3a_7.RULE index ef65577c352..9cd4b776717 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_7.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_7.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LPPL-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_7.yml b/src/licensedcode/data/rules/lppl-1.3a_7.yml deleted file mode 100644 index 2822a218fe7..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3a -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3a_8.RULE b/src/licensedcode/data/rules/lppl-1.3a_8.RULE index 9f7e110c3d3..02dfe010187 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_8.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_8.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LaTeX Project Public License v1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_8.yml b/src/licensedcode/data/rules/lppl-1.3a_8.yml deleted file mode 100644 index 2822a218fe7..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3a -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3a_9.RULE b/src/licensedcode/data/rules/lppl-1.3a_9.RULE index 32a1206a0d2..dd78347033f 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_9.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_9.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LPPL-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_9.yml b/src/licensedcode/data/rules/lppl-1.3a_9.yml deleted file mode 100644 index 2822a218fe7..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3a -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3a_url_1.RULE b/src/licensedcode/data/rules/lppl-1.3a_url_1.RULE index 22ae27ec656..72991d8848b 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_url_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.3a +--- + https://spdx.org/licenses/lppl-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_url_1.yml b/src/licensedcode/data/rules/lppl-1.3a_url_1.yml deleted file mode 100644 index e98ed2143e9..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.3a diff --git a/src/licensedcode/data/rules/lppl-1.3a_url_2.RULE b/src/licensedcode/data/rules/lppl-1.3a_url_2.RULE index 2589cb1e6b5..b8c23856f1e 100644 --- a/src/licensedcode/data/rules/lppl-1.3a_url_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.3a_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.3a.html +--- + https://spdx.org/licenses/lppl-1.3a.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3a_url_2.yml b/src/licensedcode/data/rules/lppl-1.3a_url_2.yml deleted file mode 100644 index cc290089012..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3a_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.3a.html diff --git a/src/licensedcode/data/rules/lppl-1.3c_1.RULE b/src/licensedcode/data/rules/lppl-1.3c_1.RULE index b0925d82e1b..bf4262c28d1 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + This work may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 of this license or (at your option) any later version. The latest version of this license is in @@ -6,4 +13,4 @@ any later version. The latest version of this license is in and version 1.3 or later is part of all distributions of LaTeX version 2005/12/01 or later. -This work has the LPPL maintenance status `maintained'. +This work has the LPPL maintenance status `maintained'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_1.yml b/src/licensedcode/data/rules/lppl-1.3c_1.yml deleted file mode 100644 index 3836ab7de94..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_10.RULE b/src/licensedcode/data/rules/lppl-1.3c_10.RULE index 5ffda222c5d..3555d55e905 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_10.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + % This work may be distributed and/or modified under the % % conditions of the LaTeX Project Public License, either % % version 1.3c of this license or (at your option) any % @@ -7,4 +15,4 @@ % and version 1.3c or later is part of all distributions % % of LaTeX version 2005/12/01 or later. % % % -% This work has the LPPL maintenance status "maintained".% +% This work has the LPPL maintenance status "maintained".% \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_10.yml b/src/licensedcode/data/rules/lppl-1.3c_10.yml deleted file mode 100644 index 67f079f3256..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_11.RULE b/src/licensedcode/data/rules/lppl-1.3c_11.RULE index 91de96e5b24..e2d2923d8d8 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_11.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + % This work may be distributed and/or modified under the % % conditions of the LaTeX Project Public License, either % % version 1.3c of this license or (at your option) any % @@ -5,4 +13,4 @@ % in % % http://www.latex-project.org/lppl.txt % % and version 1.3c or later is part of all distributions % -% of LaTeX version 2005/12/01 or later. % +% of LaTeX version 2005/12/01 or later. % \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_11.yml b/src/licensedcode/data/rules/lppl-1.3c_11.yml deleted file mode 100644 index 67f079f3256..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_12.RULE b/src/licensedcode/data/rules/lppl-1.3c_12.RULE index e139eceeb39..3c72b513d64 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_12.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_12.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/lppl-1.3c +--- + https://choosealicense.com/licenses/lppl-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_12.yml b/src/licensedcode/data/rules/lppl-1.3c_12.yml deleted file mode 100644 index d61c291512a..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/lppl-1.3c diff --git a/src/licensedcode/data/rules/lppl-1.3c_13.RULE b/src/licensedcode/data/rules/lppl-1.3c_13.RULE index cc3053793cf..fe2dba15978 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_13.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_13.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/lppl-1.3c +--- + http://choosealicense.com/licenses/lppl-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_13.yml b/src/licensedcode/data/rules/lppl-1.3c_13.yml deleted file mode 100644 index 431341dcd60..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/lppl-1.3c diff --git a/src/licensedcode/data/rules/lppl-1.3c_14.RULE b/src/licensedcode/data/rules/lppl-1.3c_14.RULE index 8f035496aac..a1824ffe180 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_14.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.latex-project.org/lppl +--- + ## License The package may be modified and distributed under the terms and conditions of the [LaTeX Project Public License](https://www.latex-project.org/lppl/), version 1.3c or greater. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_14.yml b/src/licensedcode/data/rules/lppl-1.3c_14.yml deleted file mode 100644 index 503d552990b..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.latex-project.org/lppl diff --git a/src/licensedcode/data/rules/lppl-1.3c_15.RULE b/src/licensedcode/data/rules/lppl-1.3c_15.RULE index 9574c69cfbb..2c00910c9ef 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_15.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_15.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.latex-project.org/lppl +--- + package may be modified and distributed under the terms and conditions of the [LaTeX Project Public License](https://www.latex-project.org/lppl/), version 1.3c or greater. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_15.yml b/src/licensedcode/data/rules/lppl-1.3c_15.yml deleted file mode 100644 index 503d552990b..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.latex-project.org/lppl diff --git a/src/licensedcode/data/rules/lppl-1.3c_16.RULE b/src/licensedcode/data/rules/lppl-1.3c_16.RULE index 5da3089f872..e1a3e4e0647 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_16.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_16.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX support files contained in this software may be modified and distributed under the terms and conditions of the LaTeX Project Public License, version 1.3c or greater (your choice). diff --git a/src/licensedcode/data/rules/lppl-1.3c_16.yml b/src/licensedcode/data/rules/lppl-1.3c_16.yml deleted file mode 100644 index 67f079f3256..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_17.RULE b/src/licensedcode/data/rules/lppl-1.3c_17.RULE index 99683867f57..07ae286a262 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_17.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 99 +--- + Permission is granted to copy, distribute and/or modify this software under the terms of the LaTeX Project Public License (LPPL), version 1.3. This software is provided diff --git a/src/licensedcode/data/rules/lppl-1.3c_17.yml b/src/licensedcode/data/rules/lppl-1.3c_17.yml deleted file mode 100644 index 9e9062d687d..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lppl-1.3c_18.RULE b/src/licensedcode/data/rules/lppl-1.3c_18.RULE index 56118d47e1c..b7e52acaccc 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_18.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_18.RULE @@ -1,3 +1,12 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 99 +notes: See in https://github.com/plk/biblatex +ignorable_urls: + - https://www.latex-project.org/lppl.txt +--- + Licence This work may be distributed and/or modified under the conditions of the LaTeX diff --git a/src/licensedcode/data/rules/lppl-1.3c_18.yml b/src/licensedcode/data/rules/lppl-1.3c_18.yml deleted file mode 100644 index e1f6de690c3..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 99 -notes: See in https://github.com/plk/biblatex -ignorable_urls: - - https://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_19.RULE b/src/licensedcode/data/rules/lppl-1.3c_19.RULE index 01c16e7ee7e..8e325c09443 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_19.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_19.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 99 +notes: See in https://github.com/plk/biblatex +--- + This work may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 of this license or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_19.yml b/src/licensedcode/data/rules/lppl-1.3c_19.yml deleted file mode 100644 index 4984810da08..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 99 -notes: See in https://github.com/plk/biblatex diff --git a/src/licensedcode/data/rules/lppl-1.3c_2.RULE b/src/licensedcode/data/rules/lppl-1.3c_2.RULE index e36a88523d3..819c74b65c5 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.latex-project.org/lppl/lppl-1-3c.txt +--- + http://www.latex-project.org/lppl/lppl-1-3c.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_2.yml b/src/licensedcode/data/rules/lppl-1.3c_2.yml deleted file mode 100644 index 56e0e1c6481..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.latex-project.org/lppl/lppl-1-3c.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_20.RULE b/src/licensedcode/data/rules/lppl-1.3c_20.RULE index 8c0e60cf3f4..3d79a471f71 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_20.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_20.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_20.yml b/src/licensedcode/data/rules/lppl-1.3c_20.yml deleted file mode 100644 index 94b51378e71..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3c_21.RULE b/src/licensedcode/data/rules/lppl-1.3c_21.RULE index 5d9e8aa84ca..31935c0faa8 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_21.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_21.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: LaTeX Project Public License v1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_21.yml b/src/licensedcode/data/rules/lppl-1.3c_21.yml deleted file mode 100644 index 94b51378e71..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3c_22.RULE b/src/licensedcode/data/rules/lppl-1.3c_22.RULE index 9c3dbbc3864..2b9daca6ec5 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_22.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_22.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LPPL-1.3c LaTeX Project Public License v1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_22.yml b/src/licensedcode/data/rules/lppl-1.3c_22.yml deleted file mode 100644 index 94b51378e71..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3c_23.RULE b/src/licensedcode/data/rules/lppl-1.3c_23.RULE index 3a9ea8dd7b9..075fd971c1c 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_23.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_23.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LaTeX Project Public License v1.3c LPPL-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_23.yml b/src/licensedcode/data/rules/lppl-1.3c_23.yml deleted file mode 100644 index 94b51378e71..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3c_24.RULE b/src/licensedcode/data/rules/lppl-1.3c_24.RULE index 235c61ad7dc..4c5ec5dd90f 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_24.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_24.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LPPL-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_24.yml b/src/licensedcode/data/rules/lppl-1.3c_24.yml deleted file mode 100644 index 99ee4373532..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3c_25.RULE b/src/licensedcode/data/rules/lppl-1.3c_25.RULE index 23ecbe191ea..08425bfe2ec 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_25.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_25.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LaTeX Project Public License v1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_25.yml b/src/licensedcode/data/rules/lppl-1.3c_25.yml deleted file mode 100644 index 99ee4373532..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3c_26.RULE b/src/licensedcode/data/rules/lppl-1.3c_26.RULE index fd12c5ae266..9ad6d97c67e 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_26.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_26.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LPPL-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_26.yml b/src/licensedcode/data/rules/lppl-1.3c_26.yml deleted file mode 100644 index 99ee4373532..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lppl-1.3c_27.RULE b/src/licensedcode/data/rules/lppl-1.3c_27.RULE index 3dce1a3e75a..2813beaebfa 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_27.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_27.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/LaTeX_Project_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_27.yml b/src/licensedcode/data/rules/lppl-1.3c_27.yml deleted file mode 100644 index 77d95730580..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/lppl-1.3c_28.RULE b/src/licensedcode/data/rules/lppl-1.3c_28.RULE index d79a3ad4158..737f31fd6a9 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_28.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_28.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LPPL-1.3c +--- + https://licenses.nuget.org/LPPL-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_28.yml b/src/licensedcode/data/rules/lppl-1.3c_28.yml deleted file mode 100644 index 26af1392e6a..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LPPL-1.3c diff --git a/src/licensedcode/data/rules/lppl-1.3c_29.RULE b/src/licensedcode/data/rules/lppl-1.3c_29.RULE index f7a4a7c60b8..27a3662d98f 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_29.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_29.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LPPL-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_29.yml b/src/licensedcode/data/rules/lppl-1.3c_29.yml deleted file mode 100644 index 8b72c36c8fc..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.3c_3.RULE b/src/licensedcode/data/rules/lppl-1.3c_3.RULE index 069929c9330..ae911d6819b 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_3.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_3.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://latex-project.org/lppl.txt +--- + https://latex-project.org/lppl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_3.yml b/src/licensedcode/data/rules/lppl-1.3c_3.yml deleted file mode 100644 index dfa325d9f5f..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_30.RULE b/src/licensedcode/data/rules/lppl-1.3c_30.RULE index 790412433fe..4eef9f66bfc 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_30.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_30.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.3c +--- + LICENSE {{LPPL-1.3c}} https://spdx.org/licenses/LPPL-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_30.yml b/src/licensedcode/data/rules/lppl-1.3c_30.yml deleted file mode 100644 index d93009354f3..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.3c diff --git a/src/licensedcode/data/rules/lppl-1.3c_31.RULE b/src/licensedcode/data/rules/lppl-1.3c_31.RULE index ccd6f4941fd..5749b57b04d 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_31.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_31.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPPL-1.3c +--- + {{LPPL-1.3c}} https://spdx.org/licenses/LPPL-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_31.yml b/src/licensedcode/data/rules/lppl-1.3c_31.yml deleted file mode 100644 index d93009354f3..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPPL-1.3c diff --git a/src/licensedcode/data/rules/lppl-1.3c_4.RULE b/src/licensedcode/data/rules/lppl-1.3c_4.RULE index 0d4202af628..3ba5417e9b3 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_4.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_4.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.3c +is_license_tag: yes +relevance: 100 +--- + License :: OSI-Approved Open Source :: LaTeX Project Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_4.yml b/src/licensedcode/data/rules/lppl-1.3c_4.yml deleted file mode 100644 index fbfdbcdc9fd..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.3c -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.3c_5.RULE b/src/licensedcode/data/rules/lppl-1.3c_5.RULE index 50a3786a03c..b630753be92 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_5.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lppl-1.3c +is_license_text: yes +ignorable_copyrights: + - Copyright 1999 2002-2006 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + lppl (LaTeX Project Public License) The LaTeX Project Public License @@ -414,5 +425,4 @@ Important Recommendations impossible for the licensee to determine what is considered by you to comprise the Work and, in such a case, the licensee would be entitled to make reasonable conjectures as to which files comprise - the Work. - + the Work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_5.yml b/src/licensedcode/data/rules/lppl-1.3c_5.yml deleted file mode 100644 index a54c4c0d659..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lppl-1.3c -is_license_text: yes -ignorable_copyrights: - - Copyright 1999 2002-2006 LaTeX3 Project -ignorable_holders: - - LaTeX3 Project -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_6.RULE b/src/licensedcode/data/rules/lppl-1.3c_6.RULE index 08147f5d51f..73fde9fb6af 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_6.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_6.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +--- + The LaTeX Project Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_6.yml b/src/licensedcode/data/rules/lppl-1.3c_6.yml deleted file mode 100644 index 8b72c36c8fc..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.3c_7.RULE b/src/licensedcode/data/rules/lppl-1.3c_7.RULE index 9ef766597c7..d53079e71d8 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_7.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_7.RULE @@ -1 +1,7 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +--- + LaTeX Project Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_7.yml b/src/licensedcode/data/rules/lppl-1.3c_7.yml deleted file mode 100644 index 8b72c36c8fc..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lppl-1.3c_8.RULE b/src/licensedcode/data/rules/lppl-1.3c_8.RULE index 63d99b45444..2dcf6a2aca0 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_8.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_8.RULE @@ -1,3 +1,16 @@ +--- +license_expression: lppl-1.3c +is_license_text: yes +relevance: 99 +notes: this really an lppl-1.3b but we do not track it +ignorable_copyrights: + - Copyright 1999 2002-2006 LaTeX3 Project +ignorable_holders: + - LaTeX3 Project +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + The LaTeX Project Public License =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @@ -412,5 +425,4 @@ Important Recommendations impossible for the licensee to determine what is considered by you to comprise the Work and, in such a case, the licensee would be entitled to make reasonable conjectures as to which files comprise - the Work. - + the Work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_8.yml b/src/licensedcode/data/rules/lppl-1.3c_8.yml deleted file mode 100644 index 17ef6bc5687..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_8.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: lppl-1.3c -is_license_text: yes -relevance: 99 -notes: this really an lppl-1.3b but we do not track it -ignorable_copyrights: - - Copyright 1999 2002-2006 LaTeX3 Project -ignorable_holders: - - LaTeX3 Project -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_9.RULE b/src/licensedcode/data/rules/lppl-1.3c_9.RULE index 58542384634..29f4c6bfb2b 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_9.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_9.RULE @@ -1,5 +1,14 @@ +--- +license_expression: lppl-1.3c +is_license_notice: yes +relevance: 99 +notes: this really an lppl-1.3 but we do not track it +ignorable_urls: + - http://www.latex-project.org/lppl.txt +--- + may be distributed and/or modified under the conditions of the LaTeX Project Public License, either version 1.3 of this license or (at your option) any later version. The latest version of this license is in http://www.latex-project.org/lppl.txt and version 1.3 or later is -part of all distributions of LaTeX version 2003/12/01 or later. +part of all distributions of LaTeX version 2003/12/01 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_9.yml b/src/licensedcode/data/rules/lppl-1.3c_9.yml deleted file mode 100644 index e94cd0a5e4d..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_notice: yes -relevance: 99 -notes: this really an lppl-1.3 but we do not track it -ignorable_urls: - - http://www.latex-project.org/lppl.txt diff --git a/src/licensedcode/data/rules/lppl-1.3c_url_1.RULE b/src/licensedcode/data/rules/lppl-1.3c_url_1.RULE index 4ca0a522ffa..54e94112bef 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_url_1.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.3c +--- + https://spdx.org/licenses/lppl-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_url_1.yml b/src/licensedcode/data/rules/lppl-1.3c_url_1.yml deleted file mode 100644 index 14da18ca16d..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.3c diff --git a/src/licensedcode/data/rules/lppl-1.3c_url_2.RULE b/src/licensedcode/data/rules/lppl-1.3c_url_2.RULE index 3aa767b7339..0e485b477ca 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_url_2.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lppl-1.3c.html +--- + https://spdx.org/licenses/lppl-1.3c.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_url_2.yml b/src/licensedcode/data/rules/lppl-1.3c_url_2.yml deleted file mode 100644 index 339ae895447..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lppl-1.3c.html diff --git a/src/licensedcode/data/rules/lppl-1.3c_url_glc_184.RULE b/src/licensedcode/data/rules/lppl-1.3c_url_glc_184.RULE index dcbecbf1c35..2f1d37230d5 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_url_glc_184.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_url_glc_184.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lppl-1.3c +--- + http://www.opensource.org/licenses/lppl-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_url_glc_184.yml b/src/licensedcode/data/rules/lppl-1.3c_url_glc_184.yml deleted file mode 100644 index 5c6963460e2..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_url_glc_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lppl-1.3c diff --git a/src/licensedcode/data/rules/lppl-1.3c_url_glc_185.RULE b/src/licensedcode/data/rules/lppl-1.3c_url_glc_185.RULE index 0fea679ecce..704681fac32 100644 --- a/src/licensedcode/data/rules/lppl-1.3c_url_glc_185.RULE +++ b/src/licensedcode/data/rules/lppl-1.3c_url_glc_185.RULE @@ -1 +1,9 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/lppl-1.3c +--- + https://www.opensource.org/licenses/lppl-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/lppl-1.3c_url_glc_185.yml b/src/licensedcode/data/rules/lppl-1.3c_url_glc_185.yml deleted file mode 100644 index 6c132d0a1ad..00000000000 --- a/src/licensedcode/data/rules/lppl-1.3c_url_glc_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/lppl-1.3c diff --git a/src/licensedcode/data/rules/lucent-pl-1.0.RULE b/src/licensedcode/data/rules/lucent-pl-1.0.RULE index bc4a6a5087b..7c2da315715 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/plan9.php +--- + http://www.opensource.org/licenses/plan9.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0.yml b/src/licensedcode/data/rules/lucent-pl-1.0.yml deleted file mode 100644 index d195b4e5ed9..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/plan9.php diff --git a/src/licensedcode/data/rules/lucent-pl-1.02.RULE b/src/licensedcode/data/rules/lucent-pl-1.02.RULE index d97dd092868..9eb1c73ba49 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://plan9.bell-labs.com/plan9/license.html +--- + http://plan9.bell-labs.com/plan9/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02.SPDX.RULE b/src/licensedcode/data/rules/lucent-pl-1.02.SPDX.RULE index 90aabb979b4..526ec5b85fd 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02.SPDX.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lucent-pl-1.02 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2003, Lucent Technologies Inc. and others +ignorable_holders: + - Lucent Technologies Inc. and others +--- + Lucent Public License Version 1.02 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/src/licensedcode/data/rules/lucent-pl-1.02.SPDX.yml b/src/licensedcode/data/rules/lucent-pl-1.02.SPDX.yml deleted file mode 100644 index c7d5a52f7d2..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2003, Lucent Technologies Inc. and others -ignorable_holders: - - Lucent Technologies Inc. and others diff --git a/src/licensedcode/data/rules/lucent-pl-1.02.yml b/src/licensedcode/data/rules/lucent-pl-1.02.yml deleted file mode 100644 index cad9127e0a2..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://plan9.bell-labs.com/plan9/license.html diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_1.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_1.RULE index dc388571775..9c843d7f2b7 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_1.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lucent-pl-1.02 +is_license_notice: yes +relevance: 100 +--- + distributed under the Lucent Public License, Version 1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_1.yml b/src/licensedcode/data/rules/lucent-pl-1.02_1.yml deleted file mode 100644 index 713a24d77da..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_10.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_10.RULE index dbd341d67ac..83831f44131 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_10.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_10.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Lucent Public License v1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_10.yml b/src/licensedcode/data/rules/lucent-pl-1.02_10.yml deleted file mode 100644 index a5a5aff3c35..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_11.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_11.RULE index a3d53b98905..f33e26721bd 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_11.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_11.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LPL-1.02 Lucent Public License v1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_11.yml b/src/licensedcode/data/rules/lucent-pl-1.02_11.yml deleted file mode 100644 index a5a5aff3c35..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_12.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_12.RULE index a22f5338e87..f9ba2a8e7f6 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_12.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_12.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Lucent Public License v1.02 LPL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_12.yml b/src/licensedcode/data/rules/lucent-pl-1.02_12.yml deleted file mode 100644 index a5a5aff3c35..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_13.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_13.RULE index e2e1ebbd5f9..dc0019593f4 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_13.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_13.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LPL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_13.yml b/src/licensedcode/data/rules/lucent-pl-1.02_13.yml deleted file mode 100644 index b1ce7508f1d..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_14.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_14.RULE index b560d6eae9d..61f033ff77f 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_14.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_14.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Lucent Public License v1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_14.yml b/src/licensedcode/data/rules/lucent-pl-1.02_14.yml deleted file mode 100644 index b1ce7508f1d..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_15.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_15.RULE index a02371cca95..70585564839 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_15.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_15.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LPL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_15.yml b/src/licensedcode/data/rules/lucent-pl-1.02_15.yml deleted file mode 100644 index b1ce7508f1d..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_16.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_16.RULE index e2bb7b6e286..a6d803594ca 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_16.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_16.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LPL-1.02 +--- + https://licenses.nuget.org/LPL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_16.yml b/src/licensedcode/data/rules/lucent-pl-1.02_16.yml deleted file mode 100644 index 28a7fafd99f..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LPL-1.02 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_17.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_17.RULE index 0b8f94c8bf1..257a468a4b2 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_17.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_17.RULE @@ -1 +1,7 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LPL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_17.yml b/src/licensedcode/data/rules/lucent-pl-1.02_17.yml deleted file mode 100644 index aee012b62c5..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_18.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_18.RULE index 6f74cebfd12..f3a1a69ade6 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_18.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_18.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPL-1.02 +--- + LICENSE {{LPL-1.02}} https://spdx.org/licenses/LPL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_18.yml b/src/licensedcode/data/rules/lucent-pl-1.02_18.yml deleted file mode 100644 index 005ee8f7397..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPL-1.02 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_19.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_19.RULE index c807bbdb50e..93b80718603 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_19.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_19.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPL-1.02 +--- + {{LPL-1.02}} https://spdx.org/licenses/LPL-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_19.yml b/src/licensedcode/data/rules/lucent-pl-1.02_19.yml deleted file mode 100644 index 005ee8f7397..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPL-1.02 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_2.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_2.RULE index 22992c4d5d6..43916ebd9b0 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_2.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 100 +--- + Lucent Public License, Version 1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_2.yml b/src/licensedcode/data/rules/lucent-pl-1.02_2.yml deleted file mode 100644 index aee012b62c5..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_3.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_3.RULE index 327ae1cc8d2..020cb213cb9 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_3.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_3.RULE @@ -1,2 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_notice: yes +ignorable_urls: + - http://plan9.bell-labs.com/plan9dist/license.html +--- + This software is also made available under the Lucent Public License version 1.02; see http://plan9.bell-labs.com/plan9dist/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_3.yml b/src/licensedcode/data/rules/lucent-pl-1.02_3.yml deleted file mode 100644 index 4df9e763d5e..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_notice: yes -ignorable_urls: - - http://plan9.bell-labs.com/plan9dist/license.html diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_4.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_4.RULE index 882b1d538fe..699fcfaa65f 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_4.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: lucent-pl-1.02 +is_license_notice: yes +relevance: 100 +--- + The bulk of this software is derived from Plan 9 and is thus distributed under the Lucent Public License, Version 1.02, reproduced below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_4.yml b/src/licensedcode/data/rules/lucent-pl-1.02_4.yml deleted file mode 100644 index 713a24d77da..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_5.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_5.RULE index f2d0b0529f4..b0d05afdc05 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_5.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: lucent-pl-1.02 +is_license_text: yes +relevance: 100 +notes: seen in https://github.com/9fans/plan9port/blob/master/LICENSE +ignorable_copyrights: + - Copyright (c) 2003, Lucent Technologies Inc. and others +ignorable_holders: + - Lucent Technologies Inc. and others +--- + Lucent Public License Version 1.02 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_5.yml b/src/licensedcode/data/rules/lucent-pl-1.02_5.yml deleted file mode 100644 index 92654b7ee48..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_text: yes -relevance: 100 -notes: seen in https://github.com/9fans/plan9port/blob/master/LICENSE -ignorable_copyrights: - - Copyright (c) 2003, Lucent Technologies Inc. and others -ignorable_holders: - - Lucent Technologies Inc. and others diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_6.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_6.RULE index 50e01ec157d..0da2116d97c 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_6.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://9p.io/plan9/license.html +--- + This software is also made available under the Lucent Public License version 1.02; see http://9p.io/plan9/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_6.yml b/src/licensedcode/data/rules/lucent-pl-1.02_6.yml deleted file mode 100644 index 4013dcc97b1..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://9p.io/plan9/license.html diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_7.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_7.RULE index 2896a5d7808..3c3b476686e 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_7.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: lucent-pl-1.02 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ../../LICENSE +--- + The other source files in this directory do derive from Plan 9 and are distributed only under the terms of the Lucent Public License version 1.02, as detailed in ../../LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_7.yml b/src/licensedcode/data/rules/lucent-pl-1.02_7.yml deleted file mode 100644 index bcb3d63118c..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ../../LICENSE diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_8.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_8.RULE index 78d647cf65a..57a583e1e61 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_8.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_8.RULE @@ -1,2 +1,11 @@ +--- +license_expression: lucent-pl-1.02 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ../src/lib9/LICENSE +notes: https://github.com/9fans/plan9port/blob/53bf1f1ccf9a6fee9437649216ac047f80590fae/src/lib9/LICENSE +--- + // The plan9port-specific changes may be distributed // using the license in ../src/lib9/LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_8.yml b/src/licensedcode/data/rules/lucent-pl-1.02_8.yml deleted file mode 100644 index 58c36d09618..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ../src/lib9/LICENSE -notes: https://github.com/9fans/plan9port/blob/53bf1f1ccf9a6fee9437649216ac047f80590fae/src/lib9/LICENSE diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_9.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_9.RULE index f17b2d2ee04..d162dd586df 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_9.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_9.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Lucent Public License v1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_9.yml b/src/licensedcode/data/rules/lucent-pl-1.02_9.yml deleted file mode 100644 index a5a5aff3c35..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_and_gpl-1.0-plus_and_other_1.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_and_gpl-1.0-plus_and_other_1.RULE index 1b4543a2fb5..950882acae6 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_and_gpl-1.0-plus_and_other_1.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_and_gpl-1.0-plus_and_other_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: lucent-pl-1.02 AND gpl-1.0-plus AND proprietary-license AND afpl-9.0 AND + other-copyleft AND other-permissive +is_license_notice: yes +referenced_filenames: + - LICENSE.gpl + - LICENSE.afpl + - COPYING + - COPYRIGHT + - LICENSE +ignorable_copyrights: + - copyrights by B&H Inc. and Y&Y Inc. +ignorable_holders: + - B&H Inc. and Y&Y Inc. +--- + Lucent Public License, Version 1.02, reproduced below, with the following notable exceptions: diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_and_gpl-1.0-plus_and_other_1.yml b/src/licensedcode/data/rules/lucent-pl-1.02_and_gpl-1.0-plus_and_other_1.yml deleted file mode 100644 index 0370510c30f..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_and_gpl-1.0-plus_and_other_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: lucent-pl-1.02 AND gpl-1.0-plus AND proprietary-license AND afpl-9.0 AND - other-copyleft AND other-permissive -is_license_notice: yes -referenced_filenames: - - LICENSE.gpl - - LICENSE.afpl - - COPYING - - COPYRIGHT - - LICENSE -ignorable_copyrights: - - copyrights by B&H Inc. and Y&Y Inc. -ignorable_holders: - - B&H Inc. and Y&Y Inc. diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_or_mit_1.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_or_mit_1.RULE index ff893f3d187..a2fd8af745e 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_or_mit_1.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_or_mit_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lucent-pl-1.02 OR mit +is_license_notice: yes +relevance: 100 +notes: See https://github.com/9fans/plan9port/blob/master/src/lib9/LICENSE +--- + The files listed below may be redistributed either under the terms of the Lucent Public License version 1.02 or under the terms of the simpler MIT-style license at the bottom of this file. diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_or_mit_1.yml b/src/licensedcode/data/rules/lucent-pl-1.02_or_mit_1.yml deleted file mode 100644 index 550514f5ada..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_or_mit_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lucent-pl-1.02 OR mit -is_license_notice: yes -relevance: 100 -notes: See https://github.com/9fans/plan9port/blob/master/src/lib9/LICENSE diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_url_1.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_url_1.RULE index 4642adae0ce..7812951b036 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_url_1.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lpl-1.02 +--- + https://spdx.org/licenses/lpl-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_url_1.yml b/src/licensedcode/data/rules/lucent-pl-1.02_url_1.yml deleted file mode 100644 index d49c2373083..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lpl-1.02 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_url_2.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_url_2.RULE index 770973ee674..1eb60940cf5 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_url_2.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lpl-1.02.html +--- + https://spdx.org/licenses/lpl-1.02.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_url_2.yml b/src/licensedcode/data/rules/lucent-pl-1.02_url_2.yml deleted file mode 100644 index fc39ebcc757..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lpl-1.02.html diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_182.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_182.RULE index 958eb8caa29..ec98e445796 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_182.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_182.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lpl-1.02 +--- + http://www.opensource.org/licenses/lpl-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_182.yml b/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_182.yml deleted file mode 100644 index d0f6e1ee766..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lpl-1.02 diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_183.RULE b/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_183.RULE index d8af0a23007..37a1ad0f0e9 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_183.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_183.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/lpl-1.02 +--- + https://www.opensource.org/licenses/lpl-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_183.yml b/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_183.yml deleted file mode 100644 index 809542466dd..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.02_url_glc_183.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/lpl-1.02 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_1.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_1.RULE index 49e0c43e896..5eb078f1dbe 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_1.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/plan9 +--- + http://www.opensource.org/licenses/plan9 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_1.yml b/src/licensedcode/data/rules/lucent-pl-1.0_1.yml deleted file mode 100644 index d682d767699..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/plan9 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_10.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_10.RULE index 907e1cb733e..9372391232f 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_10.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LPL-1.0 +--- + https://licenses.nuget.org/LPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_10.yml b/src/licensedcode/data/rules/lucent-pl-1.0_10.yml deleted file mode 100644 index 79c863bcb33..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LPL-1.0 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_11.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_11.RULE index e826bfbafb4..4249898ffe9 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_11.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_11.yml b/src/licensedcode/data/rules/lucent-pl-1.0_11.yml deleted file mode 100644 index b7e3e651fe7..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_12.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_12.RULE index a06598d3d73..ffb44624c76 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_12.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPL-1.0 +--- + {{LPL-1.0}} https://spdx.org/licenses/LPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_12.yml b/src/licensedcode/data/rules/lucent-pl-1.0_12.yml deleted file mode 100644 index 05e70e33b03..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPL-1.0 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_13.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_13.RULE index 16a034be16c..7716765b705 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_13.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LPL-1.0 +--- + LICENSE {{LPL-1.0}} https://spdx.org/licenses/LPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_13.yml b/src/licensedcode/data/rules/lucent-pl-1.0_13.yml deleted file mode 100644 index 05e70e33b03..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LPL-1.0 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_2.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_2.RULE index fa84c7d2f31..e2e7ea4c509 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_2.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +--- + Lucent Public License Version 1.0 (Plan9) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_2.yml b/src/licensedcode/data/rules/lucent-pl-1.0_2.yml deleted file mode 100644 index b7e3e651fe7..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_3.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_3.RULE index 9d21069208f..ce4a9fca565 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_3.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Lucent Public License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_3.yml b/src/licensedcode/data/rules/lucent-pl-1.0_3.yml deleted file mode 100644 index 1240aacc31b..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_4.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_4.RULE index 3fcbb6ca70c..710bce8c312 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_4.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Lucent Public License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_4.yml b/src/licensedcode/data/rules/lucent-pl-1.0_4.yml deleted file mode 100644 index 1240aacc31b..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_5.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_5.RULE index 656be8227b6..78d2f0ef73f 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_5.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LPL-1.0 Lucent Public License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_5.yml b/src/licensedcode/data/rules/lucent-pl-1.0_5.yml deleted file mode 100644 index 1240aacc31b..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_6.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_6.RULE index 7c7516cab44..bba4de885cd 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_6.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Lucent Public License Version 1.0 LPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_6.yml b/src/licensedcode/data/rules/lucent-pl-1.0_6.yml deleted file mode 100644 index 1240aacc31b..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_7.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_7.RULE index f3a69a8e6d4..f8a04d60f6f 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_7.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_7.yml b/src/licensedcode/data/rules/lucent-pl-1.0_7.yml deleted file mode 100644 index 58e3f1590e4..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_8.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_8.RULE index ab401b16d89..b0cf419211c 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_8.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Lucent Public License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_8.yml b/src/licensedcode/data/rules/lucent-pl-1.0_8.yml deleted file mode 100644 index 58e3f1590e4..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_9.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_9.RULE index 6b3be7f153b..7711ee7902a 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_9.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: LPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_9.yml b/src/licensedcode/data/rules/lucent-pl-1.0_9.yml deleted file mode 100644 index 58e3f1590e4..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_url_1.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_url_1.RULE index d3d0091b986..d60deec9c9a 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lpl-1.0 +--- + https://spdx.org/licenses/lpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_url_1.yml b/src/licensedcode/data/rules/lucent-pl-1.0_url_1.yml deleted file mode 100644 index 3aa9e0949b1..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lpl-1.0 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_url_2.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_url_2.RULE index 51e71f6b7a2..867d304c866 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lpl-1.0.html +--- + https://spdx.org/licenses/lpl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_url_2.yml b/src/licensedcode/data/rules/lucent-pl-1.0_url_2.yml deleted file mode 100644 index 33c1f23f449..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lpl-1.0.html diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_88.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_88.RULE index f68b8e37c6f..dbc5733f7cd 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_88.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_88.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/lpl-1.0 +--- + http://opensource.org/licenses/lpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_88.yml b/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_88.yml deleted file mode 100644 index b853abf4990..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/lpl-1.0 diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_89.RULE b/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_89.RULE index 06fabb99307..bf0a364c200 100644 --- a/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_89.RULE +++ b/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_89.RULE @@ -1 +1,9 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/lpl-1.0 +--- + https://opensource.org/licenses/lpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_89.yml b/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_89.yml deleted file mode 100644 index 0267292f17f..00000000000 --- a/src/licensedcode/data/rules/lucent-pl-1.0_url_glc_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/lpl-1.0 diff --git a/src/licensedcode/data/rules/lzma-cpl-exception.RULE b/src/licensedcode/data/rules/lzma-cpl-exception.RULE index 4887d4b3ee0..12d0fa999a0 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lzma-cpl-exception +is_license_notice: yes +--- + Igor Pavlov and Amir Szekely, the authors of the LZMA compression module for NSIS, expressly permit you to statically or dynamically link your code (or bind by name) to the files from the LZMA compression module for NSIS without diff --git a/src/licensedcode/data/rules/lzma-cpl-exception.yml b/src/licensedcode/data/rules/lzma-cpl-exception.yml deleted file mode 100644 index 424dd70c320..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_1.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_1.RULE index e631a8e92e7..10f1183e8b1 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_1.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LZMA exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_1.yml b/src/licensedcode/data/rules/lzma-cpl-exception_1.yml deleted file mode 100644 index c6873325f56..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_2.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_2.RULE index 257aa18682c..1c15e193cc1 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_2.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: LZMA exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_2.yml b/src/licensedcode/data/rules/lzma-cpl-exception_2.yml deleted file mode 100644 index c6873325f56..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_3.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_3.RULE index 50ef2e63322..e007b35bf26 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_3.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + LZMA-exception LZMA exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_3.yml b/src/licensedcode/data/rules/lzma-cpl-exception_3.yml deleted file mode 100644 index c6873325f56..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_4.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_4.RULE index ca3a8baecc1..272d0ffd608 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_4.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: lzma-cpl-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: LZMA-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_4.yml b/src/licensedcode/data/rules/lzma-cpl-exception_4.yml deleted file mode 100644 index ce2231abc72..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_5.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_5.RULE index f744beca433..3acc821c6ed 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_5.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: lzma-cpl-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: LZMA-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_5.yml b/src/licensedcode/data/rules/lzma-cpl-exception_5.yml deleted file mode 100644 index ce2231abc72..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_6.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_6.RULE index 14b317d5c89..a38d8f81d03 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_6.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_6.RULE @@ -1 +1,9 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/LZMA-exception +--- + https://licenses.nuget.org/LZMA-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_6.yml b/src/licensedcode/data/rules/lzma-cpl-exception_6.yml deleted file mode 100644 index 1e46a2fd76a..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/LZMA-exception diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_7.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_7.RULE index 4ad449a56f4..2ba5d9c8f52 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_7.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_7.RULE @@ -1 +1,7 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/LZMA-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_7.yml b/src/licensedcode/data/rules/lzma-cpl-exception_7.yml deleted file mode 100644 index 327687d3612..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_8.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_8.RULE index 153e4509b73..6a5e2669cfc 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_8.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LZMA-exception +--- + {{LZMA-exception}} https://spdx.org/licenses/LZMA-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_8.yml b/src/licensedcode/data/rules/lzma-cpl-exception_8.yml deleted file mode 100644 index a052e35f72e..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LZMA-exception diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_9.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_9.RULE index 5e8e18aa460..12267950c14 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_9.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_9.RULE @@ -1 +1,9 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/LZMA-exception +--- + LICENSE {{LZMA-exception}} https://spdx.org/licenses/LZMA-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_9.yml b/src/licensedcode/data/rules/lzma-cpl-exception_9.yml deleted file mode 100644 index a052e35f72e..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/LZMA-exception diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_url_1.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_url_1.RULE index 869013a7391..a4f0dd6d6ca 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_url_1.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lzma-exception +--- + https://spdx.org/licenses/lzma-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_url_1.yml b/src/licensedcode/data/rules/lzma-cpl-exception_url_1.yml deleted file mode 100644 index 630ad57ae23..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lzma-exception diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_url_2.RULE b/src/licensedcode/data/rules/lzma-cpl-exception_url_2.RULE index 31e96e6ccb3..051c6cfef23 100644 --- a/src/licensedcode/data/rules/lzma-cpl-exception_url_2.RULE +++ b/src/licensedcode/data/rules/lzma-cpl-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: lzma-cpl-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/lzma-exception.html +--- + https://spdx.org/licenses/lzma-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-cpl-exception_url_2.yml b/src/licensedcode/data/rules/lzma-cpl-exception_url_2.yml deleted file mode 100644 index 926d1208003..00000000000 --- a/src/licensedcode/data/rules/lzma-cpl-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lzma-cpl-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/lzma-exception.html diff --git a/src/licensedcode/data/rules/lzma-sdk-pd.RULE b/src/licensedcode/data/rules/lzma-sdk-pd.RULE index 86e25dafd9b..4b555e74d6b 100644 --- a/src/licensedcode/data/rules/lzma-sdk-pd.RULE +++ b/src/licensedcode/data/rules/lzma-sdk-pd.RULE @@ -1,6 +1,11 @@ +--- +license_expression: lzma-sdk-pd +is_license_notice: yes +--- + LICENSE ------- LZMA SDK is written and placed in the public domain by Igor Pavlov. -Some code in LZMA SDK is based on public domain code from another developers +Some code in LZMA SDK is based on public domain code from another developers \ No newline at end of file diff --git a/src/licensedcode/data/rules/lzma-sdk-pd.yml b/src/licensedcode/data/rules/lzma-sdk-pd.yml deleted file mode 100644 index d6b8541cd0d..00000000000 --- a/src/licensedcode/data/rules/lzma-sdk-pd.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lzma-sdk-pd -is_license_notice: yes diff --git a/src/licensedcode/data/rules/m-plus_1.RULE b/src/licensedcode/data/rules/m-plus_1.RULE index a9c347f0344..dc41414e499 100644 --- a/src/licensedcode/data/rules/m-plus_1.RULE +++ b/src/licensedcode/data/rules/m-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: m-plus +is_license_text: yes +relevance: 100 +--- + You can use, copy, and distribute it, with or without modification, either commercially and noncommercially. \ No newline at end of file diff --git a/src/licensedcode/data/rules/m-plus_1.yml b/src/licensedcode/data/rules/m-plus_1.yml deleted file mode 100644 index b249b3a86cc..00000000000 --- a/src/licensedcode/data/rules/m-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: m-plus -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/m-plus_2.RULE b/src/licensedcode/data/rules/m-plus_2.RULE index 8129bc7679d..9e1909ccae1 100644 --- a/src/licensedcode/data/rules/m-plus_2.RULE +++ b/src/licensedcode/data/rules/m-plus_2.RULE @@ -1 +1,6 @@ +--- +license_expression: m-plus +is_license_text: yes +--- + a font family under the Free license. You can use, copy, and distribute it, with or without modification, either commercially and noncommercially. \ No newline at end of file diff --git a/src/licensedcode/data/rules/m-plus_2.yml b/src/licensedcode/data/rules/m-plus_2.yml deleted file mode 100644 index 947c2ee7cd5..00000000000 --- a/src/licensedcode/data/rules/m-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: m-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/m-plus_3.RULE b/src/licensedcode/data/rules/m-plus_3.RULE index d69af0a8ca0..17aaf213083 100644 --- a/src/licensedcode/data/rules/m-plus_3.RULE +++ b/src/licensedcode/data/rules/m-plus_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: m-plus +is_license_text: yes +--- + LICENSE These fonts are free softwares. diff --git a/src/licensedcode/data/rules/m-plus_3.yml b/src/licensedcode/data/rules/m-plus_3.yml deleted file mode 100644 index 947c2ee7cd5..00000000000 --- a/src/licensedcode/data/rules/m-plus_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: m-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/m-plus_4.RULE b/src/licensedcode/data/rules/m-plus_4.RULE index fb7a838bc53..96e3a160106 100644 --- a/src/licensedcode/data/rules/m-plus_4.RULE +++ b/src/licensedcode/data/rules/m-plus_4.RULE @@ -1 +1,13 @@ +--- +license_expression: m-plus +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc This is + not exactly a bsd-zero and we track this as a the m-plus license +ignorable_authors: + - Unlimited +ignorable_urls: + - https://opensource.org/licenses/0BSD +--- + These fonts are free software and are designed and maintained by . Unlimited permission is granted to use, copy, and distribute them, with or without modification, either commercially or noncommercially. THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. (Effectively the same as the Zero-Clause BSD License: https://opensource.org/licenses/0BSD). \ No newline at end of file diff --git a/src/licensedcode/data/rules/m-plus_4.yml b/src/licensedcode/data/rules/m-plus_4.yml deleted file mode 100644 index cfdcb5196de..00000000000 --- a/src/licensedcode/data/rules/m-plus_4.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: m-plus -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc This is - not exactly a bsd-zero and we track this as a the m-plus license -ignorable_authors: - - Unlimited -ignorable_urls: - - https://opensource.org/licenses/0BSD diff --git a/src/licensedcode/data/rules/m-plus_5.RULE b/src/licensedcode/data/rules/m-plus_5.RULE index 86e060c0241..ea717e19a96 100644 --- a/src/licensedcode/data/rules/m-plus_5.RULE +++ b/src/licensedcode/data/rules/m-plus_5.RULE @@ -1 +1,8 @@ +--- +license_expression: m-plus +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc +--- + Unlimited permission is granted to use, copy, and distribute them, with or without modification, either commercially or noncommercially. THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/m-plus_5.yml b/src/licensedcode/data/rules/m-plus_5.yml deleted file mode 100644 index 40c1cbba115..00000000000 --- a/src/licensedcode/data/rules/m-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: m-plus -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc diff --git a/src/licensedcode/data/rules/makeindex2.RULE b/src/licensedcode/data/rules/makeindex2.RULE index b4803966f8d..70740f2f42e 100644 --- a/src/licensedcode/data/rules/makeindex2.RULE +++ b/src/licensedcode/data/rules/makeindex2.RULE @@ -1 +1,7 @@ +--- +license_expression: makeindex +is_license_reference: yes +relevance: 100 +--- + MakeIndex Distribution Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex2.yml b/src/licensedcode/data/rules/makeindex2.yml deleted file mode 100644 index df0bb0bc2a5..00000000000 --- a/src/licensedcode/data/rules/makeindex2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/makeindex_1.RULE b/src/licensedcode/data/rules/makeindex_1.RULE index 63b98a45926..74546e95dec 100644 --- a/src/licensedcode/data/rules/makeindex_1.RULE +++ b/src/licensedcode/data/rules/makeindex_1.RULE @@ -1 +1,10 @@ +--- +license_expression: makeindex +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MakeIndex License \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_1.yml b/src/licensedcode/data/rules/makeindex_1.yml deleted file mode 100644 index 41147f02746..00000000000 --- a/src/licensedcode/data/rules/makeindex_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/makeindex_10.RULE b/src/licensedcode/data/rules/makeindex_10.RULE index 8d3fd544b3b..30568e794eb 100644 --- a/src/licensedcode/data/rules/makeindex_10.RULE +++ b/src/licensedcode/data/rules/makeindex_10.RULE @@ -1 +1,9 @@ +--- +license_expression: makeindex +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MakeIndex +--- + {{MakeIndex}} https://spdx.org/licenses/MakeIndex \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_10.yml b/src/licensedcode/data/rules/makeindex_10.yml deleted file mode 100644 index 54471ba53ea..00000000000 --- a/src/licensedcode/data/rules/makeindex_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MakeIndex diff --git a/src/licensedcode/data/rules/makeindex_11.RULE b/src/licensedcode/data/rules/makeindex_11.RULE index 5d83c8c45f2..e30fdab8fba 100644 --- a/src/licensedcode/data/rules/makeindex_11.RULE +++ b/src/licensedcode/data/rules/makeindex_11.RULE @@ -1 +1,9 @@ +--- +license_expression: makeindex +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MakeIndex +--- + LICENSE {{MakeIndex}} https://spdx.org/licenses/MakeIndex \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_11.yml b/src/licensedcode/data/rules/makeindex_11.yml deleted file mode 100644 index 54471ba53ea..00000000000 --- a/src/licensedcode/data/rules/makeindex_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MakeIndex diff --git a/src/licensedcode/data/rules/makeindex_2.RULE b/src/licensedcode/data/rules/makeindex_2.RULE index fbed1e9d108..a675442d294 100644 --- a/src/licensedcode/data/rules/makeindex_2.RULE +++ b/src/licensedcode/data/rules/makeindex_2.RULE @@ -1 +1,10 @@ +--- +license_expression: makeindex +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: MakeIndex License \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_2.yml b/src/licensedcode/data/rules/makeindex_2.yml deleted file mode 100644 index 41147f02746..00000000000 --- a/src/licensedcode/data/rules/makeindex_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/makeindex_3.RULE b/src/licensedcode/data/rules/makeindex_3.RULE index 9cc43df692b..5d3cc7cfd96 100644 --- a/src/licensedcode/data/rules/makeindex_3.RULE +++ b/src/licensedcode/data/rules/makeindex_3.RULE @@ -1 +1,10 @@ +--- +license_expression: makeindex +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MakeIndex MakeIndex License \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_3.yml b/src/licensedcode/data/rules/makeindex_3.yml deleted file mode 100644 index 41147f02746..00000000000 --- a/src/licensedcode/data/rules/makeindex_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/makeindex_4.RULE b/src/licensedcode/data/rules/makeindex_4.RULE index 2f9e03d897c..e0c448dabaa 100644 --- a/src/licensedcode/data/rules/makeindex_4.RULE +++ b/src/licensedcode/data/rules/makeindex_4.RULE @@ -1 +1,10 @@ +--- +license_expression: makeindex +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MakeIndex License MakeIndex \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_4.yml b/src/licensedcode/data/rules/makeindex_4.yml deleted file mode 100644 index 41147f02746..00000000000 --- a/src/licensedcode/data/rules/makeindex_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/makeindex_5.RULE b/src/licensedcode/data/rules/makeindex_5.RULE index c7c94603009..a2889c5130d 100644 --- a/src/licensedcode/data/rules/makeindex_5.RULE +++ b/src/licensedcode/data/rules/makeindex_5.RULE @@ -1 +1,10 @@ +--- +license_expression: makeindex +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MakeIndex \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_5.yml b/src/licensedcode/data/rules/makeindex_5.yml deleted file mode 100644 index fd5bcb9a140..00000000000 --- a/src/licensedcode/data/rules/makeindex_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: makeindex -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/makeindex_6.RULE b/src/licensedcode/data/rules/makeindex_6.RULE index a9b37770135..e32e3d222eb 100644 --- a/src/licensedcode/data/rules/makeindex_6.RULE +++ b/src/licensedcode/data/rules/makeindex_6.RULE @@ -1 +1,10 @@ +--- +license_expression: makeindex +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MakeIndex License \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_6.yml b/src/licensedcode/data/rules/makeindex_6.yml deleted file mode 100644 index fd5bcb9a140..00000000000 --- a/src/licensedcode/data/rules/makeindex_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: makeindex -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/makeindex_7.RULE b/src/licensedcode/data/rules/makeindex_7.RULE index 1965d150ebb..c9db7d07929 100644 --- a/src/licensedcode/data/rules/makeindex_7.RULE +++ b/src/licensedcode/data/rules/makeindex_7.RULE @@ -1 +1,10 @@ +--- +license_expression: makeindex +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MakeIndex \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_7.yml b/src/licensedcode/data/rules/makeindex_7.yml deleted file mode 100644 index fd5bcb9a140..00000000000 --- a/src/licensedcode/data/rules/makeindex_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: makeindex -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/makeindex_8.RULE b/src/licensedcode/data/rules/makeindex_8.RULE index fe3304f211e..50d7d60eec0 100644 --- a/src/licensedcode/data/rules/makeindex_8.RULE +++ b/src/licensedcode/data/rules/makeindex_8.RULE @@ -1 +1,9 @@ +--- +license_expression: makeindex +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MakeIndex +--- + https://licenses.nuget.org/MakeIndex \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_8.yml b/src/licensedcode/data/rules/makeindex_8.yml deleted file mode 100644 index e08aa22e328..00000000000 --- a/src/licensedcode/data/rules/makeindex_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MakeIndex diff --git a/src/licensedcode/data/rules/makeindex_9.RULE b/src/licensedcode/data/rules/makeindex_9.RULE index 55f7fe85408..61e21afdc1a 100644 --- a/src/licensedcode/data/rules/makeindex_9.RULE +++ b/src/licensedcode/data/rules/makeindex_9.RULE @@ -1 +1,7 @@ +--- +license_expression: makeindex +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MakeIndex \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_9.yml b/src/licensedcode/data/rules/makeindex_9.yml deleted file mode 100644 index df0bb0bc2a5..00000000000 --- a/src/licensedcode/data/rules/makeindex_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/makeindex_url_1.RULE b/src/licensedcode/data/rules/makeindex_url_1.RULE index 85ea7d8926e..48d52dc8e14 100644 --- a/src/licensedcode/data/rules/makeindex_url_1.RULE +++ b/src/licensedcode/data/rules/makeindex_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: makeindex +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/makeindex +--- + https://spdx.org/licenses/makeindex \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_url_1.yml b/src/licensedcode/data/rules/makeindex_url_1.yml deleted file mode 100644 index d8684146ae2..00000000000 --- a/src/licensedcode/data/rules/makeindex_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/makeindex diff --git a/src/licensedcode/data/rules/makeindex_url_2.RULE b/src/licensedcode/data/rules/makeindex_url_2.RULE index e06fb63c0fa..aedc43cf65d 100644 --- a/src/licensedcode/data/rules/makeindex_url_2.RULE +++ b/src/licensedcode/data/rules/makeindex_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: makeindex +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/makeindex.html +--- + https://spdx.org/licenses/makeindex.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/makeindex_url_2.yml b/src/licensedcode/data/rules/makeindex_url_2.yml deleted file mode 100644 index 5f6399d758f..00000000000 --- a/src/licensedcode/data/rules/makeindex_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: makeindex -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/makeindex.html diff --git a/src/licensedcode/data/rules/mattkruse.RULE b/src/licensedcode/data/rules/mattkruse.RULE index 74cb2371c7c..7209e2baaad 100644 --- a/src/licensedcode/data/rules/mattkruse.RULE +++ b/src/licensedcode/data/rules/mattkruse.RULE @@ -1 +1,9 @@ +--- +license_expression: mattkruse +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mattkruse.com/ +--- + http://www.mattkruse.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mattkruse.yml b/src/licensedcode/data/rules/mattkruse.yml deleted file mode 100644 index 0ea467f17e4..00000000000 --- a/src/licensedcode/data/rules/mattkruse.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mattkruse -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mattkruse.com/ diff --git a/src/licensedcode/data/rules/mattkruse_1.RULE b/src/licensedcode/data/rules/mattkruse_1.RULE index 8681200bcbc..0f93fc44cac 100644 --- a/src/licensedcode/data/rules/mattkruse_1.RULE +++ b/src/licensedcode/data/rules/mattkruse_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mattkruse +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.mattkruse.com/ +--- + WWW: http://www.mattkruse.com/ NOTICE: You may use this code for any purpose, commercial or diff --git a/src/licensedcode/data/rules/mattkruse_1.yml b/src/licensedcode/data/rules/mattkruse_1.yml deleted file mode 100644 index d1a267d09c1..00000000000 --- a/src/licensedcode/data/rules/mattkruse_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mattkruse -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.mattkruse.com/ diff --git a/src/licensedcode/data/rules/maven_pom_1.RULE b/src/licensedcode/data/rules/maven_pom_1.RULE index 3edce4b1e55..7f4a2ec7380 100644 --- a/src/licensedcode/data/rules/maven_pom_1.RULE +++ b/src/licensedcode/data/rules/maven_pom_1.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_1.yml b/src/licensedcode/data/rules/maven_pom_1.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/maven_pom_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/maven_pom_10.RULE b/src/licensedcode/data/rules/maven_pom_10.RULE index 170fe2847dd..cf07bf3653c 100644 --- a/src/licensedcode/data/rules/maven_pom_10.RULE +++ b/src/licensedcode/data/rules/maven_pom_10.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + License: BSD License (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_10.yml b/src/licensedcode/data/rules/maven_pom_10.yml deleted file mode 100644 index 1dab731ccb9..00000000000 --- a/src/licensedcode/data/rules/maven_pom_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/maven_pom_11.RULE b/src/licensedcode/data/rules/maven_pom_11.RULE index 990d0ea07ee..3d26b55dec6 100644 --- a/src/licensedcode/data/rules/maven_pom_11.RULE +++ b/src/licensedcode/data/rules/maven_pom_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mozilla1.1 +--- + License: Mozilla Public License 1.1 (http://www.opensource.org/licenses/mozilla1.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_11.yml b/src/licensedcode/data/rules/maven_pom_11.yml deleted file mode 100644 index ce6ac9956bf..00000000000 --- a/src/licensedcode/data/rules/maven_pom_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mozilla1.1 diff --git a/src/licensedcode/data/rules/maven_pom_12.RULE b/src/licensedcode/data/rules/maven_pom_12.RULE index b72cf701684..905d011bffd 100644 --- a/src/licensedcode/data/rules/maven_pom_12.RULE +++ b/src/licensedcode/data/rules/maven_pom_12.RULE @@ -1 +1,7 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +--- + License: BSD (LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_12.yml b/src/licensedcode/data/rules/maven_pom_12.yml deleted file mode 100644 index 90976ddc8c6..00000000000 --- a/src/licensedcode/data/rules/maven_pom_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/maven_pom_13.RULE b/src/licensedcode/data/rules/maven_pom_13.RULE index 0b099176e14..77b297cbfd2 100644 --- a/src/licensedcode/data/rules/maven_pom_13.RULE +++ b/src/licensedcode/data/rules/maven_pom_13.RULE @@ -1 +1,9 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/cddl1.php +--- + License: CDDL, v1.0 (http://www.opensource.org/licenses/cddl1.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_13.yml b/src/licensedcode/data/rules/maven_pom_13.yml deleted file mode 100644 index 018abd5b844..00000000000 --- a/src/licensedcode/data/rules/maven_pom_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/cddl1.php diff --git a/src/licensedcode/data/rules/maven_pom_14.RULE b/src/licensedcode/data/rules/maven_pom_14.RULE index dd7c68e9fa8..25dfde1ab2a 100644 --- a/src/licensedcode/data/rules/maven_pom_14.RULE +++ b/src/licensedcode/data/rules/maven_pom_14.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/lgpl-license.php +--- + License: LGPL, v2.1 or later (http://www.opensource.org/licenses/lgpl-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_14.yml b/src/licensedcode/data/rules/maven_pom_14.yml deleted file mode 100644 index f37f0d2d15b..00000000000 --- a/src/licensedcode/data/rules/maven_pom_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/lgpl-license.php diff --git a/src/licensedcode/data/rules/maven_pom_16.RULE b/src/licensedcode/data/rules/maven_pom_16.RULE index bc64c5c8c08..aa3988ae88a 100644 --- a/src/licensedcode/data/rules/maven_pom_16.RULE +++ b/src/licensedcode/data/rules/maven_pom_16.RULE @@ -1 +1,9 @@ -License: LGPL, version 2.1 (http://www.gnu.org/licenses/licenses.html) +--- +license_expression: lgpl-2.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/licenses.html +--- + +License: LGPL, version 2.1 (http://www.gnu.org/licenses/licenses.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_16.yml b/src/licensedcode/data/rules/maven_pom_16.yml deleted file mode 100644 index fa5cba12cb0..00000000000 --- a/src/licensedcode/data/rules/maven_pom_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/licenses.html diff --git a/src/licensedcode/data/rules/maven_pom_161.RULE b/src/licensedcode/data/rules/maven_pom_161.RULE index 43432ecb988..1be2d8c60fd 100644 --- a/src/licensedcode/data/rules/maven_pom_161.RULE +++ b/src/licensedcode/data/rules/maven_pom_161.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses +--- + License: ASL, version 2 (http://www.apache.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_161.yml b/src/licensedcode/data/rules/maven_pom_161.yml deleted file mode 100644 index c0ce6d03e95..00000000000 --- a/src/licensedcode/data/rules/maven_pom_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses diff --git a/src/licensedcode/data/rules/maven_pom_18.RULE b/src/licensedcode/data/rules/maven_pom_18.RULE index f287afd0cbc..a4eebcfc1a2 100644 --- a/src/licensedcode/data/rules/maven_pom_18.RULE +++ b/src/licensedcode/data/rules/maven_pom_18.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + License: MIT License (MIT) (http://opensource.org/licenses/mit-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_18.yml b/src/licensedcode/data/rules/maven_pom_18.yml deleted file mode 100644 index c4f11ce4063..00000000000 --- a/src/licensedcode/data/rules/maven_pom_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/maven_pom_20.RULE b/src/licensedcode/data/rules/maven_pom_20.RULE index f2e2ec0e598..795098b7654 100644 --- a/src/licensedcode/data/rules/maven_pom_20.RULE +++ b/src/licensedcode/data/rules/maven_pom_20.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + License: Mozilla Public License 1.1 (MPL 1.1) (http://www.mozilla.org/MPL/MPL-1.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_20.yml b/src/licensedcode/data/rules/maven_pom_20.yml deleted file mode 100644 index b8ff5ed6878..00000000000 --- a/src/licensedcode/data/rules/maven_pom_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/maven_pom_21.RULE b/src/licensedcode/data/rules/maven_pom_21.RULE index b7b6882f647..3b4fd12120e 100644 --- a/src/licensedcode/data/rules/maven_pom_21.RULE +++ b/src/licensedcode/data/rules/maven_pom_21.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + License: New BSD license (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_21.yml b/src/licensedcode/data/rules/maven_pom_21.yml deleted file mode 100644 index 1dab731ccb9..00000000000 --- a/src/licensedcode/data/rules/maven_pom_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/maven_pom_22.RULE b/src/licensedcode/data/rules/maven_pom_22.RULE index 3fbfa2682a7..c3fae0a59c0 100644 --- a/src/licensedcode/data/rules/maven_pom_22.RULE +++ b/src/licensedcode/data/rules/maven_pom_22.RULE @@ -1 +1,13 @@ +--- +license_expression: ogc +is_license_tag: yes +relevance: 100 +ignorable_copyrights: + - copyright (https://geoapi.svn.sourceforge.net/svnroot/geoapi/branches/3.0.x/LICENSE.txt) +ignorable_holders: + - https://geoapi.svn.sourceforge.net/svnroot/geoapi/branches/3.0.x/LICENSE.txt +ignorable_urls: + - https://geoapi.svn.sourceforge.net/svnroot/geoapi/branches/3.0.x/LICENSE.txt +--- + License: OGC copyright (https://geoapi.svn.sourceforge.net/svnroot/geoapi/branches/3.0.x/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_22.yml b/src/licensedcode/data/rules/maven_pom_22.yml deleted file mode 100644 index 8c403dd4a73..00000000000 --- a/src/licensedcode/data/rules/maven_pom_22.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ogc -is_license_tag: yes -relevance: 100 -ignorable_copyrights: - - copyright (https://geoapi.svn.sourceforge.net/svnroot/geoapi/branches/3.0.x/LICENSE.txt) -ignorable_holders: - - https://geoapi.svn.sourceforge.net/svnroot/geoapi/branches/3.0.x/LICENSE.txt -ignorable_urls: - - https://geoapi.svn.sourceforge.net/svnroot/geoapi/branches/3.0.x/LICENSE.txt diff --git a/src/licensedcode/data/rules/maven_pom_24.RULE b/src/licensedcode/data/rules/maven_pom_24.RULE index d46cdd9b438..20fcfd414a3 100644 --- a/src/licensedcode/data/rules/maven_pom_24.RULE +++ b/src/licensedcode/data/rules/maven_pom_24.RULE @@ -1 +1,8 @@ +--- +license_expression: jdom +is_license_tag: yes +ignorable_urls: + - https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt +--- + License: Similar to Apache License but with the acknowledgment clause removed (https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_24.yml b/src/licensedcode/data/rules/maven_pom_24.yml deleted file mode 100644 index ec0508d1ef3..00000000000 --- a/src/licensedcode/data/rules/maven_pom_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: jdom -is_license_tag: yes -ignorable_urls: - - https://raw.github.com/hunterhacker/jdom/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/maven_pom_25.RULE b/src/licensedcode/data/rules/maven_pom_25.RULE index e1bf083a93c..e7ae1481bbb 100644 --- a/src/licensedcode/data/rules/maven_pom_25.RULE +++ b/src/licensedcode/data/rules/maven_pom_25.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + License: Specification License (LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_25.yml b/src/licensedcode/data/rules/maven_pom_25.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/maven_pom_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/maven_pom_27.RULE b/src/licensedcode/data/rules/maven_pom_27.RULE index f539dcb68b2..0cec026e32c 100644 --- a/src/licensedcode/data/rules/maven_pom_27.RULE +++ b/src/licensedcode/data/rules/maven_pom_27.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: The Apache Software License, Version 2.0 (/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_27.yml b/src/licensedcode/data/rules/maven_pom_27.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/maven_pom_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/maven_pom_28.RULE b/src/licensedcode/data/rules/maven_pom_28.RULE index 43646e07e7c..b1a5069b5cc 100644 --- a/src/licensedcode/data/rules/maven_pom_28.RULE +++ b/src/licensedcode/data/rules/maven_pom_28.RULE @@ -1 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +--- + License: The Apache Software License, Version 2.0 (src/assemble/EHCACHE-CORE-LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_28.yml b/src/licensedcode/data/rules/maven_pom_28.yml deleted file mode 100644 index 161191f152f..00000000000 --- a/src/licensedcode/data/rules/maven_pom_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/maven_pom_29.RULE b/src/licensedcode/data/rules/maven_pom_29.RULE index 87d3a54b63c..42510ca358f 100644 --- a/src/licensedcode/data/rules/maven_pom_29.RULE +++ b/src/licensedcode/data/rules/maven_pom_29.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.adobe.com/devnet/xmp/library/eula-xmp-library-java.html +--- + License: The BSD License (http://www.adobe.com/devnet/xmp/library/eula-xmp-library-java.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_29.yml b/src/licensedcode/data/rules/maven_pom_29.yml deleted file mode 100644 index 0b372d37710..00000000000 --- a/src/licensedcode/data/rules/maven_pom_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.adobe.com/devnet/xmp/library/eula-xmp-library-java.html diff --git a/src/licensedcode/data/rules/maven_pom_3.RULE b/src/licensedcode/data/rules/maven_pom_3.RULE index 49fa5ca89cf..44eef704048 100644 --- a/src/licensedcode/data/rules/maven_pom_3.RULE +++ b/src/licensedcode/data/rules/maven_pom_3.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_3.yml b/src/licensedcode/data/rules/maven_pom_3.yml deleted file mode 100644 index c2b5ccb3c6b..00000000000 --- a/src/licensedcode/data/rules/maven_pom_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/maven_pom_30.RULE b/src/licensedcode/data/rules/maven_pom_30.RULE index 3154b71596a..ee413d577eb 100644 --- a/src/licensedcode/data/rules/maven_pom_30.RULE +++ b/src/licensedcode/data/rules/maven_pom_30.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.html +--- + License: The BSD License (http://www.opensource.org/licenses/bsd-license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_30.yml b/src/licensedcode/data/rules/maven_pom_30.yml deleted file mode 100644 index 28b9a2a8939..00000000000 --- a/src/licensedcode/data/rules/maven_pom_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.html diff --git a/src/licensedcode/data/rules/maven_pom_31.RULE b/src/licensedcode/data/rules/maven_pom_31.RULE index b37a6eaf238..a6eb9afd8e7 100644 --- a/src/licensedcode/data/rules/maven_pom_31.RULE +++ b/src/licensedcode/data/rules/maven_pom_31.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/bsd-license.php +--- + License: The BSD License (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_31.yml b/src/licensedcode/data/rules/maven_pom_31.yml deleted file mode 100644 index 1dab731ccb9..00000000000 --- a/src/licensedcode/data/rules/maven_pom_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/bsd-license.php diff --git a/src/licensedcode/data/rules/maven_pom_32.RULE b/src/licensedcode/data/rules/maven_pom_32.RULE index 5a0c8444d8b..9dafaeb9918 100644 --- a/src/licensedcode/data/rules/maven_pom_32.RULE +++ b/src/licensedcode/data/rules/maven_pom_32.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/2.5 +--- + License: CC BY-SA 2.5 (http://creativecommons.org/licenses/by-sa/2.5/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_32.yml b/src/licensedcode/data/rules/maven_pom_32.yml deleted file mode 100644 index 9d569f7dda9..00000000000 --- a/src/licensedcode/data/rules/maven_pom_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/2.5 diff --git a/src/licensedcode/data/rules/maven_pom_34.RULE b/src/licensedcode/data/rules/maven_pom_34.RULE index ccd9ca10a18..ad348b1a93e 100644 --- a/src/licensedcode/data/rules/maven_pom_34.RULE +++ b/src/licensedcode/data/rules/maven_pom_34.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/zlib-license +--- + License: The zlib/libpng License (http://www.opensource.org/licenses/zlib-license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_34.yml b/src/licensedcode/data/rules/maven_pom_34.yml deleted file mode 100644 index a168b73789f..00000000000 --- a/src/licensedcode/data/rules/maven_pom_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/zlib-license diff --git a/src/licensedcode/data/rules/maven_pom_35.RULE b/src/licensedcode/data/rules/maven_pom_35.RULE index 10e98b5da9a..8b80c248ecc 100644 --- a/src/licensedcode/data/rules/maven_pom_35.RULE +++ b/src/licensedcode/data/rules/maven_pom_35.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://jsoup.com/license +--- + License: The MIT License (http://jsoup.com/license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_35.yml b/src/licensedcode/data/rules/maven_pom_35.yml deleted file mode 100644 index 4b45d5e30cb..00000000000 --- a/src/licensedcode/data/rules/maven_pom_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://jsoup.com/license diff --git a/src/licensedcode/data/rules/maven_pom_36.RULE b/src/licensedcode/data/rules/maven_pom_36.RULE index 14adb681dc3..a069a301dab 100644 --- a/src/licensedcode/data/rules/maven_pom_36.RULE +++ b/src/licensedcode/data/rules/maven_pom_36.RULE @@ -1 +1,9 @@ +--- +license_expression: unrar +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://raw.github.com/junrar/junrar/master/license.txt +--- + License: UnRar License (https://raw.github.com/junrar/junrar/master/license.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_36.yml b/src/licensedcode/data/rules/maven_pom_36.yml deleted file mode 100644 index 39961036d37..00000000000 --- a/src/licensedcode/data/rules/maven_pom_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unrar -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://raw.github.com/junrar/junrar/master/license.txt diff --git a/src/licensedcode/data/rules/maven_pom_4.RULE b/src/licensedcode/data/rules/maven_pom_4.RULE index 0adbcd6fc20..e0f756b3404 100644 --- a/src/licensedcode/data/rules/maven_pom_4.RULE +++ b/src/licensedcode/data/rules/maven_pom_4.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_4.yml b/src/licensedcode/data/rules/maven_pom_4.yml deleted file mode 100644 index 29f296219f5..00000000000 --- a/src/licensedcode/data/rules/maven_pom_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/maven_pom_5.RULE b/src/licensedcode/data/rules/maven_pom_5.RULE index d0542757a84..6718fd3a1a6 100644 --- a/src/licensedcode/data/rules/maven_pom_5.RULE +++ b/src/licensedcode/data/rules/maven_pom_5.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +minimum_coverage: 90 +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.txt +--- + License: 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/maven_pom_5.yml b/src/licensedcode/data/rules/maven_pom_5.yml deleted file mode 100644 index a9ad86c75d8..00000000000 --- a/src/licensedcode/data/rules/maven_pom_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -minimum_coverage: 90 -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/maven_pom_6.RULE b/src/licensedcode/data/rules/maven_pom_6.RULE index b14f4f1a0a7..25651312151 100644 --- a/src/licensedcode/data/rules/maven_pom_6.RULE +++ b/src/licensedcode/data/rules/maven_pom_6.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.bouncycastle.org/licence.html +--- + License: Bouncy Castle Licence (http://www.bouncycastle.org/licence.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_6.yml b/src/licensedcode/data/rules/maven_pom_6.yml deleted file mode 100644 index 7ed519111f3..00000000000 --- a/src/licensedcode/data/rules/maven_pom_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.bouncycastle.org/licence.html diff --git a/src/licensedcode/data/rules/maven_pom_7.RULE b/src/licensedcode/data/rules/maven_pom_7.RULE index 2ec124d7401..76af2f13fcc 100644 --- a/src/licensedcode/data/rules/maven_pom_7.RULE +++ b/src/licensedcode/data/rules/maven_pom_7.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://jwordnet.svn.sourceforge.net/svnroot/jwordnet/trunk/jwnl/license.txt +--- + License: BSD 3-Clause License (http://jwordnet.svn.sourceforge.net/svnroot/jwordnet/trunk/jwnl/license.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_7.yml b/src/licensedcode/data/rules/maven_pom_7.yml deleted file mode 100644 index 36911a31fa1..00000000000 --- a/src/licensedcode/data/rules/maven_pom_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://jwordnet.svn.sourceforge.net/svnroot/jwordnet/trunk/jwnl/license.txt diff --git a/src/licensedcode/data/rules/maven_pom_8.RULE b/src/licensedcode/data/rules/maven_pom_8.RULE index d3f622e6f25..6bd82f18d9f 100644 --- a/src/licensedcode/data/rules/maven_pom_8.RULE +++ b/src/licensedcode/data/rules/maven_pom_8.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://asm.objectweb.org/license.html +--- + License: BSD (http://asm.objectweb.org/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_8.yml b/src/licensedcode/data/rules/maven_pom_8.yml deleted file mode 100644 index 785b0014b44..00000000000 --- a/src/licensedcode/data/rules/maven_pom_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://asm.objectweb.org/license.html diff --git a/src/licensedcode/data/rules/maven_pom_9.RULE b/src/licensedcode/data/rules/maven_pom_9.RULE index aa3c777050d..2242e0e4f7e 100644 --- a/src/licensedcode/data/rules/maven_pom_9.RULE +++ b/src/licensedcode/data/rules/maven_pom_9.RULE @@ -1 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.linfo.org/bsdlicense.html +--- + License: BSD (http://www.linfo.org/bsdlicense.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_9.yml b/src/licensedcode/data/rules/maven_pom_9.yml deleted file mode 100644 index fcfe2722821..00000000000 --- a/src/licensedcode/data/rules/maven_pom_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.linfo.org/bsdlicense.html diff --git a/src/licensedcode/data/rules/maxmind-odl_1.RULE b/src/licensedcode/data/rules/maxmind-odl_1.RULE index f3b214a2520..32c90368f4b 100644 --- a/src/licensedcode/data/rules/maxmind-odl_1.RULE +++ b/src/licensedcode/data/rules/maxmind-odl_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: maxmind-odl +is_license_text: yes +ignorable_urls: + - http://maxmind.com/ +--- + OPEN DATA LICENSE diff --git a/src/licensedcode/data/rules/maxmind-odl_1.yml b/src/licensedcode/data/rules/maxmind-odl_1.yml deleted file mode 100644 index 016fdf216c4..00000000000 --- a/src/licensedcode/data/rules/maxmind-odl_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: maxmind-odl -is_license_text: yes -ignorable_urls: - - http://maxmind.com/ diff --git a/src/licensedcode/data/rules/maxmind-odl_2.RULE b/src/licensedcode/data/rules/maxmind-odl_2.RULE index e05d24c15a4..6c7dc51f85d 100644 --- a/src/licensedcode/data/rules/maxmind-odl_2.RULE +++ b/src/licensedcode/data/rules/maxmind-odl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: maxmind-odl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://maxmind.com/ +--- + This product includes GeoLite data created by MaxMind, available from http://maxmind.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/maxmind-odl_2.yml b/src/licensedcode/data/rules/maxmind-odl_2.yml deleted file mode 100644 index 0d364fa69cd..00000000000 --- a/src/licensedcode/data/rules/maxmind-odl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: maxmind-odl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://maxmind.com/ diff --git a/src/licensedcode/data/rules/maxmind-odl_3.RULE b/src/licensedcode/data/rules/maxmind-odl_3.RULE index 397ed43a2db..4e51f68157c 100644 --- a/src/licensedcode/data/rules/maxmind-odl_3.RULE +++ b/src/licensedcode/data/rules/maxmind-odl_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: maxmind-odl +is_license_text: yes +ignorable_copyrights: + - Copyright (c) MaxMind, Inc. +ignorable_holders: + - MaxMind, Inc. +ignorable_urls: + - http://maxmind.com/ +--- + OPEN DATA LICENSE (GeoLite Country database) Copyright (c) MaxMind, Inc. All Rights Reserved. @@ -28,4 +39,4 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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 -DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/maxmind-odl_3.yml b/src/licensedcode/data/rules/maxmind-odl_3.yml deleted file mode 100644 index 12e1f63b13a..00000000000 --- a/src/licensedcode/data/rules/maxmind-odl_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: maxmind-odl -is_license_text: yes -ignorable_copyrights: - - Copyright (c) MaxMind, Inc. -ignorable_holders: - - MaxMind, Inc. -ignorable_urls: - - http://maxmind.com/ diff --git a/src/licensedcode/data/rules/maxmind-odl_4.RULE b/src/licensedcode/data/rules/maxmind-odl_4.RULE index 9d5160a94dd..7ef15728cb5 100644 --- a/src/licensedcode/data/rules/maxmind-odl_4.RULE +++ b/src/licensedcode/data/rules/maxmind-odl_4.RULE @@ -1 +1,7 @@ +--- +license_expression: maxmind-odl +is_license_reference: yes +relevance: 100 +--- + OPEN DATA LICENSE (GeoLite Country and GeoLite City databases) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maxmind-odl_4.yml b/src/licensedcode/data/rules/maxmind-odl_4.yml deleted file mode 100644 index 628ba147f57..00000000000 --- a/src/licensedcode/data/rules/maxmind-odl_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: maxmind-odl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/maxmind-odl_5.RULE b/src/licensedcode/data/rules/maxmind-odl_5.RULE index bcbf9c44435..8aee3bd8e8e 100644 --- a/src/licensedcode/data/rules/maxmind-odl_5.RULE +++ b/src/licensedcode/data/rules/maxmind-odl_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: maxmind-odl +is_license_text: yes +ignorable_copyrights: + - Copyright (c) MaxMind, Inc. +ignorable_holders: + - MaxMind, Inc. +ignorable_urls: + - http://maxmind.com/ +--- + OPEN DATA LICENSE (GeoLite Country and GeoLite City databases) Copyright (c) MaxMind, Inc. All Rights Reserved. diff --git a/src/licensedcode/data/rules/maxmind-odl_5.yml b/src/licensedcode/data/rules/maxmind-odl_5.yml deleted file mode 100644 index 12e1f63b13a..00000000000 --- a/src/licensedcode/data/rules/maxmind-odl_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: maxmind-odl -is_license_text: yes -ignorable_copyrights: - - Copyright (c) MaxMind, Inc. -ignorable_holders: - - MaxMind, Inc. -ignorable_urls: - - http://maxmind.com/ diff --git a/src/licensedcode/data/rules/maxmind-odl_6.RULE b/src/licensedcode/data/rules/maxmind-odl_6.RULE index 9684a2c1c47..62648421db6 100644 --- a/src/licensedcode/data/rules/maxmind-odl_6.RULE +++ b/src/licensedcode/data/rules/maxmind-odl_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: maxmind-odl +is_license_text: yes +ignorable_urls: + - http://maxmind.com/ +--- + All advertising materials and documentation mentioning features or use of this database must display the following acknowledgment: "This product includes GeoLite data created by MaxMind, available from diff --git a/src/licensedcode/data/rules/maxmind-odl_6.yml b/src/licensedcode/data/rules/maxmind-odl_6.yml deleted file mode 100644 index 016fdf216c4..00000000000 --- a/src/licensedcode/data/rules/maxmind-odl_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: maxmind-odl -is_license_text: yes -ignorable_urls: - - http://maxmind.com/ diff --git a/src/licensedcode/data/rules/mediainfo-lib.RULE b/src/licensedcode/data/rules/mediainfo-lib.RULE index df9fa8d52b8..a1baeaaf73b 100644 --- a/src/licensedcode/data/rules/mediainfo-lib.RULE +++ b/src/licensedcode/data/rules/mediainfo-lib.RULE @@ -1 +1,9 @@ +--- +license_expression: mediainfo-lib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://mediainfo.sourceforge.net/en +--- + http://mediainfo.sourceforge.net/en \ No newline at end of file diff --git a/src/licensedcode/data/rules/mediainfo-lib.yml b/src/licensedcode/data/rules/mediainfo-lib.yml deleted file mode 100644 index b37c8e18916..00000000000 --- a/src/licensedcode/data/rules/mediainfo-lib.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mediainfo-lib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://mediainfo.sourceforge.net/en diff --git a/src/licensedcode/data/rules/mentalis_1.RULE b/src/licensedcode/data/rules/mentalis_1.RULE index 65b261f52f7..2b525aa13e5 100644 --- a/src/licensedcode/data/rules/mentalis_1.RULE +++ b/src/licensedcode/data/rules/mentalis_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: bsd-source-code +is_license_text: yes +minimum_coverage: 96 +--- + Software License Agreement (BSD License) diff --git a/src/licensedcode/data/rules/mentalis_1.yml b/src/licensedcode/data/rules/mentalis_1.yml deleted file mode 100644 index 9d522a87a59..00000000000 --- a/src/licensedcode/data/rules/mentalis_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes -minimum_coverage: 96 diff --git a/src/licensedcode/data/rules/mentalis_2.RULE b/src/licensedcode/data/rules/mentalis_2.RULE index 229a5c0b5a5..f67c4bf1234 100644 --- a/src/licensedcode/data/rules/mentalis_2.RULE +++ b/src/licensedcode/data/rules/mentalis_2.RULE @@ -1,3 +1,8 @@ +--- +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: @@ -18,4 +23,4 @@ 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. +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/mentalis_2.yml b/src/licensedcode/data/rules/mentalis_2.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/mentalis_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/mentalis_3.RULE b/src/licensedcode/data/rules/mentalis_3.RULE index a1fa0b34e09..de5a4485f03 100644 --- a/src/licensedcode/data/rules/mentalis_3.RULE +++ b/src/licensedcode/data/rules/mentalis_3.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/mentalis_3.yml b/src/licensedcode/data/rules/mentalis_3.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/mentalis_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/mentalis_4.RULE b/src/licensedcode/data/rules/mentalis_4.RULE index 5d7cd9c2f22..c7b5352ae0b 100644 --- a/src/licensedcode/data/rules/mentalis_4.RULE +++ b/src/licensedcode/data/rules/mentalis_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: bsd-source-code +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: diff --git a/src/licensedcode/data/rules/mentalis_4.yml b/src/licensedcode/data/rules/mentalis_4.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/mentalis_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/mentalis_5.RULE b/src/licensedcode/data/rules/mentalis_5.RULE index 8a41c35c918..d3a5b807e6a 100644 --- a/src/licensedcode/data/rules/mentalis_5.RULE +++ b/src/licensedcode/data/rules/mentalis_5.RULE @@ -1,3 +1,8 @@ +--- +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: diff --git a/src/licensedcode/data/rules/mentalis_5.yml b/src/licensedcode/data/rules/mentalis_5.yml deleted file mode 100644 index cbced6ebdfc..00000000000 --- a/src/licensedcode/data/rules/mentalis_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/mgopen-font-license.RULE b/src/licensedcode/data/rules/mgopen-font-license.RULE index 80bab8172f6..bf070c1847d 100644 --- a/src/licensedcode/data/rules/mgopen-font-license.RULE +++ b/src/licensedcode/data/rules/mgopen-font-license.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mgopen-font-license +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 2004 by MAGENTA Ltd. +ignorable_holders: + - MAGENTA Ltd. +ignorable_urls: + - http://www.fontconfig.org/ +ignorable_emails: + - fonts@ellak.gr +--- + MgOpen typefaces The MgOpen typefaces are freely available and contain glyphs for viewing texts in Greek (written in the monotoniko system). diff --git a/src/licensedcode/data/rules/mgopen-font-license.yml b/src/licensedcode/data/rules/mgopen-font-license.yml deleted file mode 100644 index bad927ed089..00000000000 --- a/src/licensedcode/data/rules/mgopen-font-license.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mgopen-font-license -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 2004 by MAGENTA Ltd. -ignorable_holders: - - MAGENTA Ltd. -ignorable_urls: - - http://www.fontconfig.org/ -ignorable_emails: - - fonts@ellak.gr diff --git a/src/licensedcode/data/rules/michigan-disclaimer.RULE b/src/licensedcode/data/rules/michigan-disclaimer.RULE index a80fd4356b0..93de687bcc9 100644 --- a/src/licensedcode/data/rules/michigan-disclaimer.RULE +++ b/src/licensedcode/data/rules/michigan-disclaimer.RULE @@ -1,3 +1,8 @@ +--- +license_expression: michigan-disclaimer +is_license_text: yes +--- + permission is granted to use, copy, create derivative works and redistribute this software and such derivative works for any purpose, so long as the name of the university of michigan is not used in @@ -16,4 +21,4 @@ of the university of michigan shall not be liable for any damages, including special, indirect, incidental, or consequential damages, with respect to any claim arising out or in connection with the use of the software, even if it has been or is hereafter advised of the -possibility of such damages. +possibility of such damages. \ No newline at end of file diff --git a/src/licensedcode/data/rules/michigan-disclaimer.yml b/src/licensedcode/data/rules/michigan-disclaimer.yml deleted file mode 100644 index 78ff06efc5e..00000000000 --- a/src/licensedcode/data/rules/michigan-disclaimer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: michigan-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/michigan-disclaimer2.RULE b/src/licensedcode/data/rules/michigan-disclaimer2.RULE index f5f0daa1829..0dbb4f843e5 100644 --- a/src/licensedcode/data/rules/michigan-disclaimer2.RULE +++ b/src/licensedcode/data/rules/michigan-disclaimer2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: michigan-disclaimer +is_license_notice: yes +minimum_coverage: 80 +--- + Permission is granted to use, copy, create derivative works, and redistribute this software and such derivative works for any purpose, so long as the name of the University of Michigan is not used in @@ -15,4 +21,4 @@ Michigan shall not be liable for any damages, including special, indirect, incidental, or consequential damages, with respect to any claim arising out of or in connection with the use of the software, even if it has been or is hereafter advised of the possibility of -such damages. +such damages. \ No newline at end of file diff --git a/src/licensedcode/data/rules/michigan-disclaimer2.yml b/src/licensedcode/data/rules/michigan-disclaimer2.yml deleted file mode 100644 index 781d362ad4c..00000000000 --- a/src/licensedcode/data/rules/michigan-disclaimer2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: michigan-disclaimer -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/microsoft-enterprise-library-eula.RULE b/src/licensedcode/data/rules/microsoft-enterprise-library-eula.RULE index 2202f911c7a..2ebf13f40b6 100644 --- a/src/licensedcode/data/rules/microsoft-enterprise-library-eula.RULE +++ b/src/licensedcode/data/rules/microsoft-enterprise-library-eula.RULE @@ -1 +1,9 @@ +--- +license_expression: microsoft-enterprise-library-eula +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://msdn.microsoft.com/en-us/library/ms998253 +--- + http://msdn.microsoft.com/en-us/library/ms998253 \ No newline at end of file diff --git a/src/licensedcode/data/rules/microsoft-enterprise-library-eula.yml b/src/licensedcode/data/rules/microsoft-enterprise-library-eula.yml deleted file mode 100644 index a14bfae1916..00000000000 --- a/src/licensedcode/data/rules/microsoft-enterprise-library-eula.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: microsoft-enterprise-library-eula -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://msdn.microsoft.com/en-us/library/ms998253 diff --git a/src/licensedcode/data/rules/mif-exception_1.RULE b/src/licensedcode/data/rules/mif-exception_1.RULE index 0cc202ecdc0..3d633d9902f 100644 --- a/src/licensedcode/data/rules/mif-exception_1.RULE +++ b/src/licensedcode/data/rules/mif-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mif-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Macros and Inline Functions Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_1.yml b/src/licensedcode/data/rules/mif-exception_1.yml deleted file mode 100644 index 1d391faacce..00000000000 --- a/src/licensedcode/data/rules/mif-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mif-exception_10.RULE b/src/licensedcode/data/rules/mif-exception_10.RULE index f33b7d62597..62caf204037 100644 --- a/src/licensedcode/data/rules/mif-exception_10.RULE +++ b/src/licensedcode/data/rules/mif-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mif-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/mif-exception +--- + LICENSE {{mif-exception}} https://spdx.org/licenses/mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_10.yml b/src/licensedcode/data/rules/mif-exception_10.yml deleted file mode 100644 index a0889be47df..00000000000 --- a/src/licensedcode/data/rules/mif-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/mif-exception diff --git a/src/licensedcode/data/rules/mif-exception_11.RULE b/src/licensedcode/data/rules/mif-exception_11.RULE index 3ebd15d1c4e..b649ce126b7 100644 --- a/src/licensedcode/data/rules/mif-exception_11.RULE +++ b/src/licensedcode/data/rules/mif-exception_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mif-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/mif-exception +--- + {{mif-exception}} https://spdx.org/licenses/mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_11.yml b/src/licensedcode/data/rules/mif-exception_11.yml deleted file mode 100644 index a0889be47df..00000000000 --- a/src/licensedcode/data/rules/mif-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/mif-exception diff --git a/src/licensedcode/data/rules/mif-exception_2.RULE b/src/licensedcode/data/rules/mif-exception_2.RULE index b1e2859c3d5..e1fe9841ed9 100644 --- a/src/licensedcode/data/rules/mif-exception_2.RULE +++ b/src/licensedcode/data/rules/mif-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mif-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Macros and Inline Functions Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_2.yml b/src/licensedcode/data/rules/mif-exception_2.yml deleted file mode 100644 index 1d391faacce..00000000000 --- a/src/licensedcode/data/rules/mif-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mif-exception_3.RULE b/src/licensedcode/data/rules/mif-exception_3.RULE index 17960a526d2..5e3e8bb96cc 100644 --- a/src/licensedcode/data/rules/mif-exception_3.RULE +++ b/src/licensedcode/data/rules/mif-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mif-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + mif-exception Macros and Inline Functions Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_3.yml b/src/licensedcode/data/rules/mif-exception_3.yml deleted file mode 100644 index 1d391faacce..00000000000 --- a/src/licensedcode/data/rules/mif-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mif-exception_4.RULE b/src/licensedcode/data/rules/mif-exception_4.RULE index 48b5efa90d5..b98c19bb132 100644 --- a/src/licensedcode/data/rules/mif-exception_4.RULE +++ b/src/licensedcode/data/rules/mif-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mif-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Macros and Inline Functions Exception mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_4.yml b/src/licensedcode/data/rules/mif-exception_4.yml deleted file mode 100644 index 1d391faacce..00000000000 --- a/src/licensedcode/data/rules/mif-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mif-exception_5.RULE b/src/licensedcode/data/rules/mif-exception_5.RULE index 9126ed9f069..69f3ff30d3f 100644 --- a/src/licensedcode/data/rules/mif-exception_5.RULE +++ b/src/licensedcode/data/rules/mif-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mif-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_5.yml b/src/licensedcode/data/rules/mif-exception_5.yml deleted file mode 100644 index dc0ad1f0592..00000000000 --- a/src/licensedcode/data/rules/mif-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mif-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mif-exception_6.RULE b/src/licensedcode/data/rules/mif-exception_6.RULE index 5d067d2d6bf..56ffe989581 100644 --- a/src/licensedcode/data/rules/mif-exception_6.RULE +++ b/src/licensedcode/data/rules/mif-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mif-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Macros and Inline Functions Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_6.yml b/src/licensedcode/data/rules/mif-exception_6.yml deleted file mode 100644 index dc0ad1f0592..00000000000 --- a/src/licensedcode/data/rules/mif-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mif-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mif-exception_7.RULE b/src/licensedcode/data/rules/mif-exception_7.RULE index 8ca3cce8643..d748a6f2e05 100644 --- a/src/licensedcode/data/rules/mif-exception_7.RULE +++ b/src/licensedcode/data/rules/mif-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mif-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_7.yml b/src/licensedcode/data/rules/mif-exception_7.yml deleted file mode 100644 index dc0ad1f0592..00000000000 --- a/src/licensedcode/data/rules/mif-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mif-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mif-exception_8.RULE b/src/licensedcode/data/rules/mif-exception_8.RULE index 45642a73bda..b567ad50823 100644 --- a/src/licensedcode/data/rules/mif-exception_8.RULE +++ b/src/licensedcode/data/rules/mif-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mif-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/mif-exception +--- + https://licenses.nuget.org/mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_8.yml b/src/licensedcode/data/rules/mif-exception_8.yml deleted file mode 100644 index 44bb8a16809..00000000000 --- a/src/licensedcode/data/rules/mif-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/mif-exception diff --git a/src/licensedcode/data/rules/mif-exception_9.RULE b/src/licensedcode/data/rules/mif-exception_9.RULE index 3d5fde96e3e..a17e9929b3c 100644 --- a/src/licensedcode/data/rules/mif-exception_9.RULE +++ b/src/licensedcode/data/rules/mif-exception_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mif-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_9.yml b/src/licensedcode/data/rules/mif-exception_9.yml deleted file mode 100644 index e2c4fb4be2d..00000000000 --- a/src/licensedcode/data/rules/mif-exception_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mif-exception_url_1.RULE b/src/licensedcode/data/rules/mif-exception_url_1.RULE index f9bb40ec71e..f1032f6ccf2 100644 --- a/src/licensedcode/data/rules/mif-exception_url_1.RULE +++ b/src/licensedcode/data/rules/mif-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mif-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mif-exception +--- + https://spdx.org/licenses/mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_url_1.yml b/src/licensedcode/data/rules/mif-exception_url_1.yml deleted file mode 100644 index 2567fffef35..00000000000 --- a/src/licensedcode/data/rules/mif-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mif-exception diff --git a/src/licensedcode/data/rules/mif-exception_url_2.RULE b/src/licensedcode/data/rules/mif-exception_url_2.RULE index 82c21947588..7529ec4fa66 100644 --- a/src/licensedcode/data/rules/mif-exception_url_2.RULE +++ b/src/licensedcode/data/rules/mif-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mif-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mif-exception.html +--- + https://spdx.org/licenses/mif-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mif-exception_url_2.yml b/src/licensedcode/data/rules/mif-exception_url_2.yml deleted file mode 100644 index f2b59c63868..00000000000 --- a/src/licensedcode/data/rules/mif-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mif-exception.html diff --git a/src/licensedcode/data/rules/mini-xml_1.RULE b/src/licensedcode/data/rules/mini-xml_1.RULE index 6378b4b9f3c..9d18c523b19 100644 --- a/src/licensedcode/data/rules/mini-xml_1.RULE +++ b/src/licensedcode/data/rules/mini-xml_1.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0 WITH mini-xml-exception-lgpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.minixml.org/documentation.php/license.html +--- + http://www.minixml.org/documentation.php/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mini-xml_1.yml b/src/licensedcode/data/rules/mini-xml_1.yml deleted file mode 100644 index 4dcfeb59d79..00000000000 --- a/src/licensedcode/data/rules/mini-xml_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0 WITH mini-xml-exception-lgpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.minixml.org/documentation.php/license.html diff --git a/src/licensedcode/data/rules/minpack_1.RULE b/src/licensedcode/data/rules/minpack_1.RULE index 8ff547728d9..5fb6e7f3a65 100644 --- a/src/licensedcode/data/rules/minpack_1.RULE +++ b/src/licensedcode/data/rules/minpack_1.RULE @@ -1,2 +1,9 @@ +--- +license_expression: minpack +is_license_notice: yes +referenced_filenames: + - CopyrightMINPACK.txt +--- + This Source Code Form is subject to the terms of the Minpack license - (a BSD-like license) described in the campaigned CopyrightMINPACK.txt file. + (a BSD-like license) described in the campaigned CopyrightMINPACK.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/minpack_1.yml b/src/licensedcode/data/rules/minpack_1.yml deleted file mode 100644 index dc08563db90..00000000000 --- a/src/licensedcode/data/rules/minpack_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: minpack -is_license_notice: yes -referenced_filenames: - - CopyrightMINPACK.txt diff --git a/src/licensedcode/data/rules/mir-os.RULE b/src/licensedcode/data/rules/mir-os.RULE index 5be1e3ab7ef..c923bd7daa9 100644 --- a/src/licensedcode/data/rules/mir-os.RULE +++ b/src/licensedcode/data/rules/mir-os.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/miros.html +--- + http://opensource.org/licenses/miros.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os.SPDX.RULE b/src/licensedcode/data/rules/mir-os.SPDX.RULE index 7be63647f84..0a252b6ebed 100644 --- a/src/licensedcode/data/rules/mir-os.SPDX.RULE +++ b/src/licensedcode/data/rules/mir-os.SPDX.RULE @@ -1,3 +1,21 @@ +--- +license_expression: mir-os +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://mirbsd.de/MirOS-Licence + - http://opensource.org/licenses/miros.html + - http://www.debian.org/social_contract#guidelines + - http://www.gnu.org/philosophy/free-doc.html + - http://www.gnu.org/philosophy/free-sw.html + - http://www.ifross.de/ifross_html/lizenzcenter.html + - http://www.opendefinition.org/1.0 + - http://www.opendefinition.org/licenses + - http://www.opensource.org/docs/osd + - http://www.opensource.org/licenses/historical.php +--- + * Provided that these terms and disclaimer and all copyright notices * are retained or reproduced in an accompanying document, permission * is granted to deal in this work without restriction, including un_ diff --git a/src/licensedcode/data/rules/mir-os.SPDX.yml b/src/licensedcode/data/rules/mir-os.SPDX.yml deleted file mode 100644 index bf4adbc4ae2..00000000000 --- a/src/licensedcode/data/rules/mir-os.SPDX.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: mir-os -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://mirbsd.de/MirOS-Licence - - http://opensource.org/licenses/miros.html - - http://www.debian.org/social_contract#guidelines - - http://www.gnu.org/philosophy/free-doc.html - - http://www.gnu.org/philosophy/free-sw.html - - http://www.ifross.de/ifross_html/lizenzcenter.html - - http://www.opendefinition.org/1.0 - - http://www.opendefinition.org/licenses - - http://www.opensource.org/docs/osd - - http://www.opensource.org/licenses/historical.php diff --git a/src/licensedcode/data/rules/mir-os.yml b/src/licensedcode/data/rules/mir-os.yml deleted file mode 100644 index 5dbb542658f..00000000000 --- a/src/licensedcode/data/rules/mir-os.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/miros.html diff --git a/src/licensedcode/data/rules/mir-os_1.RULE b/src/licensedcode/data/rules/mir-os_1.RULE index 85432fdb1ce..c239c980c4b 100644 --- a/src/licensedcode/data/rules/mir-os_1.RULE +++ b/src/licensedcode/data/rules/mir-os_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.mirbsd.org/MirOS-Licence +--- + https://www.mirbsd.org/MirOS-Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_1.yml b/src/licensedcode/data/rules/mir-os_1.yml deleted file mode 100644 index 36d7eaa4b7c..00000000000 --- a/src/licensedcode/data/rules/mir-os_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.mirbsd.org/MirOS-Licence diff --git a/src/licensedcode/data/rules/mir-os_10.RULE b/src/licensedcode/data/rules/mir-os_10.RULE index 9cab6dc8e93..0ad52a83c62 100644 --- a/src/licensedcode/data/rules/mir-os_10.RULE +++ b/src/licensedcode/data/rules/mir-os_10.RULE @@ -1 +1,10 @@ +--- +license_expression: mir-os +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MirOS The MirOS Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_10.yml b/src/licensedcode/data/rules/mir-os_10.yml deleted file mode 100644 index 566b2e537f3..00000000000 --- a/src/licensedcode/data/rules/mir-os_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mir-os_11.RULE b/src/licensedcode/data/rules/mir-os_11.RULE index 11c55c06538..8ffad42c73d 100644 --- a/src/licensedcode/data/rules/mir-os_11.RULE +++ b/src/licensedcode/data/rules/mir-os_11.RULE @@ -1 +1,10 @@ +--- +license_expression: mir-os +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + The MirOS Licence MirOS \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_11.yml b/src/licensedcode/data/rules/mir-os_11.yml deleted file mode 100644 index 566b2e537f3..00000000000 --- a/src/licensedcode/data/rules/mir-os_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mir-os_12.RULE b/src/licensedcode/data/rules/mir-os_12.RULE index 96fdc1fd8f3..cac08619cde 100644 --- a/src/licensedcode/data/rules/mir-os_12.RULE +++ b/src/licensedcode/data/rules/mir-os_12.RULE @@ -1 +1,10 @@ +--- +license_expression: mir-os +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MirOS \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_12.yml b/src/licensedcode/data/rules/mir-os_12.yml deleted file mode 100644 index 5eb6fca2866..00000000000 --- a/src/licensedcode/data/rules/mir-os_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mir-os -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mir-os_13.RULE b/src/licensedcode/data/rules/mir-os_13.RULE index c1b1bbfd6e8..e531129c23c 100644 --- a/src/licensedcode/data/rules/mir-os_13.RULE +++ b/src/licensedcode/data/rules/mir-os_13.RULE @@ -1 +1,10 @@ +--- +license_expression: mir-os +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: The MirOS Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_13.yml b/src/licensedcode/data/rules/mir-os_13.yml deleted file mode 100644 index 5eb6fca2866..00000000000 --- a/src/licensedcode/data/rules/mir-os_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mir-os -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mir-os_14.RULE b/src/licensedcode/data/rules/mir-os_14.RULE index 9c8f071fa17..85cf22e4cb8 100644 --- a/src/licensedcode/data/rules/mir-os_14.RULE +++ b/src/licensedcode/data/rules/mir-os_14.RULE @@ -1 +1,10 @@ +--- +license_expression: mir-os +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MirOS \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_14.yml b/src/licensedcode/data/rules/mir-os_14.yml deleted file mode 100644 index 5eb6fca2866..00000000000 --- a/src/licensedcode/data/rules/mir-os_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mir-os -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mir-os_15.RULE b/src/licensedcode/data/rules/mir-os_15.RULE index ae4f5e1ff4d..d51716ddc6c 100644 --- a/src/licensedcode/data/rules/mir-os_15.RULE +++ b/src/licensedcode/data/rules/mir-os_15.RULE @@ -1 +1,7 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +--- + MirOS License (MirOS) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_15.yml b/src/licensedcode/data/rules/mir-os_15.yml deleted file mode 100644 index 19ea27e42d6..00000000000 --- a/src/licensedcode/data/rules/mir-os_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mir-os_16.RULE b/src/licensedcode/data/rules/mir-os_16.RULE index 02485380bcc..0e53a61196a 100644 --- a/src/licensedcode/data/rules/mir-os_16.RULE +++ b/src/licensedcode/data/rules/mir-os_16.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MirOS +--- + https://licenses.nuget.org/MirOS \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_16.yml b/src/licensedcode/data/rules/mir-os_16.yml deleted file mode 100644 index 065c16ec9db..00000000000 --- a/src/licensedcode/data/rules/mir-os_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MirOS diff --git a/src/licensedcode/data/rules/mir-os_17.RULE b/src/licensedcode/data/rules/mir-os_17.RULE index 215e1475d7c..1e977170a74 100644 --- a/src/licensedcode/data/rules/mir-os_17.RULE +++ b/src/licensedcode/data/rules/mir-os_17.RULE @@ -1 +1,7 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MirOS \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_17.yml b/src/licensedcode/data/rules/mir-os_17.yml deleted file mode 100644 index 19ea27e42d6..00000000000 --- a/src/licensedcode/data/rules/mir-os_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mir-os_18.RULE b/src/licensedcode/data/rules/mir-os_18.RULE index 0db17bc31f9..673f1567111 100644 --- a/src/licensedcode/data/rules/mir-os_18.RULE +++ b/src/licensedcode/data/rules/mir-os_18.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MirOS +--- + {{MirOS}} https://spdx.org/licenses/MirOS \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_18.yml b/src/licensedcode/data/rules/mir-os_18.yml deleted file mode 100644 index 9540e2fd40f..00000000000 --- a/src/licensedcode/data/rules/mir-os_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MirOS diff --git a/src/licensedcode/data/rules/mir-os_19.RULE b/src/licensedcode/data/rules/mir-os_19.RULE index f302ddee671..aab255693c4 100644 --- a/src/licensedcode/data/rules/mir-os_19.RULE +++ b/src/licensedcode/data/rules/mir-os_19.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MirOS +--- + LICENSE {{MirOS}} https://spdx.org/licenses/MirOS \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_19.yml b/src/licensedcode/data/rules/mir-os_19.yml deleted file mode 100644 index 9540e2fd40f..00000000000 --- a/src/licensedcode/data/rules/mir-os_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MirOS diff --git a/src/licensedcode/data/rules/mir-os_2.RULE b/src/licensedcode/data/rules/mir-os_2.RULE index 2afe4ab84cf..048daa69dc1 100644 --- a/src/licensedcode/data/rules/mir-os_2.RULE +++ b/src/licensedcode/data/rules/mir-os_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +--- + MirOS Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_2.yml b/src/licensedcode/data/rules/mir-os_2.yml deleted file mode 100644 index 19ea27e42d6..00000000000 --- a/src/licensedcode/data/rules/mir-os_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mir-os_3.RULE b/src/licensedcode/data/rules/mir-os_3.RULE index 1ef4f9301cd..2e8022f2e9b 100644 --- a/src/licensedcode/data/rules/mir-os_3.RULE +++ b/src/licensedcode/data/rules/mir-os_3.RULE @@ -1 +1,7 @@ -is covered by The MirOS Licence: +--- +license_expression: mir-os +is_license_notice: yes +relevance: 100 +--- + +is covered by The MirOS Licence: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_3.yml b/src/licensedcode/data/rules/mir-os_3.yml deleted file mode 100644 index 2e0eac91a70..00000000000 --- a/src/licensedcode/data/rules/mir-os_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mir-os -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mir-os_4.RULE b/src/licensedcode/data/rules/mir-os_4.RULE index ff622cb0e3e..f06262ab268 100644 --- a/src/licensedcode/data/rules/mir-os_4.RULE +++ b/src/licensedcode/data/rules/mir-os_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mir-os +is_license_text: yes +relevance: 99 +notes: this variant uses the word "unlimited" +--- + Provided that these terms and disclaimer and all copyright notices are retained or reproduced in an accompanying document, permission is granted to deal in this work without restriction, including unlimited rights to use, publicly diff --git a/src/licensedcode/data/rules/mir-os_4.yml b/src/licensedcode/data/rules/mir-os_4.yml deleted file mode 100644 index da17ef6135d..00000000000 --- a/src/licensedcode/data/rules/mir-os_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mir-os -is_license_text: yes -relevance: 99 -notes: this variant uses the word "unlimited" diff --git a/src/licensedcode/data/rules/mir-os_5.RULE b/src/licensedcode/data/rules/mir-os_5.RULE index c511854f07a..00775d3e302 100644 --- a/src/licensedcode/data/rules/mir-os_5.RULE +++ b/src/licensedcode/data/rules/mir-os_5.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/miros.html +--- + http://www.opensource.org/licenses/miros.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_5.yml b/src/licensedcode/data/rules/mir-os_5.yml deleted file mode 100644 index 3f8fe7893d5..00000000000 --- a/src/licensedcode/data/rules/mir-os_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/miros.html diff --git a/src/licensedcode/data/rules/mir-os_6.RULE b/src/licensedcode/data/rules/mir-os_6.RULE index cab45e9a072..e5abd054458 100644 --- a/src/licensedcode/data/rules/mir-os_6.RULE +++ b/src/licensedcode/data/rules/mir-os_6.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.mirbsd.org/about.htm +--- + https://www.mirbsd.org/about.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_6.yml b/src/licensedcode/data/rules/mir-os_6.yml deleted file mode 100644 index 88c63fb4551..00000000000 --- a/src/licensedcode/data/rules/mir-os_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.mirbsd.org/about.htm diff --git a/src/licensedcode/data/rules/mir-os_7.RULE b/src/licensedcode/data/rules/mir-os_7.RULE index f73df0e3f74..711638a4e02 100644 --- a/src/licensedcode/data/rules/mir-os_7.RULE +++ b/src/licensedcode/data/rules/mir-os_7.RULE @@ -1,3 +1,22 @@ +--- +license_expression: mir-os +is_license_notice: yes +relevance: 100 +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://mirbsd.de/MirOS-Licence + - http://opensource.org/licenses/miros.html + - http://www.debian.org/social_contract#guidelines + - http://www.ifross.de/ifross_html/lizenzcenter.html + - http://www.opendefinition.org/1.0 + - http://www.opendefinition.org/licenses + - http://www.opensource.org/docs/osd + - http://www.opensource.org/licenses/historical.php + - https://www.gnu.org/philosophy/free-doc.html + - https://www.gnu.org/philosophy/free-sw.html +--- + * Provided that these terms and disclaimer and all copyright notices * are retained or reproduced in an accompanying document, permission * is granted to deal in this work without restriction, including un_ diff --git a/src/licensedcode/data/rules/mir-os_7.yml b/src/licensedcode/data/rules/mir-os_7.yml deleted file mode 100644 index b7d261c7ac5..00000000000 --- a/src/licensedcode/data/rules/mir-os_7.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: mir-os -is_license_notice: yes -relevance: 100 -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://mirbsd.de/MirOS-Licence - - http://opensource.org/licenses/miros.html - - http://www.debian.org/social_contract#guidelines - - http://www.ifross.de/ifross_html/lizenzcenter.html - - http://www.opendefinition.org/1.0 - - http://www.opendefinition.org/licenses - - http://www.opensource.org/docs/osd - - http://www.opensource.org/licenses/historical.php - - https://www.gnu.org/philosophy/free-doc.html - - https://www.gnu.org/philosophy/free-sw.html diff --git a/src/licensedcode/data/rules/mir-os_8.RULE b/src/licensedcode/data/rules/mir-os_8.RULE index 5be42ee2768..34362aefa1a 100644 --- a/src/licensedcode/data/rules/mir-os_8.RULE +++ b/src/licensedcode/data/rules/mir-os_8.RULE @@ -1 +1,10 @@ +--- +license_expression: mir-os +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + The MirOS Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_8.yml b/src/licensedcode/data/rules/mir-os_8.yml deleted file mode 100644 index 566b2e537f3..00000000000 --- a/src/licensedcode/data/rules/mir-os_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mir-os_9.RULE b/src/licensedcode/data/rules/mir-os_9.RULE index fad91e1cbb1..42e7524e64b 100644 --- a/src/licensedcode/data/rules/mir-os_9.RULE +++ b/src/licensedcode/data/rules/mir-os_9.RULE @@ -1 +1,10 @@ +--- +license_expression: mir-os +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: The MirOS Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_9.yml b/src/licensedcode/data/rules/mir-os_9.yml deleted file mode 100644 index 566b2e537f3..00000000000 --- a/src/licensedcode/data/rules/mir-os_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mir-os_url_1.RULE b/src/licensedcode/data/rules/mir-os_url_1.RULE index 88e765a79c3..08e58f1ee4a 100644 --- a/src/licensedcode/data/rules/mir-os_url_1.RULE +++ b/src/licensedcode/data/rules/mir-os_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/miros +--- + https://spdx.org/licenses/miros \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_url_1.yml b/src/licensedcode/data/rules/mir-os_url_1.yml deleted file mode 100644 index 23c30b147b7..00000000000 --- a/src/licensedcode/data/rules/mir-os_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/miros diff --git a/src/licensedcode/data/rules/mir-os_url_2.RULE b/src/licensedcode/data/rules/mir-os_url_2.RULE index b5e21affcf8..372a5a84c4e 100644 --- a/src/licensedcode/data/rules/mir-os_url_2.RULE +++ b/src/licensedcode/data/rules/mir-os_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/miros.html +--- + https://spdx.org/licenses/miros.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_url_2.yml b/src/licensedcode/data/rules/mir-os_url_2.yml deleted file mode 100644 index f107e9d1abd..00000000000 --- a/src/licensedcode/data/rules/mir-os_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/miros.html diff --git a/src/licensedcode/data/rules/mir-os_url_glc_194.RULE b/src/licensedcode/data/rules/mir-os_url_glc_194.RULE index fd7e5264da7..1936dac6aed 100644 --- a/src/licensedcode/data/rules/mir-os_url_glc_194.RULE +++ b/src/licensedcode/data/rules/mir-os_url_glc_194.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/miros +--- + http://www.opensource.org/licenses/miros \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_url_glc_194.yml b/src/licensedcode/data/rules/mir-os_url_glc_194.yml deleted file mode 100644 index 770ba799ccf..00000000000 --- a/src/licensedcode/data/rules/mir-os_url_glc_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/miros diff --git a/src/licensedcode/data/rules/mir-os_url_glc_195.RULE b/src/licensedcode/data/rules/mir-os_url_glc_195.RULE index b9b46cb1240..d1a86766b94 100644 --- a/src/licensedcode/data/rules/mir-os_url_glc_195.RULE +++ b/src/licensedcode/data/rules/mir-os_url_glc_195.RULE @@ -1 +1,9 @@ +--- +license_expression: mir-os +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/miros +--- + https://www.opensource.org/licenses/miros \ No newline at end of file diff --git a/src/licensedcode/data/rules/mir-os_url_glc_195.yml b/src/licensedcode/data/rules/mir-os_url_glc_195.yml deleted file mode 100644 index 7060951f221..00000000000 --- a/src/licensedcode/data/rules/mir-os_url_glc_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mir-os -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/miros diff --git a/src/licensedcode/data/rules/mit-0_1.RULE b/src/licensedcode/data/rules/mit-0_1.RULE index ad7dc2fc153..a4c6beac37a 100644 --- a/src/licensedcode/data/rules/mit-0_1.RULE +++ b/src/licensedcode/data/rules/mit-0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the MIT-0 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_1.yml b/src/licensedcode/data/rules/mit-0_1.yml deleted file mode 100644 index fc19b6dc718..00000000000 --- a/src/licensedcode/data/rules/mit-0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-0_10.RULE b/src/licensedcode/data/rules/mit-0_10.RULE index 670cf1e7160..404cda56641 100644 --- a/src/licensedcode/data/rules/mit-0_10.RULE +++ b/src/licensedcode/data/rules/mit-0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT No Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_10.yml b/src/licensedcode/data/rules/mit-0_10.yml deleted file mode 100644 index c96d0fb84eb..00000000000 --- a/src/licensedcode/data/rules/mit-0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-0_11.RULE b/src/licensedcode/data/rules/mit-0_11.RULE index ef9a8d485f6..d84e74be887 100644 --- a/src/licensedcode/data/rules/mit-0_11.RULE +++ b/src/licensedcode/data/rules/mit-0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: MIT No Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_11.yml b/src/licensedcode/data/rules/mit-0_11.yml deleted file mode 100644 index c96d0fb84eb..00000000000 --- a/src/licensedcode/data/rules/mit-0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-0_12.RULE b/src/licensedcode/data/rules/mit-0_12.RULE index 9e13bb7eb10..b161ee7265d 100644 --- a/src/licensedcode/data/rules/mit-0_12.RULE +++ b/src/licensedcode/data/rules/mit-0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT-0 MIT No Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_12.yml b/src/licensedcode/data/rules/mit-0_12.yml deleted file mode 100644 index c96d0fb84eb..00000000000 --- a/src/licensedcode/data/rules/mit-0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-0_13.RULE b/src/licensedcode/data/rules/mit-0_13.RULE index 5898bba276a..90b60e927e7 100644 --- a/src/licensedcode/data/rules/mit-0_13.RULE +++ b/src/licensedcode/data/rules/mit-0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT No Attribution MIT-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_13.yml b/src/licensedcode/data/rules/mit-0_13.yml deleted file mode 100644 index c96d0fb84eb..00000000000 --- a/src/licensedcode/data/rules/mit-0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-0_14.RULE b/src/licensedcode/data/rules/mit-0_14.RULE index 96ccee0fc72..f9dd7ba5960 100644 --- a/src/licensedcode/data/rules/mit-0_14.RULE +++ b/src/licensedcode/data/rules/mit-0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_14.yml b/src/licensedcode/data/rules/mit-0_14.yml deleted file mode 100644 index fce7f3f151b..00000000000 --- a/src/licensedcode/data/rules/mit-0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-0_15.RULE b/src/licensedcode/data/rules/mit-0_15.RULE index d6799e0e373..7075f8c9b13 100644 --- a/src/licensedcode/data/rules/mit-0_15.RULE +++ b/src/licensedcode/data/rules/mit-0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT No Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_15.yml b/src/licensedcode/data/rules/mit-0_15.yml deleted file mode 100644 index fce7f3f151b..00000000000 --- a/src/licensedcode/data/rules/mit-0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-0_16.RULE b/src/licensedcode/data/rules/mit-0_16.RULE index 36a25dd514b..b0b36f9e2ad 100644 --- a/src/licensedcode/data/rules/mit-0_16.RULE +++ b/src/licensedcode/data/rules/mit-0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MIT-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_16.yml b/src/licensedcode/data/rules/mit-0_16.yml deleted file mode 100644 index fce7f3f151b..00000000000 --- a/src/licensedcode/data/rules/mit-0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-0_17.RULE b/src/licensedcode/data/rules/mit-0_17.RULE index d5ccf2b8f66..be06c4162a3 100644 --- a/src/licensedcode/data/rules/mit-0_17.RULE +++ b/src/licensedcode/data/rules/mit-0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MIT-0 +--- + https://licenses.nuget.org/MIT-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_17.yml b/src/licensedcode/data/rules/mit-0_17.yml deleted file mode 100644 index de00c22d60c..00000000000 --- a/src/licensedcode/data/rules/mit-0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MIT-0 diff --git a/src/licensedcode/data/rules/mit-0_18.RULE b/src/licensedcode/data/rules/mit-0_18.RULE index 9d9052718b0..fc5e3b6d3e4 100644 --- a/src/licensedcode/data/rules/mit-0_18.RULE +++ b/src/licensedcode/data/rules/mit-0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MIT-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_18.yml b/src/licensedcode/data/rules/mit-0_18.yml deleted file mode 100644 index 6a4847b1370..00000000000 --- a/src/licensedcode/data/rules/mit-0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-0_19.RULE b/src/licensedcode/data/rules/mit-0_19.RULE index a6d292fa853..15c73be7bd8 100644 --- a/src/licensedcode/data/rules/mit-0_19.RULE +++ b/src/licensedcode/data/rules/mit-0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +--- + licensed under the MIT-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_19.yml b/src/licensedcode/data/rules/mit-0_19.yml deleted file mode 100644 index fc19b6dc718..00000000000 --- a/src/licensedcode/data/rules/mit-0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-0_2.RULE b/src/licensedcode/data/rules/mit-0_2.RULE index 380b644d9ba..529776c841c 100644 --- a/src/licensedcode/data/rules/mit-0_2.RULE +++ b/src/licensedcode/data/rules/mit-0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +--- + License Licensed under the MIT-0 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_2.yml b/src/licensedcode/data/rules/mit-0_2.yml deleted file mode 100644 index fc19b6dc718..00000000000 --- a/src/licensedcode/data/rules/mit-0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-0_20.RULE b/src/licensedcode/data/rules/mit-0_20.RULE index dd2c49b13e3..6e72a271b73 100644 --- a/src/licensedcode/data/rules/mit-0_20.RULE +++ b/src/licensedcode/data/rules/mit-0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-0 +--- + {{MIT-0}} https://spdx.org/licenses/MIT-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_20.yml b/src/licensedcode/data/rules/mit-0_20.yml deleted file mode 100644 index 7a27203e7ab..00000000000 --- a/src/licensedcode/data/rules/mit-0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-0 diff --git a/src/licensedcode/data/rules/mit-0_21.RULE b/src/licensedcode/data/rules/mit-0_21.RULE index e268b130f50..9e4ee264a72 100644 --- a/src/licensedcode/data/rules/mit-0_21.RULE +++ b/src/licensedcode/data/rules/mit-0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-0 +--- + LICENSE {{MIT-0}} https://spdx.org/licenses/MIT-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_21.yml b/src/licensedcode/data/rules/mit-0_21.yml deleted file mode 100644 index 7a27203e7ab..00000000000 --- a/src/licensedcode/data/rules/mit-0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-0 diff --git a/src/licensedcode/data/rules/mit-0_3.RULE b/src/licensedcode/data/rules/mit-0_3.RULE index 8e49d45df09..29d4bd8b851 100644 --- a/src/licensedcode/data/rules/mit-0_3.RULE +++ b/src/licensedcode/data/rules/mit-0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +--- + ## License This code sample and utilies are licensed under the MIT-0 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_3.yml b/src/licensedcode/data/rules/mit-0_3.yml deleted file mode 100644 index fc19b6dc718..00000000000 --- a/src/licensedcode/data/rules/mit-0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-0_4.RULE b/src/licensedcode/data/rules/mit-0_4.RULE index 4e4008e42e8..61df5fa75cc 100644 --- a/src/licensedcode/data/rules/mit-0_4.RULE +++ b/src/licensedcode/data/rules/mit-0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This sample code is made available under the MIT-0 license. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_4.yml b/src/licensedcode/data/rules/mit-0_4.yml deleted file mode 100644 index b3801e31c1d..00000000000 --- a/src/licensedcode/data/rules/mit-0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit-0_5.RULE b/src/licensedcode/data/rules/mit-0_5.RULE index b3e8fc47423..4e44dc5bdd4 100644 --- a/src/licensedcode/data/rules/mit-0_5.RULE +++ b/src/licensedcode/data/rules/mit-0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-0 +is_license_reference: yes +relevance: 95 +--- + No-notice MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_5.yml b/src/licensedcode/data/rules/mit-0_5.yml deleted file mode 100644 index 96940fa21b3..00000000000 --- a/src/licensedcode/data/rules/mit-0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit-0_6.RULE b/src/licensedcode/data/rules/mit-0_6.RULE index 31db8629fc5..d00423691e3 100644 --- a/src/licensedcode/data/rules/mit-0_6.RULE +++ b/src/licensedcode/data/rules/mit-0_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-0 +is_license_text: yes +relevance: 100 +--- + No-notice MIT License diff --git a/src/licensedcode/data/rules/mit-0_6.yml b/src/licensedcode/data/rules/mit-0_6.yml deleted file mode 100644 index 20d9fd10b8f..00000000000 --- a/src/licensedcode/data/rules/mit-0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-0_7.RULE b/src/licensedcode/data/rules/mit-0_7.RULE index 1a8551c8d25..1c43b6036f3 100644 --- a/src/licensedcode/data/rules/mit-0_7.RULE +++ b/src/licensedcode/data/rules/mit-0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-0 +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/mit-0_7.yml b/src/licensedcode/data/rules/mit-0_7.yml deleted file mode 100644 index 20d9fd10b8f..00000000000 --- a/src/licensedcode/data/rules/mit-0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-0_8.RULE b/src/licensedcode/data/rules/mit-0_8.RULE index c6b6d8ee4f0..bb43bcab7b3 100644 --- a/src/licensedcode/data/rules/mit-0_8.RULE +++ b/src/licensedcode/data/rules/mit-0_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This library is licensed under the MIT-0 License. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_8.yml b/src/licensedcode/data/rules/mit-0_8.yml deleted file mode 100644 index b3801e31c1d..00000000000 --- a/src/licensedcode/data/rules/mit-0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit-0_9.RULE b/src/licensedcode/data/rules/mit-0_9.RULE index 207a328bb89..cf16a7a0313 100644 --- a/src/licensedcode/data/rules/mit-0_9.RULE +++ b/src/licensedcode/data/rules/mit-0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This library is licensed under the MIT-0 License. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_9.yml b/src/licensedcode/data/rules/mit-0_9.yml deleted file mode 100644 index b3801e31c1d..00000000000 --- a/src/licensedcode/data/rules/mit-0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit-0_url_1.RULE b/src/licensedcode/data/rules/mit-0_url_1.RULE index 10ea1a2fd07..bee5a6d47ad 100644 --- a/src/licensedcode/data/rules/mit-0_url_1.RULE +++ b/src/licensedcode/data/rules/mit-0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-0 +--- + https://spdx.org/licenses/mit-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_url_1.yml b/src/licensedcode/data/rules/mit-0_url_1.yml deleted file mode 100644 index d9498d4d8bd..00000000000 --- a/src/licensedcode/data/rules/mit-0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-0 diff --git a/src/licensedcode/data/rules/mit-0_url_2.RULE b/src/licensedcode/data/rules/mit-0_url_2.RULE index 4703c86483e..e71e666acdd 100644 --- a/src/licensedcode/data/rules/mit-0_url_2.RULE +++ b/src/licensedcode/data/rules/mit-0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-0.html +--- + https://spdx.org/licenses/mit-0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-0_url_2.yml b/src/licensedcode/data/rules/mit-0_url_2.yml deleted file mode 100644 index fce8d749048..00000000000 --- a/src/licensedcode/data/rules/mit-0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-0.html diff --git a/src/licensedcode/data/rules/mit-ack_1.RULE b/src/licensedcode/data/rules/mit-ack_1.RULE index 2e09f1e14a1..14d11317ddb 100644 --- a/src/licensedcode/data/rules/mit-ack_1.RULE +++ b/src/licensedcode/data/rules/mit-ack_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-ack +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + feh License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_1.yml b/src/licensedcode/data/rules/mit-ack_1.yml deleted file mode 100644 index e7d1e92dc95..00000000000 --- a/src/licensedcode/data/rules/mit-ack_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-ack_10.RULE b/src/licensedcode/data/rules/mit-ack_10.RULE index 53eb1aee482..e802ee87ada 100644 --- a/src/licensedcode/data/rules/mit-ack_10.RULE +++ b/src/licensedcode/data/rules/mit-ack_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-ack +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-feh +--- + LICENSE {{MIT-feh}} https://spdx.org/licenses/MIT-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_10.yml b/src/licensedcode/data/rules/mit-ack_10.yml deleted file mode 100644 index f7f3924746a..00000000000 --- a/src/licensedcode/data/rules/mit-ack_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-feh diff --git a/src/licensedcode/data/rules/mit-ack_11.RULE b/src/licensedcode/data/rules/mit-ack_11.RULE index ce2b87de669..5a9b3e0cfe4 100644 --- a/src/licensedcode/data/rules/mit-ack_11.RULE +++ b/src/licensedcode/data/rules/mit-ack_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-ack +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-feh +--- + {{MIT-feh}} https://spdx.org/licenses/MIT-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_11.yml b/src/licensedcode/data/rules/mit-ack_11.yml deleted file mode 100644 index f7f3924746a..00000000000 --- a/src/licensedcode/data/rules/mit-ack_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-feh diff --git a/src/licensedcode/data/rules/mit-ack_2.RULE b/src/licensedcode/data/rules/mit-ack_2.RULE index 0ad35e66a54..56ecda8276a 100644 --- a/src/licensedcode/data/rules/mit-ack_2.RULE +++ b/src/licensedcode/data/rules/mit-ack_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-ack +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: feh License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_2.yml b/src/licensedcode/data/rules/mit-ack_2.yml deleted file mode 100644 index e7d1e92dc95..00000000000 --- a/src/licensedcode/data/rules/mit-ack_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-ack_3.RULE b/src/licensedcode/data/rules/mit-ack_3.RULE index e57561083f2..e3366039a21 100644 --- a/src/licensedcode/data/rules/mit-ack_3.RULE +++ b/src/licensedcode/data/rules/mit-ack_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-ack +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT-feh feh License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_3.yml b/src/licensedcode/data/rules/mit-ack_3.yml deleted file mode 100644 index e7d1e92dc95..00000000000 --- a/src/licensedcode/data/rules/mit-ack_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-ack_4.RULE b/src/licensedcode/data/rules/mit-ack_4.RULE index f7311464de6..597a18bb3d5 100644 --- a/src/licensedcode/data/rules/mit-ack_4.RULE +++ b/src/licensedcode/data/rules/mit-ack_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-ack +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + feh License MIT-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_4.yml b/src/licensedcode/data/rules/mit-ack_4.yml deleted file mode 100644 index e7d1e92dc95..00000000000 --- a/src/licensedcode/data/rules/mit-ack_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-ack_5.RULE b/src/licensedcode/data/rules/mit-ack_5.RULE index abe75ce2004..68f940f67d0 100644 --- a/src/licensedcode/data/rules/mit-ack_5.RULE +++ b/src/licensedcode/data/rules/mit-ack_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-ack +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_5.yml b/src/licensedcode/data/rules/mit-ack_5.yml deleted file mode 100644 index 2725ef4efdd..00000000000 --- a/src/licensedcode/data/rules/mit-ack_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-ack -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-ack_6.RULE b/src/licensedcode/data/rules/mit-ack_6.RULE index 6827b2d3415..2cd8bcc0888 100644 --- a/src/licensedcode/data/rules/mit-ack_6.RULE +++ b/src/licensedcode/data/rules/mit-ack_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-ack +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: feh License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_6.yml b/src/licensedcode/data/rules/mit-ack_6.yml deleted file mode 100644 index 2725ef4efdd..00000000000 --- a/src/licensedcode/data/rules/mit-ack_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-ack -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-ack_7.RULE b/src/licensedcode/data/rules/mit-ack_7.RULE index 47612d66506..4af1044c1a9 100644 --- a/src/licensedcode/data/rules/mit-ack_7.RULE +++ b/src/licensedcode/data/rules/mit-ack_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-ack +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MIT-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_7.yml b/src/licensedcode/data/rules/mit-ack_7.yml deleted file mode 100644 index 2725ef4efdd..00000000000 --- a/src/licensedcode/data/rules/mit-ack_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-ack -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-ack_8.RULE b/src/licensedcode/data/rules/mit-ack_8.RULE index 51deac63520..78b1ee6767f 100644 --- a/src/licensedcode/data/rules/mit-ack_8.RULE +++ b/src/licensedcode/data/rules/mit-ack_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-ack +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MIT-feh +--- + https://licenses.nuget.org/MIT-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_8.yml b/src/licensedcode/data/rules/mit-ack_8.yml deleted file mode 100644 index f65f5fbf97a..00000000000 --- a/src/licensedcode/data/rules/mit-ack_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MIT-feh diff --git a/src/licensedcode/data/rules/mit-ack_9.RULE b/src/licensedcode/data/rules/mit-ack_9.RULE index 85c6a6628c6..43fbb111a80 100644 --- a/src/licensedcode/data/rules/mit-ack_9.RULE +++ b/src/licensedcode/data/rules/mit-ack_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-ack +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MIT-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_9.yml b/src/licensedcode/data/rules/mit-ack_9.yml deleted file mode 100644 index 993fff76cba..00000000000 --- a/src/licensedcode/data/rules/mit-ack_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-ack_url_1.RULE b/src/licensedcode/data/rules/mit-ack_url_1.RULE index c00a3152396..1f8581ea8a1 100644 --- a/src/licensedcode/data/rules/mit-ack_url_1.RULE +++ b/src/licensedcode/data/rules/mit-ack_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-ack +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-feh +--- + https://spdx.org/licenses/mit-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_url_1.yml b/src/licensedcode/data/rules/mit-ack_url_1.yml deleted file mode 100644 index aff2a27715a..00000000000 --- a/src/licensedcode/data/rules/mit-ack_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-feh diff --git a/src/licensedcode/data/rules/mit-ack_url_2.RULE b/src/licensedcode/data/rules/mit-ack_url_2.RULE index d5d1ecce3ac..3d0f0669ea8 100644 --- a/src/licensedcode/data/rules/mit-ack_url_2.RULE +++ b/src/licensedcode/data/rules/mit-ack_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-ack +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit-feh.html +--- + https://spdx.org/licenses/mit-feh.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-ack_url_2.yml b/src/licensedcode/data/rules/mit-ack_url_2.yml deleted file mode 100644 index 1428c21cd4e..00000000000 --- a/src/licensedcode/data/rules/mit-ack_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit-feh.html diff --git a/src/licensedcode/data/rules/mit-addition_1.RULE b/src/licensedcode/data/rules/mit-addition_1.RULE index 7a4c66cdc00..b80d8f6363d 100644 --- a/src/licensedcode/data/rules/mit-addition_1.RULE +++ b/src/licensedcode/data/rules/mit-addition_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-addition +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE-BigInteger +--- + See "LICENSE-BigInteger" for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-addition_1.yml b/src/licensedcode/data/rules/mit-addition_1.yml deleted file mode 100644 index a66f73ff2a1..00000000000 --- a/src/licensedcode/data/rules/mit-addition_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-addition -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE-BigInteger diff --git a/src/licensedcode/data/rules/mit-export-control.SPDX.RULE b/src/licensedcode/data/rules/mit-export-control.SPDX.RULE index 800dc11fdc1..02de8906fbb 100644 --- a/src/licensedcode/data/rules/mit-export-control.SPDX.RULE +++ b/src/licensedcode/data/rules/mit-export-control.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-export-control +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Use and copying of this software and preparation of derivative works based upon this software are permitted. Any copy of this software or of any derivative work must include the above copyright notice of Xerox Corporation, this paragraph and the one diff --git a/src/licensedcode/data/rules/mit-export-control.SPDX.yml b/src/licensedcode/data/rules/mit-export-control.SPDX.yml deleted file mode 100644 index 498eca5d6ab..00000000000 --- a/src/licensedcode/data/rules/mit-export-control.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-export-control -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/mit-export-control_1.RULE b/src/licensedcode/data/rules/mit-export-control_1.RULE index efa90c2bcb3..20c900cde3f 100644 --- a/src/licensedcode/data/rules/mit-export-control_1.RULE +++ b/src/licensedcode/data/rules/mit-export-control_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Xerox License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_1.yml b/src/licensedcode/data/rules/mit-export-control_1.yml deleted file mode 100644 index d0c106a2ee5..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-export-control_10.RULE b/src/licensedcode/data/rules/mit-export-control_10.RULE index c3d3cadafaf..cab242af26c 100644 --- a/src/licensedcode/data/rules/mit-export-control_10.RULE +++ b/src/licensedcode/data/rules/mit-export-control_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Xerox +--- + LICENSE {{Xerox}} https://spdx.org/licenses/Xerox \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_10.yml b/src/licensedcode/data/rules/mit-export-control_10.yml deleted file mode 100644 index d3d23a483a5..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Xerox diff --git a/src/licensedcode/data/rules/mit-export-control_11.RULE b/src/licensedcode/data/rules/mit-export-control_11.RULE index 5e3c70591a6..8cb2d130ca1 100644 --- a/src/licensedcode/data/rules/mit-export-control_11.RULE +++ b/src/licensedcode/data/rules/mit-export-control_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Xerox +--- + {{Xerox}} https://spdx.org/licenses/Xerox \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_11.yml b/src/licensedcode/data/rules/mit-export-control_11.yml deleted file mode 100644 index d3d23a483a5..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Xerox diff --git a/src/licensedcode/data/rules/mit-export-control_2.RULE b/src/licensedcode/data/rules/mit-export-control_2.RULE index 8c0218cd4e6..d87570d9f6f 100644 --- a/src/licensedcode/data/rules/mit-export-control_2.RULE +++ b/src/licensedcode/data/rules/mit-export-control_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Xerox License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_2.yml b/src/licensedcode/data/rules/mit-export-control_2.yml deleted file mode 100644 index d0c106a2ee5..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-export-control_3.RULE b/src/licensedcode/data/rules/mit-export-control_3.RULE index ad3dd73cce1..5799af4133c 100644 --- a/src/licensedcode/data/rules/mit-export-control_3.RULE +++ b/src/licensedcode/data/rules/mit-export-control_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Xerox Xerox License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_3.yml b/src/licensedcode/data/rules/mit-export-control_3.yml deleted file mode 100644 index d0c106a2ee5..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-export-control_4.RULE b/src/licensedcode/data/rules/mit-export-control_4.RULE index 0877c2336c8..bf23814933a 100644 --- a/src/licensedcode/data/rules/mit-export-control_4.RULE +++ b/src/licensedcode/data/rules/mit-export-control_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Xerox License Xerox \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_4.yml b/src/licensedcode/data/rules/mit-export-control_4.yml deleted file mode 100644 index d0c106a2ee5..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-export-control_5.RULE b/src/licensedcode/data/rules/mit-export-control_5.RULE index b6e5c7173d2..e1ed742689f 100644 --- a/src/licensedcode/data/rules/mit-export-control_5.RULE +++ b/src/licensedcode/data/rules/mit-export-control_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-export-control +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Xerox \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_5.yml b/src/licensedcode/data/rules/mit-export-control_5.yml deleted file mode 100644 index 57afe2a5001..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-export-control -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-export-control_6.RULE b/src/licensedcode/data/rules/mit-export-control_6.RULE index 32a1ba01291..32bba8a3811 100644 --- a/src/licensedcode/data/rules/mit-export-control_6.RULE +++ b/src/licensedcode/data/rules/mit-export-control_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-export-control +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Xerox License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_6.yml b/src/licensedcode/data/rules/mit-export-control_6.yml deleted file mode 100644 index 57afe2a5001..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-export-control -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-export-control_7.RULE b/src/licensedcode/data/rules/mit-export-control_7.RULE index 810adb2efec..d4017ed44d6 100644 --- a/src/licensedcode/data/rules/mit-export-control_7.RULE +++ b/src/licensedcode/data/rules/mit-export-control_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-export-control +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Xerox \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_7.yml b/src/licensedcode/data/rules/mit-export-control_7.yml deleted file mode 100644 index 57afe2a5001..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-export-control -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-export-control_8.RULE b/src/licensedcode/data/rules/mit-export-control_8.RULE index b5091f8161e..512cbc5848e 100644 --- a/src/licensedcode/data/rules/mit-export-control_8.RULE +++ b/src/licensedcode/data/rules/mit-export-control_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Xerox +--- + https://licenses.nuget.org/Xerox \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_8.yml b/src/licensedcode/data/rules/mit-export-control_8.yml deleted file mode 100644 index cca20c7c898..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Xerox diff --git a/src/licensedcode/data/rules/mit-export-control_9.RULE b/src/licensedcode/data/rules/mit-export-control_9.RULE index 3183ab94c24..36073611eaa 100644 --- a/src/licensedcode/data/rules/mit-export-control_9.RULE +++ b/src/licensedcode/data/rules/mit-export-control_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Xerox \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_9.yml b/src/licensedcode/data/rules/mit-export-control_9.yml deleted file mode 100644 index 526886096d8..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-export-control_url_1.RULE b/src/licensedcode/data/rules/mit-export-control_url_1.RULE index d4f82123258..a2dd3e10566 100644 --- a/src/licensedcode/data/rules/mit-export-control_url_1.RULE +++ b/src/licensedcode/data/rules/mit-export-control_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xerox +--- + https://spdx.org/licenses/xerox \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_url_1.yml b/src/licensedcode/data/rules/mit-export-control_url_1.yml deleted file mode 100644 index d4a25bbad22..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xerox diff --git a/src/licensedcode/data/rules/mit-export-control_url_2.RULE b/src/licensedcode/data/rules/mit-export-control_url_2.RULE index 86e99dbac17..b3087f8d626 100644 --- a/src/licensedcode/data/rules/mit-export-control_url_2.RULE +++ b/src/licensedcode/data/rules/mit-export-control_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-export-control +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xerox.html +--- + https://spdx.org/licenses/xerox.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-export-control_url_2.yml b/src/licensedcode/data/rules/mit-export-control_url_2.yml deleted file mode 100644 index 631e910fba6..00000000000 --- a/src/licensedcode/data/rules/mit-export-control_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-export-control -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xerox.html diff --git a/src/licensedcode/data/rules/mit-license-1998.RULE b/src/licensedcode/data/rules/mit-license-1998.RULE index 1ceea50acde..c6447085e85 100644 --- a/src/licensedcode/data/rules/mit-license-1998.RULE +++ b/src/licensedcode/data/rules/mit-license-1998.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-license-1998 +is_license_notice: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright diff --git a/src/licensedcode/data/rules/mit-license-1998.yml b/src/licensedcode/data/rules/mit-license-1998.yml deleted file mode 100644 index 5e5ce3ecef4..00000000000 --- a/src/licensedcode/data/rules/mit-license-1998.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-license-1998 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit-modern.RULE b/src/licensedcode/data/rules/mit-modern.RULE index 045293da745..4ae29fa22e8 100644 --- a/src/licensedcode/data/rules/mit-modern.RULE +++ b/src/licensedcode/data/rules/mit-modern.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-modern +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/MIT +--- + http://fedoraproject.org/wiki/Licensing/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern.yml b/src/licensedcode/data/rules/mit-modern.yml deleted file mode 100644 index bb218fc88b5..00000000000 --- a/src/licensedcode/data/rules/mit-modern.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/MIT diff --git a/src/licensedcode/data/rules/mit-modern_1.RULE b/src/licensedcode/data/rules/mit-modern_1.RULE index 7c24bbca9f7..8e57ffa7445 100644 --- a/src/licensedcode/data/rules/mit-modern_1.RULE +++ b/src/licensedcode/data/rules/mit-modern_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-modern +is_license_notice: yes +relevance: 85 +--- + is licensed under the so-called "Old MIT" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_1.yml b/src/licensedcode/data/rules/mit-modern_1.yml deleted file mode 100644 index 81576865a89..00000000000 --- a/src/licensedcode/data/rules/mit-modern_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-modern -is_license_notice: yes -relevance: 85 diff --git a/src/licensedcode/data/rules/mit-modern_10.RULE b/src/licensedcode/data/rules/mit-modern_10.RULE index 336248300f8..f2e4e759272 100644 --- a/src/licensedcode/data/rules/mit-modern_10.RULE +++ b/src/licensedcode/data/rules/mit-modern_10.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-modern +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT License Modern Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_10.yml b/src/licensedcode/data/rules/mit-modern_10.yml deleted file mode 100644 index 871161464a3..00000000000 --- a/src/licensedcode/data/rules/mit-modern_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-modern_11.RULE b/src/licensedcode/data/rules/mit-modern_11.RULE index d3ac1e4cebc..fcc89433c5f 100644 --- a/src/licensedcode/data/rules/mit-modern_11.RULE +++ b/src/licensedcode/data/rules/mit-modern_11.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-modern +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: MIT License Modern Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_11.yml b/src/licensedcode/data/rules/mit-modern_11.yml deleted file mode 100644 index 871161464a3..00000000000 --- a/src/licensedcode/data/rules/mit-modern_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-modern_12.RULE b/src/licensedcode/data/rules/mit-modern_12.RULE index 97325f64186..9ba7fbe3fc2 100644 --- a/src/licensedcode/data/rules/mit-modern_12.RULE +++ b/src/licensedcode/data/rules/mit-modern_12.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-modern +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT-Modern-Variant MIT License Modern Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_12.yml b/src/licensedcode/data/rules/mit-modern_12.yml deleted file mode 100644 index 871161464a3..00000000000 --- a/src/licensedcode/data/rules/mit-modern_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-modern_13.RULE b/src/licensedcode/data/rules/mit-modern_13.RULE index 26a52a04f06..d3acfdc4f68 100644 --- a/src/licensedcode/data/rules/mit-modern_13.RULE +++ b/src/licensedcode/data/rules/mit-modern_13.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-modern +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT License Modern Variant MIT-Modern-Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_13.yml b/src/licensedcode/data/rules/mit-modern_13.yml deleted file mode 100644 index 871161464a3..00000000000 --- a/src/licensedcode/data/rules/mit-modern_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-modern_14.RULE b/src/licensedcode/data/rules/mit-modern_14.RULE index eb4f9b7f913..43724ce58c3 100644 --- a/src/licensedcode/data/rules/mit-modern_14.RULE +++ b/src/licensedcode/data/rules/mit-modern_14.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-modern +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT-Modern-Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_14.yml b/src/licensedcode/data/rules/mit-modern_14.yml deleted file mode 100644 index c6ed4cfeddf..00000000000 --- a/src/licensedcode/data/rules/mit-modern_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-modern -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-modern_15.RULE b/src/licensedcode/data/rules/mit-modern_15.RULE index 22784a03cf6..373e3d00959 100644 --- a/src/licensedcode/data/rules/mit-modern_15.RULE +++ b/src/licensedcode/data/rules/mit-modern_15.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-modern +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT License Modern Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_15.yml b/src/licensedcode/data/rules/mit-modern_15.yml deleted file mode 100644 index c6ed4cfeddf..00000000000 --- a/src/licensedcode/data/rules/mit-modern_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-modern -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-modern_16.RULE b/src/licensedcode/data/rules/mit-modern_16.RULE index 57c85c310aa..12adb161c03 100644 --- a/src/licensedcode/data/rules/mit-modern_16.RULE +++ b/src/licensedcode/data/rules/mit-modern_16.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-modern +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MIT-Modern-Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_16.yml b/src/licensedcode/data/rules/mit-modern_16.yml deleted file mode 100644 index c6ed4cfeddf..00000000000 --- a/src/licensedcode/data/rules/mit-modern_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-modern -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-modern_17.RULE b/src/licensedcode/data/rules/mit-modern_17.RULE index 59dcf41f8ae..a44d77b6ea6 100644 --- a/src/licensedcode/data/rules/mit-modern_17.RULE +++ b/src/licensedcode/data/rules/mit-modern_17.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-modern +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MIT-Modern-Variant +--- + https://licenses.nuget.org/MIT-Modern-Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_17.yml b/src/licensedcode/data/rules/mit-modern_17.yml deleted file mode 100644 index 50f56ead5eb..00000000000 --- a/src/licensedcode/data/rules/mit-modern_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MIT-Modern-Variant diff --git a/src/licensedcode/data/rules/mit-modern_18.RULE b/src/licensedcode/data/rules/mit-modern_18.RULE index f3e17275e73..42089432330 100644 --- a/src/licensedcode/data/rules/mit-modern_18.RULE +++ b/src/licensedcode/data/rules/mit-modern_18.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-modern +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MIT-Modern-Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_18.yml b/src/licensedcode/data/rules/mit-modern_18.yml deleted file mode 100644 index 5099850845c..00000000000 --- a/src/licensedcode/data/rules/mit-modern_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-modern_19.RULE b/src/licensedcode/data/rules/mit-modern_19.RULE index 292d314cfac..7ea97248860 100644 --- a/src/licensedcode/data/rules/mit-modern_19.RULE +++ b/src/licensedcode/data/rules/mit-modern_19.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-modern +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-Modern-Variant +--- + LICENSE {{MIT-Modern-Variant}} https://spdx.org/licenses/MIT-Modern-Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_19.yml b/src/licensedcode/data/rules/mit-modern_19.yml deleted file mode 100644 index 9d22acfd2ad..00000000000 --- a/src/licensedcode/data/rules/mit-modern_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-Modern-Variant diff --git a/src/licensedcode/data/rules/mit-modern_2.RULE b/src/licensedcode/data/rules/mit-modern_2.RULE index 00b722cdc28..2f5d9f3f009 100644 --- a/src/licensedcode/data/rules/mit-modern_2.RULE +++ b/src/licensedcode/data/rules/mit-modern_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-modern +is_license_text: yes +--- + * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose, without fee, and without written agreement is * hereby granted, provided that the above copyright notice and the following diff --git a/src/licensedcode/data/rules/mit-modern_2.yml b/src/licensedcode/data/rules/mit-modern_2.yml deleted file mode 100644 index ec238c49a3c..00000000000 --- a/src/licensedcode/data/rules/mit-modern_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-modern -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-modern_20.RULE b/src/licensedcode/data/rules/mit-modern_20.RULE index 1e41c4d6bb1..95ff8262b9c 100644 --- a/src/licensedcode/data/rules/mit-modern_20.RULE +++ b/src/licensedcode/data/rules/mit-modern_20.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-modern +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-Modern-Variant +--- + {{MIT-Modern-Variant}} https://spdx.org/licenses/MIT-Modern-Variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_20.yml b/src/licensedcode/data/rules/mit-modern_20.yml deleted file mode 100644 index 9d22acfd2ad..00000000000 --- a/src/licensedcode/data/rules/mit-modern_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-modern -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-Modern-Variant diff --git a/src/licensedcode/data/rules/mit-modern_3.RULE b/src/licensedcode/data/rules/mit-modern_3.RULE index 07bb8b59714..2b89dba99f9 100644 --- a/src/licensedcode/data/rules/mit-modern_3.RULE +++ b/src/licensedcode/data/rules/mit-modern_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-modern +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without written agreement is hereby granted, provided that the above copyright notice and the following @@ -12,4 +17,4 @@ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND UNIVERSITY HAS NO OBLIGATION TO - PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file + PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_3.yml b/src/licensedcode/data/rules/mit-modern_3.yml deleted file mode 100644 index ec238c49a3c..00000000000 --- a/src/licensedcode/data/rules/mit-modern_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-modern -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-modern_4.RULE b/src/licensedcode/data/rules/mit-modern_4.RULE index 08ac1852efd..79ec3c7d010 100644 --- a/src/licensedcode/data/rules/mit-modern_4.RULE +++ b/src/licensedcode/data/rules/mit-modern_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-modern +is_license_text: yes +relevance: 99 +--- + * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose, without fee, and without written agreement is * hereby granted, provided that the above copyright notice, the following diff --git a/src/licensedcode/data/rules/mit-modern_4.yml b/src/licensedcode/data/rules/mit-modern_4.yml deleted file mode 100644 index 5857e602b16..00000000000 --- a/src/licensedcode/data/rules/mit-modern_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-modern -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit-modern_5.RULE b/src/licensedcode/data/rules/mit-modern_5.RULE index 260a4cbbbf7..40731b2d05e 100644 --- a/src/licensedcode/data/rules/mit-modern_5.RULE +++ b/src/licensedcode/data/rules/mit-modern_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-modern +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and diff --git a/src/licensedcode/data/rules/mit-modern_5.yml b/src/licensedcode/data/rules/mit-modern_5.yml deleted file mode 100644 index e43ab5bdf16..00000000000 --- a/src/licensedcode/data/rules/mit-modern_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-modern -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-modern_6.RULE b/src/licensedcode/data/rules/mit-modern_6.RULE index 56c478403e3..b715c51dd6a 100644 --- a/src/licensedcode/data/rules/mit-modern_6.RULE +++ b/src/licensedcode/data/rules/mit-modern_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-modern +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without written agreement is hereby granted, provided that the above copyright notice and the following diff --git a/src/licensedcode/data/rules/mit-modern_6.yml b/src/licensedcode/data/rules/mit-modern_6.yml deleted file mode 100644 index ec238c49a3c..00000000000 --- a/src/licensedcode/data/rules/mit-modern_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-modern -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-modern_7.RULE b/src/licensedcode/data/rules/mit-modern_7.RULE index 96ed451a9e2..6931e89f576 100644 --- a/src/licensedcode/data/rules/mit-modern_7.RULE +++ b/src/licensedcode/data/rules/mit-modern_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-modern +is_license_text: yes +--- + {{Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee}}, and without written agreement is hereby granted, provided that the above copyright notice and the following @@ -12,4 +17,4 @@ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, - UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_7.yml b/src/licensedcode/data/rules/mit-modern_7.yml deleted file mode 100644 index ec238c49a3c..00000000000 --- a/src/licensedcode/data/rules/mit-modern_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-modern -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-modern_8.RULE b/src/licensedcode/data/rules/mit-modern_8.RULE index 7b9e3ba10ec..bbd2ddc3bd0 100644 --- a/src/licensedcode/data/rules/mit-modern_8.RULE +++ b/src/licensedcode/data/rules/mit-modern_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-modern +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without written agreement is hereby granted, provided that the above copyright notice and the diff --git a/src/licensedcode/data/rules/mit-modern_8.yml b/src/licensedcode/data/rules/mit-modern_8.yml deleted file mode 100644 index ec238c49a3c..00000000000 --- a/src/licensedcode/data/rules/mit-modern_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-modern -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-modern_9.RULE b/src/licensedcode/data/rules/mit-modern_9.RULE index dad46a4fcc8..e1d98e6a755 100644 --- a/src/licensedcode/data/rules/mit-modern_9.RULE +++ b/src/licensedcode/data/rules/mit-modern_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-modern +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without written agreement is hereby granted, provided that the above copyright notice and the diff --git a/src/licensedcode/data/rules/mit-modern_9.yml b/src/licensedcode/data/rules/mit-modern_9.yml deleted file mode 100644 index ec238c49a3c..00000000000 --- a/src/licensedcode/data/rules/mit-modern_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-modern -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-modern_and_other-permissive_1.RULE b/src/licensedcode/data/rules/mit-modern_and_other-permissive_1.RULE index 142ba56c705..9d7300ed4ab 100644 --- a/src/licensedcode/data/rules/mit-modern_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/mit-modern_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit-modern AND other-permissive +is_license_notice: yes +referenced_filenames: + - COPYING +notes: Seen in https://github.com/harfbuzz/harfbuzz/blob/main/COPYING +--- + licensed under the so-called "Old MIT" license. Details follow. For parts of that are licensed under different licenses see individual files names COPYING in subdirectories where applicable. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-modern_and_other-permissive_1.yml b/src/licensedcode/data/rules/mit-modern_and_other-permissive_1.yml deleted file mode 100644 index 94656179917..00000000000 --- a/src/licensedcode/data/rules/mit-modern_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-modern AND other-permissive -is_license_notice: yes -referenced_filenames: - - COPYING -notes: Seen in https://github.com/harfbuzz/harfbuzz/blob/main/COPYING diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_1.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_1.RULE index 037ab0e0d15..a395142ef9b 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_1.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-no-advert-export-control +is_license_text: yes +minimum_coverage: 90 +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to @@ -16,4 +22,4 @@ or implied warranty. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_1.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_1.yml deleted file mode 100644 index 53c240765f5..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-no-advert-export-control -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_2.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_2.RULE index 6ac1f33f10b..9aaa099f407 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_2.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-no-advert-export-control +is_license_text: yes +relevance: 100 +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_2.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_2.yml deleted file mode 100644 index 9b46a0db050..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-no-advert-export-control -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_3.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_3.RULE index 16a8f092584..967d1abe6d7 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_3.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-no-advert-export-control +is_license_text: yes +relevance: 100 +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_3.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_3.yml deleted file mode 100644 index 9b46a0db050..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-no-advert-export-control -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_4.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_4.RULE index 0e82a615637..2117204c750 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_4.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-no-advert-export-control +is_license_text: yes +relevance: 99 +notes: midly truncated text +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_4.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_4.yml deleted file mode 100644 index 43a5330a94b..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-no-advert-export-control -is_license_text: yes -relevance: 99 -notes: midly truncated text diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_5.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_5.RULE index 4cf2f5c3a47..75792e8561a 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_5.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-no-advert-export-control +is_license_text: yes +relevance: 99 +notes: midly truncated text +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to obtain such a license before diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_5.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_5.yml deleted file mode 100644 index 43a5330a94b..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-no-advert-export-control -is_license_text: yes -relevance: 99 -notes: midly truncated text diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_6.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_6.RULE index ed96e16126c..dda8cdf9d6b 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_6.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-no-advert-export-control +is_license_text: yes +relevance: 95 +notes: this variant has a longer and different disclaimer but is otherwise the same +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to obtain such a license before diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_6.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_6.yml deleted file mode 100644 index c80dd8f61bc..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-no-advert-export-control -is_license_text: yes -relevance: 95 -notes: this variant has a longer and different disclaimer but is otherwise the same diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_7.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_7.RULE index 2031ec33822..2d0142a3627 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_7.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-no-advert-export-control +is_license_text: yes +relevance: 100 +--- + * Export of this software from the United States of America may require * a specific license from the United States Government. It is the * responsibility of any person or organization contemplating export to @@ -16,4 +22,4 @@ * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_7.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_7.yml deleted file mode 100644 index 9b46a0db050..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-no-advert-export-control -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_8.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_8.RULE index 36ee8b07426..feeeff8f0fc 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_8.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit-no-advert-export-control +is_license_text: yes +relevance: 100 +notes: https://sources.debian.org/src/netkit-telnet-ssl/0.17.41+0.2-3.2/debian/patches/500-implement_ssl.diff/?hl=1612 + This has a shorter disclaimer +--- + * Export of this software from the United States of America is assumed * to require a specific license from the United States Government. * It is the responsibility of any person or organization contemplating diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_8.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_8.yml deleted file mode 100644 index d9657103a00..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-no-advert-export-control -is_license_text: yes -relevance: 100 -notes: https://sources.debian.org/src/netkit-telnet-ssl/0.17.41+0.2-3.2/debian/patches/500-implement_ssl.diff/?hl=1612 - This has a shorter disclaimer diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/mit-no-advert-export-control_and_proprietary-license_1.RULE index cbad3b36c65..9a67189a654 100644 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/mit-no-advert-export-control_and_proprietary-license_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: mit-no-advert-export-control AND proprietary-license +is_license_text: yes +relevance: 100 +notes: this is a modified mit-no-advert-export-control with extra extensive notification requirements + reported as proprietary-license. It is found in kerberos for a section related to "Portions + of the implementation of the Fortuna-like PRNG are subject to the following notice" and + with "Copyright (C) 1994 by the University of Southern California" +ignorable_authors: + - the University of Southern California +--- + EXPORT OF THIS SOFTWARE from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization diff --git a/src/licensedcode/data/rules/mit-no-advert-export-control_and_proprietary-license_1.yml b/src/licensedcode/data/rules/mit-no-advert-export-control_and_proprietary-license_1.yml deleted file mode 100644 index 83d2fb1de4a..00000000000 --- a/src/licensedcode/data/rules/mit-no-advert-export-control_and_proprietary-license_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: mit-no-advert-export-control AND proprietary-license -is_license_text: yes -relevance: 100 -notes: this is a modified mit-no-advert-export-control with extra extensive notification requirements - reported as proprietary-license. It is found in kerberos for a section related to "Portions - of the implementation of the Fortuna-like PRNG are subject to the following notice" and - with "Copyright (C) 1994 by the University of Southern California" -ignorable_authors: - - the University of Southern California diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_1.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_1.RULE index 87706507a96..3a29d9cb1b1 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_1.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +relevance: 100 +--- + MIT +no-false-attribs License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_1.yml b/src/licensedcode/data/rules/mit-no-false-attribs_1.yml deleted file mode 100644 index f51fb71a600..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_10.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_10.RULE index a3c197179f1..3689b054e3e 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_10.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_10.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MITNFA \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_10.yml b/src/licensedcode/data/rules/mit-no-false-attribs_10.yml deleted file mode 100644 index f51fb71a600..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_11.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_11.RULE index 35cae9b9a13..9769cfaf740 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_11.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MITNFA +--- + {{MITNFA}} https://spdx.org/licenses/MITNFA \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_11.yml b/src/licensedcode/data/rules/mit-no-false-attribs_11.yml deleted file mode 100644 index 2c4878fd8f2..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MITNFA diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_12.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_12.RULE index 7867b4007ba..5e4e6800117 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_12.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_12.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MITNFA +--- + LICENSE {{MITNFA}} https://spdx.org/licenses/MITNFA \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_12.yml b/src/licensedcode/data/rules/mit-no-false-attribs_12.yml deleted file mode 100644 index 2c4878fd8f2..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MITNFA diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_2.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_2.RULE index b4217882fb5..44801dac4b7 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_2.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: MIT +no-false-attribs license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_2.yml b/src/licensedcode/data/rules/mit-no-false-attribs_2.yml deleted file mode 100644 index 4bd9d6ef1b8..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_3.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_3.RULE index 3d18e155088..32be9cb0d45 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_3.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MITNFA MIT +no-false-attribs license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_3.yml b/src/licensedcode/data/rules/mit-no-false-attribs_3.yml deleted file mode 100644 index 4bd9d6ef1b8..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_4.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_4.RULE index a29c0606204..c2636357287 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_4.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT +no-false-attribs license MITNFA \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_4.yml b/src/licensedcode/data/rules/mit-no-false-attribs_4.yml deleted file mode 100644 index 4bd9d6ef1b8..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_5.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_5.RULE index 191dac92e2f..9f947a21c0e 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_5.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-no-false-attribs +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MITNFA \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_5.yml b/src/licensedcode/data/rules/mit-no-false-attribs_5.yml deleted file mode 100644 index 571a4847231..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_6.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_6.RULE index 476f5bd3fa0..fa20ca2deed 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_6.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-no-false-attribs +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT +no-false-attribs license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_6.yml b/src/licensedcode/data/rules/mit-no-false-attribs_6.yml deleted file mode 100644 index 571a4847231..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_7.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_7.RULE index f845794a9d1..885bb113455 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_7.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-no-false-attribs +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MITNFA \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_7.yml b/src/licensedcode/data/rules/mit-no-false-attribs_7.yml deleted file mode 100644 index 571a4847231..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_8.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_8.RULE index 11aa2c60c13..96cd600bd88 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_8.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['MIT +NO-FALSE-ATTRIBS', 'MITNFA'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_8.yml b/src/licensedcode/data/rules/mit-no-false-attribs_8.yml deleted file mode 100644 index 89c9da9e4ef..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_9.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_9.RULE index ca0d16f776c..e1ad604f094 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_9.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_9.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MITNFA +--- + https://licenses.nuget.org/MITNFA \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_9.yml b/src/licensedcode/data/rules/mit-no-false-attribs_9.yml deleted file mode 100644 index 69e05ae4032..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MITNFA diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_url_1.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_url_1.RULE index 02b61572c2d..49b9a2fa1b8 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_url_1.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mitnfa +--- + https://spdx.org/licenses/mitnfa \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_url_1.yml b/src/licensedcode/data/rules/mit-no-false-attribs_url_1.yml deleted file mode 100644 index 8a4632a6ac3..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mitnfa diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_url_2.RULE b/src/licensedcode/data/rules/mit-no-false-attribs_url_2.RULE index cbffa6ad7b1..c8e00fa39f4 100644 --- a/src/licensedcode/data/rules/mit-no-false-attribs_url_2.RULE +++ b/src/licensedcode/data/rules/mit-no-false-attribs_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mitnfa.html +--- + https://spdx.org/licenses/mitnfa.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-no-false-attribs_url_2.yml b/src/licensedcode/data/rules/mit-no-false-attribs_url_2.yml deleted file mode 100644 index 1ea6702e4a0..00000000000 --- a/src/licensedcode/data/rules/mit-no-false-attribs_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mitnfa.html diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_1.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_1.RULE index 81ad308949d..17d1d37a71f 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_1.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_1.yml deleted file mode 100644 index 9a8d1b84afe..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_10.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_10.RULE index 285081c9145..db0dfcf3e17 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_10.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://ntp.org/license + - http://opensource.org/licenses/ntp-license.php +--- + AutoOpts is a copyrighted work. This source file is not encumbered by AutoOpts licensing, but is provided under the licensing terms chosen by the ntpd author or copyright holder. AutoOpts is diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_10.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_10.yml deleted file mode 100644 index 3c66738e473..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://ntp.org/license - - http://opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_11.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_11.RULE index c9a085526b2..e8a678b8009 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_11.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_11.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://ntp.org/license + - http://opensource.org/licenses/ntp-license.php +--- + The ntpd program is copyrighted and licensed under the following terms: diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_11.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_11.yml deleted file mode 100644 index 3c66738e473..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://ntp.org/license - - http://opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_12.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_12.RULE index e02220e7dd5..79323be541d 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_12.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 100 +--- + This software is provided by Corporation 'as is' and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_12.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_12.yml deleted file mode 100644 index d80df1b8e1a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_13.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_13.RULE index 0e684de2ff2..3ebb9b8183f 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_13.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 99 +notes: minor variant +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appears in all copies and diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_13.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_13.yml deleted file mode 100644 index ef4f9ffc439..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 99 -notes: minor variant diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_14.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_14.RULE index 03163797772..803c4aeb026 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_14.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 99 +notes: in x11 legacy +--- + Permission to use, copy, modify and distribute this documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and that both that copyright notice diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_14.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_14.yml deleted file mode 100644 index 7c0ea2be70d..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 99 -notes: in x11 legacy diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_15.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_15.RULE index fed27464bff..494c6950d54 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_15.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 100 +notes: Seen in pgpool-ii +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_15.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_15.yml deleted file mode 100644 index 9d7aa85fc61..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 100 -notes: Seen in pgpool-ii diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_16.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_16.RULE index 92f13a597e5..d2ac83adf39 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_16.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +minimum_coverage: 90 +--- + License: MIT-like Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_16.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_16.yml deleted file mode 100644 index 6c5424ae0b7..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_17.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_17.RULE index 9abc209bfc8..77bcaadb16c 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_17.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +minimum_coverage: 90 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_17.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_17.yml deleted file mode 100644 index 6c5424ae0b7..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_18.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_18.RULE index fc58f10e2d8..6742984248b 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_18.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +minimum_coverage: 90 +--- + License: MIT-like Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_18.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_18.yml deleted file mode 100644 index 6c5424ae0b7..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_19.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_19.RULE index 5b576d75f1e..de3f441a219 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_19.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +minimum_coverage: 90 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_19.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_19.yml deleted file mode 100644 index 6c5424ae0b7..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_2.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_2.RULE index c4981e097c8..a99a3b6ee88 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_2.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29 +--- + http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_2.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_2.yml deleted file mode 100644 index be5d56e10c7..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_20.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_20.RULE index d3a5ce90a06..9cce9c5665c 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_20.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_20.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NTP NTP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_20.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_20.yml deleted file mode 100644 index 1777afcba9c..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_21.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_21.RULE index 66eb6b08da8..f5a0931cdc1 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_21.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_21.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: NTP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_21.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_21.yml deleted file mode 100644 index 8ff46633322..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_22.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_22.RULE index 09cfadac07c..9c7ada406f2 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_22.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_22.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-old-style-no-advert +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NTP \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_22.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_22.yml deleted file mode 100644 index 55bab9264db..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_23.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_23.RULE index b5ff4fbbd50..b88e11487a8 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_23.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_23.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-old-style-no-advert +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NTP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_23.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_23.yml deleted file mode 100644 index 55bab9264db..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_24.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_24.RULE index 4e13f3f4efb..d5ac509547d 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_24.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_24.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-old-style-no-advert +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NTP \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_24.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_24.yml deleted file mode 100644 index 55bab9264db..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_25.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_25.RULE index f019c206568..c9557bc620f 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_25.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_25.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 95 +notes: this is a truncated notice without warranty disclaimer Seen in https://fastcrypto.org/ + umac +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and with or without fee, is hereby granted provided that the above copyright notice appears in all copies and in supporting documentation, and that the name of the copyright holder not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_25.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_25.yml deleted file mode 100644 index f069c0e7c9b..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 95 -notes: this is a truncated notice without warranty disclaimer Seen in https://fastcrypto.org/ - umac diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_26.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_26.RULE index 23ea4735443..eaa13a12046 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_26.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_26.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NTP +--- + https://licenses.nuget.org/NTP \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_26.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_26.yml deleted file mode 100644 index ead9f8aed09..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NTP diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_27.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_27.RULE index 376ad5881af..c023d93e564 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_27.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_27.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NTP \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_27.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_27.yml deleted file mode 100644 index c2ce6aab849..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_28.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_28.RULE index 5868d0e4ec7..b86294003fa 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_28.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_28.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NTP +--- + LICENSE {{NTP}} https://spdx.org/licenses/NTP \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_28.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_28.yml deleted file mode 100644 index e100cfc10d2..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NTP diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_29.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_29.RULE index 2f71ecfff21..ec236042dfe 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_29.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_29.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NTP +--- + {{NTP}} https://spdx.org/licenses/NTP \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_29.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_29.yml deleted file mode 100644 index e100cfc10d2..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NTP diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_3.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_3.RULE index d931512a6ee..d7150850c0d 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_3.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +notes: this has the extra "and sell" permissions +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that @@ -6,4 +12,4 @@ documentation, and that the name of M.I.T. not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. M.I.T. makes no representations about the suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. +without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_3.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_3.yml deleted file mode 100644 index 897bfac5e97..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -notes: this has the extra "and sell" permissions diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_4.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_4.RULE index 8e0608a4113..8fce1a04200 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_4.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appears in all copies and that both the diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_4.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_4.yml deleted file mode 100644 index d80df1b8e1a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_5.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_5.RULE index fe1c3c1aa0e..e428d49363b 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_5.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice @@ -8,4 +13,4 @@ used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. M.I.T. and the M.I.T. S.I.P.B. make no representations about the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. +provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_5.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_5.yml deleted file mode 100644 index 9a8d1b84afe..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_6.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_6.RULE index c2ba6bba914..a858562582e 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_6.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +minimum_coverage: 97 +--- + Permission to use, copy, modify, and distribute this software and * its documentation for any purpose with or without fee is hereby * granted, provided that the above copyright notice appears in all * @@ -8,4 +14,4 @@ pertaining to distribution of the software without specific, * written prior permission. The University of makes no * representations about the suitability this software for any * purpose. It is provided "as is" without express or implied * -warranty. * +warranty. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_6.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_6.yml deleted file mode 100644 index d2795a78dc8..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -minimum_coverage: 97 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_7.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_7.RULE index 14fa2a72421..a19da777963 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_7.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +minimum_coverage: 97 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appears in all @@ -8,4 +14,4 @@ pertaining to distribution of the software without specific, written prior permission. The University of Delaware makes no representations about the suitability this software for any purpose. It is provided "as is" without express or implied -warranty. +warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_7.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_7.yml deleted file mode 100644 index d2795a78dc8..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -minimum_coverage: 97 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_8.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_8.RULE index 996005e1d7b..87ceb6c8bf9 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_8.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appears in all copies and that both the diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_8.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_8.yml deleted file mode 100644 index d80df1b8e1a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_9.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_9.RULE index a7097420d8b..7341e33b1dc 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_9.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 100 +notes: text is hyphenated +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_9.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_9.yml deleted file mode 100644 index aad4b64e935..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 100 -notes: text is hyphenated diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_and_warranty-disclaimer_1.RULE index f8240f8a256..d5524409a83 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_and_warranty-disclaimer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style-no-advert AND warranty-disclaimer +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_and_warranty-disclaimer_1.yml deleted file mode 100644 index 350466cbac2..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style-no-advert AND warranty-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl.RULE index 5741707eab0..6321e8a3786 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ntp-license.php +--- + http://www.opensource.org/licenses/ntp-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl.yml deleted file mode 100644 index 589d203c373..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_1.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_1.RULE index 638b6d8b8bc..fd3eb709f4b 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +--- + NTP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_1.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_1.yml deleted file mode 100644 index c2ce6aab849..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_10.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_10.RULE index f8351fcf10c..345a8d568d8 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_10.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose with or without fee is hereby granted, provided that the above copyright notice appears in all copies and that @@ -7,4 +12,4 @@ advertising or publicity pertaining to distribution of the software without specific, written prior permission. The University of Delaware and Network Time Foundation makes no representations about the suitability this software for any purpose. It is provided "as is" without express or -implied warranty. +implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_10.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_10.yml deleted file mode 100644 index 9a8d1b84afe..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_11.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_11.RULE index be038635c15..0ccbdf18342 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_11.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_11.RULE @@ -1 +1,9 @@ - +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ntp.org/license +--- + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_11.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_11.yml deleted file mode 100644 index 5cfe7b2630b..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ntp.org/license diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_12.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_12.RULE index cf7f36b75db..f2b388e8f05 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_12.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_12.RULE @@ -1,5 +1,13 @@ +--- +license_expression: mit-old-style-no-advert +is_license_notice: yes +ignorable_urls: + - http://ntp.org/license + - http://opensource.org/licenses/ntp-license.php +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the NTP License, copies of which can be seen at: - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_12.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_12.yml deleted file mode 100644 index b6165130f4a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_notice: yes -ignorable_urls: - - http://ntp.org/license - - http://opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_13.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_13.RULE index 603f41944ec..3b4c1828108 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_13.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_13.RULE @@ -1 +1,9 @@ - +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ntp-license.php +--- + + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_13.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_13.yml deleted file mode 100644 index 8c630c545b8..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_14.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_14.RULE index 370623a2cfa..978d7e256b2 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_14.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +--- + NTP License (NTP) diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_14.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_14.yml deleted file mode 100644 index 9a8d1b84afe..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_15.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_15.RULE index 851aeba3619..b77fca6e07b 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_15.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit-old-style-no-advert +is_license_notice: yes +ignorable_urls: + - http://ntp.org/license + - http://opensource.org/licenses/ntp-license.php +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the NTP License, copies of which can be seen at: @@ -14,4 +22,4 @@ without specific, written prior permission. makes no representations about the suitability this software for any purpose. It is provided "as is" without express or implied warranty. -the NTP license, +the NTP license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_15.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_15.yml deleted file mode 100644 index b6165130f4a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_notice: yes -ignorable_urls: - - http://ntp.org/license - - http://opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_16.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_16.RULE index 57bed5fd2c4..d3a839ff8d3 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_16.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_16.RULE @@ -1 +1,9 @@ -This program is released under the terms of the NTP license, . +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ntp.org/license +--- + +This program is released under the terms of the NTP license, . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_16.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_16.yml deleted file mode 100644 index 5cfe7b2630b..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ntp.org/license diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_17.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_17.RULE index b70153364c4..a25fa65ea87 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_17.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_17.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +--- + This software is released under the NTP license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_17.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_17.yml deleted file mode 100644 index c2ce6aab849..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_18.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_18.RULE index 365a8561ed4..84d58e8ea14 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_18.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_18.RULE @@ -1 +1,9 @@ -This software is released under the NTP license, . +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ntp.org/license +--- + +This software is released under the NTP license, . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_18.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_18.yml deleted file mode 100644 index 5cfe7b2630b..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ntp.org/license diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_19.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_19.RULE index 3a418927d5b..e090681b55e 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_19.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_19.RULE @@ -1 +1,7 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +--- + This program is released under the NTP license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_19.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_19.yml deleted file mode 100644 index c2ce6aab849..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_2.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_2.RULE index 1c08b924e93..9cf6c68e20e 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_2.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_2.RULE @@ -1 +1,7 @@ -NTP License (NTP) +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +--- + +NTP License (NTP) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_2.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_2.yml deleted file mode 100644 index c2ce6aab849..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_3.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_3.RULE index 8ca616ef527..c8eaa7b091c 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_3.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +relevance: 99 +--- + NTP License (NTP) Permission to use, copy, modify, and distribute this software and its diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_3.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_3.yml deleted file mode 100644 index 7e7163c8af7..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_4.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_4.RULE index e475e660b70..3556c89188a 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_4.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +--- + NTP License (NTP) diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_4.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_4.yml deleted file mode 100644 index 9a8d1b84afe..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_6.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_6.RULE index 3f6a0c62ebc..0361b320d35 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_6.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit-old-style-no-advert +is_license_notice: yes +ignorable_urls: + - http://ntp.org/license + - http://opensource.org/licenses/ntp-license.php +--- + this is a copyrighted work. This header file is not encumbered by this licensing, but is provided under the licensing terms chosen by the sntp author or copyright holder. this is @@ -23,4 +31,4 @@ advertising or publicity pertaining to distribution of the software without specific, written prior permission. The University of Delaware and Network Time Foundation makes no representations about the suitability this software for any purpose. It - is provided "as is" without express or implied warranty. + is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_6.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_6.yml deleted file mode 100644 index b6165130f4a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_notice: yes -ignorable_urls: - - http://ntp.org/license - - http://opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_7.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_7.RULE index a172027c119..991e6b16c6c 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_7.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit-old-style-no-advert +is_license_notice: yes +ignorable_urls: + - http://ntp.org/license + - http://opensource.org/licenses/ntp-license.php +--- + is a copyrighted work. This header file is not encumbered by licensing, but is provided under the licensing terms chosen @@ -24,4 +32,4 @@ under the following terms: advertising or publicity pertaining to distribution of the software without specific, written prior permission. The University of Delaware and Network Time Foundation makes no representations about the suitability this software for any purpose. It - is provided "as is" without express or implied warranty. + is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_7.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_7.yml deleted file mode 100644 index b6165130f4a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_notice: yes -ignorable_urls: - - http://ntp.org/license - - http://opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_8.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_8.RULE index cb3bd033776..fefec5ee167 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_8.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit-old-style-no-advert +is_license_notice: yes +ignorable_urls: + - http://ntp.org/license + - http://opensource.org/licenses/ntp-license.php +--- + This is free software. It is licensed for use, modification and redistribution under the terms of the NTP License, copies of which can be seen at: @@ -13,4 +21,4 @@ specific, written prior permission. The University of Delaware and Network Time Foundation makes no representations about the suitability this software for any purpose. It is provided "as is" without express or - implied warranty. + implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_8.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_8.yml deleted file mode 100644 index b6165130f4a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_notice: yes -ignorable_urls: - - http://ntp.org/license - - http://opensource.org/licenses/ntp-license.php diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_9.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_9.RULE index 1160c8d5f8e..9311a6f84e3 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_9.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style-no-advert +is_license_notice: yes +--- + 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 @@ -11,4 +16,4 @@ out of the use of this software, even if advised of the possibility of such damage. This software is released for distribution according to the NTP copyright -and license contained in html/copyright.html of NTP source. +and license contained in html/copyright.html of NTP source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_9.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_9.yml deleted file mode 100644 index 20052ab238d..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_ntpl_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_url_1.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_url_1.RULE index cf1a62b5737..15cfdf84aba 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_url_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ntp +--- + https://spdx.org/licenses/ntp \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_url_1.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_url_1.yml deleted file mode 100644 index d9181ff05c9..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ntp diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_url_2.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_url_2.RULE index 619098437d0..0b9b2bada33 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_url_2.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ntp.html +--- + https://spdx.org/licenses/ntp.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_url_2.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_url_2.yml deleted file mode 100644 index fa94362868c..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ntp.html diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_208.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_208.RULE index 6ed577c96a3..3e2ee9b4139 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_208.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_208.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ntp +--- + http://www.opensource.org/licenses/ntp \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_208.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_208.yml deleted file mode 100644 index 5d06b148963..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_208.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ntp diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_209.RULE b/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_209.RULE index 82290a094ce..cf08acb72d5 100644 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_209.RULE +++ b/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_209.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ntp +--- + https://www.opensource.org/licenses/ntp \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_209.yml b/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_209.yml deleted file mode 100644 index 69f93f03ac7..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-no-advert_url_glc_209.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ntp diff --git a/src/licensedcode/data/rules/mit-old-style-sparse_1.RULE b/src/licensedcode/data/rules/mit-old-style-sparse_1.RULE index d62d54b093c..bc61e9caebf 100644 --- a/src/licensedcode/data/rules/mit-old-style-sparse_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style-sparse_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-sparse +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the copyright notices appear in all copies and diff --git a/src/licensedcode/data/rules/mit-old-style-sparse_1.yml b/src/licensedcode/data/rules/mit-old-style-sparse_1.yml deleted file mode 100644 index 27fe784d13b..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-sparse_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-sparse -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style-sparse_2.RULE b/src/licensedcode/data/rules/mit-old-style-sparse_2.RULE index 80786adc386..b9b5c5cd078 100644 --- a/src/licensedcode/data/rules/mit-old-style-sparse_2.RULE +++ b/src/licensedcode/data/rules/mit-old-style-sparse_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-sparse +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the copyright notices appear in all copies and diff --git a/src/licensedcode/data/rules/mit-old-style-sparse_2.yml b/src/licensedcode/data/rules/mit-old-style-sparse_2.yml deleted file mode 100644 index 27fe784d13b..00000000000 --- a/src/licensedcode/data/rules/mit-old-style-sparse_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-sparse -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style_1.RULE b/src/licensedcode/data/rules/mit-old-style_1.RULE index 1e7dde65e81..527ad6ab650 100644 --- a/src/licensedcode/data/rules/mit-old-style_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style +--- + http://fedoraproject.org/wiki/Licensing:MIT#Old_Style \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_1.yml b/src/licensedcode/data/rules/mit-old-style_1.yml deleted file mode 100644 index 6382d37f055..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing:MIT#Old_Style diff --git a/src/licensedcode/data/rules/mit-old-style_10.RULE b/src/licensedcode/data/rules/mit-old-style_10.RULE index 608f0d177b5..457bcca4c73 100644 --- a/src/licensedcode/data/rules/mit-old-style_10.RULE +++ b/src/licensedcode/data/rules/mit-old-style_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 100 +--- + // Permission to use, copy, modify, distribute and sell this software for any // purpose is hereby granted without fee, provided that the above copyright // notice appear in all copies and that both that copyright notice and this diff --git a/src/licensedcode/data/rules/mit-old-style_10.yml b/src/licensedcode/data/rules/mit-old-style_10.yml deleted file mode 100644 index 72f604e9c2a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style_11.RULE b/src/licensedcode/data/rules/mit-old-style_11.RULE index 547c0d7cad5..5e4b8b1e5d9 100644 --- a/src/licensedcode/data/rules/mit-old-style_11.RULE +++ b/src/licensedcode/data/rules/mit-old-style_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/mit-old-style_11.yml b/src/licensedcode/data/rules/mit-old-style_11.yml deleted file mode 100644 index 72f604e9c2a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style_12.RULE b/src/licensedcode/data/rules/mit-old-style_12.RULE index ffe3bdfb5e8..844409146e1 100644 --- a/src/licensedcode/data/rules/mit-old-style_12.RULE +++ b/src/licensedcode/data/rules/mit-old-style_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + * Permission to use, copy, modify, distribute and sell this * software and its documentation for any purpose is hereby * granted without fee, provided that the above copyright notice @@ -5,4 +10,4 @@ * this permission notice appear in supporting documentation. * makes no representations about the * suitability of this software for any purpose. It is provided - * "as is" without express or implied warranty. + * "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_12.yml b/src/licensedcode/data/rules/mit-old-style_12.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_13.RULE b/src/licensedcode/data/rules/mit-old-style_13.RULE index 50b67c64fc4..c60af472467 100644 --- a/src/licensedcode/data/rules/mit-old-style_13.RULE +++ b/src/licensedcode/data/rules/mit-old-style_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/mit-old-style_13.yml b/src/licensedcode/data/rules/mit-old-style_13.yml deleted file mode 100644 index 72f604e9c2a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style_14.RULE b/src/licensedcode/data/rules/mit-old-style_14.RULE index 98edb74dd2a..4d7c4abc436 100644 --- a/src/licensedcode/data/rules/mit-old-style_14.RULE +++ b/src/licensedcode/data/rules/mit-old-style_14.RULE @@ -1,6 +1,11 @@ +--- +license_expression: mit-old-style +is_license_notice: yes +--- + Permission to use, copy, modify and distribute or sell this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies, and that both that the copyright notice and this permission notice appear in supporting documentation makes no representations about the suitability of this software for any purpose. -It is provided "as is" without express or implied warranty. +It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_14.yml b/src/licensedcode/data/rules/mit-old-style_14.yml deleted file mode 100644 index fd9cec42ed4..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit-old-style_15.RULE b/src/licensedcode/data/rules/mit-old-style_15.RULE index 75c8bede640..f798ab34e3c 100644 --- a/src/licensedcode/data/rules/mit-old-style_15.RULE +++ b/src/licensedcode/data/rules/mit-old-style_15.RULE @@ -1,6 +1,12 @@ +--- +license_expression: mit-old-style +is_license_notice: yes +relevance: 80 +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies. and makes no representations about the suitability of this software for any purpose. It is provided -"as is" without express or implied warranty. +"as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_15.yml b/src/licensedcode/data/rules/mit-old-style_15.yml deleted file mode 100644 index fb04cf9abe5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style -is_license_notice: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/mit-old-style_16.RULE b/src/licensedcode/data/rules/mit-old-style_16.RULE index 65666fcb4f0..5ee87a751e4 100644 --- a/src/licensedcode/data/rules/mit-old-style_16.RULE +++ b/src/licensedcode/data/rules/mit-old-style_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 100 +--- + licensed under the following terms: CERN - European Organization for Nuclear Research. Permission to use, copy, modify, distribute and sell this software diff --git a/src/licensedcode/data/rules/mit-old-style_16.yml b/src/licensedcode/data/rules/mit-old-style_16.yml deleted file mode 100644 index 72f604e9c2a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style_17.RULE b/src/licensedcode/data/rules/mit-old-style_17.RULE index c58502321d2..2fa2a1a09fa 100644 --- a/src/licensedcode/data/rules/mit-old-style_17.RULE +++ b/src/licensedcode/data/rules/mit-old-style_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 100 +--- + subject to the following license restrictions: CERN - European Organization for Nuclear Research. diff --git a/src/licensedcode/data/rules/mit-old-style_17.yml b/src/licensedcode/data/rules/mit-old-style_17.yml deleted file mode 100644 index 72f604e9c2a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit-old-style_18.RULE b/src/licensedcode/data/rules/mit-old-style_18.RULE index ee1fdf07c7e..1bc148efdd2 100644 --- a/src/licensedcode/data/rules/mit-old-style_18.RULE +++ b/src/licensedcode/data/rules/mit-old-style_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + Permission to use, copy, modify, distribute and sell this array, the associated software, and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appears diff --git a/src/licensedcode/data/rules/mit-old-style_18.yml b/src/licensedcode/data/rules/mit-old-style_18.yml deleted file mode 100644 index 72c5211c875..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/mit-old-style_19.RULE b/src/licensedcode/data/rules/mit-old-style_19.RULE index 4640389ea44..727d66daa14 100644 --- a/src/licensedcode/data/rules/mit-old-style_19.RULE +++ b/src/licensedcode/data/rules/mit-old-style_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 99 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + The following restriction is placed on the use of this publication: if The UK Advanced Cryptics Dictionary is used in a software package or redistributed in any form, the copyright notice must be diff --git a/src/licensedcode/data/rules/mit-old-style_19.yml b/src/licensedcode/data/rules/mit-old-style_19.yml deleted file mode 100644 index 46c931d793d..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 99 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/mit-old-style_2.RULE b/src/licensedcode/data/rules/mit-old-style_2.RULE index 4d19683ce7e..24ae6b7d0bf 100644 --- a/src/licensedcode/data/rules/mit-old-style_2.RULE +++ b/src/licensedcode/data/rules/mit-old-style_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software for any purpose is hereby granted without fee, provided that the above copyright notice appears in all copies and that diff --git a/src/licensedcode/data/rules/mit-old-style_2.yml b/src/licensedcode/data/rules/mit-old-style_2.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_20.RULE b/src/licensedcode/data/rules/mit-old-style_20.RULE index f41ff577358..03d298d776e 100644 --- a/src/licensedcode/data/rules/mit-old-style_20.RULE +++ b/src/licensedcode/data/rules/mit-old-style_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 99 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + Permission to use, copy, modify, distribute and sell these word lists, the associated scripts, the output created from the scripts, and its documentation for any purpose is hereby granted without fee, diff --git a/src/licensedcode/data/rules/mit-old-style_20.yml b/src/licensedcode/data/rules/mit-old-style_20.yml deleted file mode 100644 index 46c931d793d..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 99 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/mit-old-style_21.RULE b/src/licensedcode/data/rules/mit-old-style_21.RULE index 24586d63aaf..081a02daf6f 100644 --- a/src/licensedcode/data/rules/mit-old-style_21.RULE +++ b/src/licensedcode/data/rules/mit-old-style_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 99 +notes: seen in Scowl and hunspell +--- + Permission to use, copy, modify, distribute and sell this array, the associated software, and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appears diff --git a/src/licensedcode/data/rules/mit-old-style_21.yml b/src/licensedcode/data/rules/mit-old-style_21.yml deleted file mode 100644 index eb2656dfda3..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 99 -notes: seen in Scowl and hunspell diff --git a/src/licensedcode/data/rules/mit-old-style_22.RULE b/src/licensedcode/data/rules/mit-old-style_22.RULE index 024d650cd01..90962c8e57c 100644 --- a/src/licensedcode/data/rules/mit-old-style_22.RULE +++ b/src/licensedcode/data/rules/mit-old-style_22.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 99 +notes: seen in Scowl and hunspell +--- + Permission to use, copy, modify, distribute and sell these word lists, the associated scripts, the output created from the scripts, and its documentation for any purpose is hereby granted without fee, diff --git a/src/licensedcode/data/rules/mit-old-style_22.yml b/src/licensedcode/data/rules/mit-old-style_22.yml deleted file mode 100644 index eb2656dfda3..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 99 -notes: seen in Scowl and hunspell diff --git a/src/licensedcode/data/rules/mit-old-style_23.RULE b/src/licensedcode/data/rules/mit-old-style_23.RULE index 6f776a9c84e..7daf306db0f 100644 --- a/src/licensedcode/data/rules/mit-old-style_23.RULE +++ b/src/licensedcode/data/rules/mit-old-style_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 99 +notes: This is a minor variant of this license. Seen in FLAC build scripts +--- + Permission to use, copy, modify, distribute, and sell this file for any purpose is hereby granted without fee, provided that the above copyright and this permission notice appear in all copies. No representations are diff --git a/src/licensedcode/data/rules/mit-old-style_23.yml b/src/licensedcode/data/rules/mit-old-style_23.yml deleted file mode 100644 index 92a828d272a..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 99 -notes: This is a minor variant of this license. Seen in FLAC build scripts diff --git a/src/licensedcode/data/rules/mit-old-style_24.RULE b/src/licensedcode/data/rules/mit-old-style_24.RULE index 599782088b1..8ea058d418f 100644 --- a/src/licensedcode/data/rules/mit-old-style_24.RULE +++ b/src/licensedcode/data/rules/mit-old-style_24.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/mit-old-style_24.yml b/src/licensedcode/data/rules/mit-old-style_24.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_25.RULE b/src/licensedcode/data/rules/mit-old-style_25.RULE index 8f93512c894..8d4abbe40f4 100644 --- a/src/licensedcode/data/rules/mit-old-style_25.RULE +++ b/src/licensedcode/data/rules/mit-old-style_25.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/mit-old-style_25.yml b/src/licensedcode/data/rules/mit-old-style_25.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_3.RULE b/src/licensedcode/data/rules/mit-old-style_3.RULE index c3e46d33688..ed6c68ba735 100644 --- a/src/licensedcode/data/rules/mit-old-style_3.RULE +++ b/src/licensedcode/data/rules/mit-old-style_3.RULE @@ -1,6 +1,11 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Hewlett-Packard Company makes no representations about the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. +provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_3.yml b/src/licensedcode/data/rules/mit-old-style_3.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_4.RULE b/src/licensedcode/data/rules/mit-old-style_4.RULE index 8440f435854..d77aa01a56a 100644 --- a/src/licensedcode/data/rules/mit-old-style_4.RULE +++ b/src/licensedcode/data/rules/mit-old-style_4.RULE @@ -1,7 +1,12 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Silicon Graphics makes no representations about the suitability of this software for any purpose. It is -provided "as is" without express or implied warranty. +provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_4.yml b/src/licensedcode/data/rules/mit-old-style_4.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_5.RULE b/src/licensedcode/data/rules/mit-old-style_5.RULE index b373a4b89f6..a8f4e5ef8c5 100644 --- a/src/licensedcode/data/rules/mit-old-style_5.RULE +++ b/src/licensedcode/data/rules/mit-old-style_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this diff --git a/src/licensedcode/data/rules/mit-old-style_5.yml b/src/licensedcode/data/rules/mit-old-style_5.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_6.RULE b/src/licensedcode/data/rules/mit-old-style_6.RULE index c3254ac3e25..03a3fd935b7 100644 --- a/src/licensedcode/data/rules/mit-old-style_6.RULE +++ b/src/licensedcode/data/rules/mit-old-style_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this diff --git a/src/licensedcode/data/rules/mit-old-style_6.yml b/src/licensedcode/data/rules/mit-old-style_6.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_7.RULE b/src/licensedcode/data/rules/mit-old-style_7.RULE index 70e70cf3ea6..496b1954f08 100644 --- a/src/licensedcode/data/rules/mit-old-style_7.RULE +++ b/src/licensedcode/data/rules/mit-old-style_7.RULE @@ -1,4 +1,10 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 95 +--- + Permission to use, copy, moNumbererdify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. - CERN makes no representations about the suitability of this software for any purpose. + CERN makes no representations about the suitability of this software for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_7.yml b/src/licensedcode/data/rules/mit-old-style_7.yml deleted file mode 100644 index 2451327edaa..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit-old-style_8.RULE b/src/licensedcode/data/rules/mit-old-style_8.RULE index 0505fc1969c..7f41de5397d 100644 --- a/src/licensedcode/data/rules/mit-old-style_8.RULE +++ b/src/licensedcode/data/rules/mit-old-style_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 100 +ignorable_authors: + - Addison-Welsey Longman +ignorable_urls: + - http://loki-lib.sourceforge.net/index.php?n=Main.License +--- + // Permission to use, copy, modify, distribute and sell this software for any // purpose is hereby granted without fee, provided that the above copyright // notice appear in all copies and that both that copyright notice and this diff --git a/src/licensedcode/data/rules/mit-old-style_8.yml b/src/licensedcode/data/rules/mit-old-style_8.yml deleted file mode 100644 index 6a43a7df4e3..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 100 -ignorable_authors: - - Addison-Welsey Longman -ignorable_urls: - - http://loki-lib.sourceforge.net/index.php?n=Main.License diff --git a/src/licensedcode/data/rules/mit-old-style_9.RULE b/src/licensedcode/data/rules/mit-old-style_9.RULE index e33497f5696..50b778b8996 100644 --- a/src/licensedcode/data/rules/mit-old-style_9.RULE +++ b/src/licensedcode/data/rules/mit-old-style_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit-old-style +is_license_text: yes +relevance: 100 +ignorable_authors: + - Addison-Welsey Longman +--- + // Permission to use, copy, modify, distribute and sell this software for any // purpose is hereby granted without fee, provided that the above copyright // notice appear in all copies and that both that copyright notice and this diff --git a/src/licensedcode/data/rules/mit-old-style_9.yml b/src/licensedcode/data/rules/mit-old-style_9.yml deleted file mode 100644 index cf1c81505a1..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -relevance: 100 -ignorable_authors: - - Addison-Welsey Longman diff --git a/src/licensedcode/data/rules/mit-old-style_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/mit-old-style_and_warranty-disclaimer_1.RULE index 1daf17539e6..4853e617574 100644 --- a/src/licensedcode/data/rules/mit-old-style_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style_and_warranty-disclaimer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style AND warranty-disclaimer +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -13,4 +18,4 @@ 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. +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/mit-old-style_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/mit-old-style_and_warranty-disclaimer_1.yml deleted file mode 100644 index 9741b8f097e..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style AND warranty-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_cmr-no_1.RULE b/src/licensedcode/data/rules/mit-old-style_cmr-no_1.RULE index 6dce0aca5f9..1fb50c72607 100644 --- a/src/licensedcode/data/rules/mit-old-style_cmr-no_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style_cmr-no_1.RULE @@ -1,7 +1,12 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Christian Michelsen Research AS makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied warranty. +any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_cmr-no_1.yml b/src/licensedcode/data/rules/mit-old-style_cmr-no_1.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_cmr-no_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_dr-john-maddock.RULE b/src/licensedcode/data/rules/mit-old-style_dr-john-maddock.RULE index fef825575f0..52398011621 100644 --- a/src/licensedcode/data/rules/mit-old-style_dr-john-maddock.RULE +++ b/src/licensedcode/data/rules/mit-old-style_dr-john-maddock.RULE @@ -1,7 +1,12 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Dr John Maddock makes no representations about the suitability of this software for -any purpose. It is provided "as is" without express or implied warranty. +any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_dr-john-maddock.yml b/src/licensedcode/data/rules/mit-old-style_dr-john-maddock.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_dr-john-maddock.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_mit-open-group_1.RULE b/src/licensedcode/data/rules/mit-old-style_mit-open-group_1.RULE index 98ed4f46e45..4ade56ab470 100644 --- a/src/licensedcode/data/rules/mit-old-style_mit-open-group_1.RULE +++ b/src/licensedcode/data/rules/mit-old-style_mit-open-group_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style +is_license_text: yes +minimum_coverage: 98 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/mit-old-style_mit-open-group_1.yml b/src/licensedcode/data/rules/mit-old-style_mit-open-group_1.yml deleted file mode 100644 index 29632fa0a1b..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_mit-open-group_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/mit-old-style_mit-open-group_2.RULE b/src/licensedcode/data/rules/mit-old-style_mit-open-group_2.RULE index 0afbe5be808..9f92fad6291 100644 --- a/src/licensedcode/data/rules/mit-old-style_mit-open-group_2.RULE +++ b/src/licensedcode/data/rules/mit-old-style_mit-open-group_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + licensed under the following terms: @@ -6,4 +11,4 @@ documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. CERN makes no representations about the suitability of this software for any purpose. -It is provided "as is" without expressed or implied warranty. +It is provided "as is" without expressed or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_mit-open-group_2.yml b/src/licensedcode/data/rules/mit-old-style_mit-open-group_2.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_mit-open-group_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-old-style_mit-open-group_4.RULE b/src/licensedcode/data/rules/mit-old-style_mit-open-group_4.RULE index ae75a569e8d..c7495a02e82 100644 --- a/src/licensedcode/data/rules/mit-old-style_mit-open-group_4.RULE +++ b/src/licensedcode/data/rules/mit-old-style_mit-open-group_4.RULE @@ -1,6 +1,11 @@ +--- +license_expression: mit-old-style +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. CERN makes no representations about the suitability of this software for any purpose. -It is provided "as is" without expressed or implied warranty. +It is provided "as is" without expressed or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-old-style_mit-open-group_4.yml b/src/licensedcode/data/rules/mit-old-style_mit-open-group_4.yml deleted file mode 100644 index 3a76625ecd5..00000000000 --- a/src/licensedcode/data/rules/mit-old-style_mit-open-group_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-specification-disclaimer_1.RULE b/src/licensedcode/data/rules/mit-specification-disclaimer_1.RULE index fdbb1126a8c..3fbdaa1b42b 100644 --- a/src/licensedcode/data/rules/mit-specification-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/mit-specification-disclaimer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-specification-disclaimer +is_license_text: yes +--- + Use and copying of this software and preparation of derivative works based upon this software are permitted. Any distribution of this software or derivative works must comply with all applicable United States export control diff --git a/src/licensedcode/data/rules/mit-specification-disclaimer_1.yml b/src/licensedcode/data/rules/mit-specification-disclaimer_1.yml deleted file mode 100644 index 1ab802a4352..00000000000 --- a/src/licensedcode/data/rules/mit-specification-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-specification-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit-synopsys.RULE b/src/licensedcode/data/rules/mit-synopsys.RULE index fd2f30b188d..a1ee24e9807 100644 --- a/src/licensedcode/data/rules/mit-synopsys.RULE +++ b/src/licensedcode/data/rules/mit-synopsys.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-synopsys +is_license_notice: yes +minimum_coverage: 60 +--- + This file incorporates work covered by the following copyright and permission notice: @@ -29,4 +35,4 @@ permission notice: 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. + THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-synopsys.yml b/src/licensedcode/data/rules/mit-synopsys.yml deleted file mode 100644 index 6298f44e681..00000000000 --- a/src/licensedcode/data/rules/mit-synopsys.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-synopsys -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/mit-taylor-variant_1.RULE b/src/licensedcode/data/rules/mit-taylor-variant_1.RULE index a890bd5e5ff..55790db81fd 100644 --- a/src/licensedcode/data/rules/mit-taylor-variant_1.RULE +++ b/src/licensedcode/data/rules/mit-taylor-variant_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-taylor-variant +is_license_notice: yes +minimum_coverage: 70 +--- + 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. +copyright notice and this permission notice appear in all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-taylor-variant_1.yml b/src/licensedcode/data/rules/mit-taylor-variant_1.yml deleted file mode 100644 index a9001308c33..00000000000 --- a/src/licensedcode/data/rules/mit-taylor-variant_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-taylor-variant -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/mit-taylor-variant_2.RULE b/src/licensedcode/data/rules/mit-taylor-variant_2.RULE index 8fd0f5ea067..4b35a7b0e19 100644 --- a/src/licensedcode/data/rules/mit-taylor-variant_2.RULE +++ b/src/licensedcode/data/rules/mit-taylor-variant_2.RULE @@ -1,7 +1,13 @@ +--- +license_expression: mit-taylor-variant +is_license_notice: yes +minimum_coverage: 20 +--- + 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"; the copyright holders disclaim all warranties and liabilities, to the extent permitted by - applicable law. + applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-taylor-variant_2.yml b/src/licensedcode/data/rules/mit-taylor-variant_2.yml deleted file mode 100644 index 8b3334a4eb4..00000000000 --- a/src/licensedcode/data/rules/mit-taylor-variant_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-taylor-variant -is_license_notice: yes -minimum_coverage: 20 diff --git a/src/licensedcode/data/rules/mit-taylor-variant_3.RULE b/src/licensedcode/data/rules/mit-taylor-variant_3.RULE index 3487ff2d7e6..881b555ae5d 100644 --- a/src/licensedcode/data/rules/mit-taylor-variant_3.RULE +++ b/src/licensedcode/data/rules/mit-taylor-variant_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-taylor-variant +is_license_text: yes +relevance: 99 +notes: This variant of the mit-taylor-variant has a shorter disclaimer. +--- + 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. diff --git a/src/licensedcode/data/rules/mit-taylor-variant_3.yml b/src/licensedcode/data/rules/mit-taylor-variant_3.yml deleted file mode 100644 index f0de784f4e9..00000000000 --- a/src/licensedcode/data/rules/mit-taylor-variant_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-taylor-variant -is_license_text: yes -relevance: 99 -notes: This variant of the mit-taylor-variant has a shorter disclaimer. diff --git a/src/licensedcode/data/rules/mit-with-modification-obligations_1.RULE b/src/licensedcode/data/rules/mit-with-modification-obligations_1.RULE index f32067da359..3848eb6c476 100644 --- a/src/licensedcode/data/rules/mit-with-modification-obligations_1.RULE +++ b/src/licensedcode/data/rules/mit-with-modification-obligations_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-with-modification-obligations +is_license_notice: yes +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the @@ -20,4 +25,4 @@ warranty. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-with-modification-obligations_1.yml b/src/licensedcode/data/rules/mit-with-modification-obligations_1.yml deleted file mode 100644 index b865db244e2..00000000000 --- a/src/licensedcode/data/rules/mit-with-modification-obligations_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-with-modification-obligations -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit-with-modification-obligations_2.RULE b/src/licensedcode/data/rules/mit-with-modification-obligations_2.RULE index 6644f02d6ca..693515c71b5 100644 --- a/src/licensedcode/data/rules/mit-with-modification-obligations_2.RULE +++ b/src/licensedcode/data/rules/mit-with-modification-obligations_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-with-modification-obligations +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + Export of this software from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization diff --git a/src/licensedcode/data/rules/mit-with-modification-obligations_2.yml b/src/licensedcode/data/rules/mit-with-modification-obligations_2.yml deleted file mode 100644 index c5b29b8e61d..00000000000 --- a/src/licensedcode/data/rules/mit-with-modification-obligations_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-with-modification-obligations -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/mit-with-modification-obligations_3.RULE b/src/licensedcode/data/rules/mit-with-modification-obligations_3.RULE index 4eeae7e5388..71d77070723 100644 --- a/src/licensedcode/data/rules/mit-with-modification-obligations_3.RULE +++ b/src/licensedcode/data/rules/mit-with-modification-obligations_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-with-modification-obligations +is_license_text: yes +notes: variant of mit old style no advert with modifications +--- + Export of software employing encryption from the United States of America may require a specific license from the United States Government. It is the responsibility of any person or organization contemplating export to obtain diff --git a/src/licensedcode/data/rules/mit-with-modification-obligations_3.yml b/src/licensedcode/data/rules/mit-with-modification-obligations_3.yml deleted file mode 100644 index 4fb181ff4c5..00000000000 --- a/src/licensedcode/data/rules/mit-with-modification-obligations_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-with-modification-obligations -is_license_text: yes -notes: variant of mit old style no advert with modifications diff --git a/src/licensedcode/data/rules/mit-with-modification-obligations_4.RULE b/src/licensedcode/data/rules/mit-with-modification-obligations_4.RULE index 0f0ef01f424..d40dd8bd467 100644 --- a/src/licensedcode/data/rules/mit-with-modification-obligations_4.RULE +++ b/src/licensedcode/data/rules/mit-with-modification-obligations_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-with-modification-obligations +is_license_notice: yes +notes: variant of mit old style no advert with modifications +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/mit-with-modification-obligations_4.yml b/src/licensedcode/data/rules/mit-with-modification-obligations_4.yml deleted file mode 100644 index bef79a2332c..00000000000 --- a/src/licensedcode/data/rules/mit-with-modification-obligations_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-with-modification-obligations -is_license_notice: yes -notes: variant of mit old style no advert with modifications diff --git a/src/licensedcode/data/rules/mit-xfig_1.RULE b/src/licensedcode/data/rules/mit-xfig_1.RULE index 9309ed09d42..eb9d8e317b5 100644 --- a/src/licensedcode/data/rules/mit-xfig_1.RULE +++ b/src/licensedcode/data/rules/mit-xfig_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-xfig +is_license_text: yes +relevance: 90 +notes: this has an extra sublicense permissions +--- + Any party obtaining a copy of these files is granted, free of charge, a full and unrestricted irrevocable, world-wide, paid up, royalty-free, nonexclusive right and license to deal in this software and @@ -5,4 +12,4 @@ documentation files (the "Software"), including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons who receive copies from any such party to do so, with the only requirement being that this -copyright notice remain intact. +copyright notice remain intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit-xfig_1.yml b/src/licensedcode/data/rules/mit-xfig_1.yml deleted file mode 100644 index 908b3f48ea1..00000000000 --- a/src/licensedcode/data/rules/mit-xfig_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-xfig -is_license_text: yes -relevance: 90 -notes: this has an extra sublicense permissions diff --git a/src/licensedcode/data/rules/mit-xfig_2.RULE b/src/licensedcode/data/rules/mit-xfig_2.RULE index f6eed6648db..fec0dfb7cd9 100644 --- a/src/licensedcode/data/rules/mit-xfig_2.RULE +++ b/src/licensedcode/data/rules/mit-xfig_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit-xfig +is_license_notice: yes +relevance: 99 +notes: this is essential the same as the mit-xfig with a few extra words. +--- + * Any party obtaining a copy of these files from the author, directly or * indirectly, is granted, free of charge, a full and unrestricted irrevocable, * world-wide, paid up, royalty-free, nonexclusive right and license to deal diff --git a/src/licensedcode/data/rules/mit-xfig_2.yml b/src/licensedcode/data/rules/mit-xfig_2.yml deleted file mode 100644 index ed23e4b6a83..00000000000 --- a/src/licensedcode/data/rules/mit-xfig_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit-xfig -is_license_notice: yes -relevance: 99 -notes: this is essential the same as the mit-xfig with a few extra words. diff --git a/src/licensedcode/data/rules/mit-xfig_3.RULE b/src/licensedcode/data/rules/mit-xfig_3.RULE index f6410308335..ab490896ade 100644 --- a/src/licensedcode/data/rules/mit-xfig_3.RULE +++ b/src/licensedcode/data/rules/mit-xfig_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-xfig +is_license_text: yes +--- + Any party obtaining a copy of these files is granted, free of charge, a full and unrestricted irrevocable, world-wide, paid up, royalty-free, nonexclusive right and license to deal in this software and documentation diff --git a/src/licensedcode/data/rules/mit-xfig_3.yml b/src/licensedcode/data/rules/mit-xfig_3.yml deleted file mode 100644 index 6acd098831b..00000000000 --- a/src/licensedcode/data/rules/mit-xfig_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-xfig -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_0.RULE b/src/licensedcode/data/rules/mit_0.RULE index 97a20553fb5..7348150198d 100644 --- a/src/licensedcode/data/rules/mit_0.RULE +++ b/src/licensedcode/data/rules/mit_0.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is released under the MIT license. See the LICENSE file for the complete license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_0.yml b/src/licensedcode/data/rules/mit_0.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1.RULE b/src/licensedcode/data/rules/mit_1.RULE index da333b86532..e2a79bb3312 100644 --- a/src/licensedcode/data/rules/mit_1.RULE +++ b/src/licensedcode/data/rules/mit_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, @@ -15,4 +20,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR 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. +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/mit_1.yml b/src/licensedcode/data/rules/mit_1.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_10.RULE b/src/licensedcode/data/rules/mit_10.RULE index fd82b3f40ea..d75a9a5666b 100644 --- a/src/licensedcode/data/rules/mit_10.RULE +++ b/src/licensedcode/data/rules/mit_10.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://jquery.com/ + - http://jquery.org/license +--- + jQuery v1 http://jquery.com/ | http://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_10.yml b/src/licensedcode/data/rules/mit_10.yml deleted file mode 100644 index a027f908d4b..00000000000 --- a/src/licensedcode/data/rules/mit_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://jquery.com/ - - http://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_100.RULE b/src/licensedcode/data/rules/mit_100.RULE index 6737cc13574..a3c89999705 100644 --- a/src/licensedcode/data/rules/mit_100.RULE +++ b/src/licensedcode/data/rules/mit_100.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://lifeemotions.github.io/knx.net/ref/license.txt +--- + http://lifeemotions.github.io/knx.net/ref/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_100.yml b/src/licensedcode/data/rules/mit_100.yml deleted file mode 100644 index 8e6722b5f38..00000000000 --- a/src/licensedcode/data/rules/mit_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://lifeemotions.github.io/knx.net/ref/license.txt diff --git a/src/licensedcode/data/rules/mit_1000.RULE b/src/licensedcode/data/rules/mit_1000.RULE index 0ff8b752207..ff274088f76 100644 --- a/src/licensedcode/data/rules/mit_1000.RULE +++ b/src/licensedcode/data/rules/mit_1000.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + distributed under the open source MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1000.yml b/src/licensedcode/data/rules/mit_1000.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1000.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1001.RULE b/src/licensedcode/data/rules/mit_1001.RULE index ff54957dd98..54f4f8b744f 100644 --- a/src/licensedcode/data/rules/mit_1001.RULE +++ b/src/licensedcode/data/rules/mit_1001.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under the open source MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1001.yml b/src/licensedcode/data/rules/mit_1001.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1001.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1002.RULE b/src/licensedcode/data/rules/mit_1002.RULE index 9a8814249f5..5bb295f5210 100644 --- a/src/licensedcode/data/rules/mit_1002.RULE +++ b/src/licensedcode/data/rules/mit_1002.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See the LICENSE file. It's under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1002.yml b/src/licensedcode/data/rules/mit_1002.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1002.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1003.RULE b/src/licensedcode/data/rules/mit_1003.RULE index d89a739a3f0..5b28d836a14 100644 --- a/src/licensedcode/data/rules/mit_1003.RULE +++ b/src/licensedcode/data/rules/mit_1003.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The authors of this package license their work under the terms of the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1003.yml b/src/licensedcode/data/rules/mit_1003.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1003.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1004.RULE b/src/licensedcode/data/rules/mit_1004.RULE index c2523c3c255..6613927e3d4 100644 --- a/src/licensedcode/data/rules/mit_1004.RULE +++ b/src/licensedcode/data/rules/mit_1004.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + which is copyright MIT, with its own license; \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1004.yml b/src/licensedcode/data/rules/mit_1004.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1004.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1005.RULE b/src/licensedcode/data/rules/mit_1005.RULE index 85cac22e38c..f9ca24bd04a 100644 --- a/src/licensedcode/data/rules/mit_1005.RULE +++ b/src/licensedcode/data/rules/mit_1005.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This Extension is licensed under the MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1005.yml b/src/licensedcode/data/rules/mit_1005.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1005.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1006.RULE b/src/licensedcode/data/rules/mit_1006.RULE index b7ec5c62b6f..4aabda3e684 100644 --- a/src/licensedcode/data/rules/mit_1006.RULE +++ b/src/licensedcode/data/rules/mit_1006.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + logo is licensed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1006.yml b/src/licensedcode/data/rules/mit_1006.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1006.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1007.RULE b/src/licensedcode/data/rules/mit_1007.RULE index a4105e7a9a3..2bb8117ef3d 100644 --- a/src/licensedcode/data/rules/mit_1007.RULE +++ b/src/licensedcode/data/rules/mit_1007.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + for free and licensed under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1007.yml b/src/licensedcode/data/rules/mit_1007.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1007.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1008.RULE b/src/licensedcode/data/rules/mit_1008.RULE index 8b40fdc5d40..88a62d57587 100644 --- a/src/licensedcode/data/rules/mit_1008.RULE +++ b/src/licensedcode/data/rules/mit_1008.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The site software is licensed under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1008.yml b/src/licensedcode/data/rules/mit_1008.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1008.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1009.RULE b/src/licensedcode/data/rules/mit_1009.RULE index 40c24056276..ecf9ccfe15f 100644 --- a/src/licensedcode/data/rules/mit_1009.RULE +++ b/src/licensedcode/data/rules/mit_1009.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + The package is licensed under the MIT licence https://opensource.org/licenses/​MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1009.yml b/src/licensedcode/data/rules/mit_1009.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_1009.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_101.RULE b/src/licensedcode/data/rules/mit_101.RULE index 722e438fd41..3a9e40b3108 100644 --- a/src/licensedcode/data/rules/mit_101.RULE +++ b/src/licensedcode/data/rules/mit_101.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This source code is licensed under the MIT license found in the -LICENSE file in the root directory of this source tree. +LICENSE file in the root directory of this source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_101.yml b/src/licensedcode/data/rules/mit_101.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1010.RULE b/src/licensedcode/data/rules/mit_1010.RULE index 07529a81f70..465ec68035b 100644 --- a/src/licensedcode/data/rules/mit_1010.RULE +++ b/src/licensedcode/data/rules/mit_1010.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The package is licensed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1010.yml b/src/licensedcode/data/rules/mit_1010.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1010.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1011.RULE b/src/licensedcode/data/rules/mit_1011.RULE index b4c17e6108c..9e4cd2b7089 100644 --- a/src/licensedcode/data/rules/mit_1011.RULE +++ b/src/licensedcode/data/rules/mit_1011.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All source code is now licensed under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1011.yml b/src/licensedcode/data/rules/mit_1011.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1011.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1012.RULE b/src/licensedcode/data/rules/mit_1012.RULE index 7a54e203a02..6d494c7c6d5 100644 --- a/src/licensedcode/data/rules/mit_1012.RULE +++ b/src/licensedcode/data/rules/mit_1012.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under the MIT licence and hence open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1012.yml b/src/licensedcode/data/rules/mit_1012.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1012.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1013.RULE b/src/licensedcode/data/rules/mit_1013.RULE index e5a908c4a95..b0082b384e9 100644 --- a/src/licensedcode/data/rules/mit_1013.RULE +++ b/src/licensedcode/data/rules/mit_1013.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is licensed under the MIT licence, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1013.yml b/src/licensedcode/data/rules/mit_1013.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1013.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1014.RULE b/src/licensedcode/data/rules/mit_1014.RULE index 91cb88cb731..c1692c6ebc6 100644 --- a/src/licensedcode/data/rules/mit_1014.RULE +++ b/src/licensedcode/data/rules/mit_1014.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Projects are licensed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1014.yml b/src/licensedcode/data/rules/mit_1014.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1014.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1015.RULE b/src/licensedcode/data/rules/mit_1015.RULE index 4c9013b44ce..103916c10d5 100644 --- a/src/licensedcode/data/rules/mit_1015.RULE +++ b/src/licensedcode/data/rules/mit_1015.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The extension is OSS and licensed under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1015.yml b/src/licensedcode/data/rules/mit_1015.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1015.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1016.RULE b/src/licensedcode/data/rules/mit_1016.RULE index f9d8f23ebc0..c2588876a5d 100644 --- a/src/licensedcode/data/rules/mit_1016.RULE +++ b/src/licensedcode/data/rules/mit_1016.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + plugin is licensed under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1016.yml b/src/licensedcode/data/rules/mit_1016.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1016.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1017.RULE b/src/licensedcode/data/rules/mit_1017.RULE index 13474c4bf17..a5f7b40defd 100644 --- a/src/licensedcode/data/rules/mit_1017.RULE +++ b/src/licensedcode/data/rules/mit_1017.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + the source code is licensed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1017.yml b/src/licensedcode/data/rules/mit_1017.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1017.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1018.RULE b/src/licensedcode/data/rules/mit_1018.RULE index 8cada9ffedb..2ba851b3098 100644 --- a/src/licensedcode/data/rules/mit_1018.RULE +++ b/src/licensedcode/data/rules/mit_1018.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licenced under MIT-licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1018.yml b/src/licensedcode/data/rules/mit_1018.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1018.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1019.RULE b/src/licensedcode/data/rules/mit_1019.RULE index d24b049cb95..58b2d1fc883 100644 --- a/src/licensedcode/data/rules/mit_1019.RULE +++ b/src/licensedcode/data/rules/mit_1019.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licensed under The MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1019.yml b/src/licensedcode/data/rules/mit_1019.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1019.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_102.RULE b/src/licensedcode/data/rules/mit_102.RULE index e2dd54d54af..0f66434394e 100644 --- a/src/licensedcode/data/rules/mit_102.RULE +++ b/src/licensedcode/data/rules/mit_102.RULE @@ -1 +1,7 @@ -Based on the library, which is used under the MIT License below: +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Based on the library, which is used under the MIT License below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_102.yml b/src/licensedcode/data/rules/mit_102.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1020.RULE b/src/licensedcode/data/rules/mit_1020.RULE index 3647f9991ba..ec62fd562a6 100644 --- a/src/licensedcode/data/rules/mit_1020.RULE +++ b/src/licensedcode/data/rules/mit_1020.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This framework is licensed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1020.yml b/src/licensedcode/data/rules/mit_1020.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1020.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1021.RULE b/src/licensedcode/data/rules/mit_1021.RULE index d86896ea32e..76cd9ae75ba 100644 --- a/src/licensedcode/data/rules/mit_1021.RULE +++ b/src/licensedcode/data/rules/mit_1021.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + source code samples and files are licensed under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1021.yml b/src/licensedcode/data/rules/mit_1021.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1021.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1022.RULE b/src/licensedcode/data/rules/mit_1022.RULE index cb149c437f3..a94a46153e8 100644 --- a/src/licensedcode/data/rules/mit_1022.RULE +++ b/src/licensedcode/data/rules/mit_1022.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1022.yml b/src/licensedcode/data/rules/mit_1022.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1022.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1023.RULE b/src/licensedcode/data/rules/mit_1023.RULE index 80bc6dac866..0e50b6b459c 100644 --- a/src/licensedcode/data/rules/mit_1023.RULE +++ b/src/licensedcode/data/rules/mit_1023.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + licensed under MIT Licence (https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1023.yml b/src/licensedcode/data/rules/mit_1023.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_1023.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1024.RULE b/src/licensedcode/data/rules/mit_1024.RULE index 5428e46cbe7..a228cf9c9bc 100644 --- a/src/licensedcode/data/rules/mit_1024.RULE +++ b/src/licensedcode/data/rules/mit_1024.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENCE +--- + This project is licensed under the MIT licence. See the LICENCE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1024.yml b/src/licensedcode/data/rules/mit_1024.yml deleted file mode 100644 index ef001a2135e..00000000000 --- a/src/licensedcode/data/rules/mit_1024.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/mit_1025.RULE b/src/licensedcode/data/rules/mit_1025.RULE index 4ad2bbb9e3f..99faad3441a 100644 --- a/src/licensedcode/data/rules/mit_1025.RULE +++ b/src/licensedcode/data/rules/mit_1025.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENCE +--- + Licensed under the MIT licence (see the LICENSE file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1025.yml b/src/licensedcode/data/rules/mit_1025.yml deleted file mode 100644 index ef001a2135e..00000000000 --- a/src/licensedcode/data/rules/mit_1025.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/mit_1026.RULE b/src/licensedcode/data/rules/mit_1026.RULE index 023fed88b16..eefd2790eaf 100644 --- a/src/licensedcode/data/rules/mit_1026.RULE +++ b/src/licensedcode/data/rules/mit_1026.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under MIT Licence - See LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1026.yml b/src/licensedcode/data/rules/mit_1026.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1026.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1027.RULE b/src/licensedcode/data/rules/mit_1027.RULE index 056612bef51..47a80feddc5 100644 --- a/src/licensedcode/data/rules/mit_1027.RULE +++ b/src/licensedcode/data/rules/mit_1027.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + Licensed under MIT licence. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1027.yml b/src/licensedcode/data/rules/mit_1027.yml deleted file mode 100644 index 96a25a66d34..00000000000 --- a/src/licensedcode/data/rules/mit_1027.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/mit_1028.RULE b/src/licensedcode/data/rules/mit_1028.RULE index f7a9d1a2d97..7180b656480 100644 --- a/src/licensedcode/data/rules/mit_1028.RULE +++ b/src/licensedcode/data/rules/mit_1028.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + This software is licensed under the MIT licence (see LICENSE.md ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1028.yml b/src/licensedcode/data/rules/mit_1028.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_1028.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_1029.RULE b/src/licensedcode/data/rules/mit_1029.RULE index 6a571fe1c0a..ecd8277bc9d 100644 --- a/src/licensedcode/data/rules/mit_1029.RULE +++ b/src/licensedcode/data/rules/mit_1029.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1029.yml b/src/licensedcode/data/rules/mit_1029.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1029.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_103.RULE b/src/licensedcode/data/rules/mit_103.RULE index 152df01c765..a1cc5e3c1d9 100644 --- a/src/licensedcode/data/rules/mit_103.RULE +++ b/src/licensedcode/data/rules/mit_103.RULE @@ -1,4 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LCIENSE +--- + This source code is licensed under the MIT license found in the LICENSE file in the root directory of this source tree. -Based on the library, which is used under the MIT License below: +Based on the library, which is used under the MIT License below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_103.yml b/src/licensedcode/data/rules/mit_103.yml deleted file mode 100644 index 0538a6f9650..00000000000 --- a/src/licensedcode/data/rules/mit_103.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LCIENSE diff --git a/src/licensedcode/data/rules/mit_1030.RULE b/src/licensedcode/data/rules/mit_1030.RULE index 71f26caac9f..57c15b5267e 100644 --- a/src/licensedcode/data/rules/mit_1030.RULE +++ b/src/licensedcode/data/rules/mit_1030.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + fully open source and licensed under the MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1030.yml b/src/licensedcode/data/rules/mit_1030.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1030.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1031.RULE b/src/licensedcode/data/rules/mit_1031.RULE index e4b92cb0a2d..779d06d225f 100644 --- a/src/licensedcode/data/rules/mit_1031.RULE +++ b/src/licensedcode/data/rules/mit_1031.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1031.yml b/src/licensedcode/data/rules/mit_1031.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1031.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1032.RULE b/src/licensedcode/data/rules/mit_1032.RULE index 350c8999982..b020bc32986 100644 --- a/src/licensedcode/data/rules/mit_1032.RULE +++ b/src/licensedcode/data/rules/mit_1032.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This workflow is licensed under the MIT Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1032.yml b/src/licensedcode/data/rules/mit_1032.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1032.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1033.RULE b/src/licensedcode/data/rules/mit_1033.RULE index 1991cafde25..7b7bea91d4e 100644 --- a/src/licensedcode/data/rules/mit_1033.RULE +++ b/src/licensedcode/data/rules/mit_1033.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + open source software and licensed under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1033.yml b/src/licensedcode/data/rules/mit_1033.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1033.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1034.RULE b/src/licensedcode/data/rules/mit_1034.RULE index 43ab6507b86..54e49066bc0 100644 --- a/src/licensedcode/data/rules/mit_1034.RULE +++ b/src/licensedcode/data/rules/mit_1034.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + Licensed under The MIT License http://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1034.yml b/src/licensedcode/data/rules/mit_1034.yml deleted file mode 100644 index 9cf945ea087..00000000000 --- a/src/licensedcode/data/rules/mit_1034.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_1035.RULE b/src/licensedcode/data/rules/mit_1035.RULE index e722a3e8e94..1825296f8ca 100644 --- a/src/licensedcode/data/rules/mit_1035.RULE +++ b/src/licensedcode/data/rules/mit_1035.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/MIT_License +--- + Licensed under The MIT License https://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1035.yml b/src/licensedcode/data/rules/mit_1035.yml deleted file mode 100644 index 9690e415bd2..00000000000 --- a/src/licensedcode/data/rules/mit_1035.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_1036.RULE b/src/licensedcode/data/rules/mit_1036.RULE index 97a22a3e373..b212da6b3d1 100644 --- a/src/licensedcode/data/rules/mit_1036.RULE +++ b/src/licensedcode/data/rules/mit_1036.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1036.yml b/src/licensedcode/data/rules/mit_1036.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_1036.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1037.RULE b/src/licensedcode/data/rules/mit_1037.RULE index 4a3f5d56074..f1f96ac2641 100644 --- a/src/licensedcode/data/rules/mit_1037.RULE +++ b/src/licensedcode/data/rules/mit_1037.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT License (The MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1037.yml b/src/licensedcode/data/rules/mit_1037.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_1037.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1038.RULE b/src/licensedcode/data/rules/mit_1038.RULE index 4be6b24beb5..6cdb20eb868 100644 --- a/src/licensedcode/data/rules/mit_1038.RULE +++ b/src/licensedcode/data/rules/mit_1038.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1038.yml b/src/licensedcode/data/rules/mit_1038.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_1038.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1039.RULE b/src/licensedcode/data/rules/mit_1039.RULE index a68724c016c..6ba171dbfad 100644 --- a/src/licensedcode/data/rules/mit_1039.RULE +++ b/src/licensedcode/data/rules/mit_1039.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT Licence (The MIT Licence) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1039.yml b/src/licensedcode/data/rules/mit_1039.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_1039.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_104.RULE b/src/licensedcode/data/rules/mit_104.RULE index dcaf9250225..ee728c8f2fc 100644 --- a/src/licensedcode/data/rules/mit_104.RULE +++ b/src/licensedcode/data/rules/mit_104.RULE @@ -1,2 +1,7 @@ - as a whole is licensed under the following standard MIT license: - \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + + as a whole is licensed under the following standard MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_104.yml b/src/licensedcode/data/rules/mit_104.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1040.RULE b/src/licensedcode/data/rules/mit_1040.RULE index 92f86ab72cf..14d4e9cda54 100644 --- a/src/licensedcode/data/rules/mit_1040.RULE +++ b/src/licensedcode/data/rules/mit_1040.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +notes: this looks like an Apache license notice Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + Project licenses this product to you under the MIT License (the "License"). You may not use this product except in compliance with the License. You may obtain a copy of the License at: http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1040.yml b/src/licensedcode/data/rules/mit_1040.yml deleted file mode 100644 index 484214cf095..00000000000 --- a/src/licensedcode/data/rules/mit_1040.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -notes: this looks like an Apache license notice Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1041.RULE b/src/licensedcode/data/rules/mit_1041.RULE index 710a684d530..e591757eec5 100644 --- a/src/licensedcode/data/rules/mit_1041.RULE +++ b/src/licensedcode/data/rules/mit_1041.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENCE +--- + available under the MIT licence. See LICENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1041.yml b/src/licensedcode/data/rules/mit_1041.yml deleted file mode 100644 index ef001a2135e..00000000000 --- a/src/licensedcode/data/rules/mit_1041.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/mit_1042.RULE b/src/licensedcode/data/rules/mit_1042.RULE index 62b6ab06758..0b514e2c337 100644 --- a/src/licensedcode/data/rules/mit_1042.RULE +++ b/src/licensedcode/data/rules/mit_1042.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project uses the [MIT] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1042.yml b/src/licensedcode/data/rules/mit_1042.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1042.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1043.RULE b/src/licensedcode/data/rules/mit_1043.RULE index 53e3e57dae3..97245b51d0f 100644 --- a/src/licensedcode/data/rules/mit_1043.RULE +++ b/src/licensedcode/data/rules/mit_1043.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + mit-license.org/) license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1043.yml b/src/licensedcode/data/rules/mit_1043.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_1043.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1044.RULE b/src/licensedcode/data/rules/mit_1044.RULE index ba59c5f0bb5..1f167bb8e28 100644 --- a/src/licensedcode/data/rules/mit_1044.RULE +++ b/src/licensedcode/data/rules/mit_1044.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/mit_1044.yml b/src/licensedcode/data/rules/mit_1044.yml deleted file mode 100644 index 84a885508aa..00000000000 --- a/src/licensedcode/data/rules/mit_1044.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/mit_1045.RULE b/src/licensedcode/data/rules/mit_1045.RULE index 7c72c3654c6..e66480dfefd 100644 --- a/src/licensedcode/data/rules/mit_1045.RULE +++ b/src/licensedcode/data/rules/mit_1045.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +notes: in x11 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + The following is the 'standard copyright' agreed upon by most contributors, and is currently the canonical license preferred by the X.Org Foundation. This is a slight variant of the common MIT license form published by the diff --git a/src/licensedcode/data/rules/mit_1045.yml b/src/licensedcode/data/rules/mit_1045.yml deleted file mode 100644 index 0834c612223..00000000000 --- a/src/licensedcode/data/rules/mit_1045.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -notes: in x11 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_1046.RULE b/src/licensedcode/data/rules/mit_1046.RULE index 376063ce171..e8519c120f1 100644 --- a/src/licensedcode/data/rules/mit_1046.RULE +++ b/src/licensedcode/data/rules/mit_1046.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + manual pages are released under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1046.yml b/src/licensedcode/data/rules/mit_1046.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1046.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1047.RULE b/src/licensedcode/data/rules/mit_1047.RULE index 78d2268e0b8..281f853c5c8 100644 --- a/src/licensedcode/data/rules/mit_1047.RULE +++ b/src/licensedcode/data/rules/mit_1047.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT.MIT +notes: Seen in https://github.com/Wind4/vlmcsd/blob/65228e5c7916acd947ffb53be18abadafbc1be56/src/tap-windows.h +--- + licensed using the MIT license (see COPYRIGHT.MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1047.yml b/src/licensedcode/data/rules/mit_1047.yml deleted file mode 100644 index d1657db642b..00000000000 --- a/src/licensedcode/data/rules/mit_1047.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT.MIT -notes: Seen in https://github.com/Wind4/vlmcsd/blob/65228e5c7916acd947ffb53be18abadafbc1be56/src/tap-windows.h diff --git a/src/licensedcode/data/rules/mit_1048.RULE b/src/licensedcode/data/rules/mit_1048.RULE index de6f6bb6e29..8c29dda8cda 100644 --- a/src/licensedcode/data/rules/mit_1048.RULE +++ b/src/licensedcode/data/rules/mit_1048.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1048.yml b/src/licensedcode/data/rules/mit_1048.yml deleted file mode 100644 index ee4cff19187..00000000000 --- a/src/licensedcode/data/rules/mit_1048.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_1049.RULE b/src/licensedcode/data/rules/mit_1049.RULE index 285ab9ad49b..d2cfc8d9423 100644 --- a/src/licensedcode/data/rules/mit_1049.RULE +++ b/src/licensedcode/data/rules/mit_1049.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + X11 License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/src/licensedcode/data/rules/mit_1049.yml b/src/licensedcode/data/rules/mit_1049.yml deleted file mode 100644 index 2a71f567f8f..00000000000 --- a/src/licensedcode/data/rules/mit_1049.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_105.RULE b/src/licensedcode/data/rules/mit_105.RULE index 6a5bee74a0f..1d274beedd7 100644 --- a/src/licensedcode/data/rules/mit_105.RULE +++ b/src/licensedcode/data/rules/mit_105.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +--- + and is licensed under an MIT-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_105.yml b/src/licensedcode/data/rules/mit_105.yml deleted file mode 100644 index 9efad39514d..00000000000 --- a/src/licensedcode/data/rules/mit_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_1050.RULE b/src/licensedcode/data/rules/mit_1050.RULE index 2b1df527a31..2155a45fb05 100644 --- a/src/licensedcode/data/rules/mit_1050.RULE +++ b/src/licensedcode/data/rules/mit_1050.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Other files in this repo are under the MIT license below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1050.yml b/src/licensedcode/data/rules/mit_1050.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1050.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1051.RULE b/src/licensedcode/data/rules/mit_1051.RULE index 95c65e89737..f045f93bc62 100644 --- a/src/licensedcode/data/rules/mit_1051.RULE +++ b/src/licensedcode/data/rules/mit_1051.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + LICENSE is made available under the MIT License. For more details, see `LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1051.yml b/src/licensedcode/data/rules/mit_1051.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_1051.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1052.RULE b/src/licensedcode/data/rules/mit_1052.RULE index 6f152b49ec9..6f0592b23c8 100644 --- a/src/licensedcode/data/rules/mit_1052.RULE +++ b/src/licensedcode/data/rules/mit_1052.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + made available under the MIT License. For more details, see `LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1052.yml b/src/licensedcode/data/rules/mit_1052.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_1052.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1053.RULE b/src/licensedcode/data/rules/mit_1053.RULE index 7dda6b2af70..08e51a113fd 100644 --- a/src/licensedcode/data/rules/mit_1053.RULE +++ b/src/licensedcode/data/rules/mit_1053.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: some words are hyphenated. Seen in https://raw.githubusercontent.com/lua-stdlib/lua-stdlib/master/LICENSE.md +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/mit_1053.yml b/src/licensedcode/data/rules/mit_1053.yml deleted file mode 100644 index 4da8fa28964..00000000000 --- a/src/licensedcode/data/rules/mit_1053.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: some words are hyphenated. Seen in https://raw.githubusercontent.com/lua-stdlib/lua-stdlib/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_1054.RULE b/src/licensedcode/data/rules/mit_1054.RULE index a2f3ecad89e..b73838a9614 100644 --- a/src/licensedcode/data/rules/mit_1054.RULE +++ b/src/licensedcode/data/rules/mit_1054.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The code is published under the MIT open-source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1054.yml b/src/licensedcode/data/rules/mit_1054.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1054.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1055.RULE b/src/licensedcode/data/rules/mit_1055.RULE index b4bc2c1ff0c..cd40d654937 100644 --- a/src/licensedcode/data/rules/mit_1055.RULE +++ b/src/licensedcode/data/rules/mit_1055.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + License -This project is licensed under the terms of the MIT license. +This project is licensed under the terms of the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1055.yml b/src/licensedcode/data/rules/mit_1055.yml deleted file mode 100644 index 7fa48dca42e..00000000000 --- a/src/licensedcode/data/rules/mit_1055.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/mit_1056.RULE b/src/licensedcode/data/rules/mit_1056.RULE index 765acfe7bac..da93bb77a12 100644 --- a/src/licensedcode/data/rules/mit_1056.RULE +++ b/src/licensedcode/data/rules/mit_1056.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +notes: https://github.com/nexB/scancode-toolkit/issues/2675 +--- + Distributed under the MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1056.yml b/src/licensedcode/data/rules/mit_1056.yml deleted file mode 100644 index 52807ee007e..00000000000 --- a/src/licensedcode/data/rules/mit_1056.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -notes: https://github.com/nexB/scancode-toolkit/issues/2675 diff --git a/src/licensedcode/data/rules/mit_1057.RULE b/src/licensedcode/data/rules/mit_1057.RULE index 7f6ed5a837a..e76f45634e9 100644 --- a/src/licensedcode/data/rules/mit_1057.RULE +++ b/src/licensedcode/data/rules/mit_1057.RULE @@ -1,2 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +notes: https://github.com/nexB/scancode-toolkit/issues/2675 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1057.yml b/src/licensedcode/data/rules/mit_1057.yml deleted file mode 100644 index 5b6eb90988e..00000000000 --- a/src/licensedcode/data/rules/mit_1057.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -notes: https://github.com/nexB/scancode-toolkit/issues/2675 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1058.RULE b/src/licensedcode/data/rules/mit_1058.RULE index 6ef3facd09e..f9f2176ceaa 100644 --- a/src/licensedcode/data/rules/mit_1058.RULE +++ b/src/licensedcode/data/rules/mit_1058.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed explicitly MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1058.yml b/src/licensedcode/data/rules/mit_1058.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1058.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1059.RULE b/src/licensedcode/data/rules/mit_1059.RULE index dbf8b3523ba..ac7da01e8d5 100644 --- a/src/licensedcode/data/rules/mit_1059.RULE +++ b/src/licensedcode/data/rules/mit_1059.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +--- + // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. diff --git a/src/licensedcode/data/rules/mit_1059.yml b/src/licensedcode/data/rules/mit_1059.yml deleted file mode 100644 index 4cf14284c2c..00000000000 --- a/src/licensedcode/data/rules/mit_1059.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_106.RULE b/src/licensedcode/data/rules/mit_106.RULE index 46c06e276f8..7a1b966feb9 100644 --- a/src/licensedcode/data/rules/mit_106.RULE +++ b/src/licensedcode/data/rules/mit_106.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is licensed under the standard MIT terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_106.yml b/src/licensedcode/data/rules/mit_106.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1060.RULE b/src/licensedcode/data/rules/mit_1060.RULE index 56a40cc4f9f..f6d7e33ff56 100644 --- a/src/licensedcode/data/rules/mit_1060.RULE +++ b/src/licensedcode/data/rules/mit_1060.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 90 +--- + License: MIT-like \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1060.yml b/src/licensedcode/data/rules/mit_1060.yml deleted file mode 100644 index e1bc17e88d9..00000000000 --- a/src/licensedcode/data/rules/mit_1060.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_1061.RULE b/src/licensedcode/data/rules/mit_1061.RULE index 82e95e2ad8e..bdcbda3cf11 100644 --- a/src/licensedcode/data/rules/mit_1061.RULE +++ b/src/licensedcode/data/rules/mit_1061.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + used under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1061.yml b/src/licensedcode/data/rules/mit_1061.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1061.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1062.RULE b/src/licensedcode/data/rules/mit_1062.RULE index 37123bf9e93..acce7147f88 100644 --- a/src/licensedcode/data/rules/mit_1062.RULE +++ b/src/licensedcode/data/rules/mit_1062.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +minimum_coverage: 99 +notes: MIT with Sunsoft name +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/src/licensedcode/data/rules/mit_1062.yml b/src/licensedcode/data/rules/mit_1062.yml deleted file mode 100644 index 8ec9e265029..00000000000 --- a/src/licensedcode/data/rules/mit_1062.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -minimum_coverage: 99 -notes: MIT with Sunsoft name diff --git a/src/licensedcode/data/rules/mit_1063.RULE b/src/licensedcode/data/rules/mit_1063.RULE index 5f4022ac2cc..4dc4c4b17d8 100644 --- a/src/licensedcode/data/rules/mit_1063.RULE +++ b/src/licensedcode/data/rules/mit_1063.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +notes: hyphentaed CONNEC-TION +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the diff --git a/src/licensedcode/data/rules/mit_1063.yml b/src/licensedcode/data/rules/mit_1063.yml deleted file mode 100644 index d2c60fc1ccf..00000000000 --- a/src/licensedcode/data/rules/mit_1063.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -notes: hyphentaed CONNEC-TION diff --git a/src/licensedcode/data/rules/mit_1064.RULE b/src/licensedcode/data/rules/mit_1064.RULE index 3f177b30f36..bacc8cbfce0 100644 --- a/src/licensedcode/data/rules/mit_1064.RULE +++ b/src/licensedcode/data/rules/mit_1064.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Prototype is freely distributable under the terms of an MIT-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1064.yml b/src/licensedcode/data/rules/mit_1064.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1064.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1065.RULE b/src/licensedcode/data/rules/mit_1065.RULE index 5edd70e537f..148880182aa 100644 --- a/src/licensedcode/data/rules/mit_1065.RULE +++ b/src/licensedcode/data/rules/mit_1065.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is freely distributable under the terms of an MIT-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1065.yml b/src/licensedcode/data/rules/mit_1065.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1065.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1066.RULE b/src/licensedcode/data/rules/mit_1066.RULE index 6970e3e006e..7a08cac8f89 100644 --- a/src/licensedcode/data/rules/mit_1066.RULE +++ b/src/licensedcode/data/rules/mit_1066.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is freely distributable under the terms of an MIT-style license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1066.yml b/src/licensedcode/data/rules/mit_1066.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1066.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1067.RULE b/src/licensedcode/data/rules/mit_1067.RULE index b19182630c4..590e5d1d2c9 100644 --- a/src/licensedcode/data/rules/mit_1067.RULE +++ b/src/licensedcode/data/rules/mit_1067.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + all examples, code snippets and attached documentation is covered by the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1067.yml b/src/licensedcode/data/rules/mit_1067.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1067.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1068.RULE b/src/licensedcode/data/rules/mit_1068.RULE index c86d510c8f1..29e033eb073 100644 --- a/src/licensedcode/data/rules/mit_1068.RULE +++ b/src/licensedcode/data/rules/mit_1068.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + ## License This software is published under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1068.yml b/src/licensedcode/data/rules/mit_1068.yml deleted file mode 100644 index f47c1c6ff3c..00000000000 --- a/src/licensedcode/data/rules/mit_1068.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_1069.RULE b/src/licensedcode/data/rules/mit_1069.RULE index 6d81b0403a9..13869a8c726 100644 --- a/src/licensedcode/data/rules/mit_1069.RULE +++ b/src/licensedcode/data/rules/mit_1069.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + This software is published under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1069.yml b/src/licensedcode/data/rules/mit_1069.yml deleted file mode 100644 index f47c1c6ff3c..00000000000 --- a/src/licensedcode/data/rules/mit_1069.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_107.RULE b/src/licensedcode/data/rules/mit_107.RULE index b7598ac51c8..8e89c4b3ce9 100644 --- a/src/licensedcode/data/rules/mit_107.RULE +++ b/src/licensedcode/data/rules/mit_107.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + and is licensed under the standard MIT terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_107.yml b/src/licensedcode/data/rules/mit_107.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1070.RULE b/src/licensedcode/data/rules/mit_1070.RULE index 6f096d6e28d..fc5b3681075 100644 --- a/src/licensedcode/data/rules/mit_1070.RULE +++ b/src/licensedcode/data/rules/mit_1070.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is published under the [MIT License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1070.yml b/src/licensedcode/data/rules/mit_1070.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1070.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1071.RULE b/src/licensedcode/data/rules/mit_1071.RULE index ddae92aff6d..47583eec3ef 100644 --- a/src/licensedcode/data/rules/mit_1071.RULE +++ b/src/licensedcode/data/rules/mit_1071.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This software may be distributed under the terms * of the MIT license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1071.yml b/src/licensedcode/data/rules/mit_1071.yml deleted file mode 100644 index 367580f1a5c..00000000000 --- a/src/licensedcode/data/rules/mit_1071.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1072.RULE b/src/licensedcode/data/rules/mit_1072.RULE index b281680bd5a..c0a5aa555b6 100644 --- a/src/licensedcode/data/rules/mit_1072.RULE +++ b/src/licensedcode/data/rules/mit_1072.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + posted it all under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1072.yml b/src/licensedcode/data/rules/mit_1072.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1072.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1073.RULE b/src/licensedcode/data/rules/mit_1073.RULE index ae8a136a811..d7e177db27e 100644 --- a/src/licensedcode/data/rules/mit_1073.RULE +++ b/src/licensedcode/data/rules/mit_1073.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + You may alternatively use these files under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1073.yml b/src/licensedcode/data/rules/mit_1073.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1073.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1074.RULE b/src/licensedcode/data/rules/mit_1074.RULE index 64a87407449..9abfe96f020 100644 --- a/src/licensedcode/data/rules/mit_1074.RULE +++ b/src/licensedcode/data/rules/mit_1074.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributed under the MIT license, please see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1074.yml b/src/licensedcode/data/rules/mit_1074.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1074.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1075.RULE b/src/licensedcode/data/rules/mit_1075.RULE index cd860ed79d3..3a9f43a78a9 100644 --- a/src/licensedcode/data/rules/mit_1075.RULE +++ b/src/licensedcode/data/rules/mit_1075.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license: MIT, see LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1075.yml b/src/licensedcode/data/rules/mit_1075.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1075.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1076.RULE b/src/licensedcode/data/rules/mit_1076.RULE index aeabaacba44..6e9502ea71c 100644 --- a/src/licensedcode/data/rules/mit_1076.RULE +++ b/src/licensedcode/data/rules/mit_1076.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + License This work is released under the MIT license. A copy of the license is provided in the [LICENSE](./LICENSE) file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1076.yml b/src/licensedcode/data/rules/mit_1076.yml deleted file mode 100644 index 367580f1a5c..00000000000 --- a/src/licensedcode/data/rules/mit_1076.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1077.RULE b/src/licensedcode/data/rules/mit_1077.RULE index 351a4091571..c82e5ec5947 100644 --- a/src/licensedcode/data/rules/mit_1077.RULE +++ b/src/licensedcode/data/rules/mit_1077.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This work is released under the MIT license. A copy of the license is provided in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1077.yml b/src/licensedcode/data/rules/mit_1077.yml deleted file mode 100644 index 367580f1a5c..00000000000 --- a/src/licensedcode/data/rules/mit_1077.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1078.RULE b/src/licensedcode/data/rules/mit_1078.RULE index 98ce23eb352..6ea82c59495 100644 --- a/src/licensedcode/data/rules/mit_1078.RULE +++ b/src/licensedcode/data/rules/mit_1078.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +--- + ## License The code of is released under the MIT License. There is no limitation for both academic and commercial usage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1078.yml b/src/licensedcode/data/rules/mit_1078.yml deleted file mode 100644 index 4cf14284c2c..00000000000 --- a/src/licensedcode/data/rules/mit_1078.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_1079.RULE b/src/licensedcode/data/rules/mit_1079.RULE index ded76ad692f..ac03f5a7267 100644 --- a/src/licensedcode/data/rules/mit_1079.RULE +++ b/src/licensedcode/data/rules/mit_1079.RULE @@ -1 +1,6 @@ +--- +license_expression: mit +is_license_notice: yes +--- + The code of is released under the MIT License. There is no limitation for both academic and commercial usage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1079.yml b/src/licensedcode/data/rules/mit_1079.yml deleted file mode 100644 index 4cf14284c2c..00000000000 --- a/src/licensedcode/data/rules/mit_1079.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_108.RULE b/src/licensedcode/data/rules/mit_108.RULE index fc3aa3eaa35..c869cc58bf1 100644 --- a/src/licensedcode/data/rules/mit_108.RULE +++ b/src/licensedcode/data/rules/mit_108.RULE @@ -1 +1,7 @@ -Licensed under permissive MIT license \ No newline at end of file +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + +Licensed under permissive MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_108.yml b/src/licensedcode/data/rules/mit_108.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1080.RULE b/src/licensedcode/data/rules/mit_1080.RULE index 7deef7ae825..a1cbd2f67ef 100644 --- a/src/licensedcode/data/rules/mit_1080.RULE +++ b/src/licensedcode/data/rules/mit_1080.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The code of is released under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1080.yml b/src/licensedcode/data/rules/mit_1080.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1080.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1081.RULE b/src/licensedcode/data/rules/mit_1081.RULE index 6119d68b7d2..1a42d5695cb 100644 --- a/src/licensedcode/data/rules/mit_1081.RULE +++ b/src/licensedcode/data/rules/mit_1081.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licensed under The MIT License [see LICENSE for details] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1081.yml b/src/licensedcode/data/rules/mit_1081.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1081.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1082.RULE b/src/licensedcode/data/rules/mit_1082.RULE index a39eb62cb29..4c7dd6abc22 100644 --- a/src/licensedcode/data/rules/mit_1082.RULE +++ b/src/licensedcode/data/rules/mit_1082.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1082.yml b/src/licensedcode/data/rules/mit_1082.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1082.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1083.RULE b/src/licensedcode/data/rules/mit_1083.RULE index 297587f3892..b1ccf82a552 100644 --- a/src/licensedcode/data/rules/mit_1083.RULE +++ b/src/licensedcode/data/rules/mit_1083.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +notes: cygnus solutions added in disclaimer +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/mit_1083.yml b/src/licensedcode/data/rules/mit_1083.yml deleted file mode 100644 index 269f13eb2d7..00000000000 --- a/src/licensedcode/data/rules/mit_1083.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -notes: cygnus solutions added in disclaimer diff --git a/src/licensedcode/data/rules/mit_1084.RULE b/src/licensedcode/data/rules/mit_1084.RULE index 32c67c1bda1..b3a3775dac6 100644 --- a/src/licensedcode/data/rules/mit_1084.RULE +++ b/src/licensedcode/data/rules/mit_1084.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 95 +--- + License terms appear in Codehaus Xfire License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1084.yml b/src/licensedcode/data/rules/mit_1084.yml deleted file mode 100644 index b0138481fdd..00000000000 --- a/src/licensedcode/data/rules/mit_1084.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit_1085.RULE b/src/licensedcode/data/rules/mit_1085.RULE index c84fb67875c..b67ac9a4610 100644 --- a/src/licensedcode/data/rules/mit_1085.RULE +++ b/src/licensedcode/data/rules/mit_1085.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The project has an MIT open-source licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1085.yml b/src/licensedcode/data/rules/mit_1085.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1085.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1086.RULE b/src/licensedcode/data/rules/mit_1086.RULE index 5b95e6b843c..ee4d8c10d8e 100644 --- a/src/licensedcode/data/rules/mit_1086.RULE +++ b/src/licensedcode/data/rules/mit_1086.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + The project has an `MIT open-source licence `__. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1086.yml b/src/licensedcode/data/rules/mit_1086.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1086.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1087.RULE b/src/licensedcode/data/rules/mit_1087.RULE index 4e4ca15bed3..0c094ce809b 100644 --- a/src/licensedcode/data/rules/mit_1087.RULE +++ b/src/licensedcode/data/rules/mit_1087.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + The project has an `MIT open-source licence `__. Among other things this means you can use it free of charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1087.yml b/src/licensedcode/data/rules/mit_1087.yml deleted file mode 100644 index 367580f1a5c..00000000000 --- a/src/licensedcode/data/rules/mit_1087.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1088.RULE b/src/licensedcode/data/rules/mit_1088.RULE index 25220d96c1e..ddc1c2810db 100644 --- a/src/licensedcode/data/rules/mit_1088.RULE +++ b/src/licensedcode/data/rules/mit_1088.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the terms of the [MIT license](./LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1088.yml b/src/licensedcode/data/rules/mit_1088.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1088.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1089.RULE b/src/licensedcode/data/rules/mit_1089.RULE index 1be08ee3dd4..6d70076b675 100644 --- a/src/licensedcode/data/rules/mit_1089.RULE +++ b/src/licensedcode/data/rules/mit_1089.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +--- + License The code is using the **MIT license**, which is a very permissive license suitable for non-commercial and commercial uses of alike. However, you have to diff --git a/src/licensedcode/data/rules/mit_1089.yml b/src/licensedcode/data/rules/mit_1089.yml deleted file mode 100644 index 4cf14284c2c..00000000000 --- a/src/licensedcode/data/rules/mit_1089.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_109.RULE b/src/licensedcode/data/rules/mit_109.RULE index 4743eb1286d..668d4836766 100644 --- a/src/licensedcode/data/rules/mit_109.RULE +++ b/src/licensedcode/data/rules/mit_109.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/prabirshrestha/sprockets-dotnet#license +--- + https://github.com/prabirshrestha/sprockets-dotnet#license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_109.yml b/src/licensedcode/data/rules/mit_109.yml deleted file mode 100644 index 0dff2a2b0fb..00000000000 --- a/src/licensedcode/data/rules/mit_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/prabirshrestha/sprockets-dotnet#license diff --git a/src/licensedcode/data/rules/mit_1090.RULE b/src/licensedcode/data/rules/mit_1090.RULE index f8f3f6299a0..f4139af1a5c 100644 --- a/src/licensedcode/data/rules/mit_1090.RULE +++ b/src/licensedcode/data/rules/mit_1090.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is released under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1090.yml b/src/licensedcode/data/rules/mit_1090.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1090.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1091.RULE b/src/licensedcode/data/rules/mit_1091.RULE index 21d445e8902..f7c00f96166 100644 --- a/src/licensedcode/data/rules/mit_1091.RULE +++ b/src/licensedcode/data/rules/mit_1091.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT +--- + LICENSE: MIT (https://spdx.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1091.yml b/src/licensedcode/data/rules/mit_1091.yml deleted file mode 100644 index 540cfbf01b3..00000000000 --- a/src/licensedcode/data/rules/mit_1091.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1092.RULE b/src/licensedcode/data/rules/mit_1092.RULE index ba3181c87b9..ac147bc29d0 100644 --- a/src/licensedcode/data/rules/mit_1092.RULE +++ b/src/licensedcode/data/rules/mit_1092.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Unless explicitly stated otherwise all files in this repository are licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1092.yml b/src/licensedcode/data/rules/mit_1092.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1092.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1093.RULE b/src/licensedcode/data/rules/mit_1093.RULE index e15032b162a..a03f4fe2e70 100644 --- a/src/licensedcode/data/rules/mit_1093.RULE +++ b/src/licensedcode/data/rules/mit_1093.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Distributed under the MIT License. See LICENSE.txt for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1093.yml b/src/licensedcode/data/rules/mit_1093.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_1093.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1094.RULE b/src/licensedcode/data/rules/mit_1094.RULE index 7897103778b..6b512089821 100644 --- a/src/licensedcode/data/rules/mit_1094.RULE +++ b/src/licensedcode/data/rules/mit_1094.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + project also under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1094.yml b/src/licensedcode/data/rules/mit_1094.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1094.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1095.RULE b/src/licensedcode/data/rules/mit_1095.RULE index ace723d63e6..e460ba5f7a0 100644 --- a/src/licensedcode/data/rules/mit_1095.RULE +++ b/src/licensedcode/data/rules/mit_1095.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + under MIT License: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1095.yml b/src/licensedcode/data/rules/mit_1095.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_1095.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_1096.RULE b/src/licensedcode/data/rules/mit_1096.RULE index ccec88bfb28..7ddfcf301d9 100644 --- a/src/licensedcode/data/rules/mit_1096.RULE +++ b/src/licensedcode/data/rules/mit_1096.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This code is licensed under the MIT license see LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1096.yml b/src/licensedcode/data/rules/mit_1096.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_1096.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1097.RULE b/src/licensedcode/data/rules/mit_1097.RULE index b838b897380..115fbe231b9 100644 --- a/src/licensedcode/data/rules/mit_1097.RULE +++ b/src/licensedcode/data/rules/mit_1097.RULE @@ -1 +1,7 @@ -Distributed under the terms of an {{MIT-style license: The MIT License}} +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Distributed under the terms of an {{MIT-style license: The MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1097.yml b/src/licensedcode/data/rules/mit_1097.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1097.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1098.RULE b/src/licensedcode/data/rules/mit_1098.RULE index 4863c8effd8..f886e836391 100644 --- a/src/licensedcode/data/rules/mit_1098.RULE +++ b/src/licensedcode/data/rules/mit_1098.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +--- + Distributed under the terms of an MIT-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1098.yml b/src/licensedcode/data/rules/mit_1098.yml deleted file mode 100644 index 9efad39514d..00000000000 --- a/src/licensedcode/data/rules/mit_1098.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_1099.RULE b/src/licensedcode/data/rules/mit_1099.RULE index d5dd7cac9e5..fcd43415a94 100644 --- a/src/licensedcode/data/rules/mit_1099.RULE +++ b/src/licensedcode/data/rules/mit_1099.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This code is licensed under the MIT License (MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1099.yml b/src/licensedcode/data/rules/mit_1099.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1099.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_11.RULE b/src/licensedcode/data/rules/mit_11.RULE index e8f21a1047b..125e13440e8 100644 --- a/src/licensedcode/data/rules/mit_11.RULE +++ b/src/licensedcode/data/rules/mit_11.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + executables and source code are distributed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_11.yml b/src/licensedcode/data/rules/mit_11.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_110.RULE b/src/licensedcode/data/rules/mit_110.RULE index 143a453e2cc..a561e24ead8 100644 --- a/src/licensedcode/data/rules/mit_110.RULE +++ b/src/licensedcode/data/rules/mit_110.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + musl as a whole is licensed under the following standard MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_110.yml b/src/licensedcode/data/rules/mit_110.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1100.RULE b/src/licensedcode/data/rules/mit_1100.RULE index b0584544829..13b9d35c1b9 100644 --- a/src/licensedcode/data/rules/mit_1100.RULE +++ b/src/licensedcode/data/rules/mit_1100.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/jquery.LICENSE.txt +--- + MIT licenses/jquery.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1100.yml b/src/licensedcode/data/rules/mit_1100.yml deleted file mode 100644 index 04eac485f1f..00000000000 --- a/src/licensedcode/data/rules/mit_1100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/jquery.LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1101.RULE b/src/licensedcode/data/rules/mit_1101.RULE index 74ead62c625..9eee68c7885 100644 --- a/src/licensedcode/data/rules/mit_1101.RULE +++ b/src/licensedcode/data/rules/mit_1101.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/jquery.LICENSE.txt +--- + licenses/jquery.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1101.yml b/src/licensedcode/data/rules/mit_1101.yml deleted file mode 100644 index 04eac485f1f..00000000000 --- a/src/licensedcode/data/rules/mit_1101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/jquery.LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1102.RULE b/src/licensedcode/data/rules/mit_1102.RULE index 404777ed283..cceb7aa2260 100644 --- a/src/licensedcode/data/rules/mit_1102.RULE +++ b/src/licensedcode/data/rules/mit_1102.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/jquery_ui.LICENSE.txt +--- + licenses/jquery_ui.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1102.yml b/src/licensedcode/data/rules/mit_1102.yml deleted file mode 100644 index a34e8b6e82e..00000000000 --- a/src/licensedcode/data/rules/mit_1102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/jquery_ui.LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1103.RULE b/src/licensedcode/data/rules/mit_1103.RULE index 9dacbfe8187..8dea7de6aba 100644 --- a/src/licensedcode/data/rules/mit_1103.RULE +++ b/src/licensedcode/data/rules/mit_1103.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/slf4j.LICENSE.txt +--- + licenses/slf4j.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1103.yml b/src/licensedcode/data/rules/mit_1103.yml deleted file mode 100644 index bfc31d4e593..00000000000 --- a/src/licensedcode/data/rules/mit_1103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/slf4j.LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1104.RULE b/src/licensedcode/data/rules/mit_1104.RULE index e8c359be8d1..1571f0f0fa2 100644 --- a/src/licensedcode/data/rules/mit_1104.RULE +++ b/src/licensedcode/data/rules/mit_1104.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +minimum_coverage: 100 +notes: https://squaregear.net/fonts/license.html ... MIT with an extra font word "copy of this + font software" +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this font software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/mit_1104.yml b/src/licensedcode/data/rules/mit_1104.yml deleted file mode 100644 index 42145ce6df6..00000000000 --- a/src/licensedcode/data/rules/mit_1104.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -minimum_coverage: 100 -notes: https://squaregear.net/fonts/license.html ... MIT with an extra font word "copy of this - font software" diff --git a/src/licensedcode/data/rules/mit_1105.RULE b/src/licensedcode/data/rules/mit_1105.RULE index 2579089c548..7d91ea8e55b 100644 --- a/src/licensedcode/data/rules/mit_1105.RULE +++ b/src/licensedcode/data/rules/mit_1105.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + MIT, check the `LICENSE` file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1105.yml b/src/licensedcode/data/rules/mit_1105.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1106.RULE b/src/licensedcode/data/rules/mit_1106.RULE index 3cb0bd6fdb7..f6e8ab6ae39 100644 --- a/src/licensedcode/data/rules/mit_1106.RULE +++ b/src/licensedcode/data/rules/mit_1106.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1106.yml b/src/licensedcode/data/rules/mit_1106.yml deleted file mode 100644 index b4ef6268449..00000000000 --- a/src/licensedcode/data/rules/mit_1106.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit_1107.RULE b/src/licensedcode/data/rules/mit_1107.RULE index bf8563e443f..648c0654297 100644 --- a/src/licensedcode/data/rules/mit_1107.RULE +++ b/src/licensedcode/data/rules/mit_1107.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1107.yml b/src/licensedcode/data/rules/mit_1107.yml deleted file mode 100644 index ca44fe20ad5..00000000000 --- a/src/licensedcode/data/rules/mit_1107.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mit_1108.RULE b/src/licensedcode/data/rules/mit_1108.RULE index 3b25d1081c1..8959c6d406c 100644 --- a/src/licensedcode/data/rules/mit_1108.RULE +++ b/src/licensedcode/data/rules/mit_1108.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + 'MIT ': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1108.yml b/src/licensedcode/data/rules/mit_1108.yml deleted file mode 100644 index 974fac6b296..00000000000 --- a/src/licensedcode/data/rules/mit_1108.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1109.RULE b/src/licensedcode/data/rules/mit_1109.RULE index 29341757bb4..7a0bb8bfa65 100644 --- a/src/licensedcode/data/rules/mit_1109.RULE +++ b/src/licensedcode/data/rules/mit_1109.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + 'MIT ': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1109.yml b/src/licensedcode/data/rules/mit_1109.yml deleted file mode 100644 index d8bd3618178..00000000000 --- a/src/licensedcode/data/rules/mit_1109.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_111.RULE b/src/licensedcode/data/rules/mit_111.RULE index 97e48d8a726..1a974259568 100644 --- a/src/licensedcode/data/rules/mit_111.RULE +++ b/src/licensedcode/data/rules/mit_111.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +--- + jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_111.yml b/src/licensedcode/data/rules/mit_111.yml deleted file mode 100644 index 19421f9177c..00000000000 --- a/src/licensedcode/data/rules/mit_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1110.RULE b/src/licensedcode/data/rules/mit_1110.RULE index 42f9959740c..ee9affa7df2 100644 --- a/src/licensedcode/data/rules/mit_1110.RULE +++ b/src/licensedcode/data/rules/mit_1110.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'MIT @chetandhembre' \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1110.yml b/src/licensedcode/data/rules/mit_1110.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1111.RULE b/src/licensedcode/data/rules/mit_1111.RULE index 058981daa21..afd42c8e154 100644 --- a/src/licensedcode/data/rules/mit_1111.RULE +++ b/src/licensedcode/data/rules/mit_1111.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'MIT Lisence': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1111.yml b/src/licensedcode/data/rules/mit_1111.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1112.RULE b/src/licensedcode/data/rules/mit_1112.RULE index 51d250a464a..7100611aa01 100644 --- a/src/licensedcode/data/rules/mit_1112.RULE +++ b/src/licensedcode/data/rules/mit_1112.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'MIT licence': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1112.yml b/src/licensedcode/data/rules/mit_1112.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1113.RULE b/src/licensedcode/data/rules/mit_1113.RULE index 3779e312892..617504ffc3c 100644 --- a/src/licensedcode/data/rules/mit_1113.RULE +++ b/src/licensedcode/data/rules/mit_1113.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'MIT license (MIT)': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1113.yml b/src/licensedcode/data/rules/mit_1113.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1113.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1114.RULE b/src/licensedcode/data/rules/mit_1114.RULE index d4c1d045a83..9f6478e2837 100644 --- a/src/licensedcode/data/rules/mit_1114.RULE +++ b/src/licensedcode/data/rules/mit_1114.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'MIT, Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1114.yml b/src/licensedcode/data/rules/mit_1114.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1115.RULE b/src/licensedcode/data/rules/mit_1115.RULE index 5d329227c94..97e5de86992 100644 --- a/src/licensedcode/data/rules/mit_1115.RULE +++ b/src/licensedcode/data/rules/mit_1115.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'MIT-Style': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1115.yml b/src/licensedcode/data/rules/mit_1115.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1116.RULE b/src/licensedcode/data/rules/mit_1116.RULE index 6ab0f34a73f..77466f511b2 100644 --- a/src/licensedcode/data/rules/mit_1116.RULE +++ b/src/licensedcode/data/rules/mit_1116.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'MIT-like': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1116.yml b/src/licensedcode/data/rules/mit_1116.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1117.RULE b/src/licensedcode/data/rules/mit_1117.RULE index 2a811cc30a1..82acdda9432 100644 --- a/src/licensedcode/data/rules/mit_1117.RULE +++ b/src/licensedcode/data/rules/mit_1117.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Http://opensource.org/licenses/MIT': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1117.yml b/src/licensedcode/data/rules/mit_1117.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1118.RULE b/src/licensedcode/data/rules/mit_1118.RULE index f8a53c6e40c..d98641f50ec 100644 --- a/src/licensedcode/data/rules/mit_1118.RULE +++ b/src/licensedcode/data/rules/mit_1118.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Http://www.opensource.org/licenses/MIT': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1118.yml b/src/licensedcode/data/rules/mit_1118.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1118.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1119.RULE b/src/licensedcode/data/rules/mit_1119.RULE index c2bf474979d..2ed443a7655 100644 --- a/src/licensedcode/data/rules/mit_1119.RULE +++ b/src/licensedcode/data/rules/mit_1119.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + MIT Licensed. http://www.opensource.org/licenses/mit-license.php': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1119.yml b/src/licensedcode/data/rules/mit_1119.yml deleted file mode 100644 index d8bd3618178..00000000000 --- a/src/licensedcode/data/rules/mit_1119.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_112.RULE b/src/licensedcode/data/rules/mit_112.RULE index b4a7c94755c..78274f5d646 100644 --- a/src/licensedcode/data/rules/mit_112.RULE +++ b/src/licensedcode/data/rules/mit_112.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://jedwatson.github.io/classnames +--- + Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_112.yml b/src/licensedcode/data/rules/mit_112.yml deleted file mode 100644 index 2cef372d117..00000000000 --- a/src/licensedcode/data/rules/mit_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://jedwatson.github.io/classnames diff --git a/src/licensedcode/data/rules/mit_1120.RULE b/src/licensedcode/data/rules/mit_1120.RULE index 2cf48b5f568..1154a9c81a5 100644 --- a/src/licensedcode/data/rules/mit_1120.RULE +++ b/src/licensedcode/data/rules/mit_1120.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.md +--- + MIT License, see LICENSE.md for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1120.yml b/src/licensedcode/data/rules/mit_1120.yml deleted file mode 100644 index b1c11bf34e6..00000000000 --- a/src/licensedcode/data/rules/mit_1120.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_1121.RULE b/src/licensedcode/data/rules/mit_1121.RULE index 01b6fbb400b..9c09f642ee8 100644 --- a/src/licensedcode/data/rules/mit_1121.RULE +++ b/src/licensedcode/data/rules/mit_1121.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.md +--- + MIT License, see LICENSE.md for details': 'MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1121.yml b/src/licensedcode/data/rules/mit_1121.yml deleted file mode 100644 index b1c11bf34e6..00000000000 --- a/src/licensedcode/data/rules/mit_1121.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_1122.RULE b/src/licensedcode/data/rules/mit_1122.RULE index 9c977995845..e6650284040 100644 --- a/src/licensedcode/data/rules/mit_1122.RULE +++ b/src/licensedcode/data/rules/mit_1122.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://mootools.net/license.txt +--- + MIT (http://mootools.net/license.txt): MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1122.yml b/src/licensedcode/data/rules/mit_1122.yml deleted file mode 100644 index 62be65355f4..00000000000 --- a/src/licensedcode/data/rules/mit_1122.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://mootools.net/license.txt diff --git a/src/licensedcode/data/rules/mit_1123.RULE b/src/licensedcode/data/rules/mit_1123.RULE index 628079aff02..4cf955e7349 100644 --- a/src/licensedcode/data/rules/mit_1123.RULE +++ b/src/licensedcode/data/rules/mit_1123.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://github.com/AlekseyLeshko/say-me/blob/master/LICENSE +--- + MIT (https://github.com/AlekseyLeshko/say-me/blob/master/LICENSE): MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1123.yml b/src/licensedcode/data/rules/mit_1123.yml deleted file mode 100644 index 4b6b4a953f3..00000000000 --- a/src/licensedcode/data/rules/mit_1123.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://github.com/AlekseyLeshko/say-me/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_1124.RULE b/src/licensedcode/data/rules/mit_1124.RULE index 27013c2c19e..e823fd4186b 100644 --- a/src/licensedcode/data/rules/mit_1124.RULE +++ b/src/licensedcode/data/rules/mit_1124.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://github.com/AlekseyLeshko/testimonial.js/blob/master/LICENSE +--- + MIT (https://github.com/AlekseyLeshko/testimonial.js/blob/master/LICENSE): MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1124.yml b/src/licensedcode/data/rules/mit_1124.yml deleted file mode 100644 index b741a3845f7..00000000000 --- a/src/licensedcode/data/rules/mit_1124.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://github.com/AlekseyLeshko/testimonial.js/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_1125.RULE b/src/licensedcode/data/rules/mit_1125.RULE index 3b19c1a8f12..7e34722a61c 100644 --- a/src/licensedcode/data/rules/mit_1125.RULE +++ b/src/licensedcode/data/rules/mit_1125.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT +--- + MIT (https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT): MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1125.yml b/src/licensedcode/data/rules/mit_1125.yml deleted file mode 100644 index 831e0da8b1b..00000000000 --- a/src/licensedcode/data/rules/mit_1125.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT diff --git a/src/licensedcode/data/rules/mit_1126.RULE b/src/licensedcode/data/rules/mit_1126.RULE index 047ab712ebb..cc5dec34652 100644 --- a/src/licensedcode/data/rules/mit_1126.RULE +++ b/src/licensedcode/data/rules/mit_1126.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://rem.mit-license.org/ +--- + MIT / http://rem.mit-license.org: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1126.yml b/src/licensedcode/data/rules/mit_1126.yml deleted file mode 100644 index 21b06281eb7..00000000000 --- a/src/licensedcode/data/rules/mit_1126.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://rem.mit-license.org/ diff --git a/src/licensedcode/data/rules/mit_1127.RULE b/src/licensedcode/data/rules/mit_1127.RULE index 23950083107..d7167eb64f1 100644 --- a/src/licensedcode/data/rules/mit_1127.RULE +++ b/src/licensedcode/data/rules/mit_1127.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.highcharts.com/license +--- + MIT / http://www.highcharts.com/license/: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1127.yml b/src/licensedcode/data/rules/mit_1127.yml deleted file mode 100644 index 5c0f3eb5ae8..00000000000 --- a/src/licensedcode/data/rules/mit_1127.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.highcharts.com/license diff --git a/src/licensedcode/data/rules/mit_1128.RULE b/src/licensedcode/data/rules/mit_1128.RULE index ee59eabc10f..368cc86b380 100644 --- a/src/licensedcode/data/rules/mit_1128.RULE +++ b/src/licensedcode/data/rules/mit_1128.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + MIT 1.0: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1128.yml b/src/licensedcode/data/rules/mit_1128.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1128.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1129.RULE b/src/licensedcode/data/rules/mit_1129.RULE index b930914f80d..397bbeba2ac 100644 --- a/src/licensedcode/data/rules/mit_1129.RULE +++ b/src/licensedcode/data/rules/mit_1129.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://bankfacil.mit-license.org/ +--- + MIT : MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1129.yml b/src/licensedcode/data/rules/mit_1129.yml deleted file mode 100644 index 23c54c7ef08..00000000000 --- a/src/licensedcode/data/rules/mit_1129.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://bankfacil.mit-license.org/ diff --git a/src/licensedcode/data/rules/mit_113.RULE b/src/licensedcode/data/rules/mit_113.RULE index ea756f14c95..d59b3077887 100644 --- a/src/licensedcode/data/rules/mit_113.RULE +++ b/src/licensedcode/data/rules/mit_113.RULE @@ -1 +1,7 @@ -Licensed under the MIT License (MIT), \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Licensed under the MIT License (MIT), \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_113.yml b/src/licensedcode/data/rules/mit_113.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1130.RULE b/src/licensedcode/data/rules/mit_1130.RULE index a7659c697a3..df3b80cc0d6 100644 --- a/src/licensedcode/data/rules/mit_1130.RULE +++ b/src/licensedcode/data/rules/mit_1130.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + MIT @chetandhembre: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1130.yml b/src/licensedcode/data/rules/mit_1130.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1130.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1131.RULE b/src/licensedcode/data/rules/mit_1131.RULE index 6ec887dc021..0c67772048a 100644 --- a/src/licensedcode/data/rules/mit_1131.RULE +++ b/src/licensedcode/data/rules/mit_1131.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + MIT MIT Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1131.yml b/src/licensedcode/data/rules/mit_1131.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1131.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1132.RULE b/src/licensedcode/data/rules/mit_1132.RULE index fb5b9e49bda..565f18ac314 100644 --- a/src/licensedcode/data/rules/mit_1132.RULE +++ b/src/licensedcode/data/rules/mit_1132.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + MIT License (http://opensource.org/licenses/MIT): MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1132.yml b/src/licensedcode/data/rules/mit_1132.yml deleted file mode 100644 index 974fac6b296..00000000000 --- a/src/licensedcode/data/rules/mit_1132.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1133.RULE b/src/licensedcode/data/rules/mit_1133.RULE index f30fdbc3ec6..6488bfe1f82 100644 --- a/src/licensedcode/data/rules/mit_1133.RULE +++ b/src/licensedcode/data/rules/mit_1133.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.opensource.org/licenses/MIT +--- + MIT License http://www.opensource.org/licenses/MIT: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1133.yml b/src/licensedcode/data/rules/mit_1133.yml deleted file mode 100644 index 5a1c836d449..00000000000 --- a/src/licensedcode/data/rules/mit_1133.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1134.RULE b/src/licensedcode/data/rules/mit_1134.RULE index 01681219a63..eaa0a4bab58 100644 --- a/src/licensedcode/data/rules/mit_1134.RULE +++ b/src/licensedcode/data/rules/mit_1134.RULE @@ -1 +1,13 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_copyrights: + - Copyright First Rally +ignorable_holders: + - First Rally +--- + MIT License. Copyright First Rally. All rights reserved.: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1134.yml b/src/licensedcode/data/rules/mit_1134.yml deleted file mode 100644 index 3a8ee63fbd6..00000000000 --- a/src/licensedcode/data/rules/mit_1134.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_copyrights: - - Copyright First Rally -ignorable_holders: - - First Rally diff --git a/src/licensedcode/data/rules/mit_1135.RULE b/src/licensedcode/data/rules/mit_1135.RULE index 0c2a8dae46c..da7a3b24f05 100644 --- a/src/licensedcode/data/rules/mit_1135.RULE +++ b/src/licensedcode/data/rules/mit_1135.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + MIT MIT http://opensource.org/licenses/MIT: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1135.yml b/src/licensedcode/data/rules/mit_1135.yml deleted file mode 100644 index 974fac6b296..00000000000 --- a/src/licensedcode/data/rules/mit_1135.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1136.RULE b/src/licensedcode/data/rules/mit_1136.RULE index f714ba4499c..19770093aac 100644 --- a/src/licensedcode/data/rules/mit_1136.RULE +++ b/src/licensedcode/data/rules/mit_1136.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + mit/x11 mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1136.yml b/src/licensedcode/data/rules/mit_1136.yml deleted file mode 100644 index 2abc3a7304f..00000000000 --- a/src/licensedcode/data/rules/mit_1136.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1137.RULE b/src/licensedcode/data/rules/mit_1137.RULE index e69cb2bf498..c9d9d80a3a7 100644 --- a/src/licensedcode/data/rules/mit_1137.RULE +++ b/src/licensedcode/data/rules/mit_1137.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +--- + 'MIT/X': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1137.yml b/src/licensedcode/data/rules/mit_1137.yml deleted file mode 100644 index d71c3190873..00000000000 --- a/src/licensedcode/data/rules/mit_1137.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1138.RULE b/src/licensedcode/data/rules/mit_1138.RULE index ac0e0eccc0a..87a007e276c 100644 --- a/src/licensedcode/data/rules/mit_1138.RULE +++ b/src/licensedcode/data/rules/mit_1138.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 80 +minimum_coverage: 100 +--- + 'MITISC': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1138.yml b/src/licensedcode/data/rules/mit_1138.yml deleted file mode 100644 index 001320e967a..00000000000 --- a/src/licensedcode/data/rules/mit_1138.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 80 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_1139.RULE b/src/licensedcode/data/rules/mit_1139.RULE index 97d0426671c..39148cad468 100644 --- a/src/licensedcode/data/rules/mit_1139.RULE +++ b/src/licensedcode/data/rules/mit_1139.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + MIT License diff --git a/src/licensedcode/data/rules/mit_1139.yml b/src/licensedcode/data/rules/mit_1139.yml deleted file mode 100644 index 981cc0c5377..00000000000 --- a/src/licensedcode/data/rules/mit_1139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_114.RULE b/src/licensedcode/data/rules/mit_114.RULE index 93097dcdf77..9e3f0e5222e 100644 --- a/src/licensedcode/data/rules/mit_114.RULE +++ b/src/licensedcode/data/rules/mit_114.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/micahlmartin/OAuth2Provider +--- + https://github.com/micahlmartin/OAuth2Provider \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_114.yml b/src/licensedcode/data/rules/mit_114.yml deleted file mode 100644 index 654a8ca10a2..00000000000 --- a/src/licensedcode/data/rules/mit_114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/micahlmartin/OAuth2Provider diff --git a/src/licensedcode/data/rules/mit_1140.RULE b/src/licensedcode/data/rules/mit_1140.RULE index f84997732ef..714cf5a532d 100644 --- a/src/licensedcode/data/rules/mit_1140.RULE +++ b/src/licensedcode/data/rules/mit_1140.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + MIT License https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1140.yml b/src/licensedcode/data/rules/mit_1140.yml deleted file mode 100644 index 981cc0c5377..00000000000 --- a/src/licensedcode/data/rules/mit_1140.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1141.RULE b/src/licensedcode/data/rules/mit_1141.RULE index c84b42fa2cf..a16abc2633a 100644 --- a/src/licensedcode/data/rules/mit_1141.RULE +++ b/src/licensedcode/data/rules/mit_1141.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This library is distributed under the terms of the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1141.yml b/src/licensedcode/data/rules/mit_1141.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1142.RULE b/src/licensedcode/data/rules/mit_1142.RULE index d7e6cd04823..904550b032c 100644 --- a/src/licensedcode/data/rules/mit_1142.RULE +++ b/src/licensedcode/data/rules/mit_1142.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://httpunit.sourceforge.net/doc/license.html +--- + MIT License diff --git a/src/licensedcode/data/rules/mit_1142.yml b/src/licensedcode/data/rules/mit_1142.yml deleted file mode 100644 index bfb195fcb60..00000000000 --- a/src/licensedcode/data/rules/mit_1142.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://httpunit.sourceforge.net/doc/license.html diff --git a/src/licensedcode/data/rules/mit_1143.RULE b/src/licensedcode/data/rules/mit_1143.RULE index 9cab25b3f57..a8c97b489af 100644 --- a/src/licensedcode/data/rules/mit_1143.RULE +++ b/src/licensedcode/data/rules/mit_1143.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1143.yml b/src/licensedcode/data/rules/mit_1143.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_1143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1144.RULE b/src/licensedcode/data/rules/mit_1144.RULE index 0820a5ee812..19efaf5bc39 100644 --- a/src/licensedcode/data/rules/mit_1144.RULE +++ b/src/licensedcode/data/rules/mit_1144.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +ignorable_urls: + - http://httpunit.sourceforge.net/doc/license.html +--- + http://httpunit.sourceforge.net/doc/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1144.yml b/src/licensedcode/data/rules/mit_1144.yml deleted file mode 100644 index 05a8d07188f..00000000000 --- a/src/licensedcode/data/rules/mit_1144.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -ignorable_urls: - - http://httpunit.sourceforge.net/doc/license.html diff --git a/src/licensedcode/data/rules/mit_1145.RULE b/src/licensedcode/data/rules/mit_1145.RULE index 8d84952ff36..80d12d91552 100644 --- a/src/licensedcode/data/rules/mit_1145.RULE +++ b/src/licensedcode/data/rules/mit_1145.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Distributed under the OSI-approved MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1145.yml b/src/licensedcode/data/rules/mit_1145.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1146.RULE b/src/licensedcode/data/rules/mit_1146.RULE index 96c2c3f3553..c51f08e8804 100644 --- a/src/licensedcode/data/rules/mit_1146.RULE +++ b/src/licensedcode/data/rules/mit_1146.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + MIT Licenced, see LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1146.yml b/src/licensedcode/data/rules/mit_1146.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1146.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1147.RULE b/src/licensedcode/data/rules/mit_1147.RULE index 080a2f21ad1..c2c4ccdd69a 100644 --- a/src/licensedcode/data/rules/mit_1147.RULE +++ b/src/licensedcode/data/rules/mit_1147.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + mths.be/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1147.yml b/src/licensedcode/data/rules/mit_1147.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_1147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1148.RULE b/src/licensedcode/data/rules/mit_1148.RULE index d1c784bc824..1410558c180 100644 --- a/src/licensedcode/data/rules/mit_1148.RULE +++ b/src/licensedcode/data/rules/mit_1148.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mths.be/mit +--- + Available under MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_116.yml b/src/licensedcode/data/rules/mit_116.yml deleted file mode 100644 index 2a28ef88b53..00000000000 --- a/src/licensedcode/data/rules/mit_116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://lodash.com/license diff --git a/src/licensedcode/data/rules/mit_1160.RULE b/src/licensedcode/data/rules/mit_1160.RULE index 7fb6e7e5e47..80cdb1d6a5d 100644 --- a/src/licensedcode/data/rules/mit_1160.RULE +++ b/src/licensedcode/data/rules/mit_1160.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + {{license name: MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1160.yml b/src/licensedcode/data/rules/mit_1160.yml deleted file mode 100644 index 7e6781155f0..00000000000 --- a/src/licensedcode/data/rules/mit_1160.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_tag: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1161.RULE b/src/licensedcode/data/rules/mit_1161.RULE index 225f534bb09..5e878e494a4 100644 --- a/src/licensedcode/data/rules/mit_1161.RULE +++ b/src/licensedcode/data/rules/mit_1161.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +is_continuous: yes +relevance: 100 +--- + {{licenses name: MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1161.yml b/src/licensedcode/data/rules/mit_1161.yml deleted file mode 100644 index 7e6781155f0..00000000000 --- a/src/licensedcode/data/rules/mit_1161.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_tag: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1162.RULE b/src/licensedcode/data/rules/mit_1162.RULE index d8a74f7eb99..665337fcc58 100644 --- a/src/licensedcode/data/rules/mit_1162.RULE +++ b/src/licensedcode/data/rules/mit_1162.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license +--- + license": { "name": "MIT", "url": "http://opensource.org/licenses/mit-license" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1162.yml b/src/licensedcode/data/rules/mit_1162.yml deleted file mode 100644 index c062835ec3e..00000000000 --- a/src/licensedcode/data/rules/mit_1162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_1163.RULE b/src/licensedcode/data/rules/mit_1163.RULE index 0df56a1b50b..a36880fd19a 100644 --- a/src/licensedcode/data/rules/mit_1163.RULE +++ b/src/licensedcode/data/rules/mit_1163.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MIT +--- + https://licenses.nuget.org/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1163.yml b/src/licensedcode/data/rules/mit_1163.yml deleted file mode 100644 index 1c5c354b575..00000000000 --- a/src/licensedcode/data/rules/mit_1163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MIT diff --git a/src/licensedcode/data/rules/mit_1164.RULE b/src/licensedcode/data/rules/mit_1164.RULE index 9720a5fe4f2..8f7a70f808e 100644 --- a/src/licensedcode/data/rules/mit_1164.RULE +++ b/src/licensedcode/data/rules/mit_1164.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1164.yml b/src/licensedcode/data/rules/mit_1164.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_1164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1165.RULE b/src/licensedcode/data/rules/mit_1165.RULE index f3e554658f9..ade2cf49c91 100644 --- a/src/licensedcode/data/rules/mit_1165.RULE +++ b/src/licensedcode/data/rules/mit_1165.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + licenses: mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1165.yml b/src/licensedcode/data/rules/mit_1165.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_1165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1166.RULE b/src/licensedcode/data/rules/mit_1166.RULE index 2606d100f47..1f19681daee 100644 --- a/src/licensedcode/data/rules/mit_1166.RULE +++ b/src/licensedcode/data/rules/mit_1166.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License The project is licensed under the MIT license. SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1166.yml b/src/licensedcode/data/rules/mit_1166.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1167.RULE b/src/licensedcode/data/rules/mit_1167.RULE index f75f100de8a..34bcfa66aff 100644 --- a/src/licensedcode/data/rules/mit_1167.RULE +++ b/src/licensedcode/data/rules/mit_1167.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The source code in this repository is licensed under the {{MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1167.yml b/src/licensedcode/data/rules/mit_1167.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1168.RULE b/src/licensedcode/data/rules/mit_1168.RULE index 7790871e08f..661006c05ff 100644 --- a/src/licensedcode/data/rules/mit_1168.RULE +++ b/src/licensedcode/data/rules/mit_1168.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Everything open source and released under {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1168.yml b/src/licensedcode/data/rules/mit_1168.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1169.RULE b/src/licensedcode/data/rules/mit_1169.RULE index cc4d9572d11..eb0cef5a7ca 100644 --- a/src/licensedcode/data/rules/mit_1169.RULE +++ b/src/licensedcode/data/rules/mit_1169.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + released as free and open-source software under the {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1169.yml b/src/licensedcode/data/rules/mit_1169.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_117.RULE b/src/licensedcode/data/rules/mit_117.RULE index d1ea66e9423..3be93d0e451 100644 --- a/src/licensedcode/data/rules/mit_117.RULE +++ b/src/licensedcode/data/rules/mit_117.RULE @@ -1 +1,7 @@ -Available under MIT license \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Available under MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_117.yml b/src/licensedcode/data/rules/mit_117.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1170.RULE b/src/licensedcode/data/rules/mit_1170.RULE index e6f0c0f82ed..c1c7484d956 100644 --- a/src/licensedcode/data/rules/mit_1170.RULE +++ b/src/licensedcode/data/rules/mit_1170.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + open-source software project released under the {{MIT/X11 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1170.yml b/src/licensedcode/data/rules/mit_1170.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1171.RULE b/src/licensedcode/data/rules/mit_1171.RULE index 9f2c92b5f6b..3cf3688748f 100644 --- a/src/licensedcode/data/rules/mit_1171.RULE +++ b/src/licensedcode/data/rules/mit_1171.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Released by me, the author, under the {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1171.yml b/src/licensedcode/data/rules/mit_1171.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1172.RULE b/src/licensedcode/data/rules/mit_1172.RULE index 6d99d3e3189..733710cc6ed 100644 --- a/src/licensedcode/data/rules/mit_1172.RULE +++ b/src/licensedcode/data/rules/mit_1172.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This port is released under the {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1172.yml b/src/licensedcode/data/rules/mit_1172.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1173.RULE b/src/licensedcode/data/rules/mit_1173.RULE index cbbada6aa7f..5bf336b453b 100644 --- a/src/licensedcode/data/rules/mit_1173.RULE +++ b/src/licensedcode/data/rules/mit_1173.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It's released under the {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1173.yml b/src/licensedcode/data/rules/mit_1173.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1174.RULE b/src/licensedcode/data/rules/mit_1174.RULE index 1f0e71d22eb..9b8d77e788b 100644 --- a/src/licensedcode/data/rules/mit_1174.RULE +++ b/src/licensedcode/data/rules/mit_1174.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +--- + released under an X/MIT style Open Source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1174.yml b/src/licensedcode/data/rules/mit_1174.yml deleted file mode 100644 index 9efad39514d..00000000000 --- a/src/licensedcode/data/rules/mit_1174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_1175.RULE b/src/licensedcode/data/rules/mit_1175.RULE index d389292f5bf..7d16680f3bf 100644 --- a/src/licensedcode/data/rules/mit_1175.RULE +++ b/src/licensedcode/data/rules/mit_1175.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + system released under the {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1175.yml b/src/licensedcode/data/rules/mit_1175.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1176.RULE b/src/licensedcode/data/rules/mit_1176.RULE index 1c17a7a251a..a3c18906338 100644 --- a/src/licensedcode/data/rules/mit_1176.RULE +++ b/src/licensedcode/data/rules/mit_1176.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + library released under the {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1176.yml b/src/licensedcode/data/rules/mit_1176.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1177.RULE b/src/licensedcode/data/rules/mit_1177.RULE index 6ceb569cd93..02752cec83e 100644 --- a/src/licensedcode/data/rules/mit_1177.RULE +++ b/src/licensedcode/data/rules/mit_1177.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + open source software released under the {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1177.yml b/src/licensedcode/data/rules/mit_1177.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1178.RULE b/src/licensedcode/data/rules/mit_1178.RULE index fa7ed982180..795d8e579d0 100644 --- a/src/licensedcode/data/rules/mit_1178.RULE +++ b/src/licensedcode/data/rules/mit_1178.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Open source and released under the {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1178.yml b/src/licensedcode/data/rules/mit_1178.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1179.RULE b/src/licensedcode/data/rules/mit_1179.RULE index 2717d8ddae2..c7ea3450f8c 100644 --- a/src/licensedcode/data/rules/mit_1179.RULE +++ b/src/licensedcode/data/rules/mit_1179.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is open source software released under the terms of the {{MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1179.yml b/src/licensedcode/data/rules/mit_1179.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_118.RULE b/src/licensedcode/data/rules/mit_118.RULE index b9c5533fd7f..cdcdc92be62 100644 --- a/src/licensedcode/data/rules/mit_118.RULE +++ b/src/licensedcode/data/rules/mit_118.RULE @@ -1 +1,7 @@ -"MIT": The following licensing terms need to be respected: +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +"MIT": The following licensing terms need to be respected: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_118.yml b/src/licensedcode/data/rules/mit_118.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1180.RULE b/src/licensedcode/data/rules/mit_1180.RULE index 7dcee8ec1e8..027cc736d42 100644 --- a/src/licensedcode/data/rules/mit_1180.RULE +++ b/src/licensedcode/data/rules/mit_1180.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + released under the terms of the {{MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1180.yml b/src/licensedcode/data/rules/mit_1180.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1181.RULE b/src/licensedcode/data/rules/mit_1181.RULE index c1a108ba5af..1f96eb9191a 100644 --- a/src/licensedcode/data/rules/mit_1181.RULE +++ b/src/licensedcode/data/rules/mit_1181.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT +--- + {{MIT}} https://spdx.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1181.yml b/src/licensedcode/data/rules/mit_1181.yml deleted file mode 100644 index f2c329d827a..00000000000 --- a/src/licensedcode/data/rules/mit_1181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1182.RULE b/src/licensedcode/data/rules/mit_1182.RULE index a86d5c63df9..df2bde05485 100644 --- a/src/licensedcode/data/rules/mit_1182.RULE +++ b/src/licensedcode/data/rules/mit_1182.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1182.yml b/src/licensedcode/data/rules/mit_1182.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_1182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1183.RULE b/src/licensedcode/data/rules/mit_1183.RULE index e88ba569a18..7c8e68629bf 100644 --- a/src/licensedcode/data/rules/mit_1183.RULE +++ b/src/licensedcode/data/rules/mit_1183.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +referenced_filenames: + - doc/otp-base-license.txt +--- + Portions of the following files are licensed under the MIT License: Please see {{doc/otp-base-license.txt}} for the full terms of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1183.yml b/src/licensedcode/data/rules/mit_1183.yml deleted file mode 100644 index 5c251002e23..00000000000 --- a/src/licensedcode/data/rules/mit_1183.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -referenced_filenames: - - doc/otp-base-license.txt diff --git a/src/licensedcode/data/rules/mit_1184.RULE b/src/licensedcode/data/rules/mit_1184.RULE index 464d7a6b165..0e85edc9d66 100644 --- a/src/licensedcode/data/rules/mit_1184.RULE +++ b/src/licensedcode/data/rules/mit_1184.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Portions of the following files are licensed under the {{MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1184.yml b/src/licensedcode/data/rules/mit_1184.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1185.RULE b/src/licensedcode/data/rules/mit_1185.RULE index 0f01828f8c5..e982f6cd887 100644 --- a/src/licensedcode/data/rules/mit_1185.RULE +++ b/src/licensedcode/data/rules/mit_1185.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - doc/otp-base-license.txt +--- + Please see {{doc/otp-base-license.txt}} for the full terms of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1185.yml b/src/licensedcode/data/rules/mit_1185.yml deleted file mode 100644 index 566727111a4..00000000000 --- a/src/licensedcode/data/rules/mit_1185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - doc/otp-base-license.txt diff --git a/src/licensedcode/data/rules/mit_1186.RULE b/src/licensedcode/data/rules/mit_1186.RULE index 8aac162a619..caabf5df610 100644 --- a/src/licensedcode/data/rules/mit_1186.RULE +++ b/src/licensedcode/data/rules/mit_1186.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: seen in Python bottle +--- + License: MIT (see LICENSE for details) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1186.yml b/src/licensedcode/data/rules/mit_1186.yml deleted file mode 100644 index fc11776b02a..00000000000 --- a/src/licensedcode/data/rules/mit_1186.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: seen in Python bottle diff --git a/src/licensedcode/data/rules/mit_1187.RULE b/src/licensedcode/data/rules/mit_1187.RULE index 071969ebd25..62d84447d8b 100644 --- a/src/licensedcode/data/rules/mit_1187.RULE +++ b/src/licensedcode/data/rules/mit_1187.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: seen in Python bottle +--- + License: MIT (see LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1187.yml b/src/licensedcode/data/rules/mit_1187.yml deleted file mode 100644 index fc11776b02a..00000000000 --- a/src/licensedcode/data/rules/mit_1187.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: seen in Python bottle diff --git a/src/licensedcode/data/rules/mit_1188.RULE b/src/licensedcode/data/rules/mit_1188.RULE index bca2dd68e41..2c523b16fc4 100644 --- a/src/licensedcode/data/rules/mit_1188.RULE +++ b/src/licensedcode/data/rules/mit_1188.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The project is licensed under the {{MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1188.yml b/src/licensedcode/data/rules/mit_1188.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1189.RULE b/src/licensedcode/data/rules/mit_1189.RULE index d6b46f89fab..cb0c05adbde 100644 --- a/src/licensedcode/data/rules/mit_1189.RULE +++ b/src/licensedcode/data/rules/mit_1189.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is freely distributable under the terms of the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1189.yml b/src/licensedcode/data/rules/mit_1189.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_119.RULE b/src/licensedcode/data/rules/mit_119.RULE index febd9ec5cc1..d1dabad6c08 100644 --- a/src/licensedcode/data/rules/mit_119.RULE +++ b/src/licensedcode/data/rules/mit_119.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + | Permission is hereby granted, free of charge, to any person | obtaining a copy of this software and associated documentation files | (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/mit_119.yml b/src/licensedcode/data/rules/mit_119.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_119.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_1190.RULE b/src/licensedcode/data/rules/mit_1190.RULE index 022446f33a4..0bca87e31d8 100644 --- a/src/licensedcode/data/rules/mit_1190.RULE +++ b/src/licensedcode/data/rules/mit_1190.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + covered by their original {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1190.yml b/src/licensedcode/data/rules/mit_1190.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1191.RULE b/src/licensedcode/data/rules/mit_1191.RULE index 95cfefb99c5..1395d6f6651 100644 --- a/src/licensedcode/data/rules/mit_1191.RULE +++ b/src/licensedcode/data/rules/mit_1191.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://img.shields.io/badge/license-mit-blue.svg +--- + [License](http://img.shields.io/badge/license-mit-blue.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1191.yml b/src/licensedcode/data/rules/mit_1191.yml deleted file mode 100644 index 9925eec3014..00000000000 --- a/src/licensedcode/data/rules/mit_1191.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://img.shields.io/badge/license-mit-blue.svg diff --git a/src/licensedcode/data/rules/mit_1192.RULE b/src/licensedcode/data/rules/mit_1192.RULE index b05ac56589c..ca3c069020f 100644 --- a/src/licensedcode/data/rules/mit_1192.RULE +++ b/src/licensedcode/data/rules/mit_1192.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License [MIT License](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1192.yml b/src/licensedcode/data/rules/mit_1192.yml deleted file mode 100644 index ef5356012d6..00000000000 --- a/src/licensedcode/data/rules/mit_1192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1193.RULE b/src/licensedcode/data/rules/mit_1193.RULE index 27c1905ef58..26ddbb208f7 100644 --- a/src/licensedcode/data/rules/mit_1193.RULE +++ b/src/licensedcode/data/rules/mit_1193.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This code is distributed under the MIT Expat license, see the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1193.yml b/src/licensedcode/data/rules/mit_1193.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1194.RULE b/src/licensedcode/data/rules/mit_1194.RULE index cd7b2bea5db..94b0e290293 100644 --- a/src/licensedcode/data/rules/mit_1194.RULE +++ b/src/licensedcode/data/rules/mit_1194.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This code is distributed under the MIT Expat license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1194.yml b/src/licensedcode/data/rules/mit_1194.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1195.RULE b/src/licensedcode/data/rules/mit_1195.RULE index c7f738f9662..b80c312768c 100644 --- a/src/licensedcode/data/rules/mit_1195.RULE +++ b/src/licensedcode/data/rules/mit_1195.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License This project is MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1195.yml b/src/licensedcode/data/rules/mit_1195.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1196.RULE b/src/licensedcode/data/rules/mit_1196.RULE index 7933c8e55a9..6601dd5a264 100644 --- a/src/licensedcode/data/rules/mit_1196.RULE +++ b/src/licensedcode/data/rules/mit_1196.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + project is MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1196.yml b/src/licensedcode/data/rules/mit_1196.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1196.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1197.RULE b/src/licensedcode/data/rules/mit_1197.RULE index bb6e5cd3e2c..d1433756427 100644 --- a/src/licensedcode/data/rules/mit_1197.RULE +++ b/src/licensedcode/data/rules/mit_1197.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1197.yml b/src/licensedcode/data/rules/mit_1197.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1197.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1198.RULE b/src/licensedcode/data/rules/mit_1198.RULE index 7dbee97a172..91fc04da438 100644 --- a/src/licensedcode/data/rules/mit_1198.RULE +++ b/src/licensedcode/data/rules/mit_1198.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + code is MIT-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1198.yml b/src/licensedcode/data/rules/mit_1198.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1199.RULE b/src/licensedcode/data/rules/mit_1199.RULE index dcac399a2dd..795b79ab7b9 100644 --- a/src/licensedcode/data/rules/mit_1199.RULE +++ b/src/licensedcode/data/rules/mit_1199.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This code is MIT-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1199.yml b/src/licensedcode/data/rules/mit_1199.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_11_1.RULE b/src/licensedcode/data/rules/mit_11_1.RULE index 33fdb5daccb..b7f17e3e51c 100644 --- a/src/licensedcode/data/rules/mit_11_1.RULE +++ b/src/licensedcode/data/rules/mit_11_1.RULE @@ -1 +1,7 @@ -The MIT license is as follows: +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + +The MIT license is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_11_1.yml b/src/licensedcode/data/rules/mit_11_1.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_11_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_12.RULE b/src/licensedcode/data/rules/mit_12.RULE index 778315c40dd..8e6b09a49cc 100644 --- a/src/licensedcode/data/rules/mit_12.RULE +++ b/src/licensedcode/data/rules/mit_12.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licensed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_12.yml b/src/licensedcode/data/rules/mit_12.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_120.RULE b/src/licensedcode/data/rules/mit_120.RULE index 5f5323fd726..04d645b7ba2 100644 --- a/src/licensedcode/data/rules/mit_120.RULE +++ b/src/licensedcode/data/rules/mit_120.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit +--- + Licensed under the MIT License at: * http://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_120.yml b/src/licensedcode/data/rules/mit_120.yml deleted file mode 100644 index bd0bd1d6654..00000000000 --- a/src/licensedcode/data/rules/mit_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_1200.RULE b/src/licensedcode/data/rules/mit_1200.RULE index bd0e92348c4..177d34fb8cf 100644 --- a/src/licensedcode/data/rules/mit_1200.RULE +++ b/src/licensedcode/data/rules/mit_1200.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + program is MIT-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1200.yml b/src/licensedcode/data/rules/mit_1200.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1201.RULE b/src/licensedcode/data/rules/mit_1201.RULE index ed6dcf58c1f..a05e1845aee 100644 --- a/src/licensedcode/data/rules/mit_1201.RULE +++ b/src/licensedcode/data/rules/mit_1201.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This program is MIT-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1201.yml b/src/licensedcode/data/rules/mit_1201.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1202.RULE b/src/licensedcode/data/rules/mit_1202.RULE index dd05d82e22f..a50eac09fc8 100644 --- a/src/licensedcode/data/rules/mit_1202.RULE +++ b/src/licensedcode/data/rules/mit_1202.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This program is MIT-licensed, so you can use the header as-is with no restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1202.yml b/src/licensedcode/data/rules/mit_1202.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1203.RULE b/src/licensedcode/data/rules/mit_1203.RULE index d94b9462b2e..7b7e187eb49 100644 --- a/src/licensedcode/data/rules/mit_1203.RULE +++ b/src/licensedcode/data/rules/mit_1203.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This library is MIT licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1203.yml b/src/licensedcode/data/rules/mit_1203.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1204.RULE b/src/licensedcode/data/rules/mit_1204.RULE index df16cd5ccd2..c26321eb002 100644 --- a/src/licensedcode/data/rules/mit_1204.RULE +++ b/src/licensedcode/data/rules/mit_1204.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + library is MIT licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1204.yml b/src/licensedcode/data/rules/mit_1204.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1205.RULE b/src/licensedcode/data/rules/mit_1205.RULE index 5a33ed77a61..07c8d84c6a3 100644 --- a/src/licensedcode/data/rules/mit_1205.RULE +++ b/src/licensedcode/data/rules/mit_1205.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + This library is MIT licensed. See the LICENSE.md for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1205.yml b/src/licensedcode/data/rules/mit_1205.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_1205.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_1206.RULE b/src/licensedcode/data/rules/mit_1206.RULE index 0a3918f738c..02fe4539818 100644 --- a/src/licensedcode/data/rules/mit_1206.RULE +++ b/src/licensedcode/data/rules/mit_1206.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This Project is fully Open Source MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1206.yml b/src/licensedcode/data/rules/mit_1206.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1207.RULE b/src/licensedcode/data/rules/mit_1207.RULE index b022dfe4b39..4ebdf37cf7e 100644 --- a/src/licensedcode/data/rules/mit_1207.RULE +++ b/src/licensedcode/data/rules/mit_1207.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + License This Project is fully Open Source [MIT](https://opensource.org/licenses/MIT) licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1207.yml b/src/licensedcode/data/rules/mit_1207.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_1207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1208.RULE b/src/licensedcode/data/rules/mit_1208.RULE index cba454d3a4a..70fdc746319 100644 --- a/src/licensedcode/data/rules/mit_1208.RULE +++ b/src/licensedcode/data/rules/mit_1208.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + fully Open Source [MIT](https://opensource.org/licenses/MIT) licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1208.yml b/src/licensedcode/data/rules/mit_1208.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_1208.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1209.RULE b/src/licensedcode/data/rules/mit_1209.RULE index 160a8ca45a7..caea0f846a2 100644 --- a/src/licensedcode/data/rules/mit_1209.RULE +++ b/src/licensedcode/data/rules/mit_1209.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + This Project is fully Open Source [MIT](https://opensource.org/licenses/MIT) licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1209.yml b/src/licensedcode/data/rules/mit_1209.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_1209.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_121.RULE b/src/licensedcode/data/rules/mit_121.RULE index 558626c83b7..c5b6eadd085 100644 --- a/src/licensedcode/data/rules/mit_121.RULE +++ b/src/licensedcode/data/rules/mit_121.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + MIT License http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_121.yml b/src/licensedcode/data/rules/mit_121.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_121.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_1210.RULE b/src/licensedcode/data/rules/mit_1210.RULE index 9807aace8e1..95b08ab0600 100644 --- a/src/licensedcode/data/rules/mit_1210.RULE +++ b/src/licensedcode/data/rules/mit_1210.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + library distributed under the permissive MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1210.yml b/src/licensedcode/data/rules/mit_1210.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1211.RULE b/src/licensedcode/data/rules/mit_1211.RULE index 16cdfd6496c..0ef7c4caf1b 100644 --- a/src/licensedcode/data/rules/mit_1211.RULE +++ b/src/licensedcode/data/rules/mit_1211.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + distributed under the permissive MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1211.yml b/src/licensedcode/data/rules/mit_1211.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1212.RULE b/src/licensedcode/data/rules/mit_1212.RULE index de2a114aa91..5931342b046 100644 --- a/src/licensedcode/data/rules/mit_1212.RULE +++ b/src/licensedcode/data/rules/mit_1212.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under the permissive MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1212.yml b/src/licensedcode/data/rules/mit_1212.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1213.RULE b/src/licensedcode/data/rules/mit_1213.RULE index 3703992d002..4ac16396e57 100644 --- a/src/licensedcode/data/rules/mit_1213.RULE +++ b/src/licensedcode/data/rules/mit_1213.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + utilizes an MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1213.yml b/src/licensedcode/data/rules/mit_1213.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1214.RULE b/src/licensedcode/data/rules/mit_1214.RULE index c28ab787dac..3973223ede6 100644 --- a/src/licensedcode/data/rules/mit_1214.RULE +++ b/src/licensedcode/data/rules/mit_1214.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License This project source code is available under MIT license. See [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1214.yml b/src/licensedcode/data/rules/mit_1214.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1215.RULE b/src/licensedcode/data/rules/mit_1215.RULE index 38aacfd646a..0a004325808 100644 --- a/src/licensedcode/data/rules/mit_1215.RULE +++ b/src/licensedcode/data/rules/mit_1215.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project source code is available under MIT license. See [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1215.yml b/src/licensedcode/data/rules/mit_1215.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_1215.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_1216.RULE b/src/licensedcode/data/rules/mit_1216.RULE index 25a0f00b45a..7ec0d5a61c3 100644 --- a/src/licensedcode/data/rules/mit_1216.RULE +++ b/src/licensedcode/data/rules/mit_1216.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project source code is available under MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1216.yml b/src/licensedcode/data/rules/mit_1216.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1217.RULE b/src/licensedcode/data/rules/mit_1217.RULE index 783a5074849..7c8e8e59b7b 100644 --- a/src/licensedcode/data/rules/mit_1217.RULE +++ b/src/licensedcode/data/rules/mit_1217.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed exclusively under MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1217.yml b/src/licensedcode/data/rules/mit_1217.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1218.RULE b/src/licensedcode/data/rules/mit_1218.RULE index b8abe1d95cc..a9f337ee284 100644 --- a/src/licensedcode/data/rules/mit_1218.RULE +++ b/src/licensedcode/data/rules/mit_1218.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Unless otherwise specified, each is licensed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1218.yml b/src/licensedcode/data/rules/mit_1218.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1219.RULE b/src/licensedcode/data/rules/mit_1219.RULE index d933b6ca653..a76de59247c 100644 --- a/src/licensedcode/data/rules/mit_1219.RULE +++ b/src/licensedcode/data/rules/mit_1219.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + each is licensed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1219.yml b/src/licensedcode/data/rules/mit_1219.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_122.RULE b/src/licensedcode/data/rules/mit_122.RULE index d0969970c79..3d4f57ec7c8 100644 --- a/src/licensedcode/data/rules/mit_122.RULE +++ b/src/licensedcode/data/rules/mit_122.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://underscorejs.org/LICENSE +--- + http://underscorejs.org/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_122.yml b/src/licensedcode/data/rules/mit_122.yml deleted file mode 100644 index baed3828626..00000000000 --- a/src/licensedcode/data/rules/mit_122.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://underscorejs.org/LICENSE diff --git a/src/licensedcode/data/rules/mit_1220.RULE b/src/licensedcode/data/rules/mit_1220.RULE index 0765e09edd0..27d6238ff47 100644 --- a/src/licensedcode/data/rules/mit_1220.RULE +++ b/src/licensedcode/data/rules/mit_1220.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Conversion scripts are covered by MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1220.yml b/src/licensedcode/data/rules/mit_1220.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_1220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_1221.RULE b/src/licensedcode/data/rules/mit_1221.RULE index 1477a00b1c1..c82f1c534bf 100644 --- a/src/licensedcode/data/rules/mit_1221.RULE +++ b/src/licensedcode/data/rules/mit_1221.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License - Code - [MIT](LICENSE.txt) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1221.yml b/src/licensedcode/data/rules/mit_1221.yml deleted file mode 100644 index 705a1c6df0f..00000000000 --- a/src/licensedcode/data/rules/mit_1221.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_1222.RULE b/src/licensedcode/data/rules/mit_1222.RULE index adef90cc138..2610d178450 100644 --- a/src/licensedcode/data/rules/mit_1222.RULE +++ b/src/licensedcode/data/rules/mit_1222.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +notes: there is a small, non-material difference in the disclaimer +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_1222.yml b/src/licensedcode/data/rules/mit_1222.yml deleted file mode 100644 index 1e598d7fdfe..00000000000 --- a/src/licensedcode/data/rules/mit_1222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -notes: there is a small, non-material difference in the disclaimer diff --git a/src/licensedcode/data/rules/mit_1223.RULE b/src/licensedcode/data/rules/mit_1223.RULE index de3b48fc2fb..5c67568be37 100644 --- a/src/licensedcode/data/rules/mit_1223.RULE +++ b/src/licensedcode/data/rules/mit_1223.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Distributed under the terms of an {{MIT-style license:}} The {{MIT License}} diff --git a/src/licensedcode/data/rules/mit_1223.yml b/src/licensedcode/data/rules/mit_1223.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_1223.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_123.RULE b/src/licensedcode/data/rules/mit_123.RULE index 1c72a8f5263..c97a271c9b0 100644 --- a/src/licensedcode/data/rules/mit_123.RULE +++ b/src/licensedcode/data/rules/mit_123.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://underscorejs.org/LICENSE +--- + https://underscorejs.org/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_123.yml b/src/licensedcode/data/rules/mit_123.yml deleted file mode 100644 index 22fb5e813eb..00000000000 --- a/src/licensedcode/data/rules/mit_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://underscorejs.org/LICENSE diff --git a/src/licensedcode/data/rules/mit_124.RULE b/src/licensedcode/data/rules/mit_124.RULE index 632e5aa3cf1..4ba7a8d610a 100644 --- a/src/licensedcode/data/rules/mit_124.RULE +++ b/src/licensedcode/data/rules/mit_124.RULE @@ -1 +1,9 @@ -Distributed under an MIT license: http://codemirror.net/LICENSE +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://codemirror.net/LICENSE +--- + +Distributed under an MIT license: http://codemirror.net/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_124.yml b/src/licensedcode/data/rules/mit_124.yml deleted file mode 100644 index b74b82143d1..00000000000 --- a/src/licensedcode/data/rules/mit_124.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://codemirror.net/LICENSE diff --git a/src/licensedcode/data/rules/mit_125.RULE b/src/licensedcode/data/rules/mit_125.RULE index 90b6597a78f..71a7d18da62 100644 --- a/src/licensedcode/data/rules/mit_125.RULE +++ b/src/licensedcode/data/rules/mit_125.RULE @@ -1 +1,7 @@ -Distributed under an MIT license: +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Distributed under an MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_125.yml b/src/licensedcode/data/rules/mit_125.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_126.RULE b/src/licensedcode/data/rules/mit_126.RULE index e7470761df6..f16f7240fdb 100644 --- a/src/licensedcode/data/rules/mit_126.RULE +++ b/src/licensedcode/data/rules/mit_126.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + MIT Licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_126.yml b/src/licensedcode/data/rules/mit_126.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_127.RULE b/src/licensedcode/data/rules/mit_127.RULE index 2d2423c3548..2c88599f5e9 100644 --- a/src/licensedcode/data/rules/mit_127.RULE +++ b/src/licensedcode/data/rules/mit_127.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + may be freely distributed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_127.yml b/src/licensedcode/data/rules/mit_127.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_127_1.RULE b/src/licensedcode/data/rules/mit_127_1.RULE index 38c632a01f9..c8d3d2b2858 100644 --- a/src/licensedcode/data/rules/mit_127_1.RULE +++ b/src/licensedcode/data/rules/mit_127_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Plugin may be freely distributed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_127_1.yml b/src/licensedcode/data/rules/mit_127_1.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_127_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_128.RULE b/src/licensedcode/data/rules/mit_128.RULE index 22889b34eb0..8aa45f36a5e 100644 --- a/src/licensedcode/data/rules/mit_128.RULE +++ b/src/licensedcode/data/rules/mit_128.RULE @@ -1 +1,9 @@ -Licensed under MIT - see LICENSE.MIT file for details +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.MIT +--- + +Licensed under MIT - see LICENSE.MIT file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_128.yml b/src/licensedcode/data/rules/mit_128.yml deleted file mode 100644 index b6be880c091..00000000000 --- a/src/licensedcode/data/rules/mit_128.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.MIT diff --git a/src/licensedcode/data/rules/mit_129.RULE b/src/licensedcode/data/rules/mit_129.RULE index b5ea0cc2c83..3972dbb554b 100644 --- a/src/licensedcode/data/rules/mit_129.RULE +++ b/src/licensedcode/data/rules/mit_129.RULE @@ -1 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://angular.io/license +--- + Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_129.yml b/src/licensedcode/data/rules/mit_129.yml deleted file mode 100644 index 95b84c569d9..00000000000 --- a/src/licensedcode/data/rules/mit_129.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://angular.io/license diff --git a/src/licensedcode/data/rules/mit_13.RULE b/src/licensedcode/data/rules/mit_13.RULE index a09fcefc393..44f138fdebd 100644 --- a/src/licensedcode/data/rules/mit_13.RULE +++ b/src/licensedcode/data/rules/mit_13.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/MIT +--- + http://www.opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_13.yml b/src/licensedcode/data/rules/mit_13.yml deleted file mode 100644 index ddb3b59477b..00000000000 --- a/src/licensedcode/data/rules/mit_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_130.RULE b/src/licensedcode/data/rules/mit_130.RULE index cb38ea222ec..c92c8262f61 100644 --- a/src/licensedcode/data/rules/mit_130.RULE +++ b/src/licensedcode/data/rules/mit_130.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_130.yml b/src/licensedcode/data/rules/mit_130.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_130.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_131.RULE b/src/licensedcode/data/rules/mit_131.RULE index 71ca2b3663a..87a054394a9 100644 --- a/src/licensedcode/data/rules/mit_131.RULE +++ b/src/licensedcode/data/rules/mit_131.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Use of this source code is governed by an MIT-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_131.yml b/src/licensedcode/data/rules/mit_131.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_132.RULE b/src/licensedcode/data/rules/mit_132.RULE index 5f6c3faade2..efa51afd888 100644 --- a/src/licensedcode/data/rules/mit_132.RULE +++ b/src/licensedcode/data/rules/mit_132.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://angular.io/license +--- + https://angular.io/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_132.yml b/src/licensedcode/data/rules/mit_132.yml deleted file mode 100644 index e93ef06e068..00000000000 --- a/src/licensedcode/data/rules/mit_132.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://angular.io/license diff --git a/src/licensedcode/data/rules/mit_133.RULE b/src/licensedcode/data/rules/mit_133.RULE index b0ec62e6f16..5e4ceaa6614 100644 --- a/src/licensedcode/data/rules/mit_133.RULE +++ b/src/licensedcode/data/rules/mit_133.RULE @@ -1 +1,9 @@ -https://opensource.org/licenses/MIT MIT +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + +https://opensource.org/licenses/MIT MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_133.yml b/src/licensedcode/data/rules/mit_133.yml deleted file mode 100644 index 4b88a913a72..00000000000 --- a/src/licensedcode/data/rules/mit_133.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_134.RULE b/src/licensedcode/data/rules/mit_134.RULE index f8aeb6afdb0..d7b97003d4d 100644 --- a/src/licensedcode/data/rules/mit_134.RULE +++ b/src/licensedcode/data/rules/mit_134.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + #### License -Released under [MIT] LICENSE +Released under [MIT] LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_134.yml b/src/licensedcode/data/rules/mit_134.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_135.RULE b/src/licensedcode/data/rules/mit_135.RULE index b36a0bb8143..69d09a3a687 100644 --- a/src/licensedcode/data/rules/mit_135.RULE +++ b/src/licensedcode/data/rules/mit_135.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + [MIT]: mit-license.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_135.yml b/src/licensedcode/data/rules/mit_135.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_136.RULE b/src/licensedcode/data/rules/mit_136.RULE index 4adc64c8243..1ef86b38832 100644 --- a/src/licensedcode/data/rules/mit_136.RULE +++ b/src/licensedcode/data/rules/mit_136.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + is released under the terms of the MIT license. See [COPYING](COPYING) for more -information or see https://opensource.org/licenses/MIT. +information or see https://opensource.org/licenses/MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_136.yml b/src/licensedcode/data/rules/mit_136.yml deleted file mode 100644 index 923139d266f..00000000000 --- a/src/licensedcode/data/rules/mit_136.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_137.RULE b/src/licensedcode/data/rules/mit_137.RULE index 77d0ac7702d..b3f1eb3e78e 100644 --- a/src/licensedcode/data/rules/mit_137.RULE +++ b/src/licensedcode/data/rules/mit_137.RULE @@ -1 +1,7 @@ -is released under the terms of the MIT license. \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +is released under the terms of the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_137.yml b/src/licensedcode/data/rules/mit_137.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_138.RULE b/src/licensedcode/data/rules/mit_138.RULE index 00e72f9f89f..1a9bb660ab9 100644 --- a/src/licensedcode/data/rules/mit_138.RULE +++ b/src/licensedcode/data/rules/mit_138.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + License -[The MIT License](LICENSE). +[The MIT License](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_138.yml b/src/licensedcode/data/rules/mit_138.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_139.RULE b/src/licensedcode/data/rules/mit_139.RULE index dc46f6c1401..9866004ea92 100644 --- a/src/licensedcode/data/rules/mit_139.RULE +++ b/src/licensedcode/data/rules/mit_139.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + ## License -This library is under the [MIT License](http://opensource.org/licenses/MIT) +This library is under the [MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_139.yml b/src/licensedcode/data/rules/mit_139.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_14.RULE b/src/licensedcode/data/rules/mit_14.RULE index becb6be5b96..bdc21ac2e2b 100644 --- a/src/licensedcode/data/rules/mit_14.RULE +++ b/src/licensedcode/data/rules/mit_14.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_14.yml b/src/licensedcode/data/rules/mit_14.yml deleted file mode 100644 index ab784e797bd..00000000000 --- a/src/licensedcode/data/rules/mit_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_140.RULE b/src/licensedcode/data/rules/mit_140.RULE index 9b80f4a3468..315acb183e5 100644 --- a/src/licensedcode/data/rules/mit_140.RULE +++ b/src/licensedcode/data/rules/mit_140.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + mit-license.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_140.yml b/src/licensedcode/data/rules/mit_140.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_141.RULE b/src/licensedcode/data/rules/mit_141.RULE index d2859ce2a53..4adcf007d17 100644 --- a/src/licensedcode/data/rules/mit_141.RULE +++ b/src/licensedcode/data/rules/mit_141.RULE @@ -1 +1,7 @@ -This library is under the [MIT License] +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +This library is under the [MIT License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_141.yml b/src/licensedcode/data/rules/mit_141.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_142.RULE b/src/licensedcode/data/rules/mit_142.RULE index 64dfa4cb7cb..522851684f7 100644 --- a/src/licensedcode/data/rules/mit_142.RULE +++ b/src/licensedcode/data/rules/mit_142.RULE @@ -1 +1,9 @@ -This library is under the [MIT License](http://opensource.org/licenses/MIT) +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + +This library is under the [MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_142.yml b/src/licensedcode/data/rules/mit_142.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_142.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_143.RULE b/src/licensedcode/data/rules/mit_143.RULE index 09d85ae932d..2ea354c4c95 100644 --- a/src/licensedcode/data/rules/mit_143.RULE +++ b/src/licensedcode/data/rules/mit_143.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + # License -The MIT License (MIT) +The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_143.yml b/src/licensedcode/data/rules/mit_143.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_144.RULE b/src/licensedcode/data/rules/mit_144.RULE index c6900658443..940aeaef1e8 100644 --- a/src/licensedcode/data/rules/mit_144.RULE +++ b/src/licensedcode/data/rules/mit_144.RULE @@ -1 +1,7 @@ -MIT License (MIT) +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + +MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_144.yml b/src/licensedcode/data/rules/mit_144.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_145.RULE b/src/licensedcode/data/rules/mit_145.RULE index 81287627043..d90400a7891 100644 --- a/src/licensedcode/data/rules/mit_145.RULE +++ b/src/licensedcode/data/rules/mit_145.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Code released under the [MIT License]( \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_145.yml b/src/licensedcode/data/rules/mit_145.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_146.RULE b/src/licensedcode/data/rules/mit_146.RULE index 8afeb7bb69b..ffeac2ba107 100644 --- a/src/licensedcode/data/rules/mit_146.RULE +++ b/src/licensedcode/data/rules/mit_146.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + ## License This code is made available under the same license as Bootstrap. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_146.yml b/src/licensedcode/data/rules/mit_146.yml deleted file mode 100644 index 820a11b4023..00000000000 --- a/src/licensedcode/data/rules/mit_146.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_147.RULE b/src/licensedcode/data/rules/mit_147.RULE index bd468d0ddbd..74ef57374e7 100644 --- a/src/licensedcode/data/rules/mit_147.RULE +++ b/src/licensedcode/data/rules/mit_147.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + This code is made available under the same license as Bootstrap. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_147.yml b/src/licensedcode/data/rules/mit_147.yml deleted file mode 100644 index 820a11b4023..00000000000 --- a/src/licensedcode/data/rules/mit_147.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_148.RULE b/src/licensedcode/data/rules/mit_148.RULE index 6e532e9d402..6083abc60de 100644 --- a/src/licensedcode/data/rules/mit_148.RULE +++ b/src/licensedcode/data/rules/mit_148.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + It is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_148.yml b/src/licensedcode/data/rules/mit_148.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_148.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_149.RULE b/src/licensedcode/data/rules/mit_149.RULE index 5ec57e6b8ed..3578de3911a 100644 --- a/src/licensedcode/data/rules/mit_149.RULE +++ b/src/licensedcode/data/rules/mit_149.RULE @@ -1,6 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + It is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php). -- -The MIT License (MIT) - +The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_149.yml b/src/licensedcode/data/rules/mit_149.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_149.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_15.RULE b/src/licensedcode/data/rules/mit_15.RULE index 68fc879dd50..74b7e8cc36b 100644 --- a/src/licensedcode/data/rules/mit_15.RULE +++ b/src/licensedcode/data/rules/mit_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +notes: PuTTY commentaries +--- + In particular, anybody (even companies) can use PuTTY without restriction (even for commercial purposes) and owe nothing to me or anybody else. Also, apart from having to maintain the copyright notice and the licence text in derivative products, anybody (even companies) can adapt the PuTTY source code into their own programs and products (even commercial products) and owe nothing to me or anybody else. And, of course, there is no warranty and if PuTTY causes you damage you're on your own, so don't use it if you're unhappy with that. -In particular, note that the MIT licence is compatible with the GNU GPL. So if you want to incorporate PuTTY or pieces of PuTTY into a GPL program, there's no problem with that. \ No newline at end of file +In particular, note that the MIT licence is compatible with the GNU GPL. So if you want to incorporate PuTTY or pieces of PuTTY into a GPL program, there's no problem with that. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_15.yml b/src/licensedcode/data/rules/mit_15.yml deleted file mode 100644 index fca08394926..00000000000 --- a/src/licensedcode/data/rules/mit_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -notes: PuTTY commentaries diff --git a/src/licensedcode/data/rules/mit_150.RULE b/src/licensedcode/data/rules/mit_150.RULE index 9258b58d008..d434660a63d 100644 --- a/src/licensedcode/data/rules/mit_150.RULE +++ b/src/licensedcode/data/rules/mit_150.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + ## License This code is made available under the same license as Bootstrap. @@ -5,6 +13,4 @@ This code is made available under the same license as Bootstrap. -- -The MIT License (MIT) - - +The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_150.yml b/src/licensedcode/data/rules/mit_150.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_150.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_151.RULE b/src/licensedcode/data/rules/mit_151.RULE index 499d83a590f..000b597e968 100644 --- a/src/licensedcode/data/rules/mit_151.RULE +++ b/src/licensedcode/data/rules/mit_151.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + ## License -[MIT License](LICENSE.md) +[MIT License](LICENSE.md) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_151.yml b/src/licensedcode/data/rules/mit_151.yml deleted file mode 100644 index fe93be00f76..00000000000 --- a/src/licensedcode/data/rules/mit_151.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_152.RULE b/src/licensedcode/data/rules/mit_152.RULE index 4be21423dfe..703e3e6d678 100644 --- a/src/licensedcode/data/rules/mit_152.RULE +++ b/src/licensedcode/data/rules/mit_152.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is licensed under the [The MIT License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_152.yml b/src/licensedcode/data/rules/mit_152.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_153.RULE b/src/licensedcode/data/rules/mit_153.RULE index 4552da32310..5ede67c3cf5 100644 --- a/src/licensedcode/data/rules/mit_153.RULE +++ b/src/licensedcode/data/rules/mit_153.RULE @@ -1 +1,9 @@ -License: [`mit`](http://choosealicense.com/licenses/mit/) +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/mit +--- + +License: [`mit`](http://choosealicense.com/licenses/mit/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_153.yml b/src/licensedcode/data/rules/mit_153.yml deleted file mode 100644 index d41264de124..00000000000 --- a/src/licensedcode/data/rules/mit_153.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/mit diff --git a/src/licensedcode/data/rules/mit_154.RULE b/src/licensedcode/data/rules/mit_154.RULE index 60b5de553a1..bc052839d23 100644 --- a/src/licensedcode/data/rules/mit_154.RULE +++ b/src/licensedcode/data/rules/mit_154.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + License -MIT License (MIT) +MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_154.yml b/src/licensedcode/data/rules/mit_154.yml deleted file mode 100644 index 6431d991b6d..00000000000 --- a/src/licensedcode/data/rules/mit_154.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_155.RULE b/src/licensedcode/data/rules/mit_155.RULE index f04a13cd58b..b6988aa25c9 100644 --- a/src/licensedcode/data/rules/mit_155.RULE +++ b/src/licensedcode/data/rules/mit_155.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + is released under the [MIT License](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_155.yml b/src/licensedcode/data/rules/mit_155.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_156.RULE b/src/licensedcode/data/rules/mit_156.RULE index c622460e573..7b820b23a52 100644 --- a/src/licensedcode/data/rules/mit_156.RULE +++ b/src/licensedcode/data/rules/mit_156.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Code licensed under the [MIT License]( \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_156.yml b/src/licensedcode/data/rules/mit_156.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_157.RULE b/src/licensedcode/data/rules/mit_157.RULE index 4e480d9d5cb..e8ef2385bc4 100644 --- a/src/licensedcode/data/rules/mit_157.RULE +++ b/src/licensedcode/data/rules/mit_157.RULE @@ -1 +1,7 @@ -is released and distributed under the terms and conditions of the [MIT license] \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +is released and distributed under the terms and conditions of the [MIT license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_157.yml b/src/licensedcode/data/rules/mit_157.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_158.RULE b/src/licensedcode/data/rules/mit_158.RULE index c65c9430f15..639fed49b8d 100644 --- a/src/licensedcode/data/rules/mit_158.RULE +++ b/src/licensedcode/data/rules/mit_158.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + you agree that your contributions will be licensed under its MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_158.yml b/src/licensedcode/data/rules/mit_158.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_159.RULE b/src/licensedcode/data/rules/mit_159.RULE index 0ea2b232917..1abe5aa960a 100644 --- a/src/licensedcode/data/rules/mit_159.RULE +++ b/src/licensedcode/data/rules/mit_159.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + is available under the [MIT license](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_159.yml b/src/licensedcode/data/rules/mit_159.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_159.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_15_1.RULE b/src/licensedcode/data/rules/mit_15_1.RULE index 0b3f6937d0f..cb436846d8f 100644 --- a/src/licensedcode/data/rules/mit_15_1.RULE +++ b/src/licensedcode/data/rules/mit_15_1.RULE @@ -1,6 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +notes: foudn in PuTTY +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SIMON TATHAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - + THE SOFTWARE 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 SIMON TATHAM 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/mit_15_1.yml b/src/licensedcode/data/rules/mit_15_1.yml deleted file mode 100644 index 776965a2841..00000000000 --- a/src/licensedcode/data/rules/mit_15_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -notes: foudn in PuTTY diff --git a/src/licensedcode/data/rules/mit_16.RULE b/src/licensedcode/data/rules/mit_16.RULE index fc41afe2741..5bb3204a82d 100644 --- a/src/licensedcode/data/rules/mit_16.RULE +++ b/src/licensedcode/data/rules/mit_16.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Released under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_16.yml b/src/licensedcode/data/rules/mit_16.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_160.RULE b/src/licensedcode/data/rules/mit_160.RULE index 268dfa0dab9..2da9b6eb7d4 100644 --- a/src/licensedcode/data/rules/mit_160.RULE +++ b/src/licensedcode/data/rules/mit_160.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + ## License is licensed under the MIT license. (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_160.yml b/src/licensedcode/data/rules/mit_160.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_160.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_161.RULE b/src/licensedcode/data/rules/mit_161.RULE index 347f0cef418..3e1e2e12712 100644 --- a/src/licensedcode/data/rules/mit_161.RULE +++ b/src/licensedcode/data/rules/mit_161.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + #### License -This repository has been released under the [MIT License](LICENSE) +This repository has been released under the [MIT License](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_161.yml b/src/licensedcode/data/rules/mit_161.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_162.RULE b/src/licensedcode/data/rules/mit_162.RULE index 63ab7ad964b..3daa899f8be 100644 --- a/src/licensedcode/data/rules/mit_162.RULE +++ b/src/licensedcode/data/rules/mit_162.RULE @@ -1 +1,9 @@ -Available for use under the [MIT License](http://en.wikipedia.org/wiki/MIT_License) +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + +Available for use under the [MIT License](http://en.wikipedia.org/wiki/MIT_License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_162.yml b/src/licensedcode/data/rules/mit_162.yml deleted file mode 100644 index 9cf945ea087..00000000000 --- a/src/licensedcode/data/rules/mit_162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_163.RULE b/src/licensedcode/data/rules/mit_163.RULE index 37a6a95997d..9e3c877a5af 100644 --- a/src/licensedcode/data/rules/mit_163.RULE +++ b/src/licensedcode/data/rules/mit_163.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License All software included is bundled with own license -The MIT License (MIT) +The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_163.yml b/src/licensedcode/data/rules/mit_163.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_164.RULE b/src/licensedcode/data/rules/mit_164.RULE index eef24ed3c05..a7e2c887b01 100644 --- a/src/licensedcode/data/rules/mit_164.RULE +++ b/src/licensedcode/data/rules/mit_164.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/hothoty/Zero +--- + https://github.com/hothoty/Zero \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_164.yml b/src/licensedcode/data/rules/mit_164.yml deleted file mode 100644 index 78b1b003431..00000000000 --- a/src/licensedcode/data/rules/mit_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/hothoty/Zero diff --git a/src/licensedcode/data/rules/mit_165.RULE b/src/licensedcode/data/rules/mit_165.RULE index 0ace8529342..1dc68bcdbb7 100644 --- a/src/licensedcode/data/rules/mit_165.RULE +++ b/src/licensedcode/data/rules/mit_165.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_165.yml b/src/licensedcode/data/rules/mit_165.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_166.RULE b/src/licensedcode/data/rules/mit_166.RULE index 30ab46a83ff..7795767d9cf 100644 --- a/src/licensedcode/data/rules/mit_166.RULE +++ b/src/licensedcode/data/rules/mit_166.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://onoffswitch.net/onoff-license/ +--- + http://onoffswitch.net/onoff-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_166.yml b/src/licensedcode/data/rules/mit_166.yml deleted file mode 100644 index 8fde91c2f7a..00000000000 --- a/src/licensedcode/data/rules/mit_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://onoffswitch.net/onoff-license/ diff --git a/src/licensedcode/data/rules/mit_167.RULE b/src/licensedcode/data/rules/mit_167.RULE index 9a0f15ac439..e36cb3075b4 100644 --- a/src/licensedcode/data/rules/mit_167.RULE +++ b/src/licensedcode/data/rules/mit_167.RULE @@ -1 +1,9 @@ -is licensed under the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + +is licensed under the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_167.yml b/src/licensedcode/data/rules/mit_167.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_168.RULE b/src/licensedcode/data/rules/mit_168.RULE index 213bbb6d511..b9eff152bcc 100644 --- a/src/licensedcode/data/rules/mit_168.RULE +++ b/src/licensedcode/data/rules/mit_168.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License ------- diff --git a/src/licensedcode/data/rules/mit_168.yml b/src/licensedcode/data/rules/mit_168.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_168_1.RULE b/src/licensedcode/data/rules/mit_168_1.RULE index a1cdd2aec04..812aea36617 100644 --- a/src/licensedcode/data/rules/mit_168_1.RULE +++ b/src/licensedcode/data/rules/mit_168_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the MIT License - see the [LICENSE](LICENSE) file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_168_1.yml b/src/licensedcode/data/rules/mit_168_1.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_168_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_169.RULE b/src/licensedcode/data/rules/mit_169.RULE index 6bb795b504a..9092eefb7ed 100644 --- a/src/licensedcode/data/rules/mit_169.RULE +++ b/src/licensedcode/data/rules/mit_169.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + is licensed under the [MIT license](LICENSE.TXT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_169.yml b/src/licensedcode/data/rules/mit_169.yml deleted file mode 100644 index 133d3b5c517..00000000000 --- a/src/licensedcode/data/rules/mit_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/mit_17.RULE b/src/licensedcode/data/rules/mit_17.RULE index e2eb47d1135..959b4f939ad 100644 --- a/src/licensedcode/data/rules/mit_17.RULE +++ b/src/licensedcode/data/rules/mit_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 80 +minimum_coverage: 95 +notes: MIT without warranty disclaimer +--- + // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_17.yml b/src/licensedcode/data/rules/mit_17.yml deleted file mode 100644 index 176c6db3b6b..00000000000 --- a/src/licensedcode/data/rules/mit_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 80 -minimum_coverage: 95 -notes: MIT without warranty disclaimer diff --git a/src/licensedcode/data/rules/mit_170.RULE b/src/licensedcode/data/rules/mit_170.RULE index fd90739d73b..0c51a20fca7 100644 --- a/src/licensedcode/data/rules/mit_170.RULE +++ b/src/licensedcode/data/rules/mit_170.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - MIT-LICENSE +--- + uses the MIT license. Please check the MIT-LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_170.yml b/src/licensedcode/data/rules/mit_170.yml deleted file mode 100644 index 0f834fdab3f..00000000000 --- a/src/licensedcode/data/rules/mit_170.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - MIT-LICENSE diff --git a/src/licensedcode/data/rules/mit_171.RULE b/src/licensedcode/data/rules/mit_171.RULE index 28865901391..c107d62e226 100644 --- a/src/licensedcode/data/rules/mit_171.RULE +++ b/src/licensedcode/data/rules/mit_171.RULE @@ -1 +1,7 @@ -uses the MIT license. \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +uses the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_171.yml b/src/licensedcode/data/rules/mit_171.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_172.RULE b/src/licensedcode/data/rules/mit_172.RULE index b7293e9abbe..2dd36532309 100644 --- a/src/licensedcode/data/rules/mit_172.RULE +++ b/src/licensedcode/data/rules/mit_172.RULE @@ -1 +1,7 @@ -Licensed under MIT +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Licensed under MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_172.yml b/src/licensedcode/data/rules/mit_172.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_173.RULE b/src/licensedcode/data/rules/mit_173.RULE index 4a333fca242..c9e2f817cbf 100644 --- a/src/licensedcode/data/rules/mit_173.RULE +++ b/src/licensedcode/data/rules/mit_173.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights @@ -14,4 +19,4 @@ NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_173.yml b/src/licensedcode/data/rules/mit_173.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_173.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_174.RULE b/src/licensedcode/data/rules/mit_174.RULE index 628744ccea2..b2a4441843e 100644 --- a/src/licensedcode/data/rules/mit_174.RULE +++ b/src/licensedcode/data/rules/mit_174.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License Open source licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_174.yml b/src/licensedcode/data/rules/mit_174.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_175.RULE b/src/licensedcode/data/rules/mit_175.RULE index 74360a81ee0..d85f708a5b6 100644 --- a/src/licensedcode/data/rules/mit_175.RULE +++ b/src/licensedcode/data/rules/mit_175.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + License --- Open source licensed under the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_175.yml b/src/licensedcode/data/rules/mit_175.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_175.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_176.RULE b/src/licensedcode/data/rules/mit_176.RULE index e23b9c301ad..5b5409c07fb 100644 --- a/src/licensedcode/data/rules/mit_176.RULE +++ b/src/licensedcode/data/rules/mit_176.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +--- + There is also some MIT code \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_176.yml b/src/licensedcode/data/rules/mit_176.yml deleted file mode 100644 index 802275a47d8..00000000000 --- a/src/licensedcode/data/rules/mit_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_177.RULE b/src/licensedcode/data/rules/mit_177.RULE index d16dd6ecd69..34f54eaccf5 100644 --- a/src/licensedcode/data/rules/mit_177.RULE +++ b/src/licensedcode/data/rules/mit_177.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 90 +--- + MIT Licenced \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_177.yml b/src/licensedcode/data/rules/mit_177.yml deleted file mode 100644 index 4526e21343f..00000000000 --- a/src/licensedcode/data/rules/mit_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_178.RULE b/src/licensedcode/data/rules/mit_178.RULE index 5ec2615b353..6b1d5782350 100644 --- a/src/licensedcode/data/rules/mit_178.RULE +++ b/src/licensedcode/data/rules/mit_178.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + is released under the MIT License, as described at http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_178.yml b/src/licensedcode/data/rules/mit_178.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_178.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_179.RULE b/src/licensedcode/data/rules/mit_179.RULE index 274af64a998..a3570adfb56 100644 --- a/src/licensedcode/data/rules/mit_179.RULE +++ b/src/licensedcode/data/rules/mit_179.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/twbs/bootstrap/blob/master/LICENSE +--- + Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_179.yml b/src/licensedcode/data/rules/mit_179.yml deleted file mode 100644 index 379f0084bae..00000000000 --- a/src/licensedcode/data/rules/mit_179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/twbs/bootstrap/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_18.RULE b/src/licensedcode/data/rules/mit_18.RULE index ec878efc123..087592ddb97 100644 --- a/src/licensedcode/data/rules/mit_18.RULE +++ b/src/licensedcode/data/rules/mit_18.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + are covered by the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_18.yml b/src/licensedcode/data/rules/mit_18.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_180.RULE b/src/licensedcode/data/rules/mit_180.RULE index 74026662d93..3ce5ca79318 100644 --- a/src/licensedcode/data/rules/mit_180.RULE +++ b/src/licensedcode/data/rules/mit_180.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://github.com/twbs/bootstrap/blob/master/LICENSE +--- + https://github.com/twbs/bootstrap/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_180.yml b/src/licensedcode/data/rules/mit_180.yml deleted file mode 100644 index 5d975c009b7..00000000000 --- a/src/licensedcode/data/rules/mit_180.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://github.com/twbs/bootstrap/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_181.RULE b/src/licensedcode/data/rules/mit_181.RULE index aad9519eb0d..7008585b769 100644 --- a/src/licensedcode/data/rules/mit_181.RULE +++ b/src/licensedcode/data/rules/mit_181.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.html +--- + https://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_181.yml b/src/licensedcode/data/rules/mit_181.yml deleted file mode 100644 index df7a9d96283..00000000000 --- a/src/licensedcode/data/rules/mit_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_182.RULE b/src/licensedcode/data/rules/mit_182.RULE index 0bccd63387e..04e5f3b653a 100644 --- a/src/licensedcode/data/rules/mit_182.RULE +++ b/src/licensedcode/data/rules/mit_182.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is an MIT-licensed open source project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_182.yml b/src/licensedcode/data/rules/mit_182.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_183.RULE b/src/licensedcode/data/rules/mit_183.RULE index 7f7b32f71d3..3921ac09e2c 100644 --- a/src/licensedcode/data/rules/mit_183.RULE +++ b/src/licensedcode/data/rules/mit_183.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + ## License [MIT](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_183.yml b/src/licensedcode/data/rules/mit_183.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_183.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_184.RULE b/src/licensedcode/data/rules/mit_184.RULE index 3394a0dfa43..8b491bd5f2e 100644 --- a/src/licensedcode/data/rules/mit_184.RULE +++ b/src/licensedcode/data/rules/mit_184.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Code licensed MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_184.yml b/src/licensedcode/data/rules/mit_184.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_185.RULE b/src/licensedcode/data/rules/mit_185.RULE index b37cf227754..0da098127b5 100644 --- a/src/licensedcode/data/rules/mit_185.RULE +++ b/src/licensedcode/data/rules/mit_185.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + License: MIT (http://www.opensource.org/licenses/mit-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_185.yml b/src/licensedcode/data/rules/mit_185.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_186.RULE b/src/licensedcode/data/rules/mit_186.RULE index e352b0ad079..1a9cc51968f 100644 --- a/src/licensedcode/data/rules/mit_186.RULE +++ b/src/licensedcode/data/rules/mit_186.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +minimum_coverage: 99 +--- + jQuery Foundation and other contributors; Licensed MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_186.yml b/src/licensedcode/data/rules/mit_186.yml deleted file mode 100644 index 8509dc1221f..00000000000 --- a/src/licensedcode/data/rules/mit_186.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/mit_187.RULE b/src/licensedcode/data/rules/mit_187.RULE index 110bf5307cb..bafb95fc3e5 100644 --- a/src/licensedcode/data/rules/mit_187.RULE +++ b/src/licensedcode/data/rules/mit_187.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + Licensed under the MIT License. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_187.yml b/src/licensedcode/data/rules/mit_187.yml deleted file mode 100644 index 96a25a66d34..00000000000 --- a/src/licensedcode/data/rules/mit_187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/mit_188.RULE b/src/licensedcode/data/rules/mit_188.RULE index bb4f5a610ca..a995c44e917 100644 --- a/src/licensedcode/data/rules/mit_188.RULE +++ b/src/licensedcode/data/rules/mit_188.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is licensed under MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_188.yml b/src/licensedcode/data/rules/mit_188.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_189.RULE b/src/licensedcode/data/rules/mit_189.RULE index 67e55f6d6e0..006ae3bd8f6 100644 --- a/src/licensedcode/data/rules/mit_189.RULE +++ b/src/licensedcode/data/rules/mit_189.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // Licensed under the MIT license. See LICENSE file in the project root for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_189.yml b/src/licensedcode/data/rules/mit_189.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_189.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_18_1.RULE b/src/licensedcode/data/rules/mit_18_1.RULE index c20cd917fab..a5c91c446d6 100644 --- a/src/licensedcode/data/rules/mit_18_1.RULE +++ b/src/licensedcode/data/rules/mit_18_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + by the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_18_1.yml b/src/licensedcode/data/rules/mit_18_1.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_18_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_19.RULE b/src/licensedcode/data/rules/mit_19.RULE index b39d2eba51f..e2ee447b411 100644 --- a/src/licensedcode/data/rules/mit_19.RULE +++ b/src/licensedcode/data/rules/mit_19.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 80 +--- + MIT licence is compatible with the GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_19.yml b/src/licensedcode/data/rules/mit_19.yml deleted file mode 100644 index 3faa83c7be0..00000000000 --- a/src/licensedcode/data/rules/mit_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/mit_190.RULE b/src/licensedcode/data/rules/mit_190.RULE index 1ba100d2e36..39bc54920e0 100644 --- a/src/licensedcode/data/rules/mit_190.RULE +++ b/src/licensedcode/data/rules/mit_190.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + binary is licensed under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_190.yml b/src/licensedcode/data/rules/mit_190.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_191.RULE b/src/licensedcode/data/rules/mit_191.RULE index 6eb000e382a..4f044eb0cfc 100644 --- a/src/licensedcode/data/rules/mit_191.RULE +++ b/src/licensedcode/data/rules/mit_191.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +--- + source code is licensed under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_191.yml b/src/licensedcode/data/rules/mit_191.yml deleted file mode 100644 index 9efad39514d..00000000000 --- a/src/licensedcode/data/rules/mit_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_192.RULE b/src/licensedcode/data/rules/mit_192.RULE index 7f2f70a4dda..224d6082745 100644 --- a/src/licensedcode/data/rules/mit_192.RULE +++ b/src/licensedcode/data/rules/mit_192.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * Licensed under the MIT License. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_192.yml b/src/licensedcode/data/rules/mit_192.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_193.RULE b/src/licensedcode/data/rules/mit_193.RULE index d4c7566fde4..3e1c85b45d2 100644 --- a/src/licensedcode/data/rules/mit_193.RULE +++ b/src/licensedcode/data/rules/mit_193.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the MIT license. See LICENSE file in the project root for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_193.yml b/src/licensedcode/data/rules/mit_193.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_194.RULE b/src/licensedcode/data/rules/mit_194.RULE index 52c9bade2ce..70aa9d9c805 100644 --- a/src/licensedcode/data/rules/mit_194.RULE +++ b/src/licensedcode/data/rules/mit_194.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_194.yml b/src/licensedcode/data/rules/mit_194.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_195.RULE b/src/licensedcode/data/rules/mit_195.RULE index 56fcc70cf18..c368c3008de 100644 --- a/src/licensedcode/data/rules/mit_195.RULE +++ b/src/licensedcode/data/rules/mit_195.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_195.yml b/src/licensedcode/data/rules/mit_195.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_196.RULE b/src/licensedcode/data/rules/mit_196.RULE index 45274bad55e..af4b084dcc4 100644 --- a/src/licensedcode/data/rules/mit_196.RULE +++ b/src/licensedcode/data/rules/mit_196.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. +// See the LICENSE file in the project root for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_196.yml b/src/licensedcode/data/rules/mit_196.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_197.RULE b/src/licensedcode/data/rules/mit_197.RULE index c701d2472b7..2370b0d24fb 100644 --- a/src/licensedcode/data/rules/mit_197.RULE +++ b/src/licensedcode/data/rules/mit_197.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + This project is subject to the MIT License. A copy of this license can be found in [License.txt](License.txt) at the root of this repo. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_197.yml b/src/licensedcode/data/rules/mit_197.yml deleted file mode 100644 index 96a25a66d34..00000000000 --- a/src/licensedcode/data/rules/mit_197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/mit_198.RULE b/src/licensedcode/data/rules/mit_198.RULE index 3dfdfef80af..06cafdb18f2 100644 --- a/src/licensedcode/data/rules/mit_198.RULE +++ b/src/licensedcode/data/rules/mit_198.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +ignorable_urls: + - https://github.com/Microsoft/visualfsharp/blob/master/License.txt +--- + Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_198.yml b/src/licensedcode/data/rules/mit_198.yml deleted file mode 100644 index 98e98747d6a..00000000000 --- a/src/licensedcode/data/rules/mit_198.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -ignorable_urls: - - https://github.com/Microsoft/visualfsharp/blob/master/License.txt diff --git a/src/licensedcode/data/rules/mit_199.RULE b/src/licensedcode/data/rules/mit_199.RULE index 11c9cf1f95a..b256107090c 100644 --- a/src/licensedcode/data/rules/mit_199.RULE +++ b/src/licensedcode/data/rules/mit_199.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +--- + Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_199.yml b/src/licensedcode/data/rules/mit_199.yml deleted file mode 100644 index 4cf14284c2c..00000000000 --- a/src/licensedcode/data/rules/mit_199.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_2.RULE b/src/licensedcode/data/rules/mit_2.RULE index fd9fea4a635..3d5c07819c1 100644 --- a/src/licensedcode/data/rules/mit_2.RULE +++ b/src/licensedcode/data/rules/mit_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +--- + The libraries are released under the terms of the MIT X11 -MIT/X11 License +MIT/X11 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_2.yml b/src/licensedcode/data/rules/mit_2.yml deleted file mode 100644 index 9efad39514d..00000000000 --- a/src/licensedcode/data/rules/mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_20.RULE b/src/licensedcode/data/rules/mit_20.RULE index 136fe560544..e31d565773a 100644 --- a/src/licensedcode/data/rules/mit_20.RULE +++ b/src/licensedcode/data/rules/mit_20.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + This software is released under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_20.yml b/src/licensedcode/data/rules/mit_20.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_200.RULE b/src/licensedcode/data/rules/mit_200.RULE index 3835cf0ba73..de396ce00e6 100644 --- a/src/licensedcode/data/rules/mit_200.RULE +++ b/src/licensedcode/data/rules/mit_200.RULE @@ -1 +1,7 @@ -Freely distributed under the MIT Open Source License. \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Freely distributed under the MIT Open Source License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_200.yml b/src/licensedcode/data/rules/mit_200.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_201.RULE b/src/licensedcode/data/rules/mit_201.RULE index e9d476ad69c..a6bdba9c985 100644 --- a/src/licensedcode/data/rules/mit_201.RULE +++ b/src/licensedcode/data/rules/mit_201.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- -Terms of the MIT License: + +Terms of the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_201.yml b/src/licensedcode/data/rules/mit_201.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_202.RULE b/src/licensedcode/data/rules/mit_202.RULE index 5d8224194ba..abad35d946e 100644 --- a/src/licensedcode/data/rules/mit_202.RULE +++ b/src/licensedcode/data/rules/mit_202.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + Yes, it is free under MIT license. It can be used in commercial applications. Please check the details in [license.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_202.yml b/src/licensedcode/data/rules/mit_202.yml deleted file mode 100644 index 0a8260663b9..00000000000 --- a/src/licensedcode/data/rules/mit_202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/mit_203.RULE b/src/licensedcode/data/rules/mit_203.RULE index 14744476c76..1680c81cc34 100644 --- a/src/licensedcode/data/rules/mit_203.RULE +++ b/src/licensedcode/data/rules/mit_203.RULE @@ -1 +1,12 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - license.txt +ignorable_urls: + - https://github.com/Tencent/rapidjson/blob/master/license.txt +--- + [license.txt](https://github.com/Tencent/rapidjson/blob/master/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_203.yml b/src/licensedcode/data/rules/mit_203.yml deleted file mode 100644 index f06ea0421ec..00000000000 --- a/src/licensedcode/data/rules/mit_203.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - license.txt -ignorable_urls: - - https://github.com/Tencent/rapidjson/blob/master/license.txt diff --git a/src/licensedcode/data/rules/mit_204.RULE b/src/licensedcode/data/rules/mit_204.RULE index 3fb9f660f28..859824ffb36 100644 --- a/src/licensedcode/data/rules/mit_204.RULE +++ b/src/licensedcode/data/rules/mit_204.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + All metadata is MIT licensed unless otherwise stated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_204.yml b/src/licensedcode/data/rules/mit_204.yml deleted file mode 100644 index 820a11b4023..00000000000 --- a/src/licensedcode/data/rules/mit_204.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_205.RULE b/src/licensedcode/data/rules/mit_205.RULE index 98c1c5ca545..9d40d822298 100644 --- a/src/licensedcode/data/rules/mit_205.RULE +++ b/src/licensedcode/data/rules/mit_205.RULE @@ -1 +1,7 @@ -The complete text of the MIT license is as follows: +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +The complete text of the MIT license is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_205.yml b/src/licensedcode/data/rules/mit_205.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_206.RULE b/src/licensedcode/data/rules/mit_206.RULE index bdb20eb0ee7..5b99a72868e 100644 --- a/src/licensedcode/data/rules/mit_206.RULE +++ b/src/licensedcode/data/rules/mit_206.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + This project bundles the following dependencies under the MIT license. (https://opensource.org/licenses/MIT) See bundled license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_206.yml b/src/licensedcode/data/rules/mit_206.yml deleted file mode 100644 index 646a34620fe..00000000000 --- a/src/licensedcode/data/rules/mit_206.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_207.RULE b/src/licensedcode/data/rules/mit_207.RULE index 9c0997022ee..b7d2d91a5f5 100644 --- a/src/licensedcode/data/rules/mit_207.RULE +++ b/src/licensedcode/data/rules/mit_207.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is licenced under the MIT license, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_207.yml b/src/licensedcode/data/rules/mit_207.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_208.RULE b/src/licensedcode/data/rules/mit_208.RULE index 875be0eee74..c6b8f269bbe 100644 --- a/src/licensedcode/data/rules/mit_208.RULE +++ b/src/licensedcode/data/rules/mit_208.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is licensed under the MIT license, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_208.yml b/src/licensedcode/data/rules/mit_208.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_208.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_209.RULE b/src/licensedcode/data/rules/mit_209.RULE index adbbe5ca919..6b956ecb5ea 100644 --- a/src/licensedcode/data/rules/mit_209.RULE +++ b/src/licensedcode/data/rules/mit_209.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + # This program is distributed under the terms of the MIT License as found # in a file called LICENSE. If it is not present, the license # is always available at http://www.opensource.org/licenses/mit-license.php. diff --git a/src/licensedcode/data/rules/mit_209.yml b/src/licensedcode/data/rules/mit_209.yml deleted file mode 100644 index 52184bdec17..00000000000 --- a/src/licensedcode/data/rules/mit_209.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_21.RULE b/src/licensedcode/data/rules/mit_21.RULE index a4cc9f4ed34..f009f74427d 100644 --- a/src/licensedcode/data/rules/mit_21.RULE +++ b/src/licensedcode/data/rules/mit_21.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/MIT +--- + http://spdx.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_21.yml b/src/licensedcode/data/rules/mit_21.yml deleted file mode 100644 index 7e52a9eb935..00000000000 --- a/src/licensedcode/data/rules/mit_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_210.RULE b/src/licensedcode/data/rules/mit_210.RULE index ecca705a2d7..623a98e2730 100644 --- a/src/licensedcode/data/rules/mit_210.RULE +++ b/src/licensedcode/data/rules/mit_210.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is licenced under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_210.yml b/src/licensedcode/data/rules/mit_210.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_211.RULE b/src/licensedcode/data/rules/mit_211.RULE index ef9d204f31f..ff7fb32b787 100644 --- a/src/licensedcode/data/rules/mit_211.RULE +++ b/src/licensedcode/data/rules/mit_211.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + # This program is distributed under the terms of the MIT License as found # in a file called LICENSE. If it is not present, the license -# is always available at http://www.opensource.org/licenses/mit-license.php. +# is always available at http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_211.yml b/src/licensedcode/data/rules/mit_211.yml deleted file mode 100644 index 52184bdec17..00000000000 --- a/src/licensedcode/data/rules/mit_211.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_212.RULE b/src/licensedcode/data/rules/mit_212.RULE index 1717784edc7..3e2fc4ebfe7 100644 --- a/src/licensedcode/data/rules/mit_212.RULE +++ b/src/licensedcode/data/rules/mit_212.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/mit_212.yml b/src/licensedcode/data/rules/mit_212.yml deleted file mode 100644 index edf331213b4..00000000000 --- a/src/licensedcode/data/rules/mit_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_213.RULE b/src/licensedcode/data/rules/mit_213.RULE index 83a4d7e9685..0e8beda1328 100644 --- a/src/licensedcode/data/rules/mit_213.RULE +++ b/src/licensedcode/data/rules/mit_213.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + * Licensed under the MIT: - * http://www.opensource.org/licenses/mit-license.php + * http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_213.yml b/src/licensedcode/data/rules/mit_213.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_213.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_214.RULE b/src/licensedcode/data/rules/mit_214.RULE index dd294d77144..56cc6ba6821 100644 --- a/src/licensedcode/data/rules/mit_214.RULE +++ b/src/licensedcode/data/rules/mit_214.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + * Licensed under the MIT: - * https://opensource.org/licenses/mit-license.php + * https://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_214.yml b/src/licensedcode/data/rules/mit_214.yml deleted file mode 100644 index af986eb00c1..00000000000 --- a/src/licensedcode/data/rules/mit_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_215.RULE b/src/licensedcode/data/rules/mit_215.RULE index f901051102f..210fca25c8a 100644 --- a/src/licensedcode/data/rules/mit_215.RULE +++ b/src/licensedcode/data/rules/mit_215.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + All the files in this distribution are covered under either the MIT -license (see the file LICENSE) \ No newline at end of file +license (see the file LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_215.yml b/src/licensedcode/data/rules/mit_215.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_215.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_216.RULE b/src/licensedcode/data/rules/mit_216.RULE index db4c2edce5e..aa4d61eab45 100644 --- a/src/licensedcode/data/rules/mit_216.RULE +++ b/src/licensedcode/data/rules/mit_216.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License The is available as open source under the terms of the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_216.yml b/src/licensedcode/data/rules/mit_216.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_217.RULE b/src/licensedcode/data/rules/mit_217.RULE index 18468d54889..8fca464dbee 100644 --- a/src/licensedcode/data/rules/mit_217.RULE +++ b/src/licensedcode/data/rules/mit_217.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // Released as open source under the MIT License. See LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_217.yml b/src/licensedcode/data/rules/mit_217.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_217.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_218.RULE b/src/licensedcode/data/rules/mit_218.RULE index 196ffbb5b2d..17456d024cf 100644 --- a/src/licensedcode/data/rules/mit_218.RULE +++ b/src/licensedcode/data/rules/mit_218.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is licensed under the MIT license. Check the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_218.yml b/src/licensedcode/data/rules/mit_218.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_218.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_219.RULE b/src/licensedcode/data/rules/mit_219.RULE index 63a5db8fe32..8f3c9f694e7 100644 --- a/src/licensedcode/data/rules/mit_219.RULE +++ b/src/licensedcode/data/rules/mit_219.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + // This file is available under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_219.yml b/src/licensedcode/data/rules/mit_219.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_22.RULE b/src/licensedcode/data/rules/mit_22.RULE index ec820c024ca..854f1d19c08 100644 --- a/src/licensedcode/data/rules/mit_22.RULE +++ b/src/licensedcode/data/rules/mit_22.RULE @@ -1 +1,7 @@ - * is distributed under the terms of the MIT license +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + + * is distributed under the terms of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_22.yml b/src/licensedcode/data/rules/mit_22.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_220.RULE b/src/licensedcode/data/rules/mit_220.RULE index 3f0722827f3..041eb4f7dc9 100644 --- a/src/licensedcode/data/rules/mit_220.RULE +++ b/src/licensedcode/data/rules/mit_220.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + MIT Licensed! See LICENSE file for the full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_220.yml b/src/licensedcode/data/rules/mit_220.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_221.RULE b/src/licensedcode/data/rules/mit_221.RULE index 1a57b5316f8..cbb91c6a058 100644 --- a/src/licensedcode/data/rules/mit_221.RULE +++ b/src/licensedcode/data/rules/mit_221.RULE @@ -1 +1,7 @@ -license MIT/X11 +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +--- + +license MIT/X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_221.yml b/src/licensedcode/data/rules/mit_221.yml deleted file mode 100644 index 802275a47d8..00000000000 --- a/src/licensedcode/data/rules/mit_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_222.RULE b/src/licensedcode/data/rules/mit_222.RULE index 5d76a96d82c..1576d7f4b3c 100644 --- a/src/licensedcode/data/rules/mit_222.RULE +++ b/src/licensedcode/data/rules/mit_222.RULE @@ -1 +1,7 @@ -This project is free software released under the MIT/X11 license: +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +This project is free software released under the MIT/X11 license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_222.yml b/src/licensedcode/data/rules/mit_222.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_223.RULE b/src/licensedcode/data/rules/mit_223.RULE index aabe3ae34e3..7b582d0bfcf 100644 --- a/src/licensedcode/data/rules/mit_223.RULE +++ b/src/licensedcode/data/rules/mit_223.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://sites.google.com/a/localixe.com/zen-of-beer-public/projects/zenofbeer-brewerydb/license +--- + https://sites.google.com/a/localixe.com/zen-of-beer-public/projects/zenofbeer-brewerydb/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_223.yml b/src/licensedcode/data/rules/mit_223.yml deleted file mode 100644 index a9777fa05ad..00000000000 --- a/src/licensedcode/data/rules/mit_223.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://sites.google.com/a/localixe.com/zen-of-beer-public/projects/zenofbeer-brewerydb/license diff --git a/src/licensedcode/data/rules/mit_224.RULE b/src/licensedcode/data/rules/mit_224.RULE index a3ff6eef910..5912a4426ff 100644 --- a/src/licensedcode/data/rules/mit_224.RULE +++ b/src/licensedcode/data/rules/mit_224.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://sites.google.com/site/hongjiedai/projects/tmuclinicalnet/license +--- + https://sites.google.com/site/hongjiedai/projects/tmuclinicalnet/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_224.yml b/src/licensedcode/data/rules/mit_224.yml deleted file mode 100644 index c8a2c5f2b2c..00000000000 --- a/src/licensedcode/data/rules/mit_224.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://sites.google.com/site/hongjiedai/projects/tmuclinicalnet/license diff --git a/src/licensedcode/data/rules/mit_225.RULE b/src/licensedcode/data/rules/mit_225.RULE index c21acdf5f8b..927bdcd5a9a 100644 --- a/src/licensedcode/data/rules/mit_225.RULE +++ b/src/licensedcode/data/rules/mit_225.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License This repo is licensed with MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_225.yml b/src/licensedcode/data/rules/mit_225.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_226.RULE b/src/licensedcode/data/rules/mit_226.RULE index c666de4fa48..72905c45885 100644 --- a/src/licensedcode/data/rules/mit_226.RULE +++ b/src/licensedcode/data/rules/mit_226.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + ## License This repo is licensed with [MIT](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_226.yml b/src/licensedcode/data/rules/mit_226.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_226.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_227.RULE b/src/licensedcode/data/rules/mit_227.RULE index 677c2262350..ae9cc3ab4f0 100644 --- a/src/licensedcode/data/rules/mit_227.RULE +++ b/src/licensedcode/data/rules/mit_227.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This repo is licensed with MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_227.yml b/src/licensedcode/data/rules/mit_227.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_228.RULE b/src/licensedcode/data/rules/mit_228.RULE index 5d9e4b3c681..bd1a7728759 100644 --- a/src/licensedcode/data/rules/mit_228.RULE +++ b/src/licensedcode/data/rules/mit_228.RULE @@ -1 +1,7 @@ -Licensed under MIT license +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Licensed under MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_228.yml b/src/licensedcode/data/rules/mit_228.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_229.RULE b/src/licensedcode/data/rules/mit_229.RULE index 4d6af77e8aa..b37b0679f58 100644 --- a/src/licensedcode/data/rules/mit_229.RULE +++ b/src/licensedcode/data/rules/mit_229.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Liscese is MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_229.yml b/src/licensedcode/data/rules/mit_229.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_23.RULE b/src/licensedcode/data/rules/mit_23.RULE index 4ee275aa35a..1ffd3d9d694 100644 --- a/src/licensedcode/data/rules/mit_23.RULE +++ b/src/licensedcode/data/rules/mit_23.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + license http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_23.yml b/src/licensedcode/data/rules/mit_23.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_230.RULE b/src/licensedcode/data/rules/mit_230.RULE index 6054476a068..989604bf924 100644 --- a/src/licensedcode/data/rules/mit_230.RULE +++ b/src/licensedcode/data/rules/mit_230.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + ** This is free software. You are permitted to copy, distribute, or modify ** it under the terms of the MIT/X license (contained in the COPYING file ** with this distribution.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_230.yml b/src/licensedcode/data/rules/mit_230.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_230.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_231.RULE b/src/licensedcode/data/rules/mit_231.RULE index 8b9470fe53c..dd94a4157d7 100644 --- a/src/licensedcode/data/rules/mit_231.RULE +++ b/src/licensedcode/data/rules/mit_231.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The free use of this software is granted under the terms of the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_231.yml b/src/licensedcode/data/rules/mit_231.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_232.RULE b/src/licensedcode/data/rules/mit_232.RULE index 49aa2410d7c..3c4391e5a4e 100644 --- a/src/licensedcode/data/rules/mit_232.RULE +++ b/src/licensedcode/data/rules/mit_232.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 90 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + License: BSD-style (http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_232.yml b/src/licensedcode/data/rules/mit_232.yml deleted file mode 100644 index 502963cce5f..00000000000 --- a/src/licensedcode/data/rules/mit_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 90 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_233.RULE b/src/licensedcode/data/rules/mit_233.RULE index 69e8e4a1732..f47782ecbe6 100644 --- a/src/licensedcode/data/rules/mit_233.RULE +++ b/src/licensedcode/data/rules/mit_233.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://github.com/hector/hector-client/wiki/License +--- + License: MIT License (https://github.com/hector/hector-client/wiki/License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_233.yml b/src/licensedcode/data/rules/mit_233.yml deleted file mode 100644 index e2804e76a5c..00000000000 --- a/src/licensedcode/data/rules/mit_233.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://github.com/hector/hector-client/wiki/License diff --git a/src/licensedcode/data/rules/mit_234.RULE b/src/licensedcode/data/rules/mit_234.RULE index 5ac0aacd2e0..cf064c378b9 100644 --- a/src/licensedcode/data/rules/mit_234.RULE +++ b/src/licensedcode/data/rules/mit_234.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE +--- + License: MIT License (https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_234.yml b/src/licensedcode/data/rules/mit_234.yml deleted file mode 100644 index 480d74aaff3..00000000000 --- a/src/licensedcode/data/rules/mit_234.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_235.RULE b/src/licensedcode/data/rules/mit_235.RULE index 5f513726c88..2fcbbd784c3 100644 --- a/src/licensedcode/data/rules/mit_235.RULE +++ b/src/licensedcode/data/rules/mit_235.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + License: The MIT License (http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_235.yml b/src/licensedcode/data/rules/mit_235.yml deleted file mode 100644 index 7b82c119884..00000000000 --- a/src/licensedcode/data/rules/mit_235.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_236.RULE b/src/licensedcode/data/rules/mit_236.RULE index 5f1aca9bbb7..0e59cacf326 100644 --- a/src/licensedcode/data/rules/mit_236.RULE +++ b/src/licensedcode/data/rules/mit_236.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 80 +referenced_filenames: + - MIT-LICENCE.md +--- + MIT-LICENCE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_236.yml b/src/licensedcode/data/rules/mit_236.yml deleted file mode 100644 index 480ebb354eb..00000000000 --- a/src/licensedcode/data/rules/mit_236.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 80 -referenced_filenames: - - MIT-LICENCE.md diff --git a/src/licensedcode/data/rules/mit_237.RULE b/src/licensedcode/data/rules/mit_237.RULE index aa3a2ed9678..42b08827f1d 100644 --- a/src/licensedcode/data/rules/mit_237.RULE +++ b/src/licensedcode/data/rules/mit_237.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_237.yml b/src/licensedcode/data/rules/mit_237.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_237.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_238.RULE b/src/licensedcode/data/rules/mit_238.RULE index 7e984966d28..ad841df12d2 100644 --- a/src/licensedcode/data/rules/mit_238.RULE +++ b/src/licensedcode/data/rules/mit_238.RULE @@ -1 +1,9 @@ -http://www.bouncycastle.org/licence.html +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.bouncycastle.org/licence.html +--- + +http://www.bouncycastle.org/licence.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_238.yml b/src/licensedcode/data/rules/mit_238.yml deleted file mode 100644 index ff82ee7bb26..00000000000 --- a/src/licensedcode/data/rules/mit_238.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.bouncycastle.org/licence.html diff --git a/src/licensedcode/data/rules/mit_239.RULE b/src/licensedcode/data/rules/mit_239.RULE index 23dd973d62c..fd25b64d183 100644 --- a/src/licensedcode/data/rules/mit_239.RULE +++ b/src/licensedcode/data/rules/mit_239.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + Bouncy Castle Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_239.yml b/src/licensedcode/data/rules/mit_239.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_24.RULE b/src/licensedcode/data/rules/mit_24.RULE index e8a1d6b426a..77c8cabfea8 100644 --- a/src/licensedcode/data/rules/mit_24.RULE +++ b/src/licensedcode/data/rules/mit_24.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT LICENCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_24.yml b/src/licensedcode/data/rules/mit_24.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_240.RULE b/src/licensedcode/data/rules/mit_240.RULE index c16844c8b46..162f58bd245 100644 --- a/src/licensedcode/data/rules/mit_240.RULE +++ b/src/licensedcode/data/rules/mit_240.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 95 +--- + is licensed under an MIT styles license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_240.yml b/src/licensedcode/data/rules/mit_240.yml deleted file mode 100644 index b0138481fdd..00000000000 --- a/src/licensedcode/data/rules/mit_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit_241.RULE b/src/licensedcode/data/rules/mit_241.RULE index 6ab6e1f5e1f..83d116886ec 100644 --- a/src/licensedcode/data/rules/mit_241.RULE +++ b/src/licensedcode/data/rules/mit_241.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This library is available under an MIT license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_241.yml b/src/licensedcode/data/rules/mit_241.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_242.RULE b/src/licensedcode/data/rules/mit_242.RULE index 6827a65dcfb..b2b0fad4fe7 100644 --- a/src/licensedcode/data/rules/mit_242.RULE +++ b/src/licensedcode/data/rules/mit_242.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + software is licensed pursuant to the MIT license as follows \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_242.yml b/src/licensedcode/data/rules/mit_242.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_243.RULE b/src/licensedcode/data/rules/mit_243.RULE index 205d5fd9508..073c525e009 100644 --- a/src/licensedcode/data/rules/mit_243.RULE +++ b/src/licensedcode/data/rules/mit_243.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.html +--- + files are licensed under MIT License - * http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_243.yml b/src/licensedcode/data/rules/mit_243.yml deleted file mode 100644 index edb7a26de3a..00000000000 --- a/src/licensedcode/data/rules/mit_243.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_244.RULE b/src/licensedcode/data/rules/mit_244.RULE index f48a9617df3..ea28397cb01 100644 --- a/src/licensedcode/data/rules/mit_244.RULE +++ b/src/licensedcode/data/rules/mit_244.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + you may use this file under the -* following terms, known as the "MIT license": +* following terms, known as the "MIT license": \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_244.yml b/src/licensedcode/data/rules/mit_244.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_245.RULE b/src/licensedcode/data/rules/mit_245.RULE index 103659e80c0..d36f02a879b 100644 --- a/src/licensedcode/data/rules/mit_245.RULE +++ b/src/licensedcode/data/rules/mit_245.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + You are free to use this code under the MIT licencse: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_245.yml b/src/licensedcode/data/rules/mit_245.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_245.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_246.RULE b/src/licensedcode/data/rules/mit_246.RULE index 14db33ac098..2cbfdb20aeb 100644 --- a/src/licensedcode/data/rules/mit_246.RULE +++ b/src/licensedcode/data/rules/mit_246.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + You are free to use this code under the MIT license: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_246.yml b/src/licensedcode/data/rules/mit_246.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_246.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_247.RULE b/src/licensedcode/data/rules/mit_247.RULE index e67a8430690..a32f5cf9ab1 100644 --- a/src/licensedcode/data/rules/mit_247.RULE +++ b/src/licensedcode/data/rules/mit_247.RULE @@ -1 +1,7 @@ -You are free to use this code under the MIT license: +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +You are free to use this code under the MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_247.yml b/src/licensedcode/data/rules/mit_247.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_248.RULE b/src/licensedcode/data/rules/mit_248.RULE index b0fb530ecd6..19b01c7dce6 100644 --- a/src/licensedcode/data/rules/mit_248.RULE +++ b/src/licensedcode/data/rules/mit_248.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +--- + * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/mit_248.yml b/src/licensedcode/data/rules/mit_248.yml deleted file mode 100644 index edf331213b4..00000000000 --- a/src/licensedcode/data/rules/mit_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_249.RULE b/src/licensedcode/data/rules/mit_249.RULE index c68d519fef8..434228c3c36 100644 --- a/src/licensedcode/data/rules/mit_249.RULE +++ b/src/licensedcode/data/rules/mit_249.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + licensed under the MIT license. (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_249.yml b/src/licensedcode/data/rules/mit_249.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_249.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_25.RULE b/src/licensedcode/data/rules/mit_25.RULE index 989fcba54c5..badcb06f64a 100644 --- a/src/licensedcode/data/rules/mit_25.RULE +++ b/src/licensedcode/data/rules/mit_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: contains an extra word "following" +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -14,4 +21,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) OR AUTHOR(S) 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. +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_25.yml b/src/licensedcode/data/rules/mit_25.yml deleted file mode 100644 index 0a7b35e3f23..00000000000 --- a/src/licensedcode/data/rules/mit_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: contains an extra word "following" diff --git a/src/licensedcode/data/rules/mit_250.RULE b/src/licensedcode/data/rules/mit_250.RULE index 7dc34088ae5..68729ce8282 100644 --- a/src/licensedcode/data/rules/mit_250.RULE +++ b/src/licensedcode/data/rules/mit_250.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 99 +--- + license: MIT/expat \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_250.yml b/src/licensedcode/data/rules/mit_250.yml deleted file mode 100644 index 628e33f8642..00000000000 --- a/src/licensedcode/data/rules/mit_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_251.RULE b/src/licensedcode/data/rules/mit_251.RULE index ffdca474190..f91cbac7c2e 100644 --- a/src/licensedcode/data/rules/mit_251.RULE +++ b/src/licensedcode/data/rules/mit_251.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + covered by the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_251.yml b/src/licensedcode/data/rules/mit_251.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_252.RULE b/src/licensedcode/data/rules/mit_252.RULE index 92164f97a57..5576e830522 100644 --- a/src/licensedcode/data/rules/mit_252.RULE +++ b/src/licensedcode/data/rules/mit_252.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + // Use of this source code is governed by a MIT-license. -// See http://.mit-license.org/license.txt for details. +// See http://.mit-license.org/license.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_252.yml b/src/licensedcode/data/rules/mit_252.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_253.RULE b/src/licensedcode/data/rules/mit_253.RULE index 2148d7275aa..e9d822f8893 100644 --- a/src/licensedcode/data/rules/mit_253.RULE +++ b/src/licensedcode/data/rules/mit_253.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // Use of this source code is governed by a MIT style // license that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_253.yml b/src/licensedcode/data/rules/mit_253.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_253.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_254.RULE b/src/licensedcode/data/rules/mit_254.RULE index dd86a014dc5..f822e17532d 100644 --- a/src/licensedcode/data/rules/mit_254.RULE +++ b/src/licensedcode/data/rules/mit_254.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + [MIT License]: LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_254.yml b/src/licensedcode/data/rules/mit_254.yml deleted file mode 100644 index 705a1c6df0f..00000000000 --- a/src/licensedcode/data/rules/mit_254.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_255.RULE b/src/licensedcode/data/rules/mit_255.RULE index ef94b39f7ba..7a4d415f0bb 100644 --- a/src/licensedcode/data/rules/mit_255.RULE +++ b/src/licensedcode/data/rules/mit_255.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Released under the [MIT License]. [MIT License]: LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_255.yml b/src/licensedcode/data/rules/mit_255.yml deleted file mode 100644 index 705a1c6df0f..00000000000 --- a/src/licensedcode/data/rules/mit_255.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_256.RULE b/src/licensedcode/data/rules/mit_256.RULE index 9cb51b23266..cc127d9cc11 100644 --- a/src/licensedcode/data/rules/mit_256.RULE +++ b/src/licensedcode/data/rules/mit_256.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Released under the [MIT License](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_256.yml b/src/licensedcode/data/rules/mit_256.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_256.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_257.RULE b/src/licensedcode/data/rules/mit_257.RULE index 0dd7b6d563c..31effab607b 100644 --- a/src/licensedcode/data/rules/mit_257.RULE +++ b/src/licensedcode/data/rules/mit_257.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License The MIT License (MIT). Read [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_257.yml b/src/licensedcode/data/rules/mit_257.yml deleted file mode 100644 index ef5356012d6..00000000000 --- a/src/licensedcode/data/rules/mit_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_258.RULE b/src/licensedcode/data/rules/mit_258.RULE index 07f9f5d3bca..885a7ab3348 100644 --- a/src/licensedcode/data/rules/mit_258.RULE +++ b/src/licensedcode/data/rules/mit_258.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is MIT-Licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_258.yml b/src/licensedcode/data/rules/mit_258.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_259.RULE b/src/licensedcode/data/rules/mit_259.RULE index 930e7f11b7b..b683f166087 100644 --- a/src/licensedcode/data/rules/mit_259.RULE +++ b/src/licensedcode/data/rules/mit_259.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + has an MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_259.yml b/src/licensedcode/data/rules/mit_259.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_26.RULE b/src/licensedcode/data/rules/mit_26.RULE index d55827ab3ef..2ba875bfea5 100644 --- a/src/licensedcode/data/rules/mit_26.RULE +++ b/src/licensedcode/data/rules/mit_26.RULE @@ -1 +1,7 @@ -The MIT License (MIT) +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + +The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_26.yml b/src/licensedcode/data/rules/mit_26.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_260.RULE b/src/licensedcode/data/rules/mit_260.RULE index 852240eb79b..efc403e7912 100644 --- a/src/licensedcode/data/rules/mit_260.RULE +++ b/src/licensedcode/data/rules/mit_260.RULE @@ -1 +1,7 @@ -MIT License (Expat) +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + +MIT License (Expat) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_260.yml b/src/licensedcode/data/rules/mit_260.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_261.RULE b/src/licensedcode/data/rules/mit_261.RULE index 243afe5fa56..ee111d5f040 100644 --- a/src/licensedcode/data/rules/mit_261.RULE +++ b/src/licensedcode/data/rules/mit_261.RULE @@ -1 +1,7 @@ -licensed under the MIT \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +licensed under the MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_261.yml b/src/licensedcode/data/rules/mit_261.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_262.RULE b/src/licensedcode/data/rules/mit_262.RULE index c14cdb161fb..41422c188a6 100644 --- a/src/licensedcode/data/rules/mit_262.RULE +++ b/src/licensedcode/data/rules/mit_262.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the MIT general use license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_262.yml b/src/licensedcode/data/rules/mit_262.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_263.RULE b/src/licensedcode/data/rules/mit_263.RULE index ff662ffba6e..fe6341f143d 100644 --- a/src/licensedcode/data/rules/mit_263.RULE +++ b/src/licensedcode/data/rules/mit_263.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License -- diff --git a/src/licensedcode/data/rules/mit_263.yml b/src/licensedcode/data/rules/mit_263.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_264.RULE b/src/licensedcode/data/rules/mit_264.RULE index 310850745fb..7d03d1d26ab 100644 --- a/src/licensedcode/data/rules/mit_264.RULE +++ b/src/licensedcode/data/rules/mit_264.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // Use of this source code is governed by the MIT // license which can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_264.yml b/src/licensedcode/data/rules/mit_264.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_264.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_265.RULE b/src/licensedcode/data/rules/mit_265.RULE index 56fe06077f8..1fc6bf22b84 100644 --- a/src/licensedcode/data/rules/mit_265.RULE +++ b/src/licensedcode/data/rules/mit_265.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://img.shields.io/badge/license-MIT +--- + license](http://img.shields.io/badge/license-MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_265.yml b/src/licensedcode/data/rules/mit_265.yml deleted file mode 100644 index 90ba9d2b153..00000000000 --- a/src/licensedcode/data/rules/mit_265.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://img.shields.io/badge/license-MIT diff --git a/src/licensedcode/data/rules/mit_266.RULE b/src/licensedcode/data/rules/mit_266.RULE index 1bd7cb53171..12912c5156b 100644 --- a/src/licensedcode/data/rules/mit_266.RULE +++ b/src/licensedcode/data/rules/mit_266.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-MIT +--- + license](https://img.shields.io/badge/license-MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_266.yml b/src/licensedcode/data/rules/mit_266.yml deleted file mode 100644 index 66ed356367a..00000000000 --- a/src/licensedcode/data/rules/mit_266.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-MIT diff --git a/src/licensedcode/data/rules/mit_267.RULE b/src/licensedcode/data/rules/mit_267.RULE index d78eae8587d..c7b1a517206 100644 --- a/src/licensedcode/data/rules/mit_267.RULE +++ b/src/licensedcode/data/rules/mit_267.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License MIT -- see `LICENSE` for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_267.yml b/src/licensedcode/data/rules/mit_267.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_267.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_268.RULE b/src/licensedcode/data/rules/mit_268.RULE index 483ee199678..8f2081bb82c 100644 --- a/src/licensedcode/data/rules/mit_268.RULE +++ b/src/licensedcode/data/rules/mit_268.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_268.yml b/src/licensedcode/data/rules/mit_268.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_268.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_269.RULE b/src/licensedcode/data/rules/mit_269.RULE index 3c6f50c740f..9489489e2eb 100644 --- a/src/licensedcode/data/rules/mit_269.RULE +++ b/src/licensedcode/data/rules/mit_269.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_269.yml b/src/licensedcode/data/rules/mit_269.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_27.RULE b/src/licensedcode/data/rules/mit_27.RULE index ab36a14eb59..2db99c715d6 100644 --- a/src/licensedcode/data/rules/mit_27.RULE +++ b/src/licensedcode/data/rules/mit_27.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_27.yml b/src/licensedcode/data/rules/mit_27.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_270.RULE b/src/licensedcode/data/rules/mit_270.RULE index 392971f7cb9..bbd66067560 100644 --- a/src/licensedcode/data/rules/mit_270.RULE +++ b/src/licensedcode/data/rules/mit_270.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + module under MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_270.yml b/src/licensedcode/data/rules/mit_270.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_271.RULE b/src/licensedcode/data/rules/mit_271.RULE index 58c05c7553a..909350404af 100644 --- a/src/licensedcode/data/rules/mit_271.RULE +++ b/src/licensedcode/data/rules/mit_271.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under the following MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_271.yml b/src/licensedcode/data/rules/mit_271.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_272.RULE b/src/licensedcode/data/rules/mit_272.RULE index 020ed184394..fec17d204b8 100644 --- a/src/licensedcode/data/rules/mit_272.RULE +++ b/src/licensedcode/data/rules/mit_272.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + "licenses": [ { "type": "MIT", \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_272.yml b/src/licensedcode/data/rules/mit_272.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_273.RULE b/src/licensedcode/data/rules/mit_273.RULE index a8b8627d216..aefca51d6bc 100644 --- a/src/licensedcode/data/rules/mit_273.RULE +++ b/src/licensedcode/data/rules/mit_273.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 90 +--- + { "type": "MIT", \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_273.yml b/src/licensedcode/data/rules/mit_273.yml deleted file mode 100644 index e1bc17e88d9..00000000000 --- a/src/licensedcode/data/rules/mit_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_274.RULE b/src/licensedcode/data/rules/mit_274.RULE index 829dcd3f704..e5141aa1111 100644 --- a/src/licensedcode/data/rules/mit_274.RULE +++ b/src/licensedcode/data/rules/mit_274.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://gitlab.com/hodgskin-callan/Invention/blob/master/LICENSE +--- + https://gitlab.com/hodgskin-callan/Invention/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_274.yml b/src/licensedcode/data/rules/mit_274.yml deleted file mode 100644 index 4ae10a52f99..00000000000 --- a/src/licensedcode/data/rules/mit_274.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://gitlab.com/hodgskin-callan/Invention/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_275.RULE b/src/licensedcode/data/rules/mit_275.RULE index 0db5824313b..6983268de7b 100644 --- a/src/licensedcode/data/rules/mit_275.RULE +++ b/src/licensedcode/data/rules/mit_275.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.arebis.be/MvcElmahDashboard/license.html +--- + http://www.arebis.be/MvcElmahDashboard/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_275.yml b/src/licensedcode/data/rules/mit_275.yml deleted file mode 100644 index d355954856d..00000000000 --- a/src/licensedcode/data/rules/mit_275.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.arebis.be/MvcElmahDashboard/license.html diff --git a/src/licensedcode/data/rules/mit_276.RULE b/src/licensedcode/data/rules/mit_276.RULE index 12fddf6dc2e..ed39fe66afc 100644 --- a/src/licensedcode/data/rules/mit_276.RULE +++ b/src/licensedcode/data/rules/mit_276.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://code.google.com/p/njupiter/source/browse/trunk/Development/License.txt +--- + http://code.google.com/p/njupiter/source/browse/trunk/Development/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_276.yml b/src/licensedcode/data/rules/mit_276.yml deleted file mode 100644 index 55c0603bfad..00000000000 --- a/src/licensedcode/data/rules/mit_276.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://code.google.com/p/njupiter/source/browse/trunk/Development/License.txt diff --git a/src/licensedcode/data/rules/mit_277.RULE b/src/licensedcode/data/rules/mit_277.RULE index bb7f7f59aca..76993b7ed05 100644 --- a/src/licensedcode/data/rules/mit_277.RULE +++ b/src/licensedcode/data/rules/mit_277.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://xrepository.com/#!License.html +--- + http://xrepository.com/#!License.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_277.yml b/src/licensedcode/data/rules/mit_277.yml deleted file mode 100644 index 55280c1e339..00000000000 --- a/src/licensedcode/data/rules/mit_277.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://xrepository.com/#!License.html diff --git a/src/licensedcode/data/rules/mit_278.RULE b/src/licensedcode/data/rules/mit_278.RULE index b830934eb2f..7c02c540746 100644 --- a/src/licensedcode/data/rules/mit_278.RULE +++ b/src/licensedcode/data/rules/mit_278.RULE @@ -1,4 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License is released under the MIT License (see below). You are free to use it in any project, commercial or otherwise, as long as the copyright header is left intact. -The same is true for any demo code, sample code, or other code examples displayed in this site. \ No newline at end of file +The same is true for any demo code, sample code, or other code examples displayed in this site. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_278.yml b/src/licensedcode/data/rules/mit_278.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_279.RULE b/src/licensedcode/data/rules/mit_279.RULE index b283158ec33..ace076aba2f 100644 --- a/src/licensedcode/data/rules/mit_279.RULE +++ b/src/licensedcode/data/rules/mit_279.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/csMACnz/BCLExtensions/blob/master/LICENSE +--- + https://github.com/csMACnz/BCLExtensions/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_279.yml b/src/licensedcode/data/rules/mit_279.yml deleted file mode 100644 index e60902ec4b5..00000000000 --- a/src/licensedcode/data/rules/mit_279.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/csMACnz/BCLExtensions/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_28.RULE b/src/licensedcode/data/rules/mit_28.RULE index 97aacc35acc..2ae308c7b56 100644 --- a/src/licensedcode/data/rules/mit_28.RULE +++ b/src/licensedcode/data/rules/mit_28.RULE @@ -1 +1,9 @@ -The MIT License (http://www.opensource.org/licenses/mit-license.php) +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + +The MIT License (http://www.opensource.org/licenses/mit-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_28.yml b/src/licensedcode/data/rules/mit_28.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_280.RULE b/src/licensedcode/data/rules/mit_280.RULE index 113d6c73b46..222dc119902 100644 --- a/src/licensedcode/data/rules/mit_280.RULE +++ b/src/licensedcode/data/rules/mit_280.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://jsm.codeplex.com/license +--- + http://jsm.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_280.yml b/src/licensedcode/data/rules/mit_280.yml deleted file mode 100644 index 7f374c530ae..00000000000 --- a/src/licensedcode/data/rules/mit_280.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://jsm.codeplex.com/license diff --git a/src/licensedcode/data/rules/mit_281.RULE b/src/licensedcode/data/rules/mit_281.RULE index 97eba78f4df..682c2ca091a 100644 --- a/src/licensedcode/data/rules/mit_281.RULE +++ b/src/licensedcode/data/rules/mit_281.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://webformsmvpcontrib.codeplex.com/license +--- + http://webformsmvpcontrib.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_281.yml b/src/licensedcode/data/rules/mit_281.yml deleted file mode 100644 index 3a34d7ca436..00000000000 --- a/src/licensedcode/data/rules/mit_281.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://webformsmvpcontrib.codeplex.com/license diff --git a/src/licensedcode/data/rules/mit_282.RULE b/src/licensedcode/data/rules/mit_282.RULE index 0a6721ba0a9..a3915391a8b 100644 --- a/src/licensedcode/data/rules/mit_282.RULE +++ b/src/licensedcode/data/rules/mit_282.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://devshed.codeplex.com/license +--- + https://devshed.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_282.yml b/src/licensedcode/data/rules/mit_282.yml deleted file mode 100644 index ce0736d69c5..00000000000 --- a/src/licensedcode/data/rules/mit_282.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://devshed.codeplex.com/license diff --git a/src/licensedcode/data/rules/mit_283.RULE b/src/licensedcode/data/rules/mit_283.RULE index 95bfc57b200..b651abe6a04 100644 --- a/src/licensedcode/data/rules/mit_283.RULE +++ b/src/licensedcode/data/rules/mit_283.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://dotspatial.codeplex.com/license +--- + http://dotspatial.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_283.yml b/src/licensedcode/data/rules/mit_283.yml deleted file mode 100644 index 7a67620d97c..00000000000 --- a/src/licensedcode/data/rules/mit_283.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://dotspatial.codeplex.com/license diff --git a/src/licensedcode/data/rules/mit_284.RULE b/src/licensedcode/data/rules/mit_284.RULE index 30e342427d3..7ad45563919 100644 --- a/src/licensedcode/data/rules/mit_284.RULE +++ b/src/licensedcode/data/rules/mit_284.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://bitbucket.org/apacha/staty +--- -https://bitbucket.org/apacha/staty +https://bitbucket.org/apacha/staty \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_284.yml b/src/licensedcode/data/rules/mit_284.yml deleted file mode 100644 index 26f779adb2e..00000000000 --- a/src/licensedcode/data/rules/mit_284.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://bitbucket.org/apacha/staty diff --git a/src/licensedcode/data/rules/mit_285.RULE b/src/licensedcode/data/rules/mit_285.RULE index aff38d59ffa..b996c58d514 100644 --- a/src/licensedcode/data/rules/mit_285.RULE +++ b/src/licensedcode/data/rules/mit_285.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://bitbucket.org/ant512/tasks/src/tip/Licence.txt +--- + https://bitbucket.org/ant512/tasks/src/tip/Licence.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_285.yml b/src/licensedcode/data/rules/mit_285.yml deleted file mode 100644 index 88c33861696..00000000000 --- a/src/licensedcode/data/rules/mit_285.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://bitbucket.org/ant512/tasks/src/tip/Licence.txt diff --git a/src/licensedcode/data/rules/mit_286.RULE b/src/licensedcode/data/rules/mit_286.RULE index f6b92935382..254a250e96b 100644 --- a/src/licensedcode/data/rules/mit_286.RULE +++ b/src/licensedcode/data/rules/mit_286.RULE @@ -1 +1,9 @@ -https://bitbucket.org/horizongir/bonsai/raw/0391fb050a80c94f8ff45c861678a41ae97ca257/LICENSE +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://bitbucket.org/horizongir/bonsai/raw/0391fb050a80c94f8ff45c861678a41ae97ca257/LICENSE +--- + +https://bitbucket.org/horizongir/bonsai/raw/0391fb050a80c94f8ff45c861678a41ae97ca257/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_286.yml b/src/licensedcode/data/rules/mit_286.yml deleted file mode 100644 index a871f7cce2f..00000000000 --- a/src/licensedcode/data/rules/mit_286.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://bitbucket.org/horizongir/bonsai/raw/0391fb050a80c94f8ff45c861678a41ae97ca257/LICENSE diff --git a/src/licensedcode/data/rules/mit_287.RULE b/src/licensedcode/data/rules/mit_287.RULE index ea21c3693a1..bf15d301b22 100644 --- a/src/licensedcode/data/rules/mit_287.RULE +++ b/src/licensedcode/data/rules/mit_287.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://bitbucket.org/DanRoberts/vbscripttranslator/src/cb2f9d3334373d8359f4ab177232a1242c1d1ca4/LICENSE.txt +--- + https://bitbucket.org/DanRoberts/vbscripttranslator/src/cb2f9d3334373d8359f4ab177232a1242c1d1ca4/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_287.yml b/src/licensedcode/data/rules/mit_287.yml deleted file mode 100644 index 02dcb59cad9..00000000000 --- a/src/licensedcode/data/rules/mit_287.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://bitbucket.org/DanRoberts/vbscripttranslator/src/cb2f9d3334373d8359f4ab177232a1242c1d1ca4/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_288.RULE b/src/licensedcode/data/rules/mit_288.RULE index 2c3046193d4..290ab4cc970 100644 --- a/src/licensedcode/data/rules/mit_288.RULE +++ b/src/licensedcode/data/rules/mit_288.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/surgeforward/Surge-SlickGrid-Extensions/blob/master/Surge.SlickGrid.Extensions-license.txt +--- + https://github.com/surgeforward/Surge-SlickGrid-Extensions/blob/master/Surge.SlickGrid.Extensions-license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_288.yml b/src/licensedcode/data/rules/mit_288.yml deleted file mode 100644 index 52a88847ff6..00000000000 --- a/src/licensedcode/data/rules/mit_288.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/surgeforward/Surge-SlickGrid-Extensions/blob/master/Surge.SlickGrid.Extensions-license.txt diff --git a/src/licensedcode/data/rules/mit_289.RULE b/src/licensedcode/data/rules/mit_289.RULE index 04d5f35fe01..eddf103b442 100644 --- a/src/licensedcode/data/rules/mit_289.RULE +++ b/src/licensedcode/data/rules/mit_289.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 70 +ignorable_urls: + - https://raw.githubusercontent.com/ichenkaihua/EasyHttp4Net/master/License +--- + https://raw.githubusercontent.com/ichenkaihua/EasyHttp4Net/master/License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_289.yml b/src/licensedcode/data/rules/mit_289.yml deleted file mode 100644 index a0179ee26b4..00000000000 --- a/src/licensedcode/data/rules/mit_289.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 70 -ignorable_urls: - - https://raw.githubusercontent.com/ichenkaihua/EasyHttp4Net/master/License diff --git a/src/licensedcode/data/rules/mit_29.RULE b/src/licensedcode/data/rules/mit_29.RULE index 2c894a4750b..f580f43112e 100644 --- a/src/licensedcode/data/rules/mit_29.RULE +++ b/src/licensedcode/data/rules/mit_29.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + distributed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_29.yml b/src/licensedcode/data/rules/mit_29.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_290.RULE b/src/licensedcode/data/rules/mit_290.RULE index fd70a63940f..9bf3d377340 100644 --- a/src/licensedcode/data/rules/mit_290.RULE +++ b/src/licensedcode/data/rules/mit_290.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/Tazmainiandevil/Useful.Extensions/master/LICENSE +--- + https://raw.githubusercontent.com/Tazmainiandevil/Useful.Extensions/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_290.yml b/src/licensedcode/data/rules/mit_290.yml deleted file mode 100644 index 1d5236b66b6..00000000000 --- a/src/licensedcode/data/rules/mit_290.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/Tazmainiandevil/Useful.Extensions/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_291.RULE b/src/licensedcode/data/rules/mit_291.RULE index 59582552ed8..8b200ee4fe7 100644 --- a/src/licensedcode/data/rules/mit_291.RULE +++ b/src/licensedcode/data/rules/mit_291.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Countly/countly-sdk-ios/blob/master/LICENSE +--- + https://github.com/Countly/countly-sdk-ios/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_291.yml b/src/licensedcode/data/rules/mit_291.yml deleted file mode 100644 index 5319bbc8ecd..00000000000 --- a/src/licensedcode/data/rules/mit_291.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Countly/countly-sdk-ios/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_292.RULE b/src/licensedcode/data/rules/mit_292.RULE index 2dd61b14aab..3fee62ce2a0 100644 --- a/src/licensedcode/data/rules/mit_292.RULE +++ b/src/licensedcode/data/rules/mit_292.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Microsoft/MSBuildSdks/raw/master/LICENSE +--- + https://github.com/Microsoft/MSBuildSdks/raw/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_292.yml b/src/licensedcode/data/rules/mit_292.yml deleted file mode 100644 index ffb46a6b30d..00000000000 --- a/src/licensedcode/data/rules/mit_292.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Microsoft/MSBuildSdks/raw/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_293.RULE b/src/licensedcode/data/rules/mit_293.RULE index d163aa2aa48..2a3f12b62e8 100644 --- a/src/licensedcode/data/rules/mit_293.RULE +++ b/src/licensedcode/data/rules/mit_293.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Microsoft/MSBuildSdks/raw/master/LICENSE.txt +--- + https://github.com/Microsoft/MSBuildSdks/raw/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_293.yml b/src/licensedcode/data/rules/mit_293.yml deleted file mode 100644 index e9e4e8902db..00000000000 --- a/src/licensedcode/data/rules/mit_293.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Microsoft/MSBuildSdks/raw/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_294.RULE b/src/licensedcode/data/rules/mit_294.RULE index bff35d8f472..8985f5c7533 100644 --- a/src/licensedcode/data/rules/mit_294.RULE +++ b/src/licensedcode/data/rules/mit_294.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jamesmcroft/XPlat-API-Toolkit/raw/master/LICENSE +--- + https://github.com/jamesmcroft/XPlat-API-Toolkit/raw/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_294.yml b/src/licensedcode/data/rules/mit_294.yml deleted file mode 100644 index 2053dba55ce..00000000000 --- a/src/licensedcode/data/rules/mit_294.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jamesmcroft/XPlat-API-Toolkit/raw/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_295.RULE b/src/licensedcode/data/rules/mit_295.RULE index 3745362da94..ec66b52f8a1 100644 --- a/src/licensedcode/data/rules/mit_295.RULE +++ b/src/licensedcode/data/rules/mit_295.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/imanushin/CheckContracts/blob/master/license.txt +--- + https://github.com/imanushin/CheckContracts/blob/master/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_295.yml b/src/licensedcode/data/rules/mit_295.yml deleted file mode 100644 index 6d5fcccef97..00000000000 --- a/src/licensedcode/data/rules/mit_295.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/imanushin/CheckContracts/blob/master/license.txt diff --git a/src/licensedcode/data/rules/mit_296.RULE b/src/licensedcode/data/rules/mit_296.RULE index ffa5f5bab7d..e0b0a56ba2d 100644 --- a/src/licensedcode/data/rules/mit_296.RULE +++ b/src/licensedcode/data/rules/mit_296.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/github/octicons/raw/master/LICENSE.txt +--- + https://github.com/github/octicons/raw/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_296.yml b/src/licensedcode/data/rules/mit_296.yml deleted file mode 100644 index 16eb17f72e5..00000000000 --- a/src/licensedcode/data/rules/mit_296.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/github/octicons/raw/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_297.RULE b/src/licensedcode/data/rules/mit_297.RULE index d1ec82c2b54..b2347af6d30 100644 --- a/src/licensedcode/data/rules/mit_297.RULE +++ b/src/licensedcode/data/rules/mit_297.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/CodeCavePro/revit-toolkit/blob/master/LICENSE.txt +--- + https://github.com/CodeCavePro/revit-toolkit/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_297.yml b/src/licensedcode/data/rules/mit_297.yml deleted file mode 100644 index 631765f3327..00000000000 --- a/src/licensedcode/data/rules/mit_297.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/CodeCavePro/revit-toolkit/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_298.RULE b/src/licensedcode/data/rules/mit_298.RULE index cb31511b824..1a5efab6bd1 100644 --- a/src/licensedcode/data/rules/mit_298.RULE +++ b/src/licensedcode/data/rules/mit_298.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/CodeCavePro/revit-toolkit/master/LICENSE.txt +--- + https://github.com/CodeCavePro/revit-toolkit/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_298.yml b/src/licensedcode/data/rules/mit_298.yml deleted file mode 100644 index bdd03c11aa0..00000000000 --- a/src/licensedcode/data/rules/mit_298.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/CodeCavePro/revit-toolkit/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_299.RULE b/src/licensedcode/data/rules/mit_299.RULE index ff7fa566f05..c06563a7637 100644 --- a/src/licensedcode/data/rules/mit_299.RULE +++ b/src/licensedcode/data/rules/mit_299.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed with MIT X11 license (see license text below) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_299.yml b/src/licensedcode/data/rules/mit_299.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_3.RULE b/src/licensedcode/data/rules/mit_3.RULE index e003cefb2f9..e1bec5c2bbe 100644 --- a/src/licensedcode/data/rules/mit_3.RULE +++ b/src/licensedcode/data/rules/mit_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: there are some minor text differences +--- + "Permission is hereby granted, free of charge, to any person obtaining a copy of this file (the Software), to deal in the Software without restriction, including without limitation the @@ -16,4 +23,4 @@ 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." +OTHER DEALINGS IN THE SOFTWARE." \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_3.yml b/src/licensedcode/data/rules/mit_3.yml deleted file mode 100644 index 7bf2addee05..00000000000 --- a/src/licensedcode/data/rules/mit_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: there are some minor text differences diff --git a/src/licensedcode/data/rules/mit_30.RULE b/src/licensedcode/data/rules/mit_30.RULE index d3eefa5428e..da2ec700d90 100644 --- a/src/licensedcode/data/rules/mit_30.RULE +++ b/src/licensedcode/data/rules/mit_30.RULE @@ -1 +1,7 @@ -License: MIT +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + +License: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_30.yml b/src/licensedcode/data/rules/mit_30.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_300.RULE b/src/licensedcode/data/rules/mit_300.RULE index 9b2d6cb3c69..290e8ac3126 100644 --- a/src/licensedcode/data/rules/mit_300.RULE +++ b/src/licensedcode/data/rules/mit_300.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License Licensed under MIT see License file. Each plugin licensed under parent license unless stated in it's readme file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_300.yml b/src/licensedcode/data/rules/mit_300.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_301.RULE b/src/licensedcode/data/rules/mit_301.RULE index 117cf74d86e..99d55d88044 100644 --- a/src/licensedcode/data/rules/mit_301.RULE +++ b/src/licensedcode/data/rules/mit_301.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=865381 +--- + https://go.microsoft.com/fwlink/?linkid=865381 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_301.yml b/src/licensedcode/data/rules/mit_301.yml deleted file mode 100644 index 0b38ddc1b0d..00000000000 --- a/src/licensedcode/data/rules/mit_301.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=865381 diff --git a/src/licensedcode/data/rules/mit_302.RULE b/src/licensedcode/data/rules/mit_302.RULE index fa6b7602d95..56989031019 100644 --- a/src/licensedcode/data/rules/mit_302.RULE +++ b/src/licensedcode/data/rules/mit_302.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/Microsoft/MSBuildSdks/blob/master/LICENSE +--- + https://github.com/Microsoft/MSBuildSdks/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_302.yml b/src/licensedcode/data/rules/mit_302.yml deleted file mode 100644 index 7b27a091417..00000000000 --- a/src/licensedcode/data/rules/mit_302.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/Microsoft/MSBuildSdks/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_303.RULE b/src/licensedcode/data/rules/mit_303.RULE index 8c1e5df2cd0..66050f7ee31 100644 --- a/src/licensedcode/data/rules/mit_303.RULE +++ b/src/licensedcode/data/rules/mit_303.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/acastr7/Xamarin.Plugins/blob/master/README.md +--- + https://github.com/acastr7/Xamarin.Plugins/blob/master/README.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_303.yml b/src/licensedcode/data/rules/mit_303.yml deleted file mode 100644 index 7b254a0454f..00000000000 --- a/src/licensedcode/data/rules/mit_303.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/acastr7/Xamarin.Plugins/blob/master/README.md diff --git a/src/licensedcode/data/rules/mit_304.RULE b/src/licensedcode/data/rules/mit_304.RULE index 89094934899..5ebb4c130e8 100644 --- a/src/licensedcode/data/rules/mit_304.RULE +++ b/src/licensedcode/data/rules/mit_304.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/jamesmcroft/XPlat-API-Toolkit/blob/master/LICENSE +--- + https://github.com/jamesmcroft/XPlat-API-Toolkit/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_304.yml b/src/licensedcode/data/rules/mit_304.yml deleted file mode 100644 index 1e286b14380..00000000000 --- a/src/licensedcode/data/rules/mit_304.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/jamesmcroft/XPlat-API-Toolkit/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_305.RULE b/src/licensedcode/data/rules/mit_305.RULE index 1acdeb279ba..53743e39e0d 100644 --- a/src/licensedcode/data/rules/mit_305.RULE +++ b/src/licensedcode/data/rules/mit_305.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/github/octicons/blob/master/LICENSE.txt +--- + https://github.com/github/octicons/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_305.yml b/src/licensedcode/data/rules/mit_305.yml deleted file mode 100644 index 48066027edd..00000000000 --- a/src/licensedcode/data/rules/mit_305.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/github/octicons/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_306.RULE b/src/licensedcode/data/rules/mit_306.RULE index 99fe14edcb1..537ec48e463 100644 --- a/src/licensedcode/data/rules/mit_306.RULE +++ b/src/licensedcode/data/rules/mit_306.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + The distribution is licensed under the MIT License (http://opensource.org/licenses/mit-license.php). mozilla \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_306.yml b/src/licensedcode/data/rules/mit_306.yml deleted file mode 100644 index 7373c706e13..00000000000 --- a/src/licensedcode/data/rules/mit_306.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_307.RULE b/src/licensedcode/data/rules/mit_307.RULE index 82674a9d6d1..3fdcb0a4cbe 100644 --- a/src/licensedcode/data/rules/mit_307.RULE +++ b/src/licensedcode/data/rules/mit_307.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + in accordance with the terms of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_307.yml b/src/licensedcode/data/rules/mit_307.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_308.RULE b/src/licensedcode/data/rules/mit_308.RULE index 079ed5bd59a..41483b3f5c6 100644 --- a/src/licensedcode/data/rules/mit_308.RULE +++ b/src/licensedcode/data/rules/mit_308.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This is free software; you can redistribute it and/or modify it under the terms of the License (based on the MIT/X license) contained in the file COPYING that comes with this distribution. diff --git a/src/licensedcode/data/rules/mit_308.yml b/src/licensedcode/data/rules/mit_308.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_308.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_309.RULE b/src/licensedcode/data/rules/mit_309.RULE index 22ebfd2655f..644fd28f852 100644 --- a/src/licensedcode/data/rules/mit_309.RULE +++ b/src/licensedcode/data/rules/mit_309.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + EXPAT is free software; you can redistribute it and/or modify it under the terms of the License (based on the MIT/X license) contained @@ -9,4 +17,4 @@ 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 EXPAT. + SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_309.yml b/src/licensedcode/data/rules/mit_309.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_309.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_31.RULE b/src/licensedcode/data/rules/mit_31.RULE index 2dd87456b02..8c772fd3bb1 100644 --- a/src/licensedcode/data/rules/mit_31.RULE +++ b/src/licensedcode/data/rules/mit_31.RULE @@ -1 +1,7 @@ -License: MIT license +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + +License: MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_31.yml b/src/licensedcode/data/rules/mit_31.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_310.RULE b/src/licensedcode/data/rules/mit_310.RULE index 513cb5e0a72..02dfcc64306 100644 --- a/src/licensedcode/data/rules/mit_310.RULE +++ b/src/licensedcode/data/rules/mit_310.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + EXPAT is free software; you can redistribute it and/or modify it under the terms of the License (based on the MIT/X license) contained in the file COPYING that comes with this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_310.yml b/src/licensedcode/data/rules/mit_310.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_310.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_311.RULE b/src/licensedcode/data/rules/mit_311.RULE index abbb12a36b9..39fcad2b716 100644 --- a/src/licensedcode/data/rules/mit_311.RULE +++ b/src/licensedcode/data/rules/mit_311.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This is free software; you can redistribute it and/or modify it under the terms of the License (based on the MIT/X license) contained in the file COPYING that comes with this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_311.yml b/src/licensedcode/data/rules/mit_311.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_311.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_312.RULE b/src/licensedcode/data/rules/mit_312.RULE index 9d487c51fb5..4adb63565e2 100644 --- a/src/licensedcode/data/rules/mit_312.RULE +++ b/src/licensedcode/data/rules/mit_312.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This program is free software; you can redistribute it and/or modify it under the terms of the license contained in the COPYING file that comes with the expat distribution. diff --git a/src/licensedcode/data/rules/mit_312.yml b/src/licensedcode/data/rules/mit_312.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_312.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_313.RULE b/src/licensedcode/data/rules/mit_313.RULE index 95f9e8e62d1..edfc744904a 100644 --- a/src/licensedcode/data/rules/mit_313.RULE +++ b/src/licensedcode/data/rules/mit_313.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + expat is free software; you can redistribute it and/or modify it under the terms of the license contained in the COPYING file that comes with the expat distribution. diff --git a/src/licensedcode/data/rules/mit_313.yml b/src/licensedcode/data/rules/mit_313.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_313.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_314.RULE b/src/licensedcode/data/rules/mit_314.RULE index accf40c7e8e..08bf388c1a1 100644 --- a/src/licensedcode/data/rules/mit_314.RULE +++ b/src/licensedcode/data/rules/mit_314.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + You may copy, distribute, and modify it under the terms of the License contained in the file COPYING distributed with this package. This license is the same as the MIT/X Consortium diff --git a/src/licensedcode/data/rules/mit_314.yml b/src/licensedcode/data/rules/mit_314.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_314.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_315.RULE b/src/licensedcode/data/rules/mit_315.RULE index 151293527b4..8b57e418126 100644 --- a/src/licensedcode/data/rules/mit_315.RULE +++ b/src/licensedcode/data/rules/mit_315.RULE @@ -1,4 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Expat is free software. You may copy, distribute, and modify it under the terms of the License contained in the file COPYING distributed with this package. This license is the same as the MIT/X Consortium -license. +license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_315.yml b/src/licensedcode/data/rules/mit_315.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_315.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_316.RULE b/src/licensedcode/data/rules/mit_316.RULE index 80f7456e8a8..b5ebdaee023 100644 --- a/src/licensedcode/data/rules/mit_316.RULE +++ b/src/licensedcode/data/rules/mit_316.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + Licence: http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_316.yml b/src/licensedcode/data/rules/mit_316.yml deleted file mode 100644 index 7b82c119884..00000000000 --- a/src/licensedcode/data/rules/mit_316.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_317.RULE b/src/licensedcode/data/rules/mit_317.RULE index 28bba194d4b..b236968d4f3 100644 --- a/src/licensedcode/data/rules/mit_317.RULE +++ b/src/licensedcode/data/rules/mit_317.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + Licence: https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_317.yml b/src/licensedcode/data/rules/mit_317.yml deleted file mode 100644 index 981cc0c5377..00000000000 --- a/src/licensedcode/data/rules/mit_317.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_318.RULE b/src/licensedcode/data/rules/mit_318.RULE index 1e9f53211b1..0c638ec2259 100644 --- a/src/licensedcode/data/rules/mit_318.RULE +++ b/src/licensedcode/data/rules/mit_318.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + License: https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_318.yml b/src/licensedcode/data/rules/mit_318.yml deleted file mode 100644 index 981cc0c5377..00000000000 --- a/src/licensedcode/data/rules/mit_318.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_319.RULE b/src/licensedcode/data/rules/mit_319.RULE index bc43ab284eb..de7737c4761 100644 --- a/src/licensedcode/data/rules/mit_319.RULE +++ b/src/licensedcode/data/rules/mit_319.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + License: http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_319.yml b/src/licensedcode/data/rules/mit_319.yml deleted file mode 100644 index 7b82c119884..00000000000 --- a/src/licensedcode/data/rules/mit_319.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_32.RULE b/src/licensedcode/data/rules/mit_32.RULE index dc4af38f44e..ee4d0e06b6d 100644 --- a/src/licensedcode/data/rules/mit_32.RULE +++ b/src/licensedcode/data/rules/mit_32.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +--- + * This library is free software; you can redistribute it and/or modify - * it under the terms of the MIT license. See LICENSE for details. + * it under the terms of the MIT license. See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_32.yml b/src/licensedcode/data/rules/mit_32.yml deleted file mode 100644 index d2f4936e6e3..00000000000 --- a/src/licensedcode/data/rules/mit_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_320.RULE b/src/licensedcode/data/rules/mit_320.RULE index 9f758aec303..4dfa670edec 100644 --- a/src/licensedcode/data/rules/mit_320.RULE +++ b/src/licensedcode/data/rules/mit_320.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://gomakethings.com/mit/ +--- + Licensed under MIT: http://gomakethings.com/mit/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_320.yml b/src/licensedcode/data/rules/mit_320.yml deleted file mode 100644 index 397f5da0e73..00000000000 --- a/src/licensedcode/data/rules/mit_320.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://gomakethings.com/mit/ diff --git a/src/licensedcode/data/rules/mit_321.RULE b/src/licensedcode/data/rules/mit_321.RULE index f168efcb104..bb8920f4f2d 100644 --- a/src/licensedcode/data/rules/mit_321.RULE +++ b/src/licensedcode/data/rules/mit_321.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + MIT Licence - http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_321.yml b/src/licensedcode/data/rules/mit_321.yml deleted file mode 100644 index 388b31d5975..00000000000 --- a/src/licensedcode/data/rules/mit_321.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_322.RULE b/src/licensedcode/data/rules/mit_322.RULE index 01118549e3f..09e71ff7bf6 100644 --- a/src/licensedcode/data/rules/mit_322.RULE +++ b/src/licensedcode/data/rules/mit_322.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + MIT Licence - https://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_322.yml b/src/licensedcode/data/rules/mit_322.yml deleted file mode 100644 index 4aa4a806f02..00000000000 --- a/src/licensedcode/data/rules/mit_322.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_323.RULE b/src/licensedcode/data/rules/mit_323.RULE index 084807c6118..0bff0545df8 100644 --- a/src/licensedcode/data/rules/mit_323.RULE +++ b/src/licensedcode/data/rules/mit_323.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + MIT License - https://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_323.yml b/src/licensedcode/data/rules/mit_323.yml deleted file mode 100644 index 4aa4a806f02..00000000000 --- a/src/licensedcode/data/rules/mit_323.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_324.RULE b/src/licensedcode/data/rules/mit_324.RULE index 9a635ef8282..8c1962a33bb 100644 --- a/src/licensedcode/data/rules/mit_324.RULE +++ b/src/licensedcode/data/rules/mit_324.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + MIT License - http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_324.yml b/src/licensedcode/data/rules/mit_324.yml deleted file mode 100644 index 388b31d5975..00000000000 --- a/src/licensedcode/data/rules/mit_324.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_325.RULE b/src/licensedcode/data/rules/mit_325.RULE index c468f7b4e10..15b0a1992a7 100644 --- a/src/licensedcode/data/rules/mit_325.RULE +++ b/src/licensedcode/data/rules/mit_325.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + * The MIT License - http://opensource.org/licenses/MIT + http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_325.yml b/src/licensedcode/data/rules/mit_325.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_325.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_326.RULE b/src/licensedcode/data/rules/mit_326.RULE index d0e965df2d9..317bbcb083b 100644 --- a/src/licensedcode/data/rules/mit_326.RULE +++ b/src/licensedcode/data/rules/mit_326.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + * The MIT License https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_326.yml b/src/licensedcode/data/rules/mit_326.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_326.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_327.RULE b/src/licensedcode/data/rules/mit_327.RULE index da3d44c5594..cc387939bc1 100644 --- a/src/licensedcode/data/rules/mit_327.RULE +++ b/src/licensedcode/data/rules/mit_327.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://chilts.mit-license.org/2012/ +--- + https://chilts.mit-license.org/2012/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_327.yml b/src/licensedcode/data/rules/mit_327.yml deleted file mode 100644 index 27f133854ea..00000000000 --- a/src/licensedcode/data/rules/mit_327.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://chilts.mit-license.org/2012/ diff --git a/src/licensedcode/data/rules/mit_328.RULE b/src/licensedcode/data/rules/mit_328.RULE index 349921b8044..6ab1a361ebf 100644 --- a/src/licensedcode/data/rules/mit_328.RULE +++ b/src/licensedcode/data/rules/mit_328.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://github.com/appsattic/fmt/raw/master/LICENSE +--- + "licenses": [{ "type": "MIT", "url": "http://github.com/appsattic/fmt/raw/master/LICENSE" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_328.yml b/src/licensedcode/data/rules/mit_328.yml deleted file mode 100644 index 6eef9af99c8..00000000000 --- a/src/licensedcode/data/rules/mit_328.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://github.com/appsattic/fmt/raw/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_329.RULE b/src/licensedcode/data/rules/mit_329.RULE index ddb4a9d7227..49a8d97a4b8 100644 --- a/src/licensedcode/data/rules/mit_329.RULE +++ b/src/licensedcode/data/rules/mit_329.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://appsattic.mit-license.org/2012/ +--- + http://appsattic.mit-license.org/2012/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_329.yml b/src/licensedcode/data/rules/mit_329.yml deleted file mode 100644 index 22977903e1c..00000000000 --- a/src/licensedcode/data/rules/mit_329.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://appsattic.mit-license.org/2012/ diff --git a/src/licensedcode/data/rules/mit_33.RULE b/src/licensedcode/data/rules/mit_33.RULE index 59a8453f6b4..a1571d47876 100644 --- a/src/licensedcode/data/rules/mit_33.RULE +++ b/src/licensedcode/data/rules/mit_33.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is released under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_33.yml b/src/licensedcode/data/rules/mit_33.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_330.RULE b/src/licensedcode/data/rules/mit_330.RULE index 237ecc264fc..4c4f80e18d1 100644 --- a/src/licensedcode/data/rules/mit_330.RULE +++ b/src/licensedcode/data/rules/mit_330.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://appsattic.mit-license.org/2012 + - http://appsattic.mit-license.org/2012/ +--- + # License # MIT: [http://appsattic.mit-license.org/2012/](http://appsattic.mit-license.org/2012/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_330.yml b/src/licensedcode/data/rules/mit_330.yml deleted file mode 100644 index 2f439b78e6b..00000000000 --- a/src/licensedcode/data/rules/mit_330.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://appsattic.mit-license.org/2012 - - http://appsattic.mit-license.org/2012/ diff --git a/src/licensedcode/data/rules/mit_331.RULE b/src/licensedcode/data/rules/mit_331.RULE index 7dab184695f..c8bc59c3480 100644 --- a/src/licensedcode/data/rules/mit_331.RULE +++ b/src/licensedcode/data/rules/mit_331.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://appsattic.mit-license.org/2012/ +--- + License MIT: http://appsattic.mit-license.org/2012/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_331.yml b/src/licensedcode/data/rules/mit_331.yml deleted file mode 100644 index c105366143c..00000000000 --- a/src/licensedcode/data/rules/mit_331.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://appsattic.mit-license.org/2012/ diff --git a/src/licensedcode/data/rules/mit_332.RULE b/src/licensedcode/data/rules/mit_332.RULE index 82f34672ae5..339b4f05db5 100644 --- a/src/licensedcode/data/rules/mit_332.RULE +++ b/src/licensedcode/data/rules/mit_332.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is published under the MIT license as published here: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_332.yml b/src/licensedcode/data/rules/mit_332.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_333.RULE b/src/licensedcode/data/rules/mit_333.RULE index 2e7e5823cd5..4d0d5ffeb7d 100644 --- a/src/licensedcode/data/rules/mit_333.RULE +++ b/src/licensedcode/data/rules/mit_333.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://appsattic.mit-license.org/2012/ +--- + This software is published under the MIT license as published here: * http://appsattic.mit-license.org/2012/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_333.yml b/src/licensedcode/data/rules/mit_333.yml deleted file mode 100644 index 195159071a4..00000000000 --- a/src/licensedcode/data/rules/mit_333.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://appsattic.mit-license.org/2012/ diff --git a/src/licensedcode/data/rules/mit_334.RULE b/src/licensedcode/data/rules/mit_334.RULE index b81f3090523..390316fcb13 100644 --- a/src/licensedcode/data/rules/mit_334.RULE +++ b/src/licensedcode/data/rules/mit_334.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This software is released under the MIT software license. This license, including disclaimer, is available in the 'LICENSE' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_334.yml b/src/licensedcode/data/rules/mit_334.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_334.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_335.RULE b/src/licensedcode/data/rules/mit_335.RULE index 6ab97e0f578..f59c27223a5 100644 --- a/src/licensedcode/data/rules/mit_335.RULE +++ b/src/licensedcode/data/rules/mit_335.RULE @@ -1 +1,7 @@ -This software is released under the MIT software license. \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +This software is released under the MIT software license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_335.yml b/src/licensedcode/data/rules/mit_335.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_335.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_336.RULE b/src/licensedcode/data/rules/mit_336.RULE index 02d327615a8..f214fd030e3 100644 --- a/src/licensedcode/data/rules/mit_336.RULE +++ b/src/licensedcode/data/rules/mit_336.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + This is the MIT Software License which is OSI-certified, and GPL-compatible. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_336.yml b/src/licensedcode/data/rules/mit_336.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_336.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_337.RULE b/src/licensedcode/data/rules/mit_337.RULE index 1aed226849a..d1a902255ae 100644 --- a/src/licensedcode/data/rules/mit_337.RULE +++ b/src/licensedcode/data/rules/mit_337.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + This is the http://www.opensource.org/licenses/mit-license.php MIT Software License which is OSI-certified, and GPL-compatible. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_337.yml b/src/licensedcode/data/rules/mit_337.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_337.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_338.RULE b/src/licensedcode/data/rules/mit_338.RULE index 11a2e9d05c6..95109e41f7b 100644 --- a/src/licensedcode/data/rules/mit_338.RULE +++ b/src/licensedcode/data/rules/mit_338.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_338.yml b/src/licensedcode/data/rules/mit_338.yml deleted file mode 100644 index df8a50b1400..00000000000 --- a/src/licensedcode/data/rules/mit_338.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_339.RULE b/src/licensedcode/data/rules/mit_339.RULE index bea4a7ba74f..20c21760d9f 100644 --- a/src/licensedcode/data/rules/mit_339.RULE +++ b/src/licensedcode/data/rules/mit_339.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + ## License -The app is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). +The app is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_339.yml b/src/licensedcode/data/rules/mit_339.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_34.RULE b/src/licensedcode/data/rules/mit_34.RULE index 7f60dec4831..5a61f10c325 100644 --- a/src/licensedcode/data/rules/mit_34.RULE +++ b/src/licensedcode/data/rules/mit_34.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + Distributed under MIT license. -See file LICENSE for detail or copy at https://opensource.org/licenses/MIT +See file LICENSE for detail or copy at https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_34.yml b/src/licensedcode/data/rules/mit_34.yml deleted file mode 100644 index 45b4b784a48..00000000000 --- a/src/licensedcode/data/rules/mit_34.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_340.RULE b/src/licensedcode/data/rules/mit_340.RULE index 0b42fe04945..b6b6f35adc4 100644 --- a/src/licensedcode/data/rules/mit_340.RULE +++ b/src/licensedcode/data/rules/mit_340.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License The app is available as open source under the terms of the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_340.yml b/src/licensedcode/data/rules/mit_340.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_340.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_341.RULE b/src/licensedcode/data/rules/mit_341.RULE index e5a6c2b4347..1afbe293ca5 100644 --- a/src/licensedcode/data/rules/mit_341.RULE +++ b/src/licensedcode/data/rules/mit_341.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + // Use of this source code is governed by an MIT-style // license that can be found in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_341.yml b/src/licensedcode/data/rules/mit_341.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_341.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_342.RULE b/src/licensedcode/data/rules/mit_342.RULE index dd022740a26..e4c851de69e 100644 --- a/src/licensedcode/data/rules/mit_342.RULE +++ b/src/licensedcode/data/rules/mit_342.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + License This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_342.yml b/src/licensedcode/data/rules/mit_342.yml deleted file mode 100644 index 0281c09eda5..00000000000 --- a/src/licensedcode/data/rules/mit_342.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_343.RULE b/src/licensedcode/data/rules/mit_343.RULE index bf7e52faf22..49701794c10 100644 --- a/src/licensedcode/data/rules/mit_343.RULE +++ b/src/licensedcode/data/rules/mit_343.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + all included source files are distributed under terms of the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_343.yml b/src/licensedcode/data/rules/mit_343.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_343.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_344.RULE b/src/licensedcode/data/rules/mit_344.RULE index fa96ee3018f..bd373c2c6bf 100644 --- a/src/licensedcode/data/rules/mit_344.RULE +++ b/src/licensedcode/data/rules/mit_344.RULE @@ -1,4 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + // Licensed under the {{MIT License}} (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/MIT}} +// http://opensource->org/{{licenses/MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_344.yml b/src/licensedcode/data/rules/mit_344.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_344.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_345.RULE b/src/licensedcode/data/rules/mit_345.RULE index 21dc286470d..2ae1b68ee09 100644 --- a/src/licensedcode/data/rules/mit_345.RULE +++ b/src/licensedcode/data/rules/mit_345.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + * This software is released under the MIT License-> * http://opensource->org/licenses/mit-license->php * http://opensource->org/licenses/mit-license->php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_345.yml b/src/licensedcode/data/rules/mit_345.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_345.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_346.RULE b/src/licensedcode/data/rules/mit_346.RULE index 551e5ec2896..5507387a600 100644 --- a/src/licensedcode/data/rules/mit_346.RULE +++ b/src/licensedcode/data/rules/mit_346.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +--- + The MIT License (MIT) Copyright (c) <%= Time.now.year %> <%= author %> <<%= email %>> diff --git a/src/licensedcode/data/rules/mit_346.yml b/src/licensedcode/data/rules/mit_346.yml deleted file mode 100644 index 76b37c35592..00000000000 --- a/src/licensedcode/data/rules/mit_346.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/mit_347.RULE b/src/licensedcode/data/rules/mit_347.RULE index 72922fe4a69..870603f9745 100644 --- a/src/licensedcode/data/rules/mit_347.RULE +++ b/src/licensedcode/data/rules/mit_347.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + # License This project is licensed under the terms of the MIT license. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_347.yml b/src/licensedcode/data/rules/mit_347.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_347.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_348.RULE b/src/licensedcode/data/rules/mit_348.RULE index a7b106d76ca..686255ea8cb 100644 --- a/src/licensedcode/data/rules/mit_348.RULE +++ b/src/licensedcode/data/rules/mit_348.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is licensed under the terms of the MIT license. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_348.yml b/src/licensedcode/data/rules/mit_348.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_348.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_349.RULE b/src/licensedcode/data/rules/mit_349.RULE index 415b3e92862..6d4f012f059 100644 --- a/src/licensedcode/data/rules/mit_349.RULE +++ b/src/licensedcode/data/rules/mit_349.RULE @@ -1 +1,7 @@ -This project is licensed under the terms of the MIT license. \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +This project is licensed under the terms of the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_349.yml b/src/licensedcode/data/rules/mit_349.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_349.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_35.RULE b/src/licensedcode/data/rules/mit_35.RULE index 22ae0486af3..d38877f7050 100644 --- a/src/licensedcode/data/rules/mit_35.RULE +++ b/src/licensedcode/data/rules/mit_35.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + This program is made available under the terms of the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_35.yml b/src/licensedcode/data/rules/mit_35.yml deleted file mode 100644 index ff3541afabf..00000000000 --- a/src/licensedcode/data/rules/mit_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit_350.RULE b/src/licensedcode/data/rules/mit_350.RULE index e7d59b1aa98..6076906936c 100644 --- a/src/licensedcode/data/rules/mit_350.RULE +++ b/src/licensedcode/data/rules/mit_350.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is open source under the MIT license, which means you have full access to the source code and can modify it to fit your own needs. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_350.yml b/src/licensedcode/data/rules/mit_350.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_350.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_351.RULE b/src/licensedcode/data/rules/mit_351.RULE index 0cc92c7090d..dac3ee3e204 100644 --- a/src/licensedcode/data/rules/mit_351.RULE +++ b/src/licensedcode/data/rules/mit_351.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + released under the [MIT Open Source license](LICENSE.md) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_351.yml b/src/licensedcode/data/rules/mit_351.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_351.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_352.RULE b/src/licensedcode/data/rules/mit_352.RULE index 7bbdad7fa97..d2b1a4b3e41 100644 --- a/src/licensedcode/data/rules/mit_352.RULE +++ b/src/licensedcode/data/rules/mit_352.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License This project is licensed under the terms of the MIT license. See the [LICENSE](LICENSE) file. diff --git a/src/licensedcode/data/rules/mit_352.yml b/src/licensedcode/data/rules/mit_352.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_352.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_353.RULE b/src/licensedcode/data/rules/mit_353.RULE index 2fac7aa44b9..9536df9069a 100644 --- a/src/licensedcode/data/rules/mit_353.RULE +++ b/src/licensedcode/data/rules/mit_353.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is licensed under the terms of the MIT license. See the [LICENSE](LICENSE) file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_353.yml b/src/licensedcode/data/rules/mit_353.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_353.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_354.RULE b/src/licensedcode/data/rules/mit_354.RULE index 049627178d0..5e1abc4d7da 100644 --- a/src/licensedcode/data/rules/mit_354.RULE +++ b/src/licensedcode/data/rules/mit_354.RULE @@ -1 +1,10 @@ -[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/LICENSE) +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/fastlane/fastlane/blob/master/LICENSE + - https://img.shields.io/badge/license-MIT-green.svg?style=flat +--- + +[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/fastlane/blob/master/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_354.yml b/src/licensedcode/data/rules/mit_354.yml deleted file mode 100644 index 7c2b2443980..00000000000 --- a/src/licensedcode/data/rules/mit_354.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/fastlane/fastlane/blob/master/LICENSE - - https://img.shields.io/badge/license-MIT-green.svg?style=flat diff --git a/src/licensedcode/data/rules/mit_355.RULE b/src/licensedcode/data/rules/mit_355.RULE index 5b29e95aedd..6ac6938649a 100644 --- a/src/licensedcode/data/rules/mit_355.RULE +++ b/src/licensedcode/data/rules/mit_355.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/encharm/Font-Awesome-SVG-PNG +--- + SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG Font-Awesome-SVG-PNG is licensed under the MIT license (see file license in current folder). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_355.yml b/src/licensedcode/data/rules/mit_355.yml deleted file mode 100644 index 6f794532823..00000000000 --- a/src/licensedcode/data/rules/mit_355.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/encharm/Font-Awesome-SVG-PNG diff --git a/src/licensedcode/data/rules/mit_356.RULE b/src/licensedcode/data/rules/mit_356.RULE index f6d63204473..1c64f9c70b6 100644 --- a/src/licensedcode/data/rules/mit_356.RULE +++ b/src/licensedcode/data/rules/mit_356.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/MIT_License +--- + MIT License: https://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_356.yml b/src/licensedcode/data/rules/mit_356.yml deleted file mode 100644 index 65f51065abb..00000000000 --- a/src/licensedcode/data/rules/mit_356.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_357.RULE b/src/licensedcode/data/rules/mit_357.RULE index 32d32b9d582..485b9f60baf 100644 --- a/src/licensedcode/data/rules/mit_357.RULE +++ b/src/licensedcode/data/rules/mit_357.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + MIT License: http://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_357.yml b/src/licensedcode/data/rules/mit_357.yml deleted file mode 100644 index 8a37a34530c..00000000000 --- a/src/licensedcode/data/rules/mit_357.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_358.RULE b/src/licensedcode/data/rules/mit_358.RULE index 6d9ef159c60..4588e79393d 100644 --- a/src/licensedcode/data/rules/mit_358.RULE +++ b/src/licensedcode/data/rules/mit_358.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/MIT_License +--- + https://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_358.yml b/src/licensedcode/data/rules/mit_358.yml deleted file mode 100644 index 4ac4e474b27..00000000000 --- a/src/licensedcode/data/rules/mit_358.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_359.RULE b/src/licensedcode/data/rules/mit_359.RULE index 3d81861737b..ebb12b93f7a 100644 --- a/src/licensedcode/data/rules/mit_359.RULE +++ b/src/licensedcode/data/rules/mit_359.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + http://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_359.yml b/src/licensedcode/data/rules/mit_359.yml deleted file mode 100644 index 2f049700c9b..00000000000 --- a/src/licensedcode/data/rules/mit_359.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_36.RULE b/src/licensedcode/data/rules/mit_36.RULE index 7e2544d6c7d..4d61ef66e0c 100644 --- a/src/licensedcode/data/rules/mit_36.RULE +++ b/src/licensedcode/data/rules/mit_36.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + MIT: The MIT license applies to all files in the directories: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_36.yml b/src/licensedcode/data/rules/mit_36.yml deleted file mode 100644 index 820a11b4023..00000000000 --- a/src/licensedcode/data/rules/mit_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_360.RULE b/src/licensedcode/data/rules/mit_360.RULE index a415cc10d59..982d67b3303 100644 --- a/src/licensedcode/data/rules/mit_360.RULE +++ b/src/licensedcode/data/rules/mit_360.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_360.yml b/src/licensedcode/data/rules/mit_360.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_360.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_361.RULE b/src/licensedcode/data/rules/mit_361.RULE index 5fd3c112703..f13b0a3380e 100644 --- a/src/licensedcode/data/rules/mit_361.RULE +++ b/src/licensedcode/data/rules/mit_361.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://tldrlegal.com/license/mit-license +--- + https://tldrlegal.com/license/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_361.yml b/src/licensedcode/data/rules/mit_361.yml deleted file mode 100644 index b56012e87a5..00000000000 --- a/src/licensedcode/data/rules/mit_361.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://tldrlegal.com/license/mit-license diff --git a/src/licensedcode/data/rules/mit_362.RULE b/src/licensedcode/data/rules/mit_362.RULE index 4c97cedddde..6ec7f4e6cc4 100644 --- a/src/licensedcode/data/rules/mit_362.RULE +++ b/src/licensedcode/data/rules/mit_362.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://jquery.org/license/ +--- + MIT license https://jquery.org/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_362.yml b/src/licensedcode/data/rules/mit_362.yml deleted file mode 100644 index 5cfa9173078..00000000000 --- a/src/licensedcode/data/rules/mit_362.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://jquery.org/license/ diff --git a/src/licensedcode/data/rules/mit_363.RULE b/src/licensedcode/data/rules/mit_363.RULE index 59391431450..975e6176712 100644 --- a/src/licensedcode/data/rules/mit_363.RULE +++ b/src/licensedcode/data/rules/mit_363.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/jquery/jquery/blob/master/src/event.js + - https://jquery.org/license/ + - https://tldrlegal.com/license/mit-license +--- + MIT license https://jquery.org/license/ diff --git a/src/licensedcode/data/rules/mit_363.yml b/src/licensedcode/data/rules/mit_363.yml deleted file mode 100644 index bc54cf7b399..00000000000 --- a/src/licensedcode/data/rules/mit_363.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/jquery/jquery/blob/master/src/event.js - - https://jquery.org/license/ - - https://tldrlegal.com/license/mit-license diff --git a/src/licensedcode/data/rules/mit_364.RULE b/src/licensedcode/data/rules/mit_364.RULE index b4894e808d3..b504a2a33b2 100644 --- a/src/licensedcode/data/rules/mit_364.RULE +++ b/src/licensedcode/data/rules/mit_364.RULE @@ -1 +1,7 @@ -# This module is provided under the terms of the MIT License. +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +# This module is provided under the terms of the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_364.yml b/src/licensedcode/data/rules/mit_364.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_364.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_365.RULE b/src/licensedcode/data/rules/mit_365.RULE index b42d8cea33f..7dfd20c07c8 100644 --- a/src/licensedcode/data/rules/mit_365.RULE +++ b/src/licensedcode/data/rules/mit_365.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + The MIT X11 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_365.yml b/src/licensedcode/data/rules/mit_365.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_365.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_366.RULE b/src/licensedcode/data/rules/mit_366.RULE index 6008cc04b1b..32649d31474 100644 --- a/src/licensedcode/data/rules/mit_366.RULE +++ b/src/licensedcode/data/rules/mit_366.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +--- + mit/x11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_366.yml b/src/licensedcode/data/rules/mit_366.yml deleted file mode 100644 index 1866f161c31..00000000000 --- a/src/licensedcode/data/rules/mit_366.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_367.RULE b/src/licensedcode/data/rules/mit_367.RULE index 2ae2ff9f28b..b8eb6f48a8f 100644 --- a/src/licensedcode/data/rules/mit_367.RULE +++ b/src/licensedcode/data/rules/mit_367.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The code in this repo is made available under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_367.yml b/src/licensedcode/data/rules/mit_367.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_367.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_368.RULE b/src/licensedcode/data/rules/mit_368.RULE index 8b14e2961c9..dcff533dea5 100644 --- a/src/licensedcode/data/rules/mit_368.RULE +++ b/src/licensedcode/data/rules/mit_368.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + which is MIT licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_368.yml b/src/licensedcode/data/rules/mit_368.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_368.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_369.RULE b/src/licensedcode/data/rules/mit_369.RULE index aea003f0d44..52d024626da 100644 --- a/src/licensedcode/data/rules/mit_369.RULE +++ b/src/licensedcode/data/rules/mit_369.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/geertw/php-ip-anonymizer +--- + Modified from https://github.com/geertw/php-ip-anonymizer, MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_369.yml b/src/licensedcode/data/rules/mit_369.yml deleted file mode 100644 index 0f5934639e4..00000000000 --- a/src/licensedcode/data/rules/mit_369.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/geertw/php-ip-anonymizer diff --git a/src/licensedcode/data/rules/mit_37.RULE b/src/licensedcode/data/rules/mit_37.RULE index 22dcef5bfb4..7f015510659 100644 --- a/src/licensedcode/data/rules/mit_37.RULE +++ b/src/licensedcode/data/rules/mit_37.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Licence (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_37.yml b/src/licensedcode/data/rules/mit_37.yml deleted file mode 100644 index ab784e797bd..00000000000 --- a/src/licensedcode/data/rules/mit_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_370.RULE b/src/licensedcode/data/rules/mit_370.RULE index d7e98fc7ce4..36178b8ec76 100644 --- a/src/licensedcode/data/rules/mit_370.RULE +++ b/src/licensedcode/data/rules/mit_370.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + Licensed under the MIT license http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_370.yml b/src/licensedcode/data/rules/mit_370.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_370.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_371.RULE b/src/licensedcode/data/rules/mit_371.RULE index 327116dd6fa..9b4c6c33214 100644 --- a/src/licensedcode/data/rules/mit_371.RULE +++ b/src/licensedcode/data/rules/mit_371.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + Licensed under the MIT license https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_371.yml b/src/licensedcode/data/rules/mit_371.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_371.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_372.RULE b/src/licensedcode/data/rules/mit_372.RULE index 896b579c468..d8421db8904 100644 --- a/src/licensedcode/data/rules/mit_372.RULE +++ b/src/licensedcode/data/rules/mit_372.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + You may use under the terms of the MIT license. Basically that means you are free to use as long as this header is left intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_372.yml b/src/licensedcode/data/rules/mit_372.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_372.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_373.RULE b/src/licensedcode/data/rules/mit_373.RULE index d44b46914ec..61741d59833 100644 --- a/src/licensedcode/data/rules/mit_373.RULE +++ b/src/licensedcode/data/rules/mit_373.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + released under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_373.yml b/src/licensedcode/data/rules/mit_373.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_373.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_374.RULE b/src/licensedcode/data/rules/mit_374.RULE index 4b04e9ad8ce..177290e89be 100644 --- a/src/licensedcode/data/rules/mit_374.RULE +++ b/src/licensedcode/data/rules/mit_374.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + is released under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_374.yml b/src/licensedcode/data/rules/mit_374.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_374.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_375.RULE b/src/licensedcode/data/rules/mit_375.RULE index 6f8b97ec78f..f53723d4a04 100644 --- a/src/licensedcode/data/rules/mit_375.RULE +++ b/src/licensedcode/data/rules/mit_375.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + released under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_375.yml b/src/licensedcode/data/rules/mit_375.yml deleted file mode 100644 index af986eb00c1..00000000000 --- a/src/licensedcode/data/rules/mit_375.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_376.RULE b/src/licensedcode/data/rules/mit_376.RULE index d2c9835eddd..0f7b1560c93 100644 --- a/src/licensedcode/data/rules/mit_376.RULE +++ b/src/licensedcode/data/rules/mit_376.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +--- + X11 Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_376.yml b/src/licensedcode/data/rules/mit_376.yml deleted file mode 100644 index 802275a47d8..00000000000 --- a/src/licensedcode/data/rules/mit_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_377.RULE b/src/licensedcode/data/rules/mit_377.RULE index 44e706da3e1..a0ca35aae58 100644 --- a/src/licensedcode/data/rules/mit_377.RULE +++ b/src/licensedcode/data/rules/mit_377.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licence This is released under the MIT license. It's fully open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_377.yml b/src/licensedcode/data/rules/mit_377.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_378.RULE b/src/licensedcode/data/rules/mit_378.RULE index 7a3173a4ccd..897a45c095c 100644 --- a/src/licensedcode/data/rules/mit_378.RULE +++ b/src/licensedcode/data/rules/mit_378.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licence This is released under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_378.yml b/src/licensedcode/data/rules/mit_378.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_378.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_379.RULE b/src/licensedcode/data/rules/mit_379.RULE index ba01ce5573e..05ffd026dd6 100644 --- a/src/licensedcode/data/rules/mit_379.RULE +++ b/src/licensedcode/data/rules/mit_379.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This is released under the MIT license. It's fully open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_379.yml b/src/licensedcode/data/rules/mit_379.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_379.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_38.RULE b/src/licensedcode/data/rules/mit_38.RULE index afbb7dd80a5..954e233c3a0 100644 --- a/src/licensedcode/data/rules/mit_38.RULE +++ b/src/licensedcode/data/rules/mit_38.RULE @@ -1 +1,8 @@ -MIT/X11 License +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + +MIT/X11 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_38.yml b/src/licensedcode/data/rules/mit_38.yml deleted file mode 100644 index ab784e797bd..00000000000 --- a/src/licensedcode/data/rules/mit_38.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_380.RULE b/src/licensedcode/data/rules/mit_380.RULE index 4bc2e451ba8..f5eccb1b3dd 100644 --- a/src/licensedcode/data/rules/mit_380.RULE +++ b/src/licensedcode/data/rules/mit_380.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This is released under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_380.yml b/src/licensedcode/data/rules/mit_380.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_380.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_381.RULE b/src/licensedcode/data/rules/mit_381.RULE index 272471e046a..5972c7f0eb4 100644 --- a/src/licensedcode/data/rules/mit_381.RULE +++ b/src/licensedcode/data/rules/mit_381.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - http://codemirror.net/LICENSE +--- + http://codemirror.net/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_381.yml b/src/licensedcode/data/rules/mit_381.yml deleted file mode 100644 index ead157f1c91..00000000000 --- a/src/licensedcode/data/rules/mit_381.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - http://codemirror.net/LICENSE diff --git a/src/licensedcode/data/rules/mit_382.RULE b/src/licensedcode/data/rules/mit_382.RULE index 3dc5dc065b8..0073041471f 100644 --- a/src/licensedcode/data/rules/mit_382.RULE +++ b/src/licensedcode/data/rules/mit_382.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + License: jQuery-License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_382.yml b/src/licensedcode/data/rules/mit_382.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_382.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_383.RULE b/src/licensedcode/data/rules/mit_383.RULE index cd56dd77753..6fdad477dee 100644 --- a/src/licensedcode/data/rules/mit_383.RULE +++ b/src/licensedcode/data/rules/mit_383.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + and is released under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_383.yml b/src/licensedcode/data/rules/mit_383.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_383.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_384.RULE b/src/licensedcode/data/rules/mit_384.RULE index 135cd712a60..28df8bbd730 100644 --- a/src/licensedcode/data/rules/mit_384.RULE +++ b/src/licensedcode/data/rules/mit_384.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is released under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_384.yml b/src/licensedcode/data/rules/mit_384.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_384.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_385.RULE b/src/licensedcode/data/rules/mit_385.RULE index 8788d8e3a01..99da5ceb22a 100644 --- a/src/licensedcode/data/rules/mit_385.RULE +++ b/src/licensedcode/data/rules/mit_385.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +minimum_coverage: 98 +notes: the text is damaged and contains other parts +--- + The MIT License License for the specific language governing rights and limitations under diff --git a/src/licensedcode/data/rules/mit_385.yml b/src/licensedcode/data/rules/mit_385.yml deleted file mode 100644 index 0cc61faba25..00000000000 --- a/src/licensedcode/data/rules/mit_385.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -minimum_coverage: 98 -notes: the text is damaged and contains other parts diff --git a/src/licensedcode/data/rules/mit_386.RULE b/src/licensedcode/data/rules/mit_386.RULE index cedce499a5c..eb97a702588 100644 --- a/src/licensedcode/data/rules/mit_386.RULE +++ b/src/licensedcode/data/rules/mit_386.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - FindCUDA.cmake +--- + This code is licensed under the MIT License. See the FindCUDA.cmake script for the text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_386.yml b/src/licensedcode/data/rules/mit_386.yml deleted file mode 100644 index 225f8ab8828..00000000000 --- a/src/licensedcode/data/rules/mit_386.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - FindCUDA.cmake diff --git a/src/licensedcode/data/rules/mit_387.RULE b/src/licensedcode/data/rules/mit_387.RULE index 5eab7253963..65045554a7b 100644 --- a/src/licensedcode/data/rules/mit_387.RULE +++ b/src/licensedcode/data/rules/mit_387.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This code is licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_387.yml b/src/licensedcode/data/rules/mit_387.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_388.RULE b/src/licensedcode/data/rules/mit_388.RULE index b60c43c590f..774c96b3b8e 100644 --- a/src/licensedcode/data/rules/mit_388.RULE +++ b/src/licensedcode/data/rules/mit_388.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This code is licensed under the MIT License. See the script for the text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_388.yml b/src/licensedcode/data/rules/mit_388.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_389.RULE b/src/licensedcode/data/rules/mit_389.RULE index 7bfc89b0e07..ae7458bc447 100644 --- a/src/licensedcode/data/rules/mit_389.RULE +++ b/src/licensedcode/data/rules/mit_389.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + License MIT licensed. https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_389.yml b/src/licensedcode/data/rules/mit_389.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_389.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_39.RULE b/src/licensedcode/data/rules/mit_39.RULE index 8a41fe4ebed..3183c331857 100644 --- a/src/licensedcode/data/rules/mit_39.RULE +++ b/src/licensedcode/data/rules/mit_39.RULE @@ -1 +1,8 @@ -MIT/X11 Licence +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + +MIT/X11 Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_39.yml b/src/licensedcode/data/rules/mit_39.yml deleted file mode 100644 index ab784e797bd..00000000000 --- a/src/licensedcode/data/rules/mit_39.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_390.RULE b/src/licensedcode/data/rules/mit_390.RULE index 7f2343ec21d..c7ea73afb54 100644 --- a/src/licensedcode/data/rules/mit_390.RULE +++ b/src/licensedcode/data/rules/mit_390.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License MIT licensed. See the bundled LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_390.yml b/src/licensedcode/data/rules/mit_390.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_390.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_391.RULE b/src/licensedcode/data/rules/mit_391.RULE index cf2186b3d1f..e8bf346c2e8 100644 --- a/src/licensedcode/data/rules/mit_391.RULE +++ b/src/licensedcode/data/rules/mit_391.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/mit_391.yml b/src/licensedcode/data/rules/mit_391.yml deleted file mode 100644 index 6608f7322e1..00000000000 --- a/src/licensedcode/data/rules/mit_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_392.RULE b/src/licensedcode/data/rules/mit_392.RULE index 830dac072e4..bbfcd57def0 100644 --- a/src/licensedcode/data/rules/mit_392.RULE +++ b/src/licensedcode/data/rules/mit_392.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_392.yml b/src/licensedcode/data/rules/mit_392.yml deleted file mode 100644 index c90aa50c0bd..00000000000 --- a/src/licensedcode/data/rules/mit_392.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_393.RULE b/src/licensedcode/data/rules/mit_393.RULE index f7e0e0be588..be538fe0260 100644 --- a/src/licensedcode/data/rules/mit_393.RULE +++ b/src/licensedcode/data/rules/mit_393.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + "Distributed under the MIT license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_393.yml b/src/licensedcode/data/rules/mit_393.yml deleted file mode 100644 index c90aa50c0bd..00000000000 --- a/src/licensedcode/data/rules/mit_393.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_394.RULE b/src/licensedcode/data/rules/mit_394.RULE index c7d5bd0ed33..6edc9279635 100644 --- a/src/licensedcode/data/rules/mit_394.RULE +++ b/src/licensedcode/data/rules/mit_394.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Released under the MIT license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_394.yml b/src/licensedcode/data/rules/mit_394.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_394.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_395.RULE b/src/licensedcode/data/rules/mit_395.RULE index 5a8b61b3663..46c612aacab 100644 --- a/src/licensedcode/data/rules/mit_395.RULE +++ b/src/licensedcode/data/rules/mit_395.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under the terms of MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_395.yml b/src/licensedcode/data/rules/mit_395.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_395.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_396.RULE b/src/licensedcode/data/rules/mit_396.RULE index dee9dcae547..b4b8c0c8803 100644 --- a/src/licensedcode/data/rules/mit_396.RULE +++ b/src/licensedcode/data/rules/mit_396.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + // Distributed under the MIT software license, see the accompanying // file COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_396.yml b/src/licensedcode/data/rules/mit_396.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_396.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_397.RULE b/src/licensedcode/data/rules/mit_397.RULE index d8e7c099ada..dbf533d09bc 100644 --- a/src/licensedcode/data/rules/mit_397.RULE +++ b/src/licensedcode/data/rules/mit_397.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + // Distributed under the MIT software license, see the accompanying // file COPYING or shttp://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_397.yml b/src/licensedcode/data/rules/mit_397.yml deleted file mode 100644 index c90aa50c0bd..00000000000 --- a/src/licensedcode/data/rules/mit_397.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_398.RULE b/src/licensedcode/data/rules/mit_398.RULE index 167ff4e905a..4a856a1deff 100644 --- a/src/licensedcode/data/rules/mit_398.RULE +++ b/src/licensedcode/data/rules/mit_398.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + // Distributed under the MIT software license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_398.yml b/src/licensedcode/data/rules/mit_398.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_399.RULE b/src/licensedcode/data/rules/mit_399.RULE index 8a8b3f3fcec..67645d3f5d0 100644 --- a/src/licensedcode/data/rules/mit_399.RULE +++ b/src/licensedcode/data/rules/mit_399.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + The MIT License: https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_399.yml b/src/licensedcode/data/rules/mit_399.yml deleted file mode 100644 index 13ca9a553a8..00000000000 --- a/src/licensedcode/data/rules/mit_399.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_4.RULE b/src/licensedcode/data/rules/mit_4.RULE index 01a773fae6b..cf1b0a1a0b3 100644 --- a/src/licensedcode/data/rules/mit_4.RULE +++ b/src/licensedcode/data/rules/mit_4.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + distributed under the terms of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_4.yml b/src/licensedcode/data/rules/mit_4.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_40.RULE b/src/licensedcode/data/rules/mit_40.RULE index 52f4066d268..f9410aa56a6 100644 --- a/src/licensedcode/data/rules/mit_40.RULE +++ b/src/licensedcode/data/rules/mit_40.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +--- + are released under the terms of the MIT X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_40.yml b/src/licensedcode/data/rules/mit_40.yml deleted file mode 100644 index 8443ac155eb..00000000000 --- a/src/licensedcode/data/rules/mit_40.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/mit_400.RULE b/src/licensedcode/data/rules/mit_400.RULE index 485bef1734b..6c196ac4bd0 100644 --- a/src/licensedcode/data/rules/mit_400.RULE +++ b/src/licensedcode/data/rules/mit_400.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/MIT/ +--- + MIT License (MIT) link: http://creativecommons.org/licenses/MIT/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_400.yml b/src/licensedcode/data/rules/mit_400.yml deleted file mode 100644 index c422d397310..00000000000 --- a/src/licensedcode/data/rules/mit_400.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/MIT/ diff --git a/src/licensedcode/data/rules/mit_401.RULE b/src/licensedcode/data/rules/mit_401.RULE index d75ad5f1396..b5672ca0ffc 100644 --- a/src/licensedcode/data/rules/mit_401.RULE +++ b/src/licensedcode/data/rules/mit_401.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://neekware.com/license/MIT.html +--- + * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at http://neekware.com/license/MIT.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_401.yml b/src/licensedcode/data/rules/mit_401.yml deleted file mode 100644 index df52b7b730f..00000000000 --- a/src/licensedcode/data/rules/mit_401.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://neekware.com/license/MIT.html diff --git a/src/licensedcode/data/rules/mit_402.RULE b/src/licensedcode/data/rules/mit_402.RULE index 148603461ab..819f3d38c88 100644 --- a/src/licensedcode/data/rules/mit_402.RULE +++ b/src/licensedcode/data/rules/mit_402.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_402.yml b/src/licensedcode/data/rules/mit_402.yml deleted file mode 100644 index 0281c09eda5..00000000000 --- a/src/licensedcode/data/rules/mit_402.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_403.RULE b/src/licensedcode/data/rules/mit_403.RULE index 37c0a148c1b..8e85d5c10fc 100644 --- a/src/licensedcode/data/rules/mit_403.RULE +++ b/src/licensedcode/data/rules/mit_403.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + Use of this source code is governed by an MIT-style license that can be found in the LICENSE file or at https://opensource.org/licenses/MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_403.yml b/src/licensedcode/data/rules/mit_403.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_403.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_404.RULE b/src/licensedcode/data/rules/mit_404.RULE index 9af53a03877..448bb5228de 100644 --- a/src/licensedcode/data/rules/mit_404.RULE +++ b/src/licensedcode/data/rules/mit_404.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This library is distributed under the MIT License, see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_404.yml b/src/licensedcode/data/rules/mit_404.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_404.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_405.RULE b/src/licensedcode/data/rules/mit_405.RULE index c8874982590..78edc03d3d4 100644 --- a/src/licensedcode/data/rules/mit_405.RULE +++ b/src/licensedcode/data/rules/mit_405.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + ## License This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_405.yml b/src/licensedcode/data/rules/mit_405.yml deleted file mode 100644 index 0281c09eda5..00000000000 --- a/src/licensedcode/data/rules/mit_405.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_406.RULE b/src/licensedcode/data/rules/mit_406.RULE index 10377d02638..ea6fec377bf 100644 --- a/src/licensedcode/data/rules/mit_406.RULE +++ b/src/licensedcode/data/rules/mit_406.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_406.yml b/src/licensedcode/data/rules/mit_406.yml deleted file mode 100644 index 0281c09eda5..00000000000 --- a/src/licensedcode/data/rules/mit_406.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_407.RULE b/src/licensedcode/data/rules/mit_407.RULE index 2e6c348d445..a35075efd5c 100644 --- a/src/licensedcode/data/rules/mit_407.RULE +++ b/src/licensedcode/data/rules/mit_407.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + ## License This library is distributed under the [MIT License](httpss://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_407.yml b/src/licensedcode/data/rules/mit_407.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_407.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_408.RULE b/src/licensedcode/data/rules/mit_408.RULE index 10dbac0c0c0..c69b504942a 100644 --- a/src/licensedcode/data/rules/mit_408.RULE +++ b/src/licensedcode/data/rules/mit_408.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This library is distributed under the [MIT License](httpss://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_408.yml b/src/licensedcode/data/rules/mit_408.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_408.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_409.RULE b/src/licensedcode/data/rules/mit_409.RULE index ea2e5585b67..b92a856d734 100644 --- a/src/licensedcode/data/rules/mit_409.RULE +++ b/src/licensedcode/data/rules/mit_409.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + ## License This library is distributed under the [MIT License](httpss://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_409.yml b/src/licensedcode/data/rules/mit_409.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_409.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_41.RULE b/src/licensedcode/data/rules/mit_41.RULE index 087e7fed727..9ba561715f4 100644 --- a/src/licensedcode/data/rules/mit_41.RULE +++ b/src/licensedcode/data/rules/mit_41.RULE @@ -1,4 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This file may be distributed separately from the Linux kernel, or incorporated into other software packages, subject to the following license: - SPDX-License-Identifier: MIT + SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_41.yml b/src/licensedcode/data/rules/mit_41.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_410.RULE b/src/licensedcode/data/rules/mit_410.RULE index ddcafb372a1..80e32d487fb 100644 --- a/src/licensedcode/data/rules/mit_410.RULE +++ b/src/licensedcode/data/rules/mit_410.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This library is distributed under the [MIT License](httpss://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_410.yml b/src/licensedcode/data/rules/mit_410.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_410.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_411.RULE b/src/licensedcode/data/rules/mit_411.RULE index abf15d06a17..2bf2fe4ef08 100644 --- a/src/licensedcode/data/rules/mit_411.RULE +++ b/src/licensedcode/data/rules/mit_411.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + free under MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_411.yml b/src/licensedcode/data/rules/mit_411.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_411.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_412.RULE b/src/licensedcode/data/rules/mit_412.RULE index 25ed6194a0e..a6a88125f36 100644 --- a/src/licensedcode/data/rules/mit_412.RULE +++ b/src/licensedcode/data/rules/mit_412.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Use of this source code is governed by the MIT license that can be found in the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_412.yml b/src/licensedcode/data/rules/mit_412.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_412.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_413.RULE b/src/licensedcode/data/rules/mit_413.RULE index 8229b4bf36c..24c10953f57 100644 --- a/src/licensedcode/data/rules/mit_413.RULE +++ b/src/licensedcode/data/rules/mit_413.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Use of this source code is governed by the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_413.yml b/src/licensedcode/data/rules/mit_413.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_413.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_414.RULE b/src/licensedcode/data/rules/mit_414.RULE index 82b5d9b8b1b..1b430061927 100644 --- a/src/licensedcode/data/rules/mit_414.RULE +++ b/src/licensedcode/data/rules/mit_414.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + ### License All code in this repo is MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_414.yml b/src/licensedcode/data/rules/mit_414.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_414.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_415.RULE b/src/licensedcode/data/rules/mit_415.RULE index dcc96fc156e..b3996a18092 100644 --- a/src/licensedcode/data/rules/mit_415.RULE +++ b/src/licensedcode/data/rules/mit_415.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All code in this repo is MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_415.yml b/src/licensedcode/data/rules/mit_415.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_415.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_416.RULE b/src/licensedcode/data/rules/mit_416.RULE index 24dd8db79f8..d06808e0a04 100644 --- a/src/licensedcode/data/rules/mit_416.RULE +++ b/src/licensedcode/data/rules/mit_416.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT/X Consortium License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_416.yml b/src/licensedcode/data/rules/mit_416.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_416.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_417.RULE b/src/licensedcode/data/rules/mit_417.RULE index d26fcdb5ea4..e36e1901684 100644 --- a/src/licensedcode/data/rules/mit_417.RULE +++ b/src/licensedcode/data/rules/mit_417.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + released under the MIT license and therefore the MIT notice is retained in this file for that code only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_417.yml b/src/licensedcode/data/rules/mit_417.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_417.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_418.RULE b/src/licensedcode/data/rules/mit_418.RULE index d7741342a56..6fba688011e 100644 --- a/src/licensedcode/data/rules/mit_418.RULE +++ b/src/licensedcode/data/rules/mit_418.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed * under the MIT/X11 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_418.yml b/src/licensedcode/data/rules/mit_418.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_418.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_419.RULE b/src/licensedcode/data/rules/mit_419.RULE index e9f1f7b6613..0a222e02de5 100644 --- a/src/licensedcode/data/rules/mit_419.RULE +++ b/src/licensedcode/data/rules/mit_419.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License Agreement (MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_419.yml b/src/licensedcode/data/rules/mit_419.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_419.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_42.RULE b/src/licensedcode/data/rules/mit_42.RULE index a22191f7cac..ddca827116d 100644 --- a/src/licensedcode/data/rules/mit_42.RULE +++ b/src/licensedcode/data/rules/mit_42.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + The class libraries are released under the terms of the MIT X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_42.yml b/src/licensedcode/data/rules/mit_42.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_420.RULE b/src/licensedcode/data/rules/mit_420.RULE index 9d7e190565e..0d4bca25e09 100644 --- a/src/licensedcode/data/rules/mit_420.RULE +++ b/src/licensedcode/data/rules/mit_420.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + # Some portions of this file are derived from material in the # project licensed under the terms of the MIT license, provided below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_420.yml b/src/licensedcode/data/rules/mit_420.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_420.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_421.RULE b/src/licensedcode/data/rules/mit_421.RULE index f40e3b3448e..d0594e426d8 100644 --- a/src/licensedcode/data/rules/mit_421.RULE +++ b/src/licensedcode/data/rules/mit_421.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_421.yml b/src/licensedcode/data/rules/mit_421.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_421.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_422.RULE b/src/licensedcode/data/rules/mit_422.RULE index 3815c4d1dfe..97609237d17 100644 --- a/src/licensedcode/data/rules/mit_422.RULE +++ b/src/licensedcode/data/rules/mit_422.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + # Some portions of this file are derived from material in the diff # project licensed under the terms of the MIT license, provided below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_422.yml b/src/licensedcode/data/rules/mit_422.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_422.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_423.RULE b/src/licensedcode/data/rules/mit_423.RULE index 74acd6882fe..7743499c4e7 100644 --- a/src/licensedcode/data/rules/mit_423.RULE +++ b/src/licensedcode/data/rules/mit_423.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +--- + # License:: MIT # # Permission is hereby granted, free of charge, to any person diff --git a/src/licensedcode/data/rules/mit_423.yml b/src/licensedcode/data/rules/mit_423.yml deleted file mode 100644 index 6608f7322e1..00000000000 --- a/src/licensedcode/data/rules/mit_423.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_424.RULE b/src/licensedcode/data/rules/mit_424.RULE index a8a6eb54d07..336d822bf78 100644 --- a/src/licensedcode/data/rules/mit_424.RULE +++ b/src/licensedcode/data/rules/mit_424.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +--- + # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/mit_424.yml b/src/licensedcode/data/rules/mit_424.yml deleted file mode 100644 index 6608f7322e1..00000000000 --- a/src/licensedcode/data/rules/mit_424.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_425.RULE b/src/licensedcode/data/rules/mit_425.RULE index 09ed9dbef1b..4baae5299f2 100644 --- a/src/licensedcode/data/rules/mit_425.RULE +++ b/src/licensedcode/data/rules/mit_425.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Some portions are verbatim copies of software licensed under the MIT license. That license is included below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_425.yml b/src/licensedcode/data/rules/mit_425.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_425.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_426.RULE b/src/licensedcode/data/rules/mit_426.RULE index e4c45d4dea7..ede5984e2b2 100644 --- a/src/licensedcode/data/rules/mit_426.RULE +++ b/src/licensedcode/data/rules/mit_426.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + distributed under the MIT license, which is copied below \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_426.yml b/src/licensedcode/data/rules/mit_426.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_426.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_427.RULE b/src/licensedcode/data/rules/mit_427.RULE index 89ef5361579..d9f8ee2d7d3 100644 --- a/src/licensedcode/data/rules/mit_427.RULE +++ b/src/licensedcode/data/rules/mit_427.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + available under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_427.yml b/src/licensedcode/data/rules/mit_427.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_427.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_428.RULE b/src/licensedcode/data/rules/mit_428.RULE index 95ea07535ae..2254ca1def0 100644 --- a/src/licensedcode/data/rules/mit_428.RULE +++ b/src/licensedcode/data/rules/mit_428.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + The MIT License (MIT) - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_428.yml b/src/licensedcode/data/rules/mit_428.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_428.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_429.RULE b/src/licensedcode/data/rules/mit_429.RULE index 2f771c56855..58a98a51ada 100644 --- a/src/licensedcode/data/rules/mit_429.RULE +++ b/src/licensedcode/data/rules/mit_429.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + The MIT License (MIT) - https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_429.yml b/src/licensedcode/data/rules/mit_429.yml deleted file mode 100644 index bf1fa40ffa8..00000000000 --- a/src/licensedcode/data/rules/mit_429.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_43.RULE b/src/licensedcode/data/rules/mit_43.RULE index 3fb93279678..6889066aa73 100644 --- a/src/licensedcode/data/rules/mit_43.RULE +++ b/src/licensedcode/data/rules/mit_43.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + is released under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_43.yml b/src/licensedcode/data/rules/mit_43.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_430.RULE b/src/licensedcode/data/rules/mit_430.RULE index 8aee3efe67c..0d985dc2fa2 100644 --- a/src/licensedcode/data/rules/mit_430.RULE +++ b/src/licensedcode/data/rules/mit_430.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + MIT License The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_430.yml b/src/licensedcode/data/rules/mit_430.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_430.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_431.RULE b/src/licensedcode/data/rules/mit_431.RULE index 6c912b89e74..584e5a0ef80 100644 --- a/src/licensedcode/data/rules/mit_431.RULE +++ b/src/licensedcode/data/rules/mit_431.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.html +--- + files are licensed under the MIT License: http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_431.yml b/src/licensedcode/data/rules/mit_431.yml deleted file mode 100644 index edb7a26de3a..00000000000 --- a/src/licensedcode/data/rules/mit_431.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_432.RULE b/src/licensedcode/data/rules/mit_432.RULE index 4d827e89ea3..d6e51e3d07a 100644 --- a/src/licensedcode/data/rules/mit_432.RULE +++ b/src/licensedcode/data/rules/mit_432.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.html +--- + files are licensed under the MIT License: https://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_432.yml b/src/licensedcode/data/rules/mit_432.yml deleted file mode 100644 index 5d65386d7fa..00000000000 --- a/src/licensedcode/data/rules/mit_432.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_433.RULE b/src/licensedcode/data/rules/mit_433.RULE index 27d5e860e62..4d7d75d21bb 100644 --- a/src/licensedcode/data/rules/mit_433.RULE +++ b/src/licensedcode/data/rules/mit_433.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.html +--- + Font Awesome CSS, LESS, and Sass files are licensed under the MIT License: http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_433.yml b/src/licensedcode/data/rules/mit_433.yml deleted file mode 100644 index edb7a26de3a..00000000000 --- a/src/licensedcode/data/rules/mit_433.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_434.RULE b/src/licensedcode/data/rules/mit_434.RULE index be0f42bba01..72d6e01bb90 100644 --- a/src/licensedcode/data/rules/mit_434.RULE +++ b/src/licensedcode/data/rules/mit_434.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + The MIT License (MIT): http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_434.yml b/src/licensedcode/data/rules/mit_434.yml deleted file mode 100644 index d3ebc179ced..00000000000 --- a/src/licensedcode/data/rules/mit_434.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_435.RULE b/src/licensedcode/data/rules/mit_435.RULE index 8a518342e76..defd851397b 100644 --- a/src/licensedcode/data/rules/mit_435.RULE +++ b/src/licensedcode/data/rules/mit_435.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + The MIT License (MIT): https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_435.yml b/src/licensedcode/data/rules/mit_435.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_435.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_436.RULE b/src/licensedcode/data/rules/mit_436.RULE index 8568cc0d5a3..0eb91ebb0b6 100644 --- a/src/licensedcode/data/rules/mit_436.RULE +++ b/src/licensedcode/data/rules/mit_436.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + ## License MIT - see the **COPYING** file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_436.yml b/src/licensedcode/data/rules/mit_436.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_436.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_437.RULE b/src/licensedcode/data/rules/mit_437.RULE index 0ff88af6076..a9061cf6d9b 100644 --- a/src/licensedcode/data/rules/mit_437.RULE +++ b/src/licensedcode/data/rules/mit_437.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + License: Expat \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_437.yml b/src/licensedcode/data/rules/mit_437.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_437.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_438.RULE b/src/licensedcode/data/rules/mit_438.RULE index 05b8687e9ca..908ffac7f52 100644 --- a/src/licensedcode/data/rules/mit_438.RULE +++ b/src/licensedcode/data/rules/mit_438.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_438.yml b/src/licensedcode/data/rules/mit_438.yml deleted file mode 100644 index bf1fa40ffa8..00000000000 --- a/src/licensedcode/data/rules/mit_438.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_439.RULE b/src/licensedcode/data/rules/mit_439.RULE index 78583434155..fae9c096d42 100644 --- a/src/licensedcode/data/rules/mit_439.RULE +++ b/src/licensedcode/data/rules/mit_439.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + https://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_439.yml b/src/licensedcode/data/rules/mit_439.yml deleted file mode 100644 index 4aa4a806f02..00000000000 --- a/src/licensedcode/data/rules/mit_439.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_44.RULE b/src/licensedcode/data/rules/mit_44.RULE index 6d15942144c..cd24099bfa1 100644 --- a/src/licensedcode/data/rules/mit_44.RULE +++ b/src/licensedcode/data/rules/mit_44.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. - * + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_44.yml b/src/licensedcode/data/rules/mit_44.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_440.RULE b/src/licensedcode/data/rules/mit_440.RULE index c340d858e6d..b5a368b7d22 100644 --- a/src/licensedcode/data/rules/mit_440.RULE +++ b/src/licensedcode/data/rules/mit_440.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license +--- + https://www.opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_440.yml b/src/licensedcode/data/rules/mit_440.yml deleted file mode 100644 index 13a44321a61..00000000000 --- a/src/licensedcode/data/rules/mit_440.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_441.RULE b/src/licensedcode/data/rules/mit_441.RULE index d78ef1cdfb9..918473868fa 100644 --- a/src/licensedcode/data/rules/mit_441.RULE +++ b/src/licensedcode/data/rules/mit_441.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license +--- + http://www.opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_441.yml b/src/licensedcode/data/rules/mit_441.yml deleted file mode 100644 index 56defe2efbd..00000000000 --- a/src/licensedcode/data/rules/mit_441.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_442.RULE b/src/licensedcode/data/rules/mit_442.RULE index 5f66af68f27..b76ba656896 100644 --- a/src/licensedcode/data/rules/mit_442.RULE +++ b/src/licensedcode/data/rules/mit_442.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_442.yml b/src/licensedcode/data/rules/mit_442.yml deleted file mode 100644 index 8a030489a57..00000000000 --- a/src/licensedcode/data/rules/mit_442.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_443.RULE b/src/licensedcode/data/rules/mit_443.RULE index d02694ad508..7ac02d3ac86 100644 --- a/src/licensedcode/data/rules/mit_443.RULE +++ b/src/licensedcode/data/rules/mit_443.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license +--- + http://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_443.yml b/src/licensedcode/data/rules/mit_443.yml deleted file mode 100644 index 37957f97689..00000000000 --- a/src/licensedcode/data/rules/mit_443.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_444.RULE b/src/licensedcode/data/rules/mit_444.RULE index b0370898a4d..c32bef67a40 100644 --- a/src/licensedcode/data/rules/mit_444.RULE +++ b/src/licensedcode/data/rules/mit_444.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.html +--- + https://www.opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_444.yml b/src/licensedcode/data/rules/mit_444.yml deleted file mode 100644 index 0fb8a4b7729..00000000000 --- a/src/licensedcode/data/rules/mit_444.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_445.RULE b/src/licensedcode/data/rules/mit_445.RULE index 7a4a6e0a5c6..0b329cb4115 100644 --- a/src/licensedcode/data/rules/mit_445.RULE +++ b/src/licensedcode/data/rules/mit_445.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.html +--- + http://www.opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_445.yml b/src/licensedcode/data/rules/mit_445.yml deleted file mode 100644 index 9df1357c063..00000000000 --- a/src/licensedcode/data/rules/mit_445.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_446.RULE b/src/licensedcode/data/rules/mit_446.RULE index 039dc4c0371..d234e75d864 100644 --- a/src/licensedcode/data/rules/mit_446.RULE +++ b/src/licensedcode/data/rules/mit_446.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.html +--- + http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_446.yml b/src/licensedcode/data/rules/mit_446.yml deleted file mode 100644 index 7673595d6c3..00000000000 --- a/src/licensedcode/data/rules/mit_446.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_447.RULE b/src/licensedcode/data/rules/mit_447.RULE index d6353322491..90d2d1fe76b 100644 --- a/src/licensedcode/data/rules/mit_447.RULE +++ b/src/licensedcode/data/rules/mit_447.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://github.com/aspnetboilerplate/aspnetboilerplate/blob/master/LICENSE +--- + http://github.com/aspnetboilerplate/aspnetboilerplate/blob/master/LICENSE , \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_447.yml b/src/licensedcode/data/rules/mit_447.yml deleted file mode 100644 index 91f129027fd..00000000000 --- a/src/licensedcode/data/rules/mit_447.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://github.com/aspnetboilerplate/aspnetboilerplate/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_448.RULE b/src/licensedcode/data/rules/mit_448.RULE index 73c58b8a815..47fed700165 100644 --- a/src/licensedcode/data/rules/mit_448.RULE +++ b/src/licensedcode/data/rules/mit_448.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/aspnetboilerplate/aspnetboilerplate/blob/master/LICENSE +--- + https://github.com/aspnetboilerplate/aspnetboilerplate/blob/master/LICENSE , \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_448.yml b/src/licensedcode/data/rules/mit_448.yml deleted file mode 100644 index 8e8a4a3c5cc..00000000000 --- a/src/licensedcode/data/rules/mit_448.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/aspnetboilerplate/aspnetboilerplate/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_449.RULE b/src/licensedcode/data/rules/mit_449.RULE index 9f6bbd30051..49dddf546c7 100644 --- a/src/licensedcode/data/rules/mit_449.RULE +++ b/src/licensedcode/data/rules/mit_449.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE +--- + https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_449.yml b/src/licensedcode/data/rules/mit_449.yml deleted file mode 100644 index 6df20067bc1..00000000000 --- a/src/licensedcode/data/rules/mit_449.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_45.RULE b/src/licensedcode/data/rules/mit_45.RULE index 83449d231b9..17338b2a7e4 100644 --- a/src/licensedcode/data/rules/mit_45.RULE +++ b/src/licensedcode/data/rules/mit_45.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + http://opensource.org/licenses/mit-license.php MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_45.yml b/src/licensedcode/data/rules/mit_45.yml deleted file mode 100644 index 388b31d5975..00000000000 --- a/src/licensedcode/data/rules/mit_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_450.RULE b/src/licensedcode/data/rules/mit_450.RULE index 5055270eaf8..92e30126523 100644 --- a/src/licensedcode/data/rules/mit_450.RULE +++ b/src/licensedcode/data/rules/mit_450.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE +--- + https://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_450.yml b/src/licensedcode/data/rules/mit_450.yml deleted file mode 100644 index b900d1d7912..00000000000 --- a/src/licensedcode/data/rules/mit_450.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_451.RULE b/src/licensedcode/data/rules/mit_451.RULE index 9d8fe085a91..21f24f99b05 100644 --- a/src/licensedcode/data/rules/mit_451.RULE +++ b/src/licensedcode/data/rules/mit_451.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE +--- + http://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_451.yml b/src/licensedcode/data/rules/mit_451.yml deleted file mode 100644 index 5fab3a691e4..00000000000 --- a/src/licensedcode/data/rules/mit_451.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_452.RULE b/src/licensedcode/data/rules/mit_452.RULE index 68a64725217..444ff547496 100644 --- a/src/licensedcode/data/rules/mit_452.RULE +++ b/src/licensedcode/data/rules/mit_452.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE +--- + http://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_452.yml b/src/licensedcode/data/rules/mit_452.yml deleted file mode 100644 index 2e4d20b9230..00000000000 --- a/src/licensedcode/data/rules/mit_452.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_453.RULE b/src/licensedcode/data/rules/mit_453.RULE index f52cba99c10..4df1658a652 100644 --- a/src/licensedcode/data/rules/mit_453.RULE +++ b/src/licensedcode/data/rules/mit_453.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://github.com/dotnet/docfx/blob/dev/LICENSE +--- + http://github.com/dotnet/docfx/blob/dev/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_453.yml b/src/licensedcode/data/rules/mit_453.yml deleted file mode 100644 index 1d70d5fb2d6..00000000000 --- a/src/licensedcode/data/rules/mit_453.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://github.com/dotnet/docfx/blob/dev/LICENSE diff --git a/src/licensedcode/data/rules/mit_454.RULE b/src/licensedcode/data/rules/mit_454.RULE index f641d81bc8c..0276993fb60 100644 --- a/src/licensedcode/data/rules/mit_454.RULE +++ b/src/licensedcode/data/rules/mit_454.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://github.com/dotnet/docfx/blob/master/LICENSE +--- + http://github.com/dotnet/docfx/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_454.yml b/src/licensedcode/data/rules/mit_454.yml deleted file mode 100644 index 59775d36524..00000000000 --- a/src/licensedcode/data/rules/mit_454.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://github.com/dotnet/docfx/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_455.RULE b/src/licensedcode/data/rules/mit_455.RULE index 819c6035fa4..8a6cb0fa68f 100644 --- a/src/licensedcode/data/rules/mit_455.RULE +++ b/src/licensedcode/data/rules/mit_455.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://github.com/dotnetcore/Util/blob/master/LICENSE +--- + http://github.com/dotnetcore/Util/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_455.yml b/src/licensedcode/data/rules/mit_455.yml deleted file mode 100644 index 793868e2eac..00000000000 --- a/src/licensedcode/data/rules/mit_455.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://github.com/dotnetcore/Util/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_456.RULE b/src/licensedcode/data/rules/mit_456.RULE index 230b1c027e7..6b4da2c9cb9 100644 --- a/src/licensedcode/data/rules/mit_456.RULE +++ b/src/licensedcode/data/rules/mit_456.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://github.com/dotnetcore/Util/dev/master/LICENSE +--- + http://github.com/dotnetcore/Util/dev/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_456.yml b/src/licensedcode/data/rules/mit_456.yml deleted file mode 100644 index 8765efc3592..00000000000 --- a/src/licensedcode/data/rules/mit_456.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://github.com/dotnetcore/Util/dev/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_457.RULE b/src/licensedcode/data/rules/mit_457.RULE index dfd3bbd34ab..b9143e3519f 100644 --- a/src/licensedcode/data/rules/mit_457.RULE +++ b/src/licensedcode/data/rules/mit_457.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/dotnet/docfx/blob/dev/LICENSE +--- + https://github.com/dotnet/docfx/blob/dev/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_457.yml b/src/licensedcode/data/rules/mit_457.yml deleted file mode 100644 index 89881bae070..00000000000 --- a/src/licensedcode/data/rules/mit_457.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/dotnet/docfx/blob/dev/LICENSE diff --git a/src/licensedcode/data/rules/mit_458.RULE b/src/licensedcode/data/rules/mit_458.RULE index bd68ebfb1fc..5a372dc969f 100644 --- a/src/licensedcode/data/rules/mit_458.RULE +++ b/src/licensedcode/data/rules/mit_458.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/dotnet/docfx/blob/master/LICENSE +--- + https://github.com/dotnet/docfx/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_458.yml b/src/licensedcode/data/rules/mit_458.yml deleted file mode 100644 index c46ae91e38a..00000000000 --- a/src/licensedcode/data/rules/mit_458.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/dotnet/docfx/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_459.RULE b/src/licensedcode/data/rules/mit_459.RULE index bfc3ab6bcb9..1f91fb973e3 100644 --- a/src/licensedcode/data/rules/mit_459.RULE +++ b/src/licensedcode/data/rules/mit_459.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/dotnetcore/Util/blob/master/LICENSE +--- + https://github.com/dotnetcore/Util/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_459.yml b/src/licensedcode/data/rules/mit_459.yml deleted file mode 100644 index 8442b5d48cf..00000000000 --- a/src/licensedcode/data/rules/mit_459.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/dotnetcore/Util/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_46.RULE b/src/licensedcode/data/rules/mit_46.RULE index 3fee415f985..666fa9d32ec 100644 --- a/src/licensedcode/data/rules/mit_46.RULE +++ b/src/licensedcode/data/rules/mit_46.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/MIT +--- + Licensed under the MIT license: -http://www.opensource.org/licenses/MIT +http://www.opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_46.yml b/src/licensedcode/data/rules/mit_46.yml deleted file mode 100644 index 38b2ad09080..00000000000 --- a/src/licensedcode/data/rules/mit_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_460.RULE b/src/licensedcode/data/rules/mit_460.RULE index e36ecad3274..f0728d7c9cc 100644 --- a/src/licensedcode/data/rules/mit_460.RULE +++ b/src/licensedcode/data/rules/mit_460.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/dotnetcore/Util/dev/master/LICENSE +--- + https://github.com/dotnetcore/Util/dev/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_460.yml b/src/licensedcode/data/rules/mit_460.yml deleted file mode 100644 index c59cf3bcf8b..00000000000 --- a/src/licensedcode/data/rules/mit_460.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/dotnetcore/Util/dev/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_461.RULE b/src/licensedcode/data/rules/mit_461.RULE index 53d64a21668..3966c8e6429 100644 --- a/src/licensedcode/data/rules/mit_461.RULE +++ b/src/licensedcode/data/rules/mit_461.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - license-mit.txt +--- + 'license-mit.txt', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_461.yml b/src/licensedcode/data/rules/mit_461.yml deleted file mode 100644 index db5664f698b..00000000000 --- a/src/licensedcode/data/rules/mit_461.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - license-mit.txt diff --git a/src/licensedcode/data/rules/mit_462.RULE b/src/licensedcode/data/rules/mit_462.RULE index 9bed51897d6..40b3c14f6b8 100644 --- a/src/licensedcode/data/rules/mit_462.RULE +++ b/src/licensedcode/data/rules/mit_462.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - license-mit.md +--- + 'license-mit.md', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_462.yml b/src/licensedcode/data/rules/mit_462.yml deleted file mode 100644 index b3a4d7ea849..00000000000 --- a/src/licensedcode/data/rules/mit_462.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - license-mit.md diff --git a/src/licensedcode/data/rules/mit_463.RULE b/src/licensedcode/data/rules/mit_463.RULE index dd6e2f982f6..f7240f67021 100644 --- a/src/licensedcode/data/rules/mit_463.RULE +++ b/src/licensedcode/data/rules/mit_463.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - license-mit.html +--- + 'license-mit.html', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_463.yml b/src/licensedcode/data/rules/mit_463.yml deleted file mode 100644 index 28c3c38ac23..00000000000 --- a/src/licensedcode/data/rules/mit_463.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - license-mit.html diff --git a/src/licensedcode/data/rules/mit_464.RULE b/src/licensedcode/data/rules/mit_464.RULE index 7c724e736f8..068e0f639ab 100644 --- a/src/licensedcode/data/rules/mit_464.RULE +++ b/src/licensedcode/data/rules/mit_464.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - LICENSE +--- + License This project is licensed under the MIT License - see the LICENSE file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_464.yml b/src/licensedcode/data/rules/mit_464.yml deleted file mode 100644 index 6fd9ccef166..00000000000 --- a/src/licensedcode/data/rules/mit_464.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_465.RULE b/src/licensedcode/data/rules/mit_465.RULE index 64a040b68b7..044bb3aaa88 100644 --- a/src/licensedcode/data/rules/mit_465.RULE +++ b/src/licensedcode/data/rules/mit_465.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License This project is licensed under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_465.yml b/src/licensedcode/data/rules/mit_465.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_465.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_466.RULE b/src/licensedcode/data/rules/mit_466.RULE index 01bcc97f67c..8fd0fe0d809 100644 --- a/src/licensedcode/data/rules/mit_466.RULE +++ b/src/licensedcode/data/rules/mit_466.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +--- + * This file is part of the Symfony package. * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_466.yml b/src/licensedcode/data/rules/mit_466.yml deleted file mode 100644 index d2f4936e6e3..00000000000 --- a/src/licensedcode/data/rules/mit_466.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_467.RULE b/src/licensedcode/data/rules/mit_467.RULE index 660eb88b2cb..a2844df8d5b 100644 --- a/src/licensedcode/data/rules/mit_467.RULE +++ b/src/licensedcode/data/rules/mit_467.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +--- + * This file is part of the Symfony package. Symfony.com * For the full copyright and license information, please view the LICENSE diff --git a/src/licensedcode/data/rules/mit_467.yml b/src/licensedcode/data/rules/mit_467.yml deleted file mode 100644 index d2f4936e6e3..00000000000 --- a/src/licensedcode/data/rules/mit_467.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_468.RULE b/src/licensedcode/data/rules/mit_468.RULE index baec2114067..28bcbe5330e 100644 --- a/src/licensedcode/data/rules/mit_468.RULE +++ b/src/licensedcode/data/rules/mit_468.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + executables and source code are distributed under the MIT licence, which is similar in effect to the BSD licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_468.yml b/src/licensedcode/data/rules/mit_468.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_468.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_469.RULE b/src/licensedcode/data/rules/mit_469.RULE index c757ed05d77..bd3e96c3240 100644 --- a/src/licensedcode/data/rules/mit_469.RULE +++ b/src/licensedcode/data/rules/mit_469.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + {{"license": "name": "MIT"}}, - "url": "http://opensource.org/licenses/MIT" + "url": "http://opensource.org/licenses/MIT" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_469.yml b/src/licensedcode/data/rules/mit_469.yml deleted file mode 100644 index 7b82c119884..00000000000 --- a/src/licensedcode/data/rules/mit_469.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_47.RULE b/src/licensedcode/data/rules/mit_47.RULE index cfa48d8e7a1..19332c28123 100644 --- a/src/licensedcode/data/rules/mit_47.RULE +++ b/src/licensedcode/data/rules/mit_47.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: there are some minor text differences +--- + * Permission is hereby granted, free of charge, to any person obtaining a copy * of this source file (the "Software"), to deal in the Software without diff --git a/src/licensedcode/data/rules/mit_47.yml b/src/licensedcode/data/rules/mit_47.yml deleted file mode 100644 index 7bf2addee05..00000000000 --- a/src/licensedcode/data/rules/mit_47.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: there are some minor text differences diff --git a/src/licensedcode/data/rules/mit_470.RULE b/src/licensedcode/data/rules/mit_470.RULE index dd52542b8e2..bf2c600b178 100644 --- a/src/licensedcode/data/rules/mit_470.RULE +++ b/src/licensedcode/data/rules/mit_470.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + "license": { "name": "MIT", "url": "https://opensource.org/licenses/MIT" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_470.yml b/src/licensedcode/data/rules/mit_470.yml deleted file mode 100644 index 981cc0c5377..00000000000 --- a/src/licensedcode/data/rules/mit_470.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_471.RULE b/src/licensedcode/data/rules/mit_471.RULE index 083f0e5d19a..6441bcc78ec 100644 --- a/src/licensedcode/data/rules/mit_471.RULE +++ b/src/licensedcode/data/rules/mit_471.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + License MIT/X11, see LICENSE.md for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_471.yml b/src/licensedcode/data/rules/mit_471.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_471.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_472.RULE b/src/licensedcode/data/rules/mit_472.RULE index 63da63a13c5..350701b2c63 100644 --- a/src/licensedcode/data/rules/mit_472.RULE +++ b/src/licensedcode/data/rules/mit_472.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license +--- + MIT License http://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_472.yml b/src/licensedcode/data/rules/mit_472.yml deleted file mode 100644 index 37957f97689..00000000000 --- a/src/licensedcode/data/rules/mit_472.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_473.RULE b/src/licensedcode/data/rules/mit_473.RULE index 61e96f98dfb..c56a9ddbd75 100644 --- a/src/licensedcode/data/rules/mit_473.RULE +++ b/src/licensedcode/data/rules/mit_473.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license +--- + MIT License http://www.opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_473.yml b/src/licensedcode/data/rules/mit_473.yml deleted file mode 100644 index 56defe2efbd..00000000000 --- a/src/licensedcode/data/rules/mit_473.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_474.RULE b/src/licensedcode/data/rules/mit_474.RULE index 27176cac6e0..184b7a213c8 100644 --- a/src/licensedcode/data/rules/mit_474.RULE +++ b/src/licensedcode/data/rules/mit_474.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + MIT License https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_474.yml b/src/licensedcode/data/rules/mit_474.yml deleted file mode 100644 index 8a030489a57..00000000000 --- a/src/licensedcode/data/rules/mit_474.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_475.RULE b/src/licensedcode/data/rules/mit_475.RULE index 8e0fa598fa1..86f2301cc8c 100644 --- a/src/licensedcode/data/rules/mit_475.RULE +++ b/src/licensedcode/data/rules/mit_475.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license +--- + MIT License https://www.opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_475.yml b/src/licensedcode/data/rules/mit_475.yml deleted file mode 100644 index 13a44321a61..00000000000 --- a/src/licensedcode/data/rules/mit_475.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_476.RULE b/src/licensedcode/data/rules/mit_476.RULE index 3ed475a68cb..a8c66909f0a 100644 --- a/src/licensedcode/data/rules/mit_476.RULE +++ b/src/licensedcode/data/rules/mit_476.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Available for use under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_476.yml b/src/licensedcode/data/rules/mit_476.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_476.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_477.RULE b/src/licensedcode/data/rules/mit_477.RULE index 8ba80d90142..3b35e64f861 100644 --- a/src/licensedcode/data/rules/mit_477.RULE +++ b/src/licensedcode/data/rules/mit_477.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mit-license.org/ +--- + * This code is licensed under the MIT * For the full license see: http://mit-license.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_477.yml b/src/licensedcode/data/rules/mit_477.yml deleted file mode 100644 index 9a213cecbd7..00000000000 --- a/src/licensedcode/data/rules/mit_477.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mit-license.org/ diff --git a/src/licensedcode/data/rules/mit_478.RULE b/src/licensedcode/data/rules/mit_478.RULE index 5823cd4160a..1f7d44404a3 100644 --- a/src/licensedcode/data/rules/mit_478.RULE +++ b/src/licensedcode/data/rules/mit_478.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://mit-license.org/ +--- + * This code is licensed under the MIT * For the full license see: https://mit-license.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_478.yml b/src/licensedcode/data/rules/mit_478.yml deleted file mode 100644 index 7be6ed6c740..00000000000 --- a/src/licensedcode/data/rules/mit_478.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://mit-license.org/ diff --git a/src/licensedcode/data/rules/mit_479.RULE b/src/licensedcode/data/rules/mit_479.RULE index 4a75758d257..617089564ac 100644 --- a/src/licensedcode/data/rules/mit_479.RULE +++ b/src/licensedcode/data/rules/mit_479.RULE @@ -1 +1,9 @@ -license http://mit-license.org/ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mit-license.org/ +--- + +license http://mit-license.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_479.yml b/src/licensedcode/data/rules/mit_479.yml deleted file mode 100644 index 9a213cecbd7..00000000000 --- a/src/licensedcode/data/rules/mit_479.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mit-license.org/ diff --git a/src/licensedcode/data/rules/mit_48.RULE b/src/licensedcode/data/rules/mit_48.RULE index 17ddc917c23..90be1c3a848 100644 --- a/src/licensedcode/data/rules/mit_48.RULE +++ b/src/licensedcode/data/rules/mit_48.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + Licensed MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_48.yml b/src/licensedcode/data/rules/mit_48.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_480.RULE b/src/licensedcode/data/rules/mit_480.RULE index 17316baef0b..f6a3a830d45 100644 --- a/src/licensedcode/data/rules/mit_480.RULE +++ b/src/licensedcode/data/rules/mit_480.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://mit-license.org/ +--- + * @license https://mit-license.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_480.yml b/src/licensedcode/data/rules/mit_480.yml deleted file mode 100644 index 7be6ed6c740..00000000000 --- a/src/licensedcode/data/rules/mit_480.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://mit-license.org/ diff --git a/src/licensedcode/data/rules/mit_481.RULE b/src/licensedcode/data/rules/mit_481.RULE index 12851948a74..30f1b5ca9b1 100644 --- a/src/licensedcode/data/rules/mit_481.RULE +++ b/src/licensedcode/data/rules/mit_481.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License Free software: MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_481.yml b/src/licensedcode/data/rules/mit_481.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_481.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_482.RULE b/src/licensedcode/data/rules/mit_482.RULE index db7528bcaf2..89cd0137b70 100644 --- a/src/licensedcode/data/rules/mit_482.RULE +++ b/src/licensedcode/data/rules/mit_482.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without diff --git a/src/licensedcode/data/rules/mit_482.yml b/src/licensedcode/data/rules/mit_482.yml deleted file mode 100644 index 6608f7322e1..00000000000 --- a/src/licensedcode/data/rules/mit_482.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_483.RULE b/src/licensedcode/data/rules/mit_483.RULE index f11f3696f3a..acea1dcf88e 100644 --- a/src/licensedcode/data/rules/mit_483.RULE +++ b/src/licensedcode/data/rules/mit_483.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without diff --git a/src/licensedcode/data/rules/mit_483.yml b/src/licensedcode/data/rules/mit_483.yml deleted file mode 100644 index 630b00500f4..00000000000 --- a/src/licensedcode/data/rules/mit_483.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/mit_484.RULE b/src/licensedcode/data/rules/mit_484.RULE index 2f714689ba8..2da7106e1e7 100644 --- a/src/licensedcode/data/rules/mit_484.RULE +++ b/src/licensedcode/data/rules/mit_484.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + distributed under the MIT/X license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_484.yml b/src/licensedcode/data/rules/mit_484.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_484.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_485.RULE b/src/licensedcode/data/rules/mit_485.RULE index 474b5974fb7..61b78ec8bf8 100644 --- a/src/licensedcode/data/rules/mit_485.RULE +++ b/src/licensedcode/data/rules/mit_485.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://github.com/max-elia/licensr +--- + # This file is part of the project reuse-checker which is released under the MIT license. # See file LICENSE or go to https://github.com/max-elia/licensr for full license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_485.yml b/src/licensedcode/data/rules/mit_485.yml deleted file mode 100644 index 0cbcd11f013..00000000000 --- a/src/licensedcode/data/rules/mit_485.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://github.com/max-elia/licensr diff --git a/src/licensedcode/data/rules/mit_486.RULE b/src/licensedcode/data/rules/mit_486.RULE index 1d8460add5c..07198eb5aed 100644 --- a/src/licensedcode/data/rules/mit_486.RULE +++ b/src/licensedcode/data/rules/mit_486.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + The software in this package is published under the terms of the MIT license, a copy of which has been included with this distribution in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_486.yml b/src/licensedcode/data/rules/mit_486.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_486.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_487.RULE b/src/licensedcode/data/rules/mit_487.RULE index acd3b6f9a06..9962335f601 100644 --- a/src/licensedcode/data/rules/mit_487.RULE +++ b/src/licensedcode/data/rules/mit_487.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - LICENSE +--- + License This library is licensed under the MIT license. For further information see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_487.yml b/src/licensedcode/data/rules/mit_487.yml deleted file mode 100644 index 903a600790c..00000000000 --- a/src/licensedcode/data/rules/mit_487.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_488.RULE b/src/licensedcode/data/rules/mit_488.RULE index 0923c02e0b6..1b81b624f0d 100644 --- a/src/licensedcode/data/rules/mit_488.RULE +++ b/src/licensedcode/data/rules/mit_488.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This library is licensed under the MIT license. For further information see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_488.yml b/src/licensedcode/data/rules/mit_488.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_488.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_489.RULE b/src/licensedcode/data/rules/mit_489.RULE index cdc48504de0..4624b222594 100644 --- a/src/licensedcode/data/rules/mit_489.RULE +++ b/src/licensedcode/data/rules/mit_489.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + ### License The MIT License (MIT). Please see [License File](LICENSE.md) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_489.yml b/src/licensedcode/data/rules/mit_489.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_489.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_49.RULE b/src/licensedcode/data/rules/mit_49.RULE index 20b863d39b0..bf7bc511dc8 100644 --- a/src/licensedcode/data/rules/mit_49.RULE +++ b/src/licensedcode/data/rules/mit_49.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Licensed under the MIT License (LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_49.yml b/src/licensedcode/data/rules/mit_49.yml deleted file mode 100644 index ac996a2326d..00000000000 --- a/src/licensedcode/data/rules/mit_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_490.RULE b/src/licensedcode/data/rules/mit_490.RULE index 0a3c8b18758..977c2fc8935 100644 --- a/src/licensedcode/data/rules/mit_490.RULE +++ b/src/licensedcode/data/rules/mit_490.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + The MIT License (MIT). Please see [License File](LICENSE.md) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_490.yml b/src/licensedcode/data/rules/mit_490.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_490.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_491.RULE b/src/licensedcode/data/rules/mit_491.RULE index 63f5cba1000..34d17b82ad5 100644 --- a/src/licensedcode/data/rules/mit_491.RULE +++ b/src/licensedcode/data/rules/mit_491.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License The package, including all examples, code snippets and attached documentation is covered by the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_491.yml b/src/licensedcode/data/rules/mit_491.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_491.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_492.RULE b/src/licensedcode/data/rules/mit_492.RULE index d3be31ff017..3819d9ce362 100644 --- a/src/licensedcode/data/rules/mit_492.RULE +++ b/src/licensedcode/data/rules/mit_492.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The testkraut package, including all examples, code snippets and attached documentation is covered by the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_492.yml b/src/licensedcode/data/rules/mit_492.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_492.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_493.RULE b/src/licensedcode/data/rules/mit_493.RULE index 8f85deda6b2..0575d740aac 100644 --- a/src/licensedcode/data/rules/mit_493.RULE +++ b/src/licensedcode/data/rules/mit_493.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The package, including all examples, code snippets and attached documentation is covered by the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_493.yml b/src/licensedcode/data/rules/mit_493.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_493.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_494.RULE b/src/licensedcode/data/rules/mit_494.RULE index 37d4403cde7..40ac8351771 100644 --- a/src/licensedcode/data/rules/mit_494.RULE +++ b/src/licensedcode/data/rules/mit_494.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This project is licensed under the terms of the MIT license. For more details, see the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_494.yml b/src/licensedcode/data/rules/mit_494.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_494.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_495.RULE b/src/licensedcode/data/rules/mit_495.RULE index 7087fc672f3..45a3c4691ce 100644 --- a/src/licensedcode/data/rules/mit_495.RULE +++ b/src/licensedcode/data/rules/mit_495.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + offered under MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_495.yml b/src/licensedcode/data/rules/mit_495.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_495.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_496.RULE b/src/licensedcode/data/rules/mit_496.RULE index 5b525f3ff5e..56c1b97a6ef 100644 --- a/src/licensedcode/data/rules/mit_496.RULE +++ b/src/licensedcode/data/rules/mit_496.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://jquery.org/license +--- + * Released under the MIT license * https://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_496.yml b/src/licensedcode/data/rules/mit_496.yml deleted file mode 100644 index a5f248972a5..00000000000 --- a/src/licensedcode/data/rules/mit_496.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_497.RULE b/src/licensedcode/data/rules/mit_497.RULE index 17e0e860257..0ee976f3bb2 100644 --- a/src/licensedcode/data/rules/mit_497.RULE +++ b/src/licensedcode/data/rules/mit_497.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + license Licensed under MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_497.yml b/src/licensedcode/data/rules/mit_497.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_497.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_498.RULE b/src/licensedcode/data/rules/mit_498.RULE index 7b7931e5777..50b53b259db 100644 --- a/src/licensedcode/data/rules/mit_498.RULE +++ b/src/licensedcode/data/rules/mit_498.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licence Licenced under MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_498.yml b/src/licensedcode/data/rules/mit_498.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_498.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_499.RULE b/src/licensedcode/data/rules/mit_499.RULE index 037e5fbbec8..1190380c910 100644 --- a/src/licensedcode/data/rules/mit_499.RULE +++ b/src/licensedcode/data/rules/mit_499.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + license Licenced under MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_499.yml b/src/licensedcode/data/rules/mit_499.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_499.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_5.RULE b/src/licensedcode/data/rules/mit_5.RULE index 746a805d705..8b7bdaad432 100644 --- a/src/licensedcode/data/rules/mit_5.RULE +++ b/src/licensedcode/data/rules/mit_5.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + libraries which are made available under an MIT-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_5.yml b/src/licensedcode/data/rules/mit_5.yml deleted file mode 100644 index 5f3ba92288e..00000000000 --- a/src/licensedcode/data/rules/mit_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_50.RULE b/src/licensedcode/data/rules/mit_50.RULE index 6531efe610b..3251bd4af34 100644 --- a/src/licensedcode/data/rules/mit_50.RULE +++ b/src/licensedcode/data/rules/mit_50.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + licence MIT License - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_50.yml b/src/licensedcode/data/rules/mit_50.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_500.RULE b/src/licensedcode/data/rules/mit_500.RULE index 4391a6bc1c6..864743d8e4f 100644 --- a/src/licensedcode/data/rules/mit_500.RULE +++ b/src/licensedcode/data/rules/mit_500.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + open source software released under an MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_500.yml b/src/licensedcode/data/rules/mit_500.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_500.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_501.RULE b/src/licensedcode/data/rules/mit_501.RULE index 2e3b12f770f..0e0bba3f31f 100644 --- a/src/licensedcode/data/rules/mit_501.RULE +++ b/src/licensedcode/data/rules/mit_501.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + open source software released under an MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_501.yml b/src/licensedcode/data/rules/mit_501.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_501.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_502.RULE b/src/licensedcode/data/rules/mit_502.RULE index 02c8d0bafc7..860ced89c64 100644 --- a/src/licensedcode/data/rules/mit_502.RULE +++ b/src/licensedcode/data/rules/mit_502.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + released under an MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_502.yml b/src/licensedcode/data/rules/mit_502.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_502.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_503.RULE b/src/licensedcode/data/rules/mit_503.RULE index 8444b502e75..e8df56e5cbc 100644 --- a/src/licensedcode/data/rules/mit_503.RULE +++ b/src/licensedcode/data/rules/mit_503.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + released under an MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_503.yml b/src/licensedcode/data/rules/mit_503.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_503.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_504.RULE b/src/licensedcode/data/rules/mit_504.RULE index 764b090fdef..0386e3947c4 100644 --- a/src/licensedcode/data/rules/mit_504.RULE +++ b/src/licensedcode/data/rules/mit_504.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +notes: language is fr +--- + Le code source du répertoire est publié sous la licence MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_504.yml b/src/licensedcode/data/rules/mit_504.yml deleted file mode 100644 index 71ea8eaec83..00000000000 --- a/src/licensedcode/data/rules/mit_504.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -notes: language is fr diff --git a/src/licensedcode/data/rules/mit_505.RULE b/src/licensedcode/data/rules/mit_505.RULE index 6961976b182..49fb74ec43a 100644 --- a/src/licensedcode/data/rules/mit_505.RULE +++ b/src/licensedcode/data/rules/mit_505.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License is licensed under a liberal, and commercial friendly, MIT license. The goal to the license is to minimize friction in adoption, use, and contribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_505.yml b/src/licensedcode/data/rules/mit_505.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_505.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_506.RULE b/src/licensedcode/data/rules/mit_506.RULE index 479e4e8ea67..e49e7b6978d 100644 --- a/src/licensedcode/data/rules/mit_506.RULE +++ b/src/licensedcode/data/rules/mit_506.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under a liberal, and commercial friendly, MIT license. The goal to the license is to minimize friction in adoption, use, and contribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_506.yml b/src/licensedcode/data/rules/mit_506.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_506.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_507.RULE b/src/licensedcode/data/rules/mit_507.RULE index 35d52e04ad3..58c0cf3cefc 100644 --- a/src/licensedcode/data/rules/mit_507.RULE +++ b/src/licensedcode/data/rules/mit_507.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License This project is licensed under MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_507.yml b/src/licensedcode/data/rules/mit_507.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_507.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_508.RULE b/src/licensedcode/data/rules/mit_508.RULE index 1c9b396936f..93bdcd4db2f 100644 --- a/src/licensedcode/data/rules/mit_508.RULE +++ b/src/licensedcode/data/rules/mit_508.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is licensed under MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_508.yml b/src/licensedcode/data/rules/mit_508.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_508.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_509.RULE b/src/licensedcode/data/rules/mit_509.RULE index fbbc008dc48..4a53bdc5adf 100644 --- a/src/licensedcode/data/rules/mit_509.RULE +++ b/src/licensedcode/data/rules/mit_509.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This work is MIT licensed. All modifications to it, and new files in the smb package are similarly MIT licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_509.yml b/src/licensedcode/data/rules/mit_509.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_509.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_51.RULE b/src/licensedcode/data/rules/mit_51.RULE index 1c3c4631d14..856f9f5c8c8 100644 --- a/src/licensedcode/data/rules/mit_51.RULE +++ b/src/licensedcode/data/rules/mit_51.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + License: MIT License - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_51.yml b/src/licensedcode/data/rules/mit_51.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_510.RULE b/src/licensedcode/data/rules/mit_510.RULE index 7189e0868c6..4883c27e24d 100644 --- a/src/licensedcode/data/rules/mit_510.RULE +++ b/src/licensedcode/data/rules/mit_510.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This work is MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_510.yml b/src/licensedcode/data/rules/mit_510.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_510.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_511.RULE b/src/licensedcode/data/rules/mit_511.RULE index f545ff9d8be..970155b55b7 100644 --- a/src/licensedcode/data/rules/mit_511.RULE +++ b/src/licensedcode/data/rules/mit_511.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All modifications to it, and new files in the smb package are similarly MIT licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_511.yml b/src/licensedcode/data/rules/mit_511.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_511.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_512.RULE b/src/licensedcode/data/rules/mit_512.RULE index eecf44b6923..4abb844c417 100644 --- a/src/licensedcode/data/rules/mit_512.RULE +++ b/src/licensedcode/data/rules/mit_512.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + and MIT licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_512.yml b/src/licensedcode/data/rules/mit_512.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_512.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_513.RULE b/src/licensedcode/data/rules/mit_513.RULE index 031109986da..19dc77e9707 100644 --- a/src/licensedcode/data/rules/mit_513.RULE +++ b/src/licensedcode/data/rules/mit_513.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + and an MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_513.yml b/src/licensedcode/data/rules/mit_513.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_513.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_514.RULE b/src/licensedcode/data/rules/mit_514.RULE index e3b67919562..816f24774dc 100644 --- a/src/licensedcode/data/rules/mit_514.RULE +++ b/src/licensedcode/data/rules/mit_514.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is MIT licensed: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_514.yml b/src/licensedcode/data/rules/mit_514.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_514.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_515.RULE b/src/licensedcode/data/rules/mit_515.RULE index 836da1bb2ef..64086919133 100644 --- a/src/licensedcode/data/rules/mit_515.RULE +++ b/src/licensedcode/data/rules/mit_515.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + and shared under the MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_515.yml b/src/licensedcode/data/rules/mit_515.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_515.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_516.RULE b/src/licensedcode/data/rules/mit_516.RULE index b575d5bcb8c..166c3e0c761 100644 --- a/src/licensedcode/data/rules/mit_516.RULE +++ b/src/licensedcode/data/rules/mit_516.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + shared under the MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_516.yml b/src/licensedcode/data/rules/mit_516.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_516.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_517.RULE b/src/licensedcode/data/rules/mit_517.RULE index 74bb04421d9..55b8eb5c7bd 100644 --- a/src/licensedcode/data/rules/mit_517.RULE +++ b/src/licensedcode/data/rules/mit_517.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is licensed under the MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_517.yml b/src/licensedcode/data/rules/mit_517.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_517.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_518.RULE b/src/licensedcode/data/rules/mit_518.RULE index 161b8e2013d..0193f78dd25 100644 --- a/src/licensedcode/data/rules/mit_518.RULE +++ b/src/licensedcode/data/rules/mit_518.RULE @@ -1,3 +1,14 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://www.gnu.org/philosophy/free-sw.en.html +--- + Expat is [free software](https://www.gnu.org/philosophy/free-sw.en.html). You may copy, distribute, and modify it under the terms of the License contained in the file diff --git a/src/licensedcode/data/rules/mit_518.yml b/src/licensedcode/data/rules/mit_518.yml deleted file mode 100644 index 98a2d5a296d..00000000000 --- a/src/licensedcode/data/rules/mit_518.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://www.gnu.org/philosophy/free-sw.en.html diff --git a/src/licensedcode/data/rules/mit_519.RULE b/src/licensedcode/data/rules/mit_519.RULE index 71dc744c43a..1bedbb3f469 100644 --- a/src/licensedcode/data/rules/mit_519.RULE +++ b/src/licensedcode/data/rules/mit_519.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under an MIT style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_519.yml b/src/licensedcode/data/rules/mit_519.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_519.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_52.RULE b/src/licensedcode/data/rules/mit_52.RULE index e5761d04c7c..61cc3de71ae 100644 --- a/src/licensedcode/data/rules/mit_52.RULE +++ b/src/licensedcode/data/rules/mit_52.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + distributed under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_52.yml b/src/licensedcode/data/rules/mit_52.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_520.RULE b/src/licensedcode/data/rules/mit_520.RULE index d2c33f327d6..f1f1cbcfcf4 100644 --- a/src/licensedcode/data/rules/mit_520.RULE +++ b/src/licensedcode/data/rules/mit_520.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License Provided under the MIT License (MIT). See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_520.yml b/src/licensedcode/data/rules/mit_520.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_520.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_521.RULE b/src/licensedcode/data/rules/mit_521.RULE index 104588fa4f2..20724e6b508 100644 --- a/src/licensedcode/data/rules/mit_521.RULE +++ b/src/licensedcode/data/rules/mit_521.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Provided under the MIT License (MIT). See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_521.yml b/src/licensedcode/data/rules/mit_521.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_521.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_522.RULE b/src/licensedcode/data/rules/mit_522.RULE index 2c6fae1693f..06dbc5d5122 100644 --- a/src/licensedcode/data/rules/mit_522.RULE +++ b/src/licensedcode/data/rules/mit_522.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License Provided under the MIT License (MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_522.yml b/src/licensedcode/data/rules/mit_522.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_522.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_523.RULE b/src/licensedcode/data/rules/mit_523.RULE index 4a30b7f9a6a..bdf03916622 100644 --- a/src/licensedcode/data/rules/mit_523.RULE +++ b/src/licensedcode/data/rules/mit_523.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Provided under the MIT License (MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_523.yml b/src/licensedcode/data/rules/mit_523.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_523.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_524.RULE b/src/licensedcode/data/rules/mit_524.RULE index 02ca9f9dc77..552d54e5725 100644 --- a/src/licensedcode/data/rules/mit_524.RULE +++ b/src/licensedcode/data/rules/mit_524.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Provided under the MIT Licence (MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_524.yml b/src/licensedcode/data/rules/mit_524.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_524.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_525.RULE b/src/licensedcode/data/rules/mit_525.RULE index 5d0ca7eb2df..93a7bc7140e 100644 --- a/src/licensedcode/data/rules/mit_525.RULE +++ b/src/licensedcode/data/rules/mit_525.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This is always free to use and is provided under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_525.yml b/src/licensedcode/data/rules/mit_525.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_525.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_526.RULE b/src/licensedcode/data/rules/mit_526.RULE index 8349c32e503..dcf524998b4 100644 --- a/src/licensedcode/data/rules/mit_526.RULE +++ b/src/licensedcode/data/rules/mit_526.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + Licence: This software is provided under the MIT Licence (http://opensource.org/licenses/MIT): The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_526.yml b/src/licensedcode/data/rules/mit_526.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_526.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_527.RULE b/src/licensedcode/data/rules/mit_527.RULE index 00133793207..c55a8874034 100644 --- a/src/licensedcode/data/rules/mit_527.RULE +++ b/src/licensedcode/data/rules/mit_527.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is provided under the MIT licence, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_527.yml b/src/licensedcode/data/rules/mit_527.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_527.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_528.RULE b/src/licensedcode/data/rules/mit_528.RULE index fef346edde5..e1a57d0c3ce 100644 --- a/src/licensedcode/data/rules/mit_528.RULE +++ b/src/licensedcode/data/rules/mit_528.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This free software is provided under the MIT licence (X11 license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_528.yml b/src/licensedcode/data/rules/mit_528.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_528.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_529.RULE b/src/licensedcode/data/rules/mit_529.RULE index 1ac0dd0933d..3b605f77418 100644 --- a/src/licensedcode/data/rules/mit_529.RULE +++ b/src/licensedcode/data/rules/mit_529.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + an open-source project provided under the MIT Licence, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_529.yml b/src/licensedcode/data/rules/mit_529.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_529.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_53.RULE b/src/licensedcode/data/rules/mit_53.RULE index 23af83a28f1..cefd08fb573 100644 --- a/src/licensedcode/data/rules/mit_53.RULE +++ b/src/licensedcode/data/rules/mit_53.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Released under MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_53.yml b/src/licensedcode/data/rules/mit_53.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_530.RULE b/src/licensedcode/data/rules/mit_530.RULE index 655dba80b74..c852810e53a 100644 --- a/src/licensedcode/data/rules/mit_530.RULE +++ b/src/licensedcode/data/rules/mit_530.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This program is provided under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_530.yml b/src/licensedcode/data/rules/mit_530.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_530.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_531.RULE b/src/licensedcode/data/rules/mit_531.RULE index 6d647f17aef..c6894b6667a 100644 --- a/src/licensedcode/data/rules/mit_531.RULE +++ b/src/licensedcode/data/rules/mit_531.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + in a whole, that is code source but also documentation, is provided under the MIT licence, reproduced hereafter. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_531.yml b/src/licensedcode/data/rules/mit_531.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_531.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_532.RULE b/src/licensedcode/data/rules/mit_532.RULE index 19768f59740..83186f6f3b3 100644 --- a/src/licensedcode/data/rules/mit_532.RULE +++ b/src/licensedcode/data/rules/mit_532.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + As usual all software etc is provided under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_532.yml b/src/licensedcode/data/rules/mit_532.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_532.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_533.RULE b/src/licensedcode/data/rules/mit_533.RULE index 29fef8ee473..af3046839ad 100644 --- a/src/licensedcode/data/rules/mit_533.RULE +++ b/src/licensedcode/data/rules/mit_533.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This documentation is provided under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_533.yml b/src/licensedcode/data/rules/mit_533.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_533.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_534.RULE b/src/licensedcode/data/rules/mit_534.RULE index 0a84cbbd931..bac2a2978d9 100644 --- a/src/licensedcode/data/rules/mit_534.RULE +++ b/src/licensedcode/data/rules/mit_534.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licence. The whole repository and all files in it are provided under the MIT Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_534.yml b/src/licensedcode/data/rules/mit_534.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_534.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_535.RULE b/src/licensedcode/data/rules/mit_535.RULE index 73493f1ac70..879d4dac35b 100644 --- a/src/licensedcode/data/rules/mit_535.RULE +++ b/src/licensedcode/data/rules/mit_535.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Any source code on this website is provided under the MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_535.yml b/src/licensedcode/data/rules/mit_535.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_535.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_536.RULE b/src/licensedcode/data/rules/mit_536.RULE index 11a9d9b9e76..fbea19f138b 100644 --- a/src/licensedcode/data/rules/mit_536.RULE +++ b/src/licensedcode/data/rules/mit_536.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + all my current free software is provided under the MIT licence, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_536.yml b/src/licensedcode/data/rules/mit_536.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_536.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_537.RULE b/src/licensedcode/data/rules/mit_537.RULE index 05aad811c7c..e27728f8711 100644 --- a/src/licensedcode/data/rules/mit_537.RULE +++ b/src/licensedcode/data/rules/mit_537.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This SDK is provided under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_537.yml b/src/licensedcode/data/rules/mit_537.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_537.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_538.RULE b/src/licensedcode/data/rules/mit_538.RULE index e7137e36b44..c421e84137d 100644 --- a/src/licensedcode/data/rules/mit_538.RULE +++ b/src/licensedcode/data/rules/mit_538.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The software is provided under the MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_538.yml b/src/licensedcode/data/rules/mit_538.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_538.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_539.RULE b/src/licensedcode/data/rules/mit_539.RULE index cdf040e3768..845453757f1 100644 --- a/src/licensedcode/data/rules/mit_539.RULE +++ b/src/licensedcode/data/rules/mit_539.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Example code is provided under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_539.yml b/src/licensedcode/data/rules/mit_539.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_539.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_54.RULE b/src/licensedcode/data/rules/mit_54.RULE index 69866fa5cc3..46e558f4c9f 100644 --- a/src/licensedcode/data/rules/mit_54.RULE +++ b/src/licensedcode/data/rules/mit_54.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + licenses license -The MIT License \ No newline at end of file +The MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_54.yml b/src/licensedcode/data/rules/mit_54.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_540.RULE b/src/licensedcode/data/rules/mit_540.RULE index f8769d9ad60..d5fbd970626 100644 --- a/src/licensedcode/data/rules/mit_540.RULE +++ b/src/licensedcode/data/rules/mit_540.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This patch is provided under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_540.yml b/src/licensedcode/data/rules/mit_540.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_540.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_541.RULE b/src/licensedcode/data/rules/mit_541.RULE index ae9d6f0dbcd..33c1a778af8 100644 --- a/src/licensedcode/data/rules/mit_541.RULE +++ b/src/licensedcode/data/rules/mit_541.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This file is provided under the MIT Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_541.yml b/src/licensedcode/data/rules/mit_541.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_541.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_542.RULE b/src/licensedcode/data/rules/mit_542.RULE index b6ad2291bc7..200e2d5fb47 100644 --- a/src/licensedcode/data/rules/mit_542.RULE +++ b/src/licensedcode/data/rules/mit_542.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This site is provided under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_542.yml b/src/licensedcode/data/rules/mit_542.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_542.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_543.RULE b/src/licensedcode/data/rules/mit_543.RULE index a2ff4818835..299ee375764 100644 --- a/src/licensedcode/data/rules/mit_543.RULE +++ b/src/licensedcode/data/rules/mit_543.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Software provided on this page can be downloaded, used and distributed for free. It is provided under the MIT licence, unless otherwise indicated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_543.yml b/src/licensedcode/data/rules/mit_543.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_543.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_544.RULE b/src/licensedcode/data/rules/mit_544.RULE index adcab180fd4..dbf41fc5c29 100644 --- a/src/licensedcode/data/rules/mit_544.RULE +++ b/src/licensedcode/data/rules/mit_544.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The source code and examples for this toolkit are provided under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_544.yml b/src/licensedcode/data/rules/mit_544.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_544.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_545.RULE b/src/licensedcode/data/rules/mit_545.RULE index ff6d9891556..8f62739eb12 100644 --- a/src/licensedcode/data/rules/mit_545.RULE +++ b/src/licensedcode/data/rules/mit_545.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + provided under the MIT License (what the Free Software Foundation calls the X11 License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_545.yml b/src/licensedcode/data/rules/mit_545.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_545.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_546.RULE b/src/licensedcode/data/rules/mit_546.RULE index 6d2f1667997..7dfcfe698f2 100644 --- a/src/licensedcode/data/rules/mit_546.RULE +++ b/src/licensedcode/data/rules/mit_546.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + provided under the MIT license, as specified below \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_546.yml b/src/licensedcode/data/rules/mit_546.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_546.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_547.RULE b/src/licensedcode/data/rules/mit_547.RULE index 45a0863f48d..4b96532a7f6 100644 --- a/src/licensedcode/data/rules/mit_547.RULE +++ b/src/licensedcode/data/rules/mit_547.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Portal and all its original contents are provided under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_547.yml b/src/licensedcode/data/rules/mit_547.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_547.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_548.RULE b/src/licensedcode/data/rules/mit_548.RULE index 0dfcafb4fae..2ee2de372fd 100644 --- a/src/licensedcode/data/rules/mit_548.RULE +++ b/src/licensedcode/data/rules/mit_548.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + open source libraries provided under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_548.yml b/src/licensedcode/data/rules/mit_548.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_548.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_549.RULE b/src/licensedcode/data/rules/mit_549.RULE index a0ce9fed80c..656b7ac788a 100644 --- a/src/licensedcode/data/rules/mit_549.RULE +++ b/src/licensedcode/data/rules/mit_549.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + provided under the MIT license, free for everyone to use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_549.yml b/src/licensedcode/data/rules/mit_549.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_549.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_55.RULE b/src/licensedcode/data/rules/mit_55.RULE index f88791a3830..01dd69cc1ac 100644 --- a/src/licensedcode/data/rules/mit_55.RULE +++ b/src/licensedcode/data/rules/mit_55.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://jsoup.com/license +--- + licenses license The MIT License http://jsoup.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_55.yml b/src/licensedcode/data/rules/mit_55.yml deleted file mode 100644 index 4af48877ddc..00000000000 --- a/src/licensedcode/data/rules/mit_55.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://jsoup.com/license diff --git a/src/licensedcode/data/rules/mit_550.RULE b/src/licensedcode/data/rules/mit_550.RULE index c7825271023..795e2b74b0e 100644 --- a/src/licensedcode/data/rules/mit_550.RULE +++ b/src/licensedcode/data/rules/mit_550.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All software is provided under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_550.yml b/src/licensedcode/data/rules/mit_550.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_550.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_551.RULE b/src/licensedcode/data/rules/mit_551.RULE index 8e2bbd0ec80..a879729dc50 100644 --- a/src/licensedcode/data/rules/mit_551.RULE +++ b/src/licensedcode/data/rules/mit_551.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + provided under the MIT license. See LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_551.yml b/src/licensedcode/data/rules/mit_551.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_551.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_552.RULE b/src/licensedcode/data/rules/mit_552.RULE index a484eff7746..9a431d003b8 100644 --- a/src/licensedcode/data/rules/mit_552.RULE +++ b/src/licensedcode/data/rules/mit_552.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The dataset has been provided under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_552.yml b/src/licensedcode/data/rules/mit_552.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_552.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_553.RULE b/src/licensedcode/data/rules/mit_553.RULE index cca8d959384..4537d9addc6 100644 --- a/src/licensedcode/data/rules/mit_553.RULE +++ b/src/licensedcode/data/rules/mit_553.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The library is provided under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_553.yml b/src/licensedcode/data/rules/mit_553.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_553.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_554.RULE b/src/licensedcode/data/rules/mit_554.RULE index 7a078749610..7b3d137458c 100644 --- a/src/licensedcode/data/rules/mit_554.RULE +++ b/src/licensedcode/data/rules/mit_554.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + open source software provided under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_554.yml b/src/licensedcode/data/rules/mit_554.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_554.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_555.RULE b/src/licensedcode/data/rules/mit_555.RULE index 5cb94a312f5..634bc65c555 100644 --- a/src/licensedcode/data/rules/mit_555.RULE +++ b/src/licensedcode/data/rules/mit_555.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This component is provided under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_555.yml b/src/licensedcode/data/rules/mit_555.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_555.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_556.RULE b/src/licensedcode/data/rules/mit_556.RULE index 0bcbedde5ef..47ee21a7b0d 100644 --- a/src/licensedcode/data/rules/mit_556.RULE +++ b/src/licensedcode/data/rules/mit_556.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + provided under the MIT license, which is available to read in the [LICENSE][] file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_556.yml b/src/licensedcode/data/rules/mit_556.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_556.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_557.RULE b/src/licensedcode/data/rules/mit_557.RULE index cd4404d8887..ead5010116a 100644 --- a/src/licensedcode/data/rules/mit_557.RULE +++ b/src/licensedcode/data/rules/mit_557.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The code is provided under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_557.yml b/src/licensedcode/data/rules/mit_557.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_557.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_558.RULE b/src/licensedcode/data/rules/mit_558.RULE index 2b7e7659e9e..35707c80bc2 100644 --- a/src/licensedcode/data/rules/mit_558.RULE +++ b/src/licensedcode/data/rules/mit_558.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This Project is provided under the MIT license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_558.yml b/src/licensedcode/data/rules/mit_558.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_558.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_559.RULE b/src/licensedcode/data/rules/mit_559.RULE index f1e32ae16d1..1e64f251c50 100644 --- a/src/licensedcode/data/rules/mit_559.RULE +++ b/src/licensedcode/data/rules/mit_559.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The software is provided under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_559.yml b/src/licensedcode/data/rules/mit_559.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_559.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_56.RULE b/src/licensedcode/data/rules/mit_56.RULE index b3fccc8c11e..d3cce46812f 100644 --- a/src/licensedcode/data/rules/mit_56.RULE +++ b/src/licensedcode/data/rules/mit_56.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://jquery.org/license +--- + * Released under the MIT license * http://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_56.yml b/src/licensedcode/data/rules/mit_56.yml deleted file mode 100644 index e46deddceae..00000000000 --- a/src/licensedcode/data/rules/mit_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_560.RULE b/src/licensedcode/data/rules/mit_560.RULE index 233133d3cd7..5c0c06958a5 100644 --- a/src/licensedcode/data/rules/mit_560.RULE +++ b/src/licensedcode/data/rules/mit_560.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + These files are provided under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_560.yml b/src/licensedcode/data/rules/mit_560.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_560.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_561.RULE b/src/licensedcode/data/rules/mit_561.RULE index 86c156d67b2..2933e5bd3a7 100644 --- a/src/licensedcode/data/rules/mit_561.RULE +++ b/src/licensedcode/data/rules/mit_561.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + all newly contributed code is provided under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_561.yml b/src/licensedcode/data/rules/mit_561.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_561.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_562.RULE b/src/licensedcode/data/rules/mit_562.RULE index 175c065e4bc..ebd2a74d7dd 100644 --- a/src/licensedcode/data/rules/mit_562.RULE +++ b/src/licensedcode/data/rules/mit_562.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This code is provided under the MIT License (MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_562.yml b/src/licensedcode/data/rules/mit_562.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_562.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_563.RULE b/src/licensedcode/data/rules/mit_563.RULE index e8b8b79729b..f22332a99b6 100644 --- a/src/licensedcode/data/rules/mit_563.RULE +++ b/src/licensedcode/data/rules/mit_563.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It's an open source project provided under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_563.yml b/src/licensedcode/data/rules/mit_563.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_563.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_564.RULE b/src/licensedcode/data/rules/mit_564.RULE index ffc1e7e557d..3f0fb9a08e3 100644 --- a/src/licensedcode/data/rules/mit_564.RULE +++ b/src/licensedcode/data/rules/mit_564.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + source is provided under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_564.yml b/src/licensedcode/data/rules/mit_564.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_564.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_565.RULE b/src/licensedcode/data/rules/mit_565.RULE index 2a129b79b61..9b0047dad98 100644 --- a/src/licensedcode/data/rules/mit_565.RULE +++ b/src/licensedcode/data/rules/mit_565.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 95 +--- + The software will be provided under the MIT-licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_565.yml b/src/licensedcode/data/rules/mit_565.yml deleted file mode 100644 index b0138481fdd..00000000000 --- a/src/licensedcode/data/rules/mit_565.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit_566.RULE b/src/licensedcode/data/rules/mit_566.RULE index 018ab84ed86..f1978d8f157 100644 --- a/src/licensedcode/data/rules/mit_566.RULE +++ b/src/licensedcode/data/rules/mit_566.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + ### License is an open source project by that is licensed under [MIT](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_566.yml b/src/licensedcode/data/rules/mit_566.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_566.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_567.RULE b/src/licensedcode/data/rules/mit_567.RULE index 137c77414c1..369e2e7ecc1 100644 --- a/src/licensedcode/data/rules/mit_567.RULE +++ b/src/licensedcode/data/rules/mit_567.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://raw.githubusercontent.com/ +--- + License [MIT License](https://raw.githubusercontent.com/ /master/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_567.yml b/src/licensedcode/data/rules/mit_567.yml deleted file mode 100644 index 2202c3bcd70..00000000000 --- a/src/licensedcode/data/rules/mit_567.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://raw.githubusercontent.com/ diff --git a/src/licensedcode/data/rules/mit_568.RULE b/src/licensedcode/data/rules/mit_568.RULE index 452ec1e9ec8..26f8bdf4b6e 100644 --- a/src/licensedcode/data/rules/mit_568.RULE +++ b/src/licensedcode/data/rules/mit_568.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: uncommon numbered paragraphs https://github.com/pradeep-pyro/triangle/blob/536c46311a99b053b31bc968f5150e0083a4284b/LICENSE.md +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/mit_568.yml b/src/licensedcode/data/rules/mit_568.yml deleted file mode 100644 index f17a06ab545..00000000000 --- a/src/licensedcode/data/rules/mit_568.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: uncommon numbered paragraphs https://github.com/pradeep-pyro/triangle/blob/536c46311a99b053b31bc968f5150e0083a4284b/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_569.RULE b/src/licensedcode/data/rules/mit_569.RULE index 54b8787e3e3..b31e2fb85d3 100644 --- a/src/licensedcode/data/rules/mit_569.RULE +++ b/src/licensedcode/data/rules/mit_569.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -15,4 +21,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_569.yml b/src/licensedcode/data/rules/mit_569.yml deleted file mode 100644 index edf331213b4..00000000000 --- a/src/licensedcode/data/rules/mit_569.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_57.RULE b/src/licensedcode/data/rules/mit_57.RULE index 070aa1e6dc0..6758250ec29 100644 --- a/src/licensedcode/data/rules/mit_57.RULE +++ b/src/licensedcode/data/rules/mit_57.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -14,4 +19,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR ANY OTHER CONTRIBUTORS 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. +OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_57.yml b/src/licensedcode/data/rules/mit_57.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_57.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_570.RULE b/src/licensedcode/data/rules/mit_570.RULE index 41ad606ec81..5c4de8a6d0f 100644 --- a/src/licensedcode/data/rules/mit_570.RULE +++ b/src/licensedcode/data/rules/mit_570.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-MIT + - https://raw.githubusercontent.com/master/LICENSE +--- + License MIT https://img.shields.io/badge/license-MIT https://raw.githubusercontent.com//master/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_570.yml b/src/licensedcode/data/rules/mit_570.yml deleted file mode 100644 index f4cc492d1cf..00000000000 --- a/src/licensedcode/data/rules/mit_570.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-MIT - - https://raw.githubusercontent.com/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_571.RULE b/src/licensedcode/data/rules/mit_571.RULE index 9f7d9545313..f7020b5eea6 100644 --- a/src/licensedcode/data/rules/mit_571.RULE +++ b/src/licensedcode/data/rules/mit_571.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + provided under the MIT license. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_571.yml b/src/licensedcode/data/rules/mit_571.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_571.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_572.RULE b/src/licensedcode/data/rules/mit_572.RULE index 0bfbb614f3e..c0d45d2785d 100644 --- a/src/licensedcode/data/rules/mit_572.RULE +++ b/src/licensedcode/data/rules/mit_572.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://raw.github.com/master/LICENSE.txt +--- + ## Legal Issues This software is distributed under the [MIT license](https://raw.github.com/master/LICENSE.txt). diff --git a/src/licensedcode/data/rules/mit_572.yml b/src/licensedcode/data/rules/mit_572.yml deleted file mode 100644 index f5f30774eac..00000000000 --- a/src/licensedcode/data/rules/mit_572.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://raw.github.com/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_573.RULE b/src/licensedcode/data/rules/mit_573.RULE index f9e9b4825d0..1f24f86e4c0 100644 --- a/src/licensedcode/data/rules/mit_573.RULE +++ b/src/licensedcode/data/rules/mit_573.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Open Source Software Licensed Under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_573.yml b/src/licensedcode/data/rules/mit_573.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_573.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_574.RULE b/src/licensedcode/data/rules/mit_574.RULE index 6d9470a436a..696e98187b0 100644 --- a/src/licensedcode/data/rules/mit_574.RULE +++ b/src/licensedcode/data/rules/mit_574.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released under the very permissive [MIT license](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_574.yml b/src/licensedcode/data/rules/mit_574.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_574.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_575.RULE b/src/licensedcode/data/rules/mit_575.RULE index b0ff23b4c77..776a830ec5d 100644 --- a/src/licensedcode/data/rules/mit_575.RULE +++ b/src/licensedcode/data/rules/mit_575.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License is released under the very permissive [MIT license](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_575.yml b/src/licensedcode/data/rules/mit_575.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_575.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_576.RULE b/src/licensedcode/data/rules/mit_576.RULE index 0047dc4fc09..224bf47321b 100644 --- a/src/licensedcode/data/rules/mit_576.RULE +++ b/src/licensedcode/data/rules/mit_576.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is under the expat license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_576.yml b/src/licensedcode/data/rules/mit_576.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_576.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_577.RULE b/src/licensedcode/data/rules/mit_577.RULE index 269675f8a23..b91d9b02ac9 100644 --- a/src/licensedcode/data/rules/mit_577.RULE +++ b/src/licensedcode/data/rules/mit_577.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under the expat license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_577.yml b/src/licensedcode/data/rules/mit_577.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_577.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_578.RULE b/src/licensedcode/data/rules/mit_578.RULE index 0d2a56a01cf..6f9d1f69a3f 100644 --- a/src/licensedcode/data/rules/mit_578.RULE +++ b/src/licensedcode/data/rules/mit_578.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +--- + software is mostly under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_578.yml b/src/licensedcode/data/rules/mit_578.yml deleted file mode 100644 index 9efad39514d..00000000000 --- a/src/licensedcode/data/rules/mit_578.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_579.RULE b/src/licensedcode/data/rules/mit_579.RULE index de9fff6bbf7..bc2e061ae34 100644 --- a/src/licensedcode/data/rules/mit_579.RULE +++ b/src/licensedcode/data/rules/mit_579.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://tldrlegal.com/license/mit-license +--- + # License is licensed under the [MIT license](http://.mit-license.org). diff --git a/src/licensedcode/data/rules/mit_579.yml b/src/licensedcode/data/rules/mit_579.yml deleted file mode 100644 index 07027e41f6d..00000000000 --- a/src/licensedcode/data/rules/mit_579.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://tldrlegal.com/license/mit-license diff --git a/src/licensedcode/data/rules/mit_58.RULE b/src/licensedcode/data/rules/mit_58.RULE index a93c1021ed0..65ee15289d8 100644 --- a/src/licensedcode/data/rules/mit_58.RULE +++ b/src/licensedcode/data/rules/mit_58.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + mit MIT License http://www.opensource.org/licenses/mit-license.php -mpl10 \ No newline at end of file +mpl10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_58.yml b/src/licensedcode/data/rules/mit_58.yml deleted file mode 100644 index 7dbbdada386..00000000000 --- a/src/licensedcode/data/rules/mit_58.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_580.RULE b/src/licensedcode/data/rules/mit_580.RULE index 5d96000658e..68e6d925a25 100644 --- a/src/licensedcode/data/rules/mit_580.RULE +++ b/src/licensedcode/data/rules/mit_580.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + # License is licensed under the [MIT license](http://.mit-license.org). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_580.yml b/src/licensedcode/data/rules/mit_580.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_580.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_581.RULE b/src/licensedcode/data/rules/mit_581.RULE index b9dd05a7923..56dcf129b80 100644 --- a/src/licensedcode/data/rules/mit_581.RULE +++ b/src/licensedcode/data/rules/mit_581.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under the [MIT license](http://.mit-license.org). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_581.yml b/src/licensedcode/data/rules/mit_581.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_581.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_582.RULE b/src/licensedcode/data/rules/mit_582.RULE index 500f37d9634..c2a56d2bdd7 100644 --- a/src/licensedcode/data/rules/mit_582.RULE +++ b/src/licensedcode/data/rules/mit_582.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under the "MIT Expat" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_582.yml b/src/licensedcode/data/rules/mit_582.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_582.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_583.RULE b/src/licensedcode/data/rules/mit_583.RULE index 0dcab1eed39..91c00bc98fc 100644 --- a/src/licensedcode/data/rules/mit_583.RULE +++ b/src/licensedcode/data/rules/mit_583.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All client-side JavaScript (when served directly or after being compiled, arranged, augmented, or combined), is licensed under the "MIT Expat" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_583.yml b/src/licensedcode/data/rules/mit_583.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_583.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_584.RULE b/src/licensedcode/data/rules/mit_584.RULE index 83d7ee3562c..a3c66c53aeb 100644 --- a/src/licensedcode/data/rules/mit_584.RULE +++ b/src/licensedcode/data/rules/mit_584.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + available under the "MIT Expat" license as defined below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_584.yml b/src/licensedcode/data/rules/mit_584.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_584.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_585.RULE b/src/licensedcode/data/rules/mit_585.RULE index 13a541069f3..c3984ea7be8 100644 --- a/src/licensedcode/data/rules/mit_585.RULE +++ b/src/licensedcode/data/rules/mit_585.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + available under the "MIT Expat" license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_585.yml b/src/licensedcode/data/rules/mit_585.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_585.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_586.RULE b/src/licensedcode/data/rules/mit_586.RULE index 7b8d16dea72..13384264727 100644 --- a/src/licensedcode/data/rules/mit_586.RULE +++ b/src/licensedcode/data/rules/mit_586.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: See fix at https://github.com/florianl/go-tc/pull/18 The "to" in "to use" is missing +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights use, diff --git a/src/licensedcode/data/rules/mit_586.yml b/src/licensedcode/data/rules/mit_586.yml deleted file mode 100644 index 851b053d0b6..00000000000 --- a/src/licensedcode/data/rules/mit_586.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: See fix at https://github.com/florianl/go-tc/pull/18 The "to" in "to use" is missing diff --git a/src/licensedcode/data/rules/mit_587.RULE b/src/licensedcode/data/rules/mit_587.RULE index fac2805caaa..e3975aa70f9 100644 --- a/src/licensedcode/data/rules/mit_587.RULE +++ b/src/licensedcode/data/rules/mit_587.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + language is licensed under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_587.yml b/src/licensedcode/data/rules/mit_587.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_587.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_588.RULE b/src/licensedcode/data/rules/mit_588.RULE index eae408ae265..a92d2d78396 100644 --- a/src/licensedcode/data/rules/mit_588.RULE +++ b/src/licensedcode/data/rules/mit_588.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: seen in Julia for Musl and related +--- + implementation on Windows: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_588.yml b/src/licensedcode/data/rules/mit_588.yml deleted file mode 100644 index b0e64ba676e..00000000000 --- a/src/licensedcode/data/rules/mit_588.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: seen in Julia for Musl and related diff --git a/src/licensedcode/data/rules/mit_589.RULE b/src/licensedcode/data/rules/mit_589.RULE index 17036a851b6..59263e9ee07 100644 --- a/src/licensedcode/data/rules/mit_589.RULE +++ b/src/licensedcode/data/rules/mit_589.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + LICENSE;hb=master) [MIT] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_589.yml b/src/licensedcode/data/rules/mit_589.yml deleted file mode 100644 index ab784e797bd..00000000000 --- a/src/licensedcode/data/rules/mit_589.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_59.RULE b/src/licensedcode/data/rules/mit_59.RULE index 9adc03c239a..86c8d9519e7 100644 --- a/src/licensedcode/data/rules/mit_59.RULE +++ b/src/licensedcode/data/rules/mit_59.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -14,4 +19,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) OR AUTHOR(S) 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. +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_59.yml b/src/licensedcode/data/rules/mit_59.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_590.RULE b/src/licensedcode/data/rules/mit_590.RULE index 7255bcbd5ca..f4ebf3e9966 100644 --- a/src/licensedcode/data/rules/mit_590.RULE +++ b/src/licensedcode/data/rules/mit_590.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + utf8proc MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_590.yml b/src/licensedcode/data/rules/mit_590.yml deleted file mode 100644 index ab784e797bd..00000000000 --- a/src/licensedcode/data/rules/mit_590.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_591.RULE b/src/licensedcode/data/rules/mit_591.RULE index c56b8110999..cc08fac33bf 100644 --- a/src/licensedcode/data/rules/mit_591.RULE +++ b/src/licensedcode/data/rules/mit_591.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://jquery.org/license +--- + is published under the terms of the [MIT license](https://jquery.org/license/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_591.yml b/src/licensedcode/data/rules/mit_591.yml deleted file mode 100644 index a5f248972a5..00000000000 --- a/src/licensedcode/data/rules/mit_591.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_592.RULE b/src/licensedcode/data/rules/mit_592.RULE index b16bc486bc1..ce4e9744412 100644 --- a/src/licensedcode/data/rules/mit_592.RULE +++ b/src/licensedcode/data/rules/mit_592.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://jquery.org/license +--- + published under the terms of the [MIT license](https://jquery.org/license/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_592.yml b/src/licensedcode/data/rules/mit_592.yml deleted file mode 100644 index a5f248972a5..00000000000 --- a/src/licensedcode/data/rules/mit_592.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_593.RULE b/src/licensedcode/data/rules/mit_593.RULE index 3e55ca8c116..8b08a159335 100644 --- a/src/licensedcode/data/rules/mit_593.RULE +++ b/src/licensedcode/data/rules/mit_593.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + published under the terms of the [MIT license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_593.yml b/src/licensedcode/data/rules/mit_593.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_593.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_594.RULE b/src/licensedcode/data/rules/mit_594.RULE index c64d972ecfa..e55477ea78e 100644 --- a/src/licensedcode/data/rules/mit_594.RULE +++ b/src/licensedcode/data/rules/mit_594.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is published under the terms of the [MIT license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_594.yml b/src/licensedcode/data/rules/mit_594.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_594.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_595.RULE b/src/licensedcode/data/rules/mit_595.RULE index af5f7ca0c5c..e650938f68a 100644 --- a/src/licensedcode/data/rules/mit_595.RULE +++ b/src/licensedcode/data/rules/mit_595.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://jquery.org/license +--- + published under the terms of the [MIT license](https://jquery.org/license/). ## MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_595.yml b/src/licensedcode/data/rules/mit_595.yml deleted file mode 100644 index 1c600c9fce4..00000000000 --- a/src/licensedcode/data/rules/mit_595.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_596.RULE b/src/licensedcode/data/rules/mit_596.RULE index c24a9830ae6..10644d5be05 100644 --- a/src/licensedcode/data/rules/mit_596.RULE +++ b/src/licensedcode/data/rules/mit_596.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_596.yml b/src/licensedcode/data/rules/mit_596.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_596.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_597.RULE b/src/licensedcode/data/rules/mit_597.RULE index 0eb4e78217e..ef04bef7079 100644 --- a/src/licensedcode/data/rules/mit_597.RULE +++ b/src/licensedcode/data/rules/mit_597.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + A copy of the MIT License is included in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_597.yml b/src/licensedcode/data/rules/mit_597.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_597.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_598.RULE b/src/licensedcode/data/rules/mit_598.RULE index bf243f49df8..11a59302478 100644 --- a/src/licensedcode/data/rules/mit_598.RULE +++ b/src/licensedcode/data/rules/mit_598.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - system/lib/libc/musl/COPYRIGHT +--- + it has the MIT license, see system/lib/libc/musl/COPYRIGHT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_598.yml b/src/licensedcode/data/rules/mit_598.yml deleted file mode 100644 index 2dee45ab06c..00000000000 --- a/src/licensedcode/data/rules/mit_598.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - system/lib/libc/musl/COPYRIGHT diff --git a/src/licensedcode/data/rules/mit_599.RULE b/src/licensedcode/data/rules/mit_599.RULE index c164c8ef014..e8abbdeb3df 100644 --- a/src/licensedcode/data/rules/mit_599.RULE +++ b/src/licensedcode/data/rules/mit_599.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + it has the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_599.yml b/src/licensedcode/data/rules/mit_599.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_599.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_6.RULE b/src/licensedcode/data/rules/mit_6.RULE index b91ab219674..5f3223e6128 100644 --- a/src/licensedcode/data/rules/mit_6.RULE +++ b/src/licensedcode/data/rules/mit_6.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + patch are covered by a MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_6.yml b/src/licensedcode/data/rules/mit_6.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_60.RULE b/src/licensedcode/data/rules/mit_60.RULE index 1dcd7c03985..d84f9c33dc5 100644 --- a/src/licensedcode/data/rules/mit_60.RULE +++ b/src/licensedcode/data/rules/mit_60.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + License: X11/MIT * See LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_60.yml b/src/licensedcode/data/rules/mit_60.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_600.RULE b/src/licensedcode/data/rules/mit_600.RULE index 929cd74bda9..b1161d64ee1 100644 --- a/src/licensedcode/data/rules/mit_600.RULE +++ b/src/licensedcode/data/rules/mit_600.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + # Code: MIT License (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_600.yml b/src/licensedcode/data/rules/mit_600.yml deleted file mode 100644 index 981cc0c5377..00000000000 --- a/src/licensedcode/data/rules/mit_600.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_601.RULE b/src/licensedcode/data/rules/mit_601.RULE index aac8fa07c4d..64590a3d6c1 100644 --- a/src/licensedcode/data/rules/mit_601.RULE +++ b/src/licensedcode/data/rules/mit_601.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + MIT License (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_601.yml b/src/licensedcode/data/rules/mit_601.yml deleted file mode 100644 index 4b88a913a72..00000000000 --- a/src/licensedcode/data/rules/mit_601.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_602.RULE b/src/licensedcode/data/rules/mit_602.RULE index cc53566bae7..ea5c3abee7e 100644 --- a/src/licensedcode/data/rules/mit_602.RULE +++ b/src/licensedcode/data/rules/mit_602.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 95 +--- + Node.js license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_602.yml b/src/licensedcode/data/rules/mit_602.yml deleted file mode 100644 index dcb04df1040..00000000000 --- a/src/licensedcode/data/rules/mit_602.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit_603.RULE b/src/licensedcode/data/rules/mit_603.RULE index b15cd6d8cc3..f0b3314b90b 100644 --- a/src/licensedcode/data/rules/mit_603.RULE +++ b/src/licensedcode/data/rules/mit_603.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + Modernizr 3.9.1 | MIT */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_603.yml b/src/licensedcode/data/rules/mit_603.yml deleted file mode 100644 index 1c9375983d2..00000000000 --- a/src/licensedcode/data/rules/mit_603.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_604.RULE b/src/licensedcode/data/rules/mit_604.RULE index 2427032c51b..e957cef7b6f 100644 --- a/src/licensedcode/data/rules/mit_604.RULE +++ b/src/licensedcode/data/rules/mit_604.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + Modernizr 3.9.0 | MIT */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_604.yml b/src/licensedcode/data/rules/mit_604.yml deleted file mode 100644 index 1c9375983d2..00000000000 --- a/src/licensedcode/data/rules/mit_604.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_605.RULE b/src/licensedcode/data/rules/mit_605.RULE index dd19390d24a..de6f4050a5f 100644 --- a/src/licensedcode/data/rules/mit_605.RULE +++ b/src/licensedcode/data/rules/mit_605.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + Modernizr 3.8.0 | MIT */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_605.yml b/src/licensedcode/data/rules/mit_605.yml deleted file mode 100644 index 1c9375983d2..00000000000 --- a/src/licensedcode/data/rules/mit_605.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_606.RULE b/src/licensedcode/data/rules/mit_606.RULE index 1f2313c5c58..6392156ce8c 100644 --- a/src/licensedcode/data/rules/mit_606.RULE +++ b/src/licensedcode/data/rules/mit_606.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + Modernizr 3.7.1 | MIT */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_606.yml b/src/licensedcode/data/rules/mit_606.yml deleted file mode 100644 index 1c9375983d2..00000000000 --- a/src/licensedcode/data/rules/mit_606.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_607.RULE b/src/licensedcode/data/rules/mit_607.RULE index 5856efbeb34..5033c49adb3 100644 --- a/src/licensedcode/data/rules/mit_607.RULE +++ b/src/licensedcode/data/rules/mit_607.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + Modernizr 3.5.0 | MIT */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_607.yml b/src/licensedcode/data/rules/mit_607.yml deleted file mode 100644 index 1c9375983d2..00000000000 --- a/src/licensedcode/data/rules/mit_607.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_608.RULE b/src/licensedcode/data/rules/mit_608.RULE index bc3db257463..26c11c66804 100644 --- a/src/licensedcode/data/rules/mit_608.RULE +++ b/src/licensedcode/data/rules/mit_608.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + Modernizr 3.0.0pre (Custom Build) | MIT */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_608.yml b/src/licensedcode/data/rules/mit_608.yml deleted file mode 100644 index 1c9375983d2..00000000000 --- a/src/licensedcode/data/rules/mit_608.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_609.RULE b/src/licensedcode/data/rules/mit_609.RULE index 8e851ea8168..182a8cc2e9b 100644 --- a/src/licensedcode/data/rules/mit_609.RULE +++ b/src/licensedcode/data/rules/mit_609.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/pcollections_LICENSE.txt +--- + License: MIT ([license/third_party/pcollections_LICENSE.txt][pcollections]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_609.yml b/src/licensedcode/data/rules/mit_609.yml deleted file mode 100644 index 64fd96f78e9..00000000000 --- a/src/licensedcode/data/rules/mit_609.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/pcollections_LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_61.RULE b/src/licensedcode/data/rules/mit_61.RULE index 79ef38c9a47..dc0207ae767 100644 --- a/src/licensedcode/data/rules/mit_61.RULE +++ b/src/licensedcode/data/rules/mit_61.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + is under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_61.yml b/src/licensedcode/data/rules/mit_61.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_610.RULE b/src/licensedcode/data/rules/mit_610.RULE index fc066f12748..daed817ae32 100644 --- a/src/licensedcode/data/rules/mit_610.RULE +++ b/src/licensedcode/data/rules/mit_610.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/pcollections_LICENSE.txt +--- + [pcollections]: third_party/pcollections_LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_610.yml b/src/licensedcode/data/rules/mit_610.yml deleted file mode 100644 index e5dbc829494..00000000000 --- a/src/licensedcode/data/rules/mit_610.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/pcollections_LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_611.RULE b/src/licensedcode/data/rules/mit_611.RULE index 5c5b1869072..3afaf82cda2 100644 --- a/src/licensedcode/data/rules/mit_611.RULE +++ b/src/licensedcode/data/rules/mit_611.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/qunit_license.txt +--- + License: MIT ([license/third_party/qunit_license.txt][qunit]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_611.yml b/src/licensedcode/data/rules/mit_611.yml deleted file mode 100644 index 7d44d495e84..00000000000 --- a/src/licensedcode/data/rules/mit_611.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/qunit_license.txt diff --git a/src/licensedcode/data/rules/mit_612.RULE b/src/licensedcode/data/rules/mit_612.RULE index 6e050e6ef85..ebdd8221966 100644 --- a/src/licensedcode/data/rules/mit_612.RULE +++ b/src/licensedcode/data/rules/mit_612.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/qunit_license.txt +--- + [qunit]: third_party/qunit_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_612.yml b/src/licensedcode/data/rules/mit_612.yml deleted file mode 100644 index 6b754719575..00000000000 --- a/src/licensedcode/data/rules/mit_612.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/qunit_license.txt diff --git a/src/licensedcode/data/rules/mit_613.RULE b/src/licensedcode/data/rules/mit_613.RULE index db2c7dbd07a..3a205945486 100644 --- a/src/licensedcode/data/rules/mit_613.RULE +++ b/src/licensedcode/data/rules/mit_613.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/testdata/lombok_license.txt +--- + License: MIT ([license/third_party/testdata/lombok_license.txt][lombok]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_613.yml b/src/licensedcode/data/rules/mit_613.yml deleted file mode 100644 index 53af66f1573..00000000000 --- a/src/licensedcode/data/rules/mit_613.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/testdata/lombok_license.txt diff --git a/src/licensedcode/data/rules/mit_614.RULE b/src/licensedcode/data/rules/mit_614.RULE index 52888f614ba..978033e6c5a 100644 --- a/src/licensedcode/data/rules/mit_614.RULE +++ b/src/licensedcode/data/rules/mit_614.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/testdata/lombok_license.txt +--- + [lombok]: third_party/testdata/lombok_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_614.yml b/src/licensedcode/data/rules/mit_614.yml deleted file mode 100644 index 983ec92c5c3..00000000000 --- a/src/licensedcode/data/rules/mit_614.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/testdata/lombok_license.txt diff --git a/src/licensedcode/data/rules/mit_615.RULE b/src/licensedcode/data/rules/mit_615.RULE index f3ada19a675..c6c878988b3 100644 --- a/src/licensedcode/data/rules/mit_615.RULE +++ b/src/licensedcode/data/rules/mit_615.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/karma_LICENSE.txt + - license/third_party/karma-teamcity-reporter_LICENSE.txt +--- + License: MIT ([license/third_party/karma_LICENSE.txt](third_party/karma_LICENSE.txt) and [license/third_party/karma-teamcity-reporter_LICENSE.txt](third_party/karma-teamcity-reporter_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_615.yml b/src/licensedcode/data/rules/mit_615.yml deleted file mode 100644 index 40048b8fd51..00000000000 --- a/src/licensedcode/data/rules/mit_615.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/karma_LICENSE.txt - - license/third_party/karma-teamcity-reporter_LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_616.RULE b/src/licensedcode/data/rules/mit_616.RULE index b226ca2dd8c..0b62e7ff6c4 100644 --- a/src/licensedcode/data/rules/mit_616.RULE +++ b/src/licensedcode/data/rules/mit_616.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/mocha-teamcity-reporter_LICENSE.txt +--- + License: MIT ([license/third_party/mocha-teamcity-reporter_LICENSE.txt](third_party/mocha-teamcity-reporter_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_616.yml b/src/licensedcode/data/rules/mit_616.yml deleted file mode 100644 index 95a61fa1a1b..00000000000 --- a/src/licensedcode/data/rules/mit_616.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/mocha-teamcity-reporter_LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_617.RULE b/src/licensedcode/data/rules/mit_617.RULE index 3551ce8cf7c..c9683937ba2 100644 --- a/src/licensedcode/data/rules/mit_617.RULE +++ b/src/licensedcode/data/rules/mit_617.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/teamcity-service-messages_LICENSE.txt + - license/third_party/lodash_LICENSE.txt +--- + License: MIT ([license/third_party/teamcity-service-messages_LICENSE.txt](third_party/teamcity-service-messages_LICENSE.txt) and [license/third_party/lodash_LICENSE.txt](third_party/lodash_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_617.yml b/src/licensedcode/data/rules/mit_617.yml deleted file mode 100644 index c4003ddbf36..00000000000 --- a/src/licensedcode/data/rules/mit_617.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/teamcity-service-messages_LICENSE.txt - - license/third_party/lodash_LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_618.RULE b/src/licensedcode/data/rules/mit_618.RULE index 609ec03e448..40cb827915e 100644 --- a/src/licensedcode/data/rules/mit_618.RULE +++ b/src/licensedcode/data/rules/mit_618.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/mocha-teamcity-reporter_LICENSE.txt + - license/third_party/teamcity-service-messages_LICENSE.txt +--- + License: MIT ([license/third_party/mocha-teamcity-reporter_LICENSE.txt](third_party/mocha-teamcity-reporter_LICENSE.txt) and [license/third_party/teamcity-service-messages_LICENSE.txt](third_party/teamcity-service-messages_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_618.yml b/src/licensedcode/data/rules/mit_618.yml deleted file mode 100644 index 877e1cd0d9f..00000000000 --- a/src/licensedcode/data/rules/mit_618.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/mocha-teamcity-reporter_LICENSE.txt - - license/third_party/teamcity-service-messages_LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_619.RULE b/src/licensedcode/data/rules/mit_619.RULE index 43b29781652..3fb8b4d7bd4 100644 --- a/src/licensedcode/data/rules/mit_619.RULE +++ b/src/licensedcode/data/rules/mit_619.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/source-map-loader_LICENSE.txt +--- + License: MIT ([license/third_party/source-map-loader_LICENSE.txt](third_party/source-map-loader_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_619.yml b/src/licensedcode/data/rules/mit_619.yml deleted file mode 100644 index d49ed06093f..00000000000 --- a/src/licensedcode/data/rules/mit_619.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/source-map-loader_LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_62.RULE b/src/licensedcode/data/rules/mit_62.RULE index 74c6ea80e12..9458410a5ca 100644 --- a/src/licensedcode/data/rules/mit_62.RULE +++ b/src/licensedcode/data/rules/mit_62.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/ + - http://opensource.org/licenses/mit-license.html +--- + The example programs and other software included in this repository are made available under the [OSI](http://opensource.org)-approved -[MIT license](http://opensource.org/licenses/mit-license.html). +[MIT license](http://opensource.org/licenses/mit-license.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_62.yml b/src/licensedcode/data/rules/mit_62.yml deleted file mode 100644 index 0e293b47114..00000000000 --- a/src/licensedcode/data/rules/mit_62.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/ - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_620.RULE b/src/licensedcode/data/rules/mit_620.RULE index 49e451631b0..6034634a415 100644 --- a/src/licensedcode/data/rules/mit_620.RULE +++ b/src/licensedcode/data/rules/mit_620.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/jquery_license.txt +--- + License: MIT ([license/third_party/jquery_license.txt][jquery]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_620.yml b/src/licensedcode/data/rules/mit_620.yml deleted file mode 100644 index 639cc8709aa..00000000000 --- a/src/licensedcode/data/rules/mit_620.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/jquery_license.txt diff --git a/src/licensedcode/data/rules/mit_621.RULE b/src/licensedcode/data/rules/mit_621.RULE index b0487edda6a..94b75f512f4 100644 --- a/src/licensedcode/data/rules/mit_621.RULE +++ b/src/licensedcode/data/rules/mit_621.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/jquery_license.txt +--- + [jquery]: third_party/jquery_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_621.yml b/src/licensedcode/data/rules/mit_621.yml deleted file mode 100644 index d20058c863d..00000000000 --- a/src/licensedcode/data/rules/mit_621.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/jquery_license.txt diff --git a/src/licensedcode/data/rules/mit_622.RULE b/src/licensedcode/data/rules/mit_622.RULE index 6f3b7870fca..2fb8a8fdd15 100644 --- a/src/licensedcode/data/rules/mit_622.RULE +++ b/src/licensedcode/data/rules/mit_622.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + is an open source project by that is licensed under [MIT](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_622.yml b/src/licensedcode/data/rules/mit_622.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_622.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_623.RULE b/src/licensedcode/data/rules/mit_623.RULE index 86032dc312c..cc5c525fa76 100644 --- a/src/licensedcode/data/rules/mit_623.RULE +++ b/src/licensedcode/data/rules/mit_623.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + License: [MIT][MIT] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_623.yml b/src/licensedcode/data/rules/mit_623.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_623.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_624.RULE b/src/licensedcode/data/rules/mit_624.RULE index 543c56fed2d..53d58ac4fe6 100644 --- a/src/licensedcode/data/rules/mit_624.RULE +++ b/src/licensedcode/data/rules/mit_624.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + `MIT` - [MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_624.yml b/src/licensedcode/data/rules/mit_624.yml deleted file mode 100644 index d3ebc179ced..00000000000 --- a/src/licensedcode/data/rules/mit_624.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_625.RULE b/src/licensedcode/data/rules/mit_625.RULE index ebe4ff04ec1..42ef92e3159 100644 --- a/src/licensedcode/data/rules/mit_625.RULE +++ b/src/licensedcode/data/rules/mit_625.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + released under the [MIT Open Source license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_625.yml b/src/licensedcode/data/rules/mit_625.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_625.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_626.RULE b/src/licensedcode/data/rules/mit_626.RULE index 0068c407e9d..94e54dce2ac 100644 --- a/src/licensedcode/data/rules/mit_626.RULE +++ b/src/licensedcode/data/rules/mit_626.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License ============== is provided under the MIT license. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_626.yml b/src/licensedcode/data/rules/mit_626.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_626.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_627.RULE b/src/licensedcode/data/rules/mit_627.RULE index c88aa698888..8428efeafba 100644 --- a/src/licensedcode/data/rules/mit_627.RULE +++ b/src/licensedcode/data/rules/mit_627.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is provided under the MIT license. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_627.yml b/src/licensedcode/data/rules/mit_627.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_627.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_628.RULE b/src/licensedcode/data/rules/mit_628.RULE index 496a16a796b..9295ecfd3c0 100644 --- a/src/licensedcode/data/rules/mit_628.RULE +++ b/src/licensedcode/data/rules/mit_628.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + provided under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_628.yml b/src/licensedcode/data/rules/mit_628.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_628.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_629.RULE b/src/licensedcode/data/rules/mit_629.RULE index 4921b5f355f..c9efcd1a05c 100644 --- a/src/licensedcode/data/rules/mit_629.RULE +++ b/src/licensedcode/data/rules/mit_629.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-MIT-lightgrey.svg +--- + license](https://img.shields.io/badge/license-MIT-lightgrey.svg) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_629.yml b/src/licensedcode/data/rules/mit_629.yml deleted file mode 100644 index 3a312f8ebd8..00000000000 --- a/src/licensedcode/data/rules/mit_629.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-MIT-lightgrey.svg diff --git a/src/licensedcode/data/rules/mit_63.RULE b/src/licensedcode/data/rules/mit_63.RULE index 4b0a1661aaf..dd3c2e55025 100644 --- a/src/licensedcode/data/rules/mit_63.RULE +++ b/src/licensedcode/data/rules/mit_63.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + all code by the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_63.yml b/src/licensedcode/data/rules/mit_63.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_630.RULE b/src/licensedcode/data/rules/mit_630.RULE index cc49c64c4d0..943f6a8e05c 100644 --- a/src/licensedcode/data/rules/mit_630.RULE +++ b/src/licensedcode/data/rules/mit_630.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + released under the [MIT License](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_630.yml b/src/licensedcode/data/rules/mit_630.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_630.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_631.RULE b/src/licensedcode/data/rules/mit_631.RULE index a5431e7736f..b5e3f31c666 100644 --- a/src/licensedcode/data/rules/mit_631.RULE +++ b/src/licensedcode/data/rules/mit_631.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + license is released under the [MIT License](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_631.yml b/src/licensedcode/data/rules/mit_631.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_631.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_632.RULE b/src/licensedcode/data/rules/mit_632.RULE index 74f3941bfa8..3ca5c3c191d 100644 --- a/src/licensedcode/data/rules/mit_632.RULE +++ b/src/licensedcode/data/rules/mit_632.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + MIT-licensed dependencies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_632.yml b/src/licensedcode/data/rules/mit_632.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_632.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_633.RULE b/src/licensedcode/data/rules/mit_633.RULE index 2430e506d42..0cb153ee5b6 100644 --- a/src/licensedcode/data/rules/mit_633.RULE +++ b/src/licensedcode/data/rules/mit_633.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + ## License repo is licensed under the [MIT license](LICENSE.TXT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_633.yml b/src/licensedcode/data/rules/mit_633.yml deleted file mode 100644 index b9804c4018b..00000000000 --- a/src/licensedcode/data/rules/mit_633.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/mit_634.RULE b/src/licensedcode/data/rules/mit_634.RULE index cdad6b76a71..a426b211e7b 100644 --- a/src/licensedcode/data/rules/mit_634.RULE +++ b/src/licensedcode/data/rules/mit_634.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License repo is licensed under the [MIT license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_634.yml b/src/licensedcode/data/rules/mit_634.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_634.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_635.RULE b/src/licensedcode/data/rules/mit_635.RULE index 52017e2bb27..2893218a698 100644 --- a/src/licensedcode/data/rules/mit_635.RULE +++ b/src/licensedcode/data/rules/mit_635.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + repo is licensed under the [MIT license](LICENSE.TXT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_635.yml b/src/licensedcode/data/rules/mit_635.yml deleted file mode 100644 index b9804c4018b..00000000000 --- a/src/licensedcode/data/rules/mit_635.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/mit_636.RULE b/src/licensedcode/data/rules/mit_636.RULE index 41786d93524..6c2193b96f3 100644 --- a/src/licensedcode/data/rules/mit_636.RULE +++ b/src/licensedcode/data/rules/mit_636.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + repo is licensed under the [MIT license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_636.yml b/src/licensedcode/data/rules/mit_636.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_636.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_637.RULE b/src/licensedcode/data/rules/mit_637.RULE index b98c9548cc6..613b1ddfda6 100644 --- a/src/licensedcode/data/rules/mit_637.RULE +++ b/src/licensedcode/data/rules/mit_637.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + ## License is licensed under the [MIT license](LICENSE.TXT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_637.yml b/src/licensedcode/data/rules/mit_637.yml deleted file mode 100644 index b9804c4018b..00000000000 --- a/src/licensedcode/data/rules/mit_637.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/mit_638.RULE b/src/licensedcode/data/rules/mit_638.RULE index baf76de9211..06799c00d48 100644 --- a/src/licensedcode/data/rules/mit_638.RULE +++ b/src/licensedcode/data/rules/mit_638.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License is licensed under the [MIT license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_638.yml b/src/licensedcode/data/rules/mit_638.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_638.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_639.RULE b/src/licensedcode/data/rules/mit_639.RULE index da7175e23e7..1c3a39d87b4 100644 --- a/src/licensedcode/data/rules/mit_639.RULE +++ b/src/licensedcode/data/rules/mit_639.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - LICENSE.TXT +--- + License This project is licensed under the MIT License - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_639.yml b/src/licensedcode/data/rules/mit_639.yml deleted file mode 100644 index 6f0b0699e71..00000000000 --- a/src/licensedcode/data/rules/mit_639.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/mit_64.RULE b/src/licensedcode/data/rules/mit_64.RULE index bbf3f13c6d8..24a2c5fe4de 100644 --- a/src/licensedcode/data/rules/mit_64.RULE +++ b/src/licensedcode/data/rules/mit_64.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + [MIT](https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_64.yml b/src/licensedcode/data/rules/mit_64.yml deleted file mode 100644 index 4b88a913a72..00000000000 --- a/src/licensedcode/data/rules/mit_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_640.RULE b/src/licensedcode/data/rules/mit_640.RULE index 92ae0062063..d1407818569 100644 --- a/src/licensedcode/data/rules/mit_640.RULE +++ b/src/licensedcode/data/rules/mit_640.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + This project is licensed under the MIT License - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_640.yml b/src/licensedcode/data/rules/mit_640.yml deleted file mode 100644 index b9804c4018b..00000000000 --- a/src/licensedcode/data/rules/mit_640.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/mit_641.RULE b/src/licensedcode/data/rules/mit_641.RULE index 941515e4196..d923e62579a 100644 --- a/src/licensedcode/data/rules/mit_641.RULE +++ b/src/licensedcode/data/rules/mit_641.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + licensed under the MIT License - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_641.yml b/src/licensedcode/data/rules/mit_641.yml deleted file mode 100644 index b9804c4018b..00000000000 --- a/src/licensedcode/data/rules/mit_641.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/mit_642.RULE b/src/licensedcode/data/rules/mit_642.RULE index 0d10c556f7c..95a6175b0b5 100644 --- a/src/licensedcode/data/rules/mit_642.RULE +++ b/src/licensedcode/data/rules/mit_642.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + distributed under the MIT license which encourages both commercial and non-commercial usage. Please see the file called LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_642.yml b/src/licensedcode/data/rules/mit_642.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_642.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_643.RULE b/src/licensedcode/data/rules/mit_643.RULE index 5e0c743f015..4955488589c 100644 --- a/src/licensedcode/data/rules/mit_643.RULE +++ b/src/licensedcode/data/rules/mit_643.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 90 +--- + licensed under a modified version of the MIT/X11 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_643.yml b/src/licensedcode/data/rules/mit_643.yml deleted file mode 100644 index 4526e21343f..00000000000 --- a/src/licensedcode/data/rules/mit_643.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_644.RULE b/src/licensedcode/data/rules/mit_644.RULE index 34713881dec..acfe0f0542e 100644 --- a/src/licensedcode/data/rules/mit_644.RULE +++ b/src/licensedcode/data/rules/mit_644.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + In particular, note that the MIT licence is compatible with the GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_644.yml b/src/licensedcode/data/rules/mit_644.yml deleted file mode 100644 index ab784e797bd..00000000000 --- a/src/licensedcode/data/rules/mit_644.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_645.RULE b/src/licensedcode/data/rules/mit_645.RULE index 91e06df8555..eb68e3f00cc 100644 --- a/src/licensedcode/data/rules/mit_645.RULE +++ b/src/licensedcode/data/rules/mit_645.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +minimum_coverage: 98 +--- + This project is licensed under the MIT license. Copyrights are respective of each contributor listed at the beginning of each definition file. diff --git a/src/licensedcode/data/rules/mit_645.yml b/src/licensedcode/data/rules/mit_645.yml deleted file mode 100644 index edee7a5642c..00000000000 --- a/src/licensedcode/data/rules/mit_645.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/mit_646.RULE b/src/licensedcode/data/rules/mit_646.RULE index c10e26fd0a6..c8f2e92957d 100644 --- a/src/licensedcode/data/rules/mit_646.RULE +++ b/src/licensedcode/data/rules/mit_646.RULE @@ -1 +1,9 @@ -[![license]( {{ http://img.shields.io/badge/license-MIT-blue.svg }} )]LICENSE +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://img.shields.io/badge/license-MIT-blue.svg +--- + +[![license]( {{ http://img.shields.io/badge/license-MIT-blue.svg }} )]LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_646.yml b/src/licensedcode/data/rules/mit_646.yml deleted file mode 100644 index 538235bc060..00000000000 --- a/src/licensedcode/data/rules/mit_646.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://img.shields.io/badge/license-MIT-blue.svg diff --git a/src/licensedcode/data/rules/mit_647.RULE b/src/licensedcode/data/rules/mit_647.RULE index 990b298d885..f356a0dea0b 100644 --- a/src/licensedcode/data/rules/mit_647.RULE +++ b/src/licensedcode/data/rules/mit_647.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + this source code is distributed under the MIT licence: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_647.yml b/src/licensedcode/data/rules/mit_647.yml deleted file mode 100644 index 13586eaba36..00000000000 --- a/src/licensedcode/data/rules/mit_647.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_648.RULE b/src/licensedcode/data/rules/mit_648.RULE index 22565dd3b00..9c132e7c6af 100644 --- a/src/licensedcode/data/rules/mit_648.RULE +++ b/src/licensedcode/data/rules/mit_648.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://img.shields.io/badge/license-MIT-blue.svg + - http://opensource.org/licenses/MIT +--- + [License](http://img.shields.io/badge/license-MIT-blue.svg)](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_648.yml b/src/licensedcode/data/rules/mit_648.yml deleted file mode 100644 index f00736abe84..00000000000 --- a/src/licensedcode/data/rules/mit_648.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://img.shields.io/badge/license-MIT-blue.svg - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_649.RULE b/src/licensedcode/data/rules/mit_649.RULE index 2df111c7a1e..bb510d67e6a 100644 --- a/src/licensedcode/data/rules/mit_649.RULE +++ b/src/licensedcode/data/rules/mit_649.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + ## License (The MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_649.yml b/src/licensedcode/data/rules/mit_649.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_649.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_65.RULE b/src/licensedcode/data/rules/mit_65.RULE index 41c29f0e30f..180396facae 100644 --- a/src/licensedcode/data/rules/mit_65.RULE +++ b/src/licensedcode/data/rules/mit_65.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_65.yml b/src/licensedcode/data/rules/mit_65.yml deleted file mode 100644 index 4b88a913a72..00000000000 --- a/src/licensedcode/data/rules/mit_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_650.RULE b/src/licensedcode/data/rules/mit_650.RULE index cc201b2077b..290f80be1e0 100644 --- a/src/licensedcode/data/rules/mit_650.RULE +++ b/src/licensedcode/data/rules/mit_650.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All open source code released by FT Labs is licenced under the MIT licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_650.yml b/src/licensedcode/data/rules/mit_650.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_650.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_651.RULE b/src/licensedcode/data/rules/mit_651.RULE index cfb2493e204..8174c7f4b96 100644 --- a/src/licensedcode/data/rules/mit_651.RULE +++ b/src/licensedcode/data/rules/mit_651.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licenced under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_651.yml b/src/licensedcode/data/rules/mit_651.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_651.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_652.RULE b/src/licensedcode/data/rules/mit_652.RULE index eae72497c18..9fe61a7556f 100644 --- a/src/licensedcode/data/rules/mit_652.RULE +++ b/src/licensedcode/data/rules/mit_652.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/LICENSE +--- + ## License is licensed under the [MIT License](https://github.com//LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_652.yml b/src/licensedcode/data/rules/mit_652.yml deleted file mode 100644 index 08c0b78401d..00000000000 --- a/src/licensedcode/data/rules/mit_652.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/LICENSE diff --git a/src/licensedcode/data/rules/mit_653.RULE b/src/licensedcode/data/rules/mit_653.RULE index 93c5f820fff..3fd6ab3faef 100644 --- a/src/licensedcode/data/rules/mit_653.RULE +++ b/src/licensedcode/data/rules/mit_653.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/LICENSE +--- + licensed under the [MIT License](https://github.com//LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_653.yml b/src/licensedcode/data/rules/mit_653.yml deleted file mode 100644 index 08c0b78401d..00000000000 --- a/src/licensedcode/data/rules/mit_653.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/LICENSE diff --git a/src/licensedcode/data/rules/mit_654.RULE b/src/licensedcode/data/rules/mit_654.RULE index 60472a09279..b81af1411fe 100644 --- a/src/licensedcode/data/rules/mit_654.RULE +++ b/src/licensedcode/data/rules/mit_654.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + Code licensed under the MIT License: http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_654.yml b/src/licensedcode/data/rules/mit_654.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_654.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_655.RULE b/src/licensedcode/data/rules/mit_655.RULE index 3f13ac35bf0..69efcb7e593 100644 --- a/src/licensedcode/data/rules/mit_655.RULE +++ b/src/licensedcode/data/rules/mit_655.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + Code licensed under the MIT License: https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_655.yml b/src/licensedcode/data/rules/mit_655.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_655.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_656.RULE b/src/licensedcode/data/rules/mit_656.RULE index eef39be8f2d..80248029ad0 100644 --- a/src/licensedcode/data/rules/mit_656.RULE +++ b/src/licensedcode/data/rules/mit_656.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + licensed under the MIT License: https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_656.yml b/src/licensedcode/data/rules/mit_656.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_656.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_657.RULE b/src/licensedcode/data/rules/mit_657.RULE index 530e6c4cfc0..ca0ed9f576a 100644 --- a/src/licensedcode/data/rules/mit_657.RULE +++ b/src/licensedcode/data/rules/mit_657.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + open-source software, freely distributable under the terms of an [MIT-style license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_657.yml b/src/licensedcode/data/rules/mit_657.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_657.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_658.RULE b/src/licensedcode/data/rules/mit_658.RULE index 91b5ac2a7a0..13a06aaf1ef 100644 --- a/src/licensedcode/data/rules/mit_658.RULE +++ b/src/licensedcode/data/rules/mit_658.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + freely distributable under the terms of an [MIT-style license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_658.yml b/src/licensedcode/data/rules/mit_658.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_658.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_659.RULE b/src/licensedcode/data/rules/mit_659.RULE index 9f08914d245..3dd4deaa8ae 100644 --- a/src/licensedcode/data/rules/mit_659.RULE +++ b/src/licensedcode/data/rules/mit_659.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + distributable under the terms of an [MIT-style license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_659.yml b/src/licensedcode/data/rules/mit_659.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_659.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_66.RULE b/src/licensedcode/data/rules/mit_66.RULE index 76b4a2d54bb..2f1021d1ecb 100644 --- a/src/licensedcode/data/rules/mit_66.RULE +++ b/src/licensedcode/data/rules/mit_66.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + that is licensed under [MIT](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_66.yml b/src/licensedcode/data/rules/mit_66.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_660.RULE b/src/licensedcode/data/rules/mit_660.RULE index 38d8267c5f3..18cda2473f0 100644 --- a/src/licensedcode/data/rules/mit_660.RULE +++ b/src/licensedcode/data/rules/mit_660.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + [MIT-style license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_660.yml b/src/licensedcode/data/rules/mit_660.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_660.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_661.RULE b/src/licensedcode/data/rules/mit_661.RULE index 9820ccfdcb3..9b1c9f9d993 100644 --- a/src/licensedcode/data/rules/mit_661.RULE +++ b/src/licensedcode/data/rules/mit_661.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://github.com/ + - https://img.shields.io/badge/license-MIT-blue.svg +--- + License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ /master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_661.yml b/src/licensedcode/data/rules/mit_661.yml deleted file mode 100644 index 5b84af07f9f..00000000000 --- a/src/licensedcode/data/rules/mit_661.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://github.com/ - - https://img.shields.io/badge/license-MIT-blue.svg diff --git a/src/licensedcode/data/rules/mit_662.RULE b/src/licensedcode/data/rules/mit_662.RULE index c1a4739d934..b17fc3413db 100644 --- a/src/licensedcode/data/rules/mit_662.RULE +++ b/src/licensedcode/data/rules/mit_662.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + The MIT License (http://www.opensource.org/licenses/mit-license.php) diff --git a/src/licensedcode/data/rules/mit_662.yml b/src/licensedcode/data/rules/mit_662.yml deleted file mode 100644 index 3d98c86f950..00000000000 --- a/src/licensedcode/data/rules/mit_662.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_663.RULE b/src/licensedcode/data/rules/mit_663.RULE index 985da1b253e..e8fef017aa0 100644 --- a/src/licensedcode/data/rules/mit_663.RULE +++ b/src/licensedcode/data/rules/mit_663.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + Use, reproduction, distribution, and modification of this code is subject to the terms and * conditions of the MIT license, available at diff --git a/src/licensedcode/data/rules/mit_663.yml b/src/licensedcode/data/rules/mit_663.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_663.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_664.RULE b/src/licensedcode/data/rules/mit_664.RULE index c3c7f3f46f3..672aaaaade9 100644 --- a/src/licensedcode/data/rules/mit_664.RULE +++ b/src/licensedcode/data/rules/mit_664.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Use, reproduction, distribution, and modification of this code is subject to the terms and * conditions of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_664.yml b/src/licensedcode/data/rules/mit_664.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_664.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_665.RULE b/src/licensedcode/data/rules/mit_665.RULE index 91a80e48c32..770503f3d0d 100644 --- a/src/licensedcode/data/rules/mit_665.RULE +++ b/src/licensedcode/data/rules/mit_665.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + Use, reproduction, distribution, and modification of this code is subject to the terms and * conditions of the MIT license, available at diff --git a/src/licensedcode/data/rules/mit_665.yml b/src/licensedcode/data/rules/mit_665.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_665.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_666.RULE b/src/licensedcode/data/rules/mit_666.RULE index 238ce1435ca..933490921cf 100644 --- a/src/licensedcode/data/rules/mit_666.RULE +++ b/src/licensedcode/data/rules/mit_666.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + this code is subject to the terms and * conditions of the MIT license, available at https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_666.yml b/src/licensedcode/data/rules/mit_666.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_666.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_667.RULE b/src/licensedcode/data/rules/mit_667.RULE index d8c0ce6b7ee..929782a0975 100644 --- a/src/licensedcode/data/rules/mit_667.RULE +++ b/src/licensedcode/data/rules/mit_667.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + this code is subject to the terms and * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_667.yml b/src/licensedcode/data/rules/mit_667.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_667.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_668.RULE b/src/licensedcode/data/rules/mit_668.RULE index 1187b65e5bf..32ff4b35cca 100644 --- a/src/licensedcode/data/rules/mit_668.RULE +++ b/src/licensedcode/data/rules/mit_668.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + this code is subject to the terms and conditions of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_668.yml b/src/licensedcode/data/rules/mit_668.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_668.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_669.RULE b/src/licensedcode/data/rules/mit_669.RULE index 9a672aac5a0..474766c1734 100644 --- a/src/licensedcode/data/rules/mit_669.RULE +++ b/src/licensedcode/data/rules/mit_669.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-MIT-blue.svg?style=plastic + - https://raw.githubusercontent.com/LICENSE.md +--- + [License](https://img.shields.io/badge/license-MIT-blue.svg?style=plastic)](https://raw.githubusercontent.com/LICENSE.md) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_669.yml b/src/licensedcode/data/rules/mit_669.yml deleted file mode 100644 index 12965c1af39..00000000000 --- a/src/licensedcode/data/rules/mit_669.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-MIT-blue.svg?style=plastic - - https://raw.githubusercontent.com/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_67.RULE b/src/licensedcode/data/rules/mit_67.RULE index f1b92595fff..731ea0189b1 100644 --- a/src/licensedcode/data/rules/mit_67.RULE +++ b/src/licensedcode/data/rules/mit_67.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + that is licensed under [MIT](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_67.yml b/src/licensedcode/data/rules/mit_67.yml deleted file mode 100644 index 4b88a913a72..00000000000 --- a/src/licensedcode/data/rules/mit_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_670.RULE b/src/licensedcode/data/rules/mit_670.RULE index 0c62aa48943..f2fda18a4d7 100644 --- a/src/licensedcode/data/rules/mit_670.RULE +++ b/src/licensedcode/data/rules/mit_670.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/license-MIT-blue.svg?style=plastic +--- + [License](https://img.shields.io/badge/license-MIT-blue.svg?style=plastic)] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_670.yml b/src/licensedcode/data/rules/mit_670.yml deleted file mode 100644 index ccbe7d2e467..00000000000 --- a/src/licensedcode/data/rules/mit_670.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/license-MIT-blue.svg?style=plastic diff --git a/src/licensedcode/data/rules/mit_671.RULE b/src/licensedcode/data/rules/mit_671.RULE index 100bd83cbab..21d3b20ae95 100644 --- a/src/licensedcode/data/rules/mit_671.RULE +++ b/src/licensedcode/data/rules/mit_671.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + (This is an MIT-style license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_671.yml b/src/licensedcode/data/rules/mit_671.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_671.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_672.RULE b/src/licensedcode/data/rules/mit_672.RULE index 6c1318b182c..01a33b13b74 100644 --- a/src/licensedcode/data/rules/mit_672.RULE +++ b/src/licensedcode/data/rules/mit_672.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +--- + MIT-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_672.yml b/src/licensedcode/data/rules/mit_672.yml deleted file mode 100644 index 1866f161c31..00000000000 --- a/src/licensedcode/data/rules/mit_672.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_673.RULE b/src/licensedcode/data/rules/mit_673.RULE index c1b240f1e57..c2238c07592 100644 --- a/src/licensedcode/data/rules/mit_673.RULE +++ b/src/licensedcode/data/rules/mit_673.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 80 +notes: frozendict is a python library using an MIT license +--- + Contains frozendict code \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_673.yml b/src/licensedcode/data/rules/mit_673.yml deleted file mode 100644 index c13a21b4c66..00000000000 --- a/src/licensedcode/data/rules/mit_673.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 80 -notes: frozendict is a python library using an MIT license diff --git a/src/licensedcode/data/rules/mit_674.RULE b/src/licensedcode/data/rules/mit_674.RULE index 62a49f15deb..1f75f257fbc 100644 --- a/src/licensedcode/data/rules/mit_674.RULE +++ b/src/licensedcode/data/rules/mit_674.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.html +--- + * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - * http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_674.yml b/src/licensedcode/data/rules/mit_674.yml deleted file mode 100644 index edb7a26de3a..00000000000 --- a/src/licensedcode/data/rules/mit_674.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_675.RULE b/src/licensedcode/data/rules/mit_675.RULE index aca438ca87f..cdeff16ae94 100644 --- a/src/licensedcode/data/rules/mit_675.RULE +++ b/src/licensedcode/data/rules/mit_675.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.html +--- + files are licensed under MIT License - https://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_675.yml b/src/licensedcode/data/rules/mit_675.yml deleted file mode 100644 index 5d65386d7fa..00000000000 --- a/src/licensedcode/data/rules/mit_675.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_676.RULE b/src/licensedcode/data/rules/mit_676.RULE index 8d2a887411c..516a46b7059 100644 --- a/src/licensedcode/data/rules/mit_676.RULE +++ b/src/licensedcode/data/rules/mit_676.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.libexpat.org/ +--- + Licensed under MIT license http://www.libexpat.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_676.yml b/src/licensedcode/data/rules/mit_676.yml deleted file mode 100644 index 41f6c0126bd..00000000000 --- a/src/licensedcode/data/rules/mit_676.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.libexpat.org/ diff --git a/src/licensedcode/data/rules/mit_677.RULE b/src/licensedcode/data/rules/mit_677.RULE index adb5cb2c72c..902d740652e 100644 --- a/src/licensedcode/data/rules/mit_677.RULE +++ b/src/licensedcode/data/rules/mit_677.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The annotations are licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_677.yml b/src/licensedcode/data/rules/mit_677.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_677.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_678.RULE b/src/licensedcode/data/rules/mit_678.RULE index 0eac0d82a34..6a41d43ee89 100644 --- a/src/licensedcode/data/rules/mit_678.RULE +++ b/src/licensedcode/data/rules/mit_678.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + all the parts of the Checker Framework that you might want to include with your own program use the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_678.yml b/src/licensedcode/data/rules/mit_678.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_678.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_679.RULE b/src/licensedcode/data/rules/mit_679.RULE index ff7d69e8962..77148eb940b 100644 --- a/src/licensedcode/data/rules/mit_679.RULE +++ b/src/licensedcode/data/rules/mit_679.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + are licensed under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_679.yml b/src/licensedcode/data/rules/mit_679.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_679.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_68.RULE b/src/licensedcode/data/rules/mit_68.RULE index 569cf647a31..1866e4b975a 100644 --- a/src/licensedcode/data/rules/mit_68.RULE +++ b/src/licensedcode/data/rules/mit_68.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -15,4 +20,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL OR ANY OTHER CONTRIBUTORS 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. +OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_68.yml b/src/licensedcode/data/rules/mit_68.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_68.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_680.RULE b/src/licensedcode/data/rules/mit_680.RULE index f98aed1c332..a377b79e6ea 100644 --- a/src/licensedcode/data/rules/mit_680.RULE +++ b/src/licensedcode/data/rules/mit_680.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_680.yml b/src/licensedcode/data/rules/mit_680.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_680.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_681.RULE b/src/licensedcode/data/rules/mit_681.RULE index a2a9d5153c2..69d887be94d 100644 --- a/src/licensedcode/data/rules/mit_681.RULE +++ b/src/licensedcode/data/rules/mit_681.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/mit_681.yml b/src/licensedcode/data/rules/mit_681.yml deleted file mode 100644 index 6608f7322e1..00000000000 --- a/src/licensedcode/data/rules/mit_681.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_682.RULE b/src/licensedcode/data/rules/mit_682.RULE index 08c52c30bd8..7a24d9a53f3 100644 --- a/src/licensedcode/data/rules/mit_682.RULE +++ b/src/licensedcode/data/rules/mit_682.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + released under the MIT License. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_682.yml b/src/licensedcode/data/rules/mit_682.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_682.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_683.RULE b/src/licensedcode/data/rules/mit_683.RULE index 96b0cb746da..1f006256ccb 100644 --- a/src/licensedcode/data/rules/mit_683.RULE +++ b/src/licensedcode/data/rules/mit_683.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + MIT licensed. Do whatever you want. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_683.yml b/src/licensedcode/data/rules/mit_683.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_683.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_684.RULE b/src/licensedcode/data/rules/mit_684.RULE index f777cb3e5c7..08ce4b64297 100644 --- a/src/licensedcode/data/rules/mit_684.RULE +++ b/src/licensedcode/data/rules/mit_684.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +--- + Licenses : X/MIT Licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_684.yml b/src/licensedcode/data/rules/mit_684.yml deleted file mode 100644 index 802275a47d8..00000000000 --- a/src/licensedcode/data/rules/mit_684.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_685.RULE b/src/licensedcode/data/rules/mit_685.RULE index a8e1d8a86d2..fa3e6b3eeef 100644 --- a/src/licensedcode/data/rules/mit_685.RULE +++ b/src/licensedcode/data/rules/mit_685.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +--- + X/MIT Licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_685.yml b/src/licensedcode/data/rules/mit_685.yml deleted file mode 100644 index 802275a47d8..00000000000 --- a/src/licensedcode/data/rules/mit_685.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_686.RULE b/src/licensedcode/data/rules/mit_686.RULE index b60816b33e7..f95b0a3b4be 100644 --- a/src/licensedcode/data/rules/mit_686.RULE +++ b/src/licensedcode/data/rules/mit_686.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +--- + distributed with an MIT-style license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_686.yml b/src/licensedcode/data/rules/mit_686.yml deleted file mode 100644 index 9efad39514d..00000000000 --- a/src/licensedcode/data/rules/mit_686.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_687.RULE b/src/licensedcode/data/rules/mit_687.RULE index 58ff39f96db..5702ed82a79 100644 --- a/src/licensedcode/data/rules/mit_687.RULE +++ b/src/licensedcode/data/rules/mit_687.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_687.yml b/src/licensedcode/data/rules/mit_687.yml deleted file mode 100644 index 006e6638927..00000000000 --- a/src/licensedcode/data/rules/mit_687.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_688.RULE b/src/licensedcode/data/rules/mit_688.RULE index 8e0d895ff9f..fabb7a83d9c 100644 --- a/src/licensedcode/data/rules/mit_688.RULE +++ b/src/licensedcode/data/rules/mit_688.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under the MIT open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_688.yml b/src/licensedcode/data/rules/mit_688.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_688.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_689.RULE b/src/licensedcode/data/rules/mit_689.RULE index 377c68649ec..67de52c6ec5 100644 --- a/src/licensedcode/data/rules/mit_689.RULE +++ b/src/licensedcode/data/rules/mit_689.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + [1]: , which is reproduced below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_689.yml b/src/licensedcode/data/rules/mit_689.yml deleted file mode 100644 index d3ebc179ced..00000000000 --- a/src/licensedcode/data/rules/mit_689.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_69.RULE b/src/licensedcode/data/rules/mit_69.RULE index c4c62e2c768..4fc9387e212 100644 --- a/src/licensedcode/data/rules/mit_69.RULE +++ b/src/licensedcode/data/rules/mit_69.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://img.shields.io/npm/l/aframe.svg +--- + https://img.shields.io/npm/l/aframe.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_69.yml b/src/licensedcode/data/rules/mit_69.yml deleted file mode 100644 index d66c1316b56..00000000000 --- a/src/licensedcode/data/rules/mit_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://img.shields.io/npm/l/aframe.svg diff --git a/src/licensedcode/data/rules/mit_690.RULE b/src/licensedcode/data/rules/mit_690.RULE index 3a7bdf80880..2eed8422c3d 100644 --- a/src/licensedcode/data/rules/mit_690.RULE +++ b/src/licensedcode/data/rules/mit_690.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/MIT_License +--- + distributed under the [MIT License](https://en.wikipedia.org/wiki/MIT_License). This gives everyone the freedoms to use openFrameworks in any context: commercial or non-commercial, public or private, open or closed source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_690.yml b/src/licensedcode/data/rules/mit_690.yml deleted file mode 100644 index 9690e415bd2..00000000000 --- a/src/licensedcode/data/rules/mit_690.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_691.RULE b/src/licensedcode/data/rules/mit_691.RULE index 8435437b70f..5b4f3d43ef8 100644 --- a/src/licensedcode/data/rules/mit_691.RULE +++ b/src/licensedcode/data/rules/mit_691.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + SDK SOFTWARE END USER LICENSE AGREEMENT The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_691.yml b/src/licensedcode/data/rules/mit_691.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_691.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_692.RULE b/src/licensedcode/data/rules/mit_692.RULE index 9726b590ba0..a7c11586c59 100644 --- a/src/licensedcode/data/rules/mit_692.RULE +++ b/src/licensedcode/data/rules/mit_692.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_692.yml b/src/licensedcode/data/rules/mit_692.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_692.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_693.RULE b/src/licensedcode/data/rules/mit_693.RULE index ffa3f8701d7..75d8dfb89c0 100644 --- a/src/licensedcode/data/rules/mit_693.RULE +++ b/src/licensedcode/data/rules/mit_693.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + * This software may be modified and distributed under the terms of the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_693.yml b/src/licensedcode/data/rules/mit_693.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_693.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_694.RULE b/src/licensedcode/data/rules/mit_694.RULE index 241aee71283..126ec10f111 100644 --- a/src/licensedcode/data/rules/mit_694.RULE +++ b/src/licensedcode/data/rules/mit_694.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This file may be modified and distributed under the terms of the MIT license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_694.yml b/src/licensedcode/data/rules/mit_694.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_694.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_695.RULE b/src/licensedcode/data/rules/mit_695.RULE index da6c71e27e3..ead01bbcdb7 100644 --- a/src/licensedcode/data/rules/mit_695.RULE +++ b/src/licensedcode/data/rules/mit_695.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## This bootstrap script may be modified and distributed under the terms ## of the MIT license. See the LICENSE file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_695.yml b/src/licensedcode/data/rules/mit_695.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_695.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_696.RULE b/src/licensedcode/data/rules/mit_696.RULE index a2f37cb73ec..d59a76fd12f 100644 --- a/src/licensedcode/data/rules/mit_696.RULE +++ b/src/licensedcode/data/rules/mit_696.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## This script may be modified and distributed under the terms ## of the MIT license. See the LICENSE file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_696.yml b/src/licensedcode/data/rules/mit_696.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_696.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_697.RULE b/src/licensedcode/data/rules/mit_697.RULE index be04ba5e05f..b5cddd11561 100644 --- a/src/licensedcode/data/rules/mit_697.RULE +++ b/src/licensedcode/data/rules/mit_697.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## This Makefile may be modified and distributed under the terms ## of the MIT license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_697.yml b/src/licensedcode/data/rules/mit_697.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_697.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_698.RULE b/src/licensedcode/data/rules/mit_698.RULE index e2126367a97..3af612aa839 100644 --- a/src/licensedcode/data/rules/mit_698.RULE +++ b/src/licensedcode/data/rules/mit_698.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License +--- + This software may be modified and distributed under the terms of the MIT license. To learn more, see the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_698.yml b/src/licensedcode/data/rules/mit_698.yml deleted file mode 100644 index f538c86ac0d..00000000000 --- a/src/licensedcode/data/rules/mit_698.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License diff --git a/src/licensedcode/data/rules/mit_699.RULE b/src/licensedcode/data/rules/mit_699.RULE index 3a18739ddf1..1424c190cb2 100644 --- a/src/licensedcode/data/rules/mit_699.RULE +++ b/src/licensedcode/data/rules/mit_699.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_699.yml b/src/licensedcode/data/rules/mit_699.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_699.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_7.RULE b/src/licensedcode/data/rules/mit_7.RULE index 1d0074ea5e1..c168385b99a 100644 --- a/src/licensedcode/data/rules/mit_7.RULE +++ b/src/licensedcode/data/rules/mit_7.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + executables and source code are distributed under the MIT licence, which is similar in effect to the BSD licence. (This licence is Open Source certified and complies with the Debian Free Software Guidelines.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_7.yml b/src/licensedcode/data/rules/mit_7.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_70.RULE b/src/licensedcode/data/rules/mit_70.RULE index 3b00465e508..11f9a61cf9c 100644 --- a/src/licensedcode/data/rules/mit_70.RULE +++ b/src/licensedcode/data/rules/mit_70.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License -This program is free software and is distributed under an [MIT License](LICENSE). +This program is free software and is distributed under an [MIT License](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_70.yml b/src/licensedcode/data/rules/mit_70.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_700.RULE b/src/licensedcode/data/rules/mit_700.RULE index 0bbc55a1f80..46582473003 100644 --- a/src/licensedcode/data/rules/mit_700.RULE +++ b/src/licensedcode/data/rules/mit_700.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + subject to the following license: The MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_700.yml b/src/licensedcode/data/rules/mit_700.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_700.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_701.RULE b/src/licensedcode/data/rules/mit_701.RULE index e7d59d6b6f8..eba9f9d7d48 100644 --- a/src/licensedcode/data/rules/mit_701.RULE +++ b/src/licensedcode/data/rules/mit_701.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Licensing This project is released under the terms of the MIT Open Source License. View diff --git a/src/licensedcode/data/rules/mit_701.yml b/src/licensedcode/data/rules/mit_701.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_701.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_702.RULE b/src/licensedcode/data/rules/mit_702.RULE index 05c3cc378a1..02b5c292aff 100644 --- a/src/licensedcode/data/rules/mit_702.RULE +++ b/src/licensedcode/data/rules/mit_702.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licensing This project is released under the terms of the MIT Open Source License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_702.yml b/src/licensedcode/data/rules/mit_702.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_702.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_703.RULE b/src/licensedcode/data/rules/mit_703.RULE index bf6f309fae7..aef724d02b9 100644 --- a/src/licensedcode/data/rules/mit_703.RULE +++ b/src/licensedcode/data/rules/mit_703.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is released under the terms of the MIT Open Source License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_703.yml b/src/licensedcode/data/rules/mit_703.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_703.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_704.RULE b/src/licensedcode/data/rules/mit_704.RULE index c13cf937153..747dc72e87c 100644 --- a/src/licensedcode/data/rules/mit_704.RULE +++ b/src/licensedcode/data/rules/mit_704.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + released under the terms of the MIT Open Source License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_704.yml b/src/licensedcode/data/rules/mit_704.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_704.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_705.RULE b/src/licensedcode/data/rules/mit_705.RULE index 2a86cb96699..cc7087640fc 100644 --- a/src/licensedcode/data/rules/mit_705.RULE +++ b/src/licensedcode/data/rules/mit_705.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT Open Source License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_705.yml b/src/licensedcode/data/rules/mit_705.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_705.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_706.RULE b/src/licensedcode/data/rules/mit_706.RULE index 6ab5e393ba8..7cb7779e0fb 100644 --- a/src/licensedcode/data/rules/mit_706.RULE +++ b/src/licensedcode/data/rules/mit_706.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +--- + MIT Lisence : \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_706.yml b/src/licensedcode/data/rules/mit_706.yml deleted file mode 100644 index 1866f161c31..00000000000 --- a/src/licensedcode/data/rules/mit_706.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_707.RULE b/src/licensedcode/data/rules/mit_707.RULE index e3b6f6314cf..3e3bde5ddaa 100644 --- a/src/licensedcode/data/rules/mit_707.RULE +++ b/src/licensedcode/data/rules/mit_707.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/mit/ +--- + released under the `MIT `_ license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_707.yml b/src/licensedcode/data/rules/mit_707.yml deleted file mode 100644 index 5bf44d335bc..00000000000 --- a/src/licensedcode/data/rules/mit_707.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/mit/ diff --git a/src/licensedcode/data/rules/mit_708.RULE b/src/licensedcode/data/rules/mit_708.RULE index 28e34bb2a9a..86b05a20fa8 100644 --- a/src/licensedcode/data/rules/mit_708.RULE +++ b/src/licensedcode/data/rules/mit_708.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + licensed under the terms of the MIT license. See the file COPYING in the top directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_708.yml b/src/licensedcode/data/rules/mit_708.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_708.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_709.RULE b/src/licensedcode/data/rules/mit_709.RULE index f85cee366c2..2fd2b0d84bd 100644 --- a/src/licensedcode/data/rules/mit_709.RULE +++ b/src/licensedcode/data/rules/mit_709.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + component licensed under the MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_709.yml b/src/licensedcode/data/rules/mit_709.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_709.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_71.RULE b/src/licensedcode/data/rules/mit_71.RULE index cfba310847e..047bc0c69d4 100644 --- a/src/licensedcode/data/rules/mit_71.RULE +++ b/src/licensedcode/data/rules/mit_71.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, @@ -15,4 +20,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL 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. + 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/mit_71.yml b/src/licensedcode/data/rules/mit_71.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_71.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_710.RULE b/src/licensedcode/data/rules/mit_710.RULE index 7062fce28be..8e2ac9250b9 100644 --- a/src/licensedcode/data/rules/mit_710.RULE +++ b/src/licensedcode/data/rules/mit_710.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.MIT +--- + Released under the MIT license (see COPYING.MIT for the terms) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_710.yml b/src/licensedcode/data/rules/mit_710.yml deleted file mode 100644 index aea99db83af..00000000000 --- a/src/licensedcode/data/rules/mit_710.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.MIT diff --git a/src/licensedcode/data/rules/mit_711.RULE b/src/licensedcode/data/rules/mit_711.RULE index 95cd120be52..b65ea733194 100644 --- a/src/licensedcode/data/rules/mit_711.RULE +++ b/src/licensedcode/data/rules/mit_711.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + License: [MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_711.yml b/src/licensedcode/data/rules/mit_711.yml deleted file mode 100644 index 7b82c119884..00000000000 --- a/src/licensedcode/data/rules/mit_711.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_712.RULE b/src/licensedcode/data/rules/mit_712.RULE index 138a864292e..9a69843d66f 100644 --- a/src/licensedcode/data/rules/mit_712.RULE +++ b/src/licensedcode/data/rules/mit_712.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/mit_712.yml b/src/licensedcode/data/rules/mit_712.yml deleted file mode 100644 index 6608f7322e1..00000000000 --- a/src/licensedcode/data/rules/mit_712.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_713.RULE b/src/licensedcode/data/rules/mit_713.RULE index 49472d56722..84c55078864 100644 --- a/src/licensedcode/data/rules/mit_713.RULE +++ b/src/licensedcode/data/rules/mit_713.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.mit +--- + provided under the MIT license (see COPYING.mit). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_713.yml b/src/licensedcode/data/rules/mit_713.yml deleted file mode 100644 index 243c4302e66..00000000000 --- a/src/licensedcode/data/rules/mit_713.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.mit diff --git a/src/licensedcode/data/rules/mit_714.RULE b/src/licensedcode/data/rules/mit_714.RULE index 7b523002a93..bc803ad7807 100644 --- a/src/licensedcode/data/rules/mit_714.RULE +++ b/src/licensedcode/data/rules/mit_714.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - docs +--- + The code itself is licensed under the MIT which you can read in the LICENSE file. Read more about the release licensing in the docs folder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_714.yml b/src/licensedcode/data/rules/mit_714.yml deleted file mode 100644 index 3812f3d1759..00000000000 --- a/src/licensedcode/data/rules/mit_714.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - docs diff --git a/src/licensedcode/data/rules/mit_715.RULE b/src/licensedcode/data/rules/mit_715.RULE index b731c44a364..7b2daf5a6d3 100644 --- a/src/licensedcode/data/rules/mit_715.RULE +++ b/src/licensedcode/data/rules/mit_715.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License is licensed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_715.yml b/src/licensedcode/data/rules/mit_715.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_715.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_716.RULE b/src/licensedcode/data/rules/mit_716.RULE index f5e717ade8f..105ad154d14 100644 --- a/src/licensedcode/data/rules/mit_716.RULE +++ b/src/licensedcode/data/rules/mit_716.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + which is available under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_716.yml b/src/licensedcode/data/rules/mit_716.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_716.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_717.RULE b/src/licensedcode/data/rules/mit_717.RULE index 818267d18cd..4e90540e633 100644 --- a/src/licensedcode/data/rules/mit_717.RULE +++ b/src/licensedcode/data/rules/mit_717.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + This software is provided under the terms of the MIT license, which is provided in the file "LICENSE.md". \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_717.yml b/src/licensedcode/data/rules/mit_717.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_717.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_718.RULE b/src/licensedcode/data/rules/mit_718.RULE index 75caf0f03a9..7687f592007 100644 --- a/src/licensedcode/data/rules/mit_718.RULE +++ b/src/licensedcode/data/rules/mit_718.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is provided under the terms of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_718.yml b/src/licensedcode/data/rules/mit_718.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_718.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_719.RULE b/src/licensedcode/data/rules/mit_719.RULE index 07cb782c87d..442c12c9280 100644 --- a/src/licensedcode/data/rules/mit_719.RULE +++ b/src/licensedcode/data/rules/mit_719.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: typo with "to" word missing +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software") deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/mit_719.yml b/src/licensedcode/data/rules/mit_719.yml deleted file mode 100644 index c0fd27889f2..00000000000 --- a/src/licensedcode/data/rules/mit_719.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: typo with "to" word missing diff --git a/src/licensedcode/data/rules/mit_72.RULE b/src/licensedcode/data/rules/mit_72.RULE index 8ddc96824af..daf5612e17f 100644 --- a/src/licensedcode/data/rules/mit_72.RULE +++ b/src/licensedcode/data/rules/mit_72.RULE @@ -1 +1,7 @@ -This program is free software and is distributed under an [MIT License] +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +This program is free software and is distributed under an [MIT License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_72.yml b/src/licensedcode/data/rules/mit_72.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_720.RULE b/src/licensedcode/data/rules/mit_720.RULE index 52f921d85ba..dc6b639eaa6 100644 --- a/src/licensedcode/data/rules/mit_720.RULE +++ b/src/licensedcode/data/rules/mit_720.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: MERCHANTABILITY word missing in warranty disclaimer +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/mit_720.yml b/src/licensedcode/data/rules/mit_720.yml deleted file mode 100644 index 8b1d812a83a..00000000000 --- a/src/licensedcode/data/rules/mit_720.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: MERCHANTABILITY word missing in warranty disclaimer diff --git a/src/licensedcode/data/rules/mit_721.RULE b/src/licensedcode/data/rules/mit_721.RULE index 56565fec249..1535661067d 100644 --- a/src/licensedcode/data/rules/mit_721.RULE +++ b/src/licensedcode/data/rules/mit_721.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: type with EVENT word missing in warranty disclaimer +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/mit_721.yml b/src/licensedcode/data/rules/mit_721.yml deleted file mode 100644 index cf54d9d310b..00000000000 --- a/src/licensedcode/data/rules/mit_721.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: type with EVENT word missing in warranty disclaimer diff --git a/src/licensedcode/data/rules/mit_722.RULE b/src/licensedcode/data/rules/mit_722.RULE index 9d86df424c8..46c0f77d484 100644 --- a/src/licensedcode/data/rules/mit_722.RULE +++ b/src/licensedcode/data/rules/mit_722.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 95 +notes: This MIT variant is missing "sublicense" +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_722.yml b/src/licensedcode/data/rules/mit_722.yml deleted file mode 100644 index dbeacbf9477..00000000000 --- a/src/licensedcode/data/rules/mit_722.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 95 -notes: This MIT variant is missing "sublicense" diff --git a/src/licensedcode/data/rules/mit_723.RULE b/src/licensedcode/data/rules/mit_723.RULE index a75081a69e4..32f81450eaa 100644 --- a/src/licensedcode/data/rules/mit_723.RULE +++ b/src/licensedcode/data/rules/mit_723.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + freely distributable under the terms of an [MIT-style license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_723.yml b/src/licensedcode/data/rules/mit_723.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_723.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_724.RULE b/src/licensedcode/data/rules/mit_724.RULE index 6d953ab11f4..1408c857093 100644 --- a/src/licensedcode/data/rules/mit_724.RULE +++ b/src/licensedcode/data/rules/mit_724.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + distributable under the terms of an [MIT-style license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_724.yml b/src/licensedcode/data/rules/mit_724.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_724.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_725.RULE b/src/licensedcode/data/rules/mit_725.RULE index 346f9862c22..2dd3091e088 100644 --- a/src/licensedcode/data/rules/mit_725.RULE +++ b/src/licensedcode/data/rules/mit_725.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + Licensed under the MIT license http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_725.yml b/src/licensedcode/data/rules/mit_725.yml deleted file mode 100644 index f47c1c6ff3c..00000000000 --- a/src/licensedcode/data/rules/mit_725.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_726.RULE b/src/licensedcode/data/rules/mit_726.RULE index edf78d36e42..b9c133df732 100644 --- a/src/licensedcode/data/rules/mit_726.RULE +++ b/src/licensedcode/data/rules/mit_726.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This source file is free software, available under the following license: MIT license This source file is distributed in the hope that it will be useful, but diff --git a/src/licensedcode/data/rules/mit_726.yml b/src/licensedcode/data/rules/mit_726.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_726.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_727.RULE b/src/licensedcode/data/rules/mit_727.RULE index 1a18911b87a..7edcba88a40 100644 --- a/src/licensedcode/data/rules/mit_727.RULE +++ b/src/licensedcode/data/rules/mit_727.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This source file is free software, available under the following license: MIT license This source file is distributed in the hope that it will be useful, but diff --git a/src/licensedcode/data/rules/mit_727.yml b/src/licensedcode/data/rules/mit_727.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_727.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_728.RULE b/src/licensedcode/data/rules/mit_728.RULE index da7ba864c08..0464fceb2a0 100644 --- a/src/licensedcode/data/rules/mit_728.RULE +++ b/src/licensedcode/data/rules/mit_728.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: See in https://github.com/mirror/mingw-org-wsl/blob/b6761db45b70f7def58ec55186574a084836450e/LICENSE + uses an extra "and the below disclaimer" +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/mit_728.yml b/src/licensedcode/data/rules/mit_728.yml deleted file mode 100644 index a9bf6e448d9..00000000000 --- a/src/licensedcode/data/rules/mit_728.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: See in https://github.com/mirror/mingw-org-wsl/blob/b6761db45b70f7def58ec55186574a084836450e/LICENSE - uses an extra "and the below disclaimer" diff --git a/src/licensedcode/data/rules/mit_729.RULE b/src/licensedcode/data/rules/mit_729.RULE index 007e7581c7f..ca86eadfdfa 100644 --- a/src/licensedcode/data/rules/mit_729.RULE +++ b/src/licensedcode/data/rules/mit_729.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Distributed under the terms of the MIT license. See the License file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_729.yml b/src/licensedcode/data/rules/mit_729.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_729.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_73.RULE b/src/licensedcode/data/rules/mit_73.RULE index 08be098cd63..4e2213ad7ef 100644 --- a/src/licensedcode/data/rules/mit_73.RULE +++ b/src/licensedcode/data/rules/mit_73.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/mit/ +--- + https://choosealicense.com/licenses/mit/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_73.yml b/src/licensedcode/data/rules/mit_73.yml deleted file mode 100644 index 2a790ccdf5f..00000000000 --- a/src/licensedcode/data/rules/mit_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/mit/ diff --git a/src/licensedcode/data/rules/mit_730.RULE b/src/licensedcode/data/rules/mit_730.RULE index 78c993b2c15..b000668ca21 100644 --- a/src/licensedcode/data/rules/mit_730.RULE +++ b/src/licensedcode/data/rules/mit_730.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Distributed under the MIT software license, see the accompanying file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_730.yml b/src/licensedcode/data/rules/mit_730.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_730.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_731.RULE b/src/licensedcode/data/rules/mit_731.RULE index 05a40600391..cec5ecff425 100644 --- a/src/licensedcode/data/rules/mit_731.RULE +++ b/src/licensedcode/data/rules/mit_731.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The proejct is licensed under the terms of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_731.yml b/src/licensedcode/data/rules/mit_731.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_731.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_732.RULE b/src/licensedcode/data/rules/mit_732.RULE index 179ff54dbaa..fa88820c750 100644 --- a/src/licensedcode/data/rules/mit_732.RULE +++ b/src/licensedcode/data/rules/mit_732.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The project is licensed under the terms of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_732.yml b/src/licensedcode/data/rules/mit_732.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_732.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_733.RULE b/src/licensedcode/data/rules/mit_733.RULE index e7cef76813c..342493c4273 100644 --- a/src/licensedcode/data/rules/mit_733.RULE +++ b/src/licensedcode/data/rules/mit_733.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +notes: The leading "Permission" word is missing. This is a typo and the license text is a bona + fide MIT otherwise See also https://github.com/Succo/emoji/issues/1 and https://github.com/Succo/wkttoorb/pull/1 +--- + is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/mit_733.yml b/src/licensedcode/data/rules/mit_733.yml deleted file mode 100644 index c49440b57b3..00000000000 --- a/src/licensedcode/data/rules/mit_733.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 -notes: The leading "Permission" word is missing. This is a typo and the license text is a bona - fide MIT otherwise See also https://github.com/Succo/emoji/issues/1 and https://github.com/Succo/wkttoorb/pull/1 diff --git a/src/licensedcode/data/rules/mit_734.RULE b/src/licensedcode/data/rules/mit_734.RULE index 58253db4182..47245daf25e 100644 --- a/src/licensedcode/data/rules/mit_734.RULE +++ b/src/licensedcode/data/rules/mit_734.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-MIT.txt +--- + The files are licensed under the **MIT** license - see the [LICENSE-MIT](LICENSE-MIT.txt) file for details. -These files contain the following tag instead of the full license text: +These files contain the following tag instead of the full license text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_734.yml b/src/licensedcode/data/rules/mit_734.yml deleted file mode 100644 index ec4e8455a31..00000000000 --- a/src/licensedcode/data/rules/mit_734.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-MIT.txt diff --git a/src/licensedcode/data/rules/mit_735.RULE b/src/licensedcode/data/rules/mit_735.RULE index 8d3f5407c71..dcadc2f4027 100644 --- a/src/licensedcode/data/rules/mit_735.RULE +++ b/src/licensedcode/data/rules/mit_735.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + The code is licensed MIT. See the included LICENSE file for the exact terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_735.yml b/src/licensedcode/data/rules/mit_735.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_735.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_736.RULE b/src/licensedcode/data/rules/mit_736.RULE index 8b8b146c97a..fb1232762d3 100644 --- a/src/licensedcode/data/rules/mit_736.RULE +++ b/src/licensedcode/data/rules/mit_736.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + you can redistribute it and/or modify it under the terms of the MIT License as published by the Open Source Initiative. See the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_736.yml b/src/licensedcode/data/rules/mit_736.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_736.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_737.RULE b/src/licensedcode/data/rules/mit_737.RULE index 467f4de24fb..406ec06b5cb 100644 --- a/src/licensedcode/data/rules/mit_737.RULE +++ b/src/licensedcode/data/rules/mit_737.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or modify it under the terms of the MIT License as published by the Open Source Initiative. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_737.yml b/src/licensedcode/data/rules/mit_737.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_737.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_738.RULE b/src/licensedcode/data/rules/mit_738.RULE index 6fff3942998..9fc0d6c0f2d 100644 --- a/src/licensedcode/data/rules/mit_738.RULE +++ b/src/licensedcode/data/rules/mit_738.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This is free software you can redistribute it and/or modify it under the terms of the MIT License as published by the Open Source Initiative. See the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_738.yml b/src/licensedcode/data/rules/mit_738.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_738.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_739.RULE b/src/licensedcode/data/rules/mit_739.RULE index 71c937d2481..12798696abf 100644 --- a/src/licensedcode/data/rules/mit_739.RULE +++ b/src/licensedcode/data/rules/mit_739.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This is free software you can redistribute it and/or modify it under the terms of the MIT License as published by the Open Source Initiative. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_739.yml b/src/licensedcode/data/rules/mit_739.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_739.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_74.RULE b/src/licensedcode/data/rules/mit_74.RULE index b2e48b76569..1c70b571143 100644 --- a/src/licensedcode/data/rules/mit_74.RULE +++ b/src/licensedcode/data/rules/mit_74.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -14,4 +19,4 @@ THE AUTHORS 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. + SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_74.yml b/src/licensedcode/data/rules/mit_74.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_740.RULE b/src/licensedcode/data/rules/mit_740.RULE index 403128e6538..33bb210526a 100644 --- a/src/licensedcode/data/rules/mit_740.RULE +++ b/src/licensedcode/data/rules/mit_740.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This is free software you can redistribute it and/or modify it under the terms of the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_740.yml b/src/licensedcode/data/rules/mit_740.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_740.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_741.RULE b/src/licensedcode/data/rules/mit_741.RULE index c4cd2e4760e..b0ebc3df613 100644 --- a/src/licensedcode/data/rules/mit_741.RULE +++ b/src/licensedcode/data/rules/mit_741.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + you can redistribute it and/or modify it under the terms of the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_741.yml b/src/licensedcode/data/rules/mit_741.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_741.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_742.RULE b/src/licensedcode/data/rules/mit_742.RULE index 9dfa05a4e83..0fc26b2b9bf 100644 --- a/src/licensedcode/data/rules/mit_742.RULE +++ b/src/licensedcode/data/rules/mit_742.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This is free software: you can redistribute it and/or modify it under the terms of the MIT License as published by the Open Source Initiative. See the [LICENSE](LICENSE) file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_742.yml b/src/licensedcode/data/rules/mit_742.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_742.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_743.RULE b/src/licensedcode/data/rules/mit_743.RULE index fde9c972d29..0f94bfc62cf 100644 --- a/src/licensedcode/data/rules/mit_743.RULE +++ b/src/licensedcode/data/rules/mit_743.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: minor text variant seen in https://github.com/alexgibson/notify.js/blob/master/LICENSE.md +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction except as noted below, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sublicense, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/mit_743.yml b/src/licensedcode/data/rules/mit_743.yml deleted file mode 100644 index 781ec8cc721..00000000000 --- a/src/licensedcode/data/rules/mit_743.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: minor text variant seen in https://github.com/alexgibson/notify.js/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_744.RULE b/src/licensedcode/data/rules/mit_744.RULE index 57e5d022dba..d3fcd7cc05f 100644 --- a/src/licensedcode/data/rules/mit_744.RULE +++ b/src/licensedcode/data/rules/mit_744.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_authors: + - Keith Rarick +ignorable_urls: + - https://github.com/kr/pty +--- + This product contains software (https://github.com/kr/pty) developed by Keith Rarick, licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_744.yml b/src/licensedcode/data/rules/mit_744.yml deleted file mode 100644 index 3e3baa7a7ea..00000000000 --- a/src/licensedcode/data/rules/mit_744.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_authors: - - Keith Rarick -ignorable_urls: - - https://github.com/kr/pty diff --git a/src/licensedcode/data/rules/mit_745.RULE b/src/licensedcode/data/rules/mit_745.RULE index 55fad1ab3b6..cff947b75bb 100644 --- a/src/licensedcode/data/rules/mit_745.RULE +++ b/src/licensedcode/data/rules/mit_745.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +--- + License Name: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/src/licensedcode/data/rules/mit_745.yml b/src/licensedcode/data/rules/mit_745.yml deleted file mode 100644 index 76b37c35592..00000000000 --- a/src/licensedcode/data/rules/mit_745.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/mit_746.RULE b/src/licensedcode/data/rules/mit_746.RULE index 09d7a25f097..9a66e7626e0 100644 --- a/src/licensedcode/data/rules/mit_746.RULE +++ b/src/licensedcode/data/rules/mit_746.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/expressjs/csurf/blob/1.9.0/LICENSE +--- + URL for License and Copyright Notice - https://github.com/expressjs/csurf/blob/1.9.0/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_746.yml b/src/licensedcode/data/rules/mit_746.yml deleted file mode 100644 index b9f76a2b809..00000000000 --- a/src/licensedcode/data/rules/mit_746.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/expressjs/csurf/blob/1.9.0/LICENSE diff --git a/src/licensedcode/data/rules/mit_747.RULE b/src/licensedcode/data/rules/mit_747.RULE index 2cd0062a399..4eee399887d 100644 --- a/src/licensedcode/data/rules/mit_747.RULE +++ b/src/licensedcode/data/rules/mit_747.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT: (The MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_747.yml b/src/licensedcode/data/rules/mit_747.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_747.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_748.RULE b/src/licensedcode/data/rules/mit_748.RULE index b0529519128..57944e20105 100644 --- a/src/licensedcode/data/rules/mit_748.RULE +++ b/src/licensedcode/data/rules/mit_748.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +--- + This copyright NOTICE applies to all files in this directory and ../../include/mach.h. If you take substantial code from this software to use in other programs, you must somehow include with it an appropriate diff --git a/src/licensedcode/data/rules/mit_748.yml b/src/licensedcode/data/rules/mit_748.yml deleted file mode 100644 index 6608f7322e1..00000000000 --- a/src/licensedcode/data/rules/mit_748.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_749.RULE b/src/licensedcode/data/rules/mit_749.RULE index 61b7cdb0c3d..5a059d22256 100644 --- a/src/licensedcode/data/rules/mit_749.RULE +++ b/src/licensedcode/data/rules/mit_749.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The library is licensed under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_749.yml b/src/licensedcode/data/rules/mit_749.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_749.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_75.RULE b/src/licensedcode/data/rules/mit_75.RULE index 143cd75d01d..919d4baa6ae 100644 --- a/src/licensedcode/data/rules/mit_75.RULE +++ b/src/licensedcode/data/rules/mit_75.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + [MIT License](LICENSE.md) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_75.yml b/src/licensedcode/data/rules/mit_75.yml deleted file mode 100644 index fe93be00f76..00000000000 --- a/src/licensedcode/data/rules/mit_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_750.RULE b/src/licensedcode/data/rules/mit_750.RULE index 15a9b721f50..2c287a96f5d 100644 --- a/src/licensedcode/data/rules/mit_750.RULE +++ b/src/licensedcode/data/rules/mit_750.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This library is licensed under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_750.yml b/src/licensedcode/data/rules/mit_750.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_750.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_751.RULE b/src/licensedcode/data/rules/mit_751.RULE index 97e284200ff..24baaf05817 100644 --- a/src/licensedcode/data/rules/mit_751.RULE +++ b/src/licensedcode/data/rules/mit_751.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The script is licensed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_751.yml b/src/licensedcode/data/rules/mit_751.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_751.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_752.RULE b/src/licensedcode/data/rules/mit_752.RULE index dfaab6a22b9..1b617bb9725 100644 --- a/src/licensedcode/data/rules/mit_752.RULE +++ b/src/licensedcode/data/rules/mit_752.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/GianlucaGuarini/jQuery.BlackAndWhite/blob/master/LICENSE.txt +--- + The script licenses URI: https://github.com/GianlucaGuarini/jQuery.BlackAndWhite/blob/master/LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_752.yml b/src/licensedcode/data/rules/mit_752.yml deleted file mode 100644 index c6f1d1542d6..00000000000 --- a/src/licensedcode/data/rules/mit_752.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/GianlucaGuarini/jQuery.BlackAndWhite/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_753.RULE b/src/licensedcode/data/rules/mit_753.RULE index 4f1106026e8..cd1ef099b09 100644 --- a/src/licensedcode/data/rules/mit_753.RULE +++ b/src/licensedcode/data/rules/mit_753.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + * Licensed under the MIT License (the "License"). * You may not use this file except in compliance with the License. * You may obtain a copy of the License at: diff --git a/src/licensedcode/data/rules/mit_753.yml b/src/licensedcode/data/rules/mit_753.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_753.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_754.RULE b/src/licensedcode/data/rules/mit_754.RULE index decc2ccec10..dd36e56137b 100644 --- a/src/licensedcode/data/rules/mit_754.RULE +++ b/src/licensedcode/data/rules/mit_754.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + * Licensed under the MIT License (the "License"). * You may not use this file except in compliance with the License. * You may obtain a copy of the License at: diff --git a/src/licensedcode/data/rules/mit_754.yml b/src/licensedcode/data/rules/mit_754.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_754.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_755.RULE b/src/licensedcode/data/rules/mit_755.RULE index 936c6ebf852..cfa909ebc1b 100644 --- a/src/licensedcode/data/rules/mit_755.RULE +++ b/src/licensedcode/data/rules/mit_755.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_755.yml b/src/licensedcode/data/rules/mit_755.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_755.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_756.RULE b/src/licensedcode/data/rules/mit_756.RULE index 8232f5502da..481ee1d074f 100644 --- a/src/licensedcode/data/rules/mit_756.RULE +++ b/src/licensedcode/data/rules/mit_756.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_756.yml b/src/licensedcode/data/rules/mit_756.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_756.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_757.RULE b/src/licensedcode/data/rules/mit_757.RULE index 97cf534fe89..55fcfef7c68 100644 --- a/src/licensedcode/data/rules/mit_757.RULE +++ b/src/licensedcode/data/rules/mit_757.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_757.yml b/src/licensedcode/data/rules/mit_757.yml deleted file mode 100644 index 529370510c7..00000000000 --- a/src/licensedcode/data/rules/mit_757.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_758.RULE b/src/licensedcode/data/rules/mit_758.RULE index 44010d2da93..8ef1c4a5449 100644 --- a/src/licensedcode/data/rules/mit_758.RULE +++ b/src/licensedcode/data/rules/mit_758.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This code is licensed under the MIT License. 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 diff --git a/src/licensedcode/data/rules/mit_758.yml b/src/licensedcode/data/rules/mit_758.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_758.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_759.RULE b/src/licensedcode/data/rules/mit_759.RULE index 03520ae6272..9dffcc1a05e 100644 --- a/src/licensedcode/data/rules/mit_759.RULE +++ b/src/licensedcode/data/rules/mit_759.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +minimum_coverage: 95 +referenced_filenames: + - README +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + Licensed under the MIT License(the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License in the README file or at @@ -12,4 +22,4 @@ 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. +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/mit_759.yml b/src/licensedcode/data/rules/mit_759.yml deleted file mode 100644 index 559f8ef6c9d..00000000000 --- a/src/licensedcode/data/rules/mit_759.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -minimum_coverage: 95 -referenced_filenames: - - README -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_76.RULE b/src/licensedcode/data/rules/mit_76.RULE index e0cf7ec8320..de34f64bc2c 100644 --- a/src/licensedcode/data/rules/mit_76.RULE +++ b/src/licensedcode/data/rules/mit_76.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + repository is under MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_76.yml b/src/licensedcode/data/rules/mit_76.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_760.RULE b/src/licensedcode/data/rules/mit_760.RULE index a7c1b731f6e..9836db1205c 100644 --- a/src/licensedcode/data/rules/mit_760.RULE +++ b/src/licensedcode/data/rules/mit_760.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + * It is licensed under the MIT license. The full license text can be found * in the License.txt file at the root of this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_760.yml b/src/licensedcode/data/rules/mit_760.yml deleted file mode 100644 index 96a25a66d34..00000000000 --- a/src/licensedcode/data/rules/mit_760.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/mit_761.RULE b/src/licensedcode/data/rules/mit_761.RULE index 82cea89e55b..4eaccd391d2 100644 --- a/src/licensedcode/data/rules/mit_761.RULE +++ b/src/licensedcode/data/rules/mit_761.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at the root of this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_761.yml b/src/licensedcode/data/rules/mit_761.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_761.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_762.RULE b/src/licensedcode/data/rules/mit_762.RULE index 71bc4b06a4a..a47ffcedaca 100644 --- a/src/licensedcode/data/rules/mit_762.RULE +++ b/src/licensedcode/data/rules/mit_762.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The following libraries are licensed under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_762.yml b/src/licensedcode/data/rules/mit_762.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_762.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_763.RULE b/src/licensedcode/data/rules/mit_763.RULE index ecb71d20bd6..31e1cec31b0 100644 --- a/src/licensedcode/data/rules/mit_763.RULE +++ b/src/licensedcode/data/rules/mit_763.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licensing The library is licensed under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_763.yml b/src/licensedcode/data/rules/mit_763.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_763.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_764.RULE b/src/licensedcode/data/rules/mit_764.RULE index 786e10ab1c8..d7232c1cc73 100644 --- a/src/licensedcode/data/rules/mit_764.RULE +++ b/src/licensedcode/data/rules/mit_764.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The initial list of generic feature phones & smartphones came from Mobile Web OSP under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_764.yml b/src/licensedcode/data/rules/mit_764.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_764.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_765.RULE b/src/licensedcode/data/rules/mit_765.RULE index 0d2254f6a67..34b265eb150 100644 --- a/src/licensedcode/data/rules/mit_765.RULE +++ b/src/licensedcode/data/rules/mit_765.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The initial list of spiders was taken from 's profile project under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_765.yml b/src/licensedcode/data/rules/mit_765.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_765.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_766.RULE b/src/licensedcode/data/rules/mit_766.RULE index 05652b70e94..6a14229aa31 100644 --- a/src/licensedcode/data/rules/mit_766.RULE +++ b/src/licensedcode/data/rules/mit_766.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The library is licenced under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_766.yml b/src/licensedcode/data/rules/mit_766.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_766.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_767.RULE b/src/licensedcode/data/rules/mit_767.RULE index 5f7191ee0b7..de932a8a626 100644 --- a/src/licensedcode/data/rules/mit_767.RULE +++ b/src/licensedcode/data/rules/mit_767.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This library is licenced under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_767.yml b/src/licensedcode/data/rules/mit_767.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_767.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_768.RULE b/src/licensedcode/data/rules/mit_768.RULE index 51e95cf9437..b68cddc749d 100644 --- a/src/licensedcode/data/rules/mit_768.RULE +++ b/src/licensedcode/data/rules/mit_768.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The script is licenced under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_768.yml b/src/licensedcode/data/rules/mit_768.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_768.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_769.RULE b/src/licensedcode/data/rules/mit_769.RULE index 7621d951ab4..96f53211236 100644 --- a/src/licensedcode/data/rules/mit_769.RULE +++ b/src/licensedcode/data/rules/mit_769.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + * It is licenced under the MIT license. The full license text can be found * in the License.txt file at the root of this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_769.yml b/src/licensedcode/data/rules/mit_769.yml deleted file mode 100644 index 96a25a66d34..00000000000 --- a/src/licensedcode/data/rules/mit_769.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/mit_77.RULE b/src/licensedcode/data/rules/mit_77.RULE index 1998e816f1b..a988ebcc93d 100644 --- a/src/licensedcode/data/rules/mit_77.RULE +++ b/src/licensedcode/data/rules/mit_77.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is under MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_77.yml b/src/licensedcode/data/rules/mit_77.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_770.RULE b/src/licensedcode/data/rules/mit_770.RULE index 984bd478a09..bcf782f46ac 100644 --- a/src/licensedcode/data/rules/mit_770.RULE +++ b/src/licensedcode/data/rules/mit_770.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The following libraries are licenced under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_770.yml b/src/licensedcode/data/rules/mit_770.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_770.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_771.RULE b/src/licensedcode/data/rules/mit_771.RULE index cd80c71611d..c297989148e 100644 --- a/src/licensedcode/data/rules/mit_771.RULE +++ b/src/licensedcode/data/rules/mit_771.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licensing The library is licenced under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_771.yml b/src/licensedcode/data/rules/mit_771.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_771.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_772.RULE b/src/licensedcode/data/rules/mit_772.RULE index 8e6f44db474..fe9babe9193 100644 --- a/src/licensedcode/data/rules/mit_772.RULE +++ b/src/licensedcode/data/rules/mit_772.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: Uses "sell copy of the Software" instead of "copies" See https://github.com/skypjack/uvw/blob/99946ba004b324982c660d357a996c83c97e4193/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_772.yml b/src/licensedcode/data/rules/mit_772.yml deleted file mode 100644 index 0edaba57115..00000000000 --- a/src/licensedcode/data/rules/mit_772.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: Uses "sell copy of the Software" instead of "copies" See https://github.com/skypjack/uvw/blob/99946ba004b324982c660d357a996c83c97e4193/LICENSE diff --git a/src/licensedcode/data/rules/mit_773.RULE b/src/licensedcode/data/rules/mit_773.RULE index e6fcce615b2..850f38e300c 100644 --- a/src/licensedcode/data/rules/mit_773.RULE +++ b/src/licensedcode/data/rules/mit_773.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: hyphenated MIT from https://github.com/rtomayko/ronn/blob/c12e25d200d4851918c8d39d796091e6635cab9d/COPYING +--- + Permission is hereby granted, free of charge, to any person ob- taining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restric- diff --git a/src/licensedcode/data/rules/mit_773.yml b/src/licensedcode/data/rules/mit_773.yml deleted file mode 100644 index 1aafadb0bdb..00000000000 --- a/src/licensedcode/data/rules/mit_773.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: hyphenated MIT from https://github.com/rtomayko/ronn/blob/c12e25d200d4851918c8d39d796091e6635cab9d/COPYING diff --git a/src/licensedcode/data/rules/mit_774.RULE b/src/licensedcode/data/rules/mit_774.RULE index 7d92c378633..897466d8ea0 100644 --- a/src/licensedcode/data/rules/mit_774.RULE +++ b/src/licensedcode/data/rules/mit_774.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +notes: truncated MIT from https://github.com/egoist/devdocs-desktop/blob/e03e48e606986bf892cf9e53a60ea26b83f5074c/LICENSE + See https://github.com/egoist/devdocs-desktop/pull/137 for a fix +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_774.yml b/src/licensedcode/data/rules/mit_774.yml deleted file mode 100644 index 9ce39bccea5..00000000000 --- a/src/licensedcode/data/rules/mit_774.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 -notes: truncated MIT from https://github.com/egoist/devdocs-desktop/blob/e03e48e606986bf892cf9e53a60ea26b83f5074c/LICENSE - See https://github.com/egoist/devdocs-desktop/pull/137 for a fix diff --git a/src/licensedcode/data/rules/mit_775.RULE b/src/licensedcode/data/rules/mit_775.RULE index b1299cfa1e5..11fcaf05f89 100644 --- a/src/licensedcode/data/rules/mit_775.RULE +++ b/src/licensedcode/data/rules/mit_775.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: typo in text from https://github.com/ChavezChen/CWLateralSlide/blob/fdf8f70471832b8e50f78639a792e55a08741d75/LICENSE + See also this PR to fix this https://github.com/ChavezChen/CWLateralSlide/pull/130 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_775.yml b/src/licensedcode/data/rules/mit_775.yml deleted file mode 100644 index 9a90a25aa2a..00000000000 --- a/src/licensedcode/data/rules/mit_775.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: typo in text from https://github.com/ChavezChen/CWLateralSlide/blob/fdf8f70471832b8e50f78639a792e55a08741d75/LICENSE - See also this PR to fix this https://github.com/ChavezChen/CWLateralSlide/pull/130 diff --git a/src/licensedcode/data/rules/mit_776.RULE b/src/licensedcode/data/rules/mit_776.RULE index 80f901a36ab..37117a236b8 100644 --- a/src/licensedcode/data/rules/mit_776.RULE +++ b/src/licensedcode/data/rules/mit_776.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + Licensed under the MIT license. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_776.yml b/src/licensedcode/data/rules/mit_776.yml deleted file mode 100644 index 66e26de29f0..00000000000 --- a/src/licensedcode/data/rules/mit_776.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_777.RULE b/src/licensedcode/data/rules/mit_777.RULE index 606959dcaad..5b95cdc4099 100644 --- a/src/licensedcode/data/rules/mit_777.RULE +++ b/src/licensedcode/data/rules/mit_777.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + Licensed under the MIT license. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_777.yml b/src/licensedcode/data/rules/mit_777.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_777.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_778.RULE b/src/licensedcode/data/rules/mit_778.RULE index 53592ba864c..2d361235081 100644 --- a/src/licensedcode/data/rules/mit_778.RULE +++ b/src/licensedcode/data/rules/mit_778.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + under the MIT license. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_778.yml b/src/licensedcode/data/rules/mit_778.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_778.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_779.RULE b/src/licensedcode/data/rules/mit_779.RULE index 32112cbc4b5..5cd8ae28ac5 100644 --- a/src/licensedcode/data/rules/mit_779.RULE +++ b/src/licensedcode/data/rules/mit_779.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit +--- + under the MIT license. * https://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_779.yml b/src/licensedcode/data/rules/mit_779.yml deleted file mode 100644 index 32144795612..00000000000 --- a/src/licensedcode/data/rules/mit_779.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_78.RULE b/src/licensedcode/data/rules/mit_78.RULE index 250edcc6394..6209fd38d17 100644 --- a/src/licensedcode/data/rules/mit_78.RULE +++ b/src/licensedcode/data/rules/mit_78.RULE @@ -1 +1,9 @@ - [MIT](http://opensource.org/licenses/MIT) +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + + [MIT](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_78.yml b/src/licensedcode/data/rules/mit_78.yml deleted file mode 100644 index d3ebc179ced..00000000000 --- a/src/licensedcode/data/rules/mit_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_780.RULE b/src/licensedcode/data/rules/mit_780.RULE index aea37535d7c..ea6c5d5d1a5 100644 --- a/src/licensedcode/data/rules/mit_780.RULE +++ b/src/licensedcode/data/rules/mit_780.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit +--- + under the MIT license. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_780.yml b/src/licensedcode/data/rules/mit_780.yml deleted file mode 100644 index c004435543e..00000000000 --- a/src/licensedcode/data/rules/mit_780.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_781.RULE b/src/licensedcode/data/rules/mit_781.RULE index 84c4a95b9e1..776aaf21f5b 100644 --- a/src/licensedcode/data/rules/mit_781.RULE +++ b/src/licensedcode/data/rules/mit_781.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + under the MIT license. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_781.yml b/src/licensedcode/data/rules/mit_781.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_781.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_782.RULE b/src/licensedcode/data/rules/mit_782.RULE index 457e1e5219b..229afa8bc3a 100644 --- a/src/licensedcode/data/rules/mit_782.RULE +++ b/src/licensedcode/data/rules/mit_782.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + under the MIT license. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_782.yml b/src/licensedcode/data/rules/mit_782.yml deleted file mode 100644 index 66e26de29f0..00000000000 --- a/src/licensedcode/data/rules/mit_782.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_783.RULE b/src/licensedcode/data/rules/mit_783.RULE index 6eab0efda70..e3ec42850ac 100644 --- a/src/licensedcode/data/rules/mit_783.RULE +++ b/src/licensedcode/data/rules/mit_783.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + the MIT license. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_783.yml b/src/licensedcode/data/rules/mit_783.yml deleted file mode 100644 index 66e26de29f0..00000000000 --- a/src/licensedcode/data/rules/mit_783.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_784.RULE b/src/licensedcode/data/rules/mit_784.RULE index 1cbf198d571..11f845ed7ee 100644 --- a/src/licensedcode/data/rules/mit_784.RULE +++ b/src/licensedcode/data/rules/mit_784.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + the MIT license. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_784.yml b/src/licensedcode/data/rules/mit_784.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_784.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_785.RULE b/src/licensedcode/data/rules/mit_785.RULE index bef4885e73a..b085c1846b7 100644 --- a/src/licensedcode/data/rules/mit_785.RULE +++ b/src/licensedcode/data/rules/mit_785.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + MIT license. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_785.yml b/src/licensedcode/data/rules/mit_785.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_785.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_786.RULE b/src/licensedcode/data/rules/mit_786.RULE index 21323cdbe49..bea548d5a41 100644 --- a/src/licensedcode/data/rules/mit_786.RULE +++ b/src/licensedcode/data/rules/mit_786.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + MIT license. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_786.yml b/src/licensedcode/data/rules/mit_786.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_786.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_787.RULE b/src/licensedcode/data/rules/mit_787.RULE index a011b7f90ce..7d9b8bb0a50 100644 --- a/src/licensedcode/data/rules/mit_787.RULE +++ b/src/licensedcode/data/rules/mit_787.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit +--- + MIT license. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_787.yml b/src/licensedcode/data/rules/mit_787.yml deleted file mode 100644 index c004435543e..00000000000 --- a/src/licensedcode/data/rules/mit_787.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_788.RULE b/src/licensedcode/data/rules/mit_788.RULE index 8b4bd113e10..2f2c856ece0 100644 --- a/src/licensedcode/data/rules/mit_788.RULE +++ b/src/licensedcode/data/rules/mit_788.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + Licensed under the MIT licence. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_788.yml b/src/licensedcode/data/rules/mit_788.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_788.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_789.RULE b/src/licensedcode/data/rules/mit_789.RULE index b73ff7c488f..a6af4f57145 100644 --- a/src/licensedcode/data/rules/mit_789.RULE +++ b/src/licensedcode/data/rules/mit_789.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + Licensed under the MIT licence. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_789.yml b/src/licensedcode/data/rules/mit_789.yml deleted file mode 100644 index 66e26de29f0..00000000000 --- a/src/licensedcode/data/rules/mit_789.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_79.RULE b/src/licensedcode/data/rules/mit_79.RULE index eea0bd06da3..6a26bad1d34 100644 --- a/src/licensedcode/data/rules/mit_79.RULE +++ b/src/licensedcode/data/rules/mit_79.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mit-license.org/ +--- + is distributed under [MIT license](http://mit-license.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_79.yml b/src/licensedcode/data/rules/mit_79.yml deleted file mode 100644 index 9a213cecbd7..00000000000 --- a/src/licensedcode/data/rules/mit_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mit-license.org/ diff --git a/src/licensedcode/data/rules/mit_790.RULE b/src/licensedcode/data/rules/mit_790.RULE index cef72d81423..6f175c131e8 100644 --- a/src/licensedcode/data/rules/mit_790.RULE +++ b/src/licensedcode/data/rules/mit_790.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + Licensed under the MIT licence. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_790.yml b/src/licensedcode/data/rules/mit_790.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_790.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_791.RULE b/src/licensedcode/data/rules/mit_791.RULE index 56bb5a5c9db..c15049df1af 100644 --- a/src/licensedcode/data/rules/mit_791.RULE +++ b/src/licensedcode/data/rules/mit_791.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit +--- + Licensed under the MIT licence. * https://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_791.yml b/src/licensedcode/data/rules/mit_791.yml deleted file mode 100644 index 32144795612..00000000000 --- a/src/licensedcode/data/rules/mit_791.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_792.RULE b/src/licensedcode/data/rules/mit_792.RULE index a7620077ed6..ef1917f4fbc 100644 --- a/src/licensedcode/data/rules/mit_792.RULE +++ b/src/licensedcode/data/rules/mit_792.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit +--- + Licensed under the MIT licence. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_792.yml b/src/licensedcode/data/rules/mit_792.yml deleted file mode 100644 index c004435543e..00000000000 --- a/src/licensedcode/data/rules/mit_792.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_793.RULE b/src/licensedcode/data/rules/mit_793.RULE index 48ab28f069f..443e43da714 100644 --- a/src/licensedcode/data/rules/mit_793.RULE +++ b/src/licensedcode/data/rules/mit_793.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + under the MIT licence. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_793.yml b/src/licensedcode/data/rules/mit_793.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_793.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_794.RULE b/src/licensedcode/data/rules/mit_794.RULE index d5794f537b6..3c995645c84 100644 --- a/src/licensedcode/data/rules/mit_794.RULE +++ b/src/licensedcode/data/rules/mit_794.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit +--- + under the MIT licence. * https://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_794.yml b/src/licensedcode/data/rules/mit_794.yml deleted file mode 100644 index 32144795612..00000000000 --- a/src/licensedcode/data/rules/mit_794.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_795.RULE b/src/licensedcode/data/rules/mit_795.RULE index 57de3bfa273..b347f238710 100644 --- a/src/licensedcode/data/rules/mit_795.RULE +++ b/src/licensedcode/data/rules/mit_795.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit +--- + under the MIT licence. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_795.yml b/src/licensedcode/data/rules/mit_795.yml deleted file mode 100644 index c004435543e..00000000000 --- a/src/licensedcode/data/rules/mit_795.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_796.RULE b/src/licensedcode/data/rules/mit_796.RULE index 765dd197240..dcfa79eb142 100644 --- a/src/licensedcode/data/rules/mit_796.RULE +++ b/src/licensedcode/data/rules/mit_796.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + under the MIT licence. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_796.yml b/src/licensedcode/data/rules/mit_796.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_796.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_797.RULE b/src/licensedcode/data/rules/mit_797.RULE index e983a332cbb..71114934c66 100644 --- a/src/licensedcode/data/rules/mit_797.RULE +++ b/src/licensedcode/data/rules/mit_797.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + under the MIT licence. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_797.yml b/src/licensedcode/data/rules/mit_797.yml deleted file mode 100644 index 66e26de29f0..00000000000 --- a/src/licensedcode/data/rules/mit_797.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_798.RULE b/src/licensedcode/data/rules/mit_798.RULE index 9268003bd15..7c67237568e 100644 --- a/src/licensedcode/data/rules/mit_798.RULE +++ b/src/licensedcode/data/rules/mit_798.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + the MIT licence. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_798.yml b/src/licensedcode/data/rules/mit_798.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_798.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_799.RULE b/src/licensedcode/data/rules/mit_799.RULE index 42d73cf4f5b..b9422d95fb7 100644 --- a/src/licensedcode/data/rules/mit_799.RULE +++ b/src/licensedcode/data/rules/mit_799.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + the MIT licence. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_799.yml b/src/licensedcode/data/rules/mit_799.yml deleted file mode 100644 index 66e26de29f0..00000000000 --- a/src/licensedcode/data/rules/mit_799.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_8.RULE b/src/licensedcode/data/rules/mit_8.RULE index 3cdd595d5af..55cac1126b3 100644 --- a/src/licensedcode/data/rules/mit_8.RULE +++ b/src/licensedcode/data/rules/mit_8.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is covered by the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_8.yml b/src/licensedcode/data/rules/mit_8.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_80.RULE b/src/licensedcode/data/rules/mit_80.RULE index 4d73ee35807..5e372aa5c7e 100644 --- a/src/licensedcode/data/rules/mit_80.RULE +++ b/src/licensedcode/data/rules/mit_80.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + I’m now releasing my software under the MIT license for anyone’s use \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_80.yml b/src/licensedcode/data/rules/mit_80.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_800.RULE b/src/licensedcode/data/rules/mit_800.RULE index aee452f4550..0b9be6f149f 100644 --- a/src/licensedcode/data/rules/mit_800.RULE +++ b/src/licensedcode/data/rules/mit_800.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + the MIT licence. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_800.yml b/src/licensedcode/data/rules/mit_800.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_800.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_801.RULE b/src/licensedcode/data/rules/mit_801.RULE index e53ff667add..ad13b6f6b43 100644 --- a/src/licensedcode/data/rules/mit_801.RULE +++ b/src/licensedcode/data/rules/mit_801.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit +--- + the MIT licence. * https://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_801.yml b/src/licensedcode/data/rules/mit_801.yml deleted file mode 100644 index 32144795612..00000000000 --- a/src/licensedcode/data/rules/mit_801.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_802.RULE b/src/licensedcode/data/rules/mit_802.RULE index cbc083cd39e..f5e03cc514a 100644 --- a/src/licensedcode/data/rules/mit_802.RULE +++ b/src/licensedcode/data/rules/mit_802.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit +--- + the MIT licence. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_802.yml b/src/licensedcode/data/rules/mit_802.yml deleted file mode 100644 index c004435543e..00000000000 --- a/src/licensedcode/data/rules/mit_802.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_803.RULE b/src/licensedcode/data/rules/mit_803.RULE index 23555dd9303..04bffc037e7 100644 --- a/src/licensedcode/data/rules/mit_803.RULE +++ b/src/licensedcode/data/rules/mit_803.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + MIT licence. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_803.yml b/src/licensedcode/data/rules/mit_803.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_803.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_804.RULE b/src/licensedcode/data/rules/mit_804.RULE index 68696a44d7d..475219e4e50 100644 --- a/src/licensedcode/data/rules/mit_804.RULE +++ b/src/licensedcode/data/rules/mit_804.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + MIT licence. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_804.yml b/src/licensedcode/data/rules/mit_804.yml deleted file mode 100644 index 66e26de29f0..00000000000 --- a/src/licensedcode/data/rules/mit_804.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_805.RULE b/src/licensedcode/data/rules/mit_805.RULE index 39ca9da23e0..dc8440cf030 100644 --- a/src/licensedcode/data/rules/mit_805.RULE +++ b/src/licensedcode/data/rules/mit_805.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + MIT licence. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_805.yml b/src/licensedcode/data/rules/mit_805.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_805.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_806.RULE b/src/licensedcode/data/rules/mit_806.RULE index e9cc22f16a5..858164ce4c4 100644 --- a/src/licensedcode/data/rules/mit_806.RULE +++ b/src/licensedcode/data/rules/mit_806.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit +--- + MIT licence. * https://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_806.yml b/src/licensedcode/data/rules/mit_806.yml deleted file mode 100644 index 32144795612..00000000000 --- a/src/licensedcode/data/rules/mit_806.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_807.RULE b/src/licensedcode/data/rules/mit_807.RULE index 7001a74350b..22ef317dcb5 100644 --- a/src/licensedcode/data/rules/mit_807.RULE +++ b/src/licensedcode/data/rules/mit_807.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit +--- + MIT licence. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_807.yml b/src/licensedcode/data/rules/mit_807.yml deleted file mode 100644 index c004435543e..00000000000 --- a/src/licensedcode/data/rules/mit_807.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_808.RULE b/src/licensedcode/data/rules/mit_808.RULE index 6ddc002a868..5cff05e09e0 100644 --- a/src/licensedcode/data/rules/mit_808.RULE +++ b/src/licensedcode/data/rules/mit_808.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + Licenced under the MIT licence. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_808.yml b/src/licensedcode/data/rules/mit_808.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_808.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_809.RULE b/src/licensedcode/data/rules/mit_809.RULE index 47a64c411a2..8f8fcebf3f0 100644 --- a/src/licensedcode/data/rules/mit_809.RULE +++ b/src/licensedcode/data/rules/mit_809.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license +--- + Licenced under the MIT licence. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_809.yml b/src/licensedcode/data/rules/mit_809.yml deleted file mode 100644 index 66e26de29f0..00000000000 --- a/src/licensedcode/data/rules/mit_809.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_81.RULE b/src/licensedcode/data/rules/mit_81.RULE index 5ce4b9262ec..18d23a38c62 100644 --- a/src/licensedcode/data/rules/mit_81.RULE +++ b/src/licensedcode/data/rules/mit_81.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + * This software is released under the MIT License-> * http://opensource->org/licenses/mit-license->php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_81.yml b/src/licensedcode/data/rules/mit_81.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_810.RULE b/src/licensedcode/data/rules/mit_810.RULE index 90b66082aa0..35480a5e683 100644 --- a/src/licensedcode/data/rules/mit_810.RULE +++ b/src/licensedcode/data/rules/mit_810.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + Licenced under the MIT licence. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_810.yml b/src/licensedcode/data/rules/mit_810.yml deleted file mode 100644 index 63ca367284e..00000000000 --- a/src/licensedcode/data/rules/mit_810.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_811.RULE b/src/licensedcode/data/rules/mit_811.RULE index 99462799964..45e0b28a0ae 100644 --- a/src/licensedcode/data/rules/mit_811.RULE +++ b/src/licensedcode/data/rules/mit_811.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit +--- + Licenced under the MIT licence. * https://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_811.yml b/src/licensedcode/data/rules/mit_811.yml deleted file mode 100644 index 32144795612..00000000000 --- a/src/licensedcode/data/rules/mit_811.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_812.RULE b/src/licensedcode/data/rules/mit_812.RULE index e8a93a4b616..2fcb7b0d3b7 100644 --- a/src/licensedcode/data/rules/mit_812.RULE +++ b/src/licensedcode/data/rules/mit_812.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit +--- + Licenced under the MIT licence. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_812.yml b/src/licensedcode/data/rules/mit_812.yml deleted file mode 100644 index c004435543e..00000000000 --- a/src/licensedcode/data/rules/mit_812.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_813.RULE b/src/licensedcode/data/rules/mit_813.RULE index 944e1e8e1da..60809c71da9 100644 --- a/src/licensedcode/data/rules/mit_813.RULE +++ b/src/licensedcode/data/rules/mit_813.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +notes: truncated MIT. See PR to fix this at https://github.com/apache/drill/pull/2111 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_813.yml b/src/licensedcode/data/rules/mit_813.yml deleted file mode 100644 index e7bd49ee0af..00000000000 --- a/src/licensedcode/data/rules/mit_813.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 -notes: truncated MIT. See PR to fix this at https://github.com/apache/drill/pull/2111 diff --git a/src/licensedcode/data/rules/mit_814.RULE b/src/licensedcode/data/rules/mit_814.RULE index b333e8c608a..0f9e0bae2b3 100644 --- a/src/licensedcode/data/rules/mit_814.RULE +++ b/src/licensedcode/data/rules/mit_814.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Free to use and distribute under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_814.yml b/src/licensedcode/data/rules/mit_814.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_814.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_815.RULE b/src/licensedcode/data/rules/mit_815.RULE index f7b2f5b871c..4565401725c 100644 --- a/src/licensedcode/data/rules/mit_815.RULE +++ b/src/licensedcode/data/rules/mit_815.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + distributed under MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_815.yml b/src/licensedcode/data/rules/mit_815.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_815.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_816.RULE b/src/licensedcode/data/rules/mit_816.RULE index eb41831373d..becd29d4235 100644 --- a/src/licensedcode/data/rules/mit_816.RULE +++ b/src/licensedcode/data/rules/mit_816.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_816.yml b/src/licensedcode/data/rules/mit_816.yml deleted file mode 100644 index dd2adf0cf10..00000000000 --- a/src/licensedcode/data/rules/mit_816.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_817.RULE b/src/licensedcode/data/rules/mit_817.RULE index 2f6eb9252e0..86c468665d1 100644 --- a/src/licensedcode/data/rules/mit_817.RULE +++ b/src/licensedcode/data/rules/mit_817.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This work is distributed under the MIT Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_817.yml b/src/licensedcode/data/rules/mit_817.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_817.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_818.RULE b/src/licensedcode/data/rules/mit_818.RULE index a79da8ba939..cd5f10e0cf8 100644 --- a/src/licensedcode/data/rules/mit_818.RULE +++ b/src/licensedcode/data/rules/mit_818.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 98 +--- + This work is distributed under the MIT Licence. diff --git a/src/licensedcode/data/rules/mit_818.yml b/src/licensedcode/data/rules/mit_818.yml deleted file mode 100644 index 9b1eab4b810..00000000000 --- a/src/licensedcode/data/rules/mit_818.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 98 diff --git a/src/licensedcode/data/rules/mit_819.RULE b/src/licensedcode/data/rules/mit_819.RULE index bc701b34d2d..bfb6efbf7d3 100644 --- a/src/licensedcode/data/rules/mit_819.RULE +++ b/src/licensedcode/data/rules/mit_819.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: An hyphenated version of the text Seen in https://github.com/boto/boto/blob/91ba037e54ef521c379263b0ac769c66182527d7/boto/datapipeline/exceptions.py +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/mit_819.yml b/src/licensedcode/data/rules/mit_819.yml deleted file mode 100644 index bb90ad4d832..00000000000 --- a/src/licensedcode/data/rules/mit_819.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: An hyphenated version of the text Seen in https://github.com/boto/boto/blob/91ba037e54ef521c379263b0ac769c66182527d7/boto/datapipeline/exceptions.py diff --git a/src/licensedcode/data/rules/mit_82.RULE b/src/licensedcode/data/rules/mit_82.RULE index 06aa4799e07..a598d6cba54 100644 --- a/src/licensedcode/data/rules/mit_82.RULE +++ b/src/licensedcode/data/rules/mit_82.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + "http://opensource->org/licenses/MIT" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_82.yml b/src/licensedcode/data/rules/mit_82.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_820.RULE b/src/licensedcode/data/rules/mit_820.RULE index 27654ff8733..661a93e2bb0 100644 --- a/src/licensedcode/data/rules/mit_820.RULE +++ b/src/licensedcode/data/rules/mit_820.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: See in https://github.com/socketio/socket.io-client-cpp/blob/6063cb1d612f6ca0232d4134a018053fb8faea20/LICENSE + Uses "subject to all conditions" instead of "subject to the following conditions" +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_820.yml b/src/licensedcode/data/rules/mit_820.yml deleted file mode 100644 index 52e0522fe96..00000000000 --- a/src/licensedcode/data/rules/mit_820.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: See in https://github.com/socketio/socket.io-client-cpp/blob/6063cb1d612f6ca0232d4134a018053fb8faea20/LICENSE - Uses "subject to all conditions" instead of "subject to the following conditions" diff --git a/src/licensedcode/data/rules/mit_821.RULE b/src/licensedcode/data/rules/mit_821.RULE index 72fd49f8e05..a948bda34d2 100644 --- a/src/licensedcode/data/rules/mit_821.RULE +++ b/src/licensedcode/data/rules/mit_821.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: typo in "includin without " Seen in https://github.com/mustache/mustache.github.com/blob/bbc8aea93243dd43bab4f804da0aeb1f27b0013d/LICENSE.md + Fixed PR at https://github.com/mustache/mustache.github.com/pull/134 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, includin without limitation the rights to use, diff --git a/src/licensedcode/data/rules/mit_821.yml b/src/licensedcode/data/rules/mit_821.yml deleted file mode 100644 index 98a84ba2122..00000000000 --- a/src/licensedcode/data/rules/mit_821.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: typo in "includin without " Seen in https://github.com/mustache/mustache.github.com/blob/bbc8aea93243dd43bab4f804da0aeb1f27b0013d/LICENSE.md - Fixed PR at https://github.com/mustache/mustache.github.com/pull/134 diff --git a/src/licensedcode/data/rules/mit_822.RULE b/src/licensedcode/data/rules/mit_822.RULE index 1183c71449f..540fc28f85e 100644 --- a/src/licensedcode/data/rules/mit_822.RULE +++ b/src/licensedcode/data/rules/mit_822.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + documentation is licensed under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_822.yml b/src/licensedcode/data/rules/mit_822.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_822.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_823.RULE b/src/licensedcode/data/rules/mit_823.RULE index 219480b98e3..08e377f6a87 100644 --- a/src/licensedcode/data/rules/mit_823.RULE +++ b/src/licensedcode/data/rules/mit_823.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: contains a project name Seen in https://github.com/cjb/serverless-webrtc/blob/0a887eb9c06f08e8c53fa313e4e2947167fa2617/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the diff --git a/src/licensedcode/data/rules/mit_823.yml b/src/licensedcode/data/rules/mit_823.yml deleted file mode 100644 index c53223d6092..00000000000 --- a/src/licensedcode/data/rules/mit_823.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: contains a project name Seen in https://github.com/cjb/serverless-webrtc/blob/0a887eb9c06f08e8c53fa313e4e2947167fa2617/LICENSE diff --git a/src/licensedcode/data/rules/mit_824.RULE b/src/licensedcode/data/rules/mit_824.RULE index 8d4178ef4b4..dee81d56667 100644 --- a/src/licensedcode/data/rules/mit_824.RULE +++ b/src/licensedcode/data/rules/mit_824.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + core libraries are distributed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_824.yml b/src/licensedcode/data/rules/mit_824.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_824.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_825.RULE b/src/licensedcode/data/rules/mit_825.RULE index f1f544ba40e..182364d2c95 100644 --- a/src/licensedcode/data/rules/mit_825.RULE +++ b/src/licensedcode/data/rules/mit_825.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +notes: disclaimer is truncated +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/mit_825.yml b/src/licensedcode/data/rules/mit_825.yml deleted file mode 100644 index 1ccdbd13669..00000000000 --- a/src/licensedcode/data/rules/mit_825.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -notes: disclaimer is truncated diff --git a/src/licensedcode/data/rules/mit_826.RULE b/src/licensedcode/data/rules/mit_826.RULE index a74b7f38147..15582e26740 100644 --- a/src/licensedcode/data/rules/mit_826.RULE +++ b/src/licensedcode/data/rules/mit_826.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: Solved with https://github.com/tempor1s/jumble-solver/pull/1 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_826.yml b/src/licensedcode/data/rules/mit_826.yml deleted file mode 100644 index 355f180342a..00000000000 --- a/src/licensedcode/data/rules/mit_826.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: Solved with https://github.com/tempor1s/jumble-solver/pull/1 diff --git a/src/licensedcode/data/rules/mit_827.RULE b/src/licensedcode/data/rules/mit_827.RULE index 7be500f67c7..3ad83288c94 100644 --- a/src/licensedcode/data/rules/mit_827.RULE +++ b/src/licensedcode/data/rules/mit_827.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +notes: Seen in https://github.com/pratikborsadiya/vali-admin/blob/44735d3d71d3e6bd448e27a39e4c188140b3c13c/LICENSE + uses "notice must be included" instead of "notice shall be included" +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_827.yml b/src/licensedcode/data/rules/mit_827.yml deleted file mode 100644 index 86e475be4cd..00000000000 --- a/src/licensedcode/data/rules/mit_827.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -notes: Seen in https://github.com/pratikborsadiya/vali-admin/blob/44735d3d71d3e6bd448e27a39e4c188140b3c13c/LICENSE - uses "notice must be included" instead of "notice shall be included" diff --git a/src/licensedcode/data/rules/mit_828.RULE b/src/licensedcode/data/rules/mit_828.RULE index 3c685abef3a..4cad65c73ee 100644 --- a/src/licensedcode/data/rules/mit_828.RULE +++ b/src/licensedcode/data/rules/mit_828.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: Seen and fixed in https://github.com/mithrandie/go-text/pull/1 with a minor typo +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_828.yml b/src/licensedcode/data/rules/mit_828.yml deleted file mode 100644 index 6aaea250e05..00000000000 --- a/src/licensedcode/data/rules/mit_828.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: Seen and fixed in https://github.com/mithrandie/go-text/pull/1 with a minor typo diff --git a/src/licensedcode/data/rules/mit_829.RULE b/src/licensedcode/data/rules/mit_829.RULE index 8c42178a84c..873f61b33b5 100644 --- a/src/licensedcode/data/rules/mit_829.RULE +++ b/src/licensedcode/data/rules/mit_829.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + The MIT Licence (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_829.yml b/src/licensedcode/data/rules/mit_829.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_829.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_83.RULE b/src/licensedcode/data/rules/mit_83.RULE index af949917bfa..aefaba8d091 100644 --- a/src/licensedcode/data/rules/mit_83.RULE +++ b/src/licensedcode/data/rules/mit_83.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -13,4 +19,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) 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. +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/mit_83.yml b/src/licensedcode/data/rules/mit_83.yml deleted file mode 100644 index edf331213b4..00000000000 --- a/src/licensedcode/data/rules/mit_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_830.RULE b/src/licensedcode/data/rules/mit_830.RULE index 691f35fa9d6..15dd1eb810e 100644 --- a/src/licensedcode/data/rules/mit_830.RULE +++ b/src/licensedcode/data/rules/mit_830.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + The MIT X11 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_830.yml b/src/licensedcode/data/rules/mit_830.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_830.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_831.RULE b/src/licensedcode/data/rules/mit_831.RULE index 668ba032c41..aab5e810bc4 100644 --- a/src/licensedcode/data/rules/mit_831.RULE +++ b/src/licensedcode/data/rules/mit_831.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + this source code is distributed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_831.yml b/src/licensedcode/data/rules/mit_831.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_831.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_832.RULE b/src/licensedcode/data/rules/mit_832.RULE index 7e483b97e39..91a541c3c74 100644 --- a/src/licensedcode/data/rules/mit_832.RULE +++ b/src/licensedcode/data/rules/mit_832.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 95 +notes: Is missing right to sublicense +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_832.yml b/src/licensedcode/data/rules/mit_832.yml deleted file mode 100644 index 8d0c4c7f8a4..00000000000 --- a/src/licensedcode/data/rules/mit_832.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 95 -notes: Is missing right to sublicense diff --git a/src/licensedcode/data/rules/mit_833.RULE b/src/licensedcode/data/rules/mit_833.RULE index 578da09b5e8..a8f9d04fca5 100644 --- a/src/licensedcode/data/rules/mit_833.RULE +++ b/src/licensedcode/data/rules/mit_833.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: An MIT variant with alternative hyphenation NON-INFRINGEMENT instead of NONINFRINGEMENT + Seen in https://github.com/zerocracy/farm/blob/f53547aa19cd51d1267f87ea3d9de503002d71c7/src/main/resources/META-INF/services/javax.xml.transform.TransformerFactory#L4 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the diff --git a/src/licensedcode/data/rules/mit_833.yml b/src/licensedcode/data/rules/mit_833.yml deleted file mode 100644 index 5150042135a..00000000000 --- a/src/licensedcode/data/rules/mit_833.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: An MIT variant with alternative hyphenation NON-INFRINGEMENT instead of NONINFRINGEMENT - Seen in https://github.com/zerocracy/farm/blob/f53547aa19cd51d1267f87ea3d9de503002d71c7/src/main/resources/META-INF/services/javax.xml.transform.TransformerFactory#L4 diff --git a/src/licensedcode/data/rules/mit_834.RULE b/src/licensedcode/data/rules/mit_834.RULE index 646b2189554..44f9a055c12 100644 --- a/src/licensedcode/data/rules/mit_834.RULE +++ b/src/licensedcode/data/rules/mit_834.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: An MIT variant with alternative hyphenation of sub-license and NON-INFRINGEMENT Seen + in https://github.com/SilverMagnum/linux-yocto-3.19/blob/343c7bd127a372776caaad7f783b1229c6686436/include/drm/drm_cache.h#L9 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the diff --git a/src/licensedcode/data/rules/mit_834.yml b/src/licensedcode/data/rules/mit_834.yml deleted file mode 100644 index 2b7ce3e02fe..00000000000 --- a/src/licensedcode/data/rules/mit_834.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: An MIT variant with alternative hyphenation of sub-license and NON-INFRINGEMENT Seen - in https://github.com/SilverMagnum/linux-yocto-3.19/blob/343c7bd127a372776caaad7f783b1229c6686436/include/drm/drm_cache.h#L9 diff --git a/src/licensedcode/data/rules/mit_835.RULE b/src/licensedcode/data/rules/mit_835.RULE index 1506b4e8141..78f681d377c 100644 --- a/src/licensedcode/data/rules/mit_835.RULE +++ b/src/licensedcode/data/rules/mit_835.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is made available under the MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_835.yml b/src/licensedcode/data/rules/mit_835.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_835.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_836.RULE b/src/licensedcode/data/rules/mit_836.RULE index 7df7f9947b9..3a78cb9de70 100644 --- a/src/licensedcode/data/rules/mit_836.RULE +++ b/src/licensedcode/data/rules/mit_836.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + // This software is made available under the MIT License // See COPYING for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_836.yml b/src/licensedcode/data/rules/mit_836.yml deleted file mode 100644 index 32a1a7f6793..00000000000 --- a/src/licensedcode/data/rules/mit_836.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/mit_837.RULE b/src/licensedcode/data/rules/mit_837.RULE index 9b9e334c58e..7e43b3e6678 100644 --- a/src/licensedcode/data/rules/mit_837.RULE +++ b/src/licensedcode/data/rules/mit_837.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * This file is made available under the MIT License (view the LICENSE file for more information). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_837.yml b/src/licensedcode/data/rules/mit_837.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_837.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_838.RULE b/src/licensedcode/data/rules/mit_838.RULE index 878d176bbf0..bab82443bb8 100644 --- a/src/licensedcode/data/rules/mit_838.RULE +++ b/src/licensedcode/data/rules/mit_838.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is made available under the MIT license. /// Do not use it if you have not received an associated LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_838.yml b/src/licensedcode/data/rules/mit_838.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_838.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_839.RULE b/src/licensedcode/data/rules/mit_839.RULE index a8a35f59461..37e9c5ee191 100644 --- a/src/licensedcode/data/rules/mit_839.RULE +++ b/src/licensedcode/data/rules/mit_839.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This work is made available under the "MIT License". Please see the file LICENSE in this distribution for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_839.yml b/src/licensedcode/data/rules/mit_839.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_839.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_84.RULE b/src/licensedcode/data/rules/mit_84.RULE index c2c27ece2c7..c6d976bdb4a 100644 --- a/src/licensedcode/data/rules/mit_84.RULE +++ b/src/licensedcode/data/rules/mit_84.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 95 +notes: this is a damaged merged text in the Linux Kernel +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -13,4 +20,4 @@ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +all copies or substantial portions of the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_84.yml b/src/licensedcode/data/rules/mit_84.yml deleted file mode 100644 index 0e56566d47a..00000000000 --- a/src/licensedcode/data/rules/mit_84.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 95 -notes: this is a damaged merged text in the Linux Kernel diff --git a/src/licensedcode/data/rules/mit_840.RULE b/src/licensedcode/data/rules/mit_840.RULE index f892ee138a1..f96e73208f5 100644 --- a/src/licensedcode/data/rules/mit_840.RULE +++ b/src/licensedcode/data/rules/mit_840.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is made available under the MIT license. See the file LICENSE that accompanies this software for license terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_840.yml b/src/licensedcode/data/rules/mit_840.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_840.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_841.RULE b/src/licensedcode/data/rules/mit_841.RULE index 3691d87cb20..fe600733cb5 100644 --- a/src/licensedcode/data/rules/mit_841.RULE +++ b/src/licensedcode/data/rules/mit_841.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + made available under the MIT license. See the file LICENSE that accompanies this software for license terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_841.yml b/src/licensedcode/data/rules/mit_841.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_841.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_842.RULE b/src/licensedcode/data/rules/mit_842.RULE index 5df20c2e32e..02239317f13 100644 --- a/src/licensedcode/data/rules/mit_842.RULE +++ b/src/licensedcode/data/rules/mit_842.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is made available under the MIT license. Pleace see the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_842.yml b/src/licensedcode/data/rules/mit_842.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_842.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_843.RULE b/src/licensedcode/data/rules/mit_843.RULE index db096d3a5a2..c4ac2179632 100644 --- a/src/licensedcode/data/rules/mit_843.RULE +++ b/src/licensedcode/data/rules/mit_843.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This program is made available under the MIT License, a copy of which can be diff --git a/src/licensedcode/data/rules/mit_843.yml b/src/licensedcode/data/rules/mit_843.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_843.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_844.RULE b/src/licensedcode/data/rules/mit_844.RULE index 483d4f913f8..ad21ec9e521 100644 --- a/src/licensedcode/data/rules/mit_844.RULE +++ b/src/licensedcode/data/rules/mit_844.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This program is made available under the MIT License, a copy of which can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_844.yml b/src/licensedcode/data/rules/mit_844.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_844.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_845.RULE b/src/licensedcode/data/rules/mit_845.RULE index 2d9f74ffcd2..0ec59f71832 100644 --- a/src/licensedcode/data/rules/mit_845.RULE +++ b/src/licensedcode/data/rules/mit_845.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + made available under the MIT license. Pleace see the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_845.yml b/src/licensedcode/data/rules/mit_845.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_845.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_846.RULE b/src/licensedcode/data/rules/mit_846.RULE index b3b534f1f1f..6bc05e4937e 100644 --- a/src/licensedcode/data/rules/mit_846.RULE +++ b/src/licensedcode/data/rules/mit_846.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This program is made available under the MIT License See the LICENSE file for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_846.yml b/src/licensedcode/data/rules/mit_846.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_846.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_847.RULE b/src/licensedcode/data/rules/mit_847.RULE index aaa5b19d6c6..31e9bdbac9e 100644 --- a/src/licensedcode/data/rules/mit_847.RULE +++ b/src/licensedcode/data/rules/mit_847.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is free software that is made available under the MIT license. Consult the file "LICENSE" that is distributed together with this file for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_847.yml b/src/licensedcode/data/rules/mit_847.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_847.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_848.RULE b/src/licensedcode/data/rules/mit_848.RULE index 1b524a3748b..91bbd15dc07 100644 --- a/src/licensedcode/data/rules/mit_848.RULE +++ b/src/licensedcode/data/rules/mit_848.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + free software that is made available under the MIT license. Consult the file "LICENSE" that is distributed together with this file for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_848.yml b/src/licensedcode/data/rules/mit_848.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_848.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_849.RULE b/src/licensedcode/data/rules/mit_849.RULE index 023762e4563..41185ee2a8d 100644 --- a/src/licensedcode/data/rules/mit_849.RULE +++ b/src/licensedcode/data/rules/mit_849.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is made available under the MIT license. Consult the file "LICENSE" that is distributed together with this file for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_849.yml b/src/licensedcode/data/rules/mit_849.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_849.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_85.RULE b/src/licensedcode/data/rules/mit_85.RULE index c579bc002df..fd2c51bf174 100644 --- a/src/licensedcode/data/rules/mit_85.RULE +++ b/src/licensedcode/data/rules/mit_85.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/mit/ +--- + http://choosealicense.com/licenses/mit/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_85.yml b/src/licensedcode/data/rules/mit_85.yml deleted file mode 100644 index f1a4d387af9..00000000000 --- a/src/licensedcode/data/rules/mit_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/mit/ diff --git a/src/licensedcode/data/rules/mit_850.RULE b/src/licensedcode/data/rules/mit_850.RULE index 091ecd7d229..1483c1cce95 100644 --- a/src/licensedcode/data/rules/mit_850.RULE +++ b/src/licensedcode/data/rules/mit_850.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + made available under the MIT license. Consult the file "LICENSE" that is distributed together with this file for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_850.yml b/src/licensedcode/data/rules/mit_850.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_850.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_851.RULE b/src/licensedcode/data/rules/mit_851.RULE index 95a72ceb793..10ea9a6ecd7 100644 --- a/src/licensedcode/data/rules/mit_851.RULE +++ b/src/licensedcode/data/rules/mit_851.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License As with all my work, all code in this repository is made available under the MIT License. See LICENSE for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_851.yml b/src/licensedcode/data/rules/mit_851.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_851.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_852.RULE b/src/licensedcode/data/rules/mit_852.RULE index 1219dff7e4b..d3c80657d40 100644 --- a/src/licensedcode/data/rules/mit_852.RULE +++ b/src/licensedcode/data/rules/mit_852.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + As with all my work, all code in this repository is made available under the MIT License. See LICENSE for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_852.yml b/src/licensedcode/data/rules/mit_852.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_852.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_853.RULE b/src/licensedcode/data/rules/mit_853.RULE index 4293f678cf6..cf3254c459a 100644 --- a/src/licensedcode/data/rules/mit_853.RULE +++ b/src/licensedcode/data/rules/mit_853.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + all code in this repository is made available under the MIT License. See LICENSE for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_853.yml b/src/licensedcode/data/rules/mit_853.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_853.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_854.RULE b/src/licensedcode/data/rules/mit_854.RULE index 764aab0e4ba..4b9d9ab1161 100644 --- a/src/licensedcode/data/rules/mit_854.RULE +++ b/src/licensedcode/data/rules/mit_854.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + The code in this distribution is made available under the MIT License. See LICENSE.txt for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_854.yml b/src/licensedcode/data/rules/mit_854.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_854.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_855.RULE b/src/licensedcode/data/rules/mit_855.RULE index 316a241f36d..18e81666223 100644 --- a/src/licensedcode/data/rules/mit_855.RULE +++ b/src/licensedcode/data/rules/mit_855.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This project is made available under the MIT license. See the file LICENSE in this distribution for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_855.yml b/src/licensedcode/data/rules/mit_855.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_855.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_856.RULE b/src/licensedcode/data/rules/mit_856.RULE index a2d83d341a6..8fbd9494f97 100644 --- a/src/licensedcode/data/rules/mit_856.RULE +++ b/src/licensedcode/data/rules/mit_856.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is made available under the MIT license. See the file LICENSE in this distribution for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_856.yml b/src/licensedcode/data/rules/mit_856.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_856.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_857.RULE b/src/licensedcode/data/rules/mit_857.RULE index ae092a5072d..3f1a35e7a3b 100644 --- a/src/licensedcode/data/rules/mit_857.RULE +++ b/src/licensedcode/data/rules/mit_857.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License The application is made available under the [MIT License](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_857.yml b/src/licensedcode/data/rules/mit_857.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_857.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_858.RULE b/src/licensedcode/data/rules/mit_858.RULE index c291d930b48..8b235bb2b21 100644 --- a/src/licensedcode/data/rules/mit_858.RULE +++ b/src/licensedcode/data/rules/mit_858.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + The application is made available under the [MIT License](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_858.yml b/src/licensedcode/data/rules/mit_858.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_858.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_859.RULE b/src/licensedcode/data/rules/mit_859.RULE index 9b7cc6025a3..d2c2d970c8d 100644 --- a/src/licensedcode/data/rules/mit_859.RULE +++ b/src/licensedcode/data/rules/mit_859.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + is made available under the MIT license. The license can be viewed [here](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_859.yml b/src/licensedcode/data/rules/mit_859.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_859.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_86.RULE b/src/licensedcode/data/rules/mit_86.RULE index bd1139d455a..bd1355b971e 100644 --- a/src/licensedcode/data/rules/mit_86.RULE +++ b/src/licensedcode/data/rules/mit_86.RULE @@ -1,6 +1,14 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://datatables.net/license/mit +--- + This source file is free software, available under the following license: MIT license - http://datatables.net/license/mit This source 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 license files for details. +or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_86.yml b/src/licensedcode/data/rules/mit_86.yml deleted file mode 100644 index ade505c22a4..00000000000 --- a/src/licensedcode/data/rules/mit_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://datatables.net/license/mit diff --git a/src/licensedcode/data/rules/mit_860.RULE b/src/licensedcode/data/rules/mit_860.RULE index 7f03cb0d4d8..3d54a731f75 100644 --- a/src/licensedcode/data/rules/mit_860.RULE +++ b/src/licensedcode/data/rules/mit_860.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + made available under the MIT license. The license can be viewed [here](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_860.yml b/src/licensedcode/data/rules/mit_860.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_860.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_861.RULE b/src/licensedcode/data/rules/mit_861.RULE index 92df783e03d..8d5233f73ef 100644 --- a/src/licensedcode/data/rules/mit_861.RULE +++ b/src/licensedcode/data/rules/mit_861.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is made available under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_861.yml b/src/licensedcode/data/rules/mit_861.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_861.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_862.RULE b/src/licensedcode/data/rules/mit_862.RULE index 6faff0a7ee9..24d1c1da754 100644 --- a/src/licensedcode/data/rules/mit_862.RULE +++ b/src/licensedcode/data/rules/mit_862.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + is made available under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_862.yml b/src/licensedcode/data/rules/mit_862.yml deleted file mode 100644 index f47c1c6ff3c..00000000000 --- a/src/licensedcode/data/rules/mit_862.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_863.RULE b/src/licensedcode/data/rules/mit_863.RULE index 6c8b3346a0d..67dfb50d568 100644 --- a/src/licensedcode/data/rules/mit_863.RULE +++ b/src/licensedcode/data/rules/mit_863.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Everything else is made available under the MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_863.yml b/src/licensedcode/data/rules/mit_863.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_863.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_864.RULE b/src/licensedcode/data/rules/mit_864.RULE index 4815f89d836..89e8b067f7d 100644 --- a/src/licensedcode/data/rules/mit_864.RULE +++ b/src/licensedcode/data/rules/mit_864.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This utility is made available under the "MIT License". Please see the file LICENSE in this distribution for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_864.yml b/src/licensedcode/data/rules/mit_864.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_864.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_865.RULE b/src/licensedcode/data/rules/mit_865.RULE index ce39c38cd22..69280303287 100644 --- a/src/licensedcode/data/rules/mit_865.RULE +++ b/src/licensedcode/data/rules/mit_865.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + License is made available under the [MIT license](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_865.yml b/src/licensedcode/data/rules/mit_865.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_865.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_866.RULE b/src/licensedcode/data/rules/mit_866.RULE index 5aaa018368b..f0599be8dd1 100644 --- a/src/licensedcode/data/rules/mit_866.RULE +++ b/src/licensedcode/data/rules/mit_866.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + is made available under the [MIT license](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_866.yml b/src/licensedcode/data/rules/mit_866.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_866.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_867.RULE b/src/licensedcode/data/rules/mit_867.RULE index 3abc9c25d50..081d686d65f 100644 --- a/src/licensedcode/data/rules/mit_867.RULE +++ b/src/licensedcode/data/rules/mit_867.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + made available under the [MIT license](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_867.yml b/src/licensedcode/data/rules/mit_867.yml deleted file mode 100644 index 57ba64f7c6c..00000000000 --- a/src/licensedcode/data/rules/mit_867.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_868.RULE b/src/licensedcode/data/rules/mit_868.RULE index 6a063715b75..fa98a8da6d6 100644 --- a/src/licensedcode/data/rules/mit_868.RULE +++ b/src/licensedcode/data/rules/mit_868.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License This code is made available under the [MIT license](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_868.yml b/src/licensedcode/data/rules/mit_868.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_868.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_869.RULE b/src/licensedcode/data/rules/mit_869.RULE index b0b502d6fd8..ff70dac63a9 100644 --- a/src/licensedcode/data/rules/mit_869.RULE +++ b/src/licensedcode/data/rules/mit_869.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This code is made available under the [MIT license](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_869.yml b/src/licensedcode/data/rules/mit_869.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_869.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_87.RULE b/src/licensedcode/data/rules/mit_87.RULE index 8cc7772d689..a607898e5c6 100644 --- a/src/licensedcode/data/rules/mit_87.RULE +++ b/src/licensedcode/data/rules/mit_87.RULE @@ -1,6 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +ignorable_urls: + - http://datatables.net/license +--- + This source file is free software, available under the following license: MIT license - http://datatables.net/license This source 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 license files for details. +or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_87.yml b/src/licensedcode/data/rules/mit_87.yml deleted file mode 100644 index 91e97411312..00000000000 --- a/src/licensedcode/data/rules/mit_87.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -ignorable_urls: - - http://datatables.net/license diff --git a/src/licensedcode/data/rules/mit_870.RULE b/src/licensedcode/data/rules/mit_870.RULE index b3777b84cb5..85af636e5f1 100644 --- a/src/licensedcode/data/rules/mit_870.RULE +++ b/src/licensedcode/data/rules/mit_870.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + License The software code contained within this repository is made available under the [MIT license](https://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_870.yml b/src/licensedcode/data/rules/mit_870.yml deleted file mode 100644 index af986eb00c1..00000000000 --- a/src/licensedcode/data/rules/mit_870.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_871.RULE b/src/licensedcode/data/rules/mit_871.RULE index 74dab71ed80..7bb8e4c3edf 100644 --- a/src/licensedcode/data/rules/mit_871.RULE +++ b/src/licensedcode/data/rules/mit_871.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + The software code contained within this repository is made available under the [MIT license](https://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_871.yml b/src/licensedcode/data/rules/mit_871.yml deleted file mode 100644 index af986eb00c1..00000000000 --- a/src/licensedcode/data/rules/mit_871.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_872.RULE b/src/licensedcode/data/rules/mit_872.RULE index d970a65c496..9a804298d81 100644 --- a/src/licensedcode/data/rules/mit_872.RULE +++ b/src/licensedcode/data/rules/mit_872.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The software code contained within this repository is made available under the [MIT license] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_872.yml b/src/licensedcode/data/rules/mit_872.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_872.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_873.RULE b/src/licensedcode/data/rules/mit_873.RULE index 5b72ce54980..1ef44fc9b6f 100644 --- a/src/licensedcode/data/rules/mit_873.RULE +++ b/src/licensedcode/data/rules/mit_873.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + all code in this repository is made available under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_873.yml b/src/licensedcode/data/rules/mit_873.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_873.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_874.RULE b/src/licensedcode/data/rules/mit_874.RULE index 835e7bc1619..2623673a0cc 100644 --- a/src/licensedcode/data/rules/mit_874.RULE +++ b/src/licensedcode/data/rules/mit_874.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This program is made available under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_874.yml b/src/licensedcode/data/rules/mit_874.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_874.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_875.RULE b/src/licensedcode/data/rules/mit_875.RULE index 891fcdb7bad..d20b542dbe4 100644 --- a/src/licensedcode/data/rules/mit_875.RULE +++ b/src/licensedcode/data/rules/mit_875.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This program is made available under the MIT License, reproduced below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_875.yml b/src/licensedcode/data/rules/mit_875.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_875.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_876.RULE b/src/licensedcode/data/rules/mit_876.RULE index 858616bc7a5..729ffc12463 100644 --- a/src/licensedcode/data/rules/mit_876.RULE +++ b/src/licensedcode/data/rules/mit_876.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + license This program is made available under the MIT License, reproduced below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_876.yml b/src/licensedcode/data/rules/mit_876.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_876.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_877.RULE b/src/licensedcode/data/rules/mit_877.RULE index b768831a27b..aeba5d00475 100644 --- a/src/licensedcode/data/rules/mit_877.RULE +++ b/src/licensedcode/data/rules/mit_877.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + free software that is made available under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_877.yml b/src/licensedcode/data/rules/mit_877.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_877.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_878.RULE b/src/licensedcode/data/rules/mit_878.RULE index 17fef8fec47..844762f5751 100644 --- a/src/licensedcode/data/rules/mit_878.RULE +++ b/src/licensedcode/data/rules/mit_878.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The software in this repository is made available under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_878.yml b/src/licensedcode/data/rules/mit_878.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_878.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_879.RULE b/src/licensedcode/data/rules/mit_879.RULE index b25d346bae2..54b2d0dedb1 100644 --- a/src/licensedcode/data/rules/mit_879.RULE +++ b/src/licensedcode/data/rules/mit_879.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + license The software in this repository is made available under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_879.yml b/src/licensedcode/data/rules/mit_879.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_879.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_88.RULE b/src/licensedcode/data/rules/mit_88.RULE index bfa47c39261..38b312b450b 100644 --- a/src/licensedcode/data/rules/mit_88.RULE +++ b/src/licensedcode/data/rules/mit_88.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_88.yml b/src/licensedcode/data/rules/mit_88.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_880.RULE b/src/licensedcode/data/rules/mit_880.RULE index 6d0f4d910ba..0c2bc93d09c 100644 --- a/src/licensedcode/data/rules/mit_880.RULE +++ b/src/licensedcode/data/rules/mit_880.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The software in this repository is made available under the MIT license. MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_880.yml b/src/licensedcode/data/rules/mit_880.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_880.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_881.RULE b/src/licensedcode/data/rules/mit_881.RULE index 9ff11430300..1158e188e5f 100644 --- a/src/licensedcode/data/rules/mit_881.RULE +++ b/src/licensedcode/data/rules/mit_881.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The application is made available under the [MIT License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_881.yml b/src/licensedcode/data/rules/mit_881.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_881.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_882.RULE b/src/licensedcode/data/rules/mit_882.RULE index 011a68dc064..c0c2418ec4b 100644 --- a/src/licensedcode/data/rules/mit_882.RULE +++ b/src/licensedcode/data/rules/mit_882.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License The source is made available under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_882.yml b/src/licensedcode/data/rules/mit_882.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_882.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_883.RULE b/src/licensedcode/data/rules/mit_883.RULE index 909cad890bf..c40efbc0998 100644 --- a/src/licensedcode/data/rules/mit_883.RULE +++ b/src/licensedcode/data/rules/mit_883.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The source is made available under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_883.yml b/src/licensedcode/data/rules/mit_883.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_883.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_884.RULE b/src/licensedcode/data/rules/mit_884.RULE index ac830cf59ef..d3e92c8546c 100644 --- a/src/licensedcode/data/rules/mit_884.RULE +++ b/src/licensedcode/data/rules/mit_884.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + made available under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_884.yml b/src/licensedcode/data/rules/mit_884.yml deleted file mode 100644 index f47c1c6ff3c..00000000000 --- a/src/licensedcode/data/rules/mit_884.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_885.RULE b/src/licensedcode/data/rules/mit_885.RULE index 44d0d4a14db..c08d8798d20 100644 --- a/src/licensedcode/data/rules/mit_885.RULE +++ b/src/licensedcode/data/rules/mit_885.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + made available under the [MIT License](https://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_885.yml b/src/licensedcode/data/rules/mit_885.yml deleted file mode 100644 index af986eb00c1..00000000000 --- a/src/licensedcode/data/rules/mit_885.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_886.RULE b/src/licensedcode/data/rules/mit_886.RULE index 09b17a66577..7a4679b720d 100644 --- a/src/licensedcode/data/rules/mit_886.RULE +++ b/src/licensedcode/data/rules/mit_886.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mit-license.php +--- + is made available under the [MIT License](https://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_886.yml b/src/licensedcode/data/rules/mit_886.yml deleted file mode 100644 index af986eb00c1..00000000000 --- a/src/licensedcode/data/rules/mit_886.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_887.RULE b/src/licensedcode/data/rules/mit_887.RULE index 964df00c138..74350a36783 100644 --- a/src/licensedcode/data/rules/mit_887.RULE +++ b/src/licensedcode/data/rules/mit_887.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Data is made available under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_887.yml b/src/licensedcode/data/rules/mit_887.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_887.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_888.RULE b/src/licensedcode/data/rules/mit_888.RULE index f8f44c4dd8e..616415c39d8 100644 --- a/src/licensedcode/data/rules/mit_888.RULE +++ b/src/licensedcode/data/rules/mit_888.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The library is made available under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_888.yml b/src/licensedcode/data/rules/mit_888.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_888.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_889.RULE b/src/licensedcode/data/rules/mit_889.RULE index 83a5d8134fa..7978f371c27 100644 --- a/src/licensedcode/data/rules/mit_889.RULE +++ b/src/licensedcode/data/rules/mit_889.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://en.m.wikipedia.org/wiki/MIT_License +--- + The library is made available under the MIT license. http://en.m.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_889.yml b/src/licensedcode/data/rules/mit_889.yml deleted file mode 100644 index 24cb7132432..00000000000 --- a/src/licensedcode/data/rules/mit_889.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://en.m.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_89.RULE b/src/licensedcode/data/rules/mit_89.RULE index b666bb97c72..8f3d48ebd2c 100644 --- a/src/licensedcode/data/rules/mit_89.RULE +++ b/src/licensedcode/data/rules/mit_89.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The code is based on code from , which is -distributed under this license, sometimes called the "MIT" license. +distributed under this license, sometimes called the "MIT" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_89.yml b/src/licensedcode/data/rules/mit_89.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_890.RULE b/src/licensedcode/data/rules/mit_890.RULE index f4d2c34f0f5..913d3b38882 100644 --- a/src/licensedcode/data/rules/mit_890.RULE +++ b/src/licensedcode/data/rules/mit_890.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + The library is made available under the MIT license. http://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_890.yml b/src/licensedcode/data/rules/mit_890.yml deleted file mode 100644 index 9cf945ea087..00000000000 --- a/src/licensedcode/data/rules/mit_890.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_891.RULE b/src/licensedcode/data/rules/mit_891.RULE index 223b344b869..f875284270d 100644 --- a/src/licensedcode/data/rules/mit_891.RULE +++ b/src/licensedcode/data/rules/mit_891.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://en.m.wikipedia.org/wiki/MIT_License +--- + The library is made available under the MIT license. https://en.m.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_891.yml b/src/licensedcode/data/rules/mit_891.yml deleted file mode 100644 index 466c01e994e..00000000000 --- a/src/licensedcode/data/rules/mit_891.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://en.m.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_892.RULE b/src/licensedcode/data/rules/mit_892.RULE index 69b338b3d53..c0a40224b31 100644 --- a/src/licensedcode/data/rules/mit_892.RULE +++ b/src/licensedcode/data/rules/mit_892.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/MIT_License +--- + The library is made available under the MIT license. https://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_892.yml b/src/licensedcode/data/rules/mit_892.yml deleted file mode 100644 index 9690e415bd2..00000000000 --- a/src/licensedcode/data/rules/mit_892.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_893.RULE b/src/licensedcode/data/rules/mit_893.RULE index fd64ea4fe5a..3223afd8ad8 100644 --- a/src/licensedcode/data/rules/mit_893.RULE +++ b/src/licensedcode/data/rules/mit_893.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + The work is made available under the [MIT License](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_893.yml b/src/licensedcode/data/rules/mit_893.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_893.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_894.RULE b/src/licensedcode/data/rules/mit_894.RULE index 03ece355306..43e92ff5c73 100644 --- a/src/licensedcode/data/rules/mit_894.RULE +++ b/src/licensedcode/data/rules/mit_894.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + The work is made available under the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_894.yml b/src/licensedcode/data/rules/mit_894.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_894.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_895.RULE b/src/licensedcode/data/rules/mit_895.RULE index 4f93d3107e9..0ac1a66b079 100644 --- a/src/licensedcode/data/rules/mit_895.RULE +++ b/src/licensedcode/data/rules/mit_895.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.html/ +--- + This code is made available under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_895.yml b/src/licensedcode/data/rules/mit_895.yml deleted file mode 100644 index d26ff946b2a..00000000000 --- a/src/licensedcode/data/rules/mit_895.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.html/ diff --git a/src/licensedcode/data/rules/mit_896.RULE b/src/licensedcode/data/rules/mit_896.RULE index cf508240197..b9bad856ef0 100644 --- a/src/licensedcode/data/rules/mit_896.RULE +++ b/src/licensedcode/data/rules/mit_896.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + It is made available under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_896.yml b/src/licensedcode/data/rules/mit_896.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_896.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_897.RULE b/src/licensedcode/data/rules/mit_897.RULE index 43cd105058b..9b9c5a68f1a 100644 --- a/src/licensedcode/data/rules/mit_897.RULE +++ b/src/licensedcode/data/rules/mit_897.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + is made available under the [MIT License][mit]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_897.yml b/src/licensedcode/data/rules/mit_897.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_897.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_898.RULE b/src/licensedcode/data/rules/mit_898.RULE index b9707724e8d..27f787b1156 100644 --- a/src/licensedcode/data/rules/mit_898.RULE +++ b/src/licensedcode/data/rules/mit_898.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + This work is made available under [The MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_898.yml b/src/licensedcode/data/rules/mit_898.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_898.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_899.RULE b/src/licensedcode/data/rules/mit_899.RULE index cbcd4d0a13a..1eb658e6fbf 100644 --- a/src/licensedcode/data/rules/mit_899.RULE +++ b/src/licensedcode/data/rules/mit_899.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + license This project is made available under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_899.yml b/src/licensedcode/data/rules/mit_899.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_899.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_89_2.RULE b/src/licensedcode/data/rules/mit_89_2.RULE index ad1b01920d6..637cb09e531 100644 --- a/src/licensedcode/data/rules/mit_89_2.RULE +++ b/src/licensedcode/data/rules/mit_89_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- -distributed under this license, sometimes called the "MIT" license. +distributed under this license, sometimes called the "MIT" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_89_2.yml b/src/licensedcode/data/rules/mit_89_2.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_89_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_9.RULE b/src/licensedcode/data/rules/mit_9.RULE index a8a6c7b5e1a..880c7a83ab4 100644 --- a/src/licensedcode/data/rules/mit_9.RULE +++ b/src/licensedcode/data/rules/mit_9.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + Licensed under the MIT (http://en.wikipedia.org/wiki/MIT_License) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_9.yml b/src/licensedcode/data/rules/mit_9.yml deleted file mode 100644 index 9cf945ea087..00000000000 --- a/src/licensedcode/data/rules/mit_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/mit_90.RULE b/src/licensedcode/data/rules/mit_90.RULE index c0af46a5c55..58c5d40d830 100644 --- a/src/licensedcode/data/rules/mit_90.RULE +++ b/src/licensedcode/data/rules/mit_90.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + "License :: OSI Approved", "License :: OSI Approved :: MIT License", \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_90.yml b/src/licensedcode/data/rules/mit_90.yml deleted file mode 100644 index ab784e797bd..00000000000 --- a/src/licensedcode/data/rules/mit_90.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_900.RULE b/src/licensedcode/data/rules/mit_900.RULE index 0c346a6d105..f05913d65a4 100644 --- a/src/licensedcode/data/rules/mit_900.RULE +++ b/src/licensedcode/data/rules/mit_900.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This code is made available under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_900.yml b/src/licensedcode/data/rules/mit_900.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_900.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_901.RULE b/src/licensedcode/data/rules/mit_901.RULE index bc49264ba2c..7b60dda6c64 100644 --- a/src/licensedcode/data/rules/mit_901.RULE +++ b/src/licensedcode/data/rules/mit_901.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This work is made available under the "MIT License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_901.yml b/src/licensedcode/data/rules/mit_901.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_901.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_902.RULE b/src/licensedcode/data/rules/mit_902.RULE index 1bb858c9408..9251447fcc9 100644 --- a/src/licensedcode/data/rules/mit_902.RULE +++ b/src/licensedcode/data/rules/mit_902.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + * This file is made available under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_902.yml b/src/licensedcode/data/rules/mit_902.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_902.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_903.RULE b/src/licensedcode/data/rules/mit_903.RULE index 7f27b266d8e..72deb95fdf4 100644 --- a/src/licensedcode/data/rules/mit_903.RULE +++ b/src/licensedcode/data/rules/mit_903.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + // This software is made available under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_903.yml b/src/licensedcode/data/rules/mit_903.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_903.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_904.RULE b/src/licensedcode/data/rules/mit_904.RULE index 567b8ffa268..0ce8a2e534d 100644 --- a/src/licensedcode/data/rules/mit_904.RULE +++ b/src/licensedcode/data/rules/mit_904.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.html +--- + This code is made available under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_904.yml b/src/licensedcode/data/rules/mit_904.yml deleted file mode 100644 index 88b2dde23e5..00000000000 --- a/src/licensedcode/data/rules/mit_904.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_905.RULE b/src/licensedcode/data/rules/mit_905.RULE index c4ab984312d..1106a155ef0 100644 --- a/src/licensedcode/data/rules/mit_905.RULE +++ b/src/licensedcode/data/rules/mit_905.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License This utility is made available under the "MIT License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_905.yml b/src/licensedcode/data/rules/mit_905.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_905.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_906.RULE b/src/licensedcode/data/rules/mit_906.RULE index 8ec00238dc7..cadd4f2cd60 100644 --- a/src/licensedcode/data/rules/mit_906.RULE +++ b/src/licensedcode/data/rules/mit_906.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This utility is made available under the "MIT License". \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_906.yml b/src/licensedcode/data/rules/mit_906.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_906.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_907.RULE b/src/licensedcode/data/rules/mit_907.RULE index f4d5f86abe2..6eeb74b6d8f 100644 --- a/src/licensedcode/data/rules/mit_907.RULE +++ b/src/licensedcode/data/rules/mit_907.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + NOTICE This code is made available under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_907.yml b/src/licensedcode/data/rules/mit_907.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_907.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_908.RULE b/src/licensedcode/data/rules/mit_908.RULE index 9b50a38f0ab..994139a686a 100644 --- a/src/licensedcode/data/rules/mit_908.RULE +++ b/src/licensedcode/data/rules/mit_908.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/mit +--- + is made available under the [MIT License](http://choosealicense.com/licenses/mit/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_908.yml b/src/licensedcode/data/rules/mit_908.yml deleted file mode 100644 index 16586646163..00000000000 --- a/src/licensedcode/data/rules/mit_908.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/mit diff --git a/src/licensedcode/data/rules/mit_909.RULE b/src/licensedcode/data/rules/mit_909.RULE index 0848b6f9da2..8ebd7dd8cb5 100644 --- a/src/licensedcode/data/rules/mit_909.RULE +++ b/src/licensedcode/data/rules/mit_909.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/mit +--- + made available under the [MIT License](http://choosealicense.com/licenses/mit/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_909.yml b/src/licensedcode/data/rules/mit_909.yml deleted file mode 100644 index 16586646163..00000000000 --- a/src/licensedcode/data/rules/mit_909.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/mit diff --git a/src/licensedcode/data/rules/mit_91.RULE b/src/licensedcode/data/rules/mit_91.RULE index 0c24870bdb1..93d433e4763 100644 --- a/src/licensedcode/data/rules/mit_91.RULE +++ b/src/licensedcode/data/rules/mit_91.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/yuzd/AntData.ORM +--- + https://github.com/yuzd/AntData.ORM \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_91.yml b/src/licensedcode/data/rules/mit_91.yml deleted file mode 100644 index b6569956f30..00000000000 --- a/src/licensedcode/data/rules/mit_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/yuzd/AntData.ORM diff --git a/src/licensedcode/data/rules/mit_910.RULE b/src/licensedcode/data/rules/mit_910.RULE index d3f04beb766..69068275f5b 100644 --- a/src/licensedcode/data/rules/mit_910.RULE +++ b/src/licensedcode/data/rules/mit_910.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/mit +--- + is made available under the [MIT License](https://choosealicense.com/licenses/mit/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_910.yml b/src/licensedcode/data/rules/mit_910.yml deleted file mode 100644 index c9914c30b8e..00000000000 --- a/src/licensedcode/data/rules/mit_910.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/mit diff --git a/src/licensedcode/data/rules/mit_911.RULE b/src/licensedcode/data/rules/mit_911.RULE index 66fb326da6f..728ea3bf25e 100644 --- a/src/licensedcode/data/rules/mit_911.RULE +++ b/src/licensedcode/data/rules/mit_911.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + The code in this repo is made available under the MIT license. You may re-use my theme, but I advise that you change it at least a little in order to preserve your integrity and self-respect as a developer or designer :) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_911.yml b/src/licensedcode/data/rules/mit_911.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_911.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_912.RULE b/src/licensedcode/data/rules/mit_912.RULE index 4e2999295c4..d240d0e2569 100644 --- a/src/licensedcode/data/rules/mit_912.RULE +++ b/src/licensedcode/data/rules/mit_912.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This sample code is made available under the MIT license. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_912.yml b/src/licensedcode/data/rules/mit_912.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_912.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_913.RULE b/src/licensedcode/data/rules/mit_913.RULE index c5f7244c81d..b61eefcec95 100644 --- a/src/licensedcode/data/rules/mit_913.RULE +++ b/src/licensedcode/data/rules/mit_913.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This sample code is made available under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_913.yml b/src/licensedcode/data/rules/mit_913.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_913.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_914.RULE b/src/licensedcode/data/rules/mit_914.RULE index 1225f6d1546..79488dc8bae 100644 --- a/src/licensedcode/data/rules/mit_914.RULE +++ b/src/licensedcode/data/rules/mit_914.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: Uses "The above copyright notice as well as this permission notice" rather than "The + above copyright notice and this permission notice" in the standdard MIT. Seen in https://github.com/microsoft/ailab/blob/3bfc475eef00232fce655d94199cc20c7a53d573/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_914.yml b/src/licensedcode/data/rules/mit_914.yml deleted file mode 100644 index 4057e020ec6..00000000000 --- a/src/licensedcode/data/rules/mit_914.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: Uses "The above copyright notice as well as this permission notice" rather than "The - above copyright notice and this permission notice" in the standdard MIT. Seen in https://github.com/microsoft/ailab/blob/3bfc475eef00232fce655d94199cc20c7a53d573/LICENSE diff --git a/src/licensedcode/data/rules/mit_915.RULE b/src/licensedcode/data/rules/mit_915.RULE index 41ada26cd2c..5926e171a85 100644 --- a/src/licensedcode/data/rules/mit_915.RULE +++ b/src/licensedcode/data/rules/mit_915.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - ZTypes.h +notes: There is no such file as ZTypes.h, but there is a license at https://github.com/jesse99/whisper/blob/c71c2da3d71463a59411b36730713f517934ffc4/LICENSE +--- + For conditions of distribution and use, see copyright notice in ZTypes.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_915.yml b/src/licensedcode/data/rules/mit_915.yml deleted file mode 100644 index 523be8e0e9e..00000000000 --- a/src/licensedcode/data/rules/mit_915.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - ZTypes.h -notes: There is no such file as ZTypes.h, but there is a license at https://github.com/jesse99/whisper/blob/c71c2da3d71463a59411b36730713f517934ffc4/LICENSE diff --git a/src/licensedcode/data/rules/mit_916.RULE b/src/licensedcode/data/rules/mit_916.RULE index 98dcb8bfb23..d8cd9e19082 100644 --- a/src/licensedcode/data/rules/mit_916.RULE +++ b/src/licensedcode/data/rules/mit_916.RULE @@ -1 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - Prerequisites.hpp +notes: seen in https://github.com/DigitalPulseSoftware/NazaraEngine/blob/5075c35c52ad459cfc06973b5349cb7f8391de9a/SDK/include/NDK/Systems/ListenerSystem.inl +--- + For conditions of distribution and use, see copyright notice in Prerequisites.hpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_916.yml b/src/licensedcode/data/rules/mit_916.yml deleted file mode 100644 index ab17c2cfdf1..00000000000 --- a/src/licensedcode/data/rules/mit_916.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - Prerequisites.hpp -notes: seen in https://github.com/DigitalPulseSoftware/NazaraEngine/blob/5075c35c52ad459cfc06973b5349cb7f8391de9a/SDK/include/NDK/Systems/ListenerSystem.inl diff --git a/src/licensedcode/data/rules/mit_917.RULE b/src/licensedcode/data/rules/mit_917.RULE index c05bdbbd3d4..2c23c719252 100644 --- a/src/licensedcode/data/rules/mit_917.RULE +++ b/src/licensedcode/data/rules/mit_917.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +notes: There are other licenses historically for Lua, but we take the latest, current one +--- + ** See Copyright Notice in lua.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_917.yml b/src/licensedcode/data/rules/mit_917.yml deleted file mode 100644 index 7bb2cf240bf..00000000000 --- a/src/licensedcode/data/rules/mit_917.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -notes: There are other licenses historically for Lua, but we take the latest, current one diff --git a/src/licensedcode/data/rules/mit_918.RULE b/src/licensedcode/data/rules/mit_918.RULE index 05deb99dee1..87a105cef9c 100644 --- a/src/licensedcode/data/rules/mit_918.RULE +++ b/src/licensedcode/data/rules/mit_918.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 99 +notes: https://github.com/akavel/goluago/blob/84681bf1471c0674cef056cef3b7636c3fa78fa1/internal/lua.h + There are other licenses historically for Lua, but we take the latest, current one +ignorable_urls: + - http://www.lua.org/ +--- + ** Lua - An Extensible Extension Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** See Copyright Notice at the end of this file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_918.yml b/src/licensedcode/data/rules/mit_918.yml deleted file mode 100644 index 9d70151771f..00000000000 --- a/src/licensedcode/data/rules/mit_918.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 99 -notes: https://github.com/akavel/goluago/blob/84681bf1471c0674cef056cef3b7636c3fa78fa1/internal/lua.h - There are other licenses historically for Lua, but we take the latest, current one -ignorable_urls: - - http://www.lua.org/ diff --git a/src/licensedcode/data/rules/mit_919.RULE b/src/licensedcode/data/rules/mit_919.RULE index a7f6a1c4bc4..08c113bdf07 100644 --- a/src/licensedcode/data/rules/mit_919.RULE +++ b/src/licensedcode/data/rules/mit_919.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + used according to terms of MIT License, as follows \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_919.yml b/src/licensedcode/data/rules/mit_919.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_919.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_92.RULE b/src/licensedcode/data/rules/mit_92.RULE index a1156d576d2..14262b04d0b 100644 --- a/src/licensedcode/data/rules/mit_92.RULE +++ b/src/licensedcode/data/rules/mit_92.RULE @@ -1 +1,9 @@ -Released under MIT License. Please refer to license.txt for details +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + +Released under MIT License. Please refer to license.txt for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_92.yml b/src/licensedcode/data/rules/mit_92.yml deleted file mode 100644 index 0a8260663b9..00000000000 --- a/src/licensedcode/data/rules/mit_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/mit_920.RULE b/src/licensedcode/data/rules/mit_920.RULE index b9743bf7383..3af3af02ff9 100644 --- a/src/licensedcode/data/rules/mit_920.RULE +++ b/src/licensedcode/data/rules/mit_920.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + used according to terms of MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_920.yml b/src/licensedcode/data/rules/mit_920.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_920.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_921.RULE b/src/licensedcode/data/rules/mit_921.RULE index 4c9a0f5f382..9fc41e985d3 100644 --- a/src/licensedcode/data/rules/mit_921.RULE +++ b/src/licensedcode/data/rules/mit_921.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + licensed under the MIT license (see the LICENSE file for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_921.yml b/src/licensedcode/data/rules/mit_921.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_921.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_922.RULE b/src/licensedcode/data/rules/mit_922.RULE index 40c70ee3228..87ed1496a15 100644 --- a/src/licensedcode/data/rules/mit_922.RULE +++ b/src/licensedcode/data/rules/mit_922.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + MIT The MIT License (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_922.yml b/src/licensedcode/data/rules/mit_922.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_922.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_923.RULE b/src/licensedcode/data/rules/mit_923.RULE index 656c2f061e0..df041140a76 100644 --- a/src/licensedcode/data/rules/mit_923.RULE +++ b/src/licensedcode/data/rules/mit_923.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License Distributed under the {{MIT}} License. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_923.yml b/src/licensedcode/data/rules/mit_923.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_923.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_924.RULE b/src/licensedcode/data/rules/mit_924.RULE index d0692cd1d66..9b33dd26d5a 100644 --- a/src/licensedcode/data/rules/mit_924.RULE +++ b/src/licensedcode/data/rules/mit_924.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Distributed under the MIT License. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_924.yml b/src/licensedcode/data/rules/mit_924.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_924.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_925.RULE b/src/licensedcode/data/rules/mit_925.RULE index a501003d28b..23a4e5cbe97 100644 --- a/src/licensedcode/data/rules/mit_925.RULE +++ b/src/licensedcode/data/rules/mit_925.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is licensed under terms of the MIT License - \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_925.yml b/src/licensedcode/data/rules/mit_925.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_925.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_926.RULE b/src/licensedcode/data/rules/mit_926.RULE index 4a9b26dfe6c..e79b14bc7a8 100644 --- a/src/licensedcode/data/rules/mit_926.RULE +++ b/src/licensedcode/data/rules/mit_926.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + This project is licensed under terms of the MIT License - https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_926.yml b/src/licensedcode/data/rules/mit_926.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_926.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_927.RULE b/src/licensedcode/data/rules/mit_927.RULE index 1c230b0ada6..2d0ef108aca 100644 --- a/src/licensedcode/data/rules/mit_927.RULE +++ b/src/licensedcode/data/rules/mit_927.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/MIT_License + - https://opensource.org/licenses/MIT +--- + This project is licensed under terms of the MIT License - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_927.yml b/src/licensedcode/data/rules/mit_927.yml deleted file mode 100644 index 222f121ddfa..00000000000 --- a/src/licensedcode/data/rules/mit_927.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/MIT_License - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_928.RULE b/src/licensedcode/data/rules/mit_928.RULE index 70ab84646e0..28073c14cc6 100644 --- a/src/licensedcode/data/rules/mit_928.RULE +++ b/src/licensedcode/data/rules/mit_928.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + this is the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_928.yml b/src/licensedcode/data/rules/mit_928.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_928.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_929.RULE b/src/licensedcode/data/rules/mit_929.RULE index f9dc0f351a4..6664526afb9 100644 --- a/src/licensedcode/data/rules/mit_929.RULE +++ b/src/licensedcode/data/rules/mit_929.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/janpaepke/ScrollMagic/master/LICENSE.md +ignorable_urls: + - https://jquery.org/license +--- + * jQuery__ is published under the terms of the [MIT license](https://jquery.org/license/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_929.yml b/src/licensedcode/data/rules/mit_929.yml deleted file mode 100644 index e5ea8959faa..00000000000 --- a/src/licensedcode/data/rules/mit_929.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/janpaepke/ScrollMagic/master/LICENSE.md -ignorable_urls: - - https://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_93.RULE b/src/licensedcode/data/rules/mit_93.RULE index ff42a3687b8..7ba6e344212 100644 --- a/src/licensedcode/data/rules/mit_93.RULE +++ b/src/licensedcode/data/rules/mit_93.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + This software is distributed under [MIT license](http://www.opensource.org/licenses/mit-license.php), - so feel free to integrate it in your commercial products. + so feel free to integrate it in your commercial products. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_93.yml b/src/licensedcode/data/rules/mit_93.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_930.RULE b/src/licensedcode/data/rules/mit_930.RULE index 400399340f7..0bea75c52cc 100644 --- a/src/licensedcode/data/rules/mit_930.RULE +++ b/src/licensedcode/data/rules/mit_930.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://tldrlegal.com/license/mit-license +--- + License date- is licensed under the [MIT license](http://.mit-license.org). Read more about MIT at [TLDRLegal](https://tldrlegal.com/license/mit-license). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_930.yml b/src/licensedcode/data/rules/mit_930.yml deleted file mode 100644 index 07027e41f6d..00000000000 --- a/src/licensedcode/data/rules/mit_930.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://tldrlegal.com/license/mit-license diff --git a/src/licensedcode/data/rules/mit_931.RULE b/src/licensedcode/data/rules/mit_931.RULE index 35b36874c24..4e816504d19 100644 --- a/src/licensedcode/data/rules/mit_931.RULE +++ b/src/licensedcode/data/rules/mit_931.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is licensed under the terms of the MIT license. Please see the file LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_931.yml b/src/licensedcode/data/rules/mit_931.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_931.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_932.RULE b/src/licensedcode/data/rules/mit_932.RULE index 3d822ea0792..4c28a56b50d 100644 --- a/src/licensedcode/data/rules/mit_932.RULE +++ b/src/licensedcode/data/rules/mit_932.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is licensed under the terms of the MIT license. Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_932.yml b/src/licensedcode/data/rules/mit_932.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_932.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_933.RULE b/src/licensedcode/data/rules/mit_933.RULE index 8eb7bed9eb1..25a27ac3741 100644 --- a/src/licensedcode/data/rules/mit_933.RULE +++ b/src/licensedcode/data/rules/mit_933.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.mit +notes: https://github.com/newren/git-filter-repo/blob/e9e0308df1e9e792598b8e41d0086d7a785e9cc5/COPYING +--- + most the files in this repository (exceptions noted below) are provided under the MIT license (see COPYING.mit). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_933.yml b/src/licensedcode/data/rules/mit_933.yml deleted file mode 100644 index 635a573b6a6..00000000000 --- a/src/licensedcode/data/rules/mit_933.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.mit -notes: https://github.com/newren/git-filter-repo/blob/e9e0308df1e9e792598b8e41d0086d7a785e9cc5/COPYING diff --git a/src/licensedcode/data/rules/mit_934.RULE b/src/licensedcode/data/rules/mit_934.RULE index 1ac2a183117..d98f6b08486 100644 --- a/src/licensedcode/data/rules/mit_934.RULE +++ b/src/licensedcode/data/rules/mit_934.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + If not stated explicitly differently, all files and contents of this directory and its subdirectories are subject to the following copyright notice. diff --git a/src/licensedcode/data/rules/mit_934.yml b/src/licensedcode/data/rules/mit_934.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_934.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_935.RULE b/src/licensedcode/data/rules/mit_935.RULE index 1c0b80b2f27..45ffbde1d07 100644 --- a/src/licensedcode/data/rules/mit_935.RULE +++ b/src/licensedcode/data/rules/mit_935.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All files are licensed under MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_935.yml b/src/licensedcode/data/rules/mit_935.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_935.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_936.RULE b/src/licensedcode/data/rules/mit_936.RULE index 945da525c98..ae8d9707743 100644 --- a/src/licensedcode/data/rules/mit_936.RULE +++ b/src/licensedcode/data/rules/mit_936.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + files are licensed under MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_936.yml b/src/licensedcode/data/rules/mit_936.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_936.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_937.RULE b/src/licensedcode/data/rules/mit_937.RULE index b2f24546eb0..0095f7a8d20 100644 --- a/src/licensedcode/data/rules/mit_937.RULE +++ b/src/licensedcode/data/rules/mit_937.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + open source, licensed under a standard MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_937.yml b/src/licensedcode/data/rules/mit_937.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_937.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_938.RULE b/src/licensedcode/data/rules/mit_938.RULE index 558ca397a0c..81e6f3a93b8 100644 --- a/src/licensedcode/data/rules/mit_938.RULE +++ b/src/licensedcode/data/rules/mit_938.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + licensed under a standard MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_938.yml b/src/licensedcode/data/rules/mit_938.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_938.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_939.RULE b/src/licensedcode/data/rules/mit_939.RULE index a7d4b8438b9..18784c85092 100644 --- a/src/licensedcode/data/rules/mit_939.RULE +++ b/src/licensedcode/data/rules/mit_939.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + open source, licensed under a standard MIT license (included in this repository as ``LICENSE``). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_939.yml b/src/licensedcode/data/rules/mit_939.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_939.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_94.RULE b/src/licensedcode/data/rules/mit_94.RULE index cf86760de21..dcbcad1217e 100644 --- a/src/licensedcode/data/rules/mit_94.RULE +++ b/src/licensedcode/data/rules/mit_94.RULE @@ -1 +1,9 @@ -This software is distributed under [MIT license](http://www.opensource.org/licenses/mit-license.php), +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + +This software is distributed under [MIT license](http://www.opensource.org/licenses/mit-license.php), \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_94.yml b/src/licensedcode/data/rules/mit_94.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_940.RULE b/src/licensedcode/data/rules/mit_940.RULE index a98cf8821cd..6d515d90b04 100644 --- a/src/licensedcode/data/rules/mit_940.RULE +++ b/src/licensedcode/data/rules/mit_940.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensing This project is released under the terms of the MIT Open Source License. View LICENSE file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_940.yml b/src/licensedcode/data/rules/mit_940.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_940.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_941.RULE b/src/licensedcode/data/rules/mit_941.RULE index c87cf8be50c..e02cd649931 100644 --- a/src/licensedcode/data/rules/mit_941.RULE +++ b/src/licensedcode/data/rules/mit_941.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is released under the terms of the MIT Open Source License. View LICENSE file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_941.yml b/src/licensedcode/data/rules/mit_941.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_941.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_942.RULE b/src/licensedcode/data/rules/mit_942.RULE index 18baa9d63cf..ae8e7b7a243 100644 --- a/src/licensedcode/data/rules/mit_942.RULE +++ b/src/licensedcode/data/rules/mit_942.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensing This project is released under the terms of the MIT Open Source License. View LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_942.yml b/src/licensedcode/data/rules/mit_942.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_942.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_943.RULE b/src/licensedcode/data/rules/mit_943.RULE index 9e93e9a9e6e..91c6b46a8f8 100644 --- a/src/licensedcode/data/rules/mit_943.RULE +++ b/src/licensedcode/data/rules/mit_943.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is released under the terms of the MIT Open Source License. View LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_943.yml b/src/licensedcode/data/rules/mit_943.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_943.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_944.RULE b/src/licensedcode/data/rules/mit_944.RULE index 2894b4c4e22..1c53d602568 100644 --- a/src/licensedcode/data/rules/mit_944.RULE +++ b/src/licensedcode/data/rules/mit_944.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This project is released under the terms of the MIT Open Source License. View *LICENSE.txt* for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_944.yml b/src/licensedcode/data/rules/mit_944.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_944.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_945.RULE b/src/licensedcode/data/rules/mit_945.RULE index e9b99f9e863..1b18a400a3c 100644 --- a/src/licensedcode/data/rules/mit_945.RULE +++ b/src/licensedcode/data/rules/mit_945.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Licensing This project is released under the terms of the MIT Open Source License. View *LICENSE.txt* file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_945.yml b/src/licensedcode/data/rules/mit_945.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_945.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_946.RULE b/src/licensedcode/data/rules/mit_946.RULE index c66df02673e..f6e0be03534 100644 --- a/src/licensedcode/data/rules/mit_946.RULE +++ b/src/licensedcode/data/rules/mit_946.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This project is released under the terms of the MIT Open Source License. View *LICENSE.txt* file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_946.yml b/src/licensedcode/data/rules/mit_946.yml deleted file mode 100644 index d7ae89792e8..00000000000 --- a/src/licensedcode/data/rules/mit_946.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_947.RULE b/src/licensedcode/data/rules/mit_947.RULE index 25294d441d0..eb38c2d10d8 100644 --- a/src/licensedcode/data/rules/mit_947.RULE +++ b/src/licensedcode/data/rules/mit_947.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // Use of this source code is governed by a {{ MIT -// license }} that can be found in the LICENSE file. +// license }} that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_947.yml b/src/licensedcode/data/rules/mit_947.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_947.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_948.RULE b/src/licensedcode/data/rules/mit_948.RULE index beb02f2dd94..ba8c86f466e 100644 --- a/src/licensedcode/data/rules/mit_948.RULE +++ b/src/licensedcode/data/rules/mit_948.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + X.Org Preferred License The X.Org Foundation has chosen the following format of the MIT License as the preferred format for code included in the X Window System distribution. This is diff --git a/src/licensedcode/data/rules/mit_948.yml b/src/licensedcode/data/rules/mit_948.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_948.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_949.RULE b/src/licensedcode/data/rules/mit_949.RULE index 85b3374dfaa..7cf6338fb90 100644 --- a/src/licensedcode/data/rules/mit_949.RULE +++ b/src/licensedcode/data/rules/mit_949.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * License This project is licensed under MIT (see [[./LICENSE]]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_949.yml b/src/licensedcode/data/rules/mit_949.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_949.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_95.RULE b/src/licensedcode/data/rules/mit_95.RULE index 45d9bab76d5..2ca39ed0a9a 100644 --- a/src/licensedcode/data/rules/mit_95.RULE +++ b/src/licensedcode/data/rules/mit_95.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/virteom/Public-Licensing +--- + https://github.com/virteom/Public-Licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_95.yml b/src/licensedcode/data/rules/mit_95.yml deleted file mode 100644 index ce847a9e558..00000000000 --- a/src/licensedcode/data/rules/mit_95.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/virteom/Public-Licensing diff --git a/src/licensedcode/data/rules/mit_950.RULE b/src/licensedcode/data/rules/mit_950.RULE index d41e8615c9e..1e2c2f665e7 100644 --- a/src/licensedcode/data/rules/mit_950.RULE +++ b/src/licensedcode/data/rules/mit_950.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is licensed under MIT (see [[./LICENSE]]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_950.yml b/src/licensedcode/data/rules/mit_950.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_950.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_951.RULE b/src/licensedcode/data/rules/mit_951.RULE index 79b8e24fd3a..1247d43f4fd 100644 --- a/src/licensedcode/data/rules/mit_951.RULE +++ b/src/licensedcode/data/rules/mit_951.RULE @@ -1,2 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +notes: Seen in json-cpp +ignorable_copyrights: + - Copyright (c) Authors +ignorable_holders: + - Authors +--- + In jurisdictions which do not recognize Public Domain property (e.g. Germany as of 2010), this software is Copyright (c) Authors, and is released under the terms of the MIT License (see below) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_951.yml b/src/licensedcode/data/rules/mit_951.yml deleted file mode 100644 index 9a0bff19bb9..00000000000 --- a/src/licensedcode/data/rules/mit_951.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -notes: Seen in json-cpp -ignorable_copyrights: - - Copyright (c) Authors -ignorable_holders: - - Authors diff --git a/src/licensedcode/data/rules/mit_952.RULE b/src/licensedcode/data/rules/mit_952.RULE index fe0fd873f89..1a022883407 100644 --- a/src/licensedcode/data/rules/mit_952.RULE +++ b/src/licensedcode/data/rules/mit_952.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.rst +--- + Licensed under the MIT License (see file LICENSE.rst for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_952.yml b/src/licensedcode/data/rules/mit_952.yml deleted file mode 100644 index 59dcf34aada..00000000000 --- a/src/licensedcode/data/rules/mit_952.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.rst diff --git a/src/licensedcode/data/rules/mit_953.RULE b/src/licensedcode/data/rules/mit_953.RULE index 4fcb06e60bc..9e700c442a2 100644 --- a/src/licensedcode/data/rules/mit_953.RULE +++ b/src/licensedcode/data/rules/mit_953.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mit-license.org/ +--- + made available under [the MIT license](http://mit-license.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_953.yml b/src/licensedcode/data/rules/mit_953.yml deleted file mode 100644 index 9a213cecbd7..00000000000 --- a/src/licensedcode/data/rules/mit_953.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mit-license.org/ diff --git a/src/licensedcode/data/rules/mit_954.RULE b/src/licensedcode/data/rules/mit_954.RULE index 5082dc89fa6..e02d3b7babc 100644 --- a/src/licensedcode/data/rules/mit_954.RULE +++ b/src/licensedcode/data/rules/mit_954.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + This is the MIT license: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_954.yml b/src/licensedcode/data/rules/mit_954.yml deleted file mode 100644 index bd20f5cfe8c..00000000000 --- a/src/licensedcode/data/rules/mit_954.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_955.RULE b/src/licensedcode/data/rules/mit_955.RULE index 7ad6aa6ddd6..d378e22d45e 100644 --- a/src/licensedcode/data/rules/mit_955.RULE +++ b/src/licensedcode/data/rules/mit_955.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + This is the MIT license: https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_955.yml b/src/licensedcode/data/rules/mit_955.yml deleted file mode 100644 index 00631a6fdc1..00000000000 --- a/src/licensedcode/data/rules/mit_955.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_956.RULE b/src/licensedcode/data/rules/mit_956.RULE index 4ad2c82847a..4e6c63aeb38 100644 --- a/src/licensedcode/data/rules/mit_956.RULE +++ b/src/licensedcode/data/rules/mit_956.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This software is released under MIT license. The full license information can be found in LICENSE in the root directory of this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_956.yml b/src/licensedcode/data/rules/mit_956.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_956.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_957.RULE b/src/licensedcode/data/rules/mit_957.RULE index a3897d7a083..cd05fd67b7a 100644 --- a/src/licensedcode/data/rules/mit_957.RULE +++ b/src/licensedcode/data/rules/mit_957.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This software is released under MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_957.yml b/src/licensedcode/data/rules/mit_957.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_957.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_958.RULE b/src/licensedcode/data/rules/mit_958.RULE index c8ac42341b8..08847d90448 100644 --- a/src/licensedcode/data/rules/mit_958.RULE +++ b/src/licensedcode/data/rules/mit_958.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + software is released under MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_958.yml b/src/licensedcode/data/rules/mit_958.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_958.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_959.RULE b/src/licensedcode/data/rules/mit_959.RULE index c783b417fa2..b5d1e8c16a2 100644 --- a/src/licensedcode/data/rules/mit_959.RULE +++ b/src/licensedcode/data/rules/mit_959.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_959.yml b/src/licensedcode/data/rules/mit_959.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_959.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_96.RULE b/src/licensedcode/data/rules/mit_96.RULE index 927effca7df..7a2798c3d28 100644 --- a/src/licensedcode/data/rules/mit_96.RULE +++ b/src/licensedcode/data/rules/mit_96.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://kentico.github.io/licenses/kentico-mvc.txt +--- + http://kentico.github.io/licenses/kentico-mvc.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_96.yml b/src/licensedcode/data/rules/mit_96.yml deleted file mode 100644 index 391a591f973..00000000000 --- a/src/licensedcode/data/rules/mit_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://kentico.github.io/licenses/kentico-mvc.txt diff --git a/src/licensedcode/data/rules/mit_960.RULE b/src/licensedcode/data/rules/mit_960.RULE index 52648f1cb94..4fea8423e1a 100644 --- a/src/licensedcode/data/rules/mit_960.RULE +++ b/src/licensedcode/data/rules/mit_960.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE [MIT LICENSE]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_960.yml b/src/licensedcode/data/rules/mit_960.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_960.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_961.RULE b/src/licensedcode/data/rules/mit_961.RULE index 160b3403171..fcc52bc5b74 100644 --- a/src/licensedcode/data/rules/mit_961.RULE +++ b/src/licensedcode/data/rules/mit_961.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE MIT LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_961.yml b/src/licensedcode/data/rules/mit_961.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_961.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_962.RULE b/src/licensedcode/data/rules/mit_962.RULE index f36fbfc06c1..2766ad8afba 100644 --- a/src/licensedcode/data/rules/mit_962.RULE +++ b/src/licensedcode/data/rules/mit_962.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 95 +--- + LICENSE INFORMATION: MIT STYLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_962.yml b/src/licensedcode/data/rules/mit_962.yml deleted file mode 100644 index dcb04df1040..00000000000 --- a/src/licensedcode/data/rules/mit_962.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit_963.RULE b/src/licensedcode/data/rules/mit_963.RULE index dce09c608b0..993ea548e0e 100644 --- a/src/licensedcode/data/rules/mit_963.RULE +++ b/src/licensedcode/data/rules/mit_963.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + LICENSE INFORMATION: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_963.yml b/src/licensedcode/data/rules/mit_963.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_963.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_964.RULE b/src/licensedcode/data/rules/mit_964.RULE index b903773024a..b1c7b6645c8 100644 --- a/src/licensedcode/data/rules/mit_964.RULE +++ b/src/licensedcode/data/rules/mit_964.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 80 +--- + MIT STYLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_964.yml b/src/licensedcode/data/rules/mit_964.yml deleted file mode 100644 index 3faa83c7be0..00000000000 --- a/src/licensedcode/data/rules/mit_964.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/mit_965.RULE b/src/licensedcode/data/rules/mit_965.RULE index 480c1be495f..cdbfaef13f3 100644 --- a/src/licensedcode/data/rules/mit_965.RULE +++ b/src/licensedcode/data/rules/mit_965.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 95 +--- + LICENSE: MIT STYLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_965.yml b/src/licensedcode/data/rules/mit_965.yml deleted file mode 100644 index dcb04df1040..00000000000 --- a/src/licensedcode/data/rules/mit_965.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit_966.RULE b/src/licensedcode/data/rules/mit_966.RULE index ebf1fa80986..7be50381469 100644 --- a/src/licensedcode/data/rules/mit_966.RULE +++ b/src/licensedcode/data/rules/mit_966.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +notes: typo with "andor" merged in one word +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/mit_966.yml b/src/licensedcode/data/rules/mit_966.yml deleted file mode 100644 index 8369b773d64..00000000000 --- a/src/licensedcode/data/rules/mit_966.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -notes: typo with "andor" merged in one word diff --git a/src/licensedcode/data/rules/mit_967.RULE b/src/licensedcode/data/rules/mit_967.RULE index a7794aabd98..b9530719046 100644 --- a/src/licensedcode/data/rules/mit_967.RULE +++ b/src/licensedcode/data/rules/mit_967.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Licenced under the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_967.yml b/src/licensedcode/data/rules/mit_967.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_967.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_968.RULE b/src/licensedcode/data/rules/mit_968.RULE index 62ceeed9b33..b56ba5ad475 100644 --- a/src/licensedcode/data/rules/mit_968.RULE +++ b/src/licensedcode/data/rules/mit_968.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + programming language distributed under MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_968.yml b/src/licensedcode/data/rules/mit_968.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_968.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_969.RULE b/src/licensedcode/data/rules/mit_969.RULE index 34f819c0aaa..e0e134bf000 100644 --- a/src/licensedcode/data/rules/mit_969.RULE +++ b/src/licensedcode/data/rules/mit_969.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Expat is [free software] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_969.yml b/src/licensedcode/data/rules/mit_969.yml deleted file mode 100644 index 820a11b4023..00000000000 --- a/src/licensedcode/data/rules/mit_969.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_97.RULE b/src/licensedcode/data/rules/mit_97.RULE index 6aae11e1b21..4a80c67366d 100644 --- a/src/licensedcode/data/rules/mit_97.RULE +++ b/src/licensedcode/data/rules/mit_97.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + which is -distributed under this license, sometimes called the "MIT" license. +distributed under this license, sometimes called the "MIT" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_97.yml b/src/licensedcode/data/rules/mit_97.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_970.RULE b/src/licensedcode/data/rules/mit_970.RULE index 99e07b94186..869ee559cdc 100644 --- a/src/licensedcode/data/rules/mit_970.RULE +++ b/src/licensedcode/data/rules/mit_970.RULE @@ -1,3 +1,15 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - https://github.com/libexpat/libexpat/blob/master/expat/COPYING + - https://www.gnu.org/philosophy/free-sw.en.html +--- + Expat is [free software](https://www.gnu.org/philosophy/free-sw.en.html). You may copy, distribute, and modify it under the terms of the License contained in the file diff --git a/src/licensedcode/data/rules/mit_970.yml b/src/licensedcode/data/rules/mit_970.yml deleted file mode 100644 index 3b01058cfa4..00000000000 --- a/src/licensedcode/data/rules/mit_970.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - https://github.com/libexpat/libexpat/blob/master/expat/COPYING - - https://www.gnu.org/philosophy/free-sw.en.html diff --git a/src/licensedcode/data/rules/mit_971.RULE b/src/licensedcode/data/rules/mit_971.RULE index 75216d29dcc..31f8a8ae7a1 100644 --- a/src/licensedcode/data/rules/mit_971.RULE +++ b/src/licensedcode/data/rules/mit_971.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/libexpat/libexpat/blob/master/expat/COPYING +--- + https://github.com/libexpat/libexpat/blob/master/expat/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_971.yml b/src/licensedcode/data/rules/mit_971.yml deleted file mode 100644 index 0566f7dcb27..00000000000 --- a/src/licensedcode/data/rules/mit_971.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/libexpat/libexpat/blob/master/expat/COPYING diff --git a/src/licensedcode/data/rules/mit_972.RULE b/src/licensedcode/data/rules/mit_972.RULE index f259220bdef..cce60f5e279 100644 --- a/src/licensedcode/data/rules/mit_972.RULE +++ b/src/licensedcode/data/rules/mit_972.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All files, with the exceptions below, are released under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_972.yml b/src/licensedcode/data/rules/mit_972.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_972.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_973.RULE b/src/licensedcode/data/rules/mit_973.RULE index 4391b38a4d1..b8f2d12a0af 100644 --- a/src/licensedcode/data/rules/mit_973.RULE +++ b/src/licensedcode/data/rules/mit_973.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + All files are released under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_973.yml b/src/licensedcode/data/rules/mit_973.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_973.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_974.RULE b/src/licensedcode/data/rules/mit_974.RULE index 0e5abb52b2a..c875f19b139 100644 --- a/src/licensedcode/data/rules/mit_974.RULE +++ b/src/licensedcode/data/rules/mit_974.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + are released under the MIT License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_974.yml b/src/licensedcode/data/rules/mit_974.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_974.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_975.RULE b/src/licensedcode/data/rules/mit_975.RULE index 0978d359c54..6907990ce3e 100644 --- a/src/licensedcode/data/rules/mit_975.RULE +++ b/src/licensedcode/data/rules/mit_975.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/mit_975.yml b/src/licensedcode/data/rules/mit_975.yml deleted file mode 100644 index 6608f7322e1..00000000000 --- a/src/licensedcode/data/rules/mit_975.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_976.RULE b/src/licensedcode/data/rules/mit_976.RULE index 100ea16eb24..8fd7d4f7bef 100644 --- a/src/licensedcode/data/rules/mit_976.RULE +++ b/src/licensedcode/data/rules/mit_976.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.html +--- + Lua is free software distributed under the terms of the MIT license reproduced below; diff --git a/src/licensedcode/data/rules/mit_976.yml b/src/licensedcode/data/rules/mit_976.yml deleted file mode 100644 index f50469916ce..00000000000 --- a/src/licensedcode/data/rules/mit_976.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_977.RULE b/src/licensedcode/data/rules/mit_977.RULE index 3e934f69766..933cc59e12d 100644 --- a/src/licensedcode/data/rules/mit_977.RULE +++ b/src/licensedcode/data/rules/mit_977.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.lua.org/license.html +--- + Freely available under the terms of the Lua license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_977.yml b/src/licensedcode/data/rules/mit_977.yml deleted file mode 100644 index 874c295d4a0..00000000000 --- a/src/licensedcode/data/rules/mit_977.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.lua.org/license.html diff --git a/src/licensedcode/data/rules/mit_978.RULE b/src/licensedcode/data/rules/mit_978.RULE index e7cf8f030a5..713b073b70a 100644 --- a/src/licensedcode/data/rules/mit_978.RULE +++ b/src/licensedcode/data/rules/mit_978.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Freely available under the terms of the Lua license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_978.yml b/src/licensedcode/data/rules/mit_978.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_978.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_979.RULE b/src/licensedcode/data/rules/mit_979.RULE index 0859d9e5854..706433d3def 100644 --- a/src/licensedcode/data/rules/mit_979.RULE +++ b/src/licensedcode/data/rules/mit_979.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.lua.org/license.html +--- + http://www.lua.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_979.yml b/src/licensedcode/data/rules/mit_979.yml deleted file mode 100644 index b68fb3ba6ad..00000000000 --- a/src/licensedcode/data/rules/mit_979.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.lua.org/license.html diff --git a/src/licensedcode/data/rules/mit_98.RULE b/src/licensedcode/data/rules/mit_98.RULE index e19d356ad88..88df199f160 100644 --- a/src/licensedcode/data/rules/mit_98.RULE +++ b/src/licensedcode/data/rules/mit_98.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project has been released under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_98.yml b/src/licensedcode/data/rules/mit_98.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_980.RULE b/src/licensedcode/data/rules/mit_980.RULE index 4e070913e0e..7a1bfb8f828 100644 --- a/src/licensedcode/data/rules/mit_980.RULE +++ b/src/licensedcode/data/rules/mit_980.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.lua.org/license.html +--- + https://www.lua.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_980.yml b/src/licensedcode/data/rules/mit_980.yml deleted file mode 100644 index c36b7a6df57..00000000000 --- a/src/licensedcode/data/rules/mit_980.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.lua.org/license.html diff --git a/src/licensedcode/data/rules/mit_981.RULE b/src/licensedcode/data/rules/mit_981.RULE index aec8befb9ba..18b945edd31 100644 --- a/src/licensedcode/data/rules/mit_981.RULE +++ b/src/licensedcode/data/rules/mit_981.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + Lua license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_981.yml b/src/licensedcode/data/rules/mit_981.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_981.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_982.RULE b/src/licensedcode/data/rules/mit_982.RULE index 1eeee9fa3ae..15faa5c0247 100644 --- a/src/licensedcode/data/rules/mit_982.RULE +++ b/src/licensedcode/data/rules/mit_982.RULE @@ -1 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + Lua is free software \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_982.yml b/src/licensedcode/data/rules/mit_982.yml deleted file mode 100644 index 820a11b4023..00000000000 --- a/src/licensedcode/data/rules/mit_982.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_983.RULE b/src/licensedcode/data/rules/mit_983.RULE index 35efe04452a..272ba3c7342 100644 --- a/src/licensedcode/data/rules/mit_983.RULE +++ b/src/licensedcode/data/rules/mit_983.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + library is licensed under the MIT "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_983.yml b/src/licensedcode/data/rules/mit_983.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_983.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_984.RULE b/src/licensedcode/data/rules/mit_984.RULE index befdfb34c69..8a376ecd427 100644 --- a/src/licensedcode/data/rules/mit_984.RULE +++ b/src/licensedcode/data/rules/mit_984.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + is licensed under the MIT "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_984.yml b/src/licensedcode/data/rules/mit_984.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_984.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_985.RULE b/src/licensedcode/data/rules/mit_985.RULE index b35b9883bad..13c248cd9c9 100644 --- a/src/licensedcode/data/rules/mit_985.RULE +++ b/src/licensedcode/data/rules/mit_985.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + ## License is licensed under the [MIT License](https:///LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_985.yml b/src/licensedcode/data/rules/mit_985.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_985.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_986.RULE b/src/licensedcode/data/rules/mit_986.RULE index 39c5d45dfe1..ce3d785abfe 100644 --- a/src/licensedcode/data/rules/mit_986.RULE +++ b/src/licensedcode/data/rules/mit_986.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/blob/master/LICENSE +--- + ## License is licensed under the [MIT License](https://github.com/blob/master/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_986.yml b/src/licensedcode/data/rules/mit_986.yml deleted file mode 100644 index 803f35b6bc1..00000000000 --- a/src/licensedcode/data/rules/mit_986.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_987.RULE b/src/licensedcode/data/rules/mit_987.RULE index f595b6c3737..fc1cad92516 100644 --- a/src/licensedcode/data/rules/mit_987.RULE +++ b/src/licensedcode/data/rules/mit_987.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + licensed under the MIT "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_987.yml b/src/licensedcode/data/rules/mit_987.yml deleted file mode 100644 index 37f25973781..00000000000 --- a/src/licensedcode/data/rules/mit_987.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_988.RULE b/src/licensedcode/data/rules/mit_988.RULE index 9e749b71106..6d4a3802c35 100644 --- a/src/licensedcode/data/rules/mit_988.RULE +++ b/src/licensedcode/data/rules/mit_988.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + library is licensed under the MIT "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_988.yml b/src/licensedcode/data/rules/mit_988.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_988.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_989.RULE b/src/licensedcode/data/rules/mit_989.RULE index 135d85b845b..c46d7ebf1cd 100644 --- a/src/licensedcode/data/rules/mit_989.RULE +++ b/src/licensedcode/data/rules/mit_989.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + is licensed under the MIT "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_989.yml b/src/licensedcode/data/rules/mit_989.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_989.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_99.RULE b/src/licensedcode/data/rules/mit_99.RULE index 1a64cfb53ad..61d49e25763 100644 --- a/src/licensedcode/data/rules/mit_99.RULE +++ b/src/licensedcode/data/rules/mit_99.RULE @@ -1,2 +1,7 @@ -# This software is released as open source software under the "MIT" license: +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- +# This software is released as open source software under the "MIT" license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_99.yml b/src/licensedcode/data/rules/mit_99.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_990.RULE b/src/licensedcode/data/rules/mit_990.RULE index c4b2c8226d0..2e5e709eeb9 100644 --- a/src/licensedcode/data/rules/mit_990.RULE +++ b/src/licensedcode/data/rules/mit_990.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + licensed under the MIT "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_990.yml b/src/licensedcode/data/rules/mit_990.yml deleted file mode 100644 index d059788c958..00000000000 --- a/src/licensedcode/data/rules/mit_990.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_991.RULE b/src/licensedcode/data/rules/mit_991.RULE index 3d8f23501b7..a45946a391e 100644 --- a/src/licensedcode/data/rules/mit_991.RULE +++ b/src/licensedcode/data/rules/mit_991.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 95 +--- + Changed license from BSD to MIT style. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_991.yml b/src/licensedcode/data/rules/mit_991.yml deleted file mode 100644 index dcb04df1040..00000000000 --- a/src/licensedcode/data/rules/mit_991.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit_992.RULE b/src/licensedcode/data/rules/mit_992.RULE index c4ba6434291..a8e264ffe3a 100644 --- a/src/licensedcode/data/rules/mit_992.RULE +++ b/src/licensedcode/data/rules/mit_992.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.html +--- + osi-certified osi certified Lua is free software distributed under the terms of the http://www.opensource.org/licenses/mit-license.html MIT license diff --git a/src/licensedcode/data/rules/mit_992.yml b/src/licensedcode/data/rules/mit_992.yml deleted file mode 100644 index c5e19e5165c..00000000000 --- a/src/licensedcode/data/rules/mit_992.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.html diff --git a/src/licensedcode/data/rules/mit_993.RULE b/src/licensedcode/data/rules/mit_993.RULE index e070a9c661b..773d7b9a1bf 100644 --- a/src/licensedcode/data/rules/mit_993.RULE +++ b/src/licensedcode/data/rules/mit_993.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under an MIT LICENSE MIT Compiled License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_993.yml b/src/licensedcode/data/rules/mit_993.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_993.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_994.RULE b/src/licensedcode/data/rules/mit_994.RULE index 2a22e7812e8..ee45dbb2078 100644 --- a/src/licensedcode/data/rules/mit_994.RULE +++ b/src/licensedcode/data/rules/mit_994.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + directories are made available under an MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_994.yml b/src/licensedcode/data/rules/mit_994.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_994.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_995.RULE b/src/licensedcode/data/rules/mit_995.RULE index 2837c2561c3..6f9509225b8 100644 --- a/src/licensedcode/data/rules/mit_995.RULE +++ b/src/licensedcode/data/rules/mit_995.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + made available under an MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_995.yml b/src/licensedcode/data/rules/mit_995.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_995.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_996.RULE b/src/licensedcode/data/rules/mit_996.RULE index 0cb56675943..b0ab36c8345 100644 --- a/src/licensedcode/data/rules/mit_996.RULE +++ b/src/licensedcode/data/rules/mit_996.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + under an MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_996.yml b/src/licensedcode/data/rules/mit_996.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_996.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_997.RULE b/src/licensedcode/data/rules/mit_997.RULE index 7dd5ef1dafb..25bb3ee7024 100644 --- a/src/licensedcode/data/rules/mit_997.RULE +++ b/src/licensedcode/data/rules/mit_997.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License MIT. See [LICENSE](LICENSE) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_997.yml b/src/licensedcode/data/rules/mit_997.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_997.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_998.RULE b/src/licensedcode/data/rules/mit_998.RULE index 56f5799978e..a548dc48a93 100644 --- a/src/licensedcode/data/rules/mit_998.RULE +++ b/src/licensedcode/data/rules/mit_998.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + published under the X11/MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_998.yml b/src/licensedcode/data/rules/mit_998.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_998.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_999.RULE b/src/licensedcode/data/rules/mit_999.RULE index 173cd4e6a5c..2748288de07 100644 --- a/src/licensedcode/data/rules/mit_999.RULE +++ b/src/licensedcode/data/rules/mit_999.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + code-base (include source and compiled packages) are distributed under the open source MIT license as described below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_999.yml b/src/licensedcode/data/rules/mit_999.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_999.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_an2.RULE b/src/licensedcode/data/rules/mit_an2.RULE index 83923a65ae7..54b7443986b 100644 --- a/src/licensedcode/data/rules/mit_an2.RULE +++ b/src/licensedcode/data/rules/mit_an2.RULE @@ -1 +1,9 @@ -Code licensed under https://github.com/jsforce/jsforce/blob/master/LICENSE">the MIT License +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/jsforce/jsforce/blob/master/LICENSE +--- + +Code licensed under https://github.com/jsforce/jsforce/blob/master/LICENSE">the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_an2.yml b/src/licensedcode/data/rules/mit_an2.yml deleted file mode 100644 index 97836d3113e..00000000000 --- a/src/licensedcode/data/rules/mit_an2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/jsforce/jsforce/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_1.RULE index 0bb7b9b8c91..a62c1cfed2a 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License The MIT License (MIT) + Apache 2.0. Read [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_1.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_1.yml deleted file mode 100644 index d3d6847585c..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_2.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_2.RULE index f35fd6cc88c..882174b374c 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + The MIT License (MIT) + Apache 2.0. Read [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_2.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_2.yml deleted file mode 100644 index d3d6847585c..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_3.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_3.RULE index b5ae49b76c7..a456fa2ac96 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The MIT License (MIT) + Apache 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_3.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_3.yml deleted file mode 100644 index 1703e49b7ed..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_4.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_4.RULE index d6f02a26634..7a3120050a4 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + License The package is licensed under the MIT and Apache License 2.0 licenses. Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_4.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_4.yml deleted file mode 100644 index 1954df86825..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_5.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_5.RULE index 12123b77a9f..db195345668 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_5.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + The package is licensed under the MIT and Apache License 2.0 licenses. Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_5.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_5.yml deleted file mode 100644 index 1954df86825..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_6.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_6.RULE index 4c2694156db..458e8dc91e3 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +relevance: 100 +--- + The package is licensed under the MIT and Apache License 2.0 licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_6.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_6.yml deleted file mode 100644 index 1703e49b7ed..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_7.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_7.RULE index a78c33ee717..4c422497de0 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_7.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + package is licensed under the MIT and Apache License 2.0 licenses. Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_7.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_7.yml deleted file mode 100644 index 1954df86825..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_8.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_8.RULE index ab9f422a6b8..4af23672b0d 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +relevance: 100 +--- + package is licensed under the MIT and Apache License 2.0 licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_8.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_8.yml deleted file mode 100644 index 1703e49b7ed..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_9.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_9.RULE index 01f3d029bd3..2362e1781e7 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_9.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the MIT and Apache License 2.0 licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_9.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_9.yml deleted file mode 100644 index 1703e49b7ed..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_1.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_1.RULE index ac3b256f378..e7995f21bb8 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND apache-2.0 AND agpl-3.0 +is_license_reference: yes +relevance: 100 +--- + This project use MIT, APACHE Lisence, GNU AGPL v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_1.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_1.yml deleted file mode 100644 index 0abee222f21..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND apache-2.0 AND agpl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_2.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_2.RULE index dba45b21a3b..0fa81a1aede 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit AND apache-2.0 AND agpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LISENCE +--- + ## Lisence This project use MIT, APACHE, GNU AGPL v3.0 diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_2.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_2.yml deleted file mode 100644 index 9535b167e5d..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND apache-2.0 AND agpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LISENCE diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_3.RULE b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_3.RULE index ab2d02161be..0acc8fa223d 100644 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit AND apache-2.0 AND agpl-3.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LISENCE +--- + This project use MIT, APACHE, GNU AGPL v3.0 please read LISENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_3.yml b/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_3.yml deleted file mode 100644 index 9535b167e5d..00000000000 --- a/src/licensedcode/data/rules/mit_and_apache-2.0_and_agpl-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND apache-2.0 AND agpl-3.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LISENCE diff --git a/src/licensedcode/data/rules/mit_and_artistic-2.0_1.RULE b/src/licensedcode/data/rules/mit_and_artistic-2.0_1.RULE index 26a42141d7b..4a9e6029eb5 100644 --- a/src/licensedcode/data/rules/mit_and_artistic-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_artistic-2.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: mit AND artistic-2.0 +is_license_reference: yes +relevance: 100 +notes: found in a package.json +--- + license": "(MIT AND Artistic-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_artistic-2.0_1.yml b/src/licensedcode/data/rules/mit_and_artistic-2.0_1.yml deleted file mode 100644 index a7f6d6d7ff7..00000000000 --- a/src/licensedcode/data/rules/mit_and_artistic-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND artistic-2.0 -is_license_reference: yes -relevance: 100 -notes: found in a package.json diff --git a/src/licensedcode/data/rules/mit_and_bitstream_1.RULE b/src/licensedcode/data/rules/mit_and_bitstream_1.RULE index a3b4449343c..f7bf252d476 100644 --- a/src/licensedcode/data/rules/mit_and_bitstream_1.RULE +++ b/src/licensedcode/data/rules/mit_and_bitstream_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bitstream +is_license_tag: yes +relevance: 100 +--- + License: Expat and Bitstream Vera Fonts Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bitstream_1.yml b/src/licensedcode/data/rules/mit_and_bitstream_1.yml deleted file mode 100644 index 01164c7e1f5..00000000000 --- a/src/licensedcode/data/rules/mit_and_bitstream_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bitstream -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_1.RULE b/src/licensedcode/data/rules/mit_and_bsd-new_1.RULE index 5737a4ab426..3c870715c76 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-new_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit AND bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.opentk.com/project/license +--- + http://www.opentk.com/project/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_1.yml b/src/licensedcode/data/rules/mit_and_bsd-new_1.yml deleted file mode 100644 index 8b4f1332331..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-new_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.opentk.com/project/license diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_2.RULE b/src/licensedcode/data/rules/mit_and_bsd-new_2.RULE index c83b4e40c06..0730efa9ceb 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-new_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bsd-new +is_license_notice: yes +relevance: 100 +--- + Project is bound by MIT AND BSD-3-Clause licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_2.yml b/src/licensedcode/data/rules/mit_and_bsd-new_2.yml deleted file mode 100644 index 90489f93f4f..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-new_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bsd-new -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_3.RULE b/src/licensedcode/data/rules/mit_and_bsd-new_3.RULE index 8c5a3e7c75b..6fbbadacf82 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-new_3.RULE @@ -1 +1,8 @@ +--- +license_expression: mit AND bsd-new +is_license_tag: yes +relevance: 100 +minimum_coverage: 99 +--- + Modernizr 3.0.0pre (Custom Build) | MIT & BSD */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_3.yml b/src/licensedcode/data/rules/mit_and_bsd-new_3.yml deleted file mode 100644 index a450cee0a16..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-new_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND bsd-new -is_license_tag: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_and_apache-2.0_nuget_url_1.RULE b/src/licensedcode/data/rules/mit_and_bsd-new_and_apache-2.0_nuget_url_1.RULE index f1324bddfda..4be4c7e3145 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-new_and_apache-2.0_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-new_and_apache-2.0_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit AND bsd-new AND apache-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/GalacticAPI/Galactic/master/LICENSE +--- + https://raw.githubusercontent.com/GalacticAPI/Galactic/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_and_apache-2.0_nuget_url_1.yml b/src/licensedcode/data/rules/mit_and_bsd-new_and_apache-2.0_nuget_url_1.yml deleted file mode 100644 index 7495a69ab1a..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-new_and_apache-2.0_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND bsd-new AND apache-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/GalacticAPI/Galactic/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_1.RULE b/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_1.RULE index 89dc6832e8d..7f68a8dc189 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_1.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bsd-new +is_license_reference: yes +relevance: 80 +--- + (Custom Build) | MIT & BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_1.yml b/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_1.yml deleted file mode 100644 index bd78c623518..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bsd-new -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE b/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE index 1dd021ca2f4..daf34f7631c 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bsd-new +is_license_reference: yes +relevance: 80 +--- + MIT & BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.yml b/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.yml deleted file mode 100644 index bd78c623518..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bsd-new -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_1.RULE b/src/licensedcode/data/rules/mit_and_bsd-simplified_1.RULE index 513fd0866d7..279ef282ee5 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-simplified_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bsd-simplified +is_license_notice: yes +relevance: 100 +--- + This layer is licensed under MIT & BSD-2-Clause. Newly-added recipes are licensed exclusively under MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_1.yml b/src/licensedcode/data/rules/mit_and_bsd-simplified_1.yml deleted file mode 100644 index ed42d09370b..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_2.RULE b/src/licensedcode/data/rules/mit_and_bsd-simplified_2.RULE index 5d2ba5fb0ca..d23a58db770 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_2.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-simplified_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bsd-simplified +is_license_notice: yes +relevance: 100 +--- + This layer is licensed under MIT & BSD-2-Clause. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_2.yml b/src/licensedcode/data/rules/mit_and_bsd-simplified_2.yml deleted file mode 100644 index ed42d09370b..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_3.RULE b/src/licensedcode/data/rules/mit_and_bsd-simplified_3.RULE index 4a5bc85cdb5..a5af6af93bd 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_3.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-simplified_3.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bsd-simplified +is_license_notice: yes +relevance: 100 +--- + licensed under MIT & BSD-2-Clause. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_3.yml b/src/licensedcode/data/rules/mit_and_bsd-simplified_3.yml deleted file mode 100644 index ed42d09370b..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_4.RULE b/src/licensedcode/data/rules/mit_and_bsd-simplified_4.RULE index 95cc4b017ca..3d3943f9ee4 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_4.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-simplified_4.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bsd-simplified +is_license_notice: yes +relevance: 100 +--- + under MIT & BSD-2-Clause. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_4.yml b/src/licensedcode/data/rules/mit_and_bsd-simplified_4.yml deleted file mode 100644 index ed42d09370b..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bsd-simplified -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_5.RULE b/src/licensedcode/data/rules/mit_and_bsd-simplified_5.RULE index a3379a33d3f..4f17f4654d6 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_5.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-simplified_5.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND bsd-simplified +is_license_reference: yes +relevance: 100 +--- + MIT & BSD-2-Clause. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_5.yml b/src/licensedcode/data/rules/mit_and_bsd-simplified_5.yml deleted file mode 100644 index 26812cc3c24..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND bsd-simplified -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_1.RULE b/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_1.RULE index 707b75ec9d5..349a5d8cdbb 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_1.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mit AND bsd-simplified AND isc +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.md +--- + LICENSE.md MIT, BSD-2, ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_1.yml b/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_1.yml deleted file mode 100644 index 602bc2ba8af..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND bsd-simplified AND isc -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_2.RULE b/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_2.RULE index 7cd984df42f..f03e5da81eb 100644 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_2.RULE +++ b/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_2.RULE @@ -1 +1,8 @@ +--- +license_expression: mit AND bsd-simplified AND isc +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + MIT, BSD-2, ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_2.yml b/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_2.yml deleted file mode 100644 index e0429e1af51..00000000000 --- a/src/licensedcode/data/rules/mit_and_bsd-simplified_and_isc_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND bsd-simplified AND isc -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_1.RULE b/src/licensedcode/data/rules/mit_and_cc-by-4.0_1.RULE index cd0f298006e..bec0adec3bb 100644 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_cc-by-4.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND cc-by-4.0 +is_license_notice: yes +relevance: 95 +--- + Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_1.yml b/src/licensedcode/data/rules/mit_and_cc-by-4.0_1.yml deleted file mode 100644 index c4418bb6801..00000000000 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND cc-by-4.0 -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_2.RULE b/src/licensedcode/data/rules/mit_and_cc-by-4.0_2.RULE index 344ccab2cc6..e1daf569332 100644 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_2.RULE +++ b/src/licensedcode/data/rules/mit_and_cc-by-4.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND cc-by-4.0 +is_license_notice: yes +relevance: 99 +--- + Code released under the MIT License. Documentation released under Creative Commons. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_2.yml b/src/licensedcode/data/rules/mit_and_cc-by-4.0_2.yml deleted file mode 100644 index 4288c09d02d..00000000000 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND cc-by-4.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_3.RULE b/src/licensedcode/data/rules/mit_and_cc-by-4.0_3.RULE index 83546c2f84c..3b28c43328a 100644 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_3.RULE +++ b/src/licensedcode/data/rules/mit_and_cc-by-4.0_3.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/martian-lang/martian-docs/blob/master/LICENSE + - https://github.com/martian-lang/martian/blob/master/LICENSE +--- + Code released under the [MIT License](https://github.com/martian-lang/martian/blob/master/LICENSE). Documentation released under [Creative Commons](https://github.com/martian-lang/martian-docs/blob/master/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_3.yml b/src/licensedcode/data/rules/mit_and_cc-by-4.0_3.yml deleted file mode 100644 index 4c75afa163f..00000000000 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/martian-lang/martian-docs/blob/master/LICENSE - - https://github.com/martian-lang/martian/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_4.RULE b/src/licensedcode/data/rules/mit_and_cc-by-4.0_4.RULE index e32675a52d2..e4e4e95cbde 100644 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_4.RULE +++ b/src/licensedcode/data/rules/mit_and_cc-by-4.0_4.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://creativecommons.org/licenses/by/4.0/ +--- + Code licensed under the MIT License: http://opensource.org/licenses/MIT Graphics licensed under CC-BY 4.0: https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_4.yml b/src/licensedcode/data/rules/mit_and_cc-by-4.0_4.yml deleted file mode 100644 index 081a0928d6b..00000000000 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://creativecommons.org/licenses/by/4.0/ diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_5.RULE b/src/licensedcode/data/rules/mit_and_cc-by-4.0_5.RULE index 028ea2e4c74..93b34c2152e 100644 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_5.RULE +++ b/src/licensedcode/data/rules/mit_and_cc-by-4.0_5.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0/ + - https://opensource.org/licenses/MIT +--- + Code licensed under the MIT License: https://opensource.org/licenses/MIT Graphics licensed under CC-BY 4.0: https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_5.yml b/src/licensedcode/data/rules/mit_and_cc-by-4.0_5.yml deleted file mode 100644 index 5105c81f79a..00000000000 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0/ - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_6.RULE b/src/licensedcode/data/rules/mit_and_cc-by-4.0_6.RULE index 023c333e51b..3fa7eb10726 100644 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_6.RULE +++ b/src/licensedcode/data/rules/mit_and_cc-by-4.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 + - https://opensource.org/licenses/mit-license.php +--- + License The software code contained within this repository is made available under the [MIT license](https://opensource.org/licenses/mit-license.php). The data are diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_6.yml b/src/licensedcode/data/rules/mit_and_cc-by-4.0_6.yml deleted file mode 100644 index 7c6d45b31d5..00000000000 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_7.RULE b/src/licensedcode/data/rules/mit_and_cc-by-4.0_7.RULE index bb4215cdf89..acf680148d2 100644 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_7.RULE +++ b/src/licensedcode/data/rules/mit_and_cc-by-4.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 + - https://opensource.org/licenses/mit-license.php +--- + The software code contained within this repository is made available under the [MIT license](https://opensource.org/licenses/mit-license.php). The data are made available under the [Creative Commons Attribution 4.0 diff --git a/src/licensedcode/data/rules/mit_and_cc-by-4.0_7.yml b/src/licensedcode/data/rules/mit_and_cc-by-4.0_7.yml deleted file mode 100644 index 7c6d45b31d5..00000000000 --- a/src/licensedcode/data/rules/mit_and_cc-by-4.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 - - https://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_and_cc-by-sa-4.0_1.RULE b/src/licensedcode/data/rules/mit_and_cc-by-sa-4.0_1.RULE index 10a7e1b2f89..4a1d7375b4d 100644 --- a/src/licensedcode/data/rules/mit_and_cc-by-sa-4.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_cc-by-sa-4.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mit AND cc-by-sa-4.0 +is_license_reference: yes +relevance: 100 +notes: stackoverflow.com is not MIT-licensed +ignorable_urls: + - https://stackoverflow.com/a/2031935/450127 +--- + Modified from https://stackoverflow.com/a/2031935/450127, MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_cc-by-sa-4.0_1.yml b/src/licensedcode/data/rules/mit_and_cc-by-sa-4.0_1.yml deleted file mode 100644 index c92a1a12665..00000000000 --- a/src/licensedcode/data/rules/mit_and_cc-by-sa-4.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND cc-by-sa-4.0 -is_license_reference: yes -relevance: 100 -notes: stackoverflow.com is not MIT-licensed -ignorable_urls: - - https://stackoverflow.com/a/2031935/450127 diff --git a/src/licensedcode/data/rules/mit_and_commercial-license.RULE b/src/licensedcode/data/rules/mit_and_commercial-license.RULE index 65fbc75afa3..4bfb904f93e 100644 --- a/src/licensedcode/data/rules/mit_and_commercial-license.RULE +++ b/src/licensedcode/data/rules/mit_and_commercial-license.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit AND commercial-license +is_license_notice: yes +notes: the terms seem to restrict MIT to a personal, non-commercial, copyleft-like use +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + # Licenses is made available under a free personal/open source or paid commercial licenses depending on your requirements. To compare licenses please visit the and [purchase a commercial license here @@ -39,4 +47,4 @@ For commercial use, is made available under Commercial, Extended Commercial, an ### OEM Commercial License -Should your application enable end users to produce separate applications that incorporate software, for example, a development toolkit, library, or application builder, you must obtain an OEM Commercial License. Please [contact us]( for more information about the OEM Commercial License. +Should your application enable end users to produce separate applications that incorporate software, for example, a development toolkit, library, or application builder, you must obtain an OEM Commercial License. Please [contact us]( for more information about the OEM Commercial License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_commercial-license.yml b/src/licensedcode/data/rules/mit_and_commercial-license.yml deleted file mode 100644 index 3848608ff79..00000000000 --- a/src/licensedcode/data/rules/mit_and_commercial-license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND commercial-license -is_license_notice: yes -notes: the terms seem to restrict MIT to a personal, non-commercial, copyleft-like use -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_and_commercial-license2.RULE b/src/licensedcode/data/rules/mit_and_commercial-license2.RULE index 1562a4ee1bc..219781cb593 100644 --- a/src/licensedcode/data/rules/mit_and_commercial-license2.RULE +++ b/src/licensedcode/data/rules/mit_and_commercial-license2.RULE @@ -1,3 +1,19 @@ +--- +license_expression: mit AND commercial-license +is_license_notice: yes +notes: the terms seem to restrict MIT to a personal, non-commercial, copyleft-like use +ignorable_urls: + - https://ianlunn.co.uk/contact + - https://ianlunn.co.uk/store/hover-css + - https://ianlunn.co.uk/store/hover-css/?attribute_pa_licenses=commercial + - https://ianlunn.co.uk/store/hover-css/?attribute_pa_licenses=extended-commercial + - https://ianlunn.co.uk/store/licenses + - https://ianlunn.co.uk/store/licenses/commercial + - https://ianlunn.co.uk/store/licenses/extended-commercial + - https://ianlunn.co.uk/store/licenses/personal + - https://opensource.org/licenses/MIT +--- + # Licenses Hover.css is made available under a free personal/open source or paid commercial licenses depending on your requirements. To compare licenses please visit the [Ian Lunn Design Limited Store](https://ianlunn.co.uk/store/licenses/) and [purchase a commercial license here](https://ianlunn.co.uk/store/hover-css/). @@ -39,4 +55,4 @@ For commercial use, Hover.css is made available under Commercial, Extended Comme ### OEM Commercial License -Should your application enable end users to produce separate applications that incorporate Ian Lunn Design Limited's software, for example, a development toolkit, library, or application builder, you must obtain an OEM Commercial License. Please [contact us](https://ianlunn.co.uk/contact/) for more information about the OEM Commercial License. +Should your application enable end users to produce separate applications that incorporate Ian Lunn Design Limited's software, for example, a development toolkit, library, or application builder, you must obtain an OEM Commercial License. Please [contact us](https://ianlunn.co.uk/contact/) for more information about the OEM Commercial License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_commercial-license2.yml b/src/licensedcode/data/rules/mit_and_commercial-license2.yml deleted file mode 100644 index 8cbc09d5fb0..00000000000 --- a/src/licensedcode/data/rules/mit_and_commercial-license2.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: mit AND commercial-license -is_license_notice: yes -notes: the terms seem to restrict MIT to a personal, non-commercial, copyleft-like use -ignorable_urls: - - https://ianlunn.co.uk/contact - - https://ianlunn.co.uk/store/hover-css - - https://ianlunn.co.uk/store/hover-css/?attribute_pa_licenses=commercial - - https://ianlunn.co.uk/store/hover-css/?attribute_pa_licenses=extended-commercial - - https://ianlunn.co.uk/store/licenses - - https://ianlunn.co.uk/store/licenses/commercial - - https://ianlunn.co.uk/store/licenses/extended-commercial - - https://ianlunn.co.uk/store/licenses/personal - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_and_free-unknown.RULE b/src/licensedcode/data/rules/mit_and_free-unknown.RULE index 2228695a30c..ef89a223e21 100644 --- a/src/licensedcode/data/rules/mit_and_free-unknown.RULE +++ b/src/licensedcode/data/rules/mit_and_free-unknown.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit AND free-unknown +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + All the files in this distribution are covered under either the MIT license (see the file LICENSE) except some files mentioned below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_free-unknown.yml b/src/licensedcode/data/rules/mit_and_free-unknown.yml deleted file mode 100644 index d4712d7dfbc..00000000000 --- a/src/licensedcode/data/rules/mit_and_free-unknown.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND free-unknown -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/mit_and_gpl-2.0_1.RULE index 68fa47e86be..3da394af868 100644 --- a/src/licensedcode/data/rules/mit_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_gpl-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit AND gpl-2.0 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://sourceforge.net/p/excelmvc/code/ci/master/tree/LICENSE.md +--- + https://sourceforge.net/p/excelmvc/code/ci/master/tree/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/mit_and_gpl-2.0_1.yml deleted file mode 100644 index d1eb2341ec5..00000000000 --- a/src/licensedcode/data/rules/mit_and_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND gpl-2.0 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://sourceforge.net/p/excelmvc/code/ci/master/tree/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_and_isc_1.RULE b/src/licensedcode/data/rules/mit_and_isc_1.RULE index 2c83beeae14..75b1cb32d0b 100644 --- a/src/licensedcode/data/rules/mit_and_isc_1.RULE +++ b/src/licensedcode/data/rules/mit_and_isc_1.RULE @@ -1 +1,8 @@ +--- +license_expression: mit AND isc +is_license_notice: yes +relevance: 100 +notes: https://github.com/rollup/rollup/blob/07868398277174501db6703d0bcdfc6b89d6fa6e/LICENSE.md +--- + contains code with the following licenses: MIT, ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_isc_1.yml b/src/licensedcode/data/rules/mit_and_isc_1.yml deleted file mode 100644 index 791cf549e75..00000000000 --- a/src/licensedcode/data/rules/mit_and_isc_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND isc -is_license_notice: yes -relevance: 100 -notes: https://github.com/rollup/rollup/blob/07868398277174501db6703d0bcdfc6b89d6fa6e/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_and_isc_2.RULE b/src/licensedcode/data/rules/mit_and_isc_2.RULE index b4e2d16d35d..0e103ec4797 100644 --- a/src/licensedcode/data/rules/mit_and_isc_2.RULE +++ b/src/licensedcode/data/rules/mit_and_isc_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit AND isc +is_license_reference: yes +is_continuous: yes +relevance: 80 +minimum_coverage: 100 +--- + mitsic \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_isc_2.yml b/src/licensedcode/data/rules/mit_and_isc_2.yml deleted file mode 100644 index 63c6f330989..00000000000 --- a/src/licensedcode/data/rules/mit_and_isc_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND isc -is_license_reference: yes -is_continuous: yes -relevance: 80 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_and_json_1.RULE b/src/licensedcode/data/rules/mit_and_json_1.RULE index e085a990625..66086234d2d 100644 --- a/src/licensedcode/data/rules/mit_and_json_1.RULE +++ b/src/licensedcode/data/rules/mit_and_json_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit AND json +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/license-list.html#Expat + - https://www.gnu.org/licenses/license-list.html#JSON +--- + ## License diff --git a/src/licensedcode/data/rules/mit_and_json_1.yml b/src/licensedcode/data/rules/mit_and_json_1.yml deleted file mode 100644 index 97d9ada3ca0..00000000000 --- a/src/licensedcode/data/rules/mit_and_json_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND json -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/license-list.html#Expat - - https://www.gnu.org/licenses/license-list.html#JSON diff --git a/src/licensedcode/data/rules/mit_and_json_2.RULE b/src/licensedcode/data/rules/mit_and_json_2.RULE index bae5946cfb4..a88227a5373 100644 --- a/src/licensedcode/data/rules/mit_and_json_2.RULE +++ b/src/licensedcode/data/rules/mit_and_json_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit AND json +is_license_notice: yes +relevance: 100 +--- + License Most files are published using the standard MIT Expat license. One file, however, is provided under a slightly modified version of that license. The so-called JSON license is a non-free license, and unfortunately, we can't change it due to historical reasons. This license is included as an in-line within the file it concerns. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_json_2.yml b/src/licensedcode/data/rules/mit_and_json_2.yml deleted file mode 100644 index 8dc27d751aa..00000000000 --- a/src/licensedcode/data/rules/mit_and_json_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND json -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_json_and_other-permissive.RULE b/src/licensedcode/data/rules/mit_and_json_and_other-permissive.RULE index d63ddd0d60a..177bed94e32 100644 --- a/src/licensedcode/data/rules/mit_and_json_and_other-permissive.RULE +++ b/src/licensedcode/data/rules/mit_and_json_and_other-permissive.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit AND json AND other-permissive +is_license_notice: yes +minimum_coverage: 80 +--- + If you have downloaded a copy of the binary from , please note that the binary is licensed under the MIT License. If you have downloaded a copy of the source code from , please note that source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within . To avoid the problematic JSON license in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the JSON license. A copy of the MIT License is included in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_json_and_other-permissive.yml b/src/licensedcode/data/rules/mit_and_json_and_other-permissive.yml deleted file mode 100644 index fad2fb6723e..00000000000 --- a/src/licensedcode/data/rules/mit_and_json_and_other-permissive.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND json AND other-permissive -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/mit_and_mpl-2.0_1.RULE b/src/licensedcode/data/rules/mit_and_mpl-2.0_1.RULE index 7b62ac0ed3c..ace9950237f 100644 --- a/src/licensedcode/data/rules/mit_and_mpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_mpl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND mpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License: MIT License and MPLv2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_mpl-2.0_1.yml b/src/licensedcode/data/rules/mit_and_mpl-2.0_1.yml deleted file mode 100644 index 0fee6dfd336..00000000000 --- a/src/licensedcode/data/rules/mit_and_mpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND mpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_mpl-2.0_2.RULE b/src/licensedcode/data/rules/mit_and_mpl-2.0_2.RULE index 0e6c73e3bfa..54e40eca5e5 100644 --- a/src/licensedcode/data/rules/mit_and_mpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/mit_and_mpl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + MIT License and MPLv2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_mpl-2.0_2.yml b/src/licensedcode/data/rules/mit_and_mpl-2.0_2.yml deleted file mode 100644 index f83f6a76940..00000000000 --- a/src/licensedcode/data/rules/mit_and_mpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_1.RULE b/src/licensedcode/data/rules/mit_and_ofl-1.1_1.RULE index a15b737d803..758962e012f 100644 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_1.RULE +++ b/src/licensedcode/data/rules/mit_and_ofl-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND ofl-1.1 +is_license_notice: yes +relevance: 99 +--- + icons are licensed under the MIT Licence and its fonts are under the Open Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_1.yml b/src/licensedcode/data/rules/mit_and_ofl-1.1_1.yml deleted file mode 100644 index 1f47de0a3d5..00000000000 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND ofl-1.1 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_2.RULE b/src/licensedcode/data/rules/mit_and_ofl-1.1_2.RULE index 4110affa8ca..c00fc549e11 100644 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_2.RULE +++ b/src/licensedcode/data/rules/mit_and_ofl-1.1_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit AND ofl-1.1 +is_license_notice: yes +notes: https://raw.githubusercontent.com/DataJuggler/Blazor.Crypto/42de409fbf0afd359aef3c4876b779494eb43b79/wwwroot/css/open-iconic/README.md +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web +--- + ## License ### Icons All code (including SVG markup) is under the [MIT License](http://opensource.org/licenses/MIT). diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_2.yml b/src/licensedcode/data/rules/mit_and_ofl-1.1_2.yml deleted file mode 100644 index 9ced30603c3..00000000000 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit AND ofl-1.1 -is_license_notice: yes -notes: https://raw.githubusercontent.com/DataJuggler/Blazor.Crypto/42de409fbf0afd359aef3c4876b779494eb43b79/wwwroot/css/open-iconic/README.md -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_1.RULE b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_1.RULE index db7bbc6b961..57f1f888d90 100644 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit AND ofl-1.1 AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://fontawesome.com/license/free +--- + Font Awesome Free License Font Awesome Free is free, open source, and GPL friendly. You can use it for diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_1.yml b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_1.yml deleted file mode 100644 index bb5bbba1ecc..00000000000 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND ofl-1.1 AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://fontawesome.com/license/free diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_2.RULE b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_2.RULE index d49ad797925..4e786c0c2a0 100644 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_2.RULE +++ b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit AND ofl-1.1 AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://fontawesome.com/license/free +--- + Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want. Full Font Awesome Free license: https://fontawesome.com/license/free. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_2.yml b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_2.yml deleted file mode 100644 index bb5bbba1ecc..00000000000 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND ofl-1.1 AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://fontawesome.com/license/free diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_3.RULE b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_3.RULE index 4043cd859f3..9e1a3bc36f5 100644 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_3.RULE +++ b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: mit AND ofl-1.1 AND cc-by-4.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/4.0 + - https://fontawesome.com/license/free + - https://opensource.org/licenses/MIT + - https://scripts.sil.org/OFL +--- + Font Awesome Free License Font Awesome Free is free, open source, and GPL friendly. You can use it for diff --git a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_3.yml b/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_3.yml deleted file mode 100644 index f1fde2d56cb..00000000000 --- a/src/licensedcode/data/rules/mit_and_ofl-1.1_and_cc-by-4.0_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit AND ofl-1.1 AND cc-by-4.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/4.0 - - https://fontawesome.com/license/free - - https://opensource.org/licenses/MIT - - https://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/mit_and_other-permissive_1.RULE b/src/licensedcode/data/rules/mit_and_other-permissive_1.RULE index 3774e3c468a..0b434c803e4 100644 --- a/src/licensedcode/data/rules/mit_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/mit_and_other-permissive_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit AND other-permissive +is_license_notice: yes +relevance: 90 +notes: a weird MIT notice with possibly other conditions +--- + The MIT license allows you to do the following things with the Source Code: - Copy and use the Source Code alone or jointly with other code for any @@ -30,4 +37,4 @@ which is to include MIT permission notice and the following copyright notice: This Source Code is licensed under MIT license and the explanations attached in MIT License Statements". These notices shall be included in all copies of the Source Code or in substantial parts of the -Source Code which may be released separately or with modifications. +Source Code which may be released separately or with modifications. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_other-permissive_1.yml b/src/licensedcode/data/rules/mit_and_other-permissive_1.yml deleted file mode 100644 index f5357e75931..00000000000 --- a/src/licensedcode/data/rules/mit_and_other-permissive_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND other-permissive -is_license_notice: yes -relevance: 90 -notes: a weird MIT notice with possibly other conditions diff --git a/src/licensedcode/data/rules/mit_and_other-permissive_2.RULE b/src/licensedcode/data/rules/mit_and_other-permissive_2.RULE index 2a53a00a1c6..1b4fb3aea75 100644 --- a/src/licensedcode/data/rules/mit_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/mit_and_other-permissive_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit AND other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + If you have downloaded a copy of the binary from , please note that the binary is licensed under the MIT License. If you have downloaded a copy of the source code from , please note that source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within . -A copy of the MIT License is included in this file. +A copy of the MIT License is included in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_other-permissive_2.yml b/src/licensedcode/data/rules/mit_and_other-permissive_2.yml deleted file mode 100644 index 5208eb876eb..00000000000 --- a/src/licensedcode/data/rules/mit_and_other-permissive_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit_and_other-permissive_3.RULE b/src/licensedcode/data/rules/mit_and_other-permissive_3.RULE index 51a987b3fab..0178a0d5c78 100644 --- a/src/licensedcode/data/rules/mit_and_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/mit_and_other-permissive_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit AND other-permissive +is_license_notice: yes +notes: https://github.com/ziglang/zig/tree/c10fdde5a64a46bc514500e97b8c87d19f86e431 +--- + This project redistributes code from other projects, some of which have other licenses besides MIT. Such licenses are generally similar to the MIT license for practical purposes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_other-permissive_3.yml b/src/licensedcode/data/rules/mit_and_other-permissive_3.yml deleted file mode 100644 index b37ad86710d..00000000000 --- a/src/licensedcode/data/rules/mit_and_other-permissive_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND other-permissive -is_license_notice: yes -notes: https://github.com/ziglang/zig/tree/c10fdde5a64a46bc514500e97b8c87d19f86e431 diff --git a/src/licensedcode/data/rules/mit_and_other-permissive_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/mit_and_other-permissive_and_other-copyleft_1.RULE index 4b44a88f1c3..2e324bdd43d 100644 --- a/src/licensedcode/data/rules/mit_and_other-permissive_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/mit_and_other-permissive_and_other-copyleft_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit AND other-permissive AND other-copyleft +is_license_notice: yes +relevance: 100 +notes: failrly complex notice https://github.com/rpm-software-management/spec-cleaner/blob/5237cce86ae5113474720da60a73ee8ab4d37d53/spec_cleaner/rpmcopyright.py#L46 +--- + # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the diff --git a/src/licensedcode/data/rules/mit_and_other-permissive_and_other-copyleft_1.yml b/src/licensedcode/data/rules/mit_and_other-permissive_and_other-copyleft_1.yml deleted file mode 100644 index cfb969bf073..00000000000 --- a/src/licensedcode/data/rules/mit_and_other-permissive_and_other-copyleft_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND other-permissive AND other-copyleft -is_license_notice: yes -relevance: 100 -notes: failrly complex notice https://github.com/rpm-software-management/spec-cleaner/blob/5237cce86ae5113474720da60a73ee8ab4d37d53/spec_cleaner/rpmcopyright.py#L46 diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/mit_and_proprietary-license_1.RULE index 766de24e156..8cb81faf5e5 100644 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/mit_and_proprietary-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + The Tao Framework bindings and example applications are free for commercial and non-commercial usage and all source code is provided under the very liberal MIT-X11 license. However, any source code and documentation changes, diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_1.yml b/src/licensedcode/data/rules/mit_and_proprietary-license_1.yml deleted file mode 100644 index c544a35c065..00000000000 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/mit_and_proprietary-license_2.RULE index 1443cec3a2b..0fb879ae83e 100644 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/mit_and_proprietary-license_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: mit AND proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: Note a real MIT seen in https://github.com/AllenDowney/ThinkPython2/blob/master/LICENSE + where the main topic is the documentation. The sentence "to any person obtaining a copy + of this software and associated documentation files ..." has been changed to "to any person + obtaining a copy of this software ...." removing the reference to associated documentation. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_2.yml b/src/licensedcode/data/rules/mit_and_proprietary-license_2.yml deleted file mode 100644 index 45720c2cf85..00000000000 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit AND proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: Note a real MIT seen in https://github.com/AllenDowney/ThinkPython2/blob/master/LICENSE - where the main topic is the documentation. The sentence "to any person obtaining a copy - of this software and associated documentation files ..." has been changed to "to any person - obtaining a copy of this software ...." removing the reference to associated documentation. diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/mit_and_proprietary-license_3.RULE index dc2faee5e83..a7e373931f8 100644 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/mit_and_proprietary-license_3.RULE @@ -1 +1,11 @@ +--- +license_expression: mit AND proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - MIT-COMPILED-LICENSE.md +notes: Seen in mattermost, binary only +--- + Note: This license does not cover source code; for information on source code licensing see LICENSE.txt in the source code from which this project was compiled. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_3.yml b/src/licensedcode/data/rules/mit_and_proprietary-license_3.yml deleted file mode 100644 index de310cc9393..00000000000 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit AND proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - MIT-COMPILED-LICENSE.md -notes: Seen in mattermost, binary only diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_4.RULE b/src/licensedcode/data/rules/mit_and_proprietary-license_4.RULE index 2444c5a2e43..dc8985d8ccb 100644 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/mit_and_proprietary-license_4.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit AND proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - MIT-COMPILED-LICENSE.md +notes: Seen in mattermost, binary only +--- + You are licensed to use compiled versions of produced by , Inc. under an MIT LICENSE - See MIT-COMPILED-LICENSE.md included in compiled versions for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_4.yml b/src/licensedcode/data/rules/mit_and_proprietary-license_4.yml deleted file mode 100644 index de310cc9393..00000000000 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit AND proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - MIT-COMPILED-LICENSE.md -notes: Seen in mattermost, binary only diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_5.RULE b/src/licensedcode/data/rules/mit_and_proprietary-license_5.RULE index 8d8477b306f..7d7bec8d4d9 100644 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_5.RULE +++ b/src/licensedcode/data/rules/mit_and_proprietary-license_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit AND proprietary-license +is_license_notice: yes +--- + License The code of Python Library is released under the MIT License. There is no limitation for both academic and commercial usage. The pretrained models we provided with this library are available for non-commercial research purposes only, diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_5.yml b/src/licensedcode/data/rules/mit_and_proprietary-license_5.yml deleted file mode 100644 index 308643d1198..00000000000 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit AND proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_6.RULE b/src/licensedcode/data/rules/mit_and_proprietary-license_6.RULE index 13c6cd6c1ac..ee728d77e2e 100644 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_6.RULE +++ b/src/licensedcode/data/rules/mit_and_proprietary-license_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit AND proprietary-license +is_license_text: yes +notes: https://github.com/DataJuggler/DataTier.Net/blob/e475497ae3083976694bb7080454cffe14cfca29/License/License.txt +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_6.yml b/src/licensedcode/data/rules/mit_and_proprietary-license_6.yml deleted file mode 100644 index 3467bf55253..00000000000 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND proprietary-license -is_license_text: yes -notes: https://github.com/DataJuggler/DataTier.Net/blob/e475497ae3083976694bb7080454cffe14cfca29/License/License.txt diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_7.RULE b/src/licensedcode/data/rules/mit_and_proprietary-license_7.RULE index 36be162ac31..7a364d3f51a 100644 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_7.RULE +++ b/src/licensedcode/data/rules/mit_and_proprietary-license_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit AND proprietary-license +is_license_notice: yes +notes: https://github.com/DataJuggler/ImageSorter/pull/1/files +--- + YouTube Subscriber License - Derived from MIT License with a clause: You agree that if you find this project useful, you agree to subscribe to my channel, and stay subscribed, and to star this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_proprietary-license_7.yml b/src/licensedcode/data/rules/mit_and_proprietary-license_7.yml deleted file mode 100644 index 94db2f7f849..00000000000 --- a/src/licensedcode/data/rules/mit_and_proprietary-license_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND proprietary-license -is_license_notice: yes -notes: https://github.com/DataJuggler/ImageSorter/pull/1/files diff --git a/src/licensedcode/data/rules/mit_and_ruby_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/mit_and_ruby_or_gpl-2.0_1.RULE index 795b697eed0..4ba54931bb9 100644 --- a/src/licensedcode/data/rules/mit_and_ruby_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_ruby_or_gpl-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit AND (ruby OR gpl-2.0) +is_license_notice: yes +minimum_coverage: 90 +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.jp +--- + All the files in this distribution are covered under either the MIT license (see the file LICENSE) except some files mentioned below. @@ -42,4 +52,4 @@ This file is under the Ruby license. uses a modified version of it. 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. + PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_ruby_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/mit_and_ruby_or_gpl-2.0_1.yml deleted file mode 100644 index c1df2e58977..00000000000 --- a/src/licensedcode/data/rules/mit_and_ruby_or_gpl-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit AND (ruby OR gpl-2.0) -is_license_notice: yes -minimum_coverage: 90 -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.jp diff --git a/src/licensedcode/data/rules/mit_and_unicode_1.RULE b/src/licensedcode/data/rules/mit_and_unicode_1.RULE index 3872590a902..94b89f4f82d 100644 --- a/src/licensedcode/data/rules/mit_and_unicode_1.RULE +++ b/src/licensedcode/data/rules/mit_and_unicode_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: mit AND unicode +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.unicode.org/copyright.html#Exhibit1 +--- + package is licensed under the free/open-source [MIT "expat" license](http://opensource.org/licenses/MIT) (plus certain Unicode diff --git a/src/licensedcode/data/rules/mit_and_unicode_1.yml b/src/licensedcode/data/rules/mit_and_unicode_1.yml deleted file mode 100644 index 364262e09a0..00000000000 --- a/src/licensedcode/data/rules/mit_and_unicode_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit AND unicode -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.unicode.org/copyright.html#Exhibit1 diff --git a/src/licensedcode/data/rules/mit_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/mit_and_unknown-license-reference_1.RULE index 28fce174e64..ce85c6434bb 100644 --- a/src/licensedcode/data/rules/mit_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/mit_and_unknown-license-reference_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + software is mostly under the MIT license. Check individual source files for license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/mit_and_unknown-license-reference_1.yml deleted file mode 100644 index 5e7ef715557..00000000000 --- a/src/licensedcode/data/rules/mit_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_unknown-license-reference_2.RULE b/src/licensedcode/data/rules/mit_and_unknown-license-reference_2.RULE index a13bd9b7dd8..fd778f64220 100644 --- a/src/licensedcode/data/rules/mit_and_unknown-license-reference_2.RULE +++ b/src/licensedcode/data/rules/mit_and_unknown-license-reference_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit AND unknown-license-reference +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_and_unknown-license-reference_2.yml b/src/licensedcode/data/rules/mit_and_unknown-license-reference_2.yml deleted file mode 100644 index f5558ccad50..00000000000 --- a/src/licensedcode/data/rules/mit_and_unknown-license-reference_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit AND unknown-license-reference -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/mit_and_unknown_nuget_url_1.RULE b/src/licensedcode/data/rules/mit_and_unknown_nuget_url_1.RULE index 79d38890c9d..e489617f721 100644 --- a/src/licensedcode/data/rules/mit_and_unknown_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/mit_and_unknown_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit AND unknown +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jvdgeest/chesterfield/blob/master/LICENSE +--- + https://github.com/jvdgeest/chesterfield/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_unknown_nuget_url_1.yml b/src/licensedcode/data/rules/mit_and_unknown_nuget_url_1.yml deleted file mode 100644 index e4b92f19bb7..00000000000 --- a/src/licensedcode/data/rules/mit_and_unknown_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND unknown -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jvdgeest/chesterfield/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_and_wtfpl-2.0_1.RULE b/src/licensedcode/data/rules/mit_and_wtfpl-2.0_1.RULE index 825320e0bf6..fd521d3a7ff 100644 --- a/src/licensedcode/data/rules/mit_and_wtfpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_and_wtfpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit AND wtfpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.wtfpl.net/txt/copying/ +--- + license: license: MIT type: WTFPL diff --git a/src/licensedcode/data/rules/mit_and_wtfpl-2.0_1.yml b/src/licensedcode/data/rules/mit_and_wtfpl-2.0_1.yml deleted file mode 100644 index d97b8753db6..00000000000 --- a/src/licensedcode/data/rules/mit_and_wtfpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND wtfpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.wtfpl.net/txt/copying/ diff --git a/src/licensedcode/data/rules/mit_and_zlib_1.RULE b/src/licensedcode/data/rules/mit_and_zlib_1.RULE index 439e457afff..0369675a262 100644 --- a/src/licensedcode/data/rules/mit_and_zlib_1.RULE +++ b/src/licensedcode/data/rules/mit_and_zlib_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND zlib +is_license_tag: yes +relevance: 100 +--- + license": "(MIT AND Zlib) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_zlib_1.yml b/src/licensedcode/data/rules/mit_and_zlib_1.yml deleted file mode 100644 index 342495d8152..00000000000 --- a/src/licensedcode/data/rules/mit_and_zlib_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND zlib -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_zlib_2.RULE b/src/licensedcode/data/rules/mit_and_zlib_2.RULE index e36341a4523..0a8ef79a3e8 100644 --- a/src/licensedcode/data/rules/mit_and_zlib_2.RULE +++ b/src/licensedcode/data/rules/mit_and_zlib_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit AND zlib +is_license_tag: yes +relevance: 100 +--- + License: Expat and Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_zlib_2.yml b/src/licensedcode/data/rules/mit_and_zlib_2.yml deleted file mode 100644 index 342495d8152..00000000000 --- a/src/licensedcode/data/rules/mit_and_zlib_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit AND zlib -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_and_zlib_nuget_url_1.RULE b/src/licensedcode/data/rules/mit_and_zlib_nuget_url_1.RULE index 11affa3e6eb..a8e45482bab 100644 --- a/src/licensedcode/data/rules/mit_and_zlib_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/mit_and_zlib_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit AND zlib +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/TomCrypto/AntTweakBar.NET/master/LICENSE +--- + https://raw.githubusercontent.com/TomCrypto/AntTweakBar.NET/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_and_zlib_nuget_url_1.yml b/src/licensedcode/data/rules/mit_and_zlib_nuget_url_1.yml deleted file mode 100644 index 9c8b035f71e..00000000000 --- a/src/licensedcode/data/rules/mit_and_zlib_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit AND zlib -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/TomCrypto/AntTweakBar.NET/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_atomic.RULE b/src/licensedcode/data/rules/mit_atomic.RULE index 6bac527d162..6a42a122430 100644 --- a/src/licensedcode/data/rules/mit_atomic.RULE +++ b/src/licensedcode/data/rules/mit_atomic.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License -Licensed under the MIT, see LICENSE. +Licensed under the MIT, see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_atomic.yml b/src/licensedcode/data/rules/mit_atomic.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_atomic.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_augur.RULE b/src/licensedcode/data/rules/mit_augur.RULE index 98a076efd91..7fc9dc18f69 100644 --- a/src/licensedcode/data/rules/mit_augur.RULE +++ b/src/licensedcode/data/rules/mit_augur.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is free software: you can redistribute it and/or modify it under the terms of the MIT License as published by the Open Source Initiative. See the file LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_augur.yml b/src/licensedcode/data/rules/mit_augur.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_augur.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_by_request.RULE b/src/licensedcode/data/rules/mit_by_request.RULE index e5934d37ece..57aa10b7cde 100644 --- a/src/licensedcode/data/rules/mit_by_request.RULE +++ b/src/licensedcode/data/rules/mit_by_request.RULE @@ -1 +1,7 @@ -licensed under MIT by request to the author \ No newline at end of file +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +licensed under MIT by request to the author \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_by_request.yml b/src/licensedcode/data/rules/mit_by_request.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_by_request.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.RULE index 239def40ccf..857a4b11e1c 100644 --- a/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +--- + To the extend files may be licensed under MIT or GPL v2, in this context MIT has been chosen. This shall not restrict the freedom of future contributors to choose either MIT or GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.yml deleted file mode 100644 index 4cf14284c2c..00000000000 --- a/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_dist.RULE b/src/licensedcode/data/rules/mit_dist.RULE index 088593af378..90b1c000825 100644 --- a/src/licensedcode/data/rules/mit_dist.RULE +++ b/src/licensedcode/data/rules/mit_dist.RULE @@ -1 +1,7 @@ -Distributed under the terms of MIT License. +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Distributed under the terms of MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_dist.yml b/src/licensedcode/data/rules/mit_dist.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_dist.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_doctrine.RULE b/src/licensedcode/data/rules/mit_doctrine.RULE index e1d25d9da5b..23d7297022e 100644 --- a/src/licensedcode/data/rules/mit_doctrine.RULE +++ b/src/licensedcode/data/rules/mit_doctrine.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 100 +minimum_coverage: 98 +notes: weird MIT BSD-like looking disclaimer found in the doctrine PHP ORM +--- + 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 @@ -11,4 +19,4 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This software consists of voluntary contributions made by many individuals -and is licensed under the MIT license. \ No newline at end of file +and is licensed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_doctrine.yml b/src/licensedcode/data/rules/mit_doctrine.yml deleted file mode 100644 index 500b3a61a1e..00000000000 --- a/src/licensedcode/data/rules/mit_doctrine.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 100 -minimum_coverage: 98 -notes: weird MIT BSD-like looking disclaimer found in the doctrine PHP ORM diff --git a/src/licensedcode/data/rules/mit_file.RULE b/src/licensedcode/data/rules/mit_file.RULE index 9b21d9f5419..37738eea3f7 100644 --- a/src/licensedcode/data/rules/mit_file.RULE +++ b/src/licensedcode/data/rules/mit_file.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + is released under the terms of the MIT license. Full details in LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_file.yml b/src/licensedcode/data/rules/mit_file.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_file.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_file2.RULE b/src/licensedcode/data/rules/mit_file2.RULE index 0d28d069c78..0afb02c4523 100644 --- a/src/licensedcode/data/rules/mit_file2.RULE +++ b/src/licensedcode/data/rules/mit_file2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license is released under the terms of the MIT license. Full details in LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_file2.yml b/src/licensedcode/data/rules/mit_file2.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/src/licensedcode/data/rules/mit_file2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_fluendo.RULE b/src/licensedcode/data/rules/mit_fluendo.RULE index 98c4800d8a0..4d5a6359122 100644 --- a/src/licensedcode/data/rules/mit_fluendo.RULE +++ b/src/licensedcode/data/rules/mit_fluendo.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License: -Unless otherwise indicated, Source Code is licensed under MIT license. +Unless otherwise indicated, Source Code is licensed under MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fluendo.yml b/src/licensedcode/data/rules/mit_fluendo.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_fluendo.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_fluendo1.RULE b/src/licensedcode/data/rules/mit_fluendo1.RULE index b7d1f443bea..7df23836dae 100644 --- a/src/licensedcode/data/rules/mit_fluendo1.RULE +++ b/src/licensedcode/data/rules/mit_fluendo1.RULE @@ -1 +1,7 @@ -Unless otherwise indicated, Source Code is licensed under MIT license. +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +Unless otherwise indicated, Source Code is licensed under MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fluendo1.yml b/src/licensedcode/data/rules/mit_fluendo1.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_fluendo1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_fluendo2.RULE b/src/licensedcode/data/rules/mit_fluendo2.RULE index e01d17769a8..c32eef4aa02 100644 --- a/src/licensedcode/data/rules/mit_fluendo2.RULE +++ b/src/licensedcode/data/rules/mit_fluendo2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + Unless otherwise indicated, Source Code is licensed under MIT license. See -further explanation below, under "MIT license Statements \ No newline at end of file +further explanation below, under "MIT license Statements \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fluendo2.yml b/src/licensedcode/data/rules/mit_fluendo2.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_fluendo2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_fluendo4.RULE b/src/licensedcode/data/rules/mit_fluendo4.RULE index 44db3fafd52..483302ddafc 100644 --- a/src/licensedcode/data/rules/mit_fluendo4.RULE +++ b/src/licensedcode/data/rules/mit_fluendo4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit +is_license_notice: yes +notes: this is a rather contrived project-specific notice +ignorable_copyrights: + - Copyright 2005 Fluendo, S.L. +ignorable_holders: + - Fluendo, S.L. +--- + Intel Performance Primitives library source code @@ -89,4 +99,4 @@ infringe any patents or other industrial or intellectual property rights, Fluendo hereby disclaims any liability for any patent infringement that may be claimed to you or to any other person from any legitimate right's owner, as stated in MIT license. So it is your responsibility to get information and to -acquire the necessary patent licenses to undertake your activities legally. +acquire the necessary patent licenses to undertake your activities legally. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fluendo4.yml b/src/licensedcode/data/rules/mit_fluendo4.yml deleted file mode 100644 index 3ea3050d04f..00000000000 --- a/src/licensedcode/data/rules/mit_fluendo4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit -is_license_notice: yes -notes: this is a rather contrived project-specific notice -ignorable_copyrights: - - Copyright 2005 Fluendo, S.L. -ignorable_holders: - - Fluendo, S.L. diff --git a/src/licensedcode/data/rules/mit_fr_1.RULE b/src/licensedcode/data/rules/mit_fr_1.RULE index 9231adbade3..4e2a0228f3b 100644 --- a/src/licensedcode/data/rules/mit_fr_1.RULE +++ b/src/licensedcode/data/rules/mit_fr_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +language: fr +is_license_notice: yes +relevance: 100 +notes: https://github.com/GouvernementFR/dsfr/blob/a734e4093658f1eae8bc1757652cb967604ad219/LICENSE.md +--- + placé sous licence MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fr_1.yml b/src/licensedcode/data/rules/mit_fr_1.yml deleted file mode 100644 index bec1c9b87d5..00000000000 --- a/src/licensedcode/data/rules/mit_fr_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -language: fr -is_license_notice: yes -relevance: 100 -notes: https://github.com/GouvernementFR/dsfr/blob/a734e4093658f1eae8bc1757652cb967604ad219/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_freely.RULE b/src/licensedcode/data/rules/mit_freely.RULE index e7470b7414c..2fbf18b7df8 100644 --- a/src/licensedcode/data/rules/mit_freely.RULE +++ b/src/licensedcode/data/rules/mit_freely.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + freely distributable under the terms of the MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_freely.yml b/src/licensedcode/data/rules/mit_freely.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_freely.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_ibm2.RULE b/src/licensedcode/data/rules/mit_ibm2.RULE index 1d73cc9cbfb..8d64ae710ae 100644 --- a/src/licensedcode/data/rules/mit_ibm2.RULE +++ b/src/licensedcode/data/rules/mit_ibm2.RULE @@ -1,5 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + This project is licensed under the MIT License, full text below. -------- -MIT license +MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_ibm2.yml b/src/licensedcode/data/rules/mit_ibm2.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_ibm2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_ibm3.RULE b/src/licensedcode/data/rules/mit_ibm3.RULE index 760aa6b6f2a..a15f3f1f94d 100644 --- a/src/licensedcode/data/rules/mit_ibm3.RULE +++ b/src/licensedcode/data/rules/mit_ibm3.RULE @@ -1 +1,7 @@ -This project is licensed under the MIT License, full text below. +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +This project is licensed under the MIT License, full text below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_ibm3.yml b/src/licensedcode/data/rules/mit_ibm3.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_ibm3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_in_npm_1.RULE b/src/licensedcode/data/rules/mit_in_npm_1.RULE index 73ca22b516b..7833da8ab58 100644 --- a/src/licensedcode/data/rules/mit_in_npm_1.RULE +++ b/src/licensedcode/data/rules/mit_in_npm_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + licenses": "type": "MIT", -"url": "http://opensource.org/licenses/MIT" +"url": "http://opensource.org/licenses/MIT" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_in_npm_1.yml b/src/licensedcode/data/rules/mit_in_npm_1.yml deleted file mode 100644 index 7b82c119884..00000000000 --- a/src/licensedcode/data/rules/mit_in_npm_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_jquery_url.RULE b/src/licensedcode/data/rules/mit_jquery_url.RULE index 0cdae6e0d4f..ca8669cdae1 100644 --- a/src/licensedcode/data/rules/mit_jquery_url.RULE +++ b/src/licensedcode/data/rules/mit_jquery_url.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 80 +notes: nowadays this is an MIT license. Before this was a choice of MIT or GPL-2.0 +ignorable_urls: + - http://jquery.org/license +--- + http://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_jquery_url.yml b/src/licensedcode/data/rules/mit_jquery_url.yml deleted file mode 100644 index 65ae3a95724..00000000000 --- a/src/licensedcode/data/rules/mit_jquery_url.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 80 -notes: nowadays this is an MIT license. Before this was a choice of MIT or GPL-2.0 -ignorable_urls: - - http://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_jquery_url2.RULE b/src/licensedcode/data/rules/mit_jquery_url2.RULE index b632acea3e1..b69a3f51de0 100644 --- a/src/licensedcode/data/rules/mit_jquery_url2.RULE +++ b/src/licensedcode/data/rules/mit_jquery_url2.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 80 +notes: nowadays this is an MIT license. Before this was a choice of MIT or GPL-2.0 +ignorable_urls: + - https://jquery.org/license +--- + https://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_jquery_url2.yml b/src/licensedcode/data/rules/mit_jquery_url2.yml deleted file mode 100644 index d606de8561f..00000000000 --- a/src/licensedcode/data/rules/mit_jquery_url2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 80 -notes: nowadays this is an MIT license. Before this was a choice of MIT or GPL-2.0 -ignorable_urls: - - https://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_k.RULE b/src/licensedcode/data/rules/mit_k.RULE index 070e8632888..926164e4eba 100644 --- a/src/licensedcode/data/rules/mit_k.RULE +++ b/src/licensedcode/data/rules/mit_k.RULE @@ -1 +1,7 @@ -# This file is part of which is licensed under the MIT. +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + +# This file is part of which is licensed under the MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_k.yml b/src/licensedcode/data/rules/mit_k.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_k.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_license-reference_58.RULE b/src/licensedcode/data/rules/mit_license-reference_58.RULE index 0aa7ec39e79..d2cb03c3a21 100644 --- a/src/licensedcode/data/rules/mit_license-reference_58.RULE +++ b/src/licensedcode/data/rules/mit_license-reference_58.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - lua.h +--- + ** Lua standard libraries ** See Copyright Notice in lua.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_license-reference_58.yml b/src/licensedcode/data/rules/mit_license-reference_58.yml deleted file mode 100644 index 6c7fa0a8a96..00000000000 --- a/src/licensedcode/data/rules/mit_license-reference_58.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - lua.h diff --git a/src/licensedcode/data/rules/mit_license.RULE b/src/licensedcode/data/rules/mit_license.RULE index 244893004ce..9e572e6768f 100644 --- a/src/licensedcode/data/rules/mit_license.RULE +++ b/src/licensedcode/data/rules/mit_license.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license: MIT License, see LICENSE for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_license.yml b/src/licensedcode/data/rules/mit_license.yml deleted file mode 100644 index ef5356012d6..00000000000 --- a/src/licensedcode/data/rules/mit_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_licensed.RULE b/src/licensedcode/data/rules/mit_licensed.RULE index 13e382f0113..2f6776cdb62 100644 --- a/src/licensedcode/data/rules/mit_licensed.RULE +++ b/src/licensedcode/data/rules/mit_licensed.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +--- + an MIT-licensed project \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_licensed.yml b/src/licensedcode/data/rules/mit_licensed.yml deleted file mode 100644 index e8f5d4a2f60..00000000000 --- a/src/licensedcode/data/rules/mit_licensed.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_licensed2.RULE b/src/licensedcode/data/rules/mit_licensed2.RULE index eb3e9cde15f..a64f0fc79a0 100644 --- a/src/licensedcode/data/rules/mit_licensed2.RULE +++ b/src/licensedcode/data/rules/mit_licensed2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + ## License -[MIT License](https://opensource.org/licenses/MIT) +[MIT License](https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_licensed2.yml b/src/licensedcode/data/rules/mit_licensed2.yml deleted file mode 100644 index 4b88a913a72..00000000000 --- a/src/licensedcode/data/rules/mit_licensed2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_nfa.RULE b/src/licensedcode/data/rules/mit_nfa.RULE index 304fe536f4b..3fffda1a864 100644 --- a/src/licensedcode/data/rules/mit_nfa.RULE +++ b/src/licensedcode/data/rules/mit_nfa.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-no-false-attribs +is_license_notice: yes +--- + MIT +no-false-attribs License Permission is hereby granted, free of charge, to any person @@ -33,4 +38,4 @@ OTHER DEALINGS IN THE SOFTWARE. Except where noted, this license applies to any and all software programs and associated documentation files created by the -Original Author, when distributed with the Software. +Original Author, when distributed with the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nfa.yml b/src/licensedcode/data/rules/mit_nfa.yml deleted file mode 100644 index f9f60f1e870..00000000000 --- a/src/licensedcode/data/rules/mit_nfa.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_not_apache-2.0.RULE b/src/licensedcode/data/rules/mit_not_apache-2.0.RULE index a900d0232e1..b186f5f14d8 100644 --- a/src/licensedcode/data/rules/mit_not_apache-2.0.RULE +++ b/src/licensedcode/data/rules/mit_not_apache-2.0.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit +is_license_notice: yes +notes: appears to use an Apache 2.0 template, replacing Apache references with MIT references +ignorable_urls: + - http://opensource.org/licenses/MIT +--- + Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_not_apache-2.0.yml b/src/licensedcode/data/rules/mit_not_apache-2.0.yml deleted file mode 100644 index a7d0232270e..00000000000 --- a/src/licensedcode/data/rules/mit_not_apache-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -notes: appears to use an Apache 2.0 template, replacing Apache references with MIT references -ignorable_urls: - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_not_unknown_1.RULE b/src/licensedcode/data/rules/mit_not_unknown_1.RULE index a1e57edfbb1..86de6397bad 100644 --- a/src/licensedcode/data/rules/mit_not_unknown_1.RULE +++ b/src/licensedcode/data/rules/mit_not_unknown_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: seen in https://crypto.stanford.edu/sjcl/ Per https://github.com/WouterBos/Codeview/blob/master/license.txt + the license is MIT +--- + Codeview is "free for download" but has no license attached \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_not_unknown_1.yml b/src/licensedcode/data/rules/mit_not_unknown_1.yml deleted file mode 100644 index 73dcd1b7097..00000000000 --- a/src/licensedcode/data/rules/mit_not_unknown_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: seen in https://crypto.stanford.edu/sjcl/ Per https://github.com/WouterBos/Codeview/blob/master/license.txt - the license is MIT diff --git a/src/licensedcode/data/rules/mit_nuget_url_1.RULE b/src/licensedcode/data/rules/mit_nuget_url_1.RULE index 72c2c30f6a2..46c06fa8fdd 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/danielcrenna/vault/blob/master/dates/LICENSE +--- + https://github.com/danielcrenna/vault/blob/master/dates/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_1.yml b/src/licensedcode/data/rules/mit_nuget_url_1.yml deleted file mode 100644 index 6c8b5181fdf..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/danielcrenna/vault/blob/master/dates/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_10.RULE b/src/licensedcode/data/rules/mit_nuget_url_10.RULE index c7a928309bf..217cfb2371e 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_10.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/hhalim/Shift/blob/master/LICENSE.TXT +--- + https://github.com/hhalim/Shift/blob/master/LICENSE.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_10.yml b/src/licensedcode/data/rules/mit_nuget_url_10.yml deleted file mode 100644 index 70e0d437634..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/hhalim/Shift/blob/master/LICENSE.TXT diff --git a/src/licensedcode/data/rules/mit_nuget_url_100.RULE b/src/licensedcode/data/rules/mit_nuget_url_100.RULE index 8183c636052..e4aba55870f 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_100.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_100.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/SaladLab/Akka.Cluster.Utility/master/LICENSE +--- + https://raw.githubusercontent.com/SaladLab/Akka.Cluster.Utility/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_100.yml b/src/licensedcode/data/rules/mit_nuget_url_100.yml deleted file mode 100644 index 798c48451a1..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/SaladLab/Akka.Cluster.Utility/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_101.RULE b/src/licensedcode/data/rules/mit_nuget_url_101.RULE index bc5329c6184..92196e92bb0 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_101.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_101.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/SaladLab/Akka.Interfaced.SlimSocket/master/LICENSE +--- + https://raw.githubusercontent.com/SaladLab/Akka.Interfaced.SlimSocket/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_101.yml b/src/licensedcode/data/rules/mit_nuget_url_101.yml deleted file mode 100644 index 49fabc5683e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/SaladLab/Akka.Interfaced.SlimSocket/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_102.RULE b/src/licensedcode/data/rules/mit_nuget_url_102.RULE index 7038ea63e99..835b7eb2d49 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_102.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_102.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/SaladLab/UniGet/master/LICENSE +--- + https://raw.githubusercontent.com/SaladLab/UniGet/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_102.yml b/src/licensedcode/data/rules/mit_nuget_url_102.yml deleted file mode 100644 index 804b3608497..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/SaladLab/UniGet/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_103.RULE b/src/licensedcode/data/rules/mit_nuget_url_103.RULE index 0e74265326a..bb6715e1da7 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_103.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_103.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/seatsio/seatsio-dotnet/master/LICENSE +--- + https://raw.githubusercontent.com/seatsio/seatsio-dotnet/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_103.yml b/src/licensedcode/data/rules/mit_nuget_url_103.yml deleted file mode 100644 index 9e4f67f5fc1..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/seatsio/seatsio-dotnet/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_104.RULE b/src/licensedcode/data/rules/mit_nuget_url_104.RULE index 463b75212f5..b1b7c54d2a7 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_104.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_104.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/SharpTools/SharpEventGrid/master/LICENSE +--- + https://raw.githubusercontent.com/SharpTools/SharpEventGrid/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_104.yml b/src/licensedcode/data/rules/mit_nuget_url_104.yml deleted file mode 100644 index 9d3574de848..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_104.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/SharpTools/SharpEventGrid/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_105.RULE b/src/licensedcode/data/rules/mit_nuget_url_105.RULE index c2b8be67786..fbcbaef69c5 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_105.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_105.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/skthomasjr/NetClient/master/LICENSE.md +--- + https://raw.githubusercontent.com/skthomasjr/NetClient/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_105.yml b/src/licensedcode/data/rules/mit_nuget_url_105.yml deleted file mode 100644 index 561ec4a8c66..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/skthomasjr/NetClient/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_106.RULE b/src/licensedcode/data/rules/mit_nuget_url_106.RULE index e5ba0eb887f..8b8906600bf 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_106.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_106.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/Smartrak/Smartrak.Library/master/LICENSE +--- + https://raw.githubusercontent.com/Smartrak/Smartrak.Library/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_106.yml b/src/licensedcode/data/rules/mit_nuget_url_106.yml deleted file mode 100644 index a9c263e0f4a..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_106.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/Smartrak/Smartrak.Library/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_107.RULE b/src/licensedcode/data/rules/mit_nuget_url_107.RULE index da965423a3f..6b044c451ec 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_107.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_107.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/tbrushwyler/Xamarin.BluetoothLE/master/LICENSE.md +--- + https://raw.githubusercontent.com/tbrushwyler/Xamarin.BluetoothLE/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_107.yml b/src/licensedcode/data/rules/mit_nuget_url_107.yml deleted file mode 100644 index e8db2e3c124..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/tbrushwyler/Xamarin.BluetoothLE/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_108.RULE b/src/licensedcode/data/rules/mit_nuget_url_108.RULE index 362399cf0ae..f438e25ecb5 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_108.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_108.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/tintoy/HTTPlease/development/r1.0/LICENSE +--- + https://raw.githubusercontent.com/tintoy/HTTPlease/development/r1.0/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_108.yml b/src/licensedcode/data/rules/mit_nuget_url_108.yml deleted file mode 100644 index 5ebc3d61e3a..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/tintoy/HTTPlease/development/r1.0/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_109.RULE b/src/licensedcode/data/rules/mit_nuget_url_109.RULE index d585a012515..a374fcc4142 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_109.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_109.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/topnguyen/Elect/master/LICENSE +--- + https://raw.githubusercontent.com/topnguyen/Elect/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_109.yml b/src/licensedcode/data/rules/mit_nuget_url_109.yml deleted file mode 100644 index 8d42777f902..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/topnguyen/Elect/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_11.RULE b/src/licensedcode/data/rules/mit_nuget_url_11.RULE index cd64a7a30cf..d1a74fa0cf7 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_11.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/indice-co/Indice.AspNet/blob/master/LICENSE +--- + https://github.com/indice-co/Indice.AspNet/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_11.yml b/src/licensedcode/data/rules/mit_nuget_url_11.yml deleted file mode 100644 index bb4158f4dbc..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/indice-co/Indice.AspNet/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_110.RULE b/src/licensedcode/data/rules/mit_nuget_url_110.RULE index e9df422591c..e8383dae203 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_110.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_110.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/xhafan/coreddd/master/LICENSE +--- + https://raw.githubusercontent.com/xhafan/coreddd/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_110.yml b/src/licensedcode/data/rules/mit_nuget_url_110.yml deleted file mode 100644 index 4681900f4d3..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/xhafan/coreddd/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_111.RULE b/src/licensedcode/data/rules/mit_nuget_url_111.RULE index e087940eb6f..23582b42e16 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_111.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_111.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/acraven/service-bus/blob/master/LICENSE +--- + https://github.com/acraven/service-bus/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_111.yml b/src/licensedcode/data/rules/mit_nuget_url_111.yml deleted file mode 100644 index 8d6e75849bc..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/acraven/service-bus/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_112.RULE b/src/licensedcode/data/rules/mit_nuget_url_112.RULE index 75de736fac1..0c8aaee8615 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_112.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_112.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/albumprinter/Albelli.Extensions.Configuration.AmazonEC2ParameterStore/blob/master/LICENSE +--- + https://github.com/albumprinter/Albelli.Extensions.Configuration.AmazonEC2ParameterStore/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_112.yml b/src/licensedcode/data/rules/mit_nuget_url_112.yml deleted file mode 100644 index a00ad639f81..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/albumprinter/Albelli.Extensions.Configuration.AmazonEC2ParameterStore/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_113.RULE b/src/licensedcode/data/rules/mit_nuget_url_113.RULE index aaec0b37f3a..24f89c60197 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_113.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_113.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/aloneguid/logmagic/blob/master/LICENSE +--- + https://github.com/aloneguid/logmagic/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_113.yml b/src/licensedcode/data/rules/mit_nuget_url_113.yml deleted file mode 100644 index d17be634258..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_113.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/aloneguid/logmagic/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_114.RULE b/src/licensedcode/data/rules/mit_nuget_url_114.RULE index bd558309318..47e46e21072 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_114.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_114.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/anfomin/rayguncore/blob/master/LICENSE +--- + https://github.com/anfomin/rayguncore/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_114.yml b/src/licensedcode/data/rules/mit_nuget_url_114.yml deleted file mode 100644 index 236e04cdfc9..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/anfomin/rayguncore/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_115.RULE b/src/licensedcode/data/rules/mit_nuget_url_115.RULE index 5b1d7c8fffa..02f7c88f023 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_115.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_115.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/anthonyreilly/NetCoreForce/blob/master/LICENSE.md +--- + https://github.com/anthonyreilly/NetCoreForce/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_115.yml b/src/licensedcode/data/rules/mit_nuget_url_115.yml deleted file mode 100644 index 6c77b9afc4a..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/anthonyreilly/NetCoreForce/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_116.RULE b/src/licensedcode/data/rules/mit_nuget_url_116.RULE index 58fa1302726..90ad1e91e01 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_116.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_116.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Aragas/Aragas.Network-2/blob/master/LICENSE +--- + https://github.com/Aragas/Aragas.Network-2/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_116.yml b/src/licensedcode/data/rules/mit_nuget_url_116.yml deleted file mode 100644 index 4ced09be039..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Aragas/Aragas.Network-2/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_117.RULE b/src/licensedcode/data/rules/mit_nuget_url_117.RULE index 5ce80da9465..b7043acb215 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_117.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_117.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Aragas/PCLExt.FileStorage/blob/master/LICENSE +--- + https://github.com/Aragas/PCLExt.FileStorage/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_117.yml b/src/licensedcode/data/rules/mit_nuget_url_117.yml deleted file mode 100644 index a81f969db2d..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Aragas/PCLExt.FileStorage/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_118.RULE b/src/licensedcode/data/rules/mit_nuget_url_118.RULE index e05f98cf119..f034dd32ef0 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_118.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_118.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ArtofQuality/F2F.Testing/blob/master/LICENSE.txt +--- + https://github.com/ArtofQuality/F2F.Testing/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_118.yml b/src/licensedcode/data/rules/mit_nuget_url_118.yml deleted file mode 100644 index b6263e94aad..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_118.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ArtofQuality/F2F.Testing/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_119.RULE b/src/licensedcode/data/rules/mit_nuget_url_119.RULE index 6f8a8346748..b0698435f0f 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_119.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_119.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/aspnetde/MvvmNano/blob/master/LICENSE +--- + https://github.com/aspnetde/MvvmNano/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_119.yml b/src/licensedcode/data/rules/mit_nuget_url_119.yml deleted file mode 100644 index c42a1fd3383..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_119.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/aspnetde/MvvmNano/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_12.RULE b/src/licensedcode/data/rules/mit_nuget_url_12.RULE index 41c46e4b8b4..3727f8b10f7 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_12.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_12.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jaykang920/x2clr/blob/master/LICENSE +--- + https://github.com/jaykang920/x2clr/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_12.yml b/src/licensedcode/data/rules/mit_nuget_url_12.yml deleted file mode 100644 index ca3634056f8..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jaykang920/x2clr/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_120.RULE b/src/licensedcode/data/rules/mit_nuget_url_120.RULE index cbfa5476260..353529e1054 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_120.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_120.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ayberkcanturk/Dapper.TableValuedParameter/blob/master/LICENSE +--- + https://github.com/ayberkcanturk/Dapper.TableValuedParameter/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_120.yml b/src/licensedcode/data/rules/mit_nuget_url_120.yml deleted file mode 100644 index cb7bd7c63cd..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ayberkcanturk/Dapper.TableValuedParameter/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_121.RULE b/src/licensedcode/data/rules/mit_nuget_url_121.RULE index f9fafaf242d..f891e1a1c50 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_121.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_121.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/bernarden/Ensure.Net/blob/master/LICENSE +--- + https://github.com/bernarden/Ensure.Net/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_121.yml b/src/licensedcode/data/rules/mit_nuget_url_121.yml deleted file mode 100644 index c871ce3298b..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_121.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/bernarden/Ensure.Net/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_122.RULE b/src/licensedcode/data/rules/mit_nuget_url_122.RULE index 35a3b426421..36f2a6fecf1 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_122.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_122.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/c3-ls/ServiceFabric-Http/blob/master/LICENSE +--- + https://github.com/c3-ls/ServiceFabric-Http/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_122.yml b/src/licensedcode/data/rules/mit_nuget_url_122.yml deleted file mode 100644 index 19a3562bece..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_122.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/c3-ls/ServiceFabric-Http/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_123.RULE b/src/licensedcode/data/rules/mit_nuget_url_123.RULE index 8f36729952d..1fd756ad676 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_123.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_123.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/carbon/Amazon/blob/master/LICENSE +--- + https://github.com/carbon/Amazon/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_123.yml b/src/licensedcode/data/rules/mit_nuget_url_123.yml deleted file mode 100644 index 5224e7cca3a..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/carbon/Amazon/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_124.RULE b/src/licensedcode/data/rules/mit_nuget_url_124.RULE index 6aeecf3c3ef..055725fe5a8 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_124.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_124.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/cgross/angular-prompt/blob/master/LICENSE +--- + https://github.com/cgross/angular-prompt/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_124.yml b/src/licensedcode/data/rules/mit_nuget_url_124.yml deleted file mode 100644 index 2e47e15b164..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_124.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/cgross/angular-prompt/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_125.RULE b/src/licensedcode/data/rules/mit_nuget_url_125.RULE index 6efb6330aae..05ff070c225 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_125.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_125.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/CheetahJS/CheetahJS/blob/master/LICENSE +--- + https://github.com/CheetahJS/CheetahJS/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_125.yml b/src/licensedcode/data/rules/mit_nuget_url_125.yml deleted file mode 100644 index 4d459002725..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_125.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/CheetahJS/CheetahJS/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_126.RULE b/src/licensedcode/data/rules/mit_nuget_url_126.RULE index d47e2e4edb6..2abf542281d 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_126.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_126.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Cinchoo/ChoETL/blob/master/LICENSE +--- + https://github.com/Cinchoo/ChoETL/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_126.yml b/src/licensedcode/data/rules/mit_nuget_url_126.yml deleted file mode 100644 index d6c0b440057..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_126.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Cinchoo/ChoETL/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_127.RULE b/src/licensedcode/data/rules/mit_nuget_url_127.RULE index c488792715a..32cef8b8b61 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_127.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_127.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Cinchoo/ChoETL.NACHA/blob/master/LICENSE +--- + https://github.com/Cinchoo/ChoETL.NACHA/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_127.yml b/src/licensedcode/data/rules/mit_nuget_url_127.yml deleted file mode 100644 index 293c59cc57d..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Cinchoo/ChoETL.NACHA/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_128.RULE b/src/licensedcode/data/rules/mit_nuget_url_128.RULE index 149cd4fa58f..259257a8630 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_128.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_128.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/coapp-packages/libffi/blob/master/LICENSE +--- + https://github.com/coapp-packages/libffi/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_128.yml b/src/licensedcode/data/rules/mit_nuget_url_128.yml deleted file mode 100644 index 8e2ce8729f9..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_128.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/coapp-packages/libffi/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_129.RULE b/src/licensedcode/data/rules/mit_nuget_url_129.RULE index 872410434af..a17d5809ce8 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_129.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_129.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/craftworkgames/Astrid.Framework/blob/master/LICENSE.txt +--- + https://github.com/craftworkgames/Astrid.Framework/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_129.yml b/src/licensedcode/data/rules/mit_nuget_url_129.yml deleted file mode 100644 index 8f64009fee8..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/craftworkgames/Astrid.Framework/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_13.RULE b/src/licensedcode/data/rules/mit_nuget_url_13.RULE index 0d2ec867f92..f4dde149cff 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_13.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_13.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/katis/csharp-slice/blob/master/LICENSE.md +--- + https://github.com/katis/csharp-slice/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_13.yml b/src/licensedcode/data/rules/mit_nuget_url_13.yml deleted file mode 100644 index 1637583cf03..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/katis/csharp-slice/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_130.RULE b/src/licensedcode/data/rules/mit_nuget_url_130.RULE index 28aeab08916..183f2516bcf 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_130.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_130.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/craftworkgames/MonoGame.Extended/blob/master/LICENSE +--- + https://github.com/craftworkgames/MonoGame.Extended/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_130.yml b/src/licensedcode/data/rules/mit_nuget_url_130.yml deleted file mode 100644 index cd30013d3ff..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_130.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/craftworkgames/MonoGame.Extended/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_14.RULE b/src/licensedcode/data/rules/mit_nuget_url_14.RULE index 7b12e30ef5d..bdd3d52b57c 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_14.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_14.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/kohsuke/winsw/blob/master/LICENSE.txt +--- + https://github.com/kohsuke/winsw/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_14.yml b/src/licensedcode/data/rules/mit_nuget_url_14.yml deleted file mode 100644 index 1335c1cd213..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/kohsuke/winsw/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_15.RULE b/src/licensedcode/data/rules/mit_nuget_url_15.RULE index 801aaa096a0..54d05c41f7a 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_15.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_15.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/KostovMartin/Dapper.Bulk/blob/master/LICENSE +--- + https://github.com/KostovMartin/Dapper.Bulk/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_15.yml b/src/licensedcode/data/rules/mit_nuget_url_15.yml deleted file mode 100644 index b67f5c2d0fb..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/KostovMartin/Dapper.Bulk/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_16.RULE b/src/licensedcode/data/rules/mit_nuget_url_16.RULE index 69f9fe467ba..2a046e97b52 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_16.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_16.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/KSemenenko/AzurePushNotificationsForXamarinForms/blob/master/LICENSE +--- + https://github.com/KSemenenko/AzurePushNotificationsForXamarinForms/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_16.yml b/src/licensedcode/data/rules/mit_nuget_url_16.yml deleted file mode 100644 index c5630f33bf3..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/KSemenenko/AzurePushNotificationsForXamarinForms/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_17.RULE b/src/licensedcode/data/rules/mit_nuget_url_17.RULE index ca9883e44c0..12419854ef4 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_17.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_17.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/kylesonaty/AspNetRedisProviders/blob/master/LICENSE.txt +--- + https://github.com/kylesonaty/AspNetRedisProviders/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_17.yml b/src/licensedcode/data/rules/mit_nuget_url_17.yml deleted file mode 100644 index 41a7668f13c..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/kylesonaty/AspNetRedisProviders/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_18.RULE b/src/licensedcode/data/rules/mit_nuget_url_18.RULE index 399c3c15512..348bfd20ec9 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_18.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_18.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/LiamMorrow/DateTimeNowBanisher/blob/master/LICENSE +--- + https://github.com/LiamMorrow/DateTimeNowBanisher/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_18.yml b/src/licensedcode/data/rules/mit_nuget_url_18.yml deleted file mode 100644 index d635ffa84d1..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/LiamMorrow/DateTimeNowBanisher/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_19.RULE b/src/licensedcode/data/rules/mit_nuget_url_19.RULE index 16dbe13aede..c059a1f0681 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_19.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_19.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/LogoFX/LogoFX/blob/master/LICENSE +--- + https://github.com/LogoFX/LogoFX/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_19.yml b/src/licensedcode/data/rules/mit_nuget_url_19.yml deleted file mode 100644 index 4fe5f8a8e95..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/LogoFX/LogoFX/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_2.RULE b/src/licensedcode/data/rules/mit_nuget_url_2.RULE index 66380f0f52b..1e15c9a4418 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/dharnitski/Sitecore.Algolia/blob/master/LICENSE.txt +--- + https://github.com/dharnitski/Sitecore.Algolia/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_2.yml b/src/licensedcode/data/rules/mit_nuget_url_2.yml deleted file mode 100644 index 1427a97dee4..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/dharnitski/Sitecore.Algolia/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_20.RULE b/src/licensedcode/data/rules/mit_nuget_url_20.RULE index bf37e9e8a9d..5638c4cd60a 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_20.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_20.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/LogoFX/logofx-client-mvvm-viewmodel/blob/master/LICENSE +--- + https://github.com/LogoFX/logofx-client-mvvm-viewmodel/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_20.yml b/src/licensedcode/data/rules/mit_nuget_url_20.yml deleted file mode 100644 index 661473cab63..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/LogoFX/logofx-client-mvvm-viewmodel/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_21.RULE b/src/licensedcode/data/rules/mit_nuget_url_21.RULE index 0ecdda88c8a..558afd9986f 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_21.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_21.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ltrzesniewski/InlineIL.Fody/blob/master/LICENSE +--- + https://github.com/ltrzesniewski/InlineIL.Fody/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_21.yml b/src/licensedcode/data/rules/mit_nuget_url_21.yml deleted file mode 100644 index 8521f24f48f..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ltrzesniewski/InlineIL.Fody/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_22.RULE b/src/licensedcode/data/rules/mit_nuget_url_22.RULE index a1adb315c6b..7675d847662 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_22.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_22.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/MarimerLLC/cslacontrib/blob/master/LICENSE.md +--- + https://github.com/MarimerLLC/cslacontrib/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_22.yml b/src/licensedcode/data/rules/mit_nuget_url_22.yml deleted file mode 100644 index 6d677c67276..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/MarimerLLC/cslacontrib/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_23.RULE b/src/licensedcode/data/rules/mit_nuget_url_23.RULE index e3ea6b423b0..61d807917fc 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_23.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_23.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/martijn00/XamarinMediaManager/blob/master/LICENSE +--- + https://github.com/martijn00/XamarinMediaManager/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_23.yml b/src/licensedcode/data/rules/mit_nuget_url_23.yml deleted file mode 100644 index f5848117e4f..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/martijn00/XamarinMediaManager/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_24.RULE b/src/licensedcode/data/rules/mit_nuget_url_24.RULE index 7519930c286..d61fe37a929 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_24.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_24.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/martindevans/Myre/blob/master/License.md +--- + https://github.com/martindevans/Myre/blob/master/License.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_24.yml b/src/licensedcode/data/rules/mit_nuget_url_24.yml deleted file mode 100644 index 08144ed6d0b..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/martindevans/Myre/blob/master/License.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_25.RULE b/src/licensedcode/data/rules/mit_nuget_url_25.RULE index a12a2221ea2..19d2d7956ab 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_25.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_25.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/maskx/OData/blob/master/LICENSE +--- + https://github.com/maskx/OData/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_25.yml b/src/licensedcode/data/rules/mit_nuget_url_25.yml deleted file mode 100644 index 225c3c09ba9..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/maskx/OData/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_26.RULE b/src/licensedcode/data/rules/mit_nuget_url_26.RULE index 3ed30f7ed98..86ca7f05c5d 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_26.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_26.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/matiii/Dijkstra.NET/blob/master/LICENSE +--- + https://github.com/matiii/Dijkstra.NET/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_26.yml b/src/licensedcode/data/rules/mit_nuget_url_26.yml deleted file mode 100644 index 9738db0d62e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/matiii/Dijkstra.NET/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_27.RULE b/src/licensedcode/data/rules/mit_nuget_url_27.RULE index f40f4066ccf..3ec57d40fd1 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_27.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_27.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/mdsol/crichton-dotnet/blob/develop/LICENSE.md +--- + https://github.com/mdsol/crichton-dotnet/blob/develop/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_27.yml b/src/licensedcode/data/rules/mit_nuget_url_27.yml deleted file mode 100644 index 8f80c596b67..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/mdsol/crichton-dotnet/blob/develop/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_28.RULE b/src/licensedcode/data/rules/mit_nuget_url_28.RULE index 3391cde91ec..50fd9e90363 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_28.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_28.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Microsoft/Angara.Serialization/blob/master/LICENSE +--- + https://github.com/Microsoft/Angara.Serialization/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_28.yml b/src/licensedcode/data/rules/mit_nuget_url_28.yml deleted file mode 100644 index 55e607306fa..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Microsoft/Angara.Serialization/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_29.RULE b/src/licensedcode/data/rules/mit_nuget_url_29.RULE index c63ebe395ca..301447af8a5 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_29.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_29.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Microsoft/InteractiveDataDisplay.WPF/blob/master/LICENSE +--- + https://github.com/Microsoft/InteractiveDataDisplay.WPF/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_29.yml b/src/licensedcode/data/rules/mit_nuget_url_29.yml deleted file mode 100644 index 0584bbaea06..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Microsoft/InteractiveDataDisplay.WPF/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_3.RULE b/src/licensedcode/data/rules/mit_nuget_url_3.RULE index 005372e91f2..5d452aed6f7 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_3.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/docevaad/Chain/blob/master/License.txt +--- + https://github.com/docevaad/Chain/blob/master/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_3.yml b/src/licensedcode/data/rules/mit_nuget_url_3.yml deleted file mode 100644 index 7386bf91a6a..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/docevaad/Chain/blob/master/License.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_30.RULE b/src/licensedcode/data/rules/mit_nuget_url_30.RULE index 38f15781d9d..ca00fcb1930 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_30.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_30.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/mono/VulkanSharp/blob/master/LICENSE +--- + https://github.com/mono/VulkanSharp/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_30.yml b/src/licensedcode/data/rules/mit_nuget_url_30.yml deleted file mode 100644 index 17331782a00..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/mono/VulkanSharp/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_31.RULE b/src/licensedcode/data/rules/mit_nuget_url_31.RULE index fb981e4e946..670b845490a 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_31.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_31.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/mvno/Okanshi/blob/master/LICENSE.txt +--- + https://github.com/mvno/Okanshi/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_31.yml b/src/licensedcode/data/rules/mit_nuget_url_31.yml deleted file mode 100644 index c37ca579e7d..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/mvno/Okanshi/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_32.RULE b/src/licensedcode/data/rules/mit_nuget_url_32.RULE index c3db028e867..71588d6c069 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_32.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_32.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Naxiz/TeleBotDotNet/blob/master/LICENSE +--- + https://github.com/Naxiz/TeleBotDotNet/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_32.yml b/src/licensedcode/data/rules/mit_nuget_url_32.yml deleted file mode 100644 index f3370d40904..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Naxiz/TeleBotDotNet/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_33.RULE b/src/licensedcode/data/rules/mit_nuget_url_33.RULE index aa85ed51115..b56ac261917 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_33.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_33.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/NimaAra/Easy.Storage/blob/master/LICENSE +--- + https://github.com/NimaAra/Easy.Storage/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_33.yml b/src/licensedcode/data/rules/mit_nuget_url_33.yml deleted file mode 100644 index d40ef1fd0f9..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/NimaAra/Easy.Storage/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_34.RULE b/src/licensedcode/data/rules/mit_nuget_url_34.RULE index d8e9eacb360..9d8b79173bf 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_34.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_34.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ObscureWare/Console.Core/blob/master/LICENSE +--- + https://github.com/ObscureWare/Console.Core/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_34.yml b/src/licensedcode/data/rules/mit_nuget_url_34.yml deleted file mode 100644 index e5f6b4b0c9f..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ObscureWare/Console.Core/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_35.RULE b/src/licensedcode/data/rules/mit_nuget_url_35.RULE index c89955c90b5..e6673196f51 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_35.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_35.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/orialmog/Cake.ProjHelpers/blob/master/LICENSE +--- + https://github.com/orialmog/Cake.ProjHelpers/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_35.yml b/src/licensedcode/data/rules/mit_nuget_url_35.yml deleted file mode 100644 index 99f08c011f5..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/orialmog/Cake.ProjHelpers/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_36.RULE b/src/licensedcode/data/rules/mit_nuget_url_36.RULE index 02a1e1dba45..30e52238ca5 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_36.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_36.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/OrleansContrib/Orleans.TelemetryConsumers.MetricsTracker/blob/master/LICENSE +--- + https://github.com/OrleansContrib/Orleans.TelemetryConsumers.MetricsTracker/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_36.yml b/src/licensedcode/data/rules/mit_nuget_url_36.yml deleted file mode 100644 index 37aa00afbdf..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/OrleansContrib/Orleans.TelemetryConsumers.MetricsTracker/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_37.RULE b/src/licensedcode/data/rules/mit_nuget_url_37.RULE index f744712deac..31da36175d0 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_37.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_37.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/oskardudycz/GoldenEye/blob/master/LICENSE.txt +--- + https://github.com/oskardudycz/GoldenEye/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_37.yml b/src/licensedcode/data/rules/mit_nuget_url_37.yml deleted file mode 100644 index a6d479c6e47..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/oskardudycz/GoldenEye/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_38.RULE b/src/licensedcode/data/rules/mit_nuget_url_38.RULE index 030eb3d2949..83320739bb7 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_38.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_38.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/parekhkb/OrderByNullsLast/blob/master/LICENSE +--- + https://github.com/parekhkb/OrderByNullsLast/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_38.yml b/src/licensedcode/data/rules/mit_nuget_url_38.yml deleted file mode 100644 index c867b50c2ab..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/parekhkb/OrderByNullsLast/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_39.RULE b/src/licensedcode/data/rules/mit_nuget_url_39.RULE index 57990ac86b5..33ff15fabd1 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_39.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_39.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/phaxio/phaxio-dotnet/blob/master/LICENSE +--- + https://github.com/phaxio/phaxio-dotnet/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_39.yml b/src/licensedcode/data/rules/mit_nuget_url_39.yml deleted file mode 100644 index 7af3593d830..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/phaxio/phaxio-dotnet/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_4.RULE b/src/licensedcode/data/rules/mit_nuget_url_4.RULE index 9a579f68041..20a0ee4ad4a 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_4.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ekmsystems/DatabaseConnections/blob/master/LICENSE +--- + https://github.com/ekmsystems/DatabaseConnections/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_4.yml b/src/licensedcode/data/rules/mit_nuget_url_4.yml deleted file mode 100644 index d58c1ff3324..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ekmsystems/DatabaseConnections/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_40.RULE b/src/licensedcode/data/rules/mit_nuget_url_40.RULE index a9c5ea51aaa..09a66122c66 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_40.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_40.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/plantain-00/Bootstrap.Pagination/blob/master/LICENSE.md +--- + https://github.com/plantain-00/Bootstrap.Pagination/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_40.yml b/src/licensedcode/data/rules/mit_nuget_url_40.yml deleted file mode 100644 index 8f64f110814..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/plantain-00/Bootstrap.Pagination/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_41.RULE b/src/licensedcode/data/rules/mit_nuget_url_41.RULE index cb40f13c882..ccbc5bf5d30 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_41.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_41.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/q42/HaagsTranslator/blob/master/LICENSE +--- + https://github.com/q42/HaagsTranslator/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_41.yml b/src/licensedcode/data/rules/mit_nuget_url_41.yml deleted file mode 100644 index ee6d234ff38..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/q42/HaagsTranslator/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_42.RULE b/src/licensedcode/data/rules/mit_nuget_url_42.RULE index 74b21ddbde0..d1c539069e8 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_42.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_42.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ralbu/xunit2.should/blob/net-framework/LICENSE +--- + https://github.com/ralbu/xunit2.should/blob/net-framework/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_42.yml b/src/licensedcode/data/rules/mit_nuget_url_42.yml deleted file mode 100644 index dcd43f4b943..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ralbu/xunit2.should/blob/net-framework/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_43.RULE b/src/licensedcode/data/rules/mit_nuget_url_43.RULE index eca1a51ba0d..c5d906a2b47 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_43.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_43.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/rbengtsson/Automoqer/blob/master/LICENSE +--- + https://github.com/rbengtsson/Automoqer/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_43.yml b/src/licensedcode/data/rules/mit_nuget_url_43.yml deleted file mode 100644 index ef713da0a43..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/rbengtsson/Automoqer/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_44.RULE b/src/licensedcode/data/rules/mit_nuget_url_44.RULE index e82bc6c619e..1025e8bcc40 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_44.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_44.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Reacture/Khala.TransientFaultHandling/blob/master/LICENSE +--- + https://github.com/Reacture/Khala.TransientFaultHandling/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_44.yml b/src/licensedcode/data/rules/mit_nuget_url_44.yml deleted file mode 100644 index ec3a030bf51..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Reacture/Khala.TransientFaultHandling/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_45.RULE b/src/licensedcode/data/rules/mit_nuget_url_45.RULE index 5c7d18d0828..ad0d198a090 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_45.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_45.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/RoyalVeterinaryCollege/VetCompassClient/blob/master/LICENSE +--- + https://github.com/RoyalVeterinaryCollege/VetCompassClient/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_45.yml b/src/licensedcode/data/rules/mit_nuget_url_45.yml deleted file mode 100644 index 17c66099ade..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/RoyalVeterinaryCollege/VetCompassClient/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_46.RULE b/src/licensedcode/data/rules/mit_nuget_url_46.RULE index e80d826d4d0..d7d3f9c8581 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_46.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_46.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/schwamster/ParameterStoreConfigurationProvider/blob/master/LICENSE +--- + https://github.com/schwamster/ParameterStoreConfigurationProvider/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_46.yml b/src/licensedcode/data/rules/mit_nuget_url_46.yml deleted file mode 100644 index 56a0eb8778e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/schwamster/ParameterStoreConfigurationProvider/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_47.RULE b/src/licensedcode/data/rules/mit_nuget_url_47.RULE index 69d5939db3c..834d7cca015 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_47.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_47.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/sequin/sequin.claimsauthentication/blob/master/LICENSE +--- + https://github.com/sequin/sequin.claimsauthentication/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_47.yml b/src/licensedcode/data/rules/mit_nuget_url_47.yml deleted file mode 100644 index 7f75ac79e32..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/sequin/sequin.claimsauthentication/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_48.RULE b/src/licensedcode/data/rules/mit_nuget_url_48.RULE index 260d5e1e908..214bd2e5638 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_48.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_48.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/SkillsFundingAgency/das-shared-packages/blob/master/LICENSE +--- + https://github.com/SkillsFundingAgency/das-shared-packages/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_48.yml b/src/licensedcode/data/rules/mit_nuget_url_48.yml deleted file mode 100644 index 6e7e8c0e626..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/SkillsFundingAgency/das-shared-packages/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_49.RULE b/src/licensedcode/data/rules/mit_nuget_url_49.RULE index 05ac4540ad1..5b4201fcf69 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_49.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_49.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/SkywardApps/popcorn/blob/master/LICENSE +--- + https://github.com/SkywardApps/popcorn/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_49.yml b/src/licensedcode/data/rules/mit_nuget_url_49.yml deleted file mode 100644 index 3af55986c8b..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/SkywardApps/popcorn/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_5.RULE b/src/licensedcode/data/rules/mit_nuget_url_5.RULE index 2b26295d24b..83616b36283 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_5.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_5.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/electricessence/Open.Collections/blob/master/LISCENSE.md +--- + https://github.com/electricessence/Open.Collections/blob/master/LISCENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_5.yml b/src/licensedcode/data/rules/mit_nuget_url_5.yml deleted file mode 100644 index d4b74f3d84b..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/electricessence/Open.Collections/blob/master/LISCENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_50.RULE b/src/licensedcode/data/rules/mit_nuget_url_50.RULE index f834ae5fef6..bde42b56047 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_50.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_50.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/StubbleOrg/Stubble.Extensions.JsonNet/blob/master/licence.md +--- + https://github.com/StubbleOrg/Stubble.Extensions.JsonNet/blob/master/licence.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_50.yml b/src/licensedcode/data/rules/mit_nuget_url_50.yml deleted file mode 100644 index 60d9615c704..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/StubbleOrg/Stubble.Extensions.JsonNet/blob/master/licence.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_51.RULE b/src/licensedcode/data/rules/mit_nuget_url_51.RULE index 31b9c041445..3d38c99edf5 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_51.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_51.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/studio-nine/Nine.Formatting/blob/master/LICENSE +--- + https://github.com/studio-nine/Nine.Formatting/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_51.yml b/src/licensedcode/data/rules/mit_nuget_url_51.yml deleted file mode 100644 index 4c301cd58ba..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/studio-nine/Nine.Formatting/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_52.RULE b/src/licensedcode/data/rules/mit_nuget_url_52.RULE index 204d1267b24..62fc6d955d1 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_52.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_52.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/sweetlandj/Platibus/blob/master/LICENSE +--- + https://github.com/sweetlandj/Platibus/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_52.yml b/src/licensedcode/data/rules/mit_nuget_url_52.yml deleted file mode 100644 index 61a44f61304..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/sweetlandj/Platibus/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_53.RULE b/src/licensedcode/data/rules/mit_nuget_url_53.RULE index 739ae6ce240..1b8096b05d6 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_53.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_53.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Swoogan/Swoogan.Resource/blob/master/LICENSE +--- + https://github.com/Swoogan/Swoogan.Resource/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_53.yml b/src/licensedcode/data/rules/mit_nuget_url_53.yml deleted file mode 100644 index accde9093ad..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Swoogan/Swoogan.Resource/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_54.RULE b/src/licensedcode/data/rules/mit_nuget_url_54.RULE index a8d054927aa..fbf8a655e9c 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_54.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_54.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/theraot/Theraot/blob/master/LICENSE.txt +--- + https://github.com/theraot/Theraot/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_54.yml b/src/licensedcode/data/rules/mit_nuget_url_54.yml deleted file mode 100644 index a8c7906e00c..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/theraot/Theraot/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_55.RULE b/src/licensedcode/data/rules/mit_nuget_url_55.RULE index 5115ba82fd5..1b2f895bead 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_55.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_55.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/TrackableEntities/trackable-entities/blob/master/License.txt +--- + https://github.com/TrackableEntities/trackable-entities/blob/master/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_55.yml b/src/licensedcode/data/rules/mit_nuget_url_55.yml deleted file mode 100644 index 9c6ec2fcf0a..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/TrackableEntities/trackable-entities/blob/master/License.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_56.RULE b/src/licensedcode/data/rules/mit_nuget_url_56.RULE index 31da508b79c..993c781a81c 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_56.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_56.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/tusdotnet/tusdotnet/blob/master/LICENSE +--- + https://github.com/tusdotnet/tusdotnet/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_56.yml b/src/licensedcode/data/rules/mit_nuget_url_56.yml deleted file mode 100644 index fd902fa9a6a..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/tusdotnet/tusdotnet/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_57.RULE b/src/licensedcode/data/rules/mit_nuget_url_57.RULE index d7b677569ec..970c7ab285f 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_57.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_57.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Tyrrrz/WpfExtensions/blob/master/License.txt +--- + https://github.com/Tyrrrz/WpfExtensions/blob/master/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_57.yml b/src/licensedcode/data/rules/mit_nuget_url_57.yml deleted file mode 100644 index f7cf30d41d6..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Tyrrrz/WpfExtensions/blob/master/License.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_58.RULE b/src/licensedcode/data/rules/mit_nuget_url_58.RULE index 7e4f133849e..18da8cc11a2 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_58.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_58.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/warden-stack/Warden.Watchers.MongoDb/blob/master/LICENSE +--- + https://github.com/warden-stack/Warden.Watchers.MongoDb/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_58.yml b/src/licensedcode/data/rules/mit_nuget_url_58.yml deleted file mode 100644 index e99cf4964bd..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/warden-stack/Warden.Watchers.MongoDb/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_59.RULE b/src/licensedcode/data/rules/mit_nuget_url_59.RULE index f1b794d0623..8f9d2686f7e 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_59.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_59.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/WebApiContrib/WebAPIContrib.Core/blob/master/LICENSE +--- + https://github.com/WebApiContrib/WebAPIContrib.Core/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_59.yml b/src/licensedcode/data/rules/mit_nuget_url_59.yml deleted file mode 100644 index 855067fdf39..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/WebApiContrib/WebAPIContrib.Core/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_6.RULE b/src/licensedcode/data/rules/mit_nuget_url_6.RULE index 93b58b616a6..0a986412a0f 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_6.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_6.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ericburcham/Reflections/raw/master/LICENSE +--- + https://github.com/ericburcham/Reflections/raw/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_6.yml b/src/licensedcode/data/rules/mit_nuget_url_6.yml deleted file mode 100644 index fde745d5351..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ericburcham/Reflections/raw/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_60.RULE b/src/licensedcode/data/rules/mit_nuget_url_60.RULE index f36ae2788e4..ce6816bd910 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_60.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_60.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/wiltaylor/FluentTest/blob/master/LICENSE.md +--- + https://github.com/wiltaylor/FluentTest/blob/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_60.yml b/src/licensedcode/data/rules/mit_nuget_url_60.yml deleted file mode 100644 index aba1fae4911..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/wiltaylor/FluentTest/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_61.RULE b/src/licensedcode/data/rules/mit_nuget_url_61.RULE index 866c20f0359..1cfbeb66e91 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_61.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_61.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/wojtpl2/ExtendedXmlSerializer/blob/master/Licence +--- + https://github.com/wojtpl2/ExtendedXmlSerializer/blob/master/Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_61.yml b/src/licensedcode/data/rules/mit_nuget_url_61.yml deleted file mode 100644 index d2b3caf3d0d..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/wojtpl2/ExtendedXmlSerializer/blob/master/Licence diff --git a/src/licensedcode/data/rules/mit_nuget_url_62.RULE b/src/licensedcode/data/rules/mit_nuget_url_62.RULE index e8d22c41bdd..f4c80c8df2d 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_62.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_62.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/woopsa-protocol/Woopsa/blob/master/LICENSE.txt +--- + https://github.com/woopsa-protocol/Woopsa/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_62.yml b/src/licensedcode/data/rules/mit_nuget_url_62.yml deleted file mode 100644 index a8005ef8499..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/woopsa-protocol/Woopsa/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_63.RULE b/src/licensedcode/data/rules/mit_nuget_url_63.RULE index 05558b678d9..2ddaffc6061 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_63.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_63.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/yas-mnkornym/TaihaToolkit/blob/master/LICENSE +--- + https://github.com/yas-mnkornym/TaihaToolkit/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_63.yml b/src/licensedcode/data/rules/mit_nuget_url_63.yml deleted file mode 100644 index 944fe049153..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/yas-mnkornym/TaihaToolkit/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_64.RULE b/src/licensedcode/data/rules/mit_nuget_url_64.RULE index 886d8a969ae..1885998e23d 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_64.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_64.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/zzzprojects/EntityFramework-Plus/blob/master/LICENSE +--- + https://github.com/zzzprojects/EntityFramework-Plus/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_64.yml b/src/licensedcode/data/rules/mit_nuget_url_64.yml deleted file mode 100644 index e50a06b1a99..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/zzzprojects/EntityFramework-Plus/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_65.RULE b/src/licensedcode/data/rules/mit_nuget_url_65.RULE index d2b39b7cf11..3dddd46e1ab 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_65.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_65.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/cloudbirdnet/StatsDPerfMon/master/license.txt +--- + https://raw.github.com/cloudbirdnet/StatsDPerfMon/master/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_65.yml b/src/licensedcode/data/rules/mit_nuget_url_65.yml deleted file mode 100644 index cb231ac9269..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/cloudbirdnet/StatsDPerfMon/master/license.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_66.RULE b/src/licensedcode/data/rules/mit_nuget_url_66.RULE index 9f2b6f80e35..b87130eb28e 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_66.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_66.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/doblak/ndtw/master/LICENSE.txt +--- + https://raw.github.com/doblak/ndtw/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_66.yml b/src/licensedcode/data/rules/mit_nuget_url_66.yml deleted file mode 100644 index ef91f2f9f65..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/doblak/ndtw/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_67.RULE b/src/licensedcode/data/rules/mit_nuget_url_67.RULE index 17ba4f54335..3ef70ac979a 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_67.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_67.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/Georadix/Georadix.NET/master/LICENSE +--- + https://raw.github.com/Georadix/Georadix.NET/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_67.yml b/src/licensedcode/data/rules/mit_nuget_url_67.yml deleted file mode 100644 index 4f4d0c45dc4..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/Georadix/Georadix.NET/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_68.RULE b/src/licensedcode/data/rules/mit_nuget_url_68.RULE index b0e918074c5..ce1e6e53215 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_68.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_68.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/StackExchange/NetGain/master/LICENSE +--- + https://raw.github.com/StackExchange/NetGain/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_68.yml b/src/licensedcode/data/rules/mit_nuget_url_68.yml deleted file mode 100644 index 6dbebdbdc6e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/StackExchange/NetGain/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_69.RULE b/src/licensedcode/data/rules/mit_nuget_url_69.RULE index c2fb3eb499c..94159d1c245 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_69.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_69.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/teelahti/JSBus/master/LICENSE.md +--- + https://raw.github.com/teelahti/JSBus/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_69.yml b/src/licensedcode/data/rules/mit_nuget_url_69.yml deleted file mode 100644 index 00049f3ad9e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/teelahti/JSBus/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_7.RULE b/src/licensedcode/data/rules/mit_nuget_url_7.RULE index c1a157b8c97..05963d05231 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_7.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_7.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/fschwiet/DreamNJasmine/blob/master/LICENSE.txt +--- + https://github.com/fschwiet/DreamNJasmine/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_7.yml b/src/licensedcode/data/rules/mit_nuget_url_7.yml deleted file mode 100644 index 4d2e7e23632..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/fschwiet/DreamNJasmine/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_70.RULE b/src/licensedcode/data/rules/mit_nuget_url_70.RULE index 3b498011311..12d3b972265 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_70.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_70.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/3411f13052/LICENSE.txt +--- + https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/3411f13052/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_70.yml b/src/licensedcode/data/rules/mit_nuget_url_70.yml deleted file mode 100644 index 8ebb283262e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/3411f13052/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_71.RULE b/src/licensedcode/data/rules/mit_nuget_url_71.RULE index 2d12253d88b..923e4b0f2c7 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_71.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_71.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/AArnott/pinvoke/115f4f939d/LICENSE +--- + https://raw.githubusercontent.com/AArnott/pinvoke/115f4f939d/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_71.yml b/src/licensedcode/data/rules/mit_nuget_url_71.yml deleted file mode 100644 index 30bdf1f8bb7..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/AArnott/pinvoke/115f4f939d/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_72.RULE b/src/licensedcode/data/rules/mit_nuget_url_72.RULE index 373830b83e3..51504e838c4 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_72.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_72.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/activa/iridium-core/master/LICENSE +--- + https://raw.githubusercontent.com/activa/iridium-core/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_72.yml b/src/licensedcode/data/rules/mit_nuget_url_72.yml deleted file mode 100644 index d95ffa73331..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/activa/iridium-core/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_73.RULE b/src/licensedcode/data/rules/mit_nuget_url_73.RULE index b04a4c765f5..42f084596cd 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_73.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_73.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/ArinGhazarian/StackExchange.Redis.DataTypes/master/LICENSE +--- + https://raw.githubusercontent.com/ArinGhazarian/StackExchange.Redis.DataTypes/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_73.yml b/src/licensedcode/data/rules/mit_nuget_url_73.yml deleted file mode 100644 index 43ee5900437..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/ArinGhazarian/StackExchange.Redis.DataTypes/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_74.RULE b/src/licensedcode/data/rules/mit_nuget_url_74.RULE index 9baa8fac7ad..b0dd498c0a6 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_74.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_74.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/braathen/qlik-auth-net/master/LICENSE.txt +--- + https://raw.githubusercontent.com/braathen/qlik-auth-net/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_74.yml b/src/licensedcode/data/rules/mit_nuget_url_74.yml deleted file mode 100644 index aab7d340934..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/braathen/qlik-auth-net/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_75.RULE b/src/licensedcode/data/rules/mit_nuget_url_75.RULE index 121ede6025b..0d3d71379f3 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_75.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_75.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/BrighterCommand/Darker/master/LICENSE.md +--- + https://raw.githubusercontent.com/BrighterCommand/Darker/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_75.yml b/src/licensedcode/data/rules/mit_nuget_url_75.yml deleted file mode 100644 index 8abd7241495..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/BrighterCommand/Darker/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_76.RULE b/src/licensedcode/data/rules/mit_nuget_url_76.RULE index 79c2fdf05f0..cbb1717dbae 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_76.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_76.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/cake-contrib/Cake.MobileCenter/master/LICENSE +--- + https://raw.githubusercontent.com/cake-contrib/Cake.MobileCenter/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_76.yml b/src/licensedcode/data/rules/mit_nuget_url_76.yml deleted file mode 100644 index 95623ab1e88..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_76.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/cake-contrib/Cake.MobileCenter/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_77.RULE b/src/licensedcode/data/rules/mit_nuget_url_77.RULE index edd05ba47da..4fb77836f24 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_77.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_77.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/danielwertheim/requester/master/LICENSE.txt +--- + https://raw.githubusercontent.com/danielwertheim/requester/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_77.yml b/src/licensedcode/data/rules/mit_nuget_url_77.yml deleted file mode 100644 index e73ba481646..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/danielwertheim/requester/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_78.RULE b/src/licensedcode/data/rules/mit_nuget_url_78.RULE index fefc17f69c6..b8e18f4a390 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_78.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_78.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/DataGenSoftware/DataGen.Extensions/master/LICENSE +--- + https://raw.githubusercontent.com/DataGenSoftware/DataGen.Extensions/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_78.yml b/src/licensedcode/data/rules/mit_nuget_url_78.yml deleted file mode 100644 index 22960b83caf..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/DataGenSoftware/DataGen.Extensions/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_79.RULE b/src/licensedcode/data/rules/mit_nuget_url_79.RULE index 8b17fc86371..25669179dd9 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_79.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_79.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/deiruch/SATInterface/master/LICENSE +--- + https://raw.githubusercontent.com/deiruch/SATInterface/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_79.yml b/src/licensedcode/data/rules/mit_nuget_url_79.yml deleted file mode 100644 index 99a75318105..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/deiruch/SATInterface/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_8.RULE b/src/licensedcode/data/rules/mit_nuget_url_8.RULE index f1076ddf901..429ce34f6d9 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_8.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/Grabacr07/VirtualDesktop/blob/master/LICENSE +--- + https://github.com/Grabacr07/VirtualDesktop/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_8.yml b/src/licensedcode/data/rules/mit_nuget_url_8.yml deleted file mode 100644 index 71579ffc75a..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/Grabacr07/VirtualDesktop/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_80.RULE b/src/licensedcode/data/rules/mit_nuget_url_80.RULE index e429d71137e..128ec60f1b8 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_80.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_80.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/elios264/Persist/master/LICENSE +--- + https://raw.githubusercontent.com/elios264/Persist/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_80.yml b/src/licensedcode/data/rules/mit_nuget_url_80.yml deleted file mode 100644 index 690b347d33e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/elios264/Persist/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_81.RULE b/src/licensedcode/data/rules/mit_nuget_url_81.RULE index 327f0c82104..c5cab6d3a2f 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_81.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_81.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/ennerperez/platform/master/LICENSE +--- + https://raw.githubusercontent.com/ennerperez/platform/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_81.yml b/src/licensedcode/data/rules/mit_nuget_url_81.yml deleted file mode 100644 index 0066aa9135b..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/ennerperez/platform/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_82.RULE b/src/licensedcode/data/rules/mit_nuget_url_82.RULE index dc7c9b318ce..1836884eefb 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_82.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_82.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/jacob-ebey/DigitimateSharp/master/LICENSE +--- + https://raw.githubusercontent.com/jacob-ebey/DigitimateSharp/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_82.yml b/src/licensedcode/data/rules/mit_nuget_url_82.yml deleted file mode 100644 index 86ef475c80b..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/jacob-ebey/DigitimateSharp/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_83.RULE b/src/licensedcode/data/rules/mit_nuget_url_83.RULE index b05d35c2511..1a904c6ba0d 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_83.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_83.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/lecode-official/xaml-reporting/master/LICENSE +--- + https://raw.githubusercontent.com/lecode-official/xaml-reporting/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_83.yml b/src/licensedcode/data/rules/mit_nuget_url_83.yml deleted file mode 100644 index 047d208fd0d..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/lecode-official/xaml-reporting/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_84.RULE b/src/licensedcode/data/rules/mit_nuget_url_84.RULE index 60104003bba..1d7bc2000e6 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_84.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_84.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/libexpat/libexpat/master/expat/COPYING +--- + https://raw.githubusercontent.com/libexpat/libexpat/master/expat/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_84.yml b/src/licensedcode/data/rules/mit_nuget_url_84.yml deleted file mode 100644 index da4e5c639d5..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_84.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/libexpat/libexpat/master/expat/COPYING diff --git a/src/licensedcode/data/rules/mit_nuget_url_85.RULE b/src/licensedcode/data/rules/mit_nuget_url_85.RULE index 8680c03b0bd..55f29021c4d 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_85.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_85.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/lordmilko/PrtgAPI/master/LICENSE +--- + https://raw.githubusercontent.com/lordmilko/PrtgAPI/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_85.yml b/src/licensedcode/data/rules/mit_nuget_url_85.yml deleted file mode 100644 index 41c0cbb0671..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/lordmilko/PrtgAPI/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_86.RULE b/src/licensedcode/data/rules/mit_nuget_url_86.RULE index bb2c65e2848..a59f81d0454 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_86.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_86.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/markryd/XamlWatcher/master/LICENSE +--- + https://raw.githubusercontent.com/markryd/XamlWatcher/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_86.yml b/src/licensedcode/data/rules/mit_nuget_url_86.yml deleted file mode 100644 index 872845b33fb..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/markryd/XamlWatcher/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_87.RULE b/src/licensedcode/data/rules/mit_nuget_url_87.RULE index 649d8366e09..f7787f0d787 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_87.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_87.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/MasDevProject/CSharp.Common/master/LICENSE +--- + https://raw.githubusercontent.com/MasDevProject/CSharp.Common/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_87.yml b/src/licensedcode/data/rules/mit_nuget_url_87.yml deleted file mode 100644 index a719f4e71c2..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/MasDevProject/CSharp.Common/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_88.RULE b/src/licensedcode/data/rules/mit_nuget_url_88.RULE index 74ac46786f7..67406c8fcc6 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_88.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_88.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/Microsoft/json-document-transforms/master/LICENSE +--- + https://raw.githubusercontent.com/Microsoft/json-document-transforms/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_88.yml b/src/licensedcode/data/rules/mit_nuget_url_88.yml deleted file mode 100644 index 7c0371c6e1e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/Microsoft/json-document-transforms/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_89.RULE b/src/licensedcode/data/rules/mit_nuget_url_89.RULE index e578c180956..17a1f539a27 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_89.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_89.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/mivano/stateflow/master/LICENSE +--- + https://raw.githubusercontent.com/mivano/stateflow/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_89.yml b/src/licensedcode/data/rules/mit_nuget_url_89.yml deleted file mode 100644 index db6e26f328c..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/mivano/stateflow/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_9.RULE b/src/licensedcode/data/rules/mit_nuget_url_9.RULE index 2266c730f80..e5362c96776 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_9.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_9.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/groupby/api-dotnet/blob/develop/license.txt +--- + https://github.com/groupby/api-dotnet/blob/develop/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_9.yml b/src/licensedcode/data/rules/mit_nuget_url_9.yml deleted file mode 100644 index f1f7cde5114..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/groupby/api-dotnet/blob/develop/license.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_90.RULE b/src/licensedcode/data/rules/mit_nuget_url_90.RULE index e12e0422f42..f8d809059b2 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_90.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_90.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/mono/Embeddinator-4000/master/LICENSE +--- + https://raw.githubusercontent.com/mono/Embeddinator-4000/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_90.yml b/src/licensedcode/data/rules/mit_nuget_url_90.yml deleted file mode 100644 index 60e79f2b169..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_90.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/mono/Embeddinator-4000/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_91.RULE b/src/licensedcode/data/rules/mit_nuget_url_91.RULE index 8db743a3043..680d65a4bcd 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_91.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_91.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/MortenHoustonLudvigsen/CommonMarkSharp/master/LICENSE +--- + https://raw.githubusercontent.com/MortenHoustonLudvigsen/CommonMarkSharp/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_91.yml b/src/licensedcode/data/rules/mit_nuget_url_91.yml deleted file mode 100644 index f0801cf06b0..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/MortenHoustonLudvigsen/CommonMarkSharp/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_92.RULE b/src/licensedcode/data/rules/mit_nuget_url_92.RULE index 1375723fec1..7d5869e901a 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_92.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_92.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/mxjones/RedBus/master/LICENSE +--- + https://raw.githubusercontent.com/mxjones/RedBus/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_92.yml b/src/licensedcode/data/rules/mit_nuget_url_92.yml deleted file mode 100644 index 36bcb014a8e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/mxjones/RedBus/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_93.RULE b/src/licensedcode/data/rules/mit_nuget_url_93.RULE index f84113daced..ac3839668c1 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_93.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_93.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/NinetailLabs/VaraniumSharp/master/LICENSE +--- + https://raw.githubusercontent.com/NinetailLabs/VaraniumSharp/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_93.yml b/src/licensedcode/data/rules/mit_nuget_url_93.yml deleted file mode 100644 index 3c64009ac84..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/NinetailLabs/VaraniumSharp/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_94.RULE b/src/licensedcode/data/rules/mit_nuget_url_94.RULE index 0fbb6e1bca4..6e5e626be0b 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_94.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_94.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/Pro-Coded/Pro.NBench.xUnit/master/LICENSE +--- + https://raw.githubusercontent.com/Pro-Coded/Pro.NBench.xUnit/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_94.yml b/src/licensedcode/data/rules/mit_nuget_url_94.yml deleted file mode 100644 index 28d9eb2a290..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/Pro-Coded/Pro.NBench.xUnit/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_nuget_url_95.RULE b/src/licensedcode/data/rules/mit_nuget_url_95.RULE index 59cfc6ed395..c533666587b 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_95.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_95.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/PSWinCom/PSWinComGatewayClient/master/LICENSE.txt +--- + https://raw.githubusercontent.com/PSWinCom/PSWinComGatewayClient/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_95.yml b/src/licensedcode/data/rules/mit_nuget_url_95.yml deleted file mode 100644 index ce07d27231e..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_95.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/PSWinCom/PSWinComGatewayClient/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_nuget_url_96.RULE b/src/licensedcode/data/rules/mit_nuget_url_96.RULE index 04e86d9dcd1..09daae7dfb7 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_96.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_96.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/rakijah/CSGSI/master/LICENSE.md +--- + https://raw.githubusercontent.com/rakijah/CSGSI/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_96.yml b/src/licensedcode/data/rules/mit_nuget_url_96.yml deleted file mode 100644 index 5a9a618c044..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/rakijah/CSGSI/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_97.RULE b/src/licensedcode/data/rules/mit_nuget_url_97.RULE index 9b5f1faa5ef..12c9b87713c 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_97.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_97.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE.md +--- + https://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_97.yml b/src/licensedcode/data/rules/mit_nuget_url_97.yml deleted file mode 100644 index 351cec0320d..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/rebus-org/Rebus/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_98.RULE b/src/licensedcode/data/rules/mit_nuget_url_98.RULE index 993e99ba2b5..ad1b66814d1 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_98.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_98.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/rebus-org/Tababular/master/LICENSE.md +--- + https://raw.githubusercontent.com/rebus-org/Tababular/master/LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_98.yml b/src/licensedcode/data/rules/mit_nuget_url_98.yml deleted file mode 100644 index 7ee831cf21d..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/rebus-org/Tababular/master/LICENSE.md diff --git a/src/licensedcode/data/rules/mit_nuget_url_99.RULE b/src/licensedcode/data/rules/mit_nuget_url_99.RULE index c747c988b67..c0070b82321 100644 --- a/src/licensedcode/data/rules/mit_nuget_url_99.RULE +++ b/src/licensedcode/data/rules/mit_nuget_url_99.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/RomanBelkov/XZ.NET/master/LICENSE +--- + https://raw.githubusercontent.com/RomanBelkov/XZ.NET/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_nuget_url_99.yml b/src/licensedcode/data/rules/mit_nuget_url_99.yml deleted file mode 100644 index 2e89508c989..00000000000 --- a/src/licensedcode/data/rules/mit_nuget_url_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/RomanBelkov/XZ.NET/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_or_afl-2.1_or_python_1.RULE b/src/licensedcode/data/rules/mit_or_afl-2.1_or_python_1.RULE index f0d242d2482..9429da0b84f 100644 --- a/src/licensedcode/data/rules/mit_or_afl-2.1_or_python_1.RULE +++ b/src/licensedcode/data/rules/mit_or_afl-2.1_or_python_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit OR afl-2.1 OR python +is_license_notice: yes +relevance: 100 +--- + dual-licensed software. It is available under the terms of the MIT license, or the Academic Free License version 2.1. The full text of each license agreement is included below. This code is also diff --git a/src/licensedcode/data/rules/mit_or_afl-2.1_or_python_1.yml b/src/licensedcode/data/rules/mit_or_afl-2.1_or_python_1.yml deleted file mode 100644 index 1862ac915a1..00000000000 --- a/src/licensedcode/data/rules/mit_or_afl-2.1_or_python_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR afl-2.1 OR python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_agpl-1.0_1.RULE b/src/licensedcode/data/rules/mit_or_agpl-1.0_1.RULE index c854b4f7e41..5b6de7971e5 100644 --- a/src/licensedcode/data/rules/mit_or_agpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_agpl-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR agpl-1.0 +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.affero.org/oagpl.html +--- + ### MIT @@ -10,4 +18,4 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ### AGPL v1 -http://www.affero.org/oagpl.html +http://www.affero.org/oagpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_agpl-1.0_1.yml b/src/licensedcode/data/rules/mit_or_agpl-1.0_1.yml deleted file mode 100644 index 18057e059d1..00000000000 --- a/src/licensedcode/data/rules/mit_or_agpl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR agpl-1.0 -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.affero.org/oagpl.html diff --git a/src/licensedcode/data/rules/mit_or_agpl-1.0_2.RULE b/src/licensedcode/data/rules/mit_or_agpl-1.0_2.RULE index 959c1fde39b..6deec98d0b9 100644 --- a/src/licensedcode/data/rules/mit_or_agpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/mit_or_agpl-1.0_2.RULE @@ -1,5 +1,13 @@ +--- +license_expression: mit OR agpl-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +referenced_filenames: + - LICENSE.txt +--- + # Licensing: This project is dual licensed under the MIT license and under the AGPLv1 license, -read more in LICENSE.txt - +read more in LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_agpl-1.0_2.yml b/src/licensedcode/data/rules/mit_or_agpl-1.0_2.yml deleted file mode 100644 index 5becd2c75df..00000000000 --- a/src/licensedcode/data/rules/mit_or_agpl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR agpl-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_1.RULE index 434d778cd8e..55e310637b3 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_tag: yes +relevance: 99 +--- + MIT / Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_1.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_1.yml deleted file mode 100644 index 6c50f807cb5..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_10.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_10.RULE index 032327483cb..7e062c268f0 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_10.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + This work is dual-licensed and distributed under the (1) MIT License and (2) Apache License, Version 2.0. Please see LICENSE-MIT and LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_10.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_10.yml deleted file mode 100644 index c716162e0b9..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_11.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_11.RULE index 24949071e19..14694aa51c0 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_11.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_11.RULE @@ -1 +1,7 @@ -This work is dual-licensed and distributed under the (1) MIT License and (2) Apache License, Version 2.0. \ No newline at end of file +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +This work is dual-licensed and distributed under the (1) MIT License and (2) Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_11.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_11.yml deleted file mode 100644 index c716162e0b9..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_12.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_12.RULE index 2d3e0469e98..df3bc1e0c1d 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_12.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_12.RULE @@ -1 +1,7 @@ -dual-licensed and distributed under the (1) MIT License and (2) Apache License, Version 2.0. \ No newline at end of file +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +dual-licensed and distributed under the (1) MIT License and (2) Apache License, Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_12.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_12.yml deleted file mode 100644 index c716162e0b9..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_13.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_13.RULE index be9cdcb5973..6adb554f180 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_13.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License: Your choice of MIT or Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_13.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_13.yml deleted file mode 100644 index c716162e0b9..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_14.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_14.RULE index f3e127d3b31..1c37fd680da 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_14.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_tag: yes +relevance: 100 +--- + license = "MIT OR Apache-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_14.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_14.yml deleted file mode 100644 index 63e312fdebf..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_15.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_15.RULE index 52428cf0ec2..6536a3b7cb5 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_15.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_tag: yes +relevance: 100 +--- + "MIT OR Apache-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_15.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_15.yml deleted file mode 100644 index 63e312fdebf..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_16.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_16.RULE index e6239fd391c..06db10cdd9e 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_16.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_16.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + Licensed under the MIT license: http:www.opensource.org/licenses/mit-license.php Also licenced under the Apache License, 2.0: http:opensource.org/licenses/apache2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_16.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_16.yml deleted file mode 100644 index 98080ff69be..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_17.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_17.RULE index a110713c55d..514194b44d1 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_17.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_17.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ### License diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_17.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_17.yml deleted file mode 100644 index b3253202886..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_17.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_18.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_18.RULE index 8e78c9f4448..dc26319265c 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_18.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_18.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + // Licensed under the Apache License, Version 2.0 or the MIT license // , at your diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_18.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_18.yml deleted file mode 100644 index b3253202886..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_18.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_19.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_19.RULE index c406dae80a5..40b708b571b 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_19.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_19.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + License This project is licensed under either of diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_19.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_19.yml deleted file mode 100644 index b3253202886..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_19.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_2.RULE index 00cd3e64f32..d3bf3856498 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + // Licensed under the Apache License, Version 2.0 or the MIT license // , at your diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_2.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_2.yml deleted file mode 100644 index 59a3374783f..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_20.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_20.RULE index fc058c5f78d..055ea97a9db 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_20.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_20.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 or the MIT license , at your option. All files in the project carrying such notice may not be copied, modified, or distributed except -according to those terms. +according to those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_20.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_20.yml deleted file mode 100644 index b3253202886..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_20.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_21.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_21.RULE index b02f87af503..e78a82e6a22 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_21.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_21.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +notes: There is some ambiguity in the wording, but this is a choice. +--- + distributed under the terms of both the MIT license and the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_21.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_21.yml deleted file mode 100644 index 4a74212a442..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_21.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -notes: There is some ambiguity in the wording, but this is a choice. diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_22.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_22.RULE index a4200eaef03..b88ed99fd99 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_22.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual Licensed MIT and Apache 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_22.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_22.yml deleted file mode 100644 index c716162e0b9..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_3.RULE index e9da50ac082..c42662af950 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_3.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + Project is dual-licensed under Apache 2.0 and MIT terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_3.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_3.yml deleted file mode 100644 index de8a5bb10b6..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_4.RULE index c27827f9c50..a148aad32c2 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_4.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Licensed under the Apache License, Version 2.0 or the MIT license , at your option. All files in the project carrying such notice may not be copied, modified, or distributed except -according to those terms. +according to those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_4.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_4.yml deleted file mode 100644 index 59a3374783f..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_4.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_5.RULE index 0882c2a5375..cc1717742d4 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mit OR apache-2.0 +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +ignorable_urls: + - http://rust-lang.org/COPYRIGHT +--- + http://rust-lang.org/COPYRIGHT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_5.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_5.yml deleted file mode 100644 index c8c7ed94a34..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -ignorable_urls: - - http://rust-lang.org/COPYRIGHT diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_6.RULE index b6bff5e1cfe..5cae7c4f1bd 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_6.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + License This project is licensed under either of diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_6.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_6.yml deleted file mode 100644 index 59a3374783f..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_6.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_7.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_7.RULE index b3b45adf24a..6b6528e9205 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_7.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ### License diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_7.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_7.yml deleted file mode 100644 index 59a3374783f..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_7.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_8.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_8.RULE index 960a6af130a..958b2eaa3f1 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_8.RULE @@ -1,5 +1,11 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + At your option you may choose either of the following licenses: * The MIT License (MIT) - * The Apache License 2.0 (Apache-2.0) - + * The Apache License 2.0 (Apache-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_8.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_8.yml deleted file mode 100644 index de8a5bb10b6..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_9.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_9.RULE index 56071383960..23db490db54 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_9.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-MIT + - LICENSE +--- + License This work is dual-licensed and distributed under the (1) MIT License and (2) Apache License, Version 2.0. Please see LICENSE-MIT and LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_9.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_9.yml deleted file mode 100644 index 2068c68acc0..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-MIT - - LICENSE diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_1.RULE index 4de9cb3e231..c6f144acb9e 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: (mit OR apache-2.0) AND other-permissive +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-APACHE + - LICENSE-MIT + - COPYRIGHT +--- + ## License Rust is primarily distributed under the terms of {{both the MIT license @@ -5,4 +15,4 @@ and the Apache License}} (Version 2.0), with {{portions covered by various BSD-like licenses.}} See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT), and -[COPYRIGHT](COPYRIGHT) for details. +[COPYRIGHT](COPYRIGHT) for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_1.yml deleted file mode 100644 index 55b9251396c..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: (mit OR apache-2.0) AND other-permissive -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-APACHE - - LICENSE-MIT - - COPYRIGHT diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_2.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_2.RULE index 95a9de40851..18067c2b4f8 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_2.RULE @@ -1 +1,8 @@ +--- +license_expression: (mit OR apache-2.0) AND other-permissive +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +--- + The Rust Project is dual-licensed under Apache 2.0 and MIT terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_2.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_2.yml deleted file mode 100644 index 6136c1506c0..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: (mit OR apache-2.0) AND other-permissive -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_3.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_3.RULE index 57a6d2653ab..d85312a69a4 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: (mit OR apache-2.0) AND other-permissive +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.apache.org/licenses/LICENSE-2.0 + - https://thanks.rust-lang.org/ +--- + Copyrights in the Rust project are retained by their contributors. No copyright assignment is required to contribute to the Rust project. @@ -8,4 +19,4 @@ https://thanks.rust-lang.org Except as otherwise noted (below and/or in individual files), Rust is licensed under the {{Apache License, Version 2.0}} or {{or the MIT license}} - or , {{at your option}}. + or , {{at your option}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_3.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_3.yml deleted file mode 100644 index 47b157b39ea..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: (mit OR apache-2.0) AND other-permissive -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.apache.org/licenses/LICENSE-2.0 - - https://thanks.rust-lang.org/ diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_4.RULE b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_4.RULE index caa407fc3d9..0b19468eba0 100644 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_4.RULE +++ b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: (mit OR apache-2.0) AND other-permissive +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://thanks.rust-lang.org/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Copyrights in the Rust project are retained by their contributors. No copyright assignment is required to contribute to the Rust project. diff --git a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_4.yml b/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_4.yml deleted file mode 100644 index cc3f12519ce..00000000000 --- a/src/licensedcode/data/rules/mit_or_apache-2.0_and_other-permissive_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: (mit OR apache-2.0) AND other-permissive -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://thanks.rust-lang.org/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/mit_or_artistic-perl-1.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/mit_or_artistic-perl-1.0_or_gpl-1.0-plus_1.RULE index 5ed079ead9d..241cb054eac 100644 --- a/src/licensedcode/data/rules/mit_or_artistic-perl-1.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mit_or_artistic-perl-1.0_or_gpl-1.0-plus_1.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mit OR artistic-perl-1.0 OR gpl-1.0-plus +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +--- + It is assumed that these translations are licensed under the same terms as the rest of the Locale-Maketext-Simple distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_artistic-perl-1.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/mit_or_artistic-perl-1.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 4d27ad3a04d..00000000000 --- a/src/licensedcode/data/rules/mit_or_artistic-perl-1.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR artistic-perl-1.0 OR gpl-1.0-plus -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mit_or_beerware_1.RULE b/src/licensedcode/data/rules/mit_or_beerware_1.RULE index cb950289cc1..aa6497ddd93 100644 --- a/src/licensedcode/data/rules/mit_or_beerware_1.RULE +++ b/src/licensedcode/data/rules/mit_or_beerware_1.RULE @@ -1 +1,7 @@ -Dual licensed under MIT and Beerware license \ No newline at end of file +--- +license_expression: mit OR beerware +is_license_notice: yes +relevance: 100 +--- + +Dual licensed under MIT and Beerware license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_beerware_1.yml b/src/licensedcode/data/rules/mit_or_beerware_1.yml deleted file mode 100644 index f08b4ae4b79..00000000000 --- a/src/licensedcode/data/rules/mit_or_beerware_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR beerware -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_boost-1.0_1.RULE b/src/licensedcode/data/rules/mit_or_boost-1.0_1.RULE index 1714c4117e1..28157975ddf 100644 --- a/src/licensedcode/data/rules/mit_or_boost-1.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_boost-1.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: mit OR boost-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE_1_0.txt +ignorable_urls: + - https://www.boost.org/LICENSE_1_0.txt +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without diff --git a/src/licensedcode/data/rules/mit_or_boost-1.0_1.yml b/src/licensedcode/data/rules/mit_or_boost-1.0_1.yml deleted file mode 100644 index 104dee67abd..00000000000 --- a/src/licensedcode/data/rules/mit_or_boost-1.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mit OR boost-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE_1_0.txt -ignorable_urls: - - https://www.boost.org/LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/mit_or_bsd-new_1.RULE b/src/licensedcode/data/rules/mit_or_bsd-new_1.RULE index 3ccfa999674..1425933b7b3 100644 --- a/src/licensedcode/data/rules/mit_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/mit_or_bsd-new_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR bsd-new +is_license_tag: yes +relevance: 99 +--- + Dual MIT/BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_bsd-new_1.yml b/src/licensedcode/data/rules/mit_or_bsd-new_1.yml deleted file mode 100644 index 334fa5374c4..00000000000 --- a/src/licensedcode/data/rules/mit_or_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR bsd-new -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_1.RULE index e0c583c851d..439fcdabc6b 100644 --- a/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_1.RULE @@ -1 +1,8 @@ +--- +license_expression: mit OR bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +notes: dojo-style notice +--- + Released under the MIT, BSD, and GPL Licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 01408e564c9..00000000000 --- a/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -notes: dojo-style notice diff --git a/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_2.RULE index 23576488262..fe2cf7e661e 100644 --- a/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR bsd-new OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Released under MIT, BSD and GPL license. Comply with at least one. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 13002c05baa..00000000000 --- a/src/licensedcode/data/rules/mit_or_bsd-new_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR bsd-new OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_bsd-zero_or_cc0-1.0_1.RULE b/src/licensedcode/data/rules/mit_or_bsd-zero_or_cc0-1.0_1.RULE index eb03658e29e..080dddad725 100644 --- a/src/licensedcode/data/rules/mit_or_bsd-zero_or_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_bsd-zero_or_cc0-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR bsd-zero OR cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + Multi-licensed under MIT, 0BSD, and CC0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_bsd-zero_or_cc0-1.0_1.yml b/src/licensedcode/data/rules/mit_or_bsd-zero_or_cc0-1.0_1.yml deleted file mode 100644 index 63d1f47945d..00000000000 --- a/src/licensedcode/data/rules/mit_or_bsd-zero_or_cc0-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR bsd-zero OR cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_cc0-1.0_1.RULE b/src/licensedcode/data/rules/mit_or_cc0-1.0_1.RULE index 7ac313e2473..271f46fe631 100644 --- a/src/licensedcode/data/rules/mit_or_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_cc0-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit OR cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + can also be used under the same license that libgit2 provides their examples under (CC0, currently \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_cc0-1.0_1.yml b/src/licensedcode/data/rules/mit_or_cc0-1.0_1.yml deleted file mode 100644 index 0c32f677872..00000000000 --- a/src/licensedcode/data/rules/mit_or_cc0-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_cddl-1.0_1.RULE b/src/licensedcode/data/rules/mit_or_cddl-1.0_1.RULE index 709d2e0d929..4f805b69856 100644 --- a/src/licensedcode/data/rules/mit_or_cddl-1.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_cddl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR cddl-1.0 +is_license_notice: yes +relevance: 99 +--- + This software is dual-licensed MIT and CDDL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_cddl-1.0_1.yml b/src/licensedcode/data/rules/mit_or_cddl-1.0_1.yml deleted file mode 100644 index fd4f86d6e39..00000000000 --- a/src/licensedcode/data/rules/mit_or_cddl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR cddl-1.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_or_commercial-option.RULE b/src/licensedcode/data/rules/mit_or_commercial-option.RULE index dcd16e85ea2..ad922f31255 100644 --- a/src/licensedcode/data/rules/mit_or_commercial-option.RULE +++ b/src/licensedcode/data/rules/mit_or_commercial-option.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit OR commercial-license +is_license_notice: yes +--- + This control is dual licensed: You can use it for free under the MIT licence below or, diff --git a/src/licensedcode/data/rules/mit_or_commercial-option.yml b/src/licensedcode/data/rules/mit_or_commercial-option.yml deleted file mode 100644 index aed3b42fe76..00000000000 --- a/src/licensedcode/data/rules/mit_or_commercial-option.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit OR commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_or_commercial-option_1.RULE b/src/licensedcode/data/rules/mit_or_commercial-option_1.RULE index 9e9e3332edc..9431383029e 100644 --- a/src/licensedcode/data/rules/mit_or_commercial-option_1.RULE +++ b/src/licensedcode/data/rules/mit_or_commercial-option_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR commercial-license +is_license_text: yes +minimum_coverage: 80 +ignorable_emails: + - info@nousguide.com +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/mit_or_commercial-option_1.yml b/src/licensedcode/data/rules/mit_or_commercial-option_1.yml deleted file mode 100644 index 0bd5a11e8ce..00000000000 --- a/src/licensedcode/data/rules/mit_or_commercial-option_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR commercial-license -is_license_text: yes -minimum_coverage: 80 -ignorable_emails: - - info@nousguide.com diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_1.RULE index e6502de45cc..bb644b94d86 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + ## License Dual licensed under the MIT or GPL licenses: diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 2c055fae785..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_10.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_10.RULE index aad54d0b5e8..4214d7a62c8 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_10.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html + - https://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT or GPL licenses: * https://www.opensource.org/licenses/mit-license.php * https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_10.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_10.yml deleted file mode 100644 index 2d845b4a5f7..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_11.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_11.RULE index 9694807483b..2181280388e 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_11.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_11.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html + - https://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT and GPL licenses: * https://www.opensource.org/licenses/mit-license.php * https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_11.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_11.yml deleted file mode 100644 index 2d845b4a5f7..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_12.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_12.RULE index 0e687ded659..f2d2fade70d 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_12.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_12.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html + - https://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT or GPL license: * https://www.opensource.org/licenses/mit-license.php * https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_12.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_12.yml deleted file mode 100644 index 2d845b4a5f7..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_13.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_13.RULE index 39d771389e2..a1d6e7d3b1c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_13.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_13.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html + - https://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT and GPL license: * https://www.opensource.org/licenses/mit-license.php * https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_13.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_13.yml deleted file mode 100644 index 2d845b4a5f7..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.html - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_14.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_14.RULE index 7145ddef483..a19eaf8e2ce 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_14.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_14.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + License: // This code is available under the MIT or GPL licenses, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_14.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_14.yml deleted file mode 100644 index dc862909809..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_15.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_15.RULE index e017b39d1f0..a20beb03f27 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_15.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_15.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This code is available under the MIT or GPL licenses, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_15.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_15.yml deleted file mode 100644 index dc862909809..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_16.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_16.RULE index 68605aa4c05..3b6ad45328b 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_16.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_16.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + The software dual licensed under the MIT and GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_16.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_16.yml deleted file mode 100644 index dc862909809..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_17.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_17.RULE index 2742c9b26d8..6208209c384 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_17.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_17.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + mit or GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_17.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_17.yml deleted file mode 100644 index f26c5e64017..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_18.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_18.RULE index 8dfab6cf0ef..9f7d614e1cd 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_18.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_18.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + The compiler source code is released under the terms of the MIT X11 or GNU GPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_18.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_18.yml deleted file mode 100644 index dc862909809..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_19.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_19.RULE index a79e83380fc..88ae22255f4 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_19.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_19.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + released under the terms of the MIT X11 or GNU GPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_19.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_19.yml deleted file mode 100644 index dc862909809..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_2.RULE index 2c05c0cad61..23315e326b8 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + Dual licensed under the MIT or GPL licenses: + http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 2c055fae785..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_20.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_20.RULE index cdafcad4a2d..791b33284ca 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_20.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_20.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + MIT X11 or GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_20.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_20.yml deleted file mode 100644 index ab51e7e6b50..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_21.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_21.RULE index 80e958624c7..dd8020dd23f 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_21.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + Dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php - https://www.gnu.org/licenses/gpl.html + https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_21.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_21.yml deleted file mode 100644 index 7008e10b8ff..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_22.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_22.RULE index 649f7d08574..cbd108f8798 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_22.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + * Dual licensed under the MIT or GPL license: * http://www.opensource.org/licenses/mit-license.php * https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_22.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_22.yml deleted file mode 100644 index 7008e10b8ff..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_23.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_23.RULE index 1526c44ff9c..574597bfb65 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_23.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_23.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + is dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_23.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_23.yml deleted file mode 100644 index 7008e10b8ff..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_24.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_24.RULE index 08cdec38ec5..9b13367fc07 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_24.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_24.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + Dual licensed under the MIT or GPL licenses: + http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_24.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_24.yml deleted file mode 100644 index 7008e10b8ff..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_25.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_25.RULE index ff38dfddda9..fbf80929f07 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_25.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_25.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + ## License Dual licensed under the MIT or GPL licenses: diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_25.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_25.yml deleted file mode 100644 index 7008e10b8ff..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_26.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_26.RULE index 3132948c44c..ffbf6ee1bb3 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_26.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_26.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + * Dual licensed under the MIT and GPL license: * http://www.opensource.org/licenses/mit-license.php * https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_26.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_26.yml deleted file mode 100644 index 7008e10b8ff..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_27.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_27.RULE index 72a9208f9f5..15d80fafc5f 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_27.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_27.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + * Dual licensed under the GPL (https://www.gnu.org/licenses/gpl.html) * and MIT (http://www.opensource.org/licenses/mit-license.php) licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_27.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_27.yml deleted file mode 100644 index 4f73e560e4c..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_27.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_28.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_28.RULE index d5ac5c0e2f2..f1af1fc40f3 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_28.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_28.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + * This TipTip jQuery plug-in is dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_28.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_28.yml deleted file mode 100644 index 7008e10b8ff..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_3.RULE index 1681d9926d1..1030f5e3c6b 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_3.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + Dual licensed under the MIT or GPL licenses: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_3.yml deleted file mode 100644 index dc862909809..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_4.RULE index 213af8fb08e..8b53beafb38 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT or GPL licenses: * http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_4.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_4.yml deleted file mode 100644 index 8c1b41e31d6..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_5.RULE index 2e717213f29..7fe98a4428b 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_5.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_5.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_5.yml deleted file mode 100644 index 8c1b41e31d6..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_6.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_6.RULE index d3247337545..44dde6316cf 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_6.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT or GPL licenses: * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_6.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_6.yml deleted file mode 100644 index 9bdc7a4405a..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_7.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_7.RULE index 493aa44eb20..946967a4d01 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_7.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_7.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT and GPL licenses: * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_7.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_7.yml deleted file mode 100644 index 9bdc7a4405a..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_8.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_8.RULE index 383490c5280..c8ac5260d62 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_8.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT or GPL license: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_8.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_8.yml deleted file mode 100644 index 2c055fae785..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_9.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_9.RULE index e01d1660eb1..f90df526aec 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_9.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT and GPL license: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_9.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_9.yml deleted file mode 100644 index 2c055fae785..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_or_artistic-perl-1.0_1.RULE b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_or_artistic-perl-1.0_1.RULE index 5c86e4eef48..223bcef309c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_or_artistic-perl-1.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_or_artistic-perl-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit OR gpl-1.0-plus OR artistic-perl-1.0 +is_license_notice: yes +relevance: 100 +--- + This software is released under the MIT license cited below. Additionally, when this software is distributed with Perl Kit, Version 5, you may also redistribute it and/or modify it under the same terms as Perl itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_or_artistic-perl-1.0_1.yml b/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_or_artistic-perl-1.0_1.yml deleted file mode 100644 index edd976caf27..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-1.0-plus_or_artistic-perl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus OR artistic-perl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus.RULE index 56bdf356adb..19d2c9f5130 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus.RULE @@ -1 +1,7 @@ - Licensed under the X11 license or the GPL v2 (or later) +--- +license_expression: mit OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + + Licensed under the X11 license or the GPL v2 (or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus.yml deleted file mode 100644 index 6177f78906a..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_1.RULE index 1a2318d21b6..ebeb0576a79 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + license = "MIT/GPL", \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 400921b6ca7..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE index 293d55643d3..99d94f65bb7 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/lgpl-2.0.txt +--- + component is licensed under the following licenses, choose one that suits your needs better. - MIT license diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index 0ca57ea4f27..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE index ffdb1b4d56b..fad09af1e5a 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - license.txt +--- + Licensed under MIT license, GNU GPL 2 or later, GNU LGPL 2 or later, see license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index 41b721705f6..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_3.RULE index bffba84da8b..c4db86de6f8 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/lgpl-2.0.txt +--- + File uploader component is licensed under the following licenses, choose one that suits your needs better. - MIT license diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_3.yml deleted file mode 100644 index 2815933a78d..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE index 79fa222233e..6dfc199888d 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt + - https://www.gnu.org/licenses/lgpl-2.0.txt +--- + File uploader component is licensed under the following licenses, choose one that suits your needs better. - MIT license diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.yml deleted file mode 100644 index d5dd8f89eb0..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt - - https://www.gnu.org/licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_5.RULE index 3e0cb2185d0..b0cd03d198f 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.txt + - https://www.gnu.org/licenses/lgpl-2.0.txt +--- + component is licensed under the following licenses, choose one that suits your needs better. - MIT license diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_5.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_5.yml deleted file mode 100644 index 3247cdb8eae..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0-plus_or_lgpl-2.0-plus_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.txt - - https://www.gnu.org/licenses/lgpl-2.0.txt diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0.RULE index c6d2cce0a15..305677c6217 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://jquery.org/license +--- + Dual licensed under the MIT or GPL Version 2 licenses. -http://jquery.org/license +http://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0.yml deleted file mode 100644 index 95786e0ed29..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_1.RULE index d11433181c5..3e7b9cdbc46 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: from the linux kernel and in this context module.h states that GPL measn GPL 2.0 only + See https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/linux/module.h?h=v4.20-rc7#n180 +--- + MODULE_LICENSE Dual MIT/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_1.yml deleted file mode 100644 index eb2cd904602..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: from the linux kernel and in this context module.h states that GPL measn GPL 2.0 only - See https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/linux/module.h?h=v4.20-rc7#n180 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_10.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_10.RULE index 7841a21622b..950969db32f 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_10.RULE @@ -1 +1,11 @@ - * Dual licensed under the MIT (/examples/mit-license.txt) and GPL (/examples/gpl-license.txt) licenses. +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - examples/mit-license.txt + - examples/gpl-license.txt +notes: always gpl2 with this wording +--- + + * Dual licensed under the MIT (/examples/mit-license.txt) and GPL (/examples/gpl-license.txt) licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_10.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_10.yml deleted file mode 100644 index 839278bca0c..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - examples/mit-license.txt - - examples/gpl-license.txt -notes: always gpl2 with this wording diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_11.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_11.RULE index d9296baefce..57ab7422b6c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_11.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - MIT-LICENSE.txt + - GPL-LICENSE.txt +notes: always gpl2 with this wording +--- + Dual licensed under the MIT (MIT-LICENSE.txt) -and GPL (GPL-LICENSE.txt) licenses. +and GPL (GPL-LICENSE.txt) licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_11.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_11.yml deleted file mode 100644 index 97056541335..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - MIT-LICENSE.txt - - GPL-LICENSE.txt -notes: always gpl2 with this wording diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_12.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_12.RULE index d38f368848e..30e6bf77018 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_12.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 99 +notes: gpl2 here, not 3 or later +ignorable_urls: + - http://benalman.com/about/license/ +--- + Dual licensed under the MIT and GPL licenses. -http://benalman.com/about/license/ +http://benalman.com/about/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_12.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_12.yml deleted file mode 100644 index 6c00cb7f04e..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 99 -notes: gpl2 here, not 3 or later -ignorable_urls: - - http://benalman.com/about/license/ diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_13.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_13.RULE index 06f3a8b50d9..0a2c38184f2 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - filamentgroup.com/examples/mit-license.txt + - filamentgroup.com/examples/gpl-license.txt +notes: always gpl2 with this wording +--- + Dual licensed under the MIT (filamentgroup.com/examples/mit-license.txt) and GPL (filamentgroup.com/examples/gpl-license.txt) licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_13.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_13.yml deleted file mode 100644 index 236ce8f7e3d..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - filamentgroup.com/examples/mit-license.txt - - filamentgroup.com/examples/gpl-license.txt -notes: always gpl2 with this wording diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_14.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_14.RULE index a0f2aef6567..fafd631ca9b 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_14.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/gpl-license.php + - http://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_14.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_14.yml deleted file mode 100644 index 80bf997b9ac..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/gpl-license.php - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_15.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_15.RULE index a090c007fbe..e00eb6179c7 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + Licenses: MIT/GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_15.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_15.yml deleted file mode 100644 index d53119bfaf7..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_16.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_16.RULE index 3f94436c10e..bbbcb6f7c62 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under a dual license system (MIT or GPL version 2). This means you are free to choose with which of both licenses (MIT or GPL version 2) you want to use this library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_16.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_16.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_17.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_17.RULE index d5968b6dfb3..c86dbd39c9c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under a dual license system (MIT or GPL version 2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_17.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_17.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_18.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_18.RULE index 46516338494..bd255082caf 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + MIT or GPL version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_18.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_18.yml deleted file mode 100644 index a88c196b959..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_19.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_19.RULE index 3e5b54079d2..824f2c8cb0f 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_19.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_19.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html + - http://www.opensource.org/licenses/mit-license.php +--- + Dual licensed under the MIT and GPL licenses http://www.opensource.org/licenses/mit-license.php http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_19.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_19.yml deleted file mode 100644 index dbbfee29e6c..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_2.RULE index 9e185e7dc97..3b2eb7af5f4 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 100 +ignorable_urls: + - http://www.opensource.org/licenses/GPL-2.0 + - http://www.opensource.org/licenses/mit-license.php +--- + Dual licensed under the MIT or GPL Version 2 licenses. http://www.opensource.org/licenses/mit-license.php -http://www.opensource.org/licenses/GPL-2.0 +http://www.opensource.org/licenses/GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_2.yml deleted file mode 100644 index 0fd42c9e9ba..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 100 -ignorable_urls: - - http://www.opensource.org/licenses/GPL-2.0 - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_20.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_20.RULE index 950e2df11e6..f351f47e54c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_20.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-2.0.html + - https://www.opensource.org/licenses/mit-license.php +--- + Dual licensed under the MIT and GPL licenses https://www.opensource.org/licenses/mit-license.php https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_20.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_20.yml deleted file mode 100644 index 24a62ae4ae6..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-2.0.html - - https://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_21.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_21.RULE index 0152480852f..0aa65e7315d 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual licensed under the MIT and GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_21.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_21.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_22.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_22.RULE index a26160ff832..24aa4f9bf55 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + libraries dual-licensed under the MIT and GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_22.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_22.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_23.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_23.RULE index 1a4d276cac2..f8b955f1b31 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_23.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + libraries dual-licensed under the MIT and GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_23.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_23.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_24.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_24.RULE index b1ed2e8a67a..af4a516b428 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + libraries dual-licensed under the MIT or GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_24.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_24.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_25.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_25.RULE index c99d351c27b..748ee3bf554 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + libraries dual-licensed under the MIT or GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_25.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_25.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_26.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_26.RULE index 77143347800..923c8933d1d 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_26.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_26.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the MIT or GPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_26.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_26.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_27.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_27.RULE index d9c4dfc03ca..cc0c26c02ff 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_27.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the MIT or GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_27.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_27.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_28.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_28.RULE index b49f1182a05..8068ab528ef 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_28.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual licensed under the MIT or GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_28.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_28.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_29.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_29.RULE index 4415e8279a8..225cdfdade4 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_29.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_29.RULE @@ -1 +1,7 @@ -license: licensed under the {{MIT or GPL}} licenses +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +license: licensed under the {{MIT or GPL}} licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_29.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_29.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_3.RULE index bf80e481901..4233d425b35 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + Licensed same as jquery - under the terms of either the MIT License or the GPL Version 2 License http://www.opensource.org/licenses/mit-license.php - http://www.gnu.org/licenses/gpl.html + http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_3.yml deleted file mode 100644 index d173f7fce8f..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_30.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_30.RULE index 03bb7e6acd6..c036489add4 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_30.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_30.RULE @@ -1 +1,7 @@ -license: licensed under the {{MIT or GPL}} license +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +license: licensed under the {{MIT or GPL}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_30.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_30.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_31.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_31.RULE index 6783b73341b..8a9728a65d2 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_31.RULE @@ -1 +1,7 @@ -license: Dual licensed under the {{MIT or GPL}} licenses. +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +license: Dual licensed under the {{MIT or GPL}} licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_31.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_31.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_32.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_32.RULE index 70bfcbe9087..d6618c08b91 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_32.RULE @@ -1 +1,7 @@ -license: Dual licensed under the {{MIT or GPL}} license. +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +license: Dual licensed under the {{MIT or GPL}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_32.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_32.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_33.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_33.RULE index ca986034b34..f5fa69997ee 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + @licenses: licensed under the MIT or GPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_33.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_33.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_34.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_34.RULE index 34e6ee7b983..be9a808a38c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_34.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_34.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + @licenses: licensed under the MIT or GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_34.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_34.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_35.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_35.RULE index a93966721f7..28ce92f4306 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_35.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + @licenses: Dual licensed under the MIT or GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_35.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_35.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_36.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_36.RULE index 445527df18b..0ce938286ec 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_36.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + @licenses: Dual licensed under the MIT or GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_36.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_36.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_37.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_37.RULE index 33a4e9f9448..caaec47bd13 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_37.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license: licensed under the MIT and GPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_37.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_37.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_38.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_38.RULE index c9614bfb8b6..9c6c40720fb 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_38.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license: licensed under the MIT and GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_38.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_38.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_39.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_39.RULE index 4cdca1173b5..1e537b0fe82 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_39.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license: Dual licensed under the MIT and GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_39.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_39.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_4.RULE index d2a2e29cd99..48d77926fbd 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: Always GPL2 in this wording. seen in the kernel as a modified MODULE_LICENSE macro +--- + LICENSE Dual MIT/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_4.yml deleted file mode 100644 index 38de03c86cd..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: Always GPL2 in this wording. seen in the kernel as a modified MODULE_LICENSE macro diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_40.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_40.RULE index b503e1fd7b8..5772ba08529 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_40.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_40.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + @licenses: licensed under the MIT and GPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_40.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_40.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_41.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_41.RULE index 4c13426bd44..d935e4502fb 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_41.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + @licenses: licensed under the MIT and GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_41.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_41.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_42.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_42.RULE index 2b9e49f7d7b..2055f1aa79f 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_42.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_42.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + @licenses: Dual licensed under the MIT and GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_42.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_42.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_43.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_43.RULE index 660c6935cec..65febc11160 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_43.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_43.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + @licenses: Dual licensed under the MIT and GPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_43.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_43.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_44.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_44.RULE index 189620a85bb..4d5217097db 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_44.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_44.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://docs.jquery.com/Licensing +--- + bundled under the terms of the MIT or GPL licenses, at your * choice. Please see {@link http://docs.jquery.com/Licensing} for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_44.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_44.yml deleted file mode 100644 index bccf4de89ae..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://docs.jquery.com/Licensing diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_45.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_45.RULE index 2d55054abd8..95773839565 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_45.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_45.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + bundled under the terms of the MIT or GPL licenses, at your * choice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_45.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_45.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_46.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_46.RULE index c7f317acf20..a2bfd583d8c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_46.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_46.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.gnu.org/licenses/gpl-2.0.html +--- + Dual licensed under the MIT or GPL licenses: [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_46.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_46.yml deleted file mode 100644 index 906046dea66..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_46.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_47.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_47.RULE index 3bb2e638b5e..257c46bd59f 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_47.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_47.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://opensource.org/licenses/MIT + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Dual licensed under the MIT or GPL licenses: [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) [https://www.gnu.org/licenses/gpl-2.0.html](https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_47.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_47.yml deleted file mode 100644 index 06ca936b03d..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_47.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://opensource.org/licenses/MIT - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_48.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_48.RULE index fcc2f12ff93..656907a73cc 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_48.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_48.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://jquery.org/license +--- + Dual licensed under the MIT and GPLv2 licenses just as jQuery is: http://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_48.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_48.yml deleted file mode 100644 index 61cacd8a955..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_49.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_49.RULE index 03f23051bb5..770294a8ff2 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_49.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_49.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual Licensed under the MIT and GPL v.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_49.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_49.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_5.RULE index 5a3c6cb3d21..8faee975051 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_tag: yes +relevance: 99 +minimum_coverage: 100 +notes: Mostly GPL2 in this wording. seen in the kernel as a modified MODULE_LICENSE macro +--- + Dual MIT/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_5.yml deleted file mode 100644 index c8c81cf3ad1..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_tag: yes -relevance: 99 -minimum_coverage: 100 -notes: Mostly GPL2 in this wording. seen in the kernel as a modified MODULE_LICENSE macro diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_50.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_50.RULE index 82050ab8462..4cb0506176c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_50.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_50.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual Licensed under the MIT and GPL v.2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_50.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_50.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_51.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_51.RULE index 6accba8cbe5..26189f41a66 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_51.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_51.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual Licensed under the MIT and GPL 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_51.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_51.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_52.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_52.RULE index e5310868111..98cafa55f59 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_52.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_52.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Dual Licensed under the MIT and GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_52.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_52.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_53.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_53.RULE index b420e6b2787..8ee74bd1c60 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_53.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_53.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://jquery.org/license +--- + Dual licensed under the MIT or GPL Version 2 licenses. https://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_53.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_53.yml deleted file mode 100644 index 3c19cf6c11f..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://jquery.org/license diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_54.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_54.RULE index bb09601012a..e23e5bb2f54 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_54.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_reference: yes +relevance: 99 +--- + MIT and GPL2 licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_54.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_54.yml deleted file mode 100644 index 90753c08d62..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_55.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_55.RULE index a39201aa665..0ce1d455055 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_55.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_55.RULE @@ -1 +1,8 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_tag: yes +relevance: 99 +notes: typo in license id +--- + License: MIT/GLPv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_55.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_55.yml deleted file mode 100644 index ce6c430f186..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_55.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_tag: yes -relevance: 99 -notes: typo in license id diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_56.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_56.RULE index bfa196743d0..d43b9000923 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_56.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_56.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 99 +--- + The script is licensed under the MIT and GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_56.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_56.yml deleted file mode 100644 index 22ac2c2c0e8..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_57.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_57.RULE index 9973cbd677e..35039b508d9 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_57.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_57.RULE @@ -1 +1,9 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://code.drewwilson.com/entry/tiptip-jquery-plugin +--- + The script is dual licensed under the MIT and GPL licenses. URI: http://code.drewwilson.com/entry/tiptip-jquery-plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_57.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_57.yml deleted file mode 100644 index 70fa7d57763..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://code.drewwilson.com/entry/tiptip-jquery-plugin diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_58.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_58.RULE index e904cd7ae54..bad93935c1d 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_58.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_58.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * The script is dual licensed under the MIT and GPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_58.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_58.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_59.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_59.RULE index 437c2f2376b..0decdd053bd 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_59.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_59.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + * The script is dual licenced under the MIT and GPL licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_59.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_59.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_6.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_6.RULE index 469a448823b..bf246ae3632 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: Always GPL2 in this wording. seen in the kernel as a modified MODULE_LICENSE macro +--- + DRIVER_LICENSE Dual MIT/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_6.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_6.yml deleted file mode 100644 index 38de03c86cd..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: Always GPL2 in this wording. seen in the kernel as a modified MODULE_LICENSE macro diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_60.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_60.RULE index 1a7bc55d4b8..162f7c1ccf8 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_60.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + mit or GPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_60.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_60.yml deleted file mode 100644 index d53119bfaf7..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_61.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_61.RULE index 7e1da76bb22..cc01449f9d0 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_61.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_61.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + jQuery (dual licensed under the MIT and GPL licenses) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_61.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_61.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_62.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_62.RULE index de3ffa784f1..25eb6431bac 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_62.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_62.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + plugin from jQuery (dual licensed under the MIT and GPL licenses) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_62.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_62.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_63.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_63.RULE index baa82236df6..2dd766d3606 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_63.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_63.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl.html +--- + Licensed same as jquery - under the terms of either the MIT License or the GPL Version 2 License http://www.opensource.org/licenses/mit-license.php - https://www.gnu.org/licenses/gpl.html + https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_63.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_63.yml deleted file mode 100644 index d2d02211173..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_63.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_64.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_64.RULE index 20427ac1a8d..57af14a59f9 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_64.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_64.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Dual licensed under the MIT or GPL licenses: [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT) [https://www.gnu.org/licenses/gpl-2.0.html](https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_64.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_64.yml deleted file mode 100644 index ced8d18ce2a..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_64.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_65.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_65.RULE index 8fef5fb27f8..05b504824ba 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_65.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_65.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mit-license.php + - https://www.gnu.org/licenses/gpl-2.0.html +--- + Dual licensed under the MIT and GPL licenses http://www.opensource.org/licenses/mit-license.php https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_65.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_65.yml deleted file mode 100644 index 970422c77e9..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_65.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php - - https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_66.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_66.RULE index f6e9130c971..f4b3095bdfd 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_66.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_66.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the The MIT License and the GNU General Public License version 2 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_66.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_66.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_7.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_7.RULE index 36b04170498..64a6cf8c838 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_7.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: jquery always used v2 when it was dual licensed +ignorable_urls: + - http://jquery.org/license/ +--- + Dual license, GPL or MIT See http://jquery.org/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_7.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_7.yml deleted file mode 100644 index 3266e8f54be..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: jquery always used v2 when it was dual licensed -ignorable_urls: - - http://jquery.org/license/ diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_8.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_8.RULE index 487a5d9ba9c..5b42a0c79da 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_8.RULE @@ -1,2 +1,12 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: jquery always used v2 when it was dual licensed +ignorable_urls: + - http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt + - http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt +--- + Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt) and -MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses. +MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_8.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_8.yml deleted file mode 100644 index 1cb5c57b81f..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: jquery always used v2 when it was dual licensed -ignorable_urls: - - http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt - - http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_9.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_9.RULE index 54c594d6099..ff1c08285ff 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_9.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +notes: jquery always used v2 when it was dual licensed +ignorable_urls: + - http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt + - http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt +--- + Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt) and MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses. - Please attribute the author if you use it. */ + Please attribute the author if you use it. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_9.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_9.yml deleted file mode 100644 index 1cb5c57b81f..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_9.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 -notes: jquery always used v2 when it was dual licensed -ignorable_urls: - - http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt - - http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_html5.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_html5.RULE index 496824b93bb..65b3cafb398 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_html5.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_html5.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - Copyright (c) 2014 Alexander Farkas + - copyrighted by the Free Software Foundation +ignorable_holders: + - Alexander Farkas + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + This software is licensed under a dual license system (MIT or GPL version 2). This means you are free to choose with which of both licenses (MIT or GPL version 2) you want to use this library. @@ -367,4 +380,4 @@ This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General -Public License instead of this License. +Public License instead of this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_html5.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_html5.yml deleted file mode 100644 index 40b5fe4dc5e..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_html5.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - Copyright (c) 2014 Alexander Farkas - - copyrighted by the Free Software Foundation -ignorable_holders: - - Alexander Farkas - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_html5_2.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_html5_2.RULE index 7a107af5c81..7237a977179 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_html5_2.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_html5_2.RULE @@ -1,5 +1,11 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + This software is licensed under a dual license system (MIT or GPL version 2). This means you are free to choose with which of both licenses (MIT or GPL version 2) you want to use this library. -The license texts of the MIT license and the GPL version 2 are as follows: +The license texts of the MIT license and the GPL version 2 are as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_html5_2.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_html5_2.yml deleted file mode 100644 index 938e45c5b78..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_html5_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_with_gcc-linking-exception-2.0_1.RULE b/src/licensedcode/data/rules/mit_or_gpl-2.0_with_gcc-linking-exception-2.0_1.RULE index e0dda624b35..c5732991777 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_with_gcc-linking-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-2.0_with_gcc-linking-exception-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit OR gpl-2.0 WITH gcc-linking-exception-2.0 +is_license_notice: yes +relevance: 100 +--- + The usage of the MIT license probably makes filter-repo compatible with everything, but just in case, these files can also be used under whatever open source license[1] that git.git or libgit2 use now or in the future diff --git a/src/licensedcode/data/rules/mit_or_gpl-2.0_with_gcc-linking-exception-2.0_1.yml b/src/licensedcode/data/rules/mit_or_gpl-2.0_with_gcc-linking-exception-2.0_1.yml deleted file mode 100644 index 44460883ede..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-2.0_with_gcc-linking-exception-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 WITH gcc-linking-exception-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_1.RULE index fee9114f454..ae64c6c15b5 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_1.RULE @@ -1 +1,7 @@ -MIT or GPLv3 +--- +license_expression: mit OR gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +MIT or GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_1.yml deleted file mode 100644 index f040fd7bb24..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_10.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_10.RULE index 89d2ec349ba..46e5eb6fd2c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_10.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + License is dual licensed under the terms of the MIT license (below) and the [GPL](http://www.gnu.org/licenses/gpl-3.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_10.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_10.yml deleted file mode 100644 index b92e42ce96a..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_11.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_11.RULE index 739bd5a572d..3f378252f70 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_11.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + dual licensed under the terms of the MIT license (below) and the [GPL](http://www.gnu.org/licenses/gpl-3.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_11.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_11.yml deleted file mode 100644 index b92e42ce96a..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_12.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_12.RULE index de15c62853a..ad49fb60ee0 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_12.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/janpaepke/ScrollMagic/master/LICENSE.md +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html +--- + is dual licensed under the terms of the MIT license (below) and the [GPL](http://www.gnu.org/licenses/gpl-3.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_12.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_12.yml deleted file mode 100644 index eeb4f3f309e..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/janpaepke/ScrollMagic/master/LICENSE.md -ignorable_urls: - - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_13.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_13.RULE index 65628a82283..1e81066dfa1 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_13.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/janpaepke/ScrollMagic/master/LICENSE.md +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- + is dual licensed under the terms of the MIT license (below) and the [GPL](https://www.gnu.org/licenses/gpl-3.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_13.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_13.yml deleted file mode 100644 index d7216dab795..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/janpaepke/ScrollMagic/master/LICENSE.md -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_14.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_14.RULE index dbf3b7e940a..1e66f86cb60 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_14.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- + dual licensed under the terms of the MIT license (below) and the [GPL](https://www.gnu.org/licenses/gpl-3.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_14.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_14.yml deleted file mode 100644 index fee39b0c64e..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_15.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_15.RULE index 32219e41bf8..77be875e833 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_15.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl-3.0.html +--- + License is dual licensed under the terms of the MIT license (below) and the [GPL](https://www.gnu.org/licenses/gpl-3.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_15.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_15.yml deleted file mode 100644 index fee39b0c64e..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_16.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_16.RULE index 17099832dd5..9ea49e115eb 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_16.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_16.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - COPYING +--- + This source code is licensed under both the MIT license (found in the LICENSE file) and the GPLv3 (found in the COPYING file). You may select, at your option, one of the above-listed licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_16.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_16.yml deleted file mode 100644 index 817a4997b97..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - COPYING 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 aa721b9945c..3cae3b67f1a 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 @@ -1 +1,9 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - 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 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_17.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_17.yml deleted file mode 100644 index 817a4997b97..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_18.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_18.RULE index ff4b5d03ced..0b049e69d29 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_18.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - COPYING +--- + Licensing This source code is licensed under both the MIT license (found in the LICENSE file) and the GPLv3 (found in the COPYING file). You may select, at your option, one of the above-listed licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_18.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_18.yml deleted file mode 100644 index 817a4997b97..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - COPYING diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_2.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_2.RULE index 668f4278943..a55adaba519 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.markdown +--- + License JSZip is dual-licensed. You may use it under the MIT license *or* the GPLv3 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_2.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_2.yml deleted file mode 100644 index f0122ffdd33..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.markdown diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_3.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_3.RULE index d8277c48b2e..ee9e5514cec 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_3.RULE @@ -1 +1,7 @@ -license": "MIT or GPLv3 \ No newline at end of file +--- +license_expression: mit OR gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +license": "MIT or GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_3.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_3.yml deleted file mode 100644 index f040fd7bb24..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_4.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_4.RULE index 04e6f593121..534435eebdd 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + License : JSZip is dual-licensed. You may use it under the MIT license or the GPLv3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_4.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_4.yml deleted file mode 100644 index 6339f87f041..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_5.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_5.RULE index 1f44210ff2c..5e4d3023341 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.markdown +--- + dual-licensed. You may use it under the MIT license or the GPLv3 license. See LICENSE.markdown. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_5.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_5.yml deleted file mode 100644 index f0122ffdd33..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.markdown diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_6.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_6.RULE index e71e394dedf..33fc2f8195e 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + You may use it under the MIT license *or* the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_6.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_6.yml deleted file mode 100644 index 6339f87f041..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_7.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_7.RULE index 23710edd625..5ebbe874f2c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_7.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + dual licensed. You may use it under the MIT license *or* the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_7.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_7.yml deleted file mode 100644 index 6339f87f041..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_8.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_8.RULE index 5116c6f1be3..ef3f649f527 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_8.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Dual licenced under the MIT license or GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_8.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_8.yml deleted file mode 100644 index 6339f87f041..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_9.RULE b/src/licensedcode/data/rules/mit_or_gpl-3.0_9.RULE index cccda52645f..fac5b03e331 100644 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_9.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl-3.0_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR gpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/GPL-3.0 + - http://www.opensource.org/licenses/mit-license +--- + Licensed under MIT License http://www.opensource.org/licenses/mit-license GPL v3 http://opensource.org/licenses/GPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl-3.0_9.yml b/src/licensedcode/data/rules/mit_or_gpl-3.0_9.yml deleted file mode 100644 index 22f37dd9644..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl-3.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/GPL-3.0 - - http://www.opensource.org/licenses/mit-license diff --git a/src/licensedcode/data/rules/mit_or_gpl.RULE b/src/licensedcode/data/rules/mit_or_gpl.RULE index 7ea14b45a6a..a4cec41a77c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + is dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl.yml b/src/licensedcode/data/rules/mit_or_gpl.yml deleted file mode 100644 index b2d33f1a80e..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl_10.RULE b/src/licensedcode/data/rules/mit_or_gpl_10.RULE index 3623f06f750..b5eba6d000c 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_10.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_10.RULE @@ -1 +1,7 @@ - Dual licensed (just pick!)under MIT or GPL licenses. \ No newline at end of file +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + + Dual licensed (just pick!)under MIT or GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_10.yml b/src/licensedcode/data/rules/mit_or_gpl_10.yml deleted file mode 100644 index dc862909809..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_gpl_11.RULE b/src/licensedcode/data/rules/mit_or_gpl_11.RULE index 368000224dd..c9f530ca964 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_11.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_11.RULE @@ -1 +1,7 @@ -Dual licensed under MIT and GPL. +--- +license_expression: mit OR gpl-1.0-plus +is_license_tag: yes +relevance: 99 +--- + +Dual licensed under MIT and GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_11.yml b/src/licensedcode/data/rules/mit_or_gpl_11.yml deleted file mode 100644 index d30b7524a34..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_or_gpl_12.RULE b/src/licensedcode/data/rules/mit_or_gpl_12.RULE index a7c228367cd..2b8264d796e 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_12.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_12.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + * Dual licensed under the GPL (http://www.gnu.org/licenses/gpl.html) * and MIT (http://www.opensource.org/licenses/mit-license.php) licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_12.yml b/src/licensedcode/data/rules/mit_or_gpl_12.yml deleted file mode 100644 index 0ac23ff251c..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl_3.RULE b/src/licensedcode/data/rules/mit_or_gpl_3.RULE index 507f3a6cb28..d907b10c99f 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_3.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_3.RULE @@ -1 +1,8 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +notes: from https://github.com/alvaro-prieto/colResizable +--- + MIT & GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_3.yml b/src/licensedcode/data/rules/mit_or_gpl_3.yml deleted file mode 100644 index d932d0f6a9f..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -notes: from https://github.com/alvaro-prieto/colResizable diff --git a/src/licensedcode/data/rules/mit_or_gpl_7.RULE b/src/licensedcode/data/rules/mit_or_gpl_7.RULE index 077ff4eb790..337402c3507 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_7.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_7.RULE @@ -1 +1,8 @@ -This plugin is dual-licensed under the GNU General Public License and the MIT License +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + +This plugin is dual-licensed under the GNU General Public License and the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_7.yml b/src/licensedcode/data/rules/mit_or_gpl_7.yml deleted file mode 100644 index 1f7c0722e9a..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/mit_or_gpl_8.RULE b/src/licensedcode/data/rules/mit_or_gpl_8.RULE index 739843b792d..10aa59ba17e 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_8.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/gpl.html + - http://www.opensource.org/licenses/mit-license.php +--- + Dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php - http://www.gnu.org/licenses/gpl.html + http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_8.yml b/src/licensedcode/data/rules/mit_or_gpl_8.yml deleted file mode 100644 index b2d33f1a80e..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/gpl.html - - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_or_gpl_9.RULE b/src/licensedcode/data/rules/mit_or_gpl_9.RULE index 36dd2655f65..43d5e554d41 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_9.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_tag: yes +relevance: 99 +--- + Dual MIT & GPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_9.yml b/src/licensedcode/data/rules/mit_or_gpl_9.yml deleted file mode 100644 index d30b7524a34..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter.RULE b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter.RULE index 13f7aae3af4..a22c18c95bc 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 90 +--- + * @license - * Dual licensed under the MIT and GPL licenses. + * Dual licensed under the MIT and GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter.yml b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter.yml deleted file mode 100644 index 3b55c66d4d0..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_2.RULE b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_2.RULE index 74e2a7488f3..e21296ac2dc 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_2.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_2.RULE @@ -1 +1,7 @@ -Dual licensed under the MIT and GPL licenses. +--- +license_expression: mit OR gpl-1.0-plus +is_license_notice: yes +relevance: 99 +--- + +Dual licensed under the MIT and GPL licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_2.yml b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_2.yml deleted file mode 100644 index 90bd539c86d..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-1.0-plus -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_3.RULE b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_3.RULE index 3dbea41d2f2..d042dd3eb19 100644 --- a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_3.RULE +++ b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_3.RULE @@ -1,2 +1,11 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 99 +notes: jquery always used the v2 of the gpl when it was dual licensed +ignorable_urls: + - http://docs.jquery.com/License +--- + Dual licensed under the MIT and GPL licenses. -http://docs.jquery.com/License +http://docs.jquery.com/License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_3.yml b/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_3.yml deleted file mode 100644 index bb6a6d35b73..00000000000 --- a/src/licensedcode/data/rules/mit_or_gpl_syntax_highlighter_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 99 -notes: jquery always used the v2 of the gpl when it was dual licensed -ignorable_urls: - - http://docs.jquery.com/License diff --git a/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_1.RULE index 68a9b5e1bfc..b70158de78f 100644 --- a/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT + - http://www.gnu.org/licenses/lgpl.html +--- + You can choose any one of those: The MIT License (MIT): @@ -5,4 +14,4 @@ The MIT License (MIT): link:http://opensource.org/licenses/MIT LGPL: -http://www.gnu.org/licenses/lgpl.html +http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index 64ed251f068..00000000000 --- a/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT - - http://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_2.RULE index 6f1f66fbded..1e49d02eaa8 100644 --- a/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT + - https://www.gnu.org/licenses/lgpl.html +--- + You can choose any one of those: The MIT License (MIT): @@ -5,4 +14,4 @@ The MIT License (MIT): link:http://opensource.org/licenses/MIT LGPL: -https://www.gnu.org/licenses/lgpl.html +https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index b6e07b8657f..00000000000 --- a/src/licensedcode/data/rules/mit_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MIT - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/mit_or_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/mit_or_lgpl-3.0_1.RULE index 67a24526a17..d1ab49f1ab1 100644 --- a/src/licensedcode/data/rules/mit_or_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_lgpl-3.0_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/jquery-form/form#license +--- + Dual licensed under the MIT and LGPLv3 licenses. https://github.com/jquery-form/form#license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_lgpl-3.0_1.yml b/src/licensedcode/data/rules/mit_or_lgpl-3.0_1.yml deleted file mode 100644 index e6936a7f1df..00000000000 --- a/src/licensedcode/data/rules/mit_or_lgpl-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR lgpl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/jquery-form/form#license diff --git a/src/licensedcode/data/rules/mit_or_lgpl-3.0_2.RULE b/src/licensedcode/data/rules/mit_or_lgpl-3.0_2.RULE index b1f7cc9be14..40f5b4b645f 100644 --- a/src/licensedcode/data/rules/mit_or_lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/mit_or_lgpl-3.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + Dual licensed under the MIT and LGPLv3 licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_lgpl-3.0_2.yml b/src/licensedcode/data/rules/mit_or_lgpl-3.0_2.yml deleted file mode 100644 index 75c0838cfaf..00000000000 --- a/src/licensedcode/data/rules/mit_or_lgpl-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_psf-2.0_1.RULE b/src/licensedcode/data/rules/mit_or_psf-2.0_1.RULE index 5e7c739a032..37c4f9c2f28 100644 --- a/src/licensedcode/data/rules/mit_or_psf-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_or_psf-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR psf-2.0 +is_license_notice: yes +relevance: 100 +--- + may be distributed under the MIT or PSF open source licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_psf-2.0_1.yml b/src/licensedcode/data/rules/mit_or_psf-2.0_1.yml deleted file mode 100644 index 6b0071519dc..00000000000 --- a/src/licensedcode/data/rules/mit_or_psf-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR psf-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_ruby_1.RULE b/src/licensedcode/data/rules/mit_or_ruby_1.RULE index 3d39df92c84..04478181441 100644 --- a/src/licensedcode/data/rules/mit_or_ruby_1.RULE +++ b/src/licensedcode/data/rules/mit_or_ruby_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR ruby +is_license_notice: yes +relevance: 100 +referenced_filenames: + - MIT.txt +notes: Seen in Rubygems +--- + is copyrighted free software by and others. You can redistribute it and/or modify it under either the terms of the MIT license (see the file MIT.txt), or the conditions below: diff --git a/src/licensedcode/data/rules/mit_or_ruby_1.yml b/src/licensedcode/data/rules/mit_or_ruby_1.yml deleted file mode 100644 index 17f3aaac681..00000000000 --- a/src/licensedcode/data/rules/mit_or_ruby_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR ruby -is_license_notice: yes -relevance: 100 -referenced_filenames: - - MIT.txt -notes: Seen in Rubygems diff --git a/src/licensedcode/data/rules/mit_or_unlicense_1.RULE b/src/licensedcode/data/rules/mit_or_unlicense_1.RULE index a9678a504c9..7312558168a 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_1.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit OR unlicense +is_license_notice: yes +--- + This project is dual-licensed under the Unlicense and MIT licenses. diff --git a/src/licensedcode/data/rules/mit_or_unlicense_1.yml b/src/licensedcode/data/rules/mit_or_unlicense_1.yml deleted file mode 100644 index 42bbcb89f0b..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit OR unlicense -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mit_or_unlicense_10.RULE b/src/licensedcode/data/rules/mit_or_unlicense_10.RULE index e8c83c1281d..5c608710f61 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_10.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_10.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit OR unlicense +is_license_text: yes +minimum_coverage: 95 +notes: seen in stb library +ignorable_urls: + - http://www.unlicense.org/ +--- + This software is available under 2 licenses -- choose whichever you prefer. ALTERNATIVE A - MIT License diff --git a/src/licensedcode/data/rules/mit_or_unlicense_10.yml b/src/licensedcode/data/rules/mit_or_unlicense_10.yml deleted file mode 100644 index 31b65f25db5..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR unlicense -is_license_text: yes -minimum_coverage: 95 -notes: seen in stb library -ignorable_urls: - - http://www.unlicense.org/ diff --git a/src/licensedcode/data/rules/mit_or_unlicense_2.RULE b/src/licensedcode/data/rules/mit_or_unlicense_2.RULE index 59f991a5111..dbf79590141 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_2.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR unlicense +is_license_notice: yes +relevance: 100 +--- + Dual-licensed under MIT or the UNLICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_unlicense_2.yml b/src/licensedcode/data/rules/mit_or_unlicense_2.yml deleted file mode 100644 index 4486b337057..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR unlicense -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_unlicense_3.RULE b/src/licensedcode/data/rules/mit_or_unlicense_3.RULE index 6a2a8ac8606..4a047a564d1 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_3.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_3.RULE @@ -1 +1,9 @@ +--- +license_expression: mit OR unlicense +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ +--- + Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_unlicense_3.yml b/src/licensedcode/data/rules/mit_or_unlicense_3.yml deleted file mode 100644 index 995e33327df..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR unlicense -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/mit_or_unlicense_4.RULE b/src/licensedcode/data/rules/mit_or_unlicense_4.RULE index d5a89d387ce..d2200bf3dfd 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_4.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_4.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR unlicense +is_license_notice: yes +relevance: 100 +--- + license = "Unlicense/MIT" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_unlicense_4.yml b/src/licensedcode/data/rules/mit_or_unlicense_4.yml deleted file mode 100644 index 4486b337057..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR unlicense -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_unlicense_5.RULE b/src/licensedcode/data/rules/mit_or_unlicense_5.RULE index 7669acd94f5..612b58ac976 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_5.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mit OR unlicense +is_license_notice: yes +relevance: 100 +notes: https://github.com/boyter/lc/blob/a4c40b5e4d33075d3d7296cd1310eedb0fc1121a/README.md +ignorable_urls: + - http://unlicense.org/ +--- + Dual-licensed under the MIT and [UNLICENSE](http://unlicense.org) licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_unlicense_5.yml b/src/licensedcode/data/rules/mit_or_unlicense_5.yml deleted file mode 100644 index 3064f86b363..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit OR unlicense -is_license_notice: yes -relevance: 100 -notes: https://github.com/boyter/lc/blob/a4c40b5e4d33075d3d7296cd1310eedb0fc1121a/README.md -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/mit_or_unlicense_6.RULE b/src/licensedcode/data/rules/mit_or_unlicense_6.RULE index 2c98d30ce10..bc20eedfdab 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_6.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_6.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR unlicense +is_license_notice: yes +relevance: 100 +--- + dual-licensed under the "MIT" & "Unlicense" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_unlicense_6.yml b/src/licensedcode/data/rules/mit_or_unlicense_6.yml deleted file mode 100644 index 4486b337057..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR unlicense -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_unlicense_7.RULE b/src/licensedcode/data/rules/mit_or_unlicense_7.RULE index f702effb320..66a994caa1f 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_7.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_7.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR unlicense +is_license_notice: yes +relevance: 100 +--- + All code is dual-licenced as either MIT or Unlicence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_or_unlicense_7.yml b/src/licensedcode/data/rules/mit_or_unlicense_7.yml deleted file mode 100644 index 4486b337057..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR unlicense -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_unlicense_8.RULE b/src/licensedcode/data/rules/mit_or_unlicense_8.RULE index 99afe2bad79..8f63784c29d 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_8.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit OR unlicense +is_license_text: yes +ignorable_urls: + - http://www.unlicense.org/ +--- + This software is available under 2 licenses -- choose whichever you prefer. ALTERNATIVE A - MIT License Copyright (c) diff --git a/src/licensedcode/data/rules/mit_or_unlicense_8.yml b/src/licensedcode/data/rules/mit_or_unlicense_8.yml deleted file mode 100644 index 421f6a0eeff..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR unlicense -is_license_text: yes -ignorable_urls: - - http://www.unlicense.org/ diff --git a/src/licensedcode/data/rules/mit_or_unlicense_9.RULE b/src/licensedcode/data/rules/mit_or_unlicense_9.RULE index 25c663f2068..3ac194a7884 100644 --- a/src/licensedcode/data/rules/mit_or_unlicense_9.RULE +++ b/src/licensedcode/data/rules/mit_or_unlicense_9.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mit OR unlicense +is_license_text: yes +minimum_coverage: 95 +notes: seen in stb library +ignorable_copyrights: + - Copyright (c) 2017 Sean Barrett +ignorable_holders: + - Sean Barrett +ignorable_urls: + - http://www.unlicense.org/ +--- + This software is available under 2 licenses -- choose whichever you prefer. ALTERNATIVE A - MIT License diff --git a/src/licensedcode/data/rules/mit_or_unlicense_9.yml b/src/licensedcode/data/rules/mit_or_unlicense_9.yml deleted file mode 100644 index f197bd0048d..00000000000 --- a/src/licensedcode/data/rules/mit_or_unlicense_9.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mit OR unlicense -is_license_text: yes -minimum_coverage: 95 -notes: seen in stb library -ignorable_copyrights: - - Copyright (c) 2017 Sean Barrett -ignorable_holders: - - Sean Barrett -ignorable_urls: - - http://www.unlicense.org/ diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa.RULE b/src/licensedcode/data/rules/mit_or_uoi-ncsa.RULE index 86eab95cf35..6318c84aae9 100644 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa.RULE +++ b/src/licensedcode/data/rules/mit_or_uoi-ncsa.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit OR uoi-ncsa +is_license_notice: yes +minimum_coverage: 90 +--- + The libc++ library is dual licensed under both the University of Illinois "BSD-Like" license and the MIT license. As a user of this code you may choose to use it under either license. As a contributor, you agree to allow your code diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa.yml b/src/licensedcode/data/rules/mit_or_uoi-ncsa.yml deleted file mode 100644 index e6c4e453347..00000000000 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR uoi-ncsa -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_1.RULE b/src/licensedcode/data/rules/mit_or_uoi-ncsa_1.RULE index 3a052a58145..0b16622ea0d 100644 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_1.RULE +++ b/src/licensedcode/data/rules/mit_or_uoi-ncsa_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit OR uoi-ncsa +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + Emscripten is available under 2 licenses, the MIT license and the University of Illinois/NCSA Open Source License. diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_1.yml b/src/licensedcode/data/rules/mit_or_uoi-ncsa_1.yml deleted file mode 100644 index 8a2fc7fcc8c..00000000000 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR uoi-ncsa -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_2.RULE b/src/licensedcode/data/rules/mit_or_uoi-ncsa_2.RULE index 815781a0d18..1c52605c0bf 100644 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_2.RULE +++ b/src/licensedcode/data/rules/mit_or_uoi-ncsa_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR uoi-ncsa +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License Emscripten is available under 2 licenses, the MIT license and the University of Illinois/NCSA Open Source License. diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_2.yml b/src/licensedcode/data/rules/mit_or_uoi-ncsa_2.yml deleted file mode 100644 index b595eef2ed2..00000000000 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR uoi-ncsa -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_3.RULE b/src/licensedcode/data/rules/mit_or_uoi-ncsa_3.RULE index aac3601f892..9aa687e32d8 100644 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_3.RULE +++ b/src/licensedcode/data/rules/mit_or_uoi-ncsa_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit OR uoi-ncsa +is_license_notice: yes +relevance: 100 +--- + License Emscripten is available under 2 licenses, the MIT license and the University of Illinois/NCSA Open Source License. diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_3.yml b/src/licensedcode/data/rules/mit_or_uoi-ncsa_3.yml deleted file mode 100644 index f2124432c30..00000000000 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR uoi-ncsa -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_4.RULE b/src/licensedcode/data/rules/mit_or_uoi-ncsa_4.RULE index d444d913e6f..dc3502a4f31 100644 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_4.RULE +++ b/src/licensedcode/data/rules/mit_or_uoi-ncsa_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mit OR uoi-ncsa +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Emscripten is available under 2 licenses, the MIT license and the University of Illinois/NCSA Open Source License. diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_4.yml b/src/licensedcode/data/rules/mit_or_uoi-ncsa_4.yml deleted file mode 100644 index b595eef2ed2..00000000000 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit OR uoi-ncsa -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_5.RULE b/src/licensedcode/data/rules/mit_or_uoi-ncsa_5.RULE index f8f7459ca19..04ef30fc2bd 100644 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_5.RULE +++ b/src/licensedcode/data/rules/mit_or_uoi-ncsa_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit OR uoi-ncsa +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + Emscripten is available under 2 licenses, the MIT license and the University of Illinois/NCSA Open Source License. diff --git a/src/licensedcode/data/rules/mit_or_uoi-ncsa_5.yml b/src/licensedcode/data/rules/mit_or_uoi-ncsa_5.yml deleted file mode 100644 index 8a2fc7fcc8c..00000000000 --- a/src/licensedcode/data/rules/mit_or_uoi-ncsa_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit OR uoi-ncsa -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mit_tag.RULE b/src/licensedcode/data/rules/mit_tag.RULE index 9d551b05806..11468137635 100644 --- a/src/licensedcode/data/rules/mit_tag.RULE +++ b/src/licensedcode/data/rules/mit_tag.RULE @@ -1,2 +1,7 @@ -FILE_LICENCE ( MIT ); +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- +FILE_LICENCE ( MIT ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_tag.yml b/src/licensedcode/data/rules/mit_tag.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/mit_tag.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_under_1.RULE b/src/licensedcode/data/rules/mit_under_1.RULE index 7290c7c214d..c63b5bd26b2 100644 --- a/src/licensedcode/data/rules/mit_under_1.RULE +++ b/src/licensedcode/data/rules/mit_under_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License -This software is released by under the MIT license. +This software is released by under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_under_1.yml b/src/licensedcode/data/rules/mit_under_1.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_under_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_under_2.RULE b/src/licensedcode/data/rules/mit_under_2.RULE index aa6a8638b67..2be4e661382 100644 --- a/src/licensedcode/data/rules/mit_under_2.RULE +++ b/src/licensedcode/data/rules/mit_under_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + License -This software is released under the MIT license. +This software is released under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_under_2.yml b/src/licensedcode/data/rules/mit_under_2.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/mit_under_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_url.RULE b/src/licensedcode/data/rules/mit_url.RULE index 348b25b1b89..cdf988e637c 100644 --- a/src/licensedcode/data/rules/mit_url.RULE +++ b/src/licensedcode/data/rules/mit_url.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url.yml b/src/licensedcode/data/rules/mit_url.yml deleted file mode 100644 index 388b31d5975..00000000000 --- a/src/licensedcode/data/rules/mit_url.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_url_1.RULE b/src/licensedcode/data/rules/mit_url_1.RULE index 0de5cc19acd..3eb8193775b 100644 --- a/src/licensedcode/data/rules/mit_url_1.RULE +++ b/src/licensedcode/data/rules/mit_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT +--- + https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url_1.yml b/src/licensedcode/data/rules/mit_url_1.yml deleted file mode 100644 index 5aa67c28a9d..00000000000 --- a/src/licensedcode/data/rules/mit_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT diff --git a/src/licensedcode/data/rules/mit_url_2.RULE b/src/licensedcode/data/rules/mit_url_2.RULE index 077c8d4ad20..9f49ec5a143 100644 --- a/src/licensedcode/data/rules/mit_url_2.RULE +++ b/src/licensedcode/data/rules/mit_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/mit +--- + https://spdx.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url_2.yml b/src/licensedcode/data/rules/mit_url_2.yml deleted file mode 100644 index 13bcf50fc23..00000000000 --- a/src/licensedcode/data/rules/mit_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_url_3.RULE b/src/licensedcode/data/rules/mit_url_3.RULE index 2abb936226b..ec9cc5b0b45 100644 --- a/src/licensedcode/data/rules/mit_url_3.RULE +++ b/src/licensedcode/data/rules/mit_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mit.html +--- + https://spdx.org/licenses/mit.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url_3.yml b/src/licensedcode/data/rules/mit_url_3.yml deleted file mode 100644 index 6fd60f9807d..00000000000 --- a/src/licensedcode/data/rules/mit_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mit.html diff --git a/src/licensedcode/data/rules/mit_url_4.RULE b/src/licensedcode/data/rules/mit_url_4.RULE index cfb67e6c6d5..0e61a81cfe3 100644 --- a/src/licensedcode/data/rules/mit_url_4.RULE +++ b/src/licensedcode/data/rules/mit_url_4.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE +--- + https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url_4.yml b/src/licensedcode/data/rules/mit_url_4.yml deleted file mode 100644 index 53a37a8e10f..00000000000 --- a/src/licensedcode/data/rules/mit_url_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE diff --git a/src/licensedcode/data/rules/mit_url_5.RULE b/src/licensedcode/data/rules/mit_url_5.RULE index 8eec5cbe93b..39f10aba527 100644 --- a/src/licensedcode/data/rules/mit_url_5.RULE +++ b/src/licensedcode/data/rules/mit_url_5.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/hector/hector-client/wiki/License +--- + https://github.com/hector/hector-client/wiki/License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url_5.yml b/src/licensedcode/data/rules/mit_url_5.yml deleted file mode 100644 index 16a37216445..00000000000 --- a/src/licensedcode/data/rules/mit_url_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/hector/hector-client/wiki/License diff --git a/src/licensedcode/data/rules/mit_url_6.RULE b/src/licensedcode/data/rules/mit_url_6.RULE index 78f7bf179d3..9db5199e9a2 100644 --- a/src/licensedcode/data/rules/mit_url_6.RULE +++ b/src/licensedcode/data/rules/mit_url_6.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/hector-client/hector/wiki/License +--- + https://github.com/hector-client/hector/wiki/License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url_6.yml b/src/licensedcode/data/rules/mit_url_6.yml deleted file mode 100644 index a0be34d6103..00000000000 --- a/src/licensedcode/data/rules/mit_url_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/hector-client/hector/wiki/License diff --git a/src/licensedcode/data/rules/mit_url_badge.RULE b/src/licensedcode/data/rules/mit_url_badge.RULE index c72f7e1eebd..0af7a357430 100644 --- a/src/licensedcode/data/rules/mit_url_badge.RULE +++ b/src/licensedcode/data/rules/mit_url_badge.RULE @@ -1 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/License-MIT-yellow.svg + - https://opensource.org/licenses/MIT +--- + [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url_badge.yml b/src/licensedcode/data/rules/mit_url_badge.yml deleted file mode 100644 index b62cb07d276..00000000000 --- a/src/licensedcode/data/rules/mit_url_badge.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/License-MIT-yellow.svg - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_url_glc_187.RULE b/src/licensedcode/data/rules/mit_url_glc_187.RULE index 2b345b6382d..6b90288caa8 100644 --- a/src/licensedcode/data/rules/mit_url_glc_187.RULE +++ b/src/licensedcode/data/rules/mit_url_glc_187.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mit +--- + https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url_glc_187.yml b/src/licensedcode/data/rules/mit_url_glc_187.yml deleted file mode 100644 index c79fd69be36..00000000000 --- a/src/licensedcode/data/rules/mit_url_glc_187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mit diff --git a/src/licensedcode/data/rules/mit_with_generic-exception_or_gpl-2.0_with_generic-exception_1.RULE b/src/licensedcode/data/rules/mit_with_generic-exception_or_gpl-2.0_with_generic-exception_1.RULE index 67e3a69bec5..dbae23ff1f8 100644 --- a/src/licensedcode/data/rules/mit_with_generic-exception_or_gpl-2.0_with_generic-exception_1.RULE +++ b/src/licensedcode/data/rules/mit_with_generic-exception_or_gpl-2.0_with_generic-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit WITH generic-exception OR gpl-2.0 WITH generic-exception +is_license_notice: yes +relevance: 100 +--- + Part of the Ragel output is copied from Ragel source, covered by the MIT (or GPL v2) license. As an exception, you may use the parts of Ragel output copied from Ragel source without restriction. The remainder of Ragel output is derived from diff --git a/src/licensedcode/data/rules/mit_with_generic-exception_or_gpl-2.0_with_generic-exception_1.yml b/src/licensedcode/data/rules/mit_with_generic-exception_or_gpl-2.0_with_generic-exception_1.yml deleted file mode 100644 index 042205a1795..00000000000 --- a/src/licensedcode/data/rules/mit_with_generic-exception_or_gpl-2.0_with_generic-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit WITH generic-exception OR gpl-2.0 WITH generic-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mit_x11-r75_1.RULE b/src/licensedcode/data/rules/mit_x11-r75_1.RULE index ac6911296bf..019afe4d1c5 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_1.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/mit_x11-r75_1.yml b/src/licensedcode/data/rules/mit_x11-r75_1.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_2.RULE b/src/licensedcode/data/rules/mit_x11-r75_2.RULE index 16a61d8106e..c02d9eadd78 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_2.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ THE PROJECT, AND/OR ITS SUPPLIERS 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. + DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_2.yml b/src/licensedcode/data/rules/mit_x11-r75_2.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_3.RULE b/src/licensedcode/data/rules/mit_x11-r75_3.RULE index 74e646abc0b..46efe3fdf07 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_3.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -14,4 +19,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 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. +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/mit_x11-r75_3.yml b/src/licensedcode/data/rules/mit_x11-r75_3.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_56.RULE b/src/licensedcode/data/rules/mit_x11-r75_56.RULE index 594da20dfa5..ce738ea7f97 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_56.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_56.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -16,5 +21,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS 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. - +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/mit_x11-r75_56.yml b/src/licensedcode/data/rules/mit_x11-r75_56.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_58.RULE b/src/licensedcode/data/rules/mit_x11-r75_58.RULE index f34771ac33c..01a7697c97a 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_58.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_58.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -16,4 +21,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS 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. +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/mit_x11-r75_58.yml b/src/licensedcode/data/rules/mit_x11-r75_58.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_58.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_60.RULE b/src/licensedcode/data/rules/mit_x11-r75_60.RULE index 80def044d1a..c0c5f28f3d6 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_60.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_60.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +minimum_coverage: 15 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -18,4 +24,4 @@ NON-INFRINGEMENT. IN NO EVENT SHALL AND/OR THEIR SUPPLIERS 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. +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_60.yml b/src/licensedcode/data/rules/mit_x11-r75_60.yml deleted file mode 100644 index 02eeda92457..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -minimum_coverage: 15 diff --git a/src/licensedcode/data/rules/mit_x11-r75_61.RULE b/src/licensedcode/data/rules/mit_x11-r75_61.RULE index 13abf7f1776..390ee0d48e3 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_61.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_61.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -16,4 +21,4 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions -of the Software. +of the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_61.yml b/src/licensedcode/data/rules/mit_x11-r75_61.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_61.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_62.RULE b/src/licensedcode/data/rules/mit_x11-r75_62.RULE index cb290b247f3..7ec27c428e2 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_62.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_62.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +minimum_coverage: 20 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -16,5 +22,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 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. - +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/mit_x11-r75_62.yml b/src/licensedcode/data/rules/mit_x11-r75_62.yml deleted file mode 100644 index eca53b46a59..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -minimum_coverage: 20 diff --git a/src/licensedcode/data/rules/mit_x11-r75_63.RULE b/src/licensedcode/data/rules/mit_x11-r75_63.RULE index 85fb4329adc..a52f3186649 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_63.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_63.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_text: yes +minimum_coverage: 15 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -16,5 +22,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE 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. - +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/mit_x11-r75_63.yml b/src/licensedcode/data/rules/mit_x11-r75_63.yml deleted file mode 100644 index 02eeda92457..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_text: yes -minimum_coverage: 15 diff --git a/src/licensedcode/data/rules/mit_x11-r75_64.RULE b/src/licensedcode/data/rules/mit_x11-r75_64.RULE index 8839b5d533b..0923d49f799 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_64.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_64.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -16,4 +21,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHOR 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. +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_64.yml b/src/licensedcode/data/rules/mit_x11-r75_64.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_64.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_65.RULE b/src/licensedcode/data/rules/mit_x11-r75_65.RULE index b995b3d3ec2..2e9cd01de52 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_65.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_65.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 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. +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_65.yml b/src/licensedcode/data/rules/mit_x11-r75_65.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_65.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_66.RULE b/src/licensedcode/data/rules/mit_x11-r75_66.RULE index b50320f681b..d701d12126b 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_66.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_66.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ THE AUTHORS OR COPYRIGHT HOLDERS AND/OR THEIR SUPPLIERS 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. + DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_66.yml b/src/licensedcode/data/rules/mit_x11-r75_66.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_66.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_67.RULE b/src/licensedcode/data/rules/mit_x11-r75_67.RULE index a9583ad586f..d95a1c1615f 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_67.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_67.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND/OR THEIR SUPPLIERS 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. +USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_67.yml b/src/licensedcode/data/rules/mit_x11-r75_67.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_67.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_69.RULE b/src/licensedcode/data/rules/mit_x11-r75_69.RULE index 15697b9c49a..ab31ccccd5b 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_69.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_69.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR 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. +IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_69.yml b/src/licensedcode/data/rules/mit_x11-r75_69.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_69.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_70.RULE b/src/licensedcode/data/rules/mit_x11-r75_70.RULE index 119fce57b2f..cc68f26dde4 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_70.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_70.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ AND/OR ITS SUPPLIERS 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_70.yml b/src/licensedcode/data/rules/mit_x11-r75_70.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_70.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_72.RULE b/src/licensedcode/data/rules/mit_x11-r75_72.RULE index 58cf67db034..77c6e813651 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_72.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_72.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ THE COPYRIGHT HOLDER(S) AND/OR ITS SUPPLIERS 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. + DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_72.yml b/src/licensedcode/data/rules/mit_x11-r75_72.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_72.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_75.RULE b/src/licensedcode/data/rules/mit_x11-r75_75.RULE index 25063e8a192..d337a52ec94 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_75.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_75.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mit +is_license_text: yes +relevance: 99 +minimum_coverage: 99 +notes: there is a typo in sublicensen see https://gitlab.archlinux.org/dvzrv/linux-rt-lts/-/blob/e54a80c31b40c6b0a22cd275472f9bf410d490ca/drivers/staging/gma500/mdfld_pyr_cmd.c + for example +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +24,4 @@ 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. + DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_75.yml b/src/licensedcode/data/rules/mit_x11-r75_75.yml deleted file mode 100644 index 9eb69e30a16..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_75.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit -is_license_text: yes -relevance: 99 -minimum_coverage: 99 -notes: there is a typo in sublicensen see https://gitlab.archlinux.org/dvzrv/linux-rt-lts/-/blob/e54a80c31b40c6b0a22cd275472f9bf410d490ca/drivers/staging/gma500/mdfld_pyr_cmd.c - for example diff --git a/src/licensedcode/data/rules/mit_x11-r75_76.RULE b/src/licensedcode/data/rules/mit_x11-r75_76.RULE index 62510801441..5e4502fa6bc 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_76.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_76.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -16,4 +21,4 @@ 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. + IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_76.yml b/src/licensedcode/data/rules/mit_x11-r75_76.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_76.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_77.RULE b/src/licensedcode/data/rules/mit_x11-r75_77.RULE index bf3f0991a24..4169c9b5e38 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_77.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_77.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -14,4 +19,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 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. +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/mit_x11-r75_77.yml b/src/licensedcode/data/rules/mit_x11-r75_77.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_77.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_78.RULE b/src/licensedcode/data/rules/mit_x11-r75_78.RULE index da30de74b40..89bf3132ba2 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_78.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_78.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ THE AUTHORS AND/OR ITS SUPPLIERS 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. + OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_78.yml b/src/licensedcode/data/rules/mit_x11-r75_78.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_78.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_79.RULE b/src/licensedcode/data/rules/mit_x11-r75_79.RULE index 380241291c5..31541cb76c9 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_79.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_79.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -16,4 +21,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHOR(S), AND/OR THE COPYRIGHT HOLDER(S) 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. +DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_79.yml b/src/licensedcode/data/rules/mit_x11-r75_79.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_79.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x11-r75_80.RULE b/src/licensedcode/data/rules/mit_x11-r75_80.RULE index 056978b87b1..ee1360fc01f 100644 --- a/src/licensedcode/data/rules/mit_x11-r75_80.RULE +++ b/src/licensedcode/data/rules/mit_x11-r75_80.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -15,4 +20,4 @@ , AND/OR ITS SUPPLIERS 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. + DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x11-r75_80.yml b/src/licensedcode/data/rules/mit_x11-r75_80.yml deleted file mode 100644 index 8e3f2b9085c..00000000000 --- a/src/licensedcode/data/rules/mit_x11-r75_80.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit -is_license_text: yes diff --git a/src/licensedcode/data/rules/mit_x_1.RULE b/src/licensedcode/data/rules/mit_x_1.RULE index 7f1ccbc2b8f..fe9a9b79dd0 100644 --- a/src/licensedcode/data/rules/mit_x_1.RULE +++ b/src/licensedcode/data/rules/mit_x_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mit +is_license_text: yes +notes: there was a typo in sublicensen that is fixed in this rule see https://gitlab.archlinux.org/dvzrv/linux-rt-lts/-/blob/e54a80c31b40c6b0a22cd275472f9bf410d490ca/drivers/staging/gma500/mdfld_pyr_cmd.c + for example +--- + * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation @@ -15,4 +22,4 @@ * 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. + * DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_x_1.yml b/src/licensedcode/data/rules/mit_x_1.yml deleted file mode 100644 index f026cdca195..00000000000 --- a/src/licensedcode/data/rules/mit_x_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mit -is_license_text: yes -notes: there was a typo in sublicensen that is fixed in this rule see https://gitlab.archlinux.org/dvzrv/linux-rt-lts/-/blob/e54a80c31b40c6b0a22cd275472f9bf410d490ca/drivers/staging/gma500/mdfld_pyr_cmd.c - for example diff --git a/src/licensedcode/data/rules/mit_zh.RULE b/src/licensedcode/data/rules/mit_zh.RULE index d2470fad9ce..7b4663fea56 100644 --- a/src/licensedcode/data/rules/mit_zh.RULE +++ b/src/licensedcode/data/rules/mit_zh.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +language: zh-hans +is_license_notice: yes +--- + 这个软件的免费使用是在MIT许可条款授予的 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_zh.yml b/src/licensedcode/data/rules/mit_zh.yml deleted file mode 100644 index 794129e3a5c..00000000000 --- a/src/licensedcode/data/rules/mit_zh.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -language: zh-hans -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mod-dav-1.0.RULE b/src/licensedcode/data/rules/mod-dav-1.0.RULE index e7b28bdefc1..5ce8f0a98a0 100644 --- a/src/licensedcode/data/rules/mod-dav-1.0.RULE +++ b/src/licensedcode/data/rules/mod-dav-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: mod-dav-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.webdav.org/mod_dav/license-1.html +--- + http://www.webdav.org/mod_dav/license-1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mod-dav-1.0.yml b/src/licensedcode/data/rules/mod-dav-1.0.yml deleted file mode 100644 index 0def5879b5f..00000000000 --- a/src/licensedcode/data/rules/mod-dav-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mod-dav-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.webdav.org/mod_dav/license-1.html diff --git a/src/licensedcode/data/rules/mod-dav-1.1.RULE b/src/licensedcode/data/rules/mod-dav-1.1.RULE index eacd427cf18..5da26d0119d 100644 --- a/src/licensedcode/data/rules/mod-dav-1.1.RULE +++ b/src/licensedcode/data/rules/mod-dav-1.1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mod-dav-1.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.webdav.org/mod_dav/license-1.html +--- + ** By using this file, you agree to the terms and conditions set forth in ** the LICENSE.html file which can be found at the top level of the mod_dav -** distribution or at http://www.webdav.org/mod_dav/license-1.html. +** distribution or at http://www.webdav.org/mod_dav/license-1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mod-dav-1.1.yml b/src/licensedcode/data/rules/mod-dav-1.1.yml deleted file mode 100644 index ac242aa2e43..00000000000 --- a/src/licensedcode/data/rules/mod-dav-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mod-dav-1.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.webdav.org/mod_dav/license-1.html diff --git a/src/licensedcode/data/rules/monetdb-1.1.RULE b/src/licensedcode/data/rules/monetdb-1.1.RULE index f04cc02c3bf..1e150f2aa5d 100644 --- a/src/licensedcode/data/rules/monetdb-1.1.RULE +++ b/src/licensedcode/data/rules/monetdb-1.1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: monetdb-1.1 +is_license_notice: yes +minimum_coverage: 80 +notes: The text of this Exhibit A may differ slightly from the text of the notices in the Source + Code files of the Original Code. You should use the text of this Exhibit A rather than the + text found in the Original Code Source Code for Your Modifications. +ignorable_urls: + - http://www.monetdb.org/Legal/MonetDBLicense +--- + "The contents of this file are subject to the MonetDB Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -18,4 +29,4 @@ your version of this file under the MonetDB Public License, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version -of this file under either the MonetDB Public License or the [ ] License." +of this file under either the MonetDB Public License or the [ ] License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/monetdb-1.1.yml b/src/licensedcode/data/rules/monetdb-1.1.yml deleted file mode 100644 index 4254e6583ed..00000000000 --- a/src/licensedcode/data/rules/monetdb-1.1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: monetdb-1.1 -is_license_notice: yes -minimum_coverage: 80 -notes: The text of this Exhibit A may differ slightly from the text of the notices in the Source - Code files of the Original Code. You should use the text of this Exhibit A rather than the - text found in the Original Code Source Code for Your Modifications. -ignorable_urls: - - http://www.monetdb.org/Legal/MonetDBLicense diff --git a/src/licensedcode/data/rules/monetdb-1.1_1.RULE b/src/licensedcode/data/rules/monetdb-1.1_1.RULE index c11955ef12f..ba41fbacd1b 100644 --- a/src/licensedcode/data/rules/monetdb-1.1_1.RULE +++ b/src/licensedcode/data/rules/monetdb-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: monetdb-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.monetdb.org/Legal/MonetDBLicense +--- + http://www.monetdb.org/Legal/MonetDBLicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/monetdb-1.1_1.yml b/src/licensedcode/data/rules/monetdb-1.1_1.yml deleted file mode 100644 index a1da138ebbc..00000000000 --- a/src/licensedcode/data/rules/monetdb-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: monetdb-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.monetdb.org/Legal/MonetDBLicense diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_1.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_1.RULE index 711e21881c1..4c3c5b4d701 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_1.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.mongodb.com/licensing/server-side-public-license +--- + * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_1.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_1.yml deleted file mode 100644 index 4828f432ca6..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.mongodb.com/licensing/server-side-public-license diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_10.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_10.RULE index 6a5b3186baa..38003afd370 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_10.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under SSPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_10.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_10.yml deleted file mode 100644 index 303ed62bc5f..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_11.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_11.RULE index 44648ff05e1..8d3e2f65dea 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_11.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +--- + sspl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_11.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_11.yml deleted file mode 100644 index b217eeb6d4a..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_12.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_12.RULE index 002eca551b7..9c55293c06d 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_12.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Server Side Public License, v 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_12.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_12.yml deleted file mode 100644 index 7a29b6c5587..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_13.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_13.RULE index 7067c3ec5b5..42a0e272ab3 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_13.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Server Side Public License, v 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_13.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_13.yml deleted file mode 100644 index 5fd19166d57..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_14.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_14.RULE index 4add80901f4..0b282453883 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_14.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SSPL-1.0 Server Side Public License, v 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_14.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_14.yml deleted file mode 100644 index 7a29b6c5587..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_15.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_15.RULE index 77da964b877..328f07370eb 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_15.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Server Side Public License, v 1 SSPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_15.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_15.yml deleted file mode 100644 index 7a29b6c5587..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_16.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_16.RULE index ff169e907e3..12d644c095d 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_16.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SSPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_16.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_16.yml deleted file mode 100644 index a884bfcac93..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_17.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_17.RULE index 8b9ccf696e8..79624f9da0d 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_17.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Server Side Public License, v 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_17.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_17.yml deleted file mode 100644 index b8641e79b20..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_18.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_18.RULE index cb3c326774a..5e5f7139252 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_18.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SSPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_18.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_18.yml deleted file mode 100644 index a884bfcac93..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_19.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_19.RULE index c31c8a44dff..76dd224ce6a 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_19.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SSPL-1.0 +--- + https://licenses.nuget.org/SSPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_19.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_19.yml deleted file mode 100644 index 47e6e3f375c..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SSPL-1.0 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_2.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_2.RULE index 5f095ace52f..3b06da1f071 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_2.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_notice: yes +--- + LICENSE diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_2.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_2.yml deleted file mode 100644 index 5c39595485a..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_20.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_20.RULE index 0b3bda68e16..092d13cc1a6 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_20.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SSPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_20.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_20.yml deleted file mode 100644 index b217eeb6d4a..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_21.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_21.RULE index b32d59d5870..9cd6809cd21 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_21.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SSPL-1.0 +--- + LICENSE {{SSPL-1.0}} https://spdx.org/licenses/SSPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_21.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_21.yml deleted file mode 100644 index 3f48bc09233..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SSPL-1.0 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_22.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_22.RULE index d89e65d3244..09f19e59691 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_22.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SSPL-1.0 +--- + {{SSPL-1.0}} https://spdx.org/licenses/SSPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_22.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_22.yml deleted file mode 100644 index 3f48bc09233..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SSPL-1.0 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_3.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_3.RULE index ec160e283e2..64c43c7ed90 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_3.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.mongodb.com/licensing/server-side-public-license +--- + licensed under the SSPL, see `https://www.mongodb.com/licensing/server-side-public-license'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_3.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_3.yml deleted file mode 100644 index e665d6c48b7..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.mongodb.com/licensing/server-side-public-license diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_4.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_4.RULE index 999ee6606fb..9da2ea75c6b 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_4.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the SSPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_4.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_4.yml deleted file mode 100644 index 303ed62bc5f..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_5.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_5.RULE index 6e47c122ba0..ede11a13d76 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_5.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_5.RULE @@ -1 +1,7 @@ -License: SSPL +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +--- + +License: SSPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_5.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_5.yml deleted file mode 100644 index b217eeb6d4a..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_6.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_6.RULE index 02f191c4eb9..f24bb7534ec 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_6.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.mongodb.com/licensing/server-side-public-license +--- + , see `https://www.mongodb.com/licensing/server-side-public-license'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_6.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_6.yml deleted file mode 100644 index 1a2456b46ff..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.mongodb.com/licensing/server-side-public-license diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_60.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_60.RULE index 2252c109037..6dada10cdb9 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_60.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 90 +--- + SSPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_60.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_60.yml deleted file mode 100644 index 0f52dd54e08..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_7.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_7.RULE index 510ff758de7..43d43c25993 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_7.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.mongodb.com/licensing/server-side-public-license +--- + https://www.mongodb.com/licensing/server-side-public-license'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_7.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_7.yml deleted file mode 100644 index 1a2456b46ff..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.mongodb.com/licensing/server-side-public-license diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_8.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_8.RULE index 18c8c5680db..2b3a813663a 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_8.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 100 +--- + server-side-public-license'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_8.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_8.yml deleted file mode 100644 index b217eeb6d4a..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_9.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_9.RULE index 4e9f2f65cf3..2e8e06a4740 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_9.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_9.RULE @@ -1,3 +1,18 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 85 +ignorable_copyrights: + - (c) 2009, Kristina Chodorow +ignorable_holders: + - Kristina Chodorow +ignorable_urls: + - https://www.mongodb.com/licensing/server-side-public-license +ignorable_emails: + - kristina@10gen.com +--- + License: SSPL The Debian packaging is (C) 2009, Kristina Chodorow and diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_9.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_9.yml deleted file mode 100644 index 7c5926a40c3..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_9.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 85 -ignorable_copyrights: - - (c) 2009, Kristina Chodorow -ignorable_holders: - - Kristina Chodorow -ignorable_urls: - - https://www.mongodb.com/licensing/server-side-public-license -ignorable_emails: - - kristina@10gen.com diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_url_1.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_url_1.RULE index 9821845359a..0783f845aa6 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sspl-1.0 +--- + https://spdx.org/licenses/sspl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_url_1.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_url_1.yml deleted file mode 100644 index 719152a4acd..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sspl-1.0 diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_url_2.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_url_2.RULE index 56c5c4be8dc..6416f4a1762 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mongodb-sspl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sspl-1.0.html +--- + https://spdx.org/licenses/sspl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_url_2.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_url_2.yml deleted file mode 100644 index 11010319e36..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mongodb-sspl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sspl-1.0.html diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_with_mongodb-openssl-exception_1.RULE b/src/licensedcode/data/rules/mongodb-sspl-1.0_with_mongodb-openssl-exception_1.RULE index 06a983fff2c..e7cbb2ef2a7 100644 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_with_mongodb-openssl-exception_1.RULE +++ b/src/licensedcode/data/rules/mongodb-sspl-1.0_with_mongodb-openssl-exception_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mongodb-sspl-1.0 WITH openssl-exception-mongodb-sspl +is_license_notice: yes +ignorable_urls: + - http://www.mongodb.com/licensing/server-side-public-license +--- + * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. diff --git a/src/licensedcode/data/rules/mongodb-sspl-1.0_with_mongodb-openssl-exception_1.yml b/src/licensedcode/data/rules/mongodb-sspl-1.0_with_mongodb-openssl-exception_1.yml deleted file mode 100644 index 544e9918f3c..00000000000 --- a/src/licensedcode/data/rules/mongodb-sspl-1.0_with_mongodb-openssl-exception_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mongodb-sspl-1.0 WITH openssl-exception-mongodb-sspl -is_license_notice: yes -ignorable_urls: - - http://www.mongodb.com/licensing/server-side-public-license diff --git a/src/licensedcode/data/rules/motorola.RULE b/src/licensedcode/data/rules/motorola.RULE index b30c4f4b8a5..b2cb4f2bb22 100644 --- a/src/licensedcode/data/rules/motorola.RULE +++ b/src/licensedcode/data/rules/motorola.RULE @@ -1,3 +1,11 @@ +--- +license_expression: motorola +is_license_text: yes +minimum_coverage: 50 +notes: this is the same text as the original license, but with the clauses in a different order. + Spotted in U-Boot +--- + You are hereby granted a copyright license to use, modify, and distribute the SOFTWARE so long as this entire notice is retained without alteration in any modified and/or redistributed versions, @@ -19,4 +27,4 @@ MOTOROLA BE LIABLE FOR ANY DAMAGES WHATSOEVER BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR OTHER PECUNIARY LOSS) ARISING OF THE USE OR INABILITY TO USE THE SOFTWARE. Motorola assumes no responsibility -for the maintenance and support of the SOFTWARE. +for the maintenance and support of the SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/motorola.yml b/src/licensedcode/data/rules/motorola.yml deleted file mode 100644 index 2e72c20cb86..00000000000 --- a/src/licensedcode/data/rules/motorola.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motorola -is_license_text: yes -minimum_coverage: 50 -notes: this is the same text as the original license, but with the clauses in a different order. - Spotted in U-Boot diff --git a/src/licensedcode/data/rules/motosoto-0.9.1.RULE b/src/licensedcode/data/rules/motosoto-0.9.1.RULE index 6ce67673fdb..0301d007b21 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/motosoto.php +--- + http://www.opensource.org/licenses/motosoto.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1.SPDX.RULE b/src/licensedcode/data/rules/motosoto-0.9.1.SPDX.RULE index a2c4e4af274..674f2b00f7c 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1.SPDX.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: motosoto-0.9.1 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + MOTOSOTO OPEN SOURCE LICENSE - Version 0.9.1 This Motosoto Open Source License (the "License") applies to "Community Portal Server" and related software products as well as any updatesor diff --git a/src/licensedcode/data/rules/motosoto-0.9.1.SPDX.yml b/src/licensedcode/data/rules/motosoto-0.9.1.SPDX.yml deleted file mode 100644 index 30596f7c906..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/motosoto-0.9.1.yml b/src/licensedcode/data/rules/motosoto-0.9.1.yml deleted file mode 100644 index b05dabb5d4c..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/motosoto.php diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_1.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_1.RULE index bdce0724936..aadadfdb9ca 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_1.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +--- + Motosoto License \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_1.yml b/src/licensedcode/data/rules/motosoto-0.9.1_1.yml deleted file mode 100644 index f70c2532ad7..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_10.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_10.RULE index 8275406ffeb..5cf00b9c066 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_10.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Motosoto +--- + https://licenses.nuget.org/Motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_10.yml b/src/licensedcode/data/rules/motosoto-0.9.1_10.yml deleted file mode 100644 index fb9121e27be..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Motosoto diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_11.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_11.RULE index 5331e542bac..1961d810d6d 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_11.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_11.RULE @@ -1 +1,7 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_11.yml b/src/licensedcode/data/rules/motosoto-0.9.1_11.yml deleted file mode 100644 index f70c2532ad7..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_12.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_12.RULE index 25fbefcb886..869a3585100 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_12.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Motosoto +--- + LICENSE {{Motosoto}} https://spdx.org/licenses/Motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_12.yml b/src/licensedcode/data/rules/motosoto-0.9.1_12.yml deleted file mode 100644 index bade0b5a4f9..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Motosoto diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_13.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_13.RULE index 99830402056..63efc15ba82 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_13.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Motosoto +--- + {{Motosoto}} https://spdx.org/licenses/Motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_13.yml b/src/licensedcode/data/rules/motosoto-0.9.1_13.yml deleted file mode 100644 index bade0b5a4f9..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Motosoto diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_2.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_2.RULE index ebd24581f7f..e162db7f36c 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_2.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/motosoto.php +--- + http://opensource.org/licenses/motosoto.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_2.yml b/src/licensedcode/data/rules/motosoto-0.9.1_2.yml deleted file mode 100644 index 0342273112c..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/motosoto.php diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_3.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_3.RULE index c054b3112f3..914970f4341 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_3.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_3.RULE @@ -1 +1,6 @@ +--- +license_expression: motosoto-0.9.1 +is_license_notice: yes +--- + license mentions the inclusion of a notice in Exhibit A, but no example text identified as Exhibit A in the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_3.yml b/src/licensedcode/data/rules/motosoto-0.9.1_3.yml deleted file mode 100644 index 8c06f98ba43..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_4.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_4.RULE index 7ada5f641ac..9dab735f9a3 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_4.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Motosoto License \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_4.yml b/src/licensedcode/data/rules/motosoto-0.9.1_4.yml deleted file mode 100644 index 67c7945d34e..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_5.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_5.RULE index 4c5bfb918e7..f5cc4b310cd 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_5.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Motosoto Motosoto License \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_5.yml b/src/licensedcode/data/rules/motosoto-0.9.1_5.yml deleted file mode 100644 index 67c7945d34e..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_6.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_6.RULE index 9886ce1dfdb..704bb51d4ac 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_6.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Motosoto License Motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_6.yml b/src/licensedcode/data/rules/motosoto-0.9.1_6.yml deleted file mode 100644 index 67c7945d34e..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_7.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_7.RULE index c57d250fda2..722bf2beb29 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_7.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: motosoto-0.9.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_7.yml b/src/licensedcode/data/rules/motosoto-0.9.1_7.yml deleted file mode 100644 index 85beadc8480..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_8.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_8.RULE index c4d9e8fdedc..c15c131da71 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_8.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: motosoto-0.9.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Motosoto License \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_8.yml b/src/licensedcode/data/rules/motosoto-0.9.1_8.yml deleted file mode 100644 index 85beadc8480..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_9.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_9.RULE index 00dea8114b0..3a415eec73b 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_9.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: motosoto-0.9.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_9.yml b/src/licensedcode/data/rules/motosoto-0.9.1_9.yml deleted file mode 100644 index 85beadc8480..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_url_1.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_url_1.RULE index 33fcec45004..267d3e025a8 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_url_1.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/motosoto +--- + https://spdx.org/licenses/motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_url_1.yml b/src/licensedcode/data/rules/motosoto-0.9.1_url_1.yml deleted file mode 100644 index 17a78d5d455..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/motosoto diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_url_2.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_url_2.RULE index 33e7de8a634..edf2245c56a 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_url_2.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/motosoto.html +--- + https://spdx.org/licenses/motosoto.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_url_2.yml b/src/licensedcode/data/rules/motosoto-0.9.1_url_2.yml deleted file mode 100644 index 591d5f7d5a5..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/motosoto.html diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_196.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_196.RULE index d53a9252b33..1b133bd7f32 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_196.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_196.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/motosoto +--- + http://www.opensource.org/licenses/motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_196.yml b/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_196.yml deleted file mode 100644 index 5271c5282fb..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/motosoto diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_197.RULE b/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_197.RULE index 508cc75a1ca..205c5987bc1 100644 --- a/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_197.RULE +++ b/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_197.RULE @@ -1 +1,9 @@ +--- +license_expression: motosoto-0.9.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/motosoto +--- + https://www.opensource.org/licenses/motosoto \ No newline at end of file diff --git a/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_197.yml b/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_197.yml deleted file mode 100644 index a4fd1219c92..00000000000 --- a/src/licensedcode/data/rules/motosoto-0.9.1_url_glc_197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/motosoto diff --git a/src/licensedcode/data/rules/mozilla-gc_or_stlport-4.5.RULE b/src/licensedcode/data/rules/mozilla-gc_or_stlport-4.5.RULE index d4f295cb832..a2adf60463c 100644 --- a/src/licensedcode/data/rules/mozilla-gc_or_stlport-4.5.RULE +++ b/src/licensedcode/data/rules/mozilla-gc_or_stlport-4.5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +minimum_coverage: 100 +--- + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED. -ANY USE IS AT YOUR OWN RISK. +ANY USE IS AT YOUR OWN RISK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mozilla-gc_or_stlport-4.5.yml b/src/licensedcode/data/rules/mozilla-gc_or_stlport-4.5.yml deleted file mode 100644 index c76f515771c..00000000000 --- a/src/licensedcode/data/rules/mozilla-gc_or_stlport-4.5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpeg-ssg.RULE b/src/licensedcode/data/rules/mpeg-ssg.RULE index e646a07d616..6a974a04b45 100644 --- a/src/licensedcode/data/rules/mpeg-ssg.RULE +++ b/src/licensedcode/data/rules/mpeg-ssg.RULE @@ -1 +1,9 @@ +--- +license_expression: mpeg-ssg +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html +--- + http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpeg-ssg.yml b/src/licensedcode/data/rules/mpeg-ssg.yml deleted file mode 100644 index c1c70d9a863..00000000000 --- a/src/licensedcode/data/rules/mpeg-ssg.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpeg-ssg -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mpeg.org/MPEG/video/mssg-free-mpeg-software.html diff --git a/src/licensedcode/data/rules/mpeg-ssg_1.RULE b/src/licensedcode/data/rules/mpeg-ssg_1.RULE index db1ae6a0021..d3287c03a08 100644 --- a/src/licensedcode/data/rules/mpeg-ssg_1.RULE +++ b/src/licensedcode/data/rules/mpeg-ssg_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mpeg-ssg +is_license_text: yes +--- + These software programs are available to the user without any license fee or royalty on an "as is" basis. The MPEG Software Simulation Group disclaims any and all warranties, whether express, implied, or statuary, including any diff --git a/src/licensedcode/data/rules/mpeg-ssg_1.yml b/src/licensedcode/data/rules/mpeg-ssg_1.yml deleted file mode 100644 index dd4567a4e62..00000000000 --- a/src/licensedcode/data/rules/mpeg-ssg_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpeg-ssg -is_license_text: yes diff --git a/src/licensedcode/data/rules/mpich.SPDX.RULE b/src/licensedcode/data/rules/mpich.SPDX.RULE index 6d984bc8b2e..b1184920e83 100644 --- a/src/licensedcode/data/rules/mpich.SPDX.RULE +++ b/src/licensedcode/data/rules/mpich.SPDX.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mpich +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_emails: + - gropp@mcs.anl.gov + - lusk@mcs.anl.gov +--- + COPYRIGHT The following is a notice of limited availability of the code, and disclaimer which must be included in the prologue of the code and in all source listings of the code. diff --git a/src/licensedcode/data/rules/mpich.SPDX.yml b/src/licensedcode/data/rules/mpich.SPDX.yml deleted file mode 100644 index 133b77c3c1a..00000000000 --- a/src/licensedcode/data/rules/mpich.SPDX.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpich -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_emails: - - gropp@mcs.anl.gov - - lusk@mcs.anl.gov diff --git a/src/licensedcode/data/rules/mpich_1.RULE b/src/licensedcode/data/rules/mpich_1.RULE index 150cd6d2c2e..11a1c9c12b4 100644 --- a/src/licensedcode/data/rules/mpich_1.RULE +++ b/src/licensedcode/data/rules/mpich_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpich +is_license_notice: yes +relevance: 90 +notes: https://github.com/Bcfg2/bcfg2/blob/master/LICENSE this is truncated +--- + GOVERNMENT LICENSE Portions of this material resulted from work developed under a U.S. diff --git a/src/licensedcode/data/rules/mpich_1.yml b/src/licensedcode/data/rules/mpich_1.yml deleted file mode 100644 index aa68181acf2..00000000000 --- a/src/licensedcode/data/rules/mpich_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpich -is_license_notice: yes -relevance: 90 -notes: https://github.com/Bcfg2/bcfg2/blob/master/LICENSE this is truncated diff --git a/src/licensedcode/data/rules/mpich_10.RULE b/src/licensedcode/data/rules/mpich_10.RULE index 9b852fcea0c..39723796cac 100644 --- a/src/licensedcode/data/rules/mpich_10.RULE +++ b/src/licensedcode/data/rules/mpich_10.RULE @@ -1 +1,10 @@ +--- +license_expression: mpich +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: mpich2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_10.yml b/src/licensedcode/data/rules/mpich_10.yml deleted file mode 100644 index 4928aea0b5d..00000000000 --- a/src/licensedcode/data/rules/mpich_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpich -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpich_11.RULE b/src/licensedcode/data/rules/mpich_11.RULE index 8c42ad6e020..721dc7bc675 100644 --- a/src/licensedcode/data/rules/mpich_11.RULE +++ b/src/licensedcode/data/rules/mpich_11.RULE @@ -1 +1,10 @@ +--- +license_expression: mpich +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: mpich2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_11.yml b/src/licensedcode/data/rules/mpich_11.yml deleted file mode 100644 index 4928aea0b5d..00000000000 --- a/src/licensedcode/data/rules/mpich_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpich -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpich_12.RULE b/src/licensedcode/data/rules/mpich_12.RULE index 89ec6a2ca9d..9f535112028 100644 --- a/src/licensedcode/data/rules/mpich_12.RULE +++ b/src/licensedcode/data/rules/mpich_12.RULE @@ -1 +1,9 @@ +--- +license_expression: mpich +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/mpich2 +--- + https://licenses.nuget.org/mpich2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_12.yml b/src/licensedcode/data/rules/mpich_12.yml deleted file mode 100644 index 379fa27e57b..00000000000 --- a/src/licensedcode/data/rules/mpich_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpich -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/mpich2 diff --git a/src/licensedcode/data/rules/mpich_13.RULE b/src/licensedcode/data/rules/mpich_13.RULE index 889d935c624..92d2b9880f9 100644 --- a/src/licensedcode/data/rules/mpich_13.RULE +++ b/src/licensedcode/data/rules/mpich_13.RULE @@ -1 +1,7 @@ +--- +license_expression: mpich +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/mpich2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_13.yml b/src/licensedcode/data/rules/mpich_13.yml deleted file mode 100644 index 1ec974c9dc4..00000000000 --- a/src/licensedcode/data/rules/mpich_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpich -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpich_14.RULE b/src/licensedcode/data/rules/mpich_14.RULE index e1e2baf6a83..4635c0afcba 100644 --- a/src/licensedcode/data/rules/mpich_14.RULE +++ b/src/licensedcode/data/rules/mpich_14.RULE @@ -1 +1,9 @@ +--- +license_expression: mpich +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/mpich2 +--- + LICENSE {{mpich2}} https://spdx.org/licenses/mpich2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_14.yml b/src/licensedcode/data/rules/mpich_14.yml deleted file mode 100644 index 309d9fd6cf6..00000000000 --- a/src/licensedcode/data/rules/mpich_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpich -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/mpich2 diff --git a/src/licensedcode/data/rules/mpich_15.RULE b/src/licensedcode/data/rules/mpich_15.RULE index f643fc95264..41d6465b0a6 100644 --- a/src/licensedcode/data/rules/mpich_15.RULE +++ b/src/licensedcode/data/rules/mpich_15.RULE @@ -1 +1,9 @@ +--- +license_expression: mpich +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/mpich2 +--- + {{mpich2}} https://spdx.org/licenses/mpich2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_15.yml b/src/licensedcode/data/rules/mpich_15.yml deleted file mode 100644 index 309d9fd6cf6..00000000000 --- a/src/licensedcode/data/rules/mpich_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpich -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/mpich2 diff --git a/src/licensedcode/data/rules/mpich_2.RULE b/src/licensedcode/data/rules/mpich_2.RULE index a67b2727fac..c2a975af81b 100644 --- a/src/licensedcode/data/rules/mpich_2.RULE +++ b/src/licensedcode/data/rules/mpich_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpich +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + COPYRIGHT The following is a notice of limited availability of the code, and disclaimer diff --git a/src/licensedcode/data/rules/mpich_2.yml b/src/licensedcode/data/rules/mpich_2.yml deleted file mode 100644 index e4220e52bc6..00000000000 --- a/src/licensedcode/data/rules/mpich_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpich -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/mpich_3.RULE b/src/licensedcode/data/rules/mpich_3.RULE index 9c8126b4344..5c0f99e8f8e 100644 --- a/src/licensedcode/data/rules/mpich_3.RULE +++ b/src/licensedcode/data/rules/mpich_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpich +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + COPYRIGHT The following is a notice of limited availability of the code, and disclaimer diff --git a/src/licensedcode/data/rules/mpich_3.yml b/src/licensedcode/data/rules/mpich_3.yml deleted file mode 100644 index e4220e52bc6..00000000000 --- a/src/licensedcode/data/rules/mpich_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpich -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/mpich_4.RULE b/src/licensedcode/data/rules/mpich_4.RULE index 3119291d6ce..79c08492e13 100644 --- a/src/licensedcode/data/rules/mpich_4.RULE +++ b/src/licensedcode/data/rules/mpich_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mpich +is_license_notice: yes +notes: https://github.com/open-mpi/ompi/blob/master/LICENSE +--- + Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others. This software was authored by: diff --git a/src/licensedcode/data/rules/mpich_4.yml b/src/licensedcode/data/rules/mpich_4.yml deleted file mode 100644 index c7c0e0ab735..00000000000 --- a/src/licensedcode/data/rules/mpich_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpich -is_license_notice: yes -notes: https://github.com/open-mpi/ompi/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/mpich_5.RULE b/src/licensedcode/data/rules/mpich_5.RULE index a1bdb9bea87..3a94b1db22e 100644 --- a/src/licensedcode/data/rules/mpich_5.RULE +++ b/src/licensedcode/data/rules/mpich_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mpich +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + mpich2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_5.yml b/src/licensedcode/data/rules/mpich_5.yml deleted file mode 100644 index 3a48b1d5f71..00000000000 --- a/src/licensedcode/data/rules/mpich_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpich -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpich_6.RULE b/src/licensedcode/data/rules/mpich_6.RULE index f8901e145cb..703d0aad720 100644 --- a/src/licensedcode/data/rules/mpich_6.RULE +++ b/src/licensedcode/data/rules/mpich_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mpich +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: mpich2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_6.yml b/src/licensedcode/data/rules/mpich_6.yml deleted file mode 100644 index 3a48b1d5f71..00000000000 --- a/src/licensedcode/data/rules/mpich_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpich -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpich_7.RULE b/src/licensedcode/data/rules/mpich_7.RULE index 76290b5ea3f..cad9928d59f 100644 --- a/src/licensedcode/data/rules/mpich_7.RULE +++ b/src/licensedcode/data/rules/mpich_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mpich +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + mpich2 mpich2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_7.yml b/src/licensedcode/data/rules/mpich_7.yml deleted file mode 100644 index 3a48b1d5f71..00000000000 --- a/src/licensedcode/data/rules/mpich_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpich -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpich_8.RULE b/src/licensedcode/data/rules/mpich_8.RULE index 7ea9ae5b5eb..0b737663985 100644 --- a/src/licensedcode/data/rules/mpich_8.RULE +++ b/src/licensedcode/data/rules/mpich_8.RULE @@ -1 +1,10 @@ +--- +license_expression: mpich +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + mpich2 License mpich2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_8.yml b/src/licensedcode/data/rules/mpich_8.yml deleted file mode 100644 index 3a48b1d5f71..00000000000 --- a/src/licensedcode/data/rules/mpich_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpich -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpich_9.RULE b/src/licensedcode/data/rules/mpich_9.RULE index b94aab533a9..6934e45f872 100644 --- a/src/licensedcode/data/rules/mpich_9.RULE +++ b/src/licensedcode/data/rules/mpich_9.RULE @@ -1 +1,10 @@ +--- +license_expression: mpich +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: mpich2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_9.yml b/src/licensedcode/data/rules/mpich_9.yml deleted file mode 100644 index 4928aea0b5d..00000000000 --- a/src/licensedcode/data/rules/mpich_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpich -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpich_url_1.RULE b/src/licensedcode/data/rules/mpich_url_1.RULE index 0fd078dca6e..de4071747e0 100644 --- a/src/licensedcode/data/rules/mpich_url_1.RULE +++ b/src/licensedcode/data/rules/mpich_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mpich +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpich2 +--- + https://spdx.org/licenses/mpich2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_url_1.yml b/src/licensedcode/data/rules/mpich_url_1.yml deleted file mode 100644 index 49d333656b1..00000000000 --- a/src/licensedcode/data/rules/mpich_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpich -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpich2 diff --git a/src/licensedcode/data/rules/mpich_url_2.RULE b/src/licensedcode/data/rules/mpich_url_2.RULE index 95d4eb6b1ca..66fb28c66ec 100644 --- a/src/licensedcode/data/rules/mpich_url_2.RULE +++ b/src/licensedcode/data/rules/mpich_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mpich +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpich2.html +--- + https://spdx.org/licenses/mpich2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpich_url_2.yml b/src/licensedcode/data/rules/mpich_url_2.yml deleted file mode 100644 index 7285130f63b..00000000000 --- a/src/licensedcode/data/rules/mpich_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpich -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpich2.html diff --git a/src/licensedcode/data/rules/mpl-1.0_0.RULE b/src/licensedcode/data/rules/mpl-1.0_0.RULE index e2c99b3bab3..0b740986dff 100644 --- a/src/licensedcode/data/rules/mpl-1.0_0.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_0.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + Mozilla Public License 1.0 - http://www.mozilla.org/MPL/ + http://www.mozilla.org/MPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_0.yml b/src/licensedcode/data/rules/mpl-1.0_0.yml deleted file mode 100644 index a76982c51be..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_1.RULE b/src/licensedcode/data/rules/mpl-1.0_1.RULE index 125b925c1bf..9ca8909b626 100644 --- a/src/licensedcode/data/rules/mpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_1.RULE @@ -1,3 +1,10 @@ -"The contents of this file are subject to the Mozilla Public License Version 1.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.mozilla.org/MPL/ -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. +--- +license_expression: mpl-1.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- +"The contents of this file are subject to the Mozilla Public License Version 1.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.mozilla.org/MPL/ +Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_1.yml b/src/licensedcode/data/rules/mpl-1.0_1.yml deleted file mode 100644 index 04334e0092d..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_10.RULE b/src/licensedcode/data/rules/mpl-1.0_10.RULE index e22cbe7144c..b2eaa1035e5 100644 --- a/src/licensedcode/data/rules/mpl-1.0_10.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mozilla1.0.php +--- + http://opensource.org/licenses/mozilla1.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_10.yml b/src/licensedcode/data/rules/mpl-1.0_10.yml deleted file mode 100644 index 968d257989d..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mozilla1.0.php diff --git a/src/licensedcode/data/rules/mpl-1.0_11.RULE b/src/licensedcode/data/rules/mpl-1.0_11.RULE index 93d08750a3e..afda342e401 100644 --- a/src/licensedcode/data/rules/mpl-1.0_11.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mozilla1.0.php +--- + http://www.opensource.org/licenses/mozilla1.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_11.yml b/src/licensedcode/data/rules/mpl-1.0_11.yml deleted file mode 100644 index 2a58ff7de71..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mozilla1.0.php diff --git a/src/licensedcode/data/rules/mpl-1.0_12.RULE b/src/licensedcode/data/rules/mpl-1.0_12.RULE index 847e8e094ac..a5405c5ef0b 100644 --- a/src/licensedcode/data/rules/mpl-1.0_12.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 +is_license_tag: yes +relevance: 100 +--- + License: MPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_12.yml b/src/licensedcode/data/rules/mpl-1.0_12.yml deleted file mode 100644 index c788b4379f1..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_13.RULE b/src/licensedcode/data/rules/mpl-1.0_13.RULE index 7b2d82f860d..218b474eca9 100644 --- a/src/licensedcode/data/rules/mpl-1.0_13.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mpl-1.0 +is_license_text: yes +--- + MOZILLA PUBLIC LICENSE Version 1.0 @@ -95,4 +100,4 @@ The Covered Code is a ``commercial item,'' as that term is defined in 48 C.F.R. 11. MISCELLANEOUS. This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in, the United States of America: (a) unless otherwise agreed in writing, all disputes relating to this License (excepting any dispute relating to intellectual property rights) shall be subject to final and binding arbitration, with the losing party paying all costs of arbitration; (b) any arbitration relating to this Agreement shall be held in Santa Clara County, California, under the auspices of JAMS/EndDispute; and (c) any litigation relating to this Agreement shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. 12. RESPONSIBILITY FOR CLAIMS. -Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. \ No newline at end of file +Except in cases where another Contributor has failed to comply with Section 3.4, You are responsible for damages arising, directly or indirectly, out of Your utilization of rights under this License, based on the number of copies of Covered Code you made available, the revenues you received from utilizing such rights, and other relevant factors. You agree to work with affected parties to distribute responsibility on an equitable basis. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_13.yml b/src/licensedcode/data/rules/mpl-1.0_13.yml deleted file mode 100644 index c2827435328..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/mpl-1.0_14.RULE b/src/licensedcode/data/rules/mpl-1.0_14.RULE index c62b6c35836..762e95cd6d5 100644 --- a/src/licensedcode/data/rules/mpl-1.0_14.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +minimum_coverage: 45 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MPL: "The contents of this file are subject to the {{Mozilla Public License}} Version 1.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.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_14.yml b/src/licensedcode/data/rules/mpl-1.0_14.yml deleted file mode 100644 index cc34b13ef1f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -minimum_coverage: 45 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_15.RULE b/src/licensedcode/data/rules/mpl-1.0_15.RULE index c3dd377f17d..fa46d03585d 100644 --- a/src/licensedcode/data/rules/mpl-1.0_15.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_15.yml b/src/licensedcode/data/rules/mpl-1.0_15.yml deleted file mode 100644 index a6c8434d723..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_16.RULE b/src/licensedcode/data/rules/mpl-1.0_16.RULE index 33493ad7775..05058f9a08d 100644 --- a/src/licensedcode/data/rules/mpl-1.0_16.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +--- + the Mozilla Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_16.yml b/src/licensedcode/data/rules/mpl-1.0_16.yml deleted file mode 100644 index a6c8434d723..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_17.RULE b/src/licensedcode/data/rules/mpl-1.0_17.RULE index f05a2ad5fd7..60d649537ed 100644 --- a/src/licensedcode/data/rules/mpl-1.0_17.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_17.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mpl-1.0 +is_license_tag: yes +relevance: 100 +--- + License: MPL-1.0 MOZILLA PUBLIC LICENSE Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_17.yml b/src/licensedcode/data/rules/mpl-1.0_17.yml deleted file mode 100644 index c788b4379f1..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_18.RULE b/src/licensedcode/data/rules/mpl-1.0_18.RULE index fa6bfd677c1..f7ae4cea46c 100644 --- a/src/licensedcode/data/rules/mpl-1.0_18.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_18.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +relevance: 95 +minimum_coverage: 96 +notes: truncated and damaged text +--- + License: MPL-1.0 MOZILLA PUBLIC LICENSE Version 1.0 diff --git a/src/licensedcode/data/rules/mpl-1.0_18.yml b/src/licensedcode/data/rules/mpl-1.0_18.yml deleted file mode 100644 index 1a6ae8d91bb..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -relevance: 95 -minimum_coverage: 96 -notes: truncated and damaged text diff --git a/src/licensedcode/data/rules/mpl-1.0_19.RULE b/src/licensedcode/data/rules/mpl-1.0_19.RULE index 045d172ce61..9097ec02062 100644 --- a/src/licensedcode/data/rules/mpl-1.0_19.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mpl-1.0_19.yml b/src/licensedcode/data/rules/mpl-1.0_19.yml deleted file mode 100644 index 9c2086b48bd..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_2.RULE b/src/licensedcode/data/rules/mpl-1.0_2.RULE index 42b827c915d..ba97014c460 100644 --- a/src/licensedcode/data/rules/mpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.0.html +--- + http://www.mozilla.org/MPL/MPL-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_2.yml b/src/licensedcode/data/rules/mpl-1.0_2.yml deleted file mode 100644 index 8f9d721345d..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.0.html diff --git a/src/licensedcode/data/rules/mpl-1.0_20.RULE b/src/licensedcode/data/rules/mpl-1.0_20.RULE index 7d7c765650c..3dae301e6e8 100644 --- a/src/licensedcode/data/rules/mpl-1.0_20.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_20.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +relevance: 100 +--- + The files are available in source code form under the Mozilla Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_20.yml b/src/licensedcode/data/rules/mpl-1.0_20.yml deleted file mode 100644 index f30a0283733..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_21.RULE b/src/licensedcode/data/rules/mpl-1.0_21.RULE index 6bb7175dcd2..f811bc6f6c4 100644 --- a/src/licensedcode/data/rules/mpl-1.0_21.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://wiki.netbeans.org/DevFaqMpl3rdPartySources +--- + The files are available in source code form under the Mozilla Public License 1.0 at http://wiki.netbeans.org/DevFaqMpl3rdPartySources diff --git a/src/licensedcode/data/rules/mpl-1.0_21.yml b/src/licensedcode/data/rules/mpl-1.0_21.yml deleted file mode 100644 index 7552efcc6b4..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://wiki.netbeans.org/DevFaqMpl3rdPartySources diff --git a/src/licensedcode/data/rules/mpl-1.0_22.RULE b/src/licensedcode/data/rules/mpl-1.0_22.RULE index 0a695f08590..a55ff055271 100644 --- a/src/licensedcode/data/rules/mpl-1.0_22.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.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.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_22.yml b/src/licensedcode/data/rules/mpl-1.0_22.yml deleted file mode 100644 index c525a737ed3..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_23.RULE b/src/licensedcode/data/rules/mpl-1.0_23.RULE index 5b1a6e4471a..b01ce62d49e 100644 --- a/src/licensedcode/data/rules/mpl-1.0_23.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_23.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.0.html +--- + Licensed under the Mozilla Public License Version 1.1:http://www.mozilla.org/MPL/MPL-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_23.yml b/src/licensedcode/data/rules/mpl-1.0_23.yml deleted file mode 100644 index 121fa27ff5d..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.0.html diff --git a/src/licensedcode/data/rules/mpl-1.0_24.RULE b/src/licensedcode/data/rules/mpl-1.0_24.RULE index 8e5a14acad3..f28bfe2b77a 100644 --- a/src/licensedcode/data/rules/mpl-1.0_24.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +relevance: 90 +--- + distributed under the Mozilla Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_24.yml b/src/licensedcode/data/rules/mpl-1.0_24.yml deleted file mode 100644 index 3f6874c294f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/mpl-1.0_25.RULE b/src/licensedcode/data/rules/mpl-1.0_25.RULE index 7b3da6b9975..3a01baf5c58 100644 --- a/src/licensedcode/data/rules/mpl-1.0_25.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +relevance: 100 +--- + distributed under the Mozilla Public License version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_25.yml b/src/licensedcode/data/rules/mpl-1.0_25.yml deleted file mode 100644 index f30a0283733..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_26.RULE b/src/licensedcode/data/rules/mpl-1.0_26.RULE index 0d0a618ccb5..77092a3799f 100644 --- a/src/licensedcode/data/rules/mpl-1.0_26.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_26.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +referenced_filenames: + - MPL-1.0.txt +notes: This was seen in old cURL licenses. +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + Part of this software is distributed under the Mozilla Public License version 1.0, which is part of this distribution (MPL-1.0.txt) and available on-line at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_26.yml b/src/licensedcode/data/rules/mpl-1.0_26.yml deleted file mode 100644 index 452d380c5b0..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_26.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -referenced_filenames: - - MPL-1.0.txt -notes: This was seen in old cURL licenses. -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_27.RULE b/src/licensedcode/data/rules/mpl-1.0_27.RULE index d55bb0e8b9a..9b6d94b87c0 100644 --- a/src/licensedcode/data/rules/mpl-1.0_27.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_27.RULE @@ -1,3 +1,14 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 95 +referenced_filenames: + - MPL-1.0.txt +notes: This was seen in old cURL licenses. Note the extra uncommon location for dispute resolution +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + Part of this software is distributed under the Mozilla Public License version 1.0, which is part of this distribution (MPL-1.0.txt) and available on-line at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_27.yml b/src/licensedcode/data/rules/mpl-1.0_27.yml deleted file mode 100644 index 21f8fca7af5..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_27.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 95 -referenced_filenames: - - MPL-1.0.txt -notes: This was seen in old cURL licenses. Note the extra uncommon location for dispute resolution -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_28.RULE b/src/licensedcode/data/rules/mpl-1.0_28.RULE index a0e7a7c5ac9..40a9e835d59 100644 --- a/src/licensedcode/data/rules/mpl-1.0_28.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_28.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 95 +notes: This was seen in old cURL licenses. Note the extra uncommon location for dispute resolution +--- + * The Initial Developer has the right, regardless of the citizenship of any involved party, to choose the location for settling disputes as refered to under section "11. Miscellaneous" of the Mozilla Public diff --git a/src/licensedcode/data/rules/mpl-1.0_28.yml b/src/licensedcode/data/rules/mpl-1.0_28.yml deleted file mode 100644 index 5b05bad6a26..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 95 -notes: This was seen in old cURL licenses. Note the extra uncommon location for dispute resolution diff --git a/src/licensedcode/data/rules/mpl-1.0_29.RULE b/src/licensedcode/data/rules/mpl-1.0_29.RULE index a8338afbad3..cc73da124cb 100644 --- a/src/licensedcode/data/rules/mpl-1.0_29.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_29.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 95 +notes: This was seen in old cURL licenses. Note the extra uncommon location for dispute resolution +--- + In accordance with section "4. Inability to Comply Due to Statute or Regulation" the following exemptions apply to this software: diff --git a/src/licensedcode/data/rules/mpl-1.0_29.yml b/src/licensedcode/data/rules/mpl-1.0_29.yml deleted file mode 100644 index 5b05bad6a26..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 95 -notes: This was seen in old cURL licenses. Note the extra uncommon location for dispute resolution diff --git a/src/licensedcode/data/rules/mpl-1.0_3.RULE b/src/licensedcode/data/rules/mpl-1.0_3.RULE index e15449a4ccc..a30b53aeee0 100644 --- a/src/licensedcode/data/rules/mpl-1.0_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_3.yml b/src/licensedcode/data/rules/mpl-1.0_3.yml deleted file mode 100644 index a6c8434d723..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_30.RULE b/src/licensedcode/data/rules/mpl-1.0_30.RULE index d99735de528..c4421f0bc59 100644 --- a/src/licensedcode/data/rules/mpl-1.0_30.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Mozilla Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_30.yml b/src/licensedcode/data/rules/mpl-1.0_30.yml deleted file mode 100644 index 506d7f5b905..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.0_31.RULE b/src/licensedcode/data/rules/mpl-1.0_31.RULE index 81194d01d28..364571abb91 100644 --- a/src/licensedcode/data/rules/mpl-1.0_31.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MPL-1.0 Mozilla Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_31.yml b/src/licensedcode/data/rules/mpl-1.0_31.yml deleted file mode 100644 index 506d7f5b905..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.0_32.RULE b/src/licensedcode/data/rules/mpl-1.0_32.RULE index e4265bca595..6ea0f2fc8b1 100644 --- a/src/licensedcode/data/rules/mpl-1.0_32.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mozilla Public License 1.0 MPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_32.yml b/src/licensedcode/data/rules/mpl-1.0_32.yml deleted file mode 100644 index 506d7f5b905..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.0_33.RULE b/src/licensedcode/data/rules/mpl-1.0_33.RULE index bdee2fdfe04..65493358aae 100644 --- a/src/licensedcode/data/rules/mpl-1.0_33.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_33.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Mozilla Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_33.yml b/src/licensedcode/data/rules/mpl-1.0_33.yml deleted file mode 100644 index 13a1563b39f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.0_34.RULE b/src/licensedcode/data/rules/mpl-1.0_34.RULE index f2f5f61f7cd..7f94cad9a98 100644 --- a/src/licensedcode/data/rules/mpl-1.0_34.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_34.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_34.yml b/src/licensedcode/data/rules/mpl-1.0_34.yml deleted file mode 100644 index 13a1563b39f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.0_35.RULE b/src/licensedcode/data/rules/mpl-1.0_35.RULE index b88f14f3641..63f3fc2af57 100644 --- a/src/licensedcode/data/rules/mpl-1.0_35.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/MPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_35.yml b/src/licensedcode/data/rules/mpl-1.0_35.yml deleted file mode 100644 index a6c8434d723..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_36.RULE b/src/licensedcode/data/rules/mpl-1.0_36.RULE index afe765d8d6a..518b7bb1694 100644 --- a/src/licensedcode/data/rules/mpl-1.0_36.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_36.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MPL-1.0 +--- + https://licenses.nuget.org/MPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_36.yml b/src/licensedcode/data/rules/mpl-1.0_36.yml deleted file mode 100644 index e36964ccf55..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MPL-1.0 diff --git a/src/licensedcode/data/rules/mpl-1.0_37.RULE b/src/licensedcode/data/rules/mpl-1.0_37.RULE index ecd9ba8fee0..e7ce6dd3a48 100644 --- a/src/licensedcode/data/rules/mpl-1.0_37.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_37.yml b/src/licensedcode/data/rules/mpl-1.0_37.yml deleted file mode 100644 index a6c8434d723..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_38.RULE b/src/licensedcode/data/rules/mpl-1.0_38.RULE index ec50baf6793..97305736001 100644 --- a/src/licensedcode/data/rules/mpl-1.0_38.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-1.0 +--- + LICENSE {{MPL-1.0}} https://spdx.org/licenses/MPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_38.yml b/src/licensedcode/data/rules/mpl-1.0_38.yml deleted file mode 100644 index 1c9948768b0..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-1.0 diff --git a/src/licensedcode/data/rules/mpl-1.0_39.RULE b/src/licensedcode/data/rules/mpl-1.0_39.RULE index f0238c2eb49..4d6ee041c59 100644 --- a/src/licensedcode/data/rules/mpl-1.0_39.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_39.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-1.0 +--- + {{MPL-1.0}} https://spdx.org/licenses/MPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_39.yml b/src/licensedcode/data/rules/mpl-1.0_39.yml deleted file mode 100644 index 1c9948768b0..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-1.0 diff --git a/src/licensedcode/data/rules/mpl-1.0_4.RULE b/src/licensedcode/data/rules/mpl-1.0_4.RULE index 2b7a5c3f498..8e6c730e313 100644 --- a/src/licensedcode/data/rules/mpl-1.0_4.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +--- + MPL 1.0 The contents of this file are subject to the Mozilla Public License diff --git a/src/licensedcode/data/rules/mpl-1.0_4.yml b/src/licensedcode/data/rules/mpl-1.0_4.yml deleted file mode 100644 index c38d30ba07d..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-1.0_5.RULE b/src/licensedcode/data/rules/mpl-1.0_5.RULE index 478cd9f681b..611f151ed76 100644 --- a/src/licensedcode/data/rules/mpl-1.0_5.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.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.mozilla.org/MPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_5.yml b/src/licensedcode/data/rules/mpl-1.0_5.yml deleted file mode 100644 index 2f59c4942ee..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_6.RULE b/src/licensedcode/data/rules/mpl-1.0_6.RULE index 53ce4a65786..ac540e952ad 100644 --- a/src/licensedcode/data/rules/mpl-1.0_6.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_6.RULE @@ -1,2 +1,9 @@ -http://www.mozilla.org/MPL/MPL-1.0.txt - \ No newline at end of file +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.0.txt +--- + +http://www.mozilla.org/MPL/MPL-1.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_6.yml b/src/licensedcode/data/rules/mpl-1.0_6.yml deleted file mode 100644 index 49d46b4a8e5..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.0.txt diff --git a/src/licensedcode/data/rules/mpl-1.0_7.RULE b/src/licensedcode/data/rules/mpl-1.0_7.RULE index a54f41cab44..a58082ef8e0 100644 --- a/src/licensedcode/data/rules/mpl-1.0_7.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +notes: http://www.mozilla.com/MPL/1.0/ +ignorable_urls: + - http://www.mozilla.com/MPL/1.0/ +--- + http://www.mozilla.com/MPL/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_7.yml b/src/licensedcode/data/rules/mpl-1.0_7.yml deleted file mode 100644 index 37ec2f6653c..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -notes: http://www.mozilla.com/MPL/1.0/ -ignorable_urls: - - http://www.mozilla.com/MPL/1.0/ diff --git a/src/licensedcode/data/rules/mpl-1.0_8.RULE b/src/licensedcode/data/rules/mpl-1.0_8.RULE index 4005eb481ff..ba523506f22 100644 --- a/src/licensedcode/data/rules/mpl-1.0_8.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + * The contents of this file are subject to the {{Mozilla Public License}} * Version 1.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at @@ -8,4 +16,4 @@ * the License for the specific language governing rights and limitations * under the License. * - * The Original Code is \ No newline at end of file + * The Original Code is \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_8.yml b/src/licensedcode/data/rules/mpl-1.0_8.yml deleted file mode 100644 index 2f59c4942ee..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_9.RULE b/src/licensedcode/data/rules/mpl-1.0_9.RULE index 37c27a9ae57..4cb8937bc9a 100644 --- a/src/licensedcode/data/rules/mpl-1.0_9.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +notes: http://www.mozilla.org/MPL/1.0/ +ignorable_urls: + - http://www.mozilla.org/MPL/1.0/ +--- + http://www.mozilla.org/MPL/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_9.yml b/src/licensedcode/data/rules/mpl-1.0_9.yml deleted file mode 100644 index aab92283668..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -notes: http://www.mozilla.org/MPL/1.0/ -ignorable_urls: - - http://www.mozilla.org/MPL/1.0/ diff --git a/src/licensedcode/data/rules/mpl-1.0_or_apache-2.0_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.0_or_apache-2.0_or_gpl-2.0-plus_1.RULE index 6b437ea51c1..f0e174730f8 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_apache-2.0_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_apache-2.0_or_gpl-2.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 OR apache-2.0 OR gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + (MPL-1.1 OR Apache-2.0 OR GPL-2.0-or-later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_apache-2.0_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mpl-1.0_or_apache-2.0_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 196a61e217e..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_apache-2.0_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 OR apache-2.0 OR gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_1.RULE index f636462d179..e503981a141 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 OR gpl-2.0-plus +is_license_notice: yes +notes: This is a Dual MPL/GPL license found in the linux kernel +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MPL: The contents of this file are subject to the Mozilla Public License Version 1.0 diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 7b75768c8b9..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 OR gpl-2.0-plus -is_license_notice: yes -notes: This is a Dual MPL/GPL license found in the linux kernel -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_2.RULE index 5c9d69a6944..62561b0e4a2 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 OR gpl-2.0-plus +is_license_notice: yes +notes: notice found in some dual-licensed packages +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MPL: "The contents of this file are subject to the Mozilla Public License Version 1.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.mozilla.org/MPL/ @@ -14,5 +22,4 @@ Copyright 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_2.yml deleted file mode 100644 index 723fb7e41ed..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 OR gpl-2.0-plus -is_license_notice: yes -notes: notice found in some dual-licensed packages -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE index 2e51db8d8d6..6f444eb74f8 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: MPL/GPL/LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index 3cd41e15800..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE index 366c339d0a9..d6f3dcb817c 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + license to MPL/GPL/LGPL tri-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index f4253380812..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE index 9e456dfef2c..712f773ebc1 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + Licensed under a triple GPL/MPL/LGPL License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.yml b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.yml deleted file mode 100644 index f4253380812..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE index 9cb67c5ce77..348a41efa04 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +notes: OpenSIP Tripple MPL/GPL/LGPL +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + * The contents of this file are subject to the Mozilla Public License * Version 1.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index 7d130179240..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -notes: OpenSIP Tripple MPL/GPL/LGPL -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE index 460a2118909..1c779b6b625 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +notes: Opensip tri license in HTML +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + is published under the MPL, GPL, LGPL tripple license. The default active license is MPL. However, because of the inherent incompatibility between MPL @@ -36,4 +44,4 @@ as follows * enabled at compile time using the --enable-gpllibs configure switch. If * enabled, the content of this file is published under the terms of GNU * General Public License Version 2. For a detailed list of the available - * GPL code, see /gnu/README file. + * GPL code, see /gnu/README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index e589a4c9033..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -notes: Opensip tri license in HTML -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE index f511a2df48e..1752a983fbd 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +notes: OpenSIP Tripple MPL/GPL/LGPL +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + OpenSBC is published under the MPL, GPL, LGPL tripple license. The default active license is MPL. However, because of the inherent incompatibility between MPL and GNU licenses, we decided to explicitly publish using GPL and LGP as alternative licenses. The full text of the license is as follows @@ -30,4 +38,4 @@ * enabled at compile time using the --enable-gpllibs configure switch. If * enabled, the content of this file is published under the terms of GNU * General Public License Version 2. For a detailed list of the available - * GPL code, see $() /gnu/README file. + * GPL code, see $() /gnu/README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.yml deleted file mode 100644 index 7d130179240..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_gpl-2.0-plus_or_lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -notes: OpenSIP Tripple MPL/GPL/LGPL -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_1.RULE index 005ee8036ea..fa8efbd9f7f 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 OR lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/copyleft/lesser.html + - http://www.mozilla.org/NPL/MPL-1.0.html +--- + The code and datafiles in this distribution are licensed under the Mozilla Public License. See http://www.mozilla.org/NPL/MPL-1.0.html for a copy of the license. Alternately, you may use libical under the diff --git a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index fdd4efb7f44..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 OR lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/copyleft/lesser.html - - http://www.mozilla.org/NPL/MPL-1.0.html diff --git a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_2.RULE index 1e525887be5..08797e33a04 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.0 OR lgpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.fsf.org/copyleft/lesser.html + - http://www.mozilla.org/NPL/MPL-1.0.html +--- + The code and datafiles in this distribution are licensed under the Mozilla Public License. See http://www.mozilla.org/NPL/MPL-1.0.html for a copy of the license. Alternately, you may use libical under the @@ -8,4 +16,4 @@ This dual license ensures that the library can be incorporated into both proprietary code and GPL'd programs, and will benefit from improvements made by programmers in both realms. I will only accept changes into my version of the library if they are similarly -dual-licensed. +dual-licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_2.yml b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_2.yml deleted file mode 100644 index fdd4efb7f44..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 OR lgpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.fsf.org/copyleft/lesser.html - - http://www.mozilla.org/NPL/MPL-1.0.html diff --git a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_3.RULE index 0a02005018c..b0d8e6b9fd2 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_3.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mpl-1.0 OR lgpl-2.0-plus +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +--- + * See the file LICENSE for redistribution information. * If you have not received a copy of the license, please contact CodeFactory \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_3.yml b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_3.yml deleted file mode 100644 index 4245b4ac3c9..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.0 OR lgpl-2.0-plus -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_or_gpl-1.0-plus_and_other_1.RULE b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_or_gpl-1.0-plus_and_other_1.RULE index 1ffb33123f0..0529e37d541 100644 --- a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_or_gpl-1.0-plus_and_other_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_or_gpl-1.0-plus_and_other_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (mpl-1.0 OR lgpl-2.0-plus OR gpl-1.0-plus) AND apache-2.0 AND apache-2.0 + AND apache-2.0 AND apache-2.0 AND (bsd-new OR afl-2.1) +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + you may choose which license to receive this code under (except as noted in per-module LICENSE files). Persevere is distributed with several libraries which were produced with diff --git a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_or_gpl-1.0-plus_and_other_1.yml b/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_or_gpl-1.0-plus_and_other_1.yml deleted file mode 100644 index 53167bfcc34..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_or_lgpl-2.0-plus_or_gpl-1.0-plus_and_other_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (mpl-1.0 OR lgpl-2.0-plus OR gpl-1.0-plus) AND apache-2.0 AND apache-2.0 - AND apache-2.0 AND apache-2.0 AND (bsd-new OR afl-2.1) -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mpl-1.0_url_1.RULE b/src/licensedcode/data/rules/mpl-1.0_url_1.RULE index a5470d85e78..1dd3c338141 100644 --- a/src/licensedcode/data/rules/mpl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpl-1.0 +--- + https://spdx.org/licenses/mpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_url_1.yml b/src/licensedcode/data/rules/mpl-1.0_url_1.yml deleted file mode 100644 index 67ddab206b0..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpl-1.0 diff --git a/src/licensedcode/data/rules/mpl-1.0_url_2.RULE b/src/licensedcode/data/rules/mpl-1.0_url_2.RULE index 07b49a673fb..2045e164627 100644 --- a/src/licensedcode/data/rules/mpl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpl-1.0.html +--- + https://spdx.org/licenses/mpl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_url_2.yml b/src/licensedcode/data/rules/mpl-1.0_url_2.yml deleted file mode 100644 index ea3d45fd81a..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpl-1.0.html diff --git a/src/licensedcode/data/rules/mpl-1.0_url_glc_96.RULE b/src/licensedcode/data/rules/mpl-1.0_url_glc_96.RULE index 38374b6a09f..0ab14d99000 100644 --- a/src/licensedcode/data/rules/mpl-1.0_url_glc_96.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_url_glc_96.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mpl-1.0 +--- + http://opensource.org/licenses/mpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_url_glc_96.yml b/src/licensedcode/data/rules/mpl-1.0_url_glc_96.yml deleted file mode 100644 index ea3957313ed..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_url_glc_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mpl-1.0 diff --git a/src/licensedcode/data/rules/mpl-1.0_url_glc_97.RULE b/src/licensedcode/data/rules/mpl-1.0_url_glc_97.RULE index 4d3aa68b5b6..aae6bd8c6d4 100644 --- a/src/licensedcode/data/rules/mpl-1.0_url_glc_97.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_url_glc_97.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mpl-1.0 +--- + https://opensource.org/licenses/mpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_url_glc_97.yml b/src/licensedcode/data/rules/mpl-1.0_url_glc_97.yml deleted file mode 100644 index 1b2921aa667..00000000000 --- a/src/licensedcode/data/rules/mpl-1.0_url_glc_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mpl-1.0 diff --git a/src/licensedcode/data/rules/mpl-1.1_1.RULE b/src/licensedcode/data/rules/mpl-1.1_1.RULE index d5e1730ee25..2c7d9064f5f 100644 --- a/src/licensedcode/data/rules/mpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MPL 1.1 The contents of this file are subject to the Mozilla Public License diff --git a/src/licensedcode/data/rules/mpl-1.1_1.yml b/src/licensedcode/data/rules/mpl-1.1_1.yml deleted file mode 100644 index cb6bbb26f6c..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_10.RULE b/src/licensedcode/data/rules/mpl-1.1_10.RULE index 956b480ac53..7c400fcb701 100644 --- a/src/licensedcode/data/rules/mpl-1.1_10.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +notes: No version is provided and the MPL 1.1 is as good a candidate as any other. In contrast + with the GPL there is no notion of an MPL without version. +--- + is licensed under the MPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_10.yml b/src/licensedcode/data/rules/mpl-1.1_10.yml deleted file mode 100644 index f754d426ff0..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -notes: No version is provided and the MPL 1.1 is as good a candidate as any other. In contrast - with the GPL there is no notion of an MPL without version. diff --git a/src/licensedcode/data/rules/mpl-1.1_11.RULE b/src/licensedcode/data/rules/mpl-1.1_11.RULE index 3cffcab084a..583ad2eed8c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_11.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mozilla1.1.php +--- + http://opensource.org/licenses/mozilla1.1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_11.yml b/src/licensedcode/data/rules/mpl-1.1_11.yml deleted file mode 100644 index e82c096905a..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mozilla1.1.php diff --git a/src/licensedcode/data/rules/mpl-1.1_12.RULE b/src/licensedcode/data/rules/mpl-1.1_12.RULE index 6101f421620..a83a95f8d0c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_12.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_12.RULE @@ -1 +1,10 @@ -http://www.mozilla.org/MPL/1.1/ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +notes: http://www.mozilla.org/MPL/1.1/ +ignorable_urls: + - http://www.mozilla.org/MPL/1.1/ +--- + +http://www.mozilla.org/MPL/1.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_12.yml b/src/licensedcode/data/rules/mpl-1.1_12.yml deleted file mode 100644 index 648a71c126e..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -notes: http://www.mozilla.org/MPL/1.1/ -ignorable_urls: - - http://www.mozilla.org/MPL/1.1/ diff --git a/src/licensedcode/data/rules/mpl-1.1_13.RULE b/src/licensedcode/data/rules/mpl-1.1_13.RULE index 0b85059acb3..e5567f225de 100644 --- a/src/licensedcode/data/rules/mpl-1.1_13.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_13.yml b/src/licensedcode/data/rules/mpl-1.1_13.yml deleted file mode 100644 index ae06c04ed30..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_14.RULE b/src/licensedcode/data/rules/mpl-1.1_14.RULE index 07f8ec90871..58b877574e2 100644 --- a/src/licensedcode/data/rules/mpl-1.1_14.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +notes: another MPL variant +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + licensed under the Mozilla Public License 1.1 Authors and Copyright are as described below: @@ -457,4 +465,4 @@ EXHIBIT A -Mozilla Public License. [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] + Original Code Source Code for Your Modifications.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_14.yml b/src/licensedcode/data/rules/mpl-1.1_14.yml deleted file mode 100644 index 8cae2cf984f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -notes: another MPL variant -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_15.RULE b/src/licensedcode/data/rules/mpl-1.1_15.RULE index 81d2745fb41..b093ac17307 100644 --- a/src/licensedcode/data/rules/mpl-1.1_15.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +notes: MPL 1.1 alternative +--- + Mozilla Public License Version 1.1 1. Definitions. 1.0.1. "Commercial Use" @@ -120,4 +126,4 @@ This License represents the complete agreement concerning subject matter hereof. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. 13. Multiple-licensed code -Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. +Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_15.yml b/src/licensedcode/data/rules/mpl-1.1_15.yml deleted file mode 100644 index ccbc2eb9740..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -notes: MPL 1.1 alternative diff --git a/src/licensedcode/data/rules/mpl-1.1_16.RULE b/src/licensedcode/data/rules/mpl-1.1_16.RULE index 564e104af8d..4e8937968bc 100644 --- a/src/licensedcode/data/rules/mpl-1.1_16.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_16.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Mozilla Public License version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_16.yml b/src/licensedcode/data/rules/mpl-1.1_16.yml deleted file mode 100644 index e25b9c43431..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_17.RULE b/src/licensedcode/data/rules/mpl-1.1_17.RULE index 4c0dbb4c44c..dd9c556f2df 100644 --- a/src/licensedcode/data/rules/mpl-1.1_17.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_17.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_17.yml b/src/licensedcode/data/rules/mpl-1.1_17.yml deleted file mode 100644 index e7a37449dcd..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_18.RULE b/src/licensedcode/data/rules/mpl-1.1_18.RULE index d37a37af816..046c471e926 100644 --- a/src/licensedcode/data/rules/mpl-1.1_18.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.1 @@ -466,4 +473,4 @@ EXHIBIT A -Mozilla Public License. [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] + Original Code Source Code for Your Modifications.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_18.yml b/src/licensedcode/data/rules/mpl-1.1_18.yml deleted file mode 100644 index cb6bbb26f6c..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_19.RULE b/src/licensedcode/data/rules/mpl-1.1_19.RULE index a7df1516c8d..ac6a6b6e869 100644 --- a/src/licensedcode/data/rules/mpl-1.1_19.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/mpl-1.1_19.yml b/src/licensedcode/data/rules/mpl-1.1_19.yml deleted file mode 100644 index 3a9abfbb28c..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_2.RULE b/src/licensedcode/data/rules/mpl-1.1_2.RULE index 8d510080f9b..1f2b5eee2fa 100644 --- a/src/licensedcode/data/rules/mpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.1 @@ -452,4 +459,4 @@ EXHIBIT A -Mozilla Public License. [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] + Original Code Source Code for Your Modifications.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_2.yml b/src/licensedcode/data/rules/mpl-1.1_2.yml deleted file mode 100644 index 1e56da35605..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_20.RULE b/src/licensedcode/data/rules/mpl-1.1_20.RULE index 6980f4020a0..4445955659d 100644 --- a/src/licensedcode/data/rules/mpl-1.1_20.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The MPL v1.1: The contents of this file are subject to the Mozilla Public License @@ -460,4 +467,4 @@ EXHIBIT A - Mozilla Public License. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations - under the License. + under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_20.yml b/src/licensedcode/data/rules/mpl-1.1_20.yml deleted file mode 100644 index 1e56da35605..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_21.RULE b/src/licensedcode/data/rules/mpl-1.1_21.RULE index 48ae82b06b2..62947e4d51f 100644 --- a/src/licensedcode/data/rules/mpl-1.1_21.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The MPL License --------------------------- diff --git a/src/licensedcode/data/rules/mpl-1.1_21.yml b/src/licensedcode/data/rules/mpl-1.1_21.yml deleted file mode 100644 index 1e56da35605..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_22.RULE b/src/licensedcode/data/rules/mpl-1.1_22.RULE index 7a097fe3c87..a5ae56dbbd3 100644 --- a/src/licensedcode/data/rules/mpl-1.1_22.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_22.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + Mozilla Public License Version 1.1 (available at "http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_22.yml b/src/licensedcode/data/rules/mpl-1.1_22.yml deleted file mode 100644 index 47b85666a8e..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_23.RULE b/src/licensedcode/data/rules/mpl-1.1_23.RULE index 675873a3e47..0e526e7f7ec 100644 --- a/src/licensedcode/data/rules/mpl-1.1_23.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +minimum_coverage: 10 +ignorable_urls: + - http://www.rabbitmq.com/mpl.html +--- + The MPL v1.1: The contents of this file are subject to the Mozilla Public License diff --git a/src/licensedcode/data/rules/mpl-1.1_23.yml b/src/licensedcode/data/rules/mpl-1.1_23.yml deleted file mode 100644 index 155efa852a7..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -minimum_coverage: 10 -ignorable_urls: - - http://www.rabbitmq.com/mpl.html diff --git a/src/licensedcode/data/rules/mpl-1.1_24.RULE b/src/licensedcode/data/rules/mpl-1.1_24.RULE index 9cf13d50118..b9e643acc9c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_24.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_24.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +relevance: 100 +--- + License: MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_24.yml b/src/licensedcode/data/rules/mpl-1.1_24.yml deleted file mode 100644 index 1cd8666e70f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_25.RULE b/src/licensedcode/data/rules/mpl-1.1_25.RULE index 48896bc6ce8..1e301e7a29f 100644 --- a/src/licensedcode/data/rules/mpl-1.1_25.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1 * @@ -11,5 +18,4 @@ * for the specific language governing rights and limitations under the * License. * - * The Original Code is - \ No newline at end of file + * The Original Code is \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_25.yml b/src/licensedcode/data/rules/mpl-1.1_25.yml deleted file mode 100644 index cb6bbb26f6c..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_26.RULE b/src/licensedcode/data/rules/mpl-1.1_26.RULE index d5d6297d164..3edf9e9c337 100644 --- a/src/licensedcode/data/rules/mpl-1.1_26.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_26.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +notes: No version is provided and the MPL 1.1 is as good a candidate as any other MPL. In contrast + with the GPL there is no notion of an MPL without version. +--- + is licensed under the MPL 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_26.yml b/src/licensedcode/data/rules/mpl-1.1_26.yml deleted file mode 100644 index 8663fdddc05..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -notes: No version is provided and the MPL 1.1 is as good a candidate as any other MPL. In contrast - with the GPL there is no notion of an MPL without version. diff --git a/src/licensedcode/data/rules/mpl-1.1_27.RULE b/src/licensedcode/data/rules/mpl-1.1_27.RULE index 335ffc58e39..f290b2dda09 100644 --- a/src/licensedcode/data/rules/mpl-1.1_27.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_27.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + The modified versions of these files are distributed under the MPL v 1.1 ( http://www.mozilla.org/MPL/MPL-1.1.html ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_27.yml b/src/licensedcode/data/rules/mpl-1.1_27.yml deleted file mode 100644 index 5b0274935d7..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_28.RULE b/src/licensedcode/data/rules/mpl-1.1_28.RULE index a8d7092df2d..07c592ea73a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_28.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_28.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.1 @@ -361,4 +368,4 @@ the MPL or the [___] License." [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code -for Your Modifications.] \ No newline at end of file +for Your Modifications.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_28.yml b/src/licensedcode/data/rules/mpl-1.1_28.yml deleted file mode 100644 index 1e56da35605..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_29.RULE b/src/licensedcode/data/rules/mpl-1.1_29.RULE index 83175fc44af..9651f1f57a2 100644 --- a/src/licensedcode/data/rules/mpl-1.1_29.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_29.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_29.yml b/src/licensedcode/data/rules/mpl-1.1_29.yml deleted file mode 100644 index 1e56da35605..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_3.RULE b/src/licensedcode/data/rules/mpl-1.1_3.RULE index e6c12038fd0..3150b4aadc6 100644 --- a/src/licensedcode/data/rules/mpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.com/MPL/1.1/ +--- + http://www.mozilla.com/MPL/1.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_3.yml b/src/licensedcode/data/rules/mpl-1.1_3.yml deleted file mode 100644 index b8759ed8e42..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.com/MPL/1.1/ diff --git a/src/licensedcode/data/rules/mpl-1.1_30.RULE b/src/licensedcode/data/rules/mpl-1.1_30.RULE index c5350ef1886..199ee3ef0f6 100644 --- a/src/licensedcode/data/rules/mpl-1.1_30.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_30.yml b/src/licensedcode/data/rules/mpl-1.1_30.yml deleted file mode 100644 index 1e56da35605..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_31.RULE b/src/licensedcode/data/rules/mpl-1.1_31.RULE index 2324200df8c..48e39f7f2b6 100644 --- a/src/licensedcode/data/rules/mpl-1.1_31.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_31.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + License: MPL 1.1 (http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_31.yml b/src/licensedcode/data/rules/mpl-1.1_31.yml deleted file mode 100644 index e214bd36e47..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_32.RULE b/src/licensedcode/data/rules/mpl-1.1_32.RULE index 3f59318ab6b..533d83a5ff3 100644 --- a/src/licensedcode/data/rules/mpl-1.1_32.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_32.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 80 +--- + MPL-1.1-style \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_32.yml b/src/licensedcode/data/rules/mpl-1.1_32.yml deleted file mode 100644 index daa27ab4285..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/mpl-1.1_33.RULE b/src/licensedcode/data/rules/mpl-1.1_33.RULE index 398147f4355..3ff885b56fd 100644 --- a/src/licensedcode/data/rules/mpl-1.1_33.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_33.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 80 +--- + MPL-style \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_33.yml b/src/licensedcode/data/rules/mpl-1.1_33.yml deleted file mode 100644 index daa27ab4285..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/mpl-1.1_34.RULE b/src/licensedcode/data/rules/mpl-1.1_34.RULE index 16dfca1f807..64b0e34ca6a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_34.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_34.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + this file is available under the Mozilla Public * * License Version 1.1. You may obtain a copy of the License at * -* http://www.mozilla.org/MPL/ \ No newline at end of file +* http://www.mozilla.org/MPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_34.yml b/src/licensedcode/data/rules/mpl-1.1_34.yml deleted file mode 100644 index cb6bbb26f6c..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_35.RULE b/src/licensedcode/data/rules/mpl-1.1_35.RULE index ce38c64723f..7b4fcbd0548 100644 --- a/src/licensedcode/data/rules/mpl-1.1_35.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_35.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The MPL v1.1: diff --git a/src/licensedcode/data/rules/mpl-1.1_35.yml b/src/licensedcode/data/rules/mpl-1.1_35.yml deleted file mode 100644 index 1e56da35605..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_36.RULE b/src/licensedcode/data/rules/mpl-1.1_36.RULE index f8952211915..9bf663d1e78 100644 --- a/src/licensedcode/data/rules/mpl-1.1_36.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_36.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +--- + The MPL v1.1: The contents of this file are subject to the {{Mozilla Public License}} @@ -17,4 +22,4 @@ The MPL v1.1: Portions created by - Contributor(s): . + Contributor(s): . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_36.yml b/src/licensedcode/data/rules/mpl-1.1_36.yml deleted file mode 100644 index 91e01c10cbe..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-1.1_37.RULE b/src/licensedcode/data/rules/mpl-1.1_37.RULE index 572aa550cf7..a8c6deb6181 100644 --- a/src/licensedcode/data/rules/mpl-1.1_37.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_37.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://opensource.org/licenses/mozilla1.0.php + - http://opensource.org/licenses/mozilla1.1.php +--- + The distribution is licensed under the Mozilla Public License. (http://opensource.org/licenses/mozilla1.0.php or http://opensource.org/licenses/mozilla1.1.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_37.yml b/src/licensedcode/data/rules/mpl-1.1_37.yml deleted file mode 100644 index c063eefa309..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://opensource.org/licenses/mozilla1.0.php - - http://opensource.org/licenses/mozilla1.1.php diff --git a/src/licensedcode/data/rules/mpl-1.1_38.RULE b/src/licensedcode/data/rules/mpl-1.1_38.RULE index 26791f8532d..7d453e40fea 100644 --- a/src/licensedcode/data/rules/mpl-1.1_38.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_38.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +relevance: 90 +notes: tag as documented in the Module-Build pod +--- + license mozilla \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_38.yml b/src/licensedcode/data/rules/mpl-1.1_38.yml deleted file mode 100644 index bab0284d9a2..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_38.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -relevance: 90 -notes: tag as documented in the Module-Build pod diff --git a/src/licensedcode/data/rules/mpl-1.1_39.RULE b/src/licensedcode/data/rules/mpl-1.1_39.RULE index e3c425a5c18..1bc54387570 100644 --- a/src/licensedcode/data/rules/mpl-1.1_39.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_39.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/MPL/ +--- + MOZILLA PUBLIC LICENSE Version 1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_39.yml b/src/licensedcode/data/rules/mpl-1.1_39.yml deleted file mode 100644 index 82ee1bc4310..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_4.RULE b/src/licensedcode/data/rules/mpl-1.1_4.RULE index 387d097b708..6facdc0dbbc 100644 --- a/src/licensedcode/data/rules/mpl-1.1_4.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_4.RULE @@ -1 +1,9 @@ -http://www.mozilla.org/MPL/MPL-1.1.txt +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.txt +--- + +http://www.mozilla.org/MPL/MPL-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_4.yml b/src/licensedcode/data/rules/mpl-1.1_4.yml deleted file mode 100644 index 7730ee02c31..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.txt diff --git a/src/licensedcode/data/rules/mpl-1.1_40.RULE b/src/licensedcode/data/rules/mpl-1.1_40.RULE index 13ee36dce8d..cc3d41a8182 100644 --- a/src/licensedcode/data/rules/mpl-1.1_40.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_40.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the {{Mozilla Public License}} Version 1.1 (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.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_40.yml b/src/licensedcode/data/rules/mpl-1.1_40.yml deleted file mode 100644 index a5f3dfe8b1b..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_41.RULE b/src/licensedcode/data/rules/mpl-1.1_41.RULE index 3c4c797fb9b..77282f52273 100644 --- a/src/licensedcode/data/rules/mpl-1.1_41.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_41.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/media/MPL/1.1/index.txt +--- + `MPL-1.1` - [Mozilla Public License Version 1.1](https://www.mozilla.org/media/MPL/1.1/index.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_41.yml b/src/licensedcode/data/rules/mpl-1.1_41.yml deleted file mode 100644 index cca2d3dfcdd..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/media/MPL/1.1/index.txt diff --git a/src/licensedcode/data/rules/mpl-1.1_42.RULE b/src/licensedcode/data/rules/mpl-1.1_42.RULE index 39cb39b7442..62d76be9df3 100644 --- a/src/licensedcode/data/rules/mpl-1.1_42.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_42.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Mozilla Public License (MPL) 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_42.yml b/src/licensedcode/data/rules/mpl-1.1_42.yml deleted file mode 100644 index 4890dbd1b8d..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_43.RULE b/src/licensedcode/data/rules/mpl-1.1_43.RULE index 39c4fed2bf7..dc2e3e9b257 100644 --- a/src/licensedcode/data/rules/mpl-1.1_43.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_43.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public licence (MPL) 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_43.yml b/src/licensedcode/data/rules/mpl-1.1_43.yml deleted file mode 100644 index e7a37449dcd..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_44.RULE b/src/licensedcode/data/rules/mpl-1.1_44.RULE index 0d8800dad7d..ae20115248c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_44.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_44.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mpl-1.1_44.yml b/src/licensedcode/data/rules/mpl-1.1_44.yml deleted file mode 100644 index a5f3dfe8b1b..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_45.RULE b/src/licensedcode/data/rules/mpl-1.1_45.RULE index 521cf3256d6..082ffc3a29f 100644 --- a/src/licensedcode/data/rules/mpl-1.1_45.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_45.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mpl-1.1_45.yml b/src/licensedcode/data/rules/mpl-1.1_45.yml deleted file mode 100644 index ce678764525..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_46.RULE b/src/licensedcode/data/rules/mpl-1.1_46.RULE index 035abba6cd8..31dcac03ba9 100644 --- a/src/licensedcode/data/rules/mpl-1.1_46.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_46.RULE @@ -1 +1,16 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +notes: "note the subtle \"or later\", which is already something baked in the license itself.\n\ + therefore this has no extra effect\nHere is the license excerpt:\n 6.2. Effect of New\ + \ Versions\n \n Once Covered Code has been published under a particular version of the\n\ + \ License, You may always continue to use it under the terms of that version.\n You\ + \ may also choose to use such Covered Code under the terms of any\n subsequent version\ + \ of the License published by Netscape. No one other than\n Netscape has the right to\ + \ modify the terms applicable to Covered Code\n created under this License." +ignorable_urls: + - https://www.mozilla.org/MPL/MPL-1.1.html +--- + Mozilla Public License Version 1.1 or later (the "MPL") https://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_46.yml b/src/licensedcode/data/rules/mpl-1.1_46.yml deleted file mode 100644 index d6a63c40199..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_46.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -notes: "note the subtle \"or later\", which is already something baked in the license itself.\n\ - therefore this has no extra effect\nHere is the license excerpt:\n 6.2. Effect of New\ - \ Versions\n \n Once Covered Code has been published under a particular version of the\n\ - \ License, You may always continue to use it under the terms of that version.\n You\ - \ may also choose to use such Covered Code under the terms of any\n subsequent version\ - \ of the License published by Netscape. No one other than\n Netscape has the right to\ - \ modify the terms applicable to Covered Code\n created under this License." -ignorable_urls: - - https://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_47.RULE b/src/licensedcode/data/rules/mpl-1.1_47.RULE index 9a0b5346bba..41668ef30b3 100644 --- a/src/licensedcode/data/rules/mpl-1.1_47.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_47.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-MPL-RabbitMQ +--- + licensed under the MPL 1.1. For the MPL 1.1, please see LICENSE-MPL-RabbitMQ. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_47.yml b/src/licensedcode/data/rules/mpl-1.1_47.yml deleted file mode 100644 index d45657f81ba..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-MPL-RabbitMQ diff --git a/src/licensedcode/data/rules/mpl-1.1_48.RULE b/src/licensedcode/data/rules/mpl-1.1_48.RULE index 2c0fb06291e..26b00fd4175 100644 --- a/src/licensedcode/data/rules/mpl-1.1_48.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_48.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + The original Mozilla Public License 1.1 can be found at: http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_48.yml b/src/licensedcode/data/rules/mpl-1.1_48.yml deleted file mode 100644 index 964b5858886..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_48.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_49.RULE b/src/licensedcode/data/rules/mpl-1.1_49.RULE index 183079b6ae3..ba5eccafcf2 100644 --- a/src/licensedcode/data/rules/mpl-1.1_49.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_49.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + Mozilla Public License 1.1 can be found at: http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_49.yml b/src/licensedcode/data/rules/mpl-1.1_49.yml deleted file mode 100644 index 964b5858886..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_49.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_5.RULE b/src/licensedcode/data/rules/mpl-1.1_5.RULE index 775f4dfb3f2..51a82f00a58 100644 --- a/src/licensedcode/data/rules/mpl-1.1_5.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +notes: Name and Url combination +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + MPL 1.1 http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_5.yml b/src/licensedcode/data/rules/mpl-1.1_5.yml deleted file mode 100644 index 661d976e272..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -notes: Name and Url combination -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_50.RULE b/src/licensedcode/data/rules/mpl-1.1_50.RULE index 15688100c07..cbc75164e42 100644 --- a/src/licensedcode/data/rules/mpl-1.1_50.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_50.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - https://www.mozilla.org/MPL/MPL-1.1.html +--- + The original Mozilla Public License 1.1 can be found at: https://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_50.yml b/src/licensedcode/data/rules/mpl-1.1_50.yml deleted file mode 100644 index 21129c0ebdf..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_50.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - https://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_51.RULE b/src/licensedcode/data/rules/mpl-1.1_51.RULE index ec9de8db1aa..92978fde5c4 100644 --- a/src/licensedcode/data/rules/mpl-1.1_51.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_51.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - https://www.mozilla.org/MPL/MPL-1.1.html +--- + Mozilla Public License 1.1 can be found at: https://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_51.yml b/src/licensedcode/data/rules/mpl-1.1_51.yml deleted file mode 100644 index 21129c0ebdf..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_51.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - https://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_52.RULE b/src/licensedcode/data/rules/mpl-1.1_52.RULE index 598631f7045..d4c15dcce08 100644 --- a/src/licensedcode/data/rules/mpl-1.1_52.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_52.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Mozilla Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_52.yml b/src/licensedcode/data/rules/mpl-1.1_52.yml deleted file mode 100644 index 033747e7500..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_52.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.1_53.RULE b/src/licensedcode/data/rules/mpl-1.1_53.RULE index f0ead6214f7..7e364812c05 100644 --- a/src/licensedcode/data/rules/mpl-1.1_53.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_53.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MPL-1.1 Mozilla Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_53.yml b/src/licensedcode/data/rules/mpl-1.1_53.yml deleted file mode 100644 index 033747e7500..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_53.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.1_54.RULE b/src/licensedcode/data/rules/mpl-1.1_54.RULE index 65c1bf17468..46ee3bb20ca 100644 --- a/src/licensedcode/data/rules/mpl-1.1_54.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_54.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mozilla Public License 1.1 MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_54.yml b/src/licensedcode/data/rules/mpl-1.1_54.yml deleted file mode 100644 index 033747e7500..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_54.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.1_55.RULE b/src/licensedcode/data/rules/mpl-1.1_55.RULE index d7281f89ec2..c792e37216b 100644 --- a/src/licensedcode/data/rules/mpl-1.1_55.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_55.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Mozilla Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_55.yml b/src/licensedcode/data/rules/mpl-1.1_55.yml deleted file mode 100644 index fcf52bed13c..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_55.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.1_56.RULE b/src/licensedcode/data/rules/mpl-1.1_56.RULE index 953c3c13a53..ad0c02981b5 100644 --- a/src/licensedcode/data/rules/mpl-1.1_56.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_56.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_56.yml b/src/licensedcode/data/rules/mpl-1.1_56.yml deleted file mode 100644 index fcf52bed13c..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_56.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-1.1_57.RULE b/src/licensedcode/data/rules/mpl-1.1_57.RULE index b1a13d86c6e..487064c1686 100644 --- a/src/licensedcode/data/rules/mpl-1.1_57.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_57.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/1.1/ +--- + Mozilla Public License Version 1.1 https://www.mozilla.org/en-US/MPL/1.1/ diff --git a/src/licensedcode/data/rules/mpl-1.1_57.yml b/src/licensedcode/data/rules/mpl-1.1_57.yml deleted file mode 100644 index e081ccbfb70..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_57.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/1.1/ diff --git a/src/licensedcode/data/rules/mpl-1.1_58.RULE b/src/licensedcode/data/rules/mpl-1.1_58.RULE index ec67b188166..b37b5585d8d 100644 --- a/src/licensedcode/data/rules/mpl-1.1_58.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_58.RULE @@ -1,2 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/1.1/ +--- + Mozilla Public License Version 1.1 https://www.mozilla.org/en-US/MPL/1.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_58.yml b/src/licensedcode/data/rules/mpl-1.1_58.yml deleted file mode 100644 index e081ccbfb70..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_58.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/1.1/ diff --git a/src/licensedcode/data/rules/mpl-1.1_59.RULE b/src/licensedcode/data/rules/mpl-1.1_59.RULE index fa5fa63b604..e93f4c4a1e4 100644 --- a/src/licensedcode/data/rules/mpl-1.1_59.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_59.RULE @@ -1 +1,6 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +--- + Rhino is licensed under the Mozilla Public License (MPL). See Mozilla Public License Version 1.1 for Rhino . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_59.yml b/src/licensedcode/data/rules/mpl-1.1_59.yml deleted file mode 100644 index 91e01c10cbe..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_59.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-1.1_6.RULE b/src/licensedcode/data/rules/mpl-1.1_6.RULE index 69266fa7a44..d5cf41bc986 100644 --- a/src/licensedcode/data/rules/mpl-1.1_6.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +minimum_coverage: 80 +notes: MPL in rabbitmq +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + %% The contents of this file are subject to the {{Mozilla Public License}} %% Version 1.1 (the "License"); you may not use this file except in %% compliance with the License. You may obtain a copy of the License at @@ -8,4 +17,4 @@ %% License for the specific language governing rights and limitations %% under the License. %% -%% The Original Code is +%% The Original Code is \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_6.yml b/src/licensedcode/data/rules/mpl-1.1_6.yml deleted file mode 100644 index 5d60d192711..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -minimum_coverage: 80 -notes: MPL in rabbitmq -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_60.RULE b/src/licensedcode/data/rules/mpl-1.1_60.RULE index cbb5530791c..eb9c2b1705e 100644 --- a/src/licensedcode/data/rules/mpl-1.1_60.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_60.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +--- + MPL1_1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_60.yml b/src/licensedcode/data/rules/mpl-1.1_60.yml deleted file mode 100644 index e7a37449dcd..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_61.RULE b/src/licensedcode/data/rules/mpl-1.1_61.RULE index 64a4bd6c169..5d2e4fe2c47 100644 --- a/src/licensedcode/data/rules/mpl-1.1_61.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_61.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_61.yml b/src/licensedcode/data/rules/mpl-1.1_61.yml deleted file mode 100644 index e7a37449dcd..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_62.RULE b/src/licensedcode/data/rules/mpl-1.1_62.RULE index 33bacb425a8..43aebcbaa8b 100644 --- a/src/licensedcode/data/rules/mpl-1.1_62.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_62.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MPL-1.1 +--- + http://opensource.org/licenses/MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_62.yml b/src/licensedcode/data/rules/mpl-1.1_62.yml deleted file mode 100644 index 129f2cdfa15..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MPL-1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_63.RULE b/src/licensedcode/data/rules/mpl-1.1_63.RULE index 0f26d8f6c3c..9269c0dd54b 100644 --- a/src/licensedcode/data/rules/mpl-1.1_63.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_63.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MPL-1.1 +--- + https://opensource.org/licenses/MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_63.yml b/src/licensedcode/data/rules/mpl-1.1_63.yml deleted file mode 100644 index 008730bef09..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MPL-1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_64.RULE b/src/licensedcode/data/rules/mpl-1.1_64.RULE index e9c99fc296f..6554933ef70 100644 --- a/src/licensedcode/data/rules/mpl-1.1_64.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_64.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MPL-1.1 +--- + https://licenses.nuget.org/MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_64.yml b/src/licensedcode/data/rules/mpl-1.1_64.yml deleted file mode 100644 index c8ab4ef95da..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MPL-1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_65.RULE b/src/licensedcode/data/rules/mpl-1.1_65.RULE index a10bb1c9cc4..89638e33517 100644 --- a/src/licensedcode/data/rules/mpl-1.1_65.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_65.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_65.yml b/src/licensedcode/data/rules/mpl-1.1_65.yml deleted file mode 100644 index e7a37449dcd..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_66.RULE b/src/licensedcode/data/rules/mpl-1.1_66.RULE index 2dbaa77f286..5577d930f98 100644 --- a/src/licensedcode/data/rules/mpl-1.1_66.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_66.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-1.1 +--- + {{MPL-1.1}} https://spdx.org/licenses/MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_66.yml b/src/licensedcode/data/rules/mpl-1.1_66.yml deleted file mode 100644 index ca42d59ef73..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_67.RULE b/src/licensedcode/data/rules/mpl-1.1_67.RULE index 537372c7985..1cca06d6522 100644 --- a/src/licensedcode/data/rules/mpl-1.1_67.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_67.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-1.1 +--- + LICENSE {{MPL-1.1}} https://spdx.org/licenses/MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_67.yml b/src/licensedcode/data/rules/mpl-1.1_67.yml deleted file mode 100644 index ca42d59ef73..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_68.RULE b/src/licensedcode/data/rules/mpl-1.1_68.RULE index b324ed86dc6..63b7027e948 100644 --- a/src/licensedcode/data/rules/mpl-1.1_68.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_68.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-1.1 +--- + {{MPL-1.1+}} https://spdx.org/licenses/MPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_68.yml b/src/licensedcode/data/rules/mpl-1.1_68.yml deleted file mode 100644 index ca42d59ef73..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_7.RULE b/src/licensedcode/data/rules/mpl-1.1_7.RULE index 282c2fee92d..93a66b45524 100644 --- a/src/licensedcode/data/rules/mpl-1.1_7.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_7.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/mpl-faq.html +--- + http://www.mozilla.org/MPL/mpl-faq.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_7.yml b/src/licensedcode/data/rules/mpl-1.1_7.yml deleted file mode 100644 index b1e7ecea0e5..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/mpl-faq.html diff --git a/src/licensedcode/data/rules/mpl-1.1_8.RULE b/src/licensedcode/data/rules/mpl-1.1_8.RULE index 237a32b4522..ca00bba75de 100644 --- a/src/licensedcode/data/rules/mpl-1.1_8.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_8.RULE @@ -1,5 +1,11 @@ +--- +license_expression: mpl-1.1 +is_license_notice: yes +minimum_coverage: 70 +--- + The MPL v1.1: The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in - compliance with the License. You may obtain a copy of the License at http + compliance with the License. You may obtain a copy of the License at http \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_8.yml b/src/licensedcode/data/rules/mpl-1.1_8.yml deleted file mode 100644 index b5614e1594e..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/mpl-1.1_9.RULE b/src/licensedcode/data/rules/mpl-1.1_9.RULE index b81ba631b5a..278da901ec5 100644 --- a/src/licensedcode/data/rules/mpl-1.1_9.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + Mozilla Public License Version 1.1 1. Definitions. diff --git a/src/licensedcode/data/rules/mpl-1.1_9.yml b/src/licensedcode/data/rules/mpl-1.1_9.yml deleted file mode 100644 index c947372e5e5..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_and_epl-1.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/mpl-1.1_and_epl-1.0_and_proprietary-license_1.RULE index f82c1ff3bfb..05f9c7d95c8 100644 --- a/src/licensedcode/data/rules/mpl-1.1_and_epl-1.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_and_epl-1.0_and_proprietary-license_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (mpl-1.1 OR epl-1.0) AND h2-1.0 AND proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.bungisoft.com/ + - http://www.h2database.com/html/license.html#h2_license +--- + is dual licensed and available under a modified version of the MPL 1.1 (Mozilla Public License) or under the (unmodified) EPL 1.0 (Eclipse Public License). The changes to the MPL are underlined. There is a license FAQ for both the MPL and the EPL, most of that is applicable to the H2 license as well. You can use H2 for free. You can integrate it into your applications (including in commercial applications), and you can distribute it. diff --git a/src/licensedcode/data/rules/mpl-1.1_and_epl-1.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/mpl-1.1_and_epl-1.0_and_proprietary-license_1.yml deleted file mode 100644 index afa7efdd2a9..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_and_epl-1.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (mpl-1.1 OR epl-1.0) AND h2-1.0 AND proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.bungisoft.com/ - - http://www.h2database.com/html/license.html#h2_license diff --git a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_1.RULE b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_1.RULE index 17ae1318b7d..802b1be281c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 AND free-unknown +is_license_notice: yes +minimum_coverage: 75 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + Mozilla Public License. ``The contents of this file are subject to the Mozilla Public License Version diff --git a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_1.yml b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_1.yml deleted file mode 100644 index 79ce4c78be1..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 AND free-unknown -is_license_notice: yes -minimum_coverage: 75 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_2.RULE b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_2.RULE index 7cf5a11f8ab..987ae3cbd47 100644 --- a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 AND free-unknown +is_license_notice: yes +minimum_coverage: 75 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + "The contents of this file are subject to the Mozilla Public License Version 1.1 (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.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. @@ -5,4 +13,4 @@ Software distributed under the License is distributed on an "AS IS" basis, WITHO The Original Code is -Alternatively, the contents of this file may be used under the terms of the license (the "[ ] License"), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [ ] License." +Alternatively, the contents of this file may be used under the terms of the license (the "[ ] License"), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [ ] License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_2.yml b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_2.yml deleted file mode 100644 index 79ce4c78be1..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 AND free-unknown -is_license_notice: yes -minimum_coverage: 75 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_3.RULE b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_3.RULE index b844753361c..a68ca26e94c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_3.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-1.1 AND free-unknown +is_license_notice: yes +minimum_coverage: 75 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (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.mozilla.org/MPL/ Alternatively, the contents of this file may be used under the terms of the license (the "[ ] License"), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [ ] License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_3.yml b/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_3.yml deleted file mode 100644 index 79ce4c78be1..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_and_free-unknown_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 AND free-unknown -is_license_notice: yes -minimum_coverage: 75 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_and_mit_and_apache-2.0_and_bsd-new_1.RULE b/src/licensedcode/data/rules/mpl-1.1_and_mit_and_apache-2.0_and_bsd-new_1.RULE index e2030089806..ba58950155a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_and_mit_and_apache-2.0_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_and_mit_and_apache-2.0_and_bsd-new_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 AND mit AND apache-2.0 AND bsd-new +is_license_tag: yes +relevance: 100 +--- + License: MPLv1.1 and MIT and ASL 2.0 and BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_and_mit_and_apache-2.0_and_bsd-new_1.yml b/src/licensedcode/data/rules/mpl-1.1_and_mit_and_apache-2.0_and_bsd-new_1.yml deleted file mode 100644 index 50280ab0160..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_and_mit_and_apache-2.0_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 AND mit AND apache-2.0 AND bsd-new -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_1.RULE index 433dd3a9578..b2d4dda61bd 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 OR gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 998b47740f1..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 OR gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_2.RULE index c77f6178102..930fde03295 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -19,4 +27,4 @@ deleting the provisions above and replace them with the notice and other provisions required by the GNU License. If you do not delete the provisions above, a recipient may use your version of this file - under either the MPL or the GNU License. + under either the MPL or the GNU License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 3a173bdd50b..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_3.RULE index 5bf61fe1236..1a53e057457 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mpl-1.1 OR gpl-1.0-plus +is_license_notice: yes +--- + Alternatively, the contents of this file may be used under the terms of the GNU General Public License Version 2 or later (the "GPL"), in which case the provisions of the GPL are applicable instead of those above. diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_3.yml deleted file mode 100644 index 2475cb532a7..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-1.1 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_4.RULE index 7ca55cc4302..3c567e7aef5 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mpl-1.1 OR gpl-1.0-plus +is_license_notice: yes +--- + The project is licensed under the MPL.Alternatively, the software can be licensed under the GPL, if desired. @@ -6,4 +11,4 @@ and supports the needs of developers working under non-disclosure or writing proprietary device drivers. Modifications to source code supplied in the standard distribution must stay open source. Or the entire project can be converted to GPL, with files added by a developer considered GPL -only. +only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_4.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_4.yml deleted file mode 100644 index 2475cb532a7..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-1.1 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_5.RULE index 079ddc3e662..0f503abbaaa 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mpl-1.1 OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 50 +--- + Alternatively, the contents of this file may be used under the terms @@ -9,4 +15,4 @@ deleting the provisions above and replace them with the notice and other provisions required by the [GNU] License. If you do not delete the provisions above, a recipient may use your version of this file - under either the MPL or the [GNU] License. + under either the MPL or the [GNU] License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_5.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_5.yml deleted file mode 100644 index 0fdd38ee4ce..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-1.0-plus_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_1.RULE index e8d7b6a9894..d9dc81e33a7 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_1.yml deleted file mode 100644 index 1644d7e4113..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_2.RULE index c4b2f77761d..31033dabe09 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -20,4 +27,4 @@ of the GPL and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your version -of this file under either the MPL or the GPL. +of this file under either the MPL or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_2.yml deleted file mode 100644 index 1644d7e4113..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 OR gpl-2.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_3.RULE index d5a0a07c590..f6b95253666 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) Netscape Communications Corporation.! +ignorable_holders: + - Netscape Communications Corporation.! +ignorable_urls: + - http://www.mozilla.org/MPL +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (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.mozilla.org/MPL/.¬† Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is the Netscape security libraries.¬† The Initial Developer of the Original Code is Netscape Communications Corporation.¬† Portions created by Netscape are Copyright (C) Netscape Communications Corporation.¬† All Rights Reserved. Alternatively, the contents of this file may be used under the terms of the GNU General Public License Version 2 or later (the GPL), in which case the provisions of the GPL are applicable instead of those above.¬† If you wish to allow use of your version of this file only under the terms of the GPL and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them witfh the notice and other provisions required by the GPL.¬† If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_3.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_3.yml deleted file mode 100644 index ea251961039..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: mpl-1.1 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) Netscape Communications Corporation.! -ignorable_holders: - - Netscape Communications Corporation.! -ignorable_urls: - - http://www.mozilla.org/MPL diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_4.RULE index 9eb62b58df4..e1656f4fedd 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_4.RULE @@ -1,7 +1,13 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +--- + 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. NOTE: The original USB Skeleton driver is GPL, but all that code is -gone so MPL/GPL applies. +gone so MPL/GPL applies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_4.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_4.yml deleted file mode 100644 index c6ed66b5b27..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_5.RULE index 67d3584b8c0..f1916d27b6d 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_5.RULE @@ -1,4 +1,12 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL +--- + Alternatively, the contents of this file may be used under the terms of the Mozilla Public License (http://mozilla.org/MPL) or 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. +either version 2 of the License or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_5.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_5.yml deleted file mode 100644 index 3334f96a693..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_6.RULE index fc04bf977e0..5d302a7c61a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_6.RULE @@ -1,3 +1,17 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1998-1999 the Initial Developer +ignorable_holders: + - the Initial Developer +ignorable_authors: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + Mozilla Public License Version 1.1 for Rhino Version: {{MPL 1.1/GPL 2.0}} - The contents of this file are subject to the {{Mozilla Public License Version 1.1}} (the "License"); diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_6.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_6.yml deleted file mode 100644 index 7cf021a9926..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_6.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: mpl-1.1 OR gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 1998-1999 the Initial Developer -ignorable_holders: - - the Initial Developer -ignorable_authors: - - the Initial Developer -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE index 7a93ae07aa9..0ee314e9aee 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +notes: Mozilla tri license +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * @@ -9,4 +17,4 @@ * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the - * License. + * License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index 388a774f34f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -notes: Mozilla tri license -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.RULE index 7e3cfdc1d81..ef5f93067ff 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_tag: yes +relevance: 100 +notes: Mozilla tri license in opensip stack +--- + Version: MPL 1.1/GPL 2.0/LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.yml b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.yml deleted file mode 100644 index 20b93c60786..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_tag: yes -relevance: 100 -notes: Mozilla tri license in opensip stack diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.RULE index 4785359b81d..0992dc0048c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_11.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + @@ -12,4 +22,4 @@ LGPL 2.1 https://www.gnu.org/licenses/lgpl-2.1.html - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_12.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_12.yml deleted file mode 100644 index 95c0c95a0cd..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: javassist license choice in a maven POM -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_2.RULE index b051cd3bff1..b0c37407ee3 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus +is_license_notice: yes +notes: javassist license choice in a maven POM +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + @@ -12,4 +21,4 @@ LGPL 2.1 http://www.gnu.org/licenses/lgpl-2.1.html - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index 45d0efca74f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_notice: yes -notes: javassist license choice in a maven POM -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_3.RULE index f390d101876..53de5dbc9f4 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus +is_license_notice: yes +notes: javassist license choice in a maven POM +minimum_coverage: 70 +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + this is the license under which javassist is usually distributed @@ -26,5 +36,4 @@ - - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_3.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_3.yml deleted file mode 100644 index 9a1c12efc03..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_notice: yes -notes: javassist license choice in a maven POM -minimum_coverage: 70 -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_4.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_4.RULE index c772d4e0edb..0336a09427a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_4.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus +is_license_notice: yes +minimum_coverage: 40 +ignorable_urls: + - http://www.gnu.org/copyleft + - http://www.mozilla.org/MPL +--- + This plugin is subject to the Mozilla Public License Version 1.1 (the "License"); You may not use this plugin except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL. @@ -10,4 +19,4 @@ of the LGPL at www.gnu.org/copyleft. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -for the specific language governing rights and limitations under the License. \ No newline at end of file +for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_4.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_4.yml deleted file mode 100644 index 3a976b0ee9b..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_notice: yes -minimum_coverage: 40 -ignorable_urls: - - http://www.gnu.org/copyleft - - http://www.mozilla.org/MPL diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_5.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_5.RULE index abb6c589622..da6339b4796 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_5.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_5.RULE @@ -1 +1,8 @@ -Dual-license; LGPL if downloaded as part of JBoss, MPL if downloaded separately +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: javassist license choice in a maven POM +--- + +Dual-license; LGPL if downloaded as part of JBoss, MPL if downloaded separately \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_5.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_5.yml deleted file mode 100644 index cd8594c51a4..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: javassist license choice in a maven POM diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_6.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_6.RULE index 9b84636b1b5..14d51cdff4c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_6.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_6.RULE @@ -1 +1,11 @@ -http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +notes: javassist license choice +ignorable_urls: + - http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html +--- + +http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_6.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_6.yml deleted file mode 100644 index 22064feb388..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 -notes: javassist license choice -ignorable_urls: - - http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/jboss/javassist/License.html?rev=HEAD&content-type=text/html diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_7.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_7.RULE index 95b72815a9d..ab9e7d2e7e8 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_7.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +notes: javassist license choice +--- + Alternatively, the contents of this file may be used under the terms of the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), in which case the provisions of the LGPL are applicable instead diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_7.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_7.yml deleted file mode 100644 index 33ead9428e8..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 -notes: javassist license choice diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_8.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_8.RULE index 1b09c9f009a..6295b7ab300 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_8.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus +is_license_reference: yes +relevance: 80 +minimum_coverage: 99 +notes: javassist license choice +--- + Javassist License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_8.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_8.yml deleted file mode 100644 index c3826ee6749..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_reference: yes -relevance: 80 -minimum_coverage: 99 -notes: javassist license choice diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_9.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_9.RULE index 45ed5942cee..552a410b3a3 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_9.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_9.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +notes: javassist license choice +ignorable_authors: + - the Initial Developer +--- + the Original Code is . The Initial Developer of the Original Code is Portions created by the Initial Developer are diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_9.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_9.yml deleted file mode 100644 index 4c613a49cb8..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_9.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 -notes: javassist license choice -ignorable_authors: - - the Initial Developer diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_1.RULE index cccaaeede91..d15c4fd88c2 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +notes: javassist license choice in a maven POM +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.gnu.org/licenses/lgpl-2.1.html + - http://www.mozilla.org/MPL/MPL-1.1.html +--- + @@ -18,5 +28,4 @@ Apache License 2.0 http://www.apache.org/licenses/ - - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_1.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_1.yml deleted file mode 100644 index 4afe3e7f80f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -notes: javassist license choice in a maven POM -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.gnu.org/licenses/lgpl-2.1.html - - http://www.mozilla.org/MPL/MPL-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_10.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_10.RULE index 871680d739d..eb0035c2c12 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_10.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_10.RULE @@ -1,3 +1,17 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) Shigeru Chiba +ignorable_holders: + - Shigeru Chiba +ignorable_authors: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -22,4 +36,4 @@ use your version of this software under the terms of the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the LGPL or the AL. If you do not delete the provisions above, a recipient may use your version of this -software under the terms of any one of the MPL, the LGPL or the AL. +software under the terms of any one of the MPL, the LGPL or the AL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_10.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_10.yml deleted file mode 100644 index 6c5bcfb0a65..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_10.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) Shigeru Chiba -ignorable_holders: - - Shigeru Chiba -ignorable_authors: - - the Initial Developer -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_11.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_11.RULE index 92e5481583a..709d379e791 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_11.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_11.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Shigeru Chiba +ignorable_holders: + - Shigeru Chiba +ignorable_authors: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + Version 1.1 (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.mozilla.org/MPL/ @@ -21,4 +34,4 @@ use your version of this software under the terms of the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the LGPL or the AL. If you do not delete the provisions above, a recipient may use your version of this -software under the terms of any one of the MPL, the LGPL or the AL. +software under the terms of any one of the MPL, the LGPL or the AL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_11.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_11.yml deleted file mode 100644 index 2e74bcf254f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_11.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Shigeru Chiba -ignorable_holders: - - Shigeru Chiba -ignorable_authors: - - the Initial Developer -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_12.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_12.RULE index 837eef48fd3..790fb303787 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_12.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_12.RULE @@ -1,3 +1,18 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +relevance: 100 +notes: javassist Seen https://github.com/jboss-javassist/javassist/blob/1c4e31b9677d020a1e89aeebc6686396f9e6c68a/License.html +ignorable_copyrights: + - Copyright (c) 1999- Shigeru Chiba +ignorable_holders: + - Shigeru Chiba +ignorable_authors: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (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.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_12.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_12.yml deleted file mode 100644 index 81b81f2b4a0..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_12.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -relevance: 100 -notes: javassist Seen https://github.com/jboss-javassist/javassist/blob/1c4e31b9677d020a1e89aeebc6686396f9e6c68a/License.html -ignorable_copyrights: - - Copyright (c) 1999- Shigeru Chiba -ignorable_holders: - - Shigeru Chiba -ignorable_authors: - - the Initial Developer -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_13.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_13.RULE index ebd7f699a41..499c18d6d0f 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_13.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_13.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +notes: javassist license choice in a maven POM +ignorable_urls: + - http://www.gnu.org/licenses/lgpl-2.1.html + - http://www.mozilla.org/MPL/MPL-1.1.html + - https://www.apache.org/licenses/ +--- + @@ -18,5 +28,4 @@ Apache License 2.0 https://www.apache.org/licenses/ - - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_13.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_13.yml deleted file mode 100644 index 813dd3cce3e..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_13.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -notes: javassist license choice in a maven POM -ignorable_urls: - - http://www.gnu.org/licenses/lgpl-2.1.html - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_14.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_14.RULE index 736b9fbd1f0..78d67c8f2dd 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_14.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_14.RULE @@ -1,3 +1,14 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +relevance: 100 +notes: javassist license choice in a maven POM +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.mozilla.org/MPL/MPL-1.1.html + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + @@ -18,5 +29,4 @@ Apache License 2.0 http://www.apache.org/licenses/ - - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_14.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_14.yml deleted file mode 100644 index 1f4829ffd56..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_14.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -relevance: 100 -notes: javassist license choice in a maven POM -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_15.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_15.RULE index 0c2744ceec2..44959dada7c 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_15.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_15.RULE @@ -1,3 +1,14 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +relevance: 100 +notes: javassist license choice in a maven POM +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - https://www.apache.org/licenses/ + - https://www.gnu.org/licenses/lgpl-2.1.html +--- + @@ -18,5 +29,4 @@ Apache License 2.0 https://www.apache.org/licenses/ - - +
\ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_15.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_15.yml deleted file mode 100644 index b3d12fc7390..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_15.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -relevance: 100 -notes: javassist license choice in a maven POM -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - https://www.apache.org/licenses/ - - https://www.gnu.org/licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_2.RULE index 9add2d12c72..0aadc360853 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +minimum_coverage: 80 +--- + This software is distributed under the Mozilla Public License Version 1.1, the GNU Lesser General Public License Version 2.1 or later, or the Apache License Version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_2.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_2.yml deleted file mode 100644 index 97ec222b9ca..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_3.RULE index bc773de1c50..65ed3ccb4ea 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +--- + The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. Alternatively, the contents of this file may be used under @@ -7,4 +12,4 @@ or the Apache License Version 2.0. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the -License. +License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_3.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_3.yml deleted file mode 100644 index e369efd2781..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_4.RULE index 4d7974c03e0..6975670453e 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +ignorable_authors: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this software, Javassist, are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this software except in compliance @@ -32,5 +41,4 @@ under the MPL, you must obtain a separate package including only Javassist but not the other part of JBoss. All the contributors to the original source tree have agreed to -the original license term described above. - +the original license term described above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_4.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_4.yml deleted file mode 100644 index 4a6ff0533d7..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -ignorable_authors: - - the Initial Developer -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_5.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_5.RULE index 856e0ebf35c..7b83d0459f0 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +--- + Alternatively, the contents of this software may be used under the terms of the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), or the Apache License Version 2.0 (the "AL"), @@ -8,5 +13,4 @@ use your version of this software under the terms of the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the LGPL or the AL. If you do not delete the provisions above, a recipient may use your version of this -software under the terms of any one of the MPL, the LGPL or the AL. - +software under the terms of any one of the MPL, the LGPL or the AL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_5.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_5.yml deleted file mode 100644 index e369efd2781..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_6.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_6.RULE index 60643d8f075..e893676b627 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License file (MPL/LGPL/Apache triple license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_6.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_6.yml deleted file mode 100644 index 006c13b6d3d..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_7.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_7.RULE index bed4e87b3c2..a120d87116b 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +ignorable_authors: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this software, Javassist, are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this software except in compliance @@ -33,5 +42,4 @@ under the MPL, you must obtain a separate package including only Javassist but not the other part of JBoss. All the contributors to the original source tree have agreed to -the original license term described above. - +the original license term described above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_7.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_7.yml deleted file mode 100644 index 4a6ff0533d7..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -ignorable_authors: - - the Initial Developer -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_8.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_8.RULE index 3d439873799..da78fbeaaf0 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_8.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Shigeru Chiba +ignorable_holders: + - Shigeru Chiba +ignorable_authors: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + The contents of this software, Javassist, are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this software except in compliance @@ -33,4 +46,4 @@ under the MPL, you must obtain a separate package including only Javassist but not the other part of JBoss. All the contributors to the original source tree have agreed to -the original license term described above. +the original license term described above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_8.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_8.yml deleted file mode 100644 index 2e74bcf254f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_8.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Shigeru Chiba -ignorable_holders: - - Shigeru Chiba -ignorable_authors: - - the Initial Developer -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_9.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_9.RULE index 0307b38fb46..1054429aae1 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_9.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_9.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Shigeru Chiba +ignorable_holders: + - Shigeru Chiba +ignorable_authors: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + EXHIBIT A -Mozilla Public License. The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance @@ -23,4 +36,4 @@ use your version of this software under the terms of the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the LGPL or the AL. If you do not delete the provisions above, a recipient may use your version of this -software under the terms of any one of the MPL, the LGPL or the AL. +software under the terms of any one of the MPL, the LGPL or the AL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_9.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_9.yml deleted file mode 100644 index 2e74bcf254f..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_apache-2.0_9.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR apache-2.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Shigeru Chiba -ignorable_holders: - - Shigeru Chiba -ignorable_authors: - - the Initial Developer -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_1.RULE index 95ec6cc4264..ed659e79c96 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + This code is available under the mozilla.org tri-license. See http://www.mozilla.org/MPL/ . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_1.yml deleted file mode 100644 index f9464988a87..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_2.RULE index e0b16013ef1..afe65c16962 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-1.1 OR lgpl-2.1-plus OR gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + License/Copyright This code is available under the mozilla.org tri-license. -See http://www.mozilla.org/MPL/ . +See http://www.mozilla.org/MPL/ . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_2.yml deleted file mode 100644 index f9464988a87..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1-plus_or_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1-plus OR gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1_2.RULE b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1_2.RULE index e42e5e58990..c3e07ef9e66 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1_2.RULE @@ -1 +1,8 @@ -License: MPL-1.1 | LGPL-2.1 +--- +license_expression: mpl-1.1 OR lgpl-2.1 +is_license_tag: yes +relevance: 99 +notes: javassist license choice in a maven POM +--- + +License: MPL-1.1 | LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1_2.yml b/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1_2.yml deleted file mode 100644 index 6e1eb3f728d..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_lgpl-2.1_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-1.1 OR lgpl-2.1 -is_license_tag: yes -relevance: 99 -notes: javassist license choice in a maven POM diff --git a/src/licensedcode/data/rules/mpl-1.1_or_x11_1.RULE b/src/licensedcode/data/rules/mpl-1.1_or_x11_1.RULE index a2465b9c2ec..fff0ae606d0 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_x11_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_x11_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.1 OR x11 +is_license_notice: yes +referenced_filenames: + - MITX.txt + - MPL-1.1.txt +notes: old cURL 7.5.2 notices +--- + Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff --git a/src/licensedcode/data/rules/mpl-1.1_or_x11_1.yml b/src/licensedcode/data/rules/mpl-1.1_or_x11_1.yml deleted file mode 100644 index 8b6a2499135..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_x11_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 OR x11 -is_license_notice: yes -referenced_filenames: - - MITX.txt - - MPL-1.1.txt -notes: old cURL 7.5.2 notices diff --git a/src/licensedcode/data/rules/mpl-1.1_or_x11_2.RULE b/src/licensedcode/data/rules/mpl-1.1_or_x11_2.RULE index 9c9ec067cf4..df9831585da 100644 --- a/src/licensedcode/data/rules/mpl-1.1_or_x11_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_or_x11_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-1.1 OR x11 +is_license_notice: yes +referenced_filenames: + - MITX.txt + - MPL-1.1.txt +notes: old cURL 7.5.2 notices +--- + Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff --git a/src/licensedcode/data/rules/mpl-1.1_or_x11_2.yml b/src/licensedcode/data/rules/mpl-1.1_or_x11_2.yml deleted file mode 100644 index 8b6a2499135..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_or_x11_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 OR x11 -is_license_notice: yes -referenced_filenames: - - MITX.txt - - MPL-1.1.txt -notes: old cURL 7.5.2 notices diff --git a/src/licensedcode/data/rules/mpl-1.1_url_1.RULE b/src/licensedcode/data/rules/mpl-1.1_url_1.RULE index 32496af22fc..f64e8c9daca 100644 --- a/src/licensedcode/data/rules/mpl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpl-1.1 +--- + https://spdx.org/licenses/mpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_url_1.yml b/src/licensedcode/data/rules/mpl-1.1_url_1.yml deleted file mode 100644 index ff1c33ec8bc..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpl-1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_url_2.RULE b/src/licensedcode/data/rules/mpl-1.1_url_2.RULE index 8d61c032dff..53e2a62e65a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpl-1.1.html +--- + https://spdx.org/licenses/mpl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_url_2.yml b/src/licensedcode/data/rules/mpl-1.1_url_2.yml deleted file mode 100644 index b9be1e1609a..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpl-1.1.html diff --git a/src/licensedcode/data/rules/mpl-1.1_url_glc_188.RULE b/src/licensedcode/data/rules/mpl-1.1_url_glc_188.RULE index af89a2a98cb..fddbd486990 100644 --- a/src/licensedcode/data/rules/mpl-1.1_url_glc_188.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_url_glc_188.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/mpl-1.1 +--- + http://www.opensource.org/licenses/mpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_url_glc_188.yml b/src/licensedcode/data/rules/mpl-1.1_url_glc_188.yml deleted file mode 100644 index 4d0ef8c15e4..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_url_glc_188.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/mpl-1.1 diff --git a/src/licensedcode/data/rules/mpl-1.1_url_glc_189.RULE b/src/licensedcode/data/rules/mpl-1.1_url_glc_189.RULE index e5238959459..569423760d5 100644 --- a/src/licensedcode/data/rules/mpl-1.1_url_glc_189.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_url_glc_189.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/mpl-1.1 +--- + https://www.opensource.org/licenses/mpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_url_glc_189.yml b/src/licensedcode/data/rules/mpl-1.1_url_glc_189.yml deleted file mode 100644 index a36e45a1afe..00000000000 --- a/src/licensedcode/data/rules/mpl-1.1_url_glc_189.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/mpl-1.1 diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception2.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception2.RULE index 21baa7f3d69..281cae09c57 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +--- + Exhibit B - "Incompatible With Secondary Licenses" Notice This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception2.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception2.yml deleted file mode 100644 index 9c064644139..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception3.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception3.RULE index 3e6f6020e23..a2d0272dd11 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception3.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception3.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception3.yml deleted file mode 100644 index cbb870ef4da..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_1.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_1.RULE index 85ccec61978..1f445e490f6 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mozilla Public License 2.0 (no copyleft exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_1.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_1.yml deleted file mode 100644 index ee04287b36f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_10.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_10.RULE index 450e4c868b6..f71d26121f5 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_10.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-2.0-no-copyleft-exception +--- + LICENSE {{MPL-2.0-no-copyleft-exception}} https://spdx.org/licenses/MPL-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_10.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_10.yml deleted file mode 100644 index 494ad559c7f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-2.0-no-copyleft-exception diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_11.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_11.RULE index 2d83257d39f..2559a06ba4c 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_11.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-2.0-no-copyleft-exception +--- + {{MPL-2.0-no-copyleft-exception}} https://spdx.org/licenses/MPL-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_11.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_11.yml deleted file mode 100644 index 494ad559c7f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-2.0-no-copyleft-exception diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_2.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_2.RULE index 9d5b7eef306..ddfba4be6b0 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Mozilla Public License 2.0 (no copyleft exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_2.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_2.yml deleted file mode 100644 index ee04287b36f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_3.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_3.RULE index fd467243f75..2a70dbea613 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_3.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MPL-2.0-no-copyleft-exception Mozilla Public License 2.0 (no copyleft exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_3.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_3.yml deleted file mode 100644 index ee04287b36f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_4.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_4.RULE index 35744cf065e..add6a267a53 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_4.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mozilla Public License 2.0 (no copyleft exception) MPL-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_4.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_4.yml deleted file mode 100644 index ee04287b36f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_5.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_5.RULE index efdeae31439..9576e1791cf 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_5.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MPL-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_5.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_5.yml deleted file mode 100644 index b6a41ac20e7..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_6.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_6.RULE index b3a3869eef8..34fc9f55769 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_6.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Mozilla Public License 2.0 (no copyleft exception) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_6.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_6.yml deleted file mode 100644 index b6a41ac20e7..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_7.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_7.RULE index 9584fca1e23..689912069a1 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_7.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MPL-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_7.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_7.yml deleted file mode 100644 index b6a41ac20e7..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_8.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_8.RULE index d626e4fedf3..9b4d5103774 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_8.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MPL-2.0-no-copyleft-exception +--- + https://licenses.nuget.org/MPL-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_8.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_8.yml deleted file mode 100644 index a769fbf7026..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MPL-2.0-no-copyleft-exception diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_9.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_9.RULE index cbf90d8044f..154364f2d2e 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_9.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MPL-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_9.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_9.yml deleted file mode 100644 index 4cc42ec1e7e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_1.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_1.RULE index 85ef6557342..cb9daf4bf9f 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpl-2.0-no-copyleft-exception +--- + https://spdx.org/licenses/mpl-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_1.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_1.yml deleted file mode 100644 index 292a59c98ef..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpl-2.0-no-copyleft-exception diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_2.RULE b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_2.RULE index c70c9e6587d..adfdb884c3c 100644 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpl-2.0-no-copyleft-exception.html +--- + https://spdx.org/licenses/mpl-2.0-no-copyleft-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_2.yml b/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_2.yml deleted file mode 100644 index 243745c61a1..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0-no-copyleft-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpl-2.0-no-copyleft-exception.html diff --git a/src/licensedcode/data/rules/mpl-2.0_1.RULE b/src/licensedcode/data/rules/mpl-2.0_1.RULE index 3522f00aa3a..c84693c2287 100644 --- a/src/licensedcode/data/rules/mpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/FAQ.html +--- + http://www.mozilla.org/MPL/2.0/FAQ.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_1.yml b/src/licensedcode/data/rules/mpl-2.0_1.yml deleted file mode 100644 index 7597d0597a1..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/FAQ.html diff --git a/src/licensedcode/data/rules/mpl-2.0_10.RULE b/src/licensedcode/data/rules/mpl-2.0_10.RULE index 1c226ee1a65..5061fae5592 100644 --- a/src/licensedcode/data/rules/mpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://mozilla.org/MPL/2.0 +--- + Mozilla Public License Version 2.0 @@ -191,4 +198,4 @@ You may add additional accurate notices of copyright ownership. Exhibit B - “Incompatible With Secondary Licenses” Notice - This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. + This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_10.yml b/src/licensedcode/data/rules/mpl-2.0_10.yml deleted file mode 100644 index 54c1f8438e0..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - https://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_100.RULE b/src/licensedcode/data/rules/mpl-2.0_100.RULE index 0d0d7980e94..b2c1b121cd2 100644 --- a/src/licensedcode/data/rules/mpl-2.0_100.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_100.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + it is licensed under the Mozilla Public License 2.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_100.yml b/src/licensedcode/data/rules/mpl-2.0_100.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_101.RULE b/src/licensedcode/data/rules/mpl-2.0_101.RULE index f4826c25038..489990c848a 100644 --- a/src/licensedcode/data/rules/mpl-2.0_101.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_101.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 99 +--- + licensed under the Mozilla Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_101.yml b/src/licensedcode/data/rules/mpl-2.0_101.yml deleted file mode 100644 index 95561508379..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mpl-2.0_102.RULE b/src/licensedcode/data/rules/mpl-2.0_102.RULE index d3dd975b704..79684b30fad 100644 --- a/src/licensedcode/data/rules/mpl-2.0_102.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_102.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Mozilla Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_102.yml b/src/licensedcode/data/rules/mpl-2.0_102.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_103.RULE b/src/licensedcode/data/rules/mpl-2.0_103.RULE index 4c482634ca2..f8be6b44d7d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_103.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_103.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0 +--- + licensed under the [Mozilla Public License v2](https://www.mozilla.org/en-US/MPL/2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_103.yml b/src/licensedcode/data/rules/mpl-2.0_103.yml deleted file mode 100644 index 6139f4fbf87..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_104.RULE b/src/licensedcode/data/rules/mpl-2.0_104.RULE index 3a2436886d0..2c0af3cd14a 100644 --- a/src/licensedcode/data/rules/mpl-2.0_104.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_104.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0 +--- + open source, licensed under the [Mozilla Public License v2](https://www.mozilla.org/en-US/MPL/2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_104.yml b/src/licensedcode/data/rules/mpl-2.0_104.yml deleted file mode 100644 index 6f757d85343..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_104.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_105.RULE b/src/licensedcode/data/rules/mpl-2.0_105.RULE index 05a6932aa20..31d0ee7bd0b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_105.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_105.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + licensed under the MPL 2.0 (http://mozilla.org/MPL/2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_105.yml b/src/licensedcode/data/rules/mpl-2.0_105.yml deleted file mode 100644 index cd2235b0447..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_106.RULE b/src/licensedcode/data/rules/mpl-2.0_106.RULE index 816200d5195..e501fb53cd9 100644 --- a/src/licensedcode/data/rules/mpl-2.0_106.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_106.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/ +--- + {{Mozilla Public License Version 2.0}} diff --git a/src/licensedcode/data/rules/mpl-2.0_106.yml b/src/licensedcode/data/rules/mpl-2.0_106.yml deleted file mode 100644 index 928f46f0663..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_106.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_107.RULE b/src/licensedcode/data/rules/mpl-2.0_107.RULE index d95d8ab6c38..99130336e54 100644 --- a/src/licensedcode/data/rules/mpl-2.0_107.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_107.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/ +--- + {{Mozilla Public License Version 2.0}} diff --git a/src/licensedcode/data/rules/mpl-2.0_107.yml b/src/licensedcode/data/rules/mpl-2.0_107.yml deleted file mode 100644 index 928f46f0663..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_107.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_108.RULE b/src/licensedcode/data/rules/mpl-2.0_108.RULE index e6a43c146ee..40e7bb53055 100644 --- a/src/licensedcode/data/rules/mpl-2.0_108.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_108.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/ +--- + {{Mozilla Public License Version 2.0}} http://www.mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_108.yml b/src/licensedcode/data/rules/mpl-2.0_108.yml deleted file mode 100644 index 928f46f0663..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_108.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_109.RULE b/src/licensedcode/data/rules/mpl-2.0_109.RULE index de121890ca0..b067a17e18e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_109.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_109.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/ +--- + {{Mozilla Public License Version 2.0}} http://www.mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_109.yml b/src/licensedcode/data/rules/mpl-2.0_109.yml deleted file mode 100644 index 3e657be57f8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_11.RULE b/src/licensedcode/data/rules/mpl-2.0_11.RULE index 55303e31364..d9c3e324b3e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_11.RULE @@ -1,5 +1,12 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + /***** BEGIN LICENSE BLOCK ***** * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * file, You can obtain one at http://mozilla.org/MPL/2.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_11.yml b/src/licensedcode/data/rules/mpl-2.0_11.yml deleted file mode 100644 index d9869bc3466..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_110.RULE b/src/licensedcode/data/rules/mpl-2.0_110.RULE index 22e496d64ca..b91954c7c22 100644 --- a/src/licensedcode/data/rules/mpl-2.0_110.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_110.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Mozilla Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_110.yml b/src/licensedcode/data/rules/mpl-2.0_110.yml deleted file mode 100644 index 38cba14e2dd..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_110.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0_111.RULE b/src/licensedcode/data/rules/mpl-2.0_111.RULE index 1e7f974c645..fd2597efaa5 100644 --- a/src/licensedcode/data/rules/mpl-2.0_111.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_111.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MPL-2.0 Mozilla Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_111.yml b/src/licensedcode/data/rules/mpl-2.0_111.yml deleted file mode 100644 index 38cba14e2dd..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_111.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0_112.RULE b/src/licensedcode/data/rules/mpl-2.0_112.RULE index 9a34329b616..0464b1d92d3 100644 --- a/src/licensedcode/data/rules/mpl-2.0_112.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_112.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Mozilla Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_112.yml b/src/licensedcode/data/rules/mpl-2.0_112.yml deleted file mode 100644 index 23c6f41b2c8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_112.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0_113.RULE b/src/licensedcode/data/rules/mpl-2.0_113.RULE index 7484cd32cf3..db6eaab5788 100644 --- a/src/licensedcode/data/rules/mpl-2.0_113.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_113.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_113.yml b/src/licensedcode/data/rules/mpl-2.0_113.yml deleted file mode 100644 index 23c6f41b2c8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_113.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mpl-2.0_114.RULE b/src/licensedcode/data/rules/mpl-2.0_114.RULE index 0035b4390f7..f9c0dad317b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_114.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_114.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['MPL', 'MPL-2.0'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_114.yml b/src/licensedcode/data/rules/mpl-2.0_114.yml deleted file mode 100644 index 109539e4d67..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_115.RULE b/src/licensedcode/data/rules/mpl-2.0_115.RULE index 1484cc8700b..8034afe0184 100644 --- a/src/licensedcode/data/rules/mpl-2.0_115.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_115.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Mozilla Public License version 2': 'MPL-2.0', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_115.yml b/src/licensedcode/data/rules/mpl-2.0_115.yml deleted file mode 100644 index 109539e4d67..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_116.RULE b/src/licensedcode/data/rules/mpl-2.0_116.RULE index 6ab9e005cb6..8ef8f12e96f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_116.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_116.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Mozilla Public License, v. 2.0': 'MPL-2.0', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_116.yml b/src/licensedcode/data/rules/mpl-2.0_116.yml deleted file mode 100644 index 109539e4d67..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_117.RULE b/src/licensedcode/data/rules/mpl-2.0_117.RULE index efac36de636..fb620fcf9a8 100644 --- a/src/licensedcode/data/rules/mpl-2.0_117.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_117.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Mozilla Public License, version 2.0': 'MPL-2.0', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_117.yml b/src/licensedcode/data/rules/mpl-2.0_117.yml deleted file mode 100644 index 109539e4d67..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_118.RULE b/src/licensedcode/data/rules/mpl-2.0_118.RULE index 0c6da08efc0..a85208aa2fb 100644 --- a/src/licensedcode/data/rules/mpl-2.0_118.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_118.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Http://www.mozilla.org/MPL/2.0/': 'MPL-2.0', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_118.yml b/src/licensedcode/data/rules/mpl-2.0_118.yml deleted file mode 100644 index 109539e4d67..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_118.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_119.RULE b/src/licensedcode/data/rules/mpl-2.0_119.RULE index cf5a17f53c3..12ded53094e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_119.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_119.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + MPL2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_119.yml b/src/licensedcode/data/rules/mpl-2.0_119.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_12.RULE b/src/licensedcode/data/rules/mpl-2.0_12.RULE index 803eb4b4ff4..1b214aefd8e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +minimum_coverage: 30 +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + * Code is MPL licensed: This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/src/licensedcode/data/rules/mpl-2.0_12.yml b/src/licensedcode/data/rules/mpl-2.0_12.yml deleted file mode 100644 index 5a334ec6c2e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -minimum_coverage: 30 -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_120.RULE b/src/licensedcode/data/rules/mpl-2.0_120.RULE index 5ad6bba191a..6b857d5b1c0 100644 --- a/src/licensedcode/data/rules/mpl-2.0_120.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_120.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/Mozilla_Public_License +--- + [MPL2](https://en.wikipedia.org/wiki/Mozilla_Public_License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_120.yml b/src/licensedcode/data/rules/mpl-2.0_120.yml deleted file mode 100644 index 2c2b2ff2e38..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/Mozilla_Public_License diff --git a/src/licensedcode/data/rules/mpl-2.0_121.RULE b/src/licensedcode/data/rules/mpl-2.0_121.RULE index 6088ba22973..869e179f162 100644 --- a/src/licensedcode/data/rules/mpl-2.0_121.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_121.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 95 +--- + wikipedia.org/wiki/Mozilla_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_121.yml b/src/licensedcode/data/rules/mpl-2.0_121.yml deleted file mode 100644 index 21e20ffb57d..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/mpl-2.0_122.RULE b/src/licensedcode/data/rules/mpl-2.0_122.RULE index b3ca281f909..29904e0d95d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_122.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_122.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/MPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_122.yml b/src/licensedcode/data/rules/mpl-2.0_122.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_123.RULE b/src/licensedcode/data/rules/mpl-2.0_123.RULE index 29db5349891..6d74b203335 100644 --- a/src/licensedcode/data/rules/mpl-2.0_123.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_123.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MPL-2.0 +--- + https://licenses.nuget.org/MPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_123.yml b/src/licensedcode/data/rules/mpl-2.0_123.yml deleted file mode 100644 index 1079e85f182..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_123.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MPL-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_124.RULE b/src/licensedcode/data/rules/mpl-2.0_124.RULE index 12b3220de1f..201876115bc 100644 --- a/src/licensedcode/data/rules/mpl-2.0_124.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_124.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_124.yml b/src/licensedcode/data/rules/mpl-2.0_124.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_125.RULE b/src/licensedcode/data/rules/mpl-2.0_125.RULE index 406eb0127f9..1c267ac1cbf 100644 --- a/src/licensedcode/data/rules/mpl-2.0_125.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_125.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + It is subject to the terms of the Mozilla Public License, v. 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_125.yml b/src/licensedcode/data/rules/mpl-2.0_125.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_126.RULE b/src/licensedcode/data/rules/mpl-2.0_126.RULE index a082c32a1e4..8873eed8459 100644 --- a/src/licensedcode/data/rules/mpl-2.0_126.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_126.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + subject to the terms of the Mozilla Public License, v. 2.0: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_126.yml b/src/licensedcode/data/rules/mpl-2.0_126.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_127.RULE b/src/licensedcode/data/rules/mpl-2.0_127.RULE index 376f838020b..ba22d58ad98 100644 --- a/src/licensedcode/data/rules/mpl-2.0_127.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_127.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://mozilla.org/MPL/2.0/ +--- + https://mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_127.yml b/src/licensedcode/data/rules/mpl-2.0_127.yml deleted file mode 100644 index 87712a98a99..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_128.RULE b/src/licensedcode/data/rules/mpl-2.0_128.RULE index a059bd8084b..9006e980dcf 100644 --- a/src/licensedcode/data/rules/mpl-2.0_128.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_128.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0/ +--- + http://mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_128.yml b/src/licensedcode/data/rules/mpl-2.0_128.yml deleted file mode 100644 index 275871f1acf..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_128.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_129.RULE b/src/licensedcode/data/rules/mpl-2.0_129.RULE index 1434935841e..02fd66e1e20 100644 --- a/src/licensedcode/data/rules/mpl-2.0_129.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_129.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/MPL/2.0/ +--- + https://www.mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_129.yml b/src/licensedcode/data/rules/mpl-2.0_129.yml deleted file mode 100644 index 0cf08379fbc..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_13.RULE b/src/licensedcode/data/rules/mpl-2.0_13.RULE index 12d3462197b..ee37c5c84d3 100644 --- a/src/licensedcode/data/rules/mpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/mpl-2.0 +--- + License: [`mpl-2.0`](http://choosealicense.com/licenses/mpl-2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_13.yml b/src/licensedcode/data/rules/mpl-2.0_13.yml deleted file mode 100644 index 3e2c36304e5..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/mpl-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_130.RULE b/src/licensedcode/data/rules/mpl-2.0_130.RULE index 2858a3fc8ea..4a069883313 100644 --- a/src/licensedcode/data/rules/mpl-2.0_130.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_130.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_130.yml b/src/licensedcode/data/rules/mpl-2.0_130.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_131.RULE b/src/licensedcode/data/rules/mpl-2.0_131.RULE index b2448137cc3..3cbd9332cad 100644 --- a/src/licensedcode/data/rules/mpl-2.0_131.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_131.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-2.0 +--- + {{MPL-2.0}} https://spdx.org/licenses/MPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_131.yml b/src/licensedcode/data/rules/mpl-2.0_131.yml deleted file mode 100644 index 64fdc6e70b8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_131.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_132.RULE b/src/licensedcode/data/rules/mpl-2.0_132.RULE index 2145e14fd7f..0d719d025ab 100644 --- a/src/licensedcode/data/rules/mpl-2.0_132.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_132.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MPL-2.0 +--- + LICENSE {{MPL-2.0}} https://spdx.org/licenses/MPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_132.yml b/src/licensedcode/data/rules/mpl-2.0_132.yml deleted file mode 100644 index 64fdc6e70b8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_132.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MPL-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_14.RULE b/src/licensedcode/data/rules/mpl-2.0_14.RULE index 5f5d50f1e27..f833a5feb55 100644 --- a/src/licensedcode/data/rules/mpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + License ------- diff --git a/src/licensedcode/data/rules/mpl-2.0_14.yml b/src/licensedcode/data/rules/mpl-2.0_14.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_15.RULE b/src/licensedcode/data/rules/mpl-2.0_15.RULE index bba143ca0bb..ccd16b50a69 100644 --- a/src/licensedcode/data/rules/mpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_15.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://mozilla.org/MPL/2.0 +--- + Some of the files are licensed under the MPL license. You can obtain a copy of the license at https://mozilla.org/MPL/2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_15.yml b/src/licensedcode/data/rules/mpl-2.0_15.yml deleted file mode 100644 index a6bbcef690b..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_16.RULE b/src/licensedcode/data/rules/mpl-2.0_16.RULE index c49e307e6ad..c1d88094caf 100644 --- a/src/licensedcode/data/rules/mpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_16.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0/ +--- + This data file is licensed under the MPL-2.0 license. -# http://mozilla.org/MPL/2.0/ +# http://mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_16.yml b/src/licensedcode/data/rules/mpl-2.0_16.yml deleted file mode 100644 index 34aa99dc0d3..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_17.RULE b/src/licensedcode/data/rules/mpl-2.0_17.RULE index a958748a24a..f072474434b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_17.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0/ +--- + is licensed under the MPL-2.0 license. -# http://mozilla.org/MPL/2.0/ +# http://mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_17.yml b/src/licensedcode/data/rules/mpl-2.0_17.yml deleted file mode 100644 index 34aa99dc0d3..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_18.RULE b/src/licensedcode/data/rules/mpl-2.0_18.RULE index 7be716e2709..b614c1293e8 100644 --- a/src/licensedcode/data/rules/mpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - https://mozilla.org/MPL/2.0 +--- + // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at https://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_18.yml b/src/licensedcode/data/rules/mpl-2.0_18.yml deleted file mode 100644 index 54c1f8438e0..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - https://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_19.RULE b/src/licensedcode/data/rules/mpl-2.0_19.RULE index 6850389f201..bbfc413ae1d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_19.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.com/MPL/2.0/ +--- + http://www.mozilla.com/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_19.yml b/src/licensedcode/data/rules/mpl-2.0_19.yml deleted file mode 100644 index d51212e26d4..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.com/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_2.RULE b/src/licensedcode/data/rules/mpl-2.0_2.RULE index aa2c5ad02c0..82c1d62a66d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/ +--- + http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_2.yml b/src/licensedcode/data/rules/mpl-2.0_2.yml deleted file mode 100644 index efa4d479c09..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_20.RULE b/src/licensedcode/data/rules/mpl-2.0_20.RULE index 96c63db3cc0..16934bb2e40 100644 --- a/src/licensedcode/data/rules/mpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_20.RULE @@ -1,2 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +--- + MPL2_ONLY - disable non MPL2 compatible features, or in other words disable the features which are still under the LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_20.yml b/src/licensedcode/data/rules/mpl-2.0_20.yml deleted file mode 100644 index 263f18592f6..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/mpl-2.0_21.RULE b/src/licensedcode/data/rules/mpl-2.0_21.RULE index c4f44ba350c..72aba29e42e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_21.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 50 +--- + MPL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_21.yml b/src/licensedcode/data/rules/mpl-2.0_21.yml deleted file mode 100644 index c9db5dd71b6..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 50 diff --git a/src/licensedcode/data/rules/mpl-2.0_22.RULE b/src/licensedcode/data/rules/mpl-2.0_22.RULE index 342eece1afd..4d1140da753 100644 --- a/src/licensedcode/data/rules/mpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_22.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + MPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_22.yml b/src/licensedcode/data/rules/mpl-2.0_22.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_23.RULE b/src/licensedcode/data/rules/mpl-2.0_23.RULE index d24f04b81a7..6e40a000f68 100644 --- a/src/licensedcode/data/rules/mpl-2.0_23.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_23.RULE @@ -1,2 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +--- + released under the terms of the GNU LGPL: -However, gave us permission to relicense his code to MPL2. +However, gave us permission to relicense his code to MPL2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_23.yml b/src/licensedcode/data/rules/mpl-2.0_23.yml deleted file mode 100644 index 263f18592f6..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/mpl-2.0_24.RULE b/src/licensedcode/data/rules/mpl-2.0_24.RULE index 161d2a6dfff..778dfe2a431 100644 --- a/src/licensedcode/data/rules/mpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_24.RULE @@ -1 +1,7 @@ -MPL2_ONLY +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + +MPL2_ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_24.yml b/src/licensedcode/data/rules/mpl-2.0_24.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_25.RULE b/src/licensedcode/data/rules/mpl-2.0_25.RULE index f0100565098..a3e0dd99bac 100644 --- a/src/licensedcode/data/rules/mpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + Source Code Form is subject to the terms of the Mozilla Public License v. 2.0. If a copy of the MPL was not distributed -with this file, You can obtain one at http://mozilla.org/MPL/2.0/. +with this file, You can obtain one at http://mozilla.org/MPL/2.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_25.yml b/src/licensedcode/data/rules/mpl-2.0_25.yml deleted file mode 100644 index d9869bc3466..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_26.RULE b/src/licensedcode/data/rules/mpl-2.0_26.RULE index 38a7c0b604b..c2ed0dce19b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_26.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_26.RULE @@ -1,5 +1,12 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + mpl2_header = """ // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain one at http://mozilla.org/MPL/2.0/. -""" +""" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_26.yml b/src/licensedcode/data/rules/mpl-2.0_26.yml deleted file mode 100644 index d9869bc3466..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_27.RULE b/src/licensedcode/data/rules/mpl-2.0_27.RULE index 22ac6066fc4..18a472cfe76 100644 --- a/src/licensedcode/data/rules/mpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_27.RULE @@ -1,2 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +--- + This Source Code Form is subject to the terms of the Mozilla -Public License v. 2.0. If a copy of the MPL was not distributed +Public License v. 2.0. If a copy of the MPL was not distributed \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_27.yml b/src/licensedcode/data/rules/mpl-2.0_27.yml deleted file mode 100644 index 78ec2d4883c..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_27.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-2.0_28.RULE b/src/licensedcode/data/rules/mpl-2.0_28.RULE index 5f95ea2394d..e53553ebe47 100644 --- a/src/licensedcode/data/rules/mpl-2.0_28.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_28.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING.MPL2 +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/ + - http://www.mozilla.org/MPL/2.0/FAQ.html +--- + is primarily MPL2 licensed. See COPYING.MPL2 and these links: http://www.mozilla.org/MPL/2.0/ - http://www.mozilla.org/MPL/2.0/FAQ.html + http://www.mozilla.org/MPL/2.0/FAQ.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_28.yml b/src/licensedcode/data/rules/mpl-2.0_28.yml deleted file mode 100644 index 39de9f03d27..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_28.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING.MPL2 -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/ - - http://www.mozilla.org/MPL/2.0/FAQ.html diff --git a/src/licensedcode/data/rules/mpl-2.0_29.RULE b/src/licensedcode/data/rules/mpl-2.0_29.RULE index f7a61c4f9e8..7fd978731eb 100644 --- a/src/licensedcode/data/rules/mpl-2.0_29.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_29.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + It is licensed under Mozilla Public License (MPL), version 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_29.yml b/src/licensedcode/data/rules/mpl-2.0_29.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_3.RULE b/src/licensedcode/data/rules/mpl-2.0_3.RULE index 72cb8ceaa0b..7ad70867adb 100644 --- a/src/licensedcode/data/rules/mpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. + file, You can obtain one at http://mozilla.org/MPL/2.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_3.yml b/src/licensedcode/data/rules/mpl-2.0_3.yml deleted file mode 100644 index d9869bc3466..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_30.RULE b/src/licensedcode/data/rules/mpl-2.0_30.RULE index 5a09318b793..8d2b17d444e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_30.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_30.RULE @@ -1 +1,9 @@ -This software is licensed under the MPL version 2.0. For more information, read the file LICENSE. +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +This software is licensed under the MPL version 2.0. For more information, read the file LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_30.yml b/src/licensedcode/data/rules/mpl-2.0_30.yml deleted file mode 100644 index 45ba559d4fa..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mpl-2.0_31.RULE b/src/licensedcode/data/rules/mpl-2.0_31.RULE index 4c7388495c1..c98b57504d0 100644 --- a/src/licensedcode/data/rules/mpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_31.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + is licensed under the MPL 2.0 (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_31.yml b/src/licensedcode/data/rules/mpl-2.0_31.yml deleted file mode 100644 index f45b806f69e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mpl-2.0_32.RULE b/src/licensedcode/data/rules/mpl-2.0_32.RULE index 87a5851875f..5df42f148f1 100644 --- a/src/licensedcode/data/rules/mpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the MPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_32.yml b/src/licensedcode/data/rules/mpl-2.0_32.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_33.RULE b/src/licensedcode/data/rules/mpl-2.0_33.RULE index 90accccdbd7..174f9ca338d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_33.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + is licensed under the MPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_33.yml b/src/licensedcode/data/rules/mpl-2.0_33.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_34.RULE b/src/licensedcode/data/rules/mpl-2.0_34.RULE index 85ba54fcec5..2345bdb9ae2 100644 --- a/src/licensedcode/data/rules/mpl-2.0_34.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_34.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Licensed under MPL 2.0 (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_34.yml b/src/licensedcode/data/rules/mpl-2.0_34.yml deleted file mode 100644 index f45b806f69e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mpl-2.0_35.RULE b/src/licensedcode/data/rules/mpl-2.0_35.RULE index 4bc003b8299..dbcb549aaeb 100644 --- a/src/licensedcode/data/rules/mpl-2.0_35.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_35.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under MPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_35.yml b/src/licensedcode/data/rules/mpl-2.0_35.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_36.RULE b/src/licensedcode/data/rules/mpl-2.0_36.RULE index 4a488f9ae26..f1fe159da38 100644 --- a/src/licensedcode/data/rules/mpl-2.0_36.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_36.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0 +--- + License: Mozilla Public License version 2.0 (https://www.mozilla.org/en-US/MPL/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_36.yml b/src/licensedcode/data/rules/mpl-2.0_36.yml deleted file mode 100644 index c8e9477f920..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_37.RULE b/src/licensedcode/data/rules/mpl-2.0_37.RULE index eb14fa51157..98ba418b0f5 100644 --- a/src/licensedcode/data/rules/mpl-2.0_37.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_37.RULE @@ -1 +1,9 @@ -License: MPL (http://www.mozilla.org/MPL/2.0/index.txt +--- +license_expression: mpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/index.txt +--- + +License: MPL (http://www.mozilla.org/MPL/2.0/index.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_37.yml b/src/licensedcode/data/rules/mpl-2.0_37.yml deleted file mode 100644 index 08b49cec41e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/index.txt diff --git a/src/licensedcode/data/rules/mpl-2.0_38.RULE b/src/licensedcode/data/rules/mpl-2.0_38.RULE index 334383b1005..37fd7764a0e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_38.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/index.txt +--- + http://www.mozilla.org/MPL/2.0/index.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_38.yml b/src/licensedcode/data/rules/mpl-2.0_38.yml deleted file mode 100644 index 91dd4a67bd4..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/index.txt diff --git a/src/licensedcode/data/rules/mpl-2.0_39.RULE b/src/licensedcode/data/rules/mpl-2.0_39.RULE index c96e9b1db70..c45060d6031 100644 --- a/src/licensedcode/data/rules/mpl-2.0_39.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public License version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_39.yml b/src/licensedcode/data/rules/mpl-2.0_39.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_4.RULE b/src/licensedcode/data/rules/mpl-2.0_4.RULE index ce5de092074..8608b88b688 100644 --- a/src/licensedcode/data/rules/mpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_4.RULE @@ -1,2 +1,9 @@ -http://www.mozilla.org/MPL/2.0/ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/ +--- +http://www.mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_4.yml b/src/licensedcode/data/rules/mpl-2.0_4.yml deleted file mode 100644 index 86345a95e0e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_40.RULE b/src/licensedcode/data/rules/mpl-2.0_40.RULE index 2e6daa9a498..84e6f630d35 100644 --- a/src/licensedcode/data/rules/mpl-2.0_40.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_40.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_text: yes +relevance: 99 +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + Mozilla Public License Version 2.0 ================================== @@ -364,4 +372,4 @@ means having the right to grant, to the maximum extent possible, file in a relevant directory) where a recipient would be likely to look for such a notice. - You may add additional accurate notices of copyright ownership. + You may add additional accurate notices of copyright ownership. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_40.yml b/src/licensedcode/data/rules/mpl-2.0_40.yml deleted file mode 100644 index b403324cf7e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_text: yes -relevance: 99 -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_41.RULE b/src/licensedcode/data/rules/mpl-2.0_41.RULE index bb5305708c2..30dc6c55f5e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_41.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the [Mozilla Public License Version 2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_41.yml b/src/licensedcode/data/rules/mpl-2.0_41.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_42.RULE b/src/licensedcode/data/rules/mpl-2.0_42.RULE index c3587cd92f0..c16c266b08d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_42.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_42.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/FAQ.html +--- + ## License is licensed under the [Mozilla Public License Version 2.0] diff --git a/src/licensedcode/data/rules/mpl-2.0_42.yml b/src/licensedcode/data/rules/mpl-2.0_42.yml deleted file mode 100644 index beab6635727..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_42.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/FAQ.html diff --git a/src/licensedcode/data/rules/mpl-2.0_43.RULE b/src/licensedcode/data/rules/mpl-2.0_43.RULE index 0aebeadcfcd..dfe48580451 100644 --- a/src/licensedcode/data/rules/mpl-2.0_43.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_43.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + under the Mozilla Public License 2, as specified in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_43.yml b/src/licensedcode/data/rules/mpl-2.0_43.yml deleted file mode 100644 index 45ba559d4fa..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mpl-2.0_44.RULE b/src/licensedcode/data/rules/mpl-2.0_44.RULE index 0a98a769f60..b9e6967175d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_44.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_44.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the Mozilla Public License 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_44.yml b/src/licensedcode/data/rules/mpl-2.0_44.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_45.RULE b/src/licensedcode/data/rules/mpl-2.0_45.RULE index 88d8e8bfa01..9682ba8ef05 100644 --- a/src/licensedcode/data/rules/mpl-2.0_45.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_45.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/mozilla +--- + https://choosealicense.com/licenses/mozilla \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_45.yml b/src/licensedcode/data/rules/mpl-2.0_45.yml deleted file mode 100644 index e212586656c..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/mozilla diff --git a/src/licensedcode/data/rules/mpl-2.0_46.RULE b/src/licensedcode/data/rules/mpl-2.0_46.RULE index 9da0dc96a51..a7a0a9125e6 100644 --- a/src/licensedcode/data/rules/mpl-2.0_46.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_46.RULE @@ -1 +1,9 @@ -http://choosealicense.com/licenses/mozilla +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/mozilla +--- + +http://choosealicense.com/licenses/mozilla \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_46.yml b/src/licensedcode/data/rules/mpl-2.0_46.yml deleted file mode 100644 index 6db7f93c9f3..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/mozilla diff --git a/src/licensedcode/data/rules/mpl-2.0_47.RULE b/src/licensedcode/data/rules/mpl-2.0_47.RULE index 9314f53ba3b..e203539e23b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_47.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_47.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/mpl-2.0 +--- + https://choosealicense.com/licenses/mpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_47.yml b/src/licensedcode/data/rules/mpl-2.0_47.yml deleted file mode 100644 index fb017e51588..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/mpl-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_48.RULE b/src/licensedcode/data/rules/mpl-2.0_48.RULE index 839b5675623..4de524278fe 100644 --- a/src/licensedcode/data/rules/mpl-2.0_48.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_48.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/mpl-2.0 +--- + http://choosealicense.com/licenses/mpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_48.yml b/src/licensedcode/data/rules/mpl-2.0_48.yml deleted file mode 100644 index 3e2c36304e5..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/mpl-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_49.RULE b/src/licensedcode/data/rules/mpl-2.0_49.RULE index 20485f18287..92d6623d4c3 100644 --- a/src/licensedcode/data/rules/mpl-2.0_49.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_49.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This code is licensed under the MPL 2.0 [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_49.yml b/src/licensedcode/data/rules/mpl-2.0_49.yml deleted file mode 100644 index 45ba559d4fa..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/mpl-2.0_5.RULE b/src/licensedcode/data/rules/mpl-2.0_5.RULE index 5083d70f23e..e661b124034 100644 --- a/src/licensedcode/data/rules/mpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0/ +--- + https://www.mozilla.org/en-US/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_5.yml b/src/licensedcode/data/rules/mpl-2.0_5.yml deleted file mode 100644 index a56bdf4d44f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_50.RULE b/src/licensedcode/data/rules/mpl-2.0_50.RULE index e9c7b7856ca..2a1e26eb15f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_50.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_50.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + License This code is licensed under the MPL 2.0 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_50.yml b/src/licensedcode/data/rules/mpl-2.0_50.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_51.RULE b/src/licensedcode/data/rules/mpl-2.0_51.RULE index 75ee03cf907..e469b845a8c 100644 --- a/src/licensedcode/data/rules/mpl-2.0_51.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_51.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This code is licensed under the MPL 2.0 LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_51.yml b/src/licensedcode/data/rules/mpl-2.0_51.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_52.RULE b/src/licensedcode/data/rules/mpl-2.0_52.RULE index 946ba5fa409..fe4eff631f3 100644 --- a/src/licensedcode/data/rules/mpl-2.0_52.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_52.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSe +--- + License is provided under the Mozilla Public License 2.0 license (MPL) that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license. diff --git a/src/licensedcode/data/rules/mpl-2.0_52.yml b/src/licensedcode/data/rules/mpl-2.0_52.yml deleted file mode 100644 index f5e486858d8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSe diff --git a/src/licensedcode/data/rules/mpl-2.0_53.RULE b/src/licensedcode/data/rules/mpl-2.0_53.RULE index 4f9a2cf6776..a5fc794ffdd 100644 --- a/src/licensedcode/data/rules/mpl-2.0_53.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_53.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_53.yml b/src/licensedcode/data/rules/mpl-2.0_53.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_54.RULE b/src/licensedcode/data/rules/mpl-2.0_54.RULE index fe70102654c..484bbe14d2b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_54.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_54.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +relevance: 100 +--- + Mozilla Public License 2.0 (MPL 2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_54.yml b/src/licensedcode/data/rules/mpl-2.0_54.yml deleted file mode 100644 index 0358e9247bd..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_55.RULE b/src/licensedcode/data/rules/mpl-2.0_55.RULE index 79f4419b60e..bc3f6f88857 100644 --- a/src/licensedcode/data/rules/mpl-2.0_55.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_55.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_55.yml b/src/licensedcode/data/rules/mpl-2.0_55.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_56.RULE b/src/licensedcode/data/rules/mpl-2.0_56.RULE index fa778764cf6..7a32c50ba30 100644 --- a/src/licensedcode/data/rules/mpl-2.0_56.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_56.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 95 +referenced_filenames: + - LICENSE.txt +--- + * The software in this package is published under the terms of the MPL license a copy of which has * been included with this distribution in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_56.yml b/src/licensedcode/data/rules/mpl-2.0_56.yml deleted file mode 100644 index 095cd7f8c35..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 95 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mpl-2.0_57.RULE b/src/licensedcode/data/rules/mpl-2.0_57.RULE index 4779738bcb0..c76d90d25eb 100644 --- a/src/licensedcode/data/rules/mpl-2.0_57.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_57.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0/ + - https://publicsuffix.org/list/effective_tld_names.dat +--- + This project includes Public Suffix List copied from licensed under the terms of the Mozilla Public License, v. 2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_57.yml b/src/licensedcode/data/rules/mpl-2.0_57.yml deleted file mode 100644 index 376925ce61a..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_57.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0/ - - https://publicsuffix.org/list/effective_tld_names.dat diff --git a/src/licensedcode/data/rules/mpl-2.0_58.RULE b/src/licensedcode/data/rules/mpl-2.0_58.RULE index e9a1d6f92e9..4a7d1fa7b7e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_58.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_58.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0/ +--- + Full license text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_58.yml b/src/licensedcode/data/rules/mpl-2.0_58.yml deleted file mode 100644 index 34aa99dc0d3..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_59.RULE b/src/licensedcode/data/rules/mpl-2.0_59.RULE index d0367c0d8f5..0a2e274dc6b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_59.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_59.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0/ +--- + licensed under the terms of the Mozilla Public License, v. 2.0 Full license text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_59.yml b/src/licensedcode/data/rules/mpl-2.0_59.yml deleted file mode 100644 index 34aa99dc0d3..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_6.RULE b/src/licensedcode/data/rules/mpl-2.0_6.RULE index e9763f67185..65e4cedca23 100644 --- a/src/licensedcode/data/rules/mpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://mozilla.org/MPL/2.0/ +--- + All code in this repository except where explicitly noted otherwise is released under the Mozilla Public License v 2.0. You can obtain a copy at http://mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_6.yml b/src/licensedcode/data/rules/mpl-2.0_6.yml deleted file mode 100644 index bc4a188a5a0..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_60.RULE b/src/licensedcode/data/rules/mpl-2.0_60.RULE index 65d9a15b5c9..44054f4c90c 100644 --- a/src/licensedcode/data/rules/mpl-2.0_60.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_60.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the Mozilla Public License, v. 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_60.yml b/src/licensedcode/data/rules/mpl-2.0_60.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_61.RULE b/src/licensedcode/data/rules/mpl-2.0_61.RULE index fc1c8abd493..b7592793372 100644 --- a/src/licensedcode/data/rules/mpl-2.0_61.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_61.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-2.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0 + - http://mozilla.org/MPL/2.0/ +--- + Full license text: Mozilla Public License Version 2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_61.yml b/src/licensedcode/data/rules/mpl-2.0_61.yml deleted file mode 100644 index 302595d470d..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_61.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0 - - http://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_62.RULE b/src/licensedcode/data/rules/mpl-2.0_62.RULE index b6ddc37b086..981300929f3 100644 --- a/src/licensedcode/data/rules/mpl-2.0_62.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_62.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Mozilla Public License Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_62.yml b/src/licensedcode/data/rules/mpl-2.0_62.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_63.RULE b/src/licensedcode/data/rules/mpl-2.0_63.RULE index 30a704b079a..3fdb38fc978 100644 --- a/src/licensedcode/data/rules/mpl-2.0_63.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_63.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the Mozilla Public License Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_63.yml b/src/licensedcode/data/rules/mpl-2.0_63.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_64.RULE b/src/licensedcode/data/rules/mpl-2.0_64.RULE index 7cad725a572..a9cbab1aa7a 100644 --- a/src/licensedcode/data/rules/mpl-2.0_64.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_64.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public License Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_64.yml b/src/licensedcode/data/rules/mpl-2.0_64.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_65.RULE b/src/licensedcode/data/rules/mpl-2.0_65.RULE index 3dd48be1218..374444137d1 100644 --- a/src/licensedcode/data/rules/mpl-2.0_65.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_65.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0/ +--- + Mozilla Public License 2.0 https://www.mozilla.org/en-US/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_65.yml b/src/licensedcode/data/rules/mpl-2.0_65.yml deleted file mode 100644 index a56bdf4d44f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_66.RULE b/src/licensedcode/data/rules/mpl-2.0_66.RULE index d000d7c0c85..04c89f65f63 100644 --- a/src/licensedcode/data/rules/mpl-2.0_66.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_66.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/en-US/MPL/2.0/ +--- + Mozilla Public License 2.0 http://www.mozilla.org/en-US/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_66.yml b/src/licensedcode/data/rules/mpl-2.0_66.yml deleted file mode 100644 index c7ce302d19e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/en-US/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_67.RULE b/src/licensedcode/data/rules/mpl-2.0_67.RULE index 6291501d7ee..e9711ddf880 100644 --- a/src/licensedcode/data/rules/mpl-2.0_67.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_67.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/en-US/MPL/2.0/ +--- + http://www.mozilla.org/en-US/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_67.yml b/src/licensedcode/data/rules/mpl-2.0_67.yml deleted file mode 100644 index c7ce302d19e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/en-US/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_68.RULE b/src/licensedcode/data/rules/mpl-2.0_68.RULE index cfe0358300a..d0a2ab99578 100644 --- a/src/licensedcode/data/rules/mpl-2.0_68.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_68.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + mozilla.org/en-US/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_68.yml b/src/licensedcode/data/rules/mpl-2.0_68.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_69.RULE b/src/licensedcode/data/rules/mpl-2.0_69.RULE index 3712c924550..f5ae3bf68fc 100644 --- a/src/licensedcode/data/rules/mpl-2.0_69.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_69.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - https://www.mozilla.org/MPL/2.0/index.txt +--- + `MPL-2.0` - [Mozilla Public License](https://www.mozilla.org/MPL/2.0/index.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_69.yml b/src/licensedcode/data/rules/mpl-2.0_69.yml deleted file mode 100644 index 557370370df..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_69.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - https://www.mozilla.org/MPL/2.0/index.txt diff --git a/src/licensedcode/data/rules/mpl-2.0_7.RULE b/src/licensedcode/data/rules/mpl-2.0_7.RULE index 50fb222f2b3..594610dd1ad 100644 --- a/src/licensedcode/data/rules/mpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + /***** BEGIN LICENSE BLOCK ***** * * This Source Code Form is subject to the terms of the Mozilla Public @@ -5,4 +12,4 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * - ***** END LICENSE BLOCK *****/ + ***** END LICENSE BLOCK *****/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_7.yml b/src/licensedcode/data/rules/mpl-2.0_7.yml deleted file mode 100644 index d9869bc3466..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_70.RULE b/src/licensedcode/data/rules/mpl-2.0_70.RULE index 2d7ea054be6..5ce3e1eb8ae 100644 --- a/src/licensedcode/data/rules/mpl-2.0_70.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_70.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + This software is licensed under the terms of the Mozilla Public License v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_70.yml b/src/licensedcode/data/rules/mpl-2.0_70.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_71.RULE b/src/licensedcode/data/rules/mpl-2.0_71.RULE index 412dbd17abf..2dc5ec012aa 100644 --- a/src/licensedcode/data/rules/mpl-2.0_71.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_71.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the Mozilla Public License v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_71.yml b/src/licensedcode/data/rules/mpl-2.0_71.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_72.RULE b/src/licensedcode/data/rules/mpl-2.0_72.RULE index 0665ac5e380..badd15e0054 100644 --- a/src/licensedcode/data/rules/mpl-2.0_72.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_72.RULE @@ -1 +1,14 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT + - LICENSE +ignorable_copyrights: + - COPYRIGHT COPYRIGHT and LICENSE +ignorable_holders: + - LICENSE +--- + This software is licensed under the terms of the Mozilla Public License v2.0. See the [COPYRIGHT] COPYRIGHT and [LICENSE]LICENSE) files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_72.yml b/src/licensedcode/data/rules/mpl-2.0_72.yml deleted file mode 100644 index b26940f83ef..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_72.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT - - LICENSE -ignorable_copyrights: - - COPYRIGHT COPYRIGHT and LICENSE -ignorable_holders: - - LICENSE diff --git a/src/licensedcode/data/rules/mpl-2.0_73.RULE b/src/licensedcode/data/rules/mpl-2.0_73.RULE index 7f46e5db8b6..1e554aa6622 100644 --- a/src/licensedcode/data/rules/mpl-2.0_73.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_73.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public License v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_73.yml b/src/licensedcode/data/rules/mpl-2.0_73.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_74.RULE b/src/licensedcode/data/rules/mpl-2.0_74.RULE index 989bda8ea22..c60ad4f2053 100644 --- a/src/licensedcode/data/rules/mpl-2.0_74.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_74.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the Mozilla Public License v2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_74.yml b/src/licensedcode/data/rules/mpl-2.0_74.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_75.RULE b/src/licensedcode/data/rules/mpl-2.0_75.RULE index 43539c3909e..5ce48996f8c 100644 --- a/src/licensedcode/data/rules/mpl-2.0_75.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_75.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License: MPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_75.yml b/src/licensedcode/data/rules/mpl-2.0_75.yml deleted file mode 100644 index 0358e9247bd..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_76.RULE b/src/licensedcode/data/rules/mpl-2.0_76.RULE index 5d39f93e742..5ffa4e8d027 100644 --- a/src/licensedcode/data/rules/mpl-2.0_76.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_76.RULE @@ -1 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://www.mozilla.org/en-US/MPL/2.0 +--- + is wholly subject to the Mozilla Public License v. 2.0 as published by the Mozilla Foundation and included with this source code in the file "LICENSE". You can also find a copy of the full license at https://www.mozilla.org/en-US/MPL/2.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_76.yml b/src/licensedcode/data/rules/mpl-2.0_76.yml deleted file mode 100644 index cb484b33c90..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_76.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://www.mozilla.org/en-US/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_77.RULE b/src/licensedcode/data/rules/mpl-2.0_77.RULE index 59d0b4502eb..7d26da42c4d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_77.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_77.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +notes: https://github.com/fauna/faunadb-go/blob/f8a03e4ee59acbbe842d65c3d142746ab375424f/LICENSE +ignorable_urls: + - http://mozilla.org/MPL/2.0/ +--- + Licensed under the Mozilla Public License, Version 2.0 (the "License"); you may not use this software except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mpl-2.0_77.yml b/src/licensedcode/data/rules/mpl-2.0_77.yml deleted file mode 100644 index 20cbf1f9e93..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_77.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -notes: https://github.com/fauna/faunadb-go/blob/f8a03e4ee59acbbe842d65c3d142746ab375424f/LICENSE -ignorable_urls: - - http://mozilla.org/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_78.RULE b/src/licensedcode/data/rules/mpl-2.0_78.RULE index b09f66a0241..007035ea34d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_78.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_78.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The license for this file is MPL/2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_78.yml b/src/licensedcode/data/rules/mpl-2.0_78.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_79.RULE b/src/licensedcode/data/rules/mpl-2.0_79.RULE index be64dc7b144..52b050e1f91 100644 --- a/src/licensedcode/data/rules/mpl-2.0_79.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_79.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + The license for this file is MPL/2.0. The header of that file reads as follows: diff --git a/src/licensedcode/data/rules/mpl-2.0_79.yml b/src/licensedcode/data/rules/mpl-2.0_79.yml deleted file mode 100644 index cd2235b0447..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_8.RULE b/src/licensedcode/data/rules/mpl-2.0_8.RULE index 314a051b0f4..8e9c03e39a6 100644 --- a/src/licensedcode/data/rules/mpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + This software is distributed under both the MPL2 and GPL2 licenses. You are free to decide which license you wish to use this software under. -------------------------------------------------------------------------------- @@ -8,4 +15,4 @@ This Source Code Form is subject to the terms of the Mozilla Public License, v. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. -This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. +This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_8.yml b/src/licensedcode/data/rules/mpl-2.0_8.yml deleted file mode 100644 index d9869bc3466..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_80.RULE b/src/licensedcode/data/rules/mpl-2.0_80.RULE index f89099c0683..7d4f670aa93 100644 --- a/src/licensedcode/data/rules/mpl-2.0_80.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_80.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Mozilla Public License (MPL) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_80.yml b/src/licensedcode/data/rules/mpl-2.0_80.yml deleted file mode 100644 index 109539e4d67..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_81.RULE b/src/licensedcode/data/rules/mpl-2.0_81.RULE index ab6997bbdd0..c74d73c7bd9 100644 --- a/src/licensedcode/data/rules/mpl-2.0_81.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_81.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public licence (MPL) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_81.yml b/src/licensedcode/data/rules/mpl-2.0_81.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_82.RULE b/src/licensedcode/data/rules/mpl-2.0_82.RULE index 1ccb90c7fdb..4255ece9242 100644 --- a/src/licensedcode/data/rules/mpl-2.0_82.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_82.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the mpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_82.yml b/src/licensedcode/data/rules/mpl-2.0_82.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_83.RULE b/src/licensedcode/data/rules/mpl-2.0_83.RULE index 4b5c1aa9b38..de69c6df89c 100644 --- a/src/licensedcode/data/rules/mpl-2.0_83.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_83.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE MPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_83.yml b/src/licensedcode/data/rules/mpl-2.0_83.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_84.RULE b/src/licensedcode/data/rules/mpl-2.0_84.RULE index af1d043a0b7..619852d79a7 100644 --- a/src/licensedcode/data/rules/mpl-2.0_84.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_84.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE MPL 2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_84.yml b/src/licensedcode/data/rules/mpl-2.0_84.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_85.RULE b/src/licensedcode/data/rules/mpl-2.0_85.RULE index 99fa7e42395..6eabe96419d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_85.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_85.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE MPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_85.yml b/src/licensedcode/data/rules/mpl-2.0_85.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_86.RULE b/src/licensedcode/data/rules/mpl-2.0_86.RULE index 4a9c81f7fed..aea92654480 100644 --- a/src/licensedcode/data/rules/mpl-2.0_86.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_86.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + LICENSE INFORMATION: MPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_86.yml b/src/licensedcode/data/rules/mpl-2.0_86.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_87.RULE b/src/licensedcode/data/rules/mpl-2.0_87.RULE index 5f3ad9669bc..a89cd3a8738 100644 --- a/src/licensedcode/data/rules/mpl-2.0_87.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_87.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + This Source Code Form is subject to the terms of the Mozilla Public License, v2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_87.yml b/src/licensedcode/data/rules/mpl-2.0_87.yml deleted file mode 100644 index cd2235b0447..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_87.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_88.RULE b/src/licensedcode/data/rules/mpl-2.0_88.RULE index 03dd3560d25..a575be486eb 100644 --- a/src/licensedcode/data/rules/mpl-2.0_88.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_88.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Mozilla Public License, V2.0 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_88.yml b/src/licensedcode/data/rules/mpl-2.0_88.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_89.RULE b/src/licensedcode/data/rules/mpl-2.0_89.RULE index d508896bac6..54498af7452 100644 --- a/src/licensedcode/data/rules/mpl-2.0_89.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_89.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + Mozilla Public License Version 2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_89.yml b/src/licensedcode/data/rules/mpl-2.0_89.yml deleted file mode 100644 index 22d639d2d7d..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_9.RULE b/src/licensedcode/data/rules/mpl-2.0_9.RULE index 20e6a4cb0c9..d4b5048bcba 100644 --- a/src/licensedcode/data/rules/mpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_9.RULE @@ -1,4 +1,12 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +minimum_coverage: 30 +ignorable_urls: + - http://mozilla.org/MPL/2.0 +--- + * This Source Code Form is subject to the terms of the * Mozilla Public License (MPL), v. 2.0. * If a copy of the MPL was not distributed with this file, - * You can obtain one at http://mozilla.org/MPL/2.0/. + * You can obtain one at http://mozilla.org/MPL/2.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_9.yml b/src/licensedcode/data/rules/mpl-2.0_9.yml deleted file mode 100644 index 5a334ec6c2e..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -minimum_coverage: 30 -ignorable_urls: - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_90.RULE b/src/licensedcode/data/rules/mpl-2.0_90.RULE index b5679e11028..7f88ea77aee 100644 --- a/src/licensedcode/data/rules/mpl-2.0_90.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_90.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public License, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_90.yml b/src/licensedcode/data/rules/mpl-2.0_90.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_91.RULE b/src/licensedcode/data/rules/mpl-2.0_91.RULE index 605782f5140..a0dad6d4d70 100644 --- a/src/licensedcode/data/rules/mpl-2.0_91.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_91.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public Licence, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_91.yml b/src/licensedcode/data/rules/mpl-2.0_91.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_92.RULE b/src/licensedcode/data/rules/mpl-2.0_92.RULE index 2646194ae6b..2926b28c5e8 100644 --- a/src/licensedcode/data/rules/mpl-2.0_92.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_92.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Mozilla Public Licence, V 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_92.yml b/src/licensedcode/data/rules/mpl-2.0_92.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_93.RULE b/src/licensedcode/data/rules/mpl-2.0_93.RULE index a27aa1460df..651e444353a 100644 --- a/src/licensedcode/data/rules/mpl-2.0_93.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_93.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + MPLv2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_93.yml b/src/licensedcode/data/rules/mpl-2.0_93.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_93.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_94.RULE b/src/licensedcode/data/rules/mpl-2.0_94.RULE index 0bd91440c51..ef7c9736cb5 100644 --- a/src/licensedcode/data/rules/mpl-2.0_94.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_94.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + MPLv2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_94.yml b/src/licensedcode/data/rules/mpl-2.0_94.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_95.RULE b/src/licensedcode/data/rules/mpl-2.0_95.RULE index eee3900ff2a..ea2aef2f2ef 100644 --- a/src/licensedcode/data/rules/mpl-2.0_95.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_95.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + MPL v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_95.yml b/src/licensedcode/data/rules/mpl-2.0_95.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_96.RULE b/src/licensedcode/data/rules/mpl-2.0_96.RULE index bc4fbe504cb..25c64416eb8 100644 --- a/src/licensedcode/data/rules/mpl-2.0_96.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_96.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +--- + the Mozilla Public License 2.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_96.yml b/src/licensedcode/data/rules/mpl-2.0_96.yml deleted file mode 100644 index af2bf6a8926..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_97.RULE b/src/licensedcode/data/rules/mpl-2.0_97.RULE index c15d42b7678..06337c73172 100644 --- a/src/licensedcode/data/rules/mpl-2.0_97.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_97.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + The Source Code of this file is available under the Mozilla Public License, v. 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_97.yml b/src/licensedcode/data/rules/mpl-2.0_97.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_98.RULE b/src/licensedcode/data/rules/mpl-2.0_98.RULE index a61cf3f8bf1..63ea5622f61 100644 --- a/src/licensedcode/data/rules/mpl-2.0_98.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_98.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://mozilla.org/MPL/2.0 +--- + If a copy of the MPL was not distributed with this file, you can obtain one at https://mozilla.org/MPL/2.0/. diff --git a/src/licensedcode/data/rules/mpl-2.0_98.yml b/src/licensedcode/data/rules/mpl-2.0_98.yml deleted file mode 100644 index a6bbcef690b..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_99.RULE b/src/licensedcode/data/rules/mpl-2.0_99.RULE index 48e35efa89d..029706d5755 100644 --- a/src/licensedcode/data/rules/mpl-2.0_99.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_99.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Mozilla Public License 2.0, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_99.yml b/src/licensedcode/data/rules/mpl-2.0_99.yml deleted file mode 100644 index e329fc385ff..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_and_cc-by-sa-3.0.RULE b/src/licensedcode/data/rules/mpl-2.0_and_cc-by-sa-3.0.RULE index c001d72cedf..790e601fedc 100644 --- a/src/licensedcode/data/rules/mpl-2.0_and_cc-by-sa-3.0.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_and_cc-by-sa-3.0.RULE @@ -1,3 +1,12 @@ +--- +license_expression: mpl-2.0 AND cc-by-sa-3.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0/ + - http://mozilla.org/MPL/2.0 +--- + * Code is MPL licensed: This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, diff --git a/src/licensedcode/data/rules/mpl-2.0_and_cc-by-sa-3.0.yml b/src/licensedcode/data/rules/mpl-2.0_and_cc-by-sa-3.0.yml deleted file mode 100644 index 97a501b44c8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_and_cc-by-sa-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 AND cc-by-sa-3.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0/ - - http://mozilla.org/MPL/2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_and_free-unknown_1.RULE b/src/licensedcode/data/rules/mpl-2.0_and_free-unknown_1.RULE index 88930a982a4..8ea4c884a91 100644 --- a/src/licensedcode/data/rules/mpl-2.0_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_and_free-unknown_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: mpl-2.0 AND free-unknown +is_license_notice: yes +relevance: 90 +minimum_coverage: 50 +notes: this is a rare modified mpl that needs a review +ignorable_urls: + - http://gis.foundationcenter.org/licenses/LICENSE-1.0.html +--- + Foundation Center Public License v. 1.0 1. Definitions diff --git a/src/licensedcode/data/rules/mpl-2.0_and_free-unknown_1.yml b/src/licensedcode/data/rules/mpl-2.0_and_free-unknown_1.yml deleted file mode 100644 index 5c99727c386..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_and_free-unknown_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: mpl-2.0 AND free-unknown -is_license_notice: yes -relevance: 90 -minimum_coverage: 50 -notes: this is a rare modified mpl that needs a review -ignorable_urls: - - http://gis.foundationcenter.org/licenses/LICENSE-1.0.html diff --git a/src/licensedcode/data/rules/mpl-2.0_and_lgpl-2.1_and_lgpl-2.1-plus_and_bsd-new_and_other-permissive.RULE b/src/licensedcode/data/rules/mpl-2.0_and_lgpl-2.1_and_lgpl-2.1-plus_and_bsd-new_and_other-permissive.RULE index afe94b89235..00d9e317456 100644 --- a/src/licensedcode/data/rules/mpl-2.0_and_lgpl-2.1_and_lgpl-2.1-plus_and_bsd-new_and_other-permissive.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_and_lgpl-2.1_and_lgpl-2.1-plus_and_bsd-new_and_other-permissive.RULE @@ -1,3 +1,15 @@ +--- +license_expression: mpl-2.0 AND lgpl-2.1 AND lgpl-2.1-plus AND bsd-new AND other-permissive +is_license_notice: yes +referenced_filenames: + - COPYING.MPL2 + - COPYING.LGPL + - COPYING.* +ignorable_urls: + - http://www.mozilla.org/MPL/2.0/ + - http://www.mozilla.org/MPL/2.0/FAQ.html +--- + is primarily MPL2 licensed. See COPYING.MPL2 and these links: http://www.mozilla.org/MPL/2.0/ http://www.mozilla.org/MPL/2.0/FAQ.html @@ -15,4 +27,4 @@ preprocessor symbol: For example, with most compilers, you could add this to your project CXXFLAGS: -_MPL2_ONLY This will cause a compilation error to be generated if you #include any code that is -LGPL licensed. +LGPL licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_and_lgpl-2.1_and_lgpl-2.1-plus_and_bsd-new_and_other-permissive.yml b/src/licensedcode/data/rules/mpl-2.0_and_lgpl-2.1_and_lgpl-2.1-plus_and_bsd-new_and_other-permissive.yml deleted file mode 100644 index 240f44434d9..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_and_lgpl-2.1_and_lgpl-2.1-plus_and_bsd-new_and_other-permissive.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: mpl-2.0 AND lgpl-2.1 AND lgpl-2.1-plus AND bsd-new AND other-permissive -is_license_notice: yes -referenced_filenames: - - COPYING.MPL2 - - COPYING.LGPL - - COPYING.* -ignorable_urls: - - http://www.mozilla.org/MPL/2.0/ - - http://www.mozilla.org/MPL/2.0/FAQ.html diff --git a/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.RULE b/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.RULE index 29e4f482ec8..f6af89be810 100644 --- a/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mpl-2.0 AND mit AND bsd-new AND apache-2.0 AND json +is_license_notice: yes +relevance: 99 +--- + These programs' copyrights are owned by other people. They are distributed here under the MPL, MIT, BSD, Apache and JSLint licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.yml b/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.yml deleted file mode 100644 index e5cc58bf16f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_and_mit_and_bsd-new_and_apache-2.0_and_json_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 AND mit AND bsd-new AND apache-2.0 AND json -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_1.RULE b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_1.RULE index f92afebf781..ed1320a5d56 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: mpl-2.0 OR epl-1.0 +is_license_notice: yes +--- + is dual licensed and available under the MPL 2.0 (Mozilla Public License Version 2.0) or under the EPL 1.0 (Eclipse Public License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_1.yml b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_1.yml deleted file mode 100644 index 659fc6d8908..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-2.0 OR epl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_2.RULE b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_2.RULE index 949a868a393..83970d1a169 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: mpl-2.0 OR epl-1.0 +is_license_notice: yes +--- + dual licensed and available under the MPL 2.0 (Mozilla Public License Version 2.0) or under the EPL 1.0 (Eclipse Public License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_2.yml b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_2.yml deleted file mode 100644 index 659fc6d8908..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-2.0 OR epl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_1.RULE index 2146ae34db4..f1a0fe07cf7 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: (mpl-2.0 OR epl-1.0) AND proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.bungisoft.com/ + - http://www.h2database.com/ + - http://www.h2database.com/html/license.html +--- + H2 is dual licensed and available under the MPL 2.0 (Mozilla Public License Version 2.0) or under the EPL 1.0 (Eclipse Public License). There is a license FAQ for both the MPL and the EPL. You can use H2 for free. @@ -18,4 +27,4 @@ H2 database engine (http://www.h2database.com/), which is dual licensed and available under the MPL 2.0 (Mozilla Public License) or under the EPL 1.0 (Eclipse Public License). An original copy of the license agreement can be found at: -http://www.h2database.com/html/license.html +http://www.h2database.com/html/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_1.yml deleted file mode 100644 index 6ef0695627f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: (mpl-2.0 OR epl-1.0) AND proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.bungisoft.com/ - - http://www.h2database.com/ - - http://www.h2database.com/html/license.html diff --git a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_2.RULE index 7bb9419257a..718bb7eeede 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: (mpl-2.0 OR epl-1.0) AND proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.h2database.com/ + - http://www.h2database.com/html/license.html +--- + This software contains unmodified binary redistributions for H2 database engine (http://www.h2database.com/), which is dual licensed and available under the MPL 2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_2.yml deleted file mode 100644 index 531972a122f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_epl-1.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: (mpl-2.0 OR epl-1.0) AND proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.h2database.com/ - - http://www.h2database.com/html/license.html diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_1.RULE index 589cd2df43c..d355fc84e2c 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_1.RULE @@ -1 +1,6 @@ -This software is distributed under both the MPL2 and GPL2 licenses. You are free to decide which license you wish to use this software under. +--- +license_expression: mpl-2.0 OR gpl-2.0 +is_license_notice: yes +--- + +This software is distributed under both the MPL2 and GPL2 licenses. You are free to decide which license you wish to use this software under. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_1.yml deleted file mode 100644 index bf2126d5189..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mpl-2.0 OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_2.RULE index 9d41a36a7ee..08e4330788f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_2.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-2.0 OR gpl-2.0 +is_license_notice: yes +relevance: 95 +notes: Seen in NSS +--- + Under "MPL/GPL" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_2.yml deleted file mode 100644 index 2e8b6854162..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 OR gpl-2.0 -is_license_notice: yes -relevance: 95 -notes: Seen in NSS diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_3.RULE index 713312033e0..ec8ccad288b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_3.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-2.0 OR gpl-2.0 +is_license_reference: yes +relevance: 95 +notes: Seen in NSS +--- + "MPL/GPL" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_3.yml deleted file mode 100644 index 3d4f4cfc70f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 OR gpl-2.0 -is_license_reference: yes -relevance: 95 -notes: Seen in NSS diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_4.RULE index 22ac21808ed..6c75655c2df 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_4.RULE @@ -1 +1,8 @@ +--- +license_expression: mpl-2.0 OR gpl-2.0 +is_license_reference: yes +relevance: 95 +notes: Seen in NSS +--- + "MPL/GPL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_4.yml deleted file mode 100644 index 3d4f4cfc70f..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mpl-2.0 OR gpl-2.0 -is_license_reference: yes -relevance: 95 -notes: Seen in NSS diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_1.RULE index 84d9a6e2e39..27dbcd82328 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: mpl-2.0 OR gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_1.yml deleted file mode 100644 index a2fee20a1a8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 OR gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_2.RULE index fc8946203a0..6ce0497cd9e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mpl-2.0 OR gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these diff --git a/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_2.yml deleted file mode 100644 index a2fee20a1a8..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_gpl-3.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 OR gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/mpl-2.0_or_mit_1.RULE index 5bee70653f3..bf075a222bb 100644 --- a/src/licensedcode/data/rules/mpl-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 OR mit +is_license_tag: yes +relevance: 100 +--- + license: Mozilla Public License 2.0 (MPL 2.0) or MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_or_mit_1.yml b/src/licensedcode/data/rules/mpl-2.0_or_mit_1.yml deleted file mode 100644 index 4406d766be4..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 OR mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mpl-2.0_url_1.RULE b/src/licensedcode/data/rules/mpl-2.0_url_1.RULE index d05584c30a6..df059b7999c 100644 --- a/src/licensedcode/data/rules/mpl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpl-2.0 +--- + https://spdx.org/licenses/mpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_url_1.yml b/src/licensedcode/data/rules/mpl-2.0_url_1.yml deleted file mode 100644 index fa9d37e95d0..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpl-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_url_2.RULE b/src/licensedcode/data/rules/mpl-2.0_url_2.RULE index a493a34bb40..f747fbec7b2 100644 --- a/src/licensedcode/data/rules/mpl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mpl-2.0.html +--- + https://spdx.org/licenses/mpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_url_2.yml b/src/licensedcode/data/rules/mpl-2.0_url_2.yml deleted file mode 100644 index a8242cb6d31..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mpl-2.0.html diff --git a/src/licensedcode/data/rules/mpl-2.0_url_badge.RULE b/src/licensedcode/data/rules/mpl-2.0_url_badge.RULE index 6da55e154a9..0234458fa23 100644 --- a/src/licensedcode/data/rules/mpl-2.0_url_badge.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg + - https://opensource.org/licenses/MPL-2.0 +--- + [![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_url_badge.yml b/src/licensedcode/data/rules/mpl-2.0_url_badge.yml deleted file mode 100644 index cb2dba5e198..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg - - https://opensource.org/licenses/MPL-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_url_glc_98.RULE b/src/licensedcode/data/rules/mpl-2.0_url_glc_98.RULE index 233b7519e32..c556d6c75e1 100644 --- a/src/licensedcode/data/rules/mpl-2.0_url_glc_98.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_url_glc_98.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/mpl-2.0 +--- + http://opensource.org/licenses/mpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_url_glc_98.yml b/src/licensedcode/data/rules/mpl-2.0_url_glc_98.yml deleted file mode 100644 index 9c54b1d4eca..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_url_glc_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mpl-2.0 diff --git a/src/licensedcode/data/rules/mpl-2.0_url_glc_99.RULE b/src/licensedcode/data/rules/mpl-2.0_url_glc_99.RULE index 8b1bad743ed..13ac6457ec1 100644 --- a/src/licensedcode/data/rules/mpl-2.0_url_glc_99.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_url_glc_99.RULE @@ -1 +1,9 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/mpl-2.0 +--- + https://opensource.org/licenses/mpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_url_glc_99.yml b/src/licensedcode/data/rules/mpl-2.0_url_glc_99.yml deleted file mode 100644 index 382422fb7b2..00000000000 --- a/src/licensedcode/data/rules/mpl-2.0_url_glc_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/mpl-2.0 diff --git a/src/licensedcode/data/rules/mplus.RULE b/src/licensedcode/data/rules/mplus.RULE index 53642090595..6ca350de538 100644 --- a/src/licensedcode/data/rules/mplus.RULE +++ b/src/licensedcode/data/rules/mplus.RULE @@ -1,4 +1,9 @@ +--- +license_expression: m-plus +is_license_text: yes +--- + These fonts are free softwares. Unlimited permission is granted to use, copy, and distribute it, with or without modification, either commercially and noncommercially. -THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. +THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mplus.yml b/src/licensedcode/data/rules/mplus.yml deleted file mode 100644 index 85b50b5aa23..00000000000 --- a/src/licensedcode/data/rules/mplus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: m-plus -is_license_text: yes - diff --git a/src/licensedcode/data/rules/ms-asp-net-software_1.RULE b/src/licensedcode/data/rules/ms-asp-net-software_1.RULE index ab8e3bb0f61..e6740074eaa 100644 --- a/src/licensedcode/data/rules/ms-asp-net-software_1.RULE +++ b/src/licensedcode/data/rules/ms-asp-net-software_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-asp-net-software +is_license_reference: yes +relevance: 70 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_TRK.htm +--- + http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_TRK.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-asp-net-software_1.yml b/src/licensedcode/data/rules/ms-asp-net-software_1.yml deleted file mode 100644 index e7611a0a1a0..00000000000 --- a/src/licensedcode/data/rules/ms-asp-net-software_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-asp-net-software -is_license_reference: yes -relevance: 70 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_TRK.htm diff --git a/src/licensedcode/data/rules/ms-asp-net-software_2.RULE b/src/licensedcode/data/rules/ms-asp-net-software_2.RULE index c41f6265693..49d25272136 100644 --- a/src/licensedcode/data/rules/ms-asp-net-software_2.RULE +++ b/src/licensedcode/data/rules/ms-asp-net-software_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-asp-net-software +is_license_reference: yes +relevance: 70 +ignorable_urls: + - https://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_JPN.htm +--- + https://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_JPN.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-asp-net-software_2.yml b/src/licensedcode/data/rules/ms-asp-net-software_2.yml deleted file mode 100644 index 3bc078c9e04..00000000000 --- a/src/licensedcode/data/rules/ms-asp-net-software_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-asp-net-software -is_license_reference: yes -relevance: 70 -ignorable_urls: - - https://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_JPN.htm diff --git a/src/licensedcode/data/rules/ms-asp-net-software_3.RULE b/src/licensedcode/data/rules/ms-asp-net-software_3.RULE index ad457c91bf6..c36865bdf25 100644 --- a/src/licensedcode/data/rules/ms-asp-net-software_3.RULE +++ b/src/licensedcode/data/rules/ms-asp-net-software_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-asp-net-software +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm +--- + http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-asp-net-software_3.yml b/src/licensedcode/data/rules/ms-asp-net-software_3.yml deleted file mode 100644 index 7654c8a445b..00000000000 --- a/src/licensedcode/data/rules/ms-asp-net-software_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-asp-net-software -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm diff --git a/src/licensedcode/data/rules/ms-asp-net-software_4.RULE b/src/licensedcode/data/rules/ms-asp-net-software_4.RULE index c0796e9197b..abc4739d7f8 100644 --- a/src/licensedcode/data/rules/ms-asp-net-software_4.RULE +++ b/src/licensedcode/data/rules/ms-asp-net-software_4.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-asp-net-software +is_license_reference: yes +relevance: 70 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_csy.htm +--- + http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_csy.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-asp-net-software_4.yml b/src/licensedcode/data/rules/ms-asp-net-software_4.yml deleted file mode 100644 index c1d61850bcf..00000000000 --- a/src/licensedcode/data/rules/ms-asp-net-software_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-asp-net-software -is_license_reference: yes -relevance: 70 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_csy.htm diff --git a/src/licensedcode/data/rules/ms-asp-net-software_5.RULE b/src/licensedcode/data/rules/ms-asp-net-software_5.RULE index cea9f5b8532..72bae3c82a2 100644 --- a/src/licensedcode/data/rules/ms-asp-net-software_5.RULE +++ b/src/licensedcode/data/rules/ms-asp-net-software_5.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-asp-net-software +is_license_reference: yes +relevance: 70 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_JPN.htm +--- + http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_JPN.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-asp-net-software_5.yml b/src/licensedcode/data/rules/ms-asp-net-software_5.yml deleted file mode 100644 index c5fed190101..00000000000 --- a/src/licensedcode/data/rules/ms-asp-net-software_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-asp-net-software -is_license_reference: yes -relevance: 70 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_JPN.htm diff --git a/src/licensedcode/data/rules/ms-developer-services-agreement-2018-06_1.RULE b/src/licensedcode/data/rules/ms-developer-services-agreement-2018-06_1.RULE index cea0134d9d1..5dcfaf56b02 100644 --- a/src/licensedcode/data/rules/ms-developer-services-agreement-2018-06_1.RULE +++ b/src/licensedcode/data/rules/ms-developer-services-agreement-2018-06_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-developer-services-agreement-2018-06 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://msdn.microsoft.com/en-US/cc300389 +--- + http://msdn.microsoft.com/en-US/cc300389 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-developer-services-agreement-2018-06_1.yml b/src/licensedcode/data/rules/ms-developer-services-agreement-2018-06_1.yml deleted file mode 100644 index 622b4f7013f..00000000000 --- a/src/licensedcode/data/rules/ms-developer-services-agreement-2018-06_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-developer-services-agreement-2018-06 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://msdn.microsoft.com/en-US/cc300389 diff --git a/src/licensedcode/data/rules/ms-developer-services-agreement.RULE b/src/licensedcode/data/rules/ms-developer-services-agreement.RULE index e0bcaa66c6d..3fbe7aa23e6 100644 --- a/src/licensedcode/data/rules/ms-developer-services-agreement.RULE +++ b/src/licensedcode/data/rules/ms-developer-services-agreement.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ms-developer-services-agreement +is_license_notice: yes +relevance: 80 +minimum_coverage: 70 +ignorable_urls: + - http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL +--- + likely to be covered by the MLPL as found at: . -For use only on Windows operating systems. +For use only on Windows operating systems. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-developer-services-agreement.yml b/src/licensedcode/data/rules/ms-developer-services-agreement.yml deleted file mode 100644 index d40e47de067..00000000000 --- a/src/licensedcode/data/rules/ms-developer-services-agreement.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-developer-services-agreement -is_license_notice: yes -relevance: 80 -minimum_coverage: 70 -ignorable_urls: - - http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL diff --git a/src/licensedcode/data/rules/ms-developer-services-agreement2.RULE b/src/licensedcode/data/rules/ms-developer-services-agreement2.RULE index 68bc329edc5..56a8fc9115c 100644 --- a/src/licensedcode/data/rules/ms-developer-services-agreement2.RULE +++ b/src/licensedcode/data/rules/ms-developer-services-agreement2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ms-developer-services-agreement +is_license_notice: yes +relevance: 80 +minimum_coverage: 70 +ignorable_urls: + - http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL +--- + and released under the MLPL as found at: . -For use only on Windows operating systems. +For use only on Windows operating systems. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-developer-services-agreement2.yml b/src/licensedcode/data/rules/ms-developer-services-agreement2.yml deleted file mode 100644 index d40e47de067..00000000000 --- a/src/licensedcode/data/rules/ms-developer-services-agreement2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-developer-services-agreement -is_license_notice: yes -relevance: 80 -minimum_coverage: 70 -ignorable_urls: - - http://msdn.microsoft.com/en-us/cc300389.aspx#MLPL diff --git a/src/licensedcode/data/rules/ms-eula-notice.RULE b/src/licensedcode/data/rules/ms-eula-notice.RULE index 914a3ddce9b..f5cfd6b6ecf 100644 --- a/src/licensedcode/data/rules/ms-eula-notice.RULE +++ b/src/licensedcode/data/rules/ms-eula-notice.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Use of this source code is subject to the terms of the Microsoft end-user license agreement (EULA) under which you licensed this SOFTWARE PRODUCT. If you did not accept the terms of the EULA, you are not authorized to use diff --git a/src/licensedcode/data/rules/ms-eula-notice.yml b/src/licensedcode/data/rules/ms-eula-notice.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/ms-eula-notice.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ms-invisible-eula-1.0.RULE b/src/licensedcode/data/rules/ms-invisible-eula-1.0.RULE index 3a1b13c7034..3c1d1ee3611 100644 --- a/src/licensedcode/data/rules/ms-invisible-eula-1.0.RULE +++ b/src/licensedcode/data/rules/ms-invisible-eula-1.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-invisible-eula-1.0 +is_license_text: yes +--- + MICROSOFT SHARED SOURCE LICENSE Version 1.0 FOR MICROSOFT INVISIBLE COMPUTING This License governs use of the accompanying Software. You can use this Software for any non-commercial purpose, including distributing derivatives. Running your business operations would not be considered non-commercial. diff --git a/src/licensedcode/data/rules/ms-invisible-eula-1.0.yml b/src/licensedcode/data/rules/ms-invisible-eula-1.0.yml deleted file mode 100644 index 9c38a24f2b6..00000000000 --- a/src/licensedcode/data/rules/ms-invisible-eula-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-invisible-eula-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-limited-public.RULE b/src/licensedcode/data/rules/ms-limited-public.RULE index 9d0fceb95e1..c78fdad4193 100644 --- a/src/licensedcode/data/rules/ms-limited-public.RULE +++ b/src/licensedcode/data/rules/ms-limited-public.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-lpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://msdn.microsoft.com/en-us/cc300389.aspx#P +--- + http://msdn.microsoft.com/en-us/cc300389.aspx#P \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-limited-public.yml b/src/licensedcode/data/rules/ms-limited-public.yml deleted file mode 100644 index a72b09298c2..00000000000 --- a/src/licensedcode/data/rules/ms-limited-public.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-lpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://msdn.microsoft.com/en-us/cc300389.aspx#P diff --git a/src/licensedcode/data/rules/ms-lpl.RULE b/src/licensedcode/data/rules/ms-lpl.RULE index d250af07175..0f4cd7df607 100644 --- a/src/licensedcode/data/rules/ms-lpl.RULE +++ b/src/licensedcode/data/rules/ms-lpl.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-lpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx +--- + http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-lpl.yml b/src/licensedcode/data/rules/ms-lpl.yml deleted file mode 100644 index 22fe61120b0..00000000000 --- a/src/licensedcode/data/rules/ms-lpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-lpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/resources/sharedsource/licensingbasics/limitedpermissivelicense.mspx diff --git a/src/licensedcode/data/rules/ms-lpl2.RULE b/src/licensedcode/data/rules/ms-lpl2.RULE index 2dda3e35b39..5fb0db2ffec 100644 --- a/src/licensedcode/data/rules/ms-lpl2.RULE +++ b/src/licensedcode/data/rules/ms-lpl2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-lpl +is_license_text: yes +--- + Microsoft Limited Public License (Ms-LPL) This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. diff --git a/src/licensedcode/data/rules/ms-lpl2.yml b/src/licensedcode/data/rules/ms-lpl2.yml deleted file mode 100644 index 2e3fee6e2bb..00000000000 --- a/src/licensedcode/data/rules/ms-lpl2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-lpl -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-lpl_1.RULE b/src/licensedcode/data/rules/ms-lpl_1.RULE index 5ca0c9f55a6..4f70d2b54b8 100644 --- a/src/licensedcode/data/rules/ms-lpl_1.RULE +++ b/src/licensedcode/data/rules/ms-lpl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-lpl +is_license_reference: yes +relevance: 100 +--- + Microsoft Limited Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-lpl_1.yml b/src/licensedcode/data/rules/ms-lpl_1.yml deleted file mode 100644 index 4c07bf5b644..00000000000 --- a/src/licensedcode/data/rules/ms-lpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-lpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-lpl_2.RULE b/src/licensedcode/data/rules/ms-lpl_2.RULE index 01102498bb9..db330f5cb19 100644 --- a/src/licensedcode/data/rules/ms-lpl_2.RULE +++ b/src/licensedcode/data/rules/ms-lpl_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ms-lpl +is_license_text: yes +relevance: 100 +--- + Microsoft Limited Public License (Ms-LPL) Published: October 12, 2006 diff --git a/src/licensedcode/data/rules/ms-lpl_2.yml b/src/licensedcode/data/rules/ms-lpl_2.yml deleted file mode 100644 index 3c13520700e..00000000000 --- a/src/licensedcode/data/rules/ms-lpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-lpl -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-net-framework-4-supplemental-terms.RULE b/src/licensedcode/data/rules/ms-net-framework-4-supplemental-terms.RULE index fcba6ce313c..6c685e38926 100644 --- a/src/licensedcode/data/rules/ms-net-framework-4-supplemental-terms.RULE +++ b/src/licensedcode/data/rules/ms-net-framework-4-supplemental-terms.RULE @@ -1 +1,9 @@ -www.support.microsoft.com/common/international.aspx +--- +license_expression: ms-net-framework-4-supplemental-terms +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.support.microsoft.com/common/international.aspx +--- + +www.support.microsoft.com/common/international.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-framework-4-supplemental-terms.yml b/src/licensedcode/data/rules/ms-net-framework-4-supplemental-terms.yml deleted file mode 100644 index f51905184fd..00000000000 --- a/src/licensedcode/data/rules/ms-net-framework-4-supplemental-terms.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-net-framework-4-supplemental-terms -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.support.microsoft.com/common/international.aspx diff --git a/src/licensedcode/data/rules/ms-net-library-2018-11_1.RULE b/src/licensedcode/data/rules/ms-net-library-2018-11_1.RULE index 860f5c1c325..63bf55f3b9a 100644 --- a/src/licensedcode/data/rules/ms-net-library-2018-11_1.RULE +++ b/src/licensedcode/data/rules/ms-net-library-2018-11_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ms-net-library-2018-11 +is_license_text: yes +ignorable_urls: + - http://go.microsoft.com/?linkid=9840733 + - http://www.microsoft.com/exporting + - https://go.microsoft.com/fwlink/?LinkID=824704 +--- + MICROSOFT .NET LIBRARY These license terms are an agreement between Microsoft Corporation @@ -107,6 +116,4 @@ Elle s'applique également, même si Microsoft connaissait ou devrait connaître -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d'autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. - - +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d'autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library-2018-11_1.yml b/src/licensedcode/data/rules/ms-net-library-2018-11_1.yml deleted file mode 100644 index c40afd29a3d..00000000000 --- a/src/licensedcode/data/rules/ms-net-library-2018-11_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-net-library-2018-11 -is_license_text: yes -ignorable_urls: - - http://go.microsoft.com/?linkid=9840733 - - http://www.microsoft.com/exporting - - https://go.microsoft.com/fwlink/?LinkID=824704 diff --git a/src/licensedcode/data/rules/ms-net-library-2018-11_2.RULE b/src/licensedcode/data/rules/ms-net-library-2018-11_2.RULE index e582c284eae..337dbe8d805 100644 --- a/src/licensedcode/data/rules/ms-net-library-2018-11_2.RULE +++ b/src/licensedcode/data/rules/ms-net-library-2018-11_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-net-library-2018-11 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://dotnet.microsoft.com/dotnet_library_license.htm +--- + https://dotnet.microsoft.com/dotnet_library_license.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library-2018-11_2.yml b/src/licensedcode/data/rules/ms-net-library-2018-11_2.yml deleted file mode 100644 index 3e3f52c7aa3..00000000000 --- a/src/licensedcode/data/rules/ms-net-library-2018-11_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-net-library-2018-11 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://dotnet.microsoft.com/dotnet_library_license.htm diff --git a/src/licensedcode/data/rules/ms-net-library-2018-11_3.RULE b/src/licensedcode/data/rules/ms-net-library-2018-11_3.RULE index 80f8ae6470d..38f33028116 100644 --- a/src/licensedcode/data/rules/ms-net-library-2018-11_3.RULE +++ b/src/licensedcode/data/rules/ms-net-library-2018-11_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-net-library-2018-11 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkId=329770 +--- + http://go.microsoft.com/fwlink/?LinkId=329770 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library-2018-11_3.yml b/src/licensedcode/data/rules/ms-net-library-2018-11_3.yml deleted file mode 100644 index 83b18d3a806..00000000000 --- a/src/licensedcode/data/rules/ms-net-library-2018-11_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-net-library-2018-11 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkId=329770 diff --git a/src/licensedcode/data/rules/ms-net-library-2019-06_1.RULE b/src/licensedcode/data/rules/ms-net-library-2019-06_1.RULE index f58c4f0a406..2fa6df009d2 100644 --- a/src/licensedcode/data/rules/ms-net-library-2019-06_1.RULE +++ b/src/licensedcode/data/rules/ms-net-library-2019-06_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-net-library-2019-06 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm +--- + https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library-2019-06_1.yml b/src/licensedcode/data/rules/ms-net-library-2019-06_1.yml deleted file mode 100644 index 7b2b05e1d56..00000000000 --- a/src/licensedcode/data/rules/ms-net-library-2019-06_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-net-library-2019-06 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm diff --git a/src/licensedcode/data/rules/ms-net-library-2020-09_1.RULE b/src/licensedcode/data/rules/ms-net-library-2020-09_1.RULE index e4d62e5de09..1a2d856e001 100644 --- a/src/licensedcode/data/rules/ms-net-library-2020-09_1.RULE +++ b/src/licensedcode/data/rules/ms-net-library-2020-09_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-net-library-2020-09 +is_license_reference: yes +relevance: 99 +notes: exact license text at this URL has changed over time +ignorable_urls: + - https://dotnet.microsoft.com/en-us/dotnet_library_license.htm +--- + https://dotnet.microsoft.com/en-us/dotnet_library_license.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library-2020-09_1.yml b/src/licensedcode/data/rules/ms-net-library-2020-09_1.yml deleted file mode 100644 index b98ed38b821..00000000000 --- a/src/licensedcode/data/rules/ms-net-library-2020-09_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-net-library-2020-09 -is_license_reference: yes -relevance: 99 -notes: exact license text at this URL has changed over time -ignorable_urls: - - https://dotnet.microsoft.com/en-us/dotnet_library_license.htm diff --git a/src/licensedcode/data/rules/ms-net-library_1.RULE b/src/licensedcode/data/rules/ms-net-library_1.RULE index 7c355ab6b0b..ed085cf53cc 100644 --- a/src/licensedcode/data/rules/ms-net-library_1.RULE +++ b/src/licensedcode/data/rules/ms-net-library_1.RULE @@ -1 +1,9 @@ -http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +--- +license_expression: ms-net-library +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +--- + +http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library_1.yml b/src/licensedcode/data/rules/ms-net-library_1.yml deleted file mode 100644 index 8d175351ce1..00000000000 --- a/src/licensedcode/data/rules/ms-net-library_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-net-library -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm diff --git a/src/licensedcode/data/rules/ms-net-library_2.RULE b/src/licensedcode/data/rules/ms-net-library_2.RULE index 4718e515a62..c9eecfbd3a0 100644 --- a/src/licensedcode/data/rules/ms-net-library_2.RULE +++ b/src/licensedcode/data/rules/ms-net-library_2.RULE @@ -1 +1,9 @@ -https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +--- +license_expression: ms-net-library +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm +--- + +https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library_2.yml b/src/licensedcode/data/rules/ms-net-library_2.yml deleted file mode 100644 index d4be4f1e7b2..00000000000 --- a/src/licensedcode/data/rules/ms-net-library_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-net-library -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm diff --git a/src/licensedcode/data/rules/ms-net-library_3.RULE b/src/licensedcode/data/rules/ms-net-library_3.RULE index c48e49c0fb7..7270dcf07e3 100644 --- a/src/licensedcode/data/rules/ms-net-library_3.RULE +++ b/src/licensedcode/data/rules/ms-net-library_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ms-net-library +is_license_text: yes +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT .NET LIBRARY These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft @@ -115,4 +122,4 @@ Cette limitation concerne : Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. -EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library_3.yml b/src/licensedcode/data/rules/ms-net-library_3.yml deleted file mode 100644 index f5bc4f5bfed..00000000000 --- a/src/licensedcode/data/rules/ms-net-library_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-net-library -is_license_text: yes -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/rules/ms-net-library_4_old.RULE b/src/licensedcode/data/rules/ms-net-library_4_old.RULE index 92a90c85938..beb0cb811ea 100644 --- a/src/licensedcode/data/rules/ms-net-library_4_old.RULE +++ b/src/licensedcode/data/rules/ms-net-library_4_old.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ms-net-library +is_license_text: yes +ignorable_urls: + - http://www.microsoft.com/exporting +--- + MICROSOFT .NET LIBRARY These license terms are an agreement between Microsoft Corporation diff --git a/src/licensedcode/data/rules/ms-net-library_4_old.yml b/src/licensedcode/data/rules/ms-net-library_4_old.yml deleted file mode 100644 index f5bc4f5bfed..00000000000 --- a/src/licensedcode/data/rules/ms-net-library_4_old.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-net-library -is_license_text: yes -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/rules/ms-net-library_5.RULE b/src/licensedcode/data/rules/ms-net-library_5.RULE index d4a84dd4daa..f04490ab115 100644 --- a/src/licensedcode/data/rules/ms-net-library_5.RULE +++ b/src/licensedcode/data/rules/ms-net-library_5.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-net-library +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=320539 +--- + http://go.microsoft.com/fwlink/?LinkID=320539 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library_5.yml b/src/licensedcode/data/rules/ms-net-library_5.yml deleted file mode 100644 index ac942c81491..00000000000 --- a/src/licensedcode/data/rules/ms-net-library_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-net-library -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=320539 diff --git a/src/licensedcode/data/rules/ms-net-library_6.RULE b/src/licensedcode/data/rules/ms-net-library_6.RULE index f83e1314c56..84e17984214 100644 --- a/src/licensedcode/data/rules/ms-net-library_6.RULE +++ b/src/licensedcode/data/rules/ms-net-library_6.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-net-library +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=320539 +--- + http://go.microsoft.com/fwlink/?LinkID=320539 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-net-library_6.yml b/src/licensedcode/data/rules/ms-net-library_6.yml deleted file mode 100644 index ac942c81491..00000000000 --- a/src/licensedcode/data/rules/ms-net-library_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-net-library -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=320539 diff --git a/src/licensedcode/data/rules/ms-nuget_1.RULE b/src/licensedcode/data/rules/ms-nuget_1.RULE index 596768a902a..57b3e36d0b4 100644 --- a/src/licensedcode/data/rules/ms-nuget_1.RULE +++ b/src/licensedcode/data/rules/ms-nuget_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-nuget +is_license_text: yes +--- + NUGET: BEGIN LICENSE TEXT Microsoft grants you the right to use these script files for the sole @@ -9,4 +14,4 @@ files not expressly granted by Microsoft, whether by implication, estoppel or otherwise. Insofar as a script file is dual licensed under GPL, Microsoft neither took the code under GPL nor distributes it thereunder but under the terms set out in this paragraph. All notices and licenses -below are for informational purposes only. +below are for informational purposes only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-nuget_1.yml b/src/licensedcode/data/rules/ms-nuget_1.yml deleted file mode 100644 index d6e977600ec..00000000000 --- a/src/licensedcode/data/rules/ms-nuget_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-nuget -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-nuget_2.RULE b/src/licensedcode/data/rules/ms-nuget_2.RULE index 67d73728896..77d5e3976b9 100644 --- a/src/licensedcode/data/rules/ms-nuget_2.RULE +++ b/src/licensedcode/data/rules/ms-nuget_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-nuget +is_license_text: yes +--- + Microsoft grants you the right to use these script files for the sole purpose of either: (i) interacting through your browser with the Microsoft website or online service, subject to the applicable licensing or use @@ -7,5 +12,4 @@ or otherwise. Insofar as a script file is dual licensed under GPL, Microsoft neither took the code under GPL nor distributes it thereunder but under the terms set out in this paragraph. All notices and licenses - below are for informational purposes only. - + below are for informational purposes only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-nuget_2.yml b/src/licensedcode/data/rules/ms-nuget_2.yml deleted file mode 100644 index d6e977600ec..00000000000 --- a/src/licensedcode/data/rules/ms-nuget_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-nuget -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-nuget_3.RULE b/src/licensedcode/data/rules/ms-nuget_3.RULE index fe927b00991..cb1f0cc164a 100644 --- a/src/licensedcode/data/rules/ms-nuget_3.RULE +++ b/src/licensedcode/data/rules/ms-nuget_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-nuget +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm +--- + http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-nuget_3.yml b/src/licensedcode/data/rules/ms-nuget_3.yml deleted file mode 100644 index f464accb3a8..00000000000 --- a/src/licensedcode/data/rules/ms-nuget_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-nuget -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm diff --git a/src/licensedcode/data/rules/ms-nuget_4.RULE b/src/licensedcode/data/rules/ms-nuget_4.RULE index 9d2f9e062ae..76c37673a99 100644 --- a/src/licensedcode/data/rules/ms-nuget_4.RULE +++ b/src/licensedcode/data/rules/ms-nuget_4.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-nuget +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm +--- + https://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-nuget_4.yml b/src/licensedcode/data/rules/ms-nuget_4.yml deleted file mode 100644 index ce820a254d8..00000000000 --- a/src/licensedcode/data/rules/ms-nuget_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-nuget -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.microsoft.com/web/webpi/eula/nuget_release_eula.htm diff --git a/src/licensedcode/data/rules/ms-nuget_and_mit_1.RULE b/src/licensedcode/data/rules/ms-nuget_and_mit_1.RULE index 15b9af13245..09f5a0c4049 100644 --- a/src/licensedcode/data/rules/ms-nuget_and_mit_1.RULE +++ b/src/licensedcode/data/rules/ms-nuget_and_mit_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ms-nuget AND mit AND mit +is_license_notice: yes +minimum_coverage: 93 +ignorable_urls: + - http://jquery.org/license + - http://opensource.org/licenses/MIT +--- + NUGET: BEGIN LICENSE TEXT Microsoft grants you the right to use these script files for the sole @@ -15,4 +24,4 @@ http://opensource.org/licenses/MIT NUGET: END LICENSE TEXT */ -! jquery.org/license +! jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-nuget_and_mit_1.yml b/src/licensedcode/data/rules/ms-nuget_and_mit_1.yml deleted file mode 100644 index de910759991..00000000000 --- a/src/licensedcode/data/rules/ms-nuget_and_mit_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-nuget AND mit AND mit -is_license_notice: yes -minimum_coverage: 93 -ignorable_urls: - - http://jquery.org/license - - http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/ms-pl.RULE b/src/licensedcode/data/rules/ms-pl.RULE index 626e6f78228..c3fe1c34544 100644 --- a/src/licensedcode/data/rules/ms-pl.RULE +++ b/src/licensedcode/data/rules/ms-pl.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/opensource/licenses.mspx +--- + http://www.microsoft.com/opensource/licenses.mspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl.SPDX.RULE b/src/licensedcode/data/rules/ms-pl.SPDX.RULE index 6051ad0778d..fa956ea8b30 100644 --- a/src/licensedcode/data/rules/ms-pl.SPDX.RULE +++ b/src/licensedcode/data/rules/ms-pl.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ms-pl +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Microsoft Public License (Ms-PL) diff --git a/src/licensedcode/data/rules/ms-pl.SPDX.yml b/src/licensedcode/data/rules/ms-pl.SPDX.yml deleted file mode 100644 index 2f0e10d34e7..00000000000 --- a/src/licensedcode/data/rules/ms-pl.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-pl -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/ms-pl.yml b/src/licensedcode/data/rules/ms-pl.yml deleted file mode 100644 index 464f299fcf7..00000000000 --- a/src/licensedcode/data/rules/ms-pl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/opensource/licenses.mspx diff --git a/src/licensedcode/data/rules/ms-pl_1.RULE b/src/licensedcode/data/rules/ms-pl_1.RULE index 481f08acfd6..f040ad1f7e0 100644 --- a/src/licensedcode/data/rules/ms-pl_1.RULE +++ b/src/licensedcode/data/rules/ms-pl_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +notes: this URL is no longer active but was once pointing to the Ms-PL license +ignorable_urls: + - http://www.microsoft.com/en-us/openness/licenses.aspx +--- + http://www.microsoft.com/en-us/openness/licenses.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_1.yml b/src/licensedcode/data/rules/ms-pl_1.yml deleted file mode 100644 index d36166de809..00000000000 --- a/src/licensedcode/data/rules/ms-pl_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -notes: this URL is no longer active but was once pointing to the Ms-PL license -ignorable_urls: - - http://www.microsoft.com/en-us/openness/licenses.aspx diff --git a/src/licensedcode/data/rules/ms-pl_10.RULE b/src/licensedcode/data/rules/ms-pl_10.RULE index cb946e31eed..a275fcf9a32 100644 --- a/src/licensedcode/data/rules/ms-pl_10.RULE +++ b/src/licensedcode/data/rules/ms-pl_10.RULE @@ -1 +1,9 @@ -http://opensource.org/licenses/ms-pl.html +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ms-pl.html +--- + +http://opensource.org/licenses/ms-pl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_10.yml b/src/licensedcode/data/rules/ms-pl_10.yml deleted file mode 100644 index e1917ea8d21..00000000000 --- a/src/licensedcode/data/rules/ms-pl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ms-pl.html diff --git a/src/licensedcode/data/rules/ms-pl_11.RULE b/src/licensedcode/data/rules/ms-pl_11.RULE index 9b8ff763709..1b31e5f69c6 100644 --- a/src/licensedcode/data/rules/ms-pl_11.RULE +++ b/src/licensedcode/data/rules/ms-pl_11.RULE @@ -1,7 +1,14 @@ +--- +license_expression: ms-pl +is_license_notice: yes +ignorable_urls: + - http://www.microsoft.com/en-us/openness/licenses.aspx +--- + // This source is subject to the Microsoft Public License. // See http://www.microsoft.com/en-us/openness/licenses.aspx. // All other rights reserved. // // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, // EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED -// WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file +// WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_11.yml b/src/licensedcode/data/rules/ms-pl_11.yml deleted file mode 100644 index f33ba029a5b..00000000000 --- a/src/licensedcode/data/rules/ms-pl_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-pl -is_license_notice: yes -ignorable_urls: - - http://www.microsoft.com/en-us/openness/licenses.aspx diff --git a/src/licensedcode/data/rules/ms-pl_12.RULE b/src/licensedcode/data/rules/ms-pl_12.RULE index 5f0b947da44..6535f20dc3c 100644 --- a/src/licensedcode/data/rules/ms-pl_12.RULE +++ b/src/licensedcode/data/rules/ms-pl_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ms-pl +is_license_notice: yes +ignorable_urls: + - http://shfb.codeplex.com/ +--- + // This code is published under the Microsoft Public License (Ms-PL). A copy // of the license should be distributed with the code. It can also be found // at the project website: http://SHFB.CodePlex.com. This notice, the diff --git a/src/licensedcode/data/rules/ms-pl_12.yml b/src/licensedcode/data/rules/ms-pl_12.yml deleted file mode 100644 index def3c78f4aa..00000000000 --- a/src/licensedcode/data/rules/ms-pl_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-pl -is_license_notice: yes -ignorable_urls: - - http://shfb.codeplex.com/ diff --git a/src/licensedcode/data/rules/ms-pl_13.RULE b/src/licensedcode/data/rules/ms-pl_13.RULE index a4ada473050..f7acc6fbf83 100644 --- a/src/licensedcode/data/rules/ms-pl_13.RULE +++ b/src/licensedcode/data/rules/ms-pl_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-pl +is_license_notice: yes +--- + // This code is published under the Microsoft Public License (Ms-PL). A copy // of the license should be distributed with the code. It can also be found // at the project website: . This notice, the diff --git a/src/licensedcode/data/rules/ms-pl_13.yml b/src/licensedcode/data/rules/ms-pl_13.yml deleted file mode 100644 index d53aa5fc331..00000000000 --- a/src/licensedcode/data/rules/ms-pl_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-pl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ms-pl_14.RULE b/src/licensedcode/data/rules/ms-pl_14.RULE index 7078d6335fb..90292140205 100644 --- a/src/licensedcode/data/rules/ms-pl_14.RULE +++ b/src/licensedcode/data/rules/ms-pl_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-pl +is_license_text: yes +--- + Microsoft Permissive License (Ms-PL) v1.1 Microsoft Permissive License (Ms-PL) diff --git a/src/licensedcode/data/rules/ms-pl_14.yml b/src/licensedcode/data/rules/ms-pl_14.yml deleted file mode 100644 index d33d029d537..00000000000 --- a/src/licensedcode/data/rules/ms-pl_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-pl -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-pl_15.RULE b/src/licensedcode/data/rules/ms-pl_15.RULE index e1653cdbd6a..93527fdcd81 100644 --- a/src/licensedcode/data/rules/ms-pl_15.RULE +++ b/src/licensedcode/data/rules/ms-pl_15.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/mono/MonoGame/blob/develop/LICENSE.txt#L2 +--- + https://github.com/mono/MonoGame/blob/develop/LICENSE.txt#L2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_15.yml b/src/licensedcode/data/rules/ms-pl_15.yml deleted file mode 100644 index 5783cae6d7f..00000000000 --- a/src/licensedcode/data/rules/ms-pl_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/mono/MonoGame/blob/develop/LICENSE.txt#L2 diff --git a/src/licensedcode/data/rules/ms-pl_16.RULE b/src/licensedcode/data/rules/ms-pl_16.RULE index 8c0f441a02e..c29422fd5b9 100644 --- a/src/licensedcode/data/rules/ms-pl_16.RULE +++ b/src/licensedcode/data/rules/ms-pl_16.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/mono/MonoGame/blob/develop/LICENSE.txt +--- + https://github.com/mono/MonoGame/blob/develop/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_16.yml b/src/licensedcode/data/rules/ms-pl_16.yml deleted file mode 100644 index fed645193d7..00000000000 --- a/src/licensedcode/data/rules/ms-pl_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/mono/MonoGame/blob/develop/LICENSE.txt diff --git a/src/licensedcode/data/rules/ms-pl_17.RULE b/src/licensedcode/data/rules/ms-pl_17.RULE index 9fb613d5af1..a2c810256b7 100644 --- a/src/licensedcode/data/rules/ms-pl_17.RULE +++ b/src/licensedcode/data/rules/ms-pl_17.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://entlibcontrib.codeplex.com/license +--- + https://entlibcontrib.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_17.yml b/src/licensedcode/data/rules/ms-pl_17.yml deleted file mode 100644 index a74aa929c96..00000000000 --- a/src/licensedcode/data/rules/ms-pl_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://entlibcontrib.codeplex.com/license diff --git a/src/licensedcode/data/rules/ms-pl_18.RULE b/src/licensedcode/data/rules/ms-pl_18.RULE index aa8e362312c..cb348446b2c 100644 --- a/src/licensedcode/data/rules/ms-pl_18.RULE +++ b/src/licensedcode/data/rules/ms-pl_18.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://entlibcontrib.codeplex.com/license +--- + http://entlibcontrib.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_18.yml b/src/licensedcode/data/rules/ms-pl_18.yml deleted file mode 100644 index 8fe6ba38dce..00000000000 --- a/src/licensedcode/data/rules/ms-pl_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://entlibcontrib.codeplex.com/license diff --git a/src/licensedcode/data/rules/ms-pl_19.RULE b/src/licensedcode/data/rules/ms-pl_19.RULE index d6667d1f33a..17ed4ccf0c7 100644 --- a/src/licensedcode/data/rules/ms-pl_19.RULE +++ b/src/licensedcode/data/rules/ms-pl_19.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://sparrowtoolkit.codeplex.com/license +--- + https://sparrowtoolkit.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_19.yml b/src/licensedcode/data/rules/ms-pl_19.yml deleted file mode 100644 index 75cf2a64254..00000000000 --- a/src/licensedcode/data/rules/ms-pl_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://sparrowtoolkit.codeplex.com/license diff --git a/src/licensedcode/data/rules/ms-pl_2.RULE b/src/licensedcode/data/rules/ms-pl_2.RULE index 29734c62dde..2be3d3494b9 100644 --- a/src/licensedcode/data/rules/ms-pl_2.RULE +++ b/src/licensedcode/data/rules/ms-pl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ms-pl.html +--- + http://www.opensource.org/licenses/ms-pl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_2.yml b/src/licensedcode/data/rules/ms-pl_2.yml deleted file mode 100644 index 1b32bd1c15c..00000000000 --- a/src/licensedcode/data/rules/ms-pl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ms-pl.html diff --git a/src/licensedcode/data/rules/ms-pl_20.RULE b/src/licensedcode/data/rules/ms-pl_20.RULE index 46eecfa5e68..3d937b0edd1 100644 --- a/src/licensedcode/data/rules/ms-pl_20.RULE +++ b/src/licensedcode/data/rules/ms-pl_20.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://wp7contrib.codeplex.com/license +--- + http://wp7contrib.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_20.yml b/src/licensedcode/data/rules/ms-pl_20.yml deleted file mode 100644 index 13cba77bb01..00000000000 --- a/src/licensedcode/data/rules/ms-pl_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://wp7contrib.codeplex.com/license diff --git a/src/licensedcode/data/rules/ms-pl_21.RULE b/src/licensedcode/data/rules/ms-pl_21.RULE index 81562e76130..6a9d236f01b 100644 --- a/src/licensedcode/data/rules/ms-pl_21.RULE +++ b/src/licensedcode/data/rules/ms-pl_21.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://xvalwebforms.codeplex.com/license +--- + http://xvalwebforms.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_21.yml b/src/licensedcode/data/rules/ms-pl_21.yml deleted file mode 100644 index ef692ada2f9..00000000000 --- a/src/licensedcode/data/rules/ms-pl_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://xvalwebforms.codeplex.com/license diff --git a/src/licensedcode/data/rules/ms-pl_22.RULE b/src/licensedcode/data/rules/ms-pl_22.RULE index cf947205a39..44be875a4f4 100644 --- a/src/licensedcode/data/rules/ms-pl_22.RULE +++ b/src/licensedcode/data/rules/ms-pl_22.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://reactiveproperty.codeplex.com/license +--- + http://reactiveproperty.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_22.yml b/src/licensedcode/data/rules/ms-pl_22.yml deleted file mode 100644 index c0a2cd6abf5..00000000000 --- a/src/licensedcode/data/rules/ms-pl_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://reactiveproperty.codeplex.com/license diff --git a/src/licensedcode/data/rules/ms-pl_23.RULE b/src/licensedcode/data/rules/ms-pl_23.RULE index 6c243736dc1..3f1e5106278 100644 --- a/src/licensedcode/data/rules/ms-pl_23.RULE +++ b/src/licensedcode/data/rules/ms-pl_23.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://fastreflection.codeplex.com/license +--- + https://fastreflection.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_23.yml b/src/licensedcode/data/rules/ms-pl_23.yml deleted file mode 100644 index 61ba6bbac3c..00000000000 --- a/src/licensedcode/data/rules/ms-pl_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://fastreflection.codeplex.com/license diff --git a/src/licensedcode/data/rules/ms-pl_24.RULE b/src/licensedcode/data/rules/ms-pl_24.RULE index 40df194f868..182d8deede3 100644 --- a/src/licensedcode/data/rules/ms-pl_24.RULE +++ b/src/licensedcode/data/rules/ms-pl_24.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/ms-pl +--- + https://choosealicense.com/licenses/ms-pl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_24.yml b/src/licensedcode/data/rules/ms-pl_24.yml deleted file mode 100644 index e64f69aad66..00000000000 --- a/src/licensedcode/data/rules/ms-pl_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/ms-pl diff --git a/src/licensedcode/data/rules/ms-pl_25.RULE b/src/licensedcode/data/rules/ms-pl_25.RULE index b3112cf7978..fb52378ff9d 100644 --- a/src/licensedcode/data/rules/ms-pl_25.RULE +++ b/src/licensedcode/data/rules/ms-pl_25.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/ms-pl +--- + http://choosealicense.com/licenses/ms-pl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_25.yml b/src/licensedcode/data/rules/ms-pl_25.yml deleted file mode 100644 index 9caa5fbe476..00000000000 --- a/src/licensedcode/data/rules/ms-pl_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/ms-pl diff --git a/src/licensedcode/data/rules/ms-pl_26.RULE b/src/licensedcode/data/rules/ms-pl_26.RULE index a405cc1f65a..6d11a1945cc 100644 --- a/src/licensedcode/data/rules/ms-pl_26.RULE +++ b/src/licensedcode/data/rules/ms-pl_26.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ms-pl +--- + https://www.opensource.org/licenses/ms-pl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_26.yml b/src/licensedcode/data/rules/ms-pl_26.yml deleted file mode 100644 index 91be02f129a..00000000000 --- a/src/licensedcode/data/rules/ms-pl_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ms-pl diff --git a/src/licensedcode/data/rules/ms-pl_27.RULE b/src/licensedcode/data/rules/ms-pl_27.RULE index d5b431e0621..ca789806e91 100644 --- a/src/licensedcode/data/rules/ms-pl_27.RULE +++ b/src/licensedcode/data/rules/ms-pl_27.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ms-pl +--- + http://www.opensource.org/licenses/ms-pl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_27.yml b/src/licensedcode/data/rules/ms-pl_27.yml deleted file mode 100644 index ce5ad87bedc..00000000000 --- a/src/licensedcode/data/rules/ms-pl_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ms-pl diff --git a/src/licensedcode/data/rules/ms-pl_28.RULE b/src/licensedcode/data/rules/ms-pl_28.RULE index 374e91af256..08e2ab68881 100644 --- a/src/licensedcode/data/rules/ms-pl_28.RULE +++ b/src/licensedcode/data/rules/ms-pl_28.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MS-PL +--- + http://opensource.org/licenses/MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_28.yml b/src/licensedcode/data/rules/ms-pl_28.yml deleted file mode 100644 index d74478a0103..00000000000 --- a/src/licensedcode/data/rules/ms-pl_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/MS-PL diff --git a/src/licensedcode/data/rules/ms-pl_29.RULE b/src/licensedcode/data/rules/ms-pl_29.RULE index 000d1df58a2..a05dc1c0c24 100644 --- a/src/licensedcode/data/rules/ms-pl_29.RULE +++ b/src/licensedcode/data/rules/ms-pl_29.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/MS-PL +--- + https://opensource.org/licenses/MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_29.yml b/src/licensedcode/data/rules/ms-pl_29.yml deleted file mode 100644 index b779e23108f..00000000000 --- a/src/licensedcode/data/rules/ms-pl_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/MS-PL diff --git a/src/licensedcode/data/rules/ms-pl_3.RULE b/src/licensedcode/data/rules/ms-pl_3.RULE index 8b822dee757..0abe1d8d988 100644 --- a/src/licensedcode/data/rules/ms-pl_3.RULE +++ b/src/licensedcode/data/rules/ms-pl_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-pl +is_license_text: yes +--- + Microsoft Permissive License (Ms-PL) This license governs use of the accompanying software. If you use the software, @@ -67,4 +72,4 @@ any claims based solely on the unmodified contributions of that contributor. (G) If you make any additions or changes to the original software, you may only distribute them under a new namespace. In addition, you will clearly identify -your changes or additions as your own. +your changes or additions as your own. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_3.yml b/src/licensedcode/data/rules/ms-pl_3.yml deleted file mode 100644 index d33d029d537..00000000000 --- a/src/licensedcode/data/rules/ms-pl_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-pl -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-pl_30.RULE b/src/licensedcode/data/rules/ms-pl_30.RULE index 42a86169047..32d3b068e2e 100644 --- a/src/licensedcode/data/rules/ms-pl_30.RULE +++ b/src/licensedcode/data/rules/ms-pl_30.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +--- + Microsoft Permissive Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_30.yml b/src/licensedcode/data/rules/ms-pl_30.yml deleted file mode 100644 index f4509bf1cb2..00000000000 --- a/src/licensedcode/data/rules/ms-pl_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_31.RULE b/src/licensedcode/data/rules/ms-pl_31.RULE index 9c924ba37c2..861f99762da 100644 --- a/src/licensedcode/data/rules/ms-pl_31.RULE +++ b/src/licensedcode/data/rules/ms-pl_31.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-pl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Microsoft Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_31.yml b/src/licensedcode/data/rules/ms-pl_31.yml deleted file mode 100644 index 71fc4fb8bfb..00000000000 --- a/src/licensedcode/data/rules/ms-pl_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-pl_32.RULE b/src/licensedcode/data/rules/ms-pl_32.RULE index 517fa25e591..4be71708ae3 100644 --- a/src/licensedcode/data/rules/ms-pl_32.RULE +++ b/src/licensedcode/data/rules/ms-pl_32.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-pl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MS-PL Microsoft Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_32.yml b/src/licensedcode/data/rules/ms-pl_32.yml deleted file mode 100644 index 71fc4fb8bfb..00000000000 --- a/src/licensedcode/data/rules/ms-pl_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-pl_33.RULE b/src/licensedcode/data/rules/ms-pl_33.RULE index 63ed3821254..6eee58c8f41 100644 --- a/src/licensedcode/data/rules/ms-pl_33.RULE +++ b/src/licensedcode/data/rules/ms-pl_33.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-pl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_33.yml b/src/licensedcode/data/rules/ms-pl_33.yml deleted file mode 100644 index 79effacf37a..00000000000 --- a/src/licensedcode/data/rules/ms-pl_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-pl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-pl_34.RULE b/src/licensedcode/data/rules/ms-pl_34.RULE index 6b76feb113f..199d89a6d01 100644 --- a/src/licensedcode/data/rules/ms-pl_34.RULE +++ b/src/licensedcode/data/rules/ms-pl_34.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-pl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Microsoft Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_34.yml b/src/licensedcode/data/rules/ms-pl_34.yml deleted file mode 100644 index 79effacf37a..00000000000 --- a/src/licensedcode/data/rules/ms-pl_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-pl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-pl_35.RULE b/src/licensedcode/data/rules/ms-pl_35.RULE index b131a319b49..a6847fe9bb0 100644 --- a/src/licensedcode/data/rules/ms-pl_35.RULE +++ b/src/licensedcode/data/rules/ms-pl_35.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-pl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_35.yml b/src/licensedcode/data/rules/ms-pl_35.yml deleted file mode 100644 index 79effacf37a..00000000000 --- a/src/licensedcode/data/rules/ms-pl_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-pl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-pl_36.RULE b/src/licensedcode/data/rules/ms-pl_36.RULE index 7cdeef418ce..625caa0e87b 100644 --- a/src/licensedcode/data/rules/ms-pl_36.RULE +++ b/src/licensedcode/data/rules/ms-pl_36.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +--- + Microsoft Permissive License (Ms-PL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_36.yml b/src/licensedcode/data/rules/ms-pl_36.yml deleted file mode 100644 index f4509bf1cb2..00000000000 --- a/src/licensedcode/data/rules/ms-pl_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_37.RULE b/src/licensedcode/data/rules/ms-pl_37.RULE index afc31c161fe..8a536732d2d 100644 --- a/src/licensedcode/data/rules/ms-pl_37.RULE +++ b/src/licensedcode/data/rules/ms-pl_37.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +is_continuous: yes +relevance: 80 +minimum_coverage: 100 +--- + MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_37.yml b/src/licensedcode/data/rules/ms-pl_37.yml deleted file mode 100644 index dfb8123085a..00000000000 --- a/src/licensedcode/data/rules/ms-pl_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -is_continuous: yes -relevance: 80 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ms-pl_38.RULE b/src/licensedcode/data/rules/ms-pl_38.RULE index 387bea41282..f8b851a46b0 100644 --- a/src/licensedcode/data/rules/ms-pl_38.RULE +++ b/src/licensedcode/data/rules/ms-pl_38.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Microsoft_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_38.yml b/src/licensedcode/data/rules/ms-pl_38.yml deleted file mode 100644 index f4509bf1cb2..00000000000 --- a/src/licensedcode/data/rules/ms-pl_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_39.RULE b/src/licensedcode/data/rules/ms-pl_39.RULE index 227b15fe109..7cb4280a1d2 100644 --- a/src/licensedcode/data/rules/ms-pl_39.RULE +++ b/src/licensedcode/data/rules/ms-pl_39.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-pl +is_license_notice: yes +relevance: 100 +--- + licensed under the Microsoft Public License (Ms-PL). See Microsoft Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_39.yml b/src/licensedcode/data/rules/ms-pl_39.yml deleted file mode 100644 index c140dbe046a..00000000000 --- a/src/licensedcode/data/rules/ms-pl_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_4.RULE b/src/licensedcode/data/rules/ms-pl_4.RULE index 9e679dfe716..cf8713e7fa8 100644 --- a/src/licensedcode/data/rules/ms-pl_4.RULE +++ b/src/licensedcode/data/rules/ms-pl_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-pl +is_license_notice: yes +--- + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. 1. Definitions @@ -25,4 +30,4 @@ A "contributor" is any person that distributes its contribution under this licen (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. -(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. +(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_4.yml b/src/licensedcode/data/rules/ms-pl_4.yml deleted file mode 100644 index d53aa5fc331..00000000000 --- a/src/licensedcode/data/rules/ms-pl_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-pl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ms-pl_40.RULE b/src/licensedcode/data/rules/ms-pl_40.RULE index ddac66e8474..25135b66ea1 100644 --- a/src/licensedcode/data/rules/ms-pl_40.RULE +++ b/src/licensedcode/data/rules/ms-pl_40.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MS-PL +--- + https://licenses.nuget.org/MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_40.yml b/src/licensedcode/data/rules/ms-pl_40.yml deleted file mode 100644 index edc8c9b67ae..00000000000 --- a/src/licensedcode/data/rules/ms-pl_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MS-PL diff --git a/src/licensedcode/data/rules/ms-pl_41.RULE b/src/licensedcode/data/rules/ms-pl_41.RULE index ebe76f386a7..e45a963f566 100644 --- a/src/licensedcode/data/rules/ms-pl_41.RULE +++ b/src/licensedcode/data/rules/ms-pl_41.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_41.yml b/src/licensedcode/data/rules/ms-pl_41.yml deleted file mode 100644 index f4509bf1cb2..00000000000 --- a/src/licensedcode/data/rules/ms-pl_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_42.RULE b/src/licensedcode/data/rules/ms-pl_42.RULE index cde1e571b75..ca0afd34f77 100644 --- a/src/licensedcode/data/rules/ms-pl_42.RULE +++ b/src/licensedcode/data/rules/ms-pl_42.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MS-PL +--- + {{MS-PL}} https://spdx.org/licenses/MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_42.yml b/src/licensedcode/data/rules/ms-pl_42.yml deleted file mode 100644 index c57fcc02283..00000000000 --- a/src/licensedcode/data/rules/ms-pl_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MS-PL diff --git a/src/licensedcode/data/rules/ms-pl_43.RULE b/src/licensedcode/data/rules/ms-pl_43.RULE index 58dfdd7974a..513a815408d 100644 --- a/src/licensedcode/data/rules/ms-pl_43.RULE +++ b/src/licensedcode/data/rules/ms-pl_43.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MS-PL +--- + LICENSE {{MS-PL}} https://spdx.org/licenses/MS-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_43.yml b/src/licensedcode/data/rules/ms-pl_43.yml deleted file mode 100644 index c57fcc02283..00000000000 --- a/src/licensedcode/data/rules/ms-pl_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MS-PL diff --git a/src/licensedcode/data/rules/ms-pl_5.RULE b/src/licensedcode/data/rules/ms-pl_5.RULE index a206bc2dc87..b4fa89eab1e 100644 --- a/src/licensedcode/data/rules/ms-pl_5.RULE +++ b/src/licensedcode/data/rules/ms-pl_5.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/opensource/licenses.mspx#Ms-PL +--- + http://www.microsoft.com/opensource/licenses.mspx#Ms-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_5.yml b/src/licensedcode/data/rules/ms-pl_5.yml deleted file mode 100644 index 233b99a890f..00000000000 --- a/src/licensedcode/data/rules/ms-pl_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/opensource/licenses.mspx#Ms-PL diff --git a/src/licensedcode/data/rules/ms-pl_6.RULE b/src/licensedcode/data/rules/ms-pl_6.RULE index 66688e12fa4..da9e88cd86f 100644 --- a/src/licensedcode/data/rules/ms-pl_6.RULE +++ b/src/licensedcode/data/rules/ms-pl_6.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +--- + Microsoft Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_6.yml b/src/licensedcode/data/rules/ms-pl_6.yml deleted file mode 100644 index f4509bf1cb2..00000000000 --- a/src/licensedcode/data/rules/ms-pl_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_7.RULE b/src/licensedcode/data/rules/ms-pl_7.RULE index 5e62caf429a..250efe0e3dd 100644 --- a/src/licensedcode/data/rules/ms-pl_7.RULE +++ b/src/licensedcode/data/rules/ms-pl_7.RULE @@ -1 +1,7 @@ -Microsoft Public License (Ms-PL) +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +--- + +Microsoft Public License (Ms-PL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_7.yml b/src/licensedcode/data/rules/ms-pl_7.yml deleted file mode 100644 index f4509bf1cb2..00000000000 --- a/src/licensedcode/data/rules/ms-pl_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_8.RULE b/src/licensedcode/data/rules/ms-pl_8.RULE index dda6dab38d6..ecf6d15f4f0 100644 --- a/src/licensedcode/data/rules/ms-pl_8.RULE +++ b/src/licensedcode/data/rules/ms-pl_8.RULE @@ -1 +1,7 @@ - Licensed under {{Microsoft Public License (Ms-PL)}} +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 100 +--- + + Licensed under {{Microsoft Public License (Ms-PL)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_8.yml b/src/licensedcode/data/rules/ms-pl_8.yml deleted file mode 100644 index f4509bf1cb2..00000000000 --- a/src/licensedcode/data/rules/ms-pl_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_9.RULE b/src/licensedcode/data/rules/ms-pl_9.RULE index c326d05340b..767860b8e98 100644 --- a/src/licensedcode/data/rules/ms-pl_9.RULE +++ b/src/licensedcode/data/rules/ms-pl_9.RULE @@ -1,7 +1,14 @@ +--- +license_expression: ms-pl +is_license_notice: yes +ignorable_urls: + - http://www.microsoft.com/en-us/openness/resources/licenses.aspx#MPL +--- + ' This source is subject to the Microsoft Public License. ' See http://www.microsoft.com/en-us/openness/resources/licenses.aspx#MPL. ' All other rights reserved. ' ' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, ' EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED -' WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. +' WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_9.yml b/src/licensedcode/data/rules/ms-pl_9.yml deleted file mode 100644 index 7977c6a54c9..00000000000 --- a/src/licensedcode/data/rules/ms-pl_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-pl -is_license_notice: yes -ignorable_urls: - - http://www.microsoft.com/en-us/openness/resources/licenses.aspx#MPL diff --git a/src/licensedcode/data/rules/ms-pl_and_lgpl-2.0-plus_and_bsd-new_nuget_url_1.RULE b/src/licensedcode/data/rules/ms-pl_and_lgpl-2.0-plus_and_bsd-new_nuget_url_1.RULE index 8e9da428d50..b803746753b 100644 --- a/src/licensedcode/data/rules/ms-pl_and_lgpl-2.0-plus_and_bsd-new_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/ms-pl_and_lgpl-2.0-plus_and_bsd-new_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl AND lgpl-2.0-plus AND bsd-new +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/EWSoftware/SHFB/blob/master/LICENSE +--- + https://github.com/EWSoftware/SHFB/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_and_lgpl-2.0-plus_and_bsd-new_nuget_url_1.yml b/src/licensedcode/data/rules/ms-pl_and_lgpl-2.0-plus_and_bsd-new_nuget_url_1.yml deleted file mode 100644 index 6abb7c9d5a5..00000000000 --- a/src/licensedcode/data/rules/ms-pl_and_lgpl-2.0-plus_and_bsd-new_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl AND lgpl-2.0-plus AND bsd-new -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/EWSoftware/SHFB/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/ms-pl_nuget_url_1.RULE b/src/licensedcode/data/rules/ms-pl_nuget_url_1.RULE index c577bbf58ae..1e9ee5459fe 100644 --- a/src/licensedcode/data/rules/ms-pl_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/ms-pl_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jbattermann/JB.Tfs.Common/blob/master/LICENSE +--- + https://github.com/jbattermann/JB.Tfs.Common/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_nuget_url_1.yml b/src/licensedcode/data/rules/ms-pl_nuget_url_1.yml deleted file mode 100644 index 3379507900b..00000000000 --- a/src/licensedcode/data/rules/ms-pl_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jbattermann/JB.Tfs.Common/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/ms-pl_nuget_url_2.RULE b/src/licensedcode/data/rules/ms-pl_nuget_url_2.RULE index f5990f21497..beb99589e67 100644 --- a/src/licensedcode/data/rules/ms-pl_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/ms-pl_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jsakamoto/ChainingAssertion/blob/bin-edition/LiCENSE +--- + https://github.com/jsakamoto/ChainingAssertion/blob/bin-edition/LiCENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_nuget_url_2.yml b/src/licensedcode/data/rules/ms-pl_nuget_url_2.yml deleted file mode 100644 index 863eea8d607..00000000000 --- a/src/licensedcode/data/rules/ms-pl_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jsakamoto/ChainingAssertion/blob/bin-edition/LiCENSE diff --git a/src/licensedcode/data/rules/ms-pl_nuget_url_3.RULE b/src/licensedcode/data/rules/ms-pl_nuget_url_3.RULE index 8043a910cd6..27bd53288eb 100644 --- a/src/licensedcode/data/rules/ms-pl_nuget_url_3.RULE +++ b/src/licensedcode/data/rules/ms-pl_nuget_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/WickedFlame/Scribe/raw/master/License.txt +--- + https://github.com/WickedFlame/Scribe/raw/master/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_nuget_url_3.yml b/src/licensedcode/data/rules/ms-pl_nuget_url_3.yml deleted file mode 100644 index e302011f1c1..00000000000 --- a/src/licensedcode/data/rules/ms-pl_nuget_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/WickedFlame/Scribe/raw/master/License.txt diff --git a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_1.RULE index 8b3eae5ff24..3a45c9a277b 100644 --- a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ms-pl OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + You may choose to use this library under either the MS-PL or Apache 2.0 licenses. Both are included here for reference. diff --git a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_1.yml b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_1.yml deleted file mode 100644 index 3a2cf2ca245..00000000000 --- a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_2.RULE index b164ab53cf1..b34808c6deb 100644 --- a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_2.RULE @@ -1 +1,8 @@ +--- +license_expression: ms-pl OR apache-2.0 +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/JoshClose/CsvHelper/master/LICENSE.txt +--- + Dual licensing under MS-PL and Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_2.yml b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_2.yml deleted file mode 100644 index 31653195521..00000000000 --- a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-pl OR apache-2.0 -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/JoshClose/CsvHelper/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_3.RULE b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_3.RULE index 8ee156a6b8a..3975e2ad01a 100644 --- a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ms-pl OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + dual-licensed. You may choose to use under either the Apache License, Version 2.0, or the Microsoft Public License (Ms-PL). These licenses are essentially identical, but you are encouraged to evaluate both to determine which best fits your intended use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_3.yml b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_3.yml deleted file mode 100644 index 3a2cf2ca245..00000000000 --- a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_4.RULE b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_4.RULE index 77235f94b83..39ad419995d 100644 --- a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-pl OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + under either the Apache License, Version 2.0, or the Microsoft Public License (Ms-PL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_4.yml b/src/licensedcode/data/rules/ms-pl_or_apache-2.0_4.yml deleted file mode 100644 index 3a2cf2ca245..00000000000 --- a/src/licensedcode/data/rules/ms-pl_or_apache-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-pl OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-pl_url_1.RULE b/src/licensedcode/data/rules/ms-pl_url_1.RULE index 7abb083cca3..0a57730b30f 100644 --- a/src/licensedcode/data/rules/ms-pl_url_1.RULE +++ b/src/licensedcode/data/rules/ms-pl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ms-pl +--- + https://spdx.org/licenses/ms-pl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_url_1.yml b/src/licensedcode/data/rules/ms-pl_url_1.yml deleted file mode 100644 index 807e7d5f499..00000000000 --- a/src/licensedcode/data/rules/ms-pl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ms-pl diff --git a/src/licensedcode/data/rules/ms-pl_url_2.RULE b/src/licensedcode/data/rules/ms-pl_url_2.RULE index 70bca204408..40f85c41c00 100644 --- a/src/licensedcode/data/rules/ms-pl_url_2.RULE +++ b/src/licensedcode/data/rules/ms-pl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-pl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ms-pl.html +--- + https://spdx.org/licenses/ms-pl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-pl_url_2.yml b/src/licensedcode/data/rules/ms-pl_url_2.yml deleted file mode 100644 index 5d002d708a9..00000000000 --- a/src/licensedcode/data/rules/ms-pl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ms-pl.html diff --git a/src/licensedcode/data/rules/ms-research-shared-source.RULE b/src/licensedcode/data/rules/ms-research-shared-source.RULE index 380fd37abe7..2ca5b2c644f 100644 --- a/src/licensedcode/data/rules/ms-research-shared-source.RULE +++ b/src/licensedcode/data/rules/ms-research-shared-source.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-research-shared-source +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://research.microsoft.com/downloads +--- + http://research.microsoft.com/downloads \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-research-shared-source.yml b/src/licensedcode/data/rules/ms-research-shared-source.yml deleted file mode 100644 index 41c6ad69433..00000000000 --- a/src/licensedcode/data/rules/ms-research-shared-source.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-research-shared-source -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://research.microsoft.com/downloads diff --git a/src/licensedcode/data/rules/ms-rl.RULE b/src/licensedcode/data/rules/ms-rl.RULE index 87df9fbcc2a..574d18ad156 100644 --- a/src/licensedcode/data/rules/ms-rl.RULE +++ b/src/licensedcode/data/rules/ms-rl.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/opensource/licenses.mspx#Ms-RL +--- + http://www.microsoft.com/opensource/licenses.mspx#Ms-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl.SPDX.RULE b/src/licensedcode/data/rules/ms-rl.SPDX.RULE index 88beaf10a89..5f2e1829737 100644 --- a/src/licensedcode/data/rules/ms-rl.SPDX.RULE +++ b/src/licensedcode/data/rules/ms-rl.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ms-rl +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Microsoft Reciprocal License (Ms-RL) diff --git a/src/licensedcode/data/rules/ms-rl.SPDX.yml b/src/licensedcode/data/rules/ms-rl.SPDX.yml deleted file mode 100644 index f2380a33604..00000000000 --- a/src/licensedcode/data/rules/ms-rl.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-rl -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/ms-rl.yml b/src/licensedcode/data/rules/ms-rl.yml deleted file mode 100644 index 8052cc43e91..00000000000 --- a/src/licensedcode/data/rules/ms-rl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/opensource/licenses.mspx#Ms-RL diff --git a/src/licensedcode/data/rules/ms-rl_1.RULE b/src/licensedcode/data/rules/ms-rl_1.RULE index f4a63ed1f2b..d9d1061655b 100644 --- a/src/licensedcode/data/rules/ms-rl_1.RULE +++ b/src/licensedcode/data/rules/ms-rl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +--- + Microsoft Reciprocal License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_1.yml b/src/licensedcode/data/rules/ms-rl_1.yml deleted file mode 100644 index fbb62076187..00000000000 --- a/src/licensedcode/data/rules/ms-rl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-rl_10.RULE b/src/licensedcode/data/rules/ms-rl_10.RULE index d3160233666..05d4da2b3b2 100644 --- a/src/licensedcode/data/rules/ms-rl_10.RULE +++ b/src/licensedcode/data/rules/ms-rl_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-rl +is_license_notice: yes +relevance: 100 +--- + used under the Microsoft Reciprocal License (MS-RL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_10.yml b/src/licensedcode/data/rules/ms-rl_10.yml deleted file mode 100644 index 7daf9bd48f1..00000000000 --- a/src/licensedcode/data/rules/ms-rl_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-rl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-rl_11.RULE b/src/licensedcode/data/rules/ms-rl_11.RULE index 51d2d248c7b..bbae6cfcca5 100644 --- a/src/licensedcode/data/rules/ms-rl_11.RULE +++ b/src/licensedcode/data/rules/ms-rl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://wixtoolset.org/about/license +--- + Project License Type: [MS-RL](https://wixtoolset.org/about/license/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_11.yml b/src/licensedcode/data/rules/ms-rl_11.yml deleted file mode 100644 index 959676d7048..00000000000 --- a/src/licensedcode/data/rules/ms-rl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://wixtoolset.org/about/license diff --git a/src/licensedcode/data/rules/ms-rl_12.RULE b/src/licensedcode/data/rules/ms-rl_12.RULE index 6ac58cde854..ac25bc97f44 100644 --- a/src/licensedcode/data/rules/ms-rl_12.RULE +++ b/src/licensedcode/data/rules/ms-rl_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://wixtoolset.org/about/license/ +--- + https://wixtoolset.org/about/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_12.yml b/src/licensedcode/data/rules/ms-rl_12.yml deleted file mode 100644 index abaf681a9b4..00000000000 --- a/src/licensedcode/data/rules/ms-rl_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://wixtoolset.org/about/license/ diff --git a/src/licensedcode/data/rules/ms-rl_13.RULE b/src/licensedcode/data/rules/ms-rl_13.RULE index dc203a09b0a..db2e13c8c58 100644 --- a/src/licensedcode/data/rules/ms-rl_13.RULE +++ b/src/licensedcode/data/rules/ms-rl_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://wixtoolset.org/about/license +--- + [MS-RL](https://wixtoolset.org/about/license/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_13.yml b/src/licensedcode/data/rules/ms-rl_13.yml deleted file mode 100644 index 4b491999202..00000000000 --- a/src/licensedcode/data/rules/ms-rl_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://wixtoolset.org/about/license diff --git a/src/licensedcode/data/rules/ms-rl_14.RULE b/src/licensedcode/data/rules/ms-rl_14.RULE index bcee8adeae8..e72dd44f838 100644 --- a/src/licensedcode/data/rules/ms-rl_14.RULE +++ b/src/licensedcode/data/rules/ms-rl_14.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://wixtoolset.org/about/license +--- + licensed under the [MS-RL](https://wixtoolset.org/about/license/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_14.yml b/src/licensedcode/data/rules/ms-rl_14.yml deleted file mode 100644 index 959676d7048..00000000000 --- a/src/licensedcode/data/rules/ms-rl_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://wixtoolset.org/about/license diff --git a/src/licensedcode/data/rules/ms-rl_15.RULE b/src/licensedcode/data/rules/ms-rl_15.RULE index c3d1fa39be7..cdcb767b570 100644 --- a/src/licensedcode/data/rules/ms-rl_15.RULE +++ b/src/licensedcode/data/rules/ms-rl_15.RULE @@ -1 +1,8 @@ +--- +license_expression: ms-rl +is_license_notice: yes +referenced_filenames: + - LICENSE.TXT +--- + The full text of the MS-RL license is reproduced below. It can also be found in the LICENSE.TXT file included with the source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_15.yml b/src/licensedcode/data/rules/ms-rl_15.yml deleted file mode 100644 index 69ca3f5f433..00000000000 --- a/src/licensedcode/data/rules/ms-rl_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-rl -is_license_notice: yes -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/ms-rl_16.RULE b/src/licensedcode/data/rules/ms-rl_16.RULE index a593b1fc1d3..4c35d84f8f7 100644 --- a/src/licensedcode/data/rules/ms-rl_16.RULE +++ b/src/licensedcode/data/rules/ms-rl_16.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ms-rl +is_license_notice: yes +ignorable_copyrights: + - copyright law. OuterCurve Foundation +ignorable_holders: + - law. OuterCurve Foundation +--- + The WiX toolset (WiX) is licensed under the Microsoft Reciprocal License (MS-RL). The MS-RL governs the distribution of the software licensed under it, as well as derivative works, and incorporates the definition of a derivative work provided in U.S. copyright law. diff --git a/src/licensedcode/data/rules/ms-rl_16.yml b/src/licensedcode/data/rules/ms-rl_16.yml deleted file mode 100644 index 3f50e4f51d3..00000000000 --- a/src/licensedcode/data/rules/ms-rl_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-rl -is_license_notice: yes -ignorable_copyrights: - - copyright law. OuterCurve Foundation -ignorable_holders: - - law. OuterCurve Foundation diff --git a/src/licensedcode/data/rules/ms-rl_17.RULE b/src/licensedcode/data/rules/ms-rl_17.RULE index 5cc60738f63..7f8f9eeba91 100644 --- a/src/licensedcode/data/rules/ms-rl_17.RULE +++ b/src/licensedcode/data/rules/ms-rl_17.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-rl +is_license_notice: yes +relevance: 100 +--- + released under the Microsoft Reciprocal License (MS-RL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_17.yml b/src/licensedcode/data/rules/ms-rl_17.yml deleted file mode 100644 index 7daf9bd48f1..00000000000 --- a/src/licensedcode/data/rules/ms-rl_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-rl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-rl_18.RULE b/src/licensedcode/data/rules/ms-rl_18.RULE index a3b8d026f61..d51fe0bfa30 100644 --- a/src/licensedcode/data/rules/ms-rl_18.RULE +++ b/src/licensedcode/data/rules/ms-rl_18.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-rl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Microsoft Reciprocal License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_18.yml b/src/licensedcode/data/rules/ms-rl_18.yml deleted file mode 100644 index 4f87f879e57..00000000000 --- a/src/licensedcode/data/rules/ms-rl_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-rl_19.RULE b/src/licensedcode/data/rules/ms-rl_19.RULE index 60c8fec615e..6fab42f9d13 100644 --- a/src/licensedcode/data/rules/ms-rl_19.RULE +++ b/src/licensedcode/data/rules/ms-rl_19.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-rl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MS-RL Microsoft Reciprocal License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_19.yml b/src/licensedcode/data/rules/ms-rl_19.yml deleted file mode 100644 index 4f87f879e57..00000000000 --- a/src/licensedcode/data/rules/ms-rl_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-rl_2.RULE b/src/licensedcode/data/rules/ms-rl_2.RULE index 1a5fadfd4af..16e63d23bc8 100644 --- a/src/licensedcode/data/rules/ms-rl_2.RULE +++ b/src/licensedcode/data/rules/ms-rl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/ms-rl +--- + https://choosealicense.com/licenses/ms-rl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_2.yml b/src/licensedcode/data/rules/ms-rl_2.yml deleted file mode 100644 index f17312088de..00000000000 --- a/src/licensedcode/data/rules/ms-rl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/ms-rl diff --git a/src/licensedcode/data/rules/ms-rl_20.RULE b/src/licensedcode/data/rules/ms-rl_20.RULE index 605df55fb40..016998dde5a 100644 --- a/src/licensedcode/data/rules/ms-rl_20.RULE +++ b/src/licensedcode/data/rules/ms-rl_20.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-rl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Microsoft Reciprocal License MS-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_20.yml b/src/licensedcode/data/rules/ms-rl_20.yml deleted file mode 100644 index 4f87f879e57..00000000000 --- a/src/licensedcode/data/rules/ms-rl_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-rl_21.RULE b/src/licensedcode/data/rules/ms-rl_21.RULE index 112e1a07051..3f77d616607 100644 --- a/src/licensedcode/data/rules/ms-rl_21.RULE +++ b/src/licensedcode/data/rules/ms-rl_21.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-rl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MS-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_21.yml b/src/licensedcode/data/rules/ms-rl_21.yml deleted file mode 100644 index 7da4dbfd773..00000000000 --- a/src/licensedcode/data/rules/ms-rl_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-rl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-rl_22.RULE b/src/licensedcode/data/rules/ms-rl_22.RULE index 7343f1e3deb..bfc709b49ef 100644 --- a/src/licensedcode/data/rules/ms-rl_22.RULE +++ b/src/licensedcode/data/rules/ms-rl_22.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-rl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Microsoft Reciprocal License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_22.yml b/src/licensedcode/data/rules/ms-rl_22.yml deleted file mode 100644 index 7da4dbfd773..00000000000 --- a/src/licensedcode/data/rules/ms-rl_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-rl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-rl_23.RULE b/src/licensedcode/data/rules/ms-rl_23.RULE index 3cd659e6d17..affc966e581 100644 --- a/src/licensedcode/data/rules/ms-rl_23.RULE +++ b/src/licensedcode/data/rules/ms-rl_23.RULE @@ -1 +1,10 @@ +--- +license_expression: ms-rl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MS-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_23.yml b/src/licensedcode/data/rules/ms-rl_23.yml deleted file mode 100644 index 7da4dbfd773..00000000000 --- a/src/licensedcode/data/rules/ms-rl_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ms-rl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ms-rl_24.RULE b/src/licensedcode/data/rules/ms-rl_24.RULE index a4c1aaa9ea5..07546285e61 100644 --- a/src/licensedcode/data/rules/ms-rl_24.RULE +++ b/src/licensedcode/data/rules/ms-rl_24.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +is_continuous: yes +relevance: 80 +minimum_coverage: 100 +--- + MS-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_24.yml b/src/licensedcode/data/rules/ms-rl_24.yml deleted file mode 100644 index 6eaf5ad72cd..00000000000 --- a/src/licensedcode/data/rules/ms-rl_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -is_continuous: yes -relevance: 80 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ms-rl_25.RULE b/src/licensedcode/data/rules/ms-rl_25.RULE index 7129f150345..fe058d1d839 100644 --- a/src/licensedcode/data/rules/ms-rl_25.RULE +++ b/src/licensedcode/data/rules/ms-rl_25.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Microsoft_Reciprocal_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_25.yml b/src/licensedcode/data/rules/ms-rl_25.yml deleted file mode 100644 index fbb62076187..00000000000 --- a/src/licensedcode/data/rules/ms-rl_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-rl_26.RULE b/src/licensedcode/data/rules/ms-rl_26.RULE index 37b0ba891e7..d1507c05dc6 100644 --- a/src/licensedcode/data/rules/ms-rl_26.RULE +++ b/src/licensedcode/data/rules/ms-rl_26.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MS-RL +--- + https://licenses.nuget.org/MS-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_26.yml b/src/licensedcode/data/rules/ms-rl_26.yml deleted file mode 100644 index c5688e6ebe3..00000000000 --- a/src/licensedcode/data/rules/ms-rl_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MS-RL diff --git a/src/licensedcode/data/rules/ms-rl_27.RULE b/src/licensedcode/data/rules/ms-rl_27.RULE index c983ab670e3..dd4165659f1 100644 --- a/src/licensedcode/data/rules/ms-rl_27.RULE +++ b/src/licensedcode/data/rules/ms-rl_27.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MS-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_27.yml b/src/licensedcode/data/rules/ms-rl_27.yml deleted file mode 100644 index fbb62076187..00000000000 --- a/src/licensedcode/data/rules/ms-rl_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-rl_28.RULE b/src/licensedcode/data/rules/ms-rl_28.RULE index 9ca37c34cb6..3896d56f7ef 100644 --- a/src/licensedcode/data/rules/ms-rl_28.RULE +++ b/src/licensedcode/data/rules/ms-rl_28.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MS-RL +--- + {{MS-RL}} https://spdx.org/licenses/MS-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_28.yml b/src/licensedcode/data/rules/ms-rl_28.yml deleted file mode 100644 index 0ba31b906d0..00000000000 --- a/src/licensedcode/data/rules/ms-rl_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MS-RL diff --git a/src/licensedcode/data/rules/ms-rl_29.RULE b/src/licensedcode/data/rules/ms-rl_29.RULE index 0364b118b5f..c6b4338dcec 100644 --- a/src/licensedcode/data/rules/ms-rl_29.RULE +++ b/src/licensedcode/data/rules/ms-rl_29.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MS-RL +--- + LICENSE {{MS-RL}} https://spdx.org/licenses/MS-RL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_29.yml b/src/licensedcode/data/rules/ms-rl_29.yml deleted file mode 100644 index 0ba31b906d0..00000000000 --- a/src/licensedcode/data/rules/ms-rl_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MS-RL diff --git a/src/licensedcode/data/rules/ms-rl_3.RULE b/src/licensedcode/data/rules/ms-rl_3.RULE index 8d60c4a050f..337b837d040 100644 --- a/src/licensedcode/data/rules/ms-rl_3.RULE +++ b/src/licensedcode/data/rules/ms-rl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ms-rl.html +--- + http://www.opensource.org/licenses/ms-rl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_3.yml b/src/licensedcode/data/rules/ms-rl_3.yml deleted file mode 100644 index f0731529da7..00000000000 --- a/src/licensedcode/data/rules/ms-rl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ms-rl.html diff --git a/src/licensedcode/data/rules/ms-rl_4.RULE b/src/licensedcode/data/rules/ms-rl_4.RULE index 1f0156b702a..0536694ac4e 100644 --- a/src/licensedcode/data/rules/ms-rl_4.RULE +++ b/src/licensedcode/data/rules/ms-rl_4.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/en-us/openness/licenses.aspx#MRL +--- + http://www.microsoft.com/en-us/openness/licenses.aspx#MRL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_4.yml b/src/licensedcode/data/rules/ms-rl_4.yml deleted file mode 100644 index b48b5dd9b7e..00000000000 --- a/src/licensedcode/data/rules/ms-rl_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/en-us/openness/licenses.aspx#MRL diff --git a/src/licensedcode/data/rules/ms-rl_5.RULE b/src/licensedcode/data/rules/ms-rl_5.RULE index 64b2b30dbaf..253166297b5 100644 --- a/src/licensedcode/data/rules/ms-rl_5.RULE +++ b/src/licensedcode/data/rules/ms-rl_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-rl +is_license_text: yes +--- + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. 1. Definitions diff --git a/src/licensedcode/data/rules/ms-rl_5.yml b/src/licensedcode/data/rules/ms-rl_5.yml deleted file mode 100644 index a2ffd61bd7b..00000000000 --- a/src/licensedcode/data/rules/ms-rl_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-rl -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-rl_6.RULE b/src/licensedcode/data/rules/ms-rl_6.RULE index 546f6de62f6..75530344876 100644 --- a/src/licensedcode/data/rules/ms-rl_6.RULE +++ b/src/licensedcode/data/rules/ms-rl_6.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/ms-rl +--- + http://choosealicense.com/licenses/ms-rl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_6.yml b/src/licensedcode/data/rules/ms-rl_6.yml deleted file mode 100644 index 8a807fc0454..00000000000 --- a/src/licensedcode/data/rules/ms-rl_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/ms-rl diff --git a/src/licensedcode/data/rules/ms-rl_7.RULE b/src/licensedcode/data/rules/ms-rl_7.RULE index de7d7527d26..db8bd5e4b8b 100644 --- a/src/licensedcode/data/rules/ms-rl_7.RULE +++ b/src/licensedcode/data/rules/ms-rl_7.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://wolfpackcontrib.codeplex.com/license +--- + http://wolfpackcontrib.codeplex.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_7.yml b/src/licensedcode/data/rules/ms-rl_7.yml deleted file mode 100644 index c9102401a02..00000000000 --- a/src/licensedcode/data/rules/ms-rl_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://wolfpackcontrib.codeplex.com/license diff --git a/src/licensedcode/data/rules/ms-rl_8.RULE b/src/licensedcode/data/rules/ms-rl_8.RULE index 750463a928d..3173e76516a 100644 --- a/src/licensedcode/data/rules/ms-rl_8.RULE +++ b/src/licensedcode/data/rules/ms-rl_8.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +--- + Microsoft Reciprocal licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_8.yml b/src/licensedcode/data/rules/ms-rl_8.yml deleted file mode 100644 index fbb62076187..00000000000 --- a/src/licensedcode/data/rules/ms-rl_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-rl_9.RULE b/src/licensedcode/data/rules/ms-rl_9.RULE index a16b4491187..73150954f19 100644 --- a/src/licensedcode/data/rules/ms-rl_9.RULE +++ b/src/licensedcode/data/rules/ms-rl_9.RULE @@ -1 +1,8 @@ +--- +license_expression: ms-rl +is_license_notice: yes +relevance: 100 +notes: https://github.com/res2k/seveninstall/blob/master/LICENSE +--- + licensed under the Microsoft Reciprocal License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_9.yml b/src/licensedcode/data/rules/ms-rl_9.yml deleted file mode 100644 index 8b05a7b8d30..00000000000 --- a/src/licensedcode/data/rules/ms-rl_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-rl -is_license_notice: yes -relevance: 100 -notes: https://github.com/res2k/seveninstall/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/ms-rl_url_1.RULE b/src/licensedcode/data/rules/ms-rl_url_1.RULE index 160ff98b1fe..1649e4c28cb 100644 --- a/src/licensedcode/data/rules/ms-rl_url_1.RULE +++ b/src/licensedcode/data/rules/ms-rl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ms-rl +--- + https://spdx.org/licenses/ms-rl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_url_1.yml b/src/licensedcode/data/rules/ms-rl_url_1.yml deleted file mode 100644 index f97f5364c1b..00000000000 --- a/src/licensedcode/data/rules/ms-rl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ms-rl diff --git a/src/licensedcode/data/rules/ms-rl_url_2.RULE b/src/licensedcode/data/rules/ms-rl_url_2.RULE index c4cdbdcc94d..f18056a771a 100644 --- a/src/licensedcode/data/rules/ms-rl_url_2.RULE +++ b/src/licensedcode/data/rules/ms-rl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ms-rl.html +--- + https://spdx.org/licenses/ms-rl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_url_2.yml b/src/licensedcode/data/rules/ms-rl_url_2.yml deleted file mode 100644 index 5afe82de068..00000000000 --- a/src/licensedcode/data/rules/ms-rl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ms-rl.html diff --git a/src/licensedcode/data/rules/ms-rl_url_glc_192.RULE b/src/licensedcode/data/rules/ms-rl_url_glc_192.RULE index 1906dc52519..40cecf41e83 100644 --- a/src/licensedcode/data/rules/ms-rl_url_glc_192.RULE +++ b/src/licensedcode/data/rules/ms-rl_url_glc_192.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ms-rl +--- + http://www.opensource.org/licenses/ms-rl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_url_glc_192.yml b/src/licensedcode/data/rules/ms-rl_url_glc_192.yml deleted file mode 100644 index 097461fadca..00000000000 --- a/src/licensedcode/data/rules/ms-rl_url_glc_192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ms-rl diff --git a/src/licensedcode/data/rules/ms-rl_url_glc_193.RULE b/src/licensedcode/data/rules/ms-rl_url_glc_193.RULE index b8c94d3af94..b073e7a5d05 100644 --- a/src/licensedcode/data/rules/ms-rl_url_glc_193.RULE +++ b/src/licensedcode/data/rules/ms-rl_url_glc_193.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ms-rl +--- + https://www.opensource.org/licenses/ms-rl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rl_url_glc_193.yml b/src/licensedcode/data/rules/ms-rl_url_glc_193.yml deleted file mode 100644 index 4ce754c05ba..00000000000 --- a/src/licensedcode/data/rules/ms-rl_url_glc_193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ms-rl diff --git a/src/licensedcode/data/rules/ms-rsl_1.RULE b/src/licensedcode/data/rules/ms-rsl_1.RULE index 0cd949c462b..700c9bbb93b 100644 --- a/src/licensedcode/data/rules/ms-rsl_1.RULE +++ b/src/licensedcode/data/rules/ms-rsl_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-rsl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/resources/sharedsource/referencesourcelicense.mspx +--- + http://www.microsoft.com/resources/sharedsource/referencesourcelicense.mspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rsl_1.yml b/src/licensedcode/data/rules/ms-rsl_1.yml deleted file mode 100644 index 20494b6805c..00000000000 --- a/src/licensedcode/data/rules/ms-rsl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-rsl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/resources/sharedsource/referencesourcelicense.mspx diff --git a/src/licensedcode/data/rules/ms-rsl_2.RULE b/src/licensedcode/data/rules/ms-rsl_2.RULE index 06ae67e94bf..4784180370e 100644 --- a/src/licensedcode/data/rules/ms-rsl_2.RULE +++ b/src/licensedcode/data/rules/ms-rsl_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-rsl +is_license_text: yes +--- + This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. 1. Definitions @@ -27,4 +32,4 @@ Top of pageTop of page (C) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically. -(D) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. +(D) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rsl_2.yml b/src/licensedcode/data/rules/ms-rsl_2.yml deleted file mode 100644 index 1132f919fc1..00000000000 --- a/src/licensedcode/data/rules/ms-rsl_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-rsl -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-rsl_3.RULE b/src/licensedcode/data/rules/ms-rsl_3.RULE index e05fa2b4c0b..ab8015a07e8 100644 --- a/src/licensedcode/data/rules/ms-rsl_3.RULE +++ b/src/licensedcode/data/rules/ms-rsl_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ms-rsl +is_license_reference: yes +relevance: 100 +--- + Microsoft Reference License (Ms-RL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rsl_3.yml b/src/licensedcode/data/rules/ms-rsl_3.yml deleted file mode 100644 index 4e9644fb71f..00000000000 --- a/src/licensedcode/data/rules/ms-rsl_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ms-rsl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ms-rsl_4.RULE b/src/licensedcode/data/rules/ms-rsl_4.RULE index 1816e72e4b2..a862df0722d 100644 --- a/src/licensedcode/data/rules/ms-rsl_4.RULE +++ b/src/licensedcode/data/rules/ms-rsl_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-rsl +is_license_text: yes +--- + Microsoft Reference License (Ms-RL) Published: October 18, 2005 @@ -29,4 +34,4 @@ Top of pageTop of page (C) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically. -(D) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. +(D) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-rsl_4.yml b/src/licensedcode/data/rules/ms-rsl_4.yml deleted file mode 100644 index 1132f919fc1..00000000000 --- a/src/licensedcode/data/rules/ms-rsl_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-rsl -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-rsl_5.RULE b/src/licensedcode/data/rules/ms-rsl_5.RULE index 8f267beee3f..dadc53f2a50 100644 --- a/src/licensedcode/data/rules/ms-rsl_5.RULE +++ b/src/licensedcode/data/rules/ms-rsl_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-rsl +is_license_text: yes +--- + Microsoft Reference License (Ms-RL) Published: March 8, 2007 * * diff --git a/src/licensedcode/data/rules/ms-rsl_5.yml b/src/licensedcode/data/rules/ms-rsl_5.yml deleted file mode 100644 index 1132f919fc1..00000000000 --- a/src/licensedcode/data/rules/ms-rsl_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-rsl -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-ttf-eula.RULE b/src/licensedcode/data/rules/ms-ttf-eula.RULE index 58bd5a1d83f..774206b052c 100644 --- a/src/licensedcode/data/rules/ms-ttf-eula.RULE +++ b/src/licensedcode/data/rules/ms-ttf-eula.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ms-ttf-eula +is_license_text: yes +--- + Microsoft TrueType Fonts END-USER LICENSE AGREEMENT FOR MICROSOFT SOFTWARE diff --git a/src/licensedcode/data/rules/ms-ttf-eula.yml b/src/licensedcode/data/rules/ms-ttf-eula.yml deleted file mode 100644 index 7e579982287..00000000000 --- a/src/licensedcode/data/rules/ms-ttf-eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ms-ttf-eula -is_license_text: yes diff --git a/src/licensedcode/data/rules/ms-visual-2010-runtime.RULE b/src/licensedcode/data/rules/ms-visual-2010-runtime.RULE index 40e1d9ac60a..621e2979169 100644 --- a/src/licensedcode/data/rules/ms-visual-2010-runtime.RULE +++ b/src/licensedcode/data/rules/ms-visual-2010-runtime.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ms-visual-2010-runtime +is_license_text: yes +ignorable_urls: + - http://www.microsoft.com/exporting +--- + These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft • updates, • supplements, @@ -42,4 +49,4 @@ b. Outside the United States. If you acquired the software in any other country, This limitation applies to • anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and • claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. -It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-visual-2010-runtime.yml b/src/licensedcode/data/rules/ms-visual-2010-runtime.yml deleted file mode 100644 index a4a2dd27d29..00000000000 --- a/src/licensedcode/data/rules/ms-visual-2010-runtime.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ms-visual-2010-runtime -is_license_text: yes -ignorable_urls: - - http://www.microsoft.com/exporting diff --git a/src/licensedcode/data/rules/ms-visual-2015-sdk_1.RULE b/src/licensedcode/data/rules/ms-visual-2015-sdk_1.RULE index cca3e15757e..3f30afd95df 100644 --- a/src/licensedcode/data/rules/ms-visual-2015-sdk_1.RULE +++ b/src/licensedcode/data/rules/ms-visual-2015-sdk_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-visual-2015-sdk +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=614949 +--- + http://go.microsoft.com/fwlink/?LinkID=614949 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-visual-2015-sdk_1.yml b/src/licensedcode/data/rules/ms-visual-2015-sdk_1.yml deleted file mode 100644 index bb50e81942a..00000000000 --- a/src/licensedcode/data/rules/ms-visual-2015-sdk_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-visual-2015-sdk -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=614949 diff --git a/src/licensedcode/data/rules/ms-visual-studio-2017-tools_1.RULE b/src/licensedcode/data/rules/ms-visual-studio-2017-tools_1.RULE index 589d459a8f1..e9812c92696 100644 --- a/src/licensedcode/data/rules/ms-visual-studio-2017-tools_1.RULE +++ b/src/licensedcode/data/rules/ms-visual-studio-2017-tools_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ms-visual-studio-2017-tools +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://aka.ms/pexunj +--- + https://aka.ms/pexunj \ No newline at end of file diff --git a/src/licensedcode/data/rules/ms-visual-studio-2017-tools_1.yml b/src/licensedcode/data/rules/ms-visual-studio-2017-tools_1.yml deleted file mode 100644 index 889e63c7299..00000000000 --- a/src/licensedcode/data/rules/ms-visual-studio-2017-tools_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-visual-studio-2017-tools -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://aka.ms/pexunj diff --git a/src/licensedcode/data/rules/msntp_1.RULE b/src/licensedcode/data/rules/msntp_1.RULE index 2b59622d12f..15860d48d84 100644 --- a/src/licensedcode/data/rules/msntp_1.RULE +++ b/src/licensedcode/data/rules/msntp_1.RULE @@ -1 +1,9 @@ +--- +license_expression: msntp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/MSNTP +--- + http://fedoraproject.org/wiki/Licensing/MSNTP \ No newline at end of file diff --git a/src/licensedcode/data/rules/msntp_1.yml b/src/licensedcode/data/rules/msntp_1.yml deleted file mode 100644 index e4a636fe38b..00000000000 --- a/src/licensedcode/data/rules/msntp_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: msntp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/MSNTP diff --git a/src/licensedcode/data/rules/msntp_2.RULE b/src/licensedcode/data/rules/msntp_2.RULE index c542c07ff7e..4b7b3cd2bc4 100644 --- a/src/licensedcode/data/rules/msntp_2.RULE +++ b/src/licensedcode/data/rules/msntp_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: msntp +is_license_reference: yes +ignorable_authors: + - the University of retain +--- + Free use of the software in source and binary forms is permitted, provided that this entire licence is duplicated in all copies, and that any documentation, announcements, and other materials related to use acknowledge that the software @@ -9,4 +16,4 @@ without specific prior written permission. The Author and the University of retain the copyright and all other legal rights to the software and make it available non-exclusively. All users must ensure that the software in all its derivations carries a copyright notice -in the form: +in the form: \ No newline at end of file diff --git a/src/licensedcode/data/rules/msntp_2.yml b/src/licensedcode/data/rules/msntp_2.yml deleted file mode 100644 index 8c5397eb4a5..00000000000 --- a/src/licensedcode/data/rules/msntp_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: msntp -is_license_reference: yes -ignorable_authors: - - the University of retain diff --git a/src/licensedcode/data/rules/msntp_3.RULE b/src/licensedcode/data/rules/msntp_3.RULE index 028b5c84b60..4bb1a93499d 100644 --- a/src/licensedcode/data/rules/msntp_3.RULE +++ b/src/licensedcode/data/rules/msntp_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: msntp +is_license_reference: yes +ignorable_copyrights: + - (c) Copyright University of Cambridge +ignorable_holders: + - University of Cambridge +ignorable_authors: + - the University of Cambridge +--- + Free use of the software in source and binary forms is permitted, provided that this entire licence is duplicated in all copies, and that any documentation, announcements, and other materials related to use acknowledge that the software @@ -10,4 +21,4 @@ The Author and the University of Cambridge retain the copyright and all other legal rights to the software and make it available non-exclusively. All users must ensure that the software in all its derivations carries a copyright notice in the form: - (c) Copyright University of Cambridge. + (c) Copyright University of Cambridge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/msntp_3.yml b/src/licensedcode/data/rules/msntp_3.yml deleted file mode 100644 index 31c54579eff..00000000000 --- a/src/licensedcode/data/rules/msntp_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: msntp -is_license_reference: yes -ignorable_copyrights: - - (c) Copyright University of Cambridge -ignorable_holders: - - University of Cambridge -ignorable_authors: - - the University of Cambridge diff --git a/src/licensedcode/data/rules/mtll2.RULE b/src/licensedcode/data/rules/mtll2.RULE index 92e01b91a61..8aaed09be81 100644 --- a/src/licensedcode/data/rules/mtll2.RULE +++ b/src/licensedcode/data/rules/mtll2.RULE @@ -1 +1,7 @@ +--- +license_expression: mtll +is_license_reference: yes +relevance: 100 +--- + Software License for MTL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll2.yml b/src/licensedcode/data/rules/mtll2.yml deleted file mode 100644 index 75c0fba7f6b..00000000000 --- a/src/licensedcode/data/rules/mtll2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mtll -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mtll_1.RULE b/src/licensedcode/data/rules/mtll_1.RULE index 9bf33f31d53..8f8bf473b9b 100644 --- a/src/licensedcode/data/rules/mtll_1.RULE +++ b/src/licensedcode/data/rules/mtll_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mtll +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Matrix Template Library License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_1.yml b/src/licensedcode/data/rules/mtll_1.yml deleted file mode 100644 index e8f92ba9f18..00000000000 --- a/src/licensedcode/data/rules/mtll_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mtll -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mtll_10.RULE b/src/licensedcode/data/rules/mtll_10.RULE index efba024112c..f8f0bf0c749 100644 --- a/src/licensedcode/data/rules/mtll_10.RULE +++ b/src/licensedcode/data/rules/mtll_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mtll +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MTLL +--- + LICENSE {{MTLL}} https://spdx.org/licenses/MTLL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_10.yml b/src/licensedcode/data/rules/mtll_10.yml deleted file mode 100644 index 9aa6cb47e1e..00000000000 --- a/src/licensedcode/data/rules/mtll_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mtll -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MTLL diff --git a/src/licensedcode/data/rules/mtll_11.RULE b/src/licensedcode/data/rules/mtll_11.RULE index 938d749f0de..a8b33378f4f 100644 --- a/src/licensedcode/data/rules/mtll_11.RULE +++ b/src/licensedcode/data/rules/mtll_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mtll +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MTLL +--- + {{MTLL}} https://spdx.org/licenses/MTLL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_11.yml b/src/licensedcode/data/rules/mtll_11.yml deleted file mode 100644 index 9aa6cb47e1e..00000000000 --- a/src/licensedcode/data/rules/mtll_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mtll -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MTLL diff --git a/src/licensedcode/data/rules/mtll_2.RULE b/src/licensedcode/data/rules/mtll_2.RULE index 95e04664d10..87557e16abd 100644 --- a/src/licensedcode/data/rules/mtll_2.RULE +++ b/src/licensedcode/data/rules/mtll_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mtll +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Matrix Template Library License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_2.yml b/src/licensedcode/data/rules/mtll_2.yml deleted file mode 100644 index e8f92ba9f18..00000000000 --- a/src/licensedcode/data/rules/mtll_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mtll -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mtll_3.RULE b/src/licensedcode/data/rules/mtll_3.RULE index 6aeb3e4a442..74f9941c9be 100644 --- a/src/licensedcode/data/rules/mtll_3.RULE +++ b/src/licensedcode/data/rules/mtll_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mtll +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MTLL Matrix Template Library License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_3.yml b/src/licensedcode/data/rules/mtll_3.yml deleted file mode 100644 index e8f92ba9f18..00000000000 --- a/src/licensedcode/data/rules/mtll_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mtll -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mtll_4.RULE b/src/licensedcode/data/rules/mtll_4.RULE index 8f696c6960c..40735ff797d 100644 --- a/src/licensedcode/data/rules/mtll_4.RULE +++ b/src/licensedcode/data/rules/mtll_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mtll +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Matrix Template Library License MTLL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_4.yml b/src/licensedcode/data/rules/mtll_4.yml deleted file mode 100644 index e8f92ba9f18..00000000000 --- a/src/licensedcode/data/rules/mtll_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mtll -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mtll_5.RULE b/src/licensedcode/data/rules/mtll_5.RULE index 610e0d66610..7764f601495 100644 --- a/src/licensedcode/data/rules/mtll_5.RULE +++ b/src/licensedcode/data/rules/mtll_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mtll +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MTLL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_5.yml b/src/licensedcode/data/rules/mtll_5.yml deleted file mode 100644 index 6913b312b1f..00000000000 --- a/src/licensedcode/data/rules/mtll_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mtll -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mtll_6.RULE b/src/licensedcode/data/rules/mtll_6.RULE index 2e6fdbe2b74..cea261e0081 100644 --- a/src/licensedcode/data/rules/mtll_6.RULE +++ b/src/licensedcode/data/rules/mtll_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mtll +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Matrix Template Library License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_6.yml b/src/licensedcode/data/rules/mtll_6.yml deleted file mode 100644 index 6913b312b1f..00000000000 --- a/src/licensedcode/data/rules/mtll_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mtll -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mtll_7.RULE b/src/licensedcode/data/rules/mtll_7.RULE index 5d9e0712413..42eae2cd4d5 100644 --- a/src/licensedcode/data/rules/mtll_7.RULE +++ b/src/licensedcode/data/rules/mtll_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mtll +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MTLL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_7.yml b/src/licensedcode/data/rules/mtll_7.yml deleted file mode 100644 index 6913b312b1f..00000000000 --- a/src/licensedcode/data/rules/mtll_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mtll -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mtll_8.RULE b/src/licensedcode/data/rules/mtll_8.RULE index 391750d895e..fddc67cbac8 100644 --- a/src/licensedcode/data/rules/mtll_8.RULE +++ b/src/licensedcode/data/rules/mtll_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mtll +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MTLL +--- + https://licenses.nuget.org/MTLL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_8.yml b/src/licensedcode/data/rules/mtll_8.yml deleted file mode 100644 index 4e2423c1b41..00000000000 --- a/src/licensedcode/data/rules/mtll_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mtll -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MTLL diff --git a/src/licensedcode/data/rules/mtll_9.RULE b/src/licensedcode/data/rules/mtll_9.RULE index 270a0280aa7..9a7690d3931 100644 --- a/src/licensedcode/data/rules/mtll_9.RULE +++ b/src/licensedcode/data/rules/mtll_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mtll +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MTLL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_9.yml b/src/licensedcode/data/rules/mtll_9.yml deleted file mode 100644 index 75c0fba7f6b..00000000000 --- a/src/licensedcode/data/rules/mtll_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mtll -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mtll_url_1.RULE b/src/licensedcode/data/rules/mtll_url_1.RULE index 1d41ca01587..73417c58021 100644 --- a/src/licensedcode/data/rules/mtll_url_1.RULE +++ b/src/licensedcode/data/rules/mtll_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mtll +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mtll +--- + https://spdx.org/licenses/mtll \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_url_1.yml b/src/licensedcode/data/rules/mtll_url_1.yml deleted file mode 100644 index 4e410a9111f..00000000000 --- a/src/licensedcode/data/rules/mtll_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mtll -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mtll diff --git a/src/licensedcode/data/rules/mtll_url_2.RULE b/src/licensedcode/data/rules/mtll_url_2.RULE index db568ca839e..a4446df8cd3 100644 --- a/src/licensedcode/data/rules/mtll_url_2.RULE +++ b/src/licensedcode/data/rules/mtll_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mtll +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mtll.html +--- + https://spdx.org/licenses/mtll.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mtll_url_2.yml b/src/licensedcode/data/rules/mtll_url_2.yml deleted file mode 100644 index e63a21e3214..00000000000 --- a/src/licensedcode/data/rules/mtll_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mtll -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mtll.html diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_1.RULE b/src/licensedcode/data/rules/mulanpsl-1.0-en_1.RULE index 50d632acbf8..e8e03678001 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_1.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0-en_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mulanpsl-1.0-en +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL +--- + is licensed under the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v1. * You may obtain a copy of Mulan PSL v1 at: diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_1.yml b/src/licensedcode/data/rules/mulanpsl-1.0-en_1.yml deleted file mode 100644 index b52126cc90b..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-1.0-en -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_2.RULE b/src/licensedcode/data/rules/mulanpsl-1.0-en_2.RULE index dfd4ae8ef54..f36e37b2f33 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_2.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0-en_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mulanpsl-1.0-en +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://license.coscl.org.cn/MulanPSL +--- + is licensed under the Mulan PSL v1. * You can use this software according to the terms and conditions of the Mulan PSL v1. * You may obtain a copy of Mulan PSL v1 at: diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_2.yml b/src/licensedcode/data/rules/mulanpsl-1.0-en_2.yml deleted file mode 100644 index 4825f7763f0..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-1.0-en -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://license.coscl.org.cn/MulanPSL diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_3.RULE b/src/licensedcode/data/rules/mulanpsl-1.0-en_3.RULE index d404a6a7cb7..c73081944c6 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_3.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0-en_3.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-1.0-en +is_license_tag: yes +relevance: 100 +--- + license: MulanPSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_3.yml b/src/licensedcode/data/rules/mulanpsl-1.0-en_3.yml deleted file mode 100644 index 837a3e95b52..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-1.0-en -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_4.RULE b/src/licensedcode/data/rules/mulanpsl-1.0-en_4.RULE index 9918abc1584..eeffb010a98 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_4.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0-en_4.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-1.0-en +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL +--- + http://license.coscl.org.cn/MulanPSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_4.yml b/src/licensedcode/data/rules/mulanpsl-1.0-en_4.yml deleted file mode 100644 index 5e301fb8483..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-1.0-en -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_5.RULE b/src/licensedcode/data/rules/mulanpsl-1.0-en_5.RULE index c7d89732a45..6bac563703c 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_5.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0-en_5.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-1.0-en +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://license.coscl.org.cn/MulanPSL +--- + https://license.coscl.org.cn/MulanPSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_5.yml b/src/licensedcode/data/rules/mulanpsl-1.0-en_5.yml deleted file mode 100644 index d45eb1dccdf..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-1.0-en -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://license.coscl.org.cn/MulanPSL diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_6.RULE b/src/licensedcode/data/rules/mulanpsl-1.0-en_6.RULE index 67b3d977551..140f852703f 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_6.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0-en_6.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-1.0-en +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + MulanPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0-en_6.yml b/src/licensedcode/data/rules/mulanpsl-1.0-en_6.yml deleted file mode 100644 index 82dd00bbb94..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0-en_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-1.0-en -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_1.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_1.RULE index ed91a3d7370..0e2be853fbb 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_1.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mulan Permissive Software License, Version 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_1.yml b/src/licensedcode/data/rules/mulanpsl-1.0_1.yml deleted file mode 100644 index 2e20c6af21c..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_10.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_10.RULE index 5c6ee66a65a..c455a9af6e1 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_10.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MulanPSL-1.0 +--- + {{MulanPSL-1.0}} https://spdx.org/licenses/MulanPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_10.yml b/src/licensedcode/data/rules/mulanpsl-1.0_10.yml deleted file mode 100644 index 9842b5cda4e..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MulanPSL-1.0 diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_11.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_11.RULE index 4ede774c10c..0105d766238 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_11.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MulanPSL-1.0 +--- + LICENSE {{MulanPSL-1.0}} https://spdx.org/licenses/MulanPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_11.yml b/src/licensedcode/data/rules/mulanpsl-1.0_11.yml deleted file mode 100644 index 9842b5cda4e..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MulanPSL-1.0 diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_2.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_2.RULE index 70ad97995f3..cdc46460b22 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_2.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Mulan Permissive Software License, Version 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_2.yml b/src/licensedcode/data/rules/mulanpsl-1.0_2.yml deleted file mode 100644 index 2e20c6af21c..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_3.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_3.RULE index 3c6e6006929..70f78289a52 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_3.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MulanPSL-1.0 Mulan Permissive Software License, Version 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_3.yml b/src/licensedcode/data/rules/mulanpsl-1.0_3.yml deleted file mode 100644 index 2e20c6af21c..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_4.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_4.RULE index 197f95d65da..dd4996564ce 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_4.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mulan Permissive Software License, Version 1 MulanPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_4.yml b/src/licensedcode/data/rules/mulanpsl-1.0_4.yml deleted file mode 100644 index 2e20c6af21c..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_5.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_5.RULE index 05aa37ab37e..ece467729b6 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_5.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MulanPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_5.yml b/src/licensedcode/data/rules/mulanpsl-1.0_5.yml deleted file mode 100644 index d3b07ff9b3e..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_6.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_6.RULE index c521c203b98..10eca6410ab 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_6.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Mulan Permissive Software License, Version 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_6.yml b/src/licensedcode/data/rules/mulanpsl-1.0_6.yml deleted file mode 100644 index d3b07ff9b3e..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_7.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_7.RULE index 70a89cb38c5..9a169175c38 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_7.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MulanPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_7.yml b/src/licensedcode/data/rules/mulanpsl-1.0_7.yml deleted file mode 100644 index d3b07ff9b3e..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_8.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_8.RULE index 6e466ad32ca..bb346e71715 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_8.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MulanPSL-1.0 +--- + https://licenses.nuget.org/MulanPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_8.yml b/src/licensedcode/data/rules/mulanpsl-1.0_8.yml deleted file mode 100644 index 8e9c8927a30..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MulanPSL-1.0 diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_9.RULE b/src/licensedcode/data/rules/mulanpsl-1.0_9.RULE index c22e0970fce..4ef2cff7f17 100644 --- a/src/licensedcode/data/rules/mulanpsl-1.0_9.RULE +++ b/src/licensedcode/data/rules/mulanpsl-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MulanPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-1.0_9.yml b/src/licensedcode/data/rules/mulanpsl-1.0_9.yml deleted file mode 100644 index ecdb62da4ec..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_1.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_1.RULE index 8b4cf3a8e2c..e54960c4e33 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_1.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_tag: yes +relevance: 100 +--- + license: MulanPSL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_1.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_1.yml deleted file mode 100644 index e81d36ff8eb..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_10.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_10.RULE index 5cf9d7d8f01..b7c43c5494d 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_10.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_10.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_notice: yes +relevance: 100 +--- + # licensed under the Mulan PSL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_10.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_10.yml deleted file mode 100644 index eda35b8ac60..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_11.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_11.RULE index 615ddff4c74..0f9289f9817 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_11.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_11.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_notice: yes +relevance: 100 +--- + # You can use this software according to the terms and conditions of the Mulan PSL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_11.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_11.yml deleted file mode 100644 index eda35b8ac60..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_12.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_12.RULE index 080183b9c36..041947214c9 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_12.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_12.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_reference: yes +relevance: 100 +--- + Mulan PSL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_12.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_12.yml deleted file mode 100644 index f8b736daf9e..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_13.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_13.RULE index 0978e60c056..95d74c65d50 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_13.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_13.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + MulanPSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_13.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_13.yml deleted file mode 100644 index bee4c861e95..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_14.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_14.RULE index 120f263e11d..8fd672b1358 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_14.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_14.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +--- + MulanPSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_14.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_14.yml deleted file mode 100644 index ad208984fb6..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_2.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_2.RULE index e46384bf03a..c45fb13e2b3 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_2.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_tag: yes +relevance: 100 +--- + license: MulanPSL 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_2.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_2.yml deleted file mode 100644 index e81d36ff8eb..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_3.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_3.RULE index c43f9747b4f..64a2278b6df 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_3.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_3.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_tag: yes +relevance: 100 +--- + license: MulanPSL v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_3.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_3.yml deleted file mode 100644 index e81d36ff8eb..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_4.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_4.RULE index 5ff0a191415..041d779e9bf 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_4.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_4.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL2 +--- + http://license.coscl.org.cn/MulanPSL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_4.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_4.yml deleted file mode 100644 index a05bfb45083..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL2 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_5.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_5.RULE index 38c18e85a5f..faa5040659e 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_5.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_5.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://license.coscl.org.cn/MulanPSL2 +--- + https://license.coscl.org.cn/MulanPSL2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_5.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_5.yml deleted file mode 100644 index 4cd8812cfbf..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://license.coscl.org.cn/MulanPSL2 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_6.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_6.RULE index 7f749386084..bc442d20901 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_6.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL2 +--- + is licensed under Mulan PSL v2. // You can use this software according to the terms and conditions of the Mulan PSL v2. // You may obtain a copy of Mulan PSL v2 at: diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_6.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_6.yml deleted file mode 100644 index f5c245e1585..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL2 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_7.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_7.RULE index 1fd2169c833..025e40e0539 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_7.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://license.coscl.org.cn/MulanPSL2 +--- + is licensed under Mulan PSL v2. // You can use this software according to the terms and conditions of the Mulan PSL v2. // You may obtain a copy of Mulan PSL v2 at: diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_7.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_7.yml deleted file mode 100644 index 85d848b8517..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://license.coscl.org.cn/MulanPSL2 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_8.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_8.RULE index 8244ca9cfdb..0c3d7465af5 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_8.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_notice: yes +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL2 +--- + # licensed under the Mulan PSL v2. # You can use this software according to the terms and conditions of the Mulan PSL v2. # You may obtain a copy of Mulan PSL v2 at: diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_8.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_8.yml deleted file mode 100644 index 07323c821a7..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_notice: yes -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL2 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_9.RULE b/src/licensedcode/data/rules/mulanpsl-2.0-en_9.RULE index 2db04985bad..18ae60bf3b8 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_9.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0-en_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mulanpsl-2.0-en +is_license_notice: yes +ignorable_urls: + - http://license.coscl.org.cn/MulanPSL2 +--- + # licensed under the Mulan PSL v2. # You can use this software according to the terms and conditions of the Mulan PSL v2. # You may obtain a copy of Mulan PSL v2 at: diff --git a/src/licensedcode/data/rules/mulanpsl-2.0-en_9.yml b/src/licensedcode/data/rules/mulanpsl-2.0-en_9.yml deleted file mode 100644 index 07323c821a7..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0-en_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mulanpsl-2.0-en -is_license_notice: yes -ignorable_urls: - - http://license.coscl.org.cn/MulanPSL2 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_1.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_1.RULE index 9133d1b55e6..6d5be3a8e12 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mulan Permissive Software License, Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_1.yml b/src/licensedcode/data/rules/mulanpsl-2.0_1.yml deleted file mode 100644 index 866b0e517f2..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_10.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_10.RULE index 8d41d9dca30..45b68024e2a 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_10.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MulanPSL-2.0 +--- + {{MulanPSL-2.0}} https://spdx.org/licenses/MulanPSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_10.yml b/src/licensedcode/data/rules/mulanpsl-2.0_10.yml deleted file mode 100644 index 289867928a8..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MulanPSL-2.0 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_11.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_11.RULE index 3e035284013..ff8fd1ba205 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_11.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MulanPSL-2.0 +--- + LICENSE {{MulanPSL-2.0}} https://spdx.org/licenses/MulanPSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_11.yml b/src/licensedcode/data/rules/mulanpsl-2.0_11.yml deleted file mode 100644 index 289867928a8..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MulanPSL-2.0 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_2.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_2.RULE index b1975fc7022..aaf4d14c5d0 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_2.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Mulan Permissive Software License, Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_2.yml b/src/licensedcode/data/rules/mulanpsl-2.0_2.yml deleted file mode 100644 index 866b0e517f2..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_3.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_3.RULE index 9c77321e721..7d19ef9b615 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_3.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MulanPSL-2.0 Mulan Permissive Software License, Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_3.yml b/src/licensedcode/data/rules/mulanpsl-2.0_3.yml deleted file mode 100644 index 866b0e517f2..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_4.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_4.RULE index 2674fdf8bbb..6e8870b629b 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_4.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mulan Permissive Software License, Version 2 MulanPSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_4.yml b/src/licensedcode/data/rules/mulanpsl-2.0_4.yml deleted file mode 100644 index 866b0e517f2..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_5.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_5.RULE index 164c9e1f960..19dd0fc9f75 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_5.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MulanPSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_5.yml b/src/licensedcode/data/rules/mulanpsl-2.0_5.yml deleted file mode 100644 index d8779ca8940..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_6.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_6.RULE index 76877a4aafd..d9a0a9643f9 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_6.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Mulan Permissive Software License, Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_6.yml b/src/licensedcode/data/rules/mulanpsl-2.0_6.yml deleted file mode 100644 index d8779ca8940..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_7.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_7.RULE index 3617a21a4a9..d0b0514bca7 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_7.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mulanpsl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MulanPSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_7.yml b/src/licensedcode/data/rules/mulanpsl-2.0_7.yml deleted file mode 100644 index d8779ca8940..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_8.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_8.RULE index 17eeb567ac4..556c36c9128 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_8.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mulanpsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MulanPSL-2.0 +--- + https://licenses.nuget.org/MulanPSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_8.yml b/src/licensedcode/data/rules/mulanpsl-2.0_8.yml deleted file mode 100644 index f15fe002f24..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MulanPSL-2.0 diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_9.RULE b/src/licensedcode/data/rules/mulanpsl-2.0_9.RULE index ca0064dd8ba..d090280e98f 100644 --- a/src/licensedcode/data/rules/mulanpsl-2.0_9.RULE +++ b/src/licensedcode/data/rules/mulanpsl-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mulanpsl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MulanPSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulanpsl-2.0_9.yml b/src/licensedcode/data/rules/mulanpsl-2.0_9.yml deleted file mode 100644 index 81187d007b1..00000000000 --- a/src/licensedcode/data/rules/mulanpsl-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulanpsl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mule-source-1.1.4_1.RULE b/src/licensedcode/data/rules/mule-source-1.1.4_1.RULE index e9c5d4872f9..fb8eee9a025 100644 --- a/src/licensedcode/data/rules/mule-source-1.1.4_1.RULE +++ b/src/licensedcode/data/rules/mule-source-1.1.4_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: mule-source-1.1.4 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + - The software in this package is published under the terms of the MuleSource MPL - license, a copy of which has been included with this distribution in the - LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mule-source-1.1.4_1.yml b/src/licensedcode/data/rules/mule-source-1.1.4_1.yml deleted file mode 100644 index c1206c9b5fd..00000000000 --- a/src/licensedcode/data/rules/mule-source-1.1.4_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mule-source-1.1.4 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/mulle-kybernetik.RULE b/src/licensedcode/data/rules/mulle-kybernetik.RULE index bd727cf420b..a09041da1bb 100644 --- a/src/licensedcode/data/rules/mulle-kybernetik.RULE +++ b/src/licensedcode/data/rules/mulle-kybernetik.RULE @@ -1 +1,9 @@ +--- +license_expression: mulle-kybernetik +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mulle-kybernetik.com/en/index.html +--- + http://www.mulle-kybernetik.com/en/index.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulle-kybernetik.yml b/src/licensedcode/data/rules/mulle-kybernetik.yml deleted file mode 100644 index f6f9dc09a4a..00000000000 --- a/src/licensedcode/data/rules/mulle-kybernetik.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mulle-kybernetik -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mulle-kybernetik.com/en/index.html diff --git a/src/licensedcode/data/rules/mulle-kybernetik2.RULE b/src/licensedcode/data/rules/mulle-kybernetik2.RULE index a465de2a411..0152d2af254 100644 --- a/src/licensedcode/data/rules/mulle-kybernetik2.RULE +++ b/src/licensedcode/data/rules/mulle-kybernetik2.RULE @@ -1 +1,7 @@ -Mulle Kybernetik License +--- +license_expression: mulle-kybernetik +is_license_reference: yes +relevance: 100 +--- + +Mulle Kybernetik License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulle-kybernetik2.yml b/src/licensedcode/data/rules/mulle-kybernetik2.yml deleted file mode 100644 index da824cbfddb..00000000000 --- a/src/licensedcode/data/rules/mulle-kybernetik2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mulle-kybernetik -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mulle-kybernetik3.RULE b/src/licensedcode/data/rules/mulle-kybernetik3.RULE index b1e4233bdb2..a5411f60987 100644 --- a/src/licensedcode/data/rules/mulle-kybernetik3.RULE +++ b/src/licensedcode/data/rules/mulle-kybernetik3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mulle-kybernetik +is_license_reference: yes +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the software, derivative works or modified versions, and any portions thereof, and that both notices appear in supporting documentation, and that credit is given to Mulle Kybernetik in all documents and publicity pertaining to direct or indirect use of this code or its derivatives. diff --git a/src/licensedcode/data/rules/mulle-kybernetik3.yml b/src/licensedcode/data/rules/mulle-kybernetik3.yml deleted file mode 100644 index 2c405cc5e6f..00000000000 --- a/src/licensedcode/data/rules/mulle-kybernetik3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mulle-kybernetik -is_license_reference: yes diff --git a/src/licensedcode/data/rules/mulle-kybernetik_1.RULE b/src/licensedcode/data/rules/mulle-kybernetik_1.RULE index a2e4f33c3af..b34a239fa36 100644 --- a/src/licensedcode/data/rules/mulle-kybernetik_1.RULE +++ b/src/licensedcode/data/rules/mulle-kybernetik_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mulle-kybernetik +is_license_text: yes +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of the @@ -12,4 +17,4 @@ SOME OF WHICH MAY HAVE SERIOUS CONSEQUENCES. ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING DIRECTLY OR INDIRECTLY FROM THE USE OF THIS SOFTWARE OR OF -ANY DERIVATIVE WORK. +ANY DERIVATIVE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mulle-kybernetik_1.yml b/src/licensedcode/data/rules/mulle-kybernetik_1.yml deleted file mode 100644 index 0123a1fdaaf..00000000000 --- a/src/licensedcode/data/rules/mulle-kybernetik_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mulle-kybernetik -is_license_text: yes diff --git a/src/licensedcode/data/rules/multics.RULE b/src/licensedcode/data/rules/multics.RULE index 78fb6fc2856..4fbbecc7811 100644 --- a/src/licensedcode/data/rules/multics.RULE +++ b/src/licensedcode/data/rules/multics.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/multics.txt +--- + http://opensource.org/licenses/multics.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics.SPDX.RULE b/src/licensedcode/data/rules/multics.SPDX.RULE index 63d2e7cf1b0..32d73f665c1 100644 --- a/src/licensedcode/data/rules/multics.SPDX.RULE +++ b/src/licensedcode/data/rules/multics.SPDX.RULE @@ -1,3 +1,19 @@ +--- +license_expression: multics +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems + Inc. + - Copyright 2006 by BULL HN Information Systems Inc. + - Copyright 2006 by Bull SAS +ignorable_holders: + - BULL HN Information Systems Inc. + - Bull SAS + - Massachusetts Institute of Technology and Honeywell Information Systems Inc. +--- + Multics License Historical Background diff --git a/src/licensedcode/data/rules/multics.SPDX.yml b/src/licensedcode/data/rules/multics.SPDX.yml deleted file mode 100644 index 4c2620bafca..00000000000 --- a/src/licensedcode/data/rules/multics.SPDX.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: multics -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems - Inc. - - Copyright 2006 by BULL HN Information Systems Inc. - - Copyright 2006 by Bull SAS -ignorable_holders: - - BULL HN Information Systems Inc. - - Bull SAS - - Massachusetts Institute of Technology and Honeywell Information Systems Inc. diff --git a/src/licensedcode/data/rules/multics.yml b/src/licensedcode/data/rules/multics.yml deleted file mode 100644 index e46edea7b0b..00000000000 --- a/src/licensedcode/data/rules/multics.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/multics.txt diff --git a/src/licensedcode/data/rules/multics_1.RULE b/src/licensedcode/data/rules/multics_1.RULE index fb9b113165e..277154934de 100644 --- a/src/licensedcode/data/rules/multics_1.RULE +++ b/src/licensedcode/data/rules/multics_1.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/multics.txt +--- + http://www.opensource.org/licenses/multics.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_1.yml b/src/licensedcode/data/rules/multics_1.yml deleted file mode 100644 index 8d69923cac6..00000000000 --- a/src/licensedcode/data/rules/multics_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/multics.txt diff --git a/src/licensedcode/data/rules/multics_10.RULE b/src/licensedcode/data/rules/multics_10.RULE index bc63dbda76d..c9da38143c0 100644 --- a/src/licensedcode/data/rules/multics_10.RULE +++ b/src/licensedcode/data/rules/multics_10.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Multics +--- + https://licenses.nuget.org/Multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_10.yml b/src/licensedcode/data/rules/multics_10.yml deleted file mode 100644 index ab5bfccce64..00000000000 --- a/src/licensedcode/data/rules/multics_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Multics diff --git a/src/licensedcode/data/rules/multics_11.RULE b/src/licensedcode/data/rules/multics_11.RULE index 470313992b8..c39f65dfa55 100644 --- a/src/licensedcode/data/rules/multics_11.RULE +++ b/src/licensedcode/data/rules/multics_11.RULE @@ -1 +1,7 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_11.yml b/src/licensedcode/data/rules/multics_11.yml deleted file mode 100644 index 43e8a994aff..00000000000 --- a/src/licensedcode/data/rules/multics_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/multics_12.RULE b/src/licensedcode/data/rules/multics_12.RULE index ab0690e08c4..590459ddfec 100644 --- a/src/licensedcode/data/rules/multics_12.RULE +++ b/src/licensedcode/data/rules/multics_12.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Multics +--- + LICENSE {{Multics}} https://spdx.org/licenses/Multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_12.yml b/src/licensedcode/data/rules/multics_12.yml deleted file mode 100644 index 54642061730..00000000000 --- a/src/licensedcode/data/rules/multics_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Multics diff --git a/src/licensedcode/data/rules/multics_13.RULE b/src/licensedcode/data/rules/multics_13.RULE index 8e9bf6a6089..74642210de9 100644 --- a/src/licensedcode/data/rules/multics_13.RULE +++ b/src/licensedcode/data/rules/multics_13.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Multics +--- + {{Multics}} https://spdx.org/licenses/Multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_13.yml b/src/licensedcode/data/rules/multics_13.yml deleted file mode 100644 index 54642061730..00000000000 --- a/src/licensedcode/data/rules/multics_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Multics diff --git a/src/licensedcode/data/rules/multics_2.RULE b/src/licensedcode/data/rules/multics_2.RULE index 347fef49f1c..736e6b1dc35 100644 --- a/src/licensedcode/data/rules/multics_2.RULE +++ b/src/licensedcode/data/rules/multics_2.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.multicians.org/ +--- + http://www.multicians.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_2.yml b/src/licensedcode/data/rules/multics_2.yml deleted file mode 100644 index 64ebe8996cd..00000000000 --- a/src/licensedcode/data/rules/multics_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.multicians.org/ diff --git a/src/licensedcode/data/rules/multics_3.RULE b/src/licensedcode/data/rules/multics_3.RULE index 8d120d161d4..623a863cdaf 100644 --- a/src/licensedcode/data/rules/multics_3.RULE +++ b/src/licensedcode/data/rules/multics_3.RULE @@ -1 +1,10 @@ +--- +license_expression: multics +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Multics License \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_3.yml b/src/licensedcode/data/rules/multics_3.yml deleted file mode 100644 index e1705b63b52..00000000000 --- a/src/licensedcode/data/rules/multics_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: multics -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/multics_4.RULE b/src/licensedcode/data/rules/multics_4.RULE index 94f1cb68760..8682328a7e4 100644 --- a/src/licensedcode/data/rules/multics_4.RULE +++ b/src/licensedcode/data/rules/multics_4.RULE @@ -1 +1,10 @@ +--- +license_expression: multics +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Multics License \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_4.yml b/src/licensedcode/data/rules/multics_4.yml deleted file mode 100644 index e1705b63b52..00000000000 --- a/src/licensedcode/data/rules/multics_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: multics -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/multics_5.RULE b/src/licensedcode/data/rules/multics_5.RULE index 5445f086687..ddc8ae15f23 100644 --- a/src/licensedcode/data/rules/multics_5.RULE +++ b/src/licensedcode/data/rules/multics_5.RULE @@ -1 +1,10 @@ +--- +license_expression: multics +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Multics Multics License \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_5.yml b/src/licensedcode/data/rules/multics_5.yml deleted file mode 100644 index e1705b63b52..00000000000 --- a/src/licensedcode/data/rules/multics_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: multics -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/multics_6.RULE b/src/licensedcode/data/rules/multics_6.RULE index a3e894ddac5..28c2480e10b 100644 --- a/src/licensedcode/data/rules/multics_6.RULE +++ b/src/licensedcode/data/rules/multics_6.RULE @@ -1 +1,10 @@ +--- +license_expression: multics +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Multics License Multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_6.yml b/src/licensedcode/data/rules/multics_6.yml deleted file mode 100644 index e1705b63b52..00000000000 --- a/src/licensedcode/data/rules/multics_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: multics -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/multics_7.RULE b/src/licensedcode/data/rules/multics_7.RULE index 5f7d14f5292..aa4a6ac143d 100644 --- a/src/licensedcode/data/rules/multics_7.RULE +++ b/src/licensedcode/data/rules/multics_7.RULE @@ -1 +1,10 @@ +--- +license_expression: multics +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_7.yml b/src/licensedcode/data/rules/multics_7.yml deleted file mode 100644 index 12fd638173a..00000000000 --- a/src/licensedcode/data/rules/multics_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: multics -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/multics_8.RULE b/src/licensedcode/data/rules/multics_8.RULE index 9a97f323bf8..8dcf1a4871f 100644 --- a/src/licensedcode/data/rules/multics_8.RULE +++ b/src/licensedcode/data/rules/multics_8.RULE @@ -1 +1,10 @@ +--- +license_expression: multics +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Multics License \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_8.yml b/src/licensedcode/data/rules/multics_8.yml deleted file mode 100644 index 12fd638173a..00000000000 --- a/src/licensedcode/data/rules/multics_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: multics -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/multics_9.RULE b/src/licensedcode/data/rules/multics_9.RULE index 4f38101f982..a629ce1f102 100644 --- a/src/licensedcode/data/rules/multics_9.RULE +++ b/src/licensedcode/data/rules/multics_9.RULE @@ -1 +1,10 @@ +--- +license_expression: multics +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_9.yml b/src/licensedcode/data/rules/multics_9.yml deleted file mode 100644 index 12fd638173a..00000000000 --- a/src/licensedcode/data/rules/multics_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: multics -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/multics_url_1.RULE b/src/licensedcode/data/rules/multics_url_1.RULE index 0273529270d..b70c27f0308 100644 --- a/src/licensedcode/data/rules/multics_url_1.RULE +++ b/src/licensedcode/data/rules/multics_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/multics +--- + https://spdx.org/licenses/multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_url_1.yml b/src/licensedcode/data/rules/multics_url_1.yml deleted file mode 100644 index 4fa195a4332..00000000000 --- a/src/licensedcode/data/rules/multics_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/multics diff --git a/src/licensedcode/data/rules/multics_url_2.RULE b/src/licensedcode/data/rules/multics_url_2.RULE index 7b261db7ddf..2d9e9ab23bd 100644 --- a/src/licensedcode/data/rules/multics_url_2.RULE +++ b/src/licensedcode/data/rules/multics_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/multics.html +--- + https://spdx.org/licenses/multics.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_url_2.yml b/src/licensedcode/data/rules/multics_url_2.yml deleted file mode 100644 index 0403b7c8106..00000000000 --- a/src/licensedcode/data/rules/multics_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/multics.html diff --git a/src/licensedcode/data/rules/multics_url_glc_198.RULE b/src/licensedcode/data/rules/multics_url_glc_198.RULE index 210199e149d..cc6a8e05285 100644 --- a/src/licensedcode/data/rules/multics_url_glc_198.RULE +++ b/src/licensedcode/data/rules/multics_url_glc_198.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/multics +--- + http://www.opensource.org/licenses/multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_url_glc_198.yml b/src/licensedcode/data/rules/multics_url_glc_198.yml deleted file mode 100644 index 7bf80ed594b..00000000000 --- a/src/licensedcode/data/rules/multics_url_glc_198.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/multics diff --git a/src/licensedcode/data/rules/multics_url_glc_199.RULE b/src/licensedcode/data/rules/multics_url_glc_199.RULE index 99313282bf1..809deb8bf52 100644 --- a/src/licensedcode/data/rules/multics_url_glc_199.RULE +++ b/src/licensedcode/data/rules/multics_url_glc_199.RULE @@ -1 +1,9 @@ +--- +license_expression: multics +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/multics +--- + https://www.opensource.org/licenses/multics \ No newline at end of file diff --git a/src/licensedcode/data/rules/multics_url_glc_199.yml b/src/licensedcode/data/rules/multics_url_glc_199.yml deleted file mode 100644 index 088f138abe9..00000000000 --- a/src/licensedcode/data/rules/multics_url_glc_199.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: multics -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/multics diff --git a/src/licensedcode/data/rules/mup_1.RULE b/src/licensedcode/data/rules/mup_1.RULE index 4a119738772..81acd64cf08 100644 --- a/src/licensedcode/data/rules/mup_1.RULE +++ b/src/licensedcode/data/rules/mup_1.RULE @@ -1 +1,10 @@ +--- +license_expression: mup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mup License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_1.yml b/src/licensedcode/data/rules/mup_1.yml deleted file mode 100644 index 2d9384e431d..00000000000 --- a/src/licensedcode/data/rules/mup_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mup_10.RULE b/src/licensedcode/data/rules/mup_10.RULE index 3afe83ded58..3bc6ebb0d4b 100644 --- a/src/licensedcode/data/rules/mup_10.RULE +++ b/src/licensedcode/data/rules/mup_10.RULE @@ -1 +1,9 @@ +--- +license_expression: mup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Mup +--- + {{Mup}} https://spdx.org/licenses/Mup \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_10.yml b/src/licensedcode/data/rules/mup_10.yml deleted file mode 100644 index f94dcd45cec..00000000000 --- a/src/licensedcode/data/rules/mup_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Mup diff --git a/src/licensedcode/data/rules/mup_11.RULE b/src/licensedcode/data/rules/mup_11.RULE index e0b4acd9647..5765705aa52 100644 --- a/src/licensedcode/data/rules/mup_11.RULE +++ b/src/licensedcode/data/rules/mup_11.RULE @@ -1 +1,9 @@ +--- +license_expression: mup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Mup +--- + LICENSE {{Mup}} https://spdx.org/licenses/Mup \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_11.yml b/src/licensedcode/data/rules/mup_11.yml deleted file mode 100644 index f94dcd45cec..00000000000 --- a/src/licensedcode/data/rules/mup_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Mup diff --git a/src/licensedcode/data/rules/mup_2.RULE b/src/licensedcode/data/rules/mup_2.RULE index 33ff689b499..5def1154305 100644 --- a/src/licensedcode/data/rules/mup_2.RULE +++ b/src/licensedcode/data/rules/mup_2.RULE @@ -1 +1,10 @@ +--- +license_expression: mup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Mup License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_2.yml b/src/licensedcode/data/rules/mup_2.yml deleted file mode 100644 index 2d9384e431d..00000000000 --- a/src/licensedcode/data/rules/mup_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mup_3.RULE b/src/licensedcode/data/rules/mup_3.RULE index 2e33937d11d..90d96c1fd86 100644 --- a/src/licensedcode/data/rules/mup_3.RULE +++ b/src/licensedcode/data/rules/mup_3.RULE @@ -1 +1,10 @@ +--- +license_expression: mup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mup Mup License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_3.yml b/src/licensedcode/data/rules/mup_3.yml deleted file mode 100644 index 2d9384e431d..00000000000 --- a/src/licensedcode/data/rules/mup_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mup_4.RULE b/src/licensedcode/data/rules/mup_4.RULE index 2c21379e021..39f9c334419 100644 --- a/src/licensedcode/data/rules/mup_4.RULE +++ b/src/licensedcode/data/rules/mup_4.RULE @@ -1 +1,10 @@ +--- +license_expression: mup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Mup License Mup \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_4.yml b/src/licensedcode/data/rules/mup_4.yml deleted file mode 100644 index 2d9384e431d..00000000000 --- a/src/licensedcode/data/rules/mup_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mup_5.RULE b/src/licensedcode/data/rules/mup_5.RULE index 63a0aaba293..84de39ec63d 100644 --- a/src/licensedcode/data/rules/mup_5.RULE +++ b/src/licensedcode/data/rules/mup_5.RULE @@ -1 +1,10 @@ +--- +license_expression: mup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Mup \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_5.yml b/src/licensedcode/data/rules/mup_5.yml deleted file mode 100644 index 6f38dbd0e55..00000000000 --- a/src/licensedcode/data/rules/mup_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mup_6.RULE b/src/licensedcode/data/rules/mup_6.RULE index 862f861eb89..d77559e69f3 100644 --- a/src/licensedcode/data/rules/mup_6.RULE +++ b/src/licensedcode/data/rules/mup_6.RULE @@ -1 +1,10 @@ +--- +license_expression: mup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Mup License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_6.yml b/src/licensedcode/data/rules/mup_6.yml deleted file mode 100644 index 6f38dbd0e55..00000000000 --- a/src/licensedcode/data/rules/mup_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mup_7.RULE b/src/licensedcode/data/rules/mup_7.RULE index 56e5db11bbc..a6fae64afd6 100644 --- a/src/licensedcode/data/rules/mup_7.RULE +++ b/src/licensedcode/data/rules/mup_7.RULE @@ -1 +1,10 @@ +--- +license_expression: mup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Mup \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_7.yml b/src/licensedcode/data/rules/mup_7.yml deleted file mode 100644 index 6f38dbd0e55..00000000000 --- a/src/licensedcode/data/rules/mup_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/mup_8.RULE b/src/licensedcode/data/rules/mup_8.RULE index 19b81536ef2..1fbb63361b4 100644 --- a/src/licensedcode/data/rules/mup_8.RULE +++ b/src/licensedcode/data/rules/mup_8.RULE @@ -1 +1,9 @@ +--- +license_expression: mup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Mup +--- + https://licenses.nuget.org/Mup \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_8.yml b/src/licensedcode/data/rules/mup_8.yml deleted file mode 100644 index 52fba7063b4..00000000000 --- a/src/licensedcode/data/rules/mup_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Mup diff --git a/src/licensedcode/data/rules/mup_9.RULE b/src/licensedcode/data/rules/mup_9.RULE index fc06663e25b..63dc39b400f 100644 --- a/src/licensedcode/data/rules/mup_9.RULE +++ b/src/licensedcode/data/rules/mup_9.RULE @@ -1 +1,7 @@ +--- +license_expression: mup +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Mup \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_9.yml b/src/licensedcode/data/rules/mup_9.yml deleted file mode 100644 index bbef8d4f018..00000000000 --- a/src/licensedcode/data/rules/mup_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mup -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mup_url_1.RULE b/src/licensedcode/data/rules/mup_url_1.RULE index 7ce99caf666..1b2229a0a27 100644 --- a/src/licensedcode/data/rules/mup_url_1.RULE +++ b/src/licensedcode/data/rules/mup_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: mup +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mup +--- + https://spdx.org/licenses/mup \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_url_1.yml b/src/licensedcode/data/rules/mup_url_1.yml deleted file mode 100644 index cbd62d3483d..00000000000 --- a/src/licensedcode/data/rules/mup_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mup -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mup diff --git a/src/licensedcode/data/rules/mup_url_2.RULE b/src/licensedcode/data/rules/mup_url_2.RULE index 7f2dbfd27b3..f264c960ef9 100644 --- a/src/licensedcode/data/rules/mup_url_2.RULE +++ b/src/licensedcode/data/rules/mup_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: mup +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/mup.html +--- + https://spdx.org/licenses/mup.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mup_url_2.yml b/src/licensedcode/data/rules/mup_url_2.yml deleted file mode 100644 index c21de2cfb1f..00000000000 --- a/src/licensedcode/data/rules/mup_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mup -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/mup.html diff --git a/src/licensedcode/data/rules/mx4j_1.RULE b/src/licensedcode/data/rules/mx4j_1.RULE index 0071e9399e1..85e1a34bf4d 100644 --- a/src/licensedcode/data/rules/mx4j_1.RULE +++ b/src/licensedcode/data/rules/mx4j_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: mx4j +is_license_text: yes +notes: MX4J variant +ignorable_copyrights: + - Copyright (c) 2001 MX4J. +ignorable_holders: + - MX4J +ignorable_authors: + - the MX4J project (http://mx4j.sourceforge.net) +ignorable_urls: + - http://mx4j.sourceforge.net/ +ignorable_emails: + - biorn_steedom@users.sourceforge.net +--- + * The MX4J License, Version 1.0 * * Copyright (c) 2001 MX4J. All rights reserved. diff --git a/src/licensedcode/data/rules/mx4j_1.yml b/src/licensedcode/data/rules/mx4j_1.yml deleted file mode 100644 index d1b5effc966..00000000000 --- a/src/licensedcode/data/rules/mx4j_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: mx4j -is_license_text: yes -notes: MX4J variant -ignorable_copyrights: - - Copyright (c) 2001 MX4J. -ignorable_holders: - - MX4J -ignorable_authors: - - the MX4J project (http://mx4j.sourceforge.net) -ignorable_urls: - - http://mx4j.sourceforge.net/ -ignorable_emails: - - biorn_steedom@users.sourceforge.net diff --git a/src/licensedcode/data/rules/mx4j_10.RULE b/src/licensedcode/data/rules/mx4j_10.RULE index 58236e62566..f743355e1fa 100644 --- a/src/licensedcode/data/rules/mx4j_10.RULE +++ b/src/licensedcode/data/rules/mx4j_10.RULE @@ -1 +1,7 @@ +--- +license_expression: mx4j +is_license_notice: yes +relevance: 100 +--- + {{MX4J License}} version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mx4j_10.yml b/src/licensedcode/data/rules/mx4j_10.yml deleted file mode 100644 index ee5ac3a288c..00000000000 --- a/src/licensedcode/data/rules/mx4j_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mx4j -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mx4j_2.RULE b/src/licensedcode/data/rules/mx4j_2.RULE index fdbe569c45c..bfc638ae26c 100644 --- a/src/licensedcode/data/rules/mx4j_2.RULE +++ b/src/licensedcode/data/rules/mx4j_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mx4j +is_license_reference: yes +relevance: 100 +--- + The MX4J License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mx4j_2.yml b/src/licensedcode/data/rules/mx4j_2.yml deleted file mode 100644 index f2f87b8e692..00000000000 --- a/src/licensedcode/data/rules/mx4j_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mx4j -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mx4j_3.RULE b/src/licensedcode/data/rules/mx4j_3.RULE index 206d276725d..a0ff88d0414 100644 --- a/src/licensedcode/data/rules/mx4j_3.RULE +++ b/src/licensedcode/data/rules/mx4j_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: mx4j +is_license_text: yes +notes: This is the license for Mx4j from http://mx4j.sourceforge.net/docs/ch01s06.html which + is essentially based on an Apache 1.1 template +ignorable_copyrights: + - Copyright (c) 2001-2004 by the MX4J contributors +ignorable_holders: + - the MX4J contributors +ignorable_authors: + - the MX4J project (http://mx4j.sourceforge.net) +ignorable_urls: + - http://mx4j.sourceforge.net/ +--- + The MX4J License, Version 1.0 Copyright (c) 2001-2004 by the MX4J contributors. All rights reserved. @@ -48,4 +63,4 @@ This software consists of voluntary contributions made by many individuals on behalf of the MX4J project. For more information on MX4J, please see - the MX4J website. + the MX4J website. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mx4j_3.yml b/src/licensedcode/data/rules/mx4j_3.yml deleted file mode 100644 index 563085f1914..00000000000 --- a/src/licensedcode/data/rules/mx4j_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: mx4j -is_license_text: yes -notes: This is the license for Mx4j from http://mx4j.sourceforge.net/docs/ch01s06.html which - is essentially based on an Apache 1.1 template -ignorable_copyrights: - - Copyright (c) 2001-2004 by the MX4J contributors -ignorable_holders: - - the MX4J contributors -ignorable_authors: - - the MX4J project (http://mx4j.sourceforge.net) -ignorable_urls: - - http://mx4j.sourceforge.net/ diff --git a/src/licensedcode/data/rules/mx4j_4.RULE b/src/licensedcode/data/rules/mx4j_4.RULE index e98c30cee95..16cdf4c7d33 100644 --- a/src/licensedcode/data/rules/mx4j_4.RULE +++ b/src/licensedcode/data/rules/mx4j_4.RULE @@ -1,3 +1,16 @@ +--- +license_expression: mx4j +is_license_text: yes +ignorable_copyrights: + - Copyright (c) by the MX4J contributors +ignorable_holders: + - the MX4J contributors +ignorable_authors: + - the MX4J project (http://mx4j.sourceforge.net) +ignorable_urls: + - http://mx4j.sourceforge.net/ +--- + The MX4J License, Version 1.0 Copyright (c)by the MX4J contributors. All rights reserved. diff --git a/src/licensedcode/data/rules/mx4j_4.yml b/src/licensedcode/data/rules/mx4j_4.yml deleted file mode 100644 index 5983364aad5..00000000000 --- a/src/licensedcode/data/rules/mx4j_4.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: mx4j -is_license_text: yes -ignorable_copyrights: - - Copyright (c) by the MX4J contributors -ignorable_holders: - - the MX4J contributors -ignorable_authors: - - the MX4J project (http://mx4j.sourceforge.net) -ignorable_urls: - - http://mx4j.sourceforge.net/ diff --git a/src/licensedcode/data/rules/mx4j_5.RULE b/src/licensedcode/data/rules/mx4j_5.RULE index 4514e5072cf..96b6282e387 100644 --- a/src/licensedcode/data/rules/mx4j_5.RULE +++ b/src/licensedcode/data/rules/mx4j_5.RULE @@ -1,2 +1,7 @@ +--- +license_expression: mx4j +is_license_notice: yes +--- + This software is distributed under the terms of the MX4J License version 1.0. See the terms of the MX4J License in the documentation provided with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mx4j_5.yml b/src/licensedcode/data/rules/mx4j_5.yml deleted file mode 100644 index 7f8e49ca68c..00000000000 --- a/src/licensedcode/data/rules/mx4j_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mx4j -is_license_notice: yes diff --git a/src/licensedcode/data/rules/mx4j_6.RULE b/src/licensedcode/data/rules/mx4j_6.RULE index f72379c117d..c1c4a77c0eb 100644 --- a/src/licensedcode/data/rules/mx4j_6.RULE +++ b/src/licensedcode/data/rules/mx4j_6.RULE @@ -1 +1,7 @@ +--- +license_expression: mx4j +is_license_notice: yes +relevance: 100 +--- + This software is distributed under the terms of the MX4J License version 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mx4j_6.yml b/src/licensedcode/data/rules/mx4j_6.yml deleted file mode 100644 index ee5ac3a288c..00000000000 --- a/src/licensedcode/data/rules/mx4j_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mx4j -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mx4j_7.RULE b/src/licensedcode/data/rules/mx4j_7.RULE index f618a67e295..2ae908da78b 100644 --- a/src/licensedcode/data/rules/mx4j_7.RULE +++ b/src/licensedcode/data/rules/mx4j_7.RULE @@ -1 +1,7 @@ +--- +license_expression: mx4j +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of the MX4J License version 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mx4j_7.yml b/src/licensedcode/data/rules/mx4j_7.yml deleted file mode 100644 index ee5ac3a288c..00000000000 --- a/src/licensedcode/data/rules/mx4j_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mx4j -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mx4j_8.RULE b/src/licensedcode/data/rules/mx4j_8.RULE index bcf1688012d..3fe4f8c0953 100644 --- a/src/licensedcode/data/rules/mx4j_8.RULE +++ b/src/licensedcode/data/rules/mx4j_8.RULE @@ -1 +1,7 @@ +--- +license_expression: mx4j +is_license_notice: yes +relevance: 100 +--- + MX4J is licensed under the The MX4J License version 1.0 . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mx4j_8.yml b/src/licensedcode/data/rules/mx4j_8.yml deleted file mode 100644 index ee5ac3a288c..00000000000 --- a/src/licensedcode/data/rules/mx4j_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mx4j -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/mx4j_9.RULE b/src/licensedcode/data/rules/mx4j_9.RULE index 39985969c78..238eea80a25 100644 --- a/src/licensedcode/data/rules/mx4j_9.RULE +++ b/src/licensedcode/data/rules/mx4j_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: mx4j +is_license_text: yes +ignorable_urls: + - http://mx4j.sourceforge.net/ +--- + 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. diff --git a/src/licensedcode/data/rules/mx4j_9.yml b/src/licensedcode/data/rules/mx4j_9.yml deleted file mode 100644 index 9eecb93347d..00000000000 --- a/src/licensedcode/data/rules/mx4j_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: mx4j -is_license_text: yes -ignorable_urls: - - http://mx4j.sourceforge.net/ diff --git a/src/licensedcode/data/rules/naist-2003_1.RULE b/src/licensedcode/data/rules/naist-2003_1.RULE index a71f9d36f7e..d24ea9d5416 100644 --- a/src/licensedcode/data/rules/naist-2003_1.RULE +++ b/src/licensedcode/data/rules/naist-2003_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://chasen.aist-nara.ac.jp/chasen/distribution.html +--- + # * IPADIC (Japanese) # - http://chasen.aist-nara.ac.jp/chasen/distribution.html # - Its license terms and conditions are shown below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_1.yml b/src/licensedcode/data/rules/naist-2003_1.yml deleted file mode 100644 index e62a75af39b..00000000000 --- a/src/licensedcode/data/rules/naist-2003_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://chasen.aist-nara.ac.jp/chasen/distribution.html diff --git a/src/licensedcode/data/rules/naist-2003_10.RULE b/src/licensedcode/data/rules/naist-2003_10.RULE index d633f9c05b8..d5a99d916c1 100644 --- a/src/licensedcode/data/rules/naist-2003_10.RULE +++ b/src/licensedcode/data/rules/naist-2003_10.RULE @@ -1 +1,9 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NAIST-2003 +--- + https://licenses.nuget.org/NAIST-2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_10.yml b/src/licensedcode/data/rules/naist-2003_10.yml deleted file mode 100644 index 7560dfdab5c..00000000000 --- a/src/licensedcode/data/rules/naist-2003_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NAIST-2003 diff --git a/src/licensedcode/data/rules/naist-2003_11.RULE b/src/licensedcode/data/rules/naist-2003_11.RULE index 4dd1295ccdc..74bd4c3fe7f 100644 --- a/src/licensedcode/data/rules/naist-2003_11.RULE +++ b/src/licensedcode/data/rules/naist-2003_11.RULE @@ -1 +1,7 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NAIST-2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_11.yml b/src/licensedcode/data/rules/naist-2003_11.yml deleted file mode 100644 index 61d067d251b..00000000000 --- a/src/licensedcode/data/rules/naist-2003_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/naist-2003_12.RULE b/src/licensedcode/data/rules/naist-2003_12.RULE index f6bc0c62f2f..48884c59f10 100644 --- a/src/licensedcode/data/rules/naist-2003_12.RULE +++ b/src/licensedcode/data/rules/naist-2003_12.RULE @@ -1 +1,9 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NAIST-2003 +--- + {{NAIST-2003}} https://spdx.org/licenses/NAIST-2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_12.yml b/src/licensedcode/data/rules/naist-2003_12.yml deleted file mode 100644 index a4e646954bf..00000000000 --- a/src/licensedcode/data/rules/naist-2003_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NAIST-2003 diff --git a/src/licensedcode/data/rules/naist-2003_13.RULE b/src/licensedcode/data/rules/naist-2003_13.RULE index f76f57731b5..d9089fa32f6 100644 --- a/src/licensedcode/data/rules/naist-2003_13.RULE +++ b/src/licensedcode/data/rules/naist-2003_13.RULE @@ -1 +1,9 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NAIST-2003 +--- + LICENSE {{NAIST-2003}} https://spdx.org/licenses/NAIST-2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_13.yml b/src/licensedcode/data/rules/naist-2003_13.yml deleted file mode 100644 index a4e646954bf..00000000000 --- a/src/licensedcode/data/rules/naist-2003_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NAIST-2003 diff --git a/src/licensedcode/data/rules/naist-2003_2.RULE b/src/licensedcode/data/rules/naist-2003_2.RULE index a1544223754..ead1a7ea76f 100644 --- a/src/licensedcode/data/rules/naist-2003_2.RULE +++ b/src/licensedcode/data/rules/naist-2003_2.RULE @@ -1 +1,10 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Nara Institute of Science and Technology License (2003) \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_2.yml b/src/licensedcode/data/rules/naist-2003_2.yml deleted file mode 100644 index 47c63b36a34..00000000000 --- a/src/licensedcode/data/rules/naist-2003_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naist-2003_3.RULE b/src/licensedcode/data/rules/naist-2003_3.RULE index 8e0acf77d89..13288c0c256 100644 --- a/src/licensedcode/data/rules/naist-2003_3.RULE +++ b/src/licensedcode/data/rules/naist-2003_3.RULE @@ -1 +1,10 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Nara Institute of Science and Technology License (2003) \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_3.yml b/src/licensedcode/data/rules/naist-2003_3.yml deleted file mode 100644 index 47c63b36a34..00000000000 --- a/src/licensedcode/data/rules/naist-2003_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naist-2003_4.RULE b/src/licensedcode/data/rules/naist-2003_4.RULE index ad2fdaf2489..2dbc618e56f 100644 --- a/src/licensedcode/data/rules/naist-2003_4.RULE +++ b/src/licensedcode/data/rules/naist-2003_4.RULE @@ -1 +1,10 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NAIST-2003 Nara Institute of Science and Technology License (2003) \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_4.yml b/src/licensedcode/data/rules/naist-2003_4.yml deleted file mode 100644 index 47c63b36a34..00000000000 --- a/src/licensedcode/data/rules/naist-2003_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naist-2003_5.RULE b/src/licensedcode/data/rules/naist-2003_5.RULE index 4e215908414..01a86e9b4c0 100644 --- a/src/licensedcode/data/rules/naist-2003_5.RULE +++ b/src/licensedcode/data/rules/naist-2003_5.RULE @@ -1 +1,10 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Nara Institute of Science and Technology License (2003) NAIST-2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_5.yml b/src/licensedcode/data/rules/naist-2003_5.yml deleted file mode 100644 index 47c63b36a34..00000000000 --- a/src/licensedcode/data/rules/naist-2003_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naist-2003_6.RULE b/src/licensedcode/data/rules/naist-2003_6.RULE index b5591c0f665..fff4da13af3 100644 --- a/src/licensedcode/data/rules/naist-2003_6.RULE +++ b/src/licensedcode/data/rules/naist-2003_6.RULE @@ -1 +1,10 @@ +--- +license_expression: naist-2003 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NAIST-2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_6.yml b/src/licensedcode/data/rules/naist-2003_6.yml deleted file mode 100644 index 1965d5ede8b..00000000000 --- a/src/licensedcode/data/rules/naist-2003_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naist-2003 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naist-2003_7.RULE b/src/licensedcode/data/rules/naist-2003_7.RULE index 33a03383d35..8b9b4c89af4 100644 --- a/src/licensedcode/data/rules/naist-2003_7.RULE +++ b/src/licensedcode/data/rules/naist-2003_7.RULE @@ -1 +1,10 @@ +--- +license_expression: naist-2003 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Nara Institute of Science and Technology License (2003) \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_7.yml b/src/licensedcode/data/rules/naist-2003_7.yml deleted file mode 100644 index 1965d5ede8b..00000000000 --- a/src/licensedcode/data/rules/naist-2003_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naist-2003 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naist-2003_8.RULE b/src/licensedcode/data/rules/naist-2003_8.RULE index f34872c48fa..641ff0e1909 100644 --- a/src/licensedcode/data/rules/naist-2003_8.RULE +++ b/src/licensedcode/data/rules/naist-2003_8.RULE @@ -1 +1,10 @@ +--- +license_expression: naist-2003 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NAIST-2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_8.yml b/src/licensedcode/data/rules/naist-2003_8.yml deleted file mode 100644 index 1965d5ede8b..00000000000 --- a/src/licensedcode/data/rules/naist-2003_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naist-2003 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naist-2003_9.RULE b/src/licensedcode/data/rules/naist-2003_9.RULE index 8fc9bc80041..db5f4efe00e 100644 --- a/src/licensedcode/data/rules/naist-2003_9.RULE +++ b/src/licensedcode/data/rules/naist-2003_9.RULE @@ -1 +1,9 @@ +--- +license_expression: naist-2003 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NAIST-2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-2003_9.yml b/src/licensedcode/data/rules/naist-2003_9.yml deleted file mode 100644 index d6e9882aad5..00000000000 --- a/src/licensedcode/data/rules/naist-2003_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naist-2003 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/naist-mecab.RULE b/src/licensedcode/data/rules/naist-mecab.RULE index ae7c0d8eb2b..ac704310a84 100644 --- a/src/licensedcode/data/rules/naist-mecab.RULE +++ b/src/licensedcode/data/rules/naist-mecab.RULE @@ -1,3 +1,8 @@ +--- +license_expression: naist-2003 +is_license_text: yes +--- + Nara Institute of Science and Technology (NAIST), the copyright holders, disclaims all warranties with regard to this software, including all implied warranties of merchantability and @@ -59,4 +64,4 @@ any person, organization or entity other than ICOT, unless it makes or grants independently of ICOT any specific warranty to the user in writing, such person, organization or entity, will also be exempted from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. +above as far as the program is concerned. \ No newline at end of file diff --git a/src/licensedcode/data/rules/naist-mecab.yml b/src/licensedcode/data/rules/naist-mecab.yml deleted file mode 100644 index 53035c278e9..00000000000 --- a/src/licensedcode/data/rules/naist-mecab.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: naist-2003 -is_license_text: yes diff --git a/src/licensedcode/data/rules/nasa-1.3.RULE b/src/licensedcode/data/rules/nasa-1.3.RULE index 42809ef09e5..94ab93e2d97 100644 --- a/src/licensedcode/data/rules/nasa-1.3.RULE +++ b/src/licensedcode/data/rules/nasa-1.3.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ti.arc.nasa.gov/opensource/nosa/ +--- + http://ti.arc.nasa.gov/opensource/nosa/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3.SPDX.RULE b/src/licensedcode/data/rules/nasa-1.3.SPDX.RULE index 0424e541cf5..86885de70af 100644 --- a/src/licensedcode/data/rules/nasa-1.3.SPDX.RULE +++ b/src/licensedcode/data/rules/nasa-1.3.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + NASA OPEN SOURCE AGREEMENT VERSION 1.3 THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT AGENCY"). THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT. diff --git a/src/licensedcode/data/rules/nasa-1.3.SPDX.yml b/src/licensedcode/data/rules/nasa-1.3.SPDX.yml deleted file mode 100644 index 313b9420f59..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: nasa-1.3 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/nasa-1.3.yml b/src/licensedcode/data/rules/nasa-1.3.yml deleted file mode 100644 index 39346fd69e0..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ti.arc.nasa.gov/opensource/nosa/ diff --git a/src/licensedcode/data/rules/nasa-1.3_1.RULE b/src/licensedcode/data/rules/nasa-1.3_1.RULE index 15356ac560d..722c28f7d81 100644 --- a/src/licensedcode/data/rules/nasa-1.3_1.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt +--- + http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_1.yml b/src/licensedcode/data/rules/nasa-1.3_1.yml deleted file mode 100644 index 5a35fe47ea2..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.arc.nasa.gov/static/html/NASA_Open_Source_Agreement_1.3.txt diff --git a/src/licensedcode/data/rules/nasa-1.3_10.RULE b/src/licensedcode/data/rules/nasa-1.3_10.RULE index 9006c13690c..d85687b8029 100644 --- a/src/licensedcode/data/rules/nasa-1.3_10.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_10.RULE @@ -1 +1,7 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/NASA_Open_Source_Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_10.yml b/src/licensedcode/data/rules/nasa-1.3_10.yml deleted file mode 100644 index c5774af6b9c..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/nasa-1.3_11.RULE b/src/licensedcode/data/rules/nasa-1.3_11.RULE index 944031d58ae..f1b6c52c8cf 100644 --- a/src/licensedcode/data/rules/nasa-1.3_11.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_11.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NASA-1.3 +--- + https://licenses.nuget.org/NASA-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_11.yml b/src/licensedcode/data/rules/nasa-1.3_11.yml deleted file mode 100644 index 5b785ce8855..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NASA-1.3 diff --git a/src/licensedcode/data/rules/nasa-1.3_12.RULE b/src/licensedcode/data/rules/nasa-1.3_12.RULE index e55e8c331f0..7e527e5d2c0 100644 --- a/src/licensedcode/data/rules/nasa-1.3_12.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_12.RULE @@ -1 +1,7 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NASA-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_12.yml b/src/licensedcode/data/rules/nasa-1.3_12.yml deleted file mode 100644 index 856b9a0d5b8..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nasa-1.3_13.RULE b/src/licensedcode/data/rules/nasa-1.3_13.RULE index be94c00f066..9a20df857e5 100644 --- a/src/licensedcode/data/rules/nasa-1.3_13.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_13.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NASA-1.3 +--- + LICENSE {{NASA-1.3}} https://spdx.org/licenses/NASA-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_13.yml b/src/licensedcode/data/rules/nasa-1.3_13.yml deleted file mode 100644 index bde1d4ecaf8..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NASA-1.3 diff --git a/src/licensedcode/data/rules/nasa-1.3_14.RULE b/src/licensedcode/data/rules/nasa-1.3_14.RULE index 2a4204a8e63..d2afa0b5cb5 100644 --- a/src/licensedcode/data/rules/nasa-1.3_14.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_14.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NASA-1.3 +--- + {{NASA-1.3}} https://spdx.org/licenses/NASA-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_14.yml b/src/licensedcode/data/rules/nasa-1.3_14.yml deleted file mode 100644 index bde1d4ecaf8..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NASA-1.3 diff --git a/src/licensedcode/data/rules/nasa-1.3_2.RULE b/src/licensedcode/data/rules/nasa-1.3_2.RULE index 81addcb5c0d..a71e214f7ae 100644 --- a/src/licensedcode/data/rules/nasa-1.3_2.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_text: yes +minimum_coverage: 10 +--- + ASA OPEN SOURCE AGREEMENT VERSION 1.3 THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT AGENCY"). THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT. diff --git a/src/licensedcode/data/rules/nasa-1.3_2.yml b/src/licensedcode/data/rules/nasa-1.3_2.yml deleted file mode 100644 index 394fb190d1f..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nasa-1.3 -is_license_text: yes -minimum_coverage: 10 diff --git a/src/licensedcode/data/rules/nasa-1.3_3.RULE b/src/licensedcode/data/rules/nasa-1.3_3.RULE index 4de7f6bb885..580e1c9d8e6 100644 --- a/src/licensedcode/data/rules/nasa-1.3_3.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_3.RULE @@ -1 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NASA Open Source Agreement 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_3.yml b/src/licensedcode/data/rules/nasa-1.3_3.yml deleted file mode 100644 index 2dfd076b430..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nasa-1.3_4.RULE b/src/licensedcode/data/rules/nasa-1.3_4.RULE index 2f9de37fb03..cea7ecf570d 100644 --- a/src/licensedcode/data/rules/nasa-1.3_4.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_4.RULE @@ -1 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: NASA Open Source Agreement 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_4.yml b/src/licensedcode/data/rules/nasa-1.3_4.yml deleted file mode 100644 index 2dfd076b430..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nasa-1.3_5.RULE b/src/licensedcode/data/rules/nasa-1.3_5.RULE index ed4b0594be0..35ab57b1652 100644 --- a/src/licensedcode/data/rules/nasa-1.3_5.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NASA-1.3 NASA Open Source Agreement 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_5.yml b/src/licensedcode/data/rules/nasa-1.3_5.yml deleted file mode 100644 index 2dfd076b430..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nasa-1.3_6.RULE b/src/licensedcode/data/rules/nasa-1.3_6.RULE index a4e8f02a564..486b5456c39 100644 --- a/src/licensedcode/data/rules/nasa-1.3_6.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NASA Open Source Agreement 1.3 NASA-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_6.yml b/src/licensedcode/data/rules/nasa-1.3_6.yml deleted file mode 100644 index 2dfd076b430..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nasa-1.3_7.RULE b/src/licensedcode/data/rules/nasa-1.3_7.RULE index 30b940a6d1d..7ef278602e1 100644 --- a/src/licensedcode/data/rules/nasa-1.3_7.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NASA-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_7.yml b/src/licensedcode/data/rules/nasa-1.3_7.yml deleted file mode 100644 index ac7a1d9f86d..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nasa-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nasa-1.3_8.RULE b/src/licensedcode/data/rules/nasa-1.3_8.RULE index 1dafbd8fb8c..040cbb88301 100644 --- a/src/licensedcode/data/rules/nasa-1.3_8.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_8.RULE @@ -1 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NASA Open Source Agreement 1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_8.yml b/src/licensedcode/data/rules/nasa-1.3_8.yml deleted file mode 100644 index ac7a1d9f86d..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nasa-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nasa-1.3_9.RULE b/src/licensedcode/data/rules/nasa-1.3_9.RULE index 68522b4a00b..65787b1fa65 100644 --- a/src/licensedcode/data/rules/nasa-1.3_9.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_9.RULE @@ -1 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NASA-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_9.yml b/src/licensedcode/data/rules/nasa-1.3_9.yml deleted file mode 100644 index ac7a1d9f86d..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nasa-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nasa-1.3_url_1.RULE b/src/licensedcode/data/rules/nasa-1.3_url_1.RULE index 12581d67495..04fd4850bac 100644 --- a/src/licensedcode/data/rules/nasa-1.3_url_1.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nasa-1.3 +--- + https://spdx.org/licenses/nasa-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_url_1.yml b/src/licensedcode/data/rules/nasa-1.3_url_1.yml deleted file mode 100644 index f5d04929b1b..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nasa-1.3 diff --git a/src/licensedcode/data/rules/nasa-1.3_url_2.RULE b/src/licensedcode/data/rules/nasa-1.3_url_2.RULE index 689f9ced776..0f5b6346e7b 100644 --- a/src/licensedcode/data/rules/nasa-1.3_url_2.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nasa-1.3.html +--- + https://spdx.org/licenses/nasa-1.3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_url_2.yml b/src/licensedcode/data/rules/nasa-1.3_url_2.yml deleted file mode 100644 index 221c794a507..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nasa-1.3.html diff --git a/src/licensedcode/data/rules/nasa-1.3_url_glc_200.RULE b/src/licensedcode/data/rules/nasa-1.3_url_glc_200.RULE index fa85417a99b..479a5bba29a 100644 --- a/src/licensedcode/data/rules/nasa-1.3_url_glc_200.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_url_glc_200.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/nasa-1.3 +--- + http://www.opensource.org/licenses/nasa-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_url_glc_200.yml b/src/licensedcode/data/rules/nasa-1.3_url_glc_200.yml deleted file mode 100644 index d2862da2586..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_url_glc_200.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/nasa-1.3 diff --git a/src/licensedcode/data/rules/nasa-1.3_url_glc_201.RULE b/src/licensedcode/data/rules/nasa-1.3_url_glc_201.RULE index fca1427a49d..7eea500c329 100644 --- a/src/licensedcode/data/rules/nasa-1.3_url_glc_201.RULE +++ b/src/licensedcode/data/rules/nasa-1.3_url_glc_201.RULE @@ -1 +1,9 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/nasa-1.3 +--- + https://www.opensource.org/licenses/nasa-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nasa-1.3_url_glc_201.yml b/src/licensedcode/data/rules/nasa-1.3_url_glc_201.yml deleted file mode 100644 index 2ede3e4893a..00000000000 --- a/src/licensedcode/data/rules/nasa-1.3_url_glc_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/nasa-1.3 diff --git a/src/licensedcode/data/rules/naughter2.RULE b/src/licensedcode/data/rules/naughter2.RULE index a5325698525..8f6093cd3c2 100644 --- a/src/licensedcode/data/rules/naughter2.RULE +++ b/src/licensedcode/data/rules/naughter2.RULE @@ -1 +1,7 @@ -Naughter Software License +--- +license_expression: naughter +is_license_reference: yes +relevance: 100 +--- + +Naughter Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/naughter2.yml b/src/licensedcode/data/rules/naughter2.yml deleted file mode 100644 index 52c9a19a54c..00000000000 --- a/src/licensedcode/data/rules/naughter2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: naughter -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/naumen.RULE b/src/licensedcode/data/rules/naumen.RULE index 0315d2551a6..713c0250d37 100644 --- a/src/licensedcode/data/rules/naumen.RULE +++ b/src/licensedcode/data/rules/naumen.RULE @@ -1 +1,7 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 100 +--- + Naumen Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen.yml b/src/licensedcode/data/rules/naumen.yml deleted file mode 100644 index 3fc10e84ea8..00000000000 --- a/src/licensedcode/data/rules/naumen.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/naumen_1.RULE b/src/licensedcode/data/rules/naumen_1.RULE index 597b329b76f..defd106f63b 100644 --- a/src/licensedcode/data/rules/naumen_1.RULE +++ b/src/licensedcode/data/rules/naumen_1.RULE @@ -1 +1,9 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/naumen.php +--- + http://www.opensource.org/licenses/naumen.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_1.yml b/src/licensedcode/data/rules/naumen_1.yml deleted file mode 100644 index 9a3077c408b..00000000000 --- a/src/licensedcode/data/rules/naumen_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/naumen.php diff --git a/src/licensedcode/data/rules/naumen_10.RULE b/src/licensedcode/data/rules/naumen_10.RULE index f6daffeba50..208366efc63 100644 --- a/src/licensedcode/data/rules/naumen_10.RULE +++ b/src/licensedcode/data/rules/naumen_10.RULE @@ -1 +1,9 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Naumen +--- + {{Naumen}} https://spdx.org/licenses/Naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_10.yml b/src/licensedcode/data/rules/naumen_10.yml deleted file mode 100644 index c25ce632eb8..00000000000 --- a/src/licensedcode/data/rules/naumen_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Naumen diff --git a/src/licensedcode/data/rules/naumen_11.RULE b/src/licensedcode/data/rules/naumen_11.RULE index f15920c9b52..ea577cf5795 100644 --- a/src/licensedcode/data/rules/naumen_11.RULE +++ b/src/licensedcode/data/rules/naumen_11.RULE @@ -1 +1,9 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Naumen +--- + LICENSE {{Naumen}} https://spdx.org/licenses/Naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_11.yml b/src/licensedcode/data/rules/naumen_11.yml deleted file mode 100644 index c25ce632eb8..00000000000 --- a/src/licensedcode/data/rules/naumen_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Naumen diff --git a/src/licensedcode/data/rules/naumen_2.RULE b/src/licensedcode/data/rules/naumen_2.RULE index 61e70423a43..ec3da60ecf0 100644 --- a/src/licensedcode/data/rules/naumen_2.RULE +++ b/src/licensedcode/data/rules/naumen_2.RULE @@ -1 +1,10 @@ +--- +license_expression: naumen +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Naumen Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_2.yml b/src/licensedcode/data/rules/naumen_2.yml deleted file mode 100644 index f418c8d66e8..00000000000 --- a/src/licensedcode/data/rules/naumen_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naumen -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naumen_3.RULE b/src/licensedcode/data/rules/naumen_3.RULE index a968730d43e..f5f0f022c9d 100644 --- a/src/licensedcode/data/rules/naumen_3.RULE +++ b/src/licensedcode/data/rules/naumen_3.RULE @@ -1 +1,10 @@ +--- +license_expression: naumen +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Naumen Naumen Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_3.yml b/src/licensedcode/data/rules/naumen_3.yml deleted file mode 100644 index f418c8d66e8..00000000000 --- a/src/licensedcode/data/rules/naumen_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naumen -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naumen_4.RULE b/src/licensedcode/data/rules/naumen_4.RULE index 9f0a53e405d..262aad7c581 100644 --- a/src/licensedcode/data/rules/naumen_4.RULE +++ b/src/licensedcode/data/rules/naumen_4.RULE @@ -1 +1,10 @@ +--- +license_expression: naumen +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Naumen Public License Naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_4.yml b/src/licensedcode/data/rules/naumen_4.yml deleted file mode 100644 index f418c8d66e8..00000000000 --- a/src/licensedcode/data/rules/naumen_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naumen -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naumen_5.RULE b/src/licensedcode/data/rules/naumen_5.RULE index 9b5712f9242..cb2fcbd0fda 100644 --- a/src/licensedcode/data/rules/naumen_5.RULE +++ b/src/licensedcode/data/rules/naumen_5.RULE @@ -1 +1,10 @@ +--- +license_expression: naumen +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_5.yml b/src/licensedcode/data/rules/naumen_5.yml deleted file mode 100644 index 73dc385bf7f..00000000000 --- a/src/licensedcode/data/rules/naumen_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naumen -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naumen_6.RULE b/src/licensedcode/data/rules/naumen_6.RULE index e3f6718bf26..390d7dff56d 100644 --- a/src/licensedcode/data/rules/naumen_6.RULE +++ b/src/licensedcode/data/rules/naumen_6.RULE @@ -1 +1,10 @@ +--- +license_expression: naumen +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Naumen Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_6.yml b/src/licensedcode/data/rules/naumen_6.yml deleted file mode 100644 index 73dc385bf7f..00000000000 --- a/src/licensedcode/data/rules/naumen_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naumen -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naumen_7.RULE b/src/licensedcode/data/rules/naumen_7.RULE index 62354e258c1..d021958fda0 100644 --- a/src/licensedcode/data/rules/naumen_7.RULE +++ b/src/licensedcode/data/rules/naumen_7.RULE @@ -1 +1,10 @@ +--- +license_expression: naumen +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_7.yml b/src/licensedcode/data/rules/naumen_7.yml deleted file mode 100644 index 73dc385bf7f..00000000000 --- a/src/licensedcode/data/rules/naumen_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: naumen -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/naumen_8.RULE b/src/licensedcode/data/rules/naumen_8.RULE index 9adde118826..5898402b355 100644 --- a/src/licensedcode/data/rules/naumen_8.RULE +++ b/src/licensedcode/data/rules/naumen_8.RULE @@ -1 +1,9 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Naumen +--- + https://licenses.nuget.org/Naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_8.yml b/src/licensedcode/data/rules/naumen_8.yml deleted file mode 100644 index 82c1e8c2a51..00000000000 --- a/src/licensedcode/data/rules/naumen_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Naumen diff --git a/src/licensedcode/data/rules/naumen_9.RULE b/src/licensedcode/data/rules/naumen_9.RULE index f876a7b486a..5e9a35035f9 100644 --- a/src/licensedcode/data/rules/naumen_9.RULE +++ b/src/licensedcode/data/rules/naumen_9.RULE @@ -1 +1,7 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_9.yml b/src/licensedcode/data/rules/naumen_9.yml deleted file mode 100644 index 3fc10e84ea8..00000000000 --- a/src/licensedcode/data/rules/naumen_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/naumen_url_1.RULE b/src/licensedcode/data/rules/naumen_url_1.RULE index d885e8cb50b..40fdba4c8d8 100644 --- a/src/licensedcode/data/rules/naumen_url_1.RULE +++ b/src/licensedcode/data/rules/naumen_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/naumen +--- + https://spdx.org/licenses/naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_url_1.yml b/src/licensedcode/data/rules/naumen_url_1.yml deleted file mode 100644 index 0da00cf0ce0..00000000000 --- a/src/licensedcode/data/rules/naumen_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/naumen diff --git a/src/licensedcode/data/rules/naumen_url_2.RULE b/src/licensedcode/data/rules/naumen_url_2.RULE index 83dcde71a7d..03f616bedba 100644 --- a/src/licensedcode/data/rules/naumen_url_2.RULE +++ b/src/licensedcode/data/rules/naumen_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/naumen.html +--- + https://spdx.org/licenses/naumen.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_url_2.yml b/src/licensedcode/data/rules/naumen_url_2.yml deleted file mode 100644 index 9c572881d0c..00000000000 --- a/src/licensedcode/data/rules/naumen_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/naumen.html diff --git a/src/licensedcode/data/rules/naumen_url_glc_210.RULE b/src/licensedcode/data/rules/naumen_url_glc_210.RULE index 868d53756cf..2a5398155fb 100644 --- a/src/licensedcode/data/rules/naumen_url_glc_210.RULE +++ b/src/licensedcode/data/rules/naumen_url_glc_210.RULE @@ -1 +1,9 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/naumen +--- + http://www.opensource.org/licenses/naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_url_glc_210.yml b/src/licensedcode/data/rules/naumen_url_glc_210.yml deleted file mode 100644 index df67d4b1974..00000000000 --- a/src/licensedcode/data/rules/naumen_url_glc_210.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/naumen diff --git a/src/licensedcode/data/rules/naumen_url_glc_211.RULE b/src/licensedcode/data/rules/naumen_url_glc_211.RULE index b8a34ef3dab..59e9bd70016 100644 --- a/src/licensedcode/data/rules/naumen_url_glc_211.RULE +++ b/src/licensedcode/data/rules/naumen_url_glc_211.RULE @@ -1 +1,9 @@ +--- +license_expression: naumen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/naumen +--- + https://www.opensource.org/licenses/naumen \ No newline at end of file diff --git a/src/licensedcode/data/rules/naumen_url_glc_211.yml b/src/licensedcode/data/rules/naumen_url_glc_211.yml deleted file mode 100644 index a68d25015d2..00000000000 --- a/src/licensedcode/data/rules/naumen_url_glc_211.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: naumen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/naumen diff --git a/src/licensedcode/data/rules/nbpl-1.0.RULE b/src/licensedcode/data/rules/nbpl-1.0.RULE index a9be4018740..7c88f161a9d 100644 --- a/src/licensedcode/data/rules/nbpl-1.0.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nbpl-1.0 +is_license_text: yes +--- + Note: This license is derived from the "Artistic License" as distributed with the Perl Programming Language. Its terms are different from @@ -111,4 +116,4 @@ products derived from this software without specific prior written permission. 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0.yml b/src/licensedcode/data/rules/nbpl-1.0.yml deleted file mode 100644 index 6a5a43f758f..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nbpl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/nbpl-1.0_1.RULE b/src/licensedcode/data/rules/nbpl-1.0_1.RULE index e3a2f6ee553..4ee2dc68b78 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nbpl-1.0 +is_license_text: yes +--- + The Net Boolean Public License Version 1, date 22 August 1998 @@ -117,4 +122,4 @@ products derived from this software without specific prior written permission. 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_1.yml b/src/licensedcode/data/rules/nbpl-1.0_1.yml deleted file mode 100644 index 6a5a43f758f..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nbpl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/nbpl-1.0_10.RULE b/src/licensedcode/data/rules/nbpl-1.0_10.RULE index 215114d9ea8..ba53e2c3914 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_10.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NBPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_10.yml b/src/licensedcode/data/rules/nbpl-1.0_10.yml deleted file mode 100644 index d683564d15e..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nbpl-1.0_11.RULE b/src/licensedcode/data/rules/nbpl-1.0_11.RULE index dd40686310d..4ecff4702dd 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_11.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NBPL-1.0 +--- + LICENSE {{NBPL-1.0}} https://spdx.org/licenses/NBPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_11.yml b/src/licensedcode/data/rules/nbpl-1.0_11.yml deleted file mode 100644 index bb8aea3c301..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NBPL-1.0 diff --git a/src/licensedcode/data/rules/nbpl-1.0_12.RULE b/src/licensedcode/data/rules/nbpl-1.0_12.RULE index 5ec69399b05..be0a07fcfe2 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_12.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NBPL-1.0 +--- + {{NBPL-1.0}} https://spdx.org/licenses/NBPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_12.yml b/src/licensedcode/data/rules/nbpl-1.0_12.yml deleted file mode 100644 index bb8aea3c301..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NBPL-1.0 diff --git a/src/licensedcode/data/rules/nbpl-1.0_2.RULE b/src/licensedcode/data/rules/nbpl-1.0_2.RULE index 88a6b2a0133..546532e94e1 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NBPL-1.0 Net Boolean Public License v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_2.yml b/src/licensedcode/data/rules/nbpl-1.0_2.yml deleted file mode 100644 index 6fac749cf3c..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nbpl-1.0_3.RULE b/src/licensedcode/data/rules/nbpl-1.0_3.RULE index a86ea241525..936cbf72f6a 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_3.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Net Boolean Public License v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_3.yml b/src/licensedcode/data/rules/nbpl-1.0_3.yml deleted file mode 100644 index 6fac749cf3c..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nbpl-1.0_4.RULE b/src/licensedcode/data/rules/nbpl-1.0_4.RULE index 60942107143..7fa30d71ae7 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_4.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Net Boolean Public License v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_4.yml b/src/licensedcode/data/rules/nbpl-1.0_4.yml deleted file mode 100644 index cdef4f48404..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nbpl-1.0_5.RULE b/src/licensedcode/data/rules/nbpl-1.0_5.RULE index 61933714870..9fa6c854de5 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_5.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Net Boolean Public License v1 NBPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_5.yml b/src/licensedcode/data/rules/nbpl-1.0_5.yml deleted file mode 100644 index cdef4f48404..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nbpl-1.0_6.RULE b/src/licensedcode/data/rules/nbpl-1.0_6.RULE index 3a8a65f2b71..46d557b9053 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_6.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nbpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NBPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_6.yml b/src/licensedcode/data/rules/nbpl-1.0_6.yml deleted file mode 100644 index cbfb0af6c49..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nbpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nbpl-1.0_7.RULE b/src/licensedcode/data/rules/nbpl-1.0_7.RULE index f65741a7e86..85c1ce0aaa3 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_7.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nbpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Net Boolean Public License v1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_7.yml b/src/licensedcode/data/rules/nbpl-1.0_7.yml deleted file mode 100644 index cbfb0af6c49..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nbpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nbpl-1.0_8.RULE b/src/licensedcode/data/rules/nbpl-1.0_8.RULE index 1b0a70104b2..a7019d9a83c 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_8.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: nbpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NBPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_8.yml b/src/licensedcode/data/rules/nbpl-1.0_8.yml deleted file mode 100644 index cbfb0af6c49..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nbpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nbpl-1.0_9.RULE b/src/licensedcode/data/rules/nbpl-1.0_9.RULE index 5be849a1db9..6c04237f29d 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_9.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NBPL-1.0 +--- + https://licenses.nuget.org/NBPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_9.yml b/src/licensedcode/data/rules/nbpl-1.0_9.yml deleted file mode 100644 index 3132da31acc..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NBPL-1.0 diff --git a/src/licensedcode/data/rules/nbpl-1.0_url_1.RULE b/src/licensedcode/data/rules/nbpl-1.0_url_1.RULE index b6bda897b82..b033be8a052 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nbpl-1.0 +--- + https://spdx.org/licenses/nbpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_url_1.yml b/src/licensedcode/data/rules/nbpl-1.0_url_1.yml deleted file mode 100644 index 1a4319b94a0..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nbpl-1.0 diff --git a/src/licensedcode/data/rules/nbpl-1.0_url_2.RULE b/src/licensedcode/data/rules/nbpl-1.0_url_2.RULE index 39c035a7fad..a46b390bd7b 100644 --- a/src/licensedcode/data/rules/nbpl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/nbpl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nbpl-1.0.html +--- + https://spdx.org/licenses/nbpl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nbpl-1.0_url_2.yml b/src/licensedcode/data/rules/nbpl-1.0_url_2.yml deleted file mode 100644 index 133c710774c..00000000000 --- a/src/licensedcode/data/rules/nbpl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nbpl-1.0.html diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_1.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_1.RULE index 2563264188e..6b23f12acec 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_1.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Non-Commercial Government Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_1.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_1.yml deleted file mode 100644 index 8c95b31627e..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_10.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_10.RULE index 31aaa53ffdf..7b2ac6be5cd 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_10.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NCGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_10.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_10.yml deleted file mode 100644 index 4ab8d143a8c..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_11.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_11.RULE index cf9d26d2770..7783437ee2a 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_11.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NCGL-UK-2.0 +--- + LICENSE {{NCGL-UK-2.0}} https://spdx.org/licenses/NCGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_11.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_11.yml deleted file mode 100644 index 84078800e6b..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NCGL-UK-2.0 diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_12.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_12.RULE index f5005360f55..14d8901a4eb 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_12.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NCGL-UK-2.0 +--- + {{NCGL-UK-2.0}} https://spdx.org/licenses/NCGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_12.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_12.yml deleted file mode 100644 index 84078800e6b..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NCGL-UK-2.0 diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_2.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_2.RULE index 2387a83e5de..474a68f9f4e 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_2.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Non-Commercial Government Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_2.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_2.yml deleted file mode 100644 index 8c95b31627e..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_3.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_3.RULE index 325a6fc12c6..d8a4bcdb876 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_3.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NCGL-UK-2.0 Non-Commercial Government Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_3.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_3.yml deleted file mode 100644 index 8c95b31627e..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_4.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_4.RULE index 38a7d094e8e..6156d63771f 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_4.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Non-Commercial Government Licence NCGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_4.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_4.yml deleted file mode 100644 index 8c95b31627e..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_5.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_5.RULE index d0ddb788a62..091ffd0b4da 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_5.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NCGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_5.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_5.yml deleted file mode 100644 index 9e1bda26d4a..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_6.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_6.RULE index f8652afbb02..50a3a274ccb 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_6.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Non-Commercial Government Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_6.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_6.yml deleted file mode 100644 index 9e1bda26d4a..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_7.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_7.RULE index 9c4d975eaa4..7b56f3dd2d0 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_7.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NCGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_7.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_7.yml deleted file mode 100644 index 9e1bda26d4a..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_8.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_8.RULE index e12edb4990c..05d7acec9c1 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_8.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NCGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_8.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_8.yml deleted file mode 100644 index 75eb872b570..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_9.RULE b/src/licensedcode/data/rules/ncgl-uk-2.0_9.RULE index ad3dc73e704..0d3b5ad8780 100644 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_9.RULE +++ b/src/licensedcode/data/rules/ncgl-uk-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ncgl-uk-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NCGL-UK-2.0 +--- + https://licenses.nuget.org/NCGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncgl-uk-2.0_9.yml b/src/licensedcode/data/rules/ncgl-uk-2.0_9.yml deleted file mode 100644 index 736eea7fb7b..00000000000 --- a/src/licensedcode/data/rules/ncgl-uk-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ncgl-uk-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NCGL-UK-2.0 diff --git a/src/licensedcode/data/rules/ncsa_1.RULE b/src/licensedcode/data/rules/ncsa_1.RULE index 832a8c9b757..cb3f78b3327 100644 --- a/src/licensedcode/data/rules/ncsa_1.RULE +++ b/src/licensedcode/data/rules/ncsa_1.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/ncsa +--- + https://choosealicense.com/licenses/ncsa \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncsa_1.yml b/src/licensedcode/data/rules/ncsa_1.yml deleted file mode 100644 index 0dc631fff3b..00000000000 --- a/src/licensedcode/data/rules/ncsa_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/ncsa diff --git a/src/licensedcode/data/rules/ncsa_2.RULE b/src/licensedcode/data/rules/ncsa_2.RULE index a5648545ff8..c8e1fa4b4dc 100644 --- a/src/licensedcode/data/rules/ncsa_2.RULE +++ b/src/licensedcode/data/rules/ncsa_2.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/ncsa +--- + http://choosealicense.com/licenses/ncsa \ No newline at end of file diff --git a/src/licensedcode/data/rules/ncsa_2.yml b/src/licensedcode/data/rules/ncsa_2.yml deleted file mode 100644 index cacc9a9935c..00000000000 --- a/src/licensedcode/data/rules/ncsa_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/ncsa diff --git a/src/licensedcode/data/rules/net-snmp.RULE b/src/licensedcode/data/rules/net-snmp.RULE index 79b33ccbd53..edcb4314ecf 100644 --- a/src/licensedcode/data/rules/net-snmp.RULE +++ b/src/licensedcode/data/rules/net-snmp.RULE @@ -1 +1,9 @@ +--- +license_expression: net-snmp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://net-snmp.sourceforge.net/about/license.html +--- + http://net-snmp.sourceforge.net/about/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp.yml b/src/licensedcode/data/rules/net-snmp.yml deleted file mode 100644 index 9ddcdf75008..00000000000 --- a/src/licensedcode/data/rules/net-snmp.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://net-snmp.sourceforge.net/about/license.html diff --git a/src/licensedcode/data/rules/net-snmp_1.RULE b/src/licensedcode/data/rules/net-snmp_1.RULE index 8c9c37f7120..454d224b430 100644 --- a/src/licensedcode/data/rules/net-snmp_1.RULE +++ b/src/licensedcode/data/rules/net-snmp_1.RULE @@ -1 +1,10 @@ +--- +license_expression: net-snmp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Net-SNMP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_1.yml b/src/licensedcode/data/rules/net-snmp_1.yml deleted file mode 100644 index d4824b0b38b..00000000000 --- a/src/licensedcode/data/rules/net-snmp_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/net-snmp_10.RULE b/src/licensedcode/data/rules/net-snmp_10.RULE index 74c3f778faf..7a12a51dff5 100644 --- a/src/licensedcode/data/rules/net-snmp_10.RULE +++ b/src/licensedcode/data/rules/net-snmp_10.RULE @@ -1 +1,9 @@ +--- +license_expression: net-snmp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Net-SNMP +--- + {{Net-SNMP}} https://spdx.org/licenses/Net-SNMP \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_10.yml b/src/licensedcode/data/rules/net-snmp_10.yml deleted file mode 100644 index 1095eda7a1b..00000000000 --- a/src/licensedcode/data/rules/net-snmp_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Net-SNMP diff --git a/src/licensedcode/data/rules/net-snmp_11.RULE b/src/licensedcode/data/rules/net-snmp_11.RULE index 9b4499b276e..8fe6636c274 100644 --- a/src/licensedcode/data/rules/net-snmp_11.RULE +++ b/src/licensedcode/data/rules/net-snmp_11.RULE @@ -1 +1,9 @@ +--- +license_expression: net-snmp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Net-SNMP +--- + LICENSE {{Net-SNMP}} https://spdx.org/licenses/Net-SNMP \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_11.yml b/src/licensedcode/data/rules/net-snmp_11.yml deleted file mode 100644 index 1095eda7a1b..00000000000 --- a/src/licensedcode/data/rules/net-snmp_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Net-SNMP diff --git a/src/licensedcode/data/rules/net-snmp_2.RULE b/src/licensedcode/data/rules/net-snmp_2.RULE index 364ea2fa530..1109b7a7e59 100644 --- a/src/licensedcode/data/rules/net-snmp_2.RULE +++ b/src/licensedcode/data/rules/net-snmp_2.RULE @@ -1 +1,10 @@ +--- +license_expression: net-snmp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Net-SNMP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_2.yml b/src/licensedcode/data/rules/net-snmp_2.yml deleted file mode 100644 index d4824b0b38b..00000000000 --- a/src/licensedcode/data/rules/net-snmp_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/net-snmp_3.RULE b/src/licensedcode/data/rules/net-snmp_3.RULE index a0b8d1f1afa..6ef3edbb47c 100644 --- a/src/licensedcode/data/rules/net-snmp_3.RULE +++ b/src/licensedcode/data/rules/net-snmp_3.RULE @@ -1 +1,10 @@ +--- +license_expression: net-snmp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Net-SNMP Net-SNMP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_3.yml b/src/licensedcode/data/rules/net-snmp_3.yml deleted file mode 100644 index d4824b0b38b..00000000000 --- a/src/licensedcode/data/rules/net-snmp_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/net-snmp_4.RULE b/src/licensedcode/data/rules/net-snmp_4.RULE index d2832ab772c..31b26ff5d37 100644 --- a/src/licensedcode/data/rules/net-snmp_4.RULE +++ b/src/licensedcode/data/rules/net-snmp_4.RULE @@ -1 +1,10 @@ +--- +license_expression: net-snmp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Net-SNMP License Net-SNMP \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_4.yml b/src/licensedcode/data/rules/net-snmp_4.yml deleted file mode 100644 index d4824b0b38b..00000000000 --- a/src/licensedcode/data/rules/net-snmp_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/net-snmp_5.RULE b/src/licensedcode/data/rules/net-snmp_5.RULE index 46b6570244e..ca25788c25e 100644 --- a/src/licensedcode/data/rules/net-snmp_5.RULE +++ b/src/licensedcode/data/rules/net-snmp_5.RULE @@ -1 +1,10 @@ +--- +license_expression: net-snmp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Net-SNMP \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_5.yml b/src/licensedcode/data/rules/net-snmp_5.yml deleted file mode 100644 index 13198f5e32d..00000000000 --- a/src/licensedcode/data/rules/net-snmp_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: net-snmp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/net-snmp_6.RULE b/src/licensedcode/data/rules/net-snmp_6.RULE index 177a745c331..3dec35589a2 100644 --- a/src/licensedcode/data/rules/net-snmp_6.RULE +++ b/src/licensedcode/data/rules/net-snmp_6.RULE @@ -1 +1,10 @@ +--- +license_expression: net-snmp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Net-SNMP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_6.yml b/src/licensedcode/data/rules/net-snmp_6.yml deleted file mode 100644 index 13198f5e32d..00000000000 --- a/src/licensedcode/data/rules/net-snmp_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: net-snmp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/net-snmp_7.RULE b/src/licensedcode/data/rules/net-snmp_7.RULE index ea3a3486443..770b79c5dea 100644 --- a/src/licensedcode/data/rules/net-snmp_7.RULE +++ b/src/licensedcode/data/rules/net-snmp_7.RULE @@ -1 +1,10 @@ +--- +license_expression: net-snmp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Net-SNMP \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_7.yml b/src/licensedcode/data/rules/net-snmp_7.yml deleted file mode 100644 index 13198f5e32d..00000000000 --- a/src/licensedcode/data/rules/net-snmp_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: net-snmp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/net-snmp_8.RULE b/src/licensedcode/data/rules/net-snmp_8.RULE index 7f355bec70d..484ce33db12 100644 --- a/src/licensedcode/data/rules/net-snmp_8.RULE +++ b/src/licensedcode/data/rules/net-snmp_8.RULE @@ -1 +1,9 @@ +--- +license_expression: net-snmp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Net-SNMP +--- + https://licenses.nuget.org/Net-SNMP \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_8.yml b/src/licensedcode/data/rules/net-snmp_8.yml deleted file mode 100644 index 3896a764077..00000000000 --- a/src/licensedcode/data/rules/net-snmp_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Net-SNMP diff --git a/src/licensedcode/data/rules/net-snmp_9.RULE b/src/licensedcode/data/rules/net-snmp_9.RULE index d69dcd3db30..12738bbb6e4 100644 --- a/src/licensedcode/data/rules/net-snmp_9.RULE +++ b/src/licensedcode/data/rules/net-snmp_9.RULE @@ -1 +1,7 @@ +--- +license_expression: net-snmp +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Net-SNMP \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_9.yml b/src/licensedcode/data/rules/net-snmp_9.yml deleted file mode 100644 index 023713c030e..00000000000 --- a/src/licensedcode/data/rules/net-snmp_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/net-snmp_url_1.RULE b/src/licensedcode/data/rules/net-snmp_url_1.RULE index 895cc4cad72..8155a3161db 100644 --- a/src/licensedcode/data/rules/net-snmp_url_1.RULE +++ b/src/licensedcode/data/rules/net-snmp_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: net-snmp +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/net-snmp +--- + https://spdx.org/licenses/net-snmp \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_url_1.yml b/src/licensedcode/data/rules/net-snmp_url_1.yml deleted file mode 100644 index 1542a240eab..00000000000 --- a/src/licensedcode/data/rules/net-snmp_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/net-snmp diff --git a/src/licensedcode/data/rules/net-snmp_url_2.RULE b/src/licensedcode/data/rules/net-snmp_url_2.RULE index 97055b09897..c55435c24fb 100644 --- a/src/licensedcode/data/rules/net-snmp_url_2.RULE +++ b/src/licensedcode/data/rules/net-snmp_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: net-snmp +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/net-snmp.html +--- + https://spdx.org/licenses/net-snmp.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/net-snmp_url_2.yml b/src/licensedcode/data/rules/net-snmp_url_2.yml deleted file mode 100644 index caebe1869c3..00000000000 --- a/src/licensedcode/data/rules/net-snmp_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: net-snmp -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/net-snmp.html diff --git a/src/licensedcode/data/rules/netcdf_1.RULE b/src/licensedcode/data/rules/netcdf_1.RULE index b51d3f52d09..9d90030fe26 100644 --- a/src/licensedcode/data/rules/netcdf_1.RULE +++ b/src/licensedcode/data/rules/netcdf_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: netcdf +is_license_text: yes +--- + Access and use of this software shall impose the following obligations and understandings on the user. The user is granted the right, without any fee or cost, to use, copy, modify, alter, enhance and distribute this software, and any derivative works thereof, and its supporting documentation for any purpose whatsoever, provided that this entire notice appears in all copies of the software, derivative works and supporting documentation. Further, UCAR requests that the user credit UCAR/Unidata in any publications that result from the use of this software or in any product that includes this software, although this is not an obligation. The names UCAR and/or Unidata, however, may not be used in any advertising or publicity to endorse or promote any products or commercial entity unless specific written permission is obtained from UCAR/Unidata. The user also understands that UCAR/Unidata is not obligated to provide the user with any support, consulting, training or assistance of any kind with regard to the use, operation and performance of this software nor to provide the user with any updates, revisions, new versions or "bug fixes." -THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "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 UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL, 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 ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file +THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "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 UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL, 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 ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_1.yml b/src/licensedcode/data/rules/netcdf_1.yml deleted file mode 100644 index 8fadbf0c8f2..00000000000 --- a/src/licensedcode/data/rules/netcdf_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: netcdf -is_license_text: yes diff --git a/src/licensedcode/data/rules/netcdf_10.RULE b/src/licensedcode/data/rules/netcdf_10.RULE index 4dcfc143f16..871de6f228c 100644 --- a/src/licensedcode/data/rules/netcdf_10.RULE +++ b/src/licensedcode/data/rules/netcdf_10.RULE @@ -1 +1,10 @@ +--- +license_expression: netcdf +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NetCDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_10.yml b/src/licensedcode/data/rules/netcdf_10.yml deleted file mode 100644 index 586a225b18d..00000000000 --- a/src/licensedcode/data/rules/netcdf_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: netcdf -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/netcdf_11.RULE b/src/licensedcode/data/rules/netcdf_11.RULE index 0b36bce6ed9..9fbc0926b57 100644 --- a/src/licensedcode/data/rules/netcdf_11.RULE +++ b/src/licensedcode/data/rules/netcdf_11.RULE @@ -1 +1,9 @@ +--- +license_expression: netcdf +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NetCDF +--- + https://licenses.nuget.org/NetCDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_11.yml b/src/licensedcode/data/rules/netcdf_11.yml deleted file mode 100644 index 056030afff4..00000000000 --- a/src/licensedcode/data/rules/netcdf_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NetCDF diff --git a/src/licensedcode/data/rules/netcdf_12.RULE b/src/licensedcode/data/rules/netcdf_12.RULE index 95a90185d67..1eb48c3c12e 100644 --- a/src/licensedcode/data/rules/netcdf_12.RULE +++ b/src/licensedcode/data/rules/netcdf_12.RULE @@ -1 +1,7 @@ +--- +license_expression: netcdf +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NetCDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_12.yml b/src/licensedcode/data/rules/netcdf_12.yml deleted file mode 100644 index cede4a6a192..00000000000 --- a/src/licensedcode/data/rules/netcdf_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/netcdf_13.RULE b/src/licensedcode/data/rules/netcdf_13.RULE index 54a2d04956a..bd34f7e7e51 100644 --- a/src/licensedcode/data/rules/netcdf_13.RULE +++ b/src/licensedcode/data/rules/netcdf_13.RULE @@ -1 +1,9 @@ +--- +license_expression: netcdf +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NetCDF +--- + LICENSE {{NetCDF}} https://spdx.org/licenses/NetCDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_13.yml b/src/licensedcode/data/rules/netcdf_13.yml deleted file mode 100644 index 280db006925..00000000000 --- a/src/licensedcode/data/rules/netcdf_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NetCDF diff --git a/src/licensedcode/data/rules/netcdf_14.RULE b/src/licensedcode/data/rules/netcdf_14.RULE index e356625bd3b..6ef85365490 100644 --- a/src/licensedcode/data/rules/netcdf_14.RULE +++ b/src/licensedcode/data/rules/netcdf_14.RULE @@ -1 +1,9 @@ +--- +license_expression: netcdf +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NetCDF +--- + {{NetCDF}} https://spdx.org/licenses/NetCDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_14.yml b/src/licensedcode/data/rules/netcdf_14.yml deleted file mode 100644 index 280db006925..00000000000 --- a/src/licensedcode/data/rules/netcdf_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NetCDF diff --git a/src/licensedcode/data/rules/netcdf_2.RULE b/src/licensedcode/data/rules/netcdf_2.RULE index 65d98b58af0..2782f18f161 100644 --- a/src/licensedcode/data/rules/netcdf_2.RULE +++ b/src/licensedcode/data/rules/netcdf_2.RULE @@ -1 +1,9 @@ +--- +license_expression: netcdf +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unidata.ucar.edu/software/netcdf/copyright.html +--- + License: (MIT-style) netCDF C library license (http://www.unidata.ucar.edu/software/netcdf/copyright.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_2.yml b/src/licensedcode/data/rules/netcdf_2.yml deleted file mode 100644 index ba15c40eb20..00000000000 --- a/src/licensedcode/data/rules/netcdf_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: netcdf -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unidata.ucar.edu/software/netcdf/copyright.html diff --git a/src/licensedcode/data/rules/netcdf_3.RULE b/src/licensedcode/data/rules/netcdf_3.RULE index c26b4f1a2e7..54c2e9f345b 100644 --- a/src/licensedcode/data/rules/netcdf_3.RULE +++ b/src/licensedcode/data/rules/netcdf_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: netcdf +is_license_text: yes +relevance: 100 +ignorable_authors: + - the Unidata Program at the University Corporation for Atmospheric Research +--- + Portions of this software were developed by the Unidata Program at the University Corporation for Atmospheric Research. Access and use of this software shall impose the following obligations and understandings on the user. The user is granted the right, without any fee or cost, to use, copy, modify, alter, enhance and distribute this software, and any derivative works thereof, and its supporting documentation for any purpose whatsoever, provided that this entire notice appears in all copies of the software, derivative works and supporting documentation.¬† Further, UCAR requests that the user credit UCAR/Unidata in any publications that result from the use of this software or in any product that includes this software. The names UCAR and/or Unidata, however, may not be used in any advertising or publicity to endorse or promote any products or commercial entity unless specific written permission is obtained from UCAR/Unidata. The user also understands that UCAR/Unidata is not obligated to provide the user with any support, consulting, training or assistance of any kind with regard to the use, operation and performance of this software nor to provide the user with any updates, revisions, new versions or "bug fixes." diff --git a/src/licensedcode/data/rules/netcdf_3.yml b/src/licensedcode/data/rules/netcdf_3.yml deleted file mode 100644 index 637d9116a59..00000000000 --- a/src/licensedcode/data/rules/netcdf_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: netcdf -is_license_text: yes -relevance: 100 -ignorable_authors: - - the Unidata Program at the University Corporation for Atmospheric Research diff --git a/src/licensedcode/data/rules/netcdf_4.RULE b/src/licensedcode/data/rules/netcdf_4.RULE index dcbdb95c592..0f3173c173f 100644 --- a/src/licensedcode/data/rules/netcdf_4.RULE +++ b/src/licensedcode/data/rules/netcdf_4.RULE @@ -1 +1,10 @@ +--- +license_expression: netcdf +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NetCDF license \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_4.yml b/src/licensedcode/data/rules/netcdf_4.yml deleted file mode 100644 index a183f63580e..00000000000 --- a/src/licensedcode/data/rules/netcdf_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/netcdf_5.RULE b/src/licensedcode/data/rules/netcdf_5.RULE index 0d4f273932a..9034718ac81 100644 --- a/src/licensedcode/data/rules/netcdf_5.RULE +++ b/src/licensedcode/data/rules/netcdf_5.RULE @@ -1 +1,10 @@ +--- +license_expression: netcdf +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: NetCDF license \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_5.yml b/src/licensedcode/data/rules/netcdf_5.yml deleted file mode 100644 index a183f63580e..00000000000 --- a/src/licensedcode/data/rules/netcdf_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/netcdf_6.RULE b/src/licensedcode/data/rules/netcdf_6.RULE index 5e0113d3c82..70c25dd9a70 100644 --- a/src/licensedcode/data/rules/netcdf_6.RULE +++ b/src/licensedcode/data/rules/netcdf_6.RULE @@ -1 +1,10 @@ +--- +license_expression: netcdf +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NetCDF NetCDF license \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_6.yml b/src/licensedcode/data/rules/netcdf_6.yml deleted file mode 100644 index a183f63580e..00000000000 --- a/src/licensedcode/data/rules/netcdf_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/netcdf_7.RULE b/src/licensedcode/data/rules/netcdf_7.RULE index b4fe19576fe..69dbfce1c34 100644 --- a/src/licensedcode/data/rules/netcdf_7.RULE +++ b/src/licensedcode/data/rules/netcdf_7.RULE @@ -1 +1,10 @@ +--- +license_expression: netcdf +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NetCDF license NetCDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_7.yml b/src/licensedcode/data/rules/netcdf_7.yml deleted file mode 100644 index a183f63580e..00000000000 --- a/src/licensedcode/data/rules/netcdf_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/netcdf_8.RULE b/src/licensedcode/data/rules/netcdf_8.RULE index 6247297655e..2bf0ff19604 100644 --- a/src/licensedcode/data/rules/netcdf_8.RULE +++ b/src/licensedcode/data/rules/netcdf_8.RULE @@ -1 +1,10 @@ +--- +license_expression: netcdf +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NetCDF \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_8.yml b/src/licensedcode/data/rules/netcdf_8.yml deleted file mode 100644 index 586a225b18d..00000000000 --- a/src/licensedcode/data/rules/netcdf_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: netcdf -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/netcdf_9.RULE b/src/licensedcode/data/rules/netcdf_9.RULE index 70ffcde64e5..4768669d1dc 100644 --- a/src/licensedcode/data/rules/netcdf_9.RULE +++ b/src/licensedcode/data/rules/netcdf_9.RULE @@ -1 +1,10 @@ +--- +license_expression: netcdf +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NetCDF license \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_9.yml b/src/licensedcode/data/rules/netcdf_9.yml deleted file mode 100644 index 586a225b18d..00000000000 --- a/src/licensedcode/data/rules/netcdf_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: netcdf -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/netcdf_url_1.RULE b/src/licensedcode/data/rules/netcdf_url_1.RULE index b86bfc05a41..b564db8fcbb 100644 --- a/src/licensedcode/data/rules/netcdf_url_1.RULE +++ b/src/licensedcode/data/rules/netcdf_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: netcdf +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/netcdf +--- + https://spdx.org/licenses/netcdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_url_1.yml b/src/licensedcode/data/rules/netcdf_url_1.yml deleted file mode 100644 index 6f2503d2dda..00000000000 --- a/src/licensedcode/data/rules/netcdf_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/netcdf diff --git a/src/licensedcode/data/rules/netcdf_url_2.RULE b/src/licensedcode/data/rules/netcdf_url_2.RULE index c8b53c37f29..a5dd094cb88 100644 --- a/src/licensedcode/data/rules/netcdf_url_2.RULE +++ b/src/licensedcode/data/rules/netcdf_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: netcdf +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/netcdf.html +--- + https://spdx.org/licenses/netcdf.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcdf_url_2.yml b/src/licensedcode/data/rules/netcdf_url_2.yml deleted file mode 100644 index c40ff20b7e3..00000000000 --- a/src/licensedcode/data/rules/netcdf_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: netcdf -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/netcdf.html diff --git a/src/licensedcode/data/rules/netcomponents.RULE b/src/licensedcode/data/rules/netcomponents.RULE index 7e1c66f52d0..e9a97d9bc42 100644 --- a/src/licensedcode/data/rules/netcomponents.RULE +++ b/src/licensedcode/data/rules/netcomponents.RULE @@ -1 +1,9 @@ +--- +license_expression: netcomponents +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html +--- + http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/netcomponents.yml b/src/licensedcode/data/rules/netcomponents.yml deleted file mode 100644 index e846cf82326..00000000000 --- a/src/licensedcode/data/rules/netcomponents.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: netcomponents -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://gruntspud.sourceforge.net/NETCOMPONENTS_LICENSE.html diff --git a/src/licensedcode/data/rules/network-time-protocol.RULE b/src/licensedcode/data/rules/network-time-protocol.RULE index 9082a058258..87e53868693 100644 --- a/src/licensedcode/data/rules/network-time-protocol.RULE +++ b/src/licensedcode/data/rules/network-time-protocol.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eecis.udel.edu/~mills/ntp/html/copyright.html +--- + http://www.eecis.udel.edu/~mills/ntp/html/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/network-time-protocol.yml b/src/licensedcode/data/rules/network-time-protocol.yml deleted file mode 100644 index abd51be7755..00000000000 --- a/src/licensedcode/data/rules/network-time-protocol.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eecis.udel.edu/~mills/ntp/html/copyright.html diff --git a/src/licensedcode/data/rules/network-time-protocol2.RULE b/src/licensedcode/data/rules/network-time-protocol2.RULE index ade4300dff6..c7338b2ccc7 100644 --- a/src/licensedcode/data/rules/network-time-protocol2.RULE +++ b/src/licensedcode/data/rules/network-time-protocol2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_notice: yes +minimum_coverage: 80 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies and that both the @@ -6,5 +12,4 @@ documentation, and that the name University of Delaware not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. The University of Delaware makes no representations about the suitability this software for any -purpose. It is provided "as is" without express or implied warranty. - +purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/network-time-protocol2.yml b/src/licensedcode/data/rules/network-time-protocol2.yml deleted file mode 100644 index 7f28db53b7a..00000000000 --- a/src/licensedcode/data/rules/network-time-protocol2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/network-time-protocol3.RULE b/src/licensedcode/data/rules/network-time-protocol3.RULE index 7e44b2e1223..6f16af919c6 100644 --- a/src/licensedcode/data/rules/network-time-protocol3.RULE +++ b/src/licensedcode/data/rules/network-time-protocol3.RULE @@ -1 +1,9 @@ +--- +license_expression: mit-old-style-no-advert +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.eecis.udel.edu/~ntp +--- + ttp://www.eecis.udel.edu/~ntp \ No newline at end of file diff --git a/src/licensedcode/data/rules/network-time-protocol3.yml b/src/licensedcode/data/rules/network-time-protocol3.yml deleted file mode 100644 index e8a2b94dc2e..00000000000 --- a/src/licensedcode/data/rules/network-time-protocol3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.eecis.udel.edu/~ntp diff --git a/src/licensedcode/data/rules/network-time-protocol5.RULE b/src/licensedcode/data/rules/network-time-protocol5.RULE index bbaabee8e85..5d543fe316a 100644 --- a/src/licensedcode/data/rules/network-time-protocol5.RULE +++ b/src/licensedcode/data/rules/network-time-protocol5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: mit-old-style-no-advert +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and with or without fee is hereby granted, provided that the above copyright notice appears in all @@ -7,4 +12,4 @@ Delaware not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. The University of Delaware makes no representations about the suitability this software for any purpose. It is provided "as is" -without express or implied warranty. +without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/network-time-protocol5.yml b/src/licensedcode/data/rules/network-time-protocol5.yml deleted file mode 100644 index 9a8d1b84afe..00000000000 --- a/src/licensedcode/data/rules/network-time-protocol5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: mit-old-style-no-advert -is_license_text: yes diff --git a/src/licensedcode/data/rules/new-relic.RULE b/src/licensedcode/data/rules/new-relic.RULE index a4fd4216caf..ecc7bfdcb09 100644 --- a/src/licensedcode/data/rules/new-relic.RULE +++ b/src/licensedcode/data/rules/new-relic.RULE @@ -1,3 +1,8 @@ +--- +license_expression: new-relic +is_license_text: yes +--- + Certain inventions disclosed in this file may be claimed within patents owned or patent applications filed by New Relic, Inc. or third parties. diff --git a/src/licensedcode/data/rules/new-relic.yml b/src/licensedcode/data/rules/new-relic.yml deleted file mode 100644 index bbd859fc27e..00000000000 --- a/src/licensedcode/data/rules/new-relic.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: new-relic -is_license_text: yes diff --git a/src/licensedcode/data/rules/newlib-historical_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/newlib-historical_and_warranty-disclaimer_1.RULE index dbe458bc0f7..5c92f0fcbd0 100644 --- a/src/licensedcode/data/rules/newlib-historical_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/newlib-historical_and_warranty-disclaimer_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: newlib-historical AND warranty-disclaimer +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided that existing copyright notices are retained in all copies and that this diff --git a/src/licensedcode/data/rules/newlib-historical_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/newlib-historical_and_warranty-disclaimer_1.yml deleted file mode 100644 index a6487834706..00000000000 --- a/src/licensedcode/data/rules/newlib-historical_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: newlib-historical AND warranty-disclaimer -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/newsletr.SPDX.RULE b/src/licensedcode/data/rules/newsletr.SPDX.RULE index 63d792f5428..065585f0ddb 100644 --- a/src/licensedcode/data/rules/newsletr.SPDX.RULE +++ b/src/licensedcode/data/rules/newsletr.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: newsletr +is_license_text: yes +minimum_coverage: 50 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright 1989 2004 by Hunter Goatley +ignorable_holders: + - Hunter Goatley +--- + Copyright 1989--2004 by Hunter Goatley. Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: diff --git a/src/licensedcode/data/rules/newsletr.SPDX.yml b/src/licensedcode/data/rules/newsletr.SPDX.yml deleted file mode 100644 index c4d3fce7462..00000000000 --- a/src/licensedcode/data/rules/newsletr.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: newsletr -is_license_text: yes -minimum_coverage: 50 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright 1989 2004 by Hunter Goatley -ignorable_holders: - - Hunter Goatley diff --git a/src/licensedcode/data/rules/newsletr_1.RULE b/src/licensedcode/data/rules/newsletr_1.RULE index 694cff816e6..26a06f76693 100644 --- a/src/licensedcode/data/rules/newsletr_1.RULE +++ b/src/licensedcode/data/rules/newsletr_1.RULE @@ -1 +1,10 @@ +--- +license_expression: newsletr +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Newsletr License \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_1.yml b/src/licensedcode/data/rules/newsletr_1.yml deleted file mode 100644 index fdda709c22f..00000000000 --- a/src/licensedcode/data/rules/newsletr_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/newsletr_10.RULE b/src/licensedcode/data/rules/newsletr_10.RULE index 4449641887b..81a60f24204 100644 --- a/src/licensedcode/data/rules/newsletr_10.RULE +++ b/src/licensedcode/data/rules/newsletr_10.RULE @@ -1 +1,9 @@ +--- +license_expression: newsletr +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Newsletr +--- + {{Newsletr}} https://spdx.org/licenses/Newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_10.yml b/src/licensedcode/data/rules/newsletr_10.yml deleted file mode 100644 index d53b55d34a9..00000000000 --- a/src/licensedcode/data/rules/newsletr_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Newsletr diff --git a/src/licensedcode/data/rules/newsletr_11.RULE b/src/licensedcode/data/rules/newsletr_11.RULE index c34e89779bf..f4f6e73d7be 100644 --- a/src/licensedcode/data/rules/newsletr_11.RULE +++ b/src/licensedcode/data/rules/newsletr_11.RULE @@ -1 +1,9 @@ +--- +license_expression: newsletr +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Newsletr +--- + LICENSE {{Newsletr}} https://spdx.org/licenses/Newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_11.yml b/src/licensedcode/data/rules/newsletr_11.yml deleted file mode 100644 index d53b55d34a9..00000000000 --- a/src/licensedcode/data/rules/newsletr_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Newsletr diff --git a/src/licensedcode/data/rules/newsletr_2.RULE b/src/licensedcode/data/rules/newsletr_2.RULE index 434415cdb37..3e4bf29a25d 100644 --- a/src/licensedcode/data/rules/newsletr_2.RULE +++ b/src/licensedcode/data/rules/newsletr_2.RULE @@ -1 +1,10 @@ +--- +license_expression: newsletr +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Newsletr License \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_2.yml b/src/licensedcode/data/rules/newsletr_2.yml deleted file mode 100644 index fdda709c22f..00000000000 --- a/src/licensedcode/data/rules/newsletr_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/newsletr_3.RULE b/src/licensedcode/data/rules/newsletr_3.RULE index 81b1164ec1b..fdadbe48c7b 100644 --- a/src/licensedcode/data/rules/newsletr_3.RULE +++ b/src/licensedcode/data/rules/newsletr_3.RULE @@ -1 +1,10 @@ +--- +license_expression: newsletr +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Newsletr Newsletr License \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_3.yml b/src/licensedcode/data/rules/newsletr_3.yml deleted file mode 100644 index fdda709c22f..00000000000 --- a/src/licensedcode/data/rules/newsletr_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/newsletr_4.RULE b/src/licensedcode/data/rules/newsletr_4.RULE index 4483715e7ed..fdaeba30661 100644 --- a/src/licensedcode/data/rules/newsletr_4.RULE +++ b/src/licensedcode/data/rules/newsletr_4.RULE @@ -1 +1,10 @@ +--- +license_expression: newsletr +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Newsletr License Newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_4.yml b/src/licensedcode/data/rules/newsletr_4.yml deleted file mode 100644 index fdda709c22f..00000000000 --- a/src/licensedcode/data/rules/newsletr_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/newsletr_5.RULE b/src/licensedcode/data/rules/newsletr_5.RULE index e91cf722438..d428387c4f9 100644 --- a/src/licensedcode/data/rules/newsletr_5.RULE +++ b/src/licensedcode/data/rules/newsletr_5.RULE @@ -1 +1,10 @@ +--- +license_expression: newsletr +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_5.yml b/src/licensedcode/data/rules/newsletr_5.yml deleted file mode 100644 index a44b2e363da..00000000000 --- a/src/licensedcode/data/rules/newsletr_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: newsletr -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/newsletr_6.RULE b/src/licensedcode/data/rules/newsletr_6.RULE index 8fabd992ff2..f390a133a0c 100644 --- a/src/licensedcode/data/rules/newsletr_6.RULE +++ b/src/licensedcode/data/rules/newsletr_6.RULE @@ -1 +1,10 @@ +--- +license_expression: newsletr +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Newsletr License \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_6.yml b/src/licensedcode/data/rules/newsletr_6.yml deleted file mode 100644 index a44b2e363da..00000000000 --- a/src/licensedcode/data/rules/newsletr_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: newsletr -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/newsletr_7.RULE b/src/licensedcode/data/rules/newsletr_7.RULE index c15343386f7..497d091cd03 100644 --- a/src/licensedcode/data/rules/newsletr_7.RULE +++ b/src/licensedcode/data/rules/newsletr_7.RULE @@ -1 +1,10 @@ +--- +license_expression: newsletr +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_7.yml b/src/licensedcode/data/rules/newsletr_7.yml deleted file mode 100644 index a44b2e363da..00000000000 --- a/src/licensedcode/data/rules/newsletr_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: newsletr -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/newsletr_8.RULE b/src/licensedcode/data/rules/newsletr_8.RULE index 6ab32379864..058bee387ee 100644 --- a/src/licensedcode/data/rules/newsletr_8.RULE +++ b/src/licensedcode/data/rules/newsletr_8.RULE @@ -1 +1,9 @@ +--- +license_expression: newsletr +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Newsletr +--- + https://licenses.nuget.org/Newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_8.yml b/src/licensedcode/data/rules/newsletr_8.yml deleted file mode 100644 index 6ad3f6172ad..00000000000 --- a/src/licensedcode/data/rules/newsletr_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Newsletr diff --git a/src/licensedcode/data/rules/newsletr_9.RULE b/src/licensedcode/data/rules/newsletr_9.RULE index a425e8c8290..a972b9a38e0 100644 --- a/src/licensedcode/data/rules/newsletr_9.RULE +++ b/src/licensedcode/data/rules/newsletr_9.RULE @@ -1 +1,7 @@ +--- +license_expression: newsletr +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_9.yml b/src/licensedcode/data/rules/newsletr_9.yml deleted file mode 100644 index 4b39c47256a..00000000000 --- a/src/licensedcode/data/rules/newsletr_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/newsletr_url_1.RULE b/src/licensedcode/data/rules/newsletr_url_1.RULE index bcf848eeb11..774c7874b9c 100644 --- a/src/licensedcode/data/rules/newsletr_url_1.RULE +++ b/src/licensedcode/data/rules/newsletr_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: newsletr +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/newsletr +--- + https://spdx.org/licenses/newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_url_1.yml b/src/licensedcode/data/rules/newsletr_url_1.yml deleted file mode 100644 index 3fbe496f941..00000000000 --- a/src/licensedcode/data/rules/newsletr_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/newsletr diff --git a/src/licensedcode/data/rules/newsletr_url_2.RULE b/src/licensedcode/data/rules/newsletr_url_2.RULE index c5b1919a90e..8b230cfebb2 100644 --- a/src/licensedcode/data/rules/newsletr_url_2.RULE +++ b/src/licensedcode/data/rules/newsletr_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: newsletr +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/newsletr.html +--- + https://spdx.org/licenses/newsletr.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/newsletr_url_2.yml b/src/licensedcode/data/rules/newsletr_url_2.yml deleted file mode 100644 index 66ef230d4ec..00000000000 --- a/src/licensedcode/data/rules/newsletr_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/newsletr.html diff --git a/src/licensedcode/data/rules/ngpl.RULE b/src/licensedcode/data/rules/ngpl.RULE index a65ac2b2c06..0542afbfe24 100644 --- a/src/licensedcode/data/rules/ngpl.RULE +++ b/src/licensedcode/data/rules/ngpl.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.nethack.org/common/license.html +--- + http://www.nethack.org/common/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl.SPDX.RULE b/src/licensedcode/data/rules/ngpl.SPDX.RULE index eb902adfc9f..ae8ebeed8e6 100644 --- a/src/licensedcode/data/rules/ngpl.SPDX.RULE +++ b/src/licensedcode/data/rules/ngpl.SPDX.RULE @@ -1,3 +1,20 @@ +--- +license_expression: ngpl +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright 1985-2003 by Stichting Mathematisch Centrum and M. Stephenson + - Copyright 1989 M. Stephenson + - Copyright 1999-2009 by Kenneth Lorber, Kensington, Maryland + - copyright 1988 Richard M. Stallman +ignorable_holders: + - Kenneth Lorber, Kensington, Maryland + - M. Stephenson + - Richard M. Stallman + - Stichting Mathematisch Centrum and M. Stephenson +--- + NETHACK GENERAL PUBLIC LICENSE (Copyright 1989 M. Stephenson) diff --git a/src/licensedcode/data/rules/ngpl.SPDX.yml b/src/licensedcode/data/rules/ngpl.SPDX.yml deleted file mode 100644 index 42ae9200838..00000000000 --- a/src/licensedcode/data/rules/ngpl.SPDX.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: ngpl -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright 1985-2003 by Stichting Mathematisch Centrum and M. Stephenson - - Copyright 1989 M. Stephenson - - Copyright 1999-2009 by Kenneth Lorber, Kensington, Maryland - - copyright 1988 Richard M. Stallman -ignorable_holders: - - Kenneth Lorber, Kensington, Maryland - - M. Stephenson - - Richard M. Stallman - - Stichting Mathematisch Centrum and M. Stephenson diff --git a/src/licensedcode/data/rules/ngpl.yml b/src/licensedcode/data/rules/ngpl.yml deleted file mode 100644 index bfe84035ddf..00000000000 --- a/src/licensedcode/data/rules/ngpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.nethack.org/common/license.html diff --git a/src/licensedcode/data/rules/ngpl_1.RULE b/src/licensedcode/data/rules/ngpl_1.RULE index ada30912d71..abd64a35a91 100644 --- a/src/licensedcode/data/rules/ngpl_1.RULE +++ b/src/licensedcode/data/rules/ngpl_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ngpl +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright 1989 M. Stephenson + - copyright 1988 Richard M. Stallman +ignorable_holders: + - M. Stephenson + - Richard M. Stallman +--- + NETHACK GENERAL PUBLIC LICENSE (Copyright 1989 M. Stephenson) diff --git a/src/licensedcode/data/rules/ngpl_1.yml b/src/licensedcode/data/rules/ngpl_1.yml deleted file mode 100644 index d4a3a786773..00000000000 --- a/src/licensedcode/data/rules/ngpl_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ngpl -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright 1989 M. Stephenson - - copyright 1988 Richard M. Stallman -ignorable_holders: - - M. Stephenson - - Richard M. Stallman diff --git a/src/licensedcode/data/rules/ngpl_10.RULE b/src/licensedcode/data/rules/ngpl_10.RULE index 2c02cd956aa..f44a66ef22b 100644 --- a/src/licensedcode/data/rules/ngpl_10.RULE +++ b/src/licensedcode/data/rules/ngpl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_10.yml b/src/licensedcode/data/rules/ngpl_10.yml deleted file mode 100644 index 5ba513e14be..00000000000 --- a/src/licensedcode/data/rules/ngpl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ngpl_11.RULE b/src/licensedcode/data/rules/ngpl_11.RULE index cac2dab53d7..c132522b253 100644 --- a/src/licensedcode/data/rules/ngpl_11.RULE +++ b/src/licensedcode/data/rules/ngpl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NGPL +--- + https://licenses.nuget.org/NGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_11.yml b/src/licensedcode/data/rules/ngpl_11.yml deleted file mode 100644 index 2f49033d5f3..00000000000 --- a/src/licensedcode/data/rules/ngpl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NGPL diff --git a/src/licensedcode/data/rules/ngpl_12.RULE b/src/licensedcode/data/rules/ngpl_12.RULE index 433b9f0d3c1..3e8352ff877 100644 --- a/src/licensedcode/data/rules/ngpl_12.RULE +++ b/src/licensedcode/data/rules/ngpl_12.RULE @@ -1 +1,7 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_12.yml b/src/licensedcode/data/rules/ngpl_12.yml deleted file mode 100644 index 078c8fc3a4a..00000000000 --- a/src/licensedcode/data/rules/ngpl_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ngpl_13.RULE b/src/licensedcode/data/rules/ngpl_13.RULE index 23926474063..9cfbe94d450 100644 --- a/src/licensedcode/data/rules/ngpl_13.RULE +++ b/src/licensedcode/data/rules/ngpl_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NGPL +--- + {{NGPL}} https://spdx.org/licenses/NGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_13.yml b/src/licensedcode/data/rules/ngpl_13.yml deleted file mode 100644 index 5e81d2ffbe6..00000000000 --- a/src/licensedcode/data/rules/ngpl_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NGPL diff --git a/src/licensedcode/data/rules/ngpl_14.RULE b/src/licensedcode/data/rules/ngpl_14.RULE index 60095efbd2a..988191b7dd7 100644 --- a/src/licensedcode/data/rules/ngpl_14.RULE +++ b/src/licensedcode/data/rules/ngpl_14.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NGPL +--- + LICENSE {{NGPL}} https://spdx.org/licenses/NGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_14.yml b/src/licensedcode/data/rules/ngpl_14.yml deleted file mode 100644 index 5e81d2ffbe6..00000000000 --- a/src/licensedcode/data/rules/ngpl_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NGPL diff --git a/src/licensedcode/data/rules/ngpl_2.RULE b/src/licensedcode/data/rules/ngpl_2.RULE index 3fff68396c7..277b17ea868 100644 --- a/src/licensedcode/data/rules/ngpl_2.RULE +++ b/src/licensedcode/data/rules/ngpl_2.RULE @@ -1 +1,7 @@ -NetHack may be freely redistributed. See license for details. */ +--- +license_expression: ngpl +is_license_notice: yes +relevance: 100 +--- + +NetHack may be freely redistributed. See license for details. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_2.yml b/src/licensedcode/data/rules/ngpl_2.yml deleted file mode 100644 index c2a442b52ac..00000000000 --- a/src/licensedcode/data/rules/ngpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ngpl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ngpl_3.RULE b/src/licensedcode/data/rules/ngpl_3.RULE index 48c1cf4e369..7a20f12d0ac 100644 --- a/src/licensedcode/data/rules/ngpl_3.RULE +++ b/src/licensedcode/data/rules/ngpl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NGPL Nethack General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_3.yml b/src/licensedcode/data/rules/ngpl_3.yml deleted file mode 100644 index 5ba513e14be..00000000000 --- a/src/licensedcode/data/rules/ngpl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ngpl_4.RULE b/src/licensedcode/data/rules/ngpl_4.RULE index d857cad8914..71464cec9d1 100644 --- a/src/licensedcode/data/rules/ngpl_4.RULE +++ b/src/licensedcode/data/rules/ngpl_4.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Nethack General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_4.yml b/src/licensedcode/data/rules/ngpl_4.yml deleted file mode 100644 index 5ba513e14be..00000000000 --- a/src/licensedcode/data/rules/ngpl_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ngpl_5.RULE b/src/licensedcode/data/rules/ngpl_5.RULE index 073b8bf1d99..0771958ee5f 100644 --- a/src/licensedcode/data/rules/ngpl_5.RULE +++ b/src/licensedcode/data/rules/ngpl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ngpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Nethack General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_5.yml b/src/licensedcode/data/rules/ngpl_5.yml deleted file mode 100644 index bc735de634c..00000000000 --- a/src/licensedcode/data/rules/ngpl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ngpl_6.RULE b/src/licensedcode/data/rules/ngpl_6.RULE index 28ad0bef4d3..f1ec04dcbc4 100644 --- a/src/licensedcode/data/rules/ngpl_6.RULE +++ b/src/licensedcode/data/rules/ngpl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ngpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Nethack General Public License NGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_6.yml b/src/licensedcode/data/rules/ngpl_6.yml deleted file mode 100644 index bc735de634c..00000000000 --- a/src/licensedcode/data/rules/ngpl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ngpl_7.RULE b/src/licensedcode/data/rules/ngpl_7.RULE index 0d2487158b4..a8f8eb2ee98 100644 --- a/src/licensedcode/data/rules/ngpl_7.RULE +++ b/src/licensedcode/data/rules/ngpl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ngpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_7.yml b/src/licensedcode/data/rules/ngpl_7.yml deleted file mode 100644 index 288e7c8d740..00000000000 --- a/src/licensedcode/data/rules/ngpl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ngpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ngpl_8.RULE b/src/licensedcode/data/rules/ngpl_8.RULE index c7c68132d4e..d8674ac36bc 100644 --- a/src/licensedcode/data/rules/ngpl_8.RULE +++ b/src/licensedcode/data/rules/ngpl_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ngpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Nethack General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_8.yml b/src/licensedcode/data/rules/ngpl_8.yml deleted file mode 100644 index 288e7c8d740..00000000000 --- a/src/licensedcode/data/rules/ngpl_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ngpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ngpl_9.RULE b/src/licensedcode/data/rules/ngpl_9.RULE index 6a134cd3b73..26439d5dc25 100644 --- a/src/licensedcode/data/rules/ngpl_9.RULE +++ b/src/licensedcode/data/rules/ngpl_9.RULE @@ -1 +1,10 @@ +--- +license_expression: ngpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_9.yml b/src/licensedcode/data/rules/ngpl_9.yml deleted file mode 100644 index 288e7c8d740..00000000000 --- a/src/licensedcode/data/rules/ngpl_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ngpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ngpl_url_1.RULE b/src/licensedcode/data/rules/ngpl_url_1.RULE index 8c2659a172d..556bd4573f2 100644 --- a/src/licensedcode/data/rules/ngpl_url_1.RULE +++ b/src/licensedcode/data/rules/ngpl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ngpl +--- + https://spdx.org/licenses/ngpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_url_1.yml b/src/licensedcode/data/rules/ngpl_url_1.yml deleted file mode 100644 index b13badc5cf6..00000000000 --- a/src/licensedcode/data/rules/ngpl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ngpl diff --git a/src/licensedcode/data/rules/ngpl_url_2.RULE b/src/licensedcode/data/rules/ngpl_url_2.RULE index e0b8757cb40..197edd40531 100644 --- a/src/licensedcode/data/rules/ngpl_url_2.RULE +++ b/src/licensedcode/data/rules/ngpl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ngpl.html +--- + https://spdx.org/licenses/ngpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_url_2.yml b/src/licensedcode/data/rules/ngpl_url_2.yml deleted file mode 100644 index 982a820a126..00000000000 --- a/src/licensedcode/data/rules/ngpl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ngpl.html diff --git a/src/licensedcode/data/rules/ngpl_url_glc_204.RULE b/src/licensedcode/data/rules/ngpl_url_glc_204.RULE index f4920530406..9f62face004 100644 --- a/src/licensedcode/data/rules/ngpl_url_glc_204.RULE +++ b/src/licensedcode/data/rules/ngpl_url_glc_204.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ngpl +--- + http://www.opensource.org/licenses/ngpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_url_glc_204.yml b/src/licensedcode/data/rules/ngpl_url_glc_204.yml deleted file mode 100644 index b6db44e111d..00000000000 --- a/src/licensedcode/data/rules/ngpl_url_glc_204.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ngpl diff --git a/src/licensedcode/data/rules/ngpl_url_glc_205.RULE b/src/licensedcode/data/rules/ngpl_url_glc_205.RULE index 6e505dcec63..474d36b9d00 100644 --- a/src/licensedcode/data/rules/ngpl_url_glc_205.RULE +++ b/src/licensedcode/data/rules/ngpl_url_glc_205.RULE @@ -1 +1,9 @@ +--- +license_expression: ngpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ngpl +--- + https://www.opensource.org/licenses/ngpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ngpl_url_glc_205.yml b/src/licensedcode/data/rules/ngpl_url_glc_205.yml deleted file mode 100644 index 43b4c8188c2..00000000000 --- a/src/licensedcode/data/rules/ngpl_url_glc_205.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ngpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ngpl diff --git a/src/licensedcode/data/rules/nicta-exception_1.RULE b/src/licensedcode/data/rules/nicta-exception_1.RULE index aa2c751e1b6..0f2e92c2da2 100644 --- a/src/licensedcode/data/rules/nicta-exception_1.RULE +++ b/src/licensedcode/data/rules/nicta-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nicta-exception +is_license_text: yes +relevance: 100 +--- + # No right, title or interest in or to any trade mark, service mark, logo or # trade name of of National ICT Australia Limited, ABN 62 102 206 173 # ("NICTA") or its licensors is granted. Modified versions of the Program diff --git a/src/licensedcode/data/rules/nicta-exception_1.yml b/src/licensedcode/data/rules/nicta-exception_1.yml deleted file mode 100644 index fc2ae7fb4c7..00000000000 --- a/src/licensedcode/data/rules/nicta-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nicta-exception -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nicta-psl_1.RULE b/src/licensedcode/data/rules/nicta-psl_1.RULE index 11213aa3105..6b22d79844e 100644 --- a/src/licensedcode/data/rules/nicta-psl_1.RULE +++ b/src/licensedcode/data/rules/nicta-psl_1.RULE @@ -1 +1,6 @@ - is licensed under the terms of the NICTA Public Software Licence (which is substantially similar to the "Three-Clause BSD License", with some additional language pertaining to Australian law). \ No newline at end of file +--- +license_expression: nicta-psl +is_license_notice: yes +--- + + is licensed under the terms of the NICTA Public Software Licence (which is substantially similar to the "Three-Clause BSD License", with some additional language pertaining to Australian law). \ No newline at end of file diff --git a/src/licensedcode/data/rules/nicta-psl_1.yml b/src/licensedcode/data/rules/nicta-psl_1.yml deleted file mode 100644 index 9f6c140091a..00000000000 --- a/src/licensedcode/data/rules/nicta-psl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nicta-psl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/nist-pd-fallback_1.RULE b/src/licensedcode/data/rules/nist-pd-fallback_1.RULE index 357b5f961ca..f6906b37391 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_1.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_1.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NIST Public Domain Notice with license fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_1.yml b/src/licensedcode/data/rules/nist-pd-fallback_1.yml deleted file mode 100644 index 7360ce2b578..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd-fallback_10.RULE b/src/licensedcode/data/rules/nist-pd-fallback_10.RULE index ca59885866e..550a7fd3c5a 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_10.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_10.RULE @@ -1 +1,7 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NIST-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_10.yml b/src/licensedcode/data/rules/nist-pd-fallback_10.yml deleted file mode 100644 index a7403a4a883..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nist-pd-fallback_11.RULE b/src/licensedcode/data/rules/nist-pd-fallback_11.RULE index 42fc4203814..414734d7a20 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_11.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_11.RULE @@ -1 +1,9 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NIST-PD-fallback +--- + LICENSE {{NIST-PD-fallback}} https://spdx.org/licenses/NIST-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_11.yml b/src/licensedcode/data/rules/nist-pd-fallback_11.yml deleted file mode 100644 index 09588c80116..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NIST-PD-fallback diff --git a/src/licensedcode/data/rules/nist-pd-fallback_12.RULE b/src/licensedcode/data/rules/nist-pd-fallback_12.RULE index 7cc80a8c28d..5b376101dbc 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_12.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_12.RULE @@ -1 +1,9 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NIST-PD-fallback +--- + {{NIST-PD-fallback}} https://spdx.org/licenses/NIST-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_12.yml b/src/licensedcode/data/rules/nist-pd-fallback_12.yml deleted file mode 100644 index 09588c80116..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NIST-PD-fallback diff --git a/src/licensedcode/data/rules/nist-pd-fallback_2.RULE b/src/licensedcode/data/rules/nist-pd-fallback_2.RULE index 572e6bc1783..c0c39cfdd2f 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_2.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_2.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: NIST Public Domain Notice with license fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_2.yml b/src/licensedcode/data/rules/nist-pd-fallback_2.yml deleted file mode 100644 index 7360ce2b578..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd-fallback_3.RULE b/src/licensedcode/data/rules/nist-pd-fallback_3.RULE index 91232737926..8710cf20496 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_3.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_3.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NIST-PD-fallback NIST Public Domain Notice with license fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_3.yml b/src/licensedcode/data/rules/nist-pd-fallback_3.yml deleted file mode 100644 index 7360ce2b578..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd-fallback_4.RULE b/src/licensedcode/data/rules/nist-pd-fallback_4.RULE index 18bc23f7ba4..431df49fe3e 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_4.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_4.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NIST Public Domain Notice with license fallback NIST-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_4.yml b/src/licensedcode/data/rules/nist-pd-fallback_4.yml deleted file mode 100644 index 7360ce2b578..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd-fallback_5.RULE b/src/licensedcode/data/rules/nist-pd-fallback_5.RULE index ab50f772135..6ca873235ca 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_5.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd-fallback +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NIST-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_5.yml b/src/licensedcode/data/rules/nist-pd-fallback_5.yml deleted file mode 100644 index 87beb54fdcb..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd-fallback -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd-fallback_6.RULE b/src/licensedcode/data/rules/nist-pd-fallback_6.RULE index d71e2803141..504e3f0d1a0 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_6.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd-fallback +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NIST Public Domain Notice with license fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_6.yml b/src/licensedcode/data/rules/nist-pd-fallback_6.yml deleted file mode 100644 index 87beb54fdcb..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd-fallback -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd-fallback_7.RULE b/src/licensedcode/data/rules/nist-pd-fallback_7.RULE index 382ac77cd6e..fae39a284fd 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_7.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd-fallback +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NIST-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_7.yml b/src/licensedcode/data/rules/nist-pd-fallback_7.yml deleted file mode 100644 index 87beb54fdcb..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd-fallback -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd-fallback_8.RULE b/src/licensedcode/data/rules/nist-pd-fallback_8.RULE index dfbb052bc76..c4bd2829071 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_8.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_8.RULE @@ -1 +1,9 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NIST-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_8.yml b/src/licensedcode/data/rules/nist-pd-fallback_8.yml deleted file mode 100644 index 92085b6ec77..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nist-pd-fallback_9.RULE b/src/licensedcode/data/rules/nist-pd-fallback_9.RULE index 75d0f07255e..3d0ba2e5103 100644 --- a/src/licensedcode/data/rules/nist-pd-fallback_9.RULE +++ b/src/licensedcode/data/rules/nist-pd-fallback_9.RULE @@ -1 +1,9 @@ +--- +license_expression: nist-pd-fallback +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NIST-PD-fallback +--- + https://licenses.nuget.org/NIST-PD-fallback \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd-fallback_9.yml b/src/licensedcode/data/rules/nist-pd-fallback_9.yml deleted file mode 100644 index 5b9612b4615..00000000000 --- a/src/licensedcode/data/rules/nist-pd-fallback_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd-fallback -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NIST-PD-fallback diff --git a/src/licensedcode/data/rules/nist-pd_1.RULE b/src/licensedcode/data/rules/nist-pd_1.RULE index c3ea89243bf..d0d085f82cc 100644 --- a/src/licensedcode/data/rules/nist-pd_1.RULE +++ b/src/licensedcode/data/rules/nist-pd_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nist-pd +is_license_text: yes +--- + * Conditions Of Use * * This software was developed by employees of the National Institute of diff --git a/src/licensedcode/data/rules/nist-pd_1.yml b/src/licensedcode/data/rules/nist-pd_1.yml deleted file mode 100644 index 4de1ced2c07..00000000000 --- a/src/licensedcode/data/rules/nist-pd_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nist-pd -is_license_text: yes diff --git a/src/licensedcode/data/rules/nist-pd_10.RULE b/src/licensedcode/data/rules/nist-pd_10.RULE index 41ae7f69b53..08f6d57d6a5 100644 --- a/src/licensedcode/data/rules/nist-pd_10.RULE +++ b/src/licensedcode/data/rules/nist-pd_10.RULE @@ -1,3 +1,13 @@ +--- +license_expression: nist-pd +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.copyright.gov/help/faq-definitions.html#public_domain + - https://www.copyright.gov/title17/92chap1.html#105 + - https://www.nist.gov/ +--- + # Terms of Use This software was developed by employees of the diff --git a/src/licensedcode/data/rules/nist-pd_10.yml b/src/licensedcode/data/rules/nist-pd_10.yml deleted file mode 100644 index bb0b21ce4a1..00000000000 --- a/src/licensedcode/data/rules/nist-pd_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: nist-pd -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.copyright.gov/help/faq-definitions.html#public_domain - - https://www.copyright.gov/title17/92chap1.html#105 - - https://www.nist.gov/ diff --git a/src/licensedcode/data/rules/nist-pd_11.RULE b/src/licensedcode/data/rules/nist-pd_11.RULE index 43589d046a5..e5ecc9c0555 100644 --- a/src/licensedcode/data/rules/nist-pd_11.RULE +++ b/src/licensedcode/data/rules/nist-pd_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nist-pd +is_license_text: yes +relevance: 100 +--- + This software was developed by employees of the National Institute of Standards and Technology (NIST), an agency of the Federal Government and is being made available as a public service. Pursuant to title 17 United States Code Section 105, works of NIST employees are not subject to copyright protection in the United States. This software may be subject to foreign copyright. Permission in the United States and in foreign countries, to the extent that NIST may hold copyright, to use, copy, modify, create derivative works, and distribute this software and its documentation without fee is hereby granted on a non-exclusive basis, provided that this notice and disclaimer of warranty appears in all copies. THE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND FREEDOM FROM INFRINGEMENT, AND ANY WARRANTY THAT THE DOCUMENTATION WILL CONFORM TO THE SOFTWARE, OR ANY WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE. IN NO EVENT SHALL NIST BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM, OR IN ANY WAY CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY, CONTRACT, TORT, OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR PROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT OF THE RESULTS OF, OR USE OF, THE SOFTWARE OR SERVICES PROVIDED HEREUNDER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_11.yml b/src/licensedcode/data/rules/nist-pd_11.yml deleted file mode 100644 index 0f1a5c10422..00000000000 --- a/src/licensedcode/data/rules/nist-pd_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nist-pd_12.RULE b/src/licensedcode/data/rules/nist-pd_12.RULE index bcfde646613..8df7b285970 100644 --- a/src/licensedcode/data/rules/nist-pd_12.RULE +++ b/src/licensedcode/data/rules/nist-pd_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nist-pd +is_license_notice: yes +relevance: 100 +--- + All NVD data is freely available from our XML Data Feeds. There are no fees, licensing restrictions, or even a requirement to register. All NIST publications are available in the public domain according to Title 17 of the United States Code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_12.yml b/src/licensedcode/data/rules/nist-pd_12.yml deleted file mode 100644 index f7c94e97ba8..00000000000 --- a/src/licensedcode/data/rules/nist-pd_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nist-pd_13.RULE b/src/licensedcode/data/rules/nist-pd_13.RULE index d22911d4faa..1c4f91e58d6 100644 --- a/src/licensedcode/data/rules/nist-pd_13.RULE +++ b/src/licensedcode/data/rules/nist-pd_13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: nist-pd +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.nist.gov/open/license +--- + This data/work was created by employees of the National Institute of Standards and Technology (NIST), an agency of the Federal Government. Pursuant to title 17 United States Code Section 105, works of NIST employees are not subject to diff --git a/src/licensedcode/data/rules/nist-pd_13.yml b/src/licensedcode/data/rules/nist-pd_13.yml deleted file mode 100644 index 2e643012043..00000000000 --- a/src/licensedcode/data/rules/nist-pd_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.nist.gov/open/license diff --git a/src/licensedcode/data/rules/nist-pd_14.RULE b/src/licensedcode/data/rules/nist-pd_14.RULE index 23b7ffc37ca..1ba4e3001fb 100644 --- a/src/licensedcode/data/rules/nist-pd_14.RULE +++ b/src/licensedcode/data/rules/nist-pd_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nist-pd +is_license_text: yes +notes: minor, non-material text variant +--- + Permission to freely use, copy, modify, and distribute this software and its documentation without fee is hereby granted, provided that this copyright notice and disclaimer of warranty appears in all copies. diff --git a/src/licensedcode/data/rules/nist-pd_14.yml b/src/licensedcode/data/rules/nist-pd_14.yml deleted file mode 100644 index 31ef9bb1b70..00000000000 --- a/src/licensedcode/data/rules/nist-pd_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd -is_license_text: yes -notes: minor, non-material text variant diff --git a/src/licensedcode/data/rules/nist-pd_15.RULE b/src/licensedcode/data/rules/nist-pd_15.RULE index 0b831a8d4ff..8bdc860af1d 100644 --- a/src/licensedcode/data/rules/nist-pd_15.RULE +++ b/src/licensedcode/data/rules/nist-pd_15.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NIST Public Domain Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_15.yml b/src/licensedcode/data/rules/nist-pd_15.yml deleted file mode 100644 index f1bfc9ea268..00000000000 --- a/src/licensedcode/data/rules/nist-pd_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd_16.RULE b/src/licensedcode/data/rules/nist-pd_16.RULE index 5b092874977..715a76c7702 100644 --- a/src/licensedcode/data/rules/nist-pd_16.RULE +++ b/src/licensedcode/data/rules/nist-pd_16.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: NIST Public Domain Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_16.yml b/src/licensedcode/data/rules/nist-pd_16.yml deleted file mode 100644 index f1bfc9ea268..00000000000 --- a/src/licensedcode/data/rules/nist-pd_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd_17.RULE b/src/licensedcode/data/rules/nist-pd_17.RULE index 977791ac94d..5f936d4c5e2 100644 --- a/src/licensedcode/data/rules/nist-pd_17.RULE +++ b/src/licensedcode/data/rules/nist-pd_17.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NIST-PD NIST Public Domain Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_17.yml b/src/licensedcode/data/rules/nist-pd_17.yml deleted file mode 100644 index f1bfc9ea268..00000000000 --- a/src/licensedcode/data/rules/nist-pd_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd_18.RULE b/src/licensedcode/data/rules/nist-pd_18.RULE index bf899a6a489..307986befe8 100644 --- a/src/licensedcode/data/rules/nist-pd_18.RULE +++ b/src/licensedcode/data/rules/nist-pd_18.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NIST Public Domain Notice NIST-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_18.yml b/src/licensedcode/data/rules/nist-pd_18.yml deleted file mode 100644 index f1bfc9ea268..00000000000 --- a/src/licensedcode/data/rules/nist-pd_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd_19.RULE b/src/licensedcode/data/rules/nist-pd_19.RULE index 6ac25e1f1ae..a1dff5103ff 100644 --- a/src/licensedcode/data/rules/nist-pd_19.RULE +++ b/src/licensedcode/data/rules/nist-pd_19.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NIST-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_19.yml b/src/licensedcode/data/rules/nist-pd_19.yml deleted file mode 100644 index 7a6218ecea0..00000000000 --- a/src/licensedcode/data/rules/nist-pd_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd_2.RULE b/src/licensedcode/data/rules/nist-pd_2.RULE index a401565f729..572ffd200c9 100644 --- a/src/licensedcode/data/rules/nist-pd_2.RULE +++ b/src/licensedcode/data/rules/nist-pd_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nist-pd +is_license_notice: yes +--- + NIST-developed software is provided by NIST as a public service. You may use, copy and distribute copies of the software in any medium, provided that you keep intact this entire notice. You may improve, modify and create derivative works of the @@ -23,4 +28,4 @@ laws, damage to or loss of data, programs or equipment, and the unavailability o interruption of operation. This software is not intended to be used in any situation where a failure could cause risk of injury or damage to property. The software developed by NIST employees is not subject to copyright protection within the United -States. +States. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_2.yml b/src/licensedcode/data/rules/nist-pd_2.yml deleted file mode 100644 index 6f7a6915b0a..00000000000 --- a/src/licensedcode/data/rules/nist-pd_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nist-pd -is_license_notice: yes diff --git a/src/licensedcode/data/rules/nist-pd_20.RULE b/src/licensedcode/data/rules/nist-pd_20.RULE index c8664afb52c..9667cd1da1f 100644 --- a/src/licensedcode/data/rules/nist-pd_20.RULE +++ b/src/licensedcode/data/rules/nist-pd_20.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NIST Public Domain Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_20.yml b/src/licensedcode/data/rules/nist-pd_20.yml deleted file mode 100644 index 7a6218ecea0..00000000000 --- a/src/licensedcode/data/rules/nist-pd_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd_21.RULE b/src/licensedcode/data/rules/nist-pd_21.RULE index 1d69286c494..4b532e3bac1 100644 --- a/src/licensedcode/data/rules/nist-pd_21.RULE +++ b/src/licensedcode/data/rules/nist-pd_21.RULE @@ -1 +1,10 @@ +--- +license_expression: nist-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NIST-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_21.yml b/src/licensedcode/data/rules/nist-pd_21.yml deleted file mode 100644 index 7a6218ecea0..00000000000 --- a/src/licensedcode/data/rules/nist-pd_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nist-pd_22.RULE b/src/licensedcode/data/rules/nist-pd_22.RULE index 7fcf1c03261..6779e398d03 100644 --- a/src/licensedcode/data/rules/nist-pd_22.RULE +++ b/src/licensedcode/data/rules/nist-pd_22.RULE @@ -1 +1,9 @@ +--- +license_expression: nist-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NIST-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_22.yml b/src/licensedcode/data/rules/nist-pd_22.yml deleted file mode 100644 index 537286c9436..00000000000 --- a/src/licensedcode/data/rules/nist-pd_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nist-pd_23.RULE b/src/licensedcode/data/rules/nist-pd_23.RULE index ae003a5db64..9af65797205 100644 --- a/src/licensedcode/data/rules/nist-pd_23.RULE +++ b/src/licensedcode/data/rules/nist-pd_23.RULE @@ -1 +1,9 @@ +--- +license_expression: nist-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NIST-PD +--- + https://licenses.nuget.org/NIST-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_23.yml b/src/licensedcode/data/rules/nist-pd_23.yml deleted file mode 100644 index 47970ba2d7e..00000000000 --- a/src/licensedcode/data/rules/nist-pd_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NIST-PD diff --git a/src/licensedcode/data/rules/nist-pd_24.RULE b/src/licensedcode/data/rules/nist-pd_24.RULE index a8693ff9c23..68290244575 100644 --- a/src/licensedcode/data/rules/nist-pd_24.RULE +++ b/src/licensedcode/data/rules/nist-pd_24.RULE @@ -1 +1,7 @@ +--- +license_expression: nist-pd +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NIST-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_24.yml b/src/licensedcode/data/rules/nist-pd_24.yml deleted file mode 100644 index 296982bd041..00000000000 --- a/src/licensedcode/data/rules/nist-pd_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nist-pd_25.RULE b/src/licensedcode/data/rules/nist-pd_25.RULE index f5af3ce4966..c64a05ec074 100644 --- a/src/licensedcode/data/rules/nist-pd_25.RULE +++ b/src/licensedcode/data/rules/nist-pd_25.RULE @@ -1 +1,9 @@ +--- +license_expression: nist-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NIST-PD +--- + LICENSE {{NIST-PD}} https://spdx.org/licenses/NIST-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_25.yml b/src/licensedcode/data/rules/nist-pd_25.yml deleted file mode 100644 index 7b6d151b84a..00000000000 --- a/src/licensedcode/data/rules/nist-pd_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NIST-PD diff --git a/src/licensedcode/data/rules/nist-pd_26.RULE b/src/licensedcode/data/rules/nist-pd_26.RULE index f9ef741f940..86f238f53f0 100644 --- a/src/licensedcode/data/rules/nist-pd_26.RULE +++ b/src/licensedcode/data/rules/nist-pd_26.RULE @@ -1 +1,9 @@ +--- +license_expression: nist-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NIST-PD +--- + {{NIST-PD}} https://spdx.org/licenses/NIST-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_26.yml b/src/licensedcode/data/rules/nist-pd_26.yml deleted file mode 100644 index 7b6d151b84a..00000000000 --- a/src/licensedcode/data/rules/nist-pd_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nist-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NIST-PD diff --git a/src/licensedcode/data/rules/nist-pd_3.RULE b/src/licensedcode/data/rules/nist-pd_3.RULE index f72dbda45c2..34a9d768239 100644 --- a/src/licensedcode/data/rules/nist-pd_3.RULE +++ b/src/licensedcode/data/rules/nist-pd_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nist-pd +is_license_notice: yes +--- + NIST Software Disclaimer NIST-developed software is provided by NIST as a public service. You may use, copy diff --git a/src/licensedcode/data/rules/nist-pd_3.yml b/src/licensedcode/data/rules/nist-pd_3.yml deleted file mode 100644 index 6f7a6915b0a..00000000000 --- a/src/licensedcode/data/rules/nist-pd_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nist-pd -is_license_notice: yes diff --git a/src/licensedcode/data/rules/nist-pd_4.RULE b/src/licensedcode/data/rules/nist-pd_4.RULE index 261f4ebf5ff..30d68a8f867 100644 --- a/src/licensedcode/data/rules/nist-pd_4.RULE +++ b/src/licensedcode/data/rules/nist-pd_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nist-pd +is_license_notice: yes +--- + This software was developed by employees of the National Institute of Standards and Technology (NIST), and others. This software has been contributed to the public domain. @@ -13,4 +18,4 @@ AND DATA ACCURACY. NIST does not warrant or make any representations regarding the use of the software or the results thereof, including but not limited to the correctness, accuracy, reliability or usefulness of - this software. + this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_4.yml b/src/licensedcode/data/rules/nist-pd_4.yml deleted file mode 100644 index 6f7a6915b0a..00000000000 --- a/src/licensedcode/data/rules/nist-pd_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nist-pd -is_license_notice: yes diff --git a/src/licensedcode/data/rules/nist-pd_5.RULE b/src/licensedcode/data/rules/nist-pd_5.RULE index c3659ad9257..9754b57ef2c 100644 --- a/src/licensedcode/data/rules/nist-pd_5.RULE +++ b/src/licensedcode/data/rules/nist-pd_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: nist-pd +is_license_text: yes +relevance: 90 +notes: this is not exactly the same as nist-pd, buts substantially similar terms +--- + License: This software and/or related materials was developed at the National Institute of Standards and Technology (NIST) by employees of the Federal Government @@ -31,4 +38,4 @@ or in fact shall know of the possibility. By using this software, you agree to bear all risk relating to quality, use and performance of the software and/or related materials. You agree to hold the Government harmless from any claim arising from your use -of the software. +of the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nist-pd_5.yml b/src/licensedcode/data/rules/nist-pd_5.yml deleted file mode 100644 index 2e52ca79f33..00000000000 --- a/src/licensedcode/data/rules/nist-pd_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: nist-pd -is_license_text: yes -relevance: 90 -notes: this is not exactly the same as nist-pd, buts substantially similar terms diff --git a/src/licensedcode/data/rules/nist-pd_6.RULE b/src/licensedcode/data/rules/nist-pd_6.RULE index bb6d7e32b92..3e25c70d51e 100644 --- a/src/licensedcode/data/rules/nist-pd_6.RULE +++ b/src/licensedcode/data/rules/nist-pd_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nist-pd +is_license_text: yes +relevance: 100 +--- + Portions of this software was developed by employees of the National Institute of Standards and Technology (NIST), an agency of the Federal Government. Pursuant to title 17 United States Code Section 105, works of NIST employees are diff --git a/src/licensedcode/data/rules/nist-pd_6.yml b/src/licensedcode/data/rules/nist-pd_6.yml deleted file mode 100644 index 0f1a5c10422..00000000000 --- a/src/licensedcode/data/rules/nist-pd_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nist-pd_7.RULE b/src/licensedcode/data/rules/nist-pd_7.RULE index 0db04c7e383..a8f8ce8427d 100644 --- a/src/licensedcode/data/rules/nist-pd_7.RULE +++ b/src/licensedcode/data/rules/nist-pd_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nist-pd +is_license_text: yes +relevance: 100 +--- + Permission to freely use, copy, modify, and distribute this software and its documentation without fee is hereby granted, provided that this notice and disclaimer of warranty appears in all copies. diff --git a/src/licensedcode/data/rules/nist-pd_7.yml b/src/licensedcode/data/rules/nist-pd_7.yml deleted file mode 100644 index 0f1a5c10422..00000000000 --- a/src/licensedcode/data/rules/nist-pd_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nist-pd_8.RULE b/src/licensedcode/data/rules/nist-pd_8.RULE index 4f0dd56b4f1..f336e5a74b1 100644 --- a/src/licensedcode/data/rules/nist-pd_8.RULE +++ b/src/licensedcode/data/rules/nist-pd_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nist-pd +is_license_notice: yes +relevance: 100 +--- + This software was developed at the National Institute of Standards and Technology by employees of the Federal Government in the course of their official duties. Pursuant to title 17 Section 105 of the diff --git a/src/licensedcode/data/rules/nist-pd_8.yml b/src/licensedcode/data/rules/nist-pd_8.yml deleted file mode 100644 index f7c94e97ba8..00000000000 --- a/src/licensedcode/data/rules/nist-pd_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nist-pd_9.RULE b/src/licensedcode/data/rules/nist-pd_9.RULE index 9c8b1169914..d03abd959eb 100644 --- a/src/licensedcode/data/rules/nist-pd_9.RULE +++ b/src/licensedcode/data/rules/nist-pd_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: nist-pd +is_license_notice: yes +relevance: 100 +--- + Portions of this software was developed by employees of the National Institute * of Standards and Technology (NIST), an agency of the Federal Government and is * being made available as a public service. Pursuant to title 17 United States diff --git a/src/licensedcode/data/rules/nist-pd_9.yml b/src/licensedcode/data/rules/nist-pd_9.yml deleted file mode 100644 index f7c94e97ba8..00000000000 --- a/src/licensedcode/data/rules/nist-pd_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nist-pd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nist-pd_or_cc0-1.0_1.RULE b/src/licensedcode/data/rules/nist-pd_or_cc0-1.0_1.RULE index c37abacb8b2..2a731b58435 100644 --- a/src/licensedcode/data/rules/nist-pd_or_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/nist-pd_or_cc0-1.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: nist-pd OR cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 + - https://creativecommons.org/publicdomain/zero/1.0/legalcode +--- + ## This project is in the worldwide public domain As a work of the United States government, this project is in the public domain within the United States under the [National Institute of Standards and Technology Software License](#national-institute-of-standards-and-technology-software-license). diff --git a/src/licensedcode/data/rules/nist-pd_or_cc0-1.0_1.yml b/src/licensedcode/data/rules/nist-pd_or_cc0-1.0_1.yml deleted file mode 100644 index 889a6411cef..00000000000 --- a/src/licensedcode/data/rules/nist-pd_or_cc0-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nist-pd OR cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 - - https://creativecommons.org/publicdomain/zero/1.0/legalcode diff --git a/src/licensedcode/data/rules/nlod-1.0_1.RULE b/src/licensedcode/data/rules/nlod-1.0_1.RULE index da8a6bbc088..dd8db7eb175 100644 --- a/src/licensedcode/data/rules/nlod-1.0_1.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NLOD-1.0 Norwegian Licence for Open Government Data \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_1.yml b/src/licensedcode/data/rules/nlod-1.0_1.yml deleted file mode 100644 index c259396e889..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nlod-1.0_10.RULE b/src/licensedcode/data/rules/nlod-1.0_10.RULE index 488c8f239b0..e80d3841400 100644 --- a/src/licensedcode/data/rules/nlod-1.0_10.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NLOD-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_10.yml b/src/licensedcode/data/rules/nlod-1.0_10.yml deleted file mode 100644 index 8a3ae0a1031..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nlod-1.0_11.RULE b/src/licensedcode/data/rules/nlod-1.0_11.RULE index ebe4e7efdb7..492d99a6ed2 100644 --- a/src/licensedcode/data/rules/nlod-1.0_11.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NLOD-1.0 +--- + LICENSE {{NLOD-1.0}} https://spdx.org/licenses/NLOD-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_11.yml b/src/licensedcode/data/rules/nlod-1.0_11.yml deleted file mode 100644 index 397768909ff..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NLOD-1.0 diff --git a/src/licensedcode/data/rules/nlod-1.0_12.RULE b/src/licensedcode/data/rules/nlod-1.0_12.RULE index 65546b9915d..1f0f43069ba 100644 --- a/src/licensedcode/data/rules/nlod-1.0_12.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NLOD-1.0 +--- + {{NLOD-1.0}} https://spdx.org/licenses/NLOD-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_12.yml b/src/licensedcode/data/rules/nlod-1.0_12.yml deleted file mode 100644 index 397768909ff..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NLOD-1.0 diff --git a/src/licensedcode/data/rules/nlod-1.0_2.RULE b/src/licensedcode/data/rules/nlod-1.0_2.RULE index 8ec08182d83..47583ac59c5 100644 --- a/src/licensedcode/data/rules/nlod-1.0_2.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Norwegian Licence for Open Government Data (NLOD) 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_2.yml b/src/licensedcode/data/rules/nlod-1.0_2.yml deleted file mode 100644 index 045dfca282a..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-1.0_3.RULE b/src/licensedcode/data/rules/nlod-1.0_3.RULE index 9e705465d40..5037d1412b6 100644 --- a/src/licensedcode/data/rules/nlod-1.0_3.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Norwegian Licence for Open Government Data (NLOD) 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_3.yml b/src/licensedcode/data/rules/nlod-1.0_3.yml deleted file mode 100644 index 045dfca282a..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-1.0_4.RULE b/src/licensedcode/data/rules/nlod-1.0_4.RULE index 7272b7d3ef1..dbec622e594 100644 --- a/src/licensedcode/data/rules/nlod-1.0_4.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NLOD-1.0 Norwegian Licence for Open Government Data (NLOD) 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_4.yml b/src/licensedcode/data/rules/nlod-1.0_4.yml deleted file mode 100644 index 045dfca282a..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-1.0_5.RULE b/src/licensedcode/data/rules/nlod-1.0_5.RULE index da6b9272c56..2f612d43f86 100644 --- a/src/licensedcode/data/rules/nlod-1.0_5.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Norwegian Licence for Open Government Data (NLOD) 1.0 NLOD-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_5.yml b/src/licensedcode/data/rules/nlod-1.0_5.yml deleted file mode 100644 index 045dfca282a..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-1.0_6.RULE b/src/licensedcode/data/rules/nlod-1.0_6.RULE index b8fbcf01fb7..90cd7ee916a 100644 --- a/src/licensedcode/data/rules/nlod-1.0_6.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NLOD-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_6.yml b/src/licensedcode/data/rules/nlod-1.0_6.yml deleted file mode 100644 index 38865ec597a..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-1.0_7.RULE b/src/licensedcode/data/rules/nlod-1.0_7.RULE index 515bbdeaf1c..bc6a61b29ef 100644 --- a/src/licensedcode/data/rules/nlod-1.0_7.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Norwegian Licence for Open Government Data (NLOD) 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_7.yml b/src/licensedcode/data/rules/nlod-1.0_7.yml deleted file mode 100644 index 38865ec597a..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-1.0_8.RULE b/src/licensedcode/data/rules/nlod-1.0_8.RULE index 6b324e70607..342590fb83b 100644 --- a/src/licensedcode/data/rules/nlod-1.0_8.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NLOD-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_8.yml b/src/licensedcode/data/rules/nlod-1.0_8.yml deleted file mode 100644 index 38865ec597a..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-1.0_9.RULE b/src/licensedcode/data/rules/nlod-1.0_9.RULE index 5721218259b..825eaed22d8 100644 --- a/src/licensedcode/data/rules/nlod-1.0_9.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NLOD-1.0 +--- + https://licenses.nuget.org/NLOD-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_9.yml b/src/licensedcode/data/rules/nlod-1.0_9.yml deleted file mode 100644 index 98a802dfd89..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NLOD-1.0 diff --git a/src/licensedcode/data/rules/nlod-1.0_url_1.RULE b/src/licensedcode/data/rules/nlod-1.0_url_1.RULE index a6baa6d5418..6c834191efc 100644 --- a/src/licensedcode/data/rules/nlod-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nlod-1.0 +--- + https://spdx.org/licenses/nlod-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_url_1.yml b/src/licensedcode/data/rules/nlod-1.0_url_1.yml deleted file mode 100644 index 5004c7dc214..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nlod-1.0 diff --git a/src/licensedcode/data/rules/nlod-1.0_url_2.RULE b/src/licensedcode/data/rules/nlod-1.0_url_2.RULE index 6e084e46a3f..3ca8332b016 100644 --- a/src/licensedcode/data/rules/nlod-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/nlod-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nlod-1.0.html +--- + https://spdx.org/licenses/nlod-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-1.0_url_2.yml b/src/licensedcode/data/rules/nlod-1.0_url_2.yml deleted file mode 100644 index 595dbfc2f86..00000000000 --- a/src/licensedcode/data/rules/nlod-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nlod-1.0.html diff --git a/src/licensedcode/data/rules/nlod-2.0_1.RULE b/src/licensedcode/data/rules/nlod-2.0_1.RULE index e51d6be8680..bd0ee8afaf2 100644 --- a/src/licensedcode/data/rules/nlod-2.0_1.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NLOD-2.0 Norwegian Licence for Open Government Data \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_1.yml b/src/licensedcode/data/rules/nlod-2.0_1.yml deleted file mode 100644 index d5a167224c5..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nlod-2.0_10.RULE b/src/licensedcode/data/rules/nlod-2.0_10.RULE index 04db0bfcc38..796b07bd774 100644 --- a/src/licensedcode/data/rules/nlod-2.0_10.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NLOD-2.0 +--- + https://licenses.nuget.org/NLOD-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_10.yml b/src/licensedcode/data/rules/nlod-2.0_10.yml deleted file mode 100644 index 8ae7b17c884..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NLOD-2.0 diff --git a/src/licensedcode/data/rules/nlod-2.0_11.RULE b/src/licensedcode/data/rules/nlod-2.0_11.RULE index 070386d75d6..4d229218c0e 100644 --- a/src/licensedcode/data/rules/nlod-2.0_11.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NLOD-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_11.yml b/src/licensedcode/data/rules/nlod-2.0_11.yml deleted file mode 100644 index 75660546d33..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nlod-2.0_12.RULE b/src/licensedcode/data/rules/nlod-2.0_12.RULE index b25c9d37245..ff000fd075f 100644 --- a/src/licensedcode/data/rules/nlod-2.0_12.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NLOD-2.0 +--- + LICENSE {{NLOD-2.0}} https://spdx.org/licenses/NLOD-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_12.yml b/src/licensedcode/data/rules/nlod-2.0_12.yml deleted file mode 100644 index 2750d8d0752..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NLOD-2.0 diff --git a/src/licensedcode/data/rules/nlod-2.0_13.RULE b/src/licensedcode/data/rules/nlod-2.0_13.RULE index ad096b9ea6a..a04f7ca082d 100644 --- a/src/licensedcode/data/rules/nlod-2.0_13.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NLOD-2.0 +--- + {{NLOD-2.0}} https://spdx.org/licenses/NLOD-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_13.yml b/src/licensedcode/data/rules/nlod-2.0_13.yml deleted file mode 100644 index 2750d8d0752..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NLOD-2.0 diff --git a/src/licensedcode/data/rules/nlod-2.0_2.RULE b/src/licensedcode/data/rules/nlod-2.0_2.RULE index 56c6deb7b81..9b517eaa777 100644 --- a/src/licensedcode/data/rules/nlod-2.0_2.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Norwegian Licence for Open Government Data \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_2.yml b/src/licensedcode/data/rules/nlod-2.0_2.yml deleted file mode 100644 index d5a167224c5..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nlod-2.0_3.RULE b/src/licensedcode/data/rules/nlod-2.0_3.RULE index 5a69caaeacd..066b74eb2ef 100644 --- a/src/licensedcode/data/rules/nlod-2.0_3.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Norwegian Licence for Open Government Data (NLOD) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_3.yml b/src/licensedcode/data/rules/nlod-2.0_3.yml deleted file mode 100644 index 521beb5eedb..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-2.0_4.RULE b/src/licensedcode/data/rules/nlod-2.0_4.RULE index 323c3e30391..ccbe73dde5b 100644 --- a/src/licensedcode/data/rules/nlod-2.0_4.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Norwegian Licence for Open Government Data (NLOD) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_4.yml b/src/licensedcode/data/rules/nlod-2.0_4.yml deleted file mode 100644 index 521beb5eedb..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-2.0_5.RULE b/src/licensedcode/data/rules/nlod-2.0_5.RULE index 1f1f4a2ab46..07fe4321b14 100644 --- a/src/licensedcode/data/rules/nlod-2.0_5.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NLOD-2.0 Norwegian Licence for Open Government Data (NLOD) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_5.yml b/src/licensedcode/data/rules/nlod-2.0_5.yml deleted file mode 100644 index 521beb5eedb..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-2.0_6.RULE b/src/licensedcode/data/rules/nlod-2.0_6.RULE index 4743ca86618..50fff854026 100644 --- a/src/licensedcode/data/rules/nlod-2.0_6.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Norwegian Licence for Open Government Data (NLOD) 2.0 NLOD-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_6.yml b/src/licensedcode/data/rules/nlod-2.0_6.yml deleted file mode 100644 index 521beb5eedb..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-2.0_7.RULE b/src/licensedcode/data/rules/nlod-2.0_7.RULE index 7ffcb0eff85..75537a703d9 100644 --- a/src/licensedcode/data/rules/nlod-2.0_7.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NLOD-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_7.yml b/src/licensedcode/data/rules/nlod-2.0_7.yml deleted file mode 100644 index 9ca6351a4a2..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-2.0_8.RULE b/src/licensedcode/data/rules/nlod-2.0_8.RULE index 4baddf3561e..d2be9f20b4d 100644 --- a/src/licensedcode/data/rules/nlod-2.0_8.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Norwegian Licence for Open Government Data (NLOD) 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_8.yml b/src/licensedcode/data/rules/nlod-2.0_8.yml deleted file mode 100644 index 9ca6351a4a2..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlod-2.0_9.RULE b/src/licensedcode/data/rules/nlod-2.0_9.RULE index 16de40619b6..5ce8cfe5196 100644 --- a/src/licensedcode/data/rules/nlod-2.0_9.RULE +++ b/src/licensedcode/data/rules/nlod-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NLOD-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlod-2.0_9.yml b/src/licensedcode/data/rules/nlod-2.0_9.yml deleted file mode 100644 index 9ca6351a4a2..00000000000 --- a/src/licensedcode/data/rules/nlod-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlpl_1.RULE b/src/licensedcode/data/rules/nlpl_1.RULE index 846c3678beb..a252330d685 100644 --- a/src/licensedcode/data/rules/nlpl_1.RULE +++ b/src/licensedcode/data/rules/nlpl_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nlpl +is_license_text: yes +--- + NO LIMIT PUBLIC LICENSE Version 0/0, June 2012 @@ -11,5 +16,4 @@ Terms and conditions for copying, distribution, modification or anything else. 0 No limits to do anything with this work and this license. - 1 GOTO 0 - + 1 GOTO 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_1.yml b/src/licensedcode/data/rules/nlpl_1.yml deleted file mode 100644 index f98f1812e10..00000000000 --- a/src/licensedcode/data/rules/nlpl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nlpl -is_license_text: yes diff --git a/src/licensedcode/data/rules/nlpl_10.RULE b/src/licensedcode/data/rules/nlpl_10.RULE index 0f7bc5f87a8..0139dc8d6a5 100644 --- a/src/licensedcode/data/rules/nlpl_10.RULE +++ b/src/licensedcode/data/rules/nlpl_10.RULE @@ -1 +1,7 @@ +--- +license_expression: nlpl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NLPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_10.yml b/src/licensedcode/data/rules/nlpl_10.yml deleted file mode 100644 index b724edeb16e..00000000000 --- a/src/licensedcode/data/rules/nlpl_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nlpl_11.RULE b/src/licensedcode/data/rules/nlpl_11.RULE index 44778a501cb..e332bc4dc16 100644 --- a/src/licensedcode/data/rules/nlpl_11.RULE +++ b/src/licensedcode/data/rules/nlpl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: nlpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NLPL +--- + LICENSE {{NLPL}} https://spdx.org/licenses/NLPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_11.yml b/src/licensedcode/data/rules/nlpl_11.yml deleted file mode 100644 index 736fce80179..00000000000 --- a/src/licensedcode/data/rules/nlpl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NLPL diff --git a/src/licensedcode/data/rules/nlpl_12.RULE b/src/licensedcode/data/rules/nlpl_12.RULE index fee567e0c99..5d96492093c 100644 --- a/src/licensedcode/data/rules/nlpl_12.RULE +++ b/src/licensedcode/data/rules/nlpl_12.RULE @@ -1 +1,9 @@ +--- +license_expression: nlpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NLPL +--- + {{NLPL}} https://spdx.org/licenses/NLPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_12.yml b/src/licensedcode/data/rules/nlpl_12.yml deleted file mode 100644 index 736fce80179..00000000000 --- a/src/licensedcode/data/rules/nlpl_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NLPL diff --git a/src/licensedcode/data/rules/nlpl_2.RULE b/src/licensedcode/data/rules/nlpl_2.RULE index 45cb497e89b..418adaaff64 100644 --- a/src/licensedcode/data/rules/nlpl_2.RULE +++ b/src/licensedcode/data/rules/nlpl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nlpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NLPL No Limit Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_2.yml b/src/licensedcode/data/rules/nlpl_2.yml deleted file mode 100644 index e18c2d86115..00000000000 --- a/src/licensedcode/data/rules/nlpl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nlpl_3.RULE b/src/licensedcode/data/rules/nlpl_3.RULE index 99a28c2c7dd..8516974f2b4 100644 --- a/src/licensedcode/data/rules/nlpl_3.RULE +++ b/src/licensedcode/data/rules/nlpl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: nlpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + No Limit Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_3.yml b/src/licensedcode/data/rules/nlpl_3.yml deleted file mode 100644 index e18c2d86115..00000000000 --- a/src/licensedcode/data/rules/nlpl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nlpl_4.RULE b/src/licensedcode/data/rules/nlpl_4.RULE index edb034a1fdf..754c2fffe6b 100644 --- a/src/licensedcode/data/rules/nlpl_4.RULE +++ b/src/licensedcode/data/rules/nlpl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: nlpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: No Limit Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_4.yml b/src/licensedcode/data/rules/nlpl_4.yml deleted file mode 100644 index 8dfe587f0cd..00000000000 --- a/src/licensedcode/data/rules/nlpl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlpl_5.RULE b/src/licensedcode/data/rules/nlpl_5.RULE index 5078bddd3c2..305020b6291 100644 --- a/src/licensedcode/data/rules/nlpl_5.RULE +++ b/src/licensedcode/data/rules/nlpl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nlpl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + No Limit Public License NLPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_5.yml b/src/licensedcode/data/rules/nlpl_5.yml deleted file mode 100644 index 8dfe587f0cd..00000000000 --- a/src/licensedcode/data/rules/nlpl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlpl_6.RULE b/src/licensedcode/data/rules/nlpl_6.RULE index a59817048d7..544890e1684 100644 --- a/src/licensedcode/data/rules/nlpl_6.RULE +++ b/src/licensedcode/data/rules/nlpl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nlpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NLPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_6.yml b/src/licensedcode/data/rules/nlpl_6.yml deleted file mode 100644 index 2219342409a..00000000000 --- a/src/licensedcode/data/rules/nlpl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlpl_7.RULE b/src/licensedcode/data/rules/nlpl_7.RULE index f58c5537ad2..19c376ef29d 100644 --- a/src/licensedcode/data/rules/nlpl_7.RULE +++ b/src/licensedcode/data/rules/nlpl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nlpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: No Limit Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_7.yml b/src/licensedcode/data/rules/nlpl_7.yml deleted file mode 100644 index 2219342409a..00000000000 --- a/src/licensedcode/data/rules/nlpl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlpl_8.RULE b/src/licensedcode/data/rules/nlpl_8.RULE index 8fa1a415c94..04d02847c39 100644 --- a/src/licensedcode/data/rules/nlpl_8.RULE +++ b/src/licensedcode/data/rules/nlpl_8.RULE @@ -1 +1,10 @@ +--- +license_expression: nlpl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NLPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_8.yml b/src/licensedcode/data/rules/nlpl_8.yml deleted file mode 100644 index 2219342409a..00000000000 --- a/src/licensedcode/data/rules/nlpl_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlpl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nlpl_9.RULE b/src/licensedcode/data/rules/nlpl_9.RULE index dfde571fc8a..a7afd725266 100644 --- a/src/licensedcode/data/rules/nlpl_9.RULE +++ b/src/licensedcode/data/rules/nlpl_9.RULE @@ -1 +1,9 @@ +--- +license_expression: nlpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NLPL +--- + https://licenses.nuget.org/NLPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_9.yml b/src/licensedcode/data/rules/nlpl_9.yml deleted file mode 100644 index 1b4111e6882..00000000000 --- a/src/licensedcode/data/rules/nlpl_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NLPL diff --git a/src/licensedcode/data/rules/nlpl_url_1.RULE b/src/licensedcode/data/rules/nlpl_url_1.RULE index 1f5cb4ad17b..e6965a47798 100644 --- a/src/licensedcode/data/rules/nlpl_url_1.RULE +++ b/src/licensedcode/data/rules/nlpl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nlpl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nlpl +--- + https://spdx.org/licenses/nlpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_url_1.yml b/src/licensedcode/data/rules/nlpl_url_1.yml deleted file mode 100644 index e5d5b9dd388..00000000000 --- a/src/licensedcode/data/rules/nlpl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nlpl diff --git a/src/licensedcode/data/rules/nlpl_url_2.RULE b/src/licensedcode/data/rules/nlpl_url_2.RULE index 22e9d1f49c5..fb7315177ad 100644 --- a/src/licensedcode/data/rules/nlpl_url_2.RULE +++ b/src/licensedcode/data/rules/nlpl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nlpl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nlpl.html +--- + https://spdx.org/licenses/nlpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nlpl_url_2.yml b/src/licensedcode/data/rules/nlpl_url_2.yml deleted file mode 100644 index a2d9dea6389..00000000000 --- a/src/licensedcode/data/rules/nlpl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nlpl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nlpl.html diff --git a/src/licensedcode/data/rules/nokia.RULE b/src/licensedcode/data/rules/nokia.RULE index 3a8e73fbea6..4280b76e150 100644 --- a/src/licensedcode/data/rules/nokia.RULE +++ b/src/licensedcode/data/rules/nokia.RULE @@ -1,3 +1,12 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +ignorable_copyrights: + - Copyright (c) Nokia and others +ignorable_holders: + - Nokia and others +--- + 1. DEFINITIONS. "Affiliates" of a party shall mean an entity diff --git a/src/licensedcode/data/rules/nokia.yml b/src/licensedcode/data/rules/nokia.yml deleted file mode 100644 index 0afbeed5a6f..00000000000 --- a/src/licensedcode/data/rules/nokia.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -ignorable_copyrights: - - Copyright (c) Nokia and others -ignorable_holders: - - Nokia and others diff --git a/src/licensedcode/data/rules/nokos-1.0a_1.RULE b/src/licensedcode/data/rules/nokos-1.0a_1.RULE index 50dbdcd9782..acff13319ac 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_1.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nokos-1.0a +is_license_notice: yes +--- + The contents of this file are subject to the NOKOS License Version 1.0 (the "License"); you may not use this file except in compliance with the License. @@ -5,4 +10,4 @@ License. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the -License. \ No newline at end of file +License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_1.yml b/src/licensedcode/data/rules/nokos-1.0a_1.yml deleted file mode 100644 index 9ef8892708a..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nokos-1.0a -is_license_notice: yes diff --git a/src/licensedcode/data/rules/nokos-1.0a_10.RULE b/src/licensedcode/data/rules/nokos-1.0a_10.RULE index d2cbdfe7b91..b8f0740946a 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_10.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_10.RULE @@ -1 +1,10 @@ +--- +license_expression: nokos-1.0a +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Nokia Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_10.yml b/src/licensedcode/data/rules/nokos-1.0a_10.yml deleted file mode 100644 index ff3d54f1e58..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nokos-1.0a -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nokos-1.0a_11.RULE b/src/licensedcode/data/rules/nokos-1.0a_11.RULE index 84084a0de24..83df26347e8 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_11.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_11.RULE @@ -1 +1,10 @@ +--- +license_expression: nokos-1.0a +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_11.yml b/src/licensedcode/data/rules/nokos-1.0a_11.yml deleted file mode 100644 index ff3d54f1e58..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nokos-1.0a -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nokos-1.0a_12.RULE b/src/licensedcode/data/rules/nokos-1.0a_12.RULE index f5e9ef24102..70b3742bacc 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_12.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_12.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Nokia +--- + https://licenses.nuget.org/Nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_12.yml b/src/licensedcode/data/rules/nokos-1.0a_12.yml deleted file mode 100644 index fe653a447e2..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Nokia diff --git a/src/licensedcode/data/rules/nokos-1.0a_13.RULE b/src/licensedcode/data/rules/nokos-1.0a_13.RULE index edff2a4aebb..ae414c6fcc9 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_13.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_13.RULE @@ -1 +1,7 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_13.yml b/src/licensedcode/data/rules/nokos-1.0a_13.yml deleted file mode 100644 index 3488dbebe6e..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nokos-1.0a_14.RULE b/src/licensedcode/data/rules/nokos-1.0a_14.RULE index c6f29b152a6..94fb9df8796 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_14.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_14.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Nokia +--- + LICENSE {{Nokia}} https://spdx.org/licenses/Nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_14.yml b/src/licensedcode/data/rules/nokos-1.0a_14.yml deleted file mode 100644 index 4b223e9d6f3..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Nokia diff --git a/src/licensedcode/data/rules/nokos-1.0a_15.RULE b/src/licensedcode/data/rules/nokos-1.0a_15.RULE index 4f710aab3ae..9b98d10d2fb 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_15.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_15.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Nokia +--- + {{Nokia}} https://spdx.org/licenses/Nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_15.yml b/src/licensedcode/data/rules/nokos-1.0a_15.yml deleted file mode 100644 index 4b223e9d6f3..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Nokia diff --git a/src/licensedcode/data/rules/nokos-1.0a_2.RULE b/src/licensedcode/data/rules/nokos-1.0a_2.RULE index f36d3fd24a3..cdcf5b51874 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_2.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/nokia.php +--- + http://www.opensource.org/licenses/nokia.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_2.yml b/src/licensedcode/data/rules/nokos-1.0a_2.yml deleted file mode 100644 index 5fb276608da..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/nokia.php diff --git a/src/licensedcode/data/rules/nokos-1.0a_3.RULE b/src/licensedcode/data/rules/nokos-1.0a_3.RULE index 4d2bca08321..81575b9126e 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_3.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_3.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/nokia.html +--- + http://www.opensource.org/licenses/nokia.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_3.yml b/src/licensedcode/data/rules/nokos-1.0a_3.yml deleted file mode 100644 index 09666517c19..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/nokia.html diff --git a/src/licensedcode/data/rules/nokos-1.0a_4.RULE b/src/licensedcode/data/rules/nokos-1.0a_4.RULE index fea085a3a03..87949c1e534 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_4.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_4.RULE @@ -1 +1,7 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +--- + Nokia Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_4.yml b/src/licensedcode/data/rules/nokos-1.0a_4.yml deleted file mode 100644 index 3488dbebe6e..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nokos-1.0a_5.RULE b/src/licensedcode/data/rules/nokos-1.0a_5.RULE index fe0e15e9834..89b54ad12a2 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_5.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_5.RULE @@ -1,4 +1,8 @@ +--- +license_expression: nokos-1.0a +is_license_notice: yes +--- + The contents of this file are subject to the NOKOS License Version 1.0 (the "License"); you may not use this file except in compliance with the -License. - +License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_5.yml b/src/licensedcode/data/rules/nokos-1.0a_5.yml deleted file mode 100644 index 9ef8892708a..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nokos-1.0a -is_license_notice: yes diff --git a/src/licensedcode/data/rules/nokos-1.0a_6.RULE b/src/licensedcode/data/rules/nokos-1.0a_6.RULE index 7d5d8760b35..0f96ed664fd 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_6.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Nokia Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_6.yml b/src/licensedcode/data/rules/nokos-1.0a_6.yml deleted file mode 100644 index 1a994b9dc35..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nokos-1.0a_7.RULE b/src/licensedcode/data/rules/nokos-1.0a_7.RULE index f2b43a04830..02d64d11f3b 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_7.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Nokia Nokia Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_7.yml b/src/licensedcode/data/rules/nokos-1.0a_7.yml deleted file mode 100644 index 1a994b9dc35..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nokos-1.0a_8.RULE b/src/licensedcode/data/rules/nokos-1.0a_8.RULE index 9c1728d804d..1f50bc2405c 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_8.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_8.RULE @@ -1 +1,10 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Nokia Open Source License Nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_8.yml b/src/licensedcode/data/rules/nokos-1.0a_8.yml deleted file mode 100644 index 1a994b9dc35..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nokos-1.0a_9.RULE b/src/licensedcode/data/rules/nokos-1.0a_9.RULE index dcbdd9a8e14..5f63d8ae2d6 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_9.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_9.RULE @@ -1 +1,10 @@ +--- +license_expression: nokos-1.0a +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_9.yml b/src/licensedcode/data/rules/nokos-1.0a_9.yml deleted file mode 100644 index ff3d54f1e58..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nokos-1.0a -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nokos-1.0a_url_1.RULE b/src/licensedcode/data/rules/nokos-1.0a_url_1.RULE index 836161aa297..6b13d89bbc1 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_url_1.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nokia +--- + https://spdx.org/licenses/nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_url_1.yml b/src/licensedcode/data/rules/nokos-1.0a_url_1.yml deleted file mode 100644 index 44a09bbe9d7..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nokia diff --git a/src/licensedcode/data/rules/nokos-1.0a_url_2.RULE b/src/licensedcode/data/rules/nokos-1.0a_url_2.RULE index bc2581fc6fb..b4c90d23be7 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_url_2.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nokia.html +--- + https://spdx.org/licenses/nokia.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_url_2.yml b/src/licensedcode/data/rules/nokos-1.0a_url_2.yml deleted file mode 100644 index 00489e52922..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nokia.html diff --git a/src/licensedcode/data/rules/nokos-1.0a_url_glc_256.RULE b/src/licensedcode/data/rules/nokos-1.0a_url_glc_256.RULE index ed7fb2dfe76..a65da19b090 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_url_glc_256.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_url_glc_256.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/nokia +--- + http://www.opensource.org/licenses/nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_url_glc_256.yml b/src/licensedcode/data/rules/nokos-1.0a_url_glc_256.yml deleted file mode 100644 index 32ccb530569..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_url_glc_256.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/nokia diff --git a/src/licensedcode/data/rules/nokos-1.0a_url_glc_257.RULE b/src/licensedcode/data/rules/nokos-1.0a_url_glc_257.RULE index 9da37e6b05d..d92fd03d676 100644 --- a/src/licensedcode/data/rules/nokos-1.0a_url_glc_257.RULE +++ b/src/licensedcode/data/rules/nokos-1.0a_url_glc_257.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/nokia +--- + https://www.opensource.org/licenses/nokia \ No newline at end of file diff --git a/src/licensedcode/data/rules/nokos-1.0a_url_glc_257.yml b/src/licensedcode/data/rules/nokos-1.0a_url_glc_257.yml deleted file mode 100644 index 8026fd83eb1..00000000000 --- a/src/licensedcode/data/rules/nokos-1.0a_url_glc_257.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/nokia diff --git a/src/licensedcode/data/rules/nonexclusive_1.RULE b/src/licensedcode/data/rules/nonexclusive_1.RULE index e4699b72789..82a12ad6882 100644 --- a/src/licensedcode/data/rules/nonexclusive_1.RULE +++ b/src/licensedcode/data/rules/nonexclusive_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: nonexclusive +is_license_text: yes +--- + The X Consortium, and any party obtaining a copy of these files from the X Consortium, directly or indirectly, is granted, free of charge, a full and unrestricted irrevocable, world-wide, paid up, royalty-free, @@ -7,4 +12,4 @@ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons who receive copies from any such party to do so. This license includes without limitation a license to do the foregoing actions under any patents of -the party supplying this software to the X Consortium. +the party supplying this software to the X Consortium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nonexclusive_1.yml b/src/licensedcode/data/rules/nonexclusive_1.yml deleted file mode 100644 index 9111e799d86..00000000000 --- a/src/licensedcode/data/rules/nonexclusive_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: nonexclusive -is_license_text: yes diff --git a/src/licensedcode/data/rules/nortel-dasa_1.RULE b/src/licensedcode/data/rules/nortel-dasa_1.RULE index fd47630fd2b..cd68cb914b6 100644 --- a/src/licensedcode/data/rules/nortel-dasa_1.RULE +++ b/src/licensedcode/data/rules/nortel-dasa_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: nortel-dasa +is_license_text: yes +relevance: 100 +ignorable_emails: + - frank@comsys.dofn.de +ignorable_authors: + - F.Schnekenbuehl +--- + Created by F.Schnekenbuehl from clk_rcc8000.c Nortel DASA Network Systems GmbH, Department: ND250 A Joint venture of Daimler-Benz Aerospace and Nortel diff --git a/src/licensedcode/data/rules/nortel-dasa_1.yml b/src/licensedcode/data/rules/nortel-dasa_1.yml deleted file mode 100644 index eb691072681..00000000000 --- a/src/licensedcode/data/rules/nortel-dasa_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: nortel-dasa -is_license_text: yes -relevance: 100 -ignorable_emails: - - frank@comsys.dofn.de -ignorable_authors: - - F.Schnekenbuehl - diff --git a/src/licensedcode/data/rules/nosl-1.0.RULE b/src/licensedcode/data/rules/nosl-1.0.RULE index 9701525cee2..1a5a872bd4e 100644 --- a/src/licensedcode/data/rules/nosl-1.0.RULE +++ b/src/licensedcode/data/rules/nosl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://bits.netizen.com.au/licenses/NOSL/ +--- + http://bits.netizen.com.au/licenses/NOSL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0.SPDX.RULE b/src/licensedcode/data/rules/nosl-1.0.SPDX.RULE index 62b3f0118de..f6dd4e126af 100644 --- a/src/licensedcode/data/rules/nosl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/nosl-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: nosl-1.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://netizen.com.au/licenses/NOPL/ +--- + NETIZEN OPEN SOURCE LICENSE Version 1.0 diff --git a/src/licensedcode/data/rules/nosl-1.0.SPDX.yml b/src/licensedcode/data/rules/nosl-1.0.SPDX.yml deleted file mode 100644 index d6b995b6d6a..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-1.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://netizen.com.au/licenses/NOPL/ diff --git a/src/licensedcode/data/rules/nosl-1.0.yml b/src/licensedcode/data/rules/nosl-1.0.yml deleted file mode 100644 index 2af5d988a21..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://bits.netizen.com.au/licenses/NOSL/ diff --git a/src/licensedcode/data/rules/nosl-1.0_1.RULE b/src/licensedcode/data/rules/nosl-1.0_1.RULE index 819ae02a8ae..760ff967975 100644 --- a/src/licensedcode/data/rules/nosl-1.0_1.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NOSL Netizen Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_1.yml b/src/licensedcode/data/rules/nosl-1.0_1.yml deleted file mode 100644 index ebca1d4e820..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nosl-1.0_10.RULE b/src/licensedcode/data/rules/nosl-1.0_10.RULE index 7906f12c9a5..b1d55b2b919 100644 --- a/src/licensedcode/data/rules/nosl-1.0_10.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NOSL +--- + {{NOSL}} https://spdx.org/licenses/NOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_10.yml b/src/licensedcode/data/rules/nosl-1.0_10.yml deleted file mode 100644 index 04b5d2d6e08..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NOSL diff --git a/src/licensedcode/data/rules/nosl-1.0_11.RULE b/src/licensedcode/data/rules/nosl-1.0_11.RULE index 8ca5cc09427..986d4d49f88 100644 --- a/src/licensedcode/data/rules/nosl-1.0_11.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NOSL +--- + LICENSE {{NOSL}} https://spdx.org/licenses/NOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_11.yml b/src/licensedcode/data/rules/nosl-1.0_11.yml deleted file mode 100644 index 04b5d2d6e08..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NOSL diff --git a/src/licensedcode/data/rules/nosl-1.0_2.RULE b/src/licensedcode/data/rules/nosl-1.0_2.RULE index 8e4780d66e0..b82873a1b3b 100644 --- a/src/licensedcode/data/rules/nosl-1.0_2.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Netizen Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_2.yml b/src/licensedcode/data/rules/nosl-1.0_2.yml deleted file mode 100644 index ebca1d4e820..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nosl-1.0_3.RULE b/src/licensedcode/data/rules/nosl-1.0_3.RULE index c271244a20e..29f2e767230 100644 --- a/src/licensedcode/data/rules/nosl-1.0_3.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Netizen Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_3.yml b/src/licensedcode/data/rules/nosl-1.0_3.yml deleted file mode 100644 index 8c0b76e27be..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-1.0_4.RULE b/src/licensedcode/data/rules/nosl-1.0_4.RULE index 4437e29413c..815a3dc3345 100644 --- a/src/licensedcode/data/rules/nosl-1.0_4.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Netizen Open Source License NOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_4.yml b/src/licensedcode/data/rules/nosl-1.0_4.yml deleted file mode 100644 index 8c0b76e27be..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-1.0_5.RULE b/src/licensedcode/data/rules/nosl-1.0_5.RULE index 08e89ca323f..a27dd15d13b 100644 --- a/src/licensedcode/data/rules/nosl-1.0_5.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_5.yml b/src/licensedcode/data/rules/nosl-1.0_5.yml deleted file mode 100644 index 4e50afebd49..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-1.0_6.RULE b/src/licensedcode/data/rules/nosl-1.0_6.RULE index 91fa9cfe19c..eccd99fd536 100644 --- a/src/licensedcode/data/rules/nosl-1.0_6.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Netizen Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_6.yml b/src/licensedcode/data/rules/nosl-1.0_6.yml deleted file mode 100644 index 4e50afebd49..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-1.0_7.RULE b/src/licensedcode/data/rules/nosl-1.0_7.RULE index 7f3e6c32029..5709aaf63a1 100644 --- a/src/licensedcode/data/rules/nosl-1.0_7.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_7.yml b/src/licensedcode/data/rules/nosl-1.0_7.yml deleted file mode 100644 index 4e50afebd49..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-1.0_8.RULE b/src/licensedcode/data/rules/nosl-1.0_8.RULE index 35c50134b5c..f6480050a5e 100644 --- a/src/licensedcode/data/rules/nosl-1.0_8.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NOSL +--- + https://licenses.nuget.org/NOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_8.yml b/src/licensedcode/data/rules/nosl-1.0_8.yml deleted file mode 100644 index 9afc61f5c44..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NOSL diff --git a/src/licensedcode/data/rules/nosl-1.0_9.RULE b/src/licensedcode/data/rules/nosl-1.0_9.RULE index 4d32b8220a6..ad475dcd209 100644 --- a/src/licensedcode/data/rules/nosl-1.0_9.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_9.yml b/src/licensedcode/data/rules/nosl-1.0_9.yml deleted file mode 100644 index c58d7c681ff..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nosl-1.0_url_1.RULE b/src/licensedcode/data/rules/nosl-1.0_url_1.RULE index 70e5b000233..958db8def8d 100644 --- a/src/licensedcode/data/rules/nosl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nosl +--- + https://spdx.org/licenses/nosl \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_url_1.yml b/src/licensedcode/data/rules/nosl-1.0_url_1.yml deleted file mode 100644 index 08dcbcead85..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nosl diff --git a/src/licensedcode/data/rules/nosl-1.0_url_2.RULE b/src/licensedcode/data/rules/nosl-1.0_url_2.RULE index 950b57c9876..786f86539e0 100644 --- a/src/licensedcode/data/rules/nosl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/nosl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nosl.html +--- + https://spdx.org/licenses/nosl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-1.0_url_2.yml b/src/licensedcode/data/rules/nosl-1.0_url_2.yml deleted file mode 100644 index e161351c798..00000000000 --- a/src/licensedcode/data/rules/nosl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nosl.html diff --git a/src/licensedcode/data/rules/nosl-3.0.RULE b/src/licensedcode/data/rules/nosl-3.0.RULE index 41ea5432337..cc5ab5a1903 100644 --- a/src/licensedcode/data/rules/nosl-3.0.RULE +++ b/src/licensedcode/data/rules/nosl-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/NOSL3.0.html +--- + http://www.opensource.org/licenses/NOSL3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0.SPDX.RULE b/src/licensedcode/data/rules/nosl-3.0.SPDX.RULE index e841b924b1e..17eee8bfffb 100644 --- a/src/licensedcode/data/rules/nosl-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/nosl-3.0.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: nosl-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright r 2005 Lawrence Rosen +ignorable_holders: + - r Lawrence Rosen +--- + Non-Profit Open Software License ("Non-Profit OSL") 3.0 This Non-Profit Open Software License ("Non-Profit OSL") version 3.0 (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: diff --git a/src/licensedcode/data/rules/nosl-3.0.SPDX.yml b/src/licensedcode/data/rules/nosl-3.0.SPDX.yml deleted file mode 100644 index b3808908e9f..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: nosl-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright r 2005 Lawrence Rosen -ignorable_holders: - - r Lawrence Rosen diff --git a/src/licensedcode/data/rules/nosl-3.0.yml b/src/licensedcode/data/rules/nosl-3.0.yml deleted file mode 100644 index 01e30deb47b..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/NOSL3.0.html diff --git a/src/licensedcode/data/rules/nosl-3.0_1.RULE b/src/licensedcode/data/rules/nosl-3.0_1.RULE index 4ec7b0cf82b..5259673d192 100644 --- a/src/licensedcode/data/rules/nosl-3.0_1.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +--- + Non-Profit Open Software License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_1.yml b/src/licensedcode/data/rules/nosl-3.0_1.yml deleted file mode 100644 index 3b49a999799..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nosl-3.0_10.RULE b/src/licensedcode/data/rules/nosl-3.0_10.RULE index 0b7e2696582..7d333591c18 100644 --- a/src/licensedcode/data/rules/nosl-3.0_10.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NPOSL-3.0 +--- + https://licenses.nuget.org/NPOSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_10.yml b/src/licensedcode/data/rules/nosl-3.0_10.yml deleted file mode 100644 index 3dd17c36da9..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NPOSL-3.0 diff --git a/src/licensedcode/data/rules/nosl-3.0_11.RULE b/src/licensedcode/data/rules/nosl-3.0_11.RULE index ede950933ae..8edddf472fe 100644 --- a/src/licensedcode/data/rules/nosl-3.0_11.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NPOSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_11.yml b/src/licensedcode/data/rules/nosl-3.0_11.yml deleted file mode 100644 index 3b49a999799..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nosl-3.0_12.RULE b/src/licensedcode/data/rules/nosl-3.0_12.RULE index 35fc1672f91..b3a83faa208 100644 --- a/src/licensedcode/data/rules/nosl-3.0_12.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NPOSL-3.0 +--- + {{NPOSL-3.0}} https://spdx.org/licenses/NPOSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_12.yml b/src/licensedcode/data/rules/nosl-3.0_12.yml deleted file mode 100644 index bc706b75e61..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NPOSL-3.0 diff --git a/src/licensedcode/data/rules/nosl-3.0_13.RULE b/src/licensedcode/data/rules/nosl-3.0_13.RULE index 3b10f9498c7..d4c15d57c7f 100644 --- a/src/licensedcode/data/rules/nosl-3.0_13.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NPOSL-3.0 +--- + LICENSE {{NPOSL-3.0}} https://spdx.org/licenses/NPOSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_13.yml b/src/licensedcode/data/rules/nosl-3.0_13.yml deleted file mode 100644 index bc706b75e61..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NPOSL-3.0 diff --git a/src/licensedcode/data/rules/nosl-3.0_2.RULE b/src/licensedcode/data/rules/nosl-3.0_2.RULE index b8305452085..477a4852246 100644 --- a/src/licensedcode/data/rules/nosl-3.0_2.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +--- + Licensed under the Non-Profit Open Software License version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_2.yml b/src/licensedcode/data/rules/nosl-3.0_2.yml deleted file mode 100644 index 3b49a999799..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nosl-3.0_3.RULE b/src/licensedcode/data/rules/nosl-3.0_3.RULE index 017acd86fd6..9f160a6f8fa 100644 --- a/src/licensedcode/data/rules/nosl-3.0_3.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NPOSL-3.0 Non-Profit Open Software License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_3.yml b/src/licensedcode/data/rules/nosl-3.0_3.yml deleted file mode 100644 index a3e98683834..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nosl-3.0_4.RULE b/src/licensedcode/data/rules/nosl-3.0_4.RULE index 57836eca65a..e80d5a96cdf 100644 --- a/src/licensedcode/data/rules/nosl-3.0_4.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +--- + Non-Profit Open Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_4.yml b/src/licensedcode/data/rules/nosl-3.0_4.yml deleted file mode 100644 index b4a675eeb5f..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nosl-3.0_5.RULE b/src/licensedcode/data/rules/nosl-3.0_5.RULE index d31b1d142d4..ac9e46fe66f 100644 --- a/src/licensedcode/data/rules/nosl-3.0_5.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Non-Profit Open Software License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_5.yml b/src/licensedcode/data/rules/nosl-3.0_5.yml deleted file mode 100644 index 3c1c6e26e92..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-3.0_6.RULE b/src/licensedcode/data/rules/nosl-3.0_6.RULE index 319dfa2dc26..233f0edc195 100644 --- a/src/licensedcode/data/rules/nosl-3.0_6.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Non-Profit Open Software License 3.0 NPOSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_6.yml b/src/licensedcode/data/rules/nosl-3.0_6.yml deleted file mode 100644 index 3c1c6e26e92..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-3.0_7.RULE b/src/licensedcode/data/rules/nosl-3.0_7.RULE index db71d1b29a0..3d4b8f3283d 100644 --- a/src/licensedcode/data/rules/nosl-3.0_7.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NPOSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_7.yml b/src/licensedcode/data/rules/nosl-3.0_7.yml deleted file mode 100644 index 018701d6fd5..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-3.0_8.RULE b/src/licensedcode/data/rules/nosl-3.0_8.RULE index c1e407c8c55..4fdf97d822c 100644 --- a/src/licensedcode/data/rules/nosl-3.0_8.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Non-Profit Open Software License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_8.yml b/src/licensedcode/data/rules/nosl-3.0_8.yml deleted file mode 100644 index 018701d6fd5..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-3.0_9.RULE b/src/licensedcode/data/rules/nosl-3.0_9.RULE index 3f45b5f245a..42b7e85a2b4 100644 --- a/src/licensedcode/data/rules/nosl-3.0_9.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NPOSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_9.yml b/src/licensedcode/data/rules/nosl-3.0_9.yml deleted file mode 100644 index 018701d6fd5..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nosl-3.0_url_1.RULE b/src/licensedcode/data/rules/nosl-3.0_url_1.RULE index 8d23675de74..aaf2246a95a 100644 --- a/src/licensedcode/data/rules/nosl-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nposl-3.0 +--- + https://spdx.org/licenses/nposl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_url_1.yml b/src/licensedcode/data/rules/nosl-3.0_url_1.yml deleted file mode 100644 index 007007ad7b5..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nposl-3.0 diff --git a/src/licensedcode/data/rules/nosl-3.0_url_2.RULE b/src/licensedcode/data/rules/nosl-3.0_url_2.RULE index 6332370f813..7d29730d6e5 100644 --- a/src/licensedcode/data/rules/nosl-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nposl-3.0.html +--- + https://spdx.org/licenses/nposl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_url_2.yml b/src/licensedcode/data/rules/nosl-3.0_url_2.yml deleted file mode 100644 index a4ef5c25fda..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nposl-3.0.html diff --git a/src/licensedcode/data/rules/nosl-3.0_url_glc_206.RULE b/src/licensedcode/data/rules/nosl-3.0_url_glc_206.RULE index 98e565e3c48..8676401cb63 100644 --- a/src/licensedcode/data/rules/nosl-3.0_url_glc_206.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_url_glc_206.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/nosl3.0 +--- + http://www.opensource.org/licenses/nosl3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_url_glc_206.yml b/src/licensedcode/data/rules/nosl-3.0_url_glc_206.yml deleted file mode 100644 index 267b87dcbd6..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_url_glc_206.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/nosl3.0 diff --git a/src/licensedcode/data/rules/nosl-3.0_url_glc_207.RULE b/src/licensedcode/data/rules/nosl-3.0_url_glc_207.RULE index bce132f530b..f96d430c8ac 100644 --- a/src/licensedcode/data/rules/nosl-3.0_url_glc_207.RULE +++ b/src/licensedcode/data/rules/nosl-3.0_url_glc_207.RULE @@ -1 +1,9 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/nosl3.0 +--- + https://www.opensource.org/licenses/nosl3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nosl-3.0_url_glc_207.yml b/src/licensedcode/data/rules/nosl-3.0_url_glc_207.yml deleted file mode 100644 index e3a95e45bc1..00000000000 --- a/src/licensedcode/data/rules/nosl-3.0_url_glc_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/nosl3.0 diff --git a/src/licensedcode/data/rules/noweb_1.RULE b/src/licensedcode/data/rules/noweb_1.RULE index a339a0d69ca..82bfc5585f8 100644 --- a/src/licensedcode/data/rules/noweb_1.RULE +++ b/src/licensedcode/data/rules/noweb_1.RULE @@ -1 +1,10 @@ +--- +license_expression: noweb +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Noweb License \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_1.yml b/src/licensedcode/data/rules/noweb_1.yml deleted file mode 100644 index b5728d3e4a4..00000000000 --- a/src/licensedcode/data/rules/noweb_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: noweb -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/noweb_10.RULE b/src/licensedcode/data/rules/noweb_10.RULE index 140b2cf2189..55782666026 100644 --- a/src/licensedcode/data/rules/noweb_10.RULE +++ b/src/licensedcode/data/rules/noweb_10.RULE @@ -1 +1,9 @@ +--- +license_expression: noweb +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Noweb +--- + {{Noweb}} https://spdx.org/licenses/Noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_10.yml b/src/licensedcode/data/rules/noweb_10.yml deleted file mode 100644 index 65221697e5f..00000000000 --- a/src/licensedcode/data/rules/noweb_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: noweb -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Noweb diff --git a/src/licensedcode/data/rules/noweb_11.RULE b/src/licensedcode/data/rules/noweb_11.RULE index e6a9b1dd7a5..78d114554a4 100644 --- a/src/licensedcode/data/rules/noweb_11.RULE +++ b/src/licensedcode/data/rules/noweb_11.RULE @@ -1 +1,9 @@ +--- +license_expression: noweb +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Noweb +--- + LICENSE {{Noweb}} https://spdx.org/licenses/Noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_11.yml b/src/licensedcode/data/rules/noweb_11.yml deleted file mode 100644 index 65221697e5f..00000000000 --- a/src/licensedcode/data/rules/noweb_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: noweb -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Noweb diff --git a/src/licensedcode/data/rules/noweb_2.RULE b/src/licensedcode/data/rules/noweb_2.RULE index edc101b5f5b..3ad72ffeac7 100644 --- a/src/licensedcode/data/rules/noweb_2.RULE +++ b/src/licensedcode/data/rules/noweb_2.RULE @@ -1 +1,10 @@ +--- +license_expression: noweb +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Noweb License \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_2.yml b/src/licensedcode/data/rules/noweb_2.yml deleted file mode 100644 index b5728d3e4a4..00000000000 --- a/src/licensedcode/data/rules/noweb_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: noweb -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/noweb_3.RULE b/src/licensedcode/data/rules/noweb_3.RULE index 0f0299e7cbb..1bcc2f4f47b 100644 --- a/src/licensedcode/data/rules/noweb_3.RULE +++ b/src/licensedcode/data/rules/noweb_3.RULE @@ -1 +1,10 @@ +--- +license_expression: noweb +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Noweb Noweb License \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_3.yml b/src/licensedcode/data/rules/noweb_3.yml deleted file mode 100644 index b5728d3e4a4..00000000000 --- a/src/licensedcode/data/rules/noweb_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: noweb -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/noweb_4.RULE b/src/licensedcode/data/rules/noweb_4.RULE index cf4d77e18d6..fe2c0e8a107 100644 --- a/src/licensedcode/data/rules/noweb_4.RULE +++ b/src/licensedcode/data/rules/noweb_4.RULE @@ -1 +1,10 @@ +--- +license_expression: noweb +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Noweb License Noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_4.yml b/src/licensedcode/data/rules/noweb_4.yml deleted file mode 100644 index b5728d3e4a4..00000000000 --- a/src/licensedcode/data/rules/noweb_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: noweb -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/noweb_5.RULE b/src/licensedcode/data/rules/noweb_5.RULE index f62d12361ab..0eaf659fce1 100644 --- a/src/licensedcode/data/rules/noweb_5.RULE +++ b/src/licensedcode/data/rules/noweb_5.RULE @@ -1 +1,10 @@ +--- +license_expression: noweb +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_5.yml b/src/licensedcode/data/rules/noweb_5.yml deleted file mode 100644 index dd3e66616a5..00000000000 --- a/src/licensedcode/data/rules/noweb_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: noweb -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/noweb_6.RULE b/src/licensedcode/data/rules/noweb_6.RULE index 19d6d54aa54..a0e310468f4 100644 --- a/src/licensedcode/data/rules/noweb_6.RULE +++ b/src/licensedcode/data/rules/noweb_6.RULE @@ -1 +1,10 @@ +--- +license_expression: noweb +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Noweb License \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_6.yml b/src/licensedcode/data/rules/noweb_6.yml deleted file mode 100644 index dd3e66616a5..00000000000 --- a/src/licensedcode/data/rules/noweb_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: noweb -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/noweb_7.RULE b/src/licensedcode/data/rules/noweb_7.RULE index 12f7519ee6b..563c10010d0 100644 --- a/src/licensedcode/data/rules/noweb_7.RULE +++ b/src/licensedcode/data/rules/noweb_7.RULE @@ -1 +1,10 @@ +--- +license_expression: noweb +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_7.yml b/src/licensedcode/data/rules/noweb_7.yml deleted file mode 100644 index dd3e66616a5..00000000000 --- a/src/licensedcode/data/rules/noweb_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: noweb -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/noweb_8.RULE b/src/licensedcode/data/rules/noweb_8.RULE index 2ba3d1e2ba2..03f903d0a53 100644 --- a/src/licensedcode/data/rules/noweb_8.RULE +++ b/src/licensedcode/data/rules/noweb_8.RULE @@ -1 +1,9 @@ +--- +license_expression: noweb +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Noweb +--- + https://licenses.nuget.org/Noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_8.yml b/src/licensedcode/data/rules/noweb_8.yml deleted file mode 100644 index ef994ffd8fd..00000000000 --- a/src/licensedcode/data/rules/noweb_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: noweb -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Noweb diff --git a/src/licensedcode/data/rules/noweb_9.RULE b/src/licensedcode/data/rules/noweb_9.RULE index 48ac983cabf..c7de55f4e8c 100644 --- a/src/licensedcode/data/rules/noweb_9.RULE +++ b/src/licensedcode/data/rules/noweb_9.RULE @@ -1 +1,7 @@ +--- +license_expression: noweb +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_9.yml b/src/licensedcode/data/rules/noweb_9.yml deleted file mode 100644 index 75b027d801f..00000000000 --- a/src/licensedcode/data/rules/noweb_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: noweb -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/noweb_url_1.RULE b/src/licensedcode/data/rules/noweb_url_1.RULE index 04be19e73de..58ce78c752c 100644 --- a/src/licensedcode/data/rules/noweb_url_1.RULE +++ b/src/licensedcode/data/rules/noweb_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: noweb +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/noweb +--- + https://spdx.org/licenses/noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_url_1.yml b/src/licensedcode/data/rules/noweb_url_1.yml deleted file mode 100644 index bc86645bd1b..00000000000 --- a/src/licensedcode/data/rules/noweb_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: noweb -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/noweb diff --git a/src/licensedcode/data/rules/noweb_url_2.RULE b/src/licensedcode/data/rules/noweb_url_2.RULE index a862fdcf9ae..4157e9476b6 100644 --- a/src/licensedcode/data/rules/noweb_url_2.RULE +++ b/src/licensedcode/data/rules/noweb_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: noweb +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/noweb.html +--- + https://spdx.org/licenses/noweb.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/noweb_url_2.yml b/src/licensedcode/data/rules/noweb_url_2.yml deleted file mode 100644 index 96c290dd314..00000000000 --- a/src/licensedcode/data/rules/noweb_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: noweb -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/noweb.html diff --git a/src/licensedcode/data/rules/npl-1.0_1.RULE b/src/licensedcode/data/rules/npl-1.0_1.RULE index 7803a5d1253..7430582d1c6 100644 --- a/src/licensedcode/data/rules/npl-1.0_1.RULE +++ b/src/licensedcode/data/rules/npl-1.0_1.RULE @@ -1,6 +1,11 @@ +--- +license_expression: npl-1.0 +is_license_notice: yes +--- + NPL 1.0 The contents of this file are subject to the Netscape Public License Version 10 \(the "License"\); you may not use this file except in compliance with the License You may obtain a copy of the License at -http://wwwmozillaorg/NPL/ +http://wwwmozillaorg/NPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_1.yml b/src/licensedcode/data/rules/npl-1.0_1.yml deleted file mode 100644 index 7745b7e9311..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: npl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/npl-1.0_10.RULE b/src/licensedcode/data/rules/npl-1.0_10.RULE index 7251ffe7a00..48f22cac5de 100644 --- a/src/licensedcode/data/rules/npl-1.0_10.RULE +++ b/src/licensedcode/data/rules/npl-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Netscape Public License v1.0 NPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_10.yml b/src/licensedcode/data/rules/npl-1.0_10.yml deleted file mode 100644 index ca7a66c4905..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.0_11.RULE b/src/licensedcode/data/rules/npl-1.0_11.RULE index bcdca075c72..229f422efb9 100644 --- a/src/licensedcode/data/rules/npl-1.0_11.RULE +++ b/src/licensedcode/data/rules/npl-1.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_11.yml b/src/licensedcode/data/rules/npl-1.0_11.yml deleted file mode 100644 index 2040403f051..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.0_12.RULE b/src/licensedcode/data/rules/npl-1.0_12.RULE index fa36e2c4b0f..e7f7bd005af 100644 --- a/src/licensedcode/data/rules/npl-1.0_12.RULE +++ b/src/licensedcode/data/rules/npl-1.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Netscape Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_12.yml b/src/licensedcode/data/rules/npl-1.0_12.yml deleted file mode 100644 index 2040403f051..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.0_13.RULE b/src/licensedcode/data/rules/npl-1.0_13.RULE index 8508f2abe0b..d8b74a89f06 100644 --- a/src/licensedcode/data/rules/npl-1.0_13.RULE +++ b/src/licensedcode/data/rules/npl-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_13.yml b/src/licensedcode/data/rules/npl-1.0_13.yml deleted file mode 100644 index 2040403f051..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.0_14.RULE b/src/licensedcode/data/rules/npl-1.0_14.RULE index c5b11bd7279..9fb88ee5e90 100644 --- a/src/licensedcode/data/rules/npl-1.0_14.RULE +++ b/src/licensedcode/data/rules/npl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NPL-1.0 +--- + https://licenses.nuget.org/NPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_14.yml b/src/licensedcode/data/rules/npl-1.0_14.yml deleted file mode 100644 index 8c1f2788a7e..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NPL-1.0 diff --git a/src/licensedcode/data/rules/npl-1.0_15.RULE b/src/licensedcode/data/rules/npl-1.0_15.RULE index f0bf64ac23b..41e298c038e 100644 --- a/src/licensedcode/data/rules/npl-1.0_15.RULE +++ b/src/licensedcode/data/rules/npl-1.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_15.yml b/src/licensedcode/data/rules/npl-1.0_15.yml deleted file mode 100644 index 87152a5267a..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/npl-1.0_16.RULE b/src/licensedcode/data/rules/npl-1.0_16.RULE index 44114603f70..85a175b5cb1 100644 --- a/src/licensedcode/data/rules/npl-1.0_16.RULE +++ b/src/licensedcode/data/rules/npl-1.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NPL-1.0 +--- + {{NPL-1.0}} https://spdx.org/licenses/NPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_16.yml b/src/licensedcode/data/rules/npl-1.0_16.yml deleted file mode 100644 index ae7a586af17..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NPL-1.0 diff --git a/src/licensedcode/data/rules/npl-1.0_17.RULE b/src/licensedcode/data/rules/npl-1.0_17.RULE index a64d9ef04d1..c3e2ead8d76 100644 --- a/src/licensedcode/data/rules/npl-1.0_17.RULE +++ b/src/licensedcode/data/rules/npl-1.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NPL-1.0 +--- + LICENSE {{NPL-1.0}} https://spdx.org/licenses/NPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_17.yml b/src/licensedcode/data/rules/npl-1.0_17.yml deleted file mode 100644 index ae7a586af17..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NPL-1.0 diff --git a/src/licensedcode/data/rules/npl-1.0_2.RULE b/src/licensedcode/data/rules/npl-1.0_2.RULE index 22de3c8c12d..a7462669c61 100644 --- a/src/licensedcode/data/rules/npl-1.0_2.RULE +++ b/src/licensedcode/data/rules/npl-1.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: npl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + # * # * The contents of this file are subject to the Netscape Public License # * Version 1.0 (the "NPL"); you may not use this file except in @@ -11,4 +18,4 @@ See the NPL # * for the specific language governing rights and limitations under the # * NPL # * -# * The Initial Developer of this code under the NPL is +# * The Initial Developer of this code under the NPL is \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_2.yml b/src/licensedcode/data/rules/npl-1.0_2.yml deleted file mode 100644 index 077e0d13dfb..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: npl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.0_3.RULE b/src/licensedcode/data/rules/npl-1.0_3.RULE index e543e3b791c..a51acf6360b 100644 --- a/src/licensedcode/data/rules/npl-1.0_3.RULE +++ b/src/licensedcode/data/rules/npl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/NPL-1.0.html +--- + http://www.mozilla.org/MPL/NPL-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_3.yml b/src/licensedcode/data/rules/npl-1.0_3.yml deleted file mode 100644 index 4dad2c0f265..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/NPL-1.0.html diff --git a/src/licensedcode/data/rules/npl-1.0_4.RULE b/src/licensedcode/data/rules/npl-1.0_4.RULE index fbac35346eb..f7caf2de9b5 100644 --- a/src/licensedcode/data/rules/npl-1.0_4.RULE +++ b/src/licensedcode/data/rules/npl-1.0_4.RULE @@ -1,3 +1,16 @@ +--- +license_expression: npl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1998 Netscape Communications Corporation +ignorable_holders: + - Netscape Communications Corporation +ignorable_urls: + - http://www.mozilla.org/NPL/Software +--- + NETSCAPE PUBLIC LICENSE Version 1.0 diff --git a/src/licensedcode/data/rules/npl-1.0_4.yml b/src/licensedcode/data/rules/npl-1.0_4.yml deleted file mode 100644 index d06d5ff031f..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_4.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: npl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1998 Netscape Communications Corporation -ignorable_holders: - - Netscape Communications Corporation -ignorable_urls: - - http://www.mozilla.org/NPL/Software diff --git a/src/licensedcode/data/rules/npl-1.0_5.RULE b/src/licensedcode/data/rules/npl-1.0_5.RULE index 7313668b2a5..82055385229 100644 --- a/src/licensedcode/data/rules/npl-1.0_5.RULE +++ b/src/licensedcode/data/rules/npl-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NPL-1.0 Netscape Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_5.yml b/src/licensedcode/data/rules/npl-1.0_5.yml deleted file mode 100644 index d53b401d77e..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.0_6.RULE b/src/licensedcode/data/rules/npl-1.0_6.RULE index 7df60fae88b..c5b69b69e01 100644 --- a/src/licensedcode/data/rules/npl-1.0_6.RULE +++ b/src/licensedcode/data/rules/npl-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NPL-1.0 Netscape Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_6.yml b/src/licensedcode/data/rules/npl-1.0_6.yml deleted file mode 100644 index d53b401d77e..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.0_7.RULE b/src/licensedcode/data/rules/npl-1.0_7.RULE index 9ab4494cdbf..efad98708b7 100644 --- a/src/licensedcode/data/rules/npl-1.0_7.RULE +++ b/src/licensedcode/data/rules/npl-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Netscape Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_7.yml b/src/licensedcode/data/rules/npl-1.0_7.yml deleted file mode 100644 index d53b401d77e..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.0_8.RULE b/src/licensedcode/data/rules/npl-1.0_8.RULE index dedec691cb5..b14c44ea3e3 100644 --- a/src/licensedcode/data/rules/npl-1.0_8.RULE +++ b/src/licensedcode/data/rules/npl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Netscape Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_8.yml b/src/licensedcode/data/rules/npl-1.0_8.yml deleted file mode 100644 index d53b401d77e..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.0_9.RULE b/src/licensedcode/data/rules/npl-1.0_9.RULE index cb0807db466..ee7b42f75d5 100644 --- a/src/licensedcode/data/rules/npl-1.0_9.RULE +++ b/src/licensedcode/data/rules/npl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Netscape Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_9.yml b/src/licensedcode/data/rules/npl-1.0_9.yml deleted file mode 100644 index ca7a66c4905..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.0_url_1.RULE b/src/licensedcode/data/rules/npl-1.0_url_1.RULE index 1ec8ce32cb6..d29dbd00ab2 100644 --- a/src/licensedcode/data/rules/npl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/npl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/npl-1.0 +--- + https://spdx.org/licenses/npl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_url_1.yml b/src/licensedcode/data/rules/npl-1.0_url_1.yml deleted file mode 100644 index ea568ef4494..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/npl-1.0 diff --git a/src/licensedcode/data/rules/npl-1.0_url_2.RULE b/src/licensedcode/data/rules/npl-1.0_url_2.RULE index 89fe26ecc14..424449f14be 100644 --- a/src/licensedcode/data/rules/npl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/npl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/npl-1.0.html +--- + https://spdx.org/licenses/npl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.0_url_2.yml b/src/licensedcode/data/rules/npl-1.0_url_2.yml deleted file mode 100644 index ca9bdcc4559..00000000000 --- a/src/licensedcode/data/rules/npl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/npl-1.0.html diff --git a/src/licensedcode/data/rules/npl-1.1_1.RULE b/src/licensedcode/data/rules/npl-1.1_1.RULE index 5237c226ad8..195cf81c4b4 100644 --- a/src/licensedcode/data/rules/npl-1.1_1.RULE +++ b/src/licensedcode/data/rules/npl-1.1_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + * The contents of this file are subject to the {{Netscape Public * License}} Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of @@ -8,4 +15,4 @@ * implied. See the License for the specific language governing * rights and limitations under the License. * - * The Original Code is \ No newline at end of file + * The Original Code is \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_1.yml b/src/licensedcode/data/rules/npl-1.1_1.yml deleted file mode 100644 index 4a719399877..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: npl-1.1 -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.1_10.RULE b/src/licensedcode/data/rules/npl-1.1_10.RULE index 37847a7a726..6e1c78d768d 100644 --- a/src/licensedcode/data/rules/npl-1.1_10.RULE +++ b/src/licensedcode/data/rules/npl-1.1_10.RULE @@ -1 +1,8 @@ +--- +license_expression: npl-1.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + distributed under the Netscape Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_10.yml b/src/licensedcode/data/rules/npl-1.1_10.yml deleted file mode 100644 index fc43c536ccf..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: npl-1.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.1_11.RULE b/src/licensedcode/data/rules/npl-1.1_11.RULE index 4a588eca2c3..2db81cb3930 100644 --- a/src/licensedcode/data/rules/npl-1.1_11.RULE +++ b/src/licensedcode/data/rules/npl-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NPL-1.1 Netscape Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_11.yml b/src/licensedcode/data/rules/npl-1.1_11.yml deleted file mode 100644 index 1da9bc2541a..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.1_12.RULE b/src/licensedcode/data/rules/npl-1.1_12.RULE index e7c49b6724f..91c0413bfe6 100644 --- a/src/licensedcode/data/rules/npl-1.1_12.RULE +++ b/src/licensedcode/data/rules/npl-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NPL-1.1 Netscape Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_12.yml b/src/licensedcode/data/rules/npl-1.1_12.yml deleted file mode 100644 index 1da9bc2541a..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.1_13.RULE b/src/licensedcode/data/rules/npl-1.1_13.RULE index 08bb9a7995e..cd38b90826f 100644 --- a/src/licensedcode/data/rules/npl-1.1_13.RULE +++ b/src/licensedcode/data/rules/npl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Netscape Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_13.yml b/src/licensedcode/data/rules/npl-1.1_13.yml deleted file mode 100644 index 1da9bc2541a..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.1_14.RULE b/src/licensedcode/data/rules/npl-1.1_14.RULE index b4ab41c6aff..4ed4e8a0114 100644 --- a/src/licensedcode/data/rules/npl-1.1_14.RULE +++ b/src/licensedcode/data/rules/npl-1.1_14.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Netscape Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_14.yml b/src/licensedcode/data/rules/npl-1.1_14.yml deleted file mode 100644 index 1da9bc2541a..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/npl-1.1_15.RULE b/src/licensedcode/data/rules/npl-1.1_15.RULE index 267f8850dfe..05b8a8a7cbb 100644 --- a/src/licensedcode/data/rules/npl-1.1_15.RULE +++ b/src/licensedcode/data/rules/npl-1.1_15.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Netscape Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_15.yml b/src/licensedcode/data/rules/npl-1.1_15.yml deleted file mode 100644 index db4050cb56e..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.1_16.RULE b/src/licensedcode/data/rules/npl-1.1_16.RULE index 36d1619a454..4419da1d1bb 100644 --- a/src/licensedcode/data/rules/npl-1.1_16.RULE +++ b/src/licensedcode/data/rules/npl-1.1_16.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Netscape Public License v1.1 NPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_16.yml b/src/licensedcode/data/rules/npl-1.1_16.yml deleted file mode 100644 index db4050cb56e..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.1_17.RULE b/src/licensedcode/data/rules/npl-1.1_17.RULE index 0c91ed01927..4a9b9807fa8 100644 --- a/src/licensedcode/data/rules/npl-1.1_17.RULE +++ b/src/licensedcode/data/rules/npl-1.1_17.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_17.yml b/src/licensedcode/data/rules/npl-1.1_17.yml deleted file mode 100644 index 5834fd9e323..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.1_18.RULE b/src/licensedcode/data/rules/npl-1.1_18.RULE index f2af7335cc6..f3f25c8374e 100644 --- a/src/licensedcode/data/rules/npl-1.1_18.RULE +++ b/src/licensedcode/data/rules/npl-1.1_18.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Netscape Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_18.yml b/src/licensedcode/data/rules/npl-1.1_18.yml deleted file mode 100644 index 5834fd9e323..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.1_19.RULE b/src/licensedcode/data/rules/npl-1.1_19.RULE index 9fb2293317a..b0400d802e9 100644 --- a/src/licensedcode/data/rules/npl-1.1_19.RULE +++ b/src/licensedcode/data/rules/npl-1.1_19.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_19.yml b/src/licensedcode/data/rules/npl-1.1_19.yml deleted file mode 100644 index 5834fd9e323..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/npl-1.1_2.RULE b/src/licensedcode/data/rules/npl-1.1_2.RULE index f67207a6255..f2cce53ba4d 100644 --- a/src/licensedcode/data/rules/npl-1.1_2.RULE +++ b/src/licensedcode/data/rules/npl-1.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/MPL/NPL-1.1.html +--- + http://www.mozilla.org/MPL/NPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_2.yml b/src/licensedcode/data/rules/npl-1.1_2.yml deleted file mode 100644 index c6eae8740e2..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/MPL/NPL-1.1.html diff --git a/src/licensedcode/data/rules/npl-1.1_20.RULE b/src/licensedcode/data/rules/npl-1.1_20.RULE index ef8c19c2004..9f2a210c4bc 100644 --- a/src/licensedcode/data/rules/npl-1.1_20.RULE +++ b/src/licensedcode/data/rules/npl-1.1_20.RULE @@ -1 +1,7 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 95 +--- + wikipedia.org/wiki/Netscape_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_20.yml b/src/licensedcode/data/rules/npl-1.1_20.yml deleted file mode 100644 index 1ad5d6e19e8..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/npl-1.1_21.RULE b/src/licensedcode/data/rules/npl-1.1_21.RULE index f7f28b57769..9c57c4e0e25 100644 --- a/src/licensedcode/data/rules/npl-1.1_21.RULE +++ b/src/licensedcode/data/rules/npl-1.1_21.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NPL-1.1 +--- + https://licenses.nuget.org/NPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_21.yml b/src/licensedcode/data/rules/npl-1.1_21.yml deleted file mode 100644 index af4ca4220ec..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NPL-1.1 diff --git a/src/licensedcode/data/rules/npl-1.1_22.RULE b/src/licensedcode/data/rules/npl-1.1_22.RULE index f4953637317..f20459abb72 100644 --- a/src/licensedcode/data/rules/npl-1.1_22.RULE +++ b/src/licensedcode/data/rules/npl-1.1_22.RULE @@ -1 +1,7 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_22.yml b/src/licensedcode/data/rules/npl-1.1_22.yml deleted file mode 100644 index d2bb3a7bebb..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/npl-1.1_23.RULE b/src/licensedcode/data/rules/npl-1.1_23.RULE index 56810a38acd..1e238ac276e 100644 --- a/src/licensedcode/data/rules/npl-1.1_23.RULE +++ b/src/licensedcode/data/rules/npl-1.1_23.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NPL-1.1 +--- + LICENSE {{NPL-1.1}} https://spdx.org/licenses/NPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_23.yml b/src/licensedcode/data/rules/npl-1.1_23.yml deleted file mode 100644 index b0746db918e..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NPL-1.1 diff --git a/src/licensedcode/data/rules/npl-1.1_24.RULE b/src/licensedcode/data/rules/npl-1.1_24.RULE index 181931f09ce..1a854f79835 100644 --- a/src/licensedcode/data/rules/npl-1.1_24.RULE +++ b/src/licensedcode/data/rules/npl-1.1_24.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NPL-1.1 +--- + {{NPL-1.1}} https://spdx.org/licenses/NPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_24.yml b/src/licensedcode/data/rules/npl-1.1_24.yml deleted file mode 100644 index b0746db918e..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NPL-1.1 diff --git a/src/licensedcode/data/rules/npl-1.1_3.RULE b/src/licensedcode/data/rules/npl-1.1_3.RULE index a061be0fed2..ec5af15303d 100644 --- a/src/licensedcode/data/rules/npl-1.1_3.RULE +++ b/src/licensedcode/data/rules/npl-1.1_3.RULE @@ -1,6 +1,11 @@ +--- +license_expression: npl-1.1 +is_license_notice: yes +--- + NPL 1.1 The contents of this file are subject to the Netscape Public License Version 11 \(the ("License")|("NPL")\); you may not use this file except in compliance with the (License)|(NPL) You may obtain a copy of the (License)|(NPL) at -http://wwwmozillaorg/NPL/ +http://wwwmozillaorg/NPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_3.yml b/src/licensedcode/data/rules/npl-1.1_3.yml deleted file mode 100644 index e320e045d7f..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: npl-1.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/npl-1.1_4.RULE b/src/licensedcode/data/rules/npl-1.1_4.RULE index e95d1143747..a90b54555e6 100644 --- a/src/licensedcode/data/rules/npl-1.1_4.RULE +++ b/src/licensedcode/data/rules/npl-1.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + http://www.mozilla.org/NPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_4.yml b/src/licensedcode/data/rules/npl-1.1_4.yml deleted file mode 100644 index 6e2046a8c41..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.1_5.RULE b/src/licensedcode/data/rules/npl-1.1_5.RULE index a7f532cc71c..d5200f036da 100644 --- a/src/licensedcode/data/rules/npl-1.1_5.RULE +++ b/src/licensedcode/data/rules/npl-1.1_5.RULE @@ -1,3 +1,17 @@ +--- +license_expression: npl-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1998-1999 Netscape Communications Corporation +ignorable_holders: + - Netscape Communications Corporation +ignorable_urls: + - http://www.mozilla.org/MPL/ + - http://www.mozilla.org/NPL/ +--- + Netscape Public LIcense version 1.1 AMENDMENTS diff --git a/src/licensedcode/data/rules/npl-1.1_5.yml b/src/licensedcode/data/rules/npl-1.1_5.yml deleted file mode 100644 index 345a2cad7ed..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_5.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: npl-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1998-1999 Netscape Communications Corporation -ignorable_holders: - - Netscape Communications Corporation -ignorable_urls: - - http://www.mozilla.org/MPL/ - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.1_6.RULE b/src/licensedcode/data/rules/npl-1.1_6.RULE index bd74e9547f1..e6b5315d33d 100644 --- a/src/licensedcode/data/rules/npl-1.1_6.RULE +++ b/src/licensedcode/data/rules/npl-1.1_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + The source code for is available under <"http://www.mozilla.org/NPL/"> NPL 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_6.yml b/src/licensedcode/data/rules/npl-1.1_6.yml deleted file mode 100644 index 130d0a1ef32..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.1_7.RULE b/src/licensedcode/data/rules/npl-1.1_7.RULE index 37906c7e3ce..a8391c2d36e 100644 --- a/src/licensedcode/data/rules/npl-1.1_7.RULE +++ b/src/licensedcode/data/rules/npl-1.1_7.RULE @@ -1,3 +1,14 @@ +--- +license_expression: npl-1.1 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1998-1999 Netscape Communications Corporation +ignorable_holders: + - Netscape Communications Corporation +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + AMENDMENTS The Netscape Public License Version 1.1 ("NPL") consists of the Mozilla Public License Version 1.1 with the following Amendments, including Exhibit A-Netscape @@ -68,4 +79,4 @@ allow others to use your version of this file under the NPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [___] License. If you do not delete the provisions above, a recipient may use your version of this file under either -the NPL or the [___] License." +the NPL or the [___] License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_7.yml b/src/licensedcode/data/rules/npl-1.1_7.yml deleted file mode 100644 index 91042946bdf..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: npl-1.1 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1998-1999 Netscape Communications Corporation -ignorable_holders: - - Netscape Communications Corporation -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.1_8.RULE b/src/licensedcode/data/rules/npl-1.1_8.RULE index 96fb574edd8..af915455387 100644 --- a/src/licensedcode/data/rules/npl-1.1_8.RULE +++ b/src/licensedcode/data/rules/npl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - third_party/rhino_LICENSE.txt +--- + [rhino]: third_party/rhino_LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_8.yml b/src/licensedcode/data/rules/npl-1.1_8.yml deleted file mode 100644 index a0e0d693eb4..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - third_party/rhino_LICENSE.txt diff --git a/src/licensedcode/data/rules/npl-1.1_9.RULE b/src/licensedcode/data/rules/npl-1.1_9.RULE index c7e8fa3d1aa..3b9712ce523 100644 --- a/src/licensedcode/data/rules/npl-1.1_9.RULE +++ b/src/licensedcode/data/rules/npl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license/third_party/rhino_LICENSE.txt +--- + License: Netscape Public License 1.1 ([license/third_party/rhino_LICENSE.txt][rhino]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_9.yml b/src/licensedcode/data/rules/npl-1.1_9.yml deleted file mode 100644 index cb3ba71a9e9..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.1 -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license/third_party/rhino_LICENSE.txt diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_1.RULE index 1e7f95ca950..218234135ce 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: npl-1.1 OR gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + * The contents of this file are subject to the Netscape Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_1.yml deleted file mode 100644 index a42bedf0b97..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: npl-1.1 OR gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_2.RULE index c0c5350817b..6eef7538527 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: npl-1.1 OR gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + * The contents of this file are subject to the Netscape Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of @@ -20,4 +27,4 @@ * deleting the provisions above and replace them with the notice * and other provisions required by the GPL. If you do not delete * the provisions above, a recipient may use your version of this - * file under either the NPL or the GPL. + * file under either the NPL or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_2.yml deleted file mode 100644 index a42bedf0b97..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: npl-1.1 OR gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_1.RULE index cbaabc1235a..30ee564c6d1 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: (npl-1.1 AND mpl-1.1) OR gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + License Netscape Public License and MPL / GPL dual license \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 76dae3a9bb1..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (npl-1.1 AND mpl-1.1) OR gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_2.RULE index ded05a6945f..26adb368d5f 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: (npl-1.1 AND mpl-1.1) OR gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + Netscape Public License and MPL / GPL dual license \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 76dae3a9bb1..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-1.0-plus_and_mpl-1.1_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (npl-1.1 AND mpl-1.1) OR gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus.RULE index f0fee426ed8..2716d14dbd7 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus.RULE @@ -1,3 +1,10 @@ +--- +license_expression: npl-1.1 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +ignorable_urls: + - http://www.mozilla.org/NPL/ +--- + /* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus.yml deleted file mode 100644 index dbcdb0e848d..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: npl-1.1 OR gpl-2.0-plus OR lgpl-2.1-plus -is_license_notice: yes -ignorable_urls: - - http://www.mozilla.org/NPL/ diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_1.RULE index 6c639a360e0..92c436571f7 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: npl-1.1 OR gpl-2.0 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1 +--- + licensed under a dual license, Netscape Public License 1.1 / GNU General Public License. The text of the Netscape Public License diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_1.yml deleted file mode 100644 index 4430073b411..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 OR gpl-2.0 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1 diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_2.RULE index 83a4c223448..a0fc162c702 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: npl-1.1 OR gpl-2.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1 +--- + The text of the Netscape Public License is provided below (http://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1/): \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_2.yml deleted file mode 100644 index 6fa242e106a..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 OR gpl-2.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1 diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_3.RULE index 637f80a8875..01c88910957 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 OR gpl-2.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1 +--- + http://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1/): \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_3.yml deleted file mode 100644 index 6fa242e106a..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 OR gpl-2.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1 diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_4.RULE index b64bd5fb844..4b36a097ea9 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 OR gpl-2.0 +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1 +--- + https://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1/): \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_4.yml deleted file mode 100644 index 108e65c4290..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 OR gpl-2.0 -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://website-archive.mozilla.org/www.mozilla.org/mpl/MPL/NPL/1.1 diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_5.RULE index 98ced66b418..ac7b6971b8a 100644 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: npl-1.1 OR gpl-2.0 +is_license_reference: yes +relevance: 99 +--- + mozilla.org/mpl/MPL/NPL/1.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_5.yml deleted file mode 100644 index 53a28aa4f1a..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_or_gpl-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: npl-1.1 OR gpl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/npl-1.1_url_1.RULE b/src/licensedcode/data/rules/npl-1.1_url_1.RULE index 7ef4a04e78d..f1f5e2015e5 100644 --- a/src/licensedcode/data/rules/npl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/npl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/npl-1.1 +--- + https://spdx.org/licenses/npl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_url_1.yml b/src/licensedcode/data/rules/npl-1.1_url_1.yml deleted file mode 100644 index 021482c91c5..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/npl-1.1 diff --git a/src/licensedcode/data/rules/npl-1.1_url_2.RULE b/src/licensedcode/data/rules/npl-1.1_url_2.RULE index 57ed7588fb4..475431f40ea 100644 --- a/src/licensedcode/data/rules/npl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/npl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/npl-1.1.html +--- + https://spdx.org/licenses/npl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/npl-1.1_url_2.yml b/src/licensedcode/data/rules/npl-1.1_url_2.yml deleted file mode 100644 index 767b6aa686e..00000000000 --- a/src/licensedcode/data/rules/npl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/npl-1.1.html diff --git a/src/licensedcode/data/rules/nrl-permission_1.RULE b/src/licensedcode/data/rules/nrl-permission_1.RULE index 356557d1986..2059c85a36c 100644 --- a/src/licensedcode/data/rules/nrl-permission_1.RULE +++ b/src/licensedcode/data/rules/nrl-permission_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: nrl-permission +is_license_text: yes +relevance: 95 +notes: this is a slightly modified version that removes some documentation requirement. "that + both notices appear in supporting documentation." is no longer there +--- + Permission to use, copy, modify and distribute this software and its documentation is hereby granted, provided that both the copyright notice and this permission notice appear in all copies of diff --git a/src/licensedcode/data/rules/nrl-permission_1.yml b/src/licensedcode/data/rules/nrl-permission_1.yml deleted file mode 100644 index 1654bf92641..00000000000 --- a/src/licensedcode/data/rules/nrl-permission_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nrl-permission -is_license_text: yes -relevance: 95 -notes: this is a slightly modified version that removes some documentation requirement. "that - both notices appear in supporting documentation." is no longer there diff --git a/src/licensedcode/data/rules/nrl_1.RULE b/src/licensedcode/data/rules/nrl_1.RULE index 36bf92fe7fc..e2a4b1cf1c5 100644 --- a/src/licensedcode/data/rules/nrl_1.RULE +++ b/src/licensedcode/data/rules/nrl_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: nrl +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyright by The Regents of the University of California +ignorable_holders: + - The Regents of the University of California +ignorable_authors: + - the University of California, Berkeley and its contributors +--- + COPYRIGHT NOTICE All of the documentation and software included in this software diff --git a/src/licensedcode/data/rules/nrl_1.yml b/src/licensedcode/data/rules/nrl_1.yml deleted file mode 100644 index 9f496868a70..00000000000 --- a/src/licensedcode/data/rules/nrl_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: nrl -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyright by The Regents of the University of California -ignorable_holders: - - The Regents of the University of California -ignorable_authors: - - the University of California, Berkeley and its contributors diff --git a/src/licensedcode/data/rules/nrl_10.RULE b/src/licensedcode/data/rules/nrl_10.RULE index 2b479ebe2b5..38622bdb706 100644 --- a/src/licensedcode/data/rules/nrl_10.RULE +++ b/src/licensedcode/data/rules/nrl_10.RULE @@ -1 +1,7 @@ +--- +license_expression: nrl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NRL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_10.yml b/src/licensedcode/data/rules/nrl_10.yml deleted file mode 100644 index ccb2ac6e2f9..00000000000 --- a/src/licensedcode/data/rules/nrl_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nrl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nrl_11.RULE b/src/licensedcode/data/rules/nrl_11.RULE index bb56802ef0f..a2033062bce 100644 --- a/src/licensedcode/data/rules/nrl_11.RULE +++ b/src/licensedcode/data/rules/nrl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: nrl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NRL +--- + LICENSE {{NRL}} https://spdx.org/licenses/NRL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_11.yml b/src/licensedcode/data/rules/nrl_11.yml deleted file mode 100644 index 39d8c3c0d6d..00000000000 --- a/src/licensedcode/data/rules/nrl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nrl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NRL diff --git a/src/licensedcode/data/rules/nrl_12.RULE b/src/licensedcode/data/rules/nrl_12.RULE index 46ef68b1e2a..ddd6dc2a016 100644 --- a/src/licensedcode/data/rules/nrl_12.RULE +++ b/src/licensedcode/data/rules/nrl_12.RULE @@ -1 +1,9 @@ +--- +license_expression: nrl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NRL +--- + {{NRL}} https://spdx.org/licenses/NRL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_12.yml b/src/licensedcode/data/rules/nrl_12.yml deleted file mode 100644 index 39d8c3c0d6d..00000000000 --- a/src/licensedcode/data/rules/nrl_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nrl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NRL diff --git a/src/licensedcode/data/rules/nrl_2.RULE b/src/licensedcode/data/rules/nrl_2.RULE index 24f0a4ea19b..1c096c9b2d1 100644 --- a/src/licensedcode/data/rules/nrl_2.RULE +++ b/src/licensedcode/data/rules/nrl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nrl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NRL NRL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_2.yml b/src/licensedcode/data/rules/nrl_2.yml deleted file mode 100644 index 1e30d630e3a..00000000000 --- a/src/licensedcode/data/rules/nrl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nrl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nrl_3.RULE b/src/licensedcode/data/rules/nrl_3.RULE index 145af4a3830..d2a75218c69 100644 --- a/src/licensedcode/data/rules/nrl_3.RULE +++ b/src/licensedcode/data/rules/nrl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: nrl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NRL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_3.yml b/src/licensedcode/data/rules/nrl_3.yml deleted file mode 100644 index 1e30d630e3a..00000000000 --- a/src/licensedcode/data/rules/nrl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nrl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/nrl_4.RULE b/src/licensedcode/data/rules/nrl_4.RULE index 3faa3be2630..5f9dd463f9d 100644 --- a/src/licensedcode/data/rules/nrl_4.RULE +++ b/src/licensedcode/data/rules/nrl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: nrl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: NRL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_4.yml b/src/licensedcode/data/rules/nrl_4.yml deleted file mode 100644 index 0922599b303..00000000000 --- a/src/licensedcode/data/rules/nrl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nrl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nrl_5.RULE b/src/licensedcode/data/rules/nrl_5.RULE index 68441b245e7..f9847aa602d 100644 --- a/src/licensedcode/data/rules/nrl_5.RULE +++ b/src/licensedcode/data/rules/nrl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: nrl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NRL License NRL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_5.yml b/src/licensedcode/data/rules/nrl_5.yml deleted file mode 100644 index 0922599b303..00000000000 --- a/src/licensedcode/data/rules/nrl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nrl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nrl_6.RULE b/src/licensedcode/data/rules/nrl_6.RULE index 082ee578163..3681ee209bf 100644 --- a/src/licensedcode/data/rules/nrl_6.RULE +++ b/src/licensedcode/data/rules/nrl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: nrl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NRL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_6.yml b/src/licensedcode/data/rules/nrl_6.yml deleted file mode 100644 index 565f5877fed..00000000000 --- a/src/licensedcode/data/rules/nrl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nrl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nrl_7.RULE b/src/licensedcode/data/rules/nrl_7.RULE index 6c83a623ffb..09079d3808b 100644 --- a/src/licensedcode/data/rules/nrl_7.RULE +++ b/src/licensedcode/data/rules/nrl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: nrl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NRL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_7.yml b/src/licensedcode/data/rules/nrl_7.yml deleted file mode 100644 index 565f5877fed..00000000000 --- a/src/licensedcode/data/rules/nrl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nrl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nrl_8.RULE b/src/licensedcode/data/rules/nrl_8.RULE index fa56bfe7625..12715d80f43 100644 --- a/src/licensedcode/data/rules/nrl_8.RULE +++ b/src/licensedcode/data/rules/nrl_8.RULE @@ -1 +1,10 @@ +--- +license_expression: nrl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NRL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_8.yml b/src/licensedcode/data/rules/nrl_8.yml deleted file mode 100644 index 565f5877fed..00000000000 --- a/src/licensedcode/data/rules/nrl_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nrl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/nrl_9.RULE b/src/licensedcode/data/rules/nrl_9.RULE index c84eba6beca..1d184b879cd 100644 --- a/src/licensedcode/data/rules/nrl_9.RULE +++ b/src/licensedcode/data/rules/nrl_9.RULE @@ -1 +1,9 @@ +--- +license_expression: nrl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NRL +--- + https://licenses.nuget.org/NRL \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_9.yml b/src/licensedcode/data/rules/nrl_9.yml deleted file mode 100644 index 3ee217083b3..00000000000 --- a/src/licensedcode/data/rules/nrl_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nrl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NRL diff --git a/src/licensedcode/data/rules/nrl_url_1.RULE b/src/licensedcode/data/rules/nrl_url_1.RULE index 045926c306f..d8287717fe2 100644 --- a/src/licensedcode/data/rules/nrl_url_1.RULE +++ b/src/licensedcode/data/rules/nrl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: nrl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nrl +--- + https://spdx.org/licenses/nrl \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_url_1.yml b/src/licensedcode/data/rules/nrl_url_1.yml deleted file mode 100644 index ded5c90b3eb..00000000000 --- a/src/licensedcode/data/rules/nrl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nrl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nrl diff --git a/src/licensedcode/data/rules/nrl_url_2.RULE b/src/licensedcode/data/rules/nrl_url_2.RULE index 95a3d664308..55a7c79523f 100644 --- a/src/licensedcode/data/rules/nrl_url_2.RULE +++ b/src/licensedcode/data/rules/nrl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: nrl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/nrl.html +--- + https://spdx.org/licenses/nrl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nrl_url_2.yml b/src/licensedcode/data/rules/nrl_url_2.yml deleted file mode 100644 index f1c05469902..00000000000 --- a/src/licensedcode/data/rules/nrl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nrl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/nrl.html diff --git a/src/licensedcode/data/rules/nsis_1.RULE b/src/licensedcode/data/rules/nsis_1.RULE index d1de58e0edc..9b0b63468b5 100644 --- a/src/licensedcode/data/rules/nsis_1.RULE +++ b/src/licensedcode/data/rules/nsis_1.RULE @@ -1,5 +1,11 @@ +--- +license_expression: zlib +is_license_notice: yes +minimum_coverage: 70 +--- + All NSIS source code, plug-ins, documentation, examples, header files and graphics, with the exception of the compression modules and where otherwise noted, are licensed under the zlib/libpng license. -The zlib compression module for NSIS is licensed under the zlib/libpng license. +The zlib compression module for NSIS is licensed under the zlib/libpng license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nsis_1.yml b/src/licensedcode/data/rules/nsis_1.yml deleted file mode 100644 index ffaf8493781..00000000000 --- a/src/licensedcode/data/rules/nsis_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/nsis_2.RULE b/src/licensedcode/data/rules/nsis_2.RULE index 0c2e5055f40..4db3ed30bc1 100644 --- a/src/licensedcode/data/rules/nsis_2.RULE +++ b/src/licensedcode/data/rules/nsis_2.RULE @@ -1,5 +1,13 @@ +--- +license_expression: zlib AND bzip2-libbzip-2010 AND cpl-1.0 AND lzma-cpl-exception +is_license_notice: yes +notes: complex NSIS notices, not a choice. Found in Tomcat +ignorable_urls: + - http://nsis.sourceforge.net/ +--- + The Windows Installer is built with the Nullsoft Scriptable Install System (NSIS), which is open source software. The original software and related information is available at -http://nsis.sourceforge.net/. +http://nsis.sourceforge.net/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nsis_2.yml b/src/licensedcode/data/rules/nsis_2.yml deleted file mode 100644 index aadc892ccdb..00000000000 --- a/src/licensedcode/data/rules/nsis_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib AND bzip2-libbzip-2010 AND cpl-1.0 AND lzma-cpl-exception -is_license_notice: yes -notes: complex NSIS notices, not a choice. Found in Tomcat -ignorable_urls: - - http://nsis.sourceforge.net/ diff --git a/src/licensedcode/data/rules/nsis_3.RULE b/src/licensedcode/data/rules/nsis_3.RULE index dc4f3ec0aa0..8c7701e7c33 100644 --- a/src/licensedcode/data/rules/nsis_3.RULE +++ b/src/licensedcode/data/rules/nsis_3.RULE @@ -1 +1,7 @@ -The zlib compression module for NSIS is licensed under the zlib/libpng license. +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + +The zlib compression module for NSIS is licensed under the zlib/libpng license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nsis_3.yml b/src/licensedcode/data/rules/nsis_3.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/nsis_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nsis_4.RULE b/src/licensedcode/data/rules/nsis_4.RULE index fc351996987..bfd13efa71c 100644 --- a/src/licensedcode/data/rules/nsis_4.RULE +++ b/src/licensedcode/data/rules/nsis_4.RULE @@ -1 +1,7 @@ -The bzip2 compression module for NSIS is licensed under the bzip2 license. +--- +license_expression: bzip2-libbzip-2010 +is_license_notice: yes +relevance: 100 +--- + +The bzip2 compression module for NSIS is licensed under the bzip2 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nsis_4.yml b/src/licensedcode/data/rules/nsis_4.yml deleted file mode 100644 index b8d924f11e6..00000000000 --- a/src/licensedcode/data/rules/nsis_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bzip2-libbzip-2010 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/nsis_5.RULE b/src/licensedcode/data/rules/nsis_5.RULE index 3a98b3da4cd..32a4c72ec5f 100644 --- a/src/licensedcode/data/rules/nsis_5.RULE +++ b/src/licensedcode/data/rules/nsis_5.RULE @@ -1 +1,7 @@ +--- +license_expression: cpl-1.0 +is_license_notice: yes +relevance: 100 +--- + The lzma compression module for NSIS is licensed under the Common Public License version 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nsis_5.yml b/src/licensedcode/data/rules/nsis_5.yml deleted file mode 100644 index 07f5680e5c7..00000000000 --- a/src/licensedcode/data/rules/nsis_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ntp-0_1.RULE b/src/licensedcode/data/rules/ntp-0_1.RULE index 28c0761f5ce..c92db1a9e0b 100644 --- a/src/licensedcode/data/rules/ntp-0_1.RULE +++ b/src/licensedcode/data/rules/ntp-0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +relevance: 100 +--- + NTP No Attribution (NTP-0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_1.yml b/src/licensedcode/data/rules/ntp-0_1.yml deleted file mode 100644 index 406b9c45b3b..00000000000 --- a/src/licensedcode/data/rules/ntp-0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ntp-0_10.RULE b/src/licensedcode/data/rules/ntp-0_10.RULE index d0e327af672..9876dca3502 100644 --- a/src/licensedcode/data/rules/ntp-0_10.RULE +++ b/src/licensedcode/data/rules/ntp-0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NTP-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_10.yml b/src/licensedcode/data/rules/ntp-0_10.yml deleted file mode 100644 index 406b9c45b3b..00000000000 --- a/src/licensedcode/data/rules/ntp-0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ntp-0_11.RULE b/src/licensedcode/data/rules/ntp-0_11.RULE index 4341f2b9e8e..f8e37a6b411 100644 --- a/src/licensedcode/data/rules/ntp-0_11.RULE +++ b/src/licensedcode/data/rules/ntp-0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NTP-0 +--- + LICENSE {{NTP-0}} https://spdx.org/licenses/NTP-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_11.yml b/src/licensedcode/data/rules/ntp-0_11.yml deleted file mode 100644 index e57ce9d96ab..00000000000 --- a/src/licensedcode/data/rules/ntp-0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NTP-0 diff --git a/src/licensedcode/data/rules/ntp-0_12.RULE b/src/licensedcode/data/rules/ntp-0_12.RULE index cbd1b3385dc..55df27d929d 100644 --- a/src/licensedcode/data/rules/ntp-0_12.RULE +++ b/src/licensedcode/data/rules/ntp-0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NTP-0 +--- + {{NTP-0}} https://spdx.org/licenses/NTP-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_12.yml b/src/licensedcode/data/rules/ntp-0_12.yml deleted file mode 100644 index e57ce9d96ab..00000000000 --- a/src/licensedcode/data/rules/ntp-0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NTP-0 diff --git a/src/licensedcode/data/rules/ntp-0_2.RULE b/src/licensedcode/data/rules/ntp-0_2.RULE index e3b9a226148..844e04f5420 100644 --- a/src/licensedcode/data/rules/ntp-0_2.RULE +++ b/src/licensedcode/data/rules/ntp-0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NTP No Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_2.yml b/src/licensedcode/data/rules/ntp-0_2.yml deleted file mode 100644 index 61335156c00..00000000000 --- a/src/licensedcode/data/rules/ntp-0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ntp-0_3.RULE b/src/licensedcode/data/rules/ntp-0_3.RULE index 56c1bebf651..144791f03d4 100644 --- a/src/licensedcode/data/rules/ntp-0_3.RULE +++ b/src/licensedcode/data/rules/ntp-0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: NTP No Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_3.yml b/src/licensedcode/data/rules/ntp-0_3.yml deleted file mode 100644 index 61335156c00..00000000000 --- a/src/licensedcode/data/rules/ntp-0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ntp-0_4.RULE b/src/licensedcode/data/rules/ntp-0_4.RULE index 862115d42da..ece8453ceed 100644 --- a/src/licensedcode/data/rules/ntp-0_4.RULE +++ b/src/licensedcode/data/rules/ntp-0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + NTP-0 NTP No Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_4.yml b/src/licensedcode/data/rules/ntp-0_4.yml deleted file mode 100644 index 61335156c00..00000000000 --- a/src/licensedcode/data/rules/ntp-0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ntp-0_5.RULE b/src/licensedcode/data/rules/ntp-0_5.RULE index cff466a4fa5..2ebb97e5b38 100644 --- a/src/licensedcode/data/rules/ntp-0_5.RULE +++ b/src/licensedcode/data/rules/ntp-0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ntp-0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NTP-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_5.yml b/src/licensedcode/data/rules/ntp-0_5.yml deleted file mode 100644 index 3d0a3027427..00000000000 --- a/src/licensedcode/data/rules/ntp-0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ntp-0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ntp-0_6.RULE b/src/licensedcode/data/rules/ntp-0_6.RULE index 9b40a9981b4..cf78d75e4b7 100644 --- a/src/licensedcode/data/rules/ntp-0_6.RULE +++ b/src/licensedcode/data/rules/ntp-0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ntp-0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NTP No Attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_6.yml b/src/licensedcode/data/rules/ntp-0_6.yml deleted file mode 100644 index 3d0a3027427..00000000000 --- a/src/licensedcode/data/rules/ntp-0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ntp-0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ntp-0_7.RULE b/src/licensedcode/data/rules/ntp-0_7.RULE index 14cefd336c0..077b3c45f24 100644 --- a/src/licensedcode/data/rules/ntp-0_7.RULE +++ b/src/licensedcode/data/rules/ntp-0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ntp-0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NTP-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_7.yml b/src/licensedcode/data/rules/ntp-0_7.yml deleted file mode 100644 index 3d0a3027427..00000000000 --- a/src/licensedcode/data/rules/ntp-0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ntp-0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ntp-0_8.RULE b/src/licensedcode/data/rules/ntp-0_8.RULE index 6a6dcb8e72a..6ad9838674e 100644 --- a/src/licensedcode/data/rules/ntp-0_8.RULE +++ b/src/licensedcode/data/rules/ntp-0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NTP-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_8.yml b/src/licensedcode/data/rules/ntp-0_8.yml deleted file mode 100644 index 7f0fcf08710..00000000000 --- a/src/licensedcode/data/rules/ntp-0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ntp-0_9.RULE b/src/licensedcode/data/rules/ntp-0_9.RULE index c058d504b84..e4971b440f0 100644 --- a/src/licensedcode/data/rules/ntp-0_9.RULE +++ b/src/licensedcode/data/rules/ntp-0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ntp-0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NTP-0 +--- + https://licenses.nuget.org/NTP-0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ntp-0_9.yml b/src/licensedcode/data/rules/ntp-0_9.yml deleted file mode 100644 index d08d696a42f..00000000000 --- a/src/licensedcode/data/rules/ntp-0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ntp-0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NTP-0 diff --git a/src/licensedcode/data/rules/nuget_ms-pl_9.RULE b/src/licensedcode/data/rules/nuget_ms-pl_9.RULE index 1267705837f..74d978f5480 100644 --- a/src/licensedcode/data/rules/nuget_ms-pl_9.RULE +++ b/src/licensedcode/data/rules/nuget_ms-pl_9.RULE @@ -1 +1,9 @@ -http://opensource.org/licenses/ms-pl.html +--- +license_expression: ms-pl +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ms-pl.html +--- + +http://opensource.org/licenses/ms-pl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nuget_ms-pl_9.yml b/src/licensedcode/data/rules/nuget_ms-pl_9.yml deleted file mode 100644 index 08855d25822..00000000000 --- a/src/licensedcode/data/rules/nuget_ms-pl_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ms-pl -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ms-pl.html diff --git a/src/licensedcode/data/rules/nunit-v2.SPDX.RULE b/src/licensedcode/data/rules/nunit-v2.SPDX.RULE index d4a2618f36b..0f06a94fc28 100644 --- a/src/licensedcode/data/rules/nunit-v2.SPDX.RULE +++ b/src/licensedcode/data/rules/nunit-v2.SPDX.RULE @@ -1,3 +1,17 @@ +--- +license_expression: zlib-acknowledgement +is_license_notice: yes +minimum_coverage: 60 +notes: license text as published by SPDX for nunit-v2 +ignorable_copyrights: + - Copyright (c) 2000-2004 Philip A. Craig + - Portions Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, + Charlie Poole +ignorable_holders: + - James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole + - Philip A. Craig +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: @@ -8,4 +22,4 @@ Portions Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Voro 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nunit-v2.SPDX.yml b/src/licensedcode/data/rules/nunit-v2.SPDX.yml deleted file mode 100644 index 5f8f6be613c..00000000000 --- a/src/licensedcode/data/rules/nunit-v2.SPDX.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_notice: yes -minimum_coverage: 60 -notes: license text as published by SPDX for nunit-v2 -ignorable_copyrights: - - Copyright (c) 2000-2004 Philip A. Craig - - Portions Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, - Charlie Poole -ignorable_holders: - - James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole - - Philip A. Craig diff --git a/src/licensedcode/data/rules/nvidia-gov.RULE b/src/licensedcode/data/rules/nvidia-gov.RULE index 8d3a6a7e379..5d7142fc584 100644 --- a/src/licensedcode/data/rules/nvidia-gov.RULE +++ b/src/licensedcode/data/rules/nvidia-gov.RULE @@ -1,3 +1,13 @@ +--- +license_expression: nvidia +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright NVIDIA, Corporation +ignorable_holders: + - NVIDIA, Corporation +--- + NOTICE TO USER: The source code is copyrighted under U.S. and international laws. Users and possessors of this source code are hereby granted a nonexclusive, royalty-free copyright license to @@ -37,4 +47,4 @@ GPL licensing note -- nVidia is allowing a liberal interpretation of the documentation restriction above, to merely say that this nVidia's copyright and disclaimer should be included with all code derived - from this source. + from this source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nvidia-gov.yml b/src/licensedcode/data/rules/nvidia-gov.yml deleted file mode 100644 index 157cbf3af2c..00000000000 --- a/src/licensedcode/data/rules/nvidia-gov.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: nvidia -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright NVIDIA, Corporation -ignorable_holders: - - NVIDIA, Corporation diff --git a/src/licensedcode/data/rules/nvidia-gov2.RULE b/src/licensedcode/data/rules/nvidia-gov2.RULE index 4ba8266fb92..6884d77ab54 100644 --- a/src/licensedcode/data/rules/nvidia-gov2.RULE +++ b/src/licensedcode/data/rules/nvidia-gov2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: nvidia +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright NVIDIA, Corporation +ignorable_holders: + - NVIDIA, Corporation +--- + NOTICE TO USER: The source code is copyrighted under U.S. and * international laws. Users and possessors of this source code are * hereby granted a nonexclusive, royalty-free copyright license to * @@ -38,4 +48,4 @@ XFree86 'nv' driver, this source code is provided under MIT-style licensing where the source code is provided "as is" without warranty of any kind. The only usage restriction is for the copyright notices to be retained - whenever code is used. + whenever code is used. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nvidia-gov2.yml b/src/licensedcode/data/rules/nvidia-gov2.yml deleted file mode 100644 index 157cbf3af2c..00000000000 --- a/src/licensedcode/data/rules/nvidia-gov2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: nvidia -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright NVIDIA, Corporation -ignorable_holders: - - NVIDIA, Corporation diff --git a/src/licensedcode/data/rules/nvidia-gov3.RULE b/src/licensedcode/data/rules/nvidia-gov3.RULE index 0d828572666..e49c9775d3f 100644 --- a/src/licensedcode/data/rules/nvidia-gov3.RULE +++ b/src/licensedcode/data/rules/nvidia-gov3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: nvidia +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright NVIDIA, Corporation +ignorable_holders: + - NVIDIA, Corporation +--- + NOTICE TO USER: The source code is copyrighted under U.S. and *| international laws. Users and possessors of this source code are *| hereby granted a nonexclusive, royalty-free copyright license to *| @@ -36,4 +46,4 @@ GPL licensing note -- nVidia is allowing a liberal interpretation of the documentation restriction above, to merely say that this nVidia's -copyright and disclaimer should be included with all code derived +copyright and disclaimer should be included with all code derived \ No newline at end of file diff --git a/src/licensedcode/data/rules/nvidia-gov3.yml b/src/licensedcode/data/rules/nvidia-gov3.yml deleted file mode 100644 index 157cbf3af2c..00000000000 --- a/src/licensedcode/data/rules/nvidia-gov3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: nvidia -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright NVIDIA, Corporation -ignorable_holders: - - NVIDIA, Corporation diff --git a/src/licensedcode/data/rules/nvidia-gov4.RULE b/src/licensedcode/data/rules/nvidia-gov4.RULE index 97f372fea79..7b9788a892f 100644 --- a/src/licensedcode/data/rules/nvidia-gov4.RULE +++ b/src/licensedcode/data/rules/nvidia-gov4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: nvidia +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright 1993-1999 NVIDIA, Corporation +ignorable_holders: + - NVIDIA, Corporation +--- + |* NOTICE TO USER: The source code is copyrighted under U.S. and *| |* international laws. Users and possessors of this source code are *| |* hereby granted a nonexclusive, royalty-free copyright license to *| @@ -37,4 +47,4 @@ * GPL licensing note -- nVidia is allowing a liberal interpretation of * the documentation restriction above, to merely say that this nVidia's * copyright and disclaimer should be included with all code derived - * from this source. + * from this source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nvidia-gov4.yml b/src/licensedcode/data/rules/nvidia-gov4.yml deleted file mode 100644 index aafac692e65..00000000000 --- a/src/licensedcode/data/rules/nvidia-gov4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: nvidia -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright 1993-1999 NVIDIA, Corporation -ignorable_holders: - - NVIDIA, Corporation diff --git a/src/licensedcode/data/rules/nvidia-gov5.RULE b/src/licensedcode/data/rules/nvidia-gov5.RULE index 63e6a47ddee..f0097eb7a44 100644 --- a/src/licensedcode/data/rules/nvidia-gov5.RULE +++ b/src/licensedcode/data/rules/nvidia-gov5.RULE @@ -1,3 +1,15 @@ +--- +license_expression: nvidia +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright 1993-1999 NVIDIA, Corporation +ignorable_holders: + - NVIDIA, Corporation +ignorable_emails: + - jgarzik@pobox.com +--- + NOTICE TO USER: The source code is copyrighted under U.S. and *| international laws. Users and possessors of this source code are *| hereby granted a nonexclusive, royalty-free copyright license to *| @@ -37,4 +49,4 @@ GPL licensing note -- nVidia is allowing a liberal interpretation of the documentation restriction above, to merely say that this nVidia's copyright and disclaimer should be included with all code derived - from this source. -- Jeff Garzik , 01/Nov/99 + from this source. -- Jeff Garzik , 01/Nov/99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nvidia-gov5.yml b/src/licensedcode/data/rules/nvidia-gov5.yml deleted file mode 100644 index ec8a1973a17..00000000000 --- a/src/licensedcode/data/rules/nvidia-gov5.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: nvidia -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright 1993-1999 NVIDIA, Corporation -ignorable_holders: - - NVIDIA, Corporation -ignorable_emails: - - jgarzik@pobox.com diff --git a/src/licensedcode/data/rules/nvidia.RULE b/src/licensedcode/data/rules/nvidia.RULE index 5969bc9e30f..ba6cba97676 100644 --- a/src/licensedcode/data/rules/nvidia.RULE +++ b/src/licensedcode/data/rules/nvidia.RULE @@ -1 +1,9 @@ +--- +license_expression: nvidia +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 +--- + http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nvidia.yml b/src/licensedcode/data/rules/nvidia.yml deleted file mode 100644 index b15a7c3f303..00000000000 --- a/src/licensedcode/data/rules/nvidia.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nvidia -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html#7 diff --git a/src/licensedcode/data/rules/nvidia_not_not-a-license_gpl_linux.RULE b/src/licensedcode/data/rules/nvidia_not_not-a-license_gpl_linux.RULE index 77694aaceef..d88aca3f83d 100644 --- a/src/licensedcode/data/rules/nvidia_not_not-a-license_gpl_linux.RULE +++ b/src/licensedcode/data/rules/nvidia_not_not-a-license_gpl_linux.RULE @@ -1,4 +1,11 @@ +--- +license_expression: nvidia +is_license_notice: yes +minimum_coverage: 95 +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) +--- + GPL licensing note -- nVidia is allowing a liberal interpretation of the documentation restriction above, to merely say that this nVidia's copyright and disclaimer should be included with all code derived - from this source. + from this source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nvidia_not_not-a-license_gpl_linux.yml b/src/licensedcode/data/rules/nvidia_not_not-a-license_gpl_linux.yml deleted file mode 100644 index f32c4eecebb..00000000000 --- a/src/licensedcode/data/rules/nvidia_not_not-a-license_gpl_linux.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: nvidia -is_license_notice: yes -minimum_coverage: 95 -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/src/licensedcode/data/rules/nysl-0.9982.RULE b/src/licensedcode/data/rules/nysl-0.9982.RULE index 0cde11d1274..0f8315c6931 100644 --- a/src/licensedcode/data/rules/nysl-0.9982.RULE +++ b/src/licensedcode/data/rules/nysl-0.9982.RULE @@ -1 +1,9 @@ -http://www.kmonos.net/nysl/index.ja.html +--- +license_expression: nysl-0.9982 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.kmonos.net/nysl/index.ja.html +--- + +http://www.kmonos.net/nysl/index.ja.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/nysl-0.9982.yml b/src/licensedcode/data/rules/nysl-0.9982.yml deleted file mode 100644 index 6697d347ea6..00000000000 --- a/src/licensedcode/data/rules/nysl-0.9982.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nysl-0.9982 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.kmonos.net/nysl/index.ja.html diff --git a/src/licensedcode/data/rules/nysl-0.9982_2.RULE b/src/licensedcode/data/rules/nysl-0.9982_2.RULE index 4f193656bf6..7e5688d6638 100644 --- a/src/licensedcode/data/rules/nysl-0.9982_2.RULE +++ b/src/licensedcode/data/rules/nysl-0.9982_2.RULE @@ -1 +1,7 @@ +--- +license_expression: nysl-0.9982 +is_license_reference: yes +relevance: 100 +--- + NYSL Version 0.9982 \ No newline at end of file diff --git a/src/licensedcode/data/rules/nysl-0.9982_2.yml b/src/licensedcode/data/rules/nysl-0.9982_2.yml deleted file mode 100644 index 6dd38a00c64..00000000000 --- a/src/licensedcode/data/rules/nysl-0.9982_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: nysl-0.9982 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/o-uda-1.0_1.RULE b/src/licensedcode/data/rules/o-uda-1.0_1.RULE index cdfbf0c8139..dca7e5767f4 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_1.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: o-uda-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Use of Data Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_1.yml b/src/licensedcode/data/rules/o-uda-1.0_1.yml deleted file mode 100644 index d8b0285d536..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: o-uda-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/o-uda-1.0_10.RULE b/src/licensedcode/data/rules/o-uda-1.0_10.RULE index 22d65e759c9..dfd26712a85 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_10.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: o-uda-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/O-UDA-1.0 +--- + LICENSE {{O-UDA-1.0}} https://spdx.org/licenses/O-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_10.yml b/src/licensedcode/data/rules/o-uda-1.0_10.yml deleted file mode 100644 index 58e126d8a3d..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: o-uda-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/O-UDA-1.0 diff --git a/src/licensedcode/data/rules/o-uda-1.0_11.RULE b/src/licensedcode/data/rules/o-uda-1.0_11.RULE index 2422a04d8ce..84abd882b68 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_11.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: o-uda-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/O-UDA-1.0 +--- + {{O-UDA-1.0}} https://spdx.org/licenses/O-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_11.yml b/src/licensedcode/data/rules/o-uda-1.0_11.yml deleted file mode 100644 index 58e126d8a3d..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: o-uda-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/O-UDA-1.0 diff --git a/src/licensedcode/data/rules/o-uda-1.0_2.RULE b/src/licensedcode/data/rules/o-uda-1.0_2.RULE index 39a6b1db0aa..e46580f4c02 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_2.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: o-uda-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Use of Data Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_2.yml b/src/licensedcode/data/rules/o-uda-1.0_2.yml deleted file mode 100644 index d8b0285d536..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: o-uda-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/o-uda-1.0_3.RULE b/src/licensedcode/data/rules/o-uda-1.0_3.RULE index 1f8b10b333e..08ab6e4f069 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_3.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: o-uda-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + O-UDA-1.0 Open Use of Data Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_3.yml b/src/licensedcode/data/rules/o-uda-1.0_3.yml deleted file mode 100644 index d8b0285d536..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: o-uda-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/o-uda-1.0_4.RULE b/src/licensedcode/data/rules/o-uda-1.0_4.RULE index dc3efaaf1b7..43ee4c93b72 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_4.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: o-uda-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Use of Data Agreement v1.0 O-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_4.yml b/src/licensedcode/data/rules/o-uda-1.0_4.yml deleted file mode 100644 index d8b0285d536..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: o-uda-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/o-uda-1.0_5.RULE b/src/licensedcode/data/rules/o-uda-1.0_5.RULE index a2379482ee9..7dcda175d4f 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_5.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: o-uda-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: O-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_5.yml b/src/licensedcode/data/rules/o-uda-1.0_5.yml deleted file mode 100644 index d0054a09389..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: o-uda-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/o-uda-1.0_6.RULE b/src/licensedcode/data/rules/o-uda-1.0_6.RULE index 0c2cd31bdcc..97f8d947428 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_6.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: o-uda-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Use of Data Agreement v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_6.yml b/src/licensedcode/data/rules/o-uda-1.0_6.yml deleted file mode 100644 index d0054a09389..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: o-uda-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/o-uda-1.0_7.RULE b/src/licensedcode/data/rules/o-uda-1.0_7.RULE index b8f94d74d4e..3a9fad6df1d 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_7.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: o-uda-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: O-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_7.yml b/src/licensedcode/data/rules/o-uda-1.0_7.yml deleted file mode 100644 index d0054a09389..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: o-uda-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/o-uda-1.0_8.RULE b/src/licensedcode/data/rules/o-uda-1.0_8.RULE index f93212d1d0e..6612f1e9a95 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_8.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: o-uda-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/O-UDA-1.0 +--- + https://licenses.nuget.org/O-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_8.yml b/src/licensedcode/data/rules/o-uda-1.0_8.yml deleted file mode 100644 index 930dbc1c39a..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: o-uda-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/O-UDA-1.0 diff --git a/src/licensedcode/data/rules/o-uda-1.0_9.RULE b/src/licensedcode/data/rules/o-uda-1.0_9.RULE index cc47b6cf5c9..a5c3f46095a 100644 --- a/src/licensedcode/data/rules/o-uda-1.0_9.RULE +++ b/src/licensedcode/data/rules/o-uda-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: o-uda-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/O-UDA-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/o-uda-1.0_9.yml b/src/licensedcode/data/rules/o-uda-1.0_9.yml deleted file mode 100644 index e52994f6714..00000000000 --- a/src/licensedcode/data/rules/o-uda-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: o-uda-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/oasis-ipr-policy-2014_1.RULE b/src/licensedcode/data/rules/oasis-ipr-policy-2014_1.RULE index 06276ca2d8e..e93cac10917 100644 --- a/src/licensedcode/data/rules/oasis-ipr-policy-2014_1.RULE +++ b/src/licensedcode/data/rules/oasis-ipr-policy-2014_1.RULE @@ -1,5 +1,11 @@ +--- +license_expression: oasis-ipr-policy-2014 +is_license_reference: yes +ignorable_urls: + - http://www.oasis-open.org/policies-guidelines/ipr +--- + * /Distributed under the terms of the OASIS IPR Policy, * [http://www.oasis-open.org/policies-guidelines/ipr], AS-IS, WITHOUT ANY * IMPLIED OR EXPRESS WARRANTY; there is no warranty of MERCHANTABILITY, FITNESS FOR A - * PARTICULAR PURPOSE or NONINFRINGEMENT of the rights of others. - + * PARTICULAR PURPOSE or NONINFRINGEMENT of the rights of others. \ No newline at end of file diff --git a/src/licensedcode/data/rules/oasis-ipr-policy-2014_1.yml b/src/licensedcode/data/rules/oasis-ipr-policy-2014_1.yml deleted file mode 100644 index e202e473179..00000000000 --- a/src/licensedcode/data/rules/oasis-ipr-policy-2014_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oasis-ipr-policy-2014 -is_license_reference: yes -ignorable_urls: - - http://www.oasis-open.org/policies-guidelines/ipr diff --git a/src/licensedcode/data/rules/oasis-ws-security-spec.RULE b/src/licensedcode/data/rules/oasis-ws-security-spec.RULE index f8605ad6098..cdd8a699d05 100644 --- a/src/licensedcode/data/rules/oasis-ws-security-spec.RULE +++ b/src/licensedcode/data/rules/oasis-ws-security-spec.RULE @@ -1 +1,9 @@ +--- +license_expression: oasis-ws-security-spec +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.oasis-open.org/org +--- + http://www.oasis-open.org/org \ No newline at end of file diff --git a/src/licensedcode/data/rules/oasis-ws-security-spec.yml b/src/licensedcode/data/rules/oasis-ws-security-spec.yml deleted file mode 100644 index e85bd34d0ff..00000000000 --- a/src/licensedcode/data/rules/oasis-ws-security-spec.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oasis-ws-security-spec -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.oasis-open.org/org diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_1.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_1.RULE index cdb969e7386..2f342dad966 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_notice: yes +--- + As a special exception to the GNU Lesser General Public License, you may link, statically or dynamically, a "work that uses the Library" with a publicly distributed version of the Library to produce an diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_1.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_1.yml deleted file mode 100644 index e527f0950f2..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_10.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_10.RULE index f3ec5de7972..ba4ae1febcd 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_10.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OCaml-LGPL-linking-exception +--- + LICENSE {{OCaml-LGPL-linking-exception}} https://spdx.org/licenses/OCaml-LGPL-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_10.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_10.yml deleted file mode 100644 index 47fd8600c10..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OCaml-LGPL-linking-exception diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_2.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_2.RULE index a09fde0ee89..4ca544371e6 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OCaml LGPL Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_2.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_2.yml deleted file mode 100644 index 9c45fe7653e..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_3.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_3.RULE index 473a2927804..b84754c06a4 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: OCaml LGPL Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_3.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_3.yml deleted file mode 100644 index 9c45fe7653e..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_4.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_4.RULE index 12450c852b9..89becb9fc17 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_4.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OCaml-LGPL-linking-exception OCaml LGPL Linking Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_4.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_4.yml deleted file mode 100644 index 9c45fe7653e..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_5.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_5.RULE index 692bf4400eb..cef512a9607 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_5.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OCaml-LGPL-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_5.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_5.yml deleted file mode 100644 index 8ce5cfc40a8..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_6.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_6.RULE index cd4fa720980..455af6c4b03 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_6.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: OCaml-LGPL-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_6.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_6.yml deleted file mode 100644 index 8ce5cfc40a8..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_7.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_7.RULE index 1361b845843..2ad4dabc9df 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_7.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_7.RULE @@ -1 +1,9 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OCaml-LGPL-linking-exception +--- + https://licenses.nuget.org/OCaml-LGPL-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_7.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_7.yml deleted file mode 100644 index 75e1dc01a3e..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OCaml-LGPL-linking-exception diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_8.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_8.RULE index a6be4097b80..ca5d1e34d44 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_8.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_8.RULE @@ -1 +1,7 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OCaml-LGPL-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_8.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_8.yml deleted file mode 100644 index bafee1227f9..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_9.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_9.RULE index 53abc06b6cd..f898c4355ae 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_9.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OCaml-LGPL-linking-exception +--- + {{OCaml-LGPL-linking-exception}} https://spdx.org/licenses/OCaml-LGPL-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_9.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_9.yml deleted file mode 100644 index 47fd8600c10..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OCaml-LGPL-linking-exception diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_1.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_1.RULE index a803f40b6db..35e57545bec 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_1.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ocaml-lgpl-linking-exception +--- + https://spdx.org/licenses/ocaml-lgpl-linking-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_1.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_1.yml deleted file mode 100644 index a7100afed07..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ocaml-lgpl-linking-exception diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_2.RULE b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_2.RULE index 75c2b0be949..8abf37457d6 100644 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_2.RULE +++ b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ocaml-lgpl-linking-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ocaml-lgpl-linking-exception.html +--- + https://spdx.org/licenses/ocaml-lgpl-linking-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_2.yml b/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_2.yml deleted file mode 100644 index 5982daf0c4f..00000000000 --- a/src/licensedcode/data/rules/ocaml-lgpl-linking-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocaml-lgpl-linking-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ocaml-lgpl-linking-exception.html diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_1.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_1.RULE index 5ddb790c8cd..790c04e70f8 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_1.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ocb-open-source-2013 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: this contains mojibake +--- + License 1 — License for Open-Source Software Implementations of OCB (Jan 9, 2013) diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_1.yml b/src/licensedcode/data/rules/ocb-open-source-2013_1.yml deleted file mode 100644 index e412afd8c9b..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: this contains mojibake diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_10.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_10.RULE index f8c27b7723b..71c1fe1bcce 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_10.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ocb-open-source-2013 +is_license_text: yes +--- + License for Open Source Software Implementations of OCB January 9, 2013 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_10.yml b/src/licensedcode/data/rules/ocb-open-source-2013_10.yml deleted file mode 100644 index 7784ad02e0b..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_text: yes diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_11.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_11.RULE index ec0a6b84560..da88cdc959d 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_11.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ocb-open-source-2013 +is_license_notice: yes +ignorable_urls: + - http://web.cs.ucdavis.edu/~rogaway/ocb/license.htm + - http://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf +--- + OCB is covered by several patents but may be used freely by most software. See http://web.cs.ucdavis.edu/~rogaway/ocb/license.htm . In particular license 1 is suitable for Libgcrypt: See diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_11.yml b/src/licensedcode/data/rules/ocb-open-source-2013_11.yml deleted file mode 100644 index e97a1130d96..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_notice: yes -ignorable_urls: - - http://web.cs.ucdavis.edu/~rogaway/ocb/license.htm - - http://web.cs.ucdavis.edu/~rogaway/ocb/license1.pdf diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_12.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_12.RULE index d913fd2c74b..b76be3d1c7a 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_12.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_12.RULE @@ -1 +1,7 @@ +--- +license_expression: ocb-open-source-2013 +is_license_reference: yes +relevance: 99 +--- + OCB license 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_12.yml b/src/licensedcode/data/rules/ocb-open-source-2013_12.yml deleted file mode 100644 index 9be255f1703..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_2.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_2.RULE index cc5383f33bf..53964f927f7 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_2.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_2.RULE @@ -1 +1,8 @@ +--- +license_expression: ocb-open-source-2013 +is_license_notice: yes +relevance: 99 +minimum_coverage: 100 +--- + OCB is covered by several patents but may be used freely by most software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_2.yml b/src/licensedcode/data/rules/ocb-open-source-2013_2.yml deleted file mode 100644 index d42f563fc28..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_notice: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_3.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_3.RULE index c5b75a17b9a..66728f3212e 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_3.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ocb-open-source-2013 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.cs.ucdavis.edu/~rogaway/ocb/license1.pdf +--- + https://www.cs.ucdavis.edu/~rogaway/ocb/license1.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_3.yml b/src/licensedcode/data/rules/ocb-open-source-2013_3.yml deleted file mode 100644 index d4ce298c175..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.cs.ucdavis.edu/~rogaway/ocb/license1.pdf diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_4.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_4.RULE index 31886728d46..50d40260ffc 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_4.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ocb-open-source-2013 +is_license_notice: yes +relevance: 100 +--- + License for Open-Source Software Implementations of OCB (Jan 9, 2013) License 1 Under this license, you are authorized to make, use, and distribute open-source software implementations of OCB. This license terminates for you if you sue someone over their open-source diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_4.yml b/src/licensedcode/data/rules/ocb-open-source-2013_4.yml deleted file mode 100644 index 5e7488b9356..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_5.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_5.RULE index e353209928c..5109cda69e0 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_5.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ocb-open-source-2013 +is_license_notice: yes +relevance: 100 +--- + License for Open-Source Software Implementations of OCB (Jan 9, 2013) License 1 Under this license, you are authorized to make, use, and distribute open-source software implementations of OCB. This license terminates for you if you sue someone over their open-source diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_5.yml b/src/licensedcode/data/rules/ocb-open-source-2013_5.yml deleted file mode 100644 index 5e7488b9356..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_6.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_6.RULE index ef7b9cc78ff..89153711813 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_6.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_6.RULE @@ -1 +1,7 @@ +--- +license_expression: ocb-open-source-2013 +is_license_reference: yes +relevance: 100 +--- + License for Open-Source Software Implementations of OCB \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_6.yml b/src/licensedcode/data/rules/ocb-open-source-2013_6.yml deleted file mode 100644 index 9a375f83278..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_7.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_7.RULE index 9ced8c8b80a..26a8f9381bb 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_7.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ocb-open-source-2013 +is_license_reference: yes +relevance: 100 +--- + License 1 — License for Open-Source Software Implementations of OCB (Jan 9, 2013) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_7.yml b/src/licensedcode/data/rules/ocb-open-source-2013_7.yml deleted file mode 100644 index 9a375f83278..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_8.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_8.RULE index 6ea628345d2..af329f2bc9d 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_8.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ocb-open-source-2013 +is_license_notice: yes +relevance: 100 +--- + License 1 — License for Open-Source Software Implementations of OCB (Jan 9, 2013) diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_8.yml b/src/licensedcode/data/rules/ocb-open-source-2013_8.yml deleted file mode 100644 index 5e7488b9356..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_9.RULE b/src/licensedcode/data/rules/ocb-open-source-2013_9.RULE index c9358ea8c51..26e81297040 100644 --- a/src/licensedcode/data/rules/ocb-open-source-2013_9.RULE +++ b/src/licensedcode/data/rules/ocb-open-source-2013_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ocb-open-source-2013 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.cs.ucdavis.edu/~rogaway/ocb/license1.pdf +--- + https://www.cs.ucdavis.edu/~rogaway/ocb/license1.pdf License for Open-Source Software Implementations of OCB (Jan 9, 2013) License 1 diff --git a/src/licensedcode/data/rules/ocb-open-source-2013_9.yml b/src/licensedcode/data/rules/ocb-open-source-2013_9.yml deleted file mode 100644 index d5eaa512256..00000000000 --- a/src/licensedcode/data/rules/ocb-open-source-2013_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ocb-open-source-2013 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.cs.ucdavis.edu/~rogaway/ocb/license1.pdf diff --git a/src/licensedcode/data/rules/occt-exception-1.0_1.RULE b/src/licensedcode/data/rules/occt-exception-1.0_1.RULE index 463ac50e7c6..54176df700b 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open CASCADE Exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_1.yml b/src/licensedcode/data/rules/occt-exception-1.0_1.yml deleted file mode 100644 index 2d91fed5724..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/occt-exception-1.0_10.RULE b/src/licensedcode/data/rules/occt-exception-1.0_10.RULE index 0af9c8240a3..9961faf5024 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_10.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OCCT-exception-1.0 +--- + LICENSE {{OCCT-exception-1.0}} https://spdx.org/licenses/OCCT-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_10.yml b/src/licensedcode/data/rules/occt-exception-1.0_10.yml deleted file mode 100644 index 994ebb20531..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OCCT-exception-1.0 diff --git a/src/licensedcode/data/rules/occt-exception-1.0_11.RULE b/src/licensedcode/data/rules/occt-exception-1.0_11.RULE index a7a56778832..7c551db83e1 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_11.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OCCT-exception-1.0 +--- + {{OCCT-exception-1.0}} https://spdx.org/licenses/OCCT-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_11.yml b/src/licensedcode/data/rules/occt-exception-1.0_11.yml deleted file mode 100644 index 994ebb20531..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OCCT-exception-1.0 diff --git a/src/licensedcode/data/rules/occt-exception-1.0_2.RULE b/src/licensedcode/data/rules/occt-exception-1.0_2.RULE index adb7328de5c..938ce8920ab 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_2.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OCCT-exception-1.0 Open CASCADE Exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_2.yml b/src/licensedcode/data/rules/occt-exception-1.0_2.yml deleted file mode 100644 index 2d91fed5724..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/occt-exception-1.0_3.RULE b/src/licensedcode/data/rules/occt-exception-1.0_3.RULE index 9381a5ba0e3..da399bb125f 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_3.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open CASCADE Exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_3.yml b/src/licensedcode/data/rules/occt-exception-1.0_3.yml deleted file mode 100644 index d4018e00a81..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-exception-1.0_4.RULE b/src/licensedcode/data/rules/occt-exception-1.0_4.RULE index 3812d332a62..cea87af119a 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_4.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open CASCADE Exception 1.0 OCCT-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_4.yml b/src/licensedcode/data/rules/occt-exception-1.0_4.yml deleted file mode 100644 index d4018e00a81..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-exception-1.0_5.RULE b/src/licensedcode/data/rules/occt-exception-1.0_5.RULE index 7d613a572f0..10dbb101857 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_5.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OCCT-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_5.yml b/src/licensedcode/data/rules/occt-exception-1.0_5.yml deleted file mode 100644 index d8d8cf4837c..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-exception-1.0_6.RULE b/src/licensedcode/data/rules/occt-exception-1.0_6.RULE index d496ad77b0e..e05a39e0bfe 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_6.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open CASCADE Exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_6.yml b/src/licensedcode/data/rules/occt-exception-1.0_6.yml deleted file mode 100644 index d8d8cf4837c..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-exception-1.0_7.RULE b/src/licensedcode/data/rules/occt-exception-1.0_7.RULE index 6212edfb58f..c257fb66a8a 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_7.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: OCCT-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_7.yml b/src/licensedcode/data/rules/occt-exception-1.0_7.yml deleted file mode 100644 index d8d8cf4837c..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-exception-1.0_8.RULE b/src/licensedcode/data/rules/occt-exception-1.0_8.RULE index f3f68bf506d..7e8c57d231a 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_8.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OCCT-exception-1.0 +--- + https://licenses.nuget.org/OCCT-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_8.yml b/src/licensedcode/data/rules/occt-exception-1.0_8.yml deleted file mode 100644 index 9e85ae264cf..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OCCT-exception-1.0 diff --git a/src/licensedcode/data/rules/occt-exception-1.0_9.RULE b/src/licensedcode/data/rules/occt-exception-1.0_9.RULE index 43d0b960b3c..41fc4f27888 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_9.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OCCT-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_9.yml b/src/licensedcode/data/rules/occt-exception-1.0_9.yml deleted file mode 100644 index 69d9d71d858..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/occt-exception-1.0_url_1.RULE b/src/licensedcode/data/rules/occt-exception-1.0_url_1.RULE index ac55330a1e3..3a8754882e6 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/occt-exception-1.0 +--- + https://spdx.org/licenses/occt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_url_1.yml b/src/licensedcode/data/rules/occt-exception-1.0_url_1.yml deleted file mode 100644 index 1ba235542d0..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/occt-exception-1.0 diff --git a/src/licensedcode/data/rules/occt-exception-1.0_url_2.RULE b/src/licensedcode/data/rules/occt-exception-1.0_url_2.RULE index 6053f7810bb..5060f938b13 100644 --- a/src/licensedcode/data/rules/occt-exception-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/occt-exception-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/occt-exception-1.0.html +--- + https://spdx.org/licenses/occt-exception-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-exception-1.0_url_2.yml b/src/licensedcode/data/rules/occt-exception-1.0_url_2.yml deleted file mode 100644 index b5ab0bbe173..00000000000 --- a/src/licensedcode/data/rules/occt-exception-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/occt-exception-1.0.html diff --git a/src/licensedcode/data/rules/occt-pl_1.RULE b/src/licensedcode/data/rules/occt-pl_1.RULE index 3f001bd2a7f..4a7158f4430 100644 --- a/src/licensedcode/data/rules/occt-pl_1.RULE +++ b/src/licensedcode/data/rules/occt-pl_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: occt-pl +is_license_notice: yes +--- + // This file is part of the Open CASCADE Technology software. // // This software may be distributed and/or modified under the terms and @@ -9,4 +14,4 @@ // including without limitation, any warranties of merchantability, fitness // for a particular purpose or non-infringement. Please see the License for // the specific terms and conditions governing rights and limitations under the -// License. +// License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_1.yml b/src/licensedcode/data/rules/occt-pl_1.yml deleted file mode 100644 index 6512b60c56b..00000000000 --- a/src/licensedcode/data/rules/occt-pl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: occt-pl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/occt-pl_10.RULE b/src/licensedcode/data/rules/occt-pl_10.RULE index 68f28e5676f..78662f16f2b 100644 --- a/src/licensedcode/data/rules/occt-pl_10.RULE +++ b/src/licensedcode/data/rules/occt-pl_10.RULE @@ -1 +1,7 @@ +--- +license_expression: occt-pl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OCCT-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_10.yml b/src/licensedcode/data/rules/occt-pl_10.yml deleted file mode 100644 index dc4d4351be3..00000000000 --- a/src/licensedcode/data/rules/occt-pl_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/occt-pl_11.RULE b/src/licensedcode/data/rules/occt-pl_11.RULE index 151c37a3824..4d8b4fe9a8a 100644 --- a/src/licensedcode/data/rules/occt-pl_11.RULE +++ b/src/licensedcode/data/rules/occt-pl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OCCT-PL +--- + LICENSE {{OCCT-PL}} https://spdx.org/licenses/OCCT-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_11.yml b/src/licensedcode/data/rules/occt-pl_11.yml deleted file mode 100644 index 09c1aa0dd05..00000000000 --- a/src/licensedcode/data/rules/occt-pl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OCCT-PL diff --git a/src/licensedcode/data/rules/occt-pl_12.RULE b/src/licensedcode/data/rules/occt-pl_12.RULE index d26a0487655..7424e981cef 100644 --- a/src/licensedcode/data/rules/occt-pl_12.RULE +++ b/src/licensedcode/data/rules/occt-pl_12.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OCCT-PL +--- + {{OCCT-PL}} https://spdx.org/licenses/OCCT-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_12.yml b/src/licensedcode/data/rules/occt-pl_12.yml deleted file mode 100644 index 09c1aa0dd05..00000000000 --- a/src/licensedcode/data/rules/occt-pl_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OCCT-PL diff --git a/src/licensedcode/data/rules/occt-pl_2.RULE b/src/licensedcode/data/rules/occt-pl_2.RULE index 44756339a51..8a8b5f66b49 100644 --- a/src/licensedcode/data/rules/occt-pl_2.RULE +++ b/src/licensedcode/data/rules/occt-pl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-pl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open CASCADE Technology Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_2.yml b/src/licensedcode/data/rules/occt-pl_2.yml deleted file mode 100644 index 0b30e38e585..00000000000 --- a/src/licensedcode/data/rules/occt-pl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/occt-pl_3.RULE b/src/licensedcode/data/rules/occt-pl_3.RULE index 7a9be0cec9c..332fd2e5266 100644 --- a/src/licensedcode/data/rules/occt-pl_3.RULE +++ b/src/licensedcode/data/rules/occt-pl_3.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-pl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OCCT-PL Open CASCADE Technology Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_3.yml b/src/licensedcode/data/rules/occt-pl_3.yml deleted file mode 100644 index 0b30e38e585..00000000000 --- a/src/licensedcode/data/rules/occt-pl_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/occt-pl_4.RULE b/src/licensedcode/data/rules/occt-pl_4.RULE index 90e67493887..4ddf2c1993c 100644 --- a/src/licensedcode/data/rules/occt-pl_4.RULE +++ b/src/licensedcode/data/rules/occt-pl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-pl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open CASCADE Technology Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_4.yml b/src/licensedcode/data/rules/occt-pl_4.yml deleted file mode 100644 index 4c67c3acf2b..00000000000 --- a/src/licensedcode/data/rules/occt-pl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-pl_5.RULE b/src/licensedcode/data/rules/occt-pl_5.RULE index 4ab4959acf7..504d9937b83 100644 --- a/src/licensedcode/data/rules/occt-pl_5.RULE +++ b/src/licensedcode/data/rules/occt-pl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-pl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open CASCADE Technology Public License OCCT-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_5.yml b/src/licensedcode/data/rules/occt-pl_5.yml deleted file mode 100644 index 4c67c3acf2b..00000000000 --- a/src/licensedcode/data/rules/occt-pl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-pl_6.RULE b/src/licensedcode/data/rules/occt-pl_6.RULE index f6169049f83..045934fdacc 100644 --- a/src/licensedcode/data/rules/occt-pl_6.RULE +++ b/src/licensedcode/data/rules/occt-pl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-pl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OCCT-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_6.yml b/src/licensedcode/data/rules/occt-pl_6.yml deleted file mode 100644 index 92ae1a6cc1d..00000000000 --- a/src/licensedcode/data/rules/occt-pl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-pl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-pl_7.RULE b/src/licensedcode/data/rules/occt-pl_7.RULE index d12c1094f7a..8c404dd7687 100644 --- a/src/licensedcode/data/rules/occt-pl_7.RULE +++ b/src/licensedcode/data/rules/occt-pl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-pl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open CASCADE Technology Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_7.yml b/src/licensedcode/data/rules/occt-pl_7.yml deleted file mode 100644 index 92ae1a6cc1d..00000000000 --- a/src/licensedcode/data/rules/occt-pl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-pl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-pl_8.RULE b/src/licensedcode/data/rules/occt-pl_8.RULE index 62902f16358..fb90aad2ccc 100644 --- a/src/licensedcode/data/rules/occt-pl_8.RULE +++ b/src/licensedcode/data/rules/occt-pl_8.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-pl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OCCT-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_8.yml b/src/licensedcode/data/rules/occt-pl_8.yml deleted file mode 100644 index 92ae1a6cc1d..00000000000 --- a/src/licensedcode/data/rules/occt-pl_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-pl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/occt-pl_9.RULE b/src/licensedcode/data/rules/occt-pl_9.RULE index 9fa71d8715c..c6b6a332bbc 100644 --- a/src/licensedcode/data/rules/occt-pl_9.RULE +++ b/src/licensedcode/data/rules/occt-pl_9.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-pl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OCCT-PL +--- + https://licenses.nuget.org/OCCT-PL \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_9.yml b/src/licensedcode/data/rules/occt-pl_9.yml deleted file mode 100644 index 199e80bce4b..00000000000 --- a/src/licensedcode/data/rules/occt-pl_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OCCT-PL diff --git a/src/licensedcode/data/rules/occt-pl_url_1.RULE b/src/licensedcode/data/rules/occt-pl_url_1.RULE index c439238ccbd..46f53c541c4 100644 --- a/src/licensedcode/data/rules/occt-pl_url_1.RULE +++ b/src/licensedcode/data/rules/occt-pl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-pl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/occt-pl +--- + https://spdx.org/licenses/occt-pl \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_url_1.yml b/src/licensedcode/data/rules/occt-pl_url_1.yml deleted file mode 100644 index 9d8a9adc4e4..00000000000 --- a/src/licensedcode/data/rules/occt-pl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/occt-pl diff --git a/src/licensedcode/data/rules/occt-pl_url_2.RULE b/src/licensedcode/data/rules/occt-pl_url_2.RULE index ce4131d9955..f5297d46518 100644 --- a/src/licensedcode/data/rules/occt-pl_url_2.RULE +++ b/src/licensedcode/data/rules/occt-pl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: occt-pl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/occt-pl.html +--- + https://spdx.org/licenses/occt-pl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/occt-pl_url_2.yml b/src/licensedcode/data/rules/occt-pl_url_2.yml deleted file mode 100644 index 72e5af3d948..00000000000 --- a/src/licensedcode/data/rules/occt-pl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/occt-pl.html diff --git a/src/licensedcode/data/rules/oclc-1.0.RULE b/src/licensedcode/data/rules/oclc-1.0.RULE index 52f7b061108..6ca0ef8894f 100644 --- a/src/licensedcode/data/rules/oclc-1.0.RULE +++ b/src/licensedcode/data/rules/oclc-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php +--- + http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-1.0.yml b/src/licensedcode/data/rules/oclc-1.0.yml deleted file mode 100644 index 063a72295a1..00000000000 --- a/src/licensedcode/data/rules/oclc-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.free-soft.org/mirrors/www.opensource.org/licenses/oclc.php diff --git a/src/licensedcode/data/rules/oclc-2.0.RULE b/src/licensedcode/data/rules/oclc-2.0.RULE index e532ef34ac4..44d3f88683f 100644 --- a/src/licensedcode/data/rules/oclc-2.0.RULE +++ b/src/licensedcode/data/rules/oclc-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.oclc.org/research/activities/software/license/v2final.htm +--- + http://www.oclc.org/research/activities/software/license/v2final.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0.SPDX.RULE b/src/licensedcode/data/rules/oclc-2.0.SPDX.RULE index 12cf6bd8549..f86d6b71a2f 100644 --- a/src/licensedcode/data/rules/oclc-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/oclc-2.0.SPDX.RULE @@ -1,3 +1,20 @@ +--- +license_expression: oclc-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. + and other contributors + - Copyright r 2002. OCLC Online Computer Library Center, Inc. +ignorable_holders: + - OCLC Online Computer Library Center, Inc. and other contributors + - r OCLC Online Computer Library Center, Inc. +ignorable_urls: + - http://purl.oclc.org/oclc/research/ORPL + - http://www.oclc.org/research +--- + OCLC Research Public License 2.0 Terms & Conditions Of Use May, 2002 diff --git a/src/licensedcode/data/rules/oclc-2.0.SPDX.yml b/src/licensedcode/data/rules/oclc-2.0.SPDX.yml deleted file mode 100644 index b2187eebe09..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0.SPDX.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: oclc-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2000- (insert then current year) OCLC Online Computer Library Center, Inc. - and other contributors - - Copyright r 2002. OCLC Online Computer Library Center, Inc. -ignorable_holders: - - OCLC Online Computer Library Center, Inc. and other contributors - - r OCLC Online Computer Library Center, Inc. -ignorable_urls: - - http://purl.oclc.org/oclc/research/ORPL - - http://www.oclc.org/research diff --git a/src/licensedcode/data/rules/oclc-2.0.yml b/src/licensedcode/data/rules/oclc-2.0.yml deleted file mode 100644 index 253088c4c57..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.oclc.org/research/activities/software/license/v2final.htm diff --git a/src/licensedcode/data/rules/oclc-2.0_1.RULE b/src/licensedcode/data/rules/oclc-2.0_1.RULE index fca08c727a2..f96bb23a8e2 100644 --- a/src/licensedcode/data/rules/oclc-2.0_1.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/oclc2.php +--- + http://opensource.org/licenses/oclc2.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_1.yml b/src/licensedcode/data/rules/oclc-2.0_1.yml deleted file mode 100644 index 9846a28bf89..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/oclc2.php diff --git a/src/licensedcode/data/rules/oclc-2.0_10.RULE b/src/licensedcode/data/rules/oclc-2.0_10.RULE index c3185da9f26..aaf00ae677d 100644 --- a/src/licensedcode/data/rules/oclc-2.0_10.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: oclc-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OCLC Research Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_10.yml b/src/licensedcode/data/rules/oclc-2.0_10.yml deleted file mode 100644 index c09b343eaec..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oclc-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oclc-2.0_11.RULE b/src/licensedcode/data/rules/oclc-2.0_11.RULE index 1fb7e35cd07..a183f3f2179 100644 --- a/src/licensedcode/data/rules/oclc-2.0_11.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: oclc-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OCLC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_11.yml b/src/licensedcode/data/rules/oclc-2.0_11.yml deleted file mode 100644 index c09b343eaec..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oclc-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oclc-2.0_12.RULE b/src/licensedcode/data/rules/oclc-2.0_12.RULE index aa5d2e1ca60..10de1035730 100644 --- a/src/licensedcode/data/rules/oclc-2.0_12.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OCLC-2.0 +--- + https://licenses.nuget.org/OCLC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_12.yml b/src/licensedcode/data/rules/oclc-2.0_12.yml deleted file mode 100644 index 7d5a7e3a871..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OCLC-2.0 diff --git a/src/licensedcode/data/rules/oclc-2.0_13.RULE b/src/licensedcode/data/rules/oclc-2.0_13.RULE index 3d6c3be711a..c2e24b7aafb 100644 --- a/src/licensedcode/data/rules/oclc-2.0_13.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OCLC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_13.yml b/src/licensedcode/data/rules/oclc-2.0_13.yml deleted file mode 100644 index ae17cc5b510..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/oclc-2.0_14.RULE b/src/licensedcode/data/rules/oclc-2.0_14.RULE index 6631aa95fd4..c296057afa4 100644 --- a/src/licensedcode/data/rules/oclc-2.0_14.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OCLC-2.0 +--- + {{OCLC-2.0}} https://spdx.org/licenses/OCLC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_14.yml b/src/licensedcode/data/rules/oclc-2.0_14.yml deleted file mode 100644 index 10a6d26e026..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OCLC-2.0 diff --git a/src/licensedcode/data/rules/oclc-2.0_15.RULE b/src/licensedcode/data/rules/oclc-2.0_15.RULE index 45254c161f2..5630d24805e 100644 --- a/src/licensedcode/data/rules/oclc-2.0_15.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OCLC-2.0 +--- + LICENSE {{OCLC-2.0}} https://spdx.org/licenses/OCLC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_15.yml b/src/licensedcode/data/rules/oclc-2.0_15.yml deleted file mode 100644 index 10a6d26e026..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OCLC-2.0 diff --git a/src/licensedcode/data/rules/oclc-2.0_2.RULE b/src/licensedcode/data/rules/oclc-2.0_2.RULE index 3ea3418301d..c4cd0e834a8 100644 --- a/src/licensedcode/data/rules/oclc-2.0_2.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: oclc-2.0 +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://purl.oclc.org/oclc/research/ORPL + - http://www.oclc.org/research +--- + The contents of this file, as updated from time to time by the OCLC Office of Research, are subject to OCLC Research Public License Version 2.0 (the "License"); you may not use this file except in compliance with the License. You @@ -7,4 +16,4 @@ is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. This software consists of voluntary contributions made by many individuals on behalf of OCLC Research. For more information on -OCLC Research, please see http://www.oclc.org/research/. \ No newline at end of file +OCLC Research, please see http://www.oclc.org/research/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_2.yml b/src/licensedcode/data/rules/oclc-2.0_2.yml deleted file mode 100644 index ab034cd6414..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oclc-2.0 -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://purl.oclc.org/oclc/research/ORPL - - http://www.oclc.org/research diff --git a/src/licensedcode/data/rules/oclc-2.0_3.RULE b/src/licensedcode/data/rules/oclc-2.0_3.RULE index 9566513d11e..b2882d7cbeb 100644 --- a/src/licensedcode/data/rules/oclc-2.0_3.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +--- + OCLC Research Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_3.yml b/src/licensedcode/data/rules/oclc-2.0_3.yml deleted file mode 100644 index ae17cc5b510..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/oclc-2.0_4.RULE b/src/licensedcode/data/rules/oclc-2.0_4.RULE index f48a0b006d8..ff44b006ff4 100644 --- a/src/licensedcode/data/rules/oclc-2.0_4.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OCLC Research Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_4.yml b/src/licensedcode/data/rules/oclc-2.0_4.yml deleted file mode 100644 index f0cf8efb771..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/oclc-2.0_5.RULE b/src/licensedcode/data/rules/oclc-2.0_5.RULE index ea1c5b6caec..ec64c26e09a 100644 --- a/src/licensedcode/data/rules/oclc-2.0_5.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OCLC-2.0 OCLC Research Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_5.yml b/src/licensedcode/data/rules/oclc-2.0_5.yml deleted file mode 100644 index f0cf8efb771..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/oclc-2.0_6.RULE b/src/licensedcode/data/rules/oclc-2.0_6.RULE index 902c9fbbbda..e950a58a113 100644 --- a/src/licensedcode/data/rules/oclc-2.0_6.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OCLC-1.0 OCLC Research Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_6.yml b/src/licensedcode/data/rules/oclc-2.0_6.yml deleted file mode 100644 index f0cf8efb771..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/oclc-2.0_7.RULE b/src/licensedcode/data/rules/oclc-2.0_7.RULE index b7954cdef91..ca0baaa35ab 100644 --- a/src/licensedcode/data/rules/oclc-2.0_7.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: OCLC Research Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_7.yml b/src/licensedcode/data/rules/oclc-2.0_7.yml deleted file mode 100644 index 8eb464fa0b3..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oclc-2.0_8.RULE b/src/licensedcode/data/rules/oclc-2.0_8.RULE index 8bf4b77a2b3..71b9e920c15 100644 --- a/src/licensedcode/data/rules/oclc-2.0_8.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OCLC Research Public License 2.0 OCLC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_8.yml b/src/licensedcode/data/rules/oclc-2.0_8.yml deleted file mode 100644 index 8eb464fa0b3..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oclc-2.0_9.RULE b/src/licensedcode/data/rules/oclc-2.0_9.RULE index 32d66aa26bb..4143ce23106 100644 --- a/src/licensedcode/data/rules/oclc-2.0_9.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: oclc-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OCLC-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_9.yml b/src/licensedcode/data/rules/oclc-2.0_9.yml deleted file mode 100644 index c09b343eaec..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oclc-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oclc-2.0_url_1.RULE b/src/licensedcode/data/rules/oclc-2.0_url_1.RULE index ca8662607b8..ce92e185330 100644 --- a/src/licensedcode/data/rules/oclc-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oclc-2.0 +--- + https://spdx.org/licenses/oclc-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_url_1.yml b/src/licensedcode/data/rules/oclc-2.0_url_1.yml deleted file mode 100644 index 0f27623eb60..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oclc-2.0 diff --git a/src/licensedcode/data/rules/oclc-2.0_url_2.RULE b/src/licensedcode/data/rules/oclc-2.0_url_2.RULE index b1b7ac8e868..9f5e747e21b 100644 --- a/src/licensedcode/data/rules/oclc-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oclc-2.0.html +--- + https://spdx.org/licenses/oclc-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_url_2.yml b/src/licensedcode/data/rules/oclc-2.0_url_2.yml deleted file mode 100644 index cad0b03dfe3..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oclc-2.0.html diff --git a/src/licensedcode/data/rules/oclc-2.0_url_glc_212.RULE b/src/licensedcode/data/rules/oclc-2.0_url_glc_212.RULE index 0c5c1819853..abadc4cb6ba 100644 --- a/src/licensedcode/data/rules/oclc-2.0_url_glc_212.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_url_glc_212.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/oclc-2.0 +--- + http://www.opensource.org/licenses/oclc-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_url_glc_212.yml b/src/licensedcode/data/rules/oclc-2.0_url_glc_212.yml deleted file mode 100644 index bfd67878610..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_url_glc_212.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/oclc-2.0 diff --git a/src/licensedcode/data/rules/oclc-2.0_url_glc_213.RULE b/src/licensedcode/data/rules/oclc-2.0_url_glc_213.RULE index 9886623b78d..9a5b15b0cf5 100644 --- a/src/licensedcode/data/rules/oclc-2.0_url_glc_213.RULE +++ b/src/licensedcode/data/rules/oclc-2.0_url_glc_213.RULE @@ -1 +1,9 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/oclc-2.0 +--- + https://www.opensource.org/licenses/oclc-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oclc-2.0_url_glc_213.yml b/src/licensedcode/data/rules/oclc-2.0_url_glc_213.yml deleted file mode 100644 index 41777a4d941..00000000000 --- a/src/licensedcode/data/rules/oclc-2.0_url_glc_213.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/oclc-2.0 diff --git a/src/licensedcode/data/rules/odbl-1.0.RULE b/src/licensedcode/data/rules/odbl-1.0.RULE index 9c0248127ff..7574e076150 100644 --- a/src/licensedcode/data/rules/odbl-1.0.RULE +++ b/src/licensedcode/data/rules/odbl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opendatacommons.org/licenses/odbl/1.0/ +--- + http://www.opendatacommons.org/licenses/odbl/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0.yml b/src/licensedcode/data/rules/odbl-1.0.yml deleted file mode 100644 index ba91aba0f16..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opendatacommons.org/licenses/odbl/1.0/ diff --git a/src/licensedcode/data/rules/odbl-1.0_1.RULE b/src/licensedcode/data/rules/odbl-1.0_1.RULE index 0e16051d65e..0d4a8b57516 100644 --- a/src/licensedcode/data/rules/odbl-1.0_1.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opendatacommons.org/licenses/odbl/ +--- + Open Database License http://www.opendatacommons.org/licenses/odbl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_1.yml b/src/licensedcode/data/rules/odbl-1.0_1.yml deleted file mode 100644 index 48691362a45..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/odbl-1.0_10.RULE b/src/licensedcode/data/rules/odbl-1.0_10.RULE index aba46ce1487..06a3ff0b749 100644 --- a/src/licensedcode/data/rules/odbl-1.0_10.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + data is now licensed under the Open Database License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_10.yml b/src/licensedcode/data/rules/odbl-1.0_10.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_11.RULE b/src/licensedcode/data/rules/odbl-1.0_11.RULE index 5b7f7d5f539..0f7ddcfdc47 100644 --- a/src/licensedcode/data/rules/odbl-1.0_11.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_11.RULE @@ -1,2 +1,8 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + Open Database License This dataset is licensed under the Open Database License \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_11.yml b/src/licensedcode/data/rules/odbl-1.0_11.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_12.RULE b/src/licensedcode/data/rules/odbl-1.0_12.RULE index baa036f346f..5fb37513f8a 100644 --- a/src/licensedcode/data/rules/odbl-1.0_12.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + This dataset is licensed under the Open Database License \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_12.yml b/src/licensedcode/data/rules/odbl-1.0_12.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_13.RULE b/src/licensedcode/data/rules/odbl-1.0_13.RULE index e180d3a6607..640e95334be 100644 --- a/src/licensedcode/data/rules/odbl-1.0_13.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +--- + Open Database License \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_13.yml b/src/licensedcode/data/rules/odbl-1.0_13.yml deleted file mode 100644 index e1ec245683c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_14.RULE b/src/licensedcode/data/rules/odbl-1.0_14.RULE index 759f7118f58..01e516df9a0 100644 --- a/src/licensedcode/data/rules/odbl-1.0_14.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Open Database License: You are free to copy, distribute, transmit and adapt our maps and data, as long as you _*credit OpenStreetMap*_ and its contributors. If diff --git a/src/licensedcode/data/rules/odbl-1.0_14.yml b/src/licensedcode/data/rules/odbl-1.0_14.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_15.RULE b/src/licensedcode/data/rules/odbl-1.0_15.RULE index fdf1c880d8e..756f53d42a5 100644 --- a/src/licensedcode/data/rules/odbl-1.0_15.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + Licensed under the Open Database License: You are free to copy, distribute, transmit and adapt our maps and data, as long as you _*credit OpenStreetMap*_ and its contributors. If diff --git a/src/licensedcode/data/rules/odbl-1.0_15.yml b/src/licensedcode/data/rules/odbl-1.0_15.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_16.RULE b/src/licensedcode/data/rules/odbl-1.0_16.RULE index 1b2cf520bc9..cdf1d53eccc 100644 --- a/src/licensedcode/data/rules/odbl-1.0_16.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 99 +--- + You are free to copy, distribute, transmit and adapt our maps and data, as long as you _*credit OpenStreetMap*_ and its contributors. If you alter or build upon our maps or data, you may distribute the result diff --git a/src/licensedcode/data/rules/odbl-1.0_16.yml b/src/licensedcode/data/rules/odbl-1.0_16.yml deleted file mode 100644 index 4a02f5f05f2..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/odbl-1.0_17.RULE b/src/licensedcode/data/rules/odbl-1.0_17.RULE index 8594495ea36..93c1a83f6e8 100644 --- a/src/licensedcode/data/rules/odbl-1.0_17.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_17.RULE @@ -1 +1,9 @@ -dataset is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + +dataset is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_17.yml b/src/licensedcode/data/rules/odbl-1.0_17.yml deleted file mode 100644 index a69a7ebb71f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_18.RULE b/src/licensedcode/data/rules/odbl-1.0_18.RULE index 5b4ada8a234..543edcccf2f 100644 --- a/src/licensedcode/data/rules/odbl-1.0_18.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + dataset is made available under the Open Database License \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_18.yml b/src/licensedcode/data/rules/odbl-1.0_18.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_19.RULE b/src/licensedcode/data/rules/odbl-1.0_19.RULE index 14d1c7c2245..51fdc44f875 100644 --- a/src/licensedcode/data/rules/odbl-1.0_19.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_19.RULE @@ -1 +1,9 @@ -dataset is made available under the Open Database License: https://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opendatacommons.org/licenses/odbl/1.0 +--- + +dataset is made available under the Open Database License: https://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_19.yml b/src/licensedcode/data/rules/odbl-1.0_19.yml deleted file mode 100644 index d133e6266c6..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_2.RULE b/src/licensedcode/data/rules/odbl-1.0_2.RULE index 919e2f927db..0bcbb73c1c9 100644 --- a/src/licensedcode/data/rules/odbl-1.0_2.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +--- + Open Database Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_2.yml b/src/licensedcode/data/rules/odbl-1.0_2.yml deleted file mode 100644 index e1ec245683c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_20.RULE b/src/licensedcode/data/rules/odbl-1.0_20.RULE index 6c8865f8a49..b48d23e5c91 100644 --- a/src/licensedcode/data/rules/odbl-1.0_20.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_20.RULE @@ -1 +1,9 @@ - http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + + http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_20.yml b/src/licensedcode/data/rules/odbl-1.0_20.yml deleted file mode 100644 index 8fb8ad56a7c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_21.RULE b/src/licensedcode/data/rules/odbl-1.0_21.RULE index ad62943b46b..f1ab07a4bc8 100644 --- a/src/licensedcode/data/rules/odbl-1.0_21.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_21.RULE @@ -1 +1,9 @@ - https://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opendatacommons.org/licenses/odbl/1.0 +--- + + https://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_21.yml b/src/licensedcode/data/rules/odbl-1.0_21.yml deleted file mode 100644 index 621de1e1352..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_22.RULE b/src/licensedcode/data/rules/odbl-1.0_22.RULE index e077cb03355..bd1053fbcfa 100644 --- a/src/licensedcode/data/rules/odbl-1.0_22.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_22.RULE @@ -1 +1,9 @@ -It contains information from dataset, which is made available here under the Open Database License http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + +It contains information from dataset, which is made available here under the Open Database License http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_22.yml b/src/licensedcode/data/rules/odbl-1.0_22.yml deleted file mode 100644 index a69a7ebb71f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_23.RULE b/src/licensedcode/data/rules/odbl-1.0_23.RULE index 1947e86f6e9..f1026b0fa52 100644 --- a/src/licensedcode/data/rules/odbl-1.0_23.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_23.RULE @@ -1 +1,9 @@ -It contains information from dataset, which is made available here under the Open Database License https://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opendatacommons.org/licenses/odbl/1.0 +--- + +It contains information from dataset, which is made available here under the Open Database License https://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_23.yml b/src/licensedcode/data/rules/odbl-1.0_23.yml deleted file mode 100644 index d133e6266c6..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_24.RULE b/src/licensedcode/data/rules/odbl-1.0_24.RULE index b7a839b305b..3e1e115d834 100644 --- a/src/licensedcode/data/rules/odbl-1.0_24.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_24.RULE @@ -1 +1,9 @@ -dataset, which is made available here under the Open Database License http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + +dataset, which is made available here under the Open Database License http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_24.yml b/src/licensedcode/data/rules/odbl-1.0_24.yml deleted file mode 100644 index a69a7ebb71f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_25.RULE b/src/licensedcode/data/rules/odbl-1.0_25.RULE index 5f1a346b311..78f2551abd9 100644 --- a/src/licensedcode/data/rules/odbl-1.0_25.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_25.RULE @@ -1 +1,9 @@ -dataset, which is made available here under the Open Database License https://opendatacommons.org/licenses/odbl/1.0/. +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opendatacommons.org/licenses/odbl/1.0 +--- + +dataset, which is made available here under the Open Database License https://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_25.yml b/src/licensedcode/data/rules/odbl-1.0_25.yml deleted file mode 100644 index d133e6266c6..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_26.RULE b/src/licensedcode/data/rules/odbl-1.0_26.RULE index e41758595f6..691b7aeabb4 100644 --- a/src/licensedcode/data/rules/odbl-1.0_26.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_26.RULE @@ -1 +1,13 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - (c) OpenStreetMap contributors +ignorable_holders: + - OpenStreetMap contributors +ignorable_urls: + - https://www.openstreetmap.org/ +--- + @source [OpenStreetMap](https://www.openstreetmap.org), available under the Open Database License, © OpenStreetMap contributors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_26.yml b/src/licensedcode/data/rules/odbl-1.0_26.yml deleted file mode 100644 index 4a640aea26f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_26.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - (c) OpenStreetMap contributors -ignorable_holders: - - OpenStreetMap contributors -ignorable_urls: - - https://www.openstreetmap.org/ diff --git a/src/licensedcode/data/rules/odbl-1.0_27.RULE b/src/licensedcode/data/rules/odbl-1.0_27.RULE index ba2263ee422..ffa80400b81 100644 --- a/src/licensedcode/data/rules/odbl-1.0_27.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_27.RULE @@ -1 +1,7 @@ -available under the Open Database License +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + +available under the Open Database License \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_27.yml b/src/licensedcode/data/rules/odbl-1.0_27.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_28.RULE b/src/licensedcode/data/rules/odbl-1.0_28.RULE index 161925e0405..39c68af0fe5 100644 --- a/src/licensedcode/data/rules/odbl-1.0_28.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_28.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/ +--- + is open data, licensed under the Open Data Commons Open Database License (ODbL). Find out more about this license here: http://opendatacommons.org/licenses/odbl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_28.yml b/src/licensedcode/data/rules/odbl-1.0_28.yml deleted file mode 100644 index 568f616c83d..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/odbl-1.0_29.RULE b/src/licensedcode/data/rules/odbl-1.0_29.RULE index 8c6bd14d689..20a323f7324 100644 --- a/src/licensedcode/data/rules/odbl-1.0_29.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_29.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opendatacommons.org/licenses/odbl/ +--- + is open data, licensed under the Open Data Commons Open Database License (ODbL). Find out more about this license here: https://opendatacommons.org/licenses/odbl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_29.yml b/src/licensedcode/data/rules/odbl-1.0_29.yml deleted file mode 100644 index d4e7af01708..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/odbl-1.0_3.RULE b/src/licensedcode/data/rules/odbl-1.0_3.RULE index f7127b314df..c742870418b 100644 --- a/src/licensedcode/data/rules/odbl-1.0_3.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/odbl-1.0 +--- + https://choosealicense.com/licenses/odbl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_3.yml b/src/licensedcode/data/rules/odbl-1.0_3.yml deleted file mode 100644 index 922b0834a9c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/odbl-1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_30.RULE b/src/licensedcode/data/rules/odbl-1.0_30.RULE index a50d20eed4f..bf87d123099 100644 --- a/src/licensedcode/data/rules/odbl-1.0_30.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_30.RULE @@ -1,2 +1,7 @@ -is open data, licensed under the Open Data Commons Open Database License (ODbL). +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- +is open data, licensed under the Open Data Commons Open Database License (ODbL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_30.yml b/src/licensedcode/data/rules/odbl-1.0_30.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_31.RULE b/src/licensedcode/data/rules/odbl-1.0_31.RULE index 61adfd6cac0..34e84f7345d 100644 --- a/src/licensedcode/data/rules/odbl-1.0_31.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_31.RULE @@ -1,3 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +--- + Open Database License (ODC-ODbL) You are free to share, create, and adapt, as long as you attribute the data source, share-aloe, and keep open. diff --git a/src/licensedcode/data/rules/odbl-1.0_31.yml b/src/licensedcode/data/rules/odbl-1.0_31.yml deleted file mode 100644 index e1ec245683c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_32.RULE b/src/licensedcode/data/rules/odbl-1.0_32.RULE index d6637789de2..f5e54dd029c 100644 --- a/src/licensedcode/data/rules/odbl-1.0_32.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_32.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +--- + Open Database License (ODC-ODbL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_32.yml b/src/licensedcode/data/rules/odbl-1.0_32.yml deleted file mode 100644 index e1ec245683c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_33.RULE b/src/licensedcode/data/rules/odbl-1.0_33.RULE index a877f15ec73..a372416147f 100644 --- a/src/licensedcode/data/rules/odbl-1.0_33.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_33.RULE @@ -1,3 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +--- + Open Database License (ODC-ODbL) You are free to share, create, and adapt, as long as you attribute the data source, share-aloe, and keep open. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_33.yml b/src/licensedcode/data/rules/odbl-1.0_33.yml deleted file mode 100644 index e1ec245683c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_34.RULE b/src/licensedcode/data/rules/odbl-1.0_34.RULE index 051c1c1228a..f8efd12512d 100644 --- a/src/licensedcode/data/rules/odbl-1.0_34.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_34.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/ +--- + OpenStreetMap is open data, licensed under the Open Data Commons Open Database License (ODbL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_34.yml b/src/licensedcode/data/rules/odbl-1.0_34.yml deleted file mode 100644 index 568f616c83d..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/odbl-1.0_35.RULE b/src/licensedcode/data/rules/odbl-1.0_35.RULE index 4318d933b22..f023cb880d1 100644 --- a/src/licensedcode/data/rules/odbl-1.0_35.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_35.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/ +--- + OpenStreetMap is open data, licensed under the http://opendatacommons.org/licenses/odbl/">Open Data Commons Open Database License (ODbL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_35.yml b/src/licensedcode/data/rules/odbl-1.0_35.yml deleted file mode 100644 index 568f616c83d..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/odbl-1.0_36.RULE b/src/licensedcode/data/rules/odbl-1.0_36.RULE index 1b830cd9ab7..741a22f299d 100644 --- a/src/licensedcode/data/rules/odbl-1.0_36.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_36.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/ +--- + open data, licensed under the http://opendatacommons.org/licenses/odbl/">Open Data Commons Open Database License (ODbL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_36.yml b/src/licensedcode/data/rules/odbl-1.0_36.yml deleted file mode 100644 index 568f616c83d..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/odbl-1.0_37.RULE b/src/licensedcode/data/rules/odbl-1.0_37.RULE index c6e038e95c1..1e8a940d0d2 100644 --- a/src/licensedcode/data/rules/odbl-1.0_37.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_37.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/ +--- + licensed under the http://opendatacommons.org/licenses/odbl/">Open Data Commons Open Database License (ODbL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_37.yml b/src/licensedcode/data/rules/odbl-1.0_37.yml deleted file mode 100644 index 568f616c83d..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/ diff --git a/src/licensedcode/data/rules/odbl-1.0_38.RULE b/src/licensedcode/data/rules/odbl-1.0_38.RULE index f6de4ebe921..316e3819e43 100644 --- a/src/licensedcode/data/rules/odbl-1.0_38.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_38.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_38.yml b/src/licensedcode/data/rules/odbl-1.0_38.yml deleted file mode 100644 index a69a7ebb71f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_39.RULE b/src/licensedcode/data/rules/odbl-1.0_39.RULE index e29370d24ad..9859fe2d71c 100644 --- a/src/licensedcode/data/rules/odbl-1.0_39.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_39.RULE @@ -1 +1,9 @@ -'This data is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/.' \ No newline at end of file +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + +'This data is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/.' \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_39.yml b/src/licensedcode/data/rules/odbl-1.0_39.yml deleted file mode 100644 index a69a7ebb71f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_4.RULE b/src/licensedcode/data/rules/odbl-1.0_4.RULE index 0509ae69784..2d35701353d 100644 --- a/src/licensedcode/data/rules/odbl-1.0_4.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/odbl-1.0 +--- + http://choosealicense.com/licenses/odbl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_4.yml b/src/licensedcode/data/rules/odbl-1.0_4.yml deleted file mode 100644 index 4a6845d19ea..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/odbl-1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_40.RULE b/src/licensedcode/data/rules/odbl-1.0_40.RULE index e66cc190149..462ae97fc12 100644 --- a/src/licensedcode/data/rules/odbl-1.0_40.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_40.RULE @@ -1 +1,9 @@ -Content of this folder is made available under Open Database License whose full text can be found at http://opendatacommons.org/licenses/odbl/. +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl +--- + +Content of this folder is made available under Open Database License whose full text can be found at http://opendatacommons.org/licenses/odbl/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_40.yml b/src/licensedcode/data/rules/odbl-1.0_40.yml deleted file mode 100644 index b7d3799775d..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl diff --git a/src/licensedcode/data/rules/odbl-1.0_41.RULE b/src/licensedcode/data/rules/odbl-1.0_41.RULE index a55cf8a4fd7..a94db10ecdb 100644 --- a/src/licensedcode/data/rules/odbl-1.0_41.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_41.RULE @@ -1,3 +1,11 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.openstreetmap.org/copyright +--- + OpenStreetMap® is open data, licensed under the Open Data Commons Open Database License (ODbL) by the OpenStreetMap Foundation (OSMF). diff --git a/src/licensedcode/data/rules/odbl-1.0_41.yml b/src/licensedcode/data/rules/odbl-1.0_41.yml deleted file mode 100644 index 2d56771c59b..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.openstreetmap.org/copyright diff --git a/src/licensedcode/data/rules/odbl-1.0_42.RULE b/src/licensedcode/data/rules/odbl-1.0_42.RULE index ddda60e21e4..f1901c20920 100644 --- a/src/licensedcode/data/rules/odbl-1.0_42.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + OpenStreetMap® is open data, licensed under the Open Data Commons Open Database License (ODbL) by the OpenStreetMap Foundation (OSMF). \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_42.yml b/src/licensedcode/data/rules/odbl-1.0_42.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_43.RULE b/src/licensedcode/data/rules/odbl-1.0_43.RULE index 574e3f62c67..427aca3a145 100644 --- a/src/licensedcode/data/rules/odbl-1.0_43.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_43.RULE @@ -1,2 +1,8 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + open data, licensed under the Open Data Commons Open Database License (ODbL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_43.yml b/src/licensedcode/data/rules/odbl-1.0_43.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_44.RULE b/src/licensedcode/data/rules/odbl-1.0_44.RULE index b8aba2975dc..7ed8e452a50 100644 --- a/src/licensedcode/data/rules/odbl-1.0_44.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_44.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.openstreetmap.org/copyright +--- + See full license: https://www.openstreetmap.org/copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_44.yml b/src/licensedcode/data/rules/odbl-1.0_44.yml deleted file mode 100644 index 9d2c71dfe5f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.openstreetmap.org/copyright diff --git a/src/licensedcode/data/rules/odbl-1.0_45.RULE b/src/licensedcode/data/rules/odbl-1.0_45.RULE index 2819bf688c9..2450c10ce34 100644 --- a/src/licensedcode/data/rules/odbl-1.0_45.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_45.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.openstreetmap.org/copyright +--- + https://www.openstreetmap.org/copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_45.yml b/src/licensedcode/data/rules/odbl-1.0_45.yml deleted file mode 100644 index 9d2c71dfe5f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.openstreetmap.org/copyright diff --git a/src/licensedcode/data/rules/odbl-1.0_46.RULE b/src/licensedcode/data/rules/odbl-1.0_46.RULE index 1bdb6aaf20b..ef64cf65860 100644 --- a/src/licensedcode/data/rules/odbl-1.0_46.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_46.RULE @@ -1,3 +1,13 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.ODbLv1 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + The database itself, and its related data are both licensed under the Open Data Commons Open Database License (ODbL) v1.0. diff --git a/src/licensedcode/data/rules/odbl-1.0_46.yml b/src/licensedcode/data/rules/odbl-1.0_46.yml deleted file mode 100644 index 8371b232575..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_46.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.ODbLv1 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_47.RULE b/src/licensedcode/data/rules/odbl-1.0_47.RULE index 97b87d32a30..08b6bd14532 100644 --- a/src/licensedcode/data/rules/odbl-1.0_47.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_47.RULE @@ -1,3 +1,11 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + The database itself, and its related data are both licensed under the Open Data Commons Open Database License (ODbL) v1.0. diff --git a/src/licensedcode/data/rules/odbl-1.0_47.yml b/src/licensedcode/data/rules/odbl-1.0_47.yml deleted file mode 100644 index a69a7ebb71f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_48.RULE b/src/licensedcode/data/rules/odbl-1.0_48.RULE index 5c79208acb9..6331540629e 100644 --- a/src/licensedcode/data/rules/odbl-1.0_48.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Open Data Commons Open Database License (ODbL) v1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_48.yml b/src/licensedcode/data/rules/odbl-1.0_48.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_49.RULE b/src/licensedcode/data/rules/odbl-1.0_49.RULE index 104031b5821..cdd71e8a904 100644 --- a/src/licensedcode/data/rules/odbl-1.0_49.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_49.RULE @@ -1,3 +1,11 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + This database is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/. The contents comes from many places in the Debian ecosystem, and may be covered by its own diff --git a/src/licensedcode/data/rules/odbl-1.0_49.yml b/src/licensedcode/data/rules/odbl-1.0_49.yml deleted file mode 100644 index a69a7ebb71f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_5.RULE b/src/licensedcode/data/rules/odbl-1.0_5.RULE index 841583e4d58..8f25f338efe 100644 --- a/src/licensedcode/data/rules/odbl-1.0_5.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/Open_Database_License +--- + https://en.wikipedia.org/wiki/Open_Database_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_5.yml b/src/licensedcode/data/rules/odbl-1.0_5.yml deleted file mode 100644 index 4e3990d966c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/Open_Database_License diff --git a/src/licensedcode/data/rules/odbl-1.0_50.RULE b/src/licensedcode/data/rules/odbl-1.0_50.RULE index 711e80a3e20..15a179229fe 100644 --- a/src/licensedcode/data/rules/odbl-1.0_50.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_50.RULE @@ -1,2 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/odbl/1.0 +--- + This database is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_50.yml b/src/licensedcode/data/rules/odbl-1.0_50.yml deleted file mode 100644 index a69a7ebb71f..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_51.RULE b/src/licensedcode/data/rules/odbl-1.0_51.RULE index 26ddc8adaf5..48f36ed5a0a 100644 --- a/src/licensedcode/data/rules/odbl-1.0_51.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ODC Open Database License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_51.yml b/src/licensedcode/data/rules/odbl-1.0_51.yml deleted file mode 100644 index 821ab28036b..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_52.RULE b/src/licensedcode/data/rules/odbl-1.0_52.RULE index 7fdf45d16af..a65d9526f0c 100644 --- a/src/licensedcode/data/rules/odbl-1.0_52.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_52.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ODbL-1.0 ODC Open Database License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_52.yml b/src/licensedcode/data/rules/odbl-1.0_52.yml deleted file mode 100644 index 821ab28036b..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_53.RULE b/src/licensedcode/data/rules/odbl-1.0_53.RULE index a8b30cedfd4..2d26f0f3545 100644 --- a/src/licensedcode/data/rules/odbl-1.0_53.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_53.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Data Commons Open Database License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_53.yml b/src/licensedcode/data/rules/odbl-1.0_53.yml deleted file mode 100644 index bfe320aab76..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_53.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odbl-1.0_54.RULE b/src/licensedcode/data/rules/odbl-1.0_54.RULE index 84474ce54bf..ef8010905f5 100644 --- a/src/licensedcode/data/rules/odbl-1.0_54.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_54.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Data Commons Open Database License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_54.yml b/src/licensedcode/data/rules/odbl-1.0_54.yml deleted file mode 100644 index bfe320aab76..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_54.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odbl-1.0_55.RULE b/src/licensedcode/data/rules/odbl-1.0_55.RULE index a4acd399492..6a6b7c7cefb 100644 --- a/src/licensedcode/data/rules/odbl-1.0_55.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_55.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ODbL-1.0 Open Data Commons Open Database License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_55.yml b/src/licensedcode/data/rules/odbl-1.0_55.yml deleted file mode 100644 index bfe320aab76..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_55.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odbl-1.0_56.RULE b/src/licensedcode/data/rules/odbl-1.0_56.RULE index 185cacf36d2..8088f0239e5 100644 --- a/src/licensedcode/data/rules/odbl-1.0_56.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_56.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Data Commons Open Database License v1.0 ODbL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_56.yml b/src/licensedcode/data/rules/odbl-1.0_56.yml deleted file mode 100644 index bfe320aab76..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_56.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odbl-1.0_57.RULE b/src/licensedcode/data/rules/odbl-1.0_57.RULE index 0c8cda2311e..1b5274f31f8 100644 --- a/src/licensedcode/data/rules/odbl-1.0_57.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_57.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ODbL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_57.yml b/src/licensedcode/data/rules/odbl-1.0_57.yml deleted file mode 100644 index 99140f342de..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_57.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odbl-1.0_58.RULE b/src/licensedcode/data/rules/odbl-1.0_58.RULE index c030182328e..58bdc95576d 100644 --- a/src/licensedcode/data/rules/odbl-1.0_58.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_58.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Data Commons Open Database License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_58.yml b/src/licensedcode/data/rules/odbl-1.0_58.yml deleted file mode 100644 index 99140f342de..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_58.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odbl-1.0_59.RULE b/src/licensedcode/data/rules/odbl-1.0_59.RULE index e2bdde2d123..91ae13daed2 100644 --- a/src/licensedcode/data/rules/odbl-1.0_59.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_59.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ODbL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_59.yml b/src/licensedcode/data/rules/odbl-1.0_59.yml deleted file mode 100644 index 99140f342de..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_59.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odbl-1.0_6.RULE b/src/licensedcode/data/rules/odbl-1.0_6.RULE index efe378eab76..c07adbc83da 100644 --- a/src/licensedcode/data/rules/odbl-1.0_6.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/Open_Database_License +--- + http://en.wikipedia.org/wiki/Open_Database_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_6.yml b/src/licensedcode/data/rules/odbl-1.0_6.yml deleted file mode 100644 index ec1967cc963..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/Open_Database_License diff --git a/src/licensedcode/data/rules/odbl-1.0_60.RULE b/src/licensedcode/data/rules/odbl-1.0_60.RULE index ec1ed6d5a42..d3fcbf9493e 100644 --- a/src/licensedcode/data/rules/odbl-1.0_60.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_60.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ODbL-1.0 +--- + https://licenses.nuget.org/ODbL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_60.yml b/src/licensedcode/data/rules/odbl-1.0_60.yml deleted file mode 100644 index 0262e99b410..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ODbL-1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_61.RULE b/src/licensedcode/data/rules/odbl-1.0_61.RULE index 718b294a068..b788005aa12 100644 --- a/src/licensedcode/data/rules/odbl-1.0_61.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_61.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ODbL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_61.yml b/src/licensedcode/data/rules/odbl-1.0_61.yml deleted file mode 100644 index e1ec245683c..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_62.RULE b/src/licensedcode/data/rules/odbl-1.0_62.RULE index 13c48f95bee..332ffe955ca 100644 --- a/src/licensedcode/data/rules/odbl-1.0_62.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_62.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ODbL-1.0 +--- + {{ODbL-1.0}} https://spdx.org/licenses/ODbL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_62.yml b/src/licensedcode/data/rules/odbl-1.0_62.yml deleted file mode 100644 index 5575f28b784..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ODbL-1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_63.RULE b/src/licensedcode/data/rules/odbl-1.0_63.RULE index 027f3ff0408..ea81691d27a 100644 --- a/src/licensedcode/data/rules/odbl-1.0_63.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_63.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ODbL-1.0 +--- + LICENSE {{ODbL-1.0}} https://spdx.org/licenses/ODbL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_63.yml b/src/licensedcode/data/rules/odbl-1.0_63.yml deleted file mode 100644 index 5575f28b784..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ODbL-1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_7.RULE b/src/licensedcode/data/rules/odbl-1.0_7.RULE index 8da3b6cec7a..658009ae82b 100644 --- a/src/licensedcode/data/rules/odbl-1.0_7.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Open Database License (ODBL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_7.yml b/src/licensedcode/data/rules/odbl-1.0_7.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_8.RULE b/src/licensedcode/data/rules/odbl-1.0_8.RULE index f9bb36c8762..e2c3528a75e 100644 --- a/src/licensedcode/data/rules/odbl-1.0_8.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Open Database License \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_8.yml b/src/licensedcode/data/rules/odbl-1.0_8.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_9.RULE b/src/licensedcode/data/rules/odbl-1.0_9.RULE index b7d12cdf6f7..f533e16317c 100644 --- a/src/licensedcode/data/rules/odbl-1.0_9.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: odbl-1.0 +is_license_notice: yes +relevance: 100 +--- + OpenStreetMap data is now licensed under the Open Database License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_9.yml b/src/licensedcode/data/rules/odbl-1.0_9.yml deleted file mode 100644 index 966bd44b386..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odbl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_1.RULE b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_1.RULE index a58b1bede4e..f2943f9e03c 100644 --- a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_1.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: odbl-1.0 AND dbcl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/dbcl/1.0/ + - http://opendatacommons.org/licenses/odbl/1.0 +--- + dataset is made available under the Open Database License: http://opendatacommons.org/licenses/odbl/1.0/. Any rights in individual contents of the database are licensed under the Database Contents License: http://opendatacommons.org/licenses/dbcl/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_1.yml b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_1.yml deleted file mode 100644 index e12cbae3615..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 AND dbcl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/dbcl/1.0/ - - http://opendatacommons.org/licenses/odbl/1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_2.RULE b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_2.RULE index 501c9c58295..0e4de188316 100644 --- a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_2.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_2.RULE @@ -1,2 +1,11 @@ +--- +license_expression: odbl-1.0 AND dbcl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/dbcl/ + - http://opendatacommons.org/licenses/odbl +--- + Data Content of this folder is made available under Open Database License whose full text can be found at http://opendatacommons.org/licenses/odbl/. Any rights in individual contents of the database are licensed under the Database Contents License whose text can be found http://opendatacommons.org/licenses/dbcl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_2.yml b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_2.yml deleted file mode 100644 index cee560a2906..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 AND dbcl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/dbcl/ - - http://opendatacommons.org/licenses/odbl diff --git a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_3.RULE b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_3.RULE index 7d6231c0eeb..bea4dcac3f8 100644 --- a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_3.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 AND dbcl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/dbcl/ + - http://opendatacommons.org/licenses/odbl +--- + Content of this folder is made available under Open Database License whose full text can be found at http://opendatacommons.org/licenses/odbl/. Any rights in individual contents of the database are licensed under the Database Contents License whose text can be found http://opendatacommons.org/licenses/dbcl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_3.yml b/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_3.yml deleted file mode 100644 index cee560a2906..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_and_dbcl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 AND dbcl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/dbcl/ - - http://opendatacommons.org/licenses/odbl diff --git a/src/licensedcode/data/rules/odbl-1.0_url_1.RULE b/src/licensedcode/data/rules/odbl-1.0_url_1.RULE index 427c8cffb2c..80b4e9e5e8b 100644 --- a/src/licensedcode/data/rules/odbl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/odbl-1.0 +--- + https://spdx.org/licenses/odbl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_url_1.yml b/src/licensedcode/data/rules/odbl-1.0_url_1.yml deleted file mode 100644 index 8787eada646..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/odbl-1.0 diff --git a/src/licensedcode/data/rules/odbl-1.0_url_2.RULE b/src/licensedcode/data/rules/odbl-1.0_url_2.RULE index d00365e83de..3f11c6cdadb 100644 --- a/src/licensedcode/data/rules/odbl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/odbl-1.0.html +--- + https://spdx.org/licenses/odbl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_url_2.yml b/src/licensedcode/data/rules/odbl-1.0_url_2.yml deleted file mode 100644 index c6c4ea5de88..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/odbl-1.0.html diff --git a/src/licensedcode/data/rules/odbl-1.0_url_badge.RULE b/src/licensedcode/data/rules/odbl-1.0_url_badge.RULE index d2001ca1859..d1d2b64d358 100644 --- a/src/licensedcode/data/rules/odbl-1.0_url_badge.RULE +++ b/src/licensedcode/data/rules/odbl-1.0_url_badge.RULE @@ -1 +1,11 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://img.shields.io/badge/License-ODbL-brightgreen.svg + - https://opendatacommons.org/licenses/odbl +--- + [![License: ODbL](https://img.shields.io/badge/License-ODbL-brightgreen.svg)](https://opendatacommons.org/licenses/odbl/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odbl-1.0_url_badge.yml b/src/licensedcode/data/rules/odbl-1.0_url_badge.yml deleted file mode 100644 index a5b1530a769..00000000000 --- a/src/licensedcode/data/rules/odbl-1.0_url_badge.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://img.shields.io/badge/License-ODbL-brightgreen.svg - - https://opendatacommons.org/licenses/odbl diff --git a/src/licensedcode/data/rules/odc-by-1.0_1.RULE b/src/licensedcode/data/rules/odc-by-1.0_1.RULE index 416cf884c3a..80dff9a5c73 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_1.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution License (ODC-By) You are free to share, create, and adapt, as long as you attribute the data source. -Attribution License (ODC-By) \ No newline at end of file +Attribution License (ODC-By) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_1.yml b/src/licensedcode/data/rules/odc-by-1.0_1.yml deleted file mode 100644 index 38b89b178ac..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odc-by-1.0_10.RULE b/src/licensedcode/data/rules/odc-by-1.0_10.RULE index 69d77c2e036..eb3b7bb17fa 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_10.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: odc-by-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ODC-By-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_10.yml b/src/licensedcode/data/rules/odc-by-1.0_10.yml deleted file mode 100644 index d448c585674..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odc-by-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odc-by-1.0_11.RULE b/src/licensedcode/data/rules/odc-by-1.0_11.RULE index 69906738462..ef36f3e6bb0 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_11.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ODC-By-1.0 +--- + https://licenses.nuget.org/ODC-By-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_11.yml b/src/licensedcode/data/rules/odc-by-1.0_11.yml deleted file mode 100644 index 5fc54a169e7..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ODC-By-1.0 diff --git a/src/licensedcode/data/rules/odc-by-1.0_12.RULE b/src/licensedcode/data/rules/odc-by-1.0_12.RULE index 7f01d7b1013..153e4372770 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_12.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ODC-By-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_12.yml b/src/licensedcode/data/rules/odc-by-1.0_12.yml deleted file mode 100644 index 38b89b178ac..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odc-by-1.0_13.RULE b/src/licensedcode/data/rules/odc-by-1.0_13.RULE index 8f4c3f26d15..ff763f70710 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_13.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ODC-By-1.0 +--- + LICENSE {{ODC-By-1.0}} https://spdx.org/licenses/ODC-By-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_13.yml b/src/licensedcode/data/rules/odc-by-1.0_13.yml deleted file mode 100644 index bd3d02cb86f..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ODC-By-1.0 diff --git a/src/licensedcode/data/rules/odc-by-1.0_14.RULE b/src/licensedcode/data/rules/odc-by-1.0_14.RULE index 6bb22e821ee..1154f09b4de 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_14.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ODC-By-1.0 +--- + {{ODC-By-1.0}} https://spdx.org/licenses/ODC-By-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_14.yml b/src/licensedcode/data/rules/odc-by-1.0_14.yml deleted file mode 100644 index bd3d02cb86f..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ODC-By-1.0 diff --git a/src/licensedcode/data/rules/odc-by-1.0_2.RULE b/src/licensedcode/data/rules/odc-by-1.0_2.RULE index 5347763f858..df1d2c9abfc 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_2.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + Attribution License (ODC-By) -You are free to share, create, and adapt, as long as you attribute the data source. \ No newline at end of file +You are free to share, create, and adapt, as long as you attribute the data source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_2.yml b/src/licensedcode/data/rules/odc-by-1.0_2.yml deleted file mode 100644 index 38b89b178ac..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odc-by-1.0_3.RULE b/src/licensedcode/data/rules/odc-by-1.0_3.RULE index 104ec33ae3f..18d41ca0849 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_3.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_3.RULE @@ -1 +1,7 @@ - Attribution License (ODC-By) \ No newline at end of file +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 100 +--- + + Attribution License (ODC-By) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_3.yml b/src/licensedcode/data/rules/odc-by-1.0_3.yml deleted file mode 100644 index 38b89b178ac..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odc-by-1.0_4.RULE b/src/licensedcode/data/rules/odc-by-1.0_4.RULE index afc65a8787b..680ed2717ac 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_4.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Data Commons Attribution License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_4.yml b/src/licensedcode/data/rules/odc-by-1.0_4.yml deleted file mode 100644 index fefcf391f4d..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odc-by-1.0_5.RULE b/src/licensedcode/data/rules/odc-by-1.0_5.RULE index d865608ce58..79a660835ed 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_5.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Data Commons Attribution License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_5.yml b/src/licensedcode/data/rules/odc-by-1.0_5.yml deleted file mode 100644 index fefcf391f4d..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odc-by-1.0_6.RULE b/src/licensedcode/data/rules/odc-by-1.0_6.RULE index 8793839b812..8c1f4fcb853 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_6.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ODC-By-1.0 Open Data Commons Attribution License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_6.yml b/src/licensedcode/data/rules/odc-by-1.0_6.yml deleted file mode 100644 index fefcf391f4d..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odc-by-1.0_7.RULE b/src/licensedcode/data/rules/odc-by-1.0_7.RULE index e3094efa374..2b897a47c83 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_7.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Data Commons Attribution License v1.0 ODC-By-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_7.yml b/src/licensedcode/data/rules/odc-by-1.0_7.yml deleted file mode 100644 index fefcf391f4d..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odc-by-1.0_8.RULE b/src/licensedcode/data/rules/odc-by-1.0_8.RULE index 08a9ccb2c5d..764efb11846 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_8.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: odc-by-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ODC-By-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_8.yml b/src/licensedcode/data/rules/odc-by-1.0_8.yml deleted file mode 100644 index d448c585674..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odc-by-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odc-by-1.0_9.RULE b/src/licensedcode/data/rules/odc-by-1.0_9.RULE index 37eebb12231..a18a5cc0756 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_9.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: odc-by-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Data Commons Attribution License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_9.yml b/src/licensedcode/data/rules/odc-by-1.0_9.yml deleted file mode 100644 index d448c585674..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odc-by-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/odc-by-1.0_url_1.RULE b/src/licensedcode/data/rules/odc-by-1.0_url_1.RULE index 94fdb12e458..a16fb4d7761 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/odc-by-1.0 +--- + https://spdx.org/licenses/odc-by-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_url_1.yml b/src/licensedcode/data/rules/odc-by-1.0_url_1.yml deleted file mode 100644 index c0a75b00688..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/odc-by-1.0 diff --git a/src/licensedcode/data/rules/odc-by-1.0_url_2.RULE b/src/licensedcode/data/rules/odc-by-1.0_url_2.RULE index 9668f1a538c..ba4b8b12191 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/odc-by-1.0.html +--- + https://spdx.org/licenses/odc-by-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_url_2.yml b/src/licensedcode/data/rules/odc-by-1.0_url_2.yml deleted file mode 100644 index 72bfcc22649..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/odc-by-1.0.html diff --git a/src/licensedcode/data/rules/odc-by-1.0_url_badge.RULE b/src/licensedcode/data/rules/odc-by-1.0_url_badge.RULE index be03be8fc48..2abd6592c92 100644 --- a/src/licensedcode/data/rules/odc-by-1.0_url_badge.RULE +++ b/src/licensedcode/data/rules/odc-by-1.0_url_badge.RULE @@ -1 +1,9 @@ +--- +license_expression: odc-by-1.0 +is_license_reference: yes +ignorable_urls: + - https://img.shields.io/badge/License-ODC_BY-brightgreen.svg + - https://opendatacommons.org/licenses/by +--- + [![License: Open Data Commons Attribution](https://img.shields.io/badge/License-ODC_BY-brightgreen.svg)](https://opendatacommons.org/licenses/by/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/odc-by-1.0_url_badge.yml b/src/licensedcode/data/rules/odc-by-1.0_url_badge.yml deleted file mode 100644 index 887301936a4..00000000000 --- a/src/licensedcode/data/rules/odc-by-1.0_url_badge.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odc-by-1.0 -is_license_reference: yes -ignorable_urls: - - https://img.shields.io/badge/License-ODC_BY-brightgreen.svg - - https://opendatacommons.org/licenses/by diff --git a/src/licensedcode/data/rules/odl.RULE b/src/licensedcode/data/rules/odl.RULE index e0bcfae8dad..0b3ec8fd77d 100644 --- a/src/licensedcode/data/rules/odl.RULE +++ b/src/licensedcode/data/rules/odl.RULE @@ -1 +1,9 @@ -http://dmoz.org/become_an_editor +--- +license_expression: odl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://dmoz.org/become_an_editor +--- + +http://dmoz.org/become_an_editor \ No newline at end of file diff --git a/src/licensedcode/data/rules/odl.yml b/src/licensedcode/data/rules/odl.yml deleted file mode 100644 index e33630f2f22..00000000000 --- a/src/licensedcode/data/rules/odl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://dmoz.org/become_an_editor diff --git a/src/licensedcode/data/rules/odl_1.RULE b/src/licensedcode/data/rules/odl_1.RULE index f9d9d909f52..7f9b661db63 100644 --- a/src/licensedcode/data/rules/odl_1.RULE +++ b/src/licensedcode/data/rules/odl_1.RULE @@ -1 +1,9 @@ +--- +license_expression: odl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.dmoz.org/license.html +--- + http://www.dmoz.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/odl_1.yml b/src/licensedcode/data/rules/odl_1.yml deleted file mode 100644 index 5ca85e5fbf9..00000000000 --- a/src/licensedcode/data/rules/odl_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: odl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.dmoz.org/license.html diff --git a/src/licensedcode/data/rules/odmg_1.RULE b/src/licensedcode/data/rules/odmg_1.RULE index 8efbe89f456..84fdee3c848 100644 --- a/src/licensedcode/data/rules/odmg_1.RULE +++ b/src/licensedcode/data/rules/odmg_1.RULE @@ -1 +1,7 @@ +--- +license_expression: odmg +is_license_notice: yes +relevance: 100 +--- + Licensed under the {{ODMG}} License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/odmg_1.yml b/src/licensedcode/data/rules/odmg_1.yml deleted file mode 100644 index 93a48ac6746..00000000000 --- a/src/licensedcode/data/rules/odmg_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: odmg -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/odmg_2.RULE b/src/licensedcode/data/rules/odmg_2.RULE index 1aa4fe5e4ce..f2417f92cbe 100644 --- a/src/licensedcode/data/rules/odmg_2.RULE +++ b/src/licensedcode/data/rules/odmg_2.RULE @@ -1,2 +1,12 @@ +--- +license_expression: odmg +is_license_text: yes +notes: See http://www.odmg.org/ +ignorable_authors: + - E. Wray Johnson +ignorable_urls: + - http://www.odmg.org/ +--- + LICENSE AGREEMENT Redistribution of this software is permitted provided that the following conditions are met: Redistributions of source or binary code formats must retain the above copyright notice. Redistribution in any product and all advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes copyrighted software developed by E. Wray Johnson for use and distribution by the Object Data Management Group (http://www.odmg.org/)." NO-NONSENSE DISCLAIMER THIS SOFTWARE IS FREE AND PROVIDED "AS-IS" BY THE AUTHOR E. WRAY JOHNSON WHO ASSUMES LIABILITY TO THE EXTENT OF THE AMOUNT THAT IS HEREBY BEING CHARGED FOR THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/odmg_2.yml b/src/licensedcode/data/rules/odmg_2.yml deleted file mode 100644 index 97320fea2c1..00000000000 --- a/src/licensedcode/data/rules/odmg_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: odmg -is_license_text: yes -notes: See http://www.odmg.org/ -ignorable_authors: - - E. Wray Johnson -ignorable_urls: - - http://www.odmg.org/ diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_1.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_1.RULE index de83e4e2605..b1f3ad5bea5 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.0 with no Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_1.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_1.yml deleted file mode 100644 index eb26330cd4a..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_10.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_10.RULE index 0ad94573ab6..f702150116a 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_10.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.0-no-RFN +--- + LICENSE {{OFL-1.0-no-RFN}} https://spdx.org/licenses/OFL-1.0-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_10.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_10.yml deleted file mode 100644 index 5f43e82bc21..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.0-no-RFN diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_11.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_11.RULE index 729a9089943..cdb9855b6eb 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_11.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.0-no-RFN +--- + {{OFL-1.0-no-RFN}} https://spdx.org/licenses/OFL-1.0-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_11.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_11.yml deleted file mode 100644 index 5f43e82bc21..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.0-no-RFN diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_2.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_2.RULE index 48daac1e783..75eab46c2af 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SIL Open Font License 1.0 with no Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_2.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_2.yml deleted file mode 100644 index eb26330cd4a..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_3.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_3.RULE index d1e290a8414..006345a7808 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_3.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OFL-1.0-no-RFN SIL Open Font License 1.0 with no Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_3.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_3.yml deleted file mode 100644 index eb26330cd4a..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_4.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_4.RULE index 8cfc90f64da..86eaa426499 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_4.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.0 with no Reserved Font Name OFL-1.0-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_4.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_4.yml deleted file mode 100644 index eb26330cd4a..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_5.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_5.RULE index e084667fd6e..901a9ac0155 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_5.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OFL-1.0-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_5.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_5.yml deleted file mode 100644 index 3b1d86e6fea..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_6.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_6.RULE index a9de5e0130c..b8e71042270 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_6.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SIL Open Font License 1.0 with no Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_6.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_6.yml deleted file mode 100644 index 3b1d86e6fea..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_7.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_7.RULE index 7bb16804f52..8893cf94ded 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_7.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OFL-1.0-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_7.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_7.yml deleted file mode 100644 index 3b1d86e6fea..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_8.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_8.RULE index 45f0c0b3d88..5bd39f5c5e4 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_8.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OFL-1.0-no-RFN +--- + https://licenses.nuget.org/OFL-1.0-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_8.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_8.yml deleted file mode 100644 index 4e5c808ff3c..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OFL-1.0-no-RFN diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_9.RULE b/src/licensedcode/data/rules/ofl-1.0-no-rfn_9.RULE index 1dcb239adbd..08c1d0892a6 100644 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_9.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-no-rfn_9.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.0-no-rfn +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OFL-1.0-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-no-rfn_9.yml b/src/licensedcode/data/rules/ofl-1.0-no-rfn_9.yml deleted file mode 100644 index 5ca862c5817..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-no-rfn_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0-no-rfn -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_1.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_1.RULE index 953f0cac8d7..95af24c52c4 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.0 with Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_1.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_1.yml deleted file mode 100644 index 55e8d935927..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_10.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_10.RULE index d73555fc59c..5c681b502e3 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_10.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.0-RFN +--- + {{OFL-1.0-RFN}} https://spdx.org/licenses/OFL-1.0-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_10.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_10.yml deleted file mode 100644 index c93602c69c4..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.0-RFN diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_11.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_11.RULE index 7ddf8a2e457..4d575a2ba2c 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_11.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.0-RFN +--- + LICENSE {{OFL-1.0-RFN}} https://spdx.org/licenses/OFL-1.0-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_11.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_11.yml deleted file mode 100644 index c93602c69c4..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.0-RFN diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_2.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_2.RULE index fd753e34eca..939e211399c 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SIL Open Font License 1.0 with Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_2.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_2.yml deleted file mode 100644 index 55e8d935927..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_3.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_3.RULE index 3c4685976f1..99f44f0f93d 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_3.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OFL-1.0-RFN SIL Open Font License 1.0 with Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_3.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_3.yml deleted file mode 100644 index 55e8d935927..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_4.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_4.RULE index 5c117b2ff15..45403711ffc 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_4.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.0 with Reserved Font Name OFL-1.0-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_4.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_4.yml deleted file mode 100644 index 55e8d935927..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_5.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_5.RULE index e7962e45f74..59a384f89b0 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_5.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OFL-1.0-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_5.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_5.yml deleted file mode 100644 index 691dcc7ff7b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_6.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_6.RULE index cf35a82dc64..8f8e130676f 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_6.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SIL Open Font License 1.0 with Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_6.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_6.yml deleted file mode 100644 index 691dcc7ff7b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_7.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_7.RULE index 13083cd9c1f..63b2ef92ff4 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_7.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OFL-1.0-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_7.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_7.yml deleted file mode 100644 index 691dcc7ff7b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_8.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_8.RULE index cfeb2828b32..ab69d0b17e4 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_8.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OFL-1.0-RFN +--- + https://licenses.nuget.org/OFL-1.0-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_8.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_8.yml deleted file mode 100644 index e17cb157def..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OFL-1.0-RFN diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_9.RULE b/src/licensedcode/data/rules/ofl-1.0-rfn_9.RULE index e89c3e1481e..93397b167f3 100644 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_9.RULE +++ b/src/licensedcode/data/rules/ofl-1.0-rfn_9.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.0-rfn +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OFL-1.0-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0-rfn_9.yml b/src/licensedcode/data/rules/ofl-1.0-rfn_9.yml deleted file mode 100644 index 1c47c3c8d5c..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0-rfn_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0-rfn -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0.RULE b/src/licensedcode/data/rules/ofl-1.0.RULE index eda4939074b..e6051952d97 100644 --- a/src/licensedcode/data/rules/ofl-1.0.RULE +++ b/src/licensedcode/data/rules/ofl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/OFL-1.0#licenseText +--- + http://spdx.org/licenses/OFL-1.0#licenseText \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0.yml b/src/licensedcode/data/rules/ofl-1.0.yml deleted file mode 100644 index a28096ab17b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/OFL-1.0#licenseText diff --git a/src/licensedcode/data/rules/ofl-1.0_1.RULE b/src/licensedcode/data/rules/ofl-1.0_1.RULE index 2297e4c5789..66a01fc3457 100644 --- a/src/licensedcode/data/rules/ofl-1.0_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web +--- + http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_1.yml b/src/licensedcode/data/rules/ofl-1.0_1.yml deleted file mode 100644 index 29c84a2234e..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL10_web diff --git a/src/licensedcode/data/rules/ofl-1.0_10.RULE b/src/licensedcode/data/rules/ofl-1.0_10.RULE index 5d9a43e19b6..62ed9f726c8 100644 --- a/src/licensedcode/data/rules/ofl-1.0_10.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +--- + Open Font License, v 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_10.yml b/src/licensedcode/data/rules/ofl-1.0_10.yml deleted file mode 100644 index 42fe14da177..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_11.RULE b/src/licensedcode/data/rules/ofl-1.0_11.RULE index cc13397a557..4f9a0334ad1 100644 --- a/src/licensedcode/data/rules/ofl-1.0_11.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.0. No modification of the license is permitted, only verbatim copy is allowed. This license is copied below, and is also available with a FAQ at: diff --git a/src/licensedcode/data/rules/ofl-1.0_11.yml b/src/licensedcode/data/rules/ofl-1.0_11.yml deleted file mode 100644 index c442e4c5e18..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.0_12.RULE b/src/licensedcode/data/rules/ofl-1.0_12.RULE index 4e16c33636c..b66003d46e7 100644 --- a/src/licensedcode/data/rules/ofl-1.0_12.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_12.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ofl-1.0 +is_license_notice: yes +relevance: 100 +--- + This Font Software is licensed under the SIL Open Font License, Version 1.0. No modification of the license is permitted, only verbatim copy is allowed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_12.yml b/src/licensedcode/data/rules/ofl-1.0_12.yml deleted file mode 100644 index 8eb20ba8896..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_13.RULE b/src/licensedcode/data/rules/ofl-1.0_13.RULE index f6821b59c56..031ad373678 100644 --- a/src/licensedcode/data/rules/ofl-1.0_13.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OFL-1.0 SIL Open Font License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_13.yml b/src/licensedcode/data/rules/ofl-1.0_13.yml deleted file mode 100644 index 78cbd72aa7c..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_14.RULE b/src/licensedcode/data/rules/ofl-1.0_14.RULE index 44a38f13854..cc551c9200f 100644 --- a/src/licensedcode/data/rules/ofl-1.0_14.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SIL Open Font License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_14.yml b/src/licensedcode/data/rules/ofl-1.0_14.yml deleted file mode 100644 index 9fed14ca6bf..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0_15.RULE b/src/licensedcode/data/rules/ofl-1.0_15.RULE index 2f9632873e5..28421d2148e 100644 --- a/src/licensedcode/data/rules/ofl-1.0_15.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.0 OFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_15.yml b/src/licensedcode/data/rules/ofl-1.0_15.yml deleted file mode 100644 index 9fed14ca6bf..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0_16.RULE b/src/licensedcode/data/rules/ofl-1.0_16.RULE index 8646a9b058c..9f6f3ce8085 100644 --- a/src/licensedcode/data/rules/ofl-1.0_16.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_16.yml b/src/licensedcode/data/rules/ofl-1.0_16.yml deleted file mode 100644 index 451f04d1281..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0_17.RULE b/src/licensedcode/data/rules/ofl-1.0_17.RULE index 2d8f0a75779..11dec1684cc 100644 --- a/src/licensedcode/data/rules/ofl-1.0_17.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SIL Open Font License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_17.yml b/src/licensedcode/data/rules/ofl-1.0_17.yml deleted file mode 100644 index 451f04d1281..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0_18.RULE b/src/licensedcode/data/rules/ofl-1.0_18.RULE index 0d26238544f..294df958fc7 100644 --- a/src/licensedcode/data/rules/ofl-1.0_18.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_18.yml b/src/licensedcode/data/rules/ofl-1.0_18.yml deleted file mode 100644 index 451f04d1281..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.0_19.RULE b/src/licensedcode/data/rules/ofl-1.0_19.RULE index dec4c8259a2..a5f9af5a462 100644 --- a/src/licensedcode/data/rules/ofl-1.0_19.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OFL-1.0 +--- + https://licenses.nuget.org/OFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_19.yml b/src/licensedcode/data/rules/ofl-1.0_19.yml deleted file mode 100644 index c294444c398..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OFL-1.0 diff --git a/src/licensedcode/data/rules/ofl-1.0_2.RULE b/src/licensedcode/data/rules/ofl-1.0_2.RULE index aca65934176..a3e9261415f 100644 --- a/src/licensedcode/data/rules/ofl-1.0_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.0 +is_license_notice: yes +relevance: 95 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.0. No modification of the license is permitted, only verbatim copy is allowed. This license is copied below, and is also available with a FAQ at: diff --git a/src/licensedcode/data/rules/ofl-1.0_2.yml b/src/licensedcode/data/rules/ofl-1.0_2.yml deleted file mode 100644 index 1508f3b785b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_notice: yes -relevance: 95 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.0_20.RULE b/src/licensedcode/data/rules/ofl-1.0_20.RULE index b57b6d1b835..b5ab29887da 100644 --- a/src/licensedcode/data/rules/ofl-1.0_20.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_20.yml b/src/licensedcode/data/rules/ofl-1.0_20.yml deleted file mode 100644 index 42fe14da177..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_21.RULE b/src/licensedcode/data/rules/ofl-1.0_21.RULE index 38dd05ba091..47900af8dff 100644 --- a/src/licensedcode/data/rules/ofl-1.0_21.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.0 +--- + {{OFL-1.0}} https://spdx.org/licenses/OFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_21.yml b/src/licensedcode/data/rules/ofl-1.0_21.yml deleted file mode 100644 index f246843bffb..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.0 diff --git a/src/licensedcode/data/rules/ofl-1.0_22.RULE b/src/licensedcode/data/rules/ofl-1.0_22.RULE index d73dd30c4b2..bab854a25b9 100644 --- a/src/licensedcode/data/rules/ofl-1.0_22.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.0 +--- + LICENSE {{OFL-1.0}} https://spdx.org/licenses/OFL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_22.yml b/src/licensedcode/data/rules/ofl-1.0_22.yml deleted file mode 100644 index f246843bffb..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.0 diff --git a/src/licensedcode/data/rules/ofl-1.0_3.RULE b/src/licensedcode/data/rules/ofl-1.0_3.RULE index 2718b8b35c3..2fa350a91fb 100644 --- a/src/licensedcode/data/rules/ofl-1.0_3.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_3.yml b/src/licensedcode/data/rules/ofl-1.0_3.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.0_4.RULE b/src/licensedcode/data/rules/ofl-1.0_4.RULE index c8204898880..91e903360a4 100644 --- a/src/licensedcode/data/rules/ofl-1.0_4.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + SIL Open Font License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_4.yml b/src/licensedcode/data/rules/ofl-1.0_4.yml deleted file mode 100644 index 78cbd72aa7c..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_5.RULE b/src/licensedcode/data/rules/ofl-1.0_5.RULE index 538a0094d37..83cb72208d5 100644 --- a/src/licensedcode/data/rules/ofl-1.0_5.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_5.RULE @@ -1 +1,7 @@ -published under the SIL Open Font License (OFL) \ No newline at end of file +--- +license_expression: ofl-1.0 +is_license_notice: yes +relevance: 100 +--- + +published under the SIL Open Font License (OFL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_5.yml b/src/licensedcode/data/rules/ofl-1.0_5.yml deleted file mode 100644 index 8eb20ba8896..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_6.RULE b/src/licensedcode/data/rules/ofl-1.0_6.RULE index 87575994913..6eeb0ac511a 100644 --- a/src/licensedcode/data/rules/ofl-1.0_6.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://scripts.sil.org/OFL +--- + SIL OFL 1.1 License (https://scripts.sil.org/OFL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_6.yml b/src/licensedcode/data/rules/ofl-1.0_6.yml deleted file mode 100644 index 95ecf2146e9..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.0_7.RULE b/src/licensedcode/data/rules/ofl-1.0_7.RULE index 56890f4b09e..556533113ed 100644 --- a/src/licensedcode/data/rules/ofl-1.0_7.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +--- + the SIL OFL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_7.yml b/src/licensedcode/data/rules/ofl-1.0_7.yml deleted file mode 100644 index 42fe14da177..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_8.RULE b/src/licensedcode/data/rules/ofl-1.0_8.RULE index 834dccb66c1..eeec76de21b 100644 --- a/src/licensedcode/data/rules/ofl-1.0_8.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +--- + SIL Open Font License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_8.yml b/src/licensedcode/data/rules/ofl-1.0_8.yml deleted file mode 100644 index 42fe14da177..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_9.RULE b/src/licensedcode/data/rules/ofl-1.0_9.RULE index c2b92b5ea6a..41abbbd2777 100644 --- a/src/licensedcode/data/rules/ofl-1.0_9.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 100 +--- + Open Font License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_9.yml b/src/licensedcode/data/rules/ofl-1.0_9.yml deleted file mode 100644 index 42fe14da177..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_and_bitstream_1.RULE b/src/licensedcode/data/rules/ofl-1.0_and_bitstream_1.RULE index f0d23e48fcc..21cf4217d6e 100644 --- a/src/licensedcode/data/rules/ofl-1.0_and_bitstream_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_and_bitstream_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.0 AND bitstream +is_license_reference: yes +relevance: 100 +--- + SIL OFL, v1.1 + Bitstream License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_and_bitstream_1.yml b/src/licensedcode/data/rules/ofl-1.0_and_bitstream_1.yml deleted file mode 100644 index 4dce7e80944..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_and_bitstream_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.0 AND bitstream -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.0_url_1.RULE b/src/licensedcode/data/rules/ofl-1.0_url_1.RULE index 8c5e2806077..ffea3015791 100644 --- a/src/licensedcode/data/rules/ofl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ofl-1.0 +--- + https://spdx.org/licenses/ofl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_url_1.yml b/src/licensedcode/data/rules/ofl-1.0_url_1.yml deleted file mode 100644 index 935dd695683..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ofl-1.0 diff --git a/src/licensedcode/data/rules/ofl-1.0_url_2.RULE b/src/licensedcode/data/rules/ofl-1.0_url_2.RULE index c952b3fc76b..922d388a8e8 100644 --- a/src/licensedcode/data/rules/ofl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ofl-1.0.html +--- + https://spdx.org/licenses/ofl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_url_2.yml b/src/licensedcode/data/rules/ofl-1.0_url_2.yml deleted file mode 100644 index 8047fc458b6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ofl-1.0.html diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_1.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_1.RULE index 29a88fe4806..ee9c27d9d0b 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.1 with no Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_1.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_1.yml deleted file mode 100644 index c8c3529f060..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_10.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_10.RULE index b168b7e245f..078c81a3dd7 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_10.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OFL-1.1-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_10.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_10.yml deleted file mode 100644 index 3dce6624949..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_11.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_11.RULE index b41d907d3b6..1638f5b65dc 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_11.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.1-no-RFN +--- + LICENSE {{OFL-1.1-no-RFN}} https://spdx.org/licenses/OFL-1.1-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_11.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_11.yml deleted file mode 100644 index 6c3e81c028d..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.1-no-RFN diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_12.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_12.RULE index b11626867e7..9e839c74ad1 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_12.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.1-no-RFN +--- + {{OFL-1.1-no-RFN}} https://spdx.org/licenses/OFL-1.1-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_12.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_12.yml deleted file mode 100644 index 6c3e81c028d..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.1-no-RFN diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_2.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_2.RULE index 48af704bdf6..81098f49028 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SIL Open Font License 1.1 with no Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_2.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_2.yml deleted file mode 100644 index c8c3529f060..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_3.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_3.RULE index ce37ef075c0..b6d277173c0 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_3.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OFL-1.1-no-RFN SIL Open Font License 1.1 with no Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_3.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_3.yml deleted file mode 100644 index c8c3529f060..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_4.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_4.RULE index 7fb7b3495a0..9506db851b0 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_4.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.1 with no Reserved Font Name OFL-1.1-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_4.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_4.yml deleted file mode 100644 index c8c3529f060..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_5.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_5.RULE index c9e3c74d81e..57638563244 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_5.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OFL-1.1-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_5.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_5.yml deleted file mode 100644 index 24b1814bc2f..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_6.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_6.RULE index 914f2e033c2..f3465b2e186 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_6.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SIL Open Font License 1.1 with no Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_6.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_6.yml deleted file mode 100644 index 24b1814bc2f..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_7.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_7.RULE index 2e371323754..ed8b45c2a92 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_7.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OFL-1.1-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_7.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_7.yml deleted file mode 100644 index 24b1814bc2f..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_8.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_8.RULE index 993f56827ad..eef976d191a 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_8.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OFL-1.1-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_8.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_8.yml deleted file mode 100644 index 2b4ae8757f1..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_9.RULE b/src/licensedcode/data/rules/ofl-1.1-no-rfn_9.RULE index 25be78fbfca..946d2859a16 100644 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_9.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-no-rfn_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1-no-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OFL-1.1-no-RFN +--- + https://licenses.nuget.org/OFL-1.1-no-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-no-rfn_9.yml b/src/licensedcode/data/rules/ofl-1.1-no-rfn_9.yml deleted file mode 100644 index 34136be6c04..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-no-rfn_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1-no-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OFL-1.1-no-RFN diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_1.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_1.RULE index 811f20e13b1..052efc7667b 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.1 with Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_1.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_1.yml deleted file mode 100644 index 4a3bec78bb7..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_10.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_10.RULE index 6cea51f87f9..d7e24cb8616 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_10.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.1-RFN +--- + LICENSE {{OFL-1.1-RFN}} https://spdx.org/licenses/OFL-1.1-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_10.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_10.yml deleted file mode 100644 index b4185191726..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.1-RFN diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_11.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_11.RULE index 47260da5ca4..ccdaca57fcd 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_11.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.1-RFN +--- + {{OFL-1.1-RFN}} https://spdx.org/licenses/OFL-1.1-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_11.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_11.yml deleted file mode 100644 index b4185191726..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.1-RFN diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_2.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_2.RULE index 7335458cb3e..b8fad02a0db 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SIL Open Font License 1.1 with Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_2.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_2.yml deleted file mode 100644 index 4a3bec78bb7..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_3.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_3.RULE index 3ac7b61e73e..4a93f01d377 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_3.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OFL-1.1-RFN SIL Open Font License 1.1 with Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_3.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_3.yml deleted file mode 100644 index 4a3bec78bb7..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_4.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_4.RULE index 32b06c512cf..7d305a1d012 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_4.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-rfn +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.1 with Reserved Font Name OFL-1.1-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_4.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_4.yml deleted file mode 100644 index 4a3bec78bb7..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_5.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_5.RULE index beaa373c340..d12dff1ec0f 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_5.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OFL-1.1-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_5.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_5.yml deleted file mode 100644 index 90c1c5c43dd..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_6.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_6.RULE index 144a8c58b88..702c61091bb 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_6.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SIL Open Font License 1.1 with Reserved Font Name \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_6.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_6.yml deleted file mode 100644 index 90c1c5c43dd..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_7.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_7.RULE index 57b7fde4e9e..cec423da2cb 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_7.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1-rfn +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OFL-1.1-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_7.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_7.yml deleted file mode 100644 index 90c1c5c43dd..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_8.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_8.RULE index 801fa013101..eb27cebe66e 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_8.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1-rfn +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OFL-1.1-RFN +--- + https://licenses.nuget.org/OFL-1.1-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_8.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_8.yml deleted file mode 100644 index ce694f67c9c..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OFL-1.1-RFN diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_9.RULE b/src/licensedcode/data/rules/ofl-1.1-rfn_9.RULE index d8bfb9e9e57..1715ee1c3c6 100644 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_9.RULE +++ b/src/licensedcode/data/rules/ofl-1.1-rfn_9.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1-rfn +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OFL-1.1-RFN \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1-rfn_9.yml b/src/licensedcode/data/rules/ofl-1.1-rfn_9.yml deleted file mode 100644 index 4d7e7827aa4..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1-rfn_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1-rfn -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1.RULE b/src/licensedcode/data/rules/ofl-1.1.RULE index fe220ffd88f..4ccd2a4b04f 100644 --- a/src/licensedcode/data/rules/ofl-1.1.RULE +++ b/src/licensedcode/data/rules/ofl-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web +--- + http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1.yml b/src/licensedcode/data/rules/ofl-1.1.yml deleted file mode 100644 index 83cfcb73dca..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web diff --git a/src/licensedcode/data/rules/ofl-1.1_1.RULE b/src/licensedcode/data/rules/ofl-1.1_1.RULE index 1bf3f37a55a..1f85be49269 100644 --- a/src/licensedcode/data/rules/ofl-1.1_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +--- + SIL Open Font License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_1.yml b/src/licensedcode/data/rules/ofl-1.1_1.yml deleted file mode 100644 index 6c65ce541e6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_10.RULE b/src/licensedcode/data/rules/ofl-1.1_10.RULE index d68acfa19a2..8e0d6cd7541 100644 --- a/src/licensedcode/data/rules/ofl-1.1_10.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_text: yes +ignorable_urls: + - http://scripts.sil.org/OFL +--- + with Reserved Font Name This Font Software is licensed under the SIL Open Font License, Version 1.1. diff --git a/src/licensedcode/data/rules/ofl-1.1_10.yml b/src/licensedcode/data/rules/ofl-1.1_10.yml deleted file mode 100644 index 9c2a72f62a6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ofl-1.1 -is_license_text: yes -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_11.RULE b/src/licensedcode/data/rules/ofl-1.1_11.RULE index 97ce0b84325..997dc5f14e3 100644 --- a/src/licensedcode/data/rules/ofl-1.1_11.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_11.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - OFL.txt +--- + Licensed under the SIL Open Font License 1.1 (see file OFL.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_11.yml b/src/licensedcode/data/rules/ofl-1.1_11.yml deleted file mode 100644 index e175cca4fa7..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - OFL.txt diff --git a/src/licensedcode/data/rules/ofl-1.1_12.RULE b/src/licensedcode/data/rules/ofl-1.1_12.RULE index 2e7d97afc92..d8860e02dc9 100644 --- a/src/licensedcode/data/rules/ofl-1.1_12.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/ofl +--- + https://choosealicense.com/licenses/ofl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_12.yml b/src/licensedcode/data/rules/ofl-1.1_12.yml deleted file mode 100644 index 3d337b40a77..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/ofl diff --git a/src/licensedcode/data/rules/ofl-1.1_13.RULE b/src/licensedcode/data/rules/ofl-1.1_13.RULE index e63b486f909..6f7e3a9b258 100644 --- a/src/licensedcode/data/rules/ofl-1.1_13.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_13.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +--- + STIX Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_13.yml b/src/licensedcode/data/rules/ofl-1.1_13.yml deleted file mode 100644 index 6c65ce541e6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_14.RULE b/src/licensedcode/data/rules/ofl-1.1_14.RULE index 3ff02d4dfd0..e5b8d89d22e 100644 --- a/src/licensedcode/data/rules/ofl-1.1_14.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_14.RULE @@ -1,2 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +minimum_coverage: 98 +ignorable_urls: + - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL + - http://www.stixfonts.org/user_license.html +--- + As a condition for receiving these fonts at no charge, each person downloading the fonts must agree to some simple license terms. The license is based on the SIL Open Font License . The SIL License is a free and open source license specifically designed for fonts and related software. The basic terms are that the recipient will not remove the copyright and trademark statements from the fonts and that, if the person decides to create a derivative work based on the STIX Fonts but incorporating some changes or enhancements, the derivative work ("Modified Version") will carry a different name. The copyright and trademark restrictions are part of the agreement between the STI Pub companies and the typeface designer. The "renaming" restriction results from the desire of the STI Pub companies to assure that the STIX Fonts will continue to function in a predictable fashion for all that use them. No copy of one or more of the individual Font typefaces that form the STIX Fonts(TM) set may be sold by itself, but other than this one restriction, licensees are free to sell the fonts either separately or as part of a package that combines other software or fonts with this font set. -http://www.stixfonts.org/user_license.html +http://www.stixfonts.org/user_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_14.yml b/src/licensedcode/data/rules/ofl-1.1_14.yml deleted file mode 100644 index bcbfeca8a8d..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -minimum_coverage: 98 -ignorable_urls: - - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL - - http://www.stixfonts.org/user_license.html diff --git a/src/licensedcode/data/rules/ofl-1.1_15.RULE b/src/licensedcode/data/rules/ofl-1.1_15.RULE index 0c43ebff364..578ce2f82a6 100644 --- a/src/licensedcode/data/rules/ofl-1.1_15.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_15.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +referenced_filenames: + - OFL.txt +ignorable_urls: + - http://scripts.sil.org/OFL +--- + % This Font Software is licensed under the SIL Open Font License, Version 1.1. % This license is in the accompanying file OFL.txt, and is also -% available with a FAQ at: http://scripts.sil.org/OFL. +% available with a FAQ at: http://scripts.sil.org/OFL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_15.yml b/src/licensedcode/data/rules/ofl-1.1_15.yml deleted file mode 100644 index 3aec33d54e9..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -referenced_filenames: - - OFL.txt -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_16.RULE b/src/licensedcode/data/rules/ofl-1.1_16.RULE index a3fa681f557..5a8b2bbb771 100644 --- a/src/licensedcode/data/rules/ofl-1.1_16.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_16.RULE @@ -1 +1,9 @@ -http://choosealicense.com/licenses/ofl +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/ofl +--- + +http://choosealicense.com/licenses/ofl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_16.yml b/src/licensedcode/data/rules/ofl-1.1_16.yml deleted file mode 100644 index 223911b2eaf..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/ofl diff --git a/src/licensedcode/data/rules/ofl-1.1_17.RULE b/src/licensedcode/data/rules/ofl-1.1_17.RULE index accdd7dc12a..c91555631a7 100644 --- a/src/licensedcode/data/rules/ofl-1.1_17.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_17.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/ofl-1.1 +--- + https://choosealicense.com/licenses/ofl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_17.yml b/src/licensedcode/data/rules/ofl-1.1_17.yml deleted file mode 100644 index 2a9e62ee9ec..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/ofl-1.1 diff --git a/src/licensedcode/data/rules/ofl-1.1_18.RULE b/src/licensedcode/data/rules/ofl-1.1_18.RULE index e0beb348425..9d41bcb35de 100644 --- a/src/licensedcode/data/rules/ofl-1.1_18.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_18.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/ofl-1.1 +--- + http://choosealicense.com/licenses/ofl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_18.yml b/src/licensedcode/data/rules/ofl-1.1_18.yml deleted file mode 100644 index 141f1cddf20..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/ofl-1.1 diff --git a/src/licensedcode/data/rules/ofl-1.1_19.RULE b/src/licensedcode/data/rules/ofl-1.1_19.RULE index fb865fbc3f8..1c8b4d567d8 100644 --- a/src/licensedcode/data/rules/ofl-1.1_19.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_19.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt +--- + http://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_19.yml b/src/licensedcode/data/rules/ofl-1.1_19.yml deleted file mode 100644 index 605396ecb85..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt diff --git a/src/licensedcode/data/rules/ofl-1.1_2.RULE b/src/licensedcode/data/rules/ofl-1.1_2.RULE index b12d4da286d..b03d2d6952c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web +--- + http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_2.yml b/src/licensedcode/data/rules/ofl-1.1_2.yml deleted file mode 100644 index 5984e0d359b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web diff --git a/src/licensedcode/data/rules/ofl-1.1_20.RULE b/src/licensedcode/data/rules/ofl-1.1_20.RULE index c1dc2d30484..912244b64d2 100644 --- a/src/licensedcode/data/rules/ofl-1.1_20.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_20.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + licensed under OFL 1.1, which is compatible with this library's license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_20.yml b/src/licensedcode/data/rules/ofl-1.1_20.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_21.RULE b/src/licensedcode/data/rules/ofl-1.1_21.RULE index b9764d0b5e8..983a13f7b37 100644 --- a/src/licensedcode/data/rules/ofl-1.1_21.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt +--- + licensed under OFL 1.1, which is compatible with this library's license. diff --git a/src/licensedcode/data/rules/ofl-1.1_21.yml b/src/licensedcode/data/rules/ofl-1.1_21.yml deleted file mode 100644 index 285fec1edf6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt diff --git a/src/licensedcode/data/rules/ofl-1.1_22.RULE b/src/licensedcode/data/rules/ofl-1.1_22.RULE index 54aba15fb44..c61c4c1082e 100644 --- a/src/licensedcode/data/rules/ofl-1.1_22.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://fontawesome.io/ + - http://scripts.sil.org/OFL +--- + All icons are taken from Font Awesome (http://fontawesome.io/) project. The Font Awesome font is licensed under the SIL OFL 1.1: - http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_22.yml b/src/licensedcode/data/rules/ofl-1.1_22.yml deleted file mode 100644 index f6ab478a89d..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://fontawesome.io/ - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_23.RULE b/src/licensedcode/data/rules/ofl-1.1_23.RULE index 172c8523065..a86f1ff085a 100644 --- a/src/licensedcode/data/rules/ofl-1.1_23.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_23.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +relevance: 100 +--- + License: SIL Open Font License, version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_23.yml b/src/licensedcode/data/rules/ofl-1.1_23.yml deleted file mode 100644 index c39b1887eff..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_24.RULE b/src/licensedcode/data/rules/ofl-1.1_24.RULE index 759641e9f2c..633d6abe757 100644 --- a/src/licensedcode/data/rules/ofl-1.1_24.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_24.yml b/src/licensedcode/data/rules/ofl-1.1_24.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_25.RULE b/src/licensedcode/data/rules/ofl-1.1_25.RULE index a2aeae0a9c3..e9f55f9e6b0 100644 --- a/src/licensedcode/data/rules/ofl-1.1_25.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_25.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + licensed under the SIL Open Font License, Version 1.1. This license available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_25.yml b/src/licensedcode/data/rules/ofl-1.1_25.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_26.RULE b/src/licensedcode/data/rules/ofl-1.1_26.RULE index 5a051db0199..b773972205b 100644 --- a/src/licensedcode/data/rules/ofl-1.1_26.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_26.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +--- + The original STIX Font License begins below. STIX Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_26.yml b/src/licensedcode/data/rules/ofl-1.1_26.yml deleted file mode 100644 index 6c65ce541e6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_27.RULE b/src/licensedcode/data/rules/ofl-1.1_27.RULE index 53f29ede7db..b3957bf4c4e 100644 --- a/src/licensedcode/data/rules/ofl-1.1_27.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_27.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + The Font Awesome font is licensed under the SIL OFL 1.1: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_27.yml b/src/licensedcode/data/rules/ofl-1.1_27.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_28.RULE b/src/licensedcode/data/rules/ofl-1.1_28.RULE index 5652fc767f0..fb377024c78 100644 --- a/src/licensedcode/data/rules/ofl-1.1_28.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_28.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +relevance: 100 +--- + License: OFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_28.yml b/src/licensedcode/data/rules/ofl-1.1_28.yml deleted file mode 100644 index c39b1887eff..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_29.RULE b/src/licensedcode/data/rules/ofl-1.1_29.RULE index b36a51f393c..f67715bb67c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_29.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_29.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_text: yes +relevance: 100 +--- + PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation diff --git a/src/licensedcode/data/rules/ofl-1.1_29.yml b/src/licensedcode/data/rules/ofl-1.1_29.yml deleted file mode 100644 index beea0b20e3b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_3.RULE b/src/licensedcode/data/rules/ofl-1.1_3.RULE index 2f2ebb8ac0e..e09d78bf3f1 100644 --- a/src/licensedcode/data/rules/ofl-1.1_3.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_3.RULE @@ -1 +1,9 @@ -http://scripts.sil.org/OFL +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + +http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_3.yml b/src/licensedcode/data/rules/ofl-1.1_3.yml deleted file mode 100644 index 47cc9003dfc..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_30.RULE b/src/licensedcode/data/rules/ofl-1.1_30.RULE index d063c7640b0..9ae17f007d8 100644 --- a/src/licensedcode/data/rules/ofl-1.1_30.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_30.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_30.yml b/src/licensedcode/data/rules/ofl-1.1_30.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_31.RULE b/src/licensedcode/data/rules/ofl-1.1_31.RULE index c196d832f5c..c1e31d1ab80 100644 --- a/src/licensedcode/data/rules/ofl-1.1_31.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_31.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/ +--- + Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_31.yml b/src/licensedcode/data/rules/ofl-1.1_31.yml deleted file mode 100644 index 73622dda0af..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/ diff --git a/src/licensedcode/data/rules/ofl-1.1_32.RULE b/src/licensedcode/data/rules/ofl-1.1_32.RULE index a3b72a387e4..75c11d77342 100644 --- a/src/licensedcode/data/rules/ofl-1.1_32.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_32.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with an FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_32.yml b/src/licensedcode/data/rules/ofl-1.1_32.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_33.RULE b/src/licensedcode/data/rules/ofl-1.1_33.RULE index bcc3398fa51..41dc45d6d0c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_33.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_33.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFLhttp:/scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_33.yml b/src/licensedcode/data/rules/ofl-1.1_33.yml deleted file mode 100644 index 6a8d45954c1..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFLhttp:/scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_34.RULE b/src/licensedcode/data/rules/ofl-1.1_34.RULE index d744bc2ca5e..63485d41929 100644 --- a/src/licensedcode/data/rules/ofl-1.1_34.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_34.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFLhttp:/scripts.sil.org/OFL +--- + Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_34.yml b/src/licensedcode/data/rules/ofl-1.1_34.yml deleted file mode 100644 index 6a8d45954c1..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFLhttp:/scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_35.RULE b/src/licensedcode/data/rules/ofl-1.1_35.RULE index ecd12048297..65a65877603 100644 --- a/src/licensedcode/data/rules/ofl-1.1_35.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_35.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_35.yml b/src/licensedcode/data/rules/ofl-1.1_35.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_36.RULE b/src/licensedcode/data/rules/ofl-1.1_36.RULE index a9984d1e639..64144b38c69 100644 --- a/src/licensedcode/data/rules/ofl-1.1_36.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_36.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_36.yml b/src/licensedcode/data/rules/ofl-1.1_36.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_37.RULE b/src/licensedcode/data/rules/ofl-1.1_37.RULE index 233baf567d8..f07ca98927d 100644 --- a/src/licensedcode/data/rules/ofl-1.1_37.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_37.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_37.yml b/src/licensedcode/data/rules/ofl-1.1_37.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_38.RULE b/src/licensedcode/data/rules/ofl-1.1_38.RULE index 7ec187a7060..17884e610ae 100644 --- a/src/licensedcode/data/rules/ofl-1.1_38.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_38.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_38.yml b/src/licensedcode/data/rules/ofl-1.1_38.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_39.RULE b/src/licensedcode/data/rules/ofl-1.1_39.RULE index f674bfe2c76..bde99b61664 100644 --- a/src/licensedcode/data/rules/ofl-1.1_39.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_39.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_39.yml b/src/licensedcode/data/rules/ofl-1.1_39.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_4.RULE b/src/licensedcode/data/rules/ofl-1.1_4.RULE index ef7dd71665b..0316ce29a1e 100644 --- a/src/licensedcode/data/rules/ofl-1.1_4.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_4.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + font is licensed under SIL OFL 1.1 - * http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_4.yml b/src/licensedcode/data/rules/ofl-1.1_4.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_40.RULE b/src/licensedcode/data/rules/ofl-1.1_40.RULE index 3aba3497274..27a37e80e32 100644 --- a/src/licensedcode/data/rules/ofl-1.1_40.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_40.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFLhttp:/scripts.sil.org/ +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_40.yml b/src/licensedcode/data/rules/ofl-1.1_40.yml deleted file mode 100644 index 99ab112e78f..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFLhttp:/scripts.sil.org/ diff --git a/src/licensedcode/data/rules/ofl-1.1_41.RULE b/src/licensedcode/data/rules/ofl-1.1_41.RULE index a26b28bce18..3b72f7f4503 100644 --- a/src/licensedcode/data/rules/ofl-1.1_41.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_41.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +--- + SIL Open Font License, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_41.yml b/src/licensedcode/data/rules/ofl-1.1_41.yml deleted file mode 100644 index 6c65ce541e6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_42.RULE b/src/licensedcode/data/rules/ofl-1.1_42.RULE index 9beaf8b98c7..f9cafc51789 100644 --- a/src/licensedcode/data/rules/ofl-1.1_42.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_42.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +--- + Open Font License, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_42.yml b/src/licensedcode/data/rules/ofl-1.1_42.yml deleted file mode 100644 index 6c65ce541e6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_43.RULE b/src/licensedcode/data/rules/ofl-1.1_43.RULE index 9c0de8bc453..40fd558ec21 100644 --- a/src/licensedcode/data/rules/ofl-1.1_43.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_43.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +--- + Open Font License, v 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_43.yml b/src/licensedcode/data/rules/ofl-1.1_43.yml deleted file mode 100644 index 6c65ce541e6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_44.RULE b/src/licensedcode/data/rules/ofl-1.1_44.RULE index f315e6ebf64..b4b8fadabc5 100644 --- a/src/licensedcode/data/rules/ofl-1.1_44.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_44.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + font description file is optionally licensed under the SIL Open Font License v1.1 with no Reserved Font Name. This license is available with a FAQ at http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_44.yml b/src/licensedcode/data/rules/ofl-1.1_44.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_45.RULE b/src/licensedcode/data/rules/ofl-1.1_45.RULE index 970d40acbe1..810ba53a9fe 100644 --- a/src/licensedcode/data/rules/ofl-1.1_45.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_45.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://scripts.sil.org/OFL +--- + font description file is optionally licensed under the SIL Open Font License v1.1 with no Reserved Font Name. This license is available with a FAQ at https://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_45.yml b/src/licensedcode/data/rules/ofl-1.1_45.yml deleted file mode 100644 index e45eb84d2f8..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_46.RULE b/src/licensedcode/data/rules/ofl-1.1_46.RULE index a4221249f86..4ce5d8ae418 100644 --- a/src/licensedcode/data/rules/ofl-1.1_46.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_46.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the Open Font License. No modification of the license is permitted, only verbatim copy is allowed. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_46.yml b/src/licensedcode/data/rules/ofl-1.1_46.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_47.RULE b/src/licensedcode/data/rules/ofl-1.1_47.RULE index e3d867970d2..e12b4bbed81 100644 --- a/src/licensedcode/data/rules/ofl-1.1_47.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_47.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://scripts.sil.org/OFL +--- + This Font Software is licensed under the Open Font License. No modification of the license is permitted, only verbatim copy is allowed. This license is copied below, and is also available with a FAQ at: https://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_47.yml b/src/licensedcode/data/rules/ofl-1.1_47.yml deleted file mode 100644 index e45eb84d2f8..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_48.RULE b/src/licensedcode/data/rules/ofl-1.1_48.RULE index 462d561ccce..276cb9aa4a0 100644 --- a/src/licensedcode/data/rules/ofl-1.1_48.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_48.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ofl-1.1 +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the Open Font License. No modification of the license is permitted, only verbatim copy is allowed. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 diff --git a/src/licensedcode/data/rules/ofl-1.1_48.yml b/src/licensedcode/data/rules/ofl-1.1_48.yml deleted file mode 100644 index 372d2ad3055..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_48.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_49.RULE b/src/licensedcode/data/rules/ofl-1.1_49.RULE index 7c9cda1a5ea..6cecfa31156 100644 --- a/src/licensedcode/data/rules/ofl-1.1_49.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_49.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + * License * - The Font Awesome font is licensed under SIL OFL 1.1 - * http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_49.yml b/src/licensedcode/data/rules/ofl-1.1_49.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_5.RULE b/src/licensedcode/data/rules/ofl-1.1_5.RULE index 9ab04d785f8..1d3ca7f2a5e 100644 --- a/src/licensedcode/data/rules/ofl-1.1_5.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL +http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_5.yml b/src/licensedcode/data/rules/ofl-1.1_5.yml deleted file mode 100644 index ac13d1f7ea8..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_50.RULE b/src/licensedcode/data/rules/ofl-1.1_50.RULE index 9d9c0488675..15829f0d567 100644 --- a/src/licensedcode/data/rules/ofl-1.1_50.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_50.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + * - The Font Awesome font is licensed under SIL OFL 1.1 - * http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_50.yml b/src/licensedcode/data/rules/ofl-1.1_50.yml deleted file mode 100644 index cf1af019689..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_51.RULE b/src/licensedcode/data/rules/ofl-1.1_51.RULE index e5d508f930d..4495acf5c06 100644 --- a/src/licensedcode/data/rules/ofl-1.1_51.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_51.RULE @@ -1 +1,9 @@ -All Noto fonts are published under the SIL Open Font License (OFL) v1.1 (http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL), which allows you to copy, modify, and redistribute them if you need to. +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL +--- + +All Noto fonts are published under the SIL Open Font License (OFL) v1.1 (http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL), which allows you to copy, modify, and redistribute them if you need to. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_51.yml b/src/licensedcode/data/rules/ofl-1.1_51.yml deleted file mode 100644 index a096356c6b3..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_52.RULE b/src/licensedcode/data/rules/ofl-1.1_52.RULE index 1d595dd452f..7a2c93a2f42 100644 --- a/src/licensedcode/data/rules/ofl-1.1_52.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_52.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + Fonts are published under the SIL Open Font License (OFL) v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_52.yml b/src/licensedcode/data/rules/ofl-1.1_52.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_53.RULE b/src/licensedcode/data/rules/ofl-1.1_53.RULE index 1c3e4859b87..ba5231af4e3 100644 --- a/src/licensedcode/data/rules/ofl-1.1_53.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_53.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + Icon Set: is licensed under SIL Open-Font License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_53.yml b/src/licensedcode/data/rules/ofl-1.1_53.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_54.RULE b/src/licensedcode/data/rules/ofl-1.1_54.RULE index 6c5c67be8b3..d4368277ca7 100644 --- a/src/licensedcode/data/rules/ofl-1.1_54.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_54.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + * Icon Set: is licenced under SIL Open-Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_54.yml b/src/licensedcode/data/rules/ofl-1.1_54.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_55.RULE b/src/licensedcode/data/rules/ofl-1.1_55.RULE index 139ef316ba6..4596c7bf8ff 100644 --- a/src/licensedcode/data/rules/ofl-1.1_55.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_55.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 99 +--- + distributed under the SIL Open Font License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_55.yml b/src/licensedcode/data/rules/ofl-1.1_55.yml deleted file mode 100644 index 1de1f7c4b45..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ofl-1.1_56.RULE b/src/licensedcode/data/rules/ofl-1.1_56.RULE index 9837d1d9ca0..96ecc1a1011 100644 --- a/src/licensedcode/data/rules/ofl-1.1_56.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_56.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + fonts which are licensed under the SIL Open Font License version 1.1. You may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_56.yml b/src/licensedcode/data/rules/ofl-1.1_56.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_57.RULE b/src/licensedcode/data/rules/ofl-1.1_57.RULE index fd77e37be1a..8d0277cd167 100644 --- a/src/licensedcode/data/rules/ofl-1.1_57.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_57.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + The MIT license (the "License") set forth below applies to all parts \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_57.yml b/src/licensedcode/data/rules/ofl-1.1_57.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_58.RULE b/src/licensedcode/data/rules/ofl-1.1_58.RULE index 3edb3a9f016..dfed0eb9533 100644 --- a/src/licensedcode/data/rules/ofl-1.1_58.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_58.RULE @@ -1,2 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +notes: https://github.com/python-pillow/Pillow/blob/master/Tests/fonts/LICENSE.txt +ignorable_urls: + - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL +--- + All of the above fonts are published under the SIL Open Font License (OFL) v1.1 (http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL), which allows you to copy, modify, and redistribute them if you need to. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_58.yml b/src/licensedcode/data/rules/ofl-1.1_58.yml deleted file mode 100644 index 2a3d95574fe..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_58.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -notes: https://github.com/python-pillow/Pillow/blob/master/Tests/fonts/LICENSE.txt -ignorable_urls: - - http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_59.RULE b/src/licensedcode/data/rules/ofl-1.1_59.RULE index f3935f52941..ada7caff7a4 100644 --- a/src/licensedcode/data/rules/ofl-1.1_59.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_59.RULE @@ -1 +1,8 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +notes: https://github.com/python-pillow/Pillow/blob/master/Tests/fonts/LICENSE.txt +--- + published under the SIL Open Font License (OFL) v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_59.yml b/src/licensedcode/data/rules/ofl-1.1_59.yml deleted file mode 100644 index e54e61429f6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_59.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -notes: https://github.com/python-pillow/Pillow/blob/master/Tests/fonts/LICENSE.txt diff --git a/src/licensedcode/data/rules/ofl-1.1_6.RULE b/src/licensedcode/data/rules/ofl-1.1_6.RULE index 5940969411a..62c6d39c072 100644 --- a/src/licensedcode/data/rules/ofl-1.1_6.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_6.RULE @@ -1 +1,7 @@ -This Font Software is licensed under the SIL Open Font License, Version 1.1. +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +--- + +This Font Software is licensed under the SIL Open Font License, Version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_6.yml b/src/licensedcode/data/rules/ofl-1.1_6.yml deleted file mode 100644 index 6c65ce541e6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_60.RULE b/src/licensedcode/data/rules/ofl-1.1_60.RULE index a2a283a7eec..ed68c50856c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_60.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_60.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_60.yml b/src/licensedcode/data/rules/ofl-1.1_60.yml deleted file mode 100644 index 7b2aeb4046e..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_61.RULE b/src/licensedcode/data/rules/ofl-1.1_61.RULE index 18665cc0269..7b4508b30a2 100644 --- a/src/licensedcode/data/rules/ofl-1.1_61.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_61.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 99 +--- + LICENSE INFORMATION: SIL OPEN FONT LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_61.yml b/src/licensedcode/data/rules/ofl-1.1_61.yml deleted file mode 100644 index 1de1f7c4b45..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ofl-1.1_62.RULE b/src/licensedcode/data/rules/ofl-1.1_62.RULE index 2e503ef7d91..36f6ec6d4f0 100644 --- a/src/licensedcode/data/rules/ofl-1.1_62.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_62.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 99 +referenced_filenames: + - SIL Open Font License.txt +--- + SIL Open Font License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_62.yml b/src/licensedcode/data/rules/ofl-1.1_62.yml deleted file mode 100644 index 59bd830d7fb..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 99 -referenced_filenames: - - SIL Open Font License.txt diff --git a/src/licensedcode/data/rules/ofl-1.1_63.RULE b/src/licensedcode/data/rules/ofl-1.1_63.RULE index e1c66f2c537..4e29607adac 100644 --- a/src/licensedcode/data/rules/ofl-1.1_63.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_63.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the SIL Open Font License version 1.1 (the "License") set forth below. You may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_63.yml b/src/licensedcode/data/rules/ofl-1.1_63.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_64.RULE b/src/licensedcode/data/rules/ofl-1.1_64.RULE index 1cdb3864d5a..a3d9b57f196 100644 --- a/src/licensedcode/data/rules/ofl-1.1_64.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_64.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: typo in INCIDENTIAL +--- + SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 diff --git a/src/licensedcode/data/rules/ofl-1.1_64.yml b/src/licensedcode/data/rules/ofl-1.1_64.yml deleted file mode 100644 index f13c91bc959..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: typo in INCIDENTIAL diff --git a/src/licensedcode/data/rules/ofl-1.1_65.RULE b/src/licensedcode/data/rules/ofl-1.1_65.RULE index fae0233b356..ab41e6dacb8 100644 --- a/src/licensedcode/data/rules/ofl-1.1_65.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_65.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 99 +--- + its fonts are under the Open Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_65.yml b/src/licensedcode/data/rules/ofl-1.1_65.yml deleted file mode 100644 index 1de1f7c4b45..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ofl-1.1_66.RULE b/src/licensedcode/data/rules/ofl-1.1_66.RULE index 69a8189834f..f69e3d39076 100644 --- a/src/licensedcode/data/rules/ofl-1.1_66.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_66.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc +ignorable_urls: + - http://scripts.sil.org/OFL +--- + The font is licensed under the SIL Open Font 1.1 License (OFL). You may obtain a copy of the license at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_66.yml b/src/licensedcode/data/rules/ofl-1.1_66.yml deleted file mode 100644 index 21e3588247b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_66.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_67.RULE b/src/licensedcode/data/rules/ofl-1.1_67.RULE index ca70014437e..9e3a8f00dc8 100644 --- a/src/licensedcode/data/rules/ofl-1.1_67.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_67.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + License This Font Software is licensed under the SIL Open Font License, Version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_67.yml b/src/licensedcode/data/rules/ofl-1.1_67.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_68.RULE b/src/licensedcode/data/rules/ofl-1.1_68.RULE index 04fc57e41ad..78d43654e74 100644 --- a/src/licensedcode/data/rules/ofl-1.1_68.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_68.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This Font Software is licensed under the SIL Open Font License, Version 1.1. diff --git a/src/licensedcode/data/rules/ofl-1.1_68.yml b/src/licensedcode/data/rules/ofl-1.1_68.yml deleted file mode 100644 index 7779d954a4b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_68.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/ofl-1.1_69.RULE b/src/licensedcode/data/rules/ofl-1.1_69.RULE index 1a1f606a0e5..de4f28fb80e 100644 --- a/src/licensedcode/data/rules/ofl-1.1_69.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_69.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + distributed under OFL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_69.yml b/src/licensedcode/data/rules/ofl-1.1_69.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_7.RULE b/src/licensedcode/data/rules/ofl-1.1_7.RULE index b7a25fd33b4..87a076daeca 100644 --- a/src/licensedcode/data/rules/ofl-1.1_7.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_7.RULE @@ -1,2 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +ignorable_urls: + - https://opensource.org/licenses/OFL-1.1 +--- + This project bundles the following dependencies under SIL OFL 1.1 license (https://opensource.org/licenses/OFL-1.1). See bundled license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_7.yml b/src/licensedcode/data/rules/ofl-1.1_7.yml deleted file mode 100644 index 8b97840ee68..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -ignorable_urls: - - https://opensource.org/licenses/OFL-1.1 diff --git a/src/licensedcode/data/rules/ofl-1.1_70.RULE b/src/licensedcode/data/rules/ofl-1.1_70.RULE index f27524c2325..84be29ea2a7 100644 --- a/src/licensedcode/data/rules/ofl-1.1_70.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_70.RULE @@ -1,3 +1,20 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://abattis.org/cantarell + - http://en.wikipedia.org/wiki/Android_(operating_system) + - http://en.wikipedia.org/wiki/HTC_Dream + - http://fontforge.sf.net/ + - http://live.gnome.org/CantarellFonts + - http://openfontlibrary.org/wiki/Web_font_linking_with_@font-face + - http://scripts.sil.org/OFL + - http://www.google.com/webfonts + - http://www.typedesign.reading.ac.uk/ + - https://www.gnu.org/licenses/gpl.html +--- + The fonts were initially published on the 6th of July 2009 on Dave Crossland's foundry website [6] under the terms of the GNU General Public License version 3. [7] In May 2010 the fonts were @@ -17,5 +34,4 @@ Dave Crossland, 21st March 2011 [7]: https://www.gnu.org/licenses/gpl.html [8]: http://www.google.com/webfonts [9]: http://scripts.sil.org/OFL -[10]: http://live.gnome.org/CantarellFonts - \ No newline at end of file +[10]: http://live.gnome.org/CantarellFonts \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_70.yml b/src/licensedcode/data/rules/ofl-1.1_70.yml deleted file mode 100644 index 0fb1371e38b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_70.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://abattis.org/cantarell - - http://en.wikipedia.org/wiki/Android_(operating_system) - - http://en.wikipedia.org/wiki/HTC_Dream - - http://fontforge.sf.net/ - - http://live.gnome.org/CantarellFonts - - http://openfontlibrary.org/wiki/Web_font_linking_with_@font-face - - http://scripts.sil.org/OFL - - http://www.google.com/webfonts - - http://www.typedesign.reading.ac.uk/ - - https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/ofl-1.1_71.RULE b/src/licensedcode/data/rules/ofl-1.1_71.RULE index bcc606563e3..bc6b7fb3b4c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_71.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_71.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OFL-1.1 SIL Open Font License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_71.yml b/src/licensedcode/data/rules/ofl-1.1_71.yml deleted file mode 100644 index 4a46eb434c8..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_72.RULE b/src/licensedcode/data/rules/ofl-1.1_72.RULE index 46ea5133c43..3a11f6a10c6 100644 --- a/src/licensedcode/data/rules/ofl-1.1_72.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_72.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SIL Open Font License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_72.yml b/src/licensedcode/data/rules/ofl-1.1_72.yml deleted file mode 100644 index c2f26f3f01f..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_72.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1_73.RULE b/src/licensedcode/data/rules/ofl-1.1_73.RULE index 571370f3515..339e9b7ccdc 100644 --- a/src/licensedcode/data/rules/ofl-1.1_73.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_73.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SIL Open Font License 1.1 OFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_73.yml b/src/licensedcode/data/rules/ofl-1.1_73.yml deleted file mode 100644 index c2f26f3f01f..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_73.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1_74.RULE b/src/licensedcode/data/rules/ofl-1.1_74.RULE index e7bfb35388e..9db23c16019 100644 --- a/src/licensedcode/data/rules/ofl-1.1_74.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_74.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SIL Open Font License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_74.yml b/src/licensedcode/data/rules/ofl-1.1_74.yml deleted file mode 100644 index f8a981c9525..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_74.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1_75.RULE b/src/licensedcode/data/rules/ofl-1.1_75.RULE index 1ee489d6597..70ab1357f64 100644 --- a/src/licensedcode/data/rules/ofl-1.1_75.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_75.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_75.yml b/src/licensedcode/data/rules/ofl-1.1_75.yml deleted file mode 100644 index f8a981c9525..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_75.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ofl-1.1_76.RULE b/src/licensedcode/data/rules/ofl-1.1_76.RULE index 351bdf079a5..4f1260f7d18 100644 --- a/src/licensedcode/data/rules/ofl-1.1_76.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_76.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +ignorable_urls: + - http://scripts.sil.org/OFL +--- + License -This Font Software is licensed under the {{SIL Open Font License, Version 1.1.}} This license is copied below, and is also available with a FAQ at http://scripts.sil.org/OFL +This Font Software is licensed under the {{SIL Open Font License, Version 1.1.}} This license is copied below, and is also available with a FAQ at http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_76.yml b/src/licensedcode/data/rules/ofl-1.1_76.yml deleted file mode 100644 index ac13d1f7ea8..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_76.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_77.RULE b/src/licensedcode/data/rules/ofl-1.1_77.RULE index 228648cac2e..7564f24b2a5 100644 --- a/src/licensedcode/data/rules/ofl-1.1_77.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_77.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OFL-1.1 +--- + https://licenses.nuget.org/OFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_77.yml b/src/licensedcode/data/rules/ofl-1.1_77.yml deleted file mode 100644 index ed6274e5263..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_77.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OFL-1.1 diff --git a/src/licensedcode/data/rules/ofl-1.1_78.RULE b/src/licensedcode/data/rules/ofl-1.1_78.RULE index 315f94e2fda..7aec46e05ca 100644 --- a/src/licensedcode/data/rules/ofl-1.1_78.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_78.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_78.yml b/src/licensedcode/data/rules/ofl-1.1_78.yml deleted file mode 100644 index 6c65ce541e6..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_79.RULE b/src/licensedcode/data/rules/ofl-1.1_79.RULE index c0500d65549..e4c19cbf958 100644 --- a/src/licensedcode/data/rules/ofl-1.1_79.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_79.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + released under the terms of the SIL Open Font License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_79.yml b/src/licensedcode/data/rules/ofl-1.1_79.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_8.RULE b/src/licensedcode/data/rules/ofl-1.1_8.RULE index ef4472a5ac0..06dab276ffe 100644 --- a/src/licensedcode/data/rules/ofl-1.1_8.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_8.RULE @@ -1,2 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +ignorable_urls: + - http://scripts.sil.org/OFL +--- + This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL. This Font Software is distributed on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_8.yml b/src/licensedcode/data/rules/ofl-1.1_8.yml deleted file mode 100644 index bd894b5247f..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -ignorable_urls: - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_80.RULE b/src/licensedcode/data/rules/ofl-1.1_80.RULE index 6fb309bcc6b..a8b23947e36 100644 --- a/src/licensedcode/data/rules/ofl-1.1_80.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_80.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + Released under the SIL Open Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_80.yml b/src/licensedcode/data/rules/ofl-1.1_80.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_81.RULE b/src/licensedcode/data/rules/ofl-1.1_81.RULE index 66025dff2f1..64d9503a63a 100644 --- a/src/licensedcode/data/rules/ofl-1.1_81.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_81.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.1 +--- + LICENSE {{OFL-1.1}} https://spdx.org/licenses/OFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_81.yml b/src/licensedcode/data/rules/ofl-1.1_81.yml deleted file mode 100644 index 0a9246f4f2a..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.1 diff --git a/src/licensedcode/data/rules/ofl-1.1_82.RULE b/src/licensedcode/data/rules/ofl-1.1_82.RULE index 4bc476dad68..6384e0edbcf 100644 --- a/src/licensedcode/data/rules/ofl-1.1_82.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_82.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OFL-1.1 +--- + {{OFL-1.1}} https://spdx.org/licenses/OFL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_82.yml b/src/licensedcode/data/rules/ofl-1.1_82.yml deleted file mode 100644 index 0a9246f4f2a..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OFL-1.1 diff --git a/src/licensedcode/data/rules/ofl-1.1_9.RULE b/src/licensedcode/data/rules/ofl-1.1_9.RULE index f41504d5256..09b3f909e3c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_9.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_9.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the SIL Open Font License, Version 1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_9.yml b/src/licensedcode/data/rules/ofl-1.1_9.yml deleted file mode 100644 index cecbfc34a84..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_1.RULE b/src/licensedcode/data/rules/ofl-1.1_and_mit_1.RULE index 6fc0b56edbc..e3d359cfad3 100644 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_and_mit_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 AND mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://fontawesome.io/license +--- + License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_1.yml b/src/licensedcode/data/rules/ofl-1.1_and_mit_1.yml deleted file mode 100644 index a7f672dd643..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 AND mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://fontawesome.io/license diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_2.RULE b/src/licensedcode/data/rules/ofl-1.1_and_mit_2.RULE index 98e5d09bd49..9c6200f53ec 100644 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_and_mit_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 AND mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://fontawesome.io/license +--- + http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_2.yml b/src/licensedcode/data/rules/ofl-1.1_and_mit_2.yml deleted file mode 100644 index a7f672dd643..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 AND mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://fontawesome.io/license diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_3.RULE b/src/licensedcode/data/rules/ofl-1.1_and_mit_3.RULE index 6e148795e9f..a89b27ba388 100644 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_3.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_and_mit_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 AND mit +is_license_tag: yes +relevance: 100 +--- + (Font: SIL OFL 1.1, CSS: MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_3.yml b/src/licensedcode/data/rules/ofl-1.1_and_mit_3.yml deleted file mode 100644 index 3e477b0b5ac..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 AND mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_4.RULE b/src/licensedcode/data/rules/ofl-1.1_and_mit_4.RULE index fdee0bf97a7..150d2c57f14 100644 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_4.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_and_mit_4.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 AND mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://fontawesome.io/license +--- + License - http://fontawesome.io/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_4.yml b/src/licensedcode/data/rules/ofl-1.1_and_mit_4.yml deleted file mode 100644 index a7f672dd643..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 AND mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://fontawesome.io/license diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_5.RULE b/src/licensedcode/data/rules/ofl-1.1_and_mit_5.RULE index 7c51916f2c1..87a683f8256 100644 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_5.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_and_mit_5.RULE @@ -1 +1,11 @@ +--- +license_expression: ofl-1.1 AND mit +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://fontawesome.io/license +--- + http://fontawesome.io/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_5.yml b/src/licensedcode/data/rules/ofl-1.1_and_mit_5.yml deleted file mode 100644 index a4ab5436e9c..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ofl-1.1 AND mit -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://fontawesome.io/license diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_6.RULE b/src/licensedcode/data/rules/ofl-1.1_and_mit_6.RULE index 5b947ed6501..4f8882f7647 100644 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_6.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_and_mit_6.RULE @@ -1,2 +1,11 @@ +--- +license_expression: ofl-1.1 AND mit +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://fontawesome.io/ + - http://fontawesome.io/license +--- + http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_6.yml b/src/licensedcode/data/rules/ofl-1.1_and_mit_6.yml deleted file mode 100644 index b4d2952926b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 AND mit -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://fontawesome.io/ - - http://fontawesome.io/license diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_7.RULE b/src/licensedcode/data/rules/ofl-1.1_and_mit_7.RULE index 9beb7ab521b..61550898be8 100644 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_7.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_and_mit_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ofl-1.1 AND mit +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://fontawesome.io/ + - http://scripts.sil.org/OFL + - https://github.com/encharm/Font-Awesome-SVG-PNG +--- + All icons are taken from Font Awesome (http://fontawesome.io/) project. The Font Awesome font is licensed under the SIL OFL 1.1: - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_7.yml b/src/licensedcode/data/rules/ofl-1.1_and_mit_7.yml deleted file mode 100644 index c00ad2649a0..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ofl-1.1 AND mit -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://fontawesome.io/ - - http://scripts.sil.org/OFL - - https://github.com/encharm/Font-Awesome-SVG-PNG diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_and_cc-by-3.0_1.RULE b/src/licensedcode/data/rules/ofl-1.1_and_mit_and_cc-by-3.0_1.RULE index bac35edacfd..0e268d3141c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_and_cc-by-3.0_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_and_mit_and_cc-by-3.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ofl-1.1 AND mit AND cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by/3.0/ + - http://fontawesome.io/ + - http://opensource.org/licenses/mit-license.html + - http://scripts.sil.org/OFL +--- + * License * - The Font Awesome font is licensed under SIL OFL 1.1 - * http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_and_mit_and_cc-by-3.0_1.yml b/src/licensedcode/data/rules/ofl-1.1_and_mit_and_cc-by-3.0_1.yml deleted file mode 100644 index 1d96228c4d3..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_and_mit_and_cc-by-3.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ofl-1.1 AND mit AND cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by/3.0/ - - http://fontawesome.io/ - - http://opensource.org/licenses/mit-license.html - - http://scripts.sil.org/OFL diff --git a/src/licensedcode/data/rules/ofl-1.1_not_gpl.RULE b/src/licensedcode/data/rules/ofl-1.1_not_gpl.RULE index f9d3900484d..f67e5986d2d 100644 --- a/src/licensedcode/data/rules/ofl-1.1_not_gpl.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_not_gpl.RULE @@ -1,3 +1,19 @@ +--- +license_expression: ofl-1.1 +is_license_notice: yes +ignorable_urls: + - http://abattis.org/cantarell + - http://en.wikipedia.org/wiki/Android_(operating_system) + - http://en.wikipedia.org/wiki/HTC_Dream + - http://fontforge.sf.net/ + - http://live.gnome.org/CantarellFonts + - http://openfontlibrary.org/wiki/Web_font_linking_with_@font-face + - http://scripts.sil.org/OFL + - http://www.gnu.org/licenses/gpl.html + - http://www.google.com/webfonts + - http://www.typedesign.reading.ac.uk/ +--- + The fonts were initially published on the 6th of July 2009 on Dave Crossland's foundry website [6] under the terms of the GNU General Public License version 3. [7] In May 2010 the fonts were @@ -17,5 +33,4 @@ Dave Crossland, 21st March 2011 [7]: http://www.gnu.org/licenses/gpl.html [8]: http://www.google.com/webfonts [9]: http://scripts.sil.org/OFL -[10]: http://live.gnome.org/CantarellFonts - \ No newline at end of file +[10]: http://live.gnome.org/CantarellFonts \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_not_gpl.yml b/src/licensedcode/data/rules/ofl-1.1_not_gpl.yml deleted file mode 100644 index 329de22fec3..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_not_gpl.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: ofl-1.1 -is_license_notice: yes -ignorable_urls: - - http://abattis.org/cantarell - - http://en.wikipedia.org/wiki/Android_(operating_system) - - http://en.wikipedia.org/wiki/HTC_Dream - - http://fontforge.sf.net/ - - http://live.gnome.org/CantarellFonts - - http://openfontlibrary.org/wiki/Web_font_linking_with_@font-face - - http://scripts.sil.org/OFL - - http://www.gnu.org/licenses/gpl.html - - http://www.google.com/webfonts - - http://www.typedesign.reading.ac.uk/ diff --git a/src/licensedcode/data/rules/ofl-1.1_url_1.RULE b/src/licensedcode/data/rules/ofl-1.1_url_1.RULE index 0179fa3f597..02425c44d12 100644 --- a/src/licensedcode/data/rules/ofl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ofl-1.1 +--- + https://spdx.org/licenses/ofl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_url_1.yml b/src/licensedcode/data/rules/ofl-1.1_url_1.yml deleted file mode 100644 index a6cca5e2b3b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ofl-1.1 diff --git a/src/licensedcode/data/rules/ofl-1.1_url_2.RULE b/src/licensedcode/data/rules/ofl-1.1_url_2.RULE index b7844c67805..7deb89c9f3f 100644 --- a/src/licensedcode/data/rules/ofl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ofl-1.1.html +--- + https://spdx.org/licenses/ofl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_url_2.yml b/src/licensedcode/data/rules/ofl-1.1_url_2.yml deleted file mode 100644 index 54b8e3734ae..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ofl-1.1.html diff --git a/src/licensedcode/data/rules/ofl-1.1_url_glc_214.RULE b/src/licensedcode/data/rules/ofl-1.1_url_glc_214.RULE index 2b687d40ad0..174c9c5076c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_url_glc_214.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_url_glc_214.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ofl-1.1 +--- + http://www.opensource.org/licenses/ofl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_url_glc_214.yml b/src/licensedcode/data/rules/ofl-1.1_url_glc_214.yml deleted file mode 100644 index e54887e868d..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_url_glc_214.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ofl-1.1 diff --git a/src/licensedcode/data/rules/ofl-1.1_url_glc_215.RULE b/src/licensedcode/data/rules/ofl-1.1_url_glc_215.RULE index 0d1255d8daf..2ac3b000dcd 100644 --- a/src/licensedcode/data/rules/ofl-1.1_url_glc_215.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_url_glc_215.RULE @@ -1 +1,9 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ofl-1.1 +--- + https://www.opensource.org/licenses/ofl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_url_glc_215.yml b/src/licensedcode/data/rules/ofl-1.1_url_glc_215.yml deleted file mode 100644 index 43015d8bc1b..00000000000 --- a/src/licensedcode/data/rules/ofl-1.1_url_glc_215.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ofl-1.1 diff --git a/src/licensedcode/data/rules/ogc-1.0_1.RULE b/src/licensedcode/data/rules/ogc-1.0_1.RULE index 67e54e5cfed..a8a7fa9b642 100644 --- a/src/licensedcode/data/rules/ogc-1.0_1.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OGC Software License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_1.yml b/src/licensedcode/data/rules/ogc-1.0_1.yml deleted file mode 100644 index 4b3540b9c45..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogc-1.0_10.RULE b/src/licensedcode/data/rules/ogc-1.0_10.RULE index 4fd061cdae8..f53131e372a 100644 --- a/src/licensedcode/data/rules/ogc-1.0_10.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OGC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_10.yml b/src/licensedcode/data/rules/ogc-1.0_10.yml deleted file mode 100644 index 5ee1210fb70..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ogc-1.0_11.RULE b/src/licensedcode/data/rules/ogc-1.0_11.RULE index b3c344ec07d..eeb276d5450 100644 --- a/src/licensedcode/data/rules/ogc-1.0_11.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGC-1.0 +--- + {{OGC-1.0}} https://spdx.org/licenses/OGC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_11.yml b/src/licensedcode/data/rules/ogc-1.0_11.yml deleted file mode 100644 index 3a9e4c841f4..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGC-1.0 diff --git a/src/licensedcode/data/rules/ogc-1.0_12.RULE b/src/licensedcode/data/rules/ogc-1.0_12.RULE index 1a7d27b0f05..e5921ef2051 100644 --- a/src/licensedcode/data/rules/ogc-1.0_12.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGC-1.0 +--- + LICENSE {{OGC-1.0}} https://spdx.org/licenses/OGC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_12.yml b/src/licensedcode/data/rules/ogc-1.0_12.yml deleted file mode 100644 index 3a9e4c841f4..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGC-1.0 diff --git a/src/licensedcode/data/rules/ogc-1.0_2.RULE b/src/licensedcode/data/rules/ogc-1.0_2.RULE index f4b2f554e17..1d7670fa8dc 100644 --- a/src/licensedcode/data/rules/ogc-1.0_2.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: OGC Software License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_2.yml b/src/licensedcode/data/rules/ogc-1.0_2.yml deleted file mode 100644 index 4b3540b9c45..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogc-1.0_3.RULE b/src/licensedcode/data/rules/ogc-1.0_3.RULE index 0cef19b0c64..f878bc24188 100644 --- a/src/licensedcode/data/rules/ogc-1.0_3.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OGC-1.0 OGC Software License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_3.yml b/src/licensedcode/data/rules/ogc-1.0_3.yml deleted file mode 100644 index 4b3540b9c45..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogc-1.0_4.RULE b/src/licensedcode/data/rules/ogc-1.0_4.RULE index ebf6288dcbd..a80290d6c9f 100644 --- a/src/licensedcode/data/rules/ogc-1.0_4.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OGC Software License, Version 1.0 OGC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_4.yml b/src/licensedcode/data/rules/ogc-1.0_4.yml deleted file mode 100644 index 4b3540b9c45..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogc-1.0_5.RULE b/src/licensedcode/data/rules/ogc-1.0_5.RULE index 132021a1167..8561a6fd321 100644 --- a/src/licensedcode/data/rules/ogc-1.0_5.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ogc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OGC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_5.yml b/src/licensedcode/data/rules/ogc-1.0_5.yml deleted file mode 100644 index 28cc78c8926..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogc-1.0_6.RULE b/src/licensedcode/data/rules/ogc-1.0_6.RULE index 1cce352326e..208f68cf80c 100644 --- a/src/licensedcode/data/rules/ogc-1.0_6.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ogc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OGC Software License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_6.yml b/src/licensedcode/data/rules/ogc-1.0_6.yml deleted file mode 100644 index 28cc78c8926..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogc-1.0_7.RULE b/src/licensedcode/data/rules/ogc-1.0_7.RULE index 91e746235d7..6ca176be6ce 100644 --- a/src/licensedcode/data/rules/ogc-1.0_7.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ogc-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OGC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_7.yml b/src/licensedcode/data/rules/ogc-1.0_7.yml deleted file mode 100644 index 28cc78c8926..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogc-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogc-1.0_8.RULE b/src/licensedcode/data/rules/ogc-1.0_8.RULE index cb19b408ab9..97f41515fa2 100644 --- a/src/licensedcode/data/rules/ogc-1.0_8.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OGC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_8.yml b/src/licensedcode/data/rules/ogc-1.0_8.yml deleted file mode 100644 index 12579d17c76..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ogc-1.0_9.RULE b/src/licensedcode/data/rules/ogc-1.0_9.RULE index 12ef6bf6d54..4835a21b854 100644 --- a/src/licensedcode/data/rules/ogc-1.0_9.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ogc-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OGC-1.0 +--- + https://licenses.nuget.org/OGC-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_9.yml b/src/licensedcode/data/rules/ogc-1.0_9.yml deleted file mode 100644 index 3ab68f45d75..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogc-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OGC-1.0 diff --git a/src/licensedcode/data/rules/ogc-1.0_not_2006.RULE b/src/licensedcode/data/rules/ogc-1.0_not_2006.RULE index 5d99c942fe5..1609636f1c2 100644 --- a/src/licensedcode/data/rules/ogc-1.0_not_2006.RULE +++ b/src/licensedcode/data/rules/ogc-1.0_not_2006.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ogc-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.opengeospatial.org/ogc/legal +--- + This OGC work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, @@ -35,4 +46,4 @@ CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all -times remain with copyright holders. +times remain with copyright holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogc-1.0_not_2006.yml b/src/licensedcode/data/rules/ogc-1.0_not_2006.yml deleted file mode 100644 index 5fe34b3ca64..00000000000 --- a/src/licensedcode/data/rules/ogc-1.0_not_2006.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ogc-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) Open Geospatial Consortium, Inc. -ignorable_holders: - - Open Geospatial Consortium, Inc. -ignorable_urls: - - http://www.opengeospatial.org/ogc/legal diff --git a/src/licensedcode/data/rules/ogc-2006_1.RULE b/src/licensedcode/data/rules/ogc-2006_1.RULE index ac061f5cc44..4258b0631c3 100644 --- a/src/licensedcode/data/rules/ogc-2006_1.RULE +++ b/src/licensedcode/data/rules/ogc-2006_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ogc-1.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.opengeospatial.org/ogc/legal +--- + Software Notice This OGC work (including software, documents, or other related items) is being diff --git a/src/licensedcode/data/rules/ogc-2006_1.yml b/src/licensedcode/data/rules/ogc-2006_1.yml deleted file mode 100644 index f78b041ea13..00000000000 --- a/src/licensedcode/data/rules/ogc-2006_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ogc-1.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) Open Geospatial Consortium, Inc. -ignorable_holders: - - Open Geospatial Consortium, Inc. -ignorable_urls: - - http://www.opengeospatial.org/ogc/legal diff --git a/src/licensedcode/data/rules/ogc-2006_2.RULE b/src/licensedcode/data/rules/ogc-2006_2.RULE index 568728c6219..dbf76c16756 100644 --- a/src/licensedcode/data/rules/ogc-2006_2.RULE +++ b/src/licensedcode/data/rules/ogc-2006_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: ogc-1.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) Open Geospatial Consortium, Inc. +ignorable_holders: + - Open Geospatial Consortium, Inc. +ignorable_urls: + - http://www.opengeospatial.org/ogc/legal +--- + This OGC work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, diff --git a/src/licensedcode/data/rules/ogc-2006_2.yml b/src/licensedcode/data/rules/ogc-2006_2.yml deleted file mode 100644 index d5430456e94..00000000000 --- a/src/licensedcode/data/rules/ogc-2006_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: ogc-1.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) Open Geospatial Consortium, Inc. -ignorable_holders: - - Open Geospatial Consortium, Inc. -ignorable_urls: - - http://www.opengeospatial.org/ogc/legal diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_1.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_1.RULE index 3bda7f2d209..7e1a45d6d8e 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_1.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Taiwan Open Government Data License, version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_1.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_1.yml deleted file mode 100644 index f7b35bc2422..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_10.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_10.RULE index c78ad14869d..ff13af682cf 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_10.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OGDL-Taiwan-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_10.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_10.yml deleted file mode 100644 index 2db93ec42a5..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_11.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_11.RULE index 1a463545248..567c21c5e97 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_11.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGDL-Taiwan-1.0 +--- + {{OGDL-Taiwan-1.0}} https://spdx.org/licenses/OGDL-Taiwan-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_11.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_11.yml deleted file mode 100644 index 55cbffd12b7..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGDL-Taiwan-1.0 diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_12.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_12.RULE index 4cda8f13200..87a90fe140f 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_12.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGDL-Taiwan-1.0 +--- + LICENSE {{OGDL-Taiwan-1.0}} https://spdx.org/licenses/OGDL-Taiwan-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_12.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_12.yml deleted file mode 100644 index 55cbffd12b7..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGDL-Taiwan-1.0 diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_2.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_2.RULE index 21d36dbd19f..2044266903c 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_2.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Taiwan Open Government Data License, version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_2.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_2.yml deleted file mode 100644 index f7b35bc2422..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_3.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_3.RULE index 0068253ac64..20d821d111b 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_3.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OGDL-Taiwan-1.0 Taiwan Open Government Data License, version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_3.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_3.yml deleted file mode 100644 index f7b35bc2422..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_4.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_4.RULE index 5fb0c113ce0..11ce0d831ff 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_4.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Taiwan Open Government Data License, version 1.0 OGDL-Taiwan-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_4.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_4.yml deleted file mode 100644 index f7b35bc2422..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_5.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_5.RULE index afa0e9eec37..03e67eafd93 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_5.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OGDL-Taiwan-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_5.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_5.yml deleted file mode 100644 index 390dbbf4e46..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_6.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_6.RULE index b003e75dfbb..78ebd32d0e0 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_6.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Taiwan Open Government Data License, version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_6.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_6.yml deleted file mode 100644 index 390dbbf4e46..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_7.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_7.RULE index e1e70477a09..ba5419b2d94 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_7.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OGDL-Taiwan-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_7.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_7.yml deleted file mode 100644 index 390dbbf4e46..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_8.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_8.RULE index edd7c125c05..3f8e06eeeb1 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_8.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OGDL-Taiwan-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_8.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_8.yml deleted file mode 100644 index 2fabb15151e..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_9.RULE b/src/licensedcode/data/rules/ogdl-taiwan-1.0_9.RULE index abac6678d41..83aca842ebf 100644 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_9.RULE +++ b/src/licensedcode/data/rules/ogdl-taiwan-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ogdl-taiwan-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OGDL-Taiwan-1.0 +--- + https://licenses.nuget.org/OGDL-Taiwan-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogdl-taiwan-1.0_9.yml b/src/licensedcode/data/rules/ogdl-taiwan-1.0_9.yml deleted file mode 100644 index 2997e542df4..00000000000 --- a/src/licensedcode/data/rules/ogdl-taiwan-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogdl-taiwan-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OGDL-Taiwan-1.0 diff --git a/src/licensedcode/data/rules/ogl-uk-1.0.RULE b/src/licensedcode/data/rules/ogl-uk-1.0.RULE index c5f1f5fd4d6..4cb9ee69701 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ogl-uk-1.0 +is_license_notice: yes +--- + Using information under this licence Use of copyright and database right material expressly made available under this licence (the ‘Information’) indicates your acceptance of the terms and conditions below. @@ -46,4 +51,4 @@ and design rights; and identity documents such as the British Passport. No warranty The Information is licensed ‘as is’ and the Information Provider excludes all representations, -warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law. +warranties, obligations and liabilities in relation to the Information to the maximum extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0.yml b/src/licensedcode/data/rules/ogl-uk-1.0.yml deleted file mode 100644 index e78c9ae97c8..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_1.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_1.RULE index 70f1138117c..1237ba62cc7 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_1.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Government Licence v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_1.yml b/src/licensedcode/data/rules/ogl-uk-1.0_1.yml deleted file mode 100644 index f803f81f40d..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_10.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_10.RULE index 7e37538ffed..03baaf81c0a 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_10.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OGL-UK-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_10.yml b/src/licensedcode/data/rules/ogl-uk-1.0_10.yml deleted file mode 100644 index f3b42a256fd..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_11.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_11.RULE index 7c07427300d..d0394bb25ed 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_11.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGL-UK-1.0 +--- + LICENSE {{OGL-UK-1.0}} https://spdx.org/licenses/OGL-UK-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_11.yml b/src/licensedcode/data/rules/ogl-uk-1.0_11.yml deleted file mode 100644 index 19db16f05be..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGL-UK-1.0 diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_12.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_12.RULE index 251f97b75ba..d665ea227b1 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_12.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGL-UK-1.0 +--- + {{OGL-UK-1.0}} https://spdx.org/licenses/OGL-UK-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_12.yml b/src/licensedcode/data/rules/ogl-uk-1.0_12.yml deleted file mode 100644 index 19db16f05be..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGL-UK-1.0 diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_2.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_2.RULE index 02048ff0b06..2ef14ef147f 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_2.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Government Licence v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_2.yml b/src/licensedcode/data/rules/ogl-uk-1.0_2.yml deleted file mode 100644 index f803f81f40d..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_3.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_3.RULE index 0af9bf70859..0f4e77b8d84 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_3.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OGL-UK-1.0 Open Government Licence v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_3.yml b/src/licensedcode/data/rules/ogl-uk-1.0_3.yml deleted file mode 100644 index f803f81f40d..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_4.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_4.RULE index 620ba6fb466..d428e3698e0 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_4.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Government Licence v1.0 OGL-UK-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_4.yml b/src/licensedcode/data/rules/ogl-uk-1.0_4.yml deleted file mode 100644 index f803f81f40d..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_5.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_5.RULE index acc5ba59bbe..b6cee90f3ca 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_5.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OGL-UK-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_5.yml b/src/licensedcode/data/rules/ogl-uk-1.0_5.yml deleted file mode 100644 index a3c4d0476ae..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_6.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_6.RULE index c469749e0d2..0025a862dd6 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_6.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Government Licence v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_6.yml b/src/licensedcode/data/rules/ogl-uk-1.0_6.yml deleted file mode 100644 index a3c4d0476ae..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_7.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_7.RULE index a8fd59745d8..c45af48333a 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_7.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OGL-UK-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_7.yml b/src/licensedcode/data/rules/ogl-uk-1.0_7.yml deleted file mode 100644 index a3c4d0476ae..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_8.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_8.RULE index 87c25dd311f..594cf5223a4 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_8.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OGL-UK-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_8.yml b/src/licensedcode/data/rules/ogl-uk-1.0_8.yml deleted file mode 100644 index e7e86e666a0..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_9.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_9.RULE index 4d93942acec..bf388b135af 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_9.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OGL-UK-1.0 +--- + https://licenses.nuget.org/OGL-UK-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_9.yml b/src/licensedcode/data/rules/ogl-uk-1.0_9.yml deleted file mode 100644 index c3d86dceb3c..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OGL-UK-1.0 diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_url_1.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_url_1.RULE index 6a3bb6b3774..3af5b5424e2 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ogl-uk-1.0 +--- + https://spdx.org/licenses/ogl-uk-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_url_1.yml b/src/licensedcode/data/rules/ogl-uk-1.0_url_1.yml deleted file mode 100644 index 01b9fd6a492..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ogl-uk-1.0 diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_url_2.RULE b/src/licensedcode/data/rules/ogl-uk-1.0_url_2.RULE index c21400a6d00..fc22ceb97fd 100644 --- a/src/licensedcode/data/rules/ogl-uk-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/ogl-uk-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ogl-uk-1.0.html +--- + https://spdx.org/licenses/ogl-uk-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-1.0_url_2.yml b/src/licensedcode/data/rules/ogl-uk-1.0_url_2.yml deleted file mode 100644 index 884116a3c04..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ogl-uk-1.0.html diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_1.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_1.RULE index f6563bf3fb0..715514190ca 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_1.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +relevance: 100 +--- + licensed under the Open Government Licence v.2.0., \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_1.yml b/src/licensedcode/data/rules/ogl-uk-2.0_1.yml deleted file mode 100644 index b8c6567bebc..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_10.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_10.RULE index 9bf59133fb4..4ea74846c34 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_10.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OGL-UK-2.0 +--- + https://licenses.nuget.org/OGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_10.yml b/src/licensedcode/data/rules/ogl-uk-2.0_10.yml deleted file mode 100644 index b671e4ff3b5..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OGL-UK-2.0 diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_11.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_11.RULE index 390441de611..53a89a01d2a 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_11.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_11.yml b/src/licensedcode/data/rules/ogl-uk-2.0_11.yml deleted file mode 100644 index b8c6567bebc..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_12.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_12.RULE index 9b10687bdd6..4919103fe77 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_12.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGL-UK-2.0 +--- + LICENSE {{OGL-UK-2.0}} https://spdx.org/licenses/OGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_12.yml b/src/licensedcode/data/rules/ogl-uk-2.0_12.yml deleted file mode 100644 index 6d943802e1a..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGL-UK-2.0 diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_13.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_13.RULE index dc7cfb04a92..e1ac67a4267 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_13.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGL-UK-2.0 +--- + {{OGL-UK-2.0}} https://spdx.org/licenses/OGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_13.yml b/src/licensedcode/data/rules/ogl-uk-2.0_13.yml deleted file mode 100644 index 6d943802e1a..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGL-UK-2.0 diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_2.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_2.RULE index 4aaccffb911..bb5dc433bd4 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_2.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Government Licence v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_2.yml b/src/licensedcode/data/rules/ogl-uk-2.0_2.yml deleted file mode 100644 index 9494275fde4..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_3.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_3.RULE index 27f7f875147..106ba4027c3 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_3.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Government Licence v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_3.yml b/src/licensedcode/data/rules/ogl-uk-2.0_3.yml deleted file mode 100644 index 9494275fde4..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_4.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_4.RULE index 82b6ec761c0..d546a88362f 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_4.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OGL-UK-2.0 Open Government Licence v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_4.yml b/src/licensedcode/data/rules/ogl-uk-2.0_4.yml deleted file mode 100644 index 9494275fde4..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_5.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_5.RULE index 9328c284424..efaa6877247 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_5.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Government Licence v2.0 OGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_5.yml b/src/licensedcode/data/rules/ogl-uk-2.0_5.yml deleted file mode 100644 index 9494275fde4..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_6.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_6.RULE index 1d7c10824d1..44c7b9948b9 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_6.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_6.yml b/src/licensedcode/data/rules/ogl-uk-2.0_6.yml deleted file mode 100644 index 00be9413779..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_7.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_7.RULE index 3d1be0ceb69..03aef3b82ab 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_7.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Government Licence v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_7.yml b/src/licensedcode/data/rules/ogl-uk-2.0_7.yml deleted file mode 100644 index 00be9413779..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_8.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_8.RULE index 13228c0ab78..d37ae7d69ee 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_8.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_8.yml b/src/licensedcode/data/rules/ogl-uk-2.0_8.yml deleted file mode 100644 index 00be9413779..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_9.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_9.RULE index dc98dd0ae23..a2478123ee7 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_9.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OGL-UK-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_9.yml b/src/licensedcode/data/rules/ogl-uk-2.0_9.yml deleted file mode 100644 index 609ed4577ba..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_url_1.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_url_1.RULE index 3bba96b4858..89e0dd11bf1 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ogl-uk-2.0 +--- + https://spdx.org/licenses/ogl-uk-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_url_1.yml b/src/licensedcode/data/rules/ogl-uk-2.0_url_1.yml deleted file mode 100644 index 7f7b31098d6..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ogl-uk-2.0 diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_url_2.RULE b/src/licensedcode/data/rules/ogl-uk-2.0_url_2.RULE index b4e9eba624c..a07d76ed55a 100644 --- a/src/licensedcode/data/rules/ogl-uk-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/ogl-uk-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ogl-uk-2.0.html +--- + https://spdx.org/licenses/ogl-uk-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-2.0_url_2.yml b/src/licensedcode/data/rules/ogl-uk-2.0_url_2.yml deleted file mode 100644 index 8b2b4335110..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ogl-uk-2.0.html diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_1.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_1.RULE index bd08508aeae..afc2039b816 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_1.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ogl-uk-3.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3 +--- + The Open Government Licence (OGL) Version 3 This source code is licensed under the Open Government Licence v3.0. To view this diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_1.yml b/src/licensedcode/data/rules/ogl-uk-3.0_1.yml deleted file mode 100644 index f980a8440a4..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3 diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_10.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_10.RULE index ddf88d3db8a..fee6344c028 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_10.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OGL-UK-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_10.yml b/src/licensedcode/data/rules/ogl-uk-3.0_10.yml deleted file mode 100644 index 26f88877824..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_11.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_11.RULE index 1566dfbad34..14ad1673e75 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_11.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OGL-UK-3.0 +--- + https://licenses.nuget.org/OGL-UK-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_11.yml b/src/licensedcode/data/rules/ogl-uk-3.0_11.yml deleted file mode 100644 index 213e58ef90b..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OGL-UK-3.0 diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_12.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_12.RULE index 8c2ff514c44..58866c46b32 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_12.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OGL-UK-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_12.yml b/src/licensedcode/data/rules/ogl-uk-3.0_12.yml deleted file mode 100644 index dd3e7fecf36..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_13.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_13.RULE index 345a341cee0..ec25161bd93 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_13.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGL-UK-3.0 +--- + LICENSE {{OGL-UK-3.0}} https://spdx.org/licenses/OGL-UK-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_13.yml b/src/licensedcode/data/rules/ogl-uk-3.0_13.yml deleted file mode 100644 index a5108c1f981..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGL-UK-3.0 diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_14.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_14.RULE index 678c4e8c1fa..7c84dc11ce0 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_14.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGL-UK-3.0 +--- + {{OGL-UK-3.0}} https://spdx.org/licenses/OGL-UK-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_14.yml b/src/licensedcode/data/rules/ogl-uk-3.0_14.yml deleted file mode 100644 index a5108c1f981..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGL-UK-3.0 diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_2.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_2.RULE index 681ce70b8f3..77d71402ffc 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_2.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: ogl-uk-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3 +--- + is licensed under the UK Open Government License (http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_2.yml b/src/licensedcode/data/rules/ogl-uk-3.0_2.yml deleted file mode 100644 index 29f0c08c421..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3 diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_3.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_3.RULE index 6795a2bbc49..48c0bbcece0 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_3.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Government Licence v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_3.yml b/src/licensedcode/data/rules/ogl-uk-3.0_3.yml deleted file mode 100644 index bdce52dd247..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_4.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_4.RULE index a0e3a789509..5cec446b0cb 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_4.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Government Licence v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_4.yml b/src/licensedcode/data/rules/ogl-uk-3.0_4.yml deleted file mode 100644 index bdce52dd247..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_5.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_5.RULE index 59ba170faff..5be9c014ebe 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_5.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OGL-UK-3.0 Open Government Licence v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_5.yml b/src/licensedcode/data/rules/ogl-uk-3.0_5.yml deleted file mode 100644 index bdce52dd247..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_6.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_6.RULE index 35e7429d84e..21883624b46 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_6.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Government Licence v3.0 OGL-UK-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_6.yml b/src/licensedcode/data/rules/ogl-uk-3.0_6.yml deleted file mode 100644 index bdce52dd247..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_7.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_7.RULE index 8cf7bad567d..29c7277c8b4 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_7.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OGL-UK-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_7.yml b/src/licensedcode/data/rules/ogl-uk-3.0_7.yml deleted file mode 100644 index a17fc8d8776..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_8.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_8.RULE index 49979d8d3df..a33d76c2fb5 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_8.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Government Licence v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_8.yml b/src/licensedcode/data/rules/ogl-uk-3.0_8.yml deleted file mode 100644 index a17fc8d8776..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_9.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_9.RULE index a9e567e4512..286a640c824 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_9.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: ogl-uk-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OGL-UK-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_9.yml b/src/licensedcode/data/rules/ogl-uk-3.0_9.yml deleted file mode 100644 index a17fc8d8776..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_url_1.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_url_1.RULE index 155850e8290..336f3d0ee1f 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ogl-uk-3.0 +--- + https://spdx.org/licenses/ogl-uk-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_url_1.yml b/src/licensedcode/data/rules/ogl-uk-3.0_url_1.yml deleted file mode 100644 index 5ba5278f5f5..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ogl-uk-3.0 diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_url_2.RULE b/src/licensedcode/data/rules/ogl-uk-3.0_url_2.RULE index b2c3ad59f80..030e30a3b04 100644 --- a/src/licensedcode/data/rules/ogl-uk-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/ogl-uk-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ogl-uk-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ogl-uk-3.0.html +--- + https://spdx.org/licenses/ogl-uk-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ogl-uk-3.0_url_2.yml b/src/licensedcode/data/rules/ogl-uk-3.0_url_2.yml deleted file mode 100644 index e015df12703..00000000000 --- a/src/licensedcode/data/rules/ogl-uk-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ogl-uk-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ogl-uk-3.0.html diff --git a/src/licensedcode/data/rules/open-group.RULE b/src/licensedcode/data/rules/open-group.RULE index bd2e155a5ba..5382cad7169 100644 --- a/src/licensedcode/data/rules/open-group.RULE +++ b/src/licensedcode/data/rules/open-group.RULE @@ -1 +1,9 @@ +--- +license_expression: open-group +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opengroup.org/openmotif/license/ +--- + http://www.opengroup.org/openmotif/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-group.yml b/src/licensedcode/data/rules/open-group.yml deleted file mode 100644 index 93f8b326425..00000000000 --- a/src/licensedcode/data/rules/open-group.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: open-group -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opengroup.org/openmotif/license/ diff --git a/src/licensedcode/data/rules/open-group_1.RULE b/src/licensedcode/data/rules/open-group_1.RULE index 5a083b1f74c..cf6a387dff3 100644 --- a/src/licensedcode/data/rules/open-group_1.RULE +++ b/src/licensedcode/data/rules/open-group_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: open-group +is_license_notice: yes +notes: open-group alternative +--- + OPEN GROUP LICENSE Permission to use, copy, modify, distribute, and sell this software diff --git a/src/licensedcode/data/rules/open-group_1.yml b/src/licensedcode/data/rules/open-group_1.yml deleted file mode 100644 index 7edf2979c7d..00000000000 --- a/src/licensedcode/data/rules/open-group_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: open-group -is_license_notice: yes -notes: open-group alternative diff --git a/src/licensedcode/data/rules/open-public.RULE b/src/licensedcode/data/rules/open-public.RULE index 1c4c4569322..f9174dd9b49 100644 --- a/src/licensedcode/data/rules/open-public.RULE +++ b/src/licensedcode/data/rules/open-public.RULE @@ -1 +1,9 @@ +--- +license_expression: open-public +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://ksoap.objectweb.org/software/license/opl.html +--- + http://ksoap.objectweb.org/software/license/opl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public.SPDX.RULE b/src/licensedcode/data/rules/open-public.SPDX.RULE index 1ac94a2c2ad..c50bb40a9ad 100644 --- a/src/licensedcode/data/rules/open-public.SPDX.RULE +++ b/src/licensedcode/data/rules/open-public.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: open-public +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + OPEN PUBLIC LICENSE Version 1.0 diff --git a/src/licensedcode/data/rules/open-public.SPDX.yml b/src/licensedcode/data/rules/open-public.SPDX.yml deleted file mode 100644 index b010b104467..00000000000 --- a/src/licensedcode/data/rules/open-public.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: open-public -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/open-public.yml b/src/licensedcode/data/rules/open-public.yml deleted file mode 100644 index 749db941c00..00000000000 --- a/src/licensedcode/data/rules/open-public.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: open-public -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://ksoap.objectweb.org/software/license/opl.html diff --git a/src/licensedcode/data/rules/open-public_1.RULE b/src/licensedcode/data/rules/open-public_1.RULE index b3a1131e9c1..4436b11f617 100644 --- a/src/licensedcode/data/rules/open-public_1.RULE +++ b/src/licensedcode/data/rules/open-public_1.RULE @@ -1 +1,9 @@ +--- +license_expression: open-public +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/Open_Public_License +--- + https://fedoraproject.org/wiki/Licensing/Open_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_1.yml b/src/licensedcode/data/rules/open-public_1.yml deleted file mode 100644 index cdd92e18af1..00000000000 --- a/src/licensedcode/data/rules/open-public_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: open-public -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/Open_Public_License diff --git a/src/licensedcode/data/rules/open-public_10.RULE b/src/licensedcode/data/rules/open-public_10.RULE index fe43ec6354c..7c7c8a2e664 100644 --- a/src/licensedcode/data/rules/open-public_10.RULE +++ b/src/licensedcode/data/rules/open-public_10.RULE @@ -1 +1,7 @@ +--- +license_expression: open-public +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_10.yml b/src/licensedcode/data/rules/open-public_10.yml deleted file mode 100644 index f525f843dd7..00000000000 --- a/src/licensedcode/data/rules/open-public_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: open-public -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/open-public_11.RULE b/src/licensedcode/data/rules/open-public_11.RULE index 4a3fe0565db..6e78d90eeeb 100644 --- a/src/licensedcode/data/rules/open-public_11.RULE +++ b/src/licensedcode/data/rules/open-public_11.RULE @@ -1 +1,9 @@ +--- +license_expression: open-public +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OPL-1.0 +--- + LICENSE {{OPL-1.0}} https://spdx.org/licenses/OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_11.yml b/src/licensedcode/data/rules/open-public_11.yml deleted file mode 100644 index e535d833fac..00000000000 --- a/src/licensedcode/data/rules/open-public_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: open-public -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OPL-1.0 diff --git a/src/licensedcode/data/rules/open-public_12.RULE b/src/licensedcode/data/rules/open-public_12.RULE index 20ff8511b2a..ff138e3d617 100644 --- a/src/licensedcode/data/rules/open-public_12.RULE +++ b/src/licensedcode/data/rules/open-public_12.RULE @@ -1 +1,9 @@ +--- +license_expression: open-public +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OPL-1.0 +--- + {{OPL-1.0}} https://spdx.org/licenses/OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_12.yml b/src/licensedcode/data/rules/open-public_12.yml deleted file mode 100644 index e535d833fac..00000000000 --- a/src/licensedcode/data/rules/open-public_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: open-public -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OPL-1.0 diff --git a/src/licensedcode/data/rules/open-public_2.RULE b/src/licensedcode/data/rules/open-public_2.RULE index b194cae54d1..fa04db8efee 100644 --- a/src/licensedcode/data/rules/open-public_2.RULE +++ b/src/licensedcode/data/rules/open-public_2.RULE @@ -1 +1,10 @@ +--- +license_expression: open-public +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_2.yml b/src/licensedcode/data/rules/open-public_2.yml deleted file mode 100644 index 846522f3afb..00000000000 --- a/src/licensedcode/data/rules/open-public_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: open-public -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/open-public_3.RULE b/src/licensedcode/data/rules/open-public_3.RULE index 8e13499e475..8169cb9a383 100644 --- a/src/licensedcode/data/rules/open-public_3.RULE +++ b/src/licensedcode/data/rules/open-public_3.RULE @@ -1 +1,10 @@ +--- +license_expression: open-public +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_3.yml b/src/licensedcode/data/rules/open-public_3.yml deleted file mode 100644 index 846522f3afb..00000000000 --- a/src/licensedcode/data/rules/open-public_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: open-public -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/open-public_4.RULE b/src/licensedcode/data/rules/open-public_4.RULE index 5b237de7ce6..a3958e53b50 100644 --- a/src/licensedcode/data/rules/open-public_4.RULE +++ b/src/licensedcode/data/rules/open-public_4.RULE @@ -1 +1,10 @@ +--- +license_expression: open-public +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OPL-1.0 Open Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_4.yml b/src/licensedcode/data/rules/open-public_4.yml deleted file mode 100644 index 846522f3afb..00000000000 --- a/src/licensedcode/data/rules/open-public_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: open-public -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/open-public_5.RULE b/src/licensedcode/data/rules/open-public_5.RULE index 25c89fafb85..1e915066f8b 100644 --- a/src/licensedcode/data/rules/open-public_5.RULE +++ b/src/licensedcode/data/rules/open-public_5.RULE @@ -1 +1,10 @@ +--- +license_expression: open-public +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Public License v1.0 OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_5.yml b/src/licensedcode/data/rules/open-public_5.yml deleted file mode 100644 index 846522f3afb..00000000000 --- a/src/licensedcode/data/rules/open-public_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: open-public -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/open-public_6.RULE b/src/licensedcode/data/rules/open-public_6.RULE index 18480c4c794..0fb69511c45 100644 --- a/src/licensedcode/data/rules/open-public_6.RULE +++ b/src/licensedcode/data/rules/open-public_6.RULE @@ -1 +1,10 @@ +--- +license_expression: open-public +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_6.yml b/src/licensedcode/data/rules/open-public_6.yml deleted file mode 100644 index c2b0c7aebca..00000000000 --- a/src/licensedcode/data/rules/open-public_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: open-public -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/open-public_7.RULE b/src/licensedcode/data/rules/open-public_7.RULE index 6379425b63f..e14253e3d88 100644 --- a/src/licensedcode/data/rules/open-public_7.RULE +++ b/src/licensedcode/data/rules/open-public_7.RULE @@ -1 +1,10 @@ +--- +license_expression: open-public +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_7.yml b/src/licensedcode/data/rules/open-public_7.yml deleted file mode 100644 index c2b0c7aebca..00000000000 --- a/src/licensedcode/data/rules/open-public_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: open-public -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/open-public_8.RULE b/src/licensedcode/data/rules/open-public_8.RULE index 205ea6e5c52..dacd72a5135 100644 --- a/src/licensedcode/data/rules/open-public_8.RULE +++ b/src/licensedcode/data/rules/open-public_8.RULE @@ -1 +1,10 @@ +--- +license_expression: open-public +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_8.yml b/src/licensedcode/data/rules/open-public_8.yml deleted file mode 100644 index c2b0c7aebca..00000000000 --- a/src/licensedcode/data/rules/open-public_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: open-public -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/open-public_9.RULE b/src/licensedcode/data/rules/open-public_9.RULE index e231661ab95..870803c8c9b 100644 --- a/src/licensedcode/data/rules/open-public_9.RULE +++ b/src/licensedcode/data/rules/open-public_9.RULE @@ -1 +1,9 @@ +--- +license_expression: open-public +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OPL-1.0 +--- + https://licenses.nuget.org/OPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_9.yml b/src/licensedcode/data/rules/open-public_9.yml deleted file mode 100644 index bcd0fb2bcec..00000000000 --- a/src/licensedcode/data/rules/open-public_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: open-public -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OPL-1.0 diff --git a/src/licensedcode/data/rules/open-public_url_1.RULE b/src/licensedcode/data/rules/open-public_url_1.RULE index 53896a58533..e7f1f06a8e6 100644 --- a/src/licensedcode/data/rules/open-public_url_1.RULE +++ b/src/licensedcode/data/rules/open-public_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: open-public +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/opl-1.0 +--- + https://spdx.org/licenses/opl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_url_1.yml b/src/licensedcode/data/rules/open-public_url_1.yml deleted file mode 100644 index 2b3b11c6c37..00000000000 --- a/src/licensedcode/data/rules/open-public_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: open-public -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/opl-1.0 diff --git a/src/licensedcode/data/rules/open-public_url_2.RULE b/src/licensedcode/data/rules/open-public_url_2.RULE index d2ae6e0a775..eabbe080bc2 100644 --- a/src/licensedcode/data/rules/open-public_url_2.RULE +++ b/src/licensedcode/data/rules/open-public_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: open-public +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/opl-1.0.html +--- + https://spdx.org/licenses/opl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/open-public_url_2.yml b/src/licensedcode/data/rules/open-public_url_2.yml deleted file mode 100644 index fc91972c3d7..00000000000 --- a/src/licensedcode/data/rules/open-public_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: open-public -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/opl-1.0.html diff --git a/src/licensedcode/data/rules/opengroup.RULE b/src/licensedcode/data/rules/opengroup.RULE index 0ce1d52fd41..3754e1cd923 100644 --- a/src/licensedcode/data/rules/opengroup.RULE +++ b/src/licensedcode/data/rules/opengroup.RULE @@ -1 +1,7 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +--- + Open Group Test Suite License \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup.yml b/src/licensedcode/data/rules/opengroup.yml deleted file mode 100644 index 34e98f26651..00000000000 --- a/src/licensedcode/data/rules/opengroup.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/opengroup_1.RULE b/src/licensedcode/data/rules/opengroup_1.RULE index 14466cda3ec..02c72e84117 100644 --- a/src/licensedcode/data/rules/opengroup_1.RULE +++ b/src/licensedcode/data/rules/opengroup_1.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt +--- + http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_1.yml b/src/licensedcode/data/rules/opengroup_1.yml deleted file mode 100644 index 190e0227883..00000000000 --- a/src/licensedcode/data/rules/opengroup_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt diff --git a/src/licensedcode/data/rules/opengroup_10.RULE b/src/licensedcode/data/rules/opengroup_10.RULE index 4a8c583e742..b957f4a024f 100644 --- a/src/licensedcode/data/rules/opengroup_10.RULE +++ b/src/licensedcode/data/rules/opengroup_10.RULE @@ -1 +1,7 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OGTSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_10.yml b/src/licensedcode/data/rules/opengroup_10.yml deleted file mode 100644 index 34e98f26651..00000000000 --- a/src/licensedcode/data/rules/opengroup_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/opengroup_11.RULE b/src/licensedcode/data/rules/opengroup_11.RULE index 2a300872b55..b1ef1f7547c 100644 --- a/src/licensedcode/data/rules/opengroup_11.RULE +++ b/src/licensedcode/data/rules/opengroup_11.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGTSL +--- + {{OGTSL}} https://spdx.org/licenses/OGTSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_11.yml b/src/licensedcode/data/rules/opengroup_11.yml deleted file mode 100644 index ec03df7d172..00000000000 --- a/src/licensedcode/data/rules/opengroup_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGTSL diff --git a/src/licensedcode/data/rules/opengroup_12.RULE b/src/licensedcode/data/rules/opengroup_12.RULE index 1d40a5dd623..feea029ecfe 100644 --- a/src/licensedcode/data/rules/opengroup_12.RULE +++ b/src/licensedcode/data/rules/opengroup_12.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OGTSL +--- + LICENSE {{OGTSL}} https://spdx.org/licenses/OGTSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_12.yml b/src/licensedcode/data/rules/opengroup_12.yml deleted file mode 100644 index ec03df7d172..00000000000 --- a/src/licensedcode/data/rules/opengroup_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OGTSL diff --git a/src/licensedcode/data/rules/opengroup_2.RULE b/src/licensedcode/data/rules/opengroup_2.RULE index 2808079b8df..7012ae51920 100644 --- a/src/licensedcode/data/rules/opengroup_2.RULE +++ b/src/licensedcode/data/rules/opengroup_2.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/opengroup.php +--- + http://opensource.org/licenses/opengroup.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_2.yml b/src/licensedcode/data/rules/opengroup_2.yml deleted file mode 100644 index 9a1c661d6e6..00000000000 --- a/src/licensedcode/data/rules/opengroup_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/opengroup.php diff --git a/src/licensedcode/data/rules/opengroup_3.RULE b/src/licensedcode/data/rules/opengroup_3.RULE index aab3a2415fd..13497130e70 100644 --- a/src/licensedcode/data/rules/opengroup_3.RULE +++ b/src/licensedcode/data/rules/opengroup_3.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OGTSL Open Group Test Suite License \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_3.yml b/src/licensedcode/data/rules/opengroup_3.yml deleted file mode 100644 index d53b052fe48..00000000000 --- a/src/licensedcode/data/rules/opengroup_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/opengroup_4.RULE b/src/licensedcode/data/rules/opengroup_4.RULE index 28d387dae0b..305932c2812 100644 --- a/src/licensedcode/data/rules/opengroup_4.RULE +++ b/src/licensedcode/data/rules/opengroup_4.RULE @@ -1 +1,10 @@ +--- +license_expression: opengroup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Group Test Suite License \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_4.yml b/src/licensedcode/data/rules/opengroup_4.yml deleted file mode 100644 index b0b577f5054..00000000000 --- a/src/licensedcode/data/rules/opengroup_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/opengroup_5.RULE b/src/licensedcode/data/rules/opengroup_5.RULE index 7a24662fe4c..dc97ecf405e 100644 --- a/src/licensedcode/data/rules/opengroup_5.RULE +++ b/src/licensedcode/data/rules/opengroup_5.RULE @@ -1 +1,10 @@ +--- +license_expression: opengroup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Group Test Suite License OGTSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_5.yml b/src/licensedcode/data/rules/opengroup_5.yml deleted file mode 100644 index b0b577f5054..00000000000 --- a/src/licensedcode/data/rules/opengroup_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/opengroup_6.RULE b/src/licensedcode/data/rules/opengroup_6.RULE index 7e56bf469b7..2ed14a03640 100644 --- a/src/licensedcode/data/rules/opengroup_6.RULE +++ b/src/licensedcode/data/rules/opengroup_6.RULE @@ -1 +1,10 @@ +--- +license_expression: opengroup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OGTSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_6.yml b/src/licensedcode/data/rules/opengroup_6.yml deleted file mode 100644 index b0b5f2a5b92..00000000000 --- a/src/licensedcode/data/rules/opengroup_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: opengroup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/opengroup_7.RULE b/src/licensedcode/data/rules/opengroup_7.RULE index 392fde414cb..fb8f236e0c6 100644 --- a/src/licensedcode/data/rules/opengroup_7.RULE +++ b/src/licensedcode/data/rules/opengroup_7.RULE @@ -1 +1,10 @@ +--- +license_expression: opengroup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Group Test Suite License \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_7.yml b/src/licensedcode/data/rules/opengroup_7.yml deleted file mode 100644 index b0b5f2a5b92..00000000000 --- a/src/licensedcode/data/rules/opengroup_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: opengroup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/opengroup_8.RULE b/src/licensedcode/data/rules/opengroup_8.RULE index 2eb04ff0994..31ed001d9bb 100644 --- a/src/licensedcode/data/rules/opengroup_8.RULE +++ b/src/licensedcode/data/rules/opengroup_8.RULE @@ -1 +1,10 @@ +--- +license_expression: opengroup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OGTSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_8.yml b/src/licensedcode/data/rules/opengroup_8.yml deleted file mode 100644 index b0b5f2a5b92..00000000000 --- a/src/licensedcode/data/rules/opengroup_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: opengroup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/opengroup_9.RULE b/src/licensedcode/data/rules/opengroup_9.RULE index ff2105f44d5..36c3497ed08 100644 --- a/src/licensedcode/data/rules/opengroup_9.RULE +++ b/src/licensedcode/data/rules/opengroup_9.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OGTSL +--- + https://licenses.nuget.org/OGTSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_9.yml b/src/licensedcode/data/rules/opengroup_9.yml deleted file mode 100644 index 77456723878..00000000000 --- a/src/licensedcode/data/rules/opengroup_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OGTSL diff --git a/src/licensedcode/data/rules/opengroup_url_1.RULE b/src/licensedcode/data/rules/opengroup_url_1.RULE index a810ca78517..6745ff43100 100644 --- a/src/licensedcode/data/rules/opengroup_url_1.RULE +++ b/src/licensedcode/data/rules/opengroup_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ogtsl +--- + https://spdx.org/licenses/ogtsl \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_url_1.yml b/src/licensedcode/data/rules/opengroup_url_1.yml deleted file mode 100644 index 783555c6f39..00000000000 --- a/src/licensedcode/data/rules/opengroup_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ogtsl diff --git a/src/licensedcode/data/rules/opengroup_url_2.RULE b/src/licensedcode/data/rules/opengroup_url_2.RULE index d8d5c96f64e..3bbbfe99e7d 100644 --- a/src/licensedcode/data/rules/opengroup_url_2.RULE +++ b/src/licensedcode/data/rules/opengroup_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ogtsl.html +--- + https://spdx.org/licenses/ogtsl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_url_2.yml b/src/licensedcode/data/rules/opengroup_url_2.yml deleted file mode 100644 index 0e4efdfeeaa..00000000000 --- a/src/licensedcode/data/rules/opengroup_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ogtsl.html diff --git a/src/licensedcode/data/rules/opengroup_url_glc_216.RULE b/src/licensedcode/data/rules/opengroup_url_glc_216.RULE index 69c0e53db28..5412016da9b 100644 --- a/src/licensedcode/data/rules/opengroup_url_glc_216.RULE +++ b/src/licensedcode/data/rules/opengroup_url_glc_216.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ogtsl +--- + http://www.opensource.org/licenses/ogtsl \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_url_glc_216.yml b/src/licensedcode/data/rules/opengroup_url_glc_216.yml deleted file mode 100644 index a6ef4fcd0b1..00000000000 --- a/src/licensedcode/data/rules/opengroup_url_glc_216.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ogtsl diff --git a/src/licensedcode/data/rules/opengroup_url_glc_217.RULE b/src/licensedcode/data/rules/opengroup_url_glc_217.RULE index 3cc847da646..aa3b3bf42a9 100644 --- a/src/licensedcode/data/rules/opengroup_url_glc_217.RULE +++ b/src/licensedcode/data/rules/opengroup_url_glc_217.RULE @@ -1 +1,9 @@ +--- +license_expression: opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ogtsl +--- + https://www.opensource.org/licenses/ogtsl \ No newline at end of file diff --git a/src/licensedcode/data/rules/opengroup_url_glc_217.yml b/src/licensedcode/data/rules/opengroup_url_glc_217.yml deleted file mode 100644 index f09a9cd6a8f..00000000000 --- a/src/licensedcode/data/rules/opengroup_url_glc_217.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ogtsl diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_1.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_1.RULE index 0265e0243a9..aebe4fb83c2 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_notice: yes +--- + NOTE: the combined work which includes the upstream components below carries forward the OpenJDK Assembly Exception (text included below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_1.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_1.yml deleted file mode 100644 index 16dce4a66ef..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_2.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_2.RULE index 2dc1669729c..a13cdb894f4 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_2.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: OpenJDK Assembly exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_2.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_2.yml deleted file mode 100644 index 85460fdc5d7..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_3.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_3.RULE index 098dac7777e..b5485bc354f 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_3.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OpenJDK-assembly-exception-1.0 OpenJDK Assembly exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_3.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_3.yml deleted file mode 100644 index 85460fdc5d7..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_4.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_4.RULE index 81ae436cba5..39556259074 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_4.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OpenJDK-assembly-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_4.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_4.yml deleted file mode 100644 index 30eea6a13c7..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_5.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_5.RULE index 623e5ce1feb..878ad067fbb 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_5.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: OpenJDK-assembly-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_5.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_5.yml deleted file mode 100644 index 30eea6a13c7..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_6.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_6.RULE index 0345ca557c1..11e6fe5ae9f 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_6.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OpenJDK-assembly-exception-1.0 +--- + https://licenses.nuget.org/OpenJDK-assembly-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_6.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_6.yml deleted file mode 100644 index d32be1ff36e..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OpenJDK-assembly-exception-1.0 diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_7.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_7.RULE index 27565e1d968..33af59625ca 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_7.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OpenJDK-assembly-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_7.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_7.yml deleted file mode 100644 index 36d9367f481..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_8.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_8.RULE index 8558bb49037..350c1174959 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_8.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OpenJDK-assembly-exception-1.0 +--- + LICENSE {{OpenJDK-assembly-exception-1.0}} https://spdx.org/licenses/OpenJDK-assembly-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_8.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_8.yml deleted file mode 100644 index c4ccb8aca3a..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OpenJDK-assembly-exception-1.0 diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_9.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_9.RULE index 9a7af96885d..bae89ecfbf9 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_9.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OpenJDK-assembly-exception-1.0 +--- + {{OpenJDK-assembly-exception-1.0}} https://spdx.org/licenses/OpenJDK-assembly-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_9.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_9.yml deleted file mode 100644 index c4ccb8aca3a..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OpenJDK-assembly-exception-1.0 diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_1.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_1.RULE index 9c0b51083b4..c61674cc60f 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/openjdk-assembly-exception-1.0 +--- + https://spdx.org/licenses/openjdk-assembly-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_1.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_1.yml deleted file mode 100644 index 7a5bbf37d17..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/openjdk-assembly-exception-1.0 diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_2.RULE b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_2.RULE index 98328eeced8..907cc542381 100644 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/openjdk-assembly-exception-1.0.html +--- + https://spdx.org/licenses/openjdk-assembly-exception-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_2.yml b/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_2.yml deleted file mode 100644 index 6e7fd9da34a..00000000000 --- a/src/licensedcode/data/rules/openjdk-assembly-exception-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/openjdk-assembly-exception-1.0.html diff --git a/src/licensedcode/data/rules/openjdk-exception_1.RULE b/src/licensedcode/data/rules/openjdk-exception_1.RULE index 92528e0c66b..b88018ec5e0 100644 --- a/src/licensedcode/data/rules/openjdk-exception_1.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - https://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception The OpenJDK source code made available by Sun at openjdk.java.net and diff --git a/src/licensedcode/data/rules/openjdk-exception_1.yml b/src/licensedcode/data/rules/openjdk-exception_1.yml deleted file mode 100644 index 6ba706d8ffa..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/openjdk-exception_2.RULE b/src/licensedcode/data/rules/openjdk-exception_2.RULE index 03bd2f0319f..05d69373475 100644 --- a/src/licensedcode/data/rules/openjdk-exception_2.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html +--- + Linking this OpenJDK Code statically or dynamically with other code is making a combined work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination. @@ -9,4 +16,4 @@ regardless of the license terms of the Designated Exception Modules, and to copy and distribute the resulting executable under GPL2, provided that the Designated Exception Modules continue to be - governed by the licenses under which they were offered by Sun. + governed by the licenses under which they were offered by Sun. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-exception_2.yml b/src/licensedcode/data/rules/openjdk-exception_2.yml deleted file mode 100644 index 5884a33c9c4..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html diff --git a/src/licensedcode/data/rules/openjdk-exception_3.RULE b/src/licensedcode/data/rules/openjdk-exception_3.RULE index f94ab371fa5..6ef05ffdcf0 100644 --- a/src/licensedcode/data/rules/openjdk-exception_3.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception @@ -24,5 +32,4 @@ build an executable that includes those portions of necessary code that Sun could not provide under GPL2 (or that Sun has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the -new code is made subject to this exception by its copyright holder. - +new code is made subject to this exception by its copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-exception_3.yml b/src/licensedcode/data/rules/openjdk-exception_3.yml deleted file mode 100644 index a57b39ab552..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/openjdk-exception_4.RULE b/src/licensedcode/data/rules/openjdk-exception_4.RULE index 20a3be30fdb..59356402a10 100644 --- a/src/licensedcode/data/rules/openjdk-exception_4.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception The OpenJDK source code made available by Sun at openjdk.java.net and diff --git a/src/licensedcode/data/rules/openjdk-exception_4.yml b/src/licensedcode/data/rules/openjdk-exception_4.yml deleted file mode 100644 index a57b39ab552..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/openjdk-exception_5.RULE b/src/licensedcode/data/rules/openjdk-exception_5.RULE index be59fc075cc..e906fb3873d 100644 --- a/src/licensedcode/data/rules/openjdk-exception_5.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - http://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception OpenJDK Assembly Exception diff --git a/src/licensedcode/data/rules/openjdk-exception_5.yml b/src/licensedcode/data/rules/openjdk-exception_5.yml deleted file mode 100644 index a57b39ab552..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/openjdk-exception_6.RULE b/src/licensedcode/data/rules/openjdk-exception_6.RULE index 00d1feebf42..e3dd3e63325 100644 --- a/src/licensedcode/data/rules/openjdk-exception_6.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_6.RULE @@ -1 +1,9 @@ +--- +license_expression: openjdk-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://openjdk.java.net/legal/assembly-exception.html +--- + http://openjdk.java.net/legal/assembly-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-exception_6.yml b/src/licensedcode/data/rules/openjdk-exception_6.yml deleted file mode 100644 index 8c936fee6f6..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openjdk-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://openjdk.java.net/legal/assembly-exception.html diff --git a/src/licensedcode/data/rules/openjdk-exception_7.RULE b/src/licensedcode/data/rules/openjdk-exception_7.RULE index 4d5c54505a0..b873d78befe 100644 --- a/src/licensedcode/data/rules/openjdk-exception_7.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html +--- + OPENJDK ASSEMBLY EXCEPTION The OpenJDK source code made available by Sun at openjdk.java.net and @@ -23,4 +30,4 @@ build an executable that includes those portions of necessary code that Sun could not provide under GPL2 (or that Sun has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the -new code is made subject to this exception by its copyright holder. +new code is made subject to this exception by its copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-exception_7.yml b/src/licensedcode/data/rules/openjdk-exception_7.yml deleted file mode 100644 index 5884a33c9c4..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html diff --git a/src/licensedcode/data/rules/openjdk-exception_8.RULE b/src/licensedcode/data/rules/openjdk-exception_8.RULE index 265a349c15d..81c0f72d735 100644 --- a/src/licensedcode/data/rules/openjdk-exception_8.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - https://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception @@ -24,5 +33,4 @@ build an executable that includes those portions of necessary code that Sun could not provide under GPL2 (or that Sun has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the -new code is made subject to this exception by its copyright holder. - +new code is made subject to this exception by its copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-exception_8.yml b/src/licensedcode/data/rules/openjdk-exception_8.yml deleted file mode 100644 index 6ba706d8ffa..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/openjdk-exception_9.RULE b/src/licensedcode/data/rules/openjdk-exception_9.RULE index 94d2fa42763..61f80413dfc 100644 --- a/src/licensedcode/data/rules/openjdk-exception_9.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://openjdk.java.net/legal/exception-modules-2007-05-08.html + - https://www.gnu.org/copyleft/gpl.html +--- + OpenJDK Assembly Exception OpenJDK Assembly Exception diff --git a/src/licensedcode/data/rules/openjdk-exception_9.yml b/src/licensedcode/data/rules/openjdk-exception_9.yml deleted file mode 100644 index 6ba706d8ffa..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://openjdk.java.net/legal/exception-modules-2007-05-08.html - - https://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/openjdk-exception_designated-modules.RULE b/src/licensedcode/data/rules/openjdk-exception_designated-modules.RULE index 0c7350e0899..10da5322b24 100644 --- a/src/licensedcode/data/rules/openjdk-exception_designated-modules.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_designated-modules.RULE @@ -1,3 +1,8 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +--- + OpenJDK Designated Exception Modules 8 May 2007 @@ -22,5 +27,4 @@ Exception Modules: Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open source license other than GPL, and your derivatives thereof - that are in compliance with the applicable open source license. - + that are in compliance with the applicable open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-exception_designated-modules.yml b/src/licensedcode/data/rules/openjdk-exception_designated-modules.yml deleted file mode 100644 index c45eff3ec80..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_designated-modules.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/openjdk-exception_designated-modules2.RULE b/src/licensedcode/data/rules/openjdk-exception_designated-modules2.RULE index 7a9e9b40e80..3f72b0106a3 100644 --- a/src/licensedcode/data/rules/openjdk-exception_designated-modules2.RULE +++ b/src/licensedcode/data/rules/openjdk-exception_designated-modules2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: openjdk-exception +is_license_notice: yes +--- + OpenJDK Designated Exception Modules OpenJDK Designated Exception Modules @@ -23,5 +28,4 @@ Exception Modules: Any files in the OpenJDK distribution that are made available at openjdk.java.net, openjdk.dev.java.net, or download.java.net under an open source license other than GPL, and your derivatives thereof - that are in compliance with the applicable open source license. - + that are in compliance with the applicable open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openjdk-exception_designated-modules2.yml b/src/licensedcode/data/rules/openjdk-exception_designated-modules2.yml deleted file mode 100644 index c45eff3ec80..00000000000 --- a/src/licensedcode/data/rules/openjdk-exception_designated-modules2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: openjdk-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/openldap-1.1.RULE b/src/licensedcode/data/rules/openldap-1.1.RULE index c2270fdbb5c..94c90877fb0 100644 --- a/src/licensedcode/data/rules/openldap-1.1.RULE +++ b/src/licensedcode/data/rules/openldap-1.1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: openldap-1.1 +is_license_text: yes +minimum_coverage: 70 +notes: OpenLDAP 1.1 +ignorable_copyrights: + - Copyright 1998, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.1, 25 August 1998 @@ -117,4 +128,4 @@ products derived from this software without specific prior written permission. 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1.yml b/src/licensedcode/data/rules/openldap-1.1.yml deleted file mode 100644 index 1de19009e1b..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: openldap-1.1 -is_license_text: yes -minimum_coverage: 70 -notes: OpenLDAP 1.1 -ignorable_copyrights: - - Copyright 1998, The OpenLDAP Foundation -ignorable_holders: - - The OpenLDAP Foundation diff --git a/src/licensedcode/data/rules/openldap-1.1_1.RULE b/src/licensedcode/data/rules/openldap-1.1_1.RULE index 1314da4f55a..e18ae36fa6b 100644 --- a/src/licensedcode/data/rules/openldap-1.1_1.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_1.yml b/src/licensedcode/data/rules/openldap-1.1_1.yml deleted file mode 100644 index 15baf8e5d85..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-1.1_10.RULE b/src/licensedcode/data/rules/openldap-1.1_10.RULE index 28001fd9d40..7df64811929 100644 --- a/src/licensedcode/data/rules/openldap-1.1_10.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-1.1 +--- + {{OLDAP-1.1}} https://spdx.org/licenses/OLDAP-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_10.yml b/src/licensedcode/data/rules/openldap-1.1_10.yml deleted file mode 100644 index 8ee3aee8b36..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-1.1 diff --git a/src/licensedcode/data/rules/openldap-1.1_11.RULE b/src/licensedcode/data/rules/openldap-1.1_11.RULE index ff04f639412..f1a85fcbf9e 100644 --- a/src/licensedcode/data/rules/openldap-1.1_11.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-1.1 +--- + LICENSE {{OLDAP-1.1}} https://spdx.org/licenses/OLDAP-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_11.yml b/src/licensedcode/data/rules/openldap-1.1_11.yml deleted file mode 100644 index 8ee3aee8b36..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-1.1 diff --git a/src/licensedcode/data/rules/openldap-1.1_2.RULE b/src/licensedcode/data/rules/openldap-1.1_2.RULE index 5bbeb82e634..300b8062921 100644 --- a/src/licensedcode/data/rules/openldap-1.1_2.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-1.1 Open LDAP Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_2.yml b/src/licensedcode/data/rules/openldap-1.1_2.yml deleted file mode 100644 index 15baf8e5d85..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-1.1_3.RULE b/src/licensedcode/data/rules/openldap-1.1_3.RULE index e1b4669d4ef..403417afe1f 100644 --- a/src/licensedcode/data/rules/openldap-1.1_3.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_3.yml b/src/licensedcode/data/rules/openldap-1.1_3.yml deleted file mode 100644 index 5c9e3df3e30..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.1_4.RULE b/src/licensedcode/data/rules/openldap-1.1_4.RULE index 86d82d935bc..0ae516a8280 100644 --- a/src/licensedcode/data/rules/openldap-1.1_4.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v1.1 OLDAP-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_4.yml b/src/licensedcode/data/rules/openldap-1.1_4.yml deleted file mode 100644 index 5c9e3df3e30..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.1_5.RULE b/src/licensedcode/data/rules/openldap-1.1_5.RULE index bf6c68ba3eb..70a0b89201e 100644 --- a/src/licensedcode/data/rules/openldap-1.1_5.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_5.yml b/src/licensedcode/data/rules/openldap-1.1_5.yml deleted file mode 100644 index 4ae6b0efa13..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.1_6.RULE b/src/licensedcode/data/rules/openldap-1.1_6.RULE index 25ae9fadfb5..f4c8da78670 100644 --- a/src/licensedcode/data/rules/openldap-1.1_6.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_6.yml b/src/licensedcode/data/rules/openldap-1.1_6.yml deleted file mode 100644 index 4ae6b0efa13..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.1_7.RULE b/src/licensedcode/data/rules/openldap-1.1_7.RULE index 34b7037645d..96bb10c3279 100644 --- a/src/licensedcode/data/rules/openldap-1.1_7.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_7.yml b/src/licensedcode/data/rules/openldap-1.1_7.yml deleted file mode 100644 index 4ae6b0efa13..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.1_8.RULE b/src/licensedcode/data/rules/openldap-1.1_8.RULE index 3e016432577..a8b64b34c9e 100644 --- a/src/licensedcode/data/rules/openldap-1.1_8.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-1.1 +--- + https://licenses.nuget.org/OLDAP-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_8.yml b/src/licensedcode/data/rules/openldap-1.1_8.yml deleted file mode 100644 index b0239af8a8b..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-1.1 diff --git a/src/licensedcode/data/rules/openldap-1.1_9.RULE b/src/licensedcode/data/rules/openldap-1.1_9.RULE index 6d341cabd9d..26e79f7b9f0 100644 --- a/src/licensedcode/data/rules/openldap-1.1_9.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_9.yml b/src/licensedcode/data/rules/openldap-1.1_9.yml deleted file mode 100644 index 1b9bcfc56ef..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-1.1_url_1.RULE b/src/licensedcode/data/rules/openldap-1.1_url_1.RULE index 40c610801f4..f7c762bc06c 100644 --- a/src/licensedcode/data/rules/openldap-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-1.1 +--- + https://spdx.org/licenses/oldap-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_url_1.yml b/src/licensedcode/data/rules/openldap-1.1_url_1.yml deleted file mode 100644 index 10b78b8ec40..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-1.1 diff --git a/src/licensedcode/data/rules/openldap-1.1_url_2.RULE b/src/licensedcode/data/rules/openldap-1.1_url_2.RULE index ed6c087705a..9fc2b42b388 100644 --- a/src/licensedcode/data/rules/openldap-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-1.1.html +--- + https://spdx.org/licenses/oldap-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.1_url_2.yml b/src/licensedcode/data/rules/openldap-1.1_url_2.yml deleted file mode 100644 index 487696e69d4..00000000000 --- a/src/licensedcode/data/rules/openldap-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-1.1.html diff --git a/src/licensedcode/data/rules/openldap-1.2.RULE b/src/licensedcode/data/rules/openldap-1.2.RULE index 13d08c44e4f..a7be2b73726 100644 --- a/src/licensedcode/data/rules/openldap-1.2.RULE +++ b/src/licensedcode/data/rules/openldap-1.2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: openldap-1.2 +is_license_text: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1998, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.2, 1 September 1998 @@ -126,4 +136,4 @@ written permission. 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2.yml b/src/licensedcode/data/rules/openldap-1.2.yml deleted file mode 100644 index b0cf7338567..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: openldap-1.2 -is_license_text: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1998, The OpenLDAP Foundation -ignorable_holders: - - The OpenLDAP Foundation diff --git a/src/licensedcode/data/rules/openldap-1.2_1.RULE b/src/licensedcode/data/rules/openldap-1.2_1.RULE index a3f83765cce..5fd231ff935 100644 --- a/src/licensedcode/data/rules/openldap-1.2_1.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_1.yml b/src/licensedcode/data/rules/openldap-1.2_1.yml deleted file mode 100644 index feb321abf55..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-1.2_10.RULE b/src/licensedcode/data/rules/openldap-1.2_10.RULE index 336fb809a3d..4896d790db9 100644 --- a/src/licensedcode/data/rules/openldap-1.2_10.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-1.2 +--- + {{OLDAP-1.2}} https://spdx.org/licenses/OLDAP-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_10.yml b/src/licensedcode/data/rules/openldap-1.2_10.yml deleted file mode 100644 index fe5f65edebb..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-1.2 diff --git a/src/licensedcode/data/rules/openldap-1.2_11.RULE b/src/licensedcode/data/rules/openldap-1.2_11.RULE index 0e49ba67327..55506b99307 100644 --- a/src/licensedcode/data/rules/openldap-1.2_11.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-1.2 +--- + LICENSE {{OLDAP-1.2}} https://spdx.org/licenses/OLDAP-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_11.yml b/src/licensedcode/data/rules/openldap-1.2_11.yml deleted file mode 100644 index fe5f65edebb..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-1.2 diff --git a/src/licensedcode/data/rules/openldap-1.2_2.RULE b/src/licensedcode/data/rules/openldap-1.2_2.RULE index d0266660566..c2f47b615b6 100644 --- a/src/licensedcode/data/rules/openldap-1.2_2.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-1.2 Open LDAP Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_2.yml b/src/licensedcode/data/rules/openldap-1.2_2.yml deleted file mode 100644 index feb321abf55..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-1.2_3.RULE b/src/licensedcode/data/rules/openldap-1.2_3.RULE index 8fc768ffbeb..f2db646934f 100644 --- a/src/licensedcode/data/rules/openldap-1.2_3.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_3.yml b/src/licensedcode/data/rules/openldap-1.2_3.yml deleted file mode 100644 index 35f955a259c..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.2_4.RULE b/src/licensedcode/data/rules/openldap-1.2_4.RULE index 0ce6c07864c..c2a870b5b1c 100644 --- a/src/licensedcode/data/rules/openldap-1.2_4.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v1.2 OLDAP-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_4.yml b/src/licensedcode/data/rules/openldap-1.2_4.yml deleted file mode 100644 index 35f955a259c..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.2_5.RULE b/src/licensedcode/data/rules/openldap-1.2_5.RULE index 356db201eed..25ceb49cebf 100644 --- a/src/licensedcode/data/rules/openldap-1.2_5.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_5.yml b/src/licensedcode/data/rules/openldap-1.2_5.yml deleted file mode 100644 index bcc47a59b31..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.2_6.RULE b/src/licensedcode/data/rules/openldap-1.2_6.RULE index 29a40779dd8..0bf936c5f80 100644 --- a/src/licensedcode/data/rules/openldap-1.2_6.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_6.yml b/src/licensedcode/data/rules/openldap-1.2_6.yml deleted file mode 100644 index bcc47a59b31..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.2_7.RULE b/src/licensedcode/data/rules/openldap-1.2_7.RULE index c13669d05e9..bcd29edddfd 100644 --- a/src/licensedcode/data/rules/openldap-1.2_7.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_7.yml b/src/licensedcode/data/rules/openldap-1.2_7.yml deleted file mode 100644 index bcc47a59b31..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.2_8.RULE b/src/licensedcode/data/rules/openldap-1.2_8.RULE index 517776ff267..a4f70052931 100644 --- a/src/licensedcode/data/rules/openldap-1.2_8.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-1.2 +--- + https://licenses.nuget.org/OLDAP-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_8.yml b/src/licensedcode/data/rules/openldap-1.2_8.yml deleted file mode 100644 index fa2abd69490..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-1.2 diff --git a/src/licensedcode/data/rules/openldap-1.2_9.RULE b/src/licensedcode/data/rules/openldap-1.2_9.RULE index 874eeeb72fa..4af8c0d8210 100644 --- a/src/licensedcode/data/rules/openldap-1.2_9.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_9.yml b/src/licensedcode/data/rules/openldap-1.2_9.yml deleted file mode 100644 index 6612aa0d200..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-1.2_url_1.RULE b/src/licensedcode/data/rules/openldap-1.2_url_1.RULE index db3892417b9..b867a4113a1 100644 --- a/src/licensedcode/data/rules/openldap-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-1.2 +--- + https://spdx.org/licenses/oldap-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_url_1.yml b/src/licensedcode/data/rules/openldap-1.2_url_1.yml deleted file mode 100644 index a6213693fe7..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-1.2 diff --git a/src/licensedcode/data/rules/openldap-1.2_url_2.RULE b/src/licensedcode/data/rules/openldap-1.2_url_2.RULE index 57689d19d9c..5ed6140d0c8 100644 --- a/src/licensedcode/data/rules/openldap-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-1.2.html +--- + https://spdx.org/licenses/oldap-1.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.2_url_2.yml b/src/licensedcode/data/rules/openldap-1.2_url_2.yml deleted file mode 100644 index 8e41d5c4b82..00000000000 --- a/src/licensedcode/data/rules/openldap-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-1.2.html diff --git a/src/licensedcode/data/rules/openldap-1.3.RULE b/src/licensedcode/data/rules/openldap-1.3.RULE index 0be6813fd0e..a95e621f780 100644 --- a/src/licensedcode/data/rules/openldap-1.3.RULE +++ b/src/licensedcode/data/rules/openldap-1.3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: openldap-1.3 +is_license_text: yes +minimum_coverage: 70 +notes: OpenLDAP 1.3 +ignorable_copyrights: + - Copyright 1998-1999, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.3, 17 January 1999 @@ -133,4 +144,4 @@ written permission. 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3.yml b/src/licensedcode/data/rules/openldap-1.3.yml deleted file mode 100644 index 50a386efff0..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: openldap-1.3 -is_license_text: yes -minimum_coverage: 70 -notes: OpenLDAP 1.3 -ignorable_copyrights: - - Copyright 1998-1999, The OpenLDAP Foundation -ignorable_holders: - - The OpenLDAP Foundation diff --git a/src/licensedcode/data/rules/openldap-1.3_1.RULE b/src/licensedcode/data/rules/openldap-1.3_1.RULE index e8323e0cba8..36b92618e97 100644 --- a/src/licensedcode/data/rules/openldap-1.3_1.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_1.yml b/src/licensedcode/data/rules/openldap-1.3_1.yml deleted file mode 100644 index cb9c66b74db..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-1.3_10.RULE b/src/licensedcode/data/rules/openldap-1.3_10.RULE index cd20e143c92..b30081cb590 100644 --- a/src/licensedcode/data/rules/openldap-1.3_10.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-1.3 +--- + {{OLDAP-1.3}} https://spdx.org/licenses/OLDAP-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_10.yml b/src/licensedcode/data/rules/openldap-1.3_10.yml deleted file mode 100644 index ff87b68a246..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-1.3 diff --git a/src/licensedcode/data/rules/openldap-1.3_11.RULE b/src/licensedcode/data/rules/openldap-1.3_11.RULE index 525bbb384bd..9dba841d3e7 100644 --- a/src/licensedcode/data/rules/openldap-1.3_11.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-1.3 +--- + LICENSE {{OLDAP-1.3}} https://spdx.org/licenses/OLDAP-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_11.yml b/src/licensedcode/data/rules/openldap-1.3_11.yml deleted file mode 100644 index ff87b68a246..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-1.3 diff --git a/src/licensedcode/data/rules/openldap-1.3_2.RULE b/src/licensedcode/data/rules/openldap-1.3_2.RULE index c59e4ed27c4..1155c040ce5 100644 --- a/src/licensedcode/data/rules/openldap-1.3_2.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-1.3 Open LDAP Public License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_2.yml b/src/licensedcode/data/rules/openldap-1.3_2.yml deleted file mode 100644 index cb9c66b74db..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-1.3_3.RULE b/src/licensedcode/data/rules/openldap-1.3_3.RULE index 20d7c6e7660..7fe22164935 100644 --- a/src/licensedcode/data/rules/openldap-1.3_3.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_3.yml b/src/licensedcode/data/rules/openldap-1.3_3.yml deleted file mode 100644 index 28d7f6877b4..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.3_4.RULE b/src/licensedcode/data/rules/openldap-1.3_4.RULE index 1c3b508b398..49221a44678 100644 --- a/src/licensedcode/data/rules/openldap-1.3_4.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v1.3 OLDAP-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_4.yml b/src/licensedcode/data/rules/openldap-1.3_4.yml deleted file mode 100644 index 28d7f6877b4..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.3_5.RULE b/src/licensedcode/data/rules/openldap-1.3_5.RULE index 9cc2a1cc3f3..f80446955a6 100644 --- a/src/licensedcode/data/rules/openldap-1.3_5.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_5.yml b/src/licensedcode/data/rules/openldap-1.3_5.yml deleted file mode 100644 index 206b850c44b..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.3_6.RULE b/src/licensedcode/data/rules/openldap-1.3_6.RULE index 8a4857e1ef2..b28995f584f 100644 --- a/src/licensedcode/data/rules/openldap-1.3_6.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_6.yml b/src/licensedcode/data/rules/openldap-1.3_6.yml deleted file mode 100644 index 206b850c44b..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.3_7.RULE b/src/licensedcode/data/rules/openldap-1.3_7.RULE index 8da02047b68..42258d6e450 100644 --- a/src/licensedcode/data/rules/openldap-1.3_7.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_7.yml b/src/licensedcode/data/rules/openldap-1.3_7.yml deleted file mode 100644 index 206b850c44b..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.3_8.RULE b/src/licensedcode/data/rules/openldap-1.3_8.RULE index 4e00b4d46a9..8cc721dd498 100644 --- a/src/licensedcode/data/rules/openldap-1.3_8.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-1.3 +--- + https://licenses.nuget.org/OLDAP-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_8.yml b/src/licensedcode/data/rules/openldap-1.3_8.yml deleted file mode 100644 index 52c56b8046e..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-1.3 diff --git a/src/licensedcode/data/rules/openldap-1.3_9.RULE b/src/licensedcode/data/rules/openldap-1.3_9.RULE index a8a009f5909..d5c92c58547 100644 --- a/src/licensedcode/data/rules/openldap-1.3_9.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_9.yml b/src/licensedcode/data/rules/openldap-1.3_9.yml deleted file mode 100644 index df995a433fb..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-1.3_url_1.RULE b/src/licensedcode/data/rules/openldap-1.3_url_1.RULE index ad217c77dd5..92ce1215ea6 100644 --- a/src/licensedcode/data/rules/openldap-1.3_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-1.3 +--- + https://spdx.org/licenses/oldap-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_url_1.yml b/src/licensedcode/data/rules/openldap-1.3_url_1.yml deleted file mode 100644 index 6859f636ae5..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-1.3 diff --git a/src/licensedcode/data/rules/openldap-1.3_url_2.RULE b/src/licensedcode/data/rules/openldap-1.3_url_2.RULE index 614a19980ce..6441b4f695b 100644 --- a/src/licensedcode/data/rules/openldap-1.3_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-1.3_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-1.3.html +--- + https://spdx.org/licenses/oldap-1.3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.3_url_2.yml b/src/licensedcode/data/rules/openldap-1.3_url_2.yml deleted file mode 100644 index 1a46b7ee548..00000000000 --- a/src/licensedcode/data/rules/openldap-1.3_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-1.3.html diff --git a/src/licensedcode/data/rules/openldap-1.4.RULE b/src/licensedcode/data/rules/openldap-1.4.RULE index c7a2fc9bb5f..85181844c1e 100644 --- a/src/licensedcode/data/rules/openldap-1.4.RULE +++ b/src/licensedcode/data/rules/openldap-1.4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: openldap-1.4 +is_license_text: yes +minimum_coverage: 70 +notes: OpenLDAP 1.4 +ignorable_copyrights: + - Copyright 1998-1999, The OpenLDAP Foundation +ignorable_holders: + - The OpenLDAP Foundation +--- + The OpenLDAP Public License Version 1.4, 18 January 1999 @@ -135,4 +146,4 @@ written permission. 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4.yml b/src/licensedcode/data/rules/openldap-1.4.yml deleted file mode 100644 index 2c1cf96b30c..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: openldap-1.4 -is_license_text: yes -minimum_coverage: 70 -notes: OpenLDAP 1.4 -ignorable_copyrights: - - Copyright 1998-1999, The OpenLDAP Foundation -ignorable_holders: - - The OpenLDAP Foundation diff --git a/src/licensedcode/data/rules/openldap-1.4_1.RULE b/src/licensedcode/data/rules/openldap-1.4_1.RULE index 826ac73a76e..3ee2747b57d 100644 --- a/src/licensedcode/data/rules/openldap-1.4_1.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_1.yml b/src/licensedcode/data/rules/openldap-1.4_1.yml deleted file mode 100644 index 6213555947a..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-1.4_10.RULE b/src/licensedcode/data/rules/openldap-1.4_10.RULE index aa2b1b65c29..244d4905319 100644 --- a/src/licensedcode/data/rules/openldap-1.4_10.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-1.4 +--- + LICENSE {{OLDAP-1.4}} https://spdx.org/licenses/OLDAP-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_10.yml b/src/licensedcode/data/rules/openldap-1.4_10.yml deleted file mode 100644 index 521cf0dc92b..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-1.4 diff --git a/src/licensedcode/data/rules/openldap-1.4_11.RULE b/src/licensedcode/data/rules/openldap-1.4_11.RULE index d59ccf680e3..19610a815ed 100644 --- a/src/licensedcode/data/rules/openldap-1.4_11.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-1.4 +--- + {{OLDAP-1.4}} https://spdx.org/licenses/OLDAP-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_11.yml b/src/licensedcode/data/rules/openldap-1.4_11.yml deleted file mode 100644 index 521cf0dc92b..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-1.4 diff --git a/src/licensedcode/data/rules/openldap-1.4_2.RULE b/src/licensedcode/data/rules/openldap-1.4_2.RULE index f4c5f81c168..b7e92f35987 100644 --- a/src/licensedcode/data/rules/openldap-1.4_2.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-1.4 Open LDAP Public License v1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_2.yml b/src/licensedcode/data/rules/openldap-1.4_2.yml deleted file mode 100644 index 6213555947a..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-1.4_3.RULE b/src/licensedcode/data/rules/openldap-1.4_3.RULE index e9f5213f004..767bed7e97c 100644 --- a/src/licensedcode/data/rules/openldap-1.4_3.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_3.yml b/src/licensedcode/data/rules/openldap-1.4_3.yml deleted file mode 100644 index be3be110137..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.4_4.RULE b/src/licensedcode/data/rules/openldap-1.4_4.RULE index 53e40d99194..e2d1b313267 100644 --- a/src/licensedcode/data/rules/openldap-1.4_4.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v1.4 OLDAP-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_4.yml b/src/licensedcode/data/rules/openldap-1.4_4.yml deleted file mode 100644 index be3be110137..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.4_5.RULE b/src/licensedcode/data/rules/openldap-1.4_5.RULE index 2a0a99267a3..6dbe9475166 100644 --- a/src/licensedcode/data/rules/openldap-1.4_5.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_5.yml b/src/licensedcode/data/rules/openldap-1.4_5.yml deleted file mode 100644 index 14086eda27c..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.4_6.RULE b/src/licensedcode/data/rules/openldap-1.4_6.RULE index 42094da13d9..d825d427fa2 100644 --- a/src/licensedcode/data/rules/openldap-1.4_6.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_6.yml b/src/licensedcode/data/rules/openldap-1.4_6.yml deleted file mode 100644 index 14086eda27c..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.4_7.RULE b/src/licensedcode/data/rules/openldap-1.4_7.RULE index 3771189f34f..c9a063e54d2 100644 --- a/src/licensedcode/data/rules/openldap-1.4_7.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_7.yml b/src/licensedcode/data/rules/openldap-1.4_7.yml deleted file mode 100644 index 14086eda27c..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-1.4_8.RULE b/src/licensedcode/data/rules/openldap-1.4_8.RULE index c28a33875b2..573c794a26f 100644 --- a/src/licensedcode/data/rules/openldap-1.4_8.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-1.4 +--- + https://licenses.nuget.org/OLDAP-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_8.yml b/src/licensedcode/data/rules/openldap-1.4_8.yml deleted file mode 100644 index c16736419dc..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-1.4 diff --git a/src/licensedcode/data/rules/openldap-1.4_9.RULE b/src/licensedcode/data/rules/openldap-1.4_9.RULE index 0a7dce0fa51..8e2cc336a2f 100644 --- a/src/licensedcode/data/rules/openldap-1.4_9.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_9.yml b/src/licensedcode/data/rules/openldap-1.4_9.yml deleted file mode 100644 index 80c1334a472..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-1.4_url_1.RULE b/src/licensedcode/data/rules/openldap-1.4_url_1.RULE index cbc6e4d10a9..0b1fa13e553 100644 --- a/src/licensedcode/data/rules/openldap-1.4_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-1.4 +--- + https://spdx.org/licenses/oldap-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_url_1.yml b/src/licensedcode/data/rules/openldap-1.4_url_1.yml deleted file mode 100644 index dd3198c7c9e..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-1.4 diff --git a/src/licensedcode/data/rules/openldap-1.4_url_2.RULE b/src/licensedcode/data/rules/openldap-1.4_url_2.RULE index 8c96a67cc30..f195ade0da2 100644 --- a/src/licensedcode/data/rules/openldap-1.4_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-1.4_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-1.4.html +--- + https://spdx.org/licenses/oldap-1.4.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-1.4_url_2.yml b/src/licensedcode/data/rules/openldap-1.4_url_2.yml deleted file mode 100644 index 7a1371d58b6..00000000000 --- a/src/licensedcode/data/rules/openldap-1.4_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-1.4.html diff --git a/src/licensedcode/data/rules/openldap-2.0.1_1.RULE b/src/licensedcode/data/rules/openldap-2.0.1_1.RULE index 98b1d7af577..b1d3a9570a5 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_1.yml b/src/licensedcode/data/rules/openldap-2.0.1_1.yml deleted file mode 100644 index cc3b437ae2e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.0.1_10.RULE b/src/licensedcode/data/rules/openldap-2.0.1_10.RULE index 58ed2fd1fae..b92c8edbbec 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.0.1 +--- + {{OLDAP-2.0.1}} https://spdx.org/licenses/OLDAP-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_10.yml b/src/licensedcode/data/rules/openldap-2.0.1_10.yml deleted file mode 100644 index b9d663427fe..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.0.1 diff --git a/src/licensedcode/data/rules/openldap-2.0.1_11.RULE b/src/licensedcode/data/rules/openldap-2.0.1_11.RULE index d17872b7e36..fcd7c1db74e 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.0.1 +--- + LICENSE {{OLDAP-2.0.1}} https://spdx.org/licenses/OLDAP-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_11.yml b/src/licensedcode/data/rules/openldap-2.0.1_11.yml deleted file mode 100644 index b9d663427fe..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.0.1 diff --git a/src/licensedcode/data/rules/openldap-2.0.1_2.RULE b/src/licensedcode/data/rules/openldap-2.0.1_2.RULE index fc22651a013..3c26c3295f5 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.0.1 Open LDAP Public License v2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_2.yml b/src/licensedcode/data/rules/openldap-2.0.1_2.yml deleted file mode 100644 index cc3b437ae2e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.0.1_3.RULE b/src/licensedcode/data/rules/openldap-2.0.1_3.RULE index 1757380aaa0..4b6e77874e2 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_3.yml b/src/licensedcode/data/rules/openldap-2.0.1_3.yml deleted file mode 100644 index 1cccf7bfa1a..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0.1_4.RULE b/src/licensedcode/data/rules/openldap-2.0.1_4.RULE index 83fe7aeda52..297d6ddd14a 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.0.1 OLDAP-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_4.yml b/src/licensedcode/data/rules/openldap-2.0.1_4.yml deleted file mode 100644 index 1cccf7bfa1a..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0.1_5.RULE b/src/licensedcode/data/rules/openldap-2.0.1_5.RULE index e96edb9f086..bfe4940d499 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_5.yml b/src/licensedcode/data/rules/openldap-2.0.1_5.yml deleted file mode 100644 index 4f6662e97fa..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0.1_6.RULE b/src/licensedcode/data/rules/openldap-2.0.1_6.RULE index c6a25064c37..b645b8ba9ef 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_6.yml b/src/licensedcode/data/rules/openldap-2.0.1_6.yml deleted file mode 100644 index 4f6662e97fa..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0.1_7.RULE b/src/licensedcode/data/rules/openldap-2.0.1_7.RULE index d048b270b84..ea5ff0122b2 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_7.yml b/src/licensedcode/data/rules/openldap-2.0.1_7.yml deleted file mode 100644 index 4f6662e97fa..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0.1_8.RULE b/src/licensedcode/data/rules/openldap-2.0.1_8.RULE index 705c0531869..db3a1a742dd 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.0.1 +--- + https://licenses.nuget.org/OLDAP-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_8.yml b/src/licensedcode/data/rules/openldap-2.0.1_8.yml deleted file mode 100644 index 88fce37252f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.0.1 diff --git a/src/licensedcode/data/rules/openldap-2.0.1_9.RULE b/src/licensedcode/data/rules/openldap-2.0.1_9.RULE index f0a34785c9f..9e1db3dd3a0 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_9.yml b/src/licensedcode/data/rules/openldap-2.0.1_9.yml deleted file mode 100644 index 8722aea8b29..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.0.1_url_1.RULE b/src/licensedcode/data/rules/openldap-2.0.1_url_1.RULE index f14bc0e9d80..9e302c28219 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.0.1 +--- + https://spdx.org/licenses/oldap-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_url_1.yml b/src/licensedcode/data/rules/openldap-2.0.1_url_1.yml deleted file mode 100644 index 8e39d7d724b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.0.1 diff --git a/src/licensedcode/data/rules/openldap-2.0.1_url_2.RULE b/src/licensedcode/data/rules/openldap-2.0.1_url_2.RULE index a5c6cd2a646..4a27dd399fc 100644 --- a/src/licensedcode/data/rules/openldap-2.0.1_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.0.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.0.1.html +--- + https://spdx.org/licenses/oldap-2.0.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0.1_url_2.yml b/src/licensedcode/data/rules/openldap-2.0.1_url_2.yml deleted file mode 100644 index 0417b34a5e5..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.0.1.html diff --git a/src/licensedcode/data/rules/openldap-2.0_1.RULE b/src/licensedcode/data/rules/openldap-2.0_1.RULE index a03313f3dc5..46456c6cfcd 100644 --- a/src/licensedcode/data/rules/openldap-2.0_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_1.yml b/src/licensedcode/data/rules/openldap-2.0_1.yml deleted file mode 100644 index 319b0f47328..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.0_10.RULE b/src/licensedcode/data/rules/openldap-2.0_10.RULE index daf11addc17..38ef61aafad 100644 --- a/src/licensedcode/data/rules/openldap-2.0_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.0 +--- + https://licenses.nuget.org/OLDAP-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_10.yml b/src/licensedcode/data/rules/openldap-2.0_10.yml deleted file mode 100644 index 00ac9cac549..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.0 diff --git a/src/licensedcode/data/rules/openldap-2.0_11.RULE b/src/licensedcode/data/rules/openldap-2.0_11.RULE index 3be0d71a0cd..c8ab370edce 100644 --- a/src/licensedcode/data/rules/openldap-2.0_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_11.yml b/src/licensedcode/data/rules/openldap-2.0_11.yml deleted file mode 100644 index f4379ac660b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.0_12.RULE b/src/licensedcode/data/rules/openldap-2.0_12.RULE index 9bbb8f1a898..c3c8a6dacf8 100644 --- a/src/licensedcode/data/rules/openldap-2.0_12.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.0 +--- + LICENSE {{OLDAP-2.0}} https://spdx.org/licenses/OLDAP-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_12.yml b/src/licensedcode/data/rules/openldap-2.0_12.yml deleted file mode 100644 index 63e3b20881b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.0 diff --git a/src/licensedcode/data/rules/openldap-2.0_13.RULE b/src/licensedcode/data/rules/openldap-2.0_13.RULE index 35ed38dfaba..00cbebea543 100644 --- a/src/licensedcode/data/rules/openldap-2.0_13.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.0 +--- + {{OLDAP-2.0}} https://spdx.org/licenses/OLDAP-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_13.yml b/src/licensedcode/data/rules/openldap-2.0_13.yml deleted file mode 100644 index 63e3b20881b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.0 diff --git a/src/licensedcode/data/rules/openldap-2.0_2.RULE b/src/licensedcode/data/rules/openldap-2.0_2.RULE index ca0cca6bf7e..68b903a387f 100644 --- a/src/licensedcode/data/rules/openldap-2.0_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B) \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_2.yml b/src/licensedcode/data/rules/openldap-2.0_2.yml deleted file mode 100644 index 319b0f47328..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.0_3.RULE b/src/licensedcode/data/rules/openldap-2.0_3.RULE index f0d977167e5..1805637c393 100644 --- a/src/licensedcode/data/rules/openldap-2.0_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.0 Open LDAP Public License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_3.yml b/src/licensedcode/data/rules/openldap-2.0_3.yml deleted file mode 100644 index 319b0f47328..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.0_4.RULE b/src/licensedcode/data/rules/openldap-2.0_4.RULE index 6a74a95aa3e..a003ec621e5 100644 --- a/src/licensedcode/data/rules/openldap-2.0_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.0 Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B) \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_4.yml b/src/licensedcode/data/rules/openldap-2.0_4.yml deleted file mode 100644 index 319b0f47328..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.0_5.RULE b/src/licensedcode/data/rules/openldap-2.0_5.RULE index 79d0628ab1d..f7319fc0f92 100644 --- a/src/licensedcode/data/rules/openldap-2.0_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B) \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_5.yml b/src/licensedcode/data/rules/openldap-2.0_5.yml deleted file mode 100644 index 5cedf707175..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0_6.RULE b/src/licensedcode/data/rules/openldap-2.0_6.RULE index 7df6ad9736c..de97a7b3bf7 100644 --- a/src/licensedcode/data/rules/openldap-2.0_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B) OLDAP-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_6.yml b/src/licensedcode/data/rules/openldap-2.0_6.yml deleted file mode 100644 index 5cedf707175..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0_7.RULE b/src/licensedcode/data/rules/openldap-2.0_7.RULE index a0baf667817..e9ed3103ab6 100644 --- a/src/licensedcode/data/rules/openldap-2.0_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_7.yml b/src/licensedcode/data/rules/openldap-2.0_7.yml deleted file mode 100644 index 1679fef5270..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0_8.RULE b/src/licensedcode/data/rules/openldap-2.0_8.RULE index 16e525c4f05..200eda290a3 100644 --- a/src/licensedcode/data/rules/openldap-2.0_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B) \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_8.yml b/src/licensedcode/data/rules/openldap-2.0_8.yml deleted file mode 100644 index 1679fef5270..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0_9.RULE b/src/licensedcode/data/rules/openldap-2.0_9.RULE index a0675ffcb5f..9a656323822 100644 --- a/src/licensedcode/data/rules/openldap-2.0_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_9.yml b/src/licensedcode/data/rules/openldap-2.0_9.yml deleted file mode 100644 index 1679fef5270..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.0_url_1.RULE b/src/licensedcode/data/rules/openldap-2.0_url_1.RULE index eadc504bed2..2a7a5d06529 100644 --- a/src/licensedcode/data/rules/openldap-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.0 +--- + https://spdx.org/licenses/oldap-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_url_1.yml b/src/licensedcode/data/rules/openldap-2.0_url_1.yml deleted file mode 100644 index ed2fd880f66..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.0 diff --git a/src/licensedcode/data/rules/openldap-2.0_url_2.RULE b/src/licensedcode/data/rules/openldap-2.0_url_2.RULE index dcb62c72355..5b1d1d102be 100644 --- a/src/licensedcode/data/rules/openldap-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.0.html +--- + https://spdx.org/licenses/oldap-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.0_url_2.yml b/src/licensedcode/data/rules/openldap-2.0_url_2.yml deleted file mode 100644 index 2dc3b691509..00000000000 --- a/src/licensedcode/data/rules/openldap-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.0.html diff --git a/src/licensedcode/data/rules/openldap-2.1_1.RULE b/src/licensedcode/data/rules/openldap-2.1_1.RULE index 73a34a96e6a..0986e0e75c4 100644 --- a/src/licensedcode/data/rules/openldap-2.1_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_1.yml b/src/licensedcode/data/rules/openldap-2.1_1.yml deleted file mode 100644 index b025bef865f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.1_10.RULE b/src/licensedcode/data/rules/openldap-2.1_10.RULE index 8a7217c0789..a59b74521d0 100644 --- a/src/licensedcode/data/rules/openldap-2.1_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.1 +--- + {{OLDAP-2.1}} https://spdx.org/licenses/OLDAP-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_10.yml b/src/licensedcode/data/rules/openldap-2.1_10.yml deleted file mode 100644 index ee85eb026de..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.1 diff --git a/src/licensedcode/data/rules/openldap-2.1_11.RULE b/src/licensedcode/data/rules/openldap-2.1_11.RULE index 291e4dd961a..731d938caea 100644 --- a/src/licensedcode/data/rules/openldap-2.1_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.1 +--- + LICENSE {{OLDAP-2.1}} https://spdx.org/licenses/OLDAP-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_11.yml b/src/licensedcode/data/rules/openldap-2.1_11.yml deleted file mode 100644 index ee85eb026de..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.1 diff --git a/src/licensedcode/data/rules/openldap-2.1_2.RULE b/src/licensedcode/data/rules/openldap-2.1_2.RULE index 082f170f81c..e5fb8c73176 100644 --- a/src/licensedcode/data/rules/openldap-2.1_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.1 Open LDAP Public License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_2.yml b/src/licensedcode/data/rules/openldap-2.1_2.yml deleted file mode 100644 index b025bef865f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.1_3.RULE b/src/licensedcode/data/rules/openldap-2.1_3.RULE index 71af3cee30d..3805bca4ea6 100644 --- a/src/licensedcode/data/rules/openldap-2.1_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_3.yml b/src/licensedcode/data/rules/openldap-2.1_3.yml deleted file mode 100644 index ce1f5bbff26..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.1_4.RULE b/src/licensedcode/data/rules/openldap-2.1_4.RULE index 4e23bb40275..e604ce3310e 100644 --- a/src/licensedcode/data/rules/openldap-2.1_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.1 OLDAP-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_4.yml b/src/licensedcode/data/rules/openldap-2.1_4.yml deleted file mode 100644 index ce1f5bbff26..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.1_5.RULE b/src/licensedcode/data/rules/openldap-2.1_5.RULE index b34198f9658..81ba01532ba 100644 --- a/src/licensedcode/data/rules/openldap-2.1_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_5.yml b/src/licensedcode/data/rules/openldap-2.1_5.yml deleted file mode 100644 index 2f15a1db112..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.1_6.RULE b/src/licensedcode/data/rules/openldap-2.1_6.RULE index bcc45dd87fc..371eac44036 100644 --- a/src/licensedcode/data/rules/openldap-2.1_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_6.yml b/src/licensedcode/data/rules/openldap-2.1_6.yml deleted file mode 100644 index 2f15a1db112..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.1_7.RULE b/src/licensedcode/data/rules/openldap-2.1_7.RULE index 04961091014..40ff4679b39 100644 --- a/src/licensedcode/data/rules/openldap-2.1_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_7.yml b/src/licensedcode/data/rules/openldap-2.1_7.yml deleted file mode 100644 index 2f15a1db112..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.1_8.RULE b/src/licensedcode/data/rules/openldap-2.1_8.RULE index 00ba935375f..23123b8712c 100644 --- a/src/licensedcode/data/rules/openldap-2.1_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.1 +--- + https://licenses.nuget.org/OLDAP-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_8.yml b/src/licensedcode/data/rules/openldap-2.1_8.yml deleted file mode 100644 index c3f84f28685..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.1 diff --git a/src/licensedcode/data/rules/openldap-2.1_9.RULE b/src/licensedcode/data/rules/openldap-2.1_9.RULE index 94e503afa25..e9b865fa1d6 100644 --- a/src/licensedcode/data/rules/openldap-2.1_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_9.yml b/src/licensedcode/data/rules/openldap-2.1_9.yml deleted file mode 100644 index f8a8f3f5b09..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.1_url_1.RULE b/src/licensedcode/data/rules/openldap-2.1_url_1.RULE index c9a43fbd3df..48cccda5f16 100644 --- a/src/licensedcode/data/rules/openldap-2.1_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.1 +--- + https://spdx.org/licenses/oldap-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_url_1.yml b/src/licensedcode/data/rules/openldap-2.1_url_1.yml deleted file mode 100644 index b69d7a2659c..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.1 diff --git a/src/licensedcode/data/rules/openldap-2.1_url_2.RULE b/src/licensedcode/data/rules/openldap-2.1_url_2.RULE index e7ac80931be..74afc8688cb 100644 --- a/src/licensedcode/data/rules/openldap-2.1_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.1.html +--- + https://spdx.org/licenses/oldap-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.1_url_2.yml b/src/licensedcode/data/rules/openldap-2.1_url_2.yml deleted file mode 100644 index ffec09de267..00000000000 --- a/src/licensedcode/data/rules/openldap-2.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.1.html diff --git a/src/licensedcode/data/rules/openldap-2.2.1_1.RULE b/src/licensedcode/data/rules/openldap-2.2.1_1.RULE index 2fa043f9522..1d20a3bf457 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_1.yml b/src/licensedcode/data/rules/openldap-2.2.1_1.yml deleted file mode 100644 index 559d2d8f130..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_10.RULE b/src/licensedcode/data/rules/openldap-2.2.1_10.RULE index d09caac921b..b11351d3d9e 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.2.1 +--- + https://licenses.nuget.org/OLDAP-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_10.yml b/src/licensedcode/data/rules/openldap-2.2.1_10.yml deleted file mode 100644 index 3557d951976..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.2.1 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_11.RULE b/src/licensedcode/data/rules/openldap-2.2.1_11.RULE index 0c11e0d9f25..a1808a2b57b 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_11.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_11.yml b/src/licensedcode/data/rules/openldap-2.2.1_11.yml deleted file mode 100644 index 49eca66f26f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_12.RULE b/src/licensedcode/data/rules/openldap-2.2.1_12.RULE index 753e6e567cf..c6e0a59faeb 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_12.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.2.1 +--- + LICENSE {{OLDAP-2.2.1}} https://spdx.org/licenses/OLDAP-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_12.yml b/src/licensedcode/data/rules/openldap-2.2.1_12.yml deleted file mode 100644 index f18e629fdc0..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.2.1 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_13.RULE b/src/licensedcode/data/rules/openldap-2.2.1_13.RULE index 1974d976ee0..9131eff35f5 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_13.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.2.1 +--- + {{OLDAP-2.2.1}} https://spdx.org/licenses/OLDAP-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_13.yml b/src/licensedcode/data/rules/openldap-2.2.1_13.yml deleted file mode 100644 index f18e629fdc0..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.2.1 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_2.RULE b/src/licensedcode/data/rules/openldap-2.2.1_2.RULE index eb2f341dd5b..9eceaa35007 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_2.yml b/src/licensedcode/data/rules/openldap-2.2.1_2.yml deleted file mode 100644 index 559d2d8f130..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_3.RULE b/src/licensedcode/data/rules/openldap-2.2.1_3.RULE index 09e3e25ac34..0856c0ffbc5 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.2.1 Open LDAP Public License v2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_3.yml b/src/licensedcode/data/rules/openldap-2.2.1_3.yml deleted file mode 100644 index 559d2d8f130..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_4.RULE b/src/licensedcode/data/rules/openldap-2.2.1_4.RULE index 6bee14fd733..fcd926ea919 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_4.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.2.2 Open LDAP Public License v2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_4.yml b/src/licensedcode/data/rules/openldap-2.2.1_4.yml deleted file mode 100644 index 559d2d8f130..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_5.RULE b/src/licensedcode/data/rules/openldap-2.2.1_5.RULE index 885494f65de..0b63ec3a5c6 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_5.yml b/src/licensedcode/data/rules/openldap-2.2.1_5.yml deleted file mode 100644 index d910b00c0c0..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.1_6.RULE b/src/licensedcode/data/rules/openldap-2.2.1_6.RULE index 3ce473e7821..40215000491 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.2.1 OLDAP-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_6.yml b/src/licensedcode/data/rules/openldap-2.2.1_6.yml deleted file mode 100644 index d910b00c0c0..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.1_7.RULE b/src/licensedcode/data/rules/openldap-2.2.1_7.RULE index 0092e70f541..4419b81684a 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_7.yml b/src/licensedcode/data/rules/openldap-2.2.1_7.yml deleted file mode 100644 index 3c4cc9ad28e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.1_8.RULE b/src/licensedcode/data/rules/openldap-2.2.1_8.RULE index e8dbad414c6..4b3a97d8993 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_8.yml b/src/licensedcode/data/rules/openldap-2.2.1_8.yml deleted file mode 100644 index 3c4cc9ad28e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.1_9.RULE b/src/licensedcode/data/rules/openldap-2.2.1_9.RULE index 21517e406d7..df0e7296d9e 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_9.yml b/src/licensedcode/data/rules/openldap-2.2.1_9.yml deleted file mode 100644 index 3c4cc9ad28e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.1_url_1.RULE b/src/licensedcode/data/rules/openldap-2.2.1_url_1.RULE index d07678985f1..aca44f3e307 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.2.1 +--- + https://spdx.org/licenses/oldap-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_url_1.yml b/src/licensedcode/data/rules/openldap-2.2.1_url_1.yml deleted file mode 100644 index 33688d00039..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.2.1 diff --git a/src/licensedcode/data/rules/openldap-2.2.1_url_2.RULE b/src/licensedcode/data/rules/openldap-2.2.1_url_2.RULE index 4603bbdae59..71e10a89f2d 100644 --- a/src/licensedcode/data/rules/openldap-2.2.1_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.2.1.html +--- + https://spdx.org/licenses/oldap-2.2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.1_url_2.yml b/src/licensedcode/data/rules/openldap-2.2.1_url_2.yml deleted file mode 100644 index 8cb283174f5..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.2.1.html diff --git a/src/licensedcode/data/rules/openldap-2.2.2_1.RULE b/src/licensedcode/data/rules/openldap-2.2.2_1.RULE index b1d98630442..d987ef3ecd4 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_1.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License 2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_1.yml b/src/licensedcode/data/rules/openldap-2.2.2_1.yml deleted file mode 100644 index 0dad985f5ae..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.2_10.RULE b/src/licensedcode/data/rules/openldap-2.2.2_10.RULE index c32a913ef28..620a9088d11 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.2.2 +--- + {{OLDAP-2.2.2}} https://spdx.org/licenses/OLDAP-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_10.yml b/src/licensedcode/data/rules/openldap-2.2.2_10.yml deleted file mode 100644 index a001d5edfee..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.2.2 diff --git a/src/licensedcode/data/rules/openldap-2.2.2_11.RULE b/src/licensedcode/data/rules/openldap-2.2.2_11.RULE index 3d11816a950..e50e6410f4f 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.2.2 +--- + LICENSE {{OLDAP-2.2.2}} https://spdx.org/licenses/OLDAP-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_11.yml b/src/licensedcode/data/rules/openldap-2.2.2_11.yml deleted file mode 100644 index a001d5edfee..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.2.2 diff --git a/src/licensedcode/data/rules/openldap-2.2.2_2.RULE b/src/licensedcode/data/rules/openldap-2.2.2_2.RULE index ab50eb12c71..fb937c9dfbb 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_2.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License 2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_2.yml b/src/licensedcode/data/rules/openldap-2.2.2_2.yml deleted file mode 100644 index 0dad985f5ae..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.2_3.RULE b/src/licensedcode/data/rules/openldap-2.2.2_3.RULE index af9d39d1e4f..6d4936d1893 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OLDAP-2.2.2 Open LDAP Public License 2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_3.yml b/src/licensedcode/data/rules/openldap-2.2.2_3.yml deleted file mode 100644 index 0dad985f5ae..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.2_4.RULE b/src/licensedcode/data/rules/openldap-2.2.2_4.RULE index 96e8d8691b3..65372973340 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License 2.2.2 OLDAP-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_4.yml b/src/licensedcode/data/rules/openldap-2.2.2_4.yml deleted file mode 100644 index 0dad985f5ae..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.2_5.RULE b/src/licensedcode/data/rules/openldap-2.2.2_5.RULE index 5beb73c6537..b1fec8005d2 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_5.yml b/src/licensedcode/data/rules/openldap-2.2.2_5.yml deleted file mode 100644 index 241b0bb0d8a..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.2_6.RULE b/src/licensedcode/data/rules/openldap-2.2.2_6.RULE index d2744798e08..bfb615e03e7 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License 2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_6.yml b/src/licensedcode/data/rules/openldap-2.2.2_6.yml deleted file mode 100644 index 241b0bb0d8a..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.2_7.RULE b/src/licensedcode/data/rules/openldap-2.2.2_7.RULE index 91bf05452cb..5565a6d0821 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_7.yml b/src/licensedcode/data/rules/openldap-2.2.2_7.yml deleted file mode 100644 index 241b0bb0d8a..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2.2_8.RULE b/src/licensedcode/data/rules/openldap-2.2.2_8.RULE index 91ae0fb9b45..794a3ba72a8 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.2.2 +--- + https://licenses.nuget.org/OLDAP-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_8.yml b/src/licensedcode/data/rules/openldap-2.2.2_8.yml deleted file mode 100644 index cc80009038a..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.2.2 diff --git a/src/licensedcode/data/rules/openldap-2.2.2_9.RULE b/src/licensedcode/data/rules/openldap-2.2.2_9.RULE index 7c7141a164c..7de20c1bb37 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_9.yml b/src/licensedcode/data/rules/openldap-2.2.2_9.yml deleted file mode 100644 index fd95ab56911..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2.2_url_1.RULE b/src/licensedcode/data/rules/openldap-2.2.2_url_1.RULE index a909453b623..b87aab64011 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.2.2 +--- + https://spdx.org/licenses/oldap-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_url_1.yml b/src/licensedcode/data/rules/openldap-2.2.2_url_1.yml deleted file mode 100644 index aed3effcd52..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.2.2 diff --git a/src/licensedcode/data/rules/openldap-2.2.2_url_2.RULE b/src/licensedcode/data/rules/openldap-2.2.2_url_2.RULE index f84d9acbf5f..26855e5e631 100644 --- a/src/licensedcode/data/rules/openldap-2.2.2_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.2.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.2.2.html +--- + https://spdx.org/licenses/oldap-2.2.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2.2_url_2.yml b/src/licensedcode/data/rules/openldap-2.2.2_url_2.yml deleted file mode 100644 index c847eb048d1..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.2.2.html diff --git a/src/licensedcode/data/rules/openldap-2.2_1.RULE b/src/licensedcode/data/rules/openldap-2.2_1.RULE index f8b61eecf8b..df6fb8f84a7 100644 --- a/src/licensedcode/data/rules/openldap-2.2_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_1.yml b/src/licensedcode/data/rules/openldap-2.2_1.yml deleted file mode 100644 index f867aeab443..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2_10.RULE b/src/licensedcode/data/rules/openldap-2.2_10.RULE index 5c67ca0205f..f250a27a8c6 100644 --- a/src/licensedcode/data/rules/openldap-2.2_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.2 +--- + LICENSE {{OLDAP-2.2}} https://spdx.org/licenses/OLDAP-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_10.yml b/src/licensedcode/data/rules/openldap-2.2_10.yml deleted file mode 100644 index 4f19504d936..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.2 diff --git a/src/licensedcode/data/rules/openldap-2.2_11.RULE b/src/licensedcode/data/rules/openldap-2.2_11.RULE index d1f1f9dc158..4d145298736 100644 --- a/src/licensedcode/data/rules/openldap-2.2_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.2 +--- + {{OLDAP-2.2}} https://spdx.org/licenses/OLDAP-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_11.yml b/src/licensedcode/data/rules/openldap-2.2_11.yml deleted file mode 100644 index 4f19504d936..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.2 diff --git a/src/licensedcode/data/rules/openldap-2.2_2.RULE b/src/licensedcode/data/rules/openldap-2.2_2.RULE index fbb8e7f2744..091b92a6cb6 100644 --- a/src/licensedcode/data/rules/openldap-2.2_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.2 Open LDAP Public License v2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_2.yml b/src/licensedcode/data/rules/openldap-2.2_2.yml deleted file mode 100644 index f867aeab443..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2_3.RULE b/src/licensedcode/data/rules/openldap-2.2_3.RULE index ea8c7e0f688..da22c4c4715 100644 --- a/src/licensedcode/data/rules/openldap-2.2_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_3.yml b/src/licensedcode/data/rules/openldap-2.2_3.yml deleted file mode 100644 index a16f95c8342..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2_4.RULE b/src/licensedcode/data/rules/openldap-2.2_4.RULE index eedef8e96bc..8fe9597df4d 100644 --- a/src/licensedcode/data/rules/openldap-2.2_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.2 OLDAP-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_4.yml b/src/licensedcode/data/rules/openldap-2.2_4.yml deleted file mode 100644 index a16f95c8342..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2_5.RULE b/src/licensedcode/data/rules/openldap-2.2_5.RULE index d4c21211ad0..e5ba0193a25 100644 --- a/src/licensedcode/data/rules/openldap-2.2_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_5.yml b/src/licensedcode/data/rules/openldap-2.2_5.yml deleted file mode 100644 index f432b44ef7e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2_6.RULE b/src/licensedcode/data/rules/openldap-2.2_6.RULE index 6c5b84136f9..c6c0d770247 100644 --- a/src/licensedcode/data/rules/openldap-2.2_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_6.yml b/src/licensedcode/data/rules/openldap-2.2_6.yml deleted file mode 100644 index f432b44ef7e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2_7.RULE b/src/licensedcode/data/rules/openldap-2.2_7.RULE index d4691d46f79..11b536a0a8c 100644 --- a/src/licensedcode/data/rules/openldap-2.2_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_7.yml b/src/licensedcode/data/rules/openldap-2.2_7.yml deleted file mode 100644 index f432b44ef7e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.2_8.RULE b/src/licensedcode/data/rules/openldap-2.2_8.RULE index ba3f36d7cb3..5204b37675a 100644 --- a/src/licensedcode/data/rules/openldap-2.2_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.2 +--- + https://licenses.nuget.org/OLDAP-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_8.yml b/src/licensedcode/data/rules/openldap-2.2_8.yml deleted file mode 100644 index 0e71b64c0e5..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.2 diff --git a/src/licensedcode/data/rules/openldap-2.2_9.RULE b/src/licensedcode/data/rules/openldap-2.2_9.RULE index 591a96cebd4..1d4328fa149 100644 --- a/src/licensedcode/data/rules/openldap-2.2_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_9.yml b/src/licensedcode/data/rules/openldap-2.2_9.yml deleted file mode 100644 index 77f88868e9e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.2_url_1.RULE b/src/licensedcode/data/rules/openldap-2.2_url_1.RULE index a51b84f4c9a..3b6bc873566 100644 --- a/src/licensedcode/data/rules/openldap-2.2_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.2 +--- + https://spdx.org/licenses/oldap-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_url_1.yml b/src/licensedcode/data/rules/openldap-2.2_url_1.yml deleted file mode 100644 index 6ab81218075..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.2 diff --git a/src/licensedcode/data/rules/openldap-2.2_url_2.RULE b/src/licensedcode/data/rules/openldap-2.2_url_2.RULE index 9cfda7ace63..abea53723a5 100644 --- a/src/licensedcode/data/rules/openldap-2.2_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.2.html +--- + https://spdx.org/licenses/oldap-2.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.2_url_2.yml b/src/licensedcode/data/rules/openldap-2.2_url_2.yml deleted file mode 100644 index ed9a5e2b11d..00000000000 --- a/src/licensedcode/data/rules/openldap-2.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.2.html diff --git a/src/licensedcode/data/rules/openldap-2.3_1.RULE b/src/licensedcode/data/rules/openldap-2.3_1.RULE index 26c1f6886a9..fbde8d99ad7 100644 --- a/src/licensedcode/data/rules/openldap-2.3_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_1.yml b/src/licensedcode/data/rules/openldap-2.3_1.yml deleted file mode 100644 index b835cfeb853..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.3_10.RULE b/src/licensedcode/data/rules/openldap-2.3_10.RULE index c932fcdd608..0972818f27c 100644 --- a/src/licensedcode/data/rules/openldap-2.3_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.3 +--- + LICENSE {{OLDAP-2.3}} https://spdx.org/licenses/OLDAP-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_10.yml b/src/licensedcode/data/rules/openldap-2.3_10.yml deleted file mode 100644 index 68b2b0dad9b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.3 diff --git a/src/licensedcode/data/rules/openldap-2.3_11.RULE b/src/licensedcode/data/rules/openldap-2.3_11.RULE index 921aaff0d96..14ac560247f 100644 --- a/src/licensedcode/data/rules/openldap-2.3_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.3 +--- + {{OLDAP-2.3}} https://spdx.org/licenses/OLDAP-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_11.yml b/src/licensedcode/data/rules/openldap-2.3_11.yml deleted file mode 100644 index 68b2b0dad9b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.3 diff --git a/src/licensedcode/data/rules/openldap-2.3_2.RULE b/src/licensedcode/data/rules/openldap-2.3_2.RULE index 6f9fd7374fd..095c8c1f949 100644 --- a/src/licensedcode/data/rules/openldap-2.3_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.3 Open LDAP Public License v2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_2.yml b/src/licensedcode/data/rules/openldap-2.3_2.yml deleted file mode 100644 index b835cfeb853..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.3_3.RULE b/src/licensedcode/data/rules/openldap-2.3_3.RULE index 1b8f1649bae..a7e47e2ebf7 100644 --- a/src/licensedcode/data/rules/openldap-2.3_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_3.yml b/src/licensedcode/data/rules/openldap-2.3_3.yml deleted file mode 100644 index c274c0c2c81..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.3_4.RULE b/src/licensedcode/data/rules/openldap-2.3_4.RULE index d12fbd66769..8b022aceafe 100644 --- a/src/licensedcode/data/rules/openldap-2.3_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.3 OLDAP-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_4.yml b/src/licensedcode/data/rules/openldap-2.3_4.yml deleted file mode 100644 index c274c0c2c81..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.3_5.RULE b/src/licensedcode/data/rules/openldap-2.3_5.RULE index 02397a554c4..7cf0a6129db 100644 --- a/src/licensedcode/data/rules/openldap-2.3_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_5.yml b/src/licensedcode/data/rules/openldap-2.3_5.yml deleted file mode 100644 index 99f7028bd35..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.3_6.RULE b/src/licensedcode/data/rules/openldap-2.3_6.RULE index 8e9dc977dd7..413882a008d 100644 --- a/src/licensedcode/data/rules/openldap-2.3_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_6.yml b/src/licensedcode/data/rules/openldap-2.3_6.yml deleted file mode 100644 index 99f7028bd35..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.3_7.RULE b/src/licensedcode/data/rules/openldap-2.3_7.RULE index fc58de14049..ca5d5bfe86f 100644 --- a/src/licensedcode/data/rules/openldap-2.3_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_7.yml b/src/licensedcode/data/rules/openldap-2.3_7.yml deleted file mode 100644 index 99f7028bd35..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.3_8.RULE b/src/licensedcode/data/rules/openldap-2.3_8.RULE index a8f8b602df9..afe90079465 100644 --- a/src/licensedcode/data/rules/openldap-2.3_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.3 +--- + https://licenses.nuget.org/OLDAP-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_8.yml b/src/licensedcode/data/rules/openldap-2.3_8.yml deleted file mode 100644 index 70ab1b28aab..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.3 diff --git a/src/licensedcode/data/rules/openldap-2.3_9.RULE b/src/licensedcode/data/rules/openldap-2.3_9.RULE index 15519643209..d72945cd740 100644 --- a/src/licensedcode/data/rules/openldap-2.3_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_9.yml b/src/licensedcode/data/rules/openldap-2.3_9.yml deleted file mode 100644 index 85a35ef2669..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.3_url_1.RULE b/src/licensedcode/data/rules/openldap-2.3_url_1.RULE index d5506127f17..1c5eef6be94 100644 --- a/src/licensedcode/data/rules/openldap-2.3_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.3 +--- + https://spdx.org/licenses/oldap-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_url_1.yml b/src/licensedcode/data/rules/openldap-2.3_url_1.yml deleted file mode 100644 index 5c5506cd361..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.3 diff --git a/src/licensedcode/data/rules/openldap-2.3_url_2.RULE b/src/licensedcode/data/rules/openldap-2.3_url_2.RULE index b215b47ef8e..b55cb6566db 100644 --- a/src/licensedcode/data/rules/openldap-2.3_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.3_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.3.html +--- + https://spdx.org/licenses/oldap-2.3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.3_url_2.yml b/src/licensedcode/data/rules/openldap-2.3_url_2.yml deleted file mode 100644 index 5a510c04b5c..00000000000 --- a/src/licensedcode/data/rules/openldap-2.3_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.3.html diff --git a/src/licensedcode/data/rules/openldap-2.4_1.RULE b/src/licensedcode/data/rules/openldap-2.4_1.RULE index af6f8a87792..ba230ebfc80 100644 --- a/src/licensedcode/data/rules/openldap-2.4_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_1.yml b/src/licensedcode/data/rules/openldap-2.4_1.yml deleted file mode 100644 index 6b1fcca598b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.4_10.RULE b/src/licensedcode/data/rules/openldap-2.4_10.RULE index c2455f71d41..d00b3ed0d4e 100644 --- a/src/licensedcode/data/rules/openldap-2.4_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.4 +--- + {{OLDAP-2.4}} https://spdx.org/licenses/OLDAP-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_10.yml b/src/licensedcode/data/rules/openldap-2.4_10.yml deleted file mode 100644 index b9f6309275f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.4 diff --git a/src/licensedcode/data/rules/openldap-2.4_11.RULE b/src/licensedcode/data/rules/openldap-2.4_11.RULE index f1ba8ad9816..16c5b8d362c 100644 --- a/src/licensedcode/data/rules/openldap-2.4_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.4 +--- + LICENSE {{OLDAP-2.4}} https://spdx.org/licenses/OLDAP-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_11.yml b/src/licensedcode/data/rules/openldap-2.4_11.yml deleted file mode 100644 index b9f6309275f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.4 diff --git a/src/licensedcode/data/rules/openldap-2.4_2.RULE b/src/licensedcode/data/rules/openldap-2.4_2.RULE index 20727e66e65..0aa4a6379bb 100644 --- a/src/licensedcode/data/rules/openldap-2.4_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.4 Open LDAP Public License v2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_2.yml b/src/licensedcode/data/rules/openldap-2.4_2.yml deleted file mode 100644 index 6b1fcca598b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.4_3.RULE b/src/licensedcode/data/rules/openldap-2.4_3.RULE index 5b48308b219..d3fe2c9c569 100644 --- a/src/licensedcode/data/rules/openldap-2.4_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_3.yml b/src/licensedcode/data/rules/openldap-2.4_3.yml deleted file mode 100644 index 1c4aad3a76b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.4_4.RULE b/src/licensedcode/data/rules/openldap-2.4_4.RULE index dc10548b2c6..cd859b8b4c5 100644 --- a/src/licensedcode/data/rules/openldap-2.4_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.4 OLDAP-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_4.yml b/src/licensedcode/data/rules/openldap-2.4_4.yml deleted file mode 100644 index 1c4aad3a76b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.4_5.RULE b/src/licensedcode/data/rules/openldap-2.4_5.RULE index 903bdf45e8c..5cc31a628cb 100644 --- a/src/licensedcode/data/rules/openldap-2.4_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_5.yml b/src/licensedcode/data/rules/openldap-2.4_5.yml deleted file mode 100644 index e6ec050ab0f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.4_6.RULE b/src/licensedcode/data/rules/openldap-2.4_6.RULE index 00bbfa099c6..777e773d986 100644 --- a/src/licensedcode/data/rules/openldap-2.4_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_6.yml b/src/licensedcode/data/rules/openldap-2.4_6.yml deleted file mode 100644 index e6ec050ab0f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.4_7.RULE b/src/licensedcode/data/rules/openldap-2.4_7.RULE index 90d96efd937..fde76c0ef5b 100644 --- a/src/licensedcode/data/rules/openldap-2.4_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_7.yml b/src/licensedcode/data/rules/openldap-2.4_7.yml deleted file mode 100644 index e6ec050ab0f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.4_8.RULE b/src/licensedcode/data/rules/openldap-2.4_8.RULE index 67a588f9f88..62f88497be9 100644 --- a/src/licensedcode/data/rules/openldap-2.4_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.4 +--- + https://licenses.nuget.org/OLDAP-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_8.yml b/src/licensedcode/data/rules/openldap-2.4_8.yml deleted file mode 100644 index 92d835f9f99..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.4 diff --git a/src/licensedcode/data/rules/openldap-2.4_9.RULE b/src/licensedcode/data/rules/openldap-2.4_9.RULE index 2205325773f..42229938ae6 100644 --- a/src/licensedcode/data/rules/openldap-2.4_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_9.yml b/src/licensedcode/data/rules/openldap-2.4_9.yml deleted file mode 100644 index 28ad81295ef..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.4_url_1.RULE b/src/licensedcode/data/rules/openldap-2.4_url_1.RULE index 522b4ce3ab9..d46bfe39f04 100644 --- a/src/licensedcode/data/rules/openldap-2.4_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.4 +--- + https://spdx.org/licenses/oldap-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_url_1.yml b/src/licensedcode/data/rules/openldap-2.4_url_1.yml deleted file mode 100644 index 9f09cd7383a..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.4 diff --git a/src/licensedcode/data/rules/openldap-2.4_url_2.RULE b/src/licensedcode/data/rules/openldap-2.4_url_2.RULE index 84e5acabe6f..30bd806f56e 100644 --- a/src/licensedcode/data/rules/openldap-2.4_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.4_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.4.html +--- + https://spdx.org/licenses/oldap-2.4.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.4_url_2.yml b/src/licensedcode/data/rules/openldap-2.4_url_2.yml deleted file mode 100644 index e65567de25e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.4_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.4.html diff --git a/src/licensedcode/data/rules/openldap-2.5_1.RULE b/src/licensedcode/data/rules/openldap-2.5_1.RULE index cab3b867f7d..9d310bcace4 100644 --- a/src/licensedcode/data/rules/openldap-2.5_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_1.yml b/src/licensedcode/data/rules/openldap-2.5_1.yml deleted file mode 100644 index 3c820754e03..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.5_10.RULE b/src/licensedcode/data/rules/openldap-2.5_10.RULE index 0368456cbc2..6b1ecf5540e 100644 --- a/src/licensedcode/data/rules/openldap-2.5_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.5 +--- + {{OLDAP-2.5}} https://spdx.org/licenses/OLDAP-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_10.yml b/src/licensedcode/data/rules/openldap-2.5_10.yml deleted file mode 100644 index e43afa9b801..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.5 diff --git a/src/licensedcode/data/rules/openldap-2.5_11.RULE b/src/licensedcode/data/rules/openldap-2.5_11.RULE index 95fcce2b3e9..4f94ea2139f 100644 --- a/src/licensedcode/data/rules/openldap-2.5_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.5 +--- + LICENSE {{OLDAP-2.5}} https://spdx.org/licenses/OLDAP-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_11.yml b/src/licensedcode/data/rules/openldap-2.5_11.yml deleted file mode 100644 index e43afa9b801..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.5 diff --git a/src/licensedcode/data/rules/openldap-2.5_2.RULE b/src/licensedcode/data/rules/openldap-2.5_2.RULE index 3c83e959e39..a67eaafa1d9 100644 --- a/src/licensedcode/data/rules/openldap-2.5_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.5 Open LDAP Public License v2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_2.yml b/src/licensedcode/data/rules/openldap-2.5_2.yml deleted file mode 100644 index 3c820754e03..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.5_3.RULE b/src/licensedcode/data/rules/openldap-2.5_3.RULE index 59dcf54219a..323193c9bbe 100644 --- a/src/licensedcode/data/rules/openldap-2.5_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_3.yml b/src/licensedcode/data/rules/openldap-2.5_3.yml deleted file mode 100644 index 049290f4037..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.5_4.RULE b/src/licensedcode/data/rules/openldap-2.5_4.RULE index eb0e372e281..6c355845110 100644 --- a/src/licensedcode/data/rules/openldap-2.5_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.5 OLDAP-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_4.yml b/src/licensedcode/data/rules/openldap-2.5_4.yml deleted file mode 100644 index 049290f4037..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.5_5.RULE b/src/licensedcode/data/rules/openldap-2.5_5.RULE index f94e3749d5b..ae76e39ffe7 100644 --- a/src/licensedcode/data/rules/openldap-2.5_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_5.yml b/src/licensedcode/data/rules/openldap-2.5_5.yml deleted file mode 100644 index 57f8420c0c9..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.5_6.RULE b/src/licensedcode/data/rules/openldap-2.5_6.RULE index 59578b0f7fb..7c83f7899ca 100644 --- a/src/licensedcode/data/rules/openldap-2.5_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_6.yml b/src/licensedcode/data/rules/openldap-2.5_6.yml deleted file mode 100644 index 57f8420c0c9..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.5_7.RULE b/src/licensedcode/data/rules/openldap-2.5_7.RULE index 07d82cca4b0..6db198d4059 100644 --- a/src/licensedcode/data/rules/openldap-2.5_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_7.yml b/src/licensedcode/data/rules/openldap-2.5_7.yml deleted file mode 100644 index 57f8420c0c9..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.5_8.RULE b/src/licensedcode/data/rules/openldap-2.5_8.RULE index 2878c6dab67..28b6a2853b4 100644 --- a/src/licensedcode/data/rules/openldap-2.5_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.5 +--- + https://licenses.nuget.org/OLDAP-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_8.yml b/src/licensedcode/data/rules/openldap-2.5_8.yml deleted file mode 100644 index c68ed3f4a64..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.5 diff --git a/src/licensedcode/data/rules/openldap-2.5_9.RULE b/src/licensedcode/data/rules/openldap-2.5_9.RULE index d2945876691..630b5358725 100644 --- a/src/licensedcode/data/rules/openldap-2.5_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_9.yml b/src/licensedcode/data/rules/openldap-2.5_9.yml deleted file mode 100644 index fe924669c3f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.5_url_1.RULE b/src/licensedcode/data/rules/openldap-2.5_url_1.RULE index e0a3d811364..c34d1c4082f 100644 --- a/src/licensedcode/data/rules/openldap-2.5_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.5 +--- + https://spdx.org/licenses/oldap-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_url_1.yml b/src/licensedcode/data/rules/openldap-2.5_url_1.yml deleted file mode 100644 index df2034d6b9f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.5 diff --git a/src/licensedcode/data/rules/openldap-2.5_url_2.RULE b/src/licensedcode/data/rules/openldap-2.5_url_2.RULE index 6a9b3c5d85a..c740fafa2dc 100644 --- a/src/licensedcode/data/rules/openldap-2.5_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.5.html +--- + https://spdx.org/licenses/oldap-2.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.5_url_2.yml b/src/licensedcode/data/rules/openldap-2.5_url_2.yml deleted file mode 100644 index ed063296655..00000000000 --- a/src/licensedcode/data/rules/openldap-2.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.5.html diff --git a/src/licensedcode/data/rules/openldap-2.6.RULE b/src/licensedcode/data/rules/openldap-2.6.RULE index b24a82f23c9..202ee8672cc 100644 --- a/src/licensedcode/data/rules/openldap-2.6.RULE +++ b/src/licensedcode/data/rules/openldap-2.6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: openldap-2.6 +is_license_text: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA +--- + The OpenLDAP Public License Version 2.6, date 14 June 2001 @@ -43,4 +53,4 @@ OpenLDAP is a trademark of the OpenLDAP Foundation. Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA . All Rights Reserved. Permission to copy and -distributed verbatim copies of this document is granted. \ No newline at end of file +distributed verbatim copies of this document is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6.yml b/src/licensedcode/data/rules/openldap-2.6.yml deleted file mode 100644 index 57c44d5c065..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: openldap-2.6 -is_license_text: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA diff --git a/src/licensedcode/data/rules/openldap-2.6_1.RULE b/src/licensedcode/data/rules/openldap-2.6_1.RULE index e1e48fedb6b..362e6646753 100644 --- a/src/licensedcode/data/rules/openldap-2.6_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_1.yml b/src/licensedcode/data/rules/openldap-2.6_1.yml deleted file mode 100644 index 3cb34b4fe9b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.6_10.RULE b/src/licensedcode/data/rules/openldap-2.6_10.RULE index 8267cd69f7d..fc9a346aed0 100644 --- a/src/licensedcode/data/rules/openldap-2.6_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.6 +--- + LICENSE {{OLDAP-2.6}} https://spdx.org/licenses/OLDAP-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_10.yml b/src/licensedcode/data/rules/openldap-2.6_10.yml deleted file mode 100644 index 06fddb0ab54..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.6 diff --git a/src/licensedcode/data/rules/openldap-2.6_11.RULE b/src/licensedcode/data/rules/openldap-2.6_11.RULE index 7e6bedec9a8..b5346bd1902 100644 --- a/src/licensedcode/data/rules/openldap-2.6_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.6 +--- + {{OLDAP-2.6}} https://spdx.org/licenses/OLDAP-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_11.yml b/src/licensedcode/data/rules/openldap-2.6_11.yml deleted file mode 100644 index 06fddb0ab54..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.6 diff --git a/src/licensedcode/data/rules/openldap-2.6_2.RULE b/src/licensedcode/data/rules/openldap-2.6_2.RULE index 297b8275007..dc46088524c 100644 --- a/src/licensedcode/data/rules/openldap-2.6_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.6 Open LDAP Public License v2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_2.yml b/src/licensedcode/data/rules/openldap-2.6_2.yml deleted file mode 100644 index 3cb34b4fe9b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.6_3.RULE b/src/licensedcode/data/rules/openldap-2.6_3.RULE index 3dee1b7f581..44abaf4d637 100644 --- a/src/licensedcode/data/rules/openldap-2.6_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_3.yml b/src/licensedcode/data/rules/openldap-2.6_3.yml deleted file mode 100644 index e567cef1811..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.6_4.RULE b/src/licensedcode/data/rules/openldap-2.6_4.RULE index e0ca22cf99a..7b7153a2895 100644 --- a/src/licensedcode/data/rules/openldap-2.6_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.6 OLDAP-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_4.yml b/src/licensedcode/data/rules/openldap-2.6_4.yml deleted file mode 100644 index e567cef1811..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.6_5.RULE b/src/licensedcode/data/rules/openldap-2.6_5.RULE index f03a873a419..fbe1663248b 100644 --- a/src/licensedcode/data/rules/openldap-2.6_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.6 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_5.yml b/src/licensedcode/data/rules/openldap-2.6_5.yml deleted file mode 100644 index b9273be0ca7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.6 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.6_6.RULE b/src/licensedcode/data/rules/openldap-2.6_6.RULE index 5ab237f10fe..5a7b3e7e2ab 100644 --- a/src/licensedcode/data/rules/openldap-2.6_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.6 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_6.yml b/src/licensedcode/data/rules/openldap-2.6_6.yml deleted file mode 100644 index b9273be0ca7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.6 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.6_7.RULE b/src/licensedcode/data/rules/openldap-2.6_7.RULE index 018e7f8c8e5..2934ebfc467 100644 --- a/src/licensedcode/data/rules/openldap-2.6_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.6 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_7.yml b/src/licensedcode/data/rules/openldap-2.6_7.yml deleted file mode 100644 index b9273be0ca7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.6 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.6_8.RULE b/src/licensedcode/data/rules/openldap-2.6_8.RULE index 4aa47063e3e..1c3875d7e24 100644 --- a/src/licensedcode/data/rules/openldap-2.6_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.6 +--- + https://licenses.nuget.org/OLDAP-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_8.yml b/src/licensedcode/data/rules/openldap-2.6_8.yml deleted file mode 100644 index 0618995c6d2..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.6 diff --git a/src/licensedcode/data/rules/openldap-2.6_9.RULE b/src/licensedcode/data/rules/openldap-2.6_9.RULE index 00911c6f718..777353f0aa6 100644 --- a/src/licensedcode/data/rules/openldap-2.6_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_9.yml b/src/licensedcode/data/rules/openldap-2.6_9.yml deleted file mode 100644 index 07d58fb4ee0..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.6_url_1.RULE b/src/licensedcode/data/rules/openldap-2.6_url_1.RULE index 9b1d01e2fb5..0bf1aefeb13 100644 --- a/src/licensedcode/data/rules/openldap-2.6_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.6 +--- + https://spdx.org/licenses/oldap-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_url_1.yml b/src/licensedcode/data/rules/openldap-2.6_url_1.yml deleted file mode 100644 index 4f37059f08c..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.6 diff --git a/src/licensedcode/data/rules/openldap-2.6_url_2.RULE b/src/licensedcode/data/rules/openldap-2.6_url_2.RULE index dc3228d7842..c8c51c9584f 100644 --- a/src/licensedcode/data/rules/openldap-2.6_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.6_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.6.html +--- + https://spdx.org/licenses/oldap-2.6.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.6_url_2.yml b/src/licensedcode/data/rules/openldap-2.6_url_2.yml deleted file mode 100644 index 49b7f5289da..00000000000 --- a/src/licensedcode/data/rules/openldap-2.6_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.6.html diff --git a/src/licensedcode/data/rules/openldap-2.7.RULE b/src/licensedcode/data/rules/openldap-2.7.RULE index fbeb8777da5..75c673b5365 100644 --- a/src/licensedcode/data/rules/openldap-2.7.RULE +++ b/src/licensedcode/data/rules/openldap-2.7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: openldap-2.7 +is_license_text: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.7 date, 7 September 2001 @@ -44,4 +54,4 @@ OpenLDAP is a registered trademark of the OpenLDAP Foundation. Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. \ No newline at end of file +distribute verbatim copies of this document is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7.yml b/src/licensedcode/data/rules/openldap-2.7.yml deleted file mode 100644 index 58df8e2f5fc..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: openldap-2.7 -is_license_text: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright 1999-2001 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. diff --git a/src/licensedcode/data/rules/openldap-2.7_1.RULE b/src/licensedcode/data/rules/openldap-2.7_1.RULE index 50f9e807868..d191318dd44 100644 --- a/src/licensedcode/data/rules/openldap-2.7_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_1.yml b/src/licensedcode/data/rules/openldap-2.7_1.yml deleted file mode 100644 index 98a75de446e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.7_10.RULE b/src/licensedcode/data/rules/openldap-2.7_10.RULE index 871c05aa30e..ab82432d1c8 100644 --- a/src/licensedcode/data/rules/openldap-2.7_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.7 +--- + {{OLDAP-2.7}} https://spdx.org/licenses/OLDAP-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_10.yml b/src/licensedcode/data/rules/openldap-2.7_10.yml deleted file mode 100644 index 7e8bdd58cd9..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.7 diff --git a/src/licensedcode/data/rules/openldap-2.7_11.RULE b/src/licensedcode/data/rules/openldap-2.7_11.RULE index 97e92532326..a7160ab4710 100644 --- a/src/licensedcode/data/rules/openldap-2.7_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.7 +--- + LICENSE {{OLDAP-2.7}} https://spdx.org/licenses/OLDAP-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_11.yml b/src/licensedcode/data/rules/openldap-2.7_11.yml deleted file mode 100644 index 7e8bdd58cd9..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.7 diff --git a/src/licensedcode/data/rules/openldap-2.7_2.RULE b/src/licensedcode/data/rules/openldap-2.7_2.RULE index 5b173612e22..244e26cb462 100644 --- a/src/licensedcode/data/rules/openldap-2.7_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.7 Open LDAP Public License v2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_2.yml b/src/licensedcode/data/rules/openldap-2.7_2.yml deleted file mode 100644 index 98a75de446e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.7_3.RULE b/src/licensedcode/data/rules/openldap-2.7_3.RULE index 3a1809f86ab..6db2c79a1fc 100644 --- a/src/licensedcode/data/rules/openldap-2.7_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_3.yml b/src/licensedcode/data/rules/openldap-2.7_3.yml deleted file mode 100644 index b82aaca41b3..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.7_4.RULE b/src/licensedcode/data/rules/openldap-2.7_4.RULE index ffe38072f65..187bd722c49 100644 --- a/src/licensedcode/data/rules/openldap-2.7_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.7 OLDAP-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_4.yml b/src/licensedcode/data/rules/openldap-2.7_4.yml deleted file mode 100644 index b82aaca41b3..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.7_5.RULE b/src/licensedcode/data/rules/openldap-2.7_5.RULE index 12625fa6bcd..079d4950c49 100644 --- a/src/licensedcode/data/rules/openldap-2.7_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.7 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_5.yml b/src/licensedcode/data/rules/openldap-2.7_5.yml deleted file mode 100644 index baa08858b23..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.7 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.7_6.RULE b/src/licensedcode/data/rules/openldap-2.7_6.RULE index 031a3d11638..eb67ecb6b75 100644 --- a/src/licensedcode/data/rules/openldap-2.7_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.7 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_6.yml b/src/licensedcode/data/rules/openldap-2.7_6.yml deleted file mode 100644 index baa08858b23..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.7 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.7_7.RULE b/src/licensedcode/data/rules/openldap-2.7_7.RULE index 9acfeff66eb..e156caf1412 100644 --- a/src/licensedcode/data/rules/openldap-2.7_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.7 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_7.yml b/src/licensedcode/data/rules/openldap-2.7_7.yml deleted file mode 100644 index baa08858b23..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.7 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.7_8.RULE b/src/licensedcode/data/rules/openldap-2.7_8.RULE index bb2ef526ad3..22c6618f752 100644 --- a/src/licensedcode/data/rules/openldap-2.7_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.7 +--- + https://licenses.nuget.org/OLDAP-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_8.yml b/src/licensedcode/data/rules/openldap-2.7_8.yml deleted file mode 100644 index 5b852d2bdce..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.7 diff --git a/src/licensedcode/data/rules/openldap-2.7_9.RULE b/src/licensedcode/data/rules/openldap-2.7_9.RULE index dec2aa85d37..54f9ac8f8bb 100644 --- a/src/licensedcode/data/rules/openldap-2.7_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_9.yml b/src/licensedcode/data/rules/openldap-2.7_9.yml deleted file mode 100644 index 3e1f141bc9f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.7_url_1.RULE b/src/licensedcode/data/rules/openldap-2.7_url_1.RULE index 635c773fa73..b02fb04a824 100644 --- a/src/licensedcode/data/rules/openldap-2.7_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.7 +--- + https://spdx.org/licenses/oldap-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_url_1.yml b/src/licensedcode/data/rules/openldap-2.7_url_1.yml deleted file mode 100644 index 9b88aa8a1de..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.7 diff --git a/src/licensedcode/data/rules/openldap-2.7_url_2.RULE b/src/licensedcode/data/rules/openldap-2.7_url_2.RULE index ad52a5b032a..d4b9fe600dd 100644 --- a/src/licensedcode/data/rules/openldap-2.7_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.7_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.7.html +--- + https://spdx.org/licenses/oldap-2.7.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.7_url_2.yml b/src/licensedcode/data/rules/openldap-2.7_url_2.yml deleted file mode 100644 index 3cfd7b33eb7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.7_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.7.html diff --git a/src/licensedcode/data/rules/openldap-2.8.RULE b/src/licensedcode/data/rules/openldap-2.8.RULE index 2d5546eb328..da6385cc81d 100644 --- a/src/licensedcode/data/rules/openldap-2.8.RULE +++ b/src/licensedcode/data/rules/openldap-2.8.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.openldap.org/software/release/license.html +--- + http://www.openldap.org/software/release/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8.yml b/src/licensedcode/data/rules/openldap-2.8.yml deleted file mode 100644 index 29f87a74359..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.openldap.org/software/release/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_1.RULE b/src/licensedcode/data/rules/openldap-2.8_1.RULE index 78e2e667292..c3b90fe7d83 100644 --- a/src/licensedcode/data/rules/openldap-2.8_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_text: yes +minimum_coverage: 70 +--- + The OpenLDAP Public License Version 2.8, 17 August 2003 @@ -40,4 +46,4 @@ in this Software without specific, written prior permission. Title to copyright in this Software shall at all times remain with copyright holders. -OpenLDAP is a registered trademark of the OpenLDAP Foundation. +OpenLDAP is a registered trademark of the OpenLDAP Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_1.yml b/src/licensedcode/data/rules/openldap-2.8_1.yml deleted file mode 100644 index 04381a40da5..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_text: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/openldap-2.8_10.RULE b/src/licensedcode/data/rules/openldap-2.8_10.RULE index 0877b68093e..ff28dcae157 100644 --- a/src/licensedcode/data/rules/openldap-2.8_10.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_10.RULE @@ -1,2 +1,8 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 100 +--- + The OpenLDAP Public License Version 2.8, 17 August 2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_10.yml b/src/licensedcode/data/rules/openldap-2.8_10.yml deleted file mode 100644 index bfab1edb6a7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.8_11.RULE b/src/licensedcode/data/rules/openldap-2.8_11.RULE index 29be16f9f7c..3cf17db719f 100644 --- a/src/licensedcode/data/rules/openldap-2.8_11.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_11.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 100 +--- + The OpenLDAP Public License Version 2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_11.yml b/src/licensedcode/data/rules/openldap-2.8_11.yml deleted file mode 100644 index bfab1edb6a7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.8_12.RULE b/src/licensedcode/data/rules/openldap-2.8_12.RULE index cf5d5d228cc..08d6682c8ff 100644 --- a/src/licensedcode/data/rules/openldap-2.8_12.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_12.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 99 +--- + The OpenLDAP Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_12.yml b/src/licensedcode/data/rules/openldap-2.8_12.yml deleted file mode 100644 index 84f3fb0d9a7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/openldap-2.8_13.RULE b/src/licensedcode/data/rules/openldap-2.8_13.RULE index 63f70b79ae4..d05ab976cd2 100644 --- a/src/licensedcode/data/rules/openldap-2.8_13.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_13.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 99 +--- + OpenLDAP Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_13.yml b/src/licensedcode/data/rules/openldap-2.8_13.yml deleted file mode 100644 index 84f3fb0d9a7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/openldap-2.8_14.RULE b/src/licensedcode/data/rules/openldap-2.8_14.RULE index e477c9ac6f4..7589733d64e 100644 --- a/src/licensedcode/data/rules/openldap-2.8_14.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_14.RULE @@ -1,3 +1,14 @@ +--- +license_expression: openldap-2.8 +is_license_text: yes +relevance: 100 +notes: minor text variations +ignorable_copyrights: + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License Version 2.8, 17 August 2003 diff --git a/src/licensedcode/data/rules/openldap-2.8_14.yml b/src/licensedcode/data/rules/openldap-2.8_14.yml deleted file mode 100644 index da2c09a478c..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_14.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: openldap-2.8 -is_license_text: yes -relevance: 100 -notes: minor text variations -ignorable_copyrights: - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. diff --git a/src/licensedcode/data/rules/openldap-2.8_15.RULE b/src/licensedcode/data/rules/openldap-2.8_15.RULE index 9ad218cff94..117096d4c4a 100644 --- a/src/licensedcode/data/rules/openldap-2.8_15.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_15.RULE @@ -1,3 +1,13 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.openldap.org/license.html +--- + Redistribution and use in source and binary forms are permitted only as authorized by the OpenLDAP Public License. A copy of this license is available at http://www.OpenLDAP.org/license.html or diff --git a/src/licensedcode/data/rules/openldap-2.8_15.yml b/src/licensedcode/data/rules/openldap-2.8_15.yml deleted file mode 100644 index 47e2156c56b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_15.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_16.RULE b/src/licensedcode/data/rules/openldap-2.8_16.RULE index c25bbd2f178..e3854ed459f 100644 --- a/src/licensedcode/data/rules/openldap-2.8_16.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_text: yes +relevance: 100 +--- + The OpenLDAP Public License Version 2.8, 17 August 2003 diff --git a/src/licensedcode/data/rules/openldap-2.8_16.yml b/src/licensedcode/data/rules/openldap-2.8_16.yml deleted file mode 100644 index 8b8c70a991e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.8_17.RULE b/src/licensedcode/data/rules/openldap-2.8_17.RULE index 3e3d83d899b..b33e2ec0dbd 100644 --- a/src/licensedcode/data/rules/openldap-2.8_17.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +relevance: 99 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted only as authorized by the OpenLDAP Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_17.yml b/src/licensedcode/data/rules/openldap-2.8_17.yml deleted file mode 100644 index ede214dd1f6..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/openldap-2.8_18.RULE b/src/licensedcode/data/rules/openldap-2.8_18.RULE index e1bf6ef2fea..26543f70124 100644 --- a/src/licensedcode/data/rules/openldap-2.8_18.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_18.RULE @@ -1,3 +1,13 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.openldap.org/license.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted only as authorized by the OpenLDAP Public License. A copy of this license is available at diff --git a/src/licensedcode/data/rules/openldap-2.8_18.yml b/src/licensedcode/data/rules/openldap-2.8_18.yml deleted file mode 100644 index bbd56d9bc5c..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_18.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_19.RULE b/src/licensedcode/data/rules/openldap-2.8_19.RULE index dadd10aea9f..0e5e5c384b2 100644 --- a/src/licensedcode/data/rules/openldap-2.8_19.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_19.RULE @@ -1,3 +1,15 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.openldap.org/ + - http://www.openldap.org/license.html + - http://www.umich.edu/~dirsvcs/ldap/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted only as authorized by the OpenLDAP Public License. A copy of this license is available at diff --git a/src/licensedcode/data/rules/openldap-2.8_19.yml b/src/licensedcode/data/rules/openldap-2.8_19.yml deleted file mode 100644 index 201b01e5178..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_19.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.openldap.org/ - - http://www.openldap.org/license.html - - http://www.umich.edu/~dirsvcs/ldap/ diff --git a/src/licensedcode/data/rules/openldap-2.8_2.RULE b/src/licensedcode/data/rules/openldap-2.8_2.RULE index 744feb5da1f..62b716a7158 100644 --- a/src/licensedcode/data/rules/openldap-2.8_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/license.html +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted only as authorized by the OpenLDAP * Public License. @@ -52,4 +64,4 @@ OpenLDAP is a registered trademark of the OpenLDAP Foundation. Copyright 1999-2003 The OpenLDAP Foundation , Redwood City, California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. +distribute verbatim copies of this document is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_2.yml b/src/licensedcode/data/rules/openldap-2.8_2.yml deleted file mode 100644 index 2216a5a522e..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_20.RULE b/src/licensedcode/data/rules/openldap-2.8_20.RULE index dc4d1fbeaf4..f35dcff0a25 100644 --- a/src/licensedcode/data/rules/openldap-2.8_20.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_20.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.openldap.org/ +--- + This work is part of OpenLDAP Software . \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_20.yml b/src/licensedcode/data/rules/openldap-2.8_20.yml deleted file mode 100644 index 7080d5ab957..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.openldap.org/ diff --git a/src/licensedcode/data/rules/openldap-2.8_21.RULE b/src/licensedcode/data/rules/openldap-2.8_21.RULE index dd91c6f5dbf..74c03133d04 100644 --- a/src/licensedcode/data/rules/openldap-2.8_21.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +ignorable_urls: + - http://www.openldap.org/ + - http://www.openldap.org/license.html + - http://www.umich.edu/~dirsvcs/ldap/ldap.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted only as authorized by the OpenLDAP Public License. diff --git a/src/licensedcode/data/rules/openldap-2.8_21.yml b/src/licensedcode/data/rules/openldap-2.8_21.yml deleted file mode 100644 index 5ac77e0b6a2..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -ignorable_urls: - - http://www.openldap.org/ - - http://www.openldap.org/license.html - - http://www.umich.edu/~dirsvcs/ldap/ldap.html diff --git a/src/licensedcode/data/rules/openldap-2.8_22.RULE b/src/licensedcode/data/rules/openldap-2.8_22.RULE index 7d82ef3970b..b01df5d1645 100644 --- a/src/licensedcode/data/rules/openldap-2.8_22.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_22.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.8 +is_license_tag: yes +relevance: 100 +--- + license: OpenLDAP BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_22.yml b/src/licensedcode/data/rules/openldap-2.8_22.yml deleted file mode 100644 index a1833b1677b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.8_23.RULE b/src/licensedcode/data/rules/openldap-2.8_23.RULE index 9b31e451989..97b65c7a94c 100644 --- a/src/licensedcode/data/rules/openldap-2.8_23.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_23.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 100 +--- + OpenLDAP BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_23.yml b/src/licensedcode/data/rules/openldap-2.8_23.yml deleted file mode 100644 index bfab1edb6a7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.8_24.RULE b/src/licensedcode/data/rules/openldap-2.8_24.RULE index fb969d922f3..fafef846715 100644 --- a/src/licensedcode/data/rules/openldap-2.8_24.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_24.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Open LDAP Public License v2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_24.yml b/src/licensedcode/data/rules/openldap-2.8_24.yml deleted file mode 100644 index c2b9bac29e6..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.8_25.RULE b/src/licensedcode/data/rules/openldap-2.8_25.RULE index e3401efc348..14edaeefd16 100644 --- a/src/licensedcode/data/rules/openldap-2.8_25.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_25.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + OLDAP-2.8 Open LDAP Public License v2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_25.yml b/src/licensedcode/data/rules/openldap-2.8_25.yml deleted file mode 100644 index c2b9bac29e6..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/openldap-2.8_26.RULE b/src/licensedcode/data/rules/openldap-2.8_26.RULE index 1cf9bfa8a09..6de6533b207 100644 --- a/src/licensedcode/data/rules/openldap-2.8_26.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_26.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open LDAP Public License v2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_26.yml b/src/licensedcode/data/rules/openldap-2.8_26.yml deleted file mode 100644 index fd9ebaf3567..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.8_27.RULE b/src/licensedcode/data/rules/openldap-2.8_27.RULE index 9cb625b913e..8ac3abb8fb2 100644 --- a/src/licensedcode/data/rules/openldap-2.8_27.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_27.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open LDAP Public License v2.8 OLDAP-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_27.yml b/src/licensedcode/data/rules/openldap-2.8_27.yml deleted file mode 100644 index fd9ebaf3567..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.8_28.RULE b/src/licensedcode/data/rules/openldap-2.8_28.RULE index 57783718413..d7a51b02e68 100644 --- a/src/licensedcode/data/rules/openldap-2.8_28.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_28.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.8 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OLDAP-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_28.yml b/src/licensedcode/data/rules/openldap-2.8_28.yml deleted file mode 100644 index 8990b1c15a2..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.8 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.8_29.RULE b/src/licensedcode/data/rules/openldap-2.8_29.RULE index 2da2d96e9e9..fc560467dce 100644 --- a/src/licensedcode/data/rules/openldap-2.8_29.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_29.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.8 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open LDAP Public License v2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_29.yml b/src/licensedcode/data/rules/openldap-2.8_29.yml deleted file mode 100644 index 8990b1c15a2..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.8 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.8_3.RULE b/src/licensedcode/data/rules/openldap-2.8_3.RULE index a35732d6493..4208c0405ae 100644 --- a/src/licensedcode/data/rules/openldap-2.8_3.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +minimum_coverage: 15 +ignorable_copyrights: + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/license.html +--- + The OpenLDAP Foundation * Redistribution and use in source and binary forms, with or without @@ -54,4 +66,4 @@ OpenLDAP is a registered trademark of the OpenLDAP Foundation. Copyright 1999-2003 The OpenLDAP Foundation , Redwood City, California, USA. All Rights Reserved. Permission to copy and -distribute verbatim copies of this document is granted. +distribute verbatim copies of this document is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_3.yml b/src/licensedcode/data/rules/openldap-2.8_3.yml deleted file mode 100644 index 97ae7eff510..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -minimum_coverage: 15 -ignorable_copyrights: - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_30.RULE b/src/licensedcode/data/rules/openldap-2.8_30.RULE index 4b5e3a689c6..c3f6f083b18 100644 --- a/src/licensedcode/data/rules/openldap-2.8_30.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_30.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.8 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OLDAP-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_30.yml b/src/licensedcode/data/rules/openldap-2.8_30.yml deleted file mode 100644 index 8990b1c15a2..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.8 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openldap-2.8_31.RULE b/src/licensedcode/data/rules/openldap-2.8_31.RULE index 49259e0af81..3b13b0a0a3a 100644 --- a/src/licensedcode/data/rules/openldap-2.8_31.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_31.RULE @@ -1,3 +1,15 @@ +--- +license_expression: openldap-2.8 +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_urls: + - http://www.openldap.org/license.html +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted only as authorized by the OpenLDAP * Public License. diff --git a/src/licensedcode/data/rules/openldap-2.8_31.yml b/src/licensedcode/data/rules/openldap-2.8_31.yml deleted file mode 100644 index 6ee8c17098b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_31.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: openldap-2.8 -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_32.RULE b/src/licensedcode/data/rules/openldap-2.8_32.RULE index 2d57bb4cf14..fb1c3b20047 100644 --- a/src/licensedcode/data/rules/openldap-2.8_32.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_32.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openldap-2.8 +is_license_text: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.openldap.org/license.html +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted only as authorized by the OpenLDAP * Public License. diff --git a/src/licensedcode/data/rules/openldap-2.8_32.yml b/src/licensedcode/data/rules/openldap-2.8_32.yml deleted file mode 100644 index 48522f63770..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_text: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_33.RULE b/src/licensedcode/data/rules/openldap-2.8_33.RULE index 87624e2c58a..d66c933eb31 100644 --- a/src/licensedcode/data/rules/openldap-2.8_33.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_33.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OLDAP-2.8 +--- + https://licenses.nuget.org/OLDAP-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_33.yml b/src/licensedcode/data/rules/openldap-2.8_33.yml deleted file mode 100644 index 2ecafa21c8b..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OLDAP-2.8 diff --git a/src/licensedcode/data/rules/openldap-2.8_34.RULE b/src/licensedcode/data/rules/openldap-2.8_34.RULE index 4a7fbe5c609..2ef5b1ae839 100644 --- a/src/licensedcode/data/rules/openldap-2.8_34.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_34.RULE @@ -1 +1,7 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OLDAP-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_34.yml b/src/licensedcode/data/rules/openldap-2.8_34.yml deleted file mode 100644 index bfab1edb6a7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openldap-2.8_35.RULE b/src/licensedcode/data/rules/openldap-2.8_35.RULE index c692c66da3e..b12ed50a466 100644 --- a/src/licensedcode/data/rules/openldap-2.8_35.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_35.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.8 +--- + {{OLDAP-2.8}} https://spdx.org/licenses/OLDAP-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_35.yml b/src/licensedcode/data/rules/openldap-2.8_35.yml deleted file mode 100644 index 3fd29e077f1..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.8 diff --git a/src/licensedcode/data/rules/openldap-2.8_36.RULE b/src/licensedcode/data/rules/openldap-2.8_36.RULE index 2f03f35f247..c3da7f6b5bd 100644 --- a/src/licensedcode/data/rules/openldap-2.8_36.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_36.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OLDAP-2.8 +--- + LICENSE {{OLDAP-2.8}} https://spdx.org/licenses/OLDAP-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_36.yml b/src/licensedcode/data/rules/openldap-2.8_36.yml deleted file mode 100644 index 3fd29e077f1..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OLDAP-2.8 diff --git a/src/licensedcode/data/rules/openldap-2.8_4.RULE b/src/licensedcode/data/rules/openldap-2.8_4.RULE index ef14728c60c..cd483b6533c 100644 --- a/src/licensedcode/data/rules/openldap-2.8_4.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +ignorable_urls: + - http://www.openldap.org/ + - http://www.openldap.org/license.html +--- + This work is part of OpenLDAP Software . @@ -9,4 +17,4 @@ Public License. A copy of this license is available in the file LICENSE-OPENLDAP in this directory of the distribution or, alternatively, at -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_4.yml b/src/licensedcode/data/rules/openldap-2.8_4.yml deleted file mode 100644 index 7af16be12f3..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -ignorable_urls: - - http://www.openldap.org/ - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_5.RULE b/src/licensedcode/data/rules/openldap-2.8_5.RULE index cf5ffe034ac..cef865bce91 100644 --- a/src/licensedcode/data/rules/openldap-2.8_5.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_5.RULE @@ -1,7 +1,14 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +ignorable_urls: + - http://www.openldap.org/license.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted only as authorized by the OpenLDAP Public License. A copy of this license is available in the file LICENSE-OPENLDAP in this directory of the distribution or, alternatively, at -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_5.yml b/src/licensedcode/data/rules/openldap-2.8_5.yml deleted file mode 100644 index 9ff3a94cda7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_6.RULE b/src/licensedcode/data/rules/openldap-2.8_6.RULE index f746bf934fa..809c81c3ef3 100644 --- a/src/licensedcode/data/rules/openldap-2.8_6.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +ignorable_urls: + - http://www.openldap.org/ + - http://www.openldap.org/license.html +--- + OpenLDAP This work is part of OpenLDAP Software . @@ -10,4 +18,4 @@ Public License. A copy of this license is available in the file LICENSE-OPENLDAP in this directory of the distribution or, alternatively, at -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_6.yml b/src/licensedcode/data/rules/openldap-2.8_6.yml deleted file mode 100644 index 7af16be12f3..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -ignorable_urls: - - http://www.openldap.org/ - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_7.RULE b/src/licensedcode/data/rules/openldap-2.8_7.RULE index 4de283250dc..4318a5082c9 100644 --- a/src/licensedcode/data/rules/openldap-2.8_7.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +ignorable_urls: + - http://www.openldap.org/license.html +--- + The OpenLDAP Foundation * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/openldap-2.8_7.yml b/src/licensedcode/data/rules/openldap-2.8_7.yml deleted file mode 100644 index 9ff3a94cda7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_8.RULE b/src/licensedcode/data/rules/openldap-2.8_8.RULE index e0bfe7eedcf..e547c449e6b 100644 --- a/src/licensedcode/data/rules/openldap-2.8_8.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_8.RULE @@ -1,7 +1,14 @@ +--- +license_expression: openldap-2.8 +is_license_notice: yes +ignorable_urls: + - http://www.openldap.org/license.html +--- + ## Redistribution and use in source and binary forms, with or without ## modification, are permitted only as authorized by the OpenLDAP ## Public License. ## ## A copy of this license is available in the file LICENSE in the ## top-level directory of the distribution or, alternatively, at -## . +## . \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_8.yml b/src/licensedcode/data/rules/openldap-2.8_8.yml deleted file mode 100644 index 9ff3a94cda7..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openldap-2.8 -is_license_notice: yes -ignorable_urls: - - http://www.openldap.org/license.html diff --git a/src/licensedcode/data/rules/openldap-2.8_9.RULE b/src/licensedcode/data/rules/openldap-2.8_9.RULE index f8b3244264f..5d58136d691 100644 --- a/src/licensedcode/data/rules/openldap-2.8_9.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_9.RULE @@ -1,3 +1,13 @@ +--- +license_expression: openldap-2.8 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. +ignorable_holders: + - The OpenLDAP Foundation, Redwood City, California, USA. +--- + The OpenLDAP Public License, Version 2.8, August 2003 Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: 1. Redistributions in source form must retain copyright statements and notices, 2. Redistributions in binary form must reproduce applicable copyright statements and notices, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution, and 3. Redistributions must contain a verbatim copy of this document. diff --git a/src/licensedcode/data/rules/openldap-2.8_9.yml b/src/licensedcode/data/rules/openldap-2.8_9.yml deleted file mode 100644 index 38d160fe23f..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_9.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: openldap-2.8 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California, USA. -ignorable_holders: - - The OpenLDAP Foundation, Redwood City, California, USA. diff --git a/src/licensedcode/data/rules/openldap-2.8_url_1.RULE b/src/licensedcode/data/rules/openldap-2.8_url_1.RULE index 602368baa7d..e2e94a72bcc 100644 --- a/src/licensedcode/data/rules/openldap-2.8_url_1.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.8 +--- + https://spdx.org/licenses/oldap-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_url_1.yml b/src/licensedcode/data/rules/openldap-2.8_url_1.yml deleted file mode 100644 index 8df6affbbae..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.8 diff --git a/src/licensedcode/data/rules/openldap-2.8_url_2.RULE b/src/licensedcode/data/rules/openldap-2.8_url_2.RULE index ec8954b855e..ce42086af38 100644 --- a/src/licensedcode/data/rules/openldap-2.8_url_2.RULE +++ b/src/licensedcode/data/rules/openldap-2.8_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oldap-2.8.html +--- + https://spdx.org/licenses/oldap-2.8.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openldap-2.8_url_2.yml b/src/licensedcode/data/rules/openldap-2.8_url_2.yml deleted file mode 100644 index d67dbe4373d..00000000000 --- a/src/licensedcode/data/rules/openldap-2.8_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oldap-2.8.html diff --git a/src/licensedcode/data/rules/openmarket-fastcgi.RULE b/src/licensedcode/data/rules/openmarket-fastcgi.RULE index 977171e2182..0e17122755a 100644 --- a/src/licensedcode/data/rules/openmarket-fastcgi.RULE +++ b/src/licensedcode/data/rules/openmarket-fastcgi.RULE @@ -1 +1,9 @@ +--- +license_expression: openmarket-fastcgi +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.fastcgi.com/drupal/node/8 +--- + http://www.fastcgi.com/drupal/node/8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openmarket-fastcgi.yml b/src/licensedcode/data/rules/openmarket-fastcgi.yml deleted file mode 100644 index a986e5206e7..00000000000 --- a/src/licensedcode/data/rules/openmarket-fastcgi.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openmarket-fastcgi -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.fastcgi.com/drupal/node/8 diff --git a/src/licensedcode/data/rules/openmotif-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/openmotif-exception-2.0-plus_1.RULE index dc87593f3bd..e87619b192f 100644 --- a/src/licensedcode/data/rules/openmotif-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/openmotif-exception-2.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus WITH openmotif-exception-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + This library 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, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/openmotif-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/openmotif-exception-2.0-plus_1.yml deleted file mode 100644 index f32d9e5765a..00000000000 --- a/src/licensedcode/data/rules/openmotif-exception-2.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus WITH openmotif-exception-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/openpbs-2.3.RULE b/src/licensedcode/data/rules/openpbs-2.3.RULE index 12b63a66963..4579cfa9a42 100644 --- a/src/licensedcode/data/rules/openpbs-2.3.RULE +++ b/src/licensedcode/data/rules/openpbs-2.3.RULE @@ -1 +1,9 @@ -www.OpenPBS.org +--- +license_expression: openpbs-2.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.openpbs.org/ +--- + +www.OpenPBS.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpbs-2.3.yml b/src/licensedcode/data/rules/openpbs-2.3.yml deleted file mode 100644 index c072fd01c4f..00000000000 --- a/src/licensedcode/data/rules/openpbs-2.3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openpbs-2.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.openpbs.org/ diff --git a/src/licensedcode/data/rules/openpbs-2.3_1.RULE b/src/licensedcode/data/rules/openpbs-2.3_1.RULE index 1d41c8a456f..a152646c23a 100644 --- a/src/licensedcode/data/rules/openpbs-2.3_1.RULE +++ b/src/licensedcode/data/rules/openpbs-2.3_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openpbs-2.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/OpenPBS +--- + http://fedoraproject.org/wiki/Licensing/OpenPBS \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpbs-2.3_1.yml b/src/licensedcode/data/rules/openpbs-2.3_1.yml deleted file mode 100644 index aa4a2ef9875..00000000000 --- a/src/licensedcode/data/rules/openpbs-2.3_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openpbs-2.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/OpenPBS diff --git a/src/licensedcode/data/rules/openpub_1.RULE b/src/licensedcode/data/rules/openpub_1.RULE index cee09bc195d..7faf991c3de 100644 --- a/src/licensedcode/data/rules/openpub_1.RULE +++ b/src/licensedcode/data/rules/openpub_1.RULE @@ -1,7 +1,14 @@ +--- +license_expression: openpub +is_license_notice: yes +ignorable_urls: + - http://www.opencontent.org/openpub +--- + This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior -permission is obtained from the copyright holder. +permission is obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_1.yml b/src/licensedcode/data/rules/openpub_1.yml deleted file mode 100644 index 92463e1423b..00000000000 --- a/src/licensedcode/data/rules/openpub_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openpub -is_license_notice: yes -ignorable_urls: - - http://www.opencontent.org/openpub diff --git a/src/licensedcode/data/rules/openpub_10.RULE b/src/licensedcode/data/rules/openpub_10.RULE index 19aa09f8713..0420cfe5642 100644 --- a/src/licensedcode/data/rules/openpub_10.RULE +++ b/src/licensedcode/data/rules/openpub_10.RULE @@ -1 +1,10 @@ +--- +license_expression: openpub +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Publication License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_10.yml b/src/licensedcode/data/rules/openpub_10.yml deleted file mode 100644 index 2d1d4311dbc..00000000000 --- a/src/licensedcode/data/rules/openpub_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openpub -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openpub_11.RULE b/src/licensedcode/data/rules/openpub_11.RULE index 6eb568d13ff..ad74603eee9 100644 --- a/src/licensedcode/data/rules/openpub_11.RULE +++ b/src/licensedcode/data/rules/openpub_11.RULE @@ -1 +1,10 @@ +--- +license_expression: openpub +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OPUBL-1.0 Open Publication License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_11.yml b/src/licensedcode/data/rules/openpub_11.yml deleted file mode 100644 index 2d1d4311dbc..00000000000 --- a/src/licensedcode/data/rules/openpub_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openpub -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openpub_12.RULE b/src/licensedcode/data/rules/openpub_12.RULE index 07c1a8d56fc..47f701cf2af 100644 --- a/src/licensedcode/data/rules/openpub_12.RULE +++ b/src/licensedcode/data/rules/openpub_12.RULE @@ -1 +1,10 @@ +--- +license_expression: openpub +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Publication License v1.0 OPUBL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_12.yml b/src/licensedcode/data/rules/openpub_12.yml deleted file mode 100644 index 2d1d4311dbc..00000000000 --- a/src/licensedcode/data/rules/openpub_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openpub -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openpub_13.RULE b/src/licensedcode/data/rules/openpub_13.RULE index 1f158603562..9c911a0ce5a 100644 --- a/src/licensedcode/data/rules/openpub_13.RULE +++ b/src/licensedcode/data/rules/openpub_13.RULE @@ -1 +1,10 @@ +--- +license_expression: openpub +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OPUBL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_13.yml b/src/licensedcode/data/rules/openpub_13.yml deleted file mode 100644 index 560e791f9dd..00000000000 --- a/src/licensedcode/data/rules/openpub_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openpub -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openpub_14.RULE b/src/licensedcode/data/rules/openpub_14.RULE index 497a920ee1a..53d3b0a70c4 100644 --- a/src/licensedcode/data/rules/openpub_14.RULE +++ b/src/licensedcode/data/rules/openpub_14.RULE @@ -1 +1,10 @@ +--- +license_expression: openpub +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Publication License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_14.yml b/src/licensedcode/data/rules/openpub_14.yml deleted file mode 100644 index 560e791f9dd..00000000000 --- a/src/licensedcode/data/rules/openpub_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openpub -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openpub_15.RULE b/src/licensedcode/data/rules/openpub_15.RULE index c955d8dc333..0a9efe77f65 100644 --- a/src/licensedcode/data/rules/openpub_15.RULE +++ b/src/licensedcode/data/rules/openpub_15.RULE @@ -1 +1,10 @@ +--- +license_expression: openpub +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OPUBL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_15.yml b/src/licensedcode/data/rules/openpub_15.yml deleted file mode 100644 index 560e791f9dd..00000000000 --- a/src/licensedcode/data/rules/openpub_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openpub -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openpub_16.RULE b/src/licensedcode/data/rules/openpub_16.RULE index bd51d4f0c37..5703022622c 100644 --- a/src/licensedcode/data/rules/openpub_16.RULE +++ b/src/licensedcode/data/rules/openpub_16.RULE @@ -1 +1,9 @@ +--- +license_expression: openpub +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OPUBL-1.0 +--- + https://licenses.nuget.org/OPUBL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_16.yml b/src/licensedcode/data/rules/openpub_16.yml deleted file mode 100644 index b878ffcc539..00000000000 --- a/src/licensedcode/data/rules/openpub_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openpub -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OPUBL-1.0 diff --git a/src/licensedcode/data/rules/openpub_17.RULE b/src/licensedcode/data/rules/openpub_17.RULE index b1e797544e3..29f4c0dfb6d 100644 --- a/src/licensedcode/data/rules/openpub_17.RULE +++ b/src/licensedcode/data/rules/openpub_17.RULE @@ -1 +1,7 @@ +--- +license_expression: openpub +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OPUBL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_17.yml b/src/licensedcode/data/rules/openpub_17.yml deleted file mode 100644 index e5b67e53e9b..00000000000 --- a/src/licensedcode/data/rules/openpub_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openpub -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openpub_18.RULE b/src/licensedcode/data/rules/openpub_18.RULE index d1d6e36f82a..f8f7a8eb3ad 100644 --- a/src/licensedcode/data/rules/openpub_18.RULE +++ b/src/licensedcode/data/rules/openpub_18.RULE @@ -1 +1,9 @@ +--- +license_expression: openpub +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OPUBL-1.0 +--- + {{OPUBL-1.0}} https://spdx.org/licenses/OPUBL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_18.yml b/src/licensedcode/data/rules/openpub_18.yml deleted file mode 100644 index 503de8318c3..00000000000 --- a/src/licensedcode/data/rules/openpub_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openpub -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OPUBL-1.0 diff --git a/src/licensedcode/data/rules/openpub_19.RULE b/src/licensedcode/data/rules/openpub_19.RULE index 6a0f1f40d88..19d065b0c57 100644 --- a/src/licensedcode/data/rules/openpub_19.RULE +++ b/src/licensedcode/data/rules/openpub_19.RULE @@ -1 +1,9 @@ +--- +license_expression: openpub +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OPUBL-1.0 +--- + LICENSE {{OPUBL-1.0}} https://spdx.org/licenses/OPUBL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_19.yml b/src/licensedcode/data/rules/openpub_19.yml deleted file mode 100644 index 503de8318c3..00000000000 --- a/src/licensedcode/data/rules/openpub_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openpub -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OPUBL-1.0 diff --git a/src/licensedcode/data/rules/openpub_2.RULE b/src/licensedcode/data/rules/openpub_2.RULE index 20a2afdd606..98782470afc 100644 --- a/src/licensedcode/data/rules/openpub_2.RULE +++ b/src/licensedcode/data/rules/openpub_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openpub +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opencontent.org/openpub/ +--- + http://opencontent.org/openpub/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_2.yml b/src/licensedcode/data/rules/openpub_2.yml deleted file mode 100644 index bee5c2dec18..00000000000 --- a/src/licensedcode/data/rules/openpub_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openpub -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opencontent.org/openpub/ diff --git a/src/licensedcode/data/rules/openpub_3.RULE b/src/licensedcode/data/rules/openpub_3.RULE index 9d494fc7d01..fbf1d364e1a 100644 --- a/src/licensedcode/data/rules/openpub_3.RULE +++ b/src/licensedcode/data/rules/openpub_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: openpub +is_license_notice: yes +ignorable_urls: + - http://www.opencontent.org/openpub/ +--- + Documentation licensing terms This material may be distributed only subject to the terms @@ -10,4 +17,4 @@ copyright holder. Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior - permission is obtained from the copyright holder. + permission is obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_3.yml b/src/licensedcode/data/rules/openpub_3.yml deleted file mode 100644 index 0e03eae9988..00000000000 --- a/src/licensedcode/data/rules/openpub_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openpub -is_license_notice: yes -ignorable_urls: - - http://www.opencontent.org/openpub/ diff --git a/src/licensedcode/data/rules/openpub_4.RULE b/src/licensedcode/data/rules/openpub_4.RULE index 9da42129e9d..f603a802a15 100644 --- a/src/licensedcode/data/rules/openpub_4.RULE +++ b/src/licensedcode/data/rules/openpub_4.RULE @@ -1 +1,7 @@ - licensed under the OPL. +--- +license_expression: openpub +is_license_reference: yes +relevance: 100 +--- + + licensed under the OPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_4.yml b/src/licensedcode/data/rules/openpub_4.yml deleted file mode 100644 index e5b67e53e9b..00000000000 --- a/src/licensedcode/data/rules/openpub_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openpub -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openpub_5.RULE b/src/licensedcode/data/rules/openpub_5.RULE index 2870328824e..f1be59dc441 100644 --- a/src/licensedcode/data/rules/openpub_5.RULE +++ b/src/licensedcode/data/rules/openpub_5.RULE @@ -1,7 +1,14 @@ +--- +license_expression: openpub +is_license_notice: yes +ignorable_urls: + - http://www.opencontent.org/openpub +--- + This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/) Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior -permission obtained from the copyright holder +permission obtained from the copyright holder \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_5.yml b/src/licensedcode/data/rules/openpub_5.yml deleted file mode 100644 index 92463e1423b..00000000000 --- a/src/licensedcode/data/rules/openpub_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openpub -is_license_notice: yes -ignorable_urls: - - http://www.opencontent.org/openpub diff --git a/src/licensedcode/data/rules/openpub_6.RULE b/src/licensedcode/data/rules/openpub_6.RULE index 08cfdb256ca..e394c3c28c8 100644 --- a/src/licensedcode/data/rules/openpub_6.RULE +++ b/src/licensedcode/data/rules/openpub_6.RULE @@ -1,4 +1,12 @@ +--- +license_expression: openpub +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opencontent.org/openpub +--- + This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at -http://www.opencontent.org/openpub/) +http://www.opencontent.org/openpub/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_6.yml b/src/licensedcode/data/rules/openpub_6.yml deleted file mode 100644 index c8a5dcca22d..00000000000 --- a/src/licensedcode/data/rules/openpub_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openpub -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opencontent.org/openpub diff --git a/src/licensedcode/data/rules/openpub_7.RULE b/src/licensedcode/data/rules/openpub_7.RULE index 67193766a83..d06b651ae39 100644 --- a/src/licensedcode/data/rules/openpub_7.RULE +++ b/src/licensedcode/data/rules/openpub_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: openpub +is_license_reference: yes +relevance: 99 +--- + Open Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_7.yml b/src/licensedcode/data/rules/openpub_7.yml deleted file mode 100644 index 4b0ce10cd6c..00000000000 --- a/src/licensedcode/data/rules/openpub_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openpub -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/openpub_8.RULE b/src/licensedcode/data/rules/openpub_8.RULE index e47bdad0dbb..ccb510e8978 100644 --- a/src/licensedcode/data/rules/openpub_8.RULE +++ b/src/licensedcode/data/rules/openpub_8.RULE @@ -1,3 +1,17 @@ +--- +license_expression: openpub AND free-unknown +is_license_text: yes +relevance: 85 +notes: modified +ignorable_authors: + - the GNU Foundation +ignorable_urls: + - http://works.opencontent.org/ + - http://www.opencontent.org/openpub +ignorable_emails: + - opal@opencontent.org +--- + {License Terms} {General Terms} @@ -165,5 +179,4 @@ restrictive than the Open Publication license. If you have questions about the Open Publication License, please contact TBD, and/or the Open Publication Authors' List at opal@opencontent.org, -via email. - +via email. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_8.yml b/src/licensedcode/data/rules/openpub_8.yml deleted file mode 100644 index 4a9ab6feb1e..00000000000 --- a/src/licensedcode/data/rules/openpub_8.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: openpub AND free-unknown -is_license_text: yes -relevance: 85 -notes: modified -ignorable_authors: - - the GNU Foundation -ignorable_urls: - - http://works.opencontent.org/ - - http://www.opencontent.org/openpub -ignorable_emails: - - opal@opencontent.org diff --git a/src/licensedcode/data/rules/openpub_9.RULE b/src/licensedcode/data/rules/openpub_9.RULE index 1eed1c2746b..816fcd55412 100644 --- a/src/licensedcode/data/rules/openpub_9.RULE +++ b/src/licensedcode/data/rules/openpub_9.RULE @@ -1 +1,10 @@ +--- +license_expression: openpub +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Publication License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/openpub_9.yml b/src/licensedcode/data/rules/openpub_9.yml deleted file mode 100644 index 2d1d4311dbc..00000000000 --- a/src/licensedcode/data/rules/openpub_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openpub -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/opensaml-1.0.RULE b/src/licensedcode/data/rules/opensaml-1.0.RULE index 668f7d72531..9a0aeb9a58e 100644 --- a/src/licensedcode/data/rules/opensaml-1.0.RULE +++ b/src/licensedcode/data/rules/opensaml-1.0.RULE @@ -1,3 +1,14 @@ +--- +license_expression: opensaml-1.0 +is_license_text: yes +ignorable_authors: + - the University Corporation +ignorable_urls: + - http://www.ucaid.edu/ +ignorable_emails: + - opensaml@opensaml.org +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/opensaml-1.0.yml b/src/licensedcode/data/rules/opensaml-1.0.yml deleted file mode 100644 index e7e0c5d981a..00000000000 --- a/src/licensedcode/data/rules/opensaml-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: opensaml-1.0 -is_license_text: yes -ignorable_authors: - - the University Corporation -ignorable_urls: - - http://www.ucaid.edu/ -ignorable_emails: - - opensaml@opensaml.org diff --git a/src/licensedcode/data/rules/openssh_1.RULE b/src/licensedcode/data/rules/openssh_1.RULE index cadde35f58e..3fe0a57b08b 100644 --- a/src/licensedcode/data/rules/openssh_1.RULE +++ b/src/licensedcode/data/rules/openssh_1.RULE @@ -1 +1,10 @@ +--- +license_expression: openssh +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SSH OpenSSH license \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_1.yml b/src/licensedcode/data/rules/openssh_1.yml deleted file mode 100644 index b32f99ebc0d..00000000000 --- a/src/licensedcode/data/rules/openssh_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssh -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssh_10.RULE b/src/licensedcode/data/rules/openssh_10.RULE index 9a5904be65c..65b9e77b012 100644 --- a/src/licensedcode/data/rules/openssh_10.RULE +++ b/src/licensedcode/data/rules/openssh_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openssh +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SSH-OpenSSH +--- + {{SSH-OpenSSH}} https://spdx.org/licenses/SSH-OpenSSH \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_10.yml b/src/licensedcode/data/rules/openssh_10.yml deleted file mode 100644 index 002810d93cd..00000000000 --- a/src/licensedcode/data/rules/openssh_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssh -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SSH-OpenSSH diff --git a/src/licensedcode/data/rules/openssh_11.RULE b/src/licensedcode/data/rules/openssh_11.RULE index 1323cfb01da..b82be2c2abd 100644 --- a/src/licensedcode/data/rules/openssh_11.RULE +++ b/src/licensedcode/data/rules/openssh_11.RULE @@ -1 +1,9 @@ +--- +license_expression: openssh +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SSH-OpenSSH +--- + LICENSE {{SSH-OpenSSH}} https://spdx.org/licenses/SSH-OpenSSH \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_11.yml b/src/licensedcode/data/rules/openssh_11.yml deleted file mode 100644 index 002810d93cd..00000000000 --- a/src/licensedcode/data/rules/openssh_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssh -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SSH-OpenSSH diff --git a/src/licensedcode/data/rules/openssh_2.RULE b/src/licensedcode/data/rules/openssh_2.RULE index 5d6f7970f60..1ec0e2569f2 100644 --- a/src/licensedcode/data/rules/openssh_2.RULE +++ b/src/licensedcode/data/rules/openssh_2.RULE @@ -1 +1,10 @@ +--- +license_expression: openssh +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SSH OpenSSH license \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_2.yml b/src/licensedcode/data/rules/openssh_2.yml deleted file mode 100644 index b32f99ebc0d..00000000000 --- a/src/licensedcode/data/rules/openssh_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssh -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssh_3.RULE b/src/licensedcode/data/rules/openssh_3.RULE index 36c07f53bbd..ea40c81bf17 100644 --- a/src/licensedcode/data/rules/openssh_3.RULE +++ b/src/licensedcode/data/rules/openssh_3.RULE @@ -1 +1,10 @@ +--- +license_expression: openssh +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SSH-OpenSSH SSH OpenSSH license \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_3.yml b/src/licensedcode/data/rules/openssh_3.yml deleted file mode 100644 index b32f99ebc0d..00000000000 --- a/src/licensedcode/data/rules/openssh_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssh -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssh_4.RULE b/src/licensedcode/data/rules/openssh_4.RULE index 1124028400e..47ccd30cb98 100644 --- a/src/licensedcode/data/rules/openssh_4.RULE +++ b/src/licensedcode/data/rules/openssh_4.RULE @@ -1 +1,10 @@ +--- +license_expression: openssh +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SSH OpenSSH license SSH-OpenSSH \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_4.yml b/src/licensedcode/data/rules/openssh_4.yml deleted file mode 100644 index b32f99ebc0d..00000000000 --- a/src/licensedcode/data/rules/openssh_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssh -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssh_5.RULE b/src/licensedcode/data/rules/openssh_5.RULE index 639d16a0ad4..216b8000955 100644 --- a/src/licensedcode/data/rules/openssh_5.RULE +++ b/src/licensedcode/data/rules/openssh_5.RULE @@ -1 +1,10 @@ +--- +license_expression: openssh +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SSH-OpenSSH \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_5.yml b/src/licensedcode/data/rules/openssh_5.yml deleted file mode 100644 index f320a6bbff5..00000000000 --- a/src/licensedcode/data/rules/openssh_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssh -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssh_6.RULE b/src/licensedcode/data/rules/openssh_6.RULE index c347103b0ef..c86c86b48b0 100644 --- a/src/licensedcode/data/rules/openssh_6.RULE +++ b/src/licensedcode/data/rules/openssh_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openssh +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SSH OpenSSH license \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_6.yml b/src/licensedcode/data/rules/openssh_6.yml deleted file mode 100644 index f320a6bbff5..00000000000 --- a/src/licensedcode/data/rules/openssh_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssh -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssh_7.RULE b/src/licensedcode/data/rules/openssh_7.RULE index 2d6164353cd..4bd7672b3c6 100644 --- a/src/licensedcode/data/rules/openssh_7.RULE +++ b/src/licensedcode/data/rules/openssh_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openssh +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SSH-OpenSSH \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_7.yml b/src/licensedcode/data/rules/openssh_7.yml deleted file mode 100644 index f320a6bbff5..00000000000 --- a/src/licensedcode/data/rules/openssh_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssh -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssh_8.RULE b/src/licensedcode/data/rules/openssh_8.RULE index 5a600531263..03c4a03ed34 100644 --- a/src/licensedcode/data/rules/openssh_8.RULE +++ b/src/licensedcode/data/rules/openssh_8.RULE @@ -1 +1,9 @@ +--- +license_expression: openssh +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SSH-OpenSSH +--- + https://licenses.nuget.org/SSH-OpenSSH \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_8.yml b/src/licensedcode/data/rules/openssh_8.yml deleted file mode 100644 index 8ca23632e66..00000000000 --- a/src/licensedcode/data/rules/openssh_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssh -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SSH-OpenSSH diff --git a/src/licensedcode/data/rules/openssh_9.RULE b/src/licensedcode/data/rules/openssh_9.RULE index 8bbc503c120..a1c84802b52 100644 --- a/src/licensedcode/data/rules/openssh_9.RULE +++ b/src/licensedcode/data/rules/openssh_9.RULE @@ -1 +1,7 @@ +--- +license_expression: openssh +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SSH-OpenSSH \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssh_9.yml b/src/licensedcode/data/rules/openssh_9.yml deleted file mode 100644 index 79517ab8ba2..00000000000 --- a/src/licensedcode/data/rules/openssh_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssh -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-exception-agpl-3.0_1.RULE b/src/licensedcode/data/rules/openssl-exception-agpl-3.0_1.RULE index fa7edc7e75f..9ce0e7024c2 100644 --- a/src/licensedcode/data/rules/openssl-exception-agpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/openssl-exception-agpl-3.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: agpl-3.0-plus WITH openssl-exception-agpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the @@ -26,4 +33,4 @@ file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source files in the program, then also delete - it in the license file. + it in the license file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-exception-agpl-3.0_1.yml b/src/licensedcode/data/rules/openssl-exception-agpl-3.0_1.yml deleted file mode 100644 index e4d27c71df0..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-agpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: agpl-3.0-plus WITH openssl-exception-agpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/openssl-exception-gpl-2.0-plus_1.RULE index 9f051be14d9..d8aac47fb8b 100644 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/openssl-exception-gpl-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0-plus +is_license_notice: yes +minimum_coverage: 70 +--- + 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 @@ -14,4 +20,4 @@ obey the GNU GPL in all respects for all of the code used other than OpenSSL and unRAR. If you modify this program, you may extend this exception to your version of the program, but you are not obligated to do so. (In other words, you may release your derived work under pure -GNU GPL version 2 or later as published by the FSF.) +GNU GPL version 2 or later as published by the FSF.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/openssl-exception-gpl-2.0-plus_1.yml deleted file mode 100644 index 504b3c8a666..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus WITH openssl-exception-gpl-2.0-plus -is_license_notice: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_1.RULE b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_1.RULE index ec8c46c6382..437f0d37bf4 100644 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openssl-exception-gpl-2.0 +is_license_text: yes +relevance: 100 +--- + In addition, as a special exception, the author of this program gives permission to link the code of its release with the OpenSSL project's "OpenSSL" library (or @@ -8,4 +14,4 @@ License in all respects for all of the code used other than "OpenSSL". If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to do so, -delete this exception statement from your version. +delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_1.yml b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_1.yml deleted file mode 100644 index 4e3c0bbc796..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-exception-gpl-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_2.RULE b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_2.RULE index e5ba04587eb..494dd0dc6fa 100644 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openssl-exception-gpl-2.0 +is_license_text: yes +relevance: 100 +--- + In addition, as a special exception, the copyright holders give permission to link the code of this library and its programs with the OpenSSL library, and distribute linked combinations including the two. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_2.yml b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_2.yml deleted file mode 100644 index 4e3c0bbc796..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-exception-gpl-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_3.RULE b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_3.RULE index 3d9158d13d5..cc4b3cf3471 100644 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: openssl-exception-gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + with the explicit exemption that linking with the OpenSSL libraries is permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_3.yml b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_3.yml deleted file mode 100644 index 31eb5010d81..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-exception-gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_4.RULE b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_4.RULE index b83283b250d..49734e801d1 100644 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: openssl-exception-gpl-2.0 +is_license_text: yes +--- + In addition, as a special exception, the copyright holders listed above give permission to link the code of its release of Qt with the OpenSSL project's "OpenSSL" library (or modified versions of the "OpenSSL" library that use the diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_4.yml b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_4.yml deleted file mode 100644 index 3ad5f8dc47a..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: openssl-exception-gpl-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_5.RULE b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_5.RULE index bc002583f28..4232e7bfe97 100644 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: openssl-exception-gpl-2.0 +is_license_text: yes +--- + In addition, as a special exception, the copyright holders listed above give permission to link the code of its release of with the OpenSSL project's "OpenSSL" library (or modified versions of the "OpenSSL" library that use the diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_5.yml b/src/licensedcode/data/rules/openssl-exception-gpl-2.0_5.yml deleted file mode 100644 index 3ad5f8dc47a..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-gpl-2.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: openssl-exception-gpl-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_1.RULE index 1d74642aed6..08660432b58 100644 --- a/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-3.0-plus WITH openssl-exception-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, or (at your option) @@ -19,4 +26,4 @@ of the file(s), but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. If you delete this exception statement from all source - files in the program, then also delete it here. + files in the program, then also delete it here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_1.yml deleted file mode 100644 index 3b4284df5af..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-3.0-plus WITH openssl-exception-gpl-3.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_2.RULE index 1208510ce7b..891ec4782bf 100644 --- a/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openssl-exception-gpl-3.0-plus +is_license_text: yes +relevance: 100 +--- + * As a special exception, the copyright holders give * permission to link the code of portions of this program with the * OpenSSL library under certain conditions as described in each diff --git a/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_2.yml deleted file mode 100644 index 384b071e8c9..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-gpl-3.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-exception-gpl-3.0-plus -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-exception-lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/openssl-exception-lgpl-2.0-plus_1.RULE index ffd457c6edf..e82ee1d4021 100644 --- a/src/licensedcode/data/rules/openssl-exception-lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/openssl-exception-lgpl-2.0-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: openssl-exception-lgpl-2.0-plus +is_license_reference: yes +relevance: 95 +minimum_coverage: 80 +referenced_filenames: + - COPYING +--- + As an additional exemption you are allowed to compile & link against the OpenSSL libraries as published by the OpenSSL project. See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-exception-lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/openssl-exception-lgpl-2.0-plus_1.yml deleted file mode 100644 index 9a1061aef26..00000000000 --- a/src/licensedcode/data/rules/openssl-exception-lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssl-exception-lgpl-2.0-plus -is_license_reference: yes -relevance: 95 -minimum_coverage: 80 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/openssl-ssleay.SPDX.RULE b/src/licensedcode/data/rules/openssl-ssleay.SPDX.RULE index 2ab70e4044f..cf9b006c9fd 100644 --- a/src/licensedcode/data/rules/openssl-ssleay.SPDX.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay.SPDX.RULE @@ -1,3 +1,26 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +minimum_coverage: 80 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + OpenSSL License Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/openssl-ssleay.SPDX.yml b/src/licensedcode/data/rules/openssl-ssleay.SPDX.yml deleted file mode 100644 index 3818c2566fa..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay.SPDX.yml +++ /dev/null @@ -1,20 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -minimum_coverage: 80 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_1.RULE b/src/licensedcode/data/rules/openssl-ssleay_1.RULE index b0e60736778..b27b67e20a2 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_1.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_1.RULE @@ -1,4 +1,12 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +notes: Sample from OpenSSL crypto/aes/aes_cbc.c +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at - * https://www.openssl.org/source/license.html + * https://www.openssl.org/source/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_1.yml b/src/licensedcode/data/rules/openssl-ssleay_1.yml deleted file mode 100644 index 46cb6c991e0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -notes: Sample from OpenSSL crypto/aes/aes_cbc.c -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_10.RULE b/src/licensedcode/data/rules/openssl-ssleay_10.RULE index 33c0058acdf..57bad94a7a2 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_10.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +--- + The OpenSSL toolkit is licensed under a dual-license (the OpenSSL license plus the SSLeay license), which means that you are free to get and use it for commercial and non-commercial purposes as long as you diff --git a/src/licensedcode/data/rules/openssl-ssleay_10.yml b/src/licensedcode/data/rules/openssl-ssleay_10.yml deleted file mode 100644 index 38c6baf3e90..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes diff --git a/src/licensedcode/data/rules/openssl-ssleay_11.RULE b/src/licensedcode/data/rules/openssl-ssleay_11.RULE index 99d5f922da0..8bb4b9d54e8 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_11.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_11.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + This file is distributed under the terms of the OpenSSL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_11.yml b/src/licensedcode/data/rules/openssl-ssleay_11.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_12.RULE b/src/licensedcode/data/rules/openssl-ssleay_12.RULE index b40a27b6550..c77d3c21fe1 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_12.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_12.RULE @@ -1,5 +1,13 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +notes: Sample from OpenSSL crypto/aes/aes_cbc.c +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + Licensed under the OpenSSL licenses, (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.openssl.org/source/license.html -or in the file LICENSE in the source distribution. +or in the file LICENSE in the source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_12.yml b/src/licensedcode/data/rules/openssl-ssleay_12.yml deleted file mode 100644 index 46cb6c991e0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -notes: Sample from OpenSSL crypto/aes/aes_cbc.c -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_13.RULE b/src/licensedcode/data/rules/openssl-ssleay_13.RULE index c882e65af1a..f202fb7f046 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_13.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +--- + Rights for redistribution and usage in source and binary forms are granted according to the OpenSSL license. Warranty of any kind is -disclaimed. +disclaimed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_13.yml b/src/licensedcode/data/rules/openssl-ssleay_13.yml deleted file mode 100644 index 38c6baf3e90..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes diff --git a/src/licensedcode/data/rules/openssl-ssleay_14.RULE b/src/licensedcode/data/rules/openssl-ssleay_14.RULE index e13a534e569..3c414c6103a 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_14.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_14.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2018 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== @@ -121,4 +145,4 @@ * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_14.yml b/src/licensedcode/data/rules/openssl-ssleay_14.yml deleted file mode 100644 index eb8c5f5d0bd..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_14.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2018 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_15.RULE b/src/licensedcode/data/rules/openssl-ssleay_15.RULE index 5a5f2253381..087ab00715d 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_15.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_15.RULE @@ -1,2 +1,8 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + Rights for redistribution and usage in source and binary -forms are granted according to the OpenSSL license. +forms are granted according to the OpenSSL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_15.yml b/src/licensedcode/data/rules/openssl-ssleay_15.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_16.RULE b/src/licensedcode/data/rules/openssl-ssleay_16.RULE index 31b2e8de694..014bb8af807 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_16.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_16.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 95 +--- + contributed under the OpenSSL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_16.yml b/src/licensedcode/data/rules/openssl-ssleay_16.yml deleted file mode 100644 index c05e69f84fc..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/openssl-ssleay_17.RULE b/src/licensedcode/data/rules/openssl-ssleay_17.RULE index 73a96565c9d..81a1cf43b15 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_17.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_17.RULE @@ -1,2 +1,8 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + is licensed pursuant to the OpenSSL open source - * license. + * license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_17.yml b/src/licensedcode/data/rules/openssl-ssleay_17.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_18.RULE b/src/licensedcode/data/rules/openssl-ssleay_18.RULE index e95fa868bed..7ae344aea38 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_18.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_18.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + License: other /* ==================================================================== * Copyright (c) The OpenSSL Project. All rights reserved. @@ -111,5 +135,4 @@ License: other * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] - */ - \ No newline at end of file + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_18.yml b/src/licensedcode/data/rules/openssl-ssleay_18.yml deleted file mode 100644 index 1a11eaa21f2..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_18.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_19.RULE b/src/licensedcode/data/rules/openssl-ssleay_19.RULE index f2173ffd133..53b832b7552 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_19.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_19.RULE @@ -1,3 +1,24 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2016 The OpenSSL Project +ignorable_holders: + - Eric Young + - The OpenSSL Project +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the OpenSSL License and the original SSLeay license apply to the toolkit. Copyright (c) 1998-2016 The OpenSSL Project. All rights reserved. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)" diff --git a/src/licensedcode/data/rules/openssl-ssleay_19.yml b/src/licensedcode/data/rules/openssl-ssleay_19.yml deleted file mode 100644 index 15daeffc6c2..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_19.yml +++ /dev/null @@ -1,18 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2016 The OpenSSL Project -ignorable_holders: - - Eric Young - - The OpenSSL Project -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_2.RULE b/src/licensedcode/data/rules/openssl-ssleay_2.RULE index 4e6c89ac9d7..25a3917d571 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_2.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_2.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +--- + OpenSSL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_2.yml b/src/licensedcode/data/rules/openssl-ssleay_2.yml deleted file mode 100644 index f5f86ecbcf0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_20.RULE b/src/licensedcode/data/rules/openssl-ssleay_20.RULE index ca33938df0d..8cca6795c43 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_20.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_20.RULE @@ -1,2 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +--- + Contributed to the OpenSSL project under the terms of the OpenSSL license -included with the version of the OpenSSL software that includes this module. +included with the version of the OpenSSL software that includes this module. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_20.yml b/src/licensedcode/data/rules/openssl-ssleay_20.yml deleted file mode 100644 index 38c6baf3e90..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes diff --git a/src/licensedcode/data/rules/openssl-ssleay_21.RULE b/src/licensedcode/data/rules/openssl-ssleay_21.RULE index 605b63462e5..3e5e37a3078 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_21.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_21.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +referenced_filenames: + - ../../LICENSE +--- + according to the OpenSSL license [found in ../../LICENSE] \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_21.yml b/src/licensedcode/data/rules/openssl-ssleay_21.yml deleted file mode 100644 index e7e0f26e14f..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -referenced_filenames: - - ../../LICENSE diff --git a/src/licensedcode/data/rules/openssl-ssleay_22.RULE b/src/licensedcode/data/rules/openssl-ssleay_22.RULE index 83f6c25674d..6510ecac71e 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_22.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_22.RULE @@ -1,3 +1,14 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +ignorable_authors: + - Andy Polyakov for the OpenSSL project +ignorable_emails: + - appro@fy.chalmers.se +--- + // Written by Andy Polyakov for the OpenSSL // project. Rights for redistribution and usage in source and binary -// forms are granted according to the OpenSSL license. +// forms are granted according to the OpenSSL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_22.yml b/src/licensedcode/data/rules/openssl-ssleay_22.yml deleted file mode 100644 index 6eadf7622ab..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_22.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -ignorable_authors: - - Andy Polyakov for the OpenSSL project -ignorable_emails: - - appro@fy.chalmers.se diff --git a/src/licensedcode/data/rules/openssl-ssleay_23.RULE b/src/licensedcode/data/rules/openssl-ssleay_23.RULE index f31e055b77f..1121e058268 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_23.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_23.RULE @@ -1 +1,7 @@ - * Licensed under the OpenSSL license \ No newline at end of file +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + + * Licensed under the OpenSSL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_23.yml b/src/licensedcode/data/rules/openssl-ssleay_23.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_24.RULE b/src/licensedcode/data/rules/openssl-ssleay_24.RULE index db9d1961a56..3439b62869b 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_24.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_24.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + Licensed under the terms of the OpenSSL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_24.yml b/src/licensedcode/data/rules/openssl-ssleay_24.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_25.RULE b/src/licensedcode/data/rules/openssl-ssleay_25.RULE index e03e7cab703..44360d28af5 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_25.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_25.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + Redistribution and use is governed by OpenSSL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_25.yml b/src/licensedcode/data/rules/openssl-ssleay_25.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_26.RULE b/src/licensedcode/data/rules/openssl-ssleay_26.RULE index 5435d8c7046..de4e65f1ed5 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_26.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_26.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + OpenSSL Licence](https://www.openssl.org/source/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_26.yml b/src/licensedcode/data/rules/openssl-ssleay_26.yml deleted file mode 100644 index bd70c858fbf..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_27.RULE b/src/licensedcode/data/rules/openssl-ssleay_27.RULE index 5323f37e720..a7b602d1a90 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_27.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_27.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + https://www.openssl.org/source/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_27.yml b/src/licensedcode/data/rules/openssl-ssleay_27.yml deleted file mode 100644 index bd70c858fbf..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_28.RULE b/src/licensedcode/data/rules/openssl-ssleay_28.RULE index 86f2398aa45..e77e6d65c26 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_28.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_28.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +--- + OpenSSL Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_28.yml b/src/licensedcode/data/rules/openssl-ssleay_28.yml deleted file mode 100644 index f5f86ecbcf0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_29.RULE b/src/licensedcode/data/rules/openssl-ssleay_29.RULE index 55e366dbcae..2811abe2895 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_29.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_29.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + The OpenSSL toolkit is licensed under an Apache-style licence, which basically means that you are free to get and use it for commercial and non-commercial purposes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_29.yml b/src/licensedcode/data/rules/openssl-ssleay_29.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_3.RULE b/src/licensedcode/data/rules/openssl-ssleay_3.RULE index 8b6857657be..d04c5891486 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_3.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_3.RULE @@ -1,3 +1,26 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +minimum_coverage: 80 +notes: full openssl/ssleay with extra headers +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + License This is a copy of the current LICENSE file inside the CVS repository. @@ -123,4 +146,4 @@ This is a copy of the current LICENSE file inside the CVS repository. * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_3.yml b/src/licensedcode/data/rules/openssl-ssleay_3.yml deleted file mode 100644 index b195c72071f..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_3.yml +++ /dev/null @@ -1,20 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -minimum_coverage: 80 -notes: full openssl/ssleay with extra headers -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_30.RULE b/src/licensedcode/data/rules/openssl-ssleay_30.RULE index cedd83aef34..31452baf8b0 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_30.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_30.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_tag: yes +relevance: 100 +--- + License: OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_30.yml b/src/licensedcode/data/rules/openssl-ssleay_30.yml deleted file mode 100644 index b016a16bcbe..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_31.RULE b/src/licensedcode/data/rules/openssl-ssleay_31.RULE index bfeac2ec237..48e8cf19096 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_31.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_31.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +notes: typo in "if the [rouines] from the library" +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2008 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== diff --git a/src/licensedcode/data/rules/openssl-ssleay_31.yml b/src/licensedcode/data/rules/openssl-ssleay_31.yml deleted file mode 100644 index 0c5c01ca45a..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_31.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -notes: typo in "if the [rouines] from the library" -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2008 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_32.RULE b/src/licensedcode/data/rules/openssl-ssleay_32.RULE index 9c94a2c4ff8..d9c3f921f91 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_32.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_32.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +--- + openssl library : BSD style license + SSLeay license \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_32.yml b/src/licensedcode/data/rules/openssl-ssleay_32.yml deleted file mode 100644 index f5f86ecbcf0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_33.RULE b/src/licensedcode/data/rules/openssl-ssleay_33.RULE index 4be4ba19cf2..fe83486145d 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_33.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_33.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.OpenSSL +--- + The complete text of the SSL license can be found in LICENSE.OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_33.yml b/src/licensedcode/data/rules/openssl-ssleay_33.yml deleted file mode 100644 index bf1da793431..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.OpenSSL diff --git a/src/licensedcode/data/rules/openssl-ssleay_34.RULE b/src/licensedcode/data/rules/openssl-ssleay_34.RULE index 3815df557ae..e577e058d74 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_34.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_34.RULE @@ -1,3 +1,25 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/openssl-ssleay_34.yml b/src/licensedcode/data/rules/openssl-ssleay_34.yml deleted file mode 100644 index 268d9e6e5f5..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_34.yml +++ /dev/null @@ -1,19 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_35.RULE b/src/licensedcode/data/rules/openssl-ssleay_35.RULE index 86e697feb03..92453d9dad9 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_35.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_35.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2016 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== diff --git a/src/licensedcode/data/rules/openssl-ssleay_35.yml b/src/licensedcode/data/rules/openssl-ssleay_35.yml deleted file mode 100644 index cce5127fb91..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_35.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2016 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_36.RULE b/src/licensedcode/data/rules/openssl-ssleay_36.RULE index 9a753c5d931..a215122e9af 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_36.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_36.RULE @@ -1,3 +1,28 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2003 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + The OpenSSL Project ( OpenSSL ) LICENSE ISSUES @@ -42,4 +67,4 @@ Redistribution and use in source and binary forms, with or without modification, THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``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 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. -The license and distribution terms for any publicly available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution license [including the GNU Public License.] +The license and distribution terms for any publicly available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution license [including the GNU Public License.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_36.yml b/src/licensedcode/data/rules/openssl-ssleay_36.yml deleted file mode 100644 index 4d9ad269ddb..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_36.yml +++ /dev/null @@ -1,22 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2003 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_37.RULE b/src/licensedcode/data/rules/openssl-ssleay_37.RULE index e46d6cf49f9..eba03cdf58c 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_37.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_37.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2002 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== diff --git a/src/licensedcode/data/rules/openssl-ssleay_37.yml b/src/licensedcode/data/rules/openssl-ssleay_37.yml deleted file mode 100644 index 09c43c0e7df..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_37.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2002 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_38.RULE b/src/licensedcode/data/rules/openssl-ssleay_38.RULE index fc610158ef3..ab15c5c8609 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_38.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_38.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + Open Source Software Licensed under the OpenSSL License and the original SSLeay License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_38.yml b/src/licensedcode/data/rules/openssl-ssleay_38.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_39.RULE b/src/licensedcode/data/rules/openssl-ssleay_39.RULE index 015d38edb74..22f9203422d 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_39.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_39.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + Terms of the OpenSSL License and the original SSLeay License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_39.yml b/src/licensedcode/data/rules/openssl-ssleay_39.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_4.RULE b/src/licensedcode/data/rules/openssl-ssleay_4.RULE index 74a756bcdb4..888a6e08f76 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_4.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_4.RULE @@ -1,3 +1,28 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +minimum_coverage: 80 +notes: full openssl/ssleay with extra headers +ignorable_copyrights: + - Copyright (c) Eric Young (eay@cryptsoft.com) + - Copyright (c) The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== diff --git a/src/licensedcode/data/rules/openssl-ssleay_4.yml b/src/licensedcode/data/rules/openssl-ssleay_4.yml deleted file mode 100644 index 88344531a3d..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_4.yml +++ /dev/null @@ -1,22 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -minimum_coverage: 80 -notes: full openssl/ssleay with extra headers -ignorable_copyrights: - - Copyright (c) Eric Young (eay@cryptsoft.com) - - Copyright (c) The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_40.RULE b/src/licensedcode/data/rules/openssl-ssleay_40.RULE index b88ac6df539..4a7ebc3191d 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_40.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_40.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2017 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== . diff --git a/src/licensedcode/data/rules/openssl-ssleay_40.yml b/src/licensedcode/data/rules/openssl-ssleay_40.yml deleted file mode 100644 index 5169d67b314..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_40.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2017 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_41.RULE b/src/licensedcode/data/rules/openssl-ssleay_41.RULE index eae9f29149c..0a30e73b647 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_41.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_41.RULE @@ -1,2 +1,10 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.openssl.org/source/license.txt +--- + # OpenSSL, which is being used and maybe distributed via one of this projects' # web sites, is subject to their licensing: https://www.openssl.org/source/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_41.yml b/src/licensedcode/data/rules/openssl-ssleay_41.yml deleted file mode 100644 index aa954eb26d5..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.openssl.org/source/license.txt diff --git a/src/licensedcode/data/rules/openssl-ssleay_42.RULE b/src/licensedcode/data/rules/openssl-ssleay_42.RULE index 959cac38658..e460893fe44 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_42.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_42.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +ignorable_emails: + - openssl-core@openssl.org +--- + OpenSSL License: The OpenSSL toolkit stays under a dual license, i.e. both the conditions of diff --git a/src/licensedcode/data/rules/openssl-ssleay_42.yml b/src/licensedcode/data/rules/openssl-ssleay_42.yml deleted file mode 100644 index 48d2e7c0635..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 -ignorable_emails: - - openssl-core@openssl.org diff --git a/src/licensedcode/data/rules/openssl-ssleay_43.RULE b/src/licensedcode/data/rules/openssl-ssleay_43.RULE index 97f64700338..707267f7ab8 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_43.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_43.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +ignorable_emails: + - openssl-core@openssl.org +--- + The OpenSSL toolkit stays under a dual license, i.e. both the conditions of the OpenSSL License and the original SSLeay license apply to the toolkit. See below for the actual license texts. Actually both licenses are BSD-style diff --git a/src/licensedcode/data/rules/openssl-ssleay_43.yml b/src/licensedcode/data/rules/openssl-ssleay_43.yml deleted file mode 100644 index 48d2e7c0635..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 -ignorable_emails: - - openssl-core@openssl.org diff --git a/src/licensedcode/data/rules/openssl-ssleay_44.RULE b/src/licensedcode/data/rules/openssl-ssleay_44.RULE index 04e9dc1beb9..c1c03e5db6c 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_44.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_44.RULE @@ -1 +1,8 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/schmel/openssl-gost/blob/18028d11296f4675276f0814674c5143caaa75e7/engine/gost_grasshopper_mac.c#L3 +--- + This file is distributed under the same license as OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_44.yml b/src/licensedcode/data/rules/openssl-ssleay_44.yml deleted file mode 100644 index 93e21d6bc56..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_44.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/schmel/openssl-gost/blob/18028d11296f4675276f0814674c5143caaa75e7/engine/gost_grasshopper_mac.c#L3 diff --git a/src/licensedcode/data/rules/openssl-ssleay_45.RULE b/src/licensedcode/data/rules/openssl-ssleay_45.RULE index a3d50b96d68..eaa42a85339 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_45.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_45.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + distributed under the same license as OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_45.yml b/src/licensedcode/data/rules/openssl-ssleay_45.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_46.RULE b/src/licensedcode/data/rules/openssl-ssleay_46.RULE index b26f8de6dcd..347d56c1ca4 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_46.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_46.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 90 +referenced_filenames: + - COPYING.openssl +--- + COPYING.openssl \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_46.yml b/src/licensedcode/data/rules/openssl-ssleay_46.yml deleted file mode 100644 index aff9beeec8b..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 90 -referenced_filenames: - - COPYING.openssl diff --git a/src/licensedcode/data/rules/openssl-ssleay_47.RULE b/src/licensedcode/data/rules/openssl-ssleay_47.RULE index 03ba9470c7b..0914a120f0a 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_47.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_47.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE OPENSSL LICENSE, THE TEXT OF WHICH IS SET FORTH BELOW. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_47.yml b/src/licensedcode/data/rules/openssl-ssleay_47.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_48.RULE b/src/licensedcode/data/rules/openssl-ssleay_48.RULE index f062bcd7657..32fa0db7ea0 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_48.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_48.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE OPENSSL LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_48.yml b/src/licensedcode/data/rules/openssl-ssleay_48.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_49.RULE b/src/licensedcode/data/rules/openssl-ssleay_49.RULE index ea70960d9da..3290c32f9ea 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_49.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_49.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE OPENSSL LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_49.yml b/src/licensedcode/data/rules/openssl-ssleay_49.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_5.RULE b/src/licensedcode/data/rules/openssl-ssleay_5.RULE index 6a46e77939c..9731fd25a7f 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_5.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_5.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.openssl.org/source/license.html +--- + http://www.openssl.org/source/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_5.yml b/src/licensedcode/data/rules/openssl-ssleay_5.yml deleted file mode 100644 index 199a1a9fd42..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_50.RULE b/src/licensedcode/data/rules/openssl-ssleay_50.RULE index ed1d0335b41..15221389efb 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_50.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_50.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + The OpenSSL toolkit stays under a double license, i.e. both the conditions of the OpenSSL License and the original SSLeay license apply to the toolkit. See below for the actual license texts. Actually both licenses are BSD-style diff --git a/src/licensedcode/data/rules/openssl-ssleay_50.yml b/src/licensedcode/data/rules/openssl-ssleay_50.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_51.RULE b/src/licensedcode/data/rules/openssl-ssleay_51.RULE index 85c6cd185a3..97a34633184 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_51.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_51.RULE @@ -1,3 +1,18 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + This product includes cryptographic software written by Eric Young (eay@cryptsoft.com). This product includes software written by Tim Hudson (tjh@cryptsoft.com). diff --git a/src/licensedcode/data/rules/openssl-ssleay_51.yml b/src/licensedcode/data/rules/openssl-ssleay_51.yml deleted file mode 100644 index 2313643d197..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_51.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_52.RULE b/src/licensedcode/data/rules/openssl-ssleay_52.RULE index 41f655fafc9..e0c81f6c91d 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_52.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_52.RULE @@ -1,2 +1,12 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +ignorable_authors: + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +--- + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_52.yml b/src/licensedcode/data/rules/openssl-ssleay_52.yml deleted file mode 100644 index 499c3eea6fd..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_52.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 -ignorable_authors: - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ diff --git a/src/licensedcode/data/rules/openssl-ssleay_53.RULE b/src/licensedcode/data/rules/openssl-ssleay_53.RULE index 31e22d1eb8c..3432189c6a8 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_53.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_53.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 99 +--- + LICENSE INFORMATION: OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_53.yml b/src/licensedcode/data/rules/openssl-ssleay_53.yml deleted file mode 100644 index d6fba509fc1..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/openssl-ssleay_54.RULE b/src/licensedcode/data/rules/openssl-ssleay_54.RULE index 27604cb3739..eb291a01404 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_54.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_54.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + - OpenSSL license : https://www.openssl.org/source/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_54.yml b/src/licensedcode/data/rules/openssl-ssleay_54.yml deleted file mode 100644 index bd70c858fbf..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_55.RULE b/src/licensedcode/data/rules/openssl-ssleay_55.RULE index db4e6644ecd..19f03cc4743 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_55.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_55.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2008 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== diff --git a/src/licensedcode/data/rules/openssl-ssleay_55.yml b/src/licensedcode/data/rules/openssl-ssleay_55.yml deleted file mode 100644 index e3f667cff1c..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_55.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2008 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_56.RULE b/src/licensedcode/data/rules/openssl-ssleay_56.RULE index 2991593c057..d328e722d5a 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_56.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_56.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998-2019 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== diff --git a/src/licensedcode/data/rules/openssl-ssleay_56.yml b/src/licensedcode/data/rules/openssl-ssleay_56.yml deleted file mode 100644 index b3ff4483a79..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_56.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998-2019 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_57.RULE b/src/licensedcode/data/rules/openssl-ssleay_57.RULE index 74224939964..0440ceff9fa 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_57.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_57.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +relevance: 100 +--- + the conditions of the OpenSSL License and the original SSLeay license apply \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_57.yml b/src/licensedcode/data/rules/openssl-ssleay_57.yml deleted file mode 100644 index 5ef942e21ae..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_58.RULE b/src/licensedcode/data/rules/openssl-ssleay_58.RULE index fff9bafe1d4..311d092120a 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_58.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_58.RULE @@ -1 +1,10 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: OpenSSL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_58.yml b/src/licensedcode/data/rules/openssl-ssleay_58.yml deleted file mode 100644 index 92b6739fd3b..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_58.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssl-ssleay_59.RULE b/src/licensedcode/data/rules/openssl-ssleay_59.RULE index 49f84573b79..cd53ec3f977 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_59.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_59.RULE @@ -1 +1,10 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OpenSSL OpenSSL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_59.yml b/src/licensedcode/data/rules/openssl-ssleay_59.yml deleted file mode 100644 index 92b6739fd3b..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_59.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssl-ssleay_6.RULE b/src/licensedcode/data/rules/openssl-ssleay_6.RULE index 8981533bf6c..2c80478728e 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_6.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_6.RULE @@ -1,3 +1,15 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +notes: Sample from OpenSSL crypto/md32_common.h +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_6.yml b/src/licensedcode/data/rules/openssl-ssleay_6.yml deleted file mode 100644 index 8c82b655b7b..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_6.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -notes: Sample from OpenSSL crypto/md32_common.h -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_60.RULE b/src/licensedcode/data/rules/openssl-ssleay_60.RULE index 3da3913ef10..d900dd55a84 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_60.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_60.RULE @@ -1 +1,10 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OpenSSL License OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_60.yml b/src/licensedcode/data/rules/openssl-ssleay_60.yml deleted file mode 100644 index 92b6739fd3b..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_60.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssl-ssleay_61.RULE b/src/licensedcode/data/rules/openssl-ssleay_61.RULE index aef792320ef..da508b8eaa7 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_61.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_61.RULE @@ -1 +1,10 @@ +--- +license_expression: openssl-ssleay +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OpenSSL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_61.yml b/src/licensedcode/data/rules/openssl-ssleay_61.yml deleted file mode 100644 index 69bae8b8bcc..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_61.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssl-ssleay -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssl-ssleay_62.RULE b/src/licensedcode/data/rules/openssl-ssleay_62.RULE index e630b45eeee..87977b80632 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_62.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_62.RULE @@ -1 +1,10 @@ +--- +license_expression: openssl-ssleay +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_62.yml b/src/licensedcode/data/rules/openssl-ssleay_62.yml deleted file mode 100644 index 69bae8b8bcc..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_62.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openssl-ssleay -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openssl-ssleay_63.RULE b/src/licensedcode/data/rules/openssl-ssleay_63.RULE index d7bd1cc8de9..0af5c0a7f46 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_63.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_63.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/OpenSSL_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_63.yml b/src/licensedcode/data/rules/openssl-ssleay_63.yml deleted file mode 100644 index f5f86ecbcf0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_64.RULE b/src/licensedcode/data/rules/openssl-ssleay_64.RULE index 051a3cd5496..4186c8c02ab 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_64.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_64.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OpenSSL +--- + https://licenses.nuget.org/OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_64.yml b/src/licensedcode/data/rules/openssl-ssleay_64.yml deleted file mode 100644 index d70862a384d..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OpenSSL diff --git a/src/licensedcode/data/rules/openssl-ssleay_65.RULE b/src/licensedcode/data/rules/openssl-ssleay_65.RULE index bbdf0e7b40c..77b22f4c14e 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_65.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_65.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_65.yml b/src/licensedcode/data/rules/openssl-ssleay_65.yml deleted file mode 100644 index f5f86ecbcf0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_66.RULE b/src/licensedcode/data/rules/openssl-ssleay_66.RULE index 5cf319ff931..a1c24aeeddc 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_66.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_66.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OpenSSL +--- + {{OpenSSL}} https://spdx.org/licenses/OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_66.yml b/src/licensedcode/data/rules/openssl-ssleay_66.yml deleted file mode 100644 index 66dc5b8741d..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_66.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OpenSSL diff --git a/src/licensedcode/data/rules/openssl-ssleay_67.RULE b/src/licensedcode/data/rules/openssl-ssleay_67.RULE index 2aeb4d6b864..20bc2ab7e75 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_67.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_67.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OpenSSL +--- + LICENSE {{OpenSSL}} https://spdx.org/licenses/OpenSSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_67.yml b/src/licensedcode/data/rules/openssl-ssleay_67.yml deleted file mode 100644 index 66dc5b8741d..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_67.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OpenSSL diff --git a/src/licensedcode/data/rules/openssl-ssleay_7.RULE b/src/licensedcode/data/rules/openssl-ssleay_7.RULE index e5ccc0e3e9e..f95cb6226cb 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_7.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openssl-ssleay +is_license_notice: yes +notes: Sample from OpenSSL crypto/aes/aes_cbc.c +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at diff --git a/src/licensedcode/data/rules/openssl-ssleay_7.yml b/src/licensedcode/data/rules/openssl-ssleay_7.yml deleted file mode 100644 index 46cb6c991e0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_notice: yes -notes: Sample from OpenSSL crypto/aes/aes_cbc.c -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_8.RULE b/src/licensedcode/data/rules/openssl-ssleay_8.RULE index ddc686884b4..21badcfc2f3 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_8.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_8.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 100 +--- + _BOTH_ the OpenSSL license _AND_ the SSLeay license apply \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_8.yml b/src/licensedcode/data/rules/openssl-ssleay_8.yml deleted file mode 100644 index f5f86ecbcf0..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_9.RULE b/src/licensedcode/data/rules/openssl-ssleay_9.RULE index 7b00ff0af22..be057e7e5c1 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_9.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_9.RULE @@ -1,3 +1,27 @@ +--- +license_expression: openssl-ssleay +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) + - Copyright (c) 1998 The OpenSSL Project + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Eric Young + - The OpenSSL Project + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + LICENSE ISSUES ============== @@ -121,5 +145,4 @@ * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] - */ - + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_9.yml b/src/licensedcode/data/rules/openssl-ssleay_9.yml deleted file mode 100644 index 4826ee55050..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_9.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: openssl-ssleay -is_license_text: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 1995-1998 Eric Young (eay@cryptsoft.com) - - Copyright (c) 1998 The OpenSSL Project - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Eric Young - - The OpenSSL Project - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_isc_1.RULE b/src/licensedcode/data/rules/openssl-ssleay_and_isc_1.RULE index 0a7638c71e1..e834fb6ee84 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_and_isc_1.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_and_isc_1.RULE @@ -1 +1,7 @@ +--- +license_expression: openssl-ssleay AND isc +is_license_notice: yes +relevance: 100 +--- + large parts of it fall under OpenSSL licensing. Files that are completely new have a Google copyright and an ISC license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_isc_1.yml b/src/licensedcode/data/rules/openssl-ssleay_and_isc_1.yml deleted file mode 100644 index b67095fcc19..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_and_isc_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openssl-ssleay AND isc -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_mit.RULE b/src/licensedcode/data/rules/openssl-ssleay_and_mit.RULE index 60f3edd1423..c32a233853d 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_and_mit.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_and_mit.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openssl-ssleay AND mit +is_license_reference: yes +minimum_coverage: 97 +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at @@ -22,4 +30,4 @@ 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. */ +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/openssl-ssleay_and_mit.yml b/src/licensedcode/data/rules/openssl-ssleay_and_mit.yml deleted file mode 100644 index 49e3b20e97d..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_and_mit.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay AND mit -is_license_reference: yes -minimum_coverage: 97 -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive.RULE b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive.RULE index c1ec2501316..c373ae1b556 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openssl-ssleay AND other-permissive +is_license_reference: yes +notes: from OpenSSL CHANGES +ignorable_urls: + - https://www.openssl.org/source/OCB-patent-grant-OpenSSL.pdf +--- + OpenSSL has been granted a patent license compatible with the OpenSSL license for use of OCB. Details are available at https://www.openssl.org/source/OCB-patent-grant-OpenSSL.pdf. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive.yml b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive.yml deleted file mode 100644 index f961d45820b..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay AND other-permissive -is_license_reference: yes -notes: from OpenSSL CHANGES -ignorable_urls: - - https://www.openssl.org/source/OCB-patent-grant-OpenSSL.pdf diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_1.RULE b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_1.RULE index c22b44718e4..17d1a513805 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_1.RULE @@ -1,3 +1,20 @@ +--- +license_expression: openssl-ssleay AND other-permissive +is_license_text: yes +relevance: 100 +notes: See https://curl.se/libcurl/c/curlx.html +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project + - the Project +ignorable_urls: + - https://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_1.yml b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_1.yml deleted file mode 100644 index 9b6003c10dc..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_1.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: openssl-ssleay AND other-permissive -is_license_text: yes -relevance: 100 -notes: See https://curl.se/libcurl/c/curlx.html -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project - - the Project -ignorable_urls: - - https://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_2.RULE b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_2.RULE index f838b19a0c5..b3c4f79c6fb 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_2.RULE @@ -1,3 +1,19 @@ +--- +license_expression: openssl-ssleay AND other-permissive +is_license_text: yes +relevance: 100 +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project + - the Project +ignorable_urls: + - https://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_2.yml b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_2.yml deleted file mode 100644 index f484dac1d35..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_2.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: openssl-ssleay AND other-permissive -is_license_text: yes -relevance: 100 -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project - - the Project -ignorable_urls: - - https://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_3.RULE b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_3.RULE index 973c4f9dded..d323aa96ccc 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_3.RULE @@ -1,3 +1,20 @@ +--- +license_expression: openssl-ssleay AND other-permissive +is_license_notice: yes +relevance: 100 +notes: Openevidence OpenSSL-based license as seen in curl +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project + - the Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_3.yml b/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_3.yml deleted file mode 100644 index 6814eb9dfca..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_and_other-permissive_3.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: openssl-ssleay AND other-permissive -is_license_notice: yes -relevance: 100 -notes: Openevidence OpenSSL-based license as seen in curl -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project - - the Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.RULE b/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.RULE index 3fd8a7b9d18..8cee411db65 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.RULE @@ -1 +1,7 @@ -Permission to use under GPL terms is granted. +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +relevance: 99 +--- + +Permission to use under GPL terms is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.yml b/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.yml deleted file mode 100644 index b364c41ecc7..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_1.RULE b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_1.RULE index c6895873aee..9d2efb742d5 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openssl-ssleay OR bsd-new +is_license_notice: yes +minimum_coverage: 85 +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at @@ -33,4 +41,4 @@ 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_1.yml b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_1.yml deleted file mode 100644 index 86279f50acd..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay OR bsd-new -is_license_notice: yes -minimum_coverage: 85 -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_2.RULE b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_2.RULE index 8a825938ca0..ed472fe9f65 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_2.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openssl-ssleay OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.openssl.org/~appro/cryptogams +--- + The module is, however, dual licensed under OpenSSL and CRYPTOGAMS licenses depending on where you obtain it. For further -details see http://www.openssl.org/~appro/cryptogams/. +details see http://www.openssl.org/~appro/cryptogams/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_2.yml b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_2.yml deleted file mode 100644 index 86ca862fbe3..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.openssl.org/~appro/cryptogams diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_3.RULE b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_3.RULE index 550236314f1..59536456e49 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_3.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_3.RULE @@ -1,4 +1,16 @@ +--- +license_expression: openssl-ssleay OR bsd-new +is_license_notice: yes +minimum_coverage: 90 +ignorable_authors: + - Andy Polyakov for the OpenSSL project +ignorable_urls: + - http://www.openssl.org/~appro/cryptogams +ignorable_emails: + - appro@fy.chalmers.se +--- + Written by Andy Polyakov for the OpenSSL project. The module is, however, dual licensed under OpenSSL and CRYPTOGAMS licenses depending on where you obtain it. For further -details see http://www.openssl.org/~appro/cryptogams/. +details see http://www.openssl.org/~appro/cryptogams/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_3.yml b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_3.yml deleted file mode 100644 index 77195cd365f..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: openssl-ssleay OR bsd-new -is_license_notice: yes -minimum_coverage: 90 -ignorable_authors: - - Andy Polyakov for the OpenSSL project -ignorable_urls: - - http://www.openssl.org/~appro/cryptogams -ignorable_emails: - - appro@fy.chalmers.se diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_1.RULE index 246ca3a7b55..04e453c5abd 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_1.RULE @@ -1,5 +1,13 @@ +--- +license_expression: openssl-ssleay OR bsd-new OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.openssl.org/~appro/cryptogams +--- + The module is, however, dual licensed under OpenSSL and CRYPTOGAMS licenses depending on where you obtain it. For further details see http://www.openssl.org/~appro/cryptogams/. -Permission to use under GPL terms is granted. +Permission to use under GPL terms is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 5cb6544b505..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay OR bsd-new OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.openssl.org/~appro/cryptogams diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_or_gpl-2.0_1.RULE index 7ab2977f4bb..27e0bbfc87f 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_or_gpl-2.0_1.RULE @@ -1,5 +1,13 @@ +--- +license_expression: openssl-ssleay OR bsd-new OR gpl-1.0-plus OR gpl-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.openssl.org/~appro/cryptogams +--- + The module is, however, dual licensed under OpenSSL and CRYPTOGAMS licenses depending on where you obtain it. For further details see http://www.openssl.org/~appro/cryptogams/. -Permission to use under GPLv2 terms is granted. +Permission to use under GPLv2 terms is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_or_gpl-2.0_1.yml deleted file mode 100644 index 9067411881e..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-new_or_gpl-1.0-plus_or_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay OR bsd-new OR gpl-1.0-plus OR gpl-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.openssl.org/~appro/cryptogams diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-simplified_1.RULE index 3ff430397d8..46144001626 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-simplified_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: openssl-ssleay OR bsd-simplified +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - https://www.openssl.org/source/license.html +--- + Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at @@ -28,4 +36,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/openssl-ssleay_or_bsd-simplified_1.yml deleted file mode 100644 index e1c249beadb..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_or_bsd-simplified_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay OR bsd-simplified -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - https://www.openssl.org/source/license.html diff --git a/src/licensedcode/data/rules/openssl-ssleay_url_1.RULE b/src/licensedcode/data/rules/openssl-ssleay_url_1.RULE index 7b4818451bc..efa26b96413 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_url_1.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/openssl +--- + https://spdx.org/licenses/openssl \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_url_1.yml b/src/licensedcode/data/rules/openssl-ssleay_url_1.yml deleted file mode 100644 index 520272fee46..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/openssl diff --git a/src/licensedcode/data/rules/openssl-ssleay_url_2.RULE b/src/licensedcode/data/rules/openssl-ssleay_url_2.RULE index 142c829baa3..8652e1e1b81 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_url_2.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openssl-ssleay +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/openssl.html +--- + https://spdx.org/licenses/openssl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_url_2.yml b/src/licensedcode/data/rules/openssl-ssleay_url_2.yml deleted file mode 100644 index a8d442b13dc..00000000000 --- a/src/licensedcode/data/rules/openssl-ssleay_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openssl-ssleay -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/openssl.html diff --git a/src/licensedcode/data/rules/openssl_1.RULE b/src/licensedcode/data/rules/openssl_1.RULE index b09bb14254c..587be34acdb 100644 --- a/src/licensedcode/data/rules/openssl_1.RULE +++ b/src/licensedcode/data/rules/openssl_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: openssl +is_license_text: yes +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -47,4 +62,4 @@ * (eay@cryptsoft.com). This product includes software written by Tim * Hudson (tjh@cryptsoft.com). * - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl_1.yml b/src/licensedcode/data/rules/openssl_1.yml deleted file mode 100644 index ead6cd38752..00000000000 --- a/src/licensedcode/data/rules/openssl_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: openssl -is_license_text: yes -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl_2.RULE b/src/licensedcode/data/rules/openssl_2.RULE index 69e4464e663..bfda0f5c457 100644 --- a/src/licensedcode/data/rules/openssl_2.RULE +++ b/src/licensedcode/data/rules/openssl_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: openssl +is_license_notice: yes +notes: open ssl partial text +ignorable_authors: + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - openssl-core@openssl.org +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -27,4 +39,4 @@ * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * for use in the OpenSSL Toolkit (http://www.openssl.org/)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl_2.yml b/src/licensedcode/data/rules/openssl_2.yml deleted file mode 100644 index f25de87e483..00000000000 --- a/src/licensedcode/data/rules/openssl_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: openssl -is_license_notice: yes -notes: open ssl partial text -ignorable_authors: - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - openssl-core@openssl.org diff --git a/src/licensedcode/data/rules/openssl_3.RULE b/src/licensedcode/data/rules/openssl_3.RULE index b4006a152ec..38a3950b812 100644 --- a/src/licensedcode/data/rules/openssl_3.RULE +++ b/src/licensedcode/data/rules/openssl_3.RULE @@ -1,3 +1,20 @@ +--- +license_expression: openssl +is_license_text: yes +minimum_coverage: 40 +notes: openssl long variant +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - licensing@OpenSSL.org + - tjh@cryptsoft.com +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -45,4 +62,4 @@ * * This product includes cryptographic software written by Eric Young * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). + * Hudson (tjh@cryptsoft.com). \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl_3.yml b/src/licensedcode/data/rules/openssl_3.yml deleted file mode 100644 index b1b1ebc4078..00000000000 --- a/src/licensedcode/data/rules/openssl_3.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: openssl -is_license_text: yes -minimum_coverage: 40 -notes: openssl long variant -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - licensing@OpenSSL.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openssl_4.RULE b/src/licensedcode/data/rules/openssl_4.RULE index 5b88684f68d..e57909674c4 100644 --- a/src/licensedcode/data/rules/openssl_4.RULE +++ b/src/licensedcode/data/rules/openssl_4.RULE @@ -1,3 +1,15 @@ +--- +license_expression: openssl +is_license_text: yes +minimum_coverage: 50 +ignorable_authors: + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - openssl-core@openssl.org +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -41,4 +53,4 @@ * 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/openssl_4.yml b/src/licensedcode/data/rules/openssl_4.yml deleted file mode 100644 index 1d45bc2cb4e..00000000000 --- a/src/licensedcode/data/rules/openssl_4.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: openssl -is_license_text: yes -minimum_coverage: 50 -ignorable_authors: - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - openssl-core@openssl.org diff --git a/src/licensedcode/data/rules/openssl_5.RULE b/src/licensedcode/data/rules/openssl_5.RULE index 4a1505ff9e8..91f8ca4523e 100644 --- a/src/licensedcode/data/rules/openssl_5.RULE +++ b/src/licensedcode/data/rules/openssl_5.RULE @@ -1,3 +1,23 @@ +--- +license_expression: openssl +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 1998-2003 The OpenSSL Project +ignorable_holders: + - The OpenSSL Project +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) + - the OpenSSL Project +ignorable_urls: + - http://www.openssl.org/ +ignorable_emails: + - eay@cryptsoft.com + - openssl-core@openssl.org + - tjh@cryptsoft.com +--- + OpenSSL License: diff --git a/src/licensedcode/data/rules/openssl_5.yml b/src/licensedcode/data/rules/openssl_5.yml deleted file mode 100644 index 6f9d7229407..00000000000 --- a/src/licensedcode/data/rules/openssl_5.yml +++ /dev/null @@ -1,17 +0,0 @@ -license_expression: openssl -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 1998-2003 The OpenSSL Project -ignorable_holders: - - The OpenSSL Project -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) - - the OpenSSL Project -ignorable_urls: - - http://www.openssl.org/ -ignorable_emails: - - eay@cryptsoft.com - - openssl-core@openssl.org - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_1.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_1.RULE index 3659f3a1160..30754f22743 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_1.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_notice: yes +relevance: 100 +--- + In addition, as a special exception, OpenVPN Solutions LLC gives permission to link the code of this program with the OpenSSL library (or with modified versions of OpenSSL that use the same license as OpenSSL), and distribute linked combinations diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_1.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_1.yml deleted file mode 100644 index 0525d998056..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_10.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_10.RULE index 5cc65243d09..745140f2dec 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_10.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_10.RULE @@ -1 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/openvpn-openssl-exception +--- + https://licenses.nuget.org/openvpn-openssl-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_10.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_10.yml deleted file mode 100644 index 517550d3596..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/openvpn-openssl-exception diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_11.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_11.RULE index ecc51f2fc0b..b3116cc1b4e 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_11.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_11.RULE @@ -1 +1,7 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/openvpn-openssl-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_11.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_11.yml deleted file mode 100644 index 5b0737824b5..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_12.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_12.RULE index 58c8474985d..6eea722e905 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_12.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_12.RULE @@ -1 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/openvpn-openssl-exception +--- + LICENSE {{openvpn-openssl-exception}} https://spdx.org/licenses/openvpn-openssl-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_12.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_12.yml deleted file mode 100644 index 7dda19b4f00..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/openvpn-openssl-exception diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_13.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_13.RULE index 5e4b8b51420..c17281b4522 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_13.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_13.RULE @@ -1 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/openvpn-openssl-exception +--- + {{openvpn-openssl-exception}} https://spdx.org/licenses/openvpn-openssl-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_13.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_13.yml deleted file mode 100644 index 7dda19b4f00..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/openvpn-openssl-exception diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_2.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_2.RULE index d93151470b5..2ec357c407f 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_2.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_notice: yes +relevance: 100 +--- + In addition, as a special exception, OpenVPN Technologies, Inc. gives permission to link the code of this program with the OpenSSL Library (or with modified versions of OpenSSL that use the same license as OpenSSL), and distribute linked diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_2.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_2.yml deleted file mode 100644 index 0525d998056..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_3.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_3.RULE index cfef7030347..23e3add6156 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_3.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_notice: yes +relevance: 100 +--- + Special exception for linking with OpenSSL: In addition, as a special exception, OpenVPN Technologies, Inc. gives permission diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_3.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_3.yml deleted file mode 100644 index 0525d998056..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_4.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_4.RULE index 04551b56833..540be4022f8 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_4.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_notice: yes +relevance: 100 +--- + Special exception for linking with OpenSSL: In addition, as a special exception, gives permission diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_4.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_4.yml deleted file mode 100644 index 0525d998056..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_5.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_5.RULE index 5263691ac00..ffa2301f050 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_5.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: openvpn-openssl-exception +is_license_notice: yes +relevance: 100 +notes: https://tracker.debian.org/media/packages/o/openvpn/copyright-2.4.0-6%2Bdeb9u2 +--- + In addition, as a special exception, gives permission to link the code of this program with the OpenSSL library (or with modified versions of OpenSSL that use the same diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_5.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_5.yml deleted file mode 100644 index f2ee302b044..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_notice: yes -relevance: 100 -notes: https://tracker.debian.org/media/packages/o/openvpn/copyright-2.4.0-6%2Bdeb9u2 diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_6.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_6.RULE index 80779893c90..95cd7e81393 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_6.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_6.RULE @@ -1 +1,10 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: OpenVPN OpenSSL Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_6.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_6.yml deleted file mode 100644 index 985b7644734..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_7.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_7.RULE index 1fb8b2dc15f..91638b65bb1 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_7.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_7.RULE @@ -1 +1,10 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + openvpn-openssl-exception OpenVPN OpenSSL Exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_7.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_7.yml deleted file mode 100644 index 985b7644734..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_8.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_8.RULE index 13b64633372..eda29a4ae7a 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_8.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_8.RULE @@ -1 +1,10 @@ +--- +license_expression: openvpn-openssl-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: openvpn-openssl-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_8.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_8.yml deleted file mode 100644 index 53044aebf78..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_9.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_9.RULE index f189a2402fe..096fa0224e5 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_9.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_9.RULE @@ -1 +1,10 @@ +--- +license_expression: openvpn-openssl-exception +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: openvpn-openssl-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_9.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_9.yml deleted file mode 100644 index 53044aebf78..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_url_1.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_url_1.RULE index dfdd58dd64e..c44670f2b6c 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_url_1.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/openvpn-openssl-exception +--- + https://spdx.org/licenses/openvpn-openssl-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_url_1.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_url_1.yml deleted file mode 100644 index 5d374b18b79..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/openvpn-openssl-exception diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_url_2.RULE b/src/licensedcode/data/rules/openvpn-openssl-exception_url_2.RULE index e410c578681..82d89c4df34 100644 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_url_2.RULE +++ b/src/licensedcode/data/rules/openvpn-openssl-exception_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/openvpn-openssl-exception.html +--- + https://spdx.org/licenses/openvpn-openssl-exception.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/openvpn-openssl-exception_url_2.yml b/src/licensedcode/data/rules/openvpn-openssl-exception_url_2.yml deleted file mode 100644 index 9aaa5927d27..00000000000 --- a/src/licensedcode/data/rules/openvpn-openssl-exception_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/openvpn-openssl-exception.html diff --git a/src/licensedcode/data/rules/opera-widget-1.0.RULE b/src/licensedcode/data/rules/opera-widget-1.0.RULE index cda735a0274..2d7b30c9663 100644 --- a/src/licensedcode/data/rules/opera-widget-1.0.RULE +++ b/src/licensedcode/data/rules/opera-widget-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: opera-widget-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://dev.opera.com/articles/view/opera-widgets-sdk/ +--- + http://dev.opera.com/articles/view/opera-widgets-sdk/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/opera-widget-1.0.yml b/src/licensedcode/data/rules/opera-widget-1.0.yml deleted file mode 100644 index f29f5bc3a93..00000000000 --- a/src/licensedcode/data/rules/opera-widget-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opera-widget-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://dev.opera.com/articles/view/opera-widgets-sdk/ diff --git a/src/licensedcode/data/rules/opl-1.0.RULE b/src/licensedcode/data/rules/opl-1.0.RULE index ede0a9c2d74..816208ea4a8 100644 --- a/src/licensedcode/data/rules/opl-1.0.RULE +++ b/src/licensedcode/data/rules/opl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: opl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opencontent.org/opl.shtml +--- + http://opencontent.org/opl.shtml \ No newline at end of file diff --git a/src/licensedcode/data/rules/opl-1.0.yml b/src/licensedcode/data/rules/opl-1.0.yml deleted file mode 100644 index 31de1b6768a..00000000000 --- a/src/licensedcode/data/rules/opl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: opl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opencontent.org/opl.shtml diff --git a/src/licensedcode/data/rules/opl-1.0_1.RULE b/src/licensedcode/data/rules/opl-1.0_1.RULE index c4286897b74..86c9053548e 100644 --- a/src/licensedcode/data/rules/opl-1.0_1.RULE +++ b/src/licensedcode/data/rules/opl-1.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: opl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/osl.php +--- + This program is Open Source software; you can redistribute it and/or modify it under the terms of the Open Software License version 1.0 as published by the Open Source Initiative. @@ -6,4 +13,4 @@ You should have received a copy of the Open Software License along with this program; if not, you may obtain a copy of the Open Software License version 1.0 from http://www.opensource.org/licenses/osl.php or by writing the Open Source Initiative c/o Lawrence Rosen, Esq., -3001 King Ranch Road, Ukiah, CA 95482. +3001 King Ranch Road, Ukiah, CA 95482. \ No newline at end of file diff --git a/src/licensedcode/data/rules/opl-1.0_1.yml b/src/licensedcode/data/rules/opl-1.0_1.yml deleted file mode 100644 index 1de1841658e..00000000000 --- a/src/licensedcode/data/rules/opl-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: opl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/osl.php diff --git a/src/licensedcode/data/rules/opl-1.0_2.RULE b/src/licensedcode/data/rules/opl-1.0_2.RULE index 72262996739..8637f90d313 100644 --- a/src/licensedcode/data/rules/opl-1.0_2.RULE +++ b/src/licensedcode/data/rules/opl-1.0_2.RULE @@ -1 +1,8 @@ +--- +license_expression: opl-1.0 +is_license_notice: yes +ignorable_urls: + - http://opencontent.org/opl.shtml +--- + OpenContent License (OPL) Version 1.0, July 14, 1998. This document outlines the principles underlying the OpenContent (OC) movement and may be redistributed provided it remains unaltered. For legal purposes, this document is the license under which OpenContent is made available for use. The original version of this document may be found at http://opencontent.org/opl.shtml \ No newline at end of file diff --git a/src/licensedcode/data/rules/opl-1.0_2.yml b/src/licensedcode/data/rules/opl-1.0_2.yml deleted file mode 100644 index bf2989da3ea..00000000000 --- a/src/licensedcode/data/rules/opl-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: opl-1.0 -is_license_notice: yes -ignorable_urls: - - http://opencontent.org/opl.shtml diff --git a/src/licensedcode/data/rules/opl-1.0_3.RULE b/src/licensedcode/data/rules/opl-1.0_3.RULE index 3218b8bd270..0a398695983 100644 --- a/src/licensedcode/data/rules/opl-1.0_3.RULE +++ b/src/licensedcode/data/rules/opl-1.0_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: opl-1.0 +is_license_text: yes +--- + LICENSE Terms and Conditions for Copying, Distributing, and Modifying Items other than copying, distributing, and modifying the Content with which this license was distributed (such as using, etc.) are outside the scope of this license. 1. You may copy and distribute exact replicas of the OpenContent (OC) as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the OC a copy of this License along with the OC. You may at your option charge a fee for the media and/or handling involved in creating a unique copy of the OC for use offline, you may at your option offer instructional support for the OC in exchange for a fee, or you may at your option offer warranty in exchange for a fee. You may not charge a fee for the OC itself. You may not charge a fee for the sole service of providing access to and/or use of the OC via a network (e.g. the Internet), whether it be via the world wide web, FTP, or any other method. diff --git a/src/licensedcode/data/rules/opl-1.0_3.yml b/src/licensedcode/data/rules/opl-1.0_3.yml deleted file mode 100644 index 03c738346e2..00000000000 --- a/src/licensedcode/data/rules/opl-1.0_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: opl-1.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/oracle-bcl-javaee.RULE b/src/licensedcode/data/rules/oracle-bcl-javaee.RULE index 516868e5ada..7ab90e18b6d 100644 --- a/src/licensedcode/data/rules/oracle-bcl-javaee.RULE +++ b/src/licensedcode/data/rules/oracle-bcl-javaee.RULE @@ -1,3 +1,12 @@ +--- +license_expression: oracle-bcl-javaee +is_license_text: yes +ignorable_urls: + - http://www.oracle.com/products/export + - http://www.oracle.com/technetwork/java/javaee/documentation/index.html + - http://www.oracle.com/us/legal/third-party-trademarks/index.html +--- + Oracle Binary Code License Agreement for Java EE Technologies ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL, IS WILLING TO LICENSE THE SOFTWARE TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS BINARY CODE LICENSE AGREEMENT AND SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY "AGREEMENT"). PLEASE READ THE AGREEMENT CAREFULLY. BY SELECTING THE "ACCEPT LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND/OR BY USING THE SOFTWARE YOU ACKNOWLEDGE THAT YOU HAVE READ THE TERMS AND AGREE TO THEM. IF YOU ARE AGREEING TO THESE TERMS ON BEHALF OF A COMPANY OR OTHER LEGAL ENTITY, YOU REPRESENT THAT YOU HAVE THE LEGAL AUTHORITY TO BIND THE LEGAL ENTITY TO THESE TERMS. IF YOU DO NOT HAVE SUCH AUTHORITY, OR IF YOU DO NOT WISH TO BE BOUND BY THE TERMS, THEN SELECT THE "DECLINE LICENSE AGREEMENT" (OR THE EQUIVALENT) BUTTON AND YOU MUST NOT USE THE SOFTWARE ON THIS SITE OR ANY OTHER MEDIA ON WHICH THE SOFTWARE IS CONTAINED. @@ -44,4 +53,4 @@ F. THIRD PARTY CODE. Additional copyright notices and license terms applicable G. TERMINATION FOR INFRINGEMENT. Either party may terminate this Agreement immediately should any Software become, or in either party's opinion be likely to become, the subject of a claim of infringement of any intellectual property right. -H. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javaee/documentation/index.html. \ No newline at end of file +H. INSTALLATION AND AUTO-UPDATE. The Software's installation and auto-update processes transmit a limited amount of data to Oracle (or its service provider) about those specific processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. You can find more information about the data Oracle collects as a result of your Software download at http://www.oracle.com/technetwork/java/javaee/documentation/index.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bcl-javaee.yml b/src/licensedcode/data/rules/oracle-bcl-javaee.yml deleted file mode 100644 index 6693c36e499..00000000000 --- a/src/licensedcode/data/rules/oracle-bcl-javaee.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-bcl-javaee -is_license_text: yes -ignorable_urls: - - http://www.oracle.com/products/export - - http://www.oracle.com/technetwork/java/javaee/documentation/index.html - - http://www.oracle.com/us/legal/third-party-trademarks/index.html diff --git a/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_1.RULE b/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_1.RULE index 9b935352696..de5677a02a6 100644 --- a/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_1.RULE +++ b/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_1.RULE @@ -1 +1,10 @@ +--- +license_expression: oracle-bcl-javase-javafx-2012 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.oracle.com/technetwork/java/javase/terms/license/index.html +--- + http://www.oracle.com/technetwork/java/javase/terms/license/index.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_1.yml b/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_1.yml deleted file mode 100644 index 9f6e46299a7..00000000000 --- a/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-bcl-javase-javafx-2012 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.oracle.com/technetwork/java/javase/terms/license/index.html diff --git a/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_2.RULE b/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_2.RULE index f58e11c0a2b..746d580833c 100644 --- a/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_2.RULE +++ b/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: oracle-bcl-javase-javafx-2012 +is_license_notice: yes +ignorable_urls: + - https://www.oracle.com/technetwork/java/javase/documentation/bcl-for-java-se-397068.pdf +--- + Licensed under the Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX: https://www.oracle.com/technetwork/java/javase/documentation/bcl-for-java-se-397068.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_2.yml b/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_2.yml deleted file mode 100644 index c10049c9a34..00000000000 --- a/src/licensedcode/data/rules/oracle-bcl-javase-javafx-2012_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oracle-bcl-javase-javafx-2012 -is_license_notice: yes -ignorable_urls: - - https://www.oracle.com/technetwork/java/javase/documentation/bcl-for-java-se-397068.pdf diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_1.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_1.RULE index 800767220ed..2a73d487ffc 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_1.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_1.RULE @@ -1 +1,8 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +--- + BSD 3-Clause No Nuclear License 2014 BSD 3-Clause No Nuclear License 2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_1.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_1.yml deleted file mode 100644 index 21deb6aca01..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_2.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_2.RULE index 35916841f1f..4c438ec1b32 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_2.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_2.RULE @@ -1 +1,10 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 3-Clause No Nuclear License 2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_2.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_2.yml deleted file mode 100644 index 5ae21b9d890..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_3.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_3.RULE index c554368502d..bc7ac5de569 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_3.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_3.RULE @@ -1 +1,10 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-No-Nuclear-License-2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_3.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_3.yml deleted file mode 100644 index b79f97c9dfa..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_4.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_4.RULE index 6e5e8b3c5fa..0e7a99e7de1 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_4.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_4.RULE @@ -1 +1,10 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-No-Nuclear-License-2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_4.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_4.yml deleted file mode 100644 index b79f97c9dfa..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_5.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_5.RULE index aab07a4050b..f209eb0cec6 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_5.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_5.RULE @@ -1 +1,9 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-License-2014 +--- + https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-License-2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_5.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_5.yml deleted file mode 100644 index 79ade60e144..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-License-2014 diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_6.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_6.RULE index 3072f3f2fb3..103ae2f73a3 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_6.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_6.RULE @@ -1 +1,7 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-No-Nuclear-License-2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_6.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_6.yml deleted file mode 100644 index 89fd1f437da..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_7.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_7.RULE index 048284753fc..57097937676 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_7.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_7.RULE @@ -1 +1,8 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014 +--- + LICENSE {{BSD-3-Clause-No-Nuclear-License-2014}} https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_7.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_7.yml deleted file mode 100644 index 6cd692b860c..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014 diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_8.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_8.RULE index 11353049118..75d2117291f 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_8.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_8.RULE @@ -1 +1,8 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014 +--- + {{BSD-3-Clause-No-Nuclear-License-2014}} https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_8.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_8.yml deleted file mode 100644 index 6cd692b860c..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014 diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_1.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_1.RULE index 3a3499a2f12..1dacfc305c4 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_1.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-no-nuclear-license-2014 +--- + https://spdx.org/licenses/bsd-3-clause-no-nuclear-license-2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_1.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_1.yml deleted file mode 100644 index 70159c5dc99..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-no-nuclear-license-2014 diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_2.RULE b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_2.RULE index 508deae5482..34d22970f8d 100644 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_2.RULE +++ b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-no-nuclear-license-2014.html +--- + https://spdx.org/licenses/bsd-3-clause-no-nuclear-license-2014.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_2.yml b/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_2.yml deleted file mode 100644 index 8e3d17fc54d..00000000000 --- a/src/licensedcode/data/rules/oracle-bsd-no-nuclear_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-no-nuclear-license-2014.html diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_1.RULE b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_1.RULE index cd5f557390a..e05766cc01b 100644 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: oracle-mysql-foss-exception-2.0 +is_license_text: yes +relevance: 95 +minimum_coverage: 90 +notes: this is the older version and short lived version from Sun See https://web.archive.org/web/20081024135012/http://www.mysql.com/about/legal/licensing/foss-exception/ +--- + Sun’s FOSS License Exception Terms and Conditions Definitions. diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_1.yml b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_1.yml deleted file mode 100644 index 346f0607381..00000000000 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oracle-mysql-foss-exception-2.0 -is_license_text: yes -relevance: 95 -minimum_coverage: 90 -notes: this is the older version and short lived version from Sun See https://web.archive.org/web/20081024135012/http://www.mysql.com/about/legal/licensing/foss-exception/ diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_2.RULE b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_2.RULE index 32cfab1d4de..5b388d23028 100644 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: oracle-mysql-foss-exception-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.mysql.com/about/legal/licensing/foss-exception/ +--- + FOSS License Exception http://www.mysql.com/about/legal/licensing/foss-exception/ diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_2.yml b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_2.yml deleted file mode 100644 index 3c1905bc068..00000000000 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-mysql-foss-exception-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.mysql.com/about/legal/licensing/foss-exception/ diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_3.RULE b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_3.RULE index 0ad68a8cf75..79784fcc595 100644 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: oracle-mysql-foss-exception-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + Oracle's FOSS License Exception Terms and Conditions 1. Definitions. "Derivative Work" means a derivative work, as defined diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_3.yml b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_3.yml deleted file mode 100644 index 94ca4e832d7..00000000000 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oracle-mysql-foss-exception-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_4.RULE b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_4.RULE index d405b810d81..685aa2a87d1 100644 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: oracle-mysql-foss-exception-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.mysql.com/about/legal/licensing/foss-exception/ +--- + FOSS License Exception http://www.mysql.com/about/legal/licensing/foss-exception/ diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_4.yml b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_4.yml deleted file mode 100644 index 3c1905bc068..00000000000 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-mysql-foss-exception-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.mysql.com/about/legal/licensing/foss-exception/ diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_5.RULE b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_5.RULE index 9bc58eb05e0..a793518ca18 100644 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: oracle-mysql-foss-exception-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + Oracle’s FOSS License Exception Terms and Conditions Definitions. diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_5.yml b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_5.yml deleted file mode 100644 index 94ca4e832d7..00000000000 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oracle-mysql-foss-exception-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_6.RULE b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_6.RULE index 693b8ca44d6..f93b925c937 100644 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: oracle-mysql-foss-exception-2.0 +is_license_text: yes +relevance: 99 +minimum_coverage: 80 +notes: license list missing +--- + Oracle's FOSS License Exception Terms and Conditions 1. Definitions. "Derivative Work" means a derivative work, as defined diff --git a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_6.yml b/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_6.yml deleted file mode 100644 index 15828b803c2..00000000000 --- a/src/licensedcode/data/rules/oracle-mysql-foss-exception-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oracle-mysql-foss-exception-2.0 -is_license_text: yes -relevance: 99 -minimum_coverage: 80 -notes: license list missing diff --git a/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_1.RULE b/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_1.RULE index 6def10fda6e..67f46af5259 100644 --- a/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: oracle-openjdk-classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + ------------------------------------------------------------------------------ "CLASSPATH" EXCEPTION TO THE GPL diff --git a/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_1.yml b/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_1.yml deleted file mode 100644 index 2f1569a557f..00000000000 --- a/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oracle-openjdk-classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_2.RULE b/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_2.RULE index 472280e7619..6e8f1898e4d 100644 --- a/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: oracle-openjdk-classpath-exception-2.0 +is_license_notice: yes +referenced_filenames: + - License +--- + "CLASSPATH" EXCEPTION TO THE GPL VERSION 2 Certain source files distributed by Sun Microsystems, Inc. are subject diff --git a/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_2.yml b/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_2.yml deleted file mode 100644 index 68872e46afd..00000000000 --- a/src/licensedcode/data/rules/oracle-openjdk-classpath-exception-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oracle-openjdk-classpath-exception-2.0 -is_license_notice: yes -referenced_filenames: - - License diff --git a/src/licensedcode/data/rules/oracle-web-sites-tou.RULE b/src/licensedcode/data/rules/oracle-web-sites-tou.RULE index fd13a3189e9..2450332f269 100644 --- a/src/licensedcode/data/rules/oracle-web-sites-tou.RULE +++ b/src/licensedcode/data/rules/oracle-web-sites-tou.RULE @@ -1 +1,10 @@ +--- +license_expression: oracle-web-sites-tou +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.oracle.com/html/terms.html +--- + http://www.oracle.com/html/terms.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/oracle-web-sites-tou.yml b/src/licensedcode/data/rules/oracle-web-sites-tou.yml deleted file mode 100644 index 0e6d79ff1fc..00000000000 --- a/src/licensedcode/data/rules/oracle-web-sites-tou.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-web-sites-tou -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.oracle.com/html/terms.html diff --git a/src/licensedcode/data/rules/oreilly-notice.RULE b/src/licensedcode/data/rules/oreilly-notice.RULE index cf1565164bf..d35dc21c4bd 100644 --- a/src/licensedcode/data/rules/oreilly-notice.RULE +++ b/src/licensedcode/data/rules/oreilly-notice.RULE @@ -1 +1,9 @@ +--- +license_expression: oreilly-notice +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://shop.oreilly.com/category/customer-service/faq-examples.do +--- + http://shop.oreilly.com/category/customer-service/faq-examples.do \ No newline at end of file diff --git a/src/licensedcode/data/rules/oreilly-notice.yml b/src/licensedcode/data/rules/oreilly-notice.yml deleted file mode 100644 index 8acd566be78..00000000000 --- a/src/licensedcode/data/rules/oreilly-notice.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oreilly-notice -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://shop.oreilly.com/category/customer-service/faq-examples.do diff --git a/src/licensedcode/data/rules/oreilly-notice_1.RULE b/src/licensedcode/data/rules/oreilly-notice_1.RULE index eedb14492f4..ebccc0ff5a3 100644 --- a/src/licensedcode/data/rules/oreilly-notice_1.RULE +++ b/src/licensedcode/data/rules/oreilly-notice_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: oreilly-notice +is_license_notice: yes +ignorable_emails: + - permissions@oreilly.com +--- + The following applies to example files from material published by O’Reilly Media, Inc. Content from other publishers may include different rules of usage. Please refer to any additional usage rights explained in the actual example files or refer to the publisher’s website. O'Reilly books are here to help you get your job done. In general, you may use the code in O'Reilly books in your programs and documentation. You do not need to contact us for permission unless you're reproducing a significant portion of the code. For example, writing a program that uses several chunks of code from our books does not require permission. Answering a question by citing our books and quoting example code does not require permission. On the other hand, selling or distributing a CD-ROM of examples from O'Reilly books does require permission. Incorporating a significant amount of example code from our books into your product's documentation does require permission. diff --git a/src/licensedcode/data/rules/oreilly-notice_1.yml b/src/licensedcode/data/rules/oreilly-notice_1.yml deleted file mode 100644 index 9f7aaf5dda4..00000000000 --- a/src/licensedcode/data/rules/oreilly-notice_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: oreilly-notice -is_license_notice: yes -ignorable_emails: - - permissions@oreilly.com diff --git a/src/licensedcode/data/rules/oset-pl-2.1_1.RULE b/src/licensedcode/data/rules/oset-pl-2.1_1.RULE index 211bf86ff13..744b0f1292a 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_1.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: oset-pl-2.1 +is_license_text: yes +ignorable_copyrights: + - (c) 2015 +ignorable_urls: + - http://www.osetfoundation.org/public-license +--- + OSET Public License
© 2015 ALL RIGHTS RESERVED VERSION 2.1 @@ -66,5 +75,4 @@ This Source Code Form is subject to the terms of the OSET Public License, v.2.1 If it is not possible or desirable to put the Notice in a particular file, then You may include the Notice in a location (e.g., such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. You may add additional accurate notices of copyright ownership. EXHIBIT B - “Incompatible With Secondary License” Notice -This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the
OSET Public License, v.2.1. - +This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the
OSET Public License, v.2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_1.yml b/src/licensedcode/data/rules/oset-pl-2.1_1.yml deleted file mode 100644 index 59e5a8450d2..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_text: yes -ignorable_copyrights: - - (c) 2015 -ignorable_urls: - - http://www.osetfoundation.org/public-license diff --git a/src/licensedcode/data/rules/oset-pl-2.1_10.RULE b/src/licensedcode/data/rules/oset-pl-2.1_10.RULE index e2f0a472fd3..8e8ac0e83bd 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_10.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_10.RULE @@ -1 +1,7 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OSET-PL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_10.yml b/src/licensedcode/data/rules/oset-pl-2.1_10.yml deleted file mode 100644 index e4c888702e1..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/oset-pl-2.1_11.RULE b/src/licensedcode/data/rules/oset-pl-2.1_11.RULE index 98c5300fa9b..9ad78b6c682 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_11.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSET-PL-2.1 +--- + {{OSET-PL-2.1}} https://spdx.org/licenses/OSET-PL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_11.yml b/src/licensedcode/data/rules/oset-pl-2.1_11.yml deleted file mode 100644 index f54809c474f..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSET-PL-2.1 diff --git a/src/licensedcode/data/rules/oset-pl-2.1_12.RULE b/src/licensedcode/data/rules/oset-pl-2.1_12.RULE index 0ce5f88c239..c9a5a2049de 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_12.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSET-PL-2.1 +--- + LICENSE {{OSET-PL-2.1}} https://spdx.org/licenses/OSET-PL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_12.yml b/src/licensedcode/data/rules/oset-pl-2.1_12.yml deleted file mode 100644 index f54809c474f..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSET-PL-2.1 diff --git a/src/licensedcode/data/rules/oset-pl-2.1_2.RULE b/src/licensedcode/data/rules/oset-pl-2.1_2.RULE index 6e82926a330..0d4e041c18c 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_2.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OSET Public License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_2.yml b/src/licensedcode/data/rules/oset-pl-2.1_2.yml deleted file mode 100644 index 21b3e75db13..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oset-pl-2.1_3.RULE b/src/licensedcode/data/rules/oset-pl-2.1_3.RULE index e52777e32d8..1702b235c6f 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_3.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: OSET Public License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_3.yml b/src/licensedcode/data/rules/oset-pl-2.1_3.yml deleted file mode 100644 index 21b3e75db13..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oset-pl-2.1_4.RULE b/src/licensedcode/data/rules/oset-pl-2.1_4.RULE index 8e52866542d..f5c1c062885 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_4.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OSET-PL-2.1 OSET Public License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_4.yml b/src/licensedcode/data/rules/oset-pl-2.1_4.yml deleted file mode 100644 index 21b3e75db13..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oset-pl-2.1_5.RULE b/src/licensedcode/data/rules/oset-pl-2.1_5.RULE index 18e562be3db..3ed7af7cd42 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_5.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OSET Public License version 2.1 OSET-PL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_5.yml b/src/licensedcode/data/rules/oset-pl-2.1_5.yml deleted file mode 100644 index 21b3e75db13..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oset-pl-2.1_6.RULE b/src/licensedcode/data/rules/oset-pl-2.1_6.RULE index d0cc83e2222..6a833269979 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_6.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: oset-pl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OSET-PL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_6.yml b/src/licensedcode/data/rules/oset-pl-2.1_6.yml deleted file mode 100644 index 935af7e1499..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oset-pl-2.1_7.RULE b/src/licensedcode/data/rules/oset-pl-2.1_7.RULE index 374dfd7529c..eafef020dc9 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_7.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: oset-pl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OSET Public License version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_7.yml b/src/licensedcode/data/rules/oset-pl-2.1_7.yml deleted file mode 100644 index 935af7e1499..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oset-pl-2.1_8.RULE b/src/licensedcode/data/rules/oset-pl-2.1_8.RULE index b9000ed1e56..1c77ad59b34 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_8.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: oset-pl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OSET-PL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_8.yml b/src/licensedcode/data/rules/oset-pl-2.1_8.yml deleted file mode 100644 index 935af7e1499..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/oset-pl-2.1_9.RULE b/src/licensedcode/data/rules/oset-pl-2.1_9.RULE index 8a849688580..a0c6604b64e 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_9.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_9.RULE @@ -1 +1,9 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OSET-PL-2.1 +--- + https://licenses.nuget.org/OSET-PL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_9.yml b/src/licensedcode/data/rules/oset-pl-2.1_9.yml deleted file mode 100644 index e80d6410937..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OSET-PL-2.1 diff --git a/src/licensedcode/data/rules/oset-pl-2.1_url_1.RULE b/src/licensedcode/data/rules/oset-pl-2.1_url_1.RULE index 50516640201..457548712de 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_url_1.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oset-pl-2.1 +--- + https://spdx.org/licenses/oset-pl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_url_1.yml b/src/licensedcode/data/rules/oset-pl-2.1_url_1.yml deleted file mode 100644 index 58138484a43..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oset-pl-2.1 diff --git a/src/licensedcode/data/rules/oset-pl-2.1_url_2.RULE b/src/licensedcode/data/rules/oset-pl-2.1_url_2.RULE index de027da24f0..db29756b0b1 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_url_2.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/oset-pl-2.1.html +--- + https://spdx.org/licenses/oset-pl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_url_2.yml b/src/licensedcode/data/rules/oset-pl-2.1_url_2.yml deleted file mode 100644 index f5c2b50cb61..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/oset-pl-2.1.html diff --git a/src/licensedcode/data/rules/oset-pl-2.1_url_glc_100.RULE b/src/licensedcode/data/rules/oset-pl-2.1_url_glc_100.RULE index 445e4cdf2d7..e1d6b2e68fd 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_url_glc_100.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_url_glc_100.RULE @@ -1 +1,9 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/opl-2.1 +--- + http://opensource.org/licenses/opl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_url_glc_100.yml b/src/licensedcode/data/rules/oset-pl-2.1_url_glc_100.yml deleted file mode 100644 index 9f8e2185a90..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_url_glc_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/opl-2.1 diff --git a/src/licensedcode/data/rules/oset-pl-2.1_url_glc_101.RULE b/src/licensedcode/data/rules/oset-pl-2.1_url_glc_101.RULE index cae5afcf3c3..842a365fdf9 100644 --- a/src/licensedcode/data/rules/oset-pl-2.1_url_glc_101.RULE +++ b/src/licensedcode/data/rules/oset-pl-2.1_url_glc_101.RULE @@ -1 +1,9 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/opl-2.1 +--- + https://opensource.org/licenses/opl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/oset-pl-2.1_url_glc_101.yml b/src/licensedcode/data/rules/oset-pl-2.1_url_glc_101.yml deleted file mode 100644 index 47fc75a2079..00000000000 --- a/src/licensedcode/data/rules/oset-pl-2.1_url_glc_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/opl-2.1 diff --git a/src/licensedcode/data/rules/osf-1990.RULE b/src/licensedcode/data/rules/osf-1990.RULE index 470956efe5c..82fc88613d2 100644 --- a/src/licensedcode/data/rules/osf-1990.RULE +++ b/src/licensedcode/data/rules/osf-1990.RULE @@ -1,3 +1,10 @@ +--- +license_expression: osf-1990 +is_license_text: yes +notes: The HP Variant license identified at https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant + is actually an instance of osf-1990 +--- + * To anyone who acknowledges that this file is provided * "AS IS" without any express or implied warranty: * permission to use, copy, modify, and distribute this @@ -8,5 +15,4 @@ * publicity pertaining to distribution of the software * without specific, written prior permission. * makes no representations about the - * suitability of this software for any purpose. - + * suitability of this software for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/osf-1990.yml b/src/licensedcode/data/rules/osf-1990.yml deleted file mode 100644 index eee9471a00a..00000000000 --- a/src/licensedcode/data/rules/osf-1990.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: osf-1990 -is_license_text: yes -notes: The HP Variant license identified at https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant - is actually an instance of osf-1990 diff --git a/src/licensedcode/data/rules/osf-1990_1.RULE b/src/licensedcode/data/rules/osf-1990_1.RULE index 1d03e40c448..eb190b08875 100644 --- a/src/licensedcode/data/rules/osf-1990_1.RULE +++ b/src/licensedcode/data/rules/osf-1990_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: osf-1990 +is_license_text: yes +notes: The HP Variant license identified at https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant + is actually an instance of osf-1990 +--- + * To anyone who acknowledges that this file is provided * "AS IS" without any express or implied warranty: * permission to use, copy, modify, and distribute this @@ -8,5 +15,4 @@ * publicity pertaining to distribution of the software * without specific, written prior permission. * Company makes no representations about the - * suitability of this software for any purpose. - + * suitability of this software for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/osf-1990_1.yml b/src/licensedcode/data/rules/osf-1990_1.yml deleted file mode 100644 index eee9471a00a..00000000000 --- a/src/licensedcode/data/rules/osf-1990_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: osf-1990 -is_license_text: yes -notes: The HP Variant license identified at https://fedoraproject.org/wiki/Licensing:MIT?rd=Licensing/MIT#HP_Variant - is actually an instance of osf-1990 diff --git a/src/licensedcode/data/rules/osf-1990_2.RULE b/src/licensedcode/data/rules/osf-1990_2.RULE index 0e77d32d829..499d3f85ca8 100644 --- a/src/licensedcode/data/rules/osf-1990_2.RULE +++ b/src/licensedcode/data/rules/osf-1990_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: osf-1990 +is_license_notice: yes +--- + ** To anyone who acknowledges that this file is provided "AS IS" ** without any express or implied warranty: permission to use, copy, ** modify, and distribute this file for any purpose is hereby diff --git a/src/licensedcode/data/rules/osf-1990_2.yml b/src/licensedcode/data/rules/osf-1990_2.yml deleted file mode 100644 index 8cde6194150..00000000000 --- a/src/licensedcode/data/rules/osf-1990_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: osf-1990 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/osf-1990_3.RULE b/src/licensedcode/data/rules/osf-1990_3.RULE index b438792d46d..a475adffce1 100644 --- a/src/licensedcode/data/rules/osf-1990_3.RULE +++ b/src/licensedcode/data/rules/osf-1990_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: osf-1990 +is_license_text: yes +--- + To anyone who acknowledges that this file is provided "AS IS" without any express or implied warranty: permission to use, copy, modify, and distribute this file diff --git a/src/licensedcode/data/rules/osf-1990_3.yml b/src/licensedcode/data/rules/osf-1990_3.yml deleted file mode 100644 index 77768f28d82..00000000000 --- a/src/licensedcode/data/rules/osf-1990_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: osf-1990 -is_license_text: yes diff --git a/src/licensedcode/data/rules/osf-1990_4.RULE b/src/licensedcode/data/rules/osf-1990_4.RULE index 97c44a8dded..4292e8f9612 100644 --- a/src/licensedcode/data/rules/osf-1990_4.RULE +++ b/src/licensedcode/data/rules/osf-1990_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: osf-1990 +is_license_text: yes +relevance: 100 +--- + To anyone who acknowledges that this file is provided "AS IS" without any express or implied warranty: permission to use, copy, modify, and distribute this file for any purpose is hereby granted without fee, provided that the above diff --git a/src/licensedcode/data/rules/osf-1990_4.yml b/src/licensedcode/data/rules/osf-1990_4.yml deleted file mode 100644 index e354371961d..00000000000 --- a/src/licensedcode/data/rules/osf-1990_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osf-1990 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osf-1990_5.RULE b/src/licensedcode/data/rules/osf-1990_5.RULE index 2ac528d2906..85a0dd7c873 100644 --- a/src/licensedcode/data/rules/osf-1990_5.RULE +++ b/src/licensedcode/data/rules/osf-1990_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: osf-1990 +is_license_notice: yes +--- + ** To anyone who acknowledges that this file is provided "AS IS" ** without any express or implied warranty: permission to use, copy, ** modify, and distribute this file for any purpose is hereby diff --git a/src/licensedcode/data/rules/osf-1990_5.yml b/src/licensedcode/data/rules/osf-1990_5.yml deleted file mode 100644 index 8cde6194150..00000000000 --- a/src/licensedcode/data/rules/osf-1990_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: osf-1990 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/osf-1990_6.RULE b/src/licensedcode/data/rules/osf-1990_6.RULE index 73a53b1c465..4dc1f8a88b6 100644 --- a/src/licensedcode/data/rules/osf-1990_6.RULE +++ b/src/licensedcode/data/rules/osf-1990_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: osf-1990 +is_license_text: yes +relevance: 100 +notes: seen in https://metacpan.org/release/RJBS/Data-UUID-1.226/source/LICENSE +--- + To anyone who acknowledges that this file is provided "AS IS" without any express or implied warranty: permission to use, copy, modify, and distribute this file for any purpose is hereby diff --git a/src/licensedcode/data/rules/osf-1990_6.yml b/src/licensedcode/data/rules/osf-1990_6.yml deleted file mode 100644 index 5ab8dcd3e4e..00000000000 --- a/src/licensedcode/data/rules/osf-1990_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: osf-1990 -is_license_text: yes -relevance: 100 -notes: seen in https://metacpan.org/release/RJBS/Data-UUID-1.226/source/LICENSE diff --git a/src/licensedcode/data/rules/osf-1990_7.RULE b/src/licensedcode/data/rules/osf-1990_7.RULE index 7c693491beb..0999f5ef0b1 100644 --- a/src/licensedcode/data/rules/osf-1990_7.RULE +++ b/src/licensedcode/data/rules/osf-1990_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: osf-1990 +is_license_text: yes +relevance: 100 +--- + To anyone who acknowledges that this file is provided "AS IS" without any express or implied warranty: permission to use, copy, modify, and distribute this file for any purpose is hereby diff --git a/src/licensedcode/data/rules/osf-1990_7.yml b/src/licensedcode/data/rules/osf-1990_7.yml deleted file mode 100644 index e354371961d..00000000000 --- a/src/licensedcode/data/rules/osf-1990_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osf-1990 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-1.0.RULE b/src/licensedcode/data/rules/osl-1.0.RULE index c71c1e32cd3..55193d4791c 100644 --- a/src/licensedcode/data/rules/osl-1.0.RULE +++ b/src/licensedcode/data/rules/osl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/osl-1.0.txt +--- + http://www.opensource.org/licenses/osl-1.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0.yml b/src/licensedcode/data/rules/osl-1.0.yml deleted file mode 100644 index 910b979276e..00000000000 --- a/src/licensedcode/data/rules/osl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/osl-1.0.txt diff --git a/src/licensedcode/data/rules/osl-1.0_1.RULE b/src/licensedcode/data/rules/osl-1.0_1.RULE index e53c9c61655..2b37d2de8fa 100644 --- a/src/licensedcode/data/rules/osl-1.0_1.RULE +++ b/src/licensedcode/data/rules/osl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +--- + Open Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_1.yml b/src/licensedcode/data/rules/osl-1.0_1.yml deleted file mode 100644 index b547f4655f6..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-1.0_10.RULE b/src/licensedcode/data/rules/osl-1.0_10.RULE index 8d89d5d526b..14fcd9a5c5a 100644 --- a/src/licensedcode/data/rules/osl-1.0_10.RULE +++ b/src/licensedcode/data/rules/osl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OSL-1.0 +--- + https://licenses.nuget.org/OSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_10.yml b/src/licensedcode/data/rules/osl-1.0_10.yml deleted file mode 100644 index 3dcdcdf674c..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OSL-1.0 diff --git a/src/licensedcode/data/rules/osl-1.0_11.RULE b/src/licensedcode/data/rules/osl-1.0_11.RULE index bb7c27027b7..d3f83f68256 100644 --- a/src/licensedcode/data/rules/osl-1.0_11.RULE +++ b/src/licensedcode/data/rules/osl-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_11.yml b/src/licensedcode/data/rules/osl-1.0_11.yml deleted file mode 100644 index b547f4655f6..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-1.0_12.RULE b/src/licensedcode/data/rules/osl-1.0_12.RULE index 8d6d7ce5596..8682b609f9f 100644 --- a/src/licensedcode/data/rules/osl-1.0_12.RULE +++ b/src/licensedcode/data/rules/osl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-1.0 +--- + LICENSE {{OSL-1.0}} https://spdx.org/licenses/OSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_12.yml b/src/licensedcode/data/rules/osl-1.0_12.yml deleted file mode 100644 index 9a773c0c195..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-1.0 diff --git a/src/licensedcode/data/rules/osl-1.0_13.RULE b/src/licensedcode/data/rules/osl-1.0_13.RULE index 689b57c628d..36a503deb1c 100644 --- a/src/licensedcode/data/rules/osl-1.0_13.RULE +++ b/src/licensedcode/data/rules/osl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-1.0 +--- + {{OSL-1.0}} https://spdx.org/licenses/OSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_13.yml b/src/licensedcode/data/rules/osl-1.0_13.yml deleted file mode 100644 index 9a773c0c195..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-1.0 diff --git a/src/licensedcode/data/rules/osl-1.0_2.RULE b/src/licensedcode/data/rules/osl-1.0_2.RULE index 0d40b3b2208..4d5cf5c5008 100644 --- a/src/licensedcode/data/rules/osl-1.0_2.RULE +++ b/src/licensedcode/data/rules/osl-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +--- + The Open Software License v. 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_2.yml b/src/licensedcode/data/rules/osl-1.0_2.yml deleted file mode 100644 index b547f4655f6..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-1.0_3.RULE b/src/licensedcode/data/rules/osl-1.0_3.RULE index 91ce0597f5e..25866f0cbe8 100644 --- a/src/licensedcode/data/rules/osl-1.0_3.RULE +++ b/src/licensedcode/data/rules/osl-1.0_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: osl-1.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2002 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Open Software License v. 1.0 This Open Software License (the "License") applies to any original work of diff --git a/src/licensedcode/data/rules/osl-1.0_3.yml b/src/licensedcode/data/rules/osl-1.0_3.yml deleted file mode 100644 index f8824691cb8..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: osl-1.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2002 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/osl-1.0_4.RULE b/src/licensedcode/data/rules/osl-1.0_4.RULE index edf61ead256..ff6558b2b84 100644 --- a/src/licensedcode/data/rules/osl-1.0_4.RULE +++ b/src/licensedcode/data/rules/osl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_4.yml b/src/licensedcode/data/rules/osl-1.0_4.yml deleted file mode 100644 index 4a50cc4afe6..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.0_5.RULE b/src/licensedcode/data/rules/osl-1.0_5.RULE index 673243168ec..202353fe5de 100644 --- a/src/licensedcode/data/rules/osl-1.0_5.RULE +++ b/src/licensedcode/data/rules/osl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OSL-1.0 Open Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_5.yml b/src/licensedcode/data/rules/osl-1.0_5.yml deleted file mode 100644 index 4a50cc4afe6..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.0_6.RULE b/src/licensedcode/data/rules/osl-1.0_6.RULE index 60d8c941da9..0f536db84fc 100644 --- a/src/licensedcode/data/rules/osl-1.0_6.RULE +++ b/src/licensedcode/data/rules/osl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Software License 1.0 OSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_6.yml b/src/licensedcode/data/rules/osl-1.0_6.yml deleted file mode 100644 index 4a50cc4afe6..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.0_7.RULE b/src/licensedcode/data/rules/osl-1.0_7.RULE index e7262abb6ab..73bdddf686b 100644 --- a/src/licensedcode/data/rules/osl-1.0_7.RULE +++ b/src/licensedcode/data/rules/osl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_7.yml b/src/licensedcode/data/rules/osl-1.0_7.yml deleted file mode 100644 index 65938e9bb94..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.0_8.RULE b/src/licensedcode/data/rules/osl-1.0_8.RULE index 5fbb8c607c0..faf0d10206e 100644 --- a/src/licensedcode/data/rules/osl-1.0_8.RULE +++ b/src/licensedcode/data/rules/osl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_8.yml b/src/licensedcode/data/rules/osl-1.0_8.yml deleted file mode 100644 index 65938e9bb94..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.0_9.RULE b/src/licensedcode/data/rules/osl-1.0_9.RULE index f3ab9b60e07..4e86f98b7da 100644 --- a/src/licensedcode/data/rules/osl-1.0_9.RULE +++ b/src/licensedcode/data/rules/osl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_9.yml b/src/licensedcode/data/rules/osl-1.0_9.yml deleted file mode 100644 index 65938e9bb94..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.0_url_1.RULE b/src/licensedcode/data/rules/osl-1.0_url_1.RULE index 89cde82303b..17ef1fe2c65 100644 --- a/src/licensedcode/data/rules/osl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/osl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-1.0 +--- + https://spdx.org/licenses/osl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_url_1.yml b/src/licensedcode/data/rules/osl-1.0_url_1.yml deleted file mode 100644 index 956bdad9cee..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-1.0 diff --git a/src/licensedcode/data/rules/osl-1.0_url_2.RULE b/src/licensedcode/data/rules/osl-1.0_url_2.RULE index 676f1c3ca1d..4eb96b2c87b 100644 --- a/src/licensedcode/data/rules/osl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/osl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-1.0.html +--- + https://spdx.org/licenses/osl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_url_2.yml b/src/licensedcode/data/rules/osl-1.0_url_2.yml deleted file mode 100644 index 086d6512b11..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-1.0.html diff --git a/src/licensedcode/data/rules/osl-1.0_url_glc_102.RULE b/src/licensedcode/data/rules/osl-1.0_url_glc_102.RULE index 149f170e923..4a6019a761d 100644 --- a/src/licensedcode/data/rules/osl-1.0_url_glc_102.RULE +++ b/src/licensedcode/data/rules/osl-1.0_url_glc_102.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/osl-1.0 +--- + http://opensource.org/licenses/osl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_url_glc_102.yml b/src/licensedcode/data/rules/osl-1.0_url_glc_102.yml deleted file mode 100644 index 2fe33bccf82..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_url_glc_102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/osl-1.0 diff --git a/src/licensedcode/data/rules/osl-1.0_url_glc_103.RULE b/src/licensedcode/data/rules/osl-1.0_url_glc_103.RULE index f6cf28b28b1..fe5bb4013a0 100644 --- a/src/licensedcode/data/rules/osl-1.0_url_glc_103.RULE +++ b/src/licensedcode/data/rules/osl-1.0_url_glc_103.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/osl-1.0 +--- + https://opensource.org/licenses/osl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.0_url_glc_103.yml b/src/licensedcode/data/rules/osl-1.0_url_glc_103.yml deleted file mode 100644 index 8f3ca06cb68..00000000000 --- a/src/licensedcode/data/rules/osl-1.0_url_glc_103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/osl-1.0 diff --git a/src/licensedcode/data/rules/osl-1.1_1.RULE b/src/licensedcode/data/rules/osl-1.1_1.RULE index 7156764c9e9..c5034c4a75e 100644 --- a/src/licensedcode/data/rules/osl-1.1_1.RULE +++ b/src/licensedcode/data/rules/osl-1.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Software License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_1.yml b/src/licensedcode/data/rules/osl-1.1_1.yml deleted file mode 100644 index 561367e22af..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.1_10.RULE b/src/licensedcode/data/rules/osl-1.1_10.RULE index fc7c6335299..8500039c382 100644 --- a/src/licensedcode/data/rules/osl-1.1_10.RULE +++ b/src/licensedcode/data/rules/osl-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-1.1 +--- + LICENSE {{OSL-1.1}} https://spdx.org/licenses/OSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_10.yml b/src/licensedcode/data/rules/osl-1.1_10.yml deleted file mode 100644 index ec98fa3b849..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-1.1 diff --git a/src/licensedcode/data/rules/osl-1.1_11.RULE b/src/licensedcode/data/rules/osl-1.1_11.RULE index b43cb9c943b..80c785cd3da 100644 --- a/src/licensedcode/data/rules/osl-1.1_11.RULE +++ b/src/licensedcode/data/rules/osl-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-1.1 +--- + {{OSL-1.1}} https://spdx.org/licenses/OSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_11.yml b/src/licensedcode/data/rules/osl-1.1_11.yml deleted file mode 100644 index ec98fa3b849..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-1.1 diff --git a/src/licensedcode/data/rules/osl-1.1_2.RULE b/src/licensedcode/data/rules/osl-1.1_2.RULE index 01a6c8611f9..29930d17cc6 100644 --- a/src/licensedcode/data/rules/osl-1.1_2.RULE +++ b/src/licensedcode/data/rules/osl-1.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Software License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_2.yml b/src/licensedcode/data/rules/osl-1.1_2.yml deleted file mode 100644 index 561367e22af..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.1_3.RULE b/src/licensedcode/data/rules/osl-1.1_3.RULE index c23dd2ed2e3..27f803e0dd2 100644 --- a/src/licensedcode/data/rules/osl-1.1_3.RULE +++ b/src/licensedcode/data/rules/osl-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OSL-1.1 Open Software License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_3.yml b/src/licensedcode/data/rules/osl-1.1_3.yml deleted file mode 100644 index 561367e22af..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.1_4.RULE b/src/licensedcode/data/rules/osl-1.1_4.RULE index d07d3b49101..f3213bdad83 100644 --- a/src/licensedcode/data/rules/osl-1.1_4.RULE +++ b/src/licensedcode/data/rules/osl-1.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Software License 1.1 OSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_4.yml b/src/licensedcode/data/rules/osl-1.1_4.yml deleted file mode 100644 index 561367e22af..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.1_5.RULE b/src/licensedcode/data/rules/osl-1.1_5.RULE index d89baf604a9..ad2b4789dac 100644 --- a/src/licensedcode/data/rules/osl-1.1_5.RULE +++ b/src/licensedcode/data/rules/osl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_5.yml b/src/licensedcode/data/rules/osl-1.1_5.yml deleted file mode 100644 index f67eefaf563..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.1_6.RULE b/src/licensedcode/data/rules/osl-1.1_6.RULE index f42868cad20..1613f9f771b 100644 --- a/src/licensedcode/data/rules/osl-1.1_6.RULE +++ b/src/licensedcode/data/rules/osl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Software License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_6.yml b/src/licensedcode/data/rules/osl-1.1_6.yml deleted file mode 100644 index f67eefaf563..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.1_7.RULE b/src/licensedcode/data/rules/osl-1.1_7.RULE index 81e9ad3128b..b04947d60ce 100644 --- a/src/licensedcode/data/rules/osl-1.1_7.RULE +++ b/src/licensedcode/data/rules/osl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_7.yml b/src/licensedcode/data/rules/osl-1.1_7.yml deleted file mode 100644 index f67eefaf563..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-1.1_8.RULE b/src/licensedcode/data/rules/osl-1.1_8.RULE index d7cf63eea57..fd388f5f652 100644 --- a/src/licensedcode/data/rules/osl-1.1_8.RULE +++ b/src/licensedcode/data/rules/osl-1.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OSL-1.1 +--- + https://licenses.nuget.org/OSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_8.yml b/src/licensedcode/data/rules/osl-1.1_8.yml deleted file mode 100644 index fc47636a4c1..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OSL-1.1 diff --git a/src/licensedcode/data/rules/osl-1.1_9.RULE b/src/licensedcode/data/rules/osl-1.1_9.RULE index 9ff570cfc2b..ac8cf85b142 100644 --- a/src/licensedcode/data/rules/osl-1.1_9.RULE +++ b/src/licensedcode/data/rules/osl-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OSL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_9.yml b/src/licensedcode/data/rules/osl-1.1_9.yml deleted file mode 100644 index 06c38dc698f..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_1.RULE index 09135e623e2..1c2ef38e321 100644 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: osl-1.1 OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing:OSL1.1 +--- + The contents of this file are subject to the Open Software License version 1.1 that can be found at http://fedoraproject.org/wiki/Licensing:OSL1.1 @@ -12,4 +21,4 @@ the OSL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your - version of this file under either the OSL or the GPL. + version of this file under either the OSL or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_1.yml deleted file mode 100644 index a4c9171c4a8..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing:OSL1.1 diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_2.RULE index 74e39cbd968..fe44bf1e01a 100644 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: osl-1.1 OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing:OSL1.1 +--- + The contents of this file are subject to the Open Software License version 1.1 that can be found at url="http://fedoraproject.org/wiki/Licensing:OSL1.1">http://fedoraproject.org/wiki/Licensing:OSL1.1 @@ -12,4 +21,4 @@ the OSL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your - version of this file under either the OSL or the GPL. + version of this file under either the OSL or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_2.yml deleted file mode 100644 index a4c9171c4a8..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing:OSL1.1 diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_3.RULE index ec4dab891de..5f1caa1448b 100644 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: osl-1.1 OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.opensource.org/licenses/osl-1.1.txt +--- + (OSL/GPL code release authorized by Jalil Fadavi). + * + * The contents of this file are subject to the Open diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_3.yml deleted file mode 100644 index 94f9832fd05..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.opensource.org/licenses/osl-1.1.txt diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_4.RULE index acd66bc80ad..221e69c7606 100644 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: osl-1.1 OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing:OSL1.1 +--- + The contents of this file are subject to the Open Software License version 1.1 that can be found at http://fedoraproject.org/wiki/Licensing:OSL1.1 http://fedoraproject.org/wiki/Licensing:OSL1.1 @@ -12,4 +21,4 @@ the OSL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your - version of this file under either the OSL or the GPL. + version of this file under either the OSL or the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_4.yml deleted file mode 100644 index a4c9171c4a8..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing:OSL1.1 diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.RULE index 14d01685847..3b217b7955b 100644 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: osl-1.1 OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing:OSL1.1 +--- + The contents of this file are subject to the Open Software License version 1.1 that can be found at diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.yml deleted file mode 100644 index a4c9171c4a8..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing:OSL1.1 diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_6.RULE b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_6.RULE index 0fdee11417b..228c849bd3e 100644 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_6.RULE @@ -1 +1,8 @@ - (OSL/GPL code release authorized by Jalil Fadavi). +--- +license_expression: osl-1.1 OR gpl-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + + (OSL/GPL code release authorized by Jalil Fadavi). \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_6.yml b/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_6.yml deleted file mode 100644 index a4a17a214ab..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_or_gpl-2.0_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: osl-1.1 OR gpl-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/osl-1.1_url_1.RULE b/src/licensedcode/data/rules/osl-1.1_url_1.RULE index f791ccb0418..bbb44350b5b 100644 --- a/src/licensedcode/data/rules/osl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/osl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-1.1 +--- + https://spdx.org/licenses/osl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_url_1.yml b/src/licensedcode/data/rules/osl-1.1_url_1.yml deleted file mode 100644 index 802a6828c2d..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-1.1 diff --git a/src/licensedcode/data/rules/osl-1.1_url_2.RULE b/src/licensedcode/data/rules/osl-1.1_url_2.RULE index b12a8ffbcc9..2bdba2cbd47 100644 --- a/src/licensedcode/data/rules/osl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/osl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-1.1.html +--- + https://spdx.org/licenses/osl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-1.1_url_2.yml b/src/licensedcode/data/rules/osl-1.1_url_2.yml deleted file mode 100644 index 29e6f70b7c4..00000000000 --- a/src/licensedcode/data/rules/osl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-1.1.html diff --git a/src/licensedcode/data/rules/osl-2.0.RULE b/src/licensedcode/data/rules/osl-2.0.RULE index 0667094ae1b..49fc670e0ca 100644 --- a/src/licensedcode/data/rules/osl-2.0.RULE +++ b/src/licensedcode/data/rules/osl-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.nexb.com/license/LICENSE-OSL-2.0.html +--- + http://www.nexb.com/license/LICENSE-OSL-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0.yml b/src/licensedcode/data/rules/osl-2.0.yml deleted file mode 100644 index 2b7a2519a30..00000000000 --- a/src/licensedcode/data/rules/osl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.nexb.com/license/LICENSE-OSL-2.0.html diff --git a/src/licensedcode/data/rules/osl-2.0_1.RULE b/src/licensedcode/data/rules/osl-2.0_1.RULE index e537a81d9db..27f6cdee878 100644 --- a/src/licensedcode/data/rules/osl-2.0_1.RULE +++ b/src/licensedcode/data/rules/osl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 100 +--- + Open Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_1.yml b/src/licensedcode/data/rules/osl-2.0_1.yml deleted file mode 100644 index 8c28d2c0f0a..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-2.0_10.RULE b/src/licensedcode/data/rules/osl-2.0_10.RULE index a283e133c9a..6466d12e58c 100644 --- a/src/licensedcode/data/rules/osl-2.0_10.RULE +++ b/src/licensedcode/data/rules/osl-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OSL-2.0 +--- + https://licenses.nuget.org/OSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_10.yml b/src/licensedcode/data/rules/osl-2.0_10.yml deleted file mode 100644 index d84c276c2ef..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OSL-2.0 diff --git a/src/licensedcode/data/rules/osl-2.0_11.RULE b/src/licensedcode/data/rules/osl-2.0_11.RULE index 898d491079f..f149472f0a2 100644 --- a/src/licensedcode/data/rules/osl-2.0_11.RULE +++ b/src/licensedcode/data/rules/osl-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_11.yml b/src/licensedcode/data/rules/osl-2.0_11.yml deleted file mode 100644 index 8c28d2c0f0a..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-2.0_12.RULE b/src/licensedcode/data/rules/osl-2.0_12.RULE index 6628e30ebfb..ffae501536d 100644 --- a/src/licensedcode/data/rules/osl-2.0_12.RULE +++ b/src/licensedcode/data/rules/osl-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-2.0 +--- + LICENSE {{OSL-2.0}} https://spdx.org/licenses/OSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_12.yml b/src/licensedcode/data/rules/osl-2.0_12.yml deleted file mode 100644 index 9dc0e5e27ab..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-2.0 diff --git a/src/licensedcode/data/rules/osl-2.0_13.RULE b/src/licensedcode/data/rules/osl-2.0_13.RULE index 600d890e190..6086876ed5b 100644 --- a/src/licensedcode/data/rules/osl-2.0_13.RULE +++ b/src/licensedcode/data/rules/osl-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-2.0 +--- + {{OSL-2.0}} https://spdx.org/licenses/OSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_13.yml b/src/licensedcode/data/rules/osl-2.0_13.yml deleted file mode 100644 index 9dc0e5e27ab..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-2.0 diff --git a/src/licensedcode/data/rules/osl-2.0_2.RULE b/src/licensedcode/data/rules/osl-2.0_2.RULE index 2e46506e7b3..5ac345f83f2 100644 --- a/src/licensedcode/data/rules/osl-2.0_2.RULE +++ b/src/licensedcode/data/rules/osl-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.rosenlaw.com/osl2.0.html +--- + http://www.rosenlaw.com/osl2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_2.yml b/src/licensedcode/data/rules/osl-2.0_2.yml deleted file mode 100644 index 36e825f89f2..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.rosenlaw.com/osl2.0.html diff --git a/src/licensedcode/data/rules/osl-2.0_3.RULE b/src/licensedcode/data/rules/osl-2.0_3.RULE index 152b81b8833..26af9c8bde9 100644 --- a/src/licensedcode/data/rules/osl-2.0_3.RULE +++ b/src/licensedcode/data/rules/osl-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/osl-2.0.php +--- + http://www.opensource.org/licenses/osl-2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_3.yml b/src/licensedcode/data/rules/osl-2.0_3.yml deleted file mode 100644 index 136df5b95c0..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/osl-2.0.php diff --git a/src/licensedcode/data/rules/osl-2.0_4.RULE b/src/licensedcode/data/rules/osl-2.0_4.RULE index cfaa8af480e..8c24a7e307a 100644 --- a/src/licensedcode/data/rules/osl-2.0_4.RULE +++ b/src/licensedcode/data/rules/osl-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_4.yml b/src/licensedcode/data/rules/osl-2.0_4.yml deleted file mode 100644 index bc95676417d..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.0_5.RULE b/src/licensedcode/data/rules/osl-2.0_5.RULE index 1a63007f4da..1a1e59b3727 100644 --- a/src/licensedcode/data/rules/osl-2.0_5.RULE +++ b/src/licensedcode/data/rules/osl-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OSL-2.0 Open Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_5.yml b/src/licensedcode/data/rules/osl-2.0_5.yml deleted file mode 100644 index bc95676417d..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.0_6.RULE b/src/licensedcode/data/rules/osl-2.0_6.RULE index 36584890bf0..31ea37c92d1 100644 --- a/src/licensedcode/data/rules/osl-2.0_6.RULE +++ b/src/licensedcode/data/rules/osl-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Software License 2.0 OSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_6.yml b/src/licensedcode/data/rules/osl-2.0_6.yml deleted file mode 100644 index bc95676417d..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.0_7.RULE b/src/licensedcode/data/rules/osl-2.0_7.RULE index a487ddd2235..961bc3d34a4 100644 --- a/src/licensedcode/data/rules/osl-2.0_7.RULE +++ b/src/licensedcode/data/rules/osl-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_7.yml b/src/licensedcode/data/rules/osl-2.0_7.yml deleted file mode 100644 index 29f1c0be299..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.0_8.RULE b/src/licensedcode/data/rules/osl-2.0_8.RULE index 05d0fb11f59..5e5b19dab1b 100644 --- a/src/licensedcode/data/rules/osl-2.0_8.RULE +++ b/src/licensedcode/data/rules/osl-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Software License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_8.yml b/src/licensedcode/data/rules/osl-2.0_8.yml deleted file mode 100644 index 29f1c0be299..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.0_9.RULE b/src/licensedcode/data/rules/osl-2.0_9.RULE index a4e095a3831..8f775532e63 100644 --- a/src/licensedcode/data/rules/osl-2.0_9.RULE +++ b/src/licensedcode/data/rules/osl-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OSL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_9.yml b/src/licensedcode/data/rules/osl-2.0_9.yml deleted file mode 100644 index 29f1c0be299..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.0_url_1.RULE b/src/licensedcode/data/rules/osl-2.0_url_1.RULE index e4f5301adc2..1291b29fb32 100644 --- a/src/licensedcode/data/rules/osl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/osl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-2.0 +--- + https://spdx.org/licenses/osl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_url_1.yml b/src/licensedcode/data/rules/osl-2.0_url_1.yml deleted file mode 100644 index c4c5bbd7c17..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-2.0 diff --git a/src/licensedcode/data/rules/osl-2.0_url_2.RULE b/src/licensedcode/data/rules/osl-2.0_url_2.RULE index 79be8fe29f3..e7ea680e667 100644 --- a/src/licensedcode/data/rules/osl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/osl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-2.0.html +--- + https://spdx.org/licenses/osl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.0_url_2.yml b/src/licensedcode/data/rules/osl-2.0_url_2.yml deleted file mode 100644 index 91456399bb0..00000000000 --- a/src/licensedcode/data/rules/osl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-2.0.html diff --git a/src/licensedcode/data/rules/osl-2.1.RULE b/src/licensedcode/data/rules/osl-2.1.RULE index d3c64a19722..cdd98032a55 100644 --- a/src/licensedcode/data/rules/osl-2.1.RULE +++ b/src/licensedcode/data/rules/osl-2.1.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.rosenlaw.com/osl21.htm +--- + http://www.rosenlaw.com/osl21.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1.SPDX.RULE b/src/licensedcode/data/rules/osl-2.1.SPDX.RULE index 43c1f7a8998..6371bbaa97b 100644 --- a/src/licensedcode/data/rules/osl-2.1.SPDX.RULE +++ b/src/licensedcode/data/rules/osl-2.1.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: osl-2.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2003-2004 Lawrence E. Rosen +ignorable_holders: + - Lawrence E. Rosen +--- + The Open Software License v. 2.1 diff --git a/src/licensedcode/data/rules/osl-2.1.SPDX.yml b/src/licensedcode/data/rules/osl-2.1.SPDX.yml deleted file mode 100644 index b031b8bfeae..00000000000 --- a/src/licensedcode/data/rules/osl-2.1.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: osl-2.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2003-2004 Lawrence E. Rosen -ignorable_holders: - - Lawrence E. Rosen diff --git a/src/licensedcode/data/rules/osl-2.1.yml b/src/licensedcode/data/rules/osl-2.1.yml deleted file mode 100644 index 6ef42bb9b55..00000000000 --- a/src/licensedcode/data/rules/osl-2.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.rosenlaw.com/osl21.htm diff --git a/src/licensedcode/data/rules/osl-2.1_1.RULE b/src/licensedcode/data/rules/osl-2.1_1.RULE index 7825f973fa5..1d46c113cb3 100644 --- a/src/licensedcode/data/rules/osl-2.1_1.RULE +++ b/src/licensedcode/data/rules/osl-2.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +--- + Open Software License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_1.yml b/src/licensedcode/data/rules/osl-2.1_1.yml deleted file mode 100644 index 952dc7abf90..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-2.1_10.RULE b/src/licensedcode/data/rules/osl-2.1_10.RULE index 7ec47cbd033..c1fb811cdd3 100644 --- a/src/licensedcode/data/rules/osl-2.1_10.RULE +++ b/src/licensedcode/data/rules/osl-2.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OSL-2.1 +--- + https://licenses.nuget.org/OSL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_10.yml b/src/licensedcode/data/rules/osl-2.1_10.yml deleted file mode 100644 index e25c8b309d4..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OSL-2.1 diff --git a/src/licensedcode/data/rules/osl-2.1_11.RULE b/src/licensedcode/data/rules/osl-2.1_11.RULE index 4768a8ce212..ce613664b7b 100644 --- a/src/licensedcode/data/rules/osl-2.1_11.RULE +++ b/src/licensedcode/data/rules/osl-2.1_11.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OSL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_11.yml b/src/licensedcode/data/rules/osl-2.1_11.yml deleted file mode 100644 index 952dc7abf90..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-2.1_12.RULE b/src/licensedcode/data/rules/osl-2.1_12.RULE index ca660b240b9..7d2ca87c90c 100644 --- a/src/licensedcode/data/rules/osl-2.1_12.RULE +++ b/src/licensedcode/data/rules/osl-2.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-2.1 +--- + {{OSL-2.1}} https://spdx.org/licenses/OSL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_12.yml b/src/licensedcode/data/rules/osl-2.1_12.yml deleted file mode 100644 index b15cee7265e..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-2.1 diff --git a/src/licensedcode/data/rules/osl-2.1_13.RULE b/src/licensedcode/data/rules/osl-2.1_13.RULE index 81a9c6e42da..d4fb279e30f 100644 --- a/src/licensedcode/data/rules/osl-2.1_13.RULE +++ b/src/licensedcode/data/rules/osl-2.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-2.1 +--- + LICENSE {{OSL-2.1}} https://spdx.org/licenses/OSL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_13.yml b/src/licensedcode/data/rules/osl-2.1_13.yml deleted file mode 100644 index b15cee7265e..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-2.1 diff --git a/src/licensedcode/data/rules/osl-2.1_2.RULE b/src/licensedcode/data/rules/osl-2.1_2.RULE index a7623743ddc..2302d68fc6c 100644 --- a/src/licensedcode/data/rules/osl-2.1_2.RULE +++ b/src/licensedcode/data/rules/osl-2.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/osl-2.1.php +--- + http://www.opensource.org/licenses/osl-2.1.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_2.yml b/src/licensedcode/data/rules/osl-2.1_2.yml deleted file mode 100644 index d062bd07c10..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/osl-2.1.php diff --git a/src/licensedcode/data/rules/osl-2.1_3.RULE b/src/licensedcode/data/rules/osl-2.1_3.RULE index 9eda88cddf0..73d64b27f27 100644 --- a/src/licensedcode/data/rules/osl-2.1_3.RULE +++ b/src/licensedcode/data/rules/osl-2.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.nexb.com/license/LICENSE-OSL-2.1.html +--- + http://www.nexb.com/license/LICENSE-OSL-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_3.yml b/src/licensedcode/data/rules/osl-2.1_3.yml deleted file mode 100644 index 8efe0f9b606..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.nexb.com/license/LICENSE-OSL-2.1.html diff --git a/src/licensedcode/data/rules/osl-2.1_4.RULE b/src/licensedcode/data/rules/osl-2.1_4.RULE index 61a9982c005..2dcbb7b246a 100644 --- a/src/licensedcode/data/rules/osl-2.1_4.RULE +++ b/src/licensedcode/data/rules/osl-2.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Software License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_4.yml b/src/licensedcode/data/rules/osl-2.1_4.yml deleted file mode 100644 index be8aa7ad1cc..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.1_5.RULE b/src/licensedcode/data/rules/osl-2.1_5.RULE index 51ca9902b53..fff3acaa019 100644 --- a/src/licensedcode/data/rules/osl-2.1_5.RULE +++ b/src/licensedcode/data/rules/osl-2.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OSL-2.1 Open Software License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_5.yml b/src/licensedcode/data/rules/osl-2.1_5.yml deleted file mode 100644 index be8aa7ad1cc..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.1_6.RULE b/src/licensedcode/data/rules/osl-2.1_6.RULE index 88be997bfdc..3f6f2658b12 100644 --- a/src/licensedcode/data/rules/osl-2.1_6.RULE +++ b/src/licensedcode/data/rules/osl-2.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Software License 2.1 OSL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_6.yml b/src/licensedcode/data/rules/osl-2.1_6.yml deleted file mode 100644 index be8aa7ad1cc..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.1_7.RULE b/src/licensedcode/data/rules/osl-2.1_7.RULE index 669e75a7c5b..0adcb9fd481 100644 --- a/src/licensedcode/data/rules/osl-2.1_7.RULE +++ b/src/licensedcode/data/rules/osl-2.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: OSL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_7.yml b/src/licensedcode/data/rules/osl-2.1_7.yml deleted file mode 100644 index bb792dadbf3..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.1_8.RULE b/src/licensedcode/data/rules/osl-2.1_8.RULE index c9c4dfc0c38..19e62efd0d7 100644 --- a/src/licensedcode/data/rules/osl-2.1_8.RULE +++ b/src/licensedcode/data/rules/osl-2.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Software License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_8.yml b/src/licensedcode/data/rules/osl-2.1_8.yml deleted file mode 100644 index bb792dadbf3..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.1_9.RULE b/src/licensedcode/data/rules/osl-2.1_9.RULE index 7659ea8b4ad..2b8e6df20e4 100644 --- a/src/licensedcode/data/rules/osl-2.1_9.RULE +++ b/src/licensedcode/data/rules/osl-2.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OSL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_9.yml b/src/licensedcode/data/rules/osl-2.1_9.yml deleted file mode 100644 index bb792dadbf3..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-2.1_url_1.RULE b/src/licensedcode/data/rules/osl-2.1_url_1.RULE index 1f64cb42a5f..26cd7e27a91 100644 --- a/src/licensedcode/data/rules/osl-2.1_url_1.RULE +++ b/src/licensedcode/data/rules/osl-2.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-2.1 +--- + https://spdx.org/licenses/osl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_url_1.yml b/src/licensedcode/data/rules/osl-2.1_url_1.yml deleted file mode 100644 index ffe757963e4..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-2.1 diff --git a/src/licensedcode/data/rules/osl-2.1_url_2.RULE b/src/licensedcode/data/rules/osl-2.1_url_2.RULE index 4c5ffb73fa2..bc359fc7917 100644 --- a/src/licensedcode/data/rules/osl-2.1_url_2.RULE +++ b/src/licensedcode/data/rules/osl-2.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-2.1.html +--- + https://spdx.org/licenses/osl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_url_2.yml b/src/licensedcode/data/rules/osl-2.1_url_2.yml deleted file mode 100644 index 1f7900c2afb..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-2.1.html diff --git a/src/licensedcode/data/rules/osl-2.1_url_glc_104.RULE b/src/licensedcode/data/rules/osl-2.1_url_glc_104.RULE index 1007d9feb86..91cd77431f3 100644 --- a/src/licensedcode/data/rules/osl-2.1_url_glc_104.RULE +++ b/src/licensedcode/data/rules/osl-2.1_url_glc_104.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/osl-2.1 +--- + http://opensource.org/licenses/osl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_url_glc_104.yml b/src/licensedcode/data/rules/osl-2.1_url_glc_104.yml deleted file mode 100644 index c1f421ff97e..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_url_glc_104.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/osl-2.1 diff --git a/src/licensedcode/data/rules/osl-2.1_url_glc_105.RULE b/src/licensedcode/data/rules/osl-2.1_url_glc_105.RULE index 8331c27b91f..e4d8ab1f7bb 100644 --- a/src/licensedcode/data/rules/osl-2.1_url_glc_105.RULE +++ b/src/licensedcode/data/rules/osl-2.1_url_glc_105.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/osl-2.1 +--- + https://opensource.org/licenses/osl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-2.1_url_glc_105.yml b/src/licensedcode/data/rules/osl-2.1_url_glc_105.yml deleted file mode 100644 index 88afe9bc2a6..00000000000 --- a/src/licensedcode/data/rules/osl-2.1_url_glc_105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/osl-2.1 diff --git a/src/licensedcode/data/rules/osl-3.0.RULE b/src/licensedcode/data/rules/osl-3.0.RULE index 9087051de45..4a45c44e4e3 100644 --- a/src/licensedcode/data/rules/osl-3.0.RULE +++ b/src/licensedcode/data/rules/osl-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/osl-3.0.php +--- + http://www.opensource.org/licenses/osl-3.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0.SPDX.RULE b/src/licensedcode/data/rules/osl-3.0.SPDX.RULE index 795960c2792..164d9b51eb8 100644 --- a/src/licensedcode/data/rules/osl-3.0.SPDX.RULE +++ b/src/licensedcode/data/rules/osl-3.0.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: osl-3.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright r 2005 Lawrence Rosen +ignorable_holders: + - r Lawrence Rosen +--- + Open Software License ("OSL") v. 3.0 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: Licensed under the Open Software License version 3.0 diff --git a/src/licensedcode/data/rules/osl-3.0.SPDX.yml b/src/licensedcode/data/rules/osl-3.0.SPDX.yml deleted file mode 100644 index 90853554179..00000000000 --- a/src/licensedcode/data/rules/osl-3.0.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: osl-3.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright r 2005 Lawrence Rosen -ignorable_holders: - - r Lawrence Rosen diff --git a/src/licensedcode/data/rules/osl-3.0.yml b/src/licensedcode/data/rules/osl-3.0.yml deleted file mode 100644 index 4fd8bbf9f27..00000000000 --- a/src/licensedcode/data/rules/osl-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_1.RULE b/src/licensedcode/data/rules/osl-3.0_1.RULE index 00065e896c6..a6e55aa8d11 100644 --- a/src/licensedcode/data/rules/osl-3.0_1.RULE +++ b/src/licensedcode/data/rules/osl-3.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: osl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + Open Software License ("OSL") v. 3.0 This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: diff --git a/src/licensedcode/data/rules/osl-3.0_1.yml b/src/licensedcode/data/rules/osl-3.0_1.yml deleted file mode 100644 index 9173f243e91..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2005 Lawrence Rosen -ignorable_holders: - - Lawrence Rosen diff --git a/src/licensedcode/data/rules/osl-3.0_10.RULE b/src/licensedcode/data/rules/osl-3.0_10.RULE index 36831da2236..35552451e56 100644 --- a/src/licensedcode/data/rules/osl-3.0_10.RULE +++ b/src/licensedcode/data/rules/osl-3.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/osl-3.0 +--- + https://choosealicense.com/licenses/osl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_10.yml b/src/licensedcode/data/rules/osl-3.0_10.yml deleted file mode 100644 index c999ea28518..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/osl-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_11.RULE b/src/licensedcode/data/rules/osl-3.0_11.RULE index b5a8ba7b0db..5ef5e9d53a0 100644 --- a/src/licensedcode/data/rules/osl-3.0_11.RULE +++ b/src/licensedcode/data/rules/osl-3.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/osl-3.0 +--- + http://choosealicense.com/licenses/osl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_11.yml b/src/licensedcode/data/rules/osl-3.0_11.yml deleted file mode 100644 index 11df1773598..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/osl-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_12.RULE b/src/licensedcode/data/rules/osl-3.0_12.RULE index 15d35a0e9c9..b84eeb9c2bb 100644 --- a/src/licensedcode/data/rules/osl-3.0_12.RULE +++ b/src/licensedcode/data/rules/osl-3.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/OSL-3.0 +--- + http://opensource.org/licenses/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_12.yml b/src/licensedcode/data/rules/osl-3.0_12.yml deleted file mode 100644 index 91ef5907ec6..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_13.RULE b/src/licensedcode/data/rules/osl-3.0_13.RULE index a86ab75bb6c..5c7827f2fc9 100644 --- a/src/licensedcode/data/rules/osl-3.0_13.RULE +++ b/src/licensedcode/data/rules/osl-3.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_13.yml b/src/licensedcode/data/rules/osl-3.0_13.yml deleted file mode 100644 index ba949dac1b3..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_14.RULE b/src/licensedcode/data/rules/osl-3.0_14.RULE index 9f2dfa0deee..f9145e4682d 100644 --- a/src/licensedcode/data/rules/osl-3.0_14.RULE +++ b/src/licensedcode/data/rules/osl-3.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/OSL-3.0 +--- + http://www.opensource.org/licenses/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_14.yml b/src/licensedcode/data/rules/osl-3.0_14.yml deleted file mode 100644 index 04d75b0d2ce..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_15.RULE b/src/licensedcode/data/rules/osl-3.0_15.RULE index 0f62e927662..904e5861848 100644 --- a/src/licensedcode/data/rules/osl-3.0_15.RULE +++ b/src/licensedcode/data/rules/osl-3.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/OSL-3.0 +--- + https://opensource.org/licenses/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_15.yml b/src/licensedcode/data/rules/osl-3.0_15.yml deleted file mode 100644 index faa5cee1c44..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_16.RULE b/src/licensedcode/data/rules/osl-3.0_16.RULE index b25f9da9b26..40b19b5bec2 100644 --- a/src/licensedcode/data/rules/osl-3.0_16.RULE +++ b/src/licensedcode/data/rules/osl-3.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/OSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_16.yml b/src/licensedcode/data/rules/osl-3.0_16.yml deleted file mode 100644 index ba949dac1b3..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_17.RULE b/src/licensedcode/data/rules/osl-3.0_17.RULE index dbd2559c270..2b184281fc6 100644 --- a/src/licensedcode/data/rules/osl-3.0_17.RULE +++ b/src/licensedcode/data/rules/osl-3.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/OSL-3.0 +--- + https://www.opensource.org/licenses/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_17.yml b/src/licensedcode/data/rules/osl-3.0_17.yml deleted file mode 100644 index 379a5ebfba9..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_18.RULE b/src/licensedcode/data/rules/osl-3.0_18.RULE index 55f850de288..a213ee97ab5 100644 --- a/src/licensedcode/data/rules/osl-3.0_18.RULE +++ b/src/licensedcode/data/rules/osl-3.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_tag: yes +relevance: 100 +--- + license": "OSL-3.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_18.yml b/src/licensedcode/data/rules/osl-3.0_18.yml deleted file mode 100644 index a328b749e6e..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_19.RULE b/src/licensedcode/data/rules/osl-3.0_19.RULE index 72403f13d12..093730d34af 100644 --- a/src/licensedcode/data/rules/osl-3.0_19.RULE +++ b/src/licensedcode/data/rules/osl-3.0_19.RULE @@ -1,3 +1,11 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://opensource.org/licenses/osl-3.0.php +--- + This source file is subject to the Open Software License (OSL 3.0) that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: diff --git a/src/licensedcode/data/rules/osl-3.0_19.yml b/src/licensedcode/data/rules/osl-3.0_19.yml deleted file mode 100644 index 7b2170e76a7..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_2.RULE b/src/licensedcode/data/rules/osl-3.0_2.RULE index e4fba6e4427..1270989f13c 100644 --- a/src/licensedcode/data/rules/osl-3.0_2.RULE +++ b/src/licensedcode/data/rules/osl-3.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/osl-3.0.php +--- + http://opensource.org/licenses/osl-3.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_2.yml b/src/licensedcode/data/rules/osl-3.0_2.yml deleted file mode 100644 index 07e4b379685..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_20.RULE b/src/licensedcode/data/rules/osl-3.0_20.RULE index 486e76edcc1..c9c948c51c7 100644 --- a/src/licensedcode/data/rules/osl-3.0_20.RULE +++ b/src/licensedcode/data/rules/osl-3.0_20.RULE @@ -1,3 +1,11 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://opensource.org/licenses/osl-3.0.php +--- + This source file is subject to the Open Software License (OSL 3.0) that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: diff --git a/src/licensedcode/data/rules/osl-3.0_20.yml b/src/licensedcode/data/rules/osl-3.0_20.yml deleted file mode 100644 index 7b2170e76a7..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_21.RULE b/src/licensedcode/data/rules/osl-3.0_21.RULE index 9104e331769..5b4b8d81b5e 100644 --- a/src/licensedcode/data/rules/osl-3.0_21.RULE +++ b/src/licensedcode/data/rules/osl-3.0_21.RULE @@ -1,3 +1,11 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/osl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) diff --git a/src/licensedcode/data/rules/osl-3.0_21.yml b/src/licensedcode/data/rules/osl-3.0_21.yml deleted file mode 100644 index 45b9bd41177..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_22.RULE b/src/licensedcode/data/rules/osl-3.0_22.RULE index b96534342b6..234b388fd35 100644 --- a/src/licensedcode/data/rules/osl-3.0_22.RULE +++ b/src/licensedcode/data/rules/osl-3.0_22.RULE @@ -1,3 +1,11 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/osl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) diff --git a/src/licensedcode/data/rules/osl-3.0_22.yml b/src/licensedcode/data/rules/osl-3.0_22.yml deleted file mode 100644 index 45b9bd41177..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_23.RULE b/src/licensedcode/data/rules/osl-3.0_23.RULE index d2c22d224c8..6695cac40b8 100644 --- a/src/licensedcode/data/rules/osl-3.0_23.RULE +++ b/src/licensedcode/data/rules/osl-3.0_23.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/osl-3.0.php +--- + * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_23.yml b/src/licensedcode/data/rules/osl-3.0_23.yml deleted file mode 100644 index 132048f784e..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_24.RULE b/src/licensedcode/data/rules/osl-3.0_24.RULE index 4b1dab230ed..7589632fd75 100644 --- a/src/licensedcode/data/rules/osl-3.0_24.RULE +++ b/src/licensedcode/data/rules/osl-3.0_24.RULE @@ -1,3 +1,11 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/osl-3.0.php +--- + * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: diff --git a/src/licensedcode/data/rules/osl-3.0_24.yml b/src/licensedcode/data/rules/osl-3.0_24.yml deleted file mode 100644 index 45b9bd41177..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_25.RULE b/src/licensedcode/data/rules/osl-3.0_25.RULE index ad494b91cf3..09ed85a6dad 100644 --- a/src/licensedcode/data/rules/osl-3.0_25.RULE +++ b/src/licensedcode/data/rules/osl-3.0_25.RULE @@ -1,3 +1,15 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - https://opensource.org/licenses/OSL-3.0 +ignorable_emails: + - license@prestashop.com +--- + * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) diff --git a/src/licensedcode/data/rules/osl-3.0_25.yml b/src/licensedcode/data/rules/osl-3.0_25.yml deleted file mode 100644 index 08eb83bd45e..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_25.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - https://opensource.org/licenses/OSL-3.0 -ignorable_emails: - - license@prestashop.com diff --git a/src/licensedcode/data/rules/osl-3.0_26.RULE b/src/licensedcode/data/rules/osl-3.0_26.RULE index 71c5ab3556f..4b1aa3701bf 100644 --- a/src/licensedcode/data/rules/osl-3.0_26.RULE +++ b/src/licensedcode/data/rules/osl-3.0_26.RULE @@ -1,3 +1,13 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://opensource.org/licenses/OSL-3.0 +--- + # This software is licensed under the Open Software License version # 3.0. The full text of this license can be found in https://opensource.org/licenses/OSL-3.0 # or in the file LICENSE which is distributed along with the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_26.yml b/src/licensedcode/data/rules/osl-3.0_26.yml deleted file mode 100644 index eecd8a707a5..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_26.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://opensource.org/licenses/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_27.RULE b/src/licensedcode/data/rules/osl-3.0_27.RULE index bd5899f4421..af947eca130 100644 --- a/src/licensedcode/data/rules/osl-3.0_27.RULE +++ b/src/licensedcode/data/rules/osl-3.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/osl-3.0.php +--- + `OSL-3.0` - [Open Software License 3.0](https://opensource.org/licenses/osl-3.0.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_27.yml b/src/licensedcode/data/rules/osl-3.0_27.yml deleted file mode 100644 index 833849081d7..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_28.RULE b/src/licensedcode/data/rules/osl-3.0_28.RULE index 7d31dcc6c0d..988ab04b71e 100644 --- a/src/licensedcode/data/rules/osl-3.0_28.RULE +++ b/src/licensedcode/data/rules/osl-3.0_28.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +--- + Open Software License v.3.0 OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_28.yml b/src/licensedcode/data/rules/osl-3.0_28.yml deleted file mode 100644 index ba949dac1b3..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_29.RULE b/src/licensedcode/data/rules/osl-3.0_29.RULE index 628ab9358c2..6d241cd87c4 100644 --- a/src/licensedcode/data/rules/osl-3.0_29.RULE +++ b/src/licensedcode/data/rules/osl-3.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +--- + Open Software License v.3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_29.yml b/src/licensedcode/data/rules/osl-3.0_29.yml deleted file mode 100644 index ba949dac1b3..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_3.RULE b/src/licensedcode/data/rules/osl-3.0_3.RULE index 0193380ed12..7fca858aa8c 100644 --- a/src/licensedcode/data/rules/osl-3.0_3.RULE +++ b/src/licensedcode/data/rules/osl-3.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.rosenlaw.com/OSL3.0.htm +--- + http://www.rosenlaw.com/OSL3.0.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_3.yml b/src/licensedcode/data/rules/osl-3.0_3.yml deleted file mode 100644 index af95fcb4f3d..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.rosenlaw.com/OSL3.0.htm diff --git a/src/licensedcode/data/rules/osl-3.0_30.RULE b/src/licensedcode/data/rules/osl-3.0_30.RULE index 484349c57a5..7dfcd76aac2 100644 --- a/src/licensedcode/data/rules/osl-3.0_30.RULE +++ b/src/licensedcode/data/rules/osl-3.0_30.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Software License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_30.yml b/src/licensedcode/data/rules/osl-3.0_30.yml deleted file mode 100644 index af50fa690e0..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-3.0_31.RULE b/src/licensedcode/data/rules/osl-3.0_31.RULE index 85d782f30af..c7a82782557 100644 --- a/src/licensedcode/data/rules/osl-3.0_31.RULE +++ b/src/licensedcode/data/rules/osl-3.0_31.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + OSL-3.0 Open Software License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_31.yml b/src/licensedcode/data/rules/osl-3.0_31.yml deleted file mode 100644 index af50fa690e0..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-3.0_32.RULE b/src/licensedcode/data/rules/osl-3.0_32.RULE index 4c1747477c5..d1ffa328b4f 100644 --- a/src/licensedcode/data/rules/osl-3.0_32.RULE +++ b/src/licensedcode/data/rules/osl-3.0_32.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Software License 3.0 OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_32.yml b/src/licensedcode/data/rules/osl-3.0_32.yml deleted file mode 100644 index af50fa690e0..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-3.0_33.RULE b/src/licensedcode/data/rules/osl-3.0_33.RULE index 164184a9c68..abd5a6140d0 100644 --- a/src/licensedcode/data/rules/osl-3.0_33.RULE +++ b/src/licensedcode/data/rules/osl-3.0_33.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Software License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_33.yml b/src/licensedcode/data/rules/osl-3.0_33.yml deleted file mode 100644 index d59910c9cfd..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-3.0_34.RULE b/src/licensedcode/data/rules/osl-3.0_34.RULE index cc48d46ea40..4b7e54eb9e4 100644 --- a/src/licensedcode/data/rules/osl-3.0_34.RULE +++ b/src/licensedcode/data/rules/osl-3.0_34.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_34.yml b/src/licensedcode/data/rules/osl-3.0_34.yml deleted file mode 100644 index d59910c9cfd..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/osl-3.0_35.RULE b/src/licensedcode/data/rules/osl-3.0_35.RULE index 027ed12cd1c..0aa0fabfdcd 100644 --- a/src/licensedcode/data/rules/osl-3.0_35.RULE +++ b/src/licensedcode/data/rules/osl-3.0_35.RULE @@ -1,2 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + See the file "LICENSE" for the full license governing this code. released under the Open Software License (OSL-3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_35.yml b/src/licensedcode/data/rules/osl-3.0_35.yml deleted file mode 100644 index 8a277c1b489..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_35.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/osl-3.0_36.RULE b/src/licensedcode/data/rules/osl-3.0_36.RULE index 4acf86369b4..09e1466a333 100644 --- a/src/licensedcode/data/rules/osl-3.0_36.RULE +++ b/src/licensedcode/data/rules/osl-3.0_36.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the Open Software License (OSL-3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_36.yml b/src/licensedcode/data/rules/osl-3.0_36.yml deleted file mode 100644 index f158d07f587..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_37.RULE b/src/licensedcode/data/rules/osl-3.0_37.RULE index c8dba484024..b052082db8d 100644 --- a/src/licensedcode/data/rules/osl-3.0_37.RULE +++ b/src/licensedcode/data/rules/osl-3.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +relevance: 100 +--- + released under the Open Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_37.yml b/src/licensedcode/data/rules/osl-3.0_37.yml deleted file mode 100644 index f158d07f587..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_38.RULE b/src/licensedcode/data/rules/osl-3.0_38.RULE index 9fe2f52eb8e..80fcec6ee43 100644 --- a/src/licensedcode/data/rules/osl-3.0_38.RULE +++ b/src/licensedcode/data/rules/osl-3.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +--- + Open Software License (OSL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_38.yml b/src/licensedcode/data/rules/osl-3.0_38.yml deleted file mode 100644 index ba949dac1b3..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_39.RULE b/src/licensedcode/data/rules/osl-3.0_39.RULE index 162d2a12316..63491fe3e46 100644 --- a/src/licensedcode/data/rules/osl-3.0_39.RULE +++ b/src/licensedcode/data/rules/osl-3.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 95 +--- + wikipedia.org/wiki/Open_Software_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_39.yml b/src/licensedcode/data/rules/osl-3.0_39.yml deleted file mode 100644 index c9759791174..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/osl-3.0_4.RULE b/src/licensedcode/data/rules/osl-3.0_4.RULE index bd3ad60d01a..f19dd34ec63 100644 --- a/src/licensedcode/data/rules/osl-3.0_4.RULE +++ b/src/licensedcode/data/rules/osl-3.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +--- + Open Software License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_4.yml b/src/licensedcode/data/rules/osl-3.0_4.yml deleted file mode 100644 index ba949dac1b3..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_40.RULE b/src/licensedcode/data/rules/osl-3.0_40.RULE index 71814f40fc7..20a73caa0af 100644 --- a/src/licensedcode/data/rules/osl-3.0_40.RULE +++ b/src/licensedcode/data/rules/osl-3.0_40.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/OSL-3.0 +--- + https://licenses.nuget.org/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_40.yml b/src/licensedcode/data/rules/osl-3.0_40.yml deleted file mode 100644 index 1df35022816..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_41.RULE b/src/licensedcode/data/rules/osl-3.0_41.RULE index ebb86ac9c01..924ca1320d7 100644 --- a/src/licensedcode/data/rules/osl-3.0_41.RULE +++ b/src/licensedcode/data/rules/osl-3.0_41.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_41.yml b/src/licensedcode/data/rules/osl-3.0_41.yml deleted file mode 100644 index ba949dac1b3..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/osl-3.0_42.RULE b/src/licensedcode/data/rules/osl-3.0_42.RULE index e5e9692f677..6fa1b1658b2 100644 --- a/src/licensedcode/data/rules/osl-3.0_42.RULE +++ b/src/licensedcode/data/rules/osl-3.0_42.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-3.0 +--- + {{OSL-3.0}} https://spdx.org/licenses/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_42.yml b/src/licensedcode/data/rules/osl-3.0_42.yml deleted file mode 100644 index 6754894090a..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_43.RULE b/src/licensedcode/data/rules/osl-3.0_43.RULE index 0a0c8b94b3d..9f0e5c404ee 100644 --- a/src/licensedcode/data/rules/osl-3.0_43.RULE +++ b/src/licensedcode/data/rules/osl-3.0_43.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/OSL-3.0 +--- + LICENSE {{OSL-3.0}} https://spdx.org/licenses/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_43.yml b/src/licensedcode/data/rules/osl-3.0_43.yml deleted file mode 100644 index 6754894090a..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_44.RULE b/src/licensedcode/data/rules/osl-3.0_44.RULE index ad89bd22878..c04fc1fb5a8 100644 --- a/src/licensedcode/data/rules/osl-3.0_44.RULE +++ b/src/licensedcode/data/rules/osl-3.0_44.RULE @@ -1 +1,6 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +--- + Open Software License v. 3.0 (OSL-3.0) consists of the Open Software License v. 3.0 (OSL-3.0) with the additional Terms below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_44.yml b/src/licensedcode/data/rules/osl-3.0_44.yml deleted file mode 100644 index 8867aefcb3d..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/osl-3.0_45.RULE b/src/licensedcode/data/rules/osl-3.0_45.RULE index b4c9f52b2a8..1cf57768fe6 100644 --- a/src/licensedcode/data/rules/osl-3.0_45.RULE +++ b/src/licensedcode/data/rules/osl-3.0_45.RULE @@ -1,3 +1,12 @@ +--- +license_expression: osl-3.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2005 Lawrence Rosen +ignorable_holders: + - Lawrence Rosen +--- + Open Software License v. 3.0 (OSL-3.0) This Open Software License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work: diff --git a/src/licensedcode/data/rules/osl-3.0_45.yml b/src/licensedcode/data/rules/osl-3.0_45.yml deleted file mode 100644 index 9173f243e91..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_45.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2005 Lawrence Rosen -ignorable_holders: - - Lawrence Rosen diff --git a/src/licensedcode/data/rules/osl-3.0_5.RULE b/src/licensedcode/data/rules/osl-3.0_5.RULE index 6ac849e928e..8b4d672e88f 100644 --- a/src/licensedcode/data/rules/osl-3.0_5.RULE +++ b/src/licensedcode/data/rules/osl-3.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/osl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) @@ -6,5 +13,4 @@ * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email - * to license@ .com so we can send you a copy immediately. - + * to license@ .com so we can send you a copy immediately. \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_5.yml b/src/licensedcode/data/rules/osl-3.0_5.yml deleted file mode 100644 index 7c2a0507cc6..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_6.RULE b/src/licensedcode/data/rules/osl-3.0_6.RULE index bad0cbaf5c4..733294d5849 100644 --- a/src/licensedcode/data/rules/osl-3.0_6.RULE +++ b/src/licensedcode/data/rules/osl-3.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/osl-3.0.php +--- + @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_6.yml b/src/licensedcode/data/rules/osl-3.0_6.yml deleted file mode 100644 index 07e4b379685..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_7.RULE b/src/licensedcode/data/rules/osl-3.0_7.RULE index 02f76b43fae..48be699c366 100644 --- a/src/licensedcode/data/rules/osl-3.0_7.RULE +++ b/src/licensedcode/data/rules/osl-3.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://opensource.org/licenses/osl-3.0.php +--- + * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) diff --git a/src/licensedcode/data/rules/osl-3.0_7.yml b/src/licensedcode/data/rules/osl-3.0_7.yml deleted file mode 100644 index 51acbb55b2a..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://opensource.org/licenses/osl-3.0.php diff --git a/src/licensedcode/data/rules/osl-3.0_8.RULE b/src/licensedcode/data/rules/osl-3.0_8.RULE index ea9be47e5d3..e224ae89293 100644 --- a/src/licensedcode/data/rules/osl-3.0_8.RULE +++ b/src/licensedcode/data/rules/osl-3.0_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: osl-3.0 +is_license_notice: yes +ignorable_urls: + - http://opensource.org/licenses/OSL-3.0 +--- + // Permission is granted to copy, distribute and/or modify this file under the // terms of the Open Software License v. 3.0 (OSL-3.0). You may obtain a copy of // the license at http://opensource.org/licenses/OSL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_8.yml b/src/licensedcode/data/rules/osl-3.0_8.yml deleted file mode 100644 index d886844a2bd..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: osl-3.0 -is_license_notice: yes -ignorable_urls: - - http://opensource.org/licenses/OSL-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_9.RULE b/src/licensedcode/data/rules/osl-3.0_9.RULE index 61230fed264..eb6b4f9b671 100644 --- a/src/licensedcode/data/rules/osl-3.0_9.RULE +++ b/src/licensedcode/data/rules/osl-3.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 99 +--- + Open Software License, Version \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_9.yml b/src/licensedcode/data/rules/osl-3.0_9.yml deleted file mode 100644 index 1c4491b301b..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/osl-3.0_url_1.RULE b/src/licensedcode/data/rules/osl-3.0_url_1.RULE index d8f872af691..8cdbe4a6e3b 100644 --- a/src/licensedcode/data/rules/osl-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/osl-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-3.0 +--- + https://spdx.org/licenses/osl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_url_1.yml b/src/licensedcode/data/rules/osl-3.0_url_1.yml deleted file mode 100644 index abb1105e8a0..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-3.0 diff --git a/src/licensedcode/data/rules/osl-3.0_url_2.RULE b/src/licensedcode/data/rules/osl-3.0_url_2.RULE index d87cebcf261..0edff5540f3 100644 --- a/src/licensedcode/data/rules/osl-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/osl-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/osl-3.0.html +--- + https://spdx.org/licenses/osl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/osl-3.0_url_2.yml b/src/licensedcode/data/rules/osl-3.0_url_2.yml deleted file mode 100644 index 2aadd2f2cf4..00000000000 --- a/src/licensedcode/data/rules/osl-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/osl-3.0.html diff --git a/src/licensedcode/data/rules/ossn-3.0.RULE b/src/licensedcode/data/rules/ossn-3.0.RULE index f8db7908362..f148eba7340 100644 --- a/src/licensedcode/data/rules/ossn-3.0.RULE +++ b/src/licensedcode/data/rules/ossn-3.0.RULE @@ -1 +1,9 @@ -http://www.opensource-socialnetwork.org/licence +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource-socialnetwork.org/licence +--- + +http://www.opensource-socialnetwork.org/licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/ossn-3.0.yml b/src/licensedcode/data/rules/ossn-3.0.yml deleted file mode 100644 index cb3747bee96..00000000000 --- a/src/licensedcode/data/rules/ossn-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource-socialnetwork.org/licence diff --git a/src/licensedcode/data/rules/oswego-concurrent.RULE b/src/licensedcode/data/rules/oswego-concurrent.RULE index 631f225bfb6..487f4307d18 100644 --- a/src/licensedcode/data/rules/oswego-concurrent.RULE +++ b/src/licensedcode/data/rules/oswego-concurrent.RULE @@ -1 +1,10 @@ -http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf +--- +license_expression: oswego-concurrent +is_license_reference: yes +relevance: 100 +notes: http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf +ignorable_urls: + - http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf +--- + +http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/oswego-concurrent.yml b/src/licensedcode/data/rules/oswego-concurrent.yml deleted file mode 100644 index 319d161b4ba..00000000000 --- a/src/licensedcode/data/rules/oswego-concurrent.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oswego-concurrent -is_license_reference: yes -relevance: 100 -notes: http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf -ignorable_urls: - - http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/sun-u.c.license.pdf diff --git a/src/licensedcode/data/rules/oswego-concurrent_1.RULE b/src/licensedcode/data/rules/oswego-concurrent_1.RULE index d20daa6ba44..229e01122af 100644 --- a/src/licensedcode/data/rules/oswego-concurrent_1.RULE +++ b/src/licensedcode/data/rules/oswego-concurrent_1.RULE @@ -1 +1,9 @@ +--- +license_expression: oswego-concurrent +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html +--- + http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/oswego-concurrent_1.yml b/src/licensedcode/data/rules/oswego-concurrent_1.yml deleted file mode 100644 index 4944e455e3c..00000000000 --- a/src/licensedcode/data/rules/oswego-concurrent_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: oswego-concurrent -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://g.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html diff --git a/src/licensedcode/data/rules/oswego-concurrent_2.RULE b/src/licensedcode/data/rules/oswego-concurrent_2.RULE index 83b956979fb..b6ae211f4db 100644 --- a/src/licensedcode/data/rules/oswego-concurrent_2.RULE +++ b/src/licensedcode/data/rules/oswego-concurrent_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: oswego-concurrent +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1994-2000 Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +--- + Public Domain concurrent 1.3.4 All classes are released to the public domain and may be used for any purpose whatsoever without permission or acknowledgment. Portions of the CopyOnWriteArrayList and ConcurrentReaderHashMap classes are adapted from Sun JDK source code. These are copyright of Sun Microsystems, Inc, and are used with their kind permission, as described in this license. (presented below) diff --git a/src/licensedcode/data/rules/oswego-concurrent_2.yml b/src/licensedcode/data/rules/oswego-concurrent_2.yml deleted file mode 100644 index 5b61b5b1628..00000000000 --- a/src/licensedcode/data/rules/oswego-concurrent_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oswego-concurrent -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1994-2000 Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. diff --git a/src/licensedcode/data/rules/other-copyleft_1.RULE b/src/licensedcode/data/rules/other-copyleft_1.RULE index c7f426542d3..8f4034744f4 100644 --- a/src/licensedcode/data/rules/other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/other-copyleft_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-copyleft +is_license_text: yes +--- + All rights reserved, with the following exceptions: Anyone may copy or redistribute these programs, provided that: @@ -12,4 +17,4 @@ There is NO WARRANTY with this software, it comes as is, and is distributed in t This copyright notice applies to any program which contains this text, or the refers to this file. -This copyright notice is based on the one published by the Free Software Foundation, sometimes known as the GNU project. The idea is the same as theirs, ie the software is free, and is intended to stay that way. Everybody has the right to copy, modify, and re-distribute this software. Nobody has the right to prevent anyone else from copying, modifying or redistributing it \ No newline at end of file +This copyright notice is based on the one published by the Free Software Foundation, sometimes known as the GNU project. The idea is the same as theirs, ie the software is free, and is intended to stay that way. Everybody has the right to copy, modify, and re-distribute this software. Nobody has the right to prevent anyone else from copying, modifying or redistributing it \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_1.yml b/src/licensedcode/data/rules/other-copyleft_1.yml deleted file mode 100644 index 6166e01e4f0..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-copyleft_10.RULE b/src/licensedcode/data/rules/other-copyleft_10.RULE index 2eb17825e1d..519e7a8cd06 100644 --- a/src/licensedcode/data/rules/other-copyleft_10.RULE +++ b/src/licensedcode/data/rules/other-copyleft_10.RULE @@ -1 +1,8 @@ +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 100 +notes: this is a rare, copyleft-like license +--- + DESIGN SCIENCE LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_10.yml b/src/licensedcode/data/rules/other-copyleft_10.yml deleted file mode 100644 index 8a1eb956040..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 100 -notes: this is a rare, copyleft-like license diff --git a/src/licensedcode/data/rules/other-copyleft_11.RULE b/src/licensedcode/data/rules/other-copyleft_11.RULE index 48fa6768278..7cad8522d82 100644 --- a/src/licensedcode/data/rules/other-copyleft_11.RULE +++ b/src/licensedcode/data/rules/other-copyleft_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_text: yes +relevance: 100 +--- + Permission to copy and modify ;;; this software, to redistribute either the original software or a ;;; modified version, and to use this software for any purpose is @@ -24,4 +30,4 @@ Permission to copy and modify ;;; material, there shall be no use of the name of the Massachusetts ;;; Institute of Technology nor of any adaptation thereof in any ;;; advertising, promotional, or sales literature without prior -;;; written consent from MIT in each case. +;;; written consent from MIT in each case. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_11.yml b/src/licensedcode/data/rules/other-copyleft_11.yml deleted file mode 100644 index 745a09cbe52..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_12.RULE b/src/licensedcode/data/rules/other-copyleft_12.RULE index 87e22fd5588..0dca0cbd777 100644 --- a/src/licensedcode/data/rules/other-copyleft_12.RULE +++ b/src/licensedcode/data/rules/other-copyleft_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_text: yes +relevance: 100 +--- + Permission is granted to copy and ;distribute modified or unmodified versions of this color dictionary ;provided the copyright notice and this permission notice are preserved diff --git a/src/licensedcode/data/rules/other-copyleft_12.yml b/src/licensedcode/data/rules/other-copyleft_12.yml deleted file mode 100644 index 745a09cbe52..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_13.RULE b/src/licensedcode/data/rules/other-copyleft_13.RULE index c4d9cd8f1d4..4cc1563f423 100644 --- a/src/licensedcode/data/rules/other-copyleft_13.RULE +++ b/src/licensedcode/data/rules/other-copyleft_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_text: yes +relevance: 100 +--- + ; Permission to copy this software, in whole or in part, to use this ; software for any lawful purpose, and to redistribute this software ; is granted subject to the restriction that all copies made of this diff --git a/src/licensedcode/data/rules/other-copyleft_13.yml b/src/licensedcode/data/rules/other-copyleft_13.yml deleted file mode 100644 index 745a09cbe52..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_14.RULE b/src/licensedcode/data/rules/other-copyleft_14.RULE index 5c7a0e9065e..cc4ce999798 100644 --- a/src/licensedcode/data/rules/other-copyleft_14.RULE +++ b/src/licensedcode/data/rules/other-copyleft_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_text: yes +relevance: 100 +--- + This work may be reproduced and distributed in whole or in part, in any medium, physical or electronic, so as long as this copyright notice remains intact and unchanged on all copies. Commercial diff --git a/src/licensedcode/data/rules/other-copyleft_14.yml b/src/licensedcode/data/rules/other-copyleft_14.yml deleted file mode 100644 index 745a09cbe52..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_15.RULE b/src/licensedcode/data/rules/other-copyleft_15.RULE index f70728b75d9..eed68460d1b 100644 --- a/src/licensedcode/data/rules/other-copyleft_15.RULE +++ b/src/licensedcode/data/rules/other-copyleft_15.RULE @@ -1 +1,7 @@ +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 80 +--- + copylefted \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_15.yml b/src/licensedcode/data/rules/other-copyleft_15.yml deleted file mode 100644 index e4d61ff1de8..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/other-copyleft_16.RULE b/src/licensedcode/data/rules/other-copyleft_16.RULE index f9bf43624a5..4cd4afcb846 100644 --- a/src/licensedcode/data/rules/other-copyleft_16.RULE +++ b/src/licensedcode/data/rules/other-copyleft_16.RULE @@ -1 +1,7 @@ +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 80 +--- + ShareAlike \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_16.yml b/src/licensedcode/data/rules/other-copyleft_16.yml deleted file mode 100644 index e4d61ff1de8..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/other-copyleft_17.RULE b/src/licensedcode/data/rules/other-copyleft_17.RULE index a168eb89a52..e662bdc9538 100644 --- a/src/licensedcode/data/rules/other-copyleft_17.RULE +++ b/src/licensedcode/data/rules/other-copyleft_17.RULE @@ -1 +1,9 @@ +--- +license_expression: other-copyleft +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + The author added a static linking exception, see License.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_17.yml b/src/licensedcode/data/rules/other-copyleft_17.yml deleted file mode 100644 index d655b90d992..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-copyleft -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/other-copyleft_18.RULE b/src/licensedcode/data/rules/other-copyleft_18.RULE index e4eca5d6685..5045abe961a 100644 --- a/src/licensedcode/data/rules/other-copyleft_18.RULE +++ b/src/licensedcode/data/rules/other-copyleft_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-copyleft +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/danlucraft/redcar/blob/ff1a671b26a8969ad16da893995cf07e293319e5/LICENSE +--- + 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. diff --git a/src/licensedcode/data/rules/other-copyleft_18.yml b/src/licensedcode/data/rules/other-copyleft_18.yml deleted file mode 100644 index a9f06002c50..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/danlucraft/redcar/blob/ff1a671b26a8969ad16da893995cf07e293319e5/LICENSE diff --git a/src/licensedcode/data/rules/other-copyleft_19.RULE b/src/licensedcode/data/rules/other-copyleft_19.RULE index c08d8344748..1788519386c 100644 --- a/src/licensedcode/data/rules/other-copyleft_19.RULE +++ b/src/licensedcode/data/rules/other-copyleft_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-copyleft +is_license_notice: yes +relevance: 100 +notes: This is a rare BSD-looking MPL-like license originally seen at https://git.wark.io/lib/textutil-go +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-copyleft_19.yml b/src/licensedcode/data/rules/other-copyleft_19.yml deleted file mode 100644 index 94035ca1bf3..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-copyleft -is_license_notice: yes -relevance: 100 -notes: This is a rare BSD-looking MPL-like license originally seen at https://git.wark.io/lib/textutil-go diff --git a/src/licensedcode/data/rules/other-copyleft_2.RULE b/src/licensedcode/data/rules/other-copyleft_2.RULE index c60e52005c6..990d29ffdf0 100644 --- a/src/licensedcode/data/rules/other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/other-copyleft_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-copyleft +is_license_text: yes +minimum_coverage: 80 +notes: a rare license found in older OpenSSL with a choice of GPL +ignorable_authors: + - Bodo Moeller +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that each of the following conditions is met: @@ -43,4 +52,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_2.yml b/src/licensedcode/data/rules/other-copyleft_2.yml deleted file mode 100644 index 08cd4a5af57..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -minimum_coverage: 80 -notes: a rare license found in older OpenSSL with a choice of GPL -ignorable_authors: - - Bodo Moeller diff --git a/src/licensedcode/data/rules/other-copyleft_20.RULE b/src/licensedcode/data/rules/other-copyleft_20.RULE index 487ae9a9f74..8c7e995de9b 100644 --- a/src/licensedcode/data/rules/other-copyleft_20.RULE +++ b/src/licensedcode/data/rules/other-copyleft_20.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-copyleft +is_license_text: yes +relevance: 100 +notes: Seen in Perl printf https://github.com/longluo/BusyBox/blob/aa81123c0a9e3aa05aef6d782e0d5dab93e6819c/Windows/ppt/bin/printf#L57 + and https://github.com/gitpan/ppt/blob/7ad5c69e04cf686f9a1dae993233f9da6d69ace5/src/rev/rev.roland#L60 +--- + This program is free and open software. You may use, modify, distribute, and sell this program (and any modified variants) in any way you wish, provided you do not restrict others from doing the same. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_20.yml b/src/licensedcode/data/rules/other-copyleft_20.yml deleted file mode 100644 index 3a88b6e7b42..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -relevance: 100 -notes: Seen in Perl printf https://github.com/longluo/BusyBox/blob/aa81123c0a9e3aa05aef6d782e0d5dab93e6819c/Windows/ppt/bin/printf#L57 - and https://github.com/gitpan/ppt/blob/7ad5c69e04cf686f9a1dae993233f9da6d69ace5/src/rev/rev.roland#L60 diff --git a/src/licensedcode/data/rules/other-copyleft_21.RULE b/src/licensedcode/data/rules/other-copyleft_21.RULE index 05011191200..f620ef590db 100644 --- a/src/licensedcode/data/rules/other-copyleft_21.RULE +++ b/src/licensedcode/data/rules/other-copyleft_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_text: yes +relevance: 100 +--- + Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a diff --git a/src/licensedcode/data/rules/other-copyleft_21.yml b/src/licensedcode/data/rules/other-copyleft_21.yml deleted file mode 100644 index 745a09cbe52..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_22.RULE b/src/licensedcode/data/rules/other-copyleft_22.RULE index 56346630932..c2555893203 100644 --- a/src/licensedcode/data/rules/other-copyleft_22.RULE +++ b/src/licensedcode/data/rules/other-copyleft_22.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_text: yes +relevance: 100 +--- + Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a diff --git a/src/licensedcode/data/rules/other-copyleft_22.yml b/src/licensedcode/data/rules/other-copyleft_22.yml deleted file mode 100644 index 745a09cbe52..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_23.RULE b/src/licensedcode/data/rules/other-copyleft_23.RULE index aa7e932bafd..5dbc8a27b91 100644 --- a/src/licensedcode/data/rules/other-copyleft_23.RULE +++ b/src/licensedcode/data/rules/other-copyleft_23.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/other-copyleft_23.yml b/src/licensedcode/data/rules/other-copyleft_23.yml deleted file mode 100644 index 8bf8d5da57e..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_24.RULE b/src/licensedcode/data/rules/other-copyleft_24.RULE index 73fa712878c..9d4644ef167 100644 --- a/src/licensedcode/data/rules/other-copyleft_24.RULE +++ b/src/licensedcode/data/rules/other-copyleft_24.RULE @@ -1 +1,7 @@ +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 80 +--- + GPL-compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_24.yml b/src/licensedcode/data/rules/other-copyleft_24.yml deleted file mode 100644 index e4d61ff1de8..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/other-copyleft_25.RULE b/src/licensedcode/data/rules/other-copyleft_25.RULE index ce8361a4fff..ff36c68aeba 100644 --- a/src/licensedcode/data/rules/other-copyleft_25.RULE +++ b/src/licensedcode/data/rules/other-copyleft_25.RULE @@ -1,3 +1,15 @@ +--- +license_expression: other-copyleft +is_license_notice: yes +relevance: 100 +notes: This exception-like notices is not really an exception and just allows to use GPL-licensed + code with other FOSS code as log as this other code is redistributed in source form too. + Seen in https://www.nexedi.com/jobs/NXD-License.FreeSoftware +ignorable_urls: + - http://opensource.org/licenses + - https://www.gnu.org/licenses/license-list.en.html +--- + Additional permission under GNU GPL version 3 section 7 : If you modify this Program, or any covered work, by linking or combining it with other software covered by the terms of any of the licenses classified as free software license by the Free Software Foundation diff --git a/src/licensedcode/data/rules/other-copyleft_25.yml b/src/licensedcode/data/rules/other-copyleft_25.yml deleted file mode 100644 index 7fca0e78e74..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_25.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-copyleft -is_license_notice: yes -relevance: 100 -notes: This exception-like notices is not really an exception and just allows to use GPL-licensed - code with other FOSS code as log as this other code is redistributed in source form too. - Seen in https://www.nexedi.com/jobs/NXD-License.FreeSoftware -ignorable_urls: - - http://opensource.org/licenses - - https://www.gnu.org/licenses/license-list.en.html diff --git a/src/licensedcode/data/rules/other-copyleft_26.RULE b/src/licensedcode/data/rules/other-copyleft_26.RULE index 30e0dc984cc..5d07c513e71 100644 --- a/src/licensedcode/data/rules/other-copyleft_26.RULE +++ b/src/licensedcode/data/rules/other-copyleft_26.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_text: yes +notes: julius legacy license. See https://fedoraproject.org/wiki/Licensing/Julius +--- + Large Vocabulary Continuous Speech Recognition Engine Julius "Large Vocabulary Continuous Speech Recognition Engine Julius", diff --git a/src/licensedcode/data/rules/other-copyleft_26.yml b/src/licensedcode/data/rules/other-copyleft_26.yml deleted file mode 100644 index 0342bc9dfce..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -notes: julius legacy license. See https://fedoraproject.org/wiki/Licensing/Julius diff --git a/src/licensedcode/data/rules/other-copyleft_28.RULE b/src/licensedcode/data/rules/other-copyleft_28.RULE index 5d821914982..809078d6ccc 100644 --- a/src/licensedcode/data/rules/other-copyleft_28.RULE +++ b/src/licensedcode/data/rules/other-copyleft_28.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing/DWPL +--- + DO WHATEVER PUBLIC LICENSE* TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION diff --git a/src/licensedcode/data/rules/other-copyleft_28.yml b/src/licensedcode/data/rules/other-copyleft_28.yml deleted file mode 100644 index a416372379c..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing/DWPL diff --git a/src/licensedcode/data/rules/other-copyleft_3.RULE b/src/licensedcode/data/rules/other-copyleft_3.RULE index 9b0cbe69089..b2897c0c0ba 100644 --- a/src/licensedcode/data/rules/other-copyleft_3.RULE +++ b/src/licensedcode/data/rules/other-copyleft_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-copyleft +is_license_text: yes +--- + Linking The SQLRelay Server statically or dynamically with other modules is making a combined work based on The SQLRelay Server. Thus, the terms and conditions of the GNU General Public License cover the whole combination. @@ -34,4 +39,4 @@ Note that people who make modified versions of The SQLRelay Server are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. The GNU General Public License gives permission to release a modified version without this exception; this exception also makes -it possible to release a modified version which carries forward this exception. +it possible to release a modified version which carries forward this exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_3.yml b/src/licensedcode/data/rules/other-copyleft_3.yml deleted file mode 100644 index 6166e01e4f0..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-copyleft_4.RULE b/src/licensedcode/data/rules/other-copyleft_4.RULE index e54c7d18e22..ce57bed3ce7 100644 --- a/src/licensedcode/data/rules/other-copyleft_4.RULE +++ b/src/licensedcode/data/rules/other-copyleft_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-copyleft +is_license_notice: yes +relevance: 90 +--- + Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_4.yml b/src/licensedcode/data/rules/other-copyleft_4.yml deleted file mode 100644 index f61f0113d84..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/other-copyleft_5.RULE b/src/licensedcode/data/rules/other-copyleft_5.RULE index f711810b9e7..21ac33eb0af 100644 --- a/src/licensedcode/data/rules/other-copyleft_5.RULE +++ b/src/licensedcode/data/rules/other-copyleft_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: other-copyleft +is_license_text: yes +notes: http://alps.comp-phys.org/static/software/ALPS/LICENSE.txt/ +ignorable_copyrights: + - Copyright (c) 2003-2004 Ian McCulloch +ignorable_holders: + - Ian McCulloch +--- + ALPS LIBRARY LICENSE version 1.0 Copyright (C) 2003-2004 Ian McCulloch. Everyone is permitted to copy and distribute this license document. @@ -79,4 +89,4 @@ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_5.yml b/src/licensedcode/data/rules/other-copyleft_5.yml deleted file mode 100644 index a9c141f7705..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -notes: http://alps.comp-phys.org/static/software/ALPS/LICENSE.txt/ -ignorable_copyrights: - - Copyright (c) 2003-2004 Ian McCulloch -ignorable_holders: - - Ian McCulloch diff --git a/src/licensedcode/data/rules/other-copyleft_6.RULE b/src/licensedcode/data/rules/other-copyleft_6.RULE index dd2a7ca1c09..0b187f34b13 100644 --- a/src/licensedcode/data/rules/other-copyleft_6.RULE +++ b/src/licensedcode/data/rules/other-copyleft_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: other-copyleft +is_license_text: yes +notes: http://alps.comp-phys.org/static/software/applications/LICENSE.txt/ +ignorable_copyrights: + - Copyright (c) 2003-2004 Ian McCulloch +ignorable_holders: + - Ian McCulloch +--- + ALPS APPLICATION LICENSE version 1.0 Copyright (C) 2003-2004 Ian McCulloch. Everyone is permitted to copy and distribute this license document. @@ -83,4 +93,4 @@ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_6.yml b/src/licensedcode/data/rules/other-copyleft_6.yml deleted file mode 100644 index 2623acee150..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -notes: http://alps.comp-phys.org/static/software/applications/LICENSE.txt/ -ignorable_copyrights: - - Copyright (c) 2003-2004 Ian McCulloch -ignorable_holders: - - Ian McCulloch diff --git a/src/licensedcode/data/rules/other-copyleft_7.RULE b/src/licensedcode/data/rules/other-copyleft_7.RULE index 460ccf32018..91bfa524772 100644 --- a/src/licensedcode/data/rules/other-copyleft_7.RULE +++ b/src/licensedcode/data/rules/other-copyleft_7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-copyleft +is_license_notice: yes +ignorable_urls: + - http://alps.comp-phys.org/ +--- + # # This software is part of the ALPS libraries, published under the ALPS # Library License; you can use, redistribute it and/or modify it under diff --git a/src/licensedcode/data/rules/other-copyleft_7.yml b/src/licensedcode/data/rules/other-copyleft_7.yml deleted file mode 100644 index ea714f810be..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-copyleft -is_license_notice: yes -ignorable_urls: - - http://alps.comp-phys.org/ diff --git a/src/licensedcode/data/rules/other-copyleft_8.RULE b/src/licensedcode/data/rules/other-copyleft_8.RULE index 9acad1ad04d..5f2a2a90f65 100644 --- a/src/licensedcode/data/rules/other-copyleft_8.RULE +++ b/src/licensedcode/data/rules/other-copyleft_8.RULE @@ -1,3 +1,15 @@ +--- +license_expression: other-copyleft +is_license_text: yes +notes: this is a rare, copyleft-like license +ignorable_copyrights: + - Copyright (c) 1999-2001 Michael Stutz +ignorable_holders: + - Michael Stutz +ignorable_emails: + - stutz@dsl.org +--- + DESIGN SCIENCE LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION diff --git a/src/licensedcode/data/rules/other-copyleft_8.yml b/src/licensedcode/data/rules/other-copyleft_8.yml deleted file mode 100644 index 0bdb5fbac12..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_8.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -notes: this is a rare, copyleft-like license -ignorable_copyrights: - - Copyright (c) 1999-2001 Michael Stutz -ignorable_holders: - - Michael Stutz -ignorable_emails: - - stutz@dsl.org diff --git a/src/licensedcode/data/rules/other-copyleft_81.RULE b/src/licensedcode/data/rules/other-copyleft_81.RULE index 6b4b1c04db5..4872636bb2a 100644 --- a/src/licensedcode/data/rules/other-copyleft_81.RULE +++ b/src/licensedcode/data/rules/other-copyleft_81.RULE @@ -1,7 +1,14 @@ +--- +license_expression: other-copyleft +is_license_text: yes +notes: See https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/license.html some variant are + more permissive +--- + Permission to copy and modify this software, to redistribute either the original software or a modified version, and to use this software for any purpose is granted, subject to the following restrictions and understandings. Any copy made of this software must include this copyright notice in full. Users of this software agree to make their best efforts (a) to return to the MIT Scheme project any improvements or extensions that they make, so that these may be included in future releases; and (b) to inform MIT of noteworthy uses of this software. All materials developed as a consequence of the use of this software shall duly acknowledge such use, in accordance with the usual standards of acknowledging credit in academic research. MIT has made no warrantee or representation that the operation of this software will be error-free, and MIT is under no obligation to provide any services, by way of maintenance, update, or otherwise. - In conjunction with products arising from the use of this material, there shall be no use of the name of the Massachusetts Institute of Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. + In conjunction with products arising from the use of this material, there shall be no use of the name of the Massachusetts Institute of Technology nor of any adaptation thereof in any advertising, promotional, or sales literature without prior written consent from MIT in each case. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_81.yml b/src/licensedcode/data/rules/other-copyleft_81.yml deleted file mode 100644 index 09932e0822f..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_81.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -notes: See https://groups.csail.mit.edu/mac/ftpdir/scheme-7.4/license.html some variant are - more permissive diff --git a/src/licensedcode/data/rules/other-copyleft_9.RULE b/src/licensedcode/data/rules/other-copyleft_9.RULE index 73a14c980f0..af91a943045 100644 --- a/src/licensedcode/data/rules/other-copyleft_9.RULE +++ b/src/licensedcode/data/rules/other-copyleft_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-copyleft +is_license_text: yes +notes: See older versions of https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md + this is a copyleft license that requires to share changes back. The project now uses an + LGPL-3.0 instead +--- + Anyone may copy the project for their own personal, private use of any kind. Verbatim copies and compiled products may be distributed publicly as long as all attributions and this license are maintained. diff --git a/src/licensedcode/data/rules/other-copyleft_9.yml b/src/licensedcode/data/rules/other-copyleft_9.yml deleted file mode 100644 index 34bc453dbe5..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-copyleft -is_license_text: yes -notes: See older versions of https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md - this is a copyleft license that requires to share changes back. The project now uses an - LGPL-3.0 instead diff --git a/src/licensedcode/data/rules/other-copyleft_and_other-permissive_1.RULE b/src/licensedcode/data/rules/other-copyleft_and_other-permissive_1.RULE index 2eb86ff67d1..d4a9237deae 100644 --- a/src/licensedcode/data/rules/other-copyleft_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/other-copyleft_and_other-permissive_1.RULE @@ -1 +1,7 @@ +--- +license_expression: other-copyleft AND other-permissive +is_license_reference: yes +relevance: 100 +--- + GPL v2 compatible licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_and_other-permissive_1.yml b/src/licensedcode/data/rules/other-copyleft_and_other-permissive_1.yml deleted file mode 100644 index d48fa85705c..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft AND other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_and_public-domain_1.RULE b/src/licensedcode/data/rules/other-copyleft_and_public-domain_1.RULE index b57e1807b6b..8aecc4ae0e1 100644 --- a/src/licensedcode/data/rules/other-copyleft_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/other-copyleft_and_public-domain_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-copyleft AND public-domain +is_license_text: yes +relevance: 100 +--- + This work may be reproduced and distributed in whole or in part, in any medium, physical or electronic, so as long as this copyright notice remains intact and unchanged on all copies. Commercial diff --git a/src/licensedcode/data/rules/other-copyleft_and_public-domain_1.yml b/src/licensedcode/data/rules/other-copyleft_and_public-domain_1.yml deleted file mode 100644 index 1f11448794d..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_and_public-domain_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft AND public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_1.RULE b/src/licensedcode/data/rules/other-copyleft_fsf_address_1.RULE index 0ca1201f39a..88ffafd54f6 100644 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_1.RULE +++ b/src/licensedcode/data/rules/other-copyleft_fsf_address_1.RULE @@ -1 +1,7 @@ -Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 90 +--- + +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/other-copyleft_fsf_address_1.yml b/src/licensedcode/data/rules/other-copyleft_fsf_address_1.yml deleted file mode 100644 index 8511d82fb3d..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_2.RULE b/src/licensedcode/data/rules/other-copyleft_fsf_address_2.RULE index 996710cbbd4..0ac8842e88b 100644 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_2.RULE +++ b/src/licensedcode/data/rules/other-copyleft_fsf_address_2.RULE @@ -1 +1,7 @@ +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 90 +--- + Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_2.yml b/src/licensedcode/data/rules/other-copyleft_fsf_address_2.yml deleted file mode 100644 index 8511d82fb3d..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_3.RULE b/src/licensedcode/data/rules/other-copyleft_fsf_address_3.RULE index b858bacdc75..33a2ab45f10 100644 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_3.RULE +++ b/src/licensedcode/data/rules/other-copyleft_fsf_address_3.RULE @@ -1 +1,7 @@ -Free Software Foundation, Inc. 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 90 +--- + +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/other-copyleft_fsf_address_3.yml b/src/licensedcode/data/rules/other-copyleft_fsf_address_3.yml deleted file mode 100644 index 8511d82fb3d..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_4.RULE b/src/licensedcode/data/rules/other-copyleft_fsf_address_4.RULE index 5c34c221ab8..911d16c5ec3 100644 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_4.RULE +++ b/src/licensedcode/data/rules/other-copyleft_fsf_address_4.RULE @@ -1 +1,7 @@ +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 90 +--- + Free Software Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_4.yml b/src/licensedcode/data/rules/other-copyleft_fsf_address_4.yml deleted file mode 100644 index 8511d82fb3d..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_5.RULE b/src/licensedcode/data/rules/other-copyleft_fsf_address_5.RULE index 65b9719c3fc..35699190895 100644 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_5.RULE +++ b/src/licensedcode/data/rules/other-copyleft_fsf_address_5.RULE @@ -1 +1,7 @@ +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 90 +--- + Free Software Foundation, Inc., 675 Massachusetts Ave., Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_5.yml b/src/licensedcode/data/rules/other-copyleft_fsf_address_5.yml deleted file mode 100644 index 8511d82fb3d..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_6.RULE b/src/licensedcode/data/rules/other-copyleft_fsf_address_6.RULE index 6c4bcaacf4f..a1e34a53245 100644 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_6.RULE +++ b/src/licensedcode/data/rules/other-copyleft_fsf_address_6.RULE @@ -1 +1,7 @@ +--- +license_expression: other-copyleft +is_license_reference: yes +relevance: 90 +--- + Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_fsf_address_6.yml b/src/licensedcode/data/rules/other-copyleft_fsf_address_6.yml deleted file mode 100644 index 8511d82fb3d..00000000000 --- a/src/licensedcode/data/rules/other-copyleft_fsf_address_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-copyleft -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/other-permissive_0.RULE b/src/licensedcode/data/rules/other-permissive_0.RULE index a917959ab56..27eb8528a33 100644 --- a/src/licensedcode/data/rules/other-permissive_0.RULE +++ b/src/licensedcode/data/rules/other-permissive_0.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted to use, modify, and distribute this program for any purpose provided this copyright notice and the one below remain - intact. + intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_0.yml b/src/licensedcode/data/rules/other-permissive_0.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_1.RULE b/src/licensedcode/data/rules/other-permissive_1.RULE index c88ba300b62..4ee5f8bff26 100644 --- a/src/licensedcode/data/rules/other-permissive_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + This code is free to use, copy, modify, and redistribute. You can use it in any code to do anything you want, but there is no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_1.yml b/src/licensedcode/data/rules/other-permissive_1.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_10.RULE b/src/licensedcode/data/rules/other-permissive_10.RULE index ba2c5a79532..d6ebeca4964 100644 --- a/src/licensedcode/data/rules/other-permissive_10.RULE +++ b/src/licensedcode/data/rules/other-permissive_10.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +notes: an apache-2.0 license moified with an extra section 10 +--- + This project is made available under its own **Blueprint License**, based on Apache 2.0 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_10.yml b/src/licensedcode/data/rules/other-permissive_10.yml deleted file mode 100644 index 0f5c5db6fe8..00000000000 --- a/src/licensedcode/data/rules/other-permissive_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -notes: an apache-2.0 license moified with an extra section 10 diff --git a/src/licensedcode/data/rules/other-permissive_100.RULE b/src/licensedcode/data/rules/other-permissive_100.RULE index 485f39ec764..5149b10a54b 100644 --- a/src/licensedcode/data/rules/other-permissive_100.RULE +++ b/src/licensedcode/data/rules/other-permissive_100.RULE @@ -1,5 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * Freedom to use these sources for whatever you want, as long as credit * is given where credit is due, is hereby granted. You may make modifications * where you see fit but leave this copyright somewhere visible. As well try * to initial any changes you make so that if i like the changes i can - * incorporate them into any later versions of mine. + * incorporate them into any later versions of mine. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_100.yml b/src/licensedcode/data/rules/other-permissive_100.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_101.RULE b/src/licensedcode/data/rules/other-permissive_101.RULE index 7b0e71007e0..6b056c60a5f 100644 --- a/src/licensedcode/data/rules/other-permissive_101.RULE +++ b/src/licensedcode/data/rules/other-permissive_101.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * You may do anything with this, at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_101.yml b/src/licensedcode/data/rules/other-permissive_101.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_102.RULE b/src/licensedcode/data/rules/other-permissive_102.RULE index a1707fbc021..91c76d10fd7 100644 --- a/src/licensedcode/data/rules/other-permissive_102.RULE +++ b/src/licensedcode/data/rules/other-permissive_102.RULE @@ -1,4 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * This code is distributed without warranty. You are free to use this * code for any purpose, however, if this code is republished or * redistributed in its original form, as hardcopy or electronically, -* then you must include this copyright notice along with the code. +* then you must include this copyright notice along with the code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_102.yml b/src/licensedcode/data/rules/other-permissive_102.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_103.RULE b/src/licensedcode/data/rules/other-permissive_103.RULE index cee16ec80ba..d7420114313 100644 --- a/src/licensedcode/data/rules/other-permissive_103.RULE +++ b/src/licensedcode/data/rules/other-permissive_103.RULE @@ -1,5 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + % Copying of this file is authorized only if either % (1) you make absolutely no changes to your copy, including name, or % (2) if you do make changes, you name it something other than 'newapa.bst'. % There are undoubtably bugs in this style. If you make bug fixes, -% improvements, etc. please let me know. \ No newline at end of file +% improvements, etc. please let me know. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_103.yml b/src/licensedcode/data/rules/other-permissive_103.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_104.RULE b/src/licensedcode/data/rules/other-permissive_104.RULE index e87990bba4e..5dd5481d31f 100644 --- a/src/licensedcode/data/rules/other-permissive_104.RULE +++ b/src/licensedcode/data/rules/other-permissive_104.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * This source may be freely distributed, however I would be interested -* in any changes that are made. +* in any changes that are made. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_104.yml b/src/licensedcode/data/rules/other-permissive_104.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_105.RULE b/src/licensedcode/data/rules/other-permissive_105.RULE index f2ca19054f1..ed51ef8b09d 100644 --- a/src/licensedcode/data/rules/other-permissive_105.RULE +++ b/src/licensedcode/data/rules/other-permissive_105.RULE @@ -1,6 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + I retain copyright in this code but I encourage its free use provided that I don't carry any responsibility for the results. I am especially happy to see it used in free and open source software. If you do use it I would appreciate an acknowledgement of its origin in the code or the product that results and I would also appreciate knowing a liitle -about the use to which it is being put. +about the use to which it is being put. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_105.yml b/src/licensedcode/data/rules/other-permissive_105.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_106.RULE b/src/licensedcode/data/rules/other-permissive_106.RULE index c4063e72cd6..534300043ac 100644 --- a/src/licensedcode/data/rules/other-permissive_106.RULE +++ b/src/licensedcode/data/rules/other-permissive_106.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + /* This is completely free stuff, do whatever you want with */ /* it (but then, I will take no responsability for whatever */ -/* may happen if you do either... caveat emptor!). */ +/* may happen if you do either... caveat emptor!). */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_106.yml b/src/licensedcode/data/rules/other-permissive_106.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_107.RULE b/src/licensedcode/data/rules/other-permissive_107.RULE index 6383a599fe6..eee5b7a233d 100644 --- a/src/licensedcode/data/rules/other-permissive_107.RULE +++ b/src/licensedcode/data/rules/other-permissive_107.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * It may be used and distributed freely for any purposes. There is no * warranty - use at your own risk. I am not liable for any damages etc. -* If you improve it, please send me your changes. +* If you improve it, please send me your changes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_107.yml b/src/licensedcode/data/rules/other-permissive_107.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_108.RULE b/src/licensedcode/data/rules/other-permissive_108.RULE index 61837183702..8dcfe1ae49c 100644 --- a/src/licensedcode/data/rules/other-permissive_108.RULE +++ b/src/licensedcode/data/rules/other-permissive_108.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * This module may be freely used for any purpose, commercial or otherwise, * In any product that uses this module, the following notice must appear: \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_108.yml b/src/licensedcode/data/rules/other-permissive_108.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_109.RULE b/src/licensedcode/data/rules/other-permissive_109.RULE index b0e5989e0e5..8d304fbc059 100644 --- a/src/licensedcode/data/rules/other-permissive_109.RULE +++ b/src/licensedcode/data/rules/other-permissive_109.RULE @@ -1 +1,7 @@ +--- +license_expression: fsf-ap +is_license_tag: yes +relevance: 100 +--- + license AllPermissive \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_109.yml b/src/licensedcode/data/rules/other-permissive_109.yml deleted file mode 100644 index 8e0439a8715..00000000000 --- a/src/licensedcode/data/rules/other-permissive_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: fsf-ap -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_11.RULE b/src/licensedcode/data/rules/other-permissive_11.RULE index 8360bbf1854..866b014296f 100644 --- a/src/licensedcode/data/rules/other-permissive_11.RULE +++ b/src/licensedcode/data/rules/other-permissive_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: this is a rare license from https://raw.githubusercontent.com/thornjad/DWYW/master/LICENSE.txt +--- + DO WHATEVER YOU WANT License Version 0.94, October 2017 @@ -14,4 +20,4 @@ This program is free software. The software is provided "as is" without any warranty whatsoever, to the extent permitted by applicable law. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, wether in an action of contract, tort or otherwise, arising -from, out of or in connection with the software or the use of the software. +from, out of or in connection with the software or the use of the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_11.yml b/src/licensedcode/data/rules/other-permissive_11.yml deleted file mode 100644 index 6af9229b9a3..00000000000 --- a/src/licensedcode/data/rules/other-permissive_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: this is a rare license from https://raw.githubusercontent.com/thornjad/DWYW/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/other-permissive_110.RULE b/src/licensedcode/data/rules/other-permissive_110.RULE index 80e77dd1346..cb300773890 100644 --- a/src/licensedcode/data/rules/other-permissive_110.RULE +++ b/src/licensedcode/data/rules/other-permissive_110.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/nficano/pytube/blob/67e6144ecdabc66088c87ac79f4fc46c7cf01101/LICENSE + an mit-like license with some weird extra terms +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/other-permissive_110.yml b/src/licensedcode/data/rules/other-permissive_110.yml deleted file mode 100644 index 0aa5a684eb8..00000000000 --- a/src/licensedcode/data/rules/other-permissive_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/nficano/pytube/blob/67e6144ecdabc66088c87ac79f4fc46c7cf01101/LICENSE - an mit-like license with some weird extra terms diff --git a/src/licensedcode/data/rules/other-permissive_111.RULE b/src/licensedcode/data/rules/other-permissive_111.RULE index 3d6c83e357c..681fed35a06 100644 --- a/src/licensedcode/data/rules/other-permissive_111.RULE +++ b/src/licensedcode/data/rules/other-permissive_111.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This software is provided free of charge and may be freely copied, modified, and diff --git a/src/licensedcode/data/rules/other-permissive_111.yml b/src/licensedcode/data/rules/other-permissive_111.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_112.RULE b/src/licensedcode/data/rules/other-permissive_112.RULE index 64753a09a02..08ed1875257 100644 --- a/src/licensedcode/data/rules/other-permissive_112.RULE +++ b/src/licensedcode/data/rules/other-permissive_112.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: a rare bsd-like making extensive references to the documentation with a sudden death + condition +--- + The copyright holders hereby grant to any person obtaining a copy of this software (the "Software") and/or its associated documentation files (the Documentation), the perpetual, irrevocable (except in the case of breach of this license) no-cost, royalty free, sublicensable rights to use, copy, modify, merge, publish, display, publicly perform, distribute, and/or sell copies of the Software and the Documentation, together or separately, and to permit persons to whom the Software and/or Documentation is furnished to do so, subject to the following conditions: . Redistributions of the Software in source code must retain the above copyright notice, this list of conditions and the following disclaimers. diff --git a/src/licensedcode/data/rules/other-permissive_112.yml b/src/licensedcode/data/rules/other-permissive_112.yml deleted file mode 100644 index 2d0079b366b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: a rare bsd-like making extensive references to the documentation with a sudden death - condition diff --git a/src/licensedcode/data/rules/other-permissive_113.RULE b/src/licensedcode/data/rules/other-permissive_113.RULE index a394b8dd524..23a5a01a3ef 100644 --- a/src/licensedcode/data/rules/other-permissive_113.RULE +++ b/src/licensedcode/data/rules/other-permissive_113.RULE @@ -1,3 +1,13 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: http://www.globus.org/toolkit/license.html +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - http://www.globus.org/toolkit/license.html +--- + Globus Toolkit Public License (GTPL) Version 3 Globus(R) Toolkit Public License @@ -212,5 +222,4 @@ Globus Toolkit Public License (GTPL) Version 3 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. - + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_113.yml b/src/licensedcode/data/rules/other-permissive_113.yml deleted file mode 100644 index 69e9953adaf..00000000000 --- a/src/licensedcode/data/rules/other-permissive_113.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: http://www.globus.org/toolkit/license.html -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - http://www.globus.org/toolkit/license.html diff --git a/src/licensedcode/data/rules/other-permissive_114.RULE b/src/licensedcode/data/rules/other-permissive_114.RULE index c7813225471..db9708b4f92 100644 --- a/src/licensedcode/data/rules/other-permissive_114.RULE +++ b/src/licensedcode/data/rules/other-permissive_114.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: See http://github.com/Percona/PerconaFT/blob/master/PATENTS +--- + UNIVERSITY PATENT NOTICE: The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research diff --git a/src/licensedcode/data/rules/other-permissive_114.yml b/src/licensedcode/data/rules/other-permissive_114.yml deleted file mode 100644 index e7df7a7b34d..00000000000 --- a/src/licensedcode/data/rules/other-permissive_114.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: See http://github.com/Percona/PerconaFT/blob/master/PATENTS diff --git a/src/licensedcode/data/rules/other-permissive_115.RULE b/src/licensedcode/data/rules/other-permissive_115.RULE index 8dd454a58c7..537b88ffd69 100644 --- a/src/licensedcode/data/rules/other-permissive_115.RULE +++ b/src/licensedcode/data/rules/other-permissive_115.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + grants reproduction and use rights to * all parties, PROVIDED that this comment is maintained in the copy. * diff --git a/src/licensedcode/data/rules/other-permissive_115.yml b/src/licensedcode/data/rules/other-permissive_115.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_116.RULE b/src/licensedcode/data/rules/other-permissive_116.RULE index 4305a8a906b..356fc4f327f 100644 --- a/src/licensedcode/data/rules/other-permissive_116.RULE +++ b/src/licensedcode/data/rules/other-permissive_116.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + grants reproduction and use | * | rights to all parties, PROVIDED that this comment is | - * | maintained in the copy. \ No newline at end of file + * | maintained in the copy. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_116.yml b/src/licensedcode/data/rules/other-permissive_116.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_117.RULE b/src/licensedcode/data/rules/other-permissive_117.RULE index 51cd43c9621..2890802d5d1 100644 --- a/src/licensedcode/data/rules/other-permissive_117.RULE +++ b/src/licensedcode/data/rules/other-permissive_117.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + The code is provided "as is", with the permission to use, copy, modify, distribute and sell it for any purpose without fee. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_117.yml b/src/licensedcode/data/rules/other-permissive_117.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_118.RULE b/src/licensedcode/data/rules/other-permissive_118.RULE index 1d1e0b224fd..3140070c3c0 100644 --- a/src/licensedcode/data/rules/other-permissive_118.RULE +++ b/src/licensedcode/data/rules/other-permissive_118.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Sure, No problem. Don't worry, be happy. Now bugger off. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_118.yml b/src/licensedcode/data/rules/other-permissive_118.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_119.RULE b/src/licensedcode/data/rules/other-permissive_119.RULE index d73cb054369..61f4783ce02 100644 --- a/src/licensedcode/data/rules/other-permissive_119.RULE +++ b/src/licensedcode/data/rules/other-permissive_119.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: found in old Scheme libraries +--- + ;;; ;;; Permission to copy this software, in whole or in part, to use this ;;; software for any lawful purpose, and to redistribute this software @@ -7,4 +14,4 @@ ;;; INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY ;;; OR FITNESS FOR ANY PARTICULAR PURPOSE. IN NO EVENT SHALL THE ;;; AUTHORS BE LIABLE FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES OF ANY -;;; NATURE WHATSOEVER. +;;; NATURE WHATSOEVER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_119.yml b/src/licensedcode/data/rules/other-permissive_119.yml deleted file mode 100644 index f261e5b1f8b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_119.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: found in old Scheme libraries diff --git a/src/licensedcode/data/rules/other-permissive_12.RULE b/src/licensedcode/data/rules/other-permissive_12.RULE index 23f90a666a1..f9bcaa088c0 100644 --- a/src/licensedcode/data/rules/other-permissive_12.RULE +++ b/src/licensedcode/data/rules/other-permissive_12.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This is free software. You can modify and use it at will. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_12.yml b/src/licensedcode/data/rules/other-permissive_12.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_120.RULE b/src/licensedcode/data/rules/other-permissive_120.RULE index b3eae76219c..aa7bbe63883 100644 --- a/src/licensedcode/data/rules/other-permissive_120.RULE +++ b/src/licensedcode/data/rules/other-permissive_120.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: a permissive variant of the MIT Scheme licensing +--- + ;Permission to copy this software, to modify it, to redistribute it, ;to distribute modified versions, and to use it for any purpose is ;granted, subject to the following restrictions and understandings. @@ -12,4 +19,4 @@ ;3. In conjunction with products arising from the use of this ;material, there shall be no use of my name in any advertising, ;promotional, or sales literature without prior written consent in -;each case. +;each case. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_120.yml b/src/licensedcode/data/rules/other-permissive_120.yml deleted file mode 100644 index 61155100750..00000000000 --- a/src/licensedcode/data/rules/other-permissive_120.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: a permissive variant of the MIT Scheme licensing diff --git a/src/licensedcode/data/rules/other-permissive_121.RULE b/src/licensedcode/data/rules/other-permissive_121.RULE index 4a6f7128e0a..c2001e6be5e 100644 --- a/src/licensedcode/data/rules/other-permissive_121.RULE +++ b/src/licensedcode/data/rules/other-permissive_121.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + ;Permission to copy this dictionary, to modify it, to redistribute it, ;to distribute modified versions, and to use it for any purpose is ;granted, subject to the following restrictions and understandings. @@ -11,4 +17,4 @@ ; ;3. In conjunction with products arising from the use of this material, ;there shall be no use of my name in any advertising, promotional, or -;sales literature without prior written consent in each case. +;sales literature without prior written consent in each case. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_121.yml b/src/licensedcode/data/rules/other-permissive_121.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_122.RULE b/src/licensedcode/data/rules/other-permissive_122.RULE index 5e86b24832f..e5a42e2b0fc 100644 --- a/src/licensedcode/data/rules/other-permissive_122.RULE +++ b/src/licensedcode/data/rules/other-permissive_122.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + licensed under extremely permissive terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_122.yml b/src/licensedcode/data/rules/other-permissive_122.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_123.RULE b/src/licensedcode/data/rules/other-permissive_123.RULE index 33bff98920e..eccc9793096 100644 --- a/src/licensedcode/data/rules/other-permissive_123.RULE +++ b/src/licensedcode/data/rules/other-permissive_123.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + ;Permission to copy this software, to redistribute it, and to use it ;for any purpose is granted, subject to the following restrictions and ;understandings. diff --git a/src/licensedcode/data/rules/other-permissive_123.yml b/src/licensedcode/data/rules/other-permissive_123.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_124.RULE b/src/licensedcode/data/rules/other-permissive_124.RULE index aa187d5e871..cf2bcfc2272 100644 --- a/src/licensedcode/data/rules/other-permissive_124.RULE +++ b/src/licensedcode/data/rules/other-permissive_124.RULE @@ -1 +1,7 @@ -; You may freely copy, redistribute and modify this package. +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + +; You may freely copy, redistribute and modify this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_124.yml b/src/licensedcode/data/rules/other-permissive_124.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_125.RULE b/src/licensedcode/data/rules/other-permissive_125.RULE index bd682b62c6d..ba9d3e7c70d 100644 --- a/src/licensedcode/data/rules/other-permissive_125.RULE +++ b/src/licensedcode/data/rules/other-permissive_125.RULE @@ -1,5 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + Permission to reproduce this document, in whole or in part, is given provided the original web site listed below is referenced, and no additional restrictions apply. Source code, when part of a software project, may be used freely without reference to the - author. + author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_125.yml b/src/licensedcode/data/rules/other-permissive_125.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_126.RULE b/src/licensedcode/data/rules/other-permissive_126.RULE index ed31463c1fd..5abd54df34e 100644 --- a/src/licensedcode/data/rules/other-permissive_126.RULE +++ b/src/licensedcode/data/rules/other-permissive_126.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + % Unlimited copying and redistribution of this file are permitted as long as % it is unmodified. Modifications (and redistribution of modified versions) % are also permitted, but only if the resulting file is renamed to something diff --git a/src/licensedcode/data/rules/other-permissive_126.yml b/src/licensedcode/data/rules/other-permissive_126.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_127.RULE b/src/licensedcode/data/rules/other-permissive_127.RULE index bc15cd478c0..9b083440cbb 100644 --- a/src/licensedcode/data/rules/other-permissive_127.RULE +++ b/src/licensedcode/data/rules/other-permissive_127.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + COMMENT Adobe is a registered trademark of Adobe Systems, Inc. Permission COMMENT to use these trademarks is hereby granted only in association with the -COMMENT images described in this file. +COMMENT images described in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_127.yml b/src/licensedcode/data/rules/other-permissive_127.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_128.RULE b/src/licensedcode/data/rules/other-permissive_128.RULE index cd8d9633d23..bc79ddda3ea 100644 --- a/src/licensedcode/data/rules/other-permissive_128.RULE +++ b/src/licensedcode/data/rules/other-permissive_128.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + # I hereby give you perpetual unlimited permission to copy, # modify and relicense this file, provided that you do not remove # my name from the file itself. (I assert my moral right of diff --git a/src/licensedcode/data/rules/other-permissive_128.yml b/src/licensedcode/data/rules/other-permissive_128.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_129.RULE b/src/licensedcode/data/rules/other-permissive_129.RULE index 02c28c61ac5..baeefcebf25 100644 --- a/src/licensedcode/data/rules/other-permissive_129.RULE +++ b/src/licensedcode/data/rules/other-permissive_129.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + # I hereby give you perpetual unlimited permission to copy, # modify and relicense this file, provided that you do not remove # my name from the file itself. (I assert my moral right of diff --git a/src/licensedcode/data/rules/other-permissive_129.yml b/src/licensedcode/data/rules/other-permissive_129.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_129.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_13.RULE b/src/licensedcode/data/rules/other-permissive_13.RULE index 2b109454e90..6ff45010440 100644 --- a/src/licensedcode/data/rules/other-permissive_13.RULE +++ b/src/licensedcode/data/rules/other-permissive_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 99 +notes: damaged text +--- + License: other Permission to use, copy, moNumbererdify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/other-permissive_13.yml b/src/licensedcode/data/rules/other-permissive_13.yml deleted file mode 100644 index 65b5eee40ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 99 -notes: damaged text diff --git a/src/licensedcode/data/rules/other-permissive_130.RULE b/src/licensedcode/data/rules/other-permissive_130.RULE index e8530d6cfbb..5a26fcc1283 100644 --- a/src/licensedcode/data/rules/other-permissive_130.RULE +++ b/src/licensedcode/data/rules/other-permissive_130.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Verbatim copying and distribution of this entire article are permitted worldwide, without royalty, in any medium, provided this notice is preserved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_130.yml b/src/licensedcode/data/rules/other-permissive_130.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_131.RULE b/src/licensedcode/data/rules/other-permissive_131.RULE index c3a67aaec1f..f1947fe2e6b 100644 --- a/src/licensedcode/data/rules/other-permissive_131.RULE +++ b/src/licensedcode/data/rules/other-permissive_131.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: This is really a wariant on the apple-attribution whee Apple is replaced by "i". +--- + * Warranty Information * Even though I have reviewed this software, I makes no warranty * or representation, either express or implied, with respect to this diff --git a/src/licensedcode/data/rules/other-permissive_131.yml b/src/licensedcode/data/rules/other-permissive_131.yml deleted file mode 100644 index 9efa3fc20a7..00000000000 --- a/src/licensedcode/data/rules/other-permissive_131.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: This is really a wariant on the apple-attribution whee Apple is replaced by "i". diff --git a/src/licensedcode/data/rules/other-permissive_132.RULE b/src/licensedcode/data/rules/other-permissive_132.RULE index 15c3653d127..0228f34554e 100644 --- a/src/licensedcode/data/rules/other-permissive_132.RULE +++ b/src/licensedcode/data/rules/other-permissive_132.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Below is the original copyright //THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR //IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/licensedcode/data/rules/other-permissive_132.yml b/src/licensedcode/data/rules/other-permissive_132.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_133.RULE b/src/licensedcode/data/rules/other-permissive_133.RULE index eea00fe5644..9eccb48a0b3 100644 --- a/src/licensedcode/data/rules/other-permissive_133.RULE +++ b/src/licensedcode/data/rules/other-permissive_133.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + //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 diff --git a/src/licensedcode/data/rules/other-permissive_133.yml b/src/licensedcode/data/rules/other-permissive_133.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_134.RULE b/src/licensedcode/data/rules/other-permissive_134.RULE index 52d1f60c919..7fbca051c30 100644 --- a/src/licensedcode/data/rules/other-permissive_134.RULE +++ b/src/licensedcode/data/rules/other-permissive_134.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + //Do whatever you want with this code but if you find //a bug or make an improvement I would love to know! // diff --git a/src/licensedcode/data/rules/other-permissive_134.yml b/src/licensedcode/data/rules/other-permissive_134.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_135.RULE b/src/licensedcode/data/rules/other-permissive_135.RULE index 6a32a70f0b5..34659c06c91 100644 --- a/src/licensedcode/data/rules/other-permissive_135.RULE +++ b/src/licensedcode/data/rules/other-permissive_135.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is granted to copy, modify and/or distribute this work and/or license, without conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_135.yml b/src/licensedcode/data/rules/other-permissive_135.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_136.RULE b/src/licensedcode/data/rules/other-permissive_136.RULE index d5b43772417..0b65ba18387 100644 --- a/src/licensedcode/data/rules/other-permissive_136.RULE +++ b/src/licensedcode/data/rules/other-permissive_136.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: this is very close to the fsf-ap without the disclaimer +--- + License: permissive Copying and distribution of this package, with or without modification, are permitted in any medium without royalty diff --git a/src/licensedcode/data/rules/other-permissive_136.yml b/src/licensedcode/data/rules/other-permissive_136.yml deleted file mode 100644 index 9baadbe15a3..00000000000 --- a/src/licensedcode/data/rules/other-permissive_136.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: this is very close to the fsf-ap without the disclaimer diff --git a/src/licensedcode/data/rules/other-permissive_137.RULE b/src/licensedcode/data/rules/other-permissive_137.RULE index c456a252352..2478ee813d3 100644 --- a/src/licensedcode/data/rules/other-permissive_137.RULE +++ b/src/licensedcode/data/rules/other-permissive_137.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: this is very close to the fsf-ap without the disclaimer +--- + Copying and distribution of this package, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are diff --git a/src/licensedcode/data/rules/other-permissive_137.yml b/src/licensedcode/data/rules/other-permissive_137.yml deleted file mode 100644 index 9baadbe15a3..00000000000 --- a/src/licensedcode/data/rules/other-permissive_137.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: this is very close to the fsf-ap without the disclaimer diff --git a/src/licensedcode/data/rules/other-permissive_138.RULE b/src/licensedcode/data/rules/other-permissive_138.RULE index d733903adf3..39bc4b79b15 100644 --- a/src/licensedcode/data/rules/other-permissive_138.RULE +++ b/src/licensedcode/data/rules/other-permissive_138.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_tag: yes +relevance: 100 +--- + License: permissive \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_138.yml b/src/licensedcode/data/rules/other-permissive_138.yml deleted file mode 100644 index 4129c3c9d82..00000000000 --- a/src/licensedcode/data/rules/other-permissive_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_139.RULE b/src/licensedcode/data/rules/other-permissive_139.RULE index d34c069d939..b955f9b68ea 100644 --- a/src/licensedcode/data/rules/other-permissive_139.RULE +++ b/src/licensedcode/data/rules/other-permissive_139.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: this is very close the cmu-uc except for the missing non-endorsement clause. See in pyproj-1.9.5.1 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both the copyright diff --git a/src/licensedcode/data/rules/other-permissive_139.yml b/src/licensedcode/data/rules/other-permissive_139.yml deleted file mode 100644 index 3475cebae95..00000000000 --- a/src/licensedcode/data/rules/other-permissive_139.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: this is very close the cmu-uc except for the missing non-endorsement clause. See in pyproj-1.9.5.1 diff --git a/src/licensedcode/data/rules/other-permissive_14.RULE b/src/licensedcode/data/rules/other-permissive_14.RULE index f33bbc46f81..8a54bd7bca1 100644 --- a/src/licensedcode/data/rules/other-permissive_14.RULE +++ b/src/licensedcode/data/rules/other-permissive_14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 99 +notes: damaged text +--- + Permission to use, copy, moNumbererdify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. diff --git a/src/licensedcode/data/rules/other-permissive_14.yml b/src/licensedcode/data/rules/other-permissive_14.yml deleted file mode 100644 index 65b5eee40ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 99 -notes: damaged text diff --git a/src/licensedcode/data/rules/other-permissive_140.RULE b/src/licensedcode/data/rules/other-permissive_140.RULE index 05fd526acab..ae86e64b993 100644 --- a/src/licensedcode/data/rules/other-permissive_140.RULE +++ b/src/licensedcode/data/rules/other-permissive_140.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + The following license covers and all associated test data. Permission is hereby granted, free of charge, to any person obtaining a diff --git a/src/licensedcode/data/rules/other-permissive_140.yml b/src/licensedcode/data/rules/other-permissive_140.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_141.RULE b/src/licensedcode/data/rules/other-permissive_141.RULE index 13a12958cd6..22b401408c2 100644 --- a/src/licensedcode/data/rules/other-permissive_141.RULE +++ b/src/licensedcode/data/rules/other-permissive_141.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of THIS SOFTWARE FILE (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, diff --git a/src/licensedcode/data/rules/other-permissive_141.yml b/src/licensedcode/data/rules/other-permissive_141.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_142.RULE b/src/licensedcode/data/rules/other-permissive_142.RULE index 4807292e4f2..c5647bced4a 100644 --- a/src/licensedcode/data/rules/other-permissive_142.RULE +++ b/src/licensedcode/data/rules/other-permissive_142.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose is hereby granted without fee, provided that this copyright and notice appears in all copies. diff --git a/src/licensedcode/data/rules/other-permissive_142.yml b/src/licensedcode/data/rules/other-permissive_142.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_143.RULE b/src/licensedcode/data/rules/other-permissive_143.RULE index 97a1d26eb83..802808e35f0 100644 --- a/src/licensedcode/data/rules/other-permissive_143.RULE +++ b/src/licensedcode/data/rules/other-permissive_143.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in GNU CPIO docs +--- + Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the copyright notice and this permission notice are preserved, diff --git a/src/licensedcode/data/rules/other-permissive_143.yml b/src/licensedcode/data/rules/other-permissive_143.yml deleted file mode 100644 index 594d06ad84e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_143.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in GNU CPIO docs diff --git a/src/licensedcode/data/rules/other-permissive_144.RULE b/src/licensedcode/data/rules/other-permissive_144.RULE index e0c273b8407..dd6a27dcb4c 100644 --- a/src/licensedcode/data/rules/other-permissive_144.RULE +++ b/src/licensedcode/data/rules/other-permissive_144.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/other-permissive_144.yml b/src/licensedcode/data/rules/other-permissive_144.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_145.RULE b/src/licensedcode/data/rules/other-permissive_145.RULE index b948046d1d9..a4d64da8cfc 100644 --- a/src/licensedcode/data/rules/other-permissive_145.RULE +++ b/src/licensedcode/data/rules/other-permissive_145.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Feel free to copy, use and distribute this software provided: 1. you do not pretend that you wrote it diff --git a/src/licensedcode/data/rules/other-permissive_145.yml b/src/licensedcode/data/rules/other-permissive_145.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_146.RULE b/src/licensedcode/data/rules/other-permissive_146.RULE index 3064f2646e6..bf9b25d5772 100644 --- a/src/licensedcode/data/rules/other-permissive_146.RULE +++ b/src/licensedcode/data/rules/other-permissive_146.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_146.yml b/src/licensedcode/data/rules/other-permissive_146.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_147.RULE b/src/licensedcode/data/rules/other-permissive_147.RULE index a166483568c..e5cc67e6313 100644 --- a/src/licensedcode/data/rules/other-permissive_147.RULE +++ b/src/licensedcode/data/rules/other-permissive_147.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This file is provided for unrestricted use provided that this legend is included on all tape media and as a part of the software program in whole or part. Users may copy, modify or distribute this file at will. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_147.yml b/src/licensedcode/data/rules/other-permissive_147.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_148.RULE b/src/licensedcode/data/rules/other-permissive_148.RULE index 039df1aa144..4c62e33a59c 100644 --- a/src/licensedcode/data/rules/other-permissive_148.RULE +++ b/src/licensedcode/data/rules/other-permissive_148.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + All the examples in the 'examples' subdirectory may be freely copied, modified and distributed without any restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_148.yml b/src/licensedcode/data/rules/other-permissive_148.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_149.RULE b/src/licensedcode/data/rules/other-permissive_149.RULE index 418de865569..bed6ca0cb83 100644 --- a/src/licensedcode/data/rules/other-permissive_149.RULE +++ b/src/licensedcode/data/rules/other-permissive_149.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 80 +minimum_coverage: 99 +notes: some truncated part of a license seens in some older Debian copyright +--- + Except as contained in this notice, the name of Daniel Veillard shall not be used in advertising or otherwise to promote the sale, use or other deal- ings in this Software without prior written authorization from him. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_149.yml b/src/licensedcode/data/rules/other-permissive_149.yml deleted file mode 100644 index 272f854d4a0..00000000000 --- a/src/licensedcode/data/rules/other-permissive_149.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 80 -minimum_coverage: 99 -notes: some truncated part of a license seens in some older Debian copyright diff --git a/src/licensedcode/data/rules/other-permissive_15.RULE b/src/licensedcode/data/rules/other-permissive_15.RULE index 88be89e4083..3870b3cbc08 100644 --- a/src/licensedcode/data/rules/other-permissive_15.RULE +++ b/src/licensedcode/data/rules/other-permissive_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: this looks a tad like a bsd-simplified and has other terms. Seen in OpenSSL +--- + * Redistribution and use in source and binary forms, with opr without * modification, are permitted provided that the following conditions * are met: @@ -50,4 +56,4 @@ * not covered by the licence described above. You should have * received a separate licence with terms and conditions for these * library files; if you received the library files without a licence, - * please contact nCipher. + * please contact nCipher. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_15.yml b/src/licensedcode/data/rules/other-permissive_15.yml deleted file mode 100644 index 55fe8b90fa0..00000000000 --- a/src/licensedcode/data/rules/other-permissive_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: this looks a tad like a bsd-simplified and has other terms. Seen in OpenSSL diff --git a/src/licensedcode/data/rules/other-permissive_150.RULE b/src/licensedcode/data/rules/other-permissive_150.RULE index 3ac42c02f18..fe1550fc974 100644 --- a/src/licensedcode/data/rules/other-permissive_150.RULE +++ b/src/licensedcode/data/rules/other-permissive_150.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This software may be used, modified, copied, distributed, and sold, in both source and binary form provided that the copyright and these terms are retained. Under no circumstances is the author diff --git a/src/licensedcode/data/rules/other-permissive_150.yml b/src/licensedcode/data/rules/other-permissive_150.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_151.RULE b/src/licensedcode/data/rules/other-permissive_151.RULE index f7749b971ac..5e3329535d8 100644 --- a/src/licensedcode/data/rules/other-permissive_151.RULE +++ b/src/licensedcode/data/rules/other-permissive_151.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + I don't like licenses, because I don't like having to worry about all this legal stuff just for a simple piece of software I don't really mind anyone using. But I also believe that it's important that people share and give back; diff --git a/src/licensedcode/data/rules/other-permissive_151.yml b/src/licensedcode/data/rules/other-permissive_151.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_152.RULE b/src/licensedcode/data/rules/other-permissive_152.RULE index cdfd601afea..52b5a9de180 100644 --- a/src/licensedcode/data/rules/other-permissive_152.RULE +++ b/src/licensedcode/data/rules/other-permissive_152.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + BOLA - Buena Onda License Agreement (v1.1) This work is provided 'as-is', without any express or implied warranty. In no diff --git a/src/licensedcode/data/rules/other-permissive_152.yml b/src/licensedcode/data/rules/other-permissive_152.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_153.RULE b/src/licensedcode/data/rules/other-permissive_153.RULE index cdec3261214..dc8cddda48f 100644 --- a/src/licensedcode/data/rules/other-permissive_153.RULE +++ b/src/licensedcode/data/rules/other-permissive_153.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + BOLA - Buena Onda License Agreement This work is provided 'as-is', without any express or implied warranty. In no diff --git a/src/licensedcode/data/rules/other-permissive_153.yml b/src/licensedcode/data/rules/other-permissive_153.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_154.RULE b/src/licensedcode/data/rules/other-permissive_154.RULE index e45a38046f6..87307d583cd 100644 --- a/src/licensedcode/data/rules/other-permissive_154.RULE +++ b/src/licensedcode/data/rules/other-permissive_154.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: A subset of the latex2e license +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_154.yml b/src/licensedcode/data/rules/other-permissive_154.yml deleted file mode 100644 index de6516df770..00000000000 --- a/src/licensedcode/data/rules/other-permissive_154.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: A subset of the latex2e license diff --git a/src/licensedcode/data/rules/other-permissive_155.RULE b/src/licensedcode/data/rules/other-permissive_155.RULE index bda6468d309..10afff0b033 100644 --- a/src/licensedcode/data/rules/other-permissive_155.RULE +++ b/src/licensedcode/data/rules/other-permissive_155.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that this copyright notice is preserved, and that the diff --git a/src/licensedcode/data/rules/other-permissive_155.yml b/src/licensedcode/data/rules/other-permissive_155.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_156.RULE b/src/licensedcode/data/rules/other-permissive_156.RULE index 927f7e046d0..059e823dc5b 100644 --- a/src/licensedcode/data/rules/other-permissive_156.RULE +++ b/src/licensedcode/data/rules/other-permissive_156.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + As an exception to this license, all html or css that is generated by the software at the direction of the user is copyright the user. The user has full ownership and control over such content, including diff --git a/src/licensedcode/data/rules/other-permissive_156.yml b/src/licensedcode/data/rules/other-permissive_156.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_157.RULE b/src/licensedcode/data/rules/other-permissive_157.RULE index 062cd412e03..0dd1819bd48 100644 --- a/src/licensedcode/data/rules/other-permissive_157.RULE +++ b/src/licensedcode/data/rules/other-permissive_157.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + Freely distributable with preserved copyright notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_157.yml b/src/licensedcode/data/rules/other-permissive_157.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_158.RULE b/src/licensedcode/data/rules/other-permissive_158.RULE index 50a305074cf..218fcfd72c2 100644 --- a/src/licensedcode/data/rules/other-permissive_158.RULE +++ b/src/licensedcode/data/rules/other-permissive_158.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +--- + BSD-compatible licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_158.yml b/src/licensedcode/data/rules/other-permissive_158.yml deleted file mode 100644 index 725799270b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_159.RULE b/src/licensedcode/data/rules/other-permissive_159.RULE index c754f021c7e..3cffdeea5c8 100644 --- a/src/licensedcode/data/rules/other-permissive_159.RULE +++ b/src/licensedcode/data/rules/other-permissive_159.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +--- + BSD-STYLE, MIT-STYLE, OR SIMILAR STYLE LICENSES \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_159.yml b/src/licensedcode/data/rules/other-permissive_159.yml deleted file mode 100644 index 725799270b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_16.RULE b/src/licensedcode/data/rules/other-permissive_16.RULE index 96a0aae4036..743909aeab6 100644 --- a/src/licensedcode/data/rules/other-permissive_16.RULE +++ b/src/licensedcode/data/rules/other-permissive_16.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +--- + BSD-like \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_16.yml b/src/licensedcode/data/rules/other-permissive_16.yml deleted file mode 100644 index 725799270b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_160.RULE b/src/licensedcode/data/rules/other-permissive_160.RULE index 0fb9b27f85b..7d05ca33559 100644 --- a/src/licensedcode/data/rules/other-permissive_160.RULE +++ b/src/licensedcode/data/rules/other-permissive_160.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + may be freely used and/or redistributed by third parties (e.g. students, educators, school districts, museums, publishers, vendors, etc.). Non-commercial or diff --git a/src/licensedcode/data/rules/other-permissive_160.yml b/src/licensedcode/data/rules/other-permissive_160.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_161.RULE b/src/licensedcode/data/rules/other-permissive_161.RULE index 4ddb4ca4305..14c068cf021 100644 --- a/src/licensedcode/data/rules/other-permissive_161.RULE +++ b/src/licensedcode/data/rules/other-permissive_161.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain for use by anyone for anything. We ask that if you make use of this code that you acknowledge us as authors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_161.yml b/src/licensedcode/data/rules/other-permissive_161.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_162.RULE b/src/licensedcode/data/rules/other-permissive_162.RULE index 50ba0801eeb..d0af7b56a95 100644 --- a/src/licensedcode/data/rules/other-permissive_162.RULE +++ b/src/licensedcode/data/rules/other-permissive_162.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Use of this code is placed in the public domain as long as the * copyright notice is retained \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_162.yml b/src/licensedcode/data/rules/other-permissive_162.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_163.RULE b/src/licensedcode/data/rules/other-permissive_163.RULE index 93826803e09..683e2af5286 100644 --- a/src/licensedcode/data/rules/other-permissive_163.RULE +++ b/src/licensedcode/data/rules/other-permissive_163.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain. I do ask that you keep my name associated with it, that you not represent it as written by you, and that you preserve these comments. diff --git a/src/licensedcode/data/rules/other-permissive_163.yml b/src/licensedcode/data/rules/other-permissive_163.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_164.RULE b/src/licensedcode/data/rules/other-permissive_164.RULE index 1b65b327755..e42bcd5ebdf 100644 --- a/src/licensedcode/data/rules/other-permissive_164.RULE +++ b/src/licensedcode/data/rules/other-permissive_164.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 99 +--- + I am not aware of any copyright problem with * them, so use it as you want. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_164.yml b/src/licensedcode/data/rules/other-permissive_164.yml deleted file mode 100644 index b75a9892837..00000000000 --- a/src/licensedcode/data/rules/other-permissive_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/other-permissive_165.RULE b/src/licensedcode/data/rules/other-permissive_165.RULE index 5961aaf895d..bdaa038dd65 100644 --- a/src/licensedcode/data/rules/other-permissive_165.RULE +++ b/src/licensedcode/data/rules/other-permissive_165.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Linux logo at https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/Documentation/COPYING-logo +--- + and is freely usable as long as you acknowledge Larry as the original artist. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_165.yml b/src/licensedcode/data/rules/other-permissive_165.yml deleted file mode 100644 index bac25bf3fee..00000000000 --- a/src/licensedcode/data/rules/other-permissive_165.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Linux logo at https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/Documentation/COPYING-logo diff --git a/src/licensedcode/data/rules/other-permissive_166.RULE b/src/licensedcode/data/rules/other-permissive_166.RULE index 6fb780779fc..48cb0eab6d2 100644 --- a/src/licensedcode/data/rules/other-permissive_166.RULE +++ b/src/licensedcode/data/rules/other-permissive_166.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_166.yml b/src/licensedcode/data/rules/other-permissive_166.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_167.RULE b/src/licensedcode/data/rules/other-permissive_167.RULE index d80b0d843d7..2b08a964eeb 100644 --- a/src/licensedcode/data/rules/other-permissive_167.RULE +++ b/src/licensedcode/data/rules/other-permissive_167.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + Disclaimer Notice: This file is provided as is with no warranties of any kind and is provided without any obligation on to assist in diff --git a/src/licensedcode/data/rules/other-permissive_167.yml b/src/licensedcode/data/rules/other-permissive_167.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_168.RULE b/src/licensedcode/data/rules/other-permissive_168.RULE index 015accbf647..dc63cbdc32b 100644 --- a/src/licensedcode/data/rules/other-permissive_168.RULE +++ b/src/licensedcode/data/rules/other-permissive_168.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +notes: Modeled after zlib +--- + This is provided 'as-is', without any express or implied warranty. In no event will the author be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/other-permissive_168.yml b/src/licensedcode/data/rules/other-permissive_168.yml deleted file mode 100644 index acaea37e6ae..00000000000 --- a/src/licensedcode/data/rules/other-permissive_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -notes: Modeled after zlib diff --git a/src/licensedcode/data/rules/other-permissive_169.RULE b/src/licensedcode/data/rules/other-permissive_169.RULE index 6135f8af4f5..e92b3676123 100644 --- a/src/licensedcode/data/rules/other-permissive_169.RULE +++ b/src/licensedcode/data/rules/other-permissive_169.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: Seen in https://github.com/theonion/comcastifyjs/blob/369b5a36306c577ab6fce0789286e06a79c5d3e5/LICENSE + An MIT license where TORT is replaced by FART. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/other-permissive_169.yml b/src/licensedcode/data/rules/other-permissive_169.yml deleted file mode 100644 index 93eb9cdad42..00000000000 --- a/src/licensedcode/data/rules/other-permissive_169.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: Seen in https://github.com/theonion/comcastifyjs/blob/369b5a36306c577ab6fce0789286e06a79c5d3e5/LICENSE - An MIT license where TORT is replaced by FART. diff --git a/src/licensedcode/data/rules/other-permissive_17.RULE b/src/licensedcode/data/rules/other-permissive_17.RULE index 9cf55b7fa32..43988282fa3 100644 --- a/src/licensedcode/data/rules/other-permissive_17.RULE +++ b/src/licensedcode/data/rules/other-permissive_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: more or less derived from a bsd-simplified +--- + Redistribution and use in source and binary forms, with or without modification, are permitted. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS @@ -10,5 +16,4 @@ 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. - +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/other-permissive_17.yml b/src/licensedcode/data/rules/other-permissive_17.yml deleted file mode 100644 index bb7d37a0b86..00000000000 --- a/src/licensedcode/data/rules/other-permissive_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: more or less derived from a bsd-simplified diff --git a/src/licensedcode/data/rules/other-permissive_170.RULE b/src/licensedcode/data/rules/other-permissive_170.RULE index 50ecd6b33f9..6f6dc0b7276 100644 --- a/src/licensedcode/data/rules/other-permissive_170.RULE +++ b/src/licensedcode/data/rules/other-permissive_170.RULE @@ -1,3 +1,13 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://web.archive.org/web/20100425004934/http://www.2038bug.com/pivotal_gmtime_r.c.html + See also https://github.com/apache/drill/pull/2111 +ignorable_urls: + - http://2038bug.com/ +--- + Redistribution and use in source form, with or without modification, is permitted provided that the above copyright notice, this list of conditions, the following disclaimer, and the following char array diff --git a/src/licensedcode/data/rules/other-permissive_170.yml b/src/licensedcode/data/rules/other-permissive_170.yml deleted file mode 100644 index cbb2d2051c9..00000000000 --- a/src/licensedcode/data/rules/other-permissive_170.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://web.archive.org/web/20100425004934/http://www.2038bug.com/pivotal_gmtime_r.c.html - See also https://github.com/apache/drill/pull/2111 -ignorable_urls: - - http://2038bug.com/ diff --git a/src/licensedcode/data/rules/other-permissive_171.RULE b/src/licensedcode/data/rules/other-permissive_171.RULE index 15e9c06fc4e..6e95ee19797 100644 --- a/src/licensedcode/data/rules/other-permissive_171.RULE +++ b/src/licensedcode/data/rules/other-permissive_171.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: An oddity seen in https://github.com/chafla/gizoogle-py/blob/cfe8130535623f253a79c09318076567d8b6612b/license.txt +--- + Permission is hereby granted, free of charge, ta any thug obtainin a cold-ass lil copy of dis software n' associated documentation filez (the "Software"), ta deal up in tha Software without restriction, includin without limitation tha diff --git a/src/licensedcode/data/rules/other-permissive_171.yml b/src/licensedcode/data/rules/other-permissive_171.yml deleted file mode 100644 index 48cf6c5e43a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_171.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: An oddity seen in https://github.com/chafla/gizoogle-py/blob/cfe8130535623f253a79c09318076567d8b6612b/license.txt diff --git a/src/licensedcode/data/rules/other-permissive_172.RULE b/src/licensedcode/data/rules/other-permissive_172.RULE index 514d161a3e3..2fb34917bca 100644 --- a/src/licensedcode/data/rules/other-permissive_172.RULE +++ b/src/licensedcode/data/rules/other-permissive_172.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: An oddity seen in https://github.com/chafla/gizoogle-py/blob/cfe8130535623f253a79c09318076567d8b6612b/license.txt +--- + Da MIT License (MIT) Permission is hereby granted, free of charge, ta any thug obtainin a cold-ass diff --git a/src/licensedcode/data/rules/other-permissive_172.yml b/src/licensedcode/data/rules/other-permissive_172.yml deleted file mode 100644 index 48cf6c5e43a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_172.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: An oddity seen in https://github.com/chafla/gizoogle-py/blob/cfe8130535623f253a79c09318076567d8b6612b/license.txt diff --git a/src/licensedcode/data/rules/other-permissive_173.RULE b/src/licensedcode/data/rules/other-permissive_173.RULE index ed2a94abd20..cf1580753b7 100644 --- a/src/licensedcode/data/rules/other-permissive_173.RULE +++ b/src/licensedcode/data/rules/other-permissive_173.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: An oddity seen in https://github.com/obosob/mangpages/blob/0dfb9b0cac8c1bf95bd3f83c9522aa6fbade6e79/en_GX/man1/xkbwatch.1#L1 +--- + Permission is hereby granted, free of charge, ta any thug obtainin a copy of dis software n' associated documentation filez (the "Software"), ta deal up in tha Software without restriction, includin without limitation diff --git a/src/licensedcode/data/rules/other-permissive_173.yml b/src/licensedcode/data/rules/other-permissive_173.yml deleted file mode 100644 index d76bc898891..00000000000 --- a/src/licensedcode/data/rules/other-permissive_173.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: An oddity seen in https://github.com/obosob/mangpages/blob/0dfb9b0cac8c1bf95bd3f83c9522aa6fbade6e79/en_GX/man1/xkbwatch.1#L1 diff --git a/src/licensedcode/data/rules/other-permissive_174.RULE b/src/licensedcode/data/rules/other-permissive_174.RULE index 15f14cea481..aac5393201e 100644 --- a/src/licensedcode/data/rules/other-permissive_174.RULE +++ b/src/licensedcode/data/rules/other-permissive_174.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: An MIT-like license seen at https://raw.githubusercontent.com/claygod/microservice/master/LICENSE.md +--- + Permission is hereby granted, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom diff --git a/src/licensedcode/data/rules/other-permissive_174.yml b/src/licensedcode/data/rules/other-permissive_174.yml deleted file mode 100644 index 45b31fd8efd..00000000000 --- a/src/licensedcode/data/rules/other-permissive_174.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: An MIT-like license seen at https://raw.githubusercontent.com/claygod/microservice/master/LICENSE.md diff --git a/src/licensedcode/data/rules/other-permissive_175.RULE b/src/licensedcode/data/rules/other-permissive_175.RULE index 2ca63a35b90..036d5ab4343 100644 --- a/src/licensedcode/data/rules/other-permissive_175.RULE +++ b/src/licensedcode/data/rules/other-permissive_175.RULE @@ -1,3 +1,15 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: See in https://github.com/noahtkeller/go-bacnet/blob/d13987947ee0a0b1507bd29f2f4edeb295768cfa/LICENSE + and this is a mostly MIT-like but the condition has beem relaxed and does not require to + reproduce copyright. e.g. where a standard MIT has "The above copyright notice and this + permission notice shall be included in all copies or substantial portions of the Software." + here we have instead "This permission notice shall be included in all copies or substantial + portions of the Software." +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/other-permissive_175.yml b/src/licensedcode/data/rules/other-permissive_175.yml deleted file mode 100644 index 38906beeabc..00000000000 --- a/src/licensedcode/data/rules/other-permissive_175.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: See in https://github.com/noahtkeller/go-bacnet/blob/d13987947ee0a0b1507bd29f2f4edeb295768cfa/LICENSE - and this is a mostly MIT-like but the condition has beem relaxed and does not require to - reproduce copyright. e.g. where a standard MIT has "The above copyright notice and this - permission notice shall be included in all copies or substantial portions of the Software." - here we have instead "This permission notice shall be included in all copies or substantial - portions of the Software." diff --git a/src/licensedcode/data/rules/other-permissive_176.RULE b/src/licensedcode/data/rules/other-permissive_176.RULE index 70f850f9300..172944248ee 100644 --- a/src/licensedcode/data/rules/other-permissive_176.RULE +++ b/src/licensedcode/data/rules/other-permissive_176.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + All credits to must remain in tact or use of this modification is not permitted! \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_176.yml b/src/licensedcode/data/rules/other-permissive_176.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_177.RULE b/src/licensedcode/data/rules/other-permissive_177.RULE index 039b1917a47..8c388510064 100644 --- a/src/licensedcode/data/rules/other-permissive_177.RULE +++ b/src/licensedcode/data/rules/other-permissive_177.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + All credits to must remain intact or use of this modification is not permitted! \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_177.yml b/src/licensedcode/data/rules/other-permissive_177.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_178.RULE b/src/licensedcode/data/rules/other-permissive_178.RULE index 6843a012498..cd4ff83619a 100644 --- a/src/licensedcode/data/rules/other-permissive_178.RULE +++ b/src/licensedcode/data/rules/other-permissive_178.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/layerJS/layerJS/blob/b5ea9143d9e87d01e729a79b813414a992a1d1ed/LICENSE + Looks like an MIT but is not excactly it +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software, including the rights to use, copy, modify, merge, publish, diff --git a/src/licensedcode/data/rules/other-permissive_178.yml b/src/licensedcode/data/rules/other-permissive_178.yml deleted file mode 100644 index ef2c89db112..00000000000 --- a/src/licensedcode/data/rules/other-permissive_178.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/layerJS/layerJS/blob/b5ea9143d9e87d01e729a79b813414a992a1d1ed/LICENSE - Looks like an MIT but is not excactly it diff --git a/src/licensedcode/data/rules/other-permissive_179.RULE b/src/licensedcode/data/rules/other-permissive_179.RULE index e30846b233e..6cdbb83f3dd 100644 --- a/src/licensedcode/data/rules/other-permissive_179.RULE +++ b/src/licensedcode/data/rules/other-permissive_179.RULE @@ -1 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/layerJS/layerJS/blob/b5ea9143d9e87d01e729a79b813414a992a1d1ed/LICENSE + Looks like an MIT but is not excactly it +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + This license is derived from the MIT license (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_179.yml b/src/licensedcode/data/rules/other-permissive_179.yml deleted file mode 100644 index b65d6b7c9cf..00000000000 --- a/src/licensedcode/data/rules/other-permissive_179.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/layerJS/layerJS/blob/b5ea9143d9e87d01e729a79b813414a992a1d1ed/LICENSE - Looks like an MIT but is not excactly it -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/other-permissive_18.RULE b/src/licensedcode/data/rules/other-permissive_18.RULE index 8d2340bbe16..69302708c0e 100644 --- a/src/licensedcode/data/rules/other-permissive_18.RULE +++ b/src/licensedcode/data/rules/other-permissive_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: more or less derived from a bsd-simplified +--- + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK. @@ -5,5 +11,4 @@ Permission is hereby granted to use, copy, modify, and/or distribute this program, provided that the Copyright, this License, and the Availability of the original version is retained on all copies and made accessible to the end-user of any code or package that includes -or any modified version of . - +or any modified version of . \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_18.yml b/src/licensedcode/data/rules/other-permissive_18.yml deleted file mode 100644 index bb7d37a0b86..00000000000 --- a/src/licensedcode/data/rules/other-permissive_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: more or less derived from a bsd-simplified diff --git a/src/licensedcode/data/rules/other-permissive_180.RULE b/src/licensedcode/data/rules/other-permissive_180.RULE index fe5056ff6f1..b27b0df44df 100644 --- a/src/licensedcode/data/rules/other-permissive_180.RULE +++ b/src/licensedcode/data/rules/other-permissive_180.RULE @@ -1 +1,13 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/apple-opensource-mirror/X11/blob/43e6e6c55db6622bca4484723ff154a9c59125a0/xc/programs/Xserver/hw/xfree86/getconfig/getconfig.sh + This is a mix of Apache-1.1 and xfree86-1.1 +ignorable_authors: + - X-Oz Technologies (http://www.x-oz.com/) +ignorable_urls: + - http://www.x-oz.com/ +--- + This product includes software developed by X-Oz Technologies (http://www.x-oz.com/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_180.yml b/src/licensedcode/data/rules/other-permissive_180.yml deleted file mode 100644 index 95b56522b8d..00000000000 --- a/src/licensedcode/data/rules/other-permissive_180.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/apple-opensource-mirror/X11/blob/43e6e6c55db6622bca4484723ff154a9c59125a0/xc/programs/Xserver/hw/xfree86/getconfig/getconfig.sh - This is a mix of Apache-1.1 and xfree86-1.1 -ignorable_authors: - - X-Oz Technologies (http://www.x-oz.com/) -ignorable_urls: - - http://www.x-oz.com/ diff --git a/src/licensedcode/data/rules/other-permissive_181.RULE b/src/licensedcode/data/rules/other-permissive_181.RULE index 79fb2243005..47186404508 100644 --- a/src/licensedcode/data/rules/other-permissive_181.RULE +++ b/src/licensedcode/data/rules/other-permissive_181.RULE @@ -1,3 +1,15 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/apple-opensource-mirror/X11/blob/43e6e6c55db6622bca4484723ff154a9c59125a0/xc/programs/Xserver/hw/xfree86/getconfig/getconfig.sh + This is a mix of Apache-1.1 and xfree86-1.1 +ignorable_authors: + - X-Oz Technologies (http://www.x-oz.com/) +ignorable_urls: + - http://www.x-oz.com/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/other-permissive_181.yml b/src/licensedcode/data/rules/other-permissive_181.yml deleted file mode 100644 index eb1dd25bdd4..00000000000 --- a/src/licensedcode/data/rules/other-permissive_181.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/apple-opensource-mirror/X11/blob/43e6e6c55db6622bca4484723ff154a9c59125a0/xc/programs/Xserver/hw/xfree86/getconfig/getconfig.sh - This is a mix of Apache-1.1 and xfree86-1.1 -ignorable_authors: - - X-Oz Technologies (http://www.x-oz.com/) -ignorable_urls: - - http://www.x-oz.com/ diff --git a/src/licensedcode/data/rules/other-permissive_182.RULE b/src/licensedcode/data/rules/other-permissive_182.RULE index acc2c7b4d4b..dd2b919d6b0 100644 --- a/src/licensedcode/data/rules/other-permissive_182.RULE +++ b/src/licensedcode/data/rules/other-permissive_182.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/apple-opensource-mirror/X11/blob/43e6e6c55db6622bca4484723ff154a9c59125a0/xc/programs/Xserver/hw/xfree86/getconfig/getconfig.sh + This is a mix of Apache-1.1 and xfree86-1.1 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/other-permissive_182.yml b/src/licensedcode/data/rules/other-permissive_182.yml deleted file mode 100644 index 63e7549fead..00000000000 --- a/src/licensedcode/data/rules/other-permissive_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/apple-opensource-mirror/X11/blob/43e6e6c55db6622bca4484723ff154a9c59125a0/xc/programs/Xserver/hw/xfree86/getconfig/getconfig.sh - This is a mix of Apache-1.1 and xfree86-1.1 diff --git a/src/licensedcode/data/rules/other-permissive_183.RULE b/src/licensedcode/data/rules/other-permissive_183.RULE index 6ac243bb493..e2887c18eb5 100644 --- a/src/licensedcode/data/rules/other-permissive_183.RULE +++ b/src/licensedcode/data/rules/other-permissive_183.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://isc.tamu.edu/~lewing/linux/ +ignorable_emails: + - lewing@isc.tamu.edu +--- + Feel free to do whatever you see fit with the images, you are encouraged to integrate them into other designs that fit your need. Permission to use and/or modify this image is granted provided you diff --git a/src/licensedcode/data/rules/other-permissive_183.yml b/src/licensedcode/data/rules/other-permissive_183.yml deleted file mode 100644 index 8f974300462..00000000000 --- a/src/licensedcode/data/rules/other-permissive_183.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://isc.tamu.edu/~lewing/linux/ -ignorable_emails: - - lewing@isc.tamu.edu diff --git a/src/licensedcode/data/rules/other-permissive_184.RULE b/src/licensedcode/data/rules/other-permissive_184.RULE index d2092eb0efc..19752c12948 100644 --- a/src/licensedcode/data/rules/other-permissive_184.RULE +++ b/src/licensedcode/data/rules/other-permissive_184.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: OpenSSL patches in libtelnet/sslapp.c +--- + You can do whatever you like with these patches except pretend that you wrote them. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_184.yml b/src/licensedcode/data/rules/other-permissive_184.yml deleted file mode 100644 index 989b128fe2f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_184.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: OpenSSL patches in libtelnet/sslapp.c diff --git a/src/licensedcode/data/rules/other-permissive_185.RULE b/src/licensedcode/data/rules/other-permissive_185.RULE index 07b175319da..cd990beedea 100644 --- a/src/licensedcode/data/rules/other-permissive_185.RULE +++ b/src/licensedcode/data/rules/other-permissive_185.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +minimum_coverage: 90 +notes: truncated bsd license +--- + * Permission to use, copy, modify, distribute, and sell this software and * its documentation for any purpose is hereby granted without fee, provided * that (i) the above copyright notices and this permission notice appear in diff --git a/src/licensedcode/data/rules/other-permissive_185.yml b/src/licensedcode/data/rules/other-permissive_185.yml deleted file mode 100644 index 6cd18023bd2..00000000000 --- a/src/licensedcode/data/rules/other-permissive_185.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -minimum_coverage: 90 -notes: truncated bsd license diff --git a/src/licensedcode/data/rules/other-permissive_186.RULE b/src/licensedcode/data/rules/other-permissive_186.RULE index d5097e7db0f..a5f5ee556dc 100644 --- a/src/licensedcode/data/rules/other-permissive_186.RULE +++ b/src/licensedcode/data/rules/other-permissive_186.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + It * is hereby granted that this software can be used, copied, modified, and * distributed without fee provided that this copyright notice appears in all diff --git a/src/licensedcode/data/rules/other-permissive_186.yml b/src/licensedcode/data/rules/other-permissive_186.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_187.RULE b/src/licensedcode/data/rules/other-permissive_187.RULE index 8a4a54e0b17..7653ef3c0e8 100644 --- a/src/licensedcode/data/rules/other-permissive_187.RULE +++ b/src/licensedcode/data/rules/other-permissive_187.RULE @@ -1,2 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: https://github.com/Jossef-767/bbb20/blob/76ff1b255277714dbd7ebbaa7ffb82208bd4dd94/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/util/jhotdraw/Shapes.java +--- + * It is hereby granted that this software can be used, copied, modified, and * distributed without fee provided that this copyright noticeappears in all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_187.yml b/src/licensedcode/data/rules/other-permissive_187.yml deleted file mode 100644 index e00fb70d6b2..00000000000 --- a/src/licensedcode/data/rules/other-permissive_187.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: https://github.com/Jossef-767/bbb20/blob/76ff1b255277714dbd7ebbaa7ffb82208bd4dd94/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/util/jhotdraw/Shapes.java diff --git a/src/licensedcode/data/rules/other-permissive_188.RULE b/src/licensedcode/data/rules/other-permissive_188.RULE index 089b8e8472f..6e83dfbd3b4 100644 --- a/src/licensedcode/data/rules/other-permissive_188.RULE +++ b/src/licensedcode/data/rules/other-permissive_188.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in VUXML at https://www.vuxml.org/ and https://svn.freebsd.org/ports/head/security/vuxml/vuln.xml +--- + Redistribution and use in source (VuXML) and 'compiled' forms (SGML, HTML, PDF, PostScript, RTF and so forth) with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_188.yml b/src/licensedcode/data/rules/other-permissive_188.yml deleted file mode 100644 index e44429faaec..00000000000 --- a/src/licensedcode/data/rules/other-permissive_188.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in VUXML at https://www.vuxml.org/ and https://svn.freebsd.org/ports/head/security/vuxml/vuln.xml diff --git a/src/licensedcode/data/rules/other-permissive_189.RULE b/src/licensedcode/data/rules/other-permissive_189.RULE index 98c90077e82..c85cae9dd5b 100644 --- a/src/licensedcode/data/rules/other-permissive_189.RULE +++ b/src/licensedcode/data/rules/other-permissive_189.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ and https://github.com/albertito/libfiu/blob/20ea5e85ec63e3dedd6904e103fb2e56b46840cf/LICENSE +--- + I don't like licenses, because I don't like having to worry about all this legal stuff just for a simple piece of software I don't really mind anyone using. But I also believe that it's important that people share and give back; diff --git a/src/licensedcode/data/rules/other-permissive_189.yml b/src/licensedcode/data/rules/other-permissive_189.yml deleted file mode 100644 index 7b80169443a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_189.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ and https://github.com/albertito/libfiu/blob/20ea5e85ec63e3dedd6904e103fb2e56b46840cf/LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_19.RULE b/src/licensedcode/data/rules/other-permissive_19.RULE index f99fe61b5dc..121f440eb44 100644 --- a/src/licensedcode/data/rules/other-permissive_19.RULE +++ b/src/licensedcode/data/rules/other-permissive_19.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to redistribute it and use it in source and binary forms, with or without modification, subject to the following conditions: diff --git a/src/licensedcode/data/rules/other-permissive_19.yml b/src/licensedcode/data/rules/other-permissive_19.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_190.RULE b/src/licensedcode/data/rules/other-permissive_190.RULE index 99257432234..64e98afd70e 100644 --- a/src/licensedcode/data/rules/other-permissive_190.RULE +++ b/src/licensedcode/data/rules/other-permissive_190.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ and https://github.com/albertito/libfiu/blob/20ea5e85ec63e3dedd6904e103fb2e56b46840cf/LICENSE +--- + I don't like licenses, because I don't like having to worry about all this legal stuff just for a simple piece of software I don't really mind anyone using. But I also believe that it's important that people share and give back; diff --git a/src/licensedcode/data/rules/other-permissive_190.yml b/src/licensedcode/data/rules/other-permissive_190.yml deleted file mode 100644 index 7b80169443a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_190.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ and https://github.com/albertito/libfiu/blob/20ea5e85ec63e3dedd6904e103fb2e56b46840cf/LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_191.RULE b/src/licensedcode/data/rules/other-permissive_191.RULE index c2045a52aa1..f789212cf70 100644 --- a/src/licensedcode/data/rules/other-permissive_191.RULE +++ b/src/licensedcode/data/rules/other-permissive_191.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ and https://github.com/albertito/libfiu/blob/20ea5e85ec63e3dedd6904e103fb2e56b46840cf/LICENSE +--- + I don't like licenses, because I don't like having to worry about all this legal stuff just for a simple piece of software I don't really mind anyone using. But I also believe that it's important that people share and give back; diff --git a/src/licensedcode/data/rules/other-permissive_191.yml b/src/licensedcode/data/rules/other-permissive_191.yml deleted file mode 100644 index 7b80169443a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_191.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ and https://github.com/albertito/libfiu/blob/20ea5e85ec63e3dedd6904e103fb2e56b46840cf/LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_192.RULE b/src/licensedcode/data/rules/other-permissive_192.RULE index ce6bf264c9c..f6bcd3320ff 100644 --- a/src/licensedcode/data/rules/other-permissive_192.RULE +++ b/src/licensedcode/data/rules/other-permissive_192.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ and https://github.com/albertito/libfiu/blob/20ea5e85ec63e3dedd6904e103fb2e56b46840cf/LICENSE +--- + BOLA - Buena Onda License Agreement (v1.0) diff --git a/src/licensedcode/data/rules/other-permissive_192.yml b/src/licensedcode/data/rules/other-permissive_192.yml deleted file mode 100644 index 7b80169443a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_192.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ and https://github.com/albertito/libfiu/blob/20ea5e85ec63e3dedd6904e103fb2e56b46840cf/LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_193.RULE b/src/licensedcode/data/rules/other-permissive_193.RULE index c23ba467bd7..def2ca775b1 100644 --- a/src/licensedcode/data/rules/other-permissive_193.RULE +++ b/src/licensedcode/data/rules/other-permissive_193.RULE @@ -1,2 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ +ignorable_urls: + - http://geekbakery.net/archives/2012/08/buena-onda-license-agreement.geek +--- + Licensed under the Buena Onda License Agreement (BOLA). http://geekbakery.net/archives/2012/08/buena-onda-license-agreement.geek \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_193.yml b/src/licensedcode/data/rules/other-permissive_193.yml deleted file mode 100644 index cbc0ea6bfca..00000000000 --- a/src/licensedcode/data/rules/other-permissive_193.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ -ignorable_urls: - - http://geekbakery.net/archives/2012/08/buena-onda-license-agreement.geek diff --git a/src/licensedcode/data/rules/other-permissive_194.RULE b/src/licensedcode/data/rules/other-permissive_194.RULE index cb2119c81cb..9e13c17923c 100644 --- a/src/licensedcode/data/rules/other-permissive_194.RULE +++ b/src/licensedcode/data/rules/other-permissive_194.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ +--- + [BOLA - Buena Onda License Agreement (v1.1)] \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_194.yml b/src/licensedcode/data/rules/other-permissive_194.yml deleted file mode 100644 index b8c8c8ab661..00000000000 --- a/src/licensedcode/data/rules/other-permissive_194.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ diff --git a/src/licensedcode/data/rules/other-permissive_195.RULE b/src/licensedcode/data/rules/other-permissive_195.RULE index 36904976e08..5b33cc13310 100644 --- a/src/licensedcode/data/rules/other-permissive_195.RULE +++ b/src/licensedcode/data/rules/other-permissive_195.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ +--- + BOLA - Buena Onda License Agreement (v1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_195.yml b/src/licensedcode/data/rules/other-permissive_195.yml deleted file mode 100644 index b8c8c8ab661..00000000000 --- a/src/licensedcode/data/rules/other-permissive_195.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ diff --git a/src/licensedcode/data/rules/other-permissive_196.RULE b/src/licensedcode/data/rules/other-permissive_196.RULE index f76d19ea578..f933ebc1c24 100644 --- a/src/licensedcode/data/rules/other-permissive_196.RULE +++ b/src/licensedcode/data/rules/other-permissive_196.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ +--- + BOLA - Buena Onda License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_196.yml b/src/licensedcode/data/rules/other-permissive_196.yml deleted file mode 100644 index b8c8c8ab661..00000000000 --- a/src/licensedcode/data/rules/other-permissive_196.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ diff --git a/src/licensedcode/data/rules/other-permissive_197.RULE b/src/licensedcode/data/rules/other-permissive_197.RULE index 6690ee7c538..5f9bd80c333 100644 --- a/src/licensedcode/data/rules/other-permissive_197.RULE +++ b/src/licensedcode/data/rules/other-permissive_197.RULE @@ -1 +1,10 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ +ignorable_urls: + - https://blitiri.com.ar/p/bola/ +--- + https://blitiri.com.ar/p/bola/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_197.yml b/src/licensedcode/data/rules/other-permissive_197.yml deleted file mode 100644 index b5be670641e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_197.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ -ignorable_urls: - - https://blitiri.com.ar/p/bola/ diff --git a/src/licensedcode/data/rules/other-permissive_198.RULE b/src/licensedcode/data/rules/other-permissive_198.RULE index 0f858dfae8b..88dd13ce6fd 100644 --- a/src/licensedcode/data/rules/other-permissive_198.RULE +++ b/src/licensedcode/data/rules/other-permissive_198.RULE @@ -1 +1,10 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +notes: https://blitiri.com.ar/p/bola/ +ignorable_urls: + - http://geekbakery.net/archives/2012/08/buena-onda-license-agreement.geek +--- + http://geekbakery.net/archives/2012/08/buena-onda-license-agreement.geek \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_198.yml b/src/licensedcode/data/rules/other-permissive_198.yml deleted file mode 100644 index 60ac3e565ec..00000000000 --- a/src/licensedcode/data/rules/other-permissive_198.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -notes: https://blitiri.com.ar/p/bola/ -ignorable_urls: - - http://geekbakery.net/archives/2012/08/buena-onda-license-agreement.geek diff --git a/src/licensedcode/data/rules/other-permissive_199.RULE b/src/licensedcode/data/rules/other-permissive_199.RULE index e9c825c381d..7f4b0095f7a 100644 --- a/src/licensedcode/data/rules/other-permissive_199.RULE +++ b/src/licensedcode/data/rules/other-permissive_199.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission to copy and distribute verbatim copies of this document is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_199.yml b/src/licensedcode/data/rules/other-permissive_199.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_2.RULE b/src/licensedcode/data/rules/other-permissive_2.RULE index ec916cecb04..b80f8ef7003 100644 --- a/src/licensedcode/data/rules/other-permissive_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_2.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + This code is released by the author with no restrictions on usage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_2.yml b/src/licensedcode/data/rules/other-permissive_2.yml deleted file mode 100644 index f00e72dda11..00000000000 --- a/src/licensedcode/data/rules/other-permissive_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/other-permissive_20.RULE b/src/licensedcode/data/rules/other-permissive_20.RULE index 7a10bdc61a1..e9384d391d3 100644 --- a/src/licensedcode/data/rules/other-permissive_20.RULE +++ b/src/licensedcode/data/rules/other-permissive_20.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to redistribute it and use it in source and binary forms, with or without modification, subject to the following conditions: * This Software may be used for any purpose, including commercial applications. diff --git a/src/licensedcode/data/rules/other-permissive_20.yml b/src/licensedcode/data/rules/other-permissive_20.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_200.RULE b/src/licensedcode/data/rules/other-permissive_200.RULE index c5bc911648b..6d393fd22fb 100644 --- a/src/licensedcode/data/rules/other-permissive_200.RULE +++ b/src/licensedcode/data/rules/other-permissive_200.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: similar to old bsd-original-uc-1986 +--- + This software is not subject to any license of Carnegie Mellon University. * * Redistribution and use in source and binary forms are permitted without diff --git a/src/licensedcode/data/rules/other-permissive_200.yml b/src/licensedcode/data/rules/other-permissive_200.yml deleted file mode 100644 index 6202a44442b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_200.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: similar to old bsd-original-uc-1986 diff --git a/src/licensedcode/data/rules/other-permissive_201.RULE b/src/licensedcode/data/rules/other-permissive_201.RULE index 4c0e69bb107..b78e88b9858 100644 --- a/src/licensedcode/data/rules/other-permissive_201.RULE +++ b/src/licensedcode/data/rules/other-permissive_201.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: similar to old bsd-original-uc-1986 +--- + * * Redistribution and use in source and binary forms are permitted without * restriction or fee of any kind as long as this notice is preserved. diff --git a/src/licensedcode/data/rules/other-permissive_201.yml b/src/licensedcode/data/rules/other-permissive_201.yml deleted file mode 100644 index 6202a44442b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_201.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: similar to old bsd-original-uc-1986 diff --git a/src/licensedcode/data/rules/other-permissive_202.RULE b/src/licensedcode/data/rules/other-permissive_202.RULE index ccb01ab8c19..9e732839733 100644 --- a/src/licensedcode/data/rules/other-permissive_202.RULE +++ b/src/licensedcode/data/rules/other-permissive_202.RULE @@ -1,2 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: similar to old bsd-original-uc-1986 +--- + * This software is not subject to any license of Silicon Graphics * Inc. or Purdue University. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_202.yml b/src/licensedcode/data/rules/other-permissive_202.yml deleted file mode 100644 index 6202a44442b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_202.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: similar to old bsd-original-uc-1986 diff --git a/src/licensedcode/data/rules/other-permissive_203.RULE b/src/licensedcode/data/rules/other-permissive_203.RULE index dcf009de7b7..5f7aadfb159 100644 --- a/src/licensedcode/data/rules/other-permissive_203.RULE +++ b/src/licensedcode/data/rules/other-permissive_203.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: similar to old bsd-original-uc-1986 +--- + * This software is not subject to any license of Silicon Graphics * Inc. or Purdue University. * diff --git a/src/licensedcode/data/rules/other-permissive_203.yml b/src/licensedcode/data/rules/other-permissive_203.yml deleted file mode 100644 index 6202a44442b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_203.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: similar to old bsd-original-uc-1986 diff --git a/src/licensedcode/data/rules/other-permissive_204.RULE b/src/licensedcode/data/rules/other-permissive_204.RULE index 378d98a1cc0..71fd8d7b21b 100644 --- a/src/licensedcode/data/rules/other-permissive_204.RULE +++ b/src/licensedcode/data/rules/other-permissive_204.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://github.com/impshum/Reddit-Fluff And https://github.com/benhj/TheHackyAsFuckSoftwareLicense +--- + License Stuff This 'ere software is hacky as fuck. Use at your peril. I'd appreciate a mention diff --git a/src/licensedcode/data/rules/other-permissive_204.yml b/src/licensedcode/data/rules/other-permissive_204.yml deleted file mode 100644 index 23775de4362..00000000000 --- a/src/licensedcode/data/rules/other-permissive_204.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://github.com/impshum/Reddit-Fluff And https://github.com/benhj/TheHackyAsFuckSoftwareLicense diff --git a/src/licensedcode/data/rules/other-permissive_205.RULE b/src/licensedcode/data/rules/other-permissive_205.RULE index 32576d30f22..85fa4c5acca 100644 --- a/src/licensedcode/data/rules/other-permissive_205.RULE +++ b/src/licensedcode/data/rules/other-permissive_205.RULE @@ -1,2 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://github.com/impshum/Reddit-Fluff And https://github.com/benhj/TheHackyAsFuckSoftwareLicense +--- + This 'ere software is hacky as fuck. Use at your peril. I'd appreciate a mention if you do. But if you don't, I'm not going to lose sleep over it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_205.yml b/src/licensedcode/data/rules/other-permissive_205.yml deleted file mode 100644 index 23775de4362..00000000000 --- a/src/licensedcode/data/rules/other-permissive_205.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://github.com/impshum/Reddit-Fluff And https://github.com/benhj/TheHackyAsFuckSoftwareLicense diff --git a/src/licensedcode/data/rules/other-permissive_206.RULE b/src/licensedcode/data/rules/other-permissive_206.RULE index 9a50ff98f87..295930d8b7b 100644 --- a/src/licensedcode/data/rules/other-permissive_206.RULE +++ b/src/licensedcode/data/rules/other-permissive_206.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in bash doc; note the typo in "pare" +--- + Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice pare preserved on all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_206.yml b/src/licensedcode/data/rules/other-permissive_206.yml deleted file mode 100644 index 9a13e730262..00000000000 --- a/src/licensedcode/data/rules/other-permissive_206.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in bash doc; note the typo in "pare" diff --git a/src/licensedcode/data/rules/other-permissive_207.RULE b/src/licensedcode/data/rules/other-permissive_207.RULE index 3738079de05..ff82bad7c81 100644 --- a/src/licensedcode/data/rules/other-permissive_207.RULE +++ b/src/licensedcode/data/rules/other-permissive_207.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in the Bash FAQ by Chester Ramey +--- + Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, and distribute this document for any purpose, provided that the above copyright diff --git a/src/licensedcode/data/rules/other-permissive_207.yml b/src/licensedcode/data/rules/other-permissive_207.yml deleted file mode 100644 index 703eabd7e4f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_207.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in the Bash FAQ by Chester Ramey diff --git a/src/licensedcode/data/rules/other-permissive_208.RULE b/src/licensedcode/data/rules/other-permissive_208.RULE index a3d84a02972..46ba223d666 100644 --- a/src/licensedcode/data/rules/other-permissive_208.RULE +++ b/src/licensedcode/data/rules/other-permissive_208.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: https://www.lua.org/versions.html#3.1 And http://www.lua.org/license.html +--- + Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, translate, and distribute this software and its documentation @@ -22,4 +29,4 @@ obligation to provide maintenance, support, updates, enhancements, or modifications. In no event shall TeCGraf, PUC-Rio, or the authors be held liable to any party for direct, indirect, special, incidental, or consequential damages arising -out of the use of this package and its documentation. +out of the use of this package and its documentation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_208.yml b/src/licensedcode/data/rules/other-permissive_208.yml deleted file mode 100644 index e0e50a5ab03..00000000000 --- a/src/licensedcode/data/rules/other-permissive_208.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: https://www.lua.org/versions.html#3.1 And http://www.lua.org/license.html diff --git a/src/licensedcode/data/rules/other-permissive_209.RULE b/src/licensedcode/data/rules/other-permissive_209.RULE index 4eeb9c02636..e84c19805f1 100644 --- a/src/licensedcode/data/rules/other-permissive_209.RULE +++ b/src/licensedcode/data/rules/other-permissive_209.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + distributed under its own licensing terms. The licensing terms of Lua are also attached. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_209.yml b/src/licensedcode/data/rules/other-permissive_209.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_21.RULE b/src/licensedcode/data/rules/other-permissive_21.RULE index c2b359bb2ae..f3aff33fbe3 100644 --- a/src/licensedcode/data/rules/other-permissive_21.RULE +++ b/src/licensedcode/data/rules/other-permissive_21.RULE @@ -1,6 +1,13 @@ +--- +license_expression: other-permissive +is_license_text: yes +referenced_filenames: + - LEGAL.TXT +--- + Permition is granted to use, copy, distribute and prepare derivative works of this library for any purpose and without fee, provided, that the above copyright notice and this statement appear in all copies. Intel makes no representations about the suitability of this software for any purpose, and specifically disclaims all warranties. -See LEGAL.TXT for all the legal information. +See LEGAL.TXT for all the legal information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_21.yml b/src/licensedcode/data/rules/other-permissive_21.yml deleted file mode 100644 index e56becc140a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -referenced_filenames: - - LEGAL.TXT diff --git a/src/licensedcode/data/rules/other-permissive_210.RULE b/src/licensedcode/data/rules/other-permissive_210.RULE index 567145b67fc..213fb211ed4 100644 --- a/src/licensedcode/data/rules/other-permissive_210.RULE +++ b/src/licensedcode/data/rules/other-permissive_210.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: See https://github.com/funnelfiasco/permissive3000/blob/c57d5e5f1a31a3a967c166f8f74002dc482738dc/license.txt +--- + Distribution and use in source and object forms, with or without changes, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_210.yml b/src/licensedcode/data/rules/other-permissive_210.yml deleted file mode 100644 index e0200fbb26b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_210.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: See https://github.com/funnelfiasco/permissive3000/blob/c57d5e5f1a31a3a967c166f8f74002dc482738dc/license.txt diff --git a/src/licensedcode/data/rules/other-permissive_211.RULE b/src/licensedcode/data/rules/other-permissive_211.RULE index 8666fc6e095..2c91d362c7d 100644 --- a/src/licensedcode/data/rules/other-permissive_211.RULE +++ b/src/licensedcode/data/rules/other-permissive_211.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in Perl Text::Tabs https://github.com/kbmbo/react/blob/6700d5e0bf93afee8e4ac806c94dec491770d629/usr/share/perl5/core_perl/Text/Tabs.pm#L188 +--- + This module may be modified, used, copied, and redistributed at your own risk. Publicly redistributed modified versions must use a different name. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_211.yml b/src/licensedcode/data/rules/other-permissive_211.yml deleted file mode 100644 index 1c17eb09feb..00000000000 --- a/src/licensedcode/data/rules/other-permissive_211.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in Perl Text::Tabs https://github.com/kbmbo/react/blob/6700d5e0bf93afee8e4ac806c94dec491770d629/usr/share/perl5/core_perl/Text/Tabs.pm#L188 diff --git a/src/licensedcode/data/rules/other-permissive_212.RULE b/src/licensedcode/data/rules/other-permissive_212.RULE index a7c02450e64..0980011870d 100644 --- a/src/licensedcode/data/rules/other-permissive_212.RULE +++ b/src/licensedcode/data/rules/other-permissive_212.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in Perl Text::Tabs https://github.com/kbmbo/react/blob/6700d5e0bf93afee8e4ac806c94dec491770d629/usr/share/perl5/core_perl/Text/Tabs.pm#L188 +--- + This module may be modified, used, copied, and redistributed at your own risk. Although allowed by the preceding license, please do not publicly redistribute modified versions of this code with the name "Text::Tabs" diff --git a/src/licensedcode/data/rules/other-permissive_212.yml b/src/licensedcode/data/rules/other-permissive_212.yml deleted file mode 100644 index 1c17eb09feb..00000000000 --- a/src/licensedcode/data/rules/other-permissive_212.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in Perl Text::Tabs https://github.com/kbmbo/react/blob/6700d5e0bf93afee8e4ac806c94dec491770d629/usr/share/perl5/core_perl/Text/Tabs.pm#L188 diff --git a/src/licensedcode/data/rules/other-permissive_213.RULE b/src/licensedcode/data/rules/other-permissive_213.RULE index bc7c6841896..1adc212d1bf 100644 --- a/src/licensedcode/data/rules/other-permissive_213.RULE +++ b/src/licensedcode/data/rules/other-permissive_213.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 97 +ignorable_emails: + - gladman@seven77.demon.co.uk +--- + Copyright in this implementation is held by Dr B R Gladman but I hereby give permission for its free direct or derivative use subject to acknowledgment of its origin and compliance with any conditions diff --git a/src/licensedcode/data/rules/other-permissive_213.yml b/src/licensedcode/data/rules/other-permissive_213.yml deleted file mode 100644 index 4fc1e1a08d0..00000000000 --- a/src/licensedcode/data/rules/other-permissive_213.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 97 -ignorable_emails: - - gladman@seven77.demon.co.uk diff --git a/src/licensedcode/data/rules/other-permissive_214.RULE b/src/licensedcode/data/rules/other-permissive_214.RULE index 4b9a316f924..a80c0373350 100644 --- a/src/licensedcode/data/rules/other-permissive_214.RULE +++ b/src/licensedcode/data/rules/other-permissive_214.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 97 +--- + Copyright in this implementation is held by Dr B R Gladman but I hereby give permission for its free direct or derivative use subject to acknowledgment of its origin and compliance with any conditions diff --git a/src/licensedcode/data/rules/other-permissive_214.yml b/src/licensedcode/data/rules/other-permissive_214.yml deleted file mode 100644 index e88e029d922..00000000000 --- a/src/licensedcode/data/rules/other-permissive_214.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 97 diff --git a/src/licensedcode/data/rules/other-permissive_215.RULE b/src/licensedcode/data/rules/other-permissive_215.RULE index 465cd84e452..5cae91dd203 100644 --- a/src/licensedcode/data/rules/other-permissive_215.RULE +++ b/src/licensedcode/data/rules/other-permissive_215.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in libtar 1.2.x and in older versions of cmake such as in https://github.com/Kitware/CMake/blob/v2.4.8/Utilities/cmtar/compat/gethostname.c + This is a cross-over of an mit-old-style with a warranty disclaimer from a modern MIT license. +--- + * Permission to use, copy, modify, distribute, and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/other-permissive_215.yml b/src/licensedcode/data/rules/other-permissive_215.yml deleted file mode 100644 index 283d2a6dfbe..00000000000 --- a/src/licensedcode/data/rules/other-permissive_215.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in libtar 1.2.x and in older versions of cmake such as in https://github.com/Kitware/CMake/blob/v2.4.8/Utilities/cmtar/compat/gethostname.c - This is a cross-over of an mit-old-style with a warranty disclaimer from a modern MIT license. diff --git a/src/licensedcode/data/rules/other-permissive_216.RULE b/src/licensedcode/data/rules/other-permissive_216.RULE index 5e86d1f721f..ba1ac982f56 100644 --- a/src/licensedcode/data/rules/other-permissive_216.RULE +++ b/src/licensedcode/data/rules/other-permissive_216.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + The Reference Manual is not licensed under the GPL; rather, it is offered under normal copyright, but with permission to copy/redistribute electronically. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_216.yml b/src/licensedcode/data/rules/other-permissive_216.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_217.RULE b/src/licensedcode/data/rules/other-permissive_217.RULE index a9b0edf7058..450103b7d56 100644 --- a/src/licensedcode/data/rules/other-permissive_217.RULE +++ b/src/licensedcode/data/rules/other-permissive_217.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + Permission is granted to use, copy, distribute and prepare derivative works of this software for any purpose and without fee, provided, that the above copyright notice and this statement appear in all copies. Intel makes no diff --git a/src/licensedcode/data/rules/other-permissive_217.yml b/src/licensedcode/data/rules/other-permissive_217.yml deleted file mode 100644 index 5e145ed66b8..00000000000 --- a/src/licensedcode/data/rules/other-permissive_217.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/other-permissive_218.RULE b/src/licensedcode/data/rules/other-permissive_218.RULE index 5ecbbfd87c1..3e36390f451 100644 --- a/src/licensedcode/data/rules/other-permissive_218.RULE +++ b/src/licensedcode/data/rules/other-permissive_218.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +notes: a license that's likely truncated +--- + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/other-permissive_218.yml b/src/licensedcode/data/rules/other-permissive_218.yml deleted file mode 100644 index cddec369bd8..00000000000 --- a/src/licensedcode/data/rules/other-permissive_218.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -notes: a license that's likely truncated diff --git a/src/licensedcode/data/rules/other-permissive_219.RULE b/src/licensedcode/data/rules/other-permissive_219.RULE index cc697838406..79000b1e73c 100644 --- a/src/licensedcode/data/rules/other-permissive_219.RULE +++ b/src/licensedcode/data/rules/other-permissive_219.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_219.yml b/src/licensedcode/data/rules/other-permissive_219.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_22.RULE b/src/licensedcode/data/rules/other-permissive_22.RULE index 214b97ccac8..9763d68e047 100644 --- a/src/licensedcode/data/rules/other-permissive_22.RULE +++ b/src/licensedcode/data/rules/other-permissive_22.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This file may be freely redistributed without license or fee provided this copyright message remains intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_22.yml b/src/licensedcode/data/rules/other-permissive_22.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_220.RULE b/src/licensedcode/data/rules/other-permissive_220.RULE index fde30fc75b4..ac71ae1b746 100644 --- a/src/licensedcode/data/rules/other-permissive_220.RULE +++ b/src/licensedcode/data/rules/other-permissive_220.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies. and diff --git a/src/licensedcode/data/rules/other-permissive_220.yml b/src/licensedcode/data/rules/other-permissive_220.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_221.RULE b/src/licensedcode/data/rules/other-permissive_221.RULE index bb542ebbf73..688ebe664a9 100644 --- a/src/licensedcode/data/rules/other-permissive_221.RULE +++ b/src/licensedcode/data/rules/other-permissive_221.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: highly similar to mit-old-style-no-advert +--- + Permission to use, copy, modify, and distribute this Python software and its associated documentation for any purpose without fee is hereby granted, provided that the above copyright notice appears in all copies, diff --git a/src/licensedcode/data/rules/other-permissive_221.yml b/src/licensedcode/data/rules/other-permissive_221.yml deleted file mode 100644 index 1074c542f58..00000000000 --- a/src/licensedcode/data/rules/other-permissive_221.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: highly similar to mit-old-style-no-advert diff --git a/src/licensedcode/data/rules/other-permissive_222.RULE b/src/licensedcode/data/rules/other-permissive_222.RULE index dd57f84fb3e..0ce50730664 100644 --- a/src/licensedcode/data/rules/other-permissive_222.RULE +++ b/src/licensedcode/data/rules/other-permissive_222.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This file may be freely distributed provided that this notice remains attached. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_222.yml b/src/licensedcode/data/rules/other-permissive_222.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_223.RULE b/src/licensedcode/data/rules/other-permissive_223.RULE index 26158f10ad0..69c9ff41cc6 100644 --- a/src/licensedcode/data/rules/other-permissive_223.RULE +++ b/src/licensedcode/data/rules/other-permissive_223.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted to use and distribute this code, with or without modifications, provided that this copyright notice is copied with it. Like anything else that's free, diff --git a/src/licensedcode/data/rules/other-permissive_223.yml b/src/licensedcode/data/rules/other-permissive_223.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_224.RULE b/src/licensedcode/data/rules/other-permissive_224.RULE index 1a238edcec9..460c64a13f8 100644 --- a/src/licensedcode/data/rules/other-permissive_224.RULE +++ b/src/licensedcode/data/rules/other-permissive_224.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted to use and distribute this code, with or without modifications, provided that this copyright notice is copied with it. Like anything else that's free, diff --git a/src/licensedcode/data/rules/other-permissive_224.yml b/src/licensedcode/data/rules/other-permissive_224.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_225.RULE b/src/licensedcode/data/rules/other-permissive_225.RULE index a32ad65415a..a0341e5ca08 100644 --- a/src/licensedcode/data/rules/other-permissive_225.RULE +++ b/src/licensedcode/data/rules/other-permissive_225.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms are permitted provided that this entire copyright notice is duplicated in all such copies diff --git a/src/licensedcode/data/rules/other-permissive_225.yml b/src/licensedcode/data/rules/other-permissive_225.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_226.RULE b/src/licensedcode/data/rules/other-permissive_226.RULE index c80dd541d4f..2b276f86c9c 100644 --- a/src/licensedcode/data/rules/other-permissive_226.RULE +++ b/src/licensedcode/data/rules/other-permissive_226.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is granted to make and distribute verbatim copies of this reference card provided the copyright notice and this permission notice are preserved on all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_226.yml b/src/licensedcode/data/rules/other-permissive_226.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_227.RULE b/src/licensedcode/data/rules/other-permissive_227.RULE index 7d1152be083..36415242531 100644 --- a/src/licensedcode/data/rules/other-permissive_227.RULE +++ b/src/licensedcode/data/rules/other-permissive_227.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is granted to process this file through and print the results, provided the printed document carries copying permission notice identical to this one except for the removal of this paragraph diff --git a/src/licensedcode/data/rules/other-permissive_227.yml b/src/licensedcode/data/rules/other-permissive_227.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_228.RULE b/src/licensedcode/data/rules/other-permissive_228.RULE index b9797986718..14700d10ed6 100644 --- a/src/licensedcode/data/rules/other-permissive_228.RULE +++ b/src/licensedcode/data/rules/other-permissive_228.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is granted to copy and distribute modified versions of this reference card under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a diff --git a/src/licensedcode/data/rules/other-permissive_228.yml b/src/licensedcode/data/rules/other-permissive_228.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_229.RULE b/src/licensedcode/data/rules/other-permissive_229.RULE index 7f3cae04c38..515923f2e97 100644 --- a/src/licensedcode/data/rules/other-permissive_229.RULE +++ b/src/licensedcode/data/rules/other-permissive_229.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is granted to copy and distribute translations of this reference card into another language, under the above conditions for modified versions, except that this permission notice may be stated in diff --git a/src/licensedcode/data/rules/other-permissive_229.yml b/src/licensedcode/data/rules/other-permissive_229.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_23.RULE b/src/licensedcode/data/rules/other-permissive_23.RULE index 2121417ab48..4778a8896f5 100644 --- a/src/licensedcode/data/rules/other-permissive_23.RULE +++ b/src/licensedcode/data/rules/other-permissive_23.RULE @@ -1,4 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +ignorable_authors: + - the contributors +--- + Redistribution and use in source and binary forms are permitted provided that this notice is preserved and due credit is given -to the original author and the contributors. - +to the original author and the contributors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_23.yml b/src/licensedcode/data/rules/other-permissive_23.yml deleted file mode 100644 index 7df04f0daeb..00000000000 --- a/src/licensedcode/data/rules/other-permissive_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -ignorable_authors: - - the contributors diff --git a/src/licensedcode/data/rules/other-permissive_230.RULE b/src/licensedcode/data/rules/other-permissive_230.RULE index 8f1e5ec89ed..8516c071ded 100644 --- a/src/licensedcode/data/rules/other-permissive_230.RULE +++ b/src/licensedcode/data/rules/other-permissive_230.RULE @@ -1,3 +1,15 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2001 Alexander Peslyak +ignorable_holders: + - Alexander Peslyak +ignorable_authors: + - Alexander Peslyak +--- + This software was written by Alexander Peslyak in 2001. No copyright is claimed, and the software is hereby placed in the public domain. In case this attempt to disclaim copyright and place the software in the public domain is deemed null and void, then the software is Copyright (c) 2001 Alexander Peslyak and it is hereby released to the general public under the following terms: Redistribution and use in source and binary forms, with or without modification, are permitted. diff --git a/src/licensedcode/data/rules/other-permissive_230.yml b/src/licensedcode/data/rules/other-permissive_230.yml deleted file mode 100644 index 9769b01e672..00000000000 --- a/src/licensedcode/data/rules/other-permissive_230.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2001 Alexander Peslyak -ignorable_holders: - - Alexander Peslyak -ignorable_authors: - - Alexander Peslyak diff --git a/src/licensedcode/data/rules/other-permissive_231.RULE b/src/licensedcode/data/rules/other-permissive_231.RULE index 207a94cc3a1..c7e2e9c4e3c 100644 --- a/src/licensedcode/data/rules/other-permissive_231.RULE +++ b/src/licensedcode/data/rules/other-permissive_231.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Redistribution, publication, translation and use, with or without modification, in full or in part, in any form or format of this document are permitted without further permission from the author. diff --git a/src/licensedcode/data/rules/other-permissive_231.yml b/src/licensedcode/data/rules/other-permissive_231.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_231.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_232.RULE b/src/licensedcode/data/rules/other-permissive_232.RULE index b39a2c40281..503394ba331 100644 --- a/src/licensedcode/data/rules/other-permissive_232.RULE +++ b/src/licensedcode/data/rules/other-permissive_232.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies. diff --git a/src/licensedcode/data/rules/other-permissive_232.yml b/src/licensedcode/data/rules/other-permissive_232.yml deleted file mode 100644 index 749a20df403..00000000000 --- a/src/licensedcode/data/rules/other-permissive_232.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_233.RULE b/src/licensedcode/data/rules/other-permissive_233.RULE index 99d41e3317b..75f4714ad50 100644 --- a/src/licensedcode/data/rules/other-permissive_233.RULE +++ b/src/licensedcode/data/rules/other-permissive_233.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD bmake +--- + This file is provided in the hope that it will be of use. There is absolutely NO WARRANTY. Permission to copy, redistribute or otherwise diff --git a/src/licensedcode/data/rules/other-permissive_233.yml b/src/licensedcode/data/rules/other-permissive_233.yml deleted file mode 100644 index 07f349dd4b4..00000000000 --- a/src/licensedcode/data/rules/other-permissive_233.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD bmake diff --git a/src/licensedcode/data/rules/other-permissive_234.RULE b/src/licensedcode/data/rules/other-permissive_234.RULE index 47aaff3cc1f..5bf87d87e73 100644 --- a/src/licensedcode/data/rules/other-permissive_234.RULE +++ b/src/licensedcode/data/rules/other-permissive_234.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD bmake +--- + This is free software. It comes with NO WARRANTY. Permission to use, modify and distribute this source code is granted subject to the following conditions. diff --git a/src/licensedcode/data/rules/other-permissive_234.yml b/src/licensedcode/data/rules/other-permissive_234.yml deleted file mode 100644 index 07f349dd4b4..00000000000 --- a/src/licensedcode/data/rules/other-permissive_234.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD bmake diff --git a/src/licensedcode/data/rules/other-permissive_235.RULE b/src/licensedcode/data/rules/other-permissive_235.RULE index ba0b7b89877..f03a2656801 100644 --- a/src/licensedcode/data/rules/other-permissive_235.RULE +++ b/src/licensedcode/data/rules/other-permissive_235.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + THIS MATERIAL IS PROVIDED "AS IS". THERE ARE NO WARRANTIES OF ANY KIND WITH REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO, THE diff --git a/src/licensedcode/data/rules/other-permissive_235.yml b/src/licensedcode/data/rules/other-permissive_235.yml deleted file mode 100644 index 749a20df403..00000000000 --- a/src/licensedcode/data/rules/other-permissive_235.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_236.RULE b/src/licensedcode/data/rules/other-permissive_236.RULE index 87cdf99d442..78a87cb773a 100644 --- a/src/licensedcode/data/rules/other-permissive_236.RULE +++ b/src/licensedcode/data/rules/other-permissive_236.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD ipfilter +ignorable_authors: + - the contributors +--- + The author accepts no responsibility for the use of this software and provides it on an ``as is'' basis without express or implied warranty. diff --git a/src/licensedcode/data/rules/other-permissive_236.yml b/src/licensedcode/data/rules/other-permissive_236.yml deleted file mode 100644 index de79710e3be..00000000000 --- a/src/licensedcode/data/rules/other-permissive_236.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD ipfilter -ignorable_authors: - - the contributors diff --git a/src/licensedcode/data/rules/other-permissive_237.RULE b/src/licensedcode/data/rules/other-permissive_237.RULE index 1d2713dcffc..402dbeca713 100644 --- a/src/licensedcode/data/rules/other-permissive_237.RULE +++ b/src/licensedcode/data/rules/other-permissive_237.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD ipfilter +ignorable_authors: + - the contributors +--- + The author accepts no responsibility for the use of this software and provides it on an ``as is'' basis without express or implied warranty. diff --git a/src/licensedcode/data/rules/other-permissive_237.yml b/src/licensedcode/data/rules/other-permissive_237.yml deleted file mode 100644 index de79710e3be..00000000000 --- a/src/licensedcode/data/rules/other-permissive_237.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD ipfilter -ignorable_authors: - - the contributors diff --git a/src/licensedcode/data/rules/other-permissive_238.RULE b/src/licensedcode/data/rules/other-permissive_238.RULE index c88a42f629c..7af9b5fbf2b 100644 --- a/src/licensedcode/data/rules/other-permissive_238.RULE +++ b/src/licensedcode/data/rules/other-permissive_238.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD ipfilter +ignorable_authors: + - the contributors +--- + Redistribution and use in source and binary forms are permitted provided that this notice is preserved and due credit is given to the original author and the contributors. diff --git a/src/licensedcode/data/rules/other-permissive_238.yml b/src/licensedcode/data/rules/other-permissive_238.yml deleted file mode 100644 index de79710e3be..00000000000 --- a/src/licensedcode/data/rules/other-permissive_238.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD ipfilter -ignorable_authors: - - the contributors diff --git a/src/licensedcode/data/rules/other-permissive_239.RULE b/src/licensedcode/data/rules/other-permissive_239.RULE index 94e70e8ba84..650a8936c32 100644 --- a/src/licensedcode/data/rules/other-permissive_239.RULE +++ b/src/licensedcode/data/rules/other-permissive_239.RULE @@ -1 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - IPFILTER.LICENCE +--- + See the IPFILTER.LICENCE file for details on licencing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_239.yml b/src/licensedcode/data/rules/other-permissive_239.yml deleted file mode 100644 index 3c17a27efad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_239.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - IPFILTER.LICENCE diff --git a/src/licensedcode/data/rules/other-permissive_24.RULE b/src/licensedcode/data/rules/other-permissive_24.RULE index 702c1dc7664..380645538be 100644 --- a/src/licensedcode/data/rules/other-permissive_24.RULE +++ b/src/licensedcode/data/rules/other-permissive_24.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 99 +--- + * Status : Public Domain, retain notice of * * original author. No liabilities * * accepted. Use at own risk. * @@ -6,4 +12,4 @@ * program implies agreement with * * this notice. * * Software or gifts greatfully * - * accepted ;-) \ No newline at end of file + * accepted ;-) \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_24.yml b/src/licensedcode/data/rules/other-permissive_24.yml deleted file mode 100644 index b75a9892837..00000000000 --- a/src/licensedcode/data/rules/other-permissive_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/other-permissive_240.RULE b/src/licensedcode/data/rules/other-permissive_240.RULE index da39876425f..583463a6a30 100644 --- a/src/licensedcode/data/rules/other-permissive_240.RULE +++ b/src/licensedcode/data/rules/other-permissive_240.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + This is not a product of Sun Microsystems, and is provided "as is", without warranty of any kind expressed or implied including, but not limited to, the suitability of this script for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_240.yml b/src/licensedcode/data/rules/other-permissive_240.yml deleted file mode 100644 index 749a20df403..00000000000 --- a/src/licensedcode/data/rules/other-permissive_240.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_241.RULE b/src/licensedcode/data/rules/other-permissive_241.RULE index 7be61be1ec3..bb613488c72 100644 --- a/src/licensedcode/data/rules/other-permissive_241.RULE +++ b/src/licensedcode/data/rules/other-permissive_241.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in mailprio +--- + Rights are hereby granted to download, use, modify, sell, copy, and redistribute this software so long as the original copyright notice and this list of conditions remain intact and modified versions are diff --git a/src/licensedcode/data/rules/other-permissive_241.yml b/src/licensedcode/data/rules/other-permissive_241.yml deleted file mode 100644 index 123ecb74578..00000000000 --- a/src/licensedcode/data/rules/other-permissive_241.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in mailprio diff --git a/src/licensedcode/data/rules/other-permissive_242.RULE b/src/licensedcode/data/rules/other-permissive_242.RULE index e1fddfb4874..bd877492f2f 100644 --- a/src/licensedcode/data/rules/other-permissive_242.RULE +++ b/src/licensedcode/data/rules/other-permissive_242.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in mailprio +--- + Rights are hereby granted to download, use, modify, sell, copy, and redistribute this software so long as the original copyright notice and this list of conditions remain intact and modified versions are diff --git a/src/licensedcode/data/rules/other-permissive_242.yml b/src/licensedcode/data/rules/other-permissive_242.yml deleted file mode 100644 index 123ecb74578..00000000000 --- a/src/licensedcode/data/rules/other-permissive_242.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in mailprio diff --git a/src/licensedcode/data/rules/other-permissive_243.RULE b/src/licensedcode/data/rules/other-permissive_243.RULE index 27807c2c09b..bcb518272c9 100644 --- a/src/licensedcode/data/rules/other-permissive_243.RULE +++ b/src/licensedcode/data/rules/other-permissive_243.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in mailprio +--- + Rights are hereby granted to download, use, modify, sell, copy, and redistribute this software so long as the original copyright notice and this list of conditions remain intact and modified versions are diff --git a/src/licensedcode/data/rules/other-permissive_243.yml b/src/licensedcode/data/rules/other-permissive_243.yml deleted file mode 100644 index 123ecb74578..00000000000 --- a/src/licensedcode/data/rules/other-permissive_243.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in mailprio diff --git a/src/licensedcode/data/rules/other-permissive_244.RULE b/src/licensedcode/data/rules/other-permissive_244.RULE index 9688d10245a..97bdb33318f 100644 --- a/src/licensedcode/data/rules/other-permissive_244.RULE +++ b/src/licensedcode/data/rules/other-permissive_244.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in sendmail contrib +--- + Permission to use, copy, modify and distribute without charge this software, documentation, etc. is granted, provided that this comment and the author's name is retained. The author nor Motorola assume any diff --git a/src/licensedcode/data/rules/other-permissive_244.yml b/src/licensedcode/data/rules/other-permissive_244.yml deleted file mode 100644 index be1b2c954f2..00000000000 --- a/src/licensedcode/data/rules/other-permissive_244.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in sendmail contrib diff --git a/src/licensedcode/data/rules/other-permissive_245.RULE b/src/licensedcode/data/rules/other-permissive_245.RULE index 60ce859388c..3935079db30 100644 --- a/src/licensedcode/data/rules/other-permissive_245.RULE +++ b/src/licensedcode/data/rules/other-permissive_245.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in tcpdump +--- + Permission to use, copy, and modify this software and its documentation is hereby granted only under the following terms and conditions. Both the above copyright notice and this permission diff --git a/src/licensedcode/data/rules/other-permissive_245.yml b/src/licensedcode/data/rules/other-permissive_245.yml deleted file mode 100644 index 41883b8a4cb..00000000000 --- a/src/licensedcode/data/rules/other-permissive_245.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in tcpdump diff --git a/src/licensedcode/data/rules/other-permissive_246.RULE b/src/licensedcode/data/rules/other-permissive_246.RULE index 3714554906e..ceff53e2894 100644 --- a/src/licensedcode/data/rules/other-permissive_246.RULE +++ b/src/licensedcode/data/rules/other-permissive_246.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: an apache-2.0 license moified with an extra section 10 +ignorable_urls: + - https://www.apache.org/licenses/ +--- + BLUEPRINT LICENSE based on Apache 2.0 License Note: Paragraph 10 is the only modification. @@ -187,5 +195,4 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION endorsed, or promoted by Palantir Technologies Inc. or its Contributors. -END OF TERMS AND CONDITIONS - +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_246.yml b/src/licensedcode/data/rules/other-permissive_246.yml deleted file mode 100644 index 7ae8393a3a8..00000000000 --- a/src/licensedcode/data/rules/other-permissive_246.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: an apache-2.0 license moified with an extra section 10 -ignorable_urls: - - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/other-permissive_247.RULE b/src/licensedcode/data/rules/other-permissive_247.RULE index 85ca4020454..5de78f4f910 100644 --- a/src/licensedcode/data/rules/other-permissive_247.RULE +++ b/src/licensedcode/data/rules/other-permissive_247.RULE @@ -1,3 +1,13 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: http://www.globus.org/toolkit/license.html +ignorable_urls: + - http://www.globus.org/toolkit/license.html + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Globus Toolkit Public License (GTPL) Version 3 Globus(R) Toolkit Public License @@ -212,5 +222,4 @@ Globus Toolkit Public License (GTPL) Version 3 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. - + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_247.yml b/src/licensedcode/data/rules/other-permissive_247.yml deleted file mode 100644 index d616c821044..00000000000 --- a/src/licensedcode/data/rules/other-permissive_247.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: http://www.globus.org/toolkit/license.html -ignorable_urls: - - http://www.globus.org/toolkit/license.html - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/other-permissive_248.RULE b/src/licensedcode/data/rules/other-permissive_248.RULE index 400963d54b9..a711cabca3e 100644 --- a/src/licensedcode/data/rules/other-permissive_248.RULE +++ b/src/licensedcode/data/rules/other-permissive_248.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD lib/libc/ and lib/libutil/ +--- + Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_248.yml b/src/licensedcode/data/rules/other-permissive_248.yml deleted file mode 100644 index 1fc7cb7f60e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_248.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD lib/libc/ and lib/libutil/ diff --git a/src/licensedcode/data/rules/other-permissive_249.RULE b/src/licensedcode/data/rules/other-permissive_249.RULE index 02454c11ec7..c177b0317f5 100644 --- a/src/licensedcode/data/rules/other-permissive_249.RULE +++ b/src/licensedcode/data/rules/other-permissive_249.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD lib/libc/ and lib/libutil/ +--- + Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_249.yml b/src/licensedcode/data/rules/other-permissive_249.yml deleted file mode 100644 index 1fc7cb7f60e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_249.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD lib/libc/ and lib/libutil/ diff --git a/src/licensedcode/data/rules/other-permissive_25.RULE b/src/licensedcode/data/rules/other-permissive_25.RULE index 452b70f969f..b17fb008d72 100644 --- a/src/licensedcode/data/rules/other-permissive_25.RULE +++ b/src/licensedcode/data/rules/other-permissive_25.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Redistribution and use in source forms, with and without modification, are permitted provided that this entire comment appears intact. @@ -5,4 +10,4 @@ Obviously, it would be nice if you gave credit where credit is due but requiring it would be too onerous. - This software is provided ``AS IS'' without any warranties of any kind. + This software is provided ``AS IS'' without any warranties of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_25.yml b/src/licensedcode/data/rules/other-permissive_25.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_250.RULE b/src/licensedcode/data/rules/other-permissive_250.RULE index 929a3bd989f..eaf39b0cc13 100644 --- a/src/licensedcode/data/rules/other-permissive_250.RULE +++ b/src/licensedcode/data/rules/other-permissive_250.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD lib/libc/ and lib/libutil/ +--- + Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_250.yml b/src/licensedcode/data/rules/other-permissive_250.yml deleted file mode 100644 index 1fc7cb7f60e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_250.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD lib/libc/ and lib/libutil/ diff --git a/src/licensedcode/data/rules/other-permissive_251.RULE b/src/licensedcode/data/rules/other-permissive_251.RULE index 42f6c428642..9d00eb59a3e 100644 --- a/src/licensedcode/data/rules/other-permissive_251.RULE +++ b/src/licensedcode/data/rules/other-permissive_251.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD lib/libc/ and lib/libutil/ +--- + Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_251.yml b/src/licensedcode/data/rules/other-permissive_251.yml deleted file mode 100644 index 1fc7cb7f60e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_251.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD lib/libc/ and lib/libutil/ diff --git a/src/licensedcode/data/rules/other-permissive_252.RULE b/src/licensedcode/data/rules/other-permissive_252.RULE index b7736160326..bc211350896 100644 --- a/src/licensedcode/data/rules/other-permissive_252.RULE +++ b/src/licensedcode/data/rules/other-permissive_252.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This script has NO WARRANTY, NO BUG FIXES, and NO SUPPORT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_252.yml b/src/licensedcode/data/rules/other-permissive_252.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_253.RULE b/src/licensedcode/data/rules/other-permissive_253.RULE index 3d52818944a..6221cb241c3 100644 --- a/src/licensedcode/data/rules/other-permissive_253.RULE +++ b/src/licensedcode/data/rules/other-permissive_253.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This code may be freely copied and used and incorporated in other systems providing the disclaimer and notice of authorship are reproduced. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_253.yml b/src/licensedcode/data/rules/other-permissive_253.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_253.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_254.RULE b/src/licensedcode/data/rules/other-permissive_254.RULE index 07f0d120929..bdcf23bb113 100644 --- a/src/licensedcode/data/rules/other-permissive_254.RULE +++ b/src/licensedcode/data/rules/other-permissive_254.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + THIS CODE IS SUPPLIED AS IS, WITH NO WARRANTY OF ANY KIND. USE AT YOUR OWN RISK. diff --git a/src/licensedcode/data/rules/other-permissive_254.yml b/src/licensedcode/data/rules/other-permissive_254.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_254.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_255.RULE b/src/licensedcode/data/rules/other-permissive_255.RULE index acf16acefc6..3c7f013125a 100644 --- a/src/licensedcode/data/rules/other-permissive_255.RULE +++ b/src/licensedcode/data/rules/other-permissive_255.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Highpoint driver notice +--- + NO WARRANTY THE DRIVER SOURCE CODE PROVIDED IS FREE OF CHARGE, AND THERE IS diff --git a/src/licensedcode/data/rules/other-permissive_255.yml b/src/licensedcode/data/rules/other-permissive_255.yml deleted file mode 100644 index b29d617104e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_255.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Highpoint driver notice diff --git a/src/licensedcode/data/rules/other-permissive_256.RULE b/src/licensedcode/data/rules/other-permissive_256.RULE index a0fbb281d34..cefb87325d0 100644 --- a/src/licensedcode/data/rules/other-permissive_256.RULE +++ b/src/licensedcode/data/rules/other-permissive_256.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Permission is hereby granted to reproduce and distribute ncurses by any means and for any fee, whether alone or as part of a larger distribution, in source or in binary form, PROVIDED diff --git a/src/licensedcode/data/rules/other-permissive_256.yml b/src/licensedcode/data/rules/other-permissive_256.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_256.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_257.RULE b/src/licensedcode/data/rules/other-permissive_257.RULE index 5379ef33a67..d99824a80c9 100644 --- a/src/licensedcode/data/rules/other-permissive_257.RULE +++ b/src/licensedcode/data/rules/other-permissive_257.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_257.yml b/src/licensedcode/data/rules/other-permissive_257.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_257.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_258.RULE b/src/licensedcode/data/rules/other-permissive_258.RULE index 0f23e93ed6f..1488e060dea 100644 --- a/src/licensedcode/data/rules/other-permissive_258.RULE +++ b/src/licensedcode/data/rules/other-permissive_258.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Redistribution and use of this code, in source or binary forms, with or without modification, are permitted subject to the following conditions: diff --git a/src/licensedcode/data/rules/other-permissive_258.yml b/src/licensedcode/data/rules/other-permissive_258.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_258.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_259.RULE b/src/licensedcode/data/rules/other-permissive_259.RULE index 395a2fe429d..a7f26672c20 100644 --- a/src/licensedcode/data/rules/other-permissive_259.RULE +++ b/src/licensedcode/data/rules/other-permissive_259.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Anyone may use or copy this software except that this copyright notice remain intact and that credit is given where it is due. The University of and the author make no warranty and diff --git a/src/licensedcode/data/rules/other-permissive_259.yml b/src/licensedcode/data/rules/other-permissive_259.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_259.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_26.RULE b/src/licensedcode/data/rules/other-permissive_26.RULE index be0d6d004a9..efa4bbd6aec 100644 --- a/src/licensedcode/data/rules/other-permissive_26.RULE +++ b/src/licensedcode/data/rules/other-permissive_26.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: Seen in ActiveMQ +--- + Permission to use, copy, modify and distribute UnixCrypt for non-commercial or commercial purposes and without fee is granted provided that the copyright notice appears in all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_26.yml b/src/licensedcode/data/rules/other-permissive_26.yml deleted file mode 100644 index 2f92f069c24..00000000000 --- a/src/licensedcode/data/rules/other-permissive_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: Seen in ActiveMQ diff --git a/src/licensedcode/data/rules/other-permissive_260.RULE b/src/licensedcode/data/rules/other-permissive_260.RULE index 44f6f128432..a3d877a1caf 100644 --- a/src/licensedcode/data/rules/other-permissive_260.RULE +++ b/src/licensedcode/data/rules/other-permissive_260.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Anyone may use or copy this software except that this copyright notice remain intact and that credit is given where it is due. The University of Toronto and the author make no warranty and diff --git a/src/licensedcode/data/rules/other-permissive_260.yml b/src/licensedcode/data/rules/other-permissive_260.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_260.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_261.RULE b/src/licensedcode/data/rules/other-permissive_261.RULE index a0890e7302d..d9f87578b66 100644 --- a/src/licensedcode/data/rules/other-permissive_261.RULE +++ b/src/licensedcode/data/rules/other-permissive_261.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_261.yml b/src/licensedcode/data/rules/other-permissive_261.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_261.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_262.RULE b/src/licensedcode/data/rules/other-permissive_262.RULE index 1d9da15a7be..0678e783a8e 100644 --- a/src/licensedcode/data/rules/other-permissive_262.RULE +++ b/src/licensedcode/data/rules/other-permissive_262.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appears in all copies. diff --git a/src/licensedcode/data/rules/other-permissive_262.yml b/src/licensedcode/data/rules/other-permissive_262.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_262.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_263.RULE b/src/licensedcode/data/rules/other-permissive_263.RULE index 87be2f092c4..d164fba3cc4 100644 --- a/src/licensedcode/data/rules/other-permissive_263.RULE +++ b/src/licensedcode/data/rules/other-permissive_263.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in FreeBSD +--- + Disclaimer: It is hoped that it is useful but there is no warranty. If it breaks you get to keep both pieces. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_263.yml b/src/licensedcode/data/rules/other-permissive_263.yml deleted file mode 100644 index 9eabdbe3184..00000000000 --- a/src/licensedcode/data/rules/other-permissive_263.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_264.RULE b/src/licensedcode/data/rules/other-permissive_264.RULE index d00d87265ac..98cd3ce92f6 100644 --- a/src/licensedcode/data/rules/other-permissive_264.RULE +++ b/src/licensedcode/data/rules/other-permissive_264.RULE @@ -1 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + under a permissive license, see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_264.yml b/src/licensedcode/data/rules/other-permissive_264.yml deleted file mode 100644 index 68904ae1fd2..00000000000 --- a/src/licensedcode/data/rules/other-permissive_264.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_265.RULE b/src/licensedcode/data/rules/other-permissive_265.RULE index 079116a61cb..368b40216b7 100644 --- a/src/licensedcode/data/rules/other-permissive_265.RULE +++ b/src/licensedcode/data/rules/other-permissive_265.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + under a permissive license \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_265.yml b/src/licensedcode/data/rules/other-permissive_265.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_266.RULE b/src/licensedcode/data/rules/other-permissive_266.RULE index 862bb7c72d2..4a80cfd76ee 100644 --- a/src/licensedcode/data/rules/other-permissive_266.RULE +++ b/src/licensedcode/data/rules/other-permissive_266.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + This software is provided free of charge, with no warranty of any kind, either expressed or implied. Use at your own risk. diff --git a/src/licensedcode/data/rules/other-permissive_266.yml b/src/licensedcode/data/rules/other-permissive_266.yml deleted file mode 100644 index 749a20df403..00000000000 --- a/src/licensedcode/data/rules/other-permissive_266.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_267.RULE b/src/licensedcode/data/rules/other-permissive_267.RULE index 50aad9fc650..d4aa63e4ee2 100644 --- a/src/licensedcode/data/rules/other-permissive_267.RULE +++ b/src/licensedcode/data/rules/other-permissive_267.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + This software is provided free of charge, with no warranty of any kind, either expressed or implied. Use at your own risk. diff --git a/src/licensedcode/data/rules/other-permissive_267.yml b/src/licensedcode/data/rules/other-permissive_267.yml deleted file mode 100644 index 749a20df403..00000000000 --- a/src/licensedcode/data/rules/other-permissive_267.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_268.RULE b/src/licensedcode/data/rules/other-permissive_268.RULE index 17bd7d241e9..a81a2ac3bf4 100644 --- a/src/licensedcode/data/rules/other-permissive_268.RULE +++ b/src/licensedcode/data/rules/other-permissive_268.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + This software is provided free of charge, with no warranty of any kind, either expressed or implied. Use at your own risk. diff --git a/src/licensedcode/data/rules/other-permissive_268.yml b/src/licensedcode/data/rules/other-permissive_268.yml deleted file mode 100644 index 749a20df403..00000000000 --- a/src/licensedcode/data/rules/other-permissive_268.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_269.RULE b/src/licensedcode/data/rules/other-permissive_269.RULE index 5113d822416..ed4c0d20171 100644 --- a/src/licensedcode/data/rules/other-permissive_269.RULE +++ b/src/licensedcode/data/rules/other-permissive_269.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + This software is distributed with NO WARRANTIES, not even the implied warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. diff --git a/src/licensedcode/data/rules/other-permissive_269.yml b/src/licensedcode/data/rules/other-permissive_269.yml deleted file mode 100644 index 749a20df403..00000000000 --- a/src/licensedcode/data/rules/other-permissive_269.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_27.RULE b/src/licensedcode/data/rules/other-permissive_27.RULE index 4be1d9410f3..5a4ba040ed1 100644 --- a/src/licensedcode/data/rules/other-permissive_27.RULE +++ b/src/licensedcode/data/rules/other-permissive_27.RULE @@ -1,4 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: Seen in ActiveMQ +--- + * Permission to use, copy, modify and distribute this software * for non-commercial or commercial purposes and without fee is * hereby granted provided that this copyright notice appears in - * all copies. + * all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_27.yml b/src/licensedcode/data/rules/other-permissive_27.yml deleted file mode 100644 index 2f92f069c24..00000000000 --- a/src/licensedcode/data/rules/other-permissive_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: Seen in ActiveMQ diff --git a/src/licensedcode/data/rules/other-permissive_270.RULE b/src/licensedcode/data/rules/other-permissive_270.RULE index de43d4be35d..a1ab0235705 100644 --- a/src/licensedcode/data/rules/other-permissive_270.RULE +++ b/src/licensedcode/data/rules/other-permissive_270.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + You can do anything you want with this software, just don't say you wrote it, and don't remove this notice. diff --git a/src/licensedcode/data/rules/other-permissive_270.yml b/src/licensedcode/data/rules/other-permissive_270.yml deleted file mode 100644 index 749a20df403..00000000000 --- a/src/licensedcode/data/rules/other-permissive_270.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_271.RULE b/src/licensedcode/data/rules/other-permissive_271.RULE index 513e06e73ea..65b6f5e895e 100644 --- a/src/licensedcode/data/rules/other-permissive_271.RULE +++ b/src/licensedcode/data/rules/other-permissive_271.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + Digital Equipment Corporation make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_271.yml b/src/licensedcode/data/rules/other-permissive_271.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_272.RULE b/src/licensedcode/data/rules/other-permissive_272.RULE index d5c80cf4cf9..ed942efa301 100644 --- a/src/licensedcode/data/rules/other-permissive_272.RULE +++ b/src/licensedcode/data/rules/other-permissive_272.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + Corporation make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_272.yml b/src/licensedcode/data/rules/other-permissive_272.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_273.RULE b/src/licensedcode/data/rules/other-permissive_273.RULE index 62e13795195..232b2360e3a 100644 --- a/src/licensedcode/data/rules/other-permissive_273.RULE +++ b/src/licensedcode/data/rules/other-permissive_273.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_273.yml b/src/licensedcode/data/rules/other-permissive_273.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_274.RULE b/src/licensedcode/data/rules/other-permissive_274.RULE index d2238d87be3..bfee8fcb726 100644 --- a/src/licensedcode/data/rules/other-permissive_274.RULE +++ b/src/licensedcode/data/rules/other-permissive_274.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_274.yml b/src/licensedcode/data/rules/other-permissive_274.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_275.RULE b/src/licensedcode/data/rules/other-permissive_275.RULE index 142c104a35a..4c834c3bfa3 100644 --- a/src/licensedcode/data/rules/other-permissive_275.RULE +++ b/src/licensedcode/data/rules/other-permissive_275.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: https://fedoraproject.org/wiki/Licensing/CPM +--- + Let this email represent a right to use, distribute, modify, enhance and otherwise make available in a nonexclusive manner the CP/M technology as part of the "Unofficial CP/M Web Site" with its maintainers, developers and diff --git a/src/licensedcode/data/rules/other-permissive_275.yml b/src/licensedcode/data/rules/other-permissive_275.yml deleted file mode 100644 index 432a249012a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_275.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: https://fedoraproject.org/wiki/Licensing/CPM diff --git a/src/licensedcode/data/rules/other-permissive_276.RULE b/src/licensedcode/data/rules/other-permissive_276.RULE index 7d7d447c079..39c2f9c57a8 100644 --- a/src/licensedcode/data/rules/other-permissive_276.RULE +++ b/src/licensedcode/data/rules/other-permissive_276.RULE @@ -1,3 +1,13 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: | + This is the original license used in STP (simple theorem prover) circa 2005 + It was replaced by the MIT circa 2008. + See https://sourceforge.net/projects/stp-fast-prover and https://stp.github.io/ +--- + License to use, copy, modify, sell and/or distribute this software and its documentation for any purpose is hereby granted without royalty, subject to the terms and conditions defined in the ef diff --git a/src/licensedcode/data/rules/other-permissive_276.yml b/src/licensedcode/data/rules/other-permissive_276.yml deleted file mode 100644 index dfee73b7d29..00000000000 --- a/src/licensedcode/data/rules/other-permissive_276.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: | - This is the original license used in STP (simple theorem prover) circa 2005 - It was replaced by the MIT circa 2008. - See https://sourceforge.net/projects/stp-fast-prover and https://stp.github.io/ diff --git a/src/licensedcode/data/rules/other-permissive_277.RULE b/src/licensedcode/data/rules/other-permissive_277.RULE index c5470ffd602..6c28fae19fb 100644 --- a/src/licensedcode/data/rules/other-permissive_277.RULE +++ b/src/licensedcode/data/rules/other-permissive_277.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: See in debian copyright file for dpkg +--- + May be used and distributed freely for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_277.yml b/src/licensedcode/data/rules/other-permissive_277.yml deleted file mode 100644 index d3bacdbf31c..00000000000 --- a/src/licensedcode/data/rules/other-permissive_277.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: See in debian copyright file for dpkg diff --git a/src/licensedcode/data/rules/other-permissive_278.RULE b/src/licensedcode/data/rules/other-permissive_278.RULE index 8299ac91dfb..42e3bb10cab 100644 --- a/src/licensedcode/data/rules/other-permissive_278.RULE +++ b/src/licensedcode/data/rules/other-permissive_278.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + The examples are under a very liberal license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_278.yml b/src/licensedcode/data/rules/other-permissive_278.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_279.RULE b/src/licensedcode/data/rules/other-permissive_279.RULE index 13c84519733..6e3c20706cb 100644 --- a/src/licensedcode/data/rules/other-permissive_279.RULE +++ b/src/licensedcode/data/rules/other-permissive_279.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Non nuclear +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted, provided that this copyright notice is kept intact. diff --git a/src/licensedcode/data/rules/other-permissive_279.yml b/src/licensedcode/data/rules/other-permissive_279.yml deleted file mode 100644 index f5d44836fc0..00000000000 --- a/src/licensedcode/data/rules/other-permissive_279.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Non nuclear diff --git a/src/licensedcode/data/rules/other-permissive_28.RULE b/src/licensedcode/data/rules/other-permissive_28.RULE index e2cfc59bba9..8084b221ca6 100644 --- a/src/licensedcode/data/rules/other-permissive_28.RULE +++ b/src/licensedcode/data/rules/other-permissive_28.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + # This configure script is free software: you have unlimited permission -# to copy, distribute and modify it. +# to copy, distribute and modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_28.yml b/src/licensedcode/data/rules/other-permissive_28.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_280.RULE b/src/licensedcode/data/rules/other-permissive_280.RULE index 739d65711b6..a5f0caecb9b 100644 --- a/src/licensedcode/data/rules/other-permissive_280.RULE +++ b/src/licensedcode/data/rules/other-permissive_280.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: seen in https://github.com/ap/Text-Tabs/blob/master/lib.old/Text/Wrap.pm and https://github.com/ap/Text-Tabs/blob/master/lib.modern/Text/Wrap.pm + Fedora RPMS calls this the TTWL license +--- + This module may be modified, used, copied, and redistributed at your own risk. Although allowed by the preceding license, please do not publicly redistribute modified versions of this code with the name "Text::Wrap" diff --git a/src/licensedcode/data/rules/other-permissive_280.yml b/src/licensedcode/data/rules/other-permissive_280.yml deleted file mode 100644 index 23be6a0f322..00000000000 --- a/src/licensedcode/data/rules/other-permissive_280.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: seen in https://github.com/ap/Text-Tabs/blob/master/lib.old/Text/Wrap.pm and https://github.com/ap/Text-Tabs/blob/master/lib.modern/Text/Wrap.pm - Fedora RPMS calls this the TTWL license diff --git a/src/licensedcode/data/rules/other-permissive_281.RULE b/src/licensedcode/data/rules/other-permissive_281.RULE index e9cb67e89ec..cd295155d81 100644 --- a/src/licensedcode/data/rules/other-permissive_281.RULE +++ b/src/licensedcode/data/rules/other-permissive_281.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + / module is an open source software. Redistribution and use of in / source and binary forms, with or without modification, are permitted provided / that the following condition is met: diff --git a/src/licensedcode/data/rules/other-permissive_281.yml b/src/licensedcode/data/rules/other-permissive_281.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_281.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_282.RULE b/src/licensedcode/data/rules/other-permissive_282.RULE index a59618ba17b..20452786f77 100644 --- a/src/licensedcode/data/rules/other-permissive_282.RULE +++ b/src/licensedcode/data/rules/other-permissive_282.RULE @@ -1,2 +1,12 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: in x11 legacy +ignorable_authors: + - FUJITSU LIMITED +--- + This is source code modified by FUJITSU LIMITED under the Joint Development Agreement for the CDE/Motif PST. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_282.yml b/src/licensedcode/data/rules/other-permissive_282.yml deleted file mode 100644 index f427b182873..00000000000 --- a/src/licensedcode/data/rules/other-permissive_282.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: in x11 legacy -ignorable_authors: - - FUJITSU LIMITED diff --git a/src/licensedcode/data/rules/other-permissive_283.RULE b/src/licensedcode/data/rules/other-permissive_283.RULE index e0a5be8c81b..fe05656c10a 100644 --- a/src/licensedcode/data/rules/other-permissive_283.RULE +++ b/src/licensedcode/data/rules/other-permissive_283.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_283.yml b/src/licensedcode/data/rules/other-permissive_283.yml deleted file mode 100644 index 67013219457..00000000000 --- a/src/licensedcode/data/rules/other-permissive_283.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/other-permissive_284.RULE b/src/licensedcode/data/rules/other-permissive_284.RULE index aaea8929ca4..dc4cc0fb2b8 100644 --- a/src/licensedcode/data/rules/other-permissive_284.RULE +++ b/src/licensedcode/data/rules/other-permissive_284.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + The ENABLE master word list, WORD.LST, is herewith formally released into the Public Domain. Anyone is free to use it or distribute it in any manner they see fit. No fee or registration is required for its diff --git a/src/licensedcode/data/rules/other-permissive_284.yml b/src/licensedcode/data/rules/other-permissive_284.yml deleted file mode 100644 index 67013219457..00000000000 --- a/src/licensedcode/data/rules/other-permissive_284.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/other-permissive_285.RULE b/src/licensedcode/data/rules/other-permissive_285.RULE index 6547502d2be..acc7b15e747 100644 --- a/src/licensedcode/data/rules/other-permissive_285.RULE +++ b/src/licensedcode/data/rules/other-permissive_285.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/tats/w3m/blob/master/COPYING +--- + Use, modification and redistribution of this software is hereby granted, provided that this entire copyright notice is included on any copies of this software and applications and derivations thereof. diff --git a/src/licensedcode/data/rules/other-permissive_285.yml b/src/licensedcode/data/rules/other-permissive_285.yml deleted file mode 100644 index aa4a48d965e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_285.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/tats/w3m/blob/master/COPYING diff --git a/src/licensedcode/data/rules/other-permissive_286.RULE b/src/licensedcode/data/rules/other-permissive_286.RULE index 9ec527b2e6a..b41d84f4764 100644 --- a/src/licensedcode/data/rules/other-permissive_286.RULE +++ b/src/licensedcode/data/rules/other-permissive_286.RULE @@ -1,3 +1,13 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: | + Seen in xkb/symbols/hu + aka XKB layout for some widely used Hungarian keyboard layouts +--- + Permission is granted to anyone to use, distribute and modify this file in any way, provided that the above copyright notice is left intact and the author of the modification summarizes diff --git a/src/licensedcode/data/rules/other-permissive_286.yml b/src/licensedcode/data/rules/other-permissive_286.yml deleted file mode 100644 index e0199925473..00000000000 --- a/src/licensedcode/data/rules/other-permissive_286.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: | - Seen in xkb/symbols/hu - aka XKB layout for some widely used Hungarian keyboard layouts diff --git a/src/licensedcode/data/rules/other-permissive_287.RULE b/src/licensedcode/data/rules/other-permissive_287.RULE index 64381d8a2e4..12f2fec0e86 100644 --- a/src/licensedcode/data/rules/other-permissive_287.RULE +++ b/src/licensedcode/data/rules/other-permissive_287.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Found in old Info-zip +--- + distributed under the following license terms: "You may incorporate this sample code into your diff --git a/src/licensedcode/data/rules/other-permissive_287.yml b/src/licensedcode/data/rules/other-permissive_287.yml deleted file mode 100644 index 7f26142f318..00000000000 --- a/src/licensedcode/data/rules/other-permissive_287.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Found in old Info-zip diff --git a/src/licensedcode/data/rules/other-permissive_288.RULE b/src/licensedcode/data/rules/other-permissive_288.RULE index 27f7933d040..1d3e2dbed30 100644 --- a/src/licensedcode/data/rules/other-permissive_288.RULE +++ b/src/licensedcode/data/rules/other-permissive_288.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Found in old Info-zip +--- + "You may incorporate this sample code into your applications without restriction, though the sample code has been provided "AS IS" and the diff --git a/src/licensedcode/data/rules/other-permissive_288.yml b/src/licensedcode/data/rules/other-permissive_288.yml deleted file mode 100644 index 7f26142f318..00000000000 --- a/src/licensedcode/data/rules/other-permissive_288.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Found in old Info-zip diff --git a/src/licensedcode/data/rules/other-permissive_289.RULE b/src/licensedcode/data/rules/other-permissive_289.RULE index 09fe3fa67f1..80df3a34836 100644 --- a/src/licensedcode/data/rules/other-permissive_289.RULE +++ b/src/licensedcode/data/rules/other-permissive_289.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Rare Intel notice, derived from X11-like licenses. Seen in Michael E. Kounavis and Frank + L. Berry document titled "A Systematic Approach to Building High Performance, Software-based, + CRC Generators" +--- + THIS DOCUMENT IS PROVIDED "AS IS" WITH NO WARRANTIES WHATSOEVER, INCLUDING ANY WARRANTY OF MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR ANY PARTICULAR PURPOSE, OR ANY WARRANTY OTHERWISE ARISING OUT OF ANY PROPOSAL, SPECIFICATION OR diff --git a/src/licensedcode/data/rules/other-permissive_289.yml b/src/licensedcode/data/rules/other-permissive_289.yml deleted file mode 100644 index 73ee4285531..00000000000 --- a/src/licensedcode/data/rules/other-permissive_289.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Rare Intel notice, derived from X11-like licenses. Seen in Michael E. Kounavis and Frank - L. Berry document titled "A Systematic Approach to Building High Performance, Software-based, - CRC Generators" diff --git a/src/licensedcode/data/rules/other-permissive_29.RULE b/src/licensedcode/data/rules/other-permissive_29.RULE index a6b6dde802a..d171703599d 100644 --- a/src/licensedcode/data/rules/other-permissive_29.RULE +++ b/src/licensedcode/data/rules/other-permissive_29.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This file is free documentation: you have unlimited permission to copy, distribute and modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_29.yml b/src/licensedcode/data/rules/other-permissive_29.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_290.RULE b/src/licensedcode/data/rules/other-permissive_290.RULE index d425bf8b9b4..739cb2cafcd 100644 --- a/src/licensedcode/data/rules/other-permissive_290.RULE +++ b/src/licensedcode/data/rules/other-permissive_290.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: seen in legacy older release 9wm by David Hogan. +--- + Permission is granted to all sentient beings to use this software, to make copies of it, and to distribute those copies, provided that: (1) the copyright and licence notices are left intact diff --git a/src/licensedcode/data/rules/other-permissive_290.yml b/src/licensedcode/data/rules/other-permissive_290.yml deleted file mode 100644 index 025a3b2b0b8..00000000000 --- a/src/licensedcode/data/rules/other-permissive_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: seen in legacy older release 9wm by David Hogan. diff --git a/src/licensedcode/data/rules/other-permissive_291.RULE b/src/licensedcode/data/rules/other-permissive_291.RULE index 9cf4578344a..884f00a6596 100644 --- a/src/licensedcode/data/rules/other-permissive_291.RULE +++ b/src/licensedcode/data/rules/other-permissive_291.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + * Permission is granted to distribute, modify and use this program as long * as this comment is not removed or changed. * diff --git a/src/licensedcode/data/rules/other-permissive_291.yml b/src/licensedcode/data/rules/other-permissive_291.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_291.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_292.RULE b/src/licensedcode/data/rules/other-permissive_292.RULE index bb8b0f8c9b9..c4ba147066f 100644 --- a/src/licensedcode/data/rules/other-permissive_292.RULE +++ b/src/licensedcode/data/rules/other-permissive_292.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, and distribute these images for any purpose and without fee is hereby granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_292.yml b/src/licensedcode/data/rules/other-permissive_292.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_293.RULE b/src/licensedcode/data/rules/other-permissive_293.RULE index 2b9e1d611c8..a9867c769b0 100644 --- a/src/licensedcode/data/rules/other-permissive_293.RULE +++ b/src/licensedcode/data/rules/other-permissive_293.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This is Free software, provided AS IS, with NO WARRANTY. Bug reports, comments are welcome. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_293.yml b/src/licensedcode/data/rules/other-permissive_293.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_294.RULE b/src/licensedcode/data/rules/other-permissive_294.RULE index b40042a2a02..a364c1d2e8d 100644 --- a/src/licensedcode/data/rules/other-permissive_294.RULE +++ b/src/licensedcode/data/rules/other-permissive_294.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Seen in http://katana.nongnu.org/ BSD-like +ignorable_authors: + - Dartmouth College +--- + Any redistribution must include copyright notice attribution to Dartmouth College as well as the Warranty Disclaimer below, as well as this list of conditions in any related documentation and, if feasible, on the redistributed software; Any redistribution must include the acknowledgment, "This product includes software developed by Dartmouth College," in any related documentation and, if feasible, in the redistributed software; and The names "Dartmouth" and "Dartmouth College" may not be used to endorse or promote products derived from this software. WARRANTY DISCLAIMER diff --git a/src/licensedcode/data/rules/other-permissive_294.yml b/src/licensedcode/data/rules/other-permissive_294.yml deleted file mode 100644 index 10b1e672b9e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_294.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Seen in http://katana.nongnu.org/ BSD-like -ignorable_authors: - - Dartmouth College diff --git a/src/licensedcode/data/rules/other-permissive_295.RULE b/src/licensedcode/data/rules/other-permissive_295.RULE index 0796d138369..75cfff335c6 100644 --- a/src/licensedcode/data/rules/other-permissive_295.RULE +++ b/src/licensedcode/data/rules/other-permissive_295.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://coil.apotheon.org/ +--- + Copyfree Open Innovation License This is version 1.0 of the Copyfree Open Innovation License. diff --git a/src/licensedcode/data/rules/other-permissive_295.yml b/src/licensedcode/data/rules/other-permissive_295.yml deleted file mode 100644 index 19789190bfb..00000000000 --- a/src/licensedcode/data/rules/other-permissive_295.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://coil.apotheon.org/ diff --git a/src/licensedcode/data/rules/other-permissive_296.RULE b/src/licensedcode/data/rules/other-permissive_296.RULE index 1ffcea61595..07f44d4e406 100644 --- a/src/licensedcode/data/rules/other-permissive_296.RULE +++ b/src/licensedcode/data/rules/other-permissive_296.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +ignorable_urls: + - https://coil.apotheon.org/ + - https://owl.apotheon.org/ +--- + This software may be distributed under the terms of the Copyfree Open Innovation License or Open Works License, at recipient's option. See https://owl.apotheon.org and https://coil.apotheon.org for license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_296.yml b/src/licensedcode/data/rules/other-permissive_296.yml deleted file mode 100644 index 27cc4fedf49..00000000000 --- a/src/licensedcode/data/rules/other-permissive_296.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -ignorable_urls: - - https://coil.apotheon.org/ - - https://owl.apotheon.org/ diff --git a/src/licensedcode/data/rules/other-permissive_297.RULE b/src/licensedcode/data/rules/other-permissive_297.RULE index 6fffa6bdaff..7d5d16470ed 100644 --- a/src/licensedcode/data/rules/other-permissive_297.RULE +++ b/src/licensedcode/data/rules/other-permissive_297.RULE @@ -1,2 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +ignorable_urls: + - http://owl.apotheon.org/ +--- + This software may be distributed under the terms of the Open Works License. See http://owl.apotheon.org for license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_297.yml b/src/licensedcode/data/rules/other-permissive_297.yml deleted file mode 100644 index a30dab82745..00000000000 --- a/src/licensedcode/data/rules/other-permissive_297.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -ignorable_urls: - - http://owl.apotheon.org/ diff --git a/src/licensedcode/data/rules/other-permissive_298.RULE b/src/licensedcode/data/rules/other-permissive_298.RULE index 6f31db87bc6..8d2089107b6 100644 --- a/src/licensedcode/data/rules/other-permissive_298.RULE +++ b/src/licensedcode/data/rules/other-permissive_298.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing:CopyrightOnly?rd=Licensing/CopyrightOnly +--- + You may use this code for any purpose, as long as the original copyright remains in the source code and all documentation \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_298.yml b/src/licensedcode/data/rules/other-permissive_298.yml deleted file mode 100644 index c2a3d84e879..00000000000 --- a/src/licensedcode/data/rules/other-permissive_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing:CopyrightOnly?rd=Licensing/CopyrightOnly diff --git a/src/licensedcode/data/rules/other-permissive_299.RULE b/src/licensedcode/data/rules/other-permissive_299.RULE index cd551d69f28..8cf7d0bd914 100644 --- a/src/licensedcode/data/rules/other-permissive_299.RULE +++ b/src/licensedcode/data/rules/other-permissive_299.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#xvt_variant +--- + * Redistribution and use in source code and/or executable forms, with * or without modification, are permitted provided that the following * condition is met: diff --git a/src/licensedcode/data/rules/other-permissive_299.yml b/src/licensedcode/data/rules/other-permissive_299.yml deleted file mode 100644 index df1ca7e1e68..00000000000 --- a/src/licensedcode/data/rules/other-permissive_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#xvt_variant diff --git a/src/licensedcode/data/rules/other-permissive_3.RULE b/src/licensedcode/data/rules/other-permissive_3.RULE index c7991dc9466..de164b12f73 100644 --- a/src/licensedcode/data/rules/other-permissive_3.RULE +++ b/src/licensedcode/data/rules/other-permissive_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + anybody can make use of my programs in whatever | way they wish, as long as they do not use the names - | TEX, METAFONT, or Computer Modern. + | TEX, METAFONT, or Computer Modern. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_3.yml b/src/licensedcode/data/rules/other-permissive_3.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_30.RULE b/src/licensedcode/data/rules/other-permissive_30.RULE index b4e47eb5c6a..1d819ea8462 100644 --- a/src/licensedcode/data/rules/other-permissive_30.RULE +++ b/src/licensedcode/data/rules/other-permissive_30.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This software is free software; you have unlimited permission -to copy, distribute and modify it. +to copy, distribute and modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_30.yml b/src/licensedcode/data/rules/other-permissive_30.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_300.RULE b/src/licensedcode/data/rules/other-permissive_300.RULE index f9795da88dd..9e189384ea8 100644 --- a/src/licensedcode/data/rules/other-permissive_300.RULE +++ b/src/licensedcode/data/rules/other-permissive_300.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#Advertising_Variant +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_300.yml b/src/licensedcode/data/rules/other-permissive_300.yml deleted file mode 100644 index dec452fa330..00000000000 --- a/src/licensedcode/data/rules/other-permissive_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#Advertising_Variant diff --git a/src/licensedcode/data/rules/other-permissive_301.RULE b/src/licensedcode/data/rules/other-permissive_301.RULE index ce25ec07c7f..631ca009fa4 100644 --- a/src/licensedcode/data/rules/other-permissive_301.RULE +++ b/src/licensedcode/data/rules/other-permissive_301.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_301.yml b/src/licensedcode/data/rules/other-permissive_301.yml deleted file mode 100644 index b8be5d520a1..00000000000 --- a/src/licensedcode/data/rules/other-permissive_301.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#jCharts_Variant diff --git a/src/licensedcode/data/rules/other-permissive_302.RULE b/src/licensedcode/data/rules/other-permissive_302.RULE index 4c99e7cad9d..af69f140627 100644 --- a/src/licensedcode/data/rules/other-permissive_302.RULE +++ b/src/licensedcode/data/rules/other-permissive_302.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#Compilation_Variant +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/other-permissive_302.yml b/src/licensedcode/data/rules/other-permissive_302.yml deleted file mode 100644 index 16eefc5e710..00000000000 --- a/src/licensedcode/data/rules/other-permissive_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#Compilation_Variant diff --git a/src/licensedcode/data/rules/other-permissive_303.RULE b/src/licensedcode/data/rules/other-permissive_303.RULE index b806d8b304e..dad2a2319eb 100644 --- a/src/licensedcode/data/rules/other-permissive_303.RULE +++ b/src/licensedcode/data/rules/other-permissive_303.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#BSD_Without_Notice_Requirement_.28variant_of_3_clause_BSD_without_advertising.29 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the original work is properly attributed to Greg Page and Caldera, Inc. diff --git a/src/licensedcode/data/rules/other-permissive_303.yml b/src/licensedcode/data/rules/other-permissive_303.yml deleted file mode 100644 index b312265349b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_303.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD#BSD_Without_Notice_Requirement_.28variant_of_3_clause_BSD_without_advertising.29 diff --git a/src/licensedcode/data/rules/other-permissive_304.RULE b/src/licensedcode/data/rules/other-permissive_304.RULE index b4e379e0979..789beec0bac 100644 --- a/src/licensedcode/data/rules/other-permissive_304.RULE +++ b/src/licensedcode/data/rules/other-permissive_304.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: See https://fedoraproject.org/wiki/Licensing/Bibtex +--- + Copying of this file is authorized only if either (1) you make absolutely no changes to your copy, including name, or (2) if you do make changes, you name it something other than diff --git a/src/licensedcode/data/rules/other-permissive_304.yml b/src/licensedcode/data/rules/other-permissive_304.yml deleted file mode 100644 index 2b9b0ef4ccd..00000000000 --- a/src/licensedcode/data/rules/other-permissive_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: See https://fedoraproject.org/wiki/Licensing/Bibtex diff --git a/src/licensedcode/data/rules/other-permissive_305.RULE b/src/licensedcode/data/rules/other-permissive_305.RULE index 4487a9d1452..28b1608d28e 100644 --- a/src/licensedcode/data/rules/other-permissive_305.RULE +++ b/src/licensedcode/data/rules/other-permissive_305.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: See https://fedoraproject.org/wiki/Licensing/Bibtex +--- + Unlimited copying and redistribution of this file are permitted as long as this file is not modified. Modifications are permitted, diff --git a/src/licensedcode/data/rules/other-permissive_305.yml b/src/licensedcode/data/rules/other-permissive_305.yml deleted file mode 100644 index 2b9b0ef4ccd..00000000000 --- a/src/licensedcode/data/rules/other-permissive_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: See https://fedoraproject.org/wiki/Licensing/Bibtex diff --git a/src/licensedcode/data/rules/other-permissive_306.RULE b/src/licensedcode/data/rules/other-permissive_306.RULE index 017ed12dfe3..930e7f2d904 100644 --- a/src/licensedcode/data/rules/other-permissive_306.RULE +++ b/src/licensedcode/data/rules/other-permissive_306.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: See https://fedoraproject.org/wiki/Licensing/Bibtex +--- + This file may be modified for individual use. A modified version of this file may not be diff --git a/src/licensedcode/data/rules/other-permissive_306.yml b/src/licensedcode/data/rules/other-permissive_306.yml deleted file mode 100644 index 2b9b0ef4ccd..00000000000 --- a/src/licensedcode/data/rules/other-permissive_306.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: See https://fedoraproject.org/wiki/Licensing/Bibtex diff --git a/src/licensedcode/data/rules/other-permissive_307.RULE b/src/licensedcode/data/rules/other-permissive_307.RULE index 43fe6333a82..8d4deb8b1fe 100644 --- a/src/licensedcode/data/rules/other-permissive_307.RULE +++ b/src/licensedcode/data/rules/other-permissive_307.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing/Lhcyr +--- + This package is free. You may modify and use it for whatever purpose you want. But you are not allowed to redistribute modified version under the same name. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_307.yml b/src/licensedcode/data/rules/other-permissive_307.yml deleted file mode 100644 index d576bb30020..00000000000 --- a/src/licensedcode/data/rules/other-permissive_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing/Lhcyr diff --git a/src/licensedcode/data/rules/other-permissive_308.RULE b/src/licensedcode/data/rules/other-permissive_308.RULE index ba5977caf42..1f5509c9e71 100644 --- a/src/licensedcode/data/rules/other-permissive_308.RULE +++ b/src/licensedcode/data/rules/other-permissive_308.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Seen in http://tug.ctan.org/macros/generic/midnight/ and https://fedoraproject.org/wiki/Licensing/midnight +--- + % You can use these macros to typeset documents. You may % distribute this file freely, provided that you also distribute % the accompanying documentation. diff --git a/src/licensedcode/data/rules/other-permissive_308.yml b/src/licensedcode/data/rules/other-permissive_308.yml deleted file mode 100644 index ed749448a7e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_308.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Seen in http://tug.ctan.org/macros/generic/midnight/ and https://fedoraproject.org/wiki/Licensing/midnight diff --git a/src/licensedcode/data/rules/other-permissive_309.RULE b/src/licensedcode/data/rules/other-permissive_309.RULE index 442623d7cf7..1cb8b094620 100644 --- a/src/licensedcode/data/rules/other-permissive_309.RULE +++ b/src/licensedcode/data/rules/other-permissive_309.RULE @@ -1,3 +1,15 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Apache-1.1 base with extra post cards clause. Seen in "mod_macro" version by Fabien Coelho +ignorable_authors: + - Fabien Coelho +ignorable_urls: + - http://www.coelho.net/mod_macro +ignorable_emails: + - mod.macro@coelho.net +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/other-permissive_309.yml b/src/licensedcode/data/rules/other-permissive_309.yml deleted file mode 100644 index d8b0494a807..00000000000 --- a/src/licensedcode/data/rules/other-permissive_309.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Apache-1.1 base with extra post cards clause. Seen in "mod_macro" version by Fabien Coelho -ignorable_authors: - - Fabien Coelho -ignorable_urls: - - http://www.coelho.net/mod_macro -ignorable_emails: - - mod.macro@coelho.net diff --git a/src/licensedcode/data/rules/other-permissive_31.RULE b/src/licensedcode/data/rules/other-permissive_31.RULE index a1d5e65691c..f35124f0da3 100644 --- a/src/licensedcode/data/rules/other-permissive_31.RULE +++ b/src/licensedcode/data/rules/other-permissive_31.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Documentation License This documentation is free; you can redistribute it without @@ -6,4 +11,4 @@ the copyright and list all authors. This documentation 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. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_31.yml b/src/licensedcode/data/rules/other-permissive_31.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_31.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_310.RULE b/src/licensedcode/data/rules/other-permissive_310.RULE index 0ddd29d89ce..11585dc8374 100644 --- a/src/licensedcode/data/rules/other-permissive_310.RULE +++ b/src/licensedcode/data/rules/other-permissive_310.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: Apache-1.1 base with extra post cards clause. Seen in "mod_macro" version by Fabien Coelho +--- + * This license is basically the same as apache, with the small * additionnal provision that I like to receive postcards;-) \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_310.yml b/src/licensedcode/data/rules/other-permissive_310.yml deleted file mode 100644 index de41d6d31ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: Apache-1.1 base with extra post cards clause. Seen in "mod_macro" version by Fabien Coelho diff --git a/src/licensedcode/data/rules/other-permissive_311.RULE b/src/licensedcode/data/rules/other-permissive_311.RULE index 4e32d3aa91f..3f116f1f070 100644 --- a/src/licensedcode/data/rules/other-permissive_311.RULE +++ b/src/licensedcode/data/rules/other-permissive_311.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + I place no restrictions on the use of newmat except that I take no liability for any problems that may arise from its use, distribution or other dealings with it. diff --git a/src/licensedcode/data/rules/other-permissive_311.yml b/src/licensedcode/data/rules/other-permissive_311.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_311.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_312.RULE b/src/licensedcode/data/rules/other-permissive_312.RULE index 18f0129c188..782ac0cfe34 100644 --- a/src/licensedcode/data/rules/other-permissive_312.RULE +++ b/src/licensedcode/data/rules/other-permissive_312.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing/Newmat_License +--- + Conditions of use I place no restrictions on the use of newmat except that I take no liability diff --git a/src/licensedcode/data/rules/other-permissive_312.yml b/src/licensedcode/data/rules/other-permissive_312.yml deleted file mode 100644 index dec42eaede6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_312.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing/Newmat_License diff --git a/src/licensedcode/data/rules/other-permissive_313.RULE b/src/licensedcode/data/rules/other-permissive_313.RULE index 3eb5ccc5812..58e65ee7016 100644 --- a/src/licensedcode/data/rules/other-permissive_313.RULE +++ b/src/licensedcode/data/rules/other-permissive_313.RULE @@ -1,2 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + You are welcome to use and distribute these files; if you modify them, please change the name but give credit to the original author! \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_313.yml b/src/licensedcode/data/rules/other-permissive_313.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_313.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_314.RULE b/src/licensedcode/data/rules/other-permissive_314.RULE index 7faeca62a57..3b8dc779e39 100644 --- a/src/licensedcode/data/rules/other-permissive_314.RULE +++ b/src/licensedcode/data/rules/other-permissive_314.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: See in http://www.nicemice.net/par/par-doc.var +--- + I grant everyone ("you") permission to do whatever you like with these files, provided that if you modify them you take reasonable steps to avoid confusing or misleading people about who wrote the diff --git a/src/licensedcode/data/rules/other-permissive_314.yml b/src/licensedcode/data/rules/other-permissive_314.yml deleted file mode 100644 index 2b9e0459f41..00000000000 --- a/src/licensedcode/data/rules/other-permissive_314.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: See in http://www.nicemice.net/par/par-doc.var diff --git a/src/licensedcode/data/rules/other-permissive_315.RULE b/src/licensedcode/data/rules/other-permissive_315.RULE index 33e5662fb3c..b6c7ee24287 100644 --- a/src/licensedcode/data/rules/other-permissive_315.RULE +++ b/src/licensedcode/data/rules/other-permissive_315.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Seen in old LaTeX and related +--- + % Unlimited copying and redistribution of this file are permitted if it % is unmodified. Modifications (and their redistribution) are also % permitted, as long as the resulting file is renamed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_315.yml b/src/licensedcode/data/rules/other-permissive_315.yml deleted file mode 100644 index 4ababa8c6d6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_315.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Seen in old LaTeX and related diff --git a/src/licensedcode/data/rules/other-permissive_316.RULE b/src/licensedcode/data/rules/other-permissive_316.RULE index f0a5f7c77d8..351c7bcadb4 100644 --- a/src/licensedcode/data/rules/other-permissive_316.RULE +++ b/src/licensedcode/data/rules/other-permissive_316.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Seen in old LaTeX +--- + Unlimited copying and redistribution of this file are permitted as long as this file is not modified. Modifications, and distribution of diff --git a/src/licensedcode/data/rules/other-permissive_316.yml b/src/licensedcode/data/rules/other-permissive_316.yml deleted file mode 100644 index 473833e14b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_316.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Seen in old LaTeX diff --git a/src/licensedcode/data/rules/other-permissive_317.RULE b/src/licensedcode/data/rules/other-permissive_317.RULE index 7487f00b47e..dc3b72eb577 100644 --- a/src/licensedcode/data/rules/other-permissive_317.RULE +++ b/src/licensedcode/data/rules/other-permissive_317.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Seen in old LaTeX +--- + The Plain TeX hyphenation tables [NOT TO BE CHANGED IN ANY WAY!] % Unlimited copying and redistribution of this file are permitted as long % as this file is not modified. Modifications are permitted, but only if diff --git a/src/licensedcode/data/rules/other-permissive_317.yml b/src/licensedcode/data/rules/other-permissive_317.yml deleted file mode 100644 index 473833e14b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Seen in old LaTeX diff --git a/src/licensedcode/data/rules/other-permissive_318.RULE b/src/licensedcode/data/rules/other-permissive_318.RULE index aded1a90de1..82e9f50794e 100644 --- a/src/licensedcode/data/rules/other-permissive_318.RULE +++ b/src/licensedcode/data/rules/other-permissive_318.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Seen in FVWM +--- + No guarantees or warranties or anything are provided or implied in any way whatsoever. Use this program at your own risk. Permission to use this program for any purpose is given, as long as the copyright is kept intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_318.yml b/src/licensedcode/data/rules/other-permissive_318.yml deleted file mode 100644 index 39ed25e1e3d..00000000000 --- a/src/licensedcode/data/rules/other-permissive_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Seen in FVWM diff --git a/src/licensedcode/data/rules/other-permissive_319.RULE b/src/licensedcode/data/rules/other-permissive_319.RULE index 466299dd55d..c1c7ead5cce 100644 --- a/src/licensedcode/data/rules/other-permissive_319.RULE +++ b/src/licensedcode/data/rules/other-permissive_319.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +--- + It has a permissive license \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_319.yml b/src/licensedcode/data/rules/other-permissive_319.yml deleted file mode 100644 index 725799270b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_319.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_32.RULE b/src/licensedcode/data/rules/other-permissive_32.RULE index e489ef77527..090babaef15 100644 --- a/src/licensedcode/data/rules/other-permissive_32.RULE +++ b/src/licensedcode/data/rules/other-permissive_32.RULE @@ -1,2 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Permission is granted to distribute, modify and use this program as long as this comment is not removed or changed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_32.yml b/src/licensedcode/data/rules/other-permissive_32.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_32.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_320.RULE b/src/licensedcode/data/rules/other-permissive_320.RULE index 3ae9de39f18..9af667aebf6 100644 --- a/src/licensedcode/data/rules/other-permissive_320.RULE +++ b/src/licensedcode/data/rules/other-permissive_320.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Disclaimer and license: Regarding this entire document or any portion of it (including the pseudocode and C code), the author makes no guarantees and is not responsible for any damage resulting diff --git a/src/licensedcode/data/rules/other-permissive_320.yml b/src/licensedcode/data/rules/other-permissive_320.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_320.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_321.RULE b/src/licensedcode/data/rules/other-permissive_321.RULE index 202d86f75bc..4850efbd8a4 100644 --- a/src/licensedcode/data/rules/other-permissive_321.RULE +++ b/src/licensedcode/data/rules/other-permissive_321.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + This file is licensed permissively \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_321.yml b/src/licensedcode/data/rules/other-permissive_321.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_321.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_322.RULE b/src/licensedcode/data/rules/other-permissive_322.RULE index 14f419a06a4..720105c99bc 100644 --- a/src/licensedcode/data/rules/other-permissive_322.RULE +++ b/src/licensedcode/data/rules/other-permissive_322.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://fedoraproject.org/wiki/Licensing/Threeparttable +--- + This file may be distributed, modified, and used in other works with just one restriction: modified versions must clearly indicate the modification (a name change, or a displayed message, or ?). \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_322.yml b/src/licensedcode/data/rules/other-permissive_322.yml deleted file mode 100644 index b9b0c9b266d..00000000000 --- a/src/licensedcode/data/rules/other-permissive_322.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://fedoraproject.org/wiki/Licensing/Threeparttable diff --git a/src/licensedcode/data/rules/other-permissive_323.RULE b/src/licensedcode/data/rules/other-permissive_323.RULE index f649ce57115..9607e99e7ed 100644 --- a/src/licensedcode/data/rules/other-permissive_323.RULE +++ b/src/licensedcode/data/rules/other-permissive_323.RULE @@ -1,2 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Permission is granted to everyone to use and distribute this work, without limitation, modified or unmodified, in any way, for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_323.yml b/src/licensedcode/data/rules/other-permissive_323.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_323.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_324.RULE b/src/licensedcode/data/rules/other-permissive_324.RULE index ad11c54295d..acdc7bd765b 100644 --- a/src/licensedcode/data/rules/other-permissive_324.RULE +++ b/src/licensedcode/data/rules/other-permissive_324.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: similar to MIT old style +--- + Permission to use, copy, modify, distribute, and sell this example for any purpose is hereby granted without fee. It is provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_324.yml b/src/licensedcode/data/rules/other-permissive_324.yml deleted file mode 100644 index baac046b8ce..00000000000 --- a/src/licensedcode/data/rules/other-permissive_324.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: similar to MIT old style diff --git a/src/licensedcode/data/rules/other-permissive_325.RULE b/src/licensedcode/data/rules/other-permissive_325.RULE index 7a2d663fcb2..4c53021b60a 100644 --- a/src/licensedcode/data/rules/other-permissive_325.RULE +++ b/src/licensedcode/data/rules/other-permissive_325.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: this is not pubblic domain exactly +--- + This file is in the public domain. You may use and modify it as you see fit, as long as this copyright message is included and that there is an indication as to what modifications have been diff --git a/src/licensedcode/data/rules/other-permissive_325.yml b/src/licensedcode/data/rules/other-permissive_325.yml deleted file mode 100644 index 21049aea9ca..00000000000 --- a/src/licensedcode/data/rules/other-permissive_325.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: this is not pubblic domain exactly diff --git a/src/licensedcode/data/rules/other-permissive_326.RULE b/src/licensedcode/data/rules/other-permissive_326.RULE index 808ca0926a5..37ba0e80e54 100644 --- a/src/licensedcode/data/rules/other-permissive_326.RULE +++ b/src/licensedcode/data/rules/other-permissive_326.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_326.yml b/src/licensedcode/data/rules/other-permissive_326.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_326.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_327.RULE b/src/licensedcode/data/rules/other-permissive_327.RULE index d7780fd44fc..06e74fc09ff 100644 --- a/src/licensedcode/data/rules/other-permissive_327.RULE +++ b/src/licensedcode/data/rules/other-permissive_327.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: highly similar to mpich +--- + Permission is hereby granted to use, reproduce, prepare derivative works, and to redistribute to others. diff --git a/src/licensedcode/data/rules/other-permissive_327.yml b/src/licensedcode/data/rules/other-permissive_327.yml deleted file mode 100644 index deeb7105d75..00000000000 --- a/src/licensedcode/data/rules/other-permissive_327.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: highly similar to mpich diff --git a/src/licensedcode/data/rules/other-permissive_328.RULE b/src/licensedcode/data/rules/other-permissive_328.RULE index 80fbbbb87aa..83c32160ba5 100644 --- a/src/licensedcode/data/rules/other-permissive_328.RULE +++ b/src/licensedcode/data/rules/other-permissive_328.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This file is free documentation; the author gives unlimited permission to copy, distribute and modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_328.yml b/src/licensedcode/data/rules/other-permissive_328.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_328.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_329.RULE b/src/licensedcode/data/rules/other-permissive_329.RULE index 4c5c812c714..41beec40456 100644 --- a/src/licensedcode/data/rules/other-permissive_329.RULE +++ b/src/licensedcode/data/rules/other-permissive_329.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + This software is freeware. You can use this software for any purposes, but the author is NOT responsible for any problems about using it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_329.yml b/src/licensedcode/data/rules/other-permissive_329.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_329.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_33.RULE b/src/licensedcode/data/rules/other-permissive_33.RULE index 931f4f87ddd..b7148a3cd9a 100644 --- a/src/licensedcode/data/rules/other-permissive_33.RULE +++ b/src/licensedcode/data/rules/other-permissive_33.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + The software is completely free for any purpose, unless notes at the head of the program text indicates otherwise (which is rare). In any case, the notes diff --git a/src/licensedcode/data/rules/other-permissive_33.yml b/src/licensedcode/data/rules/other-permissive_33.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_330.RULE b/src/licensedcode/data/rules/other-permissive_330.RULE index 77aa0205233..7fd8bcb4d1d 100644 --- a/src/licensedcode/data/rules/other-permissive_330.RULE +++ b/src/licensedcode/data/rules/other-permissive_330.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: seen in stb library +--- + You are granted a perpetual, irrevocable license to copy, modify, publish, and distribute this file as you see fit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_330.yml b/src/licensedcode/data/rules/other-permissive_330.yml deleted file mode 100644 index 59c3658bb8e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_330.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: seen in stb library diff --git a/src/licensedcode/data/rules/other-permissive_331.RULE b/src/licensedcode/data/rules/other-permissive_331.RULE index fbbb51c76b7..927c7646e08 100644 --- a/src/licensedcode/data/rules/other-permissive_331.RULE +++ b/src/licensedcode/data/rules/other-permissive_331.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Legal notice use without warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_331.yml b/src/licensedcode/data/rules/other-permissive_331.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_331.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_332.RULE b/src/licensedcode/data/rules/other-permissive_332.RULE index 6f2cbe00cc9..7e0897cdc23 100644 --- a/src/licensedcode/data/rules/other-permissive_332.RULE +++ b/src/licensedcode/data/rules/other-permissive_332.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + use without warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_332.yml b/src/licensedcode/data/rules/other-permissive_332.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_333.RULE b/src/licensedcode/data/rules/other-permissive_333.RULE index 6164c49e433..9d3cc50ba2e 100644 --- a/src/licensedcode/data/rules/other-permissive_333.RULE +++ b/src/licensedcode/data/rules/other-permissive_333.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://raw.githubusercontent.com/marshallpierce/base64-serde/d779b8b1d0b09f9f657a80fb4b62cf0d5fb4e6d1/LICENSE-COIL.txt +--- + # Copyfree Open Innovation License This is version 0.6 of the Copyfree Open Innovation License. diff --git a/src/licensedcode/data/rules/other-permissive_333.yml b/src/licensedcode/data/rules/other-permissive_333.yml deleted file mode 100644 index 644b99630f8..00000000000 --- a/src/licensedcode/data/rules/other-permissive_333.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://raw.githubusercontent.com/marshallpierce/base64-serde/d779b8b1d0b09f9f657a80fb4b62cf0d5fb4e6d1/LICENSE-COIL.txt diff --git a/src/licensedcode/data/rules/other-permissive_334.RULE b/src/licensedcode/data/rules/other-permissive_334.RULE index 4ddcad253aa..a467c6b922e 100644 --- a/src/licensedcode/data/rules/other-permissive_334.RULE +++ b/src/licensedcode/data/rules/other-permissive_334.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: See https://chadperrin.com/license/ +--- + Permission is hereby granted by the holder(s) of copyright or other legal privileges, author(s) or assembler(s), and contributor(s) of this work, to any person who obtains a copy of this work in any form, to reproduce, modify, distribute, publish, sell, sublicense, use, and/or otherwise deal in the licensed material without restriction, provided the following conditions are met. Redistributions, modified or unmodified, in whole or in part, must make applicable copyright and other legal privilege notices, the above license notice, these conditions, and the following disclaimer, freely available to recipients on distribution through one of the following means, in descending order of preferability: incorporated into the work, provided with the work, presented via the medium or method of distribution for the work, or upon request by recipients of the work while the work is offered for distribution. diff --git a/src/licensedcode/data/rules/other-permissive_334.yml b/src/licensedcode/data/rules/other-permissive_334.yml deleted file mode 100644 index ddbb10d5ac6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_334.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: See https://chadperrin.com/license/ diff --git a/src/licensedcode/data/rules/other-permissive_335.RULE b/src/licensedcode/data/rules/other-permissive_335.RULE index 9c4ba387166..441e31aa68a 100644 --- a/src/licensedcode/data/rules/other-permissive_335.RULE +++ b/src/licensedcode/data/rules/other-permissive_335.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Permission to reproduce, modify, distribute, publish, sell, sublicense, use, and/or otherwise deal in the licensed material without restriction. diff --git a/src/licensedcode/data/rules/other-permissive_335.yml b/src/licensedcode/data/rules/other-permissive_335.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_335.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_336.RULE b/src/licensedcode/data/rules/other-permissive_336.RULE index cdce61def8c..80accd819a4 100644 --- a/src/licensedcode/data/rules/other-permissive_336.RULE +++ b/src/licensedcode/data/rules/other-permissive_336.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Rare early gladman license Sometimes seen called "Gladman Older Rijndael License Code + Use" +--- + I am happy for this code to be used without payment provided that I don't carry any risks as a result. I would appreciate an appropriate acknowledgement of the source of the code if you do use it in a product or activity provided to third parties. diff --git a/src/licensedcode/data/rules/other-permissive_336.yml b/src/licensedcode/data/rules/other-permissive_336.yml deleted file mode 100644 index 9c1a7b5535c..00000000000 --- a/src/licensedcode/data/rules/other-permissive_336.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Rare early gladman license Sometimes seen called "Gladman Older Rijndael License Code - Use" diff --git a/src/licensedcode/data/rules/other-permissive_337.RULE b/src/licensedcode/data/rules/other-permissive_337.RULE index cb809b74a17..038dacf5893 100644 --- a/src/licensedcode/data/rules/other-permissive_337.RULE +++ b/src/licensedcode/data/rules/other-permissive_337.RULE @@ -1 +1,6 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + You have the right to take and use this code for whatever purpose, commercial or otherwise, that you want. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_337.yml b/src/licensedcode/data/rules/other-permissive_337.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_337.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_338.RULE b/src/licensedcode/data/rules/other-permissive_338.RULE index c7b63e4e4ee..6a5870d8654 100644 --- a/src/licensedcode/data/rules/other-permissive_338.RULE +++ b/src/licensedcode/data/rules/other-permissive_338.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + All have been licensed under extremely permissive terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_338.yml b/src/licensedcode/data/rules/other-permissive_338.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_338.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_339.RULE b/src/licensedcode/data/rules/other-permissive_339.RULE index 17ff27d1838..f1af5d7ab5c 100644 --- a/src/licensedcode/data/rules/other-permissive_339.RULE +++ b/src/licensedcode/data/rules/other-permissive_339.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: MIT-like seen in the Fedora license list +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, diff --git a/src/licensedcode/data/rules/other-permissive_339.yml b/src/licensedcode/data/rules/other-permissive_339.yml deleted file mode 100644 index c1d04e9cfc4..00000000000 --- a/src/licensedcode/data/rules/other-permissive_339.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: MIT-like seen in the Fedora license list diff --git a/src/licensedcode/data/rules/other-permissive_34.RULE b/src/licensedcode/data/rules/other-permissive_34.RULE index b9f14051a44..4200fbc2870 100644 --- a/src/licensedcode/data/rules/other-permissive_34.RULE +++ b/src/licensedcode/data/rules/other-permissive_34.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + No restrictions are placed on this code, * as long as the copyright notice is preserved \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_34.yml b/src/licensedcode/data/rules/other-permissive_34.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_340.RULE b/src/licensedcode/data/rules/other-permissive_340.RULE index 8532cf207df..63223dd58e1 100644 --- a/src/licensedcode/data/rules/other-permissive_340.RULE +++ b/src/licensedcode/data/rules/other-permissive_340.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + Redistribution of this material is permitted so long as this notice and the corresponding notices within each POSIX manual page are retained on any distribution, and the nroff source is included. Modifications to diff --git a/src/licensedcode/data/rules/other-permissive_340.yml b/src/licensedcode/data/rules/other-permissive_340.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_340.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_341.RULE b/src/licensedcode/data/rules/other-permissive_341.RULE index 42aac5c0365..967db15b072 100644 --- a/src/licensedcode/data/rules/other-permissive_341.RULE +++ b/src/licensedcode/data/rules/other-permissive_341.RULE @@ -1,3 +1,13 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://github.com/DataJuggler/DataTier.Net/blob/cdd3493436b4c081db19829e7db3bed9389bf4b5/DataTier.Net/ProjectTemplates/DataTier.Net6.DataTemplate/Working/templates/DataTier.Net6.ClassLibrary/License/License.txt +ignorable_copyrights: + - Copyright (c) 2022 - Data Juggler. Do +ignorable_holders: + - Data Juggler. Do +--- + DataJuggler Do What You Want License Copyright (c) 2022 - Data Juggler. Do what you want with it. If you like it, give me credit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_341.yml b/src/licensedcode/data/rules/other-permissive_341.yml deleted file mode 100644 index 0224b6920a6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_341.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://github.com/DataJuggler/DataTier.Net/blob/cdd3493436b4c081db19829e7db3bed9389bf4b5/DataTier.Net/ProjectTemplates/DataTier.Net6.DataTemplate/Working/templates/DataTier.Net6.ClassLibrary/License/License.txt -ignorable_copyrights: - - Copyright (c) 2022 - Data Juggler. Do -ignorable_holders: - - Data Juggler. Do diff --git a/src/licensedcode/data/rules/other-permissive_342.RULE b/src/licensedcode/data/rules/other-permissive_342.RULE index 36e8b3290b9..52c67e72773 100644 --- a/src/licensedcode/data/rules/other-permissive_342.RULE +++ b/src/licensedcode/data/rules/other-permissive_342.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: https://github.com/DataJuggler/DataTier.Net/blob/301e000ba50068d71a329d69114c7ea5cea398c5/DataTier.Net/Client/Properties/AssemblyInfo.cs#L12 +--- + Shared free and open source with the 'Do Whatever You Want' license \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_342.yml b/src/licensedcode/data/rules/other-permissive_342.yml deleted file mode 100644 index 76604a12eed..00000000000 --- a/src/licensedcode/data/rules/other-permissive_342.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: https://github.com/DataJuggler/DataTier.Net/blob/301e000ba50068d71a329d69114c7ea5cea398c5/DataTier.Net/Client/Properties/AssemblyInfo.cs#L12 diff --git a/src/licensedcode/data/rules/other-permissive_343.RULE b/src/licensedcode/data/rules/other-permissive_343.RULE index ddcda03b1e1..034235f3b8e 100644 --- a/src/licensedcode/data/rules/other-permissive_343.RULE +++ b/src/licensedcode/data/rules/other-permissive_343.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: https://github.com/DataJuggler/DataJuggler.Blazor.Components/blob/0dbf251a49829c46105b09f0de68b92f316ce143/DataJuggler.Blazor.Components.csproj#L29 +--- + Use For Anything You Want, No Warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_343.yml b/src/licensedcode/data/rules/other-permissive_343.yml deleted file mode 100644 index 8a368259635..00000000000 --- a/src/licensedcode/data/rules/other-permissive_343.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: https://github.com/DataJuggler/DataJuggler.Blazor.Components/blob/0dbf251a49829c46105b09f0de68b92f316ce143/DataJuggler.Blazor.Components.csproj#L29 diff --git a/src/licensedcode/data/rules/other-permissive_344.RULE b/src/licensedcode/data/rules/other-permissive_344.RULE index 2f1bed4faf2..33e5815e57f 100644 --- a/src/licensedcode/data/rules/other-permissive_344.RULE +++ b/src/licensedcode/data/rules/other-permissive_344.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: https://github.com/DataJuggler/DataJuggler.Win.Controls/blob/c074c18dc44e95375ba82b4d78a835da7964270e/License/License.txt +--- + Data Juggler Open Source License (no lawyers needed, ever). Use this project if you want at your own risk. See how simple the world is without lawyers involved. diff --git a/src/licensedcode/data/rules/other-permissive_344.yml b/src/licensedcode/data/rules/other-permissive_344.yml deleted file mode 100644 index d039e5942b4..00000000000 --- a/src/licensedcode/data/rules/other-permissive_344.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: https://github.com/DataJuggler/DataJuggler.Win.Controls/blob/c074c18dc44e95375ba82b4d78a835da7964270e/License/License.txt diff --git a/src/licensedcode/data/rules/other-permissive_345.RULE b/src/licensedcode/data/rules/other-permissive_345.RULE index 1f8e86b5680..45e2212dca9 100644 --- a/src/licensedcode/data/rules/other-permissive_345.RULE +++ b/src/licensedcode/data/rules/other-permissive_345.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: https://github.com/DataJuggler/ImageRandomizer/blob/4555cfd12ec4c08a06972576ccc07b5d608c109f/ImageRandomizer.csproj#L15 +--- + Use As Is - Do Whatever You Want \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_345.yml b/src/licensedcode/data/rules/other-permissive_345.yml deleted file mode 100644 index baf4ad271c9..00000000000 --- a/src/licensedcode/data/rules/other-permissive_345.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: https://github.com/DataJuggler/ImageRandomizer/blob/4555cfd12ec4c08a06972576ccc07b5d608c109f/ImageRandomizer.csproj#L15 diff --git a/src/licensedcode/data/rules/other-permissive_346.RULE b/src/licensedcode/data/rules/other-permissive_346.RULE index 11ba0ae00f7..ee81a43b381 100644 --- a/src/licensedcode/data/rules/other-permissive_346.RULE +++ b/src/licensedcode/data/rules/other-permissive_346.RULE @@ -1,2 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: https://github.com/DataJuggler/PasswordVault/blob/a253647d51ecb2e2268eae22b0b9cd681afaed99/LICENSE +--- + Data Juggler License Do anything you want with it. This is a tutorial project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_346.yml b/src/licensedcode/data/rules/other-permissive_346.yml deleted file mode 100644 index 45b71bfa399..00000000000 --- a/src/licensedcode/data/rules/other-permissive_346.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: https://github.com/DataJuggler/PasswordVault/blob/a253647d51ecb2e2268eae22b0b9cd681afaed99/LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_347.RULE b/src/licensedcode/data/rules/other-permissive_347.RULE index 8044ba551c4..3a88e24d0a2 100644 --- a/src/licensedcode/data/rules/other-permissive_347.RULE +++ b/src/licensedcode/data/rules/other-permissive_347.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +ignorable_urls: + - http://burtleburtle.net/bob/hash/evahash.html +--- + You may use this code any way you wish, private, educational, or commercial, as long as this whole comment accompanies it. See http://burtleburtle.net/bob/hash/evahash.html Use for hash table lookup, or anything where one collision in 2^^64 is acceptable. Do not use for cryptographic purposes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_347.yml b/src/licensedcode/data/rules/other-permissive_347.yml deleted file mode 100644 index f0d34d85655..00000000000 --- a/src/licensedcode/data/rules/other-permissive_347.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -ignorable_urls: - - http://burtleburtle.net/bob/hash/evahash.html diff --git a/src/licensedcode/data/rules/other-permissive_348.RULE b/src/licensedcode/data/rules/other-permissive_348.RULE index 75ab80e4dfd..7f3a20ba409 100644 --- a/src/licensedcode/data/rules/other-permissive_348.RULE +++ b/src/licensedcode/data/rules/other-permissive_348.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: Seen in http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/ +--- + Free for both personal and commercial use, with or without modification. No warranty is expressed or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_348.yml b/src/licensedcode/data/rules/other-permissive_348.yml deleted file mode 100644 index f30cd10dc0e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_348.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: Seen in http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/ diff --git a/src/licensedcode/data/rules/other-permissive_349.RULE b/src/licensedcode/data/rules/other-permissive_349.RULE index 38c7831192c..7a05d54cfa6 100644 --- a/src/licensedcode/data/rules/other-permissive_349.RULE +++ b/src/licensedcode/data/rules/other-permissive_349.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: Seen in http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/ +--- + Free for both personal and commercial use, with or without modification. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_349.yml b/src/licensedcode/data/rules/other-permissive_349.yml deleted file mode 100644 index f30cd10dc0e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_349.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: Seen in http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/ diff --git a/src/licensedcode/data/rules/other-permissive_35.RULE b/src/licensedcode/data/rules/other-permissive_35.RULE index 74b37a5566f..375a17ada24 100644 --- a/src/licensedcode/data/rules/other-permissive_35.RULE +++ b/src/licensedcode/data/rules/other-permissive_35.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + No restrictions are placed on this code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_35.yml b/src/licensedcode/data/rules/other-permissive_35.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_350.RULE b/src/licensedcode/data/rules/other-permissive_350.RULE index 729d2fd71f8..97d1961c1f7 100644 --- a/src/licensedcode/data/rules/other-permissive_350.RULE +++ b/src/licensedcode/data/rules/other-permissive_350.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Similar to the Apache due credit license +--- + Redistribution and use of this software and associated documentation ("Software"), with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain copyright statements and notices. Redistributions must also contain a copy of this document. diff --git a/src/licensedcode/data/rules/other-permissive_350.yml b/src/licensedcode/data/rules/other-permissive_350.yml deleted file mode 100644 index 7edd9f58566..00000000000 --- a/src/licensedcode/data/rules/other-permissive_350.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Similar to the Apache due credit license diff --git a/src/licensedcode/data/rules/other-permissive_351.RULE b/src/licensedcode/data/rules/other-permissive_351.RULE index a86ee7cdee0..bb51db117a3 100644 --- a/src/licensedcode/data/rules/other-permissive_351.RULE +++ b/src/licensedcode/data/rules/other-permissive_351.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +minimum_coverage: 90 +notes: legacy openssl-like rare license seen in http://www.odbms.org/wp-content/uploads/2014/02/oqlg.zip +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/other-permissive_351.yml b/src/licensedcode/data/rules/other-permissive_351.yml deleted file mode 100644 index a2ccbe53f74..00000000000 --- a/src/licensedcode/data/rules/other-permissive_351.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -minimum_coverage: 90 -notes: legacy openssl-like rare license seen in http://www.odbms.org/wp-content/uploads/2014/02/oqlg.zip diff --git a/src/licensedcode/data/rules/other-permissive_352.RULE b/src/licensedcode/data/rules/other-permissive_352.RULE index 22dfbf55979..59163cf3d12 100644 --- a/src/licensedcode/data/rules/other-permissive_352.RULE +++ b/src/licensedcode/data/rules/other-permissive_352.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: an MIT-like license seen in https://raw.githubusercontent.com/UniMath/UniMath/master/LICENSE.md +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of to deal in without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of diff --git a/src/licensedcode/data/rules/other-permissive_352.yml b/src/licensedcode/data/rules/other-permissive_352.yml deleted file mode 100644 index e0ed1f91cb0..00000000000 --- a/src/licensedcode/data/rules/other-permissive_352.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: an MIT-like license seen in https://raw.githubusercontent.com/UniMath/UniMath/master/LICENSE.md diff --git a/src/licensedcode/data/rules/other-permissive_353.RULE b/src/licensedcode/data/rules/other-permissive_353.RULE index c5d9b1a6791..e42245cac44 100644 --- a/src/licensedcode/data/rules/other-permissive_353.RULE +++ b/src/licensedcode/data/rules/other-permissive_353.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Seen in http://elm-chan.org/fsw/ff/arc/ff11a.zip +--- + / 1. Redistributions of source code must retain the above copyright notice, / this condition and the following disclaimer. / diff --git a/src/licensedcode/data/rules/other-permissive_353.yml b/src/licensedcode/data/rules/other-permissive_353.yml deleted file mode 100644 index b2c8699ce9a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_353.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Seen in http://elm-chan.org/fsw/ff/arc/ff11a.zip diff --git a/src/licensedcode/data/rules/other-permissive_354.RULE b/src/licensedcode/data/rules/other-permissive_354.RULE index 0f5aa581c3c..0e67212ebab 100644 --- a/src/licensedcode/data/rules/other-permissive_354.RULE +++ b/src/licensedcode/data/rules/other-permissive_354.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: Seen in http://elm-chan.org/fsw/ff/arc/ff11a.zip +--- + / FatFs module is a free software that opened under license policy of / following conditions. / diff --git a/src/licensedcode/data/rules/other-permissive_354.yml b/src/licensedcode/data/rules/other-permissive_354.yml deleted file mode 100644 index b2c8699ce9a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_354.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: Seen in http://elm-chan.org/fsw/ff/arc/ff11a.zip diff --git a/src/licensedcode/data/rules/other-permissive_357.RULE b/src/licensedcode/data/rules/other-permissive_357.RULE index a2f1ea1095e..2f2430bfa75 100644 --- a/src/licensedcode/data/rules/other-permissive_357.RULE +++ b/src/licensedcode/data/rules/other-permissive_357.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + is distributed with no restrictions on usage or - redistribution. + redistribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_357.yml b/src/licensedcode/data/rules/other-permissive_357.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_357.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_358.RULE b/src/licensedcode/data/rules/other-permissive_358.RULE index e4793737edc..3725fa4cb45 100644 --- a/src/licensedcode/data/rules/other-permissive_358.RULE +++ b/src/licensedcode/data/rules/other-permissive_358.RULE @@ -1,4 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + This file may be freely distributed with or without modifications, so long as modified versions are marked as such - and copyright notices are not removed. + and copyright notices are not removed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_358.yml b/src/licensedcode/data/rules/other-permissive_358.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_358.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_36.RULE b/src/licensedcode/data/rules/other-permissive_36.RULE index 950960dccb8..ff4b2b2e86a 100644 --- a/src/licensedcode/data/rules/other-permissive_36.RULE +++ b/src/licensedcode/data/rules/other-permissive_36.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + No restrictions are placed on this code, * as long as the copyright notice is preserved . No guarantees or * warrantees of any sort whatsoever are given or implied or anything. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_36.yml b/src/licensedcode/data/rules/other-permissive_36.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_36.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_37.RULE b/src/licensedcode/data/rules/other-permissive_37.RULE index 045a3357cec..716ecf0f609 100644 --- a/src/licensedcode/data/rules/other-permissive_37.RULE +++ b/src/licensedcode/data/rules/other-permissive_37.RULE @@ -1 +1,8 @@ -open-source, not licensed under the GPL or LGPL, and can be used freely for commercial use. \ No newline at end of file +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +--- + +open-source, not licensed under the GPL or LGPL, and can be used freely for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_37.yml b/src/licensedcode/data/rules/other-permissive_37.yml deleted file mode 100644 index 7ef0bb20dfc..00000000000 --- a/src/licensedcode/data/rules/other-permissive_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/other-permissive_38.RULE b/src/licensedcode/data/rules/other-permissive_38.RULE index 6107ee47775..4e28007da29 100644 --- a/src/licensedcode/data/rules/other-permissive_38.RULE +++ b/src/licensedcode/data/rules/other-permissive_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: from nagios xi licenses/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software to use, copy, modify, distribute, sublicense, and/or sell copies of the software, and to permit persons to whom the software is furnished diff --git a/src/licensedcode/data/rules/other-permissive_38.yml b/src/licensedcode/data/rules/other-permissive_38.yml deleted file mode 100644 index 768a1105433..00000000000 --- a/src/licensedcode/data/rules/other-permissive_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: from nagios xi licenses/ diff --git a/src/licensedcode/data/rules/other-permissive_39.RULE b/src/licensedcode/data/rules/other-permissive_39.RULE index bf2afa5ce65..d48d01abc65 100644 --- a/src/licensedcode/data/rules/other-permissive_39.RULE +++ b/src/licensedcode/data/rules/other-permissive_39.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Rights are granted to use this software in any way so long as this notice is not removed. The author is not responsible for loss or damages that may - result from its use. + result from its use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_39.yml b/src/licensedcode/data/rules/other-permissive_39.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_39.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_4.RULE b/src/licensedcode/data/rules/other-permissive_4.RULE index 4dc04101f41..46cbf721d63 100644 --- a/src/licensedcode/data/rules/other-permissive_4.RULE +++ b/src/licensedcode/data/rules/other-permissive_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: an apache-2.0 license moified with an extra section 10 +ignorable_urls: + - http://www.apache.org/licenses/ +--- + BLUEPRINT LICENSE based on Apache 2.0 License Note: Paragraph 10 is the only modification. @@ -187,5 +195,4 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION endorsed, or promoted by Palantir Technologies Inc. or its Contributors. -END OF TERMS AND CONDITIONS - +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_4.yml b/src/licensedcode/data/rules/other-permissive_4.yml deleted file mode 100644 index cfb03817e69..00000000000 --- a/src/licensedcode/data/rules/other-permissive_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: an apache-2.0 license moified with an extra section 10 -ignorable_urls: - - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/other-permissive_40.RULE b/src/licensedcode/data/rules/other-permissive_40.RULE index 5d76d11e412..bb185700f8a 100644 --- a/src/licensedcode/data/rules/other-permissive_40.RULE +++ b/src/licensedcode/data/rules/other-permissive_40.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + License: - You can use, modify, distribute this table freely. + You can use, modify, distribute this table freely. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_40.yml b/src/licensedcode/data/rules/other-permissive_40.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_41.RULE b/src/licensedcode/data/rules/other-permissive_41.RULE index 00778955211..47c7927e190 100644 --- a/src/licensedcode/data/rules/other-permissive_41.RULE +++ b/src/licensedcode/data/rules/other-permissive_41.RULE @@ -1 +1,7 @@ - You can use, modify, distribute this table freely. +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + + You can use, modify, distribute this table freely. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_41.yml b/src/licensedcode/data/rules/other-permissive_41.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_42.RULE b/src/licensedcode/data/rules/other-permissive_42.RULE index d638f75f0d9..3554dfc970d 100644 --- a/src/licensedcode/data/rules/other-permissive_42.RULE +++ b/src/licensedcode/data/rules/other-permissive_42.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + License: Rights are granted to use this software in any way so long as this notice is not removed. The author is not responsible for loss or damages that may diff --git a/src/licensedcode/data/rules/other-permissive_42.yml b/src/licensedcode/data/rules/other-permissive_42.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_42.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_43.RULE b/src/licensedcode/data/rules/other-permissive_43.RULE index 690e63d6a52..ab32746207f 100644 --- a/src/licensedcode/data/rules/other-permissive_43.RULE +++ b/src/licensedcode/data/rules/other-permissive_43.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: seen in old Sun code +--- + Non-exclusive rights to redistribute, modify, translate, and use this software in source and binary forms, in whole or in part, is hereby granted, provided that the above copyright notice is @@ -7,4 +13,4 @@ products derived from this software. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_43.yml b/src/licensedcode/data/rules/other-permissive_43.yml deleted file mode 100644 index f4b24a81046..00000000000 --- a/src/licensedcode/data/rules/other-permissive_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: seen in old Sun code diff --git a/src/licensedcode/data/rules/other-permissive_44.RULE b/src/licensedcode/data/rules/other-permissive_44.RULE index 7b2a299e823..d078c759577 100644 --- a/src/licensedcode/data/rules/other-permissive_44.RULE +++ b/src/licensedcode/data/rules/other-permissive_44.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + This software is available with usual "research" terms with the aim of retain credits of the software. Permission to use, copy, modify and distribute this software for any @@ -6,4 +11,4 @@ copyright notice and this permission notice appear in all copies, and the name of INRIA, IMAG, or any contributor not be used in advertising or publicity pertaining to this material without the prior explicit permission. The software is provided "as is" without any -warranties, support or liabilities of any kind. +warranties, support or liabilities of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_44.yml b/src/licensedcode/data/rules/other-permissive_44.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_45.RULE b/src/licensedcode/data/rules/other-permissive_45.RULE index 4fbbef9604d..c092bfa986b 100644 --- a/src/licensedcode/data/rules/other-permissive_45.RULE +++ b/src/licensedcode/data/rules/other-permissive_45.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted. * diff --git a/src/licensedcode/data/rules/other-permissive_45.yml b/src/licensedcode/data/rules/other-permissive_45.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_46.RULE b/src/licensedcode/data/rules/other-permissive_46.RULE index 5a9bfeb5783..78e20616f37 100644 --- a/src/licensedcode/data/rules/other-permissive_46.RULE +++ b/src/licensedcode/data/rules/other-permissive_46.RULE @@ -1,2 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Permission to distribute, modify and use this file under the standard license terms listed above has been obtained from the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_46.yml b/src/licensedcode/data/rules/other-permissive_46.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_46.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_47.RULE b/src/licensedcode/data/rules/other-permissive_47.RULE index f31595d0b17..def23a75045 100644 --- a/src/licensedcode/data/rules/other-permissive_47.RULE +++ b/src/licensedcode/data/rules/other-permissive_47.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + License: other Permission to use, copy, modify and distribute this software for non-commercial or commercial purposes and without fee is diff --git a/src/licensedcode/data/rules/other-permissive_47.yml b/src/licensedcode/data/rules/other-permissive_47.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_48.RULE b/src/licensedcode/data/rules/other-permissive_48.RULE index 9f0fa0e9e88..1a2e6fcbd77 100644 --- a/src/licensedcode/data/rules/other-permissive_48.RULE +++ b/src/licensedcode/data/rules/other-permissive_48.RULE @@ -1,4 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + # Permission is granted for use, copying, modification, distribution, # and distribution of modified versions of this work as long as the -# above copyright notice is included. - +# above copyright notice is included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_48.yml b/src/licensedcode/data/rules/other-permissive_48.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_49.RULE b/src/licensedcode/data/rules/other-permissive_49.RULE index fe6ec891b1f..52dec429d6d 100644 --- a/src/licensedcode/data/rules/other-permissive_49.RULE +++ b/src/licensedcode/data/rules/other-permissive_49.RULE @@ -1,5 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 80 +notes: a modified MIT license. See http://versionmeta.org/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation; the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice, a clear indication whether the content has been modified, and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +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/other-permissive_49.yml b/src/licensedcode/data/rules/other-permissive_49.yml deleted file mode 100644 index 19f9a0b1dce..00000000000 --- a/src/licensedcode/data/rules/other-permissive_49.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 80 -notes: a modified MIT license. See http://versionmeta.org/LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_5.RULE b/src/licensedcode/data/rules/other-permissive_5.RULE index dcae45fe78d..074318c6a56 100644 --- a/src/licensedcode/data/rules/other-permissive_5.RULE +++ b/src/licensedcode/data/rules/other-permissive_5.RULE @@ -1,4 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + The example applications in apps/ and C header files in include/ are licensed under a permissive license included in the source files which allows copying, modification and redistribution for any purpose without -attribution. +attribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_5.yml b/src/licensedcode/data/rules/other-permissive_5.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_50.RULE b/src/licensedcode/data/rules/other-permissive_50.RULE index d88e95c960e..7941e6f1d15 100644 --- a/src/licensedcode/data/rules/other-permissive_50.RULE +++ b/src/licensedcode/data/rules/other-permissive_50.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * This file is subject to the following copyright notice, which is * different from the notice used elsewhere in Tcl but rougly * equivalent in meaning. diff --git a/src/licensedcode/data/rules/other-permissive_50.yml b/src/licensedcode/data/rules/other-permissive_50.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_51.RULE b/src/licensedcode/data/rules/other-permissive_51.RULE index 1ccfa0a4b76..c334d8ea38b 100644 --- a/src/licensedcode/data/rules/other-permissive_51.RULE +++ b/src/licensedcode/data/rules/other-permissive_51.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * * Not derived from licensed software. * diff --git a/src/licensedcode/data/rules/other-permissive_51.yml b/src/licensedcode/data/rules/other-permissive_51.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_52.RULE b/src/licensedcode/data/rules/other-permissive_52.RULE index bcbb532dec7..934fe12a91b 100644 --- a/src/licensedcode/data/rules/other-permissive_52.RULE +++ b/src/licensedcode/data/rules/other-permissive_52.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * * Permission is granted to freely use, copy, modify, and redistribute * this software, provided that the author is not construed to be liable diff --git a/src/licensedcode/data/rules/other-permissive_52.yml b/src/licensedcode/data/rules/other-permissive_52.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_53.RULE b/src/licensedcode/data/rules/other-permissive_53.RULE index d602f5dfe47..e102610e1c5 100644 --- a/src/licensedcode/data/rules/other-permissive_53.RULE +++ b/src/licensedcode/data/rules/other-permissive_53.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * This file is subject to the following copyright notice, which is * different from the notice used elsewhere in Tcl but rougly * equivalent in meaning. diff --git a/src/licensedcode/data/rules/other-permissive_53.yml b/src/licensedcode/data/rules/other-permissive_53.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_54.RULE b/src/licensedcode/data/rules/other-permissive_54.RULE index 4d7e91151df..f8191eb641a 100644 --- a/src/licensedcode/data/rules/other-permissive_54.RULE +++ b/src/licensedcode/data/rules/other-permissive_54.RULE @@ -1 +1,7 @@ -% You may freely use, modify and/or distribute this file. +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + +% You may freely use, modify and/or distribute this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_54.yml b/src/licensedcode/data/rules/other-permissive_54.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_55.RULE b/src/licensedcode/data/rules/other-permissive_55.RULE index 67c35130a60..38af747e750 100644 --- a/src/licensedcode/data/rules/other-permissive_55.RULE +++ b/src/licensedcode/data/rules/other-permissive_55.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 99 +--- + Old BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_55.yml b/src/licensedcode/data/rules/other-permissive_55.yml deleted file mode 100644 index 350a2a32976..00000000000 --- a/src/licensedcode/data/rules/other-permissive_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/other-permissive_56.RULE b/src/licensedcode/data/rules/other-permissive_56.RULE index 82719e10d48..57db6d7adbf 100644 --- a/src/licensedcode/data/rules/other-permissive_56.RULE +++ b/src/licensedcode/data/rules/other-permissive_56.RULE @@ -1,6 +1,12 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: Seen in gettext +--- + This file can be copied and used freely without restrictions. It can be used in projects which are not available under the GNU General Public License but which still want to provide support for the GNU gettext functionality. Please note that the actual code of GNU gettext is covered by the GNU -General Public License and is *not* in the public domain. +General Public License and is *not* in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_56.yml b/src/licensedcode/data/rules/other-permissive_56.yml deleted file mode 100644 index 5371f787288..00000000000 --- a/src/licensedcode/data/rules/other-permissive_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: Seen in gettext diff --git a/src/licensedcode/data/rules/other-permissive_57.RULE b/src/licensedcode/data/rules/other-permissive_57.RULE index 69aaddf6e6c..f1b02426dae 100644 --- a/src/licensedcode/data/rules/other-permissive_57.RULE +++ b/src/licensedcode/data/rules/other-permissive_57.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: Seen in gettext +--- + This file, can be copied and used freely without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_57.yml b/src/licensedcode/data/rules/other-permissive_57.yml deleted file mode 100644 index bf5a7fe7e98..00000000000 --- a/src/licensedcode/data/rules/other-permissive_57.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: Seen in gettext diff --git a/src/licensedcode/data/rules/other-permissive_58.RULE b/src/licensedcode/data/rules/other-permissive_58.RULE index 60d5368533e..6392e237ba5 100644 --- a/src/licensedcode/data/rules/other-permissive_58.RULE +++ b/src/licensedcode/data/rules/other-permissive_58.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: Seen in gettext +--- + can be copied and used freely without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_58.yml b/src/licensedcode/data/rules/other-permissive_58.yml deleted file mode 100644 index bf5a7fe7e98..00000000000 --- a/src/licensedcode/data/rules/other-permissive_58.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: Seen in gettext diff --git a/src/licensedcode/data/rules/other-permissive_59.RULE b/src/licensedcode/data/rules/other-permissive_59.RULE index f7f81538efc..18767d7808a 100644 --- a/src/licensedcode/data/rules/other-permissive_59.RULE +++ b/src/licensedcode/data/rules/other-permissive_59.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * Permission granted to use this software, so long as this copyright * notice accompanies any products derived therefrom. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_59.yml b/src/licensedcode/data/rules/other-permissive_59.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_6.RULE b/src/licensedcode/data/rules/other-permissive_6.RULE index e729a095a43..a45cfc46f0e 100644 --- a/src/licensedcode/data/rules/other-permissive_6.RULE +++ b/src/licensedcode/data/rules/other-permissive_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_reference: yes +notes: an apache-2.0 license moified with an extra section 10 +--- + This project is made available under a **modified version of the Apache-2.0 license**. The only modification is an additional section (paragraph 10) in which we ask that you do not pass off any derivative products as Palantir’s products, given diff --git a/src/licensedcode/data/rules/other-permissive_6.yml b/src/licensedcode/data/rules/other-permissive_6.yml deleted file mode 100644 index 27ff9847647..00000000000 --- a/src/licensedcode/data/rules/other-permissive_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -notes: an apache-2.0 license moified with an extra section 10 diff --git a/src/licensedcode/data/rules/other-permissive_60.RULE b/src/licensedcode/data/rules/other-permissive_60.RULE index 4320be78f34..c32a2c80ce6 100644 --- a/src/licensedcode/data/rules/other-permissive_60.RULE +++ b/src/licensedcode/data/rules/other-permissive_60.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 95 +--- + the following BSD-like license applies (at your option) to the files \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_60.yml b/src/licensedcode/data/rules/other-permissive_60.yml deleted file mode 100644 index f3c348970fc..00000000000 --- a/src/licensedcode/data/rules/other-permissive_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/other-permissive_61.RULE b/src/licensedcode/data/rules/other-permissive_61.RULE index b238df03027..4915c81de6f 100644 --- a/src/licensedcode/data/rules/other-permissive_61.RULE +++ b/src/licensedcode/data/rules/other-permissive_61.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: see http://www.unidex.com/turing/add_one_tm.xml.htm +--- + Inc. grants you permission to copy, modify, distribute, and/or use the DTD provided that you agree to the following conditions: diff --git a/src/licensedcode/data/rules/other-permissive_61.yml b/src/licensedcode/data/rules/other-permissive_61.yml deleted file mode 100644 index 80bb82ac39b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: see http://www.unidex.com/turing/add_one_tm.xml.htm diff --git a/src/licensedcode/data/rules/other-permissive_62.RULE b/src/licensedcode/data/rules/other-permissive_62.RULE index d803f83e10c..f0ab56eb3b2 100644 --- a/src/licensedcode/data/rules/other-permissive_62.RULE +++ b/src/licensedcode/data/rules/other-permissive_62.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Do what you like, but don't claim you wrote it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_62.yml b/src/licensedcode/data/rules/other-permissive_62.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_63.RULE b/src/licensedcode/data/rules/other-permissive_63.RULE index 938e0b33bcb..d32722d3f2d 100644 --- a/src/licensedcode/data/rules/other-permissive_63.RULE +++ b/src/licensedcode/data/rules/other-permissive_63.RULE @@ -1,6 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + * This software is distributed with NO WARRANTIES, not even the implied * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * Authors grant any other persons or organizations permission to use * or modify this software as long as this message is kept with the software, -* all derivative works or modified versions. +* all derivative works or modified versions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_63.yml b/src/licensedcode/data/rules/other-permissive_63.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_63.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_64.RULE b/src/licensedcode/data/rules/other-permissive_64.RULE index c2d03b4a81a..344f50b2d54 100644 --- a/src/licensedcode/data/rules/other-permissive_64.RULE +++ b/src/licensedcode/data/rules/other-permissive_64.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + * This work is provided "as is"; redistribution and modification * in whole or in part, in any medium, physical or electronic is * permitted without restriction. @@ -13,4 +18,4 @@ * 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. +* if advised of the possibility of such damage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_64.yml b/src/licensedcode/data/rules/other-permissive_64.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_64.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_65.RULE b/src/licensedcode/data/rules/other-permissive_65.RULE index 65cce701b88..8443b92bdb1 100644 --- a/src/licensedcode/data/rules/other-permissive_65.RULE +++ b/src/licensedcode/data/rules/other-permissive_65.RULE @@ -1,2 +1,12 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +notes: reference to a patent grant from NTT for camelia in OpenSSL +ignorable_urls: + - http://info.isl.ntt.co.jp/crypt/eng/info/chiteki.html +--- + Intellectual Property information for Camellia: - http://info.isl.ntt.co.jp/crypt/eng/info/chiteki.html + http://info.isl.ntt.co.jp/crypt/eng/info/chiteki.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_65.yml b/src/licensedcode/data/rules/other-permissive_65.yml deleted file mode 100644 index 1a8e5587ea7..00000000000 --- a/src/licensedcode/data/rules/other-permissive_65.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 -notes: reference to a patent grant from NTT for camelia in OpenSSL -ignorable_urls: - - http://info.isl.ntt.co.jp/crypt/eng/info/chiteki.html diff --git a/src/licensedcode/data/rules/other-permissive_66.RULE b/src/licensedcode/data/rules/other-permissive_66.RULE index af3966e617d..05c4320d3bf 100644 --- a/src/licensedcode/data/rules/other-permissive_66.RULE +++ b/src/licensedcode/data/rules/other-permissive_66.RULE @@ -1,5 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted for the distribution of this firmware data in hexadecimal or equivalent format, provided this copyright notice is - accompanying it. - + accompanying it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_66.yml b/src/licensedcode/data/rules/other-permissive_66.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_67.RULE b/src/licensedcode/data/rules/other-permissive_67.RULE index 1778f1ad1a1..ac021e6a0e0 100644 --- a/src/licensedcode/data/rules/other-permissive_67.RULE +++ b/src/licensedcode/data/rules/other-permissive_67.RULE @@ -1,7 +1,13 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This software may be modified only if its author and version information is updated accurately, and may be redistributed only if accompanied by this unaltered notice. Subject to those restrictions, permission is granted to anyone to do anything with this software. The copyright holders make no guarantees regarding this software, and are not responsible for any damage -resulting from its use. +resulting from its use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_67.yml b/src/licensedcode/data/rules/other-permissive_67.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_68.RULE b/src/licensedcode/data/rules/other-permissive_68.RULE index 7ec85557341..796244f0b83 100644 --- a/src/licensedcode/data/rules/other-permissive_68.RULE +++ b/src/licensedcode/data/rules/other-permissive_68.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + have given us permission to reprint portions of their documentation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_68.yml b/src/licensedcode/data/rules/other-permissive_68.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_69.RULE b/src/licensedcode/data/rules/other-permissive_69.RULE index d7e40abd636..d436a74ee4d 100644 --- a/src/licensedcode/data/rules/other-permissive_69.RULE +++ b/src/licensedcode/data/rules/other-permissive_69.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + This material is reproduced with permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_69.yml b/src/licensedcode/data/rules/other-permissive_69.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_7.RULE b/src/licensedcode/data/rules/other-permissive_7.RULE index b423f0968d0..26235eeaa18 100644 --- a/src/licensedcode/data/rules/other-permissive_7.RULE +++ b/src/licensedcode/data/rules/other-permissive_7.RULE @@ -1 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: an apache-2.0 license moified with an extra section 10 +--- + Licensed under Blueprint License \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_7.yml b/src/licensedcode/data/rules/other-permissive_7.yml deleted file mode 100644 index 93772ae497a..00000000000 --- a/src/licensedcode/data/rules/other-permissive_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: an apache-2.0 license moified with an extra section 10 diff --git a/src/licensedcode/data/rules/other-permissive_70.RULE b/src/licensedcode/data/rules/other-permissive_70.RULE index da35f659d70..87b72507bbd 100644 --- a/src/licensedcode/data/rules/other-permissive_70.RULE +++ b/src/licensedcode/data/rules/other-permissive_70.RULE @@ -1,5 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Permission is granted to do *anything* you want with this file, commercial or otherwise, provided this message remains intact. So there! I would appreciate receiving any updates/patches/changes that anyone makes, and am willing to be the repository for said changes (am I -making a big mistake?). +making a big mistake?). \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_70.yml b/src/licensedcode/data/rules/other-permissive_70.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_70.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_71.RULE b/src/licensedcode/data/rules/other-permissive_71.RULE index 101421aa333..003daf01280 100644 --- a/src/licensedcode/data/rules/other-permissive_71.RULE +++ b/src/licensedcode/data/rules/other-permissive_71.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This work may be freely copied and distributed worldwide. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_71.yml b/src/licensedcode/data/rules/other-permissive_71.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_72.RULE b/src/licensedcode/data/rules/other-permissive_72.RULE index 02b61be4ca7..2d5c1fd2a68 100644 --- a/src/licensedcode/data/rules/other-permissive_72.RULE +++ b/src/licensedcode/data/rules/other-permissive_72.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +minimum_coverage: 60 +notes: seen in old eGenix code +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee or royalty is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/other-permissive_72.yml b/src/licensedcode/data/rules/other-permissive_72.yml deleted file mode 100644 index b3667fe56a3..00000000000 --- a/src/licensedcode/data/rules/other-permissive_72.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -minimum_coverage: 60 -notes: seen in old eGenix code diff --git a/src/licensedcode/data/rules/other-permissive_73.RULE b/src/licensedcode/data/rules/other-permissive_73.RULE index bc69c23f85b..01d851d2ef2 100644 --- a/src/licensedcode/data/rules/other-permissive_73.RULE +++ b/src/licensedcode/data/rules/other-permissive_73.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +--- + Portions of this software are derived from third-party works licensed under terms compatible with the above MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_73.yml b/src/licensedcode/data/rules/other-permissive_73.yml deleted file mode 100644 index 481c9855164..00000000000 --- a/src/licensedcode/data/rules/other-permissive_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_74.RULE b/src/licensedcode/data/rules/other-permissive_74.RULE index 12d853edf56..275df7411df 100644 --- a/src/licensedcode/data/rules/other-permissive_74.RULE +++ b/src/licensedcode/data/rules/other-permissive_74.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + // You should have received a copy of the License Agreement for the // Boost Graph Library along with the software; see the file LICENSE. // If not, contact Office of Research, University of Notre Dame, Notre @@ -14,4 +21,4 @@ // REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY // PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS // OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS -// OR OTHER RIGHTS. +// OR OTHER RIGHTS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_74.yml b/src/licensedcode/data/rules/other-permissive_74.yml deleted file mode 100644 index c2e969c9ec9..00000000000 --- a/src/licensedcode/data/rules/other-permissive_74.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_75.RULE b/src/licensedcode/data/rules/other-permissive_75.RULE index 28a99f31f0a..08b0b1eedbd 100644 --- a/src/licensedcode/data/rules/other-permissive_75.RULE +++ b/src/licensedcode/data/rules/other-permissive_75.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + // Permission to modify the code and to distribute modified code is // granted, provided the text of this NOTICE is retained, a notice that // the code was modified is included with the above COPYRIGHT NOTICE and @@ -9,4 +14,4 @@ // REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY // PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS // OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS -// OR OTHER RIGHTS. +// OR OTHER RIGHTS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_75.yml b/src/licensedcode/data/rules/other-permissive_75.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_75.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_76.RULE b/src/licensedcode/data/rules/other-permissive_76.RULE index 4cbb70c5892..43b30803453 100644 --- a/src/licensedcode/data/rules/other-permissive_76.RULE +++ b/src/licensedcode/data/rules/other-permissive_76.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + May be freely modified and distributed \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_76.yml b/src/licensedcode/data/rules/other-permissive_76.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_77.RULE b/src/licensedcode/data/rules/other-permissive_77.RULE index d5cac7ae9d3..da47e9c4df7 100644 --- a/src/licensedcode/data/rules/other-permissive_77.RULE +++ b/src/licensedcode/data/rules/other-permissive_77.RULE @@ -1,5 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: seen in hdf5 +--- + * Permission is granted to use this file in whole or in * part for any purpose, educational, recreational or commercial, * provided that this copyright notice is retained unchanged. * This software is available to all free of charge by anonymous - * FTP and in the UUNET archives. + * FTP and in the UUNET archives. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_77.yml b/src/licensedcode/data/rules/other-permissive_77.yml deleted file mode 100644 index c3bb464e367..00000000000 --- a/src/licensedcode/data/rules/other-permissive_77.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: seen in hdf5 diff --git a/src/licensedcode/data/rules/other-permissive_78.RULE b/src/licensedcode/data/rules/other-permissive_78.RULE index 66420407650..3250101854d 100644 --- a/src/licensedcode/data/rules/other-permissive_78.RULE +++ b/src/licensedcode/data/rules/other-permissive_78.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: a weird MIT-like license +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, @@ -11,4 +18,4 @@ substantial portions of the Software. use that modification OR - if you plan to use it "as-is", then "PeneLoPe" MUST be present in the name of the submitted - solver + solver \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_78.yml b/src/licensedcode/data/rules/other-permissive_78.yml deleted file mode 100644 index 6d797fd6983..00000000000 --- a/src/licensedcode/data/rules/other-permissive_78.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: a weird MIT-like license diff --git a/src/licensedcode/data/rules/other-permissive_79.RULE b/src/licensedcode/data/rules/other-permissive_79.RULE index 009bcd6db50..a0a391d8343 100644 --- a/src/licensedcode/data/rules/other-permissive_79.RULE +++ b/src/licensedcode/data/rules/other-permissive_79.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + As a special exception, when this file is copied by dh-make into a dh-make output file, you may use that output file without restriction. -This special exception was added by Craig Small in version 0.37 of dh-make. +This special exception was added by Craig Small in version 0.37 of dh-make. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_79.yml b/src/licensedcode/data/rules/other-permissive_79.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_8.RULE b/src/licensedcode/data/rules/other-permissive_8.RULE index 5dde60843c8..7b312ce6e56 100644 --- a/src/licensedcode/data/rules/other-permissive_8.RULE +++ b/src/licensedcode/data/rules/other-permissive_8.RULE @@ -1 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: an apache-2.0 license moified with an extra section 10 +ignorable_urls: + - https://github.com/palantir/blueprint/blob/develop/LICENSE +--- + Licensed under https://github.com/palantir/blueprint/blob/develop/LICENSE" Blueprint License \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_8.yml b/src/licensedcode/data/rules/other-permissive_8.yml deleted file mode 100644 index f8d3c56cabb..00000000000 --- a/src/licensedcode/data/rules/other-permissive_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: an apache-2.0 license moified with an extra section 10 -ignorable_urls: - - https://github.com/palantir/blueprint/blob/develop/LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_80.RULE b/src/licensedcode/data/rules/other-permissive_80.RULE index 096e5ca9560..595f0b44e5d 100644 --- a/src/licensedcode/data/rules/other-permissive_80.RULE +++ b/src/licensedcode/data/rules/other-permissive_80.RULE @@ -1,3 +1,15 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Per Fedora "This license contains a title preservation clause, which can literally be + read as a purported requirement to assign copyright in derivative works upstream to OpenVision. + However, the use of the word "retained" suggests instead that it should be read as a mere + assertion of persistence of copyright in derivative works. Since this would automatically + occur, as long as code persists from the original OpenVision copyrighted code base, under + this interpretation, this becomes functionally equivalent to MIT. +--- + WARNING: Retrieving the OpenVision Kerberos Administration system source code, as described below, indicates your acceptance of the diff --git a/src/licensedcode/data/rules/other-permissive_80.yml b/src/licensedcode/data/rules/other-permissive_80.yml deleted file mode 100644 index 3f981596483..00000000000 --- a/src/licensedcode/data/rules/other-permissive_80.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Per Fedora "This license contains a title preservation clause, which can literally be - read as a purported requirement to assign copyright in derivative works upstream to OpenVision. - However, the use of the word "retained" suggests instead that it should be read as a mere - assertion of persistence of copyright in derivative works. Since this would automatically - occur, as long as code persists from the original OpenVision copyrighted code base, under - this interpretation, this becomes functionally equivalent to MIT. diff --git a/src/licensedcode/data/rules/other-permissive_81.RULE b/src/licensedcode/data/rules/other-permissive_81.RULE index be0394d6d61..e985e7de263 100644 --- a/src/licensedcode/data/rules/other-permissive_81.RULE +++ b/src/licensedcode/data/rules/other-permissive_81.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Subject to the following 3 conditions, , Inc. permits you, free of charge, to (a) use, copy, distribute, modify, perform and display this software and associated documentation files (the "Software"), and (b) @@ -14,4 +20,4 @@ PURPOSE OR NONINFRINGEMENT. 3) IN NO EVENT SHALL , INC. BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT OF OR IN CONNECTION WITH THE SOFTWARE (HOWEVER ARISING, INCLUDING NEGLIGENCE), -EVEN IF , INC. IS AWARE OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file +EVEN IF , INC. IS AWARE OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_81.yml b/src/licensedcode/data/rules/other-permissive_81.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_82.RULE b/src/licensedcode/data/rules/other-permissive_82.RULE index 9c8440a7fff..c3bde3c3849 100644 --- a/src/licensedcode/data/rules/other-permissive_82.RULE +++ b/src/licensedcode/data/rules/other-permissive_82.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose is hereby granted without fee, provided that this copyright and notice appears in all copies. diff --git a/src/licensedcode/data/rules/other-permissive_82.yml b/src/licensedcode/data/rules/other-permissive_82.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_83.RULE b/src/licensedcode/data/rules/other-permissive_83.RULE index 47d2b0d5056..b6cbfca076e 100644 --- a/src/licensedcode/data/rules/other-permissive_83.RULE +++ b/src/licensedcode/data/rules/other-permissive_83.RULE @@ -1,3 +1,15 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: Per Fedora, this "Cheusov variant" of the MIT "does not give explicit permission to redistribute + unmodified copies, however, since it does give permission to "copy" unmodifed copies, we + are interpreting it that way. Also, since it does grant explicit permission to redistribute + modified code, we feel the intent was to grant permission to redistribute unmodified copies + as well. That said, this license is poorly worded, and we do not recommend its use." +--- + * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * diff --git a/src/licensedcode/data/rules/other-permissive_83.yml b/src/licensedcode/data/rules/other-permissive_83.yml deleted file mode 100644 index bd21dc74d7d..00000000000 --- a/src/licensedcode/data/rules/other-permissive_83.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: Per Fedora, this "Cheusov variant" of the MIT "does not give explicit permission to redistribute - unmodified copies, however, since it does give permission to "copy" unmodifed copies, we - are interpreting it that way. Also, since it does grant explicit permission to redistribute - modified code, we feel the intent was to grant permission to redistribute unmodified copies - as well. That said, this license is poorly worded, and we do not recommend its use." diff --git a/src/licensedcode/data/rules/other-permissive_84.RULE b/src/licensedcode/data/rules/other-permissive_84.RULE index e7fce9f7e41..f85d49e3aee 100644 --- a/src/licensedcode/data/rules/other-permissive_84.RULE +++ b/src/licensedcode/data/rules/other-permissive_84.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify and distribute this software and its documentation for any purpose is hereby granted without fee, provided that this copyright and notice appears in all copies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_84.yml b/src/licensedcode/data/rules/other-permissive_84.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_85.RULE b/src/licensedcode/data/rules/other-permissive_85.RULE index 62fc60e6004..8d182d39121 100644 --- a/src/licensedcode/data/rules/other-permissive_85.RULE +++ b/src/licensedcode/data/rules/other-permissive_85.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 60 +notes: Per Fedora, this is the Whatever Variant of MIT +--- + THIS SOFTWARE IS PROVIDED 'AS-IS', WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN NO EVENT WILL THE AUTHORS BE HELD LIABLE FOR ANY DAMAGES ARISING FROM THE USE OF THIS SOFTWARE. diff --git a/src/licensedcode/data/rules/other-permissive_85.yml b/src/licensedcode/data/rules/other-permissive_85.yml deleted file mode 100644 index cf09dced27c..00000000000 --- a/src/licensedcode/data/rules/other-permissive_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 60 -notes: Per Fedora, this is the Whatever Variant of MIT diff --git a/src/licensedcode/data/rules/other-permissive_86.RULE b/src/licensedcode/data/rules/other-permissive_86.RULE index db2d9476717..5bd29a55ad0 100644 --- a/src/licensedcode/data/rules/other-permissive_86.RULE +++ b/src/licensedcode/data/rules/other-permissive_86.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Per Fedora an MIT-like license aka. PetSC variant +ignorable_emails: + - petsc-maint@mcs.anl.gov +--- + This program discloses material protectable under copyright laws of the United States. Permission to copy and modify this software and its documentation is hereby granted, provided that this notice is retained thereon and on all copies or modifications. The University of Chicago makes no representations as to the suitability diff --git a/src/licensedcode/data/rules/other-permissive_86.yml b/src/licensedcode/data/rules/other-permissive_86.yml deleted file mode 100644 index 6742afded6f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_86.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Per Fedora an MIT-like license aka. PetSC variant -ignorable_emails: - - petsc-maint@mcs.anl.gov diff --git a/src/licensedcode/data/rules/other-permissive_87.RULE b/src/licensedcode/data/rules/other-permissive_87.RULE index bf652bdb37f..cdcd9cadf65 100644 --- a/src/licensedcode/data/rules/other-permissive_87.RULE +++ b/src/licensedcode/data/rules/other-permissive_87.RULE @@ -1,3 +1,14 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: for a time (between 1999 and 2004) this was the license from sudo from https://www.sudo.ws/repos/sudo/file/92712e895afb/LICENSE + until https://www.sudo.ws/repos/sudo/file/d8d7bfc8a18b/LICENSE e.g. this was a BSD Original/4 + clauses made into 3 clause then with a new 4th clause added borrowed from the Apache 1.1 + license. This is not worthy of being its own license entry as this is no longer in use. + This is also referenced at http://www.linfo.org/bsdlicense.html +--- + 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. @@ -8,4 +19,4 @@ 4. Products derived from this software may not be called nor may appear in their names without specific prior written permission from the author. -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 +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/other-permissive_87.yml b/src/licensedcode/data/rules/other-permissive_87.yml deleted file mode 100644 index 2e472e588cf..00000000000 --- a/src/licensedcode/data/rules/other-permissive_87.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: for a time (between 1999 and 2004) this was the license from sudo from https://www.sudo.ws/repos/sudo/file/92712e895afb/LICENSE - until https://www.sudo.ws/repos/sudo/file/d8d7bfc8a18b/LICENSE e.g. this was a BSD Original/4 - clauses made into 3 clause then with a new 4th clause added borrowed from the Apache 1.1 - license. This is not worthy of being its own license entry as this is no longer in use. - This is also referenced at http://www.linfo.org/bsdlicense.html diff --git a/src/licensedcode/data/rules/other-permissive_88.RULE b/src/licensedcode/data/rules/other-permissive_88.RULE index 222ae6074c7..de3387cdd3d 100644 --- a/src/licensedcode/data/rules/other-permissive_88.RULE +++ b/src/licensedcode/data/rules/other-permissive_88.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * Modify the code anyway you like and report changes * as well as any good ideas to me \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_88.yml b/src/licensedcode/data/rules/other-permissive_88.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_89.RULE b/src/licensedcode/data/rules/other-permissive_89.RULE index bcf0da28d39..2d08a77ca77 100644 --- a/src/licensedcode/data/rules/other-permissive_89.RULE +++ b/src/licensedcode/data/rules/other-permissive_89.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: See in ispell recent versions +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -27,4 +34,4 @@ * 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. + * SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_89.yml b/src/licensedcode/data/rules/other-permissive_89.yml deleted file mode 100644 index d0eb08c0c22..00000000000 --- a/src/licensedcode/data/rules/other-permissive_89.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: See in ispell recent versions diff --git a/src/licensedcode/data/rules/other-permissive_9.RULE b/src/licensedcode/data/rules/other-permissive_9.RULE index eac7b6a2be8..1a726dbd29c 100644 --- a/src/licensedcode/data/rules/other-permissive_9.RULE +++ b/src/licensedcode/data/rules/other-permissive_9.RULE @@ -1 +1,10 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +notes: an apache-2.0 license moified with an extra section 10 +ignorable_urls: + - https://github.com/palantir/blueprint/blob/develop/LICENSE +--- + https://github.com/palantir/blueprint/blob/develop/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_9.yml b/src/licensedcode/data/rules/other-permissive_9.yml deleted file mode 100644 index a1de3626fcc..00000000000 --- a/src/licensedcode/data/rules/other-permissive_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 -notes: an apache-2.0 license moified with an extra section 10 -ignorable_urls: - - https://github.com/palantir/blueprint/blob/develop/LICENSE diff --git a/src/licensedcode/data/rules/other-permissive_90.RULE b/src/licensedcode/data/rules/other-permissive_90.RULE index c86623f343a..9701db8437f 100644 --- a/src/licensedcode/data/rules/other-permissive_90.RULE +++ b/src/licensedcode/data/rules/other-permissive_90.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: Seen in gettext +--- + # Permission is granted to freely copy and distribute # this file and modified versions, provided that this # header is not removed and modified versions are marked diff --git a/src/licensedcode/data/rules/other-permissive_90.yml b/src/licensedcode/data/rules/other-permissive_90.yml deleted file mode 100644 index 5371f787288..00000000000 --- a/src/licensedcode/data/rules/other-permissive_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: Seen in gettext diff --git a/src/licensedcode/data/rules/other-permissive_91.RULE b/src/licensedcode/data/rules/other-permissive_91.RULE index 8f022a6fe22..35ee5f53033 100644 --- a/src/licensedcode/data/rules/other-permissive_91.RULE +++ b/src/licensedcode/data/rules/other-permissive_91.RULE @@ -1,5 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: Seen in gettext +--- + This file is distributed under the same license as the package Permission is granted to freely copy and distribute this file and modified versions, provided that this header is not removed and modified versions are marked -as such. +as such. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_91.yml b/src/licensedcode/data/rules/other-permissive_91.yml deleted file mode 100644 index 5371f787288..00000000000 --- a/src/licensedcode/data/rules/other-permissive_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: Seen in gettext diff --git a/src/licensedcode/data/rules/other-permissive_92.RULE b/src/licensedcode/data/rules/other-permissive_92.RULE index bd902cb9b0b..7708275a3f0 100644 --- a/src/licensedcode/data/rules/other-permissive_92.RULE +++ b/src/licensedcode/data/rules/other-permissive_92.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: typically for GPL but this can vary and be various versions +--- + All rights are reserved by the author, with the following exceptions: Permission is granted to freely reproduce and distribute this software, possibly in exchange for a fee, provided that this copyright notice appears @@ -6,4 +12,4 @@ notice and additional notices stating that the work has been modified. This source code may be translated into executable form and incorporated into proprietary software; there is no requirement for such software to - contain a copyright notice related to this source. + contain a copyright notice related to this source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_92.yml b/src/licensedcode/data/rules/other-permissive_92.yml deleted file mode 100644 index d5df250cef3..00000000000 --- a/src/licensedcode/data/rules/other-permissive_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/other-permissive_93.RULE b/src/licensedcode/data/rules/other-permissive_93.RULE index 96cd2f99a48..9084c1e550a 100644 --- a/src/licensedcode/data/rules/other-permissive_93.RULE +++ b/src/licensedcode/data/rules/other-permissive_93.RULE @@ -1,6 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted. Please note that this software comes with -NO WARRANTY +NO WARRANTY \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_93.yml b/src/licensedcode/data/rules/other-permissive_93.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_94.RULE b/src/licensedcode/data/rules/other-permissive_94.RULE index 332f39833a5..9a7eb77bf8d 100644 --- a/src/licensedcode/data/rules/other-permissive_94.RULE +++ b/src/licensedcode/data/rules/other-permissive_94.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and -without fee is hereby granted. +without fee is hereby granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_94.yml b/src/licensedcode/data/rules/other-permissive_94.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_94.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_95.RULE b/src/licensedcode/data/rules/other-permissive_95.RULE index 8d1915dff10..5eca9e822ab 100644 --- a/src/licensedcode/data/rules/other-permissive_95.RULE +++ b/src/licensedcode/data/rules/other-permissive_95.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + * Permission is granted to distribute this file in any manner provided -* this notice remains intact. +* this notice remains intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_95.yml b/src/licensedcode/data/rules/other-permissive_95.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_96.RULE b/src/licensedcode/data/rules/other-permissive_96.RULE index 3e8b49abfac..80813eae332 100644 --- a/src/licensedcode/data/rules/other-permissive_96.RULE +++ b/src/licensedcode/data/rules/other-permissive_96.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: See in ispell older versions +ignorable_authors: + - Geoff Kuenning +--- + # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: @@ -29,4 +38,4 @@ # 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. +# SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_96.yml b/src/licensedcode/data/rules/other-permissive_96.yml deleted file mode 100644 index 5ef71249ea5..00000000000 --- a/src/licensedcode/data/rules/other-permissive_96.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: See in ispell older versions -ignorable_authors: - - Geoff Kuenning diff --git a/src/licensedcode/data/rules/other-permissive_97.RULE b/src/licensedcode/data/rules/other-permissive_97.RULE index fa872aaadc4..860e6fe4e65 100644 --- a/src/licensedcode/data/rules/other-permissive_97.RULE +++ b/src/licensedcode/data/rules/other-permissive_97.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + This is a free software and is opened for education, research and commercial developments under license policy of following trems. @@ -6,5 +12,4 @@ research and commercial developments under license policy of following trems. * The module is a free software and there is NO WARRANTY. * No restriction on use. You can use, modify and redistribute it for personal, non-profit or commercial product UNDER YOUR RESPONSIBILITY. -* Redistributions of source code must retain the above copyright notice. - +* Redistributions of source code must retain the above copyright notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_97.yml b/src/licensedcode/data/rules/other-permissive_97.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_98.RULE b/src/licensedcode/data/rules/other-permissive_98.RULE index 254189a0866..53894537d75 100644 --- a/src/licensedcode/data/rules/other-permissive_98.RULE +++ b/src/licensedcode/data/rules/other-permissive_98.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + conspicuously and appropriately publish on each copy of a derivative work \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_98.yml b/src/licensedcode/data/rules/other-permissive_98.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_99.RULE b/src/licensedcode/data/rules/other-permissive_99.RULE index d24acfe89f3..34faea1c82c 100644 --- a/src/licensedcode/data/rules/other-permissive_99.RULE +++ b/src/licensedcode/data/rules/other-permissive_99.RULE @@ -1,5 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + # This script may be freely copied, used and modified providing that # this notice and the copyright statement are included in all copies # and derivative works. No warranty is offered, and use is entirely at # your own risk. Bugfixes and improvements would be appreciated by the -# author. +# author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_99.yml b/src/licensedcode/data/rules/other-permissive_99.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_adobe.RULE b/src/licensedcode/data/rules/other-permissive_adobe.RULE index 214ec36af2d..ce7f3a54c99 100644 --- a/src/licensedcode/data/rules/other-permissive_adobe.RULE +++ b/src/licensedcode/data/rules/other-permissive_adobe.RULE @@ -1,4 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + Permission to use, reproduce, display and distribute the listed typefaces is hereby granted, provided that the Adobe Copyright notice appears in all whole and partial copies of the software and that the following trademark -symbol and attribution appear in all unmodified copies of the software: +symbol and attribution appear in all unmodified copies of the software: \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_adobe.yml b/src/licensedcode/data/rules/other-permissive_adobe.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_adobe.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_and_free-unknown_1.RULE b/src/licensedcode/data/rules/other-permissive_and_free-unknown_1.RULE index 0b6ff644ad5..b76d909efd8 100644 --- a/src/licensedcode/data/rules/other-permissive_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_free-unknown_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive AND free-unknown +is_license_notice: yes +relevance: 100 +notes: This derived from a BSD license, possibly stripped down from any license grant. +--- + Redistributions 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. diff --git a/src/licensedcode/data/rules/other-permissive_and_free-unknown_1.yml b/src/licensedcode/data/rules/other-permissive_and_free-unknown_1.yml deleted file mode 100644 index 53fb9805b7d..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_free-unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive AND free-unknown -is_license_notice: yes -relevance: 100 -notes: This derived from a BSD license, possibly stripped down from any license grant. diff --git a/src/licensedcode/data/rules/other-permissive_and_free-unknown_2.RULE b/src/licensedcode/data/rules/other-permissive_and_free-unknown_2.RULE index 5941a834e52..ba0b5021ff4 100644 --- a/src/licensedcode/data/rules/other-permissive_and_free-unknown_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_free-unknown_2.RULE @@ -1 +1,8 @@ -Autogenerated files with permissive licenses. +--- +license_expression: other-permissive AND free-unknown +is_license_notice: yes +relevance: 20 +minimum_coverage: 100 +--- + +Autogenerated files with permissive licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_and_free-unknown_2.yml b/src/licensedcode/data/rules/other-permissive_and_free-unknown_2.yml deleted file mode 100644 index acdf01fdbea..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_free-unknown_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive AND free-unknown -is_license_notice: yes -relevance: 20 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/other-permissive_and_free-unknown_87.RULE b/src/licensedcode/data/rules/other-permissive_and_free-unknown_87.RULE index 3cab24f7331..7479245f4a1 100644 --- a/src/licensedcode/data/rules/other-permissive_and_free-unknown_87.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_free-unknown_87.RULE @@ -1,4 +1,8 @@ +--- +license_expression: other-permissive AND free-unknown +is_license_notice: yes +--- + This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notice for more information. - + PURPOSE. See the above copyright notice for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_and_free-unknown_87.yml b/src/licensedcode/data/rules/other-permissive_and_free-unknown_87.yml deleted file mode 100644 index b10f68fea29..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_free-unknown_87.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive AND free-unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_and_ietf_1.RULE b/src/licensedcode/data/rules/other-permissive_and_ietf_1.RULE index 7ae385970fc..28bff0fdc76 100644 --- a/src/licensedcode/data/rules/other-permissive_and_ietf_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_ietf_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive AND ietf +is_license_text: yes +--- + Disclaimer and license: Regarding this entire document or any portion of it (including the pseudocode and C code), the author @@ -31,4 +36,4 @@ TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF - MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_and_ietf_1.yml b/src/licensedcode/data/rules/other-permissive_and_ietf_1.yml deleted file mode 100644 index 8d00b329b33..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_ietf_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive AND ietf -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_and_info-zip-2009-01_1.RULE b/src/licensedcode/data/rules/other-permissive_and_info-zip-2009-01_1.RULE index 7d84b984eda..aef505d3afd 100644 --- a/src/licensedcode/data/rules/other-permissive_and_info-zip-2009-01_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_info-zip-2009-01_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive AND info-zip-2009-01 +is_license_notice: yes +relevance: 100 +notes: Found in old Info-zip +--- + distributed under the following license terms: "You may incorporate this sample code into your diff --git a/src/licensedcode/data/rules/other-permissive_and_info-zip-2009-01_1.yml b/src/licensedcode/data/rules/other-permissive_and_info-zip-2009-01_1.yml deleted file mode 100644 index f5e36f00302..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_info-zip-2009-01_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive AND info-zip-2009-01 -is_license_notice: yes -relevance: 100 -notes: Found in old Info-zip diff --git a/src/licensedcode/data/rules/other-permissive_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/other-permissive_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE index 698cd218fef..227acd5b785 100644 --- a/src/licensedcode/data/rules/other-permissive_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive AND lgpl-2.0-plus AND gpl-1.0-plus +is_license_notice: yes +relevance: 100 +--- + This file can be copied and used freely without restrictions. It can be used in projects which are not available under the GNU General Public License or the GNU Library General Public License but which still want diff --git a/src/licensedcode/data/rules/other-permissive_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/other-permissive_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.yml deleted file mode 100644 index 26575d62a8e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_lgpl-2.0-plus_and_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive AND lgpl-2.0-plus AND gpl-1.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_1.RULE b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_1.RULE index 2d75215f7e7..3f13aa443de 100644 --- a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive AND other-copyleft +is_license_notice: yes +relevance: 100 +--- + includes works under other copyright notices and distributed according to the terms of the GNU General Public License or a compatible license \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_1.yml b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_1.yml deleted file mode 100644 index 441869cd005..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive AND other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_2.RULE b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_2.RULE index 8782b431ac7..ecb66570e22 100644 --- a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive AND other-copyleft +is_license_notice: yes +relevance: 99 +--- + Each annotated library uses the same license as the unannotated version of the library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_2.yml b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_2.yml deleted file mode 100644 index 506f40402e5..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive AND other-copyleft -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_3.RULE b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_3.RULE index 612e297607b..203588b9a53 100644 --- a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_3.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_3.RULE @@ -1,2 +1,7 @@ +--- +license_expression: other-permissive AND other-copyleft +is_license_reference: yes +--- + distribution which are not covered by the GNU Lesser General Public License (LGPL) or the GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_3.yml b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_3.yml deleted file mode 100644 index 8d07e418639..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive AND other-copyleft -is_license_reference: yes diff --git a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.RULE b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.RULE index 4f2b2efeb0f..ac493d5c4e4 100644 --- a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive AND other-copyleft +is_license_notice: yes +relevance: 100 +--- + files that are under various free software licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.yml b/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.yml deleted file mode 100644 index 441869cd005..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_other-copyleft_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive AND other-copyleft -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_and_public-domain_1.RULE b/src/licensedcode/data/rules/other-permissive_and_public-domain_1.RULE index 79f9cdb32d5..efc32273e52 100644 --- a/src/licensedcode/data/rules/other-permissive_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_and_public-domain_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive AND public-domain +is_license_notice: yes +relevance: 100 +notes: in GNU Nettle +--- + A few of the individual files are licensed under more permissive terms, or in the public domain. To find the current status of particular files, you have to read the copyright notices at diff --git a/src/licensedcode/data/rules/other-permissive_and_public-domain_1.yml b/src/licensedcode/data/rules/other-permissive_and_public-domain_1.yml deleted file mode 100644 index e7cdadc2ead..00000000000 --- a/src/licensedcode/data/rules/other-permissive_and_public-domain_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive AND public-domain -is_license_notice: yes -relevance: 100 -notes: in GNU Nettle diff --git a/src/licensedcode/data/rules/other-permissive_bitstream_2.RULE b/src/licensedcode/data/rules/other-permissive_bitstream_2.RULE index 969c901b467..2c2d241c4ad 100644 --- a/src/licensedcode/data/rules/other-permissive_bitstream_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_bitstream_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + Permission to use these trademarks is hereby granted only in association with the images described in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_bitstream_2.yml b/src/licensedcode/data/rules/other-permissive_bitstream_2.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_bitstream_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_bsdish_1.RULE b/src/licensedcode/data/rules/other-permissive_bsdish_1.RULE index 9cea75631b1..f981b8571b3 100644 --- a/src/licensedcode/data/rules/other-permissive_bsdish_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_bsdish_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: other-permissive +is_license_reference: yes +--- + You can use this code in whatever way you want, as long as you don't try - to claim you wrote it. + to claim you wrote it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_bsdish_1.yml b/src/licensedcode/data/rules/other-permissive_bsdish_1.yml deleted file mode 100644 index 3dad75f8239..00000000000 --- a/src/licensedcode/data/rules/other-permissive_bsdish_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes diff --git a/src/licensedcode/data/rules/other-permissive_bsdish_2.RULE b/src/licensedcode/data/rules/other-permissive_bsdish_2.RULE index 951ac727a2a..fa7930fab18 100644 --- a/src/licensedcode/data/rules/other-permissive_bsdish_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_bsdish_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_reference: yes +--- + You can use this code in whatever way you want, as long as you don't try to claim you wrote it. @@ -7,6 +12,4 @@ (e.g. the back of a manual) that you're using the dumpasn1 code. And if you do use it, please make sure you're using a recent version, I occasionally see screen shots from incredibly ancient versions that are - nowhere near as good as what current versions produce). - - + nowhere near as good as what current versions produce). \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_bsdish_2.yml b/src/licensedcode/data/rules/other-permissive_bsdish_2.yml deleted file mode 100644 index 3dad75f8239..00000000000 --- a/src/licensedcode/data/rules/other-permissive_bsdish_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes diff --git a/src/licensedcode/data/rules/other-permissive_cern.RULE b/src/licensedcode/data/rules/other-permissive_cern.RULE index 49d855eebd6..b38381809a1 100644 --- a/src/licensedcode/data/rules/other-permissive_cern.RULE +++ b/src/licensedcode/data/rules/other-permissive_cern.RULE @@ -1,6 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: another historial variant +--- + License: other Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. makes no representations about the suitability of this software for any purpose. - It is provided "as is" without expressed or implied warranty. + It is provided "as is" without expressed or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_cern.yml b/src/licensedcode/data/rules/other-permissive_cern.yml deleted file mode 100644 index 737292c8ee9..00000000000 --- a/src/licensedcode/data/rules/other-permissive_cern.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: another historial variant diff --git a/src/licensedcode/data/rules/other-permissive_colamd.RULE b/src/licensedcode/data/rules/other-permissive_colamd.RULE index 10666eb69c3..a4201b8cfcf 100644 --- a/src/licensedcode/data/rules/other-permissive_colamd.RULE +++ b/src/licensedcode/data/rules/other-permissive_colamd.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: See http://www.netlib.org/linalg/colamd/colamd.c +--- + THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK. diff --git a/src/licensedcode/data/rules/other-permissive_colamd.yml b/src/licensedcode/data/rules/other-permissive_colamd.yml deleted file mode 100644 index 6d06e4a6f17..00000000000 --- a/src/licensedcode/data/rules/other-permissive_colamd.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: See http://www.netlib.org/linalg/colamd/colamd.c diff --git a/src/licensedcode/data/rules/other-permissive_deb1.RULE b/src/licensedcode/data/rules/other-permissive_deb1.RULE index 0a4d8bf1236..7410a508606 100644 --- a/src/licensedcode/data/rules/other-permissive_deb1.RULE +++ b/src/licensedcode/data/rules/other-permissive_deb1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + License: other Permission is hereby granted to use or copy this program for any purpose, provided the above notices are retained on all copies. @@ -8,4 +13,4 @@ License: other distribute modified code is granted, provided the above notices are retained, and a notice that the code was modified is included with the above copyright notice. You must also retain the Availability - information below, of the original version. + information below, of the original version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_deb1.yml b/src/licensedcode/data/rules/other-permissive_deb1.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_deb1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_deb2.RULE b/src/licensedcode/data/rules/other-permissive_deb2.RULE index ca4f15b5cc3..ab2c1b742f1 100644 --- a/src/licensedcode/data/rules/other-permissive_deb2.RULE +++ b/src/licensedcode/data/rules/other-permissive_deb2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + Permission is hereby granted to use or copy this program for any purpose, provided the above notices are retained on all copies. User documentation of any code that uses this code must cite the @@ -7,4 +12,4 @@ distribute modified code is granted, provided the above notices are retained, and a notice that the code was modified is included with the above copyright notice. You must also retain the Availability - information below, of the original version. + information below, of the original version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_deb2.yml b/src/licensedcode/data/rules/other-permissive_deb2.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_deb2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_docutils.RULE b/src/licensedcode/data/rules/other-permissive_docutils.RULE index 6c56f72a656..468410c5fed 100644 --- a/src/licensedcode/data/rules/other-permissive_docutils.RULE +++ b/src/licensedcode/data/rules/other-permissive_docutils.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +--- + Free usage permitted as long as this notice remains intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_docutils.yml b/src/licensedcode/data/rules/other-permissive_docutils.yml deleted file mode 100644 index 725799270b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_docutils.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_epsg-data-2007.RULE b/src/licensedcode/data/rules/other-permissive_epsg-data-2007.RULE index d75536edb81..95bd7a32947 100644 --- a/src/licensedcode/data/rules/other-permissive_epsg-data-2007.RULE +++ b/src/licensedcode/data/rules/other-permissive_epsg-data-2007.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Use of the Data The user assumes the entire risk as to the accuracy and the use of this data. The data may be used, copied and distributed subject to the following conditions: @@ -12,4 +17,4 @@ As given in EPSG dataset Permitted change for vendors / users to adopt (detailed permissions omitted) -No data that has been modified other than as permitted in these terms and conditions shall be described as or attributed to the EPSG dataset. \ No newline at end of file +No data that has been modified other than as permitted in these terms and conditions shall be described as or attributed to the EPSG dataset. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_epsg-data-2007.yml b/src/licensedcode/data/rules/other-permissive_epsg-data-2007.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_epsg-data-2007.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_epsg-data-2007_2.RULE b/src/licensedcode/data/rules/other-permissive_epsg-data-2007_2.RULE index 351737d2957..3e3b96fc1d4 100644 --- a/src/licensedcode/data/rules/other-permissive_epsg-data-2007_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_epsg-data-2007_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + The data may be used, copied and distributed subject to the following conditions: Whilst every effort has been made to ensure the accuracy of the information contained in the EPSG Facilities, neither the OGP nor any of its members past present or future warrants their accuracy or will, regardless of its or their negligence, assume liability for any foreseeable or unforeseeable use made thereof, which liability is hereby excluded. Consequently, such use is at your own risk. You are obliged to inform anyone to whom you provide the EPSG Facilities of these Terms of Use. @@ -12,4 +17,4 @@ The data may be used, copied and distributed subject to the following conditions Essential elements should preferably be reproduced as described in the dataset. Modification of parameter values is permitted as described in the table below to allow change to the content of the information provided that numeric equivalence is achieved. Numeric equivalence refers to the results of geodetic calculations in which the parameters are used, for example (I) conversion of ellipsoid defining parameters, or (ii) conversion of parameters between one and two standard parallel projection methods, or (iii) conversion of parameters between 7-parameter geocentric transformation methods. - No data that has been modified other than as permitted in these Terms of Use shall be attributed to the EPSG Dataset. + No data that has been modified other than as permitted in these Terms of Use shall be attributed to the EPSG Dataset. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_epsg-data-2007_2.yml b/src/licensedcode/data/rules/other-permissive_epsg-data-2007_2.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_epsg-data-2007_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_epsg-data-2014.RULE b/src/licensedcode/data/rules/other-permissive_epsg-data-2014.RULE index 2edde04f4bd..bd02cab5fa3 100644 --- a/src/licensedcode/data/rules/other-permissive_epsg-data-2014.RULE +++ b/src/licensedcode/data/rules/other-permissive_epsg-data-2014.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + The data may be used, copied and distributed subject to the following conditions: Whilst every effort has been made to ensure the accuracy of the information contained in the EPSG Facilities, neither the IOGP nor any of its members past present or future warrants their accuracy or will, regardless of its or their negligence, assume liability for any foreseeable or unforeseeable use made thereof, which liability is hereby excluded. Consequently, such use is at your own risk. You are obliged to inform anyone to whom you provide the EPSG Facilities of these Terms of Use. @@ -6,4 +11,4 @@ The data may be used, copied and distributed subject to the following conditions Ownership of the EPSG Dataset by IOGP must be acknowledged in any publication or transmission (by whatever means) thereof (including permitted modifications). Subsets of information may be extracted from the dataset. Users are advised that coordinate reference system and coordinate transformation descriptions are incomplete unless all elements detailed as essential in IOGP Surveying and Positioning Guidance Note 7-1 annex F are included. Essential elements should preferably be reproduced as described in the dataset. Modification of parameter values is permitted as described in the table below to allow change to the content of the information provided that numeric equivalence is achieved. Numeric equivalence refers to the results of geodetic calculations in which the parameters are used, for example (i) conversion of ellipsoid defining parameters, or (ii) conversion of parameters between one and two standard parallel projection methods, or (iii) conversion of parameters between 7-parameter geocentric transformation methods. - No data that has been modified other than as permitted in these Terms of Use shall be attributed to the EPSG Dataset. + No data that has been modified other than as permitted in these Terms of Use shall be attributed to the EPSG Dataset. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_epsg-data-2014.yml b/src/licensedcode/data/rules/other-permissive_epsg-data-2014.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_epsg-data-2014.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_free-unknown_46.RULE b/src/licensedcode/data/rules/other-permissive_free-unknown_46.RULE index 67c208a0959..47fbe89a19e 100644 --- a/src/licensedcode/data/rules/other-permissive_free-unknown_46.RULE +++ b/src/licensedcode/data/rules/other-permissive_free-unknown_46.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +--- + May be freely copied and distributed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_free-unknown_46.yml b/src/licensedcode/data/rules/other-permissive_free-unknown_46.yml deleted file mode 100644 index 283ec04b470..00000000000 --- a/src/licensedcode/data/rules/other-permissive_free-unknown_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_friesenhahn.RULE b/src/licensedcode/data/rules/other-permissive_friesenhahn.RULE index a093ac57134..99a26aa1c0e 100644 --- a/src/licensedcode/data/rules/other-permissive_friesenhahn.RULE +++ b/src/licensedcode/data/rules/other-permissive_friesenhahn.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: a rare license found in ImageMagick +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the source files and associated documentation files (), to deal in without restriction, including without limitation of the rights to @@ -14,4 +20,4 @@ implied, including but not limited to the warranties of merchantability,fitness for a particular purpose and noninfringement. In no event shall 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 - or the use or other dealings in . + or the use or other dealings in . \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_friesenhahn.yml b/src/licensedcode/data/rules/other-permissive_friesenhahn.yml deleted file mode 100644 index 966d0b86a01..00000000000 --- a/src/licensedcode/data/rules/other-permissive_friesenhahn.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: a rare license found in ImageMagick diff --git a/src/licensedcode/data/rules/other-permissive_ghostgum.RULE b/src/licensedcode/data/rules/other-permissive_ghostgum.RULE index 8f3819ab49e..e09929d6fbe 100644 --- a/src/licensedcode/data/rules/other-permissive_ghostgum.RULE +++ b/src/licensedcode/data/rules/other-permissive_ghostgum.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: a rare license found in ImageMagick +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this file ("Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, @@ -10,4 +16,4 @@ for whether it serves any particular purpose or works at all, unless he or she says so in writing. The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +copies or substantial portions of the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_ghostgum.yml b/src/licensedcode/data/rules/other-permissive_ghostgum.yml deleted file mode 100644 index 966d0b86a01..00000000000 --- a/src/licensedcode/data/rules/other-permissive_ghostgum.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: a rare license found in ImageMagick diff --git a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_1.RULE b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_1.RULE index e44b4294f8c..78a07c8dc91 100644 --- a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + was contributed by under a BSD-style license. @@ -7,4 +12,4 @@ are permitted provided that this copyright notice is retained. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF -THIS SOFTWARE. +THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_1.yml b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_1.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_2.RULE b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_2.RULE index 8c8867741a1..ebc3e1f0bdc 100644 --- a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + under a BSD-style license. Redistribution and use in source and binary forms, with or without modification, diff --git a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_2.yml b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_2.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_3.RULE b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_3.RULE index dfdc2a81d7e..d92c3c15408 100644 --- a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_3.RULE +++ b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + contributed by under a BSD-style license. Redistribution and use in source and binary forms, with or without modification, diff --git a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_3.yml b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_3.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_4.RULE b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_4.RULE index 32402193d5f..1c5ae7dcf05 100644 --- a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_4.RULE +++ b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that this copyright notice is retained. diff --git a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_4.yml b/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_4.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_kalle-kaukonen_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_mazieres.RULE b/src/licensedcode/data/rules/other-permissive_mazieres.RULE index 5fe3e89ba70..c940633bd2e 100644 --- a/src/licensedcode/data/rules/other-permissive_mazieres.RULE +++ b/src/licensedcode/data/rules/other-permissive_mazieres.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + Modification and redistribution in source and binary forms is permitted provided that due credit is given to the author and the -OpenBSD project by leaving this copyright notice intact. +OpenBSD project by leaving this copyright notice intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_mazieres.yml b/src/licensedcode/data/rules/other-permissive_mazieres.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_mazieres.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_mazieres2.RULE b/src/licensedcode/data/rules/other-permissive_mazieres2.RULE index 9d533199266..719bf2a7deb 100644 --- a/src/licensedcode/data/rules/other-permissive_mazieres2.RULE +++ b/src/licensedcode/data/rules/other-permissive_mazieres2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + contributed by under a BSD-style license. Modification and redistribution in source and binary forms is diff --git a/src/licensedcode/data/rules/other-permissive_mazieres2.yml b/src/licensedcode/data/rules/other-permissive_mazieres2.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_mazieres2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_morissey.RULE b/src/licensedcode/data/rules/other-permissive_morissey.RULE index f2fabdf892b..80a7b39d793 100644 --- a/src/licensedcode/data/rules/other-permissive_morissey.RULE +++ b/src/licensedcode/data/rules/other-permissive_morissey.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +--- + License None. (To quote Morrissey, "take it, it's yours") \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_morissey.yml b/src/licensedcode/data/rules/other-permissive_morissey.yml deleted file mode 100644 index 725799270b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_morissey.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/other-permissive_non-nuclear_1.RULE b/src/licensedcode/data/rules/other-permissive_non-nuclear_1.RULE index 34e4eeeb482..3e17cb63646 100644 --- a/src/licensedcode/data/rules/other-permissive_non-nuclear_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_non-nuclear_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted, provided that this copyright notice is kept @@ -18,4 +23,4 @@ SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES"). SPECIFICALLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR - HIGH RISK ACTIVITIES. + HIGH RISK ACTIVITIES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_non-nuclear_1.yml b/src/licensedcode/data/rules/other-permissive_non-nuclear_1.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_non-nuclear_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_not_commercial-license_2.RULE b/src/licensedcode/data/rules/other-permissive_not_commercial-license_2.RULE index 8ba27757a6d..4829511761a 100644 --- a/src/licensedcode/data/rules/other-permissive_not_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_not_commercial-license_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: Rare and seen in https://github.com/Desendos/PhysicsGame/blob/14082152869f1508fe8416e20ef65a4109db81b4/HavokOpenGL/HavokOpenGL/irrKlang/irrKlang.h + e.g. from https://www.ambiera.com/irrklang/downloads.html +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_not_commercial-license_2.yml b/src/licensedcode/data/rules/other-permissive_not_commercial-license_2.yml deleted file mode 100644 index 54c3a4caa06..00000000000 --- a/src/licensedcode/data/rules/other-permissive_not_commercial-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: Rare and seen in https://github.com/Desendos/PhysicsGame/blob/14082152869f1508fe8416e20ef65a4109db81b4/HavokOpenGL/HavokOpenGL/irrKlang/irrKlang.h - e.g. from https://www.ambiera.com/irrklang/downloads.html diff --git a/src/licensedcode/data/rules/other-permissive_not_unknown_69.RULE b/src/licensedcode/data/rules/other-permissive_not_unknown_69.RULE index c1a9f1bfb74..2d8194814c9 100644 --- a/src/licensedcode/data/rules/other-permissive_not_unknown_69.RULE +++ b/src/licensedcode/data/rules/other-permissive_not_unknown_69.RULE @@ -1 +1,10 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://github.com/Percona/PerconaFT/blob/master/PATENTS +--- + http://github.com/Percona/PerconaFT/blob/master/PATENTS \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_not_unknown_69.yml b/src/licensedcode/data/rules/other-permissive_not_unknown_69.yml deleted file mode 100644 index 381f8700903..00000000000 --- a/src/licensedcode/data/rules/other-permissive_not_unknown_69.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://github.com/Percona/PerconaFT/blob/master/PATENTS diff --git a/src/licensedcode/data/rules/other-permissive_old_elastic.RULE b/src/licensedcode/data/rules/other-permissive_old_elastic.RULE index 2f449983df9..5f92fb4f3c7 100644 --- a/src/licensedcode/data/rules/other-permissive_old_elastic.RULE +++ b/src/licensedcode/data/rules/other-permissive_old_elastic.RULE @@ -1,3 +1,16 @@ +--- +license_expression: other-permissive +is_license_text: yes +notes: from http://www.elasticworld.org/license.html +ignorable_copyrights: + - Copyright (c) 1997-1999 Marco Pantaleoni + - Copyright (c) 1999 Marco Pantaleoni +ignorable_holders: + - Marco Pantaleoni +ignorable_urls: + - http://www.elasticworld.org/license.html +--- + http://www.elasticworld.org/license.html elastiC License @@ -68,5 +81,4 @@ unless explicitly disclaimed in individual files. 5. Additional Disclaimers: The Author reserves the right to change any of the terms of this - elastiC License for future releases of the Software. - + elastiC License for future releases of the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_old_elastic.yml b/src/licensedcode/data/rules/other-permissive_old_elastic.yml deleted file mode 100644 index 008eb6b186e..00000000000 --- a/src/licensedcode/data/rules/other-permissive_old_elastic.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -notes: from http://www.elasticworld.org/license.html -ignorable_copyrights: - - Copyright (c) 1997-1999 Marco Pantaleoni - - Copyright (c) 1999 Marco Pantaleoni -ignorable_holders: - - Marco Pantaleoni -ignorable_urls: - - http://www.elasticworld.org/license.html diff --git a/src/licensedcode/data/rules/other-permissive_or_artistic-perl-1.0_1.RULE b/src/licensedcode/data/rules/other-permissive_or_artistic-perl-1.0_1.RULE index e61f15aafbd..5ba8df61c8c 100644 --- a/src/licensedcode/data/rules/other-permissive_or_artistic-perl-1.0_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_or_artistic-perl-1.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive OR artistic-perl-1.0 +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + THIS MATERIAL IS PROVIDED "AS IS". THERE ARE NO WARRANTIES OF ANY KIND WITH REGARD TO THIS MATERIAL, INCLUDING, BUT NOT LIMITED TO, THE diff --git a/src/licensedcode/data/rules/other-permissive_or_artistic-perl-1.0_1.yml b/src/licensedcode/data/rules/other-permissive_or_artistic-perl-1.0_1.yml deleted file mode 100644 index 25f848dd7af..00000000000 --- a/src/licensedcode/data/rules/other-permissive_or_artistic-perl-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive OR artistic-perl-1.0 -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/other-permissive_or_commercial-license_1.RULE b/src/licensedcode/data/rules/other-permissive_or_commercial-license_1.RULE index 60abf342faa..c246ebd9c86 100644 --- a/src/licensedcode/data/rules/other-permissive_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_or_commercial-license_1.RULE @@ -1 +1,12 @@ +--- +license_expression: other-permissive OR commercial-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - irrKlang.h +notes: Rare and seen in https://github.com/Desendos/PhysicsGame/blob/14082152869f1508fe8416e20ef65a4109db81b4/HavokOpenGL/HavokOpenGL/irrKlang/irrKlang.h + e.g. from https://www.ambiera.com/irrklang/downloads.html +--- + For conditions of distribution and use, see copyright notice in irrKlang.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_or_commercial-license_1.yml b/src/licensedcode/data/rules/other-permissive_or_commercial-license_1.yml deleted file mode 100644 index 3f678aa2d00..00000000000 --- a/src/licensedcode/data/rules/other-permissive_or_commercial-license_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: other-permissive OR commercial-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - irrKlang.h -notes: Rare and seen in https://github.com/Desendos/PhysicsGame/blob/14082152869f1508fe8416e20ef65a4109db81b4/HavokOpenGL/HavokOpenGL/irrKlang/irrKlang.h - e.g. from https://www.ambiera.com/irrklang/downloads.html diff --git a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_1.RULE index 621b5e609d8..25ba8e66c24 100644 --- a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive OR gpl-1.0-plus +is_license_text: yes +--- + Permission to use, copy, and modify this software without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or @@ -11,4 +16,4 @@ THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR -PURPOSE. +PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 97b76711a57..00000000000 --- a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive OR gpl-1.0-plus -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_2.RULE index 221aaffee20..1f11977f525 100644 --- a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive OR gpl-1.0-plus +is_license_notice: yes +--- + * Permission to use, copy, and modify this software with or without fee * is hereby granted, provided that this entire notice is included in * all copies of any software which is or includes a copy or diff --git a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_2.yml deleted file mode 100644 index baa0749778c..00000000000 --- a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_3.RULE index f76a0813b86..0ef078ce7f4 100644 --- a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive OR gpl-1.0-plus +is_license_notice: yes +--- + Permission to use, copy, and modify this software with or without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or diff --git a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_3.yml deleted file mode 100644 index baa0749778c..00000000000 --- a/src/licensedcode/data/rules/other-permissive_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE index 4aebfaa5800..219174480c6 100644 --- a/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_text: yes +relevance: 100 +notes: see in pam_passwdqc PAM module. Close to the scanlogd-license +--- + You're allowed to do whatever you like with this software (including re-distribution in source and/or binary form, with or without modification), provided that credit is given where it is due and any diff --git a/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 3d42bac375b..00000000000 --- a/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_text: yes -relevance: 100 -notes: see in pam_passwdqc PAM module. Close to the scanlogd-license diff --git a/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE index a3dc30872ac..4e8fe470402 100644 --- a/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE @@ -1 +1,9 @@ +--- +license_expression: other-permissive OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_tag: yes +relevance: 99 +minimum_coverage: 100 +notes: seen in pam_module pam_passwdqc +--- + License: relaxed BSD and (L)GPL-compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.yml deleted file mode 100644 index cec45155a4c..00000000000 --- a/src/licensedcode/data/rules/other-permissive_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: other-permissive OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_tag: yes -relevance: 99 -minimum_coverage: 100 -notes: seen in pam_module pam_passwdqc diff --git a/src/licensedcode/data/rules/other-permissive_owl_1.RULE b/src/licensedcode/data/rules/other-permissive_owl_1.RULE index 9ee526ac927..eccf8a12389 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.4 of the Open Works License. @@ -12,4 +17,4 @@ Permission is hereby granted by the copyright holder(s), author(s), and contribu 3. This license does not grant permission to use the trade names, trademarks, service marks, product names, or other identifications used by the licensor except as required for reasonable and customary use in reproducing, and describing the origin or use of, the work. -No warranty or guarantee is implied, or should be inferred, by this license or the act of distribution under the terms of this license. +No warranty or guarantee is implied, or should be inferred, by this license or the act of distribution under the terms of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_1.yml b/src/licensedcode/data/rules/other-permissive_owl_1.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_10.RULE b/src/licensedcode/data/rules/other-permissive_owl_10.RULE index bdd71a2d343..2eddae2c729 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_10.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.9.4 of the Open Works License @@ -21,4 +26,4 @@ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS, ASSEMBLERS, OR HOLDERS OF COPYRIGHT OR OTHER LEGAL PRIVILEGE BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN ACTION OF CONTRACT, TORT, OR OTHERWISE ARISING FROM, OUT -OF, OR IN CONNECTION WITH THE WORK OR THE USE OF OR OTHER DEALINGS IN THE WORK. +OF, OR IN CONNECTION WITH THE WORK OR THE USE OF OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_10.yml b/src/licensedcode/data/rules/other-permissive_owl_10.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_11.RULE b/src/licensedcode/data/rules/other-permissive_owl_11.RULE index 1fa8450d30f..b82ecae8bc9 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_11.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.9.3 of the Open Works License @@ -20,4 +25,4 @@ 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 -WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. +WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_11.yml b/src/licensedcode/data/rules/other-permissive_owl_11.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_2.RULE b/src/licensedcode/data/rules/other-permissive_owl_2.RULE index 3cc7f50bf66..0b296b8b07e 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.5 of the Open Works License. @@ -12,4 +17,4 @@ Permission is hereby granted by the copyright holder(s), author(s), and contribu 3. This license does not grant permission to use the trade names, trademarks, service marks, product names, or other identifications used by the licensor except as required for reasonable and customary use in reproducing, and describing the origin or use of, the work. -No warranty or guarantee is implied, or should be inferred, by this license or the act of distribution under the terms of this license. +No warranty or guarantee is implied, or should be inferred, by this license or the act of distribution under the terms of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_2.yml b/src/licensedcode/data/rules/other-permissive_owl_2.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_3.RULE b/src/licensedcode/data/rules/other-permissive_owl_3.RULE index 9dec5f60a8f..dfd71223e05 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_3.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_3.RULE @@ -1 +1,6 @@ +--- +license_expression: other-permissive +is_license_notice: yes +--- + The files within this project may be distributed under the terms of the Open Works License: owl.apotheon.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_3.yml b/src/licensedcode/data/rules/other-permissive_owl_3.yml deleted file mode 100644 index 426d048c52f..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_4.RULE b/src/licensedcode/data/rules/other-permissive_owl_4.RULE index 1dec38ba271..3edbf4ec601 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_4.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.9.2 of the Open Works License @@ -20,4 +25,4 @@ 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 -WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. +WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_4.yml b/src/licensedcode/data/rules/other-permissive_owl_4.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_5.RULE b/src/licensedcode/data/rules/other-permissive_owl_5.RULE index 1640286228b..9aa95af9a8d 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_5.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.9.1 of the Open Works License @@ -20,4 +25,4 @@ 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 -WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. +WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_5.yml b/src/licensedcode/data/rules/other-permissive_owl_5.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_6.RULE b/src/licensedcode/data/rules/other-permissive_owl_6.RULE index 0a55a847c9c..b59df48e3df 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_6.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.9 of the Open Works License @@ -20,4 +25,4 @@ 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 -WORK, OR THE USE OR OTHER DEALINGS IN THE WORK. +WORK, OR THE USE OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_6.yml b/src/licensedcode/data/rules/other-permissive_owl_6.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_7.RULE b/src/licensedcode/data/rules/other-permissive_owl_7.RULE index b1a6229a6a0..78c2d56bdfb 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_7.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.8 of the Open Works License. @@ -10,4 +15,4 @@ Permission is hereby granted by the copyright holder(s), author(s), and contribu 2. Redistributions, modified or unmodified, in whole or in part, must retain any applicable notices of attribution and copyright. -No warranty or guarantee is implied by, or should be inferred from, this license or the act of distribution under the terms of this license. This license does not grant permission to use the trade names, trademarks, service marks, product names, or other identifications used by the licensor except as required for reasonable and customary use in reproducing, and describing the origin or use of, the work. +No warranty or guarantee is implied by, or should be inferred from, this license or the act of distribution under the terms of this license. This license does not grant permission to use the trade names, trademarks, service marks, product names, or other identifications used by the licensor except as required for reasonable and customary use in reproducing, and describing the origin or use of, the work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_7.yml b/src/licensedcode/data/rules/other-permissive_owl_7.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_8.RULE b/src/licensedcode/data/rules/other-permissive_owl_8.RULE index 6ae67e784f7..09cdbf868d9 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_8.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.7 of the Open Works License. @@ -10,4 +15,4 @@ Permission is hereby granted by the copyright holder(s), author(s), and contribu 2. Redistributions, modified or unmodified, in whole or in part, must retain any applicable notices of attribution and copyright. -No warranty or guarantee is implied, or should be inferred, by this license or the act of distribution under the terms of this license. This license does not grant permission to use the trade names, trademarks, service marks, product names, or other identifications used by the licensor except as required for reasonable and customary use in reproducing, and describing the origin or use of, the work. +No warranty or guarantee is implied, or should be inferred, by this license or the act of distribution under the terms of this license. This license does not grant permission to use the trade names, trademarks, service marks, product names, or other identifications used by the licensor except as required for reasonable and customary use in reproducing, and describing the origin or use of, the work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_8.yml b/src/licensedcode/data/rules/other-permissive_owl_8.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_owl_9.RULE b/src/licensedcode/data/rules/other-permissive_owl_9.RULE index 93181092d40..1cd3e8eccec 100644 --- a/src/licensedcode/data/rules/other-permissive_owl_9.RULE +++ b/src/licensedcode/data/rules/other-permissive_owl_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Open Works License This is version 0.6 of the Open Works License. @@ -12,4 +17,4 @@ Permission is hereby granted by the copyright holder(s), author(s), and contribu 3. This license does not grant permission to use the trade names, trademarks, service marks, product names, or other identifications used by the licensor except as required for reasonable and customary use in reproducing, and describing the origin or use of, the work. -No warranty or guarantee is implied, or should be inferred, by this license or the act of distribution under the terms of this license. +No warranty or guarantee is implied, or should be inferred, by this license or the act of distribution under the terms of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_owl_9.yml b/src/licensedcode/data/rules/other-permissive_owl_9.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_owl_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_public-domain_like.RULE b/src/licensedcode/data/rules/other-permissive_public-domain_like.RULE index 4e357cb30ab..25a7d64cc38 100644 --- a/src/licensedcode/data/rules/other-permissive_public-domain_like.RULE +++ b/src/licensedcode/data/rules/other-permissive_public-domain_like.RULE @@ -1,2 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 90 +--- + License -None, do whatever you like +None, do whatever you like \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_public-domain_like.yml b/src/licensedcode/data/rules/other-permissive_public-domain_like.yml deleted file mode 100644 index 904470a2880..00000000000 --- a/src/licensedcode/data/rules/other-permissive_public-domain_like.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/other-permissive_punycode_1.RULE b/src/licensedcode/data/rules/other-permissive_punycode_1.RULE index 052fd80fd73..2fff4830c78 100644 --- a/src/licensedcode/data/rules/other-permissive_punycode_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_punycode_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + License on the original code: B. Disclaimer and license @@ -10,4 +15,4 @@ B. Disclaimer and license of anyone else to use, modify, and distribute it, provided that redistributed derivative works do not contain misleading author or version information. Derivative works need not be licensed under - similar terms. + similar terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_punycode_1.yml b/src/licensedcode/data/rules/other-permissive_punycode_1.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_punycode_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_punycode_2.RULE b/src/licensedcode/data/rules/other-permissive_punycode_2.RULE index 8896b9feb2f..765c8753b1f 100644 --- a/src/licensedcode/data/rules/other-permissive_punycode_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_punycode_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + Regarding this entire document or any portion of it (including @@ -8,4 +13,4 @@ of anyone else to use, modify, and distribute it, provided that redistributed derivative works do not contain misleading author or version information. Derivative works need not be licensed under - similar terms. + similar terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_punycode_2.yml b/src/licensedcode/data/rules/other-permissive_punycode_2.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_punycode_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_sei-cmu3.RULE b/src/licensedcode/data/rules/other-permissive_sei-cmu3.RULE index fe58ff3e5ab..7025c2d1557 100644 --- a/src/licensedcode/data/rules/other-permissive_sei-cmu3.RULE +++ b/src/licensedcode/data/rules/other-permissive_sei-cmu3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: other-permissive +is_license_text: yes +ignorable_copyrights: + - Copyright Carnegie Mellon University +ignorable_holders: + - Carnegie Mellon University +ignorable_emails: + - permission@sei.cmu.edu +--- + # LICENSE # @@ -32,4 +43,4 @@ TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT. This material has been approved for public release and unlimited distribution. -CERT is a registered mark of Carnegie Mellon University. +CERT is a registered mark of Carnegie Mellon University. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_sei-cmu3.yml b/src/licensedcode/data/rules/other-permissive_sei-cmu3.yml deleted file mode 100644 index 70b46a8d206..00000000000 --- a/src/licensedcode/data/rules/other-permissive_sei-cmu3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -ignorable_copyrights: - - Copyright Carnegie Mellon University -ignorable_holders: - - Carnegie Mellon University -ignorable_emails: - - permission@sei.cmu.edu diff --git a/src/licensedcode/data/rules/other-permissive_sei-cmu4.RULE b/src/licensedcode/data/rules/other-permissive_sei-cmu4.RULE index 51732ab6f9a..a4954086c2f 100644 --- a/src/licensedcode/data/rules/other-permissive_sei-cmu4.RULE +++ b/src/licensedcode/data/rules/other-permissive_sei-cmu4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_text: yes +ignorable_emails: + - permission@sei.cmu.edu +--- + BSD (SEI) Redistribution and use in source and binary forms, with or without @@ -42,4 +49,4 @@ release and unlimited distribution. Please see Copyright notice for non-US Government use and distribution. CERT is registered in the U.S. Patent and Trademark Office by -Carnegie Mellon University. +Carnegie Mellon University. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_sei-cmu4.yml b/src/licensedcode/data/rules/other-permissive_sei-cmu4.yml deleted file mode 100644 index 2902210403d..00000000000 --- a/src/licensedcode/data/rules/other-permissive_sei-cmu4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -ignorable_emails: - - permission@sei.cmu.edu diff --git a/src/licensedcode/data/rules/other-permissive_tesla_1.RULE b/src/licensedcode/data/rules/other-permissive_tesla_1.RULE index b51fb9739d9..19a7bcc2701 100644 --- a/src/licensedcode/data/rules/other-permissive_tesla_1.RULE +++ b/src/licensedcode/data/rules/other-permissive_tesla_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +ignorable_copyrights: + - copyright holders, authors, and contributors +ignorable_holders: + - authors, and contributors +--- + # Tesla Copyfree Open Innovation License (Working Title) This is a draft proposal for the Tesla COIL. @@ -30,4 +39,4 @@ 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 -WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. +WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_tesla_1.yml b/src/licensedcode/data/rules/other-permissive_tesla_1.yml deleted file mode 100644 index 77ff19de3a7..00000000000 --- a/src/licensedcode/data/rules/other-permissive_tesla_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -ignorable_copyrights: - - copyright holders, authors, and contributors -ignorable_holders: - - authors, and contributors diff --git a/src/licensedcode/data/rules/other-permissive_tesla_2.RULE b/src/licensedcode/data/rules/other-permissive_tesla_2.RULE index 637cf87eb48..59c166c730f 100644 --- a/src/licensedcode/data/rules/other-permissive_tesla_2.RULE +++ b/src/licensedcode/data/rules/other-permissive_tesla_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +ignorable_copyrights: + - copyright holders, authors, and contributors +ignorable_holders: + - authors, and contributors +--- + # Copyfree Open Innovation License This is version 0.3 of the Copyfree Open Innovation License. @@ -30,4 +39,4 @@ 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 -WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. +WORK, OR THE USE OF OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_tesla_2.yml b/src/licensedcode/data/rules/other-permissive_tesla_2.yml deleted file mode 100644 index 77ff19de3a7..00000000000 --- a/src/licensedcode/data/rules/other-permissive_tesla_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -ignorable_copyrights: - - copyright holders, authors, and contributors -ignorable_holders: - - authors, and contributors diff --git a/src/licensedcode/data/rules/other-permissive_tesla_3.RULE b/src/licensedcode/data/rules/other-permissive_tesla_3.RULE index 97bd27e0b26..a7900bb485d 100644 --- a/src/licensedcode/data/rules/other-permissive_tesla_3.RULE +++ b/src/licensedcode/data/rules/other-permissive_tesla_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Copyfree Open Innovation License This is version 0.4 of the Copyfree Open Innovation License. @@ -33,4 +38,4 @@ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS, ASSEMBLERS, OR HOLDERS OF COPYRIGHT OR OTHER LEGAL PRIVILEGE BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN ACTION OF CONTRACT, TORT, OR OTHERWISE ARISING FROM, OUT -OF, OR IN CONNECTION WITH THE WORK OR THE USE OF OR OTHER DEALINGS IN THE WORK. +OF, OR IN CONNECTION WITH THE WORK OR THE USE OF OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_tesla_3.yml b/src/licensedcode/data/rules/other-permissive_tesla_3.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_tesla_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_tesla_4.RULE b/src/licensedcode/data/rules/other-permissive_tesla_4.RULE index c54e0c59320..bcf8ca0f98d 100644 --- a/src/licensedcode/data/rules/other-permissive_tesla_4.RULE +++ b/src/licensedcode/data/rules/other-permissive_tesla_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + # Copyfree Open Innovation License This is version 0.5 of the Copyfree Open Innovation License. @@ -33,4 +38,4 @@ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS, ASSEMBLERS, OR HOLDERS OF COPYRIGHT OR OTHER LEGAL PRIVILEGE BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN ACTION OF CONTRACT, TORT, OR OTHERWISE ARISING FROM, OUT -OF, OR IN CONNECTION WITH THE WORK OR THE USE OF OR OTHER DEALINGS IN THE WORK. +OF, OR IN CONNECTION WITH THE WORK OR THE USE OF OR OTHER DEALINGS IN THE WORK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_tesla_4.yml b/src/licensedcode/data/rules/other-permissive_tesla_4.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_tesla_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_twain.RULE b/src/licensedcode/data/rules/other-permissive_twain.RULE index 1f5302588ea..b802b7763f8 100644 --- a/src/licensedcode/data/rules/other-permissive_twain.RULE +++ b/src/licensedcode/data/rules/other-permissive_twain.RULE @@ -1,3 +1,8 @@ +--- +license_expression: other-permissive +is_license_text: yes +--- + License: other The TWAIN Working Group grants customer ("Customer") the worldwide, royalty-free, non-exclusive license to reproduce and distribute the @@ -25,4 +30,4 @@ License: other purpose. Neither the developers nor the distributors will be liable for damages, whether direct, indirect, special, incidental, or consequential, as a result of the reproduction, modification, distribution or other use - of the TWAIN Toolkit. + of the TWAIN Toolkit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_twain.yml b/src/licensedcode/data/rules/other-permissive_twain.yml deleted file mode 100644 index 65192bf78ad..00000000000 --- a/src/licensedcode/data/rules/other-permissive_twain.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/other-permissive_uli.RULE b/src/licensedcode/data/rules/other-permissive_uli.RULE index 8f61a3a2c36..9681922f825 100644 --- a/src/licensedcode/data/rules/other-permissive_uli.RULE +++ b/src/licensedcode/data/rules/other-permissive_uli.RULE @@ -1,3 +1,9 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: see https://github.com/uliwitness/ULICrashReporter/blob/5b0f655534ce2591b0b0e3f8bf65a67cab8432f0/docs/UKCrashReporter%20Readme.txt#L7 +--- + You may redistribute, modify, use in commercial products free of charge, however distributing modified copies requires that you clearly mark them as having been modified by you, while diff --git a/src/licensedcode/data/rules/other-permissive_uli.yml b/src/licensedcode/data/rules/other-permissive_uli.yml deleted file mode 100644 index c34a89231f6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_uli.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: see https://github.com/uliwitness/ULICrashReporter/blob/5b0f655534ce2591b0b0e3f8bf65a67cab8432f0/docs/UKCrashReporter%20Readme.txt#L7 diff --git a/src/licensedcode/data/rules/other-permissive_uli2.RULE b/src/licensedcode/data/rules/other-permissive_uli2.RULE index bc2fb9fa5af..ecaf46b36c3 100644 --- a/src/licensedcode/data/rules/other-permissive_uli2.RULE +++ b/src/licensedcode/data/rules/other-permissive_uli2.RULE @@ -1,5 +1,11 @@ +--- +license_expression: other-permissive +is_license_notice: yes +notes: see https://github.com/uliwitness/ULICrashReporter/blob/5b0f655534ce2591b0b0e3f8bf65a67cab8432f0/docs/UKCrashReporter%20Readme.txt#L7 +--- + You may redistribute, modify, use in commercial products free of charge, however distributing modified copies requires that you clearly mark them as having been modified by you, while maintaining the original markings and copyrights. I don't like getting bug -reports about code I wasn't involved in. +reports about code I wasn't involved in. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_uli2.yml b/src/licensedcode/data/rules/other-permissive_uli2.yml deleted file mode 100644 index c34a89231f6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_uli2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -notes: see https://github.com/uliwitness/ULICrashReporter/blob/5b0f655534ce2591b0b0e3f8bf65a67cab8432f0/docs/UKCrashReporter%20Readme.txt#L7 diff --git a/src/licensedcode/data/rules/other-permissive_xin-yang.RULE b/src/licensedcode/data/rules/other-permissive_xin-yang.RULE index 9d5c02408a0..f4be2802c62 100644 --- a/src/licensedcode/data/rules/other-permissive_xin-yang.RULE +++ b/src/licensedcode/data/rules/other-permissive_xin-yang.RULE @@ -1 +1,7 @@ +--- +license_expression: other-permissive +is_license_reference: yes +relevance: 100 +--- + This script is free as long as the copyright notice remains intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_xin-yang.yml b/src/licensedcode/data/rules/other-permissive_xin-yang.yml deleted file mode 100644 index 725799270b6..00000000000 --- a/src/licensedcode/data/rules/other-permissive_xin-yang.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: other-permissive -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/otn-dev-dist.RULE b/src/licensedcode/data/rules/otn-dev-dist.RULE index 5fbe651bc2f..ff8c342b088 100644 --- a/src/licensedcode/data/rules/otn-dev-dist.RULE +++ b/src/licensedcode/data/rules/otn-dev-dist.RULE @@ -1 +1,9 @@ +--- +license_expression: otn-dev-dist +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.oracle.com/technetwork/licenses/distribution-license-152002.html +--- + http://www.oracle.com/technetwork/licenses/distribution-license-152002.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/otn-dev-dist.yml b/src/licensedcode/data/rules/otn-dev-dist.yml deleted file mode 100644 index dd2f217a152..00000000000 --- a/src/licensedcode/data/rules/otn-dev-dist.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: otn-dev-dist -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.oracle.com/technetwork/licenses/distribution-license-152002.html diff --git a/src/licensedcode/data/rules/otn-dev-dist_1.RULE b/src/licensedcode/data/rules/otn-dev-dist_1.RULE index f4ebb095eaa..babbc43f51f 100644 --- a/src/licensedcode/data/rules/otn-dev-dist_1.RULE +++ b/src/licensedcode/data/rules/otn-dev-dist_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: otn-dev-dist +is_license_notice: yes +ignorable_urls: + - http://otn.oracle.com/docs + - http://www.oracle.com/products/export/index.html?content.html +--- + ORACLE TECHNOLOGY NETWORK DEVELOPMENT AND DISTRIBUTION LICENSE AGREEMENT diff --git a/src/licensedcode/data/rules/otn-dev-dist_1.yml b/src/licensedcode/data/rules/otn-dev-dist_1.yml deleted file mode 100644 index b3dcda71a83..00000000000 --- a/src/licensedcode/data/rules/otn-dev-dist_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: otn-dev-dist -is_license_notice: yes -ignorable_urls: - - http://otn.oracle.com/docs - - http://www.oracle.com/products/export/index.html?content.html diff --git a/src/licensedcode/data/rules/ozplb-1.0.RULE b/src/licensedcode/data/rules/ozplb-1.0.RULE index d82cbc3bb01..2208d2543dd 100644 --- a/src/licensedcode/data/rules/ozplb-1.0.RULE +++ b/src/licensedcode/data/rules/ozplb-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: ozplb-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ok-labs.com/licenses#ozplb +--- + http://www.ok-labs.com/licenses#ozplb \ No newline at end of file diff --git a/src/licensedcode/data/rules/ozplb-1.0.yml b/src/licensedcode/data/rules/ozplb-1.0.yml deleted file mode 100644 index f694b636f0c..00000000000 --- a/src/licensedcode/data/rules/ozplb-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ozplb-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ok-labs.com/licenses#ozplb diff --git a/src/licensedcode/data/rules/ozplb-1.0_1.RULE b/src/licensedcode/data/rules/ozplb-1.0_1.RULE index dbf439d7490..29493299d06 100644 --- a/src/licensedcode/data/rules/ozplb-1.0_1.RULE +++ b/src/licensedcode/data/rules/ozplb-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ozplb-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ok-labs.com/licenses +--- + http://www.ok-labs.com/licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/ozplb-1.0_1.yml b/src/licensedcode/data/rules/ozplb-1.0_1.yml deleted file mode 100644 index 3b323d661d9..00000000000 --- a/src/licensedcode/data/rules/ozplb-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ozplb-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ok-labs.com/licenses diff --git a/src/licensedcode/data/rules/ozplb-1.1.RULE b/src/licensedcode/data/rules/ozplb-1.1.RULE index 33f89ee03e1..59057426028 100644 --- a/src/licensedcode/data/rules/ozplb-1.1.RULE +++ b/src/licensedcode/data/rules/ozplb-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: ozplb-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE +--- + http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/ozplb-1.1.yml b/src/licensedcode/data/rules/ozplb-1.1.yml deleted file mode 100644 index 010b499928f..00000000000 --- a/src/licensedcode/data/rules/ozplb-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ozplb-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://p2p.cs.mu.oz.au/software/mpi-open/src/LICENSE diff --git a/src/licensedcode/data/rules/parity-6.0.0_1.RULE b/src/licensedcode/data/rules/parity-6.0.0_1.RULE index 333e28fa306..7f3ab3a3a9e 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_1.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + The Parity Public License 6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_1.yml b/src/licensedcode/data/rules/parity-6.0.0_1.yml deleted file mode 100644 index 300a89a3711..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-6.0.0_10.RULE b/src/licensedcode/data/rules/parity-6.0.0_10.RULE index dea11f5a735..a6348c455cc 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_10.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Parity-6.0.0 +--- + https://licenses.nuget.org/Parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_10.yml b/src/licensedcode/data/rules/parity-6.0.0_10.yml deleted file mode 100644 index a2c1da987e4..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Parity-6.0.0 diff --git a/src/licensedcode/data/rules/parity-6.0.0_11.RULE b/src/licensedcode/data/rules/parity-6.0.0_11.RULE index a7de44534fe..b4b9f903d3a 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_11.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_11.yml b/src/licensedcode/data/rules/parity-6.0.0_11.yml deleted file mode 100644 index 061a6916988..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/parity-6.0.0_12.RULE b/src/licensedcode/data/rules/parity-6.0.0_12.RULE index 186b20e9154..f04652c2260 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_12.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Parity-6.0.0 +--- + LICENSE {{Parity-6.0.0}} https://spdx.org/licenses/Parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_12.yml b/src/licensedcode/data/rules/parity-6.0.0_12.yml deleted file mode 100644 index fb39297893b..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Parity-6.0.0 diff --git a/src/licensedcode/data/rules/parity-6.0.0_13.RULE b/src/licensedcode/data/rules/parity-6.0.0_13.RULE index a3d5c95e3c5..64e44367f14 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_13.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Parity-6.0.0 +--- + {{Parity-6.0.0}} https://spdx.org/licenses/Parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_13.yml b/src/licensedcode/data/rules/parity-6.0.0_13.yml deleted file mode 100644 index fb39297893b..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Parity-6.0.0 diff --git a/src/licensedcode/data/rules/parity-6.0.0_2.RULE b/src/licensedcode/data/rules/parity-6.0.0_2.RULE index 5d771f52da6..7f24e79158a 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_2.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: The Parity Public License 6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_2.yml b/src/licensedcode/data/rules/parity-6.0.0_2.yml deleted file mode 100644 index 300a89a3711..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-6.0.0_3.RULE b/src/licensedcode/data/rules/parity-6.0.0_3.RULE index 14ae68950b6..c42162865bc 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_3.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Parity-6.0.0 The Parity Public License 6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_3.yml b/src/licensedcode/data/rules/parity-6.0.0_3.yml deleted file mode 100644 index 300a89a3711..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-6.0.0_4.RULE b/src/licensedcode/data/rules/parity-6.0.0_4.RULE index 804714a7f70..2a1745785b4 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_4.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + The Parity Public License 6.0.0 Parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_4.yml b/src/licensedcode/data/rules/parity-6.0.0_4.yml deleted file mode 100644 index 300a89a3711..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-6.0.0_5.RULE b/src/licensedcode/data/rules/parity-6.0.0_5.RULE index 19a20a59f03..deadf5d7f5b 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_5.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-6.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_5.yml b/src/licensedcode/data/rules/parity-6.0.0_5.yml deleted file mode 100644 index 22ab3f86f70..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-6.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-6.0.0_6.RULE b/src/licensedcode/data/rules/parity-6.0.0_6.RULE index 582d886b680..0d89a29cc00 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_6.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-6.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: The Parity Public License 6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_6.yml b/src/licensedcode/data/rules/parity-6.0.0_6.yml deleted file mode 100644 index 22ab3f86f70..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-6.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-6.0.0_7.RULE b/src/licensedcode/data/rules/parity-6.0.0_7.RULE index 479a0face22..f7ba20b024c 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_7.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-6.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_7.yml b/src/licensedcode/data/rules/parity-6.0.0_7.yml deleted file mode 100644 index 22ab3f86f70..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-6.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-6.0.0_8.RULE b/src/licensedcode/data/rules/parity-6.0.0_8.RULE index 885e0dc9a63..21a9ad3a6c4 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_8.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_8.yml b/src/licensedcode/data/rules/parity-6.0.0_8.yml deleted file mode 100644 index caf00c2bace..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/parity-6.0.0_9.RULE b/src/licensedcode/data/rules/parity-6.0.0_9.RULE index 8cca6b778f4..b11711557bd 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_9.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 95 +minimum_coverage: 100 +--- + Parity-6.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_9.yml b/src/licensedcode/data/rules/parity-6.0.0_9.yml deleted file mode 100644 index 3c21d589038..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 95 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/parity-6.0.0_url_1.RULE b/src/licensedcode/data/rules/parity-6.0.0_url_1.RULE index bd5c25862cb..c01130f7ac0 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_url_1.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/parity-6.0.0 +--- + https://spdx.org/licenses/parity-6.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_url_1.yml b/src/licensedcode/data/rules/parity-6.0.0_url_1.yml deleted file mode 100644 index c0885fa2c4c..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/parity-6.0.0 diff --git a/src/licensedcode/data/rules/parity-6.0.0_url_2.RULE b/src/licensedcode/data/rules/parity-6.0.0_url_2.RULE index 90463ef5a46..b2b577bdd7a 100644 --- a/src/licensedcode/data/rules/parity-6.0.0_url_2.RULE +++ b/src/licensedcode/data/rules/parity-6.0.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-6.0.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/parity-6.0.0.html +--- + https://spdx.org/licenses/parity-6.0.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-6.0.0_url_2.yml b/src/licensedcode/data/rules/parity-6.0.0_url_2.yml deleted file mode 100644 index 1ac9ea07ec3..00000000000 --- a/src/licensedcode/data/rules/parity-6.0.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-6.0.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/parity-6.0.0.html diff --git a/src/licensedcode/data/rules/parity-7.0.0_1.RULE b/src/licensedcode/data/rules/parity-7.0.0_1.RULE index 8874834c8bd..435b152ae78 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_1.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: parity-7.0.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://blueoakcouncil.org/license/1.0.0 + - https://spdx.org/licenses/BSD-2-Clause.html + - https://spdx.org/licenses/MIT.html + - https://www.apache.org/licenses/LICENSE-2.0.html +--- + # The Parity Public License 7.0.0 Contributor: $name diff --git a/src/licensedcode/data/rules/parity-7.0.0_1.yml b/src/licensedcode/data/rules/parity-7.0.0_1.yml deleted file mode 100644 index 71879090495..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: parity-7.0.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://blueoakcouncil.org/license/1.0.0 - - https://spdx.org/licenses/BSD-2-Clause.html - - https://spdx.org/licenses/MIT.html - - https://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/parity-7.0.0_10.RULE b/src/licensedcode/data/rules/parity-7.0.0_10.RULE index 33d2cf58818..68ab40a8177 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_10.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Parity-7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_10.yml b/src/licensedcode/data/rules/parity-7.0.0_10.yml deleted file mode 100644 index 07d73e37af3..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/parity-7.0.0_11.RULE b/src/licensedcode/data/rules/parity-7.0.0_11.RULE index 21491ce5eb8..70e4c8128d5 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_11.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 95 +minimum_coverage: 100 +--- + Parity-7.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_11.yml b/src/licensedcode/data/rules/parity-7.0.0_11.yml deleted file mode 100644 index 77c038f50a5..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 95 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/parity-7.0.0_12.RULE b/src/licensedcode/data/rules/parity-7.0.0_12.RULE index 1f77a6981bd..9993da15d2b 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_12.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Parity-7.0.0 +--- + https://licenses.nuget.org/Parity-7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_12.yml b/src/licensedcode/data/rules/parity-7.0.0_12.yml deleted file mode 100644 index ad42b13e5ff..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Parity-7.0.0 diff --git a/src/licensedcode/data/rules/parity-7.0.0_13.RULE b/src/licensedcode/data/rules/parity-7.0.0_13.RULE index a028e9b1b1c..15143862bcc 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_13.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_13.RULE @@ -1 +1,7 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Parity-7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_13.yml b/src/licensedcode/data/rules/parity-7.0.0_13.yml deleted file mode 100644 index f0d6c879852..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/parity-7.0.0_14.RULE b/src/licensedcode/data/rules/parity-7.0.0_14.RULE index e109b562290..8e0418ead93 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_14.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Parity-7.0.0 +--- + {{Parity-7.0.0}} https://spdx.org/licenses/Parity-7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_14.yml b/src/licensedcode/data/rules/parity-7.0.0_14.yml deleted file mode 100644 index 4cfd5cd2231..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Parity-7.0.0 diff --git a/src/licensedcode/data/rules/parity-7.0.0_15.RULE b/src/licensedcode/data/rules/parity-7.0.0_15.RULE index 7d2abb43f2e..4f66c099643 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_15.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Parity-7.0.0 +--- + LICENSE {{Parity-7.0.0}} https://spdx.org/licenses/Parity-7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_15.yml b/src/licensedcode/data/rules/parity-7.0.0_15.yml deleted file mode 100644 index 4cfd5cd2231..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Parity-7.0.0 diff --git a/src/licensedcode/data/rules/parity-7.0.0_2.RULE b/src/licensedcode/data/rules/parity-7.0.0_2.RULE index 7bc8cb60c08..4a115953b11 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_2.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: parity-7.0.0 +is_license_text: yes +relevance: 100 +--- + The Parity Public License 7.0.0 Contributor: $name diff --git a/src/licensedcode/data/rules/parity-7.0.0_2.yml b/src/licensedcode/data/rules/parity-7.0.0_2.yml deleted file mode 100644 index d7242da82e2..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: parity-7.0.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/parity-7.0.0_3.RULE b/src/licensedcode/data/rules/parity-7.0.0_3.RULE index df57cbb4b9c..7b9dbee9ffb 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_3.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + The Parity Public License 7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_3.yml b/src/licensedcode/data/rules/parity-7.0.0_3.yml deleted file mode 100644 index 2d774c62c33..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-7.0.0_4.RULE b/src/licensedcode/data/rules/parity-7.0.0_4.RULE index d504996699a..37dcbd41f8b 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_4.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: The Parity Public License 7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_4.yml b/src/licensedcode/data/rules/parity-7.0.0_4.yml deleted file mode 100644 index 2d774c62c33..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-7.0.0_5.RULE b/src/licensedcode/data/rules/parity-7.0.0_5.RULE index 306913667ec..e2659b048ca 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_5.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Parity-7.0.0 The Parity Public License 7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_5.yml b/src/licensedcode/data/rules/parity-7.0.0_5.yml deleted file mode 100644 index 2d774c62c33..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-7.0.0_6.RULE b/src/licensedcode/data/rules/parity-7.0.0_6.RULE index 76d1db76059..55933016670 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_6.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-7.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + The Parity Public License 7.0.0 Parity-7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_6.yml b/src/licensedcode/data/rules/parity-7.0.0_6.yml deleted file mode 100644 index 2d774c62c33..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-7.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-7.0.0_7.RULE b/src/licensedcode/data/rules/parity-7.0.0_7.RULE index 81532e56a11..b6fe7d2ed13 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_7.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-7.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Parity-7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_7.yml b/src/licensedcode/data/rules/parity-7.0.0_7.yml deleted file mode 100644 index e316c1b1928..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-7.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-7.0.0_8.RULE b/src/licensedcode/data/rules/parity-7.0.0_8.RULE index 223f6952f5c..31ede28eac2 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_8.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-7.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: The Parity Public License 7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_8.yml b/src/licensedcode/data/rules/parity-7.0.0_8.yml deleted file mode 100644 index e316c1b1928..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-7.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/parity-7.0.0_9.RULE b/src/licensedcode/data/rules/parity-7.0.0_9.RULE index e3bb5f6aa94..cfb4f8cc039 100644 --- a/src/licensedcode/data/rules/parity-7.0.0_9.RULE +++ b/src/licensedcode/data/rules/parity-7.0.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: parity-7.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Parity-7.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/parity-7.0.0_9.yml b/src/licensedcode/data/rules/parity-7.0.0_9.yml deleted file mode 100644 index e316c1b1928..00000000000 --- a/src/licensedcode/data/rules/parity-7.0.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: parity-7.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/patent-disclaimer.RULE b/src/licensedcode/data/rules/patent-disclaimer.RULE index 4767bfd2df8..fd361220d95 100644 --- a/src/licensedcode/data/rules/patent-disclaimer.RULE +++ b/src/licensedcode/data/rules/patent-disclaimer.RULE @@ -1,6 +1,11 @@ +--- +license_expression: patent-disclaimer +is_license_notice: yes +--- + Further, this software is distributed without any warranty that it is free of the rightful claim of any third person regarding infringement or the like. Any license provided herein, whether implied or otherwise, applies only to this software file. Patent licenses, if any, provided herein do not apply to combinations of this program with -other software, or any other product whatsoever. +other software, or any other product whatsoever. \ No newline at end of file diff --git a/src/licensedcode/data/rules/patent-disclaimer.yml b/src/licensedcode/data/rules/patent-disclaimer.yml deleted file mode 100644 index f07bdc9e3e7..00000000000 --- a/src/licensedcode/data/rules/patent-disclaimer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/patent-disclaimer2.RULE b/src/licensedcode/data/rules/patent-disclaimer2.RULE index b44b155ca42..11c7e08c855 100644 --- a/src/licensedcode/data/rules/patent-disclaimer2.RULE +++ b/src/licensedcode/data/rules/patent-disclaimer2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: patent-disclaimer +is_license_notice: yes +--- + Patent licenses, if any, provided herein do not apply to combinations of this -program with other software, or any other product whatsoever. +program with other software, or any other product whatsoever. \ No newline at end of file diff --git a/src/licensedcode/data/rules/patent-disclaimer2.yml b/src/licensedcode/data/rules/patent-disclaimer2.yml deleted file mode 100644 index f07bdc9e3e7..00000000000 --- a/src/licensedcode/data/rules/patent-disclaimer2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: patent-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/patent-disclaimer3.RULE b/src/licensedcode/data/rules/patent-disclaimer3.RULE index d232f7eed14..3ae6ef65f47 100644 --- a/src/licensedcode/data/rules/patent-disclaimer3.RULE +++ b/src/licensedcode/data/rules/patent-disclaimer3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: patent-disclaimer +is_license_text: yes +--- + No patent licenses or other rights except those expressly stated in the open source license shall be deemed granted or received @@ -12,4 +17,4 @@ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR -OTHERWISE. +OTHERWISE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/patent-disclaimer3.yml b/src/licensedcode/data/rules/patent-disclaimer3.yml deleted file mode 100644 index 60ecc2b3ef4..00000000000 --- a/src/licensedcode/data/rules/patent-disclaimer3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: patent-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/patent-disclaimer4.RULE b/src/licensedcode/data/rules/patent-disclaimer4.RULE index bf3c8a8bbb0..fe0bece8676 100644 --- a/src/licensedcode/data/rules/patent-disclaimer4.RULE +++ b/src/licensedcode/data/rules/patent-disclaimer4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: patent-disclaimer +is_license_text: yes +--- + No patent licenses or other rights except those expressly stated in the OpenSSL open source license shall be deemed granted or received expressly, by implication, estoppel, or otherwise. @@ -11,4 +16,4 @@ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR -OTHERWISE. +OTHERWISE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/patent-disclaimer4.yml b/src/licensedcode/data/rules/patent-disclaimer4.yml deleted file mode 100644 index 60ecc2b3ef4..00000000000 --- a/src/licensedcode/data/rules/patent-disclaimer4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: patent-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/patent-disclaimer_1.RULE b/src/licensedcode/data/rules/patent-disclaimer_1.RULE index 3ff61a5b507..06c4614a1b5 100644 --- a/src/licensedcode/data/rules/patent-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/patent-disclaimer_1.RULE @@ -1 +1,8 @@ +--- +license_expression: patent-disclaimer +is_license_notice: yes +relevance: 100 +notes: in x11 +--- + is the subject of U.S. Patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/patent-disclaimer_1.yml b/src/licensedcode/data/rules/patent-disclaimer_1.yml deleted file mode 100644 index 9a5747a4a5e..00000000000 --- a/src/licensedcode/data/rules/patent-disclaimer_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: patent-disclaimer -is_license_notice: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/paul-hsieh-derivative_1.RULE b/src/licensedcode/data/rules/paul-hsieh-derivative_1.RULE index 68fb636d9d3..55b370f994a 100644 --- a/src/licensedcode/data/rules/paul-hsieh-derivative_1.RULE +++ b/src/licensedcode/data/rules/paul-hsieh-derivative_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: paul-hsieh-derivative +is_license_text: yes +relevance: 100 +--- + The derivative content includes raw computer source code, ideas, opinions, and excerpts whose original source is covered under another license and transformations of such derivatives. Note that mere excerpts diff --git a/src/licensedcode/data/rules/paul-hsieh-derivative_1.yml b/src/licensedcode/data/rules/paul-hsieh-derivative_1.yml deleted file mode 100644 index 25d81f0fb73..00000000000 --- a/src/licensedcode/data/rules/paul-hsieh-derivative_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: paul-hsieh-derivative -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/paul-hsieh-exposition.RULE b/src/licensedcode/data/rules/paul-hsieh-exposition.RULE index dde8276e04e..98db383c9ab 100644 --- a/src/licensedcode/data/rules/paul-hsieh-exposition.RULE +++ b/src/licensedcode/data/rules/paul-hsieh-exposition.RULE @@ -1,2 +1,11 @@ +--- +license_expression: paul-hsieh-exposition +is_license_notice: yes +notes: This is the notice that appears in the source files to identify the license. The actual + text of the license is at the URL indicated in the notice. +ignorable_urls: + - http://www.azillionmonkeys.com/qed/weblicense.html +--- + The Author allows commercial use as long as authorship is fully attributed to Paul Hsieh. -See License here: http://www.azillionmonkeys.com/qed/weblicense.html +See License here: http://www.azillionmonkeys.com/qed/weblicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/paul-hsieh-exposition.yml b/src/licensedcode/data/rules/paul-hsieh-exposition.yml deleted file mode 100644 index fb606d3c2e9..00000000000 --- a/src/licensedcode/data/rules/paul-hsieh-exposition.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: paul-hsieh-exposition -is_license_notice: yes -notes: This is the notice that appears in the source files to identify the license. The actual - text of the license is at the URL indicated in the notice. -ignorable_urls: - - http://www.azillionmonkeys.com/qed/weblicense.html diff --git a/src/licensedcode/data/rules/paul-hsieh-exposition_1.RULE b/src/licensedcode/data/rules/paul-hsieh-exposition_1.RULE index 4beefc803ea..72005a174b6 100644 --- a/src/licensedcode/data/rules/paul-hsieh-exposition_1.RULE +++ b/src/licensedcode/data/rules/paul-hsieh-exposition_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: paul-hsieh-exposition +is_license_text: yes +--- + The content of all text, figures, tables and displayed layout is copyrighted by its author and owner Paul Hsieh unless specifically denoted otherwise. Redistribution is limited to the following conditions: The redistributor must fully attribute the content's authorship and make a good faith effort to cite the original location of the original content. diff --git a/src/licensedcode/data/rules/paul-hsieh-exposition_1.yml b/src/licensedcode/data/rules/paul-hsieh-exposition_1.yml deleted file mode 100644 index a0516f4bfae..00000000000 --- a/src/licensedcode/data/rules/paul-hsieh-exposition_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: paul-hsieh-exposition -is_license_text: yes diff --git a/src/licensedcode/data/rules/paul-mackerras-binary_1.RULE b/src/licensedcode/data/rules/paul-mackerras-binary_1.RULE index d2c4ba5f8f3..2422ba3d934 100644 --- a/src/licensedcode/data/rules/paul-mackerras-binary_1.RULE +++ b/src/licensedcode/data/rules/paul-mackerras-binary_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: paul-mackerras-binary +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: @@ -24,4 +29,4 @@ * SPECIAL, 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. + * 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/paul-mackerras-binary_1.yml b/src/licensedcode/data/rules/paul-mackerras-binary_1.yml deleted file mode 100644 index 8ad82510a7b..00000000000 --- a/src/licensedcode/data/rules/paul-mackerras-binary_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: paul-mackerras-binary -is_license_text: yes diff --git a/src/licensedcode/data/rules/paul-mackerras-binary_2.RULE b/src/licensedcode/data/rules/paul-mackerras-binary_2.RULE index 26f8c229767..9ffa7e63971 100644 --- a/src/licensedcode/data/rules/paul-mackerras-binary_2.RULE +++ b/src/licensedcode/data/rules/paul-mackerras-binary_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: paul-mackerras-binary +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: @@ -24,4 +29,4 @@ AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, 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. +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/paul-mackerras-binary_2.yml b/src/licensedcode/data/rules/paul-mackerras-binary_2.yml deleted file mode 100644 index 8ad82510a7b..00000000000 --- a/src/licensedcode/data/rules/paul-mackerras-binary_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: paul-mackerras-binary -is_license_text: yes diff --git a/src/licensedcode/data/rules/paul-mackerras-binary_3.RULE b/src/licensedcode/data/rules/paul-mackerras-binary_3.RULE index c2d062ec015..7790d08b015 100644 --- a/src/licensedcode/data/rules/paul-mackerras-binary_3.RULE +++ b/src/licensedcode/data/rules/paul-mackerras-binary_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: paul-mackerras-binary +is_license_text: yes +minimum_coverage: 95 +ignorable_authors: + - Tommi Komulainen Tommi.Komulainen@iki.fi +ignorable_emails: + - Tommi.Komulainen@iki.fi +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -25,4 +35,4 @@ AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, 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. +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/paul-mackerras-binary_3.yml b/src/licensedcode/data/rules/paul-mackerras-binary_3.yml deleted file mode 100644 index 9a4d98657bf..00000000000 --- a/src/licensedcode/data/rules/paul-mackerras-binary_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: paul-mackerras-binary -is_license_text: yes -minimum_coverage: 95 -ignorable_authors: - - Tommi Komulainen Tommi.Komulainen@iki.fi -ignorable_emails: - - Tommi.Komulainen@iki.fi diff --git a/src/licensedcode/data/rules/paul-mackerras-new_1.RULE b/src/licensedcode/data/rules/paul-mackerras-new_1.RULE index b47f6f320cc..9b15ff03928 100644 --- a/src/licensedcode/data/rules/paul-mackerras-new_1.RULE +++ b/src/licensedcode/data/rules/paul-mackerras-new_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: paul-mackerras-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: @@ -20,4 +25,4 @@ AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, 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. +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/paul-mackerras-new_1.yml b/src/licensedcode/data/rules/paul-mackerras-new_1.yml deleted file mode 100644 index 9f1b912c857..00000000000 --- a/src/licensedcode/data/rules/paul-mackerras-new_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: paul-mackerras-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/pcre.RULE b/src/licensedcode/data/rules/pcre.RULE index 786466cf2ed..29794bd5c0c 100644 --- a/src/licensedcode/data/rules/pcre.RULE +++ b/src/licensedcode/data/rules/pcre.RULE @@ -1 +1,9 @@ +--- +license_expression: pcre +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.pcre.org/licence.txt +--- + http://www.pcre.org/licence.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre.yml b/src/licensedcode/data/rules/pcre.yml deleted file mode 100644 index d5131fb549a..00000000000 --- a/src/licensedcode/data/rules/pcre.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pcre -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.pcre.org/licence.txt diff --git a/src/licensedcode/data/rules/pcre_1.RULE b/src/licensedcode/data/rules/pcre_1.RULE index 5d97cf0d404..ec91bc9cb74 100644 --- a/src/licensedcode/data/rules/pcre_1.RULE +++ b/src/licensedcode/data/rules/pcre_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: pcre +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyright by the University of Cambridge, England +ignorable_holders: + - the University of Cambridge, England +ignorable_authors: + - Philip Hazel +ignorable_urls: + - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: 1. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -18,4 +32,4 @@ should also be given in the documentation. 4. If PCRE is embedded in any software that is released under the GNU General Purpose Licence (GPL), or Lesser General Purpose Licence (LGPL), then the terms of that licence shall supersede any condition above with which it is incompatible. -The documentation for PCRE, supplied in the "doc" directory, is distributed under the same terms as the software itself. +The documentation for PCRE, supplied in the "doc" directory, is distributed under the same terms as the software itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_1.yml b/src/licensedcode/data/rules/pcre_1.yml deleted file mode 100644 index 14ee672e1a8..00000000000 --- a/src/licensedcode/data/rules/pcre_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: pcre -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyright by the University of Cambridge, England -ignorable_holders: - - the University of Cambridge, England -ignorable_authors: - - Philip Hazel -ignorable_urls: - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ diff --git a/src/licensedcode/data/rules/pcre_10.RULE b/src/licensedcode/data/rules/pcre_10.RULE index f87a0ab508d..49ac39f2f58 100644 --- a/src/licensedcode/data/rules/pcre_10.RULE +++ b/src/licensedcode/data/rules/pcre_10.RULE @@ -1 +1,7 @@ +--- +license_expression: pcre +is_license_reference: yes +relevance: 100 +--- + PCRE 5-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_10.yml b/src/licensedcode/data/rules/pcre_10.yml deleted file mode 100644 index 5ada2712868..00000000000 --- a/src/licensedcode/data/rules/pcre_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: pcre -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pcre_11.RULE b/src/licensedcode/data/rules/pcre_11.RULE index d5aa2f31bd8..07196229d2a 100644 --- a/src/licensedcode/data/rules/pcre_11.RULE +++ b/src/licensedcode/data/rules/pcre_11.RULE @@ -1 +1,7 @@ +--- +license_expression: pcre +is_license_reference: yes +relevance: 100 +--- + PCRE 5-licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_11.yml b/src/licensedcode/data/rules/pcre_11.yml deleted file mode 100644 index 5ada2712868..00000000000 --- a/src/licensedcode/data/rules/pcre_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: pcre -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pcre_12.RULE b/src/licensedcode/data/rules/pcre_12.RULE index 5efa56f52d5..b8e8bb4007d 100644 --- a/src/licensedcode/data/rules/pcre_12.RULE +++ b/src/licensedcode/data/rules/pcre_12.RULE @@ -1 +1,7 @@ +--- +license_expression: pcre +is_license_reference: yes +relevance: 100 +--- + PCRE license \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_12.yml b/src/licensedcode/data/rules/pcre_12.yml deleted file mode 100644 index 5ada2712868..00000000000 --- a/src/licensedcode/data/rules/pcre_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: pcre -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pcre_13.RULE b/src/licensedcode/data/rules/pcre_13.RULE index ae1ad7dd571..c208244de0d 100644 --- a/src/licensedcode/data/rules/pcre_13.RULE +++ b/src/licensedcode/data/rules/pcre_13.RULE @@ -1,3 +1,20 @@ +--- +license_expression: pcre +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1997-2001 University of Cambridge + - copyright by the University of Cambridge, England +ignorable_holders: + - University of Cambridge + - the University of Cambridge, England +ignorable_authors: + - Philip Hazel +ignorable_urls: + - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +ignorable_emails: + - ph10@cam.ac.uk +--- + PCRE 5-license PCRE LICENCE PCRE is a library of functions to support regular expressions whose syntax and semantics are diff --git a/src/licensedcode/data/rules/pcre_13.yml b/src/licensedcode/data/rules/pcre_13.yml deleted file mode 100644 index 625800710e9..00000000000 --- a/src/licensedcode/data/rules/pcre_13.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: pcre -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1997-2001 University of Cambridge - - copyright by the University of Cambridge, England -ignorable_holders: - - University of Cambridge - - the University of Cambridge, England -ignorable_authors: - - Philip Hazel -ignorable_urls: - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ -ignorable_emails: - - ph10@cam.ac.uk diff --git a/src/licensedcode/data/rules/pcre_2.RULE b/src/licensedcode/data/rules/pcre_2.RULE index ab753823f36..7d653130238 100644 --- a/src/licensedcode/data/rules/pcre_2.RULE +++ b/src/licensedcode/data/rules/pcre_2.RULE @@ -1,3 +1,17 @@ +--- +license_expression: pcre +is_license_text: yes +relevance: 95 +ignorable_copyrights: + - copyright by the University of Cambridge, England +ignorable_holders: + - the University of Cambridge, England +ignorable_authors: + - Philip Hazel +ignorable_urls: + - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: diff --git a/src/licensedcode/data/rules/pcre_2.yml b/src/licensedcode/data/rules/pcre_2.yml deleted file mode 100644 index 7da478358b8..00000000000 --- a/src/licensedcode/data/rules/pcre_2.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: pcre -is_license_text: yes -relevance: 95 -ignorable_copyrights: - - copyright by the University of Cambridge, England -ignorable_holders: - - the University of Cambridge, England -ignorable_authors: - - Philip Hazel -ignorable_urls: - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ diff --git a/src/licensedcode/data/rules/pcre_3.RULE b/src/licensedcode/data/rules/pcre_3.RULE index 8f2dab31462..fc6b6288545 100644 --- a/src/licensedcode/data/rules/pcre_3.RULE +++ b/src/licensedcode/data/rules/pcre_3.RULE @@ -1 +1,7 @@ +--- +license_expression: pcre +is_license_reference: yes +relevance: 100 +--- + PCRE LICENCE (BSD-Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_3.yml b/src/licensedcode/data/rules/pcre_3.yml deleted file mode 100644 index 5ada2712868..00000000000 --- a/src/licensedcode/data/rules/pcre_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: pcre -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pcre_4.RULE b/src/licensedcode/data/rules/pcre_4.RULE index 3ab488232fc..9340cca0b3b 100644 --- a/src/licensedcode/data/rules/pcre_4.RULE +++ b/src/licensedcode/data/rules/pcre_4.RULE @@ -1 +1,7 @@ +--- +license_expression: pcre +is_license_reference: yes +relevance: 100 +--- + PCRE LICENCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_4.yml b/src/licensedcode/data/rules/pcre_4.yml deleted file mode 100644 index 5ada2712868..00000000000 --- a/src/licensedcode/data/rules/pcre_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: pcre -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pcre_5.RULE b/src/licensedcode/data/rules/pcre_5.RULE index 60692969172..7401d807a7e 100644 --- a/src/licensedcode/data/rules/pcre_5.RULE +++ b/src/licensedcode/data/rules/pcre_5.RULE @@ -1,2 +1,9 @@ +--- +license_expression: pcre +is_license_notice: yes +relevance: 95 +minimum_coverage: 100 +--- + The documentation for PCRE, supplied in the "doc" directory, is distributed under the same terms as the software itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_5.yml b/src/licensedcode/data/rules/pcre_5.yml deleted file mode 100644 index 0e3b8930dc4..00000000000 --- a/src/licensedcode/data/rules/pcre_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: pcre -is_license_notice: yes -relevance: 95 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/pcre_6.RULE b/src/licensedcode/data/rules/pcre_6.RULE index cda61ca9598..b5ebfcc0291 100644 --- a/src/licensedcode/data/rules/pcre_6.RULE +++ b/src/licensedcode/data/rules/pcre_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: pcre +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENCE +--- + PCRE LICENCE Please see the file LICENCE in the PCRE distribution for licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_6.yml b/src/licensedcode/data/rules/pcre_6.yml deleted file mode 100644 index 1e32795f8d5..00000000000 --- a/src/licensedcode/data/rules/pcre_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pcre -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/pcre_7.RULE b/src/licensedcode/data/rules/pcre_7.RULE index 0d2ff48fbe3..1ef8910cb39 100644 --- a/src/licensedcode/data/rules/pcre_7.RULE +++ b/src/licensedcode/data/rules/pcre_7.RULE @@ -1 +1,9 @@ -ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ PCRE2 LICENCE +--- +license_expression: pcre +is_license_reference: yes +relevance: 100 +ignorable_urls: + - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +--- + +ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ PCRE2 LICENCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_7.yml b/src/licensedcode/data/rules/pcre_7.yml deleted file mode 100644 index 40989ea6f8e..00000000000 --- a/src/licensedcode/data/rules/pcre_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pcre -is_license_reference: yes -relevance: 100 -ignorable_urls: - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ diff --git a/src/licensedcode/data/rules/pcre_8.RULE b/src/licensedcode/data/rules/pcre_8.RULE index 249757b9c22..69900ee07d1 100644 --- a/src/licensedcode/data/rules/pcre_8.RULE +++ b/src/licensedcode/data/rules/pcre_8.RULE @@ -1 +1,9 @@ -ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +--- +license_expression: pcre +is_license_reference: yes +relevance: 100 +ignorable_urls: + - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +--- + +ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/pcre_8.yml b/src/licensedcode/data/rules/pcre_8.yml deleted file mode 100644 index 40989ea6f8e..00000000000 --- a/src/licensedcode/data/rules/pcre_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pcre -is_license_reference: yes -relevance: 100 -ignorable_urls: - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ diff --git a/src/licensedcode/data/rules/pcre_9.RULE b/src/licensedcode/data/rules/pcre_9.RULE index 28023d7e2c0..30d19f31430 100644 --- a/src/licensedcode/data/rules/pcre_9.RULE +++ b/src/licensedcode/data/rules/pcre_9.RULE @@ -1,3 +1,16 @@ +--- +license_expression: pcre +is_license_text: yes +ignorable_copyrights: + - copyright by the University of Cambridge, England +ignorable_holders: + - the University of Cambridge, England +ignorable_authors: + - Philip Hazel +ignorable_urls: + - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ +--- + Permission is granted to anyone to use this software for any purpose on any computer system, and to redistribute it freely, subject to the following restrictions: This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; diff --git a/src/licensedcode/data/rules/pcre_9.yml b/src/licensedcode/data/rules/pcre_9.yml deleted file mode 100644 index 173223b636d..00000000000 --- a/src/licensedcode/data/rules/pcre_9.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: pcre -is_license_text: yes -ignorable_copyrights: - - copyright by the University of Cambridge, England -ignorable_holders: - - the University of Cambridge, England -ignorable_authors: - - Philip Hazel -ignorable_urls: - - ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ diff --git a/src/licensedcode/data/rules/pd-programming.RULE b/src/licensedcode/data/rules/pd-programming.RULE index 80ab428062c..eee647c6c88 100644 --- a/src/licensedcode/data/rules/pd-programming.RULE +++ b/src/licensedcode/data/rules/pd-programming.RULE @@ -1 +1,9 @@ +--- +license_expression: pd-programming +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.pdmagic.com/ +--- + http://www.pdmagic.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/pd-programming.yml b/src/licensedcode/data/rules/pd-programming.yml deleted file mode 100644 index 50880bd62e9..00000000000 --- a/src/licensedcode/data/rules/pd-programming.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pd-programming -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.pdmagic.com/ diff --git a/src/licensedcode/data/rules/pddl-1.0.RULE b/src/licensedcode/data/rules/pddl-1.0.RULE index a998f1db464..e2400478d87 100644 --- a/src/licensedcode/data/rules/pddl-1.0.RULE +++ b/src/licensedcode/data/rules/pddl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opendatacommons.org/licenses/pddl/1-0/ +--- + http://opendatacommons.org/licenses/pddl/1-0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0.SPDX.RULE b/src/licensedcode/data/rules/pddl-1.0.SPDX.RULE index 1d540e05491..2f5ee4cfdcc 100644 --- a/src/licensedcode/data/rules/pddl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/pddl-1.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Open Data Commons - Public Domain Dedication & License (PDDL) Preamble diff --git a/src/licensedcode/data/rules/pddl-1.0.SPDX.yml b/src/licensedcode/data/rules/pddl-1.0.SPDX.yml deleted file mode 100644 index 7c5cf2221af..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: pddl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/pddl-1.0.yml b/src/licensedcode/data/rules/pddl-1.0.yml deleted file mode 100644 index 118bedd2072..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opendatacommons.org/licenses/pddl/1-0/ diff --git a/src/licensedcode/data/rules/pddl-1.0_1.RULE b/src/licensedcode/data/rules/pddl-1.0_1.RULE index ab5df9aad22..0a4ddb15ec3 100644 --- a/src/licensedcode/data/rules/pddl-1.0_1.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: pddl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opendatacommons.org/licenses/pddl/1.0 + - https://opendatacommons.org/licenses/pddl/ +--- + All published datasets are made available under the Open Data Commons `Public Domain Dedication and License (PDDL)`_ v1.0 whose full text can be found at: http://www.opendatacommons.org/licenses/pddl/1.0/. .. _Public Domain Dedication and License (PDDL): https://opendatacommons.org/licenses/pddl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_1.yml b/src/licensedcode/data/rules/pddl-1.0_1.yml deleted file mode 100644 index d1bda3c95fa..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opendatacommons.org/licenses/pddl/1.0 - - https://opendatacommons.org/licenses/pddl/ diff --git a/src/licensedcode/data/rules/pddl-1.0_10.RULE b/src/licensedcode/data/rules/pddl-1.0_10.RULE index 7943405c592..ca91e9606cd 100644 --- a/src/licensedcode/data/rules/pddl-1.0_10.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/PDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_10.yml b/src/licensedcode/data/rules/pddl-1.0_10.yml deleted file mode 100644 index a006ed58b9e..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pddl-1.0_11.RULE b/src/licensedcode/data/rules/pddl-1.0_11.RULE index 366f124a1da..83132b5e5ff 100644 --- a/src/licensedcode/data/rules/pddl-1.0_11.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PDDL-1.0 +--- + {{PDDL-1.0}} https://spdx.org/licenses/PDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_11.yml b/src/licensedcode/data/rules/pddl-1.0_11.yml deleted file mode 100644 index fb9400c46d9..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PDDL-1.0 diff --git a/src/licensedcode/data/rules/pddl-1.0_12.RULE b/src/licensedcode/data/rules/pddl-1.0_12.RULE index a63c887eb72..d33e0583d29 100644 --- a/src/licensedcode/data/rules/pddl-1.0_12.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PDDL-1.0 +--- + LICENSE {{PDDL-1.0}} https://spdx.org/licenses/PDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_12.yml b/src/licensedcode/data/rules/pddl-1.0_12.yml deleted file mode 100644 index fb9400c46d9..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PDDL-1.0 diff --git a/src/licensedcode/data/rules/pddl-1.0_2.RULE b/src/licensedcode/data/rules/pddl-1.0_2.RULE index 6bab0eb8e94..271993320a0 100644 --- a/src/licensedcode/data/rules/pddl-1.0_2.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Data Commons Public Domain Dedication & License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_2.yml b/src/licensedcode/data/rules/pddl-1.0_2.yml deleted file mode 100644 index 3c142bb7cde..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/pddl-1.0_3.RULE b/src/licensedcode/data/rules/pddl-1.0_3.RULE index 54f06e96f7b..03c1b968659 100644 --- a/src/licensedcode/data/rules/pddl-1.0_3.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Open Data Commons Public Domain Dedication & License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_3.yml b/src/licensedcode/data/rules/pddl-1.0_3.yml deleted file mode 100644 index 3c142bb7cde..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/pddl-1.0_4.RULE b/src/licensedcode/data/rules/pddl-1.0_4.RULE index 4f9a5df72d5..c82632f413e 100644 --- a/src/licensedcode/data/rules/pddl-1.0_4.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PDDL-1.0 Open Data Commons Public Domain Dedication & License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_4.yml b/src/licensedcode/data/rules/pddl-1.0_4.yml deleted file mode 100644 index 3c142bb7cde..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/pddl-1.0_5.RULE b/src/licensedcode/data/rules/pddl-1.0_5.RULE index 16f86c44104..58b42aa758f 100644 --- a/src/licensedcode/data/rules/pddl-1.0_5.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Open Data Commons Public Domain Dedication & License 1.0 PDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_5.yml b/src/licensedcode/data/rules/pddl-1.0_5.yml deleted file mode 100644 index 3c142bb7cde..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/pddl-1.0_6.RULE b/src/licensedcode/data/rules/pddl-1.0_6.RULE index d3bfb8b568e..287e47d8d4a 100644 --- a/src/licensedcode/data/rules/pddl-1.0_6.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_6.yml b/src/licensedcode/data/rules/pddl-1.0_6.yml deleted file mode 100644 index b91cdb6ead5..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/pddl-1.0_7.RULE b/src/licensedcode/data/rules/pddl-1.0_7.RULE index 25acb69d321..7648df23d6e 100644 --- a/src/licensedcode/data/rules/pddl-1.0_7.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Open Data Commons Public Domain Dedication & License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_7.yml b/src/licensedcode/data/rules/pddl-1.0_7.yml deleted file mode 100644 index b91cdb6ead5..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/pddl-1.0_8.RULE b/src/licensedcode/data/rules/pddl-1.0_8.RULE index d63eddbb126..7220614a0d0 100644 --- a/src/licensedcode/data/rules/pddl-1.0_8.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: PDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_8.yml b/src/licensedcode/data/rules/pddl-1.0_8.yml deleted file mode 100644 index b91cdb6ead5..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/pddl-1.0_9.RULE b/src/licensedcode/data/rules/pddl-1.0_9.RULE index e84fd255615..7cfd3091305 100644 --- a/src/licensedcode/data/rules/pddl-1.0_9.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/PDDL-1.0 +--- + https://licenses.nuget.org/PDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_9.yml b/src/licensedcode/data/rules/pddl-1.0_9.yml deleted file mode 100644 index ab0d1cc966f..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/PDDL-1.0 diff --git a/src/licensedcode/data/rules/pddl-1.0_and_mit_1.RULE b/src/licensedcode/data/rules/pddl-1.0_and_mit_1.RULE index bcf9456cbc2..f545c69a72f 100644 --- a/src/licensedcode/data/rules/pddl-1.0_and_mit_1.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_and_mit_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: pddl-1.0 AND mit +is_license_notice: yes +relevance: 100 +--- + All data (and associated content) is placed in the Public Domain using the Public Domain Dedication and License. All code is licensed under the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_and_mit_1.yml b/src/licensedcode/data/rules/pddl-1.0_and_mit_1.yml deleted file mode 100644 index fd81fb34e03..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: pddl-1.0 AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pddl-1.0_url_1.RULE b/src/licensedcode/data/rules/pddl-1.0_url_1.RULE index 4637e1a2434..103278ebcad 100644 --- a/src/licensedcode/data/rules/pddl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/pddl-1.0 +--- + https://spdx.org/licenses/pddl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_url_1.yml b/src/licensedcode/data/rules/pddl-1.0_url_1.yml deleted file mode 100644 index 1359137cd4c..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/pddl-1.0 diff --git a/src/licensedcode/data/rules/pddl-1.0_url_2.RULE b/src/licensedcode/data/rules/pddl-1.0_url_2.RULE index e761046d8ed..2d8998ee1b2 100644 --- a/src/licensedcode/data/rules/pddl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/pddl-1.0.html +--- + https://spdx.org/licenses/pddl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_url_2.yml b/src/licensedcode/data/rules/pddl-1.0_url_2.yml deleted file mode 100644 index 1baa523b284..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/pddl-1.0.html diff --git a/src/licensedcode/data/rules/pddl-1.0_url_badge.RULE b/src/licensedcode/data/rules/pddl-1.0_url_badge.RULE index 398535d9d91..e3622877a13 100644 --- a/src/licensedcode/data/rules/pddl-1.0_url_badge.RULE +++ b/src/licensedcode/data/rules/pddl-1.0_url_badge.RULE @@ -1 +1,11 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://img.shields.io/badge/License-PDDL-brightgreen.svg + - https://opendatacommons.org/licenses/pddl +--- + [![License: ODbL](https://img.shields.io/badge/License-PDDL-brightgreen.svg)](https://opendatacommons.org/licenses/pddl/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pddl-1.0_url_badge.yml b/src/licensedcode/data/rules/pddl-1.0_url_badge.yml deleted file mode 100644 index ebbed993196..00000000000 --- a/src/licensedcode/data/rules/pddl-1.0_url_badge.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://img.shields.io/badge/License-PDDL-brightgreen.svg - - https://opendatacommons.org/licenses/pddl diff --git a/src/licensedcode/data/rules/perserve.RULE b/src/licensedcode/data/rules/perserve.RULE index b6312ee7d26..bf1cd7c15e8 100644 --- a/src/licensedcode/data/rules/perserve.RULE +++ b/src/licensedcode/data/rules/perserve.RULE @@ -1,3 +1,9 @@ +--- +license_expression: (bsd-new OR afl-2.1) AND (mpl-1.0 OR lgpl-2.0-plus OR gpl-1.0-plus) AND + apache-2.0 AND apache-2.0 +is_license_notice: yes +--- + Server is available under *either* the terms of the modified BSD license *or* the Academic Free License version 2.1. As a recipient of , you may choose which license to receive this code under (except as noted in per-module LICENSE @@ -8,4 +14,4 @@ their own license including (MPL, LGPL, or GPL), distributions are included for setup convenience, with the exception that portions of the JSON Library source code was used in . is Apache licensed and can be freely used and modified in Persevere -(compatible with AFL/BSD). +(compatible with AFL/BSD). \ No newline at end of file diff --git a/src/licensedcode/data/rules/perserve.yml b/src/licensedcode/data/rules/perserve.yml deleted file mode 100644 index 8a9c828be0a..00000000000 --- a/src/licensedcode/data/rules/perserve.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (bsd-new OR afl-2.1) AND (mpl-1.0 OR lgpl-2.0-plus OR gpl-1.0-plus) AND - apache-2.0 AND apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/perserve2.RULE b/src/licensedcode/data/rules/perserve2.RULE index ba2191a9e96..3b1f7b1dd61 100644 --- a/src/licensedcode/data/rules/perserve2.RULE +++ b/src/licensedcode/data/rules/perserve2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: bsd-new OR afl-2.1 +is_license_notice: yes +--- + is available under *either* the terms of the {{modified BSD license *or* the -Academic Free License version 2.1}} +Academic Free License version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/perserve2.yml b/src/licensedcode/data/rules/perserve2.yml deleted file mode 100644 index eb813518759..00000000000 --- a/src/licensedcode/data/rules/perserve2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new OR afl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/perserve3.RULE b/src/licensedcode/data/rules/perserve3.RULE index c31c7f6a351..6d7362b4d26 100644 --- a/src/licensedcode/data/rules/perserve3.RULE +++ b/src/licensedcode/data/rules/perserve3.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-1.0 OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_reference: yes +relevance: 100 +--- + (MPL, LGPL, or GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/perserve3.yml b/src/licensedcode/data/rules/perserve3.yml deleted file mode 100644 index 2bb8cd2bab2..00000000000 --- a/src/licensedcode/data/rules/perserve3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/peter-deutsch-document_1.RULE b/src/licensedcode/data/rules/peter-deutsch-document_1.RULE index 132c8008247..581c406f13e 100644 --- a/src/licensedcode/data/rules/peter-deutsch-document_1.RULE +++ b/src/licensedcode/data/rules/peter-deutsch-document_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: peter-deutsch-document +is_license_text: yes +relevance: 95 +--- + Permission is granted to copy and distribute this document for any purpose and without charge, including translations into other languages diff --git a/src/licensedcode/data/rules/peter-deutsch-document_1.yml b/src/licensedcode/data/rules/peter-deutsch-document_1.yml deleted file mode 100644 index 73310eb968b..00000000000 --- a/src/licensedcode/data/rules/peter-deutsch-document_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: peter-deutsch-document -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/pftijah-1.1.RULE b/src/licensedcode/data/rules/pftijah-1.1.RULE index 5b32bff6370..2affd5ce470 100644 --- a/src/licensedcode/data/rules/pftijah-1.1.RULE +++ b/src/licensedcode/data/rules/pftijah-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: pftijah-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html +--- + http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/pftijah-1.1.yml b/src/licensedcode/data/rules/pftijah-1.1.yml deleted file mode 100644 index 867cf567010..00000000000 --- a/src/licensedcode/data/rules/pftijah-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pftijah-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html diff --git a/src/licensedcode/data/rules/pftijah-1.1_1.RULE b/src/licensedcode/data/rules/pftijah-1.1_1.RULE index db0715d2387..ee58a5f994e 100644 --- a/src/licensedcode/data/rules/pftijah-1.1_1.RULE +++ b/src/licensedcode/data/rules/pftijah-1.1_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: pftijah-1.1 +is_license_notice: yes +ignorable_urls: + - http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html +--- + "The contents of this file are subject to the PfTijah Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,4 +32,4 @@ your version of this file under the PfTijah Public License, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version -of this file under either the PfTijah Public License or the [ ] License." +of this file under either the PfTijah Public License or the [ ] License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/pftijah-1.1_1.yml b/src/licensedcode/data/rules/pftijah-1.1_1.yml deleted file mode 100644 index 4e9645d6d00..00000000000 --- a/src/licensedcode/data/rules/pftijah-1.1_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: pftijah-1.1 -is_license_notice: yes -ignorable_urls: - - http://dbappl.cs.utwente.nl/Legal/PfTijah-1.1.html diff --git a/src/licensedcode/data/rules/philippe-de-muyter_linum_1.RULE b/src/licensedcode/data/rules/philippe-de-muyter_linum_1.RULE index dc7e14504b5..92a7183f6e0 100644 --- a/src/licensedcode/data/rules/philippe-de-muyter_linum_1.RULE +++ b/src/licensedcode/data/rules/philippe-de-muyter_linum_1.RULE @@ -1 +1,7 @@ +--- +license_expression: philippe-de-muyter +is_license_reference: yes +relevance: 100 +--- + Linum Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/philippe-de-muyter_linum_1.yml b/src/licensedcode/data/rules/philippe-de-muyter_linum_1.yml deleted file mode 100644 index e18fb036b51..00000000000 --- a/src/licensedcode/data/rules/philippe-de-muyter_linum_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: philippe-de-muyter -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/phorum-2.0_1.RULE b/src/licensedcode/data/rules/phorum-2.0_1.RULE index 7e400e951ce..f4c192bdd53 100644 --- a/src/licensedcode/data/rules/phorum-2.0_1.RULE +++ b/src/licensedcode/data/rules/phorum-2.0_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: phorum-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 2001 The Phorum Development Team +ignorable_holders: + - The Phorum Development Team +ignorable_authors: + - the Phorum Development Team (http://phorum.org/) +ignorable_urls: + - http://phorum.org/ +ignorable_emails: + - core@phorum.org +--- + The Phorum License 2.0. Copyright (c) 2001 The Phorum Development Team. All rights @@ -42,4 +58,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/phorum-2.0_1.yml b/src/licensedcode/data/rules/phorum-2.0_1.yml deleted file mode 100644 index 13f7ae5eaa6..00000000000 --- a/src/licensedcode/data/rules/phorum-2.0_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: phorum-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 2001 The Phorum Development Team -ignorable_holders: - - The Phorum Development Team -ignorable_authors: - - the Phorum Development Team (http://phorum.org/) -ignorable_urls: - - http://phorum.org/ -ignorable_emails: - - core@phorum.org diff --git a/src/licensedcode/data/rules/phorum-2.0_2.RULE b/src/licensedcode/data/rules/phorum-2.0_2.RULE index 3591b7b5aaa..8b3687f91dc 100644 --- a/src/licensedcode/data/rules/phorum-2.0_2.RULE +++ b/src/licensedcode/data/rules/phorum-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: phorum-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.phorum.org/license.txt +--- + http://www.phorum.org/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/phorum-2.0_2.yml b/src/licensedcode/data/rules/phorum-2.0_2.yml deleted file mode 100644 index a02b6841cc8..00000000000 --- a/src/licensedcode/data/rules/phorum-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: phorum-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.phorum.org/license.txt diff --git a/src/licensedcode/data/rules/php-2.0.2_1.RULE b/src/licensedcode/data/rules/php-2.0.2_1.RULE index 352bb2879fe..05664a227c7 100644 --- a/src/licensedcode/data/rules/php-2.0.2_1.RULE +++ b/src/licensedcode/data/rules/php-2.0.2_1.RULE @@ -1,7 +1,16 @@ +--- +license_expression: php-2.0.2 +is_license_notice: yes +ignorable_urls: + - http://www.php.net/license/2_02.txt +ignorable_emails: + - license@php.net +--- + This source file is subject to version 2.02 of the PHP license, that is bundled with this package in the file LICENSE, and is available at through the world-wide-web at http://www.php.net/license/2_02.txt. If you did not receive a copy of the PHP license and are unable to obtain it through the world-wide-web, please send a note to -license@php.net so we can mail you a copy immediately. +license@php.net so we can mail you a copy immediately. \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-2.0.2_1.yml b/src/licensedcode/data/rules/php-2.0.2_1.yml deleted file mode 100644 index 0f893a0ea2a..00000000000 --- a/src/licensedcode/data/rules/php-2.0.2_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-2.0.2 -is_license_notice: yes -ignorable_urls: - - http://www.php.net/license/2_02.txt -ignorable_emails: - - license@php.net diff --git a/src/licensedcode/data/rules/php-2.0.2_and_other-permissive_1.RULE b/src/licensedcode/data/rules/php-2.0.2_and_other-permissive_1.RULE index fda0a6b927f..70129cc1276 100644 --- a/src/licensedcode/data/rules/php-2.0.2_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/php-2.0.2_and_other-permissive_1.RULE @@ -1,3 +1,20 @@ +--- +license_expression: php-2.0.2 AND other-permissive +is_license_text: yes +relevance: 99 +notes: this is a rare license. We report the php-2.0.2 instead +ignorable_copyrights: + - Copyright (c) 1999 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.zend.com/license/0_91.txt +ignorable_emails: + - license@zend.com + - php-group@php.net +--- + The PHP License, version 2.01 Copyright (c) 1999 The PHP Group. All rights reserved. @@ -64,4 +81,4 @@ individuals on behalf of the PHP Group. The PHP Group can be contacted via Email at php-group@php.net. For more information on the PHP Group and the PHP project, -please see . +please see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-2.0.2_and_other-permissive_1.yml b/src/licensedcode/data/rules/php-2.0.2_and_other-permissive_1.yml deleted file mode 100644 index 0982778e530..00000000000 --- a/src/licensedcode/data/rules/php-2.0.2_and_other-permissive_1.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: php-2.0.2 AND other-permissive -is_license_text: yes -relevance: 99 -notes: this is a rare license. We report the php-2.0.2 instead -ignorable_copyrights: - - Copyright (c) 1999 The PHP Group -ignorable_holders: - - The PHP Group -ignorable_urls: - - http://www.php.net/ - - http://www.zend.com/license/0_91.txt -ignorable_emails: - - license@zend.com - - php-group@php.net diff --git a/src/licensedcode/data/rules/php-3.0.RULE b/src/licensedcode/data/rules/php-3.0.RULE index b665adc7f6b..621f376f8d6 100644 --- a/src/licensedcode/data/rules/php-3.0.RULE +++ b/src/licensedcode/data/rules/php-3.0.RULE @@ -1 +1,7 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +--- + PHP License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0.yml b/src/licensedcode/data/rules/php-3.0.yml deleted file mode 100644 index 4f62705f248..00000000000 --- a/src/licensedcode/data/rules/php-3.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/php-3.01.RULE b/src/licensedcode/data/rules/php-3.01.RULE index 0ed3b96be76..367e981e25e 100644 --- a/src/licensedcode/data/rules/php-3.01.RULE +++ b/src/licensedcode/data/rules/php-3.01.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/PHP-3.01 +--- + http://spdx.org/licenses/PHP-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01.yml b/src/licensedcode/data/rules/php-3.01.yml deleted file mode 100644 index ce29049b27c..00000000000 --- a/src/licensedcode/data/rules/php-3.01.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/PHP-3.01 diff --git a/src/licensedcode/data/rules/php-3.01_1.RULE b/src/licensedcode/data/rules/php-3.01_1.RULE index a601faaba39..794af92e458 100644 --- a/src/licensedcode/data/rules/php-3.01_1.RULE +++ b/src/licensedcode/data/rules/php-3.01_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: php-3.01 +is_license_text: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1999 - 2010 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.php.net/software/ + - http://www.zend.com/ +ignorable_emails: + - group@php.net +--- + -------------------------------------------------------------------- The PHP License, version 3.01 Copyright (c) 1999 - 2010 The PHP Group. All rights reserved. diff --git a/src/licensedcode/data/rules/php-3.01_1.yml b/src/licensedcode/data/rules/php-3.01_1.yml deleted file mode 100644 index 59e0420aafa..00000000000 --- a/src/licensedcode/data/rules/php-3.01_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: php-3.01 -is_license_text: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 1999 - 2010 The PHP Group -ignorable_holders: - - The PHP Group -ignorable_urls: - - http://www.php.net/ - - http://www.php.net/software/ - - http://www.zend.com/ -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/rules/php-3.01_10.RULE b/src/licensedcode/data/rules/php-3.01_10.RULE index a9cf44ff86d..52268b8af59 100644 --- a/src/licensedcode/data/rules/php-3.01_10.RULE +++ b/src/licensedcode/data/rules/php-3.01_10.RULE @@ -1,3 +1,18 @@ +--- +license_expression: php-3.01 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1999 - 2012 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.php.net/software +ignorable_emails: + - group@php.net +--- + ========================= PHP-LICENSE ===================== -------------------------------------------------------------------- diff --git a/src/licensedcode/data/rules/php-3.01_10.yml b/src/licensedcode/data/rules/php-3.01_10.yml deleted file mode 100644 index ea50dce003d..00000000000 --- a/src/licensedcode/data/rules/php-3.01_10.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: php-3.01 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1999 - 2012 The PHP Group -ignorable_holders: - - The PHP Group -ignorable_urls: - - http://www.php.net/ - - http://www.php.net/software -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/rules/php-3.01_11.RULE b/src/licensedcode/data/rules/php-3.01_11.RULE index 833a47a01ae..b0367cd23b4 100644 --- a/src/licensedcode/data/rules/php-3.01_11.RULE +++ b/src/licensedcode/data/rules/php-3.01_11.RULE @@ -1 +1,7 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 100 +--- + license PHP-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_11.yml b/src/licensedcode/data/rules/php-3.01_11.yml deleted file mode 100644 index b64e6b6ec04..00000000000 --- a/src/licensedcode/data/rules/php-3.01_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/php-3.01_12.RULE b/src/licensedcode/data/rules/php-3.01_12.RULE index 047aff10d00..df34c4af218 100644 --- a/src/licensedcode/data/rules/php-3.01_12.RULE +++ b/src/licensedcode/data/rules/php-3.01_12.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: PHP License v3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_12.yml b/src/licensedcode/data/rules/php-3.01_12.yml deleted file mode 100644 index 62d950c39b6..00000000000 --- a/src/licensedcode/data/rules/php-3.01_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.01_13.RULE b/src/licensedcode/data/rules/php-3.01_13.RULE index 97e3d6be12f..339ba06090e 100644 --- a/src/licensedcode/data/rules/php-3.01_13.RULE +++ b/src/licensedcode/data/rules/php-3.01_13.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PHP-3.01 PHP License v3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_13.yml b/src/licensedcode/data/rules/php-3.01_13.yml deleted file mode 100644 index 62d950c39b6..00000000000 --- a/src/licensedcode/data/rules/php-3.01_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.01_14.RULE b/src/licensedcode/data/rules/php-3.01_14.RULE index 42d7393aa63..961584a9ce8 100644 --- a/src/licensedcode/data/rules/php-3.01_14.RULE +++ b/src/licensedcode/data/rules/php-3.01_14.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PHP License v3.01 PHP-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_14.yml b/src/licensedcode/data/rules/php-3.01_14.yml deleted file mode 100644 index 62d950c39b6..00000000000 --- a/src/licensedcode/data/rules/php-3.01_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.01_15.RULE b/src/licensedcode/data/rules/php-3.01_15.RULE index fcc43b9af32..a8342fa3cce 100644 --- a/src/licensedcode/data/rules/php-3.01_15.RULE +++ b/src/licensedcode/data/rules/php-3.01_15.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.01 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PHP License v3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_15.yml b/src/licensedcode/data/rules/php-3.01_15.yml deleted file mode 100644 index efbfa8cf3db..00000000000 --- a/src/licensedcode/data/rules/php-3.01_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.01_16.RULE b/src/licensedcode/data/rules/php-3.01_16.RULE index ddf21191843..8ffdae85948 100644 --- a/src/licensedcode/data/rules/php-3.01_16.RULE +++ b/src/licensedcode/data/rules/php-3.01_16.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.01 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: PHP-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_16.yml b/src/licensedcode/data/rules/php-3.01_16.yml deleted file mode 100644 index efbfa8cf3db..00000000000 --- a/src/licensedcode/data/rules/php-3.01_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.01_17.RULE b/src/licensedcode/data/rules/php-3.01_17.RULE index e1ece833a17..e66a4f2a114 100644 --- a/src/licensedcode/data/rules/php-3.01_17.RULE +++ b/src/licensedcode/data/rules/php-3.01_17.RULE @@ -1 +1,7 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/PHP_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_17.yml b/src/licensedcode/data/rules/php-3.01_17.yml deleted file mode 100644 index abf29f271d2..00000000000 --- a/src/licensedcode/data/rules/php-3.01_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/php-3.01_18.RULE b/src/licensedcode/data/rules/php-3.01_18.RULE index 124bd018ac9..0cb2a1e6868 100644 --- a/src/licensedcode/data/rules/php-3.01_18.RULE +++ b/src/licensedcode/data/rules/php-3.01_18.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/PHP-3.01 +--- + https://licenses.nuget.org/PHP-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_18.yml b/src/licensedcode/data/rules/php-3.01_18.yml deleted file mode 100644 index 439d21ab78f..00000000000 --- a/src/licensedcode/data/rules/php-3.01_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/PHP-3.01 diff --git a/src/licensedcode/data/rules/php-3.01_19.RULE b/src/licensedcode/data/rules/php-3.01_19.RULE index e33966b32c7..1e0b3cd9c7e 100644 --- a/src/licensedcode/data/rules/php-3.01_19.RULE +++ b/src/licensedcode/data/rules/php-3.01_19.RULE @@ -1 +1,7 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/PHP-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_19.yml b/src/licensedcode/data/rules/php-3.01_19.yml deleted file mode 100644 index b64e6b6ec04..00000000000 --- a/src/licensedcode/data/rules/php-3.01_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/php-3.01_2.RULE b/src/licensedcode/data/rules/php-3.01_2.RULE index 86e324c8954..59e4d0796c1 100644 --- a/src/licensedcode/data/rules/php-3.01_2.RULE +++ b/src/licensedcode/data/rules/php-3.01_2.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.php.net/license/3_01.txt +--- + http://www.php.net/license/3_01.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_2.yml b/src/licensedcode/data/rules/php-3.01_2.yml deleted file mode 100644 index 32c7563b79f..00000000000 --- a/src/licensedcode/data/rules/php-3.01_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.php.net/license/3_01.txt diff --git a/src/licensedcode/data/rules/php-3.01_20.RULE b/src/licensedcode/data/rules/php-3.01_20.RULE index d5dd3beff17..e3ef3428082 100644 --- a/src/licensedcode/data/rules/php-3.01_20.RULE +++ b/src/licensedcode/data/rules/php-3.01_20.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.01 +is_license_tag: yes +relevance: 95 +notes: seen in pear packages +ignorable_urls: + - http://www.php.net/license +--- + PHP License \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_20.yml b/src/licensedcode/data/rules/php-3.01_20.yml deleted file mode 100644 index 736552a4b6c..00000000000 --- a/src/licensedcode/data/rules/php-3.01_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_tag: yes -relevance: 95 -notes: seen in pear packages -ignorable_urls: - - http://www.php.net/license diff --git a/src/licensedcode/data/rules/php-3.01_21.RULE b/src/licensedcode/data/rules/php-3.01_21.RULE index 8624e5e3f2e..2917e658f32 100644 --- a/src/licensedcode/data/rules/php-3.01_21.RULE +++ b/src/licensedcode/data/rules/php-3.01_21.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.01 +is_license_tag: yes +relevance: 95 +notes: seen in pear packages +ignorable_urls: + - http://www.php.net/license +--- + PHP \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_21.yml b/src/licensedcode/data/rules/php-3.01_21.yml deleted file mode 100644 index 736552a4b6c..00000000000 --- a/src/licensedcode/data/rules/php-3.01_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_tag: yes -relevance: 95 -notes: seen in pear packages -ignorable_urls: - - http://www.php.net/license diff --git a/src/licensedcode/data/rules/php-3.01_22.RULE b/src/licensedcode/data/rules/php-3.01_22.RULE index b4edf88713c..585991f1141 100644 --- a/src/licensedcode/data/rules/php-3.01_22.RULE +++ b/src/licensedcode/data/rules/php-3.01_22.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PHP-3.01 +--- + {{PHP-3.01}} https://spdx.org/licenses/PHP-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_22.yml b/src/licensedcode/data/rules/php-3.01_22.yml deleted file mode 100644 index 1f6fd36bccc..00000000000 --- a/src/licensedcode/data/rules/php-3.01_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PHP-3.01 diff --git a/src/licensedcode/data/rules/php-3.01_23.RULE b/src/licensedcode/data/rules/php-3.01_23.RULE index 0f0c74086f5..ec3b9879147 100644 --- a/src/licensedcode/data/rules/php-3.01_23.RULE +++ b/src/licensedcode/data/rules/php-3.01_23.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PHP-3.01 +--- + LICENSE {{PHP-3.01}} https://spdx.org/licenses/PHP-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_23.yml b/src/licensedcode/data/rules/php-3.01_23.yml deleted file mode 100644 index 1f6fd36bccc..00000000000 --- a/src/licensedcode/data/rules/php-3.01_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PHP-3.01 diff --git a/src/licensedcode/data/rules/php-3.01_3.RULE b/src/licensedcode/data/rules/php-3.01_3.RULE index 671190b3328..9f2bd879340 100644 --- a/src/licensedcode/data/rules/php-3.01_3.RULE +++ b/src/licensedcode/data/rules/php-3.01_3.RULE @@ -1,3 +1,19 @@ +--- +license_expression: php-3.01 +is_license_text: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.php.net/software/ + - http://www.zend.com/ +ignorable_emails: + - group@php.net +--- + -------------------------------------------------------------------- The PHP License, version 3.01 Copyright (c) The PHP Group. All rights reserved. @@ -65,4 +81,4 @@ For more information on the PHP Group and the PHP project, please see . PHP includes the Zend Engine, freely available at -. +. \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_3.yml b/src/licensedcode/data/rules/php-3.01_3.yml deleted file mode 100644 index cb664fc489f..00000000000 --- a/src/licensedcode/data/rules/php-3.01_3.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: php-3.01 -is_license_text: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) The PHP Group -ignorable_holders: - - The PHP Group -ignorable_urls: - - http://www.php.net/ - - http://www.php.net/software/ - - http://www.zend.com/ -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/rules/php-3.01_4.RULE b/src/licensedcode/data/rules/php-3.01_4.RULE index 99d01c5fda3..b9ae8d080bd 100644 --- a/src/licensedcode/data/rules/php-3.01_4.RULE +++ b/src/licensedcode/data/rules/php-3.01_4.RULE @@ -1 +1,7 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 100 +--- + PHP LIcense v3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_4.yml b/src/licensedcode/data/rules/php-3.01_4.yml deleted file mode 100644 index b64e6b6ec04..00000000000 --- a/src/licensedcode/data/rules/php-3.01_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/php-3.01_5.RULE b/src/licensedcode/data/rules/php-3.01_5.RULE index 5af24d8ff6d..2e2e3a341ce 100644 --- a/src/licensedcode/data/rules/php-3.01_5.RULE +++ b/src/licensedcode/data/rules/php-3.01_5.RULE @@ -1,5 +1,14 @@ +--- +license_expression: php-3.01 +is_license_notice: yes +ignorable_urls: + - http://www.php.net/license/3_01.txt +ignorable_emails: + - license@php.net +--- + * LICENSE: This source file is subject to version 3.01 of the PHP license * that is available through the world-wide-web at the following URI: * http://www.php.net/license/3_01.txt. If you did not receive a copy of * the PHP License and are unable to obtain it through the web, please - * send a note to license@php.net so we can mail you a copy immediately. + * send a note to license@php.net so we can mail you a copy immediately. \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_5.yml b/src/licensedcode/data/rules/php-3.01_5.yml deleted file mode 100644 index 152ac6c23e0..00000000000 --- a/src/licensedcode/data/rules/php-3.01_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_notice: yes -ignorable_urls: - - http://www.php.net/license/3_01.txt -ignorable_emails: - - license@php.net diff --git a/src/licensedcode/data/rules/php-3.01_6.RULE b/src/licensedcode/data/rules/php-3.01_6.RULE index 9143e7da48b..cb27dd45d4f 100644 --- a/src/licensedcode/data/rules/php-3.01_6.RULE +++ b/src/licensedcode/data/rules/php-3.01_6.RULE @@ -1 +1,9 @@ - * @license http://www.php.net/license/3_01.txt PHP License 3.01 +--- +license_expression: php-3.01 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.php.net/license/3_01.txt +--- + + * @license http://www.php.net/license/3_01.txt PHP License 3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_6.yml b/src/licensedcode/data/rules/php-3.01_6.yml deleted file mode 100644 index f9ce33a3ad7..00000000000 --- a/src/licensedcode/data/rules/php-3.01_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.01 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.php.net/license/3_01.txt diff --git a/src/licensedcode/data/rules/php-3.01_7.RULE b/src/licensedcode/data/rules/php-3.01_7.RULE index a563bb28e81..7edd24aee5b 100644 --- a/src/licensedcode/data/rules/php-3.01_7.RULE +++ b/src/licensedcode/data/rules/php-3.01_7.RULE @@ -1,7 +1,16 @@ +--- +license_expression: php-3.01 +is_license_notice: yes +ignorable_urls: + - http://www.php.net/license/3_01.txt +ignorable_emails: + - license@php.net +--- + | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | - | license@php.net so we can mail you a copy immediately. \ No newline at end of file + | license@php.net so we can mail you a copy immediately. \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_7.yml b/src/licensedcode/data/rules/php-3.01_7.yml deleted file mode 100644 index 152ac6c23e0..00000000000 --- a/src/licensedcode/data/rules/php-3.01_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_notice: yes -ignorable_urls: - - http://www.php.net/license/3_01.txt -ignorable_emails: - - license@php.net diff --git a/src/licensedcode/data/rules/php-3.01_8.RULE b/src/licensedcode/data/rules/php-3.01_8.RULE index 98b791ae6fe..0bbe65b130c 100644 --- a/src/licensedcode/data/rules/php-3.01_8.RULE +++ b/src/licensedcode/data/rules/php-3.01_8.RULE @@ -1,2 +1,11 @@ +--- +license_expression: php-3.01 +is_license_text: yes +relevance: 99 +minimum_coverage: 70 +ignorable_urls: + - http://www.php.net/ +--- + Part of this code includes code from the PHP project which -is freely available from http://www.php.net +is freely available from http://www.php.net \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_8.yml b/src/licensedcode/data/rules/php-3.01_8.yml deleted file mode 100644 index da6c93c641c..00000000000 --- a/src/licensedcode/data/rules/php-3.01_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.01 -is_license_text: yes -relevance: 99 -minimum_coverage: 70 -ignorable_urls: - - http://www.php.net/ diff --git a/src/licensedcode/data/rules/php-3.01_9.RULE b/src/licensedcode/data/rules/php-3.01_9.RULE index e387df86bed..ca5e54c4ce0 100644 --- a/src/licensedcode/data/rules/php-3.01_9.RULE +++ b/src/licensedcode/data/rules/php-3.01_9.RULE @@ -1,3 +1,18 @@ +--- +license_expression: php-3.01 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1999 - 2012 The PHP Group +ignorable_holders: + - The PHP Group +ignorable_urls: + - http://www.php.net/ + - http://www.php.net/software +ignorable_emails: + - group@php.net +--- + -------------------------------------------------------------------- The PHP License, version 3.01 Copyright (c) 1999 - 2012 The PHP Group. All rights reserved. diff --git a/src/licensedcode/data/rules/php-3.01_9.yml b/src/licensedcode/data/rules/php-3.01_9.yml deleted file mode 100644 index ea50dce003d..00000000000 --- a/src/licensedcode/data/rules/php-3.01_9.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: php-3.01 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1999 - 2012 The PHP Group -ignorable_holders: - - The PHP Group -ignorable_urls: - - http://www.php.net/ - - http://www.php.net/software -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/rules/php-3.01_or_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/php-3.01_or_lgpl-3.0_1.RULE index 48c80dbf9a7..4cdc3ad6c53 100644 --- a/src/licensedcode/data/rules/php-3.01_or_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/php-3.01_or_lgpl-3.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: php-3.01 OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + This package is now dual licensed under PHP license v3.01 and LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_or_lgpl-3.0_1.yml b/src/licensedcode/data/rules/php-3.01_or_lgpl-3.0_1.yml deleted file mode 100644 index 336ed0dd1c3..00000000000 --- a/src/licensedcode/data/rules/php-3.01_or_lgpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.01 OR lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/php-3.01_url_1.RULE b/src/licensedcode/data/rules/php-3.01_url_1.RULE index 0f1a2e2104c..6ec7bab1892 100644 --- a/src/licensedcode/data/rules/php-3.01_url_1.RULE +++ b/src/licensedcode/data/rules/php-3.01_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/php-3.01 +--- + https://spdx.org/licenses/php-3.01 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_url_1.yml b/src/licensedcode/data/rules/php-3.01_url_1.yml deleted file mode 100644 index 46ebe672619..00000000000 --- a/src/licensedcode/data/rules/php-3.01_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/php-3.01 diff --git a/src/licensedcode/data/rules/php-3.01_url_2.RULE b/src/licensedcode/data/rules/php-3.01_url_2.RULE index 828e8625d5b..13542d724fd 100644 --- a/src/licensedcode/data/rules/php-3.01_url_2.RULE +++ b/src/licensedcode/data/rules/php-3.01_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.01 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/php-3.01.html +--- + https://spdx.org/licenses/php-3.01.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.01_url_2.yml b/src/licensedcode/data/rules/php-3.01_url_2.yml deleted file mode 100644 index fa4ffd58c44..00000000000 --- a/src/licensedcode/data/rules/php-3.01_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.01 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/php-3.01.html diff --git a/src/licensedcode/data/rules/php-3.0_1.RULE b/src/licensedcode/data/rules/php-3.0_1.RULE index 390bb26bf24..cf530ce0048 100644 --- a/src/licensedcode/data/rules/php-3.0_1.RULE +++ b/src/licensedcode/data/rules/php-3.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.php.net/license/index.php +--- + http://www.php.net/license/index.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_1.yml b/src/licensedcode/data/rules/php-3.0_1.yml deleted file mode 100644 index cda317bae5b..00000000000 --- a/src/licensedcode/data/rules/php-3.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.php.net/license/index.php diff --git a/src/licensedcode/data/rules/php-3.0_10.RULE b/src/licensedcode/data/rules/php-3.0_10.RULE index c4927ad2203..f3156171c2e 100644 --- a/src/licensedcode/data/rules/php-3.0_10.RULE +++ b/src/licensedcode/data/rules/php-3.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: php-3.0 +is_license_tag: yes +relevance: 100 +--- + License: PHP License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_10.yml b/src/licensedcode/data/rules/php-3.0_10.yml deleted file mode 100644 index 12e13ab3413..00000000000 --- a/src/licensedcode/data/rules/php-3.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/php-3.0_11.RULE b/src/licensedcode/data/rules/php-3.0_11.RULE index 328fff9702c..e1b93274d38 100644 --- a/src/licensedcode/data/rules/php-3.0_11.RULE +++ b/src/licensedcode/data/rules/php-3.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: PHP License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_11.yml b/src/licensedcode/data/rules/php-3.0_11.yml deleted file mode 100644 index 3db683a0b0b..00000000000 --- a/src/licensedcode/data/rules/php-3.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.0_12.RULE b/src/licensedcode/data/rules/php-3.0_12.RULE index e157dcffc89..7878c09af76 100644 --- a/src/licensedcode/data/rules/php-3.0_12.RULE +++ b/src/licensedcode/data/rules/php-3.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PHP-3.0 PHP License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_12.yml b/src/licensedcode/data/rules/php-3.0_12.yml deleted file mode 100644 index 3db683a0b0b..00000000000 --- a/src/licensedcode/data/rules/php-3.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.0_13.RULE b/src/licensedcode/data/rules/php-3.0_13.RULE index e40f1c52f69..3bc40440496 100644 --- a/src/licensedcode/data/rules/php-3.0_13.RULE +++ b/src/licensedcode/data/rules/php-3.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PHP License v3.0 PHP-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_13.yml b/src/licensedcode/data/rules/php-3.0_13.yml deleted file mode 100644 index 3db683a0b0b..00000000000 --- a/src/licensedcode/data/rules/php-3.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.0_14.RULE b/src/licensedcode/data/rules/php-3.0_14.RULE index 74f3cf8fe7f..f908fd3e3ad 100644 --- a/src/licensedcode/data/rules/php-3.0_14.RULE +++ b/src/licensedcode/data/rules/php-3.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PHP-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_14.yml b/src/licensedcode/data/rules/php-3.0_14.yml deleted file mode 100644 index f044b3be351..00000000000 --- a/src/licensedcode/data/rules/php-3.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.0_15.RULE b/src/licensedcode/data/rules/php-3.0_15.RULE index f5bbed7ab67..1a10580b1aa 100644 --- a/src/licensedcode/data/rules/php-3.0_15.RULE +++ b/src/licensedcode/data/rules/php-3.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PHP License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_15.yml b/src/licensedcode/data/rules/php-3.0_15.yml deleted file mode 100644 index f044b3be351..00000000000 --- a/src/licensedcode/data/rules/php-3.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.0_16.RULE b/src/licensedcode/data/rules/php-3.0_16.RULE index f8c7629d72d..837ea20b34d 100644 --- a/src/licensedcode/data/rules/php-3.0_16.RULE +++ b/src/licensedcode/data/rules/php-3.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: php-3.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: PHP-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_16.yml b/src/licensedcode/data/rules/php-3.0_16.yml deleted file mode 100644 index f044b3be351..00000000000 --- a/src/licensedcode/data/rules/php-3.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/php-3.0_17.RULE b/src/licensedcode/data/rules/php-3.0_17.RULE index d1444ae6815..5a4981897ba 100644 --- a/src/licensedcode/data/rules/php-3.0_17.RULE +++ b/src/licensedcode/data/rules/php-3.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/PHP-3.0 +--- + https://licenses.nuget.org/PHP-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_17.yml b/src/licensedcode/data/rules/php-3.0_17.yml deleted file mode 100644 index 87033c81537..00000000000 --- a/src/licensedcode/data/rules/php-3.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/PHP-3.0 diff --git a/src/licensedcode/data/rules/php-3.0_18.RULE b/src/licensedcode/data/rules/php-3.0_18.RULE index b11b60e6704..8cb7d2cdbce 100644 --- a/src/licensedcode/data/rules/php-3.0_18.RULE +++ b/src/licensedcode/data/rules/php-3.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/PHP-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_18.yml b/src/licensedcode/data/rules/php-3.0_18.yml deleted file mode 100644 index 4f62705f248..00000000000 --- a/src/licensedcode/data/rules/php-3.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/php-3.0_19.RULE b/src/licensedcode/data/rules/php-3.0_19.RULE index e14c365ee76..04f919ad01f 100644 --- a/src/licensedcode/data/rules/php-3.0_19.RULE +++ b/src/licensedcode/data/rules/php-3.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PHP-3.0 +--- + {{PHP-3.0}} https://spdx.org/licenses/PHP-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_19.yml b/src/licensedcode/data/rules/php-3.0_19.yml deleted file mode 100644 index d655459f8b5..00000000000 --- a/src/licensedcode/data/rules/php-3.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PHP-3.0 diff --git a/src/licensedcode/data/rules/php-3.0_2.RULE b/src/licensedcode/data/rules/php-3.0_2.RULE index 03e7d22c3d6..d0f96b83ce2 100644 --- a/src/licensedcode/data/rules/php-3.0_2.RULE +++ b/src/licensedcode/data/rules/php-3.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.php.net/license/ +--- + http://www.php.net/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_2.yml b/src/licensedcode/data/rules/php-3.0_2.yml deleted file mode 100644 index 087d82a44c7..00000000000 --- a/src/licensedcode/data/rules/php-3.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.php.net/license/ diff --git a/src/licensedcode/data/rules/php-3.0_20.RULE b/src/licensedcode/data/rules/php-3.0_20.RULE index cf7276880b3..d935afe6f7d 100644 --- a/src/licensedcode/data/rules/php-3.0_20.RULE +++ b/src/licensedcode/data/rules/php-3.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PHP-3.0 +--- + LICENSE {{PHP-3.0}} https://spdx.org/licenses/PHP-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_20.yml b/src/licensedcode/data/rules/php-3.0_20.yml deleted file mode 100644 index d655459f8b5..00000000000 --- a/src/licensedcode/data/rules/php-3.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PHP-3.0 diff --git a/src/licensedcode/data/rules/php-3.0_3.RULE b/src/licensedcode/data/rules/php-3.0_3.RULE index fb9c2c5964f..4103a1f9bf5 100644 --- a/src/licensedcode/data/rules/php-3.0_3.RULE +++ b/src/licensedcode/data/rules/php-3.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/php.html +--- + http://www.opensource.org/licenses/php.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_3.yml b/src/licensedcode/data/rules/php-3.0_3.yml deleted file mode 100644 index aac79550e57..00000000000 --- a/src/licensedcode/data/rules/php-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/php.html diff --git a/src/licensedcode/data/rules/php-3.0_4.RULE b/src/licensedcode/data/rules/php-3.0_4.RULE index bb0649f8a85..adff633c380 100644 --- a/src/licensedcode/data/rules/php-3.0_4.RULE +++ b/src/licensedcode/data/rules/php-3.0_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: php-3.0 +is_license_notice: yes +minimum_coverage: 70 +ignorable_urls: + - http://www.php.net/ + - http://www.zend.com/ +ignorable_emails: + - group@php.net +--- + This software consists of voluntary contributions made by many individuals on behalf of the PHP Group. diff --git a/src/licensedcode/data/rules/php-3.0_4.yml b/src/licensedcode/data/rules/php-3.0_4.yml deleted file mode 100644 index da90ec430e2..00000000000 --- a/src/licensedcode/data/rules/php-3.0_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: php-3.0 -is_license_notice: yes -minimum_coverage: 70 -ignorable_urls: - - http://www.php.net/ - - http://www.zend.com/ -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/rules/php-3.0_5.RULE b/src/licensedcode/data/rules/php-3.0_5.RULE index 1d78781882a..ad43b0bd289 100644 --- a/src/licensedcode/data/rules/php-3.0_5.RULE +++ b/src/licensedcode/data/rules/php-3.0_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: php-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.php.net/license/3_0.txt +ignorable_emails: + - license@php.net +--- + * LICENSE: This source file is subject to version 3.0 of the PHP license * that is available through the world-wide-web at the following URI: * http://www.php.net/license/3_0.txt. If you did not receive a copy of diff --git a/src/licensedcode/data/rules/php-3.0_5.yml b/src/licensedcode/data/rules/php-3.0_5.yml deleted file mode 100644 index a6d68c0cb8d..00000000000 --- a/src/licensedcode/data/rules/php-3.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.php.net/license/3_0.txt -ignorable_emails: - - license@php.net diff --git a/src/licensedcode/data/rules/php-3.0_6.RULE b/src/licensedcode/data/rules/php-3.0_6.RULE index e69754ef279..878e2b8a841 100644 --- a/src/licensedcode/data/rules/php-3.0_6.RULE +++ b/src/licensedcode/data/rules/php-3.0_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: php-3.0 +is_license_text: yes +ignorable_urls: + - http://www.php.net/ +ignorable_emails: + - group@php.net +--- + The PHP License version 3.0 @@ -51,4 +60,4 @@ 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. +OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_6.yml b/src/licensedcode/data/rules/php-3.0_6.yml deleted file mode 100644 index de52e5eb4fa..00000000000 --- a/src/licensedcode/data/rules/php-3.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_text: yes -ignorable_urls: - - http://www.php.net/ -ignorable_emails: - - group@php.net diff --git a/src/licensedcode/data/rules/php-3.0_7.RULE b/src/licensedcode/data/rules/php-3.0_7.RULE index eac0a9ed386..2a76eac40b8 100644 --- a/src/licensedcode/data/rules/php-3.0_7.RULE +++ b/src/licensedcode/data/rules/php-3.0_7.RULE @@ -1,3 +1,12 @@ +--- +license_expression: php-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.php.net/license/3_0.txt +ignorable_emails: + - license@php.net +--- + // | This source file is subject toversion 3.0 of the PHP license, | // | that is bundled with this package in the file LICENSE, and is | // | available at through the world-wide-web at | diff --git a/src/licensedcode/data/rules/php-3.0_7.yml b/src/licensedcode/data/rules/php-3.0_7.yml deleted file mode 100644 index a6d68c0cb8d..00000000000 --- a/src/licensedcode/data/rules/php-3.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.php.net/license/3_0.txt -ignorable_emails: - - license@php.net diff --git a/src/licensedcode/data/rules/php-3.0_8.RULE b/src/licensedcode/data/rules/php-3.0_8.RULE index fe45c556f15..8a4558242ff 100644 --- a/src/licensedcode/data/rules/php-3.0_8.RULE +++ b/src/licensedcode/data/rules/php-3.0_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: php-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.php.net/license/3_0.txt +ignorable_emails: + - license@php.net +--- + // | This source file is subject to version 3.0 of the PHP license, | // | that is bundled with this package in the file LICENSE, and is | // | available at through the world-wide-web at | diff --git a/src/licensedcode/data/rules/php-3.0_8.yml b/src/licensedcode/data/rules/php-3.0_8.yml deleted file mode 100644 index a6d68c0cb8d..00000000000 --- a/src/licensedcode/data/rules/php-3.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: php-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.php.net/license/3_0.txt -ignorable_emails: - - license@php.net diff --git a/src/licensedcode/data/rules/php-3.0_9.RULE b/src/licensedcode/data/rules/php-3.0_9.RULE index bee5ddbd15d..669ab4452fa 100644 --- a/src/licensedcode/data/rules/php-3.0_9.RULE +++ b/src/licensedcode/data/rules/php-3.0_9.RULE @@ -1 +1,9 @@ - * @license http://www.php.net/license/3_0.txt PHP License 3.0 +--- +license_expression: php-3.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.php.net/license/3_0.txt +--- + + * @license http://www.php.net/license/3_0.txt PHP License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_9.yml b/src/licensedcode/data/rules/php-3.0_9.yml deleted file mode 100644 index cad538343f5..00000000000 --- a/src/licensedcode/data/rules/php-3.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.php.net/license/3_0.txt diff --git a/src/licensedcode/data/rules/php-3.0_or_lgpl-3.0_1.RULE b/src/licensedcode/data/rules/php-3.0_or_lgpl-3.0_1.RULE index 0d9d55a5124..155b97a1021 100644 --- a/src/licensedcode/data/rules/php-3.0_or_lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/php-3.0_or_lgpl-3.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: php-3.0 OR lgpl-3.0 +is_license_notice: yes +relevance: 100 +--- + are dual licensed under the PHP license 3.0 and the LGPL 3.0. You are free to take your pick. \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_or_lgpl-3.0_1.yml b/src/licensedcode/data/rules/php-3.0_or_lgpl-3.0_1.yml deleted file mode 100644 index 0f6da3b7ca8..00000000000 --- a/src/licensedcode/data/rules/php-3.0_or_lgpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: php-3.0 OR lgpl-3.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/php-3.0_url_1.RULE b/src/licensedcode/data/rules/php-3.0_url_1.RULE index 3d7a270c525..197d3d15728 100644 --- a/src/licensedcode/data/rules/php-3.0_url_1.RULE +++ b/src/licensedcode/data/rules/php-3.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/php-3.0 +--- + https://spdx.org/licenses/php-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_url_1.yml b/src/licensedcode/data/rules/php-3.0_url_1.yml deleted file mode 100644 index 675dd8a3f48..00000000000 --- a/src/licensedcode/data/rules/php-3.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/php-3.0 diff --git a/src/licensedcode/data/rules/php-3.0_url_2.RULE b/src/licensedcode/data/rules/php-3.0_url_2.RULE index a98686ad034..80aaefb0777 100644 --- a/src/licensedcode/data/rules/php-3.0_url_2.RULE +++ b/src/licensedcode/data/rules/php-3.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/php-3.0.html +--- + https://spdx.org/licenses/php-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_url_2.yml b/src/licensedcode/data/rules/php-3.0_url_2.yml deleted file mode 100644 index 5b13cdc9aaf..00000000000 --- a/src/licensedcode/data/rules/php-3.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/php-3.0.html diff --git a/src/licensedcode/data/rules/php-3.0_url_glc_220.RULE b/src/licensedcode/data/rules/php-3.0_url_glc_220.RULE index 352336fb847..525e46d1f56 100644 --- a/src/licensedcode/data/rules/php-3.0_url_glc_220.RULE +++ b/src/licensedcode/data/rules/php-3.0_url_glc_220.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/php-3.0 +--- + http://www.opensource.org/licenses/php-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_url_glc_220.yml b/src/licensedcode/data/rules/php-3.0_url_glc_220.yml deleted file mode 100644 index 5c5dad5742f..00000000000 --- a/src/licensedcode/data/rules/php-3.0_url_glc_220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/php-3.0 diff --git a/src/licensedcode/data/rules/php-3.0_url_glc_221.RULE b/src/licensedcode/data/rules/php-3.0_url_glc_221.RULE index 6a2b55a6713..ddf1547e753 100644 --- a/src/licensedcode/data/rules/php-3.0_url_glc_221.RULE +++ b/src/licensedcode/data/rules/php-3.0_url_glc_221.RULE @@ -1 +1,9 @@ +--- +license_expression: php-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/php-3.0 +--- + https://www.opensource.org/licenses/php-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/php-3.0_url_glc_221.yml b/src/licensedcode/data/rules/php-3.0_url_glc_221.yml deleted file mode 100644 index ef1c1f98674..00000000000 --- a/src/licensedcode/data/rules/php-3.0_url_glc_221.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: php-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/php-3.0 diff --git a/src/licensedcode/data/rules/pine.RULE b/src/licensedcode/data/rules/pine.RULE index 288d280c4d0..2606500d024 100644 --- a/src/licensedcode/data/rules/pine.RULE +++ b/src/licensedcode/data/rules/pine.RULE @@ -1 +1,9 @@ +--- +license_expression: pine +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.washington.edu/pine/overview/legal.html +--- + http://www.washington.edu/pine/overview/legal.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/pine.yml b/src/licensedcode/data/rules/pine.yml deleted file mode 100644 index 3b6048e21e1..00000000000 --- a/src/licensedcode/data/rules/pine.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pine -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.washington.edu/pine/overview/legal.html diff --git a/src/licensedcode/data/rules/planet-source-code_1.RULE b/src/licensedcode/data/rules/planet-source-code_1.RULE index e901a2fe4a7..34c051dbc23 100644 --- a/src/licensedcode/data/rules/planet-source-code_1.RULE +++ b/src/licensedcode/data/rules/planet-source-code_1.RULE @@ -1 +1,7 @@ +--- +license_expression: planet-source-code +is_license_reference: yes +relevance: 100 +--- + Planet Source Code Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/planet-source-code_1.yml b/src/licensedcode/data/rules/planet-source-code_1.yml deleted file mode 100644 index 8dc59128dd6..00000000000 --- a/src/licensedcode/data/rules/planet-source-code_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: planet-source-code -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/planet-source-code_2.RULE b/src/licensedcode/data/rules/planet-source-code_2.RULE index 478f7d2ec89..0b96f8a69ac 100644 --- a/src/licensedcode/data/rules/planet-source-code_2.RULE +++ b/src/licensedcode/data/rules/planet-source-code_2.RULE @@ -1 +1,7 @@ +--- +license_expression: planet-source-code +is_license_reference: yes +relevance: 100 +--- + Planet Source Code Terms of Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/planet-source-code_2.yml b/src/licensedcode/data/rules/planet-source-code_2.yml deleted file mode 100644 index 8dc59128dd6..00000000000 --- a/src/licensedcode/data/rules/planet-source-code_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: planet-source-code -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/planet-source-code_3.RULE b/src/licensedcode/data/rules/planet-source-code_3.RULE index 2e9dac555d2..b9c4a076262 100644 --- a/src/licensedcode/data/rules/planet-source-code_3.RULE +++ b/src/licensedcode/data/rules/planet-source-code_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: planet-source-code +is_license_text: yes +--- + By using this code, you agree to the following terms. 1. You may use this code in your own programs (and may compile it into aprogram diff --git a/src/licensedcode/data/rules/planet-source-code_3.yml b/src/licensedcode/data/rules/planet-source-code_3.yml deleted file mode 100644 index c64b64b9637..00000000000 --- a/src/licensedcode/data/rules/planet-source-code_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: planet-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/pml-2020_1.RULE b/src/licensedcode/data/rules/pml-2020_1.RULE index b9769c97b1a..812aa53aa1e 100644 --- a/src/licensedcode/data/rules/pml-2020_1.RULE +++ b/src/licensedcode/data/rules/pml-2020_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: pml-2020 +is_license_notice: yes +ignorable_urls: + - https://developer.amazon.com/support/legal/pml +--- + These materials are licensed to you as "Program Materials" under the Program Materials License Agreement, which is currently available at https://developer.amazon.com/support/legal/pml. \ No newline at end of file diff --git a/src/licensedcode/data/rules/pml-2020_1.yml b/src/licensedcode/data/rules/pml-2020_1.yml deleted file mode 100644 index 89331b52494..00000000000 --- a/src/licensedcode/data/rules/pml-2020_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: pml-2020 -is_license_notice: yes -ignorable_urls: - - https://developer.amazon.com/support/legal/pml diff --git a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_1.RULE b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_1.RULE index 36f893531b9..42fba8f1464 100644 --- a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_1.RULE +++ b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: polyform-free-trial-1.0.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/YugaByte/yugabyte-db/blob/master/licenses/POLYFORM-FREE-TRIAL-LICENSE-1.0.0.txt +--- + # Licensed under the Polyform Free Trial License 1.0.0 (the "License"); you # may not use this file except in compliance with the License. You # may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_1.yml b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_1.yml deleted file mode 100644 index 27062c4a989..00000000000 --- a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-free-trial-1.0.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/YugaByte/yugabyte-db/blob/master/licenses/POLYFORM-FREE-TRIAL-LICENSE-1.0.0.txt diff --git a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_2.RULE b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_2.RULE index 5a4b70c41b9..04aa836ad09 100644 --- a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_2.RULE +++ b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-free-trial-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://polyformproject.org/licenses/free-trial/1.0.0 +--- + [Polyform-Free-Trial-1.0.0](https://polyformproject.org/licenses/free-trial/1.0.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_2.yml b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_2.yml deleted file mode 100644 index e47c61c1563..00000000000 --- a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-free-trial-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://polyformproject.org/licenses/free-trial/1.0.0 diff --git a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_3.RULE b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_3.RULE index b37c4f498ee..592ec7744a4 100644 --- a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_3.RULE +++ b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-free-trial-1.0.0 +is_license_reference: yes +relevance: 100 +--- + [Polyform-Free-Trial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_3.yml b/src/licensedcode/data/rules/polyform-free-trial-1.0.0_3.yml deleted file mode 100644 index fff33936891..00000000000 --- a/src/licensedcode/data/rules/polyform-free-trial-1.0.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-free-trial-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_1.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_1.RULE index f5772d6ccf0..a458ff69d0f 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_1.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +--- + PolyForm-Noncommercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_1.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_1.yml deleted file mode 100644 index fea1a5d4af5..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_10.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_10.RULE index 3e6a8d508c0..622cb2a45c5 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_10.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PolyForm-Noncommercial-1.0.0 PolyForm Noncommercial License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_10.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_10.yml deleted file mode 100644 index 63fb298a9b9..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_11.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_11.RULE index 8e1f1d6566c..0f8970dcd62 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_11.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PolyForm Noncommercial License 1.0.0 PolyForm-Noncommercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_11.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_11.yml deleted file mode 100644 index 63fb298a9b9..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_12.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_12.RULE index eaf0367d6db..30ecc5afec6 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_12.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PolyForm-Noncommercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_12.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_12.yml deleted file mode 100644 index c16c3b72ca6..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_13.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_13.RULE index ba33212c624..1210d502631 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_13.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PolyForm Noncommercial License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_13.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_13.yml deleted file mode 100644 index c16c3b72ca6..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_14.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_14.RULE index e55eb8b4925..95de1f3d3f1 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_14.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: PolyForm-Noncommercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_14.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_14.yml deleted file mode 100644 index c16c3b72ca6..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_15.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_15.RULE index 00bad35dec2..038876ce869 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_15.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/PolyForm-Noncommercial-1.0.0 +--- + https://licenses.nuget.org/PolyForm-Noncommercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_15.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_15.yml deleted file mode 100644 index 2d2520cabcd..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/PolyForm-Noncommercial-1.0.0 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_16.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_16.RULE index 8e978eb9439..6c509b859ce 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_16.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_16.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/PolyForm-Noncommercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_16.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_16.yml deleted file mode 100644 index fea1a5d4af5..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_17.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_17.RULE index 2f4918232fe..e22d8a2df03 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_17.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0 +--- + {{PolyForm-Noncommercial-1.0.0}} https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_17.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_17.yml deleted file mode 100644 index a7ff013106f..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_18.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_18.RULE index 76d18455334..37031e3775f 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_18.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0 +--- + LICENSE {{PolyForm-Noncommercial-1.0.0}} https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_18.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_18.yml deleted file mode 100644 index a7ff013106f..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_2.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_2.RULE index b972619cf81..ddb4b00c2c7 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_2.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +--- + PolyForm-Noncommercial-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_2.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_2.yml deleted file mode 100644 index fea1a5d4af5..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_3.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_3.RULE index 538ee48fe26..a2b6739f353 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_3.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +--- + PolyForm-Non-commercial-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_3.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_3.yml deleted file mode 100644 index fea1a5d4af5..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_4.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_4.RULE index f49cb5f4590..a6be9be1515 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_4.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://polyformproject.org/licenses/noncommercial/1.0.0 +--- + [Polyform Noncommercial 1.0.0](https://polyformproject.org/licenses/noncommercial/1.0.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_4.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_4.yml deleted file mode 100644 index e34c64872a8..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://polyformproject.org/licenses/noncommercial/1.0.0 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_5.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_5.RULE index 6b8339fb827..9ba02680850 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_5.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +--- + [Polyform Noncommercial] \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_5.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_5.yml deleted file mode 100644 index fea1a5d4af5..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_6.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_6.RULE index b1421aadf81..730daf6701d 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_6.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +relevance: 100 +--- + [Polyform Non commercial] \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_6.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_6.yml deleted file mode 100644 index fea1a5d4af5..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_7.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_7.RULE index 8ba39672dc6..eac57d936fd 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_7.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://polyformproject.org/licenses/noncommercial/1.0.0 +--- + changed license from LGPL to [Polyform Noncommercial 1.0.0](https://polyformproject.org/licenses/noncommercial/1.0.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_7.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_7.yml deleted file mode 100644 index 42854b6b834..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://polyformproject.org/licenses/noncommercial/1.0.0 diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_8.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_8.RULE index 7c775614d74..8895f1df096 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_8.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PolyForm Noncommercial License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_8.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_8.yml deleted file mode 100644 index 63fb298a9b9..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_9.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_9.RULE index c56afd0089a..c1fbdce9b1e 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_9.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-noncommercial-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: PolyForm Noncommercial License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_9.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_9.yml deleted file mode 100644 index 63fb298a9b9..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_or_commercial-license_1.RULE index efd4aebadf3..623f32dd70d 100644 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_or_commercial-license_1.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-noncommercial-1.0.0 OR commercial-license +is_license_notice: yes +relevance: 100 +--- + dual license, Polyform Non Commercial / Commercial license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_or_commercial-license_1.yml deleted file mode 100644 index 54f3e86a78f..00000000000 --- a/src/licensedcode/data/rules/polyform-noncommercial-1.0.0_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-noncommercial-1.0.0 OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-shield-1.0.0_1.RULE b/src/licensedcode/data/rules/polyform-shield-1.0.0_1.RULE index f547e26e77c..653553457d4 100644 --- a/src/licensedcode/data/rules/polyform-shield-1.0.0_1.RULE +++ b/src/licensedcode/data/rules/polyform-shield-1.0.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: polyform-shield-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://polyformproject.org/licenses/shield/1.0.0 +--- + License [Polyform Shield](https://polyformproject.org/licenses/shield/1.0.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-shield-1.0.0_1.yml b/src/licensedcode/data/rules/polyform-shield-1.0.0_1.yml deleted file mode 100644 index 2793ec8e18a..00000000000 --- a/src/licensedcode/data/rules/polyform-shield-1.0.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-shield-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://polyformproject.org/licenses/shield/1.0.0 diff --git a/src/licensedcode/data/rules/polyform-shield-1.0.0_2.RULE b/src/licensedcode/data/rules/polyform-shield-1.0.0_2.RULE index a1f5d361715..46876ca591a 100644 --- a/src/licensedcode/data/rules/polyform-shield-1.0.0_2.RULE +++ b/src/licensedcode/data/rules/polyform-shield-1.0.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-shield-1.0.0 +is_license_reference: yes +relevance: 100 +--- + [Polyform Shield] \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-shield-1.0.0_2.yml b/src/licensedcode/data/rules/polyform-shield-1.0.0_2.yml deleted file mode 100644 index c2c0bbcd4e6..00000000000 --- a/src/licensedcode/data/rules/polyform-shield-1.0.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-shield-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-shield-1.0.0_3.RULE b/src/licensedcode/data/rules/polyform-shield-1.0.0_3.RULE index 9bec7a90789..d5bc06087ca 100644 --- a/src/licensedcode/data/rules/polyform-shield-1.0.0_3.RULE +++ b/src/licensedcode/data/rules/polyform-shield-1.0.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-shield-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://polyformproject.org/licenses/shield/1.0.0 +--- + [Polyform Shield](https://polyformproject.org/licenses/shield/1.0.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-shield-1.0.0_3.yml b/src/licensedcode/data/rules/polyform-shield-1.0.0_3.yml deleted file mode 100644 index 2793ec8e18a..00000000000 --- a/src/licensedcode/data/rules/polyform-shield-1.0.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-shield-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://polyformproject.org/licenses/shield/1.0.0 diff --git a/src/licensedcode/data/rules/polyform-shield-1.0.0_4.RULE b/src/licensedcode/data/rules/polyform-shield-1.0.0_4.RULE index 3d26b6967d7..423a83a56d9 100644 --- a/src/licensedcode/data/rules/polyform-shield-1.0.0_4.RULE +++ b/src/licensedcode/data/rules/polyform-shield-1.0.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-shield-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://polyformproject.org/licenses/shield/1.0.0/ +--- + https://polyformproject.org/licenses/shield/1.0.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-shield-1.0.0_4.yml b/src/licensedcode/data/rules/polyform-shield-1.0.0_4.yml deleted file mode 100644 index d3fca9a5754..00000000000 --- a/src/licensedcode/data/rules/polyform-shield-1.0.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-shield-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://polyformproject.org/licenses/shield/1.0.0/ diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_1.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_1.RULE index b3131199540..002a362b770 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_1.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://polyformproject.org/licenses/small-business/1.0.0 +--- + [Polyform-Small-Business-1.0.0](https://polyformproject.org/licenses/small-business/1.0.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_1.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_1.yml deleted file mode 100644 index 7967ac71043..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://polyformproject.org/licenses/small-business/1.0.0 diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_10.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_10.RULE index cdfa5be5843..77ac8166ef9 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_10.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + PolyForm-Small-Business-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_10.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_10.yml deleted file mode 100644 index 99eb16a6204..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_11.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_11.RULE index dd63017c65d..1d31ba3d897 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_11.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/PolyForm-Small-Business-1.0.0 +--- + https://licenses.nuget.org/PolyForm-Small-Business-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_11.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_11.yml deleted file mode 100644 index af972d30c17..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/PolyForm-Small-Business-1.0.0 diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_12.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_12.RULE index 669da085eec..35daf6eb36e 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_12.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/PolyForm-Small-Business-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_12.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_12.yml deleted file mode 100644 index 77d8d1c0b9f..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_13.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_13.RULE index e4609b843db..3bc5dd605e3 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_13.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PolyForm-Small-Business-1.0.0 +--- + {{PolyForm-Small-Business-1.0.0}} https://spdx.org/licenses/PolyForm-Small-Business-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_13.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_13.yml deleted file mode 100644 index 16904283a94..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PolyForm-Small-Business-1.0.0 diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_14.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_14.RULE index 5394cc43358..31ff751d248 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_14.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PolyForm-Small-Business-1.0.0 +--- + LICENSE {{PolyForm-Small-Business-1.0.0}} https://spdx.org/licenses/PolyForm-Small-Business-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_14.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_14.yml deleted file mode 100644 index 16904283a94..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PolyForm-Small-Business-1.0.0 diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_2.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_2.RULE index c78dd93d722..95453dc438c 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_2.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +relevance: 100 +--- + [Polyform-Small-Business \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_2.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_2.yml deleted file mode 100644 index 77d8d1c0b9f..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_3.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_3.RULE index e7ace42397a..bb64786b764 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_3.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PolyForm Small Business License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_3.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_3.yml deleted file mode 100644 index ed5d8f703e8..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_4.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_4.RULE index 05185e51d3a..c3e50d935a0 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_4.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: PolyForm Small Business License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_4.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_4.yml deleted file mode 100644 index ed5d8f703e8..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_5.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_5.RULE index aa74793b84a..444645b73ab 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_5.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PolyForm-Small-Business-1.0.0 PolyForm Small Business License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_5.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_5.yml deleted file mode 100644 index ed5d8f703e8..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_6.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_6.RULE index 249005a8c81..f8c6f5a9e28 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_6.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PolyForm Small Business License 1.0.0 PolyForm-Small-Business-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_6.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_6.yml deleted file mode 100644 index ed5d8f703e8..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_7.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_7.RULE index 6e2418681b8..959178c573d 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_7.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PolyForm-Small-Business-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_7.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_7.yml deleted file mode 100644 index ea88e4ec372..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_8.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_8.RULE index c0c45dea0eb..8e44df1352d 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_8.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PolyForm Small Business License 1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_8.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_8.yml deleted file mode 100644 index ea88e4ec372..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_9.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_9.RULE index f6e5e452a6f..241cf1e6b17 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_9.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: polyform-small-business-1.0.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: PolyForm-Small-Business-1.0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_9.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_9.yml deleted file mode 100644 index ea88e4ec372..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-small-business-1.0.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_or_polyform-free-trial-1.0.0_1.RULE b/src/licensedcode/data/rules/polyform-small-business-1.0.0_or_polyform-free-trial-1.0.0_1.RULE index 2f4f43290ed..a0645b636df 100644 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_or_polyform-free-trial-1.0.0_1.RULE +++ b/src/licensedcode/data/rules/polyform-small-business-1.0.0_or_polyform-free-trial-1.0.0_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: polyform-small-business-1.0.0 OR polyform-free-trial-1.0.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://polyformproject.org/licenses/free-trial/1.0.0 + - https://polyformproject.org/licenses/small-business/1.0.0 +--- + [Polyform-Small-Business-1.0.0](https://polyformproject.org/licenses/small-business/1.0.0) OR [Polyform-Free-Trial-1.0.0](https://polyformproject.org/licenses/free-trial/1.0.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/polyform-small-business-1.0.0_or_polyform-free-trial-1.0.0_1.yml b/src/licensedcode/data/rules/polyform-small-business-1.0.0_or_polyform-free-trial-1.0.0_1.yml deleted file mode 100644 index 2bfad7c555b..00000000000 --- a/src/licensedcode/data/rules/polyform-small-business-1.0.0_or_polyform-free-trial-1.0.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: polyform-small-business-1.0.0 OR polyform-free-trial-1.0.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://polyformproject.org/licenses/free-trial/1.0.0 - - https://polyformproject.org/licenses/small-business/1.0.0 diff --git a/src/licensedcode/data/rules/postgresql_1.RULE b/src/licensedcode/data/rules/postgresql_1.RULE index b35f663ab19..e199662abac 100644 --- a/src/licensedcode/data/rules/postgresql_1.RULE +++ b/src/licensedcode/data/rules/postgresql_1.RULE @@ -1 +1,10 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +notes: http://www.postgresql.org/about/licence +ignorable_urls: + - http://www.postgresql.org/about/licence +--- + http://www.postgresql.org/about/licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_1.yml b/src/licensedcode/data/rules/postgresql_1.yml deleted file mode 100644 index 577ab7ed264..00000000000 --- a/src/licensedcode/data/rules/postgresql_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -notes: http://www.postgresql.org/about/licence -ignorable_urls: - - http://www.postgresql.org/about/licence diff --git a/src/licensedcode/data/rules/postgresql_10.RULE b/src/licensedcode/data/rules/postgresql_10.RULE index f3235628bcd..94b33cf0366 100644 --- a/src/licensedcode/data/rules/postgresql_10.RULE +++ b/src/licensedcode/data/rules/postgresql_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 100 +--- + License: BSD Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a diff --git a/src/licensedcode/data/rules/postgresql_10.yml b/src/licensedcode/data/rules/postgresql_10.yml deleted file mode 100644 index 53b0aa8ba7c..00000000000 --- a/src/licensedcode/data/rules/postgresql_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_11.RULE b/src/licensedcode/data/rules/postgresql_11.RULE index 2ec8265e198..a1bed0582fa 100644 --- a/src/licensedcode/data/rules/postgresql_11.RULE +++ b/src/licensedcode/data/rules/postgresql_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: postgresql +is_license_text: yes +--- + License: BSD Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement @@ -14,4 +19,4 @@ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO - PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_11.yml b/src/licensedcode/data/rules/postgresql_11.yml deleted file mode 100644 index 992dd829e3e..00000000000 --- a/src/licensedcode/data/rules/postgresql_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: postgresql -is_license_text: yes diff --git a/src/licensedcode/data/rules/postgresql_12.RULE b/src/licensedcode/data/rules/postgresql_12.RULE index f4deae0088b..240692abe50 100644 --- a/src/licensedcode/data/rules/postgresql_12.RULE +++ b/src/licensedcode/data/rules/postgresql_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice @@ -14,4 +20,4 @@ POSSIBILITY OF SUCH DAMAGE. NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND HAS NO OBLIGATIONS TO PROVIDE -MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_12.yml b/src/licensedcode/data/rules/postgresql_12.yml deleted file mode 100644 index 53b0aa8ba7c..00000000000 --- a/src/licensedcode/data/rules/postgresql_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_13.RULE b/src/licensedcode/data/rules/postgresql_13.RULE index cd69cacf33a..5b9b61e1699 100644 --- a/src/licensedcode/data/rules/postgresql_13.RULE +++ b/src/licensedcode/data/rules/postgresql_13.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/postgresql +--- + https://choosealicense.com/licenses/postgresql \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_13.yml b/src/licensedcode/data/rules/postgresql_13.yml deleted file mode 100644 index 9dc7f986960..00000000000 --- a/src/licensedcode/data/rules/postgresql_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/postgresql diff --git a/src/licensedcode/data/rules/postgresql_14.RULE b/src/licensedcode/data/rules/postgresql_14.RULE index da493b34bef..e5e071f0897 100644 --- a/src/licensedcode/data/rules/postgresql_14.RULE +++ b/src/licensedcode/data/rules/postgresql_14.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/postgresql +--- + http://choosealicense.com/licenses/postgresql \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_14.yml b/src/licensedcode/data/rules/postgresql_14.yml deleted file mode 100644 index 5263b81d759..00000000000 --- a/src/licensedcode/data/rules/postgresql_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/postgresql diff --git a/src/licensedcode/data/rules/postgresql_15.RULE b/src/licensedcode/data/rules/postgresql_15.RULE index e9167f885a4..964b2aaef1d 100644 --- a/src/licensedcode/data/rules/postgresql_15.RULE +++ b/src/licensedcode/data/rules/postgresql_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this diff --git a/src/licensedcode/data/rules/postgresql_15.yml b/src/licensedcode/data/rules/postgresql_15.yml deleted file mode 100644 index 53b0aa8ba7c..00000000000 --- a/src/licensedcode/data/rules/postgresql_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_16.RULE b/src/licensedcode/data/rules/postgresql_16.RULE index 73cbb6ff028..e6b91b87ee6 100644 --- a/src/licensedcode/data/rules/postgresql_16.RULE +++ b/src/licensedcode/data/rules/postgresql_16.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/npgsql/npgsql/blob/develop/LICENSE.txt +--- + https://github.com/npgsql/npgsql/blob/develop/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_16.yml b/src/licensedcode/data/rules/postgresql_16.yml deleted file mode 100644 index c814fba4010..00000000000 --- a/src/licensedcode/data/rules/postgresql_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/npgsql/npgsql/blob/develop/LICENSE.txt diff --git a/src/licensedcode/data/rules/postgresql_17.RULE b/src/licensedcode/data/rules/postgresql_17.RULE index 96b1c0e7912..1d4de786fb9 100644 --- a/src/licensedcode/data/rules/postgresql_17.RULE +++ b/src/licensedcode/data/rules/postgresql_17.RULE @@ -1 +1,7 @@ -# This software is released under the PostgreSQL Licence +--- +license_expression: postgresql +is_license_notice: yes +relevance: 100 +--- + +# This software is released under the PostgreSQL Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_17.yml b/src/licensedcode/data/rules/postgresql_17.yml deleted file mode 100644 index cf72ed98ecf..00000000000 --- a/src/licensedcode/data/rules/postgresql_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_18.RULE b/src/licensedcode/data/rules/postgresql_18.RULE index bfae7766783..4c9dca49bf9 100644 --- a/src/licensedcode/data/rules/postgresql_18.RULE +++ b/src/licensedcode/data/rules/postgresql_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above diff --git a/src/licensedcode/data/rules/postgresql_18.yml b/src/licensedcode/data/rules/postgresql_18.yml deleted file mode 100644 index 53b0aa8ba7c..00000000000 --- a/src/licensedcode/data/rules/postgresql_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_19.RULE b/src/licensedcode/data/rules/postgresql_19.RULE index e73eb815c79..69e4d30f38d 100644 --- a/src/licensedcode/data/rules/postgresql_19.RULE +++ b/src/licensedcode/data/rules/postgresql_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above diff --git a/src/licensedcode/data/rules/postgresql_19.yml b/src/licensedcode/data/rules/postgresql_19.yml deleted file mode 100644 index 53b0aa8ba7c..00000000000 --- a/src/licensedcode/data/rules/postgresql_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_2.RULE b/src/licensedcode/data/rules/postgresql_2.RULE index 404647918d0..c622e5ae97a 100644 --- a/src/licensedcode/data/rules/postgresql_2.RULE +++ b/src/licensedcode/data/rules/postgresql_2.RULE @@ -1 +1,7 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +--- + PostgreSQL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_2.yml b/src/licensedcode/data/rules/postgresql_2.yml deleted file mode 100644 index 352ead6dbca..00000000000 --- a/src/licensedcode/data/rules/postgresql_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_20.RULE b/src/licensedcode/data/rules/postgresql_20.RULE index cba337abf72..3393af76513 100644 --- a/src/licensedcode/data/rules/postgresql_20.RULE +++ b/src/licensedcode/data/rules/postgresql_20.RULE @@ -1 +1,7 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +--- + PostgreSQL License (MIT Variant) \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_20.yml b/src/licensedcode/data/rules/postgresql_20.yml deleted file mode 100644 index 352ead6dbca..00000000000 --- a/src/licensedcode/data/rules/postgresql_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_21.RULE b/src/licensedcode/data/rules/postgresql_21.RULE index 2ef13f0a938..00d4b1a94ed 100644 --- a/src/licensedcode/data/rules/postgresql_21.RULE +++ b/src/licensedcode/data/rules/postgresql_21.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/PostgreSQL_License +--- + https://fedoraproject.org/wiki/Licensing/PostgreSQL_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_21.yml b/src/licensedcode/data/rules/postgresql_21.yml deleted file mode 100644 index 896fe862a7d..00000000000 --- a/src/licensedcode/data/rules/postgresql_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/PostgreSQL_License diff --git a/src/licensedcode/data/rules/postgresql_22.RULE b/src/licensedcode/data/rules/postgresql_22.RULE index 75b0e7c5bc8..0aeae32cf92 100644 --- a/src/licensedcode/data/rules/postgresql_22.RULE +++ b/src/licensedcode/data/rules/postgresql_22.RULE @@ -1,3 +1,15 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Portions Copyright (c) 1994, The Regents of the University of California + - Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group +ignorable_holders: + - PostgreSQL Global Development Group + - The Regents of the University of California +--- + PostgreSQL Database Management System (formerly known as Postgres, then as Postgres95) diff --git a/src/licensedcode/data/rules/postgresql_22.yml b/src/licensedcode/data/rules/postgresql_22.yml deleted file mode 100644 index 06177927419..00000000000 --- a/src/licensedcode/data/rules/postgresql_22.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Portions Copyright (c) 1994, The Regents of the University of California - - Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group -ignorable_holders: - - PostgreSQL Global Development Group - - The Regents of the University of California diff --git a/src/licensedcode/data/rules/postgresql_23.RULE b/src/licensedcode/data/rules/postgresql_23.RULE index 352ad7894f5..8c08670c74e 100644 --- a/src/licensedcode/data/rules/postgresql_23.RULE +++ b/src/licensedcode/data/rules/postgresql_23.RULE @@ -1 +1,8 @@ +--- +license_expression: postgresql +is_license_notice: yes +relevance: 100 +notes: https://github.com/postgrespro/rum/blob/3d331aa8faaff06e48172084201f1907d6eed471/LICENSE +--- + released under the PostgreSQL License, a liberal Open Source license, similar to the BSD or MIT licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_23.yml b/src/licensedcode/data/rules/postgresql_23.yml deleted file mode 100644 index 7d950dcaf91..00000000000 --- a/src/licensedcode/data/rules/postgresql_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: postgresql -is_license_notice: yes -relevance: 100 -notes: https://github.com/postgrespro/rum/blob/3d331aa8faaff06e48172084201f1907d6eed471/LICENSE diff --git a/src/licensedcode/data/rules/postgresql_24.RULE b/src/licensedcode/data/rules/postgresql_24.RULE index 0e9b6e74b0e..907c073d43e 100644 --- a/src/licensedcode/data/rules/postgresql_24.RULE +++ b/src/licensedcode/data/rules/postgresql_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 100 +notes: https://github.com/postgrespro/pg_probackup/blob/cde244e1bab9f25e03380f17c8f7d921f7f2e9c5/LICENSE +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this diff --git a/src/licensedcode/data/rules/postgresql_24.yml b/src/licensedcode/data/rules/postgresql_24.yml deleted file mode 100644 index 841d7a6dce0..00000000000 --- a/src/licensedcode/data/rules/postgresql_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 100 -notes: https://github.com/postgrespro/pg_probackup/blob/cde244e1bab9f25e03380f17c8f7d921f7f2e9c5/LICENSE diff --git a/src/licensedcode/data/rules/postgresql_25.RULE b/src/licensedcode/data/rules/postgresql_25.RULE index 72ef8d10965..4c9394cafc1 100644 --- a/src/licensedcode/data/rules/postgresql_25.RULE +++ b/src/licensedcode/data/rules/postgresql_25.RULE @@ -1,2 +1,8 @@ +--- +license_expression: postgresql +is_license_notice: yes +relevance: 99 +--- + Subsequent modifications to the code by the PostgreSQL project follow the same license terms as the rest of PostgreSQL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_25.yml b/src/licensedcode/data/rules/postgresql_25.yml deleted file mode 100644 index 9439f9ec327..00000000000 --- a/src/licensedcode/data/rules/postgresql_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/postgresql_26.RULE b/src/licensedcode/data/rules/postgresql_26.RULE index ccbeb3a0b36..2f2323d602b 100644 --- a/src/licensedcode/data/rules/postgresql_26.RULE +++ b/src/licensedcode/data/rules/postgresql_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 95 +notes: Seen in pgadmin. Relevance discounted becasue it is not verbatim the upstream postgresql +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and diff --git a/src/licensedcode/data/rules/postgresql_26.yml b/src/licensedcode/data/rules/postgresql_26.yml deleted file mode 100644 index c6d8584bcb4..00000000000 --- a/src/licensedcode/data/rules/postgresql_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 95 -notes: Seen in pgadmin. Relevance discounted becasue it is not verbatim the upstream postgresql diff --git a/src/licensedcode/data/rules/postgresql_27.RULE b/src/licensedcode/data/rules/postgresql_27.RULE index 7fa72ac58e0..3841629c00a 100644 --- a/src/licensedcode/data/rules/postgresql_27.RULE +++ b/src/licensedcode/data/rules/postgresql_27.RULE @@ -1 +1,10 @@ +--- +license_expression: postgresql +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: PostgreSQL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_27.yml b/src/licensedcode/data/rules/postgresql_27.yml deleted file mode 100644 index 2fb7e81071e..00000000000 --- a/src/licensedcode/data/rules/postgresql_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/postgresql_28.RULE b/src/licensedcode/data/rules/postgresql_28.RULE index 7e4303095d2..b75f1c55377 100644 --- a/src/licensedcode/data/rules/postgresql_28.RULE +++ b/src/licensedcode/data/rules/postgresql_28.RULE @@ -1 +1,10 @@ +--- +license_expression: postgresql +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PostgreSQL PostgreSQL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_28.yml b/src/licensedcode/data/rules/postgresql_28.yml deleted file mode 100644 index 2fb7e81071e..00000000000 --- a/src/licensedcode/data/rules/postgresql_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/postgresql_29.RULE b/src/licensedcode/data/rules/postgresql_29.RULE index ae30ba2203f..e0e0066714b 100644 --- a/src/licensedcode/data/rules/postgresql_29.RULE +++ b/src/licensedcode/data/rules/postgresql_29.RULE @@ -1 +1,10 @@ +--- +license_expression: postgresql +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PostgreSQL License PostgreSQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_29.yml b/src/licensedcode/data/rules/postgresql_29.yml deleted file mode 100644 index 2fb7e81071e..00000000000 --- a/src/licensedcode/data/rules/postgresql_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/postgresql_3.RULE b/src/licensedcode/data/rules/postgresql_3.RULE index 4a73e6666a7..caf2f369ed7 100644 --- a/src/licensedcode/data/rules/postgresql_3.RULE +++ b/src/licensedcode/data/rules/postgresql_3.RULE @@ -1 +1,9 @@ -http://www.opensource.org/licenses/postgresql +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/postgresql +--- + +http://www.opensource.org/licenses/postgresql \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_3.yml b/src/licensedcode/data/rules/postgresql_3.yml deleted file mode 100644 index 44d60e3aa28..00000000000 --- a/src/licensedcode/data/rules/postgresql_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/postgresql diff --git a/src/licensedcode/data/rules/postgresql_30.RULE b/src/licensedcode/data/rules/postgresql_30.RULE index 1bceb0bdd78..39235bc7102 100644 --- a/src/licensedcode/data/rules/postgresql_30.RULE +++ b/src/licensedcode/data/rules/postgresql_30.RULE @@ -1 +1,10 @@ +--- +license_expression: postgresql +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PostgreSQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_30.yml b/src/licensedcode/data/rules/postgresql_30.yml deleted file mode 100644 index bc413204d13..00000000000 --- a/src/licensedcode/data/rules/postgresql_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: postgresql -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/postgresql_31.RULE b/src/licensedcode/data/rules/postgresql_31.RULE index 1ca9a6d6d66..24cb02349a8 100644 --- a/src/licensedcode/data/rules/postgresql_31.RULE +++ b/src/licensedcode/data/rules/postgresql_31.RULE @@ -1 +1,10 @@ +--- +license_expression: postgresql +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PostgreSQL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_31.yml b/src/licensedcode/data/rules/postgresql_31.yml deleted file mode 100644 index bc413204d13..00000000000 --- a/src/licensedcode/data/rules/postgresql_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: postgresql -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/postgresql_32.RULE b/src/licensedcode/data/rules/postgresql_32.RULE index 8165555ee84..b529c3791cc 100644 --- a/src/licensedcode/data/rules/postgresql_32.RULE +++ b/src/licensedcode/data/rules/postgresql_32.RULE @@ -1 +1,10 @@ +--- +license_expression: postgresql +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: PostgreSQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_32.yml b/src/licensedcode/data/rules/postgresql_32.yml deleted file mode 100644 index bc413204d13..00000000000 --- a/src/licensedcode/data/rules/postgresql_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: postgresql -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/postgresql_33.RULE b/src/licensedcode/data/rules/postgresql_33.RULE index 4b181ce1ef1..d5ad2347122 100644 --- a/src/licensedcode/data/rules/postgresql_33.RULE +++ b/src/licensedcode/data/rules/postgresql_33.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/PostgreSQL +--- + https://licenses.nuget.org/PostgreSQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_33.yml b/src/licensedcode/data/rules/postgresql_33.yml deleted file mode 100644 index 30337676a01..00000000000 --- a/src/licensedcode/data/rules/postgresql_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/PostgreSQL diff --git a/src/licensedcode/data/rules/postgresql_34.RULE b/src/licensedcode/data/rules/postgresql_34.RULE index e44cc06161a..fda52cb4f25 100644 --- a/src/licensedcode/data/rules/postgresql_34.RULE +++ b/src/licensedcode/data/rules/postgresql_34.RULE @@ -1 +1,7 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/PostgreSQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_34.yml b/src/licensedcode/data/rules/postgresql_34.yml deleted file mode 100644 index 352ead6dbca..00000000000 --- a/src/licensedcode/data/rules/postgresql_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_35.RULE b/src/licensedcode/data/rules/postgresql_35.RULE index 201bff16fe2..8c42951ae17 100644 --- a/src/licensedcode/data/rules/postgresql_35.RULE +++ b/src/licensedcode/data/rules/postgresql_35.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PostgreSQL +--- + LICENSE {{PostgreSQL}} https://spdx.org/licenses/PostgreSQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_35.yml b/src/licensedcode/data/rules/postgresql_35.yml deleted file mode 100644 index d4941ef6f09..00000000000 --- a/src/licensedcode/data/rules/postgresql_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PostgreSQL diff --git a/src/licensedcode/data/rules/postgresql_36.RULE b/src/licensedcode/data/rules/postgresql_36.RULE index 05019360727..7b750e3e5fd 100644 --- a/src/licensedcode/data/rules/postgresql_36.RULE +++ b/src/licensedcode/data/rules/postgresql_36.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PostgreSQL +--- + {{PostgreSQL}} https://spdx.org/licenses/PostgreSQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_36.yml b/src/licensedcode/data/rules/postgresql_36.yml deleted file mode 100644 index d4941ef6f09..00000000000 --- a/src/licensedcode/data/rules/postgresql_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PostgreSQL diff --git a/src/licensedcode/data/rules/postgresql_4.RULE b/src/licensedcode/data/rules/postgresql_4.RULE index 7fde5ed2949..d1dda21df55 100644 --- a/src/licensedcode/data/rules/postgresql_4.RULE +++ b/src/licensedcode/data/rules/postgresql_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: postgresql +is_license_notice: yes +notes: http://www.postgresql.org/about/licence +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two diff --git a/src/licensedcode/data/rules/postgresql_4.yml b/src/licensedcode/data/rules/postgresql_4.yml deleted file mode 100644 index 92fc838d9cd..00000000000 --- a/src/licensedcode/data/rules/postgresql_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_notice: yes -notes: http://www.postgresql.org/about/licence diff --git a/src/licensedcode/data/rules/postgresql_5.RULE b/src/licensedcode/data/rules/postgresql_5.RULE index 5e2d4613471..e3edcc4f496 100644 --- a/src/licensedcode/data/rules/postgresql_5.RULE +++ b/src/licensedcode/data/rules/postgresql_5.RULE @@ -1 +1,7 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 99 +--- + same license terms as the rest of PostgreSQL \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_5.yml b/src/licensedcode/data/rules/postgresql_5.yml deleted file mode 100644 index 6223f0eacf7..00000000000 --- a/src/licensedcode/data/rules/postgresql_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/postgresql_6.RULE b/src/licensedcode/data/rules/postgresql_6.RULE index 0c9e5049a0a..57b0f580d8f 100644 --- a/src/licensedcode/data/rules/postgresql_6.RULE +++ b/src/licensedcode/data/rules/postgresql_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: postgresql +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This program is open source, licensed under the PostgreSQL Licence. -For license terms, see the LICENSE file. +For license terms, see the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_6.yml b/src/licensedcode/data/rules/postgresql_6.yml deleted file mode 100644 index 359aa9fbc56..00000000000 --- a/src/licensedcode/data/rules/postgresql_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/postgresql_7.RULE b/src/licensedcode/data/rules/postgresql_7.RULE index b46e388f0fc..9c991bcecff 100644 --- a/src/licensedcode/data/rules/postgresql_7.RULE +++ b/src/licensedcode/data/rules/postgresql_7.RULE @@ -1,2 +1,10 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 90 +minimum_coverage: 99 +notes: This is a shorttruncated notice found in a few odd places, including older Linux kernels +--- + (Any * use permitted, subject to terms of PostgreSQL license; see.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_7.yml b/src/licensedcode/data/rules/postgresql_7.yml deleted file mode 100644 index 04f739f900c..00000000000 --- a/src/licensedcode/data/rules/postgresql_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 90 -minimum_coverage: 99 -notes: This is a shorttruncated notice found in a few odd places, including older Linux kernels diff --git a/src/licensedcode/data/rules/postgresql_8.RULE b/src/licensedcode/data/rules/postgresql_8.RULE index 93b04e94bcf..da101c957a2 100644 --- a/src/licensedcode/data/rules/postgresql_8.RULE +++ b/src/licensedcode/data/rules/postgresql_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: postgresql +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this @@ -13,4 +18,4 @@ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO - PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_8.yml b/src/licensedcode/data/rules/postgresql_8.yml deleted file mode 100644 index 992dd829e3e..00000000000 --- a/src/licensedcode/data/rules/postgresql_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: postgresql -is_license_text: yes diff --git a/src/licensedcode/data/rules/postgresql_9.RULE b/src/licensedcode/data/rules/postgresql_9.RULE index d13664aaa26..6dfc909ab2c 100644 --- a/src/licensedcode/data/rules/postgresql_9.RULE +++ b/src/licensedcode/data/rules/postgresql_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: postgresql +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and diff --git a/src/licensedcode/data/rules/postgresql_9.yml b/src/licensedcode/data/rules/postgresql_9.yml deleted file mode 100644 index 53b0aa8ba7c..00000000000 --- a/src/licensedcode/data/rules/postgresql_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/postgresql_url_1.RULE b/src/licensedcode/data/rules/postgresql_url_1.RULE index 1ccb1c97954..4985a5d1b74 100644 --- a/src/licensedcode/data/rules/postgresql_url_1.RULE +++ b/src/licensedcode/data/rules/postgresql_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/postgresql +--- + https://spdx.org/licenses/postgresql \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_url_1.yml b/src/licensedcode/data/rules/postgresql_url_1.yml deleted file mode 100644 index a2c971506ac..00000000000 --- a/src/licensedcode/data/rules/postgresql_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/postgresql diff --git a/src/licensedcode/data/rules/postgresql_url_2.RULE b/src/licensedcode/data/rules/postgresql_url_2.RULE index 18abf7e4d2b..beb4f0c3756 100644 --- a/src/licensedcode/data/rules/postgresql_url_2.RULE +++ b/src/licensedcode/data/rules/postgresql_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/postgresql.html +--- + https://spdx.org/licenses/postgresql.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_url_2.yml b/src/licensedcode/data/rules/postgresql_url_2.yml deleted file mode 100644 index cf2ddfea8c0..00000000000 --- a/src/licensedcode/data/rules/postgresql_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/postgresql.html diff --git a/src/licensedcode/data/rules/postgresql_url_glc_223.RULE b/src/licensedcode/data/rules/postgresql_url_glc_223.RULE index 6b312852947..08c93c07b43 100644 --- a/src/licensedcode/data/rules/postgresql_url_glc_223.RULE +++ b/src/licensedcode/data/rules/postgresql_url_glc_223.RULE @@ -1 +1,9 @@ +--- +license_expression: postgresql +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/postgresql +--- + https://www.opensource.org/licenses/postgresql \ No newline at end of file diff --git a/src/licensedcode/data/rules/postgresql_url_glc_223.yml b/src/licensedcode/data/rules/postgresql_url_glc_223.yml deleted file mode 100644 index 4b8a420e980..00000000000 --- a/src/licensedcode/data/rules/postgresql_url_glc_223.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: postgresql -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/postgresql diff --git a/src/licensedcode/data/rules/proprietary-01_10.RULE b/src/licensedcode/data/rules/proprietary-01_10.RULE index a666f56fb1a..d4a54596419 100644 --- a/src/licensedcode/data/rules/proprietary-01_10.RULE +++ b/src/licensedcode/data/rules/proprietary-01_10.RULE @@ -1,4 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This software contains proprietary and confidential information of and its suppliers. Use, disclosure or reproduction is prohibited without the prior express written -consent of +consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-01_10.yml b/src/licensedcode/data/rules/proprietary-01_10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-01_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-01_11.RULE b/src/licensedcode/data/rules/proprietary-01_11.RULE index 30178d359fa..049c382897c 100644 --- a/src/licensedcode/data/rules/proprietary-01_11.RULE +++ b/src/licensedcode/data/rules/proprietary-01_11.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 99 +--- + As an unpublished work pursuant to Title 17 of the United *** - *** States Code. All rights reserved. \ No newline at end of file + *** States Code. All rights reserved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-01_11.yml b/src/licensedcode/data/rules/proprietary-01_11.yml deleted file mode 100644 index a1a82e33576..00000000000 --- a/src/licensedcode/data/rules/proprietary-01_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary-01_12.RULE b/src/licensedcode/data/rules/proprietary-01_12.RULE index 22aebbfd9d4..e6c0c84a880 100644 --- a/src/licensedcode/data/rules/proprietary-01_12.RULE +++ b/src/licensedcode/data/rules/proprietary-01_12.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + As an unpublished work pursuant to Title 17 of the United *** - *** States Code. \ No newline at end of file + *** States Code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-01_12.yml b/src/licensedcode/data/rules/proprietary-01_12.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-01_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-02_10.RULE b/src/licensedcode/data/rules/proprietary-02_10.RULE index 3678f393aee..00fa9c2296a 100644 --- a/src/licensedcode/data/rules/proprietary-02_10.RULE +++ b/src/licensedcode/data/rules/proprietary-02_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Unpublished rights reserved under the copyright laws of the United States. The software contained on this media is proprietary diff --git a/src/licensedcode/data/rules/proprietary-02_10.yml b/src/licensedcode/data/rules/proprietary-02_10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-02_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-03.RULE b/src/licensedcode/data/rules/proprietary-03.RULE index b604c9d21f7..270c4e5f151 100644 --- a/src/licensedcode/data/rules/proprietary-03.RULE +++ b/src/licensedcode/data/rules/proprietary-03.RULE @@ -1,6 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Registered in U.S. Patent and Trademark Office. * Confidential computer software. Valid license from or authorized * sublicensor required for possession, use or copying. Consistent with * DFAR/FAR # Commercial Computer Software, Computer Software * Documentation, and Technical Data for Commercial Items are licensed to -* the U.S. Government under vendor's standard commercial license. +* the U.S. Government under vendor's standard commercial license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-03.yml b/src/licensedcode/data/rules/proprietary-03.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-03.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-04_10.RULE b/src/licensedcode/data/rules/proprietary-04_10.RULE index fe6b2812cc8..fd2252fe099 100644 --- a/src/licensedcode/data/rules/proprietary-04_10.RULE +++ b/src/licensedcode/data/rules/proprietary-04_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * The software and information contained herein are proprietary to, and * comprise valuable trade secrets of which * intends to preserve as trade secrets such software and information. diff --git a/src/licensedcode/data/rules/proprietary-04_10.yml b/src/licensedcode/data/rules/proprietary-04_10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-04_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-05_10.RULE b/src/licensedcode/data/rules/proprietary-05_10.RULE index 5d48d52f8db..ed076cd0f21 100644 --- a/src/licensedcode/data/rules/proprietary-05_10.RULE +++ b/src/licensedcode/data/rules/proprietary-05_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF The copyright notice above does not evidence any actual or intended publication of such source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-05_10.yml b/src/licensedcode/data/rules/proprietary-05_10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-05_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-06.RULE b/src/licensedcode/data/rules/proprietary-06.RULE index 1f4fa2c36a1..33c444a847f 100644 --- a/src/licensedcode/data/rules/proprietary-06.RULE +++ b/src/licensedcode/data/rules/proprietary-06.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Licensed Materials - Property of US Government Users Restricted Rights - Use, duplication or -disclosure restricted by +disclosure restricted by \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-06.yml b/src/licensedcode/data/rules/proprietary-06.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-06.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-06_10.RULE b/src/licensedcode/data/rules/proprietary-06_10.RULE index 970f44a9a04..938a57c5f0c 100644 --- a/src/licensedcode/data/rules/proprietary-06_10.RULE +++ b/src/licensedcode/data/rules/proprietary-06_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Licensed Materials - Property of US Government Users Restricted Rights - Use, duplication or -disclosure restricted by {} with \ No newline at end of file +disclosure restricted by {} with \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-06_10.yml b/src/licensedcode/data/rules/proprietary-06_10.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-06_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-07.RULE b/src/licensedcode/data/rules/proprietary-07.RULE index d496d75ab34..1190600ad75 100644 --- a/src/licensedcode/data/rules/proprietary-07.RULE +++ b/src/licensedcode/data/rules/proprietary-07.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Patents Pending NOTICE: All information contained herein is the property of diff --git a/src/licensedcode/data/rules/proprietary-07.yml b/src/licensedcode/data/rules/proprietary-07.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-07.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-07_10.RULE b/src/licensedcode/data/rules/proprietary-07_10.RULE index 2ff26a64dd5..78077789db1 100644 --- a/src/licensedcode/data/rules/proprietary-07_10.RULE +++ b/src/licensedcode/data/rules/proprietary-07_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Patents Pending NOTICE: All information contained herein is the property of @@ -10,4 +15,4 @@ are protected as trade secrets, and are made available only to dissemination of this software is strictly forbidden unless prior written permission is obtained from . - are registered trademarks of + are registered trademarks of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-07_10.yml b/src/licensedcode/data/rules/proprietary-07_10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-07_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-08.RULE b/src/licensedcode/data/rules/proprietary-08.RULE index 1f207adfad2..d5bc37980a3 100644 --- a/src/licensedcode/data/rules/proprietary-08.RULE +++ b/src/licensedcode/data/rules/proprietary-08.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + These coded instructions, statements, and computer programs contain unpublished proprietary information of , and are protected by Federal copyright law. They may not be disclosed diff --git a/src/licensedcode/data/rules/proprietary-08.yml b/src/licensedcode/data/rules/proprietary-08.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-08.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-08_1.RULE b/src/licensedcode/data/rules/proprietary-08_1.RULE index 73fd610c8da..c60b7f9519d 100644 --- a/src/licensedcode/data/rules/proprietary-08_1.RULE +++ b/src/licensedcode/data/rules/proprietary-08_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The material contained herein may not be reproduced in whole or in part, without the prior written consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-08_1.yml b/src/licensedcode/data/rules/proprietary-08_1.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-08_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-08_3.RULE b/src/licensedcode/data/rules/proprietary-08_3.RULE index 2523c9a8818..2ddd152c53d 100644 --- a/src/licensedcode/data/rules/proprietary-08_3.RULE +++ b/src/licensedcode/data/rules/proprietary-08_3.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +--- + Reproduction or disassembly of embodied algorithms or database prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-08_3.yml b/src/licensedcode/data/rules/proprietary-08_3.yml deleted file mode 100644 index 2b4b113d8c1..00000000000 --- a/src/licensedcode/data/rules/proprietary-08_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/proprietary-10.RULE b/src/licensedcode/data/rules/proprietary-10.RULE index d7ceb146021..66559d944e8 100644 --- a/src/licensedcode/data/rules/proprietary-10.RULE +++ b/src/licensedcode/data/rules/proprietary-10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIES diff --git a/src/licensedcode/data/rules/proprietary-10.yml b/src/licensedcode/data/rules/proprietary-10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-10_10.RULE b/src/licensedcode/data/rules/proprietary-10_10.RULE index 060b1388c0b..395746ea31a 100644 --- a/src/licensedcode/data/rules/proprietary-10_10.RULE +++ b/src/licensedcode/data/rules/proprietary-10_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIES diff --git a/src/licensedcode/data/rules/proprietary-10_10.yml b/src/licensedcode/data/rules/proprietary-10_10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-10_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_1.RULE b/src/licensedcode/data/rules/proprietary-license_1.RULE index 47db6fa1917..380facbccf7 100644 --- a/src/licensedcode/data/rules/proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Citation Requirements You are required to cite our papers in any publications that use this code. The primary citation corresponding to this software is [1]. The papers that diff --git a/src/licensedcode/data/rules/proprietary-license_1.yml b/src/licensedcode/data/rules/proprietary-license_1.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_10.RULE b/src/licensedcode/data/rules/proprietary-license_10.RULE index 42b7c6475f6..63f2dfda4ee 100644 --- a/src/licensedcode/data/rules/proprietary-license_10.RULE +++ b/src/licensedcode/data/rules/proprietary-license_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + 10. Usage of these files are allowed by the legal owner under these terms diff --git a/src/licensedcode/data/rules/proprietary-license_10.yml b/src/licensedcode/data/rules/proprietary-license_10.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_100.RULE b/src/licensedcode/data/rules/proprietary-license_100.RULE index 105ec43aaf3..76f8018bcc1 100644 --- a/src/licensedcode/data/rules/proprietary-license_100.RULE +++ b/src/licensedcode/data/rules/proprietary-license_100.RULE @@ -1,2 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.codesynthesis.com/products/xsd/license.xhtml +--- + The C++ bindings need to be generated using an XSD Commercial Proprietary License. See http://www.codesynthesis.com/products/xsd/license.xhtml for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_100.yml b/src/licensedcode/data/rules/proprietary-license_100.yml deleted file mode 100644 index 0e722d26eb4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.codesynthesis.com/products/xsd/license.xhtml diff --git a/src/licensedcode/data/rules/proprietary-license_101.RULE b/src/licensedcode/data/rules/proprietary-license_101.RULE index 330f9cc0f59..3b26f50dfbc 100644 --- a/src/licensedcode/data/rules/proprietary-license_101.RULE +++ b/src/licensedcode/data/rules/proprietary-license_101.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + / # You are free to use, change, or redistribute the code in any way you wish for / # non-commercial purposes, but please maintain the name of the original author. / # This code comes with no warranty of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_101.yml b/src/licensedcode/data/rules/proprietary-license_101.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_102.RULE b/src/licensedcode/data/rules/proprietary-license_102.RULE index 89e6fe402a1..9fb50883805 100644 --- a/src/licensedcode/data/rules/proprietary-license_102.RULE +++ b/src/licensedcode/data/rules/proprietary-license_102.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This license is derived from the MIT License, as amended to limit the impact of the unethical use of open source software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_102.yml b/src/licensedcode/data/rules/proprietary-license_102.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_103.RULE b/src/licensedcode/data/rules/proprietary-license_103.RULE index cbe07eb764b..be88a01677e 100644 --- a/src/licensedcode/data/rules/proprietary-license_103.RULE +++ b/src/licensedcode/data/rules/proprietary-license_103.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + The programs * in MFB are available free of charge to any interested party. * The sale, resale, or use of these program for profit without the diff --git a/src/licensedcode/data/rules/proprietary-license_103.yml b/src/licensedcode/data/rules/proprietary-license_103.yml deleted file mode 100644 index 6ab5160972d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_103.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/proprietary-license_104.RULE b/src/licensedcode/data/rules/proprietary-license_104.RULE index 3c95eaa03df..7e163c01124 100644 --- a/src/licensedcode/data/rules/proprietary-license_104.RULE +++ b/src/licensedcode/data/rules/proprietary-license_104.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + * The sale, resale, or use of these program for profit without the * express written consent of is forbidden. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_104.yml b/src/licensedcode/data/rules/proprietary-license_104.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_105.RULE b/src/licensedcode/data/rules/proprietary-license_105.RULE index 376d8955692..385ec2b7949 100644 --- a/src/licensedcode/data/rules/proprietary-license_105.RULE +++ b/src/licensedcode/data/rules/proprietary-license_105.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This script is released under one of the Tenable Script Licenses and may not be used from within scripts released under another license without the authorization from Tenable Network Security Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_105.yml b/src/licensedcode/data/rules/proprietary-license_105.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_106.RULE b/src/licensedcode/data/rules/proprietary-license_106.RULE index b3eae31b7ec..f22cdd698c5 100644 --- a/src/licensedcode/data/rules/proprietary-license_106.RULE +++ b/src/licensedcode/data/rules/proprietary-license_106.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * PROPRIETARY/CONFIDENTIAL * * This software is the confidential and proprietary information of diff --git a/src/licensedcode/data/rules/proprietary-license_106.yml b/src/licensedcode/data/rules/proprietary-license_106.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_107.RULE b/src/licensedcode/data/rules/proprietary-license_107.RULE index 07b846e0af2..c7aee0a61cf 100644 --- a/src/licensedcode/data/rules/proprietary-license_107.RULE +++ b/src/licensedcode/data/rules/proprietary-license_107.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * PROPRIETARY/CONFIDENTIAL * * This software is the confidential and proprietary information of diff --git a/src/licensedcode/data/rules/proprietary-license_107.yml b/src/licensedcode/data/rules/proprietary-license_107.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_108.RULE b/src/licensedcode/data/rules/proprietary-license_108.RULE index 9f3c7bb24a4..2dbde35cfd2 100644 --- a/src/licensedcode/data/rules/proprietary-license_108.RULE +++ b/src/licensedcode/data/rules/proprietary-license_108.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: See https://github.com/rhuitl/uClinux/blob/master/user/nessus/nessus-plugins/scripts/byte_func.inc +--- + NOGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_108.yml b/src/licensedcode/data/rules/proprietary-license_108.yml deleted file mode 100644 index 59e64a2ea04..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_108.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: See https://github.com/rhuitl/uClinux/blob/master/user/nessus/nessus-plugins/scripts/byte_func.inc diff --git a/src/licensedcode/data/rules/proprietary-license_109.RULE b/src/licensedcode/data/rules/proprietary-license_109.RULE index e5ac1cfe6ae..365688d88de 100644 --- a/src/licensedcode/data/rules/proprietary-license_109.RULE +++ b/src/licensedcode/data/rules/proprietary-license_109.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + License License granted diff --git a/src/licensedcode/data/rules/proprietary-license_109.yml b/src/licensedcode/data/rules/proprietary-license_109.yml deleted file mode 100644 index 4d087a6c8e2..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_11.RULE b/src/licensedcode/data/rules/proprietary-license_11.RULE index d1812ad3c1f..8568d4a030b 100644 --- a/src/licensedcode/data/rules/proprietary-license_11.RULE +++ b/src/licensedcode/data/rules/proprietary-license_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.chiark.greenend.org.uk/~sgtatham/bugs.html +--- + # DON'T BE A DICK PUBLIC LICENSE > Version 1.1, December 2016 @@ -23,4 +31,4 @@ creator(s) a pint. 3. Code is provided with no warranty. Using somebody else's code and bitching when it goes wrong makes - you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back or submit a [bug report](https://www.chiark.greenend.org.uk/~sgtatham/bugs.html) + you a DONKEY dick. Fix the problem yourself. A non-dick would submit the fix back or submit a [bug report](https://www.chiark.greenend.org.uk/~sgtatham/bugs.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_11.yml b/src/licensedcode/data/rules/proprietary-license_11.yml deleted file mode 100644 index 199382c1f6f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.chiark.greenend.org.uk/~sgtatham/bugs.html diff --git a/src/licensedcode/data/rules/proprietary-license_110.RULE b/src/licensedcode/data/rules/proprietary-license_110.RULE index d81b3df4979..660765bd0d2 100644 --- a/src/licensedcode/data/rules/proprietary-license_110.RULE +++ b/src/licensedcode/data/rules/proprietary-license_110.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://geogratis.cgdi.gc.ca/geogratis/en/licence.jsp +--- + Original License: http://geogratis.cgdi.gc.ca/geogratis/en/licence.jsp \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_110.yml b/src/licensedcode/data/rules/proprietary-license_110.yml deleted file mode 100644 index a15f5224a3e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://geogratis.cgdi.gc.ca/geogratis/en/licence.jsp diff --git a/src/licensedcode/data/rules/proprietary-license_111.RULE b/src/licensedcode/data/rules/proprietary-license_111.RULE index d233514cfe0..99a2f3aca8c 100644 --- a/src/licensedcode/data/rules/proprietary-license_111.RULE +++ b/src/licensedcode/data/rules/proprietary-license_111.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - (c) Department of Natural Resources Canada +ignorable_holders: + - Department of Natural Resources Canada +--- + GEOGRATIS LICENCE AGREEMENT FOR UNRESTRICTED USE OF DIGITAL DATA This is a legal agreement between you ("Licensee") and Her Majesty the Queen in Right of Canada ("Canada"), as represented by the Minister of Natural Resources Canada. BY ACCESSING, DOWNLOADING, PRINTING OR USING THE DATA, INFORMATION AND MATERIALS BEING PROVIDED WITH, OR ACCESSIBLE PURSUANT TO THIS AGREEMENT, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT AGREE TO THE TERMS OF THIS AGREEMENT, YOU MUST IMMEDIATELY DISPOSE OF ANY SUCH DATA, INFORMATION, MATERIALS AND ANY DERIVED PRODUCTS. diff --git a/src/licensedcode/data/rules/proprietary-license_111.yml b/src/licensedcode/data/rules/proprietary-license_111.yml deleted file mode 100644 index 19c9c7c6812..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_111.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - (c) Department of Natural Resources Canada -ignorable_holders: - - Department of Natural Resources Canada diff --git a/src/licensedcode/data/rules/proprietary-license_112.RULE b/src/licensedcode/data/rules/proprietary-license_112.RULE index aad8722f952..24522f5e82e 100644 --- a/src/licensedcode/data/rules/proprietary-license_112.RULE +++ b/src/licensedcode/data/rules/proprietary-license_112.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://realm.io/pricing +--- + This software contains components with separate copyright and license terms. Your use of these components is subject to the terms and conditions of the following licenses. diff --git a/src/licensedcode/data/rules/proprietary-license_112.yml b/src/licensedcode/data/rules/proprietary-license_112.yml deleted file mode 100644 index f80bc1a6a79..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://realm.io/pricing diff --git a/src/licensedcode/data/rules/proprietary-license_113.RULE b/src/licensedcode/data/rules/proprietary-license_113.RULE index 19cdc90f61d..5a90ef9bf16 100644 --- a/src/licensedcode/data/rules/proprietary-license_113.RULE +++ b/src/licensedcode/data/rules/proprietary-license_113.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + License You can use the illustrations published on unDraw for personal and commercial projects, without the need to include attribution. The full license: diff --git a/src/licensedcode/data/rules/proprietary-license_113.yml b/src/licensedcode/data/rules/proprietary-license_113.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_114.RULE b/src/licensedcode/data/rules/proprietary-license_114.RULE index 8224cbde432..c7f34e3e66d 100644 --- a/src/licensedcode/data/rules/proprietary-license_114.RULE +++ b/src/licensedcode/data/rules/proprietary-license_114.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Legal Simplicity All photos on Pexels can be used for free. What is allowed? diff --git a/src/licensedcode/data/rules/proprietary-license_114.yml b/src/licensedcode/data/rules/proprietary-license_114.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_115.RULE b/src/licensedcode/data/rules/proprietary-license_115.RULE index 46f3566dddd..86dee27d4c5 100644 --- a/src/licensedcode/data/rules/proprietary-license_115.RULE +++ b/src/licensedcode/data/rules/proprietary-license_115.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.sun.com/patents +--- + Sun Microsystems, Inc. has intellectual property rights relating to technology described in this document. In particular, and without limitation, these intellectual diff --git a/src/licensedcode/data/rules/proprietary-license_115.yml b/src/licensedcode/data/rules/proprietary-license_115.yml deleted file mode 100644 index e8919265a10..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.sun.com/patents diff --git a/src/licensedcode/data/rules/proprietary-license_116.RULE b/src/licensedcode/data/rules/proprietary-license_116.RULE index b3f8e7e48c9..e41bd2dcfac 100644 --- a/src/licensedcode/data/rules/proprietary-license_116.RULE +++ b/src/licensedcode/data/rules/proprietary-license_116.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_authors: + - Sun Microsystems, Inc. +--- + This product or document is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation. No part of this product or documentation may be diff --git a/src/licensedcode/data/rules/proprietary-license_116.yml b/src/licensedcode/data/rules/proprietary-license_116.yml deleted file mode 100644 index 0618bd740aa..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_authors: - - Sun Microsystems, Inc. diff --git a/src/licensedcode/data/rules/proprietary-license_117.RULE b/src/licensedcode/data/rules/proprietary-license_117.RULE index d082096ae3c..6df02b8235d 100644 --- a/src/licensedcode/data/rules/proprietary-license_117.RULE +++ b/src/licensedcode/data/rules/proprietary-license_117.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.sun.com/patents +--- + Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product that is described in this document. In particular, and without limitation, these intellectual property diff --git a/src/licensedcode/data/rules/proprietary-license_117.yml b/src/licensedcode/data/rules/proprietary-license_117.yml deleted file mode 100644 index e8919265a10..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_117.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.sun.com/patents diff --git a/src/licensedcode/data/rules/proprietary-license_118.RULE b/src/licensedcode/data/rules/proprietary-license_118.RULE index 98ff7e59d70..c1583d456b2 100644 --- a/src/licensedcode/data/rules/proprietary-license_118.RULE +++ b/src/licensedcode/data/rules/proprietary-license_118.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + package requires EULA acceptance. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_118.yml b/src/licensedcode/data/rules/proprietary-license_118.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_119.RULE b/src/licensedcode/data/rules/proprietary-license_119.RULE index 87c4f43f881..37a0f5b3a76 100644 --- a/src/licensedcode/data/rules/proprietary-license_119.RULE +++ b/src/licensedcode/data/rules/proprietary-license_119.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + requires EULA acceptance. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_119.yml b/src/licensedcode/data/rules/proprietary-license_119.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_12.RULE b/src/licensedcode/data/rules/proprietary-license_12.RULE index 52124670c0a..56b743d0db6 100644 --- a/src/licensedcode/data/rules/proprietary-license_12.RULE +++ b/src/licensedcode/data/rules/proprietary-license_12.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This technology is protected by multiple US and International -patents. This notice and attribution to IBM may not be removed. +patents. This notice and attribution to IBM may not be removed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_12.yml b/src/licensedcode/data/rules/proprietary-license_12.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_120.RULE b/src/licensedcode/data/rules/proprietary-license_120.RULE index 9971166a964..7f16992c188 100644 --- a/src/licensedcode/data/rules/proprietary-license_120.RULE +++ b/src/licensedcode/data/rules/proprietary-license_120.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + require a software license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_120.yml b/src/licensedcode/data/rules/proprietary-license_120.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_120.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_121.RULE b/src/licensedcode/data/rules/proprietary-license_121.RULE index ccd6a564135..140e3c96788 100644 --- a/src/licensedcode/data/rules/proprietary-license_121.RULE +++ b/src/licensedcode/data/rules/proprietary-license_121.RULE @@ -1,2 +1,11 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - CHEF-EULA.md +--- + license "Chef EULA" license_file "CHEF-EULA.md" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_121.yml b/src/licensedcode/data/rules/proprietary-license_121.yml deleted file mode 100644 index 41b7e910c66..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_121.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - CHEF-EULA.md diff --git a/src/licensedcode/data/rules/proprietary-license_122.RULE b/src/licensedcode/data/rules/proprietary-license_122.RULE index 8f444e25fe4..84423fecae4 100644 --- a/src/licensedcode/data/rules/proprietary-license_122.RULE +++ b/src/licensedcode/data/rules/proprietary-license_122.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + license "Chef EULA" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_122.yml b/src/licensedcode/data/rules/proprietary-license_122.yml deleted file mode 100644 index e92cc4b343c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_122.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_123.RULE b/src/licensedcode/data/rules/proprietary-license_123.RULE index 40eaf70ec35..85e8b6bfb5a 100644 --- a/src/licensedcode/data/rules/proprietary-license_123.RULE +++ b/src/licensedcode/data/rules/proprietary-license_123.RULE @@ -1 +1,10 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - CHEF-EULA.md +--- + license_file "CHEF-EULA.md" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_123.yml b/src/licensedcode/data/rules/proprietary-license_123.yml deleted file mode 100644 index 41b7e910c66..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_123.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - CHEF-EULA.md diff --git a/src/licensedcode/data/rules/proprietary-license_124.RULE b/src/licensedcode/data/rules/proprietary-license_124.RULE index 341ee9e6e79..6f12be1b1d6 100644 --- a/src/licensedcode/data/rules/proprietary-license_124.RULE +++ b/src/licensedcode/data/rules/proprietary-license_124.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +minimum_coverage: 60 +--- + Software End User License Agreement (Personal, Non-Commercial, diff --git a/src/licensedcode/data/rules/proprietary-license_124.yml b/src/licensedcode/data/rules/proprietary-license_124.yml deleted file mode 100644 index fb0256b6ea2..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/proprietary-license_125.RULE b/src/licensedcode/data/rules/proprietary-license_125.RULE index 3460899f7db..b3d5a24a5e6 100644 --- a/src/licensedcode/data/rules/proprietary-license_125.RULE +++ b/src/licensedcode/data/rules/proprietary-license_125.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + SOFTWARE LICENSE AGREEMENT The Software License Agreement ("Software License Agreement"), the Terms of Service ("Terms of Service") and the Privacy Statement (“Privacy Statement") (collectively “Terms and Conditions") apply to your use of the software and services, operated by , Inc. (a Delaware corporation, having a principal place of business at 600 N. US Highway 45, Libertyville, IL 60048, United States of America) (" "), and set forth a legally binding agreement between you and . Any defined terms contained herein shall have the same meaning as that assigned to it in the Software License Agreement, Terms of Service or Privacy Statement. The Software License Agreement, Terms of Service, and/or Privacy Statement may be translated into languages other than English however the English version of these documents shall control the rights and obligations of the parties, regardless of the reliance by any party on such translations, and all notices and communications relating to these documents shall be in English. Please read the Software License Agreement, Terms of Service, and Privacy Statement carefully before using the software and services. If you do not agree to the terms contained in those agreements, then you may not use the software or services. Your use of the software and services constitutes your acknowledgement that you have the legal authority to bind yourself or any party you represent to, and your acceptance of, the Software License Agreement, Terms of Service and Privacy Statement. diff --git a/src/licensedcode/data/rules/proprietary-license_125.yml b/src/licensedcode/data/rules/proprietary-license_125.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_126.RULE b/src/licensedcode/data/rules/proprietary-license_126.RULE index 59c154b9365..b78331668eb 100644 --- a/src/licensedcode/data/rules/proprietary-license_126.RULE +++ b/src/licensedcode/data/rules/proprietary-license_126.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + END USER LICENSE AGREEMENT THIS END USER LICENSE AGREEMENT ("Agreement") IS A LEGAL AGREEMENT BETWEEN YOU diff --git a/src/licensedcode/data/rules/proprietary-license_126.yml b/src/licensedcode/data/rules/proprietary-license_126.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_127.RULE b/src/licensedcode/data/rules/proprietary-license_127.RULE index b404f763644..c48925a0c99 100644 --- a/src/licensedcode/data/rules/proprietary-license_127.RULE +++ b/src/licensedcode/data/rules/proprietary-license_127.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + By contributing code to this repository you are assigning all intellectual property rights including copyright to us. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_127.yml b/src/licensedcode/data/rules/proprietary-license_127.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_128.RULE b/src/licensedcode/data/rules/proprietary-license_128.RULE index c395c263e8d..8301f3c9b58 100644 --- a/src/licensedcode/data/rules/proprietary-license_128.RULE +++ b/src/licensedcode/data/rules/proprietary-license_128.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: https://github.com/zimme/open-source-contribution-license +--- + 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 and that users of this software contribute to any open-source work in some way. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 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 diff --git a/src/licensedcode/data/rules/proprietary-license_128.yml b/src/licensedcode/data/rules/proprietary-license_128.yml deleted file mode 100644 index ea396bfa123..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_128.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: https://github.com/zimme/open-source-contribution-license diff --git a/src/licensedcode/data/rules/proprietary-license_129.RULE b/src/licensedcode/data/rules/proprietary-license_129.RULE index 828c7a4d3b5..db6cb888ccf 100644 --- a/src/licensedcode/data/rules/proprietary-license_129.RULE +++ b/src/licensedcode/data/rules/proprietary-license_129.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: not open source because of the usage limitations +--- + ESPRSSIF MIT License Permission is hereby granted for use on ESPRESSIF SYSTEMS ESP8266 only, in which case, diff --git a/src/licensedcode/data/rules/proprietary-license_129.yml b/src/licensedcode/data/rules/proprietary-license_129.yml deleted file mode 100644 index bf5db0c3473..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: not open source because of the usage limitations diff --git a/src/licensedcode/data/rules/proprietary-license_13.RULE b/src/licensedcode/data/rules/proprietary-license_13.RULE index 80f7f95691f..caea74c9f14 100644 --- a/src/licensedcode/data/rules/proprietary-license_13.RULE +++ b/src/licensedcode/data/rules/proprietary-license_13.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/no-permission/ +--- + http://choosealicense.com/no-permission/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_13.yml b/src/licensedcode/data/rules/proprietary-license_13.yml deleted file mode 100644 index bb042ed65ae..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/no-permission/ diff --git a/src/licensedcode/data/rules/proprietary-license_130.RULE b/src/licensedcode/data/rules/proprietary-license_130.RULE index b845f8b8ec0..db16fcdc347 100644 --- a/src/licensedcode/data/rules/proprietary-license_130.RULE +++ b/src/licensedcode/data/rules/proprietary-license_130.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: not open source because of the usage limitations +--- + Permission is hereby granted for use on ESPRESSIF SYSTEMS ESP8266 only, in which case, it is free of charge, to any person obtaining a copy of this software and associated documentation files (the ¡°Software¡±), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/proprietary-license_130.yml b/src/licensedcode/data/rules/proprietary-license_130.yml deleted file mode 100644 index bf5db0c3473..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_130.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: not open source because of the usage limitations diff --git a/src/licensedcode/data/rules/proprietary-license_131.RULE b/src/licensedcode/data/rules/proprietary-license_131.RULE index c36ad589291..5d9e46e5c97 100644 --- a/src/licensedcode/data/rules/proprietary-license_131.RULE +++ b/src/licensedcode/data/rules/proprietary-license_131.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: not open source because of the usage limitations +--- + Permission is hereby granted for use on ESPRESSIF SYSTEMS only, in which case, it is free of charge, to any person obtaining a copy of this software and associated documentation files (the ¡°Software¡±), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/proprietary-license_131.yml b/src/licensedcode/data/rules/proprietary-license_131.yml deleted file mode 100644 index bf5db0c3473..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_131.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: not open source because of the usage limitations diff --git a/src/licensedcode/data/rules/proprietary-license_132.RULE b/src/licensedcode/data/rules/proprietary-license_132.RULE index 50f410a9194..a27dbbe8376 100644 --- a/src/licensedcode/data/rules/proprietary-license_132.RULE +++ b/src/licensedcode/data/rules/proprietary-license_132.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: not open source because of the usage limitations +--- + ESPRSSIF MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_132.yml b/src/licensedcode/data/rules/proprietary-license_132.yml deleted file mode 100644 index ccb1bb48a16..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_132.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: not open source because of the usage limitations diff --git a/src/licensedcode/data/rules/proprietary-license_133.RULE b/src/licensedcode/data/rules/proprietary-license_133.RULE index 8d5797247c8..b7536bdd2a3 100644 --- a/src/licensedcode/data/rules/proprietary-license_133.RULE +++ b/src/licensedcode/data/rules/proprietary-license_133.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: ee "and indemnify the United States Government" +--- + Disclaimer of Warranty This Work is provided "as is." 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 United States Government 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 Guidance, even if advised of the possibility of such damage. diff --git a/src/licensedcode/data/rules/proprietary-license_133.yml b/src/licensedcode/data/rules/proprietary-license_133.yml deleted file mode 100644 index a03d5e07b63..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_133.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: ee "and indemnify the United States Government" diff --git a/src/licensedcode/data/rules/proprietary-license_134.RULE b/src/licensedcode/data/rules/proprietary-license_134.RULE index 571e2d1974f..6abafccaf37 100644 --- a/src/licensedcode/data/rules/proprietary-license_134.RULE +++ b/src/licensedcode/data/rules/proprietary-license_134.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +notes: qmail license notice was originally a source of many confusions. djb later dedicated + qmail to the public domain. +--- + If you want to distribute modified versions of qmail (including ports, no matter how minor the changes are) you'll have to get my approval. This does not mean approval of your distribution method, your intentions, diff --git a/src/licensedcode/data/rules/proprietary-license_134.yml b/src/licensedcode/data/rules/proprietary-license_134.yml deleted file mode 100644 index 4071dfc4874..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_134.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -notes: qmail license notice was originally a source of many confusions. djb later dedicated - qmail to the public domain. diff --git a/src/licensedcode/data/rules/proprietary-license_135.RULE b/src/licensedcode/data/rules/proprietary-license_135.RULE index 7f4918a1291..cf01e604be5 100644 --- a/src/licensedcode/data/rules/proprietary-license_135.RULE +++ b/src/licensedcode/data/rules/proprietary-license_135.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + No commercial use of these trademarks may be made without prior written permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_135.yml b/src/licensedcode/data/rules/proprietary-license_135.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_136.RULE b/src/licensedcode/data/rules/proprietary-license_136.RULE index ecc61c790cf..252e4406874 100644 --- a/src/licensedcode/data/rules/proprietary-license_136.RULE +++ b/src/licensedcode/data/rules/proprietary-license_136.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + No commercial use of these trademarks may be made without prior written permission of MIT. diff --git a/src/licensedcode/data/rules/proprietary-license_136.yml b/src/licensedcode/data/rules/proprietary-license_136.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_137.RULE b/src/licensedcode/data/rules/proprietary-license_137.RULE index 18767557ce1..47f5208a365 100644 --- a/src/licensedcode/data/rules/proprietary-license_137.RULE +++ b/src/licensedcode/data/rules/proprietary-license_137.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + "Commercial use" means use of a name in a product or other for-profit manner. It does NOT prevent a commercial firm from referring to the MIT trademarks in order to convey information (although in doing so, diff --git a/src/licensedcode/data/rules/proprietary-license_137.yml b/src/licensedcode/data/rules/proprietary-license_137.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_138.RULE b/src/licensedcode/data/rules/proprietary-license_138.RULE index fc7edcac01a..e743cc7bb86 100644 --- a/src/licensedcode/data/rules/proprietary-license_138.RULE +++ b/src/licensedcode/data/rules/proprietary-license_138.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://github.com/tq-systems/libdeviceinfo-em/blob/master/LICENSE +--- + TQ-Systems Software License Agreement Version 1.0.2 It is permitted to copy and distribute this document true to word. diff --git a/src/licensedcode/data/rules/proprietary-license_138.yml b/src/licensedcode/data/rules/proprietary-license_138.yml deleted file mode 100644 index af11ed44cab..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_138.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://github.com/tq-systems/libdeviceinfo-em/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_139.RULE b/src/licensedcode/data/rules/proprietary-license_139.RULE index ea9d89117ef..e71f903e6fd 100644 --- a/src/licensedcode/data/rules/proprietary-license_139.RULE +++ b/src/licensedcode/data/rules/proprietary-license_139.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Software License Agreement (“Agreement”) ANY USE, REPRODUCTION, OR DISTRIBUTION OF THE ACCOMPANYING BINARY SOFTWARE diff --git a/src/licensedcode/data/rules/proprietary-license_139.yml b/src/licensedcode/data/rules/proprietary-license_139.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_139.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_14.RULE b/src/licensedcode/data/rules/proprietary-license_14.RULE index 0272b80ae5d..23d0e470a67 100644 --- a/src/licensedcode/data/rules/proprietary-license_14.RULE +++ b/src/licensedcode/data/rules/proprietary-license_14.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/no-license/ +--- + http://choosealicense.com/no-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_14.yml b/src/licensedcode/data/rules/proprietary-license_14.yml deleted file mode 100644 index 2acdd8b86ed..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/no-license/ diff --git a/src/licensedcode/data/rules/proprietary-license_140.RULE b/src/licensedcode/data/rules/proprietary-license_140.RULE index 4cb95ccf076..d4bacf112ca 100644 --- a/src/licensedcode/data/rules/proprietary-license_140.RULE +++ b/src/licensedcode/data/rules/proprietary-license_140.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + BINARY SOFTWARE Only software in binary form may be provided under this Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_140.yml b/src/licensedcode/data/rules/proprietary-license_140.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_141.RULE b/src/licensedcode/data/rules/proprietary-license_141.RULE index c474d20f7b6..3caaae7b8ac 100644 --- a/src/licensedcode/data/rules/proprietary-license_141.RULE +++ b/src/licensedcode/data/rules/proprietary-license_141.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + BINARY SOFTWARE Only software in binary form may be provided under this Agreement Here is a list of software covered by this Agreement: \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_141.yml b/src/licensedcode/data/rules/proprietary-license_141.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_142.RULE b/src/licensedcode/data/rules/proprietary-license_142.RULE index 0190670bcaf..48fa490312f 100644 --- a/src/licensedcode/data/rules/proprietary-license_142.RULE +++ b/src/licensedcode/data/rules/proprietary-license_142.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: there is an indemnification clause +--- + License Text SUN MICROSYSTEMS, INC. THROUGH ITS SUN MICROSYSTEMS LABORATORIES DIVISION ("SUN") WILL LICENSE THIS SOFTWARE AND THE ACCOMPANYING DOCUMENTATION TO YOU (a "Licensee") ONLY ON YOUR ACCEPTANCE OF ALL THE TERMS SET FORTH BELOW. Sun grants Licensee a non-exclusive, royalty-free right to download, install, compile, use, copy and distribute the Software, modify or otherwise create derivative works from the Software (each, a "Modification") and distribute any Modification in source code and/or binary code form to its customers with a license agreement containing these terms and noting that the Software has been modified. The Software is copyrighted by Sun and other third parties and Licensee shall retain and reproduce all copyright and other notices presently on the Software. As between Sun and Licensee, Sun is the sole owner of all rights in and to the Software other than the limited rights granted to Licensee herein; Licensee will own its Modifications, expressly subject to Sun's continuing ownership of the Software. Licensee will, at its expense, defend and indemnify Sun and its licensors from and against any third party claims, including costs and reasonable attorneys' fees, and be wholly responsible for any liabilities arising out of or related to Licensee's development, use or distribution of the Software or Modifications. Any distribution of the Software and Modifications must comply with all applicable United States export control laws. diff --git a/src/licensedcode/data/rules/proprietary-license_142.yml b/src/licensedcode/data/rules/proprietary-license_142.yml deleted file mode 100644 index 832ed4e1912..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_142.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: there is an indemnification clause diff --git a/src/licensedcode/data/rules/proprietary-license_143.RULE b/src/licensedcode/data/rules/proprietary-license_143.RULE index 02b1a0c9ad2..caa2b034ad4 100644 --- a/src/licensedcode/data/rules/proprietary-license_143.RULE +++ b/src/licensedcode/data/rules/proprietary-license_143.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: there is an indemnification clause +--- + SUN MICROSYSTEMS, INC. THROUGH ITS SUN MICROSYSTEMS LABORATORIES DIVISION ("SUN") WILL LICENSE THIS SOFTWARE AND THE ACCOMPANYING DOCUMENTATION TO YOU (a "Licensee") ONLY ON YOUR ACCEPTANCE OF ALL THE TERMS SET FORTH BELOW. Sun grants Licensee a non-exclusive, royalty-free right to download, install, compile, use, copy and distribute the Software, modify or otherwise create derivative works from the Software (each, a "Modification") and distribute any Modification in source code and/or binary code form to its customers with a license agreement containing these terms and noting that the Software has been modified. The Software is copyrighted by Sun and other third parties and Licensee shall retain and reproduce all copyright and other notices presently on the Software. As between Sun and Licensee, Sun is the sole owner of all rights in and to the Software other than the limited rights granted to Licensee herein; Licensee will own its Modifications, expressly subject to Sun's continuing ownership of the Software. Licensee will, at its expense, defend and indemnify Sun and its licensors from and against any third party claims, including costs and reasonable attorneys' fees, and be wholly responsible for any liabilities arising out of or related to Licensee's development, use or distribution of the Software or Modifications. Any distribution of the Software and Modifications must comply with all applicable United States export control laws. THE SOFTWARE IS BEING PROVIDED TO LICENSEE "AS IS" AND ALL EXPRESS OR IMPLIED CONDITIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT WILL SUN BE LIABLE HEREUNDER FOR ANY DIRECT DAMAGES OR ANY INDIRECT, PUNITIVE, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OF ANY KIND. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_143.yml b/src/licensedcode/data/rules/proprietary-license_143.yml deleted file mode 100644 index 832ed4e1912..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_143.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: there is an indemnification clause diff --git a/src/licensedcode/data/rules/proprietary-license_144.RULE b/src/licensedcode/data/rules/proprietary-license_144.RULE index 69fa3dbfc08..0b71e238934 100644 --- a/src/licensedcode/data/rules/proprietary-license_144.RULE +++ b/src/licensedcode/data/rules/proprietary-license_144.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://github.com/pntailor/Work/blob/5312ee7b42c5b05dac8455acc735ba4a18d466f2ef2/install_acp_app.sh#L13 +--- + # This program is confidential and proprietary to ARRIS Enterprises, LLC. (ARRIS), # and may not be copied, reproduced, modified, disclosed to others, published or used, # in whole or in part, without the express prior written permission of ARRIS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_144.yml b/src/licensedcode/data/rules/proprietary-license_144.yml deleted file mode 100644 index 852b2a0f115..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_144.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://github.com/pntailor/Work/blob/5312ee7b42c5b05dac8455acc735ba4a18d466f2ef2/install_acp_app.sh#L13 diff --git a/src/licensedcode/data/rules/proprietary-license_145.RULE b/src/licensedcode/data/rules/proprietary-license_145.RULE index 5787d48d702..b9de33b5dba 100644 --- a/src/licensedcode/data/rules/proprietary-license_145.RULE +++ b/src/licensedcode/data/rules/proprietary-license_145.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://github.com/pntailor/Work/blob/5312ee7b42c5b05dac8455acc735ba4a18d466f2ef2/install_acp_app.sh#L13 +--- + # This program is confidential and proprietary to , # and may not be copied, reproduced, modified, disclosed to others, published or used, # in whole or in part, without the express prior written permission of. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_145.yml b/src/licensedcode/data/rules/proprietary-license_145.yml deleted file mode 100644 index 852b2a0f115..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_145.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://github.com/pntailor/Work/blob/5312ee7b42c5b05dac8455acc735ba4a18d466f2ef2/install_acp_app.sh#L13 diff --git a/src/licensedcode/data/rules/proprietary-license_146.RULE b/src/licensedcode/data/rules/proprietary-license_146.RULE index 6680e90572a..dc9ec30530c 100644 --- a/src/licensedcode/data/rules/proprietary-license_146.RULE +++ b/src/licensedcode/data/rules/proprietary-license_146.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * | THIS WORK IS AN UNPUBLISHED WORK AND CONTAINS CONFIDENTIAL, | * | PROPRIETARY AND TRADESECRET INFORMATION OF | * | ACCESS TO THIS WORK IS RESTRICTED TO (I) EMPLOYEES WHO HAVE A | diff --git a/src/licensedcode/data/rules/proprietary-license_146.yml b/src/licensedcode/data/rules/proprietary-license_146.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_147.RULE b/src/licensedcode/data/rules/proprietary-license_147.RULE index 7f3dcbbdb2c..7853f6e8af9 100644 --- a/src/licensedcode/data/rules/proprietary-license_147.RULE +++ b/src/licensedcode/data/rules/proprietary-license_147.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 55 +ignorable_urls: + - http://www.microsoft.com/exporting + - https://aka.ms/getsource + - https://go.microsoft.com/fwlink/?LinkId=528096&clcid=0x409 +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT AZURE STORAGE EXPLORER diff --git a/src/licensedcode/data/rules/proprietary-license_147.yml b/src/licensedcode/data/rules/proprietary-license_147.yml deleted file mode 100644 index 7a6eb888a50..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_147.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 55 -ignorable_urls: - - http://www.microsoft.com/exporting - - https://aka.ms/getsource - - https://go.microsoft.com/fwlink/?LinkId=528096&clcid=0x409 diff --git a/src/licensedcode/data/rules/proprietary-license_148.RULE b/src/licensedcode/data/rules/proprietary-license_148.RULE index 7a5b6117ada..72bbb5ab459 100644 --- a/src/licensedcode/data/rules/proprietary-license_148.RULE +++ b/src/licensedcode/data/rules/proprietary-license_148.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + // Texas Instruments (TI) is supplying this software for use solely and // exclusively on TI's microcontroller products. The software is owned by // TI and/or its suppliers, and is protected under applicable copyright diff --git a/src/licensedcode/data/rules/proprietary-license_148.yml b/src/licensedcode/data/rules/proprietary-license_148.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_149.RULE b/src/licensedcode/data/rules/proprietary-license_149.RULE index 772a4a52f8d..ed91ac7a9b7 100644 --- a/src/licensedcode/data/rules/proprietary-license_149.RULE +++ b/src/licensedcode/data/rules/proprietary-license_149.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL Unpublished material - all rights reserved under the Copyright Laws of the United States and applicable international diff --git a/src/licensedcode/data/rules/proprietary-license_149.yml b/src/licensedcode/data/rules/proprietary-license_149.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_15.RULE b/src/licensedcode/data/rules/proprietary-license_15.RULE index e229af24297..c883f73ccc1 100644 --- a/src/licensedcode/data/rules/proprietary-license_15.RULE +++ b/src/licensedcode/data/rules/proprietary-license_15.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/no-permission/ +--- + https://choosealicense.com/no-permission/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_15.yml b/src/licensedcode/data/rules/proprietary-license_15.yml deleted file mode 100644 index 72a4c15b9d7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/no-permission/ diff --git a/src/licensedcode/data/rules/proprietary-license_150.RULE b/src/licensedcode/data/rules/proprietary-license_150.RULE index ee7b14f32c7..56cc448c760 100644 --- a/src/licensedcode/data/rules/proprietary-license_150.RULE +++ b/src/licensedcode/data/rules/proprietary-license_150.RULE @@ -1,2 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + The software in this package is published under the terms of the Commercial Free Software license V.1, a copy of which has been included with this distribution in the LICENSE.md file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_150.yml b/src/licensedcode/data/rules/proprietary-license_150.yml deleted file mode 100644 index 30378eaf740..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_150.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_151.RULE b/src/licensedcode/data/rules/proprietary-license_151.RULE index b6d688906a8..03d20a6934f 100644 --- a/src/licensedcode/data/rules/proprietary-license_151.RULE +++ b/src/licensedcode/data/rules/proprietary-license_151.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + **Commercial Free License Agreement ** The software available for download here is made available to you pursuant to this certain Commercial Free License Agreement ("**Agreement**") by and between MuleSoft, Inc. ("**MuleSoft**") and the MuleSoft customer that accepts these terms either by (A) downloading and using the Free Software (as defined below) or (B) clicking where indicated to indicate its acceptance of this Agreement ("**Customer**"). Subject to the terms below, this Agreement permits Customer to use the MuleSoft proprietary software code and related documentation MuleSoft may make available, which software is delivered at no additional cost for the purpose of facilitating the implementation of the Anypoint Platform in Customer's environment (the "**Free Software**") as described below. This Agreement shall govern Customer's initial download of the applicable Free Software, as well as any future updates to such Free Software that MuleSoft may provide from time to time at its sole discretion. diff --git a/src/licensedcode/data/rules/proprietary-license_151.yml b/src/licensedcode/data/rules/proprietary-license_151.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_152.RULE b/src/licensedcode/data/rules/proprietary-license_152.RULE index 889ff6d6c66..ea5caedcc05 100644 --- a/src/licensedcode/data/rules/proprietary-license_152.RULE +++ b/src/licensedcode/data/rules/proprietary-license_152.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + The software available for download here is made available to you pursuant to this Commercial Free License Agreement ("Agreement") by and between MuleSoft, Inc. ("MuleSoft") and the party ("User") that accepts these terms by diff --git a/src/licensedcode/data/rules/proprietary-license_152.yml b/src/licensedcode/data/rules/proprietary-license_152.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_153.RULE b/src/licensedcode/data/rules/proprietary-license_153.RULE index 7435bee242e..c3812418046 100644 --- a/src/licensedcode/data/rules/proprietary-license_153.RULE +++ b/src/licensedcode/data/rules/proprietary-license_153.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + the End User License Agreement. You will need to accept the license agreement in order to continue the installation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_153.yml b/src/licensedcode/data/rules/proprietary-license_153.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_154.RULE b/src/licensedcode/data/rules/proprietary-license_154.RULE index 58456900625..a9a587b3f33 100644 --- a/src/licensedcode/data/rules/proprietary-license_154.RULE +++ b/src/licensedcode/data/rules/proprietary-license_154.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" AS A COURTESY TO YOU, SOLELY FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR XILINX DEVICES. BY PROVIDING THIS DESIGN, CODE, diff --git a/src/licensedcode/data/rules/proprietary-license_154.yml b/src/licensedcode/data/rules/proprietary-license_154.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_154.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_155.RULE b/src/licensedcode/data/rules/proprietary-license_155.RULE index d2790d70d29..f4588ee7b14 100644 --- a/src/licensedcode/data/rules/proprietary-license_155.RULE +++ b/src/licensedcode/data/rules/proprietary-license_155.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Permission granted for non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_155.yml b/src/licensedcode/data/rules/proprietary-license_155.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_155.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_156.RULE b/src/licensedcode/data/rules/proprietary-license_156.RULE index f23c42497d8..013ad45180c 100644 --- a/src/licensedcode/data/rules/proprietary-license_156.RULE +++ b/src/licensedcode/data/rules/proprietary-license_156.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Important: This free software is provided under the MIT licence (X11 license) with the addition of the following condition: This Software cannot be used to archive or collect data such as (but not limited to) that of events, news, experiences and activities, for the purpose of any concept relating to diary/journal keeping. The full licence can be found at the end of this document. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_156.yml b/src/licensedcode/data/rules/proprietary-license_156.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_156.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_157.RULE b/src/licensedcode/data/rules/proprietary-license_157.RULE index 15fcef3b2dc..a28f7231920 100644 --- a/src/licensedcode/data/rules/proprietary-license_157.RULE +++ b/src/licensedcode/data/rules/proprietary-license_157.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Important: This free software is provided under the MIT licence (X11 license) with the addition of the following condition: This Software cannot be used to archive or collect data such as (but not limited to) that of events, news, experiences and activities, for the purpose of any concept relating to diary/journal keeping. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_157.yml b/src/licensedcode/data/rules/proprietary-license_157.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_157.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_158.RULE b/src/licensedcode/data/rules/proprietary-license_158.RULE index e7c3cca9668..ed055b88f20 100644 --- a/src/licensedcode/data/rules/proprietary-license_158.RULE +++ b/src/licensedcode/data/rules/proprietary-license_158.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This Software cannot be used to archive or collect data such as (but not limited to) that of events, news, experiences and activities, for the purpose of any concept relating to diary/journal keeping. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_158.yml b/src/licensedcode/data/rules/proprietary-license_158.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_159.RULE b/src/licensedcode/data/rules/proprietary-license_159.RULE index 93a4a1fa4df..3d446b82242 100644 --- a/src/licensedcode/data/rules/proprietary-license_159.RULE +++ b/src/licensedcode/data/rules/proprietary-license_159.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. This Software cannot be used to archive or collect data such as (but not limited to) that of events, news, experiences and activities, for the purpose of any concept relating to diary/journal keeping. diff --git a/src/licensedcode/data/rules/proprietary-license_159.yml b/src/licensedcode/data/rules/proprietary-license_159.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_16.RULE b/src/licensedcode/data/rules/proprietary-license_16.RULE index 02d0523da8f..1a237ea1e5b 100644 --- a/src/licensedcode/data/rules/proprietary-license_16.RULE +++ b/src/licensedcode/data/rules/proprietary-license_16.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/no-license/ +--- + https://choosealicense.com/no-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_16.yml b/src/licensedcode/data/rules/proprietary-license_16.yml deleted file mode 100644 index 7c000287295..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/no-license/ diff --git a/src/licensedcode/data/rules/proprietary-license_160.RULE b/src/licensedcode/data/rules/proprietary-license_160.RULE index f422bd68cf3..9d92c67e721 100644 --- a/src/licensedcode/data/rules/proprietary-license_160.RULE +++ b/src/licensedcode/data/rules/proprietary-license_160.RULE @@ -1,3 +1,19 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 98 +notes: | + There is an extra clause inserted by wg in an Apache 2.0 license + See https://github.com/wg/wrk/blob/7594a95186ebdfa7cb35477a8a811f84e2a31b62/LICENSE + And https://github.com/wg/wrk/commit/db6da47fe3ee604d70304c8d10896f8349b972da#diff-9879d6db96fd29134fc802214163b95a + (e) If the Derivative Work includes substantial changes to features + or functionality of the Work, then you must remove the name of + the Work, and any derivation thereof, from all copies that you + distribute, whether in Source or Object form, except as required + in copyright, patent, trademark, and attribution notices. +--- + Modified Apache 2.0 License Version 2.0.1, February 2015 diff --git a/src/licensedcode/data/rules/proprietary-license_160.yml b/src/licensedcode/data/rules/proprietary-license_160.yml deleted file mode 100644 index 54e0f344c9c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_160.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 98 -notes: | - There is an extra clause inserted by wg in an Apache 2.0 license - See https://github.com/wg/wrk/blob/7594a95186ebdfa7cb35477a8a811f84e2a31b62/LICENSE - And https://github.com/wg/wrk/commit/db6da47fe3ee604d70304c8d10896f8349b972da#diff-9879d6db96fd29134fc802214163b95a - (e) If the Derivative Work includes substantial changes to features - or functionality of the Work, then you must remove the name of - the Work, and any derivation thereof, from all copies that you - distribute, whether in Source or Object form, except as required - in copyright, patent, trademark, and attribution notices. diff --git a/src/licensedcode/data/rules/proprietary-license_161.RULE b/src/licensedcode/data/rules/proprietary-license_161.RULE index 881b85b6108..92b5950a8ca 100644 --- a/src/licensedcode/data/rules/proprietary-license_161.RULE +++ b/src/licensedcode/data/rules/proprietary-license_161.RULE @@ -1,2 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://greensock.com/licensing + - http://greensock.com/standard-license +--- + used per its ["No Charge" license](http://greensock.com/standard-license). For some cases the extended ["Business Green" license](http://greensock.com/licensing/) will be necessary. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_161.yml b/src/licensedcode/data/rules/proprietary-license_161.yml deleted file mode 100644 index a128ce53f27..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_161.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://greensock.com/licensing - - http://greensock.com/standard-license diff --git a/src/licensedcode/data/rules/proprietary-license_162.RULE b/src/licensedcode/data/rules/proprietary-license_162.RULE index 515b4e02319..578d40245d8 100644 --- a/src/licensedcode/data/rules/proprietary-license_162.RULE +++ b/src/licensedcode/data/rules/proprietary-license_162.RULE @@ -1 +1,10 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://opensource.org/licenses +--- + should not be considered an [open source license](https://opensource.org/licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_162.yml b/src/licensedcode/data/rules/proprietary-license_162.yml deleted file mode 100644 index db7d882e896..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_162.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://opensource.org/licenses diff --git a/src/licensedcode/data/rules/proprietary-license_163.RULE b/src/licensedcode/data/rules/proprietary-license_163.RULE index e942c080ce1..3eecf093bb6 100644 --- a/src/licensedcode/data/rules/proprietary-license_163.RULE +++ b/src/licensedcode/data/rules/proprietary-license_163.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This software is published for academic and non-commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_163.yml b/src/licensedcode/data/rules/proprietary-license_163.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_164.RULE b/src/licensedcode/data/rules/proprietary-license_164.RULE index 5b09f9f1412..c411ff6cb65 100644 --- a/src/licensedcode/data/rules/proprietary-license_164.RULE +++ b/src/licensedcode/data/rules/proprietary-license_164.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Strictly for non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_164.yml b/src/licensedcode/data/rules/proprietary-license_164.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_165.RULE b/src/licensedcode/data/rules/proprietary-license_165.RULE index 6fadd3a2fbb..800ed46c510 100644 --- a/src/licensedcode/data/rules/proprietary-license_165.RULE +++ b/src/licensedcode/data/rules/proprietary-license_165.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + for non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_165.yml b/src/licensedcode/data/rules/proprietary-license_165.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_165.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_166.RULE b/src/licensedcode/data/rules/proprietary-license_166.RULE index ead1c02346a..df9fd745f02 100644 --- a/src/licensedcode/data/rules/proprietary-license_166.RULE +++ b/src/licensedcode/data/rules/proprietary-license_166.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Available for Non Commercial Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_166.yml b/src/licensedcode/data/rules/proprietary-license_166.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_166.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_167.RULE b/src/licensedcode/data/rules/proprietary-license_167.RULE index 26ce94e5c1c..129ad7d1657 100644 --- a/src/licensedcode/data/rules/proprietary-license_167.RULE +++ b/src/licensedcode/data/rules/proprietary-license_167.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + public source code - free for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_167.yml b/src/licensedcode/data/rules/proprietary-license_167.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_167.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_168.RULE b/src/licensedcode/data/rules/proprietary-license_168.RULE index 0829c084516..3aa817d7c94 100644 --- a/src/licensedcode/data/rules/proprietary-license_168.RULE +++ b/src/licensedcode/data/rules/proprietary-license_168.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + for personal, non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_168.yml b/src/licensedcode/data/rules/proprietary-license_168.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_168.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_169.RULE b/src/licensedcode/data/rules/proprietary-license_169.RULE index 97f9c7e89b4..2b564404b49 100644 --- a/src/licensedcode/data/rules/proprietary-license_169.RULE +++ b/src/licensedcode/data/rules/proprietary-license_169.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + (for non commercial use only) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_169.yml b/src/licensedcode/data/rules/proprietary-license_169.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_17.RULE b/src/licensedcode/data/rules/proprietary-license_17.RULE index 83784e3c4d0..fb89853a82b 100644 --- a/src/licensedcode/data/rules/proprietary-license_17.RULE +++ b/src/licensedcode/data/rules/proprietary-license_17.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://developer.tobii.com/wp-content/uploads/2017/06/Tobii_Core_SDK_and_Gaming_SDK_License_Agreement_v_2.pdf +--- + http://developer.tobii.com/wp-content/uploads/2017/06/Tobii_Core_SDK_and_Gaming_SDK_License_Agreement_v_2.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_17.yml b/src/licensedcode/data/rules/proprietary-license_17.yml deleted file mode 100644 index 12f5ef4062f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://developer.tobii.com/wp-content/uploads/2017/06/Tobii_Core_SDK_and_Gaming_SDK_License_Agreement_v_2.pdf diff --git a/src/licensedcode/data/rules/proprietary-license_170.RULE b/src/licensedcode/data/rules/proprietary-license_170.RULE index 8b2aa9b4588..2e76bd183f8 100644 --- a/src/licensedcode/data/rules/proprietary-license_170.RULE +++ b/src/licensedcode/data/rules/proprietary-license_170.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This application only for non commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_170.yml b/src/licensedcode/data/rules/proprietary-license_170.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_171.RULE b/src/licensedcode/data/rules/proprietary-license_171.RULE index 33af327450f..6612f767fa4 100644 --- a/src/licensedcode/data/rules/proprietary-license_171.RULE +++ b/src/licensedcode/data/rules/proprietary-license_171.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + based on the free-for-non-commercial-use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_171.yml b/src/licensedcode/data/rules/proprietary-license_171.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_172.RULE b/src/licensedcode/data/rules/proprietary-license_172.RULE index c510075aa3c..f1f7b528110 100644 --- a/src/licensedcode/data/rules/proprietary-license_172.RULE +++ b/src/licensedcode/data/rules/proprietary-license_172.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + non-commercial use plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_172.yml b/src/licensedcode/data/rules/proprietary-license_172.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_173.RULE b/src/licensedcode/data/rules/proprietary-license_173.RULE index 2ac3952293f..d6e318724bb 100644 --- a/src/licensedcode/data/rules/proprietary-license_173.RULE +++ b/src/licensedcode/data/rules/proprietary-license_173.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This is just an academic project for non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_173.yml b/src/licensedcode/data/rules/proprietary-license_173.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_174.RULE b/src/licensedcode/data/rules/proprietary-license_174.RULE index 73645196019..5b81cc30723 100644 --- a/src/licensedcode/data/rules/proprietary-license_174.RULE +++ b/src/licensedcode/data/rules/proprietary-license_174.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Student works, non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_174.yml b/src/licensedcode/data/rules/proprietary-license_174.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_175.RULE b/src/licensedcode/data/rules/proprietary-license_175.RULE index dcdf37f30da..918e5099bf6 100644 --- a/src/licensedcode/data/rules/proprietary-license_175.RULE +++ b/src/licensedcode/data/rules/proprietary-license_175.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + hobby project (Non Commercial use) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_175.yml b/src/licensedcode/data/rules/proprietary-license_175.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_176.RULE b/src/licensedcode/data/rules/proprietary-license_176.RULE index 78eb9325bb4..976e26a971f 100644 --- a/src/licensedcode/data/rules/proprietary-license_176.RULE +++ b/src/licensedcode/data/rules/proprietary-license_176.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + characters for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_176.yml b/src/licensedcode/data/rules/proprietary-license_176.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_177.RULE b/src/licensedcode/data/rules/proprietary-license_177.RULE index 66f6f802757..9009c363232 100644 --- a/src/licensedcode/data/rules/proprietary-license_177.RULE +++ b/src/licensedcode/data/rules/proprietary-license_177.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + framework for *non-commercial* use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_177.yml b/src/licensedcode/data/rules/proprietary-license_177.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_178.RULE b/src/licensedcode/data/rules/proprietary-license_178.RULE index 0613bbd2c90..a295748a85a 100644 --- a/src/licensedcode/data/rules/proprietary-license_178.RULE +++ b/src/licensedcode/data/rules/proprietary-license_178.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Free license for NON-COMMERCIAL use ONLY, DO NOT modify, distributed with creater name ONLY, \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_178.yml b/src/licensedcode/data/rules/proprietary-license_178.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_179.RULE b/src/licensedcode/data/rules/proprietary-license_179.RULE index 6208d577274..1531af98a4c 100644 --- a/src/licensedcode/data/rules/proprietary-license_179.RULE +++ b/src/licensedcode/data/rules/proprietary-license_179.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Free license for NON-COMMERCIAL use ONLY, \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_179.yml b/src/licensedcode/data/rules/proprietary-license_179.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_18.RULE b/src/licensedcode/data/rules/proprietary-license_18.RULE index 991d19cd823..a37feedf1d2 100644 --- a/src/licensedcode/data/rules/proprietary-license_18.RULE +++ b/src/licensedcode/data/rules/proprietary-license_18.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://dogmasolutions.com/ +--- + http://dogmasolutions.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_18.yml b/src/licensedcode/data/rules/proprietary-license_18.yml deleted file mode 100644 index d6e4ca2326c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://dogmasolutions.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_180.RULE b/src/licensedcode/data/rules/proprietary-license_180.RULE index 719e7cb6731..03c21994a28 100644 --- a/src/licensedcode/data/rules/proprietary-license_180.RULE +++ b/src/licensedcode/data/rules/proprietary-license_180.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Free license for NON-COMMERCIAL use ONLY, DO NOT modify \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_180.yml b/src/licensedcode/data/rules/proprietary-license_180.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_181.RULE b/src/licensedcode/data/rules/proprietary-license_181.RULE index c1dd6eb2a5b..5bb03c6e20d 100644 --- a/src/licensedcode/data/rules/proprietary-license_181.RULE +++ b/src/licensedcode/data/rules/proprietary-license_181.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + (personal non-commercial use only) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_181.yml b/src/licensedcode/data/rules/proprietary-license_181.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_181.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_182.RULE b/src/licensedcode/data/rules/proprietary-license_182.RULE index 32bae4101e8..7659e2aec7e 100644 --- a/src/licensedcode/data/rules/proprietary-license_182.RULE +++ b/src/licensedcode/data/rules/proprietary-license_182.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This project is for non commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_182.yml b/src/licensedcode/data/rules/proprietary-license_182.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_182.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_183.RULE b/src/licensedcode/data/rules/proprietary-license_183.RULE index e49392bd9bb..d81c60c31a7 100644 --- a/src/licensedcode/data/rules/proprietary-license_183.RULE +++ b/src/licensedcode/data/rules/proprietary-license_183.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + (only for personal and non-commercial use) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_183.yml b/src/licensedcode/data/rules/proprietary-license_183.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_184.RULE b/src/licensedcode/data/rules/proprietary-license_184.RULE index fa1360229fe..21f7002703a 100644 --- a/src/licensedcode/data/rules/proprietary-license_184.RULE +++ b/src/licensedcode/data/rules/proprietary-license_184.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + site for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_184.yml b/src/licensedcode/data/rules/proprietary-license_184.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_184.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_185.RULE b/src/licensedcode/data/rules/proprietary-license_185.RULE index f534d18f889..6b050de0aa6 100644 --- a/src/licensedcode/data/rules/proprietary-license_185.RULE +++ b/src/licensedcode/data/rules/proprietary-license_185.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Fonts for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_185.yml b/src/licensedcode/data/rules/proprietary-license_185.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_185.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_186.RULE b/src/licensedcode/data/rules/proprietary-license_186.RULE index e49b6d19d04..558a393a71e 100644 --- a/src/licensedcode/data/rules/proprietary-license_186.RULE +++ b/src/licensedcode/data/rules/proprietary-license_186.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + API Available for Non Commercial Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_186.yml b/src/licensedcode/data/rules/proprietary-license_186.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_187.RULE b/src/licensedcode/data/rules/proprietary-license_187.RULE index 80cd16c9ee3..9d8636f71c0 100644 --- a/src/licensedcode/data/rules/proprietary-license_187.RULE +++ b/src/licensedcode/data/rules/proprietary-license_187.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + design files for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_187.yml b/src/licensedcode/data/rules/proprietary-license_187.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_188.RULE b/src/licensedcode/data/rules/proprietary-license_188.RULE index 75acb3e1fc7..82f98361cd2 100644 --- a/src/licensedcode/data/rules/proprietary-license_188.RULE +++ b/src/licensedcode/data/rules/proprietary-license_188.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + files for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_188.yml b/src/licensedcode/data/rules/proprietary-license_188.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_189.RULE b/src/licensedcode/data/rules/proprietary-license_189.RULE index cdc184d3059..2a6246711ca 100644 --- a/src/licensedcode/data/rules/proprietary-license_189.RULE +++ b/src/licensedcode/data/rules/proprietary-license_189.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Lite version for non commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_189.yml b/src/licensedcode/data/rules/proprietary-license_189.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_19.RULE b/src/licensedcode/data/rules/proprietary-license_19.RULE index 8f3df515085..de2bc048d00 100644 --- a/src/licensedcode/data/rules/proprietary-license_19.RULE +++ b/src/licensedcode/data/rules/proprietary-license_19.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://license.syn.co.in/ +--- + http://license.syn.co.in/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_19.yml b/src/licensedcode/data/rules/proprietary-license_19.yml deleted file mode 100644 index 2032e6e5fe6..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://license.syn.co.in/ diff --git a/src/licensedcode/data/rules/proprietary-license_190.RULE b/src/licensedcode/data/rules/proprietary-license_190.RULE index 0497ccab25f..a6de810eb52 100644 --- a/src/licensedcode/data/rules/proprietary-license_190.RULE +++ b/src/licensedcode/data/rules/proprietary-license_190.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + version for non commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_190.yml b/src/licensedcode/data/rules/proprietary-license_190.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_191.RULE b/src/licensedcode/data/rules/proprietary-license_191.RULE index 43a4a753eef..ca70df7b5fd 100644 --- a/src/licensedcode/data/rules/proprietary-license_191.RULE +++ b/src/licensedcode/data/rules/proprietary-license_191.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Non commercial use and demo only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_191.yml b/src/licensedcode/data/rules/proprietary-license_191.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_192.RULE b/src/licensedcode/data/rules/proprietary-license_192.RULE index d97ee4f9b40..46b95fa6ba2 100644 --- a/src/licensedcode/data/rules/proprietary-license_192.RULE +++ b/src/licensedcode/data/rules/proprietary-license_192.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + app for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_192.yml b/src/licensedcode/data/rules/proprietary-license_192.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_193.RULE b/src/licensedcode/data/rules/proprietary-license_193.RULE index 4250c324742..12500167afd 100644 --- a/src/licensedcode/data/rules/proprietary-license_193.RULE +++ b/src/licensedcode/data/rules/proprietary-license_193.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + no one is allowed to use it commercially \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_193.yml b/src/licensedcode/data/rules/proprietary-license_193.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_193.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_194.RULE b/src/licensedcode/data/rules/proprietary-license_194.RULE index 10949877b65..640f80420ec 100644 --- a/src/licensedcode/data/rules/proprietary-license_194.RULE +++ b/src/licensedcode/data/rules/proprietary-license_194.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + free for non-commercial use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_194.yml b/src/licensedcode/data/rules/proprietary-license_194.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_195.RULE b/src/licensedcode/data/rules/proprietary-license_195.RULE index dad30040dd0..8dd5b44b7f1 100644 --- a/src/licensedcode/data/rules/proprietary-license_195.RULE +++ b/src/licensedcode/data/rules/proprietary-license_195.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + theme for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_195.yml b/src/licensedcode/data/rules/proprietary-license_195.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_196.RULE b/src/licensedcode/data/rules/proprietary-license_196.RULE index 2daf988de6e..4ba7137a85a 100644 --- a/src/licensedcode/data/rules/proprietary-license_196.RULE +++ b/src/licensedcode/data/rules/proprietary-license_196.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + "open source" web browser, for non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_196.yml b/src/licensedcode/data/rules/proprietary-license_196.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_196.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_197.RULE b/src/licensedcode/data/rules/proprietary-license_197.RULE index 07a46f0b459..5dcdafeea10 100644 --- a/src/licensedcode/data/rules/proprietary-license_197.RULE +++ b/src/licensedcode/data/rules/proprietary-license_197.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + fonts for PERSONAL NON-COMMERCIAL use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_197.yml b/src/licensedcode/data/rules/proprietary-license_197.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_197.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_198.RULE b/src/licensedcode/data/rules/proprietary-license_198.RULE index 8eec22e3104..0efdb8d81c9 100644 --- a/src/licensedcode/data/rules/proprietary-license_198.RULE +++ b/src/licensedcode/data/rules/proprietary-license_198.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + sketches for personal, non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_198.yml b/src/licensedcode/data/rules/proprietary-license_198.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_199.RULE b/src/licensedcode/data/rules/proprietary-license_199.RULE index b53ac77ef24..21dc1f6aabc 100644 --- a/src/licensedcode/data/rules/proprietary-license_199.RULE +++ b/src/licensedcode/data/rules/proprietary-license_199.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This project is entirely for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_199.yml b/src/licensedcode/data/rules/proprietary-license_199.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_199.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_2.RULE b/src/licensedcode/data/rules/proprietary-license_2.RULE index 676e11a9c69..d53b991e795 100644 --- a/src/licensedcode/data/rules/proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/proprietary-license_2.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Shareware/Freeware \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_2.yml b/src/licensedcode/data/rules/proprietary-license_2.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_20.RULE b/src/licensedcode/data/rules/proprietary-license_20.RULE index 00b7d0160fc..762456a7967 100644 --- a/src/licensedcode/data/rules/proprietary-license_20.RULE +++ b/src/licensedcode/data/rules/proprietary-license_20.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://mapsurfernet.com/docs/msnlicense +--- + http://mapsurfernet.com/docs/msnlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_20.yml b/src/licensedcode/data/rules/proprietary-license_20.yml deleted file mode 100644 index ff130a2fc77..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://mapsurfernet.com/docs/msnlicense diff --git a/src/licensedcode/data/rules/proprietary-license_200.RULE b/src/licensedcode/data/rules/proprietary-license_200.RULE index 0839922b2a8..9b01d9a7ea3 100644 --- a/src/licensedcode/data/rules/proprietary-license_200.RULE +++ b/src/licensedcode/data/rules/proprietary-license_200.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Private projects for personal non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_200.yml b/src/licensedcode/data/rules/proprietary-license_200.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_200.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_201.RULE b/src/licensedcode/data/rules/proprietary-license_201.RULE index 6d8af1de3b0..c92370962a7 100644 --- a/src/licensedcode/data/rules/proprietary-license_201.RULE +++ b/src/licensedcode/data/rules/proprietary-license_201.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + projects for personal non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_201.yml b/src/licensedcode/data/rules/proprietary-license_201.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_201.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_202.RULE b/src/licensedcode/data/rules/proprietary-license_202.RULE index 56d38e5fe06..adb54540d75 100644 --- a/src/licensedcode/data/rules/proprietary-license_202.RULE +++ b/src/licensedcode/data/rules/proprietary-license_202.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + demo project (non-commercial use) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_202.yml b/src/licensedcode/data/rules/proprietary-license_202.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_203.RULE b/src/licensedcode/data/rules/proprietary-license_203.RULE index e0825658d5d..cd25833cc52 100644 --- a/src/licensedcode/data/rules/proprietary-license_203.RULE +++ b/src/licensedcode/data/rules/proprietary-license_203.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Plugins free for commercial and non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_203.yml b/src/licensedcode/data/rules/proprietary-license_203.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_204.RULE b/src/licensedcode/data/rules/proprietary-license_204.RULE index 284753415e6..0f91d45bd7a 100644 --- a/src/licensedcode/data/rules/proprietary-license_204.RULE +++ b/src/licensedcode/data/rules/proprietary-license_204.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + free for commercial and non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_204.yml b/src/licensedcode/data/rules/proprietary-license_204.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_205.RULE b/src/licensedcode/data/rules/proprietary-license_205.RULE index dae7281cca2..f46ba041ba3 100644 --- a/src/licensedcode/data/rules/proprietary-license_205.RULE +++ b/src/licensedcode/data/rules/proprietary-license_205.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + But no one is allowed to use it commercially and I have actual copy rights .So it is for non-commercial use and you only can use it for legal or illegal but \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_205.yml b/src/licensedcode/data/rules/proprietary-license_205.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_206.RULE b/src/licensedcode/data/rules/proprietary-license_206.RULE index 008bcf3a361..d847c1213e0 100644 --- a/src/licensedcode/data/rules/proprietary-license_206.RULE +++ b/src/licensedcode/data/rules/proprietary-license_206.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + good purposes \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_206.yml b/src/licensedcode/data/rules/proprietary-license_206.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_207.RULE b/src/licensedcode/data/rules/proprietary-license_207.RULE index 78e5320bdc1..330bcf1cd0a 100644 --- a/src/licensedcode/data/rules/proprietary-license_207.RULE +++ b/src/licensedcode/data/rules/proprietary-license_207.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + it is for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_207.yml b/src/licensedcode/data/rules/proprietary-license_207.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_208.RULE b/src/licensedcode/data/rules/proprietary-license_208.RULE index 98252efadf9..10390181154 100644 --- a/src/licensedcode/data/rules/proprietary-license_208.RULE +++ b/src/licensedcode/data/rules/proprietary-license_208.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + The toolbox can be freely used for non-commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_208.yml b/src/licensedcode/data/rules/proprietary-license_208.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_209.RULE b/src/licensedcode/data/rules/proprietary-license_209.RULE index 1d1ee500b94..53f65dcf7e5 100644 --- a/src/licensedcode/data/rules/proprietary-license_209.RULE +++ b/src/licensedcode/data/rules/proprietary-license_209.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + can be freely used for non-commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_209.yml b/src/licensedcode/data/rules/proprietary-license_209.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_21.RULE b/src/licensedcode/data/rules/proprietary-license_21.RULE index ea73c15378b..40c80fb6d98 100644 --- a/src/licensedcode/data/rules/proprietary-license_21.RULE +++ b/src/licensedcode/data/rules/proprietary-license_21.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://bitbucket.org/criticalarc/dotnet-sdk/src/master/LICENSE.txt +--- + https://bitbucket.org/criticalarc/dotnet-sdk/src/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_21.yml b/src/licensedcode/data/rules/proprietary-license_21.yml deleted file mode 100644 index abd589cc6b1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://bitbucket.org/criticalarc/dotnet-sdk/src/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_210.RULE b/src/licensedcode/data/rules/proprietary-license_210.RULE index e831726b75e..88af0bbddbb 100644 --- a/src/licensedcode/data/rules/proprietary-license_210.RULE +++ b/src/licensedcode/data/rules/proprietary-license_210.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + It is destined for educational/non commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_210.yml b/src/licensedcode/data/rules/proprietary-license_210.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_210.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_211.RULE b/src/licensedcode/data/rules/proprietary-license_211.RULE index 7fc9ea80ade..fb37df0738d 100644 --- a/src/licensedcode/data/rules/proprietary-license_211.RULE +++ b/src/licensedcode/data/rules/proprietary-license_211.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + for educational/non commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_211.yml b/src/licensedcode/data/rules/proprietary-license_211.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_212.RULE b/src/licensedcode/data/rules/proprietary-license_212.RULE index 9485b9970a7..65f1600b3f3 100644 --- a/src/licensedcode/data/rules/proprietary-license_212.RULE +++ b/src/licensedcode/data/rules/proprietary-license_212.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Free to non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_212.yml b/src/licensedcode/data/rules/proprietary-license_212.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_213.RULE b/src/licensedcode/data/rules/proprietary-license_213.RULE index c6881bf90f8..bc78cda2327 100644 --- a/src/licensedcode/data/rules/proprietary-license_213.RULE +++ b/src/licensedcode/data/rules/proprietary-license_213.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + created for non commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_213.yml b/src/licensedcode/data/rules/proprietary-license_213.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_214.RULE b/src/licensedcode/data/rules/proprietary-license_214.RULE index 4cb8497bbe6..77abc861ab6 100644 --- a/src/licensedcode/data/rules/proprietary-license_214.RULE +++ b/src/licensedcode/data/rules/proprietary-license_214.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + (non-commercial use only) data \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_214.yml b/src/licensedcode/data/rules/proprietary-license_214.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_215.RULE b/src/licensedcode/data/rules/proprietary-license_215.RULE index e1c9a23ed4b..031beae3c64 100644 --- a/src/licensedcode/data/rules/proprietary-license_215.RULE +++ b/src/licensedcode/data/rules/proprietary-license_215.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Licence: "for non-commercial use" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_215.yml b/src/licensedcode/data/rules/proprietary-license_215.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_216.RULE b/src/licensedcode/data/rules/proprietary-license_216.RULE index 2615b5a9bf9..ff1e443f8d6 100644 --- a/src/licensedcode/data/rules/proprietary-license_216.RULE +++ b/src/licensedcode/data/rules/proprietary-license_216.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Free version is not to be used for commercial purposes (including developing commercial websites) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_216.yml b/src/licensedcode/data/rules/proprietary-license_216.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_217.RULE b/src/licensedcode/data/rules/proprietary-license_217.RULE index d5bec9ec2e0..e11ba9f295f 100644 --- a/src/licensedcode/data/rules/proprietary-license_217.RULE +++ b/src/licensedcode/data/rules/proprietary-license_217.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Free version is not to be used for commercial purposes \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_217.yml b/src/licensedcode/data/rules/proprietary-license_217.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_218.RULE b/src/licensedcode/data/rules/proprietary-license_218.RULE index 062354e0e68..42b70374090 100644 --- a/src/licensedcode/data/rules/proprietary-license_218.RULE +++ b/src/licensedcode/data/rules/proprietary-license_218.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + not to be used for commercial purposes \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_218.yml b/src/licensedcode/data/rules/proprietary-license_218.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_218.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_219.RULE b/src/licensedcode/data/rules/proprietary-license_219.RULE index 7c0b08ac5d7..399836b062b 100644 --- a/src/licensedcode/data/rules/proprietary-license_219.RULE +++ b/src/licensedcode/data/rules/proprietary-license_219.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This software is to be used for non-commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_219.yml b/src/licensedcode/data/rules/proprietary-license_219.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_22.RULE b/src/licensedcode/data/rules/proprietary-license_22.RULE index 3c08890fb03..cf339b53652 100644 --- a/src/licensedcode/data/rules/proprietary-license_22.RULE +++ b/src/licensedcode/data/rules/proprietary-license_22.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://bitbucket.org/presis/hiq.repository.entityframework +--- + https://bitbucket.org/presis/hiq.repository.entityframework \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_22.yml b/src/licensedcode/data/rules/proprietary-license_22.yml deleted file mode 100644 index 66db5256b7d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://bitbucket.org/presis/hiq.repository.entityframework diff --git a/src/licensedcode/data/rules/proprietary-license_220.RULE b/src/licensedcode/data/rules/proprietary-license_220.RULE index 71b7beeb9ae..c21c1238830 100644 --- a/src/licensedcode/data/rules/proprietary-license_220.RULE +++ b/src/licensedcode/data/rules/proprietary-license_220.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + You are not permitted under this Licence to use this Software ccmmercially. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_220.yml b/src/licensedcode/data/rules/proprietary-license_220.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_221.RULE b/src/licensedcode/data/rules/proprietary-license_221.RULE index 685ca58211c..1b79eb05d82 100644 --- a/src/licensedcode/data/rules/proprietary-license_221.RULE +++ b/src/licensedcode/data/rules/proprietary-license_221.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + PRIVATE NON-COMMERCIAL USE ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_221.yml b/src/licensedcode/data/rules/proprietary-license_221.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_221.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_222.RULE b/src/licensedcode/data/rules/proprietary-license_222.RULE index 709d701ea1c..2e879372f27 100644 --- a/src/licensedcode/data/rules/proprietary-license_222.RULE +++ b/src/licensedcode/data/rules/proprietary-license_222.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + It's only for non commercial uses and learning purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_222.yml b/src/licensedcode/data/rules/proprietary-license_222.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_223.RULE b/src/licensedcode/data/rules/proprietary-license_223.RULE index 2be25e1ea27..59ae2cde81a 100644 --- a/src/licensedcode/data/rules/proprietary-license_223.RULE +++ b/src/licensedcode/data/rules/proprietary-license_223.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Feel free to download this template but non commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_223.yml b/src/licensedcode/data/rules/proprietary-license_223.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_224.RULE b/src/licensedcode/data/rules/proprietary-license_224.RULE index 82d14650063..0d13f23e18b 100644 --- a/src/licensedcode/data/rules/proprietary-license_224.RULE +++ b/src/licensedcode/data/rules/proprietary-license_224.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + freeware (for non-commercial use). \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_224.yml b/src/licensedcode/data/rules/proprietary-license_224.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_224.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_225.RULE b/src/licensedcode/data/rules/proprietary-license_225.RULE index 9816bd1e043..36bffcdf086 100644 --- a/src/licensedcode/data/rules/proprietary-license_225.RULE +++ b/src/licensedcode/data/rules/proprietary-license_225.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + restricted to non-commercial use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_225.yml b/src/licensedcode/data/rules/proprietary-license_225.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_226.RULE b/src/licensedcode/data/rules/proprietary-license_226.RULE index 7b4b8c069e0..8c3ebb26e65 100644 --- a/src/licensedcode/data/rules/proprietary-license_226.RULE +++ b/src/licensedcode/data/rules/proprietary-license_226.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Its code is for non-Commercial Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_226.yml b/src/licensedcode/data/rules/proprietary-license_226.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_227.RULE b/src/licensedcode/data/rules/proprietary-license_227.RULE index 48a4a20041b..b366ebf31f5 100644 --- a/src/licensedcode/data/rules/proprietary-license_227.RULE +++ b/src/licensedcode/data/rules/proprietary-license_227.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + code is for non-Commercial Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_227.yml b/src/licensedcode/data/rules/proprietary-license_227.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_228.RULE b/src/licensedcode/data/rules/proprietary-license_228.RULE index ad7aeb44b2b..dd798192849 100644 --- a/src/licensedcode/data/rules/proprietary-license_228.RULE +++ b/src/licensedcode/data/rules/proprietary-license_228.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + .Its code is for non-Commercial Use .Do not use its code for any Commercial purpose \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_228.yml b/src/licensedcode/data/rules/proprietary-license_228.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_229.RULE b/src/licensedcode/data/rules/proprietary-license_229.RULE index ea2cff7916f..7d1c73d3730 100644 --- a/src/licensedcode/data/rules/proprietary-license_229.RULE +++ b/src/licensedcode/data/rules/proprietary-license_229.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Do not use its code for any Commercial purpose \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_229.yml b/src/licensedcode/data/rules/proprietary-license_229.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_23.RULE b/src/licensedcode/data/rules/proprietary-license_23.RULE index 27c839d5500..e347b85bd2c 100644 --- a/src/licensedcode/data/rules/proprietary-license_23.RULE +++ b/src/licensedcode/data/rules/proprietary-license_23.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://developer.decibel.net/csharp-sdk#terms +--- + https://developer.decibel.net/csharp-sdk#terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_23.yml b/src/licensedcode/data/rules/proprietary-license_23.yml deleted file mode 100644 index 9e2bc3d1b94..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://developer.decibel.net/csharp-sdk#terms diff --git a/src/licensedcode/data/rules/proprietary-license_230.RULE b/src/licensedcode/data/rules/proprietary-license_230.RULE index 6b8aeb7755b..96a8dc03c20 100644 --- a/src/licensedcode/data/rules/proprietary-license_230.RULE +++ b/src/licensedcode/data/rules/proprietary-license_230.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + its non-commercial. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_230.yml b/src/licensedcode/data/rules/proprietary-license_230.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_231.RULE b/src/licensedcode/data/rules/proprietary-license_231.RULE index b13f02e3e88..4899f4685dd 100644 --- a/src/licensedcode/data/rules/proprietary-license_231.RULE +++ b/src/licensedcode/data/rules/proprietary-license_231.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + this project is for educational, non-commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_231.yml b/src/licensedcode/data/rules/proprietary-license_231.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_232.RULE b/src/licensedcode/data/rules/proprietary-license_232.RULE index 15d251f4fed..65c510c819e 100644 --- a/src/licensedcode/data/rules/proprietary-license_232.RULE +++ b/src/licensedcode/data/rules/proprietary-license_232.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + it's open source for non commercial uses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_232.yml b/src/licensedcode/data/rules/proprietary-license_232.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_232.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_233.RULE b/src/licensedcode/data/rules/proprietary-license_233.RULE index b866ee0ff20..ad15ab032b0 100644 --- a/src/licensedcode/data/rules/proprietary-license_233.RULE +++ b/src/licensedcode/data/rules/proprietary-license_233.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This could only be used for non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_233.yml b/src/licensedcode/data/rules/proprietary-license_233.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_234.RULE b/src/licensedcode/data/rules/proprietary-license_234.RULE index ac914583250..1b01d9e2d0b 100644 --- a/src/licensedcode/data/rules/proprietary-license_234.RULE +++ b/src/licensedcode/data/rules/proprietary-license_234.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Non-commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_234.yml b/src/licensedcode/data/rules/proprietary-license_234.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_235.RULE b/src/licensedcode/data/rules/proprietary-license_235.RULE index d0481d69405..2c93e2a5ac6 100644 --- a/src/licensedcode/data/rules/proprietary-license_235.RULE +++ b/src/licensedcode/data/rules/proprietary-license_235.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This tool is ment for personal, non commercial use only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_235.yml b/src/licensedcode/data/rules/proprietary-license_235.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_235.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_236.RULE b/src/licensedcode/data/rules/proprietary-license_236.RULE index b843703cffb..40917a8e93a 100644 --- a/src/licensedcode/data/rules/proprietary-license_236.RULE +++ b/src/licensedcode/data/rules/proprietary-license_236.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This tool is meant for personal, non commercial use only. I \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_236.yml b/src/licensedcode/data/rules/proprietary-license_236.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_236.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_237.RULE b/src/licensedcode/data/rules/proprietary-license_237.RULE index c22afb3809d..6e6a0f78c80 100644 --- a/src/licensedcode/data/rules/proprietary-license_237.RULE +++ b/src/licensedcode/data/rules/proprietary-license_237.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + meant for personal, non commercial use only. I \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_237.yml b/src/licensedcode/data/rules/proprietary-license_237.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_238.RULE b/src/licensedcode/data/rules/proprietary-license_238.RULE index 9567f891d37..059d7059c7a 100644 --- a/src/licensedcode/data/rules/proprietary-license_238.RULE +++ b/src/licensedcode/data/rules/proprietary-license_238.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This is a non-commercial, used \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_238.yml b/src/licensedcode/data/rules/proprietary-license_238.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_239.RULE b/src/licensedcode/data/rules/proprietary-license_239.RULE index 474812e51b0..272fa6c3b44 100644 --- a/src/licensedcode/data/rules/proprietary-license_239.RULE +++ b/src/licensedcode/data/rules/proprietary-license_239.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + It is licensed for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_239.yml b/src/licensedcode/data/rules/proprietary-license_239.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_24.RULE b/src/licensedcode/data/rules/proprietary-license_24.RULE index 7d4f86afdec..2843cb98013 100644 --- a/src/licensedcode/data/rules/proprietary-license_24.RULE +++ b/src/licensedcode/data/rules/proprietary-license_24.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://dev.windowsphone.com/en-us +--- + https://dev.windowsphone.com/en-us \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_24.yml b/src/licensedcode/data/rules/proprietary-license_24.yml deleted file mode 100644 index 3bb6ef8ea8b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://dev.windowsphone.com/en-us diff --git a/src/licensedcode/data/rules/proprietary-license_240.RULE b/src/licensedcode/data/rules/proprietary-license_240.RULE index bbf394eeea3..cf9f54b5ddc 100644 --- a/src/licensedcode/data/rules/proprietary-license_240.RULE +++ b/src/licensedcode/data/rules/proprietary-license_240.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_240.yml b/src/licensedcode/data/rules/proprietary-license_240.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_241.RULE b/src/licensedcode/data/rules/proprietary-license_241.RULE index 47b8e4e6074..7e66bcf83d2 100644 --- a/src/licensedcode/data/rules/proprietary-license_241.RULE +++ b/src/licensedcode/data/rules/proprietary-license_241.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Intended for private non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_241.yml b/src/licensedcode/data/rules/proprietary-license_241.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_242.RULE b/src/licensedcode/data/rules/proprietary-license_242.RULE index 79a428fc82c..e6003f0464e 100644 --- a/src/licensedcode/data/rules/proprietary-license_242.RULE +++ b/src/licensedcode/data/rules/proprietary-license_242.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + these are for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_242.yml b/src/licensedcode/data/rules/proprietary-license_242.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_243.RULE b/src/licensedcode/data/rules/proprietary-license_243.RULE index b7d7c6b219e..1b0e0dd6517 100644 --- a/src/licensedcode/data/rules/proprietary-license_243.RULE +++ b/src/licensedcode/data/rules/proprietary-license_243.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This is for non-Commercial use so you can not it use commercially but you can use it for your non-commercial purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_243.yml b/src/licensedcode/data/rules/proprietary-license_243.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_243.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_244.RULE b/src/licensedcode/data/rules/proprietary-license_244.RULE index 3fc6e9fe207..7be1e56c0cd 100644 --- a/src/licensedcode/data/rules/proprietary-license_244.RULE +++ b/src/licensedcode/data/rules/proprietary-license_244.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + free public service for low-volume non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_244.yml b/src/licensedcode/data/rules/proprietary-license_244.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_245.RULE b/src/licensedcode/data/rules/proprietary-license_245.RULE index f159a3fc972..c6f71ee8483 100644 --- a/src/licensedcode/data/rules/proprietary-license_245.RULE +++ b/src/licensedcode/data/rules/proprietary-license_245.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + You can use and share the unmodified images freely for non-commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_245.yml b/src/licensedcode/data/rules/proprietary-license_245.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_245.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_246.RULE b/src/licensedcode/data/rules/proprietary-license_246.RULE index 14361d7fd3b..d0a1c994138 100644 --- a/src/licensedcode/data/rules/proprietary-license_246.RULE +++ b/src/licensedcode/data/rules/proprietary-license_246.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_authors: + - using a href http://www.zachsaw.com +ignorable_urls: + - http://www.zachsaw.com/ + - http://www.zachsaw.com/?pg=quickphp_commercial_license +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), for non-commercial purposes to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, and/or distribute copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/proprietary-license_246.yml b/src/licensedcode/data/rules/proprietary-license_246.yml deleted file mode 100644 index 347defbff17..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_246.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_authors: - - using a href http://www.zachsaw.com -ignorable_urls: - - http://www.zachsaw.com/ - - http://www.zachsaw.com/?pg=quickphp_commercial_license diff --git a/src/licensedcode/data/rules/proprietary-license_247.RULE b/src/licensedcode/data/rules/proprietary-license_247.RULE index d5569e3b486..8f6de670cad 100644 --- a/src/licensedcode/data/rules/proprietary-license_247.RULE +++ b/src/licensedcode/data/rules/proprietary-license_247.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_emails: + - innovation@isis.ox.ac.uk +--- + The Software remains the property of the University of Oxford ("the University"). diff --git a/src/licensedcode/data/rules/proprietary-license_247.yml b/src/licensedcode/data/rules/proprietary-license_247.yml deleted file mode 100644 index 4e9e2067dd6..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_247.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_emails: - - innovation@isis.ox.ac.uk diff --git a/src/licensedcode/data/rules/proprietary-license_248.RULE b/src/licensedcode/data/rules/proprietary-license_248.RULE index fa8e764d3f0..8262001cecd 100644 --- a/src/licensedcode/data/rules/proprietary-license_248.RULE +++ b/src/licensedcode/data/rules/proprietary-license_248.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + only for practice, non commercial usage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_248.yml b/src/licensedcode/data/rules/proprietary-license_248.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_249.RULE b/src/licensedcode/data/rules/proprietary-license_249.RULE index c0183e5af61..db8a2b770a0 100644 --- a/src/licensedcode/data/rules/proprietary-license_249.RULE +++ b/src/licensedcode/data/rules/proprietary-license_249.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + destined for hobbyist and non-commercial usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_249.yml b/src/licensedcode/data/rules/proprietary-license_249.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_25.RULE b/src/licensedcode/data/rules/proprietary-license_25.RULE index 8baeb02181a..1a2fd350e5a 100644 --- a/src/licensedcode/data/rules/proprietary-license_25.RULE +++ b/src/licensedcode/data/rules/proprietary-license_25.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/PeterWaher/IoTGateway#license +--- + https://github.com/PeterWaher/IoTGateway#license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_25.yml b/src/licensedcode/data/rules/proprietary-license_25.yml deleted file mode 100644 index 1bc7f6ed6e4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/PeterWaher/IoTGateway#license diff --git a/src/licensedcode/data/rules/proprietary-license_250.RULE b/src/licensedcode/data/rules/proprietary-license_250.RULE index 0cafe96d507..0fd598d6331 100644 --- a/src/licensedcode/data/rules/proprietary-license_250.RULE +++ b/src/licensedcode/data/rules/proprietary-license_250.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + non-commercial usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_250.yml b/src/licensedcode/data/rules/proprietary-license_250.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_251.RULE b/src/licensedcode/data/rules/proprietary-license_251.RULE index a971d5512e5..eb21f29f9de 100644 --- a/src/licensedcode/data/rules/proprietary-license_251.RULE +++ b/src/licensedcode/data/rules/proprietary-license_251.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + for non-commercial usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_251.yml b/src/licensedcode/data/rules/proprietary-license_251.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_252.RULE b/src/licensedcode/data/rules/proprietary-license_252.RULE index b7dc2ca079f..c782e26ab99 100644 --- a/src/licensedcode/data/rules/proprietary-license_252.RULE +++ b/src/licensedcode/data/rules/proprietary-license_252.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + It is shared for free for non-commercial usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_252.yml b/src/licensedcode/data/rules/proprietary-license_252.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_253.RULE b/src/licensedcode/data/rules/proprietary-license_253.RULE index 476371d27d3..68cfd4be9c8 100644 --- a/src/licensedcode/data/rules/proprietary-license_253.RULE +++ b/src/licensedcode/data/rules/proprietary-license_253.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + non-commercial usage only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_253.yml b/src/licensedcode/data/rules/proprietary-license_253.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_253.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_254.RULE b/src/licensedcode/data/rules/proprietary-license_254.RULE index 1c775cf870b..0f21fa10320 100644 --- a/src/licensedcode/data/rules/proprietary-license_254.RULE +++ b/src/licensedcode/data/rules/proprietary-license_254.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Academic license - for non-commercial use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_254.yml b/src/licensedcode/data/rules/proprietary-license_254.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_254.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_255.RULE b/src/licensedcode/data/rules/proprietary-license_255.RULE index 0bb39a8a501..9a6d1a620e2 100644 --- a/src/licensedcode/data/rules/proprietary-license_255.RULE +++ b/src/licensedcode/data/rules/proprietary-license_255.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + license - for non-commercial use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_255.yml b/src/licensedcode/data/rules/proprietary-license_255.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_255.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_256.RULE b/src/licensedcode/data/rules/proprietary-license_256.RULE index 81eb785a1f5..7542981c677 100644 --- a/src/licensedcode/data/rules/proprietary-license_256.RULE +++ b/src/licensedcode/data/rules/proprietary-license_256.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Licensed for free non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_256.yml b/src/licensedcode/data/rules/proprietary-license_256.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_257.RULE b/src/licensedcode/data/rules/proprietary-license_257.RULE index 73d0bf25594..9f480ea2971 100644 --- a/src/licensedcode/data/rules/proprietary-license_257.RULE +++ b/src/licensedcode/data/rules/proprietary-license_257.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + permitted for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_257.yml b/src/licensedcode/data/rules/proprietary-license_257.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_257.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_258.RULE b/src/licensedcode/data/rules/proprietary-license_258.RULE index 17dc2e1858e..c406074cf44 100644 --- a/src/licensedcode/data/rules/proprietary-license_258.RULE +++ b/src/licensedcode/data/rules/proprietary-license_258.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + for evaluation or non-commercial use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_258.yml b/src/licensedcode/data/rules/proprietary-license_258.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_259.RULE b/src/licensedcode/data/rules/proprietary-license_259.RULE index b87d64c15d6..36d3964ef4a 100644 --- a/src/licensedcode/data/rules/proprietary-license_259.RULE +++ b/src/licensedcode/data/rules/proprietary-license_259.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + only for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_259.yml b/src/licensedcode/data/rules/proprietary-license_259.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_26.RULE b/src/licensedcode/data/rules/proprietary-license_26.RULE index f5397b08bd0..1e6b69158b6 100644 --- a/src/licensedcode/data/rules/proprietary-license_26.RULE +++ b/src/licensedcode/data/rules/proprietary-license_26.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://logify.devexpress.com/Terms +--- + https://logify.devexpress.com/Terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_26.yml b/src/licensedcode/data/rules/proprietary-license_26.yml deleted file mode 100644 index 43351fc94cf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://logify.devexpress.com/Terms diff --git a/src/licensedcode/data/rules/proprietary-license_260.RULE b/src/licensedcode/data/rules/proprietary-license_260.RULE index 76e87e1048b..96f151d7465 100644 --- a/src/licensedcode/data/rules/proprietary-license_260.RULE +++ b/src/licensedcode/data/rules/proprietary-license_260.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + For non-profit and/or non-commercial usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_260.yml b/src/licensedcode/data/rules/proprietary-license_260.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_261.RULE b/src/licensedcode/data/rules/proprietary-license_261.RULE index de9aa0a0d26..ac194e79ffb 100644 --- a/src/licensedcode/data/rules/proprietary-license_261.RULE +++ b/src/licensedcode/data/rules/proprietary-license_261.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + For non-profit and/or non-commercial usage-- as long as your stuff is not racist, hateful, or anti-Christian, you are free to use it as you wish! \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_261.yml b/src/licensedcode/data/rules/proprietary-license_261.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_262.RULE b/src/licensedcode/data/rules/proprietary-license_262.RULE index 45497e02410..3ceac6c2313 100644 --- a/src/licensedcode/data/rules/proprietary-license_262.RULE +++ b/src/licensedcode/data/rules/proprietary-license_262.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Non-commercial usage license granted to all. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_262.yml b/src/licensedcode/data/rules/proprietary-license_262.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_263.RULE b/src/licensedcode/data/rules/proprietary-license_263.RULE index b062643f171..af49ba20ec1 100644 --- a/src/licensedcode/data/rules/proprietary-license_263.RULE +++ b/src/licensedcode/data/rules/proprietary-license_263.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Non-commercial usage is allowed without any restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_263.yml b/src/licensedcode/data/rules/proprietary-license_263.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_264.RULE b/src/licensedcode/data/rules/proprietary-license_264.RULE index 8c21b7a439d..75bf8bb457e 100644 --- a/src/licensedcode/data/rules/proprietary-license_264.RULE +++ b/src/licensedcode/data/rules/proprietary-license_264.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + freeware and may be freely redistributed as long as no modifications are made and nothing is charged for it. Non-commercial usage is allowed without any restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_264.yml b/src/licensedcode/data/rules/proprietary-license_264.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_265.RULE b/src/licensedcode/data/rules/proprietary-license_265.RULE index 8e17cbc0cc7..765f7d9dc00 100644 --- a/src/licensedcode/data/rules/proprietary-license_265.RULE +++ b/src/licensedcode/data/rules/proprietary-license_265.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + free for academic & non-commercial usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_265.yml b/src/licensedcode/data/rules/proprietary-license_265.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_266.RULE b/src/licensedcode/data/rules/proprietary-license_266.RULE index 6f56c402505..bc8081fb43c 100644 --- a/src/licensedcode/data/rules/proprietary-license_266.RULE +++ b/src/licensedcode/data/rules/proprietary-license_266.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This collection of url lists may be used for free for non commercial usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_266.yml b/src/licensedcode/data/rules/proprietary-license_266.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_267.RULE b/src/licensedcode/data/rules/proprietary-license_267.RULE index 65e69a3039e..166405a988b 100644 --- a/src/licensedcode/data/rules/proprietary-license_267.RULE +++ b/src/licensedcode/data/rules/proprietary-license_267.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + may be used for free for non commercial usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_267.yml b/src/licensedcode/data/rules/proprietary-license_267.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_268.RULE b/src/licensedcode/data/rules/proprietary-license_268.RULE index 3731d372c3b..7f0f769459b 100644 --- a/src/licensedcode/data/rules/proprietary-license_268.RULE +++ b/src/licensedcode/data/rules/proprietary-license_268.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This software is free for non-commercial usage only. It must not be distributed without prior permission of the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_268.yml b/src/licensedcode/data/rules/proprietary-license_268.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_269.RULE b/src/licensedcode/data/rules/proprietary-license_269.RULE index f324b530c62..0c876039e51 100644 --- a/src/licensedcode/data/rules/proprietary-license_269.RULE +++ b/src/licensedcode/data/rules/proprietary-license_269.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This software is free for non-commercial usage only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_269.yml b/src/licensedcode/data/rules/proprietary-license_269.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_27.RULE b/src/licensedcode/data/rules/proprietary-license_27.RULE index dbfed46a43a..834f0185455 100644 --- a/src/licensedcode/data/rules/proprietary-license_27.RULE +++ b/src/licensedcode/data/rules/proprietary-license_27.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://rocksolidknowledge.blob.core.windows.net/umbraco-media/Licenses/LICENSE +--- + https://rocksolidknowledge.blob.core.windows.net/umbraco-media/Licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_27.yml b/src/licensedcode/data/rules/proprietary-license_27.yml deleted file mode 100644 index a34e8c25385..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://rocksolidknowledge.blob.core.windows.net/umbraco-media/Licenses/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_270.RULE b/src/licensedcode/data/rules/proprietary-license_270.RULE index 8ab935c8047..a4f20ef63ab 100644 --- a/src/licensedcode/data/rules/proprietary-license_270.RULE +++ b/src/licensedcode/data/rules/proprietary-license_270.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + all in the public domain for non-commercial usage! \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_270.yml b/src/licensedcode/data/rules/proprietary-license_270.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_271.RULE b/src/licensedcode/data/rules/proprietary-license_271.RULE index 9105172e6da..759a48e3be2 100644 --- a/src/licensedcode/data/rules/proprietary-license_271.RULE +++ b/src/licensedcode/data/rules/proprietary-license_271.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Commercial Usage: \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_271.yml b/src/licensedcode/data/rules/proprietary-license_271.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_272.RULE b/src/licensedcode/data/rules/proprietary-license_272.RULE index a91ac32cf19..cb3bde24654 100644 --- a/src/licensedcode/data/rules/proprietary-license_272.RULE +++ b/src/licensedcode/data/rules/proprietary-license_272.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Commercial Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_272.yml b/src/licensedcode/data/rules/proprietary-license_272.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_273.RULE b/src/licensedcode/data/rules/proprietary-license_273.RULE index 766ce7ca0c8..9b81a894ae2 100644 --- a/src/licensedcode/data/rules/proprietary-license_273.RULE +++ b/src/licensedcode/data/rules/proprietary-license_273.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + freely redistrutable, but programs linked to that are strictly for non-commercial usage only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_273.yml b/src/licensedcode/data/rules/proprietary-license_273.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_274.RULE b/src/licensedcode/data/rules/proprietary-license_274.RULE index 86d39226256..bd00ed8295d 100644 --- a/src/licensedcode/data/rules/proprietary-license_274.RULE +++ b/src/licensedcode/data/rules/proprietary-license_274.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + freely redistrutable, but programs linked to that are strictly for non-commercial usage only. *You* are liable for whatever violations of this licence occur \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_274.yml b/src/licensedcode/data/rules/proprietary-license_274.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_275.RULE b/src/licensedcode/data/rules/proprietary-license_275.RULE index 70f852afb76..c2bf2be343d 100644 --- a/src/licensedcode/data/rules/proprietary-license_275.RULE +++ b/src/licensedcode/data/rules/proprietary-license_275.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This Record Material And The Data Recorded Thereon Are Licensed From and Are The Property Of Linotype Or Its Licensors And May Not Be Reproduced, Used, Displayed, Modified, Disclosed Or Transferred In Any Manner Without The Express Written Approval Of Linotype. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_275.yml b/src/licensedcode/data/rules/proprietary-license_275.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_276.RULE b/src/licensedcode/data/rules/proprietary-license_276.RULE index 1444d518744..a835b4483f8 100644 --- a/src/licensedcode/data/rules/proprietary-license_276.RULE +++ b/src/licensedcode/data/rules/proprietary-license_276.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + may not be modified. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_276.yml b/src/licensedcode/data/rules/proprietary-license_276.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_277.RULE b/src/licensedcode/data/rules/proprietary-license_277.RULE index ee8c96b4bd5..829e7591442 100644 --- a/src/licensedcode/data/rules/proprietary-license_277.RULE +++ b/src/licensedcode/data/rules/proprietary-license_277.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + You must register this license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_277.yml b/src/licensedcode/data/rules/proprietary-license_277.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_277.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_278.RULE b/src/licensedcode/data/rules/proprietary-license_278.RULE index 41fa4efcfc3..15c43d97985 100644 --- a/src/licensedcode/data/rules/proprietary-license_278.RULE +++ b/src/licensedcode/data/rules/proprietary-license_278.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + All use of the Original Code (GIPS iLBC, and code provided by GIPS as part of any related IETF Standard or draft standard) is subject to the complete Global IP Solutions iLBC Public License, IETF Standard, Limited Commercial Use (the (“License”). By accessing the Original Code You agree to the License terms. PLEASE SEE THE COMPLETE LICENSE BELOW FOR diff --git a/src/licensedcode/data/rules/proprietary-license_278.yml b/src/licensedcode/data/rules/proprietary-license_278.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_278.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_279.RULE b/src/licensedcode/data/rules/proprietary-license_279.RULE index 4be5042bbcf..491d1d322c0 100644 --- a/src/licensedcode/data/rules/proprietary-license_279.RULE +++ b/src/licensedcode/data/rules/proprietary-license_279.RULE @@ -1,3 +1,16 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 40 +ignorable_urls: + - http://www.spikesource.com/privacy-policy + - http://www.spikesource.com/terms-of-service +ignorable_emails: + - dmca@spikesource.com + - legal@spikesource.com +--- + Terms of Service IN THESE TERMS AND CONDITIONS, "WE," "US," "ITS" AND "OUR" REFER TO SPIKESOURCE, INC. ("SpikeSource"), AND "YOU" AND "YOUR" REFER TO YOU. Before using SpikeSource.com and developer.spikesource.com, please read this agreement relating to your use of these Websites carefully. diff --git a/src/licensedcode/data/rules/proprietary-license_279.yml b/src/licensedcode/data/rules/proprietary-license_279.yml deleted file mode 100644 index a888d105872..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_279.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 40 -ignorable_urls: - - http://www.spikesource.com/privacy-policy - - http://www.spikesource.com/terms-of-service -ignorable_emails: - - dmca@spikesource.com - - legal@spikesource.com diff --git a/src/licensedcode/data/rules/proprietary-license_28.RULE b/src/licensedcode/data/rules/proprietary-license_28.RULE index 1ae969aafa5..03149afae37 100644 --- a/src/licensedcode/data/rules/proprietary-license_28.RULE +++ b/src/licensedcode/data/rules/proprietary-license_28.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.abelsoftware.com/implementing-abel/licensing +--- + https://www.abelsoftware.com/implementing-abel/licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_28.yml b/src/licensedcode/data/rules/proprietary-license_28.yml deleted file mode 100644 index 7a6995643c5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.abelsoftware.com/implementing-abel/licensing diff --git a/src/licensedcode/data/rules/proprietary-license_280.RULE b/src/licensedcode/data/rules/proprietary-license_280.RULE index 83976ee80fb..0cf149d6011 100644 --- a/src/licensedcode/data/rules/proprietary-license_280.RULE +++ b/src/licensedcode/data/rules/proprietary-license_280.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 70 +ignorable_authors: + - the University of Southern California +--- + * Permission to use, copy, modify, and distribute this software and its * documentation in source and binary forms for non-commercial purposes * and without fee is hereby granted, provided that the above copyright diff --git a/src/licensedcode/data/rules/proprietary-license_280.yml b/src/licensedcode/data/rules/proprietary-license_280.yml deleted file mode 100644 index 9ed2f7d7a6f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_280.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 70 -ignorable_authors: - - the University of Southern California diff --git a/src/licensedcode/data/rules/proprietary-license_281.RULE b/src/licensedcode/data/rules/proprietary-license_281.RULE index 5737329c911..613bc53ec65 100644 --- a/src/licensedcode/data/rules/proprietary-license_281.RULE +++ b/src/licensedcode/data/rules/proprietary-license_281.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +--- + for non-commercial purposes \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_281.yml b/src/licensedcode/data/rules/proprietary-license_281.yml deleted file mode 100644 index a2224261a4e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/proprietary-license_282.RULE b/src/licensedcode/data/rules/proprietary-license_282.RULE index 92268766ea3..d428d8fedd3 100644 --- a/src/licensedcode/data/rules/proprietary-license_282.RULE +++ b/src/licensedcode/data/rules/proprietary-license_282.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * This software is the confidential and proprietary information of * Software ("Confidential Information"). You shall not * disclose such Confidential Information and shall use it only in diff --git a/src/licensedcode/data/rules/proprietary-license_282.yml b/src/licensedcode/data/rules/proprietary-license_282.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_283.RULE b/src/licensedcode/data/rules/proprietary-license_283.RULE index a8df754c022..34264fc834e 100644 --- a/src/licensedcode/data/rules/proprietary-license_283.RULE +++ b/src/licensedcode/data/rules/proprietary-license_283.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + THIS CODE IS PLACED IN THE PUBLIC DOMAIN TO BE USED FOR C RESEARCH PURPOSES \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_283.yml b/src/licensedcode/data/rules/proprietary-license_283.yml deleted file mode 100644 index c749e35fe05..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_283.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_284.RULE b/src/licensedcode/data/rules/proprietary-license_284.RULE index 4e04269417a..1ccafdc0fe1 100644 --- a/src/licensedcode/data/rules/proprietary-license_284.RULE +++ b/src/licensedcode/data/rules/proprietary-license_284.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + THIS CODE IS PLACED IN THE PUBLIC DOMAIN TO BE USED FOR RESEARCH PURPOSES \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_284.yml b/src/licensedcode/data/rules/proprietary-license_284.yml deleted file mode 100644 index c749e35fe05..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_284.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_285.RULE b/src/licensedcode/data/rules/proprietary-license_285.RULE index f0108928ce1..914ee77f25a 100644 --- a/src/licensedcode/data/rules/proprietary-license_285.RULE +++ b/src/licensedcode/data/rules/proprietary-license_285.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyright by CRYPTOCard. CRYPTOCard +ignorable_holders: + - CRYPTOCard. CRYPTOCard +--- + LEGAL: This code is placed into the public domain, hence requires no license or runtime fees. However this code is copyright by CRYPTOCard. CRYPTOCard grants anyone who may wish to use, modify diff --git a/src/licensedcode/data/rules/proprietary-license_285.yml b/src/licensedcode/data/rules/proprietary-license_285.yml deleted file mode 100644 index 81f52a7c228..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_285.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyright by CRYPTOCard. CRYPTOCard -ignorable_holders: - - CRYPTOCard. CRYPTOCard diff --git a/src/licensedcode/data/rules/proprietary-license_286.RULE b/src/licensedcode/data/rules/proprietary-license_286.RULE index 0c5fc5437d6..c05c52b23ef 100644 --- a/src/licensedcode/data/rules/proprietary-license_286.RULE +++ b/src/licensedcode/data/rules/proprietary-license_286.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + The examples provided by Facebook are for non-commercial testing and evaluation purposes only. Facebook reserves all rights not expressly granted. diff --git a/src/licensedcode/data/rules/proprietary-license_286.yml b/src/licensedcode/data/rules/proprietary-license_286.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_286.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_287.RULE b/src/licensedcode/data/rules/proprietary-license_287.RULE index 0cff1a1bac8..ee65c8e6022 100644 --- a/src/licensedcode/data/rules/proprietary-license_287.RULE +++ b/src/licensedcode/data/rules/proprietary-license_287.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + These are "freeware", not to be sold. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_287.yml b/src/licensedcode/data/rules/proprietary-license_287.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_287.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_288.RULE b/src/licensedcode/data/rules/proprietary-license_288.RULE index 7a192543f9c..d45b27ab970 100644 --- a/src/licensedcode/data/rules/proprietary-license_288.RULE +++ b/src/licensedcode/data/rules/proprietary-license_288.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: similar to the intel license +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_288.yml b/src/licensedcode/data/rules/proprietary-license_288.yml deleted file mode 100644 index 91c7fd88e2c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_288.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: similar to the intel license -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/rules/proprietary-license_289.RULE b/src/licensedcode/data/rules/proprietary-license_289.RULE index ec95870ae3e..d87f766816b 100644 --- a/src/licensedcode/data/rules/proprietary-license_289.RULE +++ b/src/licensedcode/data/rules/proprietary-license_289.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.paratype.ru/ +--- + FONT LICENSE PERMISSION CONDITIONS diff --git a/src/licensedcode/data/rules/proprietary-license_289.yml b/src/licensedcode/data/rules/proprietary-license_289.yml deleted file mode 100644 index 65e2391d07a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_289.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.paratype.ru/ diff --git a/src/licensedcode/data/rules/proprietary-license_29.RULE b/src/licensedcode/data/rules/proprietary-license_29.RULE index c585434fbb5..9816c679177 100644 --- a/src/licensedcode/data/rules/proprietary-license_29.RULE +++ b/src/licensedcode/data/rules/proprietary-license_29.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.atalasoft.com/Pricing/Licensing-Overview +--- + https://www.atalasoft.com/Pricing/Licensing-Overview \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_29.yml b/src/licensedcode/data/rules/proprietary-license_29.yml deleted file mode 100644 index 8e83af51e15..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.atalasoft.com/Pricing/Licensing-Overview diff --git a/src/licensedcode/data/rules/proprietary-license_290.RULE b/src/licensedcode/data/rules/proprietary-license_290.RULE index 86182eef277..b818660f013 100644 --- a/src/licensedcode/data/rules/proprietary-license_290.RULE +++ b/src/licensedcode/data/rules/proprietary-license_290.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://input.fontbureau.com/license/ +--- + `Input’s license `_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_290.yml b/src/licensedcode/data/rules/proprietary-license_290.yml deleted file mode 100644 index c3a3cf78819..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_290.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://input.fontbureau.com/license/ diff --git a/src/licensedcode/data/rules/proprietary-license_291.RULE b/src/licensedcode/data/rules/proprietary-license_291.RULE index f93b913720c..2ea0a3b8791 100644 --- a/src/licensedcode/data/rules/proprietary-license_291.RULE +++ b/src/licensedcode/data/rules/proprietary-license_291.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://input.fontbureau.com/license/ +--- + Font Software License Agreement This License Agreement is a legal Agreement between you and the publisher; please read it carefully. This Font Software was developed specially for use by software developers and includes special terms dedicated to promoting the use of the Font Software for such purposes. diff --git a/src/licensedcode/data/rules/proprietary-license_291.yml b/src/licensedcode/data/rules/proprietary-license_291.yml deleted file mode 100644 index c6b6e59cc40..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_291.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://input.fontbureau.com/license/ diff --git a/src/licensedcode/data/rules/proprietary-license_292.RULE b/src/licensedcode/data/rules/proprietary-license_292.RULE index 6ae65ee668f..8438e11d9d7 100644 --- a/src/licensedcode/data/rules/proprietary-license_292.RULE +++ b/src/licensedcode/data/rules/proprietary-license_292.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Use of this source code is governed by the Polyform License that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_292.yml b/src/licensedcode/data/rules/proprietary-license_292.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_293.RULE b/src/licensedcode/data/rules/proprietary-license_293.RULE index 223150504ce..4c73fef2758 100644 --- a/src/licensedcode/data/rules/proprietary-license_293.RULE +++ b/src/licensedcode/data/rules/proprietary-license_293.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://github.com/drone/drone +--- + Drone Non-Commercial License Contributor: Drone.IO, Inc. diff --git a/src/licensedcode/data/rules/proprietary-license_293.yml b/src/licensedcode/data/rules/proprietary-license_293.yml deleted file mode 100644 index 18d37d46b56..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_293.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://github.com/drone/drone diff --git a/src/licensedcode/data/rules/proprietary-license_294.RULE b/src/licensedcode/data/rules/proprietary-license_294.RULE index 05face9869c..a9c06f47c29 100644 --- a/src/licensedcode/data/rules/proprietary-license_294.RULE +++ b/src/licensedcode/data/rules/proprietary-license_294.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + // * This software is furnished under a license and may be used and copied * // * only in accordance with the terms of such license and with the * // * inclusion of the above copyright notice. This software or any other * diff --git a/src/licensedcode/data/rules/proprietary-license_294.yml b/src/licensedcode/data/rules/proprietary-license_294.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_295.RULE b/src/licensedcode/data/rules/proprietary-license_295.RULE index 7b26db9eef4..e96363ef26b 100644 --- a/src/licensedcode/data/rules/proprietary-license_295.RULE +++ b/src/licensedcode/data/rules/proprietary-license_295.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: see https://raw.githubusercontent.com/PrefectHQ/prefect/master/LICENSE-PREFECT +--- + Prefect Community License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_295.yml b/src/licensedcode/data/rules/proprietary-license_295.yml deleted file mode 100644 index fbed90af347..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_295.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: see https://raw.githubusercontent.com/PrefectHQ/prefect/master/LICENSE-PREFECT diff --git a/src/licensedcode/data/rules/proprietary-license_296.RULE b/src/licensedcode/data/rules/proprietary-license_296.RULE index 74490bbd7cc..5ba18f8c670 100644 --- a/src/licensedcode/data/rules/proprietary-license_296.RULE +++ b/src/licensedcode/data/rules/proprietary-license_296.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: see https://raw.githubusercontent.com/PrefectHQ/prefect/master/LICENSE-PREFECT +ignorable_urls: + - https://www.prefect.io/legal/prefect-community-license +--- + Prefect Community License Version 1.0 diff --git a/src/licensedcode/data/rules/proprietary-license_296.yml b/src/licensedcode/data/rules/proprietary-license_296.yml deleted file mode 100644 index 903788d1180..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_296.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: see https://raw.githubusercontent.com/PrefectHQ/prefect/master/LICENSE-PREFECT -ignorable_urls: - - https://www.prefect.io/legal/prefect-community-license diff --git a/src/licensedcode/data/rules/proprietary-license_297.RULE b/src/licensedcode/data/rules/proprietary-license_297.RULE index 4b6385f0a41..b282776672a 100644 --- a/src/licensedcode/data/rules/proprietary-license_297.RULE +++ b/src/licensedcode/data/rules/proprietary-license_297.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + INTEL SOFTWARE LICENSE AGREEMENT IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. diff --git a/src/licensedcode/data/rules/proprietary-license_297.yml b/src/licensedcode/data/rules/proprietary-license_297.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_298.RULE b/src/licensedcode/data/rules/proprietary-license_298.RULE index 46a2cfe1703..32fecb7b130 100644 --- a/src/licensedcode/data/rules/proprietary-license_298.RULE +++ b/src/licensedcode/data/rules/proprietary-license_298.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This copy is for your personal, non-commercial use only. To order presentation-ready copies for distribution to your colleagues, clients or customers, use the Order Reprints tool at the bottom of any article or visit \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_298.yml b/src/licensedcode/data/rules/proprietary-license_298.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_299.RULE b/src/licensedcode/data/rules/proprietary-license_299.RULE index 4e51e032dd1..291ab20b04a 100644 --- a/src/licensedcode/data/rules/proprietary-license_299.RULE +++ b/src/licensedcode/data/rules/proprietary-license_299.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This copy is for your personal, non-commercial use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_299.yml b/src/licensedcode/data/rules/proprietary-license_299.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_3.RULE b/src/licensedcode/data/rules/proprietary-license_3.RULE index 2f5462c11bd..7e7213309ee 100644 --- a/src/licensedcode/data/rules/proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/proprietary-license_3.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + All rights reserved - Do Not Redistribute \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_3.yml b/src/licensedcode/data/rules/proprietary-license_3.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_30.RULE b/src/licensedcode/data/rules/proprietary-license_30.RULE index 8d6b505b1b4..d700e1f2ba6 100644 --- a/src/licensedcode/data/rules/proprietary-license_30.RULE +++ b/src/licensedcode/data/rules/proprietary-license_30.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.grapecity.com/en/licensing/grapecity/ +--- + https://www.grapecity.com/en/licensing/grapecity/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_30.yml b/src/licensedcode/data/rules/proprietary-license_30.yml deleted file mode 100644 index 037d1fab088..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.grapecity.com/en/licensing/grapecity/ diff --git a/src/licensedcode/data/rules/proprietary-license_300.RULE b/src/licensedcode/data/rules/proprietary-license_300.RULE index 5c55ed93984..b47c3c0f35e 100644 --- a/src/licensedcode/data/rules/proprietary-license_300.RULE +++ b/src/licensedcode/data/rules/proprietary-license_300.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + for your personal, non-commercial use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_300.yml b/src/licensedcode/data/rules/proprietary-license_300.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_301.RULE b/src/licensedcode/data/rules/proprietary-license_301.RULE index 8c1a616c0bb..4e21cf278b0 100644 --- a/src/licensedcode/data/rules/proprietary-license_301.RULE +++ b/src/licensedcode/data/rules/proprietary-license_301.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_authors: + - Charles B. Kramer, Attorney Internet (72600.2026@compuserve.com) +ignorable_emails: + - 72600.2026@compuserve.com +--- + **Information prepared by the Project Gutenberg legal advisor** (Three Pages) diff --git a/src/licensedcode/data/rules/proprietary-license_301.yml b/src/licensedcode/data/rules/proprietary-license_301.yml deleted file mode 100644 index 990fb74c866..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_301.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_authors: - - Charles B. Kramer, Attorney Internet (72600.2026@compuserve.com) -ignorable_emails: - - 72600.2026@compuserve.com diff --git a/src/licensedcode/data/rules/proprietary-license_302.RULE b/src/licensedcode/data/rules/proprietary-license_302.RULE index 4afd7a5e53b..11265177e8a 100644 --- a/src/licensedcode/data/rules/proprietary-license_302.RULE +++ b/src/licensedcode/data/rules/proprietary-license_302.RULE @@ -1,3 +1,16 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: from https://trustedcomputinggroup.org/wp-content/uploads/TCG_TPM2_r1p59_Part4_SuppRoutines_code_pub.pdf +ignorable_copyrights: + - Copyright Licenses Trusted Computing Group +ignorable_holders: + - Licenses Trusted Computing Group +ignorable_emails: + - admin@trustedcomputinggroup.org +--- + Licenses and Notices Copyright Licenses: • Trusted Computing Group (TCG) grants to the user of the source code in this specification (the diff --git a/src/licensedcode/data/rules/proprietary-license_302.yml b/src/licensedcode/data/rules/proprietary-license_302.yml deleted file mode 100644 index 25ef291488b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_302.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: from https://trustedcomputinggroup.org/wp-content/uploads/TCG_TPM2_r1p59_Part4_SuppRoutines_code_pub.pdf -ignorable_copyrights: - - Copyright Licenses Trusted Computing Group -ignorable_holders: - - Licenses Trusted Computing Group -ignorable_emails: - - admin@trustedcomputinggroup.org diff --git a/src/licensedcode/data/rules/proprietary-license_303.RULE b/src/licensedcode/data/rules/proprietary-license_303.RULE index d7352a42098..46590a73506 100644 --- a/src/licensedcode/data/rules/proprietary-license_303.RULE +++ b/src/licensedcode/data/rules/proprietary-license_303.RULE @@ -1,3 +1,17 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: http://dotween.demigiant.com/license.php https://github.com/RyanMallett/UltraCowboyMelee/blob/2fea8a585364215ddbfa0f49e1c2677a5262a005/Assets/Demigiant/DemiLib/LICENSE.md + https://github.com/haramako/tcg/blob/65ceba83cdee07a5698c8d8360534325150379d4/Data/Other/License.txt + https://assets.ctfassets.net/bl73eiperqoo/4ras1egZiUcmkuASkw8oCA/2ab1b5139f735333d078ad3a32bff309/Tonandi_Open_Source_Notices.txt + http://metagames.gg/licenses +ignorable_copyrights: + - Copyright Holder Daniele Giardini +ignorable_holders: + - Daniele Giardini +--- + Non-legalese summary You can freely use DOTween in both commercial and non-commercial projects. diff --git a/src/licensedcode/data/rules/proprietary-license_303.yml b/src/licensedcode/data/rules/proprietary-license_303.yml deleted file mode 100644 index 23e9de6d2de..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_303.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: http://dotween.demigiant.com/license.php https://github.com/RyanMallett/UltraCowboyMelee/blob/2fea8a585364215ddbfa0f49e1c2677a5262a005/Assets/Demigiant/DemiLib/LICENSE.md - https://github.com/haramako/tcg/blob/65ceba83cdee07a5698c8d8360534325150379d4/Data/Other/License.txt - https://assets.ctfassets.net/bl73eiperqoo/4ras1egZiUcmkuASkw8oCA/2ab1b5139f735333d078ad3a32bff309/Tonandi_Open_Source_Notices.txt - http://metagames.gg/licenses -ignorable_copyrights: - - Copyright Holder Daniele Giardini -ignorable_holders: - - Daniele Giardini diff --git a/src/licensedcode/data/rules/proprietary-license_304.RULE b/src/licensedcode/data/rules/proprietary-license_304.RULE index 4b5e3dea798..21a28b72eb2 100644 --- a/src/licensedcode/data/rules/proprietary-license_304.RULE +++ b/src/licensedcode/data/rules/proprietary-license_304.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://raw.githubusercontent.com/WinMerge/freeimage/f8c084fbf8917223c4925fe23f5621229724c58d/Source/OpenEXR/Copyrights/openexr/PATENTS + this is very similar to other BSD additions from Google such as google-patent-license-golang, + but the wording makes it more restrictive. +--- + Additional IP Rights Grant (Patents) "DreamWorks Lossy Compression" means the copyrightable works distributed by DreamWorks Animation as part of the OpenEXR Project. Within the OpenEXR project, DreamWorks Animation hereby grants to you diff --git a/src/licensedcode/data/rules/proprietary-license_304.yml b/src/licensedcode/data/rules/proprietary-license_304.yml deleted file mode 100644 index c83fc9abe50..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_304.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://raw.githubusercontent.com/WinMerge/freeimage/f8c084fbf8917223c4925fe23f5621229724c58d/Source/OpenEXR/Copyrights/openexr/PATENTS - this is very similar to other BSD additions from Google such as google-patent-license-golang, - but the wording makes it more restrictive. diff --git a/src/licensedcode/data/rules/proprietary-license_305.RULE b/src/licensedcode/data/rules/proprietary-license_305.RULE index f838f6b5a78..af3744440a3 100644 --- a/src/licensedcode/data/rules/proprietary-license_305.RULE +++ b/src/licensedcode/data/rules/proprietary-license_305.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.sflow.org/ +--- + LICENSE AGREEMENT PLEASE READ THIS LICENSE AGREEMENT ("AGREEMENT") CAREFULLY BEFORE REPRODUCING OR IN ANY WAY diff --git a/src/licensedcode/data/rules/proprietary-license_305.yml b/src/licensedcode/data/rules/proprietary-license_305.yml deleted file mode 100644 index b8df08d9fc7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_305.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.sflow.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_306.RULE b/src/licensedcode/data/rules/proprietary-license_306.RULE index e4e38ac7011..964ab7566d6 100644 --- a/src/licensedcode/data/rules/proprietary-license_306.RULE +++ b/src/licensedcode/data/rules/proprietary-license_306.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + web site is copyrighted. You are not allowed to use any data you harvest directly from the web site for anything except personal use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_306.yml b/src/licensedcode/data/rules/proprietary-license_306.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_306.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_307.RULE b/src/licensedcode/data/rules/proprietary-license_307.RULE index f66b9befc3f..35f9ff251b8 100644 --- a/src/licensedcode/data/rules/proprietary-license_307.RULE +++ b/src/licensedcode/data/rules/proprietary-license_307.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Samsung grants permission to use and redistribute aforementioned firmware files for the use with Exynos series devices, but not as part of the Linux kernel, or in any other form which would require these files themselves diff --git a/src/licensedcode/data/rules/proprietary-license_307.yml b/src/licensedcode/data/rules/proprietary-license_307.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_308.RULE b/src/licensedcode/data/rules/proprietary-license_308.RULE index 62308adc7b5..bcb2f8e58d7 100644 --- a/src/licensedcode/data/rules/proprietary-license_308.RULE +++ b/src/licensedcode/data/rules/proprietary-license_308.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Conexant grants permission to use and redistribute these firmware files for use with Conexant devices, but not as a part of the Linux kernel or in any other form which would require these files themselves diff --git a/src/licensedcode/data/rules/proprietary-license_308.yml b/src/licensedcode/data/rules/proprietary-license_308.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_308.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_309.RULE b/src/licensedcode/data/rules/proprietary-license_309.RULE index f6dfc2a2ee2..bb30f921a37 100644 --- a/src/licensedcode/data/rules/proprietary-license_309.RULE +++ b/src/licensedcode/data/rules/proprietary-license_309.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + grants permission to use and redistribute aforementioned firmware files for the use with devices, but not as part of the Linux kernel, or in any other form which would require these files themselves diff --git a/src/licensedcode/data/rules/proprietary-license_309.yml b/src/licensedcode/data/rules/proprietary-license_309.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_31.RULE b/src/licensedcode/data/rules/proprietary-license_31.RULE index ba02c36a93b..cf23251ab2e 100644 --- a/src/licensedcode/data/rules/proprietary-license_31.RULE +++ b/src/licensedcode/data/rules/proprietary-license_31.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.steema.com/licensing/net +--- + https://www.steema.com/licensing/net \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_31.yml b/src/licensedcode/data/rules/proprietary-license_31.yml deleted file mode 100644 index 0d24a6ced2b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.steema.com/licensing/net diff --git a/src/licensedcode/data/rules/proprietary-license_310.RULE b/src/licensedcode/data/rules/proprietary-license_310.RULE index 219460890d0..e5325a200fe 100644 --- a/src/licensedcode/data/rules/proprietary-license_310.RULE +++ b/src/licensedcode/data/rules/proprietary-license_310.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + grants permission to use and redistribute these firmware files for use with devices, but not as a part of the Linux kernel or in any other form which would require these files themselves diff --git a/src/licensedcode/data/rules/proprietary-license_310.yml b/src/licensedcode/data/rules/proprietary-license_310.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_311.RULE b/src/licensedcode/data/rules/proprietary-license_311.RULE index 33663713d88..f79b3efc318 100644 --- a/src/licensedcode/data/rules/proprietary-license_311.RULE +++ b/src/licensedcode/data/rules/proprietary-license_311.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Comtrol grants permission to use and redistribute these firmware files for use with Comtrol devices, but not as part of the Linux kernel or in any other form which would require these files themselves diff --git a/src/licensedcode/data/rules/proprietary-license_311.yml b/src/licensedcode/data/rules/proprietary-license_311.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_312.RULE b/src/licensedcode/data/rules/proprietary-license_312.RULE index a97f418d20a..d9f9a18b9a3 100644 --- a/src/licensedcode/data/rules/proprietary-license_312.RULE +++ b/src/licensedcode/data/rules/proprietary-license_312.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + License: Binary redistribution (Comtrol) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_312.yml b/src/licensedcode/data/rules/proprietary-license_312.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_312.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_313.RULE b/src/licensedcode/data/rules/proprietary-license_313.RULE index c2d01454d3a..4bcf2acb8b9 100644 --- a/src/licensedcode/data/rules/proprietary-license_313.RULE +++ b/src/licensedcode/data/rules/proprietary-license_313.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Binary redistribution (Conexant) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_313.yml b/src/licensedcode/data/rules/proprietary-license_313.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_314.RULE b/src/licensedcode/data/rules/proprietary-license_314.RULE index c6d9669147c..3b233e4b919 100644 --- a/src/licensedcode/data/rules/proprietary-license_314.RULE +++ b/src/licensedcode/data/rules/proprietary-license_314.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 99 +--- + Binary redistribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_314.yml b/src/licensedcode/data/rules/proprietary-license_314.yml deleted file mode 100644 index 8eedebccc2a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_314.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary-license_315.RULE b/src/licensedcode/data/rules/proprietary-license_315.RULE index c22bfce25a7..2410a75ed3b 100644 --- a/src/licensedcode/data/rules/proprietary-license_315.RULE +++ b/src/licensedcode/data/rules/proprietary-license_315.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 99 +--- + Binary redistribution (Intel) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_315.yml b/src/licensedcode/data/rules/proprietary-license_315.yml deleted file mode 100644 index 8eedebccc2a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_315.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary-license_316.RULE b/src/licensedcode/data/rules/proprietary-license_316.RULE index da717a7da33..1864a449bb9 100644 --- a/src/licensedcode/data/rules/proprietary-license_316.RULE +++ b/src/licensedcode/data/rules/proprietary-license_316.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + license Binary redistribution (Conexant) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_316.yml b/src/licensedcode/data/rules/proprietary-license_316.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_316.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_317.RULE b/src/licensedcode/data/rules/proprietary-license_317.RULE index d61c12d84b5..8caa443c4af 100644 --- a/src/licensedcode/data/rules/proprietary-license_317.RULE +++ b/src/licensedcode/data/rules/proprietary-license_317.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 99 +--- + license Binary redistribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_317.yml b/src/licensedcode/data/rules/proprietary-license_317.yml deleted file mode 100644 index 5ec5e95a2c5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary-license_318.RULE b/src/licensedcode/data/rules/proprietary-license_318.RULE index 3ebb3ee9d60..cf708f7525e 100644 --- a/src/licensedcode/data/rules/proprietary-license_318.RULE +++ b/src/licensedcode/data/rules/proprietary-license_318.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 99 +--- + license Binary redistribution (Intel) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_318.yml b/src/licensedcode/data/rules/proprietary-license_318.yml deleted file mode 100644 index 5ec5e95a2c5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary-license_319.RULE b/src/licensedcode/data/rules/proprietary-license_319.RULE index 4952d3ff04e..b4fd793e1e0 100644 --- a/src/licensedcode/data/rules/proprietary-license_319.RULE +++ b/src/licensedcode/data/rules/proprietary-license_319.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: seen in the linux kernel +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_319.yml b/src/licensedcode/data/rules/proprietary-license_319.yml deleted file mode 100644 index 6d01eb0421e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_319.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: seen in the linux kernel -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/rules/proprietary-license_32.RULE b/src/licensedcode/data/rules/proprietary-license_32.RULE index 7ee1f931586..536218e67a0 100644 --- a/src/licensedcode/data/rules/proprietary-license_32.RULE +++ b/src/licensedcode/data/rules/proprietary-license_32.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.stimulsoft.com/en/licensing/reports +--- + https://www.stimulsoft.com/en/licensing/reports \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_32.yml b/src/licensedcode/data/rules/proprietary-license_32.yml deleted file mode 100644 index 76d3ee41a4f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.stimulsoft.com/en/licensing/reports diff --git a/src/licensedcode/data/rules/proprietary-license_320.RULE b/src/licensedcode/data/rules/proprietary-license_320.RULE index 841e9e70185..b9a75e5bad2 100644 --- a/src/licensedcode/data/rules/proprietary-license_320.RULE +++ b/src/licensedcode/data/rules/proprietary-license_320.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + License: License For Customer Use of NVIDIA Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_320.yml b/src/licensedcode/data/rules/proprietary-license_320.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_320.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_321.RULE b/src/licensedcode/data/rules/proprietary-license_321.RULE index 71502023932..60473b8860a 100644 --- a/src/licensedcode/data/rules/proprietary-license_321.RULE +++ b/src/licensedcode/data/rules/proprietary-license_321.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + License For Customer Use of NVIDIA Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_321.yml b/src/licensedcode/data/rules/proprietary-license_321.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_321.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_322.RULE b/src/licensedcode/data/rules/proprietary-license_322.RULE index d88aba1d7c9..e891ca860a8 100644 --- a/src/licensedcode/data/rules/proprietary-license_322.RULE +++ b/src/licensedcode/data/rules/proprietary-license_322.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + License: Binary redistribution (MTS) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_322.yml b/src/licensedcode/data/rules/proprietary-license_322.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_322.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_323.RULE b/src/licensedcode/data/rules/proprietary-license_323.RULE index 87b4110215c..e93b22f117f 100644 --- a/src/licensedcode/data/rules/proprietary-license_323.RULE +++ b/src/licensedcode/data/rules/proprietary-license_323.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Binary redistribution (MTS) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_323.yml b/src/licensedcode/data/rules/proprietary-license_323.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_323.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_324.RULE b/src/licensedcode/data/rules/proprietary-license_324.RULE index 5daf30d9e5d..8251199b030 100644 --- a/src/licensedcode/data/rules/proprietary-license_324.RULE +++ b/src/licensedcode/data/rules/proprietary-license_324.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + All firmware components are redistributable in binary form. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_324.yml b/src/licensedcode/data/rules/proprietary-license_324.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_324.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_325.RULE b/src/licensedcode/data/rules/proprietary-license_325.RULE index 0a2be018402..20cbfbd5bca 100644 --- a/src/licensedcode/data/rules/proprietary-license_325.RULE +++ b/src/licensedcode/data/rules/proprietary-license_325.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/ +--- + IMPORTANT NOTICE -- READ CAREFULLY: This License For Customer Use of NVIDIA Software ("LICENSE") is the agreement which governs use of the software of NVIDIA Corporation and its subsidiaries ("NVIDIA") diff --git a/src/licensedcode/data/rules/proprietary-license_325.yml b/src/licensedcode/data/rules/proprietary-license_325.yml deleted file mode 100644 index bdbe8b0c225..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_325.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_326.RULE b/src/licensedcode/data/rules/proprietary-license_326.RULE index 2e907ace045..8c4082f846d 100644 --- a/src/licensedcode/data/rules/proprietary-license_326.RULE +++ b/src/licensedcode/data/rules/proprietary-license_326.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: opml spec license +--- + This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and diff --git a/src/licensedcode/data/rules/proprietary-license_326.yml b/src/licensedcode/data/rules/proprietary-license_326.yml deleted file mode 100644 index 485abee5f70..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_326.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: opml spec license diff --git a/src/licensedcode/data/rules/proprietary-license_327.RULE b/src/licensedcode/data/rules/proprietary-license_327.RULE index 59390b7b977..d23a40357a6 100644 --- a/src/licensedcode/data/rules/proprietary-license_327.RULE +++ b/src/licensedcode/data/rules/proprietary-license_327.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: juluis legacy proprietary notice. See https://fedoraproject.org/wiki/Licensing/Julius +--- + In the event the terms and conditions of this license are inconsistent with the obligations imposed upon you by judgment of a court or for any other reason, you may not use the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_327.yml b/src/licensedcode/data/rules/proprietary-license_327.yml deleted file mode 100644 index 7e3b85d33cd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_327.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: juluis legacy proprietary notice. See https://fedoraproject.org/wiki/Licensing/Julius diff --git a/src/licensedcode/data/rules/proprietary-license_328.RULE b/src/licensedcode/data/rules/proprietary-license_328.RULE index e12be741c41..9dcb13e99f5 100644 --- a/src/licensedcode/data/rules/proprietary-license_328.RULE +++ b/src/licensedcode/data/rules/proprietary-license_328.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +referenced_filenames: + - LICENCE.go7007 +--- + The firmware files included in the firmware/ directory may be freely redistributed only in conjunction with this document [LICENCE.go7007]; but modification, tampering and reverse engineering are prohibited. diff --git a/src/licensedcode/data/rules/proprietary-license_328.yml b/src/licensedcode/data/rules/proprietary-license_328.yml deleted file mode 100644 index 7b3956e93b3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_328.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -referenced_filenames: - - LICENCE.go7007 diff --git a/src/licensedcode/data/rules/proprietary-license_329.RULE b/src/licensedcode/data/rules/proprietary-license_329.RULE index 33acf264ebe..50b2aa0ec75 100644 --- a/src/licensedcode/data/rules/proprietary-license_329.RULE +++ b/src/licensedcode/data/rules/proprietary-license_329.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + The firmware files included in the firmware/ directory may be freely redistributed only in conjunction with this document ; but modification, tampering and reverse engineering are prohibited. diff --git a/src/licensedcode/data/rules/proprietary-license_329.yml b/src/licensedcode/data/rules/proprietary-license_329.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_329.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_33.RULE b/src/licensedcode/data/rules/proprietary-license_33.RULE index 7da48bfd437..1d9319da607 100644 --- a/src/licensedcode/data/rules/proprietary-license_33.RULE +++ b/src/licensedcode/data/rules/proprietary-license_33.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.tcell.io/terms-2016-03-16/ +--- + https://www.tcell.io/terms-2016-03-16/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_33.yml b/src/licensedcode/data/rules/proprietary-license_33.yml deleted file mode 100644 index 3d00ede4a81..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.tcell.io/terms-2016-03-16/ diff --git a/src/licensedcode/data/rules/proprietary-license_330.RULE b/src/licensedcode/data/rules/proprietary-license_330.RULE index a877e52e56b..e0655ec56e7 100644 --- a/src/licensedcode/data/rules/proprietary-license_330.RULE +++ b/src/licensedcode/data/rules/proprietary-license_330.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Sensoray grants permission to use and redistribute these firmware files for use with Sensoray devices, but not as a part of the Linux kernel or in any other form which would require these files themselves diff --git a/src/licensedcode/data/rules/proprietary-license_330.yml b/src/licensedcode/data/rules/proprietary-license_330.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_330.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_331.RULE b/src/licensedcode/data/rules/proprietary-license_331.RULE index 9fb45d65c9f..d204d8e5b7c 100644 --- a/src/licensedcode/data/rules/proprietary-license_331.RULE +++ b/src/licensedcode/data/rules/proprietary-license_331.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + TERRATEC grants permission to use and redistribute these firmware files for use with TERRATEC devices, but not as part of the Linux kernel or in any other form which would require these files themselves diff --git a/src/licensedcode/data/rules/proprietary-license_331.yml b/src/licensedcode/data/rules/proprietary-license_331.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_331.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_332.RULE b/src/licensedcode/data/rules/proprietary-license_332.RULE index 4d74a1a6dfd..be4f97af61b 100644 --- a/src/licensedcode/data/rules/proprietary-license_332.RULE +++ b/src/licensedcode/data/rules/proprietary-license_332.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and/or distribute this software, only for use with Xceive ICs, for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission diff --git a/src/licensedcode/data/rules/proprietary-license_332.yml b/src/licensedcode/data/rules/proprietary-license_332.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_333.RULE b/src/licensedcode/data/rules/proprietary-license_333.RULE index f755db6637d..3a9a5948832 100644 --- a/src/licensedcode/data/rules/proprietary-license_333.RULE +++ b/src/licensedcode/data/rules/proprietary-license_333.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and/or distribute this software, only for use with ICs, for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission diff --git a/src/licensedcode/data/rules/proprietary-license_333.yml b/src/licensedcode/data/rules/proprietary-license_333.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_333.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_334.RULE b/src/licensedcode/data/rules/proprietary-license_334.RULE index cbea77fe351..665e35dbc44 100644 --- a/src/licensedcode/data/rules/proprietary-license_334.RULE +++ b/src/licensedcode/data/rules/proprietary-license_334.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: . diff --git a/src/licensedcode/data/rules/proprietary-license_334.yml b/src/licensedcode/data/rules/proprietary-license_334.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_334.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_335.RULE b/src/licensedcode/data/rules/proprietary-license_335.RULE index 4752686a21c..e8ac9390d81 100644 --- a/src/licensedcode/data/rules/proprietary-license_335.RULE +++ b/src/licensedcode/data/rules/proprietary-license_335.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: . diff --git a/src/licensedcode/data/rules/proprietary-license_335.yml b/src/licensedcode/data/rules/proprietary-license_335.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_335.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_336.RULE b/src/licensedcode/data/rules/proprietary-license_336.RULE index 35812a5c15f..5682d444749 100644 --- a/src/licensedcode/data/rules/proprietary-license_336.RULE +++ b/src/licensedcode/data/rules/proprietary-license_336.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: This would may be deserve it's own license. Not clear if this is a license or just a + statement of copyright style as it is most often coming with anothe FOSS license +--- + covered under Crown Copyright, Government of Canada. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_336.yml b/src/licensedcode/data/rules/proprietary-license_336.yml deleted file mode 100644 index 076713a7c5a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_336.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: This would may be deserve it's own license. Not clear if this is a license or just a - statement of copyright style as it is most often coming with anothe FOSS license diff --git a/src/licensedcode/data/rules/proprietary-license_337.RULE b/src/licensedcode/data/rules/proprietary-license_337.RULE index 3e62c42ff33..f9ecdf99b68 100644 --- a/src/licensedcode/data/rules/proprietary-license_337.RULE +++ b/src/licensedcode/data/rules/proprietary-license_337.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Free for academic and non-commercial use and evaluation purposes. Contact us for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_337.yml b/src/licensedcode/data/rules/proprietary-license_337.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_337.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_338.RULE b/src/licensedcode/data/rules/proprietary-license_338.RULE index 274bb07da71..88c10523deb 100644 --- a/src/licensedcode/data/rules/proprietary-license_338.RULE +++ b/src/licensedcode/data/rules/proprietary-license_338.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +--- + Development, Copyright and Intellectual Property Rights \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_338.yml b/src/licensedcode/data/rules/proprietary-license_338.yml deleted file mode 100644 index a2224261a4e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_338.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/proprietary-license_339.RULE b/src/licensedcode/data/rules/proprietary-license_339.RULE index 63160dfffcd..a964e8746dd 100644 --- a/src/licensedcode/data/rules/proprietary-license_339.RULE +++ b/src/licensedcode/data/rules/proprietary-license_339.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Licence This package is Treeware. If you use it in production, then we ask that you buy diff --git a/src/licensedcode/data/rules/proprietary-license_339.yml b/src/licensedcode/data/rules/proprietary-license_339.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_339.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_34.RULE b/src/licensedcode/data/rules/proprietary-license_34.RULE index 0fba15900d0..3e32f586ac1 100644 --- a/src/licensedcode/data/rules/proprietary-license_34.RULE +++ b/src/licensedcode/data/rules/proprietary-license_34.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://xceed.com/wp-content/downloads/misc/Xceed +--- + https://xceed.com/wp-content/downloads/misc/Xceed Software License Agreement.rtf \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_34.yml b/src/licensedcode/data/rules/proprietary-license_34.yml deleted file mode 100644 index 079598df0f0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://xceed.com/wp-content/downloads/misc/Xceed diff --git a/src/licensedcode/data/rules/proprietary-license_340.RULE b/src/licensedcode/data/rules/proprietary-license_340.RULE index 165852c0c1e..d445a889385 100644 --- a/src/licensedcode/data/rules/proprietary-license_340.RULE +++ b/src/licensedcode/data/rules/proprietary-license_340.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_340.yml b/src/licensedcode/data/rules/proprietary-license_340.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_340.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_341.RULE b/src/licensedcode/data/rules/proprietary-license_341.RULE index a0beef5da45..36153ab5d9d 100644 --- a/src/licensedcode/data/rules/proprietary-license_341.RULE +++ b/src/licensedcode/data/rules/proprietary-license_341.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + free-to-use, proprietary software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_341.yml b/src/licensedcode/data/rules/proprietary-license_341.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_342.RULE b/src/licensedcode/data/rules/proprietary-license_342.RULE index a2b8d7194c7..f3ccd35747c 100644 --- a/src/licensedcode/data/rules/proprietary-license_342.RULE +++ b/src/licensedcode/data/rules/proprietary-license_342.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.pgp.com/ +--- + Version: PGPfreeware for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_342.yml b/src/licensedcode/data/rules/proprietary-license_342.yml deleted file mode 100644 index 212936439e9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_342.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.pgp.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_343.RULE b/src/licensedcode/data/rules/proprietary-license_343.RULE index 0ece9867502..668cff1aa4b 100644 --- a/src/licensedcode/data/rules/proprietary-license_343.RULE +++ b/src/licensedcode/data/rules/proprietary-license_343.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.pgpi.com/ +--- + Version: PGPfreeware for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_343.yml b/src/licensedcode/data/rules/proprietary-license_343.yml deleted file mode 100644 index 4882d53097f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_343.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.pgpi.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_344.RULE b/src/licensedcode/data/rules/proprietary-license_344.RULE index acd237da4af..e70aaff31fa 100644 --- a/src/licensedcode/data/rules/proprietary-license_344.RULE +++ b/src/licensedcode/data/rules/proprietary-license_344.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.nai.com/ +--- + Version: PGPfreeware for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_344.yml b/src/licensedcode/data/rules/proprietary-license_344.yml deleted file mode 100644 index 3fe73576007..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_344.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.nai.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_345.RULE b/src/licensedcode/data/rules/proprietary-license_345.RULE index e6246e5cd0d..1be567888d2 100644 --- a/src/licensedcode/data/rules/proprietary-license_345.RULE +++ b/src/licensedcode/data/rules/proprietary-license_345.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Version: PGPfreeware for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_345.yml b/src/licensedcode/data/rules/proprietary-license_345.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_345.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_346.RULE b/src/licensedcode/data/rules/proprietary-license_346.RULE index 7378f099bdb..c97f2e57c65 100644 --- a/src/licensedcode/data/rules/proprietary-license_346.RULE +++ b/src/licensedcode/data/rules/proprietary-license_346.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR diff --git a/src/licensedcode/data/rules/proprietary-license_346.yml b/src/licensedcode/data/rules/proprietary-license_346.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_346.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_347.RULE b/src/licensedcode/data/rules/proprietary-license_347.RULE index 7b80221a659..cb32afb0fdc 100644 --- a/src/licensedcode/data/rules/proprietary-license_347.RULE +++ b/src/licensedcode/data/rules/proprietary-license_347.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: only for non-commercial +--- + Permission to use, copy, modify, and distribute this software and its documentation for any non-commercial purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies diff --git a/src/licensedcode/data/rules/proprietary-license_347.yml b/src/licensedcode/data/rules/proprietary-license_347.yml deleted file mode 100644 index 9e68a14abf3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_347.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: only for non-commercial diff --git a/src/licensedcode/data/rules/proprietary-license_348.RULE b/src/licensedcode/data/rules/proprietary-license_348.RULE index 08800324760..43c06c6a65c 100644 --- a/src/licensedcode/data/rules/proprietary-license_348.RULE +++ b/src/licensedcode/data/rules/proprietary-license_348.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: mit-like but not mit +--- + Modified MIT License Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/licensedcode/data/rules/proprietary-license_348.yml b/src/licensedcode/data/rules/proprietary-license_348.yml deleted file mode 100644 index 13a461be3ab..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_348.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: mit-like but not mit diff --git a/src/licensedcode/data/rules/proprietary-license_349.RULE b/src/licensedcode/data/rules/proprietary-license_349.RULE index a423f67f196..2e6ef0b7dda 100644 --- a/src/licensedcode/data/rules/proprietary-license_349.RULE +++ b/src/licensedcode/data/rules/proprietary-license_349.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: mit-like but not mit +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_349.yml b/src/licensedcode/data/rules/proprietary-license_349.yml deleted file mode 100644 index 13a461be3ab..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_349.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: mit-like but not mit diff --git a/src/licensedcode/data/rules/proprietary-license_35.RULE b/src/licensedcode/data/rules/proprietary-license_35.RULE index 65ad477c379..888e109252f 100644 --- a/src/licensedcode/data/rules/proprietary-license_35.RULE +++ b/src/licensedcode/data/rules/proprietary-license_35.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://tradact.com/license.html +--- + http://tradact.com/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_35.yml b/src/licensedcode/data/rules/proprietary-license_35.yml deleted file mode 100644 index c8b2b406dc2..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://tradact.com/license.html diff --git a/src/licensedcode/data/rules/proprietary-license_350.RULE b/src/licensedcode/data/rules/proprietary-license_350.RULE index b6b15892123..2dd8272f911 100644 --- a/src/licensedcode/data/rules/proprietary-license_350.RULE +++ b/src/licensedcode/data/rules/proprietary-license_350.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +notes: mit-like but not mit +--- + Modified MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_350.yml b/src/licensedcode/data/rules/proprietary-license_350.yml deleted file mode 100644 index 5539a65d842..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_350.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 -notes: mit-like but not mit diff --git a/src/licensedcode/data/rules/proprietary-license_351.RULE b/src/licensedcode/data/rules/proprietary-license_351.RULE index 14ecf8d400c..065f524bce6 100644 --- a/src/licensedcode/data/rules/proprietary-license_351.RULE +++ b/src/licensedcode/data/rules/proprietary-license_351.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: usage restriction +--- + Software may only be used in connection with services provided \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_351.yml b/src/licensedcode/data/rules/proprietary-license_351.yml deleted file mode 100644 index 757d348a624..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_351.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: usage restriction diff --git a/src/licensedcode/data/rules/proprietary-license_352.RULE b/src/licensedcode/data/rules/proprietary-license_352.RULE index 7edf6033678..a71120c2fca 100644 --- a/src/licensedcode/data/rules/proprietary-license_352.RULE +++ b/src/licensedcode/data/rules/proprietary-license_352.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://git.sr.ht/~boringcactus/fafol/tree/master/LICENSE.md +--- + # The Fuck Around and Find Out License, version 0.2 ## Purpose This license gives everyone as much permission to work with diff --git a/src/licensedcode/data/rules/proprietary-license_352.yml b/src/licensedcode/data/rules/proprietary-license_352.yml deleted file mode 100644 index 532964b976b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_352.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://git.sr.ht/~boringcactus/fafol/tree/master/LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_353.RULE b/src/licensedcode/data/rules/proprietary-license_353.RULE index 719da4dda5f..57ee050e680 100644 --- a/src/licensedcode/data/rules/proprietary-license_353.RULE +++ b/src/licensedcode/data/rules/proprietary-license_353.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: this looks like a BSD-like license but this is strongly proprietary See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE +--- + Redistribution and use in source and binary forms, with or without modification, are not permitted provided that these conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_353.yml b/src/licensedcode/data/rules/proprietary-license_353.yml deleted file mode 100644 index 37859c9f2d5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_353.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: this looks like a BSD-like license but this is strongly proprietary See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_354.RULE b/src/licensedcode/data/rules/proprietary-license_354.RULE index 91a6114d39c..0681c608a18 100644 --- a/src/licensedcode/data/rules/proprietary-license_354.RULE +++ b/src/licensedcode/data/rules/proprietary-license_354.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: this looks like a BSD-like license but this is strongly proprietary See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE +--- + Redistribution and use in source and binary forms, with or without modification, are not permitted provided that these conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_354.yml b/src/licensedcode/data/rules/proprietary-license_354.yml deleted file mode 100644 index 37859c9f2d5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_354.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: this looks like a BSD-like license but this is strongly proprietary See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_355.RULE b/src/licensedcode/data/rules/proprietary-license_355.RULE index f705ea40b42..0218d12fc25 100644 --- a/src/licensedcode/data/rules/proprietary-license_355.RULE +++ b/src/licensedcode/data/rules/proprietary-license_355.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE +--- + * No redistribution or use is permitted without prior written approval by all copyright holders listed in the repository's AUTHORS file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_355.yml b/src/licensedcode/data/rules/proprietary-license_355.yml deleted file mode 100644 index 5b588c081cf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_355.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_356.RULE b/src/licensedcode/data/rules/proprietary-license_356.RULE index dae0726e072..89fffb0037f 100644 --- a/src/licensedcode/data/rules/proprietary-license_356.RULE +++ b/src/licensedcode/data/rules/proprietary-license_356.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE +--- + * No redistribution or use is permitted without prior written approval \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_356.yml b/src/licensedcode/data/rules/proprietary-license_356.yml deleted file mode 100644 index 5b588c081cf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_356.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_357.RULE b/src/licensedcode/data/rules/proprietary-license_357.RULE index 858e9a6235d..4e0f64b567c 100644 --- a/src/licensedcode/data/rules/proprietary-license_357.RULE +++ b/src/licensedcode/data/rules/proprietary-license_357.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE +--- + Redistribution and use in source and binary forms, with or without modification, are not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_357.yml b/src/licensedcode/data/rules/proprietary-license_357.yml deleted file mode 100644 index 5b588c081cf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_357.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: See https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_358.RULE b/src/licensedcode/data/rules/proprietary-license_358.RULE index db0e346361e..bb82d66eaa1 100644 --- a/src/licensedcode/data/rules/proprietary-license_358.RULE +++ b/src/licensedcode/data/rules/proprietary-license_358.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://github.com/panicinc/PunchClock/blob/f08ebc079717cd1b97f6a9ad4064e9372ea79c09/LICENSE + This looks like a BSD but this is not one +--- + Redistribution and use, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_358.yml b/src/licensedcode/data/rules/proprietary-license_358.yml deleted file mode 100644 index 85388f2c0bf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_358.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://github.com/panicinc/PunchClock/blob/f08ebc079717cd1b97f6a9ad4064e9372ea79c09/LICENSE - This looks like a BSD but this is not one diff --git a/src/licensedcode/data/rules/proprietary-license_359.RULE b/src/licensedcode/data/rules/proprietary-license_359.RULE index 11cd2f38a36..e28612724d1 100644 --- a/src/licensedcode/data/rules/proprietary-license_359.RULE +++ b/src/licensedcode/data/rules/proprietary-license_359.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://github.com/panicinc/PunchClock/blob/f08ebc079717cd1b97f6a9ad4064e9372ea79c09/LICENSE + This looks like a BSD but this is not one +--- + Redistribution and use, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_359.yml b/src/licensedcode/data/rules/proprietary-license_359.yml deleted file mode 100644 index 85388f2c0bf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_359.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://github.com/panicinc/PunchClock/blob/f08ebc079717cd1b97f6a9ad4064e9372ea79c09/LICENSE - This looks like a BSD but this is not one diff --git a/src/licensedcode/data/rules/proprietary-license_36.RULE b/src/licensedcode/data/rules/proprietary-license_36.RULE index 08298cd5f51..f35d3903894 100644 --- a/src/licensedcode/data/rules/proprietary-license_36.RULE +++ b/src/licensedcode/data/rules/proprietary-license_36.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://truvisibility.com/en/privacy-policy +--- + http://truvisibility.com/en/privacy-policy \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_36.yml b/src/licensedcode/data/rules/proprietary-license_36.yml deleted file mode 100644 index fb8ceb8b3d6..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://truvisibility.com/en/privacy-policy diff --git a/src/licensedcode/data/rules/proprietary-license_360.RULE b/src/licensedcode/data/rules/proprietary-license_360.RULE index 551cbfed655..99ca807933f 100644 --- a/src/licensedcode/data/rules/proprietary-license_360.RULE +++ b/src/licensedcode/data/rules/proprietary-license_360.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: see https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE + This looks like a BSD but this is not one +--- + Redistribution and use in source and binary forms, with or without modification, are not permitted provided that these conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_360.yml b/src/licensedcode/data/rules/proprietary-license_360.yml deleted file mode 100644 index 3411b1037dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_360.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: see https://github.com/Safecast/TTProto/blob/d66a002deafc57022467ed491340fd1c82924896/LICENSE - This looks like a BSD but this is not one diff --git a/src/licensedcode/data/rules/proprietary-license_361.RULE b/src/licensedcode/data/rules/proprietary-license_361.RULE index 95ff79a7734..045e9709a73 100644 --- a/src/licensedcode/data/rules/proprietary-license_361.RULE +++ b/src/licensedcode/data/rules/proprietary-license_361.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + No redistribution or use is permitted outside of Sun Microsystems, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_361.yml b/src/licensedcode/data/rules/proprietary-license_361.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_361.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_362.RULE b/src/licensedcode/data/rules/proprietary-license_362.RULE index a0fc6263899..38a1f96eca1 100644 --- a/src/licensedcode/data/rules/proprietary-license_362.RULE +++ b/src/licensedcode/data/rules/proprietary-license_362.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + No redistribution or use is permitted outside of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_362.yml b/src/licensedcode/data/rules/proprietary-license_362.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_362.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_363.RULE b/src/licensedcode/data/rules/proprietary-license_363.RULE index 9b28364f74a..577e6c6be4d 100644 --- a/src/licensedcode/data/rules/proprietary-license_363.RULE +++ b/src/licensedcode/data/rules/proprietary-license_363.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + No redistribution or use is permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_363.yml b/src/licensedcode/data/rules/proprietary-license_363.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_363.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_364.RULE b/src/licensedcode/data/rules/proprietary-license_364.RULE index 75f48deb9fc..97315d19766 100644 --- a/src/licensedcode/data/rules/proprietary-license_364.RULE +++ b/src/licensedcode/data/rules/proprietary-license_364.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: see https://git.icod.de/dalu/i18n/src/master/LICENSE This looks like a BSD but this is + not one +--- + 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. diff --git a/src/licensedcode/data/rules/proprietary-license_364.yml b/src/licensedcode/data/rules/proprietary-license_364.yml deleted file mode 100644 index e76c3ba323a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_364.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: see https://git.icod.de/dalu/i18n/src/master/LICENSE This looks like a BSD but this is - not one diff --git a/src/licensedcode/data/rules/proprietary-license_365.RULE b/src/licensedcode/data/rules/proprietary-license_365.RULE index 23fa992c304..5946802f6ef 100644 --- a/src/licensedcode/data/rules/proprietary-license_365.RULE +++ b/src/licensedcode/data/rules/proprietary-license_365.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: see https://git.icod.de/dalu/i18n/src/master/LICENSE This looks like a BSD but this is + not one +--- + 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. diff --git a/src/licensedcode/data/rules/proprietary-license_365.yml b/src/licensedcode/data/rules/proprietary-license_365.yml deleted file mode 100644 index e76c3ba323a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_365.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: see https://git.icod.de/dalu/i18n/src/master/LICENSE This looks like a BSD but this is - not one diff --git a/src/licensedcode/data/rules/proprietary-license_366.RULE b/src/licensedcode/data/rules/proprietary-license_366.RULE index 000a8cb4ddb..e649fb776a9 100644 --- a/src/licensedcode/data/rules/proprietary-license_366.RULE +++ b/src/licensedcode/data/rules/proprietary-license_366.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: BSD-looking with "Redistributions in any kind of AppStore (whether for free or paid) + are not permitted." See https://github.com/lukakerr/Pine/blob/7c6dedc4836477f034ead573cfde3036106726d8/LICENSE +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_366.yml b/src/licensedcode/data/rules/proprietary-license_366.yml deleted file mode 100644 index 38ddf22dc5c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_366.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: BSD-looking with "Redistributions in any kind of AppStore (whether for free or paid) - are not permitted." See https://github.com/lukakerr/Pine/blob/7c6dedc4836477f034ead573cfde3036106726d8/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_367.RULE b/src/licensedcode/data/rules/proprietary-license_367.RULE index 7aebd9b3c98..94bafc739b1 100644 --- a/src/licensedcode/data/rules/proprietary-license_367.RULE +++ b/src/licensedcode/data/rules/proprietary-license_367.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: See https://github.com/lukakerr/Pine/blob/7c6dedc4836477f034ead573cfde3036106726d8/LICENSE +--- + Redistributions in any kind of AppStore (whether for free or paid) are not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_367.yml b/src/licensedcode/data/rules/proprietary-license_367.yml deleted file mode 100644 index 972e787e270..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_367.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: See https://github.com/lukakerr/Pine/blob/7c6dedc4836477f034ead573cfde3036106726d8/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_368.RULE b/src/licensedcode/data/rules/proprietary-license_368.RULE index f3895d6dd80..bd377499f0d 100644 --- a/src/licensedcode/data/rules/proprietary-license_368.RULE +++ b/src/licensedcode/data/rules/proprietary-license_368.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://github.com/OneSignal/react-native-onesignal/blob/05e143e3eee30a22b1df731a1d45b78425fee71e/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_368.yml b/src/licensedcode/data/rules/proprietary-license_368.yml deleted file mode 100644 index dfe864b75d8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_368.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://github.com/OneSignal/react-native-onesignal/blob/05e143e3eee30a22b1df731a1d45b78425fee71e/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_369.RULE b/src/licensedcode/data/rules/proprietary-license_369.RULE index e6c5817afa6..3af1b146240 100644 --- a/src/licensedcode/data/rules/proprietary-license_369.RULE +++ b/src/licensedcode/data/rules/proprietary-license_369.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://github.com/prixa-ai/prixa-proto/blob/8590552618fb29a24b05c3d699f31ac2072bd66a/LICENSE +--- + // Permission is hereby restricted, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software with restriction, including with limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_369.yml b/src/licensedcode/data/rules/proprietary-license_369.yml deleted file mode 100644 index fd32ae7d5da..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_369.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://github.com/prixa-ai/prixa-proto/blob/8590552618fb29a24b05c3d699f31ac2072bd66a/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_37.RULE b/src/licensedcode/data/rules/proprietary-license_37.RULE index 43ba967d253..77c36b94717 100644 --- a/src/licensedcode/data/rules/proprietary-license_37.RULE +++ b/src/licensedcode/data/rules/proprietary-license_37.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://universe-systems.com/terms-conditions +--- + http://universe-systems.com/terms-conditions \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_37.yml b/src/licensedcode/data/rules/proprietary-license_37.yml deleted file mode 100644 index 6a4ea8c55cb..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://universe-systems.com/terms-conditions diff --git a/src/licensedcode/data/rules/proprietary-license_370.RULE b/src/licensedcode/data/rules/proprietary-license_370.RULE index a656e124327..466038f391e 100644 --- a/src/licensedcode/data/rules/proprietary-license_370.RULE +++ b/src/licensedcode/data/rules/proprietary-license_370.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + // This file is part of the and is protected under United // States and international copyright laws and treaties. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_370.yml b/src/licensedcode/data/rules/proprietary-license_370.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_371.RULE b/src/licensedcode/data/rules/proprietary-license_371.RULE index d003641131c..92cde66d724 100644 --- a/src/licensedcode/data/rules/proprietary-license_371.RULE +++ b/src/licensedcode/data/rules/proprietary-license_371.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + protected under United States and international copyright laws and treaties. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_371.yml b/src/licensedcode/data/rules/proprietary-license_371.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_371.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_372.RULE b/src/licensedcode/data/rules/proprietary-license_372.RULE index 281ec5e6ce3..ce688aaa689 100644 --- a/src/licensedcode/data/rules/proprietary-license_372.RULE +++ b/src/licensedcode/data/rules/proprietary-license_372.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/9fans/plan9port/blob/master/postscript/font/NOTICE +--- + The terms of the font license in Plan 9 do not permit us to distribute those files here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_372.yml b/src/licensedcode/data/rules/proprietary-license_372.yml deleted file mode 100644 index cae3d792038..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_372.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/9fans/plan9port/blob/master/postscript/font/NOTICE diff --git a/src/licensedcode/data/rules/proprietary-license_373.RULE b/src/licensedcode/data/rules/proprietary-license_373.RULE index 2c929debf14..aff66f7e030 100644 --- a/src/licensedcode/data/rules/proprietary-license_373.RULE +++ b/src/licensedcode/data/rules/proprietary-license_373.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/9fans/plan9port/blob/master/font/pelm/NOTICE +--- + These fonts may be redistributed with the Plan 9 from User Space software. No right is granted to create derivative works of these fonts or to redistribute them separately from Plan 9 from User Space. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_373.yml b/src/licensedcode/data/rules/proprietary-license_373.yml deleted file mode 100644 index a706a4e0e21..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_373.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/9fans/plan9port/blob/master/font/pelm/NOTICE diff --git a/src/licensedcode/data/rules/proprietary-license_374.RULE b/src/licensedcode/data/rules/proprietary-license_374.RULE index b288b4b9830..d424a52f07a 100644 --- a/src/licensedcode/data/rules/proprietary-license_374.RULE +++ b/src/licensedcode/data/rules/proprietary-license_374.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + /* It is patented and use outside Plan 9 requires you get a license. */ /* (All other EKE protocols are patented as well, by Lucent or others.) */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_374.yml b/src/licensedcode/data/rules/proprietary-license_374.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_374.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_375.RULE b/src/licensedcode/data/rules/proprietary-license_375.RULE index dd1cb602685..36a918bd7ea 100644 --- a/src/licensedcode/data/rules/proprietary-license_375.RULE +++ b/src/licensedcode/data/rules/proprietary-license_375.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: see https://www.opus-codec.org/license/ +ignorable_urls: + - https://datatracker.ietf.org/ipr/1524/ + - https://datatracker.ietf.org/ipr/1526/ + - https://datatracker.ietf.org/ipr/1914/ +--- + Opus is subject to the royalty-free patent licenses which are specified at: diff --git a/src/licensedcode/data/rules/proprietary-license_375.yml b/src/licensedcode/data/rules/proprietary-license_375.yml deleted file mode 100644 index efb8aa3cafc..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_375.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: see https://www.opus-codec.org/license/ -ignorable_urls: - - https://datatracker.ietf.org/ipr/1524/ - - https://datatracker.ietf.org/ipr/1526/ - - https://datatracker.ietf.org/ipr/1914/ diff --git a/src/licensedcode/data/rules/proprietary-license_376.RULE b/src/licensedcode/data/rules/proprietary-license_376.RULE index 0857eeaa9c3..71a3a713aa0 100644 --- a/src/licensedcode/data/rules/proprietary-license_376.RULE +++ b/src/licensedcode/data/rules/proprietary-license_376.RULE @@ -1,2 +1,11 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: see https://www.opus-codec.org/license/ +ignorable_urls: + - https://datatracker.ietf.org/ipr/1524/ +--- + Xiph.Org Foundation: https://datatracker.ietf.org/ipr/1524/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_376.yml b/src/licensedcode/data/rules/proprietary-license_376.yml deleted file mode 100644 index c5220b2160d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_376.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: see https://www.opus-codec.org/license/ -ignorable_urls: - - https://datatracker.ietf.org/ipr/1524/ diff --git a/src/licensedcode/data/rules/proprietary-license_377.RULE b/src/licensedcode/data/rules/proprietary-license_377.RULE index b89b8b6ba01..de1e27826c8 100644 --- a/src/licensedcode/data/rules/proprietary-license_377.RULE +++ b/src/licensedcode/data/rules/proprietary-license_377.RULE @@ -1,2 +1,11 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: see https://www.opus-codec.org/license/ +ignorable_urls: + - https://datatracker.ietf.org/ipr/1914/ +--- + Microsoft Corporation: https://datatracker.ietf.org/ipr/1914/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_377.yml b/src/licensedcode/data/rules/proprietary-license_377.yml deleted file mode 100644 index 6be49f31a35..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_377.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: see https://www.opus-codec.org/license/ -ignorable_urls: - - https://datatracker.ietf.org/ipr/1914/ diff --git a/src/licensedcode/data/rules/proprietary-license_378.RULE b/src/licensedcode/data/rules/proprietary-license_378.RULE index e145bbff978..85f4f4824c6 100644 --- a/src/licensedcode/data/rules/proprietary-license_378.RULE +++ b/src/licensedcode/data/rules/proprietary-license_378.RULE @@ -1,2 +1,11 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: see https://www.opus-codec.org/license/ +ignorable_urls: + - https://datatracker.ietf.org/ipr/1526/ +--- + Broadcom Corporation: https://datatracker.ietf.org/ipr/1526/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_378.yml b/src/licensedcode/data/rules/proprietary-license_378.yml deleted file mode 100644 index f9ab2dfa8f7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_378.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: see https://www.opus-codec.org/license/ -ignorable_urls: - - https://datatracker.ietf.org/ipr/1526/ diff --git a/src/licensedcode/data/rules/proprietary-license_379.RULE b/src/licensedcode/data/rules/proprietary-license_379.RULE index 0975a9485eb..bca4741a500 100644 --- a/src/licensedcode/data/rules/proprietary-license_379.RULE +++ b/src/licensedcode/data/rules/proprietary-license_379.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: see https://www.opus-codec.org/license/ +--- + Broadcom Corporation (“Broadcom”) hereby grants to you a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this license) license under Licensed Patents to make, have made, use, offer to sell, sell, import, transfer, and otherwise run, modify (in a way that still complies with the Specification), and reproduce any Implementation. Definitions. Specification means, and includes the following, both individually and collectively, (a) any standard specification of the Opus codec adopted by the IETF Codec Working Group (“Standard”) and (b) any reference implementation (each, a “Reference Implementation”) published by the IETF Codec Working Group in the request for comments (“RFC”) issued by the IETF for the Specification draft for which this License is issued, or any RFC that is issued as an update or new version thereof. An Implementation means any Reference Implementation, or another implementation that complies with the Specification. Licensed Patents means all patents currently owned by Broadcom or acquired hereafter that Broadcom has the right to license as set forth above and that are necessarily infringed by the Specification, where “necessarily infringed” means: in the case of (a) above, there is no commercially viable means of implementing the Specification without infringing such patent; in the case of (b) above, use of the reference implementation to the extent it infringes such patent. diff --git a/src/licensedcode/data/rules/proprietary-license_379.yml b/src/licensedcode/data/rules/proprietary-license_379.yml deleted file mode 100644 index ef8205170b9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_379.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: see https://www.opus-codec.org/license/ diff --git a/src/licensedcode/data/rules/proprietary-license_38.RULE b/src/licensedcode/data/rules/proprietary-license_38.RULE index 424aa5b4226..74996fd3528 100644 --- a/src/licensedcode/data/rules/proprietary-license_38.RULE +++ b/src/licensedcode/data/rules/proprietary-license_38.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://websharper.com/licensing +--- + http://websharper.com/licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_38.yml b/src/licensedcode/data/rules/proprietary-license_38.yml deleted file mode 100644 index f9a5ebe7d3e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://websharper.com/licensing diff --git a/src/licensedcode/data/rules/proprietary-license_380.RULE b/src/licensedcode/data/rules/proprietary-license_380.RULE index 811d1c6d31c..5ca4b701fc2 100644 --- a/src/licensedcode/data/rules/proprietary-license_380.RULE +++ b/src/licensedcode/data/rules/proprietary-license_380.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: see https://www.opus-codec.org/license/ +--- + Xiph.Org Foundation (“Xiph”) hereby grants to you a perpetual, worldwide, non-exclusive, no-charge,royalty-free, irrevocable (except as stated in this license) license under Licensed Patents to make, have made, use, offer to sell, sell, import, transfer, and otherwise run, modify (in a way that still complies with the Specification), and reproduce any Implementation. Definitions. Specification means, and includes the following, both individually and collectively, (a) any standard specification of the Opus codec adopted by the IETF Codec Working Group (“Standard”) and (b) any reference implementation (each, a “Reference Implementation”) published by the IETF Codec Working Group in the request for comments (“RFC”) issued by the IETF for the Specification draft for which this License is issued, or any RFC that is issued as an update or new version thereof. An Implementation means any Reference Implementation, or another implementation that complies with the Specification. Licensed Patents means all patents currently owned by Xiph or acquired hereafter that Xiph has the right to license as set forth above and that are necessarily infringed by the Specification, where “necessarily infringed” means: in the case of (a) above, there is no commercially viable means of implementing the Specification without infringing such patent; in the case of (b) above, use of the reference implementation to the extent it infringes such patent. diff --git a/src/licensedcode/data/rules/proprietary-license_380.yml b/src/licensedcode/data/rules/proprietary-license_380.yml deleted file mode 100644 index ef8205170b9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_380.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: see https://www.opus-codec.org/license/ diff --git a/src/licensedcode/data/rules/proprietary-license_381.RULE b/src/licensedcode/data/rules/proprietary-license_381.RULE index d64ade2a025..0a803a76f93 100644 --- a/src/licensedcode/data/rules/proprietary-license_381.RULE +++ b/src/licensedcode/data/rules/proprietary-license_381.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: see https://www.opus-codec.org/license/ +--- + 1. Patent Terms. 1.1. Specification License. Subject to all the terms and conditions of this Agreement, I, on behalf of myself and my successors in interest and assigns, hereby grant you a non-sublicensable, perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable license to my Necessary Decoder Claims for your Specification Implementation. diff --git a/src/licensedcode/data/rules/proprietary-license_381.yml b/src/licensedcode/data/rules/proprietary-license_381.yml deleted file mode 100644 index ef8205170b9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_381.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: see https://www.opus-codec.org/license/ diff --git a/src/licensedcode/data/rules/proprietary-license_382.RULE b/src/licensedcode/data/rules/proprietary-license_382.RULE index b6e9675526e..e4a2e3a28f4 100644 --- a/src/licensedcode/data/rules/proprietary-license_382.RULE +++ b/src/licensedcode/data/rules/proprietary-license_382.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + || # This file may not be redistributed in whole or significant part. # || \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_382.yml b/src/licensedcode/data/rules/proprietary-license_382.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_382.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_383.RULE b/src/licensedcode/data/rules/proprietary-license_383.RULE index 67eb2737f88..da0d9172b14 100644 --- a/src/licensedcode/data/rules/proprietary-license_383.RULE +++ b/src/licensedcode/data/rules/proprietary-license_383.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + || # This file may not be redistributed in whole or significant part. # || || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # || \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_383.yml b/src/licensedcode/data/rules/proprietary-license_383.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_383.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_384.RULE b/src/licensedcode/data/rules/proprietary-license_384.RULE index 844cdf64933..e426ed62229 100644 --- a/src/licensedcode/data/rules/proprietary-license_384.RULE +++ b/src/licensedcode/data/rules/proprietary-license_384.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.vbulletin.com/ + - http://www.vbulletin.com/license.html +--- + || # This file may not be redistributed in whole or significant part. # || || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # || || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # || \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_384.yml b/src/licensedcode/data/rules/proprietary-license_384.yml deleted file mode 100644 index 71646e95f07..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_384.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.vbulletin.com/ - - http://www.vbulletin.com/license.html diff --git a/src/licensedcode/data/rules/proprietary-license_385.RULE b/src/licensedcode/data/rules/proprietary-license_385.RULE index 600618fd867..872ab7350c5 100644 --- a/src/licensedcode/data/rules/proprietary-license_385.RULE +++ b/src/licensedcode/data/rules/proprietary-license_385.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + vBulletin License Agreement By installing and using vBulletin on your server, you agree to the following terms and conditions: diff --git a/src/licensedcode/data/rules/proprietary-license_385.yml b/src/licensedcode/data/rules/proprietary-license_385.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_385.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_386.RULE b/src/licensedcode/data/rules/proprietary-license_386.RULE index 411fc5837a6..81686d56d42 100644 --- a/src/licensedcode/data/rules/proprietary-license_386.RULE +++ b/src/licensedcode/data/rules/proprietary-license_386.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See http://www.iconsdb.com +--- + You may not sell, make it available for download or distribute this icon in any size, type, form on any other icon site. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_386.yml b/src/licensedcode/data/rules/proprietary-license_386.yml deleted file mode 100644 index 182d538feed..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_386.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See http://www.iconsdb.com diff --git a/src/licensedcode/data/rules/proprietary-license_387.RULE b/src/licensedcode/data/rules/proprietary-license_387.RULE index 9798e6755f9..5d1a9869896 100644 --- a/src/licensedcode/data/rules/proprietary-license_387.RULE +++ b/src/licensedcode/data/rules/proprietary-license_387.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://github.com/andreagiavatto/Q3ServerBrowser/blob/e42d0fea65e7c33eb657cde74d36327ce4e0ccf3/LICENSE.md#L11 +--- + Redistribution in binary form is not permitted without specific prior written permission from the copyright holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_387.yml b/src/licensedcode/data/rules/proprietary-license_387.yml deleted file mode 100644 index f1bb435b6f7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_387.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://github.com/andreagiavatto/Q3ServerBrowser/blob/e42d0fea65e7c33eb657cde74d36327ce4e0ccf3/LICENSE.md#L11 diff --git a/src/licensedcode/data/rules/proprietary-license_388.RULE b/src/licensedcode/data/rules/proprietary-license_388.RULE index a012cc4d3a0..324d85a0bdc 100644 --- a/src/licensedcode/data/rules/proprietary-license_388.RULE +++ b/src/licensedcode/data/rules/proprietary-license_388.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://github.com/andreagiavatto/Q3ServerBrowser/blob/e42d0fea65e7c33eb657cde74d36327ce4e0ccf3/LICENSE.md#L11 +--- + Redistribution in binary form is not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_388.yml b/src/licensedcode/data/rules/proprietary-license_388.yml deleted file mode 100644 index f1bb435b6f7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_388.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://github.com/andreagiavatto/Q3ServerBrowser/blob/e42d0fea65e7c33eb657cde74d36327ce4e0ccf3/LICENSE.md#L11 diff --git a/src/licensedcode/data/rules/proprietary-license_389.RULE b/src/licensedcode/data/rules/proprietary-license_389.RULE index 65f71c07852..5a6f109ce89 100644 --- a/src/licensedcode/data/rules/proprietary-license_389.RULE +++ b/src/licensedcode/data/rules/proprietary-license_389.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: See https://github.com/andreagiavatto/Q3ServerBrowser/blob/e42d0fea65e7c33eb657cde74d36327ce4e0ccf3/LICENSE.md#L11 + which is bsd-like +--- + Redistribution and use in source form with or without modification, is permitted provided that the following conditions are met: Redistributions of the source code must retain this copyright notice and the following disclaimer. diff --git a/src/licensedcode/data/rules/proprietary-license_389.yml b/src/licensedcode/data/rules/proprietary-license_389.yml deleted file mode 100644 index e51ee16cba5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_389.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: See https://github.com/andreagiavatto/Q3ServerBrowser/blob/e42d0fea65e7c33eb657cde74d36327ce4e0ccf3/LICENSE.md#L11 - which is bsd-like diff --git a/src/licensedcode/data/rules/proprietary-license_39.RULE b/src/licensedcode/data/rules/proprietary-license_39.RULE index d50423b0569..7d1ad1e2833 100644 --- a/src/licensedcode/data/rules/proprietary-license_39.RULE +++ b/src/licensedcode/data/rules/proprietary-license_39.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://wiki.thinkgeo.com/wiki/map_suite_license_agreement +--- + http://wiki.thinkgeo.com/wiki/map_suite_license_agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_39.yml b/src/licensedcode/data/rules/proprietary-license_39.yml deleted file mode 100644 index de9cd6739c1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://wiki.thinkgeo.com/wiki/map_suite_license_agreement diff --git a/src/licensedcode/data/rules/proprietary-license_390.RULE b/src/licensedcode/data/rules/proprietary-license_390.RULE index 3a9d1eedcb9..05b72cc207a 100644 --- a/src/licensedcode/data/rules/proprietary-license_390.RULE +++ b/src/licensedcode/data/rules/proprietary-license_390.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: this is an mit-like but proprietary +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_390.yml b/src/licensedcode/data/rules/proprietary-license_390.yml deleted file mode 100644 index d2aa86ab483..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_390.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: this is an mit-like but proprietary diff --git a/src/licensedcode/data/rules/proprietary-license_391.RULE b/src/licensedcode/data/rules/proprietary-license_391.RULE index fc681081b9b..2d99d180604 100644 --- a/src/licensedcode/data/rules/proprietary-license_391.RULE +++ b/src/licensedcode/data/rules/proprietary-license_391.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: this is an bsd-like but proprietary +--- + Redistribution and use in source with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, diff --git a/src/licensedcode/data/rules/proprietary-license_391.yml b/src/licensedcode/data/rules/proprietary-license_391.yml deleted file mode 100644 index 937306ada91..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_391.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: this is an bsd-like but proprietary diff --git a/src/licensedcode/data/rules/proprietary-license_392.RULE b/src/licensedcode/data/rules/proprietary-license_392.RULE index d6dde3c41c1..0874a2c31e4 100644 --- a/src/licensedcode/data/rules/proprietary-license_392.RULE +++ b/src/licensedcode/data/rules/proprietary-license_392.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: this is an bsd-like but proprietary +--- + Redistribution and use in source with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, diff --git a/src/licensedcode/data/rules/proprietary-license_392.yml b/src/licensedcode/data/rules/proprietary-license_392.yml deleted file mode 100644 index 937306ada91..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_392.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: this is an bsd-like but proprietary diff --git a/src/licensedcode/data/rules/proprietary-license_393.RULE b/src/licensedcode/data/rules/proprietary-license_393.RULE index 7c1747000c1..97af10baaef 100644 --- a/src/licensedcode/data/rules/proprietary-license_393.RULE +++ b/src/licensedcode/data/rules/proprietary-license_393.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: this is an bsd/mit-like but proprietary https://github.com/Neirys/sps/blob/2eb962c24f4980e519ce459420719ef4a00225b3/LICENSE.md#L7 +--- + Redistribution in binary form is not permitted without specific prior written permission from the copyright holders. Redistribution and use in source form with or without modification, is permitted provided that the following conditions are met: Redistributions of the source code must retain this copyright notice and the following disclaimer. diff --git a/src/licensedcode/data/rules/proprietary-license_393.yml b/src/licensedcode/data/rules/proprietary-license_393.yml deleted file mode 100644 index c5fecd2d75f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_393.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: this is an bsd/mit-like but proprietary https://github.com/Neirys/sps/blob/2eb962c24f4980e519ce459420719ef4a00225b3/LICENSE.md#L7 diff --git a/src/licensedcode/data/rules/proprietary-license_394.RULE b/src/licensedcode/data/rules/proprietary-license_394.RULE index 45da4898ca7..be29fe6f75a 100644 --- a/src/licensedcode/data/rules/proprietary-license_394.RULE +++ b/src/licensedcode/data/rules/proprietary-license_394.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: this is an bsd/mit-like but proprietary +--- + Redistribution and use in source form, with or without modification, and use in binary form, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_394.yml b/src/licensedcode/data/rules/proprietary-license_394.yml deleted file mode 100644 index 9d3340ec570..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_394.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: this is an bsd/mit-like but proprietary diff --git a/src/licensedcode/data/rules/proprietary-license_395.RULE b/src/licensedcode/data/rules/proprietary-license_395.RULE index fb828330232..7f713d95904 100644 --- a/src/licensedcode/data/rules/proprietary-license_395.RULE +++ b/src/licensedcode/data/rules/proprietary-license_395.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: this is an bsd/mit-like but proprietary +--- + Redistribution of this project in binary form, with or without modification, is NOT permitted without the explicit written permission of the Endless copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_395.yml b/src/licensedcode/data/rules/proprietary-license_395.yml deleted file mode 100644 index 9d3340ec570..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_395.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: this is an bsd/mit-like but proprietary diff --git a/src/licensedcode/data/rules/proprietary-license_396.RULE b/src/licensedcode/data/rules/proprietary-license_396.RULE index 144535fe1db..e2cb85c1e9d 100644 --- a/src/licensedcode/data/rules/proprietary-license_396.RULE +++ b/src/licensedcode/data/rules/proprietary-license_396.RULE @@ -1,2 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: https://github.com/jcs/endless/ +--- + Redistribution of this project in binary form, with or without modification, is NOT permitted without the explicit written permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_396.yml b/src/licensedcode/data/rules/proprietary-license_396.yml deleted file mode 100644 index cf0fe03929b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_396.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: https://github.com/jcs/endless/ diff --git a/src/licensedcode/data/rules/proprietary-license_397.RULE b/src/licensedcode/data/rules/proprietary-license_397.RULE index 95b855773b4..389fb2698af 100644 --- a/src/licensedcode/data/rules/proprietary-license_397.RULE +++ b/src/licensedcode/data/rules/proprietary-license_397.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: https://github.com/jcs/endless/ +--- + (NOTE: This is not a BSD/ISC/MIT license. You are permitted to use this source code, with or without modification, in source or binary form, on your devices however you see fit. You are not permitted to redistribute diff --git a/src/licensedcode/data/rules/proprietary-license_397.yml b/src/licensedcode/data/rules/proprietary-license_397.yml deleted file mode 100644 index cf0fe03929b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_397.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: https://github.com/jcs/endless/ diff --git a/src/licensedcode/data/rules/proprietary-license_398.RULE b/src/licensedcode/data/rules/proprietary-license_398.RULE index 09bff823a11..e7912128f2e 100644 --- a/src/licensedcode/data/rules/proprietary-license_398.RULE +++ b/src/licensedcode/data/rules/proprietary-license_398.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: https://github.com/jcs/endless/ +--- + While this software is open source and you are free to modify it and use it on your own devices, redistribution of this software in binary form, with or without modification, is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_398.yml b/src/licensedcode/data/rules/proprietary-license_398.yml deleted file mode 100644 index cf0fe03929b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_398.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: https://github.com/jcs/endless/ diff --git a/src/licensedcode/data/rules/proprietary-license_399.RULE b/src/licensedcode/data/rules/proprietary-license_399.RULE index decabeed801..6f50bc64645 100644 --- a/src/licensedcode/data/rules/proprietary-license_399.RULE +++ b/src/licensedcode/data/rules/proprietary-license_399.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: https://github.com/jcs/endless/ +--- + Redistribution and use in source form, with or without modification, and use in binary form, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_399.yml b/src/licensedcode/data/rules/proprietary-license_399.yml deleted file mode 100644 index 7388548d991..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_399.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: https://github.com/jcs/endless/ diff --git a/src/licensedcode/data/rules/proprietary-license_4.RULE b/src/licensedcode/data/rules/proprietary-license_4.RULE index cd1ecfc27af..ae17e9a6e3d 100644 --- a/src/licensedcode/data/rules/proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/proprietary-license_4.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Do Not Redistribute \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_4.yml b/src/licensedcode/data/rules/proprietary-license_4.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_40.RULE b/src/licensedcode/data/rules/proprietary-license_40.RULE index 6a8f1f70b6c..d91b3713fa5 100644 --- a/src/licensedcode/data/rules/proprietary-license_40.RULE +++ b/src/licensedcode/data/rules/proprietary-license_40.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.4-roads.com/OpenLicense +--- + http://www.4-roads.com/OpenLicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_40.yml b/src/licensedcode/data/rules/proprietary-license_40.yml deleted file mode 100644 index 8e1d5ac3ad9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.4-roads.com/OpenLicense diff --git a/src/licensedcode/data/rules/proprietary-license_400.RULE b/src/licensedcode/data/rules/proprietary-license_400.RULE index fa2d8ad3934..28866b27940 100644 --- a/src/licensedcode/data/rules/proprietary-license_400.RULE +++ b/src/licensedcode/data/rules/proprietary-license_400.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: https://github.com/VerizonDigital/ectoken/blob/d15cd36e25e903dd84060f6cce857455ae95a068/c%23-ectoken/ecencryptdotnet/Program.cs +--- + Redistribution in source and binary forms is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_400.yml b/src/licensedcode/data/rules/proprietary-license_400.yml deleted file mode 100644 index a5aeda64b27..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_400.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: https://github.com/VerizonDigital/ectoken/blob/d15cd36e25e903dd84060f6cce857455ae95a068/c%23-ectoken/ecencryptdotnet/Program.cs diff --git a/src/licensedcode/data/rules/proprietary-license_401.RULE b/src/licensedcode/data/rules/proprietary-license_401.RULE index da1ee5a51e2..1901139549f 100644 --- a/src/licensedcode/data/rules/proprietary-license_401.RULE +++ b/src/licensedcode/data/rules/proprietary-license_401.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://github.com/VerizonDigital/ectoken/blob/d15cd36e25e903dd84060f6cce857455ae95a068/c%23-ectoken/ecencryptdotnet/Program.cs +--- + Use of source and binary forms, with or without modification is permitted provided that there is written consent by EdgeCast Networks, Inc. Redistribution in source and binary forms is not permitted. diff --git a/src/licensedcode/data/rules/proprietary-license_401.yml b/src/licensedcode/data/rules/proprietary-license_401.yml deleted file mode 100644 index db24a355090..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_401.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://github.com/VerizonDigital/ectoken/blob/d15cd36e25e903dd84060f6cce857455ae95a068/c%23-ectoken/ecencryptdotnet/Program.cs diff --git a/src/licensedcode/data/rules/proprietary-license_402.RULE b/src/licensedcode/data/rules/proprietary-license_402.RULE index b62a53bd1d1..6cdbd75d1be 100644 --- a/src/licensedcode/data/rules/proprietary-license_402.RULE +++ b/src/licensedcode/data/rules/proprietary-license_402.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: see https://keypirinha.com/index.html +--- + Only unmodified installers and/or packages can be redistributed; redistribution of binaries in any other form is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_402.yml b/src/licensedcode/data/rules/proprietary-license_402.yml deleted file mode 100644 index 38166d00209..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_402.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: see https://keypirinha.com/index.html diff --git a/src/licensedcode/data/rules/proprietary-license_403.RULE b/src/licensedcode/data/rules/proprietary-license_403.RULE index 8ce67a5e588..1972e160d1f 100644 --- a/src/licensedcode/data/rules/proprietary-license_403.RULE +++ b/src/licensedcode/data/rules/proprietary-license_403.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: see https://keypirinha.com/index.html +--- + Only unmodified installers and/or packages can be redistributed; redistribution of Keypirinha binaries in any other form is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_403.yml b/src/licensedcode/data/rules/proprietary-license_403.yml deleted file mode 100644 index 38166d00209..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_403.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: see https://keypirinha.com/index.html diff --git a/src/licensedcode/data/rules/proprietary-license_404.RULE b/src/licensedcode/data/rules/proprietary-license_404.RULE index 1d0fb4e7d49..1fe6aacc85c 100644 --- a/src/licensedcode/data/rules/proprietary-license_404.RULE +++ b/src/licensedcode/data/rules/proprietary-license_404.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://keypirinha.com/license.html +--- + Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: Only unmodified installers and/or packages can be redistributed; redistribution of Keypirinha binaries in any other form is not permitted. Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/src/licensedcode/data/rules/proprietary-license_404.yml b/src/licensedcode/data/rules/proprietary-license_404.yml deleted file mode 100644 index cca054d89cb..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_404.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://keypirinha.com/license.html diff --git a/src/licensedcode/data/rules/proprietary-license_405.RULE b/src/licensedcode/data/rules/proprietary-license_405.RULE index c0a0498eae1..fb8cacc8711 100644 --- a/src/licensedcode/data/rules/proprietary-license_405.RULE +++ b/src/licensedcode/data/rules/proprietary-license_405.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://keypirinha.com/license.html +--- + Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: Only unmodified installers and/or packages can be redistributed; redistribution of binaries in any other form is not permitted. Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/src/licensedcode/data/rules/proprietary-license_405.yml b/src/licensedcode/data/rules/proprietary-license_405.yml deleted file mode 100644 index cca054d89cb..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_405.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://keypirinha.com/license.html diff --git a/src/licensedcode/data/rules/proprietary-license_406.RULE b/src/licensedcode/data/rules/proprietary-license_406.RULE index 8b03fc56e55..9e05b6850a0 100644 --- a/src/licensedcode/data/rules/proprietary-license_406.RULE +++ b/src/licensedcode/data/rules/proprietary-license_406.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen added to an MIT-like license https://github.com/newstar123/React-_-Dev/blob/73df75cea557ced648b4f2109ead9a2587656cfd/LICENSE.md#L13 +--- + The rights granted above may only be exercised to develop and distribute applications that integrate or interoperate with software or services, and in the case of external, stand-alone applications that do not embed diff --git a/src/licensedcode/data/rules/proprietary-license_406.yml b/src/licensedcode/data/rules/proprietary-license_406.yml deleted file mode 100644 index d02d86dfb15..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_406.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen added to an MIT-like license https://github.com/newstar123/React-_-Dev/blob/73df75cea557ced648b4f2109ead9a2587656cfd/LICENSE.md#L13 diff --git a/src/licensedcode/data/rules/proprietary-license_407.RULE b/src/licensedcode/data/rules/proprietary-license_407.RULE index 506f3f666e4..c2e1172c9df 100644 --- a/src/licensedcode/data/rules/proprietary-license_407.RULE +++ b/src/licensedcode/data/rules/proprietary-license_407.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen added to an MIT-like license https://github.com/newstar123/React-_-Dev/blob/73df75cea557ced648b4f2109ead9a2587656cfd/LICENSE.md#L13 +--- + The rights granted above may only be exercised to develop and distribute applications that integrate or interoperate with Shopify software or services, and in the case of external, stand-alone applications that do not embed directly diff --git a/src/licensedcode/data/rules/proprietary-license_407.yml b/src/licensedcode/data/rules/proprietary-license_407.yml deleted file mode 100644 index d02d86dfb15..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_407.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen added to an MIT-like license https://github.com/newstar123/React-_-Dev/blob/73df75cea557ced648b4f2109ead9a2587656cfd/LICENSE.md#L13 diff --git a/src/licensedcode/data/rules/proprietary-license_408.RULE b/src/licensedcode/data/rules/proprietary-license_408.RULE index c39dae55ad1..25207f46b35 100644 --- a/src/licensedcode/data/rules/proprietary-license_408.RULE +++ b/src/licensedcode/data/rules/proprietary-license_408.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen added to an MIT-like license https://github.com/newstar123/React-_-Dev/blob/73df75cea557ced648b4f2109ead9a2587656cfd/LICENSE.md#L13 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/proprietary-license_408.yml b/src/licensedcode/data/rules/proprietary-license_408.yml deleted file mode 100644 index 7a6227185f3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_408.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen added to an MIT-like license https://github.com/newstar123/React-_-Dev/blob/73df75cea557ced648b4f2109ead9a2587656cfd/LICENSE.md#L13 diff --git a/src/licensedcode/data/rules/proprietary-license_409.RULE b/src/licensedcode/data/rules/proprietary-license_409.RULE index 75427b5c5a4..af712cd56e4 100644 --- a/src/licensedcode/data/rules/proprietary-license_409.RULE +++ b/src/licensedcode/data/rules/proprietary-license_409.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (collectively, the "Software"), to copy, modify, merge, publish, distribute, sublicense, and/or sell copies of diff --git a/src/licensedcode/data/rules/proprietary-license_409.yml b/src/licensedcode/data/rules/proprietary-license_409.yml deleted file mode 100644 index b9efbf505d9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_409.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 diff --git a/src/licensedcode/data/rules/proprietary-license_41.RULE b/src/licensedcode/data/rules/proprietary-license_41.RULE index 5085176547f..e3491ec1a5e 100644 --- a/src/licensedcode/data/rules/proprietary-license_41.RULE +++ b/src/licensedcode/data/rules/proprietary-license_41.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.aitgmbh.de/ +--- + http://www.aitgmbh.de/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_41.yml b/src/licensedcode/data/rules/proprietary-license_41.yml deleted file mode 100644 index 25540022988..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.aitgmbh.de/ diff --git a/src/licensedcode/data/rules/proprietary-license_410.RULE b/src/licensedcode/data/rules/proprietary-license_410.RULE index 91f9155c74d..29a3262a666 100644 --- a/src/licensedcode/data/rules/proprietary-license_410.RULE +++ b/src/licensedcode/data/rules/proprietary-license_410.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 +--- + The rights granted above may only be exercised to develop and distribute applications that are dissimilar and visually distinct from RetailMeNot products and services, as determined by RetailMeNot in its sole discretion. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_410.yml b/src/licensedcode/data/rules/proprietary-license_410.yml deleted file mode 100644 index f1cbe3268a4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_410.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 diff --git a/src/licensedcode/data/rules/proprietary-license_411.RULE b/src/licensedcode/data/rules/proprietary-license_411.RULE index b678f20e313..250bea15e81 100644 --- a/src/licensedcode/data/rules/proprietary-license_411.RULE +++ b/src/licensedcode/data/rules/proprietary-license_411.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 +--- + The rights granted above may only be exercised to develop and distribute applications that are dissimilar and visually distinct from products and services, as determined by in its sole discretion. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_411.yml b/src/licensedcode/data/rules/proprietary-license_411.yml deleted file mode 100644 index f1cbe3268a4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_411.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 diff --git a/src/licensedcode/data/rules/proprietary-license_412.RULE b/src/licensedcode/data/rules/proprietary-license_412.RULE index 53096134c57..bee8fe1094f 100644 --- a/src/licensedcode/data/rules/proprietary-license_412.RULE +++ b/src/licensedcode/data/rules/proprietary-license_412.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 +ignorable_urls: + - https://github.com/Shopify/polaris-react/blob/master/LICENSE.md +--- + Licenses - Source code is under a [custom license](https://github.com/Shopify/polaris-react/blob/master/LICENSE.md) based on MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_412.yml b/src/licensedcode/data/rules/proprietary-license_412.yml deleted file mode 100644 index 460489b3790..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_412.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 -ignorable_urls: - - https://github.com/Shopify/polaris-react/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_413.RULE b/src/licensedcode/data/rules/proprietary-license_413.RULE index 1fdc89cde94..a06391fa718 100644 --- a/src/licensedcode/data/rules/proprietary-license_413.RULE +++ b/src/licensedcode/data/rules/proprietary-license_413.RULE @@ -1 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 +ignorable_urls: + - https://github.com/Shopify/polaris-react/blob/master/LICENSE.md +--- + - Source code is under a [custom license](https://github.com/Shopify/polaris-react/blob/master/LICENSE.md) based on MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_413.yml b/src/licensedcode/data/rules/proprietary-license_413.yml deleted file mode 100644 index 460489b3790..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_413.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 -ignorable_urls: - - https://github.com/Shopify/polaris-react/blob/master/LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_414.RULE b/src/licensedcode/data/rules/proprietary-license_414.RULE index 9ab1d9ae0a3..2c7142fe312 100644 --- a/src/licensedcode/data/rules/proprietary-license_414.RULE +++ b/src/licensedcode/data/rules/proprietary-license_414.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 +--- + Source code is under a [custom license] based on MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_414.yml b/src/licensedcode/data/rules/proprietary-license_414.yml deleted file mode 100644 index f1cbe3268a4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_414.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 diff --git a/src/licensedcode/data/rules/proprietary-license_415.RULE b/src/licensedcode/data/rules/proprietary-license_415.RULE index 841b6c73f42..678fb630ac9 100644 --- a/src/licensedcode/data/rules/proprietary-license_415.RULE +++ b/src/licensedcode/data/rules/proprietary-license_415.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (collectively, the "Software"), to copy, modify, merge, publish, distribute, sublicense, and/or sell copies of diff --git a/src/licensedcode/data/rules/proprietary-license_415.yml b/src/licensedcode/data/rules/proprietary-license_415.yml deleted file mode 100644 index b9efbf505d9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_415.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://github.com/sharkparty/fractals/blob/2d4bb35661acd3804fdf263b7fb929ea364601d9/LICENSE.md#L8 diff --git a/src/licensedcode/data/rules/proprietary-license_416.RULE b/src/licensedcode/data/rules/proprietary-license_416.RULE index cd39c6a3633..4b5bd758bb1 100644 --- a/src/licensedcode/data/rules/proprietary-license_416.RULE +++ b/src/licensedcode/data/rules/proprietary-license_416.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +--- + * Redistribution and use in source and binary forms, with or without * modification, is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_416.yml b/src/licensedcode/data/rules/proprietary-license_416.yml deleted file mode 100644 index 8a5538b9f0b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_416.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/proprietary-license_417.RULE b/src/licensedcode/data/rules/proprietary-license_417.RULE index f8b8ab1db69..56cb1eb2a82 100644 --- a/src/licensedcode/data/rules/proprietary-license_417.RULE +++ b/src/licensedcode/data/rules/proprietary-license_417.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * -- ANY USE OR REDISTRIBUTION IN PART OR IN WHOLE MUST BE HANDLED IN * -- BY DEFAULT, DISTRIBUTION OR DISCLOSURE IS NOT PERMITTED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_417.yml b/src/licensedcode/data/rules/proprietary-license_417.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_417.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_418.RULE b/src/licensedcode/data/rules/proprietary-license_418.RULE index 22c7e64e93f..fd68df574ff 100644 --- a/src/licensedcode/data/rules/proprietary-license_418.RULE +++ b/src/licensedcode/data/rules/proprietary-license_418.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + The free version cannot be used in a commercial context \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_418.yml b/src/licensedcode/data/rules/proprietary-license_418.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_418.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_419.RULE b/src/licensedcode/data/rules/proprietary-license_419.RULE index 40b7f37e18b..5e859e335d6 100644 --- a/src/licensedcode/data/rules/proprietary-license_419.RULE +++ b/src/licensedcode/data/rules/proprietary-license_419.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Redistribution of pre-compiled binaries is not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_419.yml b/src/licensedcode/data/rules/proprietary-license_419.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_419.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_42.RULE b/src/licensedcode/data/rules/proprietary-license_42.RULE index 302448a5f0f..64372910541 100644 --- a/src/licensedcode/data/rules/proprietary-license_42.RULE +++ b/src/licensedcode/data/rules/proprietary-license_42.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.amestotranslations.se/ +--- + http://www.amestotranslations.se/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_42.yml b/src/licensedcode/data/rules/proprietary-license_42.yml deleted file mode 100644 index 0974c3d40f5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.amestotranslations.se/ diff --git a/src/licensedcode/data/rules/proprietary-license_420.RULE b/src/licensedcode/data/rules/proprietary-license_420.RULE index c80d748bc99..32a581e28d0 100644 --- a/src/licensedcode/data/rules/proprietary-license_420.RULE +++ b/src/licensedcode/data/rules/proprietary-license_420.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + May not be used for monetary gain \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_420.yml b/src/licensedcode/data/rules/proprietary-license_420.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_420.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_421.RULE b/src/licensedcode/data/rules/proprietary-license_421.RULE index 4e81a28b882..52d06879639 100644 --- a/src/licensedcode/data/rules/proprietary-license_421.RULE +++ b/src/licensedcode/data/rules/proprietary-license_421.RULE @@ -1,3 +1,16 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 70 +ignorable_copyrights: + - copyrighted work of LSI CORPORATION +ignorable_holders: + - work of LSI CORPORATION +ignorable_authors: + - LSI CORPORATION +--- + NOTICE SPECIFIC TO SOFTWARE AVAILABLE ON THIS WEBSITE. Any software that is made available to download from this server ("Software") is the copyrighted work of LSI CORPORATION and/or its suppliers. Use of the Software is governed by the terms of the end user license agreement, if any, which accompanies or is included with the Software ("License Agreement"). An end user will be unable to install any Software that is accompanied by or includes a License Agreement, unless he or she first agrees to the License Agreement terms. diff --git a/src/licensedcode/data/rules/proprietary-license_421.yml b/src/licensedcode/data/rules/proprietary-license_421.yml deleted file mode 100644 index aed223c523b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_421.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 70 -ignorable_copyrights: - - copyrighted work of LSI CORPORATION -ignorable_holders: - - work of LSI CORPORATION -ignorable_authors: - - LSI CORPORATION diff --git a/src/licensedcode/data/rules/proprietary-license_422.RULE b/src/licensedcode/data/rules/proprietary-license_422.RULE index 7d31c592781..a1b1a628b1a 100644 --- a/src/licensedcode/data/rules/proprietary-license_422.RULE +++ b/src/licensedcode/data/rules/proprietary-license_422.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Permission is granted to copy and distribute the source and executables made therefrom, but any commercial use whatsoever is not allowed, other than by prior written permission from the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_422.yml b/src/licensedcode/data/rules/proprietary-license_422.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_422.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_423.RULE b/src/licensedcode/data/rules/proprietary-license_423.RULE index e9dc51dad5f..7b91ceea10f 100644 --- a/src/licensedcode/data/rules/proprietary-license_423.RULE +++ b/src/licensedcode/data/rules/proprietary-license_423.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Permission is granted to copy and distribute the source and executables made therefrom, but any commercial use whatsoever is not allowed, other than by prior written permission from the author. diff --git a/src/licensedcode/data/rules/proprietary-license_423.yml b/src/licensedcode/data/rules/proprietary-license_423.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_423.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_424.RULE b/src/licensedcode/data/rules/proprietary-license_424.RULE index ba49b076e8d..66321ea03a6 100644 --- a/src/licensedcode/data/rules/proprietary-license_424.RULE +++ b/src/licensedcode/data/rules/proprietary-license_424.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + TERMS AND CONDITIONS IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS INTEL(C) SOFTWARE diff --git a/src/licensedcode/data/rules/proprietary-license_424.yml b/src/licensedcode/data/rules/proprietary-license_424.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_424.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_425.RULE b/src/licensedcode/data/rules/proprietary-license_425.RULE index 923f5f82dde..38862b50059 100644 --- a/src/licensedcode/data/rules/proprietary-license_425.RULE +++ b/src/licensedcode/data/rules/proprietary-license_425.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + ipw 2100, 2200 and 2915 SOFTWARE LICENSE AGREEMENT (Final, Single User) ======================================================================= diff --git a/src/licensedcode/data/rules/proprietary-license_425.yml b/src/licensedcode/data/rules/proprietary-license_425.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_425.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_426.RULE b/src/licensedcode/data/rules/proprietary-license_426.RULE index 229c4be79b0..2516da9bf3d 100644 --- a/src/licensedcode/data/rules/proprietary-license_426.RULE +++ b/src/licensedcode/data/rules/proprietary-license_426.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + ipw 2200, 2915 firmware license For OEMs, IHVs, and ISVs: ========================================================= diff --git a/src/licensedcode/data/rules/proprietary-license_426.yml b/src/licensedcode/data/rules/proprietary-license_426.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_426.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_427.RULE b/src/licensedcode/data/rules/proprietary-license_427.RULE index afaa1f346b0..08a4a2a3a87 100644 --- a/src/licensedcode/data/rules/proprietary-license_427.RULE +++ b/src/licensedcode/data/rules/proprietary-license_427.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: see https://github.com/dworkin/dgd/blob/5a1a0a0c8a5d80afe13237ccb56301eaee7221ed/Copyright +--- + Permission is granted to copy the source and executables made therefrom, but any commercial distribution or use whatsoever is not allowed. Commercial distribution or use refers to any distribution or use from which any form of diff --git a/src/licensedcode/data/rules/proprietary-license_427.yml b/src/licensedcode/data/rules/proprietary-license_427.yml deleted file mode 100644 index c7a5f18ec9f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_427.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: see https://github.com/dworkin/dgd/blob/5a1a0a0c8a5d80afe13237ccb56301eaee7221ed/Copyright diff --git a/src/licensedcode/data/rules/proprietary-license_428.RULE b/src/licensedcode/data/rules/proprietary-license_428.RULE index b4bdfbf1b20..e2382470604 100644 --- a/src/licensedcode/data/rules/proprietary-license_428.RULE +++ b/src/licensedcode/data/rules/proprietary-license_428.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Redistribution is not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_428.yml b/src/licensedcode/data/rules/proprietary-license_428.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_428.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_429.RULE b/src/licensedcode/data/rules/proprietary-license_429.RULE index d1ee1e32300..75219a6b80f 100644 --- a/src/licensedcode/data/rules/proprietary-license_429.RULE +++ b/src/licensedcode/data/rules/proprietary-license_429.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + // Redistribution and use in source and binary forms, with or without // modification is not permitted unless authorized in writing by a duly // appointed officer of Packet Engineering, Inc. or its derivatives \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_429.yml b/src/licensedcode/data/rules/proprietary-license_429.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_429.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_43.RULE b/src/licensedcode/data/rules/proprietary-license_43.RULE index 203bb9e9211..375fa2dad03 100644 --- a/src/licensedcode/data/rules/proprietary-license_43.RULE +++ b/src/licensedcode/data/rules/proprietary-license_43.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.amhx.org/ +--- + http://www.amhx.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_43.yml b/src/licensedcode/data/rules/proprietary-license_43.yml deleted file mode 100644 index 9e740aa7852..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.amhx.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_430.RULE b/src/licensedcode/data/rules/proprietary-license_430.RULE index 4d08894b784..53b82a8de28 100644 --- a/src/licensedcode/data/rules/proprietary-license_430.RULE +++ b/src/licensedcode/data/rules/proprietary-license_430.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification IS NOT permitted without specific prior written permission. Further, neither the name of the company, Ismion diff --git a/src/licensedcode/data/rules/proprietary-license_430.yml b/src/licensedcode/data/rules/proprietary-license_430.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_430.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_431.RULE b/src/licensedcode/data/rules/proprietary-license_431.RULE index 8eb8de3b9b7..866ba8ec9c3 100644 --- a/src/licensedcode/data/rules/proprietary-license_431.RULE +++ b/src/licensedcode/data/rules/proprietary-license_431.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + /* EPFL grants a non-exclusive and non-transferable license for non */ /* commercial use of the Software for education and research purposes */ /* only. Any other use of the Software is expressly excluded. */ diff --git a/src/licensedcode/data/rules/proprietary-license_431.yml b/src/licensedcode/data/rules/proprietary-license_431.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_431.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_432.RULE b/src/licensedcode/data/rules/proprietary-license_432.RULE index 343a7a08720..a39ce5ac3c8 100644 --- a/src/licensedcode/data/rules/proprietary-license_432.RULE +++ b/src/licensedcode/data/rules/proprietary-license_432.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_authors: + - W. Metzenthen +--- + * This copyright notice covers the redistribution and use of the * FPU emulator developed by W. Metzenthen. It covers only its use * in the 386BSD, FreeBSD and NetBSD operating systems. Any other diff --git a/src/licensedcode/data/rules/proprietary-license_432.yml b/src/licensedcode/data/rules/proprietary-license_432.yml deleted file mode 100644 index 1992ee54930..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_432.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_authors: - - W. Metzenthen diff --git a/src/licensedcode/data/rules/proprietary-license_433.RULE b/src/licensedcode/data/rules/proprietary-license_433.RULE index dabe00c8765..3f38a3096ab 100644 --- a/src/licensedcode/data/rules/proprietary-license_433.RULE +++ b/src/licensedcode/data/rules/proprietary-license_433.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Provided for use as educational material. # Redistribution for other purposes is not permitted. # \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_433.yml b/src/licensedcode/data/rules/proprietary-license_433.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_433.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_434.RULE b/src/licensedcode/data/rules/proprietary-license_434.RULE index 66f23a29a91..8caaa41e8a2 100644 --- a/src/licensedcode/data/rules/proprietary-license_434.RULE +++ b/src/licensedcode/data/rules/proprietary-license_434.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * | Redistribution and use in source form, with or without modification | * | is NOT permitted without consent from the copyright holder. | * | | diff --git a/src/licensedcode/data/rules/proprietary-license_434.yml b/src/licensedcode/data/rules/proprietary-license_434.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_434.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_435.RULE b/src/licensedcode/data/rules/proprietary-license_435.RULE index adee1c3cbc0..9e8ed82bc62 100644 --- a/src/licensedcode/data/rules/proprietary-license_435.RULE +++ b/src/licensedcode/data/rules/proprietary-license_435.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * Permission to use this program and its related files is at the * discretion of RMSI Pvt Ltd. * diff --git a/src/licensedcode/data/rules/proprietary-license_435.yml b/src/licensedcode/data/rules/proprietary-license_435.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_435.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_436.RULE b/src/licensedcode/data/rules/proprietary-license_436.RULE index 45cb70927ce..7ae1926732e 100644 --- a/src/licensedcode/data/rules/proprietary-license_436.RULE +++ b/src/licensedcode/data/rules/proprietary-license_436.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.ee.ucl.ac.uk/~mflanaga +--- + * PERMISSION TO COPY: * Permission to use, copy and modify this software and its documentation for * NON-COMMERCIAL purposes is granted, without fee, provided that an acknowledgement diff --git a/src/licensedcode/data/rules/proprietary-license_436.yml b/src/licensedcode/data/rules/proprietary-license_436.yml deleted file mode 100644 index c81ffdea12b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_436.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.ee.ucl.ac.uk/~mflanaga diff --git a/src/licensedcode/data/rules/proprietary-license_437.RULE b/src/licensedcode/data/rules/proprietary-license_437.RULE index 798f83cfc36..8bfcc1ba7e2 100644 --- a/src/licensedcode/data/rules/proprietary-license_437.RULE +++ b/src/licensedcode/data/rules/proprietary-license_437.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Any redistribution ** of demo files in source code or binary form, with or without ** modification, is not permitted. diff --git a/src/licensedcode/data/rules/proprietary-license_437.yml b/src/licensedcode/data/rules/proprietary-license_437.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_437.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_438.RULE b/src/licensedcode/data/rules/proprietary-license_438.RULE index 913c640d5c7..d2150d8022f 100644 --- a/src/licensedcode/data/rules/proprietary-license_438.RULE +++ b/src/licensedcode/data/rules/proprietary-license_438.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Any redistribution ** of demo files in source code or binary form, with or without ** modification, is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_438.yml b/src/licensedcode/data/rules/proprietary-license_438.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_438.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_439.RULE b/src/licensedcode/data/rules/proprietary-license_439.RULE index 21cb6bdc1ec..259cb4df35a 100644 --- a/src/licensedcode/data/rules/proprietary-license_439.RULE +++ b/src/licensedcode/data/rules/proprietary-license_439.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended * only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction * arose from modification of the original source, or other redistribution of this source diff --git a/src/licensedcode/data/rules/proprietary-license_439.yml b/src/licensedcode/data/rules/proprietary-license_439.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_439.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_44.RULE b/src/licensedcode/data/rules/proprietary-license_44.RULE index 38e44f43351..07fff46bf28 100644 --- a/src/licensedcode/data/rules/proprietary-license_44.RULE +++ b/src/licensedcode/data/rules/proprietary-license_44.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.calculationworks.com/tl/bcfncterms/ +--- + http://www.calculationworks.com/tl/bcfncterms/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_44.yml b/src/licensedcode/data/rules/proprietary-license_44.yml deleted file mode 100644 index 19cf6781f8c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.calculationworks.com/tl/bcfncterms/ diff --git a/src/licensedcode/data/rules/proprietary-license_440.RULE b/src/licensedcode/data/rules/proprietary-license_440.RULE index c03c18813fd..bc1c761d814 100644 --- a/src/licensedcode/data/rules/proprietary-license_440.RULE +++ b/src/licensedcode/data/rules/proprietary-license_440.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms is not permitted without the written * consent from Canabang Inc. * diff --git a/src/licensedcode/data/rules/proprietary-license_440.yml b/src/licensedcode/data/rules/proprietary-license_440.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_440.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_441.RULE b/src/licensedcode/data/rules/proprietary-license_441.RULE index 4ca9d31d689..ea7cca3f720 100644 --- a/src/licensedcode/data/rules/proprietary-license_441.RULE +++ b/src/licensedcode/data/rules/proprietary-license_441.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * Redistribution and use in source form with or without modification is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_441.yml b/src/licensedcode/data/rules/proprietary-license_441.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_441.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_442.RULE b/src/licensedcode/data/rules/proprietary-license_442.RULE index 61c21b92d15..2abea5bcf01 100644 --- a/src/licensedcode/data/rules/proprietary-license_442.RULE +++ b/src/licensedcode/data/rules/proprietary-license_442.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + You may study, use, and modify this example. Redistribution is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_442.yml b/src/licensedcode/data/rules/proprietary-license_442.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_442.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_443.RULE b/src/licensedcode/data/rules/proprietary-license_443.RULE index 30fa644788d..6999650a064 100644 --- a/src/licensedcode/data/rules/proprietary-license_443.RULE +++ b/src/licensedcode/data/rules/proprietary-license_443.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * -- ANY USE OR REDISTRIBUTION IN PART OR IN WHOLE MUST BE HANDLED IN * -- ACCORDANCE WITH THE GAISLER LICENSE AGREEMENT AND MUST BE APPROVED * -- IN ADVANCE IN WRITING. diff --git a/src/licensedcode/data/rules/proprietary-license_443.yml b/src/licensedcode/data/rules/proprietary-license_443.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_443.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_444.RULE b/src/licensedcode/data/rules/proprietary-license_444.RULE index 62f5dcd998f..3beb7ef39ce 100644 --- a/src/licensedcode/data/rules/proprietary-license_444.RULE +++ b/src/licensedcode/data/rules/proprietary-license_444.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_authors: + - the Fraunhofer Institut fuer Materialfluss und Logistik, Dortmund, Germany (http://www.iml.fraunhofer.de) +ignorable_urls: + - http://www.iml.fraunhofer.de/ +ignorable_emails: + - info@myWMS.de +--- + * Commercial use of this software as well as redistribution in * source and binary forms, with or without modification, * is NOT permitted except of written permission by FhG-IML! diff --git a/src/licensedcode/data/rules/proprietary-license_444.yml b/src/licensedcode/data/rules/proprietary-license_444.yml deleted file mode 100644 index e6e06f3fed8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_444.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_authors: - - the Fraunhofer Institut fuer Materialfluss und Logistik, Dortmund, Germany (http://www.iml.fraunhofer.de) -ignorable_urls: - - http://www.iml.fraunhofer.de/ -ignorable_emails: - - info@myWMS.de diff --git a/src/licensedcode/data/rules/proprietary-license_445.RULE b/src/licensedcode/data/rules/proprietary-license_445.RULE index b719a15acb7..a989d98d95a 100644 --- a/src/licensedcode/data/rules/proprietary-license_445.RULE +++ b/src/licensedcode/data/rules/proprietary-license_445.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Redistribution or use of this project in whole or in part is not permitted without the written consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_445.yml b/src/licensedcode/data/rules/proprietary-license_445.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_445.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_446.RULE b/src/licensedcode/data/rules/proprietary-license_446.RULE index 752ff3631f1..36693bc3527 100644 --- a/src/licensedcode/data/rules/proprietary-license_446.RULE +++ b/src/licensedcode/data/rules/proprietary-license_446.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + REDISTRIBUTION IS NOT PERMITTED. WE HOLD AN EXCLUSIVE LICENSE FOR COMMERCIAL USE. THIS IS NOT FREE CODE AND YOU MAY NOT REPLICATE OR REDISTRIBUTE. diff --git a/src/licensedcode/data/rules/proprietary-license_446.yml b/src/licensedcode/data/rules/proprietary-license_446.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_446.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_447.RULE b/src/licensedcode/data/rules/proprietary-license_447.RULE index ccd71a66f6f..a1fd141cec8 100644 --- a/src/licensedcode/data/rules/proprietary-license_447.RULE +++ b/src/licensedcode/data/rules/proprietary-license_447.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, is not permitted without a written agreement * from \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_447.yml b/src/licensedcode/data/rules/proprietary-license_447.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_447.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_448.RULE b/src/licensedcode/data/rules/proprietary-license_448.RULE index e8bed3d1e4e..2d1d9605d1d 100644 --- a/src/licensedcode/data/rules/proprietary-license_448.RULE +++ b/src/licensedcode/data/rules/proprietary-license_448.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, is not permitted without a written agreement * from software company \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_448.yml b/src/licensedcode/data/rules/proprietary-license_448.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_448.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_449.RULE b/src/licensedcode/data/rules/proprietary-license_449.RULE index e1f4fed4f2e..de8ae0a7530 100644 --- a/src/licensedcode/data/rules/proprietary-license_449.RULE +++ b/src/licensedcode/data/rules/proprietary-license_449.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +referenced_filenames: + - LICENSE.md +--- + All EEMBC Benchmark Software are products of EEMBC and are provided under the terms of the EEMBC Benchmark License Agreements. The EEMBC Benchmark Software are proprietary intellectual properties of EEMBC and its Members diff --git a/src/licensedcode/data/rules/proprietary-license_449.yml b/src/licensedcode/data/rules/proprietary-license_449.yml deleted file mode 100644 index f7530cfc3f4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_449.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_45.RULE b/src/licensedcode/data/rules/proprietary-license_45.RULE index 67c6f60516a..b317944e62b 100644 --- a/src/licensedcode/data/rules/proprietary-license_45.RULE +++ b/src/licensedcode/data/rules/proprietary-license_45.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.catapush.com/pricing +--- + http://www.catapush.com/pricing \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_45.yml b/src/licensedcode/data/rules/proprietary-license_45.yml deleted file mode 100644 index a0c10b06da0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.catapush.com/pricing diff --git a/src/licensedcode/data/rules/proprietary-license_450.RULE b/src/licensedcode/data/rules/proprietary-license_450.RULE index df16d475718..77ab21ae117 100644 --- a/src/licensedcode/data/rules/proprietary-license_450.RULE +++ b/src/licensedcode/data/rules/proprietary-license_450.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://raw.githubusercontent.com/eembc/coremark-pro/main/LICENSE.md +--- + # COREMARK®-PRO ACCEPTABLE USE AGREEMENT This ACCEPTABLE USE AGREEMENT (this “Agreement”) is offered by Embedded Microprocessor Benchmark Consortium, a California nonprofit corporation (“Licensor”), to users of its CoreMark®-PRO software (“Licensee”) exclusively on the following terms. diff --git a/src/licensedcode/data/rules/proprietary-license_450.yml b/src/licensedcode/data/rules/proprietary-license_450.yml deleted file mode 100644 index 19f8e1ea2e9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_450.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://raw.githubusercontent.com/eembc/coremark-pro/main/LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_451.RULE b/src/licensedcode/data/rules/proprietary-license_451.RULE index adc220413e4..5851221dabe 100644 --- a/src/licensedcode/data/rules/proprietary-license_451.RULE +++ b/src/licensedcode/data/rules/proprietary-license_451.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: mit-like from https://github.com/Ahmed-Ali/JSONExport/blob/ec2051df23faf2b90290360139b9918c485b746a/LICENSE +ignorable_urls: + - https://github.com/Ahmed-Ali/JSONExport +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_451.yml b/src/licensedcode/data/rules/proprietary-license_451.yml deleted file mode 100644 index 25f87a040a4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_451.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: mit-like from https://github.com/Ahmed-Ali/JSONExport/blob/ec2051df23faf2b90290360139b9918c485b746a/LICENSE -ignorable_urls: - - https://github.com/Ahmed-Ali/JSONExport diff --git a/src/licensedcode/data/rules/proprietary-license_452.RULE b/src/licensedcode/data/rules/proprietary-license_452.RULE index 0e8312f4561..1307ef01fe3 100644 --- a/src/licensedcode/data/rules/proprietary-license_452.RULE +++ b/src/licensedcode/data/rules/proprietary-license_452.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: mit-like from https://github.com/Ahmed-Ali/JSONExport/blob/ec2051df23faf2b90290360139b9918c485b746a/LICENSE +--- + available under custom version of MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_452.yml b/src/licensedcode/data/rules/proprietary-license_452.yml deleted file mode 100644 index 2d7af709b68..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_452.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: mit-like from https://github.com/Ahmed-Ali/JSONExport/blob/ec2051df23faf2b90290360139b9918c485b746a/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_453.RULE b/src/licensedcode/data/rules/proprietary-license_453.RULE index b831d5c7168..dc20bc414d8 100644 --- a/src/licensedcode/data/rules/proprietary-license_453.RULE +++ b/src/licensedcode/data/rules/proprietary-license_453.RULE @@ -1,3 +1,19 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.vmware.com/ + - http://www.vmware.com/download/eula/vmtn.html + - http://www.vmware.com/download/open_source.html + - http://www.vmware.com/support/ + - http://www.vmware.com/support/pubs +ignorable_emails: + - benchmark@vmware.com + - info@vmware.com + - sales@vmware.com +--- + VMWARE MASTER END USER LICENSE AGREEMENT NOTICE: BY DOWNLOADING AND INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS VMWARE MASTER END USER LICENSE AGREEMENT ("EULA"). IF YOU DO NOT AGREE TO THE TERMS OF THIS EULA, YOU MAY NOT DOWNLOAD, INSTALL, COPY OR USE THE SOFTWARE, AND YOU MAY RETURN THE UNUSED SOFTWARE TO THE VENDORFROM WHICH YOU ACQUIRED IT WITHIN THIRTY (30) DAYS AND REQUEST A REFUND OF THE LICENSE FEE, IF ANY, ALREADY PAID UPON SHOWING PROOF OF PAYMENT. "YOU" MEANS THE NATURAL PERSON OR THE ENTITY THAT IS AGREEING TO BE BOUND BY THIS EULA, THEIR EMPLOYEES AND THIRD PARTY CONTRACTORS THAT PROVIDE SERVICES TO YOU.YOU SHALL BE LIABLE FOR ANY FAILURE BY SUCH EMPLOYEES AND THIRD PARTY CONTRACTORS TO COMPLY WITH THE TERMS OF THIS AGREEMENT. diff --git a/src/licensedcode/data/rules/proprietary-license_453.yml b/src/licensedcode/data/rules/proprietary-license_453.yml deleted file mode 100644 index 5ced9bb2152..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_453.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.vmware.com/ - - http://www.vmware.com/download/eula/vmtn.html - - http://www.vmware.com/download/open_source.html - - http://www.vmware.com/support/ - - http://www.vmware.com/support/pubs -ignorable_emails: - - benchmark@vmware.com - - info@vmware.com - - sales@vmware.com diff --git a/src/licensedcode/data/rules/proprietary-license_454.RULE b/src/licensedcode/data/rules/proprietary-license_454.RULE index ddc41802628..3d8ff5a9a89 100644 --- a/src/licensedcode/data/rules/proprietary-license_454.RULE +++ b/src/licensedcode/data/rules/proprietary-license_454.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: mit-like but not MIT from https://github.com/engineyard/ey-cloud-recipes/blob/2aeb4f55a8616f933d7a8aec951bafd3ad92f10d/LICENSE.txt +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_454.yml b/src/licensedcode/data/rules/proprietary-license_454.yml deleted file mode 100644 index fef1c44eec8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_454.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: mit-like but not MIT from https://github.com/engineyard/ey-cloud-recipes/blob/2aeb4f55a8616f933d7a8aec951bafd3ad92f10d/LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_455.RULE b/src/licensedcode/data/rules/proprietary-license_455.RULE index c0f3888c2ee..46f37bd8809 100644 --- a/src/licensedcode/data/rules/proprietary-license_455.RULE +++ b/src/licensedcode/data/rules/proprietary-license_455.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + distributed under the Coopyright License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_455.yml b/src/licensedcode/data/rules/proprietary-license_455.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_455.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_456.RULE b/src/licensedcode/data/rules/proprietary-license_456.RULE index e02e8deed18..c0de062ba43 100644 --- a/src/licensedcode/data/rules/proprietary-license_456.RULE +++ b/src/licensedcode/data/rules/proprietary-license_456.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://github.com/libermans/coopyright-projects +--- + Use requires the inclusion of links to Source Projects and to this project, and the addition of the cost for end users as determined in Pricing. Pricing: This project does not prescribe any rules for the pricing of the use of derivative diff --git a/src/licensedcode/data/rules/proprietary-license_456.yml b/src/licensedcode/data/rules/proprietary-license_456.yml deleted file mode 100644 index f44307f777f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_456.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://github.com/libermans/coopyright-projects diff --git a/src/licensedcode/data/rules/proprietary-license_457.RULE b/src/licensedcode/data/rules/proprietary-license_457.RULE index 4d6a46fa742..4de3de84c6c 100644 --- a/src/licensedcode/data/rules/proprietary-license_457.RULE +++ b/src/licensedcode/data/rules/proprietary-license_457.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: It looks like an MIT BUT does not allow selling Seen in https://github.com/mitesh77/Best-Flutter-UI-Templates/blob/52a94954b6814577781b2c38d5c8a841effbb0ce/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_457.yml b/src/licensedcode/data/rules/proprietary-license_457.yml deleted file mode 100644 index 5e5046a1308..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_457.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: It looks like an MIT BUT does not allow selling Seen in https://github.com/mitesh77/Best-Flutter-UI-Templates/blob/52a94954b6814577781b2c38d5c8a841effbb0ce/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_458.RULE b/src/licensedcode/data/rules/proprietary-license_458.RULE index 1d299a039b0..9bb585f9a2f 100644 --- a/src/licensedcode/data/rules/proprietary-license_458.RULE +++ b/src/licensedcode/data/rules/proprietary-license_458.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: It looks like an MIT but has an extra condition AND does not allow selling Seen in https://github.com/mitesh77/Best-Flutter-UI-Templates/blob/52a94954b6814577781b2c38d5c8a841effbb0ce/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_458.yml b/src/licensedcode/data/rules/proprietary-license_458.yml deleted file mode 100644 index 1db60de48c9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_458.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: It looks like an MIT but has an extra condition AND does not allow selling Seen in https://github.com/mitesh77/Best-Flutter-UI-Templates/blob/52a94954b6814577781b2c38d5c8a841effbb0ce/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_459.RULE b/src/licensedcode/data/rules/proprietary-license_459.RULE index adf4d4b9cce..d14ba829de7 100644 --- a/src/licensedcode/data/rules/proprietary-license_459.RULE +++ b/src/licensedcode/data/rules/proprietary-license_459.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/srdqty/talc-3.0/blob/df83dd5ff0e2b189b13280ddae233d8277199350/tests/loader/flash/ver2/nameconvert.h#L16 +ignorable_authors: + - Rice University, Houston, Texas and its contributors +ignorable_emails: + - techtran@rice.edu +--- + This software, "Flash", is distributed to individuals for personal non-commercial use and to non-profit entities for non-commercial purposes only. It is licensed on a non-exclusive basis, free of diff --git a/src/licensedcode/data/rules/proprietary-license_459.yml b/src/licensedcode/data/rules/proprietary-license_459.yml deleted file mode 100644 index cebc5715783..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_459.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/srdqty/talc-3.0/blob/df83dd5ff0e2b189b13280ddae233d8277199350/tests/loader/flash/ver2/nameconvert.h#L16 -ignorable_authors: - - Rice University, Houston, Texas and its contributors -ignorable_emails: - - techtran@rice.edu diff --git a/src/licensedcode/data/rules/proprietary-license_46.RULE b/src/licensedcode/data/rules/proprietary-license_46.RULE index a8aacf4a901..e0b082e37d1 100644 --- a/src/licensedcode/data/rules/proprietary-license_46.RULE +++ b/src/licensedcode/data/rules/proprietary-license_46.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ciscounitytools.com/CiscoSoftwareLicense.html +--- + http://www.ciscounitytools.com/CiscoSoftwareLicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_46.yml b/src/licensedcode/data/rules/proprietary-license_46.yml deleted file mode 100644 index 761ecc50a4c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ciscounitytools.com/CiscoSoftwareLicense.html diff --git a/src/licensedcode/data/rules/proprietary-license_460.RULE b/src/licensedcode/data/rules/proprietary-license_460.RULE index 9f5944fad2a..e453c27aebe 100644 --- a/src/licensedcode/data/rules/proprietary-license_460.RULE +++ b/src/licensedcode/data/rules/proprietary-license_460.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + redistribution is not permitted without the prior written consent \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_460.yml b/src/licensedcode/data/rules/proprietary-license_460.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_460.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_461.RULE b/src/licensedcode/data/rules/proprietary-license_461.RULE index 16d2fa70277..15f7a583146 100644 --- a/src/licensedcode/data/rules/proprietary-license_461.RULE +++ b/src/licensedcode/data/rules/proprietary-license_461.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Source code redistribution is not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_461.yml b/src/licensedcode/data/rules/proprietary-license_461.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_461.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_462.RULE b/src/licensedcode/data/rules/proprietary-license_462.RULE index cb4390e99d2..611d2882336 100644 --- a/src/licensedcode/data/rules/proprietary-license_462.RULE +++ b/src/licensedcode/data/rules/proprietary-license_462.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + The code is free code. The code is distributed in the hope that it will be useful. Redistribution is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_462.yml b/src/licensedcode/data/rules/proprietary-license_462.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_462.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_463.RULE b/src/licensedcode/data/rules/proprietary-license_463.RULE index b6bc5ce951a..59248894b7a 100644 --- a/src/licensedcode/data/rules/proprietary-license_463.RULE +++ b/src/licensedcode/data/rules/proprietary-license_463.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Redistribution is not permitted in any form. You must request the tarball via e-mail. Free for academic use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_463.yml b/src/licensedcode/data/rules/proprietary-license_463.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_463.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_464.RULE b/src/licensedcode/data/rules/proprietary-license_464.RULE index 63a59b2384a..765b056d8f2 100644 --- a/src/licensedcode/data/rules/proprietary-license_464.RULE +++ b/src/licensedcode/data/rules/proprietary-license_464.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + All rights reserved. Redistribution is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_464.yml b/src/licensedcode/data/rules/proprietary-license_464.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_464.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_465.RULE b/src/licensedcode/data/rules/proprietary-license_465.RULE index 0bcb189d3d5..57041456422 100644 --- a/src/licensedcode/data/rules/proprietary-license_465.RULE +++ b/src/licensedcode/data/rules/proprietary-license_465.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + RESTRICTED= Redistribution is not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_465.yml b/src/licensedcode/data/rules/proprietary-license_465.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_465.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_466.RULE b/src/licensedcode/data/rules/proprietary-license_466.RULE index c9b9d56dcf5..0927e6b38ac 100644 --- a/src/licensedcode/data/rules/proprietary-license_466.RULE +++ b/src/licensedcode/data/rules/proprietary-license_466.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This is a non-exclusive access which allows you to make any modifications to the source code and build Task Adapter product for your own needs; redistribution is NOT permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_466.yml b/src/licensedcode/data/rules/proprietary-license_466.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_466.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_467.RULE b/src/licensedcode/data/rules/proprietary-license_467.RULE index f3975e372c8..84cbbb99ed2 100644 --- a/src/licensedcode/data/rules/proprietary-license_467.RULE +++ b/src/licensedcode/data/rules/proprietary-license_467.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Use of the Software in a Commercial Environment or for any other purpose, such as redistribution, IS NOT PERMITTED BY THIS LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_467.yml b/src/licensedcode/data/rules/proprietary-license_467.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_467.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_468.RULE b/src/licensedcode/data/rules/proprietary-license_468.RULE index 9aeef214552..c3856fc9dae 100644 --- a/src/licensedcode/data/rules/proprietary-license_468.RULE +++ b/src/licensedcode/data/rules/proprietary-license_468.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + No commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_468.yml b/src/licensedcode/data/rules/proprietary-license_468.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_468.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_469.RULE b/src/licensedcode/data/rules/proprietary-license_469.RULE index 4bd2bb3529b..167814571ac 100644 --- a/src/licensedcode/data/rules/proprietary-license_469.RULE +++ b/src/licensedcode/data/rules/proprietary-license_469.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + fonts are proprietary, and their redistribution is not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_469.yml b/src/licensedcode/data/rules/proprietary-license_469.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_469.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_47.RULE b/src/licensedcode/data/rules/proprietary-license_47.RULE index 56151e866cf..2bd69865420 100644 --- a/src/licensedcode/data/rules/proprietary-license_47.RULE +++ b/src/licensedcode/data/rules/proprietary-license_47.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.contpaqi.com/ +--- + http://www.contpaqi.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_47.yml b/src/licensedcode/data/rules/proprietary-license_47.yml deleted file mode 100644 index c07aff4039d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.contpaqi.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_470.RULE b/src/licensedcode/data/rules/proprietary-license_470.RULE index 163d3633729..bd3a9943ede 100644 --- a/src/licensedcode/data/rules/proprietary-license_470.RULE +++ b/src/licensedcode/data/rules/proprietary-license_470.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Redistribution is not permitted under any circumstances \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_470.yml b/src/licensedcode/data/rules/proprietary-license_470.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_470.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_471.RULE b/src/licensedcode/data/rules/proprietary-license_471.RULE index d586a137504..2ce473bca7f 100644 --- a/src/licensedcode/data/rules/proprietary-license_471.RULE +++ b/src/licensedcode/data/rules/proprietary-license_471.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This material is copyrighted; redistribution is not permitted except with written permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_471.yml b/src/licensedcode/data/rules/proprietary-license_471.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_471.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_472.RULE b/src/licensedcode/data/rules/proprietary-license_472.RULE index 43e5a126e49..9d58e5da407 100644 --- a/src/licensedcode/data/rules/proprietary-license_472.RULE +++ b/src/licensedcode/data/rules/proprietary-license_472.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + not licensed under the GPL and redistribution is not permitted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_472.yml b/src/licensedcode/data/rules/proprietary-license_472.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_472.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_473.RULE b/src/licensedcode/data/rules/proprietary-license_473.RULE index 5780f92d18f..894c4b64860 100644 --- a/src/licensedcode/data/rules/proprietary-license_473.RULE +++ b/src/licensedcode/data/rules/proprietary-license_473.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Redistribution // is not permitted without the express written permission of // the authors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_473.yml b/src/licensedcode/data/rules/proprietary-license_473.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_473.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_474.RULE b/src/licensedcode/data/rules/proprietary-license_474.RULE index 3a6b47a27df..e8e9ed7619a 100644 --- a/src/licensedcode/data/rules/proprietary-license_474.RULE +++ b/src/licensedcode/data/rules/proprietary-license_474.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + UNAUTHORISED COPYING OR REDISTRIBUTION IS NOT PERMITTED \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_474.yml b/src/licensedcode/data/rules/proprietary-license_474.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_474.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_475.RULE b/src/licensedcode/data/rules/proprietary-license_475.RULE index da37d793698..2a43d861e64 100644 --- a/src/licensedcode/data/rules/proprietary-license_475.RULE +++ b/src/licensedcode/data/rules/proprietary-license_475.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Modification is not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_475.yml b/src/licensedcode/data/rules/proprietary-license_475.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_475.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_476.RULE b/src/licensedcode/data/rules/proprietary-license_476.RULE index cb91a0a8dd6..4d64cb9082a 100644 --- a/src/licensedcode/data/rules/proprietary-license_476.RULE +++ b/src/licensedcode/data/rules/proprietary-license_476.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + * FOR PERSONAL AND NON-COMMERCIAL USE ONLY. REDISTRIBUTION IS NOT PERMITTED. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" diff --git a/src/licensedcode/data/rules/proprietary-license_476.yml b/src/licensedcode/data/rules/proprietary-license_476.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_476.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_477.RULE b/src/licensedcode/data/rules/proprietary-license_477.RULE index 52c0da81436..817a5f0fcc5 100644 --- a/src/licensedcode/data/rules/proprietary-license_477.RULE +++ b/src/licensedcode/data/rules/proprietary-license_477.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + This file is governed by the terms of the Professional license; redistribution is *not* permitted. Please see the file LICENSE.txt for full copyright information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_477.yml b/src/licensedcode/data/rules/proprietary-license_477.yml deleted file mode 100644 index 4d087a6c8e2..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_477.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_478.RULE b/src/licensedcode/data/rules/proprietary-license_478.RULE index ca7cf17a6e3..edf38bdfaf0 100644 --- a/src/licensedcode/data/rules/proprietary-license_478.RULE +++ b/src/licensedcode/data/rules/proprietary-license_478.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This product includes works protected by copyright and redistribution is not permitted without the prior written consent of and the other owners of components included in this package. This software is provided diff --git a/src/licensedcode/data/rules/proprietary-license_478.yml b/src/licensedcode/data/rules/proprietary-license_478.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_478.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_479.RULE b/src/licensedcode/data/rules/proprietary-license_479.RULE index d11ed7c9d2a..99d490edcca 100644 --- a/src/licensedcode/data/rules/proprietary-license_479.RULE +++ b/src/licensedcode/data/rules/proprietary-license_479.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/asapcaplord/TagProReportDisabler/blob/b8f0fc8832babce22bf2061b325bbe05d4eb3da0/TagProDisableReport.js#L14 +--- + // Use in source and binary forms, without modification, is permitted. Redistribution is not // permitted. // diff --git a/src/licensedcode/data/rules/proprietary-license_479.yml b/src/licensedcode/data/rules/proprietary-license_479.yml deleted file mode 100644 index e2828a11c4e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_479.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/asapcaplord/TagProReportDisabler/blob/b8f0fc8832babce22bf2061b325bbe05d4eb3da0/TagProDisableReport.js#L14 diff --git a/src/licensedcode/data/rules/proprietary-license_48.RULE b/src/licensedcode/data/rules/proprietary-license_48.RULE index 49a4b3d396a..2aca3f9e068 100644 --- a/src/licensedcode/data/rules/proprietary-license_48.RULE +++ b/src/licensedcode/data/rules/proprietary-license_48.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cubebuild.com/ +--- + http://www.cubebuild.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_48.yml b/src/licensedcode/data/rules/proprietary-license_48.yml deleted file mode 100644 index a8a301b1851..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cubebuild.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_480.RULE b/src/licensedcode/data/rules/proprietary-license_480.RULE index 2e55cc4f7ea..71a24ac5f7e 100644 --- a/src/licensedcode/data/rules/proprietary-license_480.RULE +++ b/src/licensedcode/data/rules/proprietary-license_480.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in https://raw.githubusercontent.com/CodeFacet/COMBAT/8a79ba00acb194d4c80a05a31a1ef09509795f86/LICENSE +--- + Redistribution is not permitted. Use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_480.yml b/src/licensedcode/data/rules/proprietary-license_480.yml deleted file mode 100644 index b5489d78f2c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_480.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in https://raw.githubusercontent.com/CodeFacet/COMBAT/8a79ba00acb194d4c80a05a31a1ef09509795f86/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_481.RULE b/src/licensedcode/data/rules/proprietary-license_481.RULE index 2bc04dc42ba..516bec4523f 100644 --- a/src/licensedcode/data/rules/proprietary-license_481.RULE +++ b/src/licensedcode/data/rules/proprietary-license_481.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://github.com/kunal15595/ros/blob/d77f32233b3cac4fe1790a86207d4c5982afc078/mp/omplapp/LICENSE +ignorable_urls: + - http://ompl.kavrakilab.org/ +ignorable_emails: + - OTTsoftware@rice.edu + - ompl-devel@lists.sourceforge.net +--- + The Software is available for download and use subject to the terms and conditions of this License. Access or use of the Software constitutes acceptance and agreement to the terms and conditions of this License. diff --git a/src/licensedcode/data/rules/proprietary-license_481.yml b/src/licensedcode/data/rules/proprietary-license_481.yml deleted file mode 100644 index f8f01cbceef..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_481.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://github.com/kunal15595/ros/blob/d77f32233b3cac4fe1790a86207d4c5982afc078/mp/omplapp/LICENSE -ignorable_urls: - - http://ompl.kavrakilab.org/ -ignorable_emails: - - OTTsoftware@rice.edu - - ompl-devel@lists.sourceforge.net diff --git a/src/licensedcode/data/rules/proprietary-license_482.RULE b/src/licensedcode/data/rules/proprietary-license_482.RULE index a2971c4217f..11956d54fb0 100644 --- a/src/licensedcode/data/rules/proprietary-license_482.RULE +++ b/src/licensedcode/data/rules/proprietary-license_482.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/rockchip-toybrick/hardware-rockchip-camera/blob/10957c7e3dd4e69e4e4e8aabbf0306e9acc610c1/SiliconImage/include/version/version.h#L11 +--- + * The copyright in this software is owned by Rockchip and/or its licensors. * This software is made available subject to the conditions of the license * terms to be determined and negotiated by Rockchip and you. diff --git a/src/licensedcode/data/rules/proprietary-license_482.yml b/src/licensedcode/data/rules/proprietary-license_482.yml deleted file mode 100644 index a0ad2daa5c5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_482.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/rockchip-toybrick/hardware-rockchip-camera/blob/10957c7e3dd4e69e4e4e8aabbf0306e9acc610c1/SiliconImage/include/version/version.h#L11 diff --git a/src/licensedcode/data/rules/proprietary-license_483.RULE b/src/licensedcode/data/rules/proprietary-license_483.RULE index ab00040008f..3c22ee26ca2 100644 --- a/src/licensedcode/data/rules/proprietary-license_483.RULE +++ b/src/licensedcode/data/rules/proprietary-license_483.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + License & Copyright All content, by which is meant the written material in the /content folder, is original work by the author, diff --git a/src/licensedcode/data/rules/proprietary-license_483.yml b/src/licensedcode/data/rules/proprietary-license_483.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_483.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_484.RULE b/src/licensedcode/data/rules/proprietary-license_484.RULE index 4f6fa4491de..ee09421d5bc 100644 --- a/src/licensedcode/data/rules/proprietary-license_484.RULE +++ b/src/licensedcode/data/rules/proprietary-license_484.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + It is protected by copyright and may be used only with explicit permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_484.yml b/src/licensedcode/data/rules/proprietary-license_484.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_484.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_485.RULE b/src/licensedcode/data/rules/proprietary-license_485.RULE index 08ab3eaa4e6..812e38e0484 100644 --- a/src/licensedcode/data/rules/proprietary-license_485.RULE +++ b/src/licensedcode/data/rules/proprietary-license_485.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + All content, by which is meant the written material in the /content folder, is original work by the author, It is protected by copyright and may be used only with explicit permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_485.yml b/src/licensedcode/data/rules/proprietary-license_485.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_485.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_486.RULE b/src/licensedcode/data/rules/proprietary-license_486.RULE index ec5f26e6724..1b905630576 100644 --- a/src/licensedcode/data/rules/proprietary-license_486.RULE +++ b/src/licensedcode/data/rules/proprietary-license_486.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: seen in https://github.com/layerJS/layerJS/blob/861a8797b5444266896a7acf229807b8dbb8d3a8/LICENSE +ignorable_urls: + - https://opensource.org/licenses/MIT +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software, including the rights to use, copy, modify, merge, publish, diff --git a/src/licensedcode/data/rules/proprietary-license_486.yml b/src/licensedcode/data/rules/proprietary-license_486.yml deleted file mode 100644 index b0c6d631c06..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_486.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: seen in https://github.com/layerJS/layerJS/blob/861a8797b5444266896a7acf229807b8dbb8d3a8/LICENSE -ignorable_urls: - - https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/proprietary-license_487.RULE b/src/licensedcode/data/rules/proprietary-license_487.RULE index fec26465465..5627f6f0f95 100644 --- a/src/licensedcode/data/rules/proprietary-license_487.RULE +++ b/src/licensedcode/data/rules/proprietary-license_487.RULE @@ -1,2 +1,10 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://developer.oculus.com/licenses/audio-3.3/ +--- + The text of this may be found at: https://developer.oculus.com/licenses/audio-3.3/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_487.yml b/src/licensedcode/data/rules/proprietary-license_487.yml deleted file mode 100644 index 8cc91b8e8d1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_487.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://developer.oculus.com/licenses/audio-3.3/ diff --git a/src/licensedcode/data/rules/proprietary-license_488.RULE b/src/licensedcode/data/rules/proprietary-license_488.RULE index 93ba63ff59d..2d0bf41650f 100644 --- a/src/licensedcode/data/rules/proprietary-license_488.RULE +++ b/src/licensedcode/data/rules/proprietary-license_488.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://developer.oculus.com/licenses/audio-3.3/ +--- + https://developer.oculus.com/licenses/audio-3.3/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_488.yml b/src/licensedcode/data/rules/proprietary-license_488.yml deleted file mode 100644 index 8cc91b8e8d1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_488.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://developer.oculus.com/licenses/audio-3.3/ diff --git a/src/licensedcode/data/rules/proprietary-license_489.RULE b/src/licensedcode/data/rules/proprietary-license_489.RULE index c736fb29e75..a12ff03f562 100644 --- a/src/licensedcode/data/rules/proprietary-license_489.RULE +++ b/src/licensedcode/data/rules/proprietary-license_489.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +notes: FFmpeg configure result strings as found in binaries +--- + license="nonfree and unredistributable" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_489.yml b/src/licensedcode/data/rules/proprietary-license_489.yml deleted file mode 100644 index ba96298a0f3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_489.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 -notes: FFmpeg configure result strings as found in binaries diff --git a/src/licensedcode/data/rules/proprietary-license_49.RULE b/src/licensedcode/data/rules/proprietary-license_49.RULE index ed8152264f9..b020309b145 100644 --- a/src/licensedcode/data/rules/proprietary-license_49.RULE +++ b/src/licensedcode/data/rules/proprietary-license_49.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.datalogic.com/eng/terms-and-conditions-pa-93.html +--- + http://www.datalogic.com/eng/terms-and-conditions-pa-93.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_49.yml b/src/licensedcode/data/rules/proprietary-license_49.yml deleted file mode 100644 index c7944846046..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.datalogic.com/eng/terms-and-conditions-pa-93.html diff --git a/src/licensedcode/data/rules/proprietary-license_490.RULE b/src/licensedcode/data/rules/proprietary-license_490.RULE index 4b463d04df0..0418fd3e6bf 100644 --- a/src/licensedcode/data/rules/proprietary-license_490.RULE +++ b/src/licensedcode/data/rules/proprietary-license_490.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +notes: configure option injected by FFmpeg in the built binaries +--- + --enable-nonfree \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_490.yml b/src/licensedcode/data/rules/proprietary-license_490.yml deleted file mode 100644 index a3003316f46..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_490.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 -notes: configure option injected by FFmpeg in the built binaries diff --git a/src/licensedcode/data/rules/proprietary-license_491.RULE b/src/licensedcode/data/rules/proprietary-license_491.RULE index 59d3dd4e029..ee56e378bc9 100644 --- a/src/licensedcode/data/rules/proprietary-license_491.RULE +++ b/src/licensedcode/data/rules/proprietary-license_491.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 +--- + This version of %s has nonfree parts compiled in. Therefore it is not legally redistributable., \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_491.yml b/src/licensedcode/data/rules/proprietary-license_491.yml deleted file mode 100644 index cad1327dd9f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_491.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen in FFmpeg binaries as injected at build time per https://github.com/FFmpeg/FFmpeg/blob/7aa7d68971e48f6bbf729a6feb318a17010d410f/fftools/cmdutils.c#L1237 diff --git a/src/licensedcode/data/rules/proprietary-license_492.RULE b/src/licensedcode/data/rules/proprietary-license_492.RULE index 9882a399dd2..3fefaf1236c 100644 --- a/src/licensedcode/data/rules/proprietary-license_492.RULE +++ b/src/licensedcode/data/rules/proprietary-license_492.RULE @@ -1 +1,11 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - ZipArchive.h +notes: Seen in https://github.com/Abin-Liu/JDArchive/blob/8f4e7b56ccbb659b6d855a05aa8f2bd447e9ada3/Client/ZipArchive/ZipInternalInfo.cpp +--- + For conditions of distribution and use, see copyright notice in ZipArchive.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_492.yml b/src/licensedcode/data/rules/proprietary-license_492.yml deleted file mode 100644 index f163632fb3b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_492.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - ZipArchive.h -notes: Seen in https://github.com/Abin-Liu/JDArchive/blob/8f4e7b56ccbb659b6d855a05aa8f2bd447e9ada3/Client/ZipArchive/ZipInternalInfo.cpp diff --git a/src/licensedcode/data/rules/proprietary-license_493.RULE b/src/licensedcode/data/rules/proprietary-license_493.RULE index 0743152ee03..64a094b316d 100644 --- a/src/licensedcode/data/rules/proprietary-license_493.RULE +++ b/src/licensedcode/data/rules/proprietary-license_493.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: Seen in https://github.com/Abin-Liu/JDArchive/blob/8f4e7b56ccbb659b6d855a05aa8f2bd447e9ada3/Client/ZipArchive/ZipArchive.h +--- + Permission is granted to anyone to use this software for any purpose and to alter it and redistribute it freely, subject to the following restrictions: diff --git a/src/licensedcode/data/rules/proprietary-license_493.yml b/src/licensedcode/data/rules/proprietary-license_493.yml deleted file mode 100644 index be608660ff7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_493.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: Seen in https://github.com/Abin-Liu/JDArchive/blob/8f4e7b56ccbb659b6d855a05aa8f2bd447e9ada3/Client/ZipArchive/ZipArchive.h diff --git a/src/licensedcode/data/rules/proprietary-license_494.RULE b/src/licensedcode/data/rules/proprietary-license_494.RULE index 22fa2c88755..84760447efa 100644 --- a/src/licensedcode/data/rules/proprietary-license_494.RULE +++ b/src/licensedcode/data/rules/proprietary-license_494.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/Abin-Liu/JDArchive/blob/8f4e7b56ccbb659b6d855a05aa8f2bd447e9ada3/Client/ZipArchive/ZipArchive.h +--- + Using this software in commercial applications requires an author permission. The permission will be granted to everyone excluding the cases when someone simply tries to resell the code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_494.yml b/src/licensedcode/data/rules/proprietary-license_494.yml deleted file mode 100644 index 7e2b874ac0e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_494.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/Abin-Liu/JDArchive/blob/8f4e7b56ccbb659b6d855a05aa8f2bd447e9ada3/Client/ZipArchive/ZipArchive.h diff --git a/src/licensedcode/data/rules/proprietary-license_495.RULE b/src/licensedcode/data/rules/proprietary-license_495.RULE index 9cdd094bdba..d81c31a568a 100644 --- a/src/licensedcode/data/rules/proprietary-license_495.RULE +++ b/src/licensedcode/data/rules/proprietary-license_495.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + SOFTWARE LICENSE Agreement 1. Licensed Product and Rights to Use This is a legal agreement between (the “LICENSOR“) and you (the diff --git a/src/licensedcode/data/rules/proprietary-license_495.yml b/src/licensedcode/data/rules/proprietary-license_495.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_495.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_496.RULE b/src/licensedcode/data/rules/proprietary-license_496.RULE index cb2e080318f..0704604e464 100644 --- a/src/licensedcode/data/rules/proprietary-license_496.RULE +++ b/src/licensedcode/data/rules/proprietary-license_496.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + No part of this web site content, other than the free software downloads, may be copied, reproduced, or redistributed in any form without prior written authorization from \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_496.yml b/src/licensedcode/data/rules/proprietary-license_496.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_496.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_497.RULE b/src/licensedcode/data/rules/proprietary-license_497.RULE index 3456b538707..6a82dd557e2 100644 --- a/src/licensedcode/data/rules/proprietary-license_497.RULE +++ b/src/licensedcode/data/rules/proprietary-license_497.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + No part of this web site content, other than the free software downloads, may be copied, reproduced, or redistributed in any form without prior written authorization \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_497.yml b/src/licensedcode/data/rules/proprietary-license_497.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_497.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_498.RULE b/src/licensedcode/data/rules/proprietary-license_498.RULE index 25ef327e6a6..c06bc14ef7e 100644 --- a/src/licensedcode/data/rules/proprietary-license_498.RULE +++ b/src/licensedcode/data/rules/proprietary-license_498.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in https://github.com/cutec-chris/kcontrols/blob/6048b2fc11606ec6b3e2972e444347ebceadecdb/source/kmemodlgparastyle.pas +--- + This code is distributed as a freeware. You are free to use it as part of your application for any purpose including freeware, commercial and shareware applications. The origin of this source code must not be misrepresented; you diff --git a/src/licensedcode/data/rules/proprietary-license_498.yml b/src/licensedcode/data/rules/proprietary-license_498.yml deleted file mode 100644 index b2f09896411..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_498.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in https://github.com/cutec-chris/kcontrols/blob/6048b2fc11606ec6b3e2972e444347ebceadecdb/source/kmemodlgparastyle.pas diff --git a/src/licensedcode/data/rules/proprietary-license_499.RULE b/src/licensedcode/data/rules/proprietary-license_499.RULE index bbc5bd06620..b34d1e4c66e 100644 --- a/src/licensedcode/data/rules/proprietary-license_499.RULE +++ b/src/licensedcode/data/rules/proprietary-license_499.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://github.com/axilleas/aur-mirror/blob/698c2ccb9da1cc7fc1b971ea209ca1286968c971/gsas-expgui-svn/license.txt + https://lists.debian.org/debian-legal/2019/07/msg00015.html +--- + GSAS-II may be used by anyone on a royalty-free basis. Use and redistribution, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_499.yml b/src/licensedcode/data/rules/proprietary-license_499.yml deleted file mode 100644 index 4659960a9a5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_499.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://github.com/axilleas/aur-mirror/blob/698c2ccb9da1cc7fc1b971ea209ca1286968c971/gsas-expgui-svn/license.txt - https://lists.debian.org/debian-legal/2019/07/msg00015.html diff --git a/src/licensedcode/data/rules/proprietary-license_5.RULE b/src/licensedcode/data/rules/proprietary-license_5.RULE index 3568885feba..4ee1ce183df 100644 --- a/src/licensedcode/data/rules/proprietary-license_5.RULE +++ b/src/licensedcode/data/rules/proprietary-license_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + US Government Users Restricted Rights - Use, duplication, or disclosure restricted by GSA ADP Schedule Contract with \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_5.yml b/src/licensedcode/data/rules/proprietary-license_5.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_50.RULE b/src/licensedcode/data/rules/proprietary-license_50.RULE index 86959182fba..03c53be445d 100644 --- a/src/licensedcode/data/rules/proprietary-license_50.RULE +++ b/src/licensedcode/data/rules/proprietary-license_50.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.html-to-pdf.net/EULA.aspx +--- + http://www.html-to-pdf.net/EULA.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_50.yml b/src/licensedcode/data/rules/proprietary-license_50.yml deleted file mode 100644 index 7bee40a433a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.html-to-pdf.net/EULA.aspx diff --git a/src/licensedcode/data/rules/proprietary-license_500.RULE b/src/licensedcode/data/rules/proprietary-license_500.RULE index d4943146f68..8f51e8a6aa5 100644 --- a/src/licensedcode/data/rules/proprietary-license_500.RULE +++ b/src/licensedcode/data/rules/proprietary-license_500.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://molspin.eu/license This is a bsd-original-like but the "Every use" clause is + rather impractical hence the initial qualification as proprietary-license +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_500.yml b/src/licensedcode/data/rules/proprietary-license_500.yml deleted file mode 100644 index 7b4673d27ca..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_500.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://molspin.eu/license This is a bsd-original-like but the "Every use" clause is - rather impractical hence the initial qualification as proprietary-license diff --git a/src/licensedcode/data/rules/proprietary-license_501.RULE b/src/licensedcode/data/rules/proprietary-license_501.RULE index 5784f92bd13..74eff32e879 100644 --- a/src/licensedcode/data/rules/proprietary-license_501.RULE +++ b/src/licensedcode/data/rules/proprietary-license_501.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://molspin.eu/license This is a bsd-original-like but the "Every use" clause is + rather impractical hence the initial qualification as proprietary-license +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -25,4 +33,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +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_501.yml b/src/licensedcode/data/rules/proprietary-license_501.yml deleted file mode 100644 index 7b4673d27ca..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_501.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://molspin.eu/license This is a bsd-original-like but the "Every use" clause is - rather impractical hence the initial qualification as proprietary-license diff --git a/src/licensedcode/data/rules/proprietary-license_502.RULE b/src/licensedcode/data/rules/proprietary-license_502.RULE index f9eb9abd77f..3d3e826667b 100644 --- a/src/licensedcode/data/rules/proprietary-license_502.RULE +++ b/src/licensedcode/data/rules/proprietary-license_502.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://uefi.org/revocationlistfile +ignorable_urls: + - http://www.uefi.org/ +--- + UEFI Download Page Terms of Use for Microsoft Corporation's UEFI Revocation List file ("UEFI Revocation List") diff --git a/src/licensedcode/data/rules/proprietary-license_502.yml b/src/licensedcode/data/rules/proprietary-license_502.yml deleted file mode 100644 index fbbd926b1e7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_502.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://uefi.org/revocationlistfile -ignorable_urls: - - http://www.uefi.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_503.RULE b/src/licensedcode/data/rules/proprietary-license_503.RULE index 02e0a82e8c4..6a876b3486d 100644 --- a/src/licensedcode/data/rules/proprietary-license_503.RULE +++ b/src/licensedcode/data/rules/proprietary-license_503.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://github.com/steinbergmedia/vst3sdk/blob/master/LICENSE.txt +ignorable_urls: + - http://www.steinberg.net/en/company/developers.html +--- + Proprietary Steinberg VST3 License The Software Development Kit may not be distributed in parts or its entirety without prior written agreement by Steinberg Media Technologies GmbH. diff --git a/src/licensedcode/data/rules/proprietary-license_503.yml b/src/licensedcode/data/rules/proprietary-license_503.yml deleted file mode 100644 index ce4ae9e328a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_503.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://github.com/steinbergmedia/vst3sdk/blob/master/LICENSE.txt -ignorable_urls: - - http://www.steinberg.net/en/company/developers.html diff --git a/src/licensedcode/data/rules/proprietary-license_504.RULE b/src/licensedcode/data/rules/proprietary-license_504.RULE index 41a091eae1c..66e550bb1c8 100644 --- a/src/licensedcode/data/rules/proprietary-license_504.RULE +++ b/src/licensedcode/data/rules/proprietary-license_504.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: an older W3C notice +--- + Notice and Disclaimers 1. Unless otherwise noted, all materials contained in this Site are copyrighted diff --git a/src/licensedcode/data/rules/proprietary-license_504.yml b/src/licensedcode/data/rules/proprietary-license_504.yml deleted file mode 100644 index 05a5f2e49ac..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_504.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: an older W3C notice diff --git a/src/licensedcode/data/rules/proprietary-license_505.RULE b/src/licensedcode/data/rules/proprietary-license_505.RULE index 88a0931111e..09bae2538a8 100644 --- a/src/licensedcode/data/rules/proprietary-license_505.RULE +++ b/src/licensedcode/data/rules/proprietary-license_505.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: the zoo license is for https://en.wikipedia.org/wiki/Zoo_(file_format) which is still + in use in some BSD OS +--- + COPYRIGHT diff --git a/src/licensedcode/data/rules/proprietary-license_505.yml b/src/licensedcode/data/rules/proprietary-license_505.yml deleted file mode 100644 index db33db21b91..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_505.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: the zoo license is for https://en.wikipedia.org/wiki/Zoo_(file_format) which is still - in use in some BSD OS diff --git a/src/licensedcode/data/rules/proprietary-license_506.RULE b/src/licensedcode/data/rules/proprietary-license_506.RULE index bae64da4702..969a09f347a 100644 --- a/src/licensedcode/data/rules/proprietary-license_506.RULE +++ b/src/licensedcode/data/rules/proprietary-license_506.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Copyrighted, freely distributable if unmodified \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_506.yml b/src/licensedcode/data/rules/proprietary-license_506.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_506.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_507.RULE b/src/licensedcode/data/rules/proprietary-license_507.RULE index 25a298d7619..da23aa79180 100644 --- a/src/licensedcode/data/rules/proprietary-license_507.RULE +++ b/src/licensedcode/data/rules/proprietary-license_507.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 99 +--- + license = "Nonstandard" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_507.yml b/src/licensedcode/data/rules/proprietary-license_507.yml deleted file mode 100644 index 5ec5e95a2c5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_507.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary-license_508.RULE b/src/licensedcode/data/rules/proprietary-license_508.RULE index 13970c6bb61..498071e1681 100644 --- a/src/licensedcode/data/rules/proprietary-license_508.RULE +++ b/src/licensedcode/data/rules/proprietary-license_508.RULE @@ -1,2 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/janpaepke/ScrollMagic/master/LICENSE.md +ignorable_urls: + - http://greensock.com/licensing + - http://greensock.com/standard-license +--- + * The Greensock Animation Platform (__GSAP__) is used per its ["No Charge" license](http://greensock.com/standard-license). For some cases the extended ["Business Green" license](http://greensock.com/licensing/) will be necessary. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_508.yml b/src/licensedcode/data/rules/proprietary-license_508.yml deleted file mode 100644 index 9636f0caf5f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_508.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/janpaepke/ScrollMagic/master/LICENSE.md -ignorable_urls: - - http://greensock.com/licensing - - http://greensock.com/standard-license diff --git a/src/licensedcode/data/rules/proprietary-license_509.RULE b/src/licensedcode/data/rules/proprietary-license_509.RULE index e71cf3ef422..68255e3c141 100644 --- a/src/licensedcode/data/rules/proprietary-license_509.RULE +++ b/src/licensedcode/data/rules/proprietary-license_509.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Do not copy or distribute without written permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_509.yml b/src/licensedcode/data/rules/proprietary-license_509.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_509.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_51.RULE b/src/licensedcode/data/rules/proprietary-license_51.RULE index ef2a7c1831b..c419f601655 100644 --- a/src/licensedcode/data/rules/proprietary-license_51.RULE +++ b/src/licensedcode/data/rules/proprietary-license_51.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.independentsoft.de/license.html +--- + http://www.independentsoft.de/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_51.yml b/src/licensedcode/data/rules/proprietary-license_51.yml deleted file mode 100644 index 4083c0a41a0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.independentsoft.de/license.html diff --git a/src/licensedcode/data/rules/proprietary-license_510.RULE b/src/licensedcode/data/rules/proprietary-license_510.RULE index 2ac7d58b799..074ba7471d7 100644 --- a/src/licensedcode/data/rules/proprietary-license_510.RULE +++ b/src/licensedcode/data/rules/proprietary-license_510.RULE @@ -1,3 +1,19 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_copyrights: + - (c) Waiver of Rights +ignorable_holders: + - Waiver of Rights +ignorable_urls: + - https://about.gitlab.com/handbook/dmca + - https://about.gitlab.com/handbook/dmca/ + - https://about.gitlab.com/terms + - https://gitlab.com/gitlab-org/security-products/gemnasium-db +--- + # GitLab Security Alert Database Terms Last Updated: May 16, 2019 diff --git a/src/licensedcode/data/rules/proprietary-license_510.yml b/src/licensedcode/data/rules/proprietary-license_510.yml deleted file mode 100644 index 5543d29aa21..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_510.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_copyrights: - - (c) Waiver of Rights -ignorable_holders: - - Waiver of Rights -ignorable_urls: - - https://about.gitlab.com/handbook/dmca - - https://about.gitlab.com/handbook/dmca/ - - https://about.gitlab.com/terms - - https://gitlab.com/gitlab-org/security-products/gemnasium-db diff --git a/src/licensedcode/data/rules/proprietary-license_511.RULE b/src/licensedcode/data/rules/proprietary-license_511.RULE index 9c6ce34a1d9..cdded5a9875 100644 --- a/src/licensedcode/data/rules/proprietary-license_511.RULE +++ b/src/licensedcode/data/rules/proprietary-license_511.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: new proprietary notice at https://github.com/mapbox/mapbox-gl-js/blob/main/LICENSE.txt +ignorable_urls: + - https://www.mapbox.com/legal/tos +--- + Mapbox gl-js version 2.0 or higher (“Mapbox Web SDK”) must be used according to the Mapbox Terms of Service. This license allows developers with a current active Mapbox account to use and modify the Mapbox Web SDK. Developers may modify the diff --git a/src/licensedcode/data/rules/proprietary-license_511.yml b/src/licensedcode/data/rules/proprietary-license_511.yml deleted file mode 100644 index cba85310213..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_511.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: new proprietary notice at https://github.com/mapbox/mapbox-gl-js/blob/main/LICENSE.txt -ignorable_urls: - - https://www.mapbox.com/legal/tos diff --git a/src/licensedcode/data/rules/proprietary-license_512.RULE b/src/licensedcode/data/rules/proprietary-license_512.RULE index f7a46691690..77a855b1c06 100644 --- a/src/licensedcode/data/rules/proprietary-license_512.RULE +++ b/src/licensedcode/data/rules/proprietary-license_512.RULE @@ -1,3 +1,16 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) Koninklijke Philips N.V., https://www.philips.com +ignorable_holders: + - Koninklijke Philips N.V. +ignorable_urls: + - https://www.philips.com/ +--- + This software and associated documentation files are Copyright (c)Koninklijke Philips N.V., https://www.philips.com and is made available for use within Philips and/or within Philips products. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_512.yml b/src/licensedcode/data/rules/proprietary-license_512.yml deleted file mode 100644 index f8b11cebcce..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_512.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) Koninklijke Philips N.V., https://www.philips.com -ignorable_holders: - - Koninklijke Philips N.V. -ignorable_urls: - - https://www.philips.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_513.RULE b/src/licensedcode/data/rules/proprietary-license_513.RULE index a870bf29f93..ad15b35e57f 100644 --- a/src/licensedcode/data/rules/proprietary-license_513.RULE +++ b/src/licensedcode/data/rules/proprietary-license_513.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + This software and associated documentation files are and is made available for use within Philips and/or within Philips products. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_513.yml b/src/licensedcode/data/rules/proprietary-license_513.yml deleted file mode 100644 index 371fa69d0fd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_513.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/proprietary-license_514.RULE b/src/licensedcode/data/rules/proprietary-license_514.RULE index 6f6bb8578b3..6978a69a232 100644 --- a/src/licensedcode/data/rules/proprietary-license_514.RULE +++ b/src/licensedcode/data/rules/proprietary-license_514.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + made available for use within Philips and/or within Philips products. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_514.yml b/src/licensedcode/data/rules/proprietary-license_514.yml deleted file mode 100644 index 371fa69d0fd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_514.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/proprietary-license_515.RULE b/src/licensedcode/data/rules/proprietary-license_515.RULE index bd803a85bac..13a4fcff95b 100644 --- a/src/licensedcode/data/rules/proprietary-license_515.RULE +++ b/src/licensedcode/data/rules/proprietary-license_515.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/edoliberty/streaming-quantiles/blob/e2708b67baae2121a572354fe70d1ded328a097a/README.md#L25 +--- + It is distributed free and with no warranty of any kind. It should NOT be used for any commercial purposes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_515.yml b/src/licensedcode/data/rules/proprietary-license_515.yml deleted file mode 100644 index 33a657ff93f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_515.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/edoliberty/streaming-quantiles/blob/e2708b67baae2121a572354fe70d1ded328a097a/README.md#L25 diff --git a/src/licensedcode/data/rules/proprietary-license_516.RULE b/src/licensedcode/data/rules/proprietary-license_516.RULE index ae56df5e78d..21e508c7637 100644 --- a/src/licensedcode/data/rules/proprietary-license_516.RULE +++ b/src/licensedcode/data/rules/proprietary-license_516.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/edoliberty/streaming-quantiles/blob/e2708b67baae2121a572354fe70d1ded328a097a/README.md#L25 +--- + It should NOT be used for any commercial purposes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_516.yml b/src/licensedcode/data/rules/proprietary-license_516.yml deleted file mode 100644 index 33a657ff93f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_516.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/edoliberty/streaming-quantiles/blob/e2708b67baae2121a572354fe70d1ded328a097a/README.md#L25 diff --git a/src/licensedcode/data/rules/proprietary-license_517.RULE b/src/licensedcode/data/rules/proprietary-license_517.RULE index 8f0fdd9d1d8..210748464e9 100644 --- a/src/licensedcode/data/rules/proprietary-license_517.RULE +++ b/src/licensedcode/data/rules/proprietary-license_517.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://raw.githubusercontent.com/LawnchairLauncher/Lawnchair-V1/2acbd3c4756713f1f53e19c5cda9a7bbd399a199/LICENSE +ignorable_copyrights: + - (c) Said project +ignorable_holders: + - Said project +--- + APPENDIX 2: License extension for modifications of the Source As per point 4 of the License, all modifications made to the diff --git a/src/licensedcode/data/rules/proprietary-license_517.yml b/src/licensedcode/data/rules/proprietary-license_517.yml deleted file mode 100644 index b53f9e4955d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_517.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://raw.githubusercontent.com/LawnchairLauncher/Lawnchair-V1/2acbd3c4756713f1f53e19c5cda9a7bbd399a199/LICENSE -ignorable_copyrights: - - (c) Said project -ignorable_holders: - - Said project diff --git a/src/licensedcode/data/rules/proprietary-license_518.RULE b/src/licensedcode/data/rules/proprietary-license_518.RULE index 9fc3ebeb937..b477e8b9fad 100644 --- a/src/licensedcode/data/rules/proprietary-license_518.RULE +++ b/src/licensedcode/data/rules/proprietary-license_518.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: See https://www.cs.cmu.edu/~quake/triangle.html +--- + Created as part of the Archimedes project. Supported in part by NSF Grant CMS-9318163 and an NSERC 1967 Scholarship. There is -no warranty whatsoever. Use at your own risk. +no warranty whatsoever. Use at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_518.yml b/src/licensedcode/data/rules/proprietary-license_518.yml deleted file mode 100644 index e41af8d5a46..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_518.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: See https://www.cs.cmu.edu/~quake/triangle.html diff --git a/src/licensedcode/data/rules/proprietary-license_519.RULE b/src/licensedcode/data/rules/proprietary-license_519.RULE index 59ffc7282dd..45d606e7606 100644 --- a/src/licensedcode/data/rules/proprietary-license_519.RULE +++ b/src/licensedcode/data/rules/proprietary-license_519.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://www.cs.cmu.edu/~quake/triangle.html +--- + may be freely redistributed under the condition that the copyright notices (including the copy of this notice in the code comments and the @@ -16,4 +23,4 @@ ARRANGEMENT WITH THE AUTHOR. (If you are not directly supplying this code to a customer, and you are instead telling them how they can obtain it for free, then you are not required to make any -arrangement with.) +arrangement with.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_519.yml b/src/licensedcode/data/rules/proprietary-license_519.yml deleted file mode 100644 index 59ab4f43fe1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_519.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://www.cs.cmu.edu/~quake/triangle.html diff --git a/src/licensedcode/data/rules/proprietary-license_52.RULE b/src/licensedcode/data/rules/proprietary-license_52.RULE index 8829b6e7c33..7a938ca68ae 100644 --- a/src/licensedcode/data/rules/proprietary-license_52.RULE +++ b/src/licensedcode/data/rules/proprietary-license_52.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.intellifylearning.com/ +--- + http://www.intellifylearning.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_52.yml b/src/licensedcode/data/rules/proprietary-license_52.yml deleted file mode 100644 index ebdde981331..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.intellifylearning.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_520.RULE b/src/licensedcode/data/rules/proprietary-license_520.RULE index f8a88c4f458..91d57371c00 100644 --- a/src/licensedcode/data/rules/proprietary-license_520.RULE +++ b/src/licensedcode/data/rules/proprietary-license_520.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen used with an Apache license in https://raw.githubusercontent.com/rohitgirdhar/AttentionalPoolingAction/master/LICENSE +ignorable_copyrights: + - copyrighted by the authors and Carnegie Mellon University +ignorable_holders: + - the authors and Carnegie Mellon University +--- + This code is copyrighted by the authors and Carnegie Mellon University, and is for non-commercial research purposes only. Please contact the authors and Carnegie Mellon University if you are interested in licensing for diff --git a/src/licensedcode/data/rules/proprietary-license_520.yml b/src/licensedcode/data/rules/proprietary-license_520.yml deleted file mode 100644 index 934bdb4e5b2..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_520.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen used with an Apache license in https://raw.githubusercontent.com/rohitgirdhar/AttentionalPoolingAction/master/LICENSE -ignorable_copyrights: - - copyrighted by the authors and Carnegie Mellon University -ignorable_holders: - - the authors and Carnegie Mellon University diff --git a/src/licensedcode/data/rules/proprietary-license_521.RULE b/src/licensedcode/data/rules/proprietary-license_521.RULE index 26394270bca..114c99dac28 100644 --- a/src/licensedcode/data/rules/proprietary-license_521.RULE +++ b/src/licensedcode/data/rules/proprietary-license_521.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + TERMS AND CONDITIONS IMPORTANT - PLEASE READ BEFORE INSTALLING OR USING THIS INTEL(C) SOFTWARE diff --git a/src/licensedcode/data/rules/proprietary-license_521.yml b/src/licensedcode/data/rules/proprietary-license_521.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_521.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_522.RULE b/src/licensedcode/data/rules/proprietary-license_522.RULE index c48c3cc9fa3..7c2e3071a37 100644 --- a/src/licensedcode/data/rules/proprietary-license_522.RULE +++ b/src/licensedcode/data/rules/proprietary-license_522.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + ALL INFORMATION CONTAINED IN THIS DOCUMENT IS PROPERTY OF , INC. NO LICENSE EXPRESSED OR IMPLIED, UNDER ANY PATENT, COPYRIGHT OR TRADE SECRET RIGHT IS GRANTED OR IMPLIED BY THE CONVEYANCE OF THIS DOCUMENT. NO PART OF THIS DOCUMENT MAY BE REPRODUCED, TRANSMITTED, TRANSCRIBED, STORED IN A RETRIEVAL SYSTEM, TRANSLATED INTO ANY LANGUAGE OR diff --git a/src/licensedcode/data/rules/proprietary-license_522.yml b/src/licensedcode/data/rules/proprietary-license_522.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_522.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_523.RULE b/src/licensedcode/data/rules/proprietary-license_523.RULE index 4226af96fde..6b43e2cd9d9 100644 --- a/src/licensedcode/data/rules/proprietary-license_523.RULE +++ b/src/licensedcode/data/rules/proprietary-license_523.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + License Agreement: The features set forth in this Section XIV (the "Strong Encryption diff --git a/src/licensedcode/data/rules/proprietary-license_523.yml b/src/licensedcode/data/rules/proprietary-license_523.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_523.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_524.RULE b/src/licensedcode/data/rules/proprietary-license_524.RULE index a886167a838..5438f8763e1 100644 --- a/src/licensedcode/data/rules/proprietary-license_524.RULE +++ b/src/licensedcode/data/rules/proprietary-license_524.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + 1.4.1 This document, "APPNOTE.TXT - .ZIP File Format Specification" is the exclusive property of PKWARE. Use of the information contained in this document is permitted solely for the purpose of creating products, diff --git a/src/licensedcode/data/rules/proprietary-license_524.yml b/src/licensedcode/data/rules/proprietary-license_524.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_524.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_525.RULE b/src/licensedcode/data/rules/proprietary-license_525.RULE index be86dcd3aca..c18a9f4f245 100644 --- a/src/licensedcode/data/rules/proprietary-license_525.RULE +++ b/src/licensedcode/data/rules/proprietary-license_525.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed under Microsofts EULA \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_525.yml b/src/licensedcode/data/rules/proprietary-license_525.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_525.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_526.RULE b/src/licensedcode/data/rules/proprietary-license_526.RULE index 56b62668534..6f1fcc91f7d 100644 --- a/src/licensedcode/data/rules/proprietary-license_526.RULE +++ b/src/licensedcode/data/rules/proprietary-license_526.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) , Inc. +ignorable_holders: + - Inc. +--- + v2 License diff --git a/src/licensedcode/data/rules/proprietary-license_526.yml b/src/licensedcode/data/rules/proprietary-license_526.yml deleted file mode 100644 index 02f4b4b4ece..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_526.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) , Inc. -ignorable_holders: - - Inc. diff --git a/src/licensedcode/data/rules/proprietary-license_527.RULE b/src/licensedcode/data/rules/proprietary-license_527.RULE index 53444d2ded7..48abd1da4c4 100644 --- a/src/licensedcode/data/rules/proprietary-license_527.RULE +++ b/src/licensedcode/data/rules/proprietary-license_527.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This Software is licensed under the terms of the following license which allows for non-commercial use only. For any other use of the software not covered by the terms of this license, please contact \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_527.yml b/src/licensedcode/data/rules/proprietary-license_527.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_527.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_528.RULE b/src/licensedcode/data/rules/proprietary-license_528.RULE index 6cc765ef9df..bb6c2a8c704 100644 --- a/src/licensedcode/data/rules/proprietary-license_528.RULE +++ b/src/licensedcode/data/rules/proprietary-license_528.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +--- + CRT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_528.yml b/src/licensedcode/data/rules/proprietary-license_528.yml deleted file mode 100644 index a2224261a4e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_528.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/proprietary-license_529.RULE b/src/licensedcode/data/rules/proprietary-license_529.RULE index 910242abe17..d183b3ddd21 100644 --- a/src/licensedcode/data/rules/proprietary-license_529.RULE +++ b/src/licensedcode/data/rules/proprietary-license_529.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/libermans/coopyright-projects +--- + Terms of use: Use requires the inclusion of links to Source Projects and to this project, and the addition of the cost for end users as determined in Pricing. Pricing: This project does not prescribe any rules for the pricing of the use of derivative diff --git a/src/licensedcode/data/rules/proprietary-license_529.yml b/src/licensedcode/data/rules/proprietary-license_529.yml deleted file mode 100644 index 125d85480e1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_529.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/libermans/coopyright-projects diff --git a/src/licensedcode/data/rules/proprietary-license_53.RULE b/src/licensedcode/data/rules/proprietary-license_53.RULE index ec9be7c3d17..60cfba7bf09 100644 --- a/src/licensedcode/data/rules/proprietary-license_53.RULE +++ b/src/licensedcode/data/rules/proprietary-license_53.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ixxat.com/vci-license-nuget-package +--- + http://www.ixxat.com/vci-license-nuget-package \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_53.yml b/src/licensedcode/data/rules/proprietary-license_53.yml deleted file mode 100644 index 280628b061e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ixxat.com/vci-license-nuget-package diff --git a/src/licensedcode/data/rules/proprietary-license_530.RULE b/src/licensedcode/data/rules/proprietary-license_530.RULE index 627a61d3148..94b84e54b4b 100644 --- a/src/licensedcode/data/rules/proprietary-license_530.RULE +++ b/src/licensedcode/data/rules/proprietary-license_530.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen in FreeBSD +--- + This software and documentation contains proprietary information which is protected by copyright. All rights are reserved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_530.yml b/src/licensedcode/data/rules/proprietary-license_530.yml deleted file mode 100644 index 7359bba56f4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_530.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/proprietary-license_531.RULE b/src/licensedcode/data/rules/proprietary-license_531.RULE index 9f408db1561..03430fa118a 100644 --- a/src/licensedcode/data/rules/proprietary-license_531.RULE +++ b/src/licensedcode/data/rules/proprietary-license_531.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen in FreeBSD +--- + This software and documentation contains proprietary information which is protected by copyright. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_531.yml b/src/licensedcode/data/rules/proprietary-license_531.yml deleted file mode 100644 index 7359bba56f4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_531.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/proprietary-license_532.RULE b/src/licensedcode/data/rules/proprietary-license_532.RULE index 8eac957d61b..5336fdc5118 100644 --- a/src/licensedcode/data/rules/proprietary-license_532.RULE +++ b/src/licensedcode/data/rules/proprietary-license_532.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: Seen in FreeBSD +--- + contains proprietary information \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_532.yml b/src/licensedcode/data/rules/proprietary-license_532.yml deleted file mode 100644 index 7359bba56f4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_532.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/proprietary-license_533.RULE b/src/licensedcode/data/rules/proprietary-license_533.RULE index 0070b6679ab..3fc86539554 100644 --- a/src/licensedcode/data/rules/proprietary-license_533.RULE +++ b/src/licensedcode/data/rules/proprietary-license_533.RULE @@ -1,3 +1,18 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: a modified apache license +ignorable_copyrights: + - Copyright PocketWarriors Shalom Weiner +ignorable_holders: + - PocketWarriors Shalom Weiner +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License Version 2.0, January 2004 https://www.apache.org/licenses/ @@ -207,4 +222,4 @@ Apache License 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_533.yml b/src/licensedcode/data/rules/proprietary-license_533.yml deleted file mode 100644 index 7a2d72b55fd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_533.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: a modified apache license -ignorable_copyrights: - - Copyright PocketWarriors Shalom Weiner -ignorable_holders: - - PocketWarriors Shalom Weiner -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/proprietary-license_534.RULE b/src/licensedcode/data/rules/proprietary-license_534.RULE index 964bac46a8f..cd415513ba3 100644 --- a/src/licensedcode/data/rules/proprietary-license_534.RULE +++ b/src/licensedcode/data/rules/proprietary-license_534.RULE @@ -1,3 +1,16 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +minimum_coverage: 95 +notes: | + This is an extra clause inserted by Palantir in an Apache license + See https://github.com/palantir/blueprint/blob/826380132bcef856425a1cf88e379f19081c179a/LICENSE#L176 + and this ticket for more details https://github.com/palantir/blueprint/issues/2602 +ignorable_urls: + - https://www.apache.org/licenses/ + - https://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License (as modified) Version 2.0, January 2004 https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/proprietary-license_534.yml b/src/licensedcode/data/rules/proprietary-license_534.yml deleted file mode 100644 index c57f1f9d10c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_534.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -minimum_coverage: 95 -notes: | - This is an extra clause inserted by Palantir in an Apache license - See https://github.com/palantir/blueprint/blob/826380132bcef856425a1cf88e379f19081c179a/LICENSE#L176 - and this ticket for more details https://github.com/palantir/blueprint/issues/2602 -ignorable_urls: - - https://www.apache.org/licenses/ - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/proprietary-license_535.RULE b/src/licensedcode/data/rules/proprietary-license_535.RULE index 25f723cca79..be1632c3c73 100644 --- a/src/licensedcode/data/rules/proprietary-license_535.RULE +++ b/src/licensedcode/data/rules/proprietary-license_535.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + "Digital Equipment Corporation authorizes the reproduction, distribution and modification of this software subject to the following restrictions: diff --git a/src/licensedcode/data/rules/proprietary-license_535.yml b/src/licensedcode/data/rules/proprietary-license_535.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_535.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_536.RULE b/src/licensedcode/data/rules/proprietary-license_536.RULE index 52339211972..41f6c050ae5 100644 --- a/src/licensedcode/data/rules/proprietary-license_536.RULE +++ b/src/licensedcode/data/rules/proprietary-license_536.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: similar to the intel license +ignorable_urls: + - http://opensource.org/licenses +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_536.yml b/src/licensedcode/data/rules/proprietary-license_536.yml deleted file mode 100644 index 91c7fd88e2c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_536.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: similar to the intel license -ignorable_urls: - - http://opensource.org/licenses diff --git a/src/licensedcode/data/rules/proprietary-license_537.RULE b/src/licensedcode/data/rules/proprietary-license_537.RULE index 0d48db0a73c..050136a8539 100644 --- a/src/licensedcode/data/rules/proprietary-license_537.RULE +++ b/src/licensedcode/data/rules/proprietary-license_537.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/ +--- + License For Customer Use of NVIDIA Software diff --git a/src/licensedcode/data/rules/proprietary-license_537.yml b/src/licensedcode/data/rules/proprietary-license_537.yml deleted file mode 100644 index bdbe8b0c225..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_537.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_538.RULE b/src/licensedcode/data/rules/proprietary-license_538.RULE index 204e1dd1051..e4c16917679 100644 --- a/src/licensedcode/data/rules/proprietary-license_538.RULE +++ b/src/licensedcode/data/rules/proprietary-license_538.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + The software must not be modified, you may not decompile, disassemble. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_538.yml b/src/licensedcode/data/rules/proprietary-license_538.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_538.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_539.RULE b/src/licensedcode/data/rules/proprietary-license_539.RULE index 16e9236ce80..7014ac75b4e 100644 --- a/src/licensedcode/data/rules/proprietary-license_539.RULE +++ b/src/licensedcode/data/rules/proprietary-license_539.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + provided as freeware for private (non commercial), or educational use, including non-profit organization (i.e. schools, universities, public authorities, police, fire brigade, and hospitals). In this case, you are granted the right to use and to make an unlimited number of copies of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_539.yml b/src/licensedcode/data/rules/proprietary-license_539.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_539.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_54.RULE b/src/licensedcode/data/rules/proprietary-license_54.RULE index 5487f8d0700..5d19ec062e0 100644 --- a/src/licensedcode/data/rules/proprietary-license_54.RULE +++ b/src/licensedcode/data/rules/proprietary-license_54.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.newlifex.com/ +--- + http://www.newlifex.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_54.yml b/src/licensedcode/data/rules/proprietary-license_54.yml deleted file mode 100644 index 9c0ac6f51f6..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.newlifex.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_540.RULE b/src/licensedcode/data/rules/proprietary-license_540.RULE index 4c4478d7d53..005010bb87e 100644 --- a/src/licensedcode/data/rules/proprietary-license_540.RULE +++ b/src/licensedcode/data/rules/proprietary-license_540.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Use of this software indicates you accept the terms of this license agreement and warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_540.yml b/src/licensedcode/data/rules/proprietary-license_540.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_540.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_541.RULE b/src/licensedcode/data/rules/proprietary-license_541.RULE index 388f04dcc42..504f002cf06 100644 --- a/src/licensedcode/data/rules/proprietary-license_541.RULE +++ b/src/licensedcode/data/rules/proprietary-license_541.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + distributed under the Academic Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_541.yml b/src/licensedcode/data/rules/proprietary-license_541.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_541.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_542.RULE b/src/licensedcode/data/rules/proprietary-license_542.RULE index 498586dc392..1f9af42aef6 100644 --- a/src/licensedcode/data/rules/proprietary-license_542.RULE +++ b/src/licensedcode/data/rules/proprietary-license_542.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 99 +--- + This program is property of its copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_542.yml b/src/licensedcode/data/rules/proprietary-license_542.yml deleted file mode 100644 index a1a82e33576..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_542.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary-license_543.RULE b/src/licensedcode/data/rules/proprietary-license_543.RULE index 21913fc49a5..d1555e0cded 100644 --- a/src/licensedcode/data/rules/proprietary-license_543.RULE +++ b/src/licensedcode/data/rules/proprietary-license_543.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + NonCommercial \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_543.yml b/src/licensedcode/data/rules/proprietary-license_543.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_543.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_544.RULE b/src/licensedcode/data/rules/proprietary-license_544.RULE index 9f169aceea5..8f925b24b36 100644 --- a/src/licensedcode/data/rules/proprietary-license_544.RULE +++ b/src/licensedcode/data/rules/proprietary-license_544.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Non Commercial \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_544.yml b/src/licensedcode/data/rules/proprietary-license_544.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_544.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_545.RULE b/src/licensedcode/data/rules/proprietary-license_545.RULE index 3417eac8a9c..986f7a6110d 100644 --- a/src/licensedcode/data/rules/proprietary-license_545.RULE +++ b/src/licensedcode/data/rules/proprietary-license_545.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + License The log datasets are freely available for research purposes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_545.yml b/src/licensedcode/data/rules/proprietary-license_545.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_545.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_546.RULE b/src/licensedcode/data/rules/proprietary-license_546.RULE index f87e635ef5a..7d39d59061d 100644 --- a/src/licensedcode/data/rules/proprietary-license_546.RULE +++ b/src/licensedcode/data/rules/proprietary-license_546.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + The log datasets are freely available for research purposes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_546.yml b/src/licensedcode/data/rules/proprietary-license_546.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_546.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_547.RULE b/src/licensedcode/data/rules/proprietary-license_547.RULE index 77ecb69d9ec..82f6c18c946 100644 --- a/src/licensedcode/data/rules/proprietary-license_547.RULE +++ b/src/licensedcode/data/rules/proprietary-license_547.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 60 +notes: An MIT-based license with extra and modified terms +--- + "MIT Modified" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_547.yml b/src/licensedcode/data/rules/proprietary-license_547.yml deleted file mode 100644 index 018805ddd46..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_547.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 60 -notes: An MIT-based license with extra and modified terms diff --git a/src/licensedcode/data/rules/proprietary-license_548.RULE b/src/licensedcode/data/rules/proprietary-license_548.RULE index dd14d7627b6..ea017a94e12 100644 --- a/src/licensedcode/data/rules/proprietary-license_548.RULE +++ b/src/licensedcode/data/rules/proprietary-license_548.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 99 +notes: An MIT-based license with extra and modified terms +--- + license "MIT Modified" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_548.yml b/src/licensedcode/data/rules/proprietary-license_548.yml deleted file mode 100644 index 333b34b1a3b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_548.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 99 -notes: An MIT-based license with extra and modified terms diff --git a/src/licensedcode/data/rules/proprietary-license_549.RULE b/src/licensedcode/data/rules/proprietary-license_549.RULE index 87a40b5fa82..46f04fdfd50 100644 --- a/src/licensedcode/data/rules/proprietary-license_549.RULE +++ b/src/licensedcode/data/rules/proprietary-license_549.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: An MIT-based license with extra and modified terms Seen in https://github.com/NaturalIntelligence/fast-xml-parser/blob/5d4e95188c4d3bf57ee1b2f5489c017ca3be627c/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_549.yml b/src/licensedcode/data/rules/proprietary-license_549.yml deleted file mode 100644 index 6d2bc6f871e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_549.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: An MIT-based license with extra and modified terms Seen in https://github.com/NaturalIntelligence/fast-xml-parser/blob/5d4e95188c4d3bf57ee1b2f5489c017ca3be627c/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_55.RULE b/src/licensedcode/data/rules/proprietary-license_55.RULE index a6641b05ca5..5890d49ea3b 100644 --- a/src/licensedcode/data/rules/proprietary-license_55.RULE +++ b/src/licensedcode/data/rules/proprietary-license_55.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.nwoods.com/Sales/Info/LicensesAll/SoftwareLicenseAgreement20160520.pdf +--- + http://www.nwoods.com/Sales/Info/LicensesAll/SoftwareLicenseAgreement20160520.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_55.yml b/src/licensedcode/data/rules/proprietary-license_55.yml deleted file mode 100644 index 142f417f77c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.nwoods.com/Sales/Info/LicensesAll/SoftwareLicenseAgreement20160520.pdf diff --git a/src/licensedcode/data/rules/proprietary-license_550.RULE b/src/licensedcode/data/rules/proprietary-license_550.RULE index af8e4c55ffe..fc7730341bd 100644 --- a/src/licensedcode/data/rules/proprietary-license_550.RULE +++ b/src/licensedcode/data/rules/proprietary-license_550.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +notes: An MIT-based license with extra and modified terms Seen in https://github.com/NaturalIntelligence/fast-xml-parser/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_550.yml b/src/licensedcode/data/rules/proprietary-license_550.yml deleted file mode 100644 index 4af70b18df9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_550.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -notes: An MIT-based license with extra and modified terms Seen in https://github.com/NaturalIntelligence/fast-xml-parser/ diff --git a/src/licensedcode/data/rules/proprietary-license_551.RULE b/src/licensedcode/data/rules/proprietary-license_551.RULE index 97dce5a3f3b..1dc0e20000b 100644 --- a/src/licensedcode/data/rules/proprietary-license_551.RULE +++ b/src/licensedcode/data/rules/proprietary-license_551.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Agent License Agent can be modified and redistributed in source and binary form provided the following conditions are met. diff --git a/src/licensedcode/data/rules/proprietary-license_551.yml b/src/licensedcode/data/rules/proprietary-license_551.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_551.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_552.RULE b/src/licensedcode/data/rules/proprietary-license_552.RULE index 0fbc2a69963..eeb5c3f5a7e 100644 --- a/src/licensedcode/data/rules/proprietary-license_552.RULE +++ b/src/licensedcode/data/rules/proprietary-license_552.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + MONEY'S CODE CREDIT LICENSE Feel free to use, modify and redistribute my code for public or private (i.e. commercial) purposes. The files listed below must be included with any related diff --git a/src/licensedcode/data/rules/proprietary-license_552.yml b/src/licensedcode/data/rules/proprietary-license_552.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_552.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_553.RULE b/src/licensedcode/data/rules/proprietary-license_553.RULE index 27479f7aa29..eca3f64a93b 100644 --- a/src/licensedcode/data/rules/proprietary-license_553.RULE +++ b/src/licensedcode/data/rules/proprietary-license_553.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + "license": "Private" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_553.yml b/src/licensedcode/data/rules/proprietary-license_553.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_553.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_554.RULE b/src/licensedcode/data/rules/proprietary-license_554.RULE index a36bc41df67..fe71913c1d7 100644 --- a/src/licensedcode/data/rules/proprietary-license_554.RULE +++ b/src/licensedcode/data/rules/proprietary-license_554.RULE @@ -1,3 +1,19 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_copyrights: + - (c) 2015-2020 Progress +ignorable_holders: + - Progress +ignorable_urls: + - http://getfiddler.com/ + - http://www.telerik.com/purchase/fiddler + - http://www.telerik.com/purchase/license-agreement/fiddler-enterprise-support + - https://www.progress.com/legal/privacy-policy +--- + Progress Telerik Fiddler Web Debugger (Last Updated April 9, 2020) The following terms and conditions govern the use of Progress Telerik Fiddler Web Debugger (the “Software”). By using any of the Software and/or any updates to it, you indicate your acceptance of these terms. If you do not accept these terms, do not install or use the software. diff --git a/src/licensedcode/data/rules/proprietary-license_554.yml b/src/licensedcode/data/rules/proprietary-license_554.yml deleted file mode 100644 index db73eaaf303..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_554.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_copyrights: - - (c) 2015-2020 Progress -ignorable_holders: - - Progress -ignorable_urls: - - http://getfiddler.com/ - - http://www.telerik.com/purchase/fiddler - - http://www.telerik.com/purchase/license-agreement/fiddler-enterprise-support - - https://www.progress.com/legal/privacy-policy diff --git a/src/licensedcode/data/rules/proprietary-license_555.RULE b/src/licensedcode/data/rules/proprietary-license_555.RULE index 0827e0dfa5c..ed5f279740b 100644 --- a/src/licensedcode/data/rules/proprietary-license_555.RULE +++ b/src/licensedcode/data/rules/proprietary-license_555.RULE @@ -1,3 +1,21 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_copyrights: + - (c) Germany and Austria. i. Warranty +ignorable_holders: + - Germany and Austria. i. Warranty +ignorable_urls: + - http://aka.ms/arb-agreement-1 + - http://aka.ms/exporting + - http://aka.ms/mpegla + - http://aka.ms/thirdpartynotices + - https://go.microsoft.com/fwlink/?LinkId=521839 + - https://thirdpartysource.microsoft.com/ +--- + MICROSOFT SOFTWARE LICENSE TERMS MICROSOFT EDGE diff --git a/src/licensedcode/data/rules/proprietary-license_555.yml b/src/licensedcode/data/rules/proprietary-license_555.yml deleted file mode 100644 index 5c676660de7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_555.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_copyrights: - - (c) Germany and Austria. i. Warranty -ignorable_holders: - - Germany and Austria. i. Warranty -ignorable_urls: - - http://aka.ms/arb-agreement-1 - - http://aka.ms/exporting - - http://aka.ms/mpegla - - http://aka.ms/thirdpartynotices - - https://go.microsoft.com/fwlink/?LinkId=521839 - - https://thirdpartysource.microsoft.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_556.RULE b/src/licensedcode/data/rules/proprietary-license_556.RULE index 536b5a0e7ea..1b7792cd9d1 100644 --- a/src/licensedcode/data/rules/proprietary-license_556.RULE +++ b/src/licensedcode/data/rules/proprietary-license_556.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + All rights reserved not granted herein. . Limited License. @@ -54,5 +60,4 @@ 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. - + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_556.yml b/src/licensedcode/data/rules/proprietary-license_556.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_556.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_557.RULE b/src/licensedcode/data/rules/proprietary-license_557.RULE index ab3ceebf8ac..a266f464575 100644 --- a/src/licensedcode/data/rules/proprietary-license_557.RULE +++ b/src/licensedcode/data/rules/proprietary-license_557.RULE @@ -1,4 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 50 +minimum_coverage: 90 +--- + is a trademark of , registered in the United States and other countries. All trademarks are used with permission. Other products and brand names may be trademarks or registered -trademarks of their respective owners. +trademarks of their respective owners. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_557.yml b/src/licensedcode/data/rules/proprietary-license_557.yml deleted file mode 100644 index ede325dcb4c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_557.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 50 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/proprietary-license_558.RULE b/src/licensedcode/data/rules/proprietary-license_558.RULE index 5499ac9f8b1..433123d0098 100644 --- a/src/licensedcode/data/rules/proprietary-license_558.RULE +++ b/src/licensedcode/data/rules/proprietary-license_558.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + BINARY CODE LICENSE AGREEMENT \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_558.yml b/src/licensedcode/data/rules/proprietary-license_558.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_558.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_559.RULE b/src/licensedcode/data/rules/proprietary-license_559.RULE index 68427ec5c58..313af28d0f7 100644 --- a/src/licensedcode/data/rules/proprietary-license_559.RULE +++ b/src/licensedcode/data/rules/proprietary-license_559.RULE @@ -1,2 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See in Firebase iOS SDK +ignorable_urls: + - https://firebase.google.com/terms +--- + Your use of Firebase is governed by the [Terms of Service for Firebase Services](https://firebase.google.com/terms/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_559.yml b/src/licensedcode/data/rules/proprietary-license_559.yml deleted file mode 100644 index b5b0bfd475b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_559.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See in Firebase iOS SDK -ignorable_urls: - - https://firebase.google.com/terms diff --git a/src/licensedcode/data/rules/proprietary-license_56.RULE b/src/licensedcode/data/rules/proprietary-license_56.RULE index f7b804481f5..07541b72032 100644 --- a/src/licensedcode/data/rules/proprietary-license_56.RULE +++ b/src/licensedcode/data/rules/proprietary-license_56.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.qsys.se/ +--- + http://www.qsys.se/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_56.yml b/src/licensedcode/data/rules/proprietary-license_56.yml deleted file mode 100644 index 3bfe414f7df..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.qsys.se/ diff --git a/src/licensedcode/data/rules/proprietary-license_560.RULE b/src/licensedcode/data/rules/proprietary-license_560.RULE index 9b2e0d310b7..2c37dc8d589 100644 --- a/src/licensedcode/data/rules/proprietary-license_560.RULE +++ b/src/licensedcode/data/rules/proprietary-license_560.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See in Firebase iOS SDK +--- + Your use of Firebase is governed by the [Terms of Service for Firebase Services] \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_560.yml b/src/licensedcode/data/rules/proprietary-license_560.yml deleted file mode 100644 index fcc36d70e5d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_560.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See in Firebase iOS SDK diff --git a/src/licensedcode/data/rules/proprietary-license_561.RULE b/src/licensedcode/data/rules/proprietary-license_561.RULE index 9ceb82ecbb4..d28443c5a9c 100644 --- a/src/licensedcode/data/rules/proprietary-license_561.RULE +++ b/src/licensedcode/data/rules/proprietary-license_561.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: See in Firebase iOS SDK +--- + [Terms of Service for Firebase Services] \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_561.yml b/src/licensedcode/data/rules/proprietary-license_561.yml deleted file mode 100644 index 0d0a3f6e968..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_561.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: See in Firebase iOS SDK diff --git a/src/licensedcode/data/rules/proprietary-license_562.RULE b/src/licensedcode/data/rules/proprietary-license_562.RULE index 7fb852e84a1..4f2c59b05da 100644 --- a/src/licensedcode/data/rules/proprietary-license_562.RULE +++ b/src/licensedcode/data/rules/proprietary-license_562.RULE @@ -1 +1,10 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: See in Firebase iOS SDK +ignorable_urls: + - https://firebase.google.com/terms/ +--- + https://firebase.google.com/terms/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_562.yml b/src/licensedcode/data/rules/proprietary-license_562.yml deleted file mode 100644 index cd8be4f5008..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_562.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: See in Firebase iOS SDK -ignorable_urls: - - https://firebase.google.com/terms/ diff --git a/src/licensedcode/data/rules/proprietary-license_563.RULE b/src/licensedcode/data/rules/proprietary-license_563.RULE index 48516c83589..e516003ac81 100644 --- a/src/licensedcode/data/rules/proprietary-license_563.RULE +++ b/src/licensedcode/data/rules/proprietary-license_563.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in https://lynnesbian.space/csl/plain/ +--- + COOPERATIVE SOFTWARE LICENSE THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS diff --git a/src/licensedcode/data/rules/proprietary-license_563.yml b/src/licensedcode/data/rules/proprietary-license_563.yml deleted file mode 100644 index 9cd7438b4b5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_563.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in https://lynnesbian.space/csl/plain/ diff --git a/src/licensedcode/data/rules/proprietary-license_564.RULE b/src/licensedcode/data/rules/proprietary-license_564.RULE index 8d68d83cab0..6dc371ab884 100644 --- a/src/licensedcode/data/rules/proprietary-license_564.RULE +++ b/src/licensedcode/data/rules/proprietary-license_564.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in https://wiki.coopcycle.org/en:license and https://github.com/coopcycle/coopcycle-web/blob/master/LICENSE +--- + This License grants rights to study, execute, modify and redistribute the Software or its derivatives to any Licensee, but reserve the commercial use of these rights to the only entities defined in Article 3. Any redistribution or diff --git a/src/licensedcode/data/rules/proprietary-license_564.yml b/src/licensedcode/data/rules/proprietary-license_564.yml deleted file mode 100644 index af27f19ef3a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_564.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in https://wiki.coopcycle.org/en:license and https://github.com/coopcycle/coopcycle-web/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_565.RULE b/src/licensedcode/data/rules/proprietary-license_565.RULE index 830638b0b0c..52581ffa93d 100644 --- a/src/licensedcode/data/rules/proprietary-license_565.RULE +++ b/src/licensedcode/data/rules/proprietary-license_565.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in https://wiki.coopcycle.org/en:license and https://github.com/coopcycle/coopcycle-web/blob/master/LICENSE +--- + This License grants rights to study, execute, modify and redistribute the Software or its derivatives to any Licensee, but reserve the commercial use of these rights to the only entities defined in Article 3. Any redistribution or online interaction with the Software or its derivative must be done accordingly to the License’s conditions. 1. Definitions diff --git a/src/licensedcode/data/rules/proprietary-license_565.yml b/src/licensedcode/data/rules/proprietary-license_565.yml deleted file mode 100644 index af27f19ef3a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_565.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in https://wiki.coopcycle.org/en:license and https://github.com/coopcycle/coopcycle-web/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_566.RULE b/src/licensedcode/data/rules/proprietary-license_566.RULE index cb81d93c305..d4e5db663df 100644 --- a/src/licensedcode/data/rules/proprietary-license_566.RULE +++ b/src/licensedcode/data/rules/proprietary-license_566.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + VirtualBox Extension Pack Personal Use and Evaluation License (PUEL) License version 11, 21 May 2020 diff --git a/src/licensedcode/data/rules/proprietary-license_566.yml b/src/licensedcode/data/rules/proprietary-license_566.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_566.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_567.RULE b/src/licensedcode/data/rules/proprietary-license_567.RULE index 0e17ee950bc..05e1ebb5dd8 100644 --- a/src/licensedcode/data/rules/proprietary-license_567.RULE +++ b/src/licensedcode/data/rules/proprietary-license_567.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: from autoit +--- + END-USER LICENSE AGREEMENT FOR THIS SOFTWARE This End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and the mentioned author of this Software for the software product identified above, which includes computer software and may include associated media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE PRODUCT. diff --git a/src/licensedcode/data/rules/proprietary-license_567.yml b/src/licensedcode/data/rules/proprietary-license_567.yml deleted file mode 100644 index 6e80e8653af..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_567.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: from autoit diff --git a/src/licensedcode/data/rules/proprietary-license_568.RULE b/src/licensedcode/data/rules/proprietary-license_568.RULE index 6c125131289..6f2d83ca6bf 100644 --- a/src/licensedcode/data/rules/proprietary-license_568.RULE +++ b/src/licensedcode/data/rules/proprietary-license_568.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: BSD-looking but not really it See https://github.com/Joan93/MasterThesis/blob/275ee8c6fcd5b0883540f629e2755ab524904a73/openwsn/openwsn-fw/bsp/boards/samr21_xpro/drivers/src/cm0plus_interrupt.c + for exmaple +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * diff --git a/src/licensedcode/data/rules/proprietary-license_568.yml b/src/licensedcode/data/rules/proprietary-license_568.yml deleted file mode 100644 index 23862a2adbe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_568.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: BSD-looking but not really it See https://github.com/Joan93/MasterThesis/blob/275ee8c6fcd5b0883540f629e2755ab524904a73/openwsn/openwsn-fw/bsp/boards/samr21_xpro/drivers/src/cm0plus_interrupt.c - for exmaple diff --git a/src/licensedcode/data/rules/proprietary-license_569.RULE b/src/licensedcode/data/rules/proprietary-license_569.RULE index 2ac6b46e935..fb3c34e342c 100644 --- a/src/licensedcode/data/rules/proprietary-license_569.RULE +++ b/src/licensedcode/data/rules/proprietary-license_569.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This product is protected by U.S. and international copyright and intellectual property laws. VMware products are covered by one or more patents listed at \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_569.yml b/src/licensedcode/data/rules/proprietary-license_569.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_569.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_57.RULE b/src/licensedcode/data/rules/proprietary-license_57.RULE index 9b13de583a1..f0c78b1e7a0 100644 --- a/src/licensedcode/data/rules/proprietary-license_57.RULE +++ b/src/licensedcode/data/rules/proprietary-license_57.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.sautinsoft.net/help/excel-to-pdf-net/Index.html?topic=Overview/license.htm +--- + http://www.sautinsoft.net/help/excel-to-pdf-net/Index.html?topic=Overview/license.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_57.yml b/src/licensedcode/data/rules/proprietary-license_57.yml deleted file mode 100644 index 39c324e6531..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.sautinsoft.net/help/excel-to-pdf-net/Index.html?topic=Overview/license.htm diff --git a/src/licensedcode/data/rules/proprietary-license_570.RULE b/src/licensedcode/data/rules/proprietary-license_570.RULE index d1fc93ff09a..3891eac8799 100644 --- a/src/licensedcode/data/rules/proprietary-license_570.RULE +++ b/src/licensedcode/data/rules/proprietary-license_570.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This product is protected by U.S. and international copyright and intellectual property laws. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_570.yml b/src/licensedcode/data/rules/proprietary-license_570.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_570.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_571.RULE b/src/licensedcode/data/rules/proprietary-license_571.RULE index 8f220707685..b3c468852c9 100644 --- a/src/licensedcode/data/rules/proprietary-license_571.RULE +++ b/src/licensedcode/data/rules/proprietary-license_571.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: https://github.com/erezsh/Preql/blob/79cf536d88733f2e9ba9749691913db51b0f3ea6/LICENSE +--- + “Interface-Protection Clause” License Condition v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_571.yml b/src/licensedcode/data/rules/proprietary-license_571.yml deleted file mode 100644 index 199817b9410..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_571.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: https://github.com/erezsh/Preql/blob/79cf536d88733f2e9ba9749691913db51b0f3ea6/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_572.RULE b/src/licensedcode/data/rules/proprietary-license_572.RULE index 66b2eda16cd..544d5c6ec59 100644 --- a/src/licensedcode/data/rules/proprietary-license_572.RULE +++ b/src/licensedcode/data/rules/proprietary-license_572.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://github.com/erezsh/Preql/blob/79cf536d88733f2e9ba9749691913db51b0f3ea6/LICENSE +--- + “Interface-Protection Clause” License Condition v1.0 The Software is provided to you by the Licensor under the License, as diff --git a/src/licensedcode/data/rules/proprietary-license_572.yml b/src/licensedcode/data/rules/proprietary-license_572.yml deleted file mode 100644 index a4daa632e0f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_572.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://github.com/erezsh/Preql/blob/79cf536d88733f2e9ba9749691913db51b0f3ea6/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_573.RULE b/src/licensedcode/data/rules/proprietary-license_573.RULE index bc3299f022c..a842dfa4a10 100644 --- a/src/licensedcode/data/rules/proprietary-license_573.RULE +++ b/src/licensedcode/data/rules/proprietary-license_573.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: https://github.com/erezsh/Preql/blob/79cf536d88733f2e9ba9749691913db51b0f3ea6/LICENSE +--- + “Interface-Protection Clause” on top of the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_573.yml b/src/licensedcode/data/rules/proprietary-license_573.yml deleted file mode 100644 index 1a196a1ac30..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_573.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: https://github.com/erezsh/Preql/blob/79cf536d88733f2e9ba9749691913db51b0f3ea6/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_574.RULE b/src/licensedcode/data/rules/proprietary-license_574.RULE index 59d17c0c889..3a7c79d2f96 100644 --- a/src/licensedcode/data/rules/proprietary-license_574.RULE +++ b/src/licensedcode/data/rules/proprietary-license_574.RULE @@ -1,3 +1,23 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: | + Seen in Info-Zip with a notice + Copyright 1989 Samuel H. Smith; All rights reserved + Relicensed to Info-Zip terms per Info-Zip documentation + + Regarding the first stipulation, Mr. Smith was tracked down in southern + California some years back [Samuel H. Smith, The Tool Shop; as of mid- + May 1994, (213) 851-9969 (voice), (213) 887-2127(?) (subscription BBS), + 71150.2731@compuserve.com]: + + "He says that he thought that whoever contacted him understood that + he has no objection to the Info-ZIP group's inclusion of his code. + His primary concern is that it remain freely distributable, he said." +--- + Do not distribute modified versions without my permission. Do not remove or alter this notice or any other copyright notice. If you use this in your own program you must distribute source code. diff --git a/src/licensedcode/data/rules/proprietary-license_574.yml b/src/licensedcode/data/rules/proprietary-license_574.yml deleted file mode 100644 index 06f37f0501e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_574.yml +++ /dev/null @@ -1,17 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: | - Seen in Info-Zip with a notice - Copyright 1989 Samuel H. Smith; All rights reserved - Relicensed to Info-Zip terms per Info-Zip documentation - - Regarding the first stipulation, Mr. Smith was tracked down in southern - California some years back [Samuel H. Smith, The Tool Shop; as of mid- - May 1994, (213) 851-9969 (voice), (213) 887-2127(?) (subscription BBS), - 71150.2731@compuserve.com]: - - "He says that he thought that whoever contacted him understood that - he has no objection to the Info-ZIP group's inclusion of his code. - His primary concern is that it remain freely distributable, he said." diff --git a/src/licensedcode/data/rules/proprietary-license_575.RULE b/src/licensedcode/data/rules/proprietary-license_575.RULE index df1300fc648..2b4e4c1c8c2 100644 --- a/src/licensedcode/data/rules/proprietary-license_575.RULE +++ b/src/licensedcode/data/rules/proprietary-license_575.RULE @@ -1,3 +1,25 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - COPYING +notes: | + Seen in Info-Zip with a + Copyright 1989 Samuel H. Smith; All rights reserved + Relicensed to Info-Zip terms per Info-Zip documentation + + Regarding the first stipulation, Mr. Smith was tracked down in southern + California some years back [Samuel H. Smith, The Tool Shop; as of mid- + May 1994, (213) 851-9969 (voice), (213) 887-2127(?) (subscription BBS), + 71150.2731@compuserve.com]: + + "He says that he thought that whoever contacted him understood that + he has no objection to the Info-ZIP group's inclusion of his code. + His primary concern is that it remain freely distributable, he said." +--- + * Do not distribute modified versions without my permission. * Do not remove or alter this notice or any other copyright notice. * If you use this in your own program you must distribute source code. diff --git a/src/licensedcode/data/rules/proprietary-license_575.yml b/src/licensedcode/data/rules/proprietary-license_575.yml deleted file mode 100644 index 081abd61e6e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_575.yml +++ /dev/null @@ -1,19 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - COPYING -notes: | - Seen in Info-Zip with a - Copyright 1989 Samuel H. Smith; All rights reserved - Relicensed to Info-Zip terms per Info-Zip documentation - - Regarding the first stipulation, Mr. Smith was tracked down in southern - California some years back [Samuel H. Smith, The Tool Shop; as of mid- - May 1994, (213) 851-9969 (voice), (213) 887-2127(?) (subscription BBS), - 71150.2731@compuserve.com]: - - "He says that he thought that whoever contacted him understood that - he has no objection to the Info-ZIP group's inclusion of his code. - His primary concern is that it remain freely distributable, he said." diff --git a/src/licensedcode/data/rules/proprietary-license_576.RULE b/src/licensedcode/data/rules/proprietary-license_576.RULE index 9b89ba7ff72..a2117c68531 100644 --- a/src/licensedcode/data/rules/proprietary-license_576.RULE +++ b/src/licensedcode/data/rules/proprietary-license_576.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 99 +notes: this deceving text looks like an MIT but is stripped from the right to "publish, distribute, + sublicense, and/or sell copies". Seen in https://github.com/M4cs/winfetch/blob/8c87b53c350dab6a40e345831987a48a9fd735b6/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_576.yml b/src/licensedcode/data/rules/proprietary-license_576.yml deleted file mode 100644 index e81e536f8ae..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_576.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 99 -notes: this deceving text looks like an MIT but is stripped from the right to "publish, distribute, - sublicense, and/or sell copies". Seen in https://github.com/M4cs/winfetch/blob/8c87b53c350dab6a40e345831987a48a9fd735b6/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_577.RULE b/src/licensedcode/data/rules/proprietary-license_577.RULE index ca070eafd05..a322747edd9 100644 --- a/src/licensedcode/data/rules/proprietary-license_577.RULE +++ b/src/licensedcode/data/rules/proprietary-license_577.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in Intel proprietary drivers +--- + Information in this document is provided in connection with Intel(R) products. No license, express or implied, by estoppel or otherwise, to any intellectual property rights is granted diff --git a/src/licensedcode/data/rules/proprietary-license_577.yml b/src/licensedcode/data/rules/proprietary-license_577.yml deleted file mode 100644 index c1e565cfd01..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_577.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in Intel proprietary drivers diff --git a/src/licensedcode/data/rules/proprietary-license_578.RULE b/src/licensedcode/data/rules/proprietary-license_578.RULE index e9f9681e5bf..fe0f9e60e52 100644 --- a/src/licensedcode/data/rules/proprietary-license_578.RULE +++ b/src/licensedcode/data/rules/proprietary-license_578.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Intellectual Property Implementation of this specification requires a license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_578.yml b/src/licensedcode/data/rules/proprietary-license_578.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_578.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_579.RULE b/src/licensedcode/data/rules/proprietary-license_579.RULE index a9a28744f39..052c1d034b8 100644 --- a/src/licensedcode/data/rules/proprietary-license_579.RULE +++ b/src/licensedcode/data/rules/proprietary-license_579.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Implementation of this specification requires a license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_579.yml b/src/licensedcode/data/rules/proprietary-license_579.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_579.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_58.RULE b/src/licensedcode/data/rules/proprietary-license_58.RULE index 3bfd7445573..1ccf75d89dd 100644 --- a/src/licensedcode/data/rules/proprietary-license_58.RULE +++ b/src/licensedcode/data/rules/proprietary-license_58.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.syncfusion.com/nuget/license?utm_source=nuget&utm_medium=listing +--- + http://www.syncfusion.com/nuget/license?utm_source=nuget&utm_medium=listing \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_58.yml b/src/licensedcode/data/rules/proprietary-license_58.yml deleted file mode 100644 index 5039e9b6292..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.syncfusion.com/nuget/license?utm_source=nuget&utm_medium=listing diff --git a/src/licensedcode/data/rules/proprietary-license_580.RULE b/src/licensedcode/data/rules/proprietary-license_580.RULE index e2dcdeb0de0..7e9c069929c 100644 --- a/src/licensedcode/data/rules/proprietary-license_580.RULE +++ b/src/licensedcode/data/rules/proprietary-license_580.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in Intel documents +--- + THIS DOCUMENT IS PROVIDED "AS IS" WITH NO WARRANTIES WHATSOEVER, INCLUDING ANY WARRANTY OF MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR ANY PARTICULAR PURPOSE, OR ANY WARRANTY OTHERWISE ARISING OUT OF ANY diff --git a/src/licensedcode/data/rules/proprietary-license_580.yml b/src/licensedcode/data/rules/proprietary-license_580.yml deleted file mode 100644 index 55a684915ac..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_580.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in Intel documents diff --git a/src/licensedcode/data/rules/proprietary-license_581.RULE b/src/licensedcode/data/rules/proprietary-license_581.RULE index 810867f28df..dc445e1b8f4 100644 --- a/src/licensedcode/data/rules/proprietary-license_581.RULE +++ b/src/licensedcode/data/rules/proprietary-license_581.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: Seen in Intel proprietary drivers +--- + Intel is making no claims of usability, efficacy or warranty. Information in this document is provided in connection with Intel products. No license, express or implied, by estoppel or otherwise, to any intellectual diff --git a/src/licensedcode/data/rules/proprietary-license_581.yml b/src/licensedcode/data/rules/proprietary-license_581.yml deleted file mode 100644 index c1e565cfd01..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_581.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: Seen in Intel proprietary drivers diff --git a/src/licensedcode/data/rules/proprietary-license_582.RULE b/src/licensedcode/data/rules/proprietary-license_582.RULE index 0ed2c75f797..8d487fd7fdc 100644 --- a/src/licensedcode/data/rules/proprietary-license_582.RULE +++ b/src/licensedcode/data/rules/proprietary-license_582.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Portions of this material resulted from work developed under a U.S. Government contract and are subject to the following license: For a period of five years from March 30, 1993, the Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, and perform publicly and display publicly. With the approval of DOE, this period may be renewed for two additional five year periods. Following the expiration of this period or periods, the Government is granted for itself and others acting on its behalf, a paid-up, nonexclusive, irrevocable worldwide license in this computer software to reproduce, prepare derivative works, distribute copies to the public, perform publicly and display publicly, and to permit others to do so. Disclaimer diff --git a/src/licensedcode/data/rules/proprietary-license_582.yml b/src/licensedcode/data/rules/proprietary-license_582.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_582.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_583.RULE b/src/licensedcode/data/rules/proprietary-license_583.RULE index 8b5d74d046d..ca6400eecdc 100644 --- a/src/licensedcode/data/rules/proprietary-license_583.RULE +++ b/src/licensedcode/data/rules/proprietary-license_583.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This image is not in the Public Domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_583.yml b/src/licensedcode/data/rules/proprietary-license_583.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_583.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_584.RULE b/src/licensedcode/data/rules/proprietary-license_584.RULE index 6d63aa59697..64feda0331b 100644 --- a/src/licensedcode/data/rules/proprietary-license_584.RULE +++ b/src/licensedcode/data/rules/proprietary-license_584.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This document is not in the Public Domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_584.yml b/src/licensedcode/data/rules/proprietary-license_584.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_584.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_585.RULE b/src/licensedcode/data/rules/proprietary-license_585.RULE index a064a286555..c870572fbb0 100644 --- a/src/licensedcode/data/rules/proprietary-license_585.RULE +++ b/src/licensedcode/data/rules/proprietary-license_585.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + not in the Public Domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_585.yml b/src/licensedcode/data/rules/proprietary-license_585.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_585.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_586.RULE b/src/licensedcode/data/rules/proprietary-license_586.RULE index d5ab85848f9..66530fcf937 100644 --- a/src/licensedcode/data/rules/proprietary-license_586.RULE +++ b/src/licensedcode/data/rules/proprietary-license_586.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.dynamicdrive.com/ +--- + This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_586.yml b/src/licensedcode/data/rules/proprietary-license_586.yml deleted file mode 100644 index 06efdbf42a4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_586.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.dynamicdrive.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_587.RULE b/src/licensedcode/data/rules/proprietary-license_587.RULE index 213cde1eb5e..c2b7f8e6925 100644 --- a/src/licensedcode/data/rules/proprietary-license_587.RULE +++ b/src/licensedcode/data/rules/proprietary-license_587.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.x12.org/ +--- + Accredited Standards Committee X12 (#transaction_set), [#transaction_version]. X12 Incorporated, [MM YY]. . "X12 has granted express permission for use of X12 copyrighted materials within this document." \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_587.yml b/src/licensedcode/data/rules/proprietary-license_587.yml deleted file mode 100644 index 47f307c5e3b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_587.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.x12.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_588.RULE b/src/licensedcode/data/rules/proprietary-license_588.RULE index 83bddbd1e76..eb3d0f4378f 100644 --- a/src/licensedcode/data/rules/proprietary-license_588.RULE +++ b/src/licensedcode/data/rules/proprietary-license_588.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: See https://fedoraproject.org/wiki/Licensing:OReilly?rd=Licensing/OReilly +--- + The source code on this disk can be freely used, adapted, and redistributed in source or binary form, so long as an acknowledgment appears in derived source files. The citation should list that the code comes from the book diff --git a/src/licensedcode/data/rules/proprietary-license_588.yml b/src/licensedcode/data/rules/proprietary-license_588.yml deleted file mode 100644 index ead682e7f69..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_588.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: See https://fedoraproject.org/wiki/Licensing:OReilly?rd=Licensing/OReilly diff --git a/src/licensedcode/data/rules/proprietary-license_589.RULE b/src/licensedcode/data/rules/proprietary-license_589.RULE index 653a10e742f..a2123020239 100644 --- a/src/licensedcode/data/rules/proprietary-license_589.RULE +++ b/src/licensedcode/data/rules/proprietary-license_589.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The training data containing the annotation (and the models trained with these data) are available for non-commercial research purposes only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_589.yml b/src/licensedcode/data/rules/proprietary-license_589.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_589.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_59.RULE b/src/licensedcode/data/rules/proprietary-license_59.RULE index 8155d4153b6..b5331b17f7c 100644 --- a/src/licensedcode/data/rules/proprietary-license_59.RULE +++ b/src/licensedcode/data/rules/proprietary-license_59.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.testminion.com/ +--- + http://www.testminion.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_59.yml b/src/licensedcode/data/rules/proprietary-license_59.yml deleted file mode 100644 index ac269630e70..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.testminion.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_590.RULE b/src/licensedcode/data/rules/proprietary-license_590.RULE index b0f6ff95697..f9101418e3c 100644 --- a/src/licensedcode/data/rules/proprietary-license_590.RULE +++ b/src/licensedcode/data/rules/proprietary-license_590.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Both manual-downloading models from our github repo and auto-downloading models with our [python-library](python-package) follow the above license policy(which is for non-commercial research purposes only). \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_590.yml b/src/licensedcode/data/rules/proprietary-license_590.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_590.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_591.RULE b/src/licensedcode/data/rules/proprietary-license_591.RULE index 90bd19963e0..32a5ba82879 100644 --- a/src/licensedcode/data/rules/proprietary-license_591.RULE +++ b/src/licensedcode/data/rules/proprietary-license_591.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Note that these models are available for non-commercial research purposes only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_591.yml b/src/licensedcode/data/rules/proprietary-license_591.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_591.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_592.RULE b/src/licensedcode/data/rules/proprietary-license_592.RULE index 35518cdf67d..87ebe45596e 100644 --- a/src/licensedcode/data/rules/proprietary-license_592.RULE +++ b/src/licensedcode/data/rules/proprietary-license_592.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + * You may not use these files except in compliance with the license. * A copy of the license is located the "LICENSE.txt" file accompanying * this source. This file is distributed on an "AS IS" BASIS, WITHOUT diff --git a/src/licensedcode/data/rules/proprietary-license_592.yml b/src/licensedcode/data/rules/proprietary-license_592.yml deleted file mode 100644 index ac48d9fcebb..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_592.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_593.RULE b/src/licensedcode/data/rules/proprietary-license_593.RULE index 17667772e78..b7a5b928301 100644 --- a/src/licensedcode/data/rules/proprietary-license_593.RULE +++ b/src/licensedcode/data/rules/proprietary-license_593.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + provided for non-commercial development use only \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_593.yml b/src/licensedcode/data/rules/proprietary-license_593.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_593.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_594.RULE b/src/licensedcode/data/rules/proprietary-license_594.RULE index 757f09d71c6..c486ecf2f59 100644 --- a/src/licensedcode/data/rules/proprietary-license_594.RULE +++ b/src/licensedcode/data/rules/proprietary-license_594.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + available for non-commercial \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_594.yml b/src/licensedcode/data/rules/proprietary-license_594.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_594.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_595.RULE b/src/licensedcode/data/rules/proprietary-license_595.RULE index 5ad1efd6e4a..0d63e9167b0 100644 --- a/src/licensedcode/data/rules/proprietary-license_595.RULE +++ b/src/licensedcode/data/rules/proprietary-license_595.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + available for non-commerical \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_595.yml b/src/licensedcode/data/rules/proprietary-license_595.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_595.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_596.RULE b/src/licensedcode/data/rules/proprietary-license_596.RULE index 60add9ba86c..697e10a0e44 100644 --- a/src/licensedcode/data/rules/proprietary-license_596.RULE +++ b/src/licensedcode/data/rules/proprietary-license_596.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + available for non-commercial research purposes only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_596.yml b/src/licensedcode/data/rules/proprietary-license_596.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_596.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_597.RULE b/src/licensedcode/data/rules/proprietary-license_597.RULE index a71855f9106..579e2c5822d 100644 --- a/src/licensedcode/data/rules/proprietary-license_597.RULE +++ b/src/licensedcode/data/rules/proprietary-license_597.RULE @@ -1,3 +1,19 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See http://www.hacktivismo.com/about/hessla.php +ignorable_urls: + - http://hacktivismo.com/ + - http://hacktivismo.com/about/declarations/ + - http://www.hacktivismo.com/ + - http://www.opensource.org/docs/definition_plain.php + - http://www.rosenlaw.com/osl.html + - http://www.un.org/Overview/rights.html + - http://www.unhchr.ch/html/menu3/b/a_ccpr.htm + - https://www.gnu.org/philosophy/free-sw.html +--- + The Hacktivismo Enhanced-Source Software License Agreement Everyone is permitted to copy and distribute verbatim copies of this license document. You may use content from this license document as source material for your own license agreement, but you may not use the name "Hacktivismo Enhanced-Source Software License Agreement ," ("HESSLA") or any confusingly similar name, trademark or service-mark, in connection with any license agreement that is not either (1) a verbatim copy of this License Agreement, or (2) a license agreement that contains only additional terms expressly permitted by The HESSLA. diff --git a/src/licensedcode/data/rules/proprietary-license_597.yml b/src/licensedcode/data/rules/proprietary-license_597.yml deleted file mode 100644 index 61fc8a01291..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_597.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See http://www.hacktivismo.com/about/hessla.php -ignorable_urls: - - http://hacktivismo.com/ - - http://hacktivismo.com/about/declarations/ - - http://www.hacktivismo.com/ - - http://www.opensource.org/docs/definition_plain.php - - http://www.rosenlaw.com/osl.html - - http://www.un.org/Overview/rights.html - - http://www.unhchr.ch/html/menu3/b/a_ccpr.htm - - https://www.gnu.org/philosophy/free-sw.html diff --git a/src/licensedcode/data/rules/proprietary-license_598.RULE b/src/licensedcode/data/rules/proprietary-license_598.RULE index 3a5d50dd2f5..445e91822a6 100644 --- a/src/licensedcode/data/rules/proprietary-license_598.RULE +++ b/src/licensedcode/data/rules/proprietary-license_598.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.phoenix.com/en/Privacy+Policy/default.htm + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/copyleft/lesser.html +--- + PHOENIX TECHNOLOGIES LTD. @@ -133,8 +143,4 @@ WARRANTY DISCLAIMER. ALL THIRD PARTY APPLICATIONS BUNDLED WITH THE SOFTWARE OR -HS EULA v.2., 4-7-09 - - - - +HS EULA v.2., 4-7-09 \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_598.yml b/src/licensedcode/data/rules/proprietary-license_598.yml deleted file mode 100644 index 4c93cc3a3f3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_598.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.phoenix.com/en/Privacy+Policy/default.htm - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/proprietary-license_599.RULE b/src/licensedcode/data/rules/proprietary-license_599.RULE index 7657d671312..bc58849e34c 100644 --- a/src/licensedcode/data/rules/proprietary-license_599.RULE +++ b/src/licensedcode/data/rules/proprietary-license_599.RULE @@ -1,6 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This file contains firmware data derived from proprietary unpublished source code, Copyright Permission is hereby granted for the distribution of this firmware data in hexadecimal or equivalent format, provided this copyright notice is -accompanying it. +accompanying it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_599.yml b/src/licensedcode/data/rules/proprietary-license_599.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_599.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_6.RULE b/src/licensedcode/data/rules/proprietary-license_6.RULE index 23d1d86c540..a0fc0e33804 100644 --- a/src/licensedcode/data/rules/proprietary-license_6.RULE +++ b/src/licensedcode/data/rules/proprietary-license_6.RULE @@ -1,6 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + U.S. Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Contract with Corporation. web site pages may contain other proprietary notices and copyright information which should - be observed. + be observed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_6.yml b/src/licensedcode/data/rules/proprietary-license_6.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_60.RULE b/src/licensedcode/data/rules/proprietary-license_60.RULE index 18bd4099c68..6f340065831 100644 --- a/src/licensedcode/data/rules/proprietary-license_60.RULE +++ b/src/licensedcode/data/rules/proprietary-license_60.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.vintasoft.com/vsimaging-dotnet-license.html?referer=nuget.org/Vintasoft.Imaging.Pdf.JavaScript +--- + http://www.vintasoft.com/vsimaging-dotnet-license.html?referer=nuget.org/Vintasoft.Imaging.Pdf.JavaScript \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_60.yml b/src/licensedcode/data/rules/proprietary-license_60.yml deleted file mode 100644 index e8e6ce35918..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.vintasoft.com/vsimaging-dotnet-license.html?referer=nuget.org/Vintasoft.Imaging.Pdf.JavaScript diff --git a/src/licensedcode/data/rules/proprietary-license_600.RULE b/src/licensedcode/data/rules/proprietary-license_600.RULE index 0eb0a691f55..18ff26a5a60 100644 --- a/src/licensedcode/data/rules/proprietary-license_600.RULE +++ b/src/licensedcode/data/rules/proprietary-license_600.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Raspberry PI only. +--- + Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_600.yml b/src/licensedcode/data/rules/proprietary-license_600.yml deleted file mode 100644 index faeeae903d9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_600.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Raspberry PI only. diff --git a/src/licensedcode/data/rules/proprietary-license_601.RULE b/src/licensedcode/data/rules/proprietary-license_601.RULE index 8cd51bc6eab..91710f8e14a 100644 --- a/src/licensedcode/data/rules/proprietary-license_601.RULE +++ b/src/licensedcode/data/rules/proprietary-license_601.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + allowed only for noncommercial distribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_601.yml b/src/licensedcode/data/rules/proprietary-license_601.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_601.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_602.RULE b/src/licensedcode/data/rules/proprietary-license_602.RULE index 5c9292f6f27..d3195cafccb 100644 --- a/src/licensedcode/data/rules/proprietary-license_602.RULE +++ b/src/licensedcode/data/rules/proprietary-license_602.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/debOliveira/parrot-mambo-model-based-design/blob/master/LICENSE +--- + No permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including with limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_602.yml b/src/licensedcode/data/rules/proprietary-license_602.yml deleted file mode 100644 index 2d9cf5e76cd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_602.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/debOliveira/parrot-mambo-model-based-design/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_603.RULE b/src/licensedcode/data/rules/proprietary-license_603.RULE index 72f01a5b17e..3f55a50c169 100644 --- a/src/licensedcode/data/rules/proprietary-license_603.RULE +++ b/src/licensedcode/data/rules/proprietary-license_603.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/nneko/oppenshop/blob/master/LICENSE +--- + Permission to use this software requires authorization from and must be granted in writing. Limited rights may be granted to any person obtaining a copy of this software and associated documentation diff --git a/src/licensedcode/data/rules/proprietary-license_603.yml b/src/licensedcode/data/rules/proprietary-license_603.yml deleted file mode 100644 index 02d7bcda3ed..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_603.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/nneko/oppenshop/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_604.RULE b/src/licensedcode/data/rules/proprietary-license_604.RULE index af0deee1371..0c4ee0a722c 100644 --- a/src/licensedcode/data/rules/proprietary-license_604.RULE +++ b/src/licensedcode/data/rules/proprietary-license_604.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/self-xdsd/self-core/blob/84ae5e82793c236c6bfbee1dd8f8406eee495f9a/self-core-impl/src/main/java/com/selfxdsd/core/SelfCore.java#L7 +--- + * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), * to read the Software only. Permission is hereby NOT GRANTED to use, copy, diff --git a/src/licensedcode/data/rules/proprietary-license_604.yml b/src/licensedcode/data/rules/proprietary-license_604.yml deleted file mode 100644 index a64a2e7c115..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_604.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/self-xdsd/self-core/blob/84ae5e82793c236c6bfbee1dd8f8406eee495f9a/self-core-impl/src/main/java/com/selfxdsd/core/SelfCore.java#L7 diff --git a/src/licensedcode/data/rules/proprietary-license_605.RULE b/src/licensedcode/data/rules/proprietary-license_605.RULE index 7eab4da410e..3101aee7d20 100644 --- a/src/licensedcode/data/rules/proprietary-license_605.RULE +++ b/src/licensedcode/data/rules/proprietary-license_605.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/damolaobaleke/eazifunds.com/blob/5f2f796968a5de74e60de401b49ef715ccaa957d/LICENSE#L3 +--- + Permission is hereby not granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_605.yml b/src/licensedcode/data/rules/proprietary-license_605.yml deleted file mode 100644 index 9cb334537d4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_605.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/damolaobaleke/eazifunds.com/blob/5f2f796968a5de74e60de401b49ef715ccaa957d/LICENSE#L3 diff --git a/src/licensedcode/data/rules/proprietary-license_606.RULE b/src/licensedcode/data/rules/proprietary-license_606.RULE index c82573643d5..d2b528a25d3 100644 --- a/src/licensedcode/data/rules/proprietary-license_606.RULE +++ b/src/licensedcode/data/rules/proprietary-license_606.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/marvinick/noroof/4e06d35791bc3bf9327ca79cc3c24d1331d0bf7f/README.md +--- + Permission is hereby NOT granted, NOT free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/proprietary-license_606.yml b/src/licensedcode/data/rules/proprietary-license_606.yml deleted file mode 100644 index 9ced25acb75..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_606.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/marvinick/noroof/4e06d35791bc3bf9327ca79cc3c24d1331d0bf7f/README.md diff --git a/src/licensedcode/data/rules/proprietary-license_607.RULE b/src/licensedcode/data/rules/proprietary-license_607.RULE index bf9354c2a00..e50a9691a6c 100644 --- a/src/licensedcode/data/rules/proprietary-license_607.RULE +++ b/src/licensedcode/data/rules/proprietary-license_607.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/ciricbgd/Kroon-test/blob/027954d9390d22639f37d6ea2441932e4670fa02/LICENSE +--- + Permission is hereby NOT granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_607.yml b/src/licensedcode/data/rules/proprietary-license_607.yml deleted file mode 100644 index f7f65c412c3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_607.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/ciricbgd/Kroon-test/blob/027954d9390d22639f37d6ea2441932e4670fa02/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_608.RULE b/src/licensedcode/data/rules/proprietary-license_608.RULE index dc2fe9e984f..90b1800c98e 100644 --- a/src/licensedcode/data/rules/proprietary-license_608.RULE +++ b/src/licensedcode/data/rules/proprietary-license_608.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/alvynabranches/3T_Project/blob/d51be5447537ac7cfd13f42b201f0a5cccdebdd9/LICENSE#L5 + Github belives this is an MIT +--- + Permission is hereby not granted, not free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/src/licensedcode/data/rules/proprietary-license_608.yml b/src/licensedcode/data/rules/proprietary-license_608.yml deleted file mode 100644 index fd15afe9d28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_608.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/alvynabranches/3T_Project/blob/d51be5447537ac7cfd13f42b201f0a5cccdebdd9/LICENSE#L5 - Github belives this is an MIT diff --git a/src/licensedcode/data/rules/proprietary-license_609.RULE b/src/licensedcode/data/rules/proprietary-license_609.RULE index 3095d9683e1..8d6de2a023f 100644 --- a/src/licensedcode/data/rules/proprietary-license_609.RULE +++ b/src/licensedcode/data/rules/proprietary-license_609.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/Andre-H/LaNoFraiAndroid/blob/4ab95760e0e8543d3e801ee79de1da5d7256ee9a/LICENSE.md#L5 +--- + Permission is hereby NOT granted, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: As I do not possess knowledge of copyright law, nor do I have access to an advisor I am simply stating in good faith that there is no pirated or unlicensed code in anything I commit, but I would rather nobody uses it for any porpose other than educational, at least until I can assess and implement a proper licensing scheme. diff --git a/src/licensedcode/data/rules/proprietary-license_609.yml b/src/licensedcode/data/rules/proprietary-license_609.yml deleted file mode 100644 index aac86ba56c6..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_609.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/Andre-H/LaNoFraiAndroid/blob/4ab95760e0e8543d3e801ee79de1da5d7256ee9a/LICENSE.md#L5 diff --git a/src/licensedcode/data/rules/proprietary-license_61.RULE b/src/licensedcode/data/rules/proprietary-license_61.RULE index 0ab4457ac67..7894d5c8e34 100644 --- a/src/licensedcode/data/rules/proprietary-license_61.RULE +++ b/src/licensedcode/data/rules/proprietary-license_61.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://xfiniumpdf.com/xfinium-pdf-crossplatform/xfinium-pdf-licensing.html +--- + http://xfiniumpdf.com/xfinium-pdf-crossplatform/xfinium-pdf-licensing.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_61.yml b/src/licensedcode/data/rules/proprietary-license_61.yml deleted file mode 100644 index 4c90fb301e0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://xfiniumpdf.com/xfinium-pdf-crossplatform/xfinium-pdf-licensing.html diff --git a/src/licensedcode/data/rules/proprietary-license_610.RULE b/src/licensedcode/data/rules/proprietary-license_610.RULE index 249be21824a..8aca6ee898b 100644 --- a/src/licensedcode/data/rules/proprietary-license_610.RULE +++ b/src/licensedcode/data/rules/proprietary-license_610.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/IcodeAditya/Snake-Game-Using-Python/blob/6f3b065723043f197fdc619d94b5845168799ee4/LICENSE#L5 +--- + Permission is hereby not granted to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_610.yml b/src/licensedcode/data/rules/proprietary-license_610.yml deleted file mode 100644 index f32780997d8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_610.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/IcodeAditya/Snake-Game-Using-Python/blob/6f3b065723043f197fdc619d94b5845168799ee4/LICENSE#L5 diff --git a/src/licensedcode/data/rules/proprietary-license_611.RULE b/src/licensedcode/data/rules/proprietary-license_611.RULE index 3deb2113972..0de8bb73769 100644 --- a/src/licensedcode/data/rules/proprietary-license_611.RULE +++ b/src/licensedcode/data/rules/proprietary-license_611.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/cuio/Elysium/blob/487d26318803988350e2397b424b597da9cb14e4/COPYING#L2 +--- + Permission is hereby not granted to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software with restriction, including limitation of rights diff --git a/src/licensedcode/data/rules/proprietary-license_611.yml b/src/licensedcode/data/rules/proprietary-license_611.yml deleted file mode 100644 index 69d63c6fb91..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_611.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/cuio/Elysium/blob/487d26318803988350e2397b424b597da9cb14e4/COPYING#L2 diff --git a/src/licensedcode/data/rules/proprietary-license_612.RULE b/src/licensedcode/data/rules/proprietary-license_612.RULE index b6fdeafc3d6..b4564e10daf 100644 --- a/src/licensedcode/data/rules/proprietary-license_612.RULE +++ b/src/licensedcode/data/rules/proprietary-license_612.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on some of the MIT wording with material and problematic changes. https://github.com/gkushang/speedItHybrid/blob/d29457ae527627d14f8f72b1865a54e5bb06f86a/src/main/java/com/speeditlab/hybrid/exception/ViewNotFound.java#L7 +--- + - Permission is hereby not granted without signing agreement with the Proprietor. | - This Software cannot be distributed without signing agreement with the Proprietor. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_612.yml b/src/licensedcode/data/rules/proprietary-license_612.yml deleted file mode 100644 index e5632b1bb54..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_612.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on some of the MIT wording with material and problematic changes. https://github.com/gkushang/speedItHybrid/blob/d29457ae527627d14f8f72b1865a54e5bb06f86a/src/main/java/com/speeditlab/hybrid/exception/ViewNotFound.java#L7 diff --git a/src/licensedcode/data/rules/proprietary-license_613.RULE b/src/licensedcode/data/rules/proprietary-license_613.RULE index f24980f0ca4..b08b1f74dca 100644 --- a/src/licensedcode/data/rules/proprietary-license_613.RULE +++ b/src/licensedcode/data/rules/proprietary-license_613.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/daneedk/com.uc.heimdall/blob/df735884f7ead47b9ef99525d62fbe23f0082c69/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to use the Software on their Homey's. Excluding without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_613.yml b/src/licensedcode/data/rules/proprietary-license_613.yml deleted file mode 100644 index 701dbac6909..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_613.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/daneedk/com.uc.heimdall/blob/df735884f7ead47b9ef99525d62fbe23f0082c69/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_614.RULE b/src/licensedcode/data/rules/proprietary-license_614.RULE index 1da293965aa..94340a6ab39 100644 --- a/src/licensedcode/data/rules/proprietary-license_614.RULE +++ b/src/licensedcode/data/rules/proprietary-license_614.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/jaxsb/jaxsb/blob/de067fc2b0c301300dd7fcbc7432634014430286/compiler/src/main/java/org/jaxsb/compiler/processor/normalize/element/MaxExclusiveNormalizer.java +ignorable_urls: + - http://opensource.org/licenses/MIT/ +--- + * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, Excluding without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_614.yml b/src/licensedcode/data/rules/proprietary-license_614.yml deleted file mode 100644 index 48f0dc1260c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_614.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/jaxsb/jaxsb/blob/de067fc2b0c301300dd7fcbc7432634014430286/compiler/src/main/java/org/jaxsb/compiler/processor/normalize/element/MaxExclusiveNormalizer.java -ignorable_urls: - - http://opensource.org/licenses/MIT/ diff --git a/src/licensedcode/data/rules/proprietary-license_615.RULE b/src/licensedcode/data/rules/proprietary-license_615.RULE index 9129cd6fe6e..2339d0975fc 100644 --- a/src/licensedcode/data/rules/proprietary-license_615.RULE +++ b/src/licensedcode/data/rules/proprietary-license_615.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/akulashashi/Foke_DNN_testrespository/blob/748ac176fca2f6ffa878c888d25c13d713e85b57/DNN + Training/JRC Modules/bhattji_LoadSheets/rptLoadSheetInit.ascx.vb#L5 +--- + ' Permission is hereby granted, to the person obtaining a copy of this software legaly and associated ' documentation files (the "Software"), to deal in the Software with restriction, including with limitation ' the rights to use, copy, modify, merge, PublishDate, distribute, sublicense, and/or sell copies of the Software, and diff --git a/src/licensedcode/data/rules/proprietary-license_615.yml b/src/licensedcode/data/rules/proprietary-license_615.yml deleted file mode 100644 index 4e582f5ab89..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_615.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/akulashashi/Foke_DNN_testrespository/blob/748ac176fca2f6ffa878c888d25c13d713e85b57/DNN - Training/JRC Modules/bhattji_LoadSheets/rptLoadSheetInit.ascx.vb#L5 diff --git a/src/licensedcode/data/rules/proprietary-license_616.RULE b/src/licensedcode/data/rules/proprietary-license_616.RULE index a1b1129a598..26c09329ce4 100644 --- a/src/licensedcode/data/rules/proprietary-license_616.RULE +++ b/src/licensedcode/data/rules/proprietary-license_616.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/hungrybearpls/CoverMe_Beta/a4aad6f5a8e21f5aac6c9337baf16a9f68b6136c/LICENSE.md +--- + Permission is hereby granted, of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software with restriction, including with limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_616.yml b/src/licensedcode/data/rules/proprietary-license_616.yml deleted file mode 100644 index 690c3e80394..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_616.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/hungrybearpls/CoverMe_Beta/a4aad6f5a8e21f5aac6c9337baf16a9f68b6136c/LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_617.RULE b/src/licensedcode/data/rules/proprietary-license_617.RULE index 1a087b4a039..530ab512759 100644 --- a/src/licensedcode/data/rules/proprietary-license_617.RULE +++ b/src/licensedcode/data/rules/proprietary-license_617.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/QuantForever/MarketRiskAnalytics/blob/523d0365ad73384a29872ad2c98d476967fd6f5d/StockPriceSim.py +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/proprietary-license_617.yml b/src/licensedcode/data/rules/proprietary-license_617.yml deleted file mode 100644 index c8f60cc4750..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_617.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/QuantForever/MarketRiskAnalytics/blob/523d0365ad73384a29872ad2c98d476967fd6f5d/StockPriceSim.py diff --git a/src/licensedcode/data/rules/proprietary-license_618.RULE b/src/licensedcode/data/rules/proprietary-license_618.RULE index 50801fbd00f..4fe49757efe 100644 --- a/src/licensedcode/data/rules/proprietary-license_618.RULE +++ b/src/licensedcode/data/rules/proprietary-license_618.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/AceKiron/Xondalf/blob/f14f01b5e7531aa28c32d2cc9b7dcf23f2656c2e/LICENSE#L10 +ignorable_urls: + - https://github.com/AceKiron/AceKiron +--- + Permission is granted to any person obtaining a copy of this software to modify and distribute it, as long as the full license is included and the original authors are credited. diff --git a/src/licensedcode/data/rules/proprietary-license_618.yml b/src/licensedcode/data/rules/proprietary-license_618.yml deleted file mode 100644 index f79982788ea..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_618.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/AceKiron/Xondalf/blob/f14f01b5e7531aa28c32d2cc9b7dcf23f2656c2e/LICENSE#L10 -ignorable_urls: - - https://github.com/AceKiron/AceKiron diff --git a/src/licensedcode/data/rules/proprietary-license_619.RULE b/src/licensedcode/data/rules/proprietary-license_619.RULE index b3f692686d9..8f7d59fd8f3 100644 --- a/src/licensedcode/data/rules/proprietary-license_619.RULE +++ b/src/licensedcode/data/rules/proprietary-license_619.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/elstgav/projecthub/blob/9211a46019d7a2d7d08861c4e6d685245e39ace6/LICENSE.md#L13 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sublicense copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/proprietary-license_619.yml b/src/licensedcode/data/rules/proprietary-license_619.yml deleted file mode 100644 index 327cc04091c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_619.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/elstgav/projecthub/blob/9211a46019d7a2d7d08861c4e6d685245e39ace6/LICENSE.md#L13 diff --git a/src/licensedcode/data/rules/proprietary-license_62.RULE b/src/licensedcode/data/rules/proprietary-license_62.RULE index 4681389dc4b..8776bd05a65 100644 --- a/src/licensedcode/data/rules/proprietary-license_62.RULE +++ b/src/licensedcode/data/rules/proprietary-license_62.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://github.com/SageScottsdalePlatform/SDataCSharpClientLib/raw/master/LICENSE +--- + http://github.com/SageScottsdalePlatform/SDataCSharpClientLib/raw/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_62.yml b/src/licensedcode/data/rules/proprietary-license_62.yml deleted file mode 100644 index 4619f76a2cf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://github.com/SageScottsdalePlatform/SDataCSharpClientLib/raw/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_620.RULE b/src/licensedcode/data/rules/proprietary-license_620.RULE index c4a10cdfb1b..ea1b51143bf 100644 --- a/src/licensedcode/data/rules/proprietary-license_620.RULE +++ b/src/licensedcode/data/rules/proprietary-license_620.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/shendurelab/MIPGEN/4d6c342bbf30db99754509935d11bbb9b19c335e/LICENSE.txt +ignorable_emails: + - license@uw.edu +--- + Permission is hereby granted, to You to use, copy, modify, merge the MIPgen software and associated documentation files (the "Software") for the use in Your non-commercial academic and research activities. This includes electronic distribution for the use of client software, but only within Your organization. You may not otherwise distribute the Software, including any modified versions. You may not sublicense any rights under this license and You may not sell copies of the software. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/proprietary-license_620.yml b/src/licensedcode/data/rules/proprietary-license_620.yml deleted file mode 100644 index 8f735a469d0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_620.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/shendurelab/MIPGEN/4d6c342bbf30db99754509935d11bbb9b19c335e/LICENSE.txt -ignorable_emails: - - license@uw.edu diff --git a/src/licensedcode/data/rules/proprietary-license_621.RULE b/src/licensedcode/data/rules/proprietary-license_621.RULE index 2259cb5ba65..f241214eec6 100644 --- a/src/licensedcode/data/rules/proprietary-license_621.RULE +++ b/src/licensedcode/data/rules/proprietary-license_621.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/lightmaster/Meteobridge-Weather34-Template/4d5c5b8bb5c109d0e744a2c549ae1ba90177f43a/license.txt +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Template”), to deal in the Template without restriction, including without limitation the rights to, can use, can not copy without prior permission, can modify for personal use, can use and publish for personal use ,can not distribute without prior permission, can not sublicense without prior permission, and can not sell copies of the Template, and subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Template. diff --git a/src/licensedcode/data/rules/proprietary-license_621.yml b/src/licensedcode/data/rules/proprietary-license_621.yml deleted file mode 100644 index 78888116f69..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_621.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/lightmaster/Meteobridge-Weather34-Template/4d5c5b8bb5c109d0e744a2c549ae1ba90177f43a/license.txt diff --git a/src/licensedcode/data/rules/proprietary-license_622.RULE b/src/licensedcode/data/rules/proprietary-license_622.RULE index d90a79e3b7b..771313cdb8d 100644 --- a/src/licensedcode/data/rules/proprietary-license_622.RULE +++ b/src/licensedcode/data/rules/proprietary-license_622.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/abs0/4.3BSD-Quasijarus/blob/ee478cc61b86227de3c275b2b742d0ccf5e96e46/new/jove/version.c +--- + It is * * provided to you without charge for use only on a licensed Unix * * system. You may copy JOVE provided that this notice is included with * diff --git a/src/licensedcode/data/rules/proprietary-license_622.yml b/src/licensedcode/data/rules/proprietary-license_622.yml deleted file mode 100644 index 99ac59f2178..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_622.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/abs0/4.3BSD-Quasijarus/blob/ee478cc61b86227de3c275b2b742d0ccf5e96e46/new/jove/version.c diff --git a/src/licensedcode/data/rules/proprietary-license_623.RULE b/src/licensedcode/data/rules/proprietary-license_623.RULE index 60eaae7eca4..ce7d3ac4da8 100644 --- a/src/licensedcode/data/rules/proprietary-license_623.RULE +++ b/src/licensedcode/data/rules/proprietary-license_623.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + You may not sell copies \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_623.yml b/src/licensedcode/data/rules/proprietary-license_623.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_623.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_624.RULE b/src/licensedcode/data/rules/proprietary-license_624.RULE index cf942b261f7..3d338032dd3 100644 --- a/src/licensedcode/data/rules/proprietary-license_624.RULE +++ b/src/licensedcode/data/rules/proprietary-license_624.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Permission is hereby NOT GRANTED \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_624.yml b/src/licensedcode/data/rules/proprietary-license_624.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_624.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_625.RULE b/src/licensedcode/data/rules/proprietary-license_625.RULE index bff0922ffaa..3aee1f669b8 100644 --- a/src/licensedcode/data/rules/proprietary-license_625.RULE +++ b/src/licensedcode/data/rules/proprietary-license_625.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + but not sell copies \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_625.yml b/src/licensedcode/data/rules/proprietary-license_625.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_625.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_626.RULE b/src/licensedcode/data/rules/proprietary-license_626.RULE index 70f5fc2bb69..6b2c455f0d7 100644 --- a/src/licensedcode/data/rules/proprietary-license_626.RULE +++ b/src/licensedcode/data/rules/proprietary-license_626.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + can not sell copies \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_626.yml b/src/licensedcode/data/rules/proprietary-license_626.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_626.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_627.RULE b/src/licensedcode/data/rules/proprietary-license_627.RULE index 8d102f0a1dc..acde1a1be28 100644 --- a/src/licensedcode/data/rules/proprietary-license_627.RULE +++ b/src/licensedcode/data/rules/proprietary-license_627.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/HookPub/Discord-Mute-Spoofer/blob/92889396638559e26810cd34518f9e532f032972/LICENSE +--- + Permission is hereby granted free of charge to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software little restriction; including with limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_627.yml b/src/licensedcode/data/rules/proprietary-license_627.yml deleted file mode 100644 index e04b632c7f2..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_627.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/HookPub/Discord-Mute-Spoofer/blob/92889396638559e26810cd34518f9e532f032972/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_628.RULE b/src/licensedcode/data/rules/proprietary-license_628.RULE index 7c4962df365..2106ebdff7a 100644 --- a/src/licensedcode/data/rules/proprietary-license_628.RULE +++ b/src/licensedcode/data/rules/proprietary-license_628.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. +--- + By viewing the contents of this file, you are agreeing to the software license below: Permission is hereby granted, at the cost of thine immortal soul, to any entity, or thought-bearing hallucination, obtaining a copy of this software and associated documentation files (the "Word"), to deal in the Word with some dire, restriction, including with limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Word, and to permit persons to whom the Word is furnished to do so, subject to the following conditions: diff --git a/src/licensedcode/data/rules/proprietary-license_628.yml b/src/licensedcode/data/rules/proprietary-license_628.yml deleted file mode 100644 index e5d4be06b3e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_628.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. diff --git a/src/licensedcode/data/rules/proprietary-license_629.RULE b/src/licensedcode/data/rules/proprietary-license_629.RULE index edff716bbc5..062f34d6db9 100644 --- a/src/licensedcode/data/rules/proprietary-license_629.RULE +++ b/src/licensedcode/data/rules/proprietary-license_629.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/HookPub/HookOSC/blob/964b8650e6f67b8e297b972618b7c0fa85927079/LICENSE +--- + Permission is hereby granted free of charge to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software little restriction; including with limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_629.yml b/src/licensedcode/data/rules/proprietary-license_629.yml deleted file mode 100644 index 0bf9cb7e3e6..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_629.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/HookPub/HookOSC/blob/964b8650e6f67b8e297b972618b7c0fa85927079/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_63.RULE b/src/licensedcode/data/rules/proprietary-license_63.RULE index 06e2d5ac774..6a70e537ceb 100644 --- a/src/licensedcode/data/rules/proprietary-license_63.RULE +++ b/src/licensedcode/data/rules/proprietary-license_63.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + Sage does not charge for use of the Software licensed herein. Charges for any other software or services will be set forth in a separate written agreement between the parties. Software license granted to you herein is contingent upon @@ -51,4 +57,4 @@ support materials furnished by Sage), permanently purge all machine-readable copies of the Software from all computers and storage devices, and to certify to Sage in writing that the foregoing duties have been performed and that you will not in any way use or permit the use of the Software. This Agreement shall be -governed by the laws of the State of California. +governed by the laws of the State of California. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_63.yml b/src/licensedcode/data/rules/proprietary-license_63.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_630.RULE b/src/licensedcode/data/rules/proprietary-license_630.RULE index 3c1a00f6106..ea526438509 100644 --- a/src/licensedcode/data/rules/proprietary-license_630.RULE +++ b/src/licensedcode/data/rules/proprietary-license_630.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/Son0fAnton/automated-payroll/blob/b044a7c52996e081fcc1841d31b944b9549a6b2e/LICENSE#L8 +--- + Permission is hereby not granted, no free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software with restriction, including with limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_630.yml b/src/licensedcode/data/rules/proprietary-license_630.yml deleted file mode 100644 index 84c2fab3510..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_630.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/Son0fAnton/automated-payroll/blob/b044a7c52996e081fcc1841d31b944b9549a6b2e/LICENSE#L8 diff --git a/src/licensedcode/data/rules/proprietary-license_631.RULE b/src/licensedcode/data/rules/proprietary-license_631.RULE index 61d32473a7d..27e7f1aad34 100644 --- a/src/licensedcode/data/rules/proprietary-license_631.RULE +++ b/src/licensedcode/data/rules/proprietary-license_631.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/giposse/SudokuSolver/blob/fa0baffc3e4b5ca57ecd8fb5508041a4ea58723b/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_631.yml b/src/licensedcode/data/rules/proprietary-license_631.yml deleted file mode 100644 index 231bb166bf0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_631.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/giposse/SudokuSolver/blob/fa0baffc3e4b5ca57ecd8fb5508041a4ea58723b/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_632.RULE b/src/licensedcode/data/rules/proprietary-license_632.RULE index a8264e159f9..b25d77c9542 100644 --- a/src/licensedcode/data/rules/proprietary-license_632.RULE +++ b/src/licensedcode/data/rules/proprietary-license_632.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/giposse/SudokuSolver/blob/fa0baffc3e4b5ca57ecd8fb5508041a4ea58723b/LICENSE +--- + Image files included with this software must only be used to build the software and cannot be extracted for other uses. Some of the icons included with this program were downloaded from iconArchive.com and I do not hold any copyright on these. I diff --git a/src/licensedcode/data/rules/proprietary-license_632.yml b/src/licensedcode/data/rules/proprietary-license_632.yml deleted file mode 100644 index 6a33633680b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_632.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/giposse/SudokuSolver/blob/fa0baffc3e4b5ca57ecd8fb5508041a4ea58723b/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_633.RULE b/src/licensedcode/data/rules/proprietary-license_633.RULE index cc44cb2074d..0c9144b3913 100644 --- a/src/licensedcode/data/rules/proprietary-license_633.RULE +++ b/src/licensedcode/data/rules/proprietary-license_633.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/lennhy/newsmap-webapp2/blob/6ac07f5c5495fbcb4f8700af417511c3271b587a/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software with restriction, including with limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_633.yml b/src/licensedcode/data/rules/proprietary-license_633.yml deleted file mode 100644 index 4a664c650a9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_633.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/lennhy/newsmap-webapp2/blob/6ac07f5c5495fbcb4f8700af417511c3271b587a/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_634.RULE b/src/licensedcode/data/rules/proprietary-license_634.RULE index 91b5af3638d..0e43d140c87 100644 --- a/src/licensedcode/data/rules/proprietary-license_634.RULE +++ b/src/licensedcode/data/rules/proprietary-license_634.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: Not the MIT https://github.com/smk78/thincarb/blob/9d3ce615b10405ccc6fa6063b0d2e0f51f41d100/LICENSE.txt +--- + License (adapted MIT License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_634.yml b/src/licensedcode/data/rules/proprietary-license_634.yml deleted file mode 100644 index 9498a4c1caa..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_634.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: Not the MIT https://github.com/smk78/thincarb/blob/9d3ce615b10405ccc6fa6063b0d2e0f51f41d100/LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_635.RULE b/src/licensedcode/data/rules/proprietary-license_635.RULE index afc6c49e946..f82a3d2713e 100644 --- a/src/licensedcode/data/rules/proprietary-license_635.RULE +++ b/src/licensedcode/data/rules/proprietary-license_635.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/smk78/thincarb/blob/9d3ce615b10405ccc6fa6063b0d2e0f51f41d100/LICENSE.txt +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to use, copy, modify, merge, publish, distribute, and/or sublicense, but not sell, diff --git a/src/licensedcode/data/rules/proprietary-license_635.yml b/src/licensedcode/data/rules/proprietary-license_635.yml deleted file mode 100644 index 1aff8077c4c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_635.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/smk78/thincarb/blob/9d3ce615b10405ccc6fa6063b0d2e0f51f41d100/LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_636.RULE b/src/licensedcode/data/rules/proprietary-license_636.RULE index 3dd3cd71d2e..d3b3ee37e41 100644 --- a/src/licensedcode/data/rules/proprietary-license_636.RULE +++ b/src/licensedcode/data/rules/proprietary-license_636.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/eyalbetzalel/pixel-cnn-pp/blob/e75ea1a3b1e12482c37242582d3dd8313f989cdc/license.md +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, but NOT sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/proprietary-license_636.yml b/src/licensedcode/data/rules/proprietary-license_636.yml deleted file mode 100644 index d257d4e19b8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_636.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/eyalbetzalel/pixel-cnn-pp/blob/e75ea1a3b1e12482c37242582d3dd8313f989cdc/license.md diff --git a/src/licensedcode/data/rules/proprietary-license_637.RULE b/src/licensedcode/data/rules/proprietary-license_637.RULE index 4c958b9aecb..1d1a80d4769 100644 --- a/src/licensedcode/data/rules/proprietary-license_637.RULE +++ b/src/licensedcode/data/rules/proprietary-license_637.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/menahishayan/HomeAssistant-Cupertino-Icons/blob/734b65202915e4d2a8a77072d909d8630e027b1c/LICENSE +ignorable_authors: + - Apple's SF Pro Symbols Viewer +--- + Icons included here are only ones that are not explictly marked as 'cannot be modified' by Apple's SF Pro Symbols Viewer v2.0.0 and are provided on an AS IS basis. Usage rights subject diff --git a/src/licensedcode/data/rules/proprietary-license_637.yml b/src/licensedcode/data/rules/proprietary-license_637.yml deleted file mode 100644 index 9360026a4b6..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_637.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/menahishayan/HomeAssistant-Cupertino-Icons/blob/734b65202915e4d2a8a77072d909d8630e027b1c/LICENSE -ignorable_authors: - - Apple's SF Pro Symbols Viewer diff --git a/src/licensedcode/data/rules/proprietary-license_638.RULE b/src/licensedcode/data/rules/proprietary-license_638.RULE index 7ddb7f86a21..a1d70c16c58 100644 --- a/src/licensedcode/data/rules/proprietary-license_638.RULE +++ b/src/licensedcode/data/rules/proprietary-license_638.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/tariqultais/MR.Blood/blob/de6e96b98dbdefb1f8847080c368bd51bb92e397/LICENCE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this Web software and associated documentation files (the "Web Application"), to deal in the Web Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_638.yml b/src/licensedcode/data/rules/proprietary-license_638.yml deleted file mode 100644 index 15dea1c2172..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_638.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/tariqultais/MR.Blood/blob/de6e96b98dbdefb1f8847080c368bd51bb92e397/LICENCE diff --git a/src/licensedcode/data/rules/proprietary-license_639.RULE b/src/licensedcode/data/rules/proprietary-license_639.RULE index 4fcb4b82afe..effea078c7a 100644 --- a/src/licensedcode/data/rules/proprietary-license_639.RULE +++ b/src/licensedcode/data/rules/proprietary-license_639.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. https://github.com/lkankowski/arduino-multi-relay/blob/63f15957c28ebf657145d5f283d0dc2d3b4fcaf7/LICENSE.md +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software, including without limitation the rights to use, copy, modify, merge, publish, distribute, (but NOT sell) copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/proprietary-license_639.yml b/src/licensedcode/data/rules/proprietary-license_639.yml deleted file mode 100644 index a667daaa3f6..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_639.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. https://github.com/lkankowski/arduino-multi-relay/blob/63f15957c28ebf657145d5f283d0dc2d3b4fcaf7/LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_64.RULE b/src/licensedcode/data/rules/proprietary-license_64.RULE index 62fe268718c..1e5850f5e27 100644 --- a/src/licensedcode/data/rules/proprietary-license_64.RULE +++ b/src/licensedcode/data/rules/proprietary-license_64.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Confidential and Proprietary. Do Not Distribute Without Explicit Permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_64.yml b/src/licensedcode/data/rules/proprietary-license_64.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_640.RULE b/src/licensedcode/data/rules/proprietary-license_640.RULE index 7cb37054de7..48d9131e1c7 100644 --- a/src/licensedcode/data/rules/proprietary-license_640.RULE +++ b/src/licensedcode/data/rules/proprietary-license_640.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this Code and associated documentation files, to deal in the code without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, but not sell, copies of the 'Code, diff --git a/src/licensedcode/data/rules/proprietary-license_640.yml b/src/licensedcode/data/rules/proprietary-license_640.yml deleted file mode 100644 index e5d4be06b3e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_640.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. diff --git a/src/licensedcode/data/rules/proprietary-license_641.RULE b/src/licensedcode/data/rules/proprietary-license_641.RULE index 08b3dbfdead..f0949cffb3a 100644 --- a/src/licensedcode/data/rules/proprietary-license_641.RULE +++ b/src/licensedcode/data/rules/proprietary-license_641.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +minimum_coverage: 95 +notes: Based on the MIT with material and problematic changes. Seen in https://github.com/wellnotme/TUSC/blob/0cbe3141a7a879e1b1648e981f04470fc0fd4de3/reshade-shaders/Shaders/FakeMotionBlur.fx#L6 + and a few other places. It says "with restriction including without limitation the rights" + instead of "without restriction including without limitation the rights" in a standard MIT. + Since there is no way to know if this is a bona fide typo or some intentianal change this + is reported as proprietary for now. +--- + * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software with restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/proprietary-license_641.yml b/src/licensedcode/data/rules/proprietary-license_641.yml deleted file mode 100644 index 12ed0d95b03..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_641.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -minimum_coverage: 95 -notes: Based on the MIT with material and problematic changes. Seen in https://github.com/wellnotme/TUSC/blob/0cbe3141a7a879e1b1648e981f04470fc0fd4de3/reshade-shaders/Shaders/FakeMotionBlur.fx#L6 - and a few other places. It says "with restriction including without limitation the rights" - instead of "without restriction including without limitation the rights" in a standard MIT. - Since there is no way to know if this is a bona fide typo or some intentianal change this - is reported as proprietary for now. diff --git a/src/licensedcode/data/rules/proprietary-license_642.RULE b/src/licensedcode/data/rules/proprietary-license_642.RULE index 05141ecd394..d0a1252d8cd 100644 --- a/src/licensedcode/data/rules/proprietary-license_642.RULE +++ b/src/licensedcode/data/rules/proprietary-license_642.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. Seen in https://github.com/Armoured-Egg-Official/SkyblockCF/blob/a3b13448c878bfc7b2df005941c32e198191c0af/LICENSE#L7 + and a few other places. It says "with restriction including without limitation the rights" + instead of "without restriction including without limitation the rights" in a standard MIT. + Since there is no way to know if this is a bona fide typo or some intentianal change this + is reported as proprietary for now. +--- + Permission is hereby granted, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software with restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_642.yml b/src/licensedcode/data/rules/proprietary-license_642.yml deleted file mode 100644 index 50b2a75fd89..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_642.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. Seen in https://github.com/Armoured-Egg-Official/SkyblockCF/blob/a3b13448c878bfc7b2df005941c32e198191c0af/LICENSE#L7 - and a few other places. It says "with restriction including without limitation the rights" - instead of "without restriction including without limitation the rights" in a standard MIT. - Since there is no way to know if this is a bona fide typo or some intentianal change this - is reported as proprietary for now. diff --git a/src/licensedcode/data/rules/proprietary-license_643.RULE b/src/licensedcode/data/rules/proprietary-license_643.RULE index 8fc9d3732ff..c94ce199589 100644 --- a/src/licensedcode/data/rules/proprietary-license_643.RULE +++ b/src/licensedcode/data/rules/proprietary-license_643.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Based on the MIT with material and problematic changes. Seen in https://github.com/abellusc/bloombox-api-legacy + and a few other places. It says "including with limitation the rights" instead of "including + without limitation the rights" in a standard MIT. Since there is no way to know if this + is a bona fide typo or some intentianal change this is reported as proprietary for now. +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including with limitation the rights to use, diff --git a/src/licensedcode/data/rules/proprietary-license_643.yml b/src/licensedcode/data/rules/proprietary-license_643.yml deleted file mode 100644 index f98f7540318..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_643.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Based on the MIT with material and problematic changes. Seen in https://github.com/abellusc/bloombox-api-legacy - and a few other places. It says "including with limitation the rights" instead of "including - without limitation the rights" in a standard MIT. Since there is no way to know if this - is a bona fide typo or some intentianal change this is reported as proprietary for now. diff --git a/src/licensedcode/data/rules/proprietary-license_644.RULE b/src/licensedcode/data/rules/proprietary-license_644.RULE index de7b685b56f..82fb3501115 100644 --- a/src/licensedcode/data/rules/proprietary-license_644.RULE +++ b/src/licensedcode/data/rules/proprietary-license_644.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +minimum_coverage: 90 +notes: This is the license of the version of Linux 0.0.1 http://ftp.funet.fi/pub/linux/historical/kernel/old-versions/RELNOTES-0.01 +ignorable_copyrights: + - (c) 1991 Linus Torvalds +ignorable_holders: + - Linus Torvalds +--- + This kernel is (C) 1991 Linus Torvalds, but all or part of it may be redistributed provided you do the following: diff --git a/src/licensedcode/data/rules/proprietary-license_644.yml b/src/licensedcode/data/rules/proprietary-license_644.yml deleted file mode 100644 index 66ffaa44ed1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_644.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -minimum_coverage: 90 -notes: This is the license of the version of Linux 0.0.1 http://ftp.funet.fi/pub/linux/historical/kernel/old-versions/RELNOTES-0.01 -ignorable_copyrights: - - (c) 1991 Linus Torvalds -ignorable_holders: - - Linus Torvalds diff --git a/src/licensedcode/data/rules/proprietary-license_645.RULE b/src/licensedcode/data/rules/proprietary-license_645.RULE index 76a087cc7b1..aea551c8c5f 100644 --- a/src/licensedcode/data/rules/proprietary-license_645.RULE +++ b/src/licensedcode/data/rules/proprietary-license_645.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/dinamsky/malware-botnets/blob/4cd142d10f971cb93c334b6f48c12c85bcc8f63a/phatbot_alpha1/ago4/doc/templates/.svn/text-base/template_priv.h.svn-base#L5 +--- + This is private software, you may redistribute it under the terms of the APL(Ago's Private License) which follows: diff --git a/src/licensedcode/data/rules/proprietary-license_645.yml b/src/licensedcode/data/rules/proprietary-license_645.yml deleted file mode 100644 index 0a9bead9f67..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_645.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/dinamsky/malware-botnets/blob/4cd142d10f971cb93c334b6f48c12c85bcc8f63a/phatbot_alpha1/ago4/doc/templates/.svn/text-base/template_priv.h.svn-base#L5 diff --git a/src/licensedcode/data/rules/proprietary-license_646.RULE b/src/licensedcode/data/rules/proprietary-license_646.RULE index 2e4ecf73bd5..e431b6729f1 100644 --- a/src/licensedcode/data/rules/proprietary-license_646.RULE +++ b/src/licensedcode/data/rules/proprietary-license_646.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_emails: + - terms@alleninstitute.org +--- + # Allen Institute Software License - This software license is the 2-clause BSD license plus clause a third # clause that prohibits redistribution for commercial purposes without further permission. diff --git a/src/licensedcode/data/rules/proprietary-license_646.yml b/src/licensedcode/data/rules/proprietary-license_646.yml deleted file mode 100644 index 86511c8e6aa..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_646.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_emails: - - terms@alleninstitute.org diff --git a/src/licensedcode/data/rules/proprietary-license_647.RULE b/src/licensedcode/data/rules/proprietary-license_647.RULE index 4901bb7b57e..d231a96e0bc 100644 --- a/src/licensedcode/data/rules/proprietary-license_647.RULE +++ b/src/licensedcode/data/rules/proprietary-license_647.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/krishnaramg3/m/blob/63ec2ac30eb608d6a56321fd99891e7fa84a1479/VirusPack/phatbot_ghetto.v.0.55/.svn/text-base/apl.txt.svn-base#L4 +--- + Ago's Private License 1.0: Redistribution and use in binary forms, with or without modification, diff --git a/src/licensedcode/data/rules/proprietary-license_647.yml b/src/licensedcode/data/rules/proprietary-license_647.yml deleted file mode 100644 index e52b07cceaa..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_647.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/krishnaramg3/m/blob/63ec2ac30eb608d6a56321fd99891e7fa84a1479/VirusPack/phatbot_ghetto.v.0.55/.svn/text-base/apl.txt.svn-base#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_648.RULE b/src/licensedcode/data/rules/proprietary-license_648.RULE index 81cf17c317f..8d651831a46 100644 --- a/src/licensedcode/data/rules/proprietary-license_648.RULE +++ b/src/licensedcode/data/rules/proprietary-license_648.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/krishnaramg3/m/blob/63ec2ac30eb608d6a56321fd99891e7fa84a1479/VirusPack/phatbot_ghetto.v.0.55/.svn/text-base/apl.txt.svn-base#L4 +--- + Redistribution and use in binary forms, with or without modification, are permitted provided that the following conditions are met: 1. The name of the author may not be used to endorse or promote products diff --git a/src/licensedcode/data/rules/proprietary-license_648.yml b/src/licensedcode/data/rules/proprietary-license_648.yml deleted file mode 100644 index e52b07cceaa..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_648.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/krishnaramg3/m/blob/63ec2ac30eb608d6a56321fd99891e7fa84a1479/VirusPack/phatbot_ghetto.v.0.55/.svn/text-base/apl.txt.svn-base#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_649.RULE b/src/licensedcode/data/rules/proprietary-license_649.RULE index e54ed6787a6..ed79d2f73b7 100644 --- a/src/licensedcode/data/rules/proprietary-license_649.RULE +++ b/src/licensedcode/data/rules/proprietary-license_649.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://github.com/kinncj/TH3D-creality-ender-3-pro-ezabl-pro/blob/e9ed707e89de57df107a28124f753d6a6a8a985d/Bed + Level Test STLs/LICENSE.txt#L2 +--- + Redistrubution and modification are not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_649.yml b/src/licensedcode/data/rules/proprietary-license_649.yml deleted file mode 100644 index fe1417e8478..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_649.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://github.com/kinncj/TH3D-creality-ender-3-pro-ezabl-pro/blob/e9ed707e89de57df107a28124f753d6a6a8a985d/Bed - Level Test STLs/LICENSE.txt#L2 diff --git a/src/licensedcode/data/rules/proprietary-license_65.RULE b/src/licensedcode/data/rules/proprietary-license_65.RULE index 9fa82a641c8..6b6ddfabc0c 100644 --- a/src/licensedcode/data/rules/proprietary-license_65.RULE +++ b/src/licensedcode/data/rules/proprietary-license_65.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/Newbe36524/Newbe.Mahua.Framework/master/LICENSE +--- + https://raw.githubusercontent.com/Newbe36524/Newbe.Mahua.Framework/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_65.yml b/src/licensedcode/data/rules/proprietary-license_65.yml deleted file mode 100644 index 0c19b59959a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/Newbe36524/Newbe.Mahua.Framework/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_650.RULE b/src/licensedcode/data/rules/proprietary-license_650.RULE index 501e73d5825..4bbaca17ed6 100644 --- a/src/licensedcode/data/rules/proprietary-license_650.RULE +++ b/src/licensedcode/data/rules/proprietary-license_650.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: https://github.com/kinncj/TH3D-creality-ender-3-pro-ezabl-pro/blob/e9ed707e89de57df107a28124f753d6a6a8a985d/Bed + Level Test STLs/LICENSE.txt#L2 +--- + Redistribution and modification are not permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_650.yml b/src/licensedcode/data/rules/proprietary-license_650.yml deleted file mode 100644 index fe1417e8478..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_650.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: https://github.com/kinncj/TH3D-creality-ender-3-pro-ezabl-pro/blob/e9ed707e89de57df107a28124f753d6a6a8a985d/Bed - Level Test STLs/LICENSE.txt#L2 diff --git a/src/licensedcode/data/rules/proprietary-license_651.RULE b/src/licensedcode/data/rules/proprietary-license_651.RULE index 4e3542f1cda..e6fa79a77b4 100644 --- a/src/licensedcode/data/rules/proprietary-license_651.RULE +++ b/src/licensedcode/data/rules/proprietary-license_651.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/kokolanako/gruppe03-largescale-project/blob/c4f3ed1f292e8bd80c8562ca0903f2301c68285b/src/main/test/FileHandlerTest.java#L4 +--- + * Modification, redistribution and use in source and binary * forms, with or without modification, are not permitted * without prior written approval by the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_651.yml b/src/licensedcode/data/rules/proprietary-license_651.yml deleted file mode 100644 index 981ac3facae..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_651.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/kokolanako/gruppe03-largescale-project/blob/c4f3ed1f292e8bd80c8562ca0903f2301c68285b/src/main/test/FileHandlerTest.java#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_652.RULE b/src/licensedcode/data/rules/proprietary-license_652.RULE index fd434d8ed6b..d0f15a07ef8 100644 --- a/src/licensedcode/data/rules/proprietary-license_652.RULE +++ b/src/licensedcode/data/rules/proprietary-license_652.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/xiaojian521/AndroidProject/blob/72b234d8681698cfe1c9ff10ec7be278788e6d94/jni_static-register/VR_EngineFactory.h#L5 +--- + * Redistribution and use in source and binary forms, with or without * modification, are NOT permitted except as agreed by * diff --git a/src/licensedcode/data/rules/proprietary-license_652.yml b/src/licensedcode/data/rules/proprietary-license_652.yml deleted file mode 100644 index 060cd03ad2f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_652.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/xiaojian521/AndroidProject/blob/72b234d8681698cfe1c9ff10ec7be278788e6d94/jni_static-register/VR_EngineFactory.h#L5 diff --git a/src/licensedcode/data/rules/proprietary-license_653.RULE b/src/licensedcode/data/rules/proprietary-license_653.RULE index bad2156b087..66f98e37f9f 100644 --- a/src/licensedcode/data/rules/proprietary-license_653.RULE +++ b/src/licensedcode/data/rules/proprietary-license_653.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/bwnyasse/led/blob/22d109b73bbc33ef90dc0a71c76ce0d446cfadd3/ui/lib/components/route_components/route_logs_cmp.dart#L4 +--- + * REDISTRIBUTION AND USE IN SOURCE AND BINARY FORMS, * WITH OR WITHOUT MODIFICATION, ARE NOT PERMITTED. * diff --git a/src/licensedcode/data/rules/proprietary-license_653.yml b/src/licensedcode/data/rules/proprietary-license_653.yml deleted file mode 100644 index 6c0d46cb386..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_653.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/bwnyasse/led/blob/22d109b73bbc33ef90dc0a71c76ce0d446cfadd3/ui/lib/components/route_components/route_logs_cmp.dart#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_654.RULE b/src/licensedcode/data/rules/proprietary-license_654.RULE index 48646872ec0..afa6bc3b660 100644 --- a/src/licensedcode/data/rules/proprietary-license_654.RULE +++ b/src/licensedcode/data/rules/proprietary-license_654.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/bidorbuy/magento/blob/59f40b6ccda69cac2c103339ffd21d7dc32f5735/lib/Bidorbuy/vendor/com.extremeidea.bidorbuy/storeintegrator-core/core/http/Request.php#L10 +--- + * This software is the proprietary information of * * All Rights Reserved. diff --git a/src/licensedcode/data/rules/proprietary-license_654.yml b/src/licensedcode/data/rules/proprietary-license_654.yml deleted file mode 100644 index a84eaeab4e5..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_654.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/bidorbuy/magento/blob/59f40b6ccda69cac2c103339ffd21d7dc32f5735/lib/Bidorbuy/vendor/com.extremeidea.bidorbuy/storeintegrator-core/core/http/Request.php#L10 diff --git a/src/licensedcode/data/rules/proprietary-license_655.RULE b/src/licensedcode/data/rules/proprietary-license_655.RULE index f73fd633f7d..27c5ab0d185 100644 --- a/src/licensedcode/data/rules/proprietary-license_655.RULE +++ b/src/licensedcode/data/rules/proprietary-license_655.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Redistribution and use in source and binary forms, with or without modification, are not permitted by anyone other \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_655.yml b/src/licensedcode/data/rules/proprietary-license_655.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_655.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_656.RULE b/src/licensedcode/data/rules/proprietary-license_656.RULE index a4d7ba725fe..fde981b90fb 100644 --- a/src/licensedcode/data/rules/proprietary-license_656.RULE +++ b/src/licensedcode/data/rules/proprietary-license_656.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/kissarat/pin/blob/4f15b551a00426813af96888b65463cb205d08af/LICENSE.md#L4 +--- + Redistribution and use in source and binary forms, with or without modification, are not permitted unless explicitly stated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_656.yml b/src/licensedcode/data/rules/proprietary-license_656.yml deleted file mode 100644 index 56aa7a945a3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_656.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/kissarat/pin/blob/4f15b551a00426813af96888b65463cb205d08af/LICENSE.md#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_657.RULE b/src/licensedcode/data/rules/proprietary-license_657.RULE index 1ee61f6b488..354758b6fd8 100644 --- a/src/licensedcode/data/rules/proprietary-license_657.RULE +++ b/src/licensedcode/data/rules/proprietary-license_657.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/mwaylabs/relution-livedata-sample-chat/blob/abc149f1524b97fbf3940980ee8ae30d3225d3e7/client/www/scripts/app.js#L14 +--- + * Redistribution and use in source and binary forms, with or without * modification, are not permitted. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS diff --git a/src/licensedcode/data/rules/proprietary-license_657.yml b/src/licensedcode/data/rules/proprietary-license_657.yml deleted file mode 100644 index 6dd05f397b8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_657.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/mwaylabs/relution-livedata-sample-chat/blob/abc149f1524b97fbf3940980ee8ae30d3225d3e7/client/www/scripts/app.js#L14 diff --git a/src/licensedcode/data/rules/proprietary-license_658.RULE b/src/licensedcode/data/rules/proprietary-license_658.RULE index 7b2ad7fe6d8..501d7e48697 100644 --- a/src/licensedcode/data/rules/proprietary-license_658.RULE +++ b/src/licensedcode/data/rules/proprietary-license_658.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2018, 1-sim.aero +ignorable_holders: + - 1-sim.aero +--- + Redistribution in source and binary forms, with or without modification, are not permitted. The use of this code in course or binary form is permitted under the following conditions: 1. The copyright holders have been notified of the use of SASL in a commercial project, diff --git a/src/licensedcode/data/rules/proprietary-license_658.yml b/src/licensedcode/data/rules/proprietary-license_658.yml deleted file mode 100644 index 4495343239b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_658.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2018, 1-sim.aero -ignorable_holders: - - 1-sim.aero diff --git a/src/licensedcode/data/rules/proprietary-license_659.RULE b/src/licensedcode/data/rules/proprietary-license_659.RULE index 6f6055fdd2b..e4f2c61d6a4 100644 --- a/src/licensedcode/data/rules/proprietary-license_659.RULE +++ b/src/licensedcode/data/rules/proprietary-license_659.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/Chai112/Boeing-777-300ER/blob/c6328820eaf82433ea09796bf6de73fb47e6c3f4/src/base/B777-300ER/plugins/SASLFree/License#L20 +--- + library is proprietary software. Proprietary software is computer software licensed under exclusive legal right of the copyright holder. diff --git a/src/licensedcode/data/rules/proprietary-license_659.yml b/src/licensedcode/data/rules/proprietary-license_659.yml deleted file mode 100644 index c91e18ad8d9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_659.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/Chai112/Boeing-777-300ER/blob/c6328820eaf82433ea09796bf6de73fb47e6c3f4/src/base/B777-300ER/plugins/SASLFree/License#L20 diff --git a/src/licensedcode/data/rules/proprietary-license_66.RULE b/src/licensedcode/data/rules/proprietary-license_66.RULE index 05f6226409d..e4e4b218ec5 100644 --- a/src/licensedcode/data/rules/proprietary-license_66.RULE +++ b/src/licensedcode/data/rules/proprietary-license_66.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + // * This software is furnished under a license and may be used and copied * // * only in accordance with the terms of such license and with the * // * inclusion of the above copyright notice. This software or any other * diff --git a/src/licensedcode/data/rules/proprietary-license_66.yml b/src/licensedcode/data/rules/proprietary-license_66.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_660.RULE b/src/licensedcode/data/rules/proprietary-license_660.RULE index 00f9613c62c..4b70df4ae5e 100644 --- a/src/licensedcode/data/rules/proprietary-license_660.RULE +++ b/src/licensedcode/data/rules/proprietary-license_660.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + * NOTICE: All information contained herein is, and remains the property * of . Unauthorised copying of this file, via any medium is * strictly prohibited. Redistribution and use in source and binary forms, diff --git a/src/licensedcode/data/rules/proprietary-license_660.yml b/src/licensedcode/data/rules/proprietary-license_660.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_660.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_661.RULE b/src/licensedcode/data/rules/proprietary-license_661.RULE index 12173407c59..d79f6350e37 100644 --- a/src/licensedcode/data/rules/proprietary-license_661.RULE +++ b/src/licensedcode/data/rules/proprietary-license_661.RULE @@ -1,2 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Seen in https://source.chromium.org/chromium/chromium/src/+/main:third_party/fft2d/LICENSE + and http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html Redistribution does not allow modification, + in contrast with the notice from the website, so this is a proprietary-license license. +--- + You may use, copy, modify this code for any purpose and without fee. You may distribute this ORIGINAL package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_661.yml b/src/licensedcode/data/rules/proprietary-license_661.yml deleted file mode 100644 index a07044b6b82..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_661.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Seen in https://source.chromium.org/chromium/chromium/src/+/main:third_party/fft2d/LICENSE - and http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html Redistribution does not allow modification, - in contrast with the notice from the website, so this is a proprietary-license license. diff --git a/src/licensedcode/data/rules/proprietary-license_662.RULE b/src/licensedcode/data/rules/proprietary-license_662.RULE index 6dca52de30e..5172ee4eb2b 100644 --- a/src/licensedcode/data/rules/proprietary-license_662.RULE +++ b/src/licensedcode/data/rules/proprietary-license_662.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Seen in https://source.chromium.org/chromium/chromium/src/+/main:third_party/fft2d/LICENSE + and http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html Redistribution does not allow modification, + in contrast with the notice from the website, so this is a proprietary-license license. +ignorable_urls: + - http://momonga.t.u-tokyo.ac.jp/~ooura/fft.html +--- + download: http://momonga.t.u-tokyo.ac.jp/~ooura/fft.html You may use, copy, modify this code for any purpose and without fee. You may distribute this ORIGINAL package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_662.yml b/src/licensedcode/data/rules/proprietary-license_662.yml deleted file mode 100644 index 2b2e6d5dd6b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_662.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Seen in https://source.chromium.org/chromium/chromium/src/+/main:third_party/fft2d/LICENSE - and http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html Redistribution does not allow modification, - in contrast with the notice from the website, so this is a proprietary-license license. -ignorable_urls: - - http://momonga.t.u-tokyo.ac.jp/~ooura/fft.html diff --git a/src/licensedcode/data/rules/proprietary-license_663.RULE b/src/licensedcode/data/rules/proprietary-license_663.RULE index c89fc6c878b..7f1fb956c5c 100644 --- a/src/licensedcode/data/rules/proprietary-license_663.RULE +++ b/src/licensedcode/data/rules/proprietary-license_663.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_authors: + - MediaTek Inc. +--- + This software/firmware and related documentation ("MediaTek Software") are protected under relevant copyright laws. The information contained herein is confidential and proprietary to MediaTek Inc. and/or its licensors. diff --git a/src/licensedcode/data/rules/proprietary-license_663.yml b/src/licensedcode/data/rules/proprietary-license_663.yml deleted file mode 100644 index f641f4ba785..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_663.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_authors: - - MediaTek Inc. diff --git a/src/licensedcode/data/rules/proprietary-license_664.RULE b/src/licensedcode/data/rules/proprietary-license_664.RULE index b02940dce1e..051b2a81077 100644 --- a/src/licensedcode/data/rules/proprietary-license_664.RULE +++ b/src/licensedcode/data/rules/proprietary-license_664.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + code is copyright protected \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_664.yml b/src/licensedcode/data/rules/proprietary-license_664.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_664.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_665.RULE b/src/licensedcode/data/rules/proprietary-license_665.RULE index 5e51107206c..98433bc2591 100644 --- a/src/licensedcode/data/rules/proprietary-license_665.RULE +++ b/src/licensedcode/data/rules/proprietary-license_665.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://github.com/neuromancer/avp/blob/master/LICENSE +--- + is provided as is with no warranty for its suitability for use. You may not use this source code in full or in part for commercial purposes. Any use must include a clearly visible credit to as the creators and owners, and diff --git a/src/licensedcode/data/rules/proprietary-license_665.yml b/src/licensedcode/data/rules/proprietary-license_665.yml deleted file mode 100644 index b48ac7b53ff..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_665.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://github.com/neuromancer/avp/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_666.RULE b/src/licensedcode/data/rules/proprietary-license_666.RULE index 5e969eef491..adcdc727a1c 100644 --- a/src/licensedcode/data/rules/proprietary-license_666.RULE +++ b/src/licensedcode/data/rules/proprietary-license_666.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - https://aws.amazon.com/agreement + - https://aws.amazon.com/service-terms +--- + The Amazon Lumberyard engine, integrated development environment, and related assets and tools included in this distribution are licensed as "Lumberyard Materials" under the terms and conditions of the AWS Customer diff --git a/src/licensedcode/data/rules/proprietary-license_666.yml b/src/licensedcode/data/rules/proprietary-license_666.yml deleted file mode 100644 index 0bfc22f3e09..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_666.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - https://aws.amazon.com/agreement - - https://aws.amazon.com/service-terms diff --git a/src/licensedcode/data/rules/proprietary-license_667.RULE b/src/licensedcode/data/rules/proprietary-license_667.RULE index 3d5d63c7acd..7656a8a263e 100644 --- a/src/licensedcode/data/rules/proprietary-license_667.RULE +++ b/src/licensedcode/data/rules/proprietary-license_667.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.twitch.tv/p/api_terms_of_service + - http://www.twitch.tv/p/terms_of_service +--- + By using the Twitch API you agree to the Twitch API Terms of Service posted at http://www.twitch.tv/p/api_terms_of_service and the Twitch Terms of Service posted at http://www.twitch.tv/p/terms_of_service. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_667.yml b/src/licensedcode/data/rules/proprietary-license_667.yml deleted file mode 100644 index 6403a741b39..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_667.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.twitch.tv/p/api_terms_of_service - - http://www.twitch.tv/p/terms_of_service diff --git a/src/licensedcode/data/rules/proprietary-license_668.RULE b/src/licensedcode/data/rules/proprietary-license_668.RULE index 24e6f7f325f..e577a243021 100644 --- a/src/licensedcode/data/rules/proprietary-license_668.RULE +++ b/src/licensedcode/data/rules/proprietary-license_668.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://github.com/quantstamp/universal-solc-compiler/blob/3db311baf856044ffce07850338b3ef9db980db8/src/usolc/usolc.py +--- + This content shall not be used, copied, modified, redistributed, or otherwise disseminated except to the extent expressly authorized by \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_668.yml b/src/licensedcode/data/rules/proprietary-license_668.yml deleted file mode 100644 index 13d9f1f7834..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_668.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://github.com/quantstamp/universal-solc-compiler/blob/3db311baf856044ffce07850338b3ef9db980db8/src/usolc/usolc.py diff --git a/src/licensedcode/data/rules/proprietary-license_669.RULE b/src/licensedcode/data/rules/proprietary-license_669.RULE index 972462bfdc9..3e105a84b41 100644 --- a/src/licensedcode/data/rules/proprietary-license_669.RULE +++ b/src/licensedcode/data/rules/proprietary-license_669.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e8d241491086e89ad0/SharkBayRcPkg/Include/Guid/NvidiaAcpiTablePchGuid.h#L4 +--- + // This file contains 'Framework Code' and is licensed as such // under the terms of your license agreement with Intel or your // vendor. This file may not be modified, except as allowed by diff --git a/src/licensedcode/data/rules/proprietary-license_669.yml b/src/licensedcode/data/rules/proprietary-license_669.yml deleted file mode 100644 index 90a575e8194..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_669.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e8d241491086e89ad0/SharkBayRcPkg/Include/Guid/NvidiaAcpiTablePchGuid.h#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_67.RULE b/src/licensedcode/data/rules/proprietary-license_67.RULE index 49059c16fb4..ecb636ab85b 100644 --- a/src/licensedcode/data/rules/proprietary-license_67.RULE +++ b/src/licensedcode/data/rules/proprietary-license_67.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + GLWTS(Good Luck With That Shit) Public License Copyright (c) Every-fucking-one, except the Author diff --git a/src/licensedcode/data/rules/proprietary-license_67.yml b/src/licensedcode/data/rules/proprietary-license_67.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_670.RULE b/src/licensedcode/data/rules/proprietary-license_670.RULE index 452166d51b8..cf567bbaa3d 100644 --- a/src/licensedcode/data/rules/proprietary-license_670.RULE +++ b/src/licensedcode/data/rules/proprietary-license_670.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e8d241491086e89ad0/SharkBayRcPkg/Include/Guid/NvidiaAcpiTablePchGuid.h#L4 +--- + This software and associated documentation (if any) is furnished under a license and may only be used or copied in accordance with the terms of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_670.yml b/src/licensedcode/data/rules/proprietary-license_670.yml deleted file mode 100644 index 90a575e8194..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_670.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e8d241491086e89ad0/SharkBayRcPkg/Include/Guid/NvidiaAcpiTablePchGuid.h#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_671.RULE b/src/licensedcode/data/rules/proprietary-license_671.RULE index b0fcdd6b602..d4b7eeb00da 100644 --- a/src/licensedcode/data/rules/proprietary-license_671.RULE +++ b/src/licensedcode/data/rules/proprietary-license_671.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e8d241491086e89ad0/SharkBayRcPkg/Include/Guid/NvidiaAcpiTablePchGuid.h#L4 +--- + This software and associated documentation (if any) is furnished under a license and may only be used or copied in accordance with the terms of the license. Except as permitted by such diff --git a/src/licensedcode/data/rules/proprietary-license_671.yml b/src/licensedcode/data/rules/proprietary-license_671.yml deleted file mode 100644 index 90a575e8194..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_671.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e8d241491086e89ad0/SharkBayRcPkg/Include/Guid/NvidiaAcpiTablePchGuid.h#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_672.RULE b/src/licensedcode/data/rules/proprietary-license_672.RULE index 8f7668537df..1c560107a18 100644 --- a/src/licensedcode/data/rules/proprietary-license_672.RULE +++ b/src/licensedcode/data/rules/proprietary-license_672.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e8d241491086e89ad0/SharkBayRcPkg/Include/Guid/NvidiaAcpiTablePchGuid.h#L4 +--- + Except as permitted by such license, no part of this software or documentation may be reproduced, stored in a retrieval system, or transmitted in any diff --git a/src/licensedcode/data/rules/proprietary-license_672.yml b/src/licensedcode/data/rules/proprietary-license_672.yml deleted file mode 100644 index 90a575e8194..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_672.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e8d241491086e89ad0/SharkBayRcPkg/Include/Guid/NvidiaAcpiTablePchGuid.h#L4 diff --git a/src/licensedcode/data/rules/proprietary-license_673.RULE b/src/licensedcode/data/rules/proprietary-license_673.RULE index 2443239fa91..a6f12d8fb52 100644 --- a/src/licensedcode/data/rules/proprietary-license_673.RULE +++ b/src/licensedcode/data/rules/proprietary-license_673.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: This would may be deserve it's own license. Not clear if this is a license or just a + statement of copyright style as it is most often coming with anothe FOSS license +--- + covered under Crown Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_673.yml b/src/licensedcode/data/rules/proprietary-license_673.yml deleted file mode 100644 index 076713a7c5a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_673.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: This would may be deserve it's own license. Not clear if this is a license or just a - statement of copyright style as it is most often coming with anothe FOSS license diff --git a/src/licensedcode/data/rules/proprietary-license_674.RULE b/src/licensedcode/data/rules/proprietary-license_674.RULE index 3cb1e4aceee..f3e49d77083 100644 --- a/src/licensedcode/data/rules/proprietary-license_674.RULE +++ b/src/licensedcode/data/rules/proprietary-license_674.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: This would may be deserve it's own license. Not clear if this is a license or just a + statement of copyright style as it is most often coming with anothe FOSS license +--- + under Crown Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_674.yml b/src/licensedcode/data/rules/proprietary-license_674.yml deleted file mode 100644 index 076713a7c5a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_674.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: This would may be deserve it's own license. Not clear if this is a license or just a - statement of copyright style as it is most often coming with anothe FOSS license diff --git a/src/licensedcode/data/rules/proprietary-license_675.RULE b/src/licensedcode/data/rules/proprietary-license_675.RULE index 34e572fb9b1..e6a45202ae8 100644 --- a/src/licensedcode/data/rules/proprietary-license_675.RULE +++ b/src/licensedcode/data/rules/proprietary-license_675.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: This would may be deserve it's own license. Not clear if this is a license or just a + statement of copyright style as it is most often coming with anothe FOSS license +--- + Crown Copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_675.yml b/src/licensedcode/data/rules/proprietary-license_675.yml deleted file mode 100644 index 076713a7c5a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_675.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: This would may be deserve it's own license. Not clear if this is a license or just a - statement of copyright style as it is most often coming with anothe FOSS license diff --git a/src/licensedcode/data/rules/proprietary-license_676.RULE b/src/licensedcode/data/rules/proprietary-license_676.RULE index 9a92e6b8ce8..6f7a13938d2 100644 --- a/src/licensedcode/data/rules/proprietary-license_676.RULE +++ b/src/licensedcode/data/rules/proprietary-license_676.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: Since this MIT rider is not clear, this is detected as proprietary for now See https://github.com/opengovsg/FormSG/blob/dbcb0f96c645a95976e69b4eb6ba11b85915bdd5/LICENSE.md +--- + Except for any logos, trade marks, service marks, names, insignias, emblems, the Singapore state crest and Singapore national coat of arms, and/or any other graphic, image or sound which is used to identify any Singapore public sector agency or is associated with any Singapore public sector agency, or which belongs to a third party such as Inc., and/or any asset or code identified by the Government Technology Agency (“GovTech”) as not licensed to you (such identification may come in the form of a filename labelled with “restricted” or similar phrasing), the contents of this repository are provided under the MIT License SUBJECT FURTHER TO THE FOLLOWING: (1) The MIT License and the terms herein (collectively, the “Terms”) shall be governed by the laws of Singapore. Any dispute arising out of or in connection with the Terms, including any question regarding its existence, validity or termination, shall be referred to and finally resolved by arbitration administered by the Singapore International Arbitration Centre (“SIAC”) in accordance with the Arbitration Rules of the Singapore International Arbitration Centre (“SIAC Rules”) for the time being in force, which rules are deemed to be incorporated by reference in this clause. The seat of arbitration shall be Singapore. The Tribunal shall consist of one (1) arbitrator. The language of the arbitration shall be English. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_676.yml b/src/licensedcode/data/rules/proprietary-license_676.yml deleted file mode 100644 index 1da9c279c6f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_676.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: Since this MIT rider is not clear, this is detected as proprietary for now See https://github.com/opengovsg/FormSG/blob/dbcb0f96c645a95976e69b4eb6ba11b85915bdd5/LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_677.RULE b/src/licensedcode/data/rules/proprietary-license_677.RULE index bfc8d516dc7..c15f13d3e36 100644 --- a/src/licensedcode/data/rules/proprietary-license_677.RULE +++ b/src/licensedcode/data/rules/proprietary-license_677.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: See https://raw.githubusercontent.com/mypdns/matrix/master/LICENSE +--- + NON CORMERCIAL USAGE WITHOUT CONTRIBUTING WITH GOLD \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_677.yml b/src/licensedcode/data/rules/proprietary-license_677.yml deleted file mode 100644 index 28a3ff6f32b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_677.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: See https://raw.githubusercontent.com/mypdns/matrix/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_678.RULE b/src/licensedcode/data/rules/proprietary-license_678.RULE index e46a4cd7abb..e97cd268156 100644 --- a/src/licensedcode/data/rules/proprietary-license_678.RULE +++ b/src/licensedcode/data/rules/proprietary-license_678.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: See https://raw.githubusercontent.com/mypdns/matrix/master/LICENSE +--- + This software and derivatives may be used for commercial purposes \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_678.yml b/src/licensedcode/data/rules/proprietary-license_678.yml deleted file mode 100644 index fa3eba4e3f3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_678.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: See https://raw.githubusercontent.com/mypdns/matrix/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_679.RULE b/src/licensedcode/data/rules/proprietary-license_679.RULE index 9444702d00c..7a1b6fc9c72 100644 --- a/src/licensedcode/data/rules/proprietary-license_679.RULE +++ b/src/licensedcode/data/rules/proprietary-license_679.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: See https://raw.githubusercontent.com/mypdns/matrix/master/LICENSE +--- + Permissions of this strongest copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights. When a modified version is used to provide a service over a network, the complete source code of the modified version must be made available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_679.yml b/src/licensedcode/data/rules/proprietary-license_679.yml deleted file mode 100644 index 31d344c958a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_679.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: See https://raw.githubusercontent.com/mypdns/matrix/master/LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_68.RULE b/src/licensedcode/data/rules/proprietary-license_68.RULE index f4b4d03c27c..3fa34fd5fa9 100644 --- a/src/licensedcode/data/rules/proprietary-license_68.RULE +++ b/src/licensedcode/data/rules/proprietary-license_68.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + 1. “Software” means the above-identified software that National Instruments Corporation or any of its subsidiaries provides with this Software License, whether in source code or object code form. The term “Software” does not include @@ -56,4 +62,4 @@ any distribution is under a license identical to this Software License 6. The copyright holders reserve all of their rights. Except for the nonexclusive licenses expressly granted in section 3 or 4, as applicable, no rights or licenses -are granted expressly, by implication, or otherwise. +are granted expressly, by implication, or otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_68.yml b/src/licensedcode/data/rules/proprietary-license_68.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_680.RULE b/src/licensedcode/data/rules/proprietary-license_680.RULE index aca10f162e3..879f620686e 100644 --- a/src/licensedcode/data/rules/proprietary-license_680.RULE +++ b/src/licensedcode/data/rules/proprietary-license_680.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: https://www.activevb.de/cgi-bin/tippupload/show/276/Erweiterbarer_Playlistparser +--- + ActiveVB Free License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_680.yml b/src/licensedcode/data/rules/proprietary-license_680.yml deleted file mode 100644 index 336fd6c279e..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_680.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: https://www.activevb.de/cgi-bin/tippupload/show/276/Erweiterbarer_Playlistparser diff --git a/src/licensedcode/data/rules/proprietary-license_681.RULE b/src/licensedcode/data/rules/proprietary-license_681.RULE index 42ca6789a15..b977f045138 100644 --- a/src/licensedcode/data/rules/proprietary-license_681.RULE +++ b/src/licensedcode/data/rules/proprietary-license_681.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://www.activevb.de/cgi-bin/tippupload/show/276/Erweiterbarer_Playlistparser in_German. +ignorable_urls: + - http://www.activevb.de/ +--- + 'Dieser Source stammt von http://www.activevb.de 'und kann frei verwendet werden. Für eventuelle Schäden 'wird nicht gehaftet. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_681.yml b/src/licensedcode/data/rules/proprietary-license_681.yml deleted file mode 100644 index 8ad5e0a0ef8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_681.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://www.activevb.de/cgi-bin/tippupload/show/276/Erweiterbarer_Playlistparser in_German. -ignorable_urls: - - http://www.activevb.de/ diff --git a/src/licensedcode/data/rules/proprietary-license_682.RULE b/src/licensedcode/data/rules/proprietary-license_682.RULE index c965b6b5de2..6349f695eba 100644 --- a/src/licensedcode/data/rules/proprietary-license_682.RULE +++ b/src/licensedcode/data/rules/proprietary-license_682.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: http://vbnet.mvps.org/index.html?code/fileapi/filesearchinfo.htm +--- + Some pages may also contain other copyrights by the author. Distribution: You can freely use this code in your own applications, but you may not reproduce diff --git a/src/licensedcode/data/rules/proprietary-license_682.yml b/src/licensedcode/data/rules/proprietary-license_682.yml deleted file mode 100644 index 01581b055f0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_682.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: http://vbnet.mvps.org/index.html?code/fileapi/filesearchinfo.htm diff --git a/src/licensedcode/data/rules/proprietary-license_683.RULE b/src/licensedcode/data/rules/proprietary-license_683.RULE index f7087dbf27a..32e36dd3bae 100644 --- a/src/licensedcode/data/rules/proprietary-license_683.RULE +++ b/src/licensedcode/data/rules/proprietary-license_683.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: http://vbnet.mvps.org/index.html?code/fileapi/filesearchinfo.htm +--- + Distribution: You can freely use this code in your own applications, but you may not reproduce or publish this code on any web site, diff --git a/src/licensedcode/data/rules/proprietary-license_683.yml b/src/licensedcode/data/rules/proprietary-license_683.yml deleted file mode 100644 index 01581b055f0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_683.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: http://vbnet.mvps.org/index.html?code/fileapi/filesearchinfo.htm diff --git a/src/licensedcode/data/rules/proprietary-license_684.RULE b/src/licensedcode/data/rules/proprietary-license_684.RULE index 1d29e5756d6..ed4f6e24732 100644 --- a/src/licensedcode/data/rules/proprietary-license_684.RULE +++ b/src/licensedcode/data/rules/proprietary-license_684.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 90 +notes: See https://www.codeproject.com/script/Content/ViewAssociatedFile.aspx?rzp=%2FKB%2Fdatabase%2Fodbcrecordset%2Fodbcrecordset.zip&zep=ODBCRecordset.cpp&obid=473&obtid=2&ovid=1 + This is very similar to the chris-maunder license. +--- + This code may be used in compiled form in any way you desire. This file may be redistributed unmodified by any means PROVIDING it is not sold for profit without the authors written consent, and providing that this diff --git a/src/licensedcode/data/rules/proprietary-license_684.yml b/src/licensedcode/data/rules/proprietary-license_684.yml deleted file mode 100644 index 0ea2e39525d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_684.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 90 -notes: See https://www.codeproject.com/script/Content/ViewAssociatedFile.aspx?rzp=%2FKB%2Fdatabase%2Fodbcrecordset%2Fodbcrecordset.zip&zep=ODBCRecordset.cpp&obid=473&obtid=2&ovid=1 - This is very similar to the chris-maunder license. diff --git a/src/licensedcode/data/rules/proprietary-license_685.RULE b/src/licensedcode/data/rules/proprietary-license_685.RULE index c47ddf2b444..8bed460ae45 100644 --- a/src/licensedcode/data/rules/proprietary-license_685.RULE +++ b/src/licensedcode/data/rules/proprietary-license_685.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Seen at https://web.archive.org/web/20010201215800/http://home.att.net/~daffy-duck/fonts/fonts.htm +--- + You can use it for most personal or business uses you'd like, and I ask for no money. I would, however, like to hear from you. If you use my fonts for diff --git a/src/licensedcode/data/rules/proprietary-license_685.yml b/src/licensedcode/data/rules/proprietary-license_685.yml deleted file mode 100644 index 113fdf1d6fa..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_685.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Seen at https://web.archive.org/web/20010201215800/http://home.att.net/~daffy-duck/fonts/fonts.htm diff --git a/src/licensedcode/data/rules/proprietary-license_686.RULE b/src/licensedcode/data/rules/proprietary-license_686.RULE index ce76926d1dc..e403edfd5a2 100644 --- a/src/licensedcode/data/rules/proprietary-license_686.RULE +++ b/src/licensedcode/data/rules/proprietary-license_686.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://www.coresecurity.com/core-labs/advisories/filename-pseudonyms-vulnerabilities +--- + may be distributed freely provided that no fee is charged for this distribution and proper credit is given. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_686.yml b/src/licensedcode/data/rules/proprietary-license_686.yml deleted file mode 100644 index 23e0107d34c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_686.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://www.coresecurity.com/core-labs/advisories/filename-pseudonyms-vulnerabilities diff --git a/src/licensedcode/data/rules/proprietary-license_687.RULE b/src/licensedcode/data/rules/proprietary-license_687.RULE index b45e05a74e6..7299598f9f9 100644 --- a/src/licensedcode/data/rules/proprietary-license_687.RULE +++ b/src/licensedcode/data/rules/proprietary-license_687.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This unpublished material is proprietary to Corp. All rights reserved. The methods and techniques described herein are considered trade secrets and/or confidential. Reproduction or distribution, diff --git a/src/licensedcode/data/rules/proprietary-license_687.yml b/src/licensedcode/data/rules/proprietary-license_687.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_687.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_688.RULE b/src/licensedcode/data/rules/proprietary-license_688.RULE index dcf6caf73a0..e54f48789d0 100644 --- a/src/licensedcode/data/rules/proprietary-license_688.RULE +++ b/src/licensedcode/data/rules/proprietary-license_688.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 80 +notes: Seen in http://mindprod.com/contact/nonmil.html +--- + non-military \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_688.yml b/src/licensedcode/data/rules/proprietary-license_688.yml deleted file mode 100644 index 3293e21de6f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_688.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 80 -notes: Seen in http://mindprod.com/contact/nonmil.html diff --git a/src/licensedcode/data/rules/proprietary-license_689.RULE b/src/licensedcode/data/rules/proprietary-license_689.RULE index 418214abf3c..474c0fa0b20 100644 --- a/src/licensedcode/data/rules/proprietary-license_689.RULE +++ b/src/licensedcode/data/rules/proprietary-license_689.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: http://mindprod.com/contact/nonmil.html This comes with non-military restriction +ignorable_urls: + - http://mindprod.com/contact/nonmil.html +--- + Full source included. You may even include the source code, modified or unmodified in free/commercial open source/proprietary programs that you write and distribute. diff --git a/src/licensedcode/data/rules/proprietary-license_689.yml b/src/licensedcode/data/rules/proprietary-license_689.yml deleted file mode 100644 index c93d8f06e39..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_689.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: http://mindprod.com/contact/nonmil.html This comes with non-military restriction -ignorable_urls: - - http://mindprod.com/contact/nonmil.html diff --git a/src/licensedcode/data/rules/proprietary-license_69.RULE b/src/licensedcode/data/rules/proprietary-license_69.RULE index 70ce7d5b129..8aab974b6de 100644 --- a/src/licensedcode/data/rules/proprietary-license_69.RULE +++ b/src/licensedcode/data/rules/proprietary-license_69.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Protected by international copyright laws. is provided in source form for FREE evaluation, for educational @@ -13,4 +19,4 @@ NOT require any additional licensing or licensing fee. Knowledge of the source code may NOT be used to develop a similar product. Please help us continue to provide the Embedded community with the finest -software available. Your honesty is greatly appreciated. +software available. Your honesty is greatly appreciated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_69.yml b/src/licensedcode/data/rules/proprietary-license_69.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_690.RULE b/src/licensedcode/data/rules/proprietary-license_690.RULE index 143ac531734..30fff607d26 100644 --- a/src/licensedcode/data/rules/proprietary-license_690.RULE +++ b/src/licensedcode/data/rules/proprietary-license_690.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Binary License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_690.yml b/src/licensedcode/data/rules/proprietary-license_690.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_690.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_691.RULE b/src/licensedcode/data/rules/proprietary-license_691.RULE index bbf26ea27eb..f5a862c3614 100644 --- a/src/licensedcode/data/rules/proprietary-license_691.RULE +++ b/src/licensedcode/data/rules/proprietary-license_691.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Sun Binary License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_691.yml b/src/licensedcode/data/rules/proprietary-license_691.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_691.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_692.RULE b/src/licensedcode/data/rules/proprietary-license_692.RULE index 2a49fad53ef..8b8a13fcb89 100644 --- a/src/licensedcode/data/rules/proprietary-license_692.RULE +++ b/src/licensedcode/data/rules/proprietary-license_692.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: Seen in http://www.unicode.org/charts//PDF/Unicode-5.0/U50-2B00.pdf +--- + Terms of Use You may freely use these code charts for personal or internal business uses only. You may not incorporate them either wholly or in part into any product or publication, or otherwise distribute them without express written diff --git a/src/licensedcode/data/rules/proprietary-license_692.yml b/src/licensedcode/data/rules/proprietary-license_692.yml deleted file mode 100644 index c0f57d57ccb..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_692.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: Seen in http://www.unicode.org/charts//PDF/Unicode-5.0/U50-2B00.pdf diff --git a/src/licensedcode/data/rules/proprietary-license_693.RULE b/src/licensedcode/data/rules/proprietary-license_693.RULE index e50a04094be..2518e80e0d1 100644 --- a/src/licensedcode/data/rules/proprietary-license_693.RULE +++ b/src/licensedcode/data/rules/proprietary-license_693.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: Seen in https://www.unicode.org/versions/Unicode5.0.0/Title.pdf +--- + This publication is protected by copy-right, and permission must be obtained from the publisher prior to any prohibited reproduction, storage in a retrieval system, or transmission in any form or by any means, diff --git a/src/licensedcode/data/rules/proprietary-license_693.yml b/src/licensedcode/data/rules/proprietary-license_693.yml deleted file mode 100644 index bd5a862e40a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_693.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: Seen in https://www.unicode.org/versions/Unicode5.0.0/Title.pdf diff --git a/src/licensedcode/data/rules/proprietary-license_694.RULE b/src/licensedcode/data/rules/proprietary-license_694.RULE index 4788cad551f..abea2136ed4 100644 --- a/src/licensedcode/data/rules/proprietary-license_694.RULE +++ b/src/licensedcode/data/rules/proprietary-license_694.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + END USER LICENSE AGREEMENT LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_694.yml b/src/licensedcode/data/rules/proprietary-license_694.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_694.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_695.RULE b/src/licensedcode/data/rules/proprietary-license_695.RULE index 23b59a93407..0020a2cc3d9 100644 --- a/src/licensedcode/data/rules/proprietary-license_695.RULE +++ b/src/licensedcode/data/rules/proprietary-license_695.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + restricted use (see terms and conditions) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_695.yml b/src/licensedcode/data/rules/proprietary-license_695.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_695.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_696.RULE b/src/licensedcode/data/rules/proprietary-license_696.RULE index b46879e87ac..724b3c15ab5 100644 --- a/src/licensedcode/data/rules/proprietary-license_696.RULE +++ b/src/licensedcode/data/rules/proprietary-license_696.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: See in https://www2.eecs.berkeley.edu/Pubs/TechRpts/2018/EECS-2018-174.pdf +--- + Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice diff --git a/src/licensedcode/data/rules/proprietary-license_696.yml b/src/licensedcode/data/rules/proprietary-license_696.yml deleted file mode 100644 index 1f4b6b25877..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_696.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: See in https://www2.eecs.berkeley.edu/Pubs/TechRpts/2018/EECS-2018-174.pdf diff --git a/src/licensedcode/data/rules/proprietary-license_697.RULE b/src/licensedcode/data/rules/proprietary-license_697.RULE index 4aefe9eac85..741df5d1eea 100644 --- a/src/licensedcode/data/rules/proprietary-license_697.RULE +++ b/src/licensedcode/data/rules/proprietary-license_697.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://github.com/DataJuggler/Regionizer2022/blob/e4b4736ed5630d70896a29f01fd5a15cf7170777/Regionizer/Data + Juggler Regionizer License Terms.rtf#L2 +--- + Data Juggler Regionizer License Terms We want you to use Regionizer and tell your friends and coworkers about it. Source Code Licenses -You are free to use the source code and modify for your own needs. diff --git a/src/licensedcode/data/rules/proprietary-license_697.yml b/src/licensedcode/data/rules/proprietary-license_697.yml deleted file mode 100644 index 58afc707ccd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_697.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://github.com/DataJuggler/Regionizer2022/blob/e4b4736ed5630d70896a29f01fd5a15cf7170777/Regionizer/Data - Juggler Regionizer License Terms.rtf#L2 diff --git a/src/licensedcode/data/rules/proprietary-license_698.RULE b/src/licensedcode/data/rules/proprietary-license_698.RULE index ada101feda2..66385c5284b 100644 --- a/src/licensedcode/data/rules/proprietary-license_698.RULE +++ b/src/licensedcode/data/rules/proprietary-license_698.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: modify for your own needs implies some restriction See https://github.com/DataJuggler/Regionizer/blob/119c37e543337b1c0c577cf28c6372bb6a967bb0/Regionizer/Regionizer/Data + Juggler Regionizer License Terms.rtf#L2 +--- + Source Code Licenses You are free to use the source code and modify for your own needs \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_698.yml b/src/licensedcode/data/rules/proprietary-license_698.yml deleted file mode 100644 index a967f622ca4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_698.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: modify for your own needs implies some restriction See https://github.com/DataJuggler/Regionizer/blob/119c37e543337b1c0c577cf28c6372bb6a967bb0/Regionizer/Regionizer/Data - Juggler Regionizer License Terms.rtf#L2 diff --git a/src/licensedcode/data/rules/proprietary-license_699.RULE b/src/licensedcode/data/rules/proprietary-license_699.RULE index af15e3ffb37..3c8d59a5ae9 100644 --- a/src/licensedcode/data/rules/proprietary-license_699.RULE +++ b/src/licensedcode/data/rules/proprietary-license_699.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: modify for your own needs implies some restriction See https://github.com/DataJuggler/Regionizer/blob/119c37e543337b1c0c577cf28c6372bb6a967bb0/Regionizer/Regionizer/Data + Juggler Regionizer License Terms.rtf#L2 +--- + You are free to use the source code and modify for your own needs \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_699.yml b/src/licensedcode/data/rules/proprietary-license_699.yml deleted file mode 100644 index a967f622ca4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_699.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: modify for your own needs implies some restriction See https://github.com/DataJuggler/Regionizer/blob/119c37e543337b1c0c577cf28c6372bb6a967bb0/Regionizer/Regionizer/Data - Juggler Regionizer License Terms.rtf#L2 diff --git a/src/licensedcode/data/rules/proprietary-license_7.RULE b/src/licensedcode/data/rules/proprietary-license_7.RULE index 9fc9291c715..a0ce1b6227c 100644 --- a/src/licensedcode/data/rules/proprietary-license_7.RULE +++ b/src/licensedcode/data/rules/proprietary-license_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: see also https://coggins.biochem.duke.edu/scrub/license.php and https://bitbucket.org/becoggins/nmr_wash/raw/0acf6e590312dbf6265457fa9cf9cdbb25c42e7d/LICENSE.txt +--- + Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do the same, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this and the following restrictions, and the disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. In the latter case, the copyright notices in the Software must be reproduced in the documentation and/or other materials provided in the distribution. @@ -6,4 +12,4 @@ In addition, any publications, grant applications, or patents based on research This software distribution may include source and object code from components provided by third parties. In such cases, said source and object code is provided under the terms of the license agreements accompanying each component. Note that the authors of the Software have elected to use the Blitz++ library under the terms of the Blitz BSD license, as authorized by the Blitz++ library authors, and that the GPL and LGPL do not, therefore, apply to 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, TITLE, AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS THEREIN. +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, TITLE, AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS THEREIN. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_7.yml b/src/licensedcode/data/rules/proprietary-license_7.yml deleted file mode 100644 index bedab41b25b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: see also https://coggins.biochem.duke.edu/scrub/license.php and https://bitbucket.org/becoggins/nmr_wash/raw/0acf6e590312dbf6265457fa9cf9cdbb25c42e7d/LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_70.RULE b/src/licensedcode/data/rules/proprietary-license_70.RULE index 0e9c48f0b12..017f769c642 100644 --- a/src/licensedcode/data/rules/proprietary-license_70.RULE +++ b/src/licensedcode/data/rules/proprietary-license_70.RULE @@ -1,4 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: qmail license is confusing an therefore reported as proprietary for now +--- + You may distribute copies of qmail If you want to distribute modified versions of qmail (including ports, no matter how minor the changes are) you'll have to get my approval. This does not mean approval of your distribution method, your intentions, your e-mail address, your haircut, or any other irrelevant information. It means a detailed review of the exact package that you want to distribute. -Exception: You are permitted to distribute a precompiled var-qmail package if (1) installing the package produces exactly the same /var/qmail hierarchy as a user would obtain by downloading, compiling, and installing qmail-1.03.tar.gz, fastforward-0.51.tar.gz, and dot-forward-0.71.tar.gz; (2) the package behaves correctly, i.e., the same way as normal qmail+fastforward+dot-forward installations on all other systems; and (3) the package's creator warrants that he has made a good-faith attempt to ensure that the package behaves correctly. It is not acceptable to have qmail working differently on different machines; any variation is a bug. If there's something about a system (compiler, libraries, kernel, hardware, whatever) that changes qmail's behavior, then that platform is not supported, and you are not permitted to distribute binaries. +Exception: You are permitted to distribute a precompiled var-qmail package if (1) installing the package produces exactly the same /var/qmail hierarchy as a user would obtain by downloading, compiling, and installing qmail-1.03.tar.gz, fastforward-0.51.tar.gz, and dot-forward-0.71.tar.gz; (2) the package behaves correctly, i.e., the same way as normal qmail+fastforward+dot-forward installations on all other systems; and (3) the package's creator warrants that he has made a good-faith attempt to ensure that the package behaves correctly. It is not acceptable to have qmail working differently on different machines; any variation is a bug. If there's something about a system (compiler, libraries, kernel, hardware, whatever) that changes qmail's behavior, then that platform is not supported, and you are not permitted to distribute binaries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_70.yml b/src/licensedcode/data/rules/proprietary-license_70.yml deleted file mode 100644 index 2a3186d5426..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_70.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: qmail license is confusing an therefore reported as proprietary for now diff --git a/src/licensedcode/data/rules/proprietary-license_700.RULE b/src/licensedcode/data/rules/proprietary-license_700.RULE index 3492c18c968..1dd2d1ddfdf 100644 --- a/src/licensedcode/data/rules/proprietary-license_700.RULE +++ b/src/licensedcode/data/rules/proprietary-license_700.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Rarely seen in old Linux 2.6 kernel modules from now defunct www.systec-electronic.com + See https://github.com/jameshilliard/WECB-VZ-GPL/blob/adfad80b3144c788efb636d5acfcdd6ed91b3d79/rtl819x/linux-2.6.30/drivers/staging/epl/user/EplNmtuCal.h#L13 + It is not clear if this is proprietary or not. +--- + Severability Clause: If a provision of this License is or becomes illegal, invalid or unenforceable in any jurisdiction, that shall not affect: diff --git a/src/licensedcode/data/rules/proprietary-license_700.yml b/src/licensedcode/data/rules/proprietary-license_700.yml deleted file mode 100644 index f5e6ca18dfa..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_700.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Rarely seen in old Linux 2.6 kernel modules from now defunct www.systec-electronic.com - See https://github.com/jameshilliard/WECB-VZ-GPL/blob/adfad80b3144c788efb636d5acfcdd6ed91b3d79/rtl819x/linux-2.6.30/drivers/staging/epl/user/EplNmtuCal.h#L13 - It is not clear if this is proprietary or not. diff --git a/src/licensedcode/data/rules/proprietary-license_701.RULE b/src/licensedcode/data/rules/proprietary-license_701.RULE index c0484fc9f76..2cfb83071fd 100644 --- a/src/licensedcode/data/rules/proprietary-license_701.RULE +++ b/src/licensedcode/data/rules/proprietary-license_701.RULE @@ -1 +1,10 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: Rarely seen in old Linux 2.6 kernel modules from now defunct www.systec-electronic.com + See https://github.com/jameshilliard/WECB-VZ-GPL/blob/adfad80b3144c788efb636d5acfcdd6ed91b3d79/rtl819x/linux-2.6.30/drivers/staging/epl/user/EplNmtuCal.h#L13 + It is not clear if this is proprietary or not. +--- + Severability Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_701.yml b/src/licensedcode/data/rules/proprietary-license_701.yml deleted file mode 100644 index 637ca4244b3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_701.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: Rarely seen in old Linux 2.6 kernel modules from now defunct www.systec-electronic.com - See https://github.com/jameshilliard/WECB-VZ-GPL/blob/adfad80b3144c788efb636d5acfcdd6ed91b3d79/rtl819x/linux-2.6.30/drivers/staging/epl/user/EplNmtuCal.h#L13 - It is not clear if this is proprietary or not. diff --git a/src/licensedcode/data/rules/proprietary-license_702.RULE b/src/licensedcode/data/rules/proprietary-license_702.RULE index ffd0899d774..8b6462879bc 100644 --- a/src/licensedcode/data/rules/proprietary-license_702.RULE +++ b/src/licensedcode/data/rules/proprietary-license_702.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + License Agreement This is a legal agreement between you (the downloader) and IconEden.com. On download of any royalty-free icons from our website you agree to the following: diff --git a/src/licensedcode/data/rules/proprietary-license_702.yml b/src/licensedcode/data/rules/proprietary-license_702.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_702.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_703.RULE b/src/licensedcode/data/rules/proprietary-license_703.RULE index eacc957289c..3c0a6529f65 100644 --- a/src/licensedcode/data/rules/proprietary-license_703.RULE +++ b/src/licensedcode/data/rules/proprietary-license_703.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Sensory Trulyhandsfree™ Library License You may not use the Sensory TrulyHandsfree™ library or code files except in compliance with this license. The Sensory library and code is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. diff --git a/src/licensedcode/data/rules/proprietary-license_703.yml b/src/licensedcode/data/rules/proprietary-license_703.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_703.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_704.RULE b/src/licensedcode/data/rules/proprietary-license_704.RULE index 64e4cbf9305..4b084a6faa9 100644 --- a/src/licensedcode/data/rules/proprietary-license_704.RULE +++ b/src/licensedcode/data/rules/proprietary-license_704.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - Copyrighted IP YOUR COMPANY NAME +ignorable_holders: + - IP YOUR COMPANY NAME +ignorable_emails: + - ip@x12.org +--- + X12 License All X12 work products are copyrighted. Any use of any X12 work product must be compliant with US Copyright laws and X12 Intellectual Property policies. diff --git a/src/licensedcode/data/rules/proprietary-license_704.yml b/src/licensedcode/data/rules/proprietary-license_704.yml deleted file mode 100644 index c3be208bf41..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_704.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - Copyrighted IP YOUR COMPANY NAME -ignorable_holders: - - IP YOUR COMPANY NAME -ignorable_emails: - - ip@x12.org diff --git a/src/licensedcode/data/rules/proprietary-license_705.RULE b/src/licensedcode/data/rules/proprietary-license_705.RULE index aa98b1ed70b..ab29a84547d 100644 --- a/src/licensedcode/data/rules/proprietary-license_705.RULE +++ b/src/licensedcode/data/rules/proprietary-license_705.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Older https://raw.githubusercontent.com/wpscanteam/wpscan/master/LICENSE +ignorable_copyrights: + - Copyright 2011-2016 WPScan Team +ignorable_holders: + - WPScan Team +ignorable_emails: + - team@wpscan.org +--- + WPScan Public Source License The WPScan software (henceforth referred to simply as "WPScan") is dual-licensed - Copyright 2011-2016 WPScan Team. diff --git a/src/licensedcode/data/rules/proprietary-license_705.yml b/src/licensedcode/data/rules/proprietary-license_705.yml deleted file mode 100644 index f481ca7c09c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_705.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Older https://raw.githubusercontent.com/wpscanteam/wpscan/master/LICENSE -ignorable_copyrights: - - Copyright 2011-2016 WPScan Team -ignorable_holders: - - WPScan Team -ignorable_emails: - - team@wpscan.org diff --git a/src/licensedcode/data/rules/proprietary-license_706.RULE b/src/licensedcode/data/rules/proprietary-license_706.RULE index 1bd551f0ac1..487a823e874 100644 --- a/src/licensedcode/data/rules/proprietary-license_706.RULE +++ b/src/licensedcode/data/rules/proprietary-license_706.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://raw.githubusercontent.com/wpscanteam/wpscan/master/LICENSE +ignorable_copyrights: + - Copyright 2011-2019 WPScan Team +ignorable_holders: + - WPScan Team +ignorable_emails: + - contact@wpscan.com +--- + WPScan Public Source License The WPScan software (henceforth referred to simply as "WPScan") is dual-licensed - Copyright 2011-2019 WPScan Team. diff --git a/src/licensedcode/data/rules/proprietary-license_706.yml b/src/licensedcode/data/rules/proprietary-license_706.yml deleted file mode 100644 index 22cb6f77b42..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_706.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://raw.githubusercontent.com/wpscanteam/wpscan/master/LICENSE -ignorable_copyrights: - - Copyright 2011-2019 WPScan Team -ignorable_holders: - - WPScan Team -ignorable_emails: - - contact@wpscan.com diff --git a/src/licensedcode/data/rules/proprietary-license_707.RULE b/src/licensedcode/data/rules/proprietary-license_707.RULE index f8fc1cc5e6b..75973e11774 100644 --- a/src/licensedcode/data/rules/proprietary-license_707.RULE +++ b/src/licensedcode/data/rules/proprietary-license_707.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +minimum_coverage: 95 +notes: Very close to sun-jsr-spec-04-2006 and rarely seen +ignorable_copyrights: + - Copyright 2002, 2003 BEA Systems, Inc. 2315 North First Street, San Jose CA, 95131 +ignorable_holders: + - BEA Systems, Inc. 2315 North First Street, San Jose CA, 95131 +--- + BEA SYSTEMS, INC. ("BEA") IS WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS LICENSE AGREEMENT ("AGREEMENT").  PLEASE READ THE TERMS AND diff --git a/src/licensedcode/data/rules/proprietary-license_707.yml b/src/licensedcode/data/rules/proprietary-license_707.yml deleted file mode 100644 index 8d0b5459073..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_707.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -minimum_coverage: 95 -notes: Very close to sun-jsr-spec-04-2006 and rarely seen -ignorable_copyrights: - - Copyright 2002, 2003 BEA Systems, Inc. 2315 North First Street, San Jose CA, 95131 -ignorable_holders: - - BEA Systems, Inc. 2315 North First Street, San Jose CA, 95131 diff --git a/src/licensedcode/data/rules/proprietary-license_708.RULE b/src/licensedcode/data/rules/proprietary-license_708.RULE index 58b28727b4d..049dff7171f 100644 --- a/src/licensedcode/data/rules/proprietary-license_708.RULE +++ b/src/licensedcode/data/rules/proprietary-license_708.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Corporation End User License Agreement Note: Click here for more information on various font license options, including multi-workstation licenses, enterprise-wide licenses, and application server licenses. This Corporation End User Agreement (the "Agreement") becomes a binding contract between you and Corporation when you click on the area marked "OK" or "I Accept." If you do not wish to be bound by the Agreement, you cannot access, use or download the Font Software. Please read all of the Agreement before you agree to be bound by its terms and conditions. diff --git a/src/licensedcode/data/rules/proprietary-license_708.yml b/src/licensedcode/data/rules/proprietary-license_708.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_708.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_709.RULE b/src/licensedcode/data/rules/proprietary-license_709.RULE index d43f454c578..95661d8d778 100644 --- a/src/licensedcode/data/rules/proprietary-license_709.RULE +++ b/src/licensedcode/data/rules/proprietary-license_709.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: "Seen in old webmin and https://fedoraproject.org/wiki/Licensing:Webmin?rd=Licensing/Webmin\n\ + rarely seen in the wild.\nPer Fedora: \"This is not compatible with either GPLv2 or GPLv3.\ + \ \nThis goes much further than the patent termination provision in GPLv3. \"" +--- + Mutual Termination for Patent Action. The License for the use of Webmin shall terminate automatically and You may no longer exercise any of the rights granted to You by this License if: diff --git a/src/licensedcode/data/rules/proprietary-license_709.yml b/src/licensedcode/data/rules/proprietary-license_709.yml deleted file mode 100644 index ffeea7d9da3..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_709.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: "Seen in old webmin and https://fedoraproject.org/wiki/Licensing:Webmin?rd=Licensing/Webmin\n\ - rarely seen in the wild.\nPer Fedora: \"This is not compatible with either GPLv2 or GPLv3.\ - \ \nThis goes much further than the patent termination provision in GPLv3. \"" diff --git a/src/licensedcode/data/rules/proprietary-license_71.RULE b/src/licensedcode/data/rules/proprietary-license_71.RULE index 2d05e544809..1f8ed921b13 100644 --- a/src/licensedcode/data/rules/proprietary-license_71.RULE +++ b/src/licensedcode/data/rules/proprietary-license_71.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + If you further distribute programs that include the Microsoft Distributable Code, you must comply with the restrictions on distribution specified by Microsoft. In particular, you must require @@ -27,4 +33,4 @@ These restrictions apply only to the Microsoft Distributable Code as defined above, not to Python itself or any programs running on the Python interpreter. The redistribution of the Python interpreter and libraries is governed by the Python Software License included with this -file, or by other licenses as marked. +file, or by other licenses as marked. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_71.yml b/src/licensedcode/data/rules/proprietary-license_71.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_710.RULE b/src/licensedcode/data/rules/proprietary-license_710.RULE index f6deb7c3dc1..a7e36e6df6d 100644 --- a/src/licensedcode/data/rules/proprietary-license_710.RULE +++ b/src/licensedcode/data/rules/proprietary-license_710.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: rare license seen in some Oracle products. +--- + Oasis WS-Security 1 XML Schema License Oasis Software License diff --git a/src/licensedcode/data/rules/proprietary-license_710.yml b/src/licensedcode/data/rules/proprietary-license_710.yml deleted file mode 100644 index de52d3c37e0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_710.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: rare license seen in some Oracle products. diff --git a/src/licensedcode/data/rules/proprietary-license_711.RULE b/src/licensedcode/data/rules/proprietary-license_711.RULE index eae7ff6d5c1..4746fd3fdeb 100644 --- a/src/licensedcode/data/rules/proprietary-license_711.RULE +++ b/src/licensedcode/data/rules/proprietary-license_711.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.osvdb.org/osvdb_license +--- + http://www.osvdb.org/osvdb_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_711.yml b/src/licensedcode/data/rules/proprietary-license_711.yml deleted file mode 100644 index 657cc58f2ec..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_711.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.osvdb.org/osvdb_license diff --git a/src/licensedcode/data/rules/proprietary-license_712.RULE b/src/licensedcode/data/rules/proprietary-license_712.RULE index c9bab492ee1..716764cc906 100644 --- a/src/licensedcode/data/rules/proprietary-license_712.RULE +++ b/src/licensedcode/data/rules/proprietary-license_712.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://osvdb.org/ +--- + Open Source Vulnerability Database (http://osvdb.org) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_712.yml b/src/licensedcode/data/rules/proprietary-license_712.yml deleted file mode 100644 index 7651ed8a7cf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_712.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://osvdb.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_713.RULE b/src/licensedcode/data/rules/proprietary-license_713.RULE index 88282b753fc..f6f6f78d593 100644 --- a/src/licensedcode/data/rules/proprietary-license_713.RULE +++ b/src/licensedcode/data/rules/proprietary-license_713.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://osvdb.org/ +--- + copyrighted by the Open Source Vulnerability Database (http://osvdb.org) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_713.yml b/src/licensedcode/data/rules/proprietary-license_713.yml deleted file mode 100644 index 7651ed8a7cf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_713.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://osvdb.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_714.RULE b/src/licensedcode/data/rules/proprietary-license_714.RULE index 01afa4038c2..87323f0da9d 100644 --- a/src/licensedcode/data/rules/proprietary-license_714.RULE +++ b/src/licensedcode/data/rules/proprietary-license_714.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + licenses": [ { "name": "Other/Proprietary License", \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_714.yml b/src/licensedcode/data/rules/proprietary-license_714.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_714.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_715.RULE b/src/licensedcode/data/rules/proprietary-license_715.RULE index 4c900615288..2902533e6e4 100644 --- a/src/licensedcode/data/rules/proprietary-license_715.RULE +++ b/src/licensedcode/data/rules/proprietary-license_715.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + license": { "name": "Other/Proprietary License" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_715.yml b/src/licensedcode/data/rules/proprietary-license_715.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_715.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_716.RULE b/src/licensedcode/data/rules/proprietary-license_716.RULE index b6f86dd2fee..92cc2ef8bb7 100644 --- a/src/licensedcode/data/rules/proprietary-license_716.RULE +++ b/src/licensedcode/data/rules/proprietary-license_716.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Other/Proprietary License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_716.yml b/src/licensedcode/data/rules/proprietary-license_716.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_716.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_717.RULE b/src/licensedcode/data/rules/proprietary-license_717.RULE index 7f0ffe0ce98..ef879f09df1 100644 --- a/src/licensedcode/data/rules/proprietary-license_717.RULE +++ b/src/licensedcode/data/rules/proprietary-license_717.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + may be subject to redistribution and commercial restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_717.yml b/src/licensedcode/data/rules/proprietary-license_717.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_717.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_718.RULE b/src/licensedcode/data/rules/proprietary-license_718.RULE index be5a9756b30..57b801fc777 100644 --- a/src/licensedcode/data/rules/proprietary-license_718.RULE +++ b/src/licensedcode/data/rules/proprietary-license_718.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + licenses = ['LicenseRef-LICENSE.md'] \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_718.yml b/src/licensedcode/data/rules/proprietary-license_718.yml deleted file mode 100644 index 83ba9391e09..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_718.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/proprietary-license_719.RULE b/src/licensedcode/data/rules/proprietary-license_719.RULE index 3f2bccf579f..460b10e4021 100644 --- a/src/licensedcode/data/rules/proprietary-license_719.RULE +++ b/src/licensedcode/data/rules/proprietary-license_719.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project rocks and uses LicenseRef-LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_719.yml b/src/licensedcode/data/rules/proprietary-license_719.yml deleted file mode 100644 index c9933bbbf05..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_719.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_72.RULE b/src/licensedcode/data/rules/proprietary-license_72.RULE index ff1179ca9c0..0c79b7a4792 100644 --- a/src/licensedcode/data/rules/proprietary-license_72.RULE +++ b/src/licensedcode/data/rules/proprietary-license_72.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + END USER LICENSE AGREEMENT \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_72.yml b/src/licensedcode/data/rules/proprietary-license_72.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_72.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_720.RULE b/src/licensedcode/data/rules/proprietary-license_720.RULE index 74bc4f9d37b..eee7062ef0a 100644 --- a/src/licensedcode/data/rules/proprietary-license_720.RULE +++ b/src/licensedcode/data/rules/proprietary-license_720.RULE @@ -1 +1,10 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: recommended by npm in the past for custom licenses +--- + LicenseRef-LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_720.yml b/src/licensedcode/data/rules/proprietary-license_720.yml deleted file mode 100644 index 1eb3bf9ff81..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_720.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: recommended by npm in the past for custom licenses diff --git a/src/licensedcode/data/rules/proprietary-license_721.RULE b/src/licensedcode/data/rules/proprietary-license_721.RULE index 83344465b2f..a9a17a8b6c4 100644 --- a/src/licensedcode/data/rules/proprietary-license_721.RULE +++ b/src/licensedcode/data/rules/proprietary-license_721.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * THIS SOFTWARE IS PROVIDED FOR USE ONLY IN CONJUNCTION WITH PRODUCTS. * * USE OF THE SOFTWARE IN CONJUNCTION WITH NON-PRODUCTS IS EXPLICITLY * * EXCLUDED. * diff --git a/src/licensedcode/data/rules/proprietary-license_721.yml b/src/licensedcode/data/rules/proprietary-license_721.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_721.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_722.RULE b/src/licensedcode/data/rules/proprietary-license_722.RULE index 0c7187e07dc..c063d3666e8 100644 --- a/src/licensedcode/data/rules/proprietary-license_722.RULE +++ b/src/licensedcode/data/rules/proprietary-license_722.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * THIS SOFTWARE IS PROVIDED FOR USE ONLY IN CONJUNCTION WITH AMS PRODUCTS. * * USE OF THE SOFTWARE IN CONJUNCTION WITH NON-AMS-PRODUCTS IS EXPLICITLY * * EXCLUDED. * diff --git a/src/licensedcode/data/rules/proprietary-license_722.yml b/src/licensedcode/data/rules/proprietary-license_722.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_722.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_723.RULE b/src/licensedcode/data/rules/proprietary-license_723.RULE index 5dde2fba6ec..fbee314af3b 100644 --- a/src/licensedcode/data/rules/proprietary-license_723.RULE +++ b/src/licensedcode/data/rules/proprietary-license_723.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * IMPORTANT - PLEASE READ CAREFULLY BEFORE COPYING, INSTALLING OR USING * * THE SOFTWARE. * * * diff --git a/src/licensedcode/data/rules/proprietary-license_723.yml b/src/licensedcode/data/rules/proprietary-license_723.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_723.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_724.RULE b/src/licensedcode/data/rules/proprietary-license_724.RULE index 48e109bfbd5..29bbd259297 100644 --- a/src/licensedcode/data/rules/proprietary-license_724.RULE +++ b/src/licensedcode/data/rules/proprietary-license_724.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + No License I have no yet decided how I will publish this project. Until then, this project is under no license. You have no permission from the creators of the software to use, modify, or share the software. Although a code host such as GitHub may allow you to view and fork the code, this does not imply that you are permitted to use, modify, or share the software for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_724.yml b/src/licensedcode/data/rules/proprietary-license_724.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_724.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_725.RULE b/src/licensedcode/data/rules/proprietary-license_725.RULE index 4383de2d34d..318bef58a7e 100644 --- a/src/licensedcode/data/rules/proprietary-license_725.RULE +++ b/src/licensedcode/data/rules/proprietary-license_725.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + You are not allowed to distribute or make use of any of the files within this folder ("Resources") without written permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_725.yml b/src/licensedcode/data/rules/proprietary-license_725.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_725.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_726.RULE b/src/licensedcode/data/rules/proprietary-license_726.RULE index 67cb2511880..aac2b8adfd4 100644 --- a/src/licensedcode/data/rules/proprietary-license_726.RULE +++ b/src/licensedcode/data/rules/proprietary-license_726.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + I have no yet decided how I will publish this project. Until then, this project is under no license. You have no permission from the creators of the software to use, modify, or share the software. Although a code host such as GitHub may allow you to view and fork the code, this does not imply diff --git a/src/licensedcode/data/rules/proprietary-license_726.yml b/src/licensedcode/data/rules/proprietary-license_726.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_726.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_727.RULE b/src/licensedcode/data/rules/proprietary-license_727.RULE index de4e0366508..344a17d36f2 100644 --- a/src/licensedcode/data/rules/proprietary-license_727.RULE +++ b/src/licensedcode/data/rules/proprietary-license_727.RULE @@ -1,2 +1,10 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensezero.com/licenses/private +--- + the [License Zero Private License] (https://licensezero.com/licenses/private). \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_727.yml b/src/licensedcode/data/rules/proprietary-license_727.yml deleted file mode 100644 index 5be58c41c40..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_727.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensezero.com/licenses/private diff --git a/src/licensedcode/data/rules/proprietary-license_728.RULE b/src/licensedcode/data/rules/proprietary-license_728.RULE index 583256e1d9f..1326ab953ce 100644 --- a/src/licensedcode/data/rules/proprietary-license_728.RULE +++ b/src/licensedcode/data/rules/proprietary-license_728.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + the [License Zero Private License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_728.yml b/src/licensedcode/data/rules/proprietary-license_728.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_728.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_729.RULE b/src/licensedcode/data/rules/proprietary-license_729.RULE index 59b9f9df0a3..adc3672ff37 100644 --- a/src/licensedcode/data/rules/proprietary-license_729.RULE +++ b/src/licensedcode/data/rules/proprietary-license_729.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensezero.com/licenses/private +--- + (https://licensezero.com/licenses/private). \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_729.yml b/src/licensedcode/data/rules/proprietary-license_729.yml deleted file mode 100644 index 5be58c41c40..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_729.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensezero.com/licenses/private diff --git a/src/licensedcode/data/rules/proprietary-license_73.RULE b/src/licensedcode/data/rules/proprietary-license_73.RULE index 907422407a2..0a9f3e8afab 100644 --- a/src/licensedcode/data/rules/proprietary-license_73.RULE +++ b/src/licensedcode/data/rules/proprietary-license_73.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + License For Customer Use of NVIDIA Software IMPORTANT NOTICE -- READ CAREFULLY: This License For Customer Use of NVIDIA Software ("LICENSE") is the agreement which governs use of the software of NVIDIA Corporation and its subsidiaries (“NVIDIA”) downloadable herefrom, including computer software and associated printed materials ("SOFTWARE"). By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this LICENSE. If you do not agree to the terms of this LICENSE, do not download the SOFTWARE. @@ -48,4 +54,4 @@ This LICENSE shall be deemed to have been made in, and shall be construed pursua 7. MISCELLANEOUS -If any provision of this LICENSE is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This LICENSE is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This LICENSE may only be modified in writing signed by an authorized officer of NVIDIA. Customer agrees that it will not ship, transfer or export the SOFTWARE into any country, or use the SOFTWARE in any manner, prohibited by the United States Bureau of Industry and Security or any export laws, restrictions or regulations. +If any provision of this LICENSE is inconsistent with, or cannot be fully enforced under, the law, such provision will be construed as limited to the extent necessary to be consistent with and fully enforceable under the law. This LICENSE is the final, complete and exclusive agreement between the parties relating to the subject matter hereof, and supersedes all prior or contemporaneous understandings and agreements relating to such subject matter, whether oral or written. This LICENSE may only be modified in writing signed by an authorized officer of NVIDIA. Customer agrees that it will not ship, transfer or export the SOFTWARE into any country, or use the SOFTWARE in any manner, prohibited by the United States Bureau of Industry and Security or any export laws, restrictions or regulations. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_73.yml b/src/licensedcode/data/rules/proprietary-license_73.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_730.RULE b/src/licensedcode/data/rules/proprietary-license_730.RULE index c1e89d5ad36..6bb36253301 100644 --- a/src/licensedcode/data/rules/proprietary-license_730.RULE +++ b/src/licensedcode/data/rules/proprietary-license_730.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + licensezero.com/licenses/private). \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_730.yml b/src/licensedcode/data/rules/proprietary-license_730.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_730.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_731.RULE b/src/licensedcode/data/rules/proprietary-license_731.RULE index 8319fa683dd..62d6976aec2 100644 --- a/src/licensedcode/data/rules/proprietary-license_731.RULE +++ b/src/licensedcode/data/rules/proprietary-license_731.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Seen in https://indiecc.com/free/2.0.0 +ignorable_urls: + - https://creditstxt.com/ + - https://indiecc.com/free/2.0.0 +--- + Free License Version 2.0.0 diff --git a/src/licensedcode/data/rules/proprietary-license_731.yml b/src/licensedcode/data/rules/proprietary-license_731.yml deleted file mode 100644 index 3cfb94e9b21..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_731.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Seen in https://indiecc.com/free/2.0.0 -ignorable_urls: - - https://creditstxt.com/ - - https://indiecc.com/free/2.0.0 diff --git a/src/licensedcode/data/rules/proprietary-license_732.RULE b/src/licensedcode/data/rules/proprietary-license_732.RULE index 5f437a554f3..90c75c8b8ae 100644 --- a/src/licensedcode/data/rules/proprietary-license_732.RULE +++ b/src/licensedcode/data/rules/proprietary-license_732.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Seen in https://indiecc.com/paid/3.0.2 +ignorable_urls: + - https://indiecc.com/ +--- + Paid License Version 3.0.2 diff --git a/src/licensedcode/data/rules/proprietary-license_732.yml b/src/licensedcode/data/rules/proprietary-license_732.yml deleted file mode 100644 index a8298fe7028..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_732.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Seen in https://indiecc.com/paid/3.0.2 -ignorable_urls: - - https://indiecc.com/ diff --git a/src/licensedcode/data/rules/proprietary-license_733.RULE b/src/licensedcode/data/rules/proprietary-license_733.RULE index 114748d22aa..817d8b6cfc6 100644 --- a/src/licensedcode/data/rules/proprietary-license_733.RULE +++ b/src/licensedcode/data/rules/proprietary-license_733.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Seen in https://indiecc.com/deal/4.0.1 +--- + Standard Deal Version 4.0.1 diff --git a/src/licensedcode/data/rules/proprietary-license_733.yml b/src/licensedcode/data/rules/proprietary-license_733.yml deleted file mode 100644 index 08ea7f65ffe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_733.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Seen in https://indiecc.com/deal/4.0.1 diff --git a/src/licensedcode/data/rules/proprietary-license_734.RULE b/src/licensedcode/data/rules/proprietary-license_734.RULE index 0a0fd290e08..012a65990f3 100644 --- a/src/licensedcode/data/rules/proprietary-license_734.RULE +++ b/src/licensedcode/data/rules/proprietary-license_734.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Seen in https://indiecc.com/service/1.0.1 +ignorable_urls: + - https://github.com/indiecc/indiecc.com/blob/main/terms/service +--- + Terms of Service Version 1.0.1 diff --git a/src/licensedcode/data/rules/proprietary-license_734.yml b/src/licensedcode/data/rules/proprietary-license_734.yml deleted file mode 100644 index 84adf4f927d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_734.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Seen in https://indiecc.com/service/1.0.1 -ignorable_urls: - - https://github.com/indiecc/indiecc.com/blob/main/terms/service diff --git a/src/licensedcode/data/rules/proprietary-license_735.RULE b/src/licensedcode/data/rules/proprietary-license_735.RULE index a4d3071f769..7a2ee85f48b 100644 --- a/src/licensedcode/data/rules/proprietary-license_735.RULE +++ b/src/licensedcode/data/rules/proprietary-license_735.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + The MIT License (MIT) with restrictions \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_735.yml b/src/licensedcode/data/rules/proprietary-license_735.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_735.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_736.RULE b/src/licensedcode/data/rules/proprietary-license_736.RULE index 2f7190b817d..645557fb1b7 100644 --- a/src/licensedcode/data/rules/proprietary-license_736.RULE +++ b/src/licensedcode/data/rules/proprietary-license_736.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + The MIT License with restrictions \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_736.yml b/src/licensedcode/data/rules/proprietary-license_736.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_736.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_737.RULE b/src/licensedcode/data/rules/proprietary-license_737.RULE index de1021803ae..b709681b4f2 100644 --- a/src/licensedcode/data/rules/proprietary-license_737.RULE +++ b/src/licensedcode/data/rules/proprietary-license_737.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + MIT License with restrictions \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_737.yml b/src/licensedcode/data/rules/proprietary-license_737.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_737.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_738.RULE b/src/licensedcode/data/rules/proprietary-license_738.RULE index d5cef675bb0..295668eb65c 100644 --- a/src/licensedcode/data/rules/proprietary-license_738.RULE +++ b/src/licensedcode/data/rules/proprietary-license_738.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + The {{MIT License}} (MIT) {{with restrictions}} Permission is hereby granted, free of charge, to any person obtaining a copy @@ -16,4 +21,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_738.yml b/src/licensedcode/data/rules/proprietary-license_738.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_738.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_739.RULE b/src/licensedcode/data/rules/proprietary-license_739.RULE index 5b5d03e11f2..80c01cbd439 100644 --- a/src/licensedcode/data/rules/proprietary-license_739.RULE +++ b/src/licensedcode/data/rules/proprietary-license_739.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + The following terms additionally apply and override any above terms for applicable parties: diff --git a/src/licensedcode/data/rules/proprietary-license_739.yml b/src/licensedcode/data/rules/proprietary-license_739.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_739.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_74.RULE b/src/licensedcode/data/rules/proprietary-license_74.RULE index 0e548e52ab0..a0aaa5ac1b7 100644 --- a/src/licensedcode/data/rules/proprietary-license_74.RULE +++ b/src/licensedcode/data/rules/proprietary-license_74.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.intel.com/support/wireless/sb/CS-006408.htm +--- + Important Notice FOR ALL USERS OR DISTRIBUTORS!!!! Intel wireless LAN adapters are engineered, manufactured, tested, and @@ -43,5 +51,4 @@ generally unlicensed devices that share spectrum with radars, solution intended to be used for purposes other than development, please obtain a tested driver from Intel Customer Support at: - http://www.intel.com/support/wireless/sb/CS-006408.htm - + http://www.intel.com/support/wireless/sb/CS-006408.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_74.yml b/src/licensedcode/data/rules/proprietary-license_74.yml deleted file mode 100644 index 4367566fa70..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.intel.com/support/wireless/sb/CS-006408.htm diff --git a/src/licensedcode/data/rules/proprietary-license_740.RULE b/src/licensedcode/data/rules/proprietary-license_740.RULE index 86bd643f777..b24034c8baa 100644 --- a/src/licensedcode/data/rules/proprietary-license_740.RULE +++ b/src/licensedcode/data/rules/proprietary-license_740.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person (except those restricted as below) obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, diff --git a/src/licensedcode/data/rules/proprietary-license_740.yml b/src/licensedcode/data/rules/proprietary-license_740.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_740.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_741.RULE b/src/licensedcode/data/rules/proprietary-license_741.RULE index 503805a0e8a..870877cea5d 100644 --- a/src/licensedcode/data/rules/proprietary-license_741.RULE +++ b/src/licensedcode/data/rules/proprietary-license_741.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person (except those restricted as below) obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, diff --git a/src/licensedcode/data/rules/proprietary-license_741.yml b/src/licensedcode/data/rules/proprietary-license_741.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_741.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_742.RULE b/src/licensedcode/data/rules/proprietary-license_742.RULE index 4a89a85e299..ee4d6d29acf 100644 --- a/src/licensedcode/data/rules/proprietary-license_742.RULE +++ b/src/licensedcode/data/rules/proprietary-license_742.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Existing or previous Clients, Partners or organizations having a direct or indirect commerical relationship with must purchase Commercial Support and can't use any current or previous version of this software free of charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_742.yml b/src/licensedcode/data/rules/proprietary-license_742.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_742.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_743.RULE b/src/licensedcode/data/rules/proprietary-license_743.RULE index 9b29313cc93..ef6f1aa1bc3 100644 --- a/src/licensedcode/data/rules/proprietary-license_743.RULE +++ b/src/licensedcode/data/rules/proprietary-license_743.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + The MIT License (MIT) with restrictions Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/src/licensedcode/data/rules/proprietary-license_743.yml b/src/licensedcode/data/rules/proprietary-license_743.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_743.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_744.RULE b/src/licensedcode/data/rules/proprietary-license_744.RULE index c8df2278543..f6e6c96beb7 100644 --- a/src/licensedcode/data/rules/proprietary-license_744.RULE +++ b/src/licensedcode/data/rules/proprietary-license_744.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software according to the limitations and restrictions below. Outside these diff --git a/src/licensedcode/data/rules/proprietary-license_744.yml b/src/licensedcode/data/rules/proprietary-license_744.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_744.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_745.RULE b/src/licensedcode/data/rules/proprietary-license_745.RULE index 13f32935b7a..e3a87e9c52e 100644 --- a/src/licensedcode/data/rules/proprietary-license_745.RULE +++ b/src/licensedcode/data/rules/proprietary-license_745.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + RESTRICTION ON SELLING You may not sell the Software as a Service (SaaS) in itself, that is, you may diff --git a/src/licensedcode/data/rules/proprietary-license_745.yml b/src/licensedcode/data/rules/proprietary-license_745.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_745.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_746.RULE b/src/licensedcode/data/rules/proprietary-license_746.RULE index 36388a4bb2a..32919284c4b 100644 --- a/src/licensedcode/data/rules/proprietary-license_746.RULE +++ b/src/licensedcode/data/rules/proprietary-license_746.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + License is licensed under MIT, with a special restriction: you may not sell itself as a SaaS service. Meaning, you can and should run your diff --git a/src/licensedcode/data/rules/proprietary-license_746.yml b/src/licensedcode/data/rules/proprietary-license_746.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_746.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_747.RULE b/src/licensedcode/data/rules/proprietary-license_747.RULE index 0f07744e70c..6c30cbe322f 100644 --- a/src/licensedcode/data/rules/proprietary-license_747.RULE +++ b/src/licensedcode/data/rules/proprietary-license_747.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + is licensed under MIT, with a special restriction: you may not sell itself as a SaaS service. Meaning, you can and should run your own commercial/paid services behind but you can't sell itself as a service to diff --git a/src/licensedcode/data/rules/proprietary-license_747.yml b/src/licensedcode/data/rules/proprietary-license_747.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_747.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_748.RULE b/src/licensedcode/data/rules/proprietary-license_748.RULE index ab3bb2c40b1..3adb0821785 100644 --- a/src/licensedcode/data/rules/proprietary-license_748.RULE +++ b/src/licensedcode/data/rules/proprietary-license_748.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed under MIT, with a special restriction: \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_748.yml b/src/licensedcode/data/rules/proprietary-license_748.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_748.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_749.RULE b/src/licensedcode/data/rules/proprietary-license_749.RULE index 0a57cdf0297..39528530ec0 100644 --- a/src/licensedcode/data/rules/proprietary-license_749.RULE +++ b/src/licensedcode/data/rules/proprietary-license_749.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + you may not sell itself as a SaaS service. Meaning, you can and should run your own commercial/paid services behind but you can't sell itself as a service to become the next etc. For details, see the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_749.yml b/src/licensedcode/data/rules/proprietary-license_749.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_749.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_75.RULE b/src/licensedcode/data/rules/proprietary-license_75.RULE index 4d99635c5c2..d2128f9aaca 100644 --- a/src/licensedcode/data/rules/proprietary-license_75.RULE +++ b/src/licensedcode/data/rules/proprietary-license_75.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + REDISTRIBUTION NOT PERMITTED \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_75.yml b/src/licensedcode/data/rules/proprietary-license_75.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_750.RULE b/src/licensedcode/data/rules/proprietary-license_750.RULE index de28e925e39..d9b7792dbd3 100644 --- a/src/licensedcode/data/rules/proprietary-license_750.RULE +++ b/src/licensedcode/data/rules/proprietary-license_750.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed under MIT license with restriction on scientific publishing \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_750.yml b/src/licensedcode/data/rules/proprietary-license_750.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_750.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_751.RULE b/src/licensedcode/data/rules/proprietary-license_751.RULE index a865ec5372c..8f032d83272 100644 --- a/src/licensedcode/data/rules/proprietary-license_751.RULE +++ b/src/licensedcode/data/rules/proprietary-license_751.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed under MIT license with restriction \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_751.yml b/src/licensedcode/data/rules/proprietary-license_751.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_751.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_752.RULE b/src/licensedcode/data/rules/proprietary-license_752.RULE index cbbf10d465b..9bdeee636f4 100644 --- a/src/licensedcode/data/rules/proprietary-license_752.RULE +++ b/src/licensedcode/data/rules/proprietary-license_752.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed under MIT license with restrictions \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_752.yml b/src/licensedcode/data/rules/proprietary-license_752.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_752.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_753.RULE b/src/licensedcode/data/rules/proprietary-license_753.RULE index 8910157c450..d1a3e34b408 100644 --- a/src/licensedcode/data/rules/proprietary-license_753.RULE +++ b/src/licensedcode/data/rules/proprietary-license_753.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + MIT license with restriction \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_753.yml b/src/licensedcode/data/rules/proprietary-license_753.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_753.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_754.RULE b/src/licensedcode/data/rules/proprietary-license_754.RULE index ad7dd0235a5..13fd1277447 100644 --- a/src/licensedcode/data/rules/proprietary-license_754.RULE +++ b/src/licensedcode/data/rules/proprietary-license_754.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + License Unless otherwise specified, each is licensed under the MIT license, with restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_754.yml b/src/licensedcode/data/rules/proprietary-license_754.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_754.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_755.RULE b/src/licensedcode/data/rules/proprietary-license_755.RULE index fbc457eadc8..e68ce009973 100644 --- a/src/licensedcode/data/rules/proprietary-license_755.RULE +++ b/src/licensedcode/data/rules/proprietary-license_755.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Unless otherwise specified, each is licensed under the MIT license, with restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_755.yml b/src/licensedcode/data/rules/proprietary-license_755.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_755.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_756.RULE b/src/licensedcode/data/rules/proprietary-license_756.RULE index 37dc260845d..f704af1620e 100644 --- a/src/licensedcode/data/rules/proprietary-license_756.RULE +++ b/src/licensedcode/data/rules/proprietary-license_756.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + license: MIT with restrictions \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_756.yml b/src/licensedcode/data/rules/proprietary-license_756.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_756.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_757.RULE b/src/licensedcode/data/rules/proprietary-license_757.RULE index a9272f0d674..dd273472045 100644 --- a/src/licensedcode/data/rules/proprietary-license_757.RULE +++ b/src/licensedcode/data/rules/proprietary-license_757.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + license: MIT with restriction \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_757.yml b/src/licensedcode/data/rules/proprietary-license_757.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_757.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_758.RULE b/src/licensedcode/data/rules/proprietary-license_758.RULE index 79eeaf6d4ff..3b194555a49 100644 --- a/src/licensedcode/data/rules/proprietary-license_758.RULE +++ b/src/licensedcode/data/rules/proprietary-license_758.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed under the MIT license, with restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_758.yml b/src/licensedcode/data/rules/proprietary-license_758.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_758.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_759.RULE b/src/licensedcode/data/rules/proprietary-license_759.RULE index 923be8b5051..5648ef47b6e 100644 --- a/src/licensedcode/data/rules/proprietary-license_759.RULE +++ b/src/licensedcode/data/rules/proprietary-license_759.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +--- + Supplement to the license (CC-BY-4.0) This repository and the associated repositories hold scientific writing, diff --git a/src/licensedcode/data/rules/proprietary-license_759.yml b/src/licensedcode/data/rules/proprietary-license_759.yml deleted file mode 100644 index d3712bcc90f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_759.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/proprietary-license_76.RULE b/src/licensedcode/data/rules/proprietary-license_76.RULE index 19f1697cba1..f0f0b86026c 100644 --- a/src/licensedcode/data/rules/proprietary-license_76.RULE +++ b/src/licensedcode/data/rules/proprietary-license_76.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 90 +--- + The distribution may not be redistributed without special permission from the author and/or copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_76.yml b/src/licensedcode/data/rules/proprietary-license_76.yml deleted file mode 100644 index 3f650c94e16..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/proprietary-license_760.RULE b/src/licensedcode/data/rules/proprietary-license_760.RULE index 8841420b271..b079a1a11b7 100644 --- a/src/licensedcode/data/rules/proprietary-license_760.RULE +++ b/src/licensedcode/data/rules/proprietary-license_760.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +--- + This repository and the associated repositories hold scientific writing, data and software, neither published nor peer-reviewed. You are free to use them in your project, however you should NOT publish a paper in a scientific diff --git a/src/licensedcode/data/rules/proprietary-license_760.yml b/src/licensedcode/data/rules/proprietary-license_760.yml deleted file mode 100644 index d3712bcc90f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_760.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/proprietary-license_761.RULE b/src/licensedcode/data/rules/proprietary-license_761.RULE index d0e5293d18a..a0c3e22eafe 100644 --- a/src/licensedcode/data/rules/proprietary-license_761.RULE +++ b/src/licensedcode/data/rules/proprietary-license_761.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: seen in https://github.com/peshitta/sedrajs/blob/ba6684a97e80cde14cc2b51903d8f802a1a19ab1/doc/readme.hbs#L55 +--- + database use is restricted according to the terms mentioned below: ``` You are allowed to use for personal and academic diff --git a/src/licensedcode/data/rules/proprietary-license_761.yml b/src/licensedcode/data/rules/proprietary-license_761.yml deleted file mode 100644 index cacec6d3803..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_761.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: seen in https://github.com/peshitta/sedrajs/blob/ba6684a97e80cde14cc2b51903d8f802a1a19ab1/doc/readme.hbs#L55 diff --git a/src/licensedcode/data/rules/proprietary-license_762.RULE b/src/licensedcode/data/rules/proprietary-license_762.RULE index c5b06c8d9c2..1efbda810cc 100644 --- a/src/licensedcode/data/rules/proprietary-license_762.RULE +++ b/src/licensedcode/data/rules/proprietary-license_762.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + License: MIT with restriction: Re-publish same or similar product is forbidden. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_762.yml b/src/licensedcode/data/rules/proprietary-license_762.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_762.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_763.RULE b/src/licensedcode/data/rules/proprietary-license_763.RULE index b17f2b7d9dc..ea962a1b7fd 100644 --- a/src/licensedcode/data/rules/proprietary-license_763.RULE +++ b/src/licensedcode/data/rules/proprietary-license_763.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + MIT with restriction \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_763.yml b/src/licensedcode/data/rules/proprietary-license_763.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_763.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_764.RULE b/src/licensedcode/data/rules/proprietary-license_764.RULE index 3f5b615c75d..67f802cf026 100644 --- a/src/licensedcode/data/rules/proprietary-license_764.RULE +++ b/src/licensedcode/data/rules/proprietary-license_764.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + MIT with restriction: Re-publish same or similar product is forbidden. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_764.yml b/src/licensedcode/data/rules/proprietary-license_764.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_764.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_765.RULE b/src/licensedcode/data/rules/proprietary-license_765.RULE index c9ff44df9b6..d87a51da65e 100644 --- a/src/licensedcode/data/rules/proprietary-license_765.RULE +++ b/src/licensedcode/data/rules/proprietary-license_765.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Re-publish same or similar product is forbidden. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_765.yml b/src/licensedcode/data/rules/proprietary-license_765.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_765.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_766.RULE b/src/licensedcode/data/rules/proprietary-license_766.RULE index e07f59bb322..01a27d3f00a 100644 --- a/src/licensedcode/data/rules/proprietary-license_766.RULE +++ b/src/licensedcode/data/rules/proprietary-license_766.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +referenced_filenames: + - DESIGN_LICENSE.txt +--- + MIT with restriction to distribute](DESIGN_LICENSE.txt) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_766.yml b/src/licensedcode/data/rules/proprietary-license_766.yml deleted file mode 100644 index 55051933df1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_766.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -referenced_filenames: - - DESIGN_LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_767.RULE b/src/licensedcode/data/rules/proprietary-license_767.RULE index b5295b624b6..22e12933071 100644 --- a/src/licensedcode/data/rules/proprietary-license_767.RULE +++ b/src/licensedcode/data/rules/proprietary-license_767.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + MIT with restriction to distribute \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_767.yml b/src/licensedcode/data/rules/proprietary-license_767.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_767.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_768.RULE b/src/licensedcode/data/rules/proprietary-license_768.RULE index cf541849955..a7dc0d9e880 100644 --- a/src/licensedcode/data/rules/proprietary-license_768.RULE +++ b/src/licensedcode/data/rules/proprietary-license_768.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Software is not licensed for commercial use. If you wish to purchase a commercial license, or for other business questions, contact me: \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_768.yml b/src/licensedcode/data/rules/proprietary-license_768.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_768.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_769.RULE b/src/licensedcode/data/rules/proprietary-license_769.RULE index 5e5a4a1e467..56c6d946586 100644 --- a/src/licensedcode/data/rules/proprietary-license_769.RULE +++ b/src/licensedcode/data/rules/proprietary-license_769.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Software is not licensed for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_769.yml b/src/licensedcode/data/rules/proprietary-license_769.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_769.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_77.RULE b/src/licensedcode/data/rules/proprietary-license_77.RULE index 45b8168e2be..92c1f0b92ab 100644 --- a/src/licensedcode/data/rules/proprietary-license_77.RULE +++ b/src/licensedcode/data/rules/proprietary-license_77.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 90 +notes: tag as documented in the Module-Build pod +--- + license restrictive \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_77.yml b/src/licensedcode/data/rules/proprietary-license_77.yml deleted file mode 100644 index 1f859daa053..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_77.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 90 -notes: tag as documented in the Module-Build pod diff --git a/src/licensedcode/data/rules/proprietary-license_770.RULE b/src/licensedcode/data/rules/proprietary-license_770.RULE index 32cecab491d..688eb5fd16a 100644 --- a/src/licensedcode/data/rules/proprietary-license_770.RULE +++ b/src/licensedcode/data/rules/proprietary-license_770.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + not licensed for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_770.yml b/src/licensedcode/data/rules/proprietary-license_770.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_770.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_771.RULE b/src/licensedcode/data/rules/proprietary-license_771.RULE index 7f6ce98e84a..f916daadd13 100644 --- a/src/licensedcode/data/rules/proprietary-license_771.RULE +++ b/src/licensedcode/data/rules/proprietary-license_771.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_771.yml b/src/licensedcode/data/rules/proprietary-license_771.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_771.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_772.RULE b/src/licensedcode/data/rules/proprietary-license_772.RULE index b6722ac1c67..ed104390ea2 100644 --- a/src/licensedcode/data/rules/proprietary-license_772.RULE +++ b/src/licensedcode/data/rules/proprietary-license_772.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software, design files (Sketch file) and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/proprietary-license_772.yml b/src/licensedcode/data/rules/proprietary-license_772.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_772.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_773.RULE b/src/licensedcode/data/rules/proprietary-license_773.RULE index ec4fe88fc69..88c9c0f235e 100644 --- a/src/licensedcode/data/rules/proprietary-license_773.RULE +++ b/src/licensedcode/data/rules/proprietary-license_773.RULE @@ -1,2 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + By forking this project you hereby grant permission for any commits to your fork to be merged back into this repository and, with attribution, be released under the terms of the MIT License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_773.yml b/src/licensedcode/data/rules/proprietary-license_773.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_773.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_774.RULE b/src/licensedcode/data/rules/proprietary-license_774.RULE index 27f67254ff5..aca55aff7c5 100644 --- a/src/licensedcode/data/rules/proprietary-license_774.RULE +++ b/src/licensedcode/data/rules/proprietary-license_774.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +minimum_coverage: 95 +notes: Limited to certain HW. Seen in https://github.com/espressif/ESP8266_RTOS_SDK/commit/19aed2e67ffcc27ba4dca9aad4b4264f62c4bcc2 +--- + Permission is hereby granted for use on SYSTEMS only, in which case, it is free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/proprietary-license_774.yml b/src/licensedcode/data/rules/proprietary-license_774.yml deleted file mode 100644 index f01b93d0c26..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_774.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -minimum_coverage: 95 -notes: Limited to certain HW. Seen in https://github.com/espressif/ESP8266_RTOS_SDK/commit/19aed2e67ffcc27ba4dca9aad4b4264f62c4bcc2 diff --git a/src/licensedcode/data/rules/proprietary-license_775.RULE b/src/licensedcode/data/rules/proprietary-license_775.RULE index 326c875a1cc..99bf55bc642 100644 --- a/src/licensedcode/data/rules/proprietary-license_775.RULE +++ b/src/licensedcode/data/rules/proprietary-license_775.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Sources of the system under license MIT with conditions: - Charity links must be displayed on the page - Code of the system only for non-commercial use only diff --git a/src/licensedcode/data/rules/proprietary-license_775.yml b/src/licensedcode/data/rules/proprietary-license_775.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_775.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_776.RULE b/src/licensedcode/data/rules/proprietary-license_776.RULE index 44005d96917..a582c34f728 100644 --- a/src/licensedcode/data/rules/proprietary-license_776.RULE +++ b/src/licensedcode/data/rules/proprietary-license_776.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: Seen in https://raw.githubusercontent.com/macos-fuse-t/fuse-t/main/License.txt +--- + The binary distribution of is licensed under the following terms: - Free for non-commercial use under the following conditions: diff --git a/src/licensedcode/data/rules/proprietary-license_776.yml b/src/licensedcode/data/rules/proprietary-license_776.yml deleted file mode 100644 index e9ec0445f18..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_776.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: Seen in https://raw.githubusercontent.com/macos-fuse-t/fuse-t/main/License.txt diff --git a/src/licensedcode/data/rules/proprietary-license_777.RULE b/src/licensedcode/data/rules/proprietary-license_777.RULE index bed25f0e8a8..14d5ba176e8 100644 --- a/src/licensedcode/data/rules/proprietary-license_777.RULE +++ b/src/licensedcode/data/rules/proprietary-license_777.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed under a restricted modification of the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_777.yml b/src/licensedcode/data/rules/proprietary-license_777.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_777.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_778.RULE b/src/licensedcode/data/rules/proprietary-license_778.RULE index 3b14dff8430..5ee416da849 100644 --- a/src/licensedcode/data/rules/proprietary-license_778.RULE +++ b/src/licensedcode/data/rules/proprietary-license_778.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + However, in addition to the other notice obligations, (1) all copies of the Program in Executable and Source Code form must, as a form of attribution of the original author, include on each user interface screen (i) the "powered by " text; and (2) all derivative works and copies of derivative works of the Covered Code in Executable and Source Code form must include on each user interface screen (i) the "powered by" text. In addition, the "powered by " text, as appropriate, must be visible to all users, must appear in each user interface screen, and must be in the same position. When users click on the "powered by" text it must direct them to https:. This obligation shall also apply to any copies or derivative works. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_778.yml b/src/licensedcode/data/rules/proprietary-license_778.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_778.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_779.RULE b/src/licensedcode/data/rules/proprietary-license_779.RULE index 3ecb90fa428..d77a2354ff4 100644 --- a/src/licensedcode/data/rules/proprietary-license_779.RULE +++ b/src/licensedcode/data/rules/proprietary-license_779.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + Licensed under the Open Logistics License 1.0. For details on the licensing terms, see the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_779.yml b/src/licensedcode/data/rules/proprietary-license_779.yml deleted file mode 100644 index 1f8a704f2e8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_779.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/proprietary-license_78.RULE b/src/licensedcode/data/rules/proprietary-license_78.RULE index c1cf1586bf1..9d50066c400 100644 --- a/src/licensedcode/data/rules/proprietary-license_78.RULE +++ b/src/licensedcode/data/rules/proprietary-license_78.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyrighted by Jordan Russell +ignorable_holders: + - Jordan Russell +ignorable_urls: + - http://www.jrsoftware.org/tb2kreg.php +--- + "Author" herein refers to Jordan Russell (the creator of the Toolbar2000 components). diff --git a/src/licensedcode/data/rules/proprietary-license_78.yml b/src/licensedcode/data/rules/proprietary-license_78.yml deleted file mode 100644 index b000a96afd2..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_78.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyrighted by Jordan Russell -ignorable_holders: - - Jordan Russell -ignorable_urls: - - http://www.jrsoftware.org/tb2kreg.php diff --git a/src/licensedcode/data/rules/proprietary-license_780.RULE b/src/licensedcode/data/rules/proprietary-license_780.RULE index 314de701698..ff9492e9b35 100644 --- a/src/licensedcode/data/rules/proprietary-license_780.RULE +++ b/src/licensedcode/data/rules/proprietary-license_780.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Licensed under the Open Logistics License 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_780.yml b/src/licensedcode/data/rules/proprietary-license_780.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_780.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_781.RULE b/src/licensedcode/data/rules/proprietary-license_781.RULE index 4626e288c68..5e15fd43710 100644 --- a/src/licensedcode/data/rules/proprietary-license_781.RULE +++ b/src/licensedcode/data/rules/proprietary-license_781.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Open Logistics License 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_781.yml b/src/licensedcode/data/rules/proprietary-license_781.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_781.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_782.RULE b/src/licensedcode/data/rules/proprietary-license_782.RULE index ae1523a8a4f..4be4c471fc3 100644 --- a/src/licensedcode/data/rules/proprietary-license_782.RULE +++ b/src/licensedcode/data/rules/proprietary-license_782.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * This computer software is owned by Rogue Wave Software, Inc. and is * protected by U.S. copyright laws and other laws and by international * treaties. This computer software is furnished by Rogue Wave Software, diff --git a/src/licensedcode/data/rules/proprietary-license_782.yml b/src/licensedcode/data/rules/proprietary-license_782.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_782.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_783.RULE b/src/licensedcode/data/rules/proprietary-license_783.RULE index 272d9550cef..54aa4b5dedf 100644 --- a/src/licensedcode/data/rules/proprietary-license_783.RULE +++ b/src/licensedcode/data/rules/proprietary-license_783.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * This computer software is owned by Rogue Wave Software, Inc. and is * protected by U.S. copyright laws and other laws and by international * treaties. This computer software is furnished by Rogue Wave Software, diff --git a/src/licensedcode/data/rules/proprietary-license_783.yml b/src/licensedcode/data/rules/proprietary-license_783.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_783.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_784.RULE b/src/licensedcode/data/rules/proprietary-license_784.RULE index 33a493aaba2..cd007f66130 100644 --- a/src/licensedcode/data/rules/proprietary-license_784.RULE +++ b/src/licensedcode/data/rules/proprietary-license_784.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + THIS SOFTWARE PROVIDED BY CORPORATION IS SAMPLE CODE INTENDED FOR EVALUATION PURPOSES ONLY. IT IS NOT INTENDED FOR COMMERCIAL USE. THIS SOFTWARE IS PROVIDED BY "AS IS" AND ANY EXPRESS OR IMPLIED diff --git a/src/licensedcode/data/rules/proprietary-license_784.yml b/src/licensedcode/data/rules/proprietary-license_784.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_784.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_785.RULE b/src/licensedcode/data/rules/proprietary-license_785.RULE index c22498dd549..a62bfc4a92e 100644 --- a/src/licensedcode/data/rules/proprietary-license_785.RULE +++ b/src/licensedcode/data/rules/proprietary-license_785.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +notes: seen in libxml2 wrt. a Kanji dictionary. See http://nihongo.monash.edu/kanjidic2/index.html +--- + restrictions on the commercial use of this data \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_785.yml b/src/licensedcode/data/rules/proprietary-license_785.yml deleted file mode 100644 index cd8fbc3ef2b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_785.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -notes: seen in libxml2 wrt. a Kanji dictionary. See http://nihongo.monash.edu/kanjidic2/index.html diff --git a/src/licensedcode/data/rules/proprietary-license_786.RULE b/src/licensedcode/data/rules/proprietary-license_786.RULE index 3512f92afe9..f2e080eb942 100644 --- a/src/licensedcode/data/rules/proprietary-license_786.RULE +++ b/src/licensedcode/data/rules/proprietary-license_786.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: Seen in FFmpeg +--- + CONFIG_NONFREE printf( "This version of %s has nonfree parts compiled in.\n" diff --git a/src/licensedcode/data/rules/proprietary-license_786.yml b/src/licensedcode/data/rules/proprietary-license_786.yml deleted file mode 100644 index 7ea70c0f185..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_786.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: Seen in FFmpeg diff --git a/src/licensedcode/data/rules/proprietary-license_787.RULE b/src/licensedcode/data/rules/proprietary-license_787.RULE index 91d254467af..9e8cff17414 100644 --- a/src/licensedcode/data/rules/proprietary-license_787.RULE +++ b/src/licensedcode/data/rules/proprietary-license_787.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: Seen in FFmpeg +--- + "This version of %s has nonfree parts compiled in.\n" "Therefore it is not legally redistributable.\n", program_name ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_787.yml b/src/licensedcode/data/rules/proprietary-license_787.yml deleted file mode 100644 index 7ea70c0f185..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_787.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: Seen in FFmpeg diff --git a/src/licensedcode/data/rules/proprietary-license_788.RULE b/src/licensedcode/data/rules/proprietary-license_788.RULE index bedf9e36aa6..1b1c8f0b9ae 100644 --- a/src/licensedcode/data/rules/proprietary-license_788.RULE +++ b/src/licensedcode/data/rules/proprietary-license_788.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + MENTOR GRAPHICS IS WILLING TO LICENSE THE SOFTWARE ONLY UPON THE CONDITION THAT YOU ACCEPT ALL OF THE TERMS CONTAINED IN THIS SOFTWARE LICENSE AGREEMENT. PLEASE READ THE TERMS diff --git a/src/licensedcode/data/rules/proprietary-license_788.yml b/src/licensedcode/data/rules/proprietary-license_788.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_788.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_79.RULE b/src/licensedcode/data/rules/proprietary-license_79.RULE index 9c0e97aa64c..066d5977930 100644 --- a/src/licensedcode/data/rules/proprietary-license_79.RULE +++ b/src/licensedcode/data/rules/proprietary-license_79.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://osvdb.org/ +--- + http://osvdb.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_79.yml b/src/licensedcode/data/rules/proprietary-license_79.yml deleted file mode 100644 index 9efe9e9b535..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://osvdb.org/ diff --git a/src/licensedcode/data/rules/proprietary-license_8.RULE b/src/licensedcode/data/rules/proprietary-license_8.RULE index 054475be3fc..77a6e789b6c 100644 --- a/src/licensedcode/data/rules/proprietary-license_8.RULE +++ b/src/licensedcode/data/rules/proprietary-license_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + 1. License. If , Inc. makes available to you a logo for downloading, hereby grants to you a nonexclusive, nonassignable, nonsublicenseable, royalty-free license to display one of the logos above, including the associated trademark(s) and HTML code (collectively, the "Logo") for the sole purpose of (a) linking to the .com home page, your personal profile page, or your affiliate home page, or (b) if you are a member of the press, including the Logo in an article that references . If makes available to you for downloading HTML code that calls on its servers, hereby grants to you a nonexclusive, nonassignable, nonsublicenseable, royalty-free license to use the HTML code above (the "Code") without modification for the sole purpose of calling on '' servers to include the associated Logo on your site. 2. Restrictions. diff --git a/src/licensedcode/data/rules/proprietary-license_8.yml b/src/licensedcode/data/rules/proprietary-license_8.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_80.RULE b/src/licensedcode/data/rules/proprietary-license_80.RULE index 1ce2f80969a..350fa5ebed6 100644 --- a/src/licensedcode/data/rules/proprietary-license_80.RULE +++ b/src/licensedcode/data/rules/proprietary-license_80.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + XVIII. Incorporating PKWARE Proprietary Technology into Your Product PKWARE is committed to the interoperability and advancement of the @@ -7,4 +13,4 @@ However, the use or implementation in a product of certain technological aspects set forth in the current APPNOTE, including those with regard to strong encryption, patching, or extended tape operations requires a license from PKWARE. Please contact PKWARE with regard to acquiring -a license. +a license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_80.yml b/src/licensedcode/data/rules/proprietary-license_80.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_81.RULE b/src/licensedcode/data/rules/proprietary-license_81.RULE index 14f4acebbff..55de9e60d33 100644 --- a/src/licensedcode/data/rules/proprietary-license_81.RULE +++ b/src/licensedcode/data/rules/proprietary-license_81.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 80 +--- + Proprietary Technology \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_81.yml b/src/licensedcode/data/rules/proprietary-license_81.yml deleted file mode 100644 index 7a321e15907..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/proprietary-license_82.RULE b/src/licensedcode/data/rules/proprietary-license_82.RULE index 3f6f171ef9c..acccd296fae 100644 --- a/src/licensedcode/data/rules/proprietary-license_82.RULE +++ b/src/licensedcode/data/rules/proprietary-license_82.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_authors: + - Oksana Khristenko +ignorable_urls: + - http://www.shapes4free.com/ + - http://www.shapes4free.com/license/ +--- + /**************************************\ Shapes4FREE License http://www.shapes4free.com/ - visit us to get free photoshop shapes, read our easy-to-understand shapes tutorials and tips, and view beautiful examples of using shapes in all kinds of design diff --git a/src/licensedcode/data/rules/proprietary-license_82.yml b/src/licensedcode/data/rules/proprietary-license_82.yml deleted file mode 100644 index 133b871a15f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_82.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_authors: - - Oksana Khristenko -ignorable_urls: - - http://www.shapes4free.com/ - - http://www.shapes4free.com/license/ diff --git a/src/licensedcode/data/rules/proprietary-license_83.RULE b/src/licensedcode/data/rules/proprietary-license_83.RULE index 2f34f495ab6..4fd728afac8 100644 --- a/src/licensedcode/data/rules/proprietary-license_83.RULE +++ b/src/licensedcode/data/rules/proprietary-license_83.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.iconarchive.com/artist/tpdkdesign.net.html + - http://www.iconarchive.com/show/refresh-cl-icons-by-tpdkdesign.net.html + - http://www.tpdkdesign.net/ +--- + Refresh Cl icon set http://www.iconarchive.com/show/refresh-cl-icons-by-tpdkdesign.net.html diff --git a/src/licensedcode/data/rules/proprietary-license_83.yml b/src/licensedcode/data/rules/proprietary-license_83.yml deleted file mode 100644 index c84fce0caeb..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_83.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.iconarchive.com/artist/tpdkdesign.net.html - - http://www.iconarchive.com/show/refresh-cl-icons-by-tpdkdesign.net.html - - http://www.tpdkdesign.net/ diff --git a/src/licensedcode/data/rules/proprietary-license_84.RULE b/src/licensedcode/data/rules/proprietary-license_84.RULE index cd60684dbc5..4018025137c 100644 --- a/src/licensedcode/data/rules/proprietary-license_84.RULE +++ b/src/licensedcode/data/rules/proprietary-license_84.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://dryicons.com/terms/ + - http://www.iconarchive.com/category/application/aesthetica-2-icons-by-dryicons.html + - http://www.iconarchive.com/category/system/refresh-cl-icons-by-tpdkdesign.net.html + - http://www.iconarchive.com/icons/tpdkdesign.net/refresh-cl/readme_eng.txt +--- + IMAGE LICENSES REFRESH CL @@ -9,4 +20,4 @@ AESTHETICA 2 http://www.iconarchive.com/category/application/aesthetica-2-icons-by-dryicons.html License: DryIcons Terms of Use -http://dryicons.com/terms/ +http://dryicons.com/terms/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_84.yml b/src/licensedcode/data/rules/proprietary-license_84.yml deleted file mode 100644 index 29cbdc42223..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_84.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://dryicons.com/terms/ - - http://www.iconarchive.com/category/application/aesthetica-2-icons-by-dryicons.html - - http://www.iconarchive.com/category/system/refresh-cl-icons-by-tpdkdesign.net.html - - http://www.iconarchive.com/icons/tpdkdesign.net/refresh-cl/readme_eng.txt diff --git a/src/licensedcode/data/rules/proprietary-license_85.RULE b/src/licensedcode/data/rules/proprietary-license_85.RULE index db9d80cae89..a008454840b 100644 --- a/src/licensedcode/data/rules/proprietary-license_85.RULE +++ b/src/licensedcode/data/rules/proprietary-license_85.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_emails: + - tpdk@tpdkdesign.net +--- + Terms of use Theses icons are copyrighted, and for personal use only. Until now, COMMERCIAL USE is strictly forbidden. @@ -12,4 +20,4 @@ For any other use, such as : - using icon in free software under GPL licence you need my authorization to use them. If you have my permission, you need to credit me in your terms and put a link to my website. I would not be responsible fo any damage you may encounter while using this product. -For any question or request about the pack, please send me an email to tpdk@tpdkdesign.net. +For any question or request about the pack, please send me an email to tpdk@tpdkdesign.net. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_85.yml b/src/licensedcode/data/rules/proprietary-license_85.yml deleted file mode 100644 index 18b13e7dcee..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_emails: - - tpdk@tpdkdesign.net diff --git a/src/licensedcode/data/rules/proprietary-license_86.RULE b/src/licensedcode/data/rules/proprietary-license_86.RULE index 4ae1c81e52c..f6fc4e8cb26 100644 --- a/src/licensedcode/data/rules/proprietary-license_86.RULE +++ b/src/licensedcode/data/rules/proprietary-license_86.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1997-1998, OPaC bright ideas, Suscevaz, Switzerland +ignorable_holders: + - OPaC bright ideas, Suscevaz, Switzerland +--- + OPaC Free Public License Copyright © 1997-1998, OPaC bright ideas, Suscévaz, Switzerland. All rights reserved. @@ -62,4 +72,4 @@ In no event unless required by applicable law or agreed to in writing will Licen If a part of this contract breaches the Swiss Law, this part will be meant in the best applicable original meaning, and all other clauses of this contract will remain valid. -This License Agreement is governed by the laws of the Canton de Vaud, Switzerland. +This License Agreement is governed by the laws of the Canton de Vaud, Switzerland. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_86.yml b/src/licensedcode/data/rules/proprietary-license_86.yml deleted file mode 100644 index b5a03fc427a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_86.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1997-1998, OPaC bright ideas, Suscevaz, Switzerland -ignorable_holders: - - OPaC bright ideas, Suscevaz, Switzerland diff --git a/src/licensedcode/data/rules/proprietary-license_87.RULE b/src/licensedcode/data/rules/proprietary-license_87.RULE index e3ab35bd339..3cc17bd0d70 100644 --- a/src/licensedcode/data/rules/proprietary-license_87.RULE +++ b/src/licensedcode/data/rules/proprietary-license_87.RULE @@ -1,3 +1,19 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See http://www.hacktivismo.com/about/hessla.php +ignorable_urls: + - http://hacktivismo.com/ + - http://hacktivismo.com/about/declarations/ + - http://www.gnu.org/philosophy/free-sw.html + - http://www.hacktivismo.com/ + - http://www.opensource.org/docs/definition_plain.php + - http://www.rosenlaw.com/osl.html + - http://www.un.org/Overview/rights.html + - http://www.unhchr.ch/html/menu3/b/a_ccpr.htm +--- + The Hacktivismo Enhanced-Source Software License Agreement Everyone is permitted to copy and distribute verbatim copies of this license document. You may use content from this license document as source material for your own license agreement, but you may not use the name "Hacktivismo Enhanced-Source Software License Agreement ," ("HESSLA") or any confusingly similar name, trademark or service-mark, in connection with any license agreement that is not either (1) a verbatim copy of this License Agreement, or (2) a license agreement that contains only additional terms expressly permitted by The HESSLA. diff --git a/src/licensedcode/data/rules/proprietary-license_87.yml b/src/licensedcode/data/rules/proprietary-license_87.yml deleted file mode 100644 index 44eb46cce96..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_87.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See http://www.hacktivismo.com/about/hessla.php -ignorable_urls: - - http://hacktivismo.com/ - - http://hacktivismo.com/about/declarations/ - - http://www.gnu.org/philosophy/free-sw.html - - http://www.hacktivismo.com/ - - http://www.opensource.org/docs/definition_plain.php - - http://www.rosenlaw.com/osl.html - - http://www.un.org/Overview/rights.html - - http://www.unhchr.ch/html/menu3/b/a_ccpr.htm diff --git a/src/licensedcode/data/rules/proprietary-license_88.RULE b/src/licensedcode/data/rules/proprietary-license_88.RULE index a28f4edd668..b4e75a1322a 100644 --- a/src/licensedcode/data/rules/proprietary-license_88.RULE +++ b/src/licensedcode/data/rules/proprietary-license_88.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://raw.githubusercontent.com/kemitchell/responsible-ai-licenses/347d6f8a3d419e356aeee882f851cf20a9bbbe89/eula.txt +--- + END USER LICENSE AGREEMENT PLEASE READ THIS END USER LICENSE AGREEMENT ("AGREEMENT") CAREFULLY. THIS IS A LEGAL AGREEMENT. BY CLICKING "I ACCEPT", DOWNLOADING, INSTALLING, LOGGING INTO, ACCESSING OR OTHERWISE USING ANY PART OF [_____________________] ("COMPANY") SOFTWARE-AS-ASERVICE PRODUCT, APPLICATION, SERVICES, OR RELATED MATERIALS (COLLECTIVELY, THE "PRODUCT"), OR OTHERWISE MANIFESTING YOUR ASSET TO THESE TERMS, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS AGREEMENT. IF YOU DO NOT UNEQUIVOCALLY AGREE TO THE TERMS OF THIS AGREEMENT, CLICK "I DO NOT ACCEPT" AND DO NOT DOWNLOAD, INSTALL, ACCESS, COPY, OR OTHERWISE USE THE PRODUCT. @@ -164,4 +171,4 @@ USER HAS READ, UNDERSTOOD, AND ACKNOWLEDGES THE FOREGOING AGREEMENT AND AGREES T I HAVE READ AND UNDERSTOOD AND I ACCEPT THIS AGREEMENT _______ -I DO NOT ACCEPT THIS AGREEMENT _______ +I DO NOT ACCEPT THIS AGREEMENT _______ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_88.yml b/src/licensedcode/data/rules/proprietary-license_88.yml deleted file mode 100644 index 332f145e6a9..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_88.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://raw.githubusercontent.com/kemitchell/responsible-ai-licenses/347d6f8a3d419e356aeee882f851cf20a9bbbe89/eula.txt diff --git a/src/licensedcode/data/rules/proprietary-license_89.RULE b/src/licensedcode/data/rules/proprietary-license_89.RULE index 62600dae982..8add4d508bb 100644 --- a/src/licensedcode/data/rules/proprietary-license_89.RULE +++ b/src/licensedcode/data/rules/proprietary-license_89.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: See https://raw.githubusercontent.com/kemitchell/responsible-ai-licenses/347d6f8a3d419e356aeee882f851cf20a9bbbe89/source.txt +ignorable_urls: + - http://licenses.ai/ +--- + Responsible AI Source Code License Version 1.0, February 12, 2019 @@ -102,4 +111,4 @@ In no event and under no legal theory, whether in tort (including negligence), c While redistributing the Contribution, 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 +END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_89.yml b/src/licensedcode/data/rules/proprietary-license_89.yml deleted file mode 100644 index 3696ad831c8..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_89.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: See https://raw.githubusercontent.com/kemitchell/responsible-ai-licenses/347d6f8a3d419e356aeee882f851cf20a9bbbe89/source.txt -ignorable_urls: - - http://licenses.ai/ diff --git a/src/licensedcode/data/rules/proprietary-license_9.RULE b/src/licensedcode/data/rules/proprietary-license_9.RULE index 8e73da67c21..56500e584fe 100644 --- a/src/licensedcode/data/rules/proprietary-license_9.RULE +++ b/src/licensedcode/data/rules/proprietary-license_9.RULE @@ -1,3 +1,18 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: a modified apache license +ignorable_copyrights: + - Copyright PocketWarriors Shalom Weiner +ignorable_holders: + - PocketWarriors Shalom Weiner +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/ @@ -207,4 +222,4 @@ Apache License 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. + limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_9.yml b/src/licensedcode/data/rules/proprietary-license_9.yml deleted file mode 100644 index 4a5f567d0d1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_9.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: a modified apache license -ignorable_copyrights: - - Copyright PocketWarriors Shalom Weiner -ignorable_holders: - - PocketWarriors Shalom Weiner -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/proprietary-license_90.RULE b/src/licensedcode/data/rules/proprietary-license_90.RULE index 815c8ad009b..f2fa64b6c34 100644 --- a/src/licensedcode/data/rules/proprietary-license_90.RULE +++ b/src/licensedcode/data/rules/proprietary-license_90.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +notes: The Python-only restriction makes this rare notice proprietary-like. +--- + # Permission to use, copy, modify, and distribute this Python software # and its associated documentation for any purpose (subject to the # restriction in the following sentence) without fee is hereby granted, diff --git a/src/licensedcode/data/rules/proprietary-license_90.yml b/src/licensedcode/data/rules/proprietary-license_90.yml deleted file mode 100644 index 57d2fcb28b2..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_90.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -notes: The Python-only restriction makes this rare notice proprietary-like. diff --git a/src/licensedcode/data/rules/proprietary-license_91.RULE b/src/licensedcode/data/rules/proprietary-license_91.RULE index bb7859f363a..5638a906380 100644 --- a/src/licensedcode/data/rules/proprietary-license_91.RULE +++ b/src/licensedcode/data/rules/proprietary-license_91.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_authors: + - the U.S. Government +--- + License and Download for DWF Toolkit 7 NOTICE TO USER: diff --git a/src/licensedcode/data/rules/proprietary-license_91.yml b/src/licensedcode/data/rules/proprietary-license_91.yml deleted file mode 100644 index 0167aa906c0..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_authors: - - the U.S. Government diff --git a/src/licensedcode/data/rules/proprietary-license_92.RULE b/src/licensedcode/data/rules/proprietary-license_92.RULE index 89c7edd329d..20a7a5354d3 100644 --- a/src/licensedcode/data/rules/proprietary-license_92.RULE +++ b/src/licensedcode/data/rules/proprietary-license_92.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + Sun Microsystems, Inc. ("Sun") ENTITLEMENT for SOFTWARE Licensee/Company: Entity receiving Software. @@ -117,5 +126,4 @@ If any provision of this Agreement is held to be unenforceable, this Agreement w This Agreement, including any terms contained in your Entitlement, is the entire agreement between you and Sun relating to its subject matter. It supersedes all prior or contemporaneous oral or written communications, proposals, representations and warranties and prevails over any conflicting or additional terms of any quote, order, acknowledgment, or other communication between the parties relating to its subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. -Please contact Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054 if you have questions. - +Please contact Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054 if you have questions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_92.yml b/src/licensedcode/data/rules/proprietary-license_92.yml deleted file mode 100644 index 026d91ee34d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_92.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.java.net/ - - http://www.sun.com/service/servicelist diff --git a/src/licensedcode/data/rules/proprietary-license_93.RULE b/src/licensedcode/data/rules/proprietary-license_93.RULE index 274369424b4..cc85695fa6a 100644 --- a/src/licensedcode/data/rules/proprietary-license_93.RULE +++ b/src/licensedcode/data/rules/proprietary-license_93.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + The license below extends only to copyright in the software and shall not be construed as granting a license to any other intellectual property including but not limited to intellectual diff --git a/src/licensedcode/data/rules/proprietary-license_93.yml b/src/licensedcode/data/rules/proprietary-license_93.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_93.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_94.RULE b/src/licensedcode/data/rules/proprietary-license_94.RULE index 09afacf1586..5d6f22f6258 100644 --- a/src/licensedcode/data/rules/proprietary-license_94.RULE +++ b/src/licensedcode/data/rules/proprietary-license_94.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyright laws +ignorable_holders: + - laws +--- + Software License Agreement The software supplied herewith by Microchip Technology Incorporated @@ -31,4 +41,4 @@ BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, HARM TO YOUR EQUIPMENT, COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), ANY CLAIMS FOR -INDEMNITY OR CONTRIBUTION, OR OTHER SIMILAR COSTS. \ No newline at end of file +INDEMNITY OR CONTRIBUTION, OR OTHER SIMILAR COSTS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_94.yml b/src/licensedcode/data/rules/proprietary-license_94.yml deleted file mode 100644 index 816973a027f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_94.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyright laws -ignorable_holders: - - laws diff --git a/src/licensedcode/data/rules/proprietary-license_95.RULE b/src/licensedcode/data/rules/proprietary-license_95.RULE index cbbfc055378..2d99a31bc2c 100644 --- a/src/licensedcode/data/rules/proprietary-license_95.RULE +++ b/src/licensedcode/data/rules/proprietary-license_95.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + This software can be used only for research purposes. For commercial purposes, be aware that there is a US patent on the main algorithm itself: \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_95.yml b/src/licensedcode/data/rules/proprietary-license_95.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_96.RULE b/src/licensedcode/data/rules/proprietary-license_96.RULE index e594a2fa87c..c39be7cf0c6 100644 --- a/src/licensedcode/data/rules/proprietary-license_96.RULE +++ b/src/licensedcode/data/rules/proprietary-license_96.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright 2000 Wizards of the Coast, Inc 'Wizards + - Copyright 2000, Wizards of the Coast, Inc. +ignorable_holders: + - Wizards of the Coast, Inc 'Wizards + - Wizards of the Coast, Inc. +--- + OPEN GAME LICENSE Version 1.0a The following text is the property of Wizards of the Coast, Inc. and is Copyright 2000 Wizards of the Coast, Inc ("Wizards"). All Rights Reserved. @@ -31,5 +43,4 @@ The following text is the property of Wizards of the Coast, Inc. and is Copyrigh 14 Reformation: If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. 15 COPYRIGHT NOTICE -Open Game License v 1.0 Copyright 2000, Wizards of the Coast, Inc. - +Open Game License v 1.0 Copyright 2000, Wizards of the Coast, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_96.yml b/src/licensedcode/data/rules/proprietary-license_96.yml deleted file mode 100644 index de89beba096..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_96.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright 2000 Wizards of the Coast, Inc 'Wizards - - Copyright 2000, Wizards of the Coast, Inc. -ignorable_holders: - - Wizards of the Coast, Inc 'Wizards - - Wizards of the Coast, Inc. diff --git a/src/licensedcode/data/rules/proprietary-license_97.RULE b/src/licensedcode/data/rules/proprietary-license_97.RULE index a62186b1612..ec38fdd8f80 100644 --- a/src/licensedcode/data/rules/proprietary-license_97.RULE +++ b/src/licensedcode/data/rules/proprietary-license_97.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + "Permission to copy this software, to modify it, to redistribute it," "to distribute modified versions, and to use it for any purpose is" @@ -19,4 +25,4 @@ "written consent in each case." "5. These RGB colour formulations may not be used to the detriment of" -"Resene Paints Ltd." +"Resene Paints Ltd." \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_97.yml b/src/licensedcode/data/rules/proprietary-license_97.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_98.RULE b/src/licensedcode/data/rules/proprietary-license_98.RULE index 1048bac5159..43df70f1114 100644 --- a/src/licensedcode/data/rules/proprietary-license_98.RULE +++ b/src/licensedcode/data/rules/proprietary-license_98.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + * License: * * Redistribution and use in source and binary forms, with or without @@ -32,4 +38,4 @@ * 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. + * POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_98.yml b/src/licensedcode/data/rules/proprietary-license_98.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_99.RULE b/src/licensedcode/data/rules/proprietary-license_99.RULE index 6a0c97334b8..d9059007520 100644 --- a/src/licensedcode/data/rules/proprietary-license_99.RULE +++ b/src/licensedcode/data/rules/proprietary-license_99.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Personal, non-commercial use is generally permitted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_99.yml b/src/licensedcode/data/rules/proprietary-license_99.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_against-drm.RULE b/src/licensedcode/data/rules/proprietary-license_against-drm.RULE index 8e7882d8f05..0aa9639ce7a 100644 --- a/src/licensedcode/data/rules/proprietary-license_against-drm.RULE +++ b/src/licensedcode/data/rules/proprietary-license_against-drm.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + 1. Definitions Access control mechanism: a technological measure which, in the ordinary course of its operation, requires the application of information, or a process or a treatment, with the authority of the copyright owner or related rights owner, to gain access to the work. diff --git a/src/licensedcode/data/rules/proprietary-license_against-drm.yml b/src/licensedcode/data/rules/proprietary-license_against-drm.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_against-drm.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_1.RULE index 9c4f89fd0c7..9af3ebca29b 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license AND apache-2.0 +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/master/LICENSE +ignorable_urls: + - http://www.apache.org/licenses + - http://www.reversepoco.co.uk/ +ignorable_emails: + - admin@reversepoco.co.uk +--- + LICENCE AND SERVICES AGREEMENT READ CAREFULLY: diff --git a/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_1.yml b/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_1.yml deleted file mode 100644 index 1a9f7da7392..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license AND apache-2.0 -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/master/LICENSE -ignorable_urls: - - http://www.apache.org/licenses - - http://www.reversepoco.co.uk/ -ignorable_emails: - - admin@reversepoco.co.uk diff --git a/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_2.RULE b/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_2.RULE index 3d51f740e4c..6d735c294b8 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license AND apache-2.0 +is_license_notice: yes +relevance: 100 +notes: https://raw.githubusercontent.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/master/LICENSE +ignorable_urls: + - http://www.reversepoco.co.uk/ + - https://www.apache.org/licenses +ignorable_emails: + - admin@reversepoco.co.uk +--- + LICENCE AND SERVICES AGREEMENT READ CAREFULLY: diff --git a/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_2.yml b/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_2.yml deleted file mode 100644 index 5d1a2d00947..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_apache-2.0_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license AND apache-2.0 -is_license_notice: yes -relevance: 100 -notes: https://raw.githubusercontent.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/master/LICENSE -ignorable_urls: - - http://www.reversepoco.co.uk/ - - https://www.apache.org/licenses -ignorable_emails: - - admin@reversepoco.co.uk diff --git a/src/licensedcode/data/rules/proprietary-license_and_bsd-new_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_bsd-new_1.RULE index 11e7afaf084..ed20cb6b692 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_bsd-new_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_bsd-new_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license AND bsd-new +is_license_text: yes +relevance: 100 +--- + * The license below extends only to copyright in the software and shall * not be construed as granting a license to any other intellectual * property including but not limited to intellectual property relating diff --git a/src/licensedcode/data/rules/proprietary-license_and_bsd-new_1.yml b/src/licensedcode/data/rules/proprietary-license_and_bsd-new_1.yml deleted file mode 100644 index 6e9cc40716c..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_bsd-new_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license AND bsd-new -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_and_bsd-new_sage.RULE b/src/licensedcode/data/rules/proprietary-license_and_bsd-new_sage.RULE index 7a3669373f2..120af5e27ae 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_bsd-new_sage.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_bsd-new_sage.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license AND bsd-new +is_license_text: yes +--- + does not charge for use of the Software licensed herein. Charges for any other software or services will be set forth in a separate written agreement @@ -65,4 +70,4 @@ devices, and to certify to in writing that the foregoing duties have been performed and that you will not in any way use or permit the use of the Software. -This Agreement shall be governed by the laws of the State of California. +This Agreement shall be governed by the laws of the State of California. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_and_bsd-new_sage.yml b/src/licensedcode/data/rules/proprietary-license_and_bsd-new_sage.yml deleted file mode 100644 index 5744e2990ca..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_bsd-new_sage.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license AND bsd-new -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_1.RULE index 67553a44f78..6011e3cd29d 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: proprietary-license AND cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_copyrights: + - (c) Qualys, Inc. +ignorable_holders: + - Qualys, Inc. +ignorable_urls: + - http://cre-ativecommons.org/licenses/by/3.0/us + - http://en.wikipedia.org/wiki/Robots_Exclusion_Standard + - http://www.ssllabs.com/ + - https://www.qualys.com/privacy.We +--- + Qualys SSL Labs Terms of Use v2.2!By accessing, browsing or using this website, and/or downloading any of its software, content or informa-tion, you acknowledge that you have read, understand and agree to be bound by these terms of use. If you do not agree to all of these terms, do not use this website and/or its software, content or information.The SSL Labs Website (“Site”) is a service made available by Qualys, Inc., including its subsidiaries (“Qualys”). All software, documentation, survey information, including the summarization of configuration information of web-servers provided to the Site, and other materials provided on and through this Site (“Content”) may be used only under the following terms and conditions (“Terms of Use”) and any applica-ble licenses. Qualys does not want to receive confidential information from you through this Site. ANY INFORMATION OR MATERIAL SENT TO THIS SITE WILL BE DEEMED NOT TO BE CONFIDENTIAL. You acknowledge that you are responsible for the Content that you submit, not Qualys, have full respon-sibility for that Content, including its legality, reliability, appropriateness, originality, patent and copyright.No Unlawful or Prohibited UseAs a condition of your use of the Site or its Content, you will not use the Site or its Content for any pur-pose that is unlawful, unethical, inappropriate or prohibited by these terms, conditions, and notices or any applicable law. You may not use the Site or its Content in any manner that could damage, disable, over-burden, or impair any Qualys server, or the network(s) connected to any Qualys server, or interfere with any other party's use and enjoyment of any services. You may not attempt to gain unauthorized access to the Site or its Content, other accounts, computer systems or networks connected to any Qualys server or the Site, through hacking, password mining or any other means. Notice Specific to Content Available On This SitePermission to use Content (such as surveys, white papers, press releases, datasheets and FAQs) from the Site is granted and shall be licensed under a Creative Commons Attribution 3.0 License (http://cre-ativecommons.org/licenses/by/3.0/us/). Content specified above does not include the design or layout of the Site, Qualys.com Web site or any other Qualys owned, operated, licensed or controlled site. Elements of Qualys Web sites are protected by trade dress, trademark, unfair competition, and other laws and may not be copied or imitated in whole or in part. No logo, graphic, sound or image from any Qualys Web site may be copied or retransmitted un-less expressly permitted by Qualys.Username, Password, SecurityIf the Site or any part thereof requires you to create or submit a username and password, you must com-plete the registration process by providing Qualys with current, complete and accurate information as prompted by the applicable registration enrollment form. You may be prompted to choose a username and password, or Qualys may randomly generate a password for you. You acknowledge and agree to be entirely responsible for maintaining the confidentiality of your password. Furthermore, you are entirely responsible for any all activities that occur under/or with your username and password. You agree to noti-fy Qualys immediately of any unauthorized use of your username or password of any breach of security. Qualys will not be liable for any loss that you may incur as a result of someone else using your username or password, either with or without your knowledge.Qualys SSL Labs Terms of Use v2.2 Third Party Services or ResourcesThe Site may contain content or services provided by third parties and/or links to third party services, website or other resources. Qualys is not responsible or liable for the availability, accuracy, functionality, adherence to third party policies, or legality of, and Qualys does not endorse such websites or resources, or the content, products or services available from such websites. You are solely responsible for and as-sume all risk arising from your use of any such websites, services or resources.Application Program Interface (“API”) LicenseSubject to the terms and conditions of this agreement (“Agreement”), Qualys grants to you a non-exclu-sive, non-transferable, limited license to use the API(s) only as expressly allowed herein.RestrictionsYou are allowed to: (i)use the API only to inspect only sites and servers whose owners have given you permission to do so;(ii)integrate the API with freely-downloadable non-commercial client and server tools and libraries released under an OSI-approved open source license, provided that you also:a)on startup (if applicable) and in documentation, inform the user of these terms and condi-tions;b)on startup (if applicable) and in documentation, inform the user that the tool works by sending assessment requests to remote SSL Labs servers and that their information will be shared with us;c)on startup (if applicable) and before submitting any assessment requests, show to the user all messages sent by SSL Labs servers in the “info” API request;d)obtain our permission before you use the name “SSL Labs” as part of the name of your project;e)If we give you the permission to use the “SSL Labs” as part of your name, inform the user that your project is not affiliated with or officially supported by SSL Labs.You are not allowed, without our express permission, to:(i)use the API for commercial purposes;(ii)use the API on a public web site;(iii)publish any information received from us via the APIs without the owner’s express permission;(iv)distribute, proxy, or otherwise make the API available for access or use by any person or entity other than your authorized employees, including but not limited to acting as a service bureau or developing a competing product or service offering.Infrastructure ProvidersWe are also happy to grant relaxed licensing terms to infrastructure providers who wish to help their cus-tomers achieve better security.!Qualys SSL Labs Terms of Use v2.2 To qualify, companies must satisfy the following conditions:!•Your company is a hosting provider, certification authority, content delivery network, or a web devel-opment agency. (If you’re not one of these but feel that you qualify anyway, please get in touch.)!•The scanning service (that relies on SSL Labs APIs) must be offered at no cost to all your cus-tomers, irrespective of the level of service and/or products they have with you.!•Full scanning results can be delivered only by linking to the reports on the SSL Labs web site.!•Report summaries can be delivered via email or a web page.!•Every communication with your customers should contain the following text: “SSL/TLS server as-sessment service provided in partnership with Qualys SSL Labs (www.ssllabs.com).”!OwnershipThis Agreement does not grant to You any ownership interest in the API(s). Rather, You have a license to use the API as provided in this Agreement. You acknowledge and agree that Qualys owns all right, title, and interest in the API(s), the Site and the Content and You will not contest those rights or engage in any conduct contrary to those rights. Any copy, modification, revision, enhancement, adaption, translation, or derivative work of or created from the API, the Site, or Content made by or at the direction of You shall be owned solely and exclusively by Qualys, as shall all patent, copyrights, trade secret rights, trademark rights, and all proprietary rights, worldwide (all of the foregoing rights taken together being referred to col-lectively herein as “Intellectual Property Rights”) therein and thereto.CopyrightThe API(s), the Site and the Content contain material that is protected by United States copyright law and trade secret law, and by international treating provisions. All rights not granted to You by this Agreement are expressly reserved by Qualys. You shall not remove any proprietary notice of Qualys from the API(s), the Site, or the Content nor any copy of the same.PrivacyQualys, in providing the Site and/or the Content, may collect certain information in accordance with Qualys’ Privacy Policy at: https://www.qualys.com/privacy.We may collect hostnames, IP addresses, and other information submitted to us. We will not share that information with a third-party or otherwise publish it. We may use the collected information for the follow-ing purposes:•Periodic pro-active scanning to have reports ready when they are requested.•Store reports on third-party systems for the purpose of caching and web site load distribution only (e.g., on a CDN).If you’re using our APIs to automate web site assessments, your IP address information will be forwarded to the tested servers. For example, for HTTP, we embed the IP address in the User-Agent request head-er. We believe this is not a privacy issue because our terms permit API usage only with scanning permis-sion. API requests that retrieve cached results won’t forward any IP address information, even if we have to initiate a new assessment because we don’t have a report ready. For more information on how to en-sure that forwarding never takes place, please refer to the SSL Labs APIs documentation. Manual web site usage will not result in your IP address being forwarded to the tested servers.QUALYS OR LICENSORS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY OF THE IN-FORMATION CONTAINED ON THE SITE, THE API(S) AND/OR IN THE CONTENT. THE CONTENT Qualys SSL Labs Terms of Use v2.2 diff --git a/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_1.yml b/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_1.yml deleted file mode 100644 index 3a8f9730b60..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: proprietary-license AND cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_copyrights: - - (c) Qualys, Inc. -ignorable_holders: - - Qualys, Inc. -ignorable_urls: - - http://cre-ativecommons.org/licenses/by/3.0/us - - http://en.wikipedia.org/wiki/Robots_Exclusion_Standard - - http://www.ssllabs.com/ - - https://www.qualys.com/privacy.We diff --git a/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_2.RULE b/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_2.RULE index 628c6a34ed0..0b6c2dd17e8 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_2.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license AND cc-by-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/licenses/by/3.0/us/ + - https://www.ssllabs.com/downloads/Qualys_SSL_Labs_Terms_of_Use.pdf +--- + # The client simulation data comes from SSLlabs and is licensed to the 'Qualys SSL Labs # Terms of Use' (v2.2), see https://www.ssllabs.com/downloads/Qualys_SSL_Labs_Terms_of_Use.pdf, # stating a CC BY 3.0 US license: https://creativecommons.org/licenses/by/3.0/us/ diff --git a/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_2.yml b/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_2.yml deleted file mode 100644 index d75ad71e63f..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_cc-by-3.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license AND cc-by-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/licenses/by/3.0/us/ - - https://www.ssllabs.com/downloads/Qualys_SSL_Labs_Terms_of_Use.pdf diff --git a/src/licensedcode/data/rules/proprietary-license_and_cc-by-nc-nd-3.0_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_cc-by-nc-nd-3.0_1.RULE index daa4c502eb4..0a721b1f51c 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_cc-by-nc-nd-3.0_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_cc-by-nc-nd-3.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license AND cc-by-nc-nd-3.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://creativecommons.org/licenses/by-nc-nd/3.0/ + - http://www.iconarchive.com/show/soft-scraps-icons-by-deleket.html +--- + Scrap Icons by Deleket http://www.iconarchive.com/show/soft-scraps-icons-by-deleket.html @@ -8,4 +17,4 @@ License: CC Attribution-Noncommercial-No Derivate 3.0 http://creativecommons.org/licenses/by-nc-nd/3.0/ -Commercial usage: Allowed (Author Approval required -> Visit artist homepage for details). +Commercial usage: Allowed (Author Approval required -> Visit artist homepage for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_and_cc-by-nc-nd-3.0_1.yml b/src/licensedcode/data/rules/proprietary-license_and_cc-by-nc-nd-3.0_1.yml deleted file mode 100644 index 66b3aa6d4a7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_cc-by-nc-nd-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license AND cc-by-nc-nd-3.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://creativecommons.org/licenses/by-nc-nd/3.0/ - - http://www.iconarchive.com/show/soft-scraps-icons-by-deleket.html diff --git a/src/licensedcode/data/rules/proprietary-license_and_generic-cla_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_generic-cla_1.RULE index 6c3cb0ef86a..725638fd41a 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_generic-cla_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_generic-cla_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license AND generic-cla +is_license_notice: yes +relevance: 100 +--- + Use of this code is subject to our Terms and Conditions. By contributing code to this repository you are assigning all intellectual property rights including copyright to us. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_and_generic-cla_1.yml b/src/licensedcode/data/rules/proprietary-license_and_generic-cla_1.yml deleted file mode 100644 index 06f29cc7c09..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_generic-cla_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license AND generic-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_and_gpl-1.0-plus_and_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_gpl-1.0-plus_and_lgpl-2.0-plus_1.RULE index 8bfa9551b7f..c660ad4cfff 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_gpl-1.0-plus_and_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_gpl-1.0-plus_and_lgpl-2.0-plus_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license AND gpl-1.0-plus AND lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +notes: GPL and LGPL ref in commercial license +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/copyleft/lesser.html +--- + GENERAL PUBLIC LICENSE/LESSER GENERAL PUBLIC LICENSE. Certain components of the Software or Applications may be subject to the GNU GPL or LGPL terms and conditions available for viewing at https://www.gnu.org/copyleft/gpl.html and diff --git a/src/licensedcode/data/rules/proprietary-license_and_gpl-1.0-plus_and_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/proprietary-license_and_gpl-1.0-plus_and_lgpl-2.0-plus_1.yml deleted file mode 100644 index 8dd239e53ee..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_gpl-1.0-plus_and_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license AND gpl-1.0-plus AND lgpl-2.0-plus -is_license_notice: yes -relevance: 100 -notes: GPL and LGPL ref in commercial license -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/proprietary-license_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_gpl-2.0_1.RULE index 95b372fcef8..70947110bf2 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_gpl-2.0_1.RULE @@ -1,7 +1,16 @@ +--- +license_expression: proprietary-license AND gpl-2.0 +is_license_notice: yes +relevance: 100 +minimum_coverage: 50 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.txt +--- + SOFTWARE LICENSE AGREEMENT IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. Do not use or load this software and any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software. -* The Linux DRM kernel source code, when included with this Software, is not subject to the terms of this Agreement but is subject to the ?GNU General Public License Version 2?, which may be obtained at the following web site: https://www.gnu.org/licenses/gpl.txt +* The Linux DRM kernel source code, when included with this Software, is not subject to the terms of this Agreement but is subject to the ?GNU General Public License Version 2?, which may be obtained at the following web site: https://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/proprietary-license_and_gpl-2.0_1.yml deleted file mode 100644 index 1de6f6100ca..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_gpl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license AND gpl-2.0 -is_license_notice: yes -relevance: 100 -minimum_coverage: 50 -ignorable_urls: - - https://www.gnu.org/licenses/gpl.txt diff --git a/src/licensedcode/data/rules/proprietary-license_and_lgpl-2.1_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_lgpl-2.1_or_gpl-2.0_1.RULE index 1bfb410a5f9..dab7ec23dc3 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_lgpl-2.1_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_lgpl-2.1_or_gpl-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license AND (lgpl-2.1 OR gpl-2.0) +is_license_notice: yes +--- + The Fraunhofer AAC library is licensed under a license incompatible to the GPL and is not known to be compatible to the LGPL. Therefore, you have to pass @code{--enable-nonfree} to configure to use it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_and_lgpl-2.1_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/proprietary-license_and_lgpl-2.1_or_gpl-2.0_1.yml deleted file mode 100644 index fa3300996cd..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_lgpl-2.1_or_gpl-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license AND (lgpl-2.1 OR gpl-2.0) -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_and_other-permissive_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_other-permissive_1.RULE index 770d2da01bc..eabc519f0f0 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_other-permissive_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: proprietary-license AND other-permissive +is_license_text: yes +relevance: 100 +notes: Older w3c IPR text +ignorable_copyrights: + - Copyright (c) 1994-2002 W3C +ignorable_holders: + - W3C +ignorable_emails: + - site-policy@w3.org +--- + W3C (R) Intellectual Rights Notice and Legal Disclaimers This page includes notices and disclaimers related to: diff --git a/src/licensedcode/data/rules/proprietary-license_and_other-permissive_1.yml b/src/licensedcode/data/rules/proprietary-license_and_other-permissive_1.yml deleted file mode 100644 index c799f50382b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_other-permissive_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license AND other-permissive -is_license_text: yes -relevance: 100 -notes: Older w3c IPR text -ignorable_copyrights: - - Copyright (c) 1994-2002 W3C -ignorable_holders: - - W3C -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/proprietary-license_and_public-domain_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_public-domain_1.RULE index b7352ba90ff..e58c3557016 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_public-domain_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_public-domain_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: proprietary-license AND public-domain +is_license_notice: yes +relevance: 100 +notes: qmail license is confusing an therefore reported as proprietary for now It has been dedicated + to the public domain in 2007 +--- + Like any other piece of software (and information generally), qmail comes with NO WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_and_public-domain_1.yml b/src/licensedcode/data/rules/proprietary-license_and_public-domain_1.yml deleted file mode 100644 index e6f18cb8768..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_public-domain_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license AND public-domain -is_license_notice: yes -relevance: 100 -notes: qmail license is confusing an therefore reported as proprietary for now It has been dedicated - to the public domain in 2007 diff --git a/src/licensedcode/data/rules/proprietary-license_and_public-domain_2.RULE b/src/licensedcode/data/rules/proprietary-license_and_public-domain_2.RULE index 09ed96ece69..9b37f8a7a38 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_public-domain_2.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_public-domain_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: proprietary-license AND public-domain +is_license_notice: yes +relevance: 100 +notes: qmail license is confusing an therefore reported as proprietary for now It has been dedicated + to the public domain in 2007 +--- + Like any other piece of software (and information generally), the qmail system comes with NO WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_and_public-domain_2.yml b/src/licensedcode/data/rules/proprietary-license_and_public-domain_2.yml deleted file mode 100644 index e6f18cb8768..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_public-domain_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license AND public-domain -is_license_notice: yes -relevance: 100 -notes: qmail license is confusing an therefore reported as proprietary for now It has been dedicated - to the public domain in 2007 diff --git a/src/licensedcode/data/rules/proprietary-license_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/proprietary-license_and_warranty-disclaimer_1.RULE index 73969179bfa..55de130ee50 100644 --- a/src/licensedcode/data/rules/proprietary-license_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_and_warranty-disclaimer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license AND warranty-disclaimer +is_license_notice: yes +--- + DISCLAIMER OF WARRANTY THIS SOFTWARE DEVELOPMENT KIT IS SOLD "AS IS" AND WITHOUT WARRANTIES AS TO PERFORMANCE OR MERCHANTABILITY. diff --git a/src/licensedcode/data/rules/proprietary-license_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/proprietary-license_and_warranty-disclaimer_1.yml deleted file mode 100644 index 470cf6984e7..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license AND warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_confidential.RULE b/src/licensedcode/data/rules/proprietary-license_confidential.RULE index ee763bcf30e..95ea5dd15b1 100644 --- a/src/licensedcode/data/rules/proprietary-license_confidential.RULE +++ b/src/licensedcode/data/rules/proprietary-license_confidential.RULE @@ -1,5 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The source code for this software is confidential and proprietary. You shall not disclose such confidential information and shall use it only in accordance with the terms of the license agreement you - have with . + have with . \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_confidential.yml b/src/licensedcode/data/rules/proprietary-license_confidential.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_confidential.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_fr_117.RULE b/src/licensedcode/data/rules/proprietary-license_fr_117.RULE index 7284149183f..aa7bf1bf32b 100644 --- a/src/licensedcode/data/rules/proprietary-license_fr_117.RULE +++ b/src/licensedcode/data/rules/proprietary-license_fr_117.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +language: fr +is_license_text: yes +relevance: 100 +--- + Ce produit ou document est prote'ge' par un copyright et distribue' avec des licences qui en restreignent l'utilisation, la copie, la distribution, et la de'compilation. Aucune partie de ce produit ou de sa documentation diff --git a/src/licensedcode/data/rules/proprietary-license_fr_117.yml b/src/licensedcode/data/rules/proprietary-license_fr_117.yml deleted file mode 100644 index 247e4ef70f1..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_fr_117.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -language: fr -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_fr_119.RULE b/src/licensedcode/data/rules/proprietary-license_fr_119.RULE index cd06f664f41..548c93dfe77 100644 --- a/src/licensedcode/data/rules/proprietary-license_fr_119.RULE +++ b/src/licensedcode/data/rules/proprietary-license_fr_119.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +language: fr +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.sun.com/patents +--- + Sun Microsystems, Inc. a les droits de proprie'te' intellectuels relatants a` la technologie incorpore'e dans le produit qui est de'crit dans ce document. En particulier, et sans la limitation, ces droits de diff --git a/src/licensedcode/data/rules/proprietary-license_fr_119.yml b/src/licensedcode/data/rules/proprietary-license_fr_119.yml deleted file mode 100644 index a79d48c68a4..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_fr_119.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -language: fr -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.sun.com/patents diff --git a/src/licensedcode/data/rules/proprietary-license_ibm.RULE b/src/licensedcode/data/rules/proprietary-license_ibm.RULE index 925dbbc9013..c1724d8b5c0 100644 --- a/src/licensedcode/data/rules/proprietary-license_ibm.RULE +++ b/src/licensedcode/data/rules/proprietary-license_ibm.RULE @@ -1 +1,7 @@ -Licensed Materials - Property of IBM +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 99 +--- + +Licensed Materials - Property of IBM \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_ibm.yml b/src/licensedcode/data/rules/proprietary-license_ibm.yml deleted file mode 100644 index a1a82e33576..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_ibm.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary-license_ibm2.RULE b/src/licensedcode/data/rules/proprietary-license_ibm2.RULE index 78958bac376..f2a40a2bd66 100644 --- a/src/licensedcode/data/rules/proprietary-license_ibm2.RULE +++ b/src/licensedcode/data/rules/proprietary-license_ibm2.RULE @@ -1 +1,7 @@ -Licensed Materials - Property of +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +Licensed Materials - Property of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_ibm2.yml b/src/licensedcode/data/rules/proprietary-license_ibm2.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_ibm2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_not_bcm.RULE b/src/licensedcode/data/rules/proprietary-license_not_bcm.RULE index 50858825296..5829747f2af 100644 --- a/src/licensedcode/data/rules/proprietary-license_not_bcm.RULE +++ b/src/licensedcode/data/rules/proprietary-license_not_bcm.RULE @@ -1,5 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + No portions of this material may be reproduced in any form without the written permission of All information contained in this document is Group, Inc. company -private, proprietary, and trade secret. +private, proprietary, and trade secret. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_not_bcm.yml b/src/licensedcode/data/rules/proprietary-license_not_bcm.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_not_bcm.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_not_unknown_73.RULE b/src/licensedcode/data/rules/proprietary-license_not_unknown_73.RULE index f54d31cafec..f4a04a0af60 100644 --- a/src/licensedcode/data/rules/proprietary-license_not_unknown_73.RULE +++ b/src/licensedcode/data/rules/proprietary-license_not_unknown_73.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + OEM License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_not_unknown_73.yml b/src/licensedcode/data/rules/proprietary-license_not_unknown_73.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_not_unknown_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_nuget_url_1.RULE b/src/licensedcode/data/rules/proprietary-license_nuget_url_1.RULE index f6769cc3718..cf8db50a66d 100644 --- a/src/licensedcode/data/rules/proprietary-license_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/ni/VireoSDK/blob/master/LICENSE.txt +--- + https://github.com/ni/VireoSDK/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_nuget_url_1.yml b/src/licensedcode/data/rules/proprietary-license_nuget_url_1.yml deleted file mode 100644 index 79551b4b346..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/ni/VireoSDK/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_1.RULE b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_1.RULE index f959b376b46..baa87c05b92 100644 --- a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license OR commercial-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://dryicons.com/ + - http://dryicons.com/terms/#free-license +--- + Licensing The usage of DryIcons' work (icons, icon sets and graphics) is limited to the terms of the "Free License" and "Commercial License" use. diff --git a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_1.yml b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_1.yml deleted file mode 100644 index 88f5329e39a..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license OR commercial-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://dryicons.com/ - - http://dryicons.com/terms/#free-license diff --git a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_2.RULE b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_2.RULE index 1c40b48ac82..ff86ad9c7b0 100644 --- a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license OR commercial-license +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://realm.io/pricing +--- + Redistribution and use in binary form, with or without modification, is permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_2.yml b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_2.yml deleted file mode 100644 index c335816fa51..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license OR commercial-license -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://realm.io/pricing diff --git a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_3.RULE b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_3.RULE index e8ce04fd0e3..9aa916e8e50 100644 --- a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_3.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license OR commercial-license +is_license_notice: yes +relevance: 100 +--- + Free for non-commercial use. Commercial use possible. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_3.yml b/src/licensedcode/data/rules/proprietary-license_or_commercial-license_3.yml deleted file mode 100644 index 4197ff2ee86..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_or_commercial-license_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary-license_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/proprietary-license_or_gpl-3.0_1.RULE index 3a9ad00a6d3..45398d50949 100644 --- a/src/licensedcode/data/rules/proprietary-license_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_or_gpl-3.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license OR gpl-3.0 +is_license_notice: yes +--- + This Software Development Kit is licensed under the terms of the Steinberg VST3 License, or alternatively under the terms of the General Public License (GPL) Version 3. You may use the Software Development Kit according to either of these licenses as it is diff --git a/src/licensedcode/data/rules/proprietary-license_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/proprietary-license_or_gpl-3.0_1.yml deleted file mode 100644 index e266520739b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_or_gpl-3.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license OR gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary-license_srl1.RULE b/src/licensedcode/data/rules/proprietary-license_srl1.RULE index bed1b5161b0..6be3704cc46 100644 --- a/src/licensedcode/data/rules/proprietary-license_srl1.RULE +++ b/src/licensedcode/data/rules/proprietary-license_srl1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - Copyright (c) Steinwurf ApS and its licensors. 2011-2012 +ignorable_holders: + - Steinwurf ApS and its licensors +--- + STEINWURF RESEARCH LICENSE ========================== @@ -50,5 +59,4 @@ IV. GENERAL TERMS 4. License and Copyright Notices - The above copyright notice and License notice must be included in all copies or substantial portions of the Software. - + The above copyright notice and License notice must be included in all copies or substantial portions of the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_srl1.yml b/src/licensedcode/data/rules/proprietary-license_srl1.yml deleted file mode 100644 index 002019ef9ad..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_srl1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - Copyright (c) Steinwurf ApS and its licensors. 2011-2012 -ignorable_holders: - - Steinwurf ApS and its licensors diff --git a/src/licensedcode/data/rules/proprietary-license_srl2.RULE b/src/licensedcode/data/rules/proprietary-license_srl2.RULE index 7970bd97008..d1b64d91edf 100644 --- a/src/licensedcode/data/rules/proprietary-license_srl2.RULE +++ b/src/licensedcode/data/rules/proprietary-license_srl2.RULE @@ -1,4 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +referenced_filenames: + - LICENSE.rst +ignorable_urls: + - http://www.steinwurf.com/licensing +--- + // Distributed under the "STEINWURF RESEARCH LICENSE 1.0". // See accompanying file LICENSE.rst or -// http://www.steinwurf.com/licensing - +// http://www.steinwurf.com/licensing \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_srl2.yml b/src/licensedcode/data/rules/proprietary-license_srl2.yml deleted file mode 100644 index 6c7383265bf..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_srl2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -referenced_filenames: - - LICENSE.rst -ignorable_urls: - - http://www.steinwurf.com/licensing diff --git a/src/licensedcode/data/rules/proprietary-license_unknown_13.RULE b/src/licensedcode/data/rules/proprietary-license_unknown_13.RULE index 29b78faf0e4..7a95dbdee30 100644 --- a/src/licensedcode/data/rules/proprietary-license_unknown_13.RULE +++ b/src/licensedcode/data/rules/proprietary-license_unknown_13.RULE @@ -1 +1,6 @@ +--- +license_expression: unknown +is_license_notice: yes +--- + This project is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Where permitted, Microsoft licenses the Third Party IP to you under the licensing terms for the Microsoft product. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_unknown_13.yml b/src/licensedcode/data/rules/proprietary-license_unknown_13.yml deleted file mode 100644 index 54d1d6c4e9b..00000000000 --- a/src/licensedcode/data/rules/proprietary-license_unknown_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unknown -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary.RULE b/src/licensedcode/data/rules/proprietary.RULE index 00f12a093f0..bbfb034d9ab 100644 --- a/src/licensedcode/data/rules/proprietary.RULE +++ b/src/licensedcode/data/rules/proprietary.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Found in some old debian specs +--- + Copyright: Restricted \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary.yml b/src/licensedcode/data/rules/proprietary.yml deleted file mode 100644 index e54bbc202db..00000000000 --- a/src/licensedcode/data/rules/proprietary.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Found in some old debian specs diff --git a/src/licensedcode/data/rules/proprietary_1.RULE b/src/licensedcode/data/rules/proprietary_1.RULE index 0f8534177ba..50321ed8cdd 100644 --- a/src/licensedcode/data/rules/proprietary_1.RULE +++ b/src/licensedcode/data/rules/proprietary_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + No part of this software, either material or conceptual may be copied or distributed, transmitted, transcribed, stored in a retrieval system or translated into any human or computer diff --git a/src/licensedcode/data/rules/proprietary_1.yml b/src/licensedcode/data/rules/proprietary_1.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_10.RULE b/src/licensedcode/data/rules/proprietary_10.RULE index e85b022b361..b1e557f27c8 100644 --- a/src/licensedcode/data/rules/proprietary_10.RULE +++ b/src/licensedcode/data/rules/proprietary_10.RULE @@ -1,5 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: IBM Device Driver Source Kit for OS/2 +--- + /* The following IBM OS/2 source code is provided to you solely for */ /* the purpose of assisting you in your development of OS/2 device */ /* drivers. You may use this code in accordance with the IBM License */ /* Agreement provided in the IBM Device Driver Source Kit for OS/2. This */ -/* Copyright statement may not be removed. */ +/* Copyright statement may not be removed. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_10.yml b/src/licensedcode/data/rules/proprietary_10.yml deleted file mode 100644 index cb4f10bc679..00000000000 --- a/src/licensedcode/data/rules/proprietary_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: IBM Device Driver Source Kit for OS/2 diff --git a/src/licensedcode/data/rules/proprietary_100.RULE b/src/licensedcode/data/rules/proprietary_100.RULE index 382a4c8881b..c9e0bcbe5e3 100644 --- a/src/licensedcode/data/rules/proprietary_100.RULE +++ b/src/licensedcode/data/rules/proprietary_100.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.confluent.io/confluent-community-license +--- + ~ Licensed under the Confluent Community License; you may not use this file ~ except in compliance with the License. You may obtain a copy of the License at ~ diff --git a/src/licensedcode/data/rules/proprietary_100.yml b/src/licensedcode/data/rules/proprietary_100.yml deleted file mode 100644 index de208e10047..00000000000 --- a/src/licensedcode/data/rules/proprietary_100.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.confluent.io/confluent-community-license diff --git a/src/licensedcode/data/rules/proprietary_101.RULE b/src/licensedcode/data/rules/proprietary_101.RULE index ea46e05c77a..311e70e0d8f 100644 --- a/src/licensedcode/data/rules/proprietary_101.RULE +++ b/src/licensedcode/data/rules/proprietary_101.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ** Software License Version 1.1 ** ** @@ -15,4 +20,4 @@ ** (1) integrating or incorporating all or part of the code into a product for ** sale or license by, or on behalf of, User to third parties; ** (2) distribution of the binary or source code to third parties for use with -** a commercial product sold or licensed by, or on behalf of, User. +** a commercial product sold or licensed by, or on behalf of, User. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_101.yml b/src/licensedcode/data/rules/proprietary_101.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_101.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_101_1.RULE b/src/licensedcode/data/rules/proprietary_101_1.RULE index 493b599558e..53eef045946 100644 --- a/src/licensedcode/data/rules/proprietary_101_1.RULE +++ b/src/licensedcode/data/rules/proprietary_101_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ** Software License Version 1.0 ** ** diff --git a/src/licensedcode/data/rules/proprietary_101_1.yml b/src/licensedcode/data/rules/proprietary_101_1.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_101_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_102.RULE b/src/licensedcode/data/rules/proprietary_102.RULE index 5f55c69de9a..a3b6eab8917 100644 --- a/src/licensedcode/data/rules/proprietary_102.RULE +++ b/src/licensedcode/data/rules/proprietary_102.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + ** ** Any rights which are not expressly granted in this License are entirely and ** exclusively reserved to and by . You may not rent, lease, diff --git a/src/licensedcode/data/rules/proprietary_102.yml b/src/licensedcode/data/rules/proprietary_102.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/proprietary_102.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_103.RULE b/src/licensedcode/data/rules/proprietary_103.RULE index a059b36d8df..ad6c596fcb8 100644 --- a/src/licensedcode/data/rules/proprietary_103.RULE +++ b/src/licensedcode/data/rules/proprietary_103.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: https://fair.io/#license +--- + Fair Source License, version 0.9 diff --git a/src/licensedcode/data/rules/proprietary_103.yml b/src/licensedcode/data/rules/proprietary_103.yml deleted file mode 100644 index a237d7c610c..00000000000 --- a/src/licensedcode/data/rules/proprietary_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: https://fair.io/#license diff --git a/src/licensedcode/data/rules/proprietary_104.RULE b/src/licensedcode/data/rules/proprietary_104.RULE index 25ed5ff8f6a..b4616bc016f 100644 --- a/src/licensedcode/data/rules/proprietary_104.RULE +++ b/src/licensedcode/data/rules/proprietary_104.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + May not be redistributed without prior written permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_104.yml b/src/licensedcode/data/rules/proprietary_104.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_105.RULE b/src/licensedcode/data/rules/proprietary_105.RULE index 27cb1766a85..69cb6321961 100644 --- a/src/licensedcode/data/rules/proprietary_105.RULE +++ b/src/licensedcode/data/rules/proprietary_105.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + END USER LICENSE AGREEMENT IMPORTANT: PLEASE READ THIS LICENSE CAREFULLY BEFORE USING THIS SOFTWARE. @@ -70,4 +75,4 @@ You agree that may collect and use information gathered in any manner as part o 6. Amendments to this Agreement - reserves the right, at its sole discretion, to modify or replace this Agreement at any time without notice and should not be construed as a commitment by . + reserves the right, at its sole discretion, to modify or replace this Agreement at any time without notice and should not be construed as a commitment by . \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_105.yml b/src/licensedcode/data/rules/proprietary_105.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_105.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_106.RULE b/src/licensedcode/data/rules/proprietary_106.RULE index 60c88c95718..ec3854da8f6 100644 --- a/src/licensedcode/data/rules/proprietary_106.RULE +++ b/src/licensedcode/data/rules/proprietary_106.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The Open Cell Library is provided by Nangate under the following License: Nangate Open Cell Library License, Version 1.0. February 20, 2008 @@ -6,4 +11,4 @@ Permission is hereby granted, free of charge, to any person or organization obta The copyright notices in the Library and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Library, in whole or in part, and all derivative works of the Library, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. The library has been generated using a non-optimized open PDK and is not suited for any commercial purpose. Measuring or benchmarking the Library against any other library or standard cell set is prohibited. Any meaningful library benchmarking must be done in collaboration with Nangate or other providers of optimized and production-ready PDKs. -THE LIBRARY 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE LIBRARY BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE LIBRARY OR THE USE OR OTHER DEALINGS IN THE LIBRARY. +THE LIBRARY 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE LIBRARY BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE LIBRARY OR THE USE OR OTHER DEALINGS IN THE LIBRARY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_106.yml b/src/licensedcode/data/rules/proprietary_106.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_106.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_107.RULE b/src/licensedcode/data/rules/proprietary_107.RULE index 7273e836dbd..96286023d76 100644 --- a/src/licensedcode/data/rules/proprietary_107.RULE +++ b/src/licensedcode/data/rules/proprietary_107.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: see http://www.sql-workbench.net/manual/license.html +--- + 2.3. Restrictions (deviation of the Apache License) The right to use this software is explicitely NOT granted to the governments of the following countries or organizations directly related to them: @@ -14,4 +20,4 @@ The right to use this software is explicitely NOT granted to the governments of Republic of Turkey Chechen Republic -Members of the above mentioned governments or any of its organizations (especially, but not limited to the so called "intelligence" agencies) are NOT ALLOWED to download or use this software. \ No newline at end of file +Members of the above mentioned governments or any of its organizations (especially, but not limited to the so called "intelligence" agencies) are NOT ALLOWED to download or use this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_107.yml b/src/licensedcode/data/rules/proprietary_107.yml deleted file mode 100644 index c0d1d7cea06..00000000000 --- a/src/licensedcode/data/rules/proprietary_107.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: see http://www.sql-workbench.net/manual/license.html diff --git a/src/licensedcode/data/rules/proprietary_108.RULE b/src/licensedcode/data/rules/proprietary_108.RULE index 422066f1fe9..4ae8e6466c4 100644 --- a/src/licensedcode/data/rules/proprietary_108.RULE +++ b/src/licensedcode/data/rules/proprietary_108.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Details pertaining to the * coordinate system have been release in the public domain (see references above). * This code is an independent implementation of the SCH coordinate system @@ -11,4 +16,4 @@ Details pertaining to the * 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. + * DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_108.yml b/src/licensedcode/data/rules/proprietary_108.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_108.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_109.RULE b/src/licensedcode/data/rules/proprietary_109.RULE index c55f9b86fc1..aa09efc0200 100644 --- a/src/licensedcode/data/rules/proprietary_109.RULE +++ b/src/licensedcode/data/rules/proprietary_109.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + DISCLAIMER ================================================================================ This release note as well as the software described in it is furnished under license @@ -9,4 +14,4 @@ that may appear in this document or any software that may be provided in associa with this document. Except as permitted by such license, no part of this document may be reproduced, stored in a retrieval system, or transmitted in any form or by any means without -the express written consent of Corporation. +the express written consent of Corporation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_109.yml b/src/licensedcode/data/rules/proprietary_109.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_109.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_11.RULE b/src/licensedcode/data/rules/proprietary_11.RULE index 947ca99c248..e00d6381ef1 100644 --- a/src/licensedcode/data/rules/proprietary_11.RULE +++ b/src/licensedcode/data/rules/proprietary_11.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: part of old RH distros notices. See https://github.com/nexB/scancode-toolkit/issues/676 + for a discussion +--- + # Any Red Hat trademarks that are incorporated in the source # code or documentation are not subject to the GNU General Public # License and may only be used or replicated with the express permission diff --git a/src/licensedcode/data/rules/proprietary_11.yml b/src/licensedcode/data/rules/proprietary_11.yml deleted file mode 100644 index 2dbe94f47b5..00000000000 --- a/src/licensedcode/data/rules/proprietary_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: part of old RH distros notices. See https://github.com/nexB/scancode-toolkit/issues/676 - for a discussion diff --git a/src/licensedcode/data/rules/proprietary_110.RULE b/src/licensedcode/data/rules/proprietary_110.RULE index 4e44082b8a1..513500a4954 100644 --- a/src/licensedcode/data/rules/proprietary_110.RULE +++ b/src/licensedcode/data/rules/proprietary_110.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: see https://github.com/uboslinux/ubos-admin/blob/cd12629a0fe4f7a4e40b52bbe11d52aa6917ad1f/ubos-admin/LICENSE +--- + PERSONAL PUBLIC LICENSE Version 3 diff --git a/src/licensedcode/data/rules/proprietary_110.yml b/src/licensedcode/data/rules/proprietary_110.yml deleted file mode 100644 index 3edacd30546..00000000000 --- a/src/licensedcode/data/rules/proprietary_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: see https://github.com/uboslinux/ubos-admin/blob/cd12629a0fe4f7a4e40b52bbe11d52aa6917ad1f/ubos-admin/LICENSE diff --git a/src/licensedcode/data/rules/proprietary_111.RULE b/src/licensedcode/data/rules/proprietary_111.RULE index c1fe3bc67f8..076d3e3a24d 100644 --- a/src/licensedcode/data/rules/proprietary_111.RULE +++ b/src/licensedcode/data/rules/proprietary_111.RULE @@ -1 +1,9 @@ -This software is licensed under a modified version of the Apache License, Version 2.0 http://sql-workbench.eu/manual/license.html that restricts the use of the software for certain organizations. \ No newline at end of file +--- +license_expression: proprietary-license +is_license_notice: yes +notes: see http://www.sql-workbench.net/manual/license.html +ignorable_urls: + - http://sql-workbench.eu/manual/license.html +--- + +This software is licensed under a modified version of the Apache License, Version 2.0 http://sql-workbench.eu/manual/license.html that restricts the use of the software for certain organizations. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_111.yml b/src/licensedcode/data/rules/proprietary_111.yml deleted file mode 100644 index 74b6d05023a..00000000000 --- a/src/licensedcode/data/rules/proprietary_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: see http://www.sql-workbench.net/manual/license.html -ignorable_urls: - - http://sql-workbench.eu/manual/license.html diff --git a/src/licensedcode/data/rules/proprietary_112.RULE b/src/licensedcode/data/rules/proprietary_112.RULE index f841613d3e5..668f79c3222 100644 --- a/src/licensedcode/data/rules/proprietary_112.RULE +++ b/src/licensedcode/data/rules/proprietary_112.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_urls: + - http://sql-workbench.eu/manual/license.html +--- + This software is licensed under a modified version of the Apache License, Version 2.0 http://sql-workbench.eu/manual/license.html that restricts the use of the software for certain organizations. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/src/licensedcode/data/rules/proprietary_112.yml b/src/licensedcode/data/rules/proprietary_112.yml deleted file mode 100644 index 7de7b46c7a7..00000000000 --- a/src/licensedcode/data/rules/proprietary_112.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_urls: - - http://sql-workbench.eu/manual/license.html diff --git a/src/licensedcode/data/rules/proprietary_113.RULE b/src/licensedcode/data/rules/proprietary_113.RULE index 7e561087320..2e359570943 100644 --- a/src/licensedcode/data/rules/proprietary_113.RULE +++ b/src/licensedcode/data/rules/proprietary_113.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This document is confidential work and intellectual property of Corporation. Permission to copy, distribute or use any portion of this file is prohibited without the express written consent of Corporation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_113.yml b/src/licensedcode/data/rules/proprietary_113.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_113.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_114.RULE b/src/licensedcode/data/rules/proprietary_114.RULE index 23d44bdd91a..e8725a55a78 100644 --- a/src/licensedcode/data/rules/proprietary_114.RULE +++ b/src/licensedcode/data/rules/proprietary_114.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_114.yml b/src/licensedcode/data/rules/proprietary_114.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_115.RULE b/src/licensedcode/data/rules/proprietary_115.RULE index b6fcadd98f8..9bad9bef5d6 100644 --- a/src/licensedcode/data/rules/proprietary_115.RULE +++ b/src/licensedcode/data/rules/proprietary_115.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - copyrighted work of Comtrol Corporation +ignorable_holders: + - work of Comtrol Corporation +ignorable_emails: + - info@comtrol.com +--- + COMTROL CORPORATION ON THE WORLD WIDE WEB IS PROVIDED SUBJECT TO THE FOLLOWING TERMS AND CONDITIONS: diff --git a/src/licensedcode/data/rules/proprietary_115.yml b/src/licensedcode/data/rules/proprietary_115.yml deleted file mode 100644 index 634ce1ad261..00000000000 --- a/src/licensedcode/data/rules/proprietary_115.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - copyrighted work of Comtrol Corporation -ignorable_holders: - - work of Comtrol Corporation -ignorable_emails: - - info@comtrol.com diff --git a/src/licensedcode/data/rules/proprietary_116.RULE b/src/licensedcode/data/rules/proprietary_116.RULE index a33375053a9..7749b2dc089 100644 --- a/src/licensedcode/data/rules/proprietary_116.RULE +++ b/src/licensedcode/data/rules/proprietary_116.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + A) Cordra License Agreement ======================================================================== @@ -13,5 +18,4 @@ A) Cordra License Agreement 6. The Agreement will automatically terminate upon a material breach of its terms and conditions. The Agreement does not grant permission to use CORDRA, CNRI or other CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. -7. To the extent United States Federal law is not applicable, the Agreement shall be governed by and interpreted in all respects with the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions, and the courts within such State shall be the only courts of competent jurisdiction. Nothing in the Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. - +7. To the extent United States Federal law is not applicable, the Agreement shall be governed by and interpreted in all respects with the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions, and the courts within such State shall be the only courts of competent jurisdiction. Nothing in the Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_116.yml b/src/licensedcode/data/rules/proprietary_116.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_116.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_117.RULE b/src/licensedcode/data/rules/proprietary_117.RULE index c3f3e2dfa53..46c90f63d07 100644 --- a/src/licensedcode/data/rules/proprietary_117.RULE +++ b/src/licensedcode/data/rules/proprietary_117.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - Copyright (c) HANDSONCODE Sp +ignorable_holders: + - HANDSONCODE Sp +--- + HANDSONTABLE NON-COMMERCIAL LICENSE Version 1.0 last updated February 19, 2019 diff --git a/src/licensedcode/data/rules/proprietary_117.yml b/src/licensedcode/data/rules/proprietary_117.yml deleted file mode 100644 index 52923eb937b..00000000000 --- a/src/licensedcode/data/rules/proprietary_117.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - Copyright (c) HANDSONCODE Sp -ignorable_holders: - - HANDSONCODE Sp diff --git a/src/licensedcode/data/rules/proprietary_118.RULE b/src/licensedcode/data/rules/proprietary_118.RULE index 7ee68fe7216..b35b97d3f08 100644 --- a/src/licensedcode/data/rules/proprietary_118.RULE +++ b/src/licensedcode/data/rules/proprietary_118.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + CNRI Digital Object Repository License Agreement 1. This CNRI Digital Object Repository License Agreement ("Agreement") is between Corporation for National Research Initiatives ("CNRI"), having an office at 1895 Preston White Drive, Reston, VA 20191, and the Individual or Organization ("Licensee") that has installed or otherwise used the CNRI Digital Object Repository software, together with its associated documentation ("Software"). Licensee shall be deemed to have entered into, signed and agreed to be bound by the terms and conditions of the Agreement upon such installation or other use. @@ -12,5 +17,4 @@ CNRI Digital Object Repository License Agreement 6. The Agreement will automatically terminate upon a material breach of its terms and conditions. Nothing in the Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. The Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. -7. The Agreement shall be governed by United States federal law, and, to the extent such federal law does not apply, by the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions. Notwithstanding the foregoing, with regard to derivative works based on the Software that incorporate non-separable material that was previously distributed under the GNU General Public License, the law of the Commonwealth of Virginia shall govern the Agreement only as to issues arising under or with respect to Paragraphs 4, 5, and 7 of this Agreement. - \ No newline at end of file +7. The Agreement shall be governed by United States federal law, and, to the extent such federal law does not apply, by the law of the Commonwealth of Virginia, excluding Virginia's conflict of law provisions. Notwithstanding the foregoing, with regard to derivative works based on the Software that incorporate non-separable material that was previously distributed under the GNU General Public License, the law of the Commonwealth of Virginia shall govern the Agreement only as to issues arising under or with respect to Paragraphs 4, 5, and 7 of this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_118.yml b/src/licensedcode/data/rules/proprietary_118.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_118.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_119.RULE b/src/licensedcode/data/rules/proprietary_119.RULE index 8729d4d2c3f..fb1774fc06f 100644 --- a/src/licensedcode/data/rules/proprietary_119.RULE +++ b/src/licensedcode/data/rules/proprietary_119.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + SDK DOWNLOAD LICENSE AGREEMENT BY USING THE SDK, YOU AND THE COMPANY OR ENTITY THAT YOU REPRESENT ("YOU") ARE AGREEING TO BE BOUND BY AND ARE BECOMING A PARTY TO THIS SDK LICENSE AGREEMENT ("AGREEMENT"). IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, CLICK THE "CANCEL" BUTTON AND THE DOWNLOAD AND INSTALLATION PROCESS WILL NOT CONTINUE. IF THESE TERMS ARE CONSIDERED AN OFFER, ACCEPTANCE IS EXPRESSLY LIMITED TO THESE TERMS. @@ -15,4 +20,4 @@ USER DATA. You agree that the SDK will enable You to exchange Your user informat TERMINATION. You may terminate this Agreement and the license granted herein at any time by destroying or removing from all hard drives, networks, and other storage media all copies of the SDK. may terminate this Agreement and the license granted herein immediately if You breach any provision of this Agreement. Upon receiving notice of termination from You agree to destroy or remove from such storage media all copies of the SDK. Sections 2 through 12 shall survive termination of this Agreement. EXPORT CONTROLS. You shall comply with all export laws and restrictions and regulations of the Department of Commerce, the United States Department of Treasury Office of Foreign Assets Control ("OFAC"), or other United States or foreign agency or authority, and not to export, or allow the export or re-export of the SDK in violation of any such restrictions, laws or regulations. By downloading or using the SDK, You are agreeing to the foregoing and You are representing and warranting that You are not located in, under the control of, or a national or resident of any restricted country or on any such list. U.S. GOVERNMENT RESTRICTED RIGHTS. Use, duplication or disclosure by the Government is subject to restrictions set forth in subparagraphs (a) through (d) of the Commercial Computer-Restricted Rights clause at FAR 52.227-19 when applicable, or in subparagraph (c) (1) (ii) of the Rights in Technical Data and Computer Software clause in DFARS 252.227-7013, and in similar clauses in the NASA FAR Supplement. - MISCELLANEOUS. You shall not assign or transfer any part of this Agreement to any third party. This Agreement represents the complete agreement concerning this license between the parties and supersedes all prior agreements and representations between them. If any provision of this Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make it enforceable. This Agreement shall be governed by and construed under law as such law applies to agreements between residents entered into and to be performed within . Any disputes arising from this Agreement shall be subject to the sole and exclusive jurisdiction of, and venue in, the state and Federal Courts located in (and the You hereby consent and submit to such jurisdiction and venue). The prevailing party in any action or proceeding to enforce this Agreement will be entitled to costs and attorneys' fees. + MISCELLANEOUS. You shall not assign or transfer any part of this Agreement to any third party. This Agreement represents the complete agreement concerning this license between the parties and supersedes all prior agreements and representations between them. If any provision of this Agreement is held to be unenforceable for any reason, such provision shall be reformed only to the extent necessary to make it enforceable. This Agreement shall be governed by and construed under law as such law applies to agreements between residents entered into and to be performed within . Any disputes arising from this Agreement shall be subject to the sole and exclusive jurisdiction of, and venue in, the state and Federal Courts located in (and the You hereby consent and submit to such jurisdiction and venue). The prevailing party in any action or proceeding to enforce this Agreement will be entitled to costs and attorneys' fees. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_119.yml b/src/licensedcode/data/rules/proprietary_119.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_119.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_12.RULE b/src/licensedcode/data/rules/proprietary_12.RULE index cd7f509f456..9d00ff2877e 100644 --- a/src/licensedcode/data/rules/proprietary_12.RULE +++ b/src/licensedcode/data/rules/proprietary_12.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Unauthorized copying of this file, via any medium is strictly prohibited. -Proprietary and confidential. +Proprietary and confidential. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_12.yml b/src/licensedcode/data/rules/proprietary_12.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_120.RULE b/src/licensedcode/data/rules/proprietary_120.RULE index fbaeb39a635..0cb0f3d36f2 100644 --- a/src/licensedcode/data/rules/proprietary_120.RULE +++ b/src/licensedcode/data/rules/proprietary_120.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - copyrighted by the Regents of the University of +ignorable_holders: + - the Regents of the University of +--- + Copyright & License Notice --------------------------- @@ -15,4 +24,4 @@ As unestablished research software, this code is provided on an ``as is'' basis without warranty of any kind, either expressed or implied. The downloading, or executing any part of this software constitutes an implicit agreement to these terms. These terms and -conditions are subject to change at any time without prior notice. +conditions are subject to change at any time without prior notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_120.yml b/src/licensedcode/data/rules/proprietary_120.yml deleted file mode 100644 index 76f54dc6a6f..00000000000 --- a/src/licensedcode/data/rules/proprietary_120.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - copyrighted by the Regents of the University of -ignorable_holders: - - the Regents of the University of diff --git a/src/licensedcode/data/rules/proprietary_121.RULE b/src/licensedcode/data/rules/proprietary_121.RULE index 0c0a53fe786..256afd4050e 100644 --- a/src/licensedcode/data/rules/proprietary_121.RULE +++ b/src/licensedcode/data/rules/proprietary_121.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + License Agreement IMPORTANT! Read the terms and conditions of this license agreement (hereafter "Agreement") carefully before using (hereafter "Software"). Use of the Software implies acceptance of this Agreement, and legally binds you and/or your company (hereafter "Licensee"), and (hereafter "Licensor"), to the terms and conditions set forth below. diff --git a/src/licensedcode/data/rules/proprietary_121.yml b/src/licensedcode/data/rules/proprietary_121.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/proprietary_121.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_122.RULE b/src/licensedcode/data/rules/proprietary_122.RULE index 7a197d784ed..329d2541d5f 100644 --- a/src/licensedcode/data/rules/proprietary_122.RULE +++ b/src/licensedcode/data/rules/proprietary_122.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_urls: + - http://thisisant.com/ +--- + 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. diff --git a/src/licensedcode/data/rules/proprietary_122.yml b/src/licensedcode/data/rules/proprietary_122.yml deleted file mode 100644 index 8f06f908071..00000000000 --- a/src/licensedcode/data/rules/proprietary_122.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_urls: - - http://thisisant.com/ diff --git a/src/licensedcode/data/rules/proprietary_123.RULE b/src/licensedcode/data/rules/proprietary_123.RULE index 955ff07c60c..7d6d0873d24 100644 --- a/src/licensedcode/data/rules/proprietary_123.RULE +++ b/src/licensedcode/data/rules/proprietary_123.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + ANT+ Shared Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_123.yml b/src/licensedcode/data/rules/proprietary_123.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_123_1.RULE b/src/licensedcode/data/rules/proprietary_123_1.RULE index bf6e5563fd0..905e6bde8b3 100644 --- a/src/licensedcode/data/rules/proprietary_123_1.RULE +++ b/src/licensedcode/data/rules/proprietary_123_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.thisisant.com/swlicenses +--- + ANT+ Shared Source License -This software is subject to the ANT+ Shared Source License www.thisisant.com/swlicenses +This software is subject to the ANT+ Shared Source License www.thisisant.com/swlicenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_123_1.yml b/src/licensedcode/data/rules/proprietary_123_1.yml deleted file mode 100644 index e286f29d82c..00000000000 --- a/src/licensedcode/data/rules/proprietary_123_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.thisisant.com/swlicenses diff --git a/src/licensedcode/data/rules/proprietary_123_2.RULE b/src/licensedcode/data/rules/proprietary_123_2.RULE index 6b8ce905a39..3da9e3191ce 100644 --- a/src/licensedcode/data/rules/proprietary_123_2.RULE +++ b/src/licensedcode/data/rules/proprietary_123_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://thisisant.com/ +--- + 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. diff --git a/src/licensedcode/data/rules/proprietary_123_2.yml b/src/licensedcode/data/rules/proprietary_123_2.yml deleted file mode 100644 index 043eff12cd2..00000000000 --- a/src/licensedcode/data/rules/proprietary_123_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://thisisant.com/ diff --git a/src/licensedcode/data/rules/proprietary_124.RULE b/src/licensedcode/data/rules/proprietary_124.RULE index 594a63dc0d0..2db14107059 100644 --- a/src/licensedcode/data/rules/proprietary_124.RULE +++ b/src/licensedcode/data/rules/proprietary_124.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Single application licensees are subject to the license found at \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_124.yml b/src/licensedcode/data/rules/proprietary_124.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_125.RULE b/src/licensedcode/data/rules/proprietary_125.RULE index f0f7bb6fb0f..df88bf054b9 100644 --- a/src/licensedcode/data/rules/proprietary_125.RULE +++ b/src/licensedcode/data/rules/proprietary_125.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + you can freely use and distribute anything you find in the data directory but may need permission to use it in a commercial product \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_125.yml b/src/licensedcode/data/rules/proprietary_125.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_125.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_126.RULE b/src/licensedcode/data/rules/proprietary_126.RULE index bad79a057ea..2f2cef4fe61 100644 --- a/src/licensedcode/data/rules/proprietary_126.RULE +++ b/src/licensedcode/data/rules/proprietary_126.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + There are two modifications to the general OPL given below: Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder. @@ -8,4 +13,4 @@ Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder. (This is so that the author can make at least some money if this work is republished as a book and sold -commercially for -- somebody's -- profit.) +commercially for -- somebody's -- profit.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_126.yml b/src/licensedcode/data/rules/proprietary_126.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_126.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_127.RULE b/src/licensedcode/data/rules/proprietary_127.RULE index 515defd03fa..7b2cead733c 100644 --- a/src/licensedcode/data/rules/proprietary_127.RULE +++ b/src/licensedcode/data/rules/proprietary_127.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_urls: + - http://www.intel.com/design/literature.htm +--- + By using this document, in addition to any agreements you have with Intel, you accept the terms set forth below. You may not use or facilitate the use of this document in connection with any infringement or other legal analysis concerning Intel products described herein. You agree to grant Intel a non-exclusive, royalty-free license to any patent claim thereafter drafted which includes subject matter disclosed herein. diff --git a/src/licensedcode/data/rules/proprietary_127.yml b/src/licensedcode/data/rules/proprietary_127.yml deleted file mode 100644 index f0adba1e97f..00000000000 --- a/src/licensedcode/data/rules/proprietary_127.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_urls: - - http://www.intel.com/design/literature.htm diff --git a/src/licensedcode/data/rules/proprietary_128.RULE b/src/licensedcode/data/rules/proprietary_128.RULE index 98586c9375c..979cb36cb3d 100644 --- a/src/licensedcode/data/rules/proprietary_128.RULE +++ b/src/licensedcode/data/rules/proprietary_128.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Neither this software nor any of its individual components, in original or modified versions, may be sold by itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_128.yml b/src/licensedcode/data/rules/proprietary_128.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_129.RULE b/src/licensedcode/data/rules/proprietary_129.RULE index 43b88796ff7..88bbbae996d 100644 --- a/src/licensedcode/data/rules/proprietary_129.RULE +++ b/src/licensedcode/data/rules/proprietary_129.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: See https://www.teeworlds.com/forum/viewtopic.php?id=957 and https://fedoraproject.org/wiki/Licensing:Teeworlds?rd=Licensing/Teeworlds +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/proprietary_129.yml b/src/licensedcode/data/rules/proprietary_129.yml deleted file mode 100644 index 0ccdb75294b..00000000000 --- a/src/licensedcode/data/rules/proprietary_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: See https://www.teeworlds.com/forum/viewtopic.php?id=957 and https://fedoraproject.org/wiki/Licensing:Teeworlds?rd=Licensing/Teeworlds diff --git a/src/licensedcode/data/rules/proprietary_13.RULE b/src/licensedcode/data/rules/proprietary_13.RULE index 86d84178ab8..098fe0fc8c5 100644 --- a/src/licensedcode/data/rules/proprietary_13.RULE +++ b/src/licensedcode/data/rules/proprietary_13.RULE @@ -1 +1,8 @@ -Proprietary and confidential. +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +--- + +Proprietary and confidential. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_13.yml b/src/licensedcode/data/rules/proprietary_13.yml deleted file mode 100644 index 057f4e409da..00000000000 --- a/src/licensedcode/data/rules/proprietary_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/proprietary_130.RULE b/src/licensedcode/data/rules/proprietary_130.RULE index 4bc658219e5..6969614ebfd 100644 --- a/src/licensedcode/data/rules/proprietary_130.RULE +++ b/src/licensedcode/data/rules/proprietary_130.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: See https://savannah.nongnu.org/bugs/index.php?33409 +--- + % Permission is granted to copy and distribute this file in modified % or unmodified form, for noncommercial use, provided (a) this copyright % notice is preserved, (b) no attempt is made to restrict redistribution diff --git a/src/licensedcode/data/rules/proprietary_130.yml b/src/licensedcode/data/rules/proprietary_130.yml deleted file mode 100644 index 19a301c1c89..00000000000 --- a/src/licensedcode/data/rules/proprietary_130.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: See https://savannah.nongnu.org/bugs/index.php?33409 diff --git a/src/licensedcode/data/rules/proprietary_131.RULE b/src/licensedcode/data/rules/proprietary_131.RULE index 58efcff9b34..d7c44a988c5 100644 --- a/src/licensedcode/data/rules/proprietary_131.RULE +++ b/src/licensedcode/data/rules/proprietary_131.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * This file provided by Facebook is for non-commercial testing and evaluation * purposes only. Facebook reserves all rights not expressly granted. * diff --git a/src/licensedcode/data/rules/proprietary_131.yml b/src/licensedcode/data/rules/proprietary_131.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_131.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_132.RULE b/src/licensedcode/data/rules/proprietary_132.RULE index b35835b605c..86a33392085 100644 --- a/src/licensedcode/data/rules/proprietary_132.RULE +++ b/src/licensedcode/data/rules/proprietary_132.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * This file provided by is for non-commercial testing and evaluation * purposes only. reserves all rights not expressly granted. * diff --git a/src/licensedcode/data/rules/proprietary_132.yml b/src/licensedcode/data/rules/proprietary_132.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_132.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_133.RULE b/src/licensedcode/data/rules/proprietary_133.RULE index f7e787947b7..a1a67e27d4c 100644 --- a/src/licensedcode/data/rules/proprietary_133.RULE +++ b/src/licensedcode/data/rules/proprietary_133.RULE @@ -1,3 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.ktdms.com/KPL +--- + * The contents of this file are subject to the {{KnowledgeTree}} Public * License Version 1.1 ("License"); You may not use this file except in * compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/proprietary_133.yml b/src/licensedcode/data/rules/proprietary_133.yml deleted file mode 100644 index d9b4430de24..00000000000 --- a/src/licensedcode/data/rules/proprietary_133.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.ktdms.com/KPL diff --git a/src/licensedcode/data/rules/proprietary_134.RULE b/src/licensedcode/data/rules/proprietary_134.RULE index 41e95bf9bb9..8cab8736d46 100644 --- a/src/licensedcode/data/rules/proprietary_134.RULE +++ b/src/licensedcode/data/rules/proprietary_134.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Corporation(" ") supplies this software to you in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this software @@ -36,4 +41,4 @@ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF - HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_134.yml b/src/licensedcode/data/rules/proprietary_134.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_134.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_135.RULE b/src/licensedcode/data/rules/proprietary_135.RULE index 28b17159af6..12ed301dd57 100644 --- a/src/licensedcode/data/rules/proprietary_135.RULE +++ b/src/licensedcode/data/rules/proprietary_135.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + PERMISSION IS HEREBY GRANTED TO USE, MODIFY, AND/OR COPY THIS SOFTWARE FOR INTERNAL USE ONLY PROVIDED THAT THE ABOVE COPYRIGHT NOTICE APPEARS IN ALL COPIES OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_135.yml b/src/licensedcode/data/rules/proprietary_135.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_136.RULE b/src/licensedcode/data/rules/proprietary_136.RULE index 81a000a8217..d07dfbc7854 100644 --- a/src/licensedcode/data/rules/proprietary_136.RULE +++ b/src/licensedcode/data/rules/proprietary_136.RULE @@ -1 +1,7 @@ -PERMISSION IS HEREBY GRANTED TO USE, MODIFY, AND/OR COPY THIS SOFTWARE FOR INTERNAL USE ONLY +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +PERMISSION IS HEREBY GRANTED TO USE, MODIFY, AND/OR COPY THIS SOFTWARE FOR INTERNAL USE ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_136.yml b/src/licensedcode/data/rules/proprietary_136.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_137.RULE b/src/licensedcode/data/rules/proprietary_137.RULE index 00dd36b2dcd..38022998280 100644 --- a/src/licensedcode/data/rules/proprietary_137.RULE +++ b/src/licensedcode/data/rules/proprietary_137.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + SOFTWARE FOR INTERNAL USE ONLY \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_137.yml b/src/licensedcode/data/rules/proprietary_137.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_138.RULE b/src/licensedcode/data/rules/proprietary_138.RULE index fe118f40168..7026a146901 100644 --- a/src/licensedcode/data/rules/proprietary_138.RULE +++ b/src/licensedcode/data/rules/proprietary_138.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + THIS SOFTWARE CONTAINS CONFIDENTIAL INFORMATION AND TRADE SECRETS OF ... .... PERMISSION IS HEREBY GRANTED TO USE, MODIFY, AND/OR COPY THIS SOFTWARE FOR INTERNAL USE ONLY PROVIDED THAT THE ABOVE COPYRIGHT NOTICE diff --git a/src/licensedcode/data/rules/proprietary_138.yml b/src/licensedcode/data/rules/proprietary_138.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_138.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_139.RULE b/src/licensedcode/data/rules/proprietary_139.RULE index 66be8bcf398..d4bd5be1061 100644 --- a/src/licensedcode/data/rules/proprietary_139.RULE +++ b/src/licensedcode/data/rules/proprietary_139.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Limited Software License Agreement Please read this Software License Agreement (this “License”) carefully because it governs your use of the software (the “Software”). By using the Software, you agree to be bound by this License. If you don’t agree to be bound by this License, do not use the Software. @@ -29,4 +34,4 @@ IF YOU ARE ENTERING INTO THIS LICENSE ON BEHALF OF A COMPANY OR OTHER LEGAL ENTI 12. Your remedies under this License shall be limited to the right to collect money damages, if any, and you hereby waive your right to injunctive or other equitable relief. 13. Your use of third-party materials included in the Software may be subject to other terms and conditions typically found in separate third-party license agreements or “READ ME” files included with such third-party materials. To the extent such other terms and conditions conflict with the terms and conditions of this License, the former will control with respect to the applicable third-party materials. 14. may include in the Software additional content (e.g., samples) for demonstration, references or other specific purposes. Such content will be clearly marked in the Software and is subject to any included terms and conditions. - 15. This License shall be governed by the laws of the State of California, without giving effect to choice of law principles. reserves all rights not expressly granted in this License. All disputes relating to this License shall be resolved by binding non-appearance-based arbitration before a neutral arbitrator in San Mateo County, California. If your License has been terminated hereunder by , you may appeal your termination through this arbitration process on an expedited basis with an arbitration within thirty days of your giving notice of the appeal. The arbitration shall be conducted in accordance with the rules and procedures of JAMS then in effect, and the judgment of the arbitrator shall be final and capable of entry in any court of competent jurisdiction. You agree to submit to the personal jurisdiction of the courts located within San Mateo County, California in connection with any entrance of an arbitrator’s judgment or decision or any dispute with respect to the arbitration process or procedure or ’s exercise of its equitable rights or remedies. + 15. This License shall be governed by the laws of the State of California, without giving effect to choice of law principles. reserves all rights not expressly granted in this License. All disputes relating to this License shall be resolved by binding non-appearance-based arbitration before a neutral arbitrator in San Mateo County, California. If your License has been terminated hereunder by , you may appeal your termination through this arbitration process on an expedited basis with an arbitration within thirty days of your giving notice of the appeal. The arbitration shall be conducted in accordance with the rules and procedures of JAMS then in effect, and the judgment of the arbitrator shall be final and capable of entry in any court of competent jurisdiction. You agree to submit to the personal jurisdiction of the courts located within San Mateo County, California in connection with any entrance of an arbitrator’s judgment or decision or any dispute with respect to the arbitration process or procedure or ’s exercise of its equitable rights or remedies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_139.yml b/src/licensedcode/data/rules/proprietary_139.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_139.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_14.RULE b/src/licensedcode/data/rules/proprietary_14.RULE index 744c8b1513b..49fbc4afa02 100644 --- a/src/licensedcode/data/rules/proprietary_14.RULE +++ b/src/licensedcode/data/rules/proprietary_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + CONFIDENTIAL - Company This is an unpublished work, which is a trade secret, created in @@ -9,4 +14,4 @@ deliberate unauthorized publication. Company also reserves its rights under the copyright laws to protect this work as a published work. Those having access to this work may not copy it, use it, or disclose the information contained in it without -the written authorization of +the written authorization of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_14.yml b/src/licensedcode/data/rules/proprietary_14.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_140.RULE b/src/licensedcode/data/rules/proprietary_140.RULE index cbd29de185b..da6c1a5aa8c 100644 --- a/src/licensedcode/data/rules/proprietary_140.RULE +++ b/src/licensedcode/data/rules/proprietary_140.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + This license agreement refers to EasyUI for jQuery software - Freeware License. EasyUI Team grants to you a limited, non-transferable and non-exclusive right to use, royalty-free, copy and redistribute the software. @@ -11,4 +16,4 @@ a) Distribute the modified software or part(s) of it as a standalone application b) Sublicense, rent, lease or lend any portion of the software as a standalone application. c) Modify or remove any copyright notices from any of the software files. -EasyUI Team retains all ownership rights to the software. +EasyUI Team retains all ownership rights to the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_140.yml b/src/licensedcode/data/rules/proprietary_140.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_140.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_141.RULE b/src/licensedcode/data/rules/proprietary_141.RULE index 246027bce42..cbb6aa495eb 100644 --- a/src/licensedcode/data/rules/proprietary_141.RULE +++ b/src/licensedcode/data/rules/proprietary_141.RULE @@ -1,2 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.jeasyui.com/license_freeware.php +ignorable_emails: + - info@jeasyui.com +--- + * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php * To use it on other terms please contact us: info@jeasyui.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_141.yml b/src/licensedcode/data/rules/proprietary_141.yml deleted file mode 100644 index 26618aa57fd..00000000000 --- a/src/licensedcode/data/rules/proprietary_141.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.jeasyui.com/license_freeware.php -ignorable_emails: - - info@jeasyui.com diff --git a/src/licensedcode/data/rules/proprietary_142.RULE b/src/licensedcode/data/rules/proprietary_142.RULE index 5932014a56e..67eb50a499f 100644 --- a/src/licensedcode/data/rules/proprietary_142.RULE +++ b/src/licensedcode/data/rules/proprietary_142.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Freeware License @@ -15,4 +20,4 @@ a) Distribute the modified software or part(s) of it as a standalone application b) Sublicense, rent, lease or lend any portion of the software as a standalone application. c) Modify or remove any copyright notices from any of the software files. -The EasyUI Team retains all ownership rights to the software. +The EasyUI Team retains all ownership rights to the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_142.yml b/src/licensedcode/data/rules/proprietary_142.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_142.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_143.RULE b/src/licensedcode/data/rules/proprietary_143.RULE index 117d9b4bf9c..7f0f4436f5b 100644 --- a/src/licensedcode/data/rules/proprietary_143.RULE +++ b/src/licensedcode/data/rules/proprietary_143.RULE @@ -1 +1,7 @@ -This software is allowed to use under freeware license or you need to buy commercial license for better support or other purpose. +--- +license_expression: proprietary-license OR commercial-license +is_license_notice: yes +relevance: 100 +--- + +This software is allowed to use under freeware license or you need to buy commercial license for better support or other purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_143.yml b/src/licensedcode/data/rules/proprietary_143.yml deleted file mode 100644 index 4197ff2ee86..00000000000 --- a/src/licensedcode/data/rules/proprietary_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_144.RULE b/src/licensedcode/data/rules/proprietary_144.RULE index 643c3af826e..b3548d6ad6e 100644 --- a/src/licensedcode/data/rules/proprietary_144.RULE +++ b/src/licensedcode/data/rules/proprietary_144.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + THIS SOFTWARE CONTAINS CONFIDENTIAL INFORMATION AND TRADE SECRETS \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_144.yml b/src/licensedcode/data/rules/proprietary_144.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_145.RULE b/src/licensedcode/data/rules/proprietary_145.RULE index 64c70eae24b..73d766f9c39 100644 --- a/src/licensedcode/data/rules/proprietary_145.RULE +++ b/src/licensedcode/data/rules/proprietary_145.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 99 +--- + library is proprietary and copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_145.yml b/src/licensedcode/data/rules/proprietary_145.yml deleted file mode 100644 index a1a82e33576..00000000000 --- a/src/licensedcode/data/rules/proprietary_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/proprietary_146.RULE b/src/licensedcode/data/rules/proprietary_146.RULE index 4c28f4b4524..282ee78854e 100644 --- a/src/licensedcode/data/rules/proprietary_146.RULE +++ b/src/licensedcode/data/rules/proprietary_146.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + END-USER FIRMWARE LICENSE AGREEMENT \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_146.yml b/src/licensedcode/data/rules/proprietary_146.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_147.RULE b/src/licensedcode/data/rules/proprietary_147.RULE index 41dc892f177..3bb54b098fc 100644 --- a/src/licensedcode/data/rules/proprietary_147.RULE +++ b/src/licensedcode/data/rules/proprietary_147.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + THIS PACKAGE, I.E. , THIS DOCUMENT, AND THE EXAMPLE PROGRAMS ARE PROPERTY OF THE AUTHOR WHO RESERVES ALL RIGHTS. THIS PACKAGE AND THE CODE IT PRODUCES MAY BE FREELY DISTRIBUTED WITHOUT FEES, SUBJECT TO @@ -20,4 +25,4 @@ THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. THE AUTHOR IS NOT RESPONSIBLE FOR ANY SUPPORT OR SERVICE OF THE PACKAGE. -~ \ No newline at end of file +~ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_147.yml b/src/licensedcode/data/rules/proprietary_147.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_147.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_148.RULE b/src/licensedcode/data/rules/proprietary_148.RULE index 86f92336436..fab950430d4 100644 --- a/src/licensedcode/data/rules/proprietary_148.RULE +++ b/src/licensedcode/data/rules/proprietary_148.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + tools are free to use for personal and commercial purposes. retains title and ownership of tools. Unauthorized copying is expressly forbidden. Users agree not to engage in, nor to @@ -5,4 +10,4 @@ permit the de-compilation, disassembly, or other reverse engineering of tools. No warranties are expressed or implied with respect to tools, their quality, performance, accuracy or suitability for any purpose. In no circumstances will the copyright owner be liable for direct, indirect, incidental or consequential damages -resulting from the use of tools. +resulting from the use of tools. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_148.yml b/src/licensedcode/data/rules/proprietary_148.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_148.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_149.RULE b/src/licensedcode/data/rules/proprietary_149.RULE index 6b0dccfe1cd..cca2c2dfdc2 100644 --- a/src/licensedcode/data/rules/proprietary_149.RULE +++ b/src/licensedcode/data/rules/proprietary_149.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This software is furnished under a license and may be used and copied only in accordance of the terms of such license and with the inclusion of the above copyright notice. This software or any other @@ -10,4 +15,4 @@ and should not be construed as a commitment by Digital Equipment Corporation. Digital assumes no responsibility for the use or reliability of its -software on equipment which is not supplied by Digital. +software on equipment which is not supplied by Digital. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_149.yml b/src/licensedcode/data/rules/proprietary_149.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_149.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_15.RULE b/src/licensedcode/data/rules/proprietary_15.RULE index a0c478f4a73..8b8cd392861 100644 --- a/src/licensedcode/data/rules/proprietary_15.RULE +++ b/src/licensedcode/data/rules/proprietary_15.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://developer.apple.com/firewire/platform + - http://developer.apple.com/mkt/swl/agreements.html#firewire + - http://www.1394la.com/ +--- + Any use, reproduction, modification or * distribution of this source code or any derivatives thereof is subject * to the Apple FireWire Reference Platform License. For more information, diff --git a/src/licensedcode/data/rules/proprietary_15.yml b/src/licensedcode/data/rules/proprietary_15.yml deleted file mode 100644 index 683487bbc93..00000000000 --- a/src/licensedcode/data/rules/proprietary_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://developer.apple.com/firewire/platform - - http://developer.apple.com/mkt/swl/agreements.html#firewire - - http://www.1394la.com/ diff --git a/src/licensedcode/data/rules/proprietary_150.RULE b/src/licensedcode/data/rules/proprietary_150.RULE index 247c443fcd2..a51395c5da9 100644 --- a/src/licensedcode/data/rules/proprietary_150.RULE +++ b/src/licensedcode/data/rules/proprietary_150.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_150.yml b/src/licensedcode/data/rules/proprietary_150.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_151.RULE b/src/licensedcode/data/rules/proprietary_151.RULE index c2ad8ec57b8..711a3ff8d73 100644 --- a/src/licensedcode/data/rules/proprietary_151.RULE +++ b/src/licensedcode/data/rules/proprietary_151.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_emails: + - openlibrary@nangate.com +--- + The Open Cell Library is intended for use by universities, other research activities, educational programs and Si2.org members. However allowed, the Open Cell Library is not intended for commercial use. If you use the Open Cell Library for demonstration of commercial EDA tools it is required to mention, indicate that the library was developped by Nangate. @@ -12,4 +19,4 @@ Permission is hereby granted, free of charge, to any person or organization obta The copyright notices in the Library and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Library, in whole or in part, and all derivative works of the Library, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. The library has been generated using a non-optimized open PDK and is not suited for any commercial purpose. Measuring or benchmarking the Library against any other library or standard cell set is prohibited. Any meaningful library benchmarking must be done in collaboration with Nangate or other providers of optimized and production-ready PDKs. -THE LIBRARY 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE LIBRARY BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE LIBRARY OR THE USE OR OTHER DEALINGS IN THE LIBRARY. +THE LIBRARY 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE LIBRARY BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE LIBRARY OR THE USE OR OTHER DEALINGS IN THE LIBRARY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_151.yml b/src/licensedcode/data/rules/proprietary_151.yml deleted file mode 100644 index da8a438345d..00000000000 --- a/src/licensedcode/data/rules/proprietary_151.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_emails: - - openlibrary@nangate.com diff --git a/src/licensedcode/data/rules/proprietary_152.RULE b/src/licensedcode/data/rules/proprietary_152.RULE index 97f5f9dea82..b5af6f4c9e2 100644 --- a/src/licensedcode/data/rules/proprietary_152.RULE +++ b/src/licensedcode/data/rules/proprietary_152.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Synopsys SDC License Agreement THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS SYNOPSYS OPEN SOURCE LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. diff --git a/src/licensedcode/data/rules/proprietary_152.yml b/src/licensedcode/data/rules/proprietary_152.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_152.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_153.RULE b/src/licensedcode/data/rules/proprietary_153.RULE index 935e1ee1bf7..7443a7c1f1c 100644 --- a/src/licensedcode/data/rules/proprietary_153.RULE +++ b/src/licensedcode/data/rules/proprietary_153.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) The Simputer Trust +ignorable_holders: + - The Simputer Trust +--- + SIMPUTERTM GENERAL PUBLIC LICENSE Version 1.3 7 May, 2001 Copyright © The Simputer Trust @@ -106,4 +115,4 @@ V. Disclaimer of Warranty: VI. Acceptance: -17. By clicking on the I Agree button below, you affirm that you agree to be bound by the terms of this SGPL and that you will abide by and adhere to the duties and obligations contained in this Agreement. Your electronic acceptance shall operate as a valid binding contract for the purpose of all applicable laws in this regard. \ No newline at end of file +17. By clicking on the I Agree button below, you affirm that you agree to be bound by the terms of this SGPL and that you will abide by and adhere to the duties and obligations contained in this Agreement. Your electronic acceptance shall operate as a valid binding contract for the purpose of all applicable laws in this regard. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_153.yml b/src/licensedcode/data/rules/proprietary_153.yml deleted file mode 100644 index 1df793d461b..00000000000 --- a/src/licensedcode/data/rules/proprietary_153.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) The Simputer Trust -ignorable_holders: - - The Simputer Trust diff --git a/src/licensedcode/data/rules/proprietary_154.RULE b/src/licensedcode/data/rules/proprietary_154.RULE index 9f2127597fd..d1713e8c0e2 100644 --- a/src/licensedcode/data/rules/proprietary_154.RULE +++ b/src/licensedcode/data/rules/proprietary_154.RULE @@ -1,3 +1,16 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Software AG, Germany 2001 +ignorable_holders: + - Software AG, Germany +ignorable_authors: + - Software AG +ignorable_urls: + - http://www.softwareag.com/developer/legal.htm +--- + Software AG License Terms, Version 1.3 @@ -115,4 +128,4 @@ License Agreement. These License terms represent the complete and exclusive statement concerning this License between the Parties. No modification or amendment of these terms will be binding unless acknowledged in writing. These License terms shall be governed and construed by the Laws of the Federal -Republic of Germany. +Republic of Germany. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_154.yml b/src/licensedcode/data/rules/proprietary_154.yml deleted file mode 100644 index 106063e67eb..00000000000 --- a/src/licensedcode/data/rules/proprietary_154.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Software AG, Germany 2001 -ignorable_holders: - - Software AG, Germany -ignorable_authors: - - Software AG -ignorable_urls: - - http://www.softwareag.com/developer/legal.htm diff --git a/src/licensedcode/data/rules/proprietary_16.RULE b/src/licensedcode/data/rules/proprietary_16.RULE index 04f6b038b45..0793fb2714f 100644 --- a/src/licensedcode/data/rules/proprietary_16.RULE +++ b/src/licensedcode/data/rules/proprietary_16.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + licensed under a proprietary license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_16.yml b/src/licensedcode/data/rules/proprietary_16.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_17.RULE b/src/licensedcode/data/rules/proprietary_17.RULE index f82f7c34edf..b3ce0060782 100644 --- a/src/licensedcode/data/rules/proprietary_17.RULE +++ b/src/licensedcode/data/rules/proprietary_17.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The Software or any portion thereof may not be reproduced in any form whatsoever except as provided by license, without the written consent of Company. diff --git a/src/licensedcode/data/rules/proprietary_17.yml b/src/licensedcode/data/rules/proprietary_17.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_18.RULE b/src/licensedcode/data/rules/proprietary_18.RULE index 13d6d696d37..ea688eb8ca3 100644 --- a/src/licensedcode/data/rules/proprietary_18.RULE +++ b/src/licensedcode/data/rules/proprietary_18.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + patent pending \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_18.yml b/src/licensedcode/data/rules/proprietary_18.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_19.RULE b/src/licensedcode/data/rules/proprietary_19.RULE index 42a33a3bb0c..88728a8d86c 100644 --- a/src/licensedcode/data/rules/proprietary_19.RULE +++ b/src/licensedcode/data/rules/proprietary_19.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + shareware \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_19.yml b/src/licensedcode/data/rules/proprietary_19.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_2.RULE b/src/licensedcode/data/rules/proprietary_2.RULE index cac59125cf1..4358d5fdefd 100644 --- a/src/licensedcode/data/rules/proprietary_2.RULE +++ b/src/licensedcode/data/rules/proprietary_2.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: http://unix-linux-server.googlecode.com/svn-history/r3/trunk/hyperlink.cpp +--- + May not be sold for profit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_2.yml b/src/licensedcode/data/rules/proprietary_2.yml deleted file mode 100644 index 7789dcfd6b7..00000000000 --- a/src/licensedcode/data/rules/proprietary_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: http://unix-linux-server.googlecode.com/svn-history/r3/trunk/hyperlink.cpp diff --git a/src/licensedcode/data/rules/proprietary_20.RULE b/src/licensedcode/data/rules/proprietary_20.RULE index e2523335f32..ccf4176dee4 100644 --- a/src/licensedcode/data/rules/proprietary_20.RULE +++ b/src/licensedcode/data/rules/proprietary_20.RULE @@ -1,4 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * The computer program contained herein contains proprietary information * which is the property of This program cannot be reproduced, - * copied or used without written consent of - + * copied or used without written consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_20.yml b/src/licensedcode/data/rules/proprietary_20.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_20.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_21.RULE b/src/licensedcode/data/rules/proprietary_21.RULE index bdbcbd73596..8f6150ea2b4 100644 --- a/src/licensedcode/data/rules/proprietary_21.RULE +++ b/src/licensedcode/data/rules/proprietary_21.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Confidential not for redistribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_21.yml b/src/licensedcode/data/rules/proprietary_21.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_22.RULE b/src/licensedcode/data/rules/proprietary_22.RULE index 38de03841ab..5332cfee86b 100644 --- a/src/licensedcode/data/rules/proprietary_22.RULE +++ b/src/licensedcode/data/rules/proprietary_22.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Reproduction in whole or in part is prohibited without the prior written consent of the copyright owner. @@ -34,4 +39,4 @@ requires or otherwise is based on the work. This software is provided for ease of recompilation only. Modification and reverse engineering of this software are strictly -prohibited. \ No newline at end of file +prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_22.yml b/src/licensedcode/data/rules/proprietary_22.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_22.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_23.RULE b/src/licensedcode/data/rules/proprietary_23.RULE index 49281d15c94..f3ca9789a77 100644 --- a/src/licensedcode/data/rules/proprietary_23.RULE +++ b/src/licensedcode/data/rules/proprietary_23.RULE @@ -1 +1,7 @@ -Reproduction in whole or in part is prohibited \ No newline at end of file +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + +Reproduction in whole or in part is prohibited \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_23.yml b/src/licensedcode/data/rules/proprietary_23.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_24.RULE b/src/licensedcode/data/rules/proprietary_24.RULE index 1536d91a142..463462cd074 100644 --- a/src/licensedcode/data/rules/proprietary_24.RULE +++ b/src/licensedcode/data/rules/proprietary_24.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Reproduction in whole or in part is prohibited without the prior written permission of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_24.yml b/src/licensedcode/data/rules/proprietary_24.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_25.RULE b/src/licensedcode/data/rules/proprietary_25.RULE index 2cf171f6fda..bc939dda9b5 100644 --- a/src/licensedcode/data/rules/proprietary_25.RULE +++ b/src/licensedcode/data/rules/proprietary_25.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Reproduction in whole or in part is prohibited without the prior -written consent of the copyright owner. - \ No newline at end of file +written consent of the copyright owner. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_25.yml b/src/licensedcode/data/rules/proprietary_25.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_26.RULE b/src/licensedcode/data/rules/proprietary_26.RULE index 0afaba8b2be..516e053e468 100644 --- a/src/licensedcode/data/rules/proprietary_26.RULE +++ b/src/licensedcode/data/rules/proprietary_26.RULE @@ -1,6 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + THIS CODE CONTAINS CONFIDENTIAL INFORMATION OF MARVELL. NO RIGHTS ARE GRANTED HEREIN UNDER ANY PATENT, MASK WORK RIGHT OR COPYRIGHT OF MARVELL OR ANY THIRD PARTY. MARVELL RESERVES THE RIGHT AT ITS SOLE DISCRETION TO REQUEST THAT THIS CODE BE IMMEDIATELY RETURNED TO MARVELL. THIS CODE IS PROVIDED "AS IS". MARVELL MAKES NO WARRANTIES, EXPRESSED, -IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, COMPLETENESS OR PERFORMANCE. +IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, COMPLETENESS OR PERFORMANCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_26.yml b/src/licensedcode/data/rules/proprietary_26.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_26.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_27.RULE b/src/licensedcode/data/rules/proprietary_27.RULE index cfd8ed1eb7f..a2af019d751 100644 --- a/src/licensedcode/data/rules/proprietary_27.RULE +++ b/src/licensedcode/data/rules/proprietary_27.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This software is furnished under a license and may be used and copied only in accordance of the terms of such license and with the inclusion of the above copyright notice. This software or any other @@ -10,4 +15,4 @@ and should not be construed as a commitment by Corporation. Corporation assumes no responsibility for the use or reliability of its -software on equipment which is not supplied by Corporation. +software on equipment which is not supplied by Corporation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_27.yml b/src/licensedcode/data/rules/proprietary_27.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_27.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_28.RULE b/src/licensedcode/data/rules/proprietary_28.RULE index 65057167c0f..609ceed98f7 100644 --- a/src/licensedcode/data/rules/proprietary_28.RULE +++ b/src/licensedcode/data/rules/proprietary_28.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The firmware files included in the firmware/ directory may be freely redistributed only in conjunction with this document; but modification, tampering and reverse engineering are prohibited. @@ -6,4 +11,4 @@ MICRONAS USA, INC., MAKES NO WARRANTIES TO ANY PERSON OR ENTITY WITH RESPECT TO THE SOFTWARE OR ANY DERIVATIVES THEREOF OR ANY SERVICES OR LICENSES AND DISCLAIMS ALL IMPLIED WARRANTIES, INCLUDING WITHOUT LIMITATION WARRANTIES OF MERCHANTABILITY, SUPPORT, AND FITNESS FOR A PARTICULAR -PURPOSE AND NON-INFRINGEMENT. +PURPOSE AND NON-INFRINGEMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_28.yml b/src/licensedcode/data/rules/proprietary_28.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_28.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_29.RULE b/src/licensedcode/data/rules/proprietary_29.RULE index 4f0c216a952..9349451f146 100644 --- a/src/licensedcode/data/rules/proprietary_29.RULE +++ b/src/licensedcode/data/rules/proprietary_29.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The firmware files included in the firmware/ directory may be freely redistributed only in conjunction with this document; but modification, -tampering and reverse engineering are prohibited. +tampering and reverse engineering are prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_29.yml b/src/licensedcode/data/rules/proprietary_29.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_3.RULE b/src/licensedcode/data/rules/proprietary_3.RULE index 34f3cfc32c6..a647125355b 100644 --- a/src/licensedcode/data/rules/proprietary_3.RULE +++ b/src/licensedcode/data/rules/proprietary_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: apple proprietary firewire +--- + Any use, reproduction, modification or * distribution of this source code or any derivatives thereof is subject - * to the Apple FireWire Reference Platform License. For more information, + * to the Apple FireWire Reference Platform License. For more information, \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_3.yml b/src/licensedcode/data/rules/proprietary_3.yml deleted file mode 100644 index cea4fd22a8a..00000000000 --- a/src/licensedcode/data/rules/proprietary_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: apple proprietary firewire diff --git a/src/licensedcode/data/rules/proprietary_30.RULE b/src/licensedcode/data/rules/proprietary_30.RULE index 4c72e18f613..deaaa464090 100644 --- a/src/licensedcode/data/rules/proprietary_30.RULE +++ b/src/licensedcode/data/rules/proprietary_30.RULE @@ -1 +1,7 @@ - Derived from proprietary unpublished source code, +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + + Derived from proprietary unpublished source code, \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_30.yml b/src/licensedcode/data/rules/proprietary_30.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_31.RULE b/src/licensedcode/data/rules/proprietary_31.RULE index 60423f3dd07..7da557aa592 100644 --- a/src/licensedcode/data/rules/proprietary_31.RULE +++ b/src/licensedcode/data/rules/proprietary_31.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Reproduction or in part is prohibited * without the written consent of the copyright owner. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_31.yml b/src/licensedcode/data/rules/proprietary_31.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_32.RULE b/src/licensedcode/data/rules/proprietary_32.RULE index 90a92731332..0c89562351d 100644 --- a/src/licensedcode/data/rules/proprietary_32.RULE +++ b/src/licensedcode/data/rules/proprietary_32.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +minimum_coverage: 40 +--- + This Synopsys software driver and associated documentation (hereinafter the "Software") is an unsupported proprietary work of Synopsys, Inc. unless otherwise expressly agreed to in writing between @@ -5,4 +11,4 @@ Synopsys and you. The Software IS NOT an item of Licensed Software or a Licensed Product under any End User Software License Agreement or Agreement for Licensed Products with Synopsys or any supplement thereto. Synopsys is a registered trademark of Synopsys, Inc. Other names included -in the SOFTWARE may be the trademarks of their respective owners. +in the SOFTWARE may be the trademarks of their respective owners. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_32.yml b/src/licensedcode/data/rules/proprietary_32.yml deleted file mode 100644 index abb09269654..00000000000 --- a/src/licensedcode/data/rules/proprietary_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -minimum_coverage: 40 diff --git a/src/licensedcode/data/rules/proprietary_33.RULE b/src/licensedcode/data/rules/proprietary_33.RULE index cc53a696ea9..ca968b53a5e 100644 --- a/src/licensedcode/data/rules/proprietary_33.RULE +++ b/src/licensedcode/data/rules/proprietary_33.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + THIS SOFTWARE IS THE CONFIDENTIAL AND PROPRIETARY INFORMATION OF YOU SHALL NOT DISCLOSE SUCH INFORMATION AND SHALL USE IT ONLY IN ACCORDANCE WITH THE TERMS OF THE LICENSE AGREEMENT YOU ENTERED INTO @@ -8,4 +13,4 @@ SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. TEST Company SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING -THIS SOFTWARE OR ITS DERIVATIVES. +THIS SOFTWARE OR ITS DERIVATIVES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_33.yml b/src/licensedcode/data/rules/proprietary_33.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/proprietary_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_34.RULE b/src/licensedcode/data/rules/proprietary_34.RULE index cfe2974a7c6..b570aa26bf3 100644 --- a/src/licensedcode/data/rules/proprietary_34.RULE +++ b/src/licensedcode/data/rules/proprietary_34.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Confidential/Proprietary Information \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_34.yml b/src/licensedcode/data/rules/proprietary_34.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_35.RULE b/src/licensedcode/data/rules/proprietary_35.RULE index 45f415ece6e..e94abea5367 100644 --- a/src/licensedcode/data/rules/proprietary_35.RULE +++ b/src/licensedcode/data/rules/proprietary_35.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Confidential/Proprietary \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_35.yml b/src/licensedcode/data/rules/proprietary_35.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_36.RULE b/src/licensedcode/data/rules/proprietary_36.RULE index eea01e8cbc0..0c4a6de1144 100644 --- a/src/licensedcode/data/rules/proprietary_36.RULE +++ b/src/licensedcode/data/rules/proprietary_36.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Confidential and Proprietary \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_36.yml b/src/licensedcode/data/rules/proprietary_36.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_37.RULE b/src/licensedcode/data/rules/proprietary_37.RULE index 45c962b055d..ac3ac1695e0 100644 --- a/src/licensedcode/data/rules/proprietary_37.RULE +++ b/src/licensedcode/data/rules/proprietary_37.RULE @@ -1 +1,7 @@ +--- +license_expression: commercial-license +is_license_reference: yes +relevance: 100 +--- + Confidential and Proprietary Information \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_37.yml b/src/licensedcode/data/rules/proprietary_37.yml deleted file mode 100644 index 118ac1c923a..00000000000 --- a/src/licensedcode/data/rules/proprietary_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: commercial-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_38.RULE b/src/licensedcode/data/rules/proprietary_38.RULE index 27c201298dd..47cd6672400 100644 --- a/src/licensedcode/data/rules/proprietary_38.RULE +++ b/src/licensedcode/data/rules/proprietary_38.RULE @@ -1,3 +1,8 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + PROPRIETARY DATA THIS SOFTWARE IS THE CONFIDENTIAL AND PROPRIETARY INFORMATION OF YOU SHALL NOT DISCLOSE SUCH INFORMATION AND SHALL USE IT ONLY IN @@ -9,4 +14,4 @@ SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. TEST Company SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING -THIS SOFTWARE OR ITS DERIVATIVES. +THIS SOFTWARE OR ITS DERIVATIVES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_38.yml b/src/licensedcode/data/rules/proprietary_38.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/proprietary_38.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_39.RULE b/src/licensedcode/data/rules/proprietary_39.RULE index 93ec3f79619..63597953643 100644 --- a/src/licensedcode/data/rules/proprietary_39.RULE +++ b/src/licensedcode/data/rules/proprietary_39.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: there is a typo in convering. +--- + This file is licensed under the terms of your license agreement(s) with convering this file. Redistribution, except as permitted by the terms of your license agreement(s) with , is strictly prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_39.yml b/src/licensedcode/data/rules/proprietary_39.yml deleted file mode 100644 index 06ad8812af0..00000000000 --- a/src/licensedcode/data/rules/proprietary_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: there is a typo in convering. diff --git a/src/licensedcode/data/rules/proprietary_4.RULE b/src/licensedcode/data/rules/proprietary_4.RULE index 25d579b2887..b7d5a7e1ab7 100644 --- a/src/licensedcode/data/rules/proprietary_4.RULE +++ b/src/licensedcode/data/rules/proprietary_4.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: VMware EULA +--- + This software is covered under the EULA of your VMware product. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_4.yml b/src/licensedcode/data/rules/proprietary_4.yml deleted file mode 100644 index 443f98557a3..00000000000 --- a/src/licensedcode/data/rules/proprietary_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: VMware EULA diff --git a/src/licensedcode/data/rules/proprietary_40.RULE b/src/licensedcode/data/rules/proprietary_40.RULE index 14153ae568b..bb26fdc1c82 100644 --- a/src/licensedcode/data/rules/proprietary_40.RULE +++ b/src/licensedcode/data/rules/proprietary_40.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This file is licensed under the terms of your license agreement(s) with covering this file. Redistribution, except as permitted by the terms of your license agreement(s) with , is strictly prohibited. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_40.yml b/src/licensedcode/data/rules/proprietary_40.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_40.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_41.RULE b/src/licensedcode/data/rules/proprietary_41.RULE index 470bfb361a2..84fc0a73f91 100644 --- a/src/licensedcode/data/rules/proprietary_41.RULE +++ b/src/licensedcode/data/rules/proprietary_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +minimum_coverage: 40 +--- + The software is property of . This software is distributed on an „AS IS“ basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. Only in case of an authorized download of the diff --git a/src/licensedcode/data/rules/proprietary_41.yml b/src/licensedcode/data/rules/proprietary_41.yml deleted file mode 100644 index abb09269654..00000000000 --- a/src/licensedcode/data/rules/proprietary_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -minimum_coverage: 40 diff --git a/src/licensedcode/data/rules/proprietary_42.RULE b/src/licensedcode/data/rules/proprietary_42.RULE index 600da9adf8d..df46ab113eb 100644 --- a/src/licensedcode/data/rules/proprietary_42.RULE +++ b/src/licensedcode/data/rules/proprietary_42.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +notes: Linux MODULE_LICENSE binary tag +--- + MODULE_license=Proprietary \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_42.yml b/src/licensedcode/data/rules/proprietary_42.yml deleted file mode 100644 index c3863985c07..00000000000 --- a/src/licensedcode/data/rules/proprietary_42.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 -notes: Linux MODULE_LICENSE binary tag diff --git a/src/licensedcode/data/rules/proprietary_43.RULE b/src/licensedcode/data/rules/proprietary_43.RULE index 5988b191ac2..c70d3ca74ff 100644 --- a/src/licensedcode/data/rules/proprietary_43.RULE +++ b/src/licensedcode/data/rules/proprietary_43.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: Linux MODULE_LICENSE binary tag +--- + DRIVER_license=Proprietary \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_43.yml b/src/licensedcode/data/rules/proprietary_43.yml deleted file mode 100644 index 28043acaf75..00000000000 --- a/src/licensedcode/data/rules/proprietary_43.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: Linux MODULE_LICENSE binary tag diff --git a/src/licensedcode/data/rules/proprietary_44.RULE b/src/licensedcode/data/rules/proprietary_44.RULE index 8c14c02df1e..98e57624a52 100644 --- a/src/licensedcode/data/rules/proprietary_44.RULE +++ b/src/licensedcode/data/rules/proprietary_44.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + "This program and its documentation constitute intellectual property " "of SAS and is protected by the copyright laws of " "the European Union and other countries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_44.yml b/src/licensedcode/data/rules/proprietary_44.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_44.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_45.RULE b/src/licensedcode/data/rules/proprietary_45.RULE index 5de20aceb17..9f0c166e6b6 100644 --- a/src/licensedcode/data/rules/proprietary_45.RULE +++ b/src/licensedcode/data/rules/proprietary_45.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + "This program and its documentation constitute intellectual property " "of and is protected by the copyright laws of " - "the European Union and other countries.") + "the European Union and other countries.") \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_45.yml b/src/licensedcode/data/rules/proprietary_45.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_45.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_46.RULE b/src/licensedcode/data/rules/proprietary_46.RULE index 5a768da481d..dcd3e86d847 100644 --- a/src/licensedcode/data/rules/proprietary_46.RULE +++ b/src/licensedcode/data/rules/proprietary_46.RULE @@ -1,7 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ("Proprietary" t "All Rights Reserved." "" "This program and its documentation constitute intellectual property " "of and is protected by the copyright laws of " - "the European Union and other countries.") + "the European Union and other countries.") \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_46.yml b/src/licensedcode/data/rules/proprietary_46.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_46.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_47.RULE b/src/licensedcode/data/rules/proprietary_47.RULE index d0169d30469..ca86dafadb6 100644 --- a/src/licensedcode/data/rules/proprietary_47.RULE +++ b/src/licensedcode/data/rules/proprietary_47.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Proprietary t All Rights Reserved -This program and its documentation constitute intellectual property of +This program and its documentation constitute intellectual property of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_47.yml b/src/licensedcode/data/rules/proprietary_47.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_48.RULE b/src/licensedcode/data/rules/proprietary_48.RULE index b3216b5206a..c4c78e23924 100644 --- a/src/licensedcode/data/rules/proprietary_48.RULE +++ b/src/licensedcode/data/rules/proprietary_48.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + and is protected by the copyright laws of " - "the European Union and other countries.") + "the European Union and other countries.") \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_48.yml b/src/licensedcode/data/rules/proprietary_48.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_49.RULE b/src/licensedcode/data/rules/proprietary_49.RULE index 3fd012fb429..e568dcc9970 100644 --- a/src/licensedcode/data/rules/proprietary_49.RULE +++ b/src/licensedcode/data/rules/proprietary_49.RULE @@ -1 +1,7 @@ -This program and its documentation constitute intellectual property of +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + +This program and its documentation constitute intellectual property of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_49.yml b/src/licensedcode/data/rules/proprietary_49.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_5.RULE b/src/licensedcode/data/rules/proprietary_5.RULE index 7805a190de6..08957a974a0 100644 --- a/src/licensedcode/data/rules/proprietary_5.RULE +++ b/src/licensedcode/data/rules/proprietary_5.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: WR proprietary notice +ignorable_copyrights: + - Copyright 1998 Integrated Systems, Inc. + - Copyright 2000 Wind River Systems, Inc. +ignorable_holders: + - Integrated Systems, Inc. + - Wind River Systems, Inc. +--- + * The programs and information contained herein are licensed only * pursuant to a license agreement that contains use, reverse * engineering, disclosure, and other restrictions; accordingly, it @@ -35,4 +47,4 @@ * of the United States Government other than DoD, the * Government's rights in the Licensed Programs and their * documentation will be as defined in Clause 52.227-19(c)(2) of - * the FAR. + * the FAR. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_5.yml b/src/licensedcode/data/rules/proprietary_5.yml deleted file mode 100644 index cf61905694c..00000000000 --- a/src/licensedcode/data/rules/proprietary_5.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: WR proprietary notice -ignorable_copyrights: - - Copyright 1998 Integrated Systems, Inc. - - Copyright 2000 Wind River Systems, Inc. -ignorable_holders: - - Integrated Systems, Inc. - - Wind River Systems, Inc. diff --git a/src/licensedcode/data/rules/proprietary_50.RULE b/src/licensedcode/data/rules/proprietary_50.RULE index ff74a584732..9a75b8f163f 100644 --- a/src/licensedcode/data/rules/proprietary_50.RULE +++ b/src/licensedcode/data/rules/proprietary_50.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ("Reserved" t "All Rights Reserved." diff --git a/src/licensedcode/data/rules/proprietary_50.yml b/src/licensedcode/data/rules/proprietary_50.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_50.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_51.RULE b/src/licensedcode/data/rules/proprietary_51.RULE index b3af9d1a289..5b2d40d7f0e 100644 --- a/src/licensedcode/data/rules/proprietary_51.RULE +++ b/src/licensedcode/data/rules/proprietary_51.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ### OEM Commercial License Should your application enable end users to produce separate applications that diff --git a/src/licensedcode/data/rules/proprietary_51.yml b/src/licensedcode/data/rules/proprietary_51.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_51.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_52.RULE b/src/licensedcode/data/rules/proprietary_52.RULE index 387f4e1038b..89884e06bc4 100644 --- a/src/licensedcode/data/rules/proprietary_52.RULE +++ b/src/licensedcode/data/rules/proprietary_52.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: from https://web.archive.org/web/20120510160538/http://www.openmobilealliance.org/tech/dtd/dm_ddf-v1_2.dtd +--- + Used with the permission of the . under the terms set forth above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_52.yml b/src/licensedcode/data/rules/proprietary_52.yml deleted file mode 100644 index de60066ff32..00000000000 --- a/src/licensedcode/data/rules/proprietary_52.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: from https://web.archive.org/web/20120510160538/http://www.openmobilealliance.org/tech/dtd/dm_ddf-v1_2.dtd diff --git a/src/licensedcode/data/rules/proprietary_53.RULE b/src/licensedcode/data/rules/proprietary_53.RULE index cec8d6a22f2..406e2f6716f 100644 --- a/src/licensedcode/data/rules/proprietary_53.RULE +++ b/src/licensedcode/data/rules/proprietary_53.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + LEGAL DISCLAIMER Use of this document is subject to all of the terms and conditions diff --git a/src/licensedcode/data/rules/proprietary_53.yml b/src/licensedcode/data/rules/proprietary_53.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_53.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_54.RULE b/src/licensedcode/data/rules/proprietary_54.RULE index fa3c52263f2..72618d15b4c 100644 --- a/src/licensedcode/data/rules/proprietary_54.RULE +++ b/src/licensedcode/data/rules/proprietary_54.RULE @@ -1,6 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + All rights reserved. No part of this book may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage and retrieval system, without written permission from the publisher, except for the inclusion of -brief quotations in a review. \ No newline at end of file +brief quotations in a review. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_54.yml b/src/licensedcode/data/rules/proprietary_54.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_54.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_55.RULE b/src/licensedcode/data/rules/proprietary_55.RULE index c10ceeecc6d..fa266412b3b 100644 --- a/src/licensedcode/data/rules/proprietary_55.RULE +++ b/src/licensedcode/data/rules/proprietary_55.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: douns in MSFT CNTLK. Not clear if this is redistributable or not. +ignorable_copyrights: + - Copyright (c) 2017 Intel Corporation +ignorable_holders: + - Intel Corporation +--- + CNTK distribution contains Redistributable components of Intel (r) Math Kernel Library (Intel (r) MKL), Copyright © 2017 Intel Corporation. diff --git a/src/licensedcode/data/rules/proprietary_55.yml b/src/licensedcode/data/rules/proprietary_55.yml deleted file mode 100644 index e9cad29cebc..00000000000 --- a/src/licensedcode/data/rules/proprietary_55.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: douns in MSFT CNTLK. Not clear if this is redistributable or not. -ignorable_copyrights: - - Copyright (c) 2017 Intel Corporation -ignorable_holders: - - Intel Corporation diff --git a/src/licensedcode/data/rules/proprietary_56.RULE b/src/licensedcode/data/rules/proprietary_56.RULE index 110daeab4ff..c23982e3bf2 100644 --- a/src/licensedcode/data/rules/proprietary_56.RULE +++ b/src/licensedcode/data/rules/proprietary_56.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: | + This is an extra clause inserted by Palantir in an Apache license + See https://github.com/palantir/blueprint/blob/826380132bcef856425a1cf88e379f19081c179a/LICENSE#L176 + and this ticket for more details https://github.com/palantir/blueprint/issues/2602 +--- + 10. The name, trade names, trademarks, service marks, or product names of Palantir Technologies Inc. (“Palantir”) or any of its Contributors may not be used to endorse or promote products derived diff --git a/src/licensedcode/data/rules/proprietary_56.yml b/src/licensedcode/data/rules/proprietary_56.yml deleted file mode 100644 index d5e2646f845..00000000000 --- a/src/licensedcode/data/rules/proprietary_56.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: | - This is an extra clause inserted by Palantir in an Apache license - See https://github.com/palantir/blueprint/blob/826380132bcef856425a1cf88e379f19081c179a/LICENSE#L176 - and this ticket for more details https://github.com/palantir/blueprint/issues/2602 diff --git a/src/licensedcode/data/rules/proprietary_56_1.RULE b/src/licensedcode/data/rules/proprietary_56_1.RULE index 73a84607ca3..6e46c84fead 100644 --- a/src/licensedcode/data/rules/proprietary_56_1.RULE +++ b/src/licensedcode/data/rules/proprietary_56_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +minimum_coverage: 95 +notes: | + This is an extra clause inserted by Palantir in an Apache license + See https://github.com/palantir/blueprint/blob/826380132bcef856425a1cf88e379f19081c179a/LICENSE#L176 + and this ticket for more details https://github.com/palantir/blueprint/issues/2602 +ignorable_urls: + - http://www.apache.org/licenses/ + - http://www.apache.org/licenses/LICENSE-2.0 +--- + Apache License (as modified) Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/proprietary_56_1.yml b/src/licensedcode/data/rules/proprietary_56_1.yml deleted file mode 100644 index 50f66dd7f4a..00000000000 --- a/src/licensedcode/data/rules/proprietary_56_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -minimum_coverage: 95 -notes: | - This is an extra clause inserted by Palantir in an Apache license - See https://github.com/palantir/blueprint/blob/826380132bcef856425a1cf88e379f19081c179a/LICENSE#L176 - and this ticket for more details https://github.com/palantir/blueprint/issues/2602 -ignorable_urls: - - http://www.apache.org/licenses/ - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/proprietary_57.RULE b/src/licensedcode/data/rules/proprietary_57.RULE index 39b63d24bcc..04f5b9fbad0 100644 --- a/src/licensedcode/data/rules/proprietary_57.RULE +++ b/src/licensedcode/data/rules/proprietary_57.RULE @@ -1,5 +1,14 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: | + This is an extra clause inserted by wg in an Apache license + See https://github.com/wg/wrk/blob/7594a95186ebdfa7cb35477a8a811f84e2a31b62/LICENSE + And https://github.com/wg/wrk/commit/db6da47fe3ee604d70304c8d10896f8349b972da#diff-9879d6db96fd29134fc802214163b95a +--- + (e) If the Derivative Work includes substantial changes to features or functionality of the Work, then you must remove the name of the Work, and any derivation thereof, from all copies that you distribute, whether in Source or Object form, except as required - in copyright, patent, trademark, and attribution notices. + in copyright, patent, trademark, and attribution notices. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_57.yml b/src/licensedcode/data/rules/proprietary_57.yml deleted file mode 100644 index 4638c229db2..00000000000 --- a/src/licensedcode/data/rules/proprietary_57.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: | - This is an extra clause inserted by wg in an Apache license - See https://github.com/wg/wrk/blob/7594a95186ebdfa7cb35477a8a811f84e2a31b62/LICENSE - And https://github.com/wg/wrk/commit/db6da47fe3ee604d70304c8d10896f8349b972da#diff-9879d6db96fd29134fc802214163b95a diff --git a/src/licensedcode/data/rules/proprietary_58.RULE b/src/licensedcode/data/rules/proprietary_58.RULE index 7a06d3cac83..f91ab4d140d 100644 --- a/src/licensedcode/data/rules/proprietary_58.RULE +++ b/src/licensedcode/data/rules/proprietary_58.RULE @@ -1,2 +1,12 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: | + There is an extra clause inserted by wg in an Apache 2.0 license + See https://github.com/wg/wrk/blob/7594a95186ebdfa7cb35477a8a811f84e2a31b62/LICENSE + And https://github.com/wg/wrk/commit/db6da47fe3ee604d70304c8d10896f8349b972da#diff-9879d6db96fd29134fc802214163b95a +--- + Modified Apache 2.0 License Version 2.0.1, February 2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_58.yml b/src/licensedcode/data/rules/proprietary_58.yml deleted file mode 100644 index 98786d28b41..00000000000 --- a/src/licensedcode/data/rules/proprietary_58.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: | - There is an extra clause inserted by wg in an Apache 2.0 license - See https://github.com/wg/wrk/blob/7594a95186ebdfa7cb35477a8a811f84e2a31b62/LICENSE - And https://github.com/wg/wrk/commit/db6da47fe3ee604d70304c8d10896f8349b972da#diff-9879d6db96fd29134fc802214163b95a diff --git a/src/licensedcode/data/rules/proprietary_59.RULE b/src/licensedcode/data/rules/proprietary_59.RULE index 4030494dd2a..f06a1234f71 100644 --- a/src/licensedcode/data/rules/proprietary_59.RULE +++ b/src/licensedcode/data/rules/proprietary_59.RULE @@ -1,2 +1,13 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: | + This is an extra clause inserted by Palantir in an Apache license + See https://github.com/palantir/blueprint/blob/826380132bcef856425a1cf88e379f19081c179a/LICENSE#L176 + and this ticket for more details https://github.com/palantir/blueprint/issues/2602 +--- + Apache License (as modified) Version 2.0, January 2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_59.yml b/src/licensedcode/data/rules/proprietary_59.yml deleted file mode 100644 index 34ae3c861fc..00000000000 --- a/src/licensedcode/data/rules/proprietary_59.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: | - This is an extra clause inserted by Palantir in an Apache license - See https://github.com/palantir/blueprint/blob/826380132bcef856425a1cf88e379f19081c179a/LICENSE#L176 - and this ticket for more details https://github.com/palantir/blueprint/issues/2602 diff --git a/src/licensedcode/data/rules/proprietary_6.RULE b/src/licensedcode/data/rules/proprietary_6.RULE index 54e1053e359..610fbda4598 100644 --- a/src/licensedcode/data/rules/proprietary_6.RULE +++ b/src/licensedcode/data/rules/proprietary_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: Proprietary notice +--- + This code is strictly confidential and the receiver is obliged to use it exclusively for his or her own purposes. No part of MyCo code may be reproduced or transmitted in any form or by any means, electronic or diff --git a/src/licensedcode/data/rules/proprietary_6.yml b/src/licensedcode/data/rules/proprietary_6.yml deleted file mode 100644 index a05933215ee..00000000000 --- a/src/licensedcode/data/rules/proprietary_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: Proprietary notice diff --git a/src/licensedcode/data/rules/proprietary_60.RULE b/src/licensedcode/data/rules/proprietary_60.RULE index 1b87ffb6be4..54ec6a24fa3 100644 --- a/src/licensedcode/data/rules/proprietary_60.RULE +++ b/src/licensedcode/data/rules/proprietary_60.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.bis.doc.gov/ +--- + Software License Agreement IMPORTANT—READ CAREFULLY: Do not install, copy or use the enclosed @@ -192,4 +199,4 @@ You agree to all of the terms of this Agreement. This Agreement constitutes the entire agreement between the parties and supersedes any prior or contemporaneous oral or written - agreements with respect to the subject matter of this Agreement. + agreements with respect to the subject matter of this Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_60.yml b/src/licensedcode/data/rules/proprietary_60.yml deleted file mode 100644 index ae539640d52..00000000000 --- a/src/licensedcode/data/rules/proprietary_60.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.bis.doc.gov/ diff --git a/src/licensedcode/data/rules/proprietary_61.RULE b/src/licensedcode/data/rules/proprietary_61.RULE index f69ce73b82f..b0eccdde14e 100644 --- a/src/licensedcode/data/rules/proprietary_61.RULE +++ b/src/licensedcode/data/rules/proprietary_61.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + All rights reserved and confidential information \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_61.yml b/src/licensedcode/data/rules/proprietary_61.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_62.RULE b/src/licensedcode/data/rules/proprietary_62.RULE index ece7906ed23..9559d2f17c7 100644 --- a/src/licensedcode/data/rules/proprietary_62.RULE +++ b/src/licensedcode/data/rules/proprietary_62.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: a fairly complicated license that looks a bit like a bsd. from https://github.com/SBPrime/AsyncWorldEdit/wiki/License +--- + Redistribution in source, use in source and binary forms, with or without modification, are permitted free of charge provided that the following conditions are met: @@ -35,4 +41,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_62.yml b/src/licensedcode/data/rules/proprietary_62.yml deleted file mode 100644 index 76fb629f392..00000000000 --- a/src/licensedcode/data/rules/proprietary_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: a fairly complicated license that looks a bit like a bsd. from https://github.com/SBPrime/AsyncWorldEdit/wiki/License diff --git a/src/licensedcode/data/rules/proprietary_63.RULE b/src/licensedcode/data/rules/proprietary_63.RULE index b3c220a6403..b556ad636a8 100644 --- a/src/licensedcode/data/rules/proprietary_63.RULE +++ b/src/licensedcode/data/rules/proprietary_63.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: a fairly complicated license that looks a bit like a bsd. from https://github.com/SBPrime/AsyncWorldEdit/wiki/License +--- + Redistribution in source, use in source and binary forms, with or without modification, are permitted free of charge provided that the following @@ -37,5 +43,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. - +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_63.yml b/src/licensedcode/data/rules/proprietary_63.yml deleted file mode 100644 index 76fb629f392..00000000000 --- a/src/licensedcode/data/rules/proprietary_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: a fairly complicated license that looks a bit like a bsd. from https://github.com/SBPrime/AsyncWorldEdit/wiki/License diff --git a/src/licensedcode/data/rules/proprietary_64.RULE b/src/licensedcode/data/rules/proprietary_64.RULE index 0a527a68efb..9a99597a95f 100644 --- a/src/licensedcode/data/rules/proprietary_64.RULE +++ b/src/licensedcode/data/rules/proprietary_64.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +minimum_coverage: 25 +notes: a fairly complicated license that looks a bit like a bsd. from https://github.com/SBPrime/AsyncWorldEdit/wiki/License +--- + Redistribution and use in source and binary forms, with or without modification, are permitted free of charge provided that the following conditions are met: @@ -29,4 +36,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 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. +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_64.yml b/src/licensedcode/data/rules/proprietary_64.yml deleted file mode 100644 index 1d4412de868..00000000000 --- a/src/licensedcode/data/rules/proprietary_64.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -minimum_coverage: 25 -notes: a fairly complicated license that looks a bit like a bsd. from https://github.com/SBPrime/AsyncWorldEdit/wiki/License diff --git a/src/licensedcode/data/rules/proprietary_65.RULE b/src/licensedcode/data/rules/proprietary_65.RULE index 1c261d22bac..8d2f991d91b 100644 --- a/src/licensedcode/data/rules/proprietary_65.RULE +++ b/src/licensedcode/data/rules/proprietary_65.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + | US Government Users Restricted Rights -- Use, duplication | | or disclosure restricted by GSA ADP Schedule Contract with | -| IBM Corp. \ No newline at end of file +| IBM Corp. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_65.yml b/src/licensedcode/data/rules/proprietary_65.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_65.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_66.RULE b/src/licensedcode/data/rules/proprietary_66.RULE index e242028b6ac..afe5c8a43f1 100644 --- a/src/licensedcode/data/rules/proprietary_66.RULE +++ b/src/licensedcode/data/rules/proprietary_66.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + LEGAL DISCLAIMER Use of this document is subject to all of the terms and conditions diff --git a/src/licensedcode/data/rules/proprietary_66.yml b/src/licensedcode/data/rules/proprietary_66.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_66.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_67.RULE b/src/licensedcode/data/rules/proprietary_67.RULE index 08479ab381a..59599c16b59 100644 --- a/src/licensedcode/data/rules/proprietary_67.RULE +++ b/src/licensedcode/data/rules/proprietary_67.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Proprietary license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_67.yml b/src/licensedcode/data/rules/proprietary_67.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_68.RULE b/src/licensedcode/data/rules/proprietary_68.RULE index 15290828e29..e7206dd8adb 100644 --- a/src/licensedcode/data/rules/proprietary_68.RULE +++ b/src/licensedcode/data/rules/proprietary_68.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ALL RIGHTS RESERVED. NO PART OF THIS CODE AND INFORMATION MAY BE REUSED, REPRODUCED OR TRANSMITTED IN ANY FORM OR BY ANY MEANS, -WITHOUT WRITTEN PERMISSION FROM THE COMPANY. +WITHOUT WRITTEN PERMISSION FROM THE COMPANY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_68.yml b/src/licensedcode/data/rules/proprietary_68.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_68.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_69.RULE b/src/licensedcode/data/rules/proprietary_69.RULE index ddf4aae6e13..f1410e66ad4 100644 --- a/src/licensedcode/data/rules/proprietary_69.RULE +++ b/src/licensedcode/data/rules/proprietary_69.RULE @@ -1,7 +1,12 @@ +--- +license_expression: commercial-license +is_license_notice: yes +--- + COPYRIGHT AND CONFIDENTIALITY This software is the confidential and proprietary information ("Confidential Information"). All intellectual property rights including copyright subsisting in this work are owned or controlled by . This work and any information it contains are submitted to the purpose of fulfilling the NDA signed between parties. It is to be treated as confidential and shall not be used for any other purpose. The work shall not be copied or disclosed to third parties in whole or in part without the -prior written consent of . +prior written consent of . \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_69.yml b/src/licensedcode/data/rules/proprietary_69.yml deleted file mode 100644 index 05a415b196f..00000000000 --- a/src/licensedcode/data/rules/proprietary_69.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_7.RULE b/src/licensedcode/data/rules/proprietary_7.RULE index bcc1e846c1a..685fb666d36 100644 --- a/src/licensedcode/data/rules/proprietary_7.RULE +++ b/src/licensedcode/data/rules/proprietary_7.RULE @@ -1,5 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: apple proprietary +--- + * This program is confidential and proprietary to and, * without the express prior written permission of , may not be * copied, reproduced, disclosed to others, published or used, in whole * or in part, for any purpose other than that for which it is being -* made available. +* made available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_7.yml b/src/licensedcode/data/rules/proprietary_7.yml deleted file mode 100644 index 700167df181..00000000000 --- a/src/licensedcode/data/rules/proprietary_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: apple proprietary diff --git a/src/licensedcode/data/rules/proprietary_70.RULE b/src/licensedcode/data/rules/proprietary_70.RULE index 6ee99d78838..b172a910d91 100644 --- a/src/licensedcode/data/rules/proprietary_70.RULE +++ b/src/licensedcode/data/rules/proprietary_70.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +minimum_coverage: 50 +--- + License agreement for @NAME@ @VERSION@ @STATUS@ and included software applications @@ -69,6 +75,4 @@ DEVELOPER. does not demand reports on using the Distribution from owners of a co Copyright for Applications that are part of the Distribution, including exclusive right to allow use of applications, is subject to applicable copyright law, including applicable international agreements on copyright. Users are solely responsible for observation of national legislation while using Applications that are part of the Distribution. -DEVELOPER. hope that Applications that are part of the Distribution will will be useful, but does not give any warranty for their fitness for any particular purpose or their quality (including absence of errors or standards conformity) and is not in charge for any possible damage, direct or implied, that is result of using these Applications. - - +DEVELOPER. hope that Applications that are part of the Distribution will will be useful, but does not give any warranty for their fitness for any particular purpose or their quality (including absence of errors or standards conformity) and is not in charge for any possible damage, direct or implied, that is result of using these Applications. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_70.yml b/src/licensedcode/data/rules/proprietary_70.yml deleted file mode 100644 index 2d626e8f0ca..00000000000 --- a/src/licensedcode/data/rules/proprietary_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/proprietary_71.RULE b/src/licensedcode/data/rules/proprietary_71.RULE index 2490c91d465..dd922de5f14 100644 --- a/src/licensedcode/data/rules/proprietary_71.RULE +++ b/src/licensedcode/data/rules/proprietary_71.RULE @@ -1,5 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +--- + This file is not in the public domain nor under any public domain license. This file must not be made public domain by including or adding code that is in public domain and that would require the remaining code to -become public domain as well. - \ No newline at end of file +become public domain as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_71.yml b/src/licensedcode/data/rules/proprietary_71.yml deleted file mode 100644 index d3712bcc90f..00000000000 --- a/src/licensedcode/data/rules/proprietary_71.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/proprietary_72.RULE b/src/licensedcode/data/rules/proprietary_72.RULE index 635748fd011..d855a1052b4 100644 --- a/src/licensedcode/data/rules/proprietary_72.RULE +++ b/src/licensedcode/data/rules/proprietary_72.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +--- + This file is not in the public domain nor under any public domain license. This file must not be made public domain by including or adding code that is in public domain and that would require the remaining code to @@ -6,4 +11,4 @@ It is the full and only responsibility of the chip-set manufacturer that this file will not become public domain or that there might be a need to publish the source code of this file or any other file in the - Library to any third party at any time. + Library to any third party at any time. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_72.yml b/src/licensedcode/data/rules/proprietary_72.yml deleted file mode 100644 index d3712bcc90f..00000000000 --- a/src/licensedcode/data/rules/proprietary_72.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/proprietary_73.RULE b/src/licensedcode/data/rules/proprietary_73.RULE index 606d9c2d244..b375ea5f1a2 100644 --- a/src/licensedcode/data/rules/proprietary_73.RULE +++ b/src/licensedcode/data/rules/proprietary_73.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + can be copied, modified and distributed freely ** ** for any non-commercial purposes under the conditions that all ** -** files include this header and that the message \ No newline at end of file +** files include this header and that the message \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_73.yml b/src/licensedcode/data/rules/proprietary_73.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_73.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_74.RULE b/src/licensedcode/data/rules/proprietary_74.RULE index 9cac13c2472..457561b1b2d 100644 --- a/src/licensedcode/data/rules/proprietary_74.RULE +++ b/src/licensedcode/data/rules/proprietary_74.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + /* NOTE: This source code is NO LONGER in the Public Domain. I have */ /* left the above message and the other comments to give a history of */ -/* the program. \ No newline at end of file +/* the program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_74.yml b/src/licensedcode/data/rules/proprietary_74.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_74.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_75.RULE b/src/licensedcode/data/rules/proprietary_75.RULE index 25ad9f8bb43..8d4a2fa8795 100644 --- a/src/licensedcode/data/rules/proprietary_75.RULE +++ b/src/licensedcode/data/rules/proprietary_75.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Not public domain! \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_75.yml b/src/licensedcode/data/rules/proprietary_75.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_76.RULE b/src/licensedcode/data/rules/proprietary_76.RULE index d79d28aad2c..b1dcb462e2e 100644 --- a/src/licensedcode/data/rules/proprietary_76.RULE +++ b/src/licensedcode/data/rules/proprietary_76.RULE @@ -1,2 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + /* This source code is NOT in the public domain and it CANNOT be used or */ -/* distributed without written permission from the author. \ No newline at end of file +/* distributed without written permission from the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_76.yml b/src/licensedcode/data/rules/proprietary_76.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_76.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_77.RULE b/src/licensedcode/data/rules/proprietary_77.RULE index 186ea2638c0..19e6cddadbd 100644 --- a/src/licensedcode/data/rules/proprietary_77.RULE +++ b/src/licensedcode/data/rules/proprietary_77.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_text: yes +notes: from https://github.com/NordicSemiconductor/nRF5-SDK-for-Mesh/blob/2db8b0c80e7c9877a9b5adc14786b43789b7c5f2/COPYING.md +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -29,5 +35,4 @@ 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. - +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_77.yml b/src/licensedcode/data/rules/proprietary_77.yml deleted file mode 100644 index 5138bcd3001..00000000000 --- a/src/licensedcode/data/rules/proprietary_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -notes: from https://github.com/NordicSemiconductor/nRF5-SDK-for-Mesh/blob/2db8b0c80e7c9877a9b5adc14786b43789b7c5f2/COPYING.md diff --git a/src/licensedcode/data/rules/proprietary_78.RULE b/src/licensedcode/data/rules/proprietary_78.RULE index 6273179fe86..267bee9a19b 100644 --- a/src/licensedcode/data/rules/proprietary_78.RULE +++ b/src/licensedcode/data/rules/proprietary_78.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + are not public domain software. They are copyrighted software, . It is however free software, or what some people term 'Freeware'. diff --git a/src/licensedcode/data/rules/proprietary_78.yml b/src/licensedcode/data/rules/proprietary_78.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_78.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_79.RULE b/src/licensedcode/data/rules/proprietary_79.RULE index dc473f85ff0..27e5525570e 100644 --- a/src/licensedcode/data/rules/proprietary_79.RULE +++ b/src/licensedcode/data/rules/proprietary_79.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + The FT4FP License The FT4FP project is thought to protect the rights of creative people and offers a platform to share mental property with all interested people around the globe. The FT4FP license prohibits profit oriented exploitation of mental property put under its shelter. Mental property never should be degraded to a proprietary ware, only sold to those who have the money to consume it. Knowledge and Works Of Art should not be locked in safes, where only a small group of people is allowed to access them. THE FT4FP-LICENSE 1.0. Work is any form of mental property where copyrights are applicable, e.g. academic perceptions, books, documents, music, pictures, poems, scientific discoveries, software, sculptures, technical inventions, et cetera. @@ -50,4 +55,4 @@ THE FT4FP-LICENSE 1.0. Work is any form of mental property where copyrights are 9.1. With the use of the work, you accept the exclusion of warranties of any kind. -9.2. The author excludes any liability for (subsequent) damages. With the use of the work, the user accepts the exclusion of warranties of any kind (see 9.1.). Therefore, the user her/himself is liable for any kind of damage ascribable to her/his use of the work. \ No newline at end of file +9.2. The author excludes any liability for (subsequent) damages. With the use of the work, the user accepts the exclusion of warranties of any kind (see 9.1.). Therefore, the user her/himself is liable for any kind of damage ascribable to her/his use of the work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_79.yml b/src/licensedcode/data/rules/proprietary_79.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_79.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_8.RULE b/src/licensedcode/data/rules/proprietary_8.RULE index 195b7892d2f..9bb109809d6 100644 --- a/src/licensedcode/data/rules/proprietary_8.RULE +++ b/src/licensedcode/data/rules/proprietary_8.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: Linux MODULE_LICENSE binary tag +--- + license=Proprietary \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_8.yml b/src/licensedcode/data/rules/proprietary_8.yml deleted file mode 100644 index 28043acaf75..00000000000 --- a/src/licensedcode/data/rules/proprietary_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: Linux MODULE_LICENSE binary tag diff --git a/src/licensedcode/data/rules/proprietary_80.RULE b/src/licensedcode/data/rules/proprietary_80.RULE index 4ab4e015d71..bdc344372bf 100644 --- a/src/licensedcode/data/rules/proprietary_80.RULE +++ b/src/licensedcode/data/rules/proprietary_80.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ THE CONTENT OF THIS FILE IS SUBJECT TO THE TERMS OF THE FT4FP-LICENSE! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/src/licensedcode/data/rules/proprietary_80.yml b/src/licensedcode/data/rules/proprietary_80.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_80.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_82.RULE b/src/licensedcode/data/rules/proprietary_82.RULE index b18ac3565ee..273a8451265 100644 --- a/src/licensedcode/data/rules/proprietary_82.RULE +++ b/src/licensedcode/data/rules/proprietary_82.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + This material was developed by at the University of Arizona, Department of Computer Science. Permission is granted to copy this software, to redistribute it on a nonprofit basis, and to use it for any purpose, subject to the following restrictions and understandings. Any copy made of this software must include this copyright notice in full. @@ -6,4 +11,4 @@ All materials developed as a consequence of the use of this software shall duly The authors have made no warranty or representation that the operation of this software will be error-free or suitable for any application, and they are under under no obligation to provide any services, by way of maintenance, update, or otherwise. The software is an experimental prototype offered on an as-is basis. -Redistribution for profit requires the express, written permission of the authors. \ No newline at end of file +Redistribution for profit requires the express, written permission of the authors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_82.yml b/src/licensedcode/data/rules/proprietary_82.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_82.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_83.RULE b/src/licensedcode/data/rules/proprietary_83.RULE index 2b49cc42d4b..bdc539ad5b0 100644 --- a/src/licensedcode/data/rules/proprietary_83.RULE +++ b/src/licensedcode/data/rules/proprietary_83.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_emails: + - support@totallyobjects.com +--- + SOFTWARE LICENSE AGREEMENT IMPORTANT-READ CAREFULLY: This Totally Objects License Agreement ('SLA')is a legal agreement between you (either an individual or a single entity) and Totally Objects for the Totally Objects product identified above, which includes computer software and may include associated media, printed materials, and "online" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT, you agree to be bound by the terms of this SLA. If you do not agree to the terms of this SLA, do not install or use the SOFTWARE PRODUCT. @@ -32,4 +39,4 @@ In no event shall Totally Objects or its suppliers be liable for any damages wha MISCELLANEOUS This SLA is governed by the laws of the United Kingdom. -Should you have any questions concerning this SLA, or if you desire to contact Totally Objects for any reason, please contact support@totallyobjects.com. \ No newline at end of file +Should you have any questions concerning this SLA, or if you desire to contact Totally Objects for any reason, please contact support@totallyobjects.com. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_83.yml b/src/licensedcode/data/rules/proprietary_83.yml deleted file mode 100644 index b2880804ed2..00000000000 --- a/src/licensedcode/data/rules/proprietary_83.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_emails: - - support@totallyobjects.com diff --git a/src/licensedcode/data/rules/proprietary_84.RULE b/src/licensedcode/data/rules/proprietary_84.RULE index fa469edb897..2b5079d4ecc 100644 --- a/src/licensedcode/data/rules/proprietary_84.RULE +++ b/src/licensedcode/data/rules/proprietary_84.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + LICENSE - WHAT YOU MAY, AND WHAT YOU MAY NOT =============================================== You may: @@ -13,4 +18,4 @@ code, send the source/information to me, and I will incorporate the changes in the 'official' release instead. I am not a control freak, I simply don't want any confusion about which - version is the one I can support. + version is the one I can support. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_84.yml b/src/licensedcode/data/rules/proprietary_84.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_84.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_85.RULE b/src/licensedcode/data/rules/proprietary_85.RULE index 29cb404f029..084c73c01ab 100644 --- a/src/licensedcode/data/rules/proprietary_85.RULE +++ b/src/licensedcode/data/rules/proprietary_85.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS COPYFARLEFT PUBLIC LICENSE ("LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND ALL OTHER APPLICABLE LAWS. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED IN THIS LICENSE, YOU AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN AS CONSIDERATION FOR ACCEPTING THE TERMS AND CONDITIONS OF THIS LICENSE AND FOR AGREEING TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS LICENSE. @@ -83,4 +88,4 @@ d.) No term or provision of this license shall be deemed waived and no breach co e.) This license constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This license may not be modified without the mutual written agreement of the Licensor and You. -f.) The rights granted under, and the subject matter referenced, in this license were draft ed utilizing the terminology of the berne convention for the protection of literary and artistic Works (as amended on september 28, 1979), the rome convention of 1961, the wipo copyright treaty of 1996, the wipo performances and phonograms treaty of 1996 and the universal copyright convention (as revised on july 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the license terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this license, such additional rights are deemed to be included in the license; this license is not intended to restrict the license of any rights under applicable law \ No newline at end of file +f.) The rights granted under, and the subject matter referenced, in this license were draft ed utilizing the terminology of the berne convention for the protection of literary and artistic Works (as amended on september 28, 1979), the rome convention of 1961, the wipo copyright treaty of 1996, the wipo performances and phonograms treaty of 1996 and the universal copyright convention (as revised on july 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the license terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this license, such additional rights are deemed to be included in the license; this license is not intended to restrict the license of any rights under applicable law \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_85.yml b/src/licensedcode/data/rules/proprietary_85.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_85.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_86.RULE b/src/licensedcode/data/rules/proprietary_86.RULE index 02aa2e55771..a2e70f9fffb 100644 --- a/src/licensedcode/data/rules/proprietary_86.RULE +++ b/src/licensedcode/data/rules/proprietary_86.RULE @@ -1,3 +1,14 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - Portions Copyright (c) 1983-2002 Sybase, Inc. +ignorable_holders: + - Sybase, Inc. +ignorable_urls: + - http://www.sybase.com/developer/opensource +--- + Sybase Open Watcom Public License version 1.0 USE OF THE SYBASE OPEN WATCOM SOFTWARE DESCRIBED BELOW ("SOFTWARE") IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THE SYBASE OPEN WATCOM PUBLIC LICENSE SET FORTH BELOW (“LICENSE”). YOU MAY NOT USE THE SOFTWARE IN ANY MANNER UNLESS YOU ACCEPT THE TERMS AND CONDITIONS OF THE LICENSE. YOU INDICATE YOUR ACCEPTANCE BY IN ANY MANNER USING (INCLUDING WITHOUT LIMITATION BY REPRODUCING, MODIFYING OR DISTRIBUTING) THE SOFTWARE. IF YOU DO NOT ACCEPT ALL OF THE TERMS AND CONDITIONS OF THE LICENSE, DO NOT USE THE SOFTWARE IN ANY MANNER. @@ -106,4 +117,4 @@ This License does not grant any rights to use the trademarks or trade names "Syb Where You are located in the province of Quebec, Canada, the following clause applies: The parties hereby confirm that they have requested that this License and all related documents be drafted in English. Les parties ont exigé que le présent contrat et tous les documents connexes soient rédigés en anglais. EXHIBIT A. -"Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Sybase Open Watcom Public License version 1.0 (the 'License'). You may not use this file except in compliance with the License. BY USING THIS FILE YOU AGREE TO ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is provided with the Original Code and Modifications, and is also available at http://www.sybase.com/developer/opensource. The Original Code and all software distributed under the License are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and limitations under the License." \ No newline at end of file +"Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Sybase Open Watcom Public License version 1.0 (the 'License'). You may not use this file except in compliance with the License. BY USING THIS FILE YOU AGREE TO ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is provided with the Original Code and Modifications, and is also available at http://www.sybase.com/developer/opensource. The Original Code and all software distributed under the License are distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the specific language governing rights and limitations under the License." \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_86.yml b/src/licensedcode/data/rules/proprietary_86.yml deleted file mode 100644 index 1e536f1623f..00000000000 --- a/src/licensedcode/data/rules/proprietary_86.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - Portions Copyright (c) 1983-2002 Sybase, Inc. -ignorable_holders: - - Sybase, Inc. -ignorable_urls: - - http://www.sybase.com/developer/opensource diff --git a/src/licensedcode/data/rules/proprietary_87.RULE b/src/licensedcode/data/rules/proprietary_87.RULE index 3040cf35607..56676e06f06 100644 --- a/src/licensedcode/data/rules/proprietary_87.RULE +++ b/src/licensedcode/data/rules/proprietary_87.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + No commercial usage allowed \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_87.yml b/src/licensedcode/data/rules/proprietary_87.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_88.RULE b/src/licensedcode/data/rules/proprietary_88.RULE index 83cb947265f..5a938a9917a 100644 --- a/src/licensedcode/data/rules/proprietary_88.RULE +++ b/src/licensedcode/data/rules/proprietary_88.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - Copyright 1988, 1989 Adobe Systems Incorporated +ignorable_holders: + - Adobe Systems Incorporated +--- + LICENSE AGREEMENT FOR THE IBM DEVICE DRIVER KIT FOR OS/2 This is a legal agreement between you (either an individual or an entity) and the IBM Corporation for the purpose of developing device drivers for OS/2*. @@ -72,4 +81,4 @@ You are responsible for payment of any taxes, including personal property taxes, If you acquire the Product in the United States, this agreement is controlled by the substantive laws governing contracts made and entirely performed in the State of New York. If you acquire the Product in Canada, this agreement is governed by the laws of the Province of Ontario. Otherwise, this agreement is governed by the laws of the country in which you acquired the Product. However, United States patent and copyright law shall apply in all cases. -The export of this Product is restricted by U.S. export regulations, and you agree to do everything necessary to comply with these regulations. \ No newline at end of file +The export of this Product is restricted by U.S. export regulations, and you agree to do everything necessary to comply with these regulations. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_88.yml b/src/licensedcode/data/rules/proprietary_88.yml deleted file mode 100644 index 6d3c06e1dde..00000000000 --- a/src/licensedcode/data/rules/proprietary_88.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - Copyright 1988, 1989 Adobe Systems Incorporated -ignorable_holders: - - Adobe Systems Incorporated diff --git a/src/licensedcode/data/rules/proprietary_89.RULE b/src/licensedcode/data/rules/proprietary_89.RULE index 7885c456bcb..103533cb4dc 100644 --- a/src/licensedcode/data/rules/proprietary_89.RULE +++ b/src/licensedcode/data/rules/proprietary_89.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + IBM License Agreement for IBM Employee-Written Software IF YOU DOWNLOAD OR USE THIS PROGRAM YOU AGREE TO THESE TERMS. @@ -44,4 +49,4 @@ You may not sell, transfer, assign, or subcontract any of your rights or obligat Neither of us may bring a legal action more than two years after the cause of action arose. -If you acquired the Program in the United States, this license is governed by the laws of the State of New York. If you acquired the Program in Canada, this license is governed by the laws of the Province of Ontario. Otherwise, this license is governed by the laws of the country in which you acquired the Program. \ No newline at end of file +If you acquired the Program in the United States, this license is governed by the laws of the State of New York. If you acquired the Program in Canada, this license is governed by the laws of the Province of Ontario. Otherwise, this license is governed by the laws of the country in which you acquired the Program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_89.yml b/src/licensedcode/data/rules/proprietary_89.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_89.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_9.RULE b/src/licensedcode/data/rules/proprietary_9.RULE index a23cfe57553..a96d61c8a28 100644 --- a/src/licensedcode/data/rules/proprietary_9.RULE +++ b/src/licensedcode/data/rules/proprietary_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: Proprietary +--- + This software is proprietary and is the property of Software is furnished under a license agreement and is not to be disclosed to others except by the written permission -of \ No newline at end of file +of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_9.yml b/src/licensedcode/data/rules/proprietary_9.yml deleted file mode 100644 index 26d893c2608..00000000000 --- a/src/licensedcode/data/rules/proprietary_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: Proprietary diff --git a/src/licensedcode/data/rules/proprietary_90.RULE b/src/licensedcode/data/rules/proprietary_90.RULE index 0e706cc9345..554ba51c2dd 100644 --- a/src/licensedcode/data/rules/proprietary_90.RULE +++ b/src/licensedcode/data/rules/proprietary_90.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + TERMS AND CONDITIONS FOR USE OF "ICOT FREE SOFTWARE" 1. Purposes and Background of "ICOT Free Software." @@ -21,4 +26,4 @@ EACH USER OF THE PROGRAM WILL AGREE AND UNDERSTAND, AND BE DEEMED TO HAVE AGREED THEREFORE, NEITHER ICOT, THE COPYRIGHT HOLDER, OR ANY OTHER ORGANIZATION THAT PARTICIPATED IN OR WAS OTHERWISE RELATED TO THE DEVELOPMENT OF THE PROGRAM AND THEIR RESPECTIVE OFFICIALS, DIRECTORS, OFFICERS AND OTHER EMPLOYEES SHALL BE HELD LIABLE FOR ANY AND ALL DAMAGES, INCLUDING, WITHOUT LIMITATION, GENERAL, SPECIAL, INCIDENTAL AND CONSEQUENTIAL DAMAGES, ARISING OUT OF OR OTHERWISE IN CONNECTION WITH THE USE OR INABILITY TO USE THE PROGRAM OR ANY PRODUCT, MATERIAL OR RESULT PRODUCED OR OTHERWISE OBTAINED BY USING THE PROGRAM, REGARDLESS OF WHETHER THEY HAVE BEEN ADVISED OF, OR OTHERWISE HAD KNOWLEDGE OF, THE POSSIBILITY OF SUCH DAMAGES AT ANY TIME DURING THE PROJECT OR THEREAFTER. EACH USER WILL BE DEEMED TO HAVE AGREED TO THE FOREGOING BY HIS OR HER COMMENCEMENT OF USE OF THE PROGRAM. THE TERM "USE" AS USED HEREIN INCLUDES, BUT IS NOT LIMITED TO, THE USE, MODIFICATION, COPYING AND DISTRIBUTION OF THE PROGRAM AND THE PRODUCTION OF SECONDARY PRODUCTS FROM THE PROGRAM. -IN THE CASE WHERE THE PROGRAM, WHETHER IN ITS ORIGINAL FORM OR MODIFIED, WAS DISTRIBUTED OR DELIVERED TO OR RECEIVED BY A USER FROM ANY PERSON, ORGANIZATION OR ENTITY OTHER THAN ICOT, UNLESS IT MAKES OR GRANTS INDEPENDENTLY OF ICOT ANY SPECIFIC WARRANTY TO THE USER IN WRITING, SUCH PERSON, ORGANIZATION OR ENTITY, WILL ALSO BE EXEMPTED FROM AND NOT BE HELD LIABLE TO THE USER FOR ANY SUCH DAMAGES AS NOTED ABOVE AS FAR AS THE PROGRAM IS CONCERNED. \ No newline at end of file +IN THE CASE WHERE THE PROGRAM, WHETHER IN ITS ORIGINAL FORM OR MODIFIED, WAS DISTRIBUTED OR DELIVERED TO OR RECEIVED BY A USER FROM ANY PERSON, ORGANIZATION OR ENTITY OTHER THAN ICOT, UNLESS IT MAKES OR GRANTS INDEPENDENTLY OF ICOT ANY SPECIFIC WARRANTY TO THE USER IN WRITING, SUCH PERSON, ORGANIZATION OR ENTITY, WILL ALSO BE EXEMPTED FROM AND NOT BE HELD LIABLE TO THE USER FOR ANY SUCH DAMAGES AS NOTED ABOVE AS FAR AS THE PROGRAM IS CONCERNED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_90.yml b/src/licensedcode/data/rules/proprietary_90.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_90.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_91.RULE b/src/licensedcode/data/rules/proprietary_91.RULE index 671e944a96d..dc9da37b495 100644 --- a/src/licensedcode/data/rules/proprietary_91.RULE +++ b/src/licensedcode/data/rules/proprietary_91.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_copyrights: + - copyrighted by BISS GmbH. +ignorable_holders: + - BISS GmbH. +--- + BISS AWT International License Agreement 1. LICENSE GRANT @@ -41,4 +50,4 @@ Chaukenweg 12 D-26388 Wilhelmshaven Germany -BISS AWT International License Agreement February 1st, 1997 \ No newline at end of file +BISS AWT International License Agreement February 1st, 1997 \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_91.yml b/src/licensedcode/data/rules/proprietary_91.yml deleted file mode 100644 index 7f14e2e7442..00000000000 --- a/src/licensedcode/data/rules/proprietary_91.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_copyrights: - - copyrighted by BISS GmbH. -ignorable_holders: - - BISS GmbH. diff --git a/src/licensedcode/data/rules/proprietary_92.RULE b/src/licensedcode/data/rules/proprietary_92.RULE index 4cccd694901..b327094bc1c 100644 --- a/src/licensedcode/data/rules/proprietary_92.RULE +++ b/src/licensedcode/data/rules/proprietary_92.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + Unpublished Work of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_92.yml b/src/licensedcode/data/rules/proprietary_92.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_93.RULE b/src/licensedcode/data/rules/proprietary_93.RULE index df138be0353..510e7d2a33f 100644 --- a/src/licensedcode/data/rules/proprietary_93.RULE +++ b/src/licensedcode/data/rules/proprietary_93.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 95 +referenced_filenames: + - License.txt +--- + Licensed under the Source EULA. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_93.yml b/src/licensedcode/data/rules/proprietary_93.yml deleted file mode 100644 index 254fa30a86e..00000000000 --- a/src/licensedcode/data/rules/proprietary_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 95 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/proprietary_94.RULE b/src/licensedcode/data/rules/proprietary_94.RULE index 66de388db1d..e906215cc30 100644 --- a/src/licensedcode/data/rules/proprietary_94.RULE +++ b/src/licensedcode/data/rules/proprietary_94.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + LICENSE Under this Software License Agreement (the "Agreement"), David Muse (the "Vendor") grants the user (the "Licensee") a non-exclusive and non-transferable license (the "License") to install and use the SQL Relay Enterprise Modules (the "Software") and install one or more license keys (the "License Keys") which enable the Software to function. @@ -27,4 +32,4 @@ NO WARRANTIES The Vendor expressly disclaims any warranty for the Software and License Keys. The Software and License Keys and any related documentation is provided “as is” without warranty of any kind, either express or implied, including, without limitation, the implied warranties or merchantability, fitness for a particular purpose, or noninfringement. The entire risk arising out of use or performance of the Software and License Keys remains with you. NO LIABILITY FOR DAMAGES. -In no event shall the Vendor be liable for any special, consequential, incidental or indirect damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use the Software or License Keys, even if the Vendor of the Software and License Keys is aware of the possibility of such damages and known defects. +In no event shall the Vendor be liable for any special, consequential, incidental or indirect damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use the Software or License Keys, even if the Vendor of the Software and License Keys is aware of the possibility of such damages and known defects. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_94.yml b/src/licensedcode/data/rules/proprietary_94.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_94.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_95.RULE b/src/licensedcode/data/rules/proprietary_95.RULE index 7eba29ef314..c7e7f616029 100644 --- a/src/licensedcode/data/rules/proprietary_95.RULE +++ b/src/licensedcode/data/rules/proprietary_95.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Strictly confidential. The code in this directory is strictly confidential and should no be diff --git a/src/licensedcode/data/rules/proprietary_95.yml b/src/licensedcode/data/rules/proprietary_95.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_95.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_96.RULE b/src/licensedcode/data/rules/proprietary_96.RULE index e54b2900875..455fe8704c8 100644 --- a/src/licensedcode/data/rules/proprietary_96.RULE +++ b/src/licensedcode/data/rules/proprietary_96.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + MKL is a proprietary software and it is the responsibility of users to buy or register for community (free) Intel MKL licenses for their products. Moreover, the license of the user product has to allow linking to proprietary software that excludes any unmodified versions of the GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_96.yml b/src/licensedcode/data/rules/proprietary_96.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_96.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_97.RULE b/src/licensedcode/data/rules/proprietary_97.RULE index 39050ae057c..4a19fe7c83b 100644 --- a/src/licensedcode/data/rules/proprietary_97.RULE +++ b/src/licensedcode/data/rules/proprietary_97.RULE @@ -1 +1,7 @@ -Strictly confidential. +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + +Strictly confidential. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_97.yml b/src/licensedcode/data/rules/proprietary_97.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_98.RULE b/src/licensedcode/data/rules/proprietary_98.RULE index 0cd22e5644a..d739ad3e9d7 100644 --- a/src/licensedcode/data/rules/proprietary_98.RULE +++ b/src/licensedcode/data/rules/proprietary_98.RULE @@ -1,2 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The code in this directory is strictly confidential and should no be redistributed without the explicit permission of . \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_98.yml b/src/licensedcode/data/rules/proprietary_98.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_98.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_99.RULE b/src/licensedcode/data/rules/proprietary_99.RULE index e3db3ecdcae..c3c5452e234 100644 --- a/src/licensedcode/data/rules/proprietary_99.RULE +++ b/src/licensedcode/data/rules/proprietary_99.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_urls: + - http://www.confluent.io/confluent-community-license +--- + Confluent Community License Agreement Version 1.0 @@ -111,4 +118,4 @@ the entity on whose behalf you are receiving the Software. terminate. Waiver by Confluent of a breach of any provision of this Agreement or the failure by Confluent to exercise any right hereunder will not be construed as a waiver of any subsequent breach of that right - or as a waiver of any other right. + or as a waiver of any other right. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_99.yml b/src/licensedcode/data/rules/proprietary_99.yml deleted file mode 100644 index 4b79fbeb97d..00000000000 --- a/src/licensedcode/data/rules/proprietary_99.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_urls: - - http://www.confluent.io/confluent-community-license diff --git a/src/licensedcode/data/rules/proprietary_academic_1.RULE b/src/licensedcode/data/rules/proprietary_academic_1.RULE index 6152613ff76..17fc5f3c012 100644 --- a/src/licensedcode/data/rules/proprietary_academic_1.RULE +++ b/src/licensedcode/data/rules/proprietary_academic_1.RULE @@ -1,5 +1,11 @@ +--- +license_expression: proprietary-license +is_license_text: yes +relevance: 100 +--- + LICENSE INFORMATION This license allows the empirical evaluation and a study of the source code in the scientific context for research purpose (e.g. during research projects). Particularly, it does not permit the application of the algorithms in a commercial context by others. -Also, this license requires that, if others modify the source codes or the binaries of the algorithms to obtain modified algorithms, or include the source codes or the binaries of the algorithms as a part of developed softwares, such resulting algorithms or softwares must be open source. +Also, this license requires that, if others modify the source codes or the binaries of the algorithms to obtain modified algorithms, or include the source codes or the binaries of the algorithms as a part of developed softwares, such resulting algorithms or softwares must be open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_academic_1.yml b/src/licensedcode/data/rules/proprietary_academic_1.yml deleted file mode 100644 index a68754d25dd..00000000000 --- a/src/licensedcode/data/rules/proprietary_academic_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_altera.RULE b/src/licensedcode/data/rules/proprietary_altera.RULE index c33d801fdee..799cad95bc4 100644 --- a/src/licensedcode/data/rules/proprietary_altera.RULE +++ b/src/licensedcode/data/rules/proprietary_altera.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + # Your use of Altera Corporation's design tools, logic functions # and other software and tools, and its AMPP partner logic # functions, and any output files from any of the foregoing diff --git a/src/licensedcode/data/rules/proprietary_altera.yml b/src/licensedcode/data/rules/proprietary_altera.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_altera.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_arachni2.RULE b/src/licensedcode/data/rules/proprietary_arachni2.RULE index 347e157934d..a294699ea65 100644 --- a/src/licensedcode/data/rules/proprietary_arachni2.RULE +++ b/src/licensedcode/data/rules/proprietary_arachni2.RULE @@ -1 +1,8 @@ +--- +license_expression: arachni-psl-1.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +--- + Arachni Public Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_arachni2.yml b/src/licensedcode/data/rules/proprietary_arachni2.yml deleted file mode 100644 index 9db39109069..00000000000 --- a/src/licensedcode/data/rules/proprietary_arachni2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: arachni-psl-1.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/proprietary_arachni3.RULE b/src/licensedcode/data/rules/proprietary_arachni3.RULE index bdfd1e64029..c1ea0fe3a33 100644 --- a/src/licensedcode/data/rules/proprietary_arachni3.RULE +++ b/src/licensedcode/data/rules/proprietary_arachni3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: arachni-psl-1.0 +is_license_notice: yes +minimum_coverage: 80 +--- + This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_arachni3.yml b/src/licensedcode/data/rules/proprietary_arachni3.yml deleted file mode 100644 index 859a9c367b1..00000000000 --- a/src/licensedcode/data/rules/proprietary_arachni3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: arachni-psl-1.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/proprietary_closed.RULE b/src/licensedcode/data/rules/proprietary_closed.RULE index 59c681bcf50..710aeda887a 100644 --- a/src/licensedcode/data/rules/proprietary_closed.RULE +++ b/src/licensedcode/data/rules/proprietary_closed.RULE @@ -1 +1,7 @@ -license: Closed Source +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 80 +--- + +license: Closed Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_closed.yml b/src/licensedcode/data/rules/proprietary_closed.yml deleted file mode 100644 index 7ab0db5071c..00000000000 --- a/src/licensedcode/data/rules/proprietary_closed.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/proprietary_closed2.RULE b/src/licensedcode/data/rules/proprietary_closed2.RULE index ee763b80b70..817e9963c92 100644 --- a/src/licensedcode/data/rules/proprietary_closed2.RULE +++ b/src/licensedcode/data/rules/proprietary_closed2.RULE @@ -1 +1,7 @@ -license: Closed +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 80 +--- + +license: Closed \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_closed2.yml b/src/licensedcode/data/rules/proprietary_closed2.yml deleted file mode 100644 index 7ab0db5071c..00000000000 --- a/src/licensedcode/data/rules/proprietary_closed2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/proprietary_closed3.RULE b/src/licensedcode/data/rules/proprietary_closed3.RULE index dee19b9ab17..c7b9288856e 100644 --- a/src/licensedcode/data/rules/proprietary_closed3.RULE +++ b/src/licensedcode/data/rules/proprietary_closed3.RULE @@ -1 +1,7 @@ -license: Closed Source: Proprietary +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 80 +--- + +license: Closed Source: Proprietary \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_closed3.yml b/src/licensedcode/data/rules/proprietary_closed3.yml deleted file mode 100644 index 7ab0db5071c..00000000000 --- a/src/licensedcode/data/rules/proprietary_closed3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/proprietary_confidential.RULE b/src/licensedcode/data/rules/proprietary_confidential.RULE index d60ecaf8e2d..618f7af7e0a 100644 --- a/src/licensedcode/data/rules/proprietary_confidential.RULE +++ b/src/licensedcode/data/rules/proprietary_confidential.RULE @@ -1 +1,7 @@ -PROPRIETARY & CONFIDENTIAL +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + +PROPRIETARY & CONFIDENTIAL \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_confidential.yml b/src/licensedcode/data/rules/proprietary_confidential.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_confidential.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_confidential_1.RULE b/src/licensedcode/data/rules/proprietary_confidential_1.RULE index e576043052d..037aa149111 100644 --- a/src/licensedcode/data/rules/proprietary_confidential_1.RULE +++ b/src/licensedcode/data/rules/proprietary_confidential_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + WARNING: This file contain confidential information of Co., and shall not be disclosed to any unauthorized organization or individual. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_confidential_1.yml b/src/licensedcode/data/rules/proprietary_confidential_1.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_confidential_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_confidential_2.RULE b/src/licensedcode/data/rules/proprietary_confidential_2.RULE index 106ceaccd7f..4dd5cf6c10e 100644 --- a/src/licensedcode/data/rules/proprietary_confidential_2.RULE +++ b/src/licensedcode/data/rules/proprietary_confidential_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" AS A COURTESY TO YOU, SOLELY FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR DEVICES. BY PROVIDING THIS DESIGN, CODE, @@ -10,4 +15,4 @@ WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE. +FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_confidential_2.yml b/src/licensedcode/data/rules/proprietary_confidential_2.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_confidential_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_confidential_3.RULE b/src/licensedcode/data/rules/proprietary_confidential_3.RULE index d4f26181fd5..36f54f1b64f 100644 --- a/src/licensedcode/data/rules/proprietary_confidential_3.RULE +++ b/src/licensedcode/data/rules/proprietary_confidential_3.RULE @@ -1,4 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This source code and any compilation or derivative thereof is the proprietary information of B.V. and is confidential in nature. Under no circumstances is this software to be exposed to or placed under an Open Source License of - any type without the expressed written permission of B.V. + any type without the expressed written permission of B.V. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_confidential_3.yml b/src/licensedcode/data/rules/proprietary_confidential_3.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_confidential_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_dinkumware.RULE b/src/licensedcode/data/rules/proprietary_dinkumware.RULE index d71ed83370e..c310954880b 100644 --- a/src/licensedcode/data/rules/proprietary_dinkumware.RULE +++ b/src/licensedcode/data/rules/proprietary_dinkumware.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: notice with typos +--- + This file is for use only in conjunction with a valid license for Microsoft Visual C++ V5.0 . Microsoft Corporation is in no way involved with the production or release of this file. The file is offered on an @@ -8,4 +14,4 @@ ABOUT THE SUITABILITY OF THIS FILE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. DINKUMWARE, LTD. AND P.J. PLAUGER SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY -LICENSEE AS A RESULT OF USING THIS FILE. +LICENSEE AS A RESULT OF USING THIS FILE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_dinkumware.yml b/src/licensedcode/data/rules/proprietary_dinkumware.yml deleted file mode 100644 index 56de428e04f..00000000000 --- a/src/licensedcode/data/rules/proprietary_dinkumware.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: notice with typos diff --git a/src/licensedcode/data/rules/proprietary_dinkumware_1.RULE b/src/licensedcode/data/rules/proprietary_dinkumware_1.RULE index 0c500d9479f..05f0568223c 100644 --- a/src/licensedcode/data/rules/proprietary_dinkumware_1.RULE +++ b/src/licensedcode/data/rules/proprietary_dinkumware_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This file is for use only in conjunction with a valid license for Microsoft Visual C++ V5.0 or V6.0. Microsoft Corporation is in no way involved with the production or release of this file. The file is @@ -8,4 +13,4 @@ ABOUT THE SUITABILITY OF THIS FILES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. DINKUMWARE, LTD. AND P.J. PLAUGER SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY -LICENSEE AS A RESULT OF USING THIS FILE. +LICENSEE AS A RESULT OF USING THIS FILE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_dinkumware_1.yml b/src/licensedcode/data/rules/proprietary_dinkumware_1.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_dinkumware_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_dinkumware_2.RULE b/src/licensedcode/data/rules/proprietary_dinkumware_2.RULE index 737e58e19b8..7fc14094276 100644 --- a/src/licensedcode/data/rules/proprietary_dinkumware_2.RULE +++ b/src/licensedcode/data/rules/proprietary_dinkumware_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + /* This file is for use only in conjunction with a valid license for Microsoft Visual C++ V5.0 . Microsoft Corporation is in no way involved with the production or release of this file. The file is offered on an @@ -8,4 +13,4 @@ ABOUT THE SUITABILITY OF THIS FILES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. DINKUMWARE, LTD. AND P.J. PLAUGER SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY -LICENSEE AS A RESULT OF USING THIS FILE. +LICENSEE AS A RESULT OF USING THIS FILE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_dinkumware_2.yml b/src/licensedcode/data/rules/proprietary_dinkumware_2.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_dinkumware_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_dinkumware_3.RULE b/src/licensedcode/data/rules/proprietary_dinkumware_3.RULE index e4a5d3ad177..56767df905a 100644 --- a/src/licensedcode/data/rules/proprietary_dinkumware_3.RULE +++ b/src/licensedcode/data/rules/proprietary_dinkumware_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + This file is for use only in conjunction with a valid license for Microsoft Visual C++ V5.0 or V6.0 . Microsoft Corporation is in no way involved with the production or release of this file. The file is @@ -8,4 +13,4 @@ ABOUT THE SUITABILITY OF THIS FILES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. DINKUMWARE, LTD. AND P.J. PLAUGER SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY -LICENSEE AS A RESULT OF USING. +LICENSEE AS A RESULT OF USING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_dinkumware_3.yml b/src/licensedcode/data/rules/proprietary_dinkumware_3.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_dinkumware_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_elastic_and_apache-2.0_and_other-permissive_1.RULE b/src/licensedcode/data/rules/proprietary_elastic_and_apache-2.0_and_other-permissive_1.RULE index 5d20ccbb5db..57c6b51a0b1 100644 --- a/src/licensedcode/data/rules/proprietary_elastic_and_apache-2.0_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/proprietary_elastic_and_apache-2.0_and_other-permissive_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license AND apache-2.0 AND other-permissive +is_license_notice: yes +--- + Source code in this repository is variously licensed under the Apache License Version 2.0, an Apache compatible license, or the Elastic License. Outside of the "x-pack" folder, source code in a given file is licensed under the Apache diff --git a/src/licensedcode/data/rules/proprietary_elastic_and_apache-2.0_and_other-permissive_1.yml b/src/licensedcode/data/rules/proprietary_elastic_and_apache-2.0_and_other-permissive_1.yml deleted file mode 100644 index a018d0676f6..00000000000 --- a/src/licensedcode/data/rules/proprietary_elastic_and_apache-2.0_and_other-permissive_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license AND apache-2.0 AND other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_eula.RULE b/src/licensedcode/data/rules/proprietary_eula.RULE index a44e46f7d45..253fe66c859 100644 --- a/src/licensedcode/data/rules/proprietary_eula.RULE +++ b/src/licensedcode/data/rules/proprietary_eula.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + . diff --git a/src/licensedcode/data/rules/proprietary_eula.yml b/src/licensedcode/data/rules/proprietary_eula.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_eula.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_fcgi.RULE b/src/licensedcode/data/rules/proprietary_fcgi.RULE index 54b0f7fc1b5..850379e346f 100644 --- a/src/licensedcode/data/rules/proprietary_fcgi.RULE +++ b/src/licensedcode/data/rules/proprietary_fcgi.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +--- + * This file contains proprietary and confidential information and * remains the unpublished property of Open Market, Inc. Use, * disclosure, or reproduction is prohibited except as permitted by diff --git a/src/licensedcode/data/rules/proprietary_fcgi.yml b/src/licensedcode/data/rules/proprietary_fcgi.yml deleted file mode 100644 index d3712bcc90f..00000000000 --- a/src/licensedcode/data/rules/proprietary_fcgi.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/proprietary_gpl_and_lgpl.RULE b/src/licensedcode/data/rules/proprietary_gpl_and_lgpl.RULE index f26dfbbe224..4c9330df41f 100644 --- a/src/licensedcode/data/rules/proprietary_gpl_and_lgpl.RULE +++ b/src/licensedcode/data/rules/proprietary_gpl_and_lgpl.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license AND gpl-1.0-plus AND lgpl-2.0-plus +is_license_notice: yes +notes: GPL and LGPL ref in commercial license +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/copyleft/lesser.html +--- + GENERAL PUBLIC LICENSE/LESSER GENERAL PUBLIC LICENSE. Certain components of the Software or Applications may be subject to the GNU GPL or LGPL terms and conditions available for viewing at http://www.gnu.org/copyleft/gpl.html and diff --git a/src/licensedcode/data/rules/proprietary_gpl_and_lgpl.yml b/src/licensedcode/data/rules/proprietary_gpl_and_lgpl.yml deleted file mode 100644 index d23350e9a05..00000000000 --- a/src/licensedcode/data/rules/proprietary_gpl_and_lgpl.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license AND gpl-1.0-plus AND lgpl-2.0-plus -is_license_notice: yes -notes: GPL and LGPL ref in commercial license -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/proprietary_greensock_1.RULE b/src/licensedcode/data/rules/proprietary_greensock_1.RULE index 44efaa735a7..3e79204aa65 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_1.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - https://greensock.com/licensing + - https://greensock.com/standard-license + - https://greensock.com/why-license/ +--- + Standard 'no charge' license: https://greensock.com/standard-license. Club GreenSock members get more: https://greensock.com/licensing/. Why GreenSock doesn't employ an MIT license: https://greensock.com/why-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_1.yml b/src/licensedcode/data/rules/proprietary_greensock_1.yml deleted file mode 100644 index d8abfc0b87d..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - https://greensock.com/licensing - - https://greensock.com/standard-license - - https://greensock.com/why-license/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_10.RULE b/src/licensedcode/data/rules/proprietary_greensock_10.RULE index ec643403b7d..b20aa5b55bc 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_10.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_10.RULE @@ -1,2 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://greensock.com/standard-license + - https://greensock.com/licensing + - https://greensock.com/why-license/ +--- + "license": "Standard 'no charge' license: http://greensock.com/standard-license. Club GreenSock members get more: https://greensock.com/licensing/. Why GreenSock doesn't employ an MIT license: https://greensock.com/why-license/", \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_10.yml b/src/licensedcode/data/rules/proprietary_greensock_10.yml deleted file mode 100644 index 89792e011d3..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://greensock.com/standard-license - - https://greensock.com/licensing - - https://greensock.com/why-license/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_11.RULE b/src/licensedcode/data/rules/proprietary_greensock_11.RULE index 71cec5e25a6..9f9d626200e 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_11.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_11.RULE @@ -1,2 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://greensock.com/standard-license + - https://greensock.com/licensing + - https://greensock.com/why-license/ +--- + "Standard 'no charge' license: http://greensock.com/standard-license. Club GreenSock members get more: https://greensock.com/licensing/. Why GreenSock doesn't employ an MIT license: https://greensock.com/why-license/", \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_11.yml b/src/licensedcode/data/rules/proprietary_greensock_11.yml deleted file mode 100644 index 89792e011d3..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://greensock.com/standard-license - - https://greensock.com/licensing - - https://greensock.com/why-license/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_12.RULE b/src/licensedcode/data/rules/proprietary_greensock_12.RULE index 311630984b9..c015f8a2310 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_12.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_12.RULE @@ -1 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - https://greensock.com/licensing + - https://greensock.com/standard-license + - https://greensock.com/why-license/ +--- + license": "Standard 'no charge' license: https://greensock.com/standard-license. Club GreenSock members get more: https://greensock.com/licensing/. Why GreenSock doesn't employ an MIT license: https://greensock.com/why-license/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_12.yml b/src/licensedcode/data/rules/proprietary_greensock_12.yml deleted file mode 100644 index d8abfc0b87d..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - https://greensock.com/licensing - - https://greensock.com/standard-license - - https://greensock.com/why-license/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_13.RULE b/src/licensedcode/data/rules/proprietary_greensock_13.RULE index 7838748ec4b..3c4c40aed58 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_13.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_13.RULE @@ -1,2 +1,15 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://greensock.com/licensing/ + - http://greensock.com/standard-license + - http://greensock.com/why-license/ + - https://greensock.com/club/ + - https://greensock.com/licensing/ + - https://greensock.com/standard-license + - https://greensock.com/why-license/ +--- + ### License GreenSock's standard "no charge" license can be viewed at http://greensock.com/standard-license https://greensock.com/club/">Club GreenSock members are granted additional rights. See https://greensock.com/licensing/">http://greensock.com/licensing/ for details. Why doesn't GreenSock use an MIT (or similar) open source license, and why is that a **good** thing? This article explains it all: https://greensock.com/why-license/" http://greensock.com/why-license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_13.yml b/src/licensedcode/data/rules/proprietary_greensock_13.yml deleted file mode 100644 index 0a39ce917bf..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_13.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://greensock.com/licensing/ - - http://greensock.com/standard-license - - http://greensock.com/why-license/ - - https://greensock.com/club/ - - https://greensock.com/licensing/ - - https://greensock.com/standard-license - - https://greensock.com/why-license/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_14.RULE b/src/licensedcode/data/rules/proprietary_greensock_14.RULE index b7146fb57ad..88d8460b1b3 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_14.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_14.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.greensock.com/club/ + - http://www.greensock.com/terms_of_use.html +--- + This work is subject to the terms in http://www.greensock.com/terms_of_use.html http://www.greensock.com/terms_of_use.html or for http://www.greensock.com/club/ Club GreenSock members, the software agreement that was issued with the membership. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_14.yml b/src/licensedcode/data/rules/proprietary_greensock_14.yml deleted file mode 100644 index 726dac7ac35..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.greensock.com/club/ - - http://www.greensock.com/terms_of_use.html diff --git a/src/licensedcode/data/rules/proprietary_greensock_15.RULE b/src/licensedcode/data/rules/proprietary_greensock_15.RULE index b4720821277..7360b1fc452 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_15.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_15.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://www.greensock.com/ +--- + See http://www.greensock.com/ for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_15.yml b/src/licensedcode/data/rules/proprietary_greensock_15.yml deleted file mode 100644 index 2c4aa8ea558..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://www.greensock.com/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_16.RULE b/src/licensedcode/data/rules/proprietary_greensock_16.RULE index 9b697cf8226..ffc722a4bbd 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_16.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_16.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 90 +--- + Standard "No Charge" GreenSock License \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_16.yml b/src/licensedcode/data/rules/proprietary_greensock_16.yml deleted file mode 100644 index 3f650c94e16..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/proprietary_greensock_17.RULE b/src/licensedcode/data/rules/proprietary_greensock_17.RULE index ffdefeae39c..fc7209231cf 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_17.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://greensock.com/club/ +--- + Greensock : Standard "No Charge" GreenSock License PLAIN ENGLISH SUMMARY: diff --git a/src/licensedcode/data/rules/proprietary_greensock_17.yml b/src/licensedcode/data/rules/proprietary_greensock_17.yml deleted file mode 100644 index ebb71edc970..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://greensock.com/club/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_18.RULE b/src/licensedcode/data/rules/proprietary_greensock_18.RULE index f25b25a471e..57a09536d5b 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_18.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_18.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + Standard 'no charge' license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_18.yml b/src/licensedcode/data/rules/proprietary_greensock_18.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_greensock_2.RULE b/src/licensedcode/data/rules/proprietary_greensock_2.RULE index 7e97f942c7b..24fd4d942e0 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_2.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://greensock.com/standard-license +--- + * This work is subject to the terms at http://greensock.com/standard-license or for * Club GreenSock members, the software agreement that was issued with your membership. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_2.yml b/src/licensedcode/data/rules/proprietary_greensock_2.yml deleted file mode 100644 index 52f48f13d9a..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://greensock.com/standard-license diff --git a/src/licensedcode/data/rules/proprietary_greensock_3.RULE b/src/licensedcode/data/rules/proprietary_greensock_3.RULE index ec64a4265e0..19b86022c1a 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_3.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_3.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://greensock.com/standard-license +--- + http://greensock.com/standard-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_3.yml b/src/licensedcode/data/rules/proprietary_greensock_3.yml deleted file mode 100644 index 363227ba466..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://greensock.com/standard-license diff --git a/src/licensedcode/data/rules/proprietary_greensock_4.RULE b/src/licensedcode/data/rules/proprietary_greensock_4.RULE index 3ab1ee40f2b..baebc63f666 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_4.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_4.RULE @@ -1 +1,9 @@ -http://www.greensock.com/terms_of_use.html \ No newline at end of file +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 90 +ignorable_urls: + - http://www.greensock.com/terms_of_use.html +--- + +http://www.greensock.com/terms_of_use.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_4.yml b/src/licensedcode/data/rules/proprietary_greensock_4.yml deleted file mode 100644 index a843baeeea5..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 90 -ignorable_urls: - - http://www.greensock.com/terms_of_use.html diff --git a/src/licensedcode/data/rules/proprietary_greensock_5.RULE b/src/licensedcode/data/rules/proprietary_greensock_5.RULE index 2678e17b2a6..fe1cb26954b 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_5.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_5.RULE @@ -1,5 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://greensock.com/club/ +--- + PLAIN ENGLISH SUMMARY: You may use the code at no charge in commercial or non-commercial apps, web sites, games, components, and other software as long as end users are not charged a fee of any kind to use your product or gain access to any part of it. If your client pays you a one-time fee to create the site/product, that's perfectly fine and qualifies under the "no charge" license. If end users are charged a usage/access/license fee, please sign up for a "Business Green" Club GreenSock membership which comes with a comprehensive commercial license. See http://greensock.com/club/ for details. Use at your own risk. No warranties are offered. - Please respect the copyright. + Please respect the copyright. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_5.yml b/src/licensedcode/data/rules/proprietary_greensock_5.yml deleted file mode 100644 index ebb71edc970..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://greensock.com/club/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_6.RULE b/src/licensedcode/data/rules/proprietary_greensock_6.RULE index 9600aa203e7..938b043d024 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_6.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_urls: + - http://greensock.com/club/ + - http://www.greensock.com/ + - http://www.greensock.com/club + - http://www.greensock.com/licensing/ +--- + LEGALESE: This is a legal agreement between you (either an individual or a single entity) and GreenSock, Inc. ("GREENSOCK") for the proprietary GreenSock code known as TweenLite, TweenMax, TweenNano, TimelineLite, TimelineMax, and other copyrighted code that is available for download at http://www.greensock.com (this code and documentation, as well as any updates which may at GREENSOCK's sole discretion be provided to you from time to time, are referred to in this Agreement as "PROGRAM"). By downloading, copying, or otherwise using the PROGRAM, you agree to the terms and conditions of this Agreement. If you do not agree to the terms and conditions of this Agreement, please do not download or use the PROGRAM. diff --git a/src/licensedcode/data/rules/proprietary_greensock_6.yml b/src/licensedcode/data/rules/proprietary_greensock_6.yml deleted file mode 100644 index 22f30e9ebb3..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_urls: - - http://greensock.com/club/ - - http://www.greensock.com/ - - http://www.greensock.com/club - - http://www.greensock.com/licensing/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_7.RULE b/src/licensedcode/data/rules/proprietary_greensock_7.RULE index 0d380608f78..9d10128a43a 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_7.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_7.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.greensock.com/terms_of_use.html +--- + This work is subject to the terms in http://www.greensock.com/terms_of_use.html or for Club GreenSock members, the software agreement that was issued with the membership. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_7.yml b/src/licensedcode/data/rules/proprietary_greensock_7.yml deleted file mode 100644 index f800e387bde..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.greensock.com/terms_of_use.html diff --git a/src/licensedcode/data/rules/proprietary_greensock_8.RULE b/src/licensedcode/data/rules/proprietary_greensock_8.RULE index d25af7e2a14..0fdca4ef004 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_8.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_8.RULE @@ -1 +1,9 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.greensock.com/ +--- + http://www.greensock.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_8.yml b/src/licensedcode/data/rules/proprietary_greensock_8.yml deleted file mode 100644 index dbc2c06af48..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.greensock.com/ diff --git a/src/licensedcode/data/rules/proprietary_greensock_9.RULE b/src/licensedcode/data/rules/proprietary_greensock_9.RULE index c83b01a4a49..6500ab9a164 100644 --- a/src/licensedcode/data/rules/proprietary_greensock_9.RULE +++ b/src/licensedcode/data/rules/proprietary_greensock_9.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://greensock.com/standard-license +--- + is subject to the terms at http://greensock.com/standard-license or for - * Club GreenSock members, the software agreement that was issued with your membership. + * Club GreenSock members, the software agreement that was issued with your membership. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_greensock_9.yml b/src/licensedcode/data/rules/proprietary_greensock_9.yml deleted file mode 100644 index 52f48f13d9a..00000000000 --- a/src/licensedcode/data/rules/proprietary_greensock_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://greensock.com/standard-license diff --git a/src/licensedcode/data/rules/proprietary_ibm.RULE b/src/licensedcode/data/rules/proprietary_ibm.RULE index 4607afe009e..7be8a9f8db0 100644 --- a/src/licensedcode/data/rules/proprietary_ibm.RULE +++ b/src/licensedcode/data/rules/proprietary_ibm.RULE @@ -1,2 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +relevance: 100 +--- + US Gov't Restricted Rights Notice - Use, Duplication or Disclosure - Restricted By Accompanying License Agreement + Restricted By Accompanying License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_ibm.yml b/src/licensedcode/data/rules/proprietary_ibm.yml deleted file mode 100644 index e55fcc24a28..00000000000 --- a/src/licensedcode/data/rules/proprietary_ibm.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_intel-license.RULE b/src/licensedcode/data/rules/proprietary_intel-license.RULE index 3c4c8a9984b..2f413bd7b6e 100644 --- a/src/licensedcode/data/rules/proprietary_intel-license.RULE +++ b/src/licensedcode/data/rules/proprietary_intel-license.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The terms of the software license agreement included with any software you download will control your use of the software. @@ -213,5 +218,4 @@ successor. Use of the Software by the Government constitutes acknowledgment of Intel's proprietary rights therein. Contractor or Manufacturer is Intel -2200 Mission College Blvd., Santa Clara, CA 95052. - +2200 Mission College Blvd., Santa Clara, CA 95052. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_intel-license.yml b/src/licensedcode/data/rules/proprietary_intel-license.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_intel-license.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_intel-security-disclaimer.RULE b/src/licensedcode/data/rules/proprietary_intel-security-disclaimer.RULE index 625aec9e1a0..754bcb67275 100644 --- a/src/licensedcode/data/rules/proprietary_intel-security-disclaimer.RULE +++ b/src/licensedcode/data/rules/proprietary_intel-security-disclaimer.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL ® PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPERTY RIGHTS IS GRANTED BY THIS DOCUMENT. EXCEPT AS PROVIDED IN INTEL’S TERMS AND CONDITIONS OF SALE FOR SUCH PRODUCTS, INTEL ASSUMES NO LIABILITY WHATSOEVER, AND INTEL DISCLAIMS ANY EXPRESS OR IMPLIED @@ -8,4 +13,4 @@ DESIGNED NOR INTENDED FOR ANY APPLICATION IN WHICH THE FAILURE OF THE INTEL PROD PERSONAL INJURY OR DEATH MAY OCCUR. Intel technologies’ features and benefits depend on system configuration and may require enabled hardware, software or service activation. Performance varies depending on system configuration. No computer system can be absolutely secure. Check with your system manufacturer or -retailer or learn more at intel.com. +retailer or learn more at intel.com. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_intel-security-disclaimer.yml b/src/licensedcode/data/rules/proprietary_intel-security-disclaimer.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_intel-security-disclaimer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_international2.RULE b/src/licensedcode/data/rules/proprietary_international2.RULE index fa035dca8c2..cc3ab479c3f 100644 --- a/src/licensedcode/data/rules/proprietary_international2.RULE +++ b/src/licensedcode/data/rules/proprietary_international2.RULE @@ -1,6 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * THIS CODE CONTAINS CONFIDENTIAL INFORMATION OF . * * NO RIGHTS ARE GRANTED HEREIN UNDER ANY PATENT, MASK WORK RIGHT OR COPYRIGHT * * OF OR ANY THIRD PARTY. RESERVES THE RIGHT AT ITS SOLE * * DISCRETION TO REQUEST THAT THIS CODE BE IMMEDIATELY RETURNED TO . * * THIS CODE IS PROVIDED "AS IS". MAKES NO WARRANTIES, EXPRESSED, * - * IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, COMPLETENESS OR PERFORMANCE. * + * IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, COMPLETENESS OR PERFORMANCE. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_international2.yml b/src/licensedcode/data/rules/proprietary_international2.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_international2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_international3.RULE b/src/licensedcode/data/rules/proprietary_international3.RULE index aac18ac8d40..346b6b33b6b 100644 --- a/src/licensedcode/data/rules/proprietary_international3.RULE +++ b/src/licensedcode/data/rules/proprietary_international3.RULE @@ -1,4 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * If you received this File from and you have entered into a * commercial license agreement (a "Commercial License") with , the * File is licensed to you under the terms of the applicable Commercial - * License. + * License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_international3.yml b/src/licensedcode/data/rules/proprietary_international3.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_international3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_international4.RULE b/src/licensedcode/data/rules/proprietary_international4.RULE index 0332e2dcc4d..8c02e440911 100644 --- a/src/licensedcode/data/rules/proprietary_international4.RULE +++ b/src/licensedcode/data/rules/proprietary_international4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * * This software file (the "File") is owned and distributed by * and/or its affiliates ("") under the following diff --git a/src/licensedcode/data/rules/proprietary_international4.yml b/src/licensedcode/data/rules/proprietary_international4.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_international4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_international5.RULE b/src/licensedcode/data/rules/proprietary_international5.RULE index 98c55b4f6bc..61b80a398f9 100644 --- a/src/licensedcode/data/rules/proprietary_international5.RULE +++ b/src/licensedcode/data/rules/proprietary_international5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license OR commercial-license +is_license_notice: yes +--- + This software file (the "File") is owned and distributed by . and/or its affiliates ("") under the following alternative licensing terms. @@ -7,4 +12,4 @@ If you received this File from and you have entered into a commercial license agreement (a "Commercial License") with , the File is licensed - to you under the terms of the applicable Commercial License. + to you under the terms of the applicable Commercial License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_international5.yml b/src/licensedcode/data/rules/proprietary_international5.yml deleted file mode 100644 index 6c5740d9f12..00000000000 --- a/src/licensedcode/data/rules/proprietary_international5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license OR commercial-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_non-commercial1.RULE b/src/licensedcode/data/rules/proprietary_non-commercial1.RULE index 9a4df071953..430159074e0 100644 --- a/src/licensedcode/data/rules/proprietary_non-commercial1.RULE +++ b/src/licensedcode/data/rules/proprietary_non-commercial1.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + not for commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_non-commercial1.yml b/src/licensedcode/data/rules/proprietary_non-commercial1.yml deleted file mode 100644 index 699a17f9b7b..00000000000 --- a/src/licensedcode/data/rules/proprietary_non-commercial1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/proprietary_non-commercial2.RULE b/src/licensedcode/data/rules/proprietary_non-commercial2.RULE index b52b1c83546..4bf7d12780d 100644 --- a/src/licensedcode/data/rules/proprietary_non-commercial2.RULE +++ b/src/licensedcode/data/rules/proprietary_non-commercial2.RULE @@ -1,4 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +minimum_coverage: 60 +--- + "This program may not be included in any commercial product" "without the author written permission. It may be used freely" "for any non-commercial purpose, provided that this header is" - "always included. + "always included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_non-commercial2.yml b/src/licensedcode/data/rules/proprietary_non-commercial2.yml deleted file mode 100644 index 7db91ca51c7..00000000000 --- a/src/licensedcode/data/rules/proprietary_non-commercial2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/proprietary_non-commercial3.RULE b/src/licensedcode/data/rules/proprietary_non-commercial3.RULE index 9992b54139b..c79f5c1bcd3 100644 --- a/src/licensedcode/data/rules/proprietary_non-commercial3.RULE +++ b/src/licensedcode/data/rules/proprietary_non-commercial3.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + non-commercial purpose \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_non-commercial3.yml b/src/licensedcode/data/rules/proprietary_non-commercial3.yml deleted file mode 100644 index a75fd34a734..00000000000 --- a/src/licensedcode/data/rules/proprietary_non-commercial3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/proprietary_non-commercial4.RULE b/src/licensedcode/data/rules/proprietary_non-commercial4.RULE index 040566fd02c..46c3b9e04e0 100644 --- a/src/licensedcode/data/rules/proprietary_non-commercial4.RULE +++ b/src/licensedcode/data/rules/proprietary_non-commercial4.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_non-commercial4.yml b/src/licensedcode/data/rules/proprietary_non-commercial4.yml deleted file mode 100644 index 699a17f9b7b..00000000000 --- a/src/licensedcode/data/rules/proprietary_non-commercial4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/proprietary_non-commercial5.RULE b/src/licensedcode/data/rules/proprietary_non-commercial5.RULE index 7cc10611566..a7e059d3e21 100644 --- a/src/licensedcode/data/rules/proprietary_non-commercial5.RULE +++ b/src/licensedcode/data/rules/proprietary_non-commercial5.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + free for non-commercial use' \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_non-commercial5.yml b/src/licensedcode/data/rules/proprietary_non-commercial5.yml deleted file mode 100644 index 699a17f9b7b..00000000000 --- a/src/licensedcode/data/rules/proprietary_non-commercial5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/proprietary_non-commercial6.RULE b/src/licensedcode/data/rules/proprietary_non-commercial6.RULE index 01252dce8f3..51d8643d5ee 100644 --- a/src/licensedcode/data/rules/proprietary_non-commercial6.RULE +++ b/src/licensedcode/data/rules/proprietary_non-commercial6.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + and there is no license fee for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_non-commercial6.yml b/src/licensedcode/data/rules/proprietary_non-commercial6.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_non-commercial6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_non-proprietary.RULE b/src/licensedcode/data/rules/proprietary_non-proprietary.RULE index 54dbfa262c8..33123bac67b 100644 --- a/src/licensedcode/data/rules/proprietary_non-proprietary.RULE +++ b/src/licensedcode/data/rules/proprietary_non-proprietary.RULE @@ -1 +1,8 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +notes: Found in some spec licenses +--- + non-proprietary and non-confidential \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_non-proprietary.yml b/src/licensedcode/data/rules/proprietary_non-proprietary.yml deleted file mode 100644 index 9d49b282014..00000000000 --- a/src/licensedcode/data/rules/proprietary_non-proprietary.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 -notes: Found in some spec licenses diff --git a/src/licensedcode/data/rules/proprietary_nvidia.RULE b/src/licensedcode/data/rules/proprietary_nvidia.RULE index 7a336f21b5f..08603ed239f 100644 --- a/src/licensedcode/data/rules/proprietary_nvidia.RULE +++ b/src/licensedcode/data/rules/proprietary_nvidia.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ALL DESIGN SPECIFICATIONS, REFERENCE BOARDS, FILES, DRAWINGS, DIAGNOSTICS, LISTS, AND OTHER DOCUMENTS (TOGETHER AND SEPARATELY, "MATERIALS") ARE BEING PROVIDED "AS IS." MAKES NO WARRANTIES, @@ -14,4 +19,4 @@ Specifications mentioned in this publication are subject to change without notice. This publication supersedes and replaces all other information previously supplied. Corporation products are not authorized as critical components in life support devices or systems -without express written approval of Corporation. +without express written approval of Corporation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_nvidia.yml b/src/licensedcode/data/rules/proprietary_nvidia.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_nvidia.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_nvidia2.RULE b/src/licensedcode/data/rules/proprietary_nvidia2.RULE index 888f04f8eac..4daf11c47ec 100644 --- a/src/licensedcode/data/rules/proprietary_nvidia2.RULE +++ b/src/licensedcode/data/rules/proprietary_nvidia2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Information furnished is believed to be accurate and reliable. However, Corporation assumes no responsibility for the consequences of use of such information or for any infringement of patents or other rights @@ -7,4 +12,4 @@ Specifications mentioned in this publication are subject to change without notice. This publication supersedes and replaces all other information previously supplied. Corporation products are not authorized as critical components in life support devices or systems -without express written approval of Corporation. +without express written approval of Corporation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_nvidia2.yml b/src/licensedcode/data/rules/proprietary_nvidia2.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_nvidia2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_1.RULE index f8192febaa1..222b85c4602 100644 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available @@ -6,4 +14,4 @@ at http://www.gnu.org/licenses/gpl-2.0.html (the "GPL"). Notwithstanding the above, under no circumstances may you combine this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior written -consent. +consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_1.yml deleted file mode 100644 index c5cf427ab13..00000000000 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_2.RULE b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_2.RULE index 1aa19df3dee..1c3c3269b39 100644 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-2.0.html +--- + Unless you and execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available @@ -6,4 +14,4 @@ at http://www.gnu.org/licenses/gpl-2.0.html (the "GPL"). Notwithstanding the above, under no circumstances may you combine this software in any way with any other software provided under a license other than the GPL, without 's express prior written -consent. +consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_2.yml b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_2.yml deleted file mode 100644 index c5cf427ab13..00000000000 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_3.RULE b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_3.RULE index b54facebfb7..e7248867a40 100644 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + Unless you and execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available @@ -6,4 +14,4 @@ at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL"). Notwithstanding the above, under no circumstances may you combine this software in any way with any other software provided under a license other than the GPL, without 's express prior written -consent. +consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_3.yml b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_3.yml deleted file mode 100644 index da2924c58f6..00000000000 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_4.RULE b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_4.RULE index 6c876392997..e0a83a9110c 100644 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_4.yml b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_4.yml deleted file mode 100644 index a9eb689c672..00000000000 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_5.RULE b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_5.RULE index 95a6aec9272..38c353b86b4 100644 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0 OR proprietary-license +is_license_notice: yes +minimum_coverage: 50 +ignorable_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +--- + Unless you and Broadcom execute a separate written software license agreement governing use of this software, this software is licensed to you under the terms of the GNU General Public License version 2, available @@ -6,4 +14,4 @@ at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL"). Notwithstanding the above, under no circumstances may you combine this software in any way with any other Broadcom software provided under a license other than the GPL, without Broadcom's express prior written -consent. +consent. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_5.yml b/src/licensedcode/data/rules/proprietary_or_gpl-2.0_5.yml deleted file mode 100644 index da2924c58f6..00000000000 --- a/src/licensedcode/data/rules/proprietary_or_gpl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0 OR proprietary-license -is_license_notice: yes -minimum_coverage: 50 -ignorable_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/src/licensedcode/data/rules/proprietary_or_lgpl_and_gpl.RULE b/src/licensedcode/data/rules/proprietary_or_lgpl_and_gpl.RULE index 33616624743..134d9bdcb0c 100644 --- a/src/licensedcode/data/rules/proprietary_or_lgpl_and_gpl.RULE +++ b/src/licensedcode/data/rules/proprietary_or_lgpl_and_gpl.RULE @@ -1,3 +1,9 @@ +--- +license_expression: proprietary-license OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_notice: yes +minimum_coverage: 50 +--- + are also available under a proprietary license for those who can not use the LGPL and the GPL in their code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_or_lgpl_and_gpl.yml b/src/licensedcode/data/rules/proprietary_or_lgpl_and_gpl.yml deleted file mode 100644 index 50f4c2c72e8..00000000000 --- a/src/licensedcode/data/rules/proprietary_or_lgpl_and_gpl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_notice: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/proprietary_phoenix.RULE b/src/licensedcode/data/rules/proprietary_phoenix.RULE index d76fe4511fa..079064a362c 100644 --- a/src/licensedcode/data/rules/proprietary_phoenix.RULE +++ b/src/licensedcode/data/rules/proprietary_phoenix.RULE @@ -1,3 +1,12 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/copyleft/lesser.html + - http://www.phoenix.com/en/Privacy+Policy/default.htm +--- + PHOENIX TECHNOLOGIES LTD. @@ -133,8 +142,4 @@ WARRANTY DISCLAIMER. ALL THIRD PARTY APPLICATIONS BUNDLED WITH THE SOFTWARE OR -HS EULA v.2., 4-7-09 - - - - +HS EULA v.2., 4-7-09 \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_phoenix.yml b/src/licensedcode/data/rules/proprietary_phoenix.yml deleted file mode 100644 index d0d5fd4a8b2..00000000000 --- a/src/licensedcode/data/rules/proprietary_phoenix.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/copyleft/lesser.html - - http://www.phoenix.com/en/Privacy+Policy/default.htm diff --git a/src/licensedcode/data/rules/proprietary_pizza.RULE b/src/licensedcode/data/rules/proprietary_pizza.RULE index 7e88339b886..933a101ae74 100644 --- a/src/licensedcode/data/rules/proprietary_pizza.RULE +++ b/src/licensedcode/data/rules/proprietary_pizza.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_urls: + - https://github.com/davemeurer +--- + The PIZZA License 1.0 by Dave Meurer @@ -42,5 +49,4 @@ 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. (like the MIT) - +OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. (like the MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_pizza.yml b/src/licensedcode/data/rules/proprietary_pizza.yml deleted file mode 100644 index 47bea303251..00000000000 --- a/src/licensedcode/data/rules/proprietary_pizza.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_urls: - - https://github.com/davemeurer diff --git a/src/licensedcode/data/rules/proprietary_reproduce.RULE b/src/licensedcode/data/rules/proprietary_reproduce.RULE index 0db27bb0040..50b63a6b7fd 100644 --- a/src/licensedcode/data/rules/proprietary_reproduce.RULE +++ b/src/licensedcode/data/rules/proprietary_reproduce.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + * The Software or any portion thereof may not be reproduced in any * form whatsoever except as provided by license, without the written * consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_reproduce.yml b/src/licensedcode/data/rules/proprietary_reproduce.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_reproduce.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_reproduce2.RULE b/src/licensedcode/data/rules/proprietary_reproduce2.RULE index 23b9694c593..fea0c2f3749 100644 --- a/src/licensedcode/data/rules/proprietary_reproduce2.RULE +++ b/src/licensedcode/data/rules/proprietary_reproduce2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + The software or any portion thereof may not be reproduced in any form -whatsoever, except as expressly provided in a written license agreement with \ No newline at end of file +whatsoever, except as expressly provided in a written license agreement with \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_reproduce2.yml b/src/licensedcode/data/rules/proprietary_reproduce2.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_reproduce2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_sei-cmu.RULE b/src/licensedcode/data/rules/proprietary_sei-cmu.RULE index 2e70b25e85f..fc55917275d 100644 --- a/src/licensedcode/data/rules/proprietary_sei-cmu.RULE +++ b/src/licensedcode/data/rules/proprietary_sei-cmu.RULE @@ -1 +1,6 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +--- + [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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_sei-cmu.yml b/src/licensedcode/data/rules/proprietary_sei-cmu.yml deleted file mode 100644 index d3712bcc90f..00000000000 --- a/src/licensedcode/data/rules/proprietary_sei-cmu.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/proprietary_sei-cmu2.RULE b/src/licensedcode/data/rules/proprietary_sei-cmu2.RULE index 9cdb1d07809..fe7aa535476 100644 --- a/src/licensedcode/data/rules/proprietary_sei-cmu2.RULE +++ b/src/licensedcode/data/rules/proprietary_sei-cmu2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_text: yes +ignorable_emails: + - permission@sei.cmu.edu +--- + 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. diff --git a/src/licensedcode/data/rules/proprietary_sei-cmu2.yml b/src/licensedcode/data/rules/proprietary_sei-cmu2.yml deleted file mode 100644 index d470b3d5dc0..00000000000 --- a/src/licensedcode/data/rules/proprietary_sei-cmu2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -ignorable_emails: - - permission@sei.cmu.edu diff --git a/src/licensedcode/data/rules/proprietary_sncl_1.1.0.RULE b/src/licensedcode/data/rules/proprietary_sncl_1.1.0.RULE index 98283b55eae..30e410847cd 100644 --- a/src/licensedcode/data/rules/proprietary_sncl_1.1.0.RULE +++ b/src/licensedcode/data/rules/proprietary_sncl_1.1.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Version 1.10.0 The original creator(s) of the data or text under this license is thereby called the licensor. @@ -34,4 +39,4 @@ The data or text under this license is therefore called the object. - 2.1.The licensor is liable only for what himself wrote regarding juridical issues related to injury, racism or offense and any other crimes. -- 2.2.The licensor is not liable for the content that was edited by third parties and the liability for such cases falls over the licensee as described in 1.3.5. +- 2.2.The licensor is not liable for the content that was edited by third parties and the liability for such cases falls over the licensee as described in 1.3.5. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_sncl_1.1.0.yml b/src/licensedcode/data/rules/proprietary_sncl_1.1.0.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_sncl_1.1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_sncl_2.0.0.RULE b/src/licensedcode/data/rules/proprietary_sncl_2.0.0.RULE index 2315f70c237..ad34d6b0abf 100644 --- a/src/licensedcode/data/rules/proprietary_sncl_2.0.0.RULE +++ b/src/licensedcode/data/rules/proprietary_sncl_2.0.0.RULE @@ -1,2 +1,7 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + // This file is licensed under the terms of the Simple Non Code License (SNCL) 2.0.0. -// The full license text can be found in the file named LICENSE. +// The full license text can be found in the file named LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_sncl_2.0.0.yml b/src/licensedcode/data/rules/proprietary_sncl_2.0.0.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_sncl_2.0.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.0.RULE b/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.0.RULE index 50a8c2de756..e1a290bf46d 100644 --- a/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.0.RULE +++ b/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Simple Non Code License (SNCL) Version 2.0.0 @@ -36,4 +41,4 @@ The data or text under this license is therefore called the object. 4.1. The licensor shall not be bound by any additional or different terms or conditions communicated by the licensee unless expressly agreed. 4.2. The licensor has the right to edit at any time the content of this license, however, its effects will not be retroactive. - 4.3. Any modification made by the licensor shall not affect the already published versions of the object, only the future ones. + 4.3. Any modification made by the licensor shall not affect the already published versions of the object, only the future ones. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.0.yml b/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.0.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.2.RULE b/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.2.RULE index a3c318186b8..4fc41a0cd9a 100644 --- a/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.2.RULE +++ b/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Simple Non Code License (SNCL) Version 2.0.2 @@ -36,4 +41,4 @@ The data or text under this license is therefore called the object. 4.1. The licensor shall not be bound by any additional or different terms or conditions communicated by the licensee unless expressly agreed. 4.2. The licensor has the right to edit at any time the content of this license, however, its effects will not be retroactive. - 4.3. Any modification made by the licensor shall not affect the already published versions of the object, only the future ones. + 4.3. Any modification made by the licensor shall not affect the already published versions of the object, only the future ones. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.2.yml b/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.2.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_sncl_ft_2.0.2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_sncl_ft_2.3.0.RULE b/src/licensedcode/data/rules/proprietary_sncl_ft_2.3.0.RULE index 97a9ec6a687..a5f7b0221cd 100644 --- a/src/licensedcode/data/rules/proprietary_sncl_ft_2.3.0.RULE +++ b/src/licensedcode/data/rules/proprietary_sncl_ft_2.3.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + Simple Non Code License (SNCL) Version 2.3.0 @@ -33,5 +38,4 @@ The data, source code or text under this license is therefore called the object. 4.1. The licensor shall not be bound by any additional or different terms or conditions communicated by the licensee unless expressly agreed. 4.2. The licensor has the right to edit at any time the content of this license, however, its effects will not be retroactive. - 4.3. Any modification made by the licensor shall not affect the already published versions of the object, only the future ones. - + 4.3. Any modification made by the licensor shall not affect the already published versions of the object, only the future ones. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_sncl_ft_2.3.0.yml b/src/licensedcode/data/rules/proprietary_sncl_ft_2.3.0.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_sncl_ft_2.3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_ualarm_1.RULE b/src/licensedcode/data/rules/proprietary_ualarm_1.RULE index bae4c5a2e17..99c78d73b97 100644 --- a/src/licensedcode/data/rules/proprietary_ualarm_1.RULE +++ b/src/licensedcode/data/rules/proprietary_ualarm_1.RULE @@ -1,6 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + ** Permission to use, copy, and distribute for non-commercial purposes, ** is hereby granted without fee, providing that the above copyright ** notice appear in all copies and that both the copyright notice and this ** permission notice appear in supporting documentation. ** -** This software is provided "as is" without any expressed or implied warranty. +** This software is provided "as is" without any expressed or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_ualarm_1.yml b/src/licensedcode/data/rules/proprietary_ualarm_1.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_ualarm_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/proprietary_unbound.RULE b/src/licensedcode/data/rules/proprietary_unbound.RULE index 0144fb237b5..083567c865c 100644 --- a/src/licensedcode/data/rules/proprietary_unbound.RULE +++ b/src/licensedcode/data/rules/proprietary_unbound.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_text: yes +--- + LDAP SDK Free Use License THIS IS AN AGREEMENT BETWEEN YOU ("YOU") AND CORPORATION @@ -89,4 +94,4 @@ remaining provisions shall in no way be affected or impaired thereby. This Agreement and performance hereunder shall be governed by and construed in accordance with the laws of the State of without regard to its conflict of laws rules. Any disputes related to this Agreement shall be exclusively -litigated in the state or federal courts located in +litigated in the state or federal courts located in \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_unbound.yml b/src/licensedcode/data/rules/proprietary_unbound.yml deleted file mode 100644 index c80fbf9ecfe..00000000000 --- a/src/licensedcode/data/rules/proprietary_unbound.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes diff --git a/src/licensedcode/data/rules/proprietary_use.RULE b/src/licensedcode/data/rules/proprietary_use.RULE index fe1f8b4c2f3..9d240ecad63 100644 --- a/src/licensedcode/data/rules/proprietary_use.RULE +++ b/src/licensedcode/data/rules/proprietary_use.RULE @@ -1 +1,7 @@ -Use of the software is subject to the license agreement. +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + +Use of the software is subject to the license agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_use.yml b/src/licensedcode/data/rules/proprietary_use.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/proprietary_use.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/proprietary_vfeed.RULE b/src/licensedcode/data/rules/proprietary_vfeed.RULE index 2d98eda71d7..956bd0bd964 100644 --- a/src/licensedcode/data/rules/proprietary_vfeed.RULE +++ b/src/licensedcode/data/rules/proprietary_vfeed.RULE @@ -1,2 +1,9 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - http://vfeed.io/ +--- + This Software includes and/or makes use of the following Third-Party Software subject to its own license: 1. vFeed (http://vfeed.io) \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_vfeed.yml b/src/licensedcode/data/rules/proprietary_vfeed.yml deleted file mode 100644 index b94f6219166..00000000000 --- a/src/licensedcode/data/rules/proprietary_vfeed.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - http://vfeed.io/ diff --git a/src/licensedcode/data/rules/proprietary_vfeed2.RULE b/src/licensedcode/data/rules/proprietary_vfeed2.RULE index 3659177c97a..2b8fecd02d7 100644 --- a/src/licensedcode/data/rules/proprietary_vfeed2.RULE +++ b/src/licensedcode/data/rules/proprietary_vfeed2.RULE @@ -1,3 +1,20 @@ +--- +license_expression: proprietary-license +is_license_text: yes +referenced_filenames: + - LICENSE +ignorable_copyrights: + - Copyright 2004-2017 vFeed IO + - Copyright vFeed IO The vFeed API +ignorable_holders: + - vFeed IO + - vFeed IO The vFeed API +ignorable_urls: + - http://vfeed.io/ +ignorable_emails: + - support@vfeed.io +--- + This Software includes and/or makes use of the following Third-Party Software subject to its own license: 1. vFeed (http://vfeed.io) Copyright vFeed IO The vFeed API utility and the associated vFeed.db the Correlated Community Vulnerability and Threat Database (henceforth referred to simply as "vFeed Framework") is dual-licensed - Copyright 2004-2017 vFeed IO @@ -36,4 +53,4 @@ vFeed Framework is provided under this License on an “as is” basis, without 9. Limitation of Liability To the extent permitted under Law, vFeed Framework is provided under an AS-IS basis. The vFeed IO shall never, and without any limit, be liable for any damage, cost, expense or any other payment incurred as a result of vFeed Framework's actions, failure, bugs and/or any other interaction between vFeed Framework and end-equipment, computers, other software or any 3rd party, end-equipment, computer or services. 10. Disclaimer -The vFeed IO accept no liability and are not responsible for any misuse or damage caused by vFeed Framework. +The vFeed IO accept no liability and are not responsible for any misuse or damage caused by vFeed Framework. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_vfeed2.yml b/src/licensedcode/data/rules/proprietary_vfeed2.yml deleted file mode 100644 index ac8790d2103..00000000000 --- a/src/licensedcode/data/rules/proprietary_vfeed2.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: proprietary-license -is_license_text: yes -referenced_filenames: - - LICENSE -ignorable_copyrights: - - Copyright 2004-2017 vFeed IO - - Copyright vFeed IO The vFeed API -ignorable_holders: - - vFeed IO - - vFeed IO The vFeed API -ignorable_urls: - - http://vfeed.io/ -ignorable_emails: - - support@vfeed.io diff --git a/src/licensedcode/data/rules/proprietary_vfeed3.RULE b/src/licensedcode/data/rules/proprietary_vfeed3.RULE index fcee56e1845..44d800c6791 100644 --- a/src/licensedcode/data/rules/proprietary_vfeed3.RULE +++ b/src/licensedcode/data/rules/proprietary_vfeed3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +ignorable_urls: + - https://vfeed.io/ +--- + # This file is part of vFeed Correlated Vulnerability & Threat Database Python Wrapper - https://vfeed.io # See the file 'LICENSE' for copying permission # DO NOT DELETE OR MODIFY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_vfeed3.yml b/src/licensedcode/data/rules/proprietary_vfeed3.yml deleted file mode 100644 index 1492b5e65f4..00000000000 --- a/src/licensedcode/data/rules/proprietary_vfeed3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -ignorable_urls: - - https://vfeed.io/ diff --git a/src/licensedcode/data/rules/proprietary_xvgif.RULE b/src/licensedcode/data/rules/proprietary_xvgif.RULE index cbe3d2c861b..120473dd003 100644 --- a/src/licensedcode/data/rules/proprietary_xvgif.RULE +++ b/src/licensedcode/data/rules/proprietary_xvgif.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + Permission to use, copy, and distribute for non-commercial purposes, is hereby granted without fee, providing that the above copyright notice appear in all copies and that both the copyright notice and this @@ -6,4 +11,4 @@ permission notice appear in supporting documentation. The software may be modified for your own purposes, but modified versions may not be distributed. -This software is provided "as is" without any expressed or implied warranty. +This software is provided "as is" without any expressed or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_xvgif.yml b/src/licensedcode/data/rules/proprietary_xvgif.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/src/licensedcode/data/rules/proprietary_xvgif.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/prosperity-2.0_1.RULE b/src/licensedcode/data/rules/prosperity-2.0_1.RULE index 4b6082c4c21..6fd2abde4da 100644 --- a/src/licensedcode/data/rules/prosperity-2.0_1.RULE +++ b/src/licensedcode/data/rules/prosperity-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: prosperity-2.0 +is_license_tag: yes +relevance: 100 +--- + spec.license = "Nonstandard" # License Zero Prosperity Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/prosperity-2.0_1.yml b/src/licensedcode/data/rules/prosperity-2.0_1.yml deleted file mode 100644 index c274a826655..00000000000 --- a/src/licensedcode/data/rules/prosperity-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: prosperity-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/prosperity-2.0_2.RULE b/src/licensedcode/data/rules/prosperity-2.0_2.RULE index ca526eaafff..42644186a49 100644 --- a/src/licensedcode/data/rules/prosperity-2.0_2.RULE +++ b/src/licensedcode/data/rules/prosperity-2.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: prosperity-2.0 +is_license_notice: yes +relevance: 100 +--- + License We use the License Zero Prosperity Public License, which essentially enshrines the following: @@ -5,4 +11,4 @@ We use the License Zero Prosperity Public License, which essentially enshrines t If you would like to use for non-commercial purposes, such as to host a bot at your workplace, then we give you full permission to do so. In fact, we'd love you to, and will help and support you however we can. If you would like to add functionality to your for-profit company's offering then we DO NOT give you permission to use to do so. Please contact us directly to discuss a partnership or licensing arrangement. -If you make a significant contribution to then you will be asked to transfer the IP of that contribution to so that it can be licensed in the same way as the above. +If you make a significant contribution to then you will be asked to transfer the IP of that contribution to so that it can be licensed in the same way as the above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/prosperity-2.0_2.yml b/src/licensedcode/data/rules/prosperity-2.0_2.yml deleted file mode 100644 index 567f9b6c423..00000000000 --- a/src/licensedcode/data/rules/prosperity-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: prosperity-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/prosperity-3.0_1.RULE b/src/licensedcode/data/rules/prosperity-3.0_1.RULE index 1ba0b0869b7..a3d2ff8123e 100644 --- a/src/licensedcode/data/rules/prosperity-3.0_1.RULE +++ b/src/licensedcode/data/rules/prosperity-3.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: prosperity-3.0 +is_license_reference: yes +relevance: 100 +--- + License Zero Prosperity Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/prosperity-3.0_1.yml b/src/licensedcode/data/rules/prosperity-3.0_1.yml deleted file mode 100644 index f7b49c5b3b8..00000000000 --- a/src/licensedcode/data/rules/prosperity-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: prosperity-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/prosperity-3.0_2.RULE b/src/licensedcode/data/rules/prosperity-3.0_2.RULE index ac2187b2016..d83d966a58f 100644 --- a/src/licensedcode/data/rules/prosperity-3.0_2.RULE +++ b/src/licensedcode/data/rules/prosperity-3.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: prosperity-3.0 +is_license_reference: yes +relevance: 100 +--- + Prosperity Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/prosperity-3.0_2.yml b/src/licensedcode/data/rules/prosperity-3.0_2.yml deleted file mode 100644 index f7b49c5b3b8..00000000000 --- a/src/licensedcode/data/rules/prosperity-3.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: prosperity-3.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/prosperity-3.0_3.RULE b/src/licensedcode/data/rules/prosperity-3.0_3.RULE index b75b45fc7a4..a600946dca8 100644 --- a/src/licensedcode/data/rules/prosperity-3.0_3.RULE +++ b/src/licensedcode/data/rules/prosperity-3.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: prosperity-3.0 +is_license_tag: yes +relevance: 100 +--- + license = "Nonstandard" License Zero Prosperity Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/prosperity-3.0_3.yml b/src/licensedcode/data/rules/prosperity-3.0_3.yml deleted file mode 100644 index e3eec8a03f7..00000000000 --- a/src/licensedcode/data/rules/prosperity-3.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: prosperity-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_1.RULE index 0fa9868890c..d911436ced1 100644 --- a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: prosperity-3.0 AND proprietary-license +is_license_notice: yes +--- + dual-licensed under the License Zero Prosperity Public License and the License Zero Private License. The Prosperity License limits commercial use to a thirty-day trial period, after which a license fee must be paid to obtain a Private License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_1.yml deleted file mode 100644 index 3f63854d320..00000000000 --- a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: prosperity-3.0 AND proprietary-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_2.RULE index ccf1bb66b56..9357519277b 100644 --- a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_2.RULE @@ -1 +1,7 @@ +--- +license_expression: prosperity-3.0 AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + dual-licensed under the License Zero Prosperity Public License and the License Zero Private License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_2.yml b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_2.yml deleted file mode 100644 index b79cfb12355..00000000000 --- a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: prosperity-3.0 AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_3.RULE index cd8ce4369ac..932f7d05baa 100644 --- a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: prosperity-3.0 AND proprietary-license +is_license_notice: yes +ignorable_urls: + - https://licensezero.com/licenses/private + - https://licensezero.com/licenses/prosperity +--- + ## Licensing dual-licensed under the [License Zero Prosperity Public License] diff --git a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_3.yml b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_3.yml deleted file mode 100644 index bb3cc3afdb6..00000000000 --- a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: prosperity-3.0 AND proprietary-license -is_license_notice: yes -ignorable_urls: - - https://licensezero.com/licenses/private - - https://licensezero.com/licenses/prosperity diff --git a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_4.RULE b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_4.RULE index fb83d83453d..6498477ea09 100644 --- a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_4.RULE +++ b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: prosperity-3.0 AND proprietary-license +is_license_notice: yes +ignorable_urls: + - https://licensezero.com/licenses/private + - https://licensezero.com/licenses/prosperity +--- + ## Licensing dual-licensed under the [License Zero Prosperity Public License] diff --git a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_4.yml b/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_4.yml deleted file mode 100644 index bb3cc3afdb6..00000000000 --- a/src/licensedcode/data/rules/prosperity-3.0_and_proprietary-license_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: prosperity-3.0 AND proprietary-license -is_license_notice: yes -ignorable_urls: - - https://licensezero.com/licenses/private - - https://licensezero.com/licenses/prosperity diff --git a/src/licensedcode/data/rules/protobuf_nuget_url_1.RULE b/src/licensedcode/data/rules/protobuf_nuget_url_1.RULE index d642d1ad2b1..ef2ad2d1ec1 100644 --- a/src/licensedcode/data/rules/protobuf_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/protobuf_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: protobuf +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/google/protobuf/blob/master/LICENSE +--- + https://github.com/google/protobuf/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/protobuf_nuget_url_1.yml b/src/licensedcode/data/rules/protobuf_nuget_url_1.yml deleted file mode 100644 index 83084793fde..00000000000 --- a/src/licensedcode/data/rules/protobuf_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: protobuf -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/google/protobuf/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_1.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_1.RULE index 17707024ffd..f7e7f124608 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_1.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PS/PDF font exception (2017-08-17) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_1.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_1.yml deleted file mode 100644 index c04627596ca..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_10.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_10.RULE index cdbc06d4027..d7599e70521 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_10.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PS-or-PDF-font-exception-20170817 +--- + LICENSE {{PS-or-PDF-font-exception-20170817}} https://spdx.org/licenses/PS-or-PDF-font-exception-20170817 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_10.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_10.yml deleted file mode 100644 index 437672938b0..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PS-or-PDF-font-exception-20170817 diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_11.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_11.RULE index a7ead0ef4c9..12423184dad 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_11.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PS-or-PDF-font-exception-20170817 +--- + {{PS-or-PDF-font-exception-20170817}} https://spdx.org/licenses/PS-or-PDF-font-exception-20170817 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_11.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_11.yml deleted file mode 100644 index 437672938b0..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PS-or-PDF-font-exception-20170817 diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_2.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_2.RULE index 5fe6c378e66..ec3e9a2ff7b 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_2.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: PS/PDF font exception (2017-08-17) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_2.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_2.yml deleted file mode 100644 index c04627596ca..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_3.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_3.RULE index fa0a0e4105d..0f57d2f332e 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_3.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PS-or-PDF-font-exception-20170817 PS/PDF font exception (2017-08-17) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_3.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_3.yml deleted file mode 100644 index c04627596ca..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_4.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_4.RULE index 67fff9b9c9c..444f23020e6 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_4.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PS/PDF font exception (2017-08-17) PS-or-PDF-font-exception-20170817 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_4.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_4.yml deleted file mode 100644 index c04627596ca..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_5.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_5.RULE index 7404f8b04d7..649fcfecc10 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_5.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PS-or-PDF-font-exception-20170817 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_5.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_5.yml deleted file mode 100644 index b80d3f514a9..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_6.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_6.RULE index fdcb6954b49..97f494dd321 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_6.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PS/PDF font exception (2017-08-17) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_6.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_6.yml deleted file mode 100644 index b80d3f514a9..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_7.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_7.RULE index 1d702c57014..2cc333553bc 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_7.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: PS-or-PDF-font-exception-20170817 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_7.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_7.yml deleted file mode 100644 index b80d3f514a9..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_8.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_8.RULE index 72a8c8596fb..abe1c334a88 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_8.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/PS-or-PDF-font-exception-20170817 +--- + https://licenses.nuget.org/PS-or-PDF-font-exception-20170817 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_8.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_8.yml deleted file mode 100644 index 363538635e9..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/PS-or-PDF-font-exception-20170817 diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_9.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_9.RULE index 4c674e8961f..bbb556970a9 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_9.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_9.RULE @@ -1 +1,7 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/PS-or-PDF-font-exception-20170817 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_9.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_9.yml deleted file mode 100644 index 51217931244..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_1.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_1.RULE index bfb393ee3c4..1ee464e2b54 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_1.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ps-or-pdf-font-exception-20170817 +--- + https://spdx.org/licenses/ps-or-pdf-font-exception-20170817 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_1.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_1.yml deleted file mode 100644 index e69d33a1215..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ps-or-pdf-font-exception-20170817 diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_2.RULE b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_2.RULE index 4c42c5eab67..e9f48b6dca7 100644 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_2.RULE +++ b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ps-or-pdf-font-exception-20170817 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ps-or-pdf-font-exception-20170817.html +--- + https://spdx.org/licenses/ps-or-pdf-font-exception-20170817.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_2.yml b/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_2.yml deleted file mode 100644 index cf1b2fb0c64..00000000000 --- a/src/licensedcode/data/rules/ps-or-pdf-font-exception-20170817_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ps-or-pdf-font-exception-20170817 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ps-or-pdf-font-exception-20170817.html diff --git a/src/licensedcode/data/rules/psf-2.0_1.RULE b/src/licensedcode/data/rules/psf-2.0_1.RULE index b4b40a7539b..1281a8c2e2f 100644 --- a/src/licensedcode/data/rules/psf-2.0_1.RULE +++ b/src/licensedcode/data/rules/psf-2.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: psf-2.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2001-2019, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Python Software + Foundation +ignorable_holders: + - Python Software Foundation +--- + * PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 * -------------------------------------------- * diff --git a/src/licensedcode/data/rules/psf-2.0_1.yml b/src/licensedcode/data/rules/psf-2.0_1.yml deleted file mode 100644 index b0ce60a7aa0..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: psf-2.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2001-2019, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Python Software - Foundation -ignorable_holders: - - Python Software Foundation diff --git a/src/licensedcode/data/rules/psf-2.0_10.RULE b/src/licensedcode/data/rules/psf-2.0_10.RULE index 122031857da..31321e8af08 100644 --- a/src/licensedcode/data/rules/psf-2.0_10.RULE +++ b/src/licensedcode/data/rules/psf-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/PSF-2.0 +--- + https://licenses.nuget.org/PSF-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_10.yml b/src/licensedcode/data/rules/psf-2.0_10.yml deleted file mode 100644 index 57941c63234..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/PSF-2.0 diff --git a/src/licensedcode/data/rules/psf-2.0_11.RULE b/src/licensedcode/data/rules/psf-2.0_11.RULE index 65fc5139aaf..40bd490cca7 100644 --- a/src/licensedcode/data/rules/psf-2.0_11.RULE +++ b/src/licensedcode/data/rules/psf-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/PSF-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_11.yml b/src/licensedcode/data/rules/psf-2.0_11.yml deleted file mode 100644 index 9b687dec03a..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/psf-2.0_12.RULE b/src/licensedcode/data/rules/psf-2.0_12.RULE index f709c44dfc9..7c645cdf66b 100644 --- a/src/licensedcode/data/rules/psf-2.0_12.RULE +++ b/src/licensedcode/data/rules/psf-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PSF-2.0 +--- + {{PSF-2.0}} https://spdx.org/licenses/PSF-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_12.yml b/src/licensedcode/data/rules/psf-2.0_12.yml deleted file mode 100644 index c7f5cf1c588..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PSF-2.0 diff --git a/src/licensedcode/data/rules/psf-2.0_13.RULE b/src/licensedcode/data/rules/psf-2.0_13.RULE index d79f17b92f1..bd153d23e1e 100644 --- a/src/licensedcode/data/rules/psf-2.0_13.RULE +++ b/src/licensedcode/data/rules/psf-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/PSF-2.0 +--- + LICENSE {{PSF-2.0}} https://spdx.org/licenses/PSF-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_13.yml b/src/licensedcode/data/rules/psf-2.0_13.yml deleted file mode 100644 index c7f5cf1c588..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/PSF-2.0 diff --git a/src/licensedcode/data/rules/psf-2.0_2.RULE b/src/licensedcode/data/rules/psf-2.0_2.RULE index 9b18c534396..97cb8e5b9a6 100644 --- a/src/licensedcode/data/rules/psf-2.0_2.RULE +++ b/src/licensedcode/data/rules/psf-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Python Software Foundation License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_2.yml b/src/licensedcode/data/rules/psf-2.0_2.yml deleted file mode 100644 index 8e28ffeb099..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psf-2.0_3.RULE b/src/licensedcode/data/rules/psf-2.0_3.RULE index aab2ed1eb6b..bdcacddb50b 100644 --- a/src/licensedcode/data/rules/psf-2.0_3.RULE +++ b/src/licensedcode/data/rules/psf-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Python Software Foundation License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_3.yml b/src/licensedcode/data/rules/psf-2.0_3.yml deleted file mode 100644 index 8e28ffeb099..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psf-2.0_4.RULE b/src/licensedcode/data/rules/psf-2.0_4.RULE index 52a44ced71c..54f70f26c49 100644 --- a/src/licensedcode/data/rules/psf-2.0_4.RULE +++ b/src/licensedcode/data/rules/psf-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + PSF-2.0 Python Software Foundation License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_4.yml b/src/licensedcode/data/rules/psf-2.0_4.yml deleted file mode 100644 index 8e28ffeb099..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psf-2.0_5.RULE b/src/licensedcode/data/rules/psf-2.0_5.RULE index 4e69ec424ad..ee11c679e96 100644 --- a/src/licensedcode/data/rules/psf-2.0_5.RULE +++ b/src/licensedcode/data/rules/psf-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Python Software Foundation License 2.0 PSF-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_5.yml b/src/licensedcode/data/rules/psf-2.0_5.yml deleted file mode 100644 index 8e28ffeb099..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psf-2.0_6.RULE b/src/licensedcode/data/rules/psf-2.0_6.RULE index 32f85007884..d9e3419438b 100644 --- a/src/licensedcode/data/rules/psf-2.0_6.RULE +++ b/src/licensedcode/data/rules/psf-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: psf-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: PSF-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_6.yml b/src/licensedcode/data/rules/psf-2.0_6.yml deleted file mode 100644 index 7e0d66e7455..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psf-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psf-2.0_7.RULE b/src/licensedcode/data/rules/psf-2.0_7.RULE index 4f9ee7386a0..0645339fa2d 100644 --- a/src/licensedcode/data/rules/psf-2.0_7.RULE +++ b/src/licensedcode/data/rules/psf-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: psf-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Python Software Foundation License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_7.yml b/src/licensedcode/data/rules/psf-2.0_7.yml deleted file mode 100644 index 7e0d66e7455..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psf-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psf-2.0_8.RULE b/src/licensedcode/data/rules/psf-2.0_8.RULE index 14383925ac2..e1c664c453c 100644 --- a/src/licensedcode/data/rules/psf-2.0_8.RULE +++ b/src/licensedcode/data/rules/psf-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: psf-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: PSF-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_8.yml b/src/licensedcode/data/rules/psf-2.0_8.yml deleted file mode 100644 index 7e0d66e7455..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psf-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psf-2.0_9.RULE b/src/licensedcode/data/rules/psf-2.0_9.RULE index 79478eb71d2..581f38ce9f2 100644 --- a/src/licensedcode/data/rules/psf-2.0_9.RULE +++ b/src/licensedcode/data/rules/psf-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: psf-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + PSF-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psf-2.0_9.yml b/src/licensedcode/data/rules/psf-2.0_9.yml deleted file mode 100644 index 711a173201d..00000000000 --- a/src/licensedcode/data/rules/psf-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psf-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/psfrag_1.RULE b/src/licensedcode/data/rules/psfrag_1.RULE index b074c96f76a..5bc0381772e 100644 --- a/src/licensedcode/data/rules/psfrag_1.RULE +++ b/src/licensedcode/data/rules/psfrag_1.RULE @@ -1 +1,10 @@ +--- +license_expression: psfrag +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + psfrag License \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_1.yml b/src/licensedcode/data/rules/psfrag_1.yml deleted file mode 100644 index 4134624ba39..00000000000 --- a/src/licensedcode/data/rules/psfrag_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psfrag_10.RULE b/src/licensedcode/data/rules/psfrag_10.RULE index 3d8c86036cc..e05832619ad 100644 --- a/src/licensedcode/data/rules/psfrag_10.RULE +++ b/src/licensedcode/data/rules/psfrag_10.RULE @@ -1 +1,9 @@ +--- +license_expression: psfrag +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/psfrag +--- + LICENSE {{psfrag}} https://spdx.org/licenses/psfrag \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_10.yml b/src/licensedcode/data/rules/psfrag_10.yml deleted file mode 100644 index 41864e15d6e..00000000000 --- a/src/licensedcode/data/rules/psfrag_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/psfrag diff --git a/src/licensedcode/data/rules/psfrag_11.RULE b/src/licensedcode/data/rules/psfrag_11.RULE index b369867cca0..863af59ac93 100644 --- a/src/licensedcode/data/rules/psfrag_11.RULE +++ b/src/licensedcode/data/rules/psfrag_11.RULE @@ -1 +1,9 @@ +--- +license_expression: psfrag +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/psfrag +--- + {{psfrag}} https://spdx.org/licenses/psfrag \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_11.yml b/src/licensedcode/data/rules/psfrag_11.yml deleted file mode 100644 index 41864e15d6e..00000000000 --- a/src/licensedcode/data/rules/psfrag_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/psfrag diff --git a/src/licensedcode/data/rules/psfrag_2.RULE b/src/licensedcode/data/rules/psfrag_2.RULE index de29f2189a3..446a4a417e7 100644 --- a/src/licensedcode/data/rules/psfrag_2.RULE +++ b/src/licensedcode/data/rules/psfrag_2.RULE @@ -1 +1,10 @@ +--- +license_expression: psfrag +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: psfrag License \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_2.yml b/src/licensedcode/data/rules/psfrag_2.yml deleted file mode 100644 index 4134624ba39..00000000000 --- a/src/licensedcode/data/rules/psfrag_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psfrag_3.RULE b/src/licensedcode/data/rules/psfrag_3.RULE index a7aaf78a57e..d6ab4459bcc 100644 --- a/src/licensedcode/data/rules/psfrag_3.RULE +++ b/src/licensedcode/data/rules/psfrag_3.RULE @@ -1 +1,10 @@ +--- +license_expression: psfrag +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + psfrag psfrag License \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_3.yml b/src/licensedcode/data/rules/psfrag_3.yml deleted file mode 100644 index 4134624ba39..00000000000 --- a/src/licensedcode/data/rules/psfrag_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psfrag_4.RULE b/src/licensedcode/data/rules/psfrag_4.RULE index 342f8b8050f..7b7720e1ecd 100644 --- a/src/licensedcode/data/rules/psfrag_4.RULE +++ b/src/licensedcode/data/rules/psfrag_4.RULE @@ -1 +1,10 @@ +--- +license_expression: psfrag +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + psfrag License psfrag \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_4.yml b/src/licensedcode/data/rules/psfrag_4.yml deleted file mode 100644 index 4134624ba39..00000000000 --- a/src/licensedcode/data/rules/psfrag_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psfrag_5.RULE b/src/licensedcode/data/rules/psfrag_5.RULE index c8096a73c8e..73be5edf61e 100644 --- a/src/licensedcode/data/rules/psfrag_5.RULE +++ b/src/licensedcode/data/rules/psfrag_5.RULE @@ -1 +1,10 @@ +--- +license_expression: psfrag +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: psfrag \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_5.yml b/src/licensedcode/data/rules/psfrag_5.yml deleted file mode 100644 index 8e78feeab39..00000000000 --- a/src/licensedcode/data/rules/psfrag_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psfrag -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psfrag_6.RULE b/src/licensedcode/data/rules/psfrag_6.RULE index 395f7e1c53f..bc580c78308 100644 --- a/src/licensedcode/data/rules/psfrag_6.RULE +++ b/src/licensedcode/data/rules/psfrag_6.RULE @@ -1 +1,10 @@ +--- +license_expression: psfrag +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: psfrag License \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_6.yml b/src/licensedcode/data/rules/psfrag_6.yml deleted file mode 100644 index 8e78feeab39..00000000000 --- a/src/licensedcode/data/rules/psfrag_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psfrag -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psfrag_7.RULE b/src/licensedcode/data/rules/psfrag_7.RULE index 723e07a8c3b..c6ffc2c941e 100644 --- a/src/licensedcode/data/rules/psfrag_7.RULE +++ b/src/licensedcode/data/rules/psfrag_7.RULE @@ -1 +1,10 @@ +--- +license_expression: psfrag +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: psfrag \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_7.yml b/src/licensedcode/data/rules/psfrag_7.yml deleted file mode 100644 index 8e78feeab39..00000000000 --- a/src/licensedcode/data/rules/psfrag_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psfrag -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psfrag_8.RULE b/src/licensedcode/data/rules/psfrag_8.RULE index 76102cc2e82..6a929fcd7ff 100644 --- a/src/licensedcode/data/rules/psfrag_8.RULE +++ b/src/licensedcode/data/rules/psfrag_8.RULE @@ -1 +1,9 @@ +--- +license_expression: psfrag +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/psfrag +--- + https://licenses.nuget.org/psfrag \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_8.yml b/src/licensedcode/data/rules/psfrag_8.yml deleted file mode 100644 index aff88db8d4b..00000000000 --- a/src/licensedcode/data/rules/psfrag_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/psfrag diff --git a/src/licensedcode/data/rules/psfrag_9.RULE b/src/licensedcode/data/rules/psfrag_9.RULE index 8f1790a150c..98fb06d3168 100644 --- a/src/licensedcode/data/rules/psfrag_9.RULE +++ b/src/licensedcode/data/rules/psfrag_9.RULE @@ -1 +1,7 @@ +--- +license_expression: psfrag +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/psfrag \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_9.yml b/src/licensedcode/data/rules/psfrag_9.yml deleted file mode 100644 index 2bc6673d146..00000000000 --- a/src/licensedcode/data/rules/psfrag_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/psfrag_url_1.RULE b/src/licensedcode/data/rules/psfrag_url_1.RULE index 5cffca22e47..e0f486cf1c8 100644 --- a/src/licensedcode/data/rules/psfrag_url_1.RULE +++ b/src/licensedcode/data/rules/psfrag_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: psfrag +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/psfrag +--- + https://spdx.org/licenses/psfrag \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_url_1.yml b/src/licensedcode/data/rules/psfrag_url_1.yml deleted file mode 100644 index e712b99ed87..00000000000 --- a/src/licensedcode/data/rules/psfrag_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/psfrag diff --git a/src/licensedcode/data/rules/psfrag_url_2.RULE b/src/licensedcode/data/rules/psfrag_url_2.RULE index 0db85723ef1..bb3d44b9836 100644 --- a/src/licensedcode/data/rules/psfrag_url_2.RULE +++ b/src/licensedcode/data/rules/psfrag_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: psfrag +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/psfrag.html +--- + https://spdx.org/licenses/psfrag.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/psfrag_url_2.yml b/src/licensedcode/data/rules/psfrag_url_2.yml deleted file mode 100644 index 85383674cb6..00000000000 --- a/src/licensedcode/data/rules/psfrag_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psfrag -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/psfrag.html diff --git a/src/licensedcode/data/rules/psutils_1.RULE b/src/licensedcode/data/rules/psutils_1.RULE index c36a4729d49..843505d7039 100644 --- a/src/licensedcode/data/rules/psutils_1.RULE +++ b/src/licensedcode/data/rules/psutils_1.RULE @@ -1 +1,10 @@ +--- +license_expression: psutils +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + psutils License \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_1.yml b/src/licensedcode/data/rules/psutils_1.yml deleted file mode 100644 index 95dbd55f2f1..00000000000 --- a/src/licensedcode/data/rules/psutils_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psutils -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psutils_10.RULE b/src/licensedcode/data/rules/psutils_10.RULE index 00b9e37a19f..2e3bd6723ca 100644 --- a/src/licensedcode/data/rules/psutils_10.RULE +++ b/src/licensedcode/data/rules/psutils_10.RULE @@ -1 +1,9 @@ +--- +license_expression: psutils +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/psutils +--- + LICENSE {{psutils}} https://spdx.org/licenses/psutils \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_10.yml b/src/licensedcode/data/rules/psutils_10.yml deleted file mode 100644 index 8ceb6708ff9..00000000000 --- a/src/licensedcode/data/rules/psutils_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psutils -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/psutils diff --git a/src/licensedcode/data/rules/psutils_11.RULE b/src/licensedcode/data/rules/psutils_11.RULE index 6a0c2ba57b6..eb0e252099b 100644 --- a/src/licensedcode/data/rules/psutils_11.RULE +++ b/src/licensedcode/data/rules/psutils_11.RULE @@ -1 +1,9 @@ +--- +license_expression: psutils +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/psutils +--- + {{psutils}} https://spdx.org/licenses/psutils \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_11.yml b/src/licensedcode/data/rules/psutils_11.yml deleted file mode 100644 index 8ceb6708ff9..00000000000 --- a/src/licensedcode/data/rules/psutils_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psutils -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/psutils diff --git a/src/licensedcode/data/rules/psutils_2.RULE b/src/licensedcode/data/rules/psutils_2.RULE index e69735980fd..0cdf7b9f137 100644 --- a/src/licensedcode/data/rules/psutils_2.RULE +++ b/src/licensedcode/data/rules/psutils_2.RULE @@ -1 +1,10 @@ +--- +license_expression: psutils +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: psutils License \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_2.yml b/src/licensedcode/data/rules/psutils_2.yml deleted file mode 100644 index 95dbd55f2f1..00000000000 --- a/src/licensedcode/data/rules/psutils_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psutils -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psutils_3.RULE b/src/licensedcode/data/rules/psutils_3.RULE index f0d0f5a5dc4..0edc897e7f0 100644 --- a/src/licensedcode/data/rules/psutils_3.RULE +++ b/src/licensedcode/data/rules/psutils_3.RULE @@ -1 +1,10 @@ +--- +license_expression: psutils +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + psutils psutils License \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_3.yml b/src/licensedcode/data/rules/psutils_3.yml deleted file mode 100644 index 95dbd55f2f1..00000000000 --- a/src/licensedcode/data/rules/psutils_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psutils -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psutils_4.RULE b/src/licensedcode/data/rules/psutils_4.RULE index f3515c1fe35..47ee6e46687 100644 --- a/src/licensedcode/data/rules/psutils_4.RULE +++ b/src/licensedcode/data/rules/psutils_4.RULE @@ -1 +1,10 @@ +--- +license_expression: psutils +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + psutils License psutils \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_4.yml b/src/licensedcode/data/rules/psutils_4.yml deleted file mode 100644 index 95dbd55f2f1..00000000000 --- a/src/licensedcode/data/rules/psutils_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psutils -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psutils_5.RULE b/src/licensedcode/data/rules/psutils_5.RULE index 86113e03b9f..fe3ac2cfee2 100644 --- a/src/licensedcode/data/rules/psutils_5.RULE +++ b/src/licensedcode/data/rules/psutils_5.RULE @@ -1 +1,10 @@ +--- +license_expression: psutils +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: psutils \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_5.yml b/src/licensedcode/data/rules/psutils_5.yml deleted file mode 100644 index 3f64a4498a8..00000000000 --- a/src/licensedcode/data/rules/psutils_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psutils -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psutils_6.RULE b/src/licensedcode/data/rules/psutils_6.RULE index fee8989cb05..1f56020d167 100644 --- a/src/licensedcode/data/rules/psutils_6.RULE +++ b/src/licensedcode/data/rules/psutils_6.RULE @@ -1 +1,10 @@ +--- +license_expression: psutils +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: psutils License \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_6.yml b/src/licensedcode/data/rules/psutils_6.yml deleted file mode 100644 index 3f64a4498a8..00000000000 --- a/src/licensedcode/data/rules/psutils_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psutils -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psutils_7.RULE b/src/licensedcode/data/rules/psutils_7.RULE index b9b9830cd9a..2a505b781d3 100644 --- a/src/licensedcode/data/rules/psutils_7.RULE +++ b/src/licensedcode/data/rules/psutils_7.RULE @@ -1 +1,10 @@ +--- +license_expression: psutils +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: psutils \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_7.yml b/src/licensedcode/data/rules/psutils_7.yml deleted file mode 100644 index 3f64a4498a8..00000000000 --- a/src/licensedcode/data/rules/psutils_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: psutils -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/psutils_8.RULE b/src/licensedcode/data/rules/psutils_8.RULE index 217e730ff24..77485c7b221 100644 --- a/src/licensedcode/data/rules/psutils_8.RULE +++ b/src/licensedcode/data/rules/psutils_8.RULE @@ -1 +1,9 @@ +--- +license_expression: psutils +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/psutils +--- + https://licenses.nuget.org/psutils \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_8.yml b/src/licensedcode/data/rules/psutils_8.yml deleted file mode 100644 index 0ca8f950219..00000000000 --- a/src/licensedcode/data/rules/psutils_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psutils -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/psutils diff --git a/src/licensedcode/data/rules/psutils_9.RULE b/src/licensedcode/data/rules/psutils_9.RULE index aca76ee68de..8f2bc05e298 100644 --- a/src/licensedcode/data/rules/psutils_9.RULE +++ b/src/licensedcode/data/rules/psutils_9.RULE @@ -1 +1,7 @@ +--- +license_expression: psutils +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/psutils \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_9.yml b/src/licensedcode/data/rules/psutils_9.yml deleted file mode 100644 index 0be4dccfc3f..00000000000 --- a/src/licensedcode/data/rules/psutils_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: psutils -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/psutils_url_1.RULE b/src/licensedcode/data/rules/psutils_url_1.RULE index 0aecb00f3b8..a8e480a4aa0 100644 --- a/src/licensedcode/data/rules/psutils_url_1.RULE +++ b/src/licensedcode/data/rules/psutils_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: psutils +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/psutils +--- + https://spdx.org/licenses/psutils \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_url_1.yml b/src/licensedcode/data/rules/psutils_url_1.yml deleted file mode 100644 index 76409347e13..00000000000 --- a/src/licensedcode/data/rules/psutils_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psutils -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/psutils diff --git a/src/licensedcode/data/rules/psutils_url_2.RULE b/src/licensedcode/data/rules/psutils_url_2.RULE index f04d1f55c8c..c3b78da02c1 100644 --- a/src/licensedcode/data/rules/psutils_url_2.RULE +++ b/src/licensedcode/data/rules/psutils_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: psutils +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/psutils.html +--- + https://spdx.org/licenses/psutils.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/psutils_url_2.yml b/src/licensedcode/data/rules/psutils_url_2.yml deleted file mode 100644 index 32b844b6344..00000000000 --- a/src/licensedcode/data/rules/psutils_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: psutils -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/psutils.html diff --git a/src/licensedcode/data/rules/psytec-freesoft.RULE b/src/licensedcode/data/rules/psytec-freesoft.RULE index c13de5b8169..4b984f89f29 100644 --- a/src/licensedcode/data/rules/psytec-freesoft.RULE +++ b/src/licensedcode/data/rules/psytec-freesoft.RULE @@ -1,3 +1,9 @@ +--- +license_expression: psytec-freesoft +is_license_reference: yes +relevance: 100 +--- + ・本ソフトウェアの配布は自由です。 ・ソースコードの一部または全部の使用、及び改変しての使用を認めます。 ・ソースコードを使用する際に弊社に許可を求める必要はなく、また弊社名の記載も不要です。 \ No newline at end of file diff --git a/src/licensedcode/data/rules/psytec-freesoft.yml b/src/licensedcode/data/rules/psytec-freesoft.yml deleted file mode 100644 index 937b3a52213..00000000000 --- a/src/licensedcode/data/rules/psytec-freesoft.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: psytec-freesoft -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/psytec-freesoft_1.RULE b/src/licensedcode/data/rules/psytec-freesoft_1.RULE index f32bd2be71e..9e6872ce73b 100644 --- a/src/licensedcode/data/rules/psytec-freesoft_1.RULE +++ b/src/licensedcode/data/rules/psytec-freesoft_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: psytec-freesoft +is_license_notice: yes +notes: translated from Japanese +--- + · Distribution of this software is free. · Recognize the use of part or all of the source code, the use of it and modify. · It is not necessary according to the name of our need to ask permission to us when you use the source code, nor. \ No newline at end of file diff --git a/src/licensedcode/data/rules/psytec-freesoft_1.yml b/src/licensedcode/data/rules/psytec-freesoft_1.yml deleted file mode 100644 index a1299490f66..00000000000 --- a/src/licensedcode/data/rules/psytec-freesoft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: psytec-freesoft -is_license_notice: yes -notes: translated from Japanese diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_1.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_1.RULE index bd4225089ac..270ee288e4b 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + The contents of this file are dedicated to the public domain. To the extent that dedication to the public domain is not available, everyone is granted a worldwide, perpetual, royalty-free, @@ -12,4 +17,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_1.yml b/src/licensedcode/data/rules/public-domain-disclaimer_1.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_10.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_10.RULE index fad2ba87985..03dac5a891d 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_10.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + it is hereby released to the * general public under the following terms: * diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_10.yml b/src/licensedcode/data/rules/public-domain-disclaimer_10.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_11.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_11.RULE index 67162db8d02..6e7251c5c41 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_11.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + * This file has no copyright assigned and is placed in the Public Domain. * This file is part of the w64 mingw-runtime package. - * No warranty is given; refer to the file DISCLAIMER.PD within this package. + * No warranty is given; refer to the file DISCLAIMER.PD within this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_11.yml b/src/licensedcode/data/rules/public-domain-disclaimer_11.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_12.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_12.RULE index 34474b9e286..e188bdd1e96 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_12.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_12.RULE @@ -1,2 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + * This file has no copyright assigned and is placed in the Public Domain. - * No warranty is given; refer to the file DISCLAIMER.PD within this package. + * No warranty is given; refer to the file DISCLAIMER.PD within this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_12.yml b/src/licensedcode/data/rules/public-domain-disclaimer_12.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_13.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_13.RULE index 1b79a95d874..b85a341f567 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_13.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_13.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + * This file has no copyright assigned and is placed in the Public Domain. * This file is part of the package. - * No warranty is given; refer to the file DISCLAIMER.PD within this package. + * No warranty is given; refer to the file DISCLAIMER.PD within this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_13.yml b/src/licensedcode/data/rules/public-domain-disclaimer_13.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_134.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_134.RULE index 9a3c3da1302..7c42d7e4bae 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_134.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_134.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + are in public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_134.yml b/src/licensedcode/data/rules/public-domain-disclaimer_134.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_134.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_135.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_135.RULE index 2f0b8d14282..e667b505c88 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_135.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_135.RULE @@ -1 +1,7 @@ - No warranty; no copyright -- use this as you will. +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + + No warranty; no copyright -- use this as you will. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_135.yml b/src/licensedcode/data/rules/public-domain-disclaimer_135.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_136.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_136.RULE index d0e8c654311..492e7a49b6a 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_136.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_136.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + NO WARRANTY! This class is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_136.yml b/src/licensedcode/data/rules/public-domain-disclaimer_136.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_136.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_137.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_137.RULE index 14b69cb3e8d..c78660952e8 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_137.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_137.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This class is in the Public Domain, and comes with NO WARRANTY of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_137.yml b/src/licensedcode/data/rules/public-domain-disclaimer_137.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_14.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_14.RULE index 5b18b154e0b..946da897a78 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_14.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_14.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog +--- + Code was written based on public domain code: - URL: http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog. + URL: http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_14.yml b/src/licensedcode/data/rules/public-domain-disclaimer_14.yml deleted file mode 100644 index d90f80b523b..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://graphics.stanford.edu/~seander/bithacks.html#IntegerLog diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_15.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_15.RULE index 7ab2c4baa97..d43f1111158 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_15.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_15.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + is in the public domain and distributed with the following license: diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_15.yml b/src/licensedcode/data/rules/public-domain-disclaimer_15.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_16.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_16.RULE index eb9e7298df9..d4bcac368e9 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_16.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_16.RULE @@ -1,4 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + # To the extent possible under law, the author(s) have dedicated all # copyright and related and neighboring rights to this software to the # public domain worldwide. This software is distributed without any -# warranty. +# warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_16.yml b/src/licensedcode/data/rules/public-domain-disclaimer_16.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_16.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_17.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_17.RULE index ec47c396b03..43a7206b0aa 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_17.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +notes: this has a warranty disclaimer. See https://github.com/Alexpux/mingw-w64/blob/d0d7f784833bbb0b2d279310ddc6afb52fe47a46/mingw-w64-crt/stdio/mingw_sprintf.c + for example +--- + * This is free software. You may redistribute and/or modify it as you * see fit, without restriction of copyright. * @@ -5,4 +12,4 @@ * but WITHOUT WARRANTY OF ANY KIND, not even any implied warranty of * MERCHANTABILITY, nor of FITNESS FOR ANY PARTICULAR PURPOSE. At no * time will the author accept any form of liability for any damages, - * however caused, resulting from the use of this software. + * however caused, resulting from the use of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_17.yml b/src/licensedcode/data/rules/public-domain-disclaimer_17.yml deleted file mode 100644 index 723e932e12b..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -notes: this has a warranty disclaimer. See https://github.com/Alexpux/mingw-w64/blob/d0d7f784833bbb0b2d279310ddc6afb52fe47a46/mingw-w64-crt/stdio/mingw_sprintf.c - for example diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_18.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_18.RULE index 5bb01c892d8..398827e0ba3 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_18.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_18.RULE @@ -1,7 +1,11 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + The contents of this package are provided "as is" into the public domain by the Foundation . The makes no representations or warranties, express or implied. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original contents, either in source form or as a compiled binary, for any purpose, commercial or non-commercial, -and by any means. - +and by any means. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_18.yml b/src/licensedcode/data/rules/public-domain-disclaimer_18.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_18.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_19.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_19.RULE index 318b892db43..0ee15cf2838 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_19.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_19.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + Released into the public domain. No Warranty, Use at your own risk \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_19.yml b/src/licensedcode/data/rules/public-domain-disclaimer_19.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_2.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_2.RULE index a31b2a99ba6..8cd13720733 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_2.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_2.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +notes: Variant found in MySQL code +--- + This file is public domain and comes with NO WARRANTY of any kind \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_2.yml b/src/licensedcode/data/rules/public-domain-disclaimer_2.yml deleted file mode 100644 index 46b73eb9c9f..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 -notes: Variant found in MySQL code diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_20.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_20.RULE index f0208ad784a..9f2f4277abf 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_20.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_20.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +notes: the notice from libtom +--- + The library is free for all purposes without any express -guarantee it works. +guarantee it works. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_20.yml b/src/licensedcode/data/rules/public-domain-disclaimer_20.yml deleted file mode 100644 index 8aeba491324..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -notes: the notice from libtom diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_21.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_21.RULE index cb4d510c07d..30900a13f84 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_21.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_21.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Copyright +--- + Copyright Terms: Public Domain (see the file Copyright for the exact terms) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_21.yml b/src/licensedcode/data/rules/public-domain-disclaimer_21.yml deleted file mode 100644 index b1165a4a38b..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Copyright diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_22.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_22.RULE index d1d8f9a35a0..fcd8dd3cf00 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_22.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_22.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + /* Copyright Abandoned -This file is public domain and comes with NO WARRANTY of any kind */ +This file is public domain and comes with NO WARRANTY of any kind */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_22.yml b/src/licensedcode/data/rules/public-domain-disclaimer_22.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_23.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_23.RULE index 2b9e7421e0d..5e090f03273 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_23.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_23.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +referenced_filenames: + - DISCLAIMER.PD +--- + * This file has no copyright assigned and is placed in the Public Domain. * This file is part of the runtime package. * No warranty is given; refer to the file DISCLAIMER.PD within this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_23.yml b/src/licensedcode/data/rules/public-domain-disclaimer_23.yml deleted file mode 100644 index 44b4c7a941c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 -referenced_filenames: - - DISCLAIMER.PD diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_24.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_24.RULE index 64d7b27a051..08714400195 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_24.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_24.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + source code and documentation are in the public * domain. Specifically, we give to the public domain all rights for future * licensing of the source code, all resale rights, and all publishing rights. diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_24.yml b/src/licensedcode/data/rules/public-domain-disclaimer_24.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_25.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_25.RULE index 5024cd651ef..e1d58ec7c25 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_25.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_25.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + Dedicated to the Public Domain the author and inventor . This code comes with no warranty. Use it at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_25.yml b/src/licensedcode/data/rules/public-domain-disclaimer_25.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_25.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_26.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_26.RULE index 032d116888e..57a6a750135 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_26.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +referenced_filenames: + - DISCLAIMER +--- + * This file has no copyright assigned and is placed in the Public Domain. * This file is a part of the runtime package. - * No warranty is given; refer to the file DISCLAIMER within the package. + * No warranty is given; refer to the file DISCLAIMER within the package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_26.yml b/src/licensedcode/data/rules/public-domain-disclaimer_26.yml deleted file mode 100644 index 581b537dfe6..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 -referenced_filenames: - - DISCLAIMER diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_27.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_27.RULE index 71908c598fc..0f1ed16600a 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_27.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_27.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + Public Domain. -NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. +NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_27.yml b/src/licensedcode/data/rules/public-domain-disclaimer_27.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_28.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_28.RULE index 89d7d713d05..49dff9654eb 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_28.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_28.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + Public Domain: no warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_28.yml b/src/licensedcode/data/rules/public-domain-disclaimer_28.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_29.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_29.RULE index e73d8c6d7b8..1394d8c49fd 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_29.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_29.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + 100% Public Domain - no warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_29.yml b/src/licensedcode/data/rules/public-domain-disclaimer_29.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_3.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_3.RULE index d3279dc7c96..2e2a3ccec03 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_3.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +minimum_coverage: 60 +notes: found in MySQL code +--- + THIS SOFTWARE IS NOT COPYRIGHTED HP offers the following for use in the public domain. HP makes no @@ -6,4 +13,4 @@ HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_3.yml b/src/licensedcode/data/rules/public-domain-disclaimer_3.yml deleted file mode 100644 index 13194d91313..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -minimum_coverage: 60 -notes: found in MySQL code diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_30.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_30.RULE index 78b4aa765c8..0526c30c42a 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_30.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_30.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + THIS SOFTWARE IS NOT COPYRIGHTED HP offers the following for use in the public domain. HP makes no @@ -6,4 +11,4 @@ user accepts the software "AS IS" with all faults. HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_30.yml b/src/licensedcode/data/rules/public-domain-disclaimer_30.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_31.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_31.RULE index 5ab9b526194..3a5f78e75f6 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_31.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_31.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This implementation is herby placed in the public domain. - * The authors offers no warranty. Use at your own risk. + * The authors offers no warranty. Use at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_31.yml b/src/licensedcode/data/rules/public-domain-disclaimer_31.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_32.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_32.RULE index f7bcacd4dc0..7ad2d8dc828 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_32.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_32.RULE @@ -1,3 +1,15 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright https://DidierStevens.com +ignorable_holders: + - https://DidierStevens.com +ignorable_urls: + - https://didierstevens.com/ +--- + Source code put in public domain by Didier Stevens, no Copyright https://DidierStevens.com -Use at your own risk +Use at your own risk \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_32.yml b/src/licensedcode/data/rules/public-domain-disclaimer_32.yml deleted file mode 100644 index 4c4918cefff..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_32.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright https://DidierStevens.com -ignorable_holders: - - https://DidierStevens.com -ignorable_urls: - - https://didierstevens.com/ diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_33.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_33.RULE index 33194bcc669..6a805fb57c6 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_33.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_33.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + The example code in the directory and the examples from the documentation can be used, modified and distributed freely without any restrictions (think "public domain", except that by German law the author @@ -10,4 +15,4 @@ Not fitness for a particular purpose or any kind of guarantuee of functionality is implied. No responsibilities are taken by author to the extend allowed by applicable -law. +law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_33.yml b/src/licensedcode/data/rules/public-domain-disclaimer_33.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_33.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_34.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_34.RULE index 2443be792fc..1f9a633d277 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_34.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_34.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + ** This work has been placed into the public domain. ** You may use this work in any way and for any purpose you wish. ** @@ -5,4 +10,4 @@ ** NOT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR ** OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY ** CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR - ** REDISTRIBUTION OF THIS SOFTWARE. + ** REDISTRIBUTION OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_34.yml b/src/licensedcode/data/rules/public-domain-disclaimer_34.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_35.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_35.RULE index e65ef250e75..f5fefc2ab0c 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_35.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_35.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +relevance: 100 +--- + Code examples in all the perlfaq documents are in the public domain. Use them as you see fit (and at your own risk with no warranty from anyone). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_35.yml b/src/licensedcode/data/rules/public-domain-disclaimer_35.yml deleted file mode 100644 index 776ba0ca42b..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_36.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_36.RULE index ffd57193687..049e4116766 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_36.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_36.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + # This file is PUBLIC DOMAIN and may be freely reproduced, distributed, # transmitted, used, modified, built upon, or otherwise exploited by # anyone for any purpose, commercial or non-commercial, and in any way, diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_36.yml b/src/licensedcode/data/rules/public-domain-disclaimer_36.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_37.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_37.RULE index aba0d4d2c02..f1e05161070 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_37.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_37.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + The author, who is not an attorney, places this license template into the public domain along with a complete disclaimer of any warranty or responsibility for its content or legal efficacy. You may use or modify the language freely, but entirely at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_37.yml b/src/licensedcode/data/rules/public-domain-disclaimer_37.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_38.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_38.RULE index 1c07018eec4..f4335d4573a 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_38.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + placed in the public domain. Revised in subsequent years, still public domain. diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_38.yml b/src/licensedcode/data/rules/public-domain-disclaimer_38.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_39.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_39.RULE index 75012f1b557..ac8da811d1a 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_39.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_39.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_reference: yes +relevance: 100 +--- + Obviously, since this code is in the public domain, the above are not requirements (there can be none), but merely suggestions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_39.yml b/src/licensedcode/data/rules/public-domain-disclaimer_39.yml deleted file mode 100644 index d5698394b79..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_4.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_4.RULE index 29adeba1aa9..81eec50e9c5 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_4.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +notes: Variant found in MySQL code +--- + THIS SOFTWARE IS NOT COPYRIGHTED This source code is offered for use in the public domain. You may @@ -6,4 +12,4 @@ use, modify or distribute it freely. This code is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY DISCLAIMED. This includes but is not limited to warranties of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_4.yml b/src/licensedcode/data/rules/public-domain-disclaimer_4.yml deleted file mode 100644 index 60d936b855d..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -notes: Variant found in MySQL code diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_40.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_40.RULE index 57a9846cd72..44c678a013a 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_40.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_40.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This software is in the public domain. I accept no responsibility for any damage resulting from it. Use at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_40.yml b/src/licensedcode/data/rules/public-domain-disclaimer_40.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_41.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_41.RULE index 34745a7f0f9..da652dc6c1f 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_41.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + All these files have been put into the public domain. You can do whatever you want with these files. diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_41.yml b/src/licensedcode/data/rules/public-domain-disclaimer_41.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_42.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_42.RULE index a750c6c41ab..211a289fce1 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_42.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_42.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain. However, appropriate mention of credit is hoped for. Feedback about use of the program would be appreciated. This sofware comes with absolutely no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_42.yml b/src/licensedcode/data/rules/public-domain-disclaimer_42.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_43.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_43.RULE index 16e1070094f..290a232721d 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_43.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_43.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain, with NO WARRANTY OF ANY // KIND. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_43.yml b/src/licensedcode/data/rules/public-domain-disclaimer_43.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_44.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_44.RULE index 90ad0c4bdf3..0b0476b4fc3 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_44.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_44.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + this code is placed in the public domain and bears no warranty whatsoever \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_44.yml b/src/licensedcode/data/rules/public-domain-disclaimer_44.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_45.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_45.RULE index 96eb02e3df7..a775a91a603 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_45.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_45.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This code is placed into the public domain by its author No warranty or guarantee of applicability or function is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_45.yml b/src/licensedcode/data/rules/public-domain-disclaimer_45.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_46.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_46.RULE index b07a6bd4988..db30b9312d7 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_46.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_46.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + LICENSE * * This software is in the public domain, furnished "as is", without diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_46.yml b/src/licensedcode/data/rules/public-domain-disclaimer_46.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_47.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_47.RULE index b26f2a5d3da..8791293a105 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_47.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_47.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + * This software is in the public domain, furnished "as is", without * technical support, and with no warranty, express or implied, as to * its usefulness for any purpose \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_47.yml b/src/licensedcode/data/rules/public-domain-disclaimer_47.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_48.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_48.RULE index 5546270056b..e1e6bcc3edd 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_48.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_48.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This software is in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_48.yml b/src/licensedcode/data/rules/public-domain-disclaimer_48.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_49.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_49.RULE index 99c335d321d..cdf2a5a822b 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_49.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_49.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + software is in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_49.yml b/src/licensedcode/data/rules/public-domain-disclaimer_49.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_5.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_5.RULE index 08703373226..a029613f2c2 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_5.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +notes: Variant found in MySQL code +--- + This work, including the source code, documentation and related data, is placed into the public domain. @@ -8,4 +14,4 @@ MERCHANTABILITY. THE AUTHOR OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR - REDISTRIBUTION OF THIS SOFTWARE. + REDISTRIBUTION OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_5.yml b/src/licensedcode/data/rules/public-domain-disclaimer_5.yml deleted file mode 100644 index 60d936b855d..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -notes: Variant found in MySQL code diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_50.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_50.RULE index 6fc09a94919..7e4d7465eca 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_50.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_50.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +notes: Seen in re2c +--- + License is in the public domain. The data structures and algorithms used in diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_50.yml b/src/licensedcode/data/rules/public-domain-disclaimer_50.yml deleted file mode 100644 index 27aee88313d..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_50.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 -notes: Seen in re2c diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_51.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_51.RULE index 1e26d60ee86..45e0f3c136c 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_51.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_51.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This file has no copyright assigned and is placed in the Public Domain. This file is a part of the mingw-runtime package. No warranty is given; refer to the file DISCLAIMER within the package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_51.yml b/src/licensedcode/data/rules/public-domain-disclaimer_51.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_52.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_52.RULE index 992f749031c..ac7e8c0df4d 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_52.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_52.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This file has no copyright assigned and is placed in the Public Domain. This file is a part of the package. No warranty is given; refer to the file DISCLAIMER within the package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_52.yml b/src/licensedcode/data/rules/public-domain-disclaimer_52.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_53.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_53.RULE index 51e103b4d6e..e71150b460a 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_53.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_53.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +notes: see https://github.com/MariaDB/server/blob/10.6/dbug/dbug.c +--- + This previously copyrighted work has been placed into the public domain by the author and may be freely used for any purpose, private or commercial. diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_53.yml b/src/licensedcode/data/rules/public-domain-disclaimer_53.yml deleted file mode 100644 index 451d2e084a4..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_53.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 -notes: see https://github.com/MariaDB/server/blob/10.6/dbug/dbug.c diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_54.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_54.RULE index da69b48c6f4..e7a4ca72140 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_54.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_54.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +notes: see https://github.com/MariaDB/server/blob/10.6/dbug/dbug.c +--- + This program may be freely distributed under the same terms and conditions as Fred Fish's Dbug package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_54.yml b/src/licensedcode/data/rules/public-domain-disclaimer_54.yml deleted file mode 100644 index b560d65daf0..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -notes: see https://github.com/MariaDB/server/blob/10.6/dbug/dbug.c diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_55.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_55.RULE index abe05431c9e..bb4b584e42a 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_55.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_55.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This file has no copyright assigned and is placed in the Public Domain. This file is a part of the package. diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_55.yml b/src/licensedcode/data/rules/public-domain-disclaimer_55.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_56.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_56.RULE index 2277055ba93..5e5de6caa7f 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_56.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_56.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This source code is released into the public domain. It is provided on an as-is basis and no responsibility is accepted for its failure to perform as expected. It is worth at least as much as you paid for it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_56.yml b/src/licensedcode/data/rules/public-domain-disclaimer_56.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_57.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_57.RULE index 5c5698cd40e..f06e48f176d 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_57.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_57.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + placed in the public domain. There's absolutely no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_57.yml b/src/licensedcode/data/rules/public-domain-disclaimer_57.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_58.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_58.RULE index ba42c312816..63541754bed 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_58.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_58.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + In English: is freeware. is distributed with no warranty whatsoever. The author and any other contributors take no responsibility for any and all consequences of its use. diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_58.yml b/src/licensedcode/data/rules/public-domain-disclaimer_58.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_59.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_59.RULE index 6e006da694e..e52e9d62742 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_59.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_59.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +relevance: 100 +--- + Berkeley Yacc is in the public domain; \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_59.yml b/src/licensedcode/data/rules/public-domain-disclaimer_59.yml deleted file mode 100644 index 776ba0ca42b..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_6.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_6.RULE index 9c8fd4baa39..4ac725b8f26 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_6.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + Copyright info: This is free software; you can redistribute it and/or modify @@ -5,4 +10,4 @@ Copyright info: 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. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_6.yml b/src/licensedcode/data/rules/public-domain-disclaimer_6.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_60.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_60.RULE index e52a66b4236..8c4686932fc 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_60.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_60.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + lots of code from the Berkeley Yacc distribution, which is a public domain yacc clone put together by the good folks at Berkeley. This code is diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_60.yml b/src/licensedcode/data/rules/public-domain-disclaimer_60.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_61.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_61.RULE index 89104c8f219..ecec7fef03f 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_61.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_61.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +relevance: 100 +--- + Public domain notice and no warranty: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_61.yml b/src/licensedcode/data/rules/public-domain-disclaimer_61.yml deleted file mode 100644 index 776ba0ca42b..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_62.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_62.RULE index ca938e7a1e9..e2d110ddab8 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_62.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_62.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + Berkeley Yacc is distributed with no warranty whatever. The code is certain to contain errors. Neither the author nor any contributor takes responsibility for any consequences of its use. diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_62.yml b/src/licensedcode/data/rules/public-domain-disclaimer_62.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_63.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_63.RULE index 23dc31be5a1..4702ecdfaf6 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_63.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_63.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +relevance: 100 +--- + Berkeley Yacc is distributed with no warranty whatever. The author and any other contributors take no responsibility for the consequences of its use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_63.yml b/src/licensedcode/data/rules/public-domain-disclaimer_63.yml deleted file mode 100644 index 776ba0ca42b..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_64.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_64.RULE index 9db34a6d970..82109c968a7 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_64.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_64.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This file is placed in the public domain and comes with absolutely no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_64.yml b/src/licensedcode/data/rules/public-domain-disclaimer_64.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_65.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_65.RULE index b266a3172a4..2d99762ad19 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_65.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_65.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + You can use this free for any purpose. It has no warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_65.yml b/src/licensedcode/data/rules/public-domain-disclaimer_65.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_66.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_66.RULE index bf8bc50abac..19ecbfd8fc3 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_66.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_66.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +relevance: 100 +--- + Public Domain. These are functions for producing 32-bit hashes for hash table lookup... ...You can use this free for any purpose. It's in the public domain. diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_66.yml b/src/licensedcode/data/rules/public-domain-disclaimer_66.yml deleted file mode 100644 index 776ba0ca42b..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_67.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_67.RULE index 79f7307188c..14b52ded481 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_67.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_67.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +ignorable_urls: + - ftp://ftp.funet.fi/pub/crypt/hash/sha/sha1.c +--- + NO COPYRIGHT - THIS IS 100% IN THE PUBLIC DOMAIN * * The original unmodified version is available at: diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_67.yml b/src/licensedcode/data/rules/public-domain-disclaimer_67.yml deleted file mode 100644 index 967ee9c8f1c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_67.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -ignorable_urls: - - ftp://ftp.funet.fi/pub/crypt/hash/sha/sha1.c diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_68.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_68.RULE index 26c9a34b601..38053e4c325 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_68.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_68.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +relevance: 100 +notes: http://www.purposeful.co.uk/tfl/ +--- + Licence This is truly free software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_68.yml b/src/licensedcode/data/rules/public-domain-disclaimer_68.yml deleted file mode 100644 index a9b98374737..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_68.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -relevance: 100 -notes: http://www.purposeful.co.uk/tfl/ diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_69.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_69.RULE index 66d0d475618..dc3dd1d974e 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_69.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_69.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.purposeful.co.uk/tfl/ +--- + http://www.purposeful.co.uk/tfl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_69.yml b/src/licensedcode/data/rules/public-domain-disclaimer_69.yml deleted file mode 100644 index 98205fe9f44..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_69.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.purposeful.co.uk/tfl/ diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_7.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_7.RULE index 114e4bdf2c0..267b9e59563 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_7.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + You can use this free for any purpose. It's in - the public domain. It has no warranty. + the public domain. It has no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_7.yml b/src/licensedcode/data/rules/public-domain-disclaimer_7.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_70.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_70.RULE index 5bca6a11126..502e7ec84ce 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_70.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_70.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + * Please do not copyright this code. This code is in the public domain. * * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_70.yml b/src/licensedcode/data/rules/public-domain-disclaimer_70.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_70.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_71.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_71.RULE index 2c9ab25e937..9155b372967 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_71.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_71.RULE @@ -1,2 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + documents are in the public domain. Use them as you see fit (and at your own risk with no warranty from anyone). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_71.yml b/src/licensedcode/data/rules/public-domain-disclaimer_71.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_71.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_72.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_72.RULE index 8122c6abc47..8ae32152b02 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_72.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_72.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +ignorable_urls: + - http://tukaani.org/xz/ +--- + You can do whatever you want with the files that have been put into the public domain. If you find public domain legally problematic, take the previous sentence as a license grant. If you still find diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_72.yml b/src/licensedcode/data/rules/public-domain-disclaimer_72.yml deleted file mode 100644 index ec8eab92892..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_72.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -ignorable_urls: - - http://tukaani.org/xz/ diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_73.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_73.RULE index 7efb87a2ef4..1d52bbac3c9 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_73.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_73.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This code is released into public domain without any warranty of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_73.yml b/src/licensedcode/data/rules/public-domain-disclaimer_73.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_74.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_74.RULE index b9d8c0017ba..522d886f96d 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_74.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_74.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_reference: yes +relevance: 100 +--- + This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_74.yml b/src/licensedcode/data/rules/public-domain-disclaimer_74.yml deleted file mode 100644 index d5698394b79..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_75.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_75.RULE index d9c18e2226f..56fbe6e7fc2 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_75.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_75.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +notes: See in https://fastcrypto.org/ +--- + * This implementation is herby placed in the public domain. * The author offers no warranty. Use at your own risk. * Please send bug reports to the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_75.yml b/src/licensedcode/data/rules/public-domain-disclaimer_75.yml deleted file mode 100644 index 552355788cc..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes -notes: See in https://fastcrypto.org/ diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_76.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_76.RULE index ef4c7c0f200..2e8d176c802 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_76.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_76.RULE @@ -1 +1,6 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +--- + As for my part of the code,I hereby release it, on a strictly "as is"basis,to the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_76.yml b/src/licensedcode/data/rules/public-domain-disclaimer_76.yml deleted file mode 100644 index 1bbc4e8a12f..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_76.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_77.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_77.RULE index 4b1233187db..b33962905cf 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_77.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_77.RULE @@ -1 +1,6 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + I am placing this code in the Public Domain. Do with it as you will. This software comes with no guarantees or warranties but with plenty of well-wishing instead! \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_77.yml b/src/licensedcode/data/rules/public-domain-disclaimer_77.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_77.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_8.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_8.RULE index b4406d51184..c12cde6a6a7 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_8.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +--- + This library is free software; you can redistribute it and/or modify it without any restrictions. This library is distributed - in the hope that it will be useful, but without any warranty. + in the hope that it will be useful, but without any warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_8.yml b/src/licensedcode/data/rules/public-domain-disclaimer_8.yml deleted file mode 100644 index c52fe73c6bd..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_9.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_9.RULE index 711893fd86a..e5f92a098ce 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_9.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_9.RULE @@ -1,6 +1,11 @@ +--- +license_expression: public-domain-disclaimer +is_license_notice: yes +--- + The contents of this package are provided "as is" into the public domain by the The makes no representations or warranties, express or implied. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original contents, either in source form or as a compiled binary, for any purpose, commercial or non-commercial, -and by any means. +and by any means. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_9.yml b/src/licensedcode/data/rules/public-domain-disclaimer_9.yml deleted file mode 100644 index 1bbc4e8a12f..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_not_sax-pd2.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_not_sax-pd2.RULE index 538485d1906..456f5aeab29 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_not_sax-pd2.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_not_sax-pd2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain-disclaimer +is_license_text: yes +relevance: 100 +--- + This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_not_sax-pd2.yml b/src/licensedcode/data/rules/public-domain-disclaimer_not_sax-pd2.yml deleted file mode 100644 index 12015d6e64c..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_not_sax-pd2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain-disclaimer_or_other-permissive_1.RULE b/src/licensedcode/data/rules/public-domain-disclaimer_or_other-permissive_1.RULE index a9d3da3ef7a..721195da4c5 100644 --- a/src/licensedcode/data/rules/public-domain-disclaimer_or_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/public-domain-disclaimer_or_other-permissive_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain-disclaimer OR other-permissive +is_license_notice: yes +--- + I, the copyright holder of this package, hereby release the entire contents therein into the public domain. This applies worldwide, to the extent that it is permissible by law. In case this is not legally possible, I grant any entity the right to use this work for any purpose, without any conditions, unless such conditions are required by law. @@ -5,4 +10,4 @@ In case this is not legally possible, I grant any entity the right to use this w The full details of this can be found in the LICENSE file included in this package. DISCLAIMER OF WARRANTY -The software is provided "AS IS", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software. +The software 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/public-domain-disclaimer_or_other-permissive_1.yml b/src/licensedcode/data/rules/public-domain-disclaimer_or_other-permissive_1.yml deleted file mode 100644 index 766ff9e574a..00000000000 --- a/src/licensedcode/data/rules/public-domain-disclaimer_or_other-permissive_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain-disclaimer OR other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_0.RULE b/src/licensedcode/data/rules/public-domain_0.RULE index e5fad528df7..4f976c6e638 100644 --- a/src/licensedcode/data/rules/public-domain_0.RULE +++ b/src/licensedcode/data/rules/public-domain_0.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + "Public domain" - the code in these files have no licensing restrictions whatsoever. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_0.yml b/src/licensedcode/data/rules/public-domain_0.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_1.RULE b/src/licensedcode/data/rules/public-domain_1.RULE index 0865b2bdd14..654206bfb9d 100644 --- a/src/licensedcode/data/rules/public-domain_1.RULE +++ b/src/licensedcode/data/rules/public-domain_1.RULE @@ -1 +1,7 @@ -This source code is public domain +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This source code is public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_1.yml b/src/licensedcode/data/rules/public-domain_1.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_10.RULE b/src/licensedcode/data/rules/public-domain_10.RULE index cab1011b7d2..033590698eb 100644 --- a/src/licensedcode/data/rules/public-domain_10.RULE +++ b/src/licensedcode/data/rules/public-domain_10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + The standard is considered to be in the public domain. Anyone is free to implement SANE interface conforming applications or libraries in any way he or she sees fit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_10.yml b/src/licensedcode/data/rules/public-domain_10.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_100.RULE b/src/licensedcode/data/rules/public-domain_100.RULE index 2b95c3038cf..d91e7710b6e 100644 --- a/src/licensedcode/data/rules/public-domain_100.RULE +++ b/src/licensedcode/data/rules/public-domain_100.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + Based on a public domain implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_100.yml b/src/licensedcode/data/rules/public-domain_100.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_101.RULE b/src/licensedcode/data/rules/public-domain_101.RULE index 1531668dcd0..f8ba0bdadce 100644 --- a/src/licensedcode/data/rules/public-domain_101.RULE +++ b/src/licensedcode/data/rules/public-domain_101.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + Library is public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_101.yml b/src/licensedcode/data/rules/public-domain_101.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_102.RULE b/src/licensedcode/data/rules/public-domain_102.RULE index 8855519ad12..f8a83de2c39 100644 --- a/src/licensedcode/data/rules/public-domain_102.RULE +++ b/src/licensedcode/data/rules/public-domain_102.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + This file was modified from the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_102.yml b/src/licensedcode/data/rules/public-domain_102.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_103.RULE b/src/licensedcode/data/rules/public-domain_103.RULE index c83e3472e31..b9e09737d28 100644 --- a/src/licensedcode/data/rules/public-domain_103.RULE +++ b/src/licensedcode/data/rules/public-domain_103.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + // and is also placed in the public domain. // The authors hereby disclaim copyright to these source codes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_103.yml b/src/licensedcode/data/rules/public-domain_103.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_103.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_104.RULE b/src/licensedcode/data/rules/public-domain_104.RULE index d810be1f145..13469ba7423 100644 --- a/src/licensedcode/data/rules/public-domain_104.RULE +++ b/src/licensedcode/data/rules/public-domain_104.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + Adopted from public domain code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_104.yml b/src/licensedcode/data/rules/public-domain_104.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_104.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_105.RULE b/src/licensedcode/data/rules/public-domain_105.RULE index 4849adb277e..abe2b3739b4 100644 --- a/src/licensedcode/data/rules/public-domain_105.RULE +++ b/src/licensedcode/data/rules/public-domain_105.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + * Despite my general liking of the GPL, I place this code in the * public domain for the benefit of all mankind - even the slimy * ones who might try to proprietize my work and use it to my diff --git a/src/licensedcode/data/rules/public-domain_105.yml b/src/licensedcode/data/rules/public-domain_105.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_105.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_106.RULE b/src/licensedcode/data/rules/public-domain_106.RULE index 9442a108cac..c8b1007f595 100644 --- a/src/licensedcode/data/rules/public-domain_106.RULE +++ b/src/licensedcode/data/rules/public-domain_106.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + A portable, public domain, version of the Data Encryption Standard. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_106.yml b/src/licensedcode/data/rules/public-domain_106.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_106.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_107.RULE b/src/licensedcode/data/rules/public-domain_107.RULE index 9f3180fc3d5..ede722e873a 100644 --- a/src/licensedcode/data/rules/public-domain_107.RULE +++ b/src/licensedcode/data/rules/public-domain_107.RULE @@ -1,2 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + // This code was written by and has been placed in the // public domain. It would be nice if you left this header intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_107.yml b/src/licensedcode/data/rules/public-domain_107.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_107.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_108.RULE b/src/licensedcode/data/rules/public-domain_108.RULE index fee308fde3e..5919dd4b4e3 100644 --- a/src/licensedcode/data/rules/public-domain_108.RULE +++ b/src/licensedcode/data/rules/public-domain_108.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + It is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_108.yml b/src/licensedcode/data/rules/public-domain_108.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_108.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_109.RULE b/src/licensedcode/data/rules/public-domain_109.RULE index 5ee437f7ad9..db5b8ef8c7c 100644 --- a/src/licensedcode/data/rules/public-domain_109.RULE +++ b/src/licensedcode/data/rules/public-domain_109.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + all related programs in this package are in # the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_109.yml b/src/licensedcode/data/rules/public-domain_109.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_109.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_11.RULE b/src/licensedcode/data/rules/public-domain_11.RULE index a8c10d5c506..3a2bc96cf2e 100644 --- a/src/licensedcode/data/rules/public-domain_11.RULE +++ b/src/licensedcode/data/rules/public-domain_11.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This file is in the public domain. You may freely use, modify and distribute it \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_11.yml b/src/licensedcode/data/rules/public-domain_11.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_110.RULE b/src/licensedcode/data/rules/public-domain_110.RULE index 53dfac4bb51..a2fc0e51a28 100644 --- a/src/licensedcode/data/rules/public-domain_110.RULE +++ b/src/licensedcode/data/rules/public-domain_110.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Some of the algorithms in this class are in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_110.yml b/src/licensedcode/data/rules/public-domain_110.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_111.RULE b/src/licensedcode/data/rules/public-domain_111.RULE index a6725a2385c..19eb5d375a5 100644 --- a/src/licensedcode/data/rules/public-domain_111.RULE +++ b/src/licensedcode/data/rules/public-domain_111.RULE @@ -1,2 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + * This software was released into the Public Domain. As with most public - * domain software, no warranty is made or implied \ No newline at end of file + * domain software, no warranty is made or implied \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_111.yml b/src/licensedcode/data/rules/public-domain_111.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_111.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_112.RULE b/src/licensedcode/data/rules/public-domain_112.RULE index 8536fa25294..0011b2d32c0 100644 --- a/src/licensedcode/data/rules/public-domain_112.RULE +++ b/src/licensedcode/data/rules/public-domain_112.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + copyright", "As I developed this software in conjunction with " " and at University, I " "freely put this software in the public domain. " diff --git a/src/licensedcode/data/rules/public-domain_112.yml b/src/licensedcode/data/rules/public-domain_112.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_112.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_113.RULE b/src/licensedcode/data/rules/public-domain_113.RULE index db918c38ac3..1110a18c601 100644 --- a/src/licensedcode/data/rules/public-domain_113.RULE +++ b/src/licensedcode/data/rules/public-domain_113.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + this program is in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_113.yml b/src/licensedcode/data/rules/public-domain_113.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_114.RULE b/src/licensedcode/data/rules/public-domain_114.RULE index f515d576fb3..d9b3de75b69 100644 --- a/src/licensedcode/data/rules/public-domain_114.RULE +++ b/src/licensedcode/data/rules/public-domain_114.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This source and associated include are contributed to the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_114.yml b/src/licensedcode/data/rules/public-domain_114.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_115.RULE b/src/licensedcode/data/rules/public-domain_115.RULE index ea7f4b248ee..a3c74bc756d 100644 --- a/src/licensedcode/data/rules/public-domain_115.RULE +++ b/src/licensedcode/data/rules/public-domain_115.RULE @@ -1 +1,7 @@ -Adapted from 1995 public domain C code \ No newline at end of file +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +Adapted from 1995 public domain C code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_115.yml b/src/licensedcode/data/rules/public-domain_115.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_116.RULE b/src/licensedcode/data/rules/public-domain_116.RULE index 95982ee6712..81ac8575332 100644 --- a/src/licensedcode/data/rules/public-domain_116.RULE +++ b/src/licensedcode/data/rules/public-domain_116.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Public domain I hereby place my work 'polyleven' into the public domain. diff --git a/src/licensedcode/data/rules/public-domain_116.yml b/src/licensedcode/data/rules/public-domain_116.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_116.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_117.RULE b/src/licensedcode/data/rules/public-domain_117.RULE index 86f75b21ca3..535888b650c 100644 --- a/src/licensedcode/data/rules/public-domain_117.RULE +++ b/src/licensedcode/data/rules/public-domain_117.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + and their related set of tools and documentation are in the // public domain. The author(s) of this software reserve no copyrights on // and help from the users. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_117.yml b/src/licensedcode/data/rules/public-domain_117.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_118.RULE b/src/licensedcode/data/rules/public-domain_118.RULE index af8ce0ac7d4..a4b0701b08a 100644 --- a/src/licensedcode/data/rules/public-domain_118.RULE +++ b/src/licensedcode/data/rules/public-domain_118.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + and released into the public domain. * Anybody may use and/or modify this code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_118.yml b/src/licensedcode/data/rules/public-domain_118.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_118.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_119.RULE b/src/licensedcode/data/rules/public-domain_119.RULE index 600c6b047e2..70e28608501 100644 --- a/src/licensedcode/data/rules/public-domain_119.RULE +++ b/src/licensedcode/data/rules/public-domain_119.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + No known copyright restrictions, released into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_119.yml b/src/licensedcode/data/rules/public-domain_119.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_119.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_12.RULE b/src/licensedcode/data/rules/public-domain_12.RULE index a03719a1066..ef1e99727df 100644 --- a/src/licensedcode/data/rules/public-domain_12.RULE +++ b/src/licensedcode/data/rules/public-domain_12.RULE @@ -1 +1,7 @@ -FILE_LICENCE ( PUBLIC_DOMAIN ); +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +--- + +FILE_LICENCE ( PUBLIC_DOMAIN ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_12.yml b/src/licensedcode/data/rules/public-domain_12.yml deleted file mode 100644 index a41446614f6..00000000000 --- a/src/licensedcode/data/rules/public-domain_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_120.RULE b/src/licensedcode/data/rules/public-domain_120.RULE index 223d15320ae..6b09d3845de 100644 --- a/src/licensedcode/data/rules/public-domain_120.RULE +++ b/src/licensedcode/data/rules/public-domain_120.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.nasa.gov/audience/formedia/features/MP_Photo_Guidelines.html +--- + and `may be freely used in the public domain `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_120.yml b/src/licensedcode/data/rules/public-domain_120.yml deleted file mode 100644 index d7ff051bfc3..00000000000 --- a/src/licensedcode/data/rules/public-domain_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.nasa.gov/audience/formedia/features/MP_Photo_Guidelines.html diff --git a/src/licensedcode/data/rules/public-domain_121.RULE b/src/licensedcode/data/rules/public-domain_121.RULE index f7a6236a5ed..1ab44c2492c 100644 --- a/src/licensedcode/data/rules/public-domain_121.RULE +++ b/src/licensedcode/data/rules/public-domain_121.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + and `released in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_121.yml b/src/licensedcode/data/rules/public-domain_121.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_121.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_122.RULE b/src/licensedcode/data/rules/public-domain_122.RULE index e40fa5134b9..40acab21e88 100644 --- a/src/licensedcode/data/rules/public-domain_122.RULE +++ b/src/licensedcode/data/rules/public-domain_122.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Copyright: This module has been placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_122.yml b/src/licensedcode/data/rules/public-domain_122.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_122.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_123.RULE b/src/licensedcode/data/rules/public-domain_123.RULE index b240ffee96d..f316d62f0f6 100644 --- a/src/licensedcode/data/rules/public-domain_123.RULE +++ b/src/licensedcode/data/rules/public-domain_123.RULE @@ -1,3 +1,12 @@ +--- +license_expression: public-domain +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2002-3 Hans Dietrich / Jim Fougeron +ignorable_holders: + - Hans Dietrich / Jim Fougeron +--- + No copyright is claimed, and all modifications to this source * fall under original public domain license statement. * In case this attempt to disclaim copyright and place the software in diff --git a/src/licensedcode/data/rules/public-domain_123.yml b/src/licensedcode/data/rules/public-domain_123.yml deleted file mode 100644 index 704d0341489..00000000000 --- a/src/licensedcode/data/rules/public-domain_123.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2002-3 Hans Dietrich / Jim Fougeron -ignorable_holders: - - Hans Dietrich / Jim Fougeron diff --git a/src/licensedcode/data/rules/public-domain_124.RULE b/src/licensedcode/data/rules/public-domain_124.RULE index ef21b42f6da..23e28cfdfee 100644 --- a/src/licensedcode/data/rules/public-domain_124.RULE +++ b/src/licensedcode/data/rules/public-domain_124.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +--- + and released to the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_124.yml b/src/licensedcode/data/rules/public-domain_124.yml deleted file mode 100644 index 92d6c204569..00000000000 --- a/src/licensedcode/data/rules/public-domain_124.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 99 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_125.RULE b/src/licensedcode/data/rules/public-domain_125.RULE index 1064fc8f340..ab4a78c2eb4 100644 --- a/src/licensedcode/data/rules/public-domain_125.RULE +++ b/src/licensedcode/data/rules/public-domain_125.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + 100% Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_125.yml b/src/licensedcode/data/rules/public-domain_125.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_126.RULE b/src/licensedcode/data/rules/public-domain_126.RULE index 4d2b552d394..118a576cc44 100644 --- a/src/licensedcode/data/rules/public-domain_126.RULE +++ b/src/licensedcode/data/rules/public-domain_126.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Public domain font. Share and enjoy. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_126.yml b/src/licensedcode/data/rules/public-domain_126.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_127.RULE b/src/licensedcode/data/rules/public-domain_127.RULE index 6081c9ba7d2..5b7dbdd3b62 100644 --- a/src/licensedcode/data/rules/public-domain_127.RULE +++ b/src/licensedcode/data/rules/public-domain_127.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This source code belongs to Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_127.yml b/src/licensedcode/data/rules/public-domain_127.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_127.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_128.RULE b/src/licensedcode/data/rules/public-domain_128.RULE index c1269900d7a..1a361c62cc6 100644 --- a/src/licensedcode/data/rules/public-domain_128.RULE +++ b/src/licensedcode/data/rules/public-domain_128.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + put into the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_128.yml b/src/licensedcode/data/rules/public-domain_128.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_128.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_129.RULE b/src/licensedcode/data/rules/public-domain_129.RULE index 87cbb6fdc8f..68ea2c8d07d 100644 --- a/src/licensedcode/data/rules/public-domain_129.RULE +++ b/src/licensedcode/data/rules/public-domain_129.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + This is free and unencumbered software released into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_129.yml b/src/licensedcode/data/rules/public-domain_129.yml deleted file mode 100644 index 8e8e0f8c600..00000000000 --- a/src/licensedcode/data/rules/public-domain_129.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_13.RULE b/src/licensedcode/data/rules/public-domain_13.RULE index d5b596f4075..dc5b3260740 100644 --- a/src/licensedcode/data/rules/public-domain_13.RULE +++ b/src/licensedcode/data/rules/public-domain_13.RULE @@ -1 +1,7 @@ -This code is hereby placed in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This code is hereby placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_13.yml b/src/licensedcode/data/rules/public-domain_13.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_130.RULE b/src/licensedcode/data/rules/public-domain_130.RULE index f4144ae5240..3ad6dde75d3 100644 --- a/src/licensedcode/data/rules/public-domain_130.RULE +++ b/src/licensedcode/data/rules/public-domain_130.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + originally based on the public domain implementation written * by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_130.yml b/src/licensedcode/data/rules/public-domain_130.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_130.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_131.RULE b/src/licensedcode/data/rules/public-domain_131.RULE index 89371da85c7..66c4a76b0e8 100644 --- a/src/licensedcode/data/rules/public-domain_131.RULE +++ b/src/licensedcode/data/rules/public-domain_131.RULE @@ -1 +1,7 @@ -These trivial string functions are considered part of the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +These trivial string functions are considered part of the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_131.yml b/src/licensedcode/data/rules/public-domain_131.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_131.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_132.RULE b/src/licensedcode/data/rules/public-domain_132.RULE index ed4777ad1f4..e1451f1f5b7 100644 --- a/src/licensedcode/data/rules/public-domain_132.RULE +++ b/src/licensedcode/data/rules/public-domain_132.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Public domain C code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_132.yml b/src/licensedcode/data/rules/public-domain_132.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_132.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_133.RULE b/src/licensedcode/data/rules/public-domain_133.RULE index 1b2e57e779a..8a7ee416188 100644 --- a/src/licensedcode/data/rules/public-domain_133.RULE +++ b/src/licensedcode/data/rules/public-domain_133.RULE @@ -1 +1,7 @@ -Derived from Public domain C code +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +Derived from Public domain C code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_133.yml b/src/licensedcode/data/rules/public-domain_133.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_133.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_134.RULE b/src/licensedcode/data/rules/public-domain_134.RULE index 73865c4fd67..152f6c59612 100644 --- a/src/licensedcode/data/rules/public-domain_134.RULE +++ b/src/licensedcode/data/rules/public-domain_134.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + This file is in the public domain. - This file is generated automatically from the data in the public-domain + This file is generated automatically from the data in the public-domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_134.yml b/src/licensedcode/data/rules/public-domain_134.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_134.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_135.RULE b/src/licensedcode/data/rules/public-domain_135.RULE index 147e03a1901..75df4585ebf 100644 --- a/src/licensedcode/data/rules/public-domain_135.RULE +++ b/src/licensedcode/data/rules/public-domain_135.RULE @@ -1 +1,7 @@ - This file is generated automatically from the data in the public-domain +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + + This file is generated automatically from the data in the public-domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_135.yml b/src/licensedcode/data/rules/public-domain_135.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_135.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_136.RULE b/src/licensedcode/data/rules/public-domain_136.RULE index b7a0fb726b6..3f9c103e5c8 100644 --- a/src/licensedcode/data/rules/public-domain_136.RULE +++ b/src/licensedcode/data/rules/public-domain_136.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + Wildcard matching routine by Karl Heuer. Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_136.yml b/src/licensedcode/data/rules/public-domain_136.yml deleted file mode 100644 index 2583555ca0d..00000000000 --- a/src/licensedcode/data/rules/public-domain_136.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_137.RULE b/src/licensedcode/data/rules/public-domain_137.RULE index 418d119a429..ed16e770eea 100644 --- a/src/licensedcode/data/rules/public-domain_137.RULE +++ b/src/licensedcode/data/rules/public-domain_137.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + The code is translated from the public domain source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_137.yml b/src/licensedcode/data/rules/public-domain_137.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_137.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_138.RULE b/src/licensedcode/data/rules/public-domain_138.RULE index 22e4902639f..17c1932684a 100644 --- a/src/licensedcode/data/rules/public-domain_138.RULE +++ b/src/licensedcode/data/rules/public-domain_138.RULE @@ -1 +1,10 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 80 +notes: this URL does not exists +ignorable_urls: + - https://spdx.org/licenses/PublicDomain.html +--- + https://spdx.org/licenses/PublicDomain.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_138.yml b/src/licensedcode/data/rules/public-domain_138.yml deleted file mode 100644 index 68ff8d011a9..00000000000 --- a/src/licensedcode/data/rules/public-domain_138.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 80 -notes: this URL does not exists -ignorable_urls: - - https://spdx.org/licenses/PublicDomain.html diff --git a/src/licensedcode/data/rules/public-domain_139.RULE b/src/licensedcode/data/rules/public-domain_139.RULE index 4dee361b21f..96b4d6d15df 100644 --- a/src/licensedcode/data/rules/public-domain_139.RULE +++ b/src/licensedcode/data/rules/public-domain_139.RULE @@ -1,2 +1,11 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 80 +notes: this URL does not exists +ignorable_urls: + - https://spdx.org/licenses/PublicDomain.html +--- + Public Domain https://spdx.org/licenses/PublicDomain.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_139.yml b/src/licensedcode/data/rules/public-domain_139.yml deleted file mode 100644 index 68ff8d011a9..00000000000 --- a/src/licensedcode/data/rules/public-domain_139.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 80 -notes: this URL does not exists -ignorable_urls: - - https://spdx.org/licenses/PublicDomain.html diff --git a/src/licensedcode/data/rules/public-domain_14.RULE b/src/licensedcode/data/rules/public-domain_14.RULE index 142f5ed934c..35e767a468d 100644 --- a/src/licensedcode/data/rules/public-domain_14.RULE +++ b/src/licensedcode/data/rules/public-domain_14.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + Modifications to public domain implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_14.yml b/src/licensedcode/data/rules/public-domain_14.yml deleted file mode 100644 index f039da3b206..00000000000 --- a/src/licensedcode/data/rules/public-domain_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_140.RULE b/src/licensedcode/data/rules/public-domain_140.RULE index 172f8e6af27..52d4dcb0c26 100644 --- a/src/licensedcode/data/rules/public-domain_140.RULE +++ b/src/licensedcode/data/rules/public-domain_140.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + Public Domain The person who associated a work with this deed has dedicated the work to the diff --git a/src/licensedcode/data/rules/public-domain_140.yml b/src/licensedcode/data/rules/public-domain_140.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_140.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_141.RULE b/src/licensedcode/data/rules/public-domain_141.RULE index ff7e4be3842..fb085c0fdac 100644 --- a/src/licensedcode/data/rules/public-domain_141.RULE +++ b/src/licensedcode/data/rules/public-domain_141.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Anyone may freely use and distribute the specification, -whether in a private, public or corporate capacity. \ No newline at end of file +whether in a private, public or corporate capacity. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_141.yml b/src/licensedcode/data/rules/public-domain_141.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_141.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_142.RULE b/src/licensedcode/data/rules/public-domain_142.RULE index d91a49db051..b9e7af0abb1 100644 --- a/src/licensedcode/data/rules/public-domain_142.RULE +++ b/src/licensedcode/data/rules/public-domain_142.RULE @@ -1 +1,7 @@ -The author disclaims copyright to this source code. \ No newline at end of file +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +The author disclaims copyright to this source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_142.yml b/src/licensedcode/data/rules/public-domain_142.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_142.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_143.RULE b/src/licensedcode/data/rules/public-domain_143.RULE index a29db1b934e..aa605ca4d84 100644 --- a/src/licensedcode/data/rules/public-domain_143.RULE +++ b/src/licensedcode/data/rules/public-domain_143.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + no copyright is claimed. This code is in the public domain; do with \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_143.yml b/src/licensedcode/data/rules/public-domain_143.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_143.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_144.RULE b/src/licensedcode/data/rules/public-domain_144.RULE index 23ccc393ff2..14e8d1654c9 100644 --- a/src/licensedcode/data/rules/public-domain_144.RULE +++ b/src/licensedcode/data/rules/public-domain_144.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + # Usage rights: # To the extent possible under law, the author has waived all copyright and # related or neighboring rights to this work. This work is published from: diff --git a/src/licensedcode/data/rules/public-domain_144.yml b/src/licensedcode/data/rules/public-domain_144.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_144.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_145.RULE b/src/licensedcode/data/rules/public-domain_145.RULE index 1f8ec6c6737..7d0ee13a1de 100644 --- a/src/licensedcode/data/rules/public-domain_145.RULE +++ b/src/licensedcode/data/rules/public-domain_145.RULE @@ -1 +1,7 @@ -This file is part of , and is free software in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This file is part of , and is free software in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_145.yml b/src/licensedcode/data/rules/public-domain_145.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_145.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_146.RULE b/src/licensedcode/data/rules/public-domain_146.RULE index 05f4b1eb6aa..fdf9ef93a22 100644 --- a/src/licensedcode/data/rules/public-domain_146.RULE +++ b/src/licensedcode/data/rules/public-domain_146.RULE @@ -1 +1,7 @@ -This file is free software in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This file is free software in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_146.yml b/src/licensedcode/data/rules/public-domain_146.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_146.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_147.RULE b/src/licensedcode/data/rules/public-domain_147.RULE index ad9c9ec1d77..f378cc54473 100644 --- a/src/licensedcode/data/rules/public-domain_147.RULE +++ b/src/licensedcode/data/rules/public-domain_147.RULE @@ -1 +1,7 @@ -is free software in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +is free software in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_147.yml b/src/licensedcode/data/rules/public-domain_147.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_147.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_148.RULE b/src/licensedcode/data/rules/public-domain_148.RULE index f131c9dcb38..4cb9636d5b3 100644 --- a/src/licensedcode/data/rules/public-domain_148.RULE +++ b/src/licensedcode/data/rules/public-domain_148.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + project, whose public domain code this functionality has been based on \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_148.yml b/src/licensedcode/data/rules/public-domain_148.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_148.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_149.RULE b/src/licensedcode/data/rules/public-domain_149.RULE index c4d4d0467e7..458d41c0696 100644 --- a/src/licensedcode/data/rules/public-domain_149.RULE +++ b/src/licensedcode/data/rules/public-domain_149.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Those routines are public domain (originally posted to // comp.sys.arm a long time ago), so you can use them freely for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_149.yml b/src/licensedcode/data/rules/public-domain_149.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_149.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_15.RULE b/src/licensedcode/data/rules/public-domain_15.RULE index 570d21376fe..bfc40281da1 100644 --- a/src/licensedcode/data/rules/public-domain_15.RULE +++ b/src/licensedcode/data/rules/public-domain_15.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + RELEASED INTO THE PUBLIC DOMAIN \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_15.yml b/src/licensedcode/data/rules/public-domain_15.yml deleted file mode 100644 index 8e8e0f8c600..00000000000 --- a/src/licensedcode/data/rules/public-domain_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_150.RULE b/src/licensedcode/data/rules/public-domain_150.RULE index c05df46aa21..ddb6ff8be70 100644 --- a/src/licensedcode/data/rules/public-domain_150.RULE +++ b/src/licensedcode/data/rules/public-domain_150.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Those routines are public domain, so you can use them freely for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_150.yml b/src/licensedcode/data/rules/public-domain_150.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_150.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_151.RULE b/src/licensedcode/data/rules/public-domain_151.RULE index ceb417d27e9..5fcd6381ab0 100644 --- a/src/licensedcode/data/rules/public-domain_151.RULE +++ b/src/licensedcode/data/rules/public-domain_151.RULE @@ -1 +1,7 @@ -This configuration is public domain, i.e. not copyrighted. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This configuration is public domain, i.e. not copyrighted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_151.yml b/src/licensedcode/data/rules/public-domain_151.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_151.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_152.RULE b/src/licensedcode/data/rules/public-domain_152.RULE index 82e65ddf541..8c8e4edd755 100644 --- a/src/licensedcode/data/rules/public-domain_152.RULE +++ b/src/licensedcode/data/rules/public-domain_152.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + which is dedicated to the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_152.yml b/src/licensedcode/data/rules/public-domain_152.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_152.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_153.RULE b/src/licensedcode/data/rules/public-domain_153.RULE index 7b4e182d151..48aa96b235a 100644 --- a/src/licensedcode/data/rules/public-domain_153.RULE +++ b/src/licensedcode/data/rules/public-domain_153.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + dedicated to the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_153.yml b/src/licensedcode/data/rules/public-domain_153.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_153.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_154.RULE b/src/licensedcode/data/rules/public-domain_154.RULE index 314e8f1607a..d8259aefd5c 100644 --- a/src/licensedcode/data/rules/public-domain_154.RULE +++ b/src/licensedcode/data/rules/public-domain_154.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: See https://github.com/NationalSecurityAgency/ghidra/ +--- + IP: Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_154.yml b/src/licensedcode/data/rules/public-domain_154.yml deleted file mode 100644 index e5e9e461d33..00000000000 --- a/src/licensedcode/data/rules/public-domain_154.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: See https://github.com/NationalSecurityAgency/ghidra/ diff --git a/src/licensedcode/data/rules/public-domain_155.RULE b/src/licensedcode/data/rules/public-domain_155.RULE index 65173dba7e0..1b325f17be0 100644 --- a/src/licensedcode/data/rules/public-domain_155.RULE +++ b/src/licensedcode/data/rules/public-domain_155.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: See https://github.com/NationalSecurityAgency/ghidra/ +--- + This work (dcp) is free of known copyright restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_155.yml b/src/licensedcode/data/rules/public-domain_155.yml deleted file mode 100644 index e5e9e461d33..00000000000 --- a/src/licensedcode/data/rules/public-domain_155.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: See https://github.com/NationalSecurityAgency/ghidra/ diff --git a/src/licensedcode/data/rules/public-domain_156.RULE b/src/licensedcode/data/rules/public-domain_156.RULE index 1739cff6d4c..734f231c655 100644 --- a/src/licensedcode/data/rules/public-domain_156.RULE +++ b/src/licensedcode/data/rules/public-domain_156.RULE @@ -1 +1,8 @@ -This work is free of known copyright restrictions. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: See https://github.com/NationalSecurityAgency/ghidra/ +--- + +This work is free of known copyright restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_156.yml b/src/licensedcode/data/rules/public-domain_156.yml deleted file mode 100644 index e5e9e461d33..00000000000 --- a/src/licensedcode/data/rules/public-domain_156.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: See https://github.com/NationalSecurityAgency/ghidra/ diff --git a/src/licensedcode/data/rules/public-domain_157.RULE b/src/licensedcode/data/rules/public-domain_157.RULE index 30e3a2da316..704c65028d7 100644 --- a/src/licensedcode/data/rules/public-domain_157.RULE +++ b/src/licensedcode/data/rules/public-domain_157.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LicensedFileList.txt +--- + This module contains one or more files are "public domain". A list of these files is included in the "LicensedFileList.txt" file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_157.yml b/src/licensedcode/data/rules/public-domain_157.yml deleted file mode 100644 index f726d008c84..00000000000 --- a/src/licensedcode/data/rules/public-domain_157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LicensedFileList.txt diff --git a/src/licensedcode/data/rules/public-domain_158.RULE b/src/licensedcode/data/rules/public-domain_158.RULE index 4f572e0b76f..4374cc92f45 100644 --- a/src/licensedcode/data/rules/public-domain_158.RULE +++ b/src/licensedcode/data/rules/public-domain_158.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + can be used, modified and distributed freely without any restrictions (think "public domain", except that by German law the author can't place things into the public domain). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_158.yml b/src/licensedcode/data/rules/public-domain_158.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_158.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_159.RULE b/src/licensedcode/data/rules/public-domain_159.RULE index 3217b12352f..c6f1291c7c7 100644 --- a/src/licensedcode/data/rules/public-domain_159.RULE +++ b/src/licensedcode/data/rules/public-domain_159.RULE @@ -1 +1,7 @@ - * This file has no copyright assigned and is placed in the Public Domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + + * This file has no copyright assigned and is placed in the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_159.yml b/src/licensedcode/data/rules/public-domain_159.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_159.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_16.RULE b/src/licensedcode/data/rules/public-domain_16.RULE index e51903910f8..452c75a8a96 100644 --- a/src/licensedcode/data/rules/public-domain_16.RULE +++ b/src/licensedcode/data/rules/public-domain_16.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + was placed in public domain by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_16.yml b/src/licensedcode/data/rules/public-domain_16.yml deleted file mode 100644 index 2583555ca0d..00000000000 --- a/src/licensedcode/data/rules/public-domain_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_160.RULE b/src/licensedcode/data/rules/public-domain_160.RULE index fd4d7083a9d..05fa0f46a39 100644 --- a/src/licensedcode/data/rules/public-domain_160.RULE +++ b/src/licensedcode/data/rules/public-domain_160.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + released into the public domain. This may be used for any purposes whatsoever without acknowledgment. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_160.yml b/src/licensedcode/data/rules/public-domain_160.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_160.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_161.RULE b/src/licensedcode/data/rules/public-domain_161.RULE index cd8369671f2..76ac99332a5 100644 --- a/src/licensedcode/data/rules/public-domain_161.RULE +++ b/src/licensedcode/data/rules/public-domain_161.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This previously copyrighted work has been placed into the public domain by the author and may be freely -used for any purpose, private or commercial. +used for any purpose, private or commercial. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_161.yml b/src/licensedcode/data/rules/public-domain_161.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_161.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_162.RULE b/src/licensedcode/data/rules/public-domain_162.RULE index a66dc6a9c72..f0ba5af8419 100644 --- a/src/licensedcode/data/rules/public-domain_162.RULE +++ b/src/licensedcode/data/rules/public-domain_162.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + and is in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_162.yml b/src/licensedcode/data/rules/public-domain_162.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_162.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_163.RULE b/src/licensedcode/data/rules/public-domain_163.RULE index 848d354f6b6..78dffc54ab2 100644 --- a/src/licensedcode/data/rules/public-domain_163.RULE +++ b/src/licensedcode/data/rules/public-domain_163.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + * This code was entirely written by - * and is in the public domain. + * and is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_163.yml b/src/licensedcode/data/rules/public-domain_163.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_163.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_164.RULE b/src/licensedcode/data/rules/public-domain_164.RULE index ed8485239fa..7c6054e829d 100644 --- a/src/licensedcode/data/rules/public-domain_164.RULE +++ b/src/licensedcode/data/rules/public-domain_164.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + "Except for a few clearly-marked exceptions, all the material on this site is in the public domain and may be used in any manner without - permission, restriction, attribution, or compensation." + permission, restriction, attribution, or compensation." \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_164.yml b/src/licensedcode/data/rules/public-domain_164.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_164.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_165.RULE b/src/licensedcode/data/rules/public-domain_165.RULE index 3d59ca7e207..87f44eaf2b8 100644 --- a/src/licensedcode/data/rules/public-domain_165.RULE +++ b/src/licensedcode/data/rules/public-domain_165.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 85 +--- + The files may be used freely in any way. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_165.yml b/src/licensedcode/data/rules/public-domain_165.yml deleted file mode 100644 index 71e11d6b465..00000000000 --- a/src/licensedcode/data/rules/public-domain_165.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/public-domain_166.RULE b/src/licensedcode/data/rules/public-domain_166.RULE index f622e88745d..000f692769d 100644 --- a/src/licensedcode/data/rules/public-domain_166.RULE +++ b/src/licensedcode/data/rules/public-domain_166.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 85 +--- + NO COPYRIGHT RIGHTS ARE CLAIMED TO ANY OF THE FILES IN THIS DIRECTORY. To the extent possible under law, the authors have waived all copyright and diff --git a/src/licensedcode/data/rules/public-domain_166.yml b/src/licensedcode/data/rules/public-domain_166.yml deleted file mode 100644 index 71e11d6b465..00000000000 --- a/src/licensedcode/data/rules/public-domain_166.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/public-domain_167.RULE b/src/licensedcode/data/rules/public-domain_167.RULE index 4c347449ef4..5e58c373fa6 100644 --- a/src/licensedcode/data/rules/public-domain_167.RULE +++ b/src/licensedcode/data/rules/public-domain_167.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 85 +--- + NO COPYRIGHT RIGHTS ARE CLAIMED TO ANY OF THE FILES IN THIS DIRECTORY. To the extent possible under law, the authors have waived all copyright and diff --git a/src/licensedcode/data/rules/public-domain_167.yml b/src/licensedcode/data/rules/public-domain_167.yml deleted file mode 100644 index 71e11d6b465..00000000000 --- a/src/licensedcode/data/rules/public-domain_167.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/public-domain_168.RULE b/src/licensedcode/data/rules/public-domain_168.RULE index a3f235c26b2..ca7ab7b1472 100644 --- a/src/licensedcode/data/rules/public-domain_168.RULE +++ b/src/licensedcode/data/rules/public-domain_168.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 85 +--- + To the extent possible under law, the author has waived all copyright and related or neighboring rights to this work. This work is published from: -United States. +United States. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_168.yml b/src/licensedcode/data/rules/public-domain_168.yml deleted file mode 100644 index 71e11d6b465..00000000000 --- a/src/licensedcode/data/rules/public-domain_168.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/public-domain_169.RULE b/src/licensedcode/data/rules/public-domain_169.RULE index d226878bc61..2e61b0d20b4 100644 --- a/src/licensedcode/data/rules/public-domain_169.RULE +++ b/src/licensedcode/data/rules/public-domain_169.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + hereby placed -in the public domain, and therefore does not require a copyright notice. +in the public domain, and therefore does not require a copyright notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_169.yml b/src/licensedcode/data/rules/public-domain_169.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_169.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_17.RULE b/src/licensedcode/data/rules/public-domain_17.RULE index c5c6b835f7d..cda5c9eadf7 100644 --- a/src/licensedcode/data/rules/public-domain_17.RULE +++ b/src/licensedcode/data/rules/public-domain_17.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Text placed in the public domain by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_17.yml b/src/licensedcode/data/rules/public-domain_17.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_170.RULE b/src/licensedcode/data/rules/public-domain_170.RULE index 56b114d5835..0bd1c61b1e9 100644 --- a/src/licensedcode/data/rules/public-domain_170.RULE +++ b/src/licensedcode/data/rules/public-domain_170.RULE @@ -1,7 +1,13 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + % This file is part of the GNU C Library and contains locale data. % The Free Software Foundation does not claim any copyright interest % in the locale data contained in this file. The foregoing does not % affect the license of the GNU C Library as a whole. It does not % exempt you from the conditions of the license if your use would -% otherwise be governed by that license. +% otherwise be governed by that license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_170.yml b/src/licensedcode/data/rules/public-domain_170.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_171.RULE b/src/licensedcode/data/rules/public-domain_171.RULE index 4225bce1cca..f1ee1276715 100644 --- a/src/licensedcode/data/rules/public-domain_171.RULE +++ b/src/licensedcode/data/rules/public-domain_171.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + * Explicitly no copyright. - * You may recompile and redistribute these definitions as required. + * You may recompile and redistribute these definitions as required. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_171.yml b/src/licensedcode/data/rules/public-domain_171.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_171.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_172.RULE b/src/licensedcode/data/rules/public-domain_172.RULE index 9125c24861e..19de9e2a7f0 100644 --- a/src/licensedcode/data/rules/public-domain_172.RULE +++ b/src/licensedcode/data/rules/public-domain_172.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + NO COPYRIGHT RIGHTS ARE CLAIMED TO ANY OF THE FILES IN THIS DIRECTORY. @@ -17,4 +23,4 @@ the work in this directory. ORIGINAL AUTHORS The following people have contributed to the code in this directory. None of the people below claim any rights with regard to the contents of this - directory. + directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_172.yml b/src/licensedcode/data/rules/public-domain_172.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_172.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_173.RULE b/src/licensedcode/data/rules/public-domain_173.RULE index 9cca1587073..ed75e093dca 100644 --- a/src/licensedcode/data/rules/public-domain_173.RULE +++ b/src/licensedcode/data/rules/public-domain_173.RULE @@ -1 +1,7 @@ -available as a public domain \ No newline at end of file +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +available as a public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_173.yml b/src/licensedcode/data/rules/public-domain_173.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_173.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_174.RULE b/src/licensedcode/data/rules/public-domain_174.RULE index f60ec00d4a4..79d808e09ec 100644 --- a/src/licensedcode/data/rules/public-domain_174.RULE +++ b/src/licensedcode/data/rules/public-domain_174.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This class is based on code by -and available as a public domain at \ No newline at end of file +and available as a public domain at \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_174.yml b/src/licensedcode/data/rules/public-domain_174.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_174.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_175.RULE b/src/licensedcode/data/rules/public-domain_175.RULE index af15f0ce0da..11b10f32387 100644 --- a/src/licensedcode/data/rules/public-domain_175.RULE +++ b/src/licensedcode/data/rules/public-domain_175.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Changes contributed by are in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_175.yml b/src/licensedcode/data/rules/public-domain_175.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_175.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_176.RULE b/src/licensedcode/data/rules/public-domain_176.RULE index 77d23806c17..0ed72caf0ba 100644 --- a/src/licensedcode/data/rules/public-domain_176.RULE +++ b/src/licensedcode/data/rules/public-domain_176.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 80 +--- + Copyright DISCLAIMED \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_176.yml b/src/licensedcode/data/rules/public-domain_176.yml deleted file mode 100644 index 5be50b0156f..00000000000 --- a/src/licensedcode/data/rules/public-domain_176.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/public-domain_177.RULE b/src/licensedcode/data/rules/public-domain_177.RULE index d35c717f507..35e0b818221 100644 --- a/src/licensedcode/data/rules/public-domain_177.RULE +++ b/src/licensedcode/data/rules/public-domain_177.RULE @@ -1 +1,7 @@ -; This code is in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +; This code is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_177.yml b/src/licensedcode/data/rules/public-domain_177.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_177.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_178.RULE b/src/licensedcode/data/rules/public-domain_178.RULE index 9b813e515c8..ded8158aa79 100644 --- a/src/licensedcode/data/rules/public-domain_178.RULE +++ b/src/licensedcode/data/rules/public-domain_178.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + # I place the rest in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_178.yml b/src/licensedcode/data/rules/public-domain_178.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_178.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_179.RULE b/src/licensedcode/data/rules/public-domain_179.RULE index 04303202afe..13880c49f67 100644 --- a/src/licensedcode/data/rules/public-domain_179.RULE +++ b/src/licensedcode/data/rules/public-domain_179.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + I, , hereby affirm that I have placed the software package in the public domain. diff --git a/src/licensedcode/data/rules/public-domain_179.yml b/src/licensedcode/data/rules/public-domain_179.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_179.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_17_1.RULE b/src/licensedcode/data/rules/public-domain_17_1.RULE index 34da603dfdf..038683e11f7 100644 --- a/src/licensedcode/data/rules/public-domain_17_1.RULE +++ b/src/licensedcode/data/rules/public-domain_17_1.RULE @@ -1,3 +1,8 @@ -Text placed in the public domain by -This work may be freely copied and distributed worldwide. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- +Text placed in the public domain by +This work may be freely copied and distributed worldwide. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_17_1.yml b/src/licensedcode/data/rules/public-domain_17_1.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_17_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_18.RULE b/src/licensedcode/data/rules/public-domain_18.RULE index 13e066bac59..17d60f234e3 100644 --- a/src/licensedcode/data/rules/public-domain_18.RULE +++ b/src/licensedcode/data/rules/public-domain_18.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + The author disclaims all copyright. The library is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_18.yml b/src/licensedcode/data/rules/public-domain_18.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_180.RULE b/src/licensedcode/data/rules/public-domain_180.RULE index b6f822a05b7..f847e466fd9 100644 --- a/src/licensedcode/data/rules/public-domain_180.RULE +++ b/src/licensedcode/data/rules/public-domain_180.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 80 +--- + Put in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_180.yml b/src/licensedcode/data/rules/public-domain_180.yml deleted file mode 100644 index b311065ead0..00000000000 --- a/src/licensedcode/data/rules/public-domain_180.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/public-domain_181.RULE b/src/licensedcode/data/rules/public-domain_181.RULE index 6df41e63378..08a8b0840b6 100644 --- a/src/licensedcode/data/rules/public-domain_181.RULE +++ b/src/licensedcode/data/rules/public-domain_181.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Placed in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_181.yml b/src/licensedcode/data/rules/public-domain_181.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_181.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_182.RULE b/src/licensedcode/data/rules/public-domain_182.RULE index 169b3f85b44..8f6171eb4c2 100644 --- a/src/licensedcode/data/rules/public-domain_182.RULE +++ b/src/licensedcode/data/rules/public-domain_182.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/public_domain +--- + Some contributors additionally release their contributions to the public domain. http://en.wikipedia.org/wiki/public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_182.yml b/src/licensedcode/data/rules/public-domain_182.yml deleted file mode 100644 index ebdf75486ac..00000000000 --- a/src/licensedcode/data/rules/public-domain_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/public_domain diff --git a/src/licensedcode/data/rules/public-domain_183.RULE b/src/licensedcode/data/rules/public-domain_183.RULE index c87ed94bdac..3dc109e0b4d 100644 --- a/src/licensedcode/data/rules/public-domain_183.RULE +++ b/src/licensedcode/data/rules/public-domain_183.RULE @@ -1 +1,7 @@ -Some contributors additionally release their contributions to the public domain. \ No newline at end of file +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +Some contributors additionally release their contributions to the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_183.yml b/src/licensedcode/data/rules/public-domain_183.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_183.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_184.RULE b/src/licensedcode/data/rules/public-domain_184.RULE index 1dae7c69305..19ec7e287c6 100644 --- a/src/licensedcode/data/rules/public-domain_184.RULE +++ b/src/licensedcode/data/rules/public-domain_184.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/public_domain +--- + http://en.wikipedia.org/wiki/public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_184.yml b/src/licensedcode/data/rules/public-domain_184.yml deleted file mode 100644 index ba22e29787e..00000000000 --- a/src/licensedcode/data/rules/public-domain_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/public_domain diff --git a/src/licensedcode/data/rules/public-domain_185.RULE b/src/licensedcode/data/rules/public-domain_185.RULE index c5695b1d1e0..54a8a2b2432 100644 --- a/src/licensedcode/data/rules/public-domain_185.RULE +++ b/src/licensedcode/data/rules/public-domain_185.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/public_domain +--- + https://en.wikipedia.org/wiki/public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_185.yml b/src/licensedcode/data/rules/public-domain_185.yml deleted file mode 100644 index 396b5762a72..00000000000 --- a/src/licensedcode/data/rules/public-domain_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/public_domain diff --git a/src/licensedcode/data/rules/public-domain_186.RULE b/src/licensedcode/data/rules/public-domain_186.RULE index 40973980870..26133e9fa86 100644 --- a/src/licensedcode/data/rules/public-domain_186.RULE +++ b/src/licensedcode/data/rules/public-domain_186.RULE @@ -1 +1,7 @@ - This module has been placed in the public domain. \ No newline at end of file +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + + This module has been placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_186.yml b/src/licensedcode/data/rules/public-domain_186.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_186.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_187.RULE b/src/licensedcode/data/rules/public-domain_187.RULE index c1eb3e4797d..c5962c0af52 100644 --- a/src/licensedcode/data/rules/public-domain_187.RULE +++ b/src/licensedcode/data/rules/public-domain_187.RULE @@ -1,5 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + and placed in the public domain. / This file has been modified from its original version. -// It has been formatted to fit your screen +// It has been formatted to fit your screen \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_187.yml b/src/licensedcode/data/rules/public-domain_187.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_187.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_188.RULE b/src/licensedcode/data/rules/public-domain_188.RULE index a820cb57905..f1c06b0ccc6 100644 --- a/src/licensedcode/data/rules/public-domain_188.RULE +++ b/src/licensedcode/data/rules/public-domain_188.RULE @@ -1 +1,7 @@ - This example code is in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + + This example code is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_188.yml b/src/licensedcode/data/rules/public-domain_188.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_188.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_189.RULE b/src/licensedcode/data/rules/public-domain_189.RULE index 88f34cdc770..ca5bed7756e 100644 --- a/src/licensedcode/data/rules/public-domain_189.RULE +++ b/src/licensedcode/data/rules/public-domain_189.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + files generated by this program are not covered by this license, and are in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_189.yml b/src/licensedcode/data/rules/public-domain_189.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_189.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_19.RULE b/src/licensedcode/data/rules/public-domain_19.RULE index 68df01ac60f..045a206ff25 100644 --- a/src/licensedcode/data/rules/public-domain_19.RULE +++ b/src/licensedcode/data/rules/public-domain_19.RULE @@ -1,3 +1,13 @@ +--- +license_expression: public-domain +is_license_text: yes +minimum_coverage: 90 +notes: Public domain, gnu chess +ignorable_emails: + - cracraft@earthlink.net + - simon@wretched.demon.co.uk +--- + This opening book is in the public domain. It was put together and cleaned up by Stuart Cracraft and Simon Waters . Stuart wrote the following in @@ -14,4 +24,4 @@ email, when asked about copyright. --Stuart Note that all the code is in gnuchess, so this package itself is -purely public domain. +purely public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_19.yml b/src/licensedcode/data/rules/public-domain_19.yml deleted file mode 100644 index 661091235c1..00000000000 --- a/src/licensedcode/data/rules/public-domain_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain -is_license_text: yes -minimum_coverage: 90 -notes: Public domain, gnu chess -ignorable_emails: - - cracraft@earthlink.net - - simon@wretched.demon.co.uk diff --git a/src/licensedcode/data/rules/public-domain_190.RULE b/src/licensedcode/data/rules/public-domain_190.RULE index 1c783e03f6e..5392d3e07f4 100644 --- a/src/licensedcode/data/rules/public-domain_190.RULE +++ b/src/licensedcode/data/rules/public-domain_190.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + are in the public domain according to the readme in the project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_190.yml b/src/licensedcode/data/rules/public-domain_190.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_190.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_191.RULE b/src/licensedcode/data/rules/public-domain_191.RULE index 2d2e9999bfc..ad8f8713ba7 100644 --- a/src/licensedcode/data/rules/public-domain_191.RULE +++ b/src/licensedcode/data/rules/public-domain_191.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is in the public domain. You can run it, copy it, change it, sell it, eat it, or claim you wrote it; I don't care. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_191.yml b/src/licensedcode/data/rules/public-domain_191.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_191.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_192.RULE b/src/licensedcode/data/rules/public-domain_192.RULE index b106a4e2771..a466276ca62 100644 --- a/src/licensedcode/data/rules/public-domain_192.RULE +++ b/src/licensedcode/data/rules/public-domain_192.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + C THIS SOFTWARE IS IN THE PUBLIC DOMAIN C NO RESTRICTIONS ON ITS USE ARE IMPLIED \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_192.yml b/src/licensedcode/data/rules/public-domain_192.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_192.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_193.RULE b/src/licensedcode/data/rules/public-domain_193.RULE index 84a86045d22..824b7ef4a78 100644 --- a/src/licensedcode/data/rules/public-domain_193.RULE +++ b/src/licensedcode/data/rules/public-domain_193.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + THIS SOFTWARE IS IN THE PUBLIC DOMAIN NO RESTRICTIONS ON ITS USE ARE IMPLIED \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_193.yml b/src/licensedcode/data/rules/public-domain_193.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_193.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_194.RULE b/src/licensedcode/data/rules/public-domain_194.RULE index c3857277a3b..a6ffffbd53b 100644 --- a/src/licensedcode/data/rules/public-domain_194.RULE +++ b/src/licensedcode/data/rules/public-domain_194.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + SQLite Copyright The original author of SQLite has dedicated the code to the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commerical or non-commerical, and by any means. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_194.yml b/src/licensedcode/data/rules/public-domain_194.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_194.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_195.RULE b/src/licensedcode/data/rules/public-domain_195.RULE index 34243574cd7..83ec451c1ec 100644 --- a/src/licensedcode/data/rules/public-domain_195.RULE +++ b/src/licensedcode/data/rules/public-domain_195.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + SQLite Copyright The original author of SQLite has dedicated the code to the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commerical or non-commerical, and by any means. diff --git a/src/licensedcode/data/rules/public-domain_195.yml b/src/licensedcode/data/rules/public-domain_195.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_195.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_196.RULE b/src/licensedcode/data/rules/public-domain_196.RULE index 2911d8307b6..14fd5af1db7 100644 --- a/src/licensedcode/data/rules/public-domain_196.RULE +++ b/src/licensedcode/data/rules/public-domain_196.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + released to public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_196.yml b/src/licensedcode/data/rules/public-domain_196.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_196.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_197.RULE b/src/licensedcode/data/rules/public-domain_197.RULE index b3201a81d1f..0535c681ce4 100644 --- a/src/licensedcode/data/rules/public-domain_197.RULE +++ b/src/licensedcode/data/rules/public-domain_197.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + // which has been released to public domain by The MathWorks and the // National Institute of Standards and Technology (NIST). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_197.yml b/src/licensedcode/data/rules/public-domain_197.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_197.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_198.RULE b/src/licensedcode/data/rules/public-domain_198.RULE index f3306daf9b2..bc60f62a6ca 100644 --- a/src/licensedcode/data/rules/public-domain_198.RULE +++ b/src/licensedcode/data/rules/public-domain_198.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + To the extent possible under law, the author has waived all copyright and related or neighboring rights to this work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_198.yml b/src/licensedcode/data/rules/public-domain_198.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_198.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_199.RULE b/src/licensedcode/data/rules/public-domain_199.RULE index 1ed5016d895..81e4cd1ac35 100644 --- a/src/licensedcode/data/rules/public-domain_199.RULE +++ b/src/licensedcode/data/rules/public-domain_199.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/Public_domain +--- + Public Domain (PD) link: http://en.wikipedia.org/wiki/Public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_199.yml b/src/licensedcode/data/rules/public-domain_199.yml deleted file mode 100644 index c93ae7b27f3..00000000000 --- a/src/licensedcode/data/rules/public-domain_199.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/Public_domain diff --git a/src/licensedcode/data/rules/public-domain_2.RULE b/src/licensedcode/data/rules/public-domain_2.RULE index 1231795b515..92c64133c69 100644 --- a/src/licensedcode/data/rules/public-domain_2.RULE +++ b/src/licensedcode/data/rules/public-domain_2.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 90 +ignorable_urls: + - http://www.sqlite.org/copyright.html +--- + http://www.sqlite.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_2.yml b/src/licensedcode/data/rules/public-domain_2.yml deleted file mode 100644 index d25b25dc8e2..00000000000 --- a/src/licensedcode/data/rules/public-domain_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 90 -ignorable_urls: - - http://www.sqlite.org/copyright.html diff --git a/src/licensedcode/data/rules/public-domain_20.RULE b/src/licensedcode/data/rules/public-domain_20.RULE index 314f7e8fb18..db9f0866e20 100644 --- a/src/licensedcode/data/rules/public-domain_20.RULE +++ b/src/licensedcode/data/rules/public-domain_20.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + License: PD - was placed in public domain + was placed in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_20.yml b/src/licensedcode/data/rules/public-domain_20.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_200.RULE b/src/licensedcode/data/rules/public-domain_200.RULE index 458400a70f9..d9382eff6d7 100644 --- a/src/licensedcode/data/rules/public-domain_200.RULE +++ b/src/licensedcode/data/rules/public-domain_200.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/Public_domain +--- + license: Public Domain license link: http://en.wikipedia.org/wiki/Public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_200.yml b/src/licensedcode/data/rules/public-domain_200.yml deleted file mode 100644 index c93ae7b27f3..00000000000 --- a/src/licensedcode/data/rules/public-domain_200.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/Public_domain diff --git a/src/licensedcode/data/rules/public-domain_201.RULE b/src/licensedcode/data/rules/public-domain_201.RULE index 977dafa35fb..699b23cfd68 100644 --- a/src/licensedcode/data/rules/public-domain_201.RULE +++ b/src/licensedcode/data/rules/public-domain_201.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://en.wikipedia.org/wiki/Public_domain +--- + license: PD License link: http://en.wikipedia.org/wiki/Public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_201.yml b/src/licensedcode/data/rules/public-domain_201.yml deleted file mode 100644 index c93ae7b27f3..00000000000 --- a/src/licensedcode/data/rules/public-domain_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://en.wikipedia.org/wiki/Public_domain diff --git a/src/licensedcode/data/rules/public-domain_202.RULE b/src/licensedcode/data/rules/public-domain_202.RULE index 4a562827637..e59505c89d2 100644 --- a/src/licensedcode/data/rules/public-domain_202.RULE +++ b/src/licensedcode/data/rules/public-domain_202.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + All the codes are under public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_202.yml b/src/licensedcode/data/rules/public-domain_202.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_202.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_203.RULE b/src/licensedcode/data/rules/public-domain_203.RULE index ea8eb6d1a3a..9b8c7b463a0 100644 --- a/src/licensedcode/data/rules/public-domain_203.RULE +++ b/src/licensedcode/data/rules/public-domain_203.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + all its code is hereby released into the public domain. The `_version.py` that it creates is also in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_203.yml b/src/licensedcode/data/rules/public-domain_203.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_203.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_204.RULE b/src/licensedcode/data/rules/public-domain_204.RULE index 6c20153cc25..da9c5ce420a 100644 --- a/src/licensedcode/data/rules/public-domain_204.RULE +++ b/src/licensedcode/data/rules/public-domain_204.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + All code examples in this work are placed into the public domain, and may be used, modified and redistributed without restriction. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_204.yml b/src/licensedcode/data/rules/public-domain_204.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_204.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_205.RULE b/src/licensedcode/data/rules/public-domain_205.RULE index 48a95714f96..d9fec8e67c4 100644 --- a/src/licensedcode/data/rules/public-domain_205.RULE +++ b/src/licensedcode/data/rules/public-domain_205.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + released into public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_205.yml b/src/licensedcode/data/rules/public-domain_205.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_205.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_206.RULE b/src/licensedcode/data/rules/public-domain_206.RULE index 70b4e5efcf0..4414ff29dfb 100644 --- a/src/licensedcode/data/rules/public-domain_206.RULE +++ b/src/licensedcode/data/rules/public-domain_206.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + No copyright is claimed by the distributors of netqmail for changes from qmail 1.03 to netqmail 1.04. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_206.yml b/src/licensedcode/data/rules/public-domain_206.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_206.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_207.RULE b/src/licensedcode/data/rules/public-domain_207.RULE index 899a52d7f40..7b89a89d83e 100644 --- a/src/licensedcode/data/rules/public-domain_207.RULE +++ b/src/licensedcode/data/rules/public-domain_207.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 95 +--- + dedication of qmail to the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_207.yml b/src/licensedcode/data/rules/public-domain_207.yml deleted file mode 100644 index b97089324d9..00000000000 --- a/src/licensedcode/data/rules/public-domain_207.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_208.RULE b/src/licensedcode/data/rules/public-domain_208.RULE index f497e33d3fb..adedbc32325 100644 --- a/src/licensedcode/data/rules/public-domain_208.RULE +++ b/src/licensedcode/data/rules/public-domain_208.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 95 +--- + No copyright is claimed by the distributors of notqmail for changes from netqmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_208.yml b/src/licensedcode/data/rules/public-domain_208.yml deleted file mode 100644 index 3426ec1f1df..00000000000 --- a/src/licensedcode/data/rules/public-domain_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_209.RULE b/src/licensedcode/data/rules/public-domain_209.RULE index a28cc63d3e2..f509f3d5b1c 100644 --- a/src/licensedcode/data/rules/public-domain_209.RULE +++ b/src/licensedcode/data/rules/public-domain_209.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + I hereby place the qmail package (in particular, qmail-1.03.tar.gz, with MD5 checksum 622f65f982e380dbe86e6574f3abcb7c) into the public domain. You are free to modify the package, distribute modified versions, etc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_209.yml b/src/licensedcode/data/rules/public-domain_209.yml deleted file mode 100644 index c26167ee8c0..00000000000 --- a/src/licensedcode/data/rules/public-domain_209.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/public-domain_21.RULE b/src/licensedcode/data/rules/public-domain_21.RULE index 553ca92cf05..f92e7dd25cc 100644 --- a/src/licensedcode/data/rules/public-domain_21.RULE +++ b/src/licensedcode/data/rules/public-domain_21.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +--- + released to the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_21.yml b/src/licensedcode/data/rules/public-domain_21.yml deleted file mode 100644 index 92d6c204569..00000000000 --- a/src/licensedcode/data/rules/public-domain_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 99 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_210.RULE b/src/licensedcode/data/rules/public-domain_210.RULE index 49bc6b62943..a912f93ca81 100644 --- a/src/licensedcode/data/rules/public-domain_210.RULE +++ b/src/licensedcode/data/rules/public-domain_210.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + I hereby place the qmail package into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_210.yml b/src/licensedcode/data/rules/public-domain_210.yml deleted file mode 100644 index c26167ee8c0..00000000000 --- a/src/licensedcode/data/rules/public-domain_210.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/public-domain_211.RULE b/src/licensedcode/data/rules/public-domain_211.RULE index cfb9e1f0976..e1ee3cfac92 100644 --- a/src/licensedcode/data/rules/public-domain_211.RULE +++ b/src/licensedcode/data/rules/public-domain_211.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + I hereby place the qmail package (in particular, qmail-1.03.tar.gz, with MD5 checksum 622f65f982e380dbe86e6574f3abcb7c) into the public domain. You are free to modify the package, distribute modified versions, etc. This does not mean that modifications are encouraged! Please take time to ensure that your distribution of qmail supports exactly the same interface as everyone else's. In particular, if you move files, please set up symbolic links from the original locations, so that you don't frivolously break scripts that work everywhere else. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_211.yml b/src/licensedcode/data/rules/public-domain_211.yml deleted file mode 100644 index c26167ee8c0..00000000000 --- a/src/licensedcode/data/rules/public-domain_211.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/public-domain_212.RULE b/src/licensedcode/data/rules/public-domain_212.RULE index f15f0da1763..99578b0c20a 100644 --- a/src/licensedcode/data/rules/public-domain_212.RULE +++ b/src/licensedcode/data/rules/public-domain_212.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + and are public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_212.yml b/src/licensedcode/data/rules/public-domain_212.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_213.RULE b/src/licensedcode/data/rules/public-domain_213.RULE index 4451d0a498b..05d11554730 100644 --- a/src/licensedcode/data/rules/public-domain_213.RULE +++ b/src/licensedcode/data/rules/public-domain_213.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain MD4 implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_213.yml b/src/licensedcode/data/rules/public-domain_213.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_214.RULE b/src/licensedcode/data/rules/public-domain_214.RULE index 562582ed764..36ef625e31a 100644 --- a/src/licensedcode/data/rules/public-domain_214.RULE +++ b/src/licensedcode/data/rules/public-domain_214.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain MD5 implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_214.yml b/src/licensedcode/data/rules/public-domain_214.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_215.RULE b/src/licensedcode/data/rules/public-domain_215.RULE index a8a45f8b006..5f29bee8125 100644 --- a/src/licensedcode/data/rules/public-domain_215.RULE +++ b/src/licensedcode/data/rules/public-domain_215.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain sha1 implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_215.yml b/src/licensedcode/data/rules/public-domain_215.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_216.RULE b/src/licensedcode/data/rules/public-domain_216.RULE index 16ea8d0f6b7..a58e1ad6d7b 100644 --- a/src/licensedcode/data/rules/public-domain_216.RULE +++ b/src/licensedcode/data/rules/public-domain_216.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain sha256 implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_216.yml b/src/licensedcode/data/rules/public-domain_216.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_217.RULE b/src/licensedcode/data/rules/public-domain_217.RULE index f8d7ddcdf8e..555d4dcae06 100644 --- a/src/licensedcode/data/rules/public-domain_217.RULE +++ b/src/licensedcode/data/rules/public-domain_217.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://web.resource.org/cc/PublicDomain +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_217.yml b/src/licensedcode/data/rules/public-domain_217.yml deleted file mode 100644 index 54e134d14bb..00000000000 --- a/src/licensedcode/data/rules/public-domain_217.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://web.resource.org/cc/PublicDomain diff --git a/src/licensedcode/data/rules/public-domain_218.RULE b/src/licensedcode/data/rules/public-domain_218.RULE index 49c9d53c0aa..a74c3e69c5c 100644 --- a/src/licensedcode/data/rules/public-domain_218.RULE +++ b/src/licensedcode/data/rules/public-domain_218.RULE @@ -1 +1,9 @@ +--- +license_expression: cc-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://web.resource.org/cc/PublicDomain +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_218.yml b/src/licensedcode/data/rules/public-domain_218.yml deleted file mode 100644 index 54e134d14bb..00000000000 --- a/src/licensedcode/data/rules/public-domain_218.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cc-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://web.resource.org/cc/PublicDomain diff --git a/src/licensedcode/data/rules/public-domain_219.RULE b/src/licensedcode/data/rules/public-domain_219.RULE index c05736c1ee4..c3d000d76e6 100644 --- a/src/licensedcode/data/rules/public-domain_219.RULE +++ b/src/licensedcode/data/rules/public-domain_219.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Not copyrighted -- provided to the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_219.yml b/src/licensedcode/data/rules/public-domain_219.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_219.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_22.RULE b/src/licensedcode/data/rules/public-domain_22.RULE index 0076737fd3f..c2554771365 100644 --- a/src/licensedcode/data/rules/public-domain_22.RULE +++ b/src/licensedcode/data/rules/public-domain_22.RULE @@ -1 +1,8 @@ -This file is in the public domain and may be used for any purpose +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + +This file is in the public domain and may be used for any purpose \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_22.yml b/src/licensedcode/data/rules/public-domain_22.yml deleted file mode 100644 index 8e8e0f8c600..00000000000 --- a/src/licensedcode/data/rules/public-domain_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_220.RULE b/src/licensedcode/data/rules/public-domain_220.RULE index 1ba18ac574c..4f7dae29611 100644 --- a/src/licensedcode/data/rules/public-domain_220.RULE +++ b/src/licensedcode/data/rules/public-domain_220.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + This library was released in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_220.yml b/src/licensedcode/data/rules/public-domain_220.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_220.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_221.RULE b/src/licensedcode/data/rules/public-domain_221.RULE index 5ae0865833d..1f1a7c61da8 100644 --- a/src/licensedcode/data/rules/public-domain_221.RULE +++ b/src/licensedcode/data/rules/public-domain_221.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.sqlite.org/copyright.html +--- + This product bundles Sqlite, which is in the Public Domain. For details see: https://www.sqlite.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_221.yml b/src/licensedcode/data/rules/public-domain_221.yml deleted file mode 100644 index 06d196810a4..00000000000 --- a/src/licensedcode/data/rules/public-domain_221.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.sqlite.org/copyright.html diff --git a/src/licensedcode/data/rules/public-domain_222.RULE b/src/licensedcode/data/rules/public-domain_222.RULE index 7b153260c78..8f4e3ec4ccd 100644 --- a/src/licensedcode/data/rules/public-domain_222.RULE +++ b/src/licensedcode/data/rules/public-domain_222.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + which is in the Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_222.yml b/src/licensedcode/data/rules/public-domain_222.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_223.RULE b/src/licensedcode/data/rules/public-domain_223.RULE index f152561a851..99f1fb28fae 100644 --- a/src/licensedcode/data/rules/public-domain_223.RULE +++ b/src/licensedcode/data/rules/public-domain_223.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + This product bundles Sqlite, which is in the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_223.yml b/src/licensedcode/data/rules/public-domain_223.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_224.RULE b/src/licensedcode/data/rules/public-domain_224.RULE index 318e03d8763..2f410e5bd62 100644 --- a/src/licensedcode/data/rules/public-domain_224.RULE +++ b/src/licensedcode/data/rules/public-domain_224.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.sqlite.org/copyright.html +--- + https://www.sqlite.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_224.yml b/src/licensedcode/data/rules/public-domain_224.yml deleted file mode 100644 index 06d196810a4..00000000000 --- a/src/licensedcode/data/rules/public-domain_224.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.sqlite.org/copyright.html diff --git a/src/licensedcode/data/rules/public-domain_225.RULE b/src/licensedcode/data/rules/public-domain_225.RULE index f0291a52b40..c82f46d1696 100644 --- a/src/licensedcode/data/rules/public-domain_225.RULE +++ b/src/licensedcode/data/rules/public-domain_225.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + It is public domain/free. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_225.yml b/src/licensedcode/data/rules/public-domain_225.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_225.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_226.RULE b/src/licensedcode/data/rules/public-domain_226.RULE index ba8a0adc34b..f1a4f8c7113 100644 --- a/src/licensedcode/data/rules/public-domain_226.RULE +++ b/src/licensedcode/data/rules/public-domain_226.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + committed to the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_226.yml b/src/licensedcode/data/rules/public-domain_226.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_227.RULE b/src/licensedcode/data/rules/public-domain_227.RULE index 4967f4ba189..22fe383abb7 100644 --- a/src/licensedcode/data/rules/public-domain_227.RULE +++ b/src/licensedcode/data/rules/public-domain_227.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This library is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_227.yml b/src/licensedcode/data/rules/public-domain_227.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_227.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_228.RULE b/src/licensedcode/data/rules/public-domain_228.RULE index 1c2cf531f27..82dc229d82e 100644 --- a/src/licensedcode/data/rules/public-domain_228.RULE +++ b/src/licensedcode/data/rules/public-domain_228.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 99 +--- + reference models are released for unrestricted use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_228.yml b/src/licensedcode/data/rules/public-domain_228.yml deleted file mode 100644 index e0822429286..00000000000 --- a/src/licensedcode/data/rules/public-domain_228.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/public-domain_229.RULE b/src/licensedcode/data/rules/public-domain_229.RULE index e33e3eb10ef..6cc84489f45 100644 --- a/src/licensedcode/data/rules/public-domain_229.RULE +++ b/src/licensedcode/data/rules/public-domain_229.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This software is hereby explicitly placed in the public domain. It may be used for any purpose on any machine by anyone. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_229.yml b/src/licensedcode/data/rules/public-domain_229.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_23.RULE b/src/licensedcode/data/rules/public-domain_23.RULE index 9751e1db536..07002b2b868 100644 --- a/src/licensedcode/data/rules/public-domain_23.RULE +++ b/src/licensedcode/data/rules/public-domain_23.RULE @@ -1 +1,6 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + ICU uses the public domain data and code derived from Time Zone Database for its time zone support. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_23.yml b/src/licensedcode/data/rules/public-domain_23.yml deleted file mode 100644 index fd1246dff29..00000000000 --- a/src/licensedcode/data/rules/public-domain_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_230.RULE b/src/licensedcode/data/rules/public-domain_230.RULE index c8153486576..672786d5b84 100644 --- a/src/licensedcode/data/rules/public-domain_230.RULE +++ b/src/licensedcode/data/rules/public-domain_230.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This software is hereby explicitly placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_230.yml b/src/licensedcode/data/rules/public-domain_230.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_231.RULE b/src/licensedcode/data/rules/public-domain_231.RULE index 225610462bb..8e2d821ec88 100644 --- a/src/licensedcode/data/rules/public-domain_231.RULE +++ b/src/licensedcode/data/rules/public-domain_231.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + This is a version of the public domain getopt implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_231.yml b/src/licensedcode/data/rules/public-domain_231.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_232.RULE b/src/licensedcode/data/rules/public-domain_232.RULE index 567b2d8d2c4..4eac986dbdb 100644 --- a/src/licensedcode/data/rules/public-domain_232.RULE +++ b/src/licensedcode/data/rules/public-domain_232.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is explicitly placed into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_232.yml b/src/licensedcode/data/rules/public-domain_232.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_232.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_233.RULE b/src/licensedcode/data/rules/public-domain_233.RULE index 30ec2030c22..4e48d71d6f7 100644 --- a/src/licensedcode/data/rules/public-domain_233.RULE +++ b/src/licensedcode/data/rules/public-domain_233.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is explicitly placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_233.yml b/src/licensedcode/data/rules/public-domain_233.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_233.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_234.RULE b/src/licensedcode/data/rules/public-domain_234.RULE index 9ce10cc6ac5..9879f2e0eed 100644 --- a/src/licensedcode/data/rules/public-domain_234.RULE +++ b/src/licensedcode/data/rules/public-domain_234.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_234.yml b/src/licensedcode/data/rules/public-domain_234.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_234.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_235.RULE b/src/licensedcode/data/rules/public-domain_235.RULE index 3d1cd90374e..f43afa701df 100644 --- a/src/licensedcode/data/rules/public-domain_235.RULE +++ b/src/licensedcode/data/rules/public-domain_235.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_235.yml b/src/licensedcode/data/rules/public-domain_235.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_235.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_236.RULE b/src/licensedcode/data/rules/public-domain_236.RULE index 2f7d46f6abe..997be60c141 100644 --- a/src/licensedcode/data/rules/public-domain_236.RULE +++ b/src/licensedcode/data/rules/public-domain_236.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain by the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_236.yml b/src/licensedcode/data/rules/public-domain_236.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_236.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_237.RULE b/src/licensedcode/data/rules/public-domain_237.RULE index dbde39df7bc..c9b7b22fb02 100644 --- a/src/licensedcode/data/rules/public-domain_237.RULE +++ b/src/licensedcode/data/rules/public-domain_237.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + License: This code is placed in the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_237.yml b/src/licensedcode/data/rules/public-domain_237.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_237.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_238.RULE b/src/licensedcode/data/rules/public-domain_238.RULE index 5337631c9ee..dbc429c2145 100644 --- a/src/licensedcode/data/rules/public-domain_238.RULE +++ b/src/licensedcode/data/rules/public-domain_238.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain, and support is not (in general) available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_238.yml b/src/licensedcode/data/rules/public-domain_238.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_239.RULE b/src/licensedcode/data/rules/public-domain_239.RULE index 4f3cfdf47ed..cc43d7ec97c 100644 --- a/src/licensedcode/data/rules/public-domain_239.RULE +++ b/src/licensedcode/data/rules/public-domain_239.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed into the public domain by its author \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_239.yml b/src/licensedcode/data/rules/public-domain_239.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_24.RULE b/src/licensedcode/data/rules/public-domain_24.RULE index 47a5ab47604..f17d535fa3b 100644 --- a/src/licensedcode/data/rules/public-domain_24.RULE +++ b/src/licensedcode/data/rules/public-domain_24.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + uses the public domain data and code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_24.yml b/src/licensedcode/data/rules/public-domain_24.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_240.RULE b/src/licensedcode/data/rules/public-domain_240.RULE index 1e15ecbf3bb..d2c14c77317 100644 --- a/src/licensedcode/data/rules/public-domain_240.RULE +++ b/src/licensedcode/data/rules/public-domain_240.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed into the public domain by its author. *; All copyright rights are hereby relinquished on the code and data in *; this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_240.yml b/src/licensedcode/data/rules/public-domain_240.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_241.RULE b/src/licensedcode/data/rules/public-domain_241.RULE index 5e152859959..1d1e377dd4a 100644 --- a/src/licensedcode/data/rules/public-domain_241.RULE +++ b/src/licensedcode/data/rules/public-domain_241.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain, feel free to use it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_241.yml b/src/licensedcode/data/rules/public-domain_241.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_242.RULE b/src/licensedcode/data/rules/public-domain_242.RULE index 21e327f0d28..600a3533e8f 100644 --- a/src/licensedcode/data/rules/public-domain_242.RULE +++ b/src/licensedcode/data/rules/public-domain_242.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed into the public domain for all to do with as they * wish \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_242.yml b/src/licensedcode/data/rules/public-domain_242.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_243.RULE b/src/licensedcode/data/rules/public-domain_243.RULE index fec7cca888f..7b90d9f831a 100644 --- a/src/licensedcode/data/rules/public-domain_243.RULE +++ b/src/licensedcode/data/rules/public-domain_243.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed into the public domain, and all rights and copyrights to the code are waived. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_243.yml b/src/licensedcode/data/rules/public-domain_243.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_243.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_244.RULE b/src/licensedcode/data/rules/public-domain_244.RULE index c91a95f5d34..806fdac7203 100644 --- a/src/licensedcode/data/rules/public-domain_244.RULE +++ b/src/licensedcode/data/rules/public-domain_244.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain for use by anyone for anything. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_244.yml b/src/licensedcode/data/rules/public-domain_244.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_245.RULE b/src/licensedcode/data/rules/public-domain_245.RULE index ae89cc3a6e6..66e6c78a5f7 100644 --- a/src/licensedcode/data/rules/public-domain_245.RULE +++ b/src/licensedcode/data/rules/public-domain_245.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed in the public domain by its author \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_245.yml b/src/licensedcode/data/rules/public-domain_245.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_245.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_246.RULE b/src/licensedcode/data/rules/public-domain_246.RULE index 64741770f84..c5dc999e708 100644 --- a/src/licensedcode/data/rules/public-domain_246.RULE +++ b/src/licensedcode/data/rules/public-domain_246.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Statement of Public Domain This code is placed into the public domain, and all rights and copyrights to the code are waived. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_246.yml b/src/licensedcode/data/rules/public-domain_246.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_246.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_247.RULE b/src/licensedcode/data/rules/public-domain_247.RULE index 628c84c6e35..cba1e5d20f8 100644 --- a/src/licensedcode/data/rules/public-domain_247.RULE +++ b/src/licensedcode/data/rules/public-domain_247.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed into the public domain. You are free to use it in any way. However, if you do find it useful, diff --git a/src/licensedcode/data/rules/public-domain_247.yml b/src/licensedcode/data/rules/public-domain_247.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_248.RULE b/src/licensedcode/data/rules/public-domain_248.RULE index f6442bc7df8..151591dca37 100644 --- a/src/licensedcode/data/rules/public-domain_248.RULE +++ b/src/licensedcode/data/rules/public-domain_248.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + License and copyright This code is placed in the PUBLIC DOMAIN. This means that you can edit it, distribute it, sell it, or basically anything else. diff --git a/src/licensedcode/data/rules/public-domain_248.yml b/src/licensedcode/data/rules/public-domain_248.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_249.RULE b/src/licensedcode/data/rules/public-domain_249.RULE index 2da04ab4292..935c6e4f035 100644 --- a/src/licensedcode/data/rules/public-domain_249.RULE +++ b/src/licensedcode/data/rules/public-domain_249.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + LEGAL: This code is placed into the public domain, hence requires no license or runtime fees. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_249.yml b/src/licensedcode/data/rules/public-domain_249.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_25.RULE b/src/licensedcode/data/rules/public-domain_25.RULE index 1170101f635..e76eb76f886 100644 --- a/src/licensedcode/data/rules/public-domain_25.RULE +++ b/src/licensedcode/data/rules/public-domain_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + PUBLIC DOMAIN -This source code is public domain +This source code is public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_25.yml b/src/licensedcode/data/rules/public-domain_25.yml deleted file mode 100644 index 8e8e0f8c600..00000000000 --- a/src/licensedcode/data/rules/public-domain_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_250.RULE b/src/licensedcode/data/rules/public-domain_250.RULE index abd1dddf2b0..0fe6195f32b 100644 --- a/src/licensedcode/data/rules/public-domain_250.RULE +++ b/src/licensedcode/data/rules/public-domain_250.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 99 +--- + Still 100% Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_250.yml b/src/licensedcode/data/rules/public-domain_250.yml deleted file mode 100644 index e0822429286..00000000000 --- a/src/licensedcode/data/rules/public-domain_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/public-domain_251.RULE b/src/licensedcode/data/rules/public-domain_251.RULE index 15f91288397..31084800d14 100644 --- a/src/licensedcode/data/rules/public-domain_251.RULE +++ b/src/licensedcode/data/rules/public-domain_251.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain SHA-1 implementation */ this file is in the public domain */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_251.yml b/src/licensedcode/data/rules/public-domain_251.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_251.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_252.RULE b/src/licensedcode/data/rules/public-domain_252.RULE index 64d13d0d77c..8563c0bf478 100644 --- a/src/licensedcode/data/rules/public-domain_252.RULE +++ b/src/licensedcode/data/rules/public-domain_252.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + It is released to the public domain, which means you can modify it, redistribute it or use it however you like. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_252.yml b/src/licensedcode/data/rules/public-domain_252.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_252.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_253.RULE b/src/licensedcode/data/rules/public-domain_253.RULE index e13dad1bda3..b6a0904caca 100644 --- a/src/licensedcode/data/rules/public-domain_253.RULE +++ b/src/licensedcode/data/rules/public-domain_253.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + It is released to the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_253.yml b/src/licensedcode/data/rules/public-domain_253.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_253.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_254.RULE b/src/licensedcode/data/rules/public-domain_254.RULE index 19ea367aa86..567fdf1055f 100644 --- a/src/licensedcode/data/rules/public-domain_254.RULE +++ b/src/licensedcode/data/rules/public-domain_254.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + released into the public domain by the copyright holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_254.yml b/src/licensedcode/data/rules/public-domain_254.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_254.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_255.RULE b/src/licensedcode/data/rules/public-domain_255.RULE index af7a8f1c25d..48592e68472 100644 --- a/src/licensedcode/data/rules/public-domain_255.RULE +++ b/src/licensedcode/data/rules/public-domain_255.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + likewise released into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_255.yml b/src/licensedcode/data/rules/public-domain_255.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_255.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_256.RULE b/src/licensedcode/data/rules/public-domain_256.RULE index 64012b511f2..04e833a6937 100644 --- a/src/licensedcode/data/rules/public-domain_256.RULE +++ b/src/licensedcode/data/rules/public-domain_256.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + public domain dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_256.yml b/src/licensedcode/data/rules/public-domain_256.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_257.RULE b/src/licensedcode/data/rules/public-domain_257.RULE index d3523e6c1af..27494c25f37 100644 --- a/src/licensedcode/data/rules/public-domain_257.RULE +++ b/src/licensedcode/data/rules/public-domain_257.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + % Public-domain fonts. These have no copyright, and are of unknown quality. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_257.yml b/src/licensedcode/data/rules/public-domain_257.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_257.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_258.RULE b/src/licensedcode/data/rules/public-domain_258.RULE index ba1b91dcddc..a472fb72916 100644 --- a/src/licensedcode/data/rules/public-domain_258.RULE +++ b/src/licensedcode/data/rules/public-domain_258.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + These are also in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_258.yml b/src/licensedcode/data/rules/public-domain_258.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_259.RULE b/src/licensedcode/data/rules/public-domain_259.RULE index 8fb6ad5782a..50e79ea69ed 100644 --- a/src/licensedcode/data/rules/public-domain_259.RULE +++ b/src/licensedcode/data/rules/public-domain_259.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Portions of this code are derived from classes placed in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_259.yml b/src/licensedcode/data/rules/public-domain_259.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_26.RULE b/src/licensedcode/data/rules/public-domain_26.RULE index b1ac2fd2275..ca5ca3d1583 100644 --- a/src/licensedcode/data/rules/public-domain_26.RULE +++ b/src/licensedcode/data/rules/public-domain_26.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +--- + which is written and distributed to public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_26.yml b/src/licensedcode/data/rules/public-domain_26.yml deleted file mode 100644 index 049e07e4303..00000000000 --- a/src/licensedcode/data/rules/public-domain_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_260.RULE b/src/licensedcode/data/rules/public-domain_260.RULE index 9a0251ecb23..db91b9c3d6c 100644 --- a/src/licensedcode/data/rules/public-domain_260.RULE +++ b/src/licensedcode/data/rules/public-domain_260.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This file, dmtcpaware.h, is placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_260.yml b/src/licensedcode/data/rules/public-domain_260.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_261.RULE b/src/licensedcode/data/rules/public-domain_261.RULE index 2243ff9e19f..985fd770ce1 100644 --- a/src/licensedcode/data/rules/public-domain_261.RULE +++ b/src/licensedcode/data/rules/public-domain_261.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.copyright.gov/help/faq-definitions.html#public_domain +--- + https://www.copyright.gov/help/faq-definitions.html#public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_261.yml b/src/licensedcode/data/rules/public-domain_261.yml deleted file mode 100644 index 952b1c35bfb..00000000000 --- a/src/licensedcode/data/rules/public-domain_261.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.copyright.gov/help/faq-definitions.html#public_domain diff --git a/src/licensedcode/data/rules/public-domain_262.RULE b/src/licensedcode/data/rules/public-domain_262.RULE index 5e033024189..dc52ba7fe4e 100644 --- a/src/licensedcode/data/rules/public-domain_262.RULE +++ b/src/licensedcode/data/rules/public-domain_262.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + The remaining files in the directory are placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_262.yml b/src/licensedcode/data/rules/public-domain_262.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_262.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_263.RULE b/src/licensedcode/data/rules/public-domain_263.RULE index def47c68cec..b9d21ef073f 100644 --- a/src/licensedcode/data/rules/public-domain_263.RULE +++ b/src/licensedcode/data/rules/public-domain_263.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This document has been placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_263.yml b/src/licensedcode/data/rules/public-domain_263.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_264.RULE b/src/licensedcode/data/rules/public-domain_264.RULE index 44a4b6495d5..e936b6d7215 100644 --- a/src/licensedcode/data/rules/public-domain_264.RULE +++ b/src/licensedcode/data/rules/public-domain_264.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This software is Public Domain and may be used without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_264.yml b/src/licensedcode/data/rules/public-domain_264.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_265.RULE b/src/licensedcode/data/rules/public-domain_265.RULE index 480712d7ecf..41d99c6311a 100644 --- a/src/licensedcode/data/rules/public-domain_265.RULE +++ b/src/licensedcode/data/rules/public-domain_265.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This software is Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_265.yml b/src/licensedcode/data/rules/public-domain_265.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_265.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_266.RULE b/src/licensedcode/data/rules/public-domain_266.RULE index da8d3ba5e8c..2111b52b3ba 100644 --- a/src/licensedcode/data/rules/public-domain_266.RULE +++ b/src/licensedcode/data/rules/public-domain_266.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + DejaVu changes are in public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_266.yml b/src/licensedcode/data/rules/public-domain_266.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_266.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_267.RULE b/src/licensedcode/data/rules/public-domain_267.RULE index 93478c734e4..f322a8543bf 100644 --- a/src/licensedcode/data/rules/public-domain_267.RULE +++ b/src/licensedcode/data/rules/public-domain_267.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + based on public domain code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_267.yml b/src/licensedcode/data/rules/public-domain_267.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_267.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_268.RULE b/src/licensedcode/data/rules/public-domain_268.RULE index bf0d0e7eea5..76bc7934285 100644 --- a/src/licensedcode/data/rules/public-domain_268.RULE +++ b/src/licensedcode/data/rules/public-domain_268.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code in public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_268.yml b/src/licensedcode/data/rules/public-domain_268.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_269.RULE b/src/licensedcode/data/rules/public-domain_269.RULE index a9e42219d5a..8e0f45adc4e 100644 --- a/src/licensedcode/data/rules/public-domain_269.RULE +++ b/src/licensedcode/data/rules/public-domain_269.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + The following code is public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_269.yml b/src/licensedcode/data/rules/public-domain_269.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_27.RULE b/src/licensedcode/data/rules/public-domain_27.RULE index fba14452a09..6098298a426 100644 --- a/src/licensedcode/data/rules/public-domain_27.RULE +++ b/src/licensedcode/data/rules/public-domain_27.RULE @@ -1,2 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + Copyright for this collection itself is hereby assigned to the public domain by the compilers \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_27.yml b/src/licensedcode/data/rules/public-domain_27.yml deleted file mode 100644 index 8e8e0f8c600..00000000000 --- a/src/licensedcode/data/rules/public-domain_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_270.RULE b/src/licensedcode/data/rules/public-domain_270.RULE index 4cb495c2b89..1f37eaf899d 100644 --- a/src/licensedcode/data/rules/public-domain_270.RULE +++ b/src/licensedcode/data/rules/public-domain_270.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + this file is placed in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_270.yml b/src/licensedcode/data/rules/public-domain_270.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_271.RULE b/src/licensedcode/data/rules/public-domain_271.RULE index 4fe5879146f..dd2e3713aa2 100644 --- a/src/licensedcode/data/rules/public-domain_271.RULE +++ b/src/licensedcode/data/rules/public-domain_271.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This library is public domain software, i.e. not copyrighted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_271.yml b/src/licensedcode/data/rules/public-domain_271.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_272.RULE b/src/licensedcode/data/rules/public-domain_272.RULE index 32ae0b50072..aac8a800002 100644 --- a/src/licensedcode/data/rules/public-domain_272.RULE +++ b/src/licensedcode/data/rules/public-domain_272.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + distributed under the 'Public Domain' license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_272.yml b/src/licensedcode/data/rules/public-domain_272.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_273.RULE b/src/licensedcode/data/rules/public-domain_273.RULE index 11f8b31e71e..5e6d424523a 100644 --- a/src/licensedcode/data/rules/public-domain_273.RULE +++ b/src/licensedcode/data/rules/public-domain_273.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + This code was released into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_273.yml b/src/licensedcode/data/rules/public-domain_273.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_274.RULE b/src/licensedcode/data/rules/public-domain_274.RULE index 6454f36308a..d258b532b97 100644 --- a/src/licensedcode/data/rules/public-domain_274.RULE +++ b/src/licensedcode/data/rules/public-domain_274.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: https://www.siber.com/btyacc/README.txt +--- + This code is distributed with NO WARRANTEE and is public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_274.yml b/src/licensedcode/data/rules/public-domain_274.yml deleted file mode 100644 index b9aeb6f071f..00000000000 --- a/src/licensedcode/data/rules/public-domain_274.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: https://www.siber.com/btyacc/README.txt diff --git a/src/licensedcode/data/rules/public-domain_275.RULE b/src/licensedcode/data/rules/public-domain_275.RULE index cb994181fba..f283a5fd424 100644 --- a/src/licensedcode/data/rules/public-domain_275.RULE +++ b/src/licensedcode/data/rules/public-domain_275.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + The adapted work is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_275.yml b/src/licensedcode/data/rules/public-domain_275.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_275.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_276.RULE b/src/licensedcode/data/rules/public-domain_276.RULE index aab95700e01..6e209730d9a 100644 --- a/src/licensedcode/data/rules/public-domain_276.RULE +++ b/src/licensedcode/data/rules/public-domain_276.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + License All content in this repository is placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_276.yml b/src/licensedcode/data/rules/public-domain_276.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_276.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_277.RULE b/src/licensedcode/data/rules/public-domain_277.RULE index c0f45c49f85..5252751d1a5 100644 --- a/src/licensedcode/data/rules/public-domain_277.RULE +++ b/src/licensedcode/data/rules/public-domain_277.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + All content in this repository is placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_277.yml b/src/licensedcode/data/rules/public-domain_277.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_277.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_278.RULE b/src/licensedcode/data/rules/public-domain_278.RULE index 5d6cba94873..0730dbf8ccd 100644 --- a/src/licensedcode/data/rules/public-domain_278.RULE +++ b/src/licensedcode/data/rules/public-domain_278.RULE @@ -1,2 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +referenced_filenames: + - LICENSE.rst +notes: https://raw.githubusercontent.com/benediktschmitt/py-filelock/master/README.md +--- + License This package is [public domain](./LICENSE.rst). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_278.yml b/src/licensedcode/data/rules/public-domain_278.yml deleted file mode 100644 index 2e3a0fbcacd..00000000000 --- a/src/licensedcode/data/rules/public-domain_278.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -referenced_filenames: - - LICENSE.rst -notes: https://raw.githubusercontent.com/benediktschmitt/py-filelock/master/README.md diff --git a/src/licensedcode/data/rules/public-domain_279.RULE b/src/licensedcode/data/rules/public-domain_279.RULE index ce3784c6566..5471e9ed789 100644 --- a/src/licensedcode/data/rules/public-domain_279.RULE +++ b/src/licensedcode/data/rules/public-domain_279.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This header is under public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_279.yml b/src/licensedcode/data/rules/public-domain_279.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_279.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_28.RULE b/src/licensedcode/data/rules/public-domain_28.RULE index 2598f87d20f..f9965a722d2 100644 --- a/src/licensedcode/data/rules/public-domain_28.RULE +++ b/src/licensedcode/data/rules/public-domain_28.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + no copyright is claimed. * This code is in the public domain; do with it what you wish. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_28.yml b/src/licensedcode/data/rules/public-domain_28.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_280.RULE b/src/licensedcode/data/rules/public-domain_280.RULE index 70c49ca7b99..d679ceaae6b 100644 --- a/src/licensedcode/data/rules/public-domain_280.RULE +++ b/src/licensedcode/data/rules/public-domain_280.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: in GNU Nettle +--- + This manual is in the public domain. You may freely copy it in whole or in part, e.g., into documentation of programs that build on . Attribution, as well as contribution of improvements to the text, is of diff --git a/src/licensedcode/data/rules/public-domain_280.yml b/src/licensedcode/data/rules/public-domain_280.yml deleted file mode 100644 index c3fc531caaa..00000000000 --- a/src/licensedcode/data/rules/public-domain_280.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: in GNU Nettle diff --git a/src/licensedcode/data/rules/public-domain_281.RULE b/src/licensedcode/data/rules/public-domain_281.RULE index 91dd8167db2..a306ddadcf9 100644 --- a/src/licensedcode/data/rules/public-domain_281.RULE +++ b/src/licensedcode/data/rules/public-domain_281.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + This Java implementation of XZ has been put into the public domain, thus you can do whatever you want with it. All the files in the package have been written by Lasse Collin, but some files are heavily based on public domain code written by diff --git a/src/licensedcode/data/rules/public-domain_281.yml b/src/licensedcode/data/rules/public-domain_281.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_281.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_282.RULE b/src/licensedcode/data/rules/public-domain_282.RULE index 811ac58e700..fb1229113ea 100644 --- a/src/licensedcode/data/rules/public-domain_282.RULE +++ b/src/licensedcode/data/rules/public-domain_282.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + derived portions are public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_282.yml b/src/licensedcode/data/rules/public-domain_282.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_282.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_283.RULE b/src/licensedcode/data/rules/public-domain_283.RULE index 566c1c3bc86..6f31d1f17dc 100644 --- a/src/licensedcode/data/rules/public-domain_283.RULE +++ b/src/licensedcode/data/rules/public-domain_283.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in json-cpp +--- + Authors explicitly disclaim copyright in all jurisdictions which recognize such a disclaimer. In such jurisdictions, this software is released into the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_283.yml b/src/licensedcode/data/rules/public-domain_283.yml deleted file mode 100644 index 654a71dac9a..00000000000 --- a/src/licensedcode/data/rules/public-domain_283.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in json-cpp diff --git a/src/licensedcode/data/rules/public-domain_284.RULE b/src/licensedcode/data/rules/public-domain_284.RULE index ce3352f7a69..ffd69bc5c07 100644 --- a/src/licensedcode/data/rules/public-domain_284.RULE +++ b/src/licensedcode/data/rules/public-domain_284.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: Seen in re2c +--- + License is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_284.yml b/src/licensedcode/data/rules/public-domain_284.yml deleted file mode 100644 index 5edc8a41664..00000000000 --- a/src/licensedcode/data/rules/public-domain_284.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: Seen in re2c diff --git a/src/licensedcode/data/rules/public-domain_285.RULE b/src/licensedcode/data/rules/public-domain_285.RULE index bfa567e940d..6df368b0660 100644 --- a/src/licensedcode/data/rules/public-domain_285.RULE +++ b/src/licensedcode/data/rules/public-domain_285.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: Seen in re2c +--- + is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_285.yml b/src/licensedcode/data/rules/public-domain_285.yml deleted file mode 100644 index 5edc8a41664..00000000000 --- a/src/licensedcode/data/rules/public-domain_285.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: Seen in re2c diff --git a/src/licensedcode/data/rules/public-domain_286.RULE b/src/licensedcode/data/rules/public-domain_286.RULE index 50b557efa68..7c66ac13356 100644 --- a/src/licensedcode/data/rules/public-domain_286.RULE +++ b/src/licensedcode/data/rules/public-domain_286.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Irrespective of its distribution, all code examples here are in the public domain. You are permitted and encouraged to use this code and any derivatives thereof in your own programs for fun or for profit as you diff --git a/src/licensedcode/data/rules/public-domain_286.yml b/src/licensedcode/data/rules/public-domain_286.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_286.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_287.RULE b/src/licensedcode/data/rules/public-domain_287.RULE index 723e821143b..30a888b09ae 100644 --- a/src/licensedcode/data/rules/public-domain_287.RULE +++ b/src/licensedcode/data/rules/public-domain_287.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Irrespective of its distribution, all code examples in these files are hereby placed into the public domain. You are permitted and encouraged to use this code in your own programs for fun diff --git a/src/licensedcode/data/rules/public-domain_287.yml b/src/licensedcode/data/rules/public-domain_287.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_287.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_288.RULE b/src/licensedcode/data/rules/public-domain_288.RULE index ce41b4a5f48..a2012d81a63 100644 --- a/src/licensedcode/data/rules/public-domain_288.RULE +++ b/src/licensedcode/data/rules/public-domain_288.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + To the extent possible under law, has waived all copyright and related or neighboring rights to \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_288.yml b/src/licensedcode/data/rules/public-domain_288.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_289.RULE b/src/licensedcode/data/rules/public-domain_289.RULE index 5294630f39f..56abd4ce9d8 100644 --- a/src/licensedcode/data/rules/public-domain_289.RULE +++ b/src/licensedcode/data/rules/public-domain_289.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + The MD5 algorithm is being placed in the public domain for review and possible adoption as a standard \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_289.yml b/src/licensedcode/data/rules/public-domain_289.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_289.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_29.RULE b/src/licensedcode/data/rules/public-domain_29.RULE index 9ccd776e1db..90c22a2e2ef 100644 --- a/src/licensedcode/data/rules/public-domain_29.RULE +++ b/src/licensedcode/data/rules/public-domain_29.RULE @@ -1 +1,8 @@ -no copyright is claimed +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + +no copyright is claimed \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_29.yml b/src/licensedcode/data/rules/public-domain_29.yml deleted file mode 100644 index 2583555ca0d..00000000000 --- a/src/licensedcode/data/rules/public-domain_29.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_290.RULE b/src/licensedcode/data/rules/public-domain_290.RULE index a6f8b763ee8..d10fe996eef 100644 --- a/src/licensedcode/data/rules/public-domain_290.RULE +++ b/src/licensedcode/data/rules/public-domain_290.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + All the examples in the 'python/examples' subdirectory may be freely copied, modified and distributed without any restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_290.yml b/src/licensedcode/data/rules/public-domain_290.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_290.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_291.RULE b/src/licensedcode/data/rules/public-domain_291.RULE index 8723877291f..d0d77a442c2 100644 --- a/src/licensedcode/data/rules/public-domain_291.RULE +++ b/src/licensedcode/data/rules/public-domain_291.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + LICENSE INFORMATION: Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_291.yml b/src/licensedcode/data/rules/public-domain_291.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_292.RULE b/src/licensedcode/data/rules/public-domain_292.RULE index a56889b42ad..4aad8f5fbf8 100644 --- a/src/licensedcode/data/rules/public-domain_292.RULE +++ b/src/licensedcode/data/rules/public-domain_292.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + A public domain implementation of BSD directory routines for MS-DOS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_292.yml b/src/licensedcode/data/rules/public-domain_292.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_292.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_293.RULE b/src/licensedcode/data/rules/public-domain_293.RULE index fa9db936240..0de0753d963 100644 --- a/src/licensedcode/data/rules/public-domain_293.RULE +++ b/src/licensedcode/data/rules/public-domain_293.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_293.yml b/src/licensedcode/data/rules/public-domain_293.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_293.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_294.RULE b/src/licensedcode/data/rules/public-domain_294.RULE index 0647b7af51a..34048bf039b 100644 --- a/src/licensedcode/data/rules/public-domain_294.RULE +++ b/src/licensedcode/data/rules/public-domain_294.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + This code is a port of the public domain implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_294.yml b/src/licensedcode/data/rules/public-domain_294.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_295.RULE b/src/licensedcode/data/rules/public-domain_295.RULE index 0a86f74e5bd..d8488903b73 100644 --- a/src/licensedcode/data/rules/public-domain_295.RULE +++ b/src/licensedcode/data/rules/public-domain_295.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + THIS CODE IS SPECIFICALLY EXEMPTED FROM THE NCURSES PACKAGE COPYRIGHT. You may freely copy it for use as a template for your own field types. If you develop a field type that might be of general use, please send diff --git a/src/licensedcode/data/rules/public-domain_295.yml b/src/licensedcode/data/rules/public-domain_295.yml deleted file mode 100644 index c26167ee8c0..00000000000 --- a/src/licensedcode/data/rules/public-domain_295.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/public-domain_296.RULE b/src/licensedcode/data/rules/public-domain_296.RULE index 69f939926f1..23bd2adb7dc 100644 --- a/src/licensedcode/data/rules/public-domain_296.RULE +++ b/src/licensedcode/data/rules/public-domain_296.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Use of any of this software is governed by the terms of the license below: These files are in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_296.yml b/src/licensedcode/data/rules/public-domain_296.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_296.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_297.RULE b/src/licensedcode/data/rules/public-domain_297.RULE index 08394d716a1..86a58fa7538 100644 --- a/src/licensedcode/data/rules/public-domain_297.RULE +++ b/src/licensedcode/data/rules/public-domain_297.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + These files are in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_297.yml b/src/licensedcode/data/rules/public-domain_297.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_297.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_298.RULE b/src/licensedcode/data/rules/public-domain_298.RULE index 69c921ccfa5..95d5a9b766f 100644 --- a/src/licensedcode/data/rules/public-domain_298.RULE +++ b/src/licensedcode/data/rules/public-domain_298.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_298.yml b/src/licensedcode/data/rules/public-domain_298.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_298.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_299.RULE b/src/licensedcode/data/rules/public-domain_299.RULE index 92773af6f69..ad0a20c2e79 100644 --- a/src/licensedcode/data/rules/public-domain_299.RULE +++ b/src/licensedcode/data/rules/public-domain_299.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This software is hereby explicitly placed in the public domain. It may be used for any purpose on any machine by anyone." I would greatly prefer it if my material received no military use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_299.yml b/src/licensedcode/data/rules/public-domain_299.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_299.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_3.RULE b/src/licensedcode/data/rules/public-domain_3.RULE index c0de9501489..24c8cf16efe 100644 --- a/src/licensedcode/data/rules/public-domain_3.RULE +++ b/src/licensedcode/data/rules/public-domain_3.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + granted to the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_3.yml b/src/licensedcode/data/rules/public-domain_3.yml deleted file mode 100644 index c10e7175b9a..00000000000 --- a/src/licensedcode/data/rules/public-domain_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_30.RULE b/src/licensedcode/data/rules/public-domain_30.RULE index 6225e0a0d6a..e8a8da226b1 100644 --- a/src/licensedcode/data/rules/public-domain_30.RULE +++ b/src/licensedcode/data/rules/public-domain_30.RULE @@ -1,7 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + PD (Public domain): The file or package contains a statement equivalent to "This file is in the public domain. You may freely use, modify and -distribute it". - +distribute it". \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_30.yml b/src/licensedcode/data/rules/public-domain_30.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_30.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_300.RULE b/src/licensedcode/data/rules/public-domain_300.RULE index 0684d7f72b0..d96db08b30b 100644 --- a/src/licensedcode/data/rules/public-domain_300.RULE +++ b/src/licensedcode/data/rules/public-domain_300.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + 100% Public Domain Additional License(s) 100% Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_300.yml b/src/licensedcode/data/rules/public-domain_300.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_300.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_301.RULE b/src/licensedcode/data/rules/public-domain_301.RULE index 2738054984c..34457a234c2 100644 --- a/src/licensedcode/data/rules/public-domain_301.RULE +++ b/src/licensedcode/data/rules/public-domain_301.RULE @@ -1,2 +1,9 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +minimum_coverage: 90 +--- + The public-domain time zone database contains code and data that represent the history of local time for many representative locations around the globe. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_301.yml b/src/licensedcode/data/rules/public-domain_301.yml deleted file mode 100644 index 049e07e4303..00000000000 --- a/src/licensedcode/data/rules/public-domain_301.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_302.RULE b/src/licensedcode/data/rules/public-domain_302.RULE index de2a6f5fdc3..342b308426a 100644 --- a/src/licensedcode/data/rules/public-domain_302.RULE +++ b/src/licensedcode/data/rules/public-domain_302.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + public-domain time zone database \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_302.yml b/src/licensedcode/data/rules/public-domain_302.yml deleted file mode 100644 index b77d9d4117b..00000000000 --- a/src/licensedcode/data/rules/public-domain_302.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_303.RULE b/src/licensedcode/data/rules/public-domain_303.RULE index cd64c2cfaa0..b833ce8d9b7 100644 --- a/src/licensedcode/data/rules/public-domain_303.RULE +++ b/src/licensedcode/data/rules/public-domain_303.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_authors: + - Colin Plumb +--- + This code was written by Colin Plumb in 1993, no copyright is claimed. This code is in the public domain; do with it what you wish. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_303.yml b/src/licensedcode/data/rules/public-domain_303.yml deleted file mode 100644 index 86ea528d422..00000000000 --- a/src/licensedcode/data/rules/public-domain_303.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_authors: - - Colin Plumb diff --git a/src/licensedcode/data/rules/public-domain_304.RULE b/src/licensedcode/data/rules/public-domain_304.RULE index 06ea33ca69d..5b8fc53c031 100644 --- a/src/licensedcode/data/rules/public-domain_304.RULE +++ b/src/licensedcode/data/rules/public-domain_304.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 80 +--- + Copyright Abandoned \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_304.yml b/src/licensedcode/data/rules/public-domain_304.yml deleted file mode 100644 index 5be50b0156f..00000000000 --- a/src/licensedcode/data/rules/public-domain_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/public-domain_305.RULE b/src/licensedcode/data/rules/public-domain_305.RULE index 0ecc5e2df84..d55f59f4d03 100644 --- a/src/licensedcode/data/rules/public-domain_305.RULE +++ b/src/licensedcode/data/rules/public-domain_305.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + are in the public domain; \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_305.yml b/src/licensedcode/data/rules/public-domain_305.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_306.RULE b/src/licensedcode/data/rules/public-domain_306.RULE index 38dd244886d..42ddf8180fc 100644 --- a/src/licensedcode/data/rules/public-domain_306.RULE +++ b/src/licensedcode/data/rules/public-domain_306.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + have expired copyrights and are in the public domain; \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_306.yml b/src/licensedcode/data/rules/public-domain_306.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_306.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_307.RULE b/src/licensedcode/data/rules/public-domain_307.RULE index ae1b7b49bf0..0229a941c93 100644 --- a/src/licensedcode/data/rules/public-domain_307.RULE +++ b/src/licensedcode/data/rules/public-domain_307.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gutenberg.org/ebooks/53 +--- + The first three have expired copyrights and are in the public domain; the latter does not have expired copyright, but is still in the public domain according to the license information diff --git a/src/licensedcode/data/rules/public-domain_307.yml b/src/licensedcode/data/rules/public-domain_307.yml deleted file mode 100644 index e2207bb6e17..00000000000 --- a/src/licensedcode/data/rules/public-domain_307.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gutenberg.org/ebooks/53 diff --git a/src/licensedcode/data/rules/public-domain_308.RULE b/src/licensedcode/data/rules/public-domain_308.RULE index 02ef0e3360a..2899f16311a 100644 --- a/src/licensedcode/data/rules/public-domain_308.RULE +++ b/src/licensedcode/data/rules/public-domain_308.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + (Mostly) portable public-domain implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_308.yml b/src/licensedcode/data/rules/public-domain_308.yml deleted file mode 100644 index c10e7175b9a..00000000000 --- a/src/licensedcode/data/rules/public-domain_308.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_309.RULE b/src/licensedcode/data/rules/public-domain_309.RULE index be7796f2260..724a640e158 100644 --- a/src/licensedcode/data/rules/public-domain_309.RULE +++ b/src/licensedcode/data/rules/public-domain_309.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + derived from the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_309.yml b/src/licensedcode/data/rules/public-domain_309.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_31.RULE b/src/licensedcode/data/rules/public-domain_31.RULE index 08d2f408b70..4fb568bfcf4 100644 --- a/src/licensedcode/data/rules/public-domain_31.RULE +++ b/src/licensedcode/data/rules/public-domain_31.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +minimum_coverage: 90 +--- + 7. Database Ownership The TZ database itself is not an IETF Contribution or an IETF document. Rather it is a pre-existing and regularly updated work that is in the public domain, and is intended to remain in the public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do not apply to the TZ Database or contributions that individuals make to it. Should any claims be made and substantiated against the TZ Database, the organization that is providing the IANA Considerations defined in this RFC, under the memorandum of understanding with the IETF, currently ICANN, may act in accordance with all competent court orders. No ownership claims will be made by ICANN or the IETF Trust on the database or the code. Any person making a contribution to the database or code waives all rights to future claims in that contribution or in the TZ Database. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_31.yml b/src/licensedcode/data/rules/public-domain_31.yml deleted file mode 100644 index 600831a8674..00000000000 --- a/src/licensedcode/data/rules/public-domain_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_310.RULE b/src/licensedcode/data/rules/public-domain_310.RULE index 8e0d3d988c4..f4759a4d214 100644 --- a/src/licensedcode/data/rules/public-domain_310.RULE +++ b/src/licensedcode/data/rules/public-domain_310.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain software \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_310.yml b/src/licensedcode/data/rules/public-domain_310.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_311.RULE b/src/licensedcode/data/rules/public-domain_311.RULE index c9cbf97a8ce..04c33d5578c 100644 --- a/src/licensedcode/data/rules/public-domain_311.RULE +++ b/src/licensedcode/data/rules/public-domain_311.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_311.yml b/src/licensedcode/data/rules/public-domain_311.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_311.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_312.RULE b/src/licensedcode/data/rules/public-domain_312.RULE index e59cca99094..541345e992c 100644 --- a/src/licensedcode/data/rules/public-domain_312.RULE +++ b/src/licensedcode/data/rules/public-domain_312.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_312.yml b/src/licensedcode/data/rules/public-domain_312.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_312.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_313.RULE b/src/licensedcode/data/rules/public-domain_313.RULE index 34574f20800..6314026fbe2 100644 --- a/src/licensedcode/data/rules/public-domain_313.RULE +++ b/src/licensedcode/data/rules/public-domain_313.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain library \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_313.yml b/src/licensedcode/data/rules/public-domain_313.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_313.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_314.RULE b/src/licensedcode/data/rules/public-domain_314.RULE index 063025c7fa9..6b8ae39bf1d 100644 --- a/src/licensedcode/data/rules/public-domain_314.RULE +++ b/src/licensedcode/data/rules/public-domain_314.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + code in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_314.yml b/src/licensedcode/data/rules/public-domain_314.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_314.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_315.RULE b/src/licensedcode/data/rules/public-domain_315.RULE index 014fe577578..25efde3b044 100644 --- a/src/licensedcode/data/rules/public-domain_315.RULE +++ b/src/licensedcode/data/rules/public-domain_315.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + It is published into public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_315.yml b/src/licensedcode/data/rules/public-domain_315.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_315.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_316.RULE b/src/licensedcode/data/rules/public-domain_316.RULE index b4a09a7dda1..56d292e662f 100644 --- a/src/licensedcode/data/rules/public-domain_316.RULE +++ b/src/licensedcode/data/rules/public-domain_316.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + public domain, open source, \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_316.yml b/src/licensedcode/data/rules/public-domain_316.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_316.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_317.RULE b/src/licensedcode/data/rules/public-domain_317.RULE index f98a14fc3ce..60f1059fec9 100644 --- a/src/licensedcode/data/rules/public-domain_317.RULE +++ b/src/licensedcode/data/rules/public-domain_317.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Licensed under Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_317.yml b/src/licensedcode/data/rules/public-domain_317.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_318.RULE b/src/licensedcode/data/rules/public-domain_318.RULE index 8e136221a0d..909ddd04907 100644 --- a/src/licensedcode/data/rules/public-domain_318.RULE +++ b/src/licensedcode/data/rules/public-domain_318.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + library released into public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_318.yml b/src/licensedcode/data/rules/public-domain_318.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_319.RULE b/src/licensedcode/data/rules/public-domain_319.RULE index a9075505e79..350a03ba41d 100644 --- a/src/licensedcode/data/rules/public-domain_319.RULE +++ b/src/licensedcode/data/rules/public-domain_319.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Public Domain C Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_319.yml b/src/licensedcode/data/rules/public-domain_319.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_319.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_32.RULE b/src/licensedcode/data/rules/public-domain_32.RULE index ca1f3d65992..c367ffa6387 100644 --- a/src/licensedcode/data/rules/public-domain_32.RULE +++ b/src/licensedcode/data/rules/public-domain_32.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + under public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_32.yml b/src/licensedcode/data/rules/public-domain_32.yml deleted file mode 100644 index c10e7175b9a..00000000000 --- a/src/licensedcode/data/rules/public-domain_32.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_320.RULE b/src/licensedcode/data/rules/public-domain_320.RULE index 9765a34b786..9be4493cf85 100644 --- a/src/licensedcode/data/rules/public-domain_320.RULE +++ b/src/licensedcode/data/rules/public-domain_320.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + This works is available in public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_320.yml b/src/licensedcode/data/rules/public-domain_320.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_320.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_321.RULE b/src/licensedcode/data/rules/public-domain_321.RULE index 59934944b43..7209eebc138 100644 --- a/src/licensedcode/data/rules/public-domain_321.RULE +++ b/src/licensedcode/data/rules/public-domain_321.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Free open public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_321.yml b/src/licensedcode/data/rules/public-domain_321.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_321.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_322.RULE b/src/licensedcode/data/rules/public-domain_322.RULE index e3c9884434e..70ac494fdae 100644 --- a/src/licensedcode/data/rules/public-domain_322.RULE +++ b/src/licensedcode/data/rules/public-domain_322.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + orignal source code obtained from the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_322.yml b/src/licensedcode/data/rules/public-domain_322.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_322.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_323.RULE b/src/licensedcode/data/rules/public-domain_323.RULE index 5ae18fb50b4..719370e2f83 100644 --- a/src/licensedcode/data/rules/public-domain_323.RULE +++ b/src/licensedcode/data/rules/public-domain_323.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + this software is released into the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_323.yml b/src/licensedcode/data/rules/public-domain_323.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_323.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_324.RULE b/src/licensedcode/data/rules/public-domain_324.RULE index ae86bf3bd0a..5b940a3b37c 100644 --- a/src/licensedcode/data/rules/public-domain_324.RULE +++ b/src/licensedcode/data/rules/public-domain_324.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This example code is placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_324.yml b/src/licensedcode/data/rules/public-domain_324.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_324.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_325.RULE b/src/licensedcode/data/rules/public-domain_325.RULE index 50216a27ac8..2c513f44186 100644 --- a/src/licensedcode/data/rules/public-domain_325.RULE +++ b/src/licensedcode/data/rules/public-domain_325.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + code is placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_325.yml b/src/licensedcode/data/rules/public-domain_325.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_325.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_326.RULE b/src/licensedcode/data/rules/public-domain_326.RULE index c6df100c88e..1f554c62cab 100644 --- a/src/licensedcode/data/rules/public-domain_326.RULE +++ b/src/licensedcode/data/rules/public-domain_326.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Licence: I hereby disclaim the copyright on this code and place it in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_326.yml b/src/licensedcode/data/rules/public-domain_326.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_326.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_327.RULE b/src/licensedcode/data/rules/public-domain_327.RULE index e10b3f8d9a8..dbfdff1f262 100644 --- a/src/licensedcode/data/rules/public-domain_327.RULE +++ b/src/licensedcode/data/rules/public-domain_327.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + I hereby disclaim the copyright on this code and place it in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_327.yml b/src/licensedcode/data/rules/public-domain_327.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_327.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_328.RULE b/src/licensedcode/data/rules/public-domain_328.RULE index 967a3cb8336..f564c5b2071 100644 --- a/src/licensedcode/data/rules/public-domain_328.RULE +++ b/src/licensedcode/data/rules/public-domain_328.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + not copyrighted and is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_328.yml b/src/licensedcode/data/rules/public-domain_328.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_328.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_329.RULE b/src/licensedcode/data/rules/public-domain_329.RULE index 807c7cf4ae0..229499aa97a 100644 --- a/src/licensedcode/data/rules/public-domain_329.RULE +++ b/src/licensedcode/data/rules/public-domain_329.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This source code has been placed in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_329.yml b/src/licensedcode/data/rules/public-domain_329.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_329.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_33.RULE b/src/licensedcode/data/rules/public-domain_33.RULE index e029ddc3f0e..ed1adc2c132 100644 --- a/src/licensedcode/data/rules/public-domain_33.RULE +++ b/src/licensedcode/data/rules/public-domain_33.RULE @@ -1 +1,8 @@ -they are public domain +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + +they are public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_33.yml b/src/licensedcode/data/rules/public-domain_33.yml deleted file mode 100644 index b77d9d4117b..00000000000 --- a/src/licensedcode/data/rules/public-domain_33.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_330.RULE b/src/licensedcode/data/rules/public-domain_330.RULE index 1bd1db01dbd..6fd68b659bc 100644 --- a/src/licensedcode/data/rules/public-domain_330.RULE +++ b/src/licensedcode/data/rules/public-domain_330.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This man page is in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_330.yml b/src/licensedcode/data/rules/public-domain_330.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_330.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_331.RULE b/src/licensedcode/data/rules/public-domain_331.RULE index b72097584f9..cf37bd47471 100644 --- a/src/licensedcode/data/rules/public-domain_331.RULE +++ b/src/licensedcode/data/rules/public-domain_331.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + code has been placed in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_331.yml b/src/licensedcode/data/rules/public-domain_331.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_331.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_332.RULE b/src/licensedcode/data/rules/public-domain_332.RULE index 2d4ba1ddee5..96b392d4cd8 100644 --- a/src/licensedcode/data/rules/public-domain_332.RULE +++ b/src/licensedcode/data/rules/public-domain_332.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + source code has been placed in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_332.yml b/src/licensedcode/data/rules/public-domain_332.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_333.RULE b/src/licensedcode/data/rules/public-domain_333.RULE index 126ee947340..44842772fab 100644 --- a/src/licensedcode/data/rules/public-domain_333.RULE +++ b/src/licensedcode/data/rules/public-domain_333.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This source code has been placed in the public domain by the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_333.yml b/src/licensedcode/data/rules/public-domain_333.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_333.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_334.RULE b/src/licensedcode/data/rules/public-domain_334.RULE index b44e572cdaa..f21182de27e 100644 --- a/src/licensedcode/data/rules/public-domain_334.RULE +++ b/src/licensedcode/data/rules/public-domain_334.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This source code is released into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_334.yml b/src/licensedcode/data/rules/public-domain_334.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_334.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_335.RULE b/src/licensedcode/data/rules/public-domain_335.RULE index 1e8ce62a721..c99299f20a4 100644 --- a/src/licensedcode/data/rules/public-domain_335.RULE +++ b/src/licensedcode/data/rules/public-domain_335.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + derived from public-domain code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_335.yml b/src/licensedcode/data/rules/public-domain_335.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_335.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_336.RULE b/src/licensedcode/data/rules/public-domain_336.RULE index 09a28d0f53a..fd1287f7ea3 100644 --- a/src/licensedcode/data/rules/public-domain_336.RULE +++ b/src/licensedcode/data/rules/public-domain_336.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + public-domain-source-code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_336.yml b/src/licensedcode/data/rules/public-domain_336.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_336.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_337.RULE b/src/licensedcode/data/rules/public-domain_337.RULE index b29d7cdb7e1..fc249095252 100644 --- a/src/licensedcode/data/rules/public-domain_337.RULE +++ b/src/licensedcode/data/rules/public-domain_337.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +--- + This is a plain C recursive-descent translation of an old public-domain YACC grammar that has been used for parsing dates in very many open-source projects. diff --git a/src/licensedcode/data/rules/public-domain_337.yml b/src/licensedcode/data/rules/public-domain_337.yml deleted file mode 100644 index c26167ee8c0..00000000000 --- a/src/licensedcode/data/rules/public-domain_337.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/public-domain_338.RULE b/src/licensedcode/data/rules/public-domain_338.RULE index 835b6529ea5..b895dc7961f 100644 --- a/src/licensedcode/data/rules/public-domain_338.RULE +++ b/src/licensedcode/data/rules/public-domain_338.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + source files are in the public domain: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_338.yml b/src/licensedcode/data/rules/public-domain_338.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_338.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_339.RULE b/src/licensedcode/data/rules/public-domain_339.RULE index 443026eef3e..347a7baaf5c 100644 --- a/src/licensedcode/data/rules/public-domain_339.RULE +++ b/src/licensedcode/data/rules/public-domain_339.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + files are in the public domain: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_339.yml b/src/licensedcode/data/rules/public-domain_339.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_339.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_34.RULE b/src/licensedcode/data/rules/public-domain_34.RULE index d358db5ff52..c0656076c39 100644 --- a/src/licensedcode/data/rules/public-domain_34.RULE +++ b/src/licensedcode/data/rules/public-domain_34.RULE @@ -1,2 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + | I have put these systems into the public domain so that - | people everywhere can use the ideas freely if they wish. + | people everywhere can use the ideas freely if they wish. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_34.yml b/src/licensedcode/data/rules/public-domain_34.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_34.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_340.RULE b/src/licensedcode/data/rules/public-domain_340.RULE index 15ac0684982..3897c10a901 100644 --- a/src/licensedcode/data/rules/public-domain_340.RULE +++ b/src/licensedcode/data/rules/public-domain_340.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + The following source files are in the public domain: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_340.yml b/src/licensedcode/data/rules/public-domain_340.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_340.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_341.RULE b/src/licensedcode/data/rules/public-domain_341.RULE index b1ef9f5c4a1..b86620e2a93 100644 --- a/src/licensedcode/data/rules/public-domain_341.RULE +++ b/src/licensedcode/data/rules/public-domain_341.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + place this file into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_341.yml b/src/licensedcode/data/rules/public-domain_341.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_342.RULE b/src/licensedcode/data/rules/public-domain_342.RULE index b14cabd54e0..55f8ce029cf 100644 --- a/src/licensedcode/data/rules/public-domain_342.RULE +++ b/src/licensedcode/data/rules/public-domain_342.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + I place this file into the public domain. Permission to use, copy, modify, and distribute it for any purpose with or without fee is hereby granted, without any conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_342.yml b/src/licensedcode/data/rules/public-domain_342.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_342.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_343.RULE b/src/licensedcode/data/rules/public-domain_343.RULE index f09ea51ec5e..a1b5ce3978e 100644 --- a/src/licensedcode/data/rules/public-domain_343.RULE +++ b/src/licensedcode/data/rules/public-domain_343.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This file is freeware. You are free to use it and add your own license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_343.yml b/src/licensedcode/data/rules/public-domain_343.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_343.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_344.RULE b/src/licensedcode/data/rules/public-domain_344.RULE index 8c7ea559a77..19942704c57 100644 --- a/src/licensedcode/data/rules/public-domain_344.RULE +++ b/src/licensedcode/data/rules/public-domain_344.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Derived from public domain source \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_344.yml b/src/licensedcode/data/rules/public-domain_344.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_344.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_345.RULE b/src/licensedcode/data/rules/public-domain_345.RULE index cc60b7999b2..543d5a3243e 100644 --- a/src/licensedcode/data/rules/public-domain_345.RULE +++ b/src/licensedcode/data/rules/public-domain_345.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + LICENCE: all the source code provided by Alliance is Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_345.yml b/src/licensedcode/data/rules/public-domain_345.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_345.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_346.RULE b/src/licensedcode/data/rules/public-domain_346.RULE index 1dd15399dff..9eedde10d63 100644 --- a/src/licensedcode/data/rules/public-domain_346.RULE +++ b/src/licensedcode/data/rules/public-domain_346.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + also placed in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_346.yml b/src/licensedcode/data/rules/public-domain_346.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_346.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_347.RULE b/src/licensedcode/data/rules/public-domain_347.RULE index 925fcbb5419..5dd7d989ce9 100644 --- a/src/licensedcode/data/rules/public-domain_347.RULE +++ b/src/licensedcode/data/rules/public-domain_347.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + placed in public domain as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_347.yml b/src/licensedcode/data/rules/public-domain_347.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_347.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_348.RULE b/src/licensedcode/data/rules/public-domain_348.RULE index 81027f4ff86..bd22628d9de 100644 --- a/src/licensedcode/data/rules/public-domain_348.RULE +++ b/src/licensedcode/data/rules/public-domain_348.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + also placed in the Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_348.yml b/src/licensedcode/data/rules/public-domain_348.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_348.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_349.RULE b/src/licensedcode/data/rules/public-domain_349.RULE index 064095dd1a6..11bf06dfe59 100644 --- a/src/licensedcode/data/rules/public-domain_349.RULE +++ b/src/licensedcode/data/rules/public-domain_349.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is explicitely put in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_349.yml b/src/licensedcode/data/rules/public-domain_349.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_349.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_35.RULE b/src/licensedcode/data/rules/public-domain_35.RULE index c35765f2579..a2f35e511e4 100644 --- a/src/licensedcode/data/rules/public-domain_35.RULE +++ b/src/licensedcode/data/rules/public-domain_35.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + The programs for computer Modern are in the public domain, and readers | may freely generate and hand-tune their own fonts using the algorithms - | of this book. \ No newline at end of file + | of this book. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_35.yml b/src/licensedcode/data/rules/public-domain_35.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_35.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_350.RULE b/src/licensedcode/data/rules/public-domain_350.RULE index 549bedbc350..c5a8f9c2780 100644 --- a/src/licensedcode/data/rules/public-domain_350.RULE +++ b/src/licensedcode/data/rules/public-domain_350.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + code is explicitely put in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_350.yml b/src/licensedcode/data/rules/public-domain_350.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_350.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_351.RULE b/src/licensedcode/data/rules/public-domain_351.RULE index c345e58e2bf..118715b460d 100644 --- a/src/licensedcode/data/rules/public-domain_351.RULE +++ b/src/licensedcode/data/rules/public-domain_351.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Public domain I hereby place my work into the public domain. diff --git a/src/licensedcode/data/rules/public-domain_351.yml b/src/licensedcode/data/rules/public-domain_351.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_351.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_352.RULE b/src/licensedcode/data/rules/public-domain_352.RULE index 7f0ceb0c1e7..57c0b9e53b2 100644 --- a/src/licensedcode/data/rules/public-domain_352.RULE +++ b/src/licensedcode/data/rules/public-domain_352.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + I hereby place my work into the public domain. All my copyrights, including all related and neighbouring rights, are abandoned. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_352.yml b/src/licensedcode/data/rules/public-domain_352.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_352.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_353.RULE b/src/licensedcode/data/rules/public-domain_353.RULE index 04369e12de9..2072f5c8afc 100644 --- a/src/licensedcode/data/rules/public-domain_353.RULE +++ b/src/licensedcode/data/rules/public-domain_353.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +minimum_coverage: 80 +--- + This file has been put in the public domain. -You can do whatever you want with this file +You can do whatever you want with this file \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_353.yml b/src/licensedcode/data/rules/public-domain_353.yml deleted file mode 100644 index 00979da968d..00000000000 --- a/src/licensedcode/data/rules/public-domain_353.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/public-domain_354.RULE b/src/licensedcode/data/rules/public-domain_354.RULE index e8ee20b96b5..b58e538a299 100644 --- a/src/licensedcode/data/rules/public-domain_354.RULE +++ b/src/licensedcode/data/rules/public-domain_354.RULE @@ -1,2 +1,11 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: Seen in debian copyright files for libhogween and libnettle with tag `public-domain` + and refers to files in public domain. +--- + I believe that most files in debian/ hardly contains any creative - expression eligible for copyright. + expression eligible for copyright. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_354.yml b/src/licensedcode/data/rules/public-domain_354.yml deleted file mode 100644 index 05166fd59c8..00000000000 --- a/src/licensedcode/data/rules/public-domain_354.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: Seen in debian copyright files for libhogween and libnettle with tag `public-domain` - and refers to files in public domain. diff --git a/src/licensedcode/data/rules/public-domain_355.RULE b/src/licensedcode/data/rules/public-domain_355.RULE index f9732e2585e..38e5708da45 100644 --- a/src/licensedcode/data/rules/public-domain_355.RULE +++ b/src/licensedcode/data/rules/public-domain_355.RULE @@ -1 +1,9 @@ - No copyright to license. +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +notes: Seen in debian copyright file for liblzma. +--- + + No copyright to license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_355.yml b/src/licensedcode/data/rules/public-domain_355.yml deleted file mode 100644 index eb0447ec3a6..00000000000 --- a/src/licensedcode/data/rules/public-domain_355.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 -notes: Seen in debian copyright file for liblzma. diff --git a/src/licensedcode/data/rules/public-domain_356.RULE b/src/licensedcode/data/rules/public-domain_356.RULE index 0269896c62d..69b6c03cbd6 100644 --- a/src/licensedcode/data/rules/public-domain_356.RULE +++ b/src/licensedcode/data/rules/public-domain_356.RULE @@ -1 +1,9 @@ -See the note on AUTHORS, README, and so on above. +--- +license_expression: public-domain +is_license_notice: yes +relevance: 55 +minimum_coverage: 100 +notes: Seen in debian copyright file for liblzma. +--- + +See the note on AUTHORS, README, and so on above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_356.yml b/src/licensedcode/data/rules/public-domain_356.yml deleted file mode 100644 index 17b424d8add..00000000000 --- a/src/licensedcode/data/rules/public-domain_356.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 55 -minimum_coverage: 100 -notes: Seen in debian copyright file for liblzma. diff --git a/src/licensedcode/data/rules/public-domain_357.RULE b/src/licensedcode/data/rules/public-domain_357.RULE index 3edfe72a6b2..61ac00ad601 100644 --- a/src/licensedcode/data/rules/public-domain_357.RULE +++ b/src/licensedcode/data/rules/public-domain_357.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + the source code examples published as part of this docs directory are placed into the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_357.yml b/src/licensedcode/data/rules/public-domain_357.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_357.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_358.RULE b/src/licensedcode/data/rules/public-domain_358.RULE index 7aed611f1e7..eaee4e5ab8a 100644 --- a/src/licensedcode/data/rules/public-domain_358.RULE +++ b/src/licensedcode/data/rules/public-domain_358.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This file is put in the public domain, to the extent permitted under applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_358.yml b/src/licensedcode/data/rules/public-domain_358.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_358.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_359.RULE b/src/licensedcode/data/rules/public-domain_359.RULE index 21941b63c3e..166f12329c1 100644 --- a/src/licensedcode/data/rules/public-domain_359.RULE +++ b/src/licensedcode/data/rules/public-domain_359.RULE @@ -1,7 +1,13 @@ +--- +license_expression: public-domain +is_license_text: yes +minimum_coverage: 95 +--- + This source file is placed in the public domian. Any resemblance to NCSA Telnet, living or dead, is purely coincidental. . National Center for Supercomputing Applications 152 Computing Applications Building 605 E. Springfield Ave. - Champaign, IL 61820 + Champaign, IL 61820 \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_359.yml b/src/licensedcode/data/rules/public-domain_359.yml deleted file mode 100644 index 2dd553f4b13..00000000000 --- a/src/licensedcode/data/rules/public-domain_359.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/public-domain_36.RULE b/src/licensedcode/data/rules/public-domain_36.RULE index 3af52266cfd..0650aa9f1cb 100644 --- a/src/licensedcode/data/rules/public-domain_36.RULE +++ b/src/licensedcode/data/rules/public-domain_36.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + The macros are in public domain. You may distribute or modify it in any ways you like. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_36.yml b/src/licensedcode/data/rules/public-domain_36.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_360.RULE b/src/licensedcode/data/rules/public-domain_360.RULE index 50c94e01965..3a62ce2a22e 100644 --- a/src/licensedcode/data/rules/public-domain_360.RULE +++ b/src/licensedcode/data/rules/public-domain_360.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +minimum_coverage: 80 +--- + The Debian packaging files are in the public domain. You may freely use, modify, distribute, and relicense them. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_360.yml b/src/licensedcode/data/rules/public-domain_360.yml deleted file mode 100644 index 00979da968d..00000000000 --- a/src/licensedcode/data/rules/public-domain_360.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/public-domain_361.RULE b/src/licensedcode/data/rules/public-domain_361.RULE index 15fde9ff725..9956f52c00e 100644 --- a/src/licensedcode/data/rules/public-domain_361.RULE +++ b/src/licensedcode/data/rules/public-domain_361.RULE @@ -1,3 +1,25 @@ +--- +license_expression: public-domain +is_license_notice: yes +ignorable_copyrights: + - copyright 1992 by Eric Haines, erich@eye.com +ignorable_holders: + - Eric Haines +ignorable_authors: + - Craig Milo Rogers, Rogers@ISI.Edu + - Rob McCool +ignorable_emails: + - Rogers@ISI.Edu + - cloos@jhcloos.com + - erich@eye.com + - jsbell@acs.ucalgary.ca + - kevinh@pulua.hcc.hawaii.edu + - mark@ukweb.com + - nate@tripod.com + - randy@zyzzyva.com + - robm@ncsa.uiuc.edu +--- + This imagemap module started as a port of the original imagemap.c written by Rob McCool (11/13/93 robm@ncsa.uiuc.edu). This version includes the mapping algorithms found in version 1.3 @@ -30,6 +52,4 @@ or: directive URL x,y ... "Menu text" Map format and menu concept courtesy Joshua Bell, jsbell@acs.ucalgary.ca. . - Mark Cox, mark@ukweb.com, Allow relative URLs even when no base specified - - + Mark Cox, mark@ukweb.com, Allow relative URLs even when no base specified \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_361.yml b/src/licensedcode/data/rules/public-domain_361.yml deleted file mode 100644 index a6533c6ca90..00000000000 --- a/src/licensedcode/data/rules/public-domain_361.yml +++ /dev/null @@ -1,19 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -ignorable_copyrights: - - copyright 1992 by Eric Haines, erich@eye.com -ignorable_holders: - - Eric Haines -ignorable_authors: - - Craig Milo Rogers, Rogers@ISI.Edu - - Rob McCool -ignorable_emails: - - Rogers@ISI.Edu - - cloos@jhcloos.com - - erich@eye.com - - jsbell@acs.ucalgary.ca - - kevinh@pulua.hcc.hawaii.edu - - mark@ukweb.com - - nate@tripod.com - - randy@zyzzyva.com - - robm@ncsa.uiuc.edu diff --git a/src/licensedcode/data/rules/public-domain_362.RULE b/src/licensedcode/data/rules/public-domain_362.RULE index f1daa9f9065..3d43e1f3cf9 100644 --- a/src/licensedcode/data/rules/public-domain_362.RULE +++ b/src/licensedcode/data/rules/public-domain_362.RULE @@ -1,3 +1,19 @@ +--- +license_expression: public-domain +is_license_notice: yes +minimum_coverage: 100 +ignorable_authors: + - guido@sienanet.it +ignorable_urls: + - http://delphi.icm.edu.pl/authors/a0002451.htm + - http://delphi.icm.edu.pl/ftp/d30free/tmsgvoc.zip + - http://torry.net/vcl/comms/voice/tmsgvoc.zip + - https://github.com/asterisk/asterisk/commit/0ed94773 + - https://issues.asterisk.org/jira/browse/ASTERISK-24172 +ignorable_emails: + - guido@sienanet.it +--- + File lacks copyright and licensing, but contains the comment "Conversion routines derived from code by guido@sienanet.it" which might be interpreted as a copyright holder not granting a license. @@ -16,5 +32,4 @@ . . - See also . - + See also . \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_362.yml b/src/licensedcode/data/rules/public-domain_362.yml deleted file mode 100644 index f350c614b81..00000000000 --- a/src/licensedcode/data/rules/public-domain_362.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -minimum_coverage: 100 -ignorable_authors: - - guido@sienanet.it -ignorable_urls: - - http://delphi.icm.edu.pl/authors/a0002451.htm - - http://delphi.icm.edu.pl/ftp/d30free/tmsgvoc.zip - - http://torry.net/vcl/comms/voice/tmsgvoc.zip - - https://github.com/asterisk/asterisk/commit/0ed94773 - - https://issues.asterisk.org/jira/browse/ASTERISK-24172 -ignorable_emails: - - guido@sienanet.it diff --git a/src/licensedcode/data/rules/public-domain_363.RULE b/src/licensedcode/data/rules/public-domain_363.RULE index 9a8a8986181..2ef2717d292 100644 --- a/src/licensedcode/data/rules/public-domain_363.RULE +++ b/src/licensedcode/data/rules/public-domain_363.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://web.archive.org/web/20210724101640/https://www.linux.co.cr/unix-source-code/review/1985/1103.html + and https://github.com/Wind4/vlmcsd/blob/65228e5c7916acd947ffb53be18abadafbc1be56/src/wingetopt.h +--- + AT&T Public License Code given out at the 1985 UNIFORUM conference in Dallas. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_363.yml b/src/licensedcode/data/rules/public-domain_363.yml deleted file mode 100644 index 1fd6a33e163..00000000000 --- a/src/licensedcode/data/rules/public-domain_363.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://web.archive.org/web/20210724101640/https://www.linux.co.cr/unix-source-code/review/1985/1103.html - and https://github.com/Wind4/vlmcsd/blob/65228e5c7916acd947ffb53be18abadafbc1be56/src/wingetopt.h diff --git a/src/licensedcode/data/rules/public-domain_364.RULE b/src/licensedcode/data/rules/public-domain_364.RULE index 9a42813456d..fb0cdb674cb 100644 --- a/src/licensedcode/data/rules/public-domain_364.RULE +++ b/src/licensedcode/data/rules/public-domain_364.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + All of which is in the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_364.yml b/src/licensedcode/data/rules/public-domain_364.yml deleted file mode 100644 index 7248c1eb1f1..00000000000 --- a/src/licensedcode/data/rules/public-domain_364.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_365.RULE b/src/licensedcode/data/rules/public-domain_365.RULE index 1a2abefc319..2ebc08c59f8 100644 --- a/src/licensedcode/data/rules/public-domain_365.RULE +++ b/src/licensedcode/data/rules/public-domain_365.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + also in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_365.yml b/src/licensedcode/data/rules/public-domain_365.yml deleted file mode 100644 index 7248c1eb1f1..00000000000 --- a/src/licensedcode/data/rules/public-domain_365.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_366.RULE b/src/licensedcode/data/rules/public-domain_366.RULE index 044c1b9141e..ca0cf15493e 100644 --- a/src/licensedcode/data/rules/public-domain_366.RULE +++ b/src/licensedcode/data/rules/public-domain_366.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + package which is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_366.yml b/src/licensedcode/data/rules/public-domain_366.yml deleted file mode 100644 index 7248c1eb1f1..00000000000 --- a/src/licensedcode/data/rules/public-domain_366.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_367.RULE b/src/licensedcode/data/rules/public-domain_367.RULE index e5dc4063393..0cc0d111948 100644 --- a/src/licensedcode/data/rules/public-domain_367.RULE +++ b/src/licensedcode/data/rules/public-domain_367.RULE @@ -1,2 +1,9 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 90 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + The name files form the Census report is a government document which I don't think can be copyrighted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_367.yml b/src/licensedcode/data/rules/public-domain_367.yml deleted file mode 100644 index 4e2a49efb96..00000000000 --- a/src/licensedcode/data/rules/public-domain_367.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 90 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_368.RULE b/src/licensedcode/data/rules/public-domain_368.RULE index 4627e6cb6c8..c5f680323aa 100644 --- a/src/licensedcode/data/rules/public-domain_368.RULE +++ b/src/licensedcode/data/rules/public-domain_368.RULE @@ -1,2 +1,9 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + list is also in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_368.yml b/src/licensedcode/data/rules/public-domain_368.yml deleted file mode 100644 index 7248c1eb1f1..00000000000 --- a/src/licensedcode/data/rules/public-domain_368.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_369.RULE b/src/licensedcode/data/rules/public-domain_369.RULE index 6f7999e4d19..2c1b2c76240 100644 --- a/src/licensedcode/data/rules/public-domain_369.RULE +++ b/src/licensedcode/data/rules/public-domain_369.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + package and Supplement is in the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_369.yml b/src/licensedcode/data/rules/public-domain_369.yml deleted file mode 100644 index 7248c1eb1f1..00000000000 --- a/src/licensedcode/data/rules/public-domain_369.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_37.RULE b/src/licensedcode/data/rules/public-domain_37.RULE index 77535ccf906..7bcf2e8d098 100644 --- a/src/licensedcode/data/rules/public-domain_37.RULE +++ b/src/licensedcode/data/rules/public-domain_37.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +notes: see https://github.com/libssh2/libssh2/blob/8dc9f4c1566dc2812a358c44244420365e155f5f/nw/nwlib.c +--- + given to OpenSource copyright-free \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_37.yml b/src/licensedcode/data/rules/public-domain_37.yml deleted file mode 100644 index 76dfd50b506..00000000000 --- a/src/licensedcode/data/rules/public-domain_37.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -notes: see https://github.com/libssh2/libssh2/blob/8dc9f4c1566dc2812a358c44244420365e155f5f/nw/nwlib.c diff --git a/src/licensedcode/data/rules/public-domain_370.RULE b/src/licensedcode/data/rules/public-domain_370.RULE index 1b722eaaef6..3688d97c72f 100644 --- a/src/licensedcode/data/rules/public-domain_370.RULE +++ b/src/licensedcode/data/rules/public-domain_370.RULE @@ -1,2 +1,9 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + So are you saying your word list is also in the public domain? That is the intention. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_370.yml b/src/licensedcode/data/rules/public-domain_370.yml deleted file mode 100644 index 7248c1eb1f1..00000000000 --- a/src/licensedcode/data/rules/public-domain_370.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_371.RULE b/src/licensedcode/data/rules/public-domain_371.RULE index ddcfff2482a..c94fbc2cbe1 100644 --- a/src/licensedcode/data/rules/public-domain_371.RULE +++ b/src/licensedcode/data/rules/public-domain_371.RULE @@ -1,2 +1,9 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + The "UK English Wordlist With Frequency Classification" is also in the Public Domain: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_371.yml b/src/licensedcode/data/rules/public-domain_371.yml deleted file mode 100644 index 7248c1eb1f1..00000000000 --- a/src/licensedcode/data/rules/public-domain_371.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_372.RULE b/src/licensedcode/data/rules/public-domain_372.RULE index 721356c027d..dc4a8d77138 100644 --- a/src/licensedcode/data/rules/public-domain_372.RULE +++ b/src/licensedcode/data/rules/public-domain_372.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 90 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + There were many many sources in total, but any text marked "copyright" was avoided. Locally-written documentation was one source. An earlier version of the list resided in a filespace called diff --git a/src/licensedcode/data/rules/public-domain_372.yml b/src/licensedcode/data/rules/public-domain_372.yml deleted file mode 100644 index 4e2a49efb96..00000000000 --- a/src/licensedcode/data/rules/public-domain_372.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 90 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_373.RULE b/src/licensedcode/data/rules/public-domain_373.RULE index 7b5692d9a5d..1d45e84f5b1 100644 --- a/src/licensedcode/data/rules/public-domain_373.RULE +++ b/src/licensedcode/data/rules/public-domain_373.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +--- + package was explicitly placed in the public domain: The Moby lexicon project is complete and has diff --git a/src/licensedcode/data/rules/public-domain_373.yml b/src/licensedcode/data/rules/public-domain_373.yml deleted file mode 100644 index 712812142d2..00000000000 --- a/src/licensedcode/data/rules/public-domain_373.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip diff --git a/src/licensedcode/data/rules/public-domain_374.RULE b/src/licensedcode/data/rules/public-domain_374.RULE index d7370c342c0..64469293f57 100644 --- a/src/licensedcode/data/rules/public-domain_374.RULE +++ b/src/licensedcode/data/rules/public-domain_374.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + PUBLIC DOMAIN NOTICE \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_374.yml b/src/licensedcode/data/rules/public-domain_374.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_374.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_375.RULE b/src/licensedcode/data/rules/public-domain_375.RULE index 1fd8dd3d770..6b29c8532f9 100644 --- a/src/licensedcode/data/rules/public-domain_375.RULE +++ b/src/licensedcode/data/rules/public-domain_375.RULE @@ -1 +1,10 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in Info-Zip +ignorable_authors: + - Mark Adler +--- + originally written by Mark Adler who submitted it as public domain code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_375.yml b/src/licensedcode/data/rules/public-domain_375.yml deleted file mode 100644 index 4b6511d2f72..00000000000 --- a/src/licensedcode/data/rules/public-domain_375.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in Info-Zip -ignorable_authors: - - Mark Adler diff --git a/src/licensedcode/data/rules/public-domain_376.RULE b/src/licensedcode/data/rules/public-domain_376.RULE index 7968761c55a..3c9f1054906 100644 --- a/src/licensedcode/data/rules/public-domain_376.RULE +++ b/src/licensedcode/data/rules/public-domain_376.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + package was explicitly placed in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_376.yml b/src/licensedcode/data/rules/public-domain_376.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_376.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_377.RULE b/src/licensedcode/data/rules/public-domain_377.RULE index 47cfc4e43d3..5976fd1bbce 100644 --- a/src/licensedcode/data/rules/public-domain_377.RULE +++ b/src/licensedcode/data/rules/public-domain_377.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + The package was explicitly placed in the public domain: The lexicon project is complete and has diff --git a/src/licensedcode/data/rules/public-domain_377.yml b/src/licensedcode/data/rules/public-domain_377.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_377.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_378.RULE b/src/licensedcode/data/rules/public-domain_378.RULE index ef4f8de5c5c..307592b81e6 100644 --- a/src/licensedcode/data/rules/public-domain_378.RULE +++ b/src/licensedcode/data/rules/public-domain_378.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + is also in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_378.yml b/src/licensedcode/data/rules/public-domain_378.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_378.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_379.RULE b/src/licensedcode/data/rules/public-domain_379.RULE index dc03ade5b42..439dae067e4 100644 --- a/src/licensedcode/data/rules/public-domain_379.RULE +++ b/src/licensedcode/data/rules/public-domain_379.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + The author or authors of this code dedicate any and all copyright interest in this code to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. diff --git a/src/licensedcode/data/rules/public-domain_379.yml b/src/licensedcode/data/rules/public-domain_379.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_379.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_38.RULE b/src/licensedcode/data/rules/public-domain_38.RULE index 1f1c1d9eed9..b6f16ed4b99 100644 --- a/src/licensedcode/data/rules/public-domain_38.RULE +++ b/src/licensedcode/data/rules/public-domain_38.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + is public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_38.yml b/src/licensedcode/data/rules/public-domain_38.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_380.RULE b/src/licensedcode/data/rules/public-domain_380.RULE index adbcc8cf3a6..8a72fc4cda8 100644 --- a/src/licensedcode/data/rules/public-domain_380.RULE +++ b/src/licensedcode/data/rules/public-domain_380.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + SQLite is in the Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_380.yml b/src/licensedcode/data/rules/public-domain_380.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_380.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_381.RULE b/src/licensedcode/data/rules/public-domain_381.RULE index 171ea7b8d76..46f474615f2 100644 --- a/src/licensedcode/data/rules/public-domain_381.RULE +++ b/src/licensedcode/data/rules/public-domain_381.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + public domain dedications \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_381.yml b/src/licensedcode/data/rules/public-domain_381.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_381.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_382.RULE b/src/licensedcode/data/rules/public-domain_382.RULE index 5e5e4f4b39c..9fcd7c53637 100644 --- a/src/licensedcode/data/rules/public-domain_382.RULE +++ b/src/licensedcode/data/rules/public-domain_382.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + All of the code and documentation in SQLite has been dedicated to the public domain by the authors. All code authors, and representatives of the companies they work for, have signed affidavits dedicating their contributions to the public domain and originals of those signed affidavits are stored in a firesafe at the main offices of Hwaci. Anyone is free to copy, modify, publish, diff --git a/src/licensedcode/data/rules/public-domain_382.yml b/src/licensedcode/data/rules/public-domain_382.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_382.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_383.RULE b/src/licensedcode/data/rules/public-domain_383.RULE index b64293a6953..81e4e01abfb 100644 --- a/src/licensedcode/data/rules/public-domain_383.RULE +++ b/src/licensedcode/data/rules/public-domain_383.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + This file, unlike the rest of Ghostscript, consists entirely of information copied from public sources. It therefore is not covered diff --git a/src/licensedcode/data/rules/public-domain_383.yml b/src/licensedcode/data/rules/public-domain_383.yml deleted file mode 100644 index fd1246dff29..00000000000 --- a/src/licensedcode/data/rules/public-domain_383.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_384.RULE b/src/licensedcode/data/rules/public-domain_384.RULE index e684215a78a..38c59415315 100644 --- a/src/licensedcode/data/rules/public-domain_384.RULE +++ b/src/licensedcode/data/rules/public-domain_384.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + NO COPYRIGHT - THIS IS 100% IN THE PUBLIC DOMAIN \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_384.yml b/src/licensedcode/data/rules/public-domain_384.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_384.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_385.RULE b/src/licensedcode/data/rules/public-domain_385.RULE index 9990c7536a9..f5fb8d250fc 100644 --- a/src/licensedcode/data/rules/public-domain_385.RULE +++ b/src/licensedcode/data/rules/public-domain_385.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + sources are from public-domain or other freely available sources \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_385.yml b/src/licensedcode/data/rules/public-domain_385.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_385.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_386.RULE b/src/licensedcode/data/rules/public-domain_386.RULE index cbdb43d74cc..05eaa3829d9 100644 --- a/src/licensedcode/data/rules/public-domain_386.RULE +++ b/src/licensedcode/data/rules/public-domain_386.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + public-domian implementations \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_386.yml b/src/licensedcode/data/rules/public-domain_386.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_386.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_387.RULE b/src/licensedcode/data/rules/public-domain_387.RULE index 3f443a53b92..9cc7ea51e02 100644 --- a/src/licensedcode/data/rules/public-domain_387.RULE +++ b/src/licensedcode/data/rules/public-domain_387.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Mostly Public Domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_387.yml b/src/licensedcode/data/rules/public-domain_387.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_387.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_388.RULE b/src/licensedcode/data/rules/public-domain_388.RULE index 775d8f1d82d..ae16f7ae280 100644 --- a/src/licensedcode/data/rules/public-domain_388.RULE +++ b/src/licensedcode/data/rules/public-domain_388.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Both have released their contributios into the public domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_388.yml b/src/licensedcode/data/rules/public-domain_388.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_388.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_389.RULE b/src/licensedcode/data/rules/public-domain_389.RULE index 6354ac9fb2d..5e5335b3f1b 100644 --- a/src/licensedcode/data/rules/public-domain_389.RULE +++ b/src/licensedcode/data/rules/public-domain_389.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + All patches included with are Free in the Public Domian. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_389.yml b/src/licensedcode/data/rules/public-domain_389.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_389.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_39.RULE b/src/licensedcode/data/rules/public-domain_39.RULE index 15eebb9a7b7..fec5949cc43 100644 --- a/src/licensedcode/data/rules/public-domain_39.RULE +++ b/src/licensedcode/data/rules/public-domain_39.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This is free software. You are welcome to use it however you want. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_39.yml b/src/licensedcode/data/rules/public-domain_39.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_390.RULE b/src/licensedcode/data/rules/public-domain_390.RULE index 5d2b236b361..aaab625d940 100644 --- a/src/licensedcode/data/rules/public-domain_390.RULE +++ b/src/licensedcode/data/rules/public-domain_390.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + are Free in the Public Domian. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_390.yml b/src/licensedcode/data/rules/public-domain_390.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_390.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_391.RULE b/src/licensedcode/data/rules/public-domain_391.RULE index 127d3ce1e5e..16e21156f3e 100644 --- a/src/licensedcode/data/rules/public-domain_391.RULE +++ b/src/licensedcode/data/rules/public-domain_391.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + are Public domian and cannot be copyrighted \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_391.yml b/src/licensedcode/data/rules/public-domain_391.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_391.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_392.RULE b/src/licensedcode/data/rules/public-domain_392.RULE index 6b218d97c10..3895970abbb 100644 --- a/src/licensedcode/data/rules/public-domain_392.RULE +++ b/src/licensedcode/data/rules/public-domain_392.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This source file is placed in the public domian. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_392.yml b/src/licensedcode/data/rules/public-domain_392.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_392.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_393.RULE b/src/licensedcode/data/rules/public-domain_393.RULE index cac28a7c3ec..19955a017d0 100644 --- a/src/licensedcode/data/rules/public-domain_393.RULE +++ b/src/licensedcode/data/rules/public-domain_393.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + placed in the public domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_393.yml b/src/licensedcode/data/rules/public-domain_393.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_393.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_394.RULE b/src/licensedcode/data/rules/public-domain_394.RULE index 2631408506a..21a71833350 100644 --- a/src/licensedcode/data/rules/public-domain_394.RULE +++ b/src/licensedcode/data/rules/public-domain_394.RULE @@ -1 +1,6 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + All the contents of this site are in public domian. Please use them how you want and try to link back to us \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_394.yml b/src/licensedcode/data/rules/public-domain_394.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_394.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_395.RULE b/src/licensedcode/data/rules/public-domain_395.RULE index d8d415893d1..b0fea65848d 100644 --- a/src/licensedcode/data/rules/public-domain_395.RULE +++ b/src/licensedcode/data/rules/public-domain_395.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +notes: https://github.com/davidomelettes/tactile-git/blob/ab5cb680e88d7da66bb858a49823b26832204890/lib/phemto/README#L63 +--- + is public domian code. The only requirement is to acknowledge the authors in articles where is used as an example. No warranty is implied by this. You use diff --git a/src/licensedcode/data/rules/public-domain_395.yml b/src/licensedcode/data/rules/public-domain_395.yml deleted file mode 100644 index d88c1226632..00000000000 --- a/src/licensedcode/data/rules/public-domain_395.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -notes: https://github.com/davidomelettes/tactile-git/blob/ab5cb680e88d7da66bb858a49823b26832204890/lib/phemto/README#L63 diff --git a/src/licensedcode/data/rules/public-domain_396.RULE b/src/licensedcode/data/rules/public-domain_396.RULE index 304da394dce..31d2f8c8729 100644 --- a/src/licensedcode/data/rules/public-domain_396.RULE +++ b/src/licensedcode/data/rules/public-domain_396.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + All photographs are public domian. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_396.yml b/src/licensedcode/data/rules/public-domain_396.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_396.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_397.RULE b/src/licensedcode/data/rules/public-domain_397.RULE index 5ac5ab32937..f3a7ed60429 100644 --- a/src/licensedcode/data/rules/public-domain_397.RULE +++ b/src/licensedcode/data/rules/public-domain_397.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + it's public domian. Feel free to use it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_397.yml b/src/licensedcode/data/rules/public-domain_397.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_397.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_398.RULE b/src/licensedcode/data/rules/public-domain_398.RULE index 86a175fb523..0899aa93640 100644 --- a/src/licensedcode/data/rules/public-domain_398.RULE +++ b/src/licensedcode/data/rules/public-domain_398.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This piece of firmware is in public domian. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_398.yml b/src/licensedcode/data/rules/public-domain_398.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_398.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_399.RULE b/src/licensedcode/data/rules/public-domain_399.RULE index 89468288fee..d4867e17751 100644 --- a/src/licensedcode/data/rules/public-domain_399.RULE +++ b/src/licensedcode/data/rules/public-domain_399.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +--- + public domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_399.yml b/src/licensedcode/data/rules/public-domain_399.yml deleted file mode 100644 index a41446614f6..00000000000 --- a/src/licensedcode/data/rules/public-domain_399.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_4.RULE b/src/licensedcode/data/rules/public-domain_4.RULE index 5e30c7e6907..46cfc5d9487 100644 --- a/src/licensedcode/data/rules/public-domain_4.RULE +++ b/src/licensedcode/data/rules/public-domain_4.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + is public domain. As should all quality software be. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_4.yml b/src/licensedcode/data/rules/public-domain_4.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_40.RULE b/src/licensedcode/data/rules/public-domain_40.RULE index 9653b7f8593..3e545369b51 100644 --- a/src/licensedcode/data/rules/public-domain_40.RULE +++ b/src/licensedcode/data/rules/public-domain_40.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This is free software that you can use however you like. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_40.yml b/src/licensedcode/data/rules/public-domain_40.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_400.RULE b/src/licensedcode/data/rules/public-domain_400.RULE index 1b68c13d8ff..573c71361aa 100644 --- a/src/licensedcode/data/rules/public-domain_400.RULE +++ b/src/licensedcode/data/rules/public-domain_400.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + All images Public Domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_400.yml b/src/licensedcode/data/rules/public-domain_400.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_400.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_401.RULE b/src/licensedcode/data/rules/public-domain_401.RULE index 0fe0f2d3d31..0348d89fc93 100644 --- a/src/licensedcode/data/rules/public-domain_401.RULE +++ b/src/licensedcode/data/rules/public-domain_401.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Consider this public domian, no magic is here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_401.yml b/src/licensedcode/data/rules/public-domain_401.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_401.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_402.RULE b/src/licensedcode/data/rules/public-domain_402.RULE index f996017dad2..5ebc875b1a9 100644 --- a/src/licensedcode/data/rules/public-domain_402.RULE +++ b/src/licensedcode/data/rules/public-domain_402.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +--- + Liscense: Public Domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_402.yml b/src/licensedcode/data/rules/public-domain_402.yml deleted file mode 100644 index a41446614f6..00000000000 --- a/src/licensedcode/data/rules/public-domain_402.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_403.RULE b/src/licensedcode/data/rules/public-domain_403.RULE index ad6f7ff364d..796b813fa51 100644 --- a/src/licensedcode/data/rules/public-domain_403.RULE +++ b/src/licensedcode/data/rules/public-domain_403.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Released in to the Public Domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_403.yml b/src/licensedcode/data/rules/public-domain_403.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_403.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_404.RULE b/src/licensedcode/data/rules/public-domain_404.RULE index 5463893d7aa..f77a581e9da 100644 --- a/src/licensedcode/data/rules/public-domain_404.RULE +++ b/src/licensedcode/data/rules/public-domain_404.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +--- + License: none (public domain) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_404.yml b/src/licensedcode/data/rules/public-domain_404.yml deleted file mode 100644 index a41446614f6..00000000000 --- a/src/licensedcode/data/rules/public-domain_404.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_405.RULE b/src/licensedcode/data/rules/public-domain_405.RULE index 3926ed1b319..ea14d412720 100644 --- a/src/licensedcode/data/rules/public-domain_405.RULE +++ b/src/licensedcode/data/rules/public-domain_405.RULE @@ -1 +1,6 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + As it stands this code is entirely Public Domian and you may do with it as you please... \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_405.yml b/src/licensedcode/data/rules/public-domain_405.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_405.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_406.RULE b/src/licensedcode/data/rules/public-domain_406.RULE index 648d767074b..4d16b5ccdd3 100644 --- a/src/licensedcode/data/rules/public-domain_406.RULE +++ b/src/licensedcode/data/rules/public-domain_406.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +notes: typo +--- + AssemblyCopyright("Public Domian" \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_406.yml b/src/licensedcode/data/rules/public-domain_406.yml deleted file mode 100644 index 5634280ff80..00000000000 --- a/src/licensedcode/data/rules/public-domain_406.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 -notes: typo diff --git a/src/licensedcode/data/rules/public-domain_407.RULE b/src/licensedcode/data/rules/public-domain_407.RULE index 31d6f129f20..cfc8c307bca 100644 --- a/src/licensedcode/data/rules/public-domain_407.RULE +++ b/src/licensedcode/data/rules/public-domain_407.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +notes: typo +--- + Licence "Public Domian" \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_407.yml b/src/licensedcode/data/rules/public-domain_407.yml deleted file mode 100644 index 5634280ff80..00000000000 --- a/src/licensedcode/data/rules/public-domain_407.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 -notes: typo diff --git a/src/licensedcode/data/rules/public-domain_408.RULE b/src/licensedcode/data/rules/public-domain_408.RULE index 3ef60b4ddd7..9252c974c03 100644 --- a/src/licensedcode/data/rules/public-domain_408.RULE +++ b/src/licensedcode/data/rules/public-domain_408.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: typo +--- + LICENSING Public domian \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_408.yml b/src/licensedcode/data/rules/public-domain_408.yml deleted file mode 100644 index f372b3e958e..00000000000 --- a/src/licensedcode/data/rules/public-domain_408.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: typo diff --git a/src/licensedcode/data/rules/public-domain_409.RULE b/src/licensedcode/data/rules/public-domain_409.RULE index 11c648e31e8..fd8f6d8321b 100644 --- a/src/licensedcode/data/rules/public-domain_409.RULE +++ b/src/licensedcode/data/rules/public-domain_409.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: typo +--- + It is issued as Public Domian and you may do with it as you please. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_409.yml b/src/licensedcode/data/rules/public-domain_409.yml deleted file mode 100644 index 02e0a0f70b3..00000000000 --- a/src/licensedcode/data/rules/public-domain_409.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: typo diff --git a/src/licensedcode/data/rules/public-domain_41.RULE b/src/licensedcode/data/rules/public-domain_41.RULE index bc53602733b..f7c310da944 100644 --- a/src/licensedcode/data/rules/public-domain_41.RULE +++ b/src/licensedcode/data/rules/public-domain_41.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This file is in the public domain, so clarified as of \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_41.yml b/src/licensedcode/data/rules/public-domain_41.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_410.RULE b/src/licensedcode/data/rules/public-domain_410.RULE index 45349c5f070..73f141244cc 100644 --- a/src/licensedcode/data/rules/public-domain_410.RULE +++ b/src/licensedcode/data/rules/public-domain_410.RULE @@ -1,2 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: Seen in Vanilla-v1.0.js +--- + Released into the Public Domian Your code gose here. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_410.yml b/src/licensedcode/data/rules/public-domain_410.yml deleted file mode 100644 index c7aa6ef06a0..00000000000 --- a/src/licensedcode/data/rules/public-domain_410.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: Seen in Vanilla-v1.0.js diff --git a/src/licensedcode/data/rules/public-domain_411.RULE b/src/licensedcode/data/rules/public-domain_411.RULE index c4a562ece5c..88ca88d54d1 100644 --- a/src/licensedcode/data/rules/public-domain_411.RULE +++ b/src/licensedcode/data/rules/public-domain_411.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This source file is placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_411.yml b/src/licensedcode/data/rules/public-domain_411.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_411.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_412.RULE b/src/licensedcode/data/rules/public-domain_412.RULE index 005df6755df..803b98efae2 100644 --- a/src/licensedcode/data/rules/public-domain_412.RULE +++ b/src/licensedcode/data/rules/public-domain_412.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + I hereby release it, on a strictly "as is" basis, to the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_412.yml b/src/licensedcode/data/rules/public-domain_412.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_412.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_413.RULE b/src/licensedcode/data/rules/public-domain_413.RULE index e45c9f42e3f..c2f7fe44034 100644 --- a/src/licensedcode/data/rules/public-domain_413.RULE +++ b/src/licensedcode/data/rules/public-domain_413.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + License This is a Public Domain Java class \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_413.yml b/src/licensedcode/data/rules/public-domain_413.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_413.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_414.RULE b/src/licensedcode/data/rules/public-domain_414.RULE index ef00c30553c..ecee162731f 100644 --- a/src/licensedcode/data/rules/public-domain_414.RULE +++ b/src/licensedcode/data/rules/public-domain_414.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + This component is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_414.yml b/src/licensedcode/data/rules/public-domain_414.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_414.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_415.RULE b/src/licensedcode/data/rules/public-domain_415.RULE index 354719a4862..5dca69e80ac 100644 --- a/src/licensedcode/data/rules/public-domain_415.RULE +++ b/src/licensedcode/data/rules/public-domain_415.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This file is Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_415.yml b/src/licensedcode/data/rules/public-domain_415.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_415.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_416.RULE b/src/licensedcode/data/rules/public-domain_416.RULE index 001b86940aa..104edbf514b 100644 --- a/src/licensedcode/data/rules/public-domain_416.RULE +++ b/src/licensedcode/data/rules/public-domain_416.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + This file may incorporate work that is in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_416.yml b/src/licensedcode/data/rules/public-domain_416.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_416.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_417.RULE b/src/licensedcode/data/rules/public-domain_417.RULE index 3227d80512e..c13e13ced16 100644 --- a/src/licensedcode/data/rules/public-domain_417.RULE +++ b/src/licensedcode/data/rules/public-domain_417.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + open source software. Its code is in the public domain. See the ``LICENSE`` file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_417.yml b/src/licensedcode/data/rules/public-domain_417.yml deleted file mode 100644 index 67b16efbbec..00000000000 --- a/src/licensedcode/data/rules/public-domain_417.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/public-domain_418.RULE b/src/licensedcode/data/rules/public-domain_418.RULE index c4f4401c93c..2039760522c 100644 --- a/src/licensedcode/data/rules/public-domain_418.RULE +++ b/src/licensedcode/data/rules/public-domain_418.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Its code is in the public domain. See the ``LICENSE`` file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_418.yml b/src/licensedcode/data/rules/public-domain_418.yml deleted file mode 100644 index 67b16efbbec..00000000000 --- a/src/licensedcode/data/rules/public-domain_418.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/public-domain_419.RULE b/src/licensedcode/data/rules/public-domain_419.RULE index 07ad89093c6..22fdfd5c0c7 100644 --- a/src/licensedcode/data/rules/public-domain_419.RULE +++ b/src/licensedcode/data/rules/public-domain_419.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Its code is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_419.yml b/src/licensedcode/data/rules/public-domain_419.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_419.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_42.RULE b/src/licensedcode/data/rules/public-domain_42.RULE index 3c823460c68..7d3724050d3 100644 --- a/src/licensedcode/data/rules/public-domain_42.RULE +++ b/src/licensedcode/data/rules/public-domain_42.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This program can be used and distributed without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_42.yml b/src/licensedcode/data/rules/public-domain_42.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_420.RULE b/src/licensedcode/data/rules/public-domain_420.RULE index 7351e3def97..e031ebd7679 100644 --- a/src/licensedcode/data/rules/public-domain_420.RULE +++ b/src/licensedcode/data/rules/public-domain_420.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + code is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_420.yml b/src/licensedcode/data/rules/public-domain_420.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_420.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_421.RULE b/src/licensedcode/data/rules/public-domain_421.RULE index 833d4188521..7c0877063e7 100644 --- a/src/licensedcode/data/rules/public-domain_421.RULE +++ b/src/licensedcode/data/rules/public-domain_421.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: Seen in Sqlite +--- + The "printf" code that follows dates from the 1980's. It is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_421.yml b/src/licensedcode/data/rules/public-domain_421.yml deleted file mode 100644 index bd1ba7d7059..00000000000 --- a/src/licensedcode/data/rules/public-domain_421.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: Seen in Sqlite diff --git a/src/licensedcode/data/rules/public-domain_422.RULE b/src/licensedcode/data/rules/public-domain_422.RULE index 5c8eb7d5d1b..d0855b01be3 100644 --- a/src/licensedcode/data/rules/public-domain_422.RULE +++ b/src/licensedcode/data/rules/public-domain_422.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 95 +--- + Generated GIFs are totally free for use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_422.yml b/src/licensedcode/data/rules/public-domain_422.yml deleted file mode 100644 index b97089324d9..00000000000 --- a/src/licensedcode/data/rules/public-domain_422.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_423.RULE b/src/licensedcode/data/rules/public-domain_423.RULE index 0ee2e45da36..81462176729 100644 --- a/src/licensedcode/data/rules/public-domain_423.RULE +++ b/src/licensedcode/data/rules/public-domain_423.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + "Please feel free to use the for any purposes as a work in the public domain." \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_423.yml b/src/licensedcode/data/rules/public-domain_423.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_423.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_424.RULE b/src/licensedcode/data/rules/public-domain_424.RULE index 89be72ddbe1..e25e7f8f707 100644 --- a/src/licensedcode/data/rules/public-domain_424.RULE +++ b/src/licensedcode/data/rules/public-domain_424.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + released to the public domain. Use, modify, and redistribute this code without permission or acknowledgement in any way you wish. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_424.yml b/src/licensedcode/data/rules/public-domain_424.yml deleted file mode 100644 index fd1246dff29..00000000000 --- a/src/licensedcode/data/rules/public-domain_424.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_425.RULE b/src/licensedcode/data/rules/public-domain_425.RULE index efc48501589..6b9d1fe4ca9 100644 --- a/src/licensedcode/data/rules/public-domain_425.RULE +++ b/src/licensedcode/data/rules/public-domain_425.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + reference implementation (in the public domain) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_425.yml b/src/licensedcode/data/rules/public-domain_425.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_425.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_426.RULE b/src/licensedcode/data/rules/public-domain_426.RULE index a74b5cd3356..cee142a0ac7 100644 --- a/src/licensedcode/data/rules/public-domain_426.RULE +++ b/src/licensedcode/data/rules/public-domain_426.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Public domain, written by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_426.yml b/src/licensedcode/data/rules/public-domain_426.yml deleted file mode 100644 index ee60d023d9f..00000000000 --- a/src/licensedcode/data/rules/public-domain_426.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_text: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_427.RULE b/src/licensedcode/data/rules/public-domain_427.RULE index cf0ee659956..637f20ad614 100644 --- a/src/licensedcode/data/rules/public-domain_427.RULE +++ b/src/licensedcode/data/rules/public-domain_427.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + binary wouldn't actually be in the public domain in its entirety \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_427.yml b/src/licensedcode/data/rules/public-domain_427.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_427.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_428.RULE b/src/licensedcode/data/rules/public-domain_428.RULE index a577e77b55b..996053543a3 100644 --- a/src/licensedcode/data/rules/public-domain_428.RULE +++ b/src/licensedcode/data/rules/public-domain_428.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + documentation files in other directories are in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_428.yml b/src/licensedcode/data/rules/public-domain_428.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_428.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_429.RULE b/src/licensedcode/data/rules/public-domain_429.RULE index 08cc292a73e..f93a4ee2af4 100644 --- a/src/licensedcode/data/rules/public-domain_429.RULE +++ b/src/licensedcode/data/rules/public-domain_429.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Translated messages are in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_429.yml b/src/licensedcode/data/rules/public-domain_429.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_429.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_43.RULE b/src/licensedcode/data/rules/public-domain_43.RULE index b94fef7318e..4fe16198776 100644 --- a/src/licensedcode/data/rules/public-domain_43.RULE +++ b/src/licensedcode/data/rules/public-domain_43.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +minimum_coverage: 95 +--- + Except when explicitly stated as GPL, programming examples within this part can be used and distributed without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_43.yml b/src/licensedcode/data/rules/public-domain_43.yml deleted file mode 100644 index 2dd553f4b13..00000000000 --- a/src/licensedcode/data/rules/public-domain_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/public-domain_430.RULE b/src/licensedcode/data/rules/public-domain_430.RULE index 5bb12a928c1..d12fdd4b523 100644 --- a/src/licensedcode/data/rules/public-domain_430.RULE +++ b/src/licensedcode/data/rules/public-domain_430.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Most of the source has been put into the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_430.yml b/src/licensedcode/data/rules/public-domain_430.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_430.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_431.RULE b/src/licensedcode/data/rules/public-domain_431.RULE index 0f0508fbfe5..01dedc0b294 100644 --- a/src/licensedcode/data/rules/public-domain_431.RULE +++ b/src/licensedcode/data/rules/public-domain_431.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + command line tools are in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_431.yml b/src/licensedcode/data/rules/public-domain_431.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_431.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_432.RULE b/src/licensedcode/data/rules/public-domain_432.RULE index bab64bc0ef6..d027271ccba 100644 --- a/src/licensedcode/data/rules/public-domain_432.RULE +++ b/src/licensedcode/data/rules/public-domain_432.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Dedicated to the Public Domain. You are free to use or modify. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_432.yml b/src/licensedcode/data/rules/public-domain_432.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_432.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_433.RULE b/src/licensedcode/data/rules/public-domain_433.RULE index f6e935c16cb..b76325c767a 100644 --- a/src/licensedcode/data/rules/public-domain_433.RULE +++ b/src/licensedcode/data/rules/public-domain_433.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This stylesheet has been placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_433.yml b/src/licensedcode/data/rules/public-domain_433.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_433.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_434.RULE b/src/licensedcode/data/rules/public-domain_434.RULE index d2249b26c71..02d54f5baa5 100644 --- a/src/licensedcode/data/rules/public-domain_434.RULE +++ b/src/licensedcode/data/rules/public-domain_434.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Please consider my contributions to this wiki as public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_434.yml b/src/licensedcode/data/rules/public-domain_434.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_434.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_435.RULE b/src/licensedcode/data/rules/public-domain_435.RULE index c216d241193..b6d23ac1a51 100644 --- a/src/licensedcode/data/rules/public-domain_435.RULE +++ b/src/licensedcode/data/rules/public-domain_435.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + placing their works into the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_435.yml b/src/licensedcode/data/rules/public-domain_435.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_435.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_436.RULE b/src/licensedcode/data/rules/public-domain_436.RULE index 03ecec7b47a..2d9cd9d8b03 100644 --- a/src/licensedcode/data/rules/public-domain_436.RULE +++ b/src/licensedcode/data/rules/public-domain_436.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + into the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_436.yml b/src/licensedcode/data/rules/public-domain_436.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_436.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_437.RULE b/src/licensedcode/data/rules/public-domain_437.RULE index c9d54c84695..aeef31e8c55 100644 --- a/src/licensedcode/data/rules/public-domain_437.RULE +++ b/src/licensedcode/data/rules/public-domain_437.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + All individual files in this compilation are placed in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_437.yml b/src/licensedcode/data/rules/public-domain_437.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_437.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_438.RULE b/src/licensedcode/data/rules/public-domain_438.RULE index e9dbb258d7b..af0a8218dba 100644 --- a/src/licensedcode/data/rules/public-domain_438.RULE +++ b/src/licensedcode/data/rules/public-domain_438.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + Public Domain License \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_438.yml b/src/licensedcode/data/rules/public-domain_438.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_438.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_439.RULE b/src/licensedcode/data/rules/public-domain_439.RULE index 5d0a2fba70d..7d8966d0a3c 100644 --- a/src/licensedcode/data/rules/public-domain_439.RULE +++ b/src/licensedcode/data/rules/public-domain_439.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + this package itself is purely public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_439.yml b/src/licensedcode/data/rules/public-domain_439.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_439.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_44.RULE b/src/licensedcode/data/rules/public-domain_44.RULE index 5f111405bc1..67a1cebaf15 100644 --- a/src/licensedcode/data/rules/public-domain_44.RULE +++ b/src/licensedcode/data/rules/public-domain_44.RULE @@ -1 +1,7 @@ -This document is in the public domain. \ No newline at end of file +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This document is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_44.yml b/src/licensedcode/data/rules/public-domain_44.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_440.RULE b/src/licensedcode/data/rules/public-domain_440.RULE index b77ebc487b3..4ceb6bf56ff 100644 --- a/src/licensedcode/data/rules/public-domain_440.RULE +++ b/src/licensedcode/data/rules/public-domain_440.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + Public Domain -- Use and Enjoy! \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_440.yml b/src/licensedcode/data/rules/public-domain_440.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_440.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_441.RULE b/src/licensedcode/data/rules/public-domain_441.RULE index 6694ce487ca..8c0537e300d 100644 --- a/src/licensedcode/data/rules/public-domain_441.RULE +++ b/src/licensedcode/data/rules/public-domain_441.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +--- + LicenseRef-PublicDomain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_441.yml b/src/licensedcode/data/rules/public-domain_441.yml deleted file mode 100644 index a41446614f6..00000000000 --- a/src/licensedcode/data/rules/public-domain_441.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_442.RULE b/src/licensedcode/data/rules/public-domain_442.RULE index 0ff269c3262..205c207de76 100644 --- a/src/licensedcode/data/rules/public-domain_442.RULE +++ b/src/licensedcode/data/rules/public-domain_442.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +notes: See in https://fastcrypto.org/ +--- + All implementations are in the public-domain and can be used for any purpose whatsoever. All I ask is that you send to me any bugs or suggestions you might come across. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_442.yml b/src/licensedcode/data/rules/public-domain_442.yml deleted file mode 100644 index 0ae1ea452b8..00000000000 --- a/src/licensedcode/data/rules/public-domain_442.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -notes: See in https://fastcrypto.org/ diff --git a/src/licensedcode/data/rules/public-domain_443.RULE b/src/licensedcode/data/rules/public-domain_443.RULE index 238e860e501..3bb32c4fdd1 100644 --- a/src/licensedcode/data/rules/public-domain_443.RULE +++ b/src/licensedcode/data/rules/public-domain_443.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d846376/include/igl/tinyply.h +--- + * This software is in the public domain. Where that dedication is not * recognized, you are granted a perpetual, irrevocable license to copy, * distribute, and modify this file as you see fit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_443.yml b/src/licensedcode/data/rules/public-domain_443.yml deleted file mode 100644 index 89a465ed8ea..00000000000 --- a/src/licensedcode/data/rules/public-domain_443.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d846376/include/igl/tinyply.h diff --git a/src/licensedcode/data/rules/public-domain_444.RULE b/src/licensedcode/data/rules/public-domain_444.RULE index 636f3f2d1ae..a4a7ff13e9e 100644 --- a/src/licensedcode/data/rules/public-domain_444.RULE +++ b/src/licensedcode/data/rules/public-domain_444.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d846376/include/igl/tinyply.h +--- + public domain implementation this file is listed as "Public Domain" \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_444.yml b/src/licensedcode/data/rules/public-domain_444.yml deleted file mode 100644 index 3673d629b82..00000000000 --- a/src/licensedcode/data/rules/public-domain_444.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d846376/include/igl/tinyply.h diff --git a/src/licensedcode/data/rules/public-domain_445.RULE b/src/licensedcode/data/rules/public-domain_445.RULE index 60da3ef4fe4..8f20750ac6b 100644 --- a/src/licensedcode/data/rules/public-domain_445.RULE +++ b/src/licensedcode/data/rules/public-domain_445.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + donated to public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_445.yml b/src/licensedcode/data/rules/public-domain_445.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_445.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_446.RULE b/src/licensedcode/data/rules/public-domain_446.RULE index 839d6efec0c..4fcac28821d 100644 --- a/src/licensedcode/data/rules/public-domain_446.RULE +++ b/src/licensedcode/data/rules/public-domain_446.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Public domain works This section lists files and packages that are in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_446.yml b/src/licensedcode/data/rules/public-domain_446.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_446.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_447.RULE b/src/licensedcode/data/rules/public-domain_447.RULE index 7318684aeb4..3fade44c2d0 100644 --- a/src/licensedcode/data/rules/public-domain_447.RULE +++ b/src/licensedcode/data/rules/public-domain_447.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + Public domain works \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_447.yml b/src/licensedcode/data/rules/public-domain_447.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_447.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_448.RULE b/src/licensedcode/data/rules/public-domain_448.RULE index cfce1abc53a..d8e868776a8 100644 --- a/src/licensedcode/data/rules/public-domain_448.RULE +++ b/src/licensedcode/data/rules/public-domain_448.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + Creative Commons Public Domain Dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_448.yml b/src/licensedcode/data/rules/public-domain_448.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_448.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_449.RULE b/src/licensedcode/data/rules/public-domain_449.RULE index e8cabcf92fb..f35358c679b 100644 --- a/src/licensedcode/data/rules/public-domain_449.RULE +++ b/src/licensedcode/data/rules/public-domain_449.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + distributed in the Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_449.yml b/src/licensedcode/data/rules/public-domain_449.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_449.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_45.RULE b/src/licensedcode/data/rules/public-domain_45.RULE index 5d44460530d..3921e20b328 100644 --- a/src/licensedcode/data/rules/public-domain_45.RULE +++ b/src/licensedcode/data/rules/public-domain_45.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + placed in the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_45.yml b/src/licensedcode/data/rules/public-domain_45.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_450.RULE b/src/licensedcode/data/rules/public-domain_450.RULE index 538bd1cd773..c9c376995c1 100644 --- a/src/licensedcode/data/rules/public-domain_450.RULE +++ b/src/licensedcode/data/rules/public-domain_450.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + Released in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_450.yml b/src/licensedcode/data/rules/public-domain_450.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_450.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_451.RULE b/src/licensedcode/data/rules/public-domain_451.RULE index 25e82bf126a..aa5c1f7dc95 100644 --- a/src/licensedcode/data/rules/public-domain_451.RULE +++ b/src/licensedcode/data/rules/public-domain_451.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +notes: See https://github.com/NationalSecurityAgency/ghidra for various oddities such as https://github.com/NationalSecurityAgency/ghidra/blob/e43ef9baaf3c21efb5ea20c3a4d3314d64fdb5cf/GPL/GnuDisassembler/certification.manifest#L3 +--- + ##MODULE IP: Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_451.yml b/src/licensedcode/data/rules/public-domain_451.yml deleted file mode 100644 index 72d4862c8e0..00000000000 --- a/src/licensedcode/data/rules/public-domain_451.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 -notes: See https://github.com/NationalSecurityAgency/ghidra for various oddities such as https://github.com/NationalSecurityAgency/ghidra/blob/e43ef9baaf3c21efb5ea20c3a4d3314d64fdb5cf/GPL/GnuDisassembler/certification.manifest#L3 diff --git a/src/licensedcode/data/rules/public-domain_452.RULE b/src/licensedcode/data/rules/public-domain_452.RULE index 11db515227e..e4ced5c1bb3 100644 --- a/src/licensedcode/data/rules/public-domain_452.RULE +++ b/src/licensedcode/data/rules/public-domain_452.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + These files are "public domain". \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_452.yml b/src/licensedcode/data/rules/public-domain_452.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_452.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_453.RULE b/src/licensedcode/data/rules/public-domain_453.RULE index f5b666b1d79..b0469ce2792 100644 --- a/src/licensedcode/data/rules/public-domain_453.RULE +++ b/src/licensedcode/data/rules/public-domain_453.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + are public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_453.yml b/src/licensedcode/data/rules/public-domain_453.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_453.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_454.RULE b/src/licensedcode/data/rules/public-domain_454.RULE index 466c88d16fb..cb305900e30 100644 --- a/src/licensedcode/data/rules/public-domain_454.RULE +++ b/src/licensedcode/data/rules/public-domain_454.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +--- + The code is considered to be in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_454.yml b/src/licensedcode/data/rules/public-domain_454.yml deleted file mode 100644 index cc4919b629f..00000000000 --- a/src/licensedcode/data/rules/public-domain_454.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp diff --git a/src/licensedcode/data/rules/public-domain_455.RULE b/src/licensedcode/data/rules/public-domain_455.RULE index d2cd885e558..cac09f8d766 100644 --- a/src/licensedcode/data/rules/public-domain_455.RULE +++ b/src/licensedcode/data/rules/public-domain_455.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp +--- + This code is considered to be in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_455.yml b/src/licensedcode/data/rules/public-domain_455.yml deleted file mode 100644 index cc4919b629f..00000000000 --- a/src/licensedcode/data/rules/public-domain_455.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp diff --git a/src/licensedcode/data/rules/public-domain_456.RULE b/src/licensedcode/data/rules/public-domain_456.RULE index bee9ecde0c5..185f9067868 100644 --- a/src/licensedcode/data/rules/public-domain_456.RULE +++ b/src/licensedcode/data/rules/public-domain_456.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + These values are from the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_456.yml b/src/licensedcode/data/rules/public-domain_456.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_456.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_457.RULE b/src/licensedcode/data/rules/public-domain_457.RULE index 09af3d04c4f..c5badea2cc8 100644 --- a/src/licensedcode/data/rules/public-domain_457.RULE +++ b/src/licensedcode/data/rules/public-domain_457.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + That code is entirely yours to license however you see fit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_457.yml b/src/licensedcode/data/rules/public-domain_457.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_457.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_458.RULE b/src/licensedcode/data/rules/public-domain_458.RULE index bc41ab089c4..eaa48c4f05c 100644 --- a/src/licensedcode/data/rules/public-domain_458.RULE +++ b/src/licensedcode/data/rules/public-domain_458.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 80 +--- + not considered to be subject to copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_458.yml b/src/licensedcode/data/rules/public-domain_458.yml deleted file mode 100644 index b311065ead0..00000000000 --- a/src/licensedcode/data/rules/public-domain_458.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/public-domain_459.RULE b/src/licensedcode/data/rules/public-domain_459.RULE index fa0b81e75f6..b6b6baa44d4 100644 --- a/src/licensedcode/data/rules/public-domain_459.RULE +++ b/src/licensedcode/data/rules/public-domain_459.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +minimum_coverage: 80 +notes: seen in FFmpeg compat/getopt.c +--- + * Subject: {{public domain}} AT&T getopt source * Here's something you've all been waiting for: the AT&T {{public domain}} * source for getopt(3). It is the code which was given out at the 1985 diff --git a/src/licensedcode/data/rules/public-domain_459.yml b/src/licensedcode/data/rules/public-domain_459.yml deleted file mode 100644 index 864ba2e932b..00000000000 --- a/src/licensedcode/data/rules/public-domain_459.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -minimum_coverage: 80 -notes: seen in FFmpeg compat/getopt.c diff --git a/src/licensedcode/data/rules/public-domain_46.RULE b/src/licensedcode/data/rules/public-domain_46.RULE index 2271e07776a..620438284e3 100644 --- a/src/licensedcode/data/rules/public-domain_46.RULE +++ b/src/licensedcode/data/rules/public-domain_46.RULE @@ -1 +1,7 @@ -originally based on the public domain implementation +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + +originally based on the public domain implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_46.yml b/src/licensedcode/data/rules/public-domain_46.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_460.RULE b/src/licensedcode/data/rules/public-domain_460.RULE index 7dd9386486f..64e148d5079 100644 --- a/src/licensedcode/data/rules/public-domain_460.RULE +++ b/src/licensedcode/data/rules/public-domain_460.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +notes: seen in FFmpeg compat/getopt.c +--- + public domain AT&T getopt source \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_460.yml b/src/licensedcode/data/rules/public-domain_460.yml deleted file mode 100644 index faa2b51d583..00000000000 --- a/src/licensedcode/data/rules/public-domain_460.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -notes: seen in FFmpeg compat/getopt.c diff --git a/src/licensedcode/data/rules/public-domain_461.RULE b/src/licensedcode/data/rules/public-domain_461.RULE index be4f4c81e41..a4105c61b0c 100644 --- a/src/licensedcode/data/rules/public-domain_461.RULE +++ b/src/licensedcode/data/rules/public-domain_461.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + based on public domain SHA-1 code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_461.yml b/src/licensedcode/data/rules/public-domain_461.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_461.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_47.RULE b/src/licensedcode/data/rules/public-domain_47.RULE index 26f2893e345..a01c0e3aee6 100644 --- a/src/licensedcode/data/rules/public-domain_47.RULE +++ b/src/licensedcode/data/rules/public-domain_47.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + This file has been put into the public domain. -You can do whatever you want with this file. +You can do whatever you want with this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_47.yml b/src/licensedcode/data/rules/public-domain_47.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_47.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_48.RULE b/src/licensedcode/data/rules/public-domain_48.RULE index 77a76037d87..feb934eee74 100644 --- a/src/licensedcode/data/rules/public-domain_48.RULE +++ b/src/licensedcode/data/rules/public-domain_48.RULE @@ -1 +1,7 @@ -This is in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_48.yml b/src/licensedcode/data/rules/public-domain_48.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_49.RULE b/src/licensedcode/data/rules/public-domain_49.RULE index f24f7ffbe8b..14138b626eb 100644 --- a/src/licensedcode/data/rules/public-domain_49.RULE +++ b/src/licensedcode/data/rules/public-domain_49.RULE @@ -1 +1,7 @@ -No rights reserved, released to the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +No rights reserved, released to the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_49.yml b/src/licensedcode/data/rules/public-domain_49.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_5.RULE b/src/licensedcode/data/rules/public-domain_5.RULE index 9555384d5b3..e6edeaab30f 100644 --- a/src/licensedcode/data/rules/public-domain_5.RULE +++ b/src/licensedcode/data/rules/public-domain_5.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + This utility is released to the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_5.yml b/src/licensedcode/data/rules/public-domain_5.yml deleted file mode 100644 index 8e8e0f8c600..00000000000 --- a/src/licensedcode/data/rules/public-domain_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_50.RULE b/src/licensedcode/data/rules/public-domain_50.RULE index 0923980f299..27ed14b75f0 100644 --- a/src/licensedcode/data/rules/public-domain_50.RULE +++ b/src/licensedcode/data/rules/public-domain_50.RULE @@ -1 +1,7 @@ -This file is in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This file is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_50.yml b/src/licensedcode/data/rules/public-domain_50.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_51.RULE b/src/licensedcode/data/rules/public-domain_51.RULE index 766c80c0d2c..820e0e3740c 100644 --- a/src/licensedcode/data/rules/public-domain_51.RULE +++ b/src/licensedcode/data/rules/public-domain_51.RULE @@ -1 +1,7 @@ -This algorithm and source code is released to the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +This algorithm and source code is released to the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_51.yml b/src/licensedcode/data/rules/public-domain_51.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_52.RULE b/src/licensedcode/data/rules/public-domain_52.RULE index c4bcb00753c..fc8cf31f2bb 100644 --- a/src/licensedcode/data/rules/public-domain_52.RULE +++ b/src/licensedcode/data/rules/public-domain_52.RULE @@ -1 +1,7 @@ -The interface code in this file is released into the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +The interface code in this file is released into the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_52.yml b/src/licensedcode/data/rules/public-domain_52.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_53.RULE b/src/licensedcode/data/rules/public-domain_53.RULE index 5c43ce4c701..e16ae6de2c5 100644 --- a/src/licensedcode/data/rules/public-domain_53.RULE +++ b/src/licensedcode/data/rules/public-domain_53.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + are hereby released into the public domain by the authors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_53.yml b/src/licensedcode/data/rules/public-domain_53.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_54.RULE b/src/licensedcode/data/rules/public-domain_54.RULE index dde02ec60bf..29775f4989c 100644 --- a/src/licensedcode/data/rules/public-domain_54.RULE +++ b/src/licensedcode/data/rules/public-domain_54.RULE @@ -1,4 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + public domain SHA256 implementation ===== */ /* This is based on SHA256 implementation in LibTomCrypt that was released into - * public domain by Tom St Denis. */ + * public domain by Tom St Denis. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_54.yml b/src/licensedcode/data/rules/public-domain_54.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_54.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_55.RULE b/src/licensedcode/data/rules/public-domain_55.RULE index 10d94946f65..c52fe0e92fb 100644 --- a/src/licensedcode/data/rules/public-domain_55.RULE +++ b/src/licensedcode/data/rules/public-domain_55.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + public domain code snippet, lifted from \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_55.yml b/src/licensedcode/data/rules/public-domain_55.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_56.RULE b/src/licensedcode/data/rules/public-domain_56.RULE index 206128b8e3d..88d506f33ad 100644 --- a/src/licensedcode/data/rules/public-domain_56.RULE +++ b/src/licensedcode/data/rules/public-domain_56.RULE @@ -1,6 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + THIS SOFTWARE IS NOT COPYRIGHTED This source code is offered for use in the public domain. You may -use, modify or distribute it freely. - +use, modify or distribute it freely. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_56.yml b/src/licensedcode/data/rules/public-domain_56.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_57.RULE b/src/licensedcode/data/rules/public-domain_57.RULE index 0efbf96ca89..a1eb827a304 100644 --- a/src/licensedcode/data/rules/public-domain_57.RULE +++ b/src/licensedcode/data/rules/public-domain_57.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is derived from a public domain shell sort routine \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_57.yml b/src/licensedcode/data/rules/public-domain_57.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_58.RULE b/src/licensedcode/data/rules/public-domain_58.RULE index ea827f25bbe..24a80843b95 100644 --- a/src/licensedcode/data/rules/public-domain_58.RULE +++ b/src/licensedcode/data/rules/public-domain_58.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + FSF changes to this file are in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_58.yml b/src/licensedcode/data/rules/public-domain_58.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_59.RULE b/src/licensedcode/data/rules/public-domain_59.RULE index cc13339f43c..9b1ab5fe5f8 100644 --- a/src/licensedcode/data/rules/public-domain_59.RULE +++ b/src/licensedcode/data/rules/public-domain_59.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This code is placed under public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_59.yml b/src/licensedcode/data/rules/public-domain_59.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_6.RULE b/src/licensedcode/data/rules/public-domain_6.RULE index 2f36e41f42f..c61757a2a5a 100644 --- a/src/licensedcode/data/rules/public-domain_6.RULE +++ b/src/licensedcode/data/rules/public-domain_6.RULE @@ -1 +1,7 @@ -This opening book is in the public domain. \ No newline at end of file +--- +license_expression: public-domain +is_license_text: yes +minimum_coverage: 100 +--- + +This opening book is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_6.yml b/src/licensedcode/data/rules/public-domain_6.yml deleted file mode 100644 index 78df366d0c2..00000000000 --- a/src/licensedcode/data/rules/public-domain_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_60.RULE b/src/licensedcode/data/rules/public-domain_60.RULE index 31d7a678f82..a6baa41a123 100644 --- a/src/licensedcode/data/rules/public-domain_60.RULE +++ b/src/licensedcode/data/rules/public-domain_60.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_tag: yes +relevance: 90 +--- + copyright Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_60.yml b/src/licensedcode/data/rules/public-domain_60.yml deleted file mode 100644 index b9a7c5dbe30..00000000000 --- a/src/licensedcode/data/rules/public-domain_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_61.RULE b/src/licensedcode/data/rules/public-domain_61.RULE index 31f8e04aa66..cbc193abbc0 100644 --- a/src/licensedcode/data/rules/public-domain_61.RULE +++ b/src/licensedcode/data/rules/public-domain_61.RULE @@ -1 +1,7 @@ -The font in this directory belongs to the public domain. \ No newline at end of file +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +The font in this directory belongs to the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_61.yml b/src/licensedcode/data/rules/public-domain_61.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_62.RULE b/src/licensedcode/data/rules/public-domain_62.RULE index da9511a7c55..68c3cfb9be0 100644 --- a/src/licensedcode/data/rules/public-domain_62.RULE +++ b/src/licensedcode/data/rules/public-domain_62.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + Which is public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_62.yml b/src/licensedcode/data/rules/public-domain_62.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_63.RULE b/src/licensedcode/data/rules/public-domain_63.RULE index 15620a17b44..bb880777c06 100644 --- a/src/licensedcode/data/rules/public-domain_63.RULE +++ b/src/licensedcode/data/rules/public-domain_63.RULE @@ -1 +1,7 @@ -consider these trivial functions to be public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +consider these trivial functions to be public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_63.yml b/src/licensedcode/data/rules/public-domain_63.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_64.RULE b/src/licensedcode/data/rules/public-domain_64.RULE index df94c432000..83237c9ca31 100644 --- a/src/licensedcode/data/rules/public-domain_64.RULE +++ b/src/licensedcode/data/rules/public-domain_64.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + and is placed in the public domain. The author hereby disclaims copyright to this source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_64.yml b/src/licensedcode/data/rules/public-domain_64.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_65.RULE b/src/licensedcode/data/rules/public-domain_65.RULE index 97d8fddad16..e2dac4e6137 100644 --- a/src/licensedcode/data/rules/public-domain_65.RULE +++ b/src/licensedcode/data/rules/public-domain_65.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + The author hereby disclaims copyright to this source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_65.yml b/src/licensedcode/data/rules/public-domain_65.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_66.RULE b/src/licensedcode/data/rules/public-domain_66.RULE index f7ea3fe2183..699a77477c5 100644 --- a/src/licensedcode/data/rules/public-domain_66.RULE +++ b/src/licensedcode/data/rules/public-domain_66.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This file is put in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_66.yml b/src/licensedcode/data/rules/public-domain_66.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_67.RULE b/src/licensedcode/data/rules/public-domain_67.RULE index 3c8263d4936..4db7da5322c 100644 --- a/src/licensedcode/data/rules/public-domain_67.RULE +++ b/src/licensedcode/data/rules/public-domain_67.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 90 +--- + Still in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_67.yml b/src/licensedcode/data/rules/public-domain_67.yml deleted file mode 100644 index c8ba265d03a..00000000000 --- a/src/licensedcode/data/rules/public-domain_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_68.RULE b/src/licensedcode/data/rules/public-domain_68.RULE index 35bba625d73..a4a00bd016e 100644 --- a/src/licensedcode/data/rules/public-domain_68.RULE +++ b/src/licensedcode/data/rules/public-domain_68.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + note 100% Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_68.yml b/src/licensedcode/data/rules/public-domain_68.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_69.RULE b/src/licensedcode/data/rules/public-domain_69.RULE index 5fc74337da7..6937f680731 100644 --- a/src/licensedcode/data/rules/public-domain_69.RULE +++ b/src/licensedcode/data/rules/public-domain_69.RULE @@ -1 +1,7 @@ -This is a version of the public domain implementation +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + +This is a version of the public domain implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_69.yml b/src/licensedcode/data/rules/public-domain_69.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_7.RULE b/src/licensedcode/data/rules/public-domain_7.RULE index 5efa9ed7be8..0c591b898a8 100644 --- a/src/licensedcode/data/rules/public-domain_7.RULE +++ b/src/licensedcode/data/rules/public-domain_7.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + This code is in the public domain and has no copyright. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_7.yml b/src/licensedcode/data/rules/public-domain_7.yml deleted file mode 100644 index 8e8e0f8c600..00000000000 --- a/src/licensedcode/data/rules/public-domain_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/public-domain_70.RULE b/src/licensedcode/data/rules/public-domain_70.RULE index 5465b21e5a6..c443b6bbf71 100644 --- a/src/licensedcode/data/rules/public-domain_70.RULE +++ b/src/licensedcode/data/rules/public-domain_70.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + The developers of consider the fixed text that goes in all output files to be in the public domain: -we make no copyright claims on it. +we make no copyright claims on it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_70.yml b/src/licensedcode/data/rules/public-domain_70.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_71.RULE b/src/licensedcode/data/rules/public-domain_71.RULE index 5ee0300bc55..14d58d74e64 100644 --- a/src/licensedcode/data/rules/public-domain_71.RULE +++ b/src/licensedcode/data/rules/public-domain_71.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + * No copyright is claimed, and the software is hereby placed in the public - * domain. \ No newline at end of file + * domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_71.yml b/src/licensedcode/data/rules/public-domain_71.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_72.RULE b/src/licensedcode/data/rules/public-domain_72.RULE index 65e3ae7c852..28de86a9518 100644 --- a/src/licensedcode/data/rules/public-domain_72.RULE +++ b/src/licensedcode/data/rules/public-domain_72.RULE @@ -1,4 +1,9 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + ("Public Domain" nil "This software is in Public Domain." - "You're free to do with it as you please.") + "You're free to do with it as you please.") \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_72.yml b/src/licensedcode/data/rules/public-domain_72.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_72.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_73.RULE b/src/licensedcode/data/rules/public-domain_73.RULE index 246e4a3d76e..8fff79efe27 100644 --- a/src/licensedcode/data/rules/public-domain_73.RULE +++ b/src/licensedcode/data/rules/public-domain_73.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + is in the public domain and distributed with the following license \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_73.yml b/src/licensedcode/data/rules/public-domain_73.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_73.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_74.RULE b/src/licensedcode/data/rules/public-domain_74.RULE index 4c21018817a..55b3f96ad58 100644 --- a/src/licensedcode/data/rules/public-domain_74.RULE +++ b/src/licensedcode/data/rules/public-domain_74.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This class is public domain (not copyrighted). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_74.yml b/src/licensedcode/data/rules/public-domain_74.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_75.RULE b/src/licensedcode/data/rules/public-domain_75.RULE index 30457acc4da..d451e507a61 100644 --- a/src/licensedcode/data/rules/public-domain_75.RULE +++ b/src/licensedcode/data/rules/public-domain_75.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This class is public domain (not copyrighted) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_75.yml b/src/licensedcode/data/rules/public-domain_75.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_76.RULE b/src/licensedcode/data/rules/public-domain_76.RULE index 067941657b6..2ec548e18d4 100644 --- a/src/licensedcode/data/rules/public-domain_76.RULE +++ b/src/licensedcode/data/rules/public-domain_76.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + That package was under public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_76.yml b/src/licensedcode/data/rules/public-domain_76.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_77.RULE b/src/licensedcode/data/rules/public-domain_77.RULE index 65404585075..82fadc2eb4f 100644 --- a/src/licensedcode/data/rules/public-domain_77.RULE +++ b/src/licensedcode/data/rules/public-domain_77.RULE @@ -1 +1,7 @@ -License: PD +--- +license_expression: public-domain +is_license_tag: yes +relevance: 100 +--- + +License: PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_77.yml b/src/licensedcode/data/rules/public-domain_77.yml deleted file mode 100644 index a41446614f6..00000000000 --- a/src/licensedcode/data/rules/public-domain_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_78.RULE b/src/licensedcode/data/rules/public-domain_78.RULE index 87d54db955c..4ff6412c4d9 100644 --- a/src/licensedcode/data/rules/public-domain_78.RULE +++ b/src/licensedcode/data/rules/public-domain_78.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This script is public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_78.yml b/src/licensedcode/data/rules/public-domain_78.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_79.RULE b/src/licensedcode/data/rules/public-domain_79.RULE index 7a24c586e9f..7b3bcd80fa7 100644 --- a/src/licensedcode/data/rules/public-domain_79.RULE +++ b/src/licensedcode/data/rules/public-domain_79.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + changes are in public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_79.yml b/src/licensedcode/data/rules/public-domain_79.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_79.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_8.RULE b/src/licensedcode/data/rules/public-domain_8.RULE index 991e50530cf..dbdae080547 100644 --- a/src/licensedcode/data/rules/public-domain_8.RULE +++ b/src/licensedcode/data/rules/public-domain_8.RULE @@ -1 +1,10 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.linfo.org/publicdomain.html +--- + http://www.linfo.org/publicdomain.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_8.yml b/src/licensedcode/data/rules/public-domain_8.yml deleted file mode 100644 index c2cee6ce87e..00000000000 --- a/src/licensedcode/data/rules/public-domain_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.linfo.org/publicdomain.html diff --git a/src/licensedcode/data/rules/public-domain_80.RULE b/src/licensedcode/data/rules/public-domain_80.RULE index 63842b4c9f3..717d4a131d2 100644 --- a/src/licensedcode/data/rules/public-domain_80.RULE +++ b/src/licensedcode/data/rules/public-domain_80.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + Both are dedicated to the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_80.yml b/src/licensedcode/data/rules/public-domain_80.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_80.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_81.RULE b/src/licensedcode/data/rules/public-domain_81.RULE index d70baf32fac..ed69ff0cf65 100644 --- a/src/licensedcode/data/rules/public-domain_81.RULE +++ b/src/licensedcode/data/rules/public-domain_81.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + changes to this file are in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_81.yml b/src/licensedcode/data/rules/public-domain_81.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_81.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_82.RULE b/src/licensedcode/data/rules/public-domain_82.RULE index 97f9f1c7c3a..2d4c0b1ca10 100644 --- a/src/licensedcode/data/rules/public-domain_82.RULE +++ b/src/licensedcode/data/rules/public-domain_82.RULE @@ -1 +1,7 @@ -note that it's in the public domain +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + +note that it's in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_82.yml b/src/licensedcode/data/rules/public-domain_82.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_83.RULE b/src/licensedcode/data/rules/public-domain_83.RULE index 6fe8599777b..f509a5f2892 100644 --- a/src/licensedcode/data/rules/public-domain_83.RULE +++ b/src/licensedcode/data/rules/public-domain_83.RULE @@ -1 +1,7 @@ -Public domain version is distributed above. +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + +Public domain version is distributed above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_83.yml b/src/licensedcode/data/rules/public-domain_83.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_84.RULE b/src/licensedcode/data/rules/public-domain_84.RULE index a7470346fa0..c3b88d897e2 100644 --- a/src/licensedcode/data/rules/public-domain_84.RULE +++ b/src/licensedcode/data/rules/public-domain_84.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_notice: yes +relevance: 95 +--- + Adapted from the public domain code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_84.yml b/src/licensedcode/data/rules/public-domain_84.yml deleted file mode 100644 index 3426ec1f1df..00000000000 --- a/src/licensedcode/data/rules/public-domain_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_85.RULE b/src/licensedcode/data/rules/public-domain_85.RULE index 7cad27a4e98..399d54fd945 100644 --- a/src/licensedcode/data/rules/public-domain_85.RULE +++ b/src/licensedcode/data/rules/public-domain_85.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This font, including hint instructions, has been donated to the Public Domain. Do whatever you want with it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_85.yml b/src/licensedcode/data/rules/public-domain_85.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_86.RULE b/src/licensedcode/data/rules/public-domain_86.RULE index cef45e391b9..ef1ab529533 100644 --- a/src/licensedcode/data/rules/public-domain_86.RULE +++ b/src/licensedcode/data/rules/public-domain_86.RULE @@ -1,2 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + The algorithm is dedicated to the Public Domain. The original implementation is also dedicated to the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_86.yml b/src/licensedcode/data/rules/public-domain_86.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_86.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_87.RULE b/src/licensedcode/data/rules/public-domain_87.RULE index 44fdf1ce0bf..dd425e2403a 100644 --- a/src/licensedcode/data/rules/public-domain_87.RULE +++ b/src/licensedcode/data/rules/public-domain_87.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + I have placed these fonts in the Public Domain. This is all 100% my own work. Usage is totally unrestricted. If you want to make derivative works for any -purpose, please go ahead. +purpose, please go ahead. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_87.yml b/src/licensedcode/data/rules/public-domain_87.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_87.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_88.RULE b/src/licensedcode/data/rules/public-domain_88.RULE index 9e1966d0393..91d387d00cb 100644 --- a/src/licensedcode/data/rules/public-domain_88.RULE +++ b/src/licensedcode/data/rules/public-domain_88.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + The contents of this file are hereby released to the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_88.yml b/src/licensedcode/data/rules/public-domain_88.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_89.RULE b/src/licensedcode/data/rules/public-domain_89.RULE index 939fc35c42c..22e40158aa5 100644 --- a/src/licensedcode/data/rules/public-domain_89.RULE +++ b/src/licensedcode/data/rules/public-domain_89.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + we both put our efforts into ** the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_89.yml b/src/licensedcode/data/rules/public-domain_89.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_9.RULE b/src/licensedcode/data/rules/public-domain_9.RULE index ac0844177af..7c4d44f9742 100644 --- a/src/licensedcode/data/rules/public-domain_9.RULE +++ b/src/licensedcode/data/rules/public-domain_9.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + THIS PROGRAM IS IN T3H PUBLIC DOMAIN \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_9.yml b/src/licensedcode/data/rules/public-domain_9.yml deleted file mode 100644 index 2583555ca0d..00000000000 --- a/src/licensedcode/data/rules/public-domain_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_90.RULE b/src/licensedcode/data/rules/public-domain_90.RULE index 113b10d8a68..23cfc6cbc4b 100644 --- a/src/licensedcode/data/rules/public-domain_90.RULE +++ b/src/licensedcode/data/rules/public-domain_90.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + This specific file is placed in the public domain by its author, \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_90.yml b/src/licensedcode/data/rules/public-domain_90.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_90.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_91.RULE b/src/licensedcode/data/rules/public-domain_91.RULE index 88fb7e015c8..313cf8dd151 100644 --- a/src/licensedcode/data/rules/public-domain_91.RULE +++ b/src/licensedcode/data/rules/public-domain_91.RULE @@ -1,7 +1,13 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + /* The contents of this file are hereby released into the public domain. */ /* This does not affect the rest of the program code in , which */ /* remains under the GPL except where specific files state differently, */ /* such as this one. */ /* */ /* Programs are free to use the to name lookup table contained in */ -/* this file for whatever purpose they desire, with no strings attached. \ No newline at end of file +/* this file for whatever purpose they desire, with no strings attached. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_91.yml b/src/licensedcode/data/rules/public-domain_91.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_92.RULE b/src/licensedcode/data/rules/public-domain_92.RULE index 5b85055e2de..7bbdc3f9c0a 100644 --- a/src/licensedcode/data/rules/public-domain_92.RULE +++ b/src/licensedcode/data/rules/public-domain_92.RULE @@ -1,4 +1,10 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + /* The contents of this file are hereby released into the public domain. */ /* This does not affect the rest of the program code in , which */ /* remains under the GPL except where specific files state differently, */ -/* such as this one. */ +/* such as this one. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_92.yml b/src/licensedcode/data/rules/public-domain_92.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_92.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_93.RULE b/src/licensedcode/data/rules/public-domain_93.RULE index 5c17bbaa4fd..cd8630d7fc5 100644 --- a/src/licensedcode/data/rules/public-domain_93.RULE +++ b/src/licensedcode/data/rules/public-domain_93.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + /* This is a public-domain reimplementation of Not derived from licensed software. This code may be used on any computer system for any diff --git a/src/licensedcode/data/rules/public-domain_93.yml b/src/licensedcode/data/rules/public-domain_93.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_93.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_94.RULE b/src/licensedcode/data/rules/public-domain_94.RULE index 684dedf4aac..77e10389337 100644 --- a/src/licensedcode/data/rules/public-domain_94.RULE +++ b/src/licensedcode/data/rules/public-domain_94.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + This is a public-domain reimplementation of . Not derived from licensed software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_94.yml b/src/licensedcode/data/rules/public-domain_94.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_94.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_95.RULE b/src/licensedcode/data/rules/public-domain_95.RULE index e82a504d266..2aa866d54c4 100644 --- a/src/licensedcode/data/rules/public-domain_95.RULE +++ b/src/licensedcode/data/rules/public-domain_95.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + * This public domain version of made available to systems that * don't have their own. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_95.yml b/src/licensedcode/data/rules/public-domain_95.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_95.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_96.RULE b/src/licensedcode/data/rules/public-domain_96.RULE index a505d884cc6..d507dbbb7f5 100644 --- a/src/licensedcode/data/rules/public-domain_96.RULE +++ b/src/licensedcode/data/rules/public-domain_96.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + /* Modify and distribute as you will, just leave the credits. */ -/* ...My small gift to the PD world... */ +/* ...My small gift to the PD world... */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_96.yml b/src/licensedcode/data/rules/public-domain_96.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_96.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_97.RULE b/src/licensedcode/data/rules/public-domain_97.RULE index 5f637ca5247..627df39bec2 100644 --- a/src/licensedcode/data/rules/public-domain_97.RULE +++ b/src/licensedcode/data/rules/public-domain_97.RULE @@ -1 +1,7 @@ -THIS SOFTWARE AND ITS doCUMENTATION ARE in THE PUBLIC doMAin +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + +THIS SOFTWARE AND ITS doCUMENTATION ARE in THE PUBLIC doMAin \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_97.yml b/src/licensedcode/data/rules/public-domain_97.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_97.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_98.RULE b/src/licensedcode/data/rules/public-domain_98.RULE index afbac09f636..13de4ba0f32 100644 --- a/src/licensedcode/data/rules/public-domain_98.RULE +++ b/src/licensedcode/data/rules/public-domain_98.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 99 +--- + Based on public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_98.yml b/src/licensedcode/data/rules/public-domain_98.yml deleted file mode 100644 index f6a75606ae9..00000000000 --- a/src/licensedcode/data/rules/public-domain_98.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/public-domain_99.RULE b/src/licensedcode/data/rules/public-domain_99.RULE index c327e5aa577..fe6a46f9322 100644 --- a/src/licensedcode/data/rules/public-domain_99.RULE +++ b/src/licensedcode/data/rules/public-domain_99.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 95 +--- + was written by me * and released into the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_99.yml b/src/licensedcode/data/rules/public-domain_99.yml deleted file mode 100644 index ee1b4a03611..00000000000 --- a/src/licensedcode/data/rules/public-domain_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/public-domain_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/public-domain_and_apache-2.0_1.RULE index 44226b345a7..9de49838d14 100644 --- a/src/licensedcode/data/rules/public-domain_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_apache-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: public-domain AND apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/docs/LICENSE + - https://www.apache.org/licenses/LICENSE-2.0 +--- + ## Based on `install-sh' from the X Consortium's X11R5 distribution ## as of 89/12/18 which is freely available. # This script falls under the Apache License. @@ -16,4 +25,4 @@ # 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. +# limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_apache-2.0_1.yml b/src/licensedcode/data/rules/public-domain_and_apache-2.0_1.yml deleted file mode 100644 index a8a7b5da1e5..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_apache-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain AND apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/docs/LICENSE - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/public-domain_and_apache-2.0_2.RULE b/src/licensedcode/data/rules/public-domain_and_apache-2.0_2.RULE index e2a557619a4..99e9e2b1960 100644 --- a/src/licensedcode/data/rules/public-domain_and_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_apache-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain AND apache-2.0 +is_license_notice: yes +relevance: 100 +--- + ex-public domain, ported to APR for Apache 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_apache-2.0_2.yml b/src/licensedcode/data/rules/public-domain_and_apache-2.0_2.yml deleted file mode 100644 index de988aaaae1..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_apache-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_apache.RULE b/src/licensedcode/data/rules/public-domain_and_apache.RULE index adc157ff215..dd5495a0373 100644 --- a/src/licensedcode/data/rules/public-domain_and_apache.RULE +++ b/src/licensedcode/data/rules/public-domain_and_apache.RULE @@ -1,3 +1,12 @@ +--- +license_expression: public-domain AND apache-2.0 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/docs/LICENSE + - http://www.apache.org/licenses/LICENSE-2.0 +--- + ## Based on `install-sh' from the X Consortium's X11R5 distribution ## as of 89/12/18 which is freely available. # This script falls under the Apache License. @@ -16,4 +25,4 @@ # 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. +# limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_apache.yml b/src/licensedcode/data/rules/public-domain_and_apache.yml deleted file mode 100644 index e5770848e7e..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_apache.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain AND apache-2.0 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/docs/LICENSE - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/public-domain_and_apache2.RULE b/src/licensedcode/data/rules/public-domain_and_apache2.RULE index a4f46d9626c..70547d0682c 100644 --- a/src/licensedcode/data/rules/public-domain_and_apache2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_apache2.RULE @@ -1,6 +1,13 @@ +--- +license_expression: public-domain AND apache-2.0 +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +ignorable_urls: + - http://www.apache.org/docs/LICENSE +--- + ## Based on `install-sh' from the X Consortium's X11R5 distribution ## as of 89/12/18 which is freely available. # This script falls under the Apache License. -# See http://www.apache.org/docs/LICENSE - - +# See http://www.apache.org/docs/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_apache2.yml b/src/licensedcode/data/rules/public-domain_and_apache2.yml deleted file mode 100644 index 345143d3abb..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_apache2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain AND apache-2.0 -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 -ignorable_urls: - - http://www.apache.org/docs/LICENSE diff --git a/src/licensedcode/data/rules/public-domain_and_free-unknown_1.RULE b/src/licensedcode/data/rules/public-domain_and_free-unknown_1.RULE index 7b137d14ddf..91a8c916061 100644 --- a/src/licensedcode/data/rules/public-domain_and_free-unknown_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_free-unknown_1.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain AND free-unknown +is_license_tag: yes +relevance: 100 +notes: https://github.com/murraygm/chrome-hide-promoted-tweets/blob/6a268ca4f9911c4c3b1e4b99a8a3d588e00a180a/hidetwitterads/content.js#L4 +--- + License: Free Public Domian (data used may be under additional restrictions) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_free-unknown_1.yml b/src/licensedcode/data/rules/public-domain_and_free-unknown_1.yml deleted file mode 100644 index f1760e4eeb1..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_free-unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain AND free-unknown -is_license_tag: yes -relevance: 100 -notes: https://github.com/murraygm/chrome-hide-promoted-tweets/blob/6a268ca4f9911c4c3b1e4b99a8a3d588e00a180a/hidetwitterads/content.js#L4 diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_1.RULE index aa820449c28..2f95d7ff079 100644 --- a/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: public-domain AND gpl-1.0-plus +is_license_notice: yes +--- + This code is in the public domain, but in Linux it's simplest to just -say it's GPL and consider the authors as the copyright holders. +say it's GPL and consider the authors as the copyright holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_1.yml deleted file mode 100644 index 18814d7dbbd..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain AND gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_2.RULE index 9856dcbd244..c234cab6ae5 100644 --- a/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_2.RULE @@ -1,4 +1,8 @@ +--- +license_expression: public-domain AND gpl-1.0-plus +is_license_notice: yes +--- + The original authors have disclaimed all copyright interest in this code and thus put it in the public domain. The subsequent authors - have put this under the GNU General Public License. - + have put this under the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_2.yml deleted file mode 100644 index 18814d7dbbd..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain AND gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus.RULE index 16247249465..4fb51c0944f 100644 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain AND gpl-2.0-plus +is_license_notice: yes +--- + The original author has disclaimed all copyright interest in this code and thus put it in the public domain. The subsequent authors have put this under the GNU General Public License. @@ -15,4 +20,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -USA +USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus.yml b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus.yml deleted file mode 100644 index 58e79a75fca..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain AND gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_1.RULE index 02f41c0e6f9..de33b8f7155 100644 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain AND gpl-2.0-plus +is_license_notice: yes +--- + The original authors have disclaimed all copyright interest in this code and thus put it in the public domain. The subsequent authors have put this under the GNU General Public License. @@ -6,4 +11,4 @@ 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. + (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_1.yml deleted file mode 100644 index 58e79a75fca..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain AND gpl-2.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE index 577f7db9d23..d31b24b0852 100644 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain AND gpl-2.0-plus AND gpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + The build system contains public domain files, and files that are under GNU GPLv2+ or GNU GPLv3+. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.yml deleted file mode 100644 index 81d9b4aa20f..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0-plus_and_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND gpl-2.0-plus AND gpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0.RULE b/src/licensedcode/data/rules/public-domain_and_gpl-2.0.RULE index 6b1f9d950c5..bf2be412f29 100644 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/public-domain_and_gpl-2.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain AND gpl-2.0 +is_license_notice: yes +--- + Code was from the public domain, copyright abandoned. Code was subsequently included in the kernel, thus was re-licensed under the -GNU GPL v2. +GNU GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0.yml b/src/licensedcode/data/rules/public-domain_and_gpl-2.0.yml deleted file mode 100644 index a0425b7e241..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain AND gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0_2.RULE b/src/licensedcode/data/rules/public-domain_and_gpl-2.0_2.RULE index c4d02996a1b..c3e67a34269 100644 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_gpl-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain AND gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + copied from libtomcrypt and then relicensed under GPLv2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_gpl-2.0_2.yml b/src/licensedcode/data/rules/public-domain_and_gpl-2.0_2.yml deleted file mode 100644 index 0826f44cc29..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_gpl-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND gpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_gutenberg-2020_1.RULE b/src/licensedcode/data/rules/public-domain_and_gutenberg-2020_1.RULE index 68ae7011193..2deedf28183 100644 --- a/src/licensedcode/data/rules/public-domain_and_gutenberg-2020_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_gutenberg-2020_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain AND gutenberg-2020 +is_license_notice: yes +relevance: 100 +--- + This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it diff --git a/src/licensedcode/data/rules/public-domain_and_gutenberg-2020_1.yml b/src/licensedcode/data/rules/public-domain_and_gutenberg-2020_1.yml deleted file mode 100644 index 26cc6f76ed4..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_gutenberg-2020_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND gutenberg-2020 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_1.RULE b/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_1.RULE index 8fd8b4e0f50..8344dc2fa09 100644 --- a/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain AND lgpl-2.1 WITH libwebsockets-exception +is_license_notice: yes +relevance: 100 +--- + the license for the original code, * he replied it is Public Domain. Use the URL above to get the original * Public Domain version if you want it. diff --git a/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_1.yml b/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_1.yml deleted file mode 100644 index 5c529ac8a9f..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND lgpl-2.1 WITH libwebsockets-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_2.RULE b/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_2.RULE index 45c9bec6fa5..71d24f822ed 100644 --- a/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain AND lgpl-2.1 WITH libwebsockets-exception +is_license_notice: yes +relevance: 100 +--- + relicensed from Public Domain to LGPL2.1+SLE, link to original Public Domain version \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_2.yml b/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_2.yml deleted file mode 100644 index 5c529ac8a9f..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_lgpl-2.1_with_libwebsockets-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND lgpl-2.1 WITH libwebsockets-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_mit2.RULE b/src/licensedcode/data/rules/public-domain_and_mit2.RULE index 3a5b9cc8f45..9c9a0c447e2 100644 --- a/src/licensedcode/data/rules/public-domain_and_mit2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_mit2.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain AND mit +is_license_notice: yes +relevance: 100 +--- + This example code is in public domain and licensed under MIT license \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_mit2.yml b/src/licensedcode/data/rules/public-domain_and_mit2.yml deleted file mode 100644 index 32cf3764df7..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_mit2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_mit_1.RULE b/src/licensedcode/data/rules/public-domain_and_mit_1.RULE index 5e692b7b450..a41bac758df 100644 --- a/src/licensedcode/data/rules/public-domain_and_mit_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_mit_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain AND mit +is_license_notice: yes +relevance: 100 +--- + This code was released into the public domain. Everything else is made available under the MIT license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_mit_1.yml b/src/licensedcode/data/rules/public-domain_and_mit_1.yml deleted file mode 100644 index 32cf3764df7..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_other-permissive_1.RULE b/src/licensedcode/data/rules/public-domain_and_other-permissive_1.RULE index d1cca795d7a..08da7863062 100644 --- a/src/licensedcode/data/rules/public-domain_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_other-permissive_1.RULE @@ -1,5 +1,12 @@ +--- +license_expression: other-permissive +is_license_text: yes +relevance: 100 +notes: there are extra conditions attached to the public domain dedication, making this moot +--- + License: PD This file is in the public domain. You may use and modify it as you see fit, as long as this copyright message is included and that there is an indication as to what modifications have been - made (if any). + made (if any). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_other-permissive_1.yml b/src/licensedcode/data/rules/public-domain_and_other-permissive_1.yml deleted file mode 100644 index b9bef801edb..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_other-permissive_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_text: yes -relevance: 100 -notes: there are extra conditions attached to the public domain dedication, making this moot diff --git a/src/licensedcode/data/rules/public-domain_and_other-permissive_2.RULE b/src/licensedcode/data/rules/public-domain_and_other-permissive_2.RULE index 5c9cc79de1f..5baacbc8148 100644 --- a/src/licensedcode/data/rules/public-domain_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_other-permissive_2.RULE @@ -1,2 +1,9 @@ +--- +license_expression: public-domain AND other-permissive +is_license_text: yes +relevance: 100 +notes: there are extra conditions attache to the public domain dedication +--- + This file is in the public domain. The authors ask that -you leave this credit intact on any copies of this file. +you leave this credit intact on any copies of this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_other-permissive_2.yml b/src/licensedcode/data/rules/public-domain_and_other-permissive_2.yml deleted file mode 100644 index 2eb9c6cc3c0..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_other-permissive_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain AND other-permissive -is_license_text: yes -relevance: 100 -notes: there are extra conditions attache to the public domain dedication diff --git a/src/licensedcode/data/rules/public-domain_and_other-permissive_and_other-copyleft_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/public-domain_and_other-permissive_and_other-copyleft_and_proprietary-license_1.RULE index 1aecf03407a..86509f67757 100644 --- a/src/licensedcode/data/rules/public-domain_and_other-permissive_and_other-copyleft_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_other-permissive_and_other-copyleft_and_proprietary-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain AND other-permissive AND other-copyleft AND proprietary-license +is_license_notice: yes +relevance: 100 +--- + Each package in SLIB must either be in the public domain, or come with a statement of terms permitting users to copy, redistribute and -modify it. \ No newline at end of file +modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_other-permissive_and_other-copyleft_and_proprietary-license_1.yml b/src/licensedcode/data/rules/public-domain_and_other-permissive_and_other-copyleft_and_proprietary-license_1.yml deleted file mode 100644 index 890e6e2ab80..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_other-permissive_and_other-copyleft_and_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND other-permissive AND other-copyleft AND proprietary-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/public-domain_and_proprietary-license_1.RULE index ac7b5b8dab5..39cddc24cc6 100644 --- a/src/licensedcode/data/rules/public-domain_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_proprietary-license_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: public-domain AND gutenberg-2020 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: the Gutenberg project license is not really a public domain nor an open source license +ignorable_urls: + - http://www.gutenberg.net/ +--- + This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included diff --git a/src/licensedcode/data/rules/public-domain_and_proprietary-license_1.yml b/src/licensedcode/data/rules/public-domain_and_proprietary-license_1.yml deleted file mode 100644 index c416d9a3e4a..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_proprietary-license_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain AND gutenberg-2020 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: the Gutenberg project license is not really a public domain nor an open source license -ignorable_urls: - - http://www.gutenberg.net/ diff --git a/src/licensedcode/data/rules/public-domain_and_proprietary-license_2.RULE b/src/licensedcode/data/rules/public-domain_and_proprietary-license_2.RULE index 1b16428a7b6..99e106ae090 100644 --- a/src/licensedcode/data/rules/public-domain_and_proprietary-license_2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_proprietary-license_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain AND gutenberg-2020 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: the old Gutenberg project license was not really a public domain nor an open source license +--- + Creating the works from public domain print editions means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without diff --git a/src/licensedcode/data/rules/public-domain_and_proprietary-license_2.yml b/src/licensedcode/data/rules/public-domain_and_proprietary-license_2.yml deleted file mode 100644 index 4d0df82e2ac..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_proprietary-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain AND gutenberg-2020 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: the old Gutenberg project license was not really a public domain nor an open source license diff --git a/src/licensedcode/data/rules/public-domain_and_proprietary-license_3.RULE b/src/licensedcode/data/rules/public-domain_and_proprietary-license_3.RULE index 226ed1b4091..ef556161407 100644 --- a/src/licensedcode/data/rules/public-domain_and_proprietary-license_3.RULE +++ b/src/licensedcode/data/rules/public-domain_and_proprietary-license_3.RULE @@ -1,3 +1,20 @@ +--- +license_expression: public-domain AND gutenberg-2020 +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://gutenberg.net/license + - http://pglaf.org/ + - http://pglaf.org/donate + - http://pglaf.org/fundraising + - http://www.gutenberg.net/ + - http://www.pglaf.org/ +ignorable_emails: + - business@pglaf.org + - gbnewby@pglaf.org +--- + *** START: FULL LICENSE *** THE FULL PROJECT GUTENBERG LICENSE diff --git a/src/licensedcode/data/rules/public-domain_and_proprietary-license_3.yml b/src/licensedcode/data/rules/public-domain_and_proprietary-license_3.yml deleted file mode 100644 index 7b45f14a98e..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_proprietary-license_3.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: public-domain AND gutenberg-2020 -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://gutenberg.net/license - - http://pglaf.org/ - - http://pglaf.org/donate - - http://pglaf.org/fundraising - - http://www.gutenberg.net/ - - http://www.pglaf.org/ -ignorable_emails: - - business@pglaf.org - - gbnewby@pglaf.org diff --git a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_1.RULE b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_1.RULE index 47d25182d7d..6d590bc4882 100644 --- a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_1.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain AND python AND bsd-simplified AND gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Seen in Docutils metadata +--- + BSD License; GNU General Public License (GPL); Public Domain; Python Software Foundation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_1.yml b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_1.yml deleted file mode 100644 index e2a730046c4..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain AND python AND bsd-simplified AND gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Seen in Docutils metadata diff --git a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_2.RULE b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_2.RULE index d39e9bd5175..26f3a8ec389 100644 --- a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: public-domain AND python AND bsd-simplified AND gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +notes: Seen in Docutils metadata +--- + public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_2.yml b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_2.yml deleted file mode 100644 index 55e247ece08..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain AND python AND bsd-simplified AND gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt -notes: Seen in Docutils metadata diff --git a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_3.RULE b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_3.RULE index 309d14b1a93..c52b4b64df1 100644 --- a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: public-domain AND python AND bsd-simplified AND gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +notes: Seen in Docutils metadata +--- + License: public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_3.yml b/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_3.yml deleted file mode 100644 index 55e247ece08..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_python_and_bsd-simplified_and_gpl-3.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain AND python AND bsd-simplified AND gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt -notes: Seen in Docutils metadata diff --git a/src/licensedcode/data/rules/public-domain_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/public-domain_and_unknown-license-reference_1.RULE index c3ae65dfec5..f94c118115c 100644 --- a/src/licensedcode/data/rules/public-domain_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_unknown-license-reference_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain AND unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + * No copyright asserted on the source code of this class. May be used for any * purpose, however, refer to the Unisys LZW patent for restrictions on use of * the associated LZWEncoder class. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/public-domain_and_unknown-license-reference_1.yml deleted file mode 100644 index ee643d9d60c..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_unknown_1.RULE b/src/licensedcode/data/rules/public-domain_and_unknown_1.RULE index 862fda1e6e1..e5b8f015001 100644 --- a/src/licensedcode/data/rules/public-domain_and_unknown_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_unknown_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain AND unknown +is_license_notice: yes +relevance: 100 +--- + Please note, the licenses on some of those word lists are restrictive, so please read the licenses before redistributing them. The cracklib-words distribution from the cracklib sourceforge diff --git a/src/licensedcode/data/rules/public-domain_and_unknown_1.yml b/src/licensedcode/data/rules/public-domain_and_unknown_1.yml deleted file mode 100644 index c0488b95d1f..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_unknown_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain AND unknown -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/public-domain_and_warranty-disclaimer_1.RULE index 58313a1c4b0..ab6a1c52577 100644 --- a/src/licensedcode/data/rules/public-domain_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/public-domain_and_warranty-disclaimer_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: other-permissive +is_license_notice: yes +relevance: 100 +notes: https://www.siber.com/btyacc/README.txt +--- + In English: is freeware. {{is distributed with no warranty whatsoever. The author and any other contributors take no responsibility for any and all consequences of its use.}} @@ -9,4 +16,4 @@ DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, CAUSED BY AND INCURRED BY CUSTOMER OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF SYSTEMS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES.}} +DAMAGES.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/public-domain_and_warranty-disclaimer_1.yml deleted file mode 100644 index b06220e7c8b..00000000000 --- a/src/licensedcode/data/rules/public-domain_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: other-permissive -is_license_notice: yes -relevance: 100 -notes: https://www.siber.com/btyacc/README.txt diff --git a/src/licensedcode/data/rules/public-domain_apache_1.RULE b/src/licensedcode/data/rules/public-domain_apache_1.RULE index 28ee2bc3ee9..59b335a8185 100644 --- a/src/licensedcode/data/rules/public-domain_apache_1.RULE +++ b/src/licensedcode/data/rules/public-domain_apache_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain +is_license_notice: yes +notes: This notice text is contained in the text at http://apache.org/licenses/LICENSE-1.1 but + it is really specific to an Apache Software Foundation component that contains public domain + software. +--- + * Portions of this software are based upon public domain software * originally written at the National Center for Supercomputing Applications, * University of Illinois, Urbana-Champaign. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_apache_1.yml b/src/licensedcode/data/rules/public-domain_apache_1.yml deleted file mode 100644 index 8aa060f697e..00000000000 --- a/src/licensedcode/data/rules/public-domain_apache_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -notes: This notice text is contained in the text at http://apache.org/licenses/LICENSE-1.1 but - it is really specific to an Apache Software Foundation component that contains public domain - software. diff --git a/src/licensedcode/data/rules/public-domain_bare_words.RULE b/src/licensedcode/data/rules/public-domain_bare_words.RULE index a7a158b93c3..5d9fb8c1d68 100644 --- a/src/licensedcode/data/rules/public-domain_bare_words.RULE +++ b/src/licensedcode/data/rules/public-domain_bare_words.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_reference: yes +is_continuous: yes +relevance: 70 +--- + Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_bare_words.yml b/src/licensedcode/data/rules/public-domain_bare_words.yml deleted file mode 100644 index 461a32110e6..00000000000 --- a/src/licensedcode/data/rules/public-domain_bare_words.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -is_continuous: yes -relevance: 70 diff --git a/src/licensedcode/data/rules/public-domain_disclaimed_38.RULE b/src/licensedcode/data/rules/public-domain_disclaimed_38.RULE index bf311e380d8..103cba23ddf 100644 --- a/src/licensedcode/data/rules/public-domain_disclaimed_38.RULE +++ b/src/licensedcode/data/rules/public-domain_disclaimed_38.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 90 +--- + Copyright on this file is disclaimed \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_disclaimed_38.yml b/src/licensedcode/data/rules/public-domain_disclaimed_38.yml deleted file mode 100644 index 2fdf85a351e..00000000000 --- a/src/licensedcode/data/rules/public-domain_disclaimed_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_docutils.RULE b/src/licensedcode/data/rules/public-domain_docutils.RULE index 15d65effe7b..1d23ca2a785 100644 --- a/src/licensedcode/data/rules/public-domain_docutils.RULE +++ b/src/licensedcode/data/rules/public-domain_docutils.RULE @@ -1,6 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + :Copyright: This document has been placed in the public domain. Most of the files included in this project have been placed in the public domain, and therefore have no license requirements and no restrictions on copying or usage; see the `Public Domain Dedication`_ -below. There are a few exceptions_, listed below. +below. There are a few exceptions_, listed below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_docutils.yml b/src/licensedcode/data/rules/public-domain_docutils.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_docutils.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_docutils2.RULE b/src/licensedcode/data/rules/public-domain_docutils2.RULE index d4caeb32d6e..1d1829030c6 100644 --- a/src/licensedcode/data/rules/public-domain_docutils2.RULE +++ b/src/licensedcode/data/rules/public-domain_docutils2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + Public Domain Dedication ======================== diff --git a/src/licensedcode/data/rules/public-domain_docutils2.yml b/src/licensedcode/data/rules/public-domain_docutils2.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_docutils2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_docutils3.RULE b/src/licensedcode/data/rules/public-domain_docutils3.RULE index f645d86b40a..f4696683dbf 100644 --- a/src/licensedcode/data/rules/public-domain_docutils3.RULE +++ b/src/licensedcode/data/rules/public-domain_docutils3.RULE @@ -1 +1,7 @@ -:Copyright: This document has been placed in the public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + +:Copyright: This document has been placed in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_docutils3.yml b/src/licensedcode/data/rules/public-domain_docutils3.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_docutils3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_licensebutton.RULE b/src/licensedcode/data/rules/public-domain_licensebutton.RULE index c6477bfac88..fabafa7dece 100644 --- a/src/licensedcode/data/rules/public-domain_licensebutton.RULE +++ b/src/licensedcode/data/rules/public-domain_licensebutton.RULE @@ -1 +1,9 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licensebuttons.net/l/publicdomain +--- + https://licensebuttons.net/l/publicdomain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_licensebutton.yml b/src/licensedcode/data/rules/public-domain_licensebutton.yml deleted file mode 100644 index 9f28fb18ceb..00000000000 --- a/src/licensedcode/data/rules/public-domain_licensebutton.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licensebuttons.net/l/publicdomain diff --git a/src/licensedcode/data/rules/public-domain_newlib.RULE b/src/licensedcode/data/rules/public-domain_newlib.RULE index d562d20dde2..02d6c7198bc 100644 --- a/src/licensedcode/data/rules/public-domain_newlib.RULE +++ b/src/licensedcode/data/rules/public-domain_newlib.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + Totally public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_newlib.yml b/src/licensedcode/data/rules/public-domain_newlib.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_newlib.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_newlib2.RULE b/src/licensedcode/data/rules/public-domain_newlib2.RULE index e97244db08a..0e2ed3ceff5 100644 --- a/src/licensedcode/data/rules/public-domain_newlib2.RULE +++ b/src/licensedcode/data/rules/public-domain_newlib2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_notice: yes +--- + This file is placed in the * public domain. Permission to use, copy, modify, and - * distribute this software is freely granted. + * distribute this software is freely granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_newlib2.yml b/src/licensedcode/data/rules/public-domain_newlib2.yml deleted file mode 100644 index fd1246dff29..00000000000 --- a/src/licensedcode/data/rules/public-domain_newlib2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_newlib3.RULE b/src/licensedcode/data/rules/public-domain_newlib3.RULE index f5311398637..dc2f8164739 100644 --- a/src/licensedcode/data/rules/public-domain_newlib3.RULE +++ b/src/licensedcode/data/rules/public-domain_newlib3.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_reference: yes +relevance: 100 +--- + Placed into the Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_newlib3.yml b/src/licensedcode/data/rules/public-domain_newlib3.yml deleted file mode 100644 index d6a9ca47fdc..00000000000 --- a/src/licensedcode/data/rules/public-domain_newlib3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_not_sax-pd.RULE b/src/licensedcode/data/rules/public-domain_not_sax-pd.RULE index d95dbbb4b86..dad5755a88e 100644 --- a/src/licensedcode/data/rules/public-domain_not_sax-pd.RULE +++ b/src/licensedcode/data/rules/public-domain_not_sax-pd.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + source code, compiled code, and documentation contained in this distribution into the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_not_sax-pd.yml b/src/licensedcode/data/rules/public-domain_not_sax-pd.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_not_sax-pd.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_not_sax-pd3.RULE b/src/licensedcode/data/rules/public-domain_not_sax-pd3.RULE index 6e817c68980..7511f339019 100644 --- a/src/licensedcode/data/rules/public-domain_not_sax-pd3.RULE +++ b/src/licensedcode/data/rules/public-domain_not_sax-pd3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + This module, both source code and documentation, is in the Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_not_sax-pd3.yml b/src/licensedcode/data/rules/public-domain_not_sax-pd3.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_not_sax-pd3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_not_unknown_1.RULE b/src/licensedcode/data/rules/public-domain_not_unknown_1.RULE index 437c89e7d95..c63ae2799fc 100644 --- a/src/licensedcode/data/rules/public-domain_not_unknown_1.RULE +++ b/src/licensedcode/data/rules/public-domain_not_unknown_1.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +--- + The contents of this package are ineligible for copyright protection. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_not_unknown_1.yml b/src/licensedcode/data/rules/public-domain_not_unknown_1.yml deleted file mode 100644 index 2583555ca0d..00000000000 --- a/src/licensedcode/data/rules/public-domain_not_unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/public-domain_or_apache-2.0_1.RULE index 918fd4fa898..ecfd8e42344 100644 --- a/src/licensedcode/data/rules/public-domain_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain OR apache-2.0 +is_license_reference: yes +relevance: 100 +--- + Public Domain or Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_apache-2.0_1.yml b/src/licensedcode/data/rules/public-domain_or_apache-2.0_1.yml deleted file mode 100644 index 60081aba97c..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR apache-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/public-domain_or_apache-2.0_2.RULE index d525ff36b9d..eb518a0a33c 100644 --- a/src/licensedcode/data/rules/public-domain_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/public-domain_or_apache-2.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + either Public Domain or Apache 2.0. Choose whatever you want. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_apache-2.0_2.yml b/src/licensedcode/data/rules/public-domain_or_apache-2.0_2.yml deleted file mode 100644 index 8937520e987..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_apache-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_bsd-source-code_1.RULE b/src/licensedcode/data/rules/public-domain_or_bsd-source-code_1.RULE index ff97feb5071..8dff12b37fc 100644 --- a/src/licensedcode/data/rules/public-domain_or_bsd-source-code_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_bsd-source-code_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain OR bsd-source-code +is_license_notice: yes +relevance: 100 +notes: https://github.com/robbiehanson/CocoaAsyncSocket/blob/master/LICENSE.txt +--- + This library is in the public domain. However, not all organizations are allowed to use such a license. For example, Germany doesn't recognize the Public Domain and one is not allowed to use libraries under such license (or similar). diff --git a/src/licensedcode/data/rules/public-domain_or_bsd-source-code_1.yml b/src/licensedcode/data/rules/public-domain_or_bsd-source-code_1.yml deleted file mode 100644 index 62a9ba41b47..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_bsd-source-code_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain OR bsd-source-code -is_license_notice: yes -relevance: 100 -notes: https://github.com/robbiehanson/CocoaAsyncSocket/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/public-domain_or_bsd-zero_1.RULE b/src/licensedcode/data/rules/public-domain_or_bsd-zero_1.RULE index c549ad7c2df..6969e4ad9d6 100644 --- a/src/licensedcode/data/rules/public-domain_or_bsd-zero_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_bsd-zero_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR bsd-zero +is_license_text: yes +--- + The Routines have been identified as being free of known restrictions under copyright law, including all related and neighboring rights. The Routines are in the public domain as they do not meet the threshold of originality required for copyright protection in most jursidictions. diff --git a/src/licensedcode/data/rules/public-domain_or_bsd-zero_1.yml b/src/licensedcode/data/rules/public-domain_or_bsd-zero_1.yml deleted file mode 100644 index 0c76fd47aae..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_bsd-zero_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR bsd-zero -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_or_cc0-1.0_1.RULE b/src/licensedcode/data/rules/public-domain_or_cc0-1.0_1.RULE index 9579261325f..28693fe6472 100644 --- a/src/licensedcode/data/rules/public-domain_or_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_cc0-1.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain OR cc0-1.0 +is_license_notice: yes +relevance: 90 +--- + This code is placed in the public domain as far as allowed by law, parts (if any) that cannot be relased in the public domain are irrevocably licensed to all readers under the Creative Commons license without restrictions ... but if you improve it it would be great if you could share it. The code uses a base N decoder plucked from the web somewhere (can't find it) that was also public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_cc0-1.0_1.yml b/src/licensedcode/data/rules/public-domain_or_cc0-1.0_1.yml deleted file mode 100644 index 4ea4211fe9d..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_cc0-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR cc0-1.0 -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/public-domain_or_cc0.RULE b/src/licensedcode/data/rules/public-domain_or_cc0.RULE index 7fd244ec4ef..76ce437da2a 100644 --- a/src/licensedcode/data/rules/public-domain_or_cc0.RULE +++ b/src/licensedcode/data/rules/public-domain_or_cc0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR cc0-1.0 +is_license_notice: yes +--- + The font in this directory belongs to the public domain. In jurisdictions that do not recognize public domain ownership of these -files, the following Creative Commons Zero declaration applies: +files, the following Creative Commons Zero declaration applies: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_cc0.yml b/src/licensedcode/data/rules/public-domain_or_cc0.yml deleted file mode 100644 index f5df9e51e83..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_cc0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR cc0-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_or_cc0_1.RULE b/src/licensedcode/data/rules/public-domain_or_cc0_1.RULE index ee45b54a518..c4681346db9 100644 --- a/src/licensedcode/data/rules/public-domain_or_cc0_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_cc0_1.RULE @@ -1,5 +1,12 @@ +--- +license_expression: public-domain OR cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode +--- + The font in this directory belongs to the public domain. In jurisdictions that do not recognize public domain ownership of these files, the following Creative Commons Zero declaration applies: - + \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_cc0_1.yml b/src/licensedcode/data/rules/public-domain_or_cc0_1.yml deleted file mode 100644 index 12c6558595c..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_cc0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain OR cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode diff --git a/src/licensedcode/data/rules/public-domain_or_cc0_2.RULE b/src/licensedcode/data/rules/public-domain_or_cc0_2.RULE index ff298302898..6afbed7f1d5 100644 --- a/src/licensedcode/data/rules/public-domain_or_cc0_2.RULE +++ b/src/licensedcode/data/rules/public-domain_or_cc0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain OR cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode +--- + License for the font embedded below is from: The font in this directory belongs to the public domain. In @@ -35,4 +42,4 @@ which is quoted below: ineffective in any jurisdiction, the Affirmer hereby grants a free, full, permanent, irrevocable, nonexclusive and worldwide license for all her or his copyright and related or neighboring legal rights in - the Work. + the Work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_cc0_2.yml b/src/licensedcode/data/rules/public-domain_or_cc0_2.yml deleted file mode 100644 index 12c6558595c..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_cc0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain OR cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode diff --git a/src/licensedcode/data/rules/public-domain_or_cc0_3.RULE b/src/licensedcode/data/rules/public-domain_or_cc0_3.RULE index 71872ae4320..d0fad0e9595 100644 --- a/src/licensedcode/data/rules/public-domain_or_cc0_3.RULE +++ b/src/licensedcode/data/rules/public-domain_or_cc0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: public-domain OR cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode +--- + The font in this directory belongs to the public domain. In jurisdictions that do not recognize public domain ownership of these files, the following Creative Commons Zero declaration applies: @@ -33,4 +40,4 @@ which is quoted below: ineffective in any jurisdiction, the Affirmer hereby grants a free, full, permanent, irrevocable, nonexclusive and worldwide license for all her or his copyright and related or neighboring legal rights in - the Work. + the Work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_cc0_3.yml b/src/licensedcode/data/rules/public-domain_or_cc0_3.yml deleted file mode 100644 index 12c6558595c..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_cc0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain OR cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode diff --git a/src/licensedcode/data/rules/public-domain_or_cc0_4.RULE b/src/licensedcode/data/rules/public-domain_or_cc0_4.RULE index 5aa876143f9..f611e5783bd 100644 --- a/src/licensedcode/data/rules/public-domain_or_cc0_4.RULE +++ b/src/licensedcode/data/rules/public-domain_or_cc0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain OR cc0-1.0 +is_license_notice: yes +ignorable_urls: + - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode + - https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING +--- + License for the Ahem font embedded below is from: https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING @@ -36,4 +44,4 @@ ineffective in any jurisdiction, the Affirmer hereby grants a free, full, permanent, irrevocable, nonexclusive and worldwide license for all her or his copyright and related or neighboring legal rights in - the Work. + the Work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_cc0_4.yml b/src/licensedcode/data/rules/public-domain_or_cc0_4.yml deleted file mode 100644 index ee51505a075..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_cc0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain OR cc0-1.0 -is_license_notice: yes -ignorable_urls: - - http://labs.creativecommons.org/licenses/zero-waive/1.0/us/legalcode - - https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING diff --git a/src/licensedcode/data/rules/public-domain_or_free-unknown_usgov.RULE b/src/licensedcode/data/rules/public-domain_or_free-unknown_usgov.RULE index f9e842b5092..4f3f69f6c73 100644 --- a/src/licensedcode/data/rules/public-domain_or_free-unknown_usgov.RULE +++ b/src/licensedcode/data/rules/public-domain_or_free-unknown_usgov.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain OR free-unknown +is_license_text: yes +notes: specific to US federal gov works. +--- + This is a work of the U.S. Government and is not subject to copyright protection in the United States. Foreign rights may apply. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_free-unknown_usgov.yml b/src/licensedcode/data/rules/public-domain_or_free-unknown_usgov.yml deleted file mode 100644 index 0a8365fb81a..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_free-unknown_usgov.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR free-unknown -is_license_text: yes -notes: specific to US federal gov works. diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE index 8e168aafeb0..a9e236b8fcf 100644 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/copyleft/lesser.html +--- + released under two GNU GPL, GNU LGPL and as Public Domain is released under GNU General Public License (GPL), GNU diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.yml deleted file mode 100644 index a1fb5427f44..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE index 5db76805fc0..30686e1883b 100644 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.RULE @@ -1 +1,8 @@ +--- +license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +notes: https://github.com/cagerskov/agermenu/blob/master/COPYING +--- + released under two GNU GPL, GNU LGPL and as Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.yml b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.yml deleted file mode 100644 index 8537181c062..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -notes: https://github.com/cagerskov/agermenu/blob/master/COPYING diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_3.RULE index 9cd84eb7335..3c35405cfa4 100644 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_3.RULE @@ -1,4 +1,10 @@ +--- +license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_notice: yes +notes: https://github.com/cagerskov/agermenu/blob/0f826825977bc4dadd4d7cd8f44fe8ddd0570e03/examples/kvastmo/about/contribute.php#L18 +--- + released as {{Public Domian}} and under the two free and open licenses {{GNU Lesser Public License and GNU General Public License}}. You can read more about the licenses and why they are used under the page -licenses Licenses +licenses Licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_3.yml b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_3.yml deleted file mode 100644 index 1ee028fac2f..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_notice: yes -notes: https://github.com/cagerskov/agermenu/blob/0f826825977bc4dadd4d7cd8f44fe8ddd0570e03/examples/kvastmo/about/contribute.php#L18 diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_4.RULE b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_4.RULE index 89ef5078e4d..37686abde8f 100644 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_4.RULE +++ b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_notice: yes +notes: https://github.com/cagerskov/agermenu/blob/0f826825977bc4dadd4d7cd8f44fe8ddd0570e03/examples/kvastmo/about/contribute.php#L18 +--- + it is released as Public Domain - and under the two free and open licenses GNU Lesser Public License and GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_4.yml b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_4.yml deleted file mode 100644 index 1ee028fac2f..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_notice: yes -notes: https://github.com/cagerskov/agermenu/blob/0f826825977bc4dadd4d7cd8f44fe8ddd0570e03/examples/kvastmo/about/contribute.php#L18 diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_5.RULE index 483deaf2c4c..63ba995c908 100644 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/copyleft/gpl.html + - https://www.gnu.org/copyleft/lesser.html +--- + released under two GNU GPL, GNU LGPL and as Public Domain is released under GNU General Public License (GPL), GNU diff --git a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_5.yml b/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_5.yml deleted file mode 100644 index d783cc3e9d4..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_lgpl-2.0-plus_or_gpl-1.0-plus_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain OR lgpl-2.0-plus OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/copyleft/gpl.html - - https://www.gnu.org/copyleft/lesser.html diff --git a/src/licensedcode/data/rules/public-domain_or_mentalis_1.RULE b/src/licensedcode/data/rules/public-domain_or_mentalis_1.RULE index 78cce638dfd..b2a69c34d9f 100644 --- a/src/licensedcode/data/rules/public-domain_or_mentalis_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mentalis_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR bsd-source-code +is_license_text: yes +--- + This library is in the public domain. However, not all organizations are allowed to use such a license. For example, Germany doesn't recognize the Public Domain and one is not allowed to use libraries under such license (or similar). diff --git a/src/licensedcode/data/rules/public-domain_or_mentalis_1.yml b/src/licensedcode/data/rules/public-domain_or_mentalis_1.yml deleted file mode 100644 index c103b690787..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mentalis_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR bsd-source-code -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_or_mit_1.RULE b/src/licensedcode/data/rules/public-domain_or_mit_1.RULE index a4c74b9f166..c6983e45259 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain OR mit +is_license_text: yes +minimum_coverage: 80 +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + This is the license text for the source code. Author: diff --git a/src/licensedcode/data/rules/public-domain_or_mit_1.yml b/src/licensedcode/data/rules/public-domain_or_mit_1.yml deleted file mode 100644 index abd1ccf98c7..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain OR mit -is_license_text: yes -minimum_coverage: 80 -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/public-domain_or_mit_10.RULE b/src/licensedcode/data/rules/public-domain_or_mit_10.RULE index 2e7acc98816..7de3b8aac30 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_10.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_10.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +relevance: 100 +--- + LICENSE Placed in the public domain and also MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_mit_10.yml b/src/licensedcode/data/rules/public-domain_or_mit_10.yml deleted file mode 100644 index 2b650cb382e..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_mit_11.RULE b/src/licensedcode/data/rules/public-domain_or_mit_11.RULE index d6e7930a05e..4cacfc1cb34 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_11.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_11.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +relevance: 100 +--- + Placed in the public domain and also MIT licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_mit_11.yml b/src/licensedcode/data/rules/public-domain_or_mit_11.yml deleted file mode 100644 index 2b650cb382e..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_mit_12.RULE b/src/licensedcode/data/rules/public-domain_or_mit_12.RULE index 1857e60e1d3..38ab49d573c 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_12.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_12.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +relevance: 100 +--- + single-file public domain (or MIT licensed) libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_mit_12.yml b/src/licensedcode/data/rules/public-domain_or_mit_12.yml deleted file mode 100644 index 2b650cb382e..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_mit_2.RULE b/src/licensedcode/data/rules/public-domain_or_mit_2.RULE index 3c3e5b18688..8dcdb9e3d1b 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_2.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: Seen in json-cpp +--- + The MIT license is compatible with both the GPL and commercial software, affording one all of the rights of Public Domain with the minor nuisance of being required to keep the above copyright notice diff --git a/src/licensedcode/data/rules/public-domain_or_mit_2.yml b/src/licensedcode/data/rules/public-domain_or_mit_2.yml deleted file mode 100644 index 0e6d9a04b11..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: Seen in json-cpp diff --git a/src/licensedcode/data/rules/public-domain_or_mit_3.RULE b/src/licensedcode/data/rules/public-domain_or_mit_3.RULE index b857d1c91a6..8ff6c6f64fb 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_3.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +relevance: 100 +notes: Seen in json-cpp +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + In jurisdictions which recognize Public Domain property, the user of this software may choose to accept it either as 1) Public Domain, 2) under the conditions of the MIT License (see below), or 3) under the terms of dual diff --git a/src/licensedcode/data/rules/public-domain_or_mit_3.yml b/src/licensedcode/data/rules/public-domain_or_mit_3.yml deleted file mode 100644 index f95488bc948..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -relevance: 100 -notes: Seen in json-cpp -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/public-domain_or_mit_4.RULE b/src/licensedcode/data/rules/public-domain_or_mit_4.RULE index 960d1bee0f2..2866ec27c14 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_4.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_4.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +relevance: 100 +--- + public domain (or MIT licensed) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_mit_4.yml b/src/licensedcode/data/rules/public-domain_or_mit_4.yml deleted file mode 100644 index 2b650cb382e..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_mit_5.RULE b/src/licensedcode/data/rules/public-domain_or_mit_5.RULE index 6d27103d844..8acfecdf6b0 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_5.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_5.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +relevance: 100 +--- + Licensed under Public Domain & MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_mit_5.yml b/src/licensedcode/data/rules/public-domain_or_mit_5.yml deleted file mode 100644 index 2b650cb382e..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_mit_6.RULE b/src/licensedcode/data/rules/public-domain_or_mit_6.RULE index 35eec933d6a..cc961da3112 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_6.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_6.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +relevance: 100 +--- + LICENSE Public Domain, or MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_mit_6.yml b/src/licensedcode/data/rules/public-domain_or_mit_6.yml deleted file mode 100644 index 2b650cb382e..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_mit_7.RULE b/src/licensedcode/data/rules/public-domain_or_mit_7.RULE index a590794a4de..37d0a453beb 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_7.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +notes: Seen in JSONCPP +ignorable_urls: + - http://en.wikipedia.org/wiki/MIT_License +--- + Authors explicitly disclaim copyright in all jurisdictions which recognize such a disclaimer. In such jurisdictions, this software is released into the Public Domain. diff --git a/src/licensedcode/data/rules/public-domain_or_mit_7.yml b/src/licensedcode/data/rules/public-domain_or_mit_7.yml deleted file mode 100644 index 1ed8ccc3786..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes -notes: Seen in JSONCPP -ignorable_urls: - - http://en.wikipedia.org/wiki/MIT_License diff --git a/src/licensedcode/data/rules/public-domain_or_mit_8.RULE b/src/licensedcode/data/rules/public-domain_or_mit_8.RULE index 266a7e8f4da..e542e3cce03 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_8.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +--- + These libraries are in the public domain. You can do anything you want with them. You have no legal obligation to do anything else, although I appreciate attribution. They are also licensed under the MIT open source license, if you have lawyers who are unhappy with public domain. Every source file includes an explicit dual-license for you to choose from. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_mit_8.yml b/src/licensedcode/data/rules/public-domain_or_mit_8.yml deleted file mode 100644 index ce5e43110e3..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_or_mit_9.RULE b/src/licensedcode/data/rules/public-domain_or_mit_9.RULE index f575a6f53fb..8bdf721db99 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_9.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR mit +is_license_notice: yes +--- + LICENSE Placed in the public domain and also MIT licensed. See end of file for detailed license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_mit_9.yml b/src/licensedcode/data/rules/public-domain_or_mit_9.yml deleted file mode 100644 index ce5e43110e3..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_or_mit_or_artistic-1.0_or_artistic-2.0_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/public-domain_or_mit_or_artistic-1.0_or_artistic-2.0_or_gpl-1.0-plus_1.RULE index dd660e01c74..f46a29526e2 100644 --- a/src/licensedcode/data/rules/public-domain_or_mit_or_artistic-1.0_or_artistic-2.0_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_mit_or_artistic-1.0_or_artistic-2.0_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR mit OR artistic-1.0 OR artistic-2.0 OR gpl-1.0-plus +is_license_notice: yes +--- + I, the copyright holder of this package, hereby release the entire contents therein into the public domain. This applies worldwide, to the extent that it is permissible by law. diff --git a/src/licensedcode/data/rules/public-domain_or_mit_or_artistic-1.0_or_artistic-2.0_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/public-domain_or_mit_or_artistic-1.0_or_artistic-2.0_or_gpl-1.0-plus_1.yml deleted file mode 100644 index efe38eecc29..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_mit_or_artistic-1.0_or_artistic-2.0_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR mit OR artistic-1.0 OR artistic-2.0 OR gpl-1.0-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_or_nysl-0.9982_1.RULE b/src/licensedcode/data/rules/public-domain_or_nysl-0.9982_1.RULE index e376b3130de..d711befa477 100644 --- a/src/licensedcode/data/rules/public-domain_or_nysl-0.9982_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_nysl-0.9982_1.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain OR nysl-0.9982 +is_license_notice: yes +relevance: 100 +--- + Distributed under public domain or NYSL licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_nysl-0.9982_1.yml b/src/licensedcode/data/rules/public-domain_or_nysl-0.9982_1.yml deleted file mode 100644 index fe95537c3a7..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_nysl-0.9982_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR nysl-0.9982 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_1.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_1.RULE index 3c7753cdac9..053e7a5daa4 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR other-permissive +is_license_text: yes +--- + * No copyright is claimed, and the software is hereby placed in the public * domain. In case this attempt to disclaim copyright and place the software * in the public domain is deemed null and void, then the software is diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_1.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_1.yml deleted file mode 100644 index 416e68c4a76..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_10.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_10.RULE index 261a195d864..18d35d4692d 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_10.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_10.RULE @@ -1,3 +1,14 @@ +--- +license_expression: public-domain OR other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2001 Alexander Peslyak +ignorable_holders: + - Alexander Peslyak +--- + No copyright is * claimed, and the software is hereby placed in the public domain. * In case this attempt to disclaim copyright and place the software in the diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_10.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_10.yml deleted file mode 100644 index 5715956c732..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2001 Alexander Peslyak -ignorable_holders: - - Alexander Peslyak diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_11.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_11.RULE index 1b7910bf8d4..0fe63126969 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_11.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_11.RULE @@ -1,3 +1,13 @@ +--- +license_expression: public-domain OR other-permissive +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1998-2011 Solar Designer +ignorable_holders: + - Solar Designer +--- + No copyright is claimed, and the software is hereby placed in the public domain. In case this attempt to disclaim copyright and place the software in the public domain is deemed null and void, then the software is diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_11.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_11.yml deleted file mode 100644 index 471cd18e301..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1998-2011 Solar Designer -ignorable_holders: - - Solar Designer diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_12.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_12.RULE index 2379e9b7ca9..7db85441960 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_12.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: public-domain OR other-permissive +is_license_notice: yes +notes: seen in stb library +--- + LICENSE This software is dual-licensed to the public domain and under the following license: you are granted a perpetual, irrevocable license to copy, modify, diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_12.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_12.yml deleted file mode 100644 index c60900d6305..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_notice: yes -notes: seen in stb library diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_2.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_2.RULE index 845298fef74..1e0dbd7ff52 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR other-permissive +is_license_text: yes +--- + * No copyright is claimed, and the software is hereby placed in the public * domain. In case this attempt to disclaim copyright and place the software * in the public domain is deemed null and void, then the software is diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_2.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_2.yml deleted file mode 100644 index 416e68c4a76..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_3.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_3.RULE index 91c475f39ab..51e4c99f4e3 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: public-domain OR other-permissive +is_license_notice: yes +ignorable_authors: + - Alexander Peslyak +ignorable_urls: + - http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 +--- + Homepage: http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 @@ -13,4 +22,4 @@ Redistribution and use in source and binary forms, with or without modification, are permitted. - There's ABSOLUTELY NO WARRANTY, express or implied. + There's ABSOLUTELY NO WARRANTY, express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_3.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_3.yml deleted file mode 100644 index 6bb5cef1bcb..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_notice: yes -ignorable_authors: - - Alexander Peslyak -ignorable_urls: - - http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_4.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_4.RULE index 114c589f46b..ba2f1fbcd53 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_4.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR other-permissive +is_license_notice: yes +--- + and placed into the public domain. The code also comes with a fallback permissive license for use in jurisdictions that may not recognize the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_4.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_4.yml deleted file mode 100644 index 634435f1884..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_notice: yes diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_5.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_5.RULE index 0a98d3633c6..2e9784729e0 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_5.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: public-domain OR other-permissive +is_license_notice: yes +ignorable_authors: + - Alexander Peslyak +ignorable_urls: + - http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 +--- + Homepage: http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 @@ -15,5 +24,4 @@ There's ABSOLUTELY NO WARRANTY, express or implied. - (This is a heavily cut-down "BSD license".) - \ No newline at end of file + (This is a heavily cut-down "BSD license".) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_5.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_5.yml deleted file mode 100644 index 6bb5cef1bcb..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_notice: yes -ignorable_authors: - - Alexander Peslyak -ignorable_urls: - - http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_6.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_6.RULE index 7a20e198b2b..9bfadd9fd45 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_6.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_6.RULE @@ -1,3 +1,15 @@ +--- +license_expression: public-domain OR other-permissive +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2001 Alexander Peslyak +ignorable_holders: + - Alexander Peslyak +ignorable_authors: + - Alexander Peslyak +--- + This software was written by Alexander Peslyak in 2001. No copyright is claimed, and the software is hereby placed in the public domain. In case this attempt to disclaim copyright and place the software in the diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_6.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_6.yml deleted file mode 100644 index 9cf636207fe..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_6.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2001 Alexander Peslyak -ignorable_holders: - - Alexander Peslyak -ignorable_authors: - - Alexander Peslyak diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_7.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_7.RULE index 091d17ace7f..2eaf0b97e99 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_7.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: public-domain OR other-permissive +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1998-2011 Solar Designer +ignorable_holders: + - Solar Designer +--- + No copyright is claimed, and the software is hereby placed in the public domain. In case this attempt to disclaim copyright and place the software in the public domain is deemed null and void, then the software is @@ -15,4 +25,4 @@ ensure compatibility, or for any other purpose. I would appreciate it if you give credit where it is due and keep your modifications in the public domain as well, but I don't require that in order to let you place this code and any modifications you make under a license -of your choice. +of your choice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_7.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_7.yml deleted file mode 100644 index 471cd18e301..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1998-2011 Solar Designer -ignorable_holders: - - Solar Designer diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_8.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_8.RULE index 7a641b9627b..b42c57f8c66 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_8.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_8.RULE @@ -1,3 +1,13 @@ +--- +license_expression: public-domain OR other-permissive +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2000-2011 Solar Designer +ignorable_holders: + - Solar Designer +--- + No copyright is claimed, and the software is hereby placed in the public domain. In case this attempt to disclaim copyright and place the software in the public domain is deemed null and void, then the software is diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_8.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_8.yml deleted file mode 100644 index 9fb08f0db9f..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_8.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2000-2011 Solar Designer -ignorable_holders: - - Solar Designer diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_9.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_9.RULE index 0b82f473ca0..b29ad778a47 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_9.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_9.RULE @@ -1,3 +1,14 @@ +--- +license_expression: public-domain OR other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2001 Alexander Peslyak +ignorable_holders: + - Alexander Peslyak +--- + No copyright is * claimed, and the software is hereby placed in the public domain. * In case this attempt to disclaim copyright and place the software in the diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_9.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_9.yml deleted file mode 100644 index 5715956c732..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2001 Alexander Peslyak -ignorable_holders: - - Alexander Peslyak diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_1.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_1.RULE index c5ca96d3045..139428cf49b 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain OR other-permissive +is_license_reference: yes +--- + No copyright is claimed, and the software is hereby placed in the public domain. @@ -11,4 +16,4 @@ modification, are permitted. There's ABSOLUTELY NO WARRANTY, express or implied. -(This is a heavily cut-down "BSD license".) +(This is a heavily cut-down "BSD license".) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_1.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_1.yml deleted file mode 100644 index e6845cba94a..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_reference: yes diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_2.RULE b/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_2.RULE index c26ea484928..5e22fa2b6da 100644 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_2.RULE +++ b/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_2.RULE @@ -1 +1,10 @@ +--- +license_expression: public-domain OR other-permissive +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - https://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 +--- + https://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_2.yml b/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_2.yml deleted file mode 100644 index c6bb26eef68..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_other-permissive_md5_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: public-domain OR other-permissive -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - https://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 diff --git a/src/licensedcode/data/rules/public-domain_or_wtfpl-2.0_1.RULE b/src/licensedcode/data/rules/public-domain_or_wtfpl-2.0_1.RULE index 97344a74953..7dd32ecd41a 100644 --- a/src/licensedcode/data/rules/public-domain_or_wtfpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/public-domain_or_wtfpl-2.0_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: public-domain OR wtfpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://sam.zoy.org/wtfpl/COPYING +--- + This code is placed in the Public Domain, or released under the wtfpl (http://sam.zoy.org/wtfpl/COPYING) wherever PD is problematic. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_or_wtfpl-2.0_1.yml b/src/licensedcode/data/rules/public-domain_or_wtfpl-2.0_1.yml deleted file mode 100644 index 3fc2d864d31..00000000000 --- a/src/licensedcode/data/rules/public-domain_or_wtfpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: public-domain OR wtfpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://sam.zoy.org/wtfpl/COPYING diff --git a/src/licensedcode/data/rules/public-domain_this2.RULE b/src/licensedcode/data/rules/public-domain_this2.RULE index 237314589ed..353d72e9df2 100644 --- a/src/licensedcode/data/rules/public-domain_this2.RULE +++ b/src/licensedcode/data/rules/public-domain_this2.RULE @@ -1 +1,7 @@ -License This is public domain. +--- +license_expression: public-domain +is_license_text: yes +relevance: 99 +--- + +License This is public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_this2.yml b/src/licensedcode/data/rules/public-domain_this2.yml deleted file mode 100644 index f6a75606ae9..00000000000 --- a/src/licensedcode/data/rules/public-domain_this2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/public-domain_zlib.RULE b/src/licensedcode/data/rules/public-domain_zlib.RULE index 891430e83bc..e81c8cfbe9b 100644 --- a/src/licensedcode/data/rules/public-domain_zlib.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib.RULE @@ -1 +1,7 @@ -put in the public domain by \ No newline at end of file +--- +license_expression: public-domain +is_license_notice: yes +relevance: 100 +--- + +put in the public domain by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib.yml b/src/licensedcode/data/rules/public-domain_zlib.yml deleted file mode 100644 index bba87100644..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_zlib10.RULE b/src/licensedcode/data/rules/public-domain_zlib10.RULE index 7458644defc..380d56877bb 100644 --- a/src/licensedcode/data/rules/public-domain_zlib10.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib10.RULE @@ -1 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyrighted 1991 Mark Adler +ignorable_holders: + - Mark Adler +--- + Not copyrighted 1991 Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib10.yml b/src/licensedcode/data/rules/public-domain_zlib10.yml deleted file mode 100644 index 6c13262a924..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyrighted 1991 Mark Adler -ignorable_holders: - - Mark Adler diff --git a/src/licensedcode/data/rules/public-domain_zlib11.RULE b/src/licensedcode/data/rules/public-domain_zlib11.RULE index 3378dff7e5e..c397fe387c4 100644 --- a/src/licensedcode/data/rules/public-domain_zlib11.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib11.RULE @@ -1 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyrighted 1993 Mark Adler +ignorable_holders: + - Mark Adler +--- + Not copyrighted 1993 Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib11.yml b/src/licensedcode/data/rules/public-domain_zlib11.yml deleted file mode 100644 index cb27171f4bd..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib11.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyrighted 1993 Mark Adler -ignorable_holders: - - Mark Adler diff --git a/src/licensedcode/data/rules/public-domain_zlib12.RULE b/src/licensedcode/data/rules/public-domain_zlib12.RULE index 362ac646446..fe7b78276a1 100644 --- a/src/licensedcode/data/rules/public-domain_zlib12.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib12.RULE @@ -1 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyrighted 1992 Mark Adler +ignorable_holders: + - Mark Adler +--- + Not copyrighted 1992 Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib12.yml b/src/licensedcode/data/rules/public-domain_zlib12.yml deleted file mode 100644 index d5c1d667aab..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib12.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyrighted 1992 Mark Adler -ignorable_holders: - - Mark Adler diff --git a/src/licensedcode/data/rules/public-domain_zlib2.RULE b/src/licensedcode/data/rules/public-domain_zlib2.RULE index 0c52ebffb15..66d121b775d 100644 --- a/src/licensedcode/data/rules/public-domain_zlib2.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib2.RULE @@ -1 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Not copyrighted 1993 by Mark Adler +ignorable_holders: + - Not by Mark Adler +--- + Not copyrighted 1993 by Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib2.yml b/src/licensedcode/data/rules/public-domain_zlib2.yml deleted file mode 100644 index 0a7ae55ade2..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Not copyrighted 1993 by Mark Adler -ignorable_holders: - - Not by Mark Adler diff --git a/src/licensedcode/data/rules/public-domain_zlib3.RULE b/src/licensedcode/data/rules/public-domain_zlib3.RULE index d2b8101a9d4..31c1780df4e 100644 --- a/src/licensedcode/data/rules/public-domain_zlib3.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib3.RULE @@ -1 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Not copyrighted 1992 by Mark Adler +ignorable_holders: + - Not by Mark Adler +--- + Not copyrighted 1992 by Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib3.yml b/src/licensedcode/data/rules/public-domain_zlib3.yml deleted file mode 100644 index 8c0cd759030..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Not copyrighted 1992 by Mark Adler -ignorable_holders: - - Not by Mark Adler diff --git a/src/licensedcode/data/rules/public-domain_zlib4.RULE b/src/licensedcode/data/rules/public-domain_zlib4.RULE index 469f866a98f..0cea3779647 100644 --- a/src/licensedcode/data/rules/public-domain_zlib4.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + You can do whatever you like with this source file, though I would prefer that if you modify it and redistribute it that you include comments to that effect with your name and the date. Thank you. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib4.yml b/src/licensedcode/data/rules/public-domain_zlib4.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_zlib5.RULE b/src/licensedcode/data/rules/public-domain_zlib5.RULE index 69736b48e77..cdeca3d4902 100644 --- a/src/licensedcode/data/rules/public-domain_zlib5.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib5.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + put in the public domain by Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib5.yml b/src/licensedcode/data/rules/public-domain_zlib5.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_zlib6.RULE b/src/licensedcode/data/rules/public-domain_zlib6.RULE index 8ab5361bc88..0ae85eab167 100644 --- a/src/licensedcode/data/rules/public-domain_zlib6.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib6.RULE @@ -1 +1,7 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 99 +--- + put in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib6.yml b/src/licensedcode/data/rules/public-domain_zlib6.yml deleted file mode 100644 index f6a75606ae9..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/public-domain_zlib7.RULE b/src/licensedcode/data/rules/public-domain_zlib7.RULE index 3ac063d73e9..ca3d860b55d 100644 --- a/src/licensedcode/data/rules/public-domain_zlib7.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +--- + put in the public domain. The original copyright note by Mark Adler was: "You can do whatever you like with this source file, diff --git a/src/licensedcode/data/rules/public-domain_zlib7.yml b/src/licensedcode/data/rules/public-domain_zlib7.yml deleted file mode 100644 index cf3d23b482a..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/public-domain_zlib8.RULE b/src/licensedcode/data/rules/public-domain_zlib8.RULE index c79d532e636..28faa3a4025 100644 --- a/src/licensedcode/data/rules/public-domain_zlib8.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib8.RULE @@ -1,2 +1,8 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +--- + written * and put in the public domain by Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib8.yml b/src/licensedcode/data/rules/public-domain_zlib8.yml deleted file mode 100644 index 95831078f5e..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/public-domain_zlib9.RULE b/src/licensedcode/data/rules/public-domain_zlib9.RULE index f4731cd9944..063add5acaa 100644 --- a/src/licensedcode/data/rules/public-domain_zlib9.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib9.RULE @@ -1 +1,11 @@ +--- +license_expression: public-domain +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - copyrighted 1990 Mark Adler +ignorable_holders: + - Mark Adler +--- + Not copyrighted 1990 Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib9.yml b/src/licensedcode/data/rules/public-domain_zlib9.yml deleted file mode 100644 index f080b9d7b07..00000000000 --- a/src/licensedcode/data/rules/public-domain_zlib9.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: public-domain -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - copyrighted 1990 Mark Adler -ignorable_holders: - - Mark Adler diff --git a/src/licensedcode/data/rules/purdue-bsd_and_other-permissive_1.RULE b/src/licensedcode/data/rules/purdue-bsd_and_other-permissive_1.RULE index e8c6f10b76e..ab9c49d8686 100644 --- a/src/licensedcode/data/rules/purdue-bsd_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/purdue-bsd_and_other-permissive_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: purdue-bsd AND other-permissive +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +notes: Seen in lsof +--- + License Lsof has no license. Its use and distribution are subject to these terms and conditions, found in each lsof source file. (The copyright diff --git a/src/licensedcode/data/rules/purdue-bsd_and_other-permissive_1.yml b/src/licensedcode/data/rules/purdue-bsd_and_other-permissive_1.yml deleted file mode 100644 index 79bccb06a5a..00000000000 --- a/src/licensedcode/data/rules/purdue-bsd_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: purdue-bsd AND other-permissive -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -notes: Seen in lsof diff --git a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_1.RULE b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_1.RULE index b1bb698eb16..72e941abb0f 100644 --- a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_1.RULE +++ b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: purdue-bsd AND sendmail +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - LICENSE +--- + * This software is not subject to any license of the American Telephone * and Telegraph Company or the Regents of the University of California. * diff --git a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_1.yml b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_1.yml deleted file mode 100644 index 13a02b01d88..00000000000 --- a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: purdue-bsd AND sendmail -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_2.RULE b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_2.RULE index a1e56c5eb95..767a452db20 100644 --- a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_2.RULE +++ b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: purdue-bsd AND sendmail +is_license_notice: yes +relevance: 100 +minimum_coverage: 60 +referenced_filenames: + - LICENSE +--- + * This software is not subject to any license of the American Telephone * and Telegraph Company or the Regents of the University of California. * diff --git a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_2.yml b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_2.yml deleted file mode 100644 index 13a02b01d88..00000000000 --- a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: purdue-bsd AND sendmail -is_license_notice: yes -relevance: 100 -minimum_coverage: 60 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_3.RULE b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_3.RULE index 5e3ffd5eea9..cecf3bff9c3 100644 --- a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_3.RULE +++ b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: purdue-bsd AND sendmail +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +--- + * This software is not subject to any license of the American Telephone * and Telegraph Company or the Regents of the University of California. * diff --git a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_3.yml b/src/licensedcode/data/rules/purdue-bsd_and_sendmail_3.yml deleted file mode 100644 index 70703fd501c..00000000000 --- a/src/licensedcode/data/rules/purdue-bsd_and_sendmail_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: purdue-bsd AND sendmail -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/pycrypto.RULE b/src/licensedcode/data/rules/pycrypto.RULE index 450896a851b..66f512b5616 100644 --- a/src/licensedcode/data/rules/pycrypto.RULE +++ b/src/licensedcode/data/rules/pycrypto.RULE @@ -1,3 +1,8 @@ +--- +license_expression: pycrypto +is_license_notice: yes +--- + Distribute and use freely; there are no restrictions on further dissemination and usage except those imposed by the laws of your country of residence. This software is provided "as is" without @@ -7,4 +12,4 @@ or implied. Use at your own risk or not at all. Incorporating the code into commercial products is permitted; you do not have to make source available or contribute your changes back -(though that would be nice). +(though that would be nice). \ No newline at end of file diff --git a/src/licensedcode/data/rules/pycrypto.yml b/src/licensedcode/data/rules/pycrypto.yml deleted file mode 100644 index 8006d645d62..00000000000 --- a/src/licensedcode/data/rules/pycrypto.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: pycrypto -is_license_notice: yes diff --git a/src/licensedcode/data/rules/pycrypto_1.RULE b/src/licensedcode/data/rules/pycrypto_1.RULE index b8082aea128..72cc13ca27f 100644 --- a/src/licensedcode/data/rules/pycrypto_1.RULE +++ b/src/licensedcode/data/rules/pycrypto_1.RULE @@ -1 +1,8 @@ +--- +license_expression: pycrypto +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Python Cryptography Toolkit license (essentially public domain) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pycrypto_1.yml b/src/licensedcode/data/rules/pycrypto_1.yml deleted file mode 100644 index 0f9483bf288..00000000000 --- a/src/licensedcode/data/rules/pycrypto_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: pycrypto -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/pycrypto_2.RULE b/src/licensedcode/data/rules/pycrypto_2.RULE index 12db2b9dce3..cbc7ca505c8 100644 --- a/src/licensedcode/data/rules/pycrypto_2.RULE +++ b/src/licensedcode/data/rules/pycrypto_2.RULE @@ -1 +1,8 @@ +--- +license_expression: pycrypto +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Python Cryptography Toolkit license \ No newline at end of file diff --git a/src/licensedcode/data/rules/pycrypto_2.yml b/src/licensedcode/data/rules/pycrypto_2.yml deleted file mode 100644 index 0f9483bf288..00000000000 --- a/src/licensedcode/data/rules/pycrypto_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: pycrypto -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/pygres-2.2.RULE b/src/licensedcode/data/rules/pygres-2.2.RULE index fb5e01b1f11..44e0028576e 100644 --- a/src/licensedcode/data/rules/pygres-2.2.RULE +++ b/src/licensedcode/data/rules/pygres-2.2.RULE @@ -1 +1,9 @@ +--- +license_expression: pygres-2.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 +--- + http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pygres-2.2.yml b/src/licensedcode/data/rules/pygres-2.2.yml deleted file mode 100644 index e4d0c951e04..00000000000 --- a/src/licensedcode/data/rules/pygres-2.2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: pygres-2.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 diff --git a/src/licensedcode/data/rules/pygres-2.2_1.RULE b/src/licensedcode/data/rules/pygres-2.2_1.RULE index adf3295d019..50192291a4a 100644 --- a/src/licensedcode/data/rules/pygres-2.2_1.RULE +++ b/src/licensedcode/data/rules/pygres-2.2_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: pygres-2.2 +is_license_text: yes +notes: from http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 +ignorable_copyrights: + - Copyright (c) 1995, Pascal Andre + - copyright 1997, 1998, 1999 by D'Arcy J.M. Cain +ignorable_holders: + - D'Arcy J.M. Cain + - Pascal Andre +ignorable_emails: + - andre@chimay.via.ecp.fr + - andre@via.ecp.fr + - darcy@druid.net +--- + /* 2 * $Id$ 3 * PyGres, version 2.2 A Python interface for PostgreSQL database. Written by @@ -26,4 +42,4 @@ 26 * (darcy@druid.net) subject to the same terms and conditions as above. 27 * 28 */ -29 \ No newline at end of file +29 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pygres-2.2_1.yml b/src/licensedcode/data/rules/pygres-2.2_1.yml deleted file mode 100644 index a63c3b5f85f..00000000000 --- a/src/licensedcode/data/rules/pygres-2.2_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: pygres-2.2 -is_license_text: yes -notes: from http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 -ignorable_copyrights: - - Copyright (c) 1995, Pascal Andre - - copyright 1997, 1998, 1999 by D'Arcy J.M. Cain -ignorable_holders: - - D'Arcy J.M. Cain - - Pascal Andre -ignorable_emails: - - andre@chimay.via.ecp.fr - - andre@via.ecp.fr - - darcy@druid.net diff --git a/src/licensedcode/data/rules/pygres-2.2_2.RULE b/src/licensedcode/data/rules/pygres-2.2_2.RULE index 02cf37a94b6..8862df08d31 100644 --- a/src/licensedcode/data/rules/pygres-2.2_2.RULE +++ b/src/licensedcode/data/rules/pygres-2.2_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: pygres-2.2 +is_license_text: yes +notes: from http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and @@ -13,5 +19,4 @@ THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE AUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, -ENHANCEMENTS, OR MODIFICATIONS. - +ENHANCEMENTS, OR MODIFICATIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/pygres-2.2_2.yml b/src/licensedcode/data/rules/pygres-2.2_2.yml deleted file mode 100644 index 480e43a93fb..00000000000 --- a/src/licensedcode/data/rules/pygres-2.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: pygres-2.2 -is_license_text: yes -notes: from http://shell.vex.net/viewvc.cgi/pygresql/trunk/module/pgmodule.c?view=markup&pathrev=431 diff --git a/src/licensedcode/data/rules/pypi_academic_free_license.RULE b/src/licensedcode/data/rules/pypi_academic_free_license.RULE index 842665889e6..9bc9027d839 100644 --- a/src/licensedcode/data/rules/pypi_academic_free_license.RULE +++ b/src/licensedcode/data/rules/pypi_academic_free_license.RULE @@ -1 +1,9 @@ -License :: OSI Approved :: Academic Free License (AFL) +--- +license_expression: afl-3.0 +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: OSI Approved :: Academic Free License (AFL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_academic_free_license.yml b/src/licensedcode/data/rules/pypi_academic_free_license.yml deleted file mode 100644 index 70b22063d56..00000000000 --- a/src/licensedcode/data/rules/pypi_academic_free_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afl-3.0 -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_aladdin_free_public_license.RULE b/src/licensedcode/data/rules/pypi_aladdin_free_public_license.RULE index b286ca06c4f..777c2ab4858 100644 --- a/src/licensedcode/data/rules/pypi_aladdin_free_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_aladdin_free_public_license.RULE @@ -1 +1,9 @@ -License :: Aladdin Free Public License (AFPL) +--- +license_expression: afpl-9.0 +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: Aladdin Free Public License (AFPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_aladdin_free_public_license.yml b/src/licensedcode/data/rules/pypi_aladdin_free_public_license.yml deleted file mode 100644 index ee5bb29046b..00000000000 --- a/src/licensedcode/data/rules/pypi_aladdin_free_public_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: afpl-9.0 -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_apache_no-version.RULE b/src/licensedcode/data/rules/pypi_apache_no-version.RULE index 510d8fdcef9..a4ec2f9cb2b 100644 --- a/src/licensedcode/data/rules/pypi_apache_no-version.RULE +++ b/src/licensedcode/data/rules/pypi_apache_no-version.RULE @@ -1 +1,9 @@ -License :: OSI Approved :: Apache Software License +--- +license_expression: apache-2.0 +is_license_tag: yes +relevance: 95 +notes: the actual version of the license is not provided but the most common one is the Apache + 2.0 +--- + +License :: OSI Approved :: Apache Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_apache_no-version.yml b/src/licensedcode/data/rules/pypi_apache_no-version.yml deleted file mode 100644 index 216882693cf..00000000000 --- a/src/licensedcode/data/rules/pypi_apache_no-version.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_tag: yes -relevance: 95 -notes: the actual version of the license is not provided but the most common one is the Apache - 2.0 diff --git a/src/licensedcode/data/rules/pypi_apple_public_source_license.RULE b/src/licensedcode/data/rules/pypi_apple_public_source_license.RULE index 6c23a86edc4..f04bb342281 100644 --- a/src/licensedcode/data/rules/pypi_apple_public_source_license.RULE +++ b/src/licensedcode/data/rules/pypi_apple_public_source_license.RULE @@ -1 +1,9 @@ -License :: OSI Approved :: Apple Public Source License +--- +license_expression: apsl-2.0 +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: OSI Approved :: Apple Public Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_apple_public_source_license.yml b/src/licensedcode/data/rules/pypi_apple_public_source_license.yml deleted file mode 100644 index ab37d9bbec9..00000000000 --- a/src/licensedcode/data/rules/pypi_apple_public_source_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apsl-2.0 -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_artistic_license.RULE b/src/licensedcode/data/rules/pypi_artistic_license.RULE index de43e51e1f6..c1a2b7ccad4 100644 --- a/src/licensedcode/data/rules/pypi_artistic_license.RULE +++ b/src/licensedcode/data/rules/pypi_artistic_license.RULE @@ -1 +1,9 @@ -License :: OSI Approved :: Artistic License +--- +license_expression: artistic-2.0 +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: OSI Approved :: Artistic License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_artistic_license.yml b/src/licensedcode/data/rules/pypi_artistic_license.yml deleted file mode 100644 index a709845bcec..00000000000 --- a/src/licensedcode/data/rules/pypi_artistic_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: artistic-2.0 -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_attribution_assurance_license.RULE b/src/licensedcode/data/rules/pypi_attribution_assurance_license.RULE index 69296ccd6b2..25c788d0f26 100644 --- a/src/licensedcode/data/rules/pypi_attribution_assurance_license.RULE +++ b/src/licensedcode/data/rules/pypi_attribution_assurance_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Attribution Assurance License +--- +license_expression: attribution +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Attribution Assurance License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_attribution_assurance_license.yml b/src/licensedcode/data/rules/pypi_attribution_assurance_license.yml deleted file mode 100644 index f7d21e2669f..00000000000 --- a/src/licensedcode/data/rules/pypi_attribution_assurance_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: attribution -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_boost.RULE b/src/licensedcode/data/rules/pypi_boost.RULE index 5f12f7ef28d..c122c0709b2 100644 --- a/src/licensedcode/data/rules/pypi_boost.RULE +++ b/src/licensedcode/data/rules/pypi_boost.RULE @@ -1 +1,7 @@ +--- +license_expression: boost-1.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_boost.yml b/src/licensedcode/data/rules/pypi_boost.yml deleted file mode 100644 index 6bf0f6570cd..00000000000 --- a/src/licensedcode/data/rules/pypi_boost.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: boost-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_bsd_license.RULE b/src/licensedcode/data/rules/pypi_bsd_license.RULE index 02189853cce..9859c6de80e 100644 --- a/src/licensedcode/data/rules/pypi_bsd_license.RULE +++ b/src/licensedcode/data/rules/pypi_bsd_license.RULE @@ -1 +1,8 @@ -License :: OSI Approved :: BSD License +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +notes: we picked the bsd-new out of all possible bsd licenses +--- + +License :: OSI Approved :: BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_bsd_license.yml b/src/licensedcode/data/rules/pypi_bsd_license.yml deleted file mode 100644 index 4ba43de0f4c..00000000000 --- a/src/licensedcode/data/rules/pypi_bsd_license.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 -notes: we picked the bsd-new out of all possible bsd licenses diff --git a/src/licensedcode/data/rules/pypi_bsd_license2.RULE b/src/licensedcode/data/rules/pypi_bsd_license2.RULE index 9bdd6e09ebd..733f0a865bf 100644 --- a/src/licensedcode/data/rules/pypi_bsd_license2.RULE +++ b/src/licensedcode/data/rules/pypi_bsd_license2.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 99 +notes: we picked the bsd-new out of all possible bsd licenses +--- + License :: OSI-Approved Open Source :: BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_bsd_license2.yml b/src/licensedcode/data/rules/pypi_bsd_license2.yml deleted file mode 100644 index 4ba43de0f4c..00000000000 --- a/src/licensedcode/data/rules/pypi_bsd_license2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 99 -notes: we picked the bsd-new out of all possible bsd licenses diff --git a/src/licensedcode/data/rules/pypi_cc0_1_0_universal.RULE b/src/licensedcode/data/rules/pypi_cc0_1_0_universal.RULE index 157ef84390f..fcb31fea3ca 100644 --- a/src/licensedcode/data/rules/pypi_cc0_1_0_universal.RULE +++ b/src/licensedcode/data/rules/pypi_cc0_1_0_universal.RULE @@ -1 +1,7 @@ -License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication +--- +license_expression: cc0-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_cc0_1_0_universal.yml b/src/licensedcode/data/rules/pypi_cc0_1_0_universal.yml deleted file mode 100644 index 5613dd42089..00000000000 --- a/src/licensedcode/data/rules/pypi_cc0_1_0_universal.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cc0-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_cddl-1.0.RULE b/src/licensedcode/data/rules/pypi_cddl-1.0.RULE index 499b42cd4c1..2093328de3c 100644 --- a/src/licensedcode/data/rules/pypi_cddl-1.0.RULE +++ b/src/licensedcode/data/rules/pypi_cddl-1.0.RULE @@ -1 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI Approved :: Common Development and Distribution License 1.0 (CDDL-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_cddl-1.0.yml b/src/licensedcode/data/rules/pypi_cddl-1.0.yml deleted file mode 100644 index 56b4d02e6a5..00000000000 --- a/src/licensedcode/data/rules/pypi_cddl-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cddl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_cea_cnrs_inria_logiciel_libre_license_version_2_1.RULE b/src/licensedcode/data/rules/pypi_cea_cnrs_inria_logiciel_libre_license_version_2_1.RULE index 1717a4818cd..0b463e8c80b 100644 --- a/src/licensedcode/data/rules/pypi_cea_cnrs_inria_logiciel_libre_license_version_2_1.RULE +++ b/src/licensedcode/data/rules/pypi_cea_cnrs_inria_logiciel_libre_license_version_2_1.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1) +--- +license_expression: cecill-2.1 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_cea_cnrs_inria_logiciel_libre_license_version_2_1.yml b/src/licensedcode/data/rules/pypi_cea_cnrs_inria_logiciel_libre_license_version_2_1.yml deleted file mode 100644 index 72e919e1320..00000000000 --- a/src/licensedcode/data/rules/pypi_cea_cnrs_inria_logiciel_libre_license_version_2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-2.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_cecill-b.RULE b/src/licensedcode/data/rules/pypi_cecill-b.RULE index fad5ecb8fa4..3c4c260f24f 100644 --- a/src/licensedcode/data/rules/pypi_cecill-b.RULE +++ b/src/licensedcode/data/rules/pypi_cecill-b.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-b +is_license_tag: yes +relevance: 100 +--- + License :: CeCILL-B Free Software License Agreement (CECILL-B) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_cecill-b.yml b/src/licensedcode/data/rules/pypi_cecill-b.yml deleted file mode 100644 index d56ef619313..00000000000 --- a/src/licensedcode/data/rules/pypi_cecill-b.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-b -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_cecill-c.RULE b/src/licensedcode/data/rules/pypi_cecill-c.RULE index ad877ffe759..f95b94e52a0 100644 --- a/src/licensedcode/data/rules/pypi_cecill-c.RULE +++ b/src/licensedcode/data/rules/pypi_cecill-c.RULE @@ -1 +1,7 @@ +--- +license_expression: cecill-c +is_license_tag: yes +relevance: 100 +--- + License :: CeCILL-C Free Software License Agreement (CECILL-C) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_cecill-c.yml b/src/licensedcode/data/rules/pypi_cecill-c.yml deleted file mode 100644 index 0f2c9a04cac..00000000000 --- a/src/licensedcode/data/rules/pypi_cecill-c.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cecill-c -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_common_public_license.RULE b/src/licensedcode/data/rules/pypi_common_public_license.RULE index e4b60223ec5..97ea26b9b61 100644 --- a/src/licensedcode/data/rules/pypi_common_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_common_public_license.RULE @@ -1 +1,9 @@ -License :: OSI Approved :: Common Public License +--- +license_expression: cpl-1.0 +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: OSI Approved :: Common Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_common_public_license.yml b/src/licensedcode/data/rules/pypi_common_public_license.yml deleted file mode 100644 index 055bdf7c103..00000000000 --- a/src/licensedcode/data/rules/pypi_common_public_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cpl-1.0 -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_dfsg_approved.RULE b/src/licensedcode/data/rules/pypi_dfsg_approved.RULE index 515165fb756..a03095944ca 100644 --- a/src/licensedcode/data/rules/pypi_dfsg_approved.RULE +++ b/src/licensedcode/data/rules/pypi_dfsg_approved.RULE @@ -1 +1,7 @@ -License :: DFSG approved +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 100 +--- + +License :: DFSG approved \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_dfsg_approved.yml b/src/licensedcode/data/rules/pypi_dfsg_approved.yml deleted file mode 100644 index 5be79ba5f34..00000000000 --- a/src/licensedcode/data/rules/pypi_dfsg_approved.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_eiffel_forum_license.RULE b/src/licensedcode/data/rules/pypi_eiffel_forum_license.RULE index 0425674921a..8fbcd54f22f 100644 --- a/src/licensedcode/data/rules/pypi_eiffel_forum_license.RULE +++ b/src/licensedcode/data/rules/pypi_eiffel_forum_license.RULE @@ -1 +1,7 @@ +--- +license_expression: efl-1.0 +is_license_tag: yes +relevance: 100 +--- + License :: Eiffel Forum License (EFL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_eiffel_forum_license.yml b/src/licensedcode/data/rules/pypi_eiffel_forum_license.yml deleted file mode 100644 index 3018d064f55..00000000000 --- a/src/licensedcode/data/rules/pypi_eiffel_forum_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: efl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_eiffel_forum_license2.RULE b/src/licensedcode/data/rules/pypi_eiffel_forum_license2.RULE index 660d6cbd88b..1bb4e2044dd 100644 --- a/src/licensedcode/data/rules/pypi_eiffel_forum_license2.RULE +++ b/src/licensedcode/data/rules/pypi_eiffel_forum_license2.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Eiffel Forum License +--- +license_expression: efl-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Eiffel Forum License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_eiffel_forum_license2.yml b/src/licensedcode/data/rules/pypi_eiffel_forum_license2.yml deleted file mode 100644 index 3018d064f55..00000000000 --- a/src/licensedcode/data/rules/pypi_eiffel_forum_license2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: efl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_epl-1.0.RULE b/src/licensedcode/data/rules/pypi_epl-1.0.RULE index 8bc49cc169c..0afec9189d9 100644 --- a/src/licensedcode/data/rules/pypi_epl-1.0.RULE +++ b/src/licensedcode/data/rules/pypi_epl-1.0.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-1.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_epl-1.0.yml b/src/licensedcode/data/rules/pypi_epl-1.0.yml deleted file mode 100644 index a40ea753e04..00000000000 --- a/src/licensedcode/data/rules/pypi_epl-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_epl-2.0.RULE b/src/licensedcode/data/rules/pypi_epl-2.0.RULE index ec36e35c31a..e79ddaf0d8c 100644 --- a/src/licensedcode/data/rules/pypi_epl-2.0.RULE +++ b/src/licensedcode/data/rules/pypi_epl-2.0.RULE @@ -1 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_epl-2.0.yml b/src/licensedcode/data/rules/pypi_epl-2.0.yml deleted file mode 100644 index 7e2dde1759d..00000000000 --- a/src/licensedcode/data/rules/pypi_epl-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: epl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_0.RULE b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_0.RULE index 39b644a8e72..3c04611bbb1 100644 --- a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_0.RULE +++ b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_0.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0) +--- +license_expression: eupl-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: European Union Public Licence 1.0 (EUPL 1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_0.yml b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_0.yml deleted file mode 100644 index 3328964a4b5..00000000000 --- a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_1.RULE b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_1.RULE index ca091be3b9b..bd85b5495bb 100644 --- a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_1.RULE +++ b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_1.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1) +--- +license_expression: eupl-1.1 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: European Union Public Licence 1.1 (EUPL 1.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_1.yml b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_1.yml deleted file mode 100644 index bf2770e0ff5..00000000000 --- a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_2.RULE b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_2.RULE index d71feb56a5d..8b88b471d1d 100644 --- a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_2.RULE +++ b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: eupl-1.2 +is_license_tag: yes +relevance: 100 +--- + License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_2.yml b/src/licensedcode/data/rules/pypi_european_union_public_licence_1_2.yml deleted file mode 100644 index aa8bb01592d..00000000000 --- a/src/licensedcode/data/rules/pypi_european_union_public_licence_1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: eupl-1.2 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_free_for_educational_use.RULE b/src/licensedcode/data/rules/pypi_free_for_educational_use.RULE index 21ef2b3a695..11c03ce406e 100644 --- a/src/licensedcode/data/rules/pypi_free_for_educational_use.RULE +++ b/src/licensedcode/data/rules/pypi_free_for_educational_use.RULE @@ -1 +1,7 @@ -License :: Free For Educational Use +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + +License :: Free For Educational Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_free_for_educational_use.yml b/src/licensedcode/data/rules/pypi_free_for_educational_use.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/pypi_free_for_educational_use.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_free_for_home_use.RULE b/src/licensedcode/data/rules/pypi_free_for_home_use.RULE index c164b6f461d..81737803154 100644 --- a/src/licensedcode/data/rules/pypi_free_for_home_use.RULE +++ b/src/licensedcode/data/rules/pypi_free_for_home_use.RULE @@ -1 +1,7 @@ -License :: Free For Home Use +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + +License :: Free For Home Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_free_for_home_use.yml b/src/licensedcode/data/rules/pypi_free_for_home_use.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/pypi_free_for_home_use.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_free_for_non_commercial_use.RULE b/src/licensedcode/data/rules/pypi_free_for_non_commercial_use.RULE index 869b4622cc7..55e16f97407 100644 --- a/src/licensedcode/data/rules/pypi_free_for_non_commercial_use.RULE +++ b/src/licensedcode/data/rules/pypi_free_for_non_commercial_use.RULE @@ -1 +1,7 @@ -License :: Free for non-commercial use +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + +License :: Free for non-commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_free_for_non_commercial_use.yml b/src/licensedcode/data/rules/pypi_free_for_non_commercial_use.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/pypi_free_for_non_commercial_use.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_free_to_use_but_restricted.RULE b/src/licensedcode/data/rules/pypi_free_to_use_but_restricted.RULE index a2481e5351d..ff00169e2ac 100644 --- a/src/licensedcode/data/rules/pypi_free_to_use_but_restricted.RULE +++ b/src/licensedcode/data/rules/pypi_free_to_use_but_restricted.RULE @@ -1 +1,7 @@ -License :: Free To Use But Restricted +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + +License :: Free To Use But Restricted \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_free_to_use_but_restricted.yml b/src/licensedcode/data/rules/pypi_free_to_use_but_restricted.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/pypi_free_to_use_but_restricted.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_freely_distributable.RULE b/src/licensedcode/data/rules/pypi_freely_distributable.RULE index ab9649010c5..d9a4bbd6956 100644 --- a/src/licensedcode/data/rules/pypi_freely_distributable.RULE +++ b/src/licensedcode/data/rules/pypi_freely_distributable.RULE @@ -1 +1,7 @@ -License :: Freely Distributable +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 100 +--- + +License :: Freely Distributable \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_freely_distributable.yml b/src/licensedcode/data/rules/pypi_freely_distributable.yml deleted file mode 100644 index 5be79ba5f34..00000000000 --- a/src/licensedcode/data/rules/pypi_freely_distributable.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_freeware.RULE b/src/licensedcode/data/rules/pypi_freeware.RULE index 156016f237f..a3fa37bb428 100644 --- a/src/licensedcode/data/rules/pypi_freeware.RULE +++ b/src/licensedcode/data/rules/pypi_freeware.RULE @@ -1 +1,7 @@ -License :: Freeware +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 100 +--- + +License :: Freeware \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_freeware.yml b/src/licensedcode/data/rules/pypi_freeware.yml deleted file mode 100644 index 4c1c892242f..00000000000 --- a/src/licensedcode/data/rules/pypi_freeware.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.RULE b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.RULE index 1ab027cd19d..c93ff160968 100644 --- a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU Affero General Public License v3 +--- +license_expression: agpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU Affero General Public License v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.yml b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.yml deleted file mode 100644 index cd076255f67..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.RULE index 8abff322353..6dd324e7007 100644 --- a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) +--- +license_expression: agpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.yml b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.yml deleted file mode 100644 index 4b19d92b9c7..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_free_documentation_license.RULE b/src/licensedcode/data/rules/pypi_gnu_free_documentation_license.RULE index 6956bd59259..8b675d055d1 100644 --- a/src/licensedcode/data/rules/pypi_gnu_free_documentation_license.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_free_documentation_license.RULE @@ -1 +1,8 @@ -License :: OSI Approved :: GNU Free Documentation License (FDL) +--- +license_expression: gfdl-1.1-plus +is_license_tag: yes +relevance: 100 +notes: we picked the earliest version because the tag does not have a license version +--- + +License :: OSI Approved :: GNU Free Documentation License (FDL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_free_documentation_license.yml b/src/licensedcode/data/rules/pypi_gnu_free_documentation_license.yml deleted file mode 100644 index 9ba62cb216f..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_free_documentation_license.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_tag: yes -relevance: 100 -notes: we picked the earliest version because the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license.RULE index 2908f43fd74..9113704916e 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU General Public License (GPL) +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license.yml b/src/licensedcode/data/rules/pypi_gnu_general_public_license.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license2.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license2.RULE index 5e4d4c092c2..bef6894333e 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license2.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0-plus +is_license_tag: yes +relevance: 100 +--- + License :: OSI-Approved Open Source :: GNU General Public License (GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license2.yml b/src/licensedcode/data/rules/pypi_gnu_general_public_license2.yml deleted file mode 100644 index 63549048b94..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.RULE index 24f1be78e72..f404ee5a4ec 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU General Public License v2 (GPLv2) +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU General Public License v2 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.yml b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.RULE index 7ac2a21876a..cd79427bced 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI-Approved Open Source :: GNU General Public License version 2.0 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.yml b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.yml deleted file mode 100644 index 2010b215b4c..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.RULE index e6cca8f1038..d34afbb73bc 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+) +--- +license_expression: gpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.yml b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.yml deleted file mode 100644 index d42f7d6e274..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.RULE index f333f1600d5..5dcc1867943 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU General Public License v3 (GPLv3) +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU General Public License v3 (GPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.yml b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.RULE index 9e342a2e825..4205bfdf977 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI-Approved Open Source :: GNU General Public License version 3.0 (GPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.yml b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.yml deleted file mode 100644 index 6ea9bff231a..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.RULE index 4a24d1b1261..04afdf67a5f 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) +--- +license_expression: gpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.yml b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.yml deleted file mode 100644 index 7f5bf142e20..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2.RULE b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2.RULE index 4aadfbc65b7..c939acf4d21 100644 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2) +--- +license_expression: lgpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2.yml b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2.yml deleted file mode 100644 index 1058535b4b2..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.RULE index aee072037e6..19da788b900 100644 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+) +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.yml b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3.RULE b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3.RULE index 8d3bb92255f..be4dc0126b0 100644 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3) +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3.yml b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3_or_later.RULE index 0243b63becd..c819992fcbf 100644 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3_or_later.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+) +--- +license_expression: lgpl-3.0-plus +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3_or_later.yml b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3_or_later.yml deleted file mode 100644 index c566ee05942..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v3_or_later.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license.RULE b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license.RULE index 3fc3b77f7e2..2b5b309bd31 100644 --- a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license.yml b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license2.RULE b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license2.RULE index 9dd64f643fa..c8e15691ec3 100644 --- a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license2.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license2.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license2.yml b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license2.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license3.RULE b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license3.RULE index 937047b9d8e..b93e1eb4b93 100644 --- a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license3.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license3.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License :: OSI-Approved Open Source :: GNU Library or Lesser General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license3.yml b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license3.yml deleted file mode 100644 index 00706bdc2a4..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license_v3_1.RULE b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license_v3_1.RULE index e5311d8cebd..dee69924bb4 100644 --- a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license_v3_1.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license_v3_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI-Approved Open Source :: GNU Library or "Lesser" General Public License version 3.0 (LGPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license_v3_1.yml b/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license_v3_1.yml deleted file mode 100644 index 075b2cd3543..00000000000 --- a/src/licensedcode/data/rules/pypi_gnu_library_or_lesser_general_public_license_v3_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gust_font_license.RULE b/src/licensedcode/data/rules/pypi_gust_font_license.RULE index e66c9a0649d..2dd3bc4bfe8 100644 --- a/src/licensedcode/data/rules/pypi_gust_font_license.RULE +++ b/src/licensedcode/data/rules/pypi_gust_font_license.RULE @@ -1 +1,7 @@ +--- +license_expression: gust-font-1.0 +is_license_tag: yes +relevance: 100 +--- + License :: GUST Font License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gust_font_license.yml b/src/licensedcode/data/rules/pypi_gust_font_license.yml deleted file mode 100644 index 2579c19241c..00000000000 --- a/src/licensedcode/data/rules/pypi_gust_font_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gust-font-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_gust_font_license2.RULE b/src/licensedcode/data/rules/pypi_gust_font_license2.RULE index a234db5dc7a..8c065154ac6 100644 --- a/src/licensedcode/data/rules/pypi_gust_font_license2.RULE +++ b/src/licensedcode/data/rules/pypi_gust_font_license2.RULE @@ -1 +1,7 @@ +--- +license_expression: gust-font-2006-09-30 +is_license_tag: yes +relevance: 100 +--- + License :: GUST Font License 2006-09-30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gust_font_license2.yml b/src/licensedcode/data/rules/pypi_gust_font_license2.yml deleted file mode 100644 index ab00bd005dc..00000000000 --- a/src/licensedcode/data/rules/pypi_gust_font_license2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gust-font-2006-09-30 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_ibm_public_license.RULE b/src/licensedcode/data/rules/pypi_ibm_public_license.RULE index 740c50d7acd..8e6dd59bda2 100644 --- a/src/licensedcode/data/rules/pypi_ibm_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_ibm_public_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: IBM Public License +--- +license_expression: ibmpl-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: IBM Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_ibm_public_license.yml b/src/licensedcode/data/rules/pypi_ibm_public_license.yml deleted file mode 100644 index 3f4dba688fc..00000000000 --- a/src/licensedcode/data/rules/pypi_ibm_public_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_intel_open_source_license.RULE b/src/licensedcode/data/rules/pypi_intel_open_source_license.RULE index bb84af78043..9fd0a0d28a3 100644 --- a/src/licensedcode/data/rules/pypi_intel_open_source_license.RULE +++ b/src/licensedcode/data/rules/pypi_intel_open_source_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Intel Open Source License +--- +license_expression: intel-bsd-export-control +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Intel Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_intel_open_source_license.yml b/src/licensedcode/data/rules/pypi_intel_open_source_license.yml deleted file mode 100644 index 90024e79524..00000000000 --- a/src/licensedcode/data/rules/pypi_intel_open_source_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: intel-bsd-export-control -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_isc_license.RULE b/src/licensedcode/data/rules/pypi_isc_license.RULE index 23030c2f5c8..ca2b9efd0fc 100644 --- a/src/licensedcode/data/rules/pypi_isc_license.RULE +++ b/src/licensedcode/data/rules/pypi_isc_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: ISC License (ISCL) +--- +license_expression: isc +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: ISC License (ISCL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_isc_license.yml b/src/licensedcode/data/rules/pypi_isc_license.yml deleted file mode 100644 index a1246b64e26..00000000000 --- a/src/licensedcode/data/rules/pypi_isc_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: isc -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_jabber_open_source_license.RULE b/src/licensedcode/data/rules/pypi_jabber_open_source_license.RULE index 5ff3d8774b3..184d4cf0182 100644 --- a/src/licensedcode/data/rules/pypi_jabber_open_source_license.RULE +++ b/src/licensedcode/data/rules/pypi_jabber_open_source_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Jabber Open Source License +--- +license_expression: josl-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Jabber Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_jabber_open_source_license.yml b/src/licensedcode/data/rules/pypi_jabber_open_source_license.yml deleted file mode 100644 index 51f654a3f75..00000000000 --- a/src/licensedcode/data/rules/pypi_jabber_open_source_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: josl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_mir-os_license.RULE b/src/licensedcode/data/rules/pypi_mir-os_license.RULE index 74f8196a565..150062a109a 100644 --- a/src/licensedcode/data/rules/pypi_mir-os_license.RULE +++ b/src/licensedcode/data/rules/pypi_mir-os_license.RULE @@ -1 +1,7 @@ +--- +license_expression: mir-os +is_license_tag: yes +relevance: 100 +--- + License :: OSI Approved :: MirOS License (MirOS) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mir-os_license.yml b/src/licensedcode/data/rules/pypi_mir-os_license.yml deleted file mode 100644 index b1fb424c2ec..00000000000 --- a/src/licensedcode/data/rules/pypi_mir-os_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mir-os -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_mit_license.RULE b/src/licensedcode/data/rules/pypi_mit_license.RULE index b628871e65b..1c9ec4ee8f6 100644 --- a/src/licensedcode/data/rules/pypi_mit_license.RULE +++ b/src/licensedcode/data/rules/pypi_mit_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: MIT License +--- +license_expression: mit +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mit_license.yml b/src/licensedcode/data/rules/pypi_mit_license.yml deleted file mode 100644 index 685a0bfa1f8..00000000000 --- a/src/licensedcode/data/rules/pypi_mit_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_mitre_collaborative_virtual_workspace_license.RULE b/src/licensedcode/data/rules/pypi_mitre_collaborative_virtual_workspace_license.RULE index f3ee7b04893..67be9dd9169 100644 --- a/src/licensedcode/data/rules/pypi_mitre_collaborative_virtual_workspace_license.RULE +++ b/src/licensedcode/data/rules/pypi_mitre_collaborative_virtual_workspace_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: MITRE Collaborative Virtual Workspace License (CVW) +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: MITRE Collaborative Virtual Workspace License (CVW) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mitre_collaborative_virtual_workspace_license.yml b/src/licensedcode/data/rules/pypi_mitre_collaborative_virtual_workspace_license.yml deleted file mode 100644 index 5be79ba5f34..00000000000 --- a/src/licensedcode/data/rules/pypi_mitre_collaborative_virtual_workspace_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_motosoto_license.RULE b/src/licensedcode/data/rules/pypi_motosoto_license.RULE index 35be7d0dff5..e9ec031f2db 100644 --- a/src/licensedcode/data/rules/pypi_motosoto_license.RULE +++ b/src/licensedcode/data/rules/pypi_motosoto_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Motosoto License +--- +license_expression: motosoto-0.9.1 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Motosoto License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_motosoto_license.yml b/src/licensedcode/data/rules/pypi_motosoto_license.yml deleted file mode 100644 index e2c99552e13..00000000000 --- a/src/licensedcode/data/rules/pypi_motosoto_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: motosoto-0.9.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_0.RULE b/src/licensedcode/data/rules/pypi_mozilla_public_license_1_0.RULE index 399ee9e472f..e083a892fba 100644 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_0.RULE +++ b/src/licensedcode/data/rules/pypi_mozilla_public_license_1_0.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Mozilla Public License 1.0 (MPL) +--- +license_expression: mpl-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Mozilla Public License 1.0 (MPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_0.yml b/src/licensedcode/data/rules/pypi_mozilla_public_license_1_0.yml deleted file mode 100644 index c788b4379f1..00000000000 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.RULE b/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.RULE index 199d80d4b1a..a488272f5cc 100644 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.RULE +++ b/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1) +--- +license_expression: mpl-1.1 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.yml b/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.yml deleted file mode 100644 index 1cd8666e70f..00000000000 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.RULE b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.RULE index 2004bc99e83..e7e58a4ae4e 100644 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.RULE +++ b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) +--- +license_expression: mpl-2.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.yml b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.yml deleted file mode 100644 index 0358e9247bd..00000000000 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.RULE b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.RULE index ba2effcb5ce..97f978a955d 100644 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.RULE +++ b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI-Approved Open Source :: Mozilla Public License 2.0 (MPL 2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.yml b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.yml deleted file mode 100644 index 0358e9247bd..00000000000 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mpl-2.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_nethack_general_public_license.RULE b/src/licensedcode/data/rules/pypi_nethack_general_public_license.RULE index a20194355dc..8d04afc02b2 100644 --- a/src/licensedcode/data/rules/pypi_nethack_general_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_nethack_general_public_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Nethack General Public License +--- +license_expression: ngpl +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Nethack General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_nethack_general_public_license.yml b/src/licensedcode/data/rules/pypi_nethack_general_public_license.yml deleted file mode 100644 index e77971b05be..00000000000 --- a/src/licensedcode/data/rules/pypi_nethack_general_public_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ngpl -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_netscape_public_license.RULE b/src/licensedcode/data/rules/pypi_netscape_public_license.RULE index 7e6f63d5bb1..209afa94798 100644 --- a/src/licensedcode/data/rules/pypi_netscape_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_netscape_public_license.RULE @@ -1 +1,9 @@ -License :: Netscape Public License (NPL) +--- +license_expression: npl-1.1 +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: Netscape Public License (NPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_netscape_public_license.yml b/src/licensedcode/data/rules/pypi_netscape_public_license.yml deleted file mode 100644 index 884cca31b2c..00000000000 --- a/src/licensedcode/data/rules/pypi_netscape_public_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: npl-1.1 -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_nokia_open_source_license.RULE b/src/licensedcode/data/rules/pypi_nokia_open_source_license.RULE index 825d618dae1..8fb6eadef03 100644 --- a/src/licensedcode/data/rules/pypi_nokia_open_source_license.RULE +++ b/src/licensedcode/data/rules/pypi_nokia_open_source_license.RULE @@ -1 +1,9 @@ -License :: OSI Approved :: Nokia Open Source License +--- +license_expression: nokos-1.0a +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: OSI Approved :: Nokia Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_nokia_open_source_license.yml b/src/licensedcode/data/rules/pypi_nokia_open_source_license.yml deleted file mode 100644 index 0c05c98d6a6..00000000000 --- a/src/licensedcode/data/rules/pypi_nokia_open_source_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_nokia_open_source_license2.RULE b/src/licensedcode/data/rules/pypi_nokia_open_source_license2.RULE index 0a45cd19c3e..bb83b8fc2f3 100644 --- a/src/licensedcode/data/rules/pypi_nokia_open_source_license2.RULE +++ b/src/licensedcode/data/rules/pypi_nokia_open_source_license2.RULE @@ -1 +1,9 @@ +--- +license_expression: nokos-1.0a +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + License :: Nokia Open Source License (NOKOS) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_nokia_open_source_license2.yml b/src/licensedcode/data/rules/pypi_nokia_open_source_license2.yml deleted file mode 100644 index 0c05c98d6a6..00000000000 --- a/src/licensedcode/data/rules/pypi_nokia_open_source_license2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: nokos-1.0a -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_open_group_test_suite_license.RULE b/src/licensedcode/data/rules/pypi_open_group_test_suite_license.RULE index d095e33f3cc..723bb76a46a 100644 --- a/src/licensedcode/data/rules/pypi_open_group_test_suite_license.RULE +++ b/src/licensedcode/data/rules/pypi_open_group_test_suite_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Open Group Test Suite License +--- +license_expression: opengroup +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Open Group Test Suite License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_open_group_test_suite_license.yml b/src/licensedcode/data/rules/pypi_open_group_test_suite_license.yml deleted file mode 100644 index 32689d6c187..00000000000 --- a/src/licensedcode/data/rules/pypi_open_group_test_suite_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: opengroup -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_osi_approved.RULE b/src/licensedcode/data/rules/pypi_osi_approved.RULE index 1245d0e71df..40f307897e7 100644 --- a/src/licensedcode/data/rules/pypi_osi_approved.RULE +++ b/src/licensedcode/data/rules/pypi_osi_approved.RULE @@ -1 +1,7 @@ -License :: OSI Approved +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_osi_approved.yml b/src/licensedcode/data/rules/pypi_osi_approved.yml deleted file mode 100644 index 5be79ba5f34..00000000000 --- a/src/licensedcode/data/rules/pypi_osi_approved.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_osi_approved2.RULE b/src/licensedcode/data/rules/pypi_osi_approved2.RULE index 4ce0520c2b8..ec349a6a0c7 100644 --- a/src/licensedcode/data/rules/pypi_osi_approved2.RULE +++ b/src/licensedcode/data/rules/pypi_osi_approved2.RULE @@ -1 +1,7 @@ +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 99 +--- + License :: OSI-Approved Open Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_osi_approved2.yml b/src/licensedcode/data/rules/pypi_osi_approved2.yml deleted file mode 100644 index 534f30336d2..00000000000 --- a/src/licensedcode/data/rules/pypi_osi_approved2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/pypi_other_proprietary_license.RULE b/src/licensedcode/data/rules/pypi_other_proprietary_license.RULE index a704e7d1b90..ce8b59bbf2c 100644 --- a/src/licensedcode/data/rules/pypi_other_proprietary_license.RULE +++ b/src/licensedcode/data/rules/pypi_other_proprietary_license.RULE @@ -1 +1,7 @@ -License :: Other/Proprietary License +--- +license_expression: proprietary-license +is_license_tag: yes +relevance: 99 +--- + +License :: Other/Proprietary License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_other_proprietary_license.yml b/src/licensedcode/data/rules/pypi_other_proprietary_license.yml deleted file mode 100644 index 5ec5e95a2c5..00000000000 --- a/src/licensedcode/data/rules/pypi_other_proprietary_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/pypi_postgresql.RULE b/src/licensedcode/data/rules/pypi_postgresql.RULE index bd6e18974a2..393b55ef8d6 100644 --- a/src/licensedcode/data/rules/pypi_postgresql.RULE +++ b/src/licensedcode/data/rules/pypi_postgresql.RULE @@ -1 +1,7 @@ +--- +license_expression: postgresql +is_license_tag: yes +relevance: 99 +--- + License :: OSI Approved :: PostgreSQL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_postgresql.yml b/src/licensedcode/data/rules/pypi_postgresql.yml deleted file mode 100644 index fb60c6322f3..00000000000 --- a/src/licensedcode/data/rules/pypi_postgresql.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: postgresql -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/pypi_public_domain.RULE b/src/licensedcode/data/rules/pypi_public_domain.RULE index 44f9aa0adf9..90f7442f6a8 100644 --- a/src/licensedcode/data/rules/pypi_public_domain.RULE +++ b/src/licensedcode/data/rules/pypi_public_domain.RULE @@ -1 +1,7 @@ -License :: Public Domain +--- +license_expression: public-domain +is_license_tag: yes +relevance: 99 +--- + +License :: Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_public_domain.yml b/src/licensedcode/data/rules/pypi_public_domain.yml deleted file mode 100644 index 51cf1c94d14..00000000000 --- a/src/licensedcode/data/rules/pypi_public_domain.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: public-domain -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/pypi_python_license.RULE b/src/licensedcode/data/rules/pypi_python_license.RULE index 4a6d4183081..003f609fa9b 100644 --- a/src/licensedcode/data/rules/pypi_python_license.RULE +++ b/src/licensedcode/data/rules/pypi_python_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Python License (CNRI Python License) +--- +license_expression: cnri-python-1.6.1 +is_license_tag: yes +relevance: 99 +--- + +License :: OSI Approved :: Python License (CNRI Python License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_python_license.yml b/src/licensedcode/data/rules/pypi_python_license.yml deleted file mode 100644 index 69f5cb9c3f4..00000000000 --- a/src/licensedcode/data/rules/pypi_python_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/pypi_python_software_foundation_license.RULE b/src/licensedcode/data/rules/pypi_python_software_foundation_license.RULE index e2d261a4ebf..58704049809 100644 --- a/src/licensedcode/data/rules/pypi_python_software_foundation_license.RULE +++ b/src/licensedcode/data/rules/pypi_python_software_foundation_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Python Software Foundation License +--- +license_expression: python +is_license_tag: yes +relevance: 99 +--- + +License :: OSI Approved :: Python Software Foundation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_python_software_foundation_license.yml b/src/licensedcode/data/rules/pypi_python_software_foundation_license.yml deleted file mode 100644 index 57eacadf8fa..00000000000 --- a/src/licensedcode/data/rules/pypi_python_software_foundation_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/pypi_python_software_foundation_license2.RULE b/src/licensedcode/data/rules/pypi_python_software_foundation_license2.RULE index e9ca9a2a706..d645ad4df16 100644 --- a/src/licensedcode/data/rules/pypi_python_software_foundation_license2.RULE +++ b/src/licensedcode/data/rules/pypi_python_software_foundation_license2.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 99 +--- + Classifier: License :: OSI Approved :: Python Software Foundation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_python_software_foundation_license2.yml b/src/licensedcode/data/rules/pypi_python_software_foundation_license2.yml deleted file mode 100644 index 57eacadf8fa..00000000000 --- a/src/licensedcode/data/rules/pypi_python_software_foundation_license2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/pypi_qt_public_license.RULE b/src/licensedcode/data/rules/pypi_qt_public_license.RULE index ba6502190a6..ed96209778f 100644 --- a/src/licensedcode/data/rules/pypi_qt_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_qt_public_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Qt Public License (QPL) +--- +license_expression: qpl-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Qt Public License (QPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_qt_public_license.yml b/src/licensedcode/data/rules/pypi_qt_public_license.yml deleted file mode 100644 index e8eebde2957..00000000000 --- a/src/licensedcode/data/rules/pypi_qt_public_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qpl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_repoze_public_license.RULE b/src/licensedcode/data/rules/pypi_repoze_public_license.RULE index 9ecf1a5da37..c7dcdddf420 100644 --- a/src/licensedcode/data/rules/pypi_repoze_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_repoze_public_license.RULE @@ -1 +1,7 @@ -License :: Repoze Public License +--- +license_expression: repoze +is_license_tag: yes +relevance: 100 +--- + +License :: Repoze Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_repoze_public_license.yml b/src/licensedcode/data/rules/pypi_repoze_public_license.yml deleted file mode 100644 index 04ce9714efb..00000000000 --- a/src/licensedcode/data/rules/pypi_repoze_public_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: repoze -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_ricoh_source_code_public_license.RULE b/src/licensedcode/data/rules/pypi_ricoh_source_code_public_license.RULE index 1e596a7a31a..b0099a5cdc0 100644 --- a/src/licensedcode/data/rules/pypi_ricoh_source_code_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_ricoh_source_code_public_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Ricoh Source Code Public License +--- +license_expression: ricoh-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Ricoh Source Code Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_ricoh_source_code_public_license.yml b/src/licensedcode/data/rules/pypi_ricoh_source_code_public_license.yml deleted file mode 100644 index bff2d5e1313..00000000000 --- a/src/licensedcode/data/rules/pypi_ricoh_source_code_public_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ricoh-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_sil.RULE b/src/licensedcode/data/rules/pypi_sil.RULE index d6b3a99d402..5f0d0907ebe 100644 --- a/src/licensedcode/data/rules/pypi_sil.RULE +++ b/src/licensedcode/data/rules/pypi_sil.RULE @@ -1 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +relevance: 100 +--- + License :: OSI Approved :: SIL Open Font License 1.1 (OFL-1.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_sil.yml b/src/licensedcode/data/rules/pypi_sil.yml deleted file mode 100644 index c39b1887eff..00000000000 --- a/src/licensedcode/data/rules/pypi_sil.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ofl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_sleepycat_license.RULE b/src/licensedcode/data/rules/pypi_sleepycat_license.RULE index 89593937301..c08d3fc520c 100644 --- a/src/licensedcode/data/rules/pypi_sleepycat_license.RULE +++ b/src/licensedcode/data/rules/pypi_sleepycat_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Sleepycat License +--- +license_expression: sleepycat +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Sleepycat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_sleepycat_license.yml b/src/licensedcode/data/rules/pypi_sleepycat_license.yml deleted file mode 100644 index 806faa14fbe..00000000000 --- a/src/licensedcode/data/rules/pypi_sleepycat_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sleepycat -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_sun_industry_standards_source_license.RULE b/src/licensedcode/data/rules/pypi_sun_industry_standards_source_license.RULE index 0c3d8e03f6c..b6ad71cd9ef 100644 --- a/src/licensedcode/data/rules/pypi_sun_industry_standards_source_license.RULE +++ b/src/licensedcode/data/rules/pypi_sun_industry_standards_source_license.RULE @@ -1 +1,9 @@ -License :: OSI Approved :: Sun Industry Standards Source License (SISSL) +--- +license_expression: sun-sissl-1.2 +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: OSI Approved :: Sun Industry Standards Source License (SISSL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_sun_industry_standards_source_license.yml b/src/licensedcode/data/rules/pypi_sun_industry_standards_source_license.yml deleted file mode 100644 index 2acae54903a..00000000000 --- a/src/licensedcode/data/rules/pypi_sun_industry_standards_source_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/pypi_sun_public_license.RULE b/src/licensedcode/data/rules/pypi_sun_public_license.RULE index b9b295c8783..c7fa9dc8802 100644 --- a/src/licensedcode/data/rules/pypi_sun_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_sun_public_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Sun Public License +--- +license_expression: spl-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Sun Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_sun_public_license.yml b/src/licensedcode/data/rules/pypi_sun_public_license.yml deleted file mode 100644 index 3b63b781438..00000000000 --- a/src/licensedcode/data/rules/pypi_sun_public_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: spl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_university_of_illinois_ncsa_open_source_license.RULE b/src/licensedcode/data/rules/pypi_university_of_illinois_ncsa_open_source_license.RULE index 0d5985671a1..3238bf1e796 100644 --- a/src/licensedcode/data/rules/pypi_university_of_illinois_ncsa_open_source_license.RULE +++ b/src/licensedcode/data/rules/pypi_university_of_illinois_ncsa_open_source_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: University of Illinois/NCSA Open Source License +--- +license_expression: uoi-ncsa +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: University of Illinois/NCSA Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_university_of_illinois_ncsa_open_source_license.yml b/src/licensedcode/data/rules/pypi_university_of_illinois_ncsa_open_source_license.yml deleted file mode 100644 index 220893313d6..00000000000 --- a/src/licensedcode/data/rules/pypi_university_of_illinois_ncsa_open_source_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_upl.RULE b/src/licensedcode/data/rules/pypi_upl.RULE index 00f008bb798..27a158889dc 100644 --- a/src/licensedcode/data/rules/pypi_upl.RULE +++ b/src/licensedcode/data/rules/pypi_upl.RULE @@ -1 +1,7 @@ +--- +license_expression: upl-1.0 +is_license_tag: yes +relevance: 100 +--- + License :: OSI Approved :: Universal Permissive License (UPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_upl.yml b/src/licensedcode/data/rules/pypi_upl.yml deleted file mode 100644 index e301658d7fb..00000000000 --- a/src/licensedcode/data/rules/pypi_upl.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: upl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_vovida_software_license_1_0.RULE b/src/licensedcode/data/rules/pypi_vovida_software_license_1_0.RULE index c6d5798f909..8c1c5afdc67 100644 --- a/src/licensedcode/data/rules/pypi_vovida_software_license_1_0.RULE +++ b/src/licensedcode/data/rules/pypi_vovida_software_license_1_0.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: Vovida Software License 1.0 +--- +license_expression: vsl-1.0 +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: Vovida Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_vovida_software_license_1_0.yml b/src/licensedcode/data/rules/pypi_vovida_software_license_1_0.yml deleted file mode 100644 index 052d9a92ba9..00000000000 --- a/src/licensedcode/data/rules/pypi_vovida_software_license_1_0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vsl-1.0 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_w3c_license.RULE b/src/licensedcode/data/rules/pypi_w3c_license.RULE index d5b86c050c2..86aa1dc6419 100644 --- a/src/licensedcode/data/rules/pypi_w3c_license.RULE +++ b/src/licensedcode/data/rules/pypi_w3c_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: W3C License +--- +license_expression: w3c +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: W3C License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_w3c_license.yml b/src/licensedcode/data/rules/pypi_w3c_license.yml deleted file mode 100644 index b3428d4489d..00000000000 --- a/src/licensedcode/data/rules/pypi_w3c_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_x_net_license.RULE b/src/licensedcode/data/rules/pypi_x_net_license.RULE index 21c2e11cfde..869171b473d 100644 --- a/src/licensedcode/data/rules/pypi_x_net_license.RULE +++ b/src/licensedcode/data/rules/pypi_x_net_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: X.Net License +--- +license_expression: xnet +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: X.Net License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_x_net_license.yml b/src/licensedcode/data/rules/pypi_x_net_license.yml deleted file mode 100644 index e4093f71940..00000000000 --- a/src/licensedcode/data/rules/pypi_x_net_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xnet -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_zlib_libpng_license.RULE b/src/licensedcode/data/rules/pypi_zlib_libpng_license.RULE index 3c163b5f476..cfac9b785df 100644 --- a/src/licensedcode/data/rules/pypi_zlib_libpng_license.RULE +++ b/src/licensedcode/data/rules/pypi_zlib_libpng_license.RULE @@ -1 +1,7 @@ -License :: OSI Approved :: zlib/libpng License +--- +license_expression: zlib +is_license_tag: yes +relevance: 100 +--- + +License :: OSI Approved :: zlib/libpng License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_zlib_libpng_license.yml b/src/licensedcode/data/rules/pypi_zlib_libpng_license.yml deleted file mode 100644 index b3e9adbe2c3..00000000000 --- a/src/licensedcode/data/rules/pypi_zlib_libpng_license.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/pypi_zope_public_license.RULE b/src/licensedcode/data/rules/pypi_zope_public_license.RULE index b2ba6d8afad..ea4b212ab77 100644 --- a/src/licensedcode/data/rules/pypi_zope_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_zope_public_license.RULE @@ -1 +1,9 @@ -License :: OSI Approved :: Zope Public License +--- +license_expression: zpl-2.1 +is_license_tag: yes +relevance: 90 +notes: we picked the latest version and we set the relevance to less than 100 because of that. + the tag does not have a license version +--- + +License :: OSI Approved :: Zope Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_zope_public_license.yml b/src/licensedcode/data/rules/pypi_zope_public_license.yml deleted file mode 100644 index a2a41b769f6..00000000000 --- a/src/licensedcode/data/rules/pypi_zope_public_license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_tag: yes -relevance: 90 -notes: we picked the latest version and we set the relevance to less than 100 because of that. - the tag does not have a license version diff --git a/src/licensedcode/data/rules/python-cwi.RULE b/src/licensedcode/data/rules/python-cwi.RULE index 97dc7fe0e54..bce0751d6bd 100644 --- a/src/licensedcode/data/rules/python-cwi.RULE +++ b/src/licensedcode/data/rules/python-cwi.RULE @@ -1,3 +1,10 @@ +--- +license_expression: python-cwi +is_license_text: yes +ignorable_urls: + - ftp://ftp.python.org/ +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/python-cwi.yml b/src/licensedcode/data/rules/python-cwi.yml deleted file mode 100644 index e8cf8f9db1d..00000000000 --- a/src/licensedcode/data/rules/python-cwi.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python-cwi -is_license_text: yes -ignorable_urls: - - ftp://ftp.python.org/ diff --git a/src/licensedcode/data/rules/python.RULE b/src/licensedcode/data/rules/python.RULE index e9a258b6e72..4cadc1a8fb9 100644 --- a/src/licensedcode/data/rules/python.RULE +++ b/src/licensedcode/data/rules/python.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://docs.python.org/license.html +--- + http://docs.python.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/python.yml b/src/licensedcode/data/rules/python.yml deleted file mode 100644 index bd53baa6ac2..00000000000 --- a/src/licensedcode/data/rules/python.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://docs.python.org/license.html diff --git a/src/licensedcode/data/rules/python_1.RULE b/src/licensedcode/data/rules/python_1.RULE index 774b144c808..6a5ce43fde2 100644 --- a/src/licensedcode/data/rules/python_1.RULE +++ b/src/licensedcode/data/rules/python_1.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/Python-2.0 +--- + http://spdx.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_1.yml b/src/licensedcode/data/rules/python_1.yml deleted file mode 100644 index 82fde8581d0..00000000000 --- a/src/licensedcode/data/rules/python_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://spdx.org/licenses/Python-2.0 diff --git a/src/licensedcode/data/rules/python_10.RULE b/src/licensedcode/data/rules/python_10.RULE index b8d01c14e2f..558e916f1f5 100644 --- a/src/licensedcode/data/rules/python_10.RULE +++ b/src/licensedcode/data/rules/python_10.RULE @@ -1 +1,8 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 80 +notes: seen in FreeBSD. Alone this is not super discriminant +--- + PSFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_10.yml b/src/licensedcode/data/rules/python_10.yml deleted file mode 100644 index e59611e8915..00000000000 --- a/src/licensedcode/data/rules/python_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 80 -notes: seen in FreeBSD. Alone this is not super discriminant diff --git a/src/licensedcode/data/rules/python_11.RULE b/src/licensedcode/data/rules/python_11.RULE index d8391971c61..1a1bbb3a325 100644 --- a/src/licensedcode/data/rules/python_11.RULE +++ b/src/licensedcode/data/rules/python_11.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.python.org/psf/license +--- + http://www.python.org/psf/license">(PSF)license \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_11.yml b/src/licensedcode/data/rules/python_11.yml deleted file mode 100644 index 37ba5a81f83..00000000000 --- a/src/licensedcode/data/rules/python_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.python.org/psf/license diff --git a/src/licensedcode/data/rules/python_12.RULE b/src/licensedcode/data/rules/python_12.RULE index 8f928e106a2..35ab6870cc8 100644 --- a/src/licensedcode/data/rules/python_12.RULE +++ b/src/licensedcode/data/rules/python_12.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.python.org/psf/license +--- + http://www.python.org/psf/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_12.yml b/src/licensedcode/data/rules/python_12.yml deleted file mode 100644 index 37ba5a81f83..00000000000 --- a/src/licensedcode/data/rules/python_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.python.org/psf/license diff --git a/src/licensedcode/data/rules/python_13.RULE b/src/licensedcode/data/rules/python_13.RULE index 72bd94237ab..84017cb34e7 100644 --- a/src/licensedcode/data/rules/python_13.RULE +++ b/src/licensedcode/data/rules/python_13.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 100 +--- + license = "Python" \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_13.yml b/src/licensedcode/data/rules/python_13.yml deleted file mode 100644 index beaf6adaeb3..00000000000 --- a/src/licensedcode/data/rules/python_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_14.RULE b/src/licensedcode/data/rules/python_14.RULE index 7b2fb10f167..75f3661cfe8 100644 --- a/src/licensedcode/data/rules/python_14.RULE +++ b/src/licensedcode/data/rules/python_14.RULE @@ -1,3 +1,18 @@ +--- +license_expression: python +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) Python Software Foundation +ignorable_holders: + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1011 + - http://www.python.org/ + - http://www.pythonlabs.com/logos.html +--- + PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 -------------------------------------------- diff --git a/src/licensedcode/data/rules/python_14.yml b/src/licensedcode/data/rules/python_14.yml deleted file mode 100644 index eab8ecba082..00000000000 --- a/src/licensedcode/data/rules/python_14.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: python -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) Python Software Foundation -ignorable_holders: - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1011 - - http://www.python.org/ - - http://www.pythonlabs.com/logos.html diff --git a/src/licensedcode/data/rules/python_15.RULE b/src/licensedcode/data/rules/python_15.RULE index 52a944b075f..9f0bed40dd1 100644 --- a/src/licensedcode/data/rules/python_15.RULE +++ b/src/licensedcode/data/rules/python_15.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 100 +--- + License: PSF-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_15.yml b/src/licensedcode/data/rules/python_15.yml deleted file mode 100644 index beaf6adaeb3..00000000000 --- a/src/licensedcode/data/rules/python_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_16.RULE b/src/licensedcode/data/rules/python_16.RULE index de1c51ea433..524c699588b 100644 --- a/src/licensedcode/data/rules/python_16.RULE +++ b/src/licensedcode/data/rules/python_16.RULE @@ -1,2 +1,8 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +--- + are licensed under the `Python Software Foundation License version 2`__. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_16.yml b/src/licensedcode/data/rules/python_16.yml deleted file mode 100644 index 16f90e9bcbc..00000000000 --- a/src/licensedcode/data/rules/python_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_17.RULE b/src/licensedcode/data/rules/python_17.RULE index 5a130ee6606..13bbda73e89 100644 --- a/src/licensedcode/data/rules/python_17.RULE +++ b/src/licensedcode/data/rules/python_17.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 100 +--- + License: Python Software Foundation License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_17.yml b/src/licensedcode/data/rules/python_17.yml deleted file mode 100644 index beaf6adaeb3..00000000000 --- a/src/licensedcode/data/rules/python_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_18.RULE b/src/licensedcode/data/rules/python_18.RULE index 4557052ce0f..a7cb3d9d9ac 100644 --- a/src/licensedcode/data/rules/python_18.RULE +++ b/src/licensedcode/data/rules/python_18.RULE @@ -1,2 +1,10 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.python.org/2.4/license +--- + # Licensed to PSF under a Contributor Agreement. # See http://www.python.org/2.4/license for licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_18.yml b/src/licensedcode/data/rules/python_18.yml deleted file mode 100644 index e53b3b2351d..00000000000 --- a/src/licensedcode/data/rules/python_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.python.org/2.4/license diff --git a/src/licensedcode/data/rules/python_19.RULE b/src/licensedcode/data/rules/python_19.RULE index 13427709cce..98f1f1f0e42 100644 --- a/src/licensedcode/data/rules/python_19.RULE +++ b/src/licensedcode/data/rules/python_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +--- + The python-ldap package is distributed under Python-style license. Standard disclaimer: diff --git a/src/licensedcode/data/rules/python_19.yml b/src/licensedcode/data/rules/python_19.yml deleted file mode 100644 index 16f90e9bcbc..00000000000 --- a/src/licensedcode/data/rules/python_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_2.RULE b/src/licensedcode/data/rules/python_2.RULE index c821ae755fa..c61cfdbafb2 100644 --- a/src/licensedcode/data/rules/python_2.RULE +++ b/src/licensedcode/data/rules/python_2.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + Python License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_2.yml b/src/licensedcode/data/rules/python_2.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_20.RULE b/src/licensedcode/data/rules/python_20.RULE index e130fac7fed..fba2f9960ce 100644 --- a/src/licensedcode/data/rules/python_20.RULE +++ b/src/licensedcode/data/rules/python_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: python +is_license_notice: yes +ignorable_urls: + - https://docs.python.org/2/license.html +--- + derived from the Python standard library, which carries the `Python Software Foundation License `_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_20.yml b/src/licensedcode/data/rules/python_20.yml deleted file mode 100644 index d1ab168eec0..00000000000 --- a/src/licensedcode/data/rules/python_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python -is_license_notice: yes -ignorable_urls: - - https://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_2001.RULE b/src/licensedcode/data/rules/python_2001.RULE index 5ee374fe254..3e0aa3304a5 100644 --- a/src/licensedcode/data/rules/python_2001.RULE +++ b/src/licensedcode/data/rules/python_2001.RULE @@ -1,3 +1,20 @@ +--- +license_expression: python +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.python.org/psf/ + - http://www.pythonlabs.com/logos.html +--- + A. HISTORY OF THE SOFTWARE ========================== diff --git a/src/licensedcode/data/rules/python_2001.yml b/src/licensedcode/data/rules/python_2001.yml deleted file mode 100644 index 8024f6d011b..00000000000 --- a/src/licensedcode/data/rules/python_2001.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: python -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.python.org/psf/ - - http://www.pythonlabs.com/logos.html diff --git a/src/licensedcode/data/rules/python_2002.RULE b/src/licensedcode/data/rules/python_2002.RULE index 2d63cd0b77d..fb24e8c8d08 100644 --- a/src/licensedcode/data/rules/python_2002.RULE +++ b/src/licensedcode/data/rules/python_2002.RULE @@ -1,3 +1,24 @@ +--- +license_expression: python +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.python.org/psf + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ +--- + A. HISTORY OF THE SOFTWARE ========================== @@ -243,4 +264,4 @@ FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, 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. +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/python_2002.yml b/src/licensedcode/data/rules/python_2002.yml deleted file mode 100644 index 64424ac547d..00000000000 --- a/src/licensedcode/data/rules/python_2002.yml +++ /dev/null @@ -1,18 +0,0 @@ -license_expression: python -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.python.org/psf - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/python_2003.RULE b/src/licensedcode/data/rules/python_2003.RULE index b0a8903ea1d..e923be320fd 100644 --- a/src/licensedcode/data/rules/python_2003.RULE +++ b/src/licensedcode/data/rules/python_2003.RULE @@ -1,3 +1,24 @@ +--- +license_expression: python +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.python.org/psf + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ +--- + A. HISTORY OF THE SOFTWARE ========================== diff --git a/src/licensedcode/data/rules/python_2003.yml b/src/licensedcode/data/rules/python_2003.yml deleted file mode 100644 index 64424ac547d..00000000000 --- a/src/licensedcode/data/rules/python_2003.yml +++ /dev/null @@ -1,18 +0,0 @@ -license_expression: python -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.python.org/psf - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/python_2009.RULE b/src/licensedcode/data/rules/python_2009.RULE index 3ac0ae21ef7..fde1187f5b8 100644 --- a/src/licensedcode/data/rules/python_2009.RULE +++ b/src/licensedcode/data/rules/python_2009.RULE @@ -1,3 +1,24 @@ +--- +license_expression: python +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.python.org/psf + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ +--- + Python license This is the official license for the Python release: diff --git a/src/licensedcode/data/rules/python_2009.yml b/src/licensedcode/data/rules/python_2009.yml deleted file mode 100644 index 64424ac547d..00000000000 --- a/src/licensedcode/data/rules/python_2009.yml +++ /dev/null @@ -1,18 +0,0 @@ -license_expression: python -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.python.org/psf - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/python_2014.RULE b/src/licensedcode/data/rules/python_2014.RULE index 4a5566a0950..a9bd99938a4 100644 --- a/src/licensedcode/data/rules/python_2014.RULE +++ b/src/licensedcode/data/rules/python_2014.RULE @@ -1,3 +1,24 @@ +--- +license_expression: python +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.python.org/psf + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ +--- + A. HISTORY OF THE SOFTWARE ========================== @@ -239,4 +260,4 @@ FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, 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. +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/python_2014.yml b/src/licensedcode/data/rules/python_2014.yml deleted file mode 100644 index 64424ac547d..00000000000 --- a/src/licensedcode/data/rules/python_2014.yml +++ /dev/null @@ -1,18 +0,0 @@ -license_expression: python -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.python.org/psf - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/python_2018.RULE b/src/licensedcode/data/rules/python_2018.RULE index 5d8c4547608..fde7b9afcba 100644 --- a/src/licensedcode/data/rules/python_2018.RULE +++ b/src/licensedcode/data/rules/python_2018.RULE @@ -1,3 +1,23 @@ +--- +license_expression: python +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.pythonlabs.com/logos.html + - https://www.python.org/psf +--- + A. HISTORY OF THE SOFTWARE ========================== @@ -239,4 +259,4 @@ FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, 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. +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/python_2018.yml b/src/licensedcode/data/rules/python_2018.yml deleted file mode 100644 index 06ee8f20847..00000000000 --- a/src/licensedcode/data/rules/python_2018.yml +++ /dev/null @@ -1,17 +0,0 @@ -license_expression: python -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.pythonlabs.com/logos.html - - https://www.python.org/psf diff --git a/src/licensedcode/data/rules/python_2019.RULE b/src/licensedcode/data/rules/python_2019.RULE index 862eb1898e2..b9853bc54ce 100644 --- a/src/licensedcode/data/rules/python_2019.RULE +++ b/src/licensedcode/data/rules/python_2019.RULE @@ -1,3 +1,19 @@ +--- +license_expression: python +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.pythonlabs.com/logos.html +--- + B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== @@ -192,4 +208,4 @@ FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, 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. +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/python_2019.yml b/src/licensedcode/data/rules/python_2019.yml deleted file mode 100644 index 0cfd23aeac0..00000000000 --- a/src/licensedcode/data/rules/python_2019.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: python -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.pythonlabs.com/logos.html diff --git a/src/licensedcode/data/rules/python_21.RULE b/src/licensedcode/data/rules/python_21.RULE index ad121b14605..2cf1a4dc733 100644 --- a/src/licensedcode/data/rules/python_21.RULE +++ b/src/licensedcode/data/rules/python_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: python +is_license_notice: yes +ignorable_urls: + - https://docs.python.org/2/license.html +--- + Portions of the codec implementation and unit tests are derived from the Python standard library, which carries the `Python Software Foundation -License `_: +License `_: \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_21.yml b/src/licensedcode/data/rules/python_21.yml deleted file mode 100644 index d1ab168eec0..00000000000 --- a/src/licensedcode/data/rules/python_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python -is_license_notice: yes -ignorable_urls: - - https://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_22.RULE b/src/licensedcode/data/rules/python_22.RULE index 24c03702c9e..da69b821ec0 100644 --- a/src/licensedcode/data/rules/python_22.RULE +++ b/src/licensedcode/data/rules/python_22.RULE @@ -1,3 +1,12 @@ +--- +license_expression: python +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Python Software Foundation +ignorable_holders: + - Python Software Foundation +--- + A. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING JYTHON ======================================================= @@ -47,4 +56,4 @@ products or services of Licensee, or any third party. 8. By copying, installing or otherwise using Jython, Licensee agrees to be bound by the terms and conditions of this License -Agreement. +Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_22.yml b/src/licensedcode/data/rules/python_22.yml deleted file mode 100644 index d4dce6dd4c2..00000000000 --- a/src/licensedcode/data/rules/python_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Python Software Foundation -ignorable_holders: - - Python Software Foundation diff --git a/src/licensedcode/data/rules/python_23.RULE b/src/licensedcode/data/rules/python_23.RULE index e0cca95fcdb..98e330b7700 100644 --- a/src/licensedcode/data/rules/python_23.RULE +++ b/src/licensedcode/data/rules/python_23.RULE @@ -1,3 +1,8 @@ +--- +license_expression: python +is_license_notice: yes +--- + contributors have signed Python Software Foundation contributor agreements and releases are covered under the Python Software Foundation license version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_23.yml b/src/licensedcode/data/rules/python_23.yml deleted file mode 100644 index 839a1d2854a..00000000000 --- a/src/licensedcode/data/rules/python_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: python -is_license_notice: yes diff --git a/src/licensedcode/data/rules/python_24.RULE b/src/licensedcode/data/rules/python_24.RULE index 69dda02c474..4d4d6b31bf3 100644 --- a/src/licensedcode/data/rules/python_24.RULE +++ b/src/licensedcode/data/rules/python_24.RULE @@ -1,2 +1,9 @@ +--- +license_expression: python +is_license_notice: yes +referenced_filenames: + - Lib/LICENSE +--- + The standard library is covered by the Python Software Foundation license as well. See the Lib/LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_24.yml b/src/licensedcode/data/rules/python_24.yml deleted file mode 100644 index 45f041970d2..00000000000 --- a/src/licensedcode/data/rules/python_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python -is_license_notice: yes -referenced_filenames: - - Lib/LICENSE diff --git a/src/licensedcode/data/rules/python_25.RULE b/src/licensedcode/data/rules/python_25.RULE index 0b6358c7e89..fd4663de415 100644 --- a/src/licensedcode/data/rules/python_25.RULE +++ b/src/licensedcode/data/rules/python_25.RULE @@ -1 +1,9 @@ -/* See http://python-ldap.sourceforge.net for details. +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://python-ldap.sourceforge.net/ +--- + +/* See http://python-ldap.sourceforge.net for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_25.yml b/src/licensedcode/data/rules/python_25.yml deleted file mode 100644 index b51d84842f8..00000000000 --- a/src/licensedcode/data/rules/python_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://python-ldap.sourceforge.net/ diff --git a/src/licensedcode/data/rules/python_26.RULE b/src/licensedcode/data/rules/python_26.RULE index c6af1e86620..936aa3a7d96 100644 --- a/src/licensedcode/data/rules/python_26.RULE +++ b/src/licensedcode/data/rules/python_26.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 90 +--- + __license__ = 'Python style' \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_26.yml b/src/licensedcode/data/rules/python_26.yml deleted file mode 100644 index 661350e143b..00000000000 --- a/src/licensedcode/data/rules/python_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/python_27.RULE b/src/licensedcode/data/rules/python_27.RULE index 6261cae1e42..ba7d87f1565 100644 --- a/src/licensedcode/data/rules/python_27.RULE +++ b/src/licensedcode/data/rules/python_27.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://www.python-ldap.org/ +--- + See https://www.python-ldap.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_27.yml b/src/licensedcode/data/rules/python_27.yml deleted file mode 100644 index 02628cf66bf..00000000000 --- a/src/licensedcode/data/rules/python_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://www.python-ldap.org/ diff --git a/src/licensedcode/data/rules/python_28.RULE b/src/licensedcode/data/rules/python_28.RULE index 2b8fbf17ea7..065f8cf296c 100644 --- a/src/licensedcode/data/rules/python_28.RULE +++ b/src/licensedcode/data/rules/python_28.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 99 +--- + Licensed to PSF under a Contributor Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_28.yml b/src/licensedcode/data/rules/python_28.yml deleted file mode 100644 index 44d6b6546eb..00000000000 --- a/src/licensedcode/data/rules/python_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/python_29.RULE b/src/licensedcode/data/rules/python_29.RULE index 75c52edd28d..2126281e062 100644 --- a/src/licensedcode/data/rules/python_29.RULE +++ b/src/licensedcode/data/rules/python_29.RULE @@ -1,4 +1,12 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.PSF-2 +--- + This is free software: you may copy, modify, and/or distribute this work under the terms of the Python Software Foundation License, version 2 or later as published by the Python Software Foundation. -No warranty expressed or implied. See the file LICENSE.PSF-2 for details. +No warranty expressed or implied. See the file LICENSE.PSF-2 for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_29.yml b/src/licensedcode/data/rules/python_29.yml deleted file mode 100644 index 7c89f985175..00000000000 --- a/src/licensedcode/data/rules/python_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.PSF-2 diff --git a/src/licensedcode/data/rules/python_3.RULE b/src/licensedcode/data/rules/python_3.RULE index 3b2567089ab..cd5643f3548 100644 --- a/src/licensedcode/data/rules/python_3.RULE +++ b/src/licensedcode/data/rules/python_3.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 100 +--- + license = "PSF License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_3.yml b/src/licensedcode/data/rules/python_3.yml deleted file mode 100644 index beaf6adaeb3..00000000000 --- a/src/licensedcode/data/rules/python_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_30.RULE b/src/licensedcode/data/rules/python_30.RULE index 59e6507228a..c65604e78a4 100644 --- a/src/licensedcode/data/rules/python_30.RULE +++ b/src/licensedcode/data/rules/python_30.RULE @@ -1,3 +1,11 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt + - CONTRIBUTORS.txt +--- + Licensed to the Python Software Foundation under a contributor agreement. -See LICENSE.txt and CONTRIBUTORS.txt. - \ No newline at end of file +See LICENSE.txt and CONTRIBUTORS.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_30.yml b/src/licensedcode/data/rules/python_30.yml deleted file mode 100644 index b9ab954629d..00000000000 --- a/src/licensedcode/data/rules/python_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt - - CONTRIBUTORS.txt diff --git a/src/licensedcode/data/rules/python_31.RULE b/src/licensedcode/data/rules/python_31.RULE index 3d0b2822adf..5d84b063dac 100644 --- a/src/licensedcode/data/rules/python_31.RULE +++ b/src/licensedcode/data/rules/python_31.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +--- + It is therefore distributed under the PSF license, as follows \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_31.yml b/src/licensedcode/data/rules/python_31.yml deleted file mode 100644 index 16f90e9bcbc..00000000000 --- a/src/licensedcode/data/rules/python_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_32.RULE b/src/licensedcode/data/rules/python_32.RULE index bd0f760ac26..d47185180d6 100644 --- a/src/licensedcode/data/rules/python_32.RULE +++ b/src/licensedcode/data/rules/python_32.RULE @@ -1,3 +1,9 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +--- + "This module is free software, and you may redistribute it and/or modify it under the same terms as Python itself, so long as this copyright message and disclaimer are retained in their original form." \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_32.yml b/src/licensedcode/data/rules/python_32.yml deleted file mode 100644 index 16f90e9bcbc..00000000000 --- a/src/licensedcode/data/rules/python_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_33.RULE b/src/licensedcode/data/rules/python_33.RULE index 946744629d7..5a3ab054c68 100644 --- a/src/licensedcode/data/rules/python_33.RULE +++ b/src/licensedcode/data/rules/python_33.RULE @@ -1,2 +1,8 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 99 +--- + "This module is free software, and you may redistribute it and/or modify it under the same terms as Python itself \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_33.yml b/src/licensedcode/data/rules/python_33.yml deleted file mode 100644 index 44d6b6546eb..00000000000 --- a/src/licensedcode/data/rules/python_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/python_34.RULE b/src/licensedcode/data/rules/python_34.RULE index b5d5aa527cf..448bfd11f18 100644 --- a/src/licensedcode/data/rules/python_34.RULE +++ b/src/licensedcode/data/rules/python_34.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 100 +--- + PSF License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_34.yml b/src/licensedcode/data/rules/python_34.yml deleted file mode 100644 index beaf6adaeb3..00000000000 --- a/src/licensedcode/data/rules/python_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_35.RULE b/src/licensedcode/data/rules/python_35.RULE index 5d5e786988f..efdbdb85fb5 100644 --- a/src/licensedcode/data/rules/python_35.RULE +++ b/src/licensedcode/data/rules/python_35.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 100 +--- + Python Software Foundation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_35.yml b/src/licensedcode/data/rules/python_35.yml deleted file mode 100644 index beaf6adaeb3..00000000000 --- a/src/licensedcode/data/rules/python_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_36.RULE b/src/licensedcode/data/rules/python_36.RULE index 21c08e3ac1e..24551f5f10d 100644 --- a/src/licensedcode/data/rules/python_36.RULE +++ b/src/licensedcode/data/rules/python_36.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/Python-2.0 +--- + Python-2.0: http://opensource.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_36.yml b/src/licensedcode/data/rules/python_36.yml deleted file mode 100644 index 080c2c181e7..00000000000 --- a/src/licensedcode/data/rules/python_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/Python-2.0 diff --git a/src/licensedcode/data/rules/python_37.RULE b/src/licensedcode/data/rules/python_37.RULE index 65127214aee..a6c4c1b6cc0 100644 --- a/src/licensedcode/data/rules/python_37.RULE +++ b/src/licensedcode/data/rules/python_37.RULE @@ -1,3 +1,11 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.python.org/psf/license.html +--- + License: This work is {{licensed under the PSF}}. A copy should be included with this source code, and is also available at -http://www.python.org/psf/license.html +http://www.python.org/psf/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_37.yml b/src/licensedcode/data/rules/python_37.yml deleted file mode 100644 index 0e188862d44..00000000000 --- a/src/licensedcode/data/rules/python_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.python.org/psf/license.html diff --git a/src/licensedcode/data/rules/python_38.RULE b/src/licensedcode/data/rules/python_38.RULE index 30431259756..cadd6f34949 100644 --- a/src/licensedcode/data/rules/python_38.RULE +++ b/src/licensedcode/data/rules/python_38.RULE @@ -1,3 +1,15 @@ +--- +license_expression: python +is_license_text: yes +relevance: 95 +notes: only the latest python license... not the history +ignorable_copyrights: + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, + 2013 Python Software Foundation +ignorable_holders: + - Python Software Foundation +--- + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and diff --git a/src/licensedcode/data/rules/python_38.yml b/src/licensedcode/data/rules/python_38.yml deleted file mode 100644 index f4fcb90086c..00000000000 --- a/src/licensedcode/data/rules/python_38.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 95 -notes: only the latest python license... not the history -ignorable_copyrights: - - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, - 2013 Python Software Foundation -ignorable_holders: - - Python Software Foundation diff --git a/src/licensedcode/data/rules/python_39.RULE b/src/licensedcode/data/rules/python_39.RULE index 4b70ad48e05..89230f1c5d7 100644 --- a/src/licensedcode/data/rules/python_39.RULE +++ b/src/licensedcode/data/rules/python_39.RULE @@ -1,3 +1,13 @@ +--- +license_expression: python +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation +ignorable_holders: + - Python Software Foundation +--- + license Python License, Version 2 (Python-2.0) PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 diff --git a/src/licensedcode/data/rules/python_39.yml b/src/licensedcode/data/rules/python_39.yml deleted file mode 100644 index d97fd02c3e5..00000000000 --- a/src/licensedcode/data/rules/python_39.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation -ignorable_holders: - - Python Software Foundation diff --git a/src/licensedcode/data/rules/python_4.RULE b/src/licensedcode/data/rules/python_4.RULE index 4ef162d87f4..a94a5957697 100644 --- a/src/licensedcode/data/rules/python_4.RULE +++ b/src/licensedcode/data/rules/python_4.RULE @@ -1 +1,8 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 90 +notes: seen in FreeBSD +--- + licenses":["PSFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_4.yml b/src/licensedcode/data/rules/python_4.yml deleted file mode 100644 index 805ee2d6c87..00000000000 --- a/src/licensedcode/data/rules/python_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 90 -notes: seen in FreeBSD diff --git a/src/licensedcode/data/rules/python_40.RULE b/src/licensedcode/data/rules/python_40.RULE index 42e5147653d..58f98486e92 100644 --- a/src/licensedcode/data/rules/python_40.RULE +++ b/src/licensedcode/data/rules/python_40.RULE @@ -1,3 +1,26 @@ +--- +license_expression: python +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, + 2013, 2014, 2015, 2016, 2017, 2018 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.python.org/psf + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ +--- + A. HISTORY OF THE SOFTWARE ========================== diff --git a/src/licensedcode/data/rules/python_40.yml b/src/licensedcode/data/rules/python_40.yml deleted file mode 100644 index 633ab979731..00000000000 --- a/src/licensedcode/data/rules/python_40.yml +++ /dev/null @@ -1,20 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, - 2013, 2014, 2015, 2016, 2017, 2018 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.python.org/psf - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/python_41.RULE b/src/licensedcode/data/rules/python_41.RULE index f443349019d..2ca9d8dcd97 100644 --- a/src/licensedcode/data/rules/python_41.RULE +++ b/src/licensedcode/data/rules/python_41.RULE @@ -1,3 +1,25 @@ +--- +license_expression: python +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001, 2002 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.python.org/psf + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ +--- + A. HISTORY OF THE SOFTWARE ========================== diff --git a/src/licensedcode/data/rules/python_41.yml b/src/licensedcode/data/rules/python_41.yml deleted file mode 100644 index 14d419ed99a..00000000000 --- a/src/licensedcode/data/rules/python_41.yml +++ /dev/null @@ -1,19 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2001, 2002 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.python.org/psf - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/python_42.RULE b/src/licensedcode/data/rules/python_42.RULE index aea6402d593..a29b46b1557 100644 --- a/src/licensedcode/data/rules/python_42.RULE +++ b/src/licensedcode/data/rules/python_42.RULE @@ -1,2 +1,10 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/python/cpython/blob/81574b80e92554adf75c13fa42415beb8be383cb/LICENSE +--- + CPython LICENSE. Source: https://github.com/python/cpython/blob/81574b80e92554adf75c13fa42415beb8be383cb/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_42.yml b/src/licensedcode/data/rules/python_42.yml deleted file mode 100644 index 48198f63767..00000000000 --- a/src/licensedcode/data/rules/python_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/python/cpython/blob/81574b80e92554adf75c13fa42415beb8be383cb/LICENSE diff --git a/src/licensedcode/data/rules/python_43.RULE b/src/licensedcode/data/rules/python_43.RULE index 4c8010030d4..cb6720895c7 100644 --- a/src/licensedcode/data/rules/python_43.RULE +++ b/src/licensedcode/data/rules/python_43.RULE @@ -1,3 +1,25 @@ +--- +license_expression: python +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, + 2013, 2014, 2015, 2016, 2017, 2018 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.pythonlabs.com/logos.html + - https://www.python.org/psf +--- + A. HISTORY OF THE SOFTWARE ========================== diff --git a/src/licensedcode/data/rules/python_43.yml b/src/licensedcode/data/rules/python_43.yml deleted file mode 100644 index c2d89c1eea0..00000000000 --- a/src/licensedcode/data/rules/python_43.yml +++ /dev/null @@ -1,19 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, - 2013, 2014, 2015, 2016, 2017, 2018 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.pythonlabs.com/logos.html - - https://www.python.org/psf diff --git a/src/licensedcode/data/rules/python_44.RULE b/src/licensedcode/data/rules/python_44.RULE index 59d79feaab4..56917be34cd 100644 --- a/src/licensedcode/data/rules/python_44.RULE +++ b/src/licensedcode/data/rules/python_44.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + PSF's License Agreement and PSF's notice of copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_44.yml b/src/licensedcode/data/rules/python_44.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_45.RULE b/src/licensedcode/data/rules/python_45.RULE index 9d1e90ee306..a7efa416398 100644 --- a/src/licensedcode/data/rules/python_45.RULE +++ b/src/licensedcode/data/rules/python_45.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + PSF's License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_45.yml b/src/licensedcode/data/rules/python_45.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_46.RULE b/src/licensedcode/data/rules/python_46.RULE index cd560300777..d365e617c19 100644 --- a/src/licensedcode/data/rules/python_46.RULE +++ b/src/licensedcode/data/rules/python_46.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + PSF's notice of copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_46.yml b/src/licensedcode/data/rules/python_46.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_47.RULE b/src/licensedcode/data/rules/python_47.RULE index e8ab5d1cdbe..d0424d7afd8 100644 --- a/src/licensedcode/data/rules/python_47.RULE +++ b/src/licensedcode/data/rules/python_47.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://docs.python.org/2/license.html +--- + made available under Version 2.0 of the Python Software Foundation License https://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_47.yml b/src/licensedcode/data/rules/python_47.yml deleted file mode 100644 index 38d7f0c46ce..00000000000 --- a/src/licensedcode/data/rules/python_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_48.RULE b/src/licensedcode/data/rules/python_48.RULE index 820015990fd..0b735b0c36e 100644 --- a/src/licensedcode/data/rules/python_48.RULE +++ b/src/licensedcode/data/rules/python_48.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://docs.python.org/2/license.html +--- + under Version 2.0 of the Python Software Foundation License https://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_48.yml b/src/licensedcode/data/rules/python_48.yml deleted file mode 100644 index 38d7f0c46ce..00000000000 --- a/src/licensedcode/data/rules/python_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_49.RULE b/src/licensedcode/data/rules/python_49.RULE index 61e541250e6..8f3c5b31d36 100644 --- a/src/licensedcode/data/rules/python_49.RULE +++ b/src/licensedcode/data/rules/python_49.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://docs.python.org/2/license.html +--- + Version 2.0 of the Python Software Foundation License https://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_49.yml b/src/licensedcode/data/rules/python_49.yml deleted file mode 100644 index ac3b826bc80..00000000000 --- a/src/licensedcode/data/rules/python_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_5.RULE b/src/licensedcode/data/rules/python_5.RULE index 18280d62723..cdf92053b87 100644 --- a/src/licensedcode/data/rules/python_5.RULE +++ b/src/licensedcode/data/rules/python_5.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/PythonSoftFoundation.php +--- + http://opensource.org/licenses/PythonSoftFoundation.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_5.yml b/src/licensedcode/data/rules/python_5.yml deleted file mode 100644 index 8c38c6507e9..00000000000 --- a/src/licensedcode/data/rules/python_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/PythonSoftFoundation.php diff --git a/src/licensedcode/data/rules/python_50.RULE b/src/licensedcode/data/rules/python_50.RULE index edafc7b2d17..98f3f8260a2 100644 --- a/src/licensedcode/data/rules/python_50.RULE +++ b/src/licensedcode/data/rules/python_50.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://docs.python.org/2/license.html +--- + https://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_50.yml b/src/licensedcode/data/rules/python_50.yml deleted file mode 100644 index ac3b826bc80..00000000000 --- a/src/licensedcode/data/rules/python_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_51.RULE b/src/licensedcode/data/rules/python_51.RULE index 92b85f9b397..0b086705a5b 100644 --- a/src/licensedcode/data/rules/python_51.RULE +++ b/src/licensedcode/data/rules/python_51.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + Version 2.0 of the Python Software Foundation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_51.yml b/src/licensedcode/data/rules/python_51.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_52.RULE b/src/licensedcode/data/rules/python_52.RULE index da4219fcf32..c788190e867 100644 --- a/src/licensedcode/data/rules/python_52.RULE +++ b/src/licensedcode/data/rules/python_52.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://docs.python.org/2/license.html +--- + Python Software Foundation License https://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_52.yml b/src/licensedcode/data/rules/python_52.yml deleted file mode 100644 index ac3b826bc80..00000000000 --- a/src/licensedcode/data/rules/python_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_53.RULE b/src/licensedcode/data/rules/python_53.RULE index 6a922b5fbc1..7058ee92505 100644 --- a/src/licensedcode/data/rules/python_53.RULE +++ b/src/licensedcode/data/rules/python_53.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://docs.python.org/2/license.html +--- + made available under Version 2.0 of the Python Software Foundation License http://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_53.yml b/src/licensedcode/data/rules/python_53.yml deleted file mode 100644 index 5208b526cf6..00000000000 --- a/src/licensedcode/data/rules/python_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_54.RULE b/src/licensedcode/data/rules/python_54.RULE index 39149af14b7..df3d2c832b5 100644 --- a/src/licensedcode/data/rules/python_54.RULE +++ b/src/licensedcode/data/rules/python_54.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://docs.python.org/2/license.html +--- + under Version 2.0 of the Python Software Foundation License http://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_54.yml b/src/licensedcode/data/rules/python_54.yml deleted file mode 100644 index 5208b526cf6..00000000000 --- a/src/licensedcode/data/rules/python_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_55.RULE b/src/licensedcode/data/rules/python_55.RULE index b3bd88d2322..b6184c54f84 100644 --- a/src/licensedcode/data/rules/python_55.RULE +++ b/src/licensedcode/data/rules/python_55.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://docs.python.org/2/license.html +--- + Version 2.0 of the Python Software Foundation License http://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_55.yml b/src/licensedcode/data/rules/python_55.yml deleted file mode 100644 index d2d7b02565d..00000000000 --- a/src/licensedcode/data/rules/python_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_56.RULE b/src/licensedcode/data/rules/python_56.RULE index abb16f5d54f..8df1ec5f719 100644 --- a/src/licensedcode/data/rules/python_56.RULE +++ b/src/licensedcode/data/rules/python_56.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://docs.python.org/2/license.html +--- + http://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_56.yml b/src/licensedcode/data/rules/python_56.yml deleted file mode 100644 index d2d7b02565d..00000000000 --- a/src/licensedcode/data/rules/python_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_57.RULE b/src/licensedcode/data/rules/python_57.RULE index ff0b3d3ec48..8c22f32d246 100644 --- a/src/licensedcode/data/rules/python_57.RULE +++ b/src/licensedcode/data/rules/python_57.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://docs.python.org/2/license.html +--- + Python Software Foundation License http://docs.python.org/2/license.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_57.yml b/src/licensedcode/data/rules/python_57.yml deleted file mode 100644 index d2d7b02565d..00000000000 --- a/src/licensedcode/data/rules/python_57.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://docs.python.org/2/license.html diff --git a/src/licensedcode/data/rules/python_58.RULE b/src/licensedcode/data/rules/python_58.RULE index dca72bd916f..780cd93f734 100644 --- a/src/licensedcode/data/rules/python_58.RULE +++ b/src/licensedcode/data/rules/python_58.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +--- + licensed under the terms of the PSF License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_58.yml b/src/licensedcode/data/rules/python_58.yml deleted file mode 100644 index 16f90e9bcbc..00000000000 --- a/src/licensedcode/data/rules/python_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_59.RULE b/src/licensedcode/data/rules/python_59.RULE index 4e24c289a69..910cc7d9f49 100644 --- a/src/licensedcode/data/rules/python_59.RULE +++ b/src/licensedcode/data/rules/python_59.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +notes: See https://github.com/pypa/twine/blob/35e40d95b7c1b46a6da0d80f1e7c62bd914d52d8/twine/_installed.py + See also https://bazaar.launchpad.net/~tseaver/pkginfo/trunk/revision/141 Newer versions + are MIT-licensed. Note the typo in Foudation +--- + This code was originally licensed under the Python Software Foudation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_59.yml b/src/licensedcode/data/rules/python_59.yml deleted file mode 100644 index d54a01deb59..00000000000 --- a/src/licensedcode/data/rules/python_59.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -notes: See https://github.com/pypa/twine/blob/35e40d95b7c1b46a6da0d80f1e7c62bd914d52d8/twine/_installed.py - See also https://bazaar.launchpad.net/~tseaver/pkginfo/trunk/revision/141 Newer versions - are MIT-licensed. Note the typo in Foudation diff --git a/src/licensedcode/data/rules/python_6.RULE b/src/licensedcode/data/rules/python_6.RULE index aba424c637f..f0e2ff422ed 100644 --- a/src/licensedcode/data/rules/python_6.RULE +++ b/src/licensedcode/data/rules/python_6.RULE @@ -1,3 +1,15 @@ +--- +license_expression: python +is_license_notice: yes +notes: Python 1.6.1 +ignorable_copyrights: + - Copyright (c) 1995-2001 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 +--- + 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization diff --git a/src/licensedcode/data/rules/python_6.yml b/src/licensedcode/data/rules/python_6.yml deleted file mode 100644 index 58670ef87ff..00000000000 --- a/src/licensedcode/data/rules/python_6.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: python -is_license_notice: yes -notes: Python 1.6.1 -ignorable_copyrights: - - Copyright (c) 1995-2001 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 diff --git a/src/licensedcode/data/rules/python_60.RULE b/src/licensedcode/data/rules/python_60.RULE index 7c6f5c79a6f..f3a3bcf6927 100644 --- a/src/licensedcode/data/rules/python_60.RULE +++ b/src/licensedcode/data/rules/python_60.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +notes: See https://github.com/pypa/twine/blob/35e40d95b7c1b46a6da0d80f1e7c62bd914d52d8/twine/_installed.py + See also https://bazaar.launchpad.net/~tseaver/pkginfo/trunk/revision/141 Newer versions + are MIT-licensed. Note the typo in Foudation +--- + licensed under the Python Software Foudation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_60.yml b/src/licensedcode/data/rules/python_60.yml deleted file mode 100644 index d54a01deb59..00000000000 --- a/src/licensedcode/data/rules/python_60.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -notes: See https://github.com/pypa/twine/blob/35e40d95b7c1b46a6da0d80f1e7c62bd914d52d8/twine/_installed.py - See also https://bazaar.launchpad.net/~tseaver/pkginfo/trunk/revision/141 Newer versions - are MIT-licensed. Note the typo in Foudation diff --git a/src/licensedcode/data/rules/python_61.RULE b/src/licensedcode/data/rules/python_61.RULE index 3762cd82e6a..cc231473614 100644 --- a/src/licensedcode/data/rules/python_61.RULE +++ b/src/licensedcode/data/rules/python_61.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +notes: See https://github.com/pypa/twine/blob/35e40d95b7c1b46a6da0d80f1e7c62bd914d52d8/twine/_installed.py + See also https://bazaar.launchpad.net/~tseaver/pkginfo/trunk/revision/141 Newer versions + are MIT-licensed. Note the typo in Foudation +--- + licensed under the Python Software Foundation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_61.yml b/src/licensedcode/data/rules/python_61.yml deleted file mode 100644 index d54a01deb59..00000000000 --- a/src/licensedcode/data/rules/python_61.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 -notes: See https://github.com/pypa/twine/blob/35e40d95b7c1b46a6da0d80f1e7c62bd914d52d8/twine/_installed.py - See also https://bazaar.launchpad.net/~tseaver/pkginfo/trunk/revision/141 Newer versions - are MIT-licensed. Note the typo in Foudation diff --git a/src/licensedcode/data/rules/python_62.RULE b/src/licensedcode/data/rules/python_62.RULE index 61c3097bd8d..008bd504969 100644 --- a/src/licensedcode/data/rules/python_62.RULE +++ b/src/licensedcode/data/rules/python_62.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + Python Software Foudation License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_62.yml b/src/licensedcode/data/rules/python_62.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_63.RULE b/src/licensedcode/data/rules/python_63.RULE index fb7edecc062..8230ce9420a 100644 --- a/src/licensedcode/data/rules/python_63.RULE +++ b/src/licensedcode/data/rules/python_63.RULE @@ -1 +1,8 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Python releases have also been GPL-compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_63.yml b/src/licensedcode/data/rules/python_63.yml deleted file mode 100644 index d59d3303921..00000000000 --- a/src/licensedcode/data/rules/python_63.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/python_64.RULE b/src/licensedcode/data/rules/python_64.RULE index b64cbf427dc..f7f8897070b 100644 --- a/src/licensedcode/data/rules/python_64.RULE +++ b/src/licensedcode/data/rules/python_64.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +--- + ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE PYTHON LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_64.yml b/src/licensedcode/data/rules/python_64.yml deleted file mode 100644 index 16f90e9bcbc..00000000000 --- a/src/licensedcode/data/rules/python_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_65.RULE b/src/licensedcode/data/rules/python_65.RULE index 0a6fa87028f..e545ab9058d 100644 --- a/src/licensedcode/data/rules/python_65.RULE +++ b/src/licensedcode/data/rules/python_65.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +--- + UNDER THE TERMS OF THE PYTHON LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_65.yml b/src/licensedcode/data/rules/python_65.yml deleted file mode 100644 index 16f90e9bcbc..00000000000 --- a/src/licensedcode/data/rules/python_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_66.RULE b/src/licensedcode/data/rules/python_66.RULE index 3cdd19d0672..0e28fe063e2 100644 --- a/src/licensedcode/data/rules/python_66.RULE +++ b/src/licensedcode/data/rules/python_66.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 100 +--- + THE TERMS OF THE PYTHON LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_66.yml b/src/licensedcode/data/rules/python_66.yml deleted file mode 100644 index 16f90e9bcbc..00000000000 --- a/src/licensedcode/data/rules/python_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_67.RULE b/src/licensedcode/data/rules/python_67.RULE index cc62caf6156..c0e6876daa3 100644 --- a/src/licensedcode/data/rules/python_67.RULE +++ b/src/licensedcode/data/rules/python_67.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + THE PYTHON LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_67.yml b/src/licensedcode/data/rules/python_67.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_68.RULE b/src/licensedcode/data/rules/python_68.RULE index 3f327761883..b8bdafeb45e 100644 --- a/src/licensedcode/data/rules/python_68.RULE +++ b/src/licensedcode/data/rules/python_68.RULE @@ -1,3 +1,26 @@ +--- +license_expression: python +is_license_text: yes +relevance: 100 +notes: from 2.7.13 rst format +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001-2016 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ + - https://opensource.org/ + - https://www.cnri.reston.va.us/ + - https://www.cwi.nl/ + - https://www.python.org/psf +--- + ******************* History and License ******************* diff --git a/src/licensedcode/data/rules/python_68.yml b/src/licensedcode/data/rules/python_68.yml deleted file mode 100644 index 90061aa4804..00000000000 --- a/src/licensedcode/data/rules/python_68.yml +++ /dev/null @@ -1,20 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 100 -notes: from 2.7.13 rst format -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2001-2016 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ - - https://opensource.org/ - - https://www.cnri.reston.va.us/ - - https://www.cwi.nl/ - - https://www.python.org/psf diff --git a/src/licensedcode/data/rules/python_69.RULE b/src/licensedcode/data/rules/python_69.RULE index ce16e482c46..90e06f4f0a9 100644 --- a/src/licensedcode/data/rules/python_69.RULE +++ b/src/licensedcode/data/rules/python_69.RULE @@ -1,3 +1,27 @@ +--- +license_expression: python +is_license_text: yes +relevance: 100 +notes: from 2.7.13 +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, + 2013, 2014, 2015, 2016 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.python.org/psf + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ +--- + A. HISTORY OF THE SOFTWARE ========================== diff --git a/src/licensedcode/data/rules/python_69.yml b/src/licensedcode/data/rules/python_69.yml deleted file mode 100644 index b9a10b45c66..00000000000 --- a/src/licensedcode/data/rules/python_69.yml +++ /dev/null @@ -1,21 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 100 -notes: from 2.7.13 -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, - 2013, 2014, 2015, 2016 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.python.org/psf - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/python_6_docutils.RULE b/src/licensedcode/data/rules/python_6_docutils.RULE index 2448293dea1..67930f7641c 100644 --- a/src/licensedcode/data/rules/python_6_docutils.RULE +++ b/src/licensedcode/data/rules/python_6_docutils.RULE @@ -1,3 +1,14 @@ +--- +license_expression: python +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1995-2001 Corporation for National Research Initiatives +ignorable_holders: + - Corporation for National Research Initiatives +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 +--- + CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE AGREEMENT ------------------------------------------------- @@ -66,4 +77,4 @@ services of Licensee, or any third party. installing or otherwise using Python 1.6.1, Licensee agrees to be bound by the terms and conditions of this License Agreement. - ACCEPT + ACCEPT \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_6_docutils.yml b/src/licensedcode/data/rules/python_6_docutils.yml deleted file mode 100644 index a2799007522..00000000000 --- a/src/licensedcode/data/rules/python_6_docutils.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: python -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1995-2001 Corporation for National Research Initiatives -ignorable_holders: - - Corporation for National Research Initiatives -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 diff --git a/src/licensedcode/data/rules/python_7.RULE b/src/licensedcode/data/rules/python_7.RULE index 243b10e4569..e30c1a6fda9 100644 --- a/src/licensedcode/data/rules/python_7.RULE +++ b/src/licensedcode/data/rules/python_7.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/Python-2.0 +--- + http://www.opensource.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_7.yml b/src/licensedcode/data/rules/python_7.yml deleted file mode 100644 index 7e3d1fc0359..00000000000 --- a/src/licensedcode/data/rules/python_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/Python-2.0 diff --git a/src/licensedcode/data/rules/python_70.RULE b/src/licensedcode/data/rules/python_70.RULE index 3c5a1d9b8af..5fa00bea96a 100644 --- a/src/licensedcode/data/rules/python_70.RULE +++ b/src/licensedcode/data/rules/python_70.RULE @@ -1,3 +1,26 @@ +--- +license_expression: python +is_license_text: yes +relevance: 100 +notes: from 2.7.18 +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, + 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://hdl.handle.net/1895.22/1013 + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.opensource.org/ + - http://www.pythonlabs.com/logos.html + - https://www.python.org/psf +--- + A. HISTORY OF THE SOFTWARE ========================== diff --git a/src/licensedcode/data/rules/python_70.yml b/src/licensedcode/data/rules/python_70.yml deleted file mode 100644 index 9a8024862f7..00000000000 --- a/src/licensedcode/data/rules/python_70.yml +++ /dev/null @@ -1,20 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 100 -notes: from 2.7.18 -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, - 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://hdl.handle.net/1895.22/1013 - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.opensource.org/ - - http://www.pythonlabs.com/logos.html - - https://www.python.org/psf diff --git a/src/licensedcode/data/rules/python_71.RULE b/src/licensedcode/data/rules/python_71.RULE index 1f3599865e9..8f30167fc63 100644 --- a/src/licensedcode/data/rules/python_71.RULE +++ b/src/licensedcode/data/rules/python_71.RULE @@ -1,3 +1,23 @@ +--- +license_expression: python +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands + - Copyright (c) 1995-2001 Corporation for National Research Initiatives + - Copyright (c) 2001-2015 Python Software Foundation +ignorable_holders: + - Corporation for National Research Initiatives + - Python Software Foundation + - Stichting Mathematisch Centrum Amsterdam, The Netherlands +ignorable_urls: + - http://www.cnri.reston.va.us/ + - http://www.cwi.nl/ + - http://www.python.org/psf + - http://www.pythonlabs.com/logos.html + - http://www.zope.com/ +--- + History and License History of the software diff --git a/src/licensedcode/data/rules/python_71.yml b/src/licensedcode/data/rules/python_71.yml deleted file mode 100644 index 1ad7fc9401b..00000000000 --- a/src/licensedcode/data/rules/python_71.yml +++ /dev/null @@ -1,17 +0,0 @@ -license_expression: python -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands - - Copyright (c) 1995-2001 Corporation for National Research Initiatives - - Copyright (c) 2001-2015 Python Software Foundation -ignorable_holders: - - Corporation for National Research Initiatives - - Python Software Foundation - - Stichting Mathematisch Centrum Amsterdam, The Netherlands -ignorable_urls: - - http://www.cnri.reston.va.us/ - - http://www.cwi.nl/ - - http://www.python.org/psf - - http://www.pythonlabs.com/logos.html - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/python_72.RULE b/src/licensedcode/data/rules/python_72.RULE index a38f1485672..ef42d2812f6 100644 --- a/src/licensedcode/data/rules/python_72.RULE +++ b/src/licensedcode/data/rules/python_72.RULE @@ -1,2 +1,10 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.python.org/download/releases/2.4.2/license/ +--- + Full license is here: http://www.python.org/download/releases/2.4.2/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_72.yml b/src/licensedcode/data/rules/python_72.yml deleted file mode 100644 index d0c313a64f6..00000000000 --- a/src/licensedcode/data/rules/python_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.python.org/download/releases/2.4.2/license/ diff --git a/src/licensedcode/data/rules/python_73.RULE b/src/licensedcode/data/rules/python_73.RULE index 04422bd5e0e..fe58086c658 100644 --- a/src/licensedcode/data/rules/python_73.RULE +++ b/src/licensedcode/data/rules/python_73.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.python.org/download/releases/2.4.2/license/ +--- + http://www.python.org/download/releases/2.4.2/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_73.yml b/src/licensedcode/data/rules/python_73.yml deleted file mode 100644 index d0c313a64f6..00000000000 --- a/src/licensedcode/data/rules/python_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.python.org/download/releases/2.4.2/license/ diff --git a/src/licensedcode/data/rules/python_74.RULE b/src/licensedcode/data/rules/python_74.RULE index ab5b23086a9..a4e4a5b70cd 100644 --- a/src/licensedcode/data/rules/python_74.RULE +++ b/src/licensedcode/data/rules/python_74.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_notice: yes +relevance: 99 +--- + made available under the PSF licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_74.yml b/src/licensedcode/data/rules/python_74.yml deleted file mode 100644 index 44d6b6546eb..00000000000 --- a/src/licensedcode/data/rules/python_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/python_75.RULE b/src/licensedcode/data/rules/python_75.RULE index 97c40751592..85885aa04ee 100644 --- a/src/licensedcode/data/rules/python_75.RULE +++ b/src/licensedcode/data/rules/python_75.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Python License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_75.yml b/src/licensedcode/data/rules/python_75.yml deleted file mode 100644 index f5b1680a91b..00000000000 --- a/src/licensedcode/data/rules/python_75.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/python_76.RULE b/src/licensedcode/data/rules/python_76.RULE index 9d2e6bfc15e..125b48276e4 100644 --- a/src/licensedcode/data/rules/python_76.RULE +++ b/src/licensedcode/data/rules/python_76.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Python-2.0 Python License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_76.yml b/src/licensedcode/data/rules/python_76.yml deleted file mode 100644 index f5b1680a91b..00000000000 --- a/src/licensedcode/data/rules/python_76.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/python_77.RULE b/src/licensedcode/data/rules/python_77.RULE index bff7bbff478..9aba15355f3 100644 --- a/src/licensedcode/data/rules/python_77.RULE +++ b/src/licensedcode/data/rules/python_77.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Python License 2.0 Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_77.yml b/src/licensedcode/data/rules/python_77.yml deleted file mode 100644 index f5b1680a91b..00000000000 --- a/src/licensedcode/data/rules/python_77.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/python_78.RULE b/src/licensedcode/data/rules/python_78.RULE index ca6d7cbfb77..361a8ce1b94 100644 --- a/src/licensedcode/data/rules/python_78.RULE +++ b/src/licensedcode/data/rules/python_78.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_78.yml b/src/licensedcode/data/rules/python_78.yml deleted file mode 100644 index e43a94432dc..00000000000 --- a/src/licensedcode/data/rules/python_78.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/python_79.RULE b/src/licensedcode/data/rules/python_79.RULE index ca286de7b05..0046fca8776 100644 --- a/src/licensedcode/data/rules/python_79.RULE +++ b/src/licensedcode/data/rules/python_79.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Python License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_79.yml b/src/licensedcode/data/rules/python_79.yml deleted file mode 100644 index e43a94432dc..00000000000 --- a/src/licensedcode/data/rules/python_79.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/python_8.RULE b/src/licensedcode/data/rules/python_8.RULE index 3fddbe79b8f..5c59b8c18c5 100644 --- a/src/licensedcode/data/rules/python_8.RULE +++ b/src/licensedcode/data/rules/python_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: python +is_license_notice: yes +ignorable_copyrights: + - Copyright (c) Python Software Foundation +ignorable_holders: + - Python Software Foundation +--- + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using Python software in source or binary form and its diff --git a/src/licensedcode/data/rules/python_8.yml b/src/licensedcode/data/rules/python_8.yml deleted file mode 100644 index d4dce6dd4c2..00000000000 --- a/src/licensedcode/data/rules/python_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_notice: yes -ignorable_copyrights: - - Copyright (c) Python Software Foundation -ignorable_holders: - - Python Software Foundation diff --git a/src/licensedcode/data/rules/python_80.RULE b/src/licensedcode/data/rules/python_80.RULE index 6133722d52a..896db55dfcc 100644 --- a/src/licensedcode/data/rules/python_80.RULE +++ b/src/licensedcode/data/rules/python_80.RULE @@ -1 +1,10 @@ +--- +license_expression: python +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_80.yml b/src/licensedcode/data/rules/python_80.yml deleted file mode 100644 index e43a94432dc..00000000000 --- a/src/licensedcode/data/rules/python_80.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/python_81.RULE b/src/licensedcode/data/rules/python_81.RULE index 5ab872c6f70..c939f50daa3 100644 --- a/src/licensedcode/data/rules/python_81.RULE +++ b/src/licensedcode/data/rules/python_81.RULE @@ -1,2 +1,9 @@ +--- +license_expression: python +is_license_notice: yes +ignorable_urls: + - http://www.python.org/psf/license/ +--- + License: This code is usable under the same open terms as the rest of python. See: http://www.python.org/psf/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_81.yml b/src/licensedcode/data/rules/python_81.yml deleted file mode 100644 index 9fc3fa37697..00000000000 --- a/src/licensedcode/data/rules/python_81.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python -is_license_notice: yes -ignorable_urls: - - http://www.python.org/psf/license/ diff --git a/src/licensedcode/data/rules/python_82.RULE b/src/licensedcode/data/rules/python_82.RULE index 3390edc762e..40abab83c1e 100644 --- a/src/licensedcode/data/rules/python_82.RULE +++ b/src/licensedcode/data/rules/python_82.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/Python_Software_Foundation_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_82.yml b/src/licensedcode/data/rules/python_82.yml deleted file mode 100644 index 9eeae65f48e..00000000000 --- a/src/licensedcode/data/rules/python_82.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/python_83.RULE b/src/licensedcode/data/rules/python_83.RULE index 1590d7c2a7f..1775a323416 100644 --- a/src/licensedcode/data/rules/python_83.RULE +++ b/src/licensedcode/data/rules/python_83.RULE @@ -1,3 +1,11 @@ +--- +license_expression: python +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE +--- + license": { "name": "Python Software Foundation License", "url": "http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE" \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_83.yml b/src/licensedcode/data/rules/python_83.yml deleted file mode 100644 index a9a2988310d..00000000000 --- a/src/licensedcode/data/rules/python_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://hg.python.org/cpython/raw-file/89ce323357db/LICENSE diff --git a/src/licensedcode/data/rules/python_84.RULE b/src/licensedcode/data/rules/python_84.RULE index 3c43f050c2c..23ad4223325 100644 --- a/src/licensedcode/data/rules/python_84.RULE +++ b/src/licensedcode/data/rules/python_84.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_84.yml b/src/licensedcode/data/rules/python_84.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_85.RULE b/src/licensedcode/data/rules/python_85.RULE index 38b8412cd3f..308e4436d49 100644 --- a/src/licensedcode/data/rules/python_85.RULE +++ b/src/licensedcode/data/rules/python_85.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/Python +--- + http://opensource.org/licenses/Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_85.yml b/src/licensedcode/data/rules/python_85.yml deleted file mode 100644 index fa3aae8969a..00000000000 --- a/src/licensedcode/data/rules/python_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/Python diff --git a/src/licensedcode/data/rules/python_86.RULE b/src/licensedcode/data/rules/python_86.RULE index 84d1a9ae516..d11bd7d5c87 100644 --- a/src/licensedcode/data/rules/python_86.RULE +++ b/src/licensedcode/data/rules/python_86.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/Python +--- + https://opensource.org/licenses/Python \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_86.yml b/src/licensedcode/data/rules/python_86.yml deleted file mode 100644 index 39cbf6c2316..00000000000 --- a/src/licensedcode/data/rules/python_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/Python diff --git a/src/licensedcode/data/rules/python_87.RULE b/src/licensedcode/data/rules/python_87.RULE index 58093b3c04e..062f042cbdf 100644 --- a/src/licensedcode/data/rules/python_87.RULE +++ b/src/licensedcode/data/rules/python_87.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + opensource.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_87.yml b/src/licensedcode/data/rules/python_87.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_88.RULE b/src/licensedcode/data/rules/python_88.RULE index 7c17671181a..454a789f031 100644 --- a/src/licensedcode/data/rules/python_88.RULE +++ b/src/licensedcode/data/rules/python_88.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/Python-2.0 +--- + http://opensource.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_88.yml b/src/licensedcode/data/rules/python_88.yml deleted file mode 100644 index 080c2c181e7..00000000000 --- a/src/licensedcode/data/rules/python_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/Python-2.0 diff --git a/src/licensedcode/data/rules/python_89.RULE b/src/licensedcode/data/rules/python_89.RULE index f8a50a7a84c..91e54af3f9d 100644 --- a/src/licensedcode/data/rules/python_89.RULE +++ b/src/licensedcode/data/rules/python_89.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/Python-2.0 +--- + https://opensource.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_89.yml b/src/licensedcode/data/rules/python_89.yml deleted file mode 100644 index 2bbb97db3a5..00000000000 --- a/src/licensedcode/data/rules/python_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/Python-2.0 diff --git a/src/licensedcode/data/rules/python_9.RULE b/src/licensedcode/data/rules/python_9.RULE index b4eed028ac1..49726a9ec1f 100644 --- a/src/licensedcode/data/rules/python_9.RULE +++ b/src/licensedcode/data/rules/python_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: python +is_license_notice: yes +ignorable_urls: + - http://www.pythonlabs.com/logos.html +--- + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using diff --git a/src/licensedcode/data/rules/python_9.yml b/src/licensedcode/data/rules/python_9.yml deleted file mode 100644 index b0e3127c1f5..00000000000 --- a/src/licensedcode/data/rules/python_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: python -is_license_notice: yes -ignorable_urls: - - http://www.pythonlabs.com/logos.html diff --git a/src/licensedcode/data/rules/python_90.RULE b/src/licensedcode/data/rules/python_90.RULE index 36ab030c374..b82de9d8955 100644 --- a/src/licensedcode/data/rules/python_90.RULE +++ b/src/licensedcode/data/rules/python_90.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Python-2.0 +--- + https://licenses.nuget.org/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_90.yml b/src/licensedcode/data/rules/python_90.yml deleted file mode 100644 index 6e95bd5cbd2..00000000000 --- a/src/licensedcode/data/rules/python_90.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Python-2.0 diff --git a/src/licensedcode/data/rules/python_91.RULE b/src/licensedcode/data/rules/python_91.RULE index 05f16a16366..699d2d5aa3b 100644 --- a/src/licensedcode/data/rules/python_91.RULE +++ b/src/licensedcode/data/rules/python_91.RULE @@ -1 +1,7 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_91.yml b/src/licensedcode/data/rules/python_91.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_91.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_92.RULE b/src/licensedcode/data/rules/python_92.RULE index 2fe7c9a83d0..2a981b61932 100644 --- a/src/licensedcode/data/rules/python_92.RULE +++ b/src/licensedcode/data/rules/python_92.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Python-2.0 +--- + LICENSE {{Python-2.0}} https://spdx.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_92.yml b/src/licensedcode/data/rules/python_92.yml deleted file mode 100644 index 55a91a2f4ff..00000000000 --- a/src/licensedcode/data/rules/python_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Python-2.0 diff --git a/src/licensedcode/data/rules/python_93.RULE b/src/licensedcode/data/rules/python_93.RULE index bf4ebe67297..759f434551e 100644 --- a/src/licensedcode/data/rules/python_93.RULE +++ b/src/licensedcode/data/rules/python_93.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Python-2.0 +--- + {{Python-2.0}} https://spdx.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_93.yml b/src/licensedcode/data/rules/python_93.yml deleted file mode 100644 index 55a91a2f4ff..00000000000 --- a/src/licensedcode/data/rules/python_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Python-2.0 diff --git a/src/licensedcode/data/rules/python_and_other-permissive_1.RULE b/src/licensedcode/data/rules/python_and_other-permissive_1.RULE index cb21e713f3e..2c5774f3c60 100644 --- a/src/licensedcode/data/rules/python_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/python_and_other-permissive_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: python AND other-permissive +is_license_notice: yes +relevance: 100 +--- + This module is free software, and you may redistribute it and/or modify it under the same terms as Python itself, so long as this copyright message and disclaimer are retained in their original form. diff --git a/src/licensedcode/data/rules/python_and_other-permissive_1.yml b/src/licensedcode/data/rules/python_and_other-permissive_1.yml deleted file mode 100644 index e5c087031ba..00000000000 --- a/src/licensedcode/data/rules/python_and_other-permissive_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python AND other-permissive -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_docutils.RULE b/src/licensedcode/data/rules/python_docutils.RULE index 24ce9e4345f..0f430ada916 100644 --- a/src/licensedcode/data/rules/python_docutils.RULE +++ b/src/licensedcode/data/rules/python_docutils.RULE @@ -1,4 +1,10 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +--- + released under the `Python 2.1.1 license`_ (`local copy`__). - __ licenses/python-2-1-1.txt + __ licenses/python-2-1-1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_docutils.yml b/src/licensedcode/data/rules/python_docutils.yml deleted file mode 100644 index 4708b444213..00000000000 --- a/src/licensedcode/data/rules/python_docutils.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/python_not_not-a-license_269.RULE b/src/licensedcode/data/rules/python_not_not-a-license_269.RULE index eb38f4ff5f1..5d9269e3803 100644 --- a/src/licensedcode/data/rules/python_not_not-a-license_269.RULE +++ b/src/licensedcode/data/rules/python_not_not-a-license_269.RULE @@ -1,3 +1,12 @@ +--- +license_expression: python +is_license_reference: yes +minimum_coverage: 99 +notes: this is an historical note found in Python licenses history blurb +ignorable_urls: + - http://www.opensource.org/ +--- + All Python releases are Open Source (see http://www.opensource.org for the Open Source Definition). Historically, most, but not all, Python releases have also been GPL-compatible; the table below summarizes diff --git a/src/licensedcode/data/rules/python_not_not-a-license_269.yml b/src/licensedcode/data/rules/python_not_not-a-license_269.yml deleted file mode 100644 index 737ba3fa3d1..00000000000 --- a/src/licensedcode/data/rules/python_not_not-a-license_269.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_reference: yes -minimum_coverage: 99 -notes: this is an historical note found in Python licenses history blurb -ignorable_urls: - - http://www.opensource.org/ diff --git a/src/licensedcode/data/rules/python_not_not-a-license_270.RULE b/src/licensedcode/data/rules/python_not_not-a-license_270.RULE index 69975e788f5..93b7cfd757a 100644 --- a/src/licensedcode/data/rules/python_not_not-a-license_270.RULE +++ b/src/licensedcode/data/rules/python_not_not-a-license_270.RULE @@ -1,3 +1,12 @@ +--- +license_expression: python +is_license_reference: yes +minimum_coverage: 99 +notes: this is an historical note found in Python licenses history blurb +ignorable_urls: + - https://www.opensource.org/ +--- + All Python releases are Open Source (see https://www.opensource.org for the Open Source Definition). Historically, most, but not all, Python releases have also been GPL-compatible; the table below summarizes diff --git a/src/licensedcode/data/rules/python_not_not-a-license_270.yml b/src/licensedcode/data/rules/python_not_not-a-license_270.yml deleted file mode 100644 index a6d8df7d95f..00000000000 --- a/src/licensedcode/data/rules/python_not_not-a-license_270.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: python -is_license_reference: yes -minimum_coverage: 99 -notes: this is an historical note found in Python licenses history blurb -ignorable_urls: - - https://www.opensource.org/ diff --git a/src/licensedcode/data/rules/python_or_gpl-2.0.RULE b/src/licensedcode/data/rules/python_or_gpl-2.0.RULE index 529cff9955d..ea708e97075 100644 --- a/src/licensedcode/data/rules/python_or_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/python_or_gpl-2.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: python OR gpl-2.0 +is_license_notice: yes +--- + You can choose between two licenses when using this package: 1) GNU GPLv2 - 2) PSF license for Python 2.2 + 2) PSF license for Python 2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_or_gpl-2.0.yml b/src/licensedcode/data/rules/python_or_gpl-2.0.yml deleted file mode 100644 index c70ab24e526..00000000000 --- a/src/licensedcode/data/rules/python_or_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: python OR gpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/python_url_1.RULE b/src/licensedcode/data/rules/python_url_1.RULE index d127cc5bdb6..63d104f0340 100644 --- a/src/licensedcode/data/rules/python_url_1.RULE +++ b/src/licensedcode/data/rules/python_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/python-2.0 +--- + https://spdx.org/licenses/python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_url_1.yml b/src/licensedcode/data/rules/python_url_1.yml deleted file mode 100644 index 42d05e56cd4..00000000000 --- a/src/licensedcode/data/rules/python_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/python-2.0 diff --git a/src/licensedcode/data/rules/python_url_2.RULE b/src/licensedcode/data/rules/python_url_2.RULE index 674898ea0eb..21982954804 100644 --- a/src/licensedcode/data/rules/python_url_2.RULE +++ b/src/licensedcode/data/rules/python_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/python-2.0.html +--- + https://spdx.org/licenses/python-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_url_2.yml b/src/licensedcode/data/rules/python_url_2.yml deleted file mode 100644 index d953ff6e95f..00000000000 --- a/src/licensedcode/data/rules/python_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/python-2.0.html diff --git a/src/licensedcode/data/rules/python_url_glc_225.RULE b/src/licensedcode/data/rules/python_url_glc_225.RULE index cbc840e240d..36dca824413 100644 --- a/src/licensedcode/data/rules/python_url_glc_225.RULE +++ b/src/licensedcode/data/rules/python_url_glc_225.RULE @@ -1 +1,9 @@ +--- +license_expression: python +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/python-2.0 +--- + https://www.opensource.org/licenses/python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_url_glc_225.yml b/src/licensedcode/data/rules/python_url_glc_225.yml deleted file mode 100644 index 6d61b8a1c04..00000000000 --- a/src/licensedcode/data/rules/python_url_glc_225.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: python -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/python-2.0 diff --git a/src/licensedcode/data/rules/qhull_1.RULE b/src/licensedcode/data/rules/qhull_1.RULE index 881a3a84de5..7b0134b4da9 100644 --- a/src/licensedcode/data/rules/qhull_1.RULE +++ b/src/licensedcode/data/rules/qhull_1.RULE @@ -1 +1,10 @@ +--- +license_expression: qhull +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Qhull License \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_1.yml b/src/licensedcode/data/rules/qhull_1.yml deleted file mode 100644 index 0236aab81b9..00000000000 --- a/src/licensedcode/data/rules/qhull_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qhull -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qhull_10.RULE b/src/licensedcode/data/rules/qhull_10.RULE index 0271cfba6c4..c24ea6ea5aa 100644 --- a/src/licensedcode/data/rules/qhull_10.RULE +++ b/src/licensedcode/data/rules/qhull_10.RULE @@ -1 +1,9 @@ +--- +license_expression: qhull +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Qhull +--- + {{Qhull}} https://spdx.org/licenses/Qhull \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_10.yml b/src/licensedcode/data/rules/qhull_10.yml deleted file mode 100644 index 4b60e421409..00000000000 --- a/src/licensedcode/data/rules/qhull_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qhull -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Qhull diff --git a/src/licensedcode/data/rules/qhull_11.RULE b/src/licensedcode/data/rules/qhull_11.RULE index 457a61f0d33..8f74b7208fa 100644 --- a/src/licensedcode/data/rules/qhull_11.RULE +++ b/src/licensedcode/data/rules/qhull_11.RULE @@ -1 +1,9 @@ +--- +license_expression: qhull +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Qhull +--- + LICENSE {{Qhull}} https://spdx.org/licenses/Qhull \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_11.yml b/src/licensedcode/data/rules/qhull_11.yml deleted file mode 100644 index 4b60e421409..00000000000 --- a/src/licensedcode/data/rules/qhull_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qhull -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Qhull diff --git a/src/licensedcode/data/rules/qhull_2.RULE b/src/licensedcode/data/rules/qhull_2.RULE index daf3d0ea53c..881d07acf73 100644 --- a/src/licensedcode/data/rules/qhull_2.RULE +++ b/src/licensedcode/data/rules/qhull_2.RULE @@ -1 +1,10 @@ +--- +license_expression: qhull +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Qhull License \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_2.yml b/src/licensedcode/data/rules/qhull_2.yml deleted file mode 100644 index 0236aab81b9..00000000000 --- a/src/licensedcode/data/rules/qhull_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qhull -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qhull_3.RULE b/src/licensedcode/data/rules/qhull_3.RULE index b5ee0a568b4..def9958b794 100644 --- a/src/licensedcode/data/rules/qhull_3.RULE +++ b/src/licensedcode/data/rules/qhull_3.RULE @@ -1 +1,10 @@ +--- +license_expression: qhull +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Qhull Qhull License \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_3.yml b/src/licensedcode/data/rules/qhull_3.yml deleted file mode 100644 index 0236aab81b9..00000000000 --- a/src/licensedcode/data/rules/qhull_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qhull -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qhull_4.RULE b/src/licensedcode/data/rules/qhull_4.RULE index a92d333713b..fb657562e53 100644 --- a/src/licensedcode/data/rules/qhull_4.RULE +++ b/src/licensedcode/data/rules/qhull_4.RULE @@ -1 +1,10 @@ +--- +license_expression: qhull +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Qhull License Qhull \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_4.yml b/src/licensedcode/data/rules/qhull_4.yml deleted file mode 100644 index 0236aab81b9..00000000000 --- a/src/licensedcode/data/rules/qhull_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qhull -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qhull_5.RULE b/src/licensedcode/data/rules/qhull_5.RULE index afd44e11d18..84138737f5d 100644 --- a/src/licensedcode/data/rules/qhull_5.RULE +++ b/src/licensedcode/data/rules/qhull_5.RULE @@ -1 +1,10 @@ +--- +license_expression: qhull +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Qhull \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_5.yml b/src/licensedcode/data/rules/qhull_5.yml deleted file mode 100644 index b326824cf68..00000000000 --- a/src/licensedcode/data/rules/qhull_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qhull -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qhull_6.RULE b/src/licensedcode/data/rules/qhull_6.RULE index c7586757d43..8fb8abb0677 100644 --- a/src/licensedcode/data/rules/qhull_6.RULE +++ b/src/licensedcode/data/rules/qhull_6.RULE @@ -1 +1,10 @@ +--- +license_expression: qhull +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Qhull License \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_6.yml b/src/licensedcode/data/rules/qhull_6.yml deleted file mode 100644 index b326824cf68..00000000000 --- a/src/licensedcode/data/rules/qhull_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qhull -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qhull_7.RULE b/src/licensedcode/data/rules/qhull_7.RULE index bf53d778202..e6ddaa20009 100644 --- a/src/licensedcode/data/rules/qhull_7.RULE +++ b/src/licensedcode/data/rules/qhull_7.RULE @@ -1 +1,10 @@ +--- +license_expression: qhull +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Qhull \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_7.yml b/src/licensedcode/data/rules/qhull_7.yml deleted file mode 100644 index b326824cf68..00000000000 --- a/src/licensedcode/data/rules/qhull_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qhull -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qhull_8.RULE b/src/licensedcode/data/rules/qhull_8.RULE index 6e09fe5c2f4..dcda579f4f0 100644 --- a/src/licensedcode/data/rules/qhull_8.RULE +++ b/src/licensedcode/data/rules/qhull_8.RULE @@ -1 +1,9 @@ +--- +license_expression: qhull +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Qhull +--- + https://licenses.nuget.org/Qhull \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_8.yml b/src/licensedcode/data/rules/qhull_8.yml deleted file mode 100644 index 8b89e0066e0..00000000000 --- a/src/licensedcode/data/rules/qhull_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qhull -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Qhull diff --git a/src/licensedcode/data/rules/qhull_9.RULE b/src/licensedcode/data/rules/qhull_9.RULE index 288d762f72f..4a64a6d7e3c 100644 --- a/src/licensedcode/data/rules/qhull_9.RULE +++ b/src/licensedcode/data/rules/qhull_9.RULE @@ -1 +1,7 @@ +--- +license_expression: qhull +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Qhull \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_9.yml b/src/licensedcode/data/rules/qhull_9.yml deleted file mode 100644 index b14aed97dd1..00000000000 --- a/src/licensedcode/data/rules/qhull_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qhull -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qhull_url_1.RULE b/src/licensedcode/data/rules/qhull_url_1.RULE index be64a2d3e85..94fca3b0c15 100644 --- a/src/licensedcode/data/rules/qhull_url_1.RULE +++ b/src/licensedcode/data/rules/qhull_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: qhull +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qhull +--- + https://spdx.org/licenses/qhull \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_url_1.yml b/src/licensedcode/data/rules/qhull_url_1.yml deleted file mode 100644 index b69411a7272..00000000000 --- a/src/licensedcode/data/rules/qhull_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qhull -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qhull diff --git a/src/licensedcode/data/rules/qhull_url_2.RULE b/src/licensedcode/data/rules/qhull_url_2.RULE index 45cc5d8c198..8a620a4a667 100644 --- a/src/licensedcode/data/rules/qhull_url_2.RULE +++ b/src/licensedcode/data/rules/qhull_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: qhull +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qhull.html +--- + https://spdx.org/licenses/qhull.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/qhull_url_2.yml b/src/licensedcode/data/rules/qhull_url_2.yml deleted file mode 100644 index a30e93498f7..00000000000 --- a/src/licensedcode/data/rules/qhull_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qhull -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qhull.html diff --git a/src/licensedcode/data/rules/qpl-1.0.RULE b/src/licensedcode/data/rules/qpl-1.0.RULE index 22de613eb91..671fb8ec441 100644 --- a/src/licensedcode/data/rules/qpl-1.0.RULE +++ b/src/licensedcode/data/rules/qpl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://doc.qt.nokia.com/3.3/license.html +--- + http://doc.qt.nokia.com/3.3/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0.SPDX.RULE b/src/licensedcode/data/rules/qpl-1.0.SPDX.RULE index 004d7fdb802..eaf97123c2a 100644 --- a/src/licensedcode/data/rules/qpl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/qpl-1.0.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: qpl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1999-2005 Trolltech AS, Norway +ignorable_holders: + - Trolltech AS, Norway +--- + THE Q PUBLIC LICENSE version 1.0 Copyright (C) 1999-2005 Trolltech AS, Norway. diff --git a/src/licensedcode/data/rules/qpl-1.0.SPDX.yml b/src/licensedcode/data/rules/qpl-1.0.SPDX.yml deleted file mode 100644 index d3859640448..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: qpl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1999-2005 Trolltech AS, Norway -ignorable_holders: - - Trolltech AS, Norway diff --git a/src/licensedcode/data/rules/qpl-1.0.yml b/src/licensedcode/data/rules/qpl-1.0.yml deleted file mode 100644 index 507194bf0f1..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://doc.qt.nokia.com/3.3/license.html diff --git a/src/licensedcode/data/rules/qpl-1.0_1.RULE b/src/licensedcode/data/rules/qpl-1.0_1.RULE index c8c88bb1751..1a66a72ed18 100644 --- a/src/licensedcode/data/rules/qpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://doc.trolltech.com/4.0/qpl.html +--- + http://doc.trolltech.com/4.0/qpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_1.yml b/src/licensedcode/data/rules/qpl-1.0_1.yml deleted file mode 100644 index 3eebae8e6f2..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://doc.trolltech.com/4.0/qpl.html diff --git a/src/licensedcode/data/rules/qpl-1.0_10.RULE b/src/licensedcode/data/rules/qpl-1.0_10.RULE index ce1f3d8e7a7..cfcb9351858 100644 --- a/src/licensedcode/data/rules/qpl-1.0_10.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + QPL-1.0 Q Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_10.yml b/src/licensedcode/data/rules/qpl-1.0_10.yml deleted file mode 100644 index faac4828c6d..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qpl-1.0_11.RULE b/src/licensedcode/data/rules/qpl-1.0_11.RULE index 96217154874..b4109ee4abc 100644 --- a/src/licensedcode/data/rules/qpl-1.0_11.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Q Public License 1.0 QPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_11.yml b/src/licensedcode/data/rules/qpl-1.0_11.yml deleted file mode 100644 index faac4828c6d..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qpl-1.0_12.RULE b/src/licensedcode/data/rules/qpl-1.0_12.RULE index f514c13c640..4a053a00a23 100644 --- a/src/licensedcode/data/rules/qpl-1.0_12.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: QPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_12.yml b/src/licensedcode/data/rules/qpl-1.0_12.yml deleted file mode 100644 index 4efe4d48db4..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qpl-1.0_13.RULE b/src/licensedcode/data/rules/qpl-1.0_13.RULE index dc2deb53b4d..c1107ba4c6f 100644 --- a/src/licensedcode/data/rules/qpl-1.0_13.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Q Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_13.yml b/src/licensedcode/data/rules/qpl-1.0_13.yml deleted file mode 100644 index 4efe4d48db4..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qpl-1.0_14.RULE b/src/licensedcode/data/rules/qpl-1.0_14.RULE index 9d2d15e879e..02242f30fa5 100644 --- a/src/licensedcode/data/rules/qpl-1.0_14.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: QPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_14.yml b/src/licensedcode/data/rules/qpl-1.0_14.yml deleted file mode 100644 index 4efe4d48db4..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qpl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qpl-1.0_15.RULE b/src/licensedcode/data/rules/qpl-1.0_15.RULE index 700f2b30f7c..e568174a3ac 100644 --- a/src/licensedcode/data/rules/qpl-1.0_15.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Q_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_15.yml b/src/licensedcode/data/rules/qpl-1.0_15.yml deleted file mode 100644 index d5e98773b0b..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qpl-1.0_16.RULE b/src/licensedcode/data/rules/qpl-1.0_16.RULE index 68a7d3152b0..b9db3f9b124 100644 --- a/src/licensedcode/data/rules/qpl-1.0_16.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/QPL-1.0 +--- + https://licenses.nuget.org/QPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_16.yml b/src/licensedcode/data/rules/qpl-1.0_16.yml deleted file mode 100644 index fafe222a8b5..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/QPL-1.0 diff --git a/src/licensedcode/data/rules/qpl-1.0_17.RULE b/src/licensedcode/data/rules/qpl-1.0_17.RULE index e754507195f..1cb20e9a8a0 100644 --- a/src/licensedcode/data/rules/qpl-1.0_17.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_17.RULE @@ -1 +1,7 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/QPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_17.yml b/src/licensedcode/data/rules/qpl-1.0_17.yml deleted file mode 100644 index d5e98773b0b..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qpl-1.0_18.RULE b/src/licensedcode/data/rules/qpl-1.0_18.RULE index 662b544ccb1..52a7bc24620 100644 --- a/src/licensedcode/data/rules/qpl-1.0_18.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/QPL-1.0 +--- + LICENSE {{QPL-1.0}} https://spdx.org/licenses/QPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_18.yml b/src/licensedcode/data/rules/qpl-1.0_18.yml deleted file mode 100644 index 0f2948d7e70..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/QPL-1.0 diff --git a/src/licensedcode/data/rules/qpl-1.0_19.RULE b/src/licensedcode/data/rules/qpl-1.0_19.RULE index 3b149ed1979..5aab3faf138 100644 --- a/src/licensedcode/data/rules/qpl-1.0_19.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/QPL-1.0 +--- + {{QPL-1.0}} https://spdx.org/licenses/QPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_19.yml b/src/licensedcode/data/rules/qpl-1.0_19.yml deleted file mode 100644 index 0f2948d7e70..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/QPL-1.0 diff --git a/src/licensedcode/data/rules/qpl-1.0_2.RULE b/src/licensedcode/data/rules/qpl-1.0_2.RULE index e2d7714124c..b33beafaf3b 100644 --- a/src/licensedcode/data/rules/qpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: qpl-1.0 +is_license_notice: yes +relevance: 100 +--- + License [Q Public License 1.0 (QPL-1.0)] \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_2.yml b/src/licensedcode/data/rules/qpl-1.0_2.yml deleted file mode 100644 index 98911e93d08..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qpl-1.0_3.RULE b/src/licensedcode/data/rules/qpl-1.0_3.RULE index 5261b8fbee6..2a1e5719863 100644 --- a/src/licensedcode/data/rules/qpl-1.0_3.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_3.RULE @@ -1,2 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/Q_Public_License +--- + License [Q Public License 1.0 (QPL-1.0)](https://en.wikipedia.org/wiki/Q_Public_License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_3.yml b/src/licensedcode/data/rules/qpl-1.0_3.yml deleted file mode 100644 index cf6f7e9739a..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/Q_Public_License diff --git a/src/licensedcode/data/rules/qpl-1.0_4.RULE b/src/licensedcode/data/rules/qpl-1.0_4.RULE index 31454dbc07b..57c079fffb8 100644 --- a/src/licensedcode/data/rules/qpl-1.0_4.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://en.wikipedia.org/wiki/Q_Public_License +--- + [Q Public License 1.0 (QPL-1.0)](https://en.wikipedia.org/wiki/Q_Public_License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_4.yml b/src/licensedcode/data/rules/qpl-1.0_4.yml deleted file mode 100644 index cf6f7e9739a..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://en.wikipedia.org/wiki/Q_Public_License diff --git a/src/licensedcode/data/rules/qpl-1.0_5.RULE b/src/licensedcode/data/rules/qpl-1.0_5.RULE index 2f8473c249d..d2caf1acab7 100644 --- a/src/licensedcode/data/rules/qpl-1.0_5.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/qtpl.php +--- + This software may be distributed under the terms of the Q Public License version 1.0. A copy of the license can be found with this software or at http://www.opensource.org/licenses/qtpl.php diff --git a/src/licensedcode/data/rules/qpl-1.0_5.yml b/src/licensedcode/data/rules/qpl-1.0_5.yml deleted file mode 100644 index f0f3f69ef9f..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: qpl-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/qtpl.php diff --git a/src/licensedcode/data/rules/qpl-1.0_6.RULE b/src/licensedcode/data/rules/qpl-1.0_6.RULE index ce0ed48c95c..376bf7c7093 100644 --- a/src/licensedcode/data/rules/qpl-1.0_6.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_6.RULE @@ -1,2 +1,7 @@ +--- +license_expression: qpl-1.0 +is_license_notice: yes +--- + # This software may be distributed under the terms of the # Q Public License, version 1.0 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_6.yml b/src/licensedcode/data/rules/qpl-1.0_6.yml deleted file mode 100644 index e96beb2a59f..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: qpl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/qpl-1.0_7.RULE b/src/licensedcode/data/rules/qpl-1.0_7.RULE index 3f0f373cb07..0fdeb868991 100644 --- a/src/licensedcode/data/rules/qpl-1.0_7.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +--- + QPublic_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_7.yml b/src/licensedcode/data/rules/qpl-1.0_7.yml deleted file mode 100644 index d5e98773b0b..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qpl-1.0_8.RULE b/src/licensedcode/data/rules/qpl-1.0_8.RULE index b4e070b96bc..0c80138baec 100644 --- a/src/licensedcode/data/rules/qpl-1.0_8.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Q Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_8.yml b/src/licensedcode/data/rules/qpl-1.0_8.yml deleted file mode 100644 index faac4828c6d..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qpl-1.0_9.RULE b/src/licensedcode/data/rules/qpl-1.0_9.RULE index 857bdcbf570..10001d56cb9 100644 --- a/src/licensedcode/data/rules/qpl-1.0_9.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Q Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_9.yml b/src/licensedcode/data/rules/qpl-1.0_9.yml deleted file mode 100644 index faac4828c6d..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_1.RULE b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_1.RULE index d5df039f2a8..061ce27efa8 100644 --- a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: qpl-1.0 OR commercial-license +is_license_notice: yes +relevance: 100 +--- + released under dual license QPL 1.0 for open source and educational -use and Professional License for commercial use. +use and Professional License for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_1.yml b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_1.yml deleted file mode 100644 index 891762437a3..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qpl-1.0 OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_2.RULE b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_2.RULE index 36fc1d36558..14bc54e4c8c 100644 --- a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_2.RULE @@ -1 +1,7 @@ - is released under a dual license. QPL 1.0 (Qt Free License) For non-commercial, open-source or educational use and Professional License for commercial use. +--- +license_expression: qpl-1.0 OR commercial-license +is_license_notice: yes +relevance: 100 +--- + + is released under a dual license. QPL 1.0 (Qt Free License) For non-commercial, open-source or educational use and Professional License for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_2.yml b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_2.yml deleted file mode 100644 index 891762437a3..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qpl-1.0 OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_4.RULE b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_4.RULE index d2e7f678ec9..3718569cabc 100644 --- a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_4.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_4.RULE @@ -1 +1,7 @@ -released under a dual license. QPL 1.0 (Qt Free License) For non-commercial, open-source or educational use and Professional License for commercial use. +--- +license_expression: qpl-1.0 OR commercial-license +is_license_notice: yes +relevance: 100 +--- + +released under a dual license. QPL 1.0 (Qt Free License) For non-commercial, open-source or educational use and Professional License for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_4.yml b/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_4.yml deleted file mode 100644 index 891762437a3..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_or_commercial-license_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qpl-1.0 OR commercial-license -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qpl-1.0_url_1.RULE b/src/licensedcode/data/rules/qpl-1.0_url_1.RULE index 4c5c576965f..a6bd81c9ed2 100644 --- a/src/licensedcode/data/rules/qpl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qpl-1.0 +--- + https://spdx.org/licenses/qpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_url_1.yml b/src/licensedcode/data/rules/qpl-1.0_url_1.yml deleted file mode 100644 index 986bd8a69ac..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qpl-1.0 diff --git a/src/licensedcode/data/rules/qpl-1.0_url_2.RULE b/src/licensedcode/data/rules/qpl-1.0_url_2.RULE index 7175ca63c07..51066ca01cf 100644 --- a/src/licensedcode/data/rules/qpl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qpl-1.0.html +--- + https://spdx.org/licenses/qpl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_url_2.yml b/src/licensedcode/data/rules/qpl-1.0_url_2.yml deleted file mode 100644 index 81dc43b17d2..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qpl-1.0.html diff --git a/src/licensedcode/data/rules/qpl-1.0_url_glc_226.RULE b/src/licensedcode/data/rules/qpl-1.0_url_glc_226.RULE index 0f82fb5a3b7..c9db9bd84fb 100644 --- a/src/licensedcode/data/rules/qpl-1.0_url_glc_226.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_url_glc_226.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/qpl-1.0 +--- + http://www.opensource.org/licenses/qpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_url_glc_226.yml b/src/licensedcode/data/rules/qpl-1.0_url_glc_226.yml deleted file mode 100644 index 56c50e60233..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_url_glc_226.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/qpl-1.0 diff --git a/src/licensedcode/data/rules/qpl-1.0_url_glc_227.RULE b/src/licensedcode/data/rules/qpl-1.0_url_glc_227.RULE index ba4fef9a4ae..e5318d87f70 100644 --- a/src/licensedcode/data/rules/qpl-1.0_url_glc_227.RULE +++ b/src/licensedcode/data/rules/qpl-1.0_url_glc_227.RULE @@ -1 +1,9 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/qpl-1.0 +--- + https://www.opensource.org/licenses/qpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qpl-1.0_url_glc_227.yml b/src/licensedcode/data/rules/qpl-1.0_url_glc_227.yml deleted file mode 100644 index d7c014db2cc..00000000000 --- a/src/licensedcode/data/rules/qpl-1.0_url_glc_227.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/qpl-1.0 diff --git a/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other.RULE b/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other.RULE index 0de95c9dba9..0c4639ee490 100644 --- a/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other.RULE +++ b/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other.RULE @@ -1,3 +1,16 @@ +--- +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 +relevance: 100 +notes: Qt is available under a choice of licenses. This is a common choice +ignorable_urls: + - http://www.qt.io/contact-us + - http://www.qt.io/terms-conditions + - https://www.gnu.org/licenses/lgpl.html + - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in diff --git a/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other.yml b/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other.yml deleted file mode 100644 index 76483cf5e4a..00000000000 --- a/src/licensedcode/data/rules/qt-commercial-1.1_or_lgpl-2.1_with_qt-company-exception-lgpl-2.1_and_other.yml +++ /dev/null @@ -1,10 +0,0 @@ -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 -relevance: 100 -notes: Qt is available under a choice of licenses. This is a common choice -ignorable_urls: - - http://www.qt.io/contact-us - - http://www.qt.io/terms-conditions - - https://www.gnu.org/licenses/lgpl.html - - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/qt-company-exception-lgpl-2.1_1.RULE b/src/licensedcode/data/rules/qt-company-exception-lgpl-2.1_1.RULE index 83bd9b408d6..607b169b03f 100644 --- a/src/licensedcode/data/rules/qt-company-exception-lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/qt-company-exception-lgpl-2.1_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus WITH qt-company-exception-lgpl-2.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -17,4 +22,4 @@ such object code under terms of your choice, provided that the incorporated material (i) does not exceed more than 5% of the total size of the Library; and (ii) is limited to numerical parameters, data structure layouts, - accessors, macros, inline functions and templates. + accessors, macros, inline functions and templates. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-company-exception-lgpl-2.1_1.yml b/src/licensedcode/data/rules/qt-company-exception-lgpl-2.1_1.yml deleted file mode 100644 index f5790459f40..00000000000 --- a/src/licensedcode/data/rules/qt-company-exception-lgpl-2.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus WITH qt-company-exception-lgpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/qt-exception-lgpl-2.1_3.RULE b/src/licensedcode/data/rules/qt-exception-lgpl-2.1_3.RULE index e4e581a99fb..068db9c829f 100644 --- a/src/licensedcode/data/rules/qt-exception-lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/qt-exception-lgpl-2.1_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_text: yes +--- + Digia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version @@ -19,5 +24,4 @@ limited to (i) numerical parameters; (ii) data structure layouts; five lines or less in length. Furthermore, you are not required to apply this additional permission to a -modified version of the Library. - +modified version of the Library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-exception-lgpl-2.1_3.yml b/src/licensedcode/data/rules/qt-exception-lgpl-2.1_3.yml deleted file mode 100644 index a6c6ddc6603..00000000000 --- a/src/licensedcode/data/rules/qt-exception-lgpl-2.1_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_1.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_1.RULE index b0b2e4d5b91..77c07937481 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Qt GPL exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_1.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_1.yml deleted file mode 100644 index 4e726793aab..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_10.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_10.RULE index 3c9a76a5f3d..dee7188a1b2 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_10.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Qt-GPL-exception-1.0 +--- + {{Qt-GPL-exception-1.0}} https://spdx.org/licenses/Qt-GPL-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_10.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_10.yml deleted file mode 100644 index 7dffae4ce4c..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Qt-GPL-exception-1.0 diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_2.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_2.RULE index e59a6f8098f..7b28a6efbf5 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_2.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Qt GPL exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_2.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_2.yml deleted file mode 100644 index 4e726793aab..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_3.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_3.RULE index 76d2412ff13..4bbab0d8ef3 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_3.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Qt-GPL-exception-1.0 Qt GPL exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_3.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_3.yml deleted file mode 100644 index 4e726793aab..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_4.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_4.RULE index 539975be0ff..7705ef306b3 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_4.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Qt-GPL-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_4.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_4.yml deleted file mode 100644 index 32d46f70a66..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_5.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_5.RULE index 5d90ee00c86..5d8d8077716 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_5.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Qt-GPL-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_5.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_5.yml deleted file mode 100644 index 32d46f70a66..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_6.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_6.RULE index c2dc2a88e31..2a4b1b135da 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_6.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +relevance: 100 +--- + licenseID: Qt-GPL-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_6.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_6.yml deleted file mode 100644 index f571cdab8f4..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_7.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_7.RULE index 43e238ebac5..4d6cd5d627b 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_7.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Qt-GPL-exception-1.0 +--- + https://licenses.nuget.org/Qt-GPL-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_7.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_7.yml deleted file mode 100644 index b7bb1ace19d..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Qt-GPL-exception-1.0 diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_8.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_8.RULE index 9a5beb33e5c..6b41db9208b 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_8.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Qt-GPL-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_8.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_8.yml deleted file mode 100644 index f571cdab8f4..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_9.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_9.RULE index 4c009b49c03..b36db6b2a14 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_9.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Qt-GPL-exception-1.0 +--- + LICENSE {{Qt-GPL-exception-1.0}} https://spdx.org/licenses/Qt-GPL-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_9.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_9.yml deleted file mode 100644 index 7dffae4ce4c..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Qt-GPL-exception-1.0 diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_1.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_1.RULE index 962812c8130..93cc1c54aef 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qt-gpl-exception-1.0 +--- + https://spdx.org/licenses/qt-gpl-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_1.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_1.yml deleted file mode 100644 index 9f019f00f89..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qt-gpl-exception-1.0 diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_2.RULE b/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_2.RULE index e1072c0f5c8..4bca09327f8 100644 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-gpl-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qt-gpl-exception-1.0.html +--- + https://spdx.org/licenses/qt-gpl-exception-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_2.yml b/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_2.yml deleted file mode 100644 index 37cee1e6a71..00000000000 --- a/src/licensedcode/data/rules/qt-gpl-exception-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-gpl-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qt-gpl-exception-1.0.html diff --git a/src/licensedcode/data/rules/qt-kde-linking-exception_1.RULE b/src/licensedcode/data/rules/qt-kde-linking-exception_1.RULE index e59f557ca5f..3334899a855 100644 --- a/src/licensedcode/data/rules/qt-kde-linking-exception_1.RULE +++ b/src/licensedcode/data/rules/qt-kde-linking-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus WITH qt-kde-linking-exception +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 @@ -11,4 +16,4 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + without including the source code for Qt in the source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-kde-linking-exception_1.yml b/src/licensedcode/data/rules/qt-kde-linking-exception_1.yml deleted file mode 100644 index 7ab5b995146..00000000000 --- a/src/licensedcode/data/rules/qt-kde-linking-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus WITH qt-kde-linking-exception -is_license_notice: yes diff --git a/src/licensedcode/data/rules/qt-kde-linking-exception_2.RULE b/src/licensedcode/data/rules/qt-kde-linking-exception_2.RULE index 7c1566833cb..4a2dbebc4a0 100644 --- a/src/licensedcode/data/rules/qt-kde-linking-exception_2.RULE +++ b/src/licensedcode/data/rules/qt-kde-linking-exception_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: qt-kde-linking-exception +is_license_text: yes +relevance: 100 +--- + As a special exception, the copyright holder(s) give permission to link this program with the Qt Library (commercial or non-commercial edition), and distribute the resulting executable, without including the source diff --git a/src/licensedcode/data/rules/qt-kde-linking-exception_2.yml b/src/licensedcode/data/rules/qt-kde-linking-exception_2.yml deleted file mode 100644 index 058176d0d8f..00000000000 --- a/src/licensedcode/data/rules/qt-kde-linking-exception_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qt-kde-linking-exception -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qt-kde-linking-exception_3.RULE b/src/licensedcode/data/rules/qt-kde-linking-exception_3.RULE index 56603200aa8..d1ecc69c1ba 100644 --- a/src/licensedcode/data/rules/qt-kde-linking-exception_3.RULE +++ b/src/licensedcode/data/rules/qt-kde-linking-exception_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: qt-kde-linking-exception +is_license_text: yes +relevance: 100 +--- + As a special exception, permission is given to link this library with any edition of Qt, and distribute the resulting executable, without including the source code for Qt in the source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-kde-linking-exception_3.yml b/src/licensedcode/data/rules/qt-kde-linking-exception_3.yml deleted file mode 100644 index 058176d0d8f..00000000000 --- a/src/licensedcode/data/rules/qt-kde-linking-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qt-kde-linking-exception -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_1.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_1.RULE index 3c141bea29c..568c0ab7581 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_1.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_text: yes +--- + Nokia Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_1.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_1.yml deleted file mode 100644 index a6c6ddc6603..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_10.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_10.RULE index c5f114ab85b..1efd3f5be68 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_10.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Nokia Qt LGPL exception 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_10.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_10.yml deleted file mode 100644 index d4012f2bf8a..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_11.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_11.RULE index 8e6a4598b5a..1357fa1a033 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_11.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Qt LGPL exception 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_11.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_11.yml deleted file mode 100644 index 2c8d8585123..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_12.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_12.RULE index 25215fc5368..469a2782a92 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_12.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Qt LGPL exception 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_12.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_12.yml deleted file mode 100644 index 2c8d8585123..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_13.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_13.RULE index 7a172d9bbd6..6e8c6b87ac9 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_13.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_13.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Qt-LGPL-exception-1.1 Qt LGPL exception 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_13.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_13.yml deleted file mode 100644 index 2c8d8585123..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_14.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_14.RULE index 6155c3d3593..be703192ff8 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_14.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_14.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Qt-LGPL-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_14.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_14.yml deleted file mode 100644 index d4012f2bf8a..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_15.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_15.RULE index 25f24c7d737..3d28aebdf3d 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_15.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_15.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Qt-LGPL-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_15.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_15.yml deleted file mode 100644 index d4012f2bf8a..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_16.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_16.RULE index fc78832662f..39e8d54552d 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_16.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_16.RULE @@ -1 +1,7 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 100 +--- + licenseID: Qt-LGPL-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_16.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_16.yml deleted file mode 100644 index 365ed53e4cc..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_17.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_17.RULE index 6b16a3888b8..e8b726a1946 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_17.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_17.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Qt-LGPL-exception-1.1 +--- + https://licenses.nuget.org/Qt-LGPL-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_17.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_17.yml deleted file mode 100644 index b9d829ee083..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Qt-LGPL-exception-1.1 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_18.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_18.RULE index fdcce6ffa7e..2ab284d8b67 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_18.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_18.RULE @@ -1 +1,7 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Qt-LGPL-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_18.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_18.yml deleted file mode 100644 index 365ed53e4cc..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_19.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_19.RULE index 39e5bff03b9..88afd924345 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_19.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_19.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Qt-LGPL-exception-1.1 +--- + {{Qt-LGPL-exception-1.1}} https://spdx.org/licenses/Qt-LGPL-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_19.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_19.yml deleted file mode 100644 index f9430f47869..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Qt-LGPL-exception-1.1 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_2.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_2.RULE index ea61032cae9..9fe5e175c4b 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_2.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_text: yes +--- + As an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a "work that uses the Library" may incorporate material from a header file that is part of the Library. You may distribute diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_2.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_2.yml deleted file mode 100644 index a6c6ddc6603..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_20.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_20.RULE index 7fbf945ba9f..10aa2d24947 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_20.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_20.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Nokia-Qt-exception-1.1 +--- + LICENSE {{Nokia-Qt-exception-1.1}} https://spdx.org/licenses/Nokia-Qt-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_20.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_20.yml deleted file mode 100644 index bba250512f8..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Nokia-Qt-exception-1.1 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_21.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_21.RULE index bb249cbc19a..8b3a8f61cfb 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_21.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_21.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Qt-LGPL-exception-1.1 +--- + LICENSE {{Qt-LGPL-exception-1.1}} https://spdx.org/licenses/Qt-LGPL-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_21.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_21.yml deleted file mode 100644 index f9430f47869..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Qt-LGPL-exception-1.1 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_22.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_22.RULE index 037ad238397..f0b244939af 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_22.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_22.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Nokia-Qt-exception-1.1 +--- + {{Nokia-Qt-exception-1.1}} https://spdx.org/licenses/Nokia-Qt-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_22.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_22.yml deleted file mode 100644 index bba250512f8..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Nokia-Qt-exception-1.1 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_3.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_3.RULE index 2b5248eec2d..27f93faf767 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_3.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + License: Nokia-Qt-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_3.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_3.yml deleted file mode 100644 index 81520d3cf9d..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_4.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_4.RULE index 0c67a07bfa8..6a4927c396f 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_4.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_text: yes +--- + Qt LGPL Exception version 1.1 As an additional permission to the GNU Lesser General Public License version diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_4.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_4.yml deleted file mode 100644 index a6c6ddc6603..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_5.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_5.RULE index f1bfdb206ac..6283b0b0ee7 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_5.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Nokia-Qt-exception-1.1 Nokia Qt LGPL exception 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_5.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_5.yml deleted file mode 100644 index 7eb9f33e272..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_6.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_6.RULE index 210a5974de9..35c287e2479 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_6.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Licenseexceptionid: Nokia-Qt-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_6.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_6.yml deleted file mode 100644 index 7eb9f33e272..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_7.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_7.RULE index d71b7831d64..5a9c740d64a 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_7.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Nokia Qt LGPL exception 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_7.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_7.yml deleted file mode 100644 index 7eb9f33e272..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_8.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_8.RULE index 8865df81268..e7da267e294 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_8.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Nokia Qt LGPL exception 1.1 Nokia-Qt-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_8.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_8.yml deleted file mode 100644 index 7eb9f33e272..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_9.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_9.RULE index 02628f22d6b..aac6ccad23b 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_9.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Nokia Qt LGPL exception 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_9.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_9.yml deleted file mode 100644 index 2c8d8585123..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_1.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_1.RULE index df07b95476c..17d4df79170 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qt-lgpl-exception-1.1 +--- + https://spdx.org/licenses/qt-lgpl-exception-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_1.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_1.yml deleted file mode 100644 index fe232e93a03..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qt-lgpl-exception-1.1 diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_2.RULE b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_2.RULE index d35ce8722c4..3600a207e83 100644 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: qt-lgpl-exception-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qt-lgpl-exception-1.1.html +--- + https://spdx.org/licenses/qt-lgpl-exception-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_2.yml b/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_2.yml deleted file mode 100644 index 5e929453d76..00000000000 --- a/src/licensedcode/data/rules/qt-lgpl-exception-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qt-lgpl-exception-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qt-lgpl-exception-1.1.html diff --git a/src/licensedcode/data/rules/qt_digia_quad_gpl3.RULE b/src/licensedcode/data/rules/qt_digia_quad_gpl3.RULE index e106a7a5852..a7ac2609b37 100644 --- a/src/licensedcode/data/rules/qt_digia_quad_gpl3.RULE +++ b/src/licensedcode/data/rules/qt_digia_quad_gpl3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the @@ -24,4 +35,4 @@ ** Foundation and appearing in the file LICENSE.GPL 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. +** met: http://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt_digia_quad_gpl3.yml b/src/licensedcode/data/rules/qt_digia_quad_gpl3.yml deleted file mode 100644 index 74ad99810f5..00000000000 --- a/src/licensedcode/data/rules/qt_digia_quad_gpl3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/qt_digia_quad_gpl3_1.RULE b/src/licensedcode/data/rules/qt_digia_quad_gpl3_1.RULE index c59783ed35d..c600c891fa5 100644 --- a/src/licensedcode/data/rules/qt_digia_quad_gpl3_1.RULE +++ b/src/licensedcode/data/rules/qt_digia_quad_gpl3_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - http://www.gnu.org/copyleft/gpl.html + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html +--- + ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in @@ -28,4 +39,4 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** -** $QT_END_LICENSE$ +** $QT_END_LICENSE$ \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt_digia_quad_gpl3_1.yml b/src/licensedcode/data/rules/qt_digia_quad_gpl3_1.yml deleted file mode 100644 index 74ad99810f5..00000000000 --- a/src/licensedcode/data/rules/qt_digia_quad_gpl3_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - http://www.gnu.org/copyleft/gpl.html - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html diff --git a/src/licensedcode/data/rules/qt_digia_quad_gpl3_2.RULE b/src/licensedcode/data/rules/qt_digia_quad_gpl3_2.RULE index ebcfe5470f0..ea51921641f 100644 --- a/src/licensedcode/data/rules/qt_digia_quad_gpl3_2.RULE +++ b/src/licensedcode/data/rules/qt_digia_quad_gpl3_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-company-exception-lgpl-2.1 OR lgpl-3.0 + WITH qt-company-exception-lgpl-2.1 OR gpl-3.0 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://www.gnu.org/copyleft/gpl.html + - 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 +--- + ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in diff --git a/src/licensedcode/data/rules/qt_digia_quad_gpl3_2.yml b/src/licensedcode/data/rules/qt_digia_quad_gpl3_2.yml deleted file mode 100644 index 7ff8e941d31..00000000000 --- a/src/licensedcode/data/rules/qt_digia_quad_gpl3_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-company-exception-lgpl-2.1 OR lgpl-3.0 - WITH qt-company-exception-lgpl-2.1 OR gpl-3.0 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://www.gnu.org/copyleft/gpl.html - - 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 diff --git a/src/licensedcode/data/rules/qt_digia_quad_lgpl.RULE b/src/licensedcode/data/rules/qt_digia_quad_lgpl.RULE index 4d2d4747355..3618c8e2fab 100644 --- a/src/licensedcode/data/rules/qt_digia_quad_lgpl.RULE +++ b/src/licensedcode/data/rules/qt_digia_quad_lgpl.RULE @@ -1,3 +1,14 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + - 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 @@ -17,4 +28,4 @@ ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception - ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. + ** 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/qt_digia_quad_lgpl.yml b/src/licensedcode/data/rules/qt_digia_quad_lgpl.yml deleted file mode 100644 index 847aa9a2ee5..00000000000 --- a/src/licensedcode/data/rules/qt_digia_quad_lgpl.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR gpl-3.0 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/qt_digia_quad_lgpl2.RULE b/src/licensedcode/data/rules/qt_digia_quad_lgpl2.RULE index ffb4c880e3d..da42edd1de3 100644 --- a/src/licensedcode/data/rules/qt_digia_quad_lgpl2.RULE +++ b/src/licensedcode/data/rules/qt_digia_quad_lgpl2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR lgpl-3.0 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html + - https://www.gnu.org/licenses/lgpl.html +--- + $QT_BEGIN_LICENSE:LGPL21$ Commercial License Usage Licensees holding valid commercial Qt licenses may use this file in @@ -20,4 +31,4 @@ In addition, as a special exception, Digia gives you certain additional rights. These rights are described in the Digia Qt LGPL Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -$QT_END_LICENSE$ +$QT_END_LICENSE$ \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt_digia_quad_lgpl2.yml b/src/licensedcode/data/rules/qt_digia_quad_lgpl2.yml deleted file mode 100644 index 45155da2374..00000000000 --- a/src/licensedcode/data/rules/qt_digia_quad_lgpl2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-2.1 WITH qt-lgpl-exception-1.1 OR lgpl-3.0 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/qt_digia_quad_lgpl3.RULE b/src/licensedcode/data/rules/qt_digia_quad_lgpl3.RULE index dd3d7356007..8a9c493868c 100644 --- a/src/licensedcode/data/rules/qt_digia_quad_lgpl3.RULE +++ b/src/licensedcode/data/rules/qt_digia_quad_lgpl3.RULE @@ -1,3 +1,15 @@ +--- +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 +notes: Qt is available under a choice of licenses. This is a common choice +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 +--- + ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in diff --git a/src/licensedcode/data/rules/qt_digia_quad_lgpl3.yml b/src/licensedcode/data/rules/qt_digia_quad_lgpl3.yml deleted file mode 100644 index 8782fe9e3d6..00000000000 --- a/src/licensedcode/data/rules/qt_digia_quad_lgpl3.yml +++ /dev/null @@ -1,9 +0,0 @@ -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 -notes: Qt is available under a choice of licenses. This is a common choice -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 diff --git a/src/licensedcode/data/rules/qt_digia_tri_gpl2.RULE b/src/licensedcode/data/rules/qt_digia_tri_gpl2.RULE index 41e43fe1ccf..850a0de170a 100644 --- a/src/licensedcode/data/rules/qt_digia_tri_gpl2.RULE +++ b/src/licensedcode/data/rules/qt_digia_tri_gpl2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: digia-qt-commercial OR lgpl-3.0 OR gpl-2.0 +is_license_notice: yes +notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x +ignorable_urls: + - http://qt.digia.com/contact-us + - http://qt.digia.com/licensing + - http://www.gnu.org/licenses/gpl-2.0.html + - 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 @@ -20,4 +31,4 @@ ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. +** met: http://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/qt_digia_tri_gpl2.yml b/src/licensedcode/data/rules/qt_digia_tri_gpl2.yml deleted file mode 100644 index 921084c6ab3..00000000000 --- a/src/licensedcode/data/rules/qt_digia_tri_gpl2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: digia-qt-commercial OR lgpl-3.0 OR gpl-2.0 -is_license_notice: yes -notes: Qt is available under a choice of licenses. This is a common choice in Qt 5.x -ignorable_urls: - - http://qt.digia.com/contact-us - - http://qt.digia.com/licensing - - http://www.gnu.org/licenses/gpl-2.0.html - - https://www.gnu.org/licenses/lgpl.html diff --git a/src/licensedcode/data/rules/quicktime.RULE b/src/licensedcode/data/rules/quicktime.RULE index ef6e3ac830b..50b1a2d543c 100644 --- a/src/licensedcode/data/rules/quicktime.RULE +++ b/src/licensedcode/data/rules/quicktime.RULE @@ -1 +1,9 @@ +--- +license_expression: quicktime +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://store.apple.com/Catalog/US/Images/quicktime.html +--- + http://store.apple.com/Catalog/US/Images/quicktime.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/quicktime.yml b/src/licensedcode/data/rules/quicktime.yml deleted file mode 100644 index 1e237c27da7..00000000000 --- a/src/licensedcode/data/rules/quicktime.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: quicktime -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://store.apple.com/Catalog/US/Images/quicktime.html diff --git a/src/licensedcode/data/rules/quirksmode.RULE b/src/licensedcode/data/rules/quirksmode.RULE index d7b531310da..5d49b6ca063 100644 --- a/src/licensedcode/data/rules/quirksmode.RULE +++ b/src/licensedcode/data/rules/quirksmode.RULE @@ -1 +1,9 @@ +--- +license_expression: quirksmode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.quirksmode.org/about/copyright.html +--- + http://www.quirksmode.org/about/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/quirksmode.yml b/src/licensedcode/data/rules/quirksmode.yml deleted file mode 100644 index 457d7c346f0..00000000000 --- a/src/licensedcode/data/rules/quirksmode.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: quirksmode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.quirksmode.org/about/copyright.html diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_1.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_1.RULE index 256c55e7540..9ebbc2be1d9 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Qwt exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_1.yml b/src/licensedcode/data/rules/qwt-exception-1.0_1.yml deleted file mode 100644 index b2aad48f776..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_2.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_2.RULE index 198c62132b7..a959850220d 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_2.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Qwt-exception-1.0 Qwt exception 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_2.yml b/src/licensedcode/data/rules/qwt-exception-1.0_2.yml deleted file mode 100644 index b2aad48f776..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_3.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_3.RULE index 32ef34a3109..14cbd28edcc 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_3.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: qwt-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_3.yml b/src/licensedcode/data/rules/qwt-exception-1.0_3.yml deleted file mode 100644 index bb5781f42b8..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_4.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_4.RULE index 02af0b381e0..7c03c74dfd2 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_4.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: qwt-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_4.yml b/src/licensedcode/data/rules/qwt-exception-1.0_4.yml deleted file mode 100644 index bb5781f42b8..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_5.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_5.RULE index 529c6d1b0b4..b76dd192fbd 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_5.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Qwt-exception-1.0 +--- + https://licenses.nuget.org/Qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_5.yml b/src/licensedcode/data/rules/qwt-exception-1.0_5.yml deleted file mode 100644 index 76ee9da7b70..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Qwt-exception-1.0 diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_6.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_6.RULE index 2c9e1e89007..92ab0c119d6 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_6.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_6.yml b/src/licensedcode/data/rules/qwt-exception-1.0_6.yml deleted file mode 100644 index 33ec86d9195..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_7.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_7.RULE index 13654b7c018..0428517c4cb 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_7.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Qwt-exception-1.0 +--- + LICENSE {{Qwt-exception-1.0}} https://spdx.org/licenses/Qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_7.yml b/src/licensedcode/data/rules/qwt-exception-1.0_7.yml deleted file mode 100644 index f2dca197c5f..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Qwt-exception-1.0 diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_8.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_8.RULE index c2e785932dd..bcb7ac6f06b 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_8.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Qwt-exception-1.0 +--- + {{Qwt-exception-1.0}} https://spdx.org/licenses/Qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_8.yml b/src/licensedcode/data/rules/qwt-exception-1.0_8.yml deleted file mode 100644 index f2dca197c5f..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Qwt-exception-1.0 diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_url_1.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_url_1.RULE index d6ed94809ca..1e947be2e39 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qwt-exception-1.0 +--- + https://spdx.org/licenses/qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_url_1.yml b/src/licensedcode/data/rules/qwt-exception-1.0_url_1.yml deleted file mode 100644 index 070b740fd52..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qwt-exception-1.0 diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_url_2.RULE b/src/licensedcode/data/rules/qwt-exception-1.0_url_2.RULE index 00a14101839..8268e82586b 100644 --- a/src/licensedcode/data/rules/qwt-exception-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/qwt-exception-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/qwt-exception-1.0.html +--- + https://spdx.org/licenses/qwt-exception-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/qwt-exception-1.0_url_2.yml b/src/licensedcode/data/rules/qwt-exception-1.0_url_2.yml deleted file mode 100644 index fc0aba0926a..00000000000 --- a/src/licensedcode/data/rules/qwt-exception-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/qwt-exception-1.0.html diff --git a/src/licensedcode/data/rules/radvd.RULE b/src/licensedcode/data/rules/radvd.RULE index a4c380d03be..324ed97dd26 100644 --- a/src/licensedcode/data/rules/radvd.RULE +++ b/src/licensedcode/data/rules/radvd.RULE @@ -1 +1,9 @@ +--- +license_expression: radvd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.litech.org/radvd/ +--- + http://www.litech.org/radvd/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/radvd.yml b/src/licensedcode/data/rules/radvd.yml deleted file mode 100644 index 28947bb85e1..00000000000 --- a/src/licensedcode/data/rules/radvd.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: radvd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.litech.org/radvd/ diff --git a/src/licensedcode/data/rules/radvd_1.RULE b/src/licensedcode/data/rules/radvd_1.RULE index f841805d206..3880565410b 100644 --- a/src/licensedcode/data/rules/radvd_1.RULE +++ b/src/licensedcode/data/rules/radvd_1.RULE @@ -1 +1,9 @@ +--- +license_expression: radvd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/reubenhwk/radvd/blob/master/COPYRIGHT +--- + https://github.com/reubenhwk/radvd/blob/master/COPYRIGHT \ No newline at end of file diff --git a/src/licensedcode/data/rules/radvd_1.yml b/src/licensedcode/data/rules/radvd_1.yml deleted file mode 100644 index c67d45c0af6..00000000000 --- a/src/licensedcode/data/rules/radvd_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: radvd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/reubenhwk/radvd/blob/master/COPYRIGHT diff --git a/src/licensedcode/data/rules/ralink-firmware_1.RULE b/src/licensedcode/data/rules/ralink-firmware_1.RULE index 9a3d6c83849..6a734aec913 100644 --- a/src/licensedcode/data/rules/ralink-firmware_1.RULE +++ b/src/licensedcode/data/rules/ralink-firmware_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ralink-firmware +is_license_tag: yes +relevance: 99 +--- + License: Binary redistribution (MediaTek) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ralink-firmware_1.yml b/src/licensedcode/data/rules/ralink-firmware_1.yml deleted file mode 100644 index d7cd83fd638..00000000000 --- a/src/licensedcode/data/rules/ralink-firmware_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ralink-firmware -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ralink-firmware_2.RULE b/src/licensedcode/data/rules/ralink-firmware_2.RULE index 6ff3ed8258b..91f326346af 100644 --- a/src/licensedcode/data/rules/ralink-firmware_2.RULE +++ b/src/licensedcode/data/rules/ralink-firmware_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ralink-firmware +is_license_reference: yes +relevance: 99 +--- + Binary redistribution (MediaTek) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ralink-firmware_2.yml b/src/licensedcode/data/rules/ralink-firmware_2.yml deleted file mode 100644 index f26e8701234..00000000000 --- a/src/licensedcode/data/rules/ralink-firmware_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ralink-firmware -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/rcsl-2.0.RULE b/src/licensedcode/data/rules/rcsl-2.0.RULE index 3491c270b81..d672014e722 100644 --- a/src/licensedcode/data/rules/rcsl-2.0.RULE +++ b/src/licensedcode/data/rules/rcsl-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: rcsl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://helixcommunity.org/content/rcsl +--- + https://helixcommunity.org/content/rcsl \ No newline at end of file diff --git a/src/licensedcode/data/rules/rcsl-2.0.yml b/src/licensedcode/data/rules/rcsl-2.0.yml deleted file mode 100644 index f0913d5bcae..00000000000 --- a/src/licensedcode/data/rules/rcsl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rcsl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://helixcommunity.org/content/rcsl diff --git a/src/licensedcode/data/rules/rdisc_1.RULE b/src/licensedcode/data/rules/rdisc_1.RULE index ce88baff6fc..1d41987180f 100644 --- a/src/licensedcode/data/rules/rdisc_1.RULE +++ b/src/licensedcode/data/rules/rdisc_1.RULE @@ -1 +1,10 @@ +--- +license_expression: rdisc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Rdisc License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_1.yml b/src/licensedcode/data/rules/rdisc_1.yml deleted file mode 100644 index 1e7d5100b0b..00000000000 --- a/src/licensedcode/data/rules/rdisc_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rdisc_10.RULE b/src/licensedcode/data/rules/rdisc_10.RULE index 5078d85a32b..f4016eb5b5c 100644 --- a/src/licensedcode/data/rules/rdisc_10.RULE +++ b/src/licensedcode/data/rules/rdisc_10.RULE @@ -1 +1,9 @@ +--- +license_expression: rdisc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Rdisc +--- + LICENSE {{Rdisc}} https://spdx.org/licenses/Rdisc \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_10.yml b/src/licensedcode/data/rules/rdisc_10.yml deleted file mode 100644 index 0857d672da9..00000000000 --- a/src/licensedcode/data/rules/rdisc_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Rdisc diff --git a/src/licensedcode/data/rules/rdisc_11.RULE b/src/licensedcode/data/rules/rdisc_11.RULE index 5f5dbe48700..7ee94d47c35 100644 --- a/src/licensedcode/data/rules/rdisc_11.RULE +++ b/src/licensedcode/data/rules/rdisc_11.RULE @@ -1 +1,9 @@ +--- +license_expression: rdisc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Rdisc +--- + {{Rdisc}} https://spdx.org/licenses/Rdisc \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_11.yml b/src/licensedcode/data/rules/rdisc_11.yml deleted file mode 100644 index 0857d672da9..00000000000 --- a/src/licensedcode/data/rules/rdisc_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Rdisc diff --git a/src/licensedcode/data/rules/rdisc_2.RULE b/src/licensedcode/data/rules/rdisc_2.RULE index cd2a7c5a034..770ca472d61 100644 --- a/src/licensedcode/data/rules/rdisc_2.RULE +++ b/src/licensedcode/data/rules/rdisc_2.RULE @@ -1 +1,10 @@ +--- +license_expression: rdisc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Rdisc License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_2.yml b/src/licensedcode/data/rules/rdisc_2.yml deleted file mode 100644 index 1e7d5100b0b..00000000000 --- a/src/licensedcode/data/rules/rdisc_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rdisc_3.RULE b/src/licensedcode/data/rules/rdisc_3.RULE index d3cf38f0b33..e96aee8d21e 100644 --- a/src/licensedcode/data/rules/rdisc_3.RULE +++ b/src/licensedcode/data/rules/rdisc_3.RULE @@ -1 +1,10 @@ +--- +license_expression: rdisc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Rdisc Rdisc License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_3.yml b/src/licensedcode/data/rules/rdisc_3.yml deleted file mode 100644 index 1e7d5100b0b..00000000000 --- a/src/licensedcode/data/rules/rdisc_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rdisc_4.RULE b/src/licensedcode/data/rules/rdisc_4.RULE index bd1232fc243..c2ce0b93670 100644 --- a/src/licensedcode/data/rules/rdisc_4.RULE +++ b/src/licensedcode/data/rules/rdisc_4.RULE @@ -1 +1,10 @@ +--- +license_expression: rdisc +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Rdisc License Rdisc \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_4.yml b/src/licensedcode/data/rules/rdisc_4.yml deleted file mode 100644 index 1e7d5100b0b..00000000000 --- a/src/licensedcode/data/rules/rdisc_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rdisc_5.RULE b/src/licensedcode/data/rules/rdisc_5.RULE index f86a951a718..ccf58ea7dd5 100644 --- a/src/licensedcode/data/rules/rdisc_5.RULE +++ b/src/licensedcode/data/rules/rdisc_5.RULE @@ -1 +1,10 @@ +--- +license_expression: rdisc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Rdisc \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_5.yml b/src/licensedcode/data/rules/rdisc_5.yml deleted file mode 100644 index 640dc545c98..00000000000 --- a/src/licensedcode/data/rules/rdisc_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rdisc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rdisc_6.RULE b/src/licensedcode/data/rules/rdisc_6.RULE index 1f35749363f..163ab31c558 100644 --- a/src/licensedcode/data/rules/rdisc_6.RULE +++ b/src/licensedcode/data/rules/rdisc_6.RULE @@ -1 +1,10 @@ +--- +license_expression: rdisc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Rdisc License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_6.yml b/src/licensedcode/data/rules/rdisc_6.yml deleted file mode 100644 index 640dc545c98..00000000000 --- a/src/licensedcode/data/rules/rdisc_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rdisc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rdisc_7.RULE b/src/licensedcode/data/rules/rdisc_7.RULE index cfaeddd7e47..5f83dfd07bb 100644 --- a/src/licensedcode/data/rules/rdisc_7.RULE +++ b/src/licensedcode/data/rules/rdisc_7.RULE @@ -1 +1,10 @@ +--- +license_expression: rdisc +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Rdisc \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_7.yml b/src/licensedcode/data/rules/rdisc_7.yml deleted file mode 100644 index 640dc545c98..00000000000 --- a/src/licensedcode/data/rules/rdisc_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rdisc -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rdisc_8.RULE b/src/licensedcode/data/rules/rdisc_8.RULE index 424d4580469..7a4d2140284 100644 --- a/src/licensedcode/data/rules/rdisc_8.RULE +++ b/src/licensedcode/data/rules/rdisc_8.RULE @@ -1 +1,9 @@ +--- +license_expression: rdisc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Rdisc +--- + https://licenses.nuget.org/Rdisc \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_8.yml b/src/licensedcode/data/rules/rdisc_8.yml deleted file mode 100644 index 7fe99937379..00000000000 --- a/src/licensedcode/data/rules/rdisc_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Rdisc diff --git a/src/licensedcode/data/rules/rdisc_9.RULE b/src/licensedcode/data/rules/rdisc_9.RULE index eccc0d6cb28..920ad4cc02b 100644 --- a/src/licensedcode/data/rules/rdisc_9.RULE +++ b/src/licensedcode/data/rules/rdisc_9.RULE @@ -1 +1,7 @@ +--- +license_expression: rdisc +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Rdisc \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_9.yml b/src/licensedcode/data/rules/rdisc_9.yml deleted file mode 100644 index 2267acde4b9..00000000000 --- a/src/licensedcode/data/rules/rdisc_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/rdisc_url_1.RULE b/src/licensedcode/data/rules/rdisc_url_1.RULE index 07fdfc1789a..d10a5d6c8f8 100644 --- a/src/licensedcode/data/rules/rdisc_url_1.RULE +++ b/src/licensedcode/data/rules/rdisc_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: rdisc +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rdisc +--- + https://spdx.org/licenses/rdisc \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_url_1.yml b/src/licensedcode/data/rules/rdisc_url_1.yml deleted file mode 100644 index 43219c427cb..00000000000 --- a/src/licensedcode/data/rules/rdisc_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rdisc diff --git a/src/licensedcode/data/rules/rdisc_url_2.RULE b/src/licensedcode/data/rules/rdisc_url_2.RULE index 39497ae0792..c79ebf705dd 100644 --- a/src/licensedcode/data/rules/rdisc_url_2.RULE +++ b/src/licensedcode/data/rules/rdisc_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: rdisc +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rdisc.html +--- + https://spdx.org/licenses/rdisc.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/rdisc_url_2.yml b/src/licensedcode/data/rules/rdisc_url_2.yml deleted file mode 100644 index dc29cbb69f6..00000000000 --- a/src/licensedcode/data/rules/rdisc_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rdisc -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rdisc.html diff --git a/src/licensedcode/data/rules/redhat_logos.RULE b/src/licensedcode/data/rules/redhat_logos.RULE index 4ceaa153d58..f5a7067e46f 100644 --- a/src/licensedcode/data/rules/redhat_logos.RULE +++ b/src/licensedcode/data/rules/redhat_logos.RULE @@ -1,3 +1,8 @@ +--- +license_expression: red-hat-logos +is_license_notice: yes +--- + The redhat-logos package (the "Package") contains image files which incorporate the CentOS trademark, and CentOS logo (the "Marks"). @@ -32,4 +37,4 @@ 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 PACKAGE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/redhat_logos.yml b/src/licensedcode/data/rules/redhat_logos.yml deleted file mode 100644 index 61534a5bbbf..00000000000 --- a/src/licensedcode/data/rules/redhat_logos.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: red-hat-logos -is_license_notice: yes diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_1.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_1.RULE index a8285e4dadc..f24b15279ee 100644 --- a/src/licensedcode/data/rules/redis-source-available-1.0_1.RULE +++ b/src/licensedcode/data/rules/redis-source-available-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License Redis Source Available License Agreement - see LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_1.yml b/src/licensedcode/data/rules/redis-source-available-1.0_1.yml deleted file mode 100644 index 4722fd636f9..00000000000 --- a/src/licensedcode/data/rules/redis-source-available-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: redis-source-available-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_2.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_2.RULE index 15baa00e11f..01084557a30 100644 --- a/src/licensedcode/data/rules/redis-source-available-1.0_2.RULE +++ b/src/licensedcode/data/rules/redis-source-available-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 +--- + This file is available under the Redis Labs Source Available License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_2.yml b/src/licensedcode/data/rules/redis-source-available-1.0_2.yml deleted file mode 100644 index 8edc33bcd26..00000000000 --- a/src/licensedcode/data/rules/redis-source-available-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-source-available-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_3.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_3.RULE index 45b63002cbf..60ee4e97c34 100644 --- a/src/licensedcode/data/rules/redis-source-available-1.0_3.RULE +++ b/src/licensedcode/data/rules/redis-source-available-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License Redis Source Available License Agreement - see [LICENSE](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_3.yml b/src/licensedcode/data/rules/redis-source-available-1.0_3.yml deleted file mode 100644 index 4722fd636f9..00000000000 --- a/src/licensedcode/data/rules/redis-source-available-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: redis-source-available-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_4.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_4.RULE index f9aa3e9e3e2..9c06a1844c7 100644 --- a/src/licensedcode/data/rules/redis-source-available-1.0_4.RULE +++ b/src/licensedcode/data/rules/redis-source-available-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 +--- + license: Redis Source Available License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_4.yml b/src/licensedcode/data/rules/redis-source-available-1.0_4.yml deleted file mode 100644 index 8edc33bcd26..00000000000 --- a/src/licensedcode/data/rules/redis-source-available-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-source-available-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_5.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_5.RULE index 7ee394fd56c..ca06b18e16e 100644 --- a/src/licensedcode/data/rules/redis-source-available-1.0_5.RULE +++ b/src/licensedcode/data/rules/redis-source-available-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: redis-source-available-1.0 +is_license_reference: yes +relevance: 100 +--- + Redis Source Available License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_5.yml b/src/licensedcode/data/rules/redis-source-available-1.0_5.yml deleted file mode 100644 index 71c9f5a2f1a..00000000000 --- a/src/licensedcode/data/rules/redis-source-available-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-source-available-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_6.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_6.RULE index 81b9c7edfee..c8ed978cbfa 100644 --- a/src/licensedcode/data/rules/redis-source-available-1.0_6.RULE +++ b/src/licensedcode/data/rules/redis-source-available-1.0_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 +--- + ## License diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_6.yml b/src/licensedcode/data/rules/redis-source-available-1.0_6.yml deleted file mode 100644 index 8edc33bcd26..00000000000 --- a/src/licensedcode/data/rules/redis-source-available-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-source-available-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_7.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_7.RULE index fc185312eda..41d74866c1e 100644 --- a/src/licensedcode/data/rules/redis-source-available-1.0_7.RULE +++ b/src/licensedcode/data/rules/redis-source-available-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 +--- + published under Redis Source Available License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_7.yml b/src/licensedcode/data/rules/redis-source-available-1.0_7.yml deleted file mode 100644 index 8edc33bcd26..00000000000 --- a/src/licensedcode/data/rules/redis-source-available-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-source-available-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_8.RULE b/src/licensedcode/data/rules/redis-source-available-1.0_8.RULE index 53a2afef224..56ef3f89f41 100644 --- a/src/licensedcode/data/rules/redis-source-available-1.0_8.RULE +++ b/src/licensedcode/data/rules/redis-source-available-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: redis-source-available-1.0 +is_license_notice: yes +relevance: 100 +--- + This file is available under the Redis Source Available License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/redis-source-available-1.0_8.yml b/src/licensedcode/data/rules/redis-source-available-1.0_8.yml deleted file mode 100644 index 8edc33bcd26..00000000000 --- a/src/licensedcode/data/rules/redis-source-available-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: redis-source-available-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/regexp_1.RULE b/src/licensedcode/data/rules/regexp_1.RULE index 57d24c3d9bc..8fa7cffcca9 100644 --- a/src/licensedcode/data/rules/regexp_1.RULE +++ b/src/licensedcode/data/rules/regexp_1.RULE @@ -1 +1,10 @@ +--- +license_expression: regexp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer License 86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_1.yml b/src/licensedcode/data/rules/regexp_1.yml deleted file mode 100644 index b1ab5b2fa5c..00000000000 --- a/src/licensedcode/data/rules/regexp_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: regexp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/regexp_10.RULE b/src/licensedcode/data/rules/regexp_10.RULE index 0c0a688d378..be996cebeb6 100644 --- a/src/licensedcode/data/rules/regexp_10.RULE +++ b/src/licensedcode/data/rules/regexp_10.RULE @@ -1 +1,9 @@ +--- +license_expression: regexp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Spencer-86 +--- + LICENSE {{Spencer-86}} https://spdx.org/licenses/Spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_10.yml b/src/licensedcode/data/rules/regexp_10.yml deleted file mode 100644 index f582773911d..00000000000 --- a/src/licensedcode/data/rules/regexp_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: regexp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Spencer-86 diff --git a/src/licensedcode/data/rules/regexp_11.RULE b/src/licensedcode/data/rules/regexp_11.RULE index ff7d19ec133..7633d0e0ce6 100644 --- a/src/licensedcode/data/rules/regexp_11.RULE +++ b/src/licensedcode/data/rules/regexp_11.RULE @@ -1 +1,9 @@ +--- +license_expression: regexp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Spencer-86 +--- + {{Spencer-86}} https://spdx.org/licenses/Spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_11.yml b/src/licensedcode/data/rules/regexp_11.yml deleted file mode 100644 index f582773911d..00000000000 --- a/src/licensedcode/data/rules/regexp_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: regexp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Spencer-86 diff --git a/src/licensedcode/data/rules/regexp_2.RULE b/src/licensedcode/data/rules/regexp_2.RULE index 800e514d1d6..ec0459cb30d 100644 --- a/src/licensedcode/data/rules/regexp_2.RULE +++ b/src/licensedcode/data/rules/regexp_2.RULE @@ -1 +1,10 @@ +--- +license_expression: regexp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Spencer License 86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_2.yml b/src/licensedcode/data/rules/regexp_2.yml deleted file mode 100644 index b1ab5b2fa5c..00000000000 --- a/src/licensedcode/data/rules/regexp_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: regexp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/regexp_3.RULE b/src/licensedcode/data/rules/regexp_3.RULE index 0af2b2bbdab..03ce3281ffc 100644 --- a/src/licensedcode/data/rules/regexp_3.RULE +++ b/src/licensedcode/data/rules/regexp_3.RULE @@ -1 +1,10 @@ +--- +license_expression: regexp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer-86 Spencer License 86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_3.yml b/src/licensedcode/data/rules/regexp_3.yml deleted file mode 100644 index b1ab5b2fa5c..00000000000 --- a/src/licensedcode/data/rules/regexp_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: regexp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/regexp_4.RULE b/src/licensedcode/data/rules/regexp_4.RULE index 9e46053731c..fbc03797ab7 100644 --- a/src/licensedcode/data/rules/regexp_4.RULE +++ b/src/licensedcode/data/rules/regexp_4.RULE @@ -1 +1,10 @@ +--- +license_expression: regexp +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Spencer License 86 Spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_4.yml b/src/licensedcode/data/rules/regexp_4.yml deleted file mode 100644 index b1ab5b2fa5c..00000000000 --- a/src/licensedcode/data/rules/regexp_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: regexp -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/regexp_5.RULE b/src/licensedcode/data/rules/regexp_5.RULE index d8a60743f93..344a8b98bd1 100644 --- a/src/licensedcode/data/rules/regexp_5.RULE +++ b/src/licensedcode/data/rules/regexp_5.RULE @@ -1 +1,10 @@ +--- +license_expression: regexp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_5.yml b/src/licensedcode/data/rules/regexp_5.yml deleted file mode 100644 index 2c5d7d34b4c..00000000000 --- a/src/licensedcode/data/rules/regexp_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: regexp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/regexp_6.RULE b/src/licensedcode/data/rules/regexp_6.RULE index 855b2284258..2a2728ca69f 100644 --- a/src/licensedcode/data/rules/regexp_6.RULE +++ b/src/licensedcode/data/rules/regexp_6.RULE @@ -1 +1,10 @@ +--- +license_expression: regexp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Spencer License 86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_6.yml b/src/licensedcode/data/rules/regexp_6.yml deleted file mode 100644 index 2c5d7d34b4c..00000000000 --- a/src/licensedcode/data/rules/regexp_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: regexp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/regexp_7.RULE b/src/licensedcode/data/rules/regexp_7.RULE index a63dae59156..1938397005f 100644 --- a/src/licensedcode/data/rules/regexp_7.RULE +++ b/src/licensedcode/data/rules/regexp_7.RULE @@ -1 +1,10 @@ +--- +license_expression: regexp +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_7.yml b/src/licensedcode/data/rules/regexp_7.yml deleted file mode 100644 index 2c5d7d34b4c..00000000000 --- a/src/licensedcode/data/rules/regexp_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: regexp -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/regexp_8.RULE b/src/licensedcode/data/rules/regexp_8.RULE index f51738049d3..30b564df9b3 100644 --- a/src/licensedcode/data/rules/regexp_8.RULE +++ b/src/licensedcode/data/rules/regexp_8.RULE @@ -1 +1,9 @@ +--- +license_expression: regexp +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Spencer-86 +--- + https://licenses.nuget.org/Spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_8.yml b/src/licensedcode/data/rules/regexp_8.yml deleted file mode 100644 index 542054868a1..00000000000 --- a/src/licensedcode/data/rules/regexp_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: regexp -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Spencer-86 diff --git a/src/licensedcode/data/rules/regexp_9.RULE b/src/licensedcode/data/rules/regexp_9.RULE index da40ba2d970..9246c9d89fe 100644 --- a/src/licensedcode/data/rules/regexp_9.RULE +++ b/src/licensedcode/data/rules/regexp_9.RULE @@ -1 +1,7 @@ +--- +license_expression: regexp +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_9.yml b/src/licensedcode/data/rules/regexp_9.yml deleted file mode 100644 index e9a56ba9c5b..00000000000 --- a/src/licensedcode/data/rules/regexp_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: regexp -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/regexp_url_1.RULE b/src/licensedcode/data/rules/regexp_url_1.RULE index ac56c86c428..0a64b9fbff9 100644 --- a/src/licensedcode/data/rules/regexp_url_1.RULE +++ b/src/licensedcode/data/rules/regexp_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: regexp +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/spencer-86 +--- + https://spdx.org/licenses/spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_url_1.yml b/src/licensedcode/data/rules/regexp_url_1.yml deleted file mode 100644 index 11934d6352a..00000000000 --- a/src/licensedcode/data/rules/regexp_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: regexp -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/spencer-86 diff --git a/src/licensedcode/data/rules/regexp_url_2.RULE b/src/licensedcode/data/rules/regexp_url_2.RULE index c1ffa0c8b15..08eeb1f63f6 100644 --- a/src/licensedcode/data/rules/regexp_url_2.RULE +++ b/src/licensedcode/data/rules/regexp_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: regexp +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/spencer-86.html +--- + https://spdx.org/licenses/spencer-86.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/regexp_url_2.yml b/src/licensedcode/data/rules/regexp_url_2.yml deleted file mode 100644 index 445e4bc3221..00000000000 --- a/src/licensedcode/data/rules/regexp_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: regexp -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/spencer-86.html diff --git a/src/licensedcode/data/rules/reportbug_1.RULE b/src/licensedcode/data/rules/reportbug_1.RULE index 3b21a88b5d2..7d9036667cc 100644 --- a/src/licensedcode/data/rules/reportbug_1.RULE +++ b/src/licensedcode/data/rules/reportbug_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: reportbug +is_license_text: yes +relevance: 100 +minimum_coverage: 60 +--- + License: other # This program is freely distributable per the following license: # diff --git a/src/licensedcode/data/rules/reportbug_1.yml b/src/licensedcode/data/rules/reportbug_1.yml deleted file mode 100644 index 41d228bf425..00000000000 --- a/src/licensedcode/data/rules/reportbug_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: reportbug -is_license_text: yes -relevance: 100 -minimum_coverage: 60 - diff --git a/src/licensedcode/data/rules/repoze_1.RULE b/src/licensedcode/data/rules/repoze_1.RULE index c5713570f45..63047ca65fa 100644 --- a/src/licensedcode/data/rules/repoze_1.RULE +++ b/src/licensedcode/data/rules/repoze_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: repoze +is_license_text: yes +--- + License License @@ -13,4 +18,4 @@ Redistribution and use in source and binary forms, with or without modification, Disclaimer -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_1.yml b/src/licensedcode/data/rules/repoze_1.yml deleted file mode 100644 index c8677d53c60..00000000000 --- a/src/licensedcode/data/rules/repoze_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: repoze -is_license_text: yes diff --git a/src/licensedcode/data/rules/repoze_10.RULE b/src/licensedcode/data/rules/repoze_10.RULE index 5bc7ea220c7..008f98b3579 100644 --- a/src/licensedcode/data/rules/repoze_10.RULE +++ b/src/licensedcode/data/rules/repoze_10.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.repoze.org/LICENSE.txt +--- + Repoze License": "http://www.repoze.org/LICENSE.txt" \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_10.yml b/src/licensedcode/data/rules/repoze_10.yml deleted file mode 100644 index d07fedd185d..00000000000 --- a/src/licensedcode/data/rules/repoze_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.repoze.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/repoze_11.RULE b/src/licensedcode/data/rules/repoze_11.RULE index 9e7dba66385..a4c0b8f5dc5 100644 --- a/src/licensedcode/data/rules/repoze_11.RULE +++ b/src/licensedcode/data/rules/repoze_11.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.repoze.org/LICENSE.txt +--- + BSD-derived (http://www.repoze.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_11.yml b/src/licensedcode/data/rules/repoze_11.yml deleted file mode 100644 index a98a3f3530b..00000000000 --- a/src/licensedcode/data/rules/repoze_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.repoze.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/repoze_12.RULE b/src/licensedcode/data/rules/repoze_12.RULE index 2013f865521..7afe1e14877 100644 --- a/src/licensedcode/data/rules/repoze_12.RULE +++ b/src/licensedcode/data/rules/repoze_12.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.repoze.org/LICENSE.txt +--- + license='BSD-derived (http://www.repoze.org/LICENSE.txt)' \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_12.yml b/src/licensedcode/data/rules/repoze_12.yml deleted file mode 100644 index d07fedd185d..00000000000 --- a/src/licensedcode/data/rules/repoze_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.repoze.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/repoze_13.RULE b/src/licensedcode/data/rules/repoze_13.RULE index 8512c50759e..4908f5ffc9b 100644 --- a/src/licensedcode/data/rules/repoze_13.RULE +++ b/src/licensedcode/data/rules/repoze_13.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.repoze.org/LICENSE.txt +--- + http://www.repoze.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_13.yml b/src/licensedcode/data/rules/repoze_13.yml deleted file mode 100644 index a98a3f3530b..00000000000 --- a/src/licensedcode/data/rules/repoze_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.repoze.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/repoze_14.RULE b/src/licensedcode/data/rules/repoze_14.RULE index ff74553c5f3..c7aa9c61045 100644 --- a/src/licensedcode/data/rules/repoze_14.RULE +++ b/src/licensedcode/data/rules/repoze_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: repoze +is_license_text: yes +relevance: 100 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/repoze_14.yml b/src/licensedcode/data/rules/repoze_14.yml deleted file mode 100644 index 67e01ad215e..00000000000 --- a/src/licensedcode/data/rules/repoze_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: repoze -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/repoze_15.RULE b/src/licensedcode/data/rules/repoze_15.RULE index a0d0af7de5f..a5ba8445787 100644 --- a/src/licensedcode/data/rules/repoze_15.RULE +++ b/src/licensedcode/data/rules/repoze_15.RULE @@ -1 +1,10 @@ +--- +license_expression: repoze +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD 3-Clause Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_15.yml b/src/licensedcode/data/rules/repoze_15.yml deleted file mode 100644 index e0e1229e41f..00000000000 --- a/src/licensedcode/data/rules/repoze_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: repoze -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/repoze_16.RULE b/src/licensedcode/data/rules/repoze_16.RULE index 7bfae834730..323929900db 100644 --- a/src/licensedcode/data/rules/repoze_16.RULE +++ b/src/licensedcode/data/rules/repoze_16.RULE @@ -1 +1,10 @@ +--- +license_expression: repoze +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 3-Clause Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_16.yml b/src/licensedcode/data/rules/repoze_16.yml deleted file mode 100644 index e0e1229e41f..00000000000 --- a/src/licensedcode/data/rules/repoze_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: repoze -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/repoze_17.RULE b/src/licensedcode/data/rules/repoze_17.RULE index 0120f220605..5eef0c73de4 100644 --- a/src/licensedcode/data/rules/repoze_17.RULE +++ b/src/licensedcode/data/rules/repoze_17.RULE @@ -1 +1,10 @@ +--- +license_expression: repoze +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + BSD-3-Clause-Modification BSD 3-Clause Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_17.yml b/src/licensedcode/data/rules/repoze_17.yml deleted file mode 100644 index e0e1229e41f..00000000000 --- a/src/licensedcode/data/rules/repoze_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: repoze -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/repoze_18.RULE b/src/licensedcode/data/rules/repoze_18.RULE index 5db6ebb8354..e743c9fe0ca 100644 --- a/src/licensedcode/data/rules/repoze_18.RULE +++ b/src/licensedcode/data/rules/repoze_18.RULE @@ -1 +1,10 @@ +--- +license_expression: repoze +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_18.yml b/src/licensedcode/data/rules/repoze_18.yml deleted file mode 100644 index 96e1cacd7a8..00000000000 --- a/src/licensedcode/data/rules/repoze_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: repoze -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/repoze_19.RULE b/src/licensedcode/data/rules/repoze_19.RULE index 8cdd6f585d3..1a01fa51c73 100644 --- a/src/licensedcode/data/rules/repoze_19.RULE +++ b/src/licensedcode/data/rules/repoze_19.RULE @@ -1 +1,10 @@ +--- +license_expression: repoze +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_19.yml b/src/licensedcode/data/rules/repoze_19.yml deleted file mode 100644 index 96e1cacd7a8..00000000000 --- a/src/licensedcode/data/rules/repoze_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: repoze -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/repoze_2.RULE b/src/licensedcode/data/rules/repoze_2.RULE index 23546c9dbf8..587b53c5d37 100644 --- a/src/licensedcode/data/rules/repoze_2.RULE +++ b/src/licensedcode/data/rules/repoze_2.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://repoze.org/license.html +--- + http://repoze.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_2.yml b/src/licensedcode/data/rules/repoze_2.yml deleted file mode 100644 index 2520fce381c..00000000000 --- a/src/licensedcode/data/rules/repoze_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://repoze.org/license.html diff --git a/src/licensedcode/data/rules/repoze_20.RULE b/src/licensedcode/data/rules/repoze_20.RULE index 9fd86b2cb34..7630aa0d189 100644 --- a/src/licensedcode/data/rules/repoze_20.RULE +++ b/src/licensedcode/data/rules/repoze_20.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-Modification +--- + https://licenses.nuget.org/BSD-3-Clause-Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_20.yml b/src/licensedcode/data/rules/repoze_20.yml deleted file mode 100644 index ebca7448da3..00000000000 --- a/src/licensedcode/data/rules/repoze_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-Modification diff --git a/src/licensedcode/data/rules/repoze_21.RULE b/src/licensedcode/data/rules/repoze_21.RULE index 361cfcc3a09..30f276675d3 100644 --- a/src/licensedcode/data/rules/repoze_21.RULE +++ b/src/licensedcode/data/rules/repoze_21.RULE @@ -1 +1,7 @@ +--- +license_expression: repoze +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_21.yml b/src/licensedcode/data/rules/repoze_21.yml deleted file mode 100644 index f1f4b59f915..00000000000 --- a/src/licensedcode/data/rules/repoze_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: repoze -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/repoze_22.RULE b/src/licensedcode/data/rules/repoze_22.RULE index 1a96aeac265..80b2810cf3f 100644 --- a/src/licensedcode/data/rules/repoze_22.RULE +++ b/src/licensedcode/data/rules/repoze_22.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-Modification +--- + LICENSE {{BSD-3-Clause-Modification}} https://spdx.org/licenses/BSD-3-Clause-Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_22.yml b/src/licensedcode/data/rules/repoze_22.yml deleted file mode 100644 index eedfcaabc63..00000000000 --- a/src/licensedcode/data/rules/repoze_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-Modification diff --git a/src/licensedcode/data/rules/repoze_23.RULE b/src/licensedcode/data/rules/repoze_23.RULE index da1cb4acc24..72a00afe927 100644 --- a/src/licensedcode/data/rules/repoze_23.RULE +++ b/src/licensedcode/data/rules/repoze_23.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-Modification +--- + {{BSD-3-Clause-Modification}} https://spdx.org/licenses/BSD-3-Clause-Modification \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_23.yml b/src/licensedcode/data/rules/repoze_23.yml deleted file mode 100644 index eedfcaabc63..00000000000 --- a/src/licensedcode/data/rules/repoze_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-Modification diff --git a/src/licensedcode/data/rules/repoze_3.RULE b/src/licensedcode/data/rules/repoze_3.RULE index 01018ef7927..bf12078f3dc 100644 --- a/src/licensedcode/data/rules/repoze_3.RULE +++ b/src/licensedcode/data/rules/repoze_3.RULE @@ -1 +1,9 @@ +--- +license_expression: repoze +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://repoze.org/LICENSE.txt +--- + http://repoze.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_3.yml b/src/licensedcode/data/rules/repoze_3.yml deleted file mode 100644 index 8e42271905a..00000000000 --- a/src/licensedcode/data/rules/repoze_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://repoze.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/repoze_4.RULE b/src/licensedcode/data/rules/repoze_4.RULE index d04bea58674..f40e9adcab5 100644 --- a/src/licensedcode/data/rules/repoze_4.RULE +++ b/src/licensedcode/data/rules/repoze_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: repoze +is_license_text: yes +--- + License A copyright notice accompanies this license document that identifies the copyright holders. @@ -11,4 +16,4 @@ Redistribution and use in source and binary forms, with or without modification, Disclaimer -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_4.yml b/src/licensedcode/data/rules/repoze_4.yml deleted file mode 100644 index c8677d53c60..00000000000 --- a/src/licensedcode/data/rules/repoze_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: repoze -is_license_text: yes diff --git a/src/licensedcode/data/rules/repoze_5.RULE b/src/licensedcode/data/rules/repoze_5.RULE index d6b44c5728b..d75f0a95878 100644 --- a/src/licensedcode/data/rules/repoze_5.RULE +++ b/src/licensedcode/data/rules/repoze_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: repoze +is_license_notice: yes +--- + is licensed under the following license: A copyright notice accompanies this license document that identifies @@ -37,4 +42,4 @@ is licensed under the following license: 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. + SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/repoze_5.yml b/src/licensedcode/data/rules/repoze_5.yml deleted file mode 100644 index 48ab7c23720..00000000000 --- a/src/licensedcode/data/rules/repoze_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: repoze -is_license_notice: yes diff --git a/src/licensedcode/data/rules/repoze_6.RULE b/src/licensedcode/data/rules/repoze_6.RULE index 5a65ec1cb9a..abae68ad812 100644 --- a/src/licensedcode/data/rules/repoze_6.RULE +++ b/src/licensedcode/data/rules/repoze_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: repoze +is_license_text: yes +relevance: 100 +--- + A copyright notice accompanies this license document that identifies the copyright holders. diff --git a/src/licensedcode/data/rules/repoze_6.yml b/src/licensedcode/data/rules/repoze_6.yml deleted file mode 100644 index 67e01ad215e..00000000000 --- a/src/licensedcode/data/rules/repoze_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: repoze -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/repoze_7.RULE b/src/licensedcode/data/rules/repoze_7.RULE index 9a20a002ec9..4cb744bb5eb 100644 --- a/src/licensedcode/data/rules/repoze_7.RULE +++ b/src/licensedcode/data/rules/repoze_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: repoze +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.repoze.org/LICENSE.txt +--- + # This software is subject to the provisions of the BSD-like license at # http://www.repoze.org/LICENSE.txt. A copy of the license should accompany # this distribution. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL diff --git a/src/licensedcode/data/rules/repoze_7.yml b/src/licensedcode/data/rules/repoze_7.yml deleted file mode 100644 index da8b71e5730..00000000000 --- a/src/licensedcode/data/rules/repoze_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: repoze -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.repoze.org/LICENSE.txt diff --git a/src/licensedcode/data/rules/repoze_8.RULE b/src/licensedcode/data/rules/repoze_8.RULE index 810660f358b..d49db02c937 100644 --- a/src/licensedcode/data/rules/repoze_8.RULE +++ b/src/licensedcode/data/rules/repoze_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: repoze +is_license_text: yes +relevance: 100 +--- + License License diff --git a/src/licensedcode/data/rules/repoze_8.yml b/src/licensedcode/data/rules/repoze_8.yml deleted file mode 100644 index 67e01ad215e..00000000000 --- a/src/licensedcode/data/rules/repoze_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: repoze -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/repoze_9.RULE b/src/licensedcode/data/rules/repoze_9.RULE index e9c82bb735d..b709088b72a 100644 --- a/src/licensedcode/data/rules/repoze_9.RULE +++ b/src/licensedcode/data/rules/repoze_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: repoze +is_license_text: yes +relevance: 100 +--- + License A copyright notice accompanies this license document that identifies diff --git a/src/licensedcode/data/rules/repoze_9.yml b/src/licensedcode/data/rules/repoze_9.yml deleted file mode 100644 index 67e01ad215e..00000000000 --- a/src/licensedcode/data/rules/repoze_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: repoze -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ricebsd_1.RULE b/src/licensedcode/data/rules/ricebsd_1.RULE index 2e6b295d948..3dd1d772393 100644 --- a/src/licensedcode/data/rules/ricebsd_1.RULE +++ b/src/licensedcode/data/rules/ricebsd_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ricebsd +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 diff --git a/src/licensedcode/data/rules/ricebsd_1.yml b/src/licensedcode/data/rules/ricebsd_1.yml deleted file mode 100644 index f97afe334d9..00000000000 --- a/src/licensedcode/data/rules/ricebsd_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ricebsd -is_license_text: yes diff --git a/src/licensedcode/data/rules/ricebsd_2.RULE b/src/licensedcode/data/rules/ricebsd_2.RULE index 041bea9cdba..15ac09a7737 100644 --- a/src/licensedcode/data/rules/ricebsd_2.RULE +++ b/src/licensedcode/data/rules/ricebsd_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ricebsd +is_license_reference: yes +--- + {{Rice}} BSD Software License Permits source and binary redistribution of the software and for both non-commercial and commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricebsd_2.yml b/src/licensedcode/data/rules/ricebsd_2.yml deleted file mode 100644 index 46f77847f2a..00000000000 --- a/src/licensedcode/data/rules/ricebsd_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ricebsd -is_license_reference: yes diff --git a/src/licensedcode/data/rules/ricebsd_3.RULE b/src/licensedcode/data/rules/ricebsd_3.RULE index dadeb3fe8d5..017162cce37 100644 --- a/src/licensedcode/data/rules/ricebsd_3.RULE +++ b/src/licensedcode/data/rules/ricebsd_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ricebsd +is_license_reference: yes +relevance: 100 +--- + {{Rice}} BSD Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricebsd_3.yml b/src/licensedcode/data/rules/ricebsd_3.yml deleted file mode 100644 index 50cfac174c2..00000000000 --- a/src/licensedcode/data/rules/ricebsd_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ricebsd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ricoh-1.0.RULE b/src/licensedcode/data/rules/ricoh-1.0.RULE index a9aed7d603b..758091b30b9 100644 --- a/src/licensedcode/data/rules/ricoh-1.0.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ricohpl.php +--- + http://opensource.org/licenses/ricohpl.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0.SPDX.RULE b/src/licensedcode/data/rules/ricoh-1.0.SPDX.RULE index aa5057afb3a..105c7ff9878 100644 --- a/src/licensedcode/data/rules/ricoh-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: ricoh-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1995-1999 +ignorable_authors: + - Ricoh Silicon Valley, Inc. +ignorable_urls: + - http://www.risource.org/RPL +--- + Ricoh Source Code Public License Version 1.0 diff --git a/src/licensedcode/data/rules/ricoh-1.0.SPDX.yml b/src/licensedcode/data/rules/ricoh-1.0.SPDX.yml deleted file mode 100644 index 634fb535402..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: ricoh-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1995-1999 -ignorable_authors: - - Ricoh Silicon Valley, Inc. -ignorable_urls: - - http://www.risource.org/RPL diff --git a/src/licensedcode/data/rules/ricoh-1.0.yml b/src/licensedcode/data/rules/ricoh-1.0.yml deleted file mode 100644 index 1246cb0ecdb..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ricohpl.php diff --git a/src/licensedcode/data/rules/ricoh-1.0_1.RULE b/src/licensedcode/data/rules/ricoh-1.0_1.RULE index 407edc2a713..020c3d622a6 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_1.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +--- + Ricoh Source Code Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_1.yml b/src/licensedcode/data/rules/ricoh-1.0_1.yml deleted file mode 100644 index 4295259b48c..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ricoh-1.0_10.RULE b/src/licensedcode/data/rules/ricoh-1.0_10.RULE index b14a54f0a2a..60c2a30d83b 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_10.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/RSCPL +--- + https://licenses.nuget.org/RSCPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_10.yml b/src/licensedcode/data/rules/ricoh-1.0_10.yml deleted file mode 100644 index 002afa90710..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/RSCPL diff --git a/src/licensedcode/data/rules/ricoh-1.0_11.RULE b/src/licensedcode/data/rules/ricoh-1.0_11.RULE index 7f0464e3673..5e00f6d410f 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_11.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/RSCPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_11.yml b/src/licensedcode/data/rules/ricoh-1.0_11.yml deleted file mode 100644 index 4295259b48c..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ricoh-1.0_12.RULE b/src/licensedcode/data/rules/ricoh-1.0_12.RULE index 96175cb1d76..0afa963a5f3 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_12.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RSCPL +--- + {{RSCPL}} https://spdx.org/licenses/RSCPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_12.yml b/src/licensedcode/data/rules/ricoh-1.0_12.yml deleted file mode 100644 index 26c058322c5..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RSCPL diff --git a/src/licensedcode/data/rules/ricoh-1.0_13.RULE b/src/licensedcode/data/rules/ricoh-1.0_13.RULE index 0a5012f2445..2764dcba4de 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_13.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RSCPL +--- + LICENSE {{RSCPL}} https://spdx.org/licenses/RSCPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_13.yml b/src/licensedcode/data/rules/ricoh-1.0_13.yml deleted file mode 100644 index 26c058322c5..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RSCPL diff --git a/src/licensedcode/data/rules/ricoh-1.0_2.RULE b/src/licensedcode/data/rules/ricoh-1.0_2.RULE index 7e4909633d1..ef27a90decf 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_2.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_2.RULE @@ -1,4 +1,10 @@ -"The contents of this file are subject to the Ricoh Source Code Public License Version 1.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.risource.org/RPL +--- +license_expression: ricoh-1.0 +is_license_notice: yes +ignorable_urls: + - http://www.risource.org/RPL +--- -Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. +"The contents of this file are subject to the Ricoh Source Code Public License Version 1.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.risource.org/RPL +Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_2.yml b/src/licensedcode/data/rules/ricoh-1.0_2.yml deleted file mode 100644 index 3da8cdc4a2f..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ricoh-1.0 -is_license_notice: yes -ignorable_urls: - - http://www.risource.org/RPL diff --git a/src/licensedcode/data/rules/ricoh-1.0_3.RULE b/src/licensedcode/data/rules/ricoh-1.0_3.RULE index dd518b82e22..6ecf1c4f782 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_3.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ricohpl.php +--- + http://www.opensource.org/licenses/ricohpl.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_3.yml b/src/licensedcode/data/rules/ricoh-1.0_3.yml deleted file mode 100644 index d4c3d709f19..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ricohpl.php diff --git a/src/licensedcode/data/rules/ricoh-1.0_4.RULE b/src/licensedcode/data/rules/ricoh-1.0_4.RULE index 66f0d28425a..3a97450a1a0 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_4.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Ricoh Source Code Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_4.yml b/src/licensedcode/data/rules/ricoh-1.0_4.yml deleted file mode 100644 index 05bda57c3e1..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ricoh-1.0_5.RULE b/src/licensedcode/data/rules/ricoh-1.0_5.RULE index 034c8c104cb..ab05e09adc3 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_5.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + RSCPL Ricoh Source Code Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_5.yml b/src/licensedcode/data/rules/ricoh-1.0_5.yml deleted file mode 100644 index 05bda57c3e1..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ricoh-1.0_6.RULE b/src/licensedcode/data/rules/ricoh-1.0_6.RULE index f99310671c5..4035f233bba 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_6.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Ricoh Source Code Public License RSCPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_6.yml b/src/licensedcode/data/rules/ricoh-1.0_6.yml deleted file mode 100644 index 05bda57c3e1..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ricoh-1.0_7.RULE b/src/licensedcode/data/rules/ricoh-1.0_7.RULE index f53304ea5ae..4d44b1f2af3 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_7.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ricoh-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: RSCPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_7.yml b/src/licensedcode/data/rules/ricoh-1.0_7.yml deleted file mode 100644 index e8c05c774e0..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ricoh-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ricoh-1.0_8.RULE b/src/licensedcode/data/rules/ricoh-1.0_8.RULE index 7c966ab78cc..a44755bbbe2 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_8.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ricoh-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Ricoh Source Code Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_8.yml b/src/licensedcode/data/rules/ricoh-1.0_8.yml deleted file mode 100644 index e8c05c774e0..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ricoh-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ricoh-1.0_9.RULE b/src/licensedcode/data/rules/ricoh-1.0_9.RULE index b5bbb5ed542..cbd5541dd80 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_9.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: ricoh-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: RSCPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_9.yml b/src/licensedcode/data/rules/ricoh-1.0_9.yml deleted file mode 100644 index e8c05c774e0..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ricoh-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ricoh-1.0_url_1.RULE b/src/licensedcode/data/rules/ricoh-1.0_url_1.RULE index 9521f95de07..b8803c656c0 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rscpl +--- + https://spdx.org/licenses/rscpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_url_1.yml b/src/licensedcode/data/rules/ricoh-1.0_url_1.yml deleted file mode 100644 index 59a7d5197d4..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rscpl diff --git a/src/licensedcode/data/rules/ricoh-1.0_url_2.RULE b/src/licensedcode/data/rules/ricoh-1.0_url_2.RULE index 89244649152..ccf96cd0988 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rscpl.html +--- + https://spdx.org/licenses/rscpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_url_2.yml b/src/licensedcode/data/rules/ricoh-1.0_url_2.yml deleted file mode 100644 index 5db1295b0be..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rscpl.html diff --git a/src/licensedcode/data/rules/ricoh-1.0_url_glc_232.RULE b/src/licensedcode/data/rules/ricoh-1.0_url_glc_232.RULE index 4bede75daba..90af2c13805 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_url_glc_232.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_url_glc_232.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/rscpl +--- + http://www.opensource.org/licenses/rscpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_url_glc_232.yml b/src/licensedcode/data/rules/ricoh-1.0_url_glc_232.yml deleted file mode 100644 index 9b0f426e7ac..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_url_glc_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/rscpl diff --git a/src/licensedcode/data/rules/ricoh-1.0_url_glc_233.RULE b/src/licensedcode/data/rules/ricoh-1.0_url_glc_233.RULE index d1d7fa7a88c..8d9fa985ba6 100644 --- a/src/licensedcode/data/rules/ricoh-1.0_url_glc_233.RULE +++ b/src/licensedcode/data/rules/ricoh-1.0_url_glc_233.RULE @@ -1 +1,9 @@ +--- +license_expression: ricoh-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/rscpl +--- + https://www.opensource.org/licenses/rscpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/ricoh-1.0_url_glc_233.yml b/src/licensedcode/data/rules/ricoh-1.0_url_glc_233.yml deleted file mode 100644 index 52c69314dcc..00000000000 --- a/src/licensedcode/data/rules/ricoh-1.0_url_glc_233.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ricoh-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/rscpl diff --git a/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_1.RULE index 138ec359f34..41305f55734 100644 --- a/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: riverbank-sip OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - LICENSE-GPL2 + - LICENSE-GPL3 +--- + # This copy of SIP is licensed for use under the terms of the SIP License # Agreement. See the file LICENSE for more details. # diff --git a/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_1.yml deleted file mode 100644 index bbc5b30569c..00000000000 --- a/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: riverbank-sip OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - LICENSE-GPL2 - - LICENSE-GPL3 diff --git a/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_2.RULE b/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_2.RULE index 69b1f4446f1..76ac4af7ad3 100644 --- a/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_2.RULE @@ -1 +1,11 @@ +--- +license_expression: riverbank-sip OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - LICENSE-GPL2 + - LICENSE-GPL3 +--- + # This copy of SIP is licensed for use under the terms of the SIP License# Agreement. See the file LICENSE for more details.## This copy of SIP may also used under the terms of the GNU General Public# License v2 or v3 as published by the Free Software Foundation which can be# found in the files LICENSE-GPL2 and LICENSE-GPL3 included in this package.## SIP is supplied WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_2.yml b/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_2.yml deleted file mode 100644 index bbc5b30569c..00000000000 --- a/src/licensedcode/data/rules/riverbank-sip_or_gpl-2.0_or_gpl-3.0_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: riverbank-sip OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - LICENSE-GPL2 - - LICENSE-GPL3 diff --git a/src/licensedcode/data/rules/rogue-wave.RULE b/src/licensedcode/data/rules/rogue-wave.RULE index cb2eed801f3..3de26859282 100644 --- a/src/licensedcode/data/rules/rogue-wave.RULE +++ b/src/licensedcode/data/rules/rogue-wave.RULE @@ -1 +1,9 @@ +--- +license_expression: rogue-wave +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.roguewave.com/products.aspx +--- + http://www.roguewave.com/products.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/rogue-wave.yml b/src/licensedcode/data/rules/rogue-wave.yml deleted file mode 100644 index be4febb8afb..00000000000 --- a/src/licensedcode/data/rules/rogue-wave.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rogue-wave -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.roguewave.com/products.aspx diff --git a/src/licensedcode/data/rules/rpl-1.1_1.RULE b/src/licensedcode/data/rules/rpl-1.1_1.RULE index 541d3274012..a32ab68cfbf 100644 --- a/src/licensedcode/data/rules/rpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Reciprocal Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_1.yml b/src/licensedcode/data/rules/rpl-1.1_1.yml deleted file mode 100644 index 199b5c29e1f..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.1_10.RULE b/src/licensedcode/data/rules/rpl-1.1_10.RULE index 1c999781e73..57db086b229 100644 --- a/src/licensedcode/data/rules/rpl-1.1_10.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RPL-1.1 +--- + {{RPL-1.1}} https://spdx.org/licenses/RPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_10.yml b/src/licensedcode/data/rules/rpl-1.1_10.yml deleted file mode 100644 index c6bf3a537a0..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RPL-1.1 diff --git a/src/licensedcode/data/rules/rpl-1.1_11.RULE b/src/licensedcode/data/rules/rpl-1.1_11.RULE index 1e8b98392a1..1e69bb86409 100644 --- a/src/licensedcode/data/rules/rpl-1.1_11.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RPL-1.1 +--- + LICENSE {{RPL-1.1}} https://spdx.org/licenses/RPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_11.yml b/src/licensedcode/data/rules/rpl-1.1_11.yml deleted file mode 100644 index c6bf3a537a0..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RPL-1.1 diff --git a/src/licensedcode/data/rules/rpl-1.1_2.RULE b/src/licensedcode/data/rules/rpl-1.1_2.RULE index 51ce58049f6..774848e4e2e 100644 --- a/src/licensedcode/data/rules/rpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Reciprocal Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_2.yml b/src/licensedcode/data/rules/rpl-1.1_2.yml deleted file mode 100644 index 199b5c29e1f..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.1_3.RULE b/src/licensedcode/data/rules/rpl-1.1_3.RULE index 9494ad165fc..976ba80f077 100644 --- a/src/licensedcode/data/rules/rpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + RPL-1.1 Reciprocal Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_3.yml b/src/licensedcode/data/rules/rpl-1.1_3.yml deleted file mode 100644 index 199b5c29e1f..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.1_4.RULE b/src/licensedcode/data/rules/rpl-1.1_4.RULE index a8aa72801dc..6f4a80d02ef 100644 --- a/src/licensedcode/data/rules/rpl-1.1_4.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Reciprocal Public License 1.1 RPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_4.yml b/src/licensedcode/data/rules/rpl-1.1_4.yml deleted file mode 100644 index 199b5c29e1f..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.1_5.RULE b/src/licensedcode/data/rules/rpl-1.1_5.RULE index ae12a5f18a6..fe892df91bb 100644 --- a/src/licensedcode/data/rules/rpl-1.1_5.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: RPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_5.yml b/src/licensedcode/data/rules/rpl-1.1_5.yml deleted file mode 100644 index ccd1b21f711..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.1_6.RULE b/src/licensedcode/data/rules/rpl-1.1_6.RULE index b114af1a86e..56d2dbb049d 100644 --- a/src/licensedcode/data/rules/rpl-1.1_6.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Reciprocal Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_6.yml b/src/licensedcode/data/rules/rpl-1.1_6.yml deleted file mode 100644 index ccd1b21f711..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.1_7.RULE b/src/licensedcode/data/rules/rpl-1.1_7.RULE index 332939c8feb..390f0c0e535 100644 --- a/src/licensedcode/data/rules/rpl-1.1_7.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: RPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_7.yml b/src/licensedcode/data/rules/rpl-1.1_7.yml deleted file mode 100644 index ccd1b21f711..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.1_8.RULE b/src/licensedcode/data/rules/rpl-1.1_8.RULE index 873a8984e70..08593248028 100644 --- a/src/licensedcode/data/rules/rpl-1.1_8.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/RPL-1.1 +--- + https://licenses.nuget.org/RPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_8.yml b/src/licensedcode/data/rules/rpl-1.1_8.yml deleted file mode 100644 index c2f9a26f355..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/RPL-1.1 diff --git a/src/licensedcode/data/rules/rpl-1.1_9.RULE b/src/licensedcode/data/rules/rpl-1.1_9.RULE index 399a79f35dc..852f2eacba4 100644 --- a/src/licensedcode/data/rules/rpl-1.1_9.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/RPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_9.yml b/src/licensedcode/data/rules/rpl-1.1_9.yml deleted file mode 100644 index 87e342523db..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/rpl-1.1_url_1.RULE b/src/licensedcode/data/rules/rpl-1.1_url_1.RULE index 8c756d487a4..531a548689d 100644 --- a/src/licensedcode/data/rules/rpl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rpl-1.1 +--- + https://spdx.org/licenses/rpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_url_1.yml b/src/licensedcode/data/rules/rpl-1.1_url_1.yml deleted file mode 100644 index 81cf5004879..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rpl-1.1 diff --git a/src/licensedcode/data/rules/rpl-1.1_url_2.RULE b/src/licensedcode/data/rules/rpl-1.1_url_2.RULE index 27a3bcb228d..19802c999ec 100644 --- a/src/licensedcode/data/rules/rpl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rpl-1.1.html +--- + https://spdx.org/licenses/rpl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_url_2.yml b/src/licensedcode/data/rules/rpl-1.1_url_2.yml deleted file mode 100644 index 2c59f7c7136..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rpl-1.1.html diff --git a/src/licensedcode/data/rules/rpl-1.1_url_glc_106.RULE b/src/licensedcode/data/rules/rpl-1.1_url_glc_106.RULE index cd235967945..4eaa95b8e2e 100644 --- a/src/licensedcode/data/rules/rpl-1.1_url_glc_106.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_url_glc_106.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/rpl-1.1 +--- + http://opensource.org/licenses/rpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_url_glc_106.yml b/src/licensedcode/data/rules/rpl-1.1_url_glc_106.yml deleted file mode 100644 index 5458251ff7a..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_url_glc_106.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/rpl-1.1 diff --git a/src/licensedcode/data/rules/rpl-1.1_url_glc_107.RULE b/src/licensedcode/data/rules/rpl-1.1_url_glc_107.RULE index 475578093f4..c6e2a80c192 100644 --- a/src/licensedcode/data/rules/rpl-1.1_url_glc_107.RULE +++ b/src/licensedcode/data/rules/rpl-1.1_url_glc_107.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/rpl-1.1 +--- + https://opensource.org/licenses/rpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.1_url_glc_107.yml b/src/licensedcode/data/rules/rpl-1.1_url_glc_107.yml deleted file mode 100644 index 60ab81e7a17..00000000000 --- a/src/licensedcode/data/rules/rpl-1.1_url_glc_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/rpl-1.1 diff --git a/src/licensedcode/data/rules/rpl-1.5.RULE b/src/licensedcode/data/rules/rpl-1.5.RULE index a4fd9b17fef..b50f736c690 100644 --- a/src/licensedcode/data/rules/rpl-1.5.RULE +++ b/src/licensedcode/data/rules/rpl-1.5.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/rpl1.5.txt +--- + http://www.opensource.org/licenses/rpl1.5.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5.SPDX.RULE b/src/licensedcode/data/rules/rpl-1.5.SPDX.RULE index 328e87b7009..952b450d444 100644 --- a/src/licensedcode/data/rules/rpl-1.5.SPDX.RULE +++ b/src/licensedcode/data/rules/rpl-1.5.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: rpl-1.5 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2001-2007 Technical Pursuit Inc. +ignorable_holders: + - Technical Pursuit Inc. +--- + Reciprocal Public License 1.5 (RPL1.5) Reciprocal Public License (RPL) diff --git a/src/licensedcode/data/rules/rpl-1.5.SPDX.yml b/src/licensedcode/data/rules/rpl-1.5.SPDX.yml deleted file mode 100644 index b0739c30b27..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: rpl-1.5 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2001-2007 Technical Pursuit Inc. -ignorable_holders: - - Technical Pursuit Inc. diff --git a/src/licensedcode/data/rules/rpl-1.5.yml b/src/licensedcode/data/rules/rpl-1.5.yml deleted file mode 100644 index 456a489ab66..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/rpl1.5.txt diff --git a/src/licensedcode/data/rules/rpl-1.5_1.RULE b/src/licensedcode/data/rules/rpl-1.5_1.RULE index cb73c888a58..5299b4a6287 100644 --- a/src/licensedcode/data/rules/rpl-1.5_1.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: rpl-1.5 +is_license_notice: yes +--- + Unless explicitly acquired and licensed from Licensor under another license, the contents of this file are subject to the Reciprocal Public License ("RPL") Version 1.5, or subsequent versions as allowed by the RPL, and You may not copy or use this file in either source code or executable form, except in compliance with the terms and conditions of the RPL. All software distributed under the RPL is provided strictly on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, AND LICENSOR HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT, OR NON-INFRINGEMENT. See the RPL for specific language governing rights and limitations under the RPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_1.yml b/src/licensedcode/data/rules/rpl-1.5_1.yml deleted file mode 100644 index 0eb360e26e3..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: rpl-1.5 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/rpl-1.5_10.RULE b/src/licensedcode/data/rules/rpl-1.5_10.RULE index 02f452dd2c4..f9f05238592 100644 --- a/src/licensedcode/data/rules/rpl-1.5_10.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_10.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: RPL-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_10.yml b/src/licensedcode/data/rules/rpl-1.5_10.yml deleted file mode 100644 index 43ccef5111d..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.5_11.RULE b/src/licensedcode/data/rules/rpl-1.5_11.RULE index dc95f9b4d7f..f2ef4b37014 100644 --- a/src/licensedcode/data/rules/rpl-1.5_11.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_11.RULE @@ -1 +1,7 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/Reciprocal_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_11.yml b/src/licensedcode/data/rules/rpl-1.5_11.yml deleted file mode 100644 index a5bd43b74de..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/rpl-1.5_12.RULE b/src/licensedcode/data/rules/rpl-1.5_12.RULE index bbc0d57b785..642dbe4b326 100644 --- a/src/licensedcode/data/rules/rpl-1.5_12.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_12.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/RPL-1.5 +--- + https://licenses.nuget.org/RPL-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_12.yml b/src/licensedcode/data/rules/rpl-1.5_12.yml deleted file mode 100644 index 549338a9c3b..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/RPL-1.5 diff --git a/src/licensedcode/data/rules/rpl-1.5_13.RULE b/src/licensedcode/data/rules/rpl-1.5_13.RULE index c28faa79df7..53dfc0a66ce 100644 --- a/src/licensedcode/data/rules/rpl-1.5_13.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_13.RULE @@ -1 +1,7 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/RPL-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_13.yml b/src/licensedcode/data/rules/rpl-1.5_13.yml deleted file mode 100644 index 512b084e675..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/rpl-1.5_14.RULE b/src/licensedcode/data/rules/rpl-1.5_14.RULE index e1d1425bcb6..f91d9ccdd04 100644 --- a/src/licensedcode/data/rules/rpl-1.5_14.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_14.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RPL-1.5 +--- + LICENSE {{RPL-1.5}} https://spdx.org/licenses/RPL-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_14.yml b/src/licensedcode/data/rules/rpl-1.5_14.yml deleted file mode 100644 index 9bcc7204fdc..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RPL-1.5 diff --git a/src/licensedcode/data/rules/rpl-1.5_15.RULE b/src/licensedcode/data/rules/rpl-1.5_15.RULE index 6227db54457..0886c0ee6c8 100644 --- a/src/licensedcode/data/rules/rpl-1.5_15.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_15.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RPL-1.5 +--- + {{RPL-1.5}} https://spdx.org/licenses/RPL-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_15.yml b/src/licensedcode/data/rules/rpl-1.5_15.yml deleted file mode 100644 index 9bcc7204fdc..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RPL-1.5 diff --git a/src/licensedcode/data/rules/rpl-1.5_2.RULE b/src/licensedcode/data/rules/rpl-1.5_2.RULE index 34e9c838be2..3479997f594 100644 --- a/src/licensedcode/data/rules/rpl-1.5_2.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + // Licensed under the Reciprocal Public License 1.5 (RPL1.5) // See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_2.yml b/src/licensedcode/data/rules/rpl-1.5_2.yml deleted file mode 100644 index e9c34d83d35..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/rpl-1.5_3.RULE b/src/licensedcode/data/rules/rpl-1.5_3.RULE index 2fb5b3f7e37..1c31bd647c6 100644 --- a/src/licensedcode/data/rules/rpl-1.5_3.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_3.RULE @@ -1 +1,7 @@ -// Licensed under the Reciprocal Public License 1.5 (RPL1.5) +--- +license_expression: rpl-1.5 +is_license_notice: yes +relevance: 100 +--- + +// Licensed under the Reciprocal Public License 1.5 (RPL1.5) \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_3.yml b/src/licensedcode/data/rules/rpl-1.5_3.yml deleted file mode 100644 index 9486b5a12db..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rpl-1.5 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/rpl-1.5_4.RULE b/src/licensedcode/data/rules/rpl-1.5_4.RULE index 44342d3f8d3..b2ee07461cc 100644 --- a/src/licensedcode/data/rules/rpl-1.5_4.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_4.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Reciprocal Public License 1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_4.yml b/src/licensedcode/data/rules/rpl-1.5_4.yml deleted file mode 100644 index a7e649d9419..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.5_5.RULE b/src/licensedcode/data/rules/rpl-1.5_5.RULE index 1b815614c04..9310d3bde6d 100644 --- a/src/licensedcode/data/rules/rpl-1.5_5.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_5.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Reciprocal Public License 1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_5.yml b/src/licensedcode/data/rules/rpl-1.5_5.yml deleted file mode 100644 index a7e649d9419..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.5_6.RULE b/src/licensedcode/data/rules/rpl-1.5_6.RULE index 9ca1a0335a4..2656e946abd 100644 --- a/src/licensedcode/data/rules/rpl-1.5_6.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_6.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + RPL-1.5 Reciprocal Public License 1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_6.yml b/src/licensedcode/data/rules/rpl-1.5_6.yml deleted file mode 100644 index a7e649d9419..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.5_7.RULE b/src/licensedcode/data/rules/rpl-1.5_7.RULE index 6832723437a..db825cce807 100644 --- a/src/licensedcode/data/rules/rpl-1.5_7.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_7.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Reciprocal Public License 1.5 RPL-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_7.yml b/src/licensedcode/data/rules/rpl-1.5_7.yml deleted file mode 100644 index a7e649d9419..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.5_8.RULE b/src/licensedcode/data/rules/rpl-1.5_8.RULE index c9dfe5fb436..382c71d51a2 100644 --- a/src/licensedcode/data/rules/rpl-1.5_8.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_8.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: RPL-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_8.yml b/src/licensedcode/data/rules/rpl-1.5_8.yml deleted file mode 100644 index 43ccef5111d..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.5_9.RULE b/src/licensedcode/data/rules/rpl-1.5_9.RULE index a838b20e49b..c6b357bd0e4 100644 --- a/src/licensedcode/data/rules/rpl-1.5_9.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_9.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Reciprocal Public License 1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_9.yml b/src/licensedcode/data/rules/rpl-1.5_9.yml deleted file mode 100644 index 43ccef5111d..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpl-1.5_url_1.RULE b/src/licensedcode/data/rules/rpl-1.5_url_1.RULE index d0ddc1aabd4..d124ed53637 100644 --- a/src/licensedcode/data/rules/rpl-1.5_url_1.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rpl-1.5 +--- + https://spdx.org/licenses/rpl-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_url_1.yml b/src/licensedcode/data/rules/rpl-1.5_url_1.yml deleted file mode 100644 index 47828815371..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rpl-1.5 diff --git a/src/licensedcode/data/rules/rpl-1.5_url_2.RULE b/src/licensedcode/data/rules/rpl-1.5_url_2.RULE index 87d4a02c4c5..b09db74249c 100644 --- a/src/licensedcode/data/rules/rpl-1.5_url_2.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rpl-1.5.html +--- + https://spdx.org/licenses/rpl-1.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_url_2.yml b/src/licensedcode/data/rules/rpl-1.5_url_2.yml deleted file mode 100644 index 8d85397669a..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rpl-1.5.html diff --git a/src/licensedcode/data/rules/rpl-1.5_url_glc_228.RULE b/src/licensedcode/data/rules/rpl-1.5_url_glc_228.RULE index 1ce9482b288..e441867f231 100644 --- a/src/licensedcode/data/rules/rpl-1.5_url_glc_228.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_url_glc_228.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/rpl-1.5 +--- + http://www.opensource.org/licenses/rpl-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_url_glc_228.yml b/src/licensedcode/data/rules/rpl-1.5_url_glc_228.yml deleted file mode 100644 index 78ac6b5d9f9..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_url_glc_228.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/rpl-1.5 diff --git a/src/licensedcode/data/rules/rpl-1.5_url_glc_229.RULE b/src/licensedcode/data/rules/rpl-1.5_url_glc_229.RULE index 7e7a4b6b0b7..d87d759dcca 100644 --- a/src/licensedcode/data/rules/rpl-1.5_url_glc_229.RULE +++ b/src/licensedcode/data/rules/rpl-1.5_url_glc_229.RULE @@ -1 +1,9 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/rpl-1.5 +--- + https://www.opensource.org/licenses/rpl-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpl-1.5_url_glc_229.yml b/src/licensedcode/data/rules/rpl-1.5_url_glc_229.yml deleted file mode 100644 index f267a112e12..00000000000 --- a/src/licensedcode/data/rules/rpl-1.5_url_glc_229.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/rpl-1.5 diff --git a/src/licensedcode/data/rules/rpsl-1.0.RULE b/src/licensedcode/data/rules/rpsl-1.0.RULE index 625e492ee0e..c4e007876c8 100644 --- a/src/licensedcode/data/rules/rpsl-1.0.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0.RULE @@ -1 +1,7 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +--- + RealNetworks Public Source License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0.SPDX.RULE b/src/licensedcode/data/rules/rpsl-1.0.SPDX.RULE index 2f64c33e3a0..ab35cfbc0ee 100644 --- a/src/licensedcode/data/rules/rpsl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0.SPDX.RULE @@ -1,3 +1,21 @@ +--- +license_expression: rpsl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright r 1995-2002 RealNetworks, Inc. and/or its licensors + - Copyright r RealNetworks, Inc., 1995-2002 +ignorable_holders: + - r RealNetworks, Inc. + - r RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) diff --git a/src/licensedcode/data/rules/rpsl-1.0.SPDX.yml b/src/licensedcode/data/rules/rpsl-1.0.SPDX.yml deleted file mode 100644 index 2585a73464e..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0.SPDX.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: rpsl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright r 1995-2002 RealNetworks, Inc. and/or its licensors - - Copyright r RealNetworks, Inc., 1995-2002 -ignorable_holders: - - r RealNetworks, Inc. - - r RealNetworks, Inc. and/or its licensors -ignorable_urls: - - http://www.realnetworks.com/info/helixlogo.html - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0.yml b/src/licensedcode/data/rules/rpsl-1.0.yml deleted file mode 100644 index 214163140fc..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/rpsl-1.0_1.RULE b/src/licensedcode/data/rules/rpsl-1.0_1.RULE index 9a41f710d26..e437bd3a8cb 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_1.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: rpsl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors + - Copyright (c) RealNetworks, Inc., 1995-2002 +ignorable_holders: + - RealNetworks, Inc. + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 diff --git a/src/licensedcode/data/rules/rpsl-1.0_1.yml b/src/licensedcode/data/rules/rpsl-1.0_1.yml deleted file mode 100644 index 6806cee34f5..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: rpsl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors - - Copyright (c) RealNetworks, Inc., 1995-2002 -ignorable_holders: - - RealNetworks, Inc. - - RealNetworks, Inc. and/or its licensors -ignorable_urls: - - http://www.realnetworks.com/info/helixlogo.html - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_10.RULE b/src/licensedcode/data/rules/rpsl-1.0_10.RULE index ccb9a4676ae..e9fbf084091 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_10.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_10.RULE @@ -1,3 +1,19 @@ +--- +license_expression: rpsl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors + - Copyright (c) RealNetworks, Inc., 1995-2002 +ignorable_holders: + - RealNetworks, Inc. + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) diff --git a/src/licensedcode/data/rules/rpsl-1.0_10.yml b/src/licensedcode/data/rules/rpsl-1.0_10.yml deleted file mode 100644 index 6806cee34f5..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_10.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: rpsl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors - - Copyright (c) RealNetworks, Inc., 1995-2002 -ignorable_holders: - - RealNetworks, Inc. - - RealNetworks, Inc. and/or its licensors -ignorable_urls: - - http://www.realnetworks.com/info/helixlogo.html - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_11.RULE b/src/licensedcode/data/rules/rpsl-1.0_11.RULE index f85ecf77083..c5af5c13eb3 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_11.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_11.RULE @@ -1,3 +1,16 @@ +--- +license_expression: rpsl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors +ignorable_holders: + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 1. General Definitions. diff --git a/src/licensedcode/data/rules/rpsl-1.0_11.yml b/src/licensedcode/data/rules/rpsl-1.0_11.yml deleted file mode 100644 index 3aa673f76cd..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_11.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: rpsl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors -ignorable_holders: - - RealNetworks, Inc. and/or its licensors -ignorable_urls: - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_12.RULE b/src/licensedcode/data/rules/rpsl-1.0_12.RULE index b95a1bea7ef..32d421bda73 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_12.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: RealNetworks Public Source License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_12.yml b/src/licensedcode/data/rules/rpsl-1.0_12.yml deleted file mode 100644 index 347a038d7ef..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpsl-1.0_13.RULE b/src/licensedcode/data/rules/rpsl-1.0_13.RULE index df5180d83e9..a55be98545d 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_13.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + RPSL-1.0 RealNetworks Public Source License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_13.yml b/src/licensedcode/data/rules/rpsl-1.0_13.yml deleted file mode 100644 index 347a038d7ef..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpsl-1.0_14.RULE b/src/licensedcode/data/rules/rpsl-1.0_14.RULE index f78058f9133..32c4197c864 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_14.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + RealNetworks Public Source License v1.0 RPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_14.yml b/src/licensedcode/data/rules/rpsl-1.0_14.yml deleted file mode 100644 index 347a038d7ef..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpsl-1.0_15.RULE b/src/licensedcode/data/rules/rpsl-1.0_15.RULE index c17c85790f5..5f618b436f1 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_15.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: rpsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: RPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_15.yml b/src/licensedcode/data/rules/rpsl-1.0_15.yml deleted file mode 100644 index 7801ba65392..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpsl-1.0_16.RULE b/src/licensedcode/data/rules/rpsl-1.0_16.RULE index 87fbf29e594..126675e84d0 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_16.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: rpsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: RealNetworks Public Source License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_16.yml b/src/licensedcode/data/rules/rpsl-1.0_16.yml deleted file mode 100644 index 7801ba65392..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpsl-1.0_17.RULE b/src/licensedcode/data/rules/rpsl-1.0_17.RULE index 21262c0bfdf..73e60430286 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_17.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: rpsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: RPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_17.yml b/src/licensedcode/data/rules/rpsl-1.0_17.yml deleted file mode 100644 index 7801ba65392..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rpsl-1.0_18.RULE b/src/licensedcode/data/rules/rpsl-1.0_18.RULE index c3d4acea932..b6025b01ce9 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_18.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_18.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/RPSL-1.0 +--- + https://licenses.nuget.org/RPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_18.yml b/src/licensedcode/data/rules/rpsl-1.0_18.yml deleted file mode 100644 index 13079281f5e..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/RPSL-1.0 diff --git a/src/licensedcode/data/rules/rpsl-1.0_19.RULE b/src/licensedcode/data/rules/rpsl-1.0_19.RULE index 956a5493ee3..43587e18cad 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_19.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/RPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_19.yml b/src/licensedcode/data/rules/rpsl-1.0_19.yml deleted file mode 100644 index 214163140fc..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/rpsl-1.0_2.RULE b/src/licensedcode/data/rules/rpsl-1.0_2.RULE index 091557bd767..f315d131cbe 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_2.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_2.RULE @@ -1,3 +1,19 @@ +--- +license_expression: rpsl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) RealNetworks, Inc., 1995-2002 + - Copyright 1995-2002 RealNetworks, Inc. and/or its licensors +ignorable_holders: + - RealNetworks, Inc. + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) 1. General Definitions. This License applies to any program or other work which RealNetworks, Inc., or any other entity that elects to use this license, ("Licensor") makes publicly available and which contains a notice placed by Licensor identifying such program or work as "Original Code" and stating that it is subject to the terms of this RealNetworks Public Source License version 1.0 (or subsequent version thereof) @@ -77,4 +93,4 @@ RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) * Mozilla Public License 1.1 (MPL) * Nokia Open Source License * Open Group Test Suite License * Python Software Foundation License * Ricoh Source Code Public License * Sun Industry Standards Source License (SISSL) * Sun Public License * University of Illinois/NCSA Open Source License * Vovida Software License v. 1.0 * W3C License * X.Net License * Zope Public License * zlib/libpng license (1) - Note: because this license contains certain reciprocal licensing terms that purport to extend to independently developed code, You may be prohibited under the terms of this otherwise compatible license from using code licensed under its terms with Covered Code because Covered Code may only be licensed under the RealNetworks Public Source License. Any attempt to apply non RPSL license terms, including without limitation the GPL, to Covered Code is expressly forbidden. You are responsible for ensuring that Your use of Compatible Source Licensed code does not violate either the RPSL or the Compatible Source License. The latest version of this list can be found at: https://www.helixcommunity.org/content/complicense EXHIBIT C RealNetworks' Trademark policy. RealNetworks defines the following trademarks collectively as "Licensor Trademarks": "RealNetworks", "RealPlayer", "RealJukebox", "RealSystem", "RealAudio", "RealVideo", "RealOne Player", "RealMedia", "Helix" or any other trademarks or trade names belonging to RealNetworks. RealNetworks "Licensor Trademark Policy" forbids any use of Licensor Trademarks except as permitted by and in strict compliance at all times with RealNetworks' third party trademark usage guidelines which are posted at http://www.realnetworks.com/info/helixlogo.html. + Note: because this license contains certain reciprocal licensing terms that purport to extend to independently developed code, You may be prohibited under the terms of this otherwise compatible license from using code licensed under its terms with Covered Code because Covered Code may only be licensed under the RealNetworks Public Source License. Any attempt to apply non RPSL license terms, including without limitation the GPL, to Covered Code is expressly forbidden. You are responsible for ensuring that Your use of Compatible Source Licensed code does not violate either the RPSL or the Compatible Source License. The latest version of this list can be found at: https://www.helixcommunity.org/content/complicense EXHIBIT C RealNetworks' Trademark policy. RealNetworks defines the following trademarks collectively as "Licensor Trademarks": "RealNetworks", "RealPlayer", "RealJukebox", "RealSystem", "RealAudio", "RealVideo", "RealOne Player", "RealMedia", "Helix" or any other trademarks or trade names belonging to RealNetworks. RealNetworks "Licensor Trademark Policy" forbids any use of Licensor Trademarks except as permitted by and in strict compliance at all times with RealNetworks' third party trademark usage guidelines which are posted at http://www.realnetworks.com/info/helixlogo.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_2.yml b/src/licensedcode/data/rules/rpsl-1.0_2.yml deleted file mode 100644 index a45d69b746d..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_2.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: rpsl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) RealNetworks, Inc., 1995-2002 - - Copyright 1995-2002 RealNetworks, Inc. and/or its licensors -ignorable_holders: - - RealNetworks, Inc. - - RealNetworks, Inc. and/or its licensors -ignorable_urls: - - http://www.realnetworks.com/info/helixlogo.html - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_20.RULE b/src/licensedcode/data/rules/rpsl-1.0_20.RULE index 84438d63049..7fd581ff33e 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_20.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RPSL-1.0 +--- + {{RPSL-1.0}} https://spdx.org/licenses/RPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_20.yml b/src/licensedcode/data/rules/rpsl-1.0_20.yml deleted file mode 100644 index 520cdd38401..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RPSL-1.0 diff --git a/src/licensedcode/data/rules/rpsl-1.0_21.RULE b/src/licensedcode/data/rules/rpsl-1.0_21.RULE index c31aa73cae8..a87b763f921 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_21.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RPSL-1.0 +--- + LICENSE {{RPSL-1.0}} https://spdx.org/licenses/RPSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_21.yml b/src/licensedcode/data/rules/rpsl-1.0_21.yml deleted file mode 100644 index 520cdd38401..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RPSL-1.0 diff --git a/src/licensedcode/data/rules/rpsl-1.0_3.RULE b/src/licensedcode/data/rules/rpsl-1.0_3.RULE index 4904ee8d314..28c07b99ed8 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_3.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/real.php +--- + http://opensource.org/licenses/real.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_3.yml b/src/licensedcode/data/rules/rpsl-1.0_3.yml deleted file mode 100644 index 900ae9041af..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/real.php diff --git a/src/licensedcode/data/rules/rpsl-1.0_4.RULE b/src/licensedcode/data/rules/rpsl-1.0_4.RULE index d7728addf97..44d695f9722 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_4.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_4.RULE @@ -1,3 +1,20 @@ +--- +license_expression: rpsl-1.0 +is_license_text: yes +notes: rpsl from osi +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors + - Copyright (c) RealNetworks, Inc., 1995-2002 +ignorable_holders: + - RealNetworks, Inc. + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 1. General Definitions. This License applies to any program or other work which RealNetworks, Inc., or any other entity that elects to use this license, ("Licensor") makes publicly available and which contains a notice placed by Licensor identifying such program or work as "Original Code" and stating that it is subject to the terms of this RealNetworks Public Source License version 1.0 (or subsequent version thereof) ("License"). You are not required to accept this License. However, nothing else grants You permission to use, copy, modify or distribute the software or its derivative works. These actions are prohibited by law if You do not accept this License. Therefore, by modifying, copying or distributing the software (or any work based on the software), You indicate your acceptance of this License to do so, and all its terms and conditions. In addition, you agree to the terms of this License by clicking the Accept button or downloading the software. As used in this License: diff --git a/src/licensedcode/data/rules/rpsl-1.0_4.yml b/src/licensedcode/data/rules/rpsl-1.0_4.yml deleted file mode 100644 index 77f99ca7803..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_4.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: rpsl-1.0 -is_license_text: yes -notes: rpsl from osi -ignorable_copyrights: - - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors - - Copyright (c) RealNetworks, Inc., 1995-2002 -ignorable_holders: - - RealNetworks, Inc. - - RealNetworks, Inc. and/or its licensors -ignorable_urls: - - http://www.realnetworks.com/info/helixlogo.html - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_5.RULE b/src/licensedcode/data/rules/rpsl-1.0_5.RULE index d12fe8c38fe..78150d21e8e 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_5.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_5.RULE @@ -1,3 +1,15 @@ +--- +license_expression: rpsl-1.0 +is_license_notice: yes +ignorable_copyrights: + - Copyright r 1995-2002 RealNetworks, Inc. and/or its licensors +ignorable_holders: + - r RealNetworks, Inc. and/or its licensors +ignorable_urls: + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + "Copyright ᄅ 1995-2002 RealNetworks, Inc. and/or its licensors. All Rights Reserved. The contents of this file, and the files included with this file, are subject to the current version of the RealNetworks Public Source License Version 1.0 (the "RPSL") available at https://www.helixcommunity.org/content/rpsl unless you have licensed the file under the RealNetworks Community Source License Version 1.0 (the "RCSL") available at https://www.helixcommunity.org/content/rcsl, in which case the RCSL will apply. You may also obtain the license terms directly from RealNetworks. You may not use this file except in compliance with the RPSL or, if you have a valid RCSL with RealNetworks applicable to this file, the RCSL. Please see the applicable RPSL or RCSL for the rights, obligations and limitations governing use of the contents of the file. diff --git a/src/licensedcode/data/rules/rpsl-1.0_5.yml b/src/licensedcode/data/rules/rpsl-1.0_5.yml deleted file mode 100644 index 27251aeefd2..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_5.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: rpsl-1.0 -is_license_notice: yes -ignorable_copyrights: - - Copyright r 1995-2002 RealNetworks, Inc. and/or its licensors -ignorable_holders: - - r RealNetworks, Inc. and/or its licensors -ignorable_urls: - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_6.RULE b/src/licensedcode/data/rules/rpsl-1.0_6.RULE index 4f352aea1d6..ed98334e142 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_6.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_6.RULE @@ -1,3 +1,20 @@ +--- +license_expression: rpsl-1.0 +is_license_text: yes +notes: Full text of rpsl +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors + - Copyright (c) RealNetworks, Inc., 1995-2002 +ignorable_holders: + - RealNetworks, Inc. + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) diff --git a/src/licensedcode/data/rules/rpsl-1.0_6.yml b/src/licensedcode/data/rules/rpsl-1.0_6.yml deleted file mode 100644 index 2acf02ed164..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_6.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: rpsl-1.0 -is_license_text: yes -notes: Full text of rpsl -ignorable_copyrights: - - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors - - Copyright (c) RealNetworks, Inc., 1995-2002 -ignorable_holders: - - RealNetworks, Inc. - - RealNetworks, Inc. and/or its licensors -ignorable_urls: - - http://www.realnetworks.com/info/helixlogo.html - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_7.RULE b/src/licensedcode/data/rules/rpsl-1.0_7.RULE index c049824054d..0936c2f7576 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_7.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_7.RULE @@ -1,3 +1,20 @@ +--- +license_expression: rpsl-1.0 +is_license_text: yes +notes: rpsl 1.0 text +ignorable_copyrights: + - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors + - Copyright (c) RealNetworks, Inc., 1995-2002 +ignorable_holders: + - RealNetworks, Inc. + - RealNetworks, Inc. and/or its licensors +ignorable_urls: + - http://www.realnetworks.com/info/helixlogo.html + - https://www.helixcommunity.org/content/complicense + - https://www.helixcommunity.org/content/rcsl + - https://www.helixcommunity.org/content/rpsl +--- + RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) 1. General Definitions. This License applies to any program or other work which RealNetworks, Inc., or any other entity that elects to use this license, ("Licensor") makes publicly available and which contains a notice placed by Licensor identifying such program or work as "Original Code" and stating that it is subject to the terms of this RealNetworks Public Source License version 1.0 (or subsequent version thereof) @@ -77,4 +94,4 @@ RealNetworks Public Source License Version 1.0 (Rev. Date October 28, 2002) * Mozilla Public License 1.1 (MPL) * Nokia Open Source License * Open Group Test Suite License * Python Software Foundation License * Ricoh Source Code Public License * Sun Industry Standards Source License (SISSL) * Sun Public License * University of Illinois/NCSA Open Source License * Vovida Software License v. 1.0 * W3C License * X.Net License * Zope Public License * zlib/libpng license (1) - Note: because this license contains certain reciprocal licensing terms that purport to extend to independently developed code, You may be prohibited under the terms of this otherwise compatible license from using code licensed under its terms with Covered Code because Covered Code may only be licensed under the RealNetworks Public Source License. Any attempt to apply non RPSL license terms, including without limitation the GPL, to Covered Code is expressly forbidden. You are responsible for ensuring that Your use of Compatible Source Licensed code does not violate either the RPSL or the Compatible Source License. The latest version of this list can be found at: https://www.helixcommunity.org/content/complicense EXHIBIT C RealNetworks' Trademark policy. RealNetworks defines the following trademarks collectively as "Licensor Trademarks": "RealNetworks", "RealPlayer", "RealJukebox", "RealSystem", "RealAudio", "RealVideo", "RealOne Player", "RealMedia", "Helix" or any other trademarks or trade names belonging to RealNetworks. RealNetworks "Licensor Trademark Policy" forbids any use of Licensor Trademarks except as permitted by and in strict compliance at all times with RealNetworks' third party trademark usage guidelines which are posted at http://www.realnetworks.com/info/helixlogo.html. + Note: because this license contains certain reciprocal licensing terms that purport to extend to independently developed code, You may be prohibited under the terms of this otherwise compatible license from using code licensed under its terms with Covered Code because Covered Code may only be licensed under the RealNetworks Public Source License. Any attempt to apply non RPSL license terms, including without limitation the GPL, to Covered Code is expressly forbidden. You are responsible for ensuring that Your use of Compatible Source Licensed code does not violate either the RPSL or the Compatible Source License. The latest version of this list can be found at: https://www.helixcommunity.org/content/complicense EXHIBIT C RealNetworks' Trademark policy. RealNetworks defines the following trademarks collectively as "Licensor Trademarks": "RealNetworks", "RealPlayer", "RealJukebox", "RealSystem", "RealAudio", "RealVideo", "RealOne Player", "RealMedia", "Helix" or any other trademarks or trade names belonging to RealNetworks. RealNetworks "Licensor Trademark Policy" forbids any use of Licensor Trademarks except as permitted by and in strict compliance at all times with RealNetworks' third party trademark usage guidelines which are posted at http://www.realnetworks.com/info/helixlogo.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_7.yml b/src/licensedcode/data/rules/rpsl-1.0_7.yml deleted file mode 100644 index c0ee04c0aef..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_7.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: rpsl-1.0 -is_license_text: yes -notes: rpsl 1.0 text -ignorable_copyrights: - - Copyright (c) 1995-2002 RealNetworks, Inc. and/or its licensors - - Copyright (c) RealNetworks, Inc., 1995-2002 -ignorable_holders: - - RealNetworks, Inc. - - RealNetworks, Inc. and/or its licensors -ignorable_urls: - - http://www.realnetworks.com/info/helixlogo.html - - https://www.helixcommunity.org/content/complicense - - https://www.helixcommunity.org/content/rcsl - - https://www.helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_8.RULE b/src/licensedcode/data/rules/rpsl-1.0_8.RULE index 73b49ad6639..8bdb2463fd7 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_8.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://helixcommunity.org/content/rpsl +--- + https://helixcommunity.org/content/rpsl \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_8.yml b/src/licensedcode/data/rules/rpsl-1.0_8.yml deleted file mode 100644 index 41036c6c637..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://helixcommunity.org/content/rpsl diff --git a/src/licensedcode/data/rules/rpsl-1.0_9.RULE b/src/licensedcode/data/rules/rpsl-1.0_9.RULE index 449b9be5580..f7cb0d7a98c 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_9.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/real.php +--- + http://www.opensource.org/licenses/real.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_9.yml b/src/licensedcode/data/rules/rpsl-1.0_9.yml deleted file mode 100644 index 59ec92b4bb8..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/real.php diff --git a/src/licensedcode/data/rules/rpsl-1.0_url_1.RULE b/src/licensedcode/data/rules/rpsl-1.0_url_1.RULE index c0f1bf314db..c83817e51d0 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rpsl-1.0 +--- + https://spdx.org/licenses/rpsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_url_1.yml b/src/licensedcode/data/rules/rpsl-1.0_url_1.yml deleted file mode 100644 index 938f37b9eb0..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rpsl-1.0 diff --git a/src/licensedcode/data/rules/rpsl-1.0_url_2.RULE b/src/licensedcode/data/rules/rpsl-1.0_url_2.RULE index 6537cf6c9eb..edcf161a4ed 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rpsl-1.0.html +--- + https://spdx.org/licenses/rpsl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_url_2.yml b/src/licensedcode/data/rules/rpsl-1.0_url_2.yml deleted file mode 100644 index c705f9311ee..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rpsl-1.0.html diff --git a/src/licensedcode/data/rules/rpsl-1.0_url_glc_230.RULE b/src/licensedcode/data/rules/rpsl-1.0_url_glc_230.RULE index df1181f6126..0d68db5da1b 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_url_glc_230.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_url_glc_230.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/rpsl-1.0 +--- + http://www.opensource.org/licenses/rpsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_url_glc_230.yml b/src/licensedcode/data/rules/rpsl-1.0_url_glc_230.yml deleted file mode 100644 index 05955c471d0..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_url_glc_230.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/rpsl-1.0 diff --git a/src/licensedcode/data/rules/rpsl-1.0_url_glc_231.RULE b/src/licensedcode/data/rules/rpsl-1.0_url_glc_231.RULE index 867315a2ec2..f6db134728c 100644 --- a/src/licensedcode/data/rules/rpsl-1.0_url_glc_231.RULE +++ b/src/licensedcode/data/rules/rpsl-1.0_url_glc_231.RULE @@ -1 +1,9 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/rpsl-1.0 +--- + https://www.opensource.org/licenses/rpsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rpsl-1.0_url_glc_231.yml b/src/licensedcode/data/rules/rpsl-1.0_url_glc_231.yml deleted file mode 100644 index cf4f3314915..00000000000 --- a/src/licensedcode/data/rules/rpsl-1.0_url_glc_231.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/rpsl-1.0 diff --git a/src/licensedcode/data/rules/rsa-cryptoki.RULE b/src/licensedcode/data/rules/rsa-cryptoki.RULE index 21646e09950..d608b1e62d4 100644 --- a/src/licensedcode/data/rules/rsa-cryptoki.RULE +++ b/src/licensedcode/data/rules/rsa-cryptoki.RULE @@ -1 +1,9 @@ +--- +license_expression: rsa-cryptoki +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.rsa.com/rsalabs/node.asp?id=2133 +--- + http://www.rsa.com/rsalabs/node.asp?id=2133 \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-cryptoki.yml b/src/licensedcode/data/rules/rsa-cryptoki.yml deleted file mode 100644 index 8e85a2315e3..00000000000 --- a/src/licensedcode/data/rules/rsa-cryptoki.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rsa-cryptoki -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.rsa.com/rsalabs/node.asp?id=2133 diff --git a/src/licensedcode/data/rules/rsa-md5_1.RULE b/src/licensedcode/data/rules/rsa-md5_1.RULE index 371f81135e1..24707fe79ce 100644 --- a/src/licensedcode/data/rules/rsa-md5_1.RULE +++ b/src/licensedcode/data/rules/rsa-md5_1.RULE @@ -1 +1,7 @@ +--- +license_expression: rsa-md5 +is_license_tag: yes +relevance: 99 +--- + License: RSA-MD \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_1.yml b/src/licensedcode/data/rules/rsa-md5_1.yml deleted file mode 100644 index 2506fb7367b..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rsa-md5 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/rsa-md5_10.RULE b/src/licensedcode/data/rules/rsa-md5_10.RULE index d60e2b4f14a..8fa67f61e1d 100644 --- a/src/licensedcode/data/rules/rsa-md5_10.RULE +++ b/src/licensedcode/data/rules/rsa-md5_10.RULE @@ -1 +1,10 @@ +--- +license_expression: rsa-md5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: RSA-MD \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_10.yml b/src/licensedcode/data/rules/rsa-md5_10.yml deleted file mode 100644 index c787ea27c7c..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rsa-md5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rsa-md5_11.RULE b/src/licensedcode/data/rules/rsa-md5_11.RULE index 80154b669f3..24f8d44123d 100644 --- a/src/licensedcode/data/rules/rsa-md5_11.RULE +++ b/src/licensedcode/data/rules/rsa-md5_11.RULE @@ -1 +1,7 @@ +--- +license_expression: rsa-md5 +is_license_notice: yes +relevance: 100 +--- + License terms appear in RSA MD5 Message-Digest Algorithm License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_11.yml b/src/licensedcode/data/rules/rsa-md5_11.yml deleted file mode 100644 index e8208af25d6..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rsa-md5 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/rsa-md5_12.RULE b/src/licensedcode/data/rules/rsa-md5_12.RULE index 13a1297b4d4..72d33644008 100644 --- a/src/licensedcode/data/rules/rsa-md5_12.RULE +++ b/src/licensedcode/data/rules/rsa-md5_12.RULE @@ -1 +1,9 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/RSA-MD +--- + https://licenses.nuget.org/RSA-MD \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_12.yml b/src/licensedcode/data/rules/rsa-md5_12.yml deleted file mode 100644 index 1deb9ea4df3..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/RSA-MD diff --git a/src/licensedcode/data/rules/rsa-md5_13.RULE b/src/licensedcode/data/rules/rsa-md5_13.RULE index 067105c23c9..ee9fce24530 100644 --- a/src/licensedcode/data/rules/rsa-md5_13.RULE +++ b/src/licensedcode/data/rules/rsa-md5_13.RULE @@ -1 +1,7 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/RSA-MD \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_13.yml b/src/licensedcode/data/rules/rsa-md5_13.yml deleted file mode 100644 index 9a43c06f4a1..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/rsa-md5_14.RULE b/src/licensedcode/data/rules/rsa-md5_14.RULE index 99dc1f3f904..7b7f336b900 100644 --- a/src/licensedcode/data/rules/rsa-md5_14.RULE +++ b/src/licensedcode/data/rules/rsa-md5_14.RULE @@ -1 +1,9 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RSA-MD +--- + LICENSE {{RSA-MD}} https://spdx.org/licenses/RSA-MD \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_14.yml b/src/licensedcode/data/rules/rsa-md5_14.yml deleted file mode 100644 index e3136927968..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RSA-MD diff --git a/src/licensedcode/data/rules/rsa-md5_15.RULE b/src/licensedcode/data/rules/rsa-md5_15.RULE index 0c9cfcc7977..353e3d3769b 100644 --- a/src/licensedcode/data/rules/rsa-md5_15.RULE +++ b/src/licensedcode/data/rules/rsa-md5_15.RULE @@ -1 +1,9 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/RSA-MD +--- + {{RSA-MD}} https://spdx.org/licenses/RSA-MD \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_15.yml b/src/licensedcode/data/rules/rsa-md5_15.yml deleted file mode 100644 index e3136927968..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/RSA-MD diff --git a/src/licensedcode/data/rules/rsa-md5_2.RULE b/src/licensedcode/data/rules/rsa-md5_2.RULE index 054e6db2305..138af8ab0f8 100644 --- a/src/licensedcode/data/rules/rsa-md5_2.RULE +++ b/src/licensedcode/data/rules/rsa-md5_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: rsa-md5 +is_license_text: yes +relevance: 100 +notes: typo in https://github.com/9fans/plan9port/blob/df2d9ec9d169626cdc2a23829bb2831738215722/src/libsec/port/md5.c +--- + * License to copy and use this software is granted provided that it * is identified as the "RSA Data Security, Inc. MD5 Message-Digest * Algorithm" in all material mentioning or referencing this software diff --git a/src/licensedcode/data/rules/rsa-md5_2.yml b/src/licensedcode/data/rules/rsa-md5_2.yml deleted file mode 100644 index 6e646fa0ec6..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: rsa-md5 -is_license_text: yes -relevance: 100 -notes: typo in https://github.com/9fans/plan9port/blob/df2d9ec9d169626cdc2a23829bb2831738215722/src/libsec/port/md5.c diff --git a/src/licensedcode/data/rules/rsa-md5_3.RULE b/src/licensedcode/data/rules/rsa-md5_3.RULE index a497800b807..71af430bea0 100644 --- a/src/licensedcode/data/rules/rsa-md5_3.RULE +++ b/src/licensedcode/data/rules/rsa-md5_3.RULE @@ -1 +1,7 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 90 +--- + RSA Data Security-MD5 Message license \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_3.yml b/src/licensedcode/data/rules/rsa-md5_3.yml deleted file mode 100644 index 8286e5443fd..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/rsa-md5_4.RULE b/src/licensedcode/data/rules/rsa-md5_4.RULE index 3df7af4f951..565f898dc84 100644 --- a/src/licensedcode/data/rules/rsa-md5_4.RULE +++ b/src/licensedcode/data/rules/rsa-md5_4.RULE @@ -1 +1,7 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 90 +--- + RSA MessageDigest License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_4.yml b/src/licensedcode/data/rules/rsa-md5_4.yml deleted file mode 100644 index 8286e5443fd..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/rsa-md5_5.RULE b/src/licensedcode/data/rules/rsa-md5_5.RULE index b1460475419..8a23f6304f7 100644 --- a/src/licensedcode/data/rules/rsa-md5_5.RULE +++ b/src/licensedcode/data/rules/rsa-md5_5.RULE @@ -1 +1,7 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 90 +--- + RSA Message-Digest License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_5.yml b/src/licensedcode/data/rules/rsa-md5_5.yml deleted file mode 100644 index 8286e5443fd..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/rsa-md5_6.RULE b/src/licensedcode/data/rules/rsa-md5_6.RULE index bd141749ce5..3a6d657b0ef 100644 --- a/src/licensedcode/data/rules/rsa-md5_6.RULE +++ b/src/licensedcode/data/rules/rsa-md5_6.RULE @@ -1 +1,10 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: RSA Message-Digest License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_6.yml b/src/licensedcode/data/rules/rsa-md5_6.yml deleted file mode 100644 index 23c3a98ecec..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rsa-md5_7.RULE b/src/licensedcode/data/rules/rsa-md5_7.RULE index b57b018bdf9..4559e4248c5 100644 --- a/src/licensedcode/data/rules/rsa-md5_7.RULE +++ b/src/licensedcode/data/rules/rsa-md5_7.RULE @@ -1 +1,10 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + RSA-MD RSA Message-Digest License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_7.yml b/src/licensedcode/data/rules/rsa-md5_7.yml deleted file mode 100644 index 23c3a98ecec..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rsa-md5_8.RULE b/src/licensedcode/data/rules/rsa-md5_8.RULE index d01a0ce6dc4..b4ed93b6cbc 100644 --- a/src/licensedcode/data/rules/rsa-md5_8.RULE +++ b/src/licensedcode/data/rules/rsa-md5_8.RULE @@ -1 +1,10 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + RSA Message-Digest License RSA-MD \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_8.yml b/src/licensedcode/data/rules/rsa-md5_8.yml deleted file mode 100644 index 23c3a98ecec..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rsa-md5_9.RULE b/src/licensedcode/data/rules/rsa-md5_9.RULE index 0732488d599..3d65412c83a 100644 --- a/src/licensedcode/data/rules/rsa-md5_9.RULE +++ b/src/licensedcode/data/rules/rsa-md5_9.RULE @@ -1 +1,10 @@ +--- +license_expression: rsa-md5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: RSA Message-Digest License \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_9.yml b/src/licensedcode/data/rules/rsa-md5_9.yml deleted file mode 100644 index c787ea27c7c..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rsa-md5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/rsa-md5_and_apache-2.0.RULE b/src/licensedcode/data/rules/rsa-md5_and_apache-2.0.RULE index 99c93d4ec2e..71827804ae1 100644 --- a/src/licensedcode/data/rules/rsa-md5_and_apache-2.0.RULE +++ b/src/licensedcode/data/rules/rsa-md5_and_apache-2.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: rsa-md5 AND apache-2.0 +is_license_notice: yes +--- + * The RSA copyright statement and Licence for that original material is * included below. This is followed by the Apache copyright statement and - * licence for the modifications made to that material. + * licence for the modifications made to that material. \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_and_apache-2.0.yml b/src/licensedcode/data/rules/rsa-md5_and_apache-2.0.yml deleted file mode 100644 index 7f45a1322e7..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_and_apache-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: rsa-md5 AND apache-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/rsa-md5_url_1.RULE b/src/licensedcode/data/rules/rsa-md5_url_1.RULE index 21bfb285f65..f14e211cff0 100644 --- a/src/licensedcode/data/rules/rsa-md5_url_1.RULE +++ b/src/licensedcode/data/rules/rsa-md5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rsa-md +--- + https://spdx.org/licenses/rsa-md \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_url_1.yml b/src/licensedcode/data/rules/rsa-md5_url_1.yml deleted file mode 100644 index eb09f82c587..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rsa-md diff --git a/src/licensedcode/data/rules/rsa-md5_url_2.RULE b/src/licensedcode/data/rules/rsa-md5_url_2.RULE index c741c0f4063..704c7b03a34 100644 --- a/src/licensedcode/data/rules/rsa-md5_url_2.RULE +++ b/src/licensedcode/data/rules/rsa-md5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: rsa-md5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/rsa-md.html +--- + https://spdx.org/licenses/rsa-md.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/rsa-md5_url_2.yml b/src/licensedcode/data/rules/rsa-md5_url_2.yml deleted file mode 100644 index 523ec687c3c..00000000000 --- a/src/licensedcode/data/rules/rsa-md5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rsa-md5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/rsa-md.html diff --git a/src/licensedcode/data/rules/ruby-1999.RULE b/src/licensedcode/data/rules/ruby-1999.RULE index 6dc8d664683..3fbb33d435c 100644 --- a/src/licensedcode/data/rules/ruby-1999.RULE +++ b/src/licensedcode/data/rules/ruby-1999.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ruby +is_license_text: yes +notes: this is an old ruby license circa 1999. +--- + 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. diff --git a/src/licensedcode/data/rules/ruby-1999.yml b/src/licensedcode/data/rules/ruby-1999.yml deleted file mode 100644 index 9b75c770b00..00000000000 --- a/src/licensedcode/data/rules/ruby-1999.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_text: yes -notes: this is an old ruby license circa 1999. diff --git a/src/licensedcode/data/rules/ruby-1999_or_gpl.RULE b/src/licensedcode/data/rules/ruby-1999_or_gpl.RULE index d2e4e7a3e44..5b2bd3a91d4 100644 --- a/src/licensedcode/data/rules/ruby-1999_or_gpl.RULE +++ b/src/licensedcode/data/rules/ruby-1999_or_gpl.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +referenced_filenames: + - COPYING.txt +notes: this is an old ruby license circa 1999. +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.co.jp +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL (see COPYING.txt file), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby-1999_or_gpl.yml b/src/licensedcode/data/rules/ruby-1999_or_gpl.yml deleted file mode 100644 index 36ac3827d11..00000000000 --- a/src/licensedcode/data/rules/ruby-1999_or_gpl.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -referenced_filenames: - - COPYING.txt -notes: this is an old ruby license circa 1999. -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.co.jp diff --git a/src/licensedcode/data/rules/ruby-2001-07-11.RULE b/src/licensedcode/data/rules/ruby-2001-07-11.RULE index 43176f64199..ad78eb562a4 100644 --- a/src/licensedcode/data/rules/ruby-2001-07-11.RULE +++ b/src/licensedcode/data/rules/ruby-2001-07-11.RULE @@ -1,3 +1,17 @@ +--- +license_expression: ruby +is_license_text: yes +notes: | + This replaced the GPL COPYING file with the ruby dual licensing terms + https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING + Before this the ruby license was in the README + https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README + and the bottom of section 4. was changed on a regular bassis to update the list + of files and minor typos. + The Ruby license was first introduced there in early 1998 + https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README +--- + 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. diff --git a/src/licensedcode/data/rules/ruby-2001-07-11.yml b/src/licensedcode/data/rules/ruby-2001-07-11.yml deleted file mode 100644 index c2d9f1eefb4..00000000000 --- a/src/licensedcode/data/rules/ruby-2001-07-11.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: ruby -is_license_text: yes -notes: | - This replaced the GPL COPYING file with the ruby dual licensing terms - https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING - Before this the ruby license was in the README - https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README - and the bottom of section 4. was changed on a regular bassis to update the list - of files and minor typos. - The Ruby license was first introduced there in early 1998 - https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README diff --git a/src/licensedcode/data/rules/ruby-2001-07-11_or_gpl.RULE b/src/licensedcode/data/rules/ruby-2001-07-11_or_gpl.RULE index b70bca126e8..b58382e3bbb 100644 --- a/src/licensedcode/data/rules/ruby-2001-07-11_or_gpl.RULE +++ b/src/licensedcode/data/rules/ruby-2001-07-11_or_gpl.RULE @@ -1,3 +1,21 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +notes: | + This replaced the GPL COPYING file with the ruby dual licensing terms + https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING + Before this the ruby license was in the README + https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README + and the bottom of section 4. was changed on a regular bassis to update the list + of files and minor typos. + The Ruby license was first introduced there in early 1998 + https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@zetabits.com +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL (see the file GPL), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby-2001-07-11_or_gpl.yml b/src/licensedcode/data/rules/ruby-2001-07-11_or_gpl.yml deleted file mode 100644 index 53370176613..00000000000 --- a/src/licensedcode/data/rules/ruby-2001-07-11_or_gpl.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -notes: | - This replaced the GPL COPYING file with the ruby dual licensing terms - https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING - Before this the ruby license was in the README - https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README - and the bottom of section 4. was changed on a regular bassis to update the list - of files and minor typos. - The Ruby license was first introduced there in early 1998 - https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@zetabits.com diff --git a/src/licensedcode/data/rules/ruby-2001-07-13.RULE b/src/licensedcode/data/rules/ruby-2001-07-13.RULE index 4602efa7a2c..b166f0de25c 100644 --- a/src/licensedcode/data/rules/ruby-2001-07-13.RULE +++ b/src/licensedcode/data/rules/ruby-2001-07-13.RULE @@ -1,3 +1,19 @@ +--- +license_expression: ruby +is_license_text: yes +notes: | + https://raw.githubusercontent.com/ruby/ruby/c5a7e3570690f1a6570cc3cb1876f5f77a20fe3c/COPYING + This replaced the GPL COPYING file with the ruby dual licensing terms + This came just\ after a short lived modification that lived only for 2 days + https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING + Before this the ruby license was in the README + https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README + and the bottom of section 4. was changed on a regular bassis to update the list + of files\ and minor typos. + The Ruby license was first introduced there in early 1998 + https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README +--- + 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. diff --git a/src/licensedcode/data/rules/ruby-2001-07-13.yml b/src/licensedcode/data/rules/ruby-2001-07-13.yml deleted file mode 100644 index c6d09729052..00000000000 --- a/src/licensedcode/data/rules/ruby-2001-07-13.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: ruby -is_license_text: yes -notes: | - https://raw.githubusercontent.com/ruby/ruby/c5a7e3570690f1a6570cc3cb1876f5f77a20fe3c/COPYING - This replaced the GPL COPYING file with the ruby dual licensing terms - This came just\ after a short lived modification that lived only for 2 days - https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING - Before this the ruby license was in the README - https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README - and the bottom of section 4. was changed on a regular bassis to update the list - of files\ and minor typos. - The Ruby license was first introduced there in early 1998 - https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README diff --git a/src/licensedcode/data/rules/ruby-2001-07-13_or_gpl.RULE b/src/licensedcode/data/rules/ruby-2001-07-13_or_gpl.RULE index ae19048b358..be10ccaa5a3 100644 --- a/src/licensedcode/data/rules/ruby-2001-07-13_or_gpl.RULE +++ b/src/licensedcode/data/rules/ruby-2001-07-13_or_gpl.RULE @@ -1,3 +1,23 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +notes: | + https://raw.githubusercontent.com/ruby/ruby/c5a7e3570690f1a6570cc3cb1876f5f77a20fe3c/COPYING + This replaced the GPL COPYING file with the ruby dual licensing terms + This came just after a short lived modification that lived only for 2 days + https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING + Before this the ruby license was in the README + https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README + and the bottom of section 4. was changed on a regular bassis to update the list + of files and minor typos. + The Ruby license was first introduced there in early 1998 + https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@zetabits.com +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL (see the file GPL), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby-2001-07-13_or_gpl.yml b/src/licensedcode/data/rules/ruby-2001-07-13_or_gpl.yml deleted file mode 100644 index ef1c981d679..00000000000 --- a/src/licensedcode/data/rules/ruby-2001-07-13_or_gpl.yml +++ /dev/null @@ -1,17 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -notes: | - https://raw.githubusercontent.com/ruby/ruby/c5a7e3570690f1a6570cc3cb1876f5f77a20fe3c/COPYING - This replaced the GPL COPYING file with the ruby dual licensing terms - This came just after a short lived modification that lived only for 2 days - https://raw.githubusercontent.com/ruby/ruby/cbc3756009999e58d717af4fc82ba6c33bd3e7e6/COPYING - Before this the ruby license was in the README - https://github.com/ruby/ruby/blob/d0cf53ffb494469d40be95eb97decdb86c95f653/README - and the bottom of section 4. was changed on a regular bassis to update the list - of files and minor typos. - The Ruby license was first introduced there in early 1998 - https://github.com/ruby/ruby/blob/7ea2ceddb832b9973694fecac9fe3c30400735ba/README -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@zetabits.com diff --git a/src/licensedcode/data/rules/ruby-2001-09-08_or_gpl.RULE b/src/licensedcode/data/rules/ruby-2001-09-08_or_gpl.RULE index 719cbd0fd4f..8260d4c2411 100644 --- a/src/licensedcode/data/rules/ruby-2001-09-08_or_gpl.RULE +++ b/src/licensedcode/data/rules/ruby-2001-09-08_or_gpl.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +notes: | + The change in this variant is only the email of the author + https://raw.githubusercontent.com/ruby/ruby/67245eec7192abdc1dd0dc2510c1f6c77df89bd0/COPYING +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.jp +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL (see the file GPL), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby-2001-09-08_or_gpl.yml b/src/licensedcode/data/rules/ruby-2001-09-08_or_gpl.yml deleted file mode 100644 index a5384cfc49a..00000000000 --- a/src/licensedcode/data/rules/ruby-2001-09-08_or_gpl.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -notes: | - The change in this variant is only the email of the author - https://raw.githubusercontent.com/ruby/ruby/67245eec7192abdc1dd0dc2510c1f6c77df89bd0/COPYING -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.jp diff --git a/src/licensedcode/data/rules/ruby-2002-02-21.RULE b/src/licensedcode/data/rules/ruby-2002-02-21.RULE index 1ac95f2f9ba..bed728afb39 100644 --- a/src/licensedcode/data/rules/ruby-2002-02-21.RULE +++ b/src/licensedcode/data/rules/ruby-2002-02-21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ruby +is_license_text: yes +notes: the change is "executables" to "binaries" This is a short-lived changes for only 5 days + https://raw.githubusercontent.com/ruby/ruby/a08cea360d69e6a7c42154f2032590ea3e77a386/COPYING +--- + 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. diff --git a/src/licensedcode/data/rules/ruby-2002-02-21.yml b/src/licensedcode/data/rules/ruby-2002-02-21.yml deleted file mode 100644 index 2c95dac6ef4..00000000000 --- a/src/licensedcode/data/rules/ruby-2002-02-21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ruby -is_license_text: yes -notes: the change is "executables" to "binaries" This is a short-lived changes for only 5 days - https://raw.githubusercontent.com/ruby/ruby/a08cea360d69e6a7c42154f2032590ea3e77a386/COPYING diff --git a/src/licensedcode/data/rules/ruby-2002-02-21_or_gpl.RULE b/src/licensedcode/data/rules/ruby-2002-02-21_or_gpl.RULE index 68836b6cfcb..94166450f4a 100644 --- a/src/licensedcode/data/rules/ruby-2002-02-21_or_gpl.RULE +++ b/src/licensedcode/data/rules/ruby-2002-02-21_or_gpl.RULE @@ -1,3 +1,16 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +notes: | + the change is "executables" to "binaries" + This is a short-lived changes for only 5 days + https://raw.githubusercontent.com/ruby/ruby/a08cea360d69e6a7c42154f2032590ea3e77a386/COPYING +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.jp +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL (see the file GPL), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby-2002-02-21_or_gpl.yml b/src/licensedcode/data/rules/ruby-2002-02-21_or_gpl.yml deleted file mode 100644 index 2809752ba39..00000000000 --- a/src/licensedcode/data/rules/ruby-2002-02-21_or_gpl.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -notes: | - the change is "executables" to "binaries" - This is a short-lived changes for only 5 days - https://raw.githubusercontent.com/ruby/ruby/a08cea360d69e6a7c42154f2032590ea3e77a386/COPYING -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.jp diff --git a/src/licensedcode/data/rules/ruby-2002-02-25-1.8.0_or_gpl.RULE b/src/licensedcode/data/rules/ruby-2002-02-25-1.8.0_or_gpl.RULE index b1c69b4b7a3..39463768329 100644 --- a/src/licensedcode/data/rules/ruby-2002-02-25-1.8.0_or_gpl.RULE +++ b/src/licensedcode/data/rules/ruby-2002-02-25-1.8.0_or_gpl.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +notes: https://cache.ruby-lang.org/pub/ruby/1.8/ruby-1.8.0.tar.gz +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.jp +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL (see the file GPL), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby-2002-02-25-1.8.0_or_gpl.yml b/src/licensedcode/data/rules/ruby-2002-02-25-1.8.0_or_gpl.yml deleted file mode 100644 index 423b69fc760..00000000000 --- a/src/licensedcode/data/rules/ruby-2002-02-25-1.8.0_or_gpl.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -notes: https://cache.ruby-lang.org/pub/ruby/1.8/ruby-1.8.0.tar.gz -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.jp diff --git a/src/licensedcode/data/rules/ruby-2006-06-09_or_gpl2.RULE b/src/licensedcode/data/rules/ruby-2006-06-09_or_gpl2.RULE index 103da69d626..4b84e2f1bdf 100644 --- a/src/licensedcode/data/rules/ruby-2006-06-09_or_gpl2.RULE +++ b/src/licensedcode/data/rules/ruby-2006-06-09_or_gpl2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +notes: | + specificied that the GPL version is V2 for dual licensing + https://raw.githubusercontent.com/ruby/ruby/9b383bd6cf96e1fe21c41528dec1f3ed508f335b/COPYING +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.jp +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the GPL version 2 (see the file GPL), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby-2006-06-09_or_gpl2.yml b/src/licensedcode/data/rules/ruby-2006-06-09_or_gpl2.yml deleted file mode 100644 index b8a347cb074..00000000000 --- a/src/licensedcode/data/rules/ruby-2006-06-09_or_gpl2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -notes: | - specificied that the GPL version is V2 for dual licensing - https://raw.githubusercontent.com/ruby/ruby/9b383bd6cf96e1fe21c41528dec1f3ed508f335b/COPYING -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.jp diff --git a/src/licensedcode/data/rules/ruby-2010-09-15_or_bsd.RULE b/src/licensedcode/data/rules/ruby-2010-09-15_or_bsd.RULE index a5d48f88eeb..73a91f441f2 100644 --- a/src/licensedcode/data/rules/ruby-2010-09-15_or_bsd.RULE +++ b/src/licensedcode/data/rules/ruby-2010-09-15_or_bsd.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ruby OR bsd-simplified +is_license_text: yes +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.jp +--- + JRuby distributes some ruby modules which are distributed under Ruby license: diff --git a/src/licensedcode/data/rules/ruby-2010-09-15_or_bsd.yml b/src/licensedcode/data/rules/ruby-2010-09-15_or_bsd.yml deleted file mode 100644 index 6637ae6dca3..00000000000 --- a/src/licensedcode/data/rules/ruby-2010-09-15_or_bsd.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby OR bsd-simplified -is_license_text: yes -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.jp diff --git a/src/licensedcode/data/rules/ruby.RULE b/src/licensedcode/data/rules/ruby.RULE index 2ac66fcca61..8d3a67fe5c5 100644 --- a/src/licensedcode/data/rules/ruby.RULE +++ b/src/licensedcode/data/rules/ruby.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ruby +is_license_text: yes +notes: from http://curb.rubyforge.org/files/LICENSE.html +--- + is free software licensed under the following terms: 1. You may make and give away verbatim copies of the source form of the diff --git a/src/licensedcode/data/rules/ruby.yml b/src/licensedcode/data/rules/ruby.yml deleted file mode 100644 index c908fd99c40..00000000000 --- a/src/licensedcode/data/rules/ruby.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_text: yes -notes: from http://curb.rubyforge.org/files/LICENSE.html diff --git a/src/licensedcode/data/rules/ruby_1.RULE b/src/licensedcode/data/rules/ruby_1.RULE index f08f4cab44b..aa42840ef65 100644 --- a/src/licensedcode/data/rules/ruby_1.RULE +++ b/src/licensedcode/data/rules/ruby_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ruby-lang.org/en/LICENSE.txt +--- + http://www.ruby-lang.org/en/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_1.yml b/src/licensedcode/data/rules/ruby_1.yml deleted file mode 100644 index 82ed4f13392..00000000000 --- a/src/licensedcode/data/rules/ruby_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ruby-lang.org/en/LICENSE.txt diff --git a/src/licensedcode/data/rules/ruby_10.RULE b/src/licensedcode/data/rules/ruby_10.RULE index e9f34cd0bf0..f4fb1ed37d6 100644 --- a/src/licensedcode/data/rules/ruby_10.RULE +++ b/src/licensedcode/data/rules/ruby_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + License You can redistribute and/or modify it under -the same terms as Ruby. +the same terms as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_10.yml b/src/licensedcode/data/rules/ruby_10.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_11.RULE b/src/licensedcode/data/rules/ruby_11.RULE index fcb704332be..66b9458ad8f 100644 --- a/src/licensedcode/data/rules/ruby_11.RULE +++ b/src/licensedcode/data/rules/ruby_11.RULE @@ -1 +1,7 @@ -You can redistribute and/or modify it under the same terms as Ruby. +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + +You can redistribute and/or modify it under the same terms as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_11.yml b/src/licensedcode/data/rules/ruby_11.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_12.RULE b/src/licensedcode/data/rules/ruby_12.RULE index 10cb6673b32..6249275698d 100644 --- a/src/licensedcode/data/rules/ruby_12.RULE +++ b/src/licensedcode/data/rules/ruby_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +referenced_filenames: + - README +--- + You can redistribute this file and/or modify it under the same term of Ruby. License of Ruby is included with Ruby distribution in the file "README". \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_12.yml b/src/licensedcode/data/rules/ruby_12.yml deleted file mode 100644 index eb442d467f4..00000000000 --- a/src/licensedcode/data/rules/ruby_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/ruby_13.RULE b/src/licensedcode/data/rules/ruby_13.RULE index cf97775e082..356588c073d 100644 --- a/src/licensedcode/data/rules/ruby_13.RULE +++ b/src/licensedcode/data/rules/ruby_13.RULE @@ -1 +1,7 @@ - License: Ruby's +--- +license_expression: ruby +is_license_tag: yes +relevance: 99 +--- + + License: Ruby's \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_13.yml b/src/licensedcode/data/rules/ruby_13.yml deleted file mode 100644 index dc74245506e..00000000000 --- a/src/licensedcode/data/rules/ruby_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ruby_14.RULE b/src/licensedcode/data/rules/ruby_14.RULE index 8dfa26a5399..677a94aacbd 100644 --- a/src/licensedcode/data/rules/ruby_14.RULE +++ b/src/licensedcode/data/rules/ruby_14.RULE @@ -1 +1,7 @@ -distributed under the terms of the Ruby license. +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + +distributed under the terms of the Ruby license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_14.yml b/src/licensedcode/data/rules/ruby_14.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_15.RULE b/src/licensedcode/data/rules/ruby_15.RULE index 76dbb2c4f82..f9acf7a65a5 100644 --- a/src/licensedcode/data/rules/ruby_15.RULE +++ b/src/licensedcode/data/rules/ruby_15.RULE @@ -1 +1,7 @@ -{{Ruby license}} +--- +license_expression: ruby +is_license_reference: yes +relevance: 80 +--- + +{{Ruby license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_15.yml b/src/licensedcode/data/rules/ruby_15.yml deleted file mode 100644 index bc7b3b318c7..00000000000 --- a/src/licensedcode/data/rules/ruby_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/ruby_16.RULE b/src/licensedcode/data/rules/ruby_16.RULE index 3bd3939e9dc..fad2e4beabb 100644 --- a/src/licensedcode/data/rules/ruby_16.RULE +++ b/src/licensedcode/data/rules/ruby_16.RULE @@ -1 +1,9 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.RUBY +--- + see LICENSE.RUBY for most files found in lib/ruby/stdlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_16.yml b/src/licensedcode/data/rules/ruby_16.yml deleted file mode 100644 index 7684acba792..00000000000 --- a/src/licensedcode/data/rules/ruby_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.RUBY diff --git a/src/licensedcode/data/rules/ruby_17.RULE b/src/licensedcode/data/rules/ruby_17.RULE index 65616c511ab..d313e6f5111 100644 --- a/src/licensedcode/data/rules/ruby_17.RULE +++ b/src/licensedcode/data/rules/ruby_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.RUBY +--- + distributed under the same license terms as the Ruby standard library. This includes all files under lib/ruby/stdlib/racc. See LICENSE.RUBY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_17.yml b/src/licensedcode/data/rules/ruby_17.yml deleted file mode 100644 index b894f6be0d7..00000000000 --- a/src/licensedcode/data/rules/ruby_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.RUBY diff --git a/src/licensedcode/data/rules/ruby_18.RULE b/src/licensedcode/data/rules/ruby_18.RULE index 75236f73a50..57b45539e56 100644 --- a/src/licensedcode/data/rules/ruby_18.RULE +++ b/src/licensedcode/data/rules/ruby_18.RULE @@ -1,2 +1,10 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.RUBY +--- + under the same license terms as the Ruby standard library. See LICENSE.RUBY \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_18.yml b/src/licensedcode/data/rules/ruby_18.yml deleted file mode 100644 index b894f6be0d7..00000000000 --- a/src/licensedcode/data/rules/ruby_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.RUBY diff --git a/src/licensedcode/data/rules/ruby_19.RULE b/src/licensedcode/data/rules/ruby_19.RULE index e998b34b8bd..f5effb1f5e4 100644 --- a/src/licensedcode/data/rules/ruby_19.RULE +++ b/src/licensedcode/data/rules/ruby_19.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + # You may redistribute and/or modify this library under the same license -# terms as Ruby. +# terms as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_19.yml b/src/licensedcode/data/rules/ruby_19.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_2.RULE b/src/licensedcode/data/rules/ruby_2.RULE index e6fa8f4e253..c6679c114be 100644 --- a/src/licensedcode/data/rules/ruby_2.RULE +++ b/src/licensedcode/data/rules/ruby_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +--- + This is a free software. You can distribute/modify this under the terms of the same as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_2.yml b/src/licensedcode/data/rules/ruby_2.yml deleted file mode 100644 index 5974b97bc1b..00000000000 --- a/src/licensedcode/data/rules/ruby_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_20.RULE b/src/licensedcode/data/rules/ruby_20.RULE index 9bf0a44362f..0cd90341bd7 100644 --- a/src/licensedcode/data/rules/ruby_20.RULE +++ b/src/licensedcode/data/rules/ruby_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 99 +--- + # License:: # You can redistribute it and/or modify it under the same terms of Ruby's -# license; either the dual license version in 2003, or any later version. +# license; either the dual license version in 2003, or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_20.yml b/src/licensedcode/data/rules/ruby_20.yml deleted file mode 100644 index 6c1d8338e5a..00000000000 --- a/src/licensedcode/data/rules/ruby_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/ruby_21.RULE b/src/licensedcode/data/rules/ruby_21.RULE index f9315aa0aef..0f17a7926dc 100644 --- a/src/licensedcode/data/rules/ruby_21.RULE +++ b/src/licensedcode/data/rules/ruby_21.RULE @@ -1 +1,7 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + You can redistribute it and/or modify it under the same terms as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_21.yml b/src/licensedcode/data/rules/ruby_21.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_22.RULE b/src/licensedcode/data/rules/ruby_22.RULE index ce4a2d69b17..0d94d736067 100644 --- a/src/licensedcode/data/rules/ruby_22.RULE +++ b/src/licensedcode/data/rules/ruby_22.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + # License:: -# You can redistribute it and/or modify it under the same term as Ruby. +# You can redistribute it and/or modify it under the same term as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_22.yml b/src/licensedcode/data/rules/ruby_22.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_23.RULE b/src/licensedcode/data/rules/ruby_23.RULE index f351a64696e..6885014bfb0 100644 --- a/src/licensedcode/data/rules/ruby_23.RULE +++ b/src/licensedcode/data/rules/ruby_23.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + is copyrighted free software by -# You can redistribute it and/or modify it under the same terms as Ruby. +# You can redistribute it and/or modify it under the same terms as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_23.yml b/src/licensedcode/data/rules/ruby_23.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_24.RULE b/src/licensedcode/data/rules/ruby_24.RULE index b43ad9d96e0..2d6dc928ee5 100644 --- a/src/licensedcode/data/rules/ruby_24.RULE +++ b/src/licensedcode/data/rules/ruby_24.RULE @@ -1 +1,7 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + project released under the Ruby license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_24.yml b/src/licensedcode/data/rules/ruby_24.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_25.RULE b/src/licensedcode/data/rules/ruby_25.RULE index bdecdb77c23..0d5694fdbac 100644 --- a/src/licensedcode/data/rules/ruby_25.RULE +++ b/src/licensedcode/data/rules/ruby_25.RULE @@ -1 +1,10 @@ +--- +license_expression: ruby +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Ruby License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_25.yml b/src/licensedcode/data/rules/ruby_25.yml deleted file mode 100644 index 16cd60a0c27..00000000000 --- a/src/licensedcode/data/rules/ruby_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ruby_26.RULE b/src/licensedcode/data/rules/ruby_26.RULE index 1080d7cc637..604e1bb9e1f 100644 --- a/src/licensedcode/data/rules/ruby_26.RULE +++ b/src/licensedcode/data/rules/ruby_26.RULE @@ -1 +1,10 @@ +--- +license_expression: ruby +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Ruby Ruby License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_26.yml b/src/licensedcode/data/rules/ruby_26.yml deleted file mode 100644 index 16cd60a0c27..00000000000 --- a/src/licensedcode/data/rules/ruby_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ruby_27.RULE b/src/licensedcode/data/rules/ruby_27.RULE index 54e469600c8..dc0b1b566dc 100644 --- a/src/licensedcode/data/rules/ruby_27.RULE +++ b/src/licensedcode/data/rules/ruby_27.RULE @@ -1 +1,10 @@ +--- +license_expression: ruby +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Ruby License Ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_27.yml b/src/licensedcode/data/rules/ruby_27.yml deleted file mode 100644 index 16cd60a0c27..00000000000 --- a/src/licensedcode/data/rules/ruby_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ruby_28.RULE b/src/licensedcode/data/rules/ruby_28.RULE index 5b64502ac65..a8b1684e394 100644 --- a/src/licensedcode/data/rules/ruby_28.RULE +++ b/src/licensedcode/data/rules/ruby_28.RULE @@ -1 +1,10 @@ +--- +license_expression: ruby +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Ruby License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_28.yml b/src/licensedcode/data/rules/ruby_28.yml deleted file mode 100644 index 4aff7739114..00000000000 --- a/src/licensedcode/data/rules/ruby_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ruby_29.RULE b/src/licensedcode/data/rules/ruby_29.RULE index 30609ae3c39..9b26e458b16 100644 --- a/src/licensedcode/data/rules/ruby_29.RULE +++ b/src/licensedcode/data/rules/ruby_29.RULE @@ -1 +1,10 @@ +--- +license_expression: ruby +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_29.yml b/src/licensedcode/data/rules/ruby_29.yml deleted file mode 100644 index 4aff7739114..00000000000 --- a/src/licensedcode/data/rules/ruby_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ruby_3.RULE b/src/licensedcode/data/rules/ruby_3.RULE index 7ed4673fe50..d32c45636d6 100644 --- a/src/licensedcode/data/rules/ruby_3.RULE +++ b/src/licensedcode/data/rules/ruby_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +--- + This is free software with ABSOLUTELY NO WARRANTY, released under the terms of the Ruby license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_3.yml b/src/licensedcode/data/rules/ruby_3.yml deleted file mode 100644 index 5974b97bc1b..00000000000 --- a/src/licensedcode/data/rules/ruby_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_30.RULE b/src/licensedcode/data/rules/ruby_30.RULE index 3a74ef87e8a..50e7aeacc0a 100644 --- a/src/licensedcode/data/rules/ruby_30.RULE +++ b/src/licensedcode/data/rules/ruby_30.RULE @@ -1 +1,10 @@ +--- +license_expression: ruby +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_30.yml b/src/licensedcode/data/rules/ruby_30.yml deleted file mode 100644 index 4aff7739114..00000000000 --- a/src/licensedcode/data/rules/ruby_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ruby_31.RULE b/src/licensedcode/data/rules/ruby_31.RULE index 39897727d99..0580f3a017f 100644 --- a/src/licensedcode/data/rules/ruby_31.RULE +++ b/src/licensedcode/data/rules/ruby_31.RULE @@ -1 +1,9 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Ruby +--- + https://licenses.nuget.org/Ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_31.yml b/src/licensedcode/data/rules/ruby_31.yml deleted file mode 100644 index c586c34c91f..00000000000 --- a/src/licensedcode/data/rules/ruby_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Ruby diff --git a/src/licensedcode/data/rules/ruby_32.RULE b/src/licensedcode/data/rules/ruby_32.RULE index 8cdbbfd633c..0623574ce62 100644 --- a/src/licensedcode/data/rules/ruby_32.RULE +++ b/src/licensedcode/data/rules/ruby_32.RULE @@ -1 +1,7 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_32.yml b/src/licensedcode/data/rules/ruby_32.yml deleted file mode 100644 index 5974b97bc1b..00000000000 --- a/src/licensedcode/data/rules/ruby_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_33.RULE b/src/licensedcode/data/rules/ruby_33.RULE index 588f6d3426e..3a028170fd6 100644 --- a/src/licensedcode/data/rules/ruby_33.RULE +++ b/src/licensedcode/data/rules/ruby_33.RULE @@ -1 +1,9 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Ruby +--- + {{Ruby}} https://spdx.org/licenses/Ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_33.yml b/src/licensedcode/data/rules/ruby_33.yml deleted file mode 100644 index 1fb44c69c19..00000000000 --- a/src/licensedcode/data/rules/ruby_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Ruby diff --git a/src/licensedcode/data/rules/ruby_34.RULE b/src/licensedcode/data/rules/ruby_34.RULE index 04d34308b7b..0f506654792 100644 --- a/src/licensedcode/data/rules/ruby_34.RULE +++ b/src/licensedcode/data/rules/ruby_34.RULE @@ -1 +1,9 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Ruby +--- + LICENSE {{Ruby}} https://spdx.org/licenses/Ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_34.yml b/src/licensedcode/data/rules/ruby_34.yml deleted file mode 100644 index 1fb44c69c19..00000000000 --- a/src/licensedcode/data/rules/ruby_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Ruby diff --git a/src/licensedcode/data/rules/ruby_4.RULE b/src/licensedcode/data/rules/ruby_4.RULE index 9a7d54a05e9..a37ac17ff60 100644 --- a/src/licensedcode/data/rules/ruby_4.RULE +++ b/src/licensedcode/data/rules/ruby_4.RULE @@ -1 +1,8 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +--- + You can distribute/modify this under the terms of the same as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_4.yml b/src/licensedcode/data/rules/ruby_4.yml deleted file mode 100644 index 211b19bd735..00000000000 --- a/src/licensedcode/data/rules/ruby_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/ruby_5.RULE b/src/licensedcode/data/rules/ruby_5.RULE index 1258effabfc..2933067b65e 100644 --- a/src/licensedcode/data/rules/ruby_5.RULE +++ b/src/licensedcode/data/rules/ruby_5.RULE @@ -1 +1,7 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + This library is distributed under the terms of the {{Ruby}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_5.yml b/src/licensedcode/data/rules/ruby_5.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_6.RULE b/src/licensedcode/data/rules/ruby_6.RULE index 63ea0e7c551..643464a000c 100644 --- a/src/licensedcode/data/rules/ruby_6.RULE +++ b/src/licensedcode/data/rules/ruby_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ruby +is_license_text: yes +--- + 1. You may make and give away verbatim copies of the source form of the software without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. @@ -45,4 +50,4 @@ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. + PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_6.yml b/src/licensedcode/data/rules/ruby_6.yml deleted file mode 100644 index 4b8a7544e6a..00000000000 --- a/src/licensedcode/data/rules/ruby_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ruby -is_license_text: yes diff --git a/src/licensedcode/data/rules/ruby_7.RULE b/src/licensedcode/data/rules/ruby_7.RULE index f82b2e24c87..7116125c510 100644 --- a/src/licensedcode/data/rules/ruby_7.RULE +++ b/src/licensedcode/data/rules/ruby_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ruby +is_license_notice: yes +--- + License: Ruby License @@ -6,4 +11,4 @@ software under the same terms as Ruby. 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. +FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_7.yml b/src/licensedcode/data/rules/ruby_7.yml deleted file mode 100644 index 1dba19c4743..00000000000 --- a/src/licensedcode/data/rules/ruby_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ruby -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ruby_8.RULE b/src/licensedcode/data/rules/ruby_8.RULE index e976e155cd5..ff7baa4781c 100644 --- a/src/licensedcode/data/rules/ruby_8.RULE +++ b/src/licensedcode/data/rules/ruby_8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ruby +is_license_notice: yes +--- + Ruby License This module is free software. You may use, modify, and/or redistribute this @@ -5,4 +10,4 @@ software under the same terms as Ruby. 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. +FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_8.yml b/src/licensedcode/data/rules/ruby_8.yml deleted file mode 100644 index 1dba19c4743..00000000000 --- a/src/licensedcode/data/rules/ruby_8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ruby -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ruby_9.RULE b/src/licensedcode/data/rules/ruby_9.RULE index 6a8af47ad0c..f803a8b3a00 100644 --- a/src/licensedcode/data/rules/ruby_9.RULE +++ b/src/licensedcode/data/rules/ruby_9.RULE @@ -1,6 +1,11 @@ +--- +license_expression: ruby +is_license_notice: yes +--- + This module is free software. You may use, modify, and/or redistribute this software under the same terms as Ruby. 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. +FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_9.yml b/src/licensedcode/data/rules/ruby_9.yml deleted file mode 100644 index 1dba19c4743..00000000000 --- a/src/licensedcode/data/rules/ruby_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ruby -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ruby_or_bsd-simplified_1.RULE b/src/licensedcode/data/rules/ruby_or_bsd-simplified_1.RULE index dd72fa69e69..d90d0d0b199 100644 --- a/src/licensedcode/data/rules/ruby_or_bsd-simplified_1.RULE +++ b/src/licensedcode/data/rules/ruby_or_bsd-simplified_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ruby OR bsd-simplified +is_license_text: yes +notes: Changed dual license terms to ruby or gpl v2 to ruby or bsd on 2019-09-15 https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.jp +--- + Ruby is copyrighted free software by Yukihiro Matsumoto . You can redistribute it and/or modify it under either the terms of the 2-clause BSDL (see the file BSDL), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby_or_bsd-simplified_1.yml b/src/licensedcode/data/rules/ruby_or_bsd-simplified_1.yml deleted file mode 100644 index ef7c2e205a9..00000000000 --- a/src/licensedcode/data/rules/ruby_or_bsd-simplified_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ruby OR bsd-simplified -is_license_text: yes -notes: Changed dual license terms to ruby or gpl v2 to ruby or bsd on 2019-09-15 https://raw.githubusercontent.com/ruby/ruby/2cd6800fd8437b1f862f3f5c44db877159271d17/COPYING -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.jp diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0-plus.RULE index 642dd569d3f..f4adf8b959b 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0-plus.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby OR gpl-2.0-plus OR gpl-3.0-plus +is_license_notice: yes +notes: from https://bogomips.org/unicorn.git/plain/ext/unicorn_http/unicorn_http.rl +--- + You can redistribute it and/or modify it under the same terms as Ruby 1.8 or -the GPLv2+ (GPLv3+ preferred) +the GPLv2+ (GPLv3+ preferred) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0-plus.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0-plus.yml deleted file mode 100644 index 860b235ea12..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0-plus.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby OR gpl-2.0-plus OR gpl-3.0-plus -is_license_notice: yes -notes: from https://bogomips.org/unicorn.git/plain/ext/unicorn_http/unicorn_http.rl diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_1.RULE index d96493e7d3c..4f8452c0c6c 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_notice: yes +referenced_filenames: + - gpl-2.0.txt +--- + is copyrighted free software. See README.rdoc in the top directory for authors. You can redistribute it and/or modify it under either the terms of the GPL @@ -54,4 +61,4 @@ version 2 (see the file ./gpl-2.0.txt), or the conditions below: 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. + PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_1.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_1.yml deleted file mode 100644 index ae72f401973..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_notice: yes -referenced_filenames: - - gpl-2.0.txt diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0.RULE index 889c6f9c210..67f1eb1d2c2 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +--- + is copyrighted free software produced by along with community contributions. See git log for authorship information. @@ -53,6 +58,4 @@ or GPLv3 (see GPLv2 and GPLv3 files), or the conditions below: 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. - - + PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0.yml deleted file mode 100644 index c1a0f73d2a0..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_1.RULE index 8756db12370..3178739c4a0 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_1.RULE @@ -1,2 +1,11 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - GPLv2 + - GPLv3 +--- + may be used under Matz's original licensing terms for Ruby, or GPLv2 or GPLv3. See LICENSE for Matz's terms, or GPLv2 and GPLv3 files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_1.yml deleted file mode 100644 index adf2dfde89b..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - GPLv2 - - GPLv3 diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_10.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_10.RULE index 4ac88e99fbf..3ac2732d6ad 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_10.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_10.RULE @@ -1,2 +1,9 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/lib/asciidoctor/pdf/ext/prawn/coderay_encoder.rb +--- + the file may be used under Matz's original licensing terms for Ruby, the GPLv2 license, or the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_10.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_10.yml deleted file mode 100644 index a88864870f3..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/lib/asciidoctor/pdf/ext/prawn/coderay_encoder.rb diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_2.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_2.RULE index 8ec7234b187..1c4343b378f 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_2.RULE @@ -1,2 +1,11 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - LICENSE + - GPLv2 + - GPLv3 +--- + PRAWN may be used under Matz's original licensing terms for Ruby, or GPLv2 or GPLv3. See LICENSE for Matz's terms, or GPLv2 and GPLv3 files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_2.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_2.yml deleted file mode 100644 index adf2dfde89b..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - LICENSE - - GPLv2 - - GPLv3 diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_3.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_3.RULE index 1e5c9f0687b..0f46f449135 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - GPLv2 + - GPLv3 +--- + Licensing terms follow: You can redistribute and/or modify it under either the terms of the GPLv2 diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_3.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_3.yml deleted file mode 100644 index dddaebd5eae..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - GPLv2 - - GPLv3 diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_4.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_4.RULE index 0ee3ef73275..c03202b9899 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - GPLv2 + - GPLv3 +--- + Prawn is copyrighted free software produced by along with community contributions. See git log for authorship information. diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_4.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_4.yml deleted file mode 100644 index dddaebd5eae..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - GPLv2 - - GPLv3 diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_5.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_5.RULE index c47699ee534..b3637bd1dde 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_5.RULE @@ -1 +1,11 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE + - GPLv2 + - GPLv3 +--- + licenses = %w[PRAWN GPL-2.0 GPL-3.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_5.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_5.yml deleted file mode 100644 index af2c0622437..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE - - GPLv2 - - GPLv3 diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_6.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_6.RULE index 96f30b0880d..c84252ddc8e 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_6.RULE @@ -1,2 +1,14 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE + - GPLv2 + - GPLv3 + - COPYING +--- + ["prawn-table.gemspec", "Gemfile", "COPYING", "LICENSE", "GPLv2", "GPLv3"] \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_6.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_6.yml deleted file mode 100644 index dca22d9ccfc..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_6.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE - - GPLv2 - - GPLv3 - - COPYING diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_7.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_7.RULE index d32941aa89a..03918cfca99 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_7.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +referenced_filenames: + - GPLv2 + - GPLv3 +--- + Licensing terms follow: You can redistribute Prawn and/or modify it under either the terms of the GPLv2 diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_7.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_7.yml deleted file mode 100644 index dddaebd5eae..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -referenced_filenames: - - GPLv2 - - GPLv3 diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_8.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_8.RULE index 0836c20019e..d136158d7c7 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_8.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_8.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE +--- + ## Licensing -Matz's terms for Ruby, GPLv2, or GPLv3. See LICENSE for details. +Matz's terms for Ruby, GPLv2, or GPLv3. See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_8.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_8.yml deleted file mode 100644 index bf45e8d9c0b..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_9.RULE b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_9.RULE index b97ba54ebc4..9d7c6ace30f 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_9.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_9.RULE @@ -1 +1,8 @@ +--- +license_expression: ruby OR gpl-2.0 OR gpl-3.0 +is_license_notice: yes +relevance: 100 +notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc +--- + may be used under Matz’s original licensing terms for Ruby, the GPLv2 license, or the GPLv3 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_9.yml b/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_9.yml deleted file mode 100644 index 557fd4e29b6..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-2.0_or_gpl-3.0_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ruby OR gpl-2.0 OR gpl-3.0 -is_license_notice: yes -relevance: 100 -notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc diff --git a/src/licensedcode/data/rules/ruby_or_gpl-3.0_1.RULE b/src/licensedcode/data/rules/ruby_or_gpl-3.0_1.RULE index 284487fc340..ce6e9a33590 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl-3.0_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby OR gpl-3.0 +is_license_notice: yes +notes: from https://bogomips.org/unicorn.git/plain/lib/unicorn/app/old_rails/static.rb +--- + # You can redistribute it and/or modify it under the same terms as Ruby 1.8 or # the GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl-3.0_1.yml b/src/licensedcode/data/rules/ruby_or_gpl-3.0_1.yml deleted file mode 100644 index c147a676c44..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby OR gpl-3.0 -is_license_notice: yes -notes: from https://bogomips.org/unicorn.git/plain/lib/unicorn/app/old_rails/static.rb diff --git a/src/licensedcode/data/rules/ruby_or_gpl.RULE b/src/licensedcode/data/rules/ruby_or_gpl.RULE index 05c5ae9de0f..8e574f72ff2 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl.RULE @@ -1,3 +1,14 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +referenced_filenames: + - COPYING.txt +ignorable_authors: + - Yukihiro Matsumoto +ignorable_emails: + - matz@netlab.co.jp +--- + Ruby License Ruby is copyrighted free software by Yukihiro Matsumoto . diff --git a/src/licensedcode/data/rules/ruby_or_gpl.yml b/src/licensedcode/data/rules/ruby_or_gpl.yml deleted file mode 100644 index c874560b5cf..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -referenced_filenames: - - COPYING.txt -ignorable_authors: - - Yukihiro Matsumoto -ignorable_emails: - - matz@netlab.co.jp diff --git a/src/licensedcode/data/rules/ruby_or_gpl_1.RULE b/src/licensedcode/data/rules/ruby_or_gpl_1.RULE index dce733b289e..bc739320dc3 100644 --- a/src/licensedcode/data/rules/ruby_or_gpl_1.RULE +++ b/src/licensedcode/data/rules/ruby_or_gpl_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ruby OR gpl-2.0 +is_license_text: yes +referenced_filenames: + - COPYING.txt +--- + You can redistribute it and/or modify it under either the terms of the GPL (see COPYING.txt file), or the conditions below: @@ -51,4 +58,4 @@ You can redistribute it and/or modify it under either the terms of the GPL 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. + PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_gpl_1.yml b/src/licensedcode/data/rules/ruby_or_gpl_1.yml deleted file mode 100644 index 98a1d1fe244..00000000000 --- a/src/licensedcode/data/rules/ruby_or_gpl_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ruby OR gpl-2.0 -is_license_text: yes -referenced_filenames: - - COPYING.txt diff --git a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_1.RULE index e56896f3e6c..5d9cab12f6a 100644 --- a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ruby OR lgpl-3.0-plus +is_license_notice: yes +minimum_coverage: 95 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + License: Ruby's or LGPL # # This library is free software: you can redistribute it and/or modify @@ -11,5 +19,4 @@ License: Ruby's or LGPL # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License -# along with this program. If not, see . - +# along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_1.yml b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_1.yml deleted file mode 100644 index 3028acbeb08..00000000000 --- a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby OR lgpl-3.0-plus -is_license_notice: yes -minimum_coverage: 95 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_2.RULE index 052e18b3148..8f926ce95df 100644 --- a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ruby OR lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +--- + license = "Ruby or LGPLv3+" \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_2.yml b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_2.yml deleted file mode 100644 index 1ec92f72aaa..00000000000 --- a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby OR lgpl-3.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_3.RULE index 244d2b1a933..1ed7ad24e69 100644 --- a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_3.RULE @@ -1 +1,9 @@ +--- +license_expression: ruby OR lgpl-3.0-plus +is_license_notice: yes +relevance: 90 +minimum_coverage: 100 +notes: this is found mostly in Ruby gettext +--- + This file is distributed under the same license as gettext. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_3.yml b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_3.yml deleted file mode 100644 index 99812a3fa21..00000000000 --- a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby OR lgpl-3.0-plus -is_license_notice: yes -relevance: 90 -minimum_coverage: 100 -notes: this is found mostly in Ruby gettext diff --git a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_4.RULE index 80a5967d329..9dfba6ae2f2 100644 --- a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ruby OR lgpl-3.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + License: Ruby's or LGPL # # This library is free software: you can redistribute it and/or modify @@ -11,5 +20,4 @@ License: Ruby's or LGPL # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License -# along with this program. If not, see . - +# along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_4.yml b/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_4.yml deleted file mode 100644 index 5a073a79744..00000000000 --- a/src/licensedcode/data/rules/ruby_or_lgpl-3.0-plus_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby OR lgpl-3.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/ruby_or_lgpl_1.RULE b/src/licensedcode/data/rules/ruby_or_lgpl_1.RULE index acf2f2ceec4..998e9de831a 100644 --- a/src/licensedcode/data/rules/ruby_or_lgpl_1.RULE +++ b/src/licensedcode/data/rules/ruby_or_lgpl_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby OR lgpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + # You may redistribute it and/or modify it under the same -# license terms as Ruby or LGPL. +# license terms as Ruby or LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_lgpl_1.yml b/src/licensedcode/data/rules/ruby_or_lgpl_1.yml deleted file mode 100644 index e1bf80bc1a9..00000000000 --- a/src/licensedcode/data/rules/ruby_or_lgpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby OR lgpl-2.0-plus -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_or_lgpl_2.RULE b/src/licensedcode/data/rules/ruby_or_lgpl_2.RULE index e89ecf969e0..2370a6cc14b 100644 --- a/src/licensedcode/data/rules/ruby_or_lgpl_2.RULE +++ b/src/licensedcode/data/rules/ruby_or_lgpl_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ruby OR lgpl-2.0-plus +is_license_tag: yes +relevance: 100 +--- + License: Ruby's or LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_or_lgpl_2.yml b/src/licensedcode/data/rules/ruby_or_lgpl_2.yml deleted file mode 100644 index 0cbaf747fe5..00000000000 --- a/src/licensedcode/data/rules/ruby_or_lgpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby OR lgpl-2.0-plus -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_or_mit_1.RULE b/src/licensedcode/data/rules/ruby_or_mit_1.RULE index 1aa18a4bcef..b411029f3d6 100644 --- a/src/licensedcode/data/rules/ruby_or_mit_1.RULE +++ b/src/licensedcode/data/rules/ruby_or_mit_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: ruby OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - MIT.txt +notes: Seen in Rubygems +--- + is copyrighted free software by You can redistribute it and/or modify it under either the terms of the MIT license (see the file MIT.txt), or the conditions below: diff --git a/src/licensedcode/data/rules/ruby_or_mit_1.yml b/src/licensedcode/data/rules/ruby_or_mit_1.yml deleted file mode 100644 index 1f1124454c9..00000000000 --- a/src/licensedcode/data/rules/ruby_or_mit_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ruby OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - MIT.txt -notes: Seen in Rubygems diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_1.RULE b/src/licensedcode/data/rules/ruby_same_as_ruby_1.RULE index dc72ad7c009..0785614b38b 100644 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_1.RULE +++ b/src/licensedcode/data/rules/ruby_same_as_ruby_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + # This program is copyrighted free software by . You can # redistribute it and/or modify it under the same terms of Ruby's license; -# either the dual license version in 2003, or any later version. +# either the dual license version in 2003, or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_1.yml b/src/licensedcode/data/rules/ruby_same_as_ruby_1.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_2.RULE b/src/licensedcode/data/rules/ruby_same_as_ruby_2.RULE index 7e03a855803..3d97027b756 100644 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_2.RULE +++ b/src/licensedcode/data/rules/ruby_same_as_ruby_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +--- + is copyrighted free software by Masatoshi SEKI. -# You can redistribute it and/or modify it under the same terms as Ruby. +# You can redistribute it and/or modify it under the same terms as Ruby. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_2.yml b/src/licensedcode/data/rules/ruby_same_as_ruby_2.yml deleted file mode 100644 index 33fa66e16ec..00000000000 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_3.RULE b/src/licensedcode/data/rules/ruby_same_as_ruby_3.RULE index 1845b7ed5d0..68c9cc10619 100644 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_3.RULE +++ b/src/licensedcode/data/rules/ruby_same_as_ruby_3.RULE @@ -1,5 +1,13 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +referenced_filenames: + - RUBYS +--- + This program is copyrighted free software by You can redistribute it and/or modify it under the same terms of Ruby's license; either the dual license version in 2003 (see the file RUBYS), or any later -version. +version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_3.yml b/src/licensedcode/data/rules/ruby_same_as_ruby_3.yml deleted file mode 100644 index 60a3de9f854..00000000000 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 -referenced_filenames: - - RUBYS diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_4.RULE b/src/licensedcode/data/rules/ruby_same_as_ruby_4.RULE index c86d18f5143..93048954a91 100644 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_4.RULE +++ b/src/licensedcode/data/rules/ruby_same_as_ruby_4.RULE @@ -1,4 +1,12 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +referenced_filenames: + - RUBYS +--- + You can redistribute it and/or modify it under the same terms of Ruby's license; either the dual license version in 2003 (see the file RUBYS), or any later -version. +version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_4.yml b/src/licensedcode/data/rules/ruby_same_as_ruby_4.yml deleted file mode 100644 index 60a3de9f854..00000000000 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 -referenced_filenames: - - RUBYS diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_5.RULE b/src/licensedcode/data/rules/ruby_same_as_ruby_5.RULE index cf2cd3d173a..1173321fc4e 100644 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_5.RULE +++ b/src/licensedcode/data/rules/ruby_same_as_ruby_5.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ruby +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENCE +--- + == Licence This program is licensed under the same licence as Ruby. - (See the file 'LICENCE'.) + (See the file 'LICENCE'.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_same_as_ruby_5.yml b/src/licensedcode/data/rules/ruby_same_as_ruby_5.yml deleted file mode 100644 index 668bda11ad0..00000000000 --- a/src/licensedcode/data/rules/ruby_same_as_ruby_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/ruby_url_1.RULE b/src/licensedcode/data/rules/ruby_url_1.RULE index b46aef0f3ed..79c7db94fd6 100644 --- a/src/licensedcode/data/rules/ruby_url_1.RULE +++ b/src/licensedcode/data/rules/ruby_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ruby +--- + https://spdx.org/licenses/ruby \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_url_1.yml b/src/licensedcode/data/rules/ruby_url_1.yml deleted file mode 100644 index 359c061e354..00000000000 --- a/src/licensedcode/data/rules/ruby_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ruby diff --git a/src/licensedcode/data/rules/ruby_url_2.RULE b/src/licensedcode/data/rules/ruby_url_2.RULE index adb18424ad4..7e389b00724 100644 --- a/src/licensedcode/data/rules/ruby_url_2.RULE +++ b/src/licensedcode/data/rules/ruby_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ruby +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ruby.html +--- + https://spdx.org/licenses/ruby.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ruby_url_2.yml b/src/licensedcode/data/rules/ruby_url_2.yml deleted file mode 100644 index eee7699e875..00000000000 --- a/src/licensedcode/data/rules/ruby_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ruby -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ruby.html diff --git a/src/licensedcode/data/rules/rute.RULE b/src/licensedcode/data/rules/rute.RULE index 0711390d722..e1d306fae68 100644 --- a/src/licensedcode/data/rules/rute.RULE +++ b/src/licensedcode/data/rules/rute.RULE @@ -1 +1,9 @@ +--- +license_expression: rute +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://rute.sourceforge.net/ +--- + http://rute.sourceforge.net/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/rute.yml b/src/licensedcode/data/rules/rute.yml deleted file mode 100644 index 1dc1e8eab92..00000000000 --- a/src/licensedcode/data/rules/rute.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: rute -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://rute.sourceforge.net/ diff --git a/src/licensedcode/data/rules/rxtx-exception-lgpl-2.1_1.RULE b/src/licensedcode/data/rules/rxtx-exception-lgpl-2.1_1.RULE index ce3d37ea0ed..6136551d50f 100644 --- a/src/licensedcode/data/rules/rxtx-exception-lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/rxtx-exception-lgpl-2.1_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 +is_license_notice: yes +minimum_coverage: 50 +ignorable_copyrights: + - Copyright by Trent Jarvi tjarvi@qbang.org and others +ignorable_holders: + - Trent Jarvi and others +ignorable_urls: + - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface +ignorable_emails: + - tjarvi@qbang.org +--- + RXTX License v 2.1 - LGPL v 2.1 + Linking Over Controlled Interface. RXTX is a native interface to serial ports in java. Copyright by Trent Jarvi tjarvi@qbang.org and others who @@ -36,4 +50,4 @@ their choice whether to do so. The GNU Lesser General Public License gives permission to release a modified version without this exception; this exception also makes it possible to release a modified version which - carries forward this exception. + carries forward this exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/rxtx-exception-lgpl-2.1_1.yml b/src/licensedcode/data/rules/rxtx-exception-lgpl-2.1_1.yml deleted file mode 100644 index 75438aca04f..00000000000 --- a/src/licensedcode/data/rules/rxtx-exception-lgpl-2.1_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: lgpl-2.1-plus WITH rxtx-exception-lgpl-2.1 -is_license_notice: yes -minimum_coverage: 50 -ignorable_copyrights: - - Copyright by Trent Jarvi tjarvi@qbang.org and others -ignorable_holders: - - Trent Jarvi and others -ignorable_urls: - - http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface -ignorable_emails: - - tjarvi@qbang.org diff --git a/src/licensedcode/data/rules/same_as_qt.RULE b/src/licensedcode/data/rules/same_as_qt.RULE index 0f4f6dd262c..f3a0dbefa08 100644 --- a/src/licensedcode/data/rules/same_as_qt.RULE +++ b/src/licensedcode/data/rules/same_as_qt.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + are derivatives of Qt and are licensed under the same terms as Qt \ No newline at end of file diff --git a/src/licensedcode/data/rules/same_as_qt.yml b/src/licensedcode/data/rules/same_as_qt.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/same_as_qt.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sane-exception-2.0-plus_1.RULE b/src/licensedcode/data/rules/sane-exception-2.0-plus_1.RULE index 6759668d81e..8be99c06cf6 100644 --- a/src/licensedcode/data/rules/sane-exception-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/sane-exception-2.0-plus_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sane-exception-2.0-plus +is_license_text: yes +relevance: 100 +--- + As a special exception, the authors of SANE give permission for additional uses of the libraries contained in this release of SANE. diff --git a/src/licensedcode/data/rules/sane-exception-2.0-plus_1.yml b/src/licensedcode/data/rules/sane-exception-2.0-plus_1.yml deleted file mode 100644 index a7db7d89a25..00000000000 --- a/src/licensedcode/data/rules/sane-exception-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sane-exception-2.0-plus -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sash_1.RULE b/src/licensedcode/data/rules/sash_1.RULE index c7d2a960dd9..b75e1480a0c 100644 --- a/src/licensedcode/data/rules/sash_1.RULE +++ b/src/licensedcode/data/rules/sash_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: 3com-microcode +is_license_text: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING +--- + Permission is granted to use, distribute, or modify this source, provided that this copyright notice remains intact. diff --git a/src/licensedcode/data/rules/sash_1.yml b/src/licensedcode/data/rules/sash_1.yml deleted file mode 100644 index 1897a6774bd..00000000000 --- a/src/licensedcode/data/rules/sash_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: 3com-microcode -is_license_text: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/sash_or_gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/sash_or_gpl-1.0-plus_1.RULE index 63672e01bc0..a82c313a763 100644 --- a/src/licensedcode/data/rules/sash_or_gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/sash_or_gpl-1.0-plus_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sash OR gpl-1.0-plus +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + * Permission is granted to use, distribute, or modify this source, * provided that this copyright notice remains intact. * Permission to distribute sash derived code under GPL has been granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sash_or_gpl-1.0-plus_1.yml b/src/licensedcode/data/rules/sash_or_gpl-1.0-plus_1.yml deleted file mode 100644 index 56b99d60499..00000000000 --- a/src/licensedcode/data/rules/sash_or_gpl-1.0-plus_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sash OR gpl-1.0-plus -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/sata_1.RULE b/src/licensedcode/data/rules/sata_1.RULE index 102cfe2d8e8..0319289448a 100644 --- a/src/licensedcode/data/rules/sata_1.RULE +++ b/src/licensedcode/data/rules/sata_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sata +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/sata_1.yml b/src/licensedcode/data/rules/sata_1.yml deleted file mode 100644 index 85f494c7d36..00000000000 --- a/src/licensedcode/data/rules/sata_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sata -is_license_text: yes diff --git a/src/licensedcode/data/rules/sax-pd_1.RULE b/src/licensedcode/data/rules/sax-pd_1.RULE index ca720df9edd..6fe897be4b4 100644 --- a/src/licensedcode/data/rules/sax-pd_1.RULE +++ b/src/licensedcode/data/rules/sax-pd_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.spdx.org/licenses/SAX-PD +--- + http://www.spdx.org/licenses/SAX-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_1.yml b/src/licensedcode/data/rules/sax-pd_1.yml deleted file mode 100644 index b159fe8e5ec..00000000000 --- a/src/licensedcode/data/rules/sax-pd_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.spdx.org/licenses/SAX-PD diff --git a/src/licensedcode/data/rules/sax-pd_10.RULE b/src/licensedcode/data/rules/sax-pd_10.RULE index 242517a53c6..d9e10fd9f3f 100644 --- a/src/licensedcode/data/rules/sax-pd_10.RULE +++ b/src/licensedcode/data/rules/sax-pd_10.RULE @@ -1,2 +1,10 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.saxproject.org/ +--- + / http://www.saxproject.org -/ NO WARRANTY! This class is in the public domain. +/ NO WARRANTY! This class is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_10.yml b/src/licensedcode/data/rules/sax-pd_10.yml deleted file mode 100644 index 492222c1c2c..00000000000 --- a/src/licensedcode/data/rules/sax-pd_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.saxproject.org/ diff --git a/src/licensedcode/data/rules/sax-pd_11.RULE b/src/licensedcode/data/rules/sax-pd_11.RULE index adc4e8bc449..68cf24cbdae 100644 --- a/src/licensedcode/data/rules/sax-pd_11.RULE +++ b/src/licensedcode/data/rules/sax-pd_11.RULE @@ -1 +1,7 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +--- + SAX2 Attributes object. This class is in the Public Domain, and comes with NO WARRANTY of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_11.yml b/src/licensedcode/data/rules/sax-pd_11.yml deleted file mode 100644 index 71ff3f861ac..00000000000 --- a/src/licensedcode/data/rules/sax-pd_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sax-pd_12.RULE b/src/licensedcode/data/rules/sax-pd_12.RULE index be47448d376..2bcf232c86d 100644 --- a/src/licensedcode/data/rules/sax-pd_12.RULE +++ b/src/licensedcode/data/rules/sax-pd_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +--- + SAX drivers. * This module, both source code and documentation, is in the diff --git a/src/licensedcode/data/rules/sax-pd_12.yml b/src/licensedcode/data/rules/sax-pd_12.yml deleted file mode 100644 index 71ff3f861ac..00000000000 --- a/src/licensedcode/data/rules/sax-pd_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sax-pd_13.RULE b/src/licensedcode/data/rules/sax-pd_13.RULE index 654b0648240..6308d33043c 100644 --- a/src/licensedcode/data/rules/sax-pd_13.RULE +++ b/src/licensedcode/data/rules/sax-pd_13.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_tag: yes +relevance: 90 +ignorable_urls: + - http://www.xmlpull.org/ +--- + License: Public Domain (http://www.xmlpull.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_13.yml b/src/licensedcode/data/rules/sax-pd_13.yml deleted file mode 100644 index 29441f6f0ff..00000000000 --- a/src/licensedcode/data/rules/sax-pd_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_tag: yes -relevance: 90 -ignorable_urls: - - http://www.xmlpull.org/ diff --git a/src/licensedcode/data/rules/sax-pd_14.RULE b/src/licensedcode/data/rules/sax-pd_14.RULE index ffa40fcc026..1c0e43400db 100644 --- a/src/licensedcode/data/rules/sax-pd_14.RULE +++ b/src/licensedcode/data/rules/sax-pd_14.RULE @@ -1 +1,9 @@ -License: Public Domain (http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt +--- +license_expression: sax-pd +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt +--- + +License: Public Domain (http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_14.yml b/src/licensedcode/data/rules/sax-pd_14.yml deleted file mode 100644 index 6dcecef5935..00000000000 --- a/src/licensedcode/data/rules/sax-pd_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt diff --git a/src/licensedcode/data/rules/sax-pd_15.RULE b/src/licensedcode/data/rules/sax-pd_15.RULE index d79112f80bc..2ff79ee5823 100644 --- a/src/licensedcode/data/rules/sax-pd_15.RULE +++ b/src/licensedcode/data/rules/sax-pd_15.RULE @@ -1,5 +1,11 @@ +--- +license_expression: sax-pd +is_license_text: yes +relevance: 100 +--- + All of the API source code, compiled code, and documentation contained in this distribution *except* for tests (see separate LICENSE_TESTS.txt) are in the Public Domain. - API comes with NO WARRANTY or guarantee of fitness for any purpose. + API comes with NO WARRANTY or guarantee of fitness for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_15.yml b/src/licensedcode/data/rules/sax-pd_15.yml deleted file mode 100644 index 1c6f28dae52..00000000000 --- a/src/licensedcode/data/rules/sax-pd_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sax-pd_16.RULE b/src/licensedcode/data/rules/sax-pd_16.RULE index adbcd6f8ae2..f1ea600e4a2 100644 --- a/src/licensedcode/data/rules/sax-pd_16.RULE +++ b/src/licensedcode/data/rules/sax-pd_16.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.sax.txt +--- + SAX is public domain. See LICENSE.sax.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_16.yml b/src/licensedcode/data/rules/sax-pd_16.yml deleted file mode 100644 index b72f67fe500..00000000000 --- a/src/licensedcode/data/rules/sax-pd_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.sax.txt diff --git a/src/licensedcode/data/rules/sax-pd_17.RULE b/src/licensedcode/data/rules/sax-pd_17.RULE index d6c3275f0c8..e482f1157ee 100644 --- a/src/licensedcode/data/rules/sax-pd_17.RULE +++ b/src/licensedcode/data/rules/sax-pd_17.RULE @@ -1 +1,11 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +ignorable_urls: + - http://www.xmlpull.org/ +--- + for license please see accompanying LICENSE.txt file (available also at http://www.xmlpull.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_17.yml b/src/licensedcode/data/rules/sax-pd_17.yml deleted file mode 100644 index 5fed970f517..00000000000 --- a/src/licensedcode/data/rules/sax-pd_17.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -ignorable_urls: - - http://www.xmlpull.org/ diff --git a/src/licensedcode/data/rules/sax-pd_18.RULE b/src/licensedcode/data/rules/sax-pd_18.RULE index 7243a4bbda3..a09b3551636 100644 --- a/src/licensedcode/data/rules/sax-pd_18.RULE +++ b/src/licensedcode/data/rules/sax-pd_18.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sax-pd +is_license_text: yes +relevance: 100 +ignorable_emails: + - david@megginson.com + - sax@megginson.com +--- + Copyright Status SAX is free! diff --git a/src/licensedcode/data/rules/sax-pd_18.yml b/src/licensedcode/data/rules/sax-pd_18.yml deleted file mode 100644 index 75cb8468eca..00000000000 --- a/src/licensedcode/data/rules/sax-pd_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_text: yes -relevance: 100 -ignorable_emails: - - david@megginson.com - - sax@megginson.com diff --git a/src/licensedcode/data/rules/sax-pd_19.RULE b/src/licensedcode/data/rules/sax-pd_19.RULE index 6d35e8abfa7..ada91aa602e 100644 --- a/src/licensedcode/data/rules/sax-pd_19.RULE +++ b/src/licensedcode/data/rules/sax-pd_19.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sax-pd +is_license_text: yes +relevance: 100 +ignorable_emails: + - david@megginson.com + - sax@megginson.com +--- + Copyright Status SAX is free! diff --git a/src/licensedcode/data/rules/sax-pd_19.yml b/src/licensedcode/data/rules/sax-pd_19.yml deleted file mode 100644 index 75cb8468eca..00000000000 --- a/src/licensedcode/data/rules/sax-pd_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_text: yes -relevance: 100 -ignorable_emails: - - david@megginson.com - - sax@megginson.com diff --git a/src/licensedcode/data/rules/sax-pd_2.RULE b/src/licensedcode/data/rules/sax-pd_2.RULE index fe4b096b2e8..1871cd96dee 100644 --- a/src/licensedcode/data/rules/sax-pd_2.RULE +++ b/src/licensedcode/data/rules/sax-pd_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sax-pd +is_license_text: yes +ignorable_urls: + - http://saxproject.org/?selected=pd + - http://www.megginson.com/SAX/copying.html + - http://www.saxproject.org/ +--- + This license came from: http://www.megginson.com/SAX/copying.html However please note future versions of SAX may be covered under http://saxproject.org/?selected=pd @@ -14,4 +23,4 @@ I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and release all of the SAX 2.0 source code, compiled code, and documentation contained in this distribution into the Public Domain. SAX comes with NO WARRANTY or guarantee of fitness for any -purpose. +purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_2.yml b/src/licensedcode/data/rules/sax-pd_2.yml deleted file mode 100644 index 5d43255957b..00000000000 --- a/src/licensedcode/data/rules/sax-pd_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_text: yes -ignorable_urls: - - http://saxproject.org/?selected=pd - - http://www.megginson.com/SAX/copying.html - - http://www.saxproject.org/ diff --git a/src/licensedcode/data/rules/sax-pd_20.RULE b/src/licensedcode/data/rules/sax-pd_20.RULE index 98077aed5f4..2758f42d2bb 100644 --- a/src/licensedcode/data/rules/sax-pd_20.RULE +++ b/src/licensedcode/data/rules/sax-pd_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +--- + I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and release all of the SAX 2.0 source code, compiled code, and documentation contained in this distribution into the Public Domain. diff --git a/src/licensedcode/data/rules/sax-pd_20.yml b/src/licensedcode/data/rules/sax-pd_20.yml deleted file mode 100644 index 71ff3f861ac..00000000000 --- a/src/licensedcode/data/rules/sax-pd_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sax-pd_21.RULE b/src/licensedcode/data/rules/sax-pd_21.RULE index 5089ef13212..5ffcf29591a 100644 --- a/src/licensedcode/data/rules/sax-pd_21.RULE +++ b/src/licensedcode/data/rules/sax-pd_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://saxproject.org/?selected=pd + - http://www.megginson.com/SAX/copying.html +--- + This license came from: http://www.megginson.com/SAX/copying.html However please note future versions of SAX may be covered under http://saxproject.org/?selected=pd diff --git a/src/licensedcode/data/rules/sax-pd_21.yml b/src/licensedcode/data/rules/sax-pd_21.yml deleted file mode 100644 index 3a52e5b0e57..00000000000 --- a/src/licensedcode/data/rules/sax-pd_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://saxproject.org/?selected=pd - - http://www.megginson.com/SAX/copying.html diff --git a/src/licensedcode/data/rules/sax-pd_22.RULE b/src/licensedcode/data/rules/sax-pd_22.RULE index 770289eccfe..f6b7180a397 100644 --- a/src/licensedcode/data/rules/sax-pd_22.RULE +++ b/src/licensedcode/data/rules/sax-pd_22.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sax Public Domain Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_22.yml b/src/licensedcode/data/rules/sax-pd_22.yml deleted file mode 100644 index f1e23e7b0f0..00000000000 --- a/src/licensedcode/data/rules/sax-pd_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sax-pd_23.RULE b/src/licensedcode/data/rules/sax-pd_23.RULE index 74501a470c6..d3b1639322f 100644 --- a/src/licensedcode/data/rules/sax-pd_23.RULE +++ b/src/licensedcode/data/rules/sax-pd_23.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Sax Public Domain Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_23.yml b/src/licensedcode/data/rules/sax-pd_23.yml deleted file mode 100644 index f1e23e7b0f0..00000000000 --- a/src/licensedcode/data/rules/sax-pd_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sax-pd_24.RULE b/src/licensedcode/data/rules/sax-pd_24.RULE index 5a3cb4b0a4c..e3b6097bba2 100644 --- a/src/licensedcode/data/rules/sax-pd_24.RULE +++ b/src/licensedcode/data/rules/sax-pd_24.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SAX-PD Sax Public Domain Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_24.yml b/src/licensedcode/data/rules/sax-pd_24.yml deleted file mode 100644 index f1e23e7b0f0..00000000000 --- a/src/licensedcode/data/rules/sax-pd_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sax-pd_25.RULE b/src/licensedcode/data/rules/sax-pd_25.RULE index 40fee011c84..458b7e97785 100644 --- a/src/licensedcode/data/rules/sax-pd_25.RULE +++ b/src/licensedcode/data/rules/sax-pd_25.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sax Public Domain Notice SAX-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_25.yml b/src/licensedcode/data/rules/sax-pd_25.yml deleted file mode 100644 index f1e23e7b0f0..00000000000 --- a/src/licensedcode/data/rules/sax-pd_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sax-pd_26.RULE b/src/licensedcode/data/rules/sax-pd_26.RULE index 9d8762e9d37..95d01d38634 100644 --- a/src/licensedcode/data/rules/sax-pd_26.RULE +++ b/src/licensedcode/data/rules/sax-pd_26.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SAX-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_26.yml b/src/licensedcode/data/rules/sax-pd_26.yml deleted file mode 100644 index bc97fd3a894..00000000000 --- a/src/licensedcode/data/rules/sax-pd_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sax-pd_27.RULE b/src/licensedcode/data/rules/sax-pd_27.RULE index d6e505f369c..eb2b1a0209e 100644 --- a/src/licensedcode/data/rules/sax-pd_27.RULE +++ b/src/licensedcode/data/rules/sax-pd_27.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sax Public Domain Notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_27.yml b/src/licensedcode/data/rules/sax-pd_27.yml deleted file mode 100644 index bc97fd3a894..00000000000 --- a/src/licensedcode/data/rules/sax-pd_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sax-pd_28.RULE b/src/licensedcode/data/rules/sax-pd_28.RULE index 042849c8261..88f5f38ddc1 100644 --- a/src/licensedcode/data/rules/sax-pd_28.RULE +++ b/src/licensedcode/data/rules/sax-pd_28.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SAX-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_28.yml b/src/licensedcode/data/rules/sax-pd_28.yml deleted file mode 100644 index bc97fd3a894..00000000000 --- a/src/licensedcode/data/rules/sax-pd_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sax-pd_29.RULE b/src/licensedcode/data/rules/sax-pd_29.RULE index 2b69da7cc0b..fbd239a1b15 100644 --- a/src/licensedcode/data/rules/sax-pd_29.RULE +++ b/src/licensedcode/data/rules/sax-pd_29.RULE @@ -1 +1,7 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +--- + The SAX License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_29.yml b/src/licensedcode/data/rules/sax-pd_29.yml deleted file mode 100644 index 62efea61ebf..00000000000 --- a/src/licensedcode/data/rules/sax-pd_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sax-pd_3.RULE b/src/licensedcode/data/rules/sax-pd_3.RULE index edbc8fbf87a..55aacdac0af 100644 --- a/src/licensedcode/data/rules/sax-pd_3.RULE +++ b/src/licensedcode/data/rules/sax-pd_3.RULE @@ -1,2 +1,10 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.saxproject.org/ +--- + http://www.saxproject.org - No warranty; no copyright -- use this as you will. + No warranty; no copyright -- use this as you will. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_3.yml b/src/licensedcode/data/rules/sax-pd_3.yml deleted file mode 100644 index 492222c1c2c..00000000000 --- a/src/licensedcode/data/rules/sax-pd_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.saxproject.org/ diff --git a/src/licensedcode/data/rules/sax-pd_30.RULE b/src/licensedcode/data/rules/sax-pd_30.RULE index 322fa460f1c..45de9f22a16 100644 --- a/src/licensedcode/data/rules/sax-pd_30.RULE +++ b/src/licensedcode/data/rules/sax-pd_30.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SAX-PD +--- + https://licenses.nuget.org/SAX-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_30.yml b/src/licensedcode/data/rules/sax-pd_30.yml deleted file mode 100644 index 600a2c13c38..00000000000 --- a/src/licensedcode/data/rules/sax-pd_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SAX-PD diff --git a/src/licensedcode/data/rules/sax-pd_31.RULE b/src/licensedcode/data/rules/sax-pd_31.RULE index bb1151d1778..51448d92e18 100644 --- a/src/licensedcode/data/rules/sax-pd_31.RULE +++ b/src/licensedcode/data/rules/sax-pd_31.RULE @@ -1 +1,7 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SAX-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_31.yml b/src/licensedcode/data/rules/sax-pd_31.yml deleted file mode 100644 index 62efea61ebf..00000000000 --- a/src/licensedcode/data/rules/sax-pd_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sax-pd_32.RULE b/src/licensedcode/data/rules/sax-pd_32.RULE index f73a82471a1..b35a7c0cf65 100644 --- a/src/licensedcode/data/rules/sax-pd_32.RULE +++ b/src/licensedcode/data/rules/sax-pd_32.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SAX-PD +--- + {{SAX-PD}} https://spdx.org/licenses/SAX-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_32.yml b/src/licensedcode/data/rules/sax-pd_32.yml deleted file mode 100644 index b6038a06152..00000000000 --- a/src/licensedcode/data/rules/sax-pd_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SAX-PD diff --git a/src/licensedcode/data/rules/sax-pd_33.RULE b/src/licensedcode/data/rules/sax-pd_33.RULE index c118dc46350..db919de31ea 100644 --- a/src/licensedcode/data/rules/sax-pd_33.RULE +++ b/src/licensedcode/data/rules/sax-pd_33.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SAX-PD +--- + LICENSE {{SAX-PD}} https://spdx.org/licenses/SAX-PD \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_33.yml b/src/licensedcode/data/rules/sax-pd_33.yml deleted file mode 100644 index b6038a06152..00000000000 --- a/src/licensedcode/data/rules/sax-pd_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SAX-PD diff --git a/src/licensedcode/data/rules/sax-pd_4.RULE b/src/licensedcode/data/rules/sax-pd_4.RULE index 2aeedcc4721..5208bc04376 100644 --- a/src/licensedcode/data/rules/sax-pd_4.RULE +++ b/src/licensedcode/data/rules/sax-pd_4.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.saxproject.org/copying.html +--- + http://www.saxproject.org/copying.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_4.yml b/src/licensedcode/data/rules/sax-pd_4.yml deleted file mode 100644 index 7e2b1ed89cb..00000000000 --- a/src/licensedcode/data/rules/sax-pd_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.saxproject.org/copying.html diff --git a/src/licensedcode/data/rules/sax-pd_5.RULE b/src/licensedcode/data/rules/sax-pd_5.RULE index 913df71642b..e2d211d2fb4 100644 --- a/src/licensedcode/data/rules/sax-pd_5.RULE +++ b/src/licensedcode/data/rules/sax-pd_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sax-pd +is_license_text: yes +notes: SAX declaration +--- + I hereby abandon any property rights to SAX 2.0 the Simple API for XML , and release all of the SAX 2.0 source code, compiled code, and -documentation contained in this distribution into the Public Domain. +documentation contained in this distribution into the Public Domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_5.yml b/src/licensedcode/data/rules/sax-pd_5.yml deleted file mode 100644 index e3dbaf194c5..00000000000 --- a/src/licensedcode/data/rules/sax-pd_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_text: yes -notes: SAX declaration diff --git a/src/licensedcode/data/rules/sax-pd_6.RULE b/src/licensedcode/data/rules/sax-pd_6.RULE index adea6f3a4de..a86b2d29218 100644 --- a/src/licensedcode/data/rules/sax-pd_6.RULE +++ b/src/licensedcode/data/rules/sax-pd_6.RULE @@ -1,4 +1,12 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.saxproject.org/ +--- + This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY See http://www.saxproject.org -for further information. +for further information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_6.yml b/src/licensedcode/data/rules/sax-pd_6.yml deleted file mode 100644 index 492222c1c2c..00000000000 --- a/src/licensedcode/data/rules/sax-pd_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.saxproject.org/ diff --git a/src/licensedcode/data/rules/sax-pd_7.RULE b/src/licensedcode/data/rules/sax-pd_7.RULE index 8a82fd3ca41..3f22a1014f8 100644 --- a/src/licensedcode/data/rules/sax-pd_7.RULE +++ b/src/licensedcode/data/rules/sax-pd_7.RULE @@ -1,8 +1,13 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +--- + SAX IS FREE ----------- I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and release all of the SAX 2.0 source code, compiled code, and documentation contained in this distribution into the Public Domain. -SAX comes with NO WARRANTY or guarantee of fitness for any purpose. - +SAX comes with NO WARRANTY or guarantee of fitness for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_7.yml b/src/licensedcode/data/rules/sax-pd_7.yml deleted file mode 100644 index 71ff3f861ac..00000000000 --- a/src/licensedcode/data/rules/sax-pd_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sax-pd_8.RULE b/src/licensedcode/data/rules/sax-pd_8.RULE index 1133aeef2e9..a85f7d66dbd 100644 --- a/src/licensedcode/data/rules/sax-pd_8.RULE +++ b/src/licensedcode/data/rules/sax-pd_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +--- + SAX COPYRIGHT STATUS Version 1.0 of the Simple API for XML (SAX), created collectively by @@ -31,5 +37,4 @@ inability to use SAX (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 SAX to operate with any other programs), even if such holder or other party has been advised of the possibility -of such damages. - +of such damages. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_8.yml b/src/licensedcode/data/rules/sax-pd_8.yml deleted file mode 100644 index 71ff3f861ac..00000000000 --- a/src/licensedcode/data/rules/sax-pd_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sax-pd_9.RULE b/src/licensedcode/data/rules/sax-pd_9.RULE index 6bb4cd6bf45..6fbb2a4f9e7 100644 --- a/src/licensedcode/data/rules/sax-pd_9.RULE +++ b/src/licensedcode/data/rules/sax-pd_9.RULE @@ -1,3 +1,13 @@ +--- +license_expression: sax-pd +is_license_notice: yes +relevance: 100 +ignorable_authors: + - David Megginson +ignorable_urls: + - http://www.saxproject.org/ +--- + / http://www.saxproject.org / Written by David Megginson -/ NO WARRANTY! This class is in the public domain. +/ NO WARRANTY! This class is in the public domain. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_9.yml b/src/licensedcode/data/rules/sax-pd_9.yml deleted file mode 100644 index 8992edbc421..00000000000 --- a/src/licensedcode/data/rules/sax-pd_9.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: sax-pd -is_license_notice: yes -relevance: 100 -ignorable_authors: - - David Megginson -ignorable_urls: - - http://www.saxproject.org/ diff --git a/src/licensedcode/data/rules/sax-pd_url_1.RULE b/src/licensedcode/data/rules/sax-pd_url_1.RULE index 1d5c0a8c0bd..9d03cdd2efd 100644 --- a/src/licensedcode/data/rules/sax-pd_url_1.RULE +++ b/src/licensedcode/data/rules/sax-pd_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sax-pd +--- + https://spdx.org/licenses/sax-pd \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_url_1.yml b/src/licensedcode/data/rules/sax-pd_url_1.yml deleted file mode 100644 index 20efcb34e62..00000000000 --- a/src/licensedcode/data/rules/sax-pd_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sax-pd diff --git a/src/licensedcode/data/rules/sax-pd_url_2.RULE b/src/licensedcode/data/rules/sax-pd_url_2.RULE index f261f978ec3..21e794f4254 100644 --- a/src/licensedcode/data/rules/sax-pd_url_2.RULE +++ b/src/licensedcode/data/rules/sax-pd_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sax-pd.html +--- + https://spdx.org/licenses/sax-pd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_url_2.yml b/src/licensedcode/data/rules/sax-pd_url_2.yml deleted file mode 100644 index 230ba277e2f..00000000000 --- a/src/licensedcode/data/rules/sax-pd_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sax-pd.html diff --git a/src/licensedcode/data/rules/sax-pd_url_4.RULE b/src/licensedcode/data/rules/sax-pd_url_4.RULE index 04e79f0a56a..977aa63e514 100644 --- a/src/licensedcode/data/rules/sax-pd_url_4.RULE +++ b/src/licensedcode/data/rules/sax-pd_url_4.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt +--- + http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/sax-pd_url_4.yml b/src/licensedcode/data/rules/sax-pd_url_4.yml deleted file mode 100644 index 7414c07cf87..00000000000 --- a/src/licensedcode/data/rules/sax-pd_url_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt diff --git a/src/licensedcode/data/rules/saxpath.RULE b/src/licensedcode/data/rules/saxpath.RULE index 6133337419c..7a74af378e6 100644 --- a/src/licensedcode/data/rules/saxpath.RULE +++ b/src/licensedcode/data/rules/saxpath.RULE @@ -1,3 +1,19 @@ +--- +license_expression: saxpath +is_license_text: yes +minimum_coverage: 60 +notes: Apache 1.1 style, werken saxpath +ignorable_authors: + - the SAXPath Project (http://www.saxpath.org/) +ignorable_urls: + - http://www.saxpath.org/ +ignorable_emails: + - bob@werken.com + - jstrachan@apache.org + - license@saxpath.org + - pm@saxpath.org +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -45,4 +61,4 @@ * created by bob mcwhirter and * James Strachan . For more information on the * SAXPath Project, please see . - * + * \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath.yml b/src/licensedcode/data/rules/saxpath.yml deleted file mode 100644 index 629066dfc9c..00000000000 --- a/src/licensedcode/data/rules/saxpath.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: saxpath -is_license_text: yes -minimum_coverage: 60 -notes: Apache 1.1 style, werken saxpath -ignorable_authors: - - the SAXPath Project (http://www.saxpath.org/) -ignorable_urls: - - http://www.saxpath.org/ -ignorable_emails: - - bob@werken.com - - jstrachan@apache.org - - license@saxpath.org - - pm@saxpath.org diff --git a/src/licensedcode/data/rules/saxpath_1.RULE b/src/licensedcode/data/rules/saxpath_1.RULE index 1ee59776b40..ab0cdc48bdd 100644 --- a/src/licensedcode/data/rules/saxpath_1.RULE +++ b/src/licensedcode/data/rules/saxpath_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: saxpath +is_license_text: yes +minimum_coverage: 80 +notes: Saxpath full text template +ignorable_authors: + - the SAXPath Project (http://www.saxpath.org/) +ignorable_urls: + - http://www.saxpath.org/ +ignorable_emails: + - bob@werken.com + - jstrachan@apache.org + - license@saxpath.org + - pm@saxpath.org +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/licensedcode/data/rules/saxpath_1.yml b/src/licensedcode/data/rules/saxpath_1.yml deleted file mode 100644 index f06ae9b99ea..00000000000 --- a/src/licensedcode/data/rules/saxpath_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: saxpath -is_license_text: yes -minimum_coverage: 80 -notes: Saxpath full text template -ignorable_authors: - - the SAXPath Project (http://www.saxpath.org/) -ignorable_urls: - - http://www.saxpath.org/ -ignorable_emails: - - bob@werken.com - - jstrachan@apache.org - - license@saxpath.org - - pm@saxpath.org diff --git a/src/licensedcode/data/rules/saxpath_10.RULE b/src/licensedcode/data/rules/saxpath_10.RULE index e94da326bc4..96e3310274d 100644 --- a/src/licensedcode/data/rules/saxpath_10.RULE +++ b/src/licensedcode/data/rules/saxpath_10.RULE @@ -1 +1,7 @@ +--- +license_expression: saxpath +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Saxpath \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_10.yml b/src/licensedcode/data/rules/saxpath_10.yml deleted file mode 100644 index 838fbcb0ac2..00000000000 --- a/src/licensedcode/data/rules/saxpath_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/saxpath_11.RULE b/src/licensedcode/data/rules/saxpath_11.RULE index 00ae9ec33f0..18f631f54a8 100644 --- a/src/licensedcode/data/rules/saxpath_11.RULE +++ b/src/licensedcode/data/rules/saxpath_11.RULE @@ -1 +1,9 @@ +--- +license_expression: saxpath +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Saxpath +--- + {{Saxpath}} https://spdx.org/licenses/Saxpath \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_11.yml b/src/licensedcode/data/rules/saxpath_11.yml deleted file mode 100644 index 680438da4c9..00000000000 --- a/src/licensedcode/data/rules/saxpath_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Saxpath diff --git a/src/licensedcode/data/rules/saxpath_12.RULE b/src/licensedcode/data/rules/saxpath_12.RULE index 5bf0de8a602..37db420e9da 100644 --- a/src/licensedcode/data/rules/saxpath_12.RULE +++ b/src/licensedcode/data/rules/saxpath_12.RULE @@ -1 +1,9 @@ +--- +license_expression: saxpath +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Saxpath +--- + LICENSE {{Saxpath}} https://spdx.org/licenses/Saxpath \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_12.yml b/src/licensedcode/data/rules/saxpath_12.yml deleted file mode 100644 index 680438da4c9..00000000000 --- a/src/licensedcode/data/rules/saxpath_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Saxpath diff --git a/src/licensedcode/data/rules/saxpath_2.RULE b/src/licensedcode/data/rules/saxpath_2.RULE index 14838a15c23..661a87c067d 100644 --- a/src/licensedcode/data/rules/saxpath_2.RULE +++ b/src/licensedcode/data/rules/saxpath_2.RULE @@ -1 +1,10 @@ +--- +license_expression: saxpath +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Saxpath License \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_2.yml b/src/licensedcode/data/rules/saxpath_2.yml deleted file mode 100644 index 72b65014473..00000000000 --- a/src/licensedcode/data/rules/saxpath_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/saxpath_3.RULE b/src/licensedcode/data/rules/saxpath_3.RULE index 7419738bd0d..22d8737b071 100644 --- a/src/licensedcode/data/rules/saxpath_3.RULE +++ b/src/licensedcode/data/rules/saxpath_3.RULE @@ -1 +1,10 @@ +--- +license_expression: saxpath +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Saxpath License \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_3.yml b/src/licensedcode/data/rules/saxpath_3.yml deleted file mode 100644 index 72b65014473..00000000000 --- a/src/licensedcode/data/rules/saxpath_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/saxpath_4.RULE b/src/licensedcode/data/rules/saxpath_4.RULE index fafc302a241..699cc10636b 100644 --- a/src/licensedcode/data/rules/saxpath_4.RULE +++ b/src/licensedcode/data/rules/saxpath_4.RULE @@ -1 +1,10 @@ +--- +license_expression: saxpath +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Saxpath Saxpath License \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_4.yml b/src/licensedcode/data/rules/saxpath_4.yml deleted file mode 100644 index 72b65014473..00000000000 --- a/src/licensedcode/data/rules/saxpath_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/saxpath_5.RULE b/src/licensedcode/data/rules/saxpath_5.RULE index b0b6e59f4c9..7afd26d25f8 100644 --- a/src/licensedcode/data/rules/saxpath_5.RULE +++ b/src/licensedcode/data/rules/saxpath_5.RULE @@ -1 +1,10 @@ +--- +license_expression: saxpath +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Saxpath License Saxpath \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_5.yml b/src/licensedcode/data/rules/saxpath_5.yml deleted file mode 100644 index 72b65014473..00000000000 --- a/src/licensedcode/data/rules/saxpath_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/saxpath_6.RULE b/src/licensedcode/data/rules/saxpath_6.RULE index af4093ed961..8d518f0c11d 100644 --- a/src/licensedcode/data/rules/saxpath_6.RULE +++ b/src/licensedcode/data/rules/saxpath_6.RULE @@ -1 +1,10 @@ +--- +license_expression: saxpath +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Saxpath \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_6.yml b/src/licensedcode/data/rules/saxpath_6.yml deleted file mode 100644 index cce04caf4b2..00000000000 --- a/src/licensedcode/data/rules/saxpath_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: saxpath -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/saxpath_7.RULE b/src/licensedcode/data/rules/saxpath_7.RULE index 4cd35cbda51..9b4e1cd70c6 100644 --- a/src/licensedcode/data/rules/saxpath_7.RULE +++ b/src/licensedcode/data/rules/saxpath_7.RULE @@ -1 +1,10 @@ +--- +license_expression: saxpath +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Saxpath License \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_7.yml b/src/licensedcode/data/rules/saxpath_7.yml deleted file mode 100644 index cce04caf4b2..00000000000 --- a/src/licensedcode/data/rules/saxpath_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: saxpath -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/saxpath_8.RULE b/src/licensedcode/data/rules/saxpath_8.RULE index 5f708023032..27879e3e182 100644 --- a/src/licensedcode/data/rules/saxpath_8.RULE +++ b/src/licensedcode/data/rules/saxpath_8.RULE @@ -1 +1,10 @@ +--- +license_expression: saxpath +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Saxpath \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_8.yml b/src/licensedcode/data/rules/saxpath_8.yml deleted file mode 100644 index cce04caf4b2..00000000000 --- a/src/licensedcode/data/rules/saxpath_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: saxpath -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/saxpath_9.RULE b/src/licensedcode/data/rules/saxpath_9.RULE index beca12283dd..c4e82b915a9 100644 --- a/src/licensedcode/data/rules/saxpath_9.RULE +++ b/src/licensedcode/data/rules/saxpath_9.RULE @@ -1 +1,9 @@ +--- +license_expression: saxpath +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Saxpath +--- + https://licenses.nuget.org/Saxpath \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_9.yml b/src/licensedcode/data/rules/saxpath_9.yml deleted file mode 100644 index 2f8335b4772..00000000000 --- a/src/licensedcode/data/rules/saxpath_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Saxpath diff --git a/src/licensedcode/data/rules/saxpath_url_1.RULE b/src/licensedcode/data/rules/saxpath_url_1.RULE index 5e6a8cb4865..e86dd1ae618 100644 --- a/src/licensedcode/data/rules/saxpath_url_1.RULE +++ b/src/licensedcode/data/rules/saxpath_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: saxpath +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/saxpath +--- + https://spdx.org/licenses/saxpath \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_url_1.yml b/src/licensedcode/data/rules/saxpath_url_1.yml deleted file mode 100644 index 31f08ef8534..00000000000 --- a/src/licensedcode/data/rules/saxpath_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/saxpath diff --git a/src/licensedcode/data/rules/saxpath_url_2.RULE b/src/licensedcode/data/rules/saxpath_url_2.RULE index d352b7692f7..77056b4d5f4 100644 --- a/src/licensedcode/data/rules/saxpath_url_2.RULE +++ b/src/licensedcode/data/rules/saxpath_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: saxpath +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/saxpath.html +--- + https://spdx.org/licenses/saxpath.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/saxpath_url_2.yml b/src/licensedcode/data/rules/saxpath_url_2.yml deleted file mode 100644 index ad6ebcdd744..00000000000 --- a/src/licensedcode/data/rules/saxpath_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: saxpath -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/saxpath.html diff --git a/src/licensedcode/data/rules/scansoft-1.2_1.RULE b/src/licensedcode/data/rules/scansoft-1.2_1.RULE index 17f6dec5394..6f1772928a2 100644 --- a/src/licensedcode/data/rules/scansoft-1.2_1.RULE +++ b/src/licensedcode/data/rules/scansoft-1.2_1.RULE @@ -1 +1,9 @@ +--- +license_expression: scansoft-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt +--- + http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/scansoft-1.2_1.yml b/src/licensedcode/data/rules/scansoft-1.2_1.yml deleted file mode 100644 index 62546565465..00000000000 --- a/src/licensedcode/data/rules/scansoft-1.2_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scansoft-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_3.0/OpenSpeech_Browser_PIK/doc/License.txt diff --git a/src/licensedcode/data/rules/scansoft-1.2_2.RULE b/src/licensedcode/data/rules/scansoft-1.2_2.RULE index 5754be228bc..4753dd481b7 100644 --- a/src/licensedcode/data/rules/scansoft-1.2_2.RULE +++ b/src/licensedcode/data/rules/scansoft-1.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: scansoft-1.2 +is_license_reference: yes +relevance: 100 +--- + ScanSoft Public License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/scansoft-1.2_2.yml b/src/licensedcode/data/rules/scansoft-1.2_2.yml deleted file mode 100644 index 71cae276c67..00000000000 --- a/src/licensedcode/data/rules/scansoft-1.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: scansoft-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/scansoft-1.2_3.RULE b/src/licensedcode/data/rules/scansoft-1.2_3.RULE index 7f09865e5a4..95cf70dc178 100644 --- a/src/licensedcode/data/rules/scansoft-1.2_3.RULE +++ b/src/licensedcode/data/rules/scansoft-1.2_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: scansoft-1.2 +is_license_notice: yes +notes: Notice without trademarks +--- + * Use of this software is subject to notices and obligations set forth * in the SpeechWorks Public License - Software Version 1.2 which is - * included with this software. + * included with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/scansoft-1.2_3.yml b/src/licensedcode/data/rules/scansoft-1.2_3.yml deleted file mode 100644 index 5b281d0246d..00000000000 --- a/src/licensedcode/data/rules/scansoft-1.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: scansoft-1.2 -is_license_notice: yes -notes: Notice without trademarks diff --git a/src/licensedcode/data/rules/scansoft-1.2_4.RULE b/src/licensedcode/data/rules/scansoft-1.2_4.RULE index 7c5c36288af..ee903d2fdda 100644 --- a/src/licensedcode/data/rules/scansoft-1.2_4.RULE +++ b/src/licensedcode/data/rules/scansoft-1.2_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: scansoft-1.2 +is_license_notice: yes +minimum_coverage: 30 +notes: Notice with trademarks +--- + * Use of this software is subject to notices and obligations set forth * in the SpeechWorks Public License - Software Version 1.2 which is * included with this software. @@ -5,4 +12,4 @@ * ScanSoft is a registered trademark of ScanSoft, Inc., and OpenSpeech, * SpeechWorks and the SpeechWorks logo are registered trademarks or * trademarks of SpeechWorks International, Inc. in the United States - * and other countries. + * and other countries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/scansoft-1.2_4.yml b/src/licensedcode/data/rules/scansoft-1.2_4.yml deleted file mode 100644 index d17f0a8c999..00000000000 --- a/src/licensedcode/data/rules/scansoft-1.2_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: scansoft-1.2 -is_license_notice: yes -minimum_coverage: 30 -notes: Notice with trademarks diff --git a/src/licensedcode/data/rules/scea-1.0_1.RULE b/src/licensedcode/data/rules/scea-1.0_1.RULE index 669cdea5541..bbcbe07a2ba 100644 --- a/src/licensedcode/data/rules/scea-1.0_1.RULE +++ b/src/licensedcode/data/rules/scea-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SCEA Shared Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_1.yml b/src/licensedcode/data/rules/scea-1.0_1.yml deleted file mode 100644 index a7905458387..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/scea-1.0_10.RULE b/src/licensedcode/data/rules/scea-1.0_10.RULE index c560f22b048..6273eba23de 100644 --- a/src/licensedcode/data/rules/scea-1.0_10.RULE +++ b/src/licensedcode/data/rules/scea-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SCEA +--- + https://licenses.nuget.org/SCEA \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_10.yml b/src/licensedcode/data/rules/scea-1.0_10.yml deleted file mode 100644 index b109883921a..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SCEA diff --git a/src/licensedcode/data/rules/scea-1.0_11.RULE b/src/licensedcode/data/rules/scea-1.0_11.RULE index fbc19feff9d..7f31e4bc690 100644 --- a/src/licensedcode/data/rules/scea-1.0_11.RULE +++ b/src/licensedcode/data/rules/scea-1.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SCEA \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_11.yml b/src/licensedcode/data/rules/scea-1.0_11.yml deleted file mode 100644 index 5e698f267e9..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/scea-1.0_12.RULE b/src/licensedcode/data/rules/scea-1.0_12.RULE index 7adeaeff65c..9bab0bae413 100644 --- a/src/licensedcode/data/rules/scea-1.0_12.RULE +++ b/src/licensedcode/data/rules/scea-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SCEA +--- + LICENSE {{SCEA}} https://spdx.org/licenses/SCEA \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_12.yml b/src/licensedcode/data/rules/scea-1.0_12.yml deleted file mode 100644 index 106ded909ef..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SCEA diff --git a/src/licensedcode/data/rules/scea-1.0_13.RULE b/src/licensedcode/data/rules/scea-1.0_13.RULE index 7ba06b55c73..6730802a055 100644 --- a/src/licensedcode/data/rules/scea-1.0_13.RULE +++ b/src/licensedcode/data/rules/scea-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SCEA +--- + {{SCEA}} https://spdx.org/licenses/SCEA \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_13.yml b/src/licensedcode/data/rules/scea-1.0_13.yml deleted file mode 100644 index 106ded909ef..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SCEA diff --git a/src/licensedcode/data/rules/scea-1.0_2.RULE b/src/licensedcode/data/rules/scea-1.0_2.RULE index 2a7c5542648..38939710b49 100644 --- a/src/licensedcode/data/rules/scea-1.0_2.RULE +++ b/src/licensedcode/data/rules/scea-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SCEA SCEA Shared Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_2.yml b/src/licensedcode/data/rules/scea-1.0_2.yml deleted file mode 100644 index a7905458387..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/scea-1.0_3.RULE b/src/licensedcode/data/rules/scea-1.0_3.RULE index 4244158422a..b0ed26faee0 100644 --- a/src/licensedcode/data/rules/scea-1.0_3.RULE +++ b/src/licensedcode/data/rules/scea-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: scea-1.0 +is_license_notice: yes +notes: see https://web.archive.org/web/20070127035127/http://research.scea.com/scea_shared_source_license.html +ignorable_urls: + - http://research.scea.com/scea_shared_source_license.html +--- + Licensed under the SCEA Shared Source License, Version 1.0 (the 'License'); you may not use this file except in compliance with the License. You may obtain a copy of the License at: diff --git a/src/licensedcode/data/rules/scea-1.0_3.yml b/src/licensedcode/data/rules/scea-1.0_3.yml deleted file mode 100644 index 84aa6c6a92b..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scea-1.0 -is_license_notice: yes -notes: see https://web.archive.org/web/20070127035127/http://research.scea.com/scea_shared_source_license.html -ignorable_urls: - - http://research.scea.com/scea_shared_source_license.html diff --git a/src/licensedcode/data/rules/scea-1.0_4.RULE b/src/licensedcode/data/rules/scea-1.0_4.RULE index da2dbed685b..204a64b4df8 100644 --- a/src/licensedcode/data/rules/scea-1.0_4.RULE +++ b/src/licensedcode/data/rules/scea-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +relevance: 100 +--- + SCEA Shared Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_4.yml b/src/licensedcode/data/rules/scea-1.0_4.yml deleted file mode 100644 index 5e698f267e9..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/scea-1.0_5.RULE b/src/licensedcode/data/rules/scea-1.0_5.RULE index 059e1a6734d..8acb535b5de 100644 --- a/src/licensedcode/data/rules/scea-1.0_5.RULE +++ b/src/licensedcode/data/rules/scea-1.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://research.scea.com/scea_shared_source_license.html +--- + http://research.scea.com/scea_shared_source_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_5.yml b/src/licensedcode/data/rules/scea-1.0_5.yml deleted file mode 100644 index 3a28359c146..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://research.scea.com/scea_shared_source_license.html diff --git a/src/licensedcode/data/rules/scea-1.0_6.RULE b/src/licensedcode/data/rules/scea-1.0_6.RULE index a90939dc13a..fb87cc81734 100644 --- a/src/licensedcode/data/rules/scea-1.0_6.RULE +++ b/src/licensedcode/data/rules/scea-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SCEA Shared Source License SCEA \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_6.yml b/src/licensedcode/data/rules/scea-1.0_6.yml deleted file mode 100644 index a7905458387..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/scea-1.0_7.RULE b/src/licensedcode/data/rules/scea-1.0_7.RULE index 6349e5a26d7..e6a95f40900 100644 --- a/src/licensedcode/data/rules/scea-1.0_7.RULE +++ b/src/licensedcode/data/rules/scea-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: scea-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SCEA \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_7.yml b/src/licensedcode/data/rules/scea-1.0_7.yml deleted file mode 100644 index 8723db6025b..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: scea-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/scea-1.0_8.RULE b/src/licensedcode/data/rules/scea-1.0_8.RULE index c046238d181..23c98779145 100644 --- a/src/licensedcode/data/rules/scea-1.0_8.RULE +++ b/src/licensedcode/data/rules/scea-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: scea-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SCEA Shared Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_8.yml b/src/licensedcode/data/rules/scea-1.0_8.yml deleted file mode 100644 index 8723db6025b..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: scea-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/scea-1.0_9.RULE b/src/licensedcode/data/rules/scea-1.0_9.RULE index ec35b8b734b..8da05b8a576 100644 --- a/src/licensedcode/data/rules/scea-1.0_9.RULE +++ b/src/licensedcode/data/rules/scea-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: scea-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SCEA \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_9.yml b/src/licensedcode/data/rules/scea-1.0_9.yml deleted file mode 100644 index 8723db6025b..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: scea-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/scea-1.0_url_1.RULE b/src/licensedcode/data/rules/scea-1.0_url_1.RULE index 6326d7aecdc..a3440c71b8c 100644 --- a/src/licensedcode/data/rules/scea-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/scea-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/scea +--- + https://spdx.org/licenses/scea \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_url_1.yml b/src/licensedcode/data/rules/scea-1.0_url_1.yml deleted file mode 100644 index d904ff9f641..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/scea diff --git a/src/licensedcode/data/rules/scea-1.0_url_2.RULE b/src/licensedcode/data/rules/scea-1.0_url_2.RULE index 482d623379e..f06604d32f4 100644 --- a/src/licensedcode/data/rules/scea-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/scea-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: scea-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/scea.html +--- + https://spdx.org/licenses/scea.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/scea-1.0_url_2.yml b/src/licensedcode/data/rules/scea-1.0_url_2.yml deleted file mode 100644 index 162a594d04d..00000000000 --- a/src/licensedcode/data/rules/scea-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scea-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/scea.html diff --git a/src/licensedcode/data/rules/schemereport_1.RULE b/src/licensedcode/data/rules/schemereport_1.RULE index b0d798ac90c..de218e4798c 100644 --- a/src/licensedcode/data/rules/schemereport_1.RULE +++ b/src/licensedcode/data/rules/schemereport_1.RULE @@ -1 +1,9 @@ +--- +license_expression: schemereport +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SchemeReport +--- + https://licenses.nuget.org/SchemeReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/schemereport_1.yml b/src/licensedcode/data/rules/schemereport_1.yml deleted file mode 100644 index 0792e3995cd..00000000000 --- a/src/licensedcode/data/rules/schemereport_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: schemereport -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SchemeReport diff --git a/src/licensedcode/data/rules/schemereport_2.RULE b/src/licensedcode/data/rules/schemereport_2.RULE index 191d8c810e4..72fed376933 100644 --- a/src/licensedcode/data/rules/schemereport_2.RULE +++ b/src/licensedcode/data/rules/schemereport_2.RULE @@ -1 +1,7 @@ +--- +license_expression: schemereport +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SchemeReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/schemereport_2.yml b/src/licensedcode/data/rules/schemereport_2.yml deleted file mode 100644 index a01db3efe16..00000000000 --- a/src/licensedcode/data/rules/schemereport_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: schemereport -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/schemereport_3.RULE b/src/licensedcode/data/rules/schemereport_3.RULE index dba702b6151..824d71f4816 100644 --- a/src/licensedcode/data/rules/schemereport_3.RULE +++ b/src/licensedcode/data/rules/schemereport_3.RULE @@ -1 +1,9 @@ +--- +license_expression: schemereport +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SchemeReport +--- + LICENSE {{SchemeReport}} https://spdx.org/licenses/SchemeReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/schemereport_3.yml b/src/licensedcode/data/rules/schemereport_3.yml deleted file mode 100644 index 14f986d1318..00000000000 --- a/src/licensedcode/data/rules/schemereport_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: schemereport -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SchemeReport diff --git a/src/licensedcode/data/rules/schemereport_4.RULE b/src/licensedcode/data/rules/schemereport_4.RULE index e759d47b300..481c3c142ba 100644 --- a/src/licensedcode/data/rules/schemereport_4.RULE +++ b/src/licensedcode/data/rules/schemereport_4.RULE @@ -1 +1,9 @@ +--- +license_expression: schemereport +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SchemeReport +--- + {{SchemeReport}} https://spdx.org/licenses/SchemeReport \ No newline at end of file diff --git a/src/licensedcode/data/rules/schemereport_4.yml b/src/licensedcode/data/rules/schemereport_4.yml deleted file mode 100644 index 14f986d1318..00000000000 --- a/src/licensedcode/data/rules/schemereport_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: schemereport -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SchemeReport diff --git a/src/licensedcode/data/rules/scilab.RULE b/src/licensedcode/data/rules/scilab.RULE index f63e928b859..5e6a065674c 100644 --- a/src/licensedcode/data/rules/scilab.RULE +++ b/src/licensedcode/data/rules/scilab.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.scilab.org/legal/license.html +--- + http://www.scilab.org/legal/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/scilab.yml b/src/licensedcode/data/rules/scilab.yml deleted file mode 100644 index 4a047e55ae7..00000000000 --- a/src/licensedcode/data/rules/scilab.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.scilab.org/legal/license.html diff --git a/src/licensedcode/data/rules/scilab_1.RULE b/src/licensedcode/data/rules/scilab_1.RULE index 581704e62e5..203e6488598 100644 --- a/src/licensedcode/data/rules/scilab_1.RULE +++ b/src/licensedcode/data/rules/scilab_1.RULE @@ -1 +1,9 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.scilab.org/products/scilab/license +--- + http://www.scilab.org/products/scilab/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/scilab_1.yml b/src/licensedcode/data/rules/scilab_1.yml deleted file mode 100644 index 29a13187ebd..00000000000 --- a/src/licensedcode/data/rules/scilab_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.scilab.org/products/scilab/license diff --git a/src/licensedcode/data/rules/scilab_2.RULE b/src/licensedcode/data/rules/scilab_2.RULE index fa81beb45a9..0856e85148b 100644 --- a/src/licensedcode/data/rules/scilab_2.RULE +++ b/src/licensedcode/data/rules/scilab_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: cecill-1.1 +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.cecill.info/ + - http://www.cecill.info/licences.en.html + - http://www.scilab.org/products/scilab/license +--- + Per http://www.scilab.org/products/scilab/license Scilab 5 is governed by the CeCILL license (GPL compatible) abiding by the rules of distribution of free software. diff --git a/src/licensedcode/data/rules/scilab_2.yml b/src/licensedcode/data/rules/scilab_2.yml deleted file mode 100644 index 8539a30e6c1..00000000000 --- a/src/licensedcode/data/rules/scilab_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: cecill-1.1 -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.cecill.info/ - - http://www.cecill.info/licences.en.html - - http://www.scilab.org/products/scilab/license diff --git a/src/licensedcode/data/rules/scintilla_1.RULE b/src/licensedcode/data/rules/scintilla_1.RULE index 584e981baec..d74e48ba1d7 100644 --- a/src/licensedcode/data/rules/scintilla_1.RULE +++ b/src/licensedcode/data/rules/scintilla_1.RULE @@ -1 +1,7 @@ +--- +license_expression: scintilla +is_license_notice: yes +relevance: 100 +--- + License terms appear in License for {{Scintilla}} and SciTE . \ No newline at end of file diff --git a/src/licensedcode/data/rules/scintilla_1.yml b/src/licensedcode/data/rules/scintilla_1.yml deleted file mode 100644 index 6389c6d5ac7..00000000000 --- a/src/licensedcode/data/rules/scintilla_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: scintilla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/script-nikhilk.RULE b/src/licensedcode/data/rules/script-nikhilk.RULE index 796531613fa..3cea6b17325 100644 --- a/src/licensedcode/data/rules/script-nikhilk.RULE +++ b/src/licensedcode/data/rules/script-nikhilk.RULE @@ -1 +1,9 @@ -http://www.nikhilk.net/About.aspx +--- +license_expression: script-nikhilk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.nikhilk.net/About.aspx +--- + +http://www.nikhilk.net/About.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/script-nikhilk.yml b/src/licensedcode/data/rules/script-nikhilk.yml deleted file mode 100644 index 08f57b25359..00000000000 --- a/src/licensedcode/data/rules/script-nikhilk.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: script-nikhilk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.nikhilk.net/About.aspx diff --git a/src/licensedcode/data/rules/script-nikhilk_1.RULE b/src/licensedcode/data/rules/script-nikhilk_1.RULE index 6ccdfd99c1e..9e6f87031b4 100644 --- a/src/licensedcode/data/rules/script-nikhilk_1.RULE +++ b/src/licensedcode/data/rules/script-nikhilk_1.RULE @@ -1 +1,9 @@ +--- +license_expression: script-nikhilk +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf +--- + http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/script-nikhilk_1.yml b/src/licensedcode/data/rules/script-nikhilk_1.yml deleted file mode 100644 index 69a06876444..00000000000 --- a/src/licensedcode/data/rules/script-nikhilk_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: script-nikhilk -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://projects.nikhilk.net/Content/Projects/ScriptSharp/ScriptSharp.pdf diff --git a/src/licensedcode/data/rules/scsl-3.0.RULE b/src/licensedcode/data/rules/scsl-3.0.RULE index 0cea6bacaf7..e3e38a68083 100644 --- a/src/licensedcode/data/rules/scsl-3.0.RULE +++ b/src/licensedcode/data/rules/scsl-3.0.RULE @@ -1 +1,9 @@ +--- +license_expression: scsl-3.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.sun.com/software/jini/licensing/SCSL3_JiniTSA1.html +--- + http://www.sun.com/software/jini/licensing/SCSL3_JiniTSA1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/scsl-3.0.yml b/src/licensedcode/data/rules/scsl-3.0.yml deleted file mode 100644 index 0313c5eedb6..00000000000 --- a/src/licensedcode/data/rules/scsl-3.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: scsl-3.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.sun.com/software/jini/licensing/SCSL3_JiniTSA1.html diff --git a/src/licensedcode/data/rules/secret-labs-2011_1.RULE b/src/licensedcode/data/rules/secret-labs-2011_1.RULE index 6bb75012558..fd03521641f 100644 --- a/src/licensedcode/data/rules/secret-labs-2011_1.RULE +++ b/src/licensedcode/data/rules/secret-labs-2011_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: secret-labs-2011 +is_license_notice: yes +relevance: 99 +--- + Originally released under LGPL. Graciously donated to PIL for distribution under the standard PIL license in 2009. \ No newline at end of file diff --git a/src/licensedcode/data/rules/secret-labs-2011_1.yml b/src/licensedcode/data/rules/secret-labs-2011_1.yml deleted file mode 100644 index 5cee6ad1d40..00000000000 --- a/src/licensedcode/data/rules/secret-labs-2011_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: secret-labs-2011 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/secret-labs-2011_2.RULE b/src/licensedcode/data/rules/secret-labs-2011_2.RULE index 1672257442f..df9ba9674c0 100644 --- a/src/licensedcode/data/rules/secret-labs-2011_2.RULE +++ b/src/licensedcode/data/rules/secret-labs-2011_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: secret-labs-2011 +is_license_text: yes +relevance: 100 +--- + By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: diff --git a/src/licensedcode/data/rules/secret-labs-2011_2.yml b/src/licensedcode/data/rules/secret-labs-2011_2.yml deleted file mode 100644 index dd90a6e377a..00000000000 --- a/src/licensedcode/data/rules/secret-labs-2011_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: secret-labs-2011 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/secret-labs-2011_3.RULE b/src/licensedcode/data/rules/secret-labs-2011_3.RULE index 0ecd0760a2a..d5ce9bd8f1e 100644 --- a/src/licensedcode/data/rules/secret-labs-2011_3.RULE +++ b/src/licensedcode/data/rules/secret-labs-2011_3.RULE @@ -1 +1,7 @@ +--- +license_expression: secret-labs-2011 +is_license_notice: yes +relevance: 100 +--- + Like PIL, Pillow is licensed under the MIT-like open source PIL Software License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/secret-labs-2011_3.yml b/src/licensedcode/data/rules/secret-labs-2011_3.yml deleted file mode 100644 index 145aeef1dcd..00000000000 --- a/src/licensedcode/data/rules/secret-labs-2011_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: secret-labs-2011 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/secret-labs-2011_4.RULE b/src/licensedcode/data/rules/secret-labs-2011_4.RULE index cef51333f90..c0683d94ff3 100644 --- a/src/licensedcode/data/rules/secret-labs-2011_4.RULE +++ b/src/licensedcode/data/rules/secret-labs-2011_4.RULE @@ -1 +1,8 @@ +--- +license_expression: secret-labs-2011 +is_license_tag: yes +relevance: 90 +notes: seen in https://github.com/pytroll/aggdraw +--- + License: Python (MIT style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/secret-labs-2011_4.yml b/src/licensedcode/data/rules/secret-labs-2011_4.yml deleted file mode 100644 index 9dcef22d7ac..00000000000 --- a/src/licensedcode/data/rules/secret-labs-2011_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: secret-labs-2011 -is_license_tag: yes -relevance: 90 -notes: seen in https://github.com/pytroll/aggdraw diff --git a/src/licensedcode/data/rules/secret-labs-2011_5.RULE b/src/licensedcode/data/rules/secret-labs-2011_5.RULE index 8bc8845779a..21ee6342e8a 100644 --- a/src/licensedcode/data/rules/secret-labs-2011_5.RULE +++ b/src/licensedcode/data/rules/secret-labs-2011_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: secret-labs-2011 +is_license_text: yes +relevance: 100 +notes: hyphenation breaks some words +--- + By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: diff --git a/src/licensedcode/data/rules/secret-labs-2011_5.yml b/src/licensedcode/data/rules/secret-labs-2011_5.yml deleted file mode 100644 index 1606be8ce6b..00000000000 --- a/src/licensedcode/data/rules/secret-labs-2011_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: secret-labs-2011 -is_license_text: yes -relevance: 100 -notes: hyphenation breaks some words diff --git a/src/licensedcode/data/rules/secret-labs-2011_6.RULE b/src/licensedcode/data/rules/secret-labs-2011_6.RULE index c5205a532d9..d6d75cde315 100644 --- a/src/licensedcode/data/rules/secret-labs-2011_6.RULE +++ b/src/licensedcode/data/rules/secret-labs-2011_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: secret-labs-2011 +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: pil license is not exactly the HPND per SPDX matching guidelines +--- + Like PIL, Pillow is licensed under the open source HPND License: By obtaining, using, and/or copying this software and/or its associated diff --git a/src/licensedcode/data/rules/secret-labs-2011_6.yml b/src/licensedcode/data/rules/secret-labs-2011_6.yml deleted file mode 100644 index 32ed9e666ef..00000000000 --- a/src/licensedcode/data/rules/secret-labs-2011_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: secret-labs-2011 -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: pil license is not exactly the HPND per SPDX matching guidelines diff --git a/src/licensedcode/data/rules/secret-labs-2011_7.RULE b/src/licensedcode/data/rules/secret-labs-2011_7.RULE index 01dbff2d541..79a533c3870 100644 --- a/src/licensedcode/data/rules/secret-labs-2011_7.RULE +++ b/src/licensedcode/data/rules/secret-labs-2011_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: secret-labs-2011 +is_license_text: yes +--- + Like PIL, Pillow is licensed under the open source PIL Software License: By obtaining, using, and/or copying this software and/or its associated documentation, you agree that you have read, understood, and will comply with the following terms and conditions: diff --git a/src/licensedcode/data/rules/secret-labs-2011_7.yml b/src/licensedcode/data/rules/secret-labs-2011_7.yml deleted file mode 100644 index 0fd55abe5cc..00000000000 --- a/src/licensedcode/data/rules/secret-labs-2011_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: secret-labs-2011 -is_license_text: yes diff --git a/src/licensedcode/data/rules/secret-labs-2011_8.RULE b/src/licensedcode/data/rules/secret-labs-2011_8.RULE index dbc3cb8202b..bf92eac585b 100644 --- a/src/licensedcode/data/rules/secret-labs-2011_8.RULE +++ b/src/licensedcode/data/rules/secret-labs-2011_8.RULE @@ -1 +1,9 @@ +--- +license_expression: secret-labs-2011 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE +--- + https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/secret-labs-2011_8.yml b/src/licensedcode/data/rules/secret-labs-2011_8.yml deleted file mode 100644 index 2a2d4ce79f1..00000000000 --- a/src/licensedcode/data/rules/secret-labs-2011_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: secret-labs-2011 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_1.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_1.RULE index f21602fe349..7196916bdb1 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_1.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + libselinux public domain notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_1.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_1.yml deleted file mode 100644 index 4394996c838..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_10.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_10.RULE index a5ebe3264cb..b8b76357922 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_10.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/libselinux-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_10.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_10.yml deleted file mode 100644 index 451b7889134..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_11.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_11.RULE index 263edc21955..c06318d9ae1 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_11.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/libselinux-1.0 +--- + LICENSE {{libselinux-1.0}} https://spdx.org/licenses/libselinux-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_11.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_11.yml deleted file mode 100644 index 855bf35c921..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/libselinux-1.0 diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_12.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_12.RULE index 09c7f707f43..488f2c65ff2 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_12.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/libselinux-1.0 +--- + {{libselinux-1.0}} https://spdx.org/licenses/libselinux-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_12.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_12.yml deleted file mode 100644 index 855bf35c921..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/libselinux-1.0 diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_2.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_2.RULE index ae4516d7a4f..32a7178be1d 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_2.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: libselinux public domain notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_2.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_2.yml deleted file mode 100644 index 4394996c838..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_3.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_3.RULE index 12c990240a1..79eaa24e001 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_3.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + libselinux-1.0 libselinux public domain notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_3.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_3.yml deleted file mode 100644 index 4394996c838..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_4.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_4.RULE index e40adfec5f6..35c362c60f5 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_4.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + libselinux public domain notice libselinux-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_4.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_4.yml deleted file mode 100644 index 4394996c838..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_5.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_5.RULE index e64e943053a..18087d49407 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_5.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: libselinux-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_5.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_5.yml deleted file mode 100644 index 735d61b1c58..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_6.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_6.RULE index b02fe0908ae..615e542dddf 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_6.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: libselinux public domain notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_6.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_6.yml deleted file mode 100644 index 735d61b1c58..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_7.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_7.RULE index 00367c2c116..f07221a3d29 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_7.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: libselinux-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_7.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_7.yml deleted file mode 100644 index 735d61b1c58..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_8.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_8.RULE index 7212f264fef..5300200056d 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_8.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + libselinux-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_8.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_8.yml deleted file mode 100644 index c161c8ea9f7..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_9.RULE b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_9.RULE index a20bf61d171..0d07bf36441 100644 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_9.RULE +++ b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: selinux-nsa-declaration-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/libselinux-1.0 +--- + https://licenses.nuget.org/libselinux-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_9.yml b/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_9.yml deleted file mode 100644 index f32be698667..00000000000 --- a/src/licensedcode/data/rules/selinux-nsa-declaration-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: selinux-nsa-declaration-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/libselinux-1.0 diff --git a/src/licensedcode/data/rules/sencha-commercial.RULE b/src/licensedcode/data/rules/sencha-commercial.RULE index bdd1d0e784e..694fb01c968 100644 --- a/src/licensedcode/data/rules/sencha-commercial.RULE +++ b/src/licensedcode/data/rules/sencha-commercial.RULE @@ -1 +1,9 @@ +--- +license_expression: sencha-commercial +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.sencha.com/legal/sencha-commercial-software-license-agreement/ +--- + http://www.sencha.com/legal/sencha-commercial-software-license-agreement/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/sencha-commercial.yml b/src/licensedcode/data/rules/sencha-commercial.yml deleted file mode 100644 index ae1367bf64d..00000000000 --- a/src/licensedcode/data/rules/sencha-commercial.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sencha-commercial -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.sencha.com/legal/sencha-commercial-software-license-agreement/ diff --git a/src/licensedcode/data/rules/sencha-notice.RULE b/src/licensedcode/data/rules/sencha-notice.RULE index ac86fb854f2..7c0028e2bb8 100644 --- a/src/licensedcode/data/rules/sencha-notice.RULE +++ b/src/licensedcode/data/rules/sencha-notice.RULE @@ -1,3 +1,21 @@ +--- +license_expression: (gpl-3.0 WITH sencha-app-floss-exception OR gpl-3.0 WITH sencha-dev-floss-exception + OR sencha-commercial) AND (public-domain AND mit AND mit) +is_license_notice: yes +notes: complex notice for Sencha +ignorable_urls: + - http://code.google.com/p/flexible-js-formatting/ + - http://www.gnu.org/licenses/gpl.html + - http://www.json.org/js.html + - http://www.sencha.com/products/complete-team/license + - http://www.sencha.com/products/complete/license + - http://www.sencha.com/products/floss-exception.php + - http://www.sencha.com/products/touch/license.php + - http://www.sencha.com/products/ux-exception.php + - http://www.sencha.com/store/touch/license.php + - https://github.com/pivotal/jasmine +--- + http://www.sencha.com/products/touch/license.php diff --git a/src/licensedcode/data/rules/sencha-notice.yml b/src/licensedcode/data/rules/sencha-notice.yml deleted file mode 100644 index 354f0901f1c..00000000000 --- a/src/licensedcode/data/rules/sencha-notice.yml +++ /dev/null @@ -1,15 +0,0 @@ -license_expression: (gpl-3.0 WITH sencha-app-floss-exception OR gpl-3.0 WITH sencha-dev-floss-exception - OR sencha-commercial) AND (public-domain AND mit AND mit) -is_license_notice: yes -notes: complex notice for Sencha -ignorable_urls: - - http://code.google.com/p/flexible-js-formatting/ - - http://www.gnu.org/licenses/gpl.html - - http://www.json.org/js.html - - http://www.sencha.com/products/complete-team/license - - http://www.sencha.com/products/complete/license - - http://www.sencha.com/products/floss-exception.php - - http://www.sencha.com/products/touch/license.php - - http://www.sencha.com/products/ux-exception.php - - http://www.sencha.com/store/touch/license.php - - https://github.com/pivotal/jasmine diff --git a/src/licensedcode/data/rules/sendmail-2010-17.RULE b/src/licensedcode/data/rules/sendmail-2010-17.RULE index e74af5a3c03..7069278f3da 100644 --- a/src/licensedcode/data/rules/sendmail-2010-17.RULE +++ b/src/licensedcode/data/rules/sendmail-2010-17.RULE @@ -1,3 +1,16 @@ +--- +license_expression: sendmail +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University of California + - Copyright (c) 1998-2010 Sendmail, Inc. +ignorable_holders: + - Sendmail, Inc. + - The Regents of the University of California +ignorable_emails: + - license@sendmail.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a redistribution @@ -78,4 +91,4 @@ each of the following conditions is met: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -$Revision: 8.17 $, Last updated $Date: 2010/12/03 01:10:00 $, Document 139848.1 \ No newline at end of file +$Revision: 8.17 $, Last updated $Date: 2010/12/03 01:10:00 $, Document 139848.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-2010-17.yml b/src/licensedcode/data/rules/sendmail-2010-17.yml deleted file mode 100644 index 2e2357c7246..00000000000 --- a/src/licensedcode/data/rules/sendmail-2010-17.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: sendmail -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1988, 1993 The Regents of the University of California - - Copyright (c) 1998-2010 Sendmail, Inc. -ignorable_holders: - - Sendmail, Inc. - - The Regents of the University of California -ignorable_emails: - - license@sendmail.com diff --git a/src/licensedcode/data/rules/sendmail-2010.RULE b/src/licensedcode/data/rules/sendmail-2010.RULE index 5c76c85d953..09a19fee5d4 100644 --- a/src/licensedcode/data/rules/sendmail-2010.RULE +++ b/src/licensedcode/data/rules/sendmail-2010.RULE @@ -1,3 +1,16 @@ +--- +license_expression: sendmail +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University of California + - Copyright (c) 1998-2010 Sendmail, Inc. +ignorable_holders: + - Sendmail, Inc. + - The Regents of the University of California +ignorable_emails: + - license@sendmail.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a redistribution @@ -75,5 +88,4 @@ 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 DAMAGES. - +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-2010.yml b/src/licensedcode/data/rules/sendmail-2010.yml deleted file mode 100644 index 2e2357c7246..00000000000 --- a/src/licensedcode/data/rules/sendmail-2010.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: sendmail -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1988, 1993 The Regents of the University of California - - Copyright (c) 1998-2010 Sendmail, Inc. -ignorable_holders: - - Sendmail, Inc. - - The Regents of the University of California -ignorable_emails: - - license@sendmail.com diff --git a/src/licensedcode/data/rules/sendmail-2012.RULE b/src/licensedcode/data/rules/sendmail-2012.RULE index b0ff84aac80..62936f4c4f6 100644 --- a/src/licensedcode/data/rules/sendmail-2012.RULE +++ b/src/licensedcode/data/rules/sendmail-2012.RULE @@ -1,3 +1,16 @@ +--- +license_expression: sendmail +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University of California + - Copyright (c) 1998-2012 Sendmail, Inc. +ignorable_holders: + - Sendmail, Inc. + - The Regents of the University of California +ignorable_emails: + - license@sendmail.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a redistribution @@ -78,4 +91,4 @@ each of the following conditions is met: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -$Revision: 8.18 $, Last updated $Date: 2012/05/15 21:49:03 $, Document 139848.1 \ No newline at end of file +$Revision: 8.18 $, Last updated $Date: 2012/05/15 21:49:03 $, Document 139848.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-2012.yml b/src/licensedcode/data/rules/sendmail-2012.yml deleted file mode 100644 index ea949e54ca7..00000000000 --- a/src/licensedcode/data/rules/sendmail-2012.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: sendmail -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1988, 1993 The Regents of the University of California - - Copyright (c) 1998-2012 Sendmail, Inc. -ignorable_holders: - - Sendmail, Inc. - - The Regents of the University of California -ignorable_emails: - - license@sendmail.com diff --git a/src/licensedcode/data/rules/sendmail-2014.RULE b/src/licensedcode/data/rules/sendmail-2014.RULE index 598a1f6e0f5..af521f7c62d 100644 --- a/src/licensedcode/data/rules/sendmail-2014.RULE +++ b/src/licensedcode/data/rules/sendmail-2014.RULE @@ -1,3 +1,16 @@ +--- +license_expression: sendmail +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University of California + - Copyright (c) 1998-2014 Proofpoint, Inc. +ignorable_holders: + - Proofpoint, Inc. + - The Regents of the University of California +ignorable_emails: + - sendmail-license@proofpoint.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a redistribution @@ -78,4 +91,4 @@ each of the following conditions is met: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -$Revision: 8.23 $, Last updated $Date: 2014-01-26 20:10:01 $, Document 139848.1 \ No newline at end of file +$Revision: 8.23 $, Last updated $Date: 2014-01-26 20:10:01 $, Document 139848.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-2014.yml b/src/licensedcode/data/rules/sendmail-2014.yml deleted file mode 100644 index 970060c3ebb..00000000000 --- a/src/licensedcode/data/rules/sendmail-2014.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: sendmail -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1988, 1993 The Regents of the University of California - - Copyright (c) 1998-2014 Proofpoint, Inc. -ignorable_holders: - - Proofpoint, Inc. - - The Regents of the University of California -ignorable_emails: - - sendmail-license@proofpoint.com diff --git a/src/licensedcode/data/rules/sendmail-8.23_1.RULE b/src/licensedcode/data/rules/sendmail-8.23_1.RULE index b23a4296d31..01f431ee63a 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_1.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_1.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sendmail License 8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_1.yml b/src/licensedcode/data/rules/sendmail-8.23_1.yml deleted file mode 100644 index 7808ac04983..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail-8.23_10.RULE b/src/licensedcode/data/rules/sendmail-8.23_10.RULE index 677d393ed7f..319e01b6329 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_10.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_10.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Sendmail-8.23 +--- + LICENSE {{Sendmail-8.23}} https://spdx.org/licenses/Sendmail-8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_10.yml b/src/licensedcode/data/rules/sendmail-8.23_10.yml deleted file mode 100644 index 09eb6bda3a3..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Sendmail-8.23 diff --git a/src/licensedcode/data/rules/sendmail-8.23_11.RULE b/src/licensedcode/data/rules/sendmail-8.23_11.RULE index 947b6251847..6540243def8 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_11.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_11.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Sendmail-8.23 +--- + {{Sendmail-8.23}} https://spdx.org/licenses/Sendmail-8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_11.yml b/src/licensedcode/data/rules/sendmail-8.23_11.yml deleted file mode 100644 index 09eb6bda3a3..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Sendmail-8.23 diff --git a/src/licensedcode/data/rules/sendmail-8.23_2.RULE b/src/licensedcode/data/rules/sendmail-8.23_2.RULE index 35ea6dda886..46ac03c85d9 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_2.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_2.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Sendmail License 8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_2.yml b/src/licensedcode/data/rules/sendmail-8.23_2.yml deleted file mode 100644 index 7808ac04983..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail-8.23_3.RULE b/src/licensedcode/data/rules/sendmail-8.23_3.RULE index 55251f6d379..6d1a6c5c64b 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_3.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_3.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sendmail-8.23 Sendmail License 8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_3.yml b/src/licensedcode/data/rules/sendmail-8.23_3.yml deleted file mode 100644 index 7808ac04983..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail-8.23_4.RULE b/src/licensedcode/data/rules/sendmail-8.23_4.RULE index 993eef4e2b7..2c6fedf3a0e 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_4.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_4.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sendmail License 8.23 Sendmail-8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_4.yml b/src/licensedcode/data/rules/sendmail-8.23_4.yml deleted file mode 100644 index 7808ac04983..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail-8.23_5.RULE b/src/licensedcode/data/rules/sendmail-8.23_5.RULE index d4877583e32..eb83e1ca651 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_5.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_5.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail-8.23 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sendmail-8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_5.yml b/src/licensedcode/data/rules/sendmail-8.23_5.yml deleted file mode 100644 index fc83ba24147..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail-8.23 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail-8.23_6.RULE b/src/licensedcode/data/rules/sendmail-8.23_6.RULE index 14b502b6829..795d4873144 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_6.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_6.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail-8.23 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sendmail License 8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_6.yml b/src/licensedcode/data/rules/sendmail-8.23_6.yml deleted file mode 100644 index fc83ba24147..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail-8.23 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail-8.23_7.RULE b/src/licensedcode/data/rules/sendmail-8.23_7.RULE index 5a8b0c98678..b7d64f3fb82 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_7.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_7.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail-8.23 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Sendmail-8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_7.yml b/src/licensedcode/data/rules/sendmail-8.23_7.yml deleted file mode 100644 index fc83ba24147..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail-8.23 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail-8.23_8.RULE b/src/licensedcode/data/rules/sendmail-8.23_8.RULE index 61202aebf03..c5f733a04c5 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_8.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_8.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Sendmail-8.23 +--- + https://licenses.nuget.org/Sendmail-8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_8.yml b/src/licensedcode/data/rules/sendmail-8.23_8.yml deleted file mode 100644 index e5048619f7b..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Sendmail-8.23 diff --git a/src/licensedcode/data/rules/sendmail-8.23_9.RULE b/src/licensedcode/data/rules/sendmail-8.23_9.RULE index 9ffbe7bba3f..6a4059b884d 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_9.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_9.RULE @@ -1 +1,7 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Sendmail-8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_9.yml b/src/licensedcode/data/rules/sendmail-8.23_9.yml deleted file mode 100644 index 272428fe2ca..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sendmail-8.23_url_1.RULE b/src/licensedcode/data/rules/sendmail-8.23_url_1.RULE index 215316f337a..4b0d944fdb0 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_url_1.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sendmail-8.23 +--- + https://spdx.org/licenses/sendmail-8.23 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_url_1.yml b/src/licensedcode/data/rules/sendmail-8.23_url_1.yml deleted file mode 100644 index f61e99b9a0f..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sendmail-8.23 diff --git a/src/licensedcode/data/rules/sendmail-8.23_url_2.RULE b/src/licensedcode/data/rules/sendmail-8.23_url_2.RULE index f20c2d15cb0..afc11faf3c1 100644 --- a/src/licensedcode/data/rules/sendmail-8.23_url_2.RULE +++ b/src/licensedcode/data/rules/sendmail-8.23_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail-8.23 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sendmail-8.23.html +--- + https://spdx.org/licenses/sendmail-8.23.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail-8.23_url_2.yml b/src/licensedcode/data/rules/sendmail-8.23_url_2.yml deleted file mode 100644 index 987aaaa2b42..00000000000 --- a/src/licensedcode/data/rules/sendmail-8.23_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail-8.23 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sendmail-8.23.html diff --git a/src/licensedcode/data/rules/sendmail_1.RULE b/src/licensedcode/data/rules/sendmail_1.RULE index e9760c3f7fe..cf6f3386312 100644 --- a/src/licensedcode/data/rules/sendmail_1.RULE +++ b/src/licensedcode/data/rules/sendmail_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: sendmail +is_license_text: yes +minimum_coverage: 70 +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University of California + - Copyright (c) 1998-2004 Sendmail, Inc. +ignorable_holders: + - Sendmail, Inc. + - The Regents of the University of California +ignorable_emails: + - license@sendmail.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a different diff --git a/src/licensedcode/data/rules/sendmail_1.yml b/src/licensedcode/data/rules/sendmail_1.yml deleted file mode 100644 index beb6a8810c4..00000000000 --- a/src/licensedcode/data/rules/sendmail_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: sendmail -is_license_text: yes -minimum_coverage: 70 -ignorable_copyrights: - - Copyright (c) 1988, 1993 The Regents of the University of California - - Copyright (c) 1998-2004 Sendmail, Inc. -ignorable_holders: - - Sendmail, Inc. - - The Regents of the University of California -ignorable_emails: - - license@sendmail.com diff --git a/src/licensedcode/data/rules/sendmail_10.RULE b/src/licensedcode/data/rules/sendmail_10.RULE index 3ce843c7080..044097793a6 100644 --- a/src/licensedcode/data/rules/sendmail_10.RULE +++ b/src/licensedcode/data/rules/sendmail_10.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sendmail License Sendmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_10.yml b/src/licensedcode/data/rules/sendmail_10.yml deleted file mode 100644 index ff98178fd1c..00000000000 --- a/src/licensedcode/data/rules/sendmail_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail_11.RULE b/src/licensedcode/data/rules/sendmail_11.RULE index fb0f11ce0ee..2f115cf80e2 100644 --- a/src/licensedcode/data/rules/sendmail_11.RULE +++ b/src/licensedcode/data/rules/sendmail_11.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sendmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_11.yml b/src/licensedcode/data/rules/sendmail_11.yml deleted file mode 100644 index 6d1e7081901..00000000000 --- a/src/licensedcode/data/rules/sendmail_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail_12.RULE b/src/licensedcode/data/rules/sendmail_12.RULE index d840cfb5568..f909717d361 100644 --- a/src/licensedcode/data/rules/sendmail_12.RULE +++ b/src/licensedcode/data/rules/sendmail_12.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sendmail License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_12.yml b/src/licensedcode/data/rules/sendmail_12.yml deleted file mode 100644 index 6d1e7081901..00000000000 --- a/src/licensedcode/data/rules/sendmail_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail_13.RULE b/src/licensedcode/data/rules/sendmail_13.RULE index 9c2998b2fd7..92dbd8010f0 100644 --- a/src/licensedcode/data/rules/sendmail_13.RULE +++ b/src/licensedcode/data/rules/sendmail_13.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Sendmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_13.yml b/src/licensedcode/data/rules/sendmail_13.yml deleted file mode 100644 index 6d1e7081901..00000000000 --- a/src/licensedcode/data/rules/sendmail_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail_14.RULE b/src/licensedcode/data/rules/sendmail_14.RULE index 0d897ce85b8..16904a7abbe 100644 --- a/src/licensedcode/data/rules/sendmail_14.RULE +++ b/src/licensedcode/data/rules/sendmail_14.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Sendmail +--- + https://licenses.nuget.org/Sendmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_14.yml b/src/licensedcode/data/rules/sendmail_14.yml deleted file mode 100644 index a55e504b21e..00000000000 --- a/src/licensedcode/data/rules/sendmail_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Sendmail diff --git a/src/licensedcode/data/rules/sendmail_15.RULE b/src/licensedcode/data/rules/sendmail_15.RULE index bc7ba044e43..a56d2174544 100644 --- a/src/licensedcode/data/rules/sendmail_15.RULE +++ b/src/licensedcode/data/rules/sendmail_15.RULE @@ -1 +1,7 @@ +--- +license_expression: sendmail +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Sendmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_15.yml b/src/licensedcode/data/rules/sendmail_15.yml deleted file mode 100644 index cdfe500a104..00000000000 --- a/src/licensedcode/data/rules/sendmail_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sendmail_16.RULE b/src/licensedcode/data/rules/sendmail_16.RULE index a74435eace8..69255e33ef6 100644 --- a/src/licensedcode/data/rules/sendmail_16.RULE +++ b/src/licensedcode/data/rules/sendmail_16.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Sendmail +--- + {{Sendmail}} https://spdx.org/licenses/Sendmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_16.yml b/src/licensedcode/data/rules/sendmail_16.yml deleted file mode 100644 index 360c82f7efe..00000000000 --- a/src/licensedcode/data/rules/sendmail_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Sendmail diff --git a/src/licensedcode/data/rules/sendmail_17.RULE b/src/licensedcode/data/rules/sendmail_17.RULE index 3612791d22c..0b6ed3e0892 100644 --- a/src/licensedcode/data/rules/sendmail_17.RULE +++ b/src/licensedcode/data/rules/sendmail_17.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Sendmail +--- + LICENSE {{Sendmail}} https://spdx.org/licenses/Sendmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_17.yml b/src/licensedcode/data/rules/sendmail_17.yml deleted file mode 100644 index 360c82f7efe..00000000000 --- a/src/licensedcode/data/rules/sendmail_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Sendmail diff --git a/src/licensedcode/data/rules/sendmail_2.RULE b/src/licensedcode/data/rules/sendmail_2.RULE index aaff50eea11..f23b41f713b 100644 --- a/src/licensedcode/data/rules/sendmail_2.RULE +++ b/src/licensedcode/data/rules/sendmail_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sendmail +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1998-2004 Sendmail, Inc. +ignorable_holders: + - Sendmail, Inc. +--- + SENDMAIL OPEN SOURCE LICENSE The following license terms and conditions apply to this open source diff --git a/src/licensedcode/data/rules/sendmail_2.yml b/src/licensedcode/data/rules/sendmail_2.yml deleted file mode 100644 index 2f2a552f131..00000000000 --- a/src/licensedcode/data/rules/sendmail_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1998-2004 Sendmail, Inc. -ignorable_holders: - - Sendmail, Inc. diff --git a/src/licensedcode/data/rules/sendmail_3.RULE b/src/licensedcode/data/rules/sendmail_3.RULE index d6fa2bfc9b8..0ae32503d2c 100644 --- a/src/licensedcode/data/rules/sendmail_3.RULE +++ b/src/licensedcode/data/rules/sendmail_3.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf +--- + `Sendmail` - [Sendmail License](https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf) \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_3.yml b/src/licensedcode/data/rules/sendmail_3.yml deleted file mode 100644 index 010e46be383..00000000000 --- a/src/licensedcode/data/rules/sendmail_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf diff --git a/src/licensedcode/data/rules/sendmail_4.RULE b/src/licensedcode/data/rules/sendmail_4.RULE index 699a58ffeac..9a15984d0fd 100644 --- a/src/licensedcode/data/rules/sendmail_4.RULE +++ b/src/licensedcode/data/rules/sendmail_4.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sendmail +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE +--- + By using this file, you agree to the terms and conditions set forth in the LICENSE file which can be found at the top level of the sendmail distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_4.yml b/src/licensedcode/data/rules/sendmail_4.yml deleted file mode 100644 index 5e5480e2617..00000000000 --- a/src/licensedcode/data/rules/sendmail_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/sendmail_5.RULE b/src/licensedcode/data/rules/sendmail_5.RULE index 07ffb1bc437..745bbc5f70a 100644 --- a/src/licensedcode/data/rules/sendmail_5.RULE +++ b/src/licensedcode/data/rules/sendmail_5.RULE @@ -1,3 +1,19 @@ +--- +license_expression: sendmail +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1988, 1993 The Regents of the University of California + - Copyright (c) 1998 Sendmail, Inc. +ignorable_holders: + - Sendmail, Inc. + - The Regents of the University of California +ignorable_authors: + - the University of California, Berkeley and its contributors +ignorable_emails: + - license@sendmail.com +--- + SENDMAIL LICENSE The following license terms and conditions apply, unless a different diff --git a/src/licensedcode/data/rules/sendmail_5.yml b/src/licensedcode/data/rules/sendmail_5.yml deleted file mode 100644 index dabbe37f651..00000000000 --- a/src/licensedcode/data/rules/sendmail_5.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: sendmail -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1988, 1993 The Regents of the University of California - - Copyright (c) 1998 Sendmail, Inc. -ignorable_holders: - - Sendmail, Inc. - - The Regents of the University of California -ignorable_authors: - - the University of California, Berkeley and its contributors -ignorable_emails: - - license@sendmail.com diff --git a/src/licensedcode/data/rules/sendmail_6.RULE b/src/licensedcode/data/rules/sendmail_6.RULE index e6f9ae3e4c2..e9e476c8b38 100644 --- a/src/licensedcode/data/rules/sendmail_6.RULE +++ b/src/licensedcode/data/rules/sendmail_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: sendmail +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the sendmail distribution. diff --git a/src/licensedcode/data/rules/sendmail_6.yml b/src/licensedcode/data/rules/sendmail_6.yml deleted file mode 100644 index 6980b07db48..00000000000 --- a/src/licensedcode/data/rules/sendmail_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/sendmail_7.RULE b/src/licensedcode/data/rules/sendmail_7.RULE index 8beff3fc95b..3ffda9293f3 100644 --- a/src/licensedcode/data/rules/sendmail_7.RULE +++ b/src/licensedcode/data/rules/sendmail_7.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sendmail License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_7.yml b/src/licensedcode/data/rules/sendmail_7.yml deleted file mode 100644 index ff98178fd1c..00000000000 --- a/src/licensedcode/data/rules/sendmail_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail_8.RULE b/src/licensedcode/data/rules/sendmail_8.RULE index fc2ec8682bc..5876d954a67 100644 --- a/src/licensedcode/data/rules/sendmail_8.RULE +++ b/src/licensedcode/data/rules/sendmail_8.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Sendmail License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_8.yml b/src/licensedcode/data/rules/sendmail_8.yml deleted file mode 100644 index ff98178fd1c..00000000000 --- a/src/licensedcode/data/rules/sendmail_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail_9.RULE b/src/licensedcode/data/rules/sendmail_9.RULE index dabc2df9cf3..50a9c28ec2c 100644 --- a/src/licensedcode/data/rules/sendmail_9.RULE +++ b/src/licensedcode/data/rules/sendmail_9.RULE @@ -1 +1,10 @@ +--- +license_expression: sendmail +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sendmail Sendmail License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_9.yml b/src/licensedcode/data/rules/sendmail_9.yml deleted file mode 100644 index ff98178fd1c..00000000000 --- a/src/licensedcode/data/rules/sendmail_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sendmail_url_1.RULE b/src/licensedcode/data/rules/sendmail_url_1.RULE index 723a9c2c690..0eb6a8a6c00 100644 --- a/src/licensedcode/data/rules/sendmail_url_1.RULE +++ b/src/licensedcode/data/rules/sendmail_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sendmail +--- + https://spdx.org/licenses/sendmail \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_url_1.yml b/src/licensedcode/data/rules/sendmail_url_1.yml deleted file mode 100644 index c3b26b2b243..00000000000 --- a/src/licensedcode/data/rules/sendmail_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sendmail diff --git a/src/licensedcode/data/rules/sendmail_url_2.RULE b/src/licensedcode/data/rules/sendmail_url_2.RULE index 412646f2461..bc8eb018456 100644 --- a/src/licensedcode/data/rules/sendmail_url_2.RULE +++ b/src/licensedcode/data/rules/sendmail_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sendmail +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sendmail.html +--- + https://spdx.org/licenses/sendmail.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sendmail_url_2.yml b/src/licensedcode/data/rules/sendmail_url_2.yml deleted file mode 100644 index 96385a7465d..00000000000 --- a/src/licensedcode/data/rules/sendmail_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sendmail -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sendmail.html diff --git a/src/licensedcode/data/rules/service-comp-arch.RULE b/src/licensedcode/data/rules/service-comp-arch.RULE index 14149219a85..f934a3931f3 100644 --- a/src/licensedcode/data/rules/service-comp-arch.RULE +++ b/src/licensedcode/data/rules/service-comp-arch.RULE @@ -1,3 +1,10 @@ +--- +license_expression: service-comp-arch +is_license_text: yes +ignorable_urls: + - http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications +--- + License for the Service Component Architecture JavaDoc, Interface Definition files and XSD files. diff --git a/src/licensedcode/data/rules/service-comp-arch.yml b/src/licensedcode/data/rules/service-comp-arch.yml deleted file mode 100644 index 818e0be5fc9..00000000000 --- a/src/licensedcode/data/rules/service-comp-arch.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: service-comp-arch -is_license_text: yes -ignorable_urls: - - http://www.osoa.org/display/Main/Service+Component+Architecture+Specifications diff --git a/src/licensedcode/data/rules/sfl-license.RULE b/src/licensedcode/data/rules/sfl-license.RULE index a75b4f09140..67196867f15 100644 --- a/src/licensedcode/data/rules/sfl-license.RULE +++ b/src/licensedcode/data/rules/sfl-license.RULE @@ -1 +1,9 @@ +--- +license_expression: sfl-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://legacy.imatix.com/html/sfl/sfl4.htm +--- + http://legacy.imatix.com/html/sfl/sfl4.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license.SPDX.RULE b/src/licensedcode/data/rules/sfl-license.SPDX.RULE index 14c8f12b63b..468d57ab33b 100644 --- a/src/licensedcode/data/rules/sfl-license.SPDX.RULE +++ b/src/licensedcode/data/rules/sfl-license.SPDX.RULE @@ -1,3 +1,18 @@ +--- +license_expression: sfl-license +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1991-2000 iMatix Corporation + - Copyright (c) 1991-2000 iMatix Corporation + - Parts copyright (c) 1991-2000 iMatix Corporation +ignorable_holders: + - iMatix Corporation +ignorable_urls: + - http://www.imatix.com/ +--- + The SFL License Agreement This license agreement covers your use of the iMatix STANDARD FUNCTION LIBRARY (SFL), its source code, documentation, and executable files, hereinafter referred to as "the Product". diff --git a/src/licensedcode/data/rules/sfl-license.SPDX.yml b/src/licensedcode/data/rules/sfl-license.SPDX.yml deleted file mode 100644 index e07cf6a6836..00000000000 --- a/src/licensedcode/data/rules/sfl-license.SPDX.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: sfl-license -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1991-2000 iMatix Corporation - - Copyright (c) 1991-2000 iMatix Corporation - - Parts copyright (c) 1991-2000 iMatix Corporation -ignorable_holders: - - iMatix Corporation -ignorable_urls: - - http://www.imatix.com/ diff --git a/src/licensedcode/data/rules/sfl-license.yml b/src/licensedcode/data/rules/sfl-license.yml deleted file mode 100644 index d9366421ce0..00000000000 --- a/src/licensedcode/data/rules/sfl-license.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://legacy.imatix.com/html/sfl/sfl4.htm diff --git a/src/licensedcode/data/rules/sfl-license_1.RULE b/src/licensedcode/data/rules/sfl-license_1.RULE index dce9780bd4c..b9ebafa9770 100644 --- a/src/licensedcode/data/rules/sfl-license_1.RULE +++ b/src/licensedcode/data/rules/sfl-license_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sfl-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.imatix.com/ +--- + http://www.imatix.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_1.yml b/src/licensedcode/data/rules/sfl-license_1.yml deleted file mode 100644 index 7de18c2d929..00000000000 --- a/src/licensedcode/data/rules/sfl-license_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.imatix.com/ diff --git a/src/licensedcode/data/rules/sfl-license_10.RULE b/src/licensedcode/data/rules/sfl-license_10.RULE index 655eac754cc..37252581892 100644 --- a/src/licensedcode/data/rules/sfl-license_10.RULE +++ b/src/licensedcode/data/rules/sfl-license_10.RULE @@ -1 +1,9 @@ +--- +license_expression: sfl-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/iMatix +--- + https://licenses.nuget.org/iMatix \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_10.yml b/src/licensedcode/data/rules/sfl-license_10.yml deleted file mode 100644 index 5e4e975e813..00000000000 --- a/src/licensedcode/data/rules/sfl-license_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/iMatix diff --git a/src/licensedcode/data/rules/sfl-license_11.RULE b/src/licensedcode/data/rules/sfl-license_11.RULE index 616dd6aff93..9306a9a4d91 100644 --- a/src/licensedcode/data/rules/sfl-license_11.RULE +++ b/src/licensedcode/data/rules/sfl-license_11.RULE @@ -1 +1,7 @@ +--- +license_expression: sfl-license +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/iMatix \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_11.yml b/src/licensedcode/data/rules/sfl-license_11.yml deleted file mode 100644 index 3860ee2050a..00000000000 --- a/src/licensedcode/data/rules/sfl-license_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sfl-license_12.RULE b/src/licensedcode/data/rules/sfl-license_12.RULE index bd31dd9c01e..d6370405246 100644 --- a/src/licensedcode/data/rules/sfl-license_12.RULE +++ b/src/licensedcode/data/rules/sfl-license_12.RULE @@ -1 +1,9 @@ +--- +license_expression: sfl-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/iMatix +--- + {{iMatix}} https://spdx.org/licenses/iMatix \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_12.yml b/src/licensedcode/data/rules/sfl-license_12.yml deleted file mode 100644 index bfd40d84f06..00000000000 --- a/src/licensedcode/data/rules/sfl-license_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/iMatix diff --git a/src/licensedcode/data/rules/sfl-license_13.RULE b/src/licensedcode/data/rules/sfl-license_13.RULE index bfb4b7536d8..307cdaea430 100644 --- a/src/licensedcode/data/rules/sfl-license_13.RULE +++ b/src/licensedcode/data/rules/sfl-license_13.RULE @@ -1 +1,9 @@ +--- +license_expression: sfl-license +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/iMatix +--- + LICENSE {{iMatix}} https://spdx.org/licenses/iMatix \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_13.yml b/src/licensedcode/data/rules/sfl-license_13.yml deleted file mode 100644 index bfd40d84f06..00000000000 --- a/src/licensedcode/data/rules/sfl-license_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/iMatix diff --git a/src/licensedcode/data/rules/sfl-license_2.RULE b/src/licensedcode/data/rules/sfl-license_2.RULE index 99e35b8b50d..1053ff2ce9e 100644 --- a/src/licensedcode/data/rules/sfl-license_2.RULE +++ b/src/licensedcode/data/rules/sfl-license_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sfl-license +is_license_notice: yes +--- + License: This is free software; you can redistribute it and/or modify it under the terms of the SFL License Agreement as provided in the file LICENSE.TXT. This software is distributed in diff --git a/src/licensedcode/data/rules/sfl-license_2.yml b/src/licensedcode/data/rules/sfl-license_2.yml deleted file mode 100644 index 8c927071945..00000000000 --- a/src/licensedcode/data/rules/sfl-license_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sfl-license -is_license_notice: yes diff --git a/src/licensedcode/data/rules/sfl-license_3.RULE b/src/licensedcode/data/rules/sfl-license_3.RULE index dad9c8dff33..bf4b4644c77 100644 --- a/src/licensedcode/data/rules/sfl-license_3.RULE +++ b/src/licensedcode/data/rules/sfl-license_3.RULE @@ -1 +1,10 @@ +--- +license_expression: sfl-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + iMatix Standard Function Library Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_3.yml b/src/licensedcode/data/rules/sfl-license_3.yml deleted file mode 100644 index 6b20af23096..00000000000 --- a/src/licensedcode/data/rules/sfl-license_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sfl-license_4.RULE b/src/licensedcode/data/rules/sfl-license_4.RULE index 06a74b5a82c..8ab34bb45a7 100644 --- a/src/licensedcode/data/rules/sfl-license_4.RULE +++ b/src/licensedcode/data/rules/sfl-license_4.RULE @@ -1 +1,10 @@ +--- +license_expression: sfl-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: iMatix Standard Function Library Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_4.yml b/src/licensedcode/data/rules/sfl-license_4.yml deleted file mode 100644 index 6b20af23096..00000000000 --- a/src/licensedcode/data/rules/sfl-license_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sfl-license_5.RULE b/src/licensedcode/data/rules/sfl-license_5.RULE index 6c6542f86bd..a050dd18a8d 100644 --- a/src/licensedcode/data/rules/sfl-license_5.RULE +++ b/src/licensedcode/data/rules/sfl-license_5.RULE @@ -1 +1,10 @@ +--- +license_expression: sfl-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + iMatix iMatix Standard Function Library Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_5.yml b/src/licensedcode/data/rules/sfl-license_5.yml deleted file mode 100644 index 6b20af23096..00000000000 --- a/src/licensedcode/data/rules/sfl-license_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sfl-license_6.RULE b/src/licensedcode/data/rules/sfl-license_6.RULE index 791ef93c28c..df060efada2 100644 --- a/src/licensedcode/data/rules/sfl-license_6.RULE +++ b/src/licensedcode/data/rules/sfl-license_6.RULE @@ -1 +1,10 @@ +--- +license_expression: sfl-license +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + iMatix Standard Function Library Agreement iMatix \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_6.yml b/src/licensedcode/data/rules/sfl-license_6.yml deleted file mode 100644 index 6b20af23096..00000000000 --- a/src/licensedcode/data/rules/sfl-license_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sfl-license_7.RULE b/src/licensedcode/data/rules/sfl-license_7.RULE index 50bbf905168..424ec9ea351 100644 --- a/src/licensedcode/data/rules/sfl-license_7.RULE +++ b/src/licensedcode/data/rules/sfl-license_7.RULE @@ -1 +1,10 @@ +--- +license_expression: sfl-license +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: iMatix \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_7.yml b/src/licensedcode/data/rules/sfl-license_7.yml deleted file mode 100644 index 9fa87437773..00000000000 --- a/src/licensedcode/data/rules/sfl-license_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sfl-license -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sfl-license_8.RULE b/src/licensedcode/data/rules/sfl-license_8.RULE index 088f3ecf53a..a09b218d3d8 100644 --- a/src/licensedcode/data/rules/sfl-license_8.RULE +++ b/src/licensedcode/data/rules/sfl-license_8.RULE @@ -1 +1,10 @@ +--- +license_expression: sfl-license +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: iMatix Standard Function Library Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_8.yml b/src/licensedcode/data/rules/sfl-license_8.yml deleted file mode 100644 index 9fa87437773..00000000000 --- a/src/licensedcode/data/rules/sfl-license_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sfl-license -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sfl-license_9.RULE b/src/licensedcode/data/rules/sfl-license_9.RULE index 99d8cbf78e2..f34d5a76eaf 100644 --- a/src/licensedcode/data/rules/sfl-license_9.RULE +++ b/src/licensedcode/data/rules/sfl-license_9.RULE @@ -1 +1,10 @@ +--- +license_expression: sfl-license +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: iMatix \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_9.yml b/src/licensedcode/data/rules/sfl-license_9.yml deleted file mode 100644 index 9fa87437773..00000000000 --- a/src/licensedcode/data/rules/sfl-license_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sfl-license -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sfl-license_url_1.RULE b/src/licensedcode/data/rules/sfl-license_url_1.RULE index e8ef11525d4..087ad1ee530 100644 --- a/src/licensedcode/data/rules/sfl-license_url_1.RULE +++ b/src/licensedcode/data/rules/sfl-license_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sfl-license +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/imatix +--- + https://spdx.org/licenses/imatix \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_url_1.yml b/src/licensedcode/data/rules/sfl-license_url_1.yml deleted file mode 100644 index 13db5373691..00000000000 --- a/src/licensedcode/data/rules/sfl-license_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/imatix diff --git a/src/licensedcode/data/rules/sfl-license_url_2.RULE b/src/licensedcode/data/rules/sfl-license_url_2.RULE index c71c2467d91..e934dac9a8f 100644 --- a/src/licensedcode/data/rules/sfl-license_url_2.RULE +++ b/src/licensedcode/data/rules/sfl-license_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sfl-license +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/imatix.html +--- + https://spdx.org/licenses/imatix.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sfl-license_url_2.yml b/src/licensedcode/data/rules/sfl-license_url_2.yml deleted file mode 100644 index 95b997197d6..00000000000 --- a/src/licensedcode/data/rules/sfl-license_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sfl-license -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/imatix.html diff --git a/src/licensedcode/data/rules/sgi-cid-1.0.RULE b/src/licensedcode/data/rules/sgi-cid-1.0.RULE index 0f99ca5c396..75546f4aee6 100644 --- a/src/licensedcode/data/rules/sgi-cid-1.0.RULE +++ b/src/licensedcode/data/rules/sgi-cid-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-cid-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.xfree86.org/current/LICENSE10.html +--- + http://www.xfree86.org/current/LICENSE10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-cid-1.0.yml b/src/licensedcode/data/rules/sgi-cid-1.0.yml deleted file mode 100644 index 46b380d1296..00000000000 --- a/src/licensedcode/data/rules/sgi-cid-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-cid-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.xfree86.org/current/LICENSE10.html diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_1.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_1.RULE index 80a22c11861..2ebb1219323 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_1.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc +--- + http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_1.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_1.yml deleted file mode 100644 index bb0eb2ab4fa..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.1.doc diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_10.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_10.RULE index 89660659317..1cbf505c7a0 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_10.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SGI Free Software License B v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_10.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_10.yml deleted file mode 100644 index b6799b18937..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_11.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_11.RULE index 04d7a923ac8..f3e51e7ff2d 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_11.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SGI-B-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_11.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_11.yml deleted file mode 100644 index b6799b18937..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_12.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_12.RULE index 95502967e45..4b74cc24cee 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_12.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SGI-B-1.1 +--- + https://licenses.nuget.org/SGI-B-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_12.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_12.yml deleted file mode 100644 index 49fcf865454..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SGI-B-1.1 diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_13.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_13.RULE index 9ecbacd2a5b..3b19bf8a685 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_13.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_13.RULE @@ -1 +1,7 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SGI-B-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_13.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_13.yml deleted file mode 100644 index 160cbc6f3a9..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_14.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_14.RULE index 36cfc2bdcda..e8f4831f827 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_14.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_14.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SGI-B-1.1 +--- + {{SGI-B-1.1}} https://spdx.org/licenses/SGI-B-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_14.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_14.yml deleted file mode 100644 index 9315a4675e1..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SGI-B-1.1 diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_15.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_15.RULE index 8cb21784801..756e72449bb 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_15.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SGI-B-1.1 +--- + LICENSE {{SGI-B-1.1}} https://spdx.org/licenses/SGI-B-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_15.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_15.yml deleted file mode 100644 index 9315a4675e1..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SGI-B-1.1 diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_2.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_2.RULE index 6c795adf357..bd6eca95532 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_2.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB +--- + SGI FREE SOFTWARE LICENSE B (Version 1.1 02/22/2000) diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_2.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_2.yml deleted file mode 100644 index fcf97e2bede..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_authors: - - Silicon Graphics, Inc. -ignorable_urls: - - http://oss.sgi.com/projects/FreeB diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_3.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_3.RULE index f300d5ba7e6..e9654261cf0 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_3.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_notice: yes +ignorable_urls: + - http://oss.sgi.com/projects/FreeB +--- + License Applicability. Except to the extent portions of this file are made subject to an alternative license as permitted in the SGI Free Software License B, Version 1.1 (the "License"), the contents of this @@ -14,4 +21,4 @@ DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. -Original Code. The Original Code is: \ No newline at end of file +Original Code. The Original Code is: \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_3.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_3.yml deleted file mode 100644 index 0573dee9c30..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_notice: yes -ignorable_urls: - - http://oss.sgi.com/projects/FreeB diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_4.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_4.RULE index 2038558b1bc..262e4dd13a2 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_4.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_notice: yes +ignorable_urls: + - http://oss.sgi.com/projects/FreeB +--- + License Applicability. Except to the extent portions of this file are made subject to an alternative license as permitted in the SGI Free Software License B, Version 1.1 (the "License"), the contents of this @@ -12,4 +19,4 @@ Note that, as provided in the License, the Software is distributed on an "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A -PARTICULAR PURPOSE, AND NON-INFRINGEMENT. +PARTICULAR PURPOSE, AND NON-INFRINGEMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_4.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_4.yml deleted file mode 100644 index 0573dee9c30..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_notice: yes -ignorable_urls: - - http://oss.sgi.com/projects/FreeB diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_5.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_5.RULE index ef9fdc3d58f..ed0580b1fee 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_5.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI Free Software License B v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_5.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_5.yml deleted file mode 100644 index af74ad7e761..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_6.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_6.RULE index 96021da79b8..b70adb9be1e 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_6.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SGI Free Software License B v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_6.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_6.yml deleted file mode 100644 index af74ad7e761..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_7.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_7.RULE index 809e5b8ae56..23112462e96 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_7.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI-B-1.1 SGI Free Software License B v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_7.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_7.yml deleted file mode 100644 index af74ad7e761..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_8.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_8.RULE index 0e4735ad8ab..979bf1f9c39 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_8.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI Free Software License B v1.1 SGI-B-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_8.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_8.yml deleted file mode 100644 index af74ad7e761..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_9.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_9.RULE index a60ea2de5d2..c1397c26653 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_9.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SGI-B-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_9.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_9.yml deleted file mode 100644 index b6799b18937..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_url_1.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_url_1.RULE index 7286031ecb6..9b19a562209 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sgi-b-1.1 +--- + https://spdx.org/licenses/sgi-b-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_url_1.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_url_1.yml deleted file mode 100644 index 7e7bbfadcab..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sgi-b-1.1 diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_url_2.RULE b/src/licensedcode/data/rules/sgi-freeb-1.1_url_2.RULE index 149be61f8b5..aa8f75f0aad 100644 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sgi-b-1.1.html +--- + https://spdx.org/licenses/sgi-b-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-1.1_url_2.yml b/src/licensedcode/data/rules/sgi-freeb-1.1_url_2.yml deleted file mode 100644 index 1cca5fe9349..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sgi-b-1.1.html diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_1.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_1.RULE index 2ec35a7f988..d259a77bfbe 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_1.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + http://oss.sgi.com/projects/FreeB/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_1.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_1.yml deleted file mode 100644 index 292b19fb58f..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_10.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_10.RULE index d578f10c96c..9e1b3b82bcc 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_10.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI Free Software License B v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_10.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_10.yml deleted file mode 100644 index faa43a5be96..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_11.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_11.RULE index 7f7afe497be..b6a34479089 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_11.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SGI Free Software License B v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_11.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_11.yml deleted file mode 100644 index faa43a5be96..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_12.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_12.RULE index 4a203a6201d..19426bb851a 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_12.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI-B-2.0 SGI Free Software License B v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_12.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_12.yml deleted file mode 100644 index faa43a5be96..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_13.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_13.RULE index 3fd8db4a8e3..df25a4ebaa7 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_13.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI Free Software License B v2.0 SGI-B-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_13.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_13.yml deleted file mode 100644 index faa43a5be96..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_14.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_14.RULE index f95d12bfd50..5d69c48247e 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_14.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SGI-B-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_14.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_14.yml deleted file mode 100644 index a59688511d5..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_15.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_15.RULE index 291ea2ef82b..638fd54a6e4 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_15.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SGI Free Software License B v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_15.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_15.yml deleted file mode 100644 index a59688511d5..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_16.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_16.RULE index de8627d0efa..ef49b99d2b4 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_16.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SGI-B-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_16.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_16.yml deleted file mode 100644 index a59688511d5..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_17.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_17.RULE index 8faf1546bad..cc5509c3f23 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_17.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SGI-B-2.0 +--- + https://licenses.nuget.org/SGI-B-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_17.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_17.yml deleted file mode 100644 index 61b8dfeca52..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SGI-B-2.0 diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_18.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_18.RULE index ad43262a887..bd58d7ba05d 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_18.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SGI-B-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_18.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_18.yml deleted file mode 100644 index c93f3b4f634..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_19.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_19.RULE index 409ed35dd2a..5c4b97262ef 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_19.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SGI-B-2.0 +--- + LICENSE {{SGI-B-2.0}} https://spdx.org/licenses/SGI-B-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_19.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_19.yml deleted file mode 100644 index 2dae04e10e6..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SGI-B-2.0 diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_2.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_2.RULE index 107e6a815c2..98d11911280 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_2.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_2.RULE @@ -1,3 +1,16 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) dates of first publication Silicon Graphics, Inc. +ignorable_holders: + - dates of first publication Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_2.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_2.yml deleted file mode 100644 index aafade88cf3..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_2.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) dates of first publication Silicon Graphics, Inc. -ignorable_holders: - - dates of first publication Silicon Graphics, Inc. -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_20.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_20.RULE index f3f0fec9544..226ac6209e1 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_20.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_20.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SGI-B-2.0 +--- + {{SGI-B-2.0}} https://spdx.org/licenses/SGI-B-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_20.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_20.yml deleted file mode 100644 index 2dae04e10e6..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SGI-B-2.0 diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_3.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_3.RULE index a99248504b9..95302d3c08e 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_3.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +ignorable_copyrights: + - Copyright (c) September 18, 2008 Silicon Graphics, Inc. +ignorable_holders: + - September 18, Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) * Copyright (C) September 18, 2008 Silicon Graphics, Inc. All Rights Reserved. * This document is licensed under the SGI Free Software B License Version diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_3.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_3.yml deleted file mode 100644 index edf77a9ce2a..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -ignorable_copyrights: - - Copyright (c) September 18, 2008 Silicon Graphics, Inc. -ignorable_holders: - - September 18, Silicon Graphics, Inc. -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_4.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_4.RULE index ba21dc04672..b21b3b4ce36 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_4.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) * This document is licensed under the SGI Free Software B License Version * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_4.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_4.yml deleted file mode 100644 index 98f761a0f22..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_5.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_5.RULE index 2cf4cad780b..04c5be04145 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_5.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_5.RULE @@ -1,2 +1,9 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + * This document is licensed under the SGI Free Software B License Version * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_5.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_5.yml deleted file mode 100644 index 98f761a0f22..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_6.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_6.RULE index 599b8b12ffc..a27d708ea3a 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_6.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_6.RULE @@ -1,3 +1,16 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_text: yes +minimum_coverage: 75 +ignorable_copyrights: + - Copyright (c) dates of first publication Silicon Graphics, Inc. +ignorable_holders: + - dates of first publication Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB + - http://oss.sgi.com/projects/FreeB/"http:/oss.sgi.com/projects/FreeB/ +--- + Per http://oss.sgi.com/projects/FreeB/, the code is covered under the SGI Free Software License B, version 2.0, a copy of which is included below. @@ -32,4 +45,4 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written -authorization from Silicon Graphics, Inc. +authorization from Silicon Graphics, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_6.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_6.yml deleted file mode 100644 index 290ea81c3a9..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_6.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_text: yes -minimum_coverage: 75 -ignorable_copyrights: - - Copyright (c) dates of first publication Silicon Graphics, Inc. -ignorable_holders: - - dates of first publication Silicon Graphics, Inc. -ignorable_urls: - - http://oss.sgi.com/projects/FreeB - - http://oss.sgi.com/projects/FreeB/"http:/oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_7.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_7.RULE index dc0f6c06723..5240ab6254a 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_7.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_7.RULE @@ -1 +1,7 @@ -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) \ No newline at end of file +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +relevance: 100 +--- + +SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_7.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_7.yml deleted file mode 100644 index c93f3b4f634..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_8.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_8.RULE index 6e1357a891f..7fcc9b41a43 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_8.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) Permission is hereby granted, free of charge, to any person obtaining a diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_8.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_8.yml deleted file mode 100644 index 15d6058592d..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_9.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_9.RULE index d154ae38adf..4a899c10b00 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_9.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_9.RULE @@ -1,6 +1,18 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) dates of first publication Silicon Graphics, Inc. +ignorable_holders: + - dates of first publication Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/ +--- + SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) Copyright (C) [dates of first publication] Silicon Graphics, Inc. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice including the dates of first publication and either this permission notice or a reference to http://oss.sgi.com/projects/FreeB/ 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 SILICON GRAPHICS, INC. 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. -Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Silicon Graphics, Inc. +Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Silicon Graphics, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_9.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_9.yml deleted file mode 100644 index 8b7fa6cd479..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_9.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_text: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) dates of first publication Silicon Graphics, Inc. -ignorable_holders: - - dates of first publication Silicon Graphics, Inc. -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/ diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_url_1.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_url_1.RULE index 2ba412a3e77..957cee1d4d1 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sgi-b-2.0 +--- + https://spdx.org/licenses/sgi-b-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_url_1.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_url_1.yml deleted file mode 100644 index 297de63bbe4..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sgi-b-2.0 diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_url_2.RULE b/src/licensedcode/data/rules/sgi-freeb-2.0_url_2.RULE index 5984395cf86..b3ff228bc1a 100644 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/sgi-freeb-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sgi-b-2.0.html +--- + https://spdx.org/licenses/sgi-b-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-freeb-2.0_url_2.yml b/src/licensedcode/data/rules/sgi-freeb-2.0_url_2.yml deleted file mode 100644 index 654e0f3c3b0..00000000000 --- a/src/licensedcode/data/rules/sgi-freeb-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sgi-b-2.0.html diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_1.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_1.RULE index 27d96cc7dff..44efb5955a2 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_1.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html +--- + http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_1.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_1.yml deleted file mode 100644 index 3ba5d0af699..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_10.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_10.RULE index 975162f66ef..7b3124c50a4 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_10.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SGI-B-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_10.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_10.yml deleted file mode 100644 index d715ca87ff0..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_11.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_11.RULE index fd53d473a61..54d2cb599e1 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_11.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SGI-B-1.0 +--- + https://licenses.nuget.org/SGI-B-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_11.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_11.yml deleted file mode 100644 index e218a9a48a7..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SGI-B-1.0 diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_12.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_12.RULE index 78ad4f7e57b..36580337337 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_12.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SGI-B-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_12.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_12.yml deleted file mode 100644 index 561e1493ef8..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_13.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_13.RULE index 48ff3a1ccbb..c55e275ada7 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_13.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SGI-B-1.0 +--- + {{SGI-B-1.0}} https://spdx.org/licenses/SGI-B-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_13.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_13.yml deleted file mode 100644 index 9c8fa35609b..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SGI-B-1.0 diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_14.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_14.RULE index 150794c9f96..b620fdfdc1f 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_14.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SGI-B-1.0 +--- + LICENSE {{SGI-B-1.0}} https://spdx.org/licenses/SGI-B-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_14.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_14.yml deleted file mode 100644 index 9c8fa35609b..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SGI-B-1.0 diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_2.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_2.RULE index 081375d89f9..259c809988c 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_2.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB +--- + SGI FREE SOFTWARE LICENSE B (Version 1.0 [1/25/2000]) 1. Definitions. diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_2.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_2.yml deleted file mode 100644 index ba8bc3da808..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -ignorable_authors: - - Silicon Graphics, Inc. -ignorable_urls: - - http://oss.sgi.com/projects/FreeB diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_3.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_3.RULE index 07f3eafb43d..f5706aeb5ee 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_3.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_notice: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_authors: + - Silicon Graphics, Inc. +ignorable_urls: + - http://oss.sgi.com/projects/FreeB +--- + SGI FREE SOFTWARE LICENSE B (Version 1.0 1/25/2000) diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_3.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_3.yml deleted file mode 100644 index 40d04691251..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_notice: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_authors: - - Silicon Graphics, Inc. -ignorable_urls: - - http://oss.sgi.com/projects/FreeB diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_4.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_4.RULE index b126e6406ae..de3ae970aaf 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_4.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI Free Software License B v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_4.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_4.yml deleted file mode 100644 index 1693a9d5db3..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_5.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_5.RULE index d0a7b9b92de..6ce39cc26c0 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_5.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SGI Free Software License B v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_5.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_5.yml deleted file mode 100644 index 1693a9d5db3..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_6.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_6.RULE index 9e27360a98e..788a4f026ec 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_6.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI-B-1.0 SGI Free Software License B v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_6.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_6.yml deleted file mode 100644 index 1693a9d5db3..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_7.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_7.RULE index 95c732b015d..ed66e843ca9 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_7.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SGI Free Software License B v1.0 SGI-B-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_7.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_7.yml deleted file mode 100644 index 1693a9d5db3..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_8.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_8.RULE index 9fd8ea327e8..6763408e8dc 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_8.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SGI-B-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_8.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_8.yml deleted file mode 100644 index d715ca87ff0..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_9.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_9.RULE index 3850a2ec2d1..6e5859bd95c 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_9.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SGI Free Software License B v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_9.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_9.yml deleted file mode 100644 index d715ca87ff0..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_url_1.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_url_1.RULE index a73b1637e76..826b304baa6 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sgi-b-1.0 +--- + https://spdx.org/licenses/sgi-b-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_url_1.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_url_1.yml deleted file mode 100644 index 59b07681573..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sgi-b-1.0 diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_url_2.RULE b/src/licensedcode/data/rules/sgi-fslb-1.0_url_2.RULE index f6d4a897213..2d12af26944 100644 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/sgi-fslb-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sgi-b-1.0.html +--- + https://spdx.org/licenses/sgi-b-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-fslb-1.0_url_2.yml b/src/licensedcode/data/rules/sgi-fslb-1.0_url_2.yml deleted file mode 100644 index 035d2247145..00000000000 --- a/src/licensedcode/data/rules/sgi-fslb-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sgi-b-1.0.html diff --git a/src/licensedcode/data/rules/sgi-glx-1.0.RULE b/src/licensedcode/data/rules/sgi-glx-1.0.RULE index 53c0c7376e1..3c4e8f444e3 100644 --- a/src/licensedcode/data/rules/sgi-glx-1.0.RULE +++ b/src/licensedcode/data/rules/sgi-glx-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-glx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://velib.kyb.mpg.de/docu/GLX.html +--- + http://velib.kyb.mpg.de/docu/GLX.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-glx-1.0.yml b/src/licensedcode/data/rules/sgi-glx-1.0.yml deleted file mode 100644 index 19994d78ee7..00000000000 --- a/src/licensedcode/data/rules/sgi-glx-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-glx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://velib.kyb.mpg.de/docu/GLX.html diff --git a/src/licensedcode/data/rules/sgi-glx-1.0_1.RULE b/src/licensedcode/data/rules/sgi-glx-1.0_1.RULE index a992e02183b..e6b9c2e58ec 100644 --- a/src/licensedcode/data/rules/sgi-glx-1.0_1.RULE +++ b/src/licensedcode/data/rules/sgi-glx-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sgi-glx-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.sgi.com/products/software/opensource/glx/glxlicense.txt +--- + http://www.sgi.com/products/software/opensource/glx/glxlicense.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/sgi-glx-1.0_1.yml b/src/licensedcode/data/rules/sgi-glx-1.0_1.yml deleted file mode 100644 index eb1d6067129..00000000000 --- a/src/licensedcode/data/rules/sgi-glx-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sgi-glx-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.sgi.com/products/software/opensource/glx/glxlicense.txt diff --git a/src/licensedcode/data/rules/sglib.RULE b/src/licensedcode/data/rules/sglib.RULE index c5a55dfcb61..440b6c80e34 100644 --- a/src/licensedcode/data/rules/sglib.RULE +++ b/src/licensedcode/data/rules/sglib.RULE @@ -1 +1,9 @@ +--- +license_expression: sglib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.xref-tech.com/sglib/ +--- + http://www.xref-tech.com/sglib/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/sglib.yml b/src/licensedcode/data/rules/sglib.yml deleted file mode 100644 index 933c04de69c..00000000000 --- a/src/licensedcode/data/rules/sglib.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sglib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.xref-tech.com/sglib/ diff --git a/src/licensedcode/data/rules/shl-0.51_1.RULE b/src/licensedcode/data/rules/shl-0.51_1.RULE index 6ee9fade1e0..f88b7e67ed5 100644 --- a/src/licensedcode/data/rules/shl-0.51_1.RULE +++ b/src/licensedcode/data/rules/shl-0.51_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: shl-0.51 +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + SOLDERPAD HARDWARE LICENSE version 0.51 This license is based closely on the Apache License Version 2.0, but is not approved or endorsed by the Apache Foundation. A copy of the non-modified Apache diff --git a/src/licensedcode/data/rules/shl-0.51_1.yml b/src/licensedcode/data/rules/shl-0.51_1.yml deleted file mode 100644 index 1510940433e..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.51 -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/shl-0.51_10.RULE b/src/licensedcode/data/rules/shl-0.51_10.RULE index d16f6cf0668..0bd7ef003dd 100644 --- a/src/licensedcode/data/rules/shl-0.51_10.RULE +++ b/src/licensedcode/data/rules/shl-0.51_10.RULE @@ -1 +1,7 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SHL-0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_10.yml b/src/licensedcode/data/rules/shl-0.51_10.yml deleted file mode 100644 index fbec04d17e1..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/shl-0.51_11.RULE b/src/licensedcode/data/rules/shl-0.51_11.RULE index 868c24e8495..3ab357bc2f7 100644 --- a/src/licensedcode/data/rules/shl-0.51_11.RULE +++ b/src/licensedcode/data/rules/shl-0.51_11.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SHL-0.51 +--- + {{SHL-0.51}} https://spdx.org/licenses/SHL-0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_11.yml b/src/licensedcode/data/rules/shl-0.51_11.yml deleted file mode 100644 index f29f34d9b20..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SHL-0.51 diff --git a/src/licensedcode/data/rules/shl-0.51_12.RULE b/src/licensedcode/data/rules/shl-0.51_12.RULE index bd4c3451755..a31fb9a56fc 100644 --- a/src/licensedcode/data/rules/shl-0.51_12.RULE +++ b/src/licensedcode/data/rules/shl-0.51_12.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SHL-0.51 +--- + LICENSE {{SHL-0.51}} https://spdx.org/licenses/SHL-0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_12.yml b/src/licensedcode/data/rules/shl-0.51_12.yml deleted file mode 100644 index f29f34d9b20..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SHL-0.51 diff --git a/src/licensedcode/data/rules/shl-0.51_2.RULE b/src/licensedcode/data/rules/shl-0.51_2.RULE index ab05d281fcf..f5d0057e529 100644 --- a/src/licensedcode/data/rules/shl-0.51_2.RULE +++ b/src/licensedcode/data/rules/shl-0.51_2.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Solderpad Hardware License, Version 0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_2.yml b/src/licensedcode/data/rules/shl-0.51_2.yml deleted file mode 100644 index e5f1570b6dd..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.51_3.RULE b/src/licensedcode/data/rules/shl-0.51_3.RULE index c90a14da6d2..f442c212d50 100644 --- a/src/licensedcode/data/rules/shl-0.51_3.RULE +++ b/src/licensedcode/data/rules/shl-0.51_3.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Solderpad Hardware License, Version 0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_3.yml b/src/licensedcode/data/rules/shl-0.51_3.yml deleted file mode 100644 index e5f1570b6dd..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.51_4.RULE b/src/licensedcode/data/rules/shl-0.51_4.RULE index d6babc0e06e..80556bc7c9a 100644 --- a/src/licensedcode/data/rules/shl-0.51_4.RULE +++ b/src/licensedcode/data/rules/shl-0.51_4.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SHL-0.51 Solderpad Hardware License, Version 0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_4.yml b/src/licensedcode/data/rules/shl-0.51_4.yml deleted file mode 100644 index e5f1570b6dd..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.51_5.RULE b/src/licensedcode/data/rules/shl-0.51_5.RULE index 66ba9d60270..57e5eb5d318 100644 --- a/src/licensedcode/data/rules/shl-0.51_5.RULE +++ b/src/licensedcode/data/rules/shl-0.51_5.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Solderpad Hardware License, Version 0.51 SHL-0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_5.yml b/src/licensedcode/data/rules/shl-0.51_5.yml deleted file mode 100644 index e5f1570b6dd..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.51_6.RULE b/src/licensedcode/data/rules/shl-0.51_6.RULE index 579a20d0f88..773b1b012a2 100644 --- a/src/licensedcode/data/rules/shl-0.51_6.RULE +++ b/src/licensedcode/data/rules/shl-0.51_6.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.51 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SHL-0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_6.yml b/src/licensedcode/data/rules/shl-0.51_6.yml deleted file mode 100644 index 2847337f1c5..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.51 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.51_7.RULE b/src/licensedcode/data/rules/shl-0.51_7.RULE index 28ad366356c..7b9c48c2f61 100644 --- a/src/licensedcode/data/rules/shl-0.51_7.RULE +++ b/src/licensedcode/data/rules/shl-0.51_7.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.51 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Solderpad Hardware License, Version 0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_7.yml b/src/licensedcode/data/rules/shl-0.51_7.yml deleted file mode 100644 index 2847337f1c5..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.51 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.51_8.RULE b/src/licensedcode/data/rules/shl-0.51_8.RULE index 5b76b1543da..cc3e1c02efd 100644 --- a/src/licensedcode/data/rules/shl-0.51_8.RULE +++ b/src/licensedcode/data/rules/shl-0.51_8.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.51 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SHL-0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_8.yml b/src/licensedcode/data/rules/shl-0.51_8.yml deleted file mode 100644 index 2847337f1c5..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.51 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.51_9.RULE b/src/licensedcode/data/rules/shl-0.51_9.RULE index 739684f3d45..7754f98d032 100644 --- a/src/licensedcode/data/rules/shl-0.51_9.RULE +++ b/src/licensedcode/data/rules/shl-0.51_9.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SHL-0.51 +--- + https://licenses.nuget.org/SHL-0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_9.yml b/src/licensedcode/data/rules/shl-0.51_9.yml deleted file mode 100644 index 3584eb943a6..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SHL-0.51 diff --git a/src/licensedcode/data/rules/shl-0.51_url_1.RULE b/src/licensedcode/data/rules/shl-0.51_url_1.RULE index 0127aaa6feb..c844eafc8c0 100644 --- a/src/licensedcode/data/rules/shl-0.51_url_1.RULE +++ b/src/licensedcode/data/rules/shl-0.51_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/shl-0.51 +--- + https://spdx.org/licenses/shl-0.51 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_url_1.yml b/src/licensedcode/data/rules/shl-0.51_url_1.yml deleted file mode 100644 index e4a2fd422d9..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/shl-0.51 diff --git a/src/licensedcode/data/rules/shl-0.51_url_2.RULE b/src/licensedcode/data/rules/shl-0.51_url_2.RULE index d5f87195cad..da13fff6c35 100644 --- a/src/licensedcode/data/rules/shl-0.51_url_2.RULE +++ b/src/licensedcode/data/rules/shl-0.51_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.51 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/shl-0.51.html +--- + https://spdx.org/licenses/shl-0.51.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.51_url_2.yml b/src/licensedcode/data/rules/shl-0.51_url_2.yml deleted file mode 100644 index 3a229f3c4e2..00000000000 --- a/src/licensedcode/data/rules/shl-0.51_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.51 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/shl-0.51.html diff --git a/src/licensedcode/data/rules/shl-0.5_1.RULE b/src/licensedcode/data/rules/shl-0.5_1.RULE index 6c6a18c5e46..4df566dbc63 100644 --- a/src/licensedcode/data/rules/shl-0.5_1.RULE +++ b/src/licensedcode/data/rules/shl-0.5_1.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Solderpad Hardware License v0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_1.yml b/src/licensedcode/data/rules/shl-0.5_1.yml deleted file mode 100644 index 38e4ad18fe4..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.5_10.RULE b/src/licensedcode/data/rules/shl-0.5_10.RULE index 00584383564..b2e72d7365c 100644 --- a/src/licensedcode/data/rules/shl-0.5_10.RULE +++ b/src/licensedcode/data/rules/shl-0.5_10.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SHL-0.5 +--- + LICENSE {{SHL-0.5}} https://spdx.org/licenses/SHL-0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_10.yml b/src/licensedcode/data/rules/shl-0.5_10.yml deleted file mode 100644 index 0bf04995458..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SHL-0.5 diff --git a/src/licensedcode/data/rules/shl-0.5_11.RULE b/src/licensedcode/data/rules/shl-0.5_11.RULE index e574ce656d0..e13dc03364a 100644 --- a/src/licensedcode/data/rules/shl-0.5_11.RULE +++ b/src/licensedcode/data/rules/shl-0.5_11.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SHL-0.5 +--- + {{SHL-0.5}} https://spdx.org/licenses/SHL-0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_11.yml b/src/licensedcode/data/rules/shl-0.5_11.yml deleted file mode 100644 index 0bf04995458..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SHL-0.5 diff --git a/src/licensedcode/data/rules/shl-0.5_2.RULE b/src/licensedcode/data/rules/shl-0.5_2.RULE index 784936db981..10d45a7cd5b 100644 --- a/src/licensedcode/data/rules/shl-0.5_2.RULE +++ b/src/licensedcode/data/rules/shl-0.5_2.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Solderpad Hardware License v0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_2.yml b/src/licensedcode/data/rules/shl-0.5_2.yml deleted file mode 100644 index 38e4ad18fe4..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.5_3.RULE b/src/licensedcode/data/rules/shl-0.5_3.RULE index 8126e512c68..64e4f47b35b 100644 --- a/src/licensedcode/data/rules/shl-0.5_3.RULE +++ b/src/licensedcode/data/rules/shl-0.5_3.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SHL-0.5 Solderpad Hardware License v0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_3.yml b/src/licensedcode/data/rules/shl-0.5_3.yml deleted file mode 100644 index 38e4ad18fe4..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.5_4.RULE b/src/licensedcode/data/rules/shl-0.5_4.RULE index f29a66f3756..33598b101ad 100644 --- a/src/licensedcode/data/rules/shl-0.5_4.RULE +++ b/src/licensedcode/data/rules/shl-0.5_4.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Solderpad Hardware License v0.5 SHL-0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_4.yml b/src/licensedcode/data/rules/shl-0.5_4.yml deleted file mode 100644 index 38e4ad18fe4..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.5_5.RULE b/src/licensedcode/data/rules/shl-0.5_5.RULE index cbd2889e16a..5173d764fb2 100644 --- a/src/licensedcode/data/rules/shl-0.5_5.RULE +++ b/src/licensedcode/data/rules/shl-0.5_5.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SHL-0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_5.yml b/src/licensedcode/data/rules/shl-0.5_5.yml deleted file mode 100644 index 325d7050bc1..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.5_6.RULE b/src/licensedcode/data/rules/shl-0.5_6.RULE index 87ef3a112b6..0412cdf344b 100644 --- a/src/licensedcode/data/rules/shl-0.5_6.RULE +++ b/src/licensedcode/data/rules/shl-0.5_6.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Solderpad Hardware License v0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_6.yml b/src/licensedcode/data/rules/shl-0.5_6.yml deleted file mode 100644 index 325d7050bc1..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.5_7.RULE b/src/licensedcode/data/rules/shl-0.5_7.RULE index 1a8054579a6..0700f75fbdc 100644 --- a/src/licensedcode/data/rules/shl-0.5_7.RULE +++ b/src/licensedcode/data/rules/shl-0.5_7.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-0.5 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SHL-0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_7.yml b/src/licensedcode/data/rules/shl-0.5_7.yml deleted file mode 100644 index 325d7050bc1..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-0.5 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-0.5_8.RULE b/src/licensedcode/data/rules/shl-0.5_8.RULE index 1c276596c83..5f77c63de50 100644 --- a/src/licensedcode/data/rules/shl-0.5_8.RULE +++ b/src/licensedcode/data/rules/shl-0.5_8.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SHL-0.5 +--- + https://licenses.nuget.org/SHL-0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_8.yml b/src/licensedcode/data/rules/shl-0.5_8.yml deleted file mode 100644 index 2ab1684390f..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SHL-0.5 diff --git a/src/licensedcode/data/rules/shl-0.5_9.RULE b/src/licensedcode/data/rules/shl-0.5_9.RULE index a0c2e8a0b8f..3de5fb1665e 100644 --- a/src/licensedcode/data/rules/shl-0.5_9.RULE +++ b/src/licensedcode/data/rules/shl-0.5_9.RULE @@ -1 +1,7 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SHL-0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_9.yml b/src/licensedcode/data/rules/shl-0.5_9.yml deleted file mode 100644 index b8d170f0950..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/shl-0.5_url_1.RULE b/src/licensedcode/data/rules/shl-0.5_url_1.RULE index 05724a0a6f7..2577fac697c 100644 --- a/src/licensedcode/data/rules/shl-0.5_url_1.RULE +++ b/src/licensedcode/data/rules/shl-0.5_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/shl-0.5 +--- + https://spdx.org/licenses/shl-0.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_url_1.yml b/src/licensedcode/data/rules/shl-0.5_url_1.yml deleted file mode 100644 index bbd9a3d91e8..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/shl-0.5 diff --git a/src/licensedcode/data/rules/shl-0.5_url_2.RULE b/src/licensedcode/data/rules/shl-0.5_url_2.RULE index 4a97baffa34..71315ce1415 100644 --- a/src/licensedcode/data/rules/shl-0.5_url_2.RULE +++ b/src/licensedcode/data/rules/shl-0.5_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-0.5 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/shl-0.5.html +--- + https://spdx.org/licenses/shl-0.5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-0.5_url_2.yml b/src/licensedcode/data/rules/shl-0.5_url_2.yml deleted file mode 100644 index ca0a0e74a74..00000000000 --- a/src/licensedcode/data/rules/shl-0.5_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-0.5 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/shl-0.5.html diff --git a/src/licensedcode/data/rules/shl-2.0_1.RULE b/src/licensedcode/data/rules/shl-2.0_1.RULE index 98a226e5686..8cd6a6a281a 100644 --- a/src/licensedcode/data/rules/shl-2.0_1.RULE +++ b/src/licensedcode/data/rules/shl-2.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Solderpad Hardware License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_1.yml b/src/licensedcode/data/rules/shl-2.0_1.yml deleted file mode 100644 index 0f38a2b1ab7..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.0_10.RULE b/src/licensedcode/data/rules/shl-2.0_10.RULE index 86ad9a63d30..e988dd5e977 100644 --- a/src/licensedcode/data/rules/shl-2.0_10.RULE +++ b/src/licensedcode/data/rules/shl-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SHL-2.0 +--- + {{SHL-2.0}} https://spdx.org/licenses/SHL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_10.yml b/src/licensedcode/data/rules/shl-2.0_10.yml deleted file mode 100644 index 6a785753f6e..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SHL-2.0 diff --git a/src/licensedcode/data/rules/shl-2.0_11.RULE b/src/licensedcode/data/rules/shl-2.0_11.RULE index 5b1131b1d2d..b53d3873a3f 100644 --- a/src/licensedcode/data/rules/shl-2.0_11.RULE +++ b/src/licensedcode/data/rules/shl-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SHL-2.0 +--- + LICENSE {{SHL-2.0}} https://spdx.org/licenses/SHL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_11.yml b/src/licensedcode/data/rules/shl-2.0_11.yml deleted file mode 100644 index 6a785753f6e..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SHL-2.0 diff --git a/src/licensedcode/data/rules/shl-2.0_2.RULE b/src/licensedcode/data/rules/shl-2.0_2.RULE index 7123c71c25c..0289ef20989 100644 --- a/src/licensedcode/data/rules/shl-2.0_2.RULE +++ b/src/licensedcode/data/rules/shl-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Solderpad Hardware License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_2.yml b/src/licensedcode/data/rules/shl-2.0_2.yml deleted file mode 100644 index 0f38a2b1ab7..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.0_3.RULE b/src/licensedcode/data/rules/shl-2.0_3.RULE index d6580596701..49069f3a850 100644 --- a/src/licensedcode/data/rules/shl-2.0_3.RULE +++ b/src/licensedcode/data/rules/shl-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SHL-2.0 Solderpad Hardware License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_3.yml b/src/licensedcode/data/rules/shl-2.0_3.yml deleted file mode 100644 index 0f38a2b1ab7..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.0_4.RULE b/src/licensedcode/data/rules/shl-2.0_4.RULE index 6ed946f3acb..90cf0fde133 100644 --- a/src/licensedcode/data/rules/shl-2.0_4.RULE +++ b/src/licensedcode/data/rules/shl-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Solderpad Hardware License v2.0 SHL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_4.yml b/src/licensedcode/data/rules/shl-2.0_4.yml deleted file mode 100644 index 0f38a2b1ab7..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.0_5.RULE b/src/licensedcode/data/rules/shl-2.0_5.RULE index 8245cb2a611..b592671edea 100644 --- a/src/licensedcode/data/rules/shl-2.0_5.RULE +++ b/src/licensedcode/data/rules/shl-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SHL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_5.yml b/src/licensedcode/data/rules/shl-2.0_5.yml deleted file mode 100644 index 8fd161667a7..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.0_6.RULE b/src/licensedcode/data/rules/shl-2.0_6.RULE index 78eadd3c95a..88838420c2d 100644 --- a/src/licensedcode/data/rules/shl-2.0_6.RULE +++ b/src/licensedcode/data/rules/shl-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Solderpad Hardware License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_6.yml b/src/licensedcode/data/rules/shl-2.0_6.yml deleted file mode 100644 index 8fd161667a7..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.0_7.RULE b/src/licensedcode/data/rules/shl-2.0_7.RULE index e0511458dfa..cbc6cc2334f 100644 --- a/src/licensedcode/data/rules/shl-2.0_7.RULE +++ b/src/licensedcode/data/rules/shl-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: SHL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_7.yml b/src/licensedcode/data/rules/shl-2.0_7.yml deleted file mode 100644 index 8fd161667a7..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.0_8.RULE b/src/licensedcode/data/rules/shl-2.0_8.RULE index 6c252762ba3..9b2dd1bb832 100644 --- a/src/licensedcode/data/rules/shl-2.0_8.RULE +++ b/src/licensedcode/data/rules/shl-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SHL-2.0 +--- + https://licenses.nuget.org/SHL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_8.yml b/src/licensedcode/data/rules/shl-2.0_8.yml deleted file mode 100644 index 02a86fb958f..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SHL-2.0 diff --git a/src/licensedcode/data/rules/shl-2.0_9.RULE b/src/licensedcode/data/rules/shl-2.0_9.RULE index 6b2cd08d378..74a0375f4b2 100644 --- a/src/licensedcode/data/rules/shl-2.0_9.RULE +++ b/src/licensedcode/data/rules/shl-2.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: shl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SHL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.0_9.yml b/src/licensedcode/data/rules/shl-2.0_9.yml deleted file mode 100644 index c0a37157f24..00000000000 --- a/src/licensedcode/data/rules/shl-2.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: shl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/shl-2.1_1.RULE b/src/licensedcode/data/rules/shl-2.1_1.RULE index fb6f41a532f..a29e4a810d5 100644 --- a/src/licensedcode/data/rules/shl-2.1_1.RULE +++ b/src/licensedcode/data/rules/shl-2.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Solderpad Hardware License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_1.yml b/src/licensedcode/data/rules/shl-2.1_1.yml deleted file mode 100644 index 7c1d0a3aeed..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.1_10.RULE b/src/licensedcode/data/rules/shl-2.1_10.RULE index 537882cbcb9..2c6728ded7a 100644 --- a/src/licensedcode/data/rules/shl-2.1_10.RULE +++ b/src/licensedcode/data/rules/shl-2.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SHL-2.1 +--- + {{SHL-2.1}} https://spdx.org/licenses/SHL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_10.yml b/src/licensedcode/data/rules/shl-2.1_10.yml deleted file mode 100644 index c922ef3bed6..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SHL-2.1 diff --git a/src/licensedcode/data/rules/shl-2.1_11.RULE b/src/licensedcode/data/rules/shl-2.1_11.RULE index 77309ffc5fc..66067c8ac1d 100644 --- a/src/licensedcode/data/rules/shl-2.1_11.RULE +++ b/src/licensedcode/data/rules/shl-2.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SHL-2.1 +--- + LICENSE {{SHL-2.1}} https://spdx.org/licenses/SHL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_11.yml b/src/licensedcode/data/rules/shl-2.1_11.yml deleted file mode 100644 index c922ef3bed6..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SHL-2.1 diff --git a/src/licensedcode/data/rules/shl-2.1_2.RULE b/src/licensedcode/data/rules/shl-2.1_2.RULE index 019222291f0..bc1bf37d4ea 100644 --- a/src/licensedcode/data/rules/shl-2.1_2.RULE +++ b/src/licensedcode/data/rules/shl-2.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Solderpad Hardware License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_2.yml b/src/licensedcode/data/rules/shl-2.1_2.yml deleted file mode 100644 index 7c1d0a3aeed..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.1_3.RULE b/src/licensedcode/data/rules/shl-2.1_3.RULE index 21e631ec7ee..fcebd5947a1 100644 --- a/src/licensedcode/data/rules/shl-2.1_3.RULE +++ b/src/licensedcode/data/rules/shl-2.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SHL-2.1 Solderpad Hardware License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_3.yml b/src/licensedcode/data/rules/shl-2.1_3.yml deleted file mode 100644 index 7c1d0a3aeed..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.1_4.RULE b/src/licensedcode/data/rules/shl-2.1_4.RULE index f23bcb5114b..ce2d527eac2 100644 --- a/src/licensedcode/data/rules/shl-2.1_4.RULE +++ b/src/licensedcode/data/rules/shl-2.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Solderpad Hardware License v2.1 SHL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_4.yml b/src/licensedcode/data/rules/shl-2.1_4.yml deleted file mode 100644 index 7c1d0a3aeed..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.1_5.RULE b/src/licensedcode/data/rules/shl-2.1_5.RULE index 6c001701e6c..babb9177227 100644 --- a/src/licensedcode/data/rules/shl-2.1_5.RULE +++ b/src/licensedcode/data/rules/shl-2.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SHL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_5.yml b/src/licensedcode/data/rules/shl-2.1_5.yml deleted file mode 100644 index b6fb574fc45..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.1_6.RULE b/src/licensedcode/data/rules/shl-2.1_6.RULE index 01a6cbb1566..6eb3a068b78 100644 --- a/src/licensedcode/data/rules/shl-2.1_6.RULE +++ b/src/licensedcode/data/rules/shl-2.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Solderpad Hardware License v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_6.yml b/src/licensedcode/data/rules/shl-2.1_6.yml deleted file mode 100644 index b6fb574fc45..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.1_7.RULE b/src/licensedcode/data/rules/shl-2.1_7.RULE index ed0f03f79c2..15adff9dbb5 100644 --- a/src/licensedcode/data/rules/shl-2.1_7.RULE +++ b/src/licensedcode/data/rules/shl-2.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: shl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: SHL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_7.yml b/src/licensedcode/data/rules/shl-2.1_7.yml deleted file mode 100644 index b6fb574fc45..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: shl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/shl-2.1_8.RULE b/src/licensedcode/data/rules/shl-2.1_8.RULE index 4588d505642..0cc66adf139 100644 --- a/src/licensedcode/data/rules/shl-2.1_8.RULE +++ b/src/licensedcode/data/rules/shl-2.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: shl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SHL-2.1 +--- + https://licenses.nuget.org/SHL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_8.yml b/src/licensedcode/data/rules/shl-2.1_8.yml deleted file mode 100644 index 7e03e6b8b25..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: shl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SHL-2.1 diff --git a/src/licensedcode/data/rules/shl-2.1_9.RULE b/src/licensedcode/data/rules/shl-2.1_9.RULE index 10a59bb2689..03e183938b0 100644 --- a/src/licensedcode/data/rules/shl-2.1_9.RULE +++ b/src/licensedcode/data/rules/shl-2.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: shl-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SHL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/shl-2.1_9.yml b/src/licensedcode/data/rules/shl-2.1_9.yml deleted file mode 100644 index ec09e4af36e..00000000000 --- a/src/licensedcode/data/rules/shl-2.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: shl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/simpl-2.0.RULE b/src/licensedcode/data/rules/simpl-2.0.RULE index b3d47ca58a8..7b473d9e5c1 100644 --- a/src/licensedcode/data/rules/simpl-2.0.RULE +++ b/src/licensedcode/data/rules/simpl-2.0.RULE @@ -1 +1,7 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Simple Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0.SPDX.RULE b/src/licensedcode/data/rules/simpl-2.0.SPDX.RULE index 13ad5df03df..b00f860b171 100644 --- a/src/licensedcode/data/rules/simpl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/simpl-2.0.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Simple Public License (SimPL) Preamble diff --git a/src/licensedcode/data/rules/simpl-2.0.SPDX.yml b/src/licensedcode/data/rules/simpl-2.0.SPDX.yml deleted file mode 100644 index f002373ad6d..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: simpl-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/simpl-2.0.yml b/src/licensedcode/data/rules/simpl-2.0.yml deleted file mode 100644 index ca0cb23d6ac..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/simpl-2.0_1.RULE b/src/licensedcode/data/rules/simpl-2.0_1.RULE index 5c935c0c753..38545cf1a35 100644 --- a/src/licensedcode/data/rules/simpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/simpl-2.0.html +--- + http://www.opensource.org/licenses/simpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_1.yml b/src/licensedcode/data/rules/simpl-2.0_1.yml deleted file mode 100644 index b6c9be06439..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/simpl-2.0.html diff --git a/src/licensedcode/data/rules/simpl-2.0_10.RULE b/src/licensedcode/data/rules/simpl-2.0_10.RULE index e09ccc3b3b6..340b3846450 100644 --- a/src/licensedcode/data/rules/simpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SimPL-2.0 +--- + https://licenses.nuget.org/SimPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_10.yml b/src/licensedcode/data/rules/simpl-2.0_10.yml deleted file mode 100644 index 0cb7113e6c3..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SimPL-2.0 diff --git a/src/licensedcode/data/rules/simpl-2.0_11.RULE b/src/licensedcode/data/rules/simpl-2.0_11.RULE index 6afc3c81cbe..9c2beaca945 100644 --- a/src/licensedcode/data/rules/simpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SimPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_11.yml b/src/licensedcode/data/rules/simpl-2.0_11.yml deleted file mode 100644 index ca0cb23d6ac..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/simpl-2.0_12.RULE b/src/licensedcode/data/rules/simpl-2.0_12.RULE index 8df58f74d23..a00c2a207b8 100644 --- a/src/licensedcode/data/rules/simpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SimPL-2.0 +--- + {{SimPL-2.0}} https://spdx.org/licenses/SimPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_12.yml b/src/licensedcode/data/rules/simpl-2.0_12.yml deleted file mode 100644 index 034e9fbaa95..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SimPL-2.0 diff --git a/src/licensedcode/data/rules/simpl-2.0_13.RULE b/src/licensedcode/data/rules/simpl-2.0_13.RULE index 05c1ba77bf4..f4934dc04f0 100644 --- a/src/licensedcode/data/rules/simpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SimPL-2.0 +--- + LICENSE {{SimPL-2.0}} https://spdx.org/licenses/SimPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_13.yml b/src/licensedcode/data/rules/simpl-2.0_13.yml deleted file mode 100644 index 034e9fbaa95..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SimPL-2.0 diff --git a/src/licensedcode/data/rules/simpl-2.0_2.RULE b/src/licensedcode/data/rules/simpl-2.0_2.RULE index f3054ff4820..1d7bd68fb23 100644 --- a/src/licensedcode/data/rules/simpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +ignorable_urls: + - http://opensource.org/licenses/SimPL-2.0 +--- + Preamble This Simple Public License 2.0 (SimPL-2.0 for short) is a plain language implementation of GPL 2.0. The words are different, but the goal is the same - to guarantee for all users the freedom to share and change software. If anyone wonders about the meaning of the SimPL, they should interpret it as consistent with GPL 2.0. Original text available on the web: http://opensource.org/licenses/SimPL-2.0. @@ -30,4 +37,4 @@ The SimPL continues perpetually, except that your license rights end automatical You do not abide by the "give back to the community" terms (your licensees get to keep their rights if they abide); Anyone prevents you from distributing the software under the terms of the SimPL. -If you have questions, please contact regarding the license or use of this for industrial purposes. +If you have questions, please contact regarding the license or use of this for industrial purposes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_2.yml b/src/licensedcode/data/rules/simpl-2.0_2.yml deleted file mode 100644 index 202d42e0b08..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -ignorable_urls: - - http://opensource.org/licenses/SimPL-2.0 diff --git a/src/licensedcode/data/rules/simpl-2.0_3.RULE b/src/licensedcode/data/rules/simpl-2.0_3.RULE index 438382be87d..69fb9647576 100644 --- a/src/licensedcode/data/rules/simpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Simple Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_3.yml b/src/licensedcode/data/rules/simpl-2.0_3.yml deleted file mode 100644 index 5f79d0a8eb9..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/simpl-2.0_4.RULE b/src/licensedcode/data/rules/simpl-2.0_4.RULE index 47038907e20..329368b7ef0 100644 --- a/src/licensedcode/data/rules/simpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Simple Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_4.yml b/src/licensedcode/data/rules/simpl-2.0_4.yml deleted file mode 100644 index 5f79d0a8eb9..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/simpl-2.0_5.RULE b/src/licensedcode/data/rules/simpl-2.0_5.RULE index 7fbf039a3fc..427f3106406 100644 --- a/src/licensedcode/data/rules/simpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SimPL-2.0 Simple Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_5.yml b/src/licensedcode/data/rules/simpl-2.0_5.yml deleted file mode 100644 index 5f79d0a8eb9..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/simpl-2.0_6.RULE b/src/licensedcode/data/rules/simpl-2.0_6.RULE index d41ffd7669a..2c9c5558dff 100644 --- a/src/licensedcode/data/rules/simpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Simple Public License 2.0 SimPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_6.yml b/src/licensedcode/data/rules/simpl-2.0_6.yml deleted file mode 100644 index 5f79d0a8eb9..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/simpl-2.0_7.RULE b/src/licensedcode/data/rules/simpl-2.0_7.RULE index 2cabd9e97b6..7ec1c303915 100644 --- a/src/licensedcode/data/rules/simpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SimPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_7.yml b/src/licensedcode/data/rules/simpl-2.0_7.yml deleted file mode 100644 index c376c0da242..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: simpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/simpl-2.0_8.RULE b/src/licensedcode/data/rules/simpl-2.0_8.RULE index 25c6abf8e8a..84045bb19a5 100644 --- a/src/licensedcode/data/rules/simpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Simple Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_8.yml b/src/licensedcode/data/rules/simpl-2.0_8.yml deleted file mode 100644 index c376c0da242..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: simpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/simpl-2.0_9.RULE b/src/licensedcode/data/rules/simpl-2.0_9.RULE index 1f88aaaf4fe..28d8c535269 100644 --- a/src/licensedcode/data/rules/simpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SimPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_9.yml b/src/licensedcode/data/rules/simpl-2.0_9.yml deleted file mode 100644 index c376c0da242..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: simpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/simpl-2.0_url_1.RULE b/src/licensedcode/data/rules/simpl-2.0_url_1.RULE index 111394be57b..fca79da50c1 100644 --- a/src/licensedcode/data/rules/simpl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/simpl-2.0 +--- + https://spdx.org/licenses/simpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_url_1.yml b/src/licensedcode/data/rules/simpl-2.0_url_1.yml deleted file mode 100644 index 3baeafed176..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/simpl-2.0 diff --git a/src/licensedcode/data/rules/simpl-2.0_url_2.RULE b/src/licensedcode/data/rules/simpl-2.0_url_2.RULE index d33a4e8c47f..b03f47bae59 100644 --- a/src/licensedcode/data/rules/simpl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/simpl-2.0.html +--- + https://spdx.org/licenses/simpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_url_2.yml b/src/licensedcode/data/rules/simpl-2.0_url_2.yml deleted file mode 100644 index f1b38c325b2..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/simpl-2.0.html diff --git a/src/licensedcode/data/rules/simpl-2.0_url_glc_236.RULE b/src/licensedcode/data/rules/simpl-2.0_url_glc_236.RULE index 1eee12dc58b..bb8c2f30d27 100644 --- a/src/licensedcode/data/rules/simpl-2.0_url_glc_236.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_url_glc_236.RULE @@ -1 +1,9 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/simpl-2.0 +--- + http://www.opensource.org/licenses/simpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_url_glc_236.yml b/src/licensedcode/data/rules/simpl-2.0_url_glc_236.yml deleted file mode 100644 index e55720ee647..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_url_glc_236.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/simpl-2.0 diff --git a/src/licensedcode/data/rules/simpl-2.0_url_glc_237.RULE b/src/licensedcode/data/rules/simpl-2.0_url_glc_237.RULE index afad12dec37..d9e7f044fb1 100644 --- a/src/licensedcode/data/rules/simpl-2.0_url_glc_237.RULE +++ b/src/licensedcode/data/rules/simpl-2.0_url_glc_237.RULE @@ -1 +1,9 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/simpl-2.0 +--- + https://www.opensource.org/licenses/simpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/simpl-2.0_url_glc_237.yml b/src/licensedcode/data/rules/simpl-2.0_url_glc_237.yml deleted file mode 100644 index 28df11df76b..00000000000 --- a/src/licensedcode/data/rules/simpl-2.0_url_glc_237.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/simpl-2.0 diff --git a/src/licensedcode/data/rules/sleepycat.RULE b/src/licensedcode/data/rules/sleepycat.RULE index 936ea86af20..54f9b6d86f7 100644 --- a/src/licensedcode/data/rules/sleepycat.RULE +++ b/src/licensedcode/data/rules/sleepycat.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/sleepycat.html +--- + http://opensource.org/licenses/sleepycat.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat.SPDX.RULE b/src/licensedcode/data/rules/sleepycat.SPDX.RULE index c9c3a3ac08e..b25cb200170 100644 --- a/src/licensedcode/data/rules/sleepycat.SPDX.RULE +++ b/src/licensedcode/data/rules/sleepycat.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sleepycat +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -30,4 +37,4 @@ 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. +THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat.SPDX.yml b/src/licensedcode/data/rules/sleepycat.SPDX.yml deleted file mode 100644 index 68e32354714..00000000000 --- a/src/licensedcode/data/rules/sleepycat.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sleepycat -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/sleepycat.yml b/src/licensedcode/data/rules/sleepycat.yml deleted file mode 100644 index 14c8ff77cc8..00000000000 --- a/src/licensedcode/data/rules/sleepycat.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/sleepycat.html diff --git a/src/licensedcode/data/rules/sleepycat_1.RULE b/src/licensedcode/data/rules/sleepycat_1.RULE index 51a24c2e1a3..85986a9ee81 100644 --- a/src/licensedcode/data/rules/sleepycat_1.RULE +++ b/src/licensedcode/data/rules/sleepycat_1.RULE @@ -1 +1,7 @@ -Sleepycat License +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +--- + +Sleepycat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_1.yml b/src/licensedcode/data/rules/sleepycat_1.yml deleted file mode 100644 index 94cadcb9a2c..00000000000 --- a/src/licensedcode/data/rules/sleepycat_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sleepycat_10.RULE b/src/licensedcode/data/rules/sleepycat_10.RULE index dce3545e310..10629be7d55 100644 --- a/src/licensedcode/data/rules/sleepycat_10.RULE +++ b/src/licensedcode/data/rules/sleepycat_10.RULE @@ -1 +1,10 @@ -http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html +--- + +http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_10.yml b/src/licensedcode/data/rules/sleepycat_10.yml deleted file mode 100644 index 26f6a42e052..00000000000 --- a/src/licensedcode/data/rules/sleepycat_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html diff --git a/src/licensedcode/data/rules/sleepycat_11.RULE b/src/licensedcode/data/rules/sleepycat_11.RULE index c255c865759..71caed26d04 100644 --- a/src/licensedcode/data/rules/sleepycat_11.RULE +++ b/src/licensedcode/data/rules/sleepycat_11.RULE @@ -1 +1,10 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - https://docs.oracle.com/cd/E17076_02/html/license/license_db.html +--- + https://docs.oracle.com/cd/E17076_02/html/license/license_db.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_11.yml b/src/licensedcode/data/rules/sleepycat_11.yml deleted file mode 100644 index 291c83dd6d5..00000000000 --- a/src/licensedcode/data/rules/sleepycat_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - https://docs.oracle.com/cd/E17076_02/html/license/license_db.html diff --git a/src/licensedcode/data/rules/sleepycat_12.RULE b/src/licensedcode/data/rules/sleepycat_12.RULE index 63d79114616..0d4ef08b501 100644 --- a/src/licensedcode/data/rules/sleepycat_12.RULE +++ b/src/licensedcode/data/rules/sleepycat_12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: sleepycat +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Berkeley DB Product License The license that applies to this copy of the Berkeley DB software may be found diff --git a/src/licensedcode/data/rules/sleepycat_12.yml b/src/licensedcode/data/rules/sleepycat_12.yml deleted file mode 100644 index 58a5415945a..00000000000 --- a/src/licensedcode/data/rules/sleepycat_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/sleepycat_13.RULE b/src/licensedcode/data/rules/sleepycat_13.RULE index d1f891cf5c6..2b0140c3e96 100644 --- a/src/licensedcode/data/rules/sleepycat_13.RULE +++ b/src/licensedcode/data/rules/sleepycat_13.RULE @@ -1 +1,7 @@ -Berkeley DB Product License +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +--- + +Berkeley DB Product License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_13.yml b/src/licensedcode/data/rules/sleepycat_13.yml deleted file mode 100644 index 94cadcb9a2c..00000000000 --- a/src/licensedcode/data/rules/sleepycat_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sleepycat_14.RULE b/src/licensedcode/data/rules/sleepycat_14.RULE index d1cdad8433a..b601b13f41c 100644 --- a/src/licensedcode/data/rules/sleepycat_14.RULE +++ b/src/licensedcode/data/rules/sleepycat_14.RULE @@ -1,3 +1,13 @@ +--- +license_expression: sleepycat +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_emails: + - berkeleydb-info_us@oracle.com +--- + Berkeley DB Product License The license that applies to this copy of the Berkeley DB software may be found in the "LICENSE" file included in each Berkeley DB distribution. diff --git a/src/licensedcode/data/rules/sleepycat_14.yml b/src/licensedcode/data/rules/sleepycat_14.yml deleted file mode 100644 index 9b251e9bf8e..00000000000 --- a/src/licensedcode/data/rules/sleepycat_14.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: sleepycat -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_emails: - - berkeleydb-info_us@oracle.com diff --git a/src/licensedcode/data/rules/sleepycat_15.RULE b/src/licensedcode/data/rules/sleepycat_15.RULE index 34c469e3b49..99989e38ebe 100644 --- a/src/licensedcode/data/rules/sleepycat_15.RULE +++ b/src/licensedcode/data/rules/sleepycat_15.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sleepycat +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: @@ -27,4 +32,4 @@ * 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. + * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_15.yml b/src/licensedcode/data/rules/sleepycat_15.yml deleted file mode 100644 index 503702b282e..00000000000 --- a/src/licensedcode/data/rules/sleepycat_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sleepycat -is_license_text: yes diff --git a/src/licensedcode/data/rules/sleepycat_16.RULE b/src/licensedcode/data/rules/sleepycat_16.RULE index 1687ceb946f..c9c75087b4e 100644 --- a/src/licensedcode/data/rules/sleepycat_16.RULE +++ b/src/licensedcode/data/rules/sleepycat_16.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +ignorable_urls: + - http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html +--- + Legal Notice -This documentation is distributed under an open source license. You may review the terms of this license at: http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html \ No newline at end of file +This documentation is distributed under an open source license. You may review the terms of this license at: http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_16.yml b/src/licensedcode/data/rules/sleepycat_16.yml deleted file mode 100644 index 26f6a42e052..00000000000 --- a/src/licensedcode/data/rules/sleepycat_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 -ignorable_urls: - - http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html diff --git a/src/licensedcode/data/rules/sleepycat_17.RULE b/src/licensedcode/data/rules/sleepycat_17.RULE index 4076519d586..7f2b4c7347f 100644 --- a/src/licensedcode/data/rules/sleepycat_17.RULE +++ b/src/licensedcode/data/rules/sleepycat_17.RULE @@ -1,3 +1,13 @@ +--- +license_expression: sleepycat +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.oracle.com/technology/software/products/berkeley-db/db/index.html +ignorable_emails: + - berkeleydb-info_us@oracle.com +--- + http://www.oracle.com/technology/software/products/berkeley-db/db/index.html Copyright and license: @@ -5,4 +15,4 @@ Copyright and license: The following is the license that applies to this copy of the Berkeley DB software. For a license to use the Berkeley DB software under conditions other than those described here, or to purchase support for this software, -please contact Oracle at berkeleydb-info_us@oracle.com. +please contact Oracle at berkeleydb-info_us@oracle.com. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_17.yml b/src/licensedcode/data/rules/sleepycat_17.yml deleted file mode 100644 index 3a9a7bc208b..00000000000 --- a/src/licensedcode/data/rules/sleepycat_17.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: sleepycat -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.oracle.com/technology/software/products/berkeley-db/db/index.html -ignorable_emails: - - berkeleydb-info_us@oracle.com diff --git a/src/licensedcode/data/rules/sleepycat_18.RULE b/src/licensedcode/data/rules/sleepycat_18.RULE index c34f609f247..631edb415f1 100644 --- a/src/licensedcode/data/rules/sleepycat_18.RULE +++ b/src/licensedcode/data/rules/sleepycat_18.RULE @@ -1 +1,10 @@ +--- +license_expression: sleepycat +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sleepycat Sleepycat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_18.yml b/src/licensedcode/data/rules/sleepycat_18.yml deleted file mode 100644 index fecba35e9c8..00000000000 --- a/src/licensedcode/data/rules/sleepycat_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sleepycat_19.RULE b/src/licensedcode/data/rules/sleepycat_19.RULE index ea56be4add2..ad8748d7d9a 100644 --- a/src/licensedcode/data/rules/sleepycat_19.RULE +++ b/src/licensedcode/data/rules/sleepycat_19.RULE @@ -1 +1,10 @@ +--- +license_expression: sleepycat +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sleepycat License Sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_19.yml b/src/licensedcode/data/rules/sleepycat_19.yml deleted file mode 100644 index fecba35e9c8..00000000000 --- a/src/licensedcode/data/rules/sleepycat_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sleepycat_2.RULE b/src/licensedcode/data/rules/sleepycat_2.RULE index 0dbfef04ac9..083136bbeaa 100644 --- a/src/licensedcode/data/rules/sleepycat_2.RULE +++ b/src/licensedcode/data/rules/sleepycat_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sleepycat +is_license_text: yes +--- + Redistribution and use in source and binary forms, with or without @@ -31,4 +36,4 @@ 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. +OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_2.yml b/src/licensedcode/data/rules/sleepycat_2.yml deleted file mode 100644 index 503702b282e..00000000000 --- a/src/licensedcode/data/rules/sleepycat_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sleepycat -is_license_text: yes diff --git a/src/licensedcode/data/rules/sleepycat_20.RULE b/src/licensedcode/data/rules/sleepycat_20.RULE index 37c40dcd1e2..003f22042f7 100644 --- a/src/licensedcode/data/rules/sleepycat_20.RULE +++ b/src/licensedcode/data/rules/sleepycat_20.RULE @@ -1 +1,10 @@ +--- +license_expression: sleepycat +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_20.yml b/src/licensedcode/data/rules/sleepycat_20.yml deleted file mode 100644 index 396610e56cb..00000000000 --- a/src/licensedcode/data/rules/sleepycat_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sleepycat_21.RULE b/src/licensedcode/data/rules/sleepycat_21.RULE index 26026808b5b..1391d2e1fea 100644 --- a/src/licensedcode/data/rules/sleepycat_21.RULE +++ b/src/licensedcode/data/rules/sleepycat_21.RULE @@ -1 +1,10 @@ +--- +license_expression: sleepycat +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sleepycat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_21.yml b/src/licensedcode/data/rules/sleepycat_21.yml deleted file mode 100644 index 396610e56cb..00000000000 --- a/src/licensedcode/data/rules/sleepycat_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sleepycat_22.RULE b/src/licensedcode/data/rules/sleepycat_22.RULE index ef267a36892..a01d5254e95 100644 --- a/src/licensedcode/data/rules/sleepycat_22.RULE +++ b/src/licensedcode/data/rules/sleepycat_22.RULE @@ -1 +1,10 @@ +--- +license_expression: sleepycat +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_22.yml b/src/licensedcode/data/rules/sleepycat_22.yml deleted file mode 100644 index 396610e56cb..00000000000 --- a/src/licensedcode/data/rules/sleepycat_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sleepycat_23.RULE b/src/licensedcode/data/rules/sleepycat_23.RULE index a159b0c1584..c072f00f0f4 100644 --- a/src/licensedcode/data/rules/sleepycat_23.RULE +++ b/src/licensedcode/data/rules/sleepycat_23.RULE @@ -1 +1,7 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Sleepycat_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_23.yml b/src/licensedcode/data/rules/sleepycat_23.yml deleted file mode 100644 index 94cadcb9a2c..00000000000 --- a/src/licensedcode/data/rules/sleepycat_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sleepycat_24.RULE b/src/licensedcode/data/rules/sleepycat_24.RULE index 75ba2e332fb..dbb5f6f7130 100644 --- a/src/licensedcode/data/rules/sleepycat_24.RULE +++ b/src/licensedcode/data/rules/sleepycat_24.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Sleepycat +--- + https://licenses.nuget.org/Sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_24.yml b/src/licensedcode/data/rules/sleepycat_24.yml deleted file mode 100644 index 126d1d2079f..00000000000 --- a/src/licensedcode/data/rules/sleepycat_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Sleepycat diff --git a/src/licensedcode/data/rules/sleepycat_25.RULE b/src/licensedcode/data/rules/sleepycat_25.RULE index 2b6d50bbbb9..e0a4412ff05 100644 --- a/src/licensedcode/data/rules/sleepycat_25.RULE +++ b/src/licensedcode/data/rules/sleepycat_25.RULE @@ -1 +1,7 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_25.yml b/src/licensedcode/data/rules/sleepycat_25.yml deleted file mode 100644 index 94cadcb9a2c..00000000000 --- a/src/licensedcode/data/rules/sleepycat_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sleepycat_26.RULE b/src/licensedcode/data/rules/sleepycat_26.RULE index df547eaadf0..d8bf9017f14 100644 --- a/src/licensedcode/data/rules/sleepycat_26.RULE +++ b/src/licensedcode/data/rules/sleepycat_26.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Sleepycat +--- + {{Sleepycat}} https://spdx.org/licenses/Sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_26.yml b/src/licensedcode/data/rules/sleepycat_26.yml deleted file mode 100644 index 5343a7e4560..00000000000 --- a/src/licensedcode/data/rules/sleepycat_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Sleepycat diff --git a/src/licensedcode/data/rules/sleepycat_27.RULE b/src/licensedcode/data/rules/sleepycat_27.RULE index 165544c8125..2ed7bbf599c 100644 --- a/src/licensedcode/data/rules/sleepycat_27.RULE +++ b/src/licensedcode/data/rules/sleepycat_27.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Sleepycat +--- + LICENSE {{Sleepycat}} https://spdx.org/licenses/Sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_27.yml b/src/licensedcode/data/rules/sleepycat_27.yml deleted file mode 100644 index 5343a7e4560..00000000000 --- a/src/licensedcode/data/rules/sleepycat_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Sleepycat diff --git a/src/licensedcode/data/rules/sleepycat_3.RULE b/src/licensedcode/data/rules/sleepycat_3.RULE index 085ca70b199..8f2c353a6a5 100644 --- a/src/licensedcode/data/rules/sleepycat_3.RULE +++ b/src/licensedcode/data/rules/sleepycat_3.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html +--- + http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_3.yml b/src/licensedcode/data/rules/sleepycat_3.yml deleted file mode 100644 index 887cdf247f7..00000000000 --- a/src/licensedcode/data/rules/sleepycat_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.oracle.com/technology/software/products/berkeley-db/htdocs/oslicense.html diff --git a/src/licensedcode/data/rules/sleepycat_4.RULE b/src/licensedcode/data/rules/sleepycat_4.RULE index da8ff093d79..a94ec074cbf 100644 --- a/src/licensedcode/data/rules/sleepycat_4.RULE +++ b/src/licensedcode/data/rules/sleepycat_4.RULE @@ -1 +1,7 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +--- + the Sleepycat license \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_4.yml b/src/licensedcode/data/rules/sleepycat_4.yml deleted file mode 100644 index 94cadcb9a2c..00000000000 --- a/src/licensedcode/data/rules/sleepycat_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sleepycat_5.RULE b/src/licensedcode/data/rules/sleepycat_5.RULE index e68eb1b5db6..90ef34c603f 100644 --- a/src/licensedcode/data/rules/sleepycat_5.RULE +++ b/src/licensedcode/data/rules/sleepycat_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sleepycat +is_license_notice: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/sleepycat_5.yml b/src/licensedcode/data/rules/sleepycat_5.yml deleted file mode 100644 index def91750050..00000000000 --- a/src/licensedcode/data/rules/sleepycat_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sleepycat -is_license_notice: yes diff --git a/src/licensedcode/data/rules/sleepycat_6.RULE b/src/licensedcode/data/rules/sleepycat_6.RULE index c85a62a1942..4bd6a560ce2 100644 --- a/src/licensedcode/data/rules/sleepycat_6.RULE +++ b/src/licensedcode/data/rules/sleepycat_6.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/sleepycat.php +--- + http://www.opensource.org/licenses/sleepycat.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_6.yml b/src/licensedcode/data/rules/sleepycat_6.yml deleted file mode 100644 index 0aa319607ee..00000000000 --- a/src/licensedcode/data/rules/sleepycat_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/sleepycat.php diff --git a/src/licensedcode/data/rules/sleepycat_7.RULE b/src/licensedcode/data/rules/sleepycat_7.RULE index 0220872d646..c5f772131b2 100644 --- a/src/licensedcode/data/rules/sleepycat_7.RULE +++ b/src/licensedcode/data/rules/sleepycat_7.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.oracle.com/technology/software/products/berkeley-db/htdocs/licensing.html +--- + http://www.oracle.com/technology/software/products/berkeley-db/htdocs/licensing.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_7.yml b/src/licensedcode/data/rules/sleepycat_7.yml deleted file mode 100644 index 04adc88b3be..00000000000 --- a/src/licensedcode/data/rules/sleepycat_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.oracle.com/technology/software/products/berkeley-db/htdocs/licensing.html diff --git a/src/licensedcode/data/rules/sleepycat_8.RULE b/src/licensedcode/data/rules/sleepycat_8.RULE index c115e4454e7..f7f679aa121 100644 --- a/src/licensedcode/data/rules/sleepycat_8.RULE +++ b/src/licensedcode/data/rules/sleepycat_8.RULE @@ -1 +1,10 @@ +--- +license_expression: sleepycat +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Sleepycat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_8.yml b/src/licensedcode/data/rules/sleepycat_8.yml deleted file mode 100644 index fecba35e9c8..00000000000 --- a/src/licensedcode/data/rules/sleepycat_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sleepycat_9.RULE b/src/licensedcode/data/rules/sleepycat_9.RULE index 78c8fcb60c7..3c570a56b67 100644 --- a/src/licensedcode/data/rules/sleepycat_9.RULE +++ b/src/licensedcode/data/rules/sleepycat_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sleepycat +is_license_notice: yes +ignorable_urls: + - http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html +--- + legalnotice-title Legal Notice This documentation is distributed under an open source license. diff --git a/src/licensedcode/data/rules/sleepycat_9.yml b/src/licensedcode/data/rules/sleepycat_9.yml deleted file mode 100644 index 15cf61cdc0e..00000000000 --- a/src/licensedcode/data/rules/sleepycat_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sleepycat -is_license_notice: yes -ignorable_urls: - - http://download.oracle.com/docs/cd/E17076_02/html/license/license_db.html diff --git a/src/licensedcode/data/rules/sleepycat_or_commercial-license_1.RULE b/src/licensedcode/data/rules/sleepycat_or_commercial-license_1.RULE index 290d7672a82..f6ecddbe073 100644 --- a/src/licensedcode/data/rules/sleepycat_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/sleepycat_or_commercial-license_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sleepycat OR commercial-license +is_license_reference: yes +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/sleepycat_or_commercial-license_1.yml b/src/licensedcode/data/rules/sleepycat_or_commercial-license_1.yml deleted file mode 100644 index 52698b02d05..00000000000 --- a/src/licensedcode/data/rules/sleepycat_or_commercial-license_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sleepycat OR commercial-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/sleepycat_or_commercial-license_2.RULE b/src/licensedcode/data/rules/sleepycat_or_commercial-license_2.RULE index f72b6f36b0f..344fbdcb5cb 100644 --- a/src/licensedcode/data/rules/sleepycat_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/sleepycat_or_commercial-license_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sleepycat OR commercial-license +is_license_reference: yes +--- + This file contains the usage terms for . The full details of usage are provided on the home page; although this file and the information on the web page should be identical, in case of any dispute the @@ -8,4 +13,4 @@ require the presence of a COPYING file. under a GPL-compatible license and closed-source use under a standard commercial license. The GPL-compatible license (a.k.a. the Sleepycat license) is given below. Further details on this license are available from the - home page. + home page. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_or_commercial-license_2.yml b/src/licensedcode/data/rules/sleepycat_or_commercial-license_2.yml deleted file mode 100644 index 52698b02d05..00000000000 --- a/src/licensedcode/data/rules/sleepycat_or_commercial-license_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sleepycat OR commercial-license -is_license_reference: yes diff --git a/src/licensedcode/data/rules/sleepycat_url_1.RULE b/src/licensedcode/data/rules/sleepycat_url_1.RULE index a4777768343..64bcb64eb80 100644 --- a/src/licensedcode/data/rules/sleepycat_url_1.RULE +++ b/src/licensedcode/data/rules/sleepycat_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sleepycat +--- + https://spdx.org/licenses/sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_url_1.yml b/src/licensedcode/data/rules/sleepycat_url_1.yml deleted file mode 100644 index 5ef2c4ee09f..00000000000 --- a/src/licensedcode/data/rules/sleepycat_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sleepycat diff --git a/src/licensedcode/data/rules/sleepycat_url_2.RULE b/src/licensedcode/data/rules/sleepycat_url_2.RULE index 79450df7e12..b2485731fcd 100644 --- a/src/licensedcode/data/rules/sleepycat_url_2.RULE +++ b/src/licensedcode/data/rules/sleepycat_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sleepycat.html +--- + https://spdx.org/licenses/sleepycat.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_url_2.yml b/src/licensedcode/data/rules/sleepycat_url_2.yml deleted file mode 100644 index 0dbe34c7330..00000000000 --- a/src/licensedcode/data/rules/sleepycat_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sleepycat.html diff --git a/src/licensedcode/data/rules/sleepycat_url_glc_238.RULE b/src/licensedcode/data/rules/sleepycat_url_glc_238.RULE index 6ec67a76037..783f65f0cea 100644 --- a/src/licensedcode/data/rules/sleepycat_url_glc_238.RULE +++ b/src/licensedcode/data/rules/sleepycat_url_glc_238.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/sleepycat +--- + http://www.opensource.org/licenses/sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_url_glc_238.yml b/src/licensedcode/data/rules/sleepycat_url_glc_238.yml deleted file mode 100644 index 9130679c62a..00000000000 --- a/src/licensedcode/data/rules/sleepycat_url_glc_238.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/sleepycat diff --git a/src/licensedcode/data/rules/sleepycat_url_glc_239.RULE b/src/licensedcode/data/rules/sleepycat_url_glc_239.RULE index a6c54e0cb84..18c79ea1a2e 100644 --- a/src/licensedcode/data/rules/sleepycat_url_glc_239.RULE +++ b/src/licensedcode/data/rules/sleepycat_url_glc_239.RULE @@ -1 +1,9 @@ +--- +license_expression: sleepycat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/sleepycat +--- + https://www.opensource.org/licenses/sleepycat \ No newline at end of file diff --git a/src/licensedcode/data/rules/sleepycat_url_glc_239.yml b/src/licensedcode/data/rules/sleepycat_url_glc_239.yml deleted file mode 100644 index 8812e69bed8..00000000000 --- a/src/licensedcode/data/rules/sleepycat_url_glc_239.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sleepycat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/sleepycat diff --git a/src/licensedcode/data/rules/slf4j-2008.RULE b/src/licensedcode/data/rules/slf4j-2008.RULE index d9c8490410f..2852c788906 100644 --- a/src/licensedcode/data/rules/slf4j-2008.RULE +++ b/src/licensedcode/data/rules/slf4j-2008.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.slf4j.org/license.html +--- + http://www.slf4j.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/slf4j-2008.yml b/src/licensedcode/data/rules/slf4j-2008.yml deleted file mode 100644 index 5f08c1bef71..00000000000 --- a/src/licensedcode/data/rules/slf4j-2008.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.slf4j.org/license.html diff --git a/src/licensedcode/data/rules/slf4j-2008_1.RULE b/src/licensedcode/data/rules/slf4j-2008_1.RULE index 461ca79a217..b72f2c303ab 100644 --- a/src/licensedcode/data/rules/slf4j-2008_1.RULE +++ b/src/licensedcode/data/rules/slf4j-2008_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +minimum_coverage: 95 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software diff --git a/src/licensedcode/data/rules/slf4j-2008_1.yml b/src/licensedcode/data/rules/slf4j-2008_1.yml deleted file mode 100644 index db1c1b5375f..00000000000 --- a/src/licensedcode/data/rules/slf4j-2008_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/slf4j-2008_2.RULE b/src/licensedcode/data/rules/slf4j-2008_2.RULE index 35e1cc7d07c..a5fd2bd5aad 100644 --- a/src/licensedcode/data/rules/slf4j-2008_2.RULE +++ b/src/licensedcode/data/rules/slf4j-2008_2.RULE @@ -1 +1,7 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +--- + source code and binaries are distributed under the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/slf4j-2008_2.yml b/src/licensedcode/data/rules/slf4j-2008_2.yml deleted file mode 100644 index 2aaf29d7607..00000000000 --- a/src/licensedcode/data/rules/slf4j-2008_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/smail-gpl.RULE b/src/licensedcode/data/rules/smail-gpl.RULE index cc3b09fc94c..b84ac0d6e8c 100644 --- a/src/licensedcode/data/rules/smail-gpl.RULE +++ b/src/licensedcode/data/rules/smail-gpl.RULE @@ -1 +1,9 @@ -https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL +--- +license_expression: smail-gpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL +--- + +https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL \ No newline at end of file diff --git a/src/licensedcode/data/rules/smail-gpl.yml b/src/licensedcode/data/rules/smail-gpl.yml deleted file mode 100644 index a7f81341798..00000000000 --- a/src/licensedcode/data/rules/smail-gpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: smail-gpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gitweb.gentoo.org/repo/gentoo.git/plain/licenses/SMAIL diff --git a/src/licensedcode/data/rules/smail-gpl_1.RULE b/src/licensedcode/data/rules/smail-gpl_1.RULE index 862fc4c758b..cb525be7f73 100644 --- a/src/licensedcode/data/rules/smail-gpl_1.RULE +++ b/src/licensedcode/data/rules/smail-gpl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: smail-gpl +is_license_reference: yes +relevance: 100 +--- + SMAIL GENERAL PUBLIC LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/smail-gpl_1.yml b/src/licensedcode/data/rules/smail-gpl_1.yml deleted file mode 100644 index 4019af6ab83..00000000000 --- a/src/licensedcode/data/rules/smail-gpl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: smail-gpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/smail-gpl_2.RULE b/src/licensedcode/data/rules/smail-gpl_2.RULE index 6e4cb391fbc..9bcec1b354b 100644 --- a/src/licensedcode/data/rules/smail-gpl_2.RULE +++ b/src/licensedcode/data/rules/smail-gpl_2.RULE @@ -1 +1,7 @@ +--- +license_expression: smail-gpl +is_license_reference: yes +relevance: 100 +--- + the SMAIL GENERAL PUBLIC LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/smail-gpl_2.yml b/src/licensedcode/data/rules/smail-gpl_2.yml deleted file mode 100644 index 4019af6ab83..00000000000 --- a/src/licensedcode/data/rules/smail-gpl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: smail-gpl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/smppl_1.RULE b/src/licensedcode/data/rules/smppl_1.RULE index 4aacf7d54ae..32b7fbd0ac5 100644 --- a/src/licensedcode/data/rules/smppl_1.RULE +++ b/src/licensedcode/data/rules/smppl_1.RULE @@ -1 +1,10 @@ +--- +license_expression: smppl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Secure Messaging Protocol Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_1.yml b/src/licensedcode/data/rules/smppl_1.yml deleted file mode 100644 index 4dfc880c6ff..00000000000 --- a/src/licensedcode/data/rules/smppl_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: smppl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/smppl_10.RULE b/src/licensedcode/data/rules/smppl_10.RULE index 882c98d1779..5540305143b 100644 --- a/src/licensedcode/data/rules/smppl_10.RULE +++ b/src/licensedcode/data/rules/smppl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: smppl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SMPPL +--- + LICENSE {{SMPPL}} https://spdx.org/licenses/SMPPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_10.yml b/src/licensedcode/data/rules/smppl_10.yml deleted file mode 100644 index f453c2f2037..00000000000 --- a/src/licensedcode/data/rules/smppl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: smppl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SMPPL diff --git a/src/licensedcode/data/rules/smppl_11.RULE b/src/licensedcode/data/rules/smppl_11.RULE index f39a501308f..879438342da 100644 --- a/src/licensedcode/data/rules/smppl_11.RULE +++ b/src/licensedcode/data/rules/smppl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: smppl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SMPPL +--- + {{SMPPL}} https://spdx.org/licenses/SMPPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_11.yml b/src/licensedcode/data/rules/smppl_11.yml deleted file mode 100644 index f453c2f2037..00000000000 --- a/src/licensedcode/data/rules/smppl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: smppl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SMPPL diff --git a/src/licensedcode/data/rules/smppl_2.RULE b/src/licensedcode/data/rules/smppl_2.RULE index da3db175cbc..bd5e3c789dc 100644 --- a/src/licensedcode/data/rules/smppl_2.RULE +++ b/src/licensedcode/data/rules/smppl_2.RULE @@ -1 +1,10 @@ +--- +license_expression: smppl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Secure Messaging Protocol Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_2.yml b/src/licensedcode/data/rules/smppl_2.yml deleted file mode 100644 index 4dfc880c6ff..00000000000 --- a/src/licensedcode/data/rules/smppl_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: smppl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/smppl_3.RULE b/src/licensedcode/data/rules/smppl_3.RULE index 0e30111616d..296536921c2 100644 --- a/src/licensedcode/data/rules/smppl_3.RULE +++ b/src/licensedcode/data/rules/smppl_3.RULE @@ -1 +1,10 @@ +--- +license_expression: smppl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SMPPL Secure Messaging Protocol Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_3.yml b/src/licensedcode/data/rules/smppl_3.yml deleted file mode 100644 index 4dfc880c6ff..00000000000 --- a/src/licensedcode/data/rules/smppl_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: smppl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/smppl_4.RULE b/src/licensedcode/data/rules/smppl_4.RULE index 38d1768ecdf..b16901cd30e 100644 --- a/src/licensedcode/data/rules/smppl_4.RULE +++ b/src/licensedcode/data/rules/smppl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: smppl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Secure Messaging Protocol Public License SMPPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_4.yml b/src/licensedcode/data/rules/smppl_4.yml deleted file mode 100644 index 4dfc880c6ff..00000000000 --- a/src/licensedcode/data/rules/smppl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: smppl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/smppl_5.RULE b/src/licensedcode/data/rules/smppl_5.RULE index 6387533e267..c3a40f2f349 100644 --- a/src/licensedcode/data/rules/smppl_5.RULE +++ b/src/licensedcode/data/rules/smppl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: smppl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SMPPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_5.yml b/src/licensedcode/data/rules/smppl_5.yml deleted file mode 100644 index 404251a4fc3..00000000000 --- a/src/licensedcode/data/rules/smppl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: smppl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/smppl_6.RULE b/src/licensedcode/data/rules/smppl_6.RULE index e3b096c8e67..1425363b5f4 100644 --- a/src/licensedcode/data/rules/smppl_6.RULE +++ b/src/licensedcode/data/rules/smppl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: smppl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Secure Messaging Protocol Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_6.yml b/src/licensedcode/data/rules/smppl_6.yml deleted file mode 100644 index 404251a4fc3..00000000000 --- a/src/licensedcode/data/rules/smppl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: smppl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/smppl_7.RULE b/src/licensedcode/data/rules/smppl_7.RULE index 82bcfd8d6d4..c1a1f28fe95 100644 --- a/src/licensedcode/data/rules/smppl_7.RULE +++ b/src/licensedcode/data/rules/smppl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: smppl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SMPPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_7.yml b/src/licensedcode/data/rules/smppl_7.yml deleted file mode 100644 index 404251a4fc3..00000000000 --- a/src/licensedcode/data/rules/smppl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: smppl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/smppl_8.RULE b/src/licensedcode/data/rules/smppl_8.RULE index 9c90cf2e1e3..b372c7f4773 100644 --- a/src/licensedcode/data/rules/smppl_8.RULE +++ b/src/licensedcode/data/rules/smppl_8.RULE @@ -1 +1,9 @@ +--- +license_expression: smppl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SMPPL +--- + https://licenses.nuget.org/SMPPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_8.yml b/src/licensedcode/data/rules/smppl_8.yml deleted file mode 100644 index 4784b63daee..00000000000 --- a/src/licensedcode/data/rules/smppl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: smppl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SMPPL diff --git a/src/licensedcode/data/rules/smppl_9.RULE b/src/licensedcode/data/rules/smppl_9.RULE index 4305284f0f8..5e6d45696ea 100644 --- a/src/licensedcode/data/rules/smppl_9.RULE +++ b/src/licensedcode/data/rules/smppl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: smppl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SMPPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_9.yml b/src/licensedcode/data/rules/smppl_9.yml deleted file mode 100644 index 5aa47f0af74..00000000000 --- a/src/licensedcode/data/rules/smppl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: smppl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/smppl_url_1.RULE b/src/licensedcode/data/rules/smppl_url_1.RULE index d97a49e0719..366f2f43790 100644 --- a/src/licensedcode/data/rules/smppl_url_1.RULE +++ b/src/licensedcode/data/rules/smppl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: smppl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/smppl +--- + https://spdx.org/licenses/smppl \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_url_1.yml b/src/licensedcode/data/rules/smppl_url_1.yml deleted file mode 100644 index 2a9c8dfdbe4..00000000000 --- a/src/licensedcode/data/rules/smppl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: smppl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/smppl diff --git a/src/licensedcode/data/rules/smppl_url_2.RULE b/src/licensedcode/data/rules/smppl_url_2.RULE index b4d315262b3..79b859dfbba 100644 --- a/src/licensedcode/data/rules/smppl_url_2.RULE +++ b/src/licensedcode/data/rules/smppl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: smppl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/smppl.html +--- + https://spdx.org/licenses/smppl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/smppl_url_2.yml b/src/licensedcode/data/rules/smppl_url_2.yml deleted file mode 100644 index 63073ac6939..00000000000 --- a/src/licensedcode/data/rules/smppl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: smppl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/smppl.html diff --git a/src/licensedcode/data/rules/smsc-non-commercial-2012_1.RULE b/src/licensedcode/data/rules/smsc-non-commercial-2012_1.RULE index 5bbeb7bb453..444b4f73125 100644 --- a/src/licensedcode/data/rules/smsc-non-commercial-2012_1.RULE +++ b/src/licensedcode/data/rules/smsc-non-commercial-2012_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: smsc-non-commercial-2012 +is_license_notice: yes +--- + THIS SOFTWARE PROVIDED BY STANDARD MICROSYSTEMS CORPORATION`("SMSC")IS SAMPLE CODE INTENDED FOR EVALUATION PURPOSES ONLY. IT IS NOT INTENDED FOR COMMERCIAL USE. THIS SOFTWARE IS PROVIDED BY SMSC "AS IS" AND ANY EXPRESS OR IMPLIED diff --git a/src/licensedcode/data/rules/smsc-non-commercial-2012_1.yml b/src/licensedcode/data/rules/smsc-non-commercial-2012_1.yml deleted file mode 100644 index 67916e426d3..00000000000 --- a/src/licensedcode/data/rules/smsc-non-commercial-2012_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: smsc-non-commercial-2012 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/snia_1.RULE b/src/licensedcode/data/rules/snia_1.RULE index dfce20ac0c2..c5e76f3c688 100644 --- a/src/licensedcode/data/rules/snia_1.RULE +++ b/src/licensedcode/data/rules/snia_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: snia +is_license_text: yes +minimum_coverage: 80 +--- + STORAGE NETWORKING INDUSTRY ASSOCIATION PUBLIC LICENSE Version 1.1 diff --git a/src/licensedcode/data/rules/snia_1.yml b/src/licensedcode/data/rules/snia_1.yml deleted file mode 100644 index 4f3b816e5bf..00000000000 --- a/src/licensedcode/data/rules/snia_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: snia -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/snia_10.RULE b/src/licensedcode/data/rules/snia_10.RULE index c0954538ac6..0158808b725 100644 --- a/src/licensedcode/data/rules/snia_10.RULE +++ b/src/licensedcode/data/rules/snia_10.RULE @@ -1 +1,7 @@ +--- +license_expression: snia +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SNIA \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_10.yml b/src/licensedcode/data/rules/snia_10.yml deleted file mode 100644 index d92a439bbb8..00000000000 --- a/src/licensedcode/data/rules/snia_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: snia -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/snia_11.RULE b/src/licensedcode/data/rules/snia_11.RULE index 0d474969575..23ab0c2c766 100644 --- a/src/licensedcode/data/rules/snia_11.RULE +++ b/src/licensedcode/data/rules/snia_11.RULE @@ -1 +1,9 @@ +--- +license_expression: snia +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SNIA +--- + {{SNIA}} https://spdx.org/licenses/SNIA \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_11.yml b/src/licensedcode/data/rules/snia_11.yml deleted file mode 100644 index e99b61b5bc4..00000000000 --- a/src/licensedcode/data/rules/snia_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: snia -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SNIA diff --git a/src/licensedcode/data/rules/snia_12.RULE b/src/licensedcode/data/rules/snia_12.RULE index 9e007142713..03ad7ea47f7 100644 --- a/src/licensedcode/data/rules/snia_12.RULE +++ b/src/licensedcode/data/rules/snia_12.RULE @@ -1 +1,9 @@ +--- +license_expression: snia +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SNIA +--- + LICENSE {{SNIA}} https://spdx.org/licenses/SNIA \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_12.yml b/src/licensedcode/data/rules/snia_12.yml deleted file mode 100644 index e99b61b5bc4..00000000000 --- a/src/licensedcode/data/rules/snia_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: snia -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SNIA diff --git a/src/licensedcode/data/rules/snia_2.RULE b/src/licensedcode/data/rules/snia_2.RULE index 0e9493343a5..4452c71a184 100644 --- a/src/licensedcode/data/rules/snia_2.RULE +++ b/src/licensedcode/data/rules/snia_2.RULE @@ -1 +1,10 @@ +--- +license_expression: snia +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SNIA Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_2.yml b/src/licensedcode/data/rules/snia_2.yml deleted file mode 100644 index 67d1c784524..00000000000 --- a/src/licensedcode/data/rules/snia_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: snia -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/snia_3.RULE b/src/licensedcode/data/rules/snia_3.RULE index 1d7aa698842..8ffd16ed1f1 100644 --- a/src/licensedcode/data/rules/snia_3.RULE +++ b/src/licensedcode/data/rules/snia_3.RULE @@ -1 +1,10 @@ +--- +license_expression: snia +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SNIA Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_3.yml b/src/licensedcode/data/rules/snia_3.yml deleted file mode 100644 index 67d1c784524..00000000000 --- a/src/licensedcode/data/rules/snia_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: snia -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/snia_4.RULE b/src/licensedcode/data/rules/snia_4.RULE index db3765595e9..60c644c0f9f 100644 --- a/src/licensedcode/data/rules/snia_4.RULE +++ b/src/licensedcode/data/rules/snia_4.RULE @@ -1 +1,10 @@ +--- +license_expression: snia +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SNIA SNIA Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_4.yml b/src/licensedcode/data/rules/snia_4.yml deleted file mode 100644 index 67d1c784524..00000000000 --- a/src/licensedcode/data/rules/snia_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: snia -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/snia_5.RULE b/src/licensedcode/data/rules/snia_5.RULE index 7ec66f46b06..8900d453ae4 100644 --- a/src/licensedcode/data/rules/snia_5.RULE +++ b/src/licensedcode/data/rules/snia_5.RULE @@ -1 +1,10 @@ +--- +license_expression: snia +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SNIA Public License 1.1 SNIA \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_5.yml b/src/licensedcode/data/rules/snia_5.yml deleted file mode 100644 index 67d1c784524..00000000000 --- a/src/licensedcode/data/rules/snia_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: snia -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/snia_6.RULE b/src/licensedcode/data/rules/snia_6.RULE index 803a997c996..bff4d57f3ae 100644 --- a/src/licensedcode/data/rules/snia_6.RULE +++ b/src/licensedcode/data/rules/snia_6.RULE @@ -1 +1,10 @@ +--- +license_expression: snia +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SNIA \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_6.yml b/src/licensedcode/data/rules/snia_6.yml deleted file mode 100644 index cc103c1a238..00000000000 --- a/src/licensedcode/data/rules/snia_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: snia -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/snia_7.RULE b/src/licensedcode/data/rules/snia_7.RULE index 0d0be4fa0f7..8231c5b3631 100644 --- a/src/licensedcode/data/rules/snia_7.RULE +++ b/src/licensedcode/data/rules/snia_7.RULE @@ -1 +1,10 @@ +--- +license_expression: snia +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SNIA Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_7.yml b/src/licensedcode/data/rules/snia_7.yml deleted file mode 100644 index cc103c1a238..00000000000 --- a/src/licensedcode/data/rules/snia_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: snia -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/snia_8.RULE b/src/licensedcode/data/rules/snia_8.RULE index 4619ccfd53f..8643977ba5d 100644 --- a/src/licensedcode/data/rules/snia_8.RULE +++ b/src/licensedcode/data/rules/snia_8.RULE @@ -1 +1,10 @@ +--- +license_expression: snia +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SNIA \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_8.yml b/src/licensedcode/data/rules/snia_8.yml deleted file mode 100644 index cc103c1a238..00000000000 --- a/src/licensedcode/data/rules/snia_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: snia -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/snia_9.RULE b/src/licensedcode/data/rules/snia_9.RULE index 0e23e01a03c..f9c1f978393 100644 --- a/src/licensedcode/data/rules/snia_9.RULE +++ b/src/licensedcode/data/rules/snia_9.RULE @@ -1 +1,9 @@ +--- +license_expression: snia +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SNIA +--- + https://licenses.nuget.org/SNIA \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_9.yml b/src/licensedcode/data/rules/snia_9.yml deleted file mode 100644 index cf2d304b6f3..00000000000 --- a/src/licensedcode/data/rules/snia_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: snia -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SNIA diff --git a/src/licensedcode/data/rules/snia_url_1.RULE b/src/licensedcode/data/rules/snia_url_1.RULE index d39fa6988cb..ac5f260ebb2 100644 --- a/src/licensedcode/data/rules/snia_url_1.RULE +++ b/src/licensedcode/data/rules/snia_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: snia +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/snia +--- + https://spdx.org/licenses/snia \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_url_1.yml b/src/licensedcode/data/rules/snia_url_1.yml deleted file mode 100644 index 1f64c91d037..00000000000 --- a/src/licensedcode/data/rules/snia_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: snia -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/snia diff --git a/src/licensedcode/data/rules/snia_url_2.RULE b/src/licensedcode/data/rules/snia_url_2.RULE index 60e28bd92c5..3b3b56299e0 100644 --- a/src/licensedcode/data/rules/snia_url_2.RULE +++ b/src/licensedcode/data/rules/snia_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: snia +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/snia.html +--- + https://spdx.org/licenses/snia.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/snia_url_2.yml b/src/licensedcode/data/rules/snia_url_2.yml deleted file mode 100644 index e4a20bd8a1d..00000000000 --- a/src/licensedcode/data/rules/snia_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: snia -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/snia.html diff --git a/src/licensedcode/data/rules/snprintf_1.RULE b/src/licensedcode/data/rules/snprintf_1.RULE index 64e83f2a07e..71924e426c7 100644 --- a/src/licensedcode/data/rules/snprintf_1.RULE +++ b/src/licensedcode/data/rules/snprintf_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: snprintf +is_license_text: yes +relevance: 100 +--- + * This code is based on code written by It may be used for any purpose as long as this * notice remains intact on all source code distributions \ No newline at end of file diff --git a/src/licensedcode/data/rules/snprintf_1.yml b/src/licensedcode/data/rules/snprintf_1.yml deleted file mode 100644 index cf32e76c3a4..00000000000 --- a/src/licensedcode/data/rules/snprintf_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: snprintf -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/softfloat-2.0_1.RULE b/src/licensedcode/data/rules/softfloat-2.0_1.RULE index 2cedeb22e12..3de827ab896 100644 --- a/src/licensedcode/data/rules/softfloat-2.0_1.RULE +++ b/src/licensedcode/data/rules/softfloat-2.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: softfloat-2.0 +is_license_text: yes +ignorable_authors: + - John R. Hauser +ignorable_urls: + - http://http.cs.berkeley.edu/~jhauser/ +--- + Written by John R. Hauser. This work was made possible in part by the International Computer Science Institute, located at Suite 600, 1947 Center Street, Berkeley, California 94704. Funding was partially provided by the @@ -17,4 +26,4 @@ AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE. Derivative works are acceptable, even for commercial purposes, so long as (1) they include prominent notice that the work is derivative, and (2) they include prominent notice akin to these three paragraphs for those parts of -this code that are retained. +this code that are retained. \ No newline at end of file diff --git a/src/licensedcode/data/rules/softfloat-2.0_1.yml b/src/licensedcode/data/rules/softfloat-2.0_1.yml deleted file mode 100644 index 3ee631a56a3..00000000000 --- a/src/licensedcode/data/rules/softfloat-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: softfloat-2.0 -is_license_text: yes -ignorable_authors: - - John R. Hauser -ignorable_urls: - - http://http.cs.berkeley.edu/~jhauser/ diff --git a/src/licensedcode/data/rules/softfloat-2.0_2.RULE b/src/licensedcode/data/rules/softfloat-2.0_2.RULE index 085cc6e06e3..0bc5cbcfbf8 100644 --- a/src/licensedcode/data/rules/softfloat-2.0_2.RULE +++ b/src/licensedcode/data/rules/softfloat-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: softfloat-2.0 +is_license_text: yes +ignorable_authors: + - John R. Hauser +ignorable_urls: + - http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt +--- + Written by John R. Hauser. This work was made possible in part by the International Computer Science Institute, located at Suite 600, 1947 Center Street, Berkeley, California 94704. Funding was partially provided by the @@ -17,4 +26,4 @@ AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE. Derivative works are acceptable, even for commercial purposes, so long as (1) they include prominent notice that the work is derivative, and (2) they include prominent notice akin to these three paragraphs for those parts of -this code that are retained. +this code that are retained. \ No newline at end of file diff --git a/src/licensedcode/data/rules/softfloat-2.0_2.yml b/src/licensedcode/data/rules/softfloat-2.0_2.yml deleted file mode 100644 index 9c99a93c717..00000000000 --- a/src/licensedcode/data/rules/softfloat-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: softfloat-2.0 -is_license_text: yes -ignorable_authors: - - John R. Hauser -ignorable_urls: - - http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt diff --git a/src/licensedcode/data/rules/softfloat_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/softfloat_and_proprietary-license_1.RULE index 6c8474e890b..ad3193edf6e 100644 --- a/src/licensedcode/data/rules/softfloat_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/softfloat_and_proprietary-license_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: softfloat AND proprietary-license +is_license_text: yes +ignorable_authors: + - me, John R. Hauser +--- + Use of any of this software is governed by the terms of the license below: SoftFloat was written by me, John R. Hauser. This work was made possible in @@ -20,4 +27,4 @@ SOFTWARE. Derivative works are acceptable, even for commercial purposes, provided that the minimal documentation requirements stated in the source code are -satisfied. \ No newline at end of file +satisfied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/softfloat_and_proprietary-license_1.yml b/src/licensedcode/data/rules/softfloat_and_proprietary-license_1.yml deleted file mode 100644 index b46683660ec..00000000000 --- a/src/licensedcode/data/rules/softfloat_and_proprietary-license_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: softfloat AND proprietary-license -is_license_text: yes -ignorable_authors: - - me, John R. Hauser diff --git a/src/licensedcode/data/rules/softsurfer2.RULE b/src/licensedcode/data/rules/softsurfer2.RULE index 5215274f54b..284294e4719 100644 --- a/src/licensedcode/data/rules/softsurfer2.RULE +++ b/src/licensedcode/data/rules/softsurfer2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: softsurfer +is_license_text: yes +--- + This code may be freely used and modified for any purpose providing that this copyright notice is included with it. Author makes no warranty for this code, and cannot be held diff --git a/src/licensedcode/data/rules/softsurfer2.yml b/src/licensedcode/data/rules/softsurfer2.yml deleted file mode 100644 index 1ead7b206af..00000000000 --- a/src/licensedcode/data/rules/softsurfer2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: softsurfer -is_license_text: yes diff --git a/src/licensedcode/data/rules/softsurfer_1.RULE b/src/licensedcode/data/rules/softsurfer_1.RULE index f15f92ee272..05d5aa1264b 100644 --- a/src/licensedcode/data/rules/softsurfer_1.RULE +++ b/src/licensedcode/data/rules/softsurfer_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: softsurfer +is_license_text: yes +--- + This code may be freely used, distributed and modified for any purpose providing that this copyright notice is included with it. SoftSurfer makes no warranty for this code, and cannot be held diff --git a/src/licensedcode/data/rules/softsurfer_1.yml b/src/licensedcode/data/rules/softsurfer_1.yml deleted file mode 100644 index 1ead7b206af..00000000000 --- a/src/licensedcode/data/rules/softsurfer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: softsurfer -is_license_text: yes diff --git a/src/licensedcode/data/rules/sparky.RULE b/src/licensedcode/data/rules/sparky.RULE index c9c8d020f14..2373ac0e5d2 100644 --- a/src/licensedcode/data/rules/sparky.RULE +++ b/src/licensedcode/data/rules/sparky.RULE @@ -1 +1,9 @@ -http://www.cgl.ucsf.edu/home/sparky/sparky-license.html +--- +license_expression: sparky +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cgl.ucsf.edu/home/sparky/sparky-license.html +--- + +http://www.cgl.ucsf.edu/home/sparky/sparky-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sparky.yml b/src/licensedcode/data/rules/sparky.yml deleted file mode 100644 index b53954a9cc8..00000000000 --- a/src/licensedcode/data/rules/sparky.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sparky -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cgl.ucsf.edu/home/sparky/sparky-license.html diff --git a/src/licensedcode/data/rules/sparky_1.RULE b/src/licensedcode/data/rules/sparky_1.RULE index 3d8d349e4cd..7ddb6e3116b 100644 --- a/src/licensedcode/data/rules/sparky_1.RULE +++ b/src/licensedcode/data/rules/sparky_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sparky +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cgl.ucsf.edu/home/sparky/ +--- + http://www.cgl.ucsf.edu/home/sparky/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/sparky_1.yml b/src/licensedcode/data/rules/sparky_1.yml deleted file mode 100644 index 9a029fd1f73..00000000000 --- a/src/licensedcode/data/rules/sparky_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sparky -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cgl.ucsf.edu/home/sparky/ diff --git a/src/licensedcode/data/rules/spdx_license_id_0bsd_for_bsd-zero.RULE b/src/licensedcode/data/rules/spdx_license_id_0bsd_for_bsd-zero.RULE index e113d377526..1b2e2a14fe9 100644 --- a/src/licensedcode/data/rules/spdx_license_id_0bsd_for_bsd-zero.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_0bsd_for_bsd-zero.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-zero +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + 0bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_0bsd_for_bsd-zero.yml b/src/licensedcode/data/rules/spdx_license_id_0bsd_for_bsd-zero.yml deleted file mode 100644 index a1b26345fb3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_0bsd_for_bsd-zero.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-zero -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_389-exception_for_389-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_389-exception_for_389-exception.RULE index 860ac6fd727..dfc8effe005 100644 --- a/src/licensedcode/data/rules/spdx_license_id_389-exception_for_389-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_389-exception_for_389-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: 389-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + 389-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_389-exception_for_389-exception.yml b/src/licensedcode/data/rules/spdx_license_id_389-exception_for_389-exception.yml deleted file mode 100644 index 7d7881fecd3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_389-exception_for_389-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: 389-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_adobe-2006_for_adobe-scl.RULE b/src/licensedcode/data/rules/spdx_license_id_adobe-2006_for_adobe-scl.RULE index 8873d640e2f..a8076e9bb32 100644 --- a/src/licensedcode/data/rules/spdx_license_id_adobe-2006_for_adobe-scl.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_adobe-2006_for_adobe-scl.RULE @@ -1 +1,10 @@ +--- +license_expression: adobe-scl +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + adobe-2006 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_adobe-2006_for_adobe-scl.yml b/src/licensedcode/data/rules/spdx_license_id_adobe-2006_for_adobe-scl.yml deleted file mode 100644 index 281c26ca319..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_adobe-2006_for_adobe-scl.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adobe-scl -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-1.1_for_afl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_afl-1.1_for_afl-1.1.RULE index 993a04076f5..8775c74fa54 100644 --- a/src/licensedcode/data/rules/spdx_license_id_afl-1.1_for_afl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_afl-1.1_for_afl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + afl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-1.1_for_afl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_afl-1.1_for_afl-1.1.yml deleted file mode 100644 index 777469b0bbc..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_afl-1.1_for_afl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-1.2_for_afl-1.2.RULE b/src/licensedcode/data/rules/spdx_license_id_afl-1.2_for_afl-1.2.RULE index 12b12509b74..7ee64220f43 100644 --- a/src/licensedcode/data/rules/spdx_license_id_afl-1.2_for_afl-1.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_afl-1.2_for_afl-1.2.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + afl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-1.2_for_afl-1.2.yml b/src/licensedcode/data/rules/spdx_license_id_afl-1.2_for_afl-1.2.yml deleted file mode 100644 index f9c52d63f00..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_afl-1.2_for_afl-1.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-2.0_for_afl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_afl-2.0_for_afl-2.0.RULE index 7e319189117..c9803fc8aa6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_afl-2.0_for_afl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_afl-2.0_for_afl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + afl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-2.0_for_afl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_afl-2.0_for_afl-2.0.yml deleted file mode 100644 index 3d5340fb7d4..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_afl-2.0_for_afl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-2.1_for_afl-2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_afl-2.1_for_afl-2.1.RULE index d7bb46a1e63..0e89598983c 100644 --- a/src/licensedcode/data/rules/spdx_license_id_afl-2.1_for_afl-2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_afl-2.1_for_afl-2.1.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + afl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-2.1_for_afl-2.1.yml b/src/licensedcode/data/rules/spdx_license_id_afl-2.1_for_afl-2.1.yml deleted file mode 100644 index e34933660d7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_afl-2.1_for_afl-2.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-3.0_for_afl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_afl-3.0_for_afl-3.0.RULE index 810189e62da..b7f0a390e7e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_afl-3.0_for_afl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_afl-3.0_for_afl-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: afl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + afl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_afl-3.0_for_afl-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_afl-3.0_for_afl-3.0.yml deleted file mode 100644 index fc2f4127bd1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_afl-3.0_for_afl-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: afl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.RULE index cc0a4185a58..fcee49cb836 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + agpl-1.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.yml deleted file mode 100644 index 2ad277fa6be..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-only_for_agpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-only_for_agpl-1.0.RULE index c9dfbbaa429..8e035738152 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-only_for_agpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-only_for_agpl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + agpl-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-only_for_agpl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-only_for_agpl-1.0.yml deleted file mode 100644 index b55b12883c0..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-only_for_agpl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.RULE index 7c73a930286..62d403b1143 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + agpl-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.yml deleted file mode 100644 index 2ad277fa6be..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.RULE index f57e9de39c0..9cce13f19fc 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + agpl-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.yml deleted file mode 100644 index b43cc49539a..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.RULE index 55750f7a52c..0a67d59a620 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + agpl-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.yml deleted file mode 100644 index e85f74e5940..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.RULE index f740593135b..ac4ba1f9deb 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + agpl-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.yml deleted file mode 100644 index 2ba82f8e2a0..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: agpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_amdplpa_for_amdplpa.RULE b/src/licensedcode/data/rules/spdx_license_id_amdplpa_for_amdplpa.RULE index 55a4aa17869..d4a2e4106ab 100644 --- a/src/licensedcode/data/rules/spdx_license_id_amdplpa_for_amdplpa.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_amdplpa_for_amdplpa.RULE @@ -1 +1,10 @@ +--- +license_expression: amdplpa +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + amdplpa \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_amdplpa_for_amdplpa.yml b/src/licensedcode/data/rules/spdx_license_id_amdplpa_for_amdplpa.yml deleted file mode 100644 index 0fd60558f92..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_amdplpa_for_amdplpa.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: amdplpa -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_antlr-pd_for_antlr-pd.RULE b/src/licensedcode/data/rules/spdx_license_id_antlr-pd_for_antlr-pd.RULE index 2ffd8517161..ab29841b3f5 100644 --- a/src/licensedcode/data/rules/spdx_license_id_antlr-pd_for_antlr-pd.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_antlr-pd_for_antlr-pd.RULE @@ -1 +1,10 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + antlr-pd \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_antlr-pd_for_antlr-pd.yml b/src/licensedcode/data/rules/spdx_license_id_antlr-pd_for_antlr-pd.yml deleted file mode 100644 index bc436cac406..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_antlr-pd_for_antlr-pd.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.RULE index 593ab37c83a..9fe9fc8a4a6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: apache-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 90 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + apache-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.yml deleted file mode 100644 index 8161e61c5d3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apache-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 90 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE index 3a71126ca17..d602a35eea3 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.yml deleted file mode 100644 index 97445300c50..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_apafml_for_apafml.RULE b/src/licensedcode/data/rules/spdx_license_id_apafml_for_apafml.RULE index 2534682c090..008962a8702 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apafml_for_apafml.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apafml_for_apafml.RULE @@ -1 +1,10 @@ +--- +license_expression: apafml +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + apafml \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_apafml_for_apafml.yml b/src/licensedcode/data/rules/spdx_license_id_apafml_for_apafml.yml deleted file mode 100644 index 0feab90dd53..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_apafml_for_apafml.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apafml -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_apl-1.0_for_adapt-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_apl-1.0_for_adapt-1.0.RULE index b14980a432d..3906aebbe7b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apl-1.0_for_adapt-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apl-1.0_for_adapt-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: adapt-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + apl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_apl-1.0_for_adapt-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_apl-1.0_for_adapt-1.0.yml deleted file mode 100644 index ba24ce36b4c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_apl-1.0_for_adapt-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: adapt-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_apsl-1.0_for_apsl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_apsl-1.0_for_apsl-1.0.RULE index 3845a429cc0..599dd97849a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apsl-1.0_for_apsl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apsl-1.0_for_apsl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + apsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_apsl-1.0_for_apsl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_apsl-1.0_for_apsl-1.0.yml deleted file mode 100644 index 3993da28801..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_apsl-1.0_for_apsl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_apsl-1.2_for_apsl-1.2.RULE b/src/licensedcode/data/rules/spdx_license_id_apsl-1.2_for_apsl-1.2.RULE index 035024a1741..77c6dc9b609 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apsl-1.2_for_apsl-1.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apsl-1.2_for_apsl-1.2.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + apsl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_apsl-1.2_for_apsl-1.2.yml b/src/licensedcode/data/rules/spdx_license_id_apsl-1.2_for_apsl-1.2.yml deleted file mode 100644 index bf00b287624..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_apsl-1.2_for_apsl-1.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_apsl-2.0_for_apsl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_apsl-2.0_for_apsl-2.0.RULE index 275de0fe228..f504e5d9db6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apsl-2.0_for_apsl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apsl-2.0_for_apsl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: apsl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + apsl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_apsl-2.0_for_apsl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_apsl-2.0_for_apsl-2.0.yml deleted file mode 100644 index 7152a6c6a13..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_apsl-2.0_for_apsl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: apsl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-cl8_for_artistic-1.0-cl8.RULE b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-cl8_for_artistic-1.0-cl8.RULE index 7f77ca6a3a5..9e0caaae92a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-cl8_for_artistic-1.0-cl8.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-cl8_for_artistic-1.0-cl8.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0-cl8 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + artistic-1.0-cl8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-cl8_for_artistic-1.0-cl8.yml b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-cl8_for_artistic-1.0-cl8.yml deleted file mode 100644 index 8324f5e825b..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-cl8_for_artistic-1.0-cl8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0-cl8 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-perl_for_artistic-perl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-perl_for_artistic-perl-1.0.RULE index 716cd9ff5a3..7c135bb86ec 100644 --- a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-perl_for_artistic-perl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-perl_for_artistic-perl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-perl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + artistic-1.0-perl \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-perl_for_artistic-perl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-perl_for_artistic-perl-1.0.yml deleted file mode 100644 index 25249d0bf00..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0-perl_for_artistic-perl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-perl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0_for_artistic-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0_for_artistic-1.0.RULE index 57c26559d2a..b675ef5223d 100644 --- a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0_for_artistic-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0_for_artistic-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + artistic-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0_for_artistic-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_artistic-1.0_for_artistic-1.0.yml deleted file mode 100644 index 536869276e8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_artistic-1.0_for_artistic-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_artistic-2.0_for_artistic-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_artistic-2.0_for_artistic-2.0.RULE index 300a38992bf..ca18d6eeeda 100644 --- a/src/licensedcode/data/rules/spdx_license_id_artistic-2.0_for_artistic-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_artistic-2.0_for_artistic-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + artistic-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_artistic-2.0_for_artistic-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_artistic-2.0_for_artistic-2.0.yml deleted file mode 100644 index 68cbdcaa6e9..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_artistic-2.0_for_artistic-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-2.0_for_autoconf-exception-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-2.0_for_autoconf-exception-2.0.RULE index 83f1250af7e..61fa2fcb084 100644 --- a/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-2.0_for_autoconf-exception-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-2.0_for_autoconf-exception-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + autoconf-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-2.0_for_autoconf-exception-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-2.0_for_autoconf-exception-2.0.yml deleted file mode 100644 index ce676f09655..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-2.0_for_autoconf-exception-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-3.0_for_autoconf-exception-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-3.0_for_autoconf-exception-3.0.RULE index 5a31fb42124..657fc59bc29 100644 --- a/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-3.0_for_autoconf-exception-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-3.0_for_autoconf-exception-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: autoconf-exception-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + autoconf-exception-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-3.0_for_autoconf-exception-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-3.0_for_autoconf-exception-3.0.yml deleted file mode 100644 index a3820e46a7d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_autoconf-exception-3.0_for_autoconf-exception-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: autoconf-exception-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_beerware_for_beerware.RULE b/src/licensedcode/data/rules/spdx_license_id_beerware_for_beerware.RULE index c3185da365c..ac2cdb125d3 100644 --- a/src/licensedcode/data/rules/spdx_license_id_beerware_for_beerware.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_beerware_for_beerware.RULE @@ -1 +1,10 @@ +--- +license_expression: beerware +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + beerware \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_beerware_for_beerware.yml b/src/licensedcode/data/rules/spdx_license_id_beerware_for_beerware.yml deleted file mode 100644 index 2d5fa7722d7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_beerware_for_beerware.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: beerware -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bison-exception-2.2_for_bison-exception-2.2.RULE b/src/licensedcode/data/rules/spdx_license_id_bison-exception-2.2_for_bison-exception-2.2.RULE index 16f4f037394..918ba983ff4 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bison-exception-2.2_for_bison-exception-2.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bison-exception-2.2_for_bison-exception-2.2.RULE @@ -1 +1,10 @@ +--- +license_expression: bison-exception-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bison-exception-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bison-exception-2.2_for_bison-exception-2.2.yml b/src/licensedcode/data/rules/spdx_license_id_bison-exception-2.2_for_bison-exception-2.2.yml deleted file mode 100644 index 08a32e8960e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bison-exception-2.2_for_bison-exception-2.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bison-exception-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.0_for_bittorrent-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.0_for_bittorrent-1.0.RULE index ea8ce75822e..cd8c2c8bbed 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.0_for_bittorrent-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.0_for_bittorrent-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bittorrent-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.0_for_bittorrent-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.0_for_bittorrent-1.0.yml deleted file mode 100644 index 8b1ca43466d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.0_for_bittorrent-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.1_for_bittorrent-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.1_for_bittorrent-1.1.RULE index d679e818fbb..d3d5bf72660 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.1_for_bittorrent-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.1_for_bittorrent-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: bittorrent-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bittorrent-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.1_for_bittorrent-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.1_for_bittorrent-1.1.yml deleted file mode 100644 index dbaa82dbddc..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bittorrent-1.1_for_bittorrent-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bittorrent-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bootloader-exception_for_bootloader-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_bootloader-exception_for_bootloader-exception.RULE index a10d1a38644..856c419b11a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bootloader-exception_for_bootloader-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bootloader-exception_for_bootloader-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: bootloader-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bootloader-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bootloader-exception_for_bootloader-exception.yml b/src/licensedcode/data/rules/spdx_license_id_bootloader-exception_for_bootloader-exception.yml deleted file mode 100644 index 53c32d5aa87..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bootloader-exception_for_bootloader-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bootloader-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_borceux_for_borceux.RULE b/src/licensedcode/data/rules/spdx_license_id_borceux_for_borceux.RULE index 87265057f61..58637d5b9b8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_borceux_for_borceux.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_borceux_for_borceux.RULE @@ -1 +1,10 @@ +--- +license_expression: borceux +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + borceux \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_borceux_for_borceux.yml b/src/licensedcode/data/rules/spdx_license_id_borceux_for_borceux.yml deleted file mode 100644 index 35f0fa5cc87..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_borceux_for_borceux.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: borceux -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-1-clause_for_bsd-1-clause.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-1-clause_for_bsd-1-clause.RULE index 655d116a378..4df84c3ec9a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-1-clause_for_bsd-1-clause.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-1-clause_for_bsd-1-clause.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-1-clause +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-1-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-1-clause_for_bsd-1-clause.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-1-clause_for_bsd-1-clause.yml deleted file mode 100644 index 26b2ceaa4c7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-1-clause_for_bsd-1-clause.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-1-clause -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.RULE index 71e6243a90c..78ed12c5795 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-2-clause-netbsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.yml deleted file mode 100644 index f2d531b09a7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-patent_for_bsd-plus-patent.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-patent_for_bsd-plus-patent.RULE index c4079599286..753a03643cd 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-patent_for_bsd-plus-patent.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-patent_for_bsd-plus-patent.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-plus-patent +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-2-clause-patent \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-patent_for_bsd-plus-patent.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-patent_for_bsd-plus-patent.yml deleted file mode 100644 index b083ddeec3a..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-patent_for_bsd-plus-patent.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-plus-patent -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE index 79e444c1a23..1fc694e8b3b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-2-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.yml deleted file mode 100644 index ac372e6c6c8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-simplified -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-attribution_for_bsd-ack.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-attribution_for_bsd-ack.RULE index dfc5d3eb35a..f4593847b40 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-attribution_for_bsd-ack.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-attribution_for_bsd-ack.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-ack +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-3-clause-attribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-attribution_for_bsd-ack.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-attribution_for_bsd-ack.yml deleted file mode 100644 index f28baed08a5..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-attribution_for_bsd-ack.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-ack -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-clear_for_clear-bsd.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-clear_for_clear-bsd.RULE index 6ae55cb83a2..8e97e465136 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-clear_for_clear-bsd.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-clear_for_clear-bsd.RULE @@ -1 +1,10 @@ +--- +license_expression: clear-bsd +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-3-clause-clear \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-clear_for_clear-bsd.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-clear_for_clear-bsd.yml deleted file mode 100644 index 747c8003c8d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-clear_for_clear-bsd.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clear-bsd -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-lbnl_for_lbnl-bsd.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-lbnl_for_lbnl-bsd.RULE index 5ea3025f125..1d025cfe872 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-lbnl_for_lbnl-bsd.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-lbnl_for_lbnl-bsd.RULE @@ -1 +1,10 @@ +--- +license_expression: lbnl-bsd +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-3-clause-lbnl \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-lbnl_for_lbnl-bsd.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-lbnl_for_lbnl-bsd.yml deleted file mode 100644 index 4ec9529d601..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-lbnl_for_lbnl-bsd.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lbnl-bsd -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license-2014_for_oracle-bsd-no-nuclear.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license-2014_for_oracle-bsd-no-nuclear.RULE index 6885679d4d9..9861a27e48b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license-2014_for_oracle-bsd-no-nuclear.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license-2014_for_oracle-bsd-no-nuclear.RULE @@ -1 +1,10 @@ +--- +license_expression: oracle-bsd-no-nuclear +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-3-clause-no-nuclear-license-2014 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license-2014_for_oracle-bsd-no-nuclear.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license-2014_for_oracle-bsd-no-nuclear.yml deleted file mode 100644 index c271ba6ffbf..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license-2014_for_oracle-bsd-no-nuclear.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oracle-bsd-no-nuclear -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license_for_sun-bsd-no-nuclear.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license_for_sun-bsd-no-nuclear.RULE index a400b04c316..5034074ec76 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license_for_sun-bsd-no-nuclear.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license_for_sun-bsd-no-nuclear.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-3-clause-no-nuclear-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license_for_sun-bsd-no-nuclear.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license_for_sun-bsd-no-nuclear.yml deleted file mode 100644 index 84c44fbafb0..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-license_for_sun-bsd-no-nuclear.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-warranty_for_and_others_1.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-warranty_for_and_others_1.RULE index c0da3e3465d..861cc33fc8a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-warranty_for_and_others_1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-warranty_for_and_others_1.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-3-clause-no-nuclear-warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-warranty_for_and_others_1.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-warranty_for_and_others_1.yml deleted file mode 100644 index 7556228fc85..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-3-clause-no-nuclear-warranty_for_and_others_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE index a355ff1ed33..92c80c2a8f9 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-original +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-4-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.yml deleted file mode 100644 index 19a90c004fa..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-original -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-protection_for_bsd-protection.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-protection_for_bsd-protection.RULE index db9ffb4d6cf..c69dcb2603e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-protection_for_bsd-protection.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-protection_for_bsd-protection.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-protection +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-protection \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-protection_for_bsd-protection.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-protection_for_bsd-protection.yml deleted file mode 100644 index 5d8acabf8f9..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-protection_for_bsd-protection.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-protection -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-source-code_for_bsd-source-code.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-source-code_for_bsd-source-code.RULE index ea0e7b172df..530b900b05c 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-source-code_for_bsd-source-code.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-source-code_for_bsd-source-code.RULE @@ -1 +1,10 @@ +--- +license_expression: bsd-source-code +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + bsd-source-code \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-source-code_for_bsd-source-code.yml b/src/licensedcode/data/rules/spdx_license_id_bsd-source-code_for_bsd-source-code.yml deleted file mode 100644 index 183b0af1ae4..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-source-code_for_bsd-source-code.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: bsd-source-code -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_catosl-1.1_for_ca-tosl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_catosl-1.1_for_ca-tosl-1.1.RULE index 216ea56f072..ec352280e53 100644 --- a/src/licensedcode/data/rules/spdx_license_id_catosl-1.1_for_ca-tosl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_catosl-1.1_for_ca-tosl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: ca-tosl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + catosl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_catosl-1.1_for_ca-tosl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_catosl-1.1_for_ca-tosl-1.1.yml deleted file mode 100644 index 7df120aa057..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_catosl-1.1_for_ca-tosl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ca-tosl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-1.0_for_cc-by-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-1.0_for_cc-by-1.0.RULE index 6cbfd898f93..e7389fd84f2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-1.0_for_cc-by-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-1.0_for_cc-by-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-1.0_for_cc-by-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-1.0_for_cc-by-1.0.yml deleted file mode 100644 index 2beff699eb6..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-1.0_for_cc-by-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-2.0_for_cc-by-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-2.0_for_cc-by-2.0.RULE index 3955e6c7d82..5a3575a14ef 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-2.0_for_cc-by-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-2.0_for_cc-by-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-2.0_for_cc-by-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-2.0_for_cc-by-2.0.yml deleted file mode 100644 index 1137b2a8ecb..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-2.0_for_cc-by-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-2.5_for_cc-by-2.5.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-2.5_for_cc-by-2.5.RULE index 7964979e09c..2239d42ec7f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-2.5_for_cc-by-2.5.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-2.5_for_cc-by-2.5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-2.5_for_cc-by-2.5.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-2.5_for_cc-by-2.5.yml deleted file mode 100644 index 8a5c778e5be..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-2.5_for_cc-by-2.5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.RULE index 48f61d6be5a..ec9b7838111 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.yml deleted file mode 100644 index 081a8dbf5d6..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE index 5b2e1fd6066..7923bc165d4 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.yml deleted file mode 100644 index b0fc27b01b3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-1.0_for_cc-by-nc-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-1.0_for_cc-by-nc-1.0.RULE index aa4e1f7f216..8a345c9a8ee 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-1.0_for_cc-by-nc-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-1.0_for_cc-by-nc-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-1.0_for_cc-by-nc-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-1.0_for_cc-by-nc-1.0.yml deleted file mode 100644 index db389304ed0..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-1.0_for_cc-by-nc-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.0_for_cc-by-nc-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.0_for_cc-by-nc-2.0.RULE index 62d47ede7ce..49e710ac6da 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.0_for_cc-by-nc-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.0_for_cc-by-nc-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.0_for_cc-by-nc-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.0_for_cc-by-nc-2.0.yml deleted file mode 100644 index ba8b573c319..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.0_for_cc-by-nc-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.5_for_cc-by-nc-2.5.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.5_for_cc-by-nc-2.5.RULE index 7c6402e97a2..bc78c7878a7 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.5_for_cc-by-nc-2.5.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.5_for_cc-by-nc-2.5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.5_for_cc-by-nc-2.5.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.5_for_cc-by-nc-2.5.yml deleted file mode 100644 index 29469a45735..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-2.5_for_cc-by-nc-2.5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-3.0_for_cc-by-nc-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-3.0_for_cc-by-nc-3.0.RULE index 475a0466dc9..4268f024335 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-3.0_for_cc-by-nc-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-3.0_for_cc-by-nc-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-3.0_for_cc-by-nc-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-3.0_for_cc-by-nc-3.0.yml deleted file mode 100644 index 221b12877c1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-3.0_for_cc-by-nc-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-4.0_for_cc-by-nc-4.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-4.0_for_cc-by-nc-4.0.RULE index a5255970398..db85754eb67 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-4.0_for_cc-by-nc-4.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-4.0_for_cc-by-nc-4.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-4.0_for_cc-by-nc-4.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-4.0_for_cc-by-nc-4.0.yml deleted file mode 100644 index 6a9c052610f..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-4.0_for_cc-by-nc-4.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.RULE index 84795849f5e..7da0e649f65 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-nd-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.yml deleted file mode 100644 index 70135ae41ac..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.0_for_cc-by-nc-nd-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.0_for_cc-by-nc-nd-2.0.RULE index dabc9b262c2..a825f0a5c03 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.0_for_cc-by-nc-nd-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.0_for_cc-by-nc-nd-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-nd-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.0_for_cc-by-nc-nd-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.0_for_cc-by-nc-nd-2.0.yml deleted file mode 100644 index 42402f1d361..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.0_for_cc-by-nc-nd-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.5_for_cc-by-nc-nd-2.5.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.5_for_cc-by-nc-nd-2.5.RULE index d8d28469832..84b6809b636 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.5_for_cc-by-nc-nd-2.5.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.5_for_cc-by-nc-nd-2.5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-nd-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.5_for_cc-by-nc-nd-2.5.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.5_for_cc-by-nc-nd-2.5.yml deleted file mode 100644 index 299e2d12a0a..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-2.5_for_cc-by-nc-nd-2.5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-3.0_for_cc-by-nc-nd-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-3.0_for_cc-by-nc-nd-3.0.RULE index 3f778a20d74..d71cb43ee95 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-3.0_for_cc-by-nc-nd-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-3.0_for_cc-by-nc-nd-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-nd-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-3.0_for_cc-by-nc-nd-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-3.0_for_cc-by-nc-nd-3.0.yml deleted file mode 100644 index 1b505499213..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-3.0_for_cc-by-nc-nd-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.RULE index 8cca4e10b57..7294b403604 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-nd-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.yml deleted file mode 100644 index f79b271d00d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-1.0_for_cc-by-nc-sa-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-1.0_for_cc-by-nc-sa-1.0.RULE index c806d41786f..b514270d19f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-1.0_for_cc-by-nc-sa-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-1.0_for_cc-by-nc-sa-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-sa-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-1.0_for_cc-by-nc-sa-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-1.0_for_cc-by-nc-sa-1.0.yml deleted file mode 100644 index dc9e6321e30..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-1.0_for_cc-by-nc-sa-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.0_for_cc-by-nc-sa-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.0_for_cc-by-nc-sa-2.0.RULE index 2c870f69372..b3e26d3e798 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.0_for_cc-by-nc-sa-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.0_for_cc-by-nc-sa-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-sa-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.0_for_cc-by-nc-sa-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.0_for_cc-by-nc-sa-2.0.yml deleted file mode 100644 index 501a227dacf..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.0_for_cc-by-nc-sa-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.5_for_cc-by-nc-sa-2.5.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.5_for_cc-by-nc-sa-2.5.RULE index a9cda48593b..9cd8765e084 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.5_for_cc-by-nc-sa-2.5.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.5_for_cc-by-nc-sa-2.5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-sa-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.5_for_cc-by-nc-sa-2.5.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.5_for_cc-by-nc-sa-2.5.yml deleted file mode 100644 index bd2fd304cfa..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-2.5_for_cc-by-nc-sa-2.5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-3.0_for_cc-by-nc-sa-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-3.0_for_cc-by-nc-sa-3.0.RULE index feaafac1c66..08aa05e4c53 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-3.0_for_cc-by-nc-sa-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-3.0_for_cc-by-nc-sa-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-sa-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-3.0_for_cc-by-nc-sa-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-3.0_for_cc-by-nc-sa-3.0.yml deleted file mode 100644 index ed3c790a0ca..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-3.0_for_cc-by-nc-sa-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-4.0_for_cc-by-nc-sa-4.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-4.0_for_cc-by-nc-sa-4.0.RULE index cc7ae0758cc..d28bcaac4f5 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-4.0_for_cc-by-nc-sa-4.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-4.0_for_cc-by-nc-sa-4.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nc-sa-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nc-sa-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-4.0_for_cc-by-nc-sa-4.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-4.0_for_cc-by-nc-sa-4.0.yml deleted file mode 100644 index 8525aa05624..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-sa-4.0_for_cc-by-nc-sa-4.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nc-sa-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-1.0_for_cc-by-nd-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-1.0_for_cc-by-nd-1.0.RULE index 67ea1baacff..316b5ae6afb 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-1.0_for_cc-by-nd-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-1.0_for_cc-by-nd-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nd-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-1.0_for_cc-by-nd-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-1.0_for_cc-by-nd-1.0.yml deleted file mode 100644 index 0598466fca3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-1.0_for_cc-by-nd-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.0_for_cc-by-nd-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.0_for_cc-by-nd-2.0.RULE index 47d5431eac9..e2bad515b72 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.0_for_cc-by-nd-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.0_for_cc-by-nd-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nd-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.0_for_cc-by-nd-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.0_for_cc-by-nd-2.0.yml deleted file mode 100644 index d4d464e39a2..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.0_for_cc-by-nd-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.5_for_cc-by-nd-2.5.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.5_for_cc-by-nd-2.5.RULE index 3150d259245..0a0fa7ba475 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.5_for_cc-by-nd-2.5.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.5_for_cc-by-nd-2.5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nd-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.5_for_cc-by-nd-2.5.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.5_for_cc-by-nd-2.5.yml deleted file mode 100644 index 2106b4a6579..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-2.5_for_cc-by-nd-2.5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-3.0_for_cc-by-nd-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-3.0_for_cc-by-nd-3.0.RULE index b40e406d13e..f6f0814a0e8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-3.0_for_cc-by-nd-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-3.0_for_cc-by-nd-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nd-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-3.0_for_cc-by-nd-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-3.0_for_cc-by-nd-3.0.yml deleted file mode 100644 index b92136d33b5..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-3.0_for_cc-by-nd-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-4.0_for_cc-by-nd-4.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-4.0_for_cc-by-nd-4.0.RULE index 22a655e6d3e..361879f8585 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-4.0_for_cc-by-nd-4.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-4.0_for_cc-by-nd-4.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-nd-4.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-nd-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-4.0_for_cc-by-nd-4.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-4.0_for_cc-by-nd-4.0.yml deleted file mode 100644 index 929703a1b30..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nd-4.0_for_cc-by-nd-4.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-nd-4.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-1.0_for_cc-by-sa-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-1.0_for_cc-by-sa-1.0.RULE index 0facbf75ab4..f7030ea7571 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-1.0_for_cc-by-sa-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-1.0_for_cc-by-sa-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-sa-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-1.0_for_cc-by-sa-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-1.0_for_cc-by-sa-1.0.yml deleted file mode 100644 index b57ab1b21e5..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-1.0_for_cc-by-sa-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.0_for_cc-by-sa-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.0_for_cc-by-sa-2.0.RULE index 1d38048665e..8d8076324d6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.0_for_cc-by-sa-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.0_for_cc-by-sa-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-sa-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.0_for_cc-by-sa-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.0_for_cc-by-sa-2.0.yml deleted file mode 100644 index 98445b983a4..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.0_for_cc-by-sa-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.5_for_cc-by-sa-2.5.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.5_for_cc-by-sa-2.5.RULE index fd49f442b87..9b9cc298bc4 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.5_for_cc-by-sa-2.5.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.5_for_cc-by-sa-2.5.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-sa-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.5_for_cc-by-sa-2.5.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.5_for_cc-by-sa-2.5.yml deleted file mode 100644 index 801db25784c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-2.5_for_cc-by-sa-2.5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.RULE index 6707d4c05dc..ea4a0f7222b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc-by-sa-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.yml deleted file mode 100644 index f57f0733c44..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc-by-sa-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.RULE index c9e1c81cc6c..833b26952f5 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 95 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cc0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.yml deleted file mode 100644 index 1067c48ff6f..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cc0-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 95 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE index 76901c85372..74df351182d 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 95 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cddl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.yml deleted file mode 100644 index f0648006077..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 95 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cddl-1.1_for_cddl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_cddl-1.1_for_cddl-1.1.RULE index b49699ac204..b296b7c8b78 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cddl-1.1_for_cddl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cddl-1.1_for_cddl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: cddl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 95 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cddl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cddl-1.1_for_cddl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_cddl-1.1_for_cddl-1.1.yml deleted file mode 100644 index 0bf185bebd1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cddl-1.1_for_cddl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cddl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 95 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cdla-permissive-1.0_for_cdla-permissive-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cdla-permissive-1.0_for_cdla-permissive-1.0.RULE index ae1ff978faa..19aff971aa9 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cdla-permissive-1.0_for_cdla-permissive-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cdla-permissive-1.0_for_cdla-permissive-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-permissive-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cdla-permissive-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cdla-permissive-1.0_for_cdla-permissive-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cdla-permissive-1.0_for_cdla-permissive-1.0.yml deleted file mode 100644 index cf3c1a07e98..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cdla-permissive-1.0_for_cdla-permissive-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-permissive-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cdla-sharing-1.0_for_cdla-sharing-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cdla-sharing-1.0_for_cdla-sharing-1.0.RULE index 41b6088d6d9..370c999f8a7 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cdla-sharing-1.0_for_cdla-sharing-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cdla-sharing-1.0_for_cdla-sharing-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cdla-sharing-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cdla-sharing-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cdla-sharing-1.0_for_cdla-sharing-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cdla-sharing-1.0_for_cdla-sharing-1.0.yml deleted file mode 100644 index e32e170211c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cdla-sharing-1.0_for_cdla-sharing-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cdla-sharing-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-1.0_for_cecill-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cecill-1.0_for_cecill-1.0.RULE index a419de021d7..53ab33da01f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-1.0_for_cecill-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cecill-1.0_for_cecill-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cecill-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-1.0_for_cecill-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cecill-1.0_for_cecill-1.0.yml deleted file mode 100644 index dccdee528b3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-1.0_for_cecill-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-1.1_for_cecill-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_cecill-1.1_for_cecill-1.1.RULE index ceafbecf47f..2abb21a594a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-1.1_for_cecill-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cecill-1.1_for_cecill-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cecill-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-1.1_for_cecill-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_cecill-1.1_for_cecill-1.1.yml deleted file mode 100644 index ea2f1e5fd15..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-1.1_for_cecill-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-2.0_for_cecill-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cecill-2.0_for_cecill-2.0.RULE index 75a2d9710a7..7f8e678c752 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-2.0_for_cecill-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cecill-2.0_for_cecill-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 95 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cecill-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-2.0_for_cecill-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_cecill-2.0_for_cecill-2.0.yml deleted file mode 100644 index 356b5706898..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-2.0_for_cecill-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 95 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-2.1_for_cecill-2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_cecill-2.1_for_cecill-2.1.RULE index c3ce713ef3b..6e4938397cc 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-2.1_for_cecill-2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cecill-2.1_for_cecill-2.1.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 95 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cecill-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-2.1_for_cecill-2.1.yml b/src/licensedcode/data/rules/spdx_license_id_cecill-2.1_for_cecill-2.1.yml deleted file mode 100644 index e5d1287339d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-2.1_for_cecill-2.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 95 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-b_for_cecill-b.RULE b/src/licensedcode/data/rules/spdx_license_id_cecill-b_for_cecill-b.RULE index de11b62bddf..677ae6f1e71 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-b_for_cecill-b.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cecill-b_for_cecill-b.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-b +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cecill-b \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-b_for_cecill-b.yml b/src/licensedcode/data/rules/spdx_license_id_cecill-b_for_cecill-b.yml deleted file mode 100644 index a4dfa4c60c4..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-b_for_cecill-b.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-b -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-c_for_cecill-c.RULE b/src/licensedcode/data/rules/spdx_license_id_cecill-c_for_cecill-c.RULE index 78e62d23374..afd32ac5425 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-c_for_cecill-c.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cecill-c_for_cecill-c.RULE @@ -1 +1,10 @@ +--- +license_expression: cecill-c +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cecill-c \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cecill-c_for_cecill-c.yml b/src/licensedcode/data/rules/spdx_license_id_cecill-c_for_cecill-c.yml deleted file mode 100644 index 8a82ad35cbb..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cecill-c_for_cecill-c.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cecill-c -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_clartistic_for_artistic-clarified.RULE b/src/licensedcode/data/rules/spdx_license_id_clartistic_for_artistic-clarified.RULE index fc7f899794c..5865a5f86dc 100644 --- a/src/licensedcode/data/rules/spdx_license_id_clartistic_for_artistic-clarified.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_clartistic_for_artistic-clarified.RULE @@ -1 +1,10 @@ +--- +license_expression: artistic-clarified +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + clartistic \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_clartistic_for_artistic-clarified.yml b/src/licensedcode/data/rules/spdx_license_id_clartistic_for_artistic-clarified.yml deleted file mode 100644 index 61aeef04131..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_clartistic_for_artistic-clarified.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: artistic-clarified -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_clisp-exception-2.0_for_clisp-exception-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_clisp-exception-2.0_for_clisp-exception-2.0.RULE index d5c30138cd4..cc04600bfda 100644 --- a/src/licensedcode/data/rules/spdx_license_id_clisp-exception-2.0_for_clisp-exception-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_clisp-exception-2.0_for_clisp-exception-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: clisp-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + clisp-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_clisp-exception-2.0_for_clisp-exception-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_clisp-exception-2.0_for_clisp-exception-2.0.yml deleted file mode 100644 index 90949f851a3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_clisp-exception-2.0_for_clisp-exception-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: clisp-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cnri-jython_for_cnri-jython.RULE b/src/licensedcode/data/rules/spdx_license_id_cnri-jython_for_cnri-jython.RULE index 081e16b3b2f..c2e51c82702 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cnri-jython_for_cnri-jython.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cnri-jython_for_cnri-jython.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-jython +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cnri-jython \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cnri-jython_for_cnri-jython.yml b/src/licensedcode/data/rules/spdx_license_id_cnri-jython_for_cnri-jython.yml deleted file mode 100644 index 0029418d703..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cnri-jython_for_cnri-jython.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-jython -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cnri-python-gpl-compatible_for_cnri-python-1.6.1.RULE b/src/licensedcode/data/rules/spdx_license_id_cnri-python-gpl-compatible_for_cnri-python-1.6.1.RULE index 3d70f1b68bd..9815e3437b0 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cnri-python-gpl-compatible_for_cnri-python-1.6.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cnri-python-gpl-compatible_for_cnri-python-1.6.1.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cnri-python-gpl-compatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cnri-python-gpl-compatible_for_cnri-python-1.6.1.yml b/src/licensedcode/data/rules/spdx_license_id_cnri-python-gpl-compatible_for_cnri-python-1.6.1.yml deleted file mode 100644 index dd816b7d4b3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cnri-python-gpl-compatible_for_cnri-python-1.6.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cnri-python_for_cnri-python-1.6.RULE b/src/licensedcode/data/rules/spdx_license_id_cnri-python_for_cnri-python-1.6.RULE index 3ffa1045533..020d3dcb98c 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cnri-python_for_cnri-python-1.6.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cnri-python_for_cnri-python-1.6.RULE @@ -1 +1,10 @@ +--- +license_expression: cnri-python-1.6 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cnri-python \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cnri-python_for_cnri-python-1.6.yml b/src/licensedcode/data/rules/spdx_license_id_cnri-python_for_cnri-python-1.6.yml deleted file mode 100644 index 57cf3e4dbb7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cnri-python_for_cnri-python-1.6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cnri-python-1.6 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_condor-1.1_for_condor-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_condor-1.1_for_condor-1.1.RULE index 650cd74ea1e..848f04543e2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_condor-1.1_for_condor-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_condor-1.1_for_condor-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: condor-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + condor-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_condor-1.1_for_condor-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_condor-1.1_for_condor-1.1.yml deleted file mode 100644 index 2ec13d1b751..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_condor-1.1_for_condor-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: condor-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cpal-1.0_for_cpal-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cpal-1.0_for_cpal-1.0.RULE index 678e7f2c745..9681487c9a3 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cpal-1.0_for_cpal-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cpal-1.0_for_cpal-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cpal-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cpal-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cpal-1.0_for_cpal-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cpal-1.0_for_cpal-1.0.yml deleted file mode 100644 index ca4469c35cb..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cpal-1.0_for_cpal-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpal-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cpl-1.0_for_cpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cpl-1.0_for_cpl-1.0.RULE index 6d8daf8c2ea..d40b154ca89 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cpl-1.0_for_cpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cpl-1.0_for_cpl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cpl-1.0_for_cpl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cpl-1.0_for_cpl-1.0.yml deleted file mode 100644 index bc745e8a037..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cpl-1.0_for_cpl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_cua-opl-1.0_for_cua-opl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cua-opl-1.0_for_cua-opl-1.0.RULE index 1110b99b75b..10afdaed971 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cua-opl-1.0_for_cua-opl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cua-opl-1.0_for_cua-opl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: cua-opl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + cua-opl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cua-opl-1.0_for_cua-opl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_cua-opl-1.0_for_cua-opl-1.0.yml deleted file mode 100644 index 647206df29f..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_cua-opl-1.0_for_cua-opl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cua-opl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_digirule-foss-exception_for_digirule-foss-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_digirule-foss-exception_for_digirule-foss-exception.RULE index 429735ff903..0bf45d9cf31 100644 --- a/src/licensedcode/data/rules/spdx_license_id_digirule-foss-exception_for_digirule-foss-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_digirule-foss-exception_for_digirule-foss-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: digirule-foss-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + digirule-foss-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_digirule-foss-exception_for_digirule-foss-exception.yml b/src/licensedcode/data/rules/spdx_license_id_digirule-foss-exception_for_digirule-foss-exception.yml deleted file mode 100644 index 83cd8e3bcd8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_digirule-foss-exception_for_digirule-foss-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: digirule-foss-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ecl-1.0_for_ecl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_ecl-1.0_for_ecl-1.0.RULE index 422ac3874e3..2cc7162a638 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ecl-1.0_for_ecl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ecl-1.0_for_ecl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ecl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ecl-1.0_for_ecl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_ecl-1.0_for_ecl-1.0.yml deleted file mode 100644 index 52f40d3595b..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ecl-1.0_for_ecl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ecl-2.0_for_ecl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_ecl-2.0_for_ecl-2.0.RULE index c32ffafb392..e7b9bfcc170 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ecl-2.0_for_ecl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ecl-2.0_for_ecl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: ecl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ecl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ecl-2.0_for_ecl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_ecl-2.0_for_ecl-2.0.yml deleted file mode 100644 index 05223f268f1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ecl-2.0_for_ecl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ecos-exception-2.0_for_ecos-exception-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_ecos-exception-2.0_for_ecos-exception-2.0.RULE index 1d2083dd061..627ee151f9b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ecos-exception-2.0_for_ecos-exception-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ecos-exception-2.0_for_ecos-exception-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: ecos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ecos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ecos-exception-2.0_for_ecos-exception-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_ecos-exception-2.0_for_ecos-exception-2.0.yml deleted file mode 100644 index b1d35d1eae7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ecos-exception-2.0_for_ecos-exception-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_efl-1.0_for_efl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_efl-1.0_for_efl-1.0.RULE index d7239753083..1643b72705b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_efl-1.0_for_efl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_efl-1.0_for_efl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: efl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + efl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_efl-1.0_for_efl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_efl-1.0_for_efl-1.0.yml deleted file mode 100644 index 398a935009a..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_efl-1.0_for_efl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: efl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.RULE index 734e4b31b70..e139d853006 100644 --- a/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: epl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + epl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.yml deleted file mode 100644 index fe37cf39342..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: epl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_erlpl-1.1_for_erlangpl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_erlpl-1.1_for_erlangpl-1.1.RULE index aee3bc52831..4a51a18c134 100644 --- a/src/licensedcode/data/rules/spdx_license_id_erlpl-1.1_for_erlangpl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_erlpl-1.1_for_erlangpl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: erlangpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + erlpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_erlpl-1.1_for_erlangpl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_erlpl-1.1_for_erlangpl-1.1.yml deleted file mode 100644 index b3cc113512f..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_erlpl-1.1_for_erlangpl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: erlangpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_eudatagrid_for_eu-datagrid.RULE b/src/licensedcode/data/rules/spdx_license_id_eudatagrid_for_eu-datagrid.RULE index e403224fd04..ab18bd80e84 100644 --- a/src/licensedcode/data/rules/spdx_license_id_eudatagrid_for_eu-datagrid.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_eudatagrid_for_eu-datagrid.RULE @@ -1 +1,10 @@ +--- +license_expression: eu-datagrid +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + eudatagrid \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_eudatagrid_for_eu-datagrid.yml b/src/licensedcode/data/rules/spdx_license_id_eudatagrid_for_eu-datagrid.yml deleted file mode 100644 index 6407c472237..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_eudatagrid_for_eu-datagrid.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eu-datagrid -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_eupl-1.0_for_eupl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_eupl-1.0_for_eupl-1.0.RULE index 6415e8228de..8c5bc40ee1f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_eupl-1.0_for_eupl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_eupl-1.0_for_eupl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + eupl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_eupl-1.0_for_eupl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_eupl-1.0_for_eupl-1.0.yml deleted file mode 100644 index fb90b440014..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_eupl-1.0_for_eupl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_eupl-1.1_for_eupl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_eupl-1.1_for_eupl-1.1.RULE index ebc6a3a0d8b..e977e13d797 100644 --- a/src/licensedcode/data/rules/spdx_license_id_eupl-1.1_for_eupl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_eupl-1.1_for_eupl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + eupl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_eupl-1.1_for_eupl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_eupl-1.1_for_eupl-1.1.yml deleted file mode 100644 index 95362986e5f..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_eupl-1.1_for_eupl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_eupl-1.2_for_eupl-1.2.RULE b/src/licensedcode/data/rules/spdx_license_id_eupl-1.2_for_eupl-1.2.RULE index 1b205f04aa0..ebd449509ef 100644 --- a/src/licensedcode/data/rules/spdx_license_id_eupl-1.2_for_eupl-1.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_eupl-1.2_for_eupl-1.2.RULE @@ -1 +1,10 @@ +--- +license_expression: eupl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + eupl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_eupl-1.2_for_eupl-1.2.yml b/src/licensedcode/data/rules/spdx_license_id_eupl-1.2_for_eupl-1.2.yml deleted file mode 100644 index 3c13eb9366d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_eupl-1.2_for_eupl-1.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: eupl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_fawkes-runtime-exception_for_fawkes-runtime-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_fawkes-runtime-exception_for_fawkes-runtime-exception.RULE index 2ac40d07fac..9df159a9973 100644 --- a/src/licensedcode/data/rules/spdx_license_id_fawkes-runtime-exception_for_fawkes-runtime-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_fawkes-runtime-exception_for_fawkes-runtime-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: fawkes-runtime-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + fawkes-runtime-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_fawkes-runtime-exception_for_fawkes-runtime-exception.yml b/src/licensedcode/data/rules/spdx_license_id_fawkes-runtime-exception_for_fawkes-runtime-exception.yml deleted file mode 100644 index cf015a80d0f..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_fawkes-runtime-exception_for_fawkes-runtime-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fawkes-runtime-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_fltk-exception_for_fltk-exception-lgpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_fltk-exception_for_fltk-exception-lgpl-2.0.RULE index f2b3f534551..a1ca1fa31e2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_fltk-exception_for_fltk-exception-lgpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_fltk-exception_for_fltk-exception-lgpl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: fltk-exception-lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + fltk-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_fltk-exception_for_fltk-exception-lgpl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_fltk-exception_for_fltk-exception-lgpl-2.0.yml deleted file mode 100644 index 441448c7539..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_fltk-exception_for_fltk-exception-lgpl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fltk-exception-lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_font-exception-2.0_for_font-exception-gpl.RULE b/src/licensedcode/data/rules/spdx_license_id_font-exception-2.0_for_font-exception-gpl.RULE index 77cd486cdba..44cebea4d36 100644 --- a/src/licensedcode/data/rules/spdx_license_id_font-exception-2.0_for_font-exception-gpl.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_font-exception-2.0_for_font-exception-gpl.RULE @@ -1 +1,10 @@ +--- +license_expression: font-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + font-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_font-exception-2.0_for_font-exception-gpl.yml b/src/licensedcode/data/rules/spdx_license_id_font-exception-2.0_for_font-exception-gpl.yml deleted file mode 100644 index bfdfa2b9aef..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_font-exception-2.0_for_font-exception-gpl.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: font-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_freertos-exception-2.0_for_freertos-exception-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_freertos-exception-2.0_for_freertos-exception-2.0.RULE index f249d3ef4eb..8cfc249dec2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_freertos-exception-2.0_for_freertos-exception-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_freertos-exception-2.0_for_freertos-exception-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: freertos-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + freertos-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_freertos-exception-2.0_for_freertos-exception-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_freertos-exception-2.0_for_freertos-exception-2.0.yml deleted file mode 100644 index b9247b4bc0c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_freertos-exception-2.0_for_freertos-exception-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: freertos-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_fsfap_for_fsf-ap.RULE b/src/licensedcode/data/rules/spdx_license_id_fsfap_for_fsf-ap.RULE index fbb45541aa1..333177fb665 100644 --- a/src/licensedcode/data/rules/spdx_license_id_fsfap_for_fsf-ap.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_fsfap_for_fsf-ap.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-ap +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + fsfap \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_fsfap_for_fsf-ap.yml b/src/licensedcode/data/rules/spdx_license_id_fsfap_for_fsf-ap.yml deleted file mode 100644 index 5fe0b5fcaf0..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_fsfap_for_fsf-ap.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-ap -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_fsful_for_fsf-free.RULE b/src/licensedcode/data/rules/spdx_license_id_fsful_for_fsf-free.RULE index 414893b3198..4c0885efa1e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_fsful_for_fsf-free.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_fsful_for_fsf-free.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-free +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + fsful \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_fsful_for_fsf-free.yml b/src/licensedcode/data/rules/spdx_license_id_fsful_for_fsf-free.yml deleted file mode 100644 index b74ff2a5167..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_fsful_for_fsf-free.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-free -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_fsfullr_for_fsf-unlimited.RULE b/src/licensedcode/data/rules/spdx_license_id_fsfullr_for_fsf-unlimited.RULE index d83a1b0e125..6f0a2442b76 100644 --- a/src/licensedcode/data/rules/spdx_license_id_fsfullr_for_fsf-unlimited.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_fsfullr_for_fsf-unlimited.RULE @@ -1 +1,10 @@ +--- +license_expression: fsf-unlimited +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + fsfullr \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_fsfullr_for_fsf-unlimited.yml b/src/licensedcode/data/rules/spdx_license_id_fsfullr_for_fsf-unlimited.yml deleted file mode 100644 index acda5da5659..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_fsfullr_for_fsf-unlimited.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: fsf-unlimited -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE index e7405cfbf5f..33f9ee9ca46 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-linking-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gcc-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.yml deleted file mode 100644 index 7bcb59bd6f8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gcc-exception-2.0_for_gcc-linking-exception-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-linking-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gcc-exception-3.1_for_gcc-exception-3.1.RULE b/src/licensedcode/data/rules/spdx_license_id_gcc-exception-3.1_for_gcc-exception-3.1.RULE index 7a3ade5e79f..e9429f06a9f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gcc-exception-3.1_for_gcc-exception-3.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gcc-exception-3.1_for_gcc-exception-3.1.RULE @@ -1 +1,10 @@ +--- +license_expression: gcc-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gcc-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gcc-exception-3.1_for_gcc-exception-3.1.yml b/src/licensedcode/data/rules/spdx_license_id_gcc-exception-3.1_for_gcc-exception-3.1.yml deleted file mode 100644 index 259a17c61d8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gcc-exception-3.1_for_gcc-exception-3.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gcc-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1+_for_gfdl-1.1-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1+_for_gfdl-1.1-plus.RULE index 570be1707b6..1e7751b0b82 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1+_for_gfdl-1.1-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1+_for_gfdl-1.1-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1+_for_gfdl-1.1-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1+_for_gfdl-1.1-plus.yml deleted file mode 100644 index 7372e57226c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1+_for_gfdl-1.1-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-only_for_gfdl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-only_for_gfdl-1.1.RULE index 38c2280b0ed..88c7a7f2118 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-only_for_gfdl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-only_for_gfdl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-only_for_gfdl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-only_for_gfdl-1.1.yml deleted file mode 100644 index 402da009183..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-only_for_gfdl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-or-later_for_gfdl-1.1-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-or-later_for_gfdl-1.1-plus.RULE index 08bdedfb33b..3596681973e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-or-later_for_gfdl-1.1-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-or-later_for_gfdl-1.1-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-or-later_for_gfdl-1.1-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-or-later_for_gfdl-1.1-plus.yml deleted file mode 100644 index 7372e57226c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.1-or-later_for_gfdl-1.1-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2+_for_gfdl-1.2-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2+_for_gfdl-1.2-plus.RULE index 500ff12bca9..026eca236bd 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2+_for_gfdl-1.2-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2+_for_gfdl-1.2-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2+_for_gfdl-1.2-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2+_for_gfdl-1.2-plus.yml deleted file mode 100644 index 0845937afb3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2+_for_gfdl-1.2-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-only_for_gfdl-1.2.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-only_for_gfdl-1.2.RULE index 6d4bcdae9a2..a4cc7d4ead6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-only_for_gfdl-1.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-only_for_gfdl-1.2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.2-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-only_for_gfdl-1.2.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-only_for_gfdl-1.2.yml deleted file mode 100644 index 06980f81950..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-only_for_gfdl-1.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-or-later_for_gfdl-1.2-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-or-later_for_gfdl-1.2-plus.RULE index 3978b314053..32622a54e26 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-or-later_for_gfdl-1.2-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-or-later_for_gfdl-1.2-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.2-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-or-later_for_gfdl-1.2-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-or-later_for_gfdl-1.2-plus.yml deleted file mode 100644 index 0845937afb3..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2-or-later_for_gfdl-1.2-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2_for_gfdl-1.2.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2_for_gfdl-1.2.RULE index bd91113061c..cdf1d93f0b2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2_for_gfdl-1.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2_for_gfdl-1.2.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2_for_gfdl-1.2.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2_for_gfdl-1.2.yml deleted file mode 100644 index 06980f81950..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.2_for_gfdl-1.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3+_for_gfdl-1.3-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3+_for_gfdl-1.3-plus.RULE index 951852d4578..4a3d2fc61b4 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3+_for_gfdl-1.3-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3+_for_gfdl-1.3-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.3+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3+_for_gfdl-1.3-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3+_for_gfdl-1.3-plus.yml deleted file mode 100644 index 8c29d5e30ee..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3+_for_gfdl-1.3-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-only_for_gfdl-1.3.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-only_for_gfdl-1.3.RULE index c57b1029c6e..89809441ddc 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-only_for_gfdl-1.3.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-only_for_gfdl-1.3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.3-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-only_for_gfdl-1.3.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-only_for_gfdl-1.3.yml deleted file mode 100644 index 57de7c8f862..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-only_for_gfdl-1.3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-or-later_for_gfdl-1.3-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-or-later_for_gfdl-1.3-plus.RULE index 5e2127b3e6b..60a384bffbb 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-or-later_for_gfdl-1.3-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-or-later_for_gfdl-1.3-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.3-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-or-later_for_gfdl-1.3-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-or-later_for_gfdl-1.3-plus.yml deleted file mode 100644 index 8c29d5e30ee..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3-or-later_for_gfdl-1.3-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3_for_gfdl-1.3.RULE b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3_for_gfdl-1.3.RULE index f26c049ca26..e13fa920284 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3_for_gfdl-1.3.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3_for_gfdl-1.3.RULE @@ -1 +1,10 @@ +--- +license_expression: gfdl-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gfdl-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3_for_gfdl-1.3.yml b/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3_for_gfdl-1.3.yml deleted file mode 100644 index 57de7c8f862..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gfdl-1.3_for_gfdl-1.3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gfdl-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_giftware_for_allegro-4.RULE b/src/licensedcode/data/rules/spdx_license_id_giftware_for_allegro-4.RULE index 64477e0268d..fd989bd23fc 100644 --- a/src/licensedcode/data/rules/spdx_license_id_giftware_for_allegro-4.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_giftware_for_allegro-4.RULE @@ -1 +1,10 @@ +--- +license_expression: allegro-4 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + giftware \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_giftware_for_allegro-4.yml b/src/licensedcode/data/rules/spdx_license_id_giftware_for_allegro-4.yml deleted file mode 100644 index 15db3a2f06b..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_giftware_for_allegro-4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: allegro-4 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_glulxe_for_glulxe.RULE b/src/licensedcode/data/rules/spdx_license_id_glulxe_for_glulxe.RULE index e20302dcb8d..3984e4ca9af 100644 --- a/src/licensedcode/data/rules/spdx_license_id_glulxe_for_glulxe.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_glulxe_for_glulxe.RULE @@ -1 +1,10 @@ +--- +license_expression: glulxe +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + glulxe \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_glulxe_for_glulxe.yml b/src/licensedcode/data/rules/spdx_license_id_glulxe_for_glulxe.yml deleted file mode 100644 index 6c54187cb66..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_glulxe_for_glulxe.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: glulxe -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gnu-javamail-exception_for_gnu-javamail-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_gnu-javamail-exception_for_gnu-javamail-exception.RULE index c8f12fb66b7..bcc3148e6ae 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gnu-javamail-exception_for_gnu-javamail-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gnu-javamail-exception_for_gnu-javamail-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: gnu-javamail-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gnu-javamail-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gnu-javamail-exception_for_gnu-javamail-exception.yml b/src/licensedcode/data/rules/spdx_license_id_gnu-javamail-exception_for_gnu-javamail-exception.yml deleted file mode 100644 index dcc7d01a5c1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gnu-javamail-exception_for_gnu-javamail-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gnu-javamail-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.RULE index bad5c03ae8d..05f3d3ff716 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gpl-1.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.yml deleted file mode 100644 index ae9d8e9424d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.RULE index a1092573350..4b6549f92e3 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gpl-1.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.yml deleted file mode 100644 index 1c436ec6359..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE index 53747115097..c116cb05df1 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gpl-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.yml deleted file mode 100644 index ae9d8e9424d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-1.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.RULE index e17a809ffad..fc16052f3c8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gpl-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.yml deleted file mode 100644 index 906dc534fd7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE index 06358b32297..f57f6dd9c01 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gpl-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.yml deleted file mode 100644 index 61d828e02c9..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE index c124696677c..81c635ab06e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gpl-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.yml deleted file mode 100644 index 906dc534fd7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE index 752cfaaa155..4e33389ead9 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gpl-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.yml deleted file mode 100644 index 0c3e51d6f70..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE index b885a2a0b01..85553f36c68 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gpl-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.yml deleted file mode 100644 index 6f0db834df7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_gsoap-1.3b_for_gsoap-1.3b.RULE b/src/licensedcode/data/rules/spdx_license_id_gsoap-1.3b_for_gsoap-1.3b.RULE index 05d76071859..a848af9873e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gsoap-1.3b_for_gsoap-1.3b.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gsoap-1.3b_for_gsoap-1.3b.RULE @@ -1 +1,10 @@ +--- +license_expression: gsoap-1.3b +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + gsoap-1.3b \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gsoap-1.3b_for_gsoap-1.3b.yml b/src/licensedcode/data/rules/spdx_license_id_gsoap-1.3b_for_gsoap-1.3b.yml deleted file mode 100644 index c68fbbbcef8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_gsoap-1.3b_for_gsoap-1.3b.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gsoap-1.3b -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_i2p-gpl-java-exception_for_i2p-gpl-java-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_i2p-gpl-java-exception_for_i2p-gpl-java-exception.RULE index c4f06216c08..94ebb669e1a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_i2p-gpl-java-exception_for_i2p-gpl-java-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_i2p-gpl-java-exception_for_i2p-gpl-java-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: i2p-gpl-java-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + i2p-gpl-java-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_i2p-gpl-java-exception_for_i2p-gpl-java-exception.yml b/src/licensedcode/data/rules/spdx_license_id_i2p-gpl-java-exception_for_i2p-gpl-java-exception.yml deleted file mode 100644 index 1c4fd87288d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_i2p-gpl-java-exception_for_i2p-gpl-java-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: i2p-gpl-java-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ipl-1.0_for_ibmpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_ipl-1.0_for_ibmpl-1.0.RULE index e31cc9f23b4..daf3029d0f8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ipl-1.0_for_ibmpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ipl-1.0_for_ibmpl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: ibmpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ipl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ipl-1.0_for_ibmpl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_ipl-1.0_for_ibmpl-1.0.yml deleted file mode 100644 index c88bc7bc9b6..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ipl-1.0_for_ibmpl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ibmpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.RULE index 4082b9229f2..58e0272d020 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lgpl-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.yml deleted file mode 100644 index e21530fc50b..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.RULE index b03e5f7ae15..fde90f4d7d0 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lgpl-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.yml deleted file mode 100644 index 472be15b9b5..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE index d6537c728b1..0bd5d004156 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lgpl-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.yml deleted file mode 100644 index e21530fc50b..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE index f9b8e723b1e..a4ae1d1a08b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lgpl-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.yml b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.yml deleted file mode 100644 index 05fab17ab49..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE index cc70cec3f3f..17dd6be3625 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lgpl-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.yml b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.yml deleted file mode 100644 index 2b4f6c6f374..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.RULE index 8294a1f90dc..a1054098e6b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lgpl-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.yml deleted file mode 100644 index c0f2328649c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE index cd48eeacedd..320d77b7a8e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lgpl-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.yml b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.yml deleted file mode 100644 index 98d4f9c723a..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpl-3.0-plus -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpllr_for_lgpllr.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpllr_for_lgpllr.RULE index 74e9d3b008c..3b5ef8c0985 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpllr_for_lgpllr.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpllr_for_lgpllr.RULE @@ -1 +1,10 @@ +--- +license_expression: lgpllr +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lgpllr \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpllr_for_lgpllr.yml b/src/licensedcode/data/rules/spdx_license_id_lgpllr_for_lgpllr.yml deleted file mode 100644 index 144a754cb4f..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lgpllr_for_lgpllr.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lgpllr -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_libtool-exception_for_libtool-exception-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_libtool-exception_for_libtool-exception-2.0.RULE index d214f71da8b..3fdfd0571f2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_libtool-exception_for_libtool-exception-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_libtool-exception_for_libtool-exception-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: libtool-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + libtool-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_libtool-exception_for_libtool-exception-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_libtool-exception_for_libtool-exception-2.0.yml deleted file mode 100644 index 203333a72b1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_libtool-exception_for_libtool-exception-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libtool-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_licenseref-proprietary-here_for_here-proprietary.RULE b/src/licensedcode/data/rules/spdx_license_id_licenseref-proprietary-here_for_here-proprietary.RULE index d3897a76e5c..51806b7e11c 100644 --- a/src/licensedcode/data/rules/spdx_license_id_licenseref-proprietary-here_for_here-proprietary.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_licenseref-proprietary-here_for_here-proprietary.RULE @@ -1 +1,10 @@ +--- +license_expression: here-proprietary +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + licenseref-proprietary-here \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_licenseref-proprietary-here_for_here-proprietary.yml b/src/licensedcode/data/rules/spdx_license_id_licenseref-proprietary-here_for_here-proprietary.yml deleted file mode 100644 index 923bd4498f1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_licenseref-proprietary-here_for_here-proprietary.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: here-proprietary -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_linux-syscall-note_for_linux-syscall-exception-gpl.RULE b/src/licensedcode/data/rules/spdx_license_id_linux-syscall-note_for_linux-syscall-exception-gpl.RULE index 697e3241b77..3c93bc8dabc 100644 --- a/src/licensedcode/data/rules/spdx_license_id_linux-syscall-note_for_linux-syscall-exception-gpl.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_linux-syscall-note_for_linux-syscall-exception-gpl.RULE @@ -1 +1,10 @@ +--- +license_expression: linux-syscall-exception-gpl +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + linux-syscall-note \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_linux-syscall-note_for_linux-syscall-exception-gpl.yml b/src/licensedcode/data/rules/spdx_license_id_linux-syscall-note_for_linux-syscall-exception-gpl.yml deleted file mode 100644 index 0286c1a0b37..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_linux-syscall-note_for_linux-syscall-exception-gpl.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: linux-syscall-exception-gpl -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lpl-1.02_for_lucent-pl-1.02.RULE b/src/licensedcode/data/rules/spdx_license_id_lpl-1.02_for_lucent-pl-1.02.RULE index c1e2e2241d4..ec555972844 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lpl-1.02_for_lucent-pl-1.02.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lpl-1.02_for_lucent-pl-1.02.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.02 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lpl-1.02 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lpl-1.02_for_lucent-pl-1.02.yml b/src/licensedcode/data/rules/spdx_license_id_lpl-1.02_for_lucent-pl-1.02.yml deleted file mode 100644 index ea6cdbe2b36..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lpl-1.02_for_lucent-pl-1.02.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.02 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lpl-1.0_for_lucent-pl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_lpl-1.0_for_lucent-pl-1.0.RULE index 3d99f07cbe2..0b8c8aacf55 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lpl-1.0_for_lucent-pl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lpl-1.0_for_lucent-pl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: lucent-pl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lpl-1.0_for_lucent-pl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_lpl-1.0_for_lucent-pl-1.0.yml deleted file mode 100644 index a20b28750df..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lpl-1.0_for_lucent-pl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lucent-pl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.0_for_lppl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_lppl-1.0_for_lppl-1.0.RULE index ea7cc1031cf..b73e99f59f3 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.0_for_lppl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lppl-1.0_for_lppl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lppl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.0_for_lppl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_lppl-1.0_for_lppl-1.0.yml deleted file mode 100644 index c04cc445d00..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.0_for_lppl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.1_for_lppl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_lppl-1.1_for_lppl-1.1.RULE index b3afbc88d42..1e8d497a77f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.1_for_lppl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lppl-1.1_for_lppl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lppl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.1_for_lppl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_lppl-1.1_for_lppl-1.1.yml deleted file mode 100644 index 252790ca791..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.1_for_lppl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.2_for_lppl-1.2.RULE b/src/licensedcode/data/rules/spdx_license_id_lppl-1.2_for_lppl-1.2.RULE index 7376ed321c4..79ad4a7d846 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.2_for_lppl-1.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lppl-1.2_for_lppl-1.2.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lppl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.2_for_lppl-1.2.yml b/src/licensedcode/data/rules/spdx_license_id_lppl-1.2_for_lppl-1.2.yml deleted file mode 100644 index ebdb7616bd8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.2_for_lppl-1.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.3a_for_lppl-1.3a.RULE b/src/licensedcode/data/rules/spdx_license_id_lppl-1.3a_for_lppl-1.3a.RULE index 7c698e91952..12833a70bcc 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.3a_for_lppl-1.3a.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lppl-1.3a_for_lppl-1.3a.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3a +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lppl-1.3a \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.3a_for_lppl-1.3a.yml b/src/licensedcode/data/rules/spdx_license_id_lppl-1.3a_for_lppl-1.3a.yml deleted file mode 100644 index e7cc1d4511e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.3a_for_lppl-1.3a.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3a -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.3c_for_lppl-1.3c.RULE b/src/licensedcode/data/rules/spdx_license_id_lppl-1.3c_for_lppl-1.3c.RULE index 052dbd18b93..42312eb731f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.3c_for_lppl-1.3c.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lppl-1.3c_for_lppl-1.3c.RULE @@ -1 +1,10 @@ +--- +license_expression: lppl-1.3c +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + lppl-1.3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lppl-1.3c_for_lppl-1.3c.yml b/src/licensedcode/data/rules/spdx_license_id_lppl-1.3c_for_lppl-1.3c.yml deleted file mode 100644 index c863b411673..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_lppl-1.3c_for_lppl-1.3c.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: lppl-1.3c -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mif-exception_for_mif-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_mif-exception_for_mif-exception.RULE index ffc4cc5c022..efb19d6bd6e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mif-exception_for_mif-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mif-exception_for_mif-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: mif-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mif-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mif-exception_for_mif-exception.yml b/src/licensedcode/data/rules/spdx_license_id_mif-exception_for_mif-exception.yml deleted file mode 100644 index eaeb1cb24d7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mif-exception_for_mif-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mif-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mit-advertising_for_enlightenment.RULE b/src/licensedcode/data/rules/spdx_license_id_mit-advertising_for_enlightenment.RULE index 20364570336..5771b627c10 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mit-advertising_for_enlightenment.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mit-advertising_for_enlightenment.RULE @@ -1 +1,10 @@ +--- +license_expression: enlightenment +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mit-advertising \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mit-advertising_for_enlightenment.yml b/src/licensedcode/data/rules/spdx_license_id_mit-advertising_for_enlightenment.yml deleted file mode 100644 index f5b5f66dc00..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mit-advertising_for_enlightenment.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enlightenment -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mit-cmu_for_cmu-uc.RULE b/src/licensedcode/data/rules/spdx_license_id_mit-cmu_for_cmu-uc.RULE index 887d778a30c..47f118518f0 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mit-cmu_for_cmu-uc.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mit-cmu_for_cmu-uc.RULE @@ -1 +1,10 @@ +--- +license_expression: cmu-uc +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mit-cmu \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mit-cmu_for_cmu-uc.yml b/src/licensedcode/data/rules/spdx_license_id_mit-cmu_for_cmu-uc.yml deleted file mode 100644 index ef458326542..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mit-cmu_for_cmu-uc.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: cmu-uc -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mit-enna_for_enna.RULE b/src/licensedcode/data/rules/spdx_license_id_mit-enna_for_enna.RULE index fbe9a8e24fb..6044016fa48 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mit-enna_for_enna.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mit-enna_for_enna.RULE @@ -1 +1,10 @@ +--- +license_expression: enna +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mit-enna \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mit-enna_for_enna.yml b/src/licensedcode/data/rules/spdx_license_id_mit-enna_for_enna.yml deleted file mode 100644 index da3218f5a75..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mit-enna_for_enna.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: enna -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mit-feh_for_mit-ack.RULE b/src/licensedcode/data/rules/spdx_license_id_mit-feh_for_mit-ack.RULE index cbf4970a060..31bf0cabf4c 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mit-feh_for_mit-ack.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mit-feh_for_mit-ack.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-ack +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mit-feh \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mit-feh_for_mit-ack.yml b/src/licensedcode/data/rules/spdx_license_id_mit-feh_for_mit-ack.yml deleted file mode 100644 index 2c8c23252da..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mit-feh_for_mit-ack.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-ack -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mitnfa_for_mit-no-false-attribs.RULE b/src/licensedcode/data/rules/spdx_license_id_mitnfa_for_mit-no-false-attribs.RULE index 40d60a92ca6..6e8926dd7b1 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mitnfa_for_mit-no-false-attribs.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mitnfa_for_mit-no-false-attribs.RULE @@ -1 +1,10 @@ +--- +license_expression: mit-no-false-attribs +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mitnfa \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mitnfa_for_mit-no-false-attribs.yml b/src/licensedcode/data/rules/spdx_license_id_mitnfa_for_mit-no-false-attribs.yml deleted file mode 100644 index 4f654922ce7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mitnfa_for_mit-no-false-attribs.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mit-no-false-attribs -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.RULE index 408f081cd2d..3d8f6587a82 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.yml deleted file mode 100644 index 69c77584e30..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE index 39c09c715f9..778af180691 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.yml deleted file mode 100644 index 8e81e834b95..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0-no-copyleft-exception_for_mpl-2.0-no-copyleft-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_mpl-2.0-no-copyleft-exception_for_mpl-2.0-no-copyleft-exception.RULE index 4073e0a45ca..66d235aa1ad 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0-no-copyleft-exception_for_mpl-2.0-no-copyleft-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mpl-2.0-no-copyleft-exception_for_mpl-2.0-no-copyleft-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0-no-copyleft-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mpl-2.0-no-copyleft-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0-no-copyleft-exception_for_mpl-2.0-no-copyleft-exception.yml b/src/licensedcode/data/rules/spdx_license_id_mpl-2.0-no-copyleft-exception_for_mpl-2.0-no-copyleft-exception.yml deleted file mode 100644 index 1f54946701d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0-no-copyleft-exception_for_mpl-2.0-no-copyleft-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0-no-copyleft-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE index 60057873173..b66ae0b16b8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: mpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + mpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.yml deleted file mode 100644 index 61bb9be9b26..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: mpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_nasa-1.3_for_nasa-1.3.RULE b/src/licensedcode/data/rules/spdx_license_id_nasa-1.3_for_nasa-1.3.RULE index 0644e054cf8..bb8e4202ea1 100644 --- a/src/licensedcode/data/rules/spdx_license_id_nasa-1.3_for_nasa-1.3.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_nasa-1.3_for_nasa-1.3.RULE @@ -1 +1,10 @@ +--- +license_expression: nasa-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + nasa-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_nasa-1.3_for_nasa-1.3.yml b/src/licensedcode/data/rules/spdx_license_id_nasa-1.3_for_nasa-1.3.yml deleted file mode 100644 index 4ccd58dac93..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_nasa-1.3_for_nasa-1.3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nasa-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_nbpl-1.0_for_nbpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_nbpl-1.0_for_nbpl-1.0.RULE index dd57e7add07..d6ffb42de87 100644 --- a/src/licensedcode/data/rules/spdx_license_id_nbpl-1.0_for_nbpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_nbpl-1.0_for_nbpl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: nbpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + nbpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_nbpl-1.0_for_nbpl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_nbpl-1.0_for_nbpl-1.0.yml deleted file mode 100644 index e2cc8e3fe02..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_nbpl-1.0_for_nbpl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nbpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_newsletr_for_newsletr.RULE b/src/licensedcode/data/rules/spdx_license_id_newsletr_for_newsletr.RULE index 0fedadecabf..23f2f0a1a14 100644 --- a/src/licensedcode/data/rules/spdx_license_id_newsletr_for_newsletr.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_newsletr_for_newsletr.RULE @@ -1 +1,10 @@ +--- +license_expression: newsletr +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + newsletr \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_newsletr_for_newsletr.yml b/src/licensedcode/data/rules/spdx_license_id_newsletr_for_newsletr.yml deleted file mode 100644 index 92f7f592b6c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_newsletr_for_newsletr.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: newsletr -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_nlod-1.0_for_nlod-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_nlod-1.0_for_nlod-1.0.RULE index 6540515337e..22acd02a209 100644 --- a/src/licensedcode/data/rules/spdx_license_id_nlod-1.0_for_nlod-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_nlod-1.0_for_nlod-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: nlod-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + nlod-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_nlod-1.0_for_nlod-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_nlod-1.0_for_nlod-1.0.yml deleted file mode 100644 index 5534c25e9d8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_nlod-1.0_for_nlod-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nlod-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_nosl_for_nosl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_nosl_for_nosl-1.0.RULE index 5152119b1c5..4b5940e8508 100644 --- a/src/licensedcode/data/rules/spdx_license_id_nosl_for_nosl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_nosl_for_nosl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + nosl \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_nosl_for_nosl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_nosl_for_nosl-1.0.yml deleted file mode 100644 index 8cf188015b8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_nosl_for_nosl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_noweb_for_noweb.RULE b/src/licensedcode/data/rules/spdx_license_id_noweb_for_noweb.RULE index efa103c098f..756b4e32f6f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_noweb_for_noweb.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_noweb_for_noweb.RULE @@ -1 +1,10 @@ +--- +license_expression: noweb +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + noweb \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_noweb_for_noweb.yml b/src/licensedcode/data/rules/spdx_license_id_noweb_for_noweb.yml deleted file mode 100644 index 76c1ca8f893..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_noweb_for_noweb.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: noweb -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_npl-1.0_for_npl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_npl-1.0_for_npl-1.0.RULE index 21587694725..c5ca67189b8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_npl-1.0_for_npl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_npl-1.0_for_npl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + npl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_npl-1.0_for_npl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_npl-1.0_for_npl-1.0.yml deleted file mode 100644 index 52998dcf66d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_npl-1.0_for_npl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_npl-1.1_for_npl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_npl-1.1_for_npl-1.1.RULE index c8dd2fbfb06..93d9f0b2ad5 100644 --- a/src/licensedcode/data/rules/spdx_license_id_npl-1.1_for_npl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_npl-1.1_for_npl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: npl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + npl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_npl-1.1_for_npl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_npl-1.1_for_npl-1.1.yml deleted file mode 100644 index f9235aedd76..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_npl-1.1_for_npl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: npl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_nposl-3.0_for_nosl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_nposl-3.0_for_nosl-3.0.RULE index 78f75f7a06f..03dd9f40d34 100644 --- a/src/licensedcode/data/rules/spdx_license_id_nposl-3.0_for_nosl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_nposl-3.0_for_nosl-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: nosl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + nposl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_nposl-3.0_for_nosl-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_nposl-3.0_for_nosl-3.0.yml deleted file mode 100644 index 15302e1420d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_nposl-3.0_for_nosl-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: nosl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_occt-exception-1.0_for_occt-exception-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_occt-exception-1.0_for_occt-exception-1.0.RULE index 1990decf501..382d75f7677 100644 --- a/src/licensedcode/data/rules/spdx_license_id_occt-exception-1.0_for_occt-exception-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_occt-exception-1.0_for_occt-exception-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + occt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_occt-exception-1.0_for_occt-exception-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_occt-exception-1.0_for_occt-exception-1.0.yml deleted file mode 100644 index 66a4862c6bb..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_occt-exception-1.0_for_occt-exception-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_occt-pl_for_occt-pl.RULE b/src/licensedcode/data/rules/spdx_license_id_occt-pl_for_occt-pl.RULE index d5a38026639..7a4362ee5be 100644 --- a/src/licensedcode/data/rules/spdx_license_id_occt-pl_for_occt-pl.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_occt-pl_for_occt-pl.RULE @@ -1 +1,10 @@ +--- +license_expression: occt-pl +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + occt-pl \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_occt-pl_for_occt-pl.yml b/src/licensedcode/data/rules/spdx_license_id_occt-pl_for_occt-pl.yml deleted file mode 100644 index e84726c5461..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_occt-pl_for_occt-pl.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: occt-pl -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oclc-2.0_for_oclc-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_oclc-2.0_for_oclc-2.0.RULE index 57a9f5ea17c..66bd345ee6a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oclc-2.0_for_oclc-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oclc-2.0_for_oclc-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: oclc-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oclc-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oclc-2.0_for_oclc-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_oclc-2.0_for_oclc-2.0.yml deleted file mode 100644 index ef0675db246..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oclc-2.0_for_oclc-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oclc-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_odbl-1.0_for_odbl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_odbl-1.0_for_odbl-1.0.RULE index 49aea308bc3..b2112baa78c 100644 --- a/src/licensedcode/data/rules/spdx_license_id_odbl-1.0_for_odbl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_odbl-1.0_for_odbl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: odbl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + odbl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_odbl-1.0_for_odbl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_odbl-1.0_for_odbl-1.0.yml deleted file mode 100644 index 07732c9bc2e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_odbl-1.0_for_odbl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: odbl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ofl-1.0_for_ofl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_ofl-1.0_for_ofl-1.0.RULE index 92668dc9942..c565af7f588 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ofl-1.0_for_ofl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ofl-1.0_for_ofl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ofl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ofl-1.0_for_ofl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_ofl-1.0_for_ofl-1.0.yml deleted file mode 100644 index 26e743a021b..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ofl-1.0_for_ofl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.RULE index cdd977f42a2..cbf12d5b7a3 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: ofl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ofl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.yml deleted file mode 100644 index 6bb55090b6b..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ofl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ogtsl_for_opengroup.RULE b/src/licensedcode/data/rules/spdx_license_id_ogtsl_for_opengroup.RULE index 10c86a583c9..dfbe95e78b6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ogtsl_for_opengroup.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ogtsl_for_opengroup.RULE @@ -1 +1,10 @@ +--- +license_expression: opengroup +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ogtsl \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ogtsl_for_opengroup.yml b/src/licensedcode/data/rules/spdx_license_id_ogtsl_for_opengroup.yml deleted file mode 100644 index 3d0e2348825..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ogtsl_for_opengroup.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: opengroup -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-1.1_for_openldap-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-1.1_for_openldap-1.1.RULE index ac6270d64c5..bb66ed96ac6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-1.1_for_openldap-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-1.1_for_openldap-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-1.1_for_openldap-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-1.1_for_openldap-1.1.yml deleted file mode 100644 index d67583310c4..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-1.1_for_openldap-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-1.2_for_openldap-1.2.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-1.2_for_openldap-1.2.RULE index 74cf5e8a0c1..6ad7cc58f6a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-1.2_for_openldap-1.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-1.2_for_openldap-1.2.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-1.2_for_openldap-1.2.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-1.2_for_openldap-1.2.yml deleted file mode 100644 index 9e7a173455e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-1.2_for_openldap-1.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-1.3_for_openldap-1.3.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-1.3_for_openldap-1.3.RULE index 8dc7e52a2af..af56ac15c2e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-1.3_for_openldap-1.3.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-1.3_for_openldap-1.3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-1.3_for_openldap-1.3.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-1.3_for_openldap-1.3.yml deleted file mode 100644 index 8da46b276db..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-1.3_for_openldap-1.3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-1.4_for_openldap-1.4.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-1.4_for_openldap-1.4.RULE index e6b9633547c..5be781f2a90 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-1.4_for_openldap-1.4.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-1.4_for_openldap-1.4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-1.4_for_openldap-1.4.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-1.4_for_openldap-1.4.yml deleted file mode 100644 index d0ff30bc20c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-1.4_for_openldap-1.4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.0.1_for_openldap-2.0.1.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.0.1_for_openldap-2.0.1.RULE index 017add4f6cb..6d779fa3bd4 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.0.1_for_openldap-2.0.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.0.1_for_openldap-2.0.1.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.0.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.0.1_for_openldap-2.0.1.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.0.1_for_openldap-2.0.1.yml deleted file mode 100644 index f4b4432f569..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.0.1_for_openldap-2.0.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.0_for_openldap-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.0_for_openldap-2.0.RULE index 8e83088f63f..abfebed6772 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.0_for_openldap-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.0_for_openldap-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.0_for_openldap-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.0_for_openldap-2.0.yml deleted file mode 100644 index 7e63557a4fa..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.0_for_openldap-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.1_for_openldap-2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.1_for_openldap-2.1.RULE index a0f303e692b..c5cb55f8e99 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.1_for_openldap-2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.1_for_openldap-2.1.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.1_for_openldap-2.1.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.1_for_openldap-2.1.yml deleted file mode 100644 index 5e29ac19d38..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.1_for_openldap-2.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.1_for_openldap-2.2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.1_for_openldap-2.2.1.RULE index dbe74a43403..5a9d899d0ca 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.1_for_openldap-2.2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.1_for_openldap-2.2.1.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.1_for_openldap-2.2.1.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.1_for_openldap-2.2.1.yml deleted file mode 100644 index 1848fadc278..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.1_for_openldap-2.2.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.2_for_openldap-2.2.2.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.2_for_openldap-2.2.2.RULE index da18d8bc975..ec04c8fea9c 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.2_for_openldap-2.2.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.2_for_openldap-2.2.2.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.2_for_openldap-2.2.2.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.2_for_openldap-2.2.2.yml deleted file mode 100644 index 79d1c2ee18e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2.2_for_openldap-2.2.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2_for_openldap-2.2.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2_for_openldap-2.2.RULE index 9c6d5db5200..9809b975129 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2_for_openldap-2.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2_for_openldap-2.2.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2_for_openldap-2.2.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.2_for_openldap-2.2.yml deleted file mode 100644 index 2d957c7ba1a..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.2_for_openldap-2.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.3_for_openldap-2.3.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.3_for_openldap-2.3.RULE index fac7311189b..de4a2cd9251 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.3_for_openldap-2.3.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.3_for_openldap-2.3.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.3 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.3_for_openldap-2.3.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.3_for_openldap-2.3.yml deleted file mode 100644 index 476a73811fa..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.3_for_openldap-2.3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.3 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.4_for_openldap-2.4.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.4_for_openldap-2.4.RULE index e5c27e5b6bd..b960cb590b7 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.4_for_openldap-2.4.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.4_for_openldap-2.4.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.4 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.4_for_openldap-2.4.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.4_for_openldap-2.4.yml deleted file mode 100644 index 660e9f83fbe..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.4_for_openldap-2.4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.4 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.5_for_openldap-2.5.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.5_for_openldap-2.5.RULE index 1b3dd4d7630..c52eb918716 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.5_for_openldap-2.5.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.5_for_openldap-2.5.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.5 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.5_for_openldap-2.5.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.5_for_openldap-2.5.yml deleted file mode 100644 index 2e5f247befc..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.5_for_openldap-2.5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.5 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.6_for_openldap-2.6.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.6_for_openldap-2.6.RULE index 9d902698a26..2070613ddde 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.6_for_openldap-2.6.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.6_for_openldap-2.6.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.6 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.6 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.6_for_openldap-2.6.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.6_for_openldap-2.6.yml deleted file mode 100644 index 0bc3e59c0da..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.6_for_openldap-2.6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.6 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.7_for_openldap-2.7.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.7_for_openldap-2.7.RULE index b7556b50a4a..279903c2d9a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.7_for_openldap-2.7.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.7_for_openldap-2.7.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.7 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.7 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.7_for_openldap-2.7.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.7_for_openldap-2.7.yml deleted file mode 100644 index dc094c622a5..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.7_for_openldap-2.7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.7 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.8_for_openldap-2.8.RULE b/src/licensedcode/data/rules/spdx_license_id_oldap-2.8_for_openldap-2.8.RULE index f93b9b864e5..0ac3a26f03a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.8_for_openldap-2.8.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oldap-2.8_for_openldap-2.8.RULE @@ -1 +1,10 @@ +--- +license_expression: openldap-2.8 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oldap-2.8 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oldap-2.8_for_openldap-2.8.yml b/src/licensedcode/data/rules/spdx_license_id_oldap-2.8_for_openldap-2.8.yml deleted file mode 100644 index fd2371d158d..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oldap-2.8_for_openldap-2.8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openldap-2.8 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_openjdk-assembly-exception-1.0_for_openjdk-assembly-exception-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_openjdk-assembly-exception-1.0_for_openjdk-assembly-exception-1.0.RULE index e5ad1357852..403cdc8c88f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_openjdk-assembly-exception-1.0_for_openjdk-assembly-exception-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_openjdk-assembly-exception-1.0_for_openjdk-assembly-exception-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: openjdk-assembly-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + openjdk-assembly-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_openjdk-assembly-exception-1.0_for_openjdk-assembly-exception-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_openjdk-assembly-exception-1.0_for_openjdk-assembly-exception-1.0.yml deleted file mode 100644 index 235dc597d50..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_openjdk-assembly-exception-1.0_for_openjdk-assembly-exception-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openjdk-assembly-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_openvpn-openssl-exception_for_openvpn-openssl-exception.RULE b/src/licensedcode/data/rules/spdx_license_id_openvpn-openssl-exception_for_openvpn-openssl-exception.RULE index 1180c3c1b71..a4aea135244 100644 --- a/src/licensedcode/data/rules/spdx_license_id_openvpn-openssl-exception_for_openvpn-openssl-exception.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_openvpn-openssl-exception_for_openvpn-openssl-exception.RULE @@ -1 +1,10 @@ +--- +license_expression: openvpn-openssl-exception +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + openvpn-openssl-exception \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_openvpn-openssl-exception_for_openvpn-openssl-exception.yml b/src/licensedcode/data/rules/spdx_license_id_openvpn-openssl-exception_for_openvpn-openssl-exception.yml deleted file mode 100644 index 2f46abb7e81..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_openvpn-openssl-exception_for_openvpn-openssl-exception.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: openvpn-openssl-exception -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_opl-1.0_for_open-public.RULE b/src/licensedcode/data/rules/spdx_license_id_opl-1.0_for_open-public.RULE index d575e398657..5d31835b39e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_opl-1.0_for_open-public.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_opl-1.0_for_open-public.RULE @@ -1 +1,10 @@ +--- +license_expression: open-public +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + opl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_opl-1.0_for_open-public.yml b/src/licensedcode/data/rules/spdx_license_id_opl-1.0_for_open-public.yml deleted file mode 100644 index 45e4cfa19b2..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_opl-1.0_for_open-public.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: open-public -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_oset-pl-2.1_for_oset-pl-2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_oset-pl-2.1_for_oset-pl-2.1.RULE index 5ed04acd441..8a285c9db55 100644 --- a/src/licensedcode/data/rules/spdx_license_id_oset-pl-2.1_for_oset-pl-2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_oset-pl-2.1_for_oset-pl-2.1.RULE @@ -1 +1,10 @@ +--- +license_expression: oset-pl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + oset-pl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_oset-pl-2.1_for_oset-pl-2.1.yml b/src/licensedcode/data/rules/spdx_license_id_oset-pl-2.1_for_oset-pl-2.1.yml deleted file mode 100644 index d5cbd704528..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_oset-pl-2.1_for_oset-pl-2.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: oset-pl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-1.0_for_osl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_osl-1.0_for_osl-1.0.RULE index 955e0044a38..472bb214f00 100644 --- a/src/licensedcode/data/rules/spdx_license_id_osl-1.0_for_osl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_osl-1.0_for_osl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + osl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-1.0_for_osl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_osl-1.0_for_osl-1.0.yml deleted file mode 100644 index e1f103432e8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_osl-1.0_for_osl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-1.1_for_osl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_osl-1.1_for_osl-1.1.RULE index 98849793ee0..a97db423c72 100644 --- a/src/licensedcode/data/rules/spdx_license_id_osl-1.1_for_osl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_osl-1.1_for_osl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + osl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-1.1_for_osl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_osl-1.1_for_osl-1.1.yml deleted file mode 100644 index 10d4f2f67e9..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_osl-1.1_for_osl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-2.0_for_osl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_osl-2.0_for_osl-2.0.RULE index bec86cbc85a..d6fc8a70d39 100644 --- a/src/licensedcode/data/rules/spdx_license_id_osl-2.0_for_osl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_osl-2.0_for_osl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + osl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-2.0_for_osl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_osl-2.0_for_osl-2.0.yml deleted file mode 100644 index cfb068bcd00..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_osl-2.0_for_osl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-2.1_for_osl-2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_osl-2.1_for_osl-2.1.RULE index 9f2f58022fa..574d6f8cafb 100644 --- a/src/licensedcode/data/rules/spdx_license_id_osl-2.1_for_osl-2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_osl-2.1_for_osl-2.1.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + osl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-2.1_for_osl-2.1.yml b/src/licensedcode/data/rules/spdx_license_id_osl-2.1_for_osl-2.1.yml deleted file mode 100644 index 767f547a6ac..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_osl-2.1_for_osl-2.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-3.0_for_osl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_osl-3.0_for_osl-3.0.RULE index 07a18ad641d..9493e847af4 100644 --- a/src/licensedcode/data/rules/spdx_license_id_osl-3.0_for_osl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_osl-3.0_for_osl-3.0.RULE @@ -1 +1,10 @@ +--- +license_expression: osl-3.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + osl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_osl-3.0_for_osl-3.0.yml b/src/licensedcode/data/rules/spdx_license_id_osl-3.0_for_osl-3.0.yml deleted file mode 100644 index 63b91093028..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_osl-3.0_for_osl-3.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: osl-3.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_pddl-1.0_for_pddl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_pddl-1.0_for_pddl-1.0.RULE index ab47e30f4ca..1706ae27036 100644 --- a/src/licensedcode/data/rules/spdx_license_id_pddl-1.0_for_pddl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_pddl-1.0_for_pddl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: pddl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + pddl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_pddl-1.0_for_pddl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_pddl-1.0_for_pddl-1.0.yml deleted file mode 100644 index 8df6cac61bb..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_pddl-1.0_for_pddl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: pddl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_qpl-1.0_for_qpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_qpl-1.0_for_qpl-1.0.RULE index e1c85b13c6e..36fe8f0b258 100644 --- a/src/licensedcode/data/rules/spdx_license_id_qpl-1.0_for_qpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_qpl-1.0_for_qpl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: qpl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + qpl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_qpl-1.0_for_qpl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_qpl-1.0_for_qpl-1.0.yml deleted file mode 100644 index 97c9ab6c46e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_qpl-1.0_for_qpl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qpl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_qwt-exception-1.0_for_qwt-exception-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_qwt-exception-1.0_for_qwt-exception-1.0.RULE index 69b8694da41..8a9e5e2eca2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_qwt-exception-1.0_for_qwt-exception-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_qwt-exception-1.0_for_qwt-exception-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: qwt-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + qwt-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_qwt-exception-1.0_for_qwt-exception-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_qwt-exception-1.0_for_qwt-exception-1.0.yml deleted file mode 100644 index ba38595df46..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_qwt-exception-1.0_for_qwt-exception-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: qwt-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_rhecos-1.1_for_ecosrh-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_rhecos-1.1_for_ecosrh-1.1.RULE index 219f2ef705d..460dbcd5a61 100644 --- a/src/licensedcode/data/rules/spdx_license_id_rhecos-1.1_for_ecosrh-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_rhecos-1.1_for_ecosrh-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: ecosrh-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + rhecos-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_rhecos-1.1_for_ecosrh-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_rhecos-1.1_for_ecosrh-1.1.yml deleted file mode 100644 index e6b64234144..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_rhecos-1.1_for_ecosrh-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ecosrh-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_rpl-1.1_for_rpl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_rpl-1.1_for_rpl-1.1.RULE index 07a8f0905c7..d5873c8b22e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_rpl-1.1_for_rpl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_rpl-1.1_for_rpl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + rpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_rpl-1.1_for_rpl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_rpl-1.1_for_rpl-1.1.yml deleted file mode 100644 index 87b549314e8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_rpl-1.1_for_rpl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_rpl-1.5_for_rpl-1.5.RULE b/src/licensedcode/data/rules/spdx_license_id_rpl-1.5_for_rpl-1.5.RULE index 58773a20494..f622cf39b09 100644 --- a/src/licensedcode/data/rules/spdx_license_id_rpl-1.5_for_rpl-1.5.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_rpl-1.5_for_rpl-1.5.RULE @@ -1 +1,10 @@ +--- +license_expression: rpl-1.5 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + rpl-1.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_rpl-1.5_for_rpl-1.5.yml b/src/licensedcode/data/rules/spdx_license_id_rpl-1.5_for_rpl-1.5.yml deleted file mode 100644 index 509e9bb505c..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_rpl-1.5_for_rpl-1.5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpl-1.5 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_rpsl-1.0_for_rpsl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_rpsl-1.0_for_rpsl-1.0.RULE index 1d6ef7e46cb..ba189586f35 100644 --- a/src/licensedcode/data/rules/spdx_license_id_rpsl-1.0_for_rpsl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_rpsl-1.0_for_rpsl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: rpsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + rpsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_rpsl-1.0_for_rpsl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_rpsl-1.0_for_rpsl-1.0.yml deleted file mode 100644 index 5bc3ed82e59..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_rpsl-1.0_for_rpsl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: rpsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_sax-pd_for_sax-pd.RULE b/src/licensedcode/data/rules/spdx_license_id_sax-pd_for_sax-pd.RULE index fbb2091da8f..147c7cbd635 100644 --- a/src/licensedcode/data/rules/spdx_license_id_sax-pd_for_sax-pd.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_sax-pd_for_sax-pd.RULE @@ -1 +1,10 @@ +--- +license_expression: sax-pd +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + sax-pd \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_sax-pd_for_sax-pd.yml b/src/licensedcode/data/rules/spdx_license_id_sax-pd_for_sax-pd.yml deleted file mode 100644 index 5702f3989e1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_sax-pd_for_sax-pd.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sax-pd -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.0_for_sgi-fslb-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.0_for_sgi-fslb-1.0.RULE index 180e2b5bc32..029ae3e0032 100644 --- a/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.0_for_sgi-fslb-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.0_for_sgi-fslb-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-fslb-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + sgi-b-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.0_for_sgi-fslb-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.0_for_sgi-fslb-1.0.yml deleted file mode 100644 index 08b379b1854..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.0_for_sgi-fslb-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-fslb-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.1_for_sgi-freeb-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.1_for_sgi-freeb-1.1.RULE index cd778e695e4..f152bbf0a62 100644 --- a/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.1_for_sgi-freeb-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.1_for_sgi-freeb-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + sgi-b-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.1_for_sgi-freeb-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.1_for_sgi-freeb-1.1.yml deleted file mode 100644 index 704c516955e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_sgi-b-1.1_for_sgi-freeb-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_sgi-b-2.0_for_sgi-freeb-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_sgi-b-2.0_for_sgi-freeb-2.0.RULE index 4129a3e82f1..439d716f2a8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_sgi-b-2.0_for_sgi-freeb-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_sgi-b-2.0_for_sgi-freeb-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: sgi-freeb-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + sgi-b-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_sgi-b-2.0_for_sgi-freeb-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_sgi-b-2.0_for_sgi-freeb-2.0.yml deleted file mode 100644 index 2970e6f278e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_sgi-b-2.0_for_sgi-freeb-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sgi-freeb-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_simpl-2.0_for_simpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_simpl-2.0_for_simpl-2.0.RULE index 2f790999801..abf3a979363 100644 --- a/src/licensedcode/data/rules/spdx_license_id_simpl-2.0_for_simpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_simpl-2.0_for_simpl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: simpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + simpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_simpl-2.0_for_simpl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_simpl-2.0_for_simpl-2.0.yml deleted file mode 100644 index c0d44a00f51..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_simpl-2.0_for_simpl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: simpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_sissl-1.2_for_sun-sissl-1.2.RULE b/src/licensedcode/data/rules/spdx_license_id_sissl-1.2_for_sun-sissl-1.2.RULE index 1fa2f9255b7..61a5aac3770 100644 --- a/src/licensedcode/data/rules/spdx_license_id_sissl-1.2_for_sun-sissl-1.2.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_sissl-1.2_for_sun-sissl-1.2.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + sissl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_sissl-1.2_for_sun-sissl-1.2.yml b/src/licensedcode/data/rules/spdx_license_id_sissl-1.2_for_sun-sissl-1.2.yml deleted file mode 100644 index 3fc341a9e42..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_sissl-1.2_for_sun-sissl-1.2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_sissl_for_sun-sissl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_sissl_for_sun-sissl-1.1.RULE index 50d039ce83e..c90ecddaf15 100644 --- a/src/licensedcode/data/rules/spdx_license_id_sissl_for_sun-sissl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_sissl_for_sun-sissl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + sissl \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_sissl_for_sun-sissl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_sissl_for_sun-sissl-1.1.yml deleted file mode 100644 index 8d857eba3a8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_sissl_for_sun-sissl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_spencer-86_for_regexp.RULE b/src/licensedcode/data/rules/spdx_license_id_spencer-86_for_regexp.RULE index 9b901809c5e..29bb199d9f7 100644 --- a/src/licensedcode/data/rules/spdx_license_id_spencer-86_for_regexp.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_spencer-86_for_regexp.RULE @@ -1 +1,10 @@ +--- +license_expression: regexp +is_license_reference: yes +is_continuous: yes +relevance: 95 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + spencer-86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_spencer-86_for_regexp.yml b/src/licensedcode/data/rules/spdx_license_id_spencer-86_for_regexp.yml deleted file mode 100644 index f2c29c6d05f..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_spencer-86_for_regexp.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: regexp -is_license_reference: yes -is_continuous: yes -relevance: 95 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_spencer-94_for_hs-regexp.RULE b/src/licensedcode/data/rules/spdx_license_id_spencer-94_for_hs-regexp.RULE index ae8210a1515..dae344c0e09 100644 --- a/src/licensedcode/data/rules/spdx_license_id_spencer-94_for_hs-regexp.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_spencer-94_for_hs-regexp.RULE @@ -1 +1,10 @@ +--- +license_expression: hs-regexp +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + spencer-94 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_spencer-94_for_hs-regexp.yml b/src/licensedcode/data/rules/spdx_license_id_spencer-94_for_hs-regexp.yml deleted file mode 100644 index 90198dedf06..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_spencer-94_for_hs-regexp.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: hs-regexp -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_spencer-99_for_henry-spencer-1999.RULE b/src/licensedcode/data/rules/spdx_license_id_spencer-99_for_henry-spencer-1999.RULE index b6c563ccd0d..ab72eb7063f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_spencer-99_for_henry-spencer-1999.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_spencer-99_for_henry-spencer-1999.RULE @@ -1 +1,10 @@ +--- +license_expression: henry-spencer-1999 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + spencer-99 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_spencer-99_for_henry-spencer-1999.yml b/src/licensedcode/data/rules/spdx_license_id_spencer-99_for_henry-spencer-1999.yml deleted file mode 100644 index b90bf73f5cf..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_spencer-99_for_henry-spencer-1999.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: henry-spencer-1999 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_spl-1.0_for_spl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_spl-1.0_for_spl-1.0.RULE index e3af6547d9e..e5b1b7020e6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_spl-1.0_for_spl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_spl-1.0_for_spl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + spl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_spl-1.0_for_spl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_spl-1.0_for_spl-1.0.yml deleted file mode 100644 index ebd3fb08fa7..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_spl-1.0_for_spl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_sugarcrm-1.1.3_for_sugarcrm-1.1.3.RULE b/src/licensedcode/data/rules/spdx_license_id_sugarcrm-1.1.3_for_sugarcrm-1.1.3.RULE index 015f1da84a9..ea7bc760a42 100644 --- a/src/licensedcode/data/rules/spdx_license_id_sugarcrm-1.1.3_for_sugarcrm-1.1.3.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_sugarcrm-1.1.3_for_sugarcrm-1.1.3.RULE @@ -1 +1,10 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + sugarcrm-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_sugarcrm-1.1.3_for_sugarcrm-1.1.3.yml b/src/licensedcode/data/rules/spdx_license_id_sugarcrm-1.1.3_for_sugarcrm-1.1.3.yml deleted file mode 100644 index 63568c312f0..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_sugarcrm-1.1.3_for_sugarcrm-1.1.3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_torque-1.1_for_torque-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_torque-1.1_for_torque-1.1.RULE index 48e29557636..80a3fef70f5 100644 --- a/src/licensedcode/data/rules/spdx_license_id_torque-1.1_for_torque-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_torque-1.1_for_torque-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + torque-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_torque-1.1_for_torque-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_torque-1.1_for_torque-1.1.yml deleted file mode 100644 index b9b365ff6c8..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_torque-1.1_for_torque-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_u-boot-exception-2.0_for_u-boot-exception-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_u-boot-exception-2.0_for_u-boot-exception-2.0.RULE index f27596d01ca..6dc47df14fd 100644 --- a/src/licensedcode/data/rules/spdx_license_id_u-boot-exception-2.0_for_u-boot-exception-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_u-boot-exception-2.0_for_u-boot-exception-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_u-boot-exception-2.0_for_u-boot-exception-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_u-boot-exception-2.0_for_u-boot-exception-2.0.yml deleted file mode 100644 index eca72283dbb..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_u-boot-exception-2.0_for_u-boot-exception-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.RULE b/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.RULE index 489159ac3a2..15ec406313a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + unicode-dfs-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.yml b/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.yml deleted file mode 100644 index 6f112bbab59..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2015_for_unicode-dfs-2015.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2016_for_unicode-dfs-2016.RULE b/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2016_for_unicode-dfs-2016.RULE index c296b5bfc44..ebe2059d8c6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2016_for_unicode-dfs-2016.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2016_for_unicode-dfs-2016.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + unicode-dfs-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2016_for_unicode-dfs-2016.yml b/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2016_for_unicode-dfs-2016.yml deleted file mode 100644 index 12f127ee337..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_unicode-dfs-2016_for_unicode-dfs-2016.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_unicode-tou_for_unicode-tou.RULE b/src/licensedcode/data/rules/spdx_license_id_unicode-tou_for_unicode-tou.RULE index 51e93d2c774..a1ac7f728a6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_unicode-tou_for_unicode-tou.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_unicode-tou_for_unicode-tou.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + unicode-tou \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_unicode-tou_for_unicode-tou.yml b/src/licensedcode/data/rules/spdx_license_id_unicode-tou_for_unicode-tou.yml deleted file mode 100644 index f485c35da46..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_unicode-tou_for_unicode-tou.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_unlicense_for_unlicense.RULE b/src/licensedcode/data/rules/spdx_license_id_unlicense_for_unlicense.RULE index 634d60d40e5..e995ee3ee67 100644 --- a/src/licensedcode/data/rules/spdx_license_id_unlicense_for_unlicense.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_unlicense_for_unlicense.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_unlicense_for_unlicense.yml b/src/licensedcode/data/rules/spdx_license_id_unlicense_for_unlicense.yml deleted file mode 100644 index 334c271c093..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_unlicense_for_unlicense.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_upl-1.0_for_upl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_upl-1.0_for_upl-1.0.RULE index 331c369a500..ebcd99337e8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_upl-1.0_for_upl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_upl-1.0_for_upl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + upl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_upl-1.0_for_upl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_upl-1.0_for_upl-1.0.yml deleted file mode 100644 index d8b984148ae..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_upl-1.0_for_upl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_vsl-1.0_for_vsl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_vsl-1.0_for_vsl-1.0.RULE index 4564ffbda8e..9ab70ed2319 100644 --- a/src/licensedcode/data/rules/spdx_license_id_vsl-1.0_for_vsl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_vsl-1.0_for_vsl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + vsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_vsl-1.0_for_vsl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_vsl-1.0_for_vsl-1.0.yml deleted file mode 100644 index f7a41d2bf66..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_vsl-1.0_for_vsl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_w3c-19980720_for_w3c-software-19980720.RULE b/src/licensedcode/data/rules/spdx_license_id_w3c-19980720_for_w3c-software-19980720.RULE index 095f4d87981..1a1a580e216 100644 --- a/src/licensedcode/data/rules/spdx_license_id_w3c-19980720_for_w3c-software-19980720.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_w3c-19980720_for_w3c-software-19980720.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + w3c-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_w3c-19980720_for_w3c-software-19980720.yml b/src/licensedcode/data/rules/spdx_license_id_w3c-19980720_for_w3c-software-19980720.yml deleted file mode 100644 index 6a2f6a7ddf9..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_w3c-19980720_for_w3c-software-19980720.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_w3c-20150513_for_w3c-software-doc-20150513.RULE b/src/licensedcode/data/rules/spdx_license_id_w3c-20150513_for_w3c-software-doc-20150513.RULE index 5736a4ace46..bd3228346b9 100644 --- a/src/licensedcode/data/rules/spdx_license_id_w3c-20150513_for_w3c-software-doc-20150513.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_w3c-20150513_for_w3c-software-doc-20150513.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + w3c-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_w3c-20150513_for_w3c-software-doc-20150513.yml b/src/licensedcode/data/rules/spdx_license_id_w3c-20150513_for_w3c-software-doc-20150513.yml deleted file mode 100644 index c91a1b06557..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_w3c-20150513_for_w3c-software-doc-20150513.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_watcom-1.0_for_sybase.RULE b/src/licensedcode/data/rules/spdx_license_id_watcom-1.0_for_sybase.RULE index fa5d10c6c37..9eaeb513081 100644 --- a/src/licensedcode/data/rules/spdx_license_id_watcom-1.0_for_sybase.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_watcom-1.0_for_sybase.RULE @@ -1 +1,10 @@ +--- +license_expression: sybase +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_watcom-1.0_for_sybase.yml b/src/licensedcode/data/rules/spdx_license_id_watcom-1.0_for_sybase.yml deleted file mode 100644 index 558f610303e..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_watcom-1.0_for_sybase.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sybase -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_wtfpl_for_wtfpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_wtfpl_for_wtfpl-2.0.RULE index 4aceda7e4a9..0ccd1b9506b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_wtfpl_for_wtfpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_wtfpl_for_wtfpl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + wtfpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_wtfpl_for_wtfpl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_wtfpl_for_wtfpl-2.0.yml deleted file mode 100644 index 8e8bde05acb..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_wtfpl_for_wtfpl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_wxwindows-exception-3.1_for_wxwindows-exception-3.1.RULE b/src/licensedcode/data/rules/spdx_license_id_wxwindows-exception-3.1_for_wxwindows-exception-3.1.RULE index bc4c2c79976..a519756a278 100644 --- a/src/licensedcode/data/rules/spdx_license_id_wxwindows-exception-3.1_for_wxwindows-exception-3.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_wxwindows-exception-3.1_for_wxwindows-exception-3.1.RULE @@ -1 +1,10 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + wxwindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_wxwindows-exception-3.1_for_wxwindows-exception-3.1.yml b/src/licensedcode/data/rules/spdx_license_id_wxwindows-exception-3.1_for_wxwindows-exception-3.1.yml deleted file mode 100644 index 5e8773833f1..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_wxwindows-exception-3.1_for_wxwindows-exception-3.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_xfree86-1.1_for_xfree86-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_xfree86-1.1_for_xfree86-1.1.RULE index 459842862dc..ee6ec9bc925 100644 --- a/src/licensedcode/data/rules/spdx_license_id_xfree86-1.1_for_xfree86-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_xfree86-1.1_for_xfree86-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + xfree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_xfree86-1.1_for_xfree86-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_xfree86-1.1_for_xfree86-1.1.yml deleted file mode 100644 index f099d5ddc80..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_xfree86-1.1_for_xfree86-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ypl-1.0_for_ypl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_ypl-1.0_for_ypl-1.0.RULE index 9e70e03a437..7595d95fab6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ypl-1.0_for_ypl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ypl-1.0_for_ypl-1.0.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ypl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ypl-1.0_for_ypl-1.0.yml b/src/licensedcode/data/rules/spdx_license_id_ypl-1.0_for_ypl-1.0.yml deleted file mode 100644 index 587897ef328..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ypl-1.0_for_ypl-1.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_ypl-1.1_for_ypl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_ypl-1.1_for_ypl-1.1.RULE index 26ea5827331..52bc06bc033 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ypl-1.1_for_ypl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ypl-1.1_for_ypl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + ypl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_ypl-1.1_for_ypl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_ypl-1.1_for_ypl-1.1.yml deleted file mode 100644 index ed95b196c7a..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_ypl-1.1_for_ypl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_zlib-acknowledgement_for_zlib-acknowledgement.RULE b/src/licensedcode/data/rules/spdx_license_id_zlib-acknowledgement_for_zlib-acknowledgement.RULE index 88ef7f6a028..af20736bbb8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_zlib-acknowledgement_for_zlib-acknowledgement.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_zlib-acknowledgement_for_zlib-acknowledgement.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_zlib-acknowledgement_for_zlib-acknowledgement.yml b/src/licensedcode/data/rules/spdx_license_id_zlib-acknowledgement_for_zlib-acknowledgement.yml deleted file mode 100644 index 1bbe0394326..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_zlib-acknowledgement_for_zlib-acknowledgement.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_zpl-1.1_for_zpl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_zpl-1.1_for_zpl-1.1.RULE index 47ba0c6426d..0da694bdfc8 100644 --- a/src/licensedcode/data/rules/spdx_license_id_zpl-1.1_for_zpl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_zpl-1.1_for_zpl-1.1.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + zpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_zpl-1.1_for_zpl-1.1.yml b/src/licensedcode/data/rules/spdx_license_id_zpl-1.1_for_zpl-1.1.yml deleted file mode 100644 index 778a9be6a26..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_zpl-1.1_for_zpl-1.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_zpl-2.0_for_zpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_zpl-2.0_for_zpl-2.0.RULE index 8a113c6fde4..62c61acf5b5 100644 --- a/src/licensedcode/data/rules/spdx_license_id_zpl-2.0_for_zpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_zpl-2.0_for_zpl-2.0.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + zpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_zpl-2.0_for_zpl-2.0.yml b/src/licensedcode/data/rules/spdx_license_id_zpl-2.0_for_zpl-2.0.yml deleted file mode 100644 index 7bc7b11e00a..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_zpl-2.0_for_zpl-2.0.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/spdx_license_id_zpl-2.1_for_zpl-2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_zpl-2.1_for_zpl-2.1.RULE index abff3b30a3d..eea62d4f9e2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_zpl-2.1_for_zpl-2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_zpl-2.1_for_zpl-2.1.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 50 +minimum_coverage: 100 +notes: Used to detect a bare SPDX license id +--- + zpl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_zpl-2.1_for_zpl-2.1.yml b/src/licensedcode/data/rules/spdx_license_id_zpl-2.1_for_zpl-2.1.yml deleted file mode 100644 index 29e2de4cf35..00000000000 --- a/src/licensedcode/data/rules/spdx_license_id_zpl-2.1_for_zpl-2.1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 50 -minimum_coverage: 100 -notes: Used to detect a bare SPDX license id diff --git a/src/licensedcode/data/rules/speechworks-1.1.RULE b/src/licensedcode/data/rules/speechworks-1.1.RULE index e9d538fa8c1..1f50f0dc061 100644 --- a/src/licensedcode/data/rules/speechworks-1.1.RULE +++ b/src/licensedcode/data/rules/speechworks-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: speechworks-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt +--- + http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/speechworks-1.1.yml b/src/licensedcode/data/rules/speechworks-1.1.yml deleted file mode 100644 index 90e0146f405..00000000000 --- a/src/licensedcode/data/rules/speechworks-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: speechworks-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.speech.cs.cmu.edu/openvxi/OpenVXI_1_4/License.txt diff --git a/src/licensedcode/data/rules/spell-checker-exception-lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/spell-checker-exception-lgpl-2.1-plus_1.RULE index cf15089556e..dc97ed99c2e 100644 --- a/src/licensedcode/data/rules/spell-checker-exception-lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/spell-checker-exception-lgpl-2.1-plus_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: lgpl-2.1-plus WITH spell-checker-exception-lgpl-2.1-plus +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either @@ -18,4 +23,4 @@ respects for all of the code used other than said providers. If you modify this file, you may extend this exception to your version of the file, but you are not obligated to do so. If you do not wish to - do so, delete this exception statement from your version. + do so, delete this exception statement from your version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/spell-checker-exception-lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/spell-checker-exception-lgpl-2.1-plus_1.yml deleted file mode 100644 index b1dec12f8f3..00000000000 --- a/src/licensedcode/data/rules/spell-checker-exception-lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.1-plus WITH spell-checker-exception-lgpl-2.1-plus -is_license_notice: yes diff --git a/src/licensedcode/data/rules/spl-1.0.RULE b/src/licensedcode/data/rules/spl-1.0.RULE index 803082feb00..daa26d0418a 100644 --- a/src/licensedcode/data/rules/spl-1.0.RULE +++ b/src/licensedcode/data/rules/spl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/sunpublic.php +--- + http://opensource.org/licenses/sunpublic.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0.SPDX.RULE b/src/licensedcode/data/rules/spl-1.0.SPDX.RULE index aad0bc6dbc7..ae9616ed4f5 100644 --- a/src/licensedcode/data/rules/spl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/spl-1.0.SPDX.RULE @@ -1,3 +1,12 @@ +--- +license_expression: spl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://www.sun.com/ +--- + SUN PUBLIC LICENSE Version 1.0 1. Definitions. diff --git a/src/licensedcode/data/rules/spl-1.0.SPDX.yml b/src/licensedcode/data/rules/spl-1.0.SPDX.yml deleted file mode 100644 index 6b2ec681e81..00000000000 --- a/src/licensedcode/data/rules/spl-1.0.SPDX.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://www.sun.com/ diff --git a/src/licensedcode/data/rules/spl-1.0.yml b/src/licensedcode/data/rules/spl-1.0.yml deleted file mode 100644 index fcd4bc7ea6f..00000000000 --- a/src/licensedcode/data/rules/spl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/sunpublic.php diff --git a/src/licensedcode/data/rules/spl-1.0_1.RULE b/src/licensedcode/data/rules/spl-1.0_1.RULE index 4edb3588a4e..f3d381e8493 100644 --- a/src/licensedcode/data/rules/spl-1.0_1.RULE +++ b/src/licensedcode/data/rules/spl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.netbeans.org/kb/faqs/license.html +--- + http://www.netbeans.org/kb/faqs/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_1.yml b/src/licensedcode/data/rules/spl-1.0_1.yml deleted file mode 100644 index 425d6b2ba0f..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.netbeans.org/kb/faqs/license.html diff --git a/src/licensedcode/data/rules/spl-1.0_10.RULE b/src/licensedcode/data/rules/spl-1.0_10.RULE index 92e41e3bc90..457f322fc68 100644 --- a/src/licensedcode/data/rules/spl-1.0_10.RULE +++ b/src/licensedcode/data/rules/spl-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.beanshell.org/license.html +--- + Licensed under the Sun Public License: http://www.beanshell.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_10.yml b/src/licensedcode/data/rules/spl-1.0_10.yml deleted file mode 100644 index bfcb440e0a9..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.beanshell.org/license.html diff --git a/src/licensedcode/data/rules/spl-1.0_11.RULE b/src/licensedcode/data/rules/spl-1.0_11.RULE index cfdf017b8e4..aba8070ecfd 100644 --- a/src/licensedcode/data/rules/spl-1.0_11.RULE +++ b/src/licensedcode/data/rules/spl-1.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sun Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_11.yml b/src/licensedcode/data/rules/spl-1.0_11.yml deleted file mode 100644 index 5b28211b3c5..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/spl-1.0_12.RULE b/src/licensedcode/data/rules/spl-1.0_12.RULE index 52ad5580e81..881e7b8ac53 100644 --- a/src/licensedcode/data/rules/spl-1.0_12.RULE +++ b/src/licensedcode/data/rules/spl-1.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Sun Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_12.yml b/src/licensedcode/data/rules/spl-1.0_12.yml deleted file mode 100644 index 5b28211b3c5..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/spl-1.0_13.RULE b/src/licensedcode/data/rules/spl-1.0_13.RULE index 8a6e45efce2..11acb458167 100644 --- a/src/licensedcode/data/rules/spl-1.0_13.RULE +++ b/src/licensedcode/data/rules/spl-1.0_13.RULE @@ -1 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SPL-1.0 Sun Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_13.yml b/src/licensedcode/data/rules/spl-1.0_13.yml deleted file mode 100644 index 5b28211b3c5..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/spl-1.0_14.RULE b/src/licensedcode/data/rules/spl-1.0_14.RULE index 71acdf60d81..f9049b71c0c 100644 --- a/src/licensedcode/data/rules/spl-1.0_14.RULE +++ b/src/licensedcode/data/rules/spl-1.0_14.RULE @@ -1 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sun Public License v1.0 SPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_14.yml b/src/licensedcode/data/rules/spl-1.0_14.yml deleted file mode 100644 index 5b28211b3c5..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/spl-1.0_15.RULE b/src/licensedcode/data/rules/spl-1.0_15.RULE index cc43b153898..60c2a616d10 100644 --- a/src/licensedcode/data/rules/spl-1.0_15.RULE +++ b/src/licensedcode/data/rules/spl-1.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_15.yml b/src/licensedcode/data/rules/spl-1.0_15.yml deleted file mode 100644 index d746cbc2f00..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/spl-1.0_16.RULE b/src/licensedcode/data/rules/spl-1.0_16.RULE index 6d80a4a947e..a3799bd4143 100644 --- a/src/licensedcode/data/rules/spl-1.0_16.RULE +++ b/src/licensedcode/data/rules/spl-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sun Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_16.yml b/src/licensedcode/data/rules/spl-1.0_16.yml deleted file mode 100644 index d746cbc2f00..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/spl-1.0_17.RULE b/src/licensedcode/data/rules/spl-1.0_17.RULE index 4cc56c2a042..e1dcf58f186 100644 --- a/src/licensedcode/data/rules/spl-1.0_17.RULE +++ b/src/licensedcode/data/rules/spl-1.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_17.yml b/src/licensedcode/data/rules/spl-1.0_17.yml deleted file mode 100644 index d746cbc2f00..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/spl-1.0_18.RULE b/src/licensedcode/data/rules/spl-1.0_18.RULE index bcdef7a841b..2f2a80b7763 100644 --- a/src/licensedcode/data/rules/spl-1.0_18.RULE +++ b/src/licensedcode/data/rules/spl-1.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Sun_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_18.yml b/src/licensedcode/data/rules/spl-1.0_18.yml deleted file mode 100644 index d41478efda0..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/spl-1.0_19.RULE b/src/licensedcode/data/rules/spl-1.0_19.RULE index 88799f64fe9..692c2911127 100644 --- a/src/licensedcode/data/rules/spl-1.0_19.RULE +++ b/src/licensedcode/data/rules/spl-1.0_19.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SPL-1.0 +--- + https://licenses.nuget.org/SPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_19.yml b/src/licensedcode/data/rules/spl-1.0_19.yml deleted file mode 100644 index daf200c54b0..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SPL-1.0 diff --git a/src/licensedcode/data/rules/spl-1.0_2.RULE b/src/licensedcode/data/rules/spl-1.0_2.RULE index cb2a1156b70..3dcb14edad7 100644 --- a/src/licensedcode/data/rules/spl-1.0_2.RULE +++ b/src/licensedcode/data/rules/spl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://fedoraproject.org/wiki/Licensing/Sun_Public_License +--- + https://fedoraproject.org/wiki/Licensing/Sun_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_2.yml b/src/licensedcode/data/rules/spl-1.0_2.yml deleted file mode 100644 index a1dc0041c16..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://fedoraproject.org/wiki/Licensing/Sun_Public_License diff --git a/src/licensedcode/data/rules/spl-1.0_20.RULE b/src/licensedcode/data/rules/spl-1.0_20.RULE index f37c0742eee..5faa40e1836 100644 --- a/src/licensedcode/data/rules/spl-1.0_20.RULE +++ b/src/licensedcode/data/rules/spl-1.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_20.yml b/src/licensedcode/data/rules/spl-1.0_20.yml deleted file mode 100644 index d41478efda0..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/spl-1.0_21.RULE b/src/licensedcode/data/rules/spl-1.0_21.RULE index d1f510d2de3..5c352c7f8fd 100644 --- a/src/licensedcode/data/rules/spl-1.0_21.RULE +++ b/src/licensedcode/data/rules/spl-1.0_21.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SPL-1.0 +--- + {{SPL-1.0}} https://spdx.org/licenses/SPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_21.yml b/src/licensedcode/data/rules/spl-1.0_21.yml deleted file mode 100644 index d5ef2f43371..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SPL-1.0 diff --git a/src/licensedcode/data/rules/spl-1.0_22.RULE b/src/licensedcode/data/rules/spl-1.0_22.RULE index 99542c02d36..36e6efdb3fd 100644 --- a/src/licensedcode/data/rules/spl-1.0_22.RULE +++ b/src/licensedcode/data/rules/spl-1.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SPL-1.0 +--- + LICENSE {{SPL-1.0}} https://spdx.org/licenses/SPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_22.yml b/src/licensedcode/data/rules/spl-1.0_22.yml deleted file mode 100644 index d5ef2f43371..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SPL-1.0 diff --git a/src/licensedcode/data/rules/spl-1.0_3.RULE b/src/licensedcode/data/rules/spl-1.0_3.RULE index 2ba73aef429..c80683c4b5d 100644 --- a/src/licensedcode/data/rules/spl-1.0_3.RULE +++ b/src/licensedcode/data/rules/spl-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: spl-1.0 +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.sun.com/ +--- + The contents of this file are subject to the Sun Public License Version 1.0 (the License); you may not use this file except in compliance with the License. A copy of the License is available at http://www.sun.com/ The Original Code is . The Initial Developer of the Original Code is . Portions created by are Copyright (C) . All Rights Reserved. Contributor(s): . Alternatively, the contents of this file may be used under the terms of the license (the ?[ ] License?), in which case the provisions of [ ] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [ ] License and not to allow others to use your version of this file under the SPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [ ] License. If you do not delete the provisions above, a recipient may use your version of this file under either the SPL or the [ ] License. diff --git a/src/licensedcode/data/rules/spl-1.0_3.yml b/src/licensedcode/data/rules/spl-1.0_3.yml deleted file mode 100644 index 91be60a7660..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.sun.com/ diff --git a/src/licensedcode/data/rules/spl-1.0_4.RULE b/src/licensedcode/data/rules/spl-1.0_4.RULE index 3ebb10b5730..03dda190d4c 100644 --- a/src/licensedcode/data/rules/spl-1.0_4.RULE +++ b/src/licensedcode/data/rules/spl-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.netbeans.org/about/legal/spl.html +--- + http://www.netbeans.org/about/legal/spl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_4.yml b/src/licensedcode/data/rules/spl-1.0_4.yml deleted file mode 100644 index a7f9965c4b2..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.netbeans.org/about/legal/spl.html diff --git a/src/licensedcode/data/rules/spl-1.0_5.RULE b/src/licensedcode/data/rules/spl-1.0_5.RULE index ac4a8f149e0..12852147d6a 100644 --- a/src/licensedcode/data/rules/spl-1.0_5.RULE +++ b/src/licensedcode/data/rules/spl-1.0_5.RULE @@ -1 +1,9 @@ -http://java.sun.com/spl.html +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://java.sun.com/spl.html +--- + +http://java.sun.com/spl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_5.yml b/src/licensedcode/data/rules/spl-1.0_5.yml deleted file mode 100644 index f097becdbf7..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://java.sun.com/spl.html diff --git a/src/licensedcode/data/rules/spl-1.0_6.RULE b/src/licensedcode/data/rules/spl-1.0_6.RULE index e0935fce412..c6e0e245bc2 100644 --- a/src/licensedcode/data/rules/spl-1.0_6.RULE +++ b/src/licensedcode/data/rules/spl-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +--- + Sun Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_6.yml b/src/licensedcode/data/rules/spl-1.0_6.yml deleted file mode 100644 index d41478efda0..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/spl-1.0_7.RULE b/src/licensedcode/data/rules/spl-1.0_7.RULE index f69c844bf5d..e8b462deaa0 100644 --- a/src/licensedcode/data/rules/spl-1.0_7.RULE +++ b/src/licensedcode/data/rules/spl-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/sunpublic.php +--- + http://www.opensource.org/licenses/sunpublic.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_7.yml b/src/licensedcode/data/rules/spl-1.0_7.yml deleted file mode 100644 index 0697a1ae35e..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/sunpublic.php diff --git a/src/licensedcode/data/rules/spl-1.0_8.RULE b/src/licensedcode/data/rules/spl-1.0_8.RULE index 5c5f8228bee..ce62f021bfc 100644 --- a/src/licensedcode/data/rules/spl-1.0_8.RULE +++ b/src/licensedcode/data/rules/spl-1.0_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: spl-1.0 +is_license_text: yes +ignorable_urls: + - http://www.sun.com/ +--- + License: SPL SUN PUBLIC LICENSE Version 1.0 @@ -469,4 +476,4 @@ License: SPL [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] \ No newline at end of file + Original Code Source Code for Your Modifications.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_8.yml b/src/licensedcode/data/rules/spl-1.0_8.yml deleted file mode 100644 index 416012d7e0d..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: spl-1.0 -is_license_text: yes -ignorable_urls: - - http://www.sun.com/ diff --git a/src/licensedcode/data/rules/spl-1.0_9.RULE b/src/licensedcode/data/rules/spl-1.0_9.RULE index 3053f40c485..0fe27e07960 100644 --- a/src/licensedcode/data/rules/spl-1.0_9.RULE +++ b/src/licensedcode/data/rules/spl-1.0_9.RULE @@ -1 +1,7 @@ -License: SPL +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 99 +--- + +License: SPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_9.yml b/src/licensedcode/data/rules/spl-1.0_9.yml deleted file mode 100644 index 7356c0e2454..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_1.RULE index 114ed57af30..739b9b89b2c 100644 --- a/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: spl-1.0 OR lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +notes: this is found in Beanshell +ignorable_urls: + - http://www.sun.com/ +--- + * Sun Public License Notice: * * * * The contents of this file are subject to the Sun Public License Version * @@ -17,4 +26,4 @@ * indicate your decision by deleting the provisions above and replace * * them with the notice and other provisions required by the LGPL. If you * * do not delete the provisions above, a recipient may use your version of * - * this file under either the SPL or the LGPL. * + * this file under either the SPL or the LGPL. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_1.yml b/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_1.yml deleted file mode 100644 index 0370e420de2..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: spl-1.0 OR lgpl-2.1-plus -is_license_notice: yes -relevance: 100 -notes: this is found in Beanshell -ignorable_urls: - - http://www.sun.com/ diff --git a/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_2.RULE index a94cebe3727..f68edf3523f 100644 --- a/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: spl-1.0 OR lgpl-2.1 +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +notes: this is very specific to Beanshell +--- + * * * GNU Public License Notice: * * * @@ -9,4 +17,4 @@ * indicate your decision by deleting the provisions above and replace * * them with the notice and other provisions required by the LGPL. If you * * do not delete the provisions above, a recipient may use your version of * - * this file under either the SPL or the LGPL. * + * this file under either the SPL or the LGPL. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_2.yml b/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_2.yml deleted file mode 100644 index 8d0308368eb..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_or_lgpl-2.1-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 OR lgpl-2.1 -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -notes: this is very specific to Beanshell diff --git a/src/licensedcode/data/rules/spl-1.0_url_1.RULE b/src/licensedcode/data/rules/spl-1.0_url_1.RULE index 416cef17c96..e0294a051bd 100644 --- a/src/licensedcode/data/rules/spl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/spl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/spl-1.0 +--- + https://spdx.org/licenses/spl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_url_1.yml b/src/licensedcode/data/rules/spl-1.0_url_1.yml deleted file mode 100644 index 36e49c0ddb8..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/spl-1.0 diff --git a/src/licensedcode/data/rules/spl-1.0_url_2.RULE b/src/licensedcode/data/rules/spl-1.0_url_2.RULE index 3068e4ea07f..861365f36ff 100644 --- a/src/licensedcode/data/rules/spl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/spl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/spl-1.0.html +--- + https://spdx.org/licenses/spl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_url_2.yml b/src/licensedcode/data/rules/spl-1.0_url_2.yml deleted file mode 100644 index d29156063f1..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/spl-1.0.html diff --git a/src/licensedcode/data/rules/spl-1.0_url_glc_234.RULE b/src/licensedcode/data/rules/spl-1.0_url_glc_234.RULE index 39d02e00aa5..76a2eb650f1 100644 --- a/src/licensedcode/data/rules/spl-1.0_url_glc_234.RULE +++ b/src/licensedcode/data/rules/spl-1.0_url_glc_234.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/spl-1.0 +--- + http://www.opensource.org/licenses/spl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_url_glc_234.yml b/src/licensedcode/data/rules/spl-1.0_url_glc_234.yml deleted file mode 100644 index f18dde391bf..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_url_glc_234.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/spl-1.0 diff --git a/src/licensedcode/data/rules/spl-1.0_url_glc_235.RULE b/src/licensedcode/data/rules/spl-1.0_url_glc_235.RULE index f12e3b4554d..6f0783db77d 100644 --- a/src/licensedcode/data/rules/spl-1.0_url_glc_235.RULE +++ b/src/licensedcode/data/rules/spl-1.0_url_glc_235.RULE @@ -1 +1,9 @@ +--- +license_expression: spl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/spl-1.0 +--- + https://www.opensource.org/licenses/spl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spl-1.0_url_glc_235.yml b/src/licensedcode/data/rules/spl-1.0_url_glc_235.yml deleted file mode 100644 index 4678fd80c30..00000000000 --- a/src/licensedcode/data/rules/spl-1.0_url_glc_235.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: spl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/spl-1.0 diff --git a/src/licensedcode/data/rules/squeak.RULE b/src/licensedcode/data/rules/squeak.RULE index a3d5cea8d66..f83c8fdcfba 100644 --- a/src/licensedcode/data/rules/squeak.RULE +++ b/src/licensedcode/data/rules/squeak.RULE @@ -1 +1,9 @@ +--- +license_expression: squeak +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://squeak.org/SqueakLicense/ +--- + http://squeak.org/SqueakLicense/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/squeak.yml b/src/licensedcode/data/rules/squeak.yml deleted file mode 100644 index b5d23c28ca4..00000000000 --- a/src/licensedcode/data/rules/squeak.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: squeak -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://squeak.org/SqueakLicense/ diff --git a/src/licensedcode/data/rules/srgb_1.RULE b/src/licensedcode/data/rules/srgb_1.RULE index 6f3522f07cc..331984bc743 100644 --- a/src/licensedcode/data/rules/srgb_1.RULE +++ b/src/licensedcode/data/rules/srgb_1.RULE @@ -1 +1,6 @@ -To anyone who acknowledges that the file is provided "AS IS" WITH NO EXPRESS OR IMPLIED WARRANTY, permission to use, copy and distribute this file for any purpose is hereby granted without fee, provided that the file is not changed including the copyright notice tag, and that the name of shall not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. makes no representations about the suitability of this software for any purpose. +--- +license_expression: srgb +is_license_text: yes +--- + +To anyone who acknowledges that the file is provided "AS IS" WITH NO EXPRESS OR IMPLIED WARRANTY, permission to use, copy and distribute this file for any purpose is hereby granted without fee, provided that the file is not changed including the copyright notice tag, and that the name of shall not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. makes no representations about the suitability of this software for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/srgb_1.yml b/src/licensedcode/data/rules/srgb_1.yml deleted file mode 100644 index 363048035a0..00000000000 --- a/src/licensedcode/data/rules/srgb_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: srgb -is_license_text: yes diff --git a/src/licensedcode/data/rules/srgb_2.RULE b/src/licensedcode/data/rules/srgb_2.RULE index f0efc30eaf7..15c4fe8b68d 100644 --- a/src/licensedcode/data/rules/srgb_2.RULE +++ b/src/licensedcode/data/rules/srgb_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: srgb +is_license_notice: yes +relevance: 100 +--- + Terms of use To anyone who acknowledges that the file "sRGB_v4_ICC_preference.icc" diff --git a/src/licensedcode/data/rules/srgb_2.yml b/src/licensedcode/data/rules/srgb_2.yml deleted file mode 100644 index a27e7977315..00000000000 --- a/src/licensedcode/data/rules/srgb_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: srgb -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/srgb_3.RULE b/src/licensedcode/data/rules/srgb_3.RULE index d321d471da4..fb442d6990a 100644 --- a/src/licensedcode/data/rules/srgb_3.RULE +++ b/src/licensedcode/data/rules/srgb_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: srgb +is_license_notice: yes +relevance: 100 +--- + To anyone who acknowledges that the file "sRGB_v4_ICC_preference.icc" is provided "AS IS" WITH NO EXPRESS OR IMPLIED WARRANTY, permission to use, copy and distribute this file for any purpose is hereby diff --git a/src/licensedcode/data/rules/srgb_3.yml b/src/licensedcode/data/rules/srgb_3.yml deleted file mode 100644 index a27e7977315..00000000000 --- a/src/licensedcode/data/rules/srgb_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: srgb -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/srgb_4.RULE b/src/licensedcode/data/rules/srgb_4.RULE index 28fd4d84ff5..40696627728 100644 --- a/src/licensedcode/data/rules/srgb_4.RULE +++ b/src/licensedcode/data/rules/srgb_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: srgb +is_license_notice: yes +relevance: 100 +--- + To anyone who acknowledges that the file "sRGB_IEC61966-2-1_black_scaled.icc" is provided "AS IS" WITH NO EXPRESS OR IMPLIED WARRANTY, permission to use, copy and distribute diff --git a/src/licensedcode/data/rules/srgb_4.yml b/src/licensedcode/data/rules/srgb_4.yml deleted file mode 100644 index a27e7977315..00000000000 --- a/src/licensedcode/data/rules/srgb_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: srgb -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ssleay-windows.RULE b/src/licensedcode/data/rules/ssleay-windows.RULE index 060882f6ceb..8d65e94cea5 100644 --- a/src/licensedcode/data/rules/ssleay-windows.RULE +++ b/src/licensedcode/data/rules/ssleay-windows.RULE @@ -1 +1,9 @@ +--- +license_expression: ssleay-windows +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://h71000.www7.hp.com/doc/83final/ba554_90007/apcs02.html +--- + http://h71000.www7.hp.com/doc/83final/ba554_90007/apcs02.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ssleay-windows.yml b/src/licensedcode/data/rules/ssleay-windows.yml deleted file mode 100644 index dc6f954dad4..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ssleay-windows -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://h71000.www7.hp.com/doc/83final/ba554_90007/apcs02.html diff --git a/src/licensedcode/data/rules/ssleay-windows_1.RULE b/src/licensedcode/data/rules/ssleay-windows_1.RULE index 2d143da4767..fa10be07ece 100644 --- a/src/licensedcode/data/rules/ssleay-windows_1.RULE +++ b/src/licensedcode/data/rules/ssleay-windows_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: ssleay-windows +is_license_text: yes +notes: SSLEAY windows Variant with typos +ignorable_copyrights: + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + This library is free for commercial and non-commercial use as long as the following conditions are aheared to. The following conditions apply to all code found in this distribution, be it the 10 RC4, RSA, lhash, @@ -49,4 +64,4 @@ POSSIBILITY OF SUCH DAMAGE. The licence and distribution terms for any publically available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence -[including the GNU Public +[including the GNU Public \ No newline at end of file diff --git a/src/licensedcode/data/rules/ssleay-windows_1.yml b/src/licensedcode/data/rules/ssleay-windows_1.yml deleted file mode 100644 index ec5582e9c4c..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: ssleay-windows -is_license_text: yes -notes: SSLEAY windows Variant with typos -ignorable_copyrights: - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Tim Hudson -ignorable_authors: - - Tim Hudson (tjh@cryptsoft.com) -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/ssleay-windows_2.RULE b/src/licensedcode/data/rules/ssleay-windows_2.RULE index 5badb41211f..34be462c48f 100644 --- a/src/licensedcode/data/rules/ssleay-windows_2.RULE +++ b/src/licensedcode/data/rules/ssleay-windows_2.RULE @@ -1,3 +1,19 @@ +--- +license_expression: ssleay-windows +is_license_text: yes +notes: Variant of Original SSLeay License with Windows exception +ignorable_copyrights: + - holder is Tim Hudson (tjh@mincom.oz.au) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Eric Young (eay@mincom.oz.au) + - Tim Hudson (tjh@mincom.oz.au) +ignorable_emails: + - eay@mincom.oz.au + - tjh@mincom.oz.au +--- + * This package is an SSL implementation written * by Eric Young (eay@mincom.oz.au). * The implementation was written so as to conform with Netscapes SSL. diff --git a/src/licensedcode/data/rules/ssleay-windows_2.yml b/src/licensedcode/data/rules/ssleay-windows_2.yml deleted file mode 100644 index 9295fa23e53..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows_2.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: ssleay-windows -is_license_text: yes -notes: Variant of Original SSLeay License with Windows exception -ignorable_copyrights: - - holder is Tim Hudson (tjh@mincom.oz.au) -ignorable_holders: - - Tim Hudson -ignorable_authors: - - Eric Young (eay@mincom.oz.au) - - Tim Hudson (tjh@mincom.oz.au) -ignorable_emails: - - eay@mincom.oz.au - - tjh@mincom.oz.au diff --git a/src/licensedcode/data/rules/ssleay-windows_3.RULE b/src/licensedcode/data/rules/ssleay-windows_3.RULE index 7df87fcb8a2..3600a4a3754 100644 --- a/src/licensedcode/data/rules/ssleay-windows_3.RULE +++ b/src/licensedcode/data/rules/ssleay-windows_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: ssleay-windows +is_license_text: yes +notes: SSLEAY windows Variant with typos +ignorable_copyrights: + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, @@ -45,4 +60,4 @@ * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence - * [including the GNU Public Licence.] + * [including the GNU Public Licence.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/ssleay-windows_3.yml b/src/licensedcode/data/rules/ssleay-windows_3.yml deleted file mode 100644 index ec5582e9c4c..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: ssleay-windows -is_license_text: yes -notes: SSLEAY windows Variant with typos -ignorable_copyrights: - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Tim Hudson -ignorable_authors: - - Tim Hudson (tjh@cryptsoft.com) -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/ssleay-windows_4.RULE b/src/licensedcode/data/rules/ssleay-windows_4.RULE index 0ed0ec68499..7b06b5e2ab7 100644 --- a/src/licensedcode/data/rules/ssleay-windows_4.RULE +++ b/src/licensedcode/data/rules/ssleay-windows_4.RULE @@ -1,3 +1,18 @@ +--- +license_expression: ssleay-windows +is_license_text: yes +notes: SSLEAY windows Variant with typos +ignorable_copyrights: + - holder is Tim Hudson (tjh@mincom.oz.au) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Tim Hudson (tjh@mincom.oz.au) +ignorable_emails: + - eay@mincom.oz.au + - tjh@mincom.oz.au +--- + * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as @@ -48,4 +63,4 @@ * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ssleay-windows_4.yml b/src/licensedcode/data/rules/ssleay-windows_4.yml deleted file mode 100644 index 1c3d00fdb4f..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows_4.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: ssleay-windows -is_license_text: yes -notes: SSLEAY windows Variant with typos -ignorable_copyrights: - - holder is Tim Hudson (tjh@mincom.oz.au) -ignorable_holders: - - Tim Hudson -ignorable_authors: - - Tim Hudson (tjh@mincom.oz.au) -ignorable_emails: - - eay@mincom.oz.au - - tjh@mincom.oz.au diff --git a/src/licensedcode/data/rules/ssleay-windows_5.RULE b/src/licensedcode/data/rules/ssleay-windows_5.RULE index c5801cb38e2..398b1e13026 100644 --- a/src/licensedcode/data/rules/ssleay-windows_5.RULE +++ b/src/licensedcode/data/rules/ssleay-windows_5.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ssleay-windows +is_license_reference: yes +minimum_coverage: 90 +ignorable_authors: + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - tjh@cryptsoft.com +--- + * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" \ No newline at end of file diff --git a/src/licensedcode/data/rules/ssleay-windows_5.yml b/src/licensedcode/data/rules/ssleay-windows_5.yml deleted file mode 100644 index 817a37151d9..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows_5.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ssleay-windows -is_license_reference: yes -minimum_coverage: 90 -ignorable_authors: - - Tim Hudson (tjh@cryptsoft.com) -ignorable_emails: - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/ssleay-windows_6.RULE b/src/licensedcode/data/rules/ssleay-windows_6.RULE index 496d7ddbac3..1cdfc51026d 100644 --- a/src/licensedcode/data/rules/ssleay-windows_6.RULE +++ b/src/licensedcode/data/rules/ssleay-windows_6.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ssleay-windows +is_license_text: yes +minimum_coverage: 50 +notes: SSLEAY windows Variant with typos +ignorable_authors: + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -34,4 +46,4 @@ SUCH DAMAGE. The licence and distribution terms for any publically available version or derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence -[including the GNU Public Licence.] +[including the GNU Public Licence.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/ssleay-windows_6.yml b/src/licensedcode/data/rules/ssleay-windows_6.yml deleted file mode 100644 index 754ddf4eda4..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows_6.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ssleay-windows -is_license_text: yes -minimum_coverage: 50 -notes: SSLEAY windows Variant with typos -ignorable_authors: - - Tim Hudson (tjh@cryptsoft.com) -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/ssleay-windows_7.RULE b/src/licensedcode/data/rules/ssleay-windows_7.RULE index 94992fd58d3..da7f7ad7099 100644 --- a/src/licensedcode/data/rules/ssleay-windows_7.RULE +++ b/src/licensedcode/data/rules/ssleay-windows_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: ssleay-windows +is_license_text: yes +ignorable_authors: + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/ssleay-windows_7.yml b/src/licensedcode/data/rules/ssleay-windows_7.yml deleted file mode 100644 index 511ed2d7642..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: ssleay-windows -is_license_text: yes -ignorable_authors: - - Tim Hudson (tjh@cryptsoft.com) -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/ssleay-windows_8.RULE b/src/licensedcode/data/rules/ssleay-windows_8.RULE index d6e4d345aa2..f15e32ffb6b 100644 --- a/src/licensedcode/data/rules/ssleay-windows_8.RULE +++ b/src/licensedcode/data/rules/ssleay-windows_8.RULE @@ -1,3 +1,18 @@ +--- +license_expression: ssleay-windows +is_license_text: yes +ignorable_copyrights: + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Tim Hudson +ignorable_authors: + - Eric Young (eay@cryptsoft.com) + - Tim Hudson (tjh@cryptsoft.com) +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). diff --git a/src/licensedcode/data/rules/ssleay-windows_8.yml b/src/licensedcode/data/rules/ssleay-windows_8.yml deleted file mode 100644 index ded75ced2a5..00000000000 --- a/src/licensedcode/data/rules/ssleay-windows_8.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: ssleay-windows -is_license_text: yes -ignorable_copyrights: - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Tim Hudson -ignorable_authors: - - Eric Young (eay@cryptsoft.com) - - Tim Hudson (tjh@cryptsoft.com) -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/ssleay_1.RULE b/src/licensedcode/data/rules/ssleay_1.RULE index 7c77533a878..f74b920ff7f 100644 --- a/src/licensedcode/data/rules/ssleay_1.RULE +++ b/src/licensedcode/data/rules/ssleay_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: ssleay +is_license_text: yes +ignorable_authors: + - Eric Young +--- + # * This file is part of an SSL implementation written # * by Eric Young (eay@…). # * The implementation was written so as to conform with Netscapes SSL diff --git a/src/licensedcode/data/rules/ssleay_1.yml b/src/licensedcode/data/rules/ssleay_1.yml deleted file mode 100644 index 3add9af6196..00000000000 --- a/src/licensedcode/data/rules/ssleay_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ssleay -is_license_text: yes -ignorable_authors: - - Eric Young diff --git a/src/licensedcode/data/rules/ssleay_3.RULE b/src/licensedcode/data/rules/ssleay_3.RULE index d8983ce79aa..b824085bdf7 100644 --- a/src/licensedcode/data/rules/ssleay_3.RULE +++ b/src/licensedcode/data/rules/ssleay_3.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ssleay +is_license_text: yes +ignorable_copyrights: + - holder is Tim Hudson (tjh@cryptsoft.com) +ignorable_holders: + - Tim Hudson +ignorable_emails: + - eay@cryptsoft.com + - tjh@cryptsoft.com +--- + This library is free for commercial and non-commercial use as long as the following conditions are aheared to. The following conditions apply to all code found in this distribution, be it the RC4, RSA, @@ -25,5 +37,4 @@ are met: "This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)" The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). - + being used are not cryptographic related :-). \ No newline at end of file diff --git a/src/licensedcode/data/rules/ssleay_3.yml b/src/licensedcode/data/rules/ssleay_3.yml deleted file mode 100644 index 0f65d06e1d1..00000000000 --- a/src/licensedcode/data/rules/ssleay_3.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ssleay -is_license_text: yes -ignorable_copyrights: - - holder is Tim Hudson (tjh@cryptsoft.com) -ignorable_holders: - - Tim Hudson -ignorable_emails: - - eay@cryptsoft.com - - tjh@cryptsoft.com diff --git a/src/licensedcode/data/rules/ssleay_4.RULE b/src/licensedcode/data/rules/ssleay_4.RULE index ce014e2506c..e550a54cf9d 100644 --- a/src/licensedcode/data/rules/ssleay_4.RULE +++ b/src/licensedcode/data/rules/ssleay_4.RULE @@ -1,3 +1,16 @@ +--- +license_expression: ssleay +is_license_text: yes +notes: Variant of SSLEay with typos +ignorable_copyrights: + - holder is Tim Hudson (tjh@mincom.oz.au) +ignorable_holders: + - Tim Hudson +ignorable_emails: + - eay@mincom.oz.au + - tjh@mincom.oz.au +--- + * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, @@ -42,4 +55,4 @@ * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence - * [including the GNU Public Licence.] + * [including the GNU Public Licence.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/ssleay_4.yml b/src/licensedcode/data/rules/ssleay_4.yml deleted file mode 100644 index 5c93c0748a6..00000000000 --- a/src/licensedcode/data/rules/ssleay_4.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: ssleay -is_license_text: yes -notes: Variant of SSLEay with typos -ignorable_copyrights: - - holder is Tim Hudson (tjh@mincom.oz.au) -ignorable_holders: - - Tim Hudson -ignorable_emails: - - eay@mincom.oz.au - - tjh@mincom.oz.au diff --git a/src/licensedcode/data/rules/ssleay_5.RULE b/src/licensedcode/data/rules/ssleay_5.RULE index 688c2666542..997dfca20d7 100644 --- a/src/licensedcode/data/rules/ssleay_5.RULE +++ b/src/licensedcode/data/rules/ssleay_5.RULE @@ -1,3 +1,19 @@ +--- +license_expression: ssleay +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) + - holder is Tim Hudson (tjh@mincom.oz.au) +ignorable_holders: + - Eric Young + - Tim Hudson +ignorable_authors: + - Eric Young (eay@mincom.oz.au) +ignorable_emails: + - eay@mincom.oz.au + - tjh@mincom.oz.au +--- + /* Copyright (C) 1995-1997 Eric Young (eay@mincom.oz.au) * All rights reserved. * diff --git a/src/licensedcode/data/rules/ssleay_5.yml b/src/licensedcode/data/rules/ssleay_5.yml deleted file mode 100644 index 32f64145ac1..00000000000 --- a/src/licensedcode/data/rules/ssleay_5.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: ssleay -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1995-1997 Eric Young (eay@mincom.oz.au) - - holder is Tim Hudson (tjh@mincom.oz.au) -ignorable_holders: - - Eric Young - - Tim Hudson -ignorable_authors: - - Eric Young (eay@mincom.oz.au) -ignorable_emails: - - eay@mincom.oz.au - - tjh@mincom.oz.au diff --git a/src/licensedcode/data/rules/st-mcd-2.0_1.RULE b/src/licensedcode/data/rules/st-mcd-2.0_1.RULE index c6abe7bad7f..b272099b362 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_1.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: st-mcd-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.st.com/software_license_agreement_liberty_v2 +--- + Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); You may not use this file except in compliance with the License. You may obtain a copy of the License at: @@ -8,4 +15,4 @@ 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. +limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_1.yml b/src/licensedcode/data/rules/st-mcd-2.0_1.yml deleted file mode 100755 index 32c952abdf8..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.st.com/software_license_agreement_liberty_v2 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_10.RULE b/src/licensedcode/data/rules/st-mcd-2.0_10.RULE index 10d623d2f76..9e3c6eb7bef 100644 --- a/src/licensedcode/data/rules/st-mcd-2.0_10.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: st-mcd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.st.com/%7B%7BSLA0044 +--- + https://www.st.com/{{SLA0044}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_10.yml b/src/licensedcode/data/rules/st-mcd-2.0_10.yml deleted file mode 100644 index 2ed094b646f..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.st.com/%7B%7BSLA0044 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_11.RULE b/src/licensedcode/data/rules/st-mcd-2.0_11.RULE index c7d53d7cb00..8be8b912483 100644 --- a/src/licensedcode/data/rules/st-mcd-2.0_11.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: st-mcd-2.0 +is_license_reference: yes +relevance: 100 +--- + SLA0044 \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_11.yml b/src/licensedcode/data/rules/st-mcd-2.0_11.yml deleted file mode 100644 index 0db9bab4984..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_12.RULE b/src/licensedcode/data/rules/st-mcd-2.0_12.RULE index 95ae7754e75..e03d784a220 100644 --- a/src/licensedcode/data/rules/st-mcd-2.0_12.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: st-mcd-2.0 +is_license_notice: yes +ignorable_urls: + - https://www.st.com/%7B%7BSLA0044 +--- + This software component is licensed by {{ST under Ultimate Liberty}} license {{SLA0044}}, the "License". You may not use this file except in compliance with this license. You may obtain a copy of the license [here](https://www.st.com/{{SLA0044}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_12.yml b/src/licensedcode/data/rules/st-mcd-2.0_12.yml deleted file mode 100644 index 9cdf5bea0a0..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_notice: yes -ignorable_urls: - - https://www.st.com/%7B%7BSLA0044 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_2.RULE b/src/licensedcode/data/rules/st-mcd-2.0_2.RULE index c358a3536a6..71425a5223a 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_2.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: st-mcd-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.st.com/software_license_agreement_liberty_v2 +--- + http://www.st.com/software_license_agreement_liberty_v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_2.yml b/src/licensedcode/data/rules/st-mcd-2.0_2.yml deleted file mode 100755 index 1aa815b3069..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.st.com/software_license_agreement_liberty_v2 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_3.RULE b/src/licensedcode/data/rules/st-mcd-2.0_3.RULE index 6d5b0234f17..f4068fee4de 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_3.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: st-mcd-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.st.com/software_license_agreement_liberty_v2 +--- + License: MCD-ST Liberty SW License Agreement V2 (http://www.st.com/software_license_agreement_liberty_v2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_3.yml b/src/licensedcode/data/rules/st-mcd-2.0_3.yml deleted file mode 100755 index 4df6a6cd83e..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.st.com/software_license_agreement_liberty_v2 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_4.RULE b/src/licensedcode/data/rules/st-mcd-2.0_4.RULE index acc5144e135..0a0ce1b36f4 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_4.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: st-mcd-2.0 +is_license_reference: yes +relevance: 100 +--- + MCD-ST Liberty SW License Agreement V2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_4.yml b/src/licensedcode/data/rules/st-mcd-2.0_4.yml deleted file mode 100755 index 0db9bab4984..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_5.RULE b/src/licensedcode/data/rules/st-mcd-2.0_5.RULE index 0ce399fadf3..b722d9d147b 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_5.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_5.RULE @@ -1 +1,7 @@ -Licensed under MCD-ST Liberty SW License Agreement V2. +--- +license_expression: st-mcd-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under MCD-ST Liberty SW License Agreement V2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_5.yml b/src/licensedcode/data/rules/st-mcd-2.0_5.yml deleted file mode 100755 index 00fee00ee18..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_6.RULE b/src/licensedcode/data/rules/st-mcd-2.0_6.RULE index aa6130433b1..93477395809 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_6.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: st-mcd-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.st.com/software_license_agreement_liberty_v2 +--- + licensed under MCD-ST Liberty SW License Agreement V2 http://www.st.com/software_license_agreement_liberty_v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_6.yml b/src/licensedcode/data/rules/st-mcd-2.0_6.yml deleted file mode 100755 index 4df6a6cd83e..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.st.com/software_license_agreement_liberty_v2 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_7.RULE b/src/licensedcode/data/rules/st-mcd-2.0_7.RULE index c6357fa9a5f..13c04c6f813 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_7.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: st-mcd-2.0 +is_license_notice: yes +relevance: 100 +--- + THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS diff --git a/src/licensedcode/data/rules/st-mcd-2.0_7.yml b/src/licensedcode/data/rules/st-mcd-2.0_7.yml deleted file mode 100755 index 00fee00ee18..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_8.RULE b/src/licensedcode/data/rules/st-mcd-2.0_8.RULE index 2034f57e17e..caf9c9da13d 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_8.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: st-mcd-2.0 +is_license_reference: yes +relevance: 100 +--- + MCD-ST Liberty SW License \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_8.yml b/src/licensedcode/data/rules/st-mcd-2.0_8.yml deleted file mode 100755 index 0db9bab4984..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_9.RULE b/src/licensedcode/data/rules/st-mcd-2.0_9.RULE index 3ec8907fbc3..86bd0b88155 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_9.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: st-mcd-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.st.com/software_license_agreement_liberty_v2 +--- + MCD-ST Liberty SW License Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); You may not use this package except in compliance with the License. You may obtain a copy of the License at: diff --git a/src/licensedcode/data/rules/st-mcd-2.0_9.yml b/src/licensedcode/data/rules/st-mcd-2.0_9.yml deleted file mode 100755 index 4df6a6cd83e..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: st-mcd-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.st.com/software_license_agreement_liberty_v2 diff --git a/src/licensedcode/data/rules/st-mcd-2.0_and_cc-by-sa-3.0_1.RULE b/src/licensedcode/data/rules/st-mcd-2.0_and_cc-by-sa-3.0_1.RULE index a068b891869..5f5875e267c 100755 --- a/src/licensedcode/data/rules/st-mcd-2.0_and_cc-by-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_and_cc-by-sa-3.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: st-mcd-2.0 AND cc-by-sa-3.0 +is_license_notice: yes +notes: see https://github.com/baoshi/HX8352C-GPIO-emWin/blob/c10276cce3ce9317cc2e034a3239a4d388aaf207/inc/LCDConf.h#L20 +ignorable_urls: + - http://creativecommons.org/licenses/by-sa/3.0 + - http://www.st.com/software_license_agreement_liberty_v2 +--- + * This code is derivative work based on the STemWin which is licensed under * MCD-ST Liberty SW License Agreement V2, available at: * diff --git a/src/licensedcode/data/rules/st-mcd-2.0_and_cc-by-sa-3.0_1.yml b/src/licensedcode/data/rules/st-mcd-2.0_and_cc-by-sa-3.0_1.yml deleted file mode 100755 index 94651a948d2..00000000000 --- a/src/licensedcode/data/rules/st-mcd-2.0_and_cc-by-sa-3.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: st-mcd-2.0 AND cc-by-sa-3.0 -is_license_notice: yes -notes: see https://github.com/baoshi/HX8352C-GPIO-emWin/blob/c10276cce3ce9317cc2e034a3239a4d388aaf207/inc/LCDConf.h#L20 -ignorable_urls: - - http://creativecommons.org/licenses/by-sa/3.0 - - http://www.st.com/software_license_agreement_liberty_v2 diff --git a/src/licensedcode/data/rules/standard-ml-nj.RULE b/src/licensedcode/data/rules/standard-ml-nj.RULE index 66c80df10c4..eb4826508ee 100644 --- a/src/licensedcode/data/rules/standard-ml-nj.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj.RULE @@ -1,3 +1,8 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission @@ -11,5 +16,4 @@ ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 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. - +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj.yml b/src/licensedcode/data/rules/standard-ml-nj.yml deleted file mode 100644 index 30ed51d556f..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes diff --git a/src/licensedcode/data/rules/standard-ml-nj_1.RULE b/src/licensedcode/data/rules/standard-ml-nj_1.RULE index 93dc4b72595..6e269d97698 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_1.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +notes: Lucent original variant +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both the copyright notice and this permission @@ -11,4 +17,4 @@ warranties of merchantability and fitness. In no event shall be liable for any special, 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. +this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_1.yml b/src/licensedcode/data/rules/standard-ml-nj_1.yml deleted file mode 100644 index 10c3d999f29..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -notes: Lucent original variant diff --git a/src/licensedcode/data/rules/standard-ml-nj_10.RULE b/src/licensedcode/data/rules/standard-ml-nj_10.RULE index d86113793d0..903490b99ae 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_10.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both the diff --git a/src/licensedcode/data/rules/standard-ml-nj_10.yml b/src/licensedcode/data/rules/standard-ml-nj_10.yml deleted file mode 100644 index 55ebc337418..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/standard-ml-nj_11.RULE b/src/licensedcode/data/rules/standard-ml-nj_11.RULE index 998096cea55..c461755ff39 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_11.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/standard-ml-nj_11.yml b/src/licensedcode/data/rules/standard-ml-nj_11.yml deleted file mode 100644 index a904340fc43..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/standard-ml-nj_12.RULE b/src/licensedcode/data/rules/standard-ml-nj_12.RULE index c6a8ba6a338..1745ccbf35d 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_12.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 98 +notes: This essentially the same text as the standard-ml-nj with some minor changes +--- + Permission to use, copy, modify, and distribute this software for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission diff --git a/src/licensedcode/data/rules/standard-ml-nj_12.yml b/src/licensedcode/data/rules/standard-ml-nj_12.yml deleted file mode 100644 index 30ea02a2c28..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 98 -notes: This essentially the same text as the standard-ml-nj with some minor changes diff --git a/src/licensedcode/data/rules/standard-ml-nj_13.RULE b/src/licensedcode/data/rules/standard-ml-nj_13.RULE index 97a154441db..4785684afac 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_13.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_13.RULE @@ -1,3 +1,12 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.smlnj.org/license.html + - https://www.gnu.org/licenses/license-list.html#StandardMLofNJ +--- + * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, provided * that the above copyright notice appear in all copies and that both the diff --git a/src/licensedcode/data/rules/standard-ml-nj_13.yml b/src/licensedcode/data/rules/standard-ml-nj_13.yml deleted file mode 100644 index f4c8f64ec53..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.smlnj.org/license.html - - https://www.gnu.org/licenses/license-list.html#StandardMLofNJ diff --git a/src/licensedcode/data/rules/standard-ml-nj_14.RULE b/src/licensedcode/data/rules/standard-ml-nj_14.RULE index b54736abe60..8340db543b3 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_14.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_14.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + StandardML-NJ Standard ML of New Jersey License \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_14.yml b/src/licensedcode/data/rules/standard-ml-nj_14.yml deleted file mode 100644 index f0202772917..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/standard-ml-nj_15.RULE b/src/licensedcode/data/rules/standard-ml-nj_15.RULE index 29a2ab45997..be6478dfdc5 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_15.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_15.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Standard ML of New Jersey License \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_15.yml b/src/licensedcode/data/rules/standard-ml-nj_15.yml deleted file mode 100644 index f0202772917..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/standard-ml-nj_16.RULE b/src/licensedcode/data/rules/standard-ml-nj_16.RULE index 3dc10b7b610..ba503d22be2 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_16.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_16.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Standard ML of New Jersey License StandardML-NJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_16.yml b/src/licensedcode/data/rules/standard-ml-nj_16.yml deleted file mode 100644 index f0202772917..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/standard-ml-nj_17.RULE b/src/licensedcode/data/rules/standard-ml-nj_17.RULE index c9351c2bddc..bd6095db935 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_17.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_17.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : StandardML-NJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_17.yml b/src/licensedcode/data/rules/standard-ml-nj_17.yml deleted file mode 100644 index fdf9fa2b65d..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/standard-ml-nj_18.RULE b/src/licensedcode/data/rules/standard-ml-nj_18.RULE index 2ce20a534f2..a458697c963 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_18.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_18.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : StandardML-NJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_18.yml b/src/licensedcode/data/rules/standard-ml-nj_18.yml deleted file mode 100644 index f0202772917..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/standard-ml-nj_19.RULE b/src/licensedcode/data/rules/standard-ml-nj_19.RULE index 928f7693452..d2efd9903d7 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_19.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_19.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : Standard ML of New Jersey License \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_19.yml b/src/licensedcode/data/rules/standard-ml-nj_19.yml deleted file mode 100644 index f0202772917..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/standard-ml-nj_2.RULE b/src/licensedcode/data/rules/standard-ml-nj_2.RULE index 33db3b5f30f..27cb9f35588 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_2.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +notes: standard-ml-nj alternative +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/standard-ml-nj_2.yml b/src/licensedcode/data/rules/standard-ml-nj_2.yml deleted file mode 100644 index 720073100d6..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -notes: standard-ml-nj alternative diff --git a/src/licensedcode/data/rules/standard-ml-nj_20.RULE b/src/licensedcode/data/rules/standard-ml-nj_20.RULE index c316b85cab5..4659ef9b2c3 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_20.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_20.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SMLNJ Standard ML of New Jersey License \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_20.yml b/src/licensedcode/data/rules/standard-ml-nj_20.yml deleted file mode 100644 index 067fffd1831..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/standard-ml-nj_21.RULE b/src/licensedcode/data/rules/standard-ml-nj_21.RULE index 263f0edd141..dba59ae8b6f 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_21.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_21.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Standard ML of New Jersey License SMLNJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_21.yml b/src/licensedcode/data/rules/standard-ml-nj_21.yml deleted file mode 100644 index 067fffd1831..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/standard-ml-nj_22.RULE b/src/licensedcode/data/rules/standard-ml-nj_22.RULE index 67ad8f8060a..c246b9e1b74 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_22.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_22.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SMLNJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_22.yml b/src/licensedcode/data/rules/standard-ml-nj_22.yml deleted file mode 100644 index 5f979033191..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/standard-ml-nj_23.RULE b/src/licensedcode/data/rules/standard-ml-nj_23.RULE index ce5e555930c..f9bbb6839d4 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_23.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_23.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Standard ML of New Jersey License \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_23.yml b/src/licensedcode/data/rules/standard-ml-nj_23.yml deleted file mode 100644 index 5f979033191..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/standard-ml-nj_24.RULE b/src/licensedcode/data/rules/standard-ml-nj_24.RULE index 39d48be3d0b..26b23ee036b 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_24.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_24.RULE @@ -1 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SMLNJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_24.yml b/src/licensedcode/data/rules/standard-ml-nj_24.yml deleted file mode 100644 index 5f979033191..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/standard-ml-nj_25.RULE b/src/licensedcode/data/rules/standard-ml-nj_25.RULE index e002c466569..f238faf52e4 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_25.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_25.RULE @@ -1 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SMLNJ +--- + https://licenses.nuget.org/SMLNJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_25.yml b/src/licensedcode/data/rules/standard-ml-nj_25.yml deleted file mode 100644 index 108a0ff6b37..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SMLNJ diff --git a/src/licensedcode/data/rules/standard-ml-nj_26.RULE b/src/licensedcode/data/rules/standard-ml-nj_26.RULE index a847bffebeb..6ddc176ae19 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_26.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_26.RULE @@ -1 +1,7 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SMLNJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_26.yml b/src/licensedcode/data/rules/standard-ml-nj_26.yml deleted file mode 100644 index d46b2967c4e..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/standard-ml-nj_27.RULE b/src/licensedcode/data/rules/standard-ml-nj_27.RULE index 958a3fa3c3a..7ce4fd9ace8 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_27.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_27.RULE @@ -1 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SMLNJ +--- + LICENSE {{SMLNJ}} https://spdx.org/licenses/SMLNJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_27.yml b/src/licensedcode/data/rules/standard-ml-nj_27.yml deleted file mode 100644 index 608f56d9c19..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SMLNJ diff --git a/src/licensedcode/data/rules/standard-ml-nj_28.RULE b/src/licensedcode/data/rules/standard-ml-nj_28.RULE index 1ef0b6d0168..6cf6d44aa80 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_28.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_28.RULE @@ -1 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/StandardML-NJ +--- + LICENSE {{StandardML-NJ}} https://spdx.org/licenses/StandardML-NJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_28.yml b/src/licensedcode/data/rules/standard-ml-nj_28.yml deleted file mode 100644 index bbec1891e20..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/StandardML-NJ diff --git a/src/licensedcode/data/rules/standard-ml-nj_29.RULE b/src/licensedcode/data/rules/standard-ml-nj_29.RULE index 64cc8f82be6..b969894bf41 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_29.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_29.RULE @@ -1 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SMLNJ +--- + {{SMLNJ}} https://spdx.org/licenses/SMLNJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_29.yml b/src/licensedcode/data/rules/standard-ml-nj_29.yml deleted file mode 100644 index 608f56d9c19..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SMLNJ diff --git a/src/licensedcode/data/rules/standard-ml-nj_3.RULE b/src/licensedcode/data/rules/standard-ml-nj_3.RULE index acecc8e682a..881c1d0b1ca 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_3.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/standard-ml-nj_3.yml b/src/licensedcode/data/rules/standard-ml-nj_3.yml deleted file mode 100644 index a904340fc43..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/standard-ml-nj_30.RULE b/src/licensedcode/data/rules/standard-ml-nj_30.RULE index fd3dab44038..6a806e84b9f 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_30.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_30.RULE @@ -1 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/StandardML-NJ +--- + {{StandardML-NJ}} https://spdx.org/licenses/StandardML-NJ \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_30.yml b/src/licensedcode/data/rules/standard-ml-nj_30.yml deleted file mode 100644 index bbec1891e20..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/StandardML-NJ diff --git a/src/licensedcode/data/rules/standard-ml-nj_4.RULE b/src/licensedcode/data/rules/standard-ml-nj_4.RULE index 7ff50d7d832..e72e90dac9f 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_4.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all diff --git a/src/licensedcode/data/rules/standard-ml-nj_4.yml b/src/licensedcode/data/rules/standard-ml-nj_4.yml deleted file mode 100644 index a904340fc43..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/standard-ml-nj_5.RULE b/src/licensedcode/data/rules/standard-ml-nj_5.RULE index 05f823d7639..0f633e05747 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_5.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_5.RULE @@ -1,3 +1,12 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/license-list.html#StandardMLofNJ + - http://www.smlnj.org/license.html +--- + * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, provided * that the above copyright notice appear in all copies and that both the diff --git a/src/licensedcode/data/rules/standard-ml-nj_5.yml b/src/licensedcode/data/rules/standard-ml-nj_5.yml deleted file mode 100644 index edd0ead510f..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/license-list.html#StandardMLofNJ - - http://www.smlnj.org/license.html diff --git a/src/licensedcode/data/rules/standard-ml-nj_6.RULE b/src/licensedcode/data/rules/standard-ml-nj_6.RULE index 9640274c288..c25de573da6 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_6.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_6.RULE @@ -1 +1,7 @@ - * STANDARD ML OF NEW JERSEY COPYRIGHT NOTICE, LICENSE AND DISCLAIMER. +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 100 +--- + + * STANDARD ML OF NEW JERSEY COPYRIGHT NOTICE, LICENSE AND DISCLAIMER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_6.yml b/src/licensedcode/data/rules/standard-ml-nj_6.yml deleted file mode 100644 index d46b2967c4e..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/standard-ml-nj_7.RULE b/src/licensedcode/data/rules/standard-ml-nj_7.RULE index 09210335296..a54d9994c8c 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_7.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 100 +--- + * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, provided * that the above copyright notice appear in all copies and that both the @@ -11,4 +17,4 @@ * be liable for any special, 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 + * connection with the use or performance of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_7.yml b/src/licensedcode/data/rules/standard-ml-nj_7.yml deleted file mode 100644 index a904340fc43..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/standard-ml-nj_8.RULE b/src/licensedcode/data/rules/standard-ml-nj_8.RULE index 555b968625d..22defc40899 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_8.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +notes: used in melton.org +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -13,4 +19,4 @@ fitness. In no event shall the above copyright holders be liable for any special, 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. +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/standard-ml-nj_8.yml b/src/licensedcode/data/rules/standard-ml-nj_8.yml deleted file mode 100644 index a2c32f2ad83..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -notes: used in melton.org diff --git a/src/licensedcode/data/rules/standard-ml-nj_9.RULE b/src/licensedcode/data/rules/standard-ml-nj_9.RULE index 7fd7824281f..f7a3cfda3ad 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_9.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: standard-ml-nj +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided thatthe above copyright notice appear in all copies and that both the diff --git a/src/licensedcode/data/rules/standard-ml-nj_9.yml b/src/licensedcode/data/rules/standard-ml-nj_9.yml deleted file mode 100644 index 55ebc337418..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: standard-ml-nj -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/standard-ml-nj_url_1.RULE b/src/licensedcode/data/rules/standard-ml-nj_url_1.RULE index 076d7d3082a..a22358be361 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_url_1.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/smlnj +--- + https://spdx.org/licenses/smlnj \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_url_1.yml b/src/licensedcode/data/rules/standard-ml-nj_url_1.yml deleted file mode 100644 index 0fc7ac76442..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/smlnj diff --git a/src/licensedcode/data/rules/standard-ml-nj_url_2.RULE b/src/licensedcode/data/rules/standard-ml-nj_url_2.RULE index 0c3f566a2d1..cff6480863a 100644 --- a/src/licensedcode/data/rules/standard-ml-nj_url_2.RULE +++ b/src/licensedcode/data/rules/standard-ml-nj_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: standard-ml-nj +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/smlnj.html +--- + https://spdx.org/licenses/smlnj.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/standard-ml-nj_url_2.yml b/src/licensedcode/data/rules/standard-ml-nj_url_2.yml deleted file mode 100644 index ece20fcac11..00000000000 --- a/src/licensedcode/data/rules/standard-ml-nj_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: standard-ml-nj -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/smlnj.html diff --git a/src/licensedcode/data/rules/stanford-pvrg.RULE b/src/licensedcode/data/rules/stanford-pvrg.RULE index b9d7e70d7cd..a9f2d5e65ca 100644 --- a/src/licensedcode/data/rules/stanford-pvrg.RULE +++ b/src/licensedcode/data/rules/stanford-pvrg.RULE @@ -1 +1,9 @@ +--- +license_expression: stanford-pvrg +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://marathon.csee.usf.edu/Mammography/JpegInfo.html +--- + http://marathon.csee.usf.edu/Mammography/JpegInfo.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/stanford-pvrg.yml b/src/licensedcode/data/rules/stanford-pvrg.yml deleted file mode 100644 index e3a69a1d29c..00000000000 --- a/src/licensedcode/data/rules/stanford-pvrg.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: stanford-pvrg -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://marathon.csee.usf.edu/Mammography/JpegInfo.html diff --git a/src/licensedcode/data/rules/stanford-pvrg_1.RULE b/src/licensedcode/data/rules/stanford-pvrg_1.RULE index 85930d6dd03..89e8c65e4f5 100644 --- a/src/licensedcode/data/rules/stanford-pvrg_1.RULE +++ b/src/licensedcode/data/rules/stanford-pvrg_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: stanford-pvrg +is_license_reference: yes +ignorable_authors: + - Stanford University +--- + * PUBLIC DOMAIN LICENSE: Stanford University Portable Video Research * Group. If you use this software, you agree to the following: This * program package is purely experimental, and is licensed "as is". diff --git a/src/licensedcode/data/rules/stanford-pvrg_1.yml b/src/licensedcode/data/rules/stanford-pvrg_1.yml deleted file mode 100644 index 4ab87f14764..00000000000 --- a/src/licensedcode/data/rules/stanford-pvrg_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: stanford-pvrg -is_license_reference: yes -ignorable_authors: - - Stanford University diff --git a/src/licensedcode/data/rules/stanford-pvrg_2.RULE b/src/licensedcode/data/rules/stanford-pvrg_2.RULE index 611854216bc..3f7f98ba2e5 100644 --- a/src/licensedcode/data/rules/stanford-pvrg_2.RULE +++ b/src/licensedcode/data/rules/stanford-pvrg_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: stanford-pvrg +is_license_text: yes +ignorable_authors: + - Stanford University +--- + * This code is derived from the software implementation by the * Stanford PVRG group: * @@ -14,4 +21,4 @@ * have been advised of such possibilities. Any public reference or * advertisement of this source code should refer to it as the Portable * Video Research Group (PVRG) code, and not by any author(s) (or - * Stanford University) name. + * Stanford University) name. \ No newline at end of file diff --git a/src/licensedcode/data/rules/stanford-pvrg_2.yml b/src/licensedcode/data/rules/stanford-pvrg_2.yml deleted file mode 100644 index f1f09f8a944..00000000000 --- a/src/licensedcode/data/rules/stanford-pvrg_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: stanford-pvrg -is_license_text: yes -ignorable_authors: - - Stanford University diff --git a/src/licensedcode/data/rules/statewizard2.RULE b/src/licensedcode/data/rules/statewizard2.RULE index a087839746c..978b51c3e71 100644 --- a/src/licensedcode/data/rules/statewizard2.RULE +++ b/src/licensedcode/data/rules/statewizard2.RULE @@ -1 +1,7 @@ +--- +license_expression: statewizard +is_license_reference: yes +relevance: 100 +--- + StateWizard License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/statewizard2.yml b/src/licensedcode/data/rules/statewizard2.yml deleted file mode 100644 index 6d3bd55d6ad..00000000000 --- a/src/licensedcode/data/rules/statewizard2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: statewizard -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/stlport-4.5.RULE b/src/licensedcode/data/rules/stlport-4.5.RULE index 1d3dfb03b6a..bc06a9ef706 100644 --- a/src/licensedcode/data/rules/stlport-4.5.RULE +++ b/src/licensedcode/data/rules/stlport-4.5.RULE @@ -1,5 +1,11 @@ +--- +license_expression: stlport-4.5 +is_license_notice: yes +notes: truncated notice seen in a debian copyright file. +--- + * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice + * modified is included with the above copyright notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/stlport-4.5.yml b/src/licensedcode/data/rules/stlport-4.5.yml deleted file mode 100644 index 6213156b2bc..00000000000 --- a/src/licensedcode/data/rules/stlport-4.5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: stlport-4.5 -is_license_notice: yes -notes: truncated notice seen in a debian copyright file. diff --git a/src/licensedcode/data/rules/stlport-4.5_2.RULE b/src/licensedcode/data/rules/stlport-4.5_2.RULE index 90cf8e4d7bc..8d44dfb688c 100644 --- a/src/licensedcode/data/rules/stlport-4.5_2.RULE +++ b/src/licensedcode/data/rules/stlport-4.5_2.RULE @@ -1,6 +1,12 @@ +--- +license_expression: stlport-4.5 +is_license_notice: yes +notes: truncated notice seen in a debian copyright file. +--- + License: other * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice + * modified is included with the above copyright notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/stlport-4.5_2.yml b/src/licensedcode/data/rules/stlport-4.5_2.yml deleted file mode 100644 index 6213156b2bc..00000000000 --- a/src/licensedcode/data/rules/stlport-4.5_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: stlport-4.5 -is_license_notice: yes -notes: truncated notice seen in a debian copyright file. diff --git a/src/licensedcode/data/rules/strongswan-exception_1.RULE b/src/licensedcode/data/rules/strongswan-exception_1.RULE index a74a00f9149..f24bc99f1a2 100644 --- a/src/licensedcode/data/rules/strongswan-exception_1.RULE +++ b/src/licensedcode/data/rules/strongswan-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: strongswan-exception +is_license_text: yes +--- + In addition, as a special exception, the copyright holders of strongSwan give you permission to combine strongSwan with free software programs or libraries that are released under the GNU LGPL and with code included in the standard @@ -6,4 +11,4 @@ licenses (or modified versions of such code, with unchanged license). You may copy and distribute such a system following the terms of the GNU GPL for strongSwan and the licenses of the other code concerned, provided that you include the source code of that other code when and as the GNU GPL requires -distribution of source code. +distribution of source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/strongswan-exception_1.yml b/src/licensedcode/data/rules/strongswan-exception_1.yml deleted file mode 100644 index dd9a0169e5a..00000000000 --- a/src/licensedcode/data/rules/strongswan-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: strongswan-exception -is_license_text: yes diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3.RULE index dc9c33b53eb..41b82eee4dc 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3.RULE @@ -1 +1,9 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.sugarcrm.com/crm/SPL +--- + http://www.sugarcrm.com/crm/SPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3.yml deleted file mode 100644 index 1b6d481beca..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.sugarcrm.com/crm/SPL diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_1.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_1.RULE index 51558ee9f72..f04c699e191 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_1.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_1.RULE @@ -1 +1,7 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 100 +--- + SugarCRM Public License v1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_1.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_1.yml deleted file mode 100644 index 10b93ac3bd4..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_10.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_10.RULE index 59f4fdfb358..ed44ea2fda2 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_10.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_10.RULE @@ -1,3 +1,18 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_text: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright (c) 2004 SugarCRM, Inc. +ignorable_holders: + - SugarCRM, Inc. +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.sugarcrm.com/ + - http://www.sugarcrm.com/SPL + - http://www.sugarforge.org/ +--- + {{SUGARCRM PUBLIC LICENSE}} Applies to Sugar Open Source Edition v1 through v4. Please note that these releases are no longer supported or distributed. diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_10.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_10.yml deleted file mode 100644 index e6c0866d328..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_10.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_text: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright (c) 2004 SugarCRM, Inc. -ignorable_holders: - - SugarCRM, Inc. -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.sugarcrm.com/ - - http://www.sugarcrm.com/SPL - - http://www.sugarforge.org/ diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_11.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_11.RULE index 882c4c2a9d9..6c805e7c2a2 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_11.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_11.RULE @@ -1 +1,9 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SugarCRM-1.1.3 +--- + https://licenses.nuget.org/SugarCRM-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_11.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_11.yml deleted file mode 100644 index 871d6f67aa6..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SugarCRM-1.1.3 diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_12.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_12.RULE index 5e6c4ad8e37..030002145ab 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_12.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_12.RULE @@ -1 +1,7 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SugarCRM-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_12.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_12.yml deleted file mode 100644 index 10b93ac3bd4..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_13.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_13.RULE index 65eb46f5207..48ce3be517e 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_13.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_13.RULE @@ -1 +1,9 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SugarCRM-1.1.3 +--- + {{SugarCRM-1.1.3}} https://spdx.org/licenses/SugarCRM-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_13.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_13.yml deleted file mode 100644 index 647a0c4ccc2..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SugarCRM-1.1.3 diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_14.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_14.RULE index 54be09eaea6..d3493fc4a60 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_14.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_14.RULE @@ -1 +1,9 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SugarCRM-1.1.3 +--- + LICENSE {{SugarCRM-1.1.3}} https://spdx.org/licenses/SugarCRM-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_14.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_14.yml deleted file mode 100644 index 647a0c4ccc2..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SugarCRM-1.1.3 diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_2.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_2.RULE index 7d09a010d03..eb3cc0cb99e 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_2.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 100 +--- + The contents of this file are subject to the SugarCRM Public License Version 1.1.3 -("License"); \ No newline at end of file +("License"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_2.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_2.yml deleted file mode 100644 index 10b93ac3bd4..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_3.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_3.RULE index 4153ff5c59b..9f8cb8e6c13 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_3.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_3.RULE @@ -1,3 +1,17 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2004 SugarCRM, Inc. +ignorable_holders: + - SugarCRM, Inc. +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.sugarcrm.com/ + - http://www.sugarcrm.com/SPL + - http://www.sugarforge.org/ +--- + SUGARCRM PUBLIC LICENSE Version 1.1.3 diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_3.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_3.yml deleted file mode 100644 index c0cca44ac54..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_3.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2004 SugarCRM, Inc. -ignorable_holders: - - SugarCRM, Inc. -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.sugarcrm.com/ - - http://www.sugarcrm.com/SPL - - http://www.sugarforge.org/ diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_4.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_4.RULE index d24c8ed33cf..f835c6fe4a7 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_4.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_4.RULE @@ -1 +1,10 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SugarCRM Public License v1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_4.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_4.yml deleted file mode 100644 index 95d0ab9b6b2..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_5.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_5.RULE index 013b9b5f26c..2e662477a9a 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_5.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_5.RULE @@ -1 +1,10 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SugarCRM-1.1.3 SugarCRM Public License v1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_5.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_5.yml deleted file mode 100644 index 95d0ab9b6b2..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_6.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_6.RULE index 5b5bd4c6309..d7106d696d2 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_6.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_6.RULE @@ -1 +1,10 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SugarCRM Public License v1.1.3 SugarCRM-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_6.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_6.yml deleted file mode 100644 index 95d0ab9b6b2..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_7.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_7.RULE index e6a302bd690..4a1d4a37244 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_7.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_7.RULE @@ -1 +1,10 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SugarCRM-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_7.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_7.yml deleted file mode 100644 index 42345630152..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_8.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_8.RULE index 6646d75edf0..6612e0ee8f4 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_8.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_8.RULE @@ -1 +1,10 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SugarCRM Public License v1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_8.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_8.yml deleted file mode 100644 index 42345630152..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_9.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_9.RULE index dc90f208d34..4b8c4308d3a 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_9.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_9.RULE @@ -1 +1,10 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SugarCRM-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_9.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_9.yml deleted file mode 100644 index 42345630152..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_url_1.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_url_1.RULE index 43eff4d3abf..b1345cf8a09 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_url_1.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sugarcrm-1.1.3 +--- + https://spdx.org/licenses/sugarcrm-1.1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_url_1.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_url_1.yml deleted file mode 100644 index 560533c6a80..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sugarcrm-1.1.3 diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_url_2.RULE b/src/licensedcode/data/rules/sugarcrm-1.1.3_url_2.RULE index e8a2800113b..61e024a87a3 100644 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_url_2.RULE +++ b/src/licensedcode/data/rules/sugarcrm-1.1.3_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sugarcrm-1.1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sugarcrm-1.1.3.html +--- + https://spdx.org/licenses/sugarcrm-1.1.3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sugarcrm-1.1.3_url_2.yml b/src/licensedcode/data/rules/sugarcrm-1.1.3_url_2.yml deleted file mode 100644 index d5fbe800085..00000000000 --- a/src/licensedcode/data/rules/sugarcrm-1.1.3_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sugarcrm-1.1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sugarcrm-1.1.3.html diff --git a/src/licensedcode/data/rules/sun-bcl-11-06_2.RULE b/src/licensedcode/data/rules/sun-bcl-11-06_2.RULE index cc255403190..76915eab78d 100644 --- a/src/licensedcode/data/rules/sun-bcl-11-06_2.RULE +++ b/src/licensedcode/data/rules/sun-bcl-11-06_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sun-bcl-11-06 +is_license_notice: yes +minimum_coverage: 60 +--- + Sun Microsystems, Inc. Binary Code License Agreement @@ -132,4 +138,4 @@ subject matter during the term of this Agreement. No modification of this Agreement will be binding, unless in writing and signed by an authorized - representative of each party. + representative of each party. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bcl-11-06_2.yml b/src/licensedcode/data/rules/sun-bcl-11-06_2.yml deleted file mode 100644 index 6d344d9b537..00000000000 --- a/src/licensedcode/data/rules/sun-bcl-11-06_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-bcl-11-06 -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/sun-bcl-j2re-5.0.RULE b/src/licensedcode/data/rules/sun-bcl-j2re-5.0.RULE index 13a46104731..6d11eb280ea 100644 --- a/src/licensedcode/data/rules/sun-bcl-j2re-5.0.RULE +++ b/src/licensedcode/data/rules/sun-bcl-j2re-5.0.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-bcl-j2re-5.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://java.sun.com/j2se/1.5.0/jre-1_5_0_06-license.txt +--- + http://java.sun.com/j2se/1.5.0/jre-1_5_0_06-license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bcl-j2re-5.0.yml b/src/licensedcode/data/rules/sun-bcl-j2re-5.0.yml deleted file mode 100644 index d16c9797173..00000000000 --- a/src/licensedcode/data/rules/sun-bcl-j2re-5.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-bcl-j2re-5.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://java.sun.com/j2se/1.5.0/jre-1_5_0_06-license.txt diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_1.RULE b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_1.RULE index 25bbc96c9a6..45394568693 100644 --- a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_1.RULE +++ b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: sun-bcl-sdk-1.4.2 +is_license_text: yes +ignorable_copyrights: + - Copyright 2003, Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +ignorable_urls: + - http://www.sun.com/policies/trademarks +--- + Sun Microsystems, Inc. Binary Code License Agreement for the JAVATM 2 SOFTWARE DEVELOPMENT KIT (J2SDK), STANDARD EDITION, VERSION 1.4.2_X diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_1.yml b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_1.yml deleted file mode 100644 index 0fb56fafb9b..00000000000 --- a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: sun-bcl-sdk-1.4.2 -is_license_text: yes -ignorable_copyrights: - - Copyright 2003, Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. -ignorable_urls: - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_2.RULE b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_2.RULE index 8080fdf108d..9edd4678af0 100644 --- a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_2.RULE +++ b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_2.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-bcl-sdk-1.4.2 +is_license_reference: yes +relevance: 80 +--- + Binary Code License Agreement for the JAVA \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_2.yml b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_2.yml deleted file mode 100644 index 5b0eb787b7e..00000000000 --- a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-bcl-sdk-1.4.2 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_3.RULE b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_3.RULE index a84346ade11..46e75ae495b 100644 --- a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_3.RULE +++ b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_3.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-bcl-sdk-1.4.2 +is_license_reference: yes +relevance: 80 +--- + Binary Code License Agreement for the JAVATM \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_3.yml b/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_3.yml deleted file mode 100644 index 5b0eb787b7e..00000000000 --- a/src/licensedcode/data/rules/sun-bcl-sdk-1.4.2_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-bcl-sdk-1.4.2 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-5.0.RULE b/src/licensedcode/data/rules/sun-bcl-sdk-5.0.RULE index 240118139c2..d2e1ccc2744 100644 --- a/src/licensedcode/data/rules/sun-bcl-sdk-5.0.RULE +++ b/src/licensedcode/data/rules/sun-bcl-sdk-5.0.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-bcl-sdk-5.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.java.com/en/download/license.jsp +--- + http://www.java.com/en/download/license.jsp \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-5.0.yml b/src/licensedcode/data/rules/sun-bcl-sdk-5.0.yml deleted file mode 100644 index c8c9df9db06..00000000000 --- a/src/licensedcode/data/rules/sun-bcl-sdk-5.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-bcl-sdk-5.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.java.com/en/download/license.jsp diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-5.0_1.RULE b/src/licensedcode/data/rules/sun-bcl-sdk-5.0_1.RULE index b17a2c139e0..ab76899e47d 100644 --- a/src/licensedcode/data/rules/sun-bcl-sdk-5.0_1.RULE +++ b/src/licensedcode/data/rules/sun-bcl-sdk-5.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-bcl-sdk-5.0 +is_license_reference: yes +relevance: 100 +--- + licensed under Suns Binary Code License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bcl-sdk-5.0_1.yml b/src/licensedcode/data/rules/sun-bcl-sdk-5.0_1.yml deleted file mode 100644 index e7ac70dfce0..00000000000 --- a/src/licensedcode/data/rules/sun-bcl-sdk-5.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-bcl-sdk-5.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sun-bsd-extra_1.RULE b/src/licensedcode/data/rules/sun-bsd-extra_1.RULE index 3981c7b1146..b6ada12f59c 100644 --- a/src/licensedcode/data/rules/sun-bsd-extra_1.RULE +++ b/src/licensedcode/data/rules/sun-bsd-extra_1.RULE @@ -1 +1,8 @@ +--- +license_expression: sun-bsd-extra +is_license_reference: yes +relevance: 100 +notes: this is a weak reference found in some historical Java code +--- + Sun Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-extra_1.yml b/src/licensedcode/data/rules/sun-bsd-extra_1.yml deleted file mode 100644 index 2e107b2eb11..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-extra_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sun-bsd-extra -is_license_reference: yes -relevance: 100 -notes: this is a weak reference found in some historical Java code diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_1.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_1.RULE index b8afb7da54e..3c9d67b6342 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_1.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sun-bsd-no-nuclear +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: * diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_1.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_1.yml deleted file mode 100644 index 114dd94c1e6..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_text: yes diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_10.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_10.RULE index 70134083dd1..99541a7864a 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_10.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_10.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License +--- + {{BSD-3-Clause-No-Nuclear-License}} https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_10.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_10.yml deleted file mode 100644 index b778191eb7c..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_11.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_11.RULE index 287b23ca0bf..6b67775b630 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_11.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_11.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License +--- + LICENSE {{BSD-3-Clause-No-Nuclear-License}} https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_11.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_11.yml deleted file mode 100644 index b778191eb7c..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_2.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_2.RULE index 48968842b59..393cde0876b 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_2.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sun-bsd-no-nuclear +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: diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_2.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_2.yml deleted file mode 100644 index 114dd94c1e6..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_text: yes diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_3.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_3.RULE index a8dbd2ee2f6..17cf37173bd 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_3.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_text: yes +relevance: 99 +notes: there are some typos, but this text is rather common +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_3.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_3.yml deleted file mode 100644 index e8e3065364a..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_text: yes -relevance: 99 -notes: there are some typos, but this text is rather common diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_4.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_4.RULE index aa23c4c26e2..adf69957b70 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_4.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_4.RULE @@ -1 +1,8 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +is_continuous: yes +minimum_coverage: 100 +--- + BSD-3-Clause-No-Nuclear-License BSD 3-Clause No Nuclear License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_4.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_4.yml deleted file mode 100644 index 72220495967..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -is_continuous: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_5.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_5.RULE index ea75a3d7b43..455b6aa2e3f 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_5.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_5.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: BSD 3-Clause No Nuclear License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_5.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_5.yml deleted file mode 100644 index 27c58834964..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_6.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_6.RULE index f05b738cc19..83d7c3f12a0 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_6.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_6.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: BSD-3-Clause-No-Nuclear-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_6.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_6.yml deleted file mode 100644 index fb25addb795..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_7.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_7.RULE index a48c27c3b30..3990a6db294 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_7.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_7.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: BSD-3-Clause-No-Nuclear-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_7.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_7.yml deleted file mode 100644 index fb25addb795..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_8.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_8.RULE index c93df494d8d..921cab0d0e6 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_8.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_8.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-License +--- + https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_8.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_8.yml deleted file mode 100644 index f415307160d..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/BSD-3-Clause-No-Nuclear-License diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_9.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_9.RULE index 1ff5b5d5680..326a7a2eff7 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_9.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_9.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/BSD-3-Clause-No-Nuclear-License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_9.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_9.yml deleted file mode 100644 index 03a8df6b6b1..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_1.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_1.RULE index 332a24a2748..33d3f9b6a47 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_1.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_text: yes +relevance: 99 +minimum_coverage: 95 +ignorable_copyrights: + - copyrighted by SUN +ignorable_holders: + - SUN +--- + The following files contain material that was copyrighted by SUN: The original code was released under the BSD license, and contained the following @@ -45,4 +56,4 @@ design, construction, operation or maintenance of any nuclear facility. The main difference can be found in the final paragraph: the restriction that the source code is not "licensed" in this particular situation has -been removed. +been removed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_1.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_1.yml deleted file mode 100644 index 19962413a5a..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_text: yes -relevance: 99 -minimum_coverage: 95 -ignorable_copyrights: - - copyrighted by SUN -ignorable_holders: - - SUN diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_2.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_2.RULE index 4dbbb75ce58..e4f3ac7ea4f 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_2.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +ignorable_copyrights: + - copyrighted by SUN +ignorable_holders: + - SUN +--- + The following files contain material that was copyrighted by SUN: The original code was released under the BSD license, and contained the following @@ -12,4 +23,4 @@ ability to handle a lot of 'broken' TIFFs." Note that numerous fixes were applied to the code used in iText by Paulo Soares, but apart from the fixes there were no essential changes between the code that was originally adapted and the code that is now available under the following -license: +license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_2.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_2.yml deleted file mode 100644 index c06ec1138f0..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 -ignorable_copyrights: - - copyrighted by SUN -ignorable_holders: - - SUN diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_3.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_3.RULE index 3adf7efc27d..7656b998c39 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_3.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: bsd-3-clause-no-nuclear-warranty +is_license_text: yes +relevance: 99 +minimum_coverage: 95 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -30,4 +37,4 @@ You acknowledge that this software is not designed or intended for use in the design, construction, operation or maintenance of any - nuclear facility. + nuclear facility. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_3.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_3.yml deleted file mode 100644 index d4e288bc3c9..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-3-clause-no-nuclear-warranty -is_license_text: yes -relevance: 99 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.RULE index 529ee53b85d..bdff279a839 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: unicode +is_license_text: yes +ignorable_copyrights: + - Copyright (c) Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/copyright.html + - http://www.unicode.org/copyright.html#Exhibit1 + - http://www.unicode.org/reports +--- + The following license applies to these materials: http://www.unicode.org/copyright.html#Exhibit1 @@ -47,4 +63,4 @@ The following license applies to these materials: Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the - copyright holder. + copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.yml deleted file mode 100644 index 48dbe37ed46..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: unicode -is_license_text: yes -ignorable_copyrights: - - Copyright (c) Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/cldr/data/ - - http://www.unicode.org/copyright.html - - http://www.unicode.org/copyright.html#Exhibit1 - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_1.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_1.RULE index 66cd81454bf..da70e62b466 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_1.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-no-nuclear-license +--- + https://spdx.org/licenses/bsd-3-clause-no-nuclear-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_1.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_1.yml deleted file mode 100644 index 48b7249d715..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-no-nuclear-license diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_2.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_2.RULE index a75d0165c55..2e0dcb1715c 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_2.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-bsd-no-nuclear +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/bsd-3-clause-no-nuclear-license.html +--- + https://spdx.org/licenses/bsd-3-clause-no-nuclear-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_2.yml b/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_2.yml deleted file mode 100644 index 6b68787fe2b..00000000000 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-bsd-no-nuclear -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/bsd-3-clause-no-nuclear-license.html diff --git a/src/licensedcode/data/rules/sun-ejb-spec-2.1.RULE b/src/licensedcode/data/rules/sun-ejb-spec-2.1.RULE index 03569f92cc4..943f9dd6e38 100644 --- a/src/licensedcode/data/rules/sun-ejb-spec-2.1.RULE +++ b/src/licensedcode/data/rules/sun-ejb-spec-2.1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sun-ejb-spec-2.1 +is_license_text: yes +minimum_coverage: 60 +--- + Sun Microsystems, Inc. ("Sun") hereby grants you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under the Sun's applicable intellectual property rights to view, download, use @@ -105,4 +111,4 @@ grant Sun a perpetual, non-exclusive, worldwide, fully paid-up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and -test suites thereof. \ No newline at end of file +test suites thereof. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-ejb-spec-2.1.yml b/src/licensedcode/data/rules/sun-ejb-spec-2.1.yml deleted file mode 100644 index c9ca330225a..00000000000 --- a/src/licensedcode/data/rules/sun-ejb-spec-2.1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-ejb-spec-2.1 -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/sun-ejb-spec-2.1_1.RULE b/src/licensedcode/data/rules/sun-ejb-spec-2.1_1.RULE index 477ddfc36d6..ca42cb1bcad 100644 --- a/src/licensedcode/data/rules/sun-ejb-spec-2.1_1.RULE +++ b/src/licensedcode/data/rules/sun-ejb-spec-2.1_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sun-ejb-spec-2.1 +is_license_text: yes +minimum_coverage: 60 +--- + Sun Microsystems, Inc. ("Sun") hereby grants you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under the Sun's applicable intellectual property rights to view, download, use and reproduce the Specification only for the purpose of internal evaluation, which shall be understood to include developing applications intended to run on an implementation of the Specification provided that such applications do not themselves implement any portion(s) of the Specification. Sun also grants you a perpetual, non-exclusive, worldwide, fully paid-up, royalty free, limited license (without the right to sublicense) under any applicable copyrights or patent rights it may have in the Specification to create and/or distribute an Independent Implementation of the Specification that: (i) fully implements the Spec(s) including all its required interfaces and functionality; (ii) does not modify, subset, superset or otherwise extend the Licensor Name Space, or include any public or protected packages, classes, Java interfaces, fields or methods within the Licensor Name Space other than those required/authorized by the Specification or Specifications being implemented; and (iii) passes the TCK (including satisfying the requirements of the applicable TCK Users Guide) for such Specification. The foregoing license is expressly conditioned on your not acting outside its scope. No license is granted hereunder for any other purpose. @@ -30,4 +36,4 @@ U.S. Government: If this Specification is being acquired by or on behalf of the REPORT -You may wish to report any ambiguities, inconsistencies or inaccuracies you may find in connection with your use of the Specification ("Feedback"). To the extent that you provide Sun with any Feedback, you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Sun a perpetual, non-exclusive, worldwide, fully paid- up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and test suites thereof. +You may wish to report any ambiguities, inconsistencies or inaccuracies you may find in connection with your use of the Specification ("Feedback"). To the extent that you provide Sun with any Feedback, you hereby: (i) agree that such Feedback is provided on a non-proprietary and non-confidential basis, and (ii) grant Sun a perpetual, non-exclusive, worldwide, fully paid- up, irrevocable license, with the right to sublicense through multiple levels of sublicensees, to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and test suites thereof. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-ejb-spec-2.1_1.yml b/src/licensedcode/data/rules/sun-ejb-spec-2.1_1.yml deleted file mode 100644 index c9ca330225a..00000000000 --- a/src/licensedcode/data/rules/sun-ejb-spec-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-ejb-spec-2.1 -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/sun-ejb-spec-2.1_2.RULE b/src/licensedcode/data/rules/sun-ejb-spec-2.1_2.RULE index 6dc6e68ef65..21f6dcd43dd 100644 --- a/src/licensedcode/data/rules/sun-ejb-spec-2.1_2.RULE +++ b/src/licensedcode/data/rules/sun-ejb-spec-2.1_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sun-ejb-spec-2.1 +is_license_text: yes +minimum_coverage: 60 +--- + NOTICE; LIMITED LICENSE GRANTS Sun Microsystems, Inc. ("Sun") hereby grants you a fully-paid, non-exclusive, @@ -109,4 +115,4 @@ to incorporate, disclose, and use without limitation the Feedback for any purpose related to the Specification and future versions, implementations, and test suites thereof. -(LFI#136187/Form ID#011801) +(LFI#136187/Form ID#011801) \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-ejb-spec-2.1_2.yml b/src/licensedcode/data/rules/sun-ejb-spec-2.1_2.yml deleted file mode 100644 index c9ca330225a..00000000000 --- a/src/licensedcode/data/rules/sun-ejb-spec-2.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-ejb-spec-2.1 -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/sun-entitlement-jaf.RULE b/src/licensedcode/data/rules/sun-entitlement-jaf.RULE index 150c38c2a56..9205ce32477 100644 --- a/src/licensedcode/data/rules/sun-entitlement-jaf.RULE +++ b/src/licensedcode/data/rules/sun-entitlement-jaf.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sun-entitlement-jaf +is_license_text: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + A. Sun Microsystems, Inc. ("Sun") ENTITLEMENT for SOFTWARE Licensee/Company: Entity receiving Software. @@ -299,4 +308,4 @@ of this Agreement will be binding, unless in writing and signed by an authorized representative of each party. Please contact Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, -California 95054 if you have questions. +California 95054 if you have questions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-entitlement-jaf.yml b/src/licensedcode/data/rules/sun-entitlement-jaf.yml deleted file mode 100644 index 4d812cf6ea5..00000000000 --- a/src/licensedcode/data/rules/sun-entitlement-jaf.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-entitlement-jaf -is_license_text: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.java.net/ - - http://www.sun.com/service/servicelist diff --git a/src/licensedcode/data/rules/sun-entitlement-jaf2.RULE b/src/licensedcode/data/rules/sun-entitlement-jaf2.RULE index 4b468aa6d94..fe3ec084cfc 100644 --- a/src/licensedcode/data/rules/sun-entitlement-jaf2.RULE +++ b/src/licensedcode/data/rules/sun-entitlement-jaf2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sun-entitlement-jaf +is_license_text: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.java.net/ + - http://www.sun.com/service/servicelist +--- + Sun Microsystems, Inc. ("Sun") ENTITLEMENT for SOFTWARE Licensee/Company: Entity receiving Software. @@ -365,4 +374,4 @@ representative of each party. Please contact Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, California 95054 if you have -questions. +questions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-entitlement-jaf2.yml b/src/licensedcode/data/rules/sun-entitlement-jaf2.yml deleted file mode 100644 index 4d812cf6ea5..00000000000 --- a/src/licensedcode/data/rules/sun-entitlement-jaf2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-entitlement-jaf -is_license_text: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.java.net/ - - http://www.sun.com/service/servicelist diff --git a/src/licensedcode/data/rules/sun-glassfish.RULE b/src/licensedcode/data/rules/sun-glassfish.RULE index 2e23719b318..ba5ecf0d0b8 100644 --- a/src/licensedcode/data/rules/sun-glassfish.RULE +++ b/src/licensedcode/data/rules/sun-glassfish.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-glassfish +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://glassfish.dev.java.net/public/BinariesLicense.html +--- + https://glassfish.dev.java.net/public/BinariesLicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-glassfish.yml b/src/licensedcode/data/rules/sun-glassfish.yml deleted file mode 100644 index 70a2469546a..00000000000 --- a/src/licensedcode/data/rules/sun-glassfish.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-glassfish -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://glassfish.dev.java.net/public/BinariesLicense.html diff --git a/src/licensedcode/data/rules/sun-java-web-services-dev-pack-1.6.RULE b/src/licensedcode/data/rules/sun-java-web-services-dev-pack-1.6.RULE index b5e0cb42663..81ad1e3227b 100644 --- a/src/licensedcode/data/rules/sun-java-web-services-dev-pack-1.6.RULE +++ b/src/licensedcode/data/rules/sun-java-web-services-dev-pack-1.6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sun-java-web-services-dev-pack-1.6 +is_license_text: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.java.sun.com/jdk/index.html + - http://www.sun.com/policies/trademarks +--- + JAVA WEB SERVICES DEVELOPER PACK, VERSION 1.6 Sun Microsystems Inc. Software License Agreement @@ -335,5 +344,4 @@ party'sopinion be likely to become, the subject of a claim of infringement of any intellectual property right. For inquiries please contact: Sun Microsystems, Inc. 4150 Network -Circle, Santa Clara, California 95054. - +Circle, Santa Clara, California 95054. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-java-web-services-dev-pack-1.6.yml b/src/licensedcode/data/rules/sun-java-web-services-dev-pack-1.6.yml deleted file mode 100644 index 2a86bad2183..00000000000 --- a/src/licensedcode/data/rules/sun-java-web-services-dev-pack-1.6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-java-web-services-dev-pack-1.6 -is_license_text: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.java.sun.com/jdk/index.html - - http://www.sun.com/policies/trademarks diff --git a/src/licensedcode/data/rules/sun-jsr-spec-01-2006_1.RULE b/src/licensedcode/data/rules/sun-jsr-spec-01-2006_1.RULE index ee5daa3008a..d6e64022b77 100644 --- a/src/licensedcode/data/rules/sun-jsr-spec-01-2006_1.RULE +++ b/src/licensedcode/data/rules/sun-jsr-spec-01-2006_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sun-jsr-spec-04-2006 +is_license_text: yes +minimum_coverage: 60 +notes: BEA variant +--- + 1. License for Evaluation Purposes. BEA hereby grants you a fully-paid, non-exclusive, non-transferable, worldwide, limited license (without the right to sublicense), under BEA's applicable intellectual property diff --git a/src/licensedcode/data/rules/sun-jsr-spec-01-2006_1.yml b/src/licensedcode/data/rules/sun-jsr-spec-01-2006_1.yml deleted file mode 100644 index 78d61fd0132..00000000000 --- a/src/licensedcode/data/rules/sun-jsr-spec-01-2006_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sun-jsr-spec-04-2006 -is_license_text: yes -minimum_coverage: 60 -notes: BEA variant diff --git a/src/licensedcode/data/rules/sun-jta-spec-1.0.1.RULE b/src/licensedcode/data/rules/sun-jta-spec-1.0.1.RULE index ab33c87b502..af6c6136b83 100644 --- a/src/licensedcode/data/rules/sun-jta-spec-1.0.1.RULE +++ b/src/licensedcode/data/rules/sun-jta-spec-1.0.1.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-jta-spec-1.0.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download +--- + http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-jta-spec-1.0.1.yml b/src/licensedcode/data/rules/sun-jta-spec-1.0.1.yml deleted file mode 100644 index eab452351a9..00000000000 --- a/src/licensedcode/data/rules/sun-jta-spec-1.0.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-jta-spec-1.0.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://download.oracle.com/otndocs/jcp/7286-jta-1.0.1-spec-oth-JSpec/?submit=Download diff --git a/src/licensedcode/data/rules/sun-jta-spec-1.0.2.RULE b/src/licensedcode/data/rules/sun-jta-spec-1.0.2.RULE index a9ee3d91e5f..96ce0faa1e3 100644 --- a/src/licensedcode/data/rules/sun-jta-spec-1.0.2.RULE +++ b/src/licensedcode/data/rules/sun-jta-spec-1.0.2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: sun-jta-spec-1.0.1 +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright 2002 Sun Microsystems, Inc. +ignorable_holders: + - Sun Microsystems, Inc. +--- + Java(TM) Transaction API (JTA) Specification ("Specification") Version: 1.0.1B @@ -173,4 +183,4 @@ related to the Specification and future versions, implementations, and test suites thereof. - (LFI#121049/Form ID#011801) + (LFI#121049/Form ID#011801) \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-jta-spec-1.0.2.yml b/src/licensedcode/data/rules/sun-jta-spec-1.0.2.yml deleted file mode 100644 index 80e2eebaed7..00000000000 --- a/src/licensedcode/data/rules/sun-jta-spec-1.0.2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: sun-jta-spec-1.0.1 -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright 2002 Sun Microsystems, Inc. -ignorable_holders: - - Sun Microsystems, Inc. diff --git a/src/licensedcode/data/rules/sun-no-high-risk-activities_1.RULE b/src/licensedcode/data/rules/sun-no-high-risk-activities_1.RULE index 4fc8d25e3e7..7c2ed5bd768 100644 --- a/src/licensedcode/data/rules/sun-no-high-risk-activities_1.RULE +++ b/src/licensedcode/data/rules/sun-no-high-risk-activities_1.RULE @@ -1 +1,8 @@ +--- +license_expression: sun-no-high-risk-activities +is_license_reference: yes +relevance: 99 +minimum_coverage: 95 +--- + License terms appear in {{Sun Printf License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-no-high-risk-activities_1.yml b/src/licensedcode/data/rules/sun-no-high-risk-activities_1.yml deleted file mode 100644 index 5b9ea8d5ee0..00000000000 --- a/src/licensedcode/data/rules/sun-no-high-risk-activities_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sun-no-high-risk-activities -is_license_reference: yes -relevance: 99 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/sun-no-high-risk-activities_2.RULE b/src/licensedcode/data/rules/sun-no-high-risk-activities_2.RULE index 6b89de507fb..bd6fa3340cd 100644 --- a/src/licensedcode/data/rules/sun-no-high-risk-activities_2.RULE +++ b/src/licensedcode/data/rules/sun-no-high-risk-activities_2.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-no-high-risk-activities +is_license_text: yes +minimum_coverage: 95 +ignorable_urls: + - http://java.sun.com/nav/business/index.html + - http://www.sun.com/policies/trademarks/ +--- + {{Sun Printf License}} Permission to use, copy, modify, and distribute this Software and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee is hereby granted. This Software is provided "AS IS". All express warranties, including any implied warranty of merchantability, satisfactory quality, fitness for a particular purpose, or non-infringement, are disclaimed, except to the extent that such disclaimers are held to be legally invalid. You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility ("High Risk Activities"). Sun disclaims any express or implied warranty of fitness for such uses. Please refer to the file http://www.sun.com/policies/trademarks/ for further important trademark information and to http://java.sun.com/nav/business/index.html for further important licensing information for the Java Technology. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-no-high-risk-activities_2.yml b/src/licensedcode/data/rules/sun-no-high-risk-activities_2.yml deleted file mode 100644 index 10396b01e1b..00000000000 --- a/src/licensedcode/data/rules/sun-no-high-risk-activities_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-no-high-risk-activities -is_license_text: yes -minimum_coverage: 95 -ignorable_urls: - - http://java.sun.com/nav/business/index.html - - http://www.sun.com/policies/trademarks/ diff --git a/src/licensedcode/data/rules/sun-proprietary-jdk.RULE b/src/licensedcode/data/rules/sun-proprietary-jdk.RULE index e0dfc26dfc0..7f12a86a3e4 100644 --- a/src/licensedcode/data/rules/sun-proprietary-jdk.RULE +++ b/src/licensedcode/data/rules/sun-proprietary-jdk.RULE @@ -1 +1,7 @@ +--- +license_expression: proprietary-license +is_license_reference: yes +relevance: 100 +--- + SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-proprietary-jdk.yml b/src/licensedcode/data/rules/sun-proprietary-jdk.yml deleted file mode 100644 index c6d898d464a..00000000000 --- a/src/licensedcode/data/rules/sun-proprietary-jdk.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sun-rpc.RULE b/src/licensedcode/data/rules/sun-rpc.RULE index dc3c3ecc5e6..927a1804f2a 100644 --- a/src/licensedcode/data/rules/sun-rpc.RULE +++ b/src/licensedcode/data/rules/sun-rpc.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-rpc +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.apple.com/license/sunrpc/ +--- + http://www.opensource.apple.com/license/sunrpc/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-rpc.yml b/src/licensedcode/data/rules/sun-rpc.yml deleted file mode 100644 index 2ccbb2836ce..00000000000 --- a/src/licensedcode/data/rules/sun-rpc.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-rpc -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.apple.com/license/sunrpc/ diff --git a/src/licensedcode/data/rules/sun-rpc_1.RULE b/src/licensedcode/data/rules/sun-rpc_1.RULE index 38399c9c04c..53b4c972eb8 100644 --- a/src/licensedcode/data/rules/sun-rpc_1.RULE +++ b/src/licensedcode/data/rules/sun-rpc_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: sun-rpc +is_license_text: yes +relevance: 95 +notes: adds an extra "or with the express written consent of Sun Microsystems, Inc." permission +--- + Sun Microsystems ( Sun RPC ) Sun RPC is a product of Sun Microsystems, Inc. and is provided for unrestricted use provided that this legend is included on all tape media and as a part of the software program in whole or part. Users may copy or modify Sun RPC without charge, but are not authorized to license or distribute it to anyone else except as part of a product or program developed by the user or with the express written consent of Sun Microsystems, Inc. Sun RPC is provided with no support and without any obligation on the part of Sun Microsystems, Inc. to assist in its use, correction, modification or enhancement. diff --git a/src/licensedcode/data/rules/sun-rpc_1.yml b/src/licensedcode/data/rules/sun-rpc_1.yml deleted file mode 100644 index 05177475a55..00000000000 --- a/src/licensedcode/data/rules/sun-rpc_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: sun-rpc -is_license_text: yes -relevance: 95 -notes: adds an extra "or with the express written consent of Sun Microsystems, Inc." permission diff --git a/src/licensedcode/data/rules/sun-sissl-1.1.RULE b/src/licensedcode/data/rules/sun-sissl-1.1.RULE index 981ed83887f..a195ab52dc3 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +minimum_coverage: 40 +ignorable_urls: + - http://www.openoffice.org/license.html +--- + Sun Industry Standards Source License Version 1.1 ================================================= The contents of this file are subject to the Sun Industry Standards diff --git a/src/licensedcode/data/rules/sun-sissl-1.1.SPDX.RULE b/src/licensedcode/data/rules/sun-sissl-1.1.SPDX.RULE index 3f58ada9ad4..507175f7fad 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1.SPDX.RULE @@ -1,3 +1,13 @@ +--- +license_expression: sun-sissl-1.1 +is_license_text: yes +minimum_coverage: 70 +notes: license text as published by SPDX +ignorable_urls: + - http://api.openoffice.org/ + - http://xml.openoffice.org/ +--- + Sun Industry Standards Source License - Version 1.1 1.0 DEFINITIONS diff --git a/src/licensedcode/data/rules/sun-sissl-1.1.SPDX.yml b/src/licensedcode/data/rules/sun-sissl-1.1.SPDX.yml deleted file mode 100644 index fd9f9aa5684..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1.SPDX.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_text: yes -minimum_coverage: 70 -notes: license text as published by SPDX -ignorable_urls: - - http://api.openoffice.org/ - - http://xml.openoffice.org/ diff --git a/src/licensedcode/data/rules/sun-sissl-1.1.yml b/src/licensedcode/data/rules/sun-sissl-1.1.yml deleted file mode 100644 index 2ce777716d7..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -minimum_coverage: 40 -ignorable_urls: - - http://www.openoffice.org/license.html diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_1.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_1.RULE index 5447813b7d1..153bd2d93a3 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_1.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_text: yes +minimum_coverage: 50 +--- + SUN INDUSTRY STANDARDS SOURCE LICENSE Version 1.1 1.0 @@ -242,4 +248,4 @@ District of California, with venue lying in Santa Clara County, California, with responsible for costs, including without limitation, court costs and reasonable attorneys’ fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a -contract shall be construed against the drafter shall not apply to this License. +contract shall be construed against the drafter shall not apply to this License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_1.yml b/src/licensedcode/data/rules/sun-sissl-1.1_1.yml deleted file mode 100644 index cc6d7308f3d..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_10.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_10.RULE index 48c53c9eee5..3c36e1efbd8 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_10.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SISSL Sun Industry Standards Source License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_10.yml b/src/licensedcode/data/rules/sun-sissl-1.1_10.yml deleted file mode 100644 index 0b0a5eae50f..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_11.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_11.RULE index c3ac177a870..0e534edfcd9 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_11.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sun Industry Standards Source License v1.1 SISSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_11.yml b/src/licensedcode/data/rules/sun-sissl-1.1_11.yml deleted file mode 100644 index 0b0a5eae50f..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_12.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_12.RULE index 7324c9d25ee..89f85346c79 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_12.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SISSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_12.yml b/src/licensedcode/data/rules/sun-sissl-1.1_12.yml deleted file mode 100644 index 2e82692f8c1..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_13.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_13.RULE index 4f6344a8adf..c6f3d76d937 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_13.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_13.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sun Industry Standards Source License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_13.yml b/src/licensedcode/data/rules/sun-sissl-1.1_13.yml deleted file mode 100644 index 2e82692f8c1..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_14.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_14.RULE index 41c032aac21..d67b579d976 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_14.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_14.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SISSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_14.yml b/src/licensedcode/data/rules/sun-sissl-1.1_14.yml deleted file mode 100644 index 2e82692f8c1..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_15.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_15.RULE index 157cd872e8c..72c54c912f6 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_15.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SISSL +--- + https://licenses.nuget.org/SISSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_15.yml b/src/licensedcode/data/rules/sun-sissl-1.1_15.yml deleted file mode 100644 index 772ce02f99c..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SISSL diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_16.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_16.RULE index 4fef41ab963..302b2aada5b 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_16.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_16.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SISSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_16.yml b/src/licensedcode/data/rules/sun-sissl-1.1_16.yml deleted file mode 100644 index f7bff9e7ce4..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_17.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_17.RULE index 87f417978f3..cec8c1a832f 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_17.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_17.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SISSL +--- + {{SISSL}} https://spdx.org/licenses/SISSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_17.yml b/src/licensedcode/data/rules/sun-sissl-1.1_17.yml deleted file mode 100644 index 7c3d67d72c9..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SISSL diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_18.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_18.RULE index e6459edeedc..373b6426d5f 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_18.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_18.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SISSL +--- + LICENSE {{SISSL}} https://spdx.org/licenses/SISSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_18.yml b/src/licensedcode/data/rules/sun-sissl-1.1_18.yml deleted file mode 100644 index 7c3d67d72c9..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SISSL diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_2.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_2.RULE index 2dfb0916e7d..22dfd2d3a65 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_2.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.openoffice.org/licenses/sissl_license.html +--- + http://www.openoffice.org/licenses/sissl_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_2.yml b/src/licensedcode/data/rules/sun-sissl-1.1_2.yml deleted file mode 100644 index 94f1c3c4fe7..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.openoffice.org/licenses/sissl_license.html diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_3.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_3.RULE index ce84206d689..239ab81e2bd 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_3.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: sun-sissl-1.1 +is_license_text: yes +minimum_coverage: 70 +ignorable_urls: + - http://api.openoffice.org/ + - http://xml.openoffice.org/ +--- + Sun Industry Standards Source License - Version 1.1 @@ -136,5 +145,4 @@ The Standard is defined as the following: OpenOffice.org XML File Format Specification, located at http://xml.openoffice.org OpenOffice.org Application Programming Interface Specification, located at -http://api.openoffice.org - +http://api.openoffice.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_3.yml b/src/licensedcode/data/rules/sun-sissl-1.1_3.yml deleted file mode 100644 index 5fce1f7e715..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_text: yes -minimum_coverage: 70 -ignorable_urls: - - http://api.openoffice.org/ - - http://xml.openoffice.org/ diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_4.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_4.RULE index e88e4e908c2..3a84052faf1 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_4.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +--- + Sun Industry Standards Source License Version 1 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_4.yml b/src/licensedcode/data/rules/sun-sissl-1.1_4.yml deleted file mode 100644 index f7bff9e7ce4..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_5.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_5.RULE index 964dab6f8d0..3d542d8cdd8 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_5.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_text: yes +minimum_coverage: 70 +--- + Sun Industry Standards Source License - Version 1.1 Note: A printer friendly version of this license is available in HREF="//licenses/sissl_license_1-1.pdf" PDF format @@ -285,4 +291,4 @@ are Copyright (C): All Rights Reserved. -Contributor(s): \ No newline at end of file +Contributor(s): \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_5.yml b/src/licensedcode/data/rules/sun-sissl-1.1_5.yml deleted file mode 100644 index eacd1f2aa28..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_text: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_6.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_6.RULE index a255c7beeaf..c5bf5577e42 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_6.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_6.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/sissl_license_1-1.pdf +--- + licenses/sissl_license_1-1.pdf" \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_6.yml b/src/licensedcode/data/rules/sun-sissl-1.1_6.yml deleted file mode 100644 index 84e02f78328..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/sissl_license_1-1.pdf diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_7.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_7.RULE index 1a67f4b839d..d45312e99f4 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_7.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_7.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +--- + SISSL license 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_7.yml b/src/licensedcode/data/rules/sun-sissl-1.1_7.yml deleted file mode 100644 index f7bff9e7ce4..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_8.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_8.RULE index eea5da183f6..eb4f6238d02 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_8.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sun Industry Standards Source License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_8.yml b/src/licensedcode/data/rules/sun-sissl-1.1_8.yml deleted file mode 100644 index 0b0a5eae50f..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_9.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_9.RULE index 9a9f5afd3ca..2702068b4fe 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_9.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Sun Industry Standards Source License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_9.yml b/src/licensedcode/data/rules/sun-sissl-1.1_9.yml deleted file mode 100644 index 0b0a5eae50f..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_url_1.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_url_1.RULE index e69f3059c4a..54463e8ea5c 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sissl +--- + https://spdx.org/licenses/sissl \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_url_1.yml b/src/licensedcode/data/rules/sun-sissl-1.1_url_1.yml deleted file mode 100644 index 55ae652d500..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sissl diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_url_2.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_url_2.RULE index b470b086d5b..18a05b16ec8 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sissl.html +--- + https://spdx.org/licenses/sissl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_url_2.yml b/src/licensedcode/data/rules/sun-sissl-1.1_url_2.yml deleted file mode 100644 index d06b99daa7c..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sissl.html diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_108.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_108.RULE index 47cf95777c6..48de360dda9 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_108.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_108.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/sissl +--- + http://opensource.org/licenses/sissl \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_108.yml b/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_108.yml deleted file mode 100644 index 19cb5ef966c..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/sissl diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_109.RULE b/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_109.RULE index da341e172f2..c02c067c34e 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_109.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_109.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/sissl +--- + https://opensource.org/licenses/sissl \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_109.yml b/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_109.yml deleted file mode 100644 index 1a2d29f02f8..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.1_url_glc_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/sissl diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_1.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_1.RULE index 8d938289af9..b8354d15f00 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_1.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_1.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sun Industry Standards Source License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_1.yml b/src/licensedcode/data/rules/sun-sissl-1.2_1.yml deleted file mode 100644 index 2e403f72a1f..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_10.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_10.RULE index da8ca0b226b..1c6866add03 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_10.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_10.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SISSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_10.yml b/src/licensedcode/data/rules/sun-sissl-1.2_10.yml deleted file mode 100644 index 29a465dff14..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_11.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_11.RULE index 83ff40484f0..d74af74fb4a 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_11.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_11.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SISSL-1.2 +--- + LICENSE {{SISSL-1.2}} https://spdx.org/licenses/SISSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_11.yml b/src/licensedcode/data/rules/sun-sissl-1.2_11.yml deleted file mode 100644 index 2715ca17ef9..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SISSL-1.2 diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_12.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_12.RULE index 3075de439b4..98ccb155ca6 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_12.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_12.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SISSL-1.2 +--- + {{SISSL-1.2}} https://spdx.org/licenses/SISSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_12.yml b/src/licensedcode/data/rules/sun-sissl-1.2_12.yml deleted file mode 100644 index 2715ca17ef9..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SISSL-1.2 diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_2.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_2.RULE index c46300cfac9..8f73cfa1019 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_2.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_2.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Sun Industry Standards Source License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_2.yml b/src/licensedcode/data/rules/sun-sissl-1.2_2.yml deleted file mode 100644 index 2e403f72a1f..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_3.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_3.RULE index 0ea1b14e56e..f11a71d48b7 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_3.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_3.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SISSL-1.2 Sun Industry Standards Source License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_3.yml b/src/licensedcode/data/rules/sun-sissl-1.2_3.yml deleted file mode 100644 index 2e403f72a1f..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_4.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_4.RULE index 1aa0666c9ba..9db05a2a2fa 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_4.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_4.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sun Industry Standards Source License v1.2 SISSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_4.yml b/src/licensedcode/data/rules/sun-sissl-1.2_4.yml deleted file mode 100644 index 2e403f72a1f..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_5.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_5.RULE index c1c1d6089ef..8363dc7a40c 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_5.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_5.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SISSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_5.yml b/src/licensedcode/data/rules/sun-sissl-1.2_5.yml deleted file mode 100644 index b6b07732f59..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_6.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_6.RULE index a6c73f7d880..1f0f1685aa9 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_6.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_6.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sun Industry Standards Source License v1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_6.yml b/src/licensedcode/data/rules/sun-sissl-1.2_6.yml deleted file mode 100644 index b6b07732f59..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_7.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_7.RULE index d7ea661540f..1b6bec105ad 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_7.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_7.RULE @@ -1 +1,10 @@ +--- +license_expression: sun-sissl-1.2 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SISSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_7.yml b/src/licensedcode/data/rules/sun-sissl-1.2_7.yml deleted file mode 100644 index b6b07732f59..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_8.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_8.RULE index e9bc0eb02e1..7f06c0c58ae 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_8.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_8.RULE @@ -1 +1,7 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/Sun_Industry_Standards_Source_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_8.yml b/src/licensedcode/data/rules/sun-sissl-1.2_8.yml deleted file mode 100644 index 5f5d90b68c5..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_9.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_9.RULE index 29f09f1d675..8be9975ee21 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_9.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_9.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SISSL-1.2 +--- + https://licenses.nuget.org/SISSL-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_9.yml b/src/licensedcode/data/rules/sun-sissl-1.2_9.yml deleted file mode 100644 index 6f5023f3eef..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SISSL-1.2 diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_url_1.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_url_1.RULE index 20dbfb14e18..7f22e70b3bf 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_url_1.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sissl-1.2 +--- + https://spdx.org/licenses/sissl-1.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_url_1.yml b/src/licensedcode/data/rules/sun-sissl-1.2_url_1.yml deleted file mode 100644 index 7deb03c0efd..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sissl-1.2 diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_url_2.RULE b/src/licensedcode/data/rules/sun-sissl-1.2_url_2.RULE index 4ab0b47aee8..b3bcef14d11 100644 --- a/src/licensedcode/data/rules/sun-sissl-1.2_url_2.RULE +++ b/src/licensedcode/data/rules/sun-sissl-1.2_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-sissl-1.2 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/sissl-1.2.html +--- + https://spdx.org/licenses/sissl-1.2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-sissl-1.2_url_2.yml b/src/licensedcode/data/rules/sun-sissl-1.2_url_2.yml deleted file mode 100644 index 999309472d9..00000000000 --- a/src/licensedcode/data/rules/sun-sissl-1.2_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-sissl-1.2 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/sissl-1.2.html diff --git a/src/licensedcode/data/rules/sun-source_1.RULE b/src/licensedcode/data/rules/sun-source_1.RULE index 510e4cd9236..348db7ed540 100644 --- a/src/licensedcode/data/rules/sun-source_1.RULE +++ b/src/licensedcode/data/rules/sun-source_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: sun-source +is_license_text: yes +--- + This source code is a product of Sun Microsystems, Inc. and is provided for unrestricted use. Users may copy or modify this source code without charge. diff --git a/src/licensedcode/data/rules/sun-source_1.yml b/src/licensedcode/data/rules/sun-source_1.yml deleted file mode 100644 index ab0e925b354..00000000000 --- a/src/licensedcode/data/rules/sun-source_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sun-source -is_license_text: yes diff --git a/src/licensedcode/data/rules/sun-ssscfr-1.1.RULE b/src/licensedcode/data/rules/sun-ssscfr-1.1.RULE index b8c436202dc..a13c6987258 100644 --- a/src/licensedcode/data/rules/sun-ssscfr-1.1.RULE +++ b/src/licensedcode/data/rules/sun-ssscfr-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: sun-ssscfr-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.mibsoftware.com/librock/librock/license/ssscfr.txt +--- + http://www.mibsoftware.com/librock/librock/license/ssscfr.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/sun-ssscfr-1.1.yml b/src/licensedcode/data/rules/sun-ssscfr-1.1.yml deleted file mode 100644 index 504831fd0dd..00000000000 --- a/src/licensedcode/data/rules/sun-ssscfr-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sun-ssscfr-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.mibsoftware.com/librock/librock/license/ssscfr.txt diff --git a/src/licensedcode/data/rules/sunpro_1.RULE b/src/licensedcode/data/rules/sunpro_1.RULE index 9356c2e5099..b58c7c5fb8e 100644 --- a/src/licensedcode/data/rules/sunpro_1.RULE +++ b/src/licensedcode/data/rules/sunpro_1.RULE @@ -1,4 +1,10 @@ +--- +license_expression: sunpro +is_license_text: yes +relevance: 100 +--- + Developed at SunSoft, a Sun Microsystems, Inc. business. Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice -is preserved. +is preserved. \ No newline at end of file diff --git a/src/licensedcode/data/rules/sunpro_1.yml b/src/licensedcode/data/rules/sunpro_1.yml deleted file mode 100644 index 7ebaaf25f50..00000000000 --- a/src/licensedcode/data/rules/sunpro_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sunpro -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sunsoft_1.RULE b/src/licensedcode/data/rules/sunsoft_1.RULE index e670a718d56..d6fb7bc73a9 100644 --- a/src/licensedcode/data/rules/sunsoft_1.RULE +++ b/src/licensedcode/data/rules/sunsoft_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sunsoft +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/sunsoft_1.yml b/src/licensedcode/data/rules/sunsoft_1.yml deleted file mode 100644 index ba42e932e86..00000000000 --- a/src/licensedcode/data/rules/sunsoft_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sunsoft -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sunsoft_2.RULE b/src/licensedcode/data/rules/sunsoft_2.RULE index 5bfed09c1a4..633c01197f2 100644 --- a/src/licensedcode/data/rules/sunsoft_2.RULE +++ b/src/licensedcode/data/rules/sunsoft_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sunsoft +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/sunsoft_2.yml b/src/licensedcode/data/rules/sunsoft_2.yml deleted file mode 100644 index ba42e932e86..00000000000 --- a/src/licensedcode/data/rules/sunsoft_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sunsoft -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sunsoft_3.RULE b/src/licensedcode/data/rules/sunsoft_3.RULE index 4c4caa36040..886b221a382 100644 --- a/src/licensedcode/data/rules/sunsoft_3.RULE +++ b/src/licensedcode/data/rules/sunsoft_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: sunsoft +is_license_notice: yes +relevance: 95 +--- + Except as contained in this notice, the name of SunSoft, Inc. shall not be used in advertising or otherwise to promote diff --git a/src/licensedcode/data/rules/sunsoft_3.yml b/src/licensedcode/data/rules/sunsoft_3.yml deleted file mode 100644 index 0c56267a3b0..00000000000 --- a/src/licensedcode/data/rules/sunsoft_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sunsoft -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/supervisor.RULE b/src/licensedcode/data/rules/supervisor.RULE index c6a924152d7..16a8c12e59d 100644 --- a/src/licensedcode/data/rules/supervisor.RULE +++ b/src/licensedcode/data/rules/supervisor.RULE @@ -1 +1,9 @@ +--- +license_expression: supervisor +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt +--- + https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/supervisor.yml b/src/licensedcode/data/rules/supervisor.yml deleted file mode 100644 index 7b6e64f76ff..00000000000 --- a/src/licensedcode/data/rules/supervisor.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: supervisor -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/Supervisor/supervisor/blob/master/LICENSES.txt diff --git a/src/licensedcode/data/rules/supervisor_1.RULE b/src/licensedcode/data/rules/supervisor_1.RULE index 3bba59f974d..bfaecc8dd7c 100644 --- a/src/licensedcode/data/rules/supervisor_1.RULE +++ b/src/licensedcode/data/rules/supervisor_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: supervisor +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com +ignorable_holders: + - Daniel Krech +ignorable_authors: + - Sam Rushing +ignorable_urls: + - http://eikeon.com/ +--- + Supervisor is licensed under the following license: A copyright notice accompanies this license document that identifies diff --git a/src/licensedcode/data/rules/supervisor_1.yml b/src/licensedcode/data/rules/supervisor_1.yml deleted file mode 100644 index 362395b4773..00000000000 --- a/src/licensedcode/data/rules/supervisor_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: supervisor -is_license_text: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com -ignorable_holders: - - Daniel Krech -ignorable_authors: - - Sam Rushing -ignorable_urls: - - http://eikeon.com/ diff --git a/src/licensedcode/data/rules/swl_1.RULE b/src/licensedcode/data/rules/swl_1.RULE index d608e71935a..90d107ad369 100644 --- a/src/licensedcode/data/rules/swl_1.RULE +++ b/src/licensedcode/data/rules/swl_1.RULE @@ -1 +1,10 @@ +--- +license_expression: swl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Scheme Widget Library (SWL) Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_1.yml b/src/licensedcode/data/rules/swl_1.yml deleted file mode 100644 index 7f7bd64021e..00000000000 --- a/src/licensedcode/data/rules/swl_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: swl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/swl_10.RULE b/src/licensedcode/data/rules/swl_10.RULE index d4ce62dd33f..a9a73a37928 100644 --- a/src/licensedcode/data/rules/swl_10.RULE +++ b/src/licensedcode/data/rules/swl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: swl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SWL +--- + {{SWL}} https://spdx.org/licenses/SWL \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_10.yml b/src/licensedcode/data/rules/swl_10.yml deleted file mode 100644 index f8327d59d13..00000000000 --- a/src/licensedcode/data/rules/swl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: swl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SWL diff --git a/src/licensedcode/data/rules/swl_11.RULE b/src/licensedcode/data/rules/swl_11.RULE index bc26998fb1f..6d6e95ea105 100644 --- a/src/licensedcode/data/rules/swl_11.RULE +++ b/src/licensedcode/data/rules/swl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: swl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SWL +--- + LICENSE {{SWL}} https://spdx.org/licenses/SWL \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_11.yml b/src/licensedcode/data/rules/swl_11.yml deleted file mode 100644 index f8327d59d13..00000000000 --- a/src/licensedcode/data/rules/swl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: swl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SWL diff --git a/src/licensedcode/data/rules/swl_2.RULE b/src/licensedcode/data/rules/swl_2.RULE index f455449688e..0a38e3e89a2 100644 --- a/src/licensedcode/data/rules/swl_2.RULE +++ b/src/licensedcode/data/rules/swl_2.RULE @@ -1 +1,10 @@ +--- +license_expression: swl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Scheme Widget Library (SWL) Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_2.yml b/src/licensedcode/data/rules/swl_2.yml deleted file mode 100644 index 7f7bd64021e..00000000000 --- a/src/licensedcode/data/rules/swl_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: swl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/swl_3.RULE b/src/licensedcode/data/rules/swl_3.RULE index 8ac634da3b2..c35d282cdd7 100644 --- a/src/licensedcode/data/rules/swl_3.RULE +++ b/src/licensedcode/data/rules/swl_3.RULE @@ -1 +1,10 @@ +--- +license_expression: swl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SWL Scheme Widget Library (SWL) Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_3.yml b/src/licensedcode/data/rules/swl_3.yml deleted file mode 100644 index 7f7bd64021e..00000000000 --- a/src/licensedcode/data/rules/swl_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: swl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/swl_4.RULE b/src/licensedcode/data/rules/swl_4.RULE index c801f919d0f..5ff5786f8ab 100644 --- a/src/licensedcode/data/rules/swl_4.RULE +++ b/src/licensedcode/data/rules/swl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: swl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Scheme Widget Library (SWL) Software License Agreement SWL \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_4.yml b/src/licensedcode/data/rules/swl_4.yml deleted file mode 100644 index 7f7bd64021e..00000000000 --- a/src/licensedcode/data/rules/swl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: swl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/swl_5.RULE b/src/licensedcode/data/rules/swl_5.RULE index 8ecab099b38..10dd90b095a 100644 --- a/src/licensedcode/data/rules/swl_5.RULE +++ b/src/licensedcode/data/rules/swl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: swl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SWL \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_5.yml b/src/licensedcode/data/rules/swl_5.yml deleted file mode 100644 index 5772a5e5806..00000000000 --- a/src/licensedcode/data/rules/swl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: swl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/swl_6.RULE b/src/licensedcode/data/rules/swl_6.RULE index f08f32d7abf..2a063eaddb0 100644 --- a/src/licensedcode/data/rules/swl_6.RULE +++ b/src/licensedcode/data/rules/swl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: swl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Scheme Widget Library (SWL) Software License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_6.yml b/src/licensedcode/data/rules/swl_6.yml deleted file mode 100644 index 5772a5e5806..00000000000 --- a/src/licensedcode/data/rules/swl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: swl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/swl_7.RULE b/src/licensedcode/data/rules/swl_7.RULE index f396d994076..e498aad0ece 100644 --- a/src/licensedcode/data/rules/swl_7.RULE +++ b/src/licensedcode/data/rules/swl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: swl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SWL \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_7.yml b/src/licensedcode/data/rules/swl_7.yml deleted file mode 100644 index 5772a5e5806..00000000000 --- a/src/licensedcode/data/rules/swl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: swl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/swl_8.RULE b/src/licensedcode/data/rules/swl_8.RULE index 86e0863b6b8..103a47c696a 100644 --- a/src/licensedcode/data/rules/swl_8.RULE +++ b/src/licensedcode/data/rules/swl_8.RULE @@ -1 +1,9 @@ +--- +license_expression: swl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SWL +--- + https://licenses.nuget.org/SWL \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_8.yml b/src/licensedcode/data/rules/swl_8.yml deleted file mode 100644 index 2fdc2df3299..00000000000 --- a/src/licensedcode/data/rules/swl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: swl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SWL diff --git a/src/licensedcode/data/rules/swl_9.RULE b/src/licensedcode/data/rules/swl_9.RULE index d1f34b3bfad..4c633d8b676 100644 --- a/src/licensedcode/data/rules/swl_9.RULE +++ b/src/licensedcode/data/rules/swl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: swl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SWL \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_9.yml b/src/licensedcode/data/rules/swl_9.yml deleted file mode 100644 index c87a8d38b3d..00000000000 --- a/src/licensedcode/data/rules/swl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: swl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/swl_url_1.RULE b/src/licensedcode/data/rules/swl_url_1.RULE index a84d0d49739..f17d0093ce3 100644 --- a/src/licensedcode/data/rules/swl_url_1.RULE +++ b/src/licensedcode/data/rules/swl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: swl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/swl +--- + https://spdx.org/licenses/swl \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_url_1.yml b/src/licensedcode/data/rules/swl_url_1.yml deleted file mode 100644 index 5c176f2937c..00000000000 --- a/src/licensedcode/data/rules/swl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: swl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/swl diff --git a/src/licensedcode/data/rules/swl_url_2.RULE b/src/licensedcode/data/rules/swl_url_2.RULE index 79b26000c04..7aec7bf5fea 100644 --- a/src/licensedcode/data/rules/swl_url_2.RULE +++ b/src/licensedcode/data/rules/swl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: swl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/swl.html +--- + https://spdx.org/licenses/swl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/swl_url_2.yml b/src/licensedcode/data/rules/swl_url_2.yml deleted file mode 100644 index 0592fe733e6..00000000000 --- a/src/licensedcode/data/rules/swl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: swl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/swl.html diff --git a/src/licensedcode/data/rules/sybase.RULE b/src/licensedcode/data/rules/sybase.RULE index bf54f7a1da9..43606edd706 100644 --- a/src/licensedcode/data/rules/sybase.RULE +++ b/src/licensedcode/data/rules/sybase.RULE @@ -1 +1,7 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +--- + Sybase Open Watcom Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase.SPDX.RULE b/src/licensedcode/data/rules/sybase.SPDX.RULE index f737a96f2a2..80b5126f6d4 100644 --- a/src/licensedcode/data/rules/sybase.SPDX.RULE +++ b/src/licensedcode/data/rules/sybase.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: sybase +is_license_text: yes +minimum_coverage: 50 +notes: license text as published by SPDX +ignorable_copyrights: + - Portions Copyright (c) 1983-2002 Sybase, Inc. +ignorable_holders: + - Sybase, Inc. +ignorable_urls: + - http://www.sybase.com/developer/opensource +--- + Sybase Open Watcom Public License version 1.0 USE OF THE SYBASE OPEN WATCOM SOFTWARE DESCRIBED BELOW ("SOFTWARE") IS SUBJECT TO THE TERMS AND CONDITIONS SET FORTH IN THE SYBASE OPEN WATCOM PUBLIC LICENSE SET FORTH BELOW ("LICENSE"). YOU MAY NOT USE THE SOFTWARE IN ANY MANNER UNLESS YOU ACCEPT THE TERMS AND CONDITIONS OF THE LICENSE. YOU INDICATE YOUR ACCEPTANCE BY IN ANY MANNER USING (INCLUDING WITHOUT LIMITATION BY REPRODUCING, MODIFYING OR DISTRIBUTING) THE SOFTWARE. IF YOU DO NOT ACCEPT ALL OF THE TERMS AND CONDITIONS OF THE LICENSE, DO NOT USE THE SOFTWARE IN ANY MANNER. diff --git a/src/licensedcode/data/rules/sybase.SPDX.yml b/src/licensedcode/data/rules/sybase.SPDX.yml deleted file mode 100644 index 8d41ac06bba..00000000000 --- a/src/licensedcode/data/rules/sybase.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: sybase -is_license_text: yes -minimum_coverage: 50 -notes: license text as published by SPDX -ignorable_copyrights: - - Portions Copyright (c) 1983-2002 Sybase, Inc. -ignorable_holders: - - Sybase, Inc. -ignorable_urls: - - http://www.sybase.com/developer/opensource diff --git a/src/licensedcode/data/rules/sybase.yml b/src/licensedcode/data/rules/sybase.yml deleted file mode 100644 index af85dd9ae5d..00000000000 --- a/src/licensedcode/data/rules/sybase.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sybase_1.RULE b/src/licensedcode/data/rules/sybase_1.RULE index 2b8141b619c..690c109c2c0 100644 --- a/src/licensedcode/data/rules/sybase_1.RULE +++ b/src/licensedcode/data/rules/sybase_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: sybase +is_license_notice: yes +ignorable_copyrights: + - Portions Copyright (c) 1983-2002 Sybase, Inc. +ignorable_holders: + - Sybase, Inc. +ignorable_urls: + - http://www.sybase.com/developer/opensource +--- + "Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved. This file contains Original Code and/or Modifications of Original Code as defined in and that are subject to the Sybase Open Watcom Public License version 1.0 (the 'License'). You may not use this file except in compliance with the License. BY USING THIS FILE YOU AGREE TO ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is provided with the Original Code and Modifications, and is also available at www.sybase.com/developer/opensource. diff --git a/src/licensedcode/data/rules/sybase_1.yml b/src/licensedcode/data/rules/sybase_1.yml deleted file mode 100644 index 1eee6ff1ba6..00000000000 --- a/src/licensedcode/data/rules/sybase_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: sybase -is_license_notice: yes -ignorable_copyrights: - - Portions Copyright (c) 1983-2002 Sybase, Inc. -ignorable_holders: - - Sybase, Inc. -ignorable_urls: - - http://www.sybase.com/developer/opensource diff --git a/src/licensedcode/data/rules/sybase_10.RULE b/src/licensedcode/data/rules/sybase_10.RULE index 7b5e161b4fc..0ea5a2c00fb 100644 --- a/src/licensedcode/data/rules/sybase_10.RULE +++ b/src/licensedcode/data/rules/sybase_10.RULE @@ -1 +1,10 @@ +--- +license_expression: sybase +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Sybase Open Watcom Public License 1.0 Watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_10.yml b/src/licensedcode/data/rules/sybase_10.yml deleted file mode 100644 index d5263af7132..00000000000 --- a/src/licensedcode/data/rules/sybase_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sybase -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sybase_11.RULE b/src/licensedcode/data/rules/sybase_11.RULE index fddef2a60b8..af5ac777216 100644 --- a/src/licensedcode/data/rules/sybase_11.RULE +++ b/src/licensedcode/data/rules/sybase_11.RULE @@ -1 +1,10 @@ +--- +license_expression: sybase +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_11.yml b/src/licensedcode/data/rules/sybase_11.yml deleted file mode 100644 index 42c685f26ad..00000000000 --- a/src/licensedcode/data/rules/sybase_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sybase -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sybase_12.RULE b/src/licensedcode/data/rules/sybase_12.RULE index 886ecb8c893..d26ca02cf5b 100644 --- a/src/licensedcode/data/rules/sybase_12.RULE +++ b/src/licensedcode/data/rules/sybase_12.RULE @@ -1 +1,10 @@ +--- +license_expression: sybase +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Sybase Open Watcom Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_12.yml b/src/licensedcode/data/rules/sybase_12.yml deleted file mode 100644 index 42c685f26ad..00000000000 --- a/src/licensedcode/data/rules/sybase_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sybase -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sybase_13.RULE b/src/licensedcode/data/rules/sybase_13.RULE index 932a369d691..ba34d4affd3 100644 --- a/src/licensedcode/data/rules/sybase_13.RULE +++ b/src/licensedcode/data/rules/sybase_13.RULE @@ -1 +1,10 @@ +--- +license_expression: sybase +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_13.yml b/src/licensedcode/data/rules/sybase_13.yml deleted file mode 100644 index 42c685f26ad..00000000000 --- a/src/licensedcode/data/rules/sybase_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sybase -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sybase_14.RULE b/src/licensedcode/data/rules/sybase_14.RULE index baa985c99a5..7ba2da5be77 100644 --- a/src/licensedcode/data/rules/sybase_14.RULE +++ b/src/licensedcode/data/rules/sybase_14.RULE @@ -1 +1,7 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Sybase_Open_Watcom_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_14.yml b/src/licensedcode/data/rules/sybase_14.yml deleted file mode 100644 index af85dd9ae5d..00000000000 --- a/src/licensedcode/data/rules/sybase_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sybase_15.RULE b/src/licensedcode/data/rules/sybase_15.RULE index a3f4b076e65..8771731b06e 100644 --- a/src/licensedcode/data/rules/sybase_15.RULE +++ b/src/licensedcode/data/rules/sybase_15.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Watcom-1.0 +--- + https://licenses.nuget.org/Watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_15.yml b/src/licensedcode/data/rules/sybase_15.yml deleted file mode 100644 index c5683212aa6..00000000000 --- a/src/licensedcode/data/rules/sybase_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Watcom-1.0 diff --git a/src/licensedcode/data/rules/sybase_16.RULE b/src/licensedcode/data/rules/sybase_16.RULE index 29a53999113..42eaa76490b 100644 --- a/src/licensedcode/data/rules/sybase_16.RULE +++ b/src/licensedcode/data/rules/sybase_16.RULE @@ -1 +1,7 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_16.yml b/src/licensedcode/data/rules/sybase_16.yml deleted file mode 100644 index af85dd9ae5d..00000000000 --- a/src/licensedcode/data/rules/sybase_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/sybase_17.RULE b/src/licensedcode/data/rules/sybase_17.RULE index 598dc4bcbfa..20eb205a548 100644 --- a/src/licensedcode/data/rules/sybase_17.RULE +++ b/src/licensedcode/data/rules/sybase_17.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Watcom-1.0 +--- + LICENSE {{Watcom-1.0}} https://spdx.org/licenses/Watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_17.yml b/src/licensedcode/data/rules/sybase_17.yml deleted file mode 100644 index 635b58645cc..00000000000 --- a/src/licensedcode/data/rules/sybase_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Watcom-1.0 diff --git a/src/licensedcode/data/rules/sybase_18.RULE b/src/licensedcode/data/rules/sybase_18.RULE index ea93904d116..d965db19a75 100644 --- a/src/licensedcode/data/rules/sybase_18.RULE +++ b/src/licensedcode/data/rules/sybase_18.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Watcom-1.0 +--- + {{Watcom-1.0}} https://spdx.org/licenses/Watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_18.yml b/src/licensedcode/data/rules/sybase_18.yml deleted file mode 100644 index 635b58645cc..00000000000 --- a/src/licensedcode/data/rules/sybase_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Watcom-1.0 diff --git a/src/licensedcode/data/rules/sybase_2.RULE b/src/licensedcode/data/rules/sybase_2.RULE index ecc10af34e3..03b25356bc7 100644 --- a/src/licensedcode/data/rules/sybase_2.RULE +++ b/src/licensedcode/data/rules/sybase_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/sybase.php +--- + http://opensource.org/licenses/sybase.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_2.yml b/src/licensedcode/data/rules/sybase_2.yml deleted file mode 100644 index dbb64fd2916..00000000000 --- a/src/licensedcode/data/rules/sybase_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/sybase.php diff --git a/src/licensedcode/data/rules/sybase_3.RULE b/src/licensedcode/data/rules/sybase_3.RULE index 4e4a41faa1b..e5d99087833 100644 --- a/src/licensedcode/data/rules/sybase_3.RULE +++ b/src/licensedcode/data/rules/sybase_3.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/sybase.php +--- + http://www.opensource.org/licenses/sybase.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_3.yml b/src/licensedcode/data/rules/sybase_3.yml deleted file mode 100644 index cc3476fc6a3..00000000000 --- a/src/licensedcode/data/rules/sybase_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/sybase.php diff --git a/src/licensedcode/data/rules/sybase_4.RULE b/src/licensedcode/data/rules/sybase_4.RULE index 515b9f7fbcc..2ac8868d1dd 100644 --- a/src/licensedcode/data/rules/sybase_4.RULE +++ b/src/licensedcode/data/rules/sybase_4.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/watcom-1.0 +--- + http://opensource.org/licenses/watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_4.yml b/src/licensedcode/data/rules/sybase_4.yml deleted file mode 100644 index 105341217b7..00000000000 --- a/src/licensedcode/data/rules/sybase_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/watcom-1.0 diff --git a/src/licensedcode/data/rules/sybase_5.RULE b/src/licensedcode/data/rules/sybase_5.RULE index e1d6f505b17..8e841f21acc 100644 --- a/src/licensedcode/data/rules/sybase_5.RULE +++ b/src/licensedcode/data/rules/sybase_5.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/watcom-1.0 +--- + https://opensource.org/licenses/watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_5.yml b/src/licensedcode/data/rules/sybase_5.yml deleted file mode 100644 index cbc9eaaf9d0..00000000000 --- a/src/licensedcode/data/rules/sybase_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/watcom-1.0 diff --git a/src/licensedcode/data/rules/sybase_6.RULE b/src/licensedcode/data/rules/sybase_6.RULE index 2fecf2af103..e5f326cf340 100644 --- a/src/licensedcode/data/rules/sybase_6.RULE +++ b/src/licensedcode/data/rules/sybase_6.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/watcom-1.0 +--- + http://www.opensource.org/licenses/watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_6.yml b/src/licensedcode/data/rules/sybase_6.yml deleted file mode 100644 index a36ecd00b96..00000000000 --- a/src/licensedcode/data/rules/sybase_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/watcom-1.0 diff --git a/src/licensedcode/data/rules/sybase_7.RULE b/src/licensedcode/data/rules/sybase_7.RULE index d5c56565e72..c6c02a899e7 100644 --- a/src/licensedcode/data/rules/sybase_7.RULE +++ b/src/licensedcode/data/rules/sybase_7.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/watcom-1.0 +--- + https://www.opensource.org/licenses/watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_7.yml b/src/licensedcode/data/rules/sybase_7.yml deleted file mode 100644 index 76d0bc7f48f..00000000000 --- a/src/licensedcode/data/rules/sybase_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/watcom-1.0 diff --git a/src/licensedcode/data/rules/sybase_8.RULE b/src/licensedcode/data/rules/sybase_8.RULE index 02f27c02397..ff405a73bf6 100644 --- a/src/licensedcode/data/rules/sybase_8.RULE +++ b/src/licensedcode/data/rules/sybase_8.RULE @@ -1 +1,10 @@ +--- +license_expression: sybase +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Sybase Open Watcom Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_8.yml b/src/licensedcode/data/rules/sybase_8.yml deleted file mode 100644 index d5263af7132..00000000000 --- a/src/licensedcode/data/rules/sybase_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sybase -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sybase_9.RULE b/src/licensedcode/data/rules/sybase_9.RULE index 456ea4b06b8..e423a93ad33 100644 --- a/src/licensedcode/data/rules/sybase_9.RULE +++ b/src/licensedcode/data/rules/sybase_9.RULE @@ -1 +1,10 @@ +--- +license_expression: sybase +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Watcom-1.0 Sybase Open Watcom Public License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_9.yml b/src/licensedcode/data/rules/sybase_9.yml deleted file mode 100644 index d5263af7132..00000000000 --- a/src/licensedcode/data/rules/sybase_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: sybase -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/sybase_url_1.RULE b/src/licensedcode/data/rules/sybase_url_1.RULE index ca84e6e668e..30cfe165f16 100644 --- a/src/licensedcode/data/rules/sybase_url_1.RULE +++ b/src/licensedcode/data/rules/sybase_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/watcom-1.0 +--- + https://spdx.org/licenses/watcom-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_url_1.yml b/src/licensedcode/data/rules/sybase_url_1.yml deleted file mode 100644 index 8efd4dc2376..00000000000 --- a/src/licensedcode/data/rules/sybase_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/watcom-1.0 diff --git a/src/licensedcode/data/rules/sybase_url_2.RULE b/src/licensedcode/data/rules/sybase_url_2.RULE index 5917d115eef..7a1d491f17b 100644 --- a/src/licensedcode/data/rules/sybase_url_2.RULE +++ b/src/licensedcode/data/rules/sybase_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: sybase +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/watcom-1.0.html +--- + https://spdx.org/licenses/watcom-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/sybase_url_2.yml b/src/licensedcode/data/rules/sybase_url_2.yml deleted file mode 100644 index c9e8f9df9cc..00000000000 --- a/src/licensedcode/data/rules/sybase_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: sybase -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/watcom-1.0.html diff --git a/src/licensedcode/data/rules/syntext-serna-exception-1.0_1.RULE b/src/licensedcode/data/rules/syntext-serna-exception-1.0_1.RULE index be5a4ccafc0..067bd3335c4 100644 --- a/src/licensedcode/data/rules/syntext-serna-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/syntext-serna-exception-1.0_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: syntext-serna-exception-1.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - GPL_Exception_Addendum.txt +--- + Syntext, Inc. GPL License Exception for Syntext Serna Free Edition Version 1.0 diff --git a/src/licensedcode/data/rules/syntext-serna-exception-1.0_1.yml b/src/licensedcode/data/rules/syntext-serna-exception-1.0_1.yml deleted file mode 100644 index 59cd1cae447..00000000000 --- a/src/licensedcode/data/rules/syntext-serna-exception-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: syntext-serna-exception-1.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - GPL_Exception_Addendum.txt diff --git a/src/licensedcode/data/rules/takuya-ooura.RULE b/src/licensedcode/data/rules/takuya-ooura.RULE index 7b2d1b582ce..44463a62e56 100644 --- a/src/licensedcode/data/rules/takuya-ooura.RULE +++ b/src/licensedcode/data/rules/takuya-ooura.RULE @@ -1 +1,9 @@ +--- +license_expression: takuya-ooura +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html +--- + http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/takuya-ooura.yml b/src/licensedcode/data/rules/takuya-ooura.yml deleted file mode 100644 index 4c0b2896f40..00000000000 --- a/src/licensedcode/data/rules/takuya-ooura.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: takuya-ooura -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html diff --git a/src/licensedcode/data/rules/takuya-ooura2.RULE b/src/licensedcode/data/rules/takuya-ooura2.RULE index 52a557e814f..15a47a2e52d 100644 --- a/src/licensedcode/data/rules/takuya-ooura2.RULE +++ b/src/licensedcode/data/rules/takuya-ooura2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: takuya-ooura +is_license_text: yes +ignorable_copyrights: + - Copyright Takuya OOURA, 1996-2001 +ignorable_holders: + - Takuya OOURA +ignorable_urls: + - http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html +--- + * http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html * Copyright Takuya OOURA, 1996-2001 * diff --git a/src/licensedcode/data/rules/takuya-ooura2.yml b/src/licensedcode/data/rules/takuya-ooura2.yml deleted file mode 100644 index d23fb2e752e..00000000000 --- a/src/licensedcode/data/rules/takuya-ooura2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: takuya-ooura -is_license_text: yes -ignorable_copyrights: - - Copyright Takuya OOURA, 1996-2001 -ignorable_holders: - - Takuya OOURA -ignorable_urls: - - http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html diff --git a/src/licensedcode/data/rules/taligent-jdk_1.RULE b/src/licensedcode/data/rules/taligent-jdk_1.RULE index f1931343d1f..8bae1c18bb5 100644 --- a/src/licensedcode/data/rules/taligent-jdk_1.RULE +++ b/src/licensedcode/data/rules/taligent-jdk_1.RULE @@ -1,5 +1,11 @@ +--- +license_expression: taligent-jdk +is_license_text: yes +relevance: 100 +--- + The original version of this source code and documentation is copyrighted and owned by IBM, These materials are provided under terms of a License Agreement between IBM and Sun. This technology is protected by multiple US and International patents. This notice and attribution to IBM may not -to removed. +to removed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/taligent-jdk_1.yml b/src/licensedcode/data/rules/taligent-jdk_1.yml deleted file mode 100644 index 8bd082d27a6..00000000000 --- a/src/licensedcode/data/rules/taligent-jdk_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: taligent-jdk -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/taligent-jdk_2.RULE b/src/licensedcode/data/rules/taligent-jdk_2.RULE index a354d6cfd7a..442b46242ca 100644 --- a/src/licensedcode/data/rules/taligent-jdk_2.RULE +++ b/src/licensedcode/data/rules/taligent-jdk_2.RULE @@ -1,5 +1,11 @@ +--- +license_expression: taligent-jdk +is_license_text: yes +relevance: 100 +--- + The original version of this source code and documentation is copyrighted and owned by IBM. These materials are provided under terms of a License Agreement between IBM and Sun. This technology is protected by multiple US and International -patents. This notice and attribution to IBM may not be removed. +patents. This notice and attribution to IBM may not be removed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/taligent-jdk_2.yml b/src/licensedcode/data/rules/taligent-jdk_2.yml deleted file mode 100644 index 8bd082d27a6..00000000000 --- a/src/licensedcode/data/rules/taligent-jdk_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: taligent-jdk -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_1.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_1.RULE index 997de4d591f..f1d8153052f 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_1.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TAPR Open Hardware License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_1.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_1.yml deleted file mode 100644 index df134647b9f..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_10.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_10.RULE index 353c1067099..ed3acfa51b0 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_10.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/TAPR-OHL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_10.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_10.yml deleted file mode 100644 index 2ca59df001c..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_11.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_11.RULE index f308bf2378f..25b0fddc0e2 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_11.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TAPR-OHL-1.0 +--- + LICENSE {{TAPR-OHL-1.0}} https://spdx.org/licenses/TAPR-OHL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_11.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_11.yml deleted file mode 100644 index 625ae948549..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TAPR-OHL-1.0 diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_12.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_12.RULE index 56f2b92dc19..92795b58966 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_12.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TAPR-OHL-1.0 +--- + {{TAPR-OHL-1.0}} https://spdx.org/licenses/TAPR-OHL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_12.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_12.yml deleted file mode 100644 index 625ae948549..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TAPR-OHL-1.0 diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_2.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_2.RULE index 8ace21ae6d5..ed2822f4ed0 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_2.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: TAPR Open Hardware License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_2.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_2.yml deleted file mode 100644 index df134647b9f..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_3.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_3.RULE index 0e46e287446..95eabc782fe 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_3.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TAPR-OHL-1.0 TAPR Open Hardware License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_3.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_3.yml deleted file mode 100644 index df134647b9f..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_4.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_4.RULE index e611afb5a50..34031c98c55 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_4.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TAPR Open Hardware License v1.0 TAPR-OHL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_4.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_4.yml deleted file mode 100644 index df134647b9f..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_5.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_5.RULE index 13e4ea91981..3f0aac36383 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_5.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TAPR-OHL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_5.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_5.yml deleted file mode 100644 index 54a5ea800c2..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_6.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_6.RULE index 7076624794b..c99012b7575 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_6.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TAPR Open Hardware License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_6.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_6.yml deleted file mode 100644 index 54a5ea800c2..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_7.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_7.RULE index f20f343b8b1..059280f396c 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_7.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: TAPR-OHL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_7.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_7.yml deleted file mode 100644 index 54a5ea800c2..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_8.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_8.RULE index 125b741aaff..66fc499a911 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_8.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + TAPR-OHL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_8.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_8.yml deleted file mode 100644 index 98c14593fef..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_9.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_9.RULE index 59a39c9f210..6905afabad5 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_9.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/TAPR-OHL-1.0 +--- + https://licenses.nuget.org/TAPR-OHL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_9.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_9.yml deleted file mode 100644 index 80c802fdbc3..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/TAPR-OHL-1.0 diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_url_1.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_url_1.RULE index 3df6d075891..36bb7d99894 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tapr-ohl-1.0 +--- + https://spdx.org/licenses/tapr-ohl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_url_1.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_url_1.yml deleted file mode 100644 index f60f74c26ed..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tapr-ohl-1.0 diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_url_2.RULE b/src/licensedcode/data/rules/tapr-ohl-1.0_url_2.RULE index e53f36696e3..47c0e5e456e 100644 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/tapr-ohl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: tapr-ohl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tapr-ohl-1.0.html +--- + https://spdx.org/licenses/tapr-ohl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tapr-ohl-1.0_url_2.yml b/src/licensedcode/data/rules/tapr-ohl-1.0_url_2.yml deleted file mode 100644 index 57c1dfdb526..00000000000 --- a/src/licensedcode/data/rules/tapr-ohl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tapr-ohl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tapr-ohl-1.0.html diff --git a/src/licensedcode/data/rules/tatu-ylonen2.RULE b/src/licensedcode/data/rules/tatu-ylonen2.RULE index e04c27389af..8cdf25f7452 100644 --- a/src/licensedcode/data/rules/tatu-ylonen2.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: openssh +is_license_text: yes +ignorable_urls: + - http://www.cs.hut.fi/crypto +--- + * As far as I am concerned, the code I have written for this software * can be used freely for any purpose. Any derived versions of this * software must be clearly marked as such, and if the derived work is @@ -61,4 +68,4 @@ 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. + POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen2.yml b/src/licensedcode/data/rules/tatu-ylonen2.yml deleted file mode 100644 index c1697e1adc2..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: openssh -is_license_text: yes -ignorable_urls: - - http://www.cs.hut.fi/crypto diff --git a/src/licensedcode/data/rules/tatu-ylonen3.RULE b/src/licensedcode/data/rules/tatu-ylonen3.RULE index 409ad354112..5681738dcb9 100644 --- a/src/licensedcode/data/rules/tatu-ylonen3.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: tatu-ylonen +is_license_text: yes +ignorable_urls: + - http://www.cs.hut.fi/crypto +--- + This file is part of the OpenSSH software. The licences which components of this software fall under are as @@ -69,5 +76,4 @@ OpenSSH contains no GPL code. 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. - + POSSIBILITY OF SUCH DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen3.yml b/src/licensedcode/data/rules/tatu-ylonen3.yml deleted file mode 100644 index 27e50b9e3da..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: tatu-ylonen -is_license_text: yes -ignorable_urls: - - http://www.cs.hut.fi/crypto diff --git a/src/licensedcode/data/rules/tatu-ylonen_1.RULE b/src/licensedcode/data/rules/tatu-ylonen_1.RULE index 2e825039684..6e848486662 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_1.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_1.RULE @@ -1 +1,10 @@ +--- +license_expression: tatu-ylonen +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SSH short notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_1.yml b/src/licensedcode/data/rules/tatu-ylonen_1.yml deleted file mode 100644 index 441af2ef241..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tatu-ylonen -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tatu-ylonen_10.RULE b/src/licensedcode/data/rules/tatu-ylonen_10.RULE index 8bd774e65bf..0e103abc04d 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_10.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_10.RULE @@ -1 +1,9 @@ +--- +license_expression: tatu-ylonen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SSH-short +--- + LICENSE {{SSH-short}} https://spdx.org/licenses/SSH-short \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_10.yml b/src/licensedcode/data/rules/tatu-ylonen_10.yml deleted file mode 100644 index 8069e4f6ea6..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tatu-ylonen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SSH-short diff --git a/src/licensedcode/data/rules/tatu-ylonen_11.RULE b/src/licensedcode/data/rules/tatu-ylonen_11.RULE index 4fe817398f6..343e691ed98 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_11.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_11.RULE @@ -1 +1,9 @@ +--- +license_expression: tatu-ylonen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/SSH-short +--- + {{SSH-short}} https://spdx.org/licenses/SSH-short \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_11.yml b/src/licensedcode/data/rules/tatu-ylonen_11.yml deleted file mode 100644 index 8069e4f6ea6..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tatu-ylonen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/SSH-short diff --git a/src/licensedcode/data/rules/tatu-ylonen_2.RULE b/src/licensedcode/data/rules/tatu-ylonen_2.RULE index efd2ddb469d..f04c715e554 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_2.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_2.RULE @@ -1 +1,10 @@ +--- +license_expression: tatu-ylonen +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: SSH short notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_2.yml b/src/licensedcode/data/rules/tatu-ylonen_2.yml deleted file mode 100644 index 441af2ef241..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tatu-ylonen -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tatu-ylonen_3.RULE b/src/licensedcode/data/rules/tatu-ylonen_3.RULE index 77238eeb3ca..c79c57763cb 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_3.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_3.RULE @@ -1 +1,10 @@ +--- +license_expression: tatu-ylonen +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SSH-short SSH short notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_3.yml b/src/licensedcode/data/rules/tatu-ylonen_3.yml deleted file mode 100644 index 441af2ef241..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tatu-ylonen -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tatu-ylonen_4.RULE b/src/licensedcode/data/rules/tatu-ylonen_4.RULE index ee4018003fd..31b03f96233 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_4.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_4.RULE @@ -1 +1,10 @@ +--- +license_expression: tatu-ylonen +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + SSH short notice SSH-short \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_4.yml b/src/licensedcode/data/rules/tatu-ylonen_4.yml deleted file mode 100644 index 441af2ef241..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tatu-ylonen -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tatu-ylonen_5.RULE b/src/licensedcode/data/rules/tatu-ylonen_5.RULE index 6612fc80edf..9f429de0db8 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_5.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_5.RULE @@ -1 +1,10 @@ +--- +license_expression: tatu-ylonen +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SSH-short \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_5.yml b/src/licensedcode/data/rules/tatu-ylonen_5.yml deleted file mode 100644 index 147e26691d3..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tatu-ylonen -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tatu-ylonen_6.RULE b/src/licensedcode/data/rules/tatu-ylonen_6.RULE index a7807f45617..0d06f643b68 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_6.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_6.RULE @@ -1 +1,10 @@ +--- +license_expression: tatu-ylonen +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: SSH short notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_6.yml b/src/licensedcode/data/rules/tatu-ylonen_6.yml deleted file mode 100644 index 147e26691d3..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tatu-ylonen -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tatu-ylonen_7.RULE b/src/licensedcode/data/rules/tatu-ylonen_7.RULE index dbd40c132e5..a9bd34847f8 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_7.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_7.RULE @@ -1 +1,10 @@ +--- +license_expression: tatu-ylonen +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: SSH-short \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_7.yml b/src/licensedcode/data/rules/tatu-ylonen_7.yml deleted file mode 100644 index 147e26691d3..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tatu-ylonen -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tatu-ylonen_8.RULE b/src/licensedcode/data/rules/tatu-ylonen_8.RULE index eae17fef5c2..de9d2f8d432 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_8.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_8.RULE @@ -1 +1,9 @@ +--- +license_expression: tatu-ylonen +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/SSH-short +--- + https://licenses.nuget.org/SSH-short \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_8.yml b/src/licensedcode/data/rules/tatu-ylonen_8.yml deleted file mode 100644 index 09f22a71380..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tatu-ylonen -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/SSH-short diff --git a/src/licensedcode/data/rules/tatu-ylonen_9.RULE b/src/licensedcode/data/rules/tatu-ylonen_9.RULE index 434a150ec3a..94855897f89 100644 --- a/src/licensedcode/data/rules/tatu-ylonen_9.RULE +++ b/src/licensedcode/data/rules/tatu-ylonen_9.RULE @@ -1 +1,7 @@ +--- +license_expression: tatu-ylonen +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/SSH-short \ No newline at end of file diff --git a/src/licensedcode/data/rules/tatu-ylonen_9.yml b/src/licensedcode/data/rules/tatu-ylonen_9.yml deleted file mode 100644 index df05bb3804d..00000000000 --- a/src/licensedcode/data/rules/tatu-ylonen_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tatu-ylonen -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcl.RULE b/src/licensedcode/data/rules/tcl.RULE index 84b1e31952e..430acf1388a 100644 --- a/src/licensedcode/data/rules/tcl.RULE +++ b/src/licensedcode/data/rules/tcl.RULE @@ -1 +1,9 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.tcl.tk/software/tcltk/license.html +--- + http://www.tcl.tk/software/tcltk/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl.yml b/src/licensedcode/data/rules/tcl.yml deleted file mode 100644 index eb5234ac0fb..00000000000 --- a/src/licensedcode/data/rules/tcl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.tcl.tk/software/tcltk/license.html diff --git a/src/licensedcode/data/rules/tcl_1.RULE b/src/licensedcode/data/rules/tcl_1.RULE index 1a2bab60bb0..25bb81c65a7 100644 --- a/src/licensedcode/data/rules/tcl_1.RULE +++ b/src/licensedcode/data/rules/tcl_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: tcl +is_license_text: yes +ignorable_copyrights: + - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics + Corporation +ignorable_holders: + - the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation +--- + This software is copyrighted by the Regents of the University of California , Sun Microsystems, Inc. , Scriptics Corporation , and other parties . The following terms apply to all files associated @@ -36,4 +46,4 @@ Government shall have only "Restricted Rights" as defined in Clause 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the -terms specified in this license. +terms specified in this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_1.yml b/src/licensedcode/data/rules/tcl_1.yml deleted file mode 100644 index b164260e278..00000000000 --- a/src/licensedcode/data/rules/tcl_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: tcl -is_license_text: yes -ignorable_copyrights: - - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics - Corporation -ignorable_holders: - - the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation diff --git a/src/licensedcode/data/rules/tcl_10.RULE b/src/licensedcode/data/rules/tcl_10.RULE index f9a7b457d33..3402fe28345 100644 --- a/src/licensedcode/data/rules/tcl_10.RULE +++ b/src/licensedcode/data/rules/tcl_10.RULE @@ -1 +1,7 @@ +--- +license_expression: tcl +is_license_tag: yes +relevance: 100 +--- + Licence: Tcl \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_10.yml b/src/licensedcode/data/rules/tcl_10.yml deleted file mode 100644 index 7d76c1bfbd8..00000000000 --- a/src/licensedcode/data/rules/tcl_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcl -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcl_11.RULE b/src/licensedcode/data/rules/tcl_11.RULE index c892e7f8e37..2630a6a6e1e 100644 --- a/src/licensedcode/data/rules/tcl_11.RULE +++ b/src/licensedcode/data/rules/tcl_11.RULE @@ -1 +1,7 @@ +--- +license_expression: tcl +is_license_notice: yes +relevance: 100 +--- + these files bear the Tcl copyright and license notice: \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_11.yml b/src/licensedcode/data/rules/tcl_11.yml deleted file mode 100644 index 7f2e43619e3..00000000000 --- a/src/licensedcode/data/rules/tcl_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcl_12.RULE b/src/licensedcode/data/rules/tcl_12.RULE index 7214b3ea558..b0efd62188b 100644 --- a/src/licensedcode/data/rules/tcl_12.RULE +++ b/src/licensedcode/data/rules/tcl_12.RULE @@ -1 +1,7 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +--- + Tcl copyright and license notice: \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_12.yml b/src/licensedcode/data/rules/tcl_12.yml deleted file mode 100644 index 1d13f96f805..00000000000 --- a/src/licensedcode/data/rules/tcl_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcl_13.RULE b/src/licensedcode/data/rules/tcl_13.RULE index fdc53e82d2b..976da591ae3 100644 --- a/src/licensedcode/data/rules/tcl_13.RULE +++ b/src/licensedcode/data/rules/tcl_13.RULE @@ -1 +1,7 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +--- + Tcl copyright and license \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_13.yml b/src/licensedcode/data/rules/tcl_13.yml deleted file mode 100644 index 1d13f96f805..00000000000 --- a/src/licensedcode/data/rules/tcl_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcl_14.RULE b/src/licensedcode/data/rules/tcl_14.RULE index 135aeb0a323..0e03dc1d9aa 100644 --- a/src/licensedcode/data/rules/tcl_14.RULE +++ b/src/licensedcode/data/rules/tcl_14.RULE @@ -1,3 +1,12 @@ +--- +license_expression: tcl +is_license_text: yes +ignorable_copyrights: + - copyrighted by the Regents of the University of California, Sun Microsystems, Inc. +ignorable_holders: + - the Regents of the University of California, Sun Microsystems, Inc. +--- + This software is copyrighted by the Regents of the University of California, Sun Microsystems, Inc., and other parties. The following terms apply to all files associated with the software unless explicitly diff --git a/src/licensedcode/data/rules/tcl_14.yml b/src/licensedcode/data/rules/tcl_14.yml deleted file mode 100644 index 1bdaa0b9b0c..00000000000 --- a/src/licensedcode/data/rules/tcl_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcl -is_license_text: yes -ignorable_copyrights: - - copyrighted by the Regents of the University of California, Sun Microsystems, Inc. -ignorable_holders: - - the Regents of the University of California, Sun Microsystems, Inc. diff --git a/src/licensedcode/data/rules/tcl_15.RULE b/src/licensedcode/data/rules/tcl_15.RULE index 4b4ba83bb8a..c753c108f35 100644 --- a/src/licensedcode/data/rules/tcl_15.RULE +++ b/src/licensedcode/data/rules/tcl_15.RULE @@ -1 +1,10 @@ +--- +license_expression: tcl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TCL/TK License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_15.yml b/src/licensedcode/data/rules/tcl_15.yml deleted file mode 100644 index 42b23b0d327..00000000000 --- a/src/licensedcode/data/rules/tcl_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcl_16.RULE b/src/licensedcode/data/rules/tcl_16.RULE index 50bc9e2f80b..9806b7f3a67 100644 --- a/src/licensedcode/data/rules/tcl_16.RULE +++ b/src/licensedcode/data/rules/tcl_16.RULE @@ -1 +1,10 @@ +--- +license_expression: tcl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: TCL/TK License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_16.yml b/src/licensedcode/data/rules/tcl_16.yml deleted file mode 100644 index 42b23b0d327..00000000000 --- a/src/licensedcode/data/rules/tcl_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcl_17.RULE b/src/licensedcode/data/rules/tcl_17.RULE index 604d905fc26..310eb1e5c5c 100644 --- a/src/licensedcode/data/rules/tcl_17.RULE +++ b/src/licensedcode/data/rules/tcl_17.RULE @@ -1 +1,10 @@ +--- +license_expression: tcl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TCL TCL/TK License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_17.yml b/src/licensedcode/data/rules/tcl_17.yml deleted file mode 100644 index 42b23b0d327..00000000000 --- a/src/licensedcode/data/rules/tcl_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcl_18.RULE b/src/licensedcode/data/rules/tcl_18.RULE index 5bad35a3a5a..be6d7e73885 100644 --- a/src/licensedcode/data/rules/tcl_18.RULE +++ b/src/licensedcode/data/rules/tcl_18.RULE @@ -1 +1,10 @@ +--- +license_expression: tcl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TCL/TK License TCL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_18.yml b/src/licensedcode/data/rules/tcl_18.yml deleted file mode 100644 index 42b23b0d327..00000000000 --- a/src/licensedcode/data/rules/tcl_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcl_19.RULE b/src/licensedcode/data/rules/tcl_19.RULE index 6cbf23cfc62..f13758bafd7 100644 --- a/src/licensedcode/data/rules/tcl_19.RULE +++ b/src/licensedcode/data/rules/tcl_19.RULE @@ -1 +1,10 @@ +--- +license_expression: tcl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TCL/TK License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_19.yml b/src/licensedcode/data/rules/tcl_19.yml deleted file mode 100644 index 0c6d760fc6e..00000000000 --- a/src/licensedcode/data/rules/tcl_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcl_2.RULE b/src/licensedcode/data/rules/tcl_2.RULE index da5406e7404..ef6fcb13986 100644 --- a/src/licensedcode/data/rules/tcl_2.RULE +++ b/src/licensedcode/data/rules/tcl_2.RULE @@ -1 +1,9 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/TCL +--- + http://fedoraproject.org/wiki/Licensing/TCL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_2.yml b/src/licensedcode/data/rules/tcl_2.yml deleted file mode 100644 index 4f13b917c6f..00000000000 --- a/src/licensedcode/data/rules/tcl_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/TCL diff --git a/src/licensedcode/data/rules/tcl_20.RULE b/src/licensedcode/data/rules/tcl_20.RULE index ea067c13d1d..a692519d12c 100644 --- a/src/licensedcode/data/rules/tcl_20.RULE +++ b/src/licensedcode/data/rules/tcl_20.RULE @@ -1 +1,10 @@ +--- +license_expression: tcl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: TCL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_20.yml b/src/licensedcode/data/rules/tcl_20.yml deleted file mode 100644 index 0c6d760fc6e..00000000000 --- a/src/licensedcode/data/rules/tcl_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcl_21.RULE b/src/licensedcode/data/rules/tcl_21.RULE index b5d14492907..e7249d9eb32 100644 --- a/src/licensedcode/data/rules/tcl_21.RULE +++ b/src/licensedcode/data/rules/tcl_21.RULE @@ -1 +1,9 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/TCL +--- + https://licenses.nuget.org/TCL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_21.yml b/src/licensedcode/data/rules/tcl_21.yml deleted file mode 100644 index 4b768ebef9a..00000000000 --- a/src/licensedcode/data/rules/tcl_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/TCL diff --git a/src/licensedcode/data/rules/tcl_22.RULE b/src/licensedcode/data/rules/tcl_22.RULE index d6b0c21e112..fbb45e3b486 100644 --- a/src/licensedcode/data/rules/tcl_22.RULE +++ b/src/licensedcode/data/rules/tcl_22.RULE @@ -1 +1,7 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/TCL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_22.yml b/src/licensedcode/data/rules/tcl_22.yml deleted file mode 100644 index 1d13f96f805..00000000000 --- a/src/licensedcode/data/rules/tcl_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcl_23.RULE b/src/licensedcode/data/rules/tcl_23.RULE index 81f153d71ab..002e3d03e4d 100644 --- a/src/licensedcode/data/rules/tcl_23.RULE +++ b/src/licensedcode/data/rules/tcl_23.RULE @@ -1 +1,9 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TCL +--- + LICENSE {{TCL}} https://spdx.org/licenses/TCL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_23.yml b/src/licensedcode/data/rules/tcl_23.yml deleted file mode 100644 index 6261d9f63b5..00000000000 --- a/src/licensedcode/data/rules/tcl_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TCL diff --git a/src/licensedcode/data/rules/tcl_24.RULE b/src/licensedcode/data/rules/tcl_24.RULE index 6e5a433c2fa..d5f54d20da5 100644 --- a/src/licensedcode/data/rules/tcl_24.RULE +++ b/src/licensedcode/data/rules/tcl_24.RULE @@ -1 +1,9 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TCL +--- + {{TCL}} https://spdx.org/licenses/TCL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_24.yml b/src/licensedcode/data/rules/tcl_24.yml deleted file mode 100644 index 6261d9f63b5..00000000000 --- a/src/licensedcode/data/rules/tcl_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TCL diff --git a/src/licensedcode/data/rules/tcl_3.RULE b/src/licensedcode/data/rules/tcl_3.RULE index a4eb2455de0..eb2f1e1fd54 100644 --- a/src/licensedcode/data/rules/tcl_3.RULE +++ b/src/licensedcode/data/rules/tcl_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: tcl +is_license_text: yes +--- + This software is copyrighted by the and other parties. The following terms apply to all files associated with the software unless explicitly disclaimed in @@ -36,4 +41,4 @@ 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the - terms specified in this license. + terms specified in this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_3.yml b/src/licensedcode/data/rules/tcl_3.yml deleted file mode 100644 index 021a6f6bc1f..00000000000 --- a/src/licensedcode/data/rules/tcl_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: tcl -is_license_text: yes diff --git a/src/licensedcode/data/rules/tcl_4.RULE b/src/licensedcode/data/rules/tcl_4.RULE index e4abfd0d28a..01d0143ffbc 100644 --- a/src/licensedcode/data/rules/tcl_4.RULE +++ b/src/licensedcode/data/rules/tcl_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: tcl +is_license_text: yes +--- + The authors hereby grant permission to use, copy, modify, distribute, and license this software and its documentation for any purpose, provided @@ -32,4 +37,4 @@ Government shall have only "Restricted Rights" as defined in Clause 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the -terms specified in this license. +terms specified in this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_4.yml b/src/licensedcode/data/rules/tcl_4.yml deleted file mode 100644 index 021a6f6bc1f..00000000000 --- a/src/licensedcode/data/rules/tcl_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: tcl -is_license_text: yes diff --git a/src/licensedcode/data/rules/tcl_5.RULE b/src/licensedcode/data/rules/tcl_5.RULE index ba84a8f3e75..dbeb675becf 100644 --- a/src/licensedcode/data/rules/tcl_5.RULE +++ b/src/licensedcode/data/rules/tcl_5.RULE @@ -1 +1,7 @@ +--- +license_expression: tcl +is_license_notice: yes +relevance: 100 +--- + The package is distributed under the same license as Tcl/Tk itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_5.yml b/src/licensedcode/data/rules/tcl_5.yml deleted file mode 100644 index 7f2e43619e3..00000000000 --- a/src/licensedcode/data/rules/tcl_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcl_6.RULE b/src/licensedcode/data/rules/tcl_6.RULE index c9b977365c6..bdc1af7af9d 100644 --- a/src/licensedcode/data/rules/tcl_6.RULE +++ b/src/licensedcode/data/rules/tcl_6.RULE @@ -1,3 +1,14 @@ +--- +license_expression: tcl +is_license_text: yes +ignorable_copyrights: + - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics + Corporation, ActiveState Corporation +ignorable_holders: + - the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, + ActiveState Corporation +--- + This software is copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState Corporation and other parties. The following terms apply to all files @@ -37,4 +48,4 @@ Government shall have only "Restricted Rights" as defined in Clause 252.227-7013 (b) (3) of DFARs. Notwithstanding the foregoing, the authors grant the U.S. Government and others acting in its behalf permission to use and distribute the software in accordance with the -terms specified in this license. \ No newline at end of file +terms specified in this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_6.yml b/src/licensedcode/data/rules/tcl_6.yml deleted file mode 100644 index 2fd810a3e07..00000000000 --- a/src/licensedcode/data/rules/tcl_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: tcl -is_license_text: yes -ignorable_copyrights: - - copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics - Corporation, ActiveState Corporation -ignorable_holders: - - the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, - ActiveState Corporation diff --git a/src/licensedcode/data/rules/tcl_7.RULE b/src/licensedcode/data/rules/tcl_7.RULE index 029ad45a21a..ef70ae30663 100644 --- a/src/licensedcode/data/rules/tcl_7.RULE +++ b/src/licensedcode/data/rules/tcl_7.RULE @@ -1,2 +1,10 @@ +--- +license_expression: tcl +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.tcl.tk/software/tcltk/license.html +--- + License terms copied from: http://www.tcl.tk/software/tcltk/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_7.yml b/src/licensedcode/data/rules/tcl_7.yml deleted file mode 100644 index b653474925c..00000000000 --- a/src/licensedcode/data/rules/tcl_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.tcl.tk/software/tcltk/license.html diff --git a/src/licensedcode/data/rules/tcl_8.RULE b/src/licensedcode/data/rules/tcl_8.RULE index d91322ebf8f..ab773689818 100644 --- a/src/licensedcode/data/rules/tcl_8.RULE +++ b/src/licensedcode/data/rules/tcl_8.RULE @@ -1 +1,9 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.tcl.tk/software/tcltk/license.html +--- + https://www.tcl.tk/software/tcltk/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_8.yml b/src/licensedcode/data/rules/tcl_8.yml deleted file mode 100644 index d3d82da69c7..00000000000 --- a/src/licensedcode/data/rules/tcl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.tcl.tk/software/tcltk/license.html diff --git a/src/licensedcode/data/rules/tcl_9.RULE b/src/licensedcode/data/rules/tcl_9.RULE index 14346877c72..1c856c76c83 100644 --- a/src/licensedcode/data/rules/tcl_9.RULE +++ b/src/licensedcode/data/rules/tcl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: tcl +is_license_tag: yes +relevance: 100 +--- + License: Tcl \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_9.yml b/src/licensedcode/data/rules/tcl_9.yml deleted file mode 100644 index 7d76c1bfbd8..00000000000 --- a/src/licensedcode/data/rules/tcl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcl -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcl_url_1.RULE b/src/licensedcode/data/rules/tcl_url_1.RULE index 08d8cd56d1d..257e2d95af9 100644 --- a/src/licensedcode/data/rules/tcl_url_1.RULE +++ b/src/licensedcode/data/rules/tcl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tcl +--- + https://spdx.org/licenses/tcl \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_url_1.yml b/src/licensedcode/data/rules/tcl_url_1.yml deleted file mode 100644 index d53c5669456..00000000000 --- a/src/licensedcode/data/rules/tcl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tcl diff --git a/src/licensedcode/data/rules/tcl_url_2.RULE b/src/licensedcode/data/rules/tcl_url_2.RULE index 473b0ee48b7..37fc7ae0d39 100644 --- a/src/licensedcode/data/rules/tcl_url_2.RULE +++ b/src/licensedcode/data/rules/tcl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: tcl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tcl.html +--- + https://spdx.org/licenses/tcl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcl_url_2.yml b/src/licensedcode/data/rules/tcl_url_2.yml deleted file mode 100644 index fb569d8c431..00000000000 --- a/src/licensedcode/data/rules/tcl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tcl.html diff --git a/src/licensedcode/data/rules/tcp-wrappers.RULE b/src/licensedcode/data/rules/tcp-wrappers.RULE index 52dc414db3c..948cc85a794 100644 --- a/src/licensedcode/data/rules/tcp-wrappers.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers.RULE @@ -1,3 +1,12 @@ +--- +license_expression: tcp-wrappers +is_license_text: yes +ignorable_copyrights: + - Copyright 1995 by Wietse Venema +ignorable_holders: + - Wietse Venema +--- + /************************************************************************ * Copyright 1995 by Wietse Venema. All rights reserved. Some individual * files may be covered by other copyrights. diff --git a/src/licensedcode/data/rules/tcp-wrappers.yml b/src/licensedcode/data/rules/tcp-wrappers.yml deleted file mode 100644 index d21644b0dd4..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcp-wrappers -is_license_text: yes -ignorable_copyrights: - - Copyright 1995 by Wietse Venema -ignorable_holders: - - Wietse Venema diff --git a/src/licensedcode/data/rules/tcp-wrappers_1.RULE b/src/licensedcode/data/rules/tcp-wrappers_1.RULE index 7ba803e53f0..a24878307b4 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_1.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: tcp-wrappers +is_license_text: yes +relevance: 100 +--- + As of June 1, 2001, the text below constitutes the TCP Wrappers license. * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/tcp-wrappers_1.yml b/src/licensedcode/data/rules/tcp-wrappers_1.yml deleted file mode 100644 index 8f9384ef2ef..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcp-wrappers -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcp-wrappers_10.RULE b/src/licensedcode/data/rules/tcp-wrappers_10.RULE index 6b9cc1531e7..f62993816ef 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_10.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_10.RULE @@ -1 +1,10 @@ +--- +license_expression: tcp-wrappers +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: TCP-wrappers \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_10.yml b/src/licensedcode/data/rules/tcp-wrappers_10.yml deleted file mode 100644 index 2d596c5fef4..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcp-wrappers -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcp-wrappers_11.RULE b/src/licensedcode/data/rules/tcp-wrappers_11.RULE index 44b2338fd1d..b2a21338a82 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_11.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_11.RULE @@ -1 +1,9 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/TCP-wrappers +--- + https://licenses.nuget.org/TCP-wrappers \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_11.yml b/src/licensedcode/data/rules/tcp-wrappers_11.yml deleted file mode 100644 index aafe7cca60d..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/TCP-wrappers diff --git a/src/licensedcode/data/rules/tcp-wrappers_12.RULE b/src/licensedcode/data/rules/tcp-wrappers_12.RULE index c1f58f56ebb..c24af9ce974 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_12.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_12.RULE @@ -1 +1,7 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/TCP-wrappers \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_12.yml b/src/licensedcode/data/rules/tcp-wrappers_12.yml deleted file mode 100644 index 6911d6182de..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcp-wrappers_13.RULE b/src/licensedcode/data/rules/tcp-wrappers_13.RULE index 3b1595ea6c1..bc5f8201190 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_13.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_13.RULE @@ -1 +1,9 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TCP-wrappers +--- + LICENSE {{TCP-wrappers}} https://spdx.org/licenses/TCP-wrappers \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_13.yml b/src/licensedcode/data/rules/tcp-wrappers_13.yml deleted file mode 100644 index fd15cd62b8b..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TCP-wrappers diff --git a/src/licensedcode/data/rules/tcp-wrappers_14.RULE b/src/licensedcode/data/rules/tcp-wrappers_14.RULE index ecc0bc2df67..b48690d5fe6 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_14.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_14.RULE @@ -1 +1,9 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TCP-wrappers +--- + {{TCP-wrappers}} https://spdx.org/licenses/TCP-wrappers \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_14.yml b/src/licensedcode/data/rules/tcp-wrappers_14.yml deleted file mode 100644 index fd15cd62b8b..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TCP-wrappers diff --git a/src/licensedcode/data/rules/tcp-wrappers_2.RULE b/src/licensedcode/data/rules/tcp-wrappers_2.RULE index d69a640615e..7d6346e7483 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_2.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: tcp-wrappers +is_license_notice: yes +relevance: 100 +--- + * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that this entire copyright notice * is duplicated in all such copies. diff --git a/src/licensedcode/data/rules/tcp-wrappers_2.yml b/src/licensedcode/data/rules/tcp-wrappers_2.yml deleted file mode 100644 index 9388f44c38f..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tcp-wrappers -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tcp-wrappers_3.RULE b/src/licensedcode/data/rules/tcp-wrappers_3.RULE index 0ac67e9157e..63e5ac7a5da 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_3.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: tcp-wrappers +is_license_text: yes +--- + * Individual files may be covered by other copyrights * (as noted in the file itself.) @@ -12,4 +17,4 @@ * * This software is provided "as is" and without any expressed or implied * warranties, including, without limitation, the implied warranties of -* merchantibility and fitness for any particular purpose. +* merchantibility and fitness for any particular purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_3.yml b/src/licensedcode/data/rules/tcp-wrappers_3.yml deleted file mode 100644 index 463448344cf..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: tcp-wrappers -is_license_text: yes diff --git a/src/licensedcode/data/rules/tcp-wrappers_4.RULE b/src/licensedcode/data/rules/tcp-wrappers_4.RULE index f3abff6c4c1..51eedf305e5 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_4.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_4.RULE @@ -1 +1,10 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TCP Wrappers License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_4.yml b/src/licensedcode/data/rules/tcp-wrappers_4.yml deleted file mode 100644 index 5e2041a5719..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcp-wrappers_5.RULE b/src/licensedcode/data/rules/tcp-wrappers_5.RULE index d2fee19a183..e97ca7bfffa 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_5.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_5.RULE @@ -1 +1,10 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: TCP Wrappers License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_5.yml b/src/licensedcode/data/rules/tcp-wrappers_5.yml deleted file mode 100644 index 5e2041a5719..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcp-wrappers_6.RULE b/src/licensedcode/data/rules/tcp-wrappers_6.RULE index 3d6fc98077b..19eea058027 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_6.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_6.RULE @@ -1 +1,10 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TCP-wrappers TCP Wrappers License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_6.yml b/src/licensedcode/data/rules/tcp-wrappers_6.yml deleted file mode 100644 index 5e2041a5719..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcp-wrappers_7.RULE b/src/licensedcode/data/rules/tcp-wrappers_7.RULE index d270691409f..0f4cdbd8abe 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_7.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_7.RULE @@ -1 +1,10 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TCP Wrappers License TCP-wrappers \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_7.yml b/src/licensedcode/data/rules/tcp-wrappers_7.yml deleted file mode 100644 index 5e2041a5719..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcp-wrappers_8.RULE b/src/licensedcode/data/rules/tcp-wrappers_8.RULE index 1eaefdcea44..cd821cc4aed 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_8.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_8.RULE @@ -1 +1,10 @@ +--- +license_expression: tcp-wrappers +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TCP-wrappers \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_8.yml b/src/licensedcode/data/rules/tcp-wrappers_8.yml deleted file mode 100644 index 2d596c5fef4..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcp-wrappers -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcp-wrappers_9.RULE b/src/licensedcode/data/rules/tcp-wrappers_9.RULE index e7ab2e3a8ab..d813df7dfee 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_9.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_9.RULE @@ -1 +1,10 @@ +--- +license_expression: tcp-wrappers +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TCP Wrappers License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_9.yml b/src/licensedcode/data/rules/tcp-wrappers_9.yml deleted file mode 100644 index 2d596c5fef4..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tcp-wrappers -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tcp-wrappers_url_1.RULE b/src/licensedcode/data/rules/tcp-wrappers_url_1.RULE index 11a54ec7cdc..4fd107e3109 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_url_1.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tcp-wrappers +--- + https://spdx.org/licenses/tcp-wrappers \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_url_1.yml b/src/licensedcode/data/rules/tcp-wrappers_url_1.yml deleted file mode 100644 index 6eeb91c06c2..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tcp-wrappers diff --git a/src/licensedcode/data/rules/tcp-wrappers_url_2.RULE b/src/licensedcode/data/rules/tcp-wrappers_url_2.RULE index 0ee7c14feb7..bc19d3ec106 100644 --- a/src/licensedcode/data/rules/tcp-wrappers_url_2.RULE +++ b/src/licensedcode/data/rules/tcp-wrappers_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: tcp-wrappers +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tcp-wrappers.html +--- + https://spdx.org/licenses/tcp-wrappers.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tcp-wrappers_url_2.yml b/src/licensedcode/data/rules/tcp-wrappers_url_2.yml deleted file mode 100644 index 7773465fe98..00000000000 --- a/src/licensedcode/data/rules/tcp-wrappers_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tcp-wrappers -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tcp-wrappers.html diff --git a/src/licensedcode/data/rules/tex-exception_1.RULE b/src/licensedcode/data/rules/tex-exception_1.RULE index c9af6f443f8..0301f75247c 100644 --- a/src/licensedcode/data/rules/tex-exception_1.RULE +++ b/src/licensedcode/data/rules/tex-exception_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: tex-exception +is_license_text: yes +--- + % As a special exception, when this file is read by TeX when processing % a Texinfo source document, you may use the result without -% restriction. \ No newline at end of file +% restriction. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tex-exception_1.yml b/src/licensedcode/data/rules/tex-exception_1.yml deleted file mode 100644 index 16d91766ad8..00000000000 --- a/src/licensedcode/data/rules/tex-exception_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: tex-exception -is_license_text: yes diff --git a/src/licensedcode/data/rules/tex-exception_2.RULE b/src/licensedcode/data/rules/tex-exception_2.RULE index 100db022464..5bb8ce4a69d 100644 --- a/src/licensedcode/data/rules/tex-exception_2.RULE +++ b/src/licensedcode/data/rules/tex-exception_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: tex-exception +is_license_text: yes +--- + % As a special exception, when this file is read by TeX when processing % a Texinfo source document, you may use the result without diff --git a/src/licensedcode/data/rules/tex-exception_2.yml b/src/licensedcode/data/rules/tex-exception_2.yml deleted file mode 100644 index 16d91766ad8..00000000000 --- a/src/licensedcode/data/rules/tex-exception_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: tex-exception -is_license_text: yes diff --git a/src/licensedcode/data/rules/tex-exception_3.RULE b/src/licensedcode/data/rules/tex-exception_3.RULE index e8614de1b04..4ca464c7bec 100644 --- a/src/licensedcode/data/rules/tex-exception_3.RULE +++ b/src/licensedcode/data/rules/tex-exception_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: tex-exception +is_license_notice: yes +relevance: 100 +--- + As a special exception, when this file is read by TeX when processing a TeX source document, you may use the result without restriction. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tex-exception_3.yml b/src/licensedcode/data/rules/tex-exception_3.yml deleted file mode 100644 index a39b38f8ebc..00000000000 --- a/src/licensedcode/data/rules/tex-exception_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tex-exception -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tex-live_1.RULE b/src/licensedcode/data/rules/tex-live_1.RULE index 1665ff530a4..8c1a364a4e6 100644 --- a/src/licensedcode/data/rules/tex-live_1.RULE +++ b/src/licensedcode/data/rules/tex-live_1.RULE @@ -1,3 +1,22 @@ +--- +license_expression: tex-live +is_license_text: yes +relevance: 99 +notes: this is an updated version with some changes +ignorable_urls: + - http://latex-project.org/lppl.html + - http://lists.tug.org/tex-live + - http://tug.org/tex-live/ + - http://tug.org/texlive/ + - http://tug.org/texlive/pkgcontrib.html + - http://tug.org/usergroups.html + - http://www.ctan.org/tex-archive/help/Catalogue/ + - http://www.debian.org/intro/free + - http://www.gnu.org/licenses/license-list.html + - http://www.gnu.org/philosophy/free-sw.html + - https://www.tug.org/donate/dev.html +--- + $Id: LICENSE.TL 22793 2011-06-05 15:38:08Z karl $ COPYING CONDITIONS FOR TeX Live: @@ -108,4 +127,4 @@ FSF commentary on existing licenses: http://www.gnu.org/licenses/license-list.html LPPL: http://latex-project.org/lppl.html or texmf-dist/doc/latex/base/lppl.txt -LPPL rationale: texmf-dist/doc/latex/base/modguide.pdf +LPPL rationale: texmf-dist/doc/latex/base/modguide.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/tex-live_1.yml b/src/licensedcode/data/rules/tex-live_1.yml deleted file mode 100644 index 2595e00da85..00000000000 --- a/src/licensedcode/data/rules/tex-live_1.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: tex-live -is_license_text: yes -relevance: 99 -notes: this is an updated version with some changes -ignorable_urls: - - http://latex-project.org/lppl.html - - http://lists.tug.org/tex-live - - http://tug.org/tex-live/ - - http://tug.org/texlive/ - - http://tug.org/texlive/pkgcontrib.html - - http://tug.org/usergroups.html - - http://www.ctan.org/tex-archive/help/Catalogue/ - - http://www.debian.org/intro/free - - http://www.gnu.org/licenses/license-list.html - - http://www.gnu.org/philosophy/free-sw.html - - https://www.tug.org/donate/dev.html diff --git a/src/licensedcode/data/rules/tex-live_2.RULE b/src/licensedcode/data/rules/tex-live_2.RULE index de912904570..090bb4a5af5 100644 --- a/src/licensedcode/data/rules/tex-live_2.RULE +++ b/src/licensedcode/data/rules/tex-live_2.RULE @@ -1,3 +1,22 @@ +--- +license_expression: tex-live +is_license_text: yes +relevance: 99 +notes: the tex-live license has many small variations +ignorable_urls: + - http://latex-project.org/lppl.html + - http://www.ctan.org/tex-archive/help/Catalogue/ + - http://www.debian.org/intro/free + - http://www.gnu.org/licenses/license-list.html + - http://www.gnu.org/philosophy/free-sw.html + - http://www.tug.org/tex-live + - http://www.tug.org/tex-live/ + - http://www.tug.org/usergroups.html + - https://www.tug.org/donate.html +ignorable_emails: + - texlive@tug.org +--- + License of the TeX live distribution as a compilation work COPYING CONDITIONS FOR TeX Live: @@ -114,4 +133,4 @@ FSF commentary on existing licenses: http://www.gnu.org/licenses/license-list.html LPPL: http://latex-project.org/lppl.html or texmf/doc/latex/base/lppl.txt -LPPL rationale: texmf/doc/latex/base/modguide.pdf +LPPL rationale: texmf/doc/latex/base/modguide.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/tex-live_2.yml b/src/licensedcode/data/rules/tex-live_2.yml deleted file mode 100644 index 45764f6fce5..00000000000 --- a/src/licensedcode/data/rules/tex-live_2.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: tex-live -is_license_text: yes -relevance: 99 -notes: the tex-live license has many small variations -ignorable_urls: - - http://latex-project.org/lppl.html - - http://www.ctan.org/tex-archive/help/Catalogue/ - - http://www.debian.org/intro/free - - http://www.gnu.org/licenses/license-list.html - - http://www.gnu.org/philosophy/free-sw.html - - http://www.tug.org/tex-live - - http://www.tug.org/tex-live/ - - http://www.tug.org/usergroups.html - - https://www.tug.org/donate.html -ignorable_emails: - - texlive@tug.org diff --git a/src/licensedcode/data/rules/tex-live_3.RULE b/src/licensedcode/data/rules/tex-live_3.RULE index 232d2193417..d664dcd2097 100644 --- a/src/licensedcode/data/rules/tex-live_3.RULE +++ b/src/licensedcode/data/rules/tex-live_3.RULE @@ -1,3 +1,22 @@ +--- +license_expression: tex-live +is_license_text: yes +relevance: 99 +notes: this is an updated version with some changes +ignorable_urls: + - http://latex-project.org/lppl.html + - http://lists.tug.org/tex-live + - http://tug.org/tex-live/ + - http://tug.org/texlive/ + - http://tug.org/texlive/pkgcontrib.html + - http://tug.org/usergroups.html + - http://www.ctan.org/tex-archive/help/Catalogue/ + - http://www.debian.org/intro/free + - https://www.gnu.org/licenses/license-list.html + - https://www.gnu.org/philosophy/free-sw.html + - https://www.tug.org/donate/dev.html +--- + $Id: LICENSE.TL 22793 2011-06-05 15:38:08Z karl $ COPYING CONDITIONS FOR TeX Live: @@ -108,4 +127,4 @@ FSF commentary on existing licenses: https://www.gnu.org/licenses/license-list.html LPPL: http://latex-project.org/lppl.html or texmf-dist/doc/latex/base/lppl.txt -LPPL rationale: texmf-dist/doc/latex/base/modguide.pdf +LPPL rationale: texmf-dist/doc/latex/base/modguide.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/tex-live_3.yml b/src/licensedcode/data/rules/tex-live_3.yml deleted file mode 100644 index b83b473a8f8..00000000000 --- a/src/licensedcode/data/rules/tex-live_3.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: tex-live -is_license_text: yes -relevance: 99 -notes: this is an updated version with some changes -ignorable_urls: - - http://latex-project.org/lppl.html - - http://lists.tug.org/tex-live - - http://tug.org/tex-live/ - - http://tug.org/texlive/ - - http://tug.org/texlive/pkgcontrib.html - - http://tug.org/usergroups.html - - http://www.ctan.org/tex-archive/help/Catalogue/ - - http://www.debian.org/intro/free - - https://www.gnu.org/licenses/license-list.html - - https://www.gnu.org/philosophy/free-sw.html - - https://www.tug.org/donate/dev.html diff --git a/src/licensedcode/data/rules/tex-live_4.RULE b/src/licensedcode/data/rules/tex-live_4.RULE index e6d1f6573c9..16249407c3e 100644 --- a/src/licensedcode/data/rules/tex-live_4.RULE +++ b/src/licensedcode/data/rules/tex-live_4.RULE @@ -1,3 +1,22 @@ +--- +license_expression: tex-live +is_license_text: yes +relevance: 99 +notes: the tex-live license has many small variations +ignorable_urls: + - http://latex-project.org/lppl.html + - http://www.ctan.org/tex-archive/help/Catalogue/ + - http://www.debian.org/intro/free + - http://www.tug.org/tex-live + - http://www.tug.org/tex-live/ + - http://www.tug.org/usergroups.html + - https://www.gnu.org/licenses/license-list.html + - https://www.gnu.org/philosophy/free-sw.html + - https://www.tug.org/donate.html +ignorable_emails: + - texlive@tug.org +--- + License of the TeX live distribution as a compilation work COPYING CONDITIONS FOR TeX Live: @@ -114,4 +133,4 @@ FSF commentary on existing licenses: https://www.gnu.org/licenses/license-list.html LPPL: http://latex-project.org/lppl.html or texmf/doc/latex/base/lppl.txt -LPPL rationale: texmf/doc/latex/base/modguide.pdf +LPPL rationale: texmf/doc/latex/base/modguide.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/tex-live_4.yml b/src/licensedcode/data/rules/tex-live_4.yml deleted file mode 100644 index 4c20539153b..00000000000 --- a/src/licensedcode/data/rules/tex-live_4.yml +++ /dev/null @@ -1,16 +0,0 @@ -license_expression: tex-live -is_license_text: yes -relevance: 99 -notes: the tex-live license has many small variations -ignorable_urls: - - http://latex-project.org/lppl.html - - http://www.ctan.org/tex-archive/help/Catalogue/ - - http://www.debian.org/intro/free - - http://www.tug.org/tex-live - - http://www.tug.org/tex-live/ - - http://www.tug.org/usergroups.html - - https://www.gnu.org/licenses/license-list.html - - https://www.gnu.org/philosophy/free-sw.html - - https://www.tug.org/donate.html -ignorable_emails: - - texlive@tug.org diff --git a/src/licensedcode/data/rules/tgppl-1.0.RULE b/src/licensedcode/data/rules/tgppl-1.0.RULE index 098eac74ad8..49da4b10cde 100644 --- a/src/licensedcode/data/rules/tgppl-1.0.RULE +++ b/src/licensedcode/data/rules/tgppl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: tgppl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html +--- + http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tgppl-1.0.yml b/src/licensedcode/data/rules/tgppl-1.0.yml deleted file mode 100644 index cd368ad1eac..00000000000 --- a/src/licensedcode/data/rules/tgppl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tgppl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://allmydata.org/source/tahoe/trunk/COPYING.TGPPL.html diff --git a/src/licensedcode/data/rules/tgppl-1.0_1.RULE b/src/licensedcode/data/rules/tgppl-1.0_1.RULE index d472d7e3b01..bbf71f86ba9 100644 --- a/src/licensedcode/data/rules/tgppl-1.0_1.RULE +++ b/src/licensedcode/data/rules/tgppl-1.0_1.RULE @@ -1 +1,6 @@ +--- +license_expression: tgppl-1.0 +is_license_notice: yes +--- + You may use this package under the Transitive Grace Period Public Licence, version 1.0, or, at your option, any later version. The Transitive Grace Period Public Licence says that you may distribute proprietary derived works of Tahoe without releasing the source code of that derived work for up to twelve months, after which time you are obligated to release the source code of the derived work under the Transitive Grace Period Public Licence. See the file COPYING.TGPPL.html for the terms of the Transitive Grace Period Public Licence, version 1.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tgppl-1.0_1.yml b/src/licensedcode/data/rules/tgppl-1.0_1.yml deleted file mode 100644 index 98341834ac0..00000000000 --- a/src/licensedcode/data/rules/tgppl-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: tgppl-1.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/thor-pl_1.RULE b/src/licensedcode/data/rules/thor-pl_1.RULE index 704bfd60e73..c92436b51e2 100644 --- a/src/licensedcode/data/rules/thor-pl_1.RULE +++ b/src/licensedcode/data/rules/thor-pl_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: thor-pl +is_license_notice: yes +referenced_filenames: + - README.licence +--- + You are free to distribute this software under the terms of the {{THOR Public Licence}}. The complete text of this licence can be found in the main directory of the distribution in diff --git a/src/licensedcode/data/rules/thor-pl_1.yml b/src/licensedcode/data/rules/thor-pl_1.yml deleted file mode 100644 index ebd389adfc7..00000000000 --- a/src/licensedcode/data/rules/thor-pl_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: thor-pl -is_license_notice: yes -referenced_filenames: - - README.licence diff --git a/src/licensedcode/data/rules/thor-pl_2.RULE b/src/licensedcode/data/rules/thor-pl_2.RULE index 2921e411971..c2720db674b 100644 --- a/src/licensedcode/data/rules/thor-pl_2.RULE +++ b/src/licensedcode/data/rules/thor-pl_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: thor-pl +is_license_notice: yes +relevance: 100 +--- + You are free to distribute this software under the terms of the {{THOR Public Licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/thor-pl_2.yml b/src/licensedcode/data/rules/thor-pl_2.yml deleted file mode 100644 index ce9ad2d75ba..00000000000 --- a/src/licensedcode/data/rules/thor-pl_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: thor-pl -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/thor-pl_3.RULE b/src/licensedcode/data/rules/thor-pl_3.RULE index 8d175fb2442..7360e86c10a 100644 --- a/src/licensedcode/data/rules/thor-pl_3.RULE +++ b/src/licensedcode/data/rules/thor-pl_3.RULE @@ -1 +1,8 @@ +--- +license_expression: thor-pl +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + {{THOR Public Licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/thor-pl_3.yml b/src/licensedcode/data/rules/thor-pl_3.yml deleted file mode 100644 index e349b9e3eb9..00000000000 --- a/src/licensedcode/data/rules/thor-pl_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: thor-pl -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tidy_1.RULE b/src/licensedcode/data/rules/tidy_1.RULE index 70c764a7303..d0168d937c9 100644 --- a/src/licensedcode/data/rules/tidy_1.RULE +++ b/src/licensedcode/data/rules/tidy_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: tidy +is_license_text: yes +--- + COPYRIGHT NOTICE: This software and documentation is provided "as is," and diff --git a/src/licensedcode/data/rules/tidy_1.yml b/src/licensedcode/data/rules/tidy_1.yml deleted file mode 100644 index d2dcfff0e41..00000000000 --- a/src/licensedcode/data/rules/tidy_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: tidy -is_license_text: yes diff --git a/src/licensedcode/data/rules/tidy_10.RULE b/src/licensedcode/data/rules/tidy_10.RULE index 29870123bd3..d096102ee9d 100644 --- a/src/licensedcode/data/rules/tidy_10.RULE +++ b/src/licensedcode/data/rules/tidy_10.RULE @@ -1 +1,7 @@ +--- +license_expression: tidy +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/HTMLTIDY \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_10.yml b/src/licensedcode/data/rules/tidy_10.yml deleted file mode 100644 index 75567dbd005..00000000000 --- a/src/licensedcode/data/rules/tidy_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tidy -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tidy_11.RULE b/src/licensedcode/data/rules/tidy_11.RULE index e579acf210d..cb9cc50ce91 100644 --- a/src/licensedcode/data/rules/tidy_11.RULE +++ b/src/licensedcode/data/rules/tidy_11.RULE @@ -1 +1,9 @@ +--- +license_expression: tidy +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/HTMLTIDY +--- + LICENSE {{HTMLTIDY}} https://spdx.org/licenses/HTMLTIDY \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_11.yml b/src/licensedcode/data/rules/tidy_11.yml deleted file mode 100644 index c02a5c76423..00000000000 --- a/src/licensedcode/data/rules/tidy_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tidy -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/HTMLTIDY diff --git a/src/licensedcode/data/rules/tidy_12.RULE b/src/licensedcode/data/rules/tidy_12.RULE index 0392cd70de5..5ef834907c9 100644 --- a/src/licensedcode/data/rules/tidy_12.RULE +++ b/src/licensedcode/data/rules/tidy_12.RULE @@ -1 +1,9 @@ +--- +license_expression: tidy +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/HTMLTIDY +--- + {{HTMLTIDY}} https://spdx.org/licenses/HTMLTIDY \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_12.yml b/src/licensedcode/data/rules/tidy_12.yml deleted file mode 100644 index c02a5c76423..00000000000 --- a/src/licensedcode/data/rules/tidy_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tidy -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/HTMLTIDY diff --git a/src/licensedcode/data/rules/tidy_2.RULE b/src/licensedcode/data/rules/tidy_2.RULE index 69e530af656..fd35a660a88 100644 --- a/src/licensedcode/data/rules/tidy_2.RULE +++ b/src/licensedcode/data/rules/tidy_2.RULE @@ -1 +1,10 @@ +--- +license_expression: tidy +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + HTML Tidy License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_2.yml b/src/licensedcode/data/rules/tidy_2.yml deleted file mode 100644 index d6bb219bdd1..00000000000 --- a/src/licensedcode/data/rules/tidy_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tidy -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tidy_23.RULE b/src/licensedcode/data/rules/tidy_23.RULE index c5f8123413d..28e80974030 100644 --- a/src/licensedcode/data/rules/tidy_23.RULE +++ b/src/licensedcode/data/rules/tidy_23.RULE @@ -1,3 +1,8 @@ +--- +license_expression: tidy +is_license_text: yes +--- + * * This software and documentation is provided "as is," and * the copyright holders and contributing author(s) make no @@ -26,4 +31,4 @@ * permit, without fee, and encourage the use of this source code * as a component for supporting the Hypertext Markup Language in * commercial products. If you use this source code in a product, - * acknowledgment is not required but would be appreciated. + * acknowledgment is not required but would be appreciated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_23.yml b/src/licensedcode/data/rules/tidy_23.yml deleted file mode 100644 index d2dcfff0e41..00000000000 --- a/src/licensedcode/data/rules/tidy_23.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: tidy -is_license_text: yes diff --git a/src/licensedcode/data/rules/tidy_3.RULE b/src/licensedcode/data/rules/tidy_3.RULE index 0a929653a57..c700efd1fa3 100644 --- a/src/licensedcode/data/rules/tidy_3.RULE +++ b/src/licensedcode/data/rules/tidy_3.RULE @@ -1 +1,10 @@ +--- +license_expression: tidy +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: HTML Tidy License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_3.yml b/src/licensedcode/data/rules/tidy_3.yml deleted file mode 100644 index d6bb219bdd1..00000000000 --- a/src/licensedcode/data/rules/tidy_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tidy -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tidy_4.RULE b/src/licensedcode/data/rules/tidy_4.RULE index 14ea55540d5..a8db5b9ddae 100644 --- a/src/licensedcode/data/rules/tidy_4.RULE +++ b/src/licensedcode/data/rules/tidy_4.RULE @@ -1 +1,10 @@ +--- +license_expression: tidy +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + HTMLTIDY HTML Tidy License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_4.yml b/src/licensedcode/data/rules/tidy_4.yml deleted file mode 100644 index d6bb219bdd1..00000000000 --- a/src/licensedcode/data/rules/tidy_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tidy -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tidy_5.RULE b/src/licensedcode/data/rules/tidy_5.RULE index e4ad4686d7d..e622e625dbb 100644 --- a/src/licensedcode/data/rules/tidy_5.RULE +++ b/src/licensedcode/data/rules/tidy_5.RULE @@ -1 +1,10 @@ +--- +license_expression: tidy +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + HTML Tidy License HTMLTIDY \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_5.yml b/src/licensedcode/data/rules/tidy_5.yml deleted file mode 100644 index d6bb219bdd1..00000000000 --- a/src/licensedcode/data/rules/tidy_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tidy -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tidy_6.RULE b/src/licensedcode/data/rules/tidy_6.RULE index d7c6904a4da..1202dc8f61f 100644 --- a/src/licensedcode/data/rules/tidy_6.RULE +++ b/src/licensedcode/data/rules/tidy_6.RULE @@ -1 +1,10 @@ +--- +license_expression: tidy +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: HTMLTIDY \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_6.yml b/src/licensedcode/data/rules/tidy_6.yml deleted file mode 100644 index 480fe851d4c..00000000000 --- a/src/licensedcode/data/rules/tidy_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tidy -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tidy_7.RULE b/src/licensedcode/data/rules/tidy_7.RULE index 99a6f4eaade..d8260550de0 100644 --- a/src/licensedcode/data/rules/tidy_7.RULE +++ b/src/licensedcode/data/rules/tidy_7.RULE @@ -1 +1,10 @@ +--- +license_expression: tidy +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: HTML Tidy License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_7.yml b/src/licensedcode/data/rules/tidy_7.yml deleted file mode 100644 index 480fe851d4c..00000000000 --- a/src/licensedcode/data/rules/tidy_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tidy -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tidy_8.RULE b/src/licensedcode/data/rules/tidy_8.RULE index 6879c2463bc..d2ac9d4eb8b 100644 --- a/src/licensedcode/data/rules/tidy_8.RULE +++ b/src/licensedcode/data/rules/tidy_8.RULE @@ -1 +1,10 @@ +--- +license_expression: tidy +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: HTMLTIDY \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_8.yml b/src/licensedcode/data/rules/tidy_8.yml deleted file mode 100644 index 480fe851d4c..00000000000 --- a/src/licensedcode/data/rules/tidy_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tidy -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tidy_9.RULE b/src/licensedcode/data/rules/tidy_9.RULE index f97d8dcbc9c..d4fc9880399 100644 --- a/src/licensedcode/data/rules/tidy_9.RULE +++ b/src/licensedcode/data/rules/tidy_9.RULE @@ -1 +1,9 @@ +--- +license_expression: tidy +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/HTMLTIDY +--- + https://licenses.nuget.org/HTMLTIDY \ No newline at end of file diff --git a/src/licensedcode/data/rules/tidy_9.yml b/src/licensedcode/data/rules/tidy_9.yml deleted file mode 100644 index 12ff3ccc297..00000000000 --- a/src/licensedcode/data/rules/tidy_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tidy -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/HTMLTIDY diff --git a/src/licensedcode/data/rules/tigra-calendar-3.2.RULE b/src/licensedcode/data/rules/tigra-calendar-3.2.RULE index cd228d1e85f..7bf1362a4dd 100644 --- a/src/licensedcode/data/rules/tigra-calendar-3.2.RULE +++ b/src/licensedcode/data/rules/tigra-calendar-3.2.RULE @@ -1 +1,9 @@ +--- +license_expression: tigra-calendar-3.2 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.softcomplex.com/products/tigra_calendar/ +--- + http://www.softcomplex.com/products/tigra_calendar/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/tigra-calendar-3.2.yml b/src/licensedcode/data/rules/tigra-calendar-3.2.yml deleted file mode 100644 index cb4143ca368..00000000000 --- a/src/licensedcode/data/rules/tigra-calendar-3.2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tigra-calendar-3.2 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.softcomplex.com/products/tigra_calendar/ diff --git a/src/licensedcode/data/rules/tigra-calendar-4.0.RULE b/src/licensedcode/data/rules/tigra-calendar-4.0.RULE index d06bdb25154..2ddc0fabac1 100644 --- a/src/licensedcode/data/rules/tigra-calendar-4.0.RULE +++ b/src/licensedcode/data/rules/tigra-calendar-4.0.RULE @@ -1 +1,9 @@ +--- +license_expression: tigra-calendar-4.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.javascript-calendar.com/docs/#license +--- + http://www.javascript-calendar.com/docs/#license \ No newline at end of file diff --git a/src/licensedcode/data/rules/tigra-calendar-4.0.yml b/src/licensedcode/data/rules/tigra-calendar-4.0.yml deleted file mode 100644 index d5669edb81d..00000000000 --- a/src/licensedcode/data/rules/tigra-calendar-4.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tigra-calendar-4.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.javascript-calendar.com/docs/#license diff --git a/src/licensedcode/data/rules/tmate.RULE b/src/licensedcode/data/rules/tmate.RULE index 5b4638857a1..c791315ae3f 100644 --- a/src/licensedcode/data/rules/tmate.RULE +++ b/src/licensedcode/data/rules/tmate.RULE @@ -1 +1,9 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://svnkit.com/licensing.html +--- + http://svnkit.com/licensing.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate.SPDX.RULE b/src/licensedcode/data/rules/tmate.SPDX.RULE index 7a7a6d6bc9d..b187715e106 100644 --- a/src/licensedcode/data/rules/tmate.SPDX.RULE +++ b/src/licensedcode/data/rules/tmate.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: tmate +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2004-2012 TMate Software +ignorable_holders: + - TMate Software +ignorable_emails: + - support@svnkit.com +--- + The TMate Open Source License. This license applies to all portions of TMate SVNKit library, which are not externally-maintained libraries (e.g. Ganymed SSH library). diff --git a/src/licensedcode/data/rules/tmate.SPDX.yml b/src/licensedcode/data/rules/tmate.SPDX.yml deleted file mode 100644 index 868c2b72386..00000000000 --- a/src/licensedcode/data/rules/tmate.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: tmate -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2004-2012 TMate Software -ignorable_holders: - - TMate Software -ignorable_emails: - - support@svnkit.com diff --git a/src/licensedcode/data/rules/tmate.yml b/src/licensedcode/data/rules/tmate.yml deleted file mode 100644 index 5b1c24d117b..00000000000 --- a/src/licensedcode/data/rules/tmate.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://svnkit.com/licensing.html diff --git a/src/licensedcode/data/rules/tmate_1.RULE b/src/licensedcode/data/rules/tmate_1.RULE index 0f268f8b104..8df4f2929a5 100644 --- a/src/licensedcode/data/rules/tmate_1.RULE +++ b/src/licensedcode/data/rules/tmate_1.RULE @@ -1 +1,9 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://svnkit.com/license.html +--- + http://svnkit.com/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_1.yml b/src/licensedcode/data/rules/tmate_1.yml deleted file mode 100644 index e7f4a035925..00000000000 --- a/src/licensedcode/data/rules/tmate_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://svnkit.com/license.html diff --git a/src/licensedcode/data/rules/tmate_10.RULE b/src/licensedcode/data/rules/tmate_10.RULE index fa49c73211e..81dbd48aa54 100644 --- a/src/licensedcode/data/rules/tmate_10.RULE +++ b/src/licensedcode/data/rules/tmate_10.RULE @@ -1 +1,10 @@ +--- +license_expression: tmate +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: TMate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_10.yml b/src/licensedcode/data/rules/tmate_10.yml deleted file mode 100644 index 20cc088d573..00000000000 --- a/src/licensedcode/data/rules/tmate_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tmate -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tmate_11.RULE b/src/licensedcode/data/rules/tmate_11.RULE index 14499524d85..4f8af177201 100644 --- a/src/licensedcode/data/rules/tmate_11.RULE +++ b/src/licensedcode/data/rules/tmate_11.RULE @@ -1 +1,9 @@ +--- +license_expression: tmate +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + TMate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_11.yml b/src/licensedcode/data/rules/tmate_11.yml deleted file mode 100644 index 780edf9ddf1..00000000000 --- a/src/licensedcode/data/rules/tmate_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tmate -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/tmate_12.RULE b/src/licensedcode/data/rules/tmate_12.RULE index 7c3bd197cc3..103c47818be 100644 --- a/src/licensedcode/data/rules/tmate_12.RULE +++ b/src/licensedcode/data/rules/tmate_12.RULE @@ -1 +1,9 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/TMate +--- + https://licenses.nuget.org/TMate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_12.yml b/src/licensedcode/data/rules/tmate_12.yml deleted file mode 100644 index 881f4596a1c..00000000000 --- a/src/licensedcode/data/rules/tmate_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/TMate diff --git a/src/licensedcode/data/rules/tmate_13.RULE b/src/licensedcode/data/rules/tmate_13.RULE index 8911691ab97..5dd0678aa20 100644 --- a/src/licensedcode/data/rules/tmate_13.RULE +++ b/src/licensedcode/data/rules/tmate_13.RULE @@ -1 +1,7 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/TMate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_13.yml b/src/licensedcode/data/rules/tmate_13.yml deleted file mode 100644 index 926efd4196b..00000000000 --- a/src/licensedcode/data/rules/tmate_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tmate_14.RULE b/src/licensedcode/data/rules/tmate_14.RULE index 69548b56f3e..5f3cc5fa0dc 100644 --- a/src/licensedcode/data/rules/tmate_14.RULE +++ b/src/licensedcode/data/rules/tmate_14.RULE @@ -1 +1,9 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TMate +--- + LICENSE {{TMate}} https://spdx.org/licenses/TMate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_14.yml b/src/licensedcode/data/rules/tmate_14.yml deleted file mode 100644 index c6457c3e7ed..00000000000 --- a/src/licensedcode/data/rules/tmate_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TMate diff --git a/src/licensedcode/data/rules/tmate_15.RULE b/src/licensedcode/data/rules/tmate_15.RULE index a68da5a88a8..6c5d3bdc242 100644 --- a/src/licensedcode/data/rules/tmate_15.RULE +++ b/src/licensedcode/data/rules/tmate_15.RULE @@ -1 +1,9 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TMate +--- + {{TMate}} https://spdx.org/licenses/TMate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_15.yml b/src/licensedcode/data/rules/tmate_15.yml deleted file mode 100644 index c6457c3e7ed..00000000000 --- a/src/licensedcode/data/rules/tmate_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TMate diff --git a/src/licensedcode/data/rules/tmate_2.RULE b/src/licensedcode/data/rules/tmate_2.RULE index ca67b7d65a6..e6110c3568f 100644 --- a/src/licensedcode/data/rules/tmate_2.RULE +++ b/src/licensedcode/data/rules/tmate_2.RULE @@ -1 +1,7 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 100 +--- + This file is licensed under the TMate Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_2.yml b/src/licensedcode/data/rules/tmate_2.yml deleted file mode 100644 index 926efd4196b..00000000000 --- a/src/licensedcode/data/rules/tmate_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tmate_3.RULE b/src/licensedcode/data/rules/tmate_3.RULE index c33d48797ac..50e662d90ea 100644 --- a/src/licensedcode/data/rules/tmate_3.RULE +++ b/src/licensedcode/data/rules/tmate_3.RULE @@ -1 +1,7 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 100 +--- + The TMate License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_3.yml b/src/licensedcode/data/rules/tmate_3.yml deleted file mode 100644 index 926efd4196b..00000000000 --- a/src/licensedcode/data/rules/tmate_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tmate_4.RULE b/src/licensedcode/data/rules/tmate_4.RULE index 3f1f35f736d..952391ba08d 100644 --- a/src/licensedcode/data/rules/tmate_4.RULE +++ b/src/licensedcode/data/rules/tmate_4.RULE @@ -1 +1,10 @@ +--- +license_expression: tmate +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TMate Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_4.yml b/src/licensedcode/data/rules/tmate_4.yml deleted file mode 100644 index 28170f2c21a..00000000000 --- a/src/licensedcode/data/rules/tmate_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tmate -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tmate_5.RULE b/src/licensedcode/data/rules/tmate_5.RULE index b783709ee60..aaae1ffe876 100644 --- a/src/licensedcode/data/rules/tmate_5.RULE +++ b/src/licensedcode/data/rules/tmate_5.RULE @@ -1 +1,10 @@ +--- +license_expression: tmate +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: TMate Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_5.yml b/src/licensedcode/data/rules/tmate_5.yml deleted file mode 100644 index 28170f2c21a..00000000000 --- a/src/licensedcode/data/rules/tmate_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tmate -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tmate_6.RULE b/src/licensedcode/data/rules/tmate_6.RULE index 0f0f6d3a2db..e73e699df60 100644 --- a/src/licensedcode/data/rules/tmate_6.RULE +++ b/src/licensedcode/data/rules/tmate_6.RULE @@ -1 +1,10 @@ +--- +license_expression: tmate +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TMate TMate Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_6.yml b/src/licensedcode/data/rules/tmate_6.yml deleted file mode 100644 index 28170f2c21a..00000000000 --- a/src/licensedcode/data/rules/tmate_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tmate -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tmate_7.RULE b/src/licensedcode/data/rules/tmate_7.RULE index 9ca130dfa6e..41de3304e2f 100644 --- a/src/licensedcode/data/rules/tmate_7.RULE +++ b/src/licensedcode/data/rules/tmate_7.RULE @@ -1 +1,10 @@ +--- +license_expression: tmate +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TMate Open Source License TMate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_7.yml b/src/licensedcode/data/rules/tmate_7.yml deleted file mode 100644 index 28170f2c21a..00000000000 --- a/src/licensedcode/data/rules/tmate_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tmate -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tmate_8.RULE b/src/licensedcode/data/rules/tmate_8.RULE index f4a07e29e03..d129d27d951 100644 --- a/src/licensedcode/data/rules/tmate_8.RULE +++ b/src/licensedcode/data/rules/tmate_8.RULE @@ -1 +1,10 @@ +--- +license_expression: tmate +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TMate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_8.yml b/src/licensedcode/data/rules/tmate_8.yml deleted file mode 100644 index 20cc088d573..00000000000 --- a/src/licensedcode/data/rules/tmate_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tmate -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tmate_9.RULE b/src/licensedcode/data/rules/tmate_9.RULE index 2c5c5cf856b..2822b92d293 100644 --- a/src/licensedcode/data/rules/tmate_9.RULE +++ b/src/licensedcode/data/rules/tmate_9.RULE @@ -1 +1,10 @@ +--- +license_expression: tmate +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TMate Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_9.yml b/src/licensedcode/data/rules/tmate_9.yml deleted file mode 100644 index 20cc088d573..00000000000 --- a/src/licensedcode/data/rules/tmate_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tmate -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tmate_and_apache-2.0_1.RULE b/src/licensedcode/data/rules/tmate_and_apache-2.0_1.RULE index db63c1ecb43..6e6d4b6b526 100644 --- a/src/licensedcode/data/rules/tmate_and_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/tmate_and_apache-2.0_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: tmate AND apache-2.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) TMate Software +ignorable_holders: + - TMate Software +ignorable_emails: + - support@svnkit.com +--- + The TMate License This license applies to all portions of TMate SVNKit library, which diff --git a/src/licensedcode/data/rules/tmate_and_apache-2.0_1.yml b/src/licensedcode/data/rules/tmate_and_apache-2.0_1.yml deleted file mode 100644 index 4d1a1e9d0cb..00000000000 --- a/src/licensedcode/data/rules/tmate_and_apache-2.0_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: tmate AND apache-2.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) TMate Software -ignorable_holders: - - TMate Software -ignorable_emails: - - support@svnkit.com diff --git a/src/licensedcode/data/rules/tmate_url_1.RULE b/src/licensedcode/data/rules/tmate_url_1.RULE index 905ee5e9283..3bbbc506bb5 100644 --- a/src/licensedcode/data/rules/tmate_url_1.RULE +++ b/src/licensedcode/data/rules/tmate_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tmate +--- + https://spdx.org/licenses/tmate \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_url_1.yml b/src/licensedcode/data/rules/tmate_url_1.yml deleted file mode 100644 index a7c88320ab8..00000000000 --- a/src/licensedcode/data/rules/tmate_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tmate diff --git a/src/licensedcode/data/rules/tmate_url_2.RULE b/src/licensedcode/data/rules/tmate_url_2.RULE index 859df65da10..1b33b048420 100644 --- a/src/licensedcode/data/rules/tmate_url_2.RULE +++ b/src/licensedcode/data/rules/tmate_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: tmate +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tmate.html +--- + https://spdx.org/licenses/tmate.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tmate_url_2.yml b/src/licensedcode/data/rules/tmate_url_2.yml deleted file mode 100644 index 0cdffa8e17e..00000000000 --- a/src/licensedcode/data/rules/tmate_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tmate -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tmate.html diff --git a/src/licensedcode/data/rules/torque-1.1_1.RULE b/src/licensedcode/data/rules/torque-1.1_1.RULE index aa6dea164bb..3fab4a1e1c2 100644 --- a/src/licensedcode/data/rules/torque-1.1_1.RULE +++ b/src/licensedcode/data/rules/torque-1.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TORQUE v2.5+ Software License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_1.yml b/src/licensedcode/data/rules/torque-1.1_1.yml deleted file mode 100644 index 26709271b0f..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/torque-1.1_10.RULE b/src/licensedcode/data/rules/torque-1.1_10.RULE index 926631ba701..56cab5f4e70 100644 --- a/src/licensedcode/data/rules/torque-1.1_10.RULE +++ b/src/licensedcode/data/rules/torque-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TORQUE-1.1 +--- + LICENSE {{TORQUE-1.1}} https://spdx.org/licenses/TORQUE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_10.yml b/src/licensedcode/data/rules/torque-1.1_10.yml deleted file mode 100644 index ddacf79deae..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TORQUE-1.1 diff --git a/src/licensedcode/data/rules/torque-1.1_11.RULE b/src/licensedcode/data/rules/torque-1.1_11.RULE index b16fa596b6c..dd3ad8876af 100644 --- a/src/licensedcode/data/rules/torque-1.1_11.RULE +++ b/src/licensedcode/data/rules/torque-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TORQUE-1.1 +--- + {{TORQUE-1.1}} https://spdx.org/licenses/TORQUE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_11.yml b/src/licensedcode/data/rules/torque-1.1_11.yml deleted file mode 100644 index ddacf79deae..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TORQUE-1.1 diff --git a/src/licensedcode/data/rules/torque-1.1_2.RULE b/src/licensedcode/data/rules/torque-1.1_2.RULE index a758f3144ee..8d854cc946b 100644 --- a/src/licensedcode/data/rules/torque-1.1_2.RULE +++ b/src/licensedcode/data/rules/torque-1.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: TORQUE v2.5+ Software License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_2.yml b/src/licensedcode/data/rules/torque-1.1_2.yml deleted file mode 100644 index 26709271b0f..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/torque-1.1_3.RULE b/src/licensedcode/data/rules/torque-1.1_3.RULE index 74d4f982f8b..60d63b78faa 100644 --- a/src/licensedcode/data/rules/torque-1.1_3.RULE +++ b/src/licensedcode/data/rules/torque-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TORQUE-1.1 TORQUE v2.5+ Software License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_3.yml b/src/licensedcode/data/rules/torque-1.1_3.yml deleted file mode 100644 index 26709271b0f..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/torque-1.1_4.RULE b/src/licensedcode/data/rules/torque-1.1_4.RULE index 5af40175f64..ce05ac4d79e 100644 --- a/src/licensedcode/data/rules/torque-1.1_4.RULE +++ b/src/licensedcode/data/rules/torque-1.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TORQUE v2.5+ Software License v1.1 TORQUE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_4.yml b/src/licensedcode/data/rules/torque-1.1_4.yml deleted file mode 100644 index 26709271b0f..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/torque-1.1_5.RULE b/src/licensedcode/data/rules/torque-1.1_5.RULE index 9422198e713..7b5d4d85150 100644 --- a/src/licensedcode/data/rules/torque-1.1_5.RULE +++ b/src/licensedcode/data/rules/torque-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: torque-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TORQUE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_5.yml b/src/licensedcode/data/rules/torque-1.1_5.yml deleted file mode 100644 index ed41161c820..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: torque-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/torque-1.1_6.RULE b/src/licensedcode/data/rules/torque-1.1_6.RULE index 445baf48d8d..e5c8723a318 100644 --- a/src/licensedcode/data/rules/torque-1.1_6.RULE +++ b/src/licensedcode/data/rules/torque-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: torque-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TORQUE v2.5+ Software License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_6.yml b/src/licensedcode/data/rules/torque-1.1_6.yml deleted file mode 100644 index ed41161c820..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: torque-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/torque-1.1_7.RULE b/src/licensedcode/data/rules/torque-1.1_7.RULE index 4bb842dcafa..233c6874c36 100644 --- a/src/licensedcode/data/rules/torque-1.1_7.RULE +++ b/src/licensedcode/data/rules/torque-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: torque-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: TORQUE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_7.yml b/src/licensedcode/data/rules/torque-1.1_7.yml deleted file mode 100644 index ed41161c820..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: torque-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/torque-1.1_8.RULE b/src/licensedcode/data/rules/torque-1.1_8.RULE index 2c8f2171093..5a2f169d2fa 100644 --- a/src/licensedcode/data/rules/torque-1.1_8.RULE +++ b/src/licensedcode/data/rules/torque-1.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/TORQUE-1.1 +--- + https://licenses.nuget.org/TORQUE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_8.yml b/src/licensedcode/data/rules/torque-1.1_8.yml deleted file mode 100644 index 426b60d7e75..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/TORQUE-1.1 diff --git a/src/licensedcode/data/rules/torque-1.1_9.RULE b/src/licensedcode/data/rules/torque-1.1_9.RULE index 63eaa39c5b5..a3c29989a37 100644 --- a/src/licensedcode/data/rules/torque-1.1_9.RULE +++ b/src/licensedcode/data/rules/torque-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/TORQUE-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_9.yml b/src/licensedcode/data/rules/torque-1.1_9.yml deleted file mode 100644 index a1573083d23..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/torque-1.1_url_1.RULE b/src/licensedcode/data/rules/torque-1.1_url_1.RULE index e5beac0867d..422aa94af59 100644 --- a/src/licensedcode/data/rules/torque-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/torque-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/torque-1.1 +--- + https://spdx.org/licenses/torque-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_url_1.yml b/src/licensedcode/data/rules/torque-1.1_url_1.yml deleted file mode 100644 index 5a49588a416..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/torque-1.1 diff --git a/src/licensedcode/data/rules/torque-1.1_url_2.RULE b/src/licensedcode/data/rules/torque-1.1_url_2.RULE index e10fc6df96a..6b5c9449256 100644 --- a/src/licensedcode/data/rules/torque-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/torque-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: torque-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/torque-1.1.html +--- + https://spdx.org/licenses/torque-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/torque-1.1_url_2.yml b/src/licensedcode/data/rules/torque-1.1_url_2.yml deleted file mode 100644 index 43b9fccf52a..00000000000 --- a/src/licensedcode/data/rules/torque-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: torque-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/torque-1.1.html diff --git a/src/licensedcode/data/rules/tosl_1.RULE b/src/licensedcode/data/rules/tosl_1.RULE index 6b0e3aaa593..e5c5489f872 100644 --- a/src/licensedcode/data/rules/tosl_1.RULE +++ b/src/licensedcode/data/rules/tosl_1.RULE @@ -1 +1,10 @@ +--- +license_expression: tosl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Trusster Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_1.yml b/src/licensedcode/data/rules/tosl_1.yml deleted file mode 100644 index 9a5e631aa22..00000000000 --- a/src/licensedcode/data/rules/tosl_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tosl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tosl_10.RULE b/src/licensedcode/data/rules/tosl_10.RULE index 98fc7ee08cc..2ffe137eac5 100644 --- a/src/licensedcode/data/rules/tosl_10.RULE +++ b/src/licensedcode/data/rules/tosl_10.RULE @@ -1 +1,9 @@ +--- +license_expression: tosl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TOSL +--- + LICENSE {{TOSL}} https://spdx.org/licenses/TOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_10.yml b/src/licensedcode/data/rules/tosl_10.yml deleted file mode 100644 index 93355bf76d5..00000000000 --- a/src/licensedcode/data/rules/tosl_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tosl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TOSL diff --git a/src/licensedcode/data/rules/tosl_11.RULE b/src/licensedcode/data/rules/tosl_11.RULE index c26957b217f..168a49a30a9 100644 --- a/src/licensedcode/data/rules/tosl_11.RULE +++ b/src/licensedcode/data/rules/tosl_11.RULE @@ -1 +1,9 @@ +--- +license_expression: tosl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TOSL +--- + {{TOSL}} https://spdx.org/licenses/TOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_11.yml b/src/licensedcode/data/rules/tosl_11.yml deleted file mode 100644 index 93355bf76d5..00000000000 --- a/src/licensedcode/data/rules/tosl_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tosl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TOSL diff --git a/src/licensedcode/data/rules/tosl_2.RULE b/src/licensedcode/data/rules/tosl_2.RULE index 19f0754de79..5e6b6440024 100644 --- a/src/licensedcode/data/rules/tosl_2.RULE +++ b/src/licensedcode/data/rules/tosl_2.RULE @@ -1 +1,10 @@ +--- +license_expression: tosl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Trusster Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_2.yml b/src/licensedcode/data/rules/tosl_2.yml deleted file mode 100644 index 9a5e631aa22..00000000000 --- a/src/licensedcode/data/rules/tosl_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tosl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tosl_3.RULE b/src/licensedcode/data/rules/tosl_3.RULE index 7b20e64b4bc..fc250af7232 100644 --- a/src/licensedcode/data/rules/tosl_3.RULE +++ b/src/licensedcode/data/rules/tosl_3.RULE @@ -1 +1,10 @@ +--- +license_expression: tosl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TOSL Trusster Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_3.yml b/src/licensedcode/data/rules/tosl_3.yml deleted file mode 100644 index 9a5e631aa22..00000000000 --- a/src/licensedcode/data/rules/tosl_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tosl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tosl_4.RULE b/src/licensedcode/data/rules/tosl_4.RULE index 402d45ed5dc..93a5e4b38e3 100644 --- a/src/licensedcode/data/rules/tosl_4.RULE +++ b/src/licensedcode/data/rules/tosl_4.RULE @@ -1 +1,10 @@ +--- +license_expression: tosl +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Trusster Open Source License TOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_4.yml b/src/licensedcode/data/rules/tosl_4.yml deleted file mode 100644 index 9a5e631aa22..00000000000 --- a/src/licensedcode/data/rules/tosl_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tosl -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tosl_5.RULE b/src/licensedcode/data/rules/tosl_5.RULE index 548f097bdc2..ddbd9b6202a 100644 --- a/src/licensedcode/data/rules/tosl_5.RULE +++ b/src/licensedcode/data/rules/tosl_5.RULE @@ -1 +1,10 @@ +--- +license_expression: tosl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_5.yml b/src/licensedcode/data/rules/tosl_5.yml deleted file mode 100644 index da4cf653e4e..00000000000 --- a/src/licensedcode/data/rules/tosl_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tosl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tosl_6.RULE b/src/licensedcode/data/rules/tosl_6.RULE index 82d81d56755..30fb2366982 100644 --- a/src/licensedcode/data/rules/tosl_6.RULE +++ b/src/licensedcode/data/rules/tosl_6.RULE @@ -1 +1,10 @@ +--- +license_expression: tosl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Trusster Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_6.yml b/src/licensedcode/data/rules/tosl_6.yml deleted file mode 100644 index da4cf653e4e..00000000000 --- a/src/licensedcode/data/rules/tosl_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tosl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tosl_7.RULE b/src/licensedcode/data/rules/tosl_7.RULE index e49642ccd07..bcc174ade46 100644 --- a/src/licensedcode/data/rules/tosl_7.RULE +++ b/src/licensedcode/data/rules/tosl_7.RULE @@ -1 +1,10 @@ +--- +license_expression: tosl +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: TOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_7.yml b/src/licensedcode/data/rules/tosl_7.yml deleted file mode 100644 index da4cf653e4e..00000000000 --- a/src/licensedcode/data/rules/tosl_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tosl -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tosl_8.RULE b/src/licensedcode/data/rules/tosl_8.RULE index 720622e0c62..c67c2e2fbc5 100644 --- a/src/licensedcode/data/rules/tosl_8.RULE +++ b/src/licensedcode/data/rules/tosl_8.RULE @@ -1 +1,9 @@ +--- +license_expression: tosl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/TOSL +--- + https://licenses.nuget.org/TOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_8.yml b/src/licensedcode/data/rules/tosl_8.yml deleted file mode 100644 index 18141e893b0..00000000000 --- a/src/licensedcode/data/rules/tosl_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tosl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/TOSL diff --git a/src/licensedcode/data/rules/tosl_9.RULE b/src/licensedcode/data/rules/tosl_9.RULE index f350842ef2e..09bb325cebd 100644 --- a/src/licensedcode/data/rules/tosl_9.RULE +++ b/src/licensedcode/data/rules/tosl_9.RULE @@ -1 +1,7 @@ +--- +license_expression: tosl +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/TOSL \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_9.yml b/src/licensedcode/data/rules/tosl_9.yml deleted file mode 100644 index be62dd1cd68..00000000000 --- a/src/licensedcode/data/rules/tosl_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tosl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tosl_url_1.RULE b/src/licensedcode/data/rules/tosl_url_1.RULE index eb95ddf129e..12bda824162 100644 --- a/src/licensedcode/data/rules/tosl_url_1.RULE +++ b/src/licensedcode/data/rules/tosl_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: tosl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tosl +--- + https://spdx.org/licenses/tosl \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_url_1.yml b/src/licensedcode/data/rules/tosl_url_1.yml deleted file mode 100644 index bf40612e7af..00000000000 --- a/src/licensedcode/data/rules/tosl_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tosl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tosl diff --git a/src/licensedcode/data/rules/tosl_url_2.RULE b/src/licensedcode/data/rules/tosl_url_2.RULE index c1daa23fb6a..5e273eb5487 100644 --- a/src/licensedcode/data/rules/tosl_url_2.RULE +++ b/src/licensedcode/data/rules/tosl_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: tosl +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tosl.html +--- + https://spdx.org/licenses/tosl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tosl_url_2.yml b/src/licensedcode/data/rules/tosl_url_2.yml deleted file mode 100644 index 6db2a33f70a..00000000000 --- a/src/licensedcode/data/rules/tosl_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tosl -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tosl.html diff --git a/src/licensedcode/data/rules/tpl-1.0.RULE b/src/licensedcode/data/rules/tpl-1.0.RULE index 72814ba4739..af170040791 100644 --- a/src/licensedcode/data/rules/tpl-1.0.RULE +++ b/src/licensedcode/data/rules/tpl-1.0.RULE @@ -1,3 +1,11 @@ +--- +license_expression: tpl-1.0 +is_license_text: yes +notes: Seen at http://terracotta.org/legal/terracotta-public-license AND http://terracotta.org/legal/changes-from-the-mpl +ignorable_urls: + - http://www.terracotta.org/TPL +--- + 1. Definitions 1.1. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. diff --git a/src/licensedcode/data/rules/tpl-1.0.yml b/src/licensedcode/data/rules/tpl-1.0.yml deleted file mode 100644 index 068820dad4f..00000000000 --- a/src/licensedcode/data/rules/tpl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tpl-1.0 -is_license_text: yes -notes: Seen at http://terracotta.org/legal/terracotta-public-license AND http://terracotta.org/legal/changes-from-the-mpl -ignorable_urls: - - http://www.terracotta.org/TPL diff --git a/src/licensedcode/data/rules/trademark-notice_1.RULE b/src/licensedcode/data/rules/trademark-notice_1.RULE index 14a828d89c7..db0e39189ed 100644 --- a/src/licensedcode/data/rules/trademark-notice_1.RULE +++ b/src/licensedcode/data/rules/trademark-notice_1.RULE @@ -1,2 +1,9 @@ +--- +license_expression: generic-trademark +is_license_notice: yes +relevance: 100 +notes: See in https://github.com/PixarAnimationStudios/OpenTimelineIO +--- + Nothing in the license file or this project grants any right to use or any other contributor’s trade names, trademarks, service marks, or product names. \ No newline at end of file diff --git a/src/licensedcode/data/rules/trademark-notice_1.yml b/src/licensedcode/data/rules/trademark-notice_1.yml deleted file mode 100644 index 8977fcccec9..00000000000 --- a/src/licensedcode/data/rules/trademark-notice_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-trademark -is_license_notice: yes -relevance: 100 -notes: See in https://github.com/PixarAnimationStudios/OpenTimelineIO diff --git a/src/licensedcode/data/rules/trademark-notice_2.RULE b/src/licensedcode/data/rules/trademark-notice_2.RULE index 0cb679fb7bb..05907a73c1a 100644 --- a/src/licensedcode/data/rules/trademark-notice_2.RULE +++ b/src/licensedcode/data/rules/trademark-notice_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: generic-trademark +is_license_notice: yes +relevance: 100 +notes: https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py +--- + # The name and logo # (either separately or in combination, Trademarks") are # trademarks of. The License does not grant you any right or diff --git a/src/licensedcode/data/rules/trademark-notice_2.yml b/src/licensedcode/data/rules/trademark-notice_2.yml deleted file mode 100644 index 7ebcfb600b3..00000000000 --- a/src/licensedcode/data/rules/trademark-notice_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: generic-trademark -is_license_notice: yes -relevance: 100 -notes: https://github.com/quantumblacklabs/kedro/blob/master/kedro/pipeline/decorators.py diff --git a/src/licensedcode/data/rules/trademark-notice_openjdk_1.1.RULE b/src/licensedcode/data/rules/trademark-notice_openjdk_1.1.RULE index 4aa1f6252e4..ecd755c70ec 100644 --- a/src/licensedcode/data/rules/trademark-notice_openjdk_1.1.RULE +++ b/src/licensedcode/data/rules/trademark-notice_openjdk_1.1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: generic-trademark +is_license_text: yes +notes: https://web.archive.org/web/20090211110917/http://openjdk.java.net:80/legal/openjdk-generic-trademark.html +ignorable_urls: + - http://download.java.net/openjdk + - http://hg.openjdk.java.net/jdk6 + - http://mail.openjdk.java.net/ + - http://openjdk.java.net/ + - http://openjdk.java.net/legal +ignorable_emails: + - announce@openjdk.java.net + - openjdk-tm@sun.com +--- + OpenJDK Trademark Notice Version 1.1, 2008/3/10 @@ -38,4 +53,4 @@ the OpenJDK Community. Please send questions or comments about this Notice to Sun Microsystems at openjdk-tm@sun.com. Revisions to this Notice will be announced on the public mailing list announce@openjdk.java.net, to which you may subscribe by visiting http://mail.openjdk.java.net. The latest version of -this Notice may be found at http://openjdk.java.net/legal. +this Notice may be found at http://openjdk.java.net/legal. \ No newline at end of file diff --git a/src/licensedcode/data/rules/trademark-notice_openjdk_1.1.yml b/src/licensedcode/data/rules/trademark-notice_openjdk_1.1.yml deleted file mode 100644 index b6947e7af64..00000000000 --- a/src/licensedcode/data/rules/trademark-notice_openjdk_1.1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: generic-trademark -is_license_text: yes -notes: https://web.archive.org/web/20090211110917/http://openjdk.java.net:80/legal/openjdk-generic-trademark.html -ignorable_urls: - - http://download.java.net/openjdk - - http://hg.openjdk.java.net/jdk6 - - http://mail.openjdk.java.net/ - - http://openjdk.java.net/ - - http://openjdk.java.net/legal -ignorable_emails: - - announce@openjdk.java.net - - openjdk-tm@sun.com diff --git a/src/licensedcode/data/rules/trademark-notice_openjdk_1.20.RULE b/src/licensedcode/data/rules/trademark-notice_openjdk_1.20.RULE index 6feb88495a2..61a0ff6a3d3 100644 --- a/src/licensedcode/data/rules/trademark-notice_openjdk_1.20.RULE +++ b/src/licensedcode/data/rules/trademark-notice_openjdk_1.20.RULE @@ -1,3 +1,17 @@ +--- +license_expression: generic-trademark +is_license_text: yes +notes: https://web.archive.org/web/20120212051505/http://openjdk.java.net/legal/openjdk-generic-trademark.html +ignorable_urls: + - http://download.java.net/openjdk/jdk6 + - http://download.java.net/openjdk/jdk7 + - http://download.java.net/openjdk/jdk8 + - http://hg.openjdk.java.net/jdk6/jdk6 + - http://hg.openjdk.java.net/jdk7/jdk7 + - http://hg.openjdk.java.net/jdk8/jdk8 + - http://mail.openjdk.java.net/ +--- + OpenJDK Trademark Notice @@ -67,5 +81,4 @@ Trademark Owner intends to revise this Notice as necessary in order to will be announced on the public mailing list announce at openjdk.java.net, to which you may subscribe by visiting http://mail.openjdk.java.net. Please send questions or comments about - this Notice to the discuss list at the same location. - + this Notice to the discuss list at the same location. \ No newline at end of file diff --git a/src/licensedcode/data/rules/trademark-notice_openjdk_1.20.yml b/src/licensedcode/data/rules/trademark-notice_openjdk_1.20.yml deleted file mode 100644 index 8790cddd1aa..00000000000 --- a/src/licensedcode/data/rules/trademark-notice_openjdk_1.20.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: generic-trademark -is_license_text: yes -notes: https://web.archive.org/web/20120212051505/http://openjdk.java.net/legal/openjdk-generic-trademark.html -ignorable_urls: - - http://download.java.net/openjdk/jdk6 - - http://download.java.net/openjdk/jdk7 - - http://download.java.net/openjdk/jdk8 - - http://hg.openjdk.java.net/jdk6/jdk6 - - http://hg.openjdk.java.net/jdk7/jdk7 - - http://hg.openjdk.java.net/jdk8/jdk8 - - http://mail.openjdk.java.net/ diff --git a/src/licensedcode/data/rules/trademark-notice_openjdk_1.21.RULE b/src/licensedcode/data/rules/trademark-notice_openjdk_1.21.RULE index 8fe177c37b2..8e58dce67e6 100644 --- a/src/licensedcode/data/rules/trademark-notice_openjdk_1.21.RULE +++ b/src/licensedcode/data/rules/trademark-notice_openjdk_1.21.RULE @@ -1,3 +1,23 @@ +--- +license_expression: generic-trademark +is_license_text: yes +notes: https://web.archive.org/web/20180303212217/http://openjdk.java.net:80/legal/openjdk-generic-trademark.html +ignorable_urls: + - http://download.java.net/openjdk/jdk6 + - http://download.java.net/openjdk/jdk7 + - http://download.java.net/openjdk/jdk8 + - http://hg.openjdk.java.net/jdk + - http://hg.openjdk.java.net/jdk-updates + - http://hg.openjdk.java.net/jdk10 + - http://hg.openjdk.java.net/jdk6 + - http://hg.openjdk.java.net/jdk7 + - http://hg.openjdk.java.net/jdk7u + - http://hg.openjdk.java.net/jdk8 + - http://hg.openjdk.java.net/jdk8u + - http://hg.openjdk.java.net/jdk9 + - http://mail.openjdk.java.net/ +--- + OpenJDK Trademark Notice @@ -73,5 +93,4 @@ meet the needs of the OpenJDK Community. Revisions to this notice will be announced on the public mailing list announce at openjdk.java.net, to which you may subscribe by visiting http://mail.openjdk.java.net. Please send questions or comments about this Notice to the discuss list at the -same location. - +same location. \ No newline at end of file diff --git a/src/licensedcode/data/rules/trademark-notice_openjdk_1.21.yml b/src/licensedcode/data/rules/trademark-notice_openjdk_1.21.yml deleted file mode 100644 index afe177a10ab..00000000000 --- a/src/licensedcode/data/rules/trademark-notice_openjdk_1.21.yml +++ /dev/null @@ -1,17 +0,0 @@ -license_expression: generic-trademark -is_license_text: yes -notes: https://web.archive.org/web/20180303212217/http://openjdk.java.net:80/legal/openjdk-generic-trademark.html -ignorable_urls: - - http://download.java.net/openjdk/jdk6 - - http://download.java.net/openjdk/jdk7 - - http://download.java.net/openjdk/jdk8 - - http://hg.openjdk.java.net/jdk - - http://hg.openjdk.java.net/jdk-updates - - http://hg.openjdk.java.net/jdk10 - - http://hg.openjdk.java.net/jdk6 - - http://hg.openjdk.java.net/jdk7 - - http://hg.openjdk.java.net/jdk7u - - http://hg.openjdk.java.net/jdk8 - - http://hg.openjdk.java.net/jdk8u - - http://hg.openjdk.java.net/jdk9 - - http://mail.openjdk.java.net/ diff --git a/src/licensedcode/data/rules/truecrypt-3.1_1.RULE b/src/licensedcode/data/rules/truecrypt-3.1_1.RULE index 432033e5b91..5392e5ca7a6 100644 --- a/src/licensedcode/data/rules/truecrypt-3.1_1.RULE +++ b/src/licensedcode/data/rules/truecrypt-3.1_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: truecrypt-3.1 +is_license_notice: yes +relevance: 95 +notes: this is a v3... but this is a super rare license +--- + TrueCrypt License Version 3.0 Software distributed under this license is distributed on an "AS @@ -7,6 +14,4 @@ USES, COPIES, MODIFIES, OR (RE)DISTRIBUTES ANY PART OF THE SOFTWARE IS, BY SUCH ACTION(S), ACCEPTING AND AGREEING TO BE BOUND BY ALL TERMS AND CONDITIONS OF THIS LICENSE. IF YOU DO NOT ACCEPT THEM, DO NOT USE, COPY, MODIFY, NOR (RE)DISTRIBUTE THE -SOFTWARE, NOR ANY PART(S) THEREOF. - - +SOFTWARE, NOR ANY PART(S) THEREOF. \ No newline at end of file diff --git a/src/licensedcode/data/rules/truecrypt-3.1_1.yml b/src/licensedcode/data/rules/truecrypt-3.1_1.yml deleted file mode 100644 index e173ec3f2b1..00000000000 --- a/src/licensedcode/data/rules/truecrypt-3.1_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: truecrypt-3.1 -is_license_notice: yes -relevance: 95 -notes: this is a v3... but this is a super rare license diff --git a/src/licensedcode/data/rules/truecrypt-3.1_2.RULE b/src/licensedcode/data/rules/truecrypt-3.1_2.RULE index 70b0c3a870e..04aed61a0e0 100644 --- a/src/licensedcode/data/rules/truecrypt-3.1_2.RULE +++ b/src/licensedcode/data/rules/truecrypt-3.1_2.RULE @@ -1,3 +1,26 @@ +--- +license_expression: truecrypt-3.1 +is_license_notice: yes +relevance: 90 +minimum_coverage: 95 +notes: this is an older version of this rare license thatw e report as if it was the newer version + with a lesser relevance. +ignorable_copyrights: + - Copyright (c) 1998-2000 Paul Le Roux + - Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. + - Copyright (c) 2002-2004 Mark Adler +ignorable_holders: + - Brian Gladman, Worcester, UK. + - Mark Adler + - Paul Le Roux +ignorable_authors: + - Paul Le Roux +ignorable_urls: + - http://www.truecrypt.org/ +ignorable_emails: + - pleroux@swprofessionals.com +--- + TrueCrypt License Version 3.0 Software distributed under this license is distributed on an "AS diff --git a/src/licensedcode/data/rules/truecrypt-3.1_2.yml b/src/licensedcode/data/rules/truecrypt-3.1_2.yml deleted file mode 100644 index d1daea01b03..00000000000 --- a/src/licensedcode/data/rules/truecrypt-3.1_2.yml +++ /dev/null @@ -1,20 +0,0 @@ -license_expression: truecrypt-3.1 -is_license_notice: yes -relevance: 90 -minimum_coverage: 95 -notes: this is an older version of this rare license thatw e report as if it was the newer version - with a lesser relevance. -ignorable_copyrights: - - Copyright (c) 1998-2000 Paul Le Roux - - Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. - - Copyright (c) 2002-2004 Mark Adler -ignorable_holders: - - Brian Gladman, Worcester, UK. - - Mark Adler - - Paul Le Roux -ignorable_authors: - - Paul Le Roux -ignorable_urls: - - http://www.truecrypt.org/ -ignorable_emails: - - pleroux@swprofessionals.com diff --git a/src/licensedcode/data/rules/tsl_1.RULE b/src/licensedcode/data/rules/tsl_1.RULE index 113c3aec1c7..37122804b4b 100644 --- a/src/licensedcode/data/rules/tsl_1.RULE +++ b/src/licensedcode/data/rules/tsl_1.RULE @@ -1 +1,8 @@ +--- +license_expression: tsl-2020 +is_license_notice: yes +relevance: 99 +notes: this could be also the tsl-2018 therefore we do not have a relevance of 100 +--- + This file and its contents are licensed under the Timescale License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/tsl_1.yml b/src/licensedcode/data/rules/tsl_1.yml deleted file mode 100644 index 0b8e783ad1c..00000000000 --- a/src/licensedcode/data/rules/tsl_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: tsl-2020 -is_license_notice: yes -relevance: 99 -notes: this could be also the tsl-2018 therefore we do not have a relevance of 100 diff --git a/src/licensedcode/data/rules/tsl_2.RULE b/src/licensedcode/data/rules/tsl_2.RULE index b990b4d4666..ba195acbc18 100644 --- a/src/licensedcode/data/rules/tsl_2.RULE +++ b/src/licensedcode/data/rules/tsl_2.RULE @@ -1 +1,10 @@ -library is licensed under the [Timescale License](LICENSE-TIMESCALE). +--- +license_expression: tsl-2020 +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE-TIMESCALE +notes: this could be also the tsl-2018 therefore we do not have a relevance of 100 +--- + +library is licensed under the [Timescale License](LICENSE-TIMESCALE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/tsl_2.yml b/src/licensedcode/data/rules/tsl_2.yml deleted file mode 100644 index 1d34ea692fa..00000000000 --- a/src/licensedcode/data/rules/tsl_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tsl-2020 -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE-TIMESCALE -notes: this could be also the tsl-2018 therefore we do not have a relevance of 100 diff --git a/src/licensedcode/data/rules/ttyp0_1.RULE b/src/licensedcode/data/rules/ttyp0_1.RULE index 158fa471662..7c6f1034c70 100644 --- a/src/licensedcode/data/rules/ttyp0_1.RULE +++ b/src/licensedcode/data/rules/ttyp0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ttyp0 +is_license_notice: yes +relevance: 100 +--- + released under the ttyp0 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ttyp0_1.yml b/src/licensedcode/data/rules/ttyp0_1.yml deleted file mode 100644 index ceedaf6e080..00000000000 --- a/src/licensedcode/data/rules/ttyp0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ttyp0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_1.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_1.RULE index 53156b03f30..97b8e112595 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_1.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: tu-berlin-2.0 +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + Any use of this software is permitted provided that this notice is not removed and that neither the authors nor the Technische Universitaet Berlin are deemed to have made any representations as to the suitability of this diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_1.yml b/src/licensedcode/data/rules/tu-berlin-2.0_1.yml deleted file mode 100644 index 14de81090a3..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_10.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_10.RULE index c44e8105b2a..9aa8dc5b04b 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_10.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/TU-Berlin-2.0 +--- + https://licenses.nuget.org/TU-Berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_10.yml b/src/licensedcode/data/rules/tu-berlin-2.0_10.yml deleted file mode 100644 index 6e494f1551a..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/TU-Berlin-2.0 diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_11.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_11.RULE index d5738cdf200..dd65b164fca 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_11.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_11.RULE @@ -1 +1,7 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/TU-Berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_11.yml b/src/licensedcode/data/rules/tu-berlin-2.0_11.yml deleted file mode 100644 index 7eef001b93a..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_12.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_12.RULE index 1a7b2d6b968..2bee4c80506 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_12.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TU-Berlin-2.0 +--- + {{TU-Berlin-2.0}} https://spdx.org/licenses/TU-Berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_12.yml b/src/licensedcode/data/rules/tu-berlin-2.0_12.yml deleted file mode 100644 index cdcbea619c7..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TU-Berlin-2.0 diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_13.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_13.RULE index d34203dec3e..da3341e8d0d 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_13.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TU-Berlin-2.0 +--- + LICENSE {{TU-Berlin-2.0}} https://spdx.org/licenses/TU-Berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_13.yml b/src/licensedcode/data/rules/tu-berlin-2.0_13.yml deleted file mode 100644 index cdcbea619c7..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TU-Berlin-2.0 diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_2.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_2.RULE index 8e9f1230782..3cf25c907b0 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_2.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Technische Universitaet Berlin License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_2.yml b/src/licensedcode/data/rules/tu-berlin-2.0_2.yml deleted file mode 100644 index 1aa56e05a40..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_3.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_3.RULE index b0efcfbedc5..d9a9749fe73 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_3.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Technische Universitaet Berlin License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_3.yml b/src/licensedcode/data/rules/tu-berlin-2.0_3.yml deleted file mode 100644 index 1aa56e05a40..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_4.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_4.RULE index 03dd07f1b63..7722dfb1ca5 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_4.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TU-Berlin-2.0 Technische Universitaet Berlin License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_4.yml b/src/licensedcode/data/rules/tu-berlin-2.0_4.yml deleted file mode 100644 index 1aa56e05a40..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_5.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_5.RULE index df4950bb1d5..b0fde309ba1 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_5.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Technische Universitaet Berlin License 2.0 TU-Berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_5.yml b/src/licensedcode/data/rules/tu-berlin-2.0_5.yml deleted file mode 100644 index 1aa56e05a40..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_6.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_6.RULE index 57976416fbd..c69c34bce21 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_6.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TU-Berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_6.yml b/src/licensedcode/data/rules/tu-berlin-2.0_6.yml deleted file mode 100644 index 1f8ef3c62df..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_7.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_7.RULE index bb8a13cf928..79d0c1e1a5e 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_7.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Technische Universitaet Berlin License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_7.yml b/src/licensedcode/data/rules/tu-berlin-2.0_7.yml deleted file mode 100644 index 1f8ef3c62df..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_8.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_8.RULE index 9f7f1beb75b..a0a6fff5774 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_8.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: TU-Berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_8.yml b/src/licensedcode/data/rules/tu-berlin-2.0_8.yml deleted file mode 100644 index 1f8ef3c62df..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_9.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_9.RULE index 730e98f4e2a..9e22e4e4619 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_9.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + TU-Berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_9.yml b/src/licensedcode/data/rules/tu-berlin-2.0_9.yml deleted file mode 100644 index 32a30aa6d46..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_url_1.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_url_1.RULE index 77b6915b5ba..c5a7e23096c 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tu-berlin-2.0 +--- + https://spdx.org/licenses/tu-berlin-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_url_1.yml b/src/licensedcode/data/rules/tu-berlin-2.0_url_1.yml deleted file mode 100644 index e552f95835e..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tu-berlin-2.0 diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_url_2.RULE b/src/licensedcode/data/rules/tu-berlin-2.0_url_2.RULE index dcd3b098029..3e85ff7cbfe 100644 --- a/src/licensedcode/data/rules/tu-berlin-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/tu-berlin-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tu-berlin-2.0.html +--- + https://spdx.org/licenses/tu-berlin-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin-2.0_url_2.yml b/src/licensedcode/data/rules/tu-berlin-2.0_url_2.yml deleted file mode 100644 index fafefabfe23..00000000000 --- a/src/licensedcode/data/rules/tu-berlin-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tu-berlin-2.0.html diff --git a/src/licensedcode/data/rules/tu-berlin_1.RULE b/src/licensedcode/data/rules/tu-berlin_1.RULE index a7e6cadf61f..68b755a6b62 100644 --- a/src/licensedcode/data/rules/tu-berlin_1.RULE +++ b/src/licensedcode/data/rules/tu-berlin_1.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Technische Universitaet Berlin License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_1.yml b/src/licensedcode/data/rules/tu-berlin_1.yml deleted file mode 100644 index a5d65599a22..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin_10.RULE b/src/licensedcode/data/rules/tu-berlin_10.RULE index 93310e51ffc..96f8561060a 100644 --- a/src/licensedcode/data/rules/tu-berlin_10.RULE +++ b/src/licensedcode/data/rules/tu-berlin_10.RULE @@ -1 +1,7 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/TU-Berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_10.yml b/src/licensedcode/data/rules/tu-berlin_10.yml deleted file mode 100644 index 11b1c076dde..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/tu-berlin_11.RULE b/src/licensedcode/data/rules/tu-berlin_11.RULE index 4dbb0a149cb..2f991d7970e 100644 --- a/src/licensedcode/data/rules/tu-berlin_11.RULE +++ b/src/licensedcode/data/rules/tu-berlin_11.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TU-Berlin-1.0 +--- + {{TU-Berlin-1.0}} https://spdx.org/licenses/TU-Berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_11.yml b/src/licensedcode/data/rules/tu-berlin_11.yml deleted file mode 100644 index 183f8dc5598..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TU-Berlin-1.0 diff --git a/src/licensedcode/data/rules/tu-berlin_12.RULE b/src/licensedcode/data/rules/tu-berlin_12.RULE index 0367316105b..73b02b990a4 100644 --- a/src/licensedcode/data/rules/tu-berlin_12.RULE +++ b/src/licensedcode/data/rules/tu-berlin_12.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/TU-Berlin-1.0 +--- + LICENSE {{TU-Berlin-1.0}} https://spdx.org/licenses/TU-Berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_12.yml b/src/licensedcode/data/rules/tu-berlin_12.yml deleted file mode 100644 index 183f8dc5598..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/TU-Berlin-1.0 diff --git a/src/licensedcode/data/rules/tu-berlin_2.RULE b/src/licensedcode/data/rules/tu-berlin_2.RULE index 7c2ca17a138..4b36be5bc25 100644 --- a/src/licensedcode/data/rules/tu-berlin_2.RULE +++ b/src/licensedcode/data/rules/tu-berlin_2.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Technische Universitaet Berlin License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_2.yml b/src/licensedcode/data/rules/tu-berlin_2.yml deleted file mode 100644 index a5d65599a22..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin_3.RULE b/src/licensedcode/data/rules/tu-berlin_3.RULE index e33a6be42bd..185166f55bb 100644 --- a/src/licensedcode/data/rules/tu-berlin_3.RULE +++ b/src/licensedcode/data/rules/tu-berlin_3.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + TU-Berlin-1.0 Technische Universitaet Berlin License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_3.yml b/src/licensedcode/data/rules/tu-berlin_3.yml deleted file mode 100644 index a5d65599a22..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin_4.RULE b/src/licensedcode/data/rules/tu-berlin_4.RULE index cde3058b9b3..799279b42fe 100644 --- a/src/licensedcode/data/rules/tu-berlin_4.RULE +++ b/src/licensedcode/data/rules/tu-berlin_4.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Technische Universitaet Berlin License 1.0 TU-Berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_4.yml b/src/licensedcode/data/rules/tu-berlin_4.yml deleted file mode 100644 index a5d65599a22..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin_5.RULE b/src/licensedcode/data/rules/tu-berlin_5.RULE index f5fde5632fa..9632263228a 100644 --- a/src/licensedcode/data/rules/tu-berlin_5.RULE +++ b/src/licensedcode/data/rules/tu-berlin_5.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: TU-Berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_5.yml b/src/licensedcode/data/rules/tu-berlin_5.yml deleted file mode 100644 index 097966f056b..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin_6.RULE b/src/licensedcode/data/rules/tu-berlin_6.RULE index 90fa141966b..398888d268a 100644 --- a/src/licensedcode/data/rules/tu-berlin_6.RULE +++ b/src/licensedcode/data/rules/tu-berlin_6.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Technische Universitaet Berlin License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_6.yml b/src/licensedcode/data/rules/tu-berlin_6.yml deleted file mode 100644 index 097966f056b..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin_7.RULE b/src/licensedcode/data/rules/tu-berlin_7.RULE index eb47cddb10a..db353acef93 100644 --- a/src/licensedcode/data/rules/tu-berlin_7.RULE +++ b/src/licensedcode/data/rules/tu-berlin_7.RULE @@ -1 +1,10 @@ +--- +license_expression: tu-berlin +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: TU-Berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_7.yml b/src/licensedcode/data/rules/tu-berlin_7.yml deleted file mode 100644 index 097966f056b..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: tu-berlin -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/tu-berlin_8.RULE b/src/licensedcode/data/rules/tu-berlin_8.RULE index 14e9886b783..08c590d6b76 100644 --- a/src/licensedcode/data/rules/tu-berlin_8.RULE +++ b/src/licensedcode/data/rules/tu-berlin_8.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + TU-Berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_8.yml b/src/licensedcode/data/rules/tu-berlin_8.yml deleted file mode 100644 index 7005f2a99c1..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/tu-berlin_9.RULE b/src/licensedcode/data/rules/tu-berlin_9.RULE index 971f2e70e8c..84dc77cce79 100644 --- a/src/licensedcode/data/rules/tu-berlin_9.RULE +++ b/src/licensedcode/data/rules/tu-berlin_9.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/TU-Berlin-1.0 +--- + https://licenses.nuget.org/TU-Berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_9.yml b/src/licensedcode/data/rules/tu-berlin_9.yml deleted file mode 100644 index 6624ee251f7..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/TU-Berlin-1.0 diff --git a/src/licensedcode/data/rules/tu-berlin_url_1.RULE b/src/licensedcode/data/rules/tu-berlin_url_1.RULE index e8d44b2b50e..5b7b045ca5c 100644 --- a/src/licensedcode/data/rules/tu-berlin_url_1.RULE +++ b/src/licensedcode/data/rules/tu-berlin_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tu-berlin-1.0 +--- + https://spdx.org/licenses/tu-berlin-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_url_1.yml b/src/licensedcode/data/rules/tu-berlin_url_1.yml deleted file mode 100644 index 2f788f6a2ee..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tu-berlin-1.0 diff --git a/src/licensedcode/data/rules/tu-berlin_url_2.RULE b/src/licensedcode/data/rules/tu-berlin_url_2.RULE index 8a0621a8657..2c333ce43af 100644 --- a/src/licensedcode/data/rules/tu-berlin_url_2.RULE +++ b/src/licensedcode/data/rules/tu-berlin_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: tu-berlin +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/tu-berlin-1.0.html +--- + https://spdx.org/licenses/tu-berlin-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/tu-berlin_url_2.yml b/src/licensedcode/data/rules/tu-berlin_url_2.yml deleted file mode 100644 index 3956a0dca3b..00000000000 --- a/src/licensedcode/data/rules/tu-berlin_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: tu-berlin -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/tu-berlin-1.0.html diff --git a/src/licensedcode/data/rules/txl-10.5.RULE b/src/licensedcode/data/rules/txl-10.5.RULE index f26cad10e2d..ffa069d9a91 100644 --- a/src/licensedcode/data/rules/txl-10.5.RULE +++ b/src/licensedcode/data/rules/txl-10.5.RULE @@ -1 +1,9 @@ +--- +license_expression: txl-10.5 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt +--- + http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/txl-10.5.yml b/src/licensedcode/data/rules/txl-10.5.yml deleted file mode 100644 index 60afce48eea..00000000000 --- a/src/licensedcode/data/rules/txl-10.5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: txl-10.5 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fossat.googlecode.com/svn/trunk/bin/COPYRIGHT.txt diff --git a/src/licensedcode/data/rules/txl-10.5_1.RULE b/src/licensedcode/data/rules/txl-10.5_1.RULE index d7572dc1c82..25830177b34 100644 --- a/src/licensedcode/data/rules/txl-10.5_1.RULE +++ b/src/licensedcode/data/rules/txl-10.5_1.RULE @@ -1 +1,7 @@ +--- +license_expression: txl-10.5 +is_license_reference: yes +relevance: 100 +--- + TXL 10.5 \ No newline at end of file diff --git a/src/licensedcode/data/rules/txl-10.5_1.yml b/src/licensedcode/data/rules/txl-10.5_1.yml deleted file mode 100644 index 53a4b0f3ef4..00000000000 --- a/src/licensedcode/data/rules/txl-10.5_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: txl-10.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/txl-10.5_2.RULE b/src/licensedcode/data/rules/txl-10.5_2.RULE index 963c9729594..3fa7e5942c0 100644 --- a/src/licensedcode/data/rules/txl-10.5_2.RULE +++ b/src/licensedcode/data/rules/txl-10.5_2.RULE @@ -1 +1,7 @@ +--- +license_expression: txl-10.5 +is_license_reference: yes +relevance: 100 +--- + TXL License \ No newline at end of file diff --git a/src/licensedcode/data/rules/txl-10.5_2.yml b/src/licensedcode/data/rules/txl-10.5_2.yml deleted file mode 100644 index 53a4b0f3ef4..00000000000 --- a/src/licensedcode/data/rules/txl-10.5_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: txl-10.5 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/txl-10.5_3.RULE b/src/licensedcode/data/rules/txl-10.5_3.RULE index 60601ed7d34..414476309d5 100644 --- a/src/licensedcode/data/rules/txl-10.5_3.RULE +++ b/src/licensedcode/data/rules/txl-10.5_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: txl-10.5 +is_license_text: yes +relevance: 99 +notes: see in https://txl.ca/ +--- + under the copyright laws of Canada and international copyright agreements with the United States and other countries signatory to the Berne Convention and/or the Universal Copyright Convention (1971 Paris text). is provided FREE OF CHARGE for the USE of individuals, companies and institutions PROVIDED that proper ACKNOWLEDGEMENT OF USE of is made in all published work deriving from or depending upon such use. @@ -8,4 +15,4 @@ IN NO EVENT SHALL the Copyright Holder OR the Author BE HELD LIABLE for any dire Permission to copy and redistribute is hereby granted PROVIDED that the distribution is RETAINED UNMODIFIED IN ITS ENTIRETY including this file, and that NO CHARGE OF ANY KIND is made for such redistribution. -I understand that my download of will be logged, tagged and attributed when I click the "I Agree" button above. +I understand that my download of will be logged, tagged and attributed when I click the "I Agree" button above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/txl-10.5_3.yml b/src/licensedcode/data/rules/txl-10.5_3.yml deleted file mode 100644 index 5ac7c90c354..00000000000 --- a/src/licensedcode/data/rules/txl-10.5_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: txl-10.5 -is_license_text: yes -relevance: 99 -notes: see in https://txl.ca/ diff --git a/src/licensedcode/data/rules/txl-10.5_4.RULE b/src/licensedcode/data/rules/txl-10.5_4.RULE index b8b295ee7b6..ce8a6d6d230 100644 --- a/src/licensedcode/data/rules/txl-10.5_4.RULE +++ b/src/licensedcode/data/rules/txl-10.5_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: txl-10.5 +is_license_text: yes +relevance: 99 +notes: txl, nicad and turing are using this See https://www.txl.ca/ +--- + is provided FREE OF CHARGE for the USE of individuals, companies and institutions PROVIDED that proper ACKNOWLEDGEMENT OF USE of is made in all published work deriving from or depending upon such use. diff --git a/src/licensedcode/data/rules/txl-10.5_4.yml b/src/licensedcode/data/rules/txl-10.5_4.yml deleted file mode 100644 index fae54b893c7..00000000000 --- a/src/licensedcode/data/rules/txl-10.5_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: txl-10.5 -is_license_text: yes -relevance: 99 -notes: txl, nicad and turing are using this See https://www.txl.ca/ diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_1.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_1.RULE index 57f7c3bfa79..e544b23b757 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_1.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: U-Boot exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_1.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_1.yml deleted file mode 100644 index 37a363fd605..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_2.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_2.RULE index 4445c92eda9..2cbaa8bc11b 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_2.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + u-boot-exception-2.0 U-Boot exception 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_2.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_2.yml deleted file mode 100644 index 37a363fd605..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_3.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_3.RULE index 3bf8bdf27e4..0540871d658 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_3.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_3.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_3.yml deleted file mode 100644 index 318b62d433b..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_4.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_4.RULE index 5fb4333cc9b..37b0b363312 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_4.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_4.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_4.yml deleted file mode 100644 index 318b62d433b..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_5.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_5.RULE index 23172c6e6f3..5d49cc2784b 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_5.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/u-boot-exception-2.0 +--- + https://licenses.nuget.org/u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_5.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_5.yml deleted file mode 100644 index 97a4f8956a0..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/u-boot-exception-2.0 diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_6.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_6.RULE index 18d09083d9e..f039b272505 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_6.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_6.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_6.yml deleted file mode 100644 index 6ad2e4ddc9d..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_7.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_7.RULE index 207542d6396..af21976bb23 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_7.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/u-boot-exception-2.0 +--- + {{u-boot-exception-2.0}} https://spdx.org/licenses/u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_7.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_7.yml deleted file mode 100644 index 98402fa355a..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/u-boot-exception-2.0 diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_8.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_8.RULE index 6246f355807..142e11b2e45 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_8.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/u-boot-exception-2.0 +--- + LICENSE {{u-boot-exception-2.0}} https://spdx.org/licenses/u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_8.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_8.yml deleted file mode 100644 index 98402fa355a..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/u-boot-exception-2.0 diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_url_1.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_url_1.RULE index 59ae2b435c4..266bb81826e 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/u-boot-exception-2.0 +--- + https://spdx.org/licenses/u-boot-exception-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_url_1.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_url_1.yml deleted file mode 100644 index 6fbf3f0c717..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/u-boot-exception-2.0 diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_url_2.RULE b/src/licensedcode/data/rules/u-boot-exception-2.0_url_2.RULE index 794b922c25c..0bbb832a2c7 100644 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/u-boot-exception-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: u-boot-exception-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/u-boot-exception-2.0.html +--- + https://spdx.org/licenses/u-boot-exception-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/u-boot-exception-2.0_url_2.yml b/src/licensedcode/data/rules/u-boot-exception-2.0_url_2.yml deleted file mode 100644 index bc59f4a4141..00000000000 --- a/src/licensedcode/data/rules/u-boot-exception-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: u-boot-exception-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/u-boot-exception-2.0.html diff --git a/src/licensedcode/data/rules/ubdl_1.RULE b/src/licensedcode/data/rules/ubdl_1.RULE index 936651092fa..227ddf825d0 100644 --- a/src/licensedcode/data/rules/ubdl_1.RULE +++ b/src/licensedcode/data/rules/ubdl_1.RULE @@ -1 +1,7 @@ +--- +license_expression: ubdl +is_license_reference: yes +relevance: 100 +--- + Unmodified Binary Distribution Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/ubdl_1.yml b/src/licensedcode/data/rules/ubdl_1.yml deleted file mode 100644 index 996b81011e2..00000000000 --- a/src/licensedcode/data/rules/ubdl_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ubdl -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ubdl_2.RULE b/src/licensedcode/data/rules/ubdl_2.RULE index 66ae5eefdaa..6993f1a265a 100644 --- a/src/licensedcode/data/rules/ubdl_2.RULE +++ b/src/licensedcode/data/rules/ubdl_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: ubdl +is_license_notice: yes +--- + * You can also choose to distribute this program under the terms of * the Unmodified Binary Distribution Licence (as given in the file * COPYING.UBDL), provided that you have satisfied its requirements. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ubdl_2.yml b/src/licensedcode/data/rules/ubdl_2.yml deleted file mode 100644 index 4776e6e9fd8..00000000000 --- a/src/licensedcode/data/rules/ubdl_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: ubdl -is_license_notice: yes diff --git a/src/licensedcode/data/rules/ubuntu-font-1.0_1.RULE b/src/licensedcode/data/rules/ubuntu-font-1.0_1.RULE index 4853161d367..e239897f49d 100644 --- a/src/licensedcode/data/rules/ubuntu-font-1.0_1.RULE +++ b/src/licensedcode/data/rules/ubuntu-font-1.0_1.RULE @@ -1,2 +1,9 @@ +--- +license_expression: ubuntu-font-1.0 +is_license_notice: yes +ignorable_urls: + - https://launchpad.net/ubuntu-font-licence +--- + This Font Software is licensed under the Ubuntu Font Licence, Version 1.0. https://launchpad.net/ubuntu-font-licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/ubuntu-font-1.0_1.yml b/src/licensedcode/data/rules/ubuntu-font-1.0_1.yml deleted file mode 100644 index 92b90b2647f..00000000000 --- a/src/licensedcode/data/rules/ubuntu-font-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: ubuntu-font-1.0 -is_license_notice: yes -ignorable_urls: - - https://launchpad.net/ubuntu-font-licence diff --git a/src/licensedcode/data/rules/ubuntu-font-1.0_2.RULE b/src/licensedcode/data/rules/ubuntu-font-1.0_2.RULE index c7e99e02ba0..9ee11a7f478 100644 --- a/src/licensedcode/data/rules/ubuntu-font-1.0_2.RULE +++ b/src/licensedcode/data/rules/ubuntu-font-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: ubuntu-font-1.0 +is_license_reference: yes +relevance: 100 +--- + Ubuntu Font License, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ubuntu-font-1.0_2.yml b/src/licensedcode/data/rules/ubuntu-font-1.0_2.yml deleted file mode 100644 index b47c5919235..00000000000 --- a/src/licensedcode/data/rules/ubuntu-font-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ubuntu-font-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ubuntu-font-1.0_3.RULE b/src/licensedcode/data/rules/ubuntu-font-1.0_3.RULE index 022d3232bce..cbb016b4acc 100644 --- a/src/licensedcode/data/rules/ubuntu-font-1.0_3.RULE +++ b/src/licensedcode/data/rules/ubuntu-font-1.0_3.RULE @@ -1 +1,7 @@ +--- +license_expression: ubuntu-font-1.0 +is_license_reference: yes +relevance: 100 +--- + Ubuntu Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ubuntu-font-1.0_3.yml b/src/licensedcode/data/rules/ubuntu-font-1.0_3.yml deleted file mode 100644 index b47c5919235..00000000000 --- a/src/licensedcode/data/rules/ubuntu-font-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ubuntu-font-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ucl-1.0_1.RULE b/src/licensedcode/data/rules/ucl-1.0_1.RULE index 807e2464a38..2691aeef2b9 100644 --- a/src/licensedcode/data/rules/ucl-1.0_1.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Upstream Compatibility License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_1.yml b/src/licensedcode/data/rules/ucl-1.0_1.yml deleted file mode 100644 index 044bd6e10f8..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ucl-1.0_10.RULE b/src/licensedcode/data/rules/ucl-1.0_10.RULE index d387aa1002d..63c54c7becf 100644 --- a/src/licensedcode/data/rules/ucl-1.0_10.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_10.RULE @@ -1 +1,7 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/UCL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_10.yml b/src/licensedcode/data/rules/ucl-1.0_10.yml deleted file mode 100644 index a814b463e81..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ucl-1.0_11.RULE b/src/licensedcode/data/rules/ucl-1.0_11.RULE index 6adcd43f102..b364e79de58 100644 --- a/src/licensedcode/data/rules/ucl-1.0_11.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/UCL-1.0 +--- + {{UCL-1.0}} https://spdx.org/licenses/UCL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_11.yml b/src/licensedcode/data/rules/ucl-1.0_11.yml deleted file mode 100644 index afc820b8dde..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/UCL-1.0 diff --git a/src/licensedcode/data/rules/ucl-1.0_12.RULE b/src/licensedcode/data/rules/ucl-1.0_12.RULE index d43bd9db32a..cfdde8560f9 100644 --- a/src/licensedcode/data/rules/ucl-1.0_12.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/UCL-1.0 +--- + LICENSE {{UCL-1.0}} https://spdx.org/licenses/UCL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_12.yml b/src/licensedcode/data/rules/ucl-1.0_12.yml deleted file mode 100644 index afc820b8dde..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/UCL-1.0 diff --git a/src/licensedcode/data/rules/ucl-1.0_2.RULE b/src/licensedcode/data/rules/ucl-1.0_2.RULE index 0e29b56b16d..abd72c60e3f 100644 --- a/src/licensedcode/data/rules/ucl-1.0_2.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Upstream Compatibility License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_2.yml b/src/licensedcode/data/rules/ucl-1.0_2.yml deleted file mode 100644 index 044bd6e10f8..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ucl-1.0_3.RULE b/src/licensedcode/data/rules/ucl-1.0_3.RULE index d1d61e795eb..163cb8d71cf 100644 --- a/src/licensedcode/data/rules/ucl-1.0_3.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + UCL-1.0 Upstream Compatibility License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_3.yml b/src/licensedcode/data/rules/ucl-1.0_3.yml deleted file mode 100644 index 044bd6e10f8..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ucl-1.0_4.RULE b/src/licensedcode/data/rules/ucl-1.0_4.RULE index 25e86598c8a..967c218dddb 100644 --- a/src/licensedcode/data/rules/ucl-1.0_4.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Upstream Compatibility License v1.0 UCL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_4.yml b/src/licensedcode/data/rules/ucl-1.0_4.yml deleted file mode 100644 index 044bd6e10f8..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ucl-1.0_5.RULE b/src/licensedcode/data/rules/ucl-1.0_5.RULE index 323bf2f64d0..cd92b734b80 100644 --- a/src/licensedcode/data/rules/ucl-1.0_5.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ucl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: UCL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_5.yml b/src/licensedcode/data/rules/ucl-1.0_5.yml deleted file mode 100644 index 06eb189f056..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ucl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ucl-1.0_6.RULE b/src/licensedcode/data/rules/ucl-1.0_6.RULE index 6eadd607e53..2455b01c4c8 100644 --- a/src/licensedcode/data/rules/ucl-1.0_6.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ucl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Upstream Compatibility License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_6.yml b/src/licensedcode/data/rules/ucl-1.0_6.yml deleted file mode 100644 index 06eb189f056..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ucl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ucl-1.0_7.RULE b/src/licensedcode/data/rules/ucl-1.0_7.RULE index ffd3c3cec06..e5f21a4a009 100644 --- a/src/licensedcode/data/rules/ucl-1.0_7.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ucl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: UCL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_7.yml b/src/licensedcode/data/rules/ucl-1.0_7.yml deleted file mode 100644 index 06eb189f056..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ucl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ucl-1.0_8.RULE b/src/licensedcode/data/rules/ucl-1.0_8.RULE index 72b21f1678f..0a8b817de96 100644 --- a/src/licensedcode/data/rules/ucl-1.0_8.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + UCL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_8.yml b/src/licensedcode/data/rules/ucl-1.0_8.yml deleted file mode 100644 index feb9114ea11..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/ucl-1.0_9.RULE b/src/licensedcode/data/rules/ucl-1.0_9.RULE index ffd5b012a03..771862a6c22 100644 --- a/src/licensedcode/data/rules/ucl-1.0_9.RULE +++ b/src/licensedcode/data/rules/ucl-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: ucl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/UCL-1.0 +--- + https://licenses.nuget.org/UCL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ucl-1.0_9.yml b/src/licensedcode/data/rules/ucl-1.0_9.yml deleted file mode 100644 index 3bcc76c575d..00000000000 --- a/src/licensedcode/data/rules/ucl-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ucl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/UCL-1.0 diff --git a/src/licensedcode/data/rules/unicode-data-software.RULE b/src/licensedcode/data/rules/unicode-data-software.RULE index fc6817eff82..ccea3050b8a 100644 --- a/src/licensedcode/data/rules/unicode-data-software.RULE +++ b/src/licensedcode/data/rules/unicode-data-software.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation @@ -31,4 +37,4 @@ Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior - written authorization of the copyright holder. + written authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-data-software.yml b/src/licensedcode/data/rules/unicode-data-software.yml deleted file mode 100644 index 35bb50ac6f2..00000000000 --- a/src/licensedcode/data/rules/unicode-data-software.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/unicode-data-software2.RULE b/src/licensedcode/data/rules/unicode-data-software2.RULE index 590e4db622a..3f53267448e 100644 --- a/src/licensedcode/data/rules/unicode-data-software2.RULE +++ b/src/licensedcode/data/rules/unicode-data-software2.RULE @@ -1,3 +1,20 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/copyright.html + - http://www.unicode.org/copyright.html#Exhibit1 + - http://www.unicode.org/reports +--- + http://www.unicode.org/copyright.html#Exhibit1 EXHIBIT 1 diff --git a/src/licensedcode/data/rules/unicode-data-software2.yml b/src/licensedcode/data/rules/unicode-data-software2.yml deleted file mode 100644 index 191ec76bead..00000000000 --- a/src/licensedcode/data/rules/unicode-data-software2.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/cldr/data/ - - http://www.unicode.org/copyright.html - - http://www.unicode.org/copyright.html#Exhibit1 - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode-data-software3.RULE b/src/licensedcode/data/rules/unicode-data-software3.RULE index a8676ebe268..489033428a4 100644 --- a/src/licensedcode/data/rules/unicode-data-software3.RULE +++ b/src/licensedcode/data/rules/unicode-data-software3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE Distributed under the Terms of Use in http://www.unicode.org/copyright.html. @@ -29,4 +37,4 @@ Distributed under Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written - authorization of the copyright holder. + authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-data-software3.yml b/src/licensedcode/data/rules/unicode-data-software3.yml deleted file mode 100644 index ef3fe46e8fd..00000000000 --- a/src/licensedcode/data/rules/unicode-data-software3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode-data-software6.RULE b/src/licensedcode/data/rules/unicode-data-software6.RULE index 18f42f82ee0..00e915ac517 100644 --- a/src/licensedcode/data/rules/unicode-data-software6.RULE +++ b/src/licensedcode/data/rules/unicode-data-software6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: unicode +is_license_notice: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.unicode.org/cldr + - http://www.unicode.org/copyright.html +--- + The contents of this directory are based on the Common Locale Data Repository (CLDR) project located at http://www.unicode.org/cldr and are covered by Unicode Org's terms of use: http://www.unicode.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-data-software6.yml b/src/licensedcode/data/rules/unicode-data-software6.yml deleted file mode 100644 index b35bafc34d5..00000000000 --- a/src/licensedcode/data/rules/unicode-data-software6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode -is_license_notice: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.unicode.org/cldr - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode-data-software7.RULE b/src/licensedcode/data/rules/unicode-data-software7.RULE index 7eda85e856a..8f12627bf02 100644 --- a/src/licensedcode/data/rules/unicode-data-software7.RULE +++ b/src/licensedcode/data/rules/unicode-data-software7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE Distributed under the Terms of Use in @@ -33,4 +41,4 @@ PERFORMANCE OF THE DATA FILES OR SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. +written authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-data-software7.yml b/src/licensedcode/data/rules/unicode-data-software7.yml deleted file mode 100644 index ef3fe46e8fd..00000000000 --- a/src/licensedcode/data/rules/unicode-data-software7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode-data-software_fpc.RULE b/src/licensedcode/data/rules/unicode-data-software_fpc.RULE index 0dd1b03e320..6a3e6b7d396 100644 --- a/src/licensedcode/data/rules/unicode-data-software_fpc.RULE +++ b/src/licensedcode/data/rules/unicode-data-software_fpc.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 99 +minimum_coverage: 60 +notes: some shortened variant with a different disclaimer +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any diff --git a/src/licensedcode/data/rules/unicode-data-software_fpc.yml b/src/licensedcode/data/rules/unicode-data-software_fpc.yml deleted file mode 100644 index cdaffb024c0..00000000000 --- a/src/licensedcode/data/rules/unicode-data-software_fpc.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 99 -minimum_coverage: 60 -notes: some shortened variant with a different disclaimer diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_1.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_1.RULE index d52f6daf52b..e4477304703 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_1.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_1.RULE @@ -1,3 +1,18 @@ +--- +license_expression: unicode-dfs-2015 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2015 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_1.yml b/src/licensedcode/data/rules/unicode-dfs-2015_1.yml deleted file mode 100644 index 6026ca1fc59..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_1.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2015 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_10.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_10.RULE index c53328bb1bf..41d2ad65128 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_10.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_10.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Unicode-DFS-2015 +--- + https://licenses.nuget.org/Unicode-DFS-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_10.yml b/src/licensedcode/data/rules/unicode-dfs-2015_10.yml deleted file mode 100644 index 562a4bf1405..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Unicode-DFS-2015 diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_11.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_11.RULE index 9cdc6f49166..41c9ff7935e 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_11.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_11.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Unicode-DFS-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_11.yml b/src/licensedcode/data/rules/unicode-dfs-2015_11.yml deleted file mode 100644 index ffea76fdb43..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_12.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_12.RULE index 869e17fdde9..dccb027054c 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_12.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_12.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Unicode-DFS-2015 +--- + LICENSE {{Unicode-DFS-2015}} https://spdx.org/licenses/Unicode-DFS-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_12.yml b/src/licensedcode/data/rules/unicode-dfs-2015_12.yml deleted file mode 100644 index c75ab9a17dc..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Unicode-DFS-2015 diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_13.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_13.RULE index ec7b200ef4a..b7f9116947b 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_13.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_13.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Unicode-DFS-2015 +--- + {{Unicode-DFS-2015}} https://spdx.org/licenses/Unicode-DFS-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_13.yml b/src/licensedcode/data/rules/unicode-dfs-2015_13.yml deleted file mode 100644 index c75ab9a17dc..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Unicode-DFS-2015 diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_2.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_2.RULE index 36608802dc5..9cd1c34ac0a 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_2.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_2.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unicode License Agreement - Data Files and Software (2015) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_2.yml b/src/licensedcode/data/rules/unicode-dfs-2015_2.yml deleted file mode 100644 index 9fc65589b08..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_3.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_3.RULE index 05ed5b57010..f563f2c18ac 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_3.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_3.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Unicode License Agreement - Data Files and Software (2015) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_3.yml b/src/licensedcode/data/rules/unicode-dfs-2015_3.yml deleted file mode 100644 index 9fc65589b08..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_4.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_4.RULE index fc646670a7c..bd4e5dc41c8 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_4.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_4.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unicode-DFS-2015 Unicode License Agreement - Data Files and Software (2015) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_4.yml b/src/licensedcode/data/rules/unicode-dfs-2015_4.yml deleted file mode 100644 index 9fc65589b08..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_5.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_5.RULE index a0687f04c75..b4c1be9ae9e 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_5.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_5.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unicode License Agreement - Data Files and Software (2015) Unicode-DFS-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_5.yml b/src/licensedcode/data/rules/unicode-dfs-2015_5.yml deleted file mode 100644 index 9fc65589b08..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_6.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_6.RULE index 59b8b8ac163..513dcf3bd48 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_6.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_6.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2015 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Unicode-DFS-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_6.yml b/src/licensedcode/data/rules/unicode-dfs-2015_6.yml deleted file mode 100644 index a2baee7d8be..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_7.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_7.RULE index 1702efc69e9..2b1c54a5b4f 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_7.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_7.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2015 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Unicode License Agreement - Data Files and Software (2015) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_7.yml b/src/licensedcode/data/rules/unicode-dfs-2015_7.yml deleted file mode 100644 index a2baee7d8be..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_8.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_8.RULE index 86e323b0b2f..0e425c16810 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_8.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_8.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2015 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Unicode-DFS-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_8.yml b/src/licensedcode/data/rules/unicode-dfs-2015_8.yml deleted file mode 100644 index a2baee7d8be..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_9.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_9.RULE index f61ebec24bc..d908d32e091 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_9.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_9.RULE @@ -1 +1,15 @@ +--- +license_expression: unicode-dfs-2015 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991-2011 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + Unicode License UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/. Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. COPYRIGHT AND PERMISSION NOTICE Copyright © 1991-2011 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided that (a) the above copyright notice(s) and this permission notice appear with all copies of the Data Files or Software, (b) both the above copyright notice(s) and this permission notice appear in associated documentation, and (c) there is clear notice in each modified Data File or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or software has been modified. THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL 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 THE DATA FILES OR SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_9.yml b/src/licensedcode/data/rules/unicode-dfs-2015_9.yml deleted file mode 100644 index f59c23046c6..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_9.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991-2011 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_url_1.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_url_1.RULE index 18727266872..487b7d2c577 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_url_1.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/unicode-dfs-2015 +--- + https://spdx.org/licenses/unicode-dfs-2015 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_url_1.yml b/src/licensedcode/data/rules/unicode-dfs-2015_url_1.yml deleted file mode 100644 index 66bd1b59dec..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/unicode-dfs-2015 diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_url_2.RULE b/src/licensedcode/data/rules/unicode-dfs-2015_url_2.RULE index 4ff77335cc4..1c4722e4384 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2015_url_2.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2015_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2015 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/unicode-dfs-2015.html +--- + https://spdx.org/licenses/unicode-dfs-2015.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2015_url_2.yml b/src/licensedcode/data/rules/unicode-dfs-2015_url_2.yml deleted file mode 100644 index 7bfe579280a..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2015_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2015 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/unicode-dfs-2015.html diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_1.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_1.RULE index 176d5ec11cc..367e84b4794 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_1.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_1.RULE @@ -1,3 +1,20 @@ +--- +license_expression: unicode-dfs-2016 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2018 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://source.icu-project.org/repos/icu + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports + - http://www.unicode.org/utility/trac/browser +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_1.yml b/src/licensedcode/data/rules/unicode-dfs-2016_1.yml deleted file mode 100644 index 6e212af2eae..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_1.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2018 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://source.icu-project.org/repos/icu - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports - - http://www.unicode.org/utility/trac/browser diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_10.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_10.RULE index 6e74a2bc8c7..73f694e3ea9 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_10.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_10.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Unicode-DFS-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_10.yml b/src/licensedcode/data/rules/unicode-dfs-2016_10.yml deleted file mode 100644 index 97cb322cadf..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_11.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_11.RULE index e3ba97632f6..2f68aa65951 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_11.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_11.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Unicode-DFS-2016 +--- + {{Unicode-DFS-2016}} https://spdx.org/licenses/Unicode-DFS-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_11.yml b/src/licensedcode/data/rules/unicode-dfs-2016_11.yml deleted file mode 100644 index d732ad6a42c..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Unicode-DFS-2016 diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_12.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_12.RULE index f0053eb0fd3..7801bd1a5ca 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_12.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_12.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Unicode-DFS-2016 +--- + LICENSE {{Unicode-DFS-2016}} https://spdx.org/licenses/Unicode-DFS-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_12.yml b/src/licensedcode/data/rules/unicode-dfs-2016_12.yml deleted file mode 100644 index d732ad6a42c..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Unicode-DFS-2016 diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_2.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_2.RULE index 2e8dac298c6..f07c38ef7b5 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_2.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_2.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unicode License Agreement - Data Files and Software (2016) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_2.yml b/src/licensedcode/data/rules/unicode-dfs-2016_2.yml deleted file mode 100644 index 83f31a2aaf5..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_3.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_3.RULE index 9a1cf5a5988..51854ca2efb 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_3.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_3.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Unicode License Agreement - Data Files and Software (2016) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_3.yml b/src/licensedcode/data/rules/unicode-dfs-2016_3.yml deleted file mode 100644 index 83f31a2aaf5..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_4.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_4.RULE index 5e24a67a398..989e4bbefed 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_4.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_4.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unicode-DFS-2016 Unicode License Agreement - Data Files and Software (2016) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_4.yml b/src/licensedcode/data/rules/unicode-dfs-2016_4.yml deleted file mode 100644 index 83f31a2aaf5..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_5.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_5.RULE index 112437a6096..911ae846acb 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_5.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_5.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unicode License Agreement - Data Files and Software (2016) Unicode-DFS-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_5.yml b/src/licensedcode/data/rules/unicode-dfs-2016_5.yml deleted file mode 100644 index 83f31a2aaf5..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_6.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_6.RULE index 3a01cd43fc1..8609092cfca 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_6.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_6.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2016 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Unicode-DFS-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_6.yml b/src/licensedcode/data/rules/unicode-dfs-2016_6.yml deleted file mode 100644 index 7773ed7ddc6..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_7.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_7.RULE index 18120e2a16a..0ce72d74e01 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_7.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_7.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2016 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Unicode License Agreement - Data Files and Software (2016) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_7.yml b/src/licensedcode/data/rules/unicode-dfs-2016_7.yml deleted file mode 100644 index 7773ed7ddc6..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_8.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_8.RULE index f3767b00f7a..5d5ce89c0b1 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_8.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_8.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-dfs-2016 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Unicode-DFS-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_8.yml b/src/licensedcode/data/rules/unicode-dfs-2016_8.yml deleted file mode 100644 index 7773ed7ddc6..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_9.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_9.RULE index 4f99c48b280..44ca69c2159 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_9.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_9.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Unicode-DFS-2016 +--- + https://licenses.nuget.org/Unicode-DFS-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_9.yml b/src/licensedcode/data/rules/unicode-dfs-2016_9.yml deleted file mode 100644 index 4315e080463..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Unicode-DFS-2016 diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_url_1.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_url_1.RULE index 77748809aa5..873077eb01a 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_url_1.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/unicode-dfs-2016 +--- + https://spdx.org/licenses/unicode-dfs-2016 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_url_1.yml b/src/licensedcode/data/rules/unicode-dfs-2016_url_1.yml deleted file mode 100644 index 7353b3aa87c..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/unicode-dfs-2016 diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_url_2.RULE b/src/licensedcode/data/rules/unicode-dfs-2016_url_2.RULE index cea7b759fdd..751244aac43 100644 --- a/src/licensedcode/data/rules/unicode-dfs-2016_url_2.RULE +++ b/src/licensedcode/data/rules/unicode-dfs-2016_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-dfs-2016 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/unicode-dfs-2016.html +--- + https://spdx.org/licenses/unicode-dfs-2016.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-dfs-2016_url_2.yml b/src/licensedcode/data/rules/unicode-dfs-2016_url_2.yml deleted file mode 100644 index 49ec208c678..00000000000 --- a/src/licensedcode/data/rules/unicode-dfs-2016_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-dfs-2016 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/unicode-dfs-2016.html diff --git a/src/licensedcode/data/rules/unicode-icu-58_1.RULE b/src/licensedcode/data/rules/unicode-icu-58_1.RULE index cf65d7600b1..b4b7032b6f8 100644 --- a/src/licensedcode/data/rules/unicode-icu-58_1.RULE +++ b/src/licensedcode/data/rules/unicode-icu-58_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode-icu-58 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://source.icu-project.org/repos/icu/trunk/icu4j/main/shared/licenses/LICENSE +--- + Unicode/ICU License http://source.icu-project.org/repos/icu/trunk/icu4j/main/shared/licenses/LICENSE diff --git a/src/licensedcode/data/rules/unicode-icu-58_1.yml b/src/licensedcode/data/rules/unicode-icu-58_1.yml deleted file mode 100644 index a3ebd5feeaa..00000000000 --- a/src/licensedcode/data/rules/unicode-icu-58_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-icu-58 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://source.icu-project.org/repos/icu/trunk/icu4j/main/shared/licenses/LICENSE diff --git a/src/licensedcode/data/rules/unicode-mappings_1.RULE b/src/licensedcode/data/rules/unicode-mappings_1.RULE index c93670b7bcc..bdaf8f307b2 100644 --- a/src/licensedcode/data/rules/unicode-mappings_1.RULE +++ b/src/licensedcode/data/rules/unicode-mappings_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: unicode-mappings +is_license_text: yes +--- + License: other This file is provided as-is by Unicode, Inc. (The Unicode Consortium). No claims are made as to fitness for any particular purpose. No @@ -11,4 +16,4 @@ License: other supplied in this file in the creation of products supporting the Unicode Standard, and to make copies of this file in any form for internal or external distribution as long as this notice remains - attached. + attached. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-mappings_1.yml b/src/licensedcode/data/rules/unicode-mappings_1.yml deleted file mode 100644 index d4c426c891f..00000000000 --- a/src/licensedcode/data/rules/unicode-mappings_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unicode-mappings -is_license_text: yes diff --git a/src/licensedcode/data/rules/unicode-mappings_2.RULE b/src/licensedcode/data/rules/unicode-mappings_2.RULE index 536464c464a..8182ec6ed99 100644 --- a/src/licensedcode/data/rules/unicode-mappings_2.RULE +++ b/src/licensedcode/data/rules/unicode-mappings_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: unicode-mappings +is_license_text: yes +--- + UCD Terms of Use Disclaimer @@ -22,4 +27,4 @@ Database can be redistributed to third parties or other organizations (whether for profit or not) as long as this notice and the disclaimer notice are retained. Information can be extracted from these files and used in documentation or programs, as long as there is an accompanying notice -indicating the source. +indicating the source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-mappings_2.yml b/src/licensedcode/data/rules/unicode-mappings_2.yml deleted file mode 100644 index d4c426c891f..00000000000 --- a/src/licensedcode/data/rules/unicode-mappings_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unicode-mappings -is_license_text: yes diff --git a/src/licensedcode/data/rules/unicode-tou_1.RULE b/src/licensedcode/data/rules/unicode-tou_1.RULE index 42a57496f76..baffb931efa 100644 --- a/src/licensedcode/data/rules/unicode-tou_1.RULE +++ b/src/licensedcode/data/rules/unicode-tou_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use # in http://www.unicode.org/copyright.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_1.yml b/src/licensedcode/data/rules/unicode-tou_1.yml deleted file mode 100644 index 5d02e2c0479..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode-tou_10.RULE b/src/licensedcode/data/rules/unicode-tou_10.RULE index 4dd9d3af963..8d1409326b3 100644 --- a/src/licensedcode/data/rules/unicode-tou_10.RULE +++ b/src/licensedcode/data/rules/unicode-tou_10.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unicode-TOU Unicode Terms of Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_10.yml b/src/licensedcode/data/rules/unicode-tou_10.yml deleted file mode 100644 index 6d099199c82..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-tou_11.RULE b/src/licensedcode/data/rules/unicode-tou_11.RULE index 0f23d6bc573..994039c7012 100644 --- a/src/licensedcode/data/rules/unicode-tou_11.RULE +++ b/src/licensedcode/data/rules/unicode-tou_11.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unicode Terms of Use Unicode-TOU \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_11.yml b/src/licensedcode/data/rules/unicode-tou_11.yml deleted file mode 100644 index 6d099199c82..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-tou_12.RULE b/src/licensedcode/data/rules/unicode-tou_12.RULE index 2b1f14faa57..4274b3bd2d0 100644 --- a/src/licensedcode/data/rules/unicode-tou_12.RULE +++ b/src/licensedcode/data/rules/unicode-tou_12.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-tou +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Unicode-TOU \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_12.yml b/src/licensedcode/data/rules/unicode-tou_12.yml deleted file mode 100644 index 49fdbd14255..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-tou -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-tou_13.RULE b/src/licensedcode/data/rules/unicode-tou_13.RULE index 04c7053572c..77246aa520b 100644 --- a/src/licensedcode/data/rules/unicode-tou_13.RULE +++ b/src/licensedcode/data/rules/unicode-tou_13.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-tou +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Unicode Terms of Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_13.yml b/src/licensedcode/data/rules/unicode-tou_13.yml deleted file mode 100644 index 49fdbd14255..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-tou -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-tou_14.RULE b/src/licensedcode/data/rules/unicode-tou_14.RULE index 864f3a90f76..da9f4e15d0d 100644 --- a/src/licensedcode/data/rules/unicode-tou_14.RULE +++ b/src/licensedcode/data/rules/unicode-tou_14.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-tou +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Unicode-TOU \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_14.yml b/src/licensedcode/data/rules/unicode-tou_14.yml deleted file mode 100644 index 49fdbd14255..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-tou -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-tou_15.RULE b/src/licensedcode/data/rules/unicode-tou_15.RULE index aed8af354fd..674fc3af88e 100644 --- a/src/licensedcode/data/rules/unicode-tou_15.RULE +++ b/src/licensedcode/data/rules/unicode-tou_15.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Unicode-TOU +--- + https://licenses.nuget.org/Unicode-TOU \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_15.yml b/src/licensedcode/data/rules/unicode-tou_15.yml deleted file mode 100644 index 7ee0b4f66fb..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Unicode-TOU diff --git a/src/licensedcode/data/rules/unicode-tou_16.RULE b/src/licensedcode/data/rules/unicode-tou_16.RULE index f566d5d740c..059dfd33190 100644 --- a/src/licensedcode/data/rules/unicode-tou_16.RULE +++ b/src/licensedcode/data/rules/unicode-tou_16.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Unicode-TOU \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_16.yml b/src/licensedcode/data/rules/unicode-tou_16.yml deleted file mode 100644 index d39c1af1b0e..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode-tou_17.RULE b/src/licensedcode/data/rules/unicode-tou_17.RULE index 8bd665caf9a..6b704febb38 100644 --- a/src/licensedcode/data/rules/unicode-tou_17.RULE +++ b/src/licensedcode/data/rules/unicode-tou_17.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Unicode-TOU +--- + {{Unicode-TOU}} https://spdx.org/licenses/Unicode-TOU \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_17.yml b/src/licensedcode/data/rules/unicode-tou_17.yml deleted file mode 100644 index 1be6a389c29..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Unicode-TOU diff --git a/src/licensedcode/data/rules/unicode-tou_18.RULE b/src/licensedcode/data/rules/unicode-tou_18.RULE index d30d632267d..da24068aa4c 100644 --- a/src/licensedcode/data/rules/unicode-tou_18.RULE +++ b/src/licensedcode/data/rules/unicode-tou_18.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Unicode-TOU +--- + LICENSE {{Unicode-TOU}} https://spdx.org/licenses/Unicode-TOU \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_18.yml b/src/licensedcode/data/rules/unicode-tou_18.yml deleted file mode 100644 index 1be6a389c29..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Unicode-TOU diff --git a/src/licensedcode/data/rules/unicode-tou_2.RULE b/src/licensedcode/data/rules/unicode-tou_2.RULE index 86c5c0f173d..e3e6d3966f1 100644 --- a/src/licensedcode/data/rules/unicode-tou_2.RULE +++ b/src/licensedcode/data/rules/unicode-tou_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: unicode-tou +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +--- + Unicode Terms of Use For the general privacy policy governing access to this site, see the diff --git a/src/licensedcode/data/rules/unicode-tou_2.yml b/src/licensedcode/data/rules/unicode-tou_2.yml deleted file mode 100644 index 9896cd8b36f..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unicode-tou -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) Unicode, Inc. -ignorable_holders: - - Unicode, Inc. diff --git a/src/licensedcode/data/rules/unicode-tou_3.RULE b/src/licensedcode/data/rules/unicode-tou_3.RULE index 92427b6c1e0..9b0fdef161b 100644 --- a/src/licensedcode/data/rules/unicode-tou_3.RULE +++ b/src/licensedcode/data/rules/unicode-tou_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: unicode-tou +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1991-2016 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +--- + A. Unicode Copyright. Copyright © 1991-2016 Unicode, Inc. All rights reserved. @@ -29,5 +39,4 @@ F. Miscellaneous. Modification by Unicode Unicode shall have the right to modify this Agreement at any time by posting it to this site. The user may not assign any part of this Agreement without Unicode’s prior written consent. Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicode’s net income. Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. - Entire Agreement. This Agreement constitutes the entire agreement between the parties. - + Entire Agreement. This Agreement constitutes the entire agreement between the parties. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_3.yml b/src/licensedcode/data/rules/unicode-tou_3.yml deleted file mode 100644 index 12972844c91..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unicode-tou -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1991-2016 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. diff --git a/src/licensedcode/data/rules/unicode-tou_4.RULE b/src/licensedcode/data/rules/unicode-tou_4.RULE index 9f2a30f8bad..e498ddde7c6 100644 --- a/src/licensedcode/data/rules/unicode-tou_4.RULE +++ b/src/licensedcode/data/rules/unicode-tou_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: unicode-tou +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright ?? 1991-2013 Unicode, Inc. +ignorable_holders: + - ?? Unicode, Inc. +--- + Unicode Terms of Use For the general privacy policy governing access to this site, see the Unicode diff --git a/src/licensedcode/data/rules/unicode-tou_4.yml b/src/licensedcode/data/rules/unicode-tou_4.yml deleted file mode 100644 index bd76605d7e0..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unicode-tou -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright ?? 1991-2013 Unicode, Inc. -ignorable_holders: - - ?? Unicode, Inc. diff --git a/src/licensedcode/data/rules/unicode-tou_5.RULE b/src/licensedcode/data/rules/unicode-tou_5.RULE index 2f617bf4395..fb185535612 100644 --- a/src/licensedcode/data/rules/unicode-tou_5.RULE +++ b/src/licensedcode/data/rules/unicode-tou_5.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +relevance: 100 +--- + Unicode Terms of Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_5.yml b/src/licensedcode/data/rules/unicode-tou_5.yml deleted file mode 100644 index d39c1af1b0e..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode-tou_6.RULE b/src/licensedcode/data/rules/unicode-tou_6.RULE index 97224d268c4..414353c0c30 100644 --- a/src/licensedcode/data/rules/unicode-tou_6.RULE +++ b/src/licensedcode/data/rules/unicode-tou_6.RULE @@ -1,3 +1,13 @@ +--- +license_expression: unicode-tou +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2008 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +--- + Unicode Terms of Use For the general privacy policy governing access to this site, see the diff --git a/src/licensedcode/data/rules/unicode-tou_6.yml b/src/licensedcode/data/rules/unicode-tou_6.yml deleted file mode 100644 index bb1d5345eed..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unicode-tou -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2008 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. diff --git a/src/licensedcode/data/rules/unicode-tou_7.RULE b/src/licensedcode/data/rules/unicode-tou_7.RULE index 848d9a15460..f7534012ee9 100644 --- a/src/licensedcode/data/rules/unicode-tou_7.RULE +++ b/src/licensedcode/data/rules/unicode-tou_7.RULE @@ -1,3 +1,14 @@ +--- +license_expression: unicode-tou +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) 1991-2010 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +--- + Unicode Terms of Use For the general privacy policy governing access to this site, see the Unicode Privacy Policy. For trademark usage, see the Unicode Consortium® Trademarks and Logo Policy. diff --git a/src/licensedcode/data/rules/unicode-tou_7.yml b/src/licensedcode/data/rules/unicode-tou_7.yml deleted file mode 100644 index 38ad52f24b6..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: unicode-tou -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) 1991-2010 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. diff --git a/src/licensedcode/data/rules/unicode-tou_8.RULE b/src/licensedcode/data/rules/unicode-tou_8.RULE index 4168af5cf9b..7a6f22a730d 100644 --- a/src/licensedcode/data/rules/unicode-tou_8.RULE +++ b/src/licensedcode/data/rules/unicode-tou_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unicode-tou +is_license_text: yes +relevance: 100 +--- + Terms of Use Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. diff --git a/src/licensedcode/data/rules/unicode-tou_8.yml b/src/licensedcode/data/rules/unicode-tou_8.yml deleted file mode 100644 index 946ea694b53..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode-tou -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode-tou_9.RULE b/src/licensedcode/data/rules/unicode-tou_9.RULE index 213ecfb8afe..713c205649f 100644 --- a/src/licensedcode/data/rules/unicode-tou_9.RULE +++ b/src/licensedcode/data/rules/unicode-tou_9.RULE @@ -1 +1,10 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Unicode Terms of Use \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_9.yml b/src/licensedcode/data/rules/unicode-tou_9.yml deleted file mode 100644 index 6d099199c82..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unicode-tou_and_unicode_1.RULE b/src/licensedcode/data/rules/unicode-tou_and_unicode_1.RULE index 739aab6ff23..2b36f7393f7 100644 --- a/src/licensedcode/data/rules/unicode-tou_and_unicode_1.RULE +++ b/src/licensedcode/data/rules/unicode-tou_and_unicode_1.RULE @@ -1,3 +1,20 @@ +--- +license_expression: unicode-tou AND unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1991-2016 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://source.icu-project.org/repos/icu + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports + - http://www.unicode.org/utility/trac/browser +--- + A. Unicode Copyright. Copyright © 1991-2016 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode-tou_and_unicode_1.yml b/src/licensedcode/data/rules/unicode-tou_and_unicode_1.yml deleted file mode 100644 index 952b19eb8fd..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_and_unicode_1.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: unicode-tou AND unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1991-2016 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://source.icu-project.org/repos/icu - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports - - http://www.unicode.org/utility/trac/browser diff --git a/src/licensedcode/data/rules/unicode-tou_and_unicode_2.RULE b/src/licensedcode/data/rules/unicode-tou_and_unicode_2.RULE index 35ccf054d13..2a77e7e5fa5 100644 --- a/src/licensedcode/data/rules/unicode-tou_and_unicode_2.RULE +++ b/src/licensedcode/data/rules/unicode-tou_and_unicode_2.RULE @@ -1,2 +1,7 @@ +--- +license_expression: unicode-tou AND unicode +is_license_reference: yes +--- + The license of the Unicode character data files (which are parsed into -static storage in the library) are documented in COPYING.unicode. +static storage in the library) are documented in COPYING.unicode. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_and_unicode_2.yml b/src/licensedcode/data/rules/unicode-tou_and_unicode_2.yml deleted file mode 100644 index 61f88ceda51..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_and_unicode_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unicode-tou AND unicode -is_license_reference: yes diff --git a/src/licensedcode/data/rules/unicode-tou_url_1.RULE b/src/licensedcode/data/rules/unicode-tou_url_1.RULE index 3c66cda71ad..824c500c13f 100644 --- a/src/licensedcode/data/rules/unicode-tou_url_1.RULE +++ b/src/licensedcode/data/rules/unicode-tou_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/unicode-tou +--- + https://spdx.org/licenses/unicode-tou \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_url_1.yml b/src/licensedcode/data/rules/unicode-tou_url_1.yml deleted file mode 100644 index 11fcdd83b49..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/unicode-tou diff --git a/src/licensedcode/data/rules/unicode-tou_url_2.RULE b/src/licensedcode/data/rules/unicode-tou_url_2.RULE index 904f9aed2aa..057e5ae760c 100644 --- a/src/licensedcode/data/rules/unicode-tou_url_2.RULE +++ b/src/licensedcode/data/rules/unicode-tou_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode-tou +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/unicode-tou.html +--- + https://spdx.org/licenses/unicode-tou.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode-tou_url_2.yml b/src/licensedcode/data/rules/unicode-tou_url_2.yml deleted file mode 100644 index d81c288625a..00000000000 --- a/src/licensedcode/data/rules/unicode-tou_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode-tou -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/unicode-tou.html diff --git a/src/licensedcode/data/rules/unicode_1.RULE b/src/licensedcode/data/rules/unicode_1.RULE index cb68a09dc05..907ac9b2f1d 100644 --- a/src/licensedcode/data/rules/unicode_1.RULE +++ b/src/licensedcode/data/rules/unicode_1.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://unicode.org/copyright.html +--- + http://unicode.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_1.yml b/src/licensedcode/data/rules/unicode_1.yml deleted file mode 100644 index f19f20ebf32..00000000000 --- a/src/licensedcode/data/rules/unicode_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_10.RULE b/src/licensedcode/data/rules/unicode_10.RULE index 893c28225d9..457085583c9 100644 --- a/src/licensedcode/data/rules/unicode_10.RULE +++ b/src/licensedcode/data/rules/unicode_10.RULE @@ -1,3 +1,20 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1991-2016 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://source.icu-project.org/repos/icu + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports + - http://www.unicode.org/utility/trac/browser +--- + Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and diff --git a/src/licensedcode/data/rules/unicode_10.yml b/src/licensedcode/data/rules/unicode_10.yml deleted file mode 100644 index a288101a902..00000000000 --- a/src/licensedcode/data/rules/unicode_10.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1991-2016 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://source.icu-project.org/repos/icu - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports - - http://www.unicode.org/utility/trac/browser diff --git a/src/licensedcode/data/rules/unicode_11.RULE b/src/licensedcode/data/rules/unicode_11.RULE index a6b66253e0c..c4548d5c5e4 100644 --- a/src/licensedcode/data/rules/unicode_11.RULE +++ b/src/licensedcode/data/rules/unicode_11.RULE @@ -1,6 +1,17 @@ +--- +license_expression: unicode +is_license_reference: yes +ignorable_copyrights: + - Copyright (c) 1991-2014 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Portions of the unit tests are derived from the Unicode standard, which is subject to the Unicode, Inc. License Agreement: Copyright (c) 1991-2014 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in - . + . \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_11.yml b/src/licensedcode/data/rules/unicode_11.yml deleted file mode 100644 index 7c556ff95e5..00000000000 --- a/src/licensedcode/data/rules/unicode_11.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: unicode -is_license_reference: yes -ignorable_copyrights: - - Copyright (c) 1991-2014 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_12.RULE b/src/licensedcode/data/rules/unicode_12.RULE index 14d86dbe62c..91308adbdde 100644 --- a/src/licensedcode/data/rules/unicode_12.RULE +++ b/src/licensedcode/data/rules/unicode_12.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + License & terms of use: http://www.unicode.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_12.yml b/src/licensedcode/data/rules/unicode_12.yml deleted file mode 100644 index 0a7d3bec467..00000000000 --- a/src/licensedcode/data/rules/unicode_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_13.RULE b/src/licensedcode/data/rules/unicode_13.RULE index f77639b6a37..60ec07e21aa 100644 --- a/src/licensedcode/data/rules/unicode_13.RULE +++ b/src/licensedcode/data/rules/unicode_13.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + http://www.unicode.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_13.yml b/src/licensedcode/data/rules/unicode_13.yml deleted file mode 100644 index 0a7d3bec467..00000000000 --- a/src/licensedcode/data/rules/unicode_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_14.RULE b/src/licensedcode/data/rules/unicode_14.RULE index 52bc4ed1ce3..37d8d248f34 100644 --- a/src/licensedcode/data/rules/unicode_14.RULE +++ b/src/licensedcode/data/rules/unicode_14.RULE @@ -1 +1,9 @@ -For terms of use, see http://www.unicode.org/terms_of_use.html +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/terms_of_use.html +--- + +For terms of use, see http://www.unicode.org/terms_of_use.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_14.yml b/src/licensedcode/data/rules/unicode_14.yml deleted file mode 100644 index 23a4cd8e679..00000000000 --- a/src/licensedcode/data/rules/unicode_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/terms_of_use.html diff --git a/src/licensedcode/data/rules/unicode_15.RULE b/src/licensedcode/data/rules/unicode_15.RULE index dc84c64f744..e07ab4beaf0 100644 --- a/src/licensedcode/data/rules/unicode_15.RULE +++ b/src/licensedcode/data/rules/unicode_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unicode +is_license_notice: yes +ignorable_urls: + - http://www.unicode.org/copyright.html#License +--- + The data in `unicode_tables/` is licensed under the Unicode License Agreement ([LICENSE-UNICODE](http://www.unicode.org/copyright.html#License)). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_15.yml b/src/licensedcode/data/rules/unicode_15.yml deleted file mode 100644 index 817fd88f37b..00000000000 --- a/src/licensedcode/data/rules/unicode_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unicode -is_license_notice: yes -ignorable_urls: - - http://www.unicode.org/copyright.html#License diff --git a/src/licensedcode/data/rules/unicode_16.RULE b/src/licensedcode/data/rules/unicode_16.RULE index d0191e1584f..5b77674ec40 100644 --- a/src/licensedcode/data/rules/unicode_16.RULE +++ b/src/licensedcode/data/rules/unicode_16.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +--- + The data in unicode_tables/ is licensed under the Unicode License Agreement (LICENSE-UNICODE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_16.yml b/src/licensedcode/data/rules/unicode_16.yml deleted file mode 100644 index 3db92d8d4b4..00000000000 --- a/src/licensedcode/data/rules/unicode_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode_17.RULE b/src/licensedcode/data/rules/unicode_17.RULE index ab33c9ce245..a0bff86ba1c 100644 --- a/src/licensedcode/data/rules/unicode_17.RULE +++ b/src/licensedcode/data/rules/unicode_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining a copy @@ -27,4 +35,4 @@ PERFORMANCE OF THE DATA FILES OR SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written -authorization of the copyright holder. +authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_17.yml b/src/licensedcode/data/rules/unicode_17.yml deleted file mode 100644 index ef3fe46e8fd..00000000000 --- a/src/licensedcode/data/rules/unicode_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_18.RULE b/src/licensedcode/data/rules/unicode_18.RULE index eaa1c3f1dee..48b88dd40f8 100644 --- a/src/licensedcode/data/rules/unicode_18.RULE +++ b/src/licensedcode/data/rules/unicode_18.RULE @@ -1,6 +1,15 @@ +--- +license_expression: unicode +is_license_notice: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.unicode.org/reports/tr44/ + - http://www.unicode.org/terms_of_use.html +--- + # For terms of use, see http://www.unicode.org/terms_of_use.html # For documentation, see http://www.unicode.org/reports/tr44/ # It is ok to redistribute this file "solely for informational # purposes in the creation of products supporting the Unicode Standard". -# We don't nee to add a Boost License to this file: \ No newline at end of file +# We don't nee to add a Boost License to this file: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_18.yml b/src/licensedcode/data/rules/unicode_18.yml deleted file mode 100644 index 0983013e2cc..00000000000 --- a/src/licensedcode/data/rules/unicode_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode -is_license_notice: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.unicode.org/reports/tr44/ - - http://www.unicode.org/terms_of_use.html diff --git a/src/licensedcode/data/rules/unicode_19.RULE b/src/licensedcode/data/rules/unicode_19.RULE index 6c02bcff8f1..c15f20dfc44 100644 --- a/src/licensedcode/data/rules/unicode_19.RULE +++ b/src/licensedcode/data/rules/unicode_19.RULE @@ -1,3 +1,13 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-UNICODE +ignorable_urls: + - http://www.unicode.org/copyright.html#License +--- + The data is licensed under the Unicode License Agreement ([LICENSE-UNICODE](http://www.unicode.org/copyright.html#License)). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_19.yml b/src/licensedcode/data/rules/unicode_19.yml deleted file mode 100644 index 09c3f4a51ee..00000000000 --- a/src/licensedcode/data/rules/unicode_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-UNICODE -ignorable_urls: - - http://www.unicode.org/copyright.html#License diff --git a/src/licensedcode/data/rules/unicode_2.RULE b/src/licensedcode/data/rules/unicode_2.RULE index a461a64e6fc..90c4aa58211 100644 --- a/src/licensedcode/data/rules/unicode_2.RULE +++ b/src/licensedcode/data/rules/unicode_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unicode-mappings +is_license_notice: yes +relevance: 99 +minimum_coverage: 60 +--- + * Disclaimer * * This source code is provided as is by Unicode, Inc. No claims are diff --git a/src/licensedcode/data/rules/unicode_2.yml b/src/licensedcode/data/rules/unicode_2.yml deleted file mode 100644 index 16331586579..00000000000 --- a/src/licensedcode/data/rules/unicode_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unicode-mappings -is_license_notice: yes -relevance: 99 -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/unicode_20.RULE b/src/licensedcode/data/rules/unicode_20.RULE index 68834fe8400..e93274faca4 100644 --- a/src/licensedcode/data/rules/unicode_20.RULE +++ b/src/licensedcode/data/rules/unicode_20.RULE @@ -1,2 +1,12 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-UNICODE +ignorable_urls: + - http://www.unicode.org/copyright.html#License +--- + unicode_tables is licensed under the Unicode License Agreement (LICENSE-UNICODE(http://www.unicode.org/copyright.html#License)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_20.yml b/src/licensedcode/data/rules/unicode_20.yml deleted file mode 100644 index 09c3f4a51ee..00000000000 --- a/src/licensedcode/data/rules/unicode_20.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-UNICODE -ignorable_urls: - - http://www.unicode.org/copyright.html#License diff --git a/src/licensedcode/data/rules/unicode_21.RULE b/src/licensedcode/data/rules/unicode_21.RULE index 6d22d415868..6605aa398ce 100644 --- a/src/licensedcode/data/rules/unicode_21.RULE +++ b/src/licensedcode/data/rules/unicode_21.RULE @@ -1,2 +1,11 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +ignorable_urls: + - http://unicode.org/versions/Unicode5.0.0/ +--- + Extracted from Unicode specification, version 5.0.0, source: http://unicode.org/versions/Unicode5.0.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_21.yml b/src/licensedcode/data/rules/unicode_21.yml deleted file mode 100644 index de6cfb6feef..00000000000 --- a/src/licensedcode/data/rules/unicode_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 -ignorable_urls: - - http://unicode.org/versions/Unicode5.0.0/ diff --git a/src/licensedcode/data/rules/unicode_22.RULE b/src/licensedcode/data/rules/unicode_22.RULE index 0567a889c4c..41a0d35afba 100644 --- a/src/licensedcode/data/rules/unicode_22.RULE +++ b/src/licensedcode/data/rules/unicode_22.RULE @@ -1,2 +1,11 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 99 +minimum_coverage: 90 +ignorable_urls: + - https://unicode.org/versions/Unicode5.0.0/ +--- + Extracted from Unicode specification, version 5.0.0, source: https://unicode.org/versions/Unicode5.0.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_22.yml b/src/licensedcode/data/rules/unicode_22.yml deleted file mode 100644 index 4d26171dca0..00000000000 --- a/src/licensedcode/data/rules/unicode_22.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 99 -minimum_coverage: 90 -ignorable_urls: - - https://unicode.org/versions/Unicode5.0.0/ diff --git a/src/licensedcode/data/rules/unicode_23.RULE b/src/licensedcode/data/rules/unicode_23.RULE index 4d3df495bf2..68232911240 100644 --- a/src/licensedcode/data/rules/unicode_23.RULE +++ b/src/licensedcode/data/rules/unicode_23.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2020 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - https://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2020 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_23.yml b/src/licensedcode/data/rules/unicode_23.yml deleted file mode 100644 index f8fa87baef6..00000000000 --- a/src/licensedcode/data/rules/unicode_23.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2020 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - https://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_24.RULE b/src/licensedcode/data/rules/unicode_24.RULE index 9cbcf32b2cf..b5d8a4d4a2b 100644 --- a/src/licensedcode/data/rules/unicode_24.RULE +++ b/src/licensedcode/data/rules/unicode_24.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2019 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - https://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2019 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_24.yml b/src/licensedcode/data/rules/unicode_24.yml deleted file mode 100644 index 215e5ede7d5..00000000000 --- a/src/licensedcode/data/rules/unicode_24.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2019 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - https://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_25.RULE b/src/licensedcode/data/rules/unicode_25.RULE index 47b6de6948e..ad629ec00fc 100644 --- a/src/licensedcode/data/rules/unicode_25.RULE +++ b/src/licensedcode/data/rules/unicode_25.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2018 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - https://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2018 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_25.yml b/src/licensedcode/data/rules/unicode_25.yml deleted file mode 100644 index 873cf750e0e..00000000000 --- a/src/licensedcode/data/rules/unicode_25.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2018 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - https://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_26.RULE b/src/licensedcode/data/rules/unicode_26.RULE index 6669e2172d5..7c488e2899f 100644 --- a/src/licensedcode/data/rules/unicode_26.RULE +++ b/src/licensedcode/data/rules/unicode_26.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2017 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - https://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2017 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_26.yml b/src/licensedcode/data/rules/unicode_26.yml deleted file mode 100644 index 68f2a60a148..00000000000 --- a/src/licensedcode/data/rules/unicode_26.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2017 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - https://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_27.RULE b/src/licensedcode/data/rules/unicode_27.RULE index 1de8667c258..c8e79e3e1ee 100644 --- a/src/licensedcode/data/rules/unicode_27.RULE +++ b/src/licensedcode/data/rules/unicode_27.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2016 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - https://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2016 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_27.yml b/src/licensedcode/data/rules/unicode_27.yml deleted file mode 100644 index 5d2bb697c4d..00000000000 --- a/src/licensedcode/data/rules/unicode_27.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2016 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - https://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_28.RULE b/src/licensedcode/data/rules/unicode_28.RULE index f247577e421..a48357c07e7 100644 --- a/src/licensedcode/data/rules/unicode_28.RULE +++ b/src/licensedcode/data/rules/unicode_28.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2016 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE Copyright © 1991-2016 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_28.yml b/src/licensedcode/data/rules/unicode_28.yml deleted file mode 100644 index c7e15bd4f86..00000000000 --- a/src/licensedcode/data/rules/unicode_28.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2016 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_29.RULE b/src/licensedcode/data/rules/unicode_29.RULE index bb09b8ccfd0..80e8de610eb 100644 --- a/src/licensedcode/data/rules/unicode_29.RULE +++ b/src/licensedcode/data/rules/unicode_29.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2020 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2020 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_29.yml b/src/licensedcode/data/rules/unicode_29.yml deleted file mode 100644 index a053f055cdc..00000000000 --- a/src/licensedcode/data/rules/unicode_29.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2020 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_3.RULE b/src/licensedcode/data/rules/unicode_3.RULE index 97f3bea0a79..50ba3cb0e59 100644 --- a/src/licensedcode/data/rules/unicode_3.RULE +++ b/src/licensedcode/data/rules/unicode_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/. Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. @@ -14,4 +29,4 @@ THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. -Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United States and other countries. All third party trademarks referenced herein are the property of their respective owners. +Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United States and other countries. All third party trademarks referenced herein are the property of their respective owners. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_3.yml b/src/licensedcode/data/rules/unicode_3.yml deleted file mode 100644 index b69fdeca253..00000000000 --- a/src/licensedcode/data/rules/unicode_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode_30.RULE b/src/licensedcode/data/rules/unicode_30.RULE index fea8aac9ce0..3e08dfe48d7 100644 --- a/src/licensedcode/data/rules/unicode_30.RULE +++ b/src/licensedcode/data/rules/unicode_30.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2019 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2019 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_30.yml b/src/licensedcode/data/rules/unicode_30.yml deleted file mode 100644 index 5a6ffede120..00000000000 --- a/src/licensedcode/data/rules/unicode_30.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2019 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_31.RULE b/src/licensedcode/data/rules/unicode_31.RULE index 8648d4a8619..a0d7fcde9ae 100644 --- a/src/licensedcode/data/rules/unicode_31.RULE +++ b/src/licensedcode/data/rules/unicode_31.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2018 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2018 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_31.yml b/src/licensedcode/data/rules/unicode_31.yml deleted file mode 100644 index 05084240fd4..00000000000 --- a/src/licensedcode/data/rules/unicode_31.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2018 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_32.RULE b/src/licensedcode/data/rules/unicode_32.RULE index 9f101ca4cc8..4c0ae4ddd04 100644 --- a/src/licensedcode/data/rules/unicode_32.RULE +++ b/src/licensedcode/data/rules/unicode_32.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2017 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2017 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_32.yml b/src/licensedcode/data/rules/unicode_32.yml deleted file mode 100644 index f9c90b347b0..00000000000 --- a/src/licensedcode/data/rules/unicode_32.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2017 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_33.RULE b/src/licensedcode/data/rules/unicode_33.RULE index b5325d5dcb6..e78d5f10757 100644 --- a/src/licensedcode/data/rules/unicode_33.RULE +++ b/src/licensedcode/data/rules/unicode_33.RULE @@ -1,3 +1,15 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1991-2016 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later) Copyright © 1991-2016 Unicode, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/unicode_33.yml b/src/licensedcode/data/rules/unicode_33.yml deleted file mode 100644 index c7e15bd4f86..00000000000 --- a/src/licensedcode/data/rules/unicode_33.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1991-2016 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_34.RULE b/src/licensedcode/data/rules/unicode_34.RULE index 533ee3612fd..39bc3fff73d 100644 --- a/src/licensedcode/data/rules/unicode_34.RULE +++ b/src/licensedcode/data/rules/unicode_34.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining diff --git a/src/licensedcode/data/rules/unicode_34.yml b/src/licensedcode/data/rules/unicode_34.yml deleted file mode 100644 index d2dc99874e3..00000000000 --- a/src/licensedcode/data/rules/unicode_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_35.RULE b/src/licensedcode/data/rules/unicode_35.RULE index 87e2e28f906..954ce7f5f92 100644 --- a/src/licensedcode/data/rules/unicode_35.RULE +++ b/src/licensedcode/data/rules/unicode_35.RULE @@ -1,3 +1,12 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +minimum_coverage: 70 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. diff --git a/src/licensedcode/data/rules/unicode_35.yml b/src/licensedcode/data/rules/unicode_35.yml deleted file mode 100644 index 889b7203abc..00000000000 --- a/src/licensedcode/data/rules/unicode_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -minimum_coverage: 70 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_36.RULE b/src/licensedcode/data/rules/unicode_36.RULE index c2a0d0e6945..e3a69472b9b 100644 --- a/src/licensedcode/data/rules/unicode_36.RULE +++ b/src/licensedcode/data/rules/unicode_36.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in https://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining diff --git a/src/licensedcode/data/rules/unicode_36.yml b/src/licensedcode/data/rules/unicode_36.yml deleted file mode 100644 index fb51ba25656..00000000000 --- a/src/licensedcode/data/rules/unicode_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_37.RULE b/src/licensedcode/data/rules/unicode_37.RULE index 78260ea0aad..4388c0f32d6 100644 --- a/src/licensedcode/data/rules/unicode_37.RULE +++ b/src/licensedcode/data/rules/unicode_37.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in https://www.unicode.org/copyright.html. diff --git a/src/licensedcode/data/rules/unicode_37.yml b/src/licensedcode/data/rules/unicode_37.yml deleted file mode 100644 index fb51ba25656..00000000000 --- a/src/licensedcode/data/rules/unicode_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_38.RULE b/src/licensedcode/data/rules/unicode_38.RULE index a69a6aab677..e6d128242fc 100644 --- a/src/licensedcode/data/rules/unicode_38.RULE +++ b/src/licensedcode/data/rules/unicode_38.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Disclaimer and legal rights: Distributed under the Terms of Use in http://www.unicode.org/copyright.html. diff --git a/src/licensedcode/data/rules/unicode_38.yml b/src/licensedcode/data/rules/unicode_38.yml deleted file mode 100644 index 5d02e2c0479..00000000000 --- a/src/licensedcode/data/rules/unicode_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_39.RULE b/src/licensedcode/data/rules/unicode_39.RULE index 8489b3bc4c3..7c27c47cfae 100644 --- a/src/licensedcode/data/rules/unicode_39.RULE +++ b/src/licensedcode/data/rules/unicode_39.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS diff --git a/src/licensedcode/data/rules/unicode_39.yml b/src/licensedcode/data/rules/unicode_39.yml deleted file mode 100644 index 5d02e2c0479..00000000000 --- a/src/licensedcode/data/rules/unicode_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_4.RULE b/src/licensedcode/data/rules/unicode_4.RULE index 7f86472a77a..35d23dd5e5c 100644 --- a/src/licensedcode/data/rules/unicode_4.RULE +++ b/src/licensedcode/data/rules/unicode_4.RULE @@ -1,3 +1,19 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_copyrights: + - Copyright (c) 1991-2008 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + EXHIBIT 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE @@ -52,4 +68,4 @@ Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without - prior written authorization of the copyright holder. + prior written authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_4.yml b/src/licensedcode/data/rules/unicode_4.yml deleted file mode 100644 index 1cf151323ae..00000000000 --- a/src/licensedcode/data/rules/unicode_4.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_copyrights: - - Copyright (c) 1991-2008 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/cldr/data/ - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode_40.RULE b/src/licensedcode/data/rules/unicode_40.RULE index 9a6fa99080d..d0a34d86d06 100644 --- a/src/licensedcode/data/rules/unicode_40.RULE +++ b/src/licensedcode/data/rules/unicode_40.RULE @@ -1,3 +1,14 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/src/licensedcode/data/rules/unicode_40.yml b/src/licensedcode/data/rules/unicode_40.yml deleted file mode 100644 index b031cf8f56c..00000000000 --- a/src/licensedcode/data/rules/unicode_40.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/cldr/data/ - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode_41.RULE b/src/licensedcode/data/rules/unicode_41.RULE index 25b38095310..a907408d4b7 100644 --- a/src/licensedcode/data/rules/unicode_41.RULE +++ b/src/licensedcode/data/rules/unicode_41.RULE @@ -1,3 +1,14 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/src/licensedcode/data/rules/unicode_41.yml b/src/licensedcode/data/rules/unicode_41.yml deleted file mode 100644 index b031cf8f56c..00000000000 --- a/src/licensedcode/data/rules/unicode_41.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/cldr/data/ - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode_42.RULE b/src/licensedcode/data/rules/unicode_42.RULE index c8b92e09494..4bcb7439323 100644 --- a/src/licensedcode/data/rules/unicode_42.RULE +++ b/src/licensedcode/data/rules/unicode_42.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. diff --git a/src/licensedcode/data/rules/unicode_42.yml b/src/licensedcode/data/rules/unicode_42.yml deleted file mode 100644 index d2dc99874e3..00000000000 --- a/src/licensedcode/data/rules/unicode_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_43.RULE b/src/licensedcode/data/rules/unicode_43.RULE index 7b9af43c388..0c5c3c1e470 100644 --- a/src/licensedcode/data/rules/unicode_43.RULE +++ b/src/licensedcode/data/rules/unicode_43.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html#Exhibit1 +--- + The following license applies to these materials: http://www.unicode.org/copyright.html#Exhibit1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_43.yml b/src/licensedcode/data/rules/unicode_43.yml deleted file mode 100644 index 143827e2f81..00000000000 --- a/src/licensedcode/data/rules/unicode_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html#Exhibit1 diff --git a/src/licensedcode/data/rules/unicode_44.RULE b/src/licensedcode/data/rules/unicode_44.RULE index 8046b1c300d..fefc763681d 100644 --- a/src/licensedcode/data/rules/unicode_44.RULE +++ b/src/licensedcode/data/rules/unicode_44.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + The following license applies to these materials: http://www.unicode.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_44.yml b/src/licensedcode/data/rules/unicode_44.yml deleted file mode 100644 index 5d02e2c0479..00000000000 --- a/src/licensedcode/data/rules/unicode_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_45.RULE b/src/licensedcode/data/rules/unicode_45.RULE index 82ec2bb50b6..2652e942608 100644 --- a/src/licensedcode/data/rules/unicode_45.RULE +++ b/src/licensedcode/data/rules/unicode_45.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +--- + Unicode License (MIT Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_45.yml b/src/licensedcode/data/rules/unicode_45.yml deleted file mode 100644 index 3e6035e996b..00000000000 --- a/src/licensedcode/data/rules/unicode_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode_46.RULE b/src/licensedcode/data/rules/unicode_46.RULE index 1d055f16076..547f6df112c 100644 --- a/src/licensedcode/data/rules/unicode_46.RULE +++ b/src/licensedcode/data/rules/unicode_46.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://unicode.org/copyright.html +--- + derived from Unicode data such as the Unicode Character Database. See http://unicode.org/copyright.html for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_46.yml b/src/licensedcode/data/rules/unicode_46.yml deleted file mode 100644 index ccbdc0fb886..00000000000 --- a/src/licensedcode/data/rules/unicode_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_47.RULE b/src/licensedcode/data/rules/unicode_47.RULE index 265b426cf05..9a0d8fbc38d 100644 --- a/src/licensedcode/data/rules/unicode_47.RULE +++ b/src/licensedcode/data/rules/unicode_47.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://unicode.org/copyright.html +--- + See http://unicode.org/copyright.html for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_47.yml b/src/licensedcode/data/rules/unicode_47.yml deleted file mode 100644 index f19f20ebf32..00000000000 --- a/src/licensedcode/data/rules/unicode_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_48.RULE b/src/licensedcode/data/rules/unicode_48.RULE index b7dce96838e..d064b192c6c 100644 --- a/src/licensedcode/data/rules/unicode_48.RULE +++ b/src/licensedcode/data/rules/unicode_48.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.unicode.org/terms_of_use.html +--- + https://www.unicode.org/terms_of_use.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_48.yml b/src/licensedcode/data/rules/unicode_48.yml deleted file mode 100644 index 3bc0eaa2d2c..00000000000 --- a/src/licensedcode/data/rules/unicode_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.unicode.org/terms_of_use.html diff --git a/src/licensedcode/data/rules/unicode_49.RULE b/src/licensedcode/data/rules/unicode_49.RULE index c79bec6be5c..1b22989ad00 100644 --- a/src/licensedcode/data/rules/unicode_49.RULE +++ b/src/licensedcode/data/rules/unicode_49.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/terms_of_use.html +--- + http://www.unicode.org/terms_of_use.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_49.yml b/src/licensedcode/data/rules/unicode_49.yml deleted file mode 100644 index 23a4cd8e679..00000000000 --- a/src/licensedcode/data/rules/unicode_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/terms_of_use.html diff --git a/src/licensedcode/data/rules/unicode_5.RULE b/src/licensedcode/data/rules/unicode_5.RULE index 24435c4a9b7..6d9b876785f 100644 --- a/src/licensedcode/data/rules/unicode_5.RULE +++ b/src/licensedcode/data/rules/unicode_5.RULE @@ -1,3 +1,14 @@ +--- +license_expression: unicode +is_license_notice: yes +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/copyright.html#Exhibit1 + - http://www.unicode.org/reports +--- + The following license applies to these materials: http://www.unicode.org/copyright.html#Exhibit1 diff --git a/src/licensedcode/data/rules/unicode_5.yml b/src/licensedcode/data/rules/unicode_5.yml deleted file mode 100644 index 1b50b769a09..00000000000 --- a/src/licensedcode/data/rules/unicode_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: unicode -is_license_notice: yes -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/cldr/data/ - - http://www.unicode.org/copyright.html#Exhibit1 - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode_50.RULE b/src/licensedcode/data/rules/unicode_50.RULE index 8b2f62f4bcd..c2f4d36a417 100644 --- a/src/licensedcode/data/rules/unicode_50.RULE +++ b/src/licensedcode/data/rules/unicode_50.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/terms_of_use.html +--- + Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. For terms of use, see http://www.unicode.org/terms_of_use.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_50.yml b/src/licensedcode/data/rules/unicode_50.yml deleted file mode 100644 index 5dce12c6edf..00000000000 --- a/src/licensedcode/data/rules/unicode_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/terms_of_use.html diff --git a/src/licensedcode/data/rules/unicode_51.RULE b/src/licensedcode/data/rules/unicode_51.RULE index 89fc1ab8ab9..8d530edbefa 100644 --- a/src/licensedcode/data/rules/unicode_51.RULE +++ b/src/licensedcode/data/rules/unicode_51.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. diff --git a/src/licensedcode/data/rules/unicode_51.yml b/src/licensedcode/data/rules/unicode_51.yml deleted file mode 100644 index d2dc99874e3..00000000000 --- a/src/licensedcode/data/rules/unicode_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_52.RULE b/src/licensedcode/data/rules/unicode_52.RULE index c1c579bbb94..289e017033e 100644 --- a/src/licensedcode/data/rules/unicode_52.RULE +++ b/src/licensedcode/data/rules/unicode_52.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +--- + ICU4J License \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_52.yml b/src/licensedcode/data/rules/unicode_52.yml deleted file mode 100644 index 3e6035e996b..00000000000 --- a/src/licensedcode/data/rules/unicode_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode_53.RULE b/src/licensedcode/data/rules/unicode_53.RULE index 6a38218253c..5a0fab2c931 100644 --- a/src/licensedcode/data/rules/unicode_53.RULE +++ b/src/licensedcode/data/rules/unicode_53.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_53.yml b/src/licensedcode/data/rules/unicode_53.yml deleted file mode 100644 index 3e6035e996b..00000000000 --- a/src/licensedcode/data/rules/unicode_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode_54.RULE b/src/licensedcode/data/rules/unicode_54.RULE index 0da1dbf5326..dd57b40b527 100644 --- a/src/licensedcode/data/rules/unicode_54.RULE +++ b/src/licensedcode/data/rules/unicode_54.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 99 +--- + UNICODE, INC. LICENSE AGREEMENT \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_54.yml b/src/licensedcode/data/rules/unicode_54.yml deleted file mode 100644 index 0074a9bc746..00000000000 --- a/src/licensedcode/data/rules/unicode_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/unicode_55.RULE b/src/licensedcode/data/rules/unicode_55.RULE index 9198b303406..bf42b96d78f 100644 --- a/src/licensedcode/data/rules/unicode_55.RULE +++ b/src/licensedcode/data/rules/unicode_55.RULE @@ -1,3 +1,16 @@ +--- +license_expression: unicode +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +ignorable_copyrights: + - Copyright (c) Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - https://www.unicode.org/copyright.html +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE See Terms of Use for definitions of Unicode Inc.'s diff --git a/src/licensedcode/data/rules/unicode_55.yml b/src/licensedcode/data/rules/unicode_55.yml deleted file mode 100644 index 3b882ac9f01..00000000000 --- a/src/licensedcode/data/rules/unicode_55.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: unicode -is_license_text: yes -relevance: 100 -minimum_coverage: 90 -ignorable_copyrights: - - Copyright (c) Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - https://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_56.RULE b/src/licensedcode/data/rules/unicode_56.RULE index 9b92c39e808..10a4d149a96 100644 --- a/src/licensedcode/data/rules/unicode_56.RULE +++ b/src/licensedcode/data/rules/unicode_56.RULE @@ -1,3 +1,8 @@ +--- +license_expression: unicode +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the diff --git a/src/licensedcode/data/rules/unicode_56.yml b/src/licensedcode/data/rules/unicode_56.yml deleted file mode 100644 index 23371e791e9..00000000000 --- a/src/licensedcode/data/rules/unicode_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unicode -is_license_text: yes diff --git a/src/licensedcode/data/rules/unicode_57.RULE b/src/licensedcode/data/rules/unicode_57.RULE index 4b068aea253..95099322f4d 100644 --- a/src/licensedcode/data/rules/unicode_57.RULE +++ b/src/licensedcode/data/rules/unicode_57.RULE @@ -1,3 +1,14 @@ +--- +license_expression: unicode +is_license_text: yes +ignorable_urls: + - http://source.icu-project.org/repos/icu + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/reports + - http://www.unicode.org/utility/trac/browser +--- + Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and diff --git a/src/licensedcode/data/rules/unicode_57.yml b/src/licensedcode/data/rules/unicode_57.yml deleted file mode 100644 index 1915d58bc0d..00000000000 --- a/src/licensedcode/data/rules/unicode_57.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: unicode -is_license_text: yes -ignorable_urls: - - http://source.icu-project.org/repos/icu - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/reports - - http://www.unicode.org/utility/trac/browser diff --git a/src/licensedcode/data/rules/unicode_58.RULE b/src/licensedcode/data/rules/unicode_58.RULE index 2b32feb3878..11aaafec9e8 100644 --- a/src/licensedcode/data/rules/unicode_58.RULE +++ b/src/licensedcode/data/rules/unicode_58.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +referenced_filenames: + - licenses/icu4j.LICENSE.txt +--- + licenses/icu4j.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_58.yml b/src/licensedcode/data/rules/unicode_58.yml deleted file mode 100644 index 7f43f74769c..00000000000 --- a/src/licensedcode/data/rules/unicode_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -referenced_filenames: - - licenses/icu4j.LICENSE.txt diff --git a/src/licensedcode/data/rules/unicode_59.RULE b/src/licensedcode/data/rules/unicode_59.RULE index 60b95e71d7d..3184aef7819 100644 --- a/src/licensedcode/data/rules/unicode_59.RULE +++ b/src/licensedcode/data/rules/unicode_59.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.unicode.org/license.html +--- + See https://www.unicode.org/license.html for the Unicode license agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_59.yml b/src/licensedcode/data/rules/unicode_59.yml deleted file mode 100644 index 25a2f9392b6..00000000000 --- a/src/licensedcode/data/rules/unicode_59.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.unicode.org/license.html diff --git a/src/licensedcode/data/rules/unicode_6.RULE b/src/licensedcode/data/rules/unicode_6.RULE index f275a55c388..7ccc118bd62 100644 --- a/src/licensedcode/data/rules/unicode_6.RULE +++ b/src/licensedcode/data/rules/unicode_6.RULE @@ -1,7 +1,17 @@ +--- +license_expression: unicode +is_license_notice: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE

Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/. Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/.

NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.

-COPYRIGHT AND PERMISSION NOTICE +COPYRIGHT AND PERMISSION NOTICE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_6.yml b/src/licensedcode/data/rules/unicode_6.yml deleted file mode 100644 index 750bbdea580..00000000000 --- a/src/licensedcode/data/rules/unicode_6.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unicode -is_license_notice: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/unicode_60.RULE b/src/licensedcode/data/rules/unicode_60.RULE index df7b3cc2798..086a465fb2d 100644 --- a/src/licensedcode/data/rules/unicode_60.RULE +++ b/src/licensedcode/data/rules/unicode_60.RULE @@ -1 +1,9 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.unicode.org/license.html +--- + See https://www.unicode.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_60.yml b/src/licensedcode/data/rules/unicode_60.yml deleted file mode 100644 index 25a2f9392b6..00000000000 --- a/src/licensedcode/data/rules/unicode_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.unicode.org/license.html diff --git a/src/licensedcode/data/rules/unicode_61.RULE b/src/licensedcode/data/rules/unicode_61.RULE index c11d5452ba0..41748327149 100644 --- a/src/licensedcode/data/rules/unicode_61.RULE +++ b/src/licensedcode/data/rules/unicode_61.RULE @@ -1 +1,7 @@ +--- +license_expression: unicode +is_license_reference: yes +relevance: 100 +--- + Unicode license agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_61.yml b/src/licensedcode/data/rules/unicode_61.yml deleted file mode 100644 index 3e6035e996b..00000000000 --- a/src/licensedcode/data/rules/unicode_61.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unicode -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unicode_7.RULE b/src/licensedcode/data/rules/unicode_7.RULE index d1ec06f4f1a..a0f1e0d715a 100644 --- a/src/licensedcode/data/rules/unicode_7.RULE +++ b/src/licensedcode/data/rules/unicode_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: unicode +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE-UNICODE +ignorable_urls: + - http://www.unicode.org/copyright.html#License +--- + licensed under the Unicode License Agreement ([LICENSE-UNICODE](http://www.unicode.org/copyright.html#License)). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_7.yml b/src/licensedcode/data/rules/unicode_7.yml deleted file mode 100644 index 09c3f4a51ee..00000000000 --- a/src/licensedcode/data/rules/unicode_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unicode -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE-UNICODE -ignorable_urls: - - http://www.unicode.org/copyright.html#License diff --git a/src/licensedcode/data/rules/unicode_8.RULE b/src/licensedcode/data/rules/unicode_8.RULE index 096ba7528f3..918b0683baf 100644 --- a/src/licensedcode/data/rules/unicode_8.RULE +++ b/src/licensedcode/data/rules/unicode_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unicode +is_license_text: yes +minimum_coverage: 60 +ignorable_urls: + - http://www.unicode.org/copyright.html +--- + Distributed under the Terms of Use in http://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining a @@ -36,4 +44,4 @@ authorization of the copyright holder. Unicode and the Unicode logo are trademarks of Unicode, Inc. in the United States and other countries. All third party trademarks referenced -herein are the property of their respective owners. +herein are the property of their respective owners. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_8.yml b/src/licensedcode/data/rules/unicode_8.yml deleted file mode 100644 index ef3fe46e8fd..00000000000 --- a/src/licensedcode/data/rules/unicode_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unicode -is_license_text: yes -minimum_coverage: 60 -ignorable_urls: - - http://www.unicode.org/copyright.html diff --git a/src/licensedcode/data/rules/unicode_9.RULE b/src/licensedcode/data/rules/unicode_9.RULE index 67718f138bb..77c4efc3c0f 100644 --- a/src/licensedcode/data/rules/unicode_9.RULE +++ b/src/licensedcode/data/rules/unicode_9.RULE @@ -1,3 +1,18 @@ +--- +license_expression: unicode +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1991-2009 Unicode, Inc. +ignorable_holders: + - Unicode, Inc. +ignorable_urls: + - http://www.unicode.org/Public + - http://www.unicode.org/cldr/data + - http://www.unicode.org/cldr/data/ + - http://www.unicode.org/copyright.html + - http://www.unicode.org/reports +--- + UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/ . Unicode Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. @@ -10,4 +25,4 @@ UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided that (a) the above copyright notice(s) and this permission notice appear with all copies of the Data Files or Software, (b) both the above copyright notice(s) and this permission notice appear in associated documentation, and (c) there is clear notice in each modified Data File or in the Software as well as in the documentation associated with the Data File(s) or Software that the data or software has been modified. -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. +Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_9.yml b/src/licensedcode/data/rules/unicode_9.yml deleted file mode 100644 index 9d26cb45382..00000000000 --- a/src/licensedcode/data/rules/unicode_9.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: unicode -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1991-2009 Unicode, Inc. -ignorable_holders: - - Unicode, Inc. -ignorable_urls: - - http://www.unicode.org/Public - - http://www.unicode.org/cldr/data - - http://www.unicode.org/cldr/data/ - - http://www.unicode.org/copyright.html - - http://www.unicode.org/reports diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_1.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_1.RULE index 22c5d910838..314fda768d9 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_1.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_1.RULE @@ -1 +1,10 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Universal FOSS Exception, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_1.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_1.yml deleted file mode 100644 index c8b63d2afd7..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_10.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_10.RULE index 25897955fac..b576e5a0e51 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_10.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Universal-FOSS-exception-1.0 +--- + LICENSE {{Universal-FOSS-exception-1.0}} https://spdx.org/licenses/Universal-FOSS-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_10.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_10.yml deleted file mode 100644 index 0f7098f3340..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Universal-FOSS-exception-1.0 diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_2.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_2.RULE index 1e6005e9cac..9f1f6a1bb01 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_2.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Universal-FOSS-exception-1.0 Universal FOSS Exception, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_2.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_2.yml deleted file mode 100644 index c8b63d2afd7..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_3.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_3.RULE index 16e6e194798..79bc546a25b 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_3.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_3.RULE @@ -1 +1,10 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Universal FOSS Exception, Version 1.0 Universal-FOSS-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_3.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_3.yml deleted file mode 100644 index c8b63d2afd7..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_4.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_4.RULE index c751cb2a960..b19e014bafb 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_4.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Universal-FOSS-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_4.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_4.yml deleted file mode 100644 index 0eb47a6aed8..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_5.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_5.RULE index 9972da88070..43999fe857d 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_5.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Universal FOSS Exception, Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_5.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_5.yml deleted file mode 100644 index 0eb47a6aed8..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_6.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_6.RULE index db0276aec4b..bb5ddfaf88a 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_6.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: Universal-FOSS-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_6.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_6.yml deleted file mode 100644 index 0eb47a6aed8..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_7.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_7.RULE index 7ed55a8864f..8e32745ebb0 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_7.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Universal-FOSS-exception-1.0 +--- + https://licenses.nuget.org/Universal-FOSS-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_7.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_7.yml deleted file mode 100644 index fb7347ab1eb..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Universal-FOSS-exception-1.0 diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_8.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_8.RULE index 2d8e3bd07c9..adfecc9ccda 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_8.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Universal-FOSS-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_8.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_8.yml deleted file mode 100644 index 13a92f59a25..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_9.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_9.RULE index 783f24b49af..9945e6f4cc9 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_9.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_9.RULE @@ -1 +1,9 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Universal-FOSS-exception-1.0 +--- + {{Universal-FOSS-exception-1.0}} https://spdx.org/licenses/Universal-FOSS-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_9.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_9.yml deleted file mode 100644 index 0f7098f3340..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Universal-FOSS-exception-1.0 diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_url_1.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_url_1.RULE index 2d21f2cae65..4982a1db726 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/universal-foss-exception-1.0 +--- + https://spdx.org/licenses/universal-foss-exception-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_url_1.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_url_1.yml deleted file mode 100644 index df79db40707..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/universal-foss-exception-1.0 diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_url_2.RULE b/src/licensedcode/data/rules/universal-foss-exception-1.0_url_2.RULE index ce50652474a..8463898def5 100644 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/universal-foss-exception-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: universal-foss-exception-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/universal-foss-exception-1.0.html +--- + https://spdx.org/licenses/universal-foss-exception-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/universal-foss-exception-1.0_url_2.yml b/src/licensedcode/data/rules/universal-foss-exception-1.0_url_2.yml deleted file mode 100644 index e8293b5b237..00000000000 --- a/src/licensedcode/data/rules/universal-foss-exception-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: universal-foss-exception-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/universal-foss-exception-1.0.html diff --git a/src/licensedcode/data/rules/unknown-license-reference.RULE b/src/licensedcode/data/rules/unknown-license-reference.RULE index 59bff659d1d..e14759bc4c8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +referenced_filenames: + - LICENSE +--- + For the full copyright and license information, please view the LICENSE -file that was distributed with this source code. +file that was distributed with this source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference.yml b/src/licensedcode/data/rules/unknown-license-reference.yml deleted file mode 100644 index f2d2df54344..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_1.RULE b/src/licensedcode/data/rules/unknown-license-reference_1.RULE index e78b19c5f83..773d7267999 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_1.RULE @@ -1 +1,9 @@ -License: Please see the license agreement +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - license +--- + +License: Please see the license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_1.yml b/src/licensedcode/data/rules/unknown-license-reference_1.yml deleted file mode 100644 index 239fa8749af..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - license diff --git a/src/licensedcode/data/rules/unknown-license-reference_10.RULE b/src/licensedcode/data/rules/unknown-license-reference_10.RULE index 21dce260131..151d69572fb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_10.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_10.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + license as described at \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_10.yml b/src/licensedcode/data/rules/unknown-license-reference_10.yml deleted file mode 100644 index 8327bb19858..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - diff --git a/src/licensedcode/data/rules/unknown-license-reference_100.RULE b/src/licensedcode/data/rules/unknown-license-reference_100.RULE index e67edd11771..810cabf4b6a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_100.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_100.RULE @@ -1 +1,9 @@ -See ../README.txt for License. \ No newline at end of file +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - ../README.txt +--- + +See ../README.txt for License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_100.yml b/src/licensedcode/data/rules/unknown-license-reference_100.yml deleted file mode 100644 index 496293cffd9..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_100.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - ../README.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_101.RULE b/src/licensedcode/data/rules/unknown-license-reference_101.RULE index e898218aeaf..6f68f3f02ce 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_101.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_101.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + not in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_101.yml b/src/licensedcode/data/rules/unknown-license-reference_101.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_101.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_102.RULE b/src/licensedcode/data/rules/unknown-license-reference_102.RULE index e7db1897490..319b9a5b6e0 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_102.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_102.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - usr/share/licenses/intel536/license.txt +--- + In order to use this module you have to agree to intel's software license: usr/share/licenses/intel536/license.txt -Else please remove the package. +Else please remove the package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_102.yml b/src/licensedcode/data/rules/unknown-license-reference_102.yml deleted file mode 100644 index 29cab6006c9..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_102.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - usr/share/licenses/intel536/license.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_103.RULE b/src/licensedcode/data/rules/unknown-license-reference_103.RULE index c3b345cf50a..1a54bb172bd 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_103.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_103.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +--- + See the accompanying file "COPYRIGHT" for * details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_103.yml b/src/licensedcode/data/rules/unknown-license-reference_103.yml deleted file mode 100644 index 32b26f7cc61..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT diff --git a/src/licensedcode/data/rules/unknown-license-reference_104.RULE b/src/licensedcode/data/rules/unknown-license-reference_104.RULE index 373395d73e6..208a1d86a44 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_104.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_104.RULE @@ -1,3 +1,13 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - toolkit/content/license.html +ignorable_urls: + - http://www.mozilla.org/foundation/licensing.html +--- + Please see the file toolkit/content/license.html for the copyright licensing conditions attached to this codebase, including copies of the licenses concerned. @@ -6,4 +16,4 @@ You are not granted rights or licenses to the trademarks of the Mozilla Foundation or any party, including without limitation the Firefox name or logo. -For more information, see: http://www.mozilla.org/foundation/licensing.html +For more information, see: http://www.mozilla.org/foundation/licensing.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_104.yml b/src/licensedcode/data/rules/unknown-license-reference_104.yml deleted file mode 100644 index e8bd5b9fe36..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_104.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - toolkit/content/license.html -ignorable_urls: - - http://www.mozilla.org/foundation/licensing.html diff --git a/src/licensedcode/data/rules/unknown-license-reference_105.RULE b/src/licensedcode/data/rules/unknown-license-reference_105.RULE index 313ad56a661..9ca2ad51971 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_105.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_105.RULE @@ -1 +1,9 @@ - * For conditions of distribution and use, see the accompanying README file. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - README +--- + + * For conditions of distribution and use, see the accompanying README file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_105.yml b/src/licensedcode/data/rules/unknown-license-reference_105.yml deleted file mode 100644 index 75b3beaf0fd..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_105.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/unknown-license-reference_106.RULE b/src/licensedcode/data/rules/unknown-license-reference_106.RULE index 20029a8d36a..9e0c11cc37b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_106.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_106.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - license +--- + For license conditions see the license file \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_106.yml b/src/licensedcode/data/rules/unknown-license-reference_106.yml deleted file mode 100644 index 239fa8749af..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_106.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - license diff --git a/src/licensedcode/data/rules/unknown-license-reference_107.RULE b/src/licensedcode/data/rules/unknown-license-reference_107.RULE index 2f2d8f4cfeb..fe671cf9c22 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_107.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_107.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + For the licensing details refer to the License.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_107.yml b/src/licensedcode/data/rules/unknown-license-reference_107.yml deleted file mode 100644 index ea83f7c8fa4..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_107.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_108.RULE b/src/licensedcode/data/rules/unknown-license-reference_108.RULE index c7e6d5cd9ac..f14ffef2795 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_108.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_108.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Copyright +--- + Copy: See Copyright for the status of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_108.yml b/src/licensedcode/data/rules/unknown-license-reference_108.yml deleted file mode 100644 index 9fc722822c0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_108.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Copyright diff --git a/src/licensedcode/data/rules/unknown-license-reference_109.RULE b/src/licensedcode/data/rules/unknown-license-reference_109.RULE index 5857eab8965..81540920136 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_109.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_109.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Please see the LICENSE file in the package subdirectories for information on copyright and authorized use of the packages. diff --git a/src/licensedcode/data/rules/unknown-license-reference_109.yml b/src/licensedcode/data/rules/unknown-license-reference_109.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_109.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_11.RULE b/src/licensedcode/data/rules/unknown-license-reference_11.RULE index 4efd146705c..27af56bbb64 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_11.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_11.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + licence as described at \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_11.yml b/src/licensedcode/data/rules/unknown-license-reference_11.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_110.RULE b/src/licensedcode/data/rules/unknown-license-reference_110.RULE index c921c38278a..f49e7a2bca5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_110.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_110.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + This software is protected by copyright and other intellectual - property laws and by international treaties. \ No newline at end of file + property laws and by international treaties. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_110.yml b/src/licensedcode/data/rules/unknown-license-reference_110.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_110.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_111.RULE b/src/licensedcode/data/rules/unknown-license-reference_111.RULE index a52da4f438f..d6560f92af5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_111.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_111.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + This license does not convey any intellectual property rights to third party trademarks that may be included in the icon font; such marks remain subject to all rights and guidelines of use of their owner. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_111.yml b/src/licensedcode/data/rules/unknown-license-reference_111.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_111.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_112.RULE b/src/licensedcode/data/rules/unknown-license-reference_112.RULE index 948b3d89428..7468e12f4f6 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_112.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_112.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + For license information, see [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_112.yml b/src/licensedcode/data/rules/unknown-license-reference_112.yml deleted file mode 100644 index c8343ceee83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_112.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_113.RULE b/src/licensedcode/data/rules/unknown-license-reference_113.RULE index 5b9e839813b..3b2d56c50b0 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_113.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_113.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + are not covered by this license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_113.yml b/src/licensedcode/data/rules/unknown-license-reference_113.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_113.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_114.RULE b/src/licensedcode/data/rules/unknown-license-reference_114.RULE index dfb2d4464f3..f57bd3d3385 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_114.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_114.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + This program is free software. Each file have your license on its header. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_114.yml b/src/licensedcode/data/rules/unknown-license-reference_114.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_114.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_115.RULE b/src/licensedcode/data/rules/unknown-license-reference_115.RULE index a6ceac5264b..a6892dabe10 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_115.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_115.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Used with permission from the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_115.yml b/src/licensedcode/data/rules/unknown-license-reference_115.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_115.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_116.RULE b/src/licensedcode/data/rules/unknown-license-reference_116.RULE index a8c05e23476..9760f270db3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_116.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_116.RULE @@ -1 +1,9 @@ -Geomag software courtesy of http://www.ngdc.noaa.gov/geomag/WMM/ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.ngdc.noaa.gov/geomag/WMM/ +--- + +Geomag software courtesy of http://www.ngdc.noaa.gov/geomag/WMM/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_116.yml b/src/licensedcode/data/rules/unknown-license-reference_116.yml deleted file mode 100644 index 8eabd9e7b40..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_116.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.ngdc.noaa.gov/geomag/WMM/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_117.RULE b/src/licensedcode/data/rules/unknown-license-reference_117.RULE index 288d65427bf..6961d889841 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_117.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_117.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + is used under license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_117.yml b/src/licensedcode/data/rules/unknown-license-reference_117.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_117.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_118.RULE b/src/licensedcode/data/rules/unknown-license-reference_118.RULE index d1723713786..d27069ddba6 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_118.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_118.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +notes: often used as a lead-in to a bsd-new +--- + By downloading, copying, installing or using the software you agree to this license. If you do not agree to this license, do not download, install, copy or use the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_118.yml b/src/licensedcode/data/rules/unknown-license-reference_118.yml deleted file mode 100644 index 7020e93de3c..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_118.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -notes: often used as a lead-in to a bsd-new diff --git a/src/licensedcode/data/rules/unknown-license-reference_119.RULE b/src/licensedcode/data/rules/unknown-license-reference_119.RULE index 77e2c233b21..3c4e36f35de 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_119.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_119.RULE @@ -1 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE + - NOTICE +--- + /* See LICENSE for licensing and NOTICE for copyright. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_119.yml b/src/licensedcode/data/rules/unknown-license-reference_119.yml deleted file mode 100644 index 77b1574ef77..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_119.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE - - NOTICE diff --git a/src/licensedcode/data/rules/unknown-license-reference_12.RULE b/src/licensedcode/data/rules/unknown-license-reference_12.RULE index e118072e83d..51eec8dffab 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_12.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_12.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + licence, as given at. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_12.yml b/src/licensedcode/data/rules/unknown-license-reference_12.yml deleted file mode 100644 index 8327bb19858..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - diff --git a/src/licensedcode/data/rules/unknown-license-reference_120.RULE b/src/licensedcode/data/rules/unknown-license-reference_120.RULE index 7c9ec7edcd0..b90a9a1fe9b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_120.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_120.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licensing Please see the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_120.yml b/src/licensedcode/data/rules/unknown-license-reference_120.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_120.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_121.RULE b/src/licensedcode/data/rules/unknown-license-reference_121.RULE index 72df8db305a..6c946cb30f1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_121.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_121.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - docs/AUTHORS_app-install +--- + licenses: Various, see docs/AUTHORS_app-install license link: see docs/AUTHORS_app-install \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_121.yml b/src/licensedcode/data/rules/unknown-license-reference_121.yml deleted file mode 100644 index 5c0b3890c6a..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_121.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - docs/AUTHORS_app-install diff --git a/src/licensedcode/data/rules/unknown-license-reference_122.RULE b/src/licensedcode/data/rules/unknown-license-reference_122.RULE index 93cc2fcfca4..1bf165e9d5c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_122.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_122.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + For license information, please see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_122.yml b/src/licensedcode/data/rules/unknown-license-reference_122.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_122.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_123.RULE b/src/licensedcode/data/rules/unknown-license-reference_123.RULE index 6a7cc2470ad..a59bb5a6472 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_123.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_123.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + THIS IS FOR INFORMATION ONLY, CODE IS UNDER THE LICENCE AT THE TOP OF ITS FILE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_123.yml b/src/licensedcode/data/rules/unknown-license-reference_123.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_123.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_124.RULE b/src/licensedcode/data/rules/unknown-license-reference_124.RULE index c09be1051de..e2d5c858387 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_124.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_124.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + This software contains components with separate copyright and license terms. Your use of these components is subject to the terms and conditions of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_124.yml b/src/licensedcode/data/rules/unknown-license-reference_124.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_124.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_125.RULE b/src/licensedcode/data/rules/unknown-license-reference_125.RULE index b89a0b4f330..f8bfc0b8419 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_125.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_125.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + incorporates code modified from \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_125.yml b/src/licensedcode/data/rules/unknown-license-reference_125.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_125.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_126.RULE b/src/licensedcode/data/rules/unknown-license-reference_126.RULE index d525ea6bc77..0869d7344de 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_126.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_126.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Please read the following license agreement carefully \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_126.yml b/src/licensedcode/data/rules/unknown-license-reference_126.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_126.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_127.RULE b/src/licensedcode/data/rules/unknown-license-reference_127.RULE index 098dfeb2ad4..48511d374a8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_127.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_127.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://tldrlegal.com/license/ +--- + https://tldrlegal.com/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_127.yml b/src/licensedcode/data/rules/unknown-license-reference_127.yml deleted file mode 100644 index bebaa20eda6..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_127.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://tldrlegal.com/license/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_128.RULE b/src/licensedcode/data/rules/unknown-license-reference_128.RULE index b60091ebbb6..9a67046f999 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_128.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_128.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://www.tldrlegal.com/license/ +--- + https://www.tldrlegal.com/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_128.yml b/src/licensedcode/data/rules/unknown-license-reference_128.yml deleted file mode 100644 index e4e7108c7a3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_128.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://www.tldrlegal.com/license/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_129.RULE b/src/licensedcode/data/rules/unknown-license-reference_129.RULE index ae5d1e4d842..471a6cb933f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_129.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_129.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://www.licenses.nuget.org/ +--- + https://www.licenses.nuget.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_129.yml b/src/licensedcode/data/rules/unknown-license-reference_129.yml deleted file mode 100644 index 13bd9f35990..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_129.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://www.licenses.nuget.org/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_13.RULE b/src/licensedcode/data/rules/unknown-license-reference_13.RULE index e91d1a3e59b..5abd70e85fc 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_13.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_13.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + license, as given at. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_13.yml b/src/licensedcode/data/rules/unknown-license-reference_13.yml deleted file mode 100644 index 8327bb19858..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - diff --git a/src/licensedcode/data/rules/unknown-license-reference_130.RULE b/src/licensedcode/data/rules/unknown-license-reference_130.RULE index f775bca4e45..5e736b6ab67 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_130.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_130.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://www.licenses.nuget.org/ +--- + http://www.licenses.nuget.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_130.yml b/src/licensedcode/data/rules/unknown-license-reference_130.yml deleted file mode 100644 index 3da11bd1cb3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_130.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://www.licenses.nuget.org/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_131.RULE b/src/licensedcode/data/rules/unknown-license-reference_131.RULE index c0a80361369..f57f228818a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_131.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_131.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 99 +ignorable_urls: + - https://licenses.nuget.org/ +--- + https://licenses.nuget.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_131.yml b/src/licensedcode/data/rules/unknown-license-reference_131.yml deleted file mode 100644 index d2384dcba00..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_131.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 99 -ignorable_urls: - - https://licenses.nuget.org/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_132.RULE b/src/licensedcode/data/rules/unknown-license-reference_132.RULE index 59f88621c4d..47bcb90a2df 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_132.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_132.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 99 +ignorable_urls: + - http://licenses.nuget.org/ +--- + http://licenses.nuget.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_132.yml b/src/licensedcode/data/rules/unknown-license-reference_132.yml deleted file mode 100644 index afa89c49b74..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_132.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 99 -ignorable_urls: - - http://licenses.nuget.org/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_133.RULE b/src/licensedcode/data/rules/unknown-license-reference_133.RULE index aecdd993bd1..c6b9ae9846b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_133.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_133.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://aka.ms/netcoregaeula +--- + https://aka.ms/netcoregaeula \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_133.yml b/src/licensedcode/data/rules/unknown-license-reference_133.yml deleted file mode 100644 index 243847f3b9e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_133.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://aka.ms/netcoregaeula diff --git a/src/licensedcode/data/rules/unknown-license-reference_134.RULE b/src/licensedcode/data/rules/unknown-license-reference_134.RULE index 17577c282f8..714fea3c1f9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_134.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_134.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://aka.ms/devservicesagreement +--- + https://aka.ms/devservicesagreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_134.yml b/src/licensedcode/data/rules/unknown-license-reference_134.yml deleted file mode 100644 index ba71ec7805d..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_134.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://aka.ms/devservicesagreement diff --git a/src/licensedcode/data/rules/unknown-license-reference_135.RULE b/src/licensedcode/data/rules/unknown-license-reference_135.RULE index 3f6ef6b68eb..3dc254aa68b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_135.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_135.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://applitools.com/eula/sdk +--- + https://applitools.com/eula/sdk \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_135.yml b/src/licensedcode/data/rules/unknown-license-reference_135.yml deleted file mode 100644 index ee271a8d7d4..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_135.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://applitools.com/eula/sdk diff --git a/src/licensedcode/data/rules/unknown-license-reference_136.RULE b/src/licensedcode/data/rules/unknown-license-reference_136.RULE index fb063bb2512..4aba40ed601 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_136.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_136.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://company.aspose.com/legal/eula +--- + https://company.aspose.com/legal/eula \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_136.yml b/src/licensedcode/data/rules/unknown-license-reference_136.yml deleted file mode 100644 index ae908104418..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_136.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://company.aspose.com/legal/eula diff --git a/src/licensedcode/data/rules/unknown-license-reference_137.RULE b/src/licensedcode/data/rules/unknown-license-reference_137.RULE index c6545f20cff..1bc0c28204d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_137.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_137.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.componentone.com/SuperPages/DevToolsEULA +--- + https://www.componentone.com/SuperPages/DevToolsEULA \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_137.yml b/src/licensedcode/data/rules/unknown-license-reference_137.yml deleted file mode 100644 index d70bbbfaf11..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_137.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.componentone.com/SuperPages/DevToolsEULA diff --git a/src/licensedcode/data/rules/unknown-license-reference_138.RULE b/src/licensedcode/data/rules/unknown-license-reference_138.RULE index c3d8154a92e..d2b5a8af64b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_138.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_138.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.devexpress.com/ +--- + https://www.devexpress.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_138.yml b/src/licensedcode/data/rules/unknown-license-reference_138.yml deleted file mode 100644 index 3d1d22366c3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_138.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.devexpress.com/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_139.RULE b/src/licensedcode/data/rules/unknown-license-reference_139.RULE index e9bfea1effc..327f0cffca4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_139.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_139.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://js.devexpress.com/ +--- + https://js.devexpress.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_139.yml b/src/licensedcode/data/rules/unknown-license-reference_139.yml deleted file mode 100644 index 2ee295e4afd..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_139.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://js.devexpress.com/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_14.RULE b/src/licensedcode/data/rules/unknown-license-reference_14.RULE index 7fdbd33bafd..2e1ffa54fcf 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_14.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_14.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + For license information see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_14.yml b/src/licensedcode/data/rules/unknown-license-reference_14.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_140.RULE b/src/licensedcode/data/rules/unknown-license-reference_140.RULE index 5385f164642..9c2162fca00 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_140.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_140.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Other files are licensed as indicated in each file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_140.yml b/src/licensedcode/data/rules/unknown-license-reference_140.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_140.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_141.RULE b/src/licensedcode/data/rules/unknown-license-reference_141.RULE index 14d97bcfbfb..3ae5ca7dda6 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_141.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_141.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://dlhsoft.com/LicenseAgreements/ +--- + https://dlhsoft.com/LicenseAgreements/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_141.yml b/src/licensedcode/data/rules/unknown-license-reference_141.yml deleted file mode 100644 index 1a001d83b4c..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_141.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://dlhsoft.com/LicenseAgreements/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_142.RULE b/src/licensedcode/data/rules/unknown-license-reference_142.RULE index 81b075363fa..5a857f1e9bc 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_142.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_142.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.essentialobjects.com/ +--- + https://www.essentialobjects.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_142.yml b/src/licensedcode/data/rules/unknown-license-reference_142.yml deleted file mode 100644 index 22e5ec4e499..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_142.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.essentialobjects.com/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_143.RULE b/src/licensedcode/data/rules/unknown-license-reference_143.RULE index 0b8b9690d69..3a83076c377 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_143.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_143.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=214339 +--- + https://go.microsoft.com/fwlink/?linkid=214339 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_143.yml b/src/licensedcode/data/rules/unknown-license-reference_143.yml deleted file mode 100644 index 309491a9a7b..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_143.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=214339 diff --git a/src/licensedcode/data/rules/unknown-license-reference_144.RULE b/src/licensedcode/data/rules/unknown-license-reference_144.RULE index 1a275b85a79..66d0fd6f5c5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_144.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_144.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=218949 +--- + https://go.microsoft.com/fwlink/?linkid=218949 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_144.yml b/src/licensedcode/data/rules/unknown-license-reference_144.yml deleted file mode 100644 index f0f1381ae43..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_144.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=218949 diff --git a/src/licensedcode/data/rules/unknown-license-reference_145.RULE b/src/licensedcode/data/rules/unknown-license-reference_145.RULE index 139f2a8cf11..74cc9c648e0 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_145.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_145.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=235167 +--- + https://go.microsoft.com/fwlink/?linkid=235167 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_145.yml b/src/licensedcode/data/rules/unknown-license-reference_145.yml deleted file mode 100644 index 78c30fa0a09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_145.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=235167 diff --git a/src/licensedcode/data/rules/unknown-license-reference_146.RULE b/src/licensedcode/data/rules/unknown-license-reference_146.RULE index 7fd8346b121..4c1cfa95d27 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_146.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_146.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=248155 +--- + https://go.microsoft.com/fwlink/?linkid=248155 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_146.yml b/src/licensedcode/data/rules/unknown-license-reference_146.yml deleted file mode 100644 index f4024215c0f..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_146.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=248155 diff --git a/src/licensedcode/data/rules/unknown-license-reference_147.RULE b/src/licensedcode/data/rules/unknown-license-reference_147.RULE index 8fe226eb632..6c72ebde24b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_147.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_147.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=253898 +--- + https://go.microsoft.com/fwlink/?linkid=253898 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_147.yml b/src/licensedcode/data/rules/unknown-license-reference_147.yml deleted file mode 100644 index 4cf665fc6aa..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_147.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=253898 diff --git a/src/licensedcode/data/rules/unknown-license-reference_148.RULE b/src/licensedcode/data/rules/unknown-license-reference_148.RULE index 9b6723052d1..db7f5df9344 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_148.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_148.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=259741 +--- + https://go.microsoft.com/fwlink/?linkid=259741 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_148.yml b/src/licensedcode/data/rules/unknown-license-reference_148.yml deleted file mode 100644 index c47b4a3e527..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_148.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=259741 diff --git a/src/licensedcode/data/rules/unknown-license-reference_149.RULE b/src/licensedcode/data/rules/unknown-license-reference_149.RULE index 25840fd1b0f..d90c0974467 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_149.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_149.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=261796 +--- + https://go.microsoft.com/fwlink/?linkid=261796 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_149.yml b/src/licensedcode/data/rules/unknown-license-reference_149.yml deleted file mode 100644 index 7d004144087..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_149.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=261796 diff --git a/src/licensedcode/data/rules/unknown-license-reference_15.RULE b/src/licensedcode/data/rules/unknown-license-reference_15.RULE index 96688c10be1..9270fae1664 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_15.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_15.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + See LICENSE.TXT file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_15.yml b/src/licensedcode/data/rules/unknown-license-reference_15.yml deleted file mode 100644 index f543dabe99e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/unknown-license-reference_150.RULE b/src/licensedcode/data/rules/unknown-license-reference_150.RULE index 7fc08832059..cc4850a6301 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_150.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_150.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=262998 +--- + https://go.microsoft.com/fwlink/?linkid=262998 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_150.yml b/src/licensedcode/data/rules/unknown-license-reference_150.yml deleted file mode 100644 index e6fccbd715e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_150.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=262998 diff --git a/src/licensedcode/data/rules/unknown-license-reference_151.RULE b/src/licensedcode/data/rules/unknown-license-reference_151.RULE index 0e024b91436..9e326e44abe 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_151.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_151.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=272666 +--- + https://go.microsoft.com/fwlink/?linkid=272666 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_151.yml b/src/licensedcode/data/rules/unknown-license-reference_151.yml deleted file mode 100644 index b6f0c673172..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_151.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=272666 diff --git a/src/licensedcode/data/rules/unknown-license-reference_152.RULE b/src/licensedcode/data/rules/unknown-license-reference_152.RULE index f8f186e6c7d..c3aa01ab2b5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_152.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_152.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=273778 +--- + https://go.microsoft.com/fwlink/?linkid=273778 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_152.yml b/src/licensedcode/data/rules/unknown-license-reference_152.yml deleted file mode 100644 index bd83ffd42c8..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_152.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=273778 diff --git a/src/licensedcode/data/rules/unknown-license-reference_153.RULE b/src/licensedcode/data/rules/unknown-license-reference_153.RULE index 392a4432269..5e6bb5a1538 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_153.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_153.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=281843 +--- + https://go.microsoft.com/fwlink/?linkid=281843 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_153.yml b/src/licensedcode/data/rules/unknown-license-reference_153.yml deleted file mode 100644 index 763e6f67b67..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_153.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=281843 diff --git a/src/licensedcode/data/rules/unknown-license-reference_154.RULE b/src/licensedcode/data/rules/unknown-license-reference_154.RULE index 4b91a62a506..7f4067b3ff4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_154.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_154.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=317295 +--- + https://go.microsoft.com/fwlink/?linkid=317295 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_154.yml b/src/licensedcode/data/rules/unknown-license-reference_154.yml deleted file mode 100644 index f5ee29ad212..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_154.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=317295 diff --git a/src/licensedcode/data/rules/unknown-license-reference_155.RULE b/src/licensedcode/data/rules/unknown-license-reference_155.RULE index 5edb20d957f..2bb2d122ce4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_155.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_155.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=320539 +--- + https://go.microsoft.com/fwlink/?linkid=320539 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_155.yml b/src/licensedcode/data/rules/unknown-license-reference_155.yml deleted file mode 100644 index 206f415fe9e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_155.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=320539 diff --git a/src/licensedcode/data/rules/unknown-license-reference_156.RULE b/src/licensedcode/data/rules/unknown-license-reference_156.RULE index 383a4500c4b..02ae32b6b04 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_156.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_156.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=329770 +--- + https://go.microsoft.com/fwlink/?linkid=329770 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_156.yml b/src/licensedcode/data/rules/unknown-license-reference_156.yml deleted file mode 100644 index efd7c641ce4..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_156.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=329770 diff --git a/src/licensedcode/data/rules/unknown-license-reference_157.RULE b/src/licensedcode/data/rules/unknown-license-reference_157.RULE index aadbcb56ce4..edb27e6f636 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_157.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_157.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=509837 +--- + https://go.microsoft.com/fwlink/?linkid=509837 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_157.yml b/src/licensedcode/data/rules/unknown-license-reference_157.yml deleted file mode 100644 index 46e4a06d70c..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_157.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=509837 diff --git a/src/licensedcode/data/rules/unknown-license-reference_158.RULE b/src/licensedcode/data/rules/unknown-license-reference_158.RULE index e678795a1e4..d0352454d42 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_158.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_158.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=529443 +--- + https://go.microsoft.com/fwlink/?linkid=529443 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_158.yml b/src/licensedcode/data/rules/unknown-license-reference_158.yml deleted file mode 100644 index 45a3f2fbdec..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_158.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=529443 diff --git a/src/licensedcode/data/rules/unknown-license-reference_159.RULE b/src/licensedcode/data/rules/unknown-license-reference_159.RULE index f08d0db6fdc..8b96eb1ac07 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_159.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_159.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=536623 +--- + https://go.microsoft.com/fwlink/?linkid=536623 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_159.yml b/src/licensedcode/data/rules/unknown-license-reference_159.yml deleted file mode 100644 index 251a12e93f3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_159.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=536623 diff --git a/src/licensedcode/data/rules/unknown-license-reference_16.RULE b/src/licensedcode/data/rules/unknown-license-reference_16.RULE index 8b83e55918d..59b7944eeee 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_16.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_16.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See LICENSE file for license information \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_16.yml b/src/licensedcode/data/rules/unknown-license-reference_16.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_160.RULE b/src/licensedcode/data/rules/unknown-license-reference_160.RULE index b004b565a99..ef28a2a45e9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_160.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_160.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=614949 +--- + https://go.microsoft.com/fwlink/?linkid=614949 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_160.yml b/src/licensedcode/data/rules/unknown-license-reference_160.yml deleted file mode 100644 index afadb58cfb5..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_160.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=614949 diff --git a/src/licensedcode/data/rules/unknown-license-reference_161.RULE b/src/licensedcode/data/rules/unknown-license-reference_161.RULE index d9064f08ba6..9913d3d028b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_161.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_161.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=698879 +--- + https://go.microsoft.com/fwlink/?linkid=698879 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_161.yml b/src/licensedcode/data/rules/unknown-license-reference_161.yml deleted file mode 100644 index c2dd6bea814..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_161.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=698879 diff --git a/src/licensedcode/data/rules/unknown-license-reference_162.RULE b/src/licensedcode/data/rules/unknown-license-reference_162.RULE index ce191252183..738766b86e4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_162.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_162.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=746386 +--- + https://go.microsoft.com/fwlink/?linkid=746386 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_162.yml b/src/licensedcode/data/rules/unknown-license-reference_162.yml deleted file mode 100644 index 33c43ec463f..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_162.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=746386 diff --git a/src/licensedcode/data/rules/unknown-license-reference_163.RULE b/src/licensedcode/data/rules/unknown-license-reference_163.RULE index 62767b3f5d5..aa2636a2703 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_163.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_163.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=832965 +--- + https://go.microsoft.com/fwlink/?linkid=832965 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_163.yml b/src/licensedcode/data/rules/unknown-license-reference_163.yml deleted file mode 100644 index ce16e2e51ad..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_163.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=832965 diff --git a/src/licensedcode/data/rules/unknown-license-reference_164.RULE b/src/licensedcode/data/rules/unknown-license-reference_164.RULE index 82a86b968c8..7e788706f23 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_164.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_164.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=838619 +--- + https://go.microsoft.com/fwlink/?linkid=838619 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_164.yml b/src/licensedcode/data/rules/unknown-license-reference_164.yml deleted file mode 100644 index 415ccbdc474..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_164.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=838619 diff --git a/src/licensedcode/data/rules/unknown-license-reference_165.RULE b/src/licensedcode/data/rules/unknown-license-reference_165.RULE index 2ffd2470b7c..b2e9c1eaba1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_165.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_165.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=838620 +--- + https://go.microsoft.com/fwlink/?linkid=838620 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_165.yml b/src/licensedcode/data/rules/unknown-license-reference_165.yml deleted file mode 100644 index df043ab5735..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_165.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=838620 diff --git a/src/licensedcode/data/rules/unknown-license-reference_166.RULE b/src/licensedcode/data/rules/unknown-license-reference_166.RULE index 756fbfb5f72..e0edd7de74c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_166.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_166.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=9809688 +--- + https://go.microsoft.com/fwlink/?linkid=9809688 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_166.yml b/src/licensedcode/data/rules/unknown-license-reference_166.yml deleted file mode 100644 index 0fa4f0ad5ee..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_166.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=9809688 diff --git a/src/licensedcode/data/rules/unknown-license-reference_167.RULE b/src/licensedcode/data/rules/unknown-license-reference_167.RULE index f34ad8b9cf6..e54f3b0ea52 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_167.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_167.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?linkid=9862941 +--- + https://go.microsoft.com/fwlink/?linkid=9862941 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_167.yml b/src/licensedcode/data/rules/unknown-license-reference_167.yml deleted file mode 100644 index 2ff36f9d456..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_167.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?linkid=9862941 diff --git a/src/licensedcode/data/rules/unknown-license-reference_168.RULE b/src/licensedcode/data/rules/unknown-license-reference_168.RULE index 28bb9763570..ff6f9529b07 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_168.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_168.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=214339 +--- + http://go.microsoft.com/fwlink/?linkid=214339 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_168.yml b/src/licensedcode/data/rules/unknown-license-reference_168.yml deleted file mode 100644 index 1564709d9d3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_168.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=214339 diff --git a/src/licensedcode/data/rules/unknown-license-reference_169.RULE b/src/licensedcode/data/rules/unknown-license-reference_169.RULE index ce577186dcf..204ca0f5e9b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_169.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_169.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=218949 +--- + http://go.microsoft.com/fwlink/?linkid=218949 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_169.yml b/src/licensedcode/data/rules/unknown-license-reference_169.yml deleted file mode 100644 index 0a81733334d..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_169.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=218949 diff --git a/src/licensedcode/data/rules/unknown-license-reference_17.RULE b/src/licensedcode/data/rules/unknown-license-reference_17.RULE index 4c414bdf6ba..1b34b310c6b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_17.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_17.RULE @@ -1 +1,9 @@ -This file is part of . See LICENSE file for license information. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +This file is part of . See LICENSE file for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_17.yml b/src/licensedcode/data/rules/unknown-license-reference_17.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_170.RULE b/src/licensedcode/data/rules/unknown-license-reference_170.RULE index 1e4205655a3..4bc0cb97915 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_170.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_170.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Other software included in this distribution is provided under other licenses, as set forth below \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_170.yml b/src/licensedcode/data/rules/unknown-license-reference_170.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_170.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_171.RULE b/src/licensedcode/data/rules/unknown-license-reference_171.RULE index 89ba39df291..94f12c3450a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_171.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_171.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=235167 +--- + http://go.microsoft.com/fwlink/?linkid=235167 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_171.yml b/src/licensedcode/data/rules/unknown-license-reference_171.yml deleted file mode 100644 index 6259335508e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_171.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=235167 diff --git a/src/licensedcode/data/rules/unknown-license-reference_172.RULE b/src/licensedcode/data/rules/unknown-license-reference_172.RULE index eeebc3164c6..a6fd82a82b6 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_172.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_172.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=248155 +--- + http://go.microsoft.com/fwlink/?linkid=248155 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_172.yml b/src/licensedcode/data/rules/unknown-license-reference_172.yml deleted file mode 100644 index 00747c13bd9..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=248155 diff --git a/src/licensedcode/data/rules/unknown-license-reference_173.RULE b/src/licensedcode/data/rules/unknown-license-reference_173.RULE index 70f7e2277c5..9f2495df6f9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_173.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_173.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=253898 +--- + http://go.microsoft.com/fwlink/?linkid=253898 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_173.yml b/src/licensedcode/data/rules/unknown-license-reference_173.yml deleted file mode 100644 index d5631459437..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_173.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=253898 diff --git a/src/licensedcode/data/rules/unknown-license-reference_174.RULE b/src/licensedcode/data/rules/unknown-license-reference_174.RULE index 16206418005..e332ab758e3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_174.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_174.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=259741 +--- + http://go.microsoft.com/fwlink/?linkid=259741 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_174.yml b/src/licensedcode/data/rules/unknown-license-reference_174.yml deleted file mode 100644 index 5310a38b731..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_174.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=259741 diff --git a/src/licensedcode/data/rules/unknown-license-reference_175.RULE b/src/licensedcode/data/rules/unknown-license-reference_175.RULE index 73fa8bc780c..09e466be73e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_175.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_175.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=261796 +--- + http://go.microsoft.com/fwlink/?linkid=261796 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_175.yml b/src/licensedcode/data/rules/unknown-license-reference_175.yml deleted file mode 100644 index c9aa32ce0d0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_175.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=261796 diff --git a/src/licensedcode/data/rules/unknown-license-reference_176.RULE b/src/licensedcode/data/rules/unknown-license-reference_176.RULE index 1e344ef4b6b..84038c788a3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_176.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_176.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=262998 +--- + http://go.microsoft.com/fwlink/?linkid=262998 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_176.yml b/src/licensedcode/data/rules/unknown-license-reference_176.yml deleted file mode 100644 index a978b31f199..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_176.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=262998 diff --git a/src/licensedcode/data/rules/unknown-license-reference_177.RULE b/src/licensedcode/data/rules/unknown-license-reference_177.RULE index c6344c6de37..0a7b94cb527 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_177.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_177.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=272666 +--- + http://go.microsoft.com/fwlink/?linkid=272666 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_177.yml b/src/licensedcode/data/rules/unknown-license-reference_177.yml deleted file mode 100644 index 6def59bdd31..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_177.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=272666 diff --git a/src/licensedcode/data/rules/unknown-license-reference_178.RULE b/src/licensedcode/data/rules/unknown-license-reference_178.RULE index 6e36741dba7..79dbf7ddbb9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_178.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_178.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=273778 +--- + http://go.microsoft.com/fwlink/?linkid=273778 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_178.yml b/src/licensedcode/data/rules/unknown-license-reference_178.yml deleted file mode 100644 index 5ec6215d6c7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_178.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=273778 diff --git a/src/licensedcode/data/rules/unknown-license-reference_179.RULE b/src/licensedcode/data/rules/unknown-license-reference_179.RULE index e0f5096b9d6..a13f9b78d71 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_179.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_179.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=281843 +--- + http://go.microsoft.com/fwlink/?linkid=281843 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_179.yml b/src/licensedcode/data/rules/unknown-license-reference_179.yml deleted file mode 100644 index 70905de06d5..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_179.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=281843 diff --git a/src/licensedcode/data/rules/unknown-license-reference_18.RULE b/src/licensedcode/data/rules/unknown-license-reference_18.RULE index 53610594671..9d7bd85a279 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_18.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_18.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + For license information, see LICENSE.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_18.yml b/src/licensedcode/data/rules/unknown-license-reference_18.yml deleted file mode 100644 index f543dabe99e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/unknown-license-reference_180.RULE b/src/licensedcode/data/rules/unknown-license-reference_180.RULE index b106ee7ff64..b4b3687caea 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_180.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_180.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=317295 +--- + http://go.microsoft.com/fwlink/?linkid=317295 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_180.yml b/src/licensedcode/data/rules/unknown-license-reference_180.yml deleted file mode 100644 index c4a0f5d72ea..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_180.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=317295 diff --git a/src/licensedcode/data/rules/unknown-license-reference_181.RULE b/src/licensedcode/data/rules/unknown-license-reference_181.RULE index 230f93f2fc1..8eb9e93b73e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_181.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_181.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=509837 +--- + http://go.microsoft.com/fwlink/?linkid=509837 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_181.yml b/src/licensedcode/data/rules/unknown-license-reference_181.yml deleted file mode 100644 index 0cf3f8b7666..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_181.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=509837 diff --git a/src/licensedcode/data/rules/unknown-license-reference_182.RULE b/src/licensedcode/data/rules/unknown-license-reference_182.RULE index 4282e5d2e14..b1db7c1d723 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_182.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_182.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=529443 +--- + http://go.microsoft.com/fwlink/?linkid=529443 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_182.yml b/src/licensedcode/data/rules/unknown-license-reference_182.yml deleted file mode 100644 index 333d5c673f6..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_182.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=529443 diff --git a/src/licensedcode/data/rules/unknown-license-reference_183.RULE b/src/licensedcode/data/rules/unknown-license-reference_183.RULE index 822c6cd5f3b..24158d06a80 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_183.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_183.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=536623 +--- + http://go.microsoft.com/fwlink/?linkid=536623 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_183.yml b/src/licensedcode/data/rules/unknown-license-reference_183.yml deleted file mode 100644 index 1bdbb4478a0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_183.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=536623 diff --git a/src/licensedcode/data/rules/unknown-license-reference_184.RULE b/src/licensedcode/data/rules/unknown-license-reference_184.RULE index 8202ddb25d2..b6984b73eaa 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_184.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_184.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=698879 +--- + http://go.microsoft.com/fwlink/?linkid=698879 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_184.yml b/src/licensedcode/data/rules/unknown-license-reference_184.yml deleted file mode 100644 index c1a4e832ea9..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_184.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=698879 diff --git a/src/licensedcode/data/rules/unknown-license-reference_185.RULE b/src/licensedcode/data/rules/unknown-license-reference_185.RULE index ceda459a1a5..de43a50f26b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_185.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_185.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=746386 +--- + http://go.microsoft.com/fwlink/?linkid=746386 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_185.yml b/src/licensedcode/data/rules/unknown-license-reference_185.yml deleted file mode 100644 index 5b8b5fb776e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_185.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=746386 diff --git a/src/licensedcode/data/rules/unknown-license-reference_186.RULE b/src/licensedcode/data/rules/unknown-license-reference_186.RULE index 6df13d213db..c1294b4cfea 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_186.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_186.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=832965 +--- + http://go.microsoft.com/fwlink/?linkid=832965 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_186.yml b/src/licensedcode/data/rules/unknown-license-reference_186.yml deleted file mode 100644 index f0d51a8d164..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_186.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=832965 diff --git a/src/licensedcode/data/rules/unknown-license-reference_187.RULE b/src/licensedcode/data/rules/unknown-license-reference_187.RULE index e0c476f6c7b..c8d7053467d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_187.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_187.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=838619 +--- + http://go.microsoft.com/fwlink/?linkid=838619 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_187.yml b/src/licensedcode/data/rules/unknown-license-reference_187.yml deleted file mode 100644 index 93cc43a6509..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_187.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=838619 diff --git a/src/licensedcode/data/rules/unknown-license-reference_188.RULE b/src/licensedcode/data/rules/unknown-license-reference_188.RULE index 8de1ed68f6d..d035ab27c1d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_188.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_188.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=838620 +--- + http://go.microsoft.com/fwlink/?linkid=838620 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_188.yml b/src/licensedcode/data/rules/unknown-license-reference_188.yml deleted file mode 100644 index 8fc69588c7e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_188.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=838620 diff --git a/src/licensedcode/data/rules/unknown-license-reference_189.RULE b/src/licensedcode/data/rules/unknown-license-reference_189.RULE index c8bb5b5244b..97ea8e0c59a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_189.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_189.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=9809688 +--- + http://go.microsoft.com/fwlink/?linkid=9809688 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_189.yml b/src/licensedcode/data/rules/unknown-license-reference_189.yml deleted file mode 100644 index d997598c095..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_189.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=9809688 diff --git a/src/licensedcode/data/rules/unknown-license-reference_19.RULE b/src/licensedcode/data/rules/unknown-license-reference_19.RULE index 46bd0f7cf1f..9f391246e5e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_19.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_19.RULE @@ -1 +1,9 @@ -Read the file COPYING +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + +Read the file COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_19.yml b/src/licensedcode/data/rules/unknown-license-reference_19.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_190.RULE b/src/licensedcode/data/rules/unknown-license-reference_190.RULE index 1f3b11072e9..1b3ac270eaa 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_190.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_190.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?linkid=9862941 +--- + http://go.microsoft.com/fwlink/?linkid=9862941 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_190.yml b/src/licensedcode/data/rules/unknown-license-reference_190.yml deleted file mode 100644 index fe4db110882..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_190.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?linkid=9862941 diff --git a/src/licensedcode/data/rules/unknown-license-reference_191.RULE b/src/licensedcode/data/rules/unknown-license-reference_191.RULE index 756bdf3ca1a..79c51f0d1b1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_191.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_191.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * Licensed under the terms outlined in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_191.yml b/src/licensedcode/data/rules/unknown-license-reference_191.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_191.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_192.RULE b/src/licensedcode/data/rules/unknown-license-reference_192.RULE index 2c52f04dd1a..f4bfb400d4c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_192.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_192.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://kusto.blob.core.windows.net/kusto-nuget/EULA-agreement.htm +--- + https://kusto.blob.core.windows.net/kusto-nuget/EULA-agreement.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_192.yml b/src/licensedcode/data/rules/unknown-license-reference_192.yml deleted file mode 100644 index 1219eb6e13f..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_192.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://kusto.blob.core.windows.net/kusto-nuget/EULA-agreement.htm diff --git a/src/licensedcode/data/rules/unknown-license-reference_193.RULE b/src/licensedcode/data/rules/unknown-license-reference_193.RULE index f7e5e4978dc..6d07d6a6bfb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_193.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_193.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.microsoft.com/web/webpi/eula/ +--- + https://www.microsoft.com/web/webpi/eula/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_193.yml b/src/licensedcode/data/rules/unknown-license-reference_193.yml deleted file mode 100644 index 36aab6c01b7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_193.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.microsoft.com/web/webpi/eula/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_194.RULE b/src/licensedcode/data/rules/unknown-license-reference_194.RULE index 45688725753..a5eb4a26a5d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_194.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_194.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://microsoft.com/web/webpi/eula/ +--- + https://microsoft.com/web/webpi/eula/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_194.yml b/src/licensedcode/data/rules/unknown-license-reference_194.yml deleted file mode 100644 index 21269fa6413..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_194.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://microsoft.com/web/webpi/eula/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_195.RULE b/src/licensedcode/data/rules/unknown-license-reference_195.RULE index bb413915798..c7458ef1880 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_195.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_195.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://pdfium.patagames.com/faq/eula +--- + https://pdfium.patagames.com/faq/eula \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_195.yml b/src/licensedcode/data/rules/unknown-license-reference_195.yml deleted file mode 100644 index 8089e99e59e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_195.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://pdfium.patagames.com/faq/eula diff --git a/src/licensedcode/data/rules/unknown-license-reference_196.RULE b/src/licensedcode/data/rules/unknown-license-reference_196.RULE index ba4d492221b..15fd603d403 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_196.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_196.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://specflow.org/plus/eula/ +--- + https://specflow.org/plus/eula/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_196.yml b/src/licensedcode/data/rules/unknown-license-reference_196.yml deleted file mode 100644 index 1f8506ab108..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_196.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://specflow.org/plus/eula/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_197.RULE b/src/licensedcode/data/rules/unknown-license-reference_197.RULE index 169b476d4f5..d31217fb16c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_197.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_197.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.streamcoders.com/products/msneteula.html +--- + https://www.streamcoders.com/products/msneteula.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_197.yml b/src/licensedcode/data/rules/unknown-license-reference_197.yml deleted file mode 100644 index 2fd3ae0fee4..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_197.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.streamcoders.com/products/msneteula.html diff --git a/src/licensedcode/data/rules/unknown-license-reference_198.RULE b/src/licensedcode/data/rules/unknown-license-reference_198.RULE index 599cdd03e8f..a2de01e4d36 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_198.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_198.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://streamcoders.com/products/msneteula.html +--- + https://streamcoders.com/products/msneteula.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_198.yml b/src/licensedcode/data/rules/unknown-license-reference_198.yml deleted file mode 100644 index 1cfb0efd0c6..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_198.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://streamcoders.com/products/msneteula.html diff --git a/src/licensedcode/data/rules/unknown-license-reference_199.RULE b/src/licensedcode/data/rules/unknown-license-reference_199.RULE index 3c277486939..807bcf119ce 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_199.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_199.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://workflowenginenet.com/EULA +--- + https://workflowenginenet.com/EULA \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_199.yml b/src/licensedcode/data/rules/unknown-license-reference_199.yml deleted file mode 100644 index e036ffc2bc5..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_199.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://workflowenginenet.com/EULA diff --git a/src/licensedcode/data/rules/unknown-license-reference_2.RULE b/src/licensedcode/data/rules/unknown-license-reference_2.RULE index 992716e973e..85c9a2750ee 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_2.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_2.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licenced as described in the file LICENSE under the root directory of this GIT repository \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_2.yml b/src/licensedcode/data/rules/unknown-license-reference_2.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_20.RULE b/src/licensedcode/data/rules/unknown-license-reference_20.RULE index cdbf2dd0969..299ddde84e9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_20.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_20.RULE @@ -1 +1,9 @@ - For licencing details, see COPYING. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + + For licencing details, see COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_20.yml b/src/licensedcode/data/rules/unknown-license-reference_20.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_200.RULE b/src/licensedcode/data/rules/unknown-license-reference_200.RULE index 7987c593fea..e9ad224c421 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_200.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_200.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://kusto.blob.core.windows.net/kusto-nuget/EULA-agreement.htm +--- + http://kusto.blob.core.windows.net/kusto-nuget/EULA-agreement.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_200.yml b/src/licensedcode/data/rules/unknown-license-reference_200.yml deleted file mode 100644 index 94ea922c1da..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_200.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://kusto.blob.core.windows.net/kusto-nuget/EULA-agreement.htm diff --git a/src/licensedcode/data/rules/unknown-license-reference_201.RULE b/src/licensedcode/data/rules/unknown-license-reference_201.RULE index cfa4d540ea8..3abe977b180 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_201.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_201.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/ +--- + http://www.microsoft.com/web/webpi/eula/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_201.yml b/src/licensedcode/data/rules/unknown-license-reference_201.yml deleted file mode 100644 index c94ad6627ad..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_201.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_202.RULE b/src/licensedcode/data/rules/unknown-license-reference_202.RULE index da8e5edc466..1254fd49e02 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_202.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_202.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://microsoft.com/web/webpi/eula/ +--- + http://microsoft.com/web/webpi/eula/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_202.yml b/src/licensedcode/data/rules/unknown-license-reference_202.yml deleted file mode 100644 index b9af24099f7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://microsoft.com/web/webpi/eula/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_203.RULE b/src/licensedcode/data/rules/unknown-license-reference_203.RULE index 8f9956a1016..62927449a75 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_203.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_203.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://pdfium.patagames.com/faq/eula +--- + http://pdfium.patagames.com/faq/eula \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_203.yml b/src/licensedcode/data/rules/unknown-license-reference_203.yml deleted file mode 100644 index 815eb1759ec..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_203.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://pdfium.patagames.com/faq/eula diff --git a/src/licensedcode/data/rules/unknown-license-reference_204.RULE b/src/licensedcode/data/rules/unknown-license-reference_204.RULE index 49070f97641..94f2b145584 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_204.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_204.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://specflow.org/plus/eula/ +--- + http://specflow.org/plus/eula/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_204.yml b/src/licensedcode/data/rules/unknown-license-reference_204.yml deleted file mode 100644 index f797b27ed55..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_204.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://specflow.org/plus/eula/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_205.RULE b/src/licensedcode/data/rules/unknown-license-reference_205.RULE index 0be66f53078..5ced90f8b7c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_205.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_205.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.streamcoders.com/products/msneteula.html +--- + http://www.streamcoders.com/products/msneteula.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_205.yml b/src/licensedcode/data/rules/unknown-license-reference_205.yml deleted file mode 100644 index edc41b93b55..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_205.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.streamcoders.com/products/msneteula.html diff --git a/src/licensedcode/data/rules/unknown-license-reference_206.RULE b/src/licensedcode/data/rules/unknown-license-reference_206.RULE index 232466bb9e2..998e71d7964 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_206.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_206.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://streamcoders.com/products/msneteula.html +--- + http://streamcoders.com/products/msneteula.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_206.yml b/src/licensedcode/data/rules/unknown-license-reference_206.yml deleted file mode 100644 index 908617416dc..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_206.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://streamcoders.com/products/msneteula.html diff --git a/src/licensedcode/data/rules/unknown-license-reference_207.RULE b/src/licensedcode/data/rules/unknown-license-reference_207.RULE index 1e68d17cac6..80f2d334ec8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_207.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_207.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://workflowenginenet.com/EULA +--- + http://workflowenginenet.com/EULA \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_207.yml b/src/licensedcode/data/rules/unknown-license-reference_207.yml deleted file mode 100644 index 86d1f04ac12..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_207.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://workflowenginenet.com/EULA diff --git a/src/licensedcode/data/rules/unknown-license-reference_208.RULE b/src/licensedcode/data/rules/unknown-license-reference_208.RULE index 5fb3d3833be..52585e2211c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_208.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_208.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + source code is subject to the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_208.yml b/src/licensedcode/data/rules/unknown-license-reference_208.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_208.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_209.RULE b/src/licensedcode/data/rules/unknown-license-reference_209.RULE index 11dd9ab3600..adc708c86b9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_209.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_209.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + implementation has the following copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_209.yml b/src/licensedcode/data/rules/unknown-license-reference_209.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_209.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_21.RULE b/src/licensedcode/data/rules/unknown-license-reference_21.RULE index d9447c1dcec..1e55b04974b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_21.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_21.RULE @@ -1 +1,7 @@ -See copyright notice in +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + +See copyright notice in \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_21.yml b/src/licensedcode/data/rules/unknown-license-reference_21.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_210.RULE b/src/licensedcode/data/rules/unknown-license-reference_210.RULE index 26d42da5000..1b4793ff8b9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_210.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_210.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + See LICENSE.TXT for full license text \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_210.yml b/src/licensedcode/data/rules/unknown-license-reference_210.yml deleted file mode 100644 index f543dabe99e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_210.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/unknown-license-reference_211.RULE b/src/licensedcode/data/rules/unknown-license-reference_211.RULE index 407b26307e0..03ff5120a2b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_211.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_211.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + subject to the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_211.yml b/src/licensedcode/data/rules/unknown-license-reference_211.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_211.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_212.RULE b/src/licensedcode/data/rules/unknown-license-reference_212.RULE index d3965a82faa..bce95cc2d77 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_212.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_212.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + code has the following license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_212.yml b/src/licensedcode/data/rules/unknown-license-reference_212.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_212.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_213.RULE b/src/licensedcode/data/rules/unknown-license-reference_213.RULE index efadfda7d2a..5052d755a08 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_213.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_213.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Portions contributed are subject to the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_213.yml b/src/licensedcode/data/rules/unknown-license-reference_213.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_213.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_214.RULE b/src/licensedcode/data/rules/unknown-license-reference_214.RULE index fb45b3f99d2..0b4f6f8c2b1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_214.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_214.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Portions funded are subject to the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_214.yml b/src/licensedcode/data/rules/unknown-license-reference_214.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_214.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_215.RULE b/src/licensedcode/data/rules/unknown-license-reference_215.RULE index 5f83a44d8e3..7dd40c48825 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_215.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_215.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Portions are subject to the following license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_215.yml b/src/licensedcode/data/rules/unknown-license-reference_215.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_215.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_216.RULE b/src/licensedcode/data/rules/unknown-license-reference_216.RULE index 7947206bf00..79653287ba6 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_216.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_216.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + includes documentation and software developed at the University of California at Berkeley, which includes this copyright notice: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_216.yml b/src/licensedcode/data/rules/unknown-license-reference_216.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_216.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_217.RULE b/src/licensedcode/data/rules/unknown-license-reference_217.RULE index 61152e2eee1..ca843b0d78d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_217.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_217.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + may be covered under a different copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_217.yml b/src/licensedcode/data/rules/unknown-license-reference_217.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_217.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_218.RULE b/src/licensedcode/data/rules/unknown-license-reference_218.RULE index 913bdecab39..e6b13af37c3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_218.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_218.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Licence +--- + License Please see Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_218.yml b/src/licensedcode/data/rules/unknown-license-reference_218.yml deleted file mode 100644 index ebd8dda3dfd..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_218.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Licence diff --git a/src/licensedcode/data/rules/unknown-license-reference_219.RULE b/src/licensedcode/data/rules/unknown-license-reference_219.RULE index acdb6656b51..b9f1294708f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_219.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_219.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + LICENSE: See LICENSE file for further information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_219.yml b/src/licensedcode/data/rules/unknown-license-reference_219.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_219.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_22.RULE b/src/licensedcode/data/rules/unknown-license-reference_22.RULE index b383a9b5e07..3a7a4ab7588 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_22.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_22.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENCE.TXT +--- + For licence information, see LICENCE.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_22.yml b/src/licensedcode/data/rules/unknown-license-reference_22.yml deleted file mode 100644 index fc62a738455..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENCE.TXT diff --git a/src/licensedcode/data/rules/unknown-license-reference_220.RULE b/src/licensedcode/data/rules/unknown-license-reference_220.RULE index b18bce955f5..9f591df5bc2 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_220.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_220.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See LICENSE file for further information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_220.yml b/src/licensedcode/data/rules/unknown-license-reference_220.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_221.RULE b/src/licensedcode/data/rules/unknown-license-reference_221.RULE index e54853fcd30..0cb322c6167 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_221.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_221.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + # See COPYING file distributed along with the package for the # copyright and license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_221.yml b/src/licensedcode/data/rules/unknown-license-reference_221.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_221.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_222.RULE b/src/licensedcode/data/rules/unknown-license-reference_222.RULE index 4b6b03cd67b..b71aecf4a50 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_222.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_222.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + All files in this repository are licensed as follows. If you contribute to this repository, it is assumed that you license your contribution under the same license unless you state otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_222.yml b/src/licensedcode/data/rules/unknown-license-reference_222.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_222.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_223.RULE b/src/licensedcode/data/rules/unknown-license-reference_223.RULE index 7cfd40cbfa0..848c79d1238 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_223.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_223.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + licensing of dependencies that are NOT Apache Licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_223.yml b/src/licensedcode/data/rules/unknown-license-reference_223.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_223.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_224.RULE b/src/licensedcode/data/rules/unknown-license-reference_224.RULE index 6128ddec20c..29c10107894 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_224.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_224.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + components may licensed under different licenses. To find the details that apply to this artifact see the accompanying LICENSE file. For more information, including possible other licensing options \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_224.yml b/src/licensedcode/data/rules/unknown-license-reference_224.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_224.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_225.RULE b/src/licensedcode/data/rules/unknown-license-reference_225.RULE index 6db24e880ed..8f6080fb9f3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_225.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_225.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE_1_0.txt +--- + LICENSE_1_0.txt - License file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_225.yml b/src/licensedcode/data/rules/unknown-license-reference_225.yml deleted file mode 100644 index d3fc513b435..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_225.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE_1_0.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_226.RULE b/src/licensedcode/data/rules/unknown-license-reference_226.RULE index caa0d821230..35afda2b3c7 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_226.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_226.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + * This header file is not encumbered * by AutoOpts licensing, but is provided under the licensing terms chosen * by the author or copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_226.yml b/src/licensedcode/data/rules/unknown-license-reference_226.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_226.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_227.RULE b/src/licensedcode/data/rules/unknown-license-reference_227.RULE index 1cc74ee8609..4c171d742ae 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_227.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_227.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +minimum_coverage: 90 +--- + includes a number of components with separate copyright notices and license terms. Your use of these components is subject to the terms and conditions of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_227.yml b/src/licensedcode/data/rules/unknown-license-reference_227.yml deleted file mode 100644 index 6ea26ee5065..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_227.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/unknown-license-reference_228.RULE b/src/licensedcode/data/rules/unknown-license-reference_228.RULE index 64bbd74ef84..4cf03c20aba 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_228.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_228.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - readme.txt +--- + For conditions of distribution and use, see copyright notice in readme.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_228.yml b/src/licensedcode/data/rules/unknown-license-reference_228.yml deleted file mode 100644 index b07637a2593..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_228.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - readme.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_229.RULE b/src/licensedcode/data/rules/unknown-license-reference_229.RULE index 805f776da13..5ef382195af 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_229.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_229.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Your use of these subcomponents is subject to the terms and conditions of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_229.yml b/src/licensedcode/data/rules/unknown-license-reference_229.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_229.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_23.RULE b/src/licensedcode/data/rules/unknown-license-reference_23.RULE index a9d4f4319b7..7b2859221a0 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_23.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_23.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENCE.TXT +--- + See LICENCE.TXT file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_23.yml b/src/licensedcode/data/rules/unknown-license-reference_23.yml deleted file mode 100644 index fc62a738455..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENCE.TXT diff --git a/src/licensedcode/data/rules/unknown-license-reference_230.RULE b/src/licensedcode/data/rules/unknown-license-reference_230.RULE index bc211ab1dbd..f73faa33add 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_230.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_230.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + includes a number of subcomponents with separate copyright notices and license terms. Your use of the source code for the these subcomponents is subject to the terms and conditions of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_230.yml b/src/licensedcode/data/rules/unknown-license-reference_230.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_230.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_231.RULE b/src/licensedcode/data/rules/unknown-license-reference_231.RULE index d3e046a24b1..b2666ed531d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_231.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_231.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + includes subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the following licenses: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_231.yml b/src/licensedcode/data/rules/unknown-license-reference_231.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_231.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_232.RULE b/src/licensedcode/data/rules/unknown-license-reference_232.RULE index 7ad33f9ba8d..8a3b56f0658 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_232.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_232.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + ## License Have a look at the [license file](./LICENSE) for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_232.yml b/src/licensedcode/data/rules/unknown-license-reference_232.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_232.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_233.RULE b/src/licensedcode/data/rules/unknown-license-reference_233.RULE index bba21fa7041..3650838a5ef 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_233.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_233.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - copying.md +--- + See copying.md for legal info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_233.yml b/src/licensedcode/data/rules/unknown-license-reference_233.yml deleted file mode 100644 index fcdb1c29d78..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_233.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - copying.md diff --git a/src/licensedcode/data/rules/unknown-license-reference_234.RULE b/src/licensedcode/data/rules/unknown-license-reference_234.RULE index 59f2b82ffbc..73929d48e80 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_234.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_234.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - copying.md +--- + See copying.md for further legal info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_234.yml b/src/licensedcode/data/rules/unknown-license-reference_234.yml deleted file mode 100644 index fcdb1c29d78..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_234.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - copying.md diff --git a/src/licensedcode/data/rules/unknown-license-reference_235.RULE b/src/licensedcode/data/rules/unknown-license-reference_235.RULE index 3a1edea0760..c4452443c38 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_235.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_235.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + under other licensing terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_235.yml b/src/licensedcode/data/rules/unknown-license-reference_235.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_235.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_236.RULE b/src/licensedcode/data/rules/unknown-license-reference_236.RULE index 71345440e18..51741c8bfb3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_236.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_236.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - doc/LICENSE.txt +--- + doc/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_236.yml b/src/licensedcode/data/rules/unknown-license-reference_236.yml deleted file mode 100644 index 89759b7fe6b..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_236.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - doc/LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_237.RULE b/src/licensedcode/data/rules/unknown-license-reference_237.RULE index fb4cf41a9a9..b6a0e78a3db 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_237.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_237.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - ee/LICENSE +--- + licensed under the license defined in "ee/LICENSE". \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_237.yml b/src/licensedcode/data/rules/unknown-license-reference_237.yml deleted file mode 100644 index e98e84ec419..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_237.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - ee/LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_238.RULE b/src/licensedcode/data/rules/unknown-license-reference_238.RULE index 03b2fc3c17c..7b375aefe59 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_238.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_238.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + 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/unknown-license-reference_238.yml b/src/licensedcode/data/rules/unknown-license-reference_238.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_238.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_239.RULE b/src/licensedcode/data/rules/unknown-license-reference_239.RULE index ebd148dae18..de9f754e666 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_239.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_239.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + Licensed on their respective license terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_239.yml b/src/licensedcode/data/rules/unknown-license-reference_239.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_239.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_24.RULE b/src/licensedcode/data/rules/unknown-license-reference_24.RULE index 1752172769a..e3f19a9efe4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_24.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_24.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + See the LICENSE.txt file for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_24.yml b/src/licensedcode/data/rules/unknown-license-reference_24.yml deleted file mode 100644 index c8343ceee83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_240.RULE b/src/licensedcode/data/rules/unknown-license-reference_240.RULE index d0849255f8a..c9e781bebd7 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_240.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_240.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + Used with permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_240.yml b/src/licensedcode/data/rules/unknown-license-reference_240.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_240.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_241.RULE b/src/licensedcode/data/rules/unknown-license-reference_241.RULE index 5e58c47bf60..5081213f262 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_241.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_241.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Non-LGPL-licensed parts \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_241.yml b/src/licensedcode/data/rules/unknown-license-reference_241.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_241.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_242.RULE b/src/licensedcode/data/rules/unknown-license-reference_242.RULE index d44208cb60f..1db43b953ee 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_242.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_242.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Non-GPL-licensed parts \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_242.yml b/src/licensedcode/data/rules/unknown-license-reference_242.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_242.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_243.RULE b/src/licensedcode/data/rules/unknown-license-reference_243.RULE index 37755dbe99f..0ae2c7a470f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_243.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_243.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + The third-party content is distributed under the license provided by those parties. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_243.yml b/src/licensedcode/data/rules/unknown-license-reference_243.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_243.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_244.RULE b/src/licensedcode/data/rules/unknown-license-reference_244.RULE index e895b26126f..c90067fb890 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_244.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_244.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + released under the terms of \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_244.yml b/src/licensedcode/data/rules/unknown-license-reference_244.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_244.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_245.RULE b/src/licensedcode/data/rules/unknown-license-reference_245.RULE index 3e81bf8415a..a0f70af6427 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_245.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_245.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + this product is used under license from \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_245.yml b/src/licensedcode/data/rules/unknown-license-reference_245.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_245.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_246.RULE b/src/licensedcode/data/rules/unknown-license-reference_246.RULE index cdad8be5b70..b2c4c5c26fb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_246.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_246.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + this product is used under license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_246.yml b/src/licensedcode/data/rules/unknown-license-reference_246.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_246.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_247.RULE b/src/licensedcode/data/rules/unknown-license-reference_247.RULE index bdd02e349e0..dbf5327c54f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_247.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_247.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + software in this product is used under license from \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_247.yml b/src/licensedcode/data/rules/unknown-license-reference_247.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_247.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_248.RULE b/src/licensedcode/data/rules/unknown-license-reference_248.RULE index fef60ab7324..bcbb1324038 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_248.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_248.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + software in this product is used under license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_248.yml b/src/licensedcode/data/rules/unknown-license-reference_248.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_248.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_249.RULE b/src/licensedcode/data/rules/unknown-license-reference_249.RULE index 6ce4a9677fd..5dd7c2273d0 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_249.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_249.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + authorized for commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_249.yml b/src/licensedcode/data/rules/unknown-license-reference_249.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_249.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_25.RULE b/src/licensedcode/data/rules/unknown-license-reference_25.RULE index 03a7269f2f1..5768825ddf4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_25.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_25.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_tag: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license": "SEE LICENSE IN LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_25.yml b/src/licensedcode/data/rules/unknown-license-reference_25.yml deleted file mode 100644 index d6011fa468c..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_tag: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_250.RULE b/src/licensedcode/data/rules/unknown-license-reference_250.RULE index 034d30c187c..8e92f20a293 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_250.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_250.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + All redistribution is subject to the License; source code must include this Notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_250.yml b/src/licensedcode/data/rules/unknown-license-reference_250.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_250.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_251.RULE b/src/licensedcode/data/rules/unknown-license-reference_251.RULE index 8ea72c81e6c..714bbe410c9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_251.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_251.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + For license instructions, see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_251.yml b/src/licensedcode/data/rules/unknown-license-reference_251.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_251.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_252.RULE b/src/licensedcode/data/rules/unknown-license-reference_252.RULE index 6d5fa2862bf..396e935643a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_252.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_252.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - PUBLIC +--- + This software comes with NO WARRANTY: see the file PUBLIC for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_252.yml b/src/licensedcode/data/rules/unknown-license-reference_252.yml deleted file mode 100644 index cdbe17a265d..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_252.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - PUBLIC diff --git a/src/licensedcode/data/rules/unknown-license-reference_253.RULE b/src/licensedcode/data/rules/unknown-license-reference_253.RULE index 707b2f490f6..d90b9ca9f8e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_253.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_253.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.md +--- + [Open Source](LICENSE.md) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_253.yml b/src/licensedcode/data/rules/unknown-license-reference_253.yml deleted file mode 100644 index 32a2c065aae..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_253.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.md diff --git a/src/licensedcode/data/rules/unknown-license-reference_254.RULE b/src/licensedcode/data/rules/unknown-license-reference_254.RULE index 8607d0e7667..52fd50fcff8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_254.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_254.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - NOTICE +--- + Please consult the NOTICE file for licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_254.yml b/src/licensedcode/data/rules/unknown-license-reference_254.yml deleted file mode 100644 index d33098a2037..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_254.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - NOTICE diff --git a/src/licensedcode/data/rules/unknown-license-reference_255.RULE b/src/licensedcode/data/rules/unknown-license-reference_255.RULE index eb697d73b4b..944a31fc39e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_255.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_255.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + distributed under other compatible licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_255.yml b/src/licensedcode/data/rules/unknown-license-reference_255.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_255.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_256.RULE b/src/licensedcode/data/rules/unknown-license-reference_256.RULE index c07a3d99225..89abcd4d1fb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_256.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_256.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + You must agree to this license before installing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_256.yml b/src/licensedcode/data/rules/unknown-license-reference_256.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_256.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_257.RULE b/src/licensedcode/data/rules/unknown-license-reference_257.RULE index 450fb371625..ca7b8dd7fef 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_257.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_257.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Other Dependencies and Licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_257.yml b/src/licensedcode/data/rules/unknown-license-reference_257.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_257.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_258.RULE b/src/licensedcode/data/rules/unknown-license-reference_258.RULE index d9c6f89da88..4cc76e36d12 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_258.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_258.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Distributions of NIST software should also include copyright and licensing statements of any third-party software that are legally bundled with the code in compliance with the conditions of those licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_258.yml b/src/licensedcode/data/rules/unknown-license-reference_258.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_258.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_259.RULE b/src/licensedcode/data/rules/unknown-license-reference_259.RULE index 88ed7791cc3..d33e076c014 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_259.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_259.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + LICENSE This package use the same LICENSE as the original C implementation of the library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_259.yml b/src/licensedcode/data/rules/unknown-license-reference_259.yml deleted file mode 100644 index fc3d42b20a1..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_259.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_26.RULE b/src/licensedcode/data/rules/unknown-license-reference_26.RULE index 774cc8111e1..2a26ae3ece8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_26.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_26.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license": "SEE LICENSE IN REPO ROOT \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_26.yml b/src/licensedcode/data/rules/unknown-license-reference_26.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_260.RULE b/src/licensedcode/data/rules/unknown-license-reference_260.RULE index eb2e719bea6..4d4c68fbbef 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_260.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_260.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +--- + // example: EULA \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_260.yml b/src/licensedcode/data/rules/unknown-license-reference_260.yml deleted file mode 100644 index af7a706fc6a..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_260.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/unknown-license-reference_261.RULE b/src/licensedcode/data/rules/unknown-license-reference_261.RULE index 46d565cd5a7..87e43f5bcef 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_261.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_261.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +--- + // example: End User License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_261.yml b/src/licensedcode/data/rules/unknown-license-reference_261.yml deleted file mode 100644 index af7a706fc6a..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_261.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/unknown-license-reference_262.RULE b/src/licensedcode/data/rules/unknown-license-reference_262.RULE index 2191b874c07..4bca250d261 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_262.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_262.RULE @@ -1,2 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + * This software may be modified and distributed under the terms * of the included license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_262.yml b/src/licensedcode/data/rules/unknown-license-reference_262.yml deleted file mode 100644 index 89539ed1009..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_262.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_263.RULE b/src/licensedcode/data/rules/unknown-license-reference_263.RULE index fa14a84c291..ddd7c2b7199 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_263.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_263.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + covered by the terms of their respective licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_263.yml b/src/licensedcode/data/rules/unknown-license-reference_263.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_263.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_264.RULE b/src/licensedcode/data/rules/unknown-license-reference_264.RULE index d57094239c9..f2cbecb10ae 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_264.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_264.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 80 +--- + This software is probably not suitable for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_264.yml b/src/licensedcode/data/rules/unknown-license-reference_264.yml deleted file mode 100644 index 126286becbf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_264.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_265.RULE b/src/licensedcode/data/rules/unknown-license-reference_265.RULE index 86f21b56280..4aa3d83e19a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_265.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_265.RULE @@ -1,3 +1,12 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +notes: See in https://github.com/PixarAnimationStudios/OpenTimelineIO +--- + License is open source software. Please see the LICENSE.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_265.yml b/src/licensedcode/data/rules/unknown-license-reference_265.yml deleted file mode 100644 index 3a03d2e7a5f..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_265.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -notes: See in https://github.com/PixarAnimationStudios/OpenTimelineIO diff --git a/src/licensedcode/data/rules/unknown-license-reference_266.RULE b/src/licensedcode/data/rules/unknown-license-reference_266.RULE index dd4357eb297..a3c4bf2a0cc 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_266.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_266.RULE @@ -1 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - NOTICE + - LICENSE +--- + Please refer to the NOTICE and LICENSE files included this work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_266.yml b/src/licensedcode/data/rules/unknown-license-reference_266.yml deleted file mode 100644 index b39ccd344d3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_266.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - NOTICE - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_267.RULE b/src/licensedcode/data/rules/unknown-license-reference_267.RULE index 8875556d312..d672288e53a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_267.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_267.RULE @@ -1,2 +1,12 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - README +notes: often seen with the bzip2-libbzip-2010 license +--- + Please read the WARNING, DISCLAIMER and PATENTS sections in the README file. This program is released under the terms of the license contained in the file LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_267.yml b/src/licensedcode/data/rules/unknown-license-reference_267.yml deleted file mode 100644 index a8d11d9a997..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_267.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - README -notes: often seen with the bzip2-libbzip-2010 license diff --git a/src/licensedcode/data/rules/unknown-license-reference_268.RULE b/src/licensedcode/data/rules/unknown-license-reference_268.RULE index cc53b6091fa..e754d13a230 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_268.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_268.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + licensed under the licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_268.yml b/src/licensedcode/data/rules/unknown-license-reference_268.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_268.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_269.RULE b/src/licensedcode/data/rules/unknown-license-reference_269.RULE index 44ab509a774..a26998c6a52 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_269.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_269.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_tag: yes +relevance: 100 +--- + license = "see context related readme files" \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_269.yml b/src/licensedcode/data/rules/unknown-license-reference_269.yml deleted file mode 100644 index fab8a67ddca..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_269.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_27.RULE b/src/licensedcode/data/rules/unknown-license-reference_27.RULE index 82b25f30abd..398b5f0751a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_27.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_27.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + nLicensed under the terms of the LICENSE file distributed with this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_27.yml b/src/licensedcode/data/rules/unknown-license-reference_27.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_270.RULE b/src/licensedcode/data/rules/unknown-license-reference_270.RULE index 4d522f4f1ba..d3c9c416e79 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_270.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_270.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + This program is free software: you can redistribute it and/or modify it under the terms of the included License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_270.yml b/src/licensedcode/data/rules/unknown-license-reference_270.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_270.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_271.RULE b/src/licensedcode/data/rules/unknown-license-reference_271.RULE index 399046c8b86..637378ac258 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_271.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_271.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + not licensed under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_271.yml b/src/licensedcode/data/rules/unknown-license-reference_271.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_271.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_272.RULE b/src/licensedcode/data/rules/unknown-license-reference_272.RULE index d96231176b9..6d16094914a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_272.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_272.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Hence No Attribution is required. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_272.yml b/src/licensedcode/data/rules/unknown-license-reference_272.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_272.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_273.RULE b/src/licensedcode/data/rules/unknown-license-reference_273.RULE index c26ff76a9cb..a60fe37e90c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_273.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_273.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + not licenced under GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_273.yml b/src/licensedcode/data/rules/unknown-license-reference_273.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_273.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_274.RULE b/src/licensedcode/data/rules/unknown-license-reference_274.RULE index 530dbb78136..34c95fbb218 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_274.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_274.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + is not in public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_274.yml b/src/licensedcode/data/rules/unknown-license-reference_274.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_274.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_275.RULE b/src/licensedcode/data/rules/unknown-license-reference_275.RULE index 48e235dc4a2..db8ae4e72e4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_275.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_275.RULE @@ -1,3 +1,13 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +notes: Seen in http://www.rowleydownload.co.uk/arm/packages/targets/EA_LPC3250_OEM/EA_LPC3250_OEM.c + and https://github.com/blalor/FreeRTOS/blob/master/Demo/CORTEX_LPC1768_GCC_Rowley/LPC1700_Startup.s + and https://cryptography.gmu.edu:4443/XBX/FreeRTOS/blob/712573f0336512b107329be544c899059d3d2de2/Demo/CORTEX_LM3Sxxxx_Rowley/thumb_crt0.s + What this license is is unknown. +--- + // This file may be distributed under the terms of the License Agreement // provided with this software. // diff --git a/src/licensedcode/data/rules/unknown-license-reference_275.yml b/src/licensedcode/data/rules/unknown-license-reference_275.yml deleted file mode 100644 index 49811a35cd4..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_275.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -notes: Seen in http://www.rowleydownload.co.uk/arm/packages/targets/EA_LPC3250_OEM/EA_LPC3250_OEM.c - and https://github.com/blalor/FreeRTOS/blob/master/Demo/CORTEX_LPC1768_GCC_Rowley/LPC1700_Startup.s - and https://cryptography.gmu.edu:4443/XBX/FreeRTOS/blob/712573f0336512b107329be544c899059d3d2de2/Demo/CORTEX_LM3Sxxxx_Rowley/thumb_crt0.s - What this license is is unknown. diff --git a/src/licensedcode/data/rules/unknown-license-reference_276.RULE b/src/licensedcode/data/rules/unknown-license-reference_276.RULE index 590d9cd08e3..37927684a78 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_276.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_276.RULE @@ -1 +1,12 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - VFS.h +notes: seen in https://github.com/meh2481/HeartlightPlusPlus/blob/b7e3c081012ef29522bd347701b3b611886bef6c/include/VFS.h + MIT-licensed but the file name is too common. +--- + For conditions of distribution and use, see copyright notice in VFS.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_276.yml b/src/licensedcode/data/rules/unknown-license-reference_276.yml deleted file mode 100644 index 785fa6c89f0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_276.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - VFS.h -notes: seen in https://github.com/meh2481/HeartlightPlusPlus/blob/b7e3c081012ef29522bd347701b3b611886bef6c/include/VFS.h - MIT-licensed but the file name is too common. diff --git a/src/licensedcode/data/rules/unknown-license-reference_277.RULE b/src/licensedcode/data/rules/unknown-license-reference_277.RULE index 02e45168130..9fa01b88daf 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_277.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_277.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Config.hpp +--- + For conditions of distribution and use, see copyright notice in Config.hpp \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_277.yml b/src/licensedcode/data/rules/unknown-license-reference_277.yml deleted file mode 100644 index f052fdfced3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_277.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Config.hpp diff --git a/src/licensedcode/data/rules/unknown-license-reference_278.RULE b/src/licensedcode/data/rules/unknown-license-reference_278.RULE index 88d157f4bb2..622ade13533 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_278.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_278.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + For conditions of distribution and use, see copyright notice in LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_278.yml b/src/licensedcode/data/rules/unknown-license-reference_278.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_278.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_279.RULE b/src/licensedcode/data/rules/unknown-license-reference_279.RULE index 44bd58b20eb..df2e6867bc5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_279.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_279.RULE @@ -1 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Main.h +notes: Seen in https://github.com/spech66/lightfire3d/blob/a93ba233451349d88e32eaa83cc7f948ea6da6e4/lightfire3d/src/Main.h + with a gpl, but this file name is too generic to report such license +--- + For conditions of distribution and use, see copyright notice in Main.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_279.yml b/src/licensedcode/data/rules/unknown-license-reference_279.yml deleted file mode 100644 index 8c69f821af6..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_279.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Main.h -notes: Seen in https://github.com/spech66/lightfire3d/blob/a93ba233451349d88e32eaa83cc7f948ea6da6e4/lightfire3d/src/Main.h - with a gpl, but this file name is too generic to report such license diff --git a/src/licensedcode/data/rules/unknown-license-reference_28.RULE b/src/licensedcode/data/rules/unknown-license-reference_28.RULE index 09dfa342c3d..a4d7eaf915b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_28.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_28.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Licensed under the terms of the LICENSE file distributed with this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_28.yml b/src/licensedcode/data/rules/unknown-license-reference_28.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_280.RULE b/src/licensedcode/data/rules/unknown-license-reference_280.RULE index 7177a2cbf14..b47a7e5a1f2 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_280.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_280.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + * For conditions of distribution and use, see copyright notice in COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_280.yml b/src/licensedcode/data/rules/unknown-license-reference_280.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_280.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_281.RULE b/src/licensedcode/data/rules/unknown-license-reference_281.RULE index 5a397d8cb33..fb7b4ce58c1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_281.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_281.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - copyright.txt +--- + * For conditions of distribution and use, see copyright notice in copyright.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_281.yml b/src/licensedcode/data/rules/unknown-license-reference_281.yml deleted file mode 100644 index 35accf33c2e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_281.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - copyright.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_282.RULE b/src/licensedcode/data/rules/unknown-license-reference_282.RULE index f14c5fdd6bd..680ebb4db5a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_282.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_282.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - doc/License.txt +--- + see doc/License.txt for License Information \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_282.yml b/src/licensedcode/data/rules/unknown-license-reference_282.yml deleted file mode 100644 index bcb253b6287..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_282.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - doc/License.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_283.RULE b/src/licensedcode/data/rules/unknown-license-reference_283.RULE index 54106d31508..78ba6da8f23 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_283.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_283.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + see LICENSE for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_283.yml b/src/licensedcode/data/rules/unknown-license-reference_283.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_283.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_284.RULE b/src/licensedcode/data/rules/unknown-license-reference_284.RULE index 0c510428afe..7fa18e8c0e4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_284.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_284.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + View LICENSE file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_284.yml b/src/licensedcode/data/rules/unknown-license-reference_284.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_284.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_285.RULE b/src/licensedcode/data/rules/unknown-license-reference_285.RULE index 38dd7b719d0..fd41bf29af9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_285.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_285.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + View LICENSE.txt file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_285.yml b/src/licensedcode/data/rules/unknown-license-reference_285.yml deleted file mode 100644 index c8343ceee83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_285.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_286.RULE b/src/licensedcode/data/rules/unknown-license-reference_286.RULE index ddc1aaeadbe..da80c41fd51 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_286.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_286.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + View LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_286.yml b/src/licensedcode/data/rules/unknown-license-reference_286.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_286.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_287.RULE b/src/licensedcode/data/rules/unknown-license-reference_287.RULE index 9332866bd53..2f782afdc3d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_287.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_287.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + View LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_287.yml b/src/licensedcode/data/rules/unknown-license-reference_287.yml deleted file mode 100644 index c8343ceee83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_287.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_288.RULE b/src/licensedcode/data/rules/unknown-license-reference_288.RULE index c3a6760bc11..6ef511c5566 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_288.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_288.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + under the respective licenses of the upstream projects \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_288.yml b/src/licensedcode/data/rules/unknown-license-reference_288.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_288.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_289.RULE b/src/licensedcode/data/rules/unknown-license-reference_289.RULE index 9f55db5c7d7..00de224cbfb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_289.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_289.RULE @@ -1,2 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + This program is distributed under the terms of the same license as See the accompanying LICENSE file for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_289.yml b/src/licensedcode/data/rules/unknown-license-reference_289.yml deleted file mode 100644 index 89539ed1009..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_289.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_29.RULE b/src/licensedcode/data/rules/unknown-license-reference_29.RULE index 6a599c2edac..3d239b49dfc 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_29.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_29.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 85 +referenced_filenames: + - License.txt +--- + See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_29.yml b/src/licensedcode/data/rules/unknown-license-reference_29.yml deleted file mode 100644 index a89cd2dd2f6..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 85 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_290.RULE b/src/licensedcode/data/rules/unknown-license-reference_290.RULE index 1b3a2dc41d8..9ff6dc29950 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_290.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_290.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Seen in some VMWare notice. Unclear what they meant with this +--- + does not distribute the sub-components licensed under LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_290.yml b/src/licensedcode/data/rules/unknown-license-reference_290.yml deleted file mode 100644 index 44a31d084de..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_290.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Seen in some VMWare notice. Unclear what they meant with this diff --git a/src/licensedcode/data/rules/unknown-license-reference_291.RULE b/src/licensedcode/data/rules/unknown-license-reference_291.RULE index 30879bf6699..25012129372 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_291.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_291.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + not licensed under the GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_291.yml b/src/licensedcode/data/rules/unknown-license-reference_291.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_291.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_292.RULE b/src/licensedcode/data/rules/unknown-license-reference_292.RULE index bf95b72af65..84adbfb7f0f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_292.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_292.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See the LICENSE file distributed with this work for the terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_292.yml b/src/licensedcode/data/rules/unknown-license-reference_292.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_292.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_293.RULE b/src/licensedcode/data/rules/unknown-license-reference_293.RULE index bb9b935c9bf..7acaece2fa5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_293.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_293.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +notes: See in BSD +--- + All or some portions of this file are derived from material licensed to the University of California by American Telephone and Telegraph Co. or Unix System Laboratories, Inc. and are reproduced herein with diff --git a/src/licensedcode/data/rules/unknown-license-reference_293.yml b/src/licensedcode/data/rules/unknown-license-reference_293.yml deleted file mode 100644 index 23ba7a14099..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_293.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 -notes: See in BSD diff --git a/src/licensedcode/data/rules/unknown-license-reference_294.RULE b/src/licensedcode/data/rules/unknown-license-reference_294.RULE index c9c49f8a4db..a45c7aaa25e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_294.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_294.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + All third party routines are under a GPL compatible license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_294.yml b/src/licensedcode/data/rules/unknown-license-reference_294.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_294.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_295.RULE b/src/licensedcode/data/rules/unknown-license-reference_295.RULE index 4be23ca597d..ef7ef210f13 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_295.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_295.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + under a GPL compatible license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_295.yml b/src/licensedcode/data/rules/unknown-license-reference_295.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_295.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_296.RULE b/src/licensedcode/data/rules/unknown-license-reference_296.RULE index 288dd296085..fe67ba99bbf 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_296.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_296.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See the file LICENSE for the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_296.yml b/src/licensedcode/data/rules/unknown-license-reference_296.yml deleted file mode 100644 index fc3d42b20a1..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_296.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_297.RULE b/src/licensedcode/data/rules/unknown-license-reference_297.RULE index 5ad812db2d1..f98bcc87286 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_297.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_297.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Copyright +--- + This SOFTWARE is licensed under the LICENSE provided in the ../Copyright file. By downloading, installing, copying, or using the SOFTWARE, you agree to be bound by the terms of that diff --git a/src/licensedcode/data/rules/unknown-license-reference_297.yml b/src/licensedcode/data/rules/unknown-license-reference_297.yml deleted file mode 100644 index e241eda6db7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_297.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - Copyright diff --git a/src/licensedcode/data/rules/unknown-license-reference_298.RULE b/src/licensedcode/data/rules/unknown-license-reference_298.RULE index 266e838f767..f3dda9af17c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_298.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_298.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - Copyright +--- + This SOFTWARE is licensed under the LICENSE provided in the ../Copyright file. By downloading, installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of that diff --git a/src/licensedcode/data/rules/unknown-license-reference_298.yml b/src/licensedcode/data/rules/unknown-license-reference_298.yml deleted file mode 100644 index e241eda6db7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_298.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - Copyright diff --git a/src/licensedcode/data/rules/unknown-license-reference_299.RULE b/src/licensedcode/data/rules/unknown-license-reference_299.RULE index aafc2248eae..462c2462cc8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_299.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_299.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/docs/definition.php +--- + http://www.opensource.org/docs/definition.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_299.yml b/src/licensedcode/data/rules/unknown-license-reference_299.yml deleted file mode 100644 index 26a457cf419..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_299.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/docs/definition.php diff --git a/src/licensedcode/data/rules/unknown-license-reference_3.RULE b/src/licensedcode/data/rules/unknown-license-reference_3.RULE index 52b1f7e18bc..21109116731 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_3.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_3.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + the text of which is set forth in the Appendix below \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_3.yml b/src/licensedcode/data/rules/unknown-license-reference_3.yml deleted file mode 100644 index 8327bb19858..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - diff --git a/src/licensedcode/data/rules/unknown-license-reference_30.RULE b/src/licensedcode/data/rules/unknown-license-reference_30.RULE index d79c3d7a6e7..453668d869b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_30.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_30.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Copyright +--- + See Copyright for the status of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_30.yml b/src/licensedcode/data/rules/unknown-license-reference_30.yml deleted file mode 100644 index 9fc722822c0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Copyright diff --git a/src/licensedcode/data/rules/unknown-license-reference_300.RULE b/src/licensedcode/data/rules/unknown-license-reference_300.RULE index 975fcd3c4b9..e20ae407f58 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_300.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_300.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/docs/definition.php +--- + https://www.opensource.org/docs/definition.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_300.yml b/src/licensedcode/data/rules/unknown-license-reference_300.yml deleted file mode 100644 index b00736d65bc..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_300.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/docs/definition.php diff --git a/src/licensedcode/data/rules/unknown-license-reference_301.RULE b/src/licensedcode/data/rules/unknown-license-reference_301.RULE index 8d321d2a52b..5c1e9f793fd 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_301.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_301.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + osi-certified \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_301.yml b/src/licensedcode/data/rules/unknown-license-reference_301.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_301.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_302.RULE b/src/licensedcode/data/rules/unknown-license-reference_302.RULE index 666c2f3e7dd..7a1d95c5f30 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_302.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_302.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + Freely available under the terms of \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_302.yml b/src/licensedcode/data/rules/unknown-license-reference_302.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_302.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_303.RULE b/src/licensedcode/data/rules/unknown-license-reference_303.RULE index c201e8db395..c60d63b67bf 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_303.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_303.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + For more information, see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_303.yml b/src/licensedcode/data/rules/unknown-license-reference_303.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_303.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_304.RULE b/src/licensedcode/data/rules/unknown-license-reference_304.RULE index 1bb36a8c084..e0f5d5a640a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_304.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_304.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + This file is dual-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_304.yml b/src/licensedcode/data/rules/unknown-license-reference_304.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_304.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_305.RULE b/src/licensedcode/data/rules/unknown-license-reference_305.RULE index 22a0ebb2ad0..51af9493c72 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_305.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_305.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + This file is dual-licensed and is also available under the following terms: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_305.yml b/src/licensedcode/data/rules/unknown-license-reference_305.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_305.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_306.RULE b/src/licensedcode/data/rules/unknown-license-reference_306.RULE index f835a852cee..a48e73c4b85 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_306.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_306.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + See LICENSE.txt for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_306.yml b/src/licensedcode/data/rules/unknown-license-reference_306.yml deleted file mode 100644 index a9cd83438ca..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_306.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_307.RULE b/src/licensedcode/data/rules/unknown-license-reference_307.RULE index 1b719d11b70..513ff29a4ad 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_307.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_307.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + also available under other license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_307.yml b/src/licensedcode/data/rules/unknown-license-reference_307.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_307.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_308.RULE b/src/licensedcode/data/rules/unknown-license-reference_308.RULE index 374dd3369e6..ae5b4a8ea3a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_308.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_308.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See the LICENSE file for licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_308.yml b/src/licensedcode/data/rules/unknown-license-reference_308.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_308.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_309.RULE b/src/licensedcode/data/rules/unknown-license-reference_309.RULE index d8dd60c152d..97b4b1c8a25 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_309.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_309.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + The library is licensed under the following terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_309.yml b/src/licensedcode/data/rules/unknown-license-reference_309.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_309.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_31.RULE b/src/licensedcode/data/rules/unknown-license-reference_31.RULE index 1da5f831a6c..adbf8fb2112 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_31.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_31.RULE @@ -1 +1,9 @@ -license: Custom license (read license.pdf) +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - license.pdf +--- + +license: Custom license (read license.pdf) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_31.yml b/src/licensedcode/data/rules/unknown-license-reference_31.yml deleted file mode 100644 index 170d5685118..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - license.pdf diff --git a/src/licensedcode/data/rules/unknown-license-reference_310.RULE b/src/licensedcode/data/rules/unknown-license-reference_310.RULE index da8102802c4..50f6aeea0e2 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_310.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_310.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +minimum_coverage: 80 +--- + subdirectory is a collection of software from several sources. Each file may have its own copyright/license that is embedded in the source file. @@ -13,4 +19,4 @@ Note that this list may omit certain licenses that only pertain to the copying/modifying of the individual source code. If you are distributing the source code, then you do not need to worry about these omitted licenses, so long as you do not modify the -copyright information already in place. +copyright information already in place. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_310.yml b/src/licensedcode/data/rules/unknown-license-reference_310.yml deleted file mode 100644 index 67b5d4178b5..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_310.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_311.RULE b/src/licensedcode/data/rules/unknown-license-reference_311.RULE index b1e1735b3fd..84a1959f383 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_311.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_311.RULE @@ -1,5 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +--- + Many individual files are under other licenses. This file provides an inventory of the copyright holders and licenses of all files in the -source tree. For specific licensing terms consult the files themselves. - +source tree. For specific licensing terms consult the files themselves. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_311.yml b/src/licensedcode/data/rules/unknown-license-reference_311.yml deleted file mode 100644 index f9a9c1348ac..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_311.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes diff --git a/src/licensedcode/data/rules/unknown-license-reference_312.RULE b/src/licensedcode/data/rules/unknown-license-reference_312.RULE index 5c435f9f358..85c39e28e49 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_312.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_312.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Portions contributed by are subject to the following license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_312.yml b/src/licensedcode/data/rules/unknown-license-reference_312.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_312.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_313.RULE b/src/licensedcode/data/rules/unknown-license-reference_313.RULE index 1ea2f747906..f37d6f01330 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_313.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_313.RULE @@ -1 +1,10 @@ -The Debian Packaging is licensed under the same terms as MIT Kerberos. +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +minimum_coverage: 100 +notes: Present in the end of debian copyright files and refers to license texts in the same + file. +--- + +The Debian Packaging is licensed under the same terms as MIT Kerberos. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_313.yml b/src/licensedcode/data/rules/unknown-license-reference_313.yml deleted file mode 100644 index 1675992a495..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_313.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 -minimum_coverage: 100 -notes: Present in the end of debian copyright files and refers to license texts in the same - file. diff --git a/src/licensedcode/data/rules/unknown-license-reference_314.RULE b/src/licensedcode/data/rules/unknown-license-reference_314.RULE index 678f4d5e7a2..7904318d1f1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_314.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_314.RULE @@ -1,3 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +--- + contains code by copyright is not assigned to the FSF. The code is licensed under the -CRYPTOGAMS license. +CRYPTOGAMS license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_314.yml b/src/licensedcode/data/rules/unknown-license-reference_314.yml deleted file mode 100644 index f9a9c1348ac..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_314.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes diff --git a/src/licensedcode/data/rules/unknown-license-reference_315.RULE b/src/licensedcode/data/rules/unknown-license-reference_315.RULE index db8f825c00c..054ec2df54d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_315.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_315.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +minimum_coverage: 100 +--- + copyright is not assigned to the FSF. The code is licensed under the - CRYPTOGAMS license. + CRYPTOGAMS license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_315.yml b/src/licensedcode/data/rules/unknown-license-reference_315.yml deleted file mode 100644 index 5a2b0158f1c..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_315.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_316.RULE b/src/licensedcode/data/rules/unknown-license-reference_316.RULE index 492d00c22a1..16cfd0a0150 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_316.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_316.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License For more information about the license used for this project, please refer to [LICENSE]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_316.yml b/src/licensedcode/data/rules/unknown-license-reference_316.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_316.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_317.RULE b/src/licensedcode/data/rules/unknown-license-reference_317.RULE index 8057a9066a6..6371637e177 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_317.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_317.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + This software may be distributed under the terms of the Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_317.yml b/src/licensedcode/data/rules/unknown-license-reference_317.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_317.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_318.RULE b/src/licensedcode/data/rules/unknown-license-reference_318.RULE index 82410933f41..33e271ffd3f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_318.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_318.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + dual-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_318.yml b/src/licensedcode/data/rules/unknown-license-reference_318.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_318.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_319.RULE b/src/licensedcode/data/rules/unknown-license-reference_319.RULE index c2c3e0b1917..f0a89ccee37 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_319.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_319.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + GPL incompatible \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_319.yml b/src/licensedcode/data/rules/unknown-license-reference_319.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_319.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_32.RULE b/src/licensedcode/data/rules/unknown-license-reference_32.RULE index e08ec037657..10239ea58fb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_32.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_32.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_32.yml b/src/licensedcode/data/rules/unknown-license-reference_32.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_320.RULE b/src/licensedcode/data/rules/unknown-license-reference_320.RULE index 16eed4a4bec..58cd97c0cbe 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_320.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_320.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + see its LICENSE file for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_320.yml b/src/licensedcode/data/rules/unknown-license-reference_320.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_320.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_321.RULE b/src/licensedcode/data/rules/unknown-license-reference_321.RULE index c0fdc3643b2..11d7d2808b0 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_321.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_321.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + LICENSE See end of file for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_321.yml b/src/licensedcode/data/rules/unknown-license-reference_321.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_321.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_322.RULE b/src/licensedcode/data/rules/unknown-license-reference_322.RULE index 36712009444..4e7e4142a72 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_322.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_322.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + The License.txt file describes the conditions under which this software may be distributed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_322.yml b/src/licensedcode/data/rules/unknown-license-reference_322.yml deleted file mode 100644 index ea83f7c8fa4..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_322.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_323.RULE b/src/licensedcode/data/rules/unknown-license-reference_323.RULE index 1d4a4c73d11..a1bf9e6552e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_323.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_323.RULE @@ -1 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +notes: Seen in libmodbus with this note "The functions included in the library have been derived + from the Modicon Modbus Protocol Reference Guide which can be obtained from Schneider at + www.schneiderautomation.com." and the license is not clear +--- + The functions included in the library have been derived from \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_323.yml b/src/licensedcode/data/rules/unknown-license-reference_323.yml deleted file mode 100644 index 74b76e4120e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_323.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -notes: Seen in libmodbus with this note "The functions included in the library have been derived - from the Modicon Modbus Protocol Reference Guide which can be obtained from Schneider at - www.schneiderautomation.com." and the license is not clear diff --git a/src/licensedcode/data/rules/unknown-license-reference_324.RULE b/src/licensedcode/data/rules/unknown-license-reference_324.RULE index db56abbd704..81cb74ba80e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_324.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_324.RULE @@ -1 +1,10 @@ - * See ../COPYING for licensing terms. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - ../COPYING +--- + + * See ../COPYING for licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_324.yml b/src/licensedcode/data/rules/unknown-license-reference_324.yml deleted file mode 100644 index 40f98efc9a8..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_324.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - ../COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_325.RULE b/src/licensedcode/data/rules/unknown-license-reference_325.RULE index 54500584cb5..0287622cbd3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_325.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_325.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - main.c +--- + * See main.c for license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_325.yml b/src/licensedcode/data/rules/unknown-license-reference_325.yml deleted file mode 100644 index bdc4748d021..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_325.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - main.c diff --git a/src/licensedcode/data/rules/unknown-license-reference_326.RULE b/src/licensedcode/data/rules/unknown-license-reference_326.RULE index f61e2002106..1517f9b222f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_326.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_326.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + # This file is subject to the terms and conditions defined in # file 'LICENSE', which is part of this source code package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_326.yml b/src/licensedcode/data/rules/unknown-license-reference_326.yml deleted file mode 100644 index fc3d42b20a1..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_326.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_327.RULE b/src/licensedcode/data/rules/unknown-license-reference_327.RULE index 610347617be..e9cb3701673 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_327.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_327.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +notes: Subset of the Apache license +--- + 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/unknown-license-reference_327.yml b/src/licensedcode/data/rules/unknown-license-reference_327.yml deleted file mode 100644 index 54b062d58a3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_327.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -notes: Subset of the Apache license diff --git a/src/licensedcode/data/rules/unknown-license-reference_328.RULE b/src/licensedcode/data/rules/unknown-license-reference_328.RULE index 8b7de04bcdf..3e29cbcd97d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_328.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_328.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 80 +--- + free license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_328.yml b/src/licensedcode/data/rules/unknown-license-reference_328.yml deleted file mode 100644 index c56a327ec16..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_328.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_329.RULE b/src/licensedcode/data/rules/unknown-license-reference_329.RULE index f8a4ce947a8..d74c169b478 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_329.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_329.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Source Code Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_329.yml b/src/licensedcode/data/rules/unknown-license-reference_329.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_329.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_33.RULE b/src/licensedcode/data/rules/unknown-license-reference_33.RULE index 70720699c8a..ebcd1eed8b1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_33.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_33.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Please read the different LICENSE files present in the root directory of - this distribution. + this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_33.yml b/src/licensedcode/data/rules/unknown-license-reference_33.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_330.RULE b/src/licensedcode/data/rules/unknown-license-reference_330.RULE index ad1cfbe8aa4..d389eac4a4e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_330.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_330.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + This program and the accompanying materials are made available under the terms of the License which accompanies this distribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_330.yml b/src/licensedcode/data/rules/unknown-license-reference_330.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_330.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_331.RULE b/src/licensedcode/data/rules/unknown-license-reference_331.RULE index 7410b4418dd..88b13355569 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_331.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_331.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 80 +--- + Open Source Licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_331.yml b/src/licensedcode/data/rules/unknown-license-reference_331.yml deleted file mode 100644 index c56a327ec16..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_331.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_332.RULE b/src/licensedcode/data/rules/unknown-license-reference_332.RULE index 6e690a35499..b5ce54bc40d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_332.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_332.RULE @@ -1 +1,7 @@ -{{License 1.0}} +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 80 +--- + +{{License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_332.yml b/src/licensedcode/data/rules/unknown-license-reference_332.yml deleted file mode 100644 index c56a327ec16..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_332.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_333.RULE b/src/licensedcode/data/rules/unknown-license-reference_333.RULE index 9ed570fa0b0..724311e266a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_333.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_333.RULE @@ -1 +1,7 @@ -{{License 2.0}} +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 80 +--- + +{{License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_333.yml b/src/licensedcode/data/rules/unknown-license-reference_333.yml deleted file mode 100644 index c56a327ec16..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_333.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_334.RULE b/src/licensedcode/data/rules/unknown-license-reference_334.RULE index eeac02a175e..9f7207409f4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_334.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_334.RULE @@ -1 +1,7 @@ -{{License 3.0}} +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 80 +--- + +{{License 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_334.yml b/src/licensedcode/data/rules/unknown-license-reference_334.yml deleted file mode 100644 index c56a327ec16..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_334.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_335.RULE b/src/licensedcode/data/rules/unknown-license-reference_335.RULE index f4ac78a459a..0fbc8361639 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_335.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_335.RULE @@ -1 +1,7 @@ -{{License 2.1}} +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 80 +--- + +{{License 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_335.yml b/src/licensedcode/data/rules/unknown-license-reference_335.yml deleted file mode 100644 index c56a327ec16..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_335.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_336.RULE b/src/licensedcode/data/rules/unknown-license-reference_336.RULE index 2af01062270..f39190324a7 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_336.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_336.RULE @@ -1 +1,7 @@ -{{License 1.1}} +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 80 +--- + +{{License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_336.yml b/src/licensedcode/data/rules/unknown-license-reference_336.yml deleted file mode 100644 index c56a327ec16..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_336.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown-license-reference_337.RULE b/src/licensedcode/data/rules/unknown-license-reference_337.RULE index f98b7e4773f..a232626eb3d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_337.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_337.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - about_files/LICENSE-2.0.txt +--- + about_files/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_337.yml b/src/licensedcode/data/rules/unknown-license-reference_337.yml deleted file mode 100644 index 79550009f57..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_337.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - about_files/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_338.RULE b/src/licensedcode/data/rules/unknown-license-reference_338.RULE index 69005a7dbce..43b1a5f5080 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_338.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_338.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + license requires dependent module to have a free license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_338.yml b/src/licensedcode/data/rules/unknown-license-reference_338.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_338.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_339.RULE b/src/licensedcode/data/rules/unknown-license-reference_339.RULE index 8b4ee8db895..201871d00be 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_339.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_339.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +referenced_filenames: + - licenses/LICENSE.txt +--- + licenses/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_339.yml b/src/licensedcode/data/rules/unknown-license-reference_339.yml deleted file mode 100644 index 203c1333167..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_339.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -referenced_filenames: - - licenses/LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_34.RULE b/src/licensedcode/data/rules/unknown-license-reference_34.RULE index 1cb5882d716..ba7afb9c7f6 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_34.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_34.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +referenced_filenames: + - LICENSE +--- + This program is licensed under the same terms that and are licensed under. See the file LICENSE accompanying -this distribution. +this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_34.yml b/src/licensedcode/data/rules/unknown-license-reference_34.yml deleted file mode 100644 index f2d2df54344..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_34.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_340.RULE b/src/licensedcode/data/rules/unknown-license-reference_340.RULE index 604caf1e1d5..d0385260c76 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_340.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_340.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Source Code License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_340.yml b/src/licensedcode/data/rules/unknown-license-reference_340.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_340.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_341.RULE b/src/licensedcode/data/rules/unknown-license-reference_341.RULE index a69ffe5f404..93558649cd2 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_341.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_341.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + protected by copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_341.yml b/src/licensedcode/data/rules/unknown-license-reference_341.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_341.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_342.RULE b/src/licensedcode/data/rules/unknown-license-reference_342.RULE index eefd59c0860..040e311fd64 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_342.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_342.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + may be copied or reproduced for commercial purposes without the express written permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_342.yml b/src/licensedcode/data/rules/unknown-license-reference_342.yml deleted file mode 100644 index 45999dad3b3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_342.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_343.RULE b/src/licensedcode/data/rules/unknown-license-reference_343.RULE index 84e08021874..fe909179a58 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_343.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_343.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + without the express written permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_343.yml b/src/licensedcode/data/rules/unknown-license-reference_343.yml deleted file mode 100644 index 45999dad3b3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_343.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_344.RULE b/src/licensedcode/data/rules/unknown-license-reference_344.RULE index 704bd09d4ba..63a32f189f5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_344.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_344.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + may change these terms from time to time \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_344.yml b/src/licensedcode/data/rules/unknown-license-reference_344.yml deleted file mode 100644 index 45999dad3b3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_344.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_345.RULE b/src/licensedcode/data/rules/unknown-license-reference_345.RULE index acc7562139b..6c33d1f799b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_345.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_345.RULE @@ -1,3 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +--- + All source code included in this distribution is covered by this notice, unless specifically stated otherwise within each file. See each file within each release for specific copyright holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_345.yml b/src/licensedcode/data/rules/unknown-license-reference_345.yml deleted file mode 100644 index 570ff67db4b..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_345.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes diff --git a/src/licensedcode/data/rules/unknown-license-reference_346.RULE b/src/licensedcode/data/rules/unknown-license-reference_346.RULE index bb8d7aa1207..63b1e952dd5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_346.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_346.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See LICENSE file for terms of use \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_346.yml b/src/licensedcode/data/rules/unknown-license-reference_346.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_346.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_347.RULE b/src/licensedcode/data/rules/unknown-license-reference_347.RULE index 2f09ea36de8..46912360772 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_347.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_347.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_347.yml b/src/licensedcode/data/rules/unknown-license-reference_347.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_347.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_348.RULE b/src/licensedcode/data/rules/unknown-license-reference_348.RULE index 8e0227de0f8..b4890c7789a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_348.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_348.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + governed by the laws of \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_348.yml b/src/licensedcode/data/rules/unknown-license-reference_348.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_348.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_349.RULE b/src/licensedcode/data/rules/unknown-license-reference_349.RULE index 8020c60cb09..d058d9442ef 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_349.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_349.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + grants you a license as follows \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_349.yml b/src/licensedcode/data/rules/unknown-license-reference_349.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_349.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_35.RULE b/src/licensedcode/data/rules/unknown-license-reference_35.RULE index 88133dfa3d0..d352114169d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_35.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_35.RULE @@ -1 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - license.txt +--- + For conditions of distribution and use see copyright notice in license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_35.yml b/src/licensedcode/data/rules/unknown-license-reference_35.yml deleted file mode 100644 index d6b11cd165f..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_350.RULE b/src/licensedcode/data/rules/unknown-license-reference_350.RULE index 59af4aaad68..fc1534e8aa7 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_350.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_350.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + This {{Agreement is a legal agreement}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_350.yml b/src/licensedcode/data/rules/unknown-license-reference_350.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_350.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_351.RULE b/src/licensedcode/data/rules/unknown-license-reference_351.RULE index 62f0f453249..f93145fb3fa 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_351.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_351.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + {{LIMITATION OF LIABILITY}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_351.yml b/src/licensedcode/data/rules/unknown-license-reference_351.yml deleted file mode 100644 index 45999dad3b3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_351.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_352.RULE b/src/licensedcode/data/rules/unknown-license-reference_352.RULE index 477dc305a3d..301b22c8930 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_352.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_352.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + licensed under the License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_352.yml b/src/licensedcode/data/rules/unknown-license-reference_352.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_352.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_353.RULE b/src/licensedcode/data/rules/unknown-license-reference_353.RULE index 0d6a228a22d..982d11d1b84 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_353.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_353.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + See COPYING in top-level directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_353.yml b/src/licensedcode/data/rules/unknown-license-reference_353.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_353.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_354.RULE b/src/licensedcode/data/rules/unknown-license-reference_354.RULE index e5640798527..487b7daf2ff 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_354.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_354.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +notes: Seen in woodstox +--- + This product currently only contains code developed by authors of specific components, as identified by the source code files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_354.yml b/src/licensedcode/data/rules/unknown-license-reference_354.yml deleted file mode 100644 index 1e04dff3778..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_354.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -notes: Seen in woodstox diff --git a/src/licensedcode/data/rules/unknown-license-reference_355.RULE b/src/licensedcode/data/rules/unknown-license-reference_355.RULE index 2ebfb44d09b..2193af493d1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_355.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_355.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + for more information on licensing and terms of use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_355.yml b/src/licensedcode/data/rules/unknown-license-reference_355.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_355.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_356.RULE b/src/licensedcode/data/rules/unknown-license-reference_356.RULE index 6c08b480c70..f1f8d3aa96c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_356.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_356.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +--- + The full license is in the file COPYING.txt, distributed with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_356.yml b/src/licensedcode/data/rules/unknown-license-reference_356.yml deleted file mode 100644 index b338bff520d..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_356.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_357.RULE b/src/licensedcode/data/rules/unknown-license-reference_357.RULE index c6438ebe7a0..35968ca83d5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_357.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_357.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This software is licensed under terms that can be found in the LICENSE file in the root directory of this software component. If no LICENSE file comes with this software, it is provided AS-IS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_357.yml b/src/licensedcode/data/rules/unknown-license-reference_357.yml deleted file mode 100644 index 522016ed725..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_357.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_358.RULE b/src/licensedcode/data/rules/unknown-license-reference_358.RULE index c66413238a8..aa4427dd49f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_358.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_358.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + This software is licensed under terms that can be found in the LICENSE file in the root directory of this software component. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_358.yml b/src/licensedcode/data/rules/unknown-license-reference_358.yml deleted file mode 100644 index 522016ed725..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_358.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_359.RULE b/src/licensedcode/data/rules/unknown-license-reference_359.RULE index f4512e38af5..f3f9c6b3e74 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_359.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_359.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + released with permission under the terms of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_359.yml b/src/licensedcode/data/rules/unknown-license-reference_359.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_359.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_36.RULE b/src/licensedcode/data/rules/unknown-license-reference_36.RULE index 97d9772e895..7381a30b9f1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_36.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_36.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + For conditions of distribution and use, see copyright notice in \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_36.yml b/src/licensedcode/data/rules/unknown-license-reference_36.yml deleted file mode 100644 index 6e26383261e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_36.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_360.RULE b/src/licensedcode/data/rules/unknown-license-reference_360.RULE index b2b8d48729c..29c5b5a9d05 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_360.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_360.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License information can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_360.yml b/src/licensedcode/data/rules/unknown-license-reference_360.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_360.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_361.RULE b/src/licensedcode/data/rules/unknown-license-reference_361.RULE index 9f7bc1d5431..a10d5d3140a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_361.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_361.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License See [LICENSE](LICENSE) file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_361.yml b/src/licensedcode/data/rules/unknown-license-reference_361.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_361.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_362.RULE b/src/licensedcode/data/rules/unknown-license-reference_362.RULE index fa0553b839a..e31a784babe 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_362.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_362.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See [LICENSE](LICENSE) file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_362.yml b/src/licensedcode/data/rules/unknown-license-reference_362.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_362.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_363.RULE b/src/licensedcode/data/rules/unknown-license-reference_363.RULE index 7c40836bcc8..0817f4ecacc 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_363.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_363.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License See [LICENSE](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_363.yml b/src/licensedcode/data/rules/unknown-license-reference_363.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_363.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_364.RULE b/src/licensedcode/data/rules/unknown-license-reference_364.RULE index e843c7b5c22..c38c3ea7ac9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_364.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_364.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See [LICENSE](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_364.yml b/src/licensedcode/data/rules/unknown-license-reference_364.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_364.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_365.RULE b/src/licensedcode/data/rules/unknown-license-reference_365.RULE index d47a0c3d877..641f6bb844e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_365.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_365.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + software is not in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_365.yml b/src/licensedcode/data/rules/unknown-license-reference_365.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_365.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_366.RULE b/src/licensedcode/data/rules/unknown-license-reference_366.RULE index e9a0b5c9899..310aaa9abfa 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_366.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_366.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Use of this source code is governed by a license that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_366.yml b/src/licensedcode/data/rules/unknown-license-reference_366.yml deleted file mode 100644 index fc3d42b20a1..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_366.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_367.RULE b/src/licensedcode/data/rules/unknown-license-reference_367.RULE index f57d983095c..2c4eb7fc746 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_367.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_367.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See LICENSE for the full text \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_367.yml b/src/licensedcode/data/rules/unknown-license-reference_367.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_367.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_368.RULE b/src/licensedcode/data/rules/unknown-license-reference_368.RULE index 3dcee35156e..ea54d29027d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_368.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_368.RULE @@ -1,2 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +--- + License Unless explicitly stated otherwise all files in this repository are licensed under the License in the root repository \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_368.yml b/src/licensedcode/data/rules/unknown-license-reference_368.yml deleted file mode 100644 index 882421ac1e0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_368.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes diff --git a/src/licensedcode/data/rules/unknown-license-reference_369.RULE b/src/licensedcode/data/rules/unknown-license-reference_369.RULE index 178aa542e78..9c05a8134f7 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_369.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_369.RULE @@ -1 +1,6 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +--- + Unless explicitly stated otherwise all files in this repository are licensed under the License in the root repository \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_369.yml b/src/licensedcode/data/rules/unknown-license-reference_369.yml deleted file mode 100644 index 882421ac1e0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_369.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes diff --git a/src/licensedcode/data/rules/unknown-license-reference_37.RULE b/src/licensedcode/data/rules/unknown-license-reference_37.RULE index 5d9d0f3cfb9..26ed5354e81 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_37.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_37.RULE @@ -1 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - copyright +--- + For conditions of distribution and use, see copyright notice in "copyright" \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_37.yml b/src/licensedcode/data/rules/unknown-license-reference_37.yml deleted file mode 100644 index 63fb1ab1f59..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - copyright diff --git a/src/licensedcode/data/rules/unknown-license-reference_38.RULE b/src/licensedcode/data/rules/unknown-license-reference_38.RULE index 63dece80543..5a6a6448095 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_38.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_38.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - README +--- + > | For details on the license for this file, please see the > | file, README, in this same directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_38.yml b/src/licensedcode/data/rules/unknown-license-reference_38.yml deleted file mode 100644 index 75b3beaf0fd..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - README diff --git a/src/licensedcode/data/rules/unknown-license-reference_39.RULE b/src/licensedcode/data/rules/unknown-license-reference_39.RULE index 2e6f776fd95..c30cc358d43 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_39.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_39.RULE @@ -1 +1,9 @@ -For licensing information, see the file 'LICENCE' in this directory. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +referenced_filenames: + - LICENCE +--- + +For licensing information, see the file 'LICENCE' in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_39.yml b/src/licensedcode/data/rules/unknown-license-reference_39.yml deleted file mode 100644 index 137266daaf6..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/unknown-license-reference_4.RULE b/src/licensedcode/data/rules/unknown-license-reference_4.RULE index 6632d58039a..05dda32a08f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_4.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_4.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +referenced_filenames: + - COPYING +--- + This software is licensed as described in the file COPYING, which * you should have received as part of this distribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_4.yml b/src/licensedcode/data/rules/unknown-license-reference_4.yml deleted file mode 100644 index c24070910ba..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_40.RULE b/src/licensedcode/data/rules/unknown-license-reference_40.RULE index 86db04406f8..381f1adeec7 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_40.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_40.RULE @@ -1 +1,10 @@ -See copyright notice in main.c +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +minimum_coverage: 95 +referenced_filenames: + - main.c +--- + +See copyright notice in main.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_40.yml b/src/licensedcode/data/rules/unknown-license-reference_40.yml deleted file mode 100644 index d4b48529562..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_40.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -minimum_coverage: 95 -referenced_filenames: - - main.c diff --git a/src/licensedcode/data/rules/unknown-license-reference_41.RULE b/src/licensedcode/data/rules/unknown-license-reference_41.RULE index d60f9390656..8f7c207e692 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_41.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_41.RULE @@ -1 +1,9 @@ -SEE LICENSE IN LICENSE +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +SEE LICENSE IN LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_41.yml b/src/licensedcode/data/rules/unknown-license-reference_41.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_42.RULE b/src/licensedcode/data/rules/unknown-license-reference_42.RULE index d554e72f3cc..21b24477c30 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_42.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_42.RULE @@ -1 +1,9 @@ -SEE LICENSE IN COPYING.txt +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +referenced_filenames: + - COPYING.txt +--- + +SEE LICENSE IN COPYING.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_42.yml b/src/licensedcode/data/rules/unknown-license-reference_42.yml deleted file mode 100644 index 7443eb98d8e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -referenced_filenames: - - COPYING.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_43.RULE b/src/licensedcode/data/rules/unknown-license-reference_43.RULE index e5b5c079e50..2863cf7f6c5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_43.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_43.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Please see toplevel file COPYING for license details \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_43.yml b/src/licensedcode/data/rules/unknown-license-reference_43.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_44.RULE b/src/licensedcode/data/rules/unknown-license-reference_44.RULE index c49e9b67dc0..1bed49b065c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_44.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_44.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - NOTICE +--- + See the NOTICE file distributed with * this work for additional information regarding copyright ownership. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_44.yml b/src/licensedcode/data/rules/unknown-license-reference_44.yml deleted file mode 100644 index d33098a2037..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - NOTICE diff --git a/src/licensedcode/data/rules/unknown-license-reference_45.RULE b/src/licensedcode/data/rules/unknown-license-reference_45.RULE index 19344054ce9..58e2a07c743 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_45.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_45.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Same license text as \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_45.yml b/src/licensedcode/data/rules/unknown-license-reference_45.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_46.RULE b/src/licensedcode/data/rules/unknown-license-reference_46.RULE index ed7594990eb..ddf302b22d5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_46.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_46.RULE @@ -1 +1,10 @@ -see LICENSE.txt \ No newline at end of file +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +minimum_coverage: 100 +referenced_filenames: + - LICENSE.txt +--- + +see LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_46.yml b/src/licensedcode/data/rules/unknown-license-reference_46.yml deleted file mode 100644 index a9f55836abb..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_46.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -minimum_coverage: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_47.RULE b/src/licensedcode/data/rules/unknown-license-reference_47.RULE index 83f2e451b8d..fa49b3c6285 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_47.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_47.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + that are licensed under different licenses see individual -files names COPYING in subdirectories where applicable. +files names COPYING in subdirectories where applicable. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_47.yml b/src/licensedcode/data/rules/unknown-license-reference_47.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_48.RULE b/src/licensedcode/data/rules/unknown-license-reference_48.RULE index db0227b46bf..cae72a2f042 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_48.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_48.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 95 +--- + For full copyright notices consult the individual files in the package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_48.yml b/src/licensedcode/data/rules/unknown-license-reference_48.yml deleted file mode 100644 index 27ee017e25d..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/unknown-license-reference_49.RULE b/src/licensedcode/data/rules/unknown-license-reference_49.RULE index af4dee7ca54..345d66dd788 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_49.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_49.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + See the file COPYING for copying permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_49.yml b/src/licensedcode/data/rules/unknown-license-reference_49.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_5.RULE b/src/licensedcode/data/rules/unknown-license-reference_5.RULE index 3ee4f06f228..31e5654719b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_5.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_5.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + License as described in the file COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_5.yml b/src/licensedcode/data/rules/unknown-license-reference_5.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_50.RULE b/src/licensedcode/data/rules/unknown-license-reference_50.RULE index 57b28d983dc..85b4704006d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_50.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_50.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + See LICENSE for copying information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_50.yml b/src/licensedcode/data/rules/unknown-license-reference_50.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_51.RULE b/src/licensedcode/data/rules/unknown-license-reference_51.RULE index 163a68b538c..0321efd452c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_51.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_51.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + # See LICENSE.txt for license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_51.yml b/src/licensedcode/data/rules/unknown-license-reference_51.yml deleted file mode 100644 index c8343ceee83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_52.RULE b/src/licensedcode/data/rules/unknown-license-reference_52.RULE index 48a68587d0b..015d169dee6 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_52.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_52.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + shall be subject to the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_52.yml b/src/licensedcode/data/rules/unknown-license-reference_52.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_53.RULE b/src/licensedcode/data/rules/unknown-license-reference_53.RULE index a7acb0ed72b..07e5c97276f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_53.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_53.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference AND jam +is_license_reference: yes +relevance: 100 +referenced_filenames: + - jam.c +--- + see jam.c for Copyright information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_53.yml b/src/licensedcode/data/rules/unknown-license-reference_53.yml deleted file mode 100644 index e6f99e3d457..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference AND jam -is_license_reference: yes -relevance: 100 -referenced_filenames: - - jam.c diff --git a/src/licensedcode/data/rules/unknown-license-reference_54.RULE b/src/licensedcode/data/rules/unknown-license-reference_54.RULE index b8d2c48f21e..f178d53e2d3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_54.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_54.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +--- + The file named COPYRIGHT specifies the terms * and conditions for redistribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_54.yml b/src/licensedcode/data/rules/unknown-license-reference_54.yml deleted file mode 100644 index 32b26f7cc61..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT diff --git a/src/licensedcode/data/rules/unknown-license-reference_55.RULE b/src/licensedcode/data/rules/unknown-license-reference_55.RULE index 105b8bde77a..7e1f598d5f5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_55.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_55.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference AND libpng +is_license_reference: yes +relevance: 100 +referenced_filenames: + - Tidy.java +--- + See Tidy.java for the copyright notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_55.yml b/src/licensedcode/data/rules/unknown-license-reference_55.yml deleted file mode 100644 index 2f107c40667..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference AND libpng -is_license_reference: yes -relevance: 100 -referenced_filenames: - - Tidy.java diff --git a/src/licensedcode/data/rules/unknown-license-reference_56.RULE b/src/licensedcode/data/rules/unknown-license-reference_56.RULE index d2709130341..1cd8acd773e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_56.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_56.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + includes a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_56.yml b/src/licensedcode/data/rules/unknown-license-reference_56.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_57.RULE b/src/licensedcode/data/rules/unknown-license-reference_57.RULE index a492f382a76..56fe673949f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_57.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_57.RULE @@ -1,3 +1,12 @@ +--- +license_expression: libmng-2007 +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - libmng.h +--- + /* ************************************************************************** */ /* * For conditions of distribution and use, * */ -/* * see copyright notice in libmng.h * */ +/* * see copyright notice in libmng.h * */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_57.yml b/src/licensedcode/data/rules/unknown-license-reference_57.yml deleted file mode 100644 index 9e28335d23f..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_57.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: libmng-2007 -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - libmng.h diff --git a/src/licensedcode/data/rules/unknown-license-reference_58.RULE b/src/licensedcode/data/rules/unknown-license-reference_58.RULE index 3a2ea8ada9a..73bd5cff57a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_58.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_58.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Consult your license regarding permissions and restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_58.yml b/src/licensedcode/data/rules/unknown-license-reference_58.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_59.RULE b/src/licensedcode/data/rules/unknown-license-reference_59.RULE index 34a79781930..61902664ab4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_59.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_59.RULE @@ -1,4 +1,9 @@ -## License +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 99 +--- -All software included is bundled with own license +## License +All software included is bundled with own license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_59.yml b/src/licensedcode/data/rules/unknown-license-reference_59.yml deleted file mode 100644 index 3ee91f8033d..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/unknown-license-reference_6.RULE b/src/licensedcode/data/rules/unknown-license-reference_6.RULE index 0a1163b87be..e9538981418 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_6.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_6.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + the library contained a comment pointing the reader to the file containing the copyright notice \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_6.yml b/src/licensedcode/data/rules/unknown-license-reference_6.yml deleted file mode 100644 index 8327bb19858..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - diff --git a/src/licensedcode/data/rules/unknown-license-reference_60.RULE b/src/licensedcode/data/rules/unknown-license-reference_60.RULE index 4d991b1b0ed..c5f8df14f96 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_60.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_60.RULE @@ -1,2 +1,7 @@ -All software included is bundled with own license +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 99 +--- +All software included is bundled with own license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_60.yml b/src/licensedcode/data/rules/unknown-license-reference_60.yml deleted file mode 100644 index 3ee91f8033d..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/unknown-license-reference_61.RULE b/src/licensedcode/data/rules/unknown-license-reference_61.RULE index 48513f0caeb..81f870445e5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_61.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_61.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +notes: some source code offer for copyleft +--- + To the extent any open source components are licensed under the and/or other similar licenses that require the source code and/or modifications to source code to be made available (as would be noted above), you may obtain a diff --git a/src/licensedcode/data/rules/unknown-license-reference_61.yml b/src/licensedcode/data/rules/unknown-license-reference_61.yml deleted file mode 100644 index eba3d5608b6..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_61.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -notes: some source code offer for copyleft diff --git a/src/licensedcode/data/rules/unknown-license-reference_62.RULE b/src/licensedcode/data/rules/unknown-license-reference_62.RULE index 2e81b34dbd2..37e9d4b2fa5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_62.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_62.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + Your use of the source code for these subcomponents is subject to the terms and -conditions of the following licenses. +conditions of the following licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_62.yml b/src/licensedcode/data/rules/unknown-license-reference_62.yml deleted file mode 100644 index 3e7294e642b..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_63.RULE b/src/licensedcode/data/rules/unknown-license-reference_63.RULE index 2b530c72bde..b2f942187fb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_63.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_63.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See LICENSE for licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_63.yml b/src/licensedcode/data/rules/unknown-license-reference_63.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_63.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_64.RULE b/src/licensedcode/data/rules/unknown-license-reference_64.RULE index 1bc46ca4368..0125ee3d596 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_64.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_64.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + separate copyright and license terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_64.yml b/src/licensedcode/data/rules/unknown-license-reference_64.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_65.RULE b/src/licensedcode/data/rules/unknown-license-reference_65.RULE index d5281e6ee0f..78c754022e2 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_65.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_65.RULE @@ -1 +1,10 @@ -See copyright notice in file main.c +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +minimum_coverage: 95 +referenced_filenames: + - main.c +--- + +See copyright notice in file main.c \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_65.yml b/src/licensedcode/data/rules/unknown-license-reference_65.yml deleted file mode 100644 index d4b48529562..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_65.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -minimum_coverage: 95 -referenced_filenames: - - main.c diff --git a/src/licensedcode/data/rules/unknown-license-reference_66.RULE b/src/licensedcode/data/rules/unknown-license-reference_66.RULE index dd1c7a87fca..7e31b9babb3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_66.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_66.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + This software was originally developed in conformance with -Microsoft's Remote NDIS Specification License Agreement. +Microsoft's Remote NDIS Specification License Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_66.yml b/src/licensedcode/data/rules/unknown-license-reference_66.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_67.RULE b/src/licensedcode/data/rules/unknown-license-reference_67.RULE index fb1d86f7dca..92e63915fdb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_67.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_67.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +--- + As the firmware is licensed under a restricted use license, it can not be -included within the kernel sources. \ No newline at end of file +included within the kernel sources. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_67.yml b/src/licensedcode/data/rules/unknown-license-reference_67.yml deleted file mode 100644 index 09aabfae4d0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_67.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/unknown-license-reference_68.RULE b/src/licensedcode/data/rules/unknown-license-reference_68.RULE index 57ac2a9fe78..12b26b32e18 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_68.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_68.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + See the file 'LICENSE' for copying permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_68.yml b/src/licensedcode/data/rules/unknown-license-reference_68.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_69.RULE b/src/licensedcode/data/rules/unknown-license-reference_69.RULE index 06802efb71b..a385928bc0a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_69.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_69.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + some of the embedded libraries may be using other licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_69.yml b/src/licensedcode/data/rules/unknown-license-reference_69.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_7.RULE b/src/licensedcode/data/rules/unknown-license-reference_7.RULE index d8cb37885e5..7b0b77c9f3c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_7.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_7.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Licence (as given in the file COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_7.yml b/src/licensedcode/data/rules/unknown-license-reference_7.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_70.RULE b/src/licensedcode/data/rules/unknown-license-reference_70.RULE index 85d69d3e7db..5acd66f9338 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_70.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_70.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/vertica-as/integration-service/blob/master/LICENSE +--- + https://github.com/vertica-as/integration-service/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_70.yml b/src/licensedcode/data/rules/unknown-license-reference_70.yml deleted file mode 100644 index 32f09cb6784..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_70.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/vertica-as/integration-service/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_71.RULE b/src/licensedcode/data/rules/unknown-license-reference_71.RULE index 625acd367ff..575e8922552 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_71.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_71.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/chgeuer/azureiisconfiguratorsync/master/LICENSE.txt +--- + https://raw.github.com/chgeuer/azureiisconfiguratorsync/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_71.yml b/src/licensedcode/data/rules/unknown-license-reference_71.yml deleted file mode 100644 index 58e07a75c63..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_71.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/chgeuer/azureiisconfiguratorsync/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_72.RULE b/src/licensedcode/data/rules/unknown-license-reference_72.RULE index eb028a14510..abe65e2da00 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_72.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_72.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.github.com/markwoodhall/MFlow/master/license.txt +--- + https://raw.github.com/markwoodhall/MFlow/master/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_72.yml b/src/licensedcode/data/rules/unknown-license-reference_72.yml deleted file mode 100644 index 4b74f164bd0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_72.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.github.com/markwoodhall/MFlow/master/license.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_73.RULE b/src/licensedcode/data/rules/unknown-license-reference_73.RULE index 349212c6ae7..87fdf3c37de 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_73.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_73.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/mgravell/capnproto-net/master/LICENSE +--- + https://raw.githubusercontent.com/mgravell/capnproto-net/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_73.yml b/src/licensedcode/data/rules/unknown-license-reference_73.yml deleted file mode 100644 index 05ce4417198..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_73.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/mgravell/capnproto-net/master/LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_74.RULE b/src/licensedcode/data/rules/unknown-license-reference_74.RULE index cbe397a779c..e4b43b2485b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_74.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_74.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://raw.githubusercontent.com/sceneskope/sceneskope-sdk/master/LICENSE +--- + https://raw.githubusercontent.com/sceneskope/sceneskope-sdk/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_74.yml b/src/licensedcode/data/rules/unknown-license-reference_74.yml deleted file mode 100644 index 25ee73ad772..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://raw.githubusercontent.com/sceneskope/sceneskope-sdk/master/LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_75.RULE b/src/licensedcode/data/rules/unknown-license-reference_75.RULE index a981c23d7ed..c396470e714 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_75.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_75.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/carbon/Platform/blob/master/LICENCE +--- + https://github.com/carbon/Platform/blob/master/LICENCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_75.yml b/src/licensedcode/data/rules/unknown-license-reference_75.yml deleted file mode 100644 index e81877ee33c..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_75.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/carbon/Platform/blob/master/LICENCE diff --git a/src/licensedcode/data/rules/unknown-license-reference_76.RULE b/src/licensedcode/data/rules/unknown-license-reference_76.RULE index fa942713e55..779b62d31cb 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_76.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_76.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + idstributed under their own license (see the source file for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_76.yml b/src/licensedcode/data/rules/unknown-license-reference_76.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_77.RULE b/src/licensedcode/data/rules/unknown-license-reference_77.RULE index e30671e2cc5..76c47043fb4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_77.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_77.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Licensed under main repo license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_77.yml b/src/licensedcode/data/rules/unknown-license-reference_77.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_78.RULE b/src/licensedcode/data/rules/unknown-license-reference_78.RULE index 9f89d28b064..1770fb6dbb5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_78.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_78.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + License Licensed under main repo license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_78.yml b/src/licensedcode/data/rules/unknown-license-reference_78.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_79.RULE b/src/licensedcode/data/rules/unknown-license-reference_79.RULE index 24779e49d5c..2b70b1062fc 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_79.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_79.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/vertica-as/integration-service/raw/master/LICENSE +--- + https://github.com/vertica-as/integration-service/raw/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_79.yml b/src/licensedcode/data/rules/unknown-license-reference_79.yml deleted file mode 100644 index 03b24df650e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_79.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/vertica-as/integration-service/raw/master/LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_8.RULE b/src/licensedcode/data/rules/unknown-license-reference_8.RULE index 2c127c304b6..fcbf829fed3 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_8.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_8.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + Licence (as given in the file \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_8.yml b/src/licensedcode/data/rules/unknown-license-reference_8.yml deleted file mode 100644 index 8327bb19858..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - diff --git a/src/licensedcode/data/rules/unknown-license-reference_80.RULE b/src/licensedcode/data/rules/unknown-license-reference_80.RULE index c41526d2bb9..24e7469ca70 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_80.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_80.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/net_library_eula_TRK.htm +--- + http://www.microsoft.com/web/webpi/eula/net_library_eula_TRK.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_80.yml b/src/licensedcode/data/rules/unknown-license-reference_80.yml deleted file mode 100644 index eca2e921b8e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_80.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/net_library_eula_TRK.htm diff --git a/src/licensedcode/data/rules/unknown-license-reference_81.RULE b/src/licensedcode/data/rules/unknown-license-reference_81.RULE index 6e9de849a90..ba53c8231c6 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_81.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_81.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.microsoft.com/web/webpi/eula/net_library_eula_CSY.htm +--- + https://www.microsoft.com/web/webpi/eula/net_library_eula_CSY.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_81.yml b/src/licensedcode/data/rules/unknown-license-reference_81.yml deleted file mode 100644 index d318faf32cf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.microsoft.com/web/webpi/eula/net_library_eula_CSY.htm diff --git a/src/licensedcode/data/rules/unknown-license-reference_82.RULE b/src/licensedcode/data/rules/unknown-license-reference_82.RULE index 5b5855f5397..f6706a458e1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_82.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_82.RULE @@ -1 +1,9 @@ -https://newen.visualstudio.com/_git/NewenNetworks Library for netstandard 2.0 +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://newen.visualstudio.com/_git/NewenNetworks +--- + +https://newen.visualstudio.com/_git/NewenNetworks Library for netstandard 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_82.yml b/src/licensedcode/data/rules/unknown-license-reference_82.yml deleted file mode 100644 index c2e94d44d8e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://newen.visualstudio.com/_git/NewenNetworks diff --git a/src/licensedcode/data/rules/unknown-license-reference_83.RULE b/src/licensedcode/data/rules/unknown-license-reference_83.RULE index 03ff5248286..7dd6fe68ec4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_83.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_83.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkID=236061 +--- + http://go.microsoft.com/fwlink/?LinkID=236061 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_83.yml b/src/licensedcode/data/rules/unknown-license-reference_83.yml deleted file mode 100644 index 3d7ea60eadc..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_83.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkID=236061 diff --git a/src/licensedcode/data/rules/unknown-license-reference_84.RULE b/src/licensedcode/data/rules/unknown-license-reference_84.RULE index 6c37e1532e1..ee61c9c36f5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_84.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_84.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx +--- + https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_84.yml b/src/licensedcode/data/rules/unknown-license-reference_84.yml deleted file mode 100644 index 8a36e50d780..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_84.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx diff --git a/src/licensedcode/data/rules/unknown-license-reference_85.RULE b/src/licensedcode/data/rules/unknown-license-reference_85.RULE index feacef1100f..c2f51dd45a1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_85.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_85.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/lynxx131/aspnet5-microservice/blob/master/LICENSE +--- + https://github.com/lynxx131/aspnet5-microservice/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_85.yml b/src/licensedcode/data/rules/unknown-license-reference_85.yml deleted file mode 100644 index 18b8ae19d21..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_85.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/lynxx131/aspnet5-microservice/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_86.RULE b/src/licensedcode/data/rules/unknown-license-reference_86.RULE index a23e4ccb61b..bed87c69ab1 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_86.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_86.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.microsoft.com/web/webpi/eula/net_library_eula_CSY.htm +--- + http://www.microsoft.com/web/webpi/eula/net_library_eula_CSY.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_86.yml b/src/licensedcode/data/rules/unknown-license-reference_86.yml deleted file mode 100644 index 5cfac640e4e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_86.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.microsoft.com/web/webpi/eula/net_library_eula_CSY.htm diff --git a/src/licensedcode/data/rules/unknown-license-reference_87.RULE b/src/licensedcode/data/rules/unknown-license-reference_87.RULE index 5806c95445b..1ee604ad19a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_87.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_87.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + See LEGAL NOTICE * file for terms of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_87.yml b/src/licensedcode/data/rules/unknown-license-reference_87.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_88.RULE b/src/licensedcode/data/rules/unknown-license-reference_88.RULE index 1329a2536b4..46af8b0691a 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_88.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_88.RULE @@ -1 +1,9 @@ -* Licensed according to the LICENSE file in this repository. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + +* Licensed according to the LICENSE file in this repository. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_88.yml b/src/licensedcode/data/rules/unknown-license-reference_88.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_88.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_89.RULE b/src/licensedcode/data/rules/unknown-license-reference_89.RULE index fcf409773ac..994075351bc 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_89.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_89.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + under a different copyright. See that file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_89.yml b/src/licensedcode/data/rules/unknown-license-reference_89.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_89.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_9.RULE b/src/licensedcode/data/rules/unknown-license-reference_9.RULE index 61b215e7ee2..d406829183d 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_9.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_9.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License as given in the included file LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_9.yml b/src/licensedcode/data/rules/unknown-license-reference_9.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_90.RULE b/src/licensedcode/data/rules/unknown-license-reference_90.RULE index aa81e4463c1..352f4e04733 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_90.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_90.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LEGAL +--- + See accompanying LEGAL file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_90.yml b/src/licensedcode/data/rules/unknown-license-reference_90.yml deleted file mode 100644 index e2b802fe400..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_90.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LEGAL diff --git a/src/licensedcode/data/rules/unknown-license-reference_91.RULE b/src/licensedcode/data/rules/unknown-license-reference_91.RULE index 11a41c06468..e67704a6d89 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_91.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_91.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + This is free software. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_91.yml b/src/licensedcode/data/rules/unknown-license-reference_91.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_91.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_92.RULE b/src/licensedcode/data/rules/unknown-license-reference_92.RULE index af44bae640c..7bbf3db7737 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_92.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_92.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + See the included file LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_92.yml b/src/licensedcode/data/rules/unknown-license-reference_92.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_92.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_93.RULE b/src/licensedcode/data/rules/unknown-license-reference_93.RULE index 4591f085476..6b0b7146d92 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_93.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_93.RULE @@ -1 +1,9 @@ - * See the file LICENSE for details. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + + * See the file LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_93.yml b/src/licensedcode/data/rules/unknown-license-reference_93.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_93.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_94.RULE b/src/licensedcode/data/rules/unknown-license-reference_94.RULE index 3c572cf5594..2d0f7e9fc3c 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_94.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_94.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + // See the LICENSE.txt file for license information \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_94.yml b/src/licensedcode/data/rules/unknown-license-reference_94.yml deleted file mode 100644 index c8343ceee83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_94.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_95.RULE b/src/licensedcode/data/rules/unknown-license-reference_95.RULE index 0f16d8d4143..adf30c49151 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_95.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_95.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING +--- + Copyright: See COPYING file that comes with this distribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_95.yml b/src/licensedcode/data/rules/unknown-license-reference_95.yml deleted file mode 100644 index 4b7d3c21d09..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_95.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING diff --git a/src/licensedcode/data/rules/unknown-license-reference_96.RULE b/src/licensedcode/data/rules/unknown-license-reference_96.RULE index f6eebd7253a..1ffef8ddfdf 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_96.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_96.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYRIGHT +--- + See COPYRIGHT file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_96.yml b/src/licensedcode/data/rules/unknown-license-reference_96.yml deleted file mode 100644 index 32b26f7cc61..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYRIGHT diff --git a/src/licensedcode/data/rules/unknown-license-reference_97.RULE b/src/licensedcode/data/rules/unknown-license-reference_97.RULE index 8e4ed8d82d6..e5c4829cbfd 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_97.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_97.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + Please refer to the LICENSE.txt for licensing details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_97.yml b/src/licensedcode/data/rules/unknown-license-reference_97.yml deleted file mode 100644 index c8343ceee83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_97.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_98.RULE b/src/licensedcode/data/rules/unknown-license-reference_98.RULE index 098f17888ba..7bd5648c905 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_98.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_98.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING.txt +--- + see COPYING.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_98.yml b/src/licensedcode/data/rules/unknown-license-reference_98.yml deleted file mode 100644 index 545ced11f69..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_98.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_99.RULE b/src/licensedcode/data/rules/unknown-license-reference_99.RULE index 34bccbcdae6..fec526baee4 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_99.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_99.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + // See LICENSE for licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_99.yml b/src/licensedcode/data/rules/unknown-license-reference_99.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_99.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_and_apache-2.0_and_proprietary-license_1.RULE b/src/licensedcode/data/rules/unknown-license-reference_and_apache-2.0_and_proprietary-license_1.RULE index 788954beba3..3f7603585b8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_and_apache-2.0_and_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_and_apache-2.0_and_proprietary-license_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: unknown-license-reference AND apache-2.0 AND proprietary-license +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +notes: there are several license versions including Sleepycat, AGPL and lately Apache or commercial + See https://www.oracle.com/downloads/licenses/berkeleydb-jeoslicense.html for the latest + Apache license Download is only possible with a user login. +ignorable_urls: + - http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html +--- + * This file was distributed by Oracle as part of a version of Oracle Berkeley * DB Java Edition made available at: * diff --git a/src/licensedcode/data/rules/unknown-license-reference_and_apache-2.0_and_proprietary-license_1.yml b/src/licensedcode/data/rules/unknown-license-reference_and_apache-2.0_and_proprietary-license_1.yml deleted file mode 100644 index fe39a214b6e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_and_apache-2.0_and_proprietary-license_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: unknown-license-reference AND apache-2.0 AND proprietary-license -is_license_notice: yes -relevance: 99 -referenced_filenames: - - LICENSE -notes: there are several license versions including Sleepycat, AGPL and lately Apache or commercial - See https://www.oracle.com/downloads/licenses/berkeleydb-jeoslicense.html for the latest - Apache license Download is only possible with a user login. -ignorable_urls: - - http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html diff --git a/src/licensedcode/data/rules/unknown-license-reference_and_trademark-notice_1.RULE b/src/licensedcode/data/rules/unknown-license-reference_and_trademark-notice_1.RULE index 144e353c4af..1398275be76 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_and_trademark-notice_1.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_and_trademark-notice_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: unknown-license-reference AND generic-trademark +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +notes: See in https://github.com/PixarAnimationStudios/OpenTimelineIO +--- + License is open source software. Please see the LICENSE.txt for details. diff --git a/src/licensedcode/data/rules/unknown-license-reference_and_trademark-notice_1.yml b/src/licensedcode/data/rules/unknown-license-reference_and_trademark-notice_1.yml deleted file mode 100644 index dd1bd320ed3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_and_trademark-notice_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown-license-reference AND generic-trademark -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt -notes: See in https://github.com/PixarAnimationStudios/OpenTimelineIO diff --git a/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_1.RULE index 9b0ebce5070..3b3b2d7ed04 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference AND warranty-disclaimer +is_license_notice: yes +referenced_filenames: + - LICENSE +--- + # For complete copyright and license terms please see the LICENSE at the root of this # distribution (the "License"). All use of this software is governed by the License, # or, if provided, by the license below or the license accompanying this file. Do not diff --git a/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_1.yml deleted file mode 100644 index 73d8cc38015..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference AND warranty-disclaimer -is_license_notice: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_2.RULE b/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_2.RULE index 546a6c74ded..68d23943be8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_2.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_2.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference AND warranty-disclaimer +is_license_reference: yes +referenced_filenames: + - LICENSE +--- + See LICENSE file for details and (absence of) warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_2.yml b/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_2.yml deleted file mode 100644 index 689164bc731..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_and_warranty-disclaimer_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference AND warranty-disclaimer -is_license_reference: yes -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_batelle.RULE b/src/licensedcode/data/rules/unknown-license-reference_batelle.RULE index 2b53ea6b2b5..dc6badc89cd 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_batelle.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_batelle.RULE @@ -1 +1,9 @@ -See the LICENSE.txt file included with this software for license information. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE.txt +--- + +See the LICENSE.txt file included with this software for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_batelle.yml b/src/licensedcode/data/rules/unknown-license-reference_batelle.yml deleted file mode 100644 index c8343ceee83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_batelle.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_dual-licensed.RULE b/src/licensedcode/data/rules/unknown-license-reference_dual-licensed.RULE index 5215994f495..b4ecaebc969 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_dual-licensed.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_dual-licensed.RULE @@ -1 +1,7 @@ -dual-licensed \ No newline at end of file +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +--- + +dual-licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_dual-licensed.yml b/src/licensedcode/data/rules/unknown-license-reference_dual-licensed.yml deleted file mode 100644 index 4254c8e2c41..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_dual-licensed.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_not-a-license_259.RULE b/src/licensedcode/data/rules/unknown-license-reference_not-a-license_259.RULE index d8242e9a8cf..0fac95aa375 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_not-a-license_259.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_not-a-license_259.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +notes: Seen in a debian copyright for KDE code +--- + The advertising clause requiring mention in adverts must never be included. The Facebook patent grant must never be included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_not-a-license_259.yml b/src/licensedcode/data/rules/unknown-license-reference_not-a-license_259.yml deleted file mode 100644 index a8c0ad77d88..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_not-a-license_259.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -notes: Seen in a debian copyright for KDE code diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_115.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_115.RULE index a1dd0bb4b19..b0c2322f12b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_115.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_115.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/enisn/Xamarin.Forms.Contacts +--- + https://github.com/enisn/Xamarin.Forms.Contacts \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_115.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_115.yml deleted file mode 100644 index 63067fbbb9b..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_115.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/enisn/Xamarin.Forms.Contacts diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_13.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_13.RULE index 48a8f64bf9d..9bfd39413d2 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_13.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_13.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://go.microsoft.com/fwlink/?LinkId=210218 +--- + http://go.microsoft.com/fwlink/?LinkId=210218 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_13.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_13.yml deleted file mode 100644 index c1794770735..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://go.microsoft.com/fwlink/?LinkId=210218 diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_172.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_172.RULE index 86b7e912276..ba7c861ab8e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_172.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_172.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/medalinouira/Xamarin.Forms.Navigation +--- + https://github.com/medalinouira/Xamarin.Forms.Navigation \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_172.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_172.yml deleted file mode 100644 index 6bfea779f73..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_172.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/medalinouira/Xamarin.Forms.Navigation diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_220.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_220.RULE index ffd8b2f1b51..d3c58202864 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_220.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_220.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/srjohn/johnson.net +--- + https://github.com/srjohn/johnson.net \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_220.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_220.yml deleted file mode 100644 index 9551ba6c96e..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_220.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/srjohn/johnson.net diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_24.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_24.RULE index fec8b4a7a56..a9af80cf2f9 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_24.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_24.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + http://licenseurl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_24.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_24.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_249.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_249.RULE index 30341ad4ac5..59355abdd71 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_249.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_249.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://gitlab.com/czubehead/csharp-aes/blob/master/LICENSE +--- + https://gitlab.com/czubehead/csharp-aes/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_249.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_249.yml deleted file mode 100644 index ffa42f6cfa6..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_249.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://gitlab.com/czubehead/csharp-aes/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_25.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_25.RULE index bead2cfb803..5ddcc38523b 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_25.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_25.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + http://license_url_here_or_delete_this_line/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_25.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_25.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_251.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_251.RULE index b0f7ed2a503..f16db6686db 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_251.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_251.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?LinkID=267589&clcid=0x404 +--- + https://go.microsoft.com/fwlink/?LinkID=267589&clcid=0x404 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_251.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_251.yml deleted file mode 100644 index 8f042c3f224..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_251.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?LinkID=267589&clcid=0x404 diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_252.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_252.RULE index 5bd67abdb1f..bd025d5a56f 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_252.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_252.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://go.microsoft.com/fwlink/?LinkID=267589&clcid=0x410 +--- + https://go.microsoft.com/fwlink/?LinkID=267589&clcid=0x410 \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_252.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_252.yml deleted file mode 100644 index 80c228f184c..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_252.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://go.microsoft.com/fwlink/?LinkID=267589&clcid=0x410 diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_258.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_258.RULE index be49aa195e4..ad733e50a3e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_258.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_258.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://soarus.co.uk/ +--- + http://Soarus.co.uk \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_258.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_258.yml deleted file mode 100644 index 5b829134c0f..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_258.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://soarus.co.uk/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_361.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_361.RULE index 3e5f96ebe92..ad272ebffee 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_361.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_361.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://unitoolkit.com/ +--- + http://unitoolkit.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_361.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_361.yml deleted file mode 100644 index 2e3fe3d7db8..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_361.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://unitoolkit.com/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_365.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_365.RULE index 848299aa6d0..d864b53e5b8 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_365.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_365.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://wicresoft.azurewebsites.net/ +--- + http://Wicresoft.azurewebsites.net \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_365.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_365.yml deleted file mode 100644 index 2de75611dc3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_365.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://wicresoft.azurewebsites.net/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_419.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_419.RULE index 9ec81704458..68fc081b127 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_419.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_419.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.scict.ir/ +--- + http://www.scict.ir/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_419.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_419.yml deleted file mode 100644 index 40f8dd26c88..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_419.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.scict.ir/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_420.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_420.RULE index 53a27a9d5cc..237ecf8a371 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_420.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_420.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.skewworks.com/netmf/ctr +--- + http://www.skewworks.com/netmf/ctr \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_420.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_420.yml deleted file mode 100644 index 467990f09ec..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_420.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.skewworks.com/netmf/ctr diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_422.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_422.RULE index b8757fae52b..f5ed95cef6e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_422.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_422.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.systemcoreplus.com/ +--- + http://www.systemcoreplus.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_422.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_422.yml deleted file mode 100644 index 2e2852f77fc..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_422.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.systemcoreplus.com/ diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_96.RULE b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_96.RULE index f84bbe57b15..10f328161e5 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_96.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_96.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://github.com/Coding-Keeda +--- + https://github.com/Coding-Keeda \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_96.yml b/src/licensedcode/data/rules/unknown-license-reference_nuget_url_96.yml deleted file mode 100644 index 7e9dae3a0c0..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_nuget_url_96.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://github.com/Coding-Keeda diff --git a/src/licensedcode/data/rules/unknown-license-reference_see-license_1.RULE b/src/licensedcode/data/rules/unknown-license-reference_see-license_1.RULE index 95d763606a3..03fed54d88e 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_see-license_1.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_see-license_1.RULE @@ -1 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE +--- + See LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_see-license_1.yml b/src/licensedcode/data/rules/unknown-license-reference_see-license_1.yml deleted file mode 100644 index 81167059c83..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_see-license_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_see-license_2.RULE b/src/licensedcode/data/rules/unknown-license-reference_see-license_2.RULE index 308f7c378d5..f34b0f6e3a0 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_see-license_2.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_see-license_2.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENCE +--- + See LICENCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_see-license_2.yml b/src/licensedcode/data/rules/unknown-license-reference_see-license_2.yml deleted file mode 100644 index 6857d124e06..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_see-license_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENCE diff --git a/src/licensedcode/data/rules/unknown-license-reference_see_license_at_end.RULE b/src/licensedcode/data/rules/unknown-license-reference_see_license_at_end.RULE index 7bd4df201c5..3e505afed25 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_see_license_at_end.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_see_license_at_end.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + See license at end. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_see_license_at_end.yml b/src/licensedcode/data/rules/unknown-license-reference_see_license_at_end.yml deleted file mode 100644 index fef86f09de3..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_see_license_at_end.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown-license-reference_unknown_29.RULE b/src/licensedcode/data/rules/unknown-license-reference_unknown_29.RULE index b91439e8dc3..e3f3eef9c22 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_unknown_29.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_unknown_29.RULE @@ -1,5 +1,13 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License ------- -There are two licenses for the code and data. See the [LICENSE]( file for details. +There are two licenses for the code and data. See the [LICENSE]( file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_unknown_29.yml b/src/licensedcode/data/rules/unknown-license-reference_unknown_29.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_unknown_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown-license-reference_unknown_58.RULE b/src/licensedcode/data/rules/unknown-license-reference_unknown_58.RULE index 4acd9b7d484..c3ce77bfcdd 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_unknown_58.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_unknown_58.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - license.txt +--- + This notice MUST stay intact for use (see license.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_unknown_58.yml b/src/licensedcode/data/rules/unknown-license-reference_unknown_58.yml deleted file mode 100644 index 97dca052747..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_unknown_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - license.txt diff --git a/src/licensedcode/data/rules/unknown-license-reference_unknown_61.RULE b/src/licensedcode/data/rules/unknown-license-reference_unknown_61.RULE index 1a22d1d960d..1d7c4806884 100644 --- a/src/licensedcode/data/rules/unknown-license-reference_unknown_61.RULE +++ b/src/licensedcode/data/rules/unknown-license-reference_unknown_61.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code (usually found in the root of this application). \ No newline at end of file + * file that was distributed with this source code (usually found in the root of this application). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown-license-reference_unknown_61.yml b/src/licensedcode/data/rules/unknown-license-reference_unknown_61.yml deleted file mode 100644 index d72e93d5daf..00000000000 --- a/src/licensedcode/data/rules/unknown-license-reference_unknown_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown_1.RULE b/src/licensedcode/data/rules/unknown_1.RULE index 8073b98891c..bfc9e452f13 100644 --- a/src/licensedcode/data/rules/unknown_1.RULE +++ b/src/licensedcode/data/rules/unknown_1.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + and is not GPL'd source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_1.yml b/src/licensedcode/data/rules/unknown_1.yml deleted file mode 100644 index dbd67a903bb..00000000000 --- a/src/licensedcode/data/rules/unknown_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown_10.RULE b/src/licensedcode/data/rules/unknown_10.RULE index f17a979169b..9f65e366835 100644 --- a/src/licensedcode/data/rules/unknown_10.RULE +++ b/src/licensedcode/data/rules/unknown_10.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + "See LICENSE file for details" \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_10.yml b/src/licensedcode/data/rules/unknown_10.yml deleted file mode 100644 index 6e26383261e..00000000000 --- a/src/licensedcode/data/rules/unknown_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown_11.RULE b/src/licensedcode/data/rules/unknown_11.RULE index 145c86d75df..06d978fb50d 100644 --- a/src/licensedcode/data/rules/unknown_11.RULE +++ b/src/licensedcode/data/rules/unknown_11.RULE @@ -1 +1,7 @@ -See the documentation for further information on copyrights, or contact the author. +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + +See the documentation for further information on copyrights, or contact the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_11.yml b/src/licensedcode/data/rules/unknown_11.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_12.RULE b/src/licensedcode/data/rules/unknown_12.RULE index 39f8415e9ae..1642b607808 100644 --- a/src/licensedcode/data/rules/unknown_12.RULE +++ b/src/licensedcode/data/rules/unknown_12.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown-license-reference +is_license_intro: yes +relevance: 100 +minimum_coverage: 100 +--- + This software is available subject to the conditions and terms laid out below. By downloading and using this software you are agreeing to the following conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_12.yml b/src/licensedcode/data/rules/unknown_12.yml deleted file mode 100644 index 5a2b0158f1c..00000000000 --- a/src/licensedcode/data/rules/unknown_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown-license-reference -is_license_intro: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown_14.RULE b/src/licensedcode/data/rules/unknown_14.RULE index 49bca87c3f2..4312232d484 100644 --- a/src/licensedcode/data/rules/unknown_14.RULE +++ b/src/licensedcode/data/rules/unknown_14.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +--- + License: [Unknown][Unknown] \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_14.yml b/src/licensedcode/data/rules/unknown_14.yml deleted file mode 100644 index 78031a74f1b..00000000000 --- a/src/licensedcode/data/rules/unknown_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown_15.RULE b/src/licensedcode/data/rules/unknown_15.RULE index dd166b79c09..6952409326f 100644 --- a/src/licensedcode/data/rules/unknown_15.RULE +++ b/src/licensedcode/data/rules/unknown_15.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + `Other` - Non-standard license, usually unique to the project itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_15.yml b/src/licensedcode/data/rules/unknown_15.yml deleted file mode 100644 index dbd67a903bb..00000000000 --- a/src/licensedcode/data/rules/unknown_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown_17.RULE b/src/licensedcode/data/rules/unknown_17.RULE index 05d95522d28..ebc718b26bf 100644 --- a/src/licensedcode/data/rules/unknown_17.RULE +++ b/src/licensedcode/data/rules/unknown_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, diff --git a/src/licensedcode/data/rules/unknown_17.yml b/src/licensedcode/data/rules/unknown_17.yml deleted file mode 100644 index fc3d42b20a1..00000000000 --- a/src/licensedcode/data/rules/unknown_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unknown_18.RULE b/src/licensedcode/data/rules/unknown_18.RULE index 775e4f8e3b8..463f929145c 100644 --- a/src/licensedcode/data/rules/unknown_18.RULE +++ b/src/licensedcode/data/rules/unknown_18.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + This software is provided AS-IS with no warranty, either express or implied. diff --git a/src/licensedcode/data/rules/unknown_18.yml b/src/licensedcode/data/rules/unknown_18.yml deleted file mode 100644 index eb9a5834644..00000000000 --- a/src/licensedcode/data/rules/unknown_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_2.RULE b/src/licensedcode/data/rules/unknown_2.RULE index e846aed2b82..f97fb8ff05b 100644 --- a/src/licensedcode/data/rules/unknown_2.RULE +++ b/src/licensedcode/data/rules/unknown_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown +is_license_notice: yes +minimum_coverage: 100 +--- + This copyright does however _not_ include the ELF hash() function which I currently don't know which licence or copyright it -has. Please inform me if you know. +has. Please inform me if you know. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_2.yml b/src/licensedcode/data/rules/unknown_2.yml deleted file mode 100644 index a4b53f9ce16..00000000000 --- a/src/licensedcode/data/rules/unknown_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_notice: yes -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown_22.RULE b/src/licensedcode/data/rules/unknown_22.RULE index f38d32c012a..14762784bd5 100644 --- a/src/licensedcode/data/rules/unknown_22.RULE +++ b/src/licensedcode/data/rules/unknown_22.RULE @@ -1,4 +1,10 @@ +--- +license_expression: unknown +is_license_notice: yes +notes: found in https://github.com/CERTCC/trommel +--- + TROMMEL includes and/or can make use of certain third party software ("Third Party Software"). The Third Party Software that is used by TROMMEL is dependent upon your system configuration, but typically includes the software identified below. By using TROMMEL, You agree to comply with any and all relevant Third Party Software terms and conditions contained in any such Third Party Software or separate license file distributed with such Third Party Software. The parties who own the Third Party Software ("Third Party Licensors") are intended third party beneficiaries to this License with respect to the terms applicable to their Third Party Software. Third Party Software licenses only apply to the Third Party Software and not any other portion of TROMMEL or TROMMEL as a whole. 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. -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. +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. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_22.yml b/src/licensedcode/data/rules/unknown_22.yml deleted file mode 100644 index 97039c1478a..00000000000 --- a/src/licensedcode/data/rules/unknown_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_notice: yes -notes: found in https://github.com/CERTCC/trommel diff --git a/src/licensedcode/data/rules/unknown_23.RULE b/src/licensedcode/data/rules/unknown_23.RULE index 3bf72161fd9..51dafbd1c8d 100644 --- a/src/licensedcode/data/rules/unknown_23.RULE +++ b/src/licensedcode/data/rules/unknown_23.RULE @@ -1,3 +1,12 @@ +--- +license_expression: unknown +is_license_reference: yes +notes: seen with FFpack at https://github.com/notlion/libluaav-wip/blob/master/gamma/fftpack%2B%2B2.cpp + technically since this is a US agency, it may be public domain in the US. +ignorable_authors: + - the National Center for Atmospheric Research +--- + * There appears to be no explicit license for . However, the * package has been incorporated verbatim into a large number of software * systems over the years with numerous types of license without complaint diff --git a/src/licensedcode/data/rules/unknown_23.yml b/src/licensedcode/data/rules/unknown_23.yml deleted file mode 100644 index eda6f630605..00000000000 --- a/src/licensedcode/data/rules/unknown_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown -is_license_reference: yes -notes: seen with FFpack at https://github.com/notlion/libluaav-wip/blob/master/gamma/fftpack%2B%2B2.cpp - technically since this is a US agency, it may be public domain in the US. -ignorable_authors: - - the National Center for Atmospheric Research diff --git a/src/licensedcode/data/rules/unknown_24.RULE b/src/licensedcode/data/rules/unknown_24.RULE index d61a56d46dd..41a66a221cd 100644 --- a/src/licensedcode/data/rules/unknown_24.RULE +++ b/src/licensedcode/data/rules/unknown_24.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + * Portions of this module are based on public domain software and/or * software copyright \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_24.yml b/src/licensedcode/data/rules/unknown_24.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_3.RULE b/src/licensedcode/data/rules/unknown_3.RULE index c53cb6e24ec..83958d4adfd 100644 --- a/src/licensedcode/data/rules/unknown_3.RULE +++ b/src/licensedcode/data/rules/unknown_3.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 90 +notes: seen in BCM code +--- + label-3PIP \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_3.yml b/src/licensedcode/data/rules/unknown_3.yml deleted file mode 100644 index ae4b868d56c..00000000000 --- a/src/licensedcode/data/rules/unknown_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 90 -notes: seen in BCM code diff --git a/src/licensedcode/data/rules/unknown_32.RULE b/src/licensedcode/data/rules/unknown_32.RULE index 3bfb3d2db4e..82a850204c2 100644 --- a/src/licensedcode/data/rules/unknown_32.RULE +++ b/src/licensedcode/data/rules/unknown_32.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + under other licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_32.yml b/src/licensedcode/data/rules/unknown_32.yml deleted file mode 100644 index dbd67a903bb..00000000000 --- a/src/licensedcode/data/rules/unknown_32.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unknown_35.RULE b/src/licensedcode/data/rules/unknown_35.RULE index be33bae0f7b..9e55439976c 100644 --- a/src/licensedcode/data/rules/unknown_35.RULE +++ b/src/licensedcode/data/rules/unknown_35.RULE @@ -1 +1,7 @@ -patent grant +--- +license_expression: unknown +is_license_reference: yes +relevance: 99 +--- + +patent grant \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_35.yml b/src/licensedcode/data/rules/unknown_35.yml deleted file mode 100644 index 125c3e3abef..00000000000 --- a/src/licensedcode/data/rules/unknown_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/unknown_36.RULE b/src/licensedcode/data/rules/unknown_36.RULE index 8225563041f..343e2189676 100644 --- a/src/licensedcode/data/rules/unknown_36.RULE +++ b/src/licensedcode/data/rules/unknown_36.RULE @@ -1 +1,7 @@ - advertising clause +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + + advertising clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_36.yml b/src/licensedcode/data/rules/unknown_36.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_4.RULE b/src/licensedcode/data/rules/unknown_4.RULE index 9c4069b5a93..750d6bbbdf5 100644 --- a/src/licensedcode/data/rules/unknown_4.RULE +++ b/src/licensedcode/data/rules/unknown_4.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown +is_license_tag: yes +relevance: 100 +minimum_coverage: 100 +notes: Used in brew for things that cannot be set in an SPDX expression +--- + license :cannot_represent \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_4.yml b/src/licensedcode/data/rules/unknown_4.yml deleted file mode 100644 index 180675ce5e2..00000000000 --- a/src/licensedcode/data/rules/unknown_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown -is_license_tag: yes -relevance: 100 -minimum_coverage: 100 -notes: Used in brew for things that cannot be set in an SPDX expression diff --git a/src/licensedcode/data/rules/unknown_44.RULE b/src/licensedcode/data/rules/unknown_44.RULE index 5200c42fa88..1d415ab494e 100644 --- a/src/licensedcode/data/rules/unknown_44.RULE +++ b/src/licensedcode/data/rules/unknown_44.RULE @@ -1,2 +1,9 @@ +--- +license_expression: free-unknown +is_license_tag: yes +relevance: 60 +notes: Creative commons tag seen in RDF or XML documents +--- + cc:license -cc:license \ No newline at end of file +cc:license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_44.yml b/src/licensedcode/data/rules/unknown_44.yml deleted file mode 100644 index f78ec5c22fc..00000000000 --- a/src/licensedcode/data/rules/unknown_44.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: free-unknown -is_license_tag: yes -relevance: 60 -notes: Creative commons tag seen in RDF or XML documents diff --git a/src/licensedcode/data/rules/unknown_45.RULE b/src/licensedcode/data/rules/unknown_45.RULE index 169f325316f..9663e687304 100644 --- a/src/licensedcode/data/rules/unknown_45.RULE +++ b/src/licensedcode/data/rules/unknown_45.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 70 +notes: seen in docbook documentations +--- + DOCTYPE legalnotice \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_45.yml b/src/licensedcode/data/rules/unknown_45.yml deleted file mode 100644 index 050b0024dbb..00000000000 --- a/src/licensedcode/data/rules/unknown_45.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 70 -notes: seen in docbook documentations diff --git a/src/licensedcode/data/rules/unknown_47.RULE b/src/licensedcode/data/rules/unknown_47.RULE index 0ee07e6a6cf..9ef2f4d5d26 100644 --- a/src/licensedcode/data/rules/unknown_47.RULE +++ b/src/licensedcode/data/rules/unknown_47.RULE @@ -1 +1,9 @@ -resource="http://creativecommons.org/ns#Reproduction" /> +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 70 +ignorable_urls: + - http://creativecommons.org/ns#Reproduction +--- + +resource="http://creativecommons.org/ns#Reproduction" /> \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_47.yml b/src/licensedcode/data/rules/unknown_47.yml deleted file mode 100644 index abcaebbb185..00000000000 --- a/src/licensedcode/data/rules/unknown_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 70 -ignorable_urls: - - http://creativecommons.org/ns#Reproduction diff --git a/src/licensedcode/data/rules/unknown_48.RULE b/src/licensedcode/data/rules/unknown_48.RULE index 77c1e33cd31..f38324f8142 100644 --- a/src/licensedcode/data/rules/unknown_48.RULE +++ b/src/licensedcode/data/rules/unknown_48.RULE @@ -1 +1,9 @@ -resource="http://creativecommons.org/ns#Distribution" /> +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 70 +ignorable_urls: + - http://creativecommons.org/ns#Distribution +--- + +resource="http://creativecommons.org/ns#Distribution" /> \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_48.yml b/src/licensedcode/data/rules/unknown_48.yml deleted file mode 100644 index a40a95019c6..00000000000 --- a/src/licensedcode/data/rules/unknown_48.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 70 -ignorable_urls: - - http://creativecommons.org/ns#Distribution diff --git a/src/licensedcode/data/rules/unknown_49.RULE b/src/licensedcode/data/rules/unknown_49.RULE index dfa375d6679..17f84fe2ce6 100644 --- a/src/licensedcode/data/rules/unknown_49.RULE +++ b/src/licensedcode/data/rules/unknown_49.RULE @@ -1 +1,9 @@ -resource="http://creativecommons.org/ns#DerivativeWorks" /> +--- +license_expression: free-unknown +is_license_reference: yes +relevance: 70 +ignorable_urls: + - http://creativecommons.org/ns#DerivativeWorks +--- + +resource="http://creativecommons.org/ns#DerivativeWorks" /> \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_49.yml b/src/licensedcode/data/rules/unknown_49.yml deleted file mode 100644 index b7ff50b330c..00000000000 --- a/src/licensedcode/data/rules/unknown_49.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: free-unknown -is_license_reference: yes -relevance: 70 -ignorable_urls: - - http://creativecommons.org/ns#DerivativeWorks diff --git a/src/licensedcode/data/rules/unknown_5.RULE b/src/licensedcode/data/rules/unknown_5.RULE index a8b3cc50222..ae17b4795cf 100644 --- a/src/licensedcode/data/rules/unknown_5.RULE +++ b/src/licensedcode/data/rules/unknown_5.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +--- + cannot be licensed under the MIT licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_5.yml b/src/licensedcode/data/rules/unknown_5.yml deleted file mode 100644 index 03a1c6b4e53..00000000000 --- a/src/licensedcode/data/rules/unknown_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/unknown_50.RULE b/src/licensedcode/data/rules/unknown_50.RULE index bbb66d977ca..e1bb243a78b 100644 --- a/src/licensedcode/data/rules/unknown_50.RULE +++ b/src/licensedcode/data/rules/unknown_50.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 70 +--- + protected by copyrights \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_50.yml b/src/licensedcode/data/rules/unknown_50.yml deleted file mode 100644 index b3a9a3a7aab..00000000000 --- a/src/licensedcode/data/rules/unknown_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 70 diff --git a/src/licensedcode/data/rules/unknown_54.RULE b/src/licensedcode/data/rules/unknown_54.RULE index 6b1411f7ec7..13640d0a6f5 100644 --- a/src/licensedcode/data/rules/unknown_54.RULE +++ b/src/licensedcode/data/rules/unknown_54.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + agree to this license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_54.yml b/src/licensedcode/data/rules/unknown_54.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_55.RULE b/src/licensedcode/data/rules/unknown_55.RULE index 1449f6b0285..14b49d6d9fc 100644 --- a/src/licensedcode/data/rules/unknown_55.RULE +++ b/src/licensedcode/data/rules/unknown_55.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + under the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_55.yml b/src/licensedcode/data/rules/unknown_55.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_56.RULE b/src/licensedcode/data/rules/unknown_56.RULE index 00001412a0c..ea0287399b6 100644 --- a/src/licensedcode/data/rules/unknown_56.RULE +++ b/src/licensedcode/data/rules/unknown_56.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + under the standard license \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_56.yml b/src/licensedcode/data/rules/unknown_56.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_6.RULE b/src/licensedcode/data/rules/unknown_6.RULE index ea517cd7a79..493de1f717b 100644 --- a/src/licensedcode/data/rules/unknown_6.RULE +++ b/src/licensedcode/data/rules/unknown_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: unknown +is_license_notice: yes +relevance: 100 +notes: This looks like an apache but is unknown and has a dead link. See https://github.com/seungyongshim/lsbeat/blob/5dada3b7a697ef3b248e57f61421e950a58382d6/LICENSE.txt +ignorable_urls: + - http://www.mirero.co.kr/licenses/LICENSE-1.0 +--- + Licensed under the Mirero License, Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/unknown_6.yml b/src/licensedcode/data/rules/unknown_6.yml deleted file mode 100644 index 26e606fc327..00000000000 --- a/src/licensedcode/data/rules/unknown_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown -is_license_notice: yes -relevance: 100 -notes: This looks like an apache but is unknown and has a dead link. See https://github.com/seungyongshim/lsbeat/blob/5dada3b7a697ef3b248e57f61421e950a58382d6/LICENSE.txt -ignorable_urls: - - http://www.mirero.co.kr/licenses/LICENSE-1.0 diff --git a/src/licensedcode/data/rules/unknown_7.RULE b/src/licensedcode/data/rules/unknown_7.RULE index 0a615b69e1c..15113c38e22 100644 --- a/src/licensedcode/data/rules/unknown_7.RULE +++ b/src/licensedcode/data/rules/unknown_7.RULE @@ -1,2 +1,8 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 100 +--- + See the documentation for further copyright information or contact - the author. + the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_7.yml b/src/licensedcode/data/rules/unknown_7.yml deleted file mode 100644 index ddd0ee2c1d7..00000000000 --- a/src/licensedcode/data/rules/unknown_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_71.RULE b/src/licensedcode/data/rules/unknown_71.RULE index 4aac42c99b0..1917046f7f6 100644 --- a/src/licensedcode/data/rules/unknown_71.RULE +++ b/src/licensedcode/data/rules/unknown_71.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + constitute the entire agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_71.yml b/src/licensedcode/data/rules/unknown_71.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_71.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_8.RULE b/src/licensedcode/data/rules/unknown_8.RULE index 6fc91823739..93f21e99f91 100644 --- a/src/licensedcode/data/rules/unknown_8.RULE +++ b/src/licensedcode/data/rules/unknown_8.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + non-GPLv3 programs \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_8.yml b/src/licensedcode/data/rules/unknown_8.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_9.RULE b/src/licensedcode/data/rules/unknown_9.RULE index 1f4bc17ba38..3ef36d486d4 100644 --- a/src/licensedcode/data/rules/unknown_9.RULE +++ b/src/licensedcode/data/rules/unknown_9.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_tag: yes +relevance: 100 +--- + license = "none \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_9.yml b/src/licensedcode/data/rules/unknown_9.yml deleted file mode 100644 index 71730a037e4..00000000000 --- a/src/licensedcode/data/rules/unknown_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_1.RULE index 1a2e4d70f79..cd5f94e44f2 100644 --- a/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown AND gpl-2.0-plus +is_license_reference: yes +relevance: 100 +--- + unknown license, probably GPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_1.yml deleted file mode 100644 index bd584c2a97a..00000000000 --- a/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown AND gpl-2.0-plus -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE index 80b1c07e235..24ca801c09f 100644 --- a/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_or_lgpl-2.0-plus_1.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown AND (gpl-2.0-plus OR lgpl-2.0-plus) +is_license_reference: yes +relevance: 100 +--- + unknown license, probably GPLv2+ or LGPLv2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml b/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml deleted file mode 100644 index 1d1e6a0e879..00000000000 --- a/src/licensedcode/data/rules/unknown_and_gpl-2.0-plus_or_lgpl-2.0-plus_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown AND (gpl-2.0-plus OR lgpl-2.0-plus) -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_free_1.RULE b/src/licensedcode/data/rules/unknown_free_1.RULE index 5a5f5c4f828..1867a5ca858 100644 --- a/src/licensedcode/data/rules/unknown_free_1.RULE +++ b/src/licensedcode/data/rules/unknown_free_1.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + which was free for commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_free_1.yml b/src/licensedcode/data/rules/unknown_free_1.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_free_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_free_2.RULE b/src/licensedcode/data/rules/unknown_free_2.RULE index 32c67b0766c..fb73a32cdca 100644 --- a/src/licensedcode/data/rules/unknown_free_2.RULE +++ b/src/licensedcode/data/rules/unknown_free_2.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + free for commercial use \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_free_2.yml b/src/licensedcode/data/rules/unknown_free_2.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_free_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_french_1.RULE b/src/licensedcode/data/rules/unknown_french_1.RULE index 80c9820bdfa..55ec804d993 100644 --- a/src/licensedcode/data/rules/unknown_french_1.RULE +++ b/src/licensedcode/data/rules/unknown_french_1.RULE @@ -1 +1,9 @@ +--- +license_expression: unknown +is_license_notice: yes +relevance: 80 +minimum_coverage: 90 +notes: in french +--- + couvertes par des copyrights. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_french_1.yml b/src/licensedcode/data/rules/unknown_french_1.yml deleted file mode 100644 index 787fb38f8d7..00000000000 --- a/src/licensedcode/data/rules/unknown_french_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown -is_license_notice: yes -relevance: 80 -minimum_coverage: 90 -notes: in french diff --git a/src/licensedcode/data/rules/unknown_german_1.RULE b/src/licensedcode/data/rules/unknown_german_1.RULE index 5c8fa2a16d0..f0663fe8c83 100644 --- a/src/licensedcode/data/rules/unknown_german_1.RULE +++ b/src/licensedcode/data/rules/unknown_german_1.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: in german +--- + Nicht fur kommerzielle Zwecke gedacht. - Keine Garantie auf irgendwas. + Keine Garantie auf irgendwas. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_german_1.yml b/src/licensedcode/data/rules/unknown_german_1.yml deleted file mode 100644 index 8136fef52ab..00000000000 --- a/src/licensedcode/data/rules/unknown_german_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: in german diff --git a/src/licensedcode/data/rules/unknown_gpl-3.0_15.RULE b/src/licensedcode/data/rules/unknown_gpl-3.0_15.RULE index b4a821bf5d4..5eb5ea70f92 100644 --- a/src/licensedcode/data/rules/unknown_gpl-3.0_15.RULE +++ b/src/licensedcode/data/rules/unknown_gpl-3.0_15.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + license exceeds allowable cell character limit \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_gpl-3.0_15.yml b/src/licensedcode/data/rules/unknown_gpl-3.0_15.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_gpl-3.0_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_kernel.RULE b/src/licensedcode/data/rules/unknown_kernel.RULE index b09bdb7c9c5..f96e3febe86 100644 --- a/src/licensedcode/data/rules/unknown_kernel.RULE +++ b/src/licensedcode/data/rules/unknown_kernel.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + Licence: Unknown Found in package in hex form; no licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel.yml b/src/licensedcode/data/rules/unknown_kernel.yml deleted file mode 100644 index 095b73ec8ee..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel10.RULE b/src/licensedcode/data/rules/unknown_kernel10.RULE index 96e9a258e88..e6538c5708b 100644 --- a/src/licensedcode/data/rules/unknown_kernel10.RULE +++ b/src/licensedcode/data/rules/unknown_kernel10.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + Licence: -Found in hex form in kernel source. +Found in hex form in kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel10.yml b/src/licensedcode/data/rules/unknown_kernel10.yml deleted file mode 100644 index 095b73ec8ee..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel11.RULE b/src/licensedcode/data/rules/unknown_kernel11.RULE index 31ee88c5da6..200dd6feb82 100644 --- a/src/licensedcode/data/rules/unknown_kernel11.RULE +++ b/src/licensedcode/data/rules/unknown_kernel11.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + Licence: Unknown -Found in hex form in kernel source, but source allegedly available at +Found in hex form in kernel source, but source allegedly available at \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel11.yml b/src/licensedcode/data/rules/unknown_kernel11.yml deleted file mode 100644 index 095b73ec8ee..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel12.RULE b/src/licensedcode/data/rules/unknown_kernel12.RULE index 035927b5267..b35dad372d4 100644 --- a/src/licensedcode/data/rules/unknown_kernel12.RULE +++ b/src/licensedcode/data/rules/unknown_kernel12.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown +is_license_notice: yes +notes: Seen in the kernel +ignorable_authors: + - Intel Corporation. Intel +--- + Attempts were made, unsuccessfully, to contact the original author of this code (Michael Morrow, Intel). Below is the original copyright notice. @@ -10,4 +18,4 @@ liability for infringement of any proprietary rights, and including the warranties of merchantability and fitness for a particular purpose. Intel does not assume any responsibility for and errors which may appear in this program -not any responsibility to update it. +not any responsibility to update it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel12.yml b/src/licensedcode/data/rules/unknown_kernel12.yml deleted file mode 100644 index 25350efbbd5..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown -is_license_notice: yes -notes: Seen in the kernel -ignorable_authors: - - Intel Corporation. Intel diff --git a/src/licensedcode/data/rules/unknown_kernel13.RULE b/src/licensedcode/data/rules/unknown_kernel13.RULE index 33e9f579d10..034c3af0dcd 100644 --- a/src/licensedcode/data/rules/unknown_kernel13.RULE +++ b/src/licensedcode/data/rules/unknown_kernel13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unknown +is_license_notice: yes +notes: Seen in the kernel +ignorable_authors: + - Intel Corporation. Intel +--- + This software has been developed by Intel Corporation. Intel specifically disclaims all warranties, express or implied, and all liability, including consequential and @@ -6,4 +14,4 @@ liability for infringement of any proprietary rights, and including the warranties of merchantability and fitness for a particular purpose. Intel does not assume any responsibility for and errors which may appear in this program -not any responsibility to update it. +not any responsibility to update it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel13.yml b/src/licensedcode/data/rules/unknown_kernel13.yml deleted file mode 100644 index 25350efbbd5..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unknown -is_license_notice: yes -notes: Seen in the kernel -ignorable_authors: - - Intel Corporation. Intel diff --git a/src/licensedcode/data/rules/unknown_kernel2.RULE b/src/licensedcode/data/rules/unknown_kernel2.RULE index ab95be831a7..67007f81f20 100644 --- a/src/licensedcode/data/rules/unknown_kernel2.RULE +++ b/src/licensedcode/data/rules/unknown_kernel2.RULE @@ -1,6 +1,12 @@ +--- +license_expression: unknown +is_license_notice: yes +notes: Seen in the kernel +--- + Licence: Unknown Found in alsa- in hex form with a comment claiming to be GPLv2+, but without source -- and with another comment saying "ESS drops binary dsp code images on our heads, but we don't get to see -specs on the dsp." +specs on the dsp." \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel2.yml b/src/licensedcode/data/rules/unknown_kernel2.yml deleted file mode 100644 index 0d113e49ce9..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_notice: yes -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel3.RULE b/src/licensedcode/data/rules/unknown_kernel3.RULE index 9f774592d06..84cf93e3979 100644 --- a/src/licensedcode/data/rules/unknown_kernel3.RULE +++ b/src/licensedcode/data/rules/unknown_kernel3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + Licence: Unknown -Found package in hex form, with the following comment: +Found package in hex form, with the following comment: \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel3.yml b/src/licensedcode/data/rules/unknown_kernel3.yml deleted file mode 100644 index 095b73ec8ee..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel4.RULE b/src/licensedcode/data/rules/unknown_kernel4.RULE index d70f5c7d89f..ce342bda38f 100644 --- a/src/licensedcode/data/rules/unknown_kernel4.RULE +++ b/src/licensedcode/data/rules/unknown_kernel4.RULE @@ -1 +1,7 @@ -Licence: Unknown +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + +Licence: Unknown \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel4.yml b/src/licensedcode/data/rules/unknown_kernel4.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_kernel6.RULE b/src/licensedcode/data/rules/unknown_kernel6.RULE index 2370b55e128..85b3edd905c 100644 --- a/src/licensedcode/data/rules/unknown_kernel6.RULE +++ b/src/licensedcode/data/rules/unknown_kernel6.RULE @@ -1 +1,8 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + package in hex form; no licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel6.yml b/src/licensedcode/data/rules/unknown_kernel6.yml deleted file mode 100644 index 095b73ec8ee..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel7.RULE b/src/licensedcode/data/rules/unknown_kernel7.RULE index 541f3282a5f..82b059bea3c 100644 --- a/src/licensedcode/data/rules/unknown_kernel7.RULE +++ b/src/licensedcode/data/rules/unknown_kernel7.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + Licence: Unknown -Found in alsa-firmware package in hex form; no licensing information. +Found in alsa-firmware package in hex form; no licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel7.yml b/src/licensedcode/data/rules/unknown_kernel7.yml deleted file mode 100644 index 095b73ec8ee..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel9.RULE b/src/licensedcode/data/rules/unknown_kernel9.RULE index 23e62db4602..9dc06e65047 100644 --- a/src/licensedcode/data/rules/unknown_kernel9.RULE +++ b/src/licensedcode/data/rules/unknown_kernel9.RULE @@ -1 +1,8 @@ - Original licence information: None +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + + Original licence information: None \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel9.yml b/src/licensedcode/data/rules/unknown_kernel9.yml deleted file mode 100644 index 095b73ec8ee..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel_and_bsd-new.RULE b/src/licensedcode/data/rules/unknown_kernel_and_bsd-new.RULE index 44281a572d8..cc9f2b855d1 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_bsd-new.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_bsd-new.RULE @@ -1,2 +1,7 @@ - Licence: BSD, no source available. - +--- +license_expression: bsd-new AND unknown +is_license_reference: yes +relevance: 100 +--- + + Licence: BSD, no source available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_bsd-new.yml b/src/licensedcode/data/rules/unknown_kernel_and_bsd-new.yml deleted file mode 100644 index 7abbea60671..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_bsd-new.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: bsd-new AND unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_kernel_and_bsd-new_and_gpl-2.0.RULE b/src/licensedcode/data/rules/unknown_kernel_and_bsd-new_and_gpl-2.0.RULE index 6532724cb3e..cdf8abad1c1 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_bsd-new_and_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_bsd-new_and_gpl-2.0.RULE @@ -1 +1,6 @@ +--- +license_expression: (gpl-2.0 OR bsd-new) AND unknown +is_license_reference: yes +--- + License: GPLv2 or OpenIB.org BSD license, no source visible \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_bsd-new_and_gpl-2.0.yml b/src/licensedcode/data/rules/unknown_kernel_and_bsd-new_and_gpl-2.0.yml deleted file mode 100644 index 5488661556c..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_bsd-new_and_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: (gpl-2.0 OR bsd-new) AND unknown -is_license_reference: yes diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus.RULE index e167b8bd1fe..7e5f96e9118 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus.RULE @@ -1,2 +1,9 @@ +--- +license_expression: unknown AND gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + Found in alsa-firmware package in hex form with a comment claiming to -be GPLv2+, but without source +be GPLv2+, but without source \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus.yml b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus.yml deleted file mode 100644 index 1a54a4d10bb..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown AND gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus2.RULE b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus2.RULE index 15d61679d08..16af797166e 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus2.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: unknown AND gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING + - /usr/doc/copyright/GPL +notes: Seen in the kernel +--- + Licence: Allegedly GPLv2+, but no source visible. This microcode data is placed under the terms of the GNU General @@ -5,4 +14,4 @@ Licence: Allegedly GPLv2+, but no source visible. Debian system and in the file COPYING in the Linux kernel source. We would prefer you not to distribute modified versions without - consultation and not to ask for assembly/other microcode source. + consultation and not to ask for assembly/other microcode source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus2.yml b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus2.yml deleted file mode 100644 index 491cf895d7a..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown AND gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING - - /usr/doc/copyright/GPL -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus3.RULE b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus3.RULE index 61cd47999a2..6ea8a79214b 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus3.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus3.RULE @@ -1 +1,8 @@ -Licence: Allegedly GPLv2+, but no source visible. +--- +license_expression: unknown AND gpl-2.0-plus +is_license_reference: yes +relevance: 100 +notes: Seen in the kernel +--- + +Licence: Allegedly GPLv2+, but no source visible. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus3.yml b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus3.yml deleted file mode 100644 index 1a54a4d10bb..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unknown AND gpl-2.0-plus -is_license_reference: yes -relevance: 100 -notes: Seen in the kernel diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus6.RULE b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus6.RULE index 5f58057acb6..6cae780cb16 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus6.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus6.RULE @@ -1,4 +1,9 @@ +--- +license_expression: gpl-2.0-plus AND unknown +is_license_reference: yes +--- + Licence: Unknown Found in alsa-firmware package in hex form with a comment claiming to -be GPLv2+, but without source +be GPLv2+, but without source \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus6.yml b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus6.yml deleted file mode 100644 index a1b783ed1bf..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0-plus6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus AND unknown -is_license_reference: yes diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0.RULE b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0.RULE index a1cf5e4fc87..86194cdebd9 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0.RULE @@ -1 +1,7 @@ -Licence: Allegedly GPLv2, but no source visible. +--- +license_expression: gpl-2.0 AND unknown +is_license_reference: yes +relevance: 100 +--- + +Licence: Allegedly GPLv2, but no source visible. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0.yml b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0.yml deleted file mode 100644 index 868acb89601..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 AND unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_1.RULE b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_1.RULE index 7562faeb031..8ea29e42416 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0 AND unknown +is_license_reference: yes +--- + Licence: Allegedly GPLv2, but no source visible. Found in hex form in kernel source, with the following notice: @@ -8,4 +13,4 @@ (TO THE EXTENT PERMITTED BY APPLICABLE LAW). USE OF THE PROGRAM IS AT YOUR OWN RISK. IN NO EVENT WILL ADAPTEC OR ITS LICENSORS 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. + ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_1.yml b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_1.yml deleted file mode 100644 index 971f5fda74a..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 AND unknown -is_license_reference: yes diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_2.RULE b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_2.RULE index 7745017ebbf..f8d67d3d8ff 100644 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_2.RULE @@ -1,6 +1,15 @@ +--- +license_expression: gpl-2.0 AND free-unknown +is_license_notice: yes +referenced_filenames: + - /usr/doc/copyright/GPL + - COPYING +notes: there is an explicit reference to COPYING in linux, hence a GPL-2.0 +--- + This microcode data is placed under the terms of the GNU General Public License. The GPL is contained in /usr/doc/copyright/GPL on a Debian system and in the file COPYING in the Linux kernel source. We would prefer you not to distribute modified versions without -consultation and not to ask for assembly/other microcode source. +consultation and not to ask for assembly/other microcode source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_2.yml b/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_2.yml deleted file mode 100644 index 4911655412d..00000000000 --- a/src/licensedcode/data/rules/unknown_kernel_and_gpl-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 AND free-unknown -is_license_notice: yes -referenced_filenames: - - /usr/doc/copyright/GPL - - COPYING -notes: there is an explicit reference to COPYING in linux, hence a GPL-2.0 diff --git a/src/licensedcode/data/rules/unknown_license_other_12.RULE b/src/licensedcode/data/rules/unknown_license_other_12.RULE index 27850154426..88a98f50915 100644 --- a/src/licensedcode/data/rules/unknown_license_other_12.RULE +++ b/src/licensedcode/data/rules/unknown_license_other_12.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown-license-reference +is_license_reference: yes +relevance: 80 +--- + License: `other` \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_license_other_12.yml b/src/licensedcode/data/rules/unknown_license_other_12.yml deleted file mode 100644 index c56a327ec16..00000000000 --- a/src/licensedcode/data/rules/unknown_license_other_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown-license-reference -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/unknown_no_perm.RULE b/src/licensedcode/data/rules/unknown_no_perm.RULE index b0e48d243ba..510d08730c8 100644 --- a/src/licensedcode/data/rules/unknown_no_perm.RULE +++ b/src/licensedcode/data/rules/unknown_no_perm.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_notice: yes +relevance: 90 +--- + No permission is hereby granted \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_no_perm.yml b/src/licensedcode/data/rules/unknown_no_perm.yml deleted file mode 100644 index 077d7a8b738..00000000000 --- a/src/licensedcode/data/rules/unknown_no_perm.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_notice: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/unknown_not_gpl-2.0_193.RULE b/src/licensedcode/data/rules/unknown_not_gpl-2.0_193.RULE index 6ce5243efec..1fc309ad7bf 100644 --- a/src/licensedcode/data/rules/unknown_not_gpl-2.0_193.RULE +++ b/src/licensedcode/data/rules/unknown_not_gpl-2.0_193.RULE @@ -1,7 +1,16 @@ +--- +license_expression: unknown +is_license_notice: yes +referenced_filenames: + - COPYING +notes: Seen in Intel e100 GPL-licensed linux driver... but here there is no license stated and + when the Intel ref is not there, we cannot conclude to a license. +--- + This software program is released under the terms of a license agreement between you ('Licensee') and . Do not use or load this software or any associated materials (collectively, the 'Software') until you have carefully read the full terms and conditions of the file COPYING located in this software package. By loading or using the Software, you agree to the terms of this Agreement. If you do not agree with the terms of this Agreement, do not install -or use the Software. +or use the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_not_gpl-2.0_193.yml b/src/licensedcode/data/rules/unknown_not_gpl-2.0_193.yml deleted file mode 100644 index 3badfd2733f..00000000000 --- a/src/licensedcode/data/rules/unknown_not_gpl-2.0_193.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unknown -is_license_notice: yes -referenced_filenames: - - COPYING -notes: Seen in Intel e100 GPL-licensed linux driver... but here there is no license stated and - when the Intel ref is not there, we cannot conclude to a license. diff --git a/src/licensedcode/data/rules/unknown_or_proprietary-license_1.RULE b/src/licensedcode/data/rules/unknown_or_proprietary-license_1.RULE index dcfafc8ad82..5bbe82e1d38 100644 --- a/src/licensedcode/data/rules/unknown_or_proprietary-license_1.RULE +++ b/src/licensedcode/data/rules/unknown_or_proprietary-license_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unknown OR proprietary-license +is_license_notice: yes +notes: see http://www.skybuilders.com/Products/dual_license/ +--- + Code we have written is also available under a dual license agreement that allows a developer organization to make changes to the code without returning -those changes to the community. \ No newline at end of file +those changes to the community. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unknown_or_proprietary-license_1.yml b/src/licensedcode/data/rules/unknown_or_proprietary-license_1.yml deleted file mode 100644 index 4de79d1d6ea..00000000000 --- a/src/licensedcode/data/rules/unknown_or_proprietary-license_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown OR proprietary-license -is_license_notice: yes -notes: see http://www.skybuilders.com/Products/dual_license/ diff --git a/src/licensedcode/data/rules/unlicense_1.RULE b/src/licensedcode/data/rules/unlicense_1.RULE index 6e83cd4e95e..08e3df3d487 100644 --- a/src/licensedcode/data/rules/unlicense_1.RULE +++ b/src/licensedcode/data/rules/unlicense_1.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.unlicense.org/ +--- + All rights reversed http://www.unlicense.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_1.yml b/src/licensedcode/data/rules/unlicense_1.yml deleted file mode 100644 index a01c3d5a926..00000000000 --- a/src/licensedcode/data/rules/unlicense_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_10.RULE b/src/licensedcode/data/rules/unlicense_10.RULE index 771ab144329..ff0f2202f12 100644 --- a/src/licensedcode/data/rules/unlicense_10.RULE +++ b/src/licensedcode/data/rules/unlicense_10.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +referenced_filenames: + - UNLICENSE +--- + License This is free and unencumbered public domain software. For more information, see the accompanying UNLICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_10.yml b/src/licensedcode/data/rules/unlicense_10.yml deleted file mode 100644 index 6b06f004149..00000000000 --- a/src/licensedcode/data/rules/unlicense_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -referenced_filenames: - - UNLICENSE diff --git a/src/licensedcode/data/rules/unlicense_11.RULE b/src/licensedcode/data/rules/unlicense_11.RULE index 9c43959a4c7..bf3e5089237 100644 --- a/src/licensedcode/data/rules/unlicense_11.RULE +++ b/src/licensedcode/data/rules/unlicense_11.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/unlicense +--- + https://choosealicense.com/licenses/unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_11.yml b/src/licensedcode/data/rules/unlicense_11.yml deleted file mode 100644 index acf199fd268..00000000000 --- a/src/licensedcode/data/rules/unlicense_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_12.RULE b/src/licensedcode/data/rules/unlicense_12.RULE index 4936ec90cf9..dec92754511 100644 --- a/src/licensedcode/data/rules/unlicense_12.RULE +++ b/src/licensedcode/data/rules/unlicense_12.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/unlicense +--- + http://choosealicense.com/licenses/unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_12.yml b/src/licensedcode/data/rules/unlicense_12.yml deleted file mode 100644 index c47cfc34f8d..00000000000 --- a/src/licensedcode/data/rules/unlicense_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_13.RULE b/src/licensedcode/data/rules/unlicense_13.RULE index a934d7ba732..5468941ab40 100644 --- a/src/licensedcode/data/rules/unlicense_13.RULE +++ b/src/licensedcode/data/rules/unlicense_13.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/ScottHamper/Cookies +--- + Public Domain bundles portions of the following which are in the public domain: Cookies.js (https://github.com/ScottHamper/Cookies/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_13.yml b/src/licensedcode/data/rules/unlicense_13.yml deleted file mode 100644 index c5856c3a41b..00000000000 --- a/src/licensedcode/data/rules/unlicense_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://github.com/ScottHamper/Cookies diff --git a/src/licensedcode/data/rules/unlicense_14.RULE b/src/licensedcode/data/rules/unlicense_14.RULE index c32dd18f5b7..b0419bd103e 100644 --- a/src/licensedcode/data/rules/unlicense_14.RULE +++ b/src/licensedcode/data/rules/unlicense_14.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unlicense +is_license_text: yes +relevance: 100 +ignorable_urls: + - https://unlicense.org/ +--- + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or diff --git a/src/licensedcode/data/rules/unlicense_14.yml b/src/licensedcode/data/rules/unlicense_14.yml deleted file mode 100644 index 4b59ffe4510..00000000000 --- a/src/licensedcode/data/rules/unlicense_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_text: yes -relevance: 100 -ignorable_urls: - - https://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_15.RULE b/src/licensedcode/data/rules/unlicense_15.RULE index 5cd03c3dd1f..d7b51073750 100644 --- a/src/licensedcode/data/rules/unlicense_15.RULE +++ b/src/licensedcode/data/rules/unlicense_15.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://unlicense.org/ +--- + \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_15.yml b/src/licensedcode/data/rules/unlicense_15.yml deleted file mode 100644 index 1d876a1532e..00000000000 --- a/src/licensedcode/data/rules/unlicense_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_16.RULE b/src/licensedcode/data/rules/unlicense_16.RULE index 2a783c84d0c..505530939ee 100644 --- a/src/licensedcode/data/rules/unlicense_16.RULE +++ b/src/licensedcode/data/rules/unlicense_16.RULE @@ -1 +1,7 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +--- + unlicense.org/> \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_16.yml b/src/licensedcode/data/rules/unlicense_16.yml deleted file mode 100644 index 37e80ac2a25..00000000000 --- a/src/licensedcode/data/rules/unlicense_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unlicense_17.RULE b/src/licensedcode/data/rules/unlicense_17.RULE index 1230945698a..549ddb5fbe1 100644 --- a/src/licensedcode/data/rules/unlicense_17.RULE +++ b/src/licensedcode/data/rules/unlicense_17.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This library licensed under The Unlicense license. For further information, see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_17.yml b/src/licensedcode/data/rules/unlicense_17.yml deleted file mode 100644 index 77464f9211f..00000000000 --- a/src/licensedcode/data/rules/unlicense_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/unlicense_18.RULE b/src/licensedcode/data/rules/unlicense_18.RULE index f25f29ff5b9..5b4ce3f80af 100644 --- a/src/licensedcode/data/rules/unlicense_18.RULE +++ b/src/licensedcode/data/rules/unlicense_18.RULE @@ -1,2 +1,12 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://choosealicense.com/licenses/unlicense +--- + ## License This library licensed under [The Unlicense](https://choosealicense.com/licenses/unlicense/) license. For further information, see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_18.yml b/src/licensedcode/data/rules/unlicense_18.yml deleted file mode 100644 index 1eccd40a68a..00000000000 --- a/src/licensedcode/data/rules/unlicense_18.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://choosealicense.com/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_19.RULE b/src/licensedcode/data/rules/unlicense_19.RULE index 2f68843e1ff..70201b8bb1e 100644 --- a/src/licensedcode/data/rules/unlicense_19.RULE +++ b/src/licensedcode/data/rules/unlicense_19.RULE @@ -1 +1,11 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://choosealicense.com/licenses/unlicense +--- + This library licensed under [The Unlicense](https://choosealicense.com/licenses/unlicense/) license. For further information, see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_19.yml b/src/licensedcode/data/rules/unlicense_19.yml deleted file mode 100644 index 1eccd40a68a..00000000000 --- a/src/licensedcode/data/rules/unlicense_19.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://choosealicense.com/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_2.RULE b/src/licensedcode/data/rules/unlicense_2.RULE index b25b7c45c7a..fc30f0afbae 100644 --- a/src/licensedcode/data/rules/unlicense_2.RULE +++ b/src/licensedcode/data/rules/unlicense_2.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ +--- + http://unlicense.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_2.yml b/src/licensedcode/data/rules/unlicense_2.yml deleted file mode 100644 index a2e46330578..00000000000 --- a/src/licensedcode/data/rules/unlicense_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_20.RULE b/src/licensedcode/data/rules/unlicense_20.RULE index e4a6333184c..cd4cfa21665 100644 --- a/src/licensedcode/data/rules/unlicense_20.RULE +++ b/src/licensedcode/data/rules/unlicense_20.RULE @@ -1,2 +1,12 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://choosealicense.com/licenses/unlicense +--- + ## License This library licensed under [The Unlicense](https://choosealicense.com/licenses/unlicense/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_20.yml b/src/licensedcode/data/rules/unlicense_20.yml deleted file mode 100644 index 1eccd40a68a..00000000000 --- a/src/licensedcode/data/rules/unlicense_20.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://choosealicense.com/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_21.RULE b/src/licensedcode/data/rules/unlicense_21.RULE index 1c8acb99b4b..c2e564e198a 100644 --- a/src/licensedcode/data/rules/unlicense_21.RULE +++ b/src/licensedcode/data/rules/unlicense_21.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/unlicense +--- + This library licensed under [The Unlicense](https://choosealicense.com/licenses/unlicense/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_21.yml b/src/licensedcode/data/rules/unlicense_21.yml deleted file mode 100644 index cac0f40b465..00000000000 --- a/src/licensedcode/data/rules/unlicense_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_22.RULE b/src/licensedcode/data/rules/unlicense_22.RULE index a2a15b5c786..b333b16c3d4 100644 --- a/src/licensedcode/data/rules/unlicense_22.RULE +++ b/src/licensedcode/data/rules/unlicense_22.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ +--- + `Unlicense` - [The Unlicense](http://unlicense.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_22.yml b/src/licensedcode/data/rules/unlicense_22.yml deleted file mode 100644 index a2e46330578..00000000000 --- a/src/licensedcode/data/rules/unlicense_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_23.RULE b/src/licensedcode/data/rules/unlicense_23.RULE index e541c226f40..0523b2f3bd2 100644 --- a/src/licensedcode/data/rules/unlicense_23.RULE +++ b/src/licensedcode/data/rules/unlicense_23.RULE @@ -1 +1,7 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +--- + This code is placed into the public domain under the terms described by the Unlicense. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_23.yml b/src/licensedcode/data/rules/unlicense_23.yml deleted file mode 100644 index 7bc1d219c2f..00000000000 --- a/src/licensedcode/data/rules/unlicense_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unlicense_24.RULE b/src/licensedcode/data/rules/unlicense_24.RULE index 056284b25d2..e3fa195d7fd 100644 --- a/src/licensedcode/data/rules/unlicense_24.RULE +++ b/src/licensedcode/data/rules/unlicense_24.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/unlicense +--- + licensed under [The Unlicense](https://choosealicense.com/licenses/unlicense/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_24.yml b/src/licensedcode/data/rules/unlicense_24.yml deleted file mode 100644 index cac0f40b465..00000000000 --- a/src/licensedcode/data/rules/unlicense_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_25.RULE b/src/licensedcode/data/rules/unlicense_25.RULE index bdf6e5fd8ee..df16446528a 100644 --- a/src/licensedcode/data/rules/unlicense_25.RULE +++ b/src/licensedcode/data/rules/unlicense_25.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ +--- + Public domain - http://unlicense.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_25.yml b/src/licensedcode/data/rules/unlicense_25.yml deleted file mode 100644 index a2e46330578..00000000000 --- a/src/licensedcode/data/rules/unlicense_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_26.RULE b/src/licensedcode/data/rules/unlicense_26.RULE index 25ff3d7e6b3..ebbcbab67f3 100644 --- a/src/licensedcode/data/rules/unlicense_26.RULE +++ b/src/licensedcode/data/rules/unlicense_26.RULE @@ -1 +1,7 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +--- + distributed under the terms of The Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_26.yml b/src/licensedcode/data/rules/unlicense_26.yml deleted file mode 100644 index 7bc1d219c2f..00000000000 --- a/src/licensedcode/data/rules/unlicense_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unlicense_27.RULE b/src/licensedcode/data/rules/unlicense_27.RULE index 3c68ab856c0..2ebd1f959f6 100644 --- a/src/licensedcode/data/rules/unlicense_27.RULE +++ b/src/licensedcode/data/rules/unlicense_27.RULE @@ -1 +1,7 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +--- + Unlicense (public domain). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_27.yml b/src/licensedcode/data/rules/unlicense_27.yml deleted file mode 100644 index 7bc1d219c2f..00000000000 --- a/src/licensedcode/data/rules/unlicense_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unlicense_28.RULE b/src/licensedcode/data/rules/unlicense_28.RULE index 8bb12b25ea8..d967264575b 100644 --- a/src/licensedcode/data/rules/unlicense_28.RULE +++ b/src/licensedcode/data/rules/unlicense_28.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ +--- + license: Public Domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_28.yml b/src/licensedcode/data/rules/unlicense_28.yml deleted file mode 100644 index 5a668f8e9dc..00000000000 --- a/src/licensedcode/data/rules/unlicense_28.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_29.RULE b/src/licensedcode/data/rules/unlicense_29.RULE index ad452e74c1a..54ffd8df5ec 100644 --- a/src/licensedcode/data/rules/unlicense_29.RULE +++ b/src/licensedcode/data/rules/unlicense_29.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ +--- + // This software is distributed under The Unlicense. // For more information, please refer to \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_29.yml b/src/licensedcode/data/rules/unlicense_29.yml deleted file mode 100644 index 3b423dea3a9..00000000000 --- a/src/licensedcode/data/rules/unlicense_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_3.RULE b/src/licensedcode/data/rules/unlicense_3.RULE index 7c09987958b..b81c90d3e2a 100644 --- a/src/licensedcode/data/rules/unlicense_3.RULE +++ b/src/licensedcode/data/rules/unlicense_3.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.unlicense.org/ +--- + All rights reversed http://www.unlicense.org/ (public domain) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_3.yml b/src/licensedcode/data/rules/unlicense_3.yml deleted file mode 100644 index a01c3d5a926..00000000000 --- a/src/licensedcode/data/rules/unlicense_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_30.RULE b/src/licensedcode/data/rules/unlicense_30.RULE index 04aa605851c..9398bc93f09 100644 --- a/src/licensedcode/data/rules/unlicense_30.RULE +++ b/src/licensedcode/data/rules/unlicense_30.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ +--- + For more information, please refer to http://unlicense.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_30.yml b/src/licensedcode/data/rules/unlicense_30.yml deleted file mode 100644 index 3b423dea3a9..00000000000 --- a/src/licensedcode/data/rules/unlicense_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_31.RULE b/src/licensedcode/data/rules/unlicense_31.RULE index 29349284abb..c470d74edd4 100644 --- a/src/licensedcode/data/rules/unlicense_31.RULE +++ b/src/licensedcode/data/rules/unlicense_31.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://unlicense.org/ +--- + For more information, please refer to https://unlicense.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_31.yml b/src/licensedcode/data/rules/unlicense_31.yml deleted file mode 100644 index d4ef084ef34..00000000000 --- a/src/licensedcode/data/rules/unlicense_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_32.RULE b/src/licensedcode/data/rules/unlicense_32.RULE index 0e7f62c3e04..df3f4475d55 100644 --- a/src/licensedcode/data/rules/unlicense_32.RULE +++ b/src/licensedcode/data/rules/unlicense_32.RULE @@ -1 +1,7 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +--- + This software is distributed under The Unlicense. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_32.yml b/src/licensedcode/data/rules/unlicense_32.yml deleted file mode 100644 index 7bc1d219c2f..00000000000 --- a/src/licensedcode/data/rules/unlicense_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unlicense_33.RULE b/src/licensedcode/data/rules/unlicense_33.RULE index 8d751a42207..4e23a28db3a 100644 --- a/src/licensedcode/data/rules/unlicense_33.RULE +++ b/src/licensedcode/data/rules/unlicense_33.RULE @@ -1 +1,7 @@ +--- +license_expression: unlicense +is_license_tag: yes +relevance: 100 +--- + License: Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_33.yml b/src/licensedcode/data/rules/unlicense_33.yml deleted file mode 100644 index b8f9027b4f3..00000000000 --- a/src/licensedcode/data/rules/unlicense_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unlicense_34.RULE b/src/licensedcode/data/rules/unlicense_34.RULE index 44409f46a2c..860adb0c0b0 100644 --- a/src/licensedcode/data/rules/unlicense_34.RULE +++ b/src/licensedcode/data/rules/unlicense_34.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + The Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_34.yml b/src/licensedcode/data/rules/unlicense_34.yml deleted file mode 100644 index c653683d1e1..00000000000 --- a/src/licensedcode/data/rules/unlicense_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unlicense_35.RULE b/src/licensedcode/data/rules/unlicense_35.RULE index 85f95246f27..0cc62615406 100644 --- a/src/licensedcode/data/rules/unlicense_35.RULE +++ b/src/licensedcode/data/rules/unlicense_35.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: The Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_35.yml b/src/licensedcode/data/rules/unlicense_35.yml deleted file mode 100644 index c653683d1e1..00000000000 --- a/src/licensedcode/data/rules/unlicense_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unlicense_36.RULE b/src/licensedcode/data/rules/unlicense_36.RULE index 57840eaa306..612ff225d68 100644 --- a/src/licensedcode/data/rules/unlicense_36.RULE +++ b/src/licensedcode/data/rules/unlicense_36.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Unlicense The Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_36.yml b/src/licensedcode/data/rules/unlicense_36.yml deleted file mode 100644 index c653683d1e1..00000000000 --- a/src/licensedcode/data/rules/unlicense_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unlicense_37.RULE b/src/licensedcode/data/rules/unlicense_37.RULE index daafb1b4fe2..fe4349e3297 100644 --- a/src/licensedcode/data/rules/unlicense_37.RULE +++ b/src/licensedcode/data/rules/unlicense_37.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + The Unlicense Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_37.yml b/src/licensedcode/data/rules/unlicense_37.yml deleted file mode 100644 index c653683d1e1..00000000000 --- a/src/licensedcode/data/rules/unlicense_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unlicense_38.RULE b/src/licensedcode/data/rules/unlicense_38.RULE index 612ca0cefd1..9ce05c66ba6 100644 --- a/src/licensedcode/data/rules/unlicense_38.RULE +++ b/src/licensedcode/data/rules/unlicense_38.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: The Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_38.yml b/src/licensedcode/data/rules/unlicense_38.yml deleted file mode 100644 index e318eb72424..00000000000 --- a/src/licensedcode/data/rules/unlicense_38.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unlicense_39.RULE b/src/licensedcode/data/rules/unlicense_39.RULE index f03afef25c7..0f1da397961 100644 --- a/src/licensedcode/data/rules/unlicense_39.RULE +++ b/src/licensedcode/data/rules/unlicense_39.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_39.yml b/src/licensedcode/data/rules/unlicense_39.yml deleted file mode 100644 index e318eb72424..00000000000 --- a/src/licensedcode/data/rules/unlicense_39.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/unlicense_4.RULE b/src/licensedcode/data/rules/unlicense_4.RULE index 152f18a593c..2afc85c0749 100644 --- a/src/licensedcode/data/rules/unlicense_4.RULE +++ b/src/licensedcode/data/rules/unlicense_4.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://www.unlicense.org/ +--- + http://www.unlicense.org/ (public domain) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_4.yml b/src/licensedcode/data/rules/unlicense_4.yml deleted file mode 100644 index 5b9f4761cef..00000000000 --- a/src/licensedcode/data/rules/unlicense_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://www.unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_40.RULE b/src/licensedcode/data/rules/unlicense_40.RULE index 6456e66add4..d1fcb200a0b 100644 --- a/src/licensedcode/data/rules/unlicense_40.RULE +++ b/src/licensedcode/data/rules/unlicense_40.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['UNLI', 'Unlicense'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_40.yml b/src/licensedcode/data/rules/unlicense_40.yml deleted file mode 100644 index b56ca930484..00000000000 --- a/src/licensedcode/data/rules/unlicense_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unlicense_41.RULE b/src/licensedcode/data/rules/unlicense_41.RULE index ca2400cc05a..3f7eff76e7e 100644 --- a/src/licensedcode/data/rules/unlicense_41.RULE +++ b/src/licensedcode/data/rules/unlicense_41.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Public-domain (Unlicense) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_41.yml b/src/licensedcode/data/rules/unlicense_41.yml deleted file mode 100644 index b56ca930484..00000000000 --- a/src/licensedcode/data/rules/unlicense_41.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unlicense_42.RULE b/src/licensedcode/data/rules/unlicense_42.RULE index 90ce3751461..d1ea6938c6c 100644 --- a/src/licensedcode/data/rules/unlicense_42.RULE +++ b/src/licensedcode/data/rules/unlicense_42.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Public-domain (Unlicense)': 'Unlicense' \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_42.yml b/src/licensedcode/data/rules/unlicense_42.yml deleted file mode 100644 index b56ca930484..00000000000 --- a/src/licensedcode/data/rules/unlicense_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unlicense_43.RULE b/src/licensedcode/data/rules/unlicense_43.RULE index e82ed98a720..5118d83ac15 100644 --- a/src/licensedcode/data/rules/unlicense_43.RULE +++ b/src/licensedcode/data/rules/unlicense_43.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Public Domain (UNLISCENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_43.yml b/src/licensedcode/data/rules/unlicense_43.yml deleted file mode 100644 index b56ca930484..00000000000 --- a/src/licensedcode/data/rules/unlicense_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unlicense_44.RULE b/src/licensedcode/data/rules/unlicense_44.RULE index 1497eaec711..215e60c8dc1 100644 --- a/src/licensedcode/data/rules/unlicense_44.RULE +++ b/src/licensedcode/data/rules/unlicense_44.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + UNLISCENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_44.yml b/src/licensedcode/data/rules/unlicense_44.yml deleted file mode 100644 index b56ca930484..00000000000 --- a/src/licensedcode/data/rules/unlicense_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unlicense_45.RULE b/src/licensedcode/data/rules/unlicense_45.RULE index aaf4b1110ea..4103166fe72 100644 --- a/src/licensedcode/data/rules/unlicense_45.RULE +++ b/src/licensedcode/data/rules/unlicense_45.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Http://unlicense.org': 'Unlicense', \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_45.yml b/src/licensedcode/data/rules/unlicense_45.yml deleted file mode 100644 index b56ca930484..00000000000 --- a/src/licensedcode/data/rules/unlicense_45.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/unlicense_46.RULE b/src/licensedcode/data/rules/unlicense_46.RULE index 02338a8364b..943fd96ccaf 100644 --- a/src/licensedcode/data/rules/unlicense_46.RULE +++ b/src/licensedcode/data/rules/unlicense_46.RULE @@ -1 +1,11 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://unlicense.org/ +--- + 'Unlicense (http://unlicense.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_46.yml b/src/licensedcode/data/rules/unlicense_46.yml deleted file mode 100644 index 57dce27b843..00000000000 --- a/src/licensedcode/data/rules/unlicense_46.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_47.RULE b/src/licensedcode/data/rules/unlicense_47.RULE index 22d6e53982b..2052be02517 100644 --- a/src/licensedcode/data/rules/unlicense_47.RULE +++ b/src/licensedcode/data/rules/unlicense_47.RULE @@ -1 +1,11 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://unlicense.org/ +--- + 'Unlicense (see http://unlicense.org/)': 'Unlicense', \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_47.yml b/src/licensedcode/data/rules/unlicense_47.yml deleted file mode 100644 index 57dce27b843..00000000000 --- a/src/licensedcode/data/rules/unlicense_47.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_48.RULE b/src/licensedcode/data/rules/unlicense_48.RULE index b1f3ea68abd..84b959bcd67 100644 --- a/src/licensedcode/data/rules/unlicense_48.RULE +++ b/src/licensedcode/data/rules/unlicense_48.RULE @@ -1 +1,11 @@ +--- +license_expression: unlicense +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +ignorable_urls: + - http://unlicense.org/ +--- + 'Unlicense (see http://unlicense.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_48.yml b/src/licensedcode/data/rules/unlicense_48.yml deleted file mode 100644 index 57dce27b843..00000000000 --- a/src/licensedcode/data/rules/unlicense_48.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_49.RULE b/src/licensedcode/data/rules/unlicense_49.RULE index d29c4956cb0..19bfe0c4831 100644 --- a/src/licensedcode/data/rules/unlicense_49.RULE +++ b/src/licensedcode/data/rules/unlicense_49.RULE @@ -1 +1,7 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_49.yml b/src/licensedcode/data/rules/unlicense_49.yml deleted file mode 100644 index 37e80ac2a25..00000000000 --- a/src/licensedcode/data/rules/unlicense_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unlicense_5.RULE b/src/licensedcode/data/rules/unlicense_5.RULE index 45285cce8db..dde7c248303 100644 --- a/src/licensedcode/data/rules/unlicense_5.RULE +++ b/src/licensedcode/data/rules/unlicense_5.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/unlicense +--- + License: [`unlicense`](http://choosealicense.com/licenses/unlicense/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_5.yml b/src/licensedcode/data/rules/unlicense_5.yml deleted file mode 100644 index 75390a04e23..00000000000 --- a/src/licensedcode/data/rules/unlicense_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_50.RULE b/src/licensedcode/data/rules/unlicense_50.RULE index 75880d53a20..5ef884003a2 100644 --- a/src/licensedcode/data/rules/unlicense_50.RULE +++ b/src/licensedcode/data/rules/unlicense_50.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Unlicense +--- + https://licenses.nuget.org/Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_50.yml b/src/licensedcode/data/rules/unlicense_50.yml deleted file mode 100644 index d93aea69879..00000000000 --- a/src/licensedcode/data/rules/unlicense_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Unlicense diff --git a/src/licensedcode/data/rules/unlicense_51.RULE b/src/licensedcode/data/rules/unlicense_51.RULE index d288b8cd2c1..270a83e7bb2 100644 --- a/src/licensedcode/data/rules/unlicense_51.RULE +++ b/src/licensedcode/data/rules/unlicense_51.RULE @@ -1 +1,7 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_51.yml b/src/licensedcode/data/rules/unlicense_51.yml deleted file mode 100644 index 37e80ac2a25..00000000000 --- a/src/licensedcode/data/rules/unlicense_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unlicense_52.RULE b/src/licensedcode/data/rules/unlicense_52.RULE index 48518a77c9a..9c93aedc730 100644 --- a/src/licensedcode/data/rules/unlicense_52.RULE +++ b/src/licensedcode/data/rules/unlicense_52.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Unlicense +--- + LICENSE {{Unlicense}} https://spdx.org/licenses/Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_52.yml b/src/licensedcode/data/rules/unlicense_52.yml deleted file mode 100644 index 1cfc76040a2..00000000000 --- a/src/licensedcode/data/rules/unlicense_52.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Unlicense diff --git a/src/licensedcode/data/rules/unlicense_53.RULE b/src/licensedcode/data/rules/unlicense_53.RULE index 96d4ff50db0..3d2f3105628 100644 --- a/src/licensedcode/data/rules/unlicense_53.RULE +++ b/src/licensedcode/data/rules/unlicense_53.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Unlicense +--- + {{Unlicense}} https://spdx.org/licenses/Unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_53.yml b/src/licensedcode/data/rules/unlicense_53.yml deleted file mode 100644 index 1cfc76040a2..00000000000 --- a/src/licensedcode/data/rules/unlicense_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Unlicense diff --git a/src/licensedcode/data/rules/unlicense_6.RULE b/src/licensedcode/data/rules/unlicense_6.RULE index e5cf787db3b..6588441873a 100644 --- a/src/licensedcode/data/rules/unlicense_6.RULE +++ b/src/licensedcode/data/rules/unlicense_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unlicense +is_license_text: yes +minimum_coverage: 80 +--- + * This is free and unencumbered software released into the public domain. * * Anyone is free to copy, modify, publish, use, compile, sell, or diff --git a/src/licensedcode/data/rules/unlicense_6.yml b/src/licensedcode/data/rules/unlicense_6.yml deleted file mode 100644 index a22477af94b..00000000000 --- a/src/licensedcode/data/rules/unlicense_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unlicense -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/unlicense_7.RULE b/src/licensedcode/data/rules/unlicense_7.RULE index 7f2cc6f7449..88dfc1ba3c9 100644 --- a/src/licensedcode/data/rules/unlicense_7.RULE +++ b/src/licensedcode/data/rules/unlicense_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unlicense +is_license_text: yes +minimum_coverage: 80 +ignorable_urls: + - http://unlicense.org/ +--- + The following UNLICENSE statement applies to this example. This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or diff --git a/src/licensedcode/data/rules/unlicense_7.yml b/src/licensedcode/data/rules/unlicense_7.yml deleted file mode 100644 index b8610936a41..00000000000 --- a/src/licensedcode/data/rules/unlicense_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_text: yes -minimum_coverage: 80 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_8.RULE b/src/licensedcode/data/rules/unlicense_8.RULE index e14a00812e1..0dfbde6fb31 100644 --- a/src/licensedcode/data/rules/unlicense_8.RULE +++ b/src/licensedcode/data/rules/unlicense_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: unlicense +is_license_text: yes +ignorable_urls: + - http://unlicense.org/ +--- + The Unlicense This is free and unencumbered software released into the public domain. diff --git a/src/licensedcode/data/rules/unlicense_8.yml b/src/licensedcode/data/rules/unlicense_8.yml deleted file mode 100644 index ecd429d5c37..00000000000 --- a/src/licensedcode/data/rules/unlicense_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: unlicense -is_license_text: yes -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_9.RULE b/src/licensedcode/data/rules/unlicense_9.RULE index 6b1050e57da..67547f8a2a8 100644 --- a/src/licensedcode/data/rules/unlicense_9.RULE +++ b/src/licensedcode/data/rules/unlicense_9.RULE @@ -1,2 +1,10 @@ +--- +license_expression: unlicense +is_license_notice: yes +relevance: 100 +referenced_filenames: + - UNLICENSE +--- + License is free and unencumbered public domain software. For more information, see the accompanying UNLICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_9.yml b/src/licensedcode/data/rules/unlicense_9.yml deleted file mode 100644 index 6b06f004149..00000000000 --- a/src/licensedcode/data/rules/unlicense_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_notice: yes -relevance: 100 -referenced_filenames: - - UNLICENSE diff --git a/src/licensedcode/data/rules/unlicense_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/unlicense_and_unknown-license-reference_1.RULE index d2f131d40fc..e4e08c6b176 100644 --- a/src/licensedcode/data/rules/unlicense_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/unlicense_and_unknown-license-reference_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: unlicense AND unknown-license-reference +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ +--- + Snippets with specified source belong to their respective owners and have their own license(s), whenever appropriate. diff --git a/src/licensedcode/data/rules/unlicense_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/unlicense_and_unknown-license-reference_1.yml deleted file mode 100644 index 93d13134aa8..00000000000 --- a/src/licensedcode/data/rules/unlicense_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense AND unknown-license-reference -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ diff --git a/src/licensedcode/data/rules/unlicense_nuget_url_1.RULE b/src/licensedcode/data/rules/unlicense_nuget_url_1.RULE index 2559c4f9765..0608aca7dcb 100644 --- a/src/licensedcode/data/rules/unlicense_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/unlicense_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/jehugaleahsa/ChangeDetector/blob/master/UNLICENSE.txt +--- + https://github.com/jehugaleahsa/ChangeDetector/blob/master/UNLICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_nuget_url_1.yml b/src/licensedcode/data/rules/unlicense_nuget_url_1.yml deleted file mode 100644 index d2bc99a7728..00000000000 --- a/src/licensedcode/data/rules/unlicense_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/jehugaleahsa/ChangeDetector/blob/master/UNLICENSE.txt diff --git a/src/licensedcode/data/rules/unlicense_nuget_url_2.RULE b/src/licensedcode/data/rules/unlicense_nuget_url_2.RULE index 1018da1a1fc..5c896b2b4ee 100644 --- a/src/licensedcode/data/rules/unlicense_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/unlicense_nuget_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/rflechner/LinqToSalesforce/blob/master/LICENSE.txt +--- + https://github.com/rflechner/LinqToSalesforce/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_nuget_url_2.yml b/src/licensedcode/data/rules/unlicense_nuget_url_2.yml deleted file mode 100644 index 39c0b31c4e5..00000000000 --- a/src/licensedcode/data/rules/unlicense_nuget_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/rflechner/LinqToSalesforce/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/unlicense_nuget_url_3.RULE b/src/licensedcode/data/rules/unlicense_nuget_url_3.RULE index e3c19c6e4cf..65f9b0b443a 100644 --- a/src/licensedcode/data/rules/unlicense_nuget_url_3.RULE +++ b/src/licensedcode/data/rules/unlicense_nuget_url_3.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/chouteau/routes.host/blob/master/LICENSE +--- + https://github.com/chouteau/routes.host/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_nuget_url_3.yml b/src/licensedcode/data/rules/unlicense_nuget_url_3.yml deleted file mode 100644 index b41214e4e34..00000000000 --- a/src/licensedcode/data/rules/unlicense_nuget_url_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/chouteau/routes.host/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/unlicense_url_1.RULE b/src/licensedcode/data/rules/unlicense_url_1.RULE index f2a7325e128..640b7fef03a 100644 --- a/src/licensedcode/data/rules/unlicense_url_1.RULE +++ b/src/licensedcode/data/rules/unlicense_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/unlicense +--- + https://spdx.org/licenses/unlicense \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_url_1.yml b/src/licensedcode/data/rules/unlicense_url_1.yml deleted file mode 100644 index 891cb1e5f35..00000000000 --- a/src/licensedcode/data/rules/unlicense_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/unlicense diff --git a/src/licensedcode/data/rules/unlicense_url_2.RULE b/src/licensedcode/data/rules/unlicense_url_2.RULE index 3b4ab4aea78..74b4fa0ad97 100644 --- a/src/licensedcode/data/rules/unlicense_url_2.RULE +++ b/src/licensedcode/data/rules/unlicense_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/unlicense.html +--- + https://spdx.org/licenses/unlicense.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_url_2.yml b/src/licensedcode/data/rules/unlicense_url_2.yml deleted file mode 100644 index 7483183baf3..00000000000 --- a/src/licensedcode/data/rules/unlicense_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/unlicense.html diff --git a/src/licensedcode/data/rules/unlicense_url_badge.RULE b/src/licensedcode/data/rules/unlicense_url_badge.RULE index a61efd1e45e..e6d3b2c7a98 100644 --- a/src/licensedcode/data/rules/unlicense_url_badge.RULE +++ b/src/licensedcode/data/rules/unlicense_url_badge.RULE @@ -1 +1,10 @@ +--- +license_expression: unlicense +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://unlicense.org/ + - https://img.shields.io/badge/license-Unlicense-blue.svg +--- + [![License: Unlicense](https://img.shields.io/badge/license-Unlicense-blue.svg)](http://unlicense.org/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unlicense_url_badge.yml b/src/licensedcode/data/rules/unlicense_url_badge.yml deleted file mode 100644 index 3aa362ba2b1..00000000000 --- a/src/licensedcode/data/rules/unlicense_url_badge.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: unlicense -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://unlicense.org/ - - https://img.shields.io/badge/license-Unlicense-blue.svg diff --git a/src/licensedcode/data/rules/unpublished-source_1.RULE b/src/licensedcode/data/rules/unpublished-source_1.RULE index d0ac732774b..e4984c0c726 100644 --- a/src/licensedcode/data/rules/unpublished-source_1.RULE +++ b/src/licensedcode/data/rules/unpublished-source_1.RULE @@ -1,4 +1,9 @@ +--- +license_expression: unpublished-source +is_license_notice: yes +--- + # This is UNPUBLISHED PROPRIETARY SOURCE CODE of ; # the contents of this file may not be disclosed to third parties, copied # or duplicated in any form, in whole or in part, without the prior -# written permission of . +# written permission of . \ No newline at end of file diff --git a/src/licensedcode/data/rules/unpublished-source_1.yml b/src/licensedcode/data/rules/unpublished-source_1.yml deleted file mode 100644 index 85bd229b0fd..00000000000 --- a/src/licensedcode/data/rules/unpublished-source_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unpublished-source -is_license_notice: yes diff --git a/src/licensedcode/data/rules/unpublished-source_2.RULE b/src/licensedcode/data/rules/unpublished-source_2.RULE index 390024a95ad..cc03d58562f 100644 --- a/src/licensedcode/data/rules/unpublished-source_2.RULE +++ b/src/licensedcode/data/rules/unpublished-source_2.RULE @@ -1,4 +1,9 @@ +--- +license_expression: unpublished-source +is_license_notice: yes +--- + This is UNPUBLISHED PROPRIETARY SOURCE CODE of Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written -permission of Corporation. \ No newline at end of file +permission of Corporation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unpublished-source_2.yml b/src/licensedcode/data/rules/unpublished-source_2.yml deleted file mode 100644 index 85bd229b0fd..00000000000 --- a/src/licensedcode/data/rules/unpublished-source_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unpublished-source -is_license_notice: yes diff --git a/src/licensedcode/data/rules/unpublished-source_3.RULE b/src/licensedcode/data/rules/unpublished-source_3.RULE index 34e23788186..9c1b82d146a 100644 --- a/src/licensedcode/data/rules/unpublished-source_3.RULE +++ b/src/licensedcode/data/rules/unpublished-source_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: unpublished-source +is_license_notice: yes +--- + THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF inc; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written diff --git a/src/licensedcode/data/rules/unpublished-source_3.yml b/src/licensedcode/data/rules/unpublished-source_3.yml deleted file mode 100644 index 85bd229b0fd..00000000000 --- a/src/licensedcode/data/rules/unpublished-source_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: unpublished-source -is_license_notice: yes diff --git a/src/licensedcode/data/rules/unpublished-source_4.RULE b/src/licensedcode/data/rules/unpublished-source_4.RULE index 950c6591fc7..a52cf6758d7 100644 --- a/src/licensedcode/data/rules/unpublished-source_4.RULE +++ b/src/licensedcode/data/rules/unpublished-source_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unpublished-source +is_license_notice: yes +relevance: 100 +--- + This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation; the contents of this file may not be disclosed to third parties, copied or duplicated in any form, in whole or in part, without the prior written permission of Broadcom diff --git a/src/licensedcode/data/rules/unpublished-source_4.yml b/src/licensedcode/data/rules/unpublished-source_4.yml deleted file mode 100644 index 5f453f9a430..00000000000 --- a/src/licensedcode/data/rules/unpublished-source_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unpublished-source -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/unrar_1.RULE b/src/licensedcode/data/rules/unrar_1.RULE index 6ce9b3ae1d8..0275c75abea 100644 --- a/src/licensedcode/data/rules/unrar_1.RULE +++ b/src/licensedcode/data/rules/unrar_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unrar +is_license_text: yes +notes: this is an older version of the unrar license +--- + ****** ***** ****** UnRAR - free utility for RAR archives ** ** ** ** ** ** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ****** ******* ****** License for use and distribution of @@ -36,4 +42,4 @@ Thank you for your interest in RAR and UnRAR. - Alexander L. Roshal + Alexander L. Roshal \ No newline at end of file diff --git a/src/licensedcode/data/rules/unrar_1.yml b/src/licensedcode/data/rules/unrar_1.yml deleted file mode 100644 index 281b68d4840..00000000000 --- a/src/licensedcode/data/rules/unrar_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unrar -is_license_text: yes -notes: this is an older version of the unrar license diff --git a/src/licensedcode/data/rules/unrar_2.RULE b/src/licensedcode/data/rules/unrar_2.RULE index c179293cdd7..a076f807f15 100644 --- a/src/licensedcode/data/rules/unrar_2.RULE +++ b/src/licensedcode/data/rules/unrar_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: unrar +is_license_text: yes +notes: this is an older version of the unrar license +--- + All copyrights to original unRAR code are owned by Alexander Roshal. The license for original unRAR code has the following restriction: @@ -6,4 +12,4 @@ The unRAR sources cannot be used to re-create the RAR compression algorithm, which is proprietary. Distribution of modified unRAR sources in separate form or as a part of other software is permitted, provided that it is clearly stated in the documentation and source comments that the code may -not be used to develop a RAR (WinRAR) compatible archiver. \ No newline at end of file +not be used to develop a RAR (WinRAR) compatible archiver. \ No newline at end of file diff --git a/src/licensedcode/data/rules/unrar_2.yml b/src/licensedcode/data/rules/unrar_2.yml deleted file mode 100644 index 281b68d4840..00000000000 --- a/src/licensedcode/data/rules/unrar_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unrar -is_license_text: yes -notes: this is an older version of the unrar license diff --git a/src/licensedcode/data/rules/uofu-rfpl.RULE b/src/licensedcode/data/rules/uofu-rfpl.RULE index 3b791dd13b0..927bd900e6b 100644 --- a/src/licensedcode/data/rules/uofu-rfpl.RULE +++ b/src/licensedcode/data/rules/uofu-rfpl.RULE @@ -1 +1,9 @@ +--- +license_expression: uofu-rfpl +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt +--- + http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/uofu-rfpl.yml b/src/licensedcode/data/rules/uofu-rfpl.yml deleted file mode 100644 index c3b5cf11eaa..00000000000 --- a/src/licensedcode/data/rules/uofu-rfpl.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uofu-rfpl -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.cs.utah.edu/~gk/teem/txt/LICENSE.txt diff --git a/src/licensedcode/data/rules/uoi-ncsa_1.RULE b/src/licensedcode/data/rules/uoi-ncsa_1.RULE index bb4b36fcf91..2fa18e6c28e 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_1.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_1.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.otm.illinois.edu/faculty/forms/opensource.asp +--- + http://www.otm.illinois.edu/faculty/forms/opensource.asp \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_1.yml b/src/licensedcode/data/rules/uoi-ncsa_1.yml deleted file mode 100644 index 8ee9da92152..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.otm.illinois.edu/faculty/forms/opensource.asp diff --git a/src/licensedcode/data/rules/uoi-ncsa_10.RULE b/src/licensedcode/data/rules/uoi-ncsa_10.RULE index a87bff0356d..ad0a0234974 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_10.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_10.RULE @@ -1,2 +1,11 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +referenced_filenames: + - LICENSE.txt +--- + Compiler-RT is open source software. You may freely distribute it under the terms of the license agreement found in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_10.yml b/src/licensedcode/data/rules/uoi-ncsa_10.yml deleted file mode 100644 index c44715e71a0..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/uoi-ncsa_11.RULE b/src/licensedcode/data/rules/uoi-ncsa_11.RULE index 0fa7b3906d3..1b7cac892bc 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_11.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_11.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +--- + the University of Illinois/NCSA Open Source License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_11.yml b/src/licensedcode/data/rules/uoi-ncsa_11.yml deleted file mode 100644 index 2647584b001..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_12.RULE b/src/licensedcode/data/rules/uoi-ncsa_12.RULE index 1822af0d469..913344e5e13 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_12.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_12.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +--- + University of Illinois Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_12.yml b/src/licensedcode/data/rules/uoi-ncsa_12.yml deleted file mode 100644 index 2647584b001..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_13.RULE b/src/licensedcode/data/rules/uoi-ncsa_13.RULE index 0ef1f7c85d9..ce492587719 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_13.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_13.RULE @@ -1,2 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + // This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// License. See LICENSE.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_13.yml b/src/licensedcode/data/rules/uoi-ncsa_13.yml deleted file mode 100644 index 8728ed076e3..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/uoi-ncsa_14.RULE b/src/licensedcode/data/rules/uoi-ncsa_14.RULE index 59eeeeb47d8..d2971f6b6d9 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_14.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_14.RULE @@ -1,2 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +referenced_filenames: + - LICENSE.txt +--- + LLVM is open source software. You may freely distribute it under the terms of -the license agreement found in LICENSE.txt. +the license agreement found in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_14.yml b/src/licensedcode/data/rules/uoi-ncsa_14.yml deleted file mode 100644 index 1724f2fd5af..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -referenced_filenames: - - LICENSE.txt diff --git a/src/licensedcode/data/rules/uoi-ncsa_15.RULE b/src/licensedcode/data/rules/uoi-ncsa_15.RULE index ca6ec447402..9e37bee1acc 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_15.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_15.RULE @@ -1,2 +1,11 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://llvm.org/ +--- + 'http://llvm.org', -license = 'BSD', +license = 'BSD', \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_15.yml b/src/licensedcode/data/rules/uoi-ncsa_15.yml deleted file mode 100644 index 20aee4a3381..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://llvm.org/ diff --git a/src/licensedcode/data/rules/uoi-ncsa_16.RULE b/src/licensedcode/data/rules/uoi-ncsa_16.RULE index d605ef7be6a..7de944f2bc4 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_16.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_16.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 95 +--- + LLVM license \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_16.yml b/src/licensedcode/data/rules/uoi-ncsa_16.yml deleted file mode 100644 index cacfa14ee4c..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/uoi-ncsa_17.RULE b/src/licensedcode/data/rules/uoi-ncsa_17.RULE index d444a0ccb9b..43185e46ce6 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_17.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_17.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +--- + LLVM License, can be linked into non-GPL projects \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_17.yml b/src/licensedcode/data/rules/uoi-ncsa_17.yml deleted file mode 100644 index 2647584b001..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_18.RULE b/src/licensedcode/data/rules/uoi-ncsa_18.RULE index aaccbcc5342..26f7c9ce820 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_18.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +ignorable_urls: + - http://www.opensource.org/licenses/UoI-NCSA.php +--- + License ======= @@ -5,4 +12,4 @@ Does the University of Illinois Open Source License really qualify as an "open s ----------------------------------------------------------------------------------------------- Yes, the license is `certified `_ by the Open Source -Initiative (OSI). +Initiative (OSI). \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_18.yml b/src/licensedcode/data/rules/uoi-ncsa_18.yml deleted file mode 100644 index fb1911769c2..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -ignorable_urls: - - http://www.opensource.org/licenses/UoI-NCSA.php diff --git a/src/licensedcode/data/rules/uoi-ncsa_19.RULE b/src/licensedcode/data/rules/uoi-ncsa_19.RULE index 4d3585b97d8..e77e3641732 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_19.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_19.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://llvm.org/svn/llvm-project/llvm/trunk/LICENSE.TXT +--- + http://llvm.org/svn/llvm-project/llvm/trunk/LICENSE.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_19.yml b/src/licensedcode/data/rules/uoi-ncsa_19.yml deleted file mode 100644 index 0d0beb2b797..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://llvm.org/svn/llvm-project/llvm/trunk/LICENSE.TXT diff --git a/src/licensedcode/data/rules/uoi-ncsa_2.RULE b/src/licensedcode/data/rules/uoi-ncsa_2.RULE index 7e7ce84411b..a184f693f73 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_2.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_2.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://otm.illinois.edu/uiuc_openSource +--- + http://otm.illinois.edu/uiuc_openSource \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_2.yml b/src/licensedcode/data/rules/uoi-ncsa_2.yml deleted file mode 100644 index c85cc416834..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://otm.illinois.edu/uiuc_openSource diff --git a/src/licensedcode/data/rules/uoi-ncsa_20.RULE b/src/licensedcode/data/rules/uoi-ncsa_20.RULE index c45a773be45..8e3d4513d48 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_20.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_20.RULE @@ -1,5 +1,12 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +ignorable_urls: + - http://llvm.org/svn/llvm-project/llvm/trunk/LICENSE.TXT +--- + Can I modify LLVM source code and redistribute the modified source? ------------------------------------------------------------------- Yes. The modified source distribution must retain the copyright notice and follow the three bulletted conditions listed in the `LLVM license -`_. +`_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_20.yml b/src/licensedcode/data/rules/uoi-ncsa_20.yml deleted file mode 100644 index f0c59ac30cf..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -ignorable_urls: - - http://llvm.org/svn/llvm-project/llvm/trunk/LICENSE.TXT diff --git a/src/licensedcode/data/rules/uoi-ncsa_21.RULE b/src/licensedcode/data/rules/uoi-ncsa_21.RULE index 2440be72d6d..d35160b8003 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_21.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_21.RULE @@ -1,2 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + This file is distributed under the University of Illnois Open Source -License. See LICENSE.TXT for details. +License. See LICENSE.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_21.yml b/src/licensedcode/data/rules/uoi-ncsa_21.yml deleted file mode 100644 index 8728ed076e3..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/uoi-ncsa_22.RULE b/src/licensedcode/data/rules/uoi-ncsa_22.RULE index 01413130596..2398a2f91ce 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_22.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_22.RULE @@ -1,2 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + This file is distributed under the niversity of Illinois Open Source -License. See LICENSE.TXT for details. +License. See LICENSE.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_22.yml b/src/licensedcode/data/rules/uoi-ncsa_22.yml deleted file mode 100644 index 8728ed076e3..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/uoi-ncsa_23.RULE b/src/licensedcode/data/rules/uoi-ncsa_23.RULE index 848cd93b3d2..d1d2e20e614 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_23.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_23.RULE @@ -1 +1,8 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +--- + package is released under the same license as LLVM/Clang \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_23.yml b/src/licensedcode/data/rules/uoi-ncsa_23.yml deleted file mode 100644 index fdbb57b3520..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/uoi-ncsa_24.RULE b/src/licensedcode/data/rules/uoi-ncsa_24.RULE index b276459972c..58cf841e39a 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_24.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_24.RULE @@ -1,3 +1,8 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +--- + GCC is licensed under the GPL license. "features.html#license"> clang uses a BSD license, which allows it to be embedded in -software that is not GPL-licensed. +software that is not GPL-licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_24.yml b/src/licensedcode/data/rules/uoi-ncsa_24.yml deleted file mode 100644 index 29b59331590..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_24.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes diff --git a/src/licensedcode/data/rules/uoi-ncsa_25.RULE b/src/licensedcode/data/rules/uoi-ncsa_25.RULE index fe2969ae991..d79976942fe 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_25.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_25.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +--- + Use the LLVM 'BSD' License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_25.yml b/src/licensedcode/data/rules/uoi-ncsa_25.yml deleted file mode 100644 index 95cadb0df44..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_26.RULE b/src/licensedcode/data/rules/uoi-ncsa_26.RULE index b17dbde6832..37b21fa40e6 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_26.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_26.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 99 +--- + LLVM 'BSD' License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_26.yml b/src/licensedcode/data/rules/uoi-ncsa_26.yml deleted file mode 100644 index d0cf263fe3e..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/uoi-ncsa_27.RULE b/src/licensedcode/data/rules/uoi-ncsa_27.RULE index 3d6888eab99..c55c80f69ea 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_27.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_27.RULE @@ -1 +1,8 @@ -license">Use the LLVM 'BSD' License +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 99 +minimum_coverage: 80 +--- + +license">Use the LLVM 'BSD' License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_27.yml b/src/licensedcode/data/rules/uoi-ncsa_27.yml deleted file mode 100644 index 22bcfce2c00..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 99 -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/uoi-ncsa_28.RULE b/src/licensedcode/data/rules/uoi-ncsa_28.RULE index 658f447942b..0cabdd07262 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_28.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_28.RULE @@ -1,3 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +ignorable_urls: + - http://llvm.org/docs/DeveloperPolicy.html#license +--- + We actively intend for clang (and LLVM as a whole) to be used for commercial projects, not only as a stand-alone compiler but also as a library embedded inside a proprietary application. The BSD license is the simplest way @@ -13,7 +20,4 @@ together. For more information about the LLVM/clang license, please see the < http://llvm.org/docs/DeveloperPolicy.html#license">LLVM License -Description for more information. - - - +Description for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_28.yml b/src/licensedcode/data/rules/uoi-ncsa_28.yml deleted file mode 100644 index ff59e4f4e25..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_28.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -ignorable_urls: - - http://llvm.org/docs/DeveloperPolicy.html#license diff --git a/src/licensedcode/data/rules/uoi-ncsa_29.RULE b/src/licensedcode/data/rules/uoi-ncsa_29.RULE index ea5b74e3f37..d1e16dac6da 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_29.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_29.RULE @@ -1 +1,9 @@ -http://llvm.org/docs/DeveloperPolicy.html#license +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://llvm.org/docs/DeveloperPolicy.html#license +--- + +http://llvm.org/docs/DeveloperPolicy.html#license \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_29.yml b/src/licensedcode/data/rules/uoi-ncsa_29.yml deleted file mode 100644 index a124db5dbd6..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_29.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://llvm.org/docs/DeveloperPolicy.html#license diff --git a/src/licensedcode/data/rules/uoi-ncsa_3.RULE b/src/licensedcode/data/rules/uoi-ncsa_3.RULE index 25221368c91..83c864b6d68 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_3.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +ignorable_urls: + - http://llvm.org/docs/DeveloperPolicy.html#license +--- + license">Use the LLVM 'BSD' License We actively intend for clang (and LLVM as a whole) to be used for @@ -13,4 +20,4 @@ together. For more information about the LLVM/clang license, please see the < http://llvm.org/docs/DeveloperPolicy.html#license">LLVM License -Description for more information. +Description for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_3.yml b/src/licensedcode/data/rules/uoi-ncsa_3.yml deleted file mode 100644 index ff59e4f4e25..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -ignorable_urls: - - http://llvm.org/docs/DeveloperPolicy.html#license diff --git a/src/licensedcode/data/rules/uoi-ncsa_30.RULE b/src/licensedcode/data/rules/uoi-ncsa_30.RULE index 7b2c6c9c727..677bc8b98de 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_30.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_30.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 99 +--- + University of Illinois CSA Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_30.yml b/src/licensedcode/data/rules/uoi-ncsa_30.yml deleted file mode 100644 index d0cf263fe3e..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/uoi-ncsa_31.RULE b/src/licensedcode/data/rules/uoi-ncsa_31.RULE index 2ab9fc17e76..f829d0a604d 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_31.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_31.RULE @@ -1 +1,9 @@ -http://www.stlinux.com/node/140 +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.stlinux.com/node/140 +--- + +http://www.stlinux.com/node/140 \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_31.yml b/src/licensedcode/data/rules/uoi-ncsa_31.yml deleted file mode 100644 index 532cb5eca5c..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.stlinux.com/node/140 diff --git a/src/licensedcode/data/rules/uoi-ncsa_32.RULE b/src/licensedcode/data/rules/uoi-ncsa_32.RULE index d3dbae95be9..7a1713dc975 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_32.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_32.RULE @@ -1,3 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +referenced_filenames: + - LICENSE.TXT +--- + The LLVM software contains code written by third parties. Such software will have its own individual LICENSE.TXT file in the directory in which it appears. This file will describe the copyrights, license, and restrictions which apply @@ -7,4 +14,4 @@ The disclaimer of warranty in the University of Illinois Open Source License applies to all code in the LLVM Distribution, and nothing in any of the other licenses gives permission to use the names of the LLVM Team or the University of Illinois to endorse or promote products derived from this -Software. +Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_32.yml b/src/licensedcode/data/rules/uoi-ncsa_32.yml deleted file mode 100644 index 556dbff157e..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_32.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/uoi-ncsa_33.RULE b/src/licensedcode/data/rules/uoi-ncsa_33.RULE index 9549108a4a6..79d08bc383a 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_33.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_33.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +--- + files are licensed under the LLVM license \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_33.yml b/src/licensedcode/data/rules/uoi-ncsa_33.yml deleted file mode 100644 index 95cadb0df44..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_33.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_34.RULE b/src/licensedcode/data/rules/uoi-ncsa_34.RULE index b82b9c0a9f8..7c76d1920d3 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_34.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_34.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +--- + This script is licensed under the LLVM license \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_34.yml b/src/licensedcode/data/rules/uoi-ncsa_34.yml deleted file mode 100644 index 95cadb0df44..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_35.RULE b/src/licensedcode/data/rules/uoi-ncsa_35.RULE index 0ae40ef930a..fc84502e04a 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_35.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_35.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +--- + the LLVM license \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_35.yml b/src/licensedcode/data/rules/uoi-ncsa_35.yml deleted file mode 100644 index 2647584b001..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_36.RULE b/src/licensedcode/data/rules/uoi-ncsa_36.RULE index f16eb11c6d6..9a02b1fcfd9 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_36.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_36.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including diff --git a/src/licensedcode/data/rules/uoi-ncsa_36.yml b/src/licensedcode/data/rules/uoi-ncsa_36.yml deleted file mode 100644 index c5cab093e7c..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_37.RULE b/src/licensedcode/data/rules/uoi-ncsa_37.RULE index 5d0cd7399fc..a17a8bd60de 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_37.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_37.RULE @@ -1,2 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://llvm.org/docs/DeveloperPolicy.html#legacy +--- + Legacy LLVM License (https://llvm.org/docs/DeveloperPolicy.html#legacy): University of Illinois/NCSA Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_37.yml b/src/licensedcode/data/rules/uoi-ncsa_37.yml deleted file mode 100644 index 998e72049b7..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://llvm.org/docs/DeveloperPolicy.html#legacy diff --git a/src/licensedcode/data/rules/uoi-ncsa_38.RULE b/src/licensedcode/data/rules/uoi-ncsa_38.RULE index 77d999ee706..9d20f68fad2 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_38.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_38.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +--- + Legacy LLVM License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_38.yml b/src/licensedcode/data/rules/uoi-ncsa_38.yml deleted file mode 100644 index 2647584b001..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_39.RULE b/src/licensedcode/data/rules/uoi-ncsa_39.RULE index 4d630eaf43e..b78a350066a 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_39.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_39.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://llvm.org/docs/DeveloperPolicy.html#legacy +--- + Legacy LLVM License (https://llvm.org/docs/DeveloperPolicy.html#legacy): \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_39.yml b/src/licensedcode/data/rules/uoi-ncsa_39.yml deleted file mode 100644 index 998e72049b7..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://llvm.org/docs/DeveloperPolicy.html#legacy diff --git a/src/licensedcode/data/rules/uoi-ncsa_4.RULE b/src/licensedcode/data/rules/uoi-ncsa_4.RULE index bdb69041295..47bd8d5823b 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_4.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_4.RULE @@ -1,7 +1,13 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimers in the documentation and/or other materials provided with the distribution. Neither the names of the University of Illinois, NCSA, nor the names of its contributors may be used to endorse or promote products derived from this Software without specific prior written permission. -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 CONTIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE 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 CONTIBUTORS 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/uoi-ncsa_4.yml b/src/licensedcode/data/rules/uoi-ncsa_4.yml deleted file mode 100644 index f440863a832..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/uoi-ncsa_40.RULE b/src/licensedcode/data/rules/uoi-ncsa_40.RULE index 897fc1ea479..616d811a32b 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_40.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_40.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/uoi-ncsa_40.yml b/src/licensedcode/data/rules/uoi-ncsa_40.yml deleted file mode 100644 index c5cab093e7c..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_41.RULE b/src/licensedcode/data/rules/uoi-ncsa_41.RULE index 8f51ae77a8d..d0a8e660a8c 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_41.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/uoi-ncsa_41.yml b/src/licensedcode/data/rules/uoi-ncsa_41.yml deleted file mode 100644 index c5cab093e7c..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_42.RULE b/src/licensedcode/data/rules/uoi-ncsa_42.RULE index d1d93f913ce..1e1b933d0e3 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_42.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_42.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +--- + University of Illinois "BSD-Like" license \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_42.yml b/src/licensedcode/data/rules/uoi-ncsa_42.yml deleted file mode 100644 index 2647584b001..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_43.RULE b/src/licensedcode/data/rules/uoi-ncsa_43.RULE index 7f58bba3122..3bcc35eb9b0 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_43.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_43.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/uoi-ncsa_43.yml b/src/licensedcode/data/rules/uoi-ncsa_43.yml deleted file mode 100644 index c5cab093e7c..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_44.RULE b/src/licensedcode/data/rules/uoi-ncsa_44.RULE index 2bbc0a60b57..12e746dabfe 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_44.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_44.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + NCSA University of Illinois/NCSA Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_44.yml b/src/licensedcode/data/rules/uoi-ncsa_44.yml deleted file mode 100644 index 455ff796499..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_45.RULE b/src/licensedcode/data/rules/uoi-ncsa_45.RULE index 053208fe44e..dcdf9ba78a5 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_45.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_45.RULE @@ -1 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: University of Illinois/NCSA Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_45.yml b/src/licensedcode/data/rules/uoi-ncsa_45.yml deleted file mode 100644 index a04007737d8..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_45.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/uoi-ncsa_46.RULE b/src/licensedcode/data/rules/uoi-ncsa_46.RULE index 7813b4ddeeb..4f96556c125 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_46.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_46.RULE @@ -1 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + University of Illinois/NCSA Open Source License NCSA \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_46.yml b/src/licensedcode/data/rules/uoi-ncsa_46.yml deleted file mode 100644 index a04007737d8..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_46.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/uoi-ncsa_47.RULE b/src/licensedcode/data/rules/uoi-ncsa_47.RULE index 73ac9001a6a..a9d40893581 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_47.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_47.RULE @@ -1 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: NCSA \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_47.yml b/src/licensedcode/data/rules/uoi-ncsa_47.yml deleted file mode 100644 index 63522bae102..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_47.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: uoi-ncsa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/uoi-ncsa_48.RULE b/src/licensedcode/data/rules/uoi-ncsa_48.RULE index 6e0b8a86262..0112e67c0f1 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_48.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_48.RULE @@ -1 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: University of Illinois/NCSA Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_48.yml b/src/licensedcode/data/rules/uoi-ncsa_48.yml deleted file mode 100644 index 63522bae102..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_48.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: uoi-ncsa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/uoi-ncsa_49.RULE b/src/licensedcode/data/rules/uoi-ncsa_49.RULE index 3297a515382..6b1df3af7e4 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_49.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_49.RULE @@ -1 +1,10 @@ +--- +license_expression: uoi-ncsa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: NCSA \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_49.yml b/src/licensedcode/data/rules/uoi-ncsa_49.yml deleted file mode 100644 index 63522bae102..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_49.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: uoi-ncsa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/uoi-ncsa_5.RULE b/src/licensedcode/data/rules/uoi-ncsa_5.RULE index 960b4d13bf6..185baf77a5e 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_5.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_5.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/UoI-NCSA.php +--- + http://www.opensource.org/licenses/UoI-NCSA.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_5.yml b/src/licensedcode/data/rules/uoi-ncsa_5.yml deleted file mode 100644 index 2059b949216..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/UoI-NCSA.php diff --git a/src/licensedcode/data/rules/uoi-ncsa_50.RULE b/src/licensedcode/data/rules/uoi-ncsa_50.RULE index 799d12c271e..3e40a9ab52e 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_50.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_50.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +--- + licensed under the University of Illinois/NCSA Open Source License (NCSA) . \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_50.yml b/src/licensedcode/data/rules/uoi-ncsa_50.yml deleted file mode 100644 index 95cadb0df44..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_51.RULE b/src/licensedcode/data/rules/uoi-ncsa_51.RULE index 9670e73a21a..68589ea25be 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_51.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_51.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_notice: yes +relevance: 100 +--- + licensed under the University of Illinois/NCSA Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_51.yml b/src/licensedcode/data/rules/uoi-ncsa_51.yml deleted file mode 100644 index 95cadb0df44..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_52.RULE b/src/licensedcode/data/rules/uoi-ncsa_52.RULE index d9d5b6bf2ba..c823fa82ed1 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_52.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_52.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +minimum_coverage: 99 +--- + University of Illinois/NCSA Open Source License (NCSA) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimers in the documentation and/or other materials provided with the distribution. • Neither the names of Carnegie Mellon University, nor the names of its contributors may be used to endorse or promote products derived from this Software without specific prior written permission. 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 CONTRIBUTORS 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 WITH THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_52.yml b/src/licensedcode/data/rules/uoi-ncsa_52.yml deleted file mode 100644 index dba6dd671ce..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -minimum_coverage: 99 diff --git a/src/licensedcode/data/rules/uoi-ncsa_53.RULE b/src/licensedcode/data/rules/uoi-ncsa_53.RULE index b9fc0468c91..d65ae136b32 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_53.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_53.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/NCSA +--- + https://licenses.nuget.org/NCSA \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_53.yml b/src/licensedcode/data/rules/uoi-ncsa_53.yml deleted file mode 100644 index a1b0765789f..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_53.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/NCSA diff --git a/src/licensedcode/data/rules/uoi-ncsa_54.RULE b/src/licensedcode/data/rules/uoi-ncsa_54.RULE index df2bbbabcd9..1bb7cbfc222 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_54.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_54.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/NCSA \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_54.yml b/src/licensedcode/data/rules/uoi-ncsa_54.yml deleted file mode 100644 index 2647584b001..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_54.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_544.RULE b/src/licensedcode/data/rules/uoi-ncsa_544.RULE index c8ba4e02012..c4a96b3915f 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_544.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_544.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to diff --git a/src/licensedcode/data/rules/uoi-ncsa_544.yml b/src/licensedcode/data/rules/uoi-ncsa_544.yml deleted file mode 100644 index c5cab093e7c..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_544.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_55.RULE b/src/licensedcode/data/rules/uoi-ncsa_55.RULE index d47ce5ab7f1..fd9600f7747 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_55.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_55.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NCSA +--- + LICENSE {{NCSA}} https://spdx.org/licenses/NCSA \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_55.yml b/src/licensedcode/data/rules/uoi-ncsa_55.yml deleted file mode 100644 index f0e9ad12e50..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_55.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NCSA diff --git a/src/licensedcode/data/rules/uoi-ncsa_56.RULE b/src/licensedcode/data/rules/uoi-ncsa_56.RULE index eaaf5a3f16c..395a05ff00a 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_56.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_56.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/NCSA +--- + {{NCSA}} https://spdx.org/licenses/NCSA \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_56.yml b/src/licensedcode/data/rules/uoi-ncsa_56.yml deleted file mode 100644 index f0e9ad12e50..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_56.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/NCSA diff --git a/src/licensedcode/data/rules/uoi-ncsa_6.RULE b/src/licensedcode/data/rules/uoi-ncsa_6.RULE index eee730c9f60..5e82e25734e 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_6.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_6.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +--- + University of Illinois/NCSA Open Source License \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_6.yml b/src/licensedcode/data/rules/uoi-ncsa_6.yml deleted file mode 100644 index 2647584b001..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_7.RULE b/src/licensedcode/data/rules/uoi-ncsa_7.RULE index 2badde4a9d3..7b2727070e7 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_7.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.opensource.org/licenses/UoI-NCSA.php +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including @@ -24,4 +32,4 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. [This is an instance of the University of Illinois/NCSA Open Source -agreement, obtained from http://www.opensource.org/licenses/UoI-NCSA.php] +agreement, obtained from http://www.opensource.org/licenses/UoI-NCSA.php] \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_7.yml b/src/licensedcode/data/rules/uoi-ncsa_7.yml deleted file mode 100644 index 4622f719479..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.opensource.org/licenses/UoI-NCSA.php diff --git a/src/licensedcode/data/rules/uoi-ncsa_8.RULE b/src/licensedcode/data/rules/uoi-ncsa_8.RULE index 93732366193..3a32e3c25a9 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_8.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +minimum_coverage: 90 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to use, copy, @@ -21,4 +27,4 @@ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS 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 WITH THE SOFTWARE. +SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_8.yml b/src/licensedcode/data/rules/uoi-ncsa_8.yml deleted file mode 100644 index 2afef8300d4..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/uoi-ncsa_9.RULE b/src/licensedcode/data/rules/uoi-ncsa_9.RULE index 6ad41adf2d3..97145b21451 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_9.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_text: yes +minimum_coverage: 90 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal with the Software without restriction, including without limitation the rights to use, copy, @@ -21,4 +27,4 @@ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS 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 WITH THE SOFTWARE. +SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_9.yml b/src/licensedcode/data/rules/uoi-ncsa_9.yml deleted file mode 100644 index 2afef8300d4..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/uoi-ncsa_and_mit-old-style-no-advert.RULE b/src/licensedcode/data/rules/uoi-ncsa_and_mit-old-style-no-advert.RULE index 9a9cb74a481..27d454f8dc2 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_and_mit-old-style-no-advert.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_and_mit-old-style-no-advert.RULE @@ -1,3 +1,13 @@ +--- +license_expression: uoi-ncsa AND mit-old-style-no-advert +is_license_notice: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright 1991 by the Massachusetts Institute of Technology +ignorable_holders: + - the Massachusetts Institute of Technology +--- + All autoconf files are licensed under the LLVM license with the following additions: @@ -16,4 +26,4 @@ additions: suitability of this software for any purpose. It is provided "as is" without express or implied warranty. -Please see the source files for additional copyrights. +Please see the source files for additional copyrights. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_and_mit-old-style-no-advert.yml b/src/licensedcode/data/rules/uoi-ncsa_and_mit-old-style-no-advert.yml deleted file mode 100644 index 488504450dd..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_and_mit-old-style-no-advert.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: uoi-ncsa AND mit-old-style-no-advert -is_license_notice: yes -minimum_coverage: 80 -ignorable_copyrights: - - Copyright 1991 by the Massachusetts Institute of Technology -ignorable_holders: - - the Massachusetts Institute of Technology diff --git a/src/licensedcode/data/rules/uoi-ncsa_and_other.RULE b/src/licensedcode/data/rules/uoi-ncsa_and_other.RULE index 8c508d25172..724b6a10476 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_and_other.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_and_other.RULE @@ -1,3 +1,19 @@ +--- +license_expression: uoi-ncsa AND other-permissive AND other-copyleft +is_license_notice: yes +minimum_coverage: 95 +ignorable_copyrights: + - Copyright The LLVM project +ignorable_holders: + - The LLVM project +ignorable_urls: + - http://www.opensource.org/licenses/UoI-NCSA.php + - http://www.opensource.org/licenses/mit-license.php +ignorable_emails: + - llvm-oversight@cs.uiuc.edu + - llvmdev@cs.uiuc.edu +--- + .. _copyright-license-patents: Copyright, License, and Patents diff --git a/src/licensedcode/data/rules/uoi-ncsa_and_other.yml b/src/licensedcode/data/rules/uoi-ncsa_and_other.yml deleted file mode 100644 index d842aefcdc3..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_and_other.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: uoi-ncsa AND other-permissive AND other-copyleft -is_license_notice: yes -minimum_coverage: 95 -ignorable_copyrights: - - Copyright The LLVM project -ignorable_holders: - - The LLVM project -ignorable_urls: - - http://www.opensource.org/licenses/UoI-NCSA.php - - http://www.opensource.org/licenses/mit-license.php -ignorable_emails: - - llvm-oversight@cs.uiuc.edu - - llvmdev@cs.uiuc.edu diff --git a/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_1.RULE index 6a4dd8d5f64..258cf3ec956 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: uoi-ncsa AND unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + All autoconf files are licensed under the LLVM license with the following additions: \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_1.yml deleted file mode 100644 index e03304670bf..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa AND unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_2.RULE b/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_2.RULE index 5b17b650579..f315a9af783 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_2.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: uoi-ncsa AND unknown-license-reference +is_license_notice: yes +relevance: 100 +--- + This script is licensed under the LLVM license, with the following - additional copyrights and restrictions: + additional copyrights and restrictions: \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_2.yml b/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_2.yml deleted file mode 100644 index e03304670bf..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_and_unknown-license-reference_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa AND unknown-license-reference -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_1.RULE b/src/licensedcode/data/rules/uoi-ncsa_or_mit_1.RULE index 80fcb884974..3743726ba48 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_1.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_or_mit_1.RULE @@ -1,6 +1,11 @@ +--- +license_expression: uoi-ncsa OR mit +is_license_notice: yes +--- + The library is dual licensed under both the University of Illinois "BSD-Like" license and the MIT license. As a user of this code you may choose to use it under either license. As a contributor, you agree to allow your code to be used under both. -Full text of the relevant licenses is included below. +Full text of the relevant licenses is included below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_1.yml b/src/licensedcode/data/rules/uoi-ncsa_or_mit_1.yml deleted file mode 100644 index f322b2da330..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: uoi-ncsa OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_2.RULE b/src/licensedcode/data/rules/uoi-ncsa_or_mit_2.RULE index 878a20596bf..5fcb9649116 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_2.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_or_mit_2.RULE @@ -1,2 +1,10 @@ +--- +license_expression: uoi-ncsa OR mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE.TXT +--- + This file is dual licensed under the MIT and the University of Illinois Open - Source Licenses. See LICENSE.TXT for details. + Source Licenses. See LICENSE.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_2.yml b/src/licensedcode/data/rules/uoi-ncsa_or_mit_2.yml deleted file mode 100644 index 143dd28b709..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa OR mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_3.RULE b/src/licensedcode/data/rules/uoi-ncsa_or_mit_3.RULE index 11712d2435d..c8892cf5b23 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_3.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_or_mit_3.RULE @@ -1,5 +1,12 @@ +--- +license_expression: uoi-ncsa OR mit +is_license_notice: yes +referenced_filenames: + - LICENSE.TXT +--- + The source code is disjunctively dual licensed (NCSA OR MIT). It is used by this project under the terms of the NCSA license (also known as the University of Illinois/NCSA Open Source License), which is a permissive license compatible with BSD-3-Clause. Any - contributions to this code must be made under the terms of both licenses. + contributions to this code must be made under the terms of both licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_3.yml b/src/licensedcode/data/rules/uoi-ncsa_or_mit_3.yml deleted file mode 100644 index 95d7bed5df3..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: uoi-ncsa OR mit -is_license_notice: yes -referenced_filenames: - - LICENSE.TXT diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_4.RULE b/src/licensedcode/data/rules/uoi-ncsa_or_mit_4.RULE index 8a6f606fa0c..ec65b12d0d4 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_4.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_or_mit_4.RULE @@ -1,6 +1,11 @@ +--- +license_expression: uoi-ncsa OR mit +is_license_notice: yes +--- + library is dual licensed under both the University of Illinois "BSD-Like" license and the MIT license. As a user of this code you may choose to use it under either license. As a contributor, you agree to allow your code to be used under both. -Full text of the relevant licenses is included below. +Full text of the relevant licenses is included below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_4.yml b/src/licensedcode/data/rules/uoi-ncsa_or_mit_4.yml deleted file mode 100644 index f322b2da330..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: uoi-ncsa OR mit -is_license_notice: yes diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_5.RULE b/src/licensedcode/data/rules/uoi-ncsa_or_mit_5.RULE index 5266263fdb1..ea9413adc5b 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_5.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_or_mit_5.RULE @@ -1 +1,7 @@ +--- +license_expression: uoi-ncsa OR mit +is_license_notice: yes +relevance: 100 +--- + dual licensed under LLVM's license and MIT: \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_5.yml b/src/licensedcode/data/rules/uoi-ncsa_or_mit_5.yml deleted file mode 100644 index d7b4f48a338..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: uoi-ncsa OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_1.RULE b/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_1.RULE index 9a834508e2b..4f7a89aff72 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_1.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: (uoi-ncsa OR mit) AND generic-cla +is_license_notice: yes +relevance: 100 +--- + The software contained in this directory tree is dual licensed under both the University of Illinois "BSD-Like" license and the MIT license. As a user of this code you may choose to use it under either license. As a contributor, diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_1.yml b/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_1.yml deleted file mode 100644 index e2557d7b69d..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (uoi-ncsa OR mit) AND generic-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_2.RULE b/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_2.RULE index df14b71f98f..98e70e1f882 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_2.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: (uoi-ncsa OR mit) AND generic-cla +is_license_notice: yes +relevance: 100 +--- + The software contained in this directory tree is dual licensed under both the University of Illinois "BSD-Like" license and the MIT license. As a user of this code you may choose to use it under either license. As a contributor, diff --git a/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_2.yml b/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_2.yml deleted file mode 100644 index e2557d7b69d..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_or_mit_and_generic-cla_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: (uoi-ncsa OR mit) AND generic-cla -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/uoi-ncsa_url_1.RULE b/src/licensedcode/data/rules/uoi-ncsa_url_1.RULE index 91f6ecac95e..4a0945dc3ff 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_url_1.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ncsa +--- + https://spdx.org/licenses/ncsa \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_url_1.yml b/src/licensedcode/data/rules/uoi-ncsa_url_1.yml deleted file mode 100644 index 4a6d5bf811b..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ncsa diff --git a/src/licensedcode/data/rules/uoi-ncsa_url_2.RULE b/src/licensedcode/data/rules/uoi-ncsa_url_2.RULE index 58eea3b634d..2d27f2f453d 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_url_2.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ncsa.html +--- + https://spdx.org/licenses/ncsa.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_url_2.yml b/src/licensedcode/data/rules/uoi-ncsa_url_2.yml deleted file mode 100644 index 094b28e499b..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ncsa.html diff --git a/src/licensedcode/data/rules/uoi-ncsa_url_glc_202.RULE b/src/licensedcode/data/rules/uoi-ncsa_url_glc_202.RULE index 212ca29781b..fd36ee9e5a2 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_url_glc_202.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_url_glc_202.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/ncsa +--- + http://www.opensource.org/licenses/ncsa \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_url_glc_202.yml b/src/licensedcode/data/rules/uoi-ncsa_url_glc_202.yml deleted file mode 100644 index fbc99bcfeef..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_url_glc_202.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/ncsa diff --git a/src/licensedcode/data/rules/uoi-ncsa_url_glc_203.RULE b/src/licensedcode/data/rules/uoi-ncsa_url_glc_203.RULE index 7548e1c81b9..cbdf69a003f 100644 --- a/src/licensedcode/data/rules/uoi-ncsa_url_glc_203.RULE +++ b/src/licensedcode/data/rules/uoi-ncsa_url_glc_203.RULE @@ -1 +1,9 @@ +--- +license_expression: uoi-ncsa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/ncsa +--- + https://www.opensource.org/licenses/ncsa \ No newline at end of file diff --git a/src/licensedcode/data/rules/uoi-ncsa_url_glc_203.yml b/src/licensedcode/data/rules/uoi-ncsa_url_glc_203.yml deleted file mode 100644 index 147c82e9219..00000000000 --- a/src/licensedcode/data/rules/uoi-ncsa_url_glc_203.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: uoi-ncsa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/ncsa diff --git a/src/licensedcode/data/rules/upl-1.0_1.RULE b/src/licensedcode/data/rules/upl-1.0_1.RULE index b122e7f292a..8d77f2b5c4e 100644 --- a/src/licensedcode/data/rules/upl-1.0_1.RULE +++ b/src/licensedcode/data/rules/upl-1.0_1.RULE @@ -1,2 +1,8 @@ -** Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl. +--- +license_expression: upl-1.0 +is_license_notice: yes +ignorable_urls: + - http://oss.oracle.com/licenses/upl +--- +** Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_1.yml b/src/licensedcode/data/rules/upl-1.0_1.yml deleted file mode 100644 index 7f371aabf8a..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: upl-1.0 -is_license_notice: yes -ignorable_urls: - - http://oss.oracle.com/licenses/upl diff --git a/src/licensedcode/data/rules/upl-1.0_10.RULE b/src/licensedcode/data/rules/upl-1.0_10.RULE index 53878af5333..f4057f057d8 100644 --- a/src/licensedcode/data/rules/upl-1.0_10.RULE +++ b/src/licensedcode/data/rules/upl-1.0_10.RULE @@ -1,2 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/UPL +--- + available under the following license: * [The Universal Permissive License (UPL), Version 1.0](https://opensource.org/licenses/UPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_10.yml b/src/licensedcode/data/rules/upl-1.0_10.yml deleted file mode 100644 index a4e4ecd2e6e..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/UPL diff --git a/src/licensedcode/data/rules/upl-1.0_11.RULE b/src/licensedcode/data/rules/upl-1.0_11.RULE index b32e1c60d88..31224d02fe9 100644 --- a/src/licensedcode/data/rules/upl-1.0_11.RULE +++ b/src/licensedcode/data/rules/upl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/UPL +--- + * [The Universal Permissive License (UPL), Version 1.0](https://opensource.org/licenses/UPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_11.yml b/src/licensedcode/data/rules/upl-1.0_11.yml deleted file mode 100644 index 3f958cce6f0..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/UPL diff --git a/src/licensedcode/data/rules/upl-1.0_12.RULE b/src/licensedcode/data/rules/upl-1.0_12.RULE index ed69f7473f4..2c2d741bf9c 100644 --- a/src/licensedcode/data/rules/upl-1.0_12.RULE +++ b/src/licensedcode/data/rules/upl-1.0_12.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/upl +--- + http://oss.oracle.com/licenses/upl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_12.yml b/src/licensedcode/data/rules/upl-1.0_12.yml deleted file mode 100644 index 3fd255b272b..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/upl diff --git a/src/licensedcode/data/rules/upl-1.0_13.RULE b/src/licensedcode/data/rules/upl-1.0_13.RULE index dffffa2d24f..a1359e7a785 100644 --- a/src/licensedcode/data/rules/upl-1.0_13.RULE +++ b/src/licensedcode/data/rules/upl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://oss.oracle.com/licenses/upl +--- + https://oss.oracle.com/licenses/upl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_13.yml b/src/licensedcode/data/rules/upl-1.0_13.yml deleted file mode 100644 index b96e20df76c..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://oss.oracle.com/licenses/upl diff --git a/src/licensedcode/data/rules/upl-1.0_14.RULE b/src/licensedcode/data/rules/upl-1.0_14.RULE index e9e1a32b4cc..441282d81b4 100644 --- a/src/licensedcode/data/rules/upl-1.0_14.RULE +++ b/src/licensedcode/data/rules/upl-1.0_14.RULE @@ -1,2 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://oss.oracle.com/licenses/upl +--- + made available to you under the terms the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_14.yml b/src/licensedcode/data/rules/upl-1.0_14.yml deleted file mode 100644 index 1fca9dfe16d..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://oss.oracle.com/licenses/upl diff --git a/src/licensedcode/data/rules/upl-1.0_15.RULE b/src/licensedcode/data/rules/upl-1.0_15.RULE index 91fbb0655d1..f8682540b30 100644 --- a/src/licensedcode/data/rules/upl-1.0_15.RULE +++ b/src/licensedcode/data/rules/upl-1.0_15.RULE @@ -1 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Universal Permissive License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_15.yml b/src/licensedcode/data/rules/upl-1.0_15.yml deleted file mode 100644 index 7d1f9b21e1d..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/upl-1.0_16.RULE b/src/licensedcode/data/rules/upl-1.0_16.RULE index f70ff26aec4..4193e7bc00b 100644 --- a/src/licensedcode/data/rules/upl-1.0_16.RULE +++ b/src/licensedcode/data/rules/upl-1.0_16.RULE @@ -1 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Universal Permissive License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_16.yml b/src/licensedcode/data/rules/upl-1.0_16.yml deleted file mode 100644 index 7d1f9b21e1d..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/upl-1.0_17.RULE b/src/licensedcode/data/rules/upl-1.0_17.RULE index e7d6f79cf7e..0e2902a0166 100644 --- a/src/licensedcode/data/rules/upl-1.0_17.RULE +++ b/src/licensedcode/data/rules/upl-1.0_17.RULE @@ -1 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + UPL-1.0 Universal Permissive License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_17.yml b/src/licensedcode/data/rules/upl-1.0_17.yml deleted file mode 100644 index 7d1f9b21e1d..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/upl-1.0_18.RULE b/src/licensedcode/data/rules/upl-1.0_18.RULE index ab861604fac..215944cc450 100644 --- a/src/licensedcode/data/rules/upl-1.0_18.RULE +++ b/src/licensedcode/data/rules/upl-1.0_18.RULE @@ -1 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Universal Permissive License v1.0 UPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_18.yml b/src/licensedcode/data/rules/upl-1.0_18.yml deleted file mode 100644 index 7d1f9b21e1d..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/upl-1.0_19.RULE b/src/licensedcode/data/rules/upl-1.0_19.RULE index 9483e2acbb1..433405520c4 100644 --- a/src/licensedcode/data/rules/upl-1.0_19.RULE +++ b/src/licensedcode/data/rules/upl-1.0_19.RULE @@ -1 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: UPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_19.yml b/src/licensedcode/data/rules/upl-1.0_19.yml deleted file mode 100644 index 9536eb33726..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: upl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/upl-1.0_2.RULE b/src/licensedcode/data/rules/upl-1.0_2.RULE index 96ff27f1e47..b8cccd4c9f0 100644 --- a/src/licensedcode/data/rules/upl-1.0_2.RULE +++ b/src/licensedcode/data/rules/upl-1.0_2.RULE @@ -1 +1,7 @@ -** Licensed under the Universal Permissive License v 1.0 +--- +license_expression: upl-1.0 +is_license_notice: yes +relevance: 100 +--- + +** Licensed under the Universal Permissive License v 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_2.yml b/src/licensedcode/data/rules/upl-1.0_2.yml deleted file mode 100644 index 07705feebd4..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: upl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/upl-1.0_20.RULE b/src/licensedcode/data/rules/upl-1.0_20.RULE index c0532942a92..e385c48f239 100644 --- a/src/licensedcode/data/rules/upl-1.0_20.RULE +++ b/src/licensedcode/data/rules/upl-1.0_20.RULE @@ -1 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Universal Permissive License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_20.yml b/src/licensedcode/data/rules/upl-1.0_20.yml deleted file mode 100644 index 9536eb33726..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: upl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/upl-1.0_21.RULE b/src/licensedcode/data/rules/upl-1.0_21.RULE index f88ed69c791..ae3cbc1415f 100644 --- a/src/licensedcode/data/rules/upl-1.0_21.RULE +++ b/src/licensedcode/data/rules/upl-1.0_21.RULE @@ -1 +1,10 @@ +--- +license_expression: upl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: UPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_21.yml b/src/licensedcode/data/rules/upl-1.0_21.yml deleted file mode 100644 index 9536eb33726..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: upl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/upl-1.0_22.RULE b/src/licensedcode/data/rules/upl-1.0_22.RULE index 8b5eb516033..7c8e94d804d 100644 --- a/src/licensedcode/data/rules/upl-1.0_22.RULE +++ b/src/licensedcode/data/rules/upl-1.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/UPL-1.0 +--- + https://licenses.nuget.org/UPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_22.yml b/src/licensedcode/data/rules/upl-1.0_22.yml deleted file mode 100644 index 6cd8c759b7e..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/UPL-1.0 diff --git a/src/licensedcode/data/rules/upl-1.0_23.RULE b/src/licensedcode/data/rules/upl-1.0_23.RULE index fef410a5d6d..556db1f3e82 100644 --- a/src/licensedcode/data/rules/upl-1.0_23.RULE +++ b/src/licensedcode/data/rules/upl-1.0_23.RULE @@ -1 +1,7 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/UPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_23.yml b/src/licensedcode/data/rules/upl-1.0_23.yml deleted file mode 100644 index 5bf5b7e05df..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/upl-1.0_24.RULE b/src/licensedcode/data/rules/upl-1.0_24.RULE index afc340c91d8..8dde8672210 100644 --- a/src/licensedcode/data/rules/upl-1.0_24.RULE +++ b/src/licensedcode/data/rules/upl-1.0_24.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/UPL-1.0 +--- + {{UPL-1.0}} https://spdx.org/licenses/UPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_24.yml b/src/licensedcode/data/rules/upl-1.0_24.yml deleted file mode 100644 index 5422a29209c..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/UPL-1.0 diff --git a/src/licensedcode/data/rules/upl-1.0_25.RULE b/src/licensedcode/data/rules/upl-1.0_25.RULE index 18b89a97c1e..70ebd49a6eb 100644 --- a/src/licensedcode/data/rules/upl-1.0_25.RULE +++ b/src/licensedcode/data/rules/upl-1.0_25.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/UPL-1.0 +--- + LICENSE {{UPL-1.0}} https://spdx.org/licenses/UPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_25.yml b/src/licensedcode/data/rules/upl-1.0_25.yml deleted file mode 100644 index 5422a29209c..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/UPL-1.0 diff --git a/src/licensedcode/data/rules/upl-1.0_3.RULE b/src/licensedcode/data/rules/upl-1.0_3.RULE index a4ca447be62..70824c8afad 100644 --- a/src/licensedcode/data/rules/upl-1.0_3.RULE +++ b/src/licensedcode/data/rules/upl-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: upl-1.0 +is_license_text: yes +minimum_coverage: 80 +ignorable_urls: + - http://www.oracle.com/ +--- + DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. The Universal Permissive License (UPL), Version 1.0 @@ -38,4 +46,4 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any -questions. +questions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_3.yml b/src/licensedcode/data/rules/upl-1.0_3.yml deleted file mode 100644 index 90ab2876599..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_text: yes -minimum_coverage: 80 -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/upl-1.0_4.RULE b/src/licensedcode/data/rules/upl-1.0_4.RULE index 9c4e33c406a..38160a58884 100644 --- a/src/licensedcode/data/rules/upl-1.0_4.RULE +++ b/src/licensedcode/data/rules/upl-1.0_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: upl-1.0 +is_license_text: yes +minimum_coverage: 90 +ignorable_urls: + - http://www.oracle.com/ +--- + The Universal Permissive License (UPL), Version 1.0 Subject to the condition set forth below, permission is hereby granted to @@ -36,4 +44,4 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any -questions. +questions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_4.yml b/src/licensedcode/data/rules/upl-1.0_4.yml deleted file mode 100644 index e8142fff02c..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_text: yes -minimum_coverage: 90 -ignorable_urls: - - http://www.oracle.com/ diff --git a/src/licensedcode/data/rules/upl-1.0_5.RULE b/src/licensedcode/data/rules/upl-1.0_5.RULE index defb8a957b1..1208a1c50aa 100644 --- a/src/licensedcode/data/rules/upl-1.0_5.RULE +++ b/src/licensedcode/data/rules/upl-1.0_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_text: yes +minimum_coverage: 90 +--- + The Universal Permissive License (UPL), Version 1.0 Subject to the condition set forth below, permission is hereby granted to any @@ -30,4 +36,4 @@ 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. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_5.yml b/src/licensedcode/data/rules/upl-1.0_5.yml deleted file mode 100644 index 508ac30fd0d..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: upl-1.0 -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/upl-1.0_6.RULE b/src/licensedcode/data/rules/upl-1.0_6.RULE index 5b0f2bf5473..67e1f21fa4f 100644 --- a/src/licensedcode/data/rules/upl-1.0_6.RULE +++ b/src/licensedcode/data/rules/upl-1.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/upl-1.0 +--- + https://choosealicense.com/licenses/upl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_6.yml b/src/licensedcode/data/rules/upl-1.0_6.yml deleted file mode 100644 index 4232afa880e..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/upl-1.0 diff --git a/src/licensedcode/data/rules/upl-1.0_7.RULE b/src/licensedcode/data/rules/upl-1.0_7.RULE index 9e8d37a8d78..05e87ae7d75 100644 --- a/src/licensedcode/data/rules/upl-1.0_7.RULE +++ b/src/licensedcode/data/rules/upl-1.0_7.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/upl-1.0 +--- + http://choosealicense.com/licenses/upl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_7.yml b/src/licensedcode/data/rules/upl-1.0_7.yml deleted file mode 100644 index 80a9ed62913..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/upl-1.0 diff --git a/src/licensedcode/data/rules/upl-1.0_8.RULE b/src/licensedcode/data/rules/upl-1.0_8.RULE index a0ea9be96f5..33f110dac37 100644 --- a/src/licensedcode/data/rules/upl-1.0_8.RULE +++ b/src/licensedcode/data/rules/upl-1.0_8.RULE @@ -1,3 +1,14 @@ +--- +license_expression: upl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE + - THIRD_PARTY_LICENSE +ignorable_urls: + - http://oss.oracle.com/licenses/upl +--- + made available to you under the terms the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl. This implementation is in part derived from and contains additional code from 3rd parties, the copyrights and diff --git a/src/licensedcode/data/rules/upl-1.0_8.yml b/src/licensedcode/data/rules/upl-1.0_8.yml deleted file mode 100644 index 75264c6682a..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_8.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: upl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE - - THIRD_PARTY_LICENSE -ignorable_urls: - - http://oss.oracle.com/licenses/upl diff --git a/src/licensedcode/data/rules/upl-1.0_9.RULE b/src/licensedcode/data/rules/upl-1.0_9.RULE index 9112c292083..5e574dbed8a 100644 --- a/src/licensedcode/data/rules/upl-1.0_9.RULE +++ b/src/licensedcode/data/rules/upl-1.0_9.RULE @@ -1 +1,7 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +--- + The Universal Permissive License (UPL), Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_9.yml b/src/licensedcode/data/rules/upl-1.0_9.yml deleted file mode 100644 index 5bf5b7e05df..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_1.RULE index a0cb55048a4..d61157a7034 100644 --- a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_1.RULE @@ -1,3 +1,14 @@ +--- +license_expression: upl-1.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 + - https://oss.oracle.com/licenses/upl +--- + This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0 . You may choose either license. See LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_1.yml b/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_1.yml deleted file mode 100644 index aad4b879dc1..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: upl-1.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 - - https://oss.oracle.com/licenses/upl diff --git a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_2.RULE b/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_2.RULE index 1827abec422..79bec47dd9a 100644 --- a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: upl-1.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +ignorable_urls: + - https://oss.oracle.com/licenses/upl + - https://www.apache.org/licenses/LICENSE-2.0 +--- + This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at https://www.apache.org/licenses/LICENSE-2.0 . You may choose either license. See LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_2.yml b/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_2.yml deleted file mode 100644 index bb107e3cd89..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: upl-1.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -ignorable_urls: - - https://oss.oracle.com/licenses/upl - - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/upl-1.0_url_1.RULE b/src/licensedcode/data/rules/upl-1.0_url_1.RULE index 3bc6c5b8261..2a32a27d09d 100644 --- a/src/licensedcode/data/rules/upl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/upl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/upl-1.0 +--- + https://spdx.org/licenses/upl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_url_1.yml b/src/licensedcode/data/rules/upl-1.0_url_1.yml deleted file mode 100644 index 7a80d59f9a9..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/upl-1.0 diff --git a/src/licensedcode/data/rules/upl-1.0_url_2.RULE b/src/licensedcode/data/rules/upl-1.0_url_2.RULE index 1a75d0fa940..6fa8d378d4d 100644 --- a/src/licensedcode/data/rules/upl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/upl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/upl-1.0.html +--- + https://spdx.org/licenses/upl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_url_2.yml b/src/licensedcode/data/rules/upl-1.0_url_2.yml deleted file mode 100644 index 1dc99926f83..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/upl-1.0.html diff --git a/src/licensedcode/data/rules/upl-1.0_url_glc_110.RULE b/src/licensedcode/data/rules/upl-1.0_url_glc_110.RULE index c547197e807..af6b11dc024 100644 --- a/src/licensedcode/data/rules/upl-1.0_url_glc_110.RULE +++ b/src/licensedcode/data/rules/upl-1.0_url_glc_110.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/upl +--- + http://opensource.org/licenses/upl \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_url_glc_110.yml b/src/licensedcode/data/rules/upl-1.0_url_glc_110.yml deleted file mode 100644 index dc18011f0c8..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_url_glc_110.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/upl diff --git a/src/licensedcode/data/rules/upl-1.0_url_glc_111.RULE b/src/licensedcode/data/rules/upl-1.0_url_glc_111.RULE index 7827c104dba..1959f40a40e 100644 --- a/src/licensedcode/data/rules/upl-1.0_url_glc_111.RULE +++ b/src/licensedcode/data/rules/upl-1.0_url_glc_111.RULE @@ -1 +1,9 @@ +--- +license_expression: upl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/upl +--- + https://opensource.org/licenses/upl \ No newline at end of file diff --git a/src/licensedcode/data/rules/upl-1.0_url_glc_111.yml b/src/licensedcode/data/rules/upl-1.0_url_glc_111.yml deleted file mode 100644 index cc02e5cc1cb..00000000000 --- a/src/licensedcode/data/rules/upl-1.0_url_glc_111.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: upl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/upl diff --git a/src/licensedcode/data/rules/us-govt-public-domain_1.RULE b/src/licensedcode/data/rules/us-govt-public-domain_1.RULE index 7c25e488ec0..d5d856ba306 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_1.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_1.RULE @@ -1,2 +1,8 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +--- + No copyright is claimed in this work by the United States Government under -Title 17, U.S. Code. \ No newline at end of file +Title 17, U.S. Code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_1.yml b/src/licensedcode/data/rules/us-govt-public-domain_1.yml deleted file mode 100644 index b29104bfd19..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_10.RULE b/src/licensedcode/data/rules/us-govt-public-domain_10.RULE index 751b85ec1a8..036eb59f80e 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_10.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_10.RULE @@ -1,2 +1,10 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +ignorable_authors: + - United States +--- + The software provided here is released by the Naval Postgraduate School, an agency of the U.S. Department of Navy. The software bears no warranty, either expressed or implied. NPS does not assume legal liability nor responsibility for a User's use of the software or the results of such use. Please note that within the United States, copyright protection, under Section 105 of the United States Code, Title 17, is not available for any work of the United States Government and/or for any works created by United States Government employees. User acknowledges that this software contains work which was created by NPS government employees and is therefore in the public domain and not subject to copyright. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_10.yml b/src/licensedcode/data/rules/us-govt-public-domain_10.yml deleted file mode 100644 index 5a3c92295d0..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 -ignorable_authors: - - United States diff --git a/src/licensedcode/data/rules/us-govt-public-domain_11.RULE b/src/licensedcode/data/rules/us-govt-public-domain_11.RULE index 282a72d22f3..76adf9a4bf3 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_11.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_11.RULE @@ -1,3 +1,11 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +ignorable_authors: + - United States +--- + The software provided here is released by the Naval Postgraduate School, an agency of the U.S. Department of Navy. The software bears no warranty, either expressed or implied. NPS does not assume diff --git a/src/licensedcode/data/rules/us-govt-public-domain_11.yml b/src/licensedcode/data/rules/us-govt-public-domain_11.yml deleted file mode 100644 index 5a3c92295d0..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 -ignorable_authors: - - United States diff --git a/src/licensedcode/data/rules/us-govt-public-domain_12.RULE b/src/licensedcode/data/rules/us-govt-public-domain_12.RULE index 2f17b3c87a7..b9907c7b2c2 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_12.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + Portions of this software was developed by employees of the National Institute of Standards and Technology (NIST), an agency of the Federal Government. Pursuant to title 17 United States Code Section 105, works of NIST employees are diff --git a/src/licensedcode/data/rules/us-govt-public-domain_12.yml b/src/licensedcode/data/rules/us-govt-public-domain_12.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_13.RULE b/src/licensedcode/data/rules/us-govt-public-domain_13.RULE index e56a0d6183c..4a25d883048 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_13.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_13.RULE @@ -1,2 +1,8 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +--- + Copyright Pursuant to title 17 Section 105 of the United States Code this software is not subject to copyright protection and is in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_13.yml b/src/licensedcode/data/rules/us-govt-public-domain_13.yml deleted file mode 100644 index b29104bfd19..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_14.RULE b/src/licensedcode/data/rules/us-govt-public-domain_14.RULE index 42d3f17fe84..40e39592979 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_14.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + * Licensing Information: * * This code constitutes a work of the United States Government and is diff --git a/src/licensedcode/data/rules/us-govt-public-domain_14.yml b/src/licensedcode/data/rules/us-govt-public-domain_14.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_15.RULE b/src/licensedcode/data/rules/us-govt-public-domain_15.RULE index a8950d753b9..ca839d28412 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_15.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_15.RULE @@ -1,2 +1,8 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + * This code constitutes a work of the United States Government and is * not subject to domestic copyright protection under 17 USC � 105. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_15.yml b/src/licensedcode/data/rules/us-govt-public-domain_15.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_16.RULE b/src/licensedcode/data/rules/us-govt-public-domain_16.RULE index 4dd12b8ae33..bb49771a1a0 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_16.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_16.RULE @@ -1 +1,7 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + The project as originally published constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC ¤ 105. Subsequent contributions by members of the public, however, retain their original copyright. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_16.yml b/src/licensedcode/data/rules/us-govt-public-domain_16.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_17.RULE b/src/licensedcode/data/rules/us-govt-public-domain_17.RULE index 327317d3f41..2b33b524e99 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_17.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_17.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + The project as originally published constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC ¤ 105. Subsequent contributions by members of the public, however, retain their original copyright. 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 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/us-govt-public-domain_17.yml b/src/licensedcode/data/rules/us-govt-public-domain_17.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_18.RULE b/src/licensedcode/data/rules/us-govt-public-domain_18.RULE index 1062fe1519a..88a8a2105b4 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_18.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +notes: https://nvd.nist.gov/vuln/data-feeds +--- + The entire NVD database can be downloaded from this web page for public use. All NIST publications are available in the public domain according to Title 17 of the United States Code, however acknowledgement of the NVD when using our diff --git a/src/licensedcode/data/rules/us-govt-public-domain_18.yml b/src/licensedcode/data/rules/us-govt-public-domain_18.yml deleted file mode 100644 index b5bbb27b10f..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 -notes: https://nvd.nist.gov/vuln/data-feeds diff --git a/src/licensedcode/data/rules/us-govt-public-domain_19.RULE b/src/licensedcode/data/rules/us-govt-public-domain_19.RULE index 21daad3df26..89218e55a23 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_19.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_19.RULE @@ -1,2 +1,8 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + public domain according to Title 17 of the United States Code \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_19.yml b/src/licensedcode/data/rules/us-govt-public-domain_19.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_2.RULE b/src/licensedcode/data/rules/us-govt-public-domain_2.RULE index addf355636c..bf4c7699284 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_2.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_2.RULE @@ -1,3 +1,9 @@ -No copyright is claimed in this work by the United States Government under -Title 17, U.S. Code. 105 +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +notes: See https://github.com/NationalSecurityAgency/ghidra/ +--- +No copyright is claimed in this work by the United States Government under +Title 17, U.S. Code. 105 \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_2.yml b/src/licensedcode/data/rules/us-govt-public-domain_2.yml deleted file mode 100644 index 8a672f9d75e..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 -notes: See https://github.com/NationalSecurityAgency/ghidra/ diff --git a/src/licensedcode/data/rules/us-govt-public-domain_20.RULE b/src/licensedcode/data/rules/us-govt-public-domain_20.RULE index 0965d7e0a79..df9885448a3 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_20.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + All NIST publications are available in the public domain according to Title 17 of the United States Code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_20.yml b/src/licensedcode/data/rules/us-govt-public-domain_20.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_21.RULE b/src/licensedcode/data/rules/us-govt-public-domain_21.RULE index 13e827f17e8..b537fcb1e8a 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_21.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_21.RULE @@ -1,3 +1,12 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +notes: https://nvd.nist.gov/vuln/data-feeds +ignorable_emails: + - nvd@nist.gov +--- + All NVD data is freely available from our XML Data Feeds. There are no fees, licensing restrictions, or even a requirement to register. All NIST publications are available in the public domain according to Title 17 of the diff --git a/src/licensedcode/data/rules/us-govt-public-domain_21.yml b/src/licensedcode/data/rules/us-govt-public-domain_21.yml deleted file mode 100644 index 4ae1d4684b9..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 -notes: https://nvd.nist.gov/vuln/data-feeds -ignorable_emails: - - nvd@nist.gov diff --git a/src/licensedcode/data/rules/us-govt-public-domain_22.RULE b/src/licensedcode/data/rules/us-govt-public-domain_22.RULE index 1c95f8b60ab..58d4434729e 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_22.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_22.RULE @@ -1 +1,7 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + This is a public domain work of the US Government. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_22.yml b/src/licensedcode/data/rules/us-govt-public-domain_22.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_23.RULE b/src/licensedcode/data/rules/us-govt-public-domain_23.RULE index 16a50eed0a0..5cfa842a718 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_23.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_23.RULE @@ -1 +1,7 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + public domain software by the EPA \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_23.yml b/src/licensedcode/data/rules/us-govt-public-domain_23.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_24.RULE b/src/licensedcode/data/rules/us-govt-public-domain_24.RULE index e9a0e229e2f..fb87b15a0dd 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_24.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +notes: Seen in BLAST +--- + PUBLIC DOMAIN NOTICE National Center for Biotechnology Information diff --git a/src/licensedcode/data/rules/us-govt-public-domain_24.yml b/src/licensedcode/data/rules/us-govt-public-domain_24.yml deleted file mode 100644 index 3cfcc92dfef..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 -notes: Seen in BLAST diff --git a/src/licensedcode/data/rules/us-govt-public-domain_25.RULE b/src/licensedcode/data/rules/us-govt-public-domain_25.RULE index 28962678f56..f34ecf9d801 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_25.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +notes: Seen in BLAST +--- + This software/database is a "United States Government Work" under the terms of the United States Copyright Act. It was written as part of the author's official duties as a United States Government employee and diff --git a/src/licensedcode/data/rules/us-govt-public-domain_25.yml b/src/licensedcode/data/rules/us-govt-public-domain_25.yml deleted file mode 100644 index 3cfcc92dfef..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 -notes: Seen in BLAST diff --git a/src/licensedcode/data/rules/us-govt-public-domain_26.RULE b/src/licensedcode/data/rules/us-govt-public-domain_26.RULE index 0639b656279..d8c1d9922b2 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_26.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +notes: typo +--- + Public Domian Courtesy of the U.S. Department of Health & Human Services. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_26.yml b/src/licensedcode/data/rules/us-govt-public-domain_26.yml deleted file mode 100644 index d44945529c5..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 -notes: typo diff --git a/src/licensedcode/data/rules/us-govt-public-domain_27.RULE b/src/licensedcode/data/rules/us-govt-public-domain_27.RULE index 897500dfcfd..c1eb7d3fbdf 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_27.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_27.RULE @@ -1 +1,7 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + No copyright is claimed in the United States under Title 17, U.S. Code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_27.yml b/src/licensedcode/data/rules/us-govt-public-domain_27.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_28.RULE b/src/licensedcode/data/rules/us-govt-public-domain_28.RULE index 066ea030b67..90579dfde00 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_28.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_28.RULE @@ -1 +1,7 @@ +--- +license_expression: us-govt-public-domain +is_license_notice: yes +relevance: 100 +--- + No copyright claimed in the United States under Title 17, U.S. Code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_28.yml b/src/licensedcode/data/rules/us-govt-public-domain_28.yml deleted file mode 100644 index f03006b7b45..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_3.RULE b/src/licensedcode/data/rules/us-govt-public-domain_3.RULE index c1c11ba88fa..cf5ee0476b4 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_3.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +--- + * are a 'United States Government Work', and * are released in the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_3.yml b/src/licensedcode/data/rules/us-govt-public-domain_3.yml deleted file mode 100644 index b29104bfd19..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_4.RULE b/src/licensedcode/data/rules/us-govt-public-domain_4.RULE index a5fa4a460cc..493d5749915 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_4.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +--- + For modifications in the public domain: diff --git a/src/licensedcode/data/rules/us-govt-public-domain_4.yml b/src/licensedcode/data/rules/us-govt-public-domain_4.yml deleted file mode 100644 index b29104bfd19..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_5.RULE b/src/licensedcode/data/rules/us-govt-public-domain_5.RULE index cf51d4475dc..249a4fe5627 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_5.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +--- + The package has been declared to be in the Public Domain. . DISCLAIMER diff --git a/src/licensedcode/data/rules/us-govt-public-domain_5.yml b/src/licensedcode/data/rules/us-govt-public-domain_5.yml deleted file mode 100644 index b29104bfd19..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_6.RULE b/src/licensedcode/data/rules/us-govt-public-domain_6.RULE index bf1b2123c7f..dbf5ff3b502 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_6.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +--- + * NOTICE OF RELEASE TO THE PUBLIC DOMAIN * * This work was created using public funds by employees of the diff --git a/src/licensedcode/data/rules/us-govt-public-domain_6.yml b/src/licensedcode/data/rules/us-govt-public-domain_6.yml deleted file mode 100644 index da930563b63..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes diff --git a/src/licensedcode/data/rules/us-govt-public-domain_7.RULE b/src/licensedcode/data/rules/us-govt-public-domain_7.RULE index 9545c564598..b2074ead1b8 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_7.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_7.RULE @@ -1 +1,7 @@ -Pursuant to federal law, {{government-produced materials appearing on this site are not copyright protected.}} +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +--- + +Pursuant to federal law, {{government-produced materials appearing on this site are not copyright protected.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_7.yml b/src/licensedcode/data/rules/us-govt-public-domain_7.yml deleted file mode 100644 index b29104bfd19..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_8.RULE b/src/licensedcode/data/rules/us-govt-public-domain_8.RULE index 9e4260a2fda..e61f252e3ab 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_8.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +--- + These classes were either developed by a US Government employee on official time, or they were translated from public domain sources by a US Government employee on official time. Thus diff --git a/src/licensedcode/data/rules/us-govt-public-domain_8.yml b/src/licensedcode/data/rules/us-govt-public-domain_8.yml deleted file mode 100644 index b29104bfd19..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_9.RULE b/src/licensedcode/data/rules/us-govt-public-domain_9.RULE index 3c4205dc7ab..0326dc60faa 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_9.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain +is_license_text: yes +relevance: 100 +--- + This software fits the description in the U.S. Copyright act of a "United States Government work".It was written as a part of the author's official duties as a government employee. This mean it cannot be copyrighted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_9.yml b/src/licensedcode/data/rules/us-govt-public-domain_9.yml deleted file mode 100644 index b29104bfd19..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_bsd-3-clause-fda_1.RULE b/src/licensedcode/data/rules/us-govt-public-domain_and_bsd-3-clause-fda_1.RULE index 64e7c899a67..d86fe0e4796 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_bsd-3-clause-fda_1.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_and_bsd-3-clause-fda_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain AND bsd-3-clause-fda +is_license_notice: yes +relevance: 100 +--- + This project constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. All Other Rights Reserved. diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_bsd-3-clause-fda_1.yml b/src/licensedcode/data/rules/us-govt-public-domain_and_bsd-3-clause-fda_1.yml deleted file mode 100644 index 36ce29d98ce..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_bsd-3-clause-fda_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain AND bsd-3-clause-fda -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_1.RULE index 8794a250bcf..be355244466 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: us-govt-public-domain AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + * Licensing Information: * * This code constitutes a work of the United States Government and is diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_1.yml b/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_1.yml deleted file mode 100644 index cf2d60272ac..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: us-govt-public-domain AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_2.RULE index b30f5256b93..b5235cab33e 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: us-govt-public-domain AND gpl-2.0-plus +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + * Licensing Information: * * This code constitutes a work of the United States Government and is diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_2.yml b/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_2.yml deleted file mode 100644 index 86d09dd4810..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_gpl-2.0-plus_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: us-govt-public-domain AND gpl-2.0-plus -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_mit.RULE b/src/licensedcode/data/rules/us-govt-public-domain_and_mit.RULE index 8935d493590..d4f1e529784 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_mit.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_and_mit.RULE @@ -1,3 +1,10 @@ +--- +license_expression: us-govt-public-domain AND mit +is_license_text: yes +ignorable_urls: + - http://opensource.org/licenses/mit-license.php +--- + This project constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. However, because the project utilizes code licensed from contributors and other third parties, it therefore is licensed under the MIT License. http://opensource.org/licenses/mit-license.php. Under that license, permission is granted free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the conditions that any appropriate copyright notices and this permission notice are included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_mit.yml b/src/licensedcode/data/rules/us-govt-public-domain_and_mit.yml deleted file mode 100644 index aa39f30f8be..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_mit.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: us-govt-public-domain AND mit -is_license_text: yes -ignorable_urls: - - http://opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_mit_1.RULE b/src/licensedcode/data/rules/us-govt-public-domain_and_mit_1.RULE index bd208b10086..15f988717f8 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_mit_1.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_and_mit_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain AND mit +is_license_notice: yes +relevance: 100 +--- + All source, data files and other contents of the PROJ package are available under the following terms. Note that the PROJ and earlier was "public domain" as is common with US government work, but apparently diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_mit_1.yml b/src/licensedcode/data/rules/us-govt-public-domain_and_mit_1.yml deleted file mode 100644 index 0e1f7c1e91c..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_mit_2.RULE b/src/licensedcode/data/rules/us-govt-public-domain_and_mit_2.RULE index e012f09528e..35062a50b80 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_mit_2.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_and_mit_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain AND mit +is_license_notice: yes +relevance: 100 +--- + All source, data files and other contents of the PROJ.4 package are available under the following terms. Note that the PROJ 4.3 and earlier was "public domain" as is common with US government work, but apparently diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_mit_2.yml b/src/licensedcode/data/rules/us-govt-public-domain_and_mit_2.yml deleted file mode 100644 index 0e1f7c1e91c..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain AND mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_other-permissive_1.RULE b/src/licensedcode/data/rules/us-govt-public-domain_and_other-permissive_1.RULE index a9fc19515cc..1e8c3e5e027 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_and_other-permissive_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: us-govt-public-domain AND other-permissive +is_license_text: yes +relevance: 100 +notes: https://github.com/tumic0/GPXSee/blob/7761935c294d7f690fa875cc7b814989e3f71bf4/src/map/mercator.cpp +--- + /* * Based on libgeotrans with the following Source Code Disclaimer: 1. The GEOTRANS source code ("the software") is provided free of charge by diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_other-permissive_1.yml b/src/licensedcode/data/rules/us-govt-public-domain_and_other-permissive_1.yml deleted file mode 100644 index eebda7576fd..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_other-permissive_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: us-govt-public-domain AND other-permissive -is_license_text: yes -relevance: 100 -notes: https://github.com/tumic0/GPXSee/blob/7761935c294d7f690fa875cc7b814989e3f71bf4/src/map/mercator.cpp diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/us-govt-public-domain_and_warranty-disclaimer_1.RULE index 4c2dadc42ee..808ff80347d 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_and_warranty-disclaimer_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: us-govt-public-domain AND warranty-disclaimer +is_license_notice: yes +relevance: 100 +notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE +ignorable_copyrights: + - copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html +ignorable_holders: + - policy at +ignorable_urls: + - https://www2.usgs.gov/visual-id/credit_usgs.html#copyright +--- + License: Unless otherwise noted, this project is in the public domain in the United States because it contains materials that originally came from the United States Geological Survey, an agency of the United States Department of Interior. For more information, see the official USGS copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html#copyright. diff --git a/src/licensedcode/data/rules/us-govt-public-domain_and_warranty-disclaimer_1.yml b/src/licensedcode/data/rules/us-govt-public-domain_and_warranty-disclaimer_1.yml deleted file mode 100644 index 3ed9a99ccac..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_and_warranty-disclaimer_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: us-govt-public-domain AND warranty-disclaimer -is_license_notice: yes -relevance: 100 -notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE -ignorable_copyrights: - - copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html -ignorable_holders: - - policy at -ignorable_urls: - - https://www2.usgs.gov/visual-id/credit_usgs.html#copyright diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_1.RULE b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_1.RULE index b2e3e9fc776..d56b028219e 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_1.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: us-govt-public-domain OR cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + Public Domain This repository constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. This repository 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. All contributions to this repository will be released under the CC0 dedication. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_1.yml b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_1.yml deleted file mode 100644 index 3f5f0642c33..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain OR cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_2.RULE b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_2.RULE index 5a2cc38651d..1e702aae3fb 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_2.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: us-govt-public-domain OR cc0-1.0 +is_license_notice: yes +relevance: 100 +--- + This repository constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. This repository 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. All contributions to this repository will be released under the CC0 dedication. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_2.yml b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_2.yml deleted file mode 100644 index 3f5f0642c33..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: us-govt-public-domain OR cc0-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_3.RULE b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_3.RULE index 1503d960fff..070b386e358 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_3.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: us-govt-public-domain OR cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + ## Public Domain This repository constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. This repository 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 repository will be released under the CC0 dedication. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_3.yml b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_3.yml deleted file mode 100644 index 2bfe2f4a386..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: us-govt-public-domain OR cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_4.RULE b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_4.RULE index 7bb853626da..bd7ac2607f9 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_4.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_4.RULE @@ -1 +1,9 @@ +--- +license_expression: us-govt-public-domain OR cc0-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://creativecommons.org/publicdomain/zero/1.0 +--- + This repository constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. This repository 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 repository will be released under the CC0 dedication. \ No newline at end of file diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_4.yml b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_4.yml deleted file mode 100644 index 2bfe2f4a386..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: us-govt-public-domain OR cc0-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://creativecommons.org/publicdomain/zero/1.0 diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_1.RULE index 73a22f7b38b..b7662e38f60 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_1.RULE @@ -1,3 +1,17 @@ +--- +license_expression: (us-govt-public-domain OR cc0-1.0) AND warranty-disclaimer AND gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE +ignorable_copyrights: + - copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html +ignorable_holders: + - policy at +ignorable_urls: + - http://www.gnu.org/licenses + - https://www2.usgs.gov/visual-id/credit_usgs.html#copyright +--- + License: Unless otherwise noted, this project is in the public domain in the United States because it contains materials that originally came from the United States Geological Survey, an agency of the United States Department of Interior. For more information, see the official USGS copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html#copyright. diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_1.yml b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_1.yml deleted file mode 100644 index b8d580aec66..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_1.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: (us-govt-public-domain OR cc0-1.0) AND warranty-disclaimer AND gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE -ignorable_copyrights: - - copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html -ignorable_holders: - - policy at -ignorable_urls: - - http://www.gnu.org/licenses - - https://www2.usgs.gov/visual-id/credit_usgs.html#copyright diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_2.RULE index 441e118da21..8ccca96e6fe 100644 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_2.RULE @@ -1,3 +1,17 @@ +--- +license_expression: (us-govt-public-domain OR cc0-1.0) AND warranty-disclaimer AND gpl-3.0-plus +is_license_notice: yes +relevance: 100 +notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE +ignorable_copyrights: + - copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html +ignorable_holders: + - policy at +ignorable_urls: + - https://www.gnu.org/licenses + - https://www2.usgs.gov/visual-id/credit_usgs.html#copyright +--- + License: Unless otherwise noted, this project is in the public domain in the United States because it contains materials that originally came from the United States Geological Survey, an agency of the United States Department of Interior. For more information, see the official USGS copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html#copyright. diff --git a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_2.yml b/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_2.yml deleted file mode 100644 index 6e263444169..00000000000 --- a/src/licensedcode/data/rules/us-govt-public-domain_or_cc0-1.0_and_warranty-disclaimer_and_gpl-3.0-plus_2.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: (us-govt-public-domain OR cc0-1.0) AND warranty-disclaimer AND gpl-3.0-plus -is_license_notice: yes -relevance: 100 -notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE -ignorable_copyrights: - - copyright policy at https://www2.usgs.gov/visual-id/credit_usgs.html -ignorable_holders: - - policy at -ignorable_urls: - - https://www.gnu.org/licenses - - https://www2.usgs.gov/visual-id/credit_usgs.html#copyright diff --git a/src/licensedcode/data/rules/us-govt-unlimited-rights_1.RULE b/src/licensedcode/data/rules/us-govt-unlimited-rights_1.RULE index 36280af2550..e14033cbe90 100644 --- a/src/licensedcode/data/rules/us-govt-unlimited-rights_1.RULE +++ b/src/licensedcode/data/rules/us-govt-unlimited-rights_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: us-govt-unlimited-rights +is_license_text: yes +--- + This material is provided with unlimited rights to the U.S. Government by Applied Information Sciences under Contract No. diff --git a/src/licensedcode/data/rules/us-govt-unlimited-rights_1.yml b/src/licensedcode/data/rules/us-govt-unlimited-rights_1.yml deleted file mode 100644 index 94bd28facc4..00000000000 --- a/src/licensedcode/data/rules/us-govt-unlimited-rights_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: us-govt-unlimited-rights -is_license_text: yes diff --git a/src/licensedcode/data/rules/verbatim-manual_1.RULE b/src/licensedcode/data/rules/verbatim-manual_1.RULE index 5c5d80a2ffe..de4c7cc14c8 100644 --- a/src/licensedcode/data/rules/verbatim-manual_1.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: verbatim-manual +is_license_text: yes +minimum_coverage: 90 +--- + %%%LICENSE_START(VERBATIM) Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are @@ -18,4 +24,4 @@ professionally. Formatted or processed versions of this manual, if unaccompanied by the source, must acknowledge the copyright and authors of this work. -%%%LICENSE_END +%%%LICENSE_END \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_1.yml b/src/licensedcode/data/rules/verbatim-manual_1.yml deleted file mode 100644 index 1719d07f615..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: verbatim-manual -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/verbatim-manual_10.RULE b/src/licensedcode/data/rules/verbatim-manual_10.RULE index cf98ca135cf..155542fc79a 100644 --- a/src/licensedcode/data/rules/verbatim-manual_10.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_10.RULE @@ -1 +1,9 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Linux-man-pages-copyleft +--- + LICENSE {{Linux-man-pages-copyleft}} https://spdx.org/licenses/Linux-man-pages-copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_10.yml b/src/licensedcode/data/rules/verbatim-manual_10.yml deleted file mode 100644 index 294f836f7bb..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Linux-man-pages-copyleft diff --git a/src/licensedcode/data/rules/verbatim-manual_11.RULE b/src/licensedcode/data/rules/verbatim-manual_11.RULE index 860b869d3de..4d68560212c 100644 --- a/src/licensedcode/data/rules/verbatim-manual_11.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_11.RULE @@ -1 +1,9 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Verbatim-man-pages +--- + LICENSE {{Verbatim-man-pages}} https://spdx.org/licenses/Verbatim-man-pages \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_11.yml b/src/licensedcode/data/rules/verbatim-manual_11.yml deleted file mode 100644 index d4bb343a627..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Verbatim-man-pages diff --git a/src/licensedcode/data/rules/verbatim-manual_12.RULE b/src/licensedcode/data/rules/verbatim-manual_12.RULE index 6fb390b77ed..4d88f6cd5e5 100644 --- a/src/licensedcode/data/rules/verbatim-manual_12.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_12.RULE @@ -1 +1,9 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Linux-man-pages-copyleft +--- + {{Linux-man-pages-copyleft}} https://spdx.org/licenses/Linux-man-pages-copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_12.yml b/src/licensedcode/data/rules/verbatim-manual_12.yml deleted file mode 100644 index 294f836f7bb..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Linux-man-pages-copyleft diff --git a/src/licensedcode/data/rules/verbatim-manual_2.RULE b/src/licensedcode/data/rules/verbatim-manual_2.RULE index 6d34a483f88..2151a0ae015 100644 --- a/src/licensedcode/data/rules/verbatim-manual_2.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_2.RULE @@ -1 +1,10 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Linux man-pages Copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_2.yml b/src/licensedcode/data/rules/verbatim-manual_2.yml deleted file mode 100644 index b87105cf9ef..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/verbatim-manual_3.RULE b/src/licensedcode/data/rules/verbatim-manual_3.RULE index c747823f6d1..bb462c96eca 100644 --- a/src/licensedcode/data/rules/verbatim-manual_3.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_3.RULE @@ -1 +1,10 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Linux man-pages Copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_3.yml b/src/licensedcode/data/rules/verbatim-manual_3.yml deleted file mode 100644 index b87105cf9ef..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/verbatim-manual_4.RULE b/src/licensedcode/data/rules/verbatim-manual_4.RULE index fcc6cc5cde4..c7a4f701117 100644 --- a/src/licensedcode/data/rules/verbatim-manual_4.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_4.RULE @@ -1 +1,10 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Linux-man-pages-copyleft Linux man-pages Copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_4.yml b/src/licensedcode/data/rules/verbatim-manual_4.yml deleted file mode 100644 index b87105cf9ef..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/verbatim-manual_5.RULE b/src/licensedcode/data/rules/verbatim-manual_5.RULE index e2561eec43d..061e7b4c2e7 100644 --- a/src/licensedcode/data/rules/verbatim-manual_5.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_5.RULE @@ -1 +1,10 @@ +--- +license_expression: verbatim-manual +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Linux-man-pages-copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_5.yml b/src/licensedcode/data/rules/verbatim-manual_5.yml deleted file mode 100644 index 0b9ef560201..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: verbatim-manual -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/verbatim-manual_6.RULE b/src/licensedcode/data/rules/verbatim-manual_6.RULE index d5b0c22c156..c557b044f6c 100644 --- a/src/licensedcode/data/rules/verbatim-manual_6.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_6.RULE @@ -1 +1,10 @@ +--- +license_expression: verbatim-manual +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Linux-man-pages-copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_6.yml b/src/licensedcode/data/rules/verbatim-manual_6.yml deleted file mode 100644 index 0b9ef560201..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: verbatim-manual -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/verbatim-manual_7.RULE b/src/licensedcode/data/rules/verbatim-manual_7.RULE index 15fc5ccdb5e..1e1644d8751 100644 --- a/src/licensedcode/data/rules/verbatim-manual_7.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_7.RULE @@ -1 +1,9 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Linux-man-pages-copyleft +--- + https://licenses.nuget.org/Linux-man-pages-copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_7.yml b/src/licensedcode/data/rules/verbatim-manual_7.yml deleted file mode 100644 index aacca025cbc..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Linux-man-pages-copyleft diff --git a/src/licensedcode/data/rules/verbatim-manual_8.RULE b/src/licensedcode/data/rules/verbatim-manual_8.RULE index 3cd1f6e2ead..b9f67419e81 100644 --- a/src/licensedcode/data/rules/verbatim-manual_8.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_8.RULE @@ -1 +1,7 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Linux-man-pages-copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_8.yml b/src/licensedcode/data/rules/verbatim-manual_8.yml deleted file mode 100644 index 758c3858399..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/verbatim-manual_9.RULE b/src/licensedcode/data/rules/verbatim-manual_9.RULE index 8a360ed50d9..24afbfcbe49 100644 --- a/src/licensedcode/data/rules/verbatim-manual_9.RULE +++ b/src/licensedcode/data/rules/verbatim-manual_9.RULE @@ -1 +1,9 @@ +--- +license_expression: verbatim-manual +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Verbatim-man-pages +--- + {{Verbatim-man-pages}} https://spdx.org/licenses/Verbatim-man-pages \ No newline at end of file diff --git a/src/licensedcode/data/rules/verbatim-manual_9.yml b/src/licensedcode/data/rules/verbatim-manual_9.yml deleted file mode 100644 index d4bb343a627..00000000000 --- a/src/licensedcode/data/rules/verbatim-manual_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: verbatim-manual -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Verbatim-man-pages diff --git a/src/licensedcode/data/rules/verisign.RULE b/src/licensedcode/data/rules/verisign.RULE index a512fcc7b1c..0325e41a125 100644 --- a/src/licensedcode/data/rules/verisign.RULE +++ b/src/licensedcode/data/rules/verisign.RULE @@ -1 +1,9 @@ +--- +license_expression: verisign +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.verisign.com/repository/CPS +--- + http://www.verisign.com/repository/CPS \ No newline at end of file diff --git a/src/licensedcode/data/rules/verisign.yml b/src/licensedcode/data/rules/verisign.yml deleted file mode 100644 index bd75f412760..00000000000 --- a/src/licensedcode/data/rules/verisign.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: verisign -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.verisign.com/repository/CPS diff --git a/src/licensedcode/data/rules/vhfpl-1.1_1.RULE b/src/licensedcode/data/rules/vhfpl-1.1_1.RULE index a694e0d8cfb..fb60624d8ab 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: vhfpl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + Cenon is free software and is {{licensed under the vhf Public License}} (vhfPL). See the file LICENSE for details. You are allowed to use and distribute Cenon as a whole. @@ -16,4 +24,4 @@ All trademarks are the property of the respective owners. For uses of this software which do not fall under the definitions laid down in the vhf Public License, a commercial license must -be contracted by the developer/distributor with the copyright holder. +be contracted by the developer/distributor with the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vhfpl-1.1_1.yml b/src/licensedcode/data/rules/vhfpl-1.1_1.yml deleted file mode 100644 index c55439c6bbe..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/vhfpl-1.1_10.RULE b/src/licensedcode/data/rules/vhfpl-1.1_10.RULE index f4a1470cac5..48a59fec9bb 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_10.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_10.RULE @@ -1,3 +1,11 @@ +--- +license_expression: vhfpl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * This library is free software; you can redistribute it and/or * modify it under the terms of the vhf Public License as * published by the vhf interservice GmbH. Among other things, diff --git a/src/licensedcode/data/rules/vhfpl-1.1_10.yml b/src/licensedcode/data/rules/vhfpl-1.1_10.yml deleted file mode 100644 index c55439c6bbe..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/vhfpl-1.1_2.RULE b/src/licensedcode/data/rules/vhfpl-1.1_2.RULE index 53d38be05b1..5371c192fec 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_2.RULE @@ -1 +1,7 @@ +--- +license_expression: vhfpl-1.1 +is_license_notice: yes +relevance: 100 +--- + is free software and is licensed under the vhf Public License (vhfPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/vhfpl-1.1_2.yml b/src/licensedcode/data/rules/vhfpl-1.1_2.yml deleted file mode 100644 index 814d2342124..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vhfpl-1.1_3.RULE b/src/licensedcode/data/rules/vhfpl-1.1_3.RULE index c993884230d..171e7f8887a 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_3.RULE @@ -1 +1,7 @@ +--- +license_expression: vhfpl-1.1 +is_license_notice: yes +relevance: 100 +--- + licensed under the vhf Public License (vhfPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/vhfpl-1.1_3.yml b/src/licensedcode/data/rules/vhfpl-1.1_3.yml deleted file mode 100644 index 814d2342124..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vhfpl-1.1_4.RULE b/src/licensedcode/data/rules/vhfpl-1.1_4.RULE index f60538b4496..58963ae9c11 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_4.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: vhfpl-1.1 +is_license_reference: yes +relevance: 100 +--- + vhf Public License (vhfPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/vhfpl-1.1_4.yml b/src/licensedcode/data/rules/vhfpl-1.1_4.yml deleted file mode 100644 index e5a8d9a8fc4..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vhfpl-1.1_5.RULE b/src/licensedcode/data/rules/vhfpl-1.1_5.RULE index 3ad155672cb..686df746fd5 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_5.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_5.RULE @@ -1 +1,7 @@ +--- +license_expression: vhfpl-1.1 +is_license_reference: yes +relevance: 100 +--- + vhfPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/vhfpl-1.1_5.yml b/src/licensedcode/data/rules/vhfpl-1.1_5.yml deleted file mode 100644 index e5a8d9a8fc4..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vhfpl-1.1_6.RULE b/src/licensedcode/data/rules/vhfpl-1.1_6.RULE index e29fdfc9de6..b655cf27ccc 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_6.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_6.RULE @@ -1 +1,7 @@ +--- +license_expression: vhfpl-1.1 +is_license_reference: yes +relevance: 100 +--- + vhf Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/vhfpl-1.1_6.yml b/src/licensedcode/data/rules/vhfpl-1.1_6.yml deleted file mode 100644 index e5a8d9a8fc4..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vhfpl-1.1_7.RULE b/src/licensedcode/data/rules/vhfpl-1.1_7.RULE index 98cb5e89d54..46b196f7359 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_7.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_7.RULE @@ -1 +1,7 @@ +--- +license_expression: vhfpl-1.1 +is_license_tag: yes +relevance: 100 +--- + License: vhf Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vhfpl-1.1_7.yml b/src/licensedcode/data/rules/vhfpl-1.1_7.yml deleted file mode 100644 index 69f0b905202..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vhfpl-1.1_8.RULE b/src/licensedcode/data/rules/vhfpl-1.1_8.RULE index d0b8e83a4c5..519f0bbb080 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_8.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_8.RULE @@ -1 +1,7 @@ +--- +license_expression: vhfpl-1.1 +is_license_reference: yes +relevance: 100 +--- + vhf Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vhfpl-1.1_8.yml b/src/licensedcode/data/rules/vhfpl-1.1_8.yml deleted file mode 100644 index e5a8d9a8fc4..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vhfpl-1.1_9.RULE b/src/licensedcode/data/rules/vhfpl-1.1_9.RULE index f403b7232bb..b2365952d02 100644 --- a/src/licensedcode/data/rules/vhfpl-1.1_9.RULE +++ b/src/licensedcode/data/rules/vhfpl-1.1_9.RULE @@ -1,3 +1,11 @@ +--- +license_expression: vhfpl-1.1 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + * This program is free software; you can redistribute it and/or * modify it under the terms of the vhf Public License as * published by vhf interservice GmbH. Among other things, the diff --git a/src/licensedcode/data/rules/vhfpl-1.1_9.yml b/src/licensedcode/data/rules/vhfpl-1.1_9.yml deleted file mode 100644 index c55439c6bbe..00000000000 --- a/src/licensedcode/data/rules/vhfpl-1.1_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vhfpl-1.1 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/vim.SPDX.RULE b/src/licensedcode/data/rules/vim.SPDX.RULE index a5af63403e7..83801bf1e33 100644 --- a/src/licensedcode/data/rules/vim.SPDX.RULE +++ b/src/licensedcode/data/rules/vim.SPDX.RULE @@ -1,3 +1,15 @@ +--- +license_expression: vim +is_license_text: yes +minimum_coverage: 50 +notes: license text as published by SPDX +ignorable_urls: + - http://www.vim.org/ +ignorable_emails: + - Bram@vim.org + - maintainer@vim.org +--- + VIM LICENSE I) There are no restrictions on distributing unmodified copies of Vim except that they must include this license text. You can also distribute unmodified parts of Vim, likewise unrestricted except that they must include this license text. You are also allowed to include executables that you made from the unmodified Vim sources, plus your own usage examples and Vim scripts. diff --git a/src/licensedcode/data/rules/vim.SPDX.yml b/src/licensedcode/data/rules/vim.SPDX.yml deleted file mode 100644 index b73082f04d9..00000000000 --- a/src/licensedcode/data/rules/vim.SPDX.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: vim -is_license_text: yes -minimum_coverage: 50 -notes: license text as published by SPDX -ignorable_urls: - - http://www.vim.org/ -ignorable_emails: - - Bram@vim.org - - maintainer@vim.org diff --git a/src/licensedcode/data/rules/vim_1.RULE b/src/licensedcode/data/rules/vim_1.RULE index 778c0ca0fc2..59c1c7f3439 100644 --- a/src/licensedcode/data/rules/vim_1.RULE +++ b/src/licensedcode/data/rules/vim_1.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License released under the same |license| as Vim itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_1.yml b/src/licensedcode/data/rules/vim_1.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_10.RULE b/src/licensedcode/data/rules/vim_10.RULE index fdb79cb6687..20c84e44baa 100644 --- a/src/licensedcode/data/rules/vim_10.RULE +++ b/src/licensedcode/data/rules/vim_10.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + Same license as vim. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_10.yml b/src/licensedcode/data/rules/vim_10.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_11.RULE b/src/licensedcode/data/rules/vim_11.RULE index e14f77fe01e..03109b74915 100644 --- a/src/licensedcode/data/rules/vim_11.RULE +++ b/src/licensedcode/data/rules/vim_11.RULE @@ -1 +1,7 @@ -Distributed under the same license as VIM \ No newline at end of file +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + +Distributed under the same license as VIM \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_11.yml b/src/licensedcode/data/rules/vim_11.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_12.RULE b/src/licensedcode/data/rules/vim_12.RULE index aa69dffe624..05eecf963bf 100644 --- a/src/licensedcode/data/rules/vim_12.RULE +++ b/src/licensedcode/data/rules/vim_12.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + Distributed under the same license as VIM ``:help license`` \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_12.yml b/src/licensedcode/data/rules/vim_12.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_13.RULE b/src/licensedcode/data/rules/vim_13.RULE index 60a8c4fb311..e4ba4215c8d 100644 --- a/src/licensedcode/data/rules/vim_13.RULE +++ b/src/licensedcode/data/rules/vim_13.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License: Under the same license as Vim itself \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_13.yml b/src/licensedcode/data/rules/vim_13.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_14.RULE b/src/licensedcode/data/rules/vim_14.RULE index dd0bf65d1d3..e34f3f5bb0a 100644 --- a/src/licensedcode/data/rules/vim_14.RULE +++ b/src/licensedcode/data/rules/vim_14.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License: This plugin (and all assoc. files) are available under the same license as Vim itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_14.yml b/src/licensedcode/data/rules/vim_14.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_15.RULE b/src/licensedcode/data/rules/vim_15.RULE index a62ea50a877..acb06b650ee 100644 --- a/src/licensedcode/data/rules/vim_15.RULE +++ b/src/licensedcode/data/rules/vim_15.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + published under the same license as vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_15.yml b/src/licensedcode/data/rules/vim_15.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_16.RULE b/src/licensedcode/data/rules/vim_16.RULE index aac7f26090e..dd9ffefc45f 100644 --- a/src/licensedcode/data/rules/vim_16.RULE +++ b/src/licensedcode/data/rules/vim_16.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + Distributed under the same license as Vim itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_16.yml b/src/licensedcode/data/rules/vim_16.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_17.RULE b/src/licensedcode/data/rules/vim_17.RULE index 1a025dba68e..d982e4466f5 100644 --- a/src/licensedcode/data/rules/vim_17.RULE +++ b/src/licensedcode/data/rules/vim_17.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + ## License Same as VIM license. For more info see `:help license`. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_17.yml b/src/licensedcode/data/rules/vim_17.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_18.RULE b/src/licensedcode/data/rules/vim_18.RULE index 6b84b05fc45..a3bf17f2490 100644 --- a/src/licensedcode/data/rules/vim_18.RULE +++ b/src/licensedcode/data/rules/vim_18.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License: Same as Vim |license| \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_18.yml b/src/licensedcode/data/rules/vim_18.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_19.RULE b/src/licensedcode/data/rules/vim_19.RULE index b63a8e1e0b1..1a19dae2db1 100644 --- a/src/licensedcode/data/rules/vim_19.RULE +++ b/src/licensedcode/data/rules/vim_19.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + Same as Vim license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_19.yml b/src/licensedcode/data/rules/vim_19.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_2.RULE b/src/licensedcode/data/rules/vim_2.RULE index 8043919dd44..693b92da4e1 100644 --- a/src/licensedcode/data/rules/vim_2.RULE +++ b/src/licensedcode/data/rules/vim_2.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License: The same license as Vim itself \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_2.yml b/src/licensedcode/data/rules/vim_2.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_20.RULE b/src/licensedcode/data/rules/vim_20.RULE index 6c2e3b891b9..5dc3a3d3f34 100644 --- a/src/licensedcode/data/rules/vim_20.RULE +++ b/src/licensedcode/data/rules/vim_20.RULE @@ -1 +1,9 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.vim.org/about.php +--- + Same as Vim License: http://www.vim.org/about.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_20.yml b/src/licensedcode/data/rules/vim_20.yml deleted file mode 100644 index 6a874aa9efa..00000000000 --- a/src/licensedcode/data/rules/vim_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.vim.org/about.php diff --git a/src/licensedcode/data/rules/vim_21.RULE b/src/licensedcode/data/rules/vim_21.RULE index 206957257dc..840a9b6d758 100644 --- a/src/licensedcode/data/rules/vim_21.RULE +++ b/src/licensedcode/data/rules/vim_21.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_tag: yes +relevance: 100 +--- + Licence: Same as Vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_21.yml b/src/licensedcode/data/rules/vim_21.yml deleted file mode 100644 index ea0820cb901..00000000000 --- a/src/licensedcode/data/rules/vim_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_22.RULE b/src/licensedcode/data/rules/vim_22.RULE index ed0a1cf3a87..0b89779f740 100644 --- a/src/licensedcode/data/rules/vim_22.RULE +++ b/src/licensedcode/data/rules/vim_22.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_tag: yes +relevance: 100 +--- + License: Same as Vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_22.yml b/src/licensedcode/data/rules/vim_22.yml deleted file mode 100644 index ea0820cb901..00000000000 --- a/src/licensedcode/data/rules/vim_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_23.RULE b/src/licensedcode/data/rules/vim_23.RULE index 708c0551388..d00a1177312 100644 --- a/src/licensedcode/data/rules/vim_23.RULE +++ b/src/licensedcode/data/rules/vim_23.RULE @@ -1,3 +1,9 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + COPYING Vim is Charityware. You can use and copy it as much as you like, but you are diff --git a/src/licensedcode/data/rules/vim_23.yml b/src/licensedcode/data/rules/vim_23.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_24.RULE b/src/licensedcode/data/rules/vim_24.RULE index 9110cd856ee..0a3092a94df 100644 --- a/src/licensedcode/data/rules/vim_24.RULE +++ b/src/licensedcode/data/rules/vim_24.RULE @@ -1,3 +1,13 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 99 +ignorable_urls: + - http://iccf-holland.org/ + - http://www.iccf.nl/ + - http://www.vim.org/iccf/ +--- + Vim is Charityware. You can use and copy it as much as you like, but you are encouraged to make a donation for needy children in Uganda. Please see the kcc section of the vim docs or visit the ICCF web site, available at these URLs: diff --git a/src/licensedcode/data/rules/vim_24.yml b/src/licensedcode/data/rules/vim_24.yml deleted file mode 100644 index 5cfbc34acce..00000000000 --- a/src/licensedcode/data/rules/vim_24.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 99 -ignorable_urls: - - http://iccf-holland.org/ - - http://www.iccf.nl/ - - http://www.vim.org/iccf/ diff --git a/src/licensedcode/data/rules/vim_25.RULE b/src/licensedcode/data/rules/vim_25.RULE index 121c59cd99a..331931b6992 100644 --- a/src/licensedcode/data/rules/vim_25.RULE +++ b/src/licensedcode/data/rules/vim_25.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + under the Vim license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_25.yml b/src/licensedcode/data/rules/vim_25.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_26.RULE b/src/licensedcode/data/rules/vim_26.RULE index bde85672540..a93978eddeb 100644 --- a/src/licensedcode/data/rules/vim_26.RULE +++ b/src/licensedcode/data/rules/vim_26.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_reference: yes +relevance: 100 +--- + the VIM license \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_26.yml b/src/licensedcode/data/rules/vim_26.yml deleted file mode 100644 index e77c12c12a9..00000000000 --- a/src/licensedcode/data/rules/vim_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_27.RULE b/src/licensedcode/data/rules/vim_27.RULE index 7cdb32aae11..9548455157f 100644 --- a/src/licensedcode/data/rules/vim_27.RULE +++ b/src/licensedcode/data/rules/vim_27.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + under the terms of the VIM license \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_27.yml b/src/licensedcode/data/rules/vim_27.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_28.RULE b/src/licensedcode/data/rules/vim_28.RULE index 17da37580a9..29718aa1d03 100644 --- a/src/licensedcode/data/rules/vim_28.RULE +++ b/src/licensedcode/data/rules/vim_28.RULE @@ -1,3 +1,9 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the terms of the VIM license as available from the vim 6.1 ":help license" command or (at your option) the diff --git a/src/licensedcode/data/rules/vim_28.yml b/src/licensedcode/data/rules/vim_28.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_29.RULE b/src/licensedcode/data/rules/vim_29.RULE index fe098163268..a15320f5ee9 100644 --- a/src/licensedcode/data/rules/vim_29.RULE +++ b/src/licensedcode/data/rules/vim_29.RULE @@ -1 +1,10 @@ +--- +license_expression: vim +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Vim License \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_29.yml b/src/licensedcode/data/rules/vim_29.yml deleted file mode 100644 index 9c94a7d3f48..00000000000 --- a/src/licensedcode/data/rules/vim_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vim -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vim_3.RULE b/src/licensedcode/data/rules/vim_3.RULE index 1027344e9e2..c0f7c2ae718 100644 --- a/src/licensedcode/data/rules/vim_3.RULE +++ b/src/licensedcode/data/rules/vim_3.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License: The same license as Vim itself, see `:h license` \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_3.yml b/src/licensedcode/data/rules/vim_3.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_30.RULE b/src/licensedcode/data/rules/vim_30.RULE index d4ee3ad0759..7d6a9a0929d 100644 --- a/src/licensedcode/data/rules/vim_30.RULE +++ b/src/licensedcode/data/rules/vim_30.RULE @@ -1 +1,10 @@ +--- +license_expression: vim +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Vim License \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_30.yml b/src/licensedcode/data/rules/vim_30.yml deleted file mode 100644 index 9c94a7d3f48..00000000000 --- a/src/licensedcode/data/rules/vim_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vim -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vim_31.RULE b/src/licensedcode/data/rules/vim_31.RULE index ee452781c0f..6289376ae85 100644 --- a/src/licensedcode/data/rules/vim_31.RULE +++ b/src/licensedcode/data/rules/vim_31.RULE @@ -1 +1,10 @@ +--- +license_expression: vim +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Vim Vim License \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_31.yml b/src/licensedcode/data/rules/vim_31.yml deleted file mode 100644 index 9c94a7d3f48..00000000000 --- a/src/licensedcode/data/rules/vim_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vim -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vim_32.RULE b/src/licensedcode/data/rules/vim_32.RULE index b8482dd753b..0761cf69165 100644 --- a/src/licensedcode/data/rules/vim_32.RULE +++ b/src/licensedcode/data/rules/vim_32.RULE @@ -1 +1,10 @@ +--- +license_expression: vim +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Vim License Vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_32.yml b/src/licensedcode/data/rules/vim_32.yml deleted file mode 100644 index 9c94a7d3f48..00000000000 --- a/src/licensedcode/data/rules/vim_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vim -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vim_33.RULE b/src/licensedcode/data/rules/vim_33.RULE index c89b388cbd7..6a675ad0c6e 100644 --- a/src/licensedcode/data/rules/vim_33.RULE +++ b/src/licensedcode/data/rules/vim_33.RULE @@ -1 +1,10 @@ -{{license: Vim}} +--- +license_expression: vim +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + +{{license: Vim}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_33.yml b/src/licensedcode/data/rules/vim_33.yml deleted file mode 100644 index ed54e8f6bc4..00000000000 --- a/src/licensedcode/data/rules/vim_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vim -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vim_34.RULE b/src/licensedcode/data/rules/vim_34.RULE index 0c5b870d4de..be9dd7e4900 100644 --- a/src/licensedcode/data/rules/vim_34.RULE +++ b/src/licensedcode/data/rules/vim_34.RULE @@ -1 +1,10 @@ +--- +license_expression: vim +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Vim License \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_34.yml b/src/licensedcode/data/rules/vim_34.yml deleted file mode 100644 index ed54e8f6bc4..00000000000 --- a/src/licensedcode/data/rules/vim_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vim -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vim_35.RULE b/src/licensedcode/data/rules/vim_35.RULE index f4132dbe701..6b511122852 100644 --- a/src/licensedcode/data/rules/vim_35.RULE +++ b/src/licensedcode/data/rules/vim_35.RULE @@ -1 +1,10 @@ +--- +license_expression: vim +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_35.yml b/src/licensedcode/data/rules/vim_35.yml deleted file mode 100644 index ed54e8f6bc4..00000000000 --- a/src/licensedcode/data/rules/vim_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vim -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vim_36.RULE b/src/licensedcode/data/rules/vim_36.RULE index c35a61bd41f..acc3f3e3fd3 100644 --- a/src/licensedcode/data/rules/vim_36.RULE +++ b/src/licensedcode/data/rules/vim_36.RULE @@ -1 +1,9 @@ +--- +license_expression: vim +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Vim +--- + https://licenses.nuget.org/Vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_36.yml b/src/licensedcode/data/rules/vim_36.yml deleted file mode 100644 index 2ba248c1964..00000000000 --- a/src/licensedcode/data/rules/vim_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vim -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Vim diff --git a/src/licensedcode/data/rules/vim_37.RULE b/src/licensedcode/data/rules/vim_37.RULE index 8a84ea5649d..2b4f7b5744f 100644 --- a/src/licensedcode/data/rules/vim_37.RULE +++ b/src/licensedcode/data/rules/vim_37.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_37.yml b/src/licensedcode/data/rules/vim_37.yml deleted file mode 100644 index e77c12c12a9..00000000000 --- a/src/licensedcode/data/rules/vim_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_38.RULE b/src/licensedcode/data/rules/vim_38.RULE index 152f28208eb..0fd2433c49f 100644 --- a/src/licensedcode/data/rules/vim_38.RULE +++ b/src/licensedcode/data/rules/vim_38.RULE @@ -1 +1,9 @@ +--- +license_expression: vim +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Vim +--- + {{Vim}} https://spdx.org/licenses/Vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_38.yml b/src/licensedcode/data/rules/vim_38.yml deleted file mode 100644 index f853e4ab947..00000000000 --- a/src/licensedcode/data/rules/vim_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vim -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Vim diff --git a/src/licensedcode/data/rules/vim_39.RULE b/src/licensedcode/data/rules/vim_39.RULE index 1546cc0d955..48f6a72f77b 100644 --- a/src/licensedcode/data/rules/vim_39.RULE +++ b/src/licensedcode/data/rules/vim_39.RULE @@ -1 +1,9 @@ +--- +license_expression: vim +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Vim +--- + LICENSE {{Vim}} https://spdx.org/licenses/Vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_39.yml b/src/licensedcode/data/rules/vim_39.yml deleted file mode 100644 index f853e4ab947..00000000000 --- a/src/licensedcode/data/rules/vim_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vim -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Vim diff --git a/src/licensedcode/data/rules/vim_4.RULE b/src/licensedcode/data/rules/vim_4.RULE index ad16fd839b0..b052fc6be7e 100644 --- a/src/licensedcode/data/rules/vim_4.RULE +++ b/src/licensedcode/data/rules/vim_4.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + licensed under same license as vim itself \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_4.yml b/src/licensedcode/data/rules/vim_4.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_5.RULE b/src/licensedcode/data/rules/vim_5.RULE index 4f4ff6d8fd8..85b43ae40bc 100644 --- a/src/licensedcode/data/rules/vim_5.RULE +++ b/src/licensedcode/data/rules/vim_5.RULE @@ -1 +1,7 @@ -All configuration is distributed under the [same license as Vim][vim-license] itself. \ No newline at end of file +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + +All configuration is distributed under the [same license as Vim][vim-license] itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_5.yml b/src/licensedcode/data/rules/vim_5.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_6.RULE b/src/licensedcode/data/rules/vim_6.RULE index 455528ecc1f..0c018af4758 100644 --- a/src/licensedcode/data/rules/vim_6.RULE +++ b/src/licensedcode/data/rules/vim_6.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License: Under the same license as Vim itself (see :help license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_6.yml b/src/licensedcode/data/rules/vim_6.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_7.RULE b/src/licensedcode/data/rules/vim_7.RULE index 866a95aec33..8f575393b44 100644 --- a/src/licensedcode/data/rules/vim_7.RULE +++ b/src/licensedcode/data/rules/vim_7.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License: Same license as vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_7.yml b/src/licensedcode/data/rules/vim_7.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_8.RULE b/src/licensedcode/data/rules/vim_8.RULE index 748e6690c87..abba134c1ad 100644 --- a/src/licensedcode/data/rules/vim_8.RULE +++ b/src/licensedcode/data/rules/vim_8.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + License: Same licence as vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_8.yml b/src/licensedcode/data/rules/vim_8.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_9.RULE b/src/licensedcode/data/rules/vim_9.RULE index 8962d3ee12f..4807204bc64 100644 --- a/src/licensedcode/data/rules/vim_9.RULE +++ b/src/licensedcode/data/rules/vim_9.RULE @@ -1 +1,7 @@ +--- +license_expression: vim +is_license_notice: yes +relevance: 100 +--- + Same licence as vim. \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_9.yml b/src/licensedcode/data/rules/vim_9.yml deleted file mode 100644 index 3f1cb542d58..00000000000 --- a/src/licensedcode/data/rules/vim_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vim -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vim_url_1.RULE b/src/licensedcode/data/rules/vim_url_1.RULE index 56b4aa1e179..6e2896ec434 100644 --- a/src/licensedcode/data/rules/vim_url_1.RULE +++ b/src/licensedcode/data/rules/vim_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: vim +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/vim +--- + https://spdx.org/licenses/vim \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_url_1.yml b/src/licensedcode/data/rules/vim_url_1.yml deleted file mode 100644 index fd506263463..00000000000 --- a/src/licensedcode/data/rules/vim_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vim -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/vim diff --git a/src/licensedcode/data/rules/vim_url_2.RULE b/src/licensedcode/data/rules/vim_url_2.RULE index 1487ef5cf33..c747644b7c3 100644 --- a/src/licensedcode/data/rules/vim_url_2.RULE +++ b/src/licensedcode/data/rules/vim_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: vim +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/vim.html +--- + https://spdx.org/licenses/vim.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/vim_url_2.yml b/src/licensedcode/data/rules/vim_url_2.yml deleted file mode 100644 index 0611465cb68..00000000000 --- a/src/licensedcode/data/rules/vim_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vim -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/vim.html diff --git a/src/licensedcode/data/rules/visual-idiot_1.RULE b/src/licensedcode/data/rules/visual-idiot_1.RULE index 9daf9ef7c98..16bbff20bd9 100644 --- a/src/licensedcode/data/rules/visual-idiot_1.RULE +++ b/src/licensedcode/data/rules/visual-idiot_1.RULE @@ -1 +1,9 @@ +--- +license_expression: visual-idiot +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://licence.visualidiot.com/ +--- + License: http://licence.visualidiot.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/visual-idiot_1.yml b/src/licensedcode/data/rules/visual-idiot_1.yml deleted file mode 100644 index b7db80713eb..00000000000 --- a/src/licensedcode/data/rules/visual-idiot_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: visual-idiot -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://licence.visualidiot.com/ diff --git a/src/licensedcode/data/rules/visual-idiot_2.RULE b/src/licensedcode/data/rules/visual-idiot_2.RULE index a720404de37..059b99e8f05 100644 --- a/src/licensedcode/data/rules/visual-idiot_2.RULE +++ b/src/licensedcode/data/rules/visual-idiot_2.RULE @@ -1 +1,10 @@ +--- +license_expression: visual-idiot +is_license_notice: yes +relevance: 100 +notes: from https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/ +ignorable_urls: + - http://licence.visualidiot.com/ +--- + Licensed under the ☺ license (http://licence.visualidiot.com/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/visual-idiot_2.yml b/src/licensedcode/data/rules/visual-idiot_2.yml deleted file mode 100644 index 01082562cd1..00000000000 --- a/src/licensedcode/data/rules/visual-idiot_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: visual-idiot -is_license_notice: yes -relevance: 100 -notes: from https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/ -ignorable_urls: - - http://licence.visualidiot.com/ diff --git a/src/licensedcode/data/rules/visual-idiot_3.RULE b/src/licensedcode/data/rules/visual-idiot_3.RULE index ad3b250701c..c9368c92fea 100644 --- a/src/licensedcode/data/rules/visual-idiot_3.RULE +++ b/src/licensedcode/data/rules/visual-idiot_3.RULE @@ -1 +1,10 @@ +--- +license_expression: visual-idiot +is_license_reference: yes +relevance: 100 +notes: from https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/ +ignorable_urls: + - http://licence.visualidiot.com/ +--- + http://licence.visualidiot.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/visual-idiot_3.yml b/src/licensedcode/data/rules/visual-idiot_3.yml deleted file mode 100644 index 77c455e31db..00000000000 --- a/src/licensedcode/data/rules/visual-idiot_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: visual-idiot -is_license_reference: yes -relevance: 100 -notes: from https://web.archive.org/web/20120502165504/http://licence.visualidiot.com/ -ignorable_urls: - - http://licence.visualidiot.com/ diff --git a/src/licensedcode/data/rules/visual-idiot_4.RULE b/src/licensedcode/data/rules/visual-idiot_4.RULE index b5a4a3fb876..337f1f6b8cb 100644 --- a/src/licensedcode/data/rules/visual-idiot_4.RULE +++ b/src/licensedcode/data/rules/visual-idiot_4.RULE @@ -1 +1,7 @@ +--- +license_expression: visual-idiot +is_license_notice: yes +relevance: 100 +--- + It's licensed under the :) licence, so go nuts \ No newline at end of file diff --git a/src/licensedcode/data/rules/visual-idiot_4.yml b/src/licensedcode/data/rules/visual-idiot_4.yml deleted file mode 100644 index 4c1638276ed..00000000000 --- a/src/licensedcode/data/rules/visual-idiot_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: visual-idiot -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/visual-idiot_5.RULE b/src/licensedcode/data/rules/visual-idiot_5.RULE index 111d58df2b1..e60a4825e55 100644 --- a/src/licensedcode/data/rules/visual-idiot_5.RULE +++ b/src/licensedcode/data/rules/visual-idiot_5.RULE @@ -1,2 +1,10 @@ +--- +license_expression: visual-idiot +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://licence.visualidiot.com/ +--- + This software is licensed to you using the VisualIdiot ☺ Licence found here \ No newline at end of file diff --git a/src/licensedcode/data/rules/visual-idiot_5.yml b/src/licensedcode/data/rules/visual-idiot_5.yml deleted file mode 100644 index aecb9b59d0f..00000000000 --- a/src/licensedcode/data/rules/visual-idiot_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: visual-idiot -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://licence.visualidiot.com/ diff --git a/src/licensedcode/data/rules/visual-idiot_6.RULE b/src/licensedcode/data/rules/visual-idiot_6.RULE index c17548e70a0..9ed2401c586 100644 --- a/src/licensedcode/data/rules/visual-idiot_6.RULE +++ b/src/licensedcode/data/rules/visual-idiot_6.RULE @@ -1 +1,9 @@ +--- +license_expression: visual-idiot +is_license_tag: yes +relevance: 100 +ignorable_urls: + - https://licence.visualidiot.com/ +--- + License: Aribitrary -- https://licence.visualidiot.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/visual-idiot_6.yml b/src/licensedcode/data/rules/visual-idiot_6.yml deleted file mode 100644 index ef1d9172e6d..00000000000 --- a/src/licensedcode/data/rules/visual-idiot_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: visual-idiot -is_license_tag: yes -relevance: 100 -ignorable_urls: - - https://licence.visualidiot.com/ diff --git a/src/licensedcode/data/rules/visual-idiot_7.RULE b/src/licensedcode/data/rules/visual-idiot_7.RULE index d761d553428..8111d8582e6 100644 --- a/src/licensedcode/data/rules/visual-idiot_7.RULE +++ b/src/licensedcode/data/rules/visual-idiot_7.RULE @@ -1 +1,7 @@ +--- +license_expression: visual-idiot +is_license_reference: yes +relevance: 100 +--- + licence.visualidiot.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/visual-idiot_7.yml b/src/licensedcode/data/rules/visual-idiot_7.yml deleted file mode 100644 index cf7ad464ddd..00000000000 --- a/src/licensedcode/data/rules/visual-idiot_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: visual-idiot -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/volatility-vsl-v1.0_1.RULE b/src/licensedcode/data/rules/volatility-vsl-v1.0_1.RULE index 817e53520d6..9424b697add 100644 --- a/src/licensedcode/data/rules/volatility-vsl-v1.0_1.RULE +++ b/src/licensedcode/data/rules/volatility-vsl-v1.0_1.RULE @@ -1,2 +1,9 @@ +--- +license_expression: volatility-vsl-v1.0 +is_license_notice: yes +ignorable_urls: + - https://www.volatilityfoundation.org/license/vsl-v1.0 +--- + licensed under the Volatility Software License 1.0, which is available at https://www.volatilityfoundation.org/license/vsl-v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/volatility-vsl-v1.0_1.yml b/src/licensedcode/data/rules/volatility-vsl-v1.0_1.yml deleted file mode 100644 index 462e20bd566..00000000000 --- a/src/licensedcode/data/rules/volatility-vsl-v1.0_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: volatility-vsl-v1.0 -is_license_notice: yes -ignorable_urls: - - https://www.volatilityfoundation.org/license/vsl-v1.0 diff --git a/src/licensedcode/data/rules/volatility-vsl-v1.0_2.RULE b/src/licensedcode/data/rules/volatility-vsl-v1.0_2.RULE index 07292ff14bb..12703e27e23 100644 --- a/src/licensedcode/data/rules/volatility-vsl-v1.0_2.RULE +++ b/src/licensedcode/data/rules/volatility-vsl-v1.0_2.RULE @@ -1 +1,7 @@ +--- +license_expression: volatility-vsl-v1.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Volatility Software License 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/volatility-vsl-v1.0_2.yml b/src/licensedcode/data/rules/volatility-vsl-v1.0_2.yml deleted file mode 100644 index 6b4c2d37168..00000000000 --- a/src/licensedcode/data/rules/volatility-vsl-v1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: volatility-vsl-v1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/volatility-vsl-v1.0_3.RULE b/src/licensedcode/data/rules/volatility-vsl-v1.0_3.RULE index 8c1f085218f..451bf2b0680 100644 --- a/src/licensedcode/data/rules/volatility-vsl-v1.0_3.RULE +++ b/src/licensedcode/data/rules/volatility-vsl-v1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: volatility-vsl-v1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.volatilityfoundation.org/license/vsl-v1.0 +--- + https://www.volatilityfoundation.org/license/vsl-v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/volatility-vsl-v1.0_3.yml b/src/licensedcode/data/rules/volatility-vsl-v1.0_3.yml deleted file mode 100644 index 93a126e1ec8..00000000000 --- a/src/licensedcode/data/rules/volatility-vsl-v1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: volatility-vsl-v1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.volatilityfoundation.org/license/vsl-v1.0 diff --git a/src/licensedcode/data/rules/vostrom_1.RULE b/src/licensedcode/data/rules/vostrom_1.RULE index a8d071828c6..74a43ce7afc 100644 --- a/src/licensedcode/data/rules/vostrom_1.RULE +++ b/src/licensedcode/data/rules/vostrom_1.RULE @@ -1 +1,10 @@ +--- +license_expression: vostrom +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + VOSTROM Public License for Open Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_1.yml b/src/licensedcode/data/rules/vostrom_1.yml deleted file mode 100644 index ddc73df6eec..00000000000 --- a/src/licensedcode/data/rules/vostrom_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vostrom_10.RULE b/src/licensedcode/data/rules/vostrom_10.RULE index f251945048f..232f97b0c4b 100644 --- a/src/licensedcode/data/rules/vostrom_10.RULE +++ b/src/licensedcode/data/rules/vostrom_10.RULE @@ -1 +1,9 @@ +--- +license_expression: vostrom +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/VOSTROM +--- + LICENSE {{VOSTROM}} https://spdx.org/licenses/VOSTROM \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_10.yml b/src/licensedcode/data/rules/vostrom_10.yml deleted file mode 100644 index b546d9c3251..00000000000 --- a/src/licensedcode/data/rules/vostrom_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/VOSTROM diff --git a/src/licensedcode/data/rules/vostrom_11.RULE b/src/licensedcode/data/rules/vostrom_11.RULE index cb01f30cc41..6c539f471b2 100644 --- a/src/licensedcode/data/rules/vostrom_11.RULE +++ b/src/licensedcode/data/rules/vostrom_11.RULE @@ -1 +1,9 @@ +--- +license_expression: vostrom +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/VOSTROM +--- + {{VOSTROM}} https://spdx.org/licenses/VOSTROM \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_11.yml b/src/licensedcode/data/rules/vostrom_11.yml deleted file mode 100644 index b546d9c3251..00000000000 --- a/src/licensedcode/data/rules/vostrom_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/VOSTROM diff --git a/src/licensedcode/data/rules/vostrom_2.RULE b/src/licensedcode/data/rules/vostrom_2.RULE index 7e7bfaea0e4..74d193606aa 100644 --- a/src/licensedcode/data/rules/vostrom_2.RULE +++ b/src/licensedcode/data/rules/vostrom_2.RULE @@ -1 +1,10 @@ +--- +license_expression: vostrom +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: VOSTROM Public License for Open Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_2.yml b/src/licensedcode/data/rules/vostrom_2.yml deleted file mode 100644 index ddc73df6eec..00000000000 --- a/src/licensedcode/data/rules/vostrom_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vostrom_3.RULE b/src/licensedcode/data/rules/vostrom_3.RULE index 5f2bb4a0bce..9107f3b3c14 100644 --- a/src/licensedcode/data/rules/vostrom_3.RULE +++ b/src/licensedcode/data/rules/vostrom_3.RULE @@ -1 +1,10 @@ +--- +license_expression: vostrom +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + VOSTROM VOSTROM Public License for Open Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_3.yml b/src/licensedcode/data/rules/vostrom_3.yml deleted file mode 100644 index ddc73df6eec..00000000000 --- a/src/licensedcode/data/rules/vostrom_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vostrom_4.RULE b/src/licensedcode/data/rules/vostrom_4.RULE index e978cc36588..3586828070e 100644 --- a/src/licensedcode/data/rules/vostrom_4.RULE +++ b/src/licensedcode/data/rules/vostrom_4.RULE @@ -1 +1,10 @@ +--- +license_expression: vostrom +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + VOSTROM Public License for Open Source VOSTROM \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_4.yml b/src/licensedcode/data/rules/vostrom_4.yml deleted file mode 100644 index ddc73df6eec..00000000000 --- a/src/licensedcode/data/rules/vostrom_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vostrom_5.RULE b/src/licensedcode/data/rules/vostrom_5.RULE index e7da47d68be..2d6f5a688d2 100644 --- a/src/licensedcode/data/rules/vostrom_5.RULE +++ b/src/licensedcode/data/rules/vostrom_5.RULE @@ -1 +1,10 @@ +--- +license_expression: vostrom +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: VOSTROM \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_5.yml b/src/licensedcode/data/rules/vostrom_5.yml deleted file mode 100644 index 99b7e791f7c..00000000000 --- a/src/licensedcode/data/rules/vostrom_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vostrom -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vostrom_6.RULE b/src/licensedcode/data/rules/vostrom_6.RULE index c7f204ba3d9..6dad7eecd0c 100644 --- a/src/licensedcode/data/rules/vostrom_6.RULE +++ b/src/licensedcode/data/rules/vostrom_6.RULE @@ -1 +1,10 @@ +--- +license_expression: vostrom +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: VOSTROM Public License for Open Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_6.yml b/src/licensedcode/data/rules/vostrom_6.yml deleted file mode 100644 index 99b7e791f7c..00000000000 --- a/src/licensedcode/data/rules/vostrom_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vostrom -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vostrom_7.RULE b/src/licensedcode/data/rules/vostrom_7.RULE index 1bc1908e9c0..5cd7ec6cc7f 100644 --- a/src/licensedcode/data/rules/vostrom_7.RULE +++ b/src/licensedcode/data/rules/vostrom_7.RULE @@ -1 +1,10 @@ +--- +license_expression: vostrom +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: VOSTROM \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_7.yml b/src/licensedcode/data/rules/vostrom_7.yml deleted file mode 100644 index 99b7e791f7c..00000000000 --- a/src/licensedcode/data/rules/vostrom_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vostrom -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vostrom_8.RULE b/src/licensedcode/data/rules/vostrom_8.RULE index 29cc7541373..9dc84603890 100644 --- a/src/licensedcode/data/rules/vostrom_8.RULE +++ b/src/licensedcode/data/rules/vostrom_8.RULE @@ -1 +1,9 @@ +--- +license_expression: vostrom +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/VOSTROM +--- + https://licenses.nuget.org/VOSTROM \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_8.yml b/src/licensedcode/data/rules/vostrom_8.yml deleted file mode 100644 index e9488c321e5..00000000000 --- a/src/licensedcode/data/rules/vostrom_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/VOSTROM diff --git a/src/licensedcode/data/rules/vostrom_9.RULE b/src/licensedcode/data/rules/vostrom_9.RULE index 63e0d7cab54..e81c8071d2f 100644 --- a/src/licensedcode/data/rules/vostrom_9.RULE +++ b/src/licensedcode/data/rules/vostrom_9.RULE @@ -1 +1,7 @@ +--- +license_expression: vostrom +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/VOSTROM \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_9.yml b/src/licensedcode/data/rules/vostrom_9.yml deleted file mode 100644 index e1436a906bd..00000000000 --- a/src/licensedcode/data/rules/vostrom_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vostrom_url_1.RULE b/src/licensedcode/data/rules/vostrom_url_1.RULE index 4855f64ee7e..837988a89d6 100644 --- a/src/licensedcode/data/rules/vostrom_url_1.RULE +++ b/src/licensedcode/data/rules/vostrom_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: vostrom +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/vostrom +--- + https://spdx.org/licenses/vostrom \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_url_1.yml b/src/licensedcode/data/rules/vostrom_url_1.yml deleted file mode 100644 index 53468d57472..00000000000 --- a/src/licensedcode/data/rules/vostrom_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/vostrom diff --git a/src/licensedcode/data/rules/vostrom_url_2.RULE b/src/licensedcode/data/rules/vostrom_url_2.RULE index f3e9e243b9e..6163a323dff 100644 --- a/src/licensedcode/data/rules/vostrom_url_2.RULE +++ b/src/licensedcode/data/rules/vostrom_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: vostrom +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/vostrom.html +--- + https://spdx.org/licenses/vostrom.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/vostrom_url_2.yml b/src/licensedcode/data/rules/vostrom_url_2.yml deleted file mode 100644 index 951032b6219..00000000000 --- a/src/licensedcode/data/rules/vostrom_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vostrom -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/vostrom.html diff --git a/src/licensedcode/data/rules/vovida-1.0_1.RULE b/src/licensedcode/data/rules/vovida-1.0_1.RULE index 647a9aef75a..333efd64129 100644 --- a/src/licensedcode/data/rules/vovida-1.0_1.RULE +++ b/src/licensedcode/data/rules/vovida-1.0_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: vsl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 Vovida Networks, Inc. +ignorable_holders: + - Vovida Networks, Inc. +ignorable_urls: + - http://www.vovida.org/ +ignorable_emails: + - vocal@vovida.org +--- + * The Vovida Software License, Version 1.0 * * Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. diff --git a/src/licensedcode/data/rules/vovida-1.0_1.yml b/src/licensedcode/data/rules/vovida-1.0_1.yml deleted file mode 100644 index 4e18911838e..00000000000 --- a/src/licensedcode/data/rules/vovida-1.0_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: vsl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 Vovida Networks, Inc. -ignorable_holders: - - Vovida Networks, Inc. -ignorable_urls: - - http://www.vovida.org/ -ignorable_emails: - - vocal@vovida.org diff --git a/src/licensedcode/data/rules/vovida-1.0_2.RULE b/src/licensedcode/data/rules/vovida-1.0_2.RULE index bbf76c7c824..e2643cdea8a 100644 --- a/src/licensedcode/data/rules/vovida-1.0_2.RULE +++ b/src/licensedcode/data/rules/vovida-1.0_2.RULE @@ -1,3 +1,14 @@ +--- +license_expression: vsl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2000 Vovida Networks, Inc. +ignorable_holders: + - Vovida Networks, Inc. +ignorable_emails: + - vocal@vovida.org +--- + * The Vovida Software License, Version 1.0 * * Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. @@ -38,4 +49,4 @@ * 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/vovida-1.0_2.yml b/src/licensedcode/data/rules/vovida-1.0_2.yml deleted file mode 100644 index f2284bb7901..00000000000 --- a/src/licensedcode/data/rules/vovida-1.0_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: vsl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2000 Vovida Networks, Inc. -ignorable_holders: - - Vovida Networks, Inc. -ignorable_emails: - - vocal@vovida.org diff --git a/src/licensedcode/data/rules/vs10x-code-map.RULE b/src/licensedcode/data/rules/vs10x-code-map.RULE index 1052296209f..8844d039bab 100644 --- a/src/licensedcode/data/rules/vs10x-code-map.RULE +++ b/src/licensedcode/data/rules/vs10x-code-map.RULE @@ -1 +1,9 @@ +--- +license_expression: vs10x-code-map +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://visualstudiogallery.msdn.microsoft.com/site/1c54d1bd-d898-4705-903f-fa4a319b50f2/eula?licenseType=None +--- + http://visualstudiogallery.msdn.microsoft.com/site/1c54d1bd-d898-4705-903f-fa4a319b50f2/eula?licenseType=None \ No newline at end of file diff --git a/src/licensedcode/data/rules/vs10x-code-map.yml b/src/licensedcode/data/rules/vs10x-code-map.yml deleted file mode 100644 index 91292378dfe..00000000000 --- a/src/licensedcode/data/rules/vs10x-code-map.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vs10x-code-map -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://visualstudiogallery.msdn.microsoft.com/site/1c54d1bd-d898-4705-903f-fa4a319b50f2/eula?licenseType=None diff --git a/src/licensedcode/data/rules/vsl-1.0.RULE b/src/licensedcode/data/rules/vsl-1.0.RULE index ad087da13cb..f3354f71aa1 100644 --- a/src/licensedcode/data/rules/vsl-1.0.RULE +++ b/src/licensedcode/data/rules/vsl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/vovidapl.php +--- + http://opensource.org/licenses/vovidapl.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0.SPDX.RULE b/src/licensedcode/data/rules/vsl-1.0.SPDX.RULE index 32d7bdba4e8..644c8156ef9 100644 --- a/src/licensedcode/data/rules/vsl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/vsl-1.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: vsl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2000 Vovida Networks, Inc. +ignorable_holders: + - Vovida Networks, Inc. +ignorable_emails: + - vocal@vovida.org +--- + Vovida Software License v. 1.0 This license applies to all software incorporated in the "Vovida diff --git a/src/licensedcode/data/rules/vsl-1.0.SPDX.yml b/src/licensedcode/data/rules/vsl-1.0.SPDX.yml deleted file mode 100644 index 4e796f4f8bb..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: vsl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2000 Vovida Networks, Inc. -ignorable_holders: - - Vovida Networks, Inc. -ignorable_emails: - - vocal@vovida.org diff --git a/src/licensedcode/data/rules/vsl-1.0.yml b/src/licensedcode/data/rules/vsl-1.0.yml deleted file mode 100644 index 1248e9fe245..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/vovidapl.php diff --git a/src/licensedcode/data/rules/vsl-1.0_1.RULE b/src/licensedcode/data/rules/vsl-1.0_1.RULE index 512a4fc35b4..d5122f48547 100644 --- a/src/licensedcode/data/rules/vsl-1.0_1.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.vovida.org/About/license.html +--- + http://www.vovida.org/About/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_1.yml b/src/licensedcode/data/rules/vsl-1.0_1.yml deleted file mode 100644 index 8d6d08baf13..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.vovida.org/About/license.html diff --git a/src/licensedcode/data/rules/vsl-1.0_10.RULE b/src/licensedcode/data/rules/vsl-1.0_10.RULE index db985f14f13..f52e3360edd 100644 --- a/src/licensedcode/data/rules/vsl-1.0_10.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: vsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: VSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_10.yml b/src/licensedcode/data/rules/vsl-1.0_10.yml deleted file mode 100644 index 5747310e21f..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vsl-1.0_11.RULE b/src/licensedcode/data/rules/vsl-1.0_11.RULE index ed4df780aca..f6773357289 100644 --- a/src/licensedcode/data/rules/vsl-1.0_11.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/VSL-1.0 +--- + https://licenses.nuget.org/VSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_11.yml b/src/licensedcode/data/rules/vsl-1.0_11.yml deleted file mode 100644 index 45ead835718..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/VSL-1.0 diff --git a/src/licensedcode/data/rules/vsl-1.0_12.RULE b/src/licensedcode/data/rules/vsl-1.0_12.RULE index f1852d71c90..5e1f879111e 100644 --- a/src/licensedcode/data/rules/vsl-1.0_12.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/VSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_12.yml b/src/licensedcode/data/rules/vsl-1.0_12.yml deleted file mode 100644 index 48d964be85e..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vsl-1.0_13.RULE b/src/licensedcode/data/rules/vsl-1.0_13.RULE index b1b55a0d477..005590316ef 100644 --- a/src/licensedcode/data/rules/vsl-1.0_13.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/VSL-1.0 +--- + {{VSL-1.0}} https://spdx.org/licenses/VSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_13.yml b/src/licensedcode/data/rules/vsl-1.0_13.yml deleted file mode 100644 index 292055131ce..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/VSL-1.0 diff --git a/src/licensedcode/data/rules/vsl-1.0_14.RULE b/src/licensedcode/data/rules/vsl-1.0_14.RULE index 64c0d22ed0a..afbc267d156 100644 --- a/src/licensedcode/data/rules/vsl-1.0_14.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/VSL-1.0 +--- + LICENSE {{VSL-1.0}} https://spdx.org/licenses/VSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_14.yml b/src/licensedcode/data/rules/vsl-1.0_14.yml deleted file mode 100644 index 292055131ce..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/VSL-1.0 diff --git a/src/licensedcode/data/rules/vsl-1.0_2.RULE b/src/licensedcode/data/rules/vsl-1.0_2.RULE index 023a2e1ec89..49ac6b26a32 100644 --- a/src/licensedcode/data/rules/vsl-1.0_2.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_2.RULE @@ -1 +1,10 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Vovida Software License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_2.yml b/src/licensedcode/data/rules/vsl-1.0_2.yml deleted file mode 100644 index 719ff89dfdf..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vsl-1.0_3.RULE b/src/licensedcode/data/rules/vsl-1.0_3.RULE index 6f27033107c..8e734738499 100644 --- a/src/licensedcode/data/rules/vsl-1.0_3.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/vovidapl.php +--- + http://www.opensource.org/licenses/vovidapl.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_3.yml b/src/licensedcode/data/rules/vsl-1.0_3.yml deleted file mode 100644 index ce2567cf706..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/vovidapl.php diff --git a/src/licensedcode/data/rules/vsl-1.0_4.RULE b/src/licensedcode/data/rules/vsl-1.0_4.RULE index eb7bb313254..3ef0a839acd 100644 --- a/src/licensedcode/data/rules/vsl-1.0_4.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +--- + Vovida Software License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_4.yml b/src/licensedcode/data/rules/vsl-1.0_4.yml deleted file mode 100644 index 48d964be85e..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vsl-1.0_5.RULE b/src/licensedcode/data/rules/vsl-1.0_5.RULE index 389d3f60cf8..b3404ff2305 100644 --- a/src/licensedcode/data/rules/vsl-1.0_5.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_5.RULE @@ -1 +1,7 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +--- + The Vovida license \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_5.yml b/src/licensedcode/data/rules/vsl-1.0_5.yml deleted file mode 100644 index 48d964be85e..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/vsl-1.0_6.RULE b/src/licensedcode/data/rules/vsl-1.0_6.RULE index aeb08fd33f6..82a560fff7d 100644 --- a/src/licensedcode/data/rules/vsl-1.0_6.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + VSL-1.0 Vovida Software License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_6.yml b/src/licensedcode/data/rules/vsl-1.0_6.yml deleted file mode 100644 index 719ff89dfdf..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vsl-1.0_7.RULE b/src/licensedcode/data/rules/vsl-1.0_7.RULE index dbf086623f5..68a4012d259 100644 --- a/src/licensedcode/data/rules/vsl-1.0_7.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Vovida Software License v1.0 VSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_7.yml b/src/licensedcode/data/rules/vsl-1.0_7.yml deleted file mode 100644 index 719ff89dfdf..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vsl-1.0_8.RULE b/src/licensedcode/data/rules/vsl-1.0_8.RULE index 29f03ab40b8..5b4ef431121 100644 --- a/src/licensedcode/data/rules/vsl-1.0_8.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: vsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: VSL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_8.yml b/src/licensedcode/data/rules/vsl-1.0_8.yml deleted file mode 100644 index 5747310e21f..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vsl-1.0_9.RULE b/src/licensedcode/data/rules/vsl-1.0_9.RULE index b1b461cbb6c..70c976fca2d 100644 --- a/src/licensedcode/data/rules/vsl-1.0_9.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: vsl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Vovida Software License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_9.yml b/src/licensedcode/data/rules/vsl-1.0_9.yml deleted file mode 100644 index 5747310e21f..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: vsl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/vsl-1.0_url_1.RULE b/src/licensedcode/data/rules/vsl-1.0_url_1.RULE index 50193fbda31..1e8eb79b4c0 100644 --- a/src/licensedcode/data/rules/vsl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/vsl-1.0 +--- + https://spdx.org/licenses/vsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_url_1.yml b/src/licensedcode/data/rules/vsl-1.0_url_1.yml deleted file mode 100644 index 2b69f660b44..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/vsl-1.0 diff --git a/src/licensedcode/data/rules/vsl-1.0_url_2.RULE b/src/licensedcode/data/rules/vsl-1.0_url_2.RULE index 4963cd9d37c..2fb42e2d75d 100644 --- a/src/licensedcode/data/rules/vsl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/vsl-1.0.html +--- + https://spdx.org/licenses/vsl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_url_2.yml b/src/licensedcode/data/rules/vsl-1.0_url_2.yml deleted file mode 100644 index fc5769511c3..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/vsl-1.0.html diff --git a/src/licensedcode/data/rules/vsl-1.0_url_glc_240.RULE b/src/licensedcode/data/rules/vsl-1.0_url_glc_240.RULE index 85332d2e2ad..3a177e91729 100644 --- a/src/licensedcode/data/rules/vsl-1.0_url_glc_240.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_url_glc_240.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/vsl-1.0 +--- + http://www.opensource.org/licenses/vsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_url_glc_240.yml b/src/licensedcode/data/rules/vsl-1.0_url_glc_240.yml deleted file mode 100644 index f859cb67595..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_url_glc_240.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/vsl-1.0 diff --git a/src/licensedcode/data/rules/vsl-1.0_url_glc_241.RULE b/src/licensedcode/data/rules/vsl-1.0_url_glc_241.RULE index caaa13935fa..0d99d816197 100644 --- a/src/licensedcode/data/rules/vsl-1.0_url_glc_241.RULE +++ b/src/licensedcode/data/rules/vsl-1.0_url_glc_241.RULE @@ -1 +1,9 @@ +--- +license_expression: vsl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/vsl-1.0 +--- + https://www.opensource.org/licenses/vsl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vsl-1.0_url_glc_241.yml b/src/licensedcode/data/rules/vsl-1.0_url_glc_241.yml deleted file mode 100644 index b6c35b126ba..00000000000 --- a/src/licensedcode/data/rules/vsl-1.0_url_glc_241.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: vsl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/vsl-1.0 diff --git a/src/licensedcode/data/rules/vuforia-2013-07-29.RULE b/src/licensedcode/data/rules/vuforia-2013-07-29.RULE index 06bf522ddd3..9c5b4487973 100644 --- a/src/licensedcode/data/rules/vuforia-2013-07-29.RULE +++ b/src/licensedcode/data/rules/vuforia-2013-07-29.RULE @@ -1,3 +1,13 @@ +--- +license_expression: vuforia-2013-07-29 +is_license_text: yes +ignorable_urls: + - http://www.bis.doc.gov/ + - http://www.opensource.org/licenses/alphabetical + - http://www.treas.gov/offices/enforcement/ofac + - https://developer.vuforia.com/resources/dev-guide/branding-guidelines +--- + THIS LICENSE AGREEMENT FOR VUFORIA SOFTWARE DEVELOPMENT KIT (THIS “AGREEMENT” or THIS “Agreement”) IS A LEGALLY BINDING AGREEMENT BETWEEN QUALCOMM AUSTRIA RESEARCH CENTER GMBH ("QUALCOMM Austria") AND THE LEGAL ENTITY YOU REPRESENT (“YOU” OR “You”). If you USE OR are seeking to use the Software in connection with any work or undertaking you are doing for a business, company or corporate entity (“Company”), whether as an employee or contractor, the terms “You” and “You” include, and the terms and conditions hereof are binding on, both you as an individual as well as such Company. In Addition, you represent and warrant that you have the authority to bind such Company, and that such Company has authorized you to accept the terms of this Agreement on its behalf. @@ -129,5 +139,4 @@ BY CLICKING ON THE “I ACCEPT” BUTTON BELOW YOU REPRESENT, WARRANT AND CERTIF -Rev. 2013-7-29 - +Rev. 2013-7-29 \ No newline at end of file diff --git a/src/licensedcode/data/rules/vuforia-2013-07-29.yml b/src/licensedcode/data/rules/vuforia-2013-07-29.yml deleted file mode 100644 index 149320116f2..00000000000 --- a/src/licensedcode/data/rules/vuforia-2013-07-29.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: vuforia-2013-07-29 -is_license_text: yes -ignorable_urls: - - http://www.bis.doc.gov/ - - http://www.opensource.org/licenses/alphabetical - - http://www.treas.gov/offices/enforcement/ofac - - https://developer.vuforia.com/resources/dev-guide/branding-guidelines diff --git a/src/licensedcode/data/rules/w3c-docs-19990405_1.RULE b/src/licensedcode/data/rules/w3c-docs-19990405_1.RULE index 852dc95966e..78e09d18d58 100644 --- a/src/licensedcode/data/rules/w3c-docs-19990405_1.RULE +++ b/src/licensedcode/data/rules/w3c-docs-19990405_1.RULE @@ -1,3 +1,19 @@ +--- +license_expression: w3c-docs-19990405 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + http://www.w3.org/Consortium/Legal/ Public documents on the W3C site are provided by the copyright holders under diff --git a/src/licensedcode/data/rules/w3c-docs-19990405_1.yml b/src/licensedcode/data/rules/w3c-docs-19990405_1.yml deleted file mode 100644 index 48cdf97fb5f..00000000000 --- a/src/licensedcode/data/rules/w3c-docs-19990405_1.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: w3c-docs-19990405 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-docs-19990405_2.RULE b/src/licensedcode/data/rules/w3c-docs-19990405_2.RULE index 55c4f2a5898..66ea9faea8f 100644 --- a/src/licensedcode/data/rules/w3c-docs-19990405_2.RULE +++ b/src/licensedcode/data/rules/w3c-docs-19990405_2.RULE @@ -1,3 +1,19 @@ +--- +license_expression: w3c-docs-19990405 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + Public documents on the W3C site are provided by the copyright holders under the following license. The software or Document Type Definitions (DTDs) associated with W3C specifications are governed by the Software Notice. By diff --git a/src/licensedcode/data/rules/w3c-docs-19990405_2.yml b/src/licensedcode/data/rules/w3c-docs-19990405_2.yml deleted file mode 100644 index 48cdf97fb5f..00000000000 --- a/src/licensedcode/data/rules/w3c-docs-19990405_2.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: w3c-docs-19990405 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-docs-19990405_3.RULE b/src/licensedcode/data/rules/w3c-docs-19990405_3.RULE index adee3ce8d66..a29603e0e72 100644 --- a/src/licensedcode/data/rules/w3c-docs-19990405_3.RULE +++ b/src/licensedcode/data/rules/w3c-docs-19990405_3.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c-docs-19990405 +is_license_reference: yes +relevance: 100 +--- + W3C (R) DOCUMENT NOTICE AND LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-docs-19990405_3.yml b/src/licensedcode/data/rules/w3c-docs-19990405_3.yml deleted file mode 100644 index fa2f0ed735a..00000000000 --- a/src/licensedcode/data/rules/w3c-docs-19990405_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c-docs-19990405 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c-documentation.RULE b/src/licensedcode/data/rules/w3c-documentation.RULE index 9fe270b6256..df038dd0337 100644 --- a/src/licensedcode/data/rules/w3c-documentation.RULE +++ b/src/licensedcode/data/rules/w3c-documentation.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c-documentation +is_license_reference: yes +relevance: 100 +--- + http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-documentation.yml b/src/licensedcode/data/rules/w3c-documentation.yml deleted file mode 100644 index 07325a5d33f..00000000000 --- a/src/licensedcode/data/rules/w3c-documentation.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c-documentation -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c-documentation2.RULE b/src/licensedcode/data/rules/w3c-documentation2.RULE index ad79338dae1..f2cd1c3204e 100644 --- a/src/licensedcode/data/rules/w3c-documentation2.RULE +++ b/src/licensedcode/data/rules/w3c-documentation2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: w3c-documentation +is_license_reference: yes +relevance: 100 +--- + documentation under the W3C Document License \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-documentation2.yml b/src/licensedcode/data/rules/w3c-documentation2.yml deleted file mode 100644 index 07325a5d33f..00000000000 --- a/src/licensedcode/data/rules/w3c-documentation2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c-documentation -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_1.RULE b/src/licensedcode/data/rules/w3c-software-19980720_1.RULE index 3ed3eef8936..723ed26c2eb 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_1.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_1.RULE @@ -1,3 +1,26 @@ +--- +license_expression: w3c-software-19980720 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 1994-2001 World Wide Web Consortium, http://www.w3.org/' World Wide Web + Consortium + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) + - World Wide Web Consortium, World Wide Web Consortium +ignorable_urls: + - http://www.inria.fr/ + - http://www.keio.ac.jp/ + - http://www.lcs.mit.edu/ + - http://www.w3.org/ + - http://www.w3.org/Consortium/Legal/ + - http://www.w3.org/Consortium/Legal/copyright-software-19980720 +ignorable_emails: + - site-policy@w3.org +--- + This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720 @@ -66,4 +89,4 @@ questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be -directed to site-policy@w3.org. +directed to site-policy@w3.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_1.yml b/src/licensedcode/data/rules/w3c-software-19980720_1.yml deleted file mode 100644 index be8be266891..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_1.yml +++ /dev/null @@ -1,20 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 1994-2001 World Wide Web Consortium, http://www.w3.org/' World Wide Web - Consortium - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) - - World Wide Web Consortium, World Wide Web Consortium -ignorable_urls: - - http://www.inria.fr/ - - http://www.keio.ac.jp/ - - http://www.lcs.mit.edu/ - - http://www.w3.org/ - - http://www.w3.org/Consortium/Legal/ - - http://www.w3.org/Consortium/Legal/copyright-software-19980720 -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-software-19980720_10.RULE b/src/licensedcode/data/rules/w3c-software-19980720_10.RULE index a865b015ff6..4344a40b744 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_10.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_10.RULE @@ -1,3 +1,14 @@ +--- +license_expression: w3c-software-19980720 +is_license_notice: yes +relevance: 100 +minimum_coverage: 90 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ + - http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD + - http://www.w3.org/Consortium/Legal/copyright-software-19980720 +--- + http://www.w3.org/Consortium/Legal/ This document is governed by the W3C Software License [1] as described in the FAQ [2]. diff --git a/src/licensedcode/data/rules/w3c-software-19980720_10.yml b/src/licensedcode/data/rules/w3c-software-19980720_10.yml deleted file mode 100644 index 32b2a22873d..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_notice: yes -relevance: 100 -minimum_coverage: 90 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ - - http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD - - http://www.w3.org/Consortium/Legal/copyright-software-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_11.RULE b/src/licensedcode/data/rules/w3c-software-19980720_11.RULE index 0657b73d4b7..a68bcc28c73 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_11.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_11.RULE @@ -1,3 +1,19 @@ +--- +license_expression: w3c-software-19980720 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + http://www.w3.org/Consortium/Legal/ This W3C work (including software, documents, or other related items) is being diff --git a/src/licensedcode/data/rules/w3c-software-19980720_11.yml b/src/licensedcode/data/rules/w3c-software-19980720_11.yml deleted file mode 100644 index 5b2c7bc6658..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_11.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-software-19980720_12.RULE b/src/licensedcode/data/rules/w3c-software-19980720_12.RULE index 66f4a07128d..165e0df7742 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_12.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_12.RULE @@ -1,3 +1,19 @@ +--- +license_expression: w3c-software-19980720 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, diff --git a/src/licensedcode/data/rules/w3c-software-19980720_12.yml b/src/licensedcode/data/rules/w3c-software-19980720_12.yml deleted file mode 100644 index 5b2c7bc6658..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_12.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-software-19980720_13.RULE b/src/licensedcode/data/rules/w3c-software-19980720_13.RULE index 8f8cac56faa..483087c6d4b 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_13.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_13.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C Software Notice and License (1998-07-20) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_13.yml b/src/licensedcode/data/rules/w3c-software-19980720_13.yml deleted file mode 100644 index 1be06fa6810..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-19980720_14.RULE b/src/licensedcode/data/rules/w3c-software-19980720_14.RULE index 4f67ed435fd..57e1328d17a 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_14.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_14.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: W3C Software Notice and License (1998-07-20) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_14.yml b/src/licensedcode/data/rules/w3c-software-19980720_14.yml deleted file mode 100644 index 1be06fa6810..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-19980720_15.RULE b/src/licensedcode/data/rules/w3c-software-19980720_15.RULE index 3609eb43233..5129d0e1259 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_15.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_15.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C-19980720 W3C Software Notice and License (1998-07-20) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_15.yml b/src/licensedcode/data/rules/w3c-software-19980720_15.yml deleted file mode 100644 index 1be06fa6810..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-19980720_16.RULE b/src/licensedcode/data/rules/w3c-software-19980720_16.RULE index c4cb7de2608..8728565b15d 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_16.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_16.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C Software Notice and License (1998-07-20) W3C-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_16.yml b/src/licensedcode/data/rules/w3c-software-19980720_16.yml deleted file mode 100644 index 1be06fa6810..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-19980720_17.RULE b/src/licensedcode/data/rules/w3c-software-19980720_17.RULE index b6a59d52e75..bec9c1a3be2 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_17.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_17.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-19980720 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: W3C-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_17.yml b/src/licensedcode/data/rules/w3c-software-19980720_17.yml deleted file mode 100644 index 6c2aa922232..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-19980720_18.RULE b/src/licensedcode/data/rules/w3c-software-19980720_18.RULE index 86e6afdfd4d..af5981d5a66 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_18.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_18.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-19980720 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: W3C Software Notice and License (1998-07-20) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_18.yml b/src/licensedcode/data/rules/w3c-software-19980720_18.yml deleted file mode 100644 index 6c2aa922232..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-19980720_19.RULE b/src/licensedcode/data/rules/w3c-software-19980720_19.RULE index 57360b842a6..fd6c69f3662 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_19.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_19.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-19980720 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: W3C-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_19.yml b/src/licensedcode/data/rules/w3c-software-19980720_19.yml deleted file mode 100644 index 6c2aa922232..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-19980720_2.RULE b/src/licensedcode/data/rules/w3c-software-19980720_2.RULE index 9ab102975ec..74d494fd810 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_2.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +--- + The DOM bindings are published under the W3C Software Copyright Notice and License. The software license requires "Notice of any changes or modifications to the W3C files, including the date changes were made." @@ -5,4 +10,4 @@ they do not conform to the W3C standard; in the case of the IDL definitions, the pragma prefix can no longer be 'w3c.org'; in the case of the Java language binding, the package names can no longer be in the - 'org.w3c' package. + 'org.w3c' package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_2.yml b/src/licensedcode/data/rules/w3c-software-19980720_2.yml deleted file mode 100644 index 480fb9e6354..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes diff --git a/src/licensedcode/data/rules/w3c-software-19980720_20.RULE b/src/licensedcode/data/rules/w3c-software-19980720_20.RULE index f01f246bd7b..7559c64fe89 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_20.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_20.RULE @@ -1,3 +1,11 @@ +--- +license_expression: w3c-software-19980720 +is_license_notice: yes +notes: Seen in W3C's libwww +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +--- + This program is distributed under the W3C's Intellectual Property License. This program is distributed in the hope that it will be useful, but diff --git a/src/licensedcode/data/rules/w3c-software-19980720_20.yml b/src/licensedcode/data/rules/w3c-software-19980720_20.yml deleted file mode 100644 index 152661ee270..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_notice: yes -notes: Seen in W3C's libwww -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ diff --git a/src/licensedcode/data/rules/w3c-software-19980720_21.RULE b/src/licensedcode/data/rules/w3c-software-19980720_21.RULE index ac85f67ca65..06ca2fff915 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_21.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_21.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/W3C-19980720 +--- + https://licenses.nuget.org/W3C-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_21.yml b/src/licensedcode/data/rules/w3c-software-19980720_21.yml deleted file mode 100644 index afa533d7909..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/W3C-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_22.RULE b/src/licensedcode/data/rules/w3c-software-19980720_22.RULE index 522b64e2daf..c79d8dea2bf 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_22.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_22.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/W3C-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_22.yml b/src/licensedcode/data/rules/w3c-software-19980720_22.yml deleted file mode 100644 index f97da23ce06..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_23.RULE b/src/licensedcode/data/rules/w3c-software-19980720_23.RULE index 3b7844e178f..f48688c56ac 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_23.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_23.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/W3C-19980720 +--- + LICENSE {{W3C-19980720}} https://spdx.org/licenses/W3C-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_23.yml b/src/licensedcode/data/rules/w3c-software-19980720_23.yml deleted file mode 100644 index 756b9e9018b..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/W3C-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_24.RULE b/src/licensedcode/data/rules/w3c-software-19980720_24.RULE index 57166786457..af41c859c06 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_24.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_24.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/W3C-19980720 +--- + {{W3C-19980720}} https://spdx.org/licenses/W3C-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_24.yml b/src/licensedcode/data/rules/w3c-software-19980720_24.yml deleted file mode 100644 index 756b9e9018b..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/W3C-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_3.RULE b/src/licensedcode/data/rules/w3c-software-19980720_3.RULE index 7f0daf34d62..cbe16a043aa 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_3.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_3.RULE @@ -1,2 +1,9 @@ +--- +license_expression: w3c-software-19980720 +is_license_notice: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/copyright-software-19980720 +--- + The original version of the W3C Software Copyright Notice and License could be found at 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_3.yml b/src/licensedcode/data/rules/w3c-software-19980720_3.yml deleted file mode 100644 index a9ebb663f56..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_notice: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/copyright-software-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_4.RULE b/src/licensedcode/data/rules/w3c-software-19980720_4.RULE index d136c0fe9cb..c36fe36afb1 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_4.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_4.RULE @@ -1,2 +1,9 @@ +--- +license_expression: w3c-software-19980720 +is_license_notice: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/copyright-software-19980720 +--- + The original version of the W3C Software Copyright Notice and License could be found at http://www.w3.org/Consortium/Legal/copyright-software-19980720 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_4.yml b/src/licensedcode/data/rules/w3c-software-19980720_4.yml deleted file mode 100644 index a9ebb663f56..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_notice: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/copyright-software-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_5.RULE b/src/licensedcode/data/rules/w3c-software-19980720_5.RULE index 9b4ca53fe0d..4f670d441af 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_5.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_5.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/copyright-software-19980720 +--- + 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_5.yml b/src/licensedcode/data/rules/w3c-software-19980720_5.yml deleted file mode 100644 index d887faba8e0..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/copyright-software-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_6.RULE b/src/licensedcode/data/rules/w3c-software-19980720_6.RULE index 5b0d2afe6d5..fdf64d49057 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_6.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_6.RULE @@ -1,3 +1,18 @@ +--- +license_expression: w3c-software-19980720 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) http://www.w3.org/'> World Wide Web Consortium +ignorable_holders: + - World Wide Web Consortium +ignorable_urls: + - http://www.inria.fr/ + - http://www.keio.ac.jp/ + - http://www.lcs.mit.edu/ + - http://www.w3.org/ + - http://www.w3.org/Consortium/Legal/ +--- + This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that @@ -43,4 +58,4 @@ advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright - holders. + holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_6.yml b/src/licensedcode/data/rules/w3c-software-19980720_6.yml deleted file mode 100644 index f91f7c00598..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_6.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) http://www.w3.org/'> World Wide Web Consortium -ignorable_holders: - - World Wide Web Consortium -ignorable_urls: - - http://www.inria.fr/ - - http://www.keio.ac.jp/ - - http://www.lcs.mit.edu/ - - http://www.w3.org/ - - http://www.w3.org/Consortium/Legal/ diff --git a/src/licensedcode/data/rules/w3c-software-19980720_7.RULE b/src/licensedcode/data/rules/w3c-software-19980720_7.RULE index 14a52f301e1..e232e2a4556 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_7.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_7.RULE @@ -1,3 +1,18 @@ +--- +license_expression: w3c-software-19980720 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + This notice is provided with respect to W3C (DTD for XML Signatures), which may be included with this software: W3C® SOFTWARE NOTICE AND LICENSE @@ -44,4 +59,4 @@ may be distributed in GPL packages. See the older formulation for the policy prior to this date. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can -be directed to site-policy@w3.org. +be directed to site-policy@w3.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_7.yml b/src/licensedcode/data/rules/w3c-software-19980720_7.yml deleted file mode 100644 index 3713b490474..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_7.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-software-19980720_8.RULE b/src/licensedcode/data/rules/w3c-software-19980720_8.RULE index 05d2a80358b..a5163b90825 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_8.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_8.RULE @@ -1,7 +1,14 @@ +--- +license_expression: w3c-software-19980720 +is_license_notice: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +--- + This program is distributed under the W3C's Software Intellectual Property 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 W3C License http://www.w3.org/Consortium/Legal/ for more details. +See W3C License http://www.w3.org/Consortium/Legal/ for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_8.yml b/src/licensedcode/data/rules/w3c-software-19980720_8.yml deleted file mode 100644 index e5be54ed520..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_notice: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ diff --git a/src/licensedcode/data/rules/w3c-software-19980720_9.RULE b/src/licensedcode/data/rules/w3c-software-19980720_9.RULE index 66571ebdf24..008810dbe93 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_9.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: w3c-software-19980720 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD + - http://www.w3.org/Consortium/Legal/copyright-software-19980720 +--- + This document is governed by the W3C Software License [1] as described in the FAQ [2]. diff --git a/src/licensedcode/data/rules/w3c-software-19980720_9.yml b/src/licensedcode/data/rules/w3c-software-19980720_9.yml deleted file mode 100644 index 058b93c77f2..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD - - http://www.w3.org/Consortium/Legal/copyright-software-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_url_1.RULE b/src/licensedcode/data/rules/w3c-software-19980720_url_1.RULE index be41f84e488..3e5b2f9a599 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_url_1.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/w3c-19980720 +--- + https://spdx.org/licenses/w3c-19980720 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_url_1.yml b/src/licensedcode/data/rules/w3c-software-19980720_url_1.yml deleted file mode 100644 index 8ebfbf86afa..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/w3c-19980720 diff --git a/src/licensedcode/data/rules/w3c-software-19980720_url_2.RULE b/src/licensedcode/data/rules/w3c-software-19980720_url_2.RULE index 1a91d57892b..8f5aa39c1ed 100644 --- a/src/licensedcode/data/rules/w3c-software-19980720_url_2.RULE +++ b/src/licensedcode/data/rules/w3c-software-19980720_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-19980720 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/w3c-19980720.html +--- + https://spdx.org/licenses/w3c-19980720.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-19980720_url_2.yml b/src/licensedcode/data/rules/w3c-software-19980720_url_2.yml deleted file mode 100644 index aa1d210aaf7..00000000000 --- a/src/licensedcode/data/rules/w3c-software-19980720_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/w3c-19980720.html diff --git a/src/licensedcode/data/rules/w3c-software-20021231.RULE b/src/licensedcode/data/rules/w3c-software-20021231.RULE index 70f400a25e0..254ce5b9079 100644 --- a/src/licensedcode/data/rules/w3c-software-20021231.RULE +++ b/src/licensedcode/data/rules/w3c-software-20021231.RULE @@ -1,3 +1,12 @@ +--- +license_expression: w3c +is_license_text: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +ignorable_emails: + - site-policy@w3.org +--- + W3CŽ SOFTWARE NOTICE AND LICENSE http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 @@ -45,4 +54,4 @@ is written so as to preserve the Free Software Foundation's assessment of GPL compatibility and OSI's certification under the Open Source Definition. Please see our Copyright FAQ for common questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other -questions about this notice can be directed to site-policy@w3.org. +questions about this notice can be directed to site-policy@w3.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-20021231.yml b/src/licensedcode/data/rules/w3c-software-20021231.yml deleted file mode 100644 index 855c7a802f6..00000000000 --- a/src/licensedcode/data/rules/w3c-software-20021231.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_text: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-software-20021231_1.RULE b/src/licensedcode/data/rules/w3c-software-20021231_1.RULE index dfe1034685a..fc85cdb2aa0 100644 --- a/src/licensedcode/data/rules/w3c-software-20021231_1.RULE +++ b/src/licensedcode/data/rules/w3c-software-20021231_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: w3c +is_license_text: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +ignorable_emails: + - site-policy@w3.org +--- + W3C(R) SOFTWARE NOTICE AND LICENSE http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 @@ -72,5 +81,4 @@ questions about using materials from our site, including specific terms and conditions for packages like libwww, Amaya, and Jigsaw. Other questions about this notice can be directed -to site-policy@w3.org. - +to site-policy@w3.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-20021231_1.yml b/src/licensedcode/data/rules/w3c-software-20021231_1.yml deleted file mode 100644 index 855c7a802f6..00000000000 --- a/src/licensedcode/data/rules/w3c-software-20021231_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_text: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-software-20021231_2.RULE b/src/licensedcode/data/rules/w3c-software-20021231_2.RULE index 1c2786b104f..05fcf6374fc 100644 --- a/src/licensedcode/data/rules/w3c-software-20021231_2.RULE +++ b/src/licensedcode/data/rules/w3c-software-20021231_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: w3c +is_license_text: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + LICENSE --- W3C SOFTWARE NOTICE AND LICENSE diff --git a/src/licensedcode/data/rules/w3c-software-20021231_2.yml b/src/licensedcode/data/rules/w3c-software-20021231_2.yml deleted file mode 100644 index fc8fbf98b5a..00000000000 --- a/src/licensedcode/data/rules/w3c-software-20021231_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c -is_license_text: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c-software-20021231_3.RULE b/src/licensedcode/data/rules/w3c-software-20021231_3.RULE index 14d90aef462..edd3e919a63 100644 --- a/src/licensedcode/data/rules/w3c-software-20021231_3.RULE +++ b/src/licensedcode/data/rules/w3c-software-20021231_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: w3c +is_license_text: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + W3C SOFTWARE NOTICE AND LICENSE diff --git a/src/licensedcode/data/rules/w3c-software-20021231_3.yml b/src/licensedcode/data/rules/w3c-software-20021231_3.yml deleted file mode 100644 index fc8fbf98b5a..00000000000 --- a/src/licensedcode/data/rules/w3c-software-20021231_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c -is_license_text: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c-software-20021231_4.RULE b/src/licensedcode/data/rules/w3c-software-20021231_4.RULE index 810aabbdee4..4f68c42e90a 100644 --- a/src/licensedcode/data/rules/w3c-software-20021231_4.RULE +++ b/src/licensedcode/data/rules/w3c-software-20021231_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: w3c +is_license_text: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + W3CÃ?œÃ?œ SOFTWARE NOTICE AND LICENSE http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c-software-20021231_4.yml b/src/licensedcode/data/rules/w3c-software-20021231_4.yml deleted file mode 100644 index fc8fbf98b5a..00000000000 --- a/src/licensedcode/data/rules/w3c-software-20021231_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c -is_license_text: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c-software-20021231_5.RULE b/src/licensedcode/data/rules/w3c-software-20021231_5.RULE index b91a3e789ff..02540e8c865 100644 --- a/src/licensedcode/data/rules/w3c-software-20021231_5.RULE +++ b/src/licensedcode/data/rules/w3c-software-20021231_5.RULE @@ -1 +1,9 @@ -http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + +http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-20021231_5.yml b/src/licensedcode/data/rules/w3c-software-20021231_5.yml deleted file mode 100644 index 7d077924054..00000000000 --- a/src/licensedcode/data/rules/w3c-software-20021231_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c-software-20021231_6.RULE b/src/licensedcode/data/rules/w3c-software-20021231_6.RULE index 7374df6cf9a..09c6de0af56 100644 --- a/src/licensedcode/data/rules/w3c-software-20021231_6.RULE +++ b/src/licensedcode/data/rules/w3c-software-20021231_6.RULE @@ -1,3 +1,12 @@ +--- +license_expression: w3c +is_license_text: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +ignorable_emails: + - site-policy@w3.org +--- + W3CÃ?œÃ?œ SOFTWARE NOTICE AND LICENSE http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c-software-20021231_6.yml b/src/licensedcode/data/rules/w3c-software-20021231_6.yml deleted file mode 100644 index 855c7a802f6..00000000000 --- a/src/licensedcode/data/rules/w3c-software-20021231_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_text: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c-software-20021231_fulltext.RULE b/src/licensedcode/data/rules/w3c-software-20021231_fulltext.RULE index 990a0284d0d..f710a442e37 100644 --- a/src/licensedcode/data/rules/w3c-software-20021231_fulltext.RULE +++ b/src/licensedcode/data/rules/w3c-software-20021231_fulltext.RULE @@ -1,3 +1,10 @@ +--- +license_expression: w3c +is_license_text: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + W3C Software Notice and License Status: This license was applied to software published by W3C before 13 May, @@ -59,4 +66,4 @@ now a host of the W3C, includes references to this specific dated version of the license, and removes the ambiguous grant of "use". Otherwise, this version is the same as the previous version and is written so as to preserve the Free Software Foundation's assessment of GPL compatibility and OSI's certification -under the Open Source Definition. +under the Open Source Definition. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-20021231_fulltext.yml b/src/licensedcode/data/rules/w3c-software-20021231_fulltext.yml deleted file mode 100644 index fc8fbf98b5a..00000000000 --- a/src/licensedcode/data/rules/w3c-software-20021231_fulltext.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c -is_license_text: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_1.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_1.RULE index 7d904251cad..bcc0deb4417 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_1.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_1.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.w3.org/Consortium/Legal/2015/copyright-software-short-notice.html +--- + https://www.w3.org/Consortium/Legal/2015/copyright-software-short-notice.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_1.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_1.yml deleted file mode 100644 index 1ad27f85605..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.w3.org/Consortium/Legal/2015/copyright-software-short-notice.html diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_10.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_10.RULE index 98674cd269c..57bf89c5fe0 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_10.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_10.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C-20150513 W3C Software Notice and Document License (2015-05-13) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_10.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_10.yml deleted file mode 100644 index 15056f2284b..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_11.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_11.RULE index dde5cea7345..fa584156225 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_11.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_11.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C Software Notice and Document License (2015-05-13) W3C-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_11.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_11.yml deleted file mode 100644 index 15056f2284b..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_12.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_12.RULE index a5061b05410..f3269eeb7a6 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_12.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_12.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: W3C Software Notice and Document License (2015-05-13) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_12.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_12.yml deleted file mode 100644 index b5bfd6e5092..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_13.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_13.RULE index e2f86e0cb45..01dd89719dc 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_13.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_13.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: W3C-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_13.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_13.yml deleted file mode 100644 index b5bfd6e5092..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_14.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_14.RULE index 7ce7a03aa3c..ec14cf4b0d1 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_14.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_14.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/W3C-20150513 +--- + https://licenses.nuget.org/W3C-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_14.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_14.yml deleted file mode 100644 index bcf8eb7d7d3..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/W3C-20150513 diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_15.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_15.RULE index 33c3a65ea75..169812d87cd 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_15.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_15.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/W3C-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_15.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_15.yml deleted file mode 100644 index 9814df355be..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_16.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_16.RULE index e53c49bb960..d41a8b213f8 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_16.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_16.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/W3C-20150513 +--- + {{W3C-20150513}} https://spdx.org/licenses/W3C-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_16.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_16.yml deleted file mode 100644 index 92b848ccfb5..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/W3C-20150513 diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_17.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_17.RULE index 556ffec34f1..60a5327e07c 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_17.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_17.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/W3C-20150513 +--- + LICENSE {{W3C-20150513}} https://spdx.org/licenses/W3C-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_17.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_17.yml deleted file mode 100644 index 92b848ccfb5..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/W3C-20150513 diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_2.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_2.RULE index 314c50a4e47..eef1d74a712 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_2.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_2.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document +--- + https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_2.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_2.yml deleted file mode 100644 index 12528cf1512..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_3.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_3.RULE index d9a6d469b73..3d7cc65c93a 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_3.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_3.RULE @@ -1,2 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/copyright-software +--- + The following software licensing rules apply http://www.w3.org/Consortium/Legal/copyright-software */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_3.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_3.yml deleted file mode 100644 index cb2eb7ac991..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/copyright-software diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_4.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_4.RULE index db7df7d87fa..cab41104ec8 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_4.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_4.RULE @@ -1,3 +1,11 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document +--- + * @license W3C-20150513 * This content is licensed according to the W3C Software License at * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_4.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_4.yml deleted file mode 100644 index 4b5b73a184d..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_5.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_5.RULE index 55ef5b37b62..0613a68c9a8 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_5.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_5.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_tag: yes +relevance: 100 +--- + * @license W3C-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_5.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_5.yml deleted file mode 100644 index 7849547899e..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_6.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_6.RULE index 3006a2797ae..777f0a1fe01 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_6.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_6.RULE @@ -1,2 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document +--- + * This content is licensed according to the W3C Software License at * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_6.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_6.yml deleted file mode 100644 index 4b5b73a184d..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_7.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_7.RULE index 888bfc49fe6..b16402d67c5 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_7.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_text: yes +relevance: 99 +ignorable_copyrights: + - Copyright (c) YEAR W3C(r) MIT, ERCIM, Keio +ignorable_holders: + - W3C(r) MIT, ERCIM, Keio +--- + W3C Software and Document Notice and License This work is being provided by the copyright holders under the following license. diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_7.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_7.yml deleted file mode 100644 index 88890300e3a..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_text: yes -relevance: 99 -ignorable_copyrights: - - Copyright (c) YEAR W3C(r) MIT, ERCIM, Keio -ignorable_holders: - - W3C(r) MIT, ERCIM, Keio diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_8.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_8.RULE index e0608d4c76b..1e0fac10a74 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_8.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_8.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C Software Notice and Document License (2015-05-13) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_8.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_8.yml deleted file mode 100644 index 15056f2284b..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_9.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_9.RULE index ca215b74bea..3a2d3efea79 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_9.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_9.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: W3C Software Notice and Document License (2015-05-13) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_9.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_9.yml deleted file mode 100644 index 15056f2284b..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_url_1.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_url_1.RULE index a0d26be06a8..b94f0126b20 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_url_1.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/w3c-20150513 +--- + https://spdx.org/licenses/w3c-20150513 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_url_1.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_url_1.yml deleted file mode 100644 index 5ffd376523e..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/w3c-20150513 diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_url_2.RULE b/src/licensedcode/data/rules/w3c-software-doc-20150513_url_2.RULE index 6d1362a4992..f7f872c6337 100644 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_url_2.RULE +++ b/src/licensedcode/data/rules/w3c-software-doc-20150513_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c-software-doc-20150513 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/w3c-20150513.html +--- + https://spdx.org/licenses/w3c-20150513.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c-software-doc-20150513_url_2.yml b/src/licensedcode/data/rules/w3c-software-doc-20150513_url_2.yml deleted file mode 100644 index 0871f128727..00000000000 --- a/src/licensedcode/data/rules/w3c-software-doc-20150513_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c-software-doc-20150513 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/w3c-20150513.html diff --git a/src/licensedcode/data/rules/w3c_1.RULE b/src/licensedcode/data/rules/w3c_1.RULE index b1c23c9d7b8..846e85c4d23 100644 --- a/src/licensedcode/data/rules/w3c_1.RULE +++ b/src/licensedcode/data/rules/w3c_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: w3c-software-19980720 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +--- + This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, diff --git a/src/licensedcode/data/rules/w3c_1.yml b/src/licensedcode/data/rules/w3c_1.yml deleted file mode 100644 index 9a196718ba1..00000000000 --- a/src/licensedcode/data/rules/w3c_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ diff --git a/src/licensedcode/data/rules/w3c_10.RULE b/src/licensedcode/data/rules/w3c_10.RULE index 22e8efd39c6..b3f79cc3d45 100644 --- a/src/licensedcode/data/rules/w3c_10.RULE +++ b/src/licensedcode/data/rules/w3c_10.RULE @@ -1,6 +1,13 @@ +--- +license_expression: w3c +is_license_notice: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + This * work is distributed under the W3C(r) Software License [1] 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. * - * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 + * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_10.yml b/src/licensedcode/data/rules/w3c_10.yml deleted file mode 100644 index be596c57b03..00000000000 --- a/src/licensedcode/data/rules/w3c_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c -is_license_notice: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c_11.RULE b/src/licensedcode/data/rules/w3c_11.RULE index bb6d64dfb92..30cf141a83d 100644 --- a/src/licensedcode/data/rules/w3c_11.RULE +++ b/src/licensedcode/data/rules/w3c_11.RULE @@ -1,7 +1,14 @@ +--- +license_expression: w3c +is_license_notice: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/copyright-software +--- + This work is distributed under the W3C® Software License[1] 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. [1] -http://www.w3.org/Consortium/Legal/copyright-software +http://www.w3.org/Consortium/Legal/copyright-software \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_11.yml b/src/licensedcode/data/rules/w3c_11.yml deleted file mode 100644 index fe3319a0e67..00000000000 --- a/src/licensedcode/data/rules/w3c_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c -is_license_notice: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/copyright-software diff --git a/src/licensedcode/data/rules/w3c_12.RULE b/src/licensedcode/data/rules/w3c_12.RULE index c37b8431bec..5c4d4699ad7 100644 --- a/src/licensedcode/data/rules/w3c_12.RULE +++ b/src/licensedcode/data/rules/w3c_12.RULE @@ -1,4 +1,9 @@ +--- +license_expression: w3c +is_license_notice: yes +--- + This * work is distributed under the W3C(r) Software License [1] 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. + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_12.yml b/src/licensedcode/data/rules/w3c_12.yml deleted file mode 100644 index 435e2944915..00000000000 --- a/src/licensedcode/data/rules/w3c_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: w3c -is_license_notice: yes diff --git a/src/licensedcode/data/rules/w3c_13.RULE b/src/licensedcode/data/rules/w3c_13.RULE index 649662e25ab..4357f9f3900 100644 --- a/src/licensedcode/data/rules/w3c_13.RULE +++ b/src/licensedcode/data/rules/w3c_13.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_notice: yes +relevance: 100 +--- + code is licensed under the W3C Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_13.yml b/src/licensedcode/data/rules/w3c_13.yml deleted file mode 100644 index dbf728dc30e..00000000000 --- a/src/licensedcode/data/rules/w3c_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_14.RULE b/src/licensedcode/data/rules/w3c_14.RULE index 918ecec68c2..1b68b053578 100644 --- a/src/licensedcode/data/rules/w3c_14.RULE +++ b/src/licensedcode/data/rules/w3c_14.RULE @@ -1,3 +1,8 @@ +--- +license_expression: w3c +is_license_notice: yes +--- + This work is distributed under the W3C Software License [1] in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS diff --git a/src/licensedcode/data/rules/w3c_14.yml b/src/licensedcode/data/rules/w3c_14.yml deleted file mode 100644 index 435e2944915..00000000000 --- a/src/licensedcode/data/rules/w3c_14.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: w3c -is_license_notice: yes diff --git a/src/licensedcode/data/rules/w3c_15.RULE b/src/licensedcode/data/rules/w3c_15.RULE index 525bfcd4fb6..370bf087542 100644 --- a/src/licensedcode/data/rules/w3c_15.RULE +++ b/src/licensedcode/data/rules/w3c_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: w3c +is_license_notice: yes +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + This work is distributed under the W3C Software License [1] in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied diff --git a/src/licensedcode/data/rules/w3c_15.yml b/src/licensedcode/data/rules/w3c_15.yml deleted file mode 100644 index be596c57b03..00000000000 --- a/src/licensedcode/data/rules/w3c_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: w3c -is_license_notice: yes -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c_16.RULE b/src/licensedcode/data/rules/w3c_16.RULE index 2f9ff165248..80f1e89588d 100644 --- a/src/licensedcode/data/rules/w3c_16.RULE +++ b/src/licensedcode/data/rules/w3c_16.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/W3C.html +--- + https://spdx.org/licenses/W3C.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_16.yml b/src/licensedcode/data/rules/w3c_16.yml deleted file mode 100644 index ce8567da3fc..00000000000 --- a/src/licensedcode/data/rules/w3c_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/W3C.html diff --git a/src/licensedcode/data/rules/w3c_17.RULE b/src/licensedcode/data/rules/w3c_17.RULE index 14be9e1b8d7..ac1b91547af 100644 --- a/src/licensedcode/data/rules/w3c_17.RULE +++ b/src/licensedcode/data/rules/w3c_17.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +--- + W3C Software Notice and License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_17.yml b/src/licensedcode/data/rules/w3c_17.yml deleted file mode 100644 index cf158dc9b57..00000000000 --- a/src/licensedcode/data/rules/w3c_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_18.RULE b/src/licensedcode/data/rules/w3c_18.RULE index cd5f5fc28c7..56b3aaf5b3d 100644 --- a/src/licensedcode/data/rules/w3c_18.RULE +++ b/src/licensedcode/data/rules/w3c_18.RULE @@ -1,2 +1,10 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html +--- + W3C Software Notice and License. http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_18.yml b/src/licensedcode/data/rules/w3c_18.yml deleted file mode 100644 index 409c47fbc3d..00000000000 --- a/src/licensedcode/data/rules/w3c_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html diff --git a/src/licensedcode/data/rules/w3c_19.RULE b/src/licensedcode/data/rules/w3c_19.RULE index bac812531f7..e1f227590bd 100644 --- a/src/licensedcode/data/rules/w3c_19.RULE +++ b/src/licensedcode/data/rules/w3c_19.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_notice: yes +relevance: 100 +--- + which is available under the W3C Software and Document License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_19.yml b/src/licensedcode/data/rules/w3c_19.yml deleted file mode 100644 index dbf728dc30e..00000000000 --- a/src/licensedcode/data/rules/w3c_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_2.RULE b/src/licensedcode/data/rules/w3c_2.RULE index 40b1b4a7a15..86df26e91d5 100644 --- a/src/licensedcode/data/rules/w3c_2.RULE +++ b/src/licensedcode/data/rules/w3c_2.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +notes: http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf +ignorable_urls: + - http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf +--- + http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_2.yml b/src/licensedcode/data/rules/w3c_2.yml deleted file mode 100644 index 6fb09e0eda4..00000000000 --- a/src/licensedcode/data/rules/w3c_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -notes: http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf -ignorable_urls: - - http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf diff --git a/src/licensedcode/data/rules/w3c_20.RULE b/src/licensedcode/data/rules/w3c_20.RULE index cd82f45b392..5e9e6b92cdd 100644 --- a/src/licensedcode/data/rules/w3c_20.RULE +++ b/src/licensedcode/data/rules/w3c_20.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_notice: yes +relevance: 100 +--- + is available under the W3C Software and Document License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_20.yml b/src/licensedcode/data/rules/w3c_20.yml deleted file mode 100644 index dbf728dc30e..00000000000 --- a/src/licensedcode/data/rules/w3c_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_21.RULE b/src/licensedcode/data/rules/w3c_21.RULE index a0b7d0592c4..870f57f8f24 100644 --- a/src/licensedcode/data/rules/w3c_21.RULE +++ b/src/licensedcode/data/rules/w3c_21.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_notice: yes +relevance: 100 +--- + available under the W3C Software and Document License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_21.yml b/src/licensedcode/data/rules/w3c_21.yml deleted file mode 100644 index dbf728dc30e..00000000000 --- a/src/licensedcode/data/rules/w3c_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_22.RULE b/src/licensedcode/data/rules/w3c_22.RULE index 7c1fafb83da..18b984b4fd6 100644 --- a/src/licensedcode/data/rules/w3c_22.RULE +++ b/src/licensedcode/data/rules/w3c_22.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +--- + W3C(R) SOFTWARE NOTICE AND LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_22.yml b/src/licensedcode/data/rules/w3c_22.yml deleted file mode 100644 index cf158dc9b57..00000000000 --- a/src/licensedcode/data/rules/w3c_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_23.RULE b/src/licensedcode/data/rules/w3c_23.RULE index ffc7bfaad53..5330ec47f04 100644 --- a/src/licensedcode/data/rules/w3c_23.RULE +++ b/src/licensedcode/data/rules/w3c_23.RULE @@ -1,3 +1,12 @@ +--- +license_expression: w3c +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/docs/definition.php + - http://www.opensource.org/licenses/W3C.php +--- + http://www.opensource.org/licenses/W3C.php">OSI's certification under the Open Source Definition \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_23.yml b/src/licensedcode/data/rules/w3c_23.yml deleted file mode 100644 index 98603bb2467..00000000000 --- a/src/licensedcode/data/rules/w3c_23.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/docs/definition.php - - http://www.opensource.org/licenses/W3C.php diff --git a/src/licensedcode/data/rules/w3c_24.RULE b/src/licensedcode/data/rules/w3c_24.RULE index 85d72eaafcd..72bda5c281f 100644 --- a/src/licensedcode/data/rules/w3c_24.RULE +++ b/src/licensedcode/data/rules/w3c_24.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C Software Notice and License (2002-12-31) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_24.yml b/src/licensedcode/data/rules/w3c_24.yml deleted file mode 100644 index 047e58e69ee..00000000000 --- a/src/licensedcode/data/rules/w3c_24.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c_25.RULE b/src/licensedcode/data/rules/w3c_25.RULE index 71bc7e8b051..e697e6fe3e0 100644 --- a/src/licensedcode/data/rules/w3c_25.RULE +++ b/src/licensedcode/data/rules/w3c_25.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: W3C Software Notice and License (2002-12-31) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_25.yml b/src/licensedcode/data/rules/w3c_25.yml deleted file mode 100644 index 047e58e69ee..00000000000 --- a/src/licensedcode/data/rules/w3c_25.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c_26.RULE b/src/licensedcode/data/rules/w3c_26.RULE index 48f5522c22e..e0d7472fff1 100644 --- a/src/licensedcode/data/rules/w3c_26.RULE +++ b/src/licensedcode/data/rules/w3c_26.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C W3C Software Notice and License (2002-12-31) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_26.yml b/src/licensedcode/data/rules/w3c_26.yml deleted file mode 100644 index 047e58e69ee..00000000000 --- a/src/licensedcode/data/rules/w3c_26.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c_27.RULE b/src/licensedcode/data/rules/w3c_27.RULE index b3be637ff2d..5c4dd57e8db 100644 --- a/src/licensedcode/data/rules/w3c_27.RULE +++ b/src/licensedcode/data/rules/w3c_27.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + W3C Software Notice and License (2002-12-31) W3C \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_27.yml b/src/licensedcode/data/rules/w3c_27.yml deleted file mode 100644 index 047e58e69ee..00000000000 --- a/src/licensedcode/data/rules/w3c_27.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c_28.RULE b/src/licensedcode/data/rules/w3c_28.RULE index 073931e2ca9..74fff312c2a 100644 --- a/src/licensedcode/data/rules/w3c_28.RULE +++ b/src/licensedcode/data/rules/w3c_28.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: W3C \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_28.yml b/src/licensedcode/data/rules/w3c_28.yml deleted file mode 100644 index 82d164960a0..00000000000 --- a/src/licensedcode/data/rules/w3c_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c_29.RULE b/src/licensedcode/data/rules/w3c_29.RULE index a93a23dd5d8..fa9d296e5d6 100644 --- a/src/licensedcode/data/rules/w3c_29.RULE +++ b/src/licensedcode/data/rules/w3c_29.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: W3C Software Notice and License (2002-12-31) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_29.yml b/src/licensedcode/data/rules/w3c_29.yml deleted file mode 100644 index 82d164960a0..00000000000 --- a/src/licensedcode/data/rules/w3c_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c_3.RULE b/src/licensedcode/data/rules/w3c_3.RULE index ac70b3bfc66..2c9dc818520 100644 --- a/src/licensedcode/data/rules/w3c_3.RULE +++ b/src/licensedcode/data/rules/w3c_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: w3c +is_license_notice: yes +ignorable_copyrights: + - Copyright World Wide Web Consortium, (Massachusetts Institute of Technology, European + Research Consortium for Informatics and Mathematics, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium + for Informatics and Mathematics, Keio University) +--- + $name_of_software: $distribution_URI Copyright [$date-of-software] World Wide Web Consortium, (Massachusetts diff --git a/src/licensedcode/data/rules/w3c_3.yml b/src/licensedcode/data/rules/w3c_3.yml deleted file mode 100644 index be2c05687a3..00000000000 --- a/src/licensedcode/data/rules/w3c_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: w3c -is_license_notice: yes -ignorable_copyrights: - - Copyright World Wide Web Consortium, (Massachusetts Institute of Technology, European - Research Consortium for Informatics and Mathematics, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, European Research Consortium - for Informatics and Mathematics, Keio University) diff --git a/src/licensedcode/data/rules/w3c_30.RULE b/src/licensedcode/data/rules/w3c_30.RULE index 42eb3a8a19c..ad892868920 100644 --- a/src/licensedcode/data/rules/w3c_30.RULE +++ b/src/licensedcode/data/rules/w3c_30.RULE @@ -1 +1,10 @@ +--- +license_expression: w3c +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: W3C \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_30.yml b/src/licensedcode/data/rules/w3c_30.yml deleted file mode 100644 index 82d164960a0..00000000000 --- a/src/licensedcode/data/rules/w3c_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/w3c_31.RULE b/src/licensedcode/data/rules/w3c_31.RULE index 1d2cb60f3d7..17124f0beb5 100644 --- a/src/licensedcode/data/rules/w3c_31.RULE +++ b/src/licensedcode/data/rules/w3c_31.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/W3C_Software_Notice_and_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_31.yml b/src/licensedcode/data/rules/w3c_31.yml deleted file mode 100644 index cf158dc9b57..00000000000 --- a/src/licensedcode/data/rules/w3c_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_32.RULE b/src/licensedcode/data/rules/w3c_32.RULE index c31dda069d3..a6c87a1e3e1 100644 --- a/src/licensedcode/data/rules/w3c_32.RULE +++ b/src/licensedcode/data/rules/w3c_32.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +--- + The W3C License \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_32.yml b/src/licensedcode/data/rules/w3c_32.yml deleted file mode 100644 index cf158dc9b57..00000000000 --- a/src/licensedcode/data/rules/w3c_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_33.RULE b/src/licensedcode/data/rules/w3c_33.RULE index 340b6829853..6c213d394ea 100644 --- a/src/licensedcode/data/rules/w3c_33.RULE +++ b/src/licensedcode/data/rules/w3c_33.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/W3C +--- + https://licenses.nuget.org/W3C \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_33.yml b/src/licensedcode/data/rules/w3c_33.yml deleted file mode 100644 index 80d255933a4..00000000000 --- a/src/licensedcode/data/rules/w3c_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/W3C diff --git a/src/licensedcode/data/rules/w3c_34.RULE b/src/licensedcode/data/rules/w3c_34.RULE index 2b93735b68d..d8e222bba18 100644 --- a/src/licensedcode/data/rules/w3c_34.RULE +++ b/src/licensedcode/data/rules/w3c_34.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/W3C \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_34.yml b/src/licensedcode/data/rules/w3c_34.yml deleted file mode 100644 index cf158dc9b57..00000000000 --- a/src/licensedcode/data/rules/w3c_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_35.RULE b/src/licensedcode/data/rules/w3c_35.RULE index 7e54045df7b..d26088fc727 100644 --- a/src/licensedcode/data/rules/w3c_35.RULE +++ b/src/licensedcode/data/rules/w3c_35.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +--- + The W3C Software License \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_35.yml b/src/licensedcode/data/rules/w3c_35.yml deleted file mode 100644 index cf158dc9b57..00000000000 --- a/src/licensedcode/data/rules/w3c_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_36.RULE b/src/licensedcode/data/rules/w3c_36.RULE index 13893131712..a72cb583591 100644 --- a/src/licensedcode/data/rules/w3c_36.RULE +++ b/src/licensedcode/data/rules/w3c_36.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/W3C +--- + LICENSE {{W3C}} https://spdx.org/licenses/W3C \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_36.yml b/src/licensedcode/data/rules/w3c_36.yml deleted file mode 100644 index cb9c30444fc..00000000000 --- a/src/licensedcode/data/rules/w3c_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/W3C diff --git a/src/licensedcode/data/rules/w3c_37.RULE b/src/licensedcode/data/rules/w3c_37.RULE index 486563a265a..4fd555b7f86 100644 --- a/src/licensedcode/data/rules/w3c_37.RULE +++ b/src/licensedcode/data/rules/w3c_37.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/W3C +--- + {{W3C}} https://spdx.org/licenses/W3C \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_37.yml b/src/licensedcode/data/rules/w3c_37.yml deleted file mode 100644 index cb9c30444fc..00000000000 --- a/src/licensedcode/data/rules/w3c_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/W3C diff --git a/src/licensedcode/data/rules/w3c_4.RULE b/src/licensedcode/data/rules/w3c_4.RULE index dff75e7ece1..d176596b0b4 100644 --- a/src/licensedcode/data/rules/w3c_4.RULE +++ b/src/licensedcode/data/rules/w3c_4.RULE @@ -1 +1,9 @@ -http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html \ No newline at end of file +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html +--- + +http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_4.yml b/src/licensedcode/data/rules/w3c_4.yml deleted file mode 100644 index 409c47fbc3d..00000000000 --- a/src/licensedcode/data/rules/w3c_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html diff --git a/src/licensedcode/data/rules/w3c_5.RULE b/src/licensedcode/data/rules/w3c_5.RULE index 1655024a96b..2caaa00a90c 100644 --- a/src/licensedcode/data/rules/w3c_5.RULE +++ b/src/licensedcode/data/rules/w3c_5.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/W3C.php +--- + http://www.opensource.org/licenses/W3C.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_5.yml b/src/licensedcode/data/rules/w3c_5.yml deleted file mode 100644 index 136cb4014e2..00000000000 --- a/src/licensedcode/data/rules/w3c_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/W3C.php diff --git a/src/licensedcode/data/rules/w3c_6.RULE b/src/licensedcode/data/rules/w3c_6.RULE index 9e962ac5859..9b8ef188bc4 100644 --- a/src/licensedcode/data/rules/w3c_6.RULE +++ b/src/licensedcode/data/rules/w3c_6.RULE @@ -1,3 +1,20 @@ +--- +license_expression: w3c-software-19980720 +is_license_text: yes +ignorable_copyrights: + - Copyright 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, + Institut National de Recherche en Informatique et en Automatique, Keio University) + - Copyright World Wide Web Consortium, (Massachusetts Institute of Technology, Institut + National de Recherche en Informatique et en Automatique, Keio University) +ignorable_holders: + - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de + Recherche en Informatique et en Automatique, Keio University) +ignorable_urls: + - http://www.w3.org/Consortium/Legal/ +ignorable_emails: + - site-policy@w3.org +--- + W3C? SOFTWARE NOTICE AND LICENSE Copyright ? 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/ @@ -22,4 +39,4 @@ This formulation of W3C's notice and license became active on August 14 1998 so webmaster -(last updated $Date: 2002/02/13 14:08:32 $) +(last updated $Date: 2002/02/13 14:08:32 $) \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_6.yml b/src/licensedcode/data/rules/w3c_6.yml deleted file mode 100644 index 0ff4228da13..00000000000 --- a/src/licensedcode/data/rules/w3c_6.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_text: yes -ignorable_copyrights: - - Copyright 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, - Institut National de Recherche en Informatique et en Automatique, Keio University) - - Copyright World Wide Web Consortium, (Massachusetts Institute of Technology, Institut - National de Recherche en Informatique et en Automatique, Keio University) -ignorable_holders: - - World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de - Recherche en Informatique et en Automatique, Keio University) -ignorable_urls: - - http://www.w3.org/Consortium/Legal/ -ignorable_emails: - - site-policy@w3.org diff --git a/src/licensedcode/data/rules/w3c_7.RULE b/src/licensedcode/data/rules/w3c_7.RULE index cf5886b87a7..961936f0cf4 100644 --- a/src/licensedcode/data/rules/w3c_7.RULE +++ b/src/licensedcode/data/rules/w3c_7.RULE @@ -1 +1,7 @@ +--- +license_expression: w3c-software-19980720 +is_license_tag: yes +relevance: 100 +--- + License: W3C-Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_7.yml b/src/licensedcode/data/rules/w3c_7.yml deleted file mode 100644 index b1ea9af5fb3..00000000000 --- a/src/licensedcode/data/rules/w3c_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c-software-19980720 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_8.RULE b/src/licensedcode/data/rules/w3c_8.RULE index 65806b98155..d3026943484 100644 --- a/src/licensedcode/data/rules/w3c_8.RULE +++ b/src/licensedcode/data/rules/w3c_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: w3c +is_license_text: yes +relevance: 100 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + All tests materials are licensed under the W3C Software Notice and License, as follows: W3C® SOFTWARE NOTICE AND LICENSE http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c_8.yml b/src/licensedcode/data/rules/w3c_8.yml deleted file mode 100644 index 259419c314a..00000000000 --- a/src/licensedcode/data/rules/w3c_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_text: yes -relevance: 100 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c_9.RULE b/src/licensedcode/data/rules/w3c_9.RULE index 6a4d640c242..33d66d89b8a 100644 --- a/src/licensedcode/data/rules/w3c_9.RULE +++ b/src/licensedcode/data/rules/w3c_9.RULE @@ -1,3 +1,12 @@ +--- +license_expression: w3c +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 +--- + W3C SOFTWARE NOTICE AND LICENSE This work (and included software, documentation such as READMEs, or other related items) is being provided by the copyright holders under the following license. License diff --git a/src/licensedcode/data/rules/w3c_9.yml b/src/licensedcode/data/rules/w3c_9.yml deleted file mode 100644 index 407af178cc6..00000000000 --- a/src/licensedcode/data/rules/w3c_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: w3c -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 diff --git a/src/licensedcode/data/rules/w3c_and_w3c-documentation_1.RULE b/src/licensedcode/data/rules/w3c_and_w3c-documentation_1.RULE index 3adf3e5ea8b..ea4c28a48c7 100644 --- a/src/licensedcode/data/rules/w3c_and_w3c-documentation_1.RULE +++ b/src/licensedcode/data/rules/w3c_and_w3c-documentation_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: w3c AND w3c-documentation +is_license_notice: yes +referenced_filenames: + - LICENSE.dom-software.txt + - LICENSE.dom-documentation.txt +--- + All DOM code is licensed under the W3C Software License, and DOM documentation under the W3C Document License. See LICENSE.dom-software.txt and LICENSE.dom-documentation.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_and_w3c-documentation_1.yml b/src/licensedcode/data/rules/w3c_and_w3c-documentation_1.yml deleted file mode 100644 index 0caca34350f..00000000000 --- a/src/licensedcode/data/rules/w3c_and_w3c-documentation_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c AND w3c-documentation -is_license_notice: yes -referenced_filenames: - - LICENSE.dom-software.txt - - LICENSE.dom-documentation.txt diff --git a/src/licensedcode/data/rules/w3c_and_w3c-documentation_2.RULE b/src/licensedcode/data/rules/w3c_and_w3c-documentation_2.RULE index 1e97d4acb34..1d86e1e9619 100644 --- a/src/licensedcode/data/rules/w3c_and_w3c-documentation_2.RULE +++ b/src/licensedcode/data/rules/w3c_and_w3c-documentation_2.RULE @@ -1,2 +1,8 @@ +--- +license_expression: w3c AND w3c-documentation +is_license_notice: yes +relevance: 100 +--- + All DOM code is licensed under the W3C Software License, and DOM documentation -under the W3C Document License. \ No newline at end of file +under the W3C Document License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_and_w3c-documentation_2.yml b/src/licensedcode/data/rules/w3c_and_w3c-documentation_2.yml deleted file mode 100644 index 0a505695f5a..00000000000 --- a/src/licensedcode/data/rules/w3c_and_w3c-documentation_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c AND w3c-documentation -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/w3c_or_html5_1.RULE b/src/licensedcode/data/rules/w3c_or_html5_1.RULE index 49f813d6067..035555351a9 100644 --- a/src/licensedcode/data/rules/w3c_or_html5_1.RULE +++ b/src/licensedcode/data/rules/w3c_or_html5_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: w3c OR html5 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html +--- + Use and distribution of this code are permitted under the terms of either of the following two licences: diff --git a/src/licensedcode/data/rules/w3c_or_html5_1.yml b/src/licensedcode/data/rules/w3c_or_html5_1.yml deleted file mode 100644 index b2be10b185b..00000000000 --- a/src/licensedcode/data/rules/w3c_or_html5_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c OR html5 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html diff --git a/src/licensedcode/data/rules/w3c_reference_1.RULE b/src/licensedcode/data/rules/w3c_reference_1.RULE index 43f9a76eace..5b23d7f6440 100644 --- a/src/licensedcode/data/rules/w3c_reference_1.RULE +++ b/src/licensedcode/data/rules/w3c_reference_1.RULE @@ -1 +1,7 @@ -This formulation of W3C's notice and license became active on August 14 1998 so as to improve compatibility with GPL. This version ensures that W3C software licensing terms are no more restrictive than GPL and consequently W3C software may be distributed in GPL packages. See the older formulation for the policy prior to this date. \ No newline at end of file +--- +license_expression: w3c +is_license_reference: yes +notes: Seen ONLY in w3c notices +--- + +This formulation of W3C's notice and license became active on August 14 1998 so as to improve compatibility with GPL. This version ensures that W3C software licensing terms are no more restrictive than GPL and consequently W3C software may be distributed in GPL packages. See the older formulation for the policy prior to this date. \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_reference_1.yml b/src/licensedcode/data/rules/w3c_reference_1.yml deleted file mode 100644 index 23dde37bea5..00000000000 --- a/src/licensedcode/data/rules/w3c_reference_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: w3c -is_license_reference: yes -notes: Seen ONLY in w3c notices diff --git a/src/licensedcode/data/rules/w3c_url_1.RULE b/src/licensedcode/data/rules/w3c_url_1.RULE index f11f603f837..fa4b20a9176 100644 --- a/src/licensedcode/data/rules/w3c_url_1.RULE +++ b/src/licensedcode/data/rules/w3c_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/w3c +--- + https://spdx.org/licenses/w3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_url_1.yml b/src/licensedcode/data/rules/w3c_url_1.yml deleted file mode 100644 index b2e8395f768..00000000000 --- a/src/licensedcode/data/rules/w3c_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/w3c diff --git a/src/licensedcode/data/rules/w3c_url_glc_242.RULE b/src/licensedcode/data/rules/w3c_url_glc_242.RULE index 1e347250a47..f8b0184099d 100644 --- a/src/licensedcode/data/rules/w3c_url_glc_242.RULE +++ b/src/licensedcode/data/rules/w3c_url_glc_242.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/w3c +--- + http://www.opensource.org/licenses/w3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_url_glc_242.yml b/src/licensedcode/data/rules/w3c_url_glc_242.yml deleted file mode 100644 index daf7de40bdf..00000000000 --- a/src/licensedcode/data/rules/w3c_url_glc_242.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/w3c diff --git a/src/licensedcode/data/rules/w3c_url_glc_243.RULE b/src/licensedcode/data/rules/w3c_url_glc_243.RULE index 8ef00c7a5cf..2a3520371bd 100644 --- a/src/licensedcode/data/rules/w3c_url_glc_243.RULE +++ b/src/licensedcode/data/rules/w3c_url_glc_243.RULE @@ -1 +1,9 @@ +--- +license_expression: w3c +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/w3c +--- + https://www.opensource.org/licenses/w3c \ No newline at end of file diff --git a/src/licensedcode/data/rules/w3c_url_glc_243.yml b/src/licensedcode/data/rules/w3c_url_glc_243.yml deleted file mode 100644 index 3d0647536f4..00000000000 --- a/src/licensedcode/data/rules/w3c_url_glc_243.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: w3c -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/w3c diff --git a/src/licensedcode/data/rules/warranty-disclaimer.RULE b/src/licensedcode/data/rules/warranty-disclaimer.RULE index b60d8157b71..b235a8b6088 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A diff --git a/src/licensedcode/data/rules/warranty-disclaimer.yml b/src/licensedcode/data/rules/warranty-disclaimer.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_1.RULE b/src/licensedcode/data/rules/warranty-disclaimer_1.RULE index 1ee83d7150f..7fc8d1eb4dd 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_1.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_1.RULE @@ -1,6 +1,11 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + ALL DESIGN SPECIFICATIONS, REFERENCE BOARDS, FILES, DRAWINGS, DIAGNOSTICS, LISTS, AND OTHER DOCUMENTS (TOGETHER AND SEPARATELY, "MATERIALS") ARE BEING PROVIDED "AS IS." MAKES NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF -NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. +NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_1.yml b/src/licensedcode/data/rules/warranty-disclaimer_1.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_10.RULE b/src/licensedcode/data/rules/warranty-disclaimer_10.RULE index af472ca2432..0dd2fc20692 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_10.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +notes: found as rider in some libpng versions +--- + and with the following additions to the disclaimer: There is no warranty against interference with your enjoyment of the diff --git a/src/licensedcode/data/rules/warranty-disclaimer_10.yml b/src/licensedcode/data/rules/warranty-disclaimer_10.yml deleted file mode 100644 index e91503240fd..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -notes: found as rider in some libpng versions diff --git a/src/licensedcode/data/rules/warranty-disclaimer_11.RULE b/src/licensedcode/data/rules/warranty-disclaimer_11.RULE index e6f7bef590d..bcfe7fb5e6e 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_11.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +notes: found as rider in some libpng versions +--- + There is no warranty against interference with your enjoyment of the library or against infringement. There is no warranty that our diff --git a/src/licensedcode/data/rules/warranty-disclaimer_11.yml b/src/licensedcode/data/rules/warranty-disclaimer_11.yml deleted file mode 100644 index e91503240fd..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -notes: found as rider in some libpng versions diff --git a/src/licensedcode/data/rules/warranty-disclaimer_12.RULE b/src/licensedcode/data/rules/warranty-disclaimer_12.RULE index 42159bef1c1..f5ddcc556a8 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_12.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_12.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +notes: found as rider in some libpng versions +--- + The program is provided "as is" without any warranty express or implied, including the warranty of non-infringement and the implied warranties of merchantibility and fitness for a particular purpose. @@ -5,4 +11,4 @@ IBM will not be liable for any damages suffered by you as a result of using the Program. In no event will IBM be liable for any special, indirect or consequential damages or lost profits even if IBM has been advised of the possibility of their occurrence. IBM -will not be liable for any third party claims against you. +will not be liable for any third party claims against you. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_12.yml b/src/licensedcode/data/rules/warranty-disclaimer_12.yml deleted file mode 100644 index e91503240fd..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -notes: found as rider in some libpng versions diff --git a/src/licensedcode/data/rules/warranty-disclaimer_13.RULE b/src/licensedcode/data/rules/warranty-disclaimer_13.RULE index 375befb6b66..34f467e61f6 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_13.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_13.RULE @@ -1,7 +1,12 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +--- + THIS DOCUMENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE AND MERCHANTABILITY WITH RESPECT TO THE INFORMATION IN THIS DOCUMENT. BY FURNISHING THIS DOCUMENT, IBM GRANTS NO LICENSES TO ANY PATENTS OR - COPYRIGHTS. + COPYRIGHTS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_13.yml b/src/licensedcode/data/rules/warranty-disclaimer_13.yml deleted file mode 100644 index 05c7a91b59c..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_13.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_14.RULE b/src/licensedcode/data/rules/warranty-disclaimer_14.RULE index b770cd5eac0..ddd1c09f84e 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_14.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_14.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + Files provided "as is", with no warranties. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_14.yml b/src/licensedcode/data/rules/warranty-disclaimer_14.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_15.RULE b/src/licensedcode/data/rules/warranty-disclaimer_15.RULE index 47474cda829..d431958e176 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_15.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_15.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_reference: yes +relevance: 100 +--- + provided without support or warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_15.yml b/src/licensedcode/data/rules/warranty-disclaimer_15.yml deleted file mode 100644 index 596dcc9f541..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_16.RULE b/src/licensedcode/data/rules/warranty-disclaimer_16.RULE index f315dbdcc15..edb5a44513a 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_16.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_16.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +notes: this is the mit disclaimer +--- + 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 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_16.yml b/src/licensedcode/data/rules/warranty-disclaimer_16.yml deleted file mode 100644 index fec33c208ab..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -notes: this is the mit disclaimer diff --git a/src/licensedcode/data/rules/warranty-disclaimer_17.RULE b/src/licensedcode/data/rules/warranty-disclaimer_17.RULE index 4eed483200e..d5a69e6136f 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_17.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_17.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. EXCEPT AS PROVIDED IN INTEL'S TERMS AND CONDITIONS OF SALE FOR SUCH PRODUCTS, INTEL ASSUMES NO LIABILITY WHATSOEVER, AND INTEL DISCLAIMS ANY EXPRESS OR diff --git a/src/licensedcode/data/rules/warranty-disclaimer_17.yml b/src/licensedcode/data/rules/warranty-disclaimer_17.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_17.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_18.RULE b/src/licensedcode/data/rules/warranty-disclaimer_18.RULE index 146d7bed75a..c747a745ac1 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_18.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_18.RULE @@ -1 +1,7 @@ -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 +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + +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/warranty-disclaimer_18.yml b/src/licensedcode/data/rules/warranty-disclaimer_18.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_19.RULE b/src/licensedcode/data/rules/warranty-disclaimer_19.RULE index 8bc41dbbde8..a0254d5acab 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_19.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_19.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + PKWARE therefore expressly disclaims any warranty that the information contained in the associated materials relating to the subject programs and/or the format of the files created or diff --git a/src/licensedcode/data/rules/warranty-disclaimer_19.yml b/src/licensedcode/data/rules/warranty-disclaimer_19.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_2.RULE b/src/licensedcode/data/rules/warranty-disclaimer_2.RULE index a54897d49af..dfe498d7cc5 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_2.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_2.RULE @@ -1 +1,6 @@ -This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + +This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_2.yml b/src/licensedcode/data/rules/warranty-disclaimer_2.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_20.RULE b/src/licensedcode/data/rules/warranty-disclaimer_20.RULE index 9ad4aeeccab..4ba4366fe40 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_20.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_20.RULE @@ -1 +1,7 @@ +--- +license_expression: unknown +is_license_reference: yes +relevance: 100 +--- + No warranty is implied by distribution under the terms of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_20.yml b/src/licensedcode/data/rules/warranty-disclaimer_20.yml deleted file mode 100644 index f9ec98f29c1..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: unknown -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_21.RULE b/src/licensedcode/data/rules/warranty-disclaimer_21.RULE index e1d91c10e92..def7264c200 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_21.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + DISCLAIMER. EXCEPT AS SPECIFIED IN THIS WARRANTY, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS, AND WARRANTIES INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE, ARE HEREBY EXCLUDED TO THE EXTENT ALLOWED BY APPLICABLE LAW. -IN NO EVENT WILL OR ITS SUPPLIERS BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event shall ''s or its suppliers'' liability to Customer, whether in contract, tort (including negligence), or otherwise, exceed the price paid by Customer. The foregoing limitations shall apply even if the above-stated warranty fails of its essential purpose. SOME STATES DO NOT ALLOW LIMITATION OR EXCLUSION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES. +IN NO EVENT WILL OR ITS SUPPLIERS BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL, OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event shall ''s or its suppliers'' liability to Customer, whether in contract, tort (including negligence), or otherwise, exceed the price paid by Customer. The foregoing limitations shall apply even if the above-stated warranty fails of its essential purpose. SOME STATES DO NOT ALLOW LIMITATION OR EXCLUSION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_21.yml b/src/licensedcode/data/rules/warranty-disclaimer_21.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_22.RULE b/src/licensedcode/data/rules/warranty-disclaimer_22.RULE index 578cae62c45..f534415d7fc 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_22.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_22.RULE @@ -1,2 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + LIMITATION OF LIABILITY -TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE SOFTWARE, SOFTWARE UPDATES, OR SERVICES HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed TWENTY-FIVE DOLLARS ($25.00), whichever amount is greater. The foregoing limitations will apply even if the above stated remedy fails of its essential purpose. +TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE SOFTWARE, SOFTWARE UPDATES, OR SERVICES HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed TWENTY-FIVE DOLLARS ($25.00), whichever amount is greater. The foregoing limitations will apply even if the above stated remedy fails of its essential purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_22.yml b/src/licensedcode/data/rules/warranty-disclaimer_22.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_23.RULE b/src/licensedcode/data/rules/warranty-disclaimer_23.RULE index 5650a6153cb..f40e50cb970 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_23.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_23.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 90 +--- + All Rights Reserved. NO WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_23.yml b/src/licensedcode/data/rules/warranty-disclaimer_23.yml deleted file mode 100644 index f69ec357f06..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_24.RULE b/src/licensedcode/data/rules/warranty-disclaimer_24.RULE index 8071d2f9ac6..dc0515d4194 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_24.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_24.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 90 +--- + NO WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_24.yml b/src/licensedcode/data/rules/warranty-disclaimer_24.yml deleted file mode 100644 index f69ec357f06..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_25.RULE b/src/licensedcode/data/rules/warranty-disclaimer_25.RULE index bcf3a1aba8f..5624a634171 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_25.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_25.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + This code is 'as is' with no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_25.yml b/src/licensedcode/data/rules/warranty-disclaimer_25.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_26.RULE b/src/licensedcode/data/rules/warranty-disclaimer_26.RULE index c6dd2ea9298..656cd4b169f 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_26.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_26.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + You are provided no warranty or support, and all liability is disclaimed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_26.yml b/src/licensedcode/data/rules/warranty-disclaimer_26.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_26.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_27.RULE b/src/licensedcode/data/rules/warranty-disclaimer_27.RULE index 2bd58e2c0d1..ae3f53322e0 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_27.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_27.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + Warning : This library and the associated files are non commercial, non professional work. diff --git a/src/licensedcode/data/rules/warranty-disclaimer_27.yml b/src/licensedcode/data/rules/warranty-disclaimer_27.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_28.RULE b/src/licensedcode/data/rules/warranty-disclaimer_28.RULE index bfdd2cea140..6a5fc0ab23b 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_28.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_28.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and you, diff --git a/src/licensedcode/data/rules/warranty-disclaimer_28.yml b/src/licensedcode/data/rules/warranty-disclaimer_28.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_29.RULE b/src/licensedcode/data/rules/warranty-disclaimer_29.RULE index a34e5a29feb..0882aab9a9e 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_29.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_29.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + //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 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_29.yml b/src/licensedcode/data/rules/warranty-disclaimer_29.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_3.RULE b/src/licensedcode/data/rules/warranty-disclaimer_3.RULE index ec98dda4b5b..c92fa52bf76 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_3.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_3.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +minimum_coverage: 78 +--- + This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_3.yml b/src/licensedcode/data/rules/warranty-disclaimer_3.yml deleted file mode 100644 index 6e0a15c18c7..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -minimum_coverage: 78 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_30.RULE b/src/licensedcode/data/rules/warranty-disclaimer_30.RULE index 857c93c5a95..5839ff574a3 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_30.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_30.RULE @@ -1,3 +1,10 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +notes: a bare Microsoft disclaimer with no explicit grant of license +--- + THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR diff --git a/src/licensedcode/data/rules/warranty-disclaimer_30.yml b/src/licensedcode/data/rules/warranty-disclaimer_30.yml deleted file mode 100644 index 68379ef1174..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_30.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 -notes: a bare Microsoft disclaimer with no explicit grant of license diff --git a/src/licensedcode/data/rules/warranty-disclaimer_31.RULE b/src/licensedcode/data/rules/warranty-disclaimer_31.RULE index 2e23a37c85b..ae4eeb6f81c 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_31.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_31.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + In no event shall be liable to any party for direct, indirect, special, incidental, or consequential damages arising out of the use of this software, its documentation, or any derivatives thereof, even if diff --git a/src/licensedcode/data/rules/warranty-disclaimer_31.yml b/src/licensedcode/data/rules/warranty-disclaimer_31.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_32.RULE b/src/licensedcode/data/rules/warranty-disclaimer_32.RULE index 48ecf3252d9..8f328bf5967 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_32.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_32.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_reference: yes +relevance: 100 +--- + There is no warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_32.yml b/src/licensedcode/data/rules/warranty-disclaimer_32.yml deleted file mode 100644 index 596dcc9f541..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_32.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_33.RULE b/src/licensedcode/data/rules/warranty-disclaimer_33.RULE index 5cbd3a3fc1e..57e7b3ca92d 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_33.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_33.RULE @@ -1 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_reference: yes +relevance: 100 +minimum_coverage: 80 +notes: See https://github.com/google/js-green-licenses/blob/27a0ccd3be190d598c8d7dcf6eb102d87615d2f1/README.md +--- + DISCLAIMER: This tool is NOT a replacement for legal advice or due diligence for your project's license validity. We recommend you consult a lawyer if you want legal advice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_33.yml b/src/licensedcode/data/rules/warranty-disclaimer_33.yml deleted file mode 100644 index 678aa1140dd..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: warranty-disclaimer -is_license_reference: yes -relevance: 100 -minimum_coverage: 80 -notes: See https://github.com/google/js-green-licenses/blob/27a0ccd3be190d598c8d7dcf6eb102d87615d2f1/README.md diff --git a/src/licensedcode/data/rules/warranty-disclaimer_34.RULE b/src/licensedcode/data/rules/warranty-disclaimer_34.RULE index 2e4d6800ae4..5ad9a6d6cf8 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_34.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_34.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + There is absolutely no warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_34.yml b/src/licensedcode/data/rules/warranty-disclaimer_34.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_34.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_35.RULE b/src/licensedcode/data/rules/warranty-disclaimer_35.RULE index 53afef87b4c..2bc3af1b1a5 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_35.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_35.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_reference: yes +relevance: 100 +--- + is distributed "AS IS" under this Licence in the hope that it will be useful, but in order that the University as a charitable foundation protects its assets for the benefit of its educational and diff --git a/src/licensedcode/data/rules/warranty-disclaimer_35.yml b/src/licensedcode/data/rules/warranty-disclaimer_35.yml deleted file mode 100644 index 596dcc9f541..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_35.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_36.RULE b/src/licensedcode/data/rules/warranty-disclaimer_36.RULE index c36940605f2..7a409ec8cee 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_36.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_36.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + distributed with NO WARRANTY OF ANY KIND \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_36.yml b/src/licensedcode/data/rules/warranty-disclaimer_36.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_37.RULE b/src/licensedcode/data/rules/warranty-disclaimer_37.RULE index fa33dab5809..237ba6e88b7 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_37.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_37.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + distributed with NO WARRANTY \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_37.yml b/src/licensedcode/data/rules/warranty-disclaimer_37.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_38.RULE b/src/licensedcode/data/rules/warranty-disclaimer_38.RULE index 8ef53ea8a1e..77f2854df4c 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_38.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_38.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + ## THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_38.yml b/src/licensedcode/data/rules/warranty-disclaimer_38.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_39.RULE b/src/licensedcode/data/rules/warranty-disclaimer_39.RULE index 182d3e47563..3f56573bae0 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_39.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_39.RULE @@ -1,3 +1,10 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +minimum_coverage: 95 +--- + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE diff --git a/src/licensedcode/data/rules/warranty-disclaimer_39.yml b/src/licensedcode/data/rules/warranty-disclaimer_39.yml deleted file mode 100644 index 903d5e3186f..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_39.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_4.RULE b/src/licensedcode/data/rules/warranty-disclaimer_4.RULE index 65dd50f3837..fffcdb68f34 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_4.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + Please note that this software is still under development. The authors are in no way responsible for any damage that may occur, no matter how -inconsequential. +inconsequential. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_4.yml b/src/licensedcode/data/rules/warranty-disclaimer_4.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_40.RULE b/src/licensedcode/data/rules/warranty-disclaimer_40.RULE index 98651752168..4ba2eb6fd0c 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_40.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_40.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + NO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_40.yml b/src/licensedcode/data/rules/warranty-disclaimer_40.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_40.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_41.RULE b/src/licensedcode/data/rules/warranty-disclaimer_41.RULE index 5d493c42830..bae9deba61e 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_41.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_41.RULE @@ -1,2 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + with no warranty, express or implied, as to its usefulness for any purpose \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_41.yml b/src/licensedcode/data/rules/warranty-disclaimer_41.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_42.RULE b/src/licensedcode/data/rules/warranty-disclaimer_42.RULE index 9bd6b47a487..922112a24b2 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_42.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_42.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + DISTIBUTED AS IS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_42.yml b/src/licensedcode/data/rules/warranty-disclaimer_42.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_42.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_43.RULE b/src/licensedcode/data/rules/warranty-disclaimer_43.RULE index d7c96cb2182..ffb37278a64 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_43.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_43.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + This software is provided 'as is' and without any warranty, express or implied. In no event shall the authors be liable for any damages arising from the use of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_43.yml b/src/licensedcode/data/rules/warranty-disclaimer_43.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_44.RULE b/src/licensedcode/data/rules/warranty-disclaimer_44.RULE index 8b03a9d3d9d..da03d1f5ae9 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_44.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_44.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + All past Contributors to the code disclaim all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular diff --git a/src/licensedcode/data/rules/warranty-disclaimer_44.yml b/src/licensedcode/data/rules/warranty-disclaimer_44.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_45.RULE b/src/licensedcode/data/rules/warranty-disclaimer_45.RULE index 0feaf2584c3..b104c6b7c6b 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_45.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_45.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + THE INFORMATION PROVIDED IN THIS MICROSOFT COMMUNICATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/src/licensedcode/data/rules/warranty-disclaimer_45.yml b/src/licensedcode/data/rules/warranty-disclaimer_45.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_46.RULE b/src/licensedcode/data/rules/warranty-disclaimer_46.RULE index 831569229f9..c9b9e752be1 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_46.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_46.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + This Software package is provided as is and without any expressed or implied warranties, including without limitation, the implied warranties of merchantability and fitness for a particular purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_46.yml b/src/licensedcode/data/rules/warranty-disclaimer_46.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_47.RULE b/src/licensedcode/data/rules/warranty-disclaimer_47.RULE index 8722caa75d8..5f312522830 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_47.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_47.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + no warranty of any kind, either expressed or implied \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_47.yml b/src/licensedcode/data/rules/warranty-disclaimer_47.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_47.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_48.RULE b/src/licensedcode/data/rules/warranty-disclaimer_48.RULE index 032ca2a4c44..599486a6ceb 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_48.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_48.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY diff --git a/src/licensedcode/data/rules/warranty-disclaimer_48.yml b/src/licensedcode/data/rules/warranty-disclaimer_48.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_49.RULE b/src/licensedcode/data/rules/warranty-disclaimer_49.RULE index 7ff605864f7..bad6cad457b 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_49.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_49.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + The package and its code is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESSED OR IMPLIED ARE HEREBY DISCLAIMED. This includes but is not limited to diff --git a/src/licensedcode/data/rules/warranty-disclaimer_49.yml b/src/licensedcode/data/rules/warranty-disclaimer_49.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_5.RULE b/src/licensedcode/data/rules/warranty-disclaimer_5.RULE index 2eccbe15e80..041aa65e80e 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_5.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_5.RULE @@ -1,4 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + .. warning:: I shall not be held responsible for any damage or harm caused if you try to - send data to your I-Force device based on what you read in this document. + send data to your I-Force device based on what you read in this document. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_5.yml b/src/licensedcode/data/rules/warranty-disclaimer_5.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_50.RULE b/src/licensedcode/data/rules/warranty-disclaimer_50.RULE index 5552142f6f0..09989285f0b 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_50.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_50.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + provided "as is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_50.yml b/src/licensedcode/data/rules/warranty-disclaimer_50.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_51.RULE b/src/licensedcode/data/rules/warranty-disclaimer_51.RULE index 14376c1b496..c063090c961 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_51.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_51.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + is distributed with no warranty whatever. The author and any other contributors take no responsibility for the consequences of its use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_51.yml b/src/licensedcode/data/rules/warranty-disclaimer_51.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_51.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_52.RULE b/src/licensedcode/data/rules/warranty-disclaimer_52.RULE index 8f6c67ae017..fb273bbd8a7 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_52.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_52.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + distributed with no warranty whatever. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_52.yml b/src/licensedcode/data/rules/warranty-disclaimer_52.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_53.RULE b/src/licensedcode/data/rules/warranty-disclaimer_53.RULE index 9d6c2b8329c..46224332165 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_53.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_53.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + distributed with no warranty whatsoever. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_53.yml b/src/licensedcode/data/rules/warranty-disclaimer_53.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_53.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_54.RULE b/src/licensedcode/data/rules/warranty-disclaimer_54.RULE index 93faa6ef9c1..09c048c82a2 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_54.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_54.RULE @@ -1,2 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD ipfilter +--- + The author accepts no responsibility for the use of this software and provides it on an ``as is'' basis without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_54.yml b/src/licensedcode/data/rules/warranty-disclaimer_54.yml deleted file mode 100644 index 8fb525afc22..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_54.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD ipfilter diff --git a/src/licensedcode/data/rules/warranty-disclaimer_55.RULE b/src/licensedcode/data/rules/warranty-disclaimer_55.RULE index d1fdb941881..c31453cf67c 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_55.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_55.RULE @@ -1,2 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +notes: typically for GPL but this can vary and be various versions +--- + This project is free software. There is no warranty; not even for merchantability or fitness for a particular purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_55.yml b/src/licensedcode/data/rules/warranty-disclaimer_55.yml deleted file mode 100644 index a237b992431..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -notes: typically for GPL but this can vary and be various versions diff --git a/src/licensedcode/data/rules/warranty-disclaimer_56.RULE b/src/licensedcode/data/rules/warranty-disclaimer_56.RULE index fbad1ce075d..b49cb60df4b 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_56.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_56.RULE @@ -1,2 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + THIS CODE IS SUPPLIED AS IS, WITH NO WARRANTY OF ANY KIND. USE AT YOUR OWN RISK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_56.yml b/src/licensedcode/data/rules/warranty-disclaimer_56.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_57.RULE b/src/licensedcode/data/rules/warranty-disclaimer_57.RULE index ee844135abd..6263da4e487 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_57.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_57.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + This is free software with ABSOLUTELY NO WARRANTY \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_57.yml b/src/licensedcode/data/rules/warranty-disclaimer_57.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_58.RULE b/src/licensedcode/data/rules/warranty-disclaimer_58.RULE index 185faf711ac..ccbd65a8002 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_58.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_58.RULE @@ -1,3 +1,10 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +minimum_coverage: 70 +--- + Apple Computer, Inc. ("Apple") makes no warranty or representation, either express or implied, with respect to this document and the included data, its quality, accuracy, or fitness for a particular diff --git a/src/licensedcode/data/rules/warranty-disclaimer_58.yml b/src/licensedcode/data/rules/warranty-disclaimer_58.yml deleted file mode 100644 index 7de993da649..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_58.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_59.RULE b/src/licensedcode/data/rules/warranty-disclaimer_59.RULE index 99ceec508be..8f70c9f5b82 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_59.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_59.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + provided "as-is" and without warranty of any kind, express, implied or otherwise, including without limitation, any warranty of merchantability or fitness for a particular purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_59.yml b/src/licensedcode/data/rules/warranty-disclaimer_59.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_6.RULE b/src/licensedcode/data/rules/warranty-disclaimer_6.RULE index f7bc135da8b..60c58ebd579 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_6.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + This is not a product of , and is provided "as is", without warranty of any kind expressed or implied including, but not -limited to, the suitability of this script for any purpose. +limited to, the suitability of this script for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_6.yml b/src/licensedcode/data/rules/warranty-disclaimer_6.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_60.RULE b/src/licensedcode/data/rules/warranty-disclaimer_60.RULE index 0e4d51dc31c..3afa312e6a1 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_60.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_60.RULE @@ -1,2 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + {{provided "as-is" and without warranty of any kind}}, express, implied or otherwise, including without limitation, any warranty of merchantability or fitness for a particular purpose. -In no event shall the author of this software be held liable for data loss, damages, loss of profits or any other kind of loss while using or misusing this software. +In no event shall the author of this software be held liable for data loss, damages, loss of profits or any other kind of loss while using or misusing this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_60.yml b/src/licensedcode/data/rules/warranty-disclaimer_60.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_60.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_61.RULE b/src/licensedcode/data/rules/warranty-disclaimer_61.RULE index d38500d340e..5e878a16909 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_61.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_61.RULE @@ -1,2 +1,10 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License +--- + This file is distributed WITHOUT ANY WARRANTY. See the file 'License' for details on this and other legal matters. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_61.yml b/src/licensedcode/data/rules/warranty-disclaimer_61.yml deleted file mode 100644 index b7eb0123cea..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License diff --git a/src/licensedcode/data/rules/warranty-disclaimer_62.RULE b/src/licensedcode/data/rules/warranty-disclaimer_62.RULE index 8fb8bbdaab7..1c3210e6e2f 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_62.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_62.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + There is no warranty whatsoever. Use at your own risk \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_62.yml b/src/licensedcode/data/rules/warranty-disclaimer_62.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_62.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_63.RULE b/src/licensedcode/data/rules/warranty-disclaimer_63.RULE index f4aa073a20b..f9b37feb36e 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_63.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_63.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + There is no warranty whatsoever. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_63.yml b/src/licensedcode/data/rules/warranty-disclaimer_63.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_64.RULE b/src/licensedcode/data/rules/warranty-disclaimer_64.RULE index b34068dfd65..431a9da8701 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_64.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_64.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + Use at your own risk \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_64.yml b/src/licensedcode/data/rules/warranty-disclaimer_64.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_64.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_65.RULE b/src/licensedcode/data/rules/warranty-disclaimer_65.RULE index 4b33d38f114..62706076419 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_65.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_65.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + disclaims all warranties with regard to this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_65.yml b/src/licensedcode/data/rules/warranty-disclaimer_65.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_65.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_66.RULE b/src/licensedcode/data/rules/warranty-disclaimer_66.RULE index a6c9866b44f..d511f0b006f 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_66.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_66.RULE @@ -1,3 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_66.yml b/src/licensedcode/data/rules/warranty-disclaimer_66.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_67.RULE b/src/licensedcode/data/rules/warranty-disclaimer_67.RULE index 84a64a0a7da..d36c01910ca 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_67.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_67.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + distributed without any expressed or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_67.yml b/src/licensedcode/data/rules/warranty-disclaimer_67.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_67.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_68.RULE b/src/licensedcode/data/rules/warranty-disclaimer_68.RULE index 5c99bc70042..54588a074be 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_68.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_68.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + This file is distributed without any expressed or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_68.yml b/src/licensedcode/data/rules/warranty-disclaimer_68.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_68.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_69.RULE b/src/licensedcode/data/rules/warranty-disclaimer_69.RULE index e1eaa62418e..56544d934e7 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_69.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_69.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + The file is distributed as is, without any warranty of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_69.yml b/src/licensedcode/data/rules/warranty-disclaimer_69.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_7.RULE b/src/licensedcode/data/rules/warranty-disclaimer_7.RULE index dc3b70911f4..a231e9dc10b 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_7.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + is provided "as is", without warranty of any kind expressed or implied including, but not -limited to, the suitability of this script for any purpose. +limited to, the suitability of this script for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_7.yml b/src/licensedcode/data/rules/warranty-disclaimer_7.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_70.RULE b/src/licensedcode/data/rules/warranty-disclaimer_70.RULE index cf49e84d5a1..4810ee2b40f 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_70.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_70.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + Distribution: The file is distributed as is, without any warranty of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_70.yml b/src/licensedcode/data/rules/warranty-disclaimer_70.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_71.RULE b/src/licensedcode/data/rules/warranty-disclaimer_71.RULE index d5d41eb42b1..507aa171e06 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_71.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_71.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + Disclaimer The authors of this github are not responsible for misuse or for any damage that you may cause! diff --git a/src/licensedcode/data/rules/warranty-disclaimer_71.yml b/src/licensedcode/data/rules/warranty-disclaimer_71.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_71.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_72.RULE b/src/licensedcode/data/rules/warranty-disclaimer_72.RULE index 1010c5e41c9..6d81cb4521e 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_72.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_72.RULE @@ -1 +1,6 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +--- + THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_72.yml b/src/licensedcode/data/rules/warranty-disclaimer_72.yml deleted file mode 100644 index 05c7a91b59c..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_72.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_73.RULE b/src/licensedcode/data/rules/warranty-disclaimer_73.RULE index 93d534d757d..17bed876c22 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_73.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_73.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +--- + DISCLAIMER OF WARRANTIES THE SPECIFICATION IS PROVIDED "AS IS".  BEA MAKES NO REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, diff --git a/src/licensedcode/data/rules/warranty-disclaimer_73.yml b/src/licensedcode/data/rules/warranty-disclaimer_73.yml deleted file mode 100644 index 05c7a91b59c..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_73.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_74.RULE b/src/licensedcode/data/rules/warranty-disclaimer_74.RULE index 61d6acbb484..d60f15d8f4b 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_74.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_74.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + No warranty is attached; we cannot take responsibility for errors or fitness for use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_74.yml b/src/licensedcode/data/rules/warranty-disclaimer_74.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_74.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_75.RULE b/src/licensedcode/data/rules/warranty-disclaimer_75.RULE index 70c7128ee82..39da95a52c6 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_75.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_75.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +--- + WARRANTY THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT diff --git a/src/licensedcode/data/rules/warranty-disclaimer_75.yml b/src/licensedcode/data/rules/warranty-disclaimer_75.yml deleted file mode 100644 index 05c7a91b59c..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_75.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_76.RULE b/src/licensedcode/data/rules/warranty-disclaimer_76.RULE index 105075abcff..16409d38d2d 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_76.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_76.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + code may have bugs -- use at your own risk \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_76.yml b/src/licensedcode/data/rules/warranty-disclaimer_76.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_77.RULE b/src/licensedcode/data/rules/warranty-disclaimer_77.RULE index 3f45d06bbbb..bc0d042e7f0 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_77.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_77.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + no warranty implied; use at your own risk \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_77.yml b/src/licensedcode/data/rules/warranty-disclaimer_77.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_77.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_78.RULE b/src/licensedcode/data/rules/warranty-disclaimer_78.RULE index 72458aebee4..ecd3fa0f91c 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_78.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_78.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_78.yml b/src/licensedcode/data/rules/warranty-disclaimer_78.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_78.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_79.RULE b/src/licensedcode/data/rules/warranty-disclaimer_79.RULE index 47195782581..af9afd40873 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_79.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_79.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + All materials are made available on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. Do not remove or modify any license notices. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_79.yml b/src/licensedcode/data/rules/warranty-disclaimer_79.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_79.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_8.RULE b/src/licensedcode/data/rules/warranty-disclaimer_8.RULE index 57012faf71a..2a896b06347 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_8.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +minimum_coverage: 80 +notes: found in AgentPP/AngentPro an SNMP commercial product +--- + 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. @@ -8,4 +15,4 @@ 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. + POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_8.yml b/src/licensedcode/data/rules/warranty-disclaimer_8.yml deleted file mode 100644 index 8aad0cb1e81..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -minimum_coverage: 80 -notes: found in AgentPP/AngentPro an SNMP commercial product diff --git a/src/licensedcode/data/rules/warranty-disclaimer_80.RULE b/src/licensedcode/data/rules/warranty-disclaimer_80.RULE index 44eead987f8..be872ba2df6 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_80.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_80.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + Such code is provided "as is" and Autodesk, Inc. disclaims any and all warranties, whether express or implied, including without limitation the implied warranties of merchantability, fitness for a particular purpose or non-infringement of diff --git a/src/licensedcode/data/rules/warranty-disclaimer_80.yml b/src/licensedcode/data/rules/warranty-disclaimer_80.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_80.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_81.RULE b/src/licensedcode/data/rules/warranty-disclaimer_81.RULE index 4952a439d6a..3091adc5064 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_81.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_81.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + While we certainly hope this software is useful, none of the authors or contributors place any guarantees as to the accuracy of the data or the results returned by using this library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_81.yml b/src/licensedcode/data/rules/warranty-disclaimer_81.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_81.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_82.RULE b/src/licensedcode/data/rules/warranty-disclaimer_82.RULE index 9c64cf46650..43f32ea7899 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_82.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_82.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + 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 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_82.yml b/src/licensedcode/data/rules/warranty-disclaimer_82.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_82.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_83.RULE b/src/licensedcode/data/rules/warranty-disclaimer_83.RULE index 88cd8b5208c..8acba34d1d3 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_83.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_83.RULE @@ -1 +1,6 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + This utility is provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_83.yml b/src/licensedcode/data/rules/warranty-disclaimer_83.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_83.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_84.RULE b/src/licensedcode/data/rules/warranty-disclaimer_84.RULE index ac44db3807a..d55172b3e66 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_84.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_84.RULE @@ -1,3 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + The authors assume no liability for damages or loss of revenue resulting from the use of any of the software herein. The software is supplied "as is" and carries no warranty, actual or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_84.yml b/src/licensedcode/data/rules/warranty-disclaimer_84.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_84.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_85.RULE b/src/licensedcode/data/rules/warranty-disclaimer_85.RULE index 8bdc3daf592..e6fa7b3a755 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_85.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_85.RULE @@ -1,2 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +notes: See https://github.com/nerses73/epics/blob/3ba865e6af4ff914d15969b40f7b91b2496b22d5/qt/QtDM_3_4_2_orig_build/caQtDM_QtControls/src/caVisibPrivate.h#L4 +--- + // Disclaimer: neither PSI, nor any of their employees makes any warranty // or assumes any legal liability or responsibility for the use of this software \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_85.yml b/src/licensedcode/data/rules/warranty-disclaimer_85.yml deleted file mode 100644 index 809dbb3c3d0..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -notes: See https://github.com/nerses73/epics/blob/3ba865e6af4ff914d15969b40f7b91b2496b22d5/qt/QtDM_3_4_2_orig_build/caQtDM_QtControls/src/caVisibPrivate.h#L4 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_9.RULE b/src/licensedcode/data/rules/warranty-disclaimer_9.RULE index b72b16a06ee..17cb7a89756 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_9.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_9.RULE @@ -1,7 +1,12 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +--- + {{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 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. +OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_9.yml b/src/licensedcode/data/rules/warranty-disclaimer_9.yml deleted file mode 100644 index 53cb3cb0287..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes diff --git a/src/licensedcode/data/rules/warranty-disclaimer_and_unknown-license-reference_1.RULE b/src/licensedcode/data/rules/warranty-disclaimer_and_unknown-license-reference_1.RULE index 83ccc7f07c1..29ad2a213e5 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_and_unknown-license-reference_1.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_and_unknown-license-reference_1.RULE @@ -1 +1,10 @@ +--- +license_expression: warranty-disclaimer AND unknown-license-reference +is_license_reference: yes +relevance: 100 +referenced_filenames: + - COPYING + - COPYING.LIB +--- + There is no warranty - see COPYING and COPYING.LIB. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_and_unknown-license-reference_1.yml b/src/licensedcode/data/rules/warranty-disclaimer_and_unknown-license-reference_1.yml deleted file mode 100644 index aef4cd7c160..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_and_unknown-license-reference_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: warranty-disclaimer AND unknown-license-reference -is_license_reference: yes -relevance: 100 -referenced_filenames: - - COPYING - - COPYING.LIB diff --git a/src/licensedcode/data/rules/warranty-disclaimer_draeger.RULE b/src/licensedcode/data/rules/warranty-disclaimer_draeger.RULE index b1cded6fa9e..a1a099ce5cb 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_draeger.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_draeger.RULE @@ -1,2 +1,8 @@ +--- +license_expression: warranty-disclaimer +is_license_text: yes +relevance: 100 +--- + The copyright holders grant no guarantees and hold no liability for free and open source software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_draeger.yml b/src/licensedcode/data/rules/warranty-disclaimer_draeger.yml deleted file mode 100644 index 3bf0969221d..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_draeger.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_french_1.RULE b/src/licensedcode/data/rules/warranty-disclaimer_french_1.RULE index 4f7bbad9e42..3d22e9274bd 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_french_1.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_french_1.RULE @@ -1 +1,9 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 80 +minimum_coverage: 90 +notes: in french +--- + Ce logiciel est fourni tel quel sans aucune garantie \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_french_1.yml b/src/licensedcode/data/rules/warranty-disclaimer_french_1.yml deleted file mode 100644 index 180a27dc637..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_french_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 80 -minimum_coverage: 90 -notes: in french diff --git a/src/licensedcode/data/rules/warranty-disclaimer_mit_58.RULE b/src/licensedcode/data/rules/warranty-disclaimer_mit_58.RULE index 787dd78fcba..3fd8573ca01 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_mit_58.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_mit_58.RULE @@ -1,5 +1,11 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +minimum_coverage: 80 +--- + * DISCLAIMER. THIS PROGRAM IS PROVIDED TO YOU "AS IS" WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER ORAL OR WRITTEN, * EXPRESS OR IMPLIED. THE OWNERs SPECIFICALLY DISCLAIMS ANY IMPLIED * WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, -* NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. +* NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_mit_58.yml b/src/licensedcode/data/rules/warranty-disclaimer_mit_58.yml deleted file mode 100644 index acf996926fa..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_mit_58.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_not_unknown_1.RULE b/src/licensedcode/data/rules/warranty-disclaimer_not_unknown_1.RULE index 41bd4edf0e6..08d81207260 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_not_unknown_1.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_not_unknown_1.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_notice: yes +relevance: 100 +--- + This software is provided AS-IS with no warranty, either express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_not_unknown_1.yml b/src/licensedcode/data/rules/warranty-disclaimer_not_unknown_1.yml deleted file mode 100644 index 724a6881299..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_not_unknown_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/warranty-disclaimer_unknown_46.RULE b/src/licensedcode/data/rules/warranty-disclaimer_unknown_46.RULE index 4811dadf7e8..c2ef47248dd 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_unknown_46.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_unknown_46.RULE @@ -1 +1,7 @@ +--- +license_expression: warranty-disclaimer +is_license_reference: yes +relevance: 100 +--- + Please keep this disclaimer with my code if you use it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_unknown_46.yml b/src/licensedcode/data/rules/warranty-disclaimer_unknown_46.yml deleted file mode 100644 index 596dcc9f541..00000000000 --- a/src/licensedcode/data/rules/warranty-disclaimer_unknown_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: warranty-disclaimer -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/whistle.RULE b/src/licensedcode/data/rules/whistle.RULE index 43341cc51be..c939a03c888 100644 --- a/src/licensedcode/data/rules/whistle.RULE +++ b/src/licensedcode/data/rules/whistle.RULE @@ -1,3 +1,17 @@ +--- +license_expression: whistle +is_license_text: yes +notes: Full text of whistle +ignorable_copyrights: + - Copyright (c) 1996-1999 Whistle Communications, Inc. +ignorable_holders: + - Whistle Communications, Inc. +ignorable_authors: + - Julian Elischer +ignorable_emails: + - julian@freebsd.org +--- + * Copyright (c) 1996-1999 Whistle Communications, Inc. * All rights reserved. * diff --git a/src/licensedcode/data/rules/whistle.yml b/src/licensedcode/data/rules/whistle.yml deleted file mode 100644 index 0921bf2c4eb..00000000000 --- a/src/licensedcode/data/rules/whistle.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: whistle -is_license_text: yes -notes: Full text of whistle -ignorable_copyrights: - - Copyright (c) 1996-1999 Whistle Communications, Inc. -ignorable_holders: - - Whistle Communications, Inc. -ignorable_authors: - - Julian Elischer -ignorable_emails: - - julian@freebsd.org diff --git a/src/licensedcode/data/rules/wifi-alliance.RULE b/src/licensedcode/data/rules/wifi-alliance.RULE index cef5cfbcfd0..3b0a9248a67 100644 --- a/src/licensedcode/data/rules/wifi-alliance.RULE +++ b/src/licensedcode/data/rules/wifi-alliance.RULE @@ -1,3 +1,10 @@ +--- +license_expression: wifi-alliance +is_license_text: yes +ignorable_authors: + - permission from Wi-Fi Alliance +--- + License is granted only to Wi-Fi Alliance members and designated Wi-Fi contractors and, unless otherwise expressly authorized in writing by the Wi-Fi Alliance, is limited for use solely in testing Wi-Fi equipment in diff --git a/src/licensedcode/data/rules/wifi-alliance.yml b/src/licensedcode/data/rules/wifi-alliance.yml deleted file mode 100644 index 0362b474476..00000000000 --- a/src/licensedcode/data/rules/wifi-alliance.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: wifi-alliance -is_license_text: yes -ignorable_authors: - - permission from Wi-Fi Alliance diff --git a/src/licensedcode/data/rules/wince-50-shared-source.RULE b/src/licensedcode/data/rules/wince-50-shared-source.RULE index 54463d0a68f..55ad9e24706 100644 --- a/src/licensedcode/data/rules/wince-50-shared-source.RULE +++ b/src/licensedcode/data/rules/wince-50-shared-source.RULE @@ -1 +1,9 @@ +--- +license_expression: wince-50-shared-source +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx +--- + http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx \ No newline at end of file diff --git a/src/licensedcode/data/rules/wince-50-shared-source.yml b/src/licensedcode/data/rules/wince-50-shared-source.yml deleted file mode 100644 index ea53edb16cf..00000000000 --- a/src/licensedcode/data/rules/wince-50-shared-source.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wince-50-shared-source -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://msdn.microsoft.com/en-us/windowsembedded/aa714524.aspx diff --git a/src/licensedcode/data/rules/wingo.RULE b/src/licensedcode/data/rules/wingo.RULE index c39a7a509cb..4e9302ff152 100644 --- a/src/licensedcode/data/rules/wingo.RULE +++ b/src/licensedcode/data/rules/wingo.RULE @@ -1 +1,9 @@ +--- +license_expression: wingo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.wingo.com/jt_/jt_license.html +--- + http://www.wingo.com/jt_/jt_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/wingo.yml b/src/licensedcode/data/rules/wingo.yml deleted file mode 100644 index f3259ccd883..00000000000 --- a/src/licensedcode/data/rules/wingo.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wingo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.wingo.com/jt_/jt_license.html diff --git a/src/licensedcode/data/rules/wingo_1.RULE b/src/licensedcode/data/rules/wingo_1.RULE index 503ff62548e..8e65280061b 100644 --- a/src/licensedcode/data/rules/wingo_1.RULE +++ b/src/licensedcode/data/rules/wingo_1.RULE @@ -1 +1,9 @@ +--- +license_expression: wingo +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.wingo.com/jt_/license.html +--- + http://www.wingo.com/jt_/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/wingo_1.yml b/src/licensedcode/data/rules/wingo_1.yml deleted file mode 100644 index 7b73f100257..00000000000 --- a/src/licensedcode/data/rules/wingo_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wingo -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.wingo.com/jt_/license.html diff --git a/src/licensedcode/data/rules/wordnet_1.RULE b/src/licensedcode/data/rules/wordnet_1.RULE index 27783932b92..68692a08d97 100644 --- a/src/licensedcode/data/rules/wordnet_1.RULE +++ b/src/licensedcode/data/rules/wordnet_1.RULE @@ -1,3 +1,12 @@ +--- +license_expression: wordnet +is_license_text: yes +ignorable_copyrights: + - Copyright by Princeton University +ignorable_holders: + - Princeton University +--- + Permission to use, copy, modify and distribute this software and database and its documentation for any purpose and without fee or royalty is hereby granted, provided that you agree to comply with @@ -21,4 +30,4 @@ The name of Princeton University or Princeton may not be used in advertising or publicity pertaining to distribution of the software and/or database. Title to copyright in this software, database and any associated documentation shall at all times remain with -Princeton University and LICENSEE agrees to preserve same. +Princeton University and LICENSEE agrees to preserve same. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wordnet_1.yml b/src/licensedcode/data/rules/wordnet_1.yml deleted file mode 100644 index 4980c273740..00000000000 --- a/src/licensedcode/data/rules/wordnet_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wordnet -is_license_text: yes -ignorable_copyrights: - - Copyright by Princeton University -ignorable_holders: - - Princeton University diff --git a/src/licensedcode/data/rules/wordnet_2.RULE b/src/licensedcode/data/rules/wordnet_2.RULE index 5a87d59c3c7..60cb0ba80e1 100644 --- a/src/licensedcode/data/rules/wordnet_2.RULE +++ b/src/licensedcode/data/rules/wordnet_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: wordnet +is_license_notice: yes +relevance: 90 +notes: This is a truncated text +--- + Permission to use, copy, modify and distribute this software and database and its documentation for any purpose and without fee or royalty is hereby granted, provided that you agree to comply with diff --git a/src/licensedcode/data/rules/wordnet_2.yml b/src/licensedcode/data/rules/wordnet_2.yml deleted file mode 100644 index cbd39c0220d..00000000000 --- a/src/licensedcode/data/rules/wordnet_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: wordnet -is_license_notice: yes -relevance: 90 -notes: This is a truncated text diff --git a/src/licensedcode/data/rules/wordnet_3.RULE b/src/licensedcode/data/rules/wordnet_3.RULE index e3b58cfb75b..5f0e5d3cf78 100644 --- a/src/licensedcode/data/rules/wordnet_3.RULE +++ b/src/licensedcode/data/rules/wordnet_3.RULE @@ -1,3 +1,13 @@ +--- +license_expression: wordnet +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright by Princeton University +ignorable_holders: + - Princeton University +--- + Permission to use, copy, modify and distribute this software and database and its documentation for any purpose and without fee or royalty is hereby granted, provided that you agree to comply with diff --git a/src/licensedcode/data/rules/wordnet_3.yml b/src/licensedcode/data/rules/wordnet_3.yml deleted file mode 100644 index 962c2a8c388..00000000000 --- a/src/licensedcode/data/rules/wordnet_3.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: wordnet -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright by Princeton University -ignorable_holders: - - Princeton University diff --git a/src/licensedcode/data/rules/wordnet_4.RULE b/src/licensedcode/data/rules/wordnet_4.RULE index 4b4bdf2f3f0..f7d152d1aef 100644 --- a/src/licensedcode/data/rules/wordnet_4.RULE +++ b/src/licensedcode/data/rules/wordnet_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: wordnet +is_license_text: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip +ignorable_copyrights: + - Copyright 1997 by Princeton University +ignorable_holders: + - Princeton University +--- + This software and database is being provided to you, the LICENSEE, by Princeton University under the following license. By obtaining, using and/or copying this software and database, you agree that you diff --git a/src/licensedcode/data/rules/wordnet_4.yml b/src/licensedcode/data/rules/wordnet_4.yml deleted file mode 100644 index b9a6c3b6779..00000000000 --- a/src/licensedcode/data/rules/wordnet_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: wordnet -is_license_text: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip -ignorable_copyrights: - - Copyright 1997 by Princeton University -ignorable_holders: - - Princeton University diff --git a/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_1.RULE b/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_1.RULE index ed085346d20..17639086bac 100644 --- a/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_1.RULE @@ -1,2 +1,14 @@ +--- +license_expression: wordnet AND public-domain AND other-permissive +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip + and https://web.archive.org/web/20140610003726/http://wordlist.aspell.net/scowl-readme +ignorable_copyrights: + - copyright of SCOWL. +ignorable_holders: + - SCOWL +--- + The English dictionaries come directly from SCOWL and is thus under the same copyright of SCOWL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_1.yml b/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_1.yml deleted file mode 100644 index 83be83f01d4..00000000000 --- a/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: wordnet AND public-domain AND other-permissive -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip - and https://web.archive.org/web/20140610003726/http://wordlist.aspell.net/scowl-readme -ignorable_copyrights: - - copyright of SCOWL. -ignorable_holders: - - SCOWL diff --git a/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_2.RULE b/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_2.RULE index 9fe16ed314e..96a31ff9c01 100644 --- a/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_2.RULE @@ -1 +1,9 @@ +--- +license_expression: wordnet AND public-domain AND other-permissive +is_license_notice: yes +relevance: 100 +notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip + and https://web.archive.org/web/20140610003726/http://wordlist.aspell.net/scowl-readme +--- + dictionaries derived from SCOWL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_2.yml b/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_2.yml deleted file mode 100644 index d225f6be746..00000000000 --- a/src/licensedcode/data/rules/wordnet_and_public-domain_and_other-permissive_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wordnet AND public-domain AND other-permissive -is_license_notice: yes -relevance: 100 -notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip - and https://web.archive.org/web/20140610003726/http://wordlist.aspell.net/scowl-readme diff --git a/src/licensedcode/data/rules/wrox.RULE b/src/licensedcode/data/rules/wrox.RULE index 1cb816bd563..2bd0a1706a8 100644 --- a/src/licensedcode/data/rules/wrox.RULE +++ b/src/licensedcode/data/rules/wrox.RULE @@ -1 +1,9 @@ +--- +license_expression: wrox +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms +--- + http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/wrox.yml b/src/licensedcode/data/rules/wrox.yml deleted file mode 100644 index 4157b419f5d..00000000000 --- a/src/licensedcode/data/rules/wrox.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wrox -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.wrox.com/WileyCDA/Section/Wrox-Download-Code-FAQ.id-106010.html#terms diff --git a/src/licensedcode/data/rules/ws-addressing-spec_1.RULE b/src/licensedcode/data/rules/ws-addressing-spec_1.RULE index e1a810be68c..a0350cc9687 100644 --- a/src/licensedcode/data/rules/ws-addressing-spec_1.RULE +++ b/src/licensedcode/data/rules/ws-addressing-spec_1.RULE @@ -1,3 +1,15 @@ +--- +license_expression: ws-addressing-spec +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 2002-2004 BEA Systems Inc., International Business Machines Corporation, + Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc +ignorable_holders: + - BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, + Inc, SAP AG, and Sun Microsystems, Inc +--- + Copyright © 2002-2004 BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc.. All rights reserved. diff --git a/src/licensedcode/data/rules/ws-addressing-spec_1.yml b/src/licensedcode/data/rules/ws-addressing-spec_1.yml deleted file mode 100644 index bfba156ac05..00000000000 --- a/src/licensedcode/data/rules/ws-addressing-spec_1.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: ws-addressing-spec -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 2002-2004 BEA Systems Inc., International Business Machines Corporation, - Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc -ignorable_holders: - - BEA Systems Inc., International Business Machines Corporation, Microsoft Corporation, - Inc, SAP AG, and Sun Microsystems, Inc diff --git a/src/licensedcode/data/rules/wsuipa_1.RULE b/src/licensedcode/data/rules/wsuipa_1.RULE index 4b20c3f7301..1785b160b3e 100644 --- a/src/licensedcode/data/rules/wsuipa_1.RULE +++ b/src/licensedcode/data/rules/wsuipa_1.RULE @@ -1 +1,10 @@ +--- +license_expression: wsuipa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Wsuipa License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_1.yml b/src/licensedcode/data/rules/wsuipa_1.yml deleted file mode 100644 index 5a73d77e819..00000000000 --- a/src/licensedcode/data/rules/wsuipa_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wsuipa_10.RULE b/src/licensedcode/data/rules/wsuipa_10.RULE index 5cf255d119e..71a648e22f9 100644 --- a/src/licensedcode/data/rules/wsuipa_10.RULE +++ b/src/licensedcode/data/rules/wsuipa_10.RULE @@ -1 +1,9 @@ +--- +license_expression: wsuipa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Wsuipa +--- + LICENSE {{Wsuipa}} https://spdx.org/licenses/Wsuipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_10.yml b/src/licensedcode/data/rules/wsuipa_10.yml deleted file mode 100644 index 6d43a4f698e..00000000000 --- a/src/licensedcode/data/rules/wsuipa_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Wsuipa diff --git a/src/licensedcode/data/rules/wsuipa_11.RULE b/src/licensedcode/data/rules/wsuipa_11.RULE index f98aa87c9da..f3e38bb9750 100644 --- a/src/licensedcode/data/rules/wsuipa_11.RULE +++ b/src/licensedcode/data/rules/wsuipa_11.RULE @@ -1 +1,9 @@ +--- +license_expression: wsuipa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Wsuipa +--- + {{Wsuipa}} https://spdx.org/licenses/Wsuipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_11.yml b/src/licensedcode/data/rules/wsuipa_11.yml deleted file mode 100644 index 6d43a4f698e..00000000000 --- a/src/licensedcode/data/rules/wsuipa_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Wsuipa diff --git a/src/licensedcode/data/rules/wsuipa_2.RULE b/src/licensedcode/data/rules/wsuipa_2.RULE index 13bed743d0b..6e33accc945 100644 --- a/src/licensedcode/data/rules/wsuipa_2.RULE +++ b/src/licensedcode/data/rules/wsuipa_2.RULE @@ -1 +1,10 @@ +--- +license_expression: wsuipa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Wsuipa License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_2.yml b/src/licensedcode/data/rules/wsuipa_2.yml deleted file mode 100644 index 5a73d77e819..00000000000 --- a/src/licensedcode/data/rules/wsuipa_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wsuipa_3.RULE b/src/licensedcode/data/rules/wsuipa_3.RULE index 3b90e285bae..b3fc5759639 100644 --- a/src/licensedcode/data/rules/wsuipa_3.RULE +++ b/src/licensedcode/data/rules/wsuipa_3.RULE @@ -1 +1,10 @@ +--- +license_expression: wsuipa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Wsuipa Wsuipa License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_3.yml b/src/licensedcode/data/rules/wsuipa_3.yml deleted file mode 100644 index 5a73d77e819..00000000000 --- a/src/licensedcode/data/rules/wsuipa_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wsuipa_4.RULE b/src/licensedcode/data/rules/wsuipa_4.RULE index f2f760867b5..f9a33c41a56 100644 --- a/src/licensedcode/data/rules/wsuipa_4.RULE +++ b/src/licensedcode/data/rules/wsuipa_4.RULE @@ -1 +1,10 @@ +--- +license_expression: wsuipa +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Wsuipa License Wsuipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_4.yml b/src/licensedcode/data/rules/wsuipa_4.yml deleted file mode 100644 index 5a73d77e819..00000000000 --- a/src/licensedcode/data/rules/wsuipa_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wsuipa_5.RULE b/src/licensedcode/data/rules/wsuipa_5.RULE index a9f9c55a745..2330cdcfc83 100644 --- a/src/licensedcode/data/rules/wsuipa_5.RULE +++ b/src/licensedcode/data/rules/wsuipa_5.RULE @@ -1 +1,10 @@ +--- +license_expression: wsuipa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Wsuipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_5.yml b/src/licensedcode/data/rules/wsuipa_5.yml deleted file mode 100644 index 4d69b4b78e0..00000000000 --- a/src/licensedcode/data/rules/wsuipa_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wsuipa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wsuipa_6.RULE b/src/licensedcode/data/rules/wsuipa_6.RULE index 33042ae3d47..a06796fc378 100644 --- a/src/licensedcode/data/rules/wsuipa_6.RULE +++ b/src/licensedcode/data/rules/wsuipa_6.RULE @@ -1 +1,10 @@ +--- +license_expression: wsuipa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Wsuipa License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_6.yml b/src/licensedcode/data/rules/wsuipa_6.yml deleted file mode 100644 index 4d69b4b78e0..00000000000 --- a/src/licensedcode/data/rules/wsuipa_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wsuipa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wsuipa_7.RULE b/src/licensedcode/data/rules/wsuipa_7.RULE index 55e579368bc..38fceb5cf2c 100644 --- a/src/licensedcode/data/rules/wsuipa_7.RULE +++ b/src/licensedcode/data/rules/wsuipa_7.RULE @@ -1 +1,10 @@ +--- +license_expression: wsuipa +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Wsuipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_7.yml b/src/licensedcode/data/rules/wsuipa_7.yml deleted file mode 100644 index 4d69b4b78e0..00000000000 --- a/src/licensedcode/data/rules/wsuipa_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wsuipa -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wsuipa_8.RULE b/src/licensedcode/data/rules/wsuipa_8.RULE index d9285fcbc47..707118690e9 100644 --- a/src/licensedcode/data/rules/wsuipa_8.RULE +++ b/src/licensedcode/data/rules/wsuipa_8.RULE @@ -1 +1,9 @@ +--- +license_expression: wsuipa +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Wsuipa +--- + https://licenses.nuget.org/Wsuipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_8.yml b/src/licensedcode/data/rules/wsuipa_8.yml deleted file mode 100644 index 811be936b96..00000000000 --- a/src/licensedcode/data/rules/wsuipa_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Wsuipa diff --git a/src/licensedcode/data/rules/wsuipa_9.RULE b/src/licensedcode/data/rules/wsuipa_9.RULE index dd74d3a6999..e106198a725 100644 --- a/src/licensedcode/data/rules/wsuipa_9.RULE +++ b/src/licensedcode/data/rules/wsuipa_9.RULE @@ -1 +1,7 @@ +--- +license_expression: wsuipa +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Wsuipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_9.yml b/src/licensedcode/data/rules/wsuipa_9.yml deleted file mode 100644 index c914f1ad52a..00000000000 --- a/src/licensedcode/data/rules/wsuipa_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wsuipa_url_1.RULE b/src/licensedcode/data/rules/wsuipa_url_1.RULE index 1a45c47a44c..bc80be30357 100644 --- a/src/licensedcode/data/rules/wsuipa_url_1.RULE +++ b/src/licensedcode/data/rules/wsuipa_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: wsuipa +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/wsuipa +--- + https://spdx.org/licenses/wsuipa \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_url_1.yml b/src/licensedcode/data/rules/wsuipa_url_1.yml deleted file mode 100644 index 9133e7a28db..00000000000 --- a/src/licensedcode/data/rules/wsuipa_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/wsuipa diff --git a/src/licensedcode/data/rules/wsuipa_url_2.RULE b/src/licensedcode/data/rules/wsuipa_url_2.RULE index 00a390e0de4..b740570eb77 100644 --- a/src/licensedcode/data/rules/wsuipa_url_2.RULE +++ b/src/licensedcode/data/rules/wsuipa_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: wsuipa +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/wsuipa.html +--- + https://spdx.org/licenses/wsuipa.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/wsuipa_url_2.yml b/src/licensedcode/data/rules/wsuipa_url_2.yml deleted file mode 100644 index f62c47f1bc2..00000000000 --- a/src/licensedcode/data/rules/wsuipa_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wsuipa -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/wsuipa.html diff --git a/src/licensedcode/data/rules/wtfnmfpl-1.0.RULE b/src/licensedcode/data/rules/wtfnmfpl-1.0.RULE index b1c99cd569d..e61fd64fcef 100644 --- a/src/licensedcode/data/rules/wtfnmfpl-1.0.RULE +++ b/src/licensedcode/data/rules/wtfnmfpl-1.0.RULE @@ -1,3 +1,14 @@ +--- +license_expression: wtfnmfpl-1.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2013 Ben McGinnes +ignorable_holders: + - Ben McGinnes +ignorable_emails: + - ben@adversary.org +--- + DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE Version 1, October 2013 @@ -9,4 +20,4 @@ DO WHAT THE FUCK YOU WANT TO BUT IT'S NOT MY FAULT PUBLIC LICENSE TERMS AND COND 0. You just DO WHAT THE FUCK YOU WANT TO. -1. Do not hold the author(s), creator(s), developer(s) or distributor(s) liable for anything that happens or goes wrong with your use of the work. +1. Do not hold the author(s), creator(s), developer(s) or distributor(s) liable for anything that happens or goes wrong with your use of the work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfnmfpl-1.0.yml b/src/licensedcode/data/rules/wtfnmfpl-1.0.yml deleted file mode 100644 index 859c512ad0f..00000000000 --- a/src/licensedcode/data/rules/wtfnmfpl-1.0.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: wtfnmfpl-1.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2013 Ben McGinnes -ignorable_holders: - - Ben McGinnes -ignorable_emails: - - ben@adversary.org diff --git a/src/licensedcode/data/rules/wtfpl-1.0.RULE b/src/licensedcode/data/rules/wtfpl-1.0.RULE index 481afbc4eb3..2aad737e2dc 100644 --- a/src/licensedcode/data/rules/wtfpl-1.0.RULE +++ b/src/licensedcode/data/rules/wtfpl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://cvs.windowmaker.org/co.php/wm/COPYING.WTFPL +--- + http://cvs.windowmaker.org/co.php/wm/COPYING.WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-1.0.yml b/src/licensedcode/data/rules/wtfpl-1.0.yml deleted file mode 100644 index e165a8f3a95..00000000000 --- a/src/licensedcode/data/rules/wtfpl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://cvs.windowmaker.org/co.php/wm/COPYING.WTFPL diff --git a/src/licensedcode/data/rules/wtfpl-1.0_1.RULE b/src/licensedcode/data/rules/wtfpl-1.0_1.RULE index bf253c897ae..b4cd7370e0c 100644 --- a/src/licensedcode/data/rules/wtfpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/wtfpl-1.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://hg.windowmaker.info/wmaker/file/0a3a3e370483/COPYING.WTFPL +--- + http://hg.windowmaker.info/wmaker/file/0a3a3e370483/COPYING.WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-1.0_1.yml b/src/licensedcode/data/rules/wtfpl-1.0_1.yml deleted file mode 100644 index bc5d6cffd21..00000000000 --- a/src/licensedcode/data/rules/wtfpl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://hg.windowmaker.info/wmaker/file/0a3a3e370483/COPYING.WTFPL diff --git a/src/licensedcode/data/rules/wtfpl-1.0_2.RULE b/src/licensedcode/data/rules/wtfpl-1.0_2.RULE index 621ca1b91eb..c2e97a7b1ff 100644 --- a/src/licensedcode/data/rules/wtfpl-1.0_2.RULE +++ b/src/licensedcode/data/rules/wtfpl-1.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-1.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + license: DO WHAT YOU WANT TO PUBLIC LICENSE, see LICENSE for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-1.0_2.yml b/src/licensedcode/data/rules/wtfpl-1.0_2.yml deleted file mode 100644 index 4e65f54fe13..00000000000 --- a/src/licensedcode/data/rules/wtfpl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-1.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/wtfpl-2.0.RULE b/src/licensedcode/data/rules/wtfpl-2.0.RULE index b225890c47a..52b9d748aa7 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://fedoraproject.org/wiki/Licensing/WTFPL +--- + http://fedoraproject.org/wiki/Licensing/WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0.SPDX.RULE b/src/licensedcode/data/rules/wtfpl-2.0.SPDX.RULE index 4ad07904996..44f0fd5ebe6 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: wtfpl-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2004 Sam Hocevar +ignorable_holders: + - Sam Hocevar +ignorable_emails: + - sam@hocevar.net +--- + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 diff --git a/src/licensedcode/data/rules/wtfpl-2.0.SPDX.yml b/src/licensedcode/data/rules/wtfpl-2.0.SPDX.yml deleted file mode 100644 index 9f31ea41f1d..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2004 Sam Hocevar -ignorable_holders: - - Sam Hocevar -ignorable_emails: - - sam@hocevar.net diff --git a/src/licensedcode/data/rules/wtfpl-2.0.yml b/src/licensedcode/data/rules/wtfpl-2.0.yml deleted file mode 100644 index 688dcbacb33..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://fedoraproject.org/wiki/Licensing/WTFPL diff --git a/src/licensedcode/data/rules/wtfpl-2.0_1.RULE b/src/licensedcode/data/rules/wtfpl-2.0_1.RULE index 44504f5c4fb..88a5bbf02de 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_1.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://sam.zoy.org/wtfpl/ +--- + http://sam.zoy.org/wtfpl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_1.yml b/src/licensedcode/data/rules/wtfpl-2.0_1.yml deleted file mode 100644 index e7de55fe9a7..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://sam.zoy.org/wtfpl/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_10.RULE b/src/licensedcode/data/rules/wtfpl-2.0_10.RULE index a212f126ac5..4940a3e27d2 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_10.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/wtfpl +--- + https://choosealicense.com/licenses/wtfpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_10.yml b/src/licensedcode/data/rules/wtfpl-2.0_10.yml deleted file mode 100644 index 93c644ca2a1..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/wtfpl diff --git a/src/licensedcode/data/rules/wtfpl-2.0_11.RULE b/src/licensedcode/data/rules/wtfpl-2.0_11.RULE index 060ff72ede1..3b25e72dc9b 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/wtfpl +--- + http://choosealicense.com/licenses/wtfpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_11.yml b/src/licensedcode/data/rules/wtfpl-2.0_11.yml deleted file mode 100644 index 02cc10b2089..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/wtfpl diff --git a/src/licensedcode/data/rules/wtfpl-2.0_12.RULE b/src/licensedcode/data/rules/wtfpl-2.0_12.RULE index d0892ad6b01..51594c0084a 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_12.RULE @@ -1 +1,9 @@ -Licensed under the {{WTFPL}} (http://sam.zoy.org/wtfpl/). +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://sam.zoy.org/wtfpl +--- + +Licensed under the {{WTFPL}} (http://sam.zoy.org/wtfpl/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_12.yml b/src/licensedcode/data/rules/wtfpl-2.0_12.yml deleted file mode 100644 index d1d3519c28c..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://sam.zoy.org/wtfpl diff --git a/src/licensedcode/data/rules/wtfpl-2.0_13.RULE b/src/licensedcode/data/rules/wtfpl-2.0_13.RULE index 23080cad505..a0065ca1bf1 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_13.RULE @@ -1 +1,7 @@ -Licensed under the {{WTFPL}} +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +Licensed under the {{WTFPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_13.yml b/src/licensedcode/data/rules/wtfpl-2.0_13.yml deleted file mode 100644 index 670ce4722ac..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_14.RULE b/src/licensedcode/data/rules/wtfpl-2.0_14.RULE index f18c593eb79..9698876df66 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://sam.zoy.org/wtfpl +--- + WTFPL (http://sam.zoy.org/wtfpl/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_14.yml b/src/licensedcode/data/rules/wtfpl-2.0_14.yml deleted file mode 100644 index 685c1c712bd..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://sam.zoy.org/wtfpl diff --git a/src/licensedcode/data/rules/wtfpl-2.0_15.RULE b/src/licensedcode/data/rules/wtfpl-2.0_15.RULE index da501af6670..c34e26cf0cc 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Do What The F*ck You Want To Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_15.yml b/src/licensedcode/data/rules/wtfpl-2.0_15.yml deleted file mode 100644 index 07954226d03..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_16.RULE b/src/licensedcode/data/rules/wtfpl-2.0_16.RULE index b50a6c02f55..c8932e6bf47 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.wtfpl.net/ +--- + [license-url]: http://www.wtfpl.net \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_16.yml b/src/licensedcode/data/rules/wtfpl-2.0_16.yml deleted file mode 100644 index 8ea7d5ae774..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.wtfpl.net/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_17.RULE b/src/licensedcode/data/rules/wtfpl-2.0_17.RULE index fee84f38ed4..06f2d86607c 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_17.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/License-WTFPL%202.0 +--- + [license-image]: https://img.shields.io/badge/License-WTFPL%202.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_17.yml b/src/licensedcode/data/rules/wtfpl-2.0_17.yml deleted file mode 100644 index a994db4c73f..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/License-WTFPL%202.0 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_18.RULE b/src/licensedcode/data/rules/wtfpl-2.0_18.RULE index 035854497fa..e0e9ad3b8b4 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_18.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +--- + License-WTFPL%202.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_18.yml b/src/licensedcode/data/rules/wtfpl-2.0_18.yml deleted file mode 100644 index 328e6d07edb..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_18.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_19.RULE b/src/licensedcode/data/rules/wtfpl-2.0_19.RULE index beea93aba61..1f77fc58596 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_19.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_19.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +--- + [WTFPL 2.0][license \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_19.yml b/src/licensedcode/data/rules/wtfpl-2.0_19.yml deleted file mode 100644 index 328e6d07edb..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_2.RULE b/src/licensedcode/data/rules/wtfpl-2.0_2.RULE index a661fc6b622..ea966cf2f31 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://sam.zoy.org/wtfpl/COPYING +--- + http://sam.zoy.org/wtfpl/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_2.yml b/src/licensedcode/data/rules/wtfpl-2.0_2.yml deleted file mode 100644 index 6ab942724ef..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://sam.zoy.org/wtfpl/COPYING diff --git a/src/licensedcode/data/rules/wtfpl-2.0_20.RULE b/src/licensedcode/data/rules/wtfpl-2.0_20.RULE index f25f9f8f40b..68494ddaaf3 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_20.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +--- + [WTFPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_20.yml b/src/licensedcode/data/rules/wtfpl-2.0_20.yml deleted file mode 100644 index 328e6d07edb..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_21.RULE b/src/licensedcode/data/rules/wtfpl-2.0_21.RULE index 7495a11f6aa..85388c35454 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_text: yes +relevance: 100 +--- + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_21.yml b/src/licensedcode/data/rules/wtfpl-2.0_21.yml deleted file mode 100644 index 75f0caaf0e0..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_22.RULE b/src/licensedcode/data/rules/wtfpl-2.0_22.RULE index c0e8aea5f20..368fa1daa87 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_22.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.wtfpl.net/about +--- + `WTFPL` - [Do What the Fuck You Want to Public License](http://www.wtfpl.net/about/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_22.yml b/src/licensedcode/data/rules/wtfpl-2.0_22.yml deleted file mode 100644 index 109fc401859..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.wtfpl.net/about diff --git a/src/licensedcode/data/rules/wtfpl-2.0_23.RULE b/src/licensedcode/data/rules/wtfpl-2.0_23.RULE index fc2bf17d22b..3e8d41fc980 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_23.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_23.RULE @@ -1 +1,9 @@ -licensed under the {{WTFPL}} license - http://sam.zoy.org/wtfpl/ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://sam.zoy.org/wtfpl/ +--- + +licensed under the {{WTFPL}} license - http://sam.zoy.org/wtfpl/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_23.yml b/src/licensedcode/data/rules/wtfpl-2.0_23.yml deleted file mode 100644 index 7e754078d62..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_23.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://sam.zoy.org/wtfpl/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_24.RULE b/src/licensedcode/data/rules/wtfpl-2.0_24.RULE index f5ec0457277..84b03655cca 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_24.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +--- + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_24.yml b/src/licensedcode/data/rules/wtfpl-2.0_24.yml deleted file mode 100644 index 328e6d07edb..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_25.RULE b/src/licensedcode/data/rules/wtfpl-2.0_25.RULE index fe2dc304549..093abd3b9a5 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_25.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +--- + DO WHAT THE FUCK YOU WANT TO PUBLIC licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_25.yml b/src/licensedcode/data/rules/wtfpl-2.0_25.yml deleted file mode 100644 index 328e6d07edb..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_26.RULE b/src/licensedcode/data/rules/wtfpl-2.0_26.RULE index f1b2167d97d..d6f32ef68eb 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_26.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_26.RULE @@ -1,3 +1,11 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.wtfpl.net/ +--- + This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See http:www.wtfpl.net/ for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_26.yml b/src/licensedcode/data/rules/wtfpl-2.0_26.yml deleted file mode 100644 index 2da2cf1cf65..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_26.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.wtfpl.net/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_27.RULE b/src/licensedcode/data/rules/wtfpl-2.0_27.RULE index 68d1f8bb1c7..0ab1f6b5e39 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_27.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.wtfpl.net/ +--- + www.wtfpl.net \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_27.yml b/src/licensedcode/data/rules/wtfpl-2.0_27.yml deleted file mode 100644 index 8ea7d5ae774..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_27.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.wtfpl.net/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_28.RULE b/src/licensedcode/data/rules/wtfpl-2.0_28.RULE index e0638adf11c..5731ddb8998 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_28.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_28.RULE @@ -1,3 +1,17 @@ +--- +license_expression: wtfpl-2.0 +is_license_text: yes +relevance: 95 +notes: derived from the WTFPL See https://github.com/tankf33der/hacl-hmac/blob/master/COPYING + and https://git.envs.net/mpech/tfpl/src/branch/master/COPYING.TFPL and https://github.com/tankf33der/tfpl +ignorable_copyrights: + - Copyright (c) Mike +ignorable_holders: + - Mike +ignorable_emails: + - tankf33der@disroot.org +--- + THE FREEDOM PUBLIC LICENSE Version 1, January 2021 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_28.yml b/src/licensedcode/data/rules/wtfpl-2.0_28.yml deleted file mode 100644 index fb3d0532661..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_28.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_text: yes -relevance: 95 -notes: derived from the WTFPL See https://github.com/tankf33der/hacl-hmac/blob/master/COPYING - and https://git.envs.net/mpech/tfpl/src/branch/master/COPYING.TFPL and https://github.com/tankf33der/tfpl -ignorable_copyrights: - - Copyright (c) Mike -ignorable_holders: - - Mike -ignorable_emails: - - tankf33der@disroot.org diff --git a/src/licensedcode/data/rules/wtfpl-2.0_29.RULE b/src/licensedcode/data/rules/wtfpl-2.0_29.RULE index 6246a6df583..b4c7e565d1a 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_29.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_29.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Free to use under the WTFPL license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_29.yml b/src/licensedcode/data/rules/wtfpl-2.0_29.yml deleted file mode 100644 index 670ce4722ac..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_3.RULE b/src/licensedcode/data/rules/wtfpl-2.0_3.RULE index 7c471edc135..d8afdb701a4 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_3.RULE @@ -1,3 +1,18 @@ +--- +license_expression: wtfpl-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) 2004 Sam Hocevar + - Copyright 2012-2015 Archive Team +ignorable_holders: + - Archive Team + - Sam Hocevar +ignorable_urls: + - http://badcheese.com/~steve/atlogs/?chan=warrior&day=2013-11-05 +ignorable_emails: + - sam@hocevar.net +--- + "[...] Generally, treat anything from Archive Team as being licenced under the WTFPL."---GLaDOS (http://badcheese.com/~steve/atlogs/?chan=warrior&day=2013-11-05) Copyright 2012-2015 Archive Team. @@ -14,4 +29,4 @@ Copyright 2012-2015 Archive Team. DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. You just DO WHAT THE FUCK YOU WANT TO. + 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_3.yml b/src/licensedcode/data/rules/wtfpl-2.0_3.yml deleted file mode 100644 index f68bc03f3f2..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_3.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) 2004 Sam Hocevar - - Copyright 2012-2015 Archive Team -ignorable_holders: - - Archive Team - - Sam Hocevar -ignorable_urls: - - http://badcheese.com/~steve/atlogs/?chan=warrior&day=2013-11-05 -ignorable_emails: - - sam@hocevar.net diff --git a/src/licensedcode/data/rules/wtfpl-2.0_30.RULE b/src/licensedcode/data/rules/wtfpl-2.0_30.RULE index 8890923ce6b..e5cb8ba694b 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_30.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_30.RULE @@ -1,2 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.wtfpl.net/ +--- + Free to use under the WTFPL license. http://www.wtfpl.net/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_30.yml b/src/licensedcode/data/rules/wtfpl-2.0_30.yml deleted file mode 100644 index 2da2cf1cf65..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_30.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.wtfpl.net/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_31.RULE b/src/licensedcode/data/rules/wtfpl-2.0_31.RULE index facb1abb5b7..23e654eee2e 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_31.RULE @@ -1,2 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://www.wtfpl.net/ +--- + Free to use under the WTFPL license. https://www.wtfpl.net/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_31.yml b/src/licensedcode/data/rules/wtfpl-2.0_31.yml deleted file mode 100644 index 7e351d8bc4a..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_31.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - https://www.wtfpl.net/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_32.RULE b/src/licensedcode/data/rules/wtfpl-2.0_32.RULE index f3a2677301b..46cedd90fa4 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_32.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.wtfpl.net/ +--- + https://www.wtfpl.net/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_32.yml b/src/licensedcode/data/rules/wtfpl-2.0_32.yml deleted file mode 100644 index 1025ada7b1d..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_32.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.wtfpl.net/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_33.RULE b/src/licensedcode/data/rules/wtfpl-2.0_33.RULE index a2ebcc5bae6..c7f4d229831 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_33.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +referenced_filenames: + - LICENSE-WTFPL +--- + LICENSE-WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_33.yml b/src/licensedcode/data/rules/wtfpl-2.0_33.yml deleted file mode 100644 index 20f56af315b..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_33.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -referenced_filenames: - - LICENSE-WTFPL diff --git a/src/licensedcode/data/rules/wtfpl-2.0_34.RULE b/src/licensedcode/data/rules/wtfpl-2.0_34.RULE index 9186b958c2d..40e0d4d9800 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_34.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_34.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + WTFPL Do What The Fuck You Want To Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_34.yml b/src/licensedcode/data/rules/wtfpl-2.0_34.yml deleted file mode 100644 index 16c2f92810b..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/wtfpl-2.0_35.RULE b/src/licensedcode/data/rules/wtfpl-2.0_35.RULE index 77547d7eca5..9a1de1e3e1a 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_35.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_35.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Do What The Fuck You Want To Public License WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_35.yml b/src/licensedcode/data/rules/wtfpl-2.0_35.yml deleted file mode 100644 index 16c2f92810b..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/wtfpl-2.0_36.RULE b/src/licensedcode/data/rules/wtfpl-2.0_36.RULE index 43b1324070f..8fb103e5ac2 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_36.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_36.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_36.yml b/src/licensedcode/data/rules/wtfpl-2.0_36.yml deleted file mode 100644 index 16c2f92810b..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/wtfpl-2.0_37.RULE b/src/licensedcode/data/rules/wtfpl-2.0_37.RULE index 076cb2bd2cb..96c10ec09a6 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_37.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_37.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 99 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : Do What The Fuck You Want To Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_37.yml b/src/licensedcode/data/rules/wtfpl-2.0_37.yml deleted file mode 100644 index 16c2f92810b..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_37.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 99 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/wtfpl-2.0_38.RULE b/src/licensedcode/data/rules/wtfpl-2.0_38.RULE index 188f7672314..3fd7e9d11c2 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_38.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_38.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Do What The F*ck You Want To Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_38.yml b/src/licensedcode/data/rules/wtfpl-2.0_38.yml deleted file mode 100644 index 06fa7884025..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_38.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wtfpl-2.0_39.RULE b/src/licensedcode/data/rules/wtfpl-2.0_39.RULE index 6a249c5e2c4..150e32c1475 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_39.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_39.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + WTFPL Do What The F*ck You Want To Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_39.yml b/src/licensedcode/data/rules/wtfpl-2.0_39.yml deleted file mode 100644 index 06fa7884025..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_39.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wtfpl-2.0_4.RULE b/src/licensedcode/data/rules/wtfpl-2.0_4.RULE index d681e3b1471..452fd8dc6e6 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_4.RULE @@ -1,2 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +--- + Special license: Take literally anything you want out of this file. I don't care. Consider it WTFPL licensed if you like. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_4.yml b/src/licensedcode/data/rules/wtfpl-2.0_4.yml deleted file mode 100644 index 95138075061..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/wtfpl-2.0_40.RULE b/src/licensedcode/data/rules/wtfpl-2.0_40.RULE index b239d21442b..069b30733c3 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_40.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_40.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Do What The F*ck You Want To Public License WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_40.yml b/src/licensedcode/data/rules/wtfpl-2.0_40.yml deleted file mode 100644 index 06fa7884025..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_40.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wtfpl-2.0_41.RULE b/src/licensedcode/data/rules/wtfpl-2.0_41.RULE index 08c408be31c..8ae94bc05c6 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_41.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_41.RULE @@ -1 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Do What The F*ck You Want To Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_41.yml b/src/licensedcode/data/rules/wtfpl-2.0_41.yml deleted file mode 100644 index 6e48c1f3dc1..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_41.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wtfpl-2.0_42.RULE b/src/licensedcode/data/rules/wtfpl-2.0_42.RULE index 36cc77cb2df..d9d70417f0d 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_42.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_42.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['WTF', 'WTFPL'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_42.yml b/src/licensedcode/data/rules/wtfpl-2.0_42.yml deleted file mode 100644 index 07954226d03..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_43.RULE b/src/licensedcode/data/rules/wtfpl-2.0_43.RULE index 8edd32142c2..99a913b0d08 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_43.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_43.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + ['FUCK', 'WTFPL'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_43.yml b/src/licensedcode/data/rules/wtfpl-2.0_43.yml deleted file mode 100644 index 07954226d03..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_43.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_44.RULE b/src/licensedcode/data/rules/wtfpl-2.0_44.RULE index 07b2c6b227a..bba83495b74 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_44.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_44.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + 'Http://wtfpl.org/': 'WTFPL', \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_44.yml b/src/licensedcode/data/rules/wtfpl-2.0_44.yml deleted file mode 100644 index 07954226d03..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_44.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_45.RULE b/src/licensedcode/data/rules/wtfpl-2.0_45.RULE index 4d2358f2592..5b6d50ef523 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_45.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_45.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +--- + released under the WTFPL v2 license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_45.yml b/src/licensedcode/data/rules/wtfpl-2.0_45.yml deleted file mode 100644 index 670ce4722ac..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_46.RULE b/src/licensedcode/data/rules/wtfpl-2.0_46.RULE index 2e51a63241e..5e1aff8f342 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_46.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_46.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_46.yml b/src/licensedcode/data/rules/wtfpl-2.0_46.yml deleted file mode 100644 index 81cd6b2322a..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_46.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_47.RULE b/src/licensedcode/data/rules/wtfpl-2.0_47.RULE index cb2ef84f307..c466994a1dd 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_47.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_47.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/WTFPL +--- + https://licenses.nuget.org/WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_47.yml b/src/licensedcode/data/rules/wtfpl-2.0_47.yml deleted file mode 100644 index 3c8d9eb5cf8..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/WTFPL diff --git a/src/licensedcode/data/rules/wtfpl-2.0_48.RULE b/src/licensedcode/data/rules/wtfpl-2.0_48.RULE index 70d445d3415..abf7b776302 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_48.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_48.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_48.yml b/src/licensedcode/data/rules/wtfpl-2.0_48.yml deleted file mode 100644 index 328e6d07edb..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_49.RULE b/src/licensedcode/data/rules/wtfpl-2.0_49.RULE index c2b20db8be9..0378c867262 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_49.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_49.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +--- + Released under the WTFPL license \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_49.yml b/src/licensedcode/data/rules/wtfpl-2.0_49.yml deleted file mode 100644 index 670ce4722ac..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_5.RULE b/src/licensedcode/data/rules/wtfpl-2.0_5.RULE index 0557e732021..b339dfeb237 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: wtfpl-2.0 +is_license_text: yes +--- + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 @@ -8,4 +13,4 @@ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. You just DO WHAT THE FUCK YOU WANT TO. + 0. You just DO WHAT THE FUCK YOU WANT TO. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_5.yml b/src/licensedcode/data/rules/wtfpl-2.0_5.yml deleted file mode 100644 index f9986b704e1..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/wtfpl-2.0_50.RULE b/src/licensedcode/data/rules/wtfpl-2.0_50.RULE index 2d6298fbd3b..78fe9913ee7 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_50.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_50.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/WTFPL +--- + {{WTFPL}} https://spdx.org/licenses/WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_50.yml b/src/licensedcode/data/rules/wtfpl-2.0_50.yml deleted file mode 100644 index 8408d92d68a..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_50.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/WTFPL diff --git a/src/licensedcode/data/rules/wtfpl-2.0_51.RULE b/src/licensedcode/data/rules/wtfpl-2.0_51.RULE index bae84a9d8c2..f61def705ed 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_51.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_51.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/WTFPL +--- + LICENSE {{WTFPL}} https://spdx.org/licenses/WTFPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_51.yml b/src/licensedcode/data/rules/wtfpl-2.0_51.yml deleted file mode 100644 index 8408d92d68a..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/WTFPL diff --git a/src/licensedcode/data/rules/wtfpl-2.0_6.RULE b/src/licensedcode/data/rules/wtfpl-2.0_6.RULE index 755753954a6..534c0088a5c 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://www.wtfpl.net/txt/copying/ +--- + License: WTFPL, grab your copy here: http://www.wtfpl.net/txt/copying/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_6.yml b/src/licensedcode/data/rules/wtfpl-2.0_6.yml deleted file mode 100644 index 7b36f53bb67..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://www.wtfpl.net/txt/copying/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_7.RULE b/src/licensedcode/data/rules/wtfpl-2.0_7.RULE index b6f54522bca..62582dcfb27 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_7.RULE @@ -1,3 +1,13 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - COPYING +ignorable_urls: + - http://www.wtfpl.net/ +--- + This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See the COPYING file for more details. diff --git a/src/licensedcode/data/rules/wtfpl-2.0_7.yml b/src/licensedcode/data/rules/wtfpl-2.0_7.yml deleted file mode 100644 index 9fcccf002ae..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_7.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - COPYING -ignorable_urls: - - http://www.wtfpl.net/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_8.RULE b/src/licensedcode/data/rules/wtfpl-2.0_8.RULE index 8cb69e7af40..4e4364d40c0 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_8.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 100 +--- + // Do What The Fuck you Want to Public License 2 (WTFPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_8.yml b/src/licensedcode/data/rules/wtfpl-2.0_8.yml deleted file mode 100644 index 328e6d07edb..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_9.RULE b/src/licensedcode/data/rules/wtfpl-2.0_9.RULE index d7ec0b827d5..8e4cda0c218 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_9.RULE @@ -1,5 +1,12 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://sam.zoy.org/wtfpl/COPYING +--- + * This program is free software. It comes without any warranty, to * the extent permitted by applicable law. You can redistribute it * and/or modify it under the terms of the Do What The Fuck You Want * To Public License, Version 2, as published by Sam Hocevar. See - * http://sam.zoy.org/wtfpl/COPYING for more details. + * http://sam.zoy.org/wtfpl/COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_9.yml b/src/licensedcode/data/rules/wtfpl-2.0_9.yml deleted file mode 100644 index bebb25eb57e..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://sam.zoy.org/wtfpl/COPYING diff --git a/src/licensedcode/data/rules/wtfpl-2.0_notice.RULE b/src/licensedcode/data/rules/wtfpl-2.0_notice.RULE index 5922c3ca23d..c0e039d05d6 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_notice.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_notice.RULE @@ -1,3 +1,10 @@ +--- +license_expression: wtfpl-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.wtfpl.net/ +--- + # This program is free software. It comes without any warranty, to # the extent permitted by applicable law. You can redistribute it # and/or modify it under the terms of the Do What The Fuck You Want diff --git a/src/licensedcode/data/rules/wtfpl-2.0_notice.yml b/src/licensedcode/data/rules/wtfpl-2.0_notice.yml deleted file mode 100644 index c20c5e58c27..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_notice.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.wtfpl.net/ diff --git a/src/licensedcode/data/rules/wtfpl-2.0_or_mit_1.RULE b/src/licensedcode/data/rules/wtfpl-2.0_or_mit_1.RULE index f4a68ef7fd8..de1b6c53308 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_or_mit_1.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_or_mit_1.RULE @@ -1 +1,7 @@ +--- +license_expression: wtfpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +--- + Free to use under either the WTFPL license or the MIT license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_or_mit_1.yml b/src/licensedcode/data/rules/wtfpl-2.0_or_mit_1.yml deleted file mode 100644 index 686f89ba7af..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_or_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wtfpl-2.0 OR mit -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wtfpl-2.0_or_mit_2.RULE b/src/licensedcode/data/rules/wtfpl-2.0_or_mit_2.RULE index 90c23efc286..6a25c32d413 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_or_mit_2.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_or_mit_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: wtfpl-2.0 OR mit +is_license_notice: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT + - https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL +--- + Free to use under either the WTFPL license or the MIT license. https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_or_mit_2.yml b/src/licensedcode/data/rules/wtfpl-2.0_or_mit_2.yml deleted file mode 100644 index 049a8a3daf6..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_or_mit_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: wtfpl-2.0 OR mit -is_license_notice: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT - - https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL diff --git a/src/licensedcode/data/rules/wtfpl-2.0_url_1.RULE b/src/licensedcode/data/rules/wtfpl-2.0_url_1.RULE index 3e70eb7665e..c17efb4c51b 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/wtfpl +--- + https://spdx.org/licenses/wtfpl \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_url_1.yml b/src/licensedcode/data/rules/wtfpl-2.0_url_1.yml deleted file mode 100644 index ecf3ffb945f..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/wtfpl diff --git a/src/licensedcode/data/rules/wtfpl-2.0_url_2.RULE b/src/licensedcode/data/rules/wtfpl-2.0_url_2.RULE index 46b6efc9d25..6d161e1d364 100644 --- a/src/licensedcode/data/rules/wtfpl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/wtfpl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: wtfpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/wtfpl.html +--- + https://spdx.org/licenses/wtfpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/wtfpl-2.0_url_2.yml b/src/licensedcode/data/rules/wtfpl-2.0_url_2.yml deleted file mode 100644 index b5a109f173b..00000000000 --- a/src/licensedcode/data/rules/wtfpl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wtfpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/wtfpl.html diff --git a/src/licensedcode/data/rules/wxwidgets.RULE b/src/licensedcode/data/rules/wxwidgets.RULE index 23737b25e6c..3aaa0217b62 100644 --- a/src/licensedcode/data/rules/wxwidgets.RULE +++ b/src/licensedcode/data/rules/wxwidgets.RULE @@ -1 +1,9 @@ +--- +license_expression: wxwidgets +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.wxwidgets.org/about/licence.htm +--- + http://www.wxwidgets.org/about/licence.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwidgets.yml b/src/licensedcode/data/rules/wxwidgets.yml deleted file mode 100644 index c6cba53be6a..00000000000 --- a/src/licensedcode/data/rules/wxwidgets.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wxwidgets -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.wxwidgets.org/about/licence.htm diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_1.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_1.RULE index 8b8ff1d43ff..2f91dbb8078 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_1.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + WxWindows Library Exception 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_1.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_1.yml deleted file mode 100644 index 96377c9ed23..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_10.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_10.RULE index 8248990082a..0adad73e09b 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_10.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/WxWindows-exception-3.1 +--- + {{WxWindows-exception-3.1}} https://spdx.org/licenses/WxWindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_10.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_10.yml deleted file mode 100644 index fa1085053c1..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/WxWindows-exception-3.1 diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_11.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_11.RULE index 9b6fcf7955a..dbca8e8ca4b 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_11.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/WxWindows-exception-3.1 +--- + LICENSE {{WxWindows-exception-3.1}} https://spdx.org/licenses/WxWindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_11.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_11.yml deleted file mode 100644 index fa1085053c1..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/WxWindows-exception-3.1 diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_2.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_2.RULE index 7ab39e8a4eb..182cd161085 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_2.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: WxWindows Library Exception 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_2.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_2.yml deleted file mode 100644 index 96377c9ed23..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_3.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_3.RULE index d85c6f200a9..66de4c39112 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_3.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + WxWindows-exception-3.1 WxWindows Library Exception 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_3.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_3.yml deleted file mode 100644 index 96377c9ed23..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_4.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_4.RULE index a341ae4221a..1a2dfd513ef 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_4.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + WxWindows Library Exception 3.1 WxWindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_4.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_4.yml deleted file mode 100644 index 96377c9ed23..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_5.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_5.RULE index b70fa3631db..8cdf7d351ab 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_5.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: WxWindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_5.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_5.yml deleted file mode 100644 index 2069eb6daaa..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_6.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_6.RULE index 9fa2fc69775..53d29575cf8 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_6.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: WxWindows Library Exception 3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_6.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_6.yml deleted file mode 100644 index 2069eb6daaa..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_7.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_7.RULE index 4e4a2d2397e..2f0e997cc4d 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_7.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseExceptionId: WxWindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_7.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_7.yml deleted file mode 100644 index 2069eb6daaa..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_8.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_8.RULE index b3875204472..bcfd7d31620 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_8.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/WxWindows-exception-3.1 +--- + https://licenses.nuget.org/WxWindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_8.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_8.yml deleted file mode 100644 index 0bfc8e54d2d..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/WxWindows-exception-3.1 diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_9.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_9.RULE index 43d21b10ae3..ade37dedb76 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_9.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/WxWindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_9.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_9.yml deleted file mode 100644 index 19329916944..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_url_1.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_url_1.RULE index beabdea250b..c3c57b98040 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_url_1.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/wxwindows-exception-3.1 +--- + https://spdx.org/licenses/wxwindows-exception-3.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_url_1.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_url_1.yml deleted file mode 100644 index 889a23af16e..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/wxwindows-exception-3.1 diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_url_2.RULE b/src/licensedcode/data/rules/wxwindows-exception-3.1_url_2.RULE index 10300ba2ef1..cc01c00f301 100644 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_url_2.RULE +++ b/src/licensedcode/data/rules/wxwindows-exception-3.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: wxwindows-exception-3.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/wxwindows-exception-3.1.html +--- + https://spdx.org/licenses/wxwindows-exception-3.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows-exception-3.1_url_2.yml b/src/licensedcode/data/rules/wxwindows-exception-3.1_url_2.yml deleted file mode 100644 index 7c9cea421d6..00000000000 --- a/src/licensedcode/data/rules/wxwindows-exception-3.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: wxwindows-exception-3.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/wxwindows-exception-3.1.html diff --git a/src/licensedcode/data/rules/wxwindows_1.RULE b/src/licensedcode/data/rules/wxwindows_1.RULE index 47c3d488738..1867f47e6fb 100644 --- a/src/licensedcode/data/rules/wxwindows_1.RULE +++ b/src/licensedcode/data/rules/wxwindows_1.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + wxWindows Library License \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_1.yml b/src/licensedcode/data/rules/wxwindows_1.yml deleted file mode 100644 index cf2762143f3..00000000000 --- a/src/licensedcode/data/rules/wxwindows_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_10.RULE b/src/licensedcode/data/rules/wxwindows_10.RULE index ed5a34b4d68..41319ef8c7f 100644 --- a/src/licensedcode/data/rules/wxwindows_10.RULE +++ b/src/licensedcode/data/rules/wxwindows_10.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_tag: yes +relevance: 100 +--- + licence: wxWindows licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_10.yml b/src/licensedcode/data/rules/wxwindows_10.yml deleted file mode 100644 index 3d09a5d7153..00000000000 --- a/src/licensedcode/data/rules/wxwindows_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_11.RULE b/src/licensedcode/data/rules/wxwindows_11.RULE index 23977348e08..18f7299975e 100644 --- a/src/licensedcode/data/rules/wxwindows_11.RULE +++ b/src/licensedcode/data/rules/wxwindows_11.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_tag: yes +relevance: 100 +--- + license wxWindows licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_11.yml b/src/licensedcode/data/rules/wxwindows_11.yml deleted file mode 100644 index 3d09a5d7153..00000000000 --- a/src/licensedcode/data/rules/wxwindows_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_12.RULE b/src/licensedcode/data/rules/wxwindows_12.RULE index 4d4a0011dd9..068d48fc7a4 100644 --- a/src/licensedcode/data/rules/wxwindows_12.RULE +++ b/src/licensedcode/data/rules/wxwindows_12.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + This script is under the wxWindows license \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_12.yml b/src/licensedcode/data/rules/wxwindows_12.yml deleted file mode 100644 index d2ad27fb11e..00000000000 --- a/src/licensedcode/data/rules/wxwindows_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_13.RULE b/src/licensedcode/data/rules/wxwindows_13.RULE index 203a742ff2d..c4bf7880f20 100644 --- a/src/licensedcode/data/rules/wxwindows_13.RULE +++ b/src/licensedcode/data/rules/wxwindows_13.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + is under the wxWindows license \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_13.yml b/src/licensedcode/data/rules/wxwindows_13.yml deleted file mode 100644 index d2ad27fb11e..00000000000 --- a/src/licensedcode/data/rules/wxwindows_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_14.RULE b/src/licensedcode/data/rules/wxwindows_14.RULE index d59e759b260..c4211843de6 100644 --- a/src/licensedcode/data/rules/wxwindows_14.RULE +++ b/src/licensedcode/data/rules/wxwindows_14.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_tag: yes +relevance: 100 +--- + license wxWindows license \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_14.yml b/src/licensedcode/data/rules/wxwindows_14.yml deleted file mode 100644 index 3d09a5d7153..00000000000 --- a/src/licensedcode/data/rules/wxwindows_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_15.RULE b/src/licensedcode/data/rules/wxwindows_15.RULE index f3fb91e907e..511bb119a90 100644 --- a/src/licensedcode/data/rules/wxwindows_15.RULE +++ b/src/licensedcode/data/rules/wxwindows_15.RULE @@ -1,5 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +--- + library source code is distributed under the wxWindows Library Licence. In essence it's the GNU Library General Public Licence (LGPL) version with -a static linking exception. - +a static linking exception. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_15.yml b/src/licensedcode/data/rules/wxwindows_15.yml deleted file mode 100644 index 945cb25e0b0..00000000000 --- a/src/licensedcode/data/rules/wxwindows_15.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/wxwindows_16.RULE b/src/licensedcode/data/rules/wxwindows_16.RULE index 42d5778ba1d..25d6bffb204 100644 --- a/src/licensedcode/data/rules/wxwindows_16.RULE +++ b/src/licensedcode/data/rules/wxwindows_16.RULE @@ -1,3 +1,13 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +referenced_filenames: + - Documentation/preamble.txt + - Documentation/license.txt + - Documentation/gpl.txt + - Documentation/lgpl.txt +--- + is licensed under the wxWindows license. You will find preamble.txt, license.txt, gpl.txt, and lgpl.txt in the Documentation folder detailing the terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_16.yml b/src/licensedcode/data/rules/wxwindows_16.yml deleted file mode 100644 index 58a2e2bd1a4..00000000000 --- a/src/licensedcode/data/rules/wxwindows_16.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -referenced_filenames: - - Documentation/preamble.txt - - Documentation/license.txt - - Documentation/gpl.txt - - Documentation/lgpl.txt diff --git a/src/licensedcode/data/rules/wxwindows_17.RULE b/src/licensedcode/data/rules/wxwindows_17.RULE index 7a8df534389..1804a8a57b3 100644 --- a/src/licensedcode/data/rules/wxwindows_17.RULE +++ b/src/licensedcode/data/rules/wxwindows_17.RULE @@ -1 +1,7 @@ -licensed under the {{wxWindows license}}. +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + +licensed under the {{wxWindows license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_17.yml b/src/licensedcode/data/rules/wxwindows_17.yml deleted file mode 100644 index d2ad27fb11e..00000000000 --- a/src/licensedcode/data/rules/wxwindows_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_2.RULE b/src/licensedcode/data/rules/wxwindows_2.RULE index f5479336ebd..65fc24db25e 100644 --- a/src/licensedcode/data/rules/wxwindows_2.RULE +++ b/src/licensedcode/data/rules/wxwindows_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_text: yes +referenced_filenames: + - COPYING.LIB +notes: wxWindows Library Licence template +ignorable_copyrights: + - Copyright (c) 20 1998 Julian Smart, Robert Roebling +ignorable_holders: + - Julian Smart, Robert Roebling +--- + wxWindows Library Licence, Version 3 ==================================== diff --git a/src/licensedcode/data/rules/wxwindows_2.yml b/src/licensedcode/data/rules/wxwindows_2.yml deleted file mode 100644 index efb1a4e25ef..00000000000 --- a/src/licensedcode/data/rules/wxwindows_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_text: yes -referenced_filenames: - - COPYING.LIB -notes: wxWindows Library Licence template -ignorable_copyrights: - - Copyright (c) 20 1998 Julian Smart, Robert Roebling -ignorable_holders: - - Julian Smart, Robert Roebling diff --git a/src/licensedcode/data/rules/wxwindows_3.RULE b/src/licensedcode/data/rules/wxwindows_3.RULE index 25f9b7db669..1f52580c40a 100644 --- a/src/licensedcode/data/rules/wxwindows_3.RULE +++ b/src/licensedcode/data/rules/wxwindows_3.RULE @@ -1 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/wxwindows.php +--- + http://www.opensource.org/licenses/wxwindows.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_3.yml b/src/licensedcode/data/rules/wxwindows_3.yml deleted file mode 100644 index dc31e091d11..00000000000 --- a/src/licensedcode/data/rules/wxwindows_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/wxwindows.php diff --git a/src/licensedcode/data/rules/wxwindows_4.RULE b/src/licensedcode/data/rules/wxwindows_4.RULE index 50061d7275c..a6af28af33c 100644 --- a/src/licensedcode/data/rules/wxwindows_4.RULE +++ b/src/licensedcode/data/rules/wxwindows_4.RULE @@ -1,4 +1,9 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +--- + wxWidgets comes with no guarantees and doesn't claim" to be suitable for any purpose." " -Read the wxWindows Licence on licencing conditions." +Read the wxWindows Licence on licencing conditions." \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_4.yml b/src/licensedcode/data/rules/wxwindows_4.yml deleted file mode 100644 index 945cb25e0b0..00000000000 --- a/src/licensedcode/data/rules/wxwindows_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/wxwindows_5.RULE b/src/licensedcode/data/rules/wxwindows_5.RULE index 607a985f9da..a1796be6da5 100644 --- a/src/licensedcode/data/rules/wxwindows_5.RULE +++ b/src/licensedcode/data/rules/wxwindows_5.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + This script is under the wxWindows licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_5.yml b/src/licensedcode/data/rules/wxwindows_5.yml deleted file mode 100644 index d2ad27fb11e..00000000000 --- a/src/licensedcode/data/rules/wxwindows_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_6.RULE b/src/licensedcode/data/rules/wxwindows_6.RULE index b429341b1a0..fdd0622a616 100644 --- a/src/licensedcode/data/rules/wxwindows_6.RULE +++ b/src/licensedcode/data/rules/wxwindows_6.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_notice: yes +relevance: 100 +--- + is under the wxWindows licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_6.yml b/src/licensedcode/data/rules/wxwindows_6.yml deleted file mode 100644 index d2ad27fb11e..00000000000 --- a/src/licensedcode/data/rules/wxwindows_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_7.RULE b/src/licensedcode/data/rules/wxwindows_7.RULE index 00e5a6b4a3f..aec37413c9e 100644 --- a/src/licensedcode/data/rules/wxwindows_7.RULE +++ b/src/licensedcode/data/rules/wxwindows_7.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + wxWindows licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_7.yml b/src/licensedcode/data/rules/wxwindows_7.yml deleted file mode 100644 index cf2762143f3..00000000000 --- a/src/licensedcode/data/rules/wxwindows_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/wxwindows_8.RULE b/src/licensedcode/data/rules/wxwindows_8.RULE index f724011ba32..5477f94292b 100644 --- a/src/licensedcode/data/rules/wxwindows_8.RULE +++ b/src/licensedcode/data/rules/wxwindows_8.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_tag: yes +relevance: 99 +--- + Licence: wxWindows license \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_8.yml b/src/licensedcode/data/rules/wxwindows_8.yml deleted file mode 100644 index e73453e5737..00000000000 --- a/src/licensedcode/data/rules/wxwindows_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/wxwindows_9.RULE b/src/licensedcode/data/rules/wxwindows_9.RULE index 667f3fee802..0e0097848b6 100644 --- a/src/licensedcode/data/rules/wxwindows_9.RULE +++ b/src/licensedcode/data/rules/wxwindows_9.RULE @@ -1 +1,7 @@ +--- +license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 +is_license_reference: yes +relevance: 100 +--- + wxWindows license \ No newline at end of file diff --git a/src/licensedcode/data/rules/wxwindows_9.yml b/src/licensedcode/data/rules/wxwindows_9.yml deleted file mode 100644 index cf2762143f3..00000000000 --- a/src/licensedcode/data/rules/wxwindows_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.0-plus WITH wxwindows-exception-3.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-adobe-dec_1.RULE b/src/licensedcode/data/rules/x11-adobe-dec_1.RULE index 4f0290539b3..ec183dec9b7 100644 --- a/src/licensedcode/data/rules/x11-adobe-dec_1.RULE +++ b/src/licensedcode/data/rules/x11-adobe-dec_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-adobe-dec +is_license_notice: yes +--- + Adobe Systems Digital Equipment Corporation @@ -16,5 +21,4 @@ advertising or publicity pertaining to distribution of the software without specific, written prior permission. Adobe Systems and Digital Equipment Corporation make no representations about the suitability of this software for any purpose. It is provided "as -is" without express or implied warranty. - +is" without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-adobe-dec_1.yml b/src/licensedcode/data/rules/x11-adobe-dec_1.yml deleted file mode 100644 index b6ac48322a7..00000000000 --- a/src/licensedcode/data/rules/x11-adobe-dec_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-adobe-dec -is_license_notice: yes diff --git a/src/licensedcode/data/rules/x11-bitstream_1.RULE b/src/licensedcode/data/rules/x11-bitstream_1.RULE index ddea2930e26..fc9c04237fe 100644 --- a/src/licensedcode/data/rules/x11-bitstream_1.RULE +++ b/src/licensedcode/data/rules/x11-bitstream_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-bitstream +is_license_notice: yes +relevance: 95 +minimum_coverage: 70 +--- + The names "Bitstream" and "Charter" are registered trademarks of Bitstream, Inc. Permission to use these trademarks is hereby granted only in association with the images described in this file. diff --git a/src/licensedcode/data/rules/x11-bitstream_1.yml b/src/licensedcode/data/rules/x11-bitstream_1.yml deleted file mode 100644 index b72a79900d0..00000000000 --- a/src/licensedcode/data/rules/x11-bitstream_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-bitstream -is_license_notice: yes -relevance: 95 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/x11-bitstream_2.RULE b/src/licensedcode/data/rules/x11-bitstream_2.RULE index ec925d9a45b..1bd17c24778 100644 --- a/src/licensedcode/data/rules/x11-bitstream_2.RULE +++ b/src/licensedcode/data/rules/x11-bitstream_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-bitstream +is_license_notice: yes +relevance: 100 +--- + You are hereby granted permission under all Bitstream propriety rights to use, copy, modify, sublicense, sell, and redistribute the 4 Bitstream Charter (r) Type 1 outline fonts and the 4 Courier Type 1 outline fonts diff --git a/src/licensedcode/data/rules/x11-bitstream_2.yml b/src/licensedcode/data/rules/x11-bitstream_2.yml deleted file mode 100644 index 2188baed36e..00000000000 --- a/src/licensedcode/data/rules/x11-bitstream_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-bitstream -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-bitstream_3.RULE b/src/licensedcode/data/rules/x11-bitstream_3.RULE index 5b3cad07ed0..b9c8e9c440f 100644 --- a/src/licensedcode/data/rules/x11-bitstream_3.RULE +++ b/src/licensedcode/data/rules/x11-bitstream_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-bitstream +is_license_notice: yes +relevance: 100 +--- + You are hereby {{granted permission under all Bitstream propriety rights to use, copy, modify, sublicense, sell, and redistribute}} the 4 Bitstream Charter (r) Type 1 outline {{fonts}} and the 4 Courier Type 1 outline fonts @@ -6,4 +12,4 @@ left intact on all copies of such fonts and that Bitstream's trademark is acknowledged as shown below on all unmodified copies of the 4 Charter Type 1 fonts. -BITSTREAM CHARTER is a registered trademark of Bitstream Inc. +BITSTREAM CHARTER is a registered trademark of Bitstream Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-bitstream_3.yml b/src/licensedcode/data/rules/x11-bitstream_3.yml deleted file mode 100644 index 2188baed36e..00000000000 --- a/src/licensedcode/data/rules/x11-bitstream_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-bitstream -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-bitstream_4.RULE b/src/licensedcode/data/rules/x11-bitstream_4.RULE index 3ba7ce1bf71..5464781f2eb 100644 --- a/src/licensedcode/data/rules/x11-bitstream_4.RULE +++ b/src/licensedcode/data/rules/x11-bitstream_4.RULE @@ -1,2 +1,11 @@ +--- +license_expression: x11-bitstream +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +ignorable_urls: + - http://xorg.freedesktop.org/releases/individual/font/ +--- + This package contains the font-bitstream-type1 tarball downloaded from http://xorg.freedesktop.org/releases/individual/font/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-bitstream_4.yml b/src/licensedcode/data/rules/x11-bitstream_4.yml deleted file mode 100644 index ff49264519e..00000000000 --- a/src/licensedcode/data/rules/x11-bitstream_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-bitstream -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 -ignorable_urls: - - http://xorg.freedesktop.org/releases/individual/font/ diff --git a/src/licensedcode/data/rules/x11-dec1_1.RULE b/src/licensedcode/data/rules/x11-dec1_1.RULE index 5b061789c20..44ac5ba69ce 100644 --- a/src/licensedcode/data/rules/x11-dec1_1.RULE +++ b/src/licensedcode/data/rules/x11-dec1_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-dec1 +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that @@ -12,4 +17,4 @@ FITNESS, IN NO EVENT SHALL THEY BE LIABLE FOR ANY SPECIAL, 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. +PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-dec1_1.yml b/src/licensedcode/data/rules/x11-dec1_1.yml deleted file mode 100644 index d98373a8058..00000000000 --- a/src/licensedcode/data/rules/x11-dec1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-dec1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-dec1_2.RULE b/src/licensedcode/data/rules/x11-dec1_2.RULE index 90f390062a6..17eab0952a7 100644 --- a/src/licensedcode/data/rules/x11-dec1_2.RULE +++ b/src/licensedcode/data/rules/x11-dec1_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-dec1 +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, @@ -13,4 +18,4 @@ FITNESS, IN NO EVENT SHALL THEY BE LIABLE FOR ANY SPECIAL, 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. +PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-dec1_2.yml b/src/licensedcode/data/rules/x11-dec1_2.yml deleted file mode 100644 index d98373a8058..00000000000 --- a/src/licensedcode/data/rules/x11-dec1_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-dec1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-dec1_3.RULE b/src/licensedcode/data/rules/x11-dec1_3.RULE index b4925d54220..9a53dc34776 100644 --- a/src/licensedcode/data/rules/x11-dec1_3.RULE +++ b/src/licensedcode/data/rules/x11-dec1_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-dec1 +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/x11-dec1_3.yml b/src/licensedcode/data/rules/x11-dec1_3.yml deleted file mode 100644 index 1447a3e53cb..00000000000 --- a/src/licensedcode/data/rules/x11-dec1_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-dec1 -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-doc.RULE b/src/licensedcode/data/rules/x11-doc.RULE index 7058eda5d8c..9c8f5238f02 100644 --- a/src/licensedcode/data/rules/x11-doc.RULE +++ b/src/licensedcode/data/rules/x11-doc.RULE @@ -1,7 +1,12 @@ +--- +license_expression: x11-doc +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this documentation for any purpose is hereby granted without fee, provided that the above copyright notice and this permission notice appear in all copies. Digital Equipment Corporation makes no representations about the suitability for any purpose of the information in this document. This documentation is -provided ``as is'' without express or implied warranty. +provided ``as is'' without express or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-doc.yml b/src/licensedcode/data/rules/x11-doc.yml deleted file mode 100644 index 3c2cbcd5b08..00000000000 --- a/src/licensedcode/data/rules/x11-doc.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-doc -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-doc_1.RULE b/src/licensedcode/data/rules/x11-doc_1.RULE index 306264272d9..9438b0d811f 100644 --- a/src/licensedcode/data/rules/x11-doc_1.RULE +++ b/src/licensedcode/data/rules/x11-doc_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-doc +is_license_text: yes +relevance: 99 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this documentation for any purpose and without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. diff --git a/src/licensedcode/data/rules/x11-doc_1.yml b/src/licensedcode/data/rules/x11-doc_1.yml deleted file mode 100644 index 22a62bd764f..00000000000 --- a/src/licensedcode/data/rules/x11-doc_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-doc -is_license_text: yes -relevance: 99 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-fsf_1.RULE b/src/licensedcode/data/rules/x11-fsf_1.RULE index 092a61a74a7..7f0adfcf38f 100644 --- a/src/licensedcode/data/rules/x11-fsf_1.RULE +++ b/src/licensedcode/data/rules/x11-fsf_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-fsf +is_license_text: yes +relevance: 100 +minimum_coverage: 70 +--- + Some code is licensed under a MIT-style license to the following copyright holders: @@ -23,4 +30,4 @@ * Except as contained in this notice, the name(s) of the above copyright * * holders shall not be used in advertising or otherwise to promote the * * sale, use or other dealings in this Software without prior written * - * authorization. * + * authorization. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-fsf_1.yml b/src/licensedcode/data/rules/x11-fsf_1.yml deleted file mode 100644 index d706c629a6c..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-fsf -is_license_text: yes -relevance: 100 -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/x11-fsf_10.RULE b/src/licensedcode/data/rules/x11-fsf_10.RULE index 3395efb9743..48348b5e000 100644 --- a/src/licensedcode/data/rules/x11-fsf_10.RULE +++ b/src/licensedcode/data/rules/x11-fsf_10.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-fsf +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/X11-distribute-modifications-variant +--- + LICENSE {{X11-distribute-modifications-variant}} https://spdx.org/licenses/X11-distribute-modifications-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-fsf_10.yml b/src/licensedcode/data/rules/x11-fsf_10.yml deleted file mode 100644 index 7e17bbcc5fc..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-fsf -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/X11-distribute-modifications-variant diff --git a/src/licensedcode/data/rules/x11-fsf_11.RULE b/src/licensedcode/data/rules/x11-fsf_11.RULE index ee6a091fa68..759f2070548 100644 --- a/src/licensedcode/data/rules/x11-fsf_11.RULE +++ b/src/licensedcode/data/rules/x11-fsf_11.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-fsf +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/X11-distribute-modifications-variant +--- + {{X11-distribute-modifications-variant}} https://spdx.org/licenses/X11-distribute-modifications-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-fsf_11.yml b/src/licensedcode/data/rules/x11-fsf_11.yml deleted file mode 100644 index 7e17bbcc5fc..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-fsf -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/X11-distribute-modifications-variant diff --git a/src/licensedcode/data/rules/x11-fsf_2.RULE b/src/licensedcode/data/rules/x11-fsf_2.RULE index f626bb28e44..365dda0833a 100644 --- a/src/licensedcode/data/rules/x11-fsf_2.RULE +++ b/src/licensedcode/data/rules/x11-fsf_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: x11-fsf +is_license_text: yes +relevance: 99 +notes: the no advert paragraph has its position switched with the warranty disclaimer in this + variant. The texts are otherwise essentially the same See https://github.com/achillean/shodan-python/blob/90491308971a7ba6e358d6152d7b02307964c6fe/LICENSE +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without diff --git a/src/licensedcode/data/rules/x11-fsf_2.yml b/src/licensedcode/data/rules/x11-fsf_2.yml deleted file mode 100644 index 39cd3d6cc1d..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-fsf -is_license_text: yes -relevance: 99 -notes: the no advert paragraph has its position switched with the warranty disclaimer in this - variant. The texts are otherwise essentially the same See https://github.com/achillean/shodan-python/blob/90491308971a7ba6e358d6152d7b02307964c6fe/LICENSE diff --git a/src/licensedcode/data/rules/x11-fsf_3.RULE b/src/licensedcode/data/rules/x11-fsf_3.RULE index 09d82ffcbf8..230681afe27 100644 --- a/src/licensedcode/data/rules/x11-fsf_3.RULE +++ b/src/licensedcode/data/rules/x11-fsf_3.RULE @@ -1 +1,8 @@ +--- +license_expression: x11-fsf +is_license_tag: yes +relevance: 90 +notes: seen in http://invisible-island.net/ncurses/ncurses.html copyright file +--- + Licence: X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-fsf_3.yml b/src/licensedcode/data/rules/x11-fsf_3.yml deleted file mode 100644 index b902459d0b2..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-fsf -is_license_tag: yes -relevance: 90 -notes: seen in http://invisible-island.net/ncurses/ncurses.html copyright file diff --git a/src/licensedcode/data/rules/x11-fsf_4.RULE b/src/licensedcode/data/rules/x11-fsf_4.RULE index b386f2817a7..88c52a26620 100644 --- a/src/licensedcode/data/rules/x11-fsf_4.RULE +++ b/src/licensedcode/data/rules/x11-fsf_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-fsf +is_license_text: yes +relevance: 100 +--- + Licence: X11 Permission is hereby granted, free of charge, to any person obtaining a diff --git a/src/licensedcode/data/rules/x11-fsf_4.yml b/src/licensedcode/data/rules/x11-fsf_4.yml deleted file mode 100644 index 4b95ed356bb..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-fsf -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-fsf_5.RULE b/src/licensedcode/data/rules/x11-fsf_5.RULE index 22c95e9e050..ece06573e07 100644 --- a/src/licensedcode/data/rules/x11-fsf_5.RULE +++ b/src/licensedcode/data/rules/x11-fsf_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-fsf +is_license_text: yes +relevance: 100 +notes: Seen in FreeBSD +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/x11-fsf_5.yml b/src/licensedcode/data/rules/x11-fsf_5.yml deleted file mode 100644 index 38adfb6b6c8..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-fsf -is_license_text: yes -relevance: 100 -notes: Seen in FreeBSD diff --git a/src/licensedcode/data/rules/x11-fsf_6.RULE b/src/licensedcode/data/rules/x11-fsf_6.RULE index d11499de6ad..6de6c85655c 100644 --- a/src/licensedcode/data/rules/x11-fsf_6.RULE +++ b/src/licensedcode/data/rules/x11-fsf_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-fsf +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/x11-fsf_6.yml b/src/licensedcode/data/rules/x11-fsf_6.yml deleted file mode 100644 index 4b95ed356bb..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-fsf -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-fsf_7.RULE b/src/licensedcode/data/rules/x11-fsf_7.RULE index 37d44771cd3..dc003045ae8 100644 --- a/src/licensedcode/data/rules/x11-fsf_7.RULE +++ b/src/licensedcode/data/rules/x11-fsf_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-fsf +is_license_text: yes +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/x11-fsf_7.yml b/src/licensedcode/data/rules/x11-fsf_7.yml deleted file mode 100644 index 2d4b094bac2..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-fsf -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-fsf_8.RULE b/src/licensedcode/data/rules/x11-fsf_8.RULE index a4f9ae22261..2a3f28f3155 100644 --- a/src/licensedcode/data/rules/x11-fsf_8.RULE +++ b/src/licensedcode/data/rules/x11-fsf_8.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-fsf +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/X11-distribute-modifications-variant +--- + https://licenses.nuget.org/X11-distribute-modifications-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-fsf_8.yml b/src/licensedcode/data/rules/x11-fsf_8.yml deleted file mode 100644 index 87c0d0d17f3..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-fsf -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/X11-distribute-modifications-variant diff --git a/src/licensedcode/data/rules/x11-fsf_9.RULE b/src/licensedcode/data/rules/x11-fsf_9.RULE index acf50abe40c..496c68d7908 100644 --- a/src/licensedcode/data/rules/x11-fsf_9.RULE +++ b/src/licensedcode/data/rules/x11-fsf_9.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-fsf +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/X11-distribute-modifications-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-fsf_9.yml b/src/licensedcode/data/rules/x11-fsf_9.yml deleted file mode 100644 index 359add949eb..00000000000 --- a/src/licensedcode/data/rules/x11-fsf_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-fsf -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-hanson2.RULE b/src/licensedcode/data/rules/x11-hanson2.RULE index 77ee8223158..10329592bc8 100644 --- a/src/licensedcode/data/rules/x11-hanson2.RULE +++ b/src/licensedcode/data/rules/x11-hanson2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-hanson +is_license_text: yes +relevance: 99 +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy diff --git a/src/licensedcode/data/rules/x11-hanson2.yml b/src/licensedcode/data/rules/x11-hanson2.yml deleted file mode 100644 index e73002abe2a..00000000000 --- a/src/licensedcode/data/rules/x11-hanson2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-hanson -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/x11-hanson_1.RULE b/src/licensedcode/data/rules/x11-hanson_1.RULE index 3695addb5d4..0dad18c18d2 100644 --- a/src/licensedcode/data/rules/x11-hanson_1.RULE +++ b/src/licensedcode/data/rules/x11-hanson_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-hanson +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +--- + The files in this directory are subject to the following license. The author of this software diff --git a/src/licensedcode/data/rules/x11-hanson_1.yml b/src/licensedcode/data/rules/x11-hanson_1.yml deleted file mode 100644 index 0e65c9ac26a..00000000000 --- a/src/licensedcode/data/rules/x11-hanson_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-hanson -is_license_text: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/x11-keith-packard.RULE b/src/licensedcode/data/rules/x11-keith-packard.RULE index ce08759b4e2..1903f195268 100644 --- a/src/licensedcode/data/rules/x11-keith-packard.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that @@ -14,4 +19,4 @@ EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, 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. +PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard.yml b/src/licensedcode/data/rules/x11-keith-packard.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard2.RULE b/src/licensedcode/data/rules/x11-keith-packard2.RULE index 012cc422c40..0e4e787464d 100644 --- a/src/licensedcode/data/rules/x11-keith-packard2.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +minimum_coverage: 80 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this @@ -15,4 +21,4 @@ THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, 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. +THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard2.yml b/src/licensedcode/data/rules/x11-keith-packard2.yml deleted file mode 100644 index 43d2452ad14..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/x11-keith-packard3.RULE b/src/licensedcode/data/rules/x11-keith-packard3.RULE index 0419ea92e9c..555238c52f1 100644 --- a/src/licensedcode/data/rules/x11-keith-packard3.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this @@ -15,4 +20,4 @@ CARNEGIE MELLON UNIVERSITY BE LIABLE FOR ANY SPECIAL, 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. +THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard3.yml b/src/licensedcode/data/rules/x11-keith-packard3.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard4.RULE b/src/licensedcode/data/rules/x11-keith-packard4.RULE index 5cfac32ae16..58d39d6767a 100644 --- a/src/licensedcode/data/rules/x11-keith-packard4.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that @@ -14,4 +19,4 @@ EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, 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. +PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard4.yml b/src/licensedcode/data/rules/x11-keith-packard4.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard5.RULE b/src/licensedcode/data/rules/x11-keith-packard5.RULE index 696dd8e8289..32fab17ed9f 100644 --- a/src/licensedcode/data/rules/x11-keith-packard5.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +minimum_coverage: 85 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright @@ -14,4 +20,4 @@ EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, 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. +OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard5.yml b/src/licensedcode/data/rules/x11-keith-packard5.yml deleted file mode 100644 index d3d3979ea6b..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/x11-keith-packard6.RULE b/src/licensedcode/data/rules/x11-keith-packard6.RULE index e92d0a6522c..ae85adece42 100644 --- a/src/licensedcode/data/rules/x11-keith-packard6.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that @@ -14,4 +19,4 @@ 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. + PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard6.yml b/src/licensedcode/data/rules/x11-keith-packard6.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard7.RULE b/src/licensedcode/data/rules/x11-keith-packard7.RULE index 8c1a936e306..5cc0cb79350 100644 --- a/src/licensedcode/data/rules/x11-keith-packard7.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +minimum_coverage: 85 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appears in all copies and @@ -14,4 +20,4 @@ EVENT SHALL BE LIABLE FOR ANY SPECIAL, 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. +PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard7.yml b/src/licensedcode/data/rules/x11-keith-packard7.yml deleted file mode 100644 index d3d3979ea6b..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -minimum_coverage: 85 diff --git a/src/licensedcode/data/rules/x11-keith-packard8.RULE b/src/licensedcode/data/rules/x11-keith-packard8.RULE index f097cb367e9..65351c55890 100644 --- a/src/licensedcode/data/rules/x11-keith-packard8.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard8.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that @@ -14,4 +19,4 @@ 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. + PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard8.yml b/src/licensedcode/data/rules/x11-keith-packard8.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard8.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard_1.RULE b/src/licensedcode/data/rules/x11-keith-packard_1.RULE index c3d875c52f6..8beca897b54 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_1.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that @@ -15,4 +20,4 @@ INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, 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 ACTIONS, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -SOFTWARE. +SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_1.yml b/src/licensedcode/data/rules/x11-keith-packard_1.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard_10.RULE b/src/licensedcode/data/rules/x11-keith-packard_10.RULE index 977953ebcde..c6d9a4d275a 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_10.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_10.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_10.yml b/src/licensedcode/data/rules/x11-keith-packard_10.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_10.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_11.RULE b/src/licensedcode/data/rules/x11-keith-packard_11.RULE index 01f43506577..54ad1487fe8 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_11.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_11.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_11.yml b/src/licensedcode/data/rules/x11-keith-packard_11.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_12.RULE b/src/licensedcode/data/rules/x11-keith-packard_12.RULE index e191d2ad44b..33a4dfdb325 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_12.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that @@ -15,4 +20,4 @@ EVENT SHALL GTCO-CALCOMP BE LIABLE FOR ANY SPECIAL, 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 ACTIONS, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. +PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_12.yml b/src/licensedcode/data/rules/x11-keith-packard_12.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard_13.RULE b/src/licensedcode/data/rules/x11-keith-packard_13.RULE index 53c583ec240..f07dbbc36d6 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_13.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_13.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_13.yml b/src/licensedcode/data/rules/x11-keith-packard_13.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_13.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_14.RULE b/src/licensedcode/data/rules/x11-keith-packard_14.RULE index d9a2d03604c..8f11272f550 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_14.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_14.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/x11-keith-packard_14.yml b/src/licensedcode/data/rules/x11-keith-packard_14.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_14.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_15.RULE b/src/licensedcode/data/rules/x11-keith-packard_15.RULE index f6eaad0cdbd..a930b5899f9 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_15.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_15.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/x11-keith-packard_15.yml b/src/licensedcode/data/rules/x11-keith-packard_15.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_15.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_16.RULE b/src/licensedcode/data/rules/x11-keith-packard_16.RULE index 128ff4a8715..198679aa001 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_16.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_16.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/x11-keith-packard_16.yml b/src/licensedcode/data/rules/x11-keith-packard_16.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_17.RULE b/src/licensedcode/data/rules/x11-keith-packard_17.RULE index f823f1b765c..5a19712e171 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_17.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 95 +notes: there are some minor variations onthe reference text +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright diff --git a/src/licensedcode/data/rules/x11-keith-packard_17.yml b/src/licensedcode/data/rules/x11-keith-packard_17.yml deleted file mode 100644 index c900438dd23..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 95 -notes: there are some minor variations onthe reference text diff --git a/src/licensedcode/data/rules/x11-keith-packard_18.RULE b/src/licensedcode/data/rules/x11-keith-packard_18.RULE index d05c54cf36f..1542dd4dca6 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_18.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_18.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_18.yml b/src/licensedcode/data/rules/x11-keith-packard_18.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_19.RULE b/src/licensedcode/data/rules/x11-keith-packard_19.RULE index 77e2091e0b5..6cc1d270713 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_19.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_19.yml b/src/licensedcode/data/rules/x11-keith-packard_19.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_2.RULE b/src/licensedcode/data/rules/x11-keith-packard_2.RULE index 7cff9187952..2f3f36f3a60 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_2.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 95 +notes: there are some minor variations onthe reference text +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/x11-keith-packard_2.yml b/src/licensedcode/data/rules/x11-keith-packard_2.yml deleted file mode 100644 index c900438dd23..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 95 -notes: there are some minor variations onthe reference text diff --git a/src/licensedcode/data/rules/x11-keith-packard_20.RULE b/src/licensedcode/data/rules/x11-keith-packard_20.RULE index c048acfb319..eb6ae53add8 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_20.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/x11-keith-packard_20.yml b/src/licensedcode/data/rules/x11-keith-packard_20.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_21.RULE b/src/licensedcode/data/rules/x11-keith-packard_21.RULE index e213e13276e..1806c81928e 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_21.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_21.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/x11-keith-packard_21.yml b/src/licensedcode/data/rules/x11-keith-packard_21.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_21.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_22.RULE b/src/licensedcode/data/rules/x11-keith-packard_22.RULE index 08eeda9f1ba..e3fa630e592 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_22.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_22.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_22.yml b/src/licensedcode/data/rules/x11-keith-packard_22.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_22.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_23.RULE b/src/licensedcode/data/rules/x11-keith-packard_23.RULE index 991e27b1107..0ad3eddd75b 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_23.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_23.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/x11-keith-packard_23.yml b/src/licensedcode/data/rules/x11-keith-packard_23.yml deleted file mode 100644 index 6bed7c33aa8..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_24.RULE b/src/licensedcode/data/rules/x11-keith-packard_24.RULE index 14690a0edcd..23e2846d582 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_24.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_24.yml b/src/licensedcode/data/rules/x11-keith-packard_24.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_25.RULE b/src/licensedcode/data/rules/x11-keith-packard_25.RULE index 0ce1851946b..0b4e0fb4657 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_25.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/x11-keith-packard_25.yml b/src/licensedcode/data/rules/x11-keith-packard_25.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_26.RULE b/src/licensedcode/data/rules/x11-keith-packard_26.RULE index 34df02f0bdb..1b33d0bdc83 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_26.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_26.yml b/src/licensedcode/data/rules/x11-keith-packard_26.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_27.RULE b/src/licensedcode/data/rules/x11-keith-packard_27.RULE index bc5ffe28f7f..b831d890095 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_27.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 99 +notes: references Intel instead of Keith Packard. Seen in cairo. +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies diff --git a/src/licensedcode/data/rules/x11-keith-packard_27.yml b/src/licensedcode/data/rules/x11-keith-packard_27.yml deleted file mode 100644 index 540666b84b5..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 99 -notes: references Intel instead of Keith Packard. Seen in cairo. diff --git a/src/licensedcode/data/rules/x11-keith-packard_28.RULE b/src/licensedcode/data/rules/x11-keith-packard_28.RULE index e83e6cfce5e..8d318125a09 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_28.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_28.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Historical Permission Notice and Disclaimer - sell variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_28.yml b/src/licensedcode/data/rules/x11-keith-packard_28.yml deleted file mode 100644 index 3b96e71d5b8..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_28.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-keith-packard_29.RULE b/src/licensedcode/data/rules/x11-keith-packard_29.RULE index 61c589c97f3..ad551cf1cb7 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_29.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_29.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Historical Permission Notice and Disclaimer - sell variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_29.yml b/src/licensedcode/data/rules/x11-keith-packard_29.yml deleted file mode 100644 index 3b96e71d5b8..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_29.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-keith-packard_3.RULE b/src/licensedcode/data/rules/x11-keith-packard_3.RULE index 2e7f11aa361..042f07117c7 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_3.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_3.yml b/src/licensedcode/data/rules/x11-keith-packard_3.yml deleted file mode 100644 index 8d00a00d77f..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-keith-packard_30.RULE b/src/licensedcode/data/rules/x11-keith-packard_30.RULE index cb1ae49429f..0062970774c 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_30.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_30.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + HPND-sell-variant Historical Permission Notice and Disclaimer - sell variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_30.yml b/src/licensedcode/data/rules/x11-keith-packard_30.yml deleted file mode 100644 index 3b96e71d5b8..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_30.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-keith-packard_31.RULE b/src/licensedcode/data/rules/x11-keith-packard_31.RULE index b9b261b0855..c7e511920d4 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_31.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_31.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Historical Permission Notice and Disclaimer - sell variant HPND-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_31.yml b/src/licensedcode/data/rules/x11-keith-packard_31.yml deleted file mode 100644 index 3b96e71d5b8..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-keith-packard_32.RULE b/src/licensedcode/data/rules/x11-keith-packard_32.RULE index 717b904eb15..c8a36ce2fe3 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_32.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_32.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: HPND-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_32.yml b/src/licensedcode/data/rules/x11-keith-packard_32.yml deleted file mode 100644 index 737d9528646..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-keith-packard -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-keith-packard_33.RULE b/src/licensedcode/data/rules/x11-keith-packard_33.RULE index 10b741f9fb1..a9138b8dcc6 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_33.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_33.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Historical Permission Notice and Disclaimer - sell variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_33.yml b/src/licensedcode/data/rules/x11-keith-packard_33.yml deleted file mode 100644 index 737d9528646..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-keith-packard -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-keith-packard_34.RULE b/src/licensedcode/data/rules/x11-keith-packard_34.RULE index 40302022023..ac523eb06fa 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_34.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_34.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: HPND-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_34.yml b/src/licensedcode/data/rules/x11-keith-packard_34.yml deleted file mode 100644 index 737d9528646..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-keith-packard -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-keith-packard_35.RULE b/src/licensedcode/data/rules/x11-keith-packard_35.RULE index 7c4c6507639..b2d4d20d682 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_35.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_35.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + HPND-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_35.yml b/src/licensedcode/data/rules/x11-keith-packard_35.yml deleted file mode 100644 index fa40e4aaf90..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/x11-keith-packard_36.RULE b/src/licensedcode/data/rules/x11-keith-packard_36.RULE index 897a2931f78..a59dca4a059 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_36.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_36.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/HPND-sell-variant +--- + https://licenses.nuget.org/HPND-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_36.yml b/src/licensedcode/data/rules/x11-keith-packard_36.yml deleted file mode 100644 index 7f210108bc0..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_36.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/HPND-sell-variant diff --git a/src/licensedcode/data/rules/x11-keith-packard_37.RULE b/src/licensedcode/data/rules/x11-keith-packard_37.RULE index eca21878899..8779dfcb84a 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_37.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_37.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/HPND-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_37.yml b/src/licensedcode/data/rules/x11-keith-packard_37.yml deleted file mode 100644 index 7cc916fe259..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-keith-packard_38.RULE b/src/licensedcode/data/rules/x11-keith-packard_38.RULE index e039efd1946..35fae9f3be5 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_38.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_38.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/HPND-sell-variant +--- + LICENSE {{HPND-sell-variant}} https://spdx.org/licenses/HPND-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_38.yml b/src/licensedcode/data/rules/x11-keith-packard_38.yml deleted file mode 100644 index d50acdbf001..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/HPND-sell-variant diff --git a/src/licensedcode/data/rules/x11-keith-packard_39.RULE b/src/licensedcode/data/rules/x11-keith-packard_39.RULE index bdcaacc007a..9c0100dd7ff 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_39.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_39.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/HPND-sell-variant +--- + {{HPND-sell-variant}} https://spdx.org/licenses/HPND-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_39.yml b/src/licensedcode/data/rules/x11-keith-packard_39.yml deleted file mode 100644 index d50acdbf001..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/HPND-sell-variant diff --git a/src/licensedcode/data/rules/x11-keith-packard_4.RULE b/src/licensedcode/data/rules/x11-keith-packard_4.RULE index ee9cd098206..2448289f8de 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_4.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/x11-keith-packard_4.yml b/src/licensedcode/data/rules/x11-keith-packard_4.yml deleted file mode 100644 index 20acc3f5068..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/x11-keith-packard_5.RULE b/src/licensedcode/data/rules/x11-keith-packard_5.RULE index 780ae08d6d3..352abae110f 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_5.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_5.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +minimum_coverage: 90 +--- + License: MIT Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, diff --git a/src/licensedcode/data/rules/x11-keith-packard_5.yml b/src/licensedcode/data/rules/x11-keith-packard_5.yml deleted file mode 100644 index 20acc3f5068..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_5.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/x11-keith-packard_6.RULE b/src/licensedcode/data/rules/x11-keith-packard_6.RULE index 7fa3e93ab82..d0305a51b40 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_6.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies diff --git a/src/licensedcode/data/rules/x11-keith-packard_6.yml b/src/licensedcode/data/rules/x11-keith-packard_6.yml deleted file mode 100644 index 8d00a00d77f..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-keith-packard_7.RULE b/src/licensedcode/data/rules/x11-keith-packard_7.RULE index cbe6189d222..7cb37a219fd 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_7.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-keith-packard_7.yml b/src/licensedcode/data/rules/x11-keith-packard_7.yml deleted file mode 100644 index 8d00a00d77f..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-keith-packard_8.RULE b/src/licensedcode/data/rules/x11-keith-packard_8.RULE index cb3de8dd384..7916056287c 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_8.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_8.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/x11-keith-packard_8.yml b/src/licensedcode/data/rules/x11-keith-packard_8.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_9.RULE b/src/licensedcode/data/rules/x11-keith-packard_9.RULE index c5efcd5a889..7e7bd21cc23 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_9.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and diff --git a/src/licensedcode/data/rules/x11-keith-packard_9.yml b/src/licensedcode/data/rules/x11-keith-packard_9.yml deleted file mode 100644 index dbd6f604c82..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_6.RULE b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_6.RULE index 3677d84ca48..723bdf03c0a 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_6.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright @@ -11,4 +16,4 @@ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL BE LIABLE FOR ANY SPECIAL, 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. +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_6.yml b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_6.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_7.RULE b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_7.RULE index 1bbe77dfd61..c6014f57a7f 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_7.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_7.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright @@ -11,4 +16,4 @@ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL BE LIABLE FOR ANY SPECIAL, 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. +WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_7.yml b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_7.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_7.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_9.RULE b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_9.RULE index 33f62476370..e29e18ac509 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_9.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_9.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify and distribute or sell this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies[,] and that both [that] [the] @@ -13,4 +18,4 @@ INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS[,][.] IN NO EVENT SHALL BE LIABLE FOR ANY SPECIAL, 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.] +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/x11-keith-packard_historical-sell-variant_9.yml b/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_9.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_historical-sell-variant_9.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard_not_mit.RULE b/src/licensedcode/data/rules/x11-keith-packard_not_mit.RULE index e38c69ecbb3..18718ddec96 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_not_mit.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_not_mit.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +minimum_coverage: 90 +--- + License: MIT Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, @@ -15,4 +21,4 @@ License: MIT 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. + PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_not_mit.yml b/src/licensedcode/data/rules/x11-keith-packard_not_mit.yml deleted file mode 100644 index bd7c9f2359b..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_not_mit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/x11-keith-packard_original.RULE b/src/licensedcode/data/rules/x11-keith-packard_original.RULE index dae7df60434..895fdf9ce5b 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_original.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_original.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-keith-packard +is_license_text: yes +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright @@ -13,4 +18,4 @@ INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, 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. +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/x11-keith-packard_original.yml b/src/licensedcode/data/rules/x11-keith-packard_original.yml deleted file mode 100644 index 60c39e9b536..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_original.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-keith-packard -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-keith-packard_url_1.RULE b/src/licensedcode/data/rules/x11-keith-packard_url_1.RULE index b0bc3182279..ff50b0e3d99 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_url_1.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/hpnd-sell-variant +--- + https://spdx.org/licenses/hpnd-sell-variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_url_1.yml b/src/licensedcode/data/rules/x11-keith-packard_url_1.yml deleted file mode 100644 index 900b2ef5de6..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/hpnd-sell-variant diff --git a/src/licensedcode/data/rules/x11-keith-packard_url_2.RULE b/src/licensedcode/data/rules/x11-keith-packard_url_2.RULE index 21e11bfab03..99cb94fc124 100644 --- a/src/licensedcode/data/rules/x11-keith-packard_url_2.RULE +++ b/src/licensedcode/data/rules/x11-keith-packard_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-keith-packard +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/hpnd-sell-variant.html +--- + https://spdx.org/licenses/hpnd-sell-variant.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-keith-packard_url_2.yml b/src/licensedcode/data/rules/x11-keith-packard_url_2.yml deleted file mode 100644 index e85f4736715..00000000000 --- a/src/licensedcode/data/rules/x11-keith-packard_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-keith-packard -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/hpnd-sell-variant.html diff --git a/src/licensedcode/data/rules/x11-lucent.RULE b/src/licensedcode/data/rules/x11-lucent.RULE index 99aff581f40..f29978774f5 100644 --- a/src/licensedcode/data/rules/x11-lucent.RULE +++ b/src/licensedcode/data/rules/x11-lucent.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-lucent +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software and in all @@ -6,4 +11,4 @@ copies of the supporting documentation for such software. THIS SOFTWARE IS BEING PROVIDED AS IS, WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY -PARTICULAR PURPOSE. +PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-lucent.yml b/src/licensedcode/data/rules/x11-lucent.yml deleted file mode 100644 index 4e15d4c8867..00000000000 --- a/src/licensedcode/data/rules/x11-lucent.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-lucent -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-lucent_1.RULE b/src/licensedcode/data/rules/x11-lucent_1.RULE index c73cbc35709..1a65ebf5913 100644 --- a/src/licensedcode/data/rules/x11-lucent_1.RULE +++ b/src/licensedcode/data/rules/x11-lucent_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-lucent +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy @@ -6,4 +11,4 @@ documentation for such software. THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. +OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-lucent_1.yml b/src/licensedcode/data/rules/x11-lucent_1.yml deleted file mode 100644 index 4e15d4c8867..00000000000 --- a/src/licensedcode/data/rules/x11-lucent_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-lucent -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-lucent_2.RULE b/src/licensedcode/data/rules/x11-lucent_2.RULE index 7f53349db4a..ee1bcd66a6d 100644 --- a/src/licensedcode/data/rules/x11-lucent_2.RULE +++ b/src/licensedcode/data/rules/x11-lucent_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-lucent +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy @@ -6,4 +11,4 @@ documentation for such software. THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR MAKE ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY -OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. +OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-lucent_2.yml b/src/licensedcode/data/rules/x11-lucent_2.yml deleted file mode 100644 index 4e15d4c8867..00000000000 --- a/src/licensedcode/data/rules/x11-lucent_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-lucent -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-lucent_3.RULE b/src/licensedcode/data/rules/x11-lucent_3.RULE index 62284dd25dd..574858e5a9c 100644 --- a/src/licensedcode/data/rules/x11-lucent_3.RULE +++ b/src/licensedcode/data/rules/x11-lucent_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-lucent +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software and in all @@ -6,4 +11,4 @@ copies of the supporting documentation for such software. THIS SOFTWARE IS BEING PROVIDED AS IS, WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY -PARTICULAR PURPOSE. +PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-lucent_3.yml b/src/licensedcode/data/rules/x11-lucent_3.yml deleted file mode 100644 index 4e15d4c8867..00000000000 --- a/src/licensedcode/data/rules/x11-lucent_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-lucent -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-lucent_4.RULE b/src/licensedcode/data/rules/x11-lucent_4.RULE index f80352417cc..5d7a3d69c7e 100644 --- a/src/licensedcode/data/rules/x11-lucent_4.RULE +++ b/src/licensedcode/data/rules/x11-lucent_4.RULE @@ -1,3 +1,13 @@ +--- +license_expression: x11-lucent +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +notes: See https://github.com/9fans/plan9port/blob/master/unix/NOTICE.regexp and https://github.com/9fans/plan9port/blob/master/src/lib9/fmt/LICENSE + and https://github.com/9fans/plan9port/blob/master/src/lib9/utf/LICENSE +--- + There are a few exceptions: libutf, libfmt, and libregexp are distributed under simpler BSD-like boilerplates. See the LICENSE files in those directories. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-lucent_4.yml b/src/licensedcode/data/rules/x11-lucent_4.yml deleted file mode 100644 index af77fe579fb..00000000000 --- a/src/licensedcode/data/rules/x11-lucent_4.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: x11-lucent -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE -notes: See https://github.com/9fans/plan9port/blob/master/unix/NOTICE.regexp and https://github.com/9fans/plan9port/blob/master/src/lib9/fmt/LICENSE - and https://github.com/9fans/plan9port/blob/master/src/lib9/utf/LICENSE diff --git a/src/licensedcode/data/rules/x11-lucent_or_lucent-pl.RULE b/src/licensedcode/data/rules/x11-lucent_or_lucent-pl.RULE index c2b5a17a127..4d34c50a5a8 100644 --- a/src/licensedcode/data/rules/x11-lucent_or_lucent-pl.RULE +++ b/src/licensedcode/data/rules/x11-lucent_or_lucent-pl.RULE @@ -1,3 +1,13 @@ +--- +license_expression: x11-lucent OR lucent-pl-1.02 +is_license_notice: yes +notes: from https://9fans.github.io/usr/local/plan9/unix/NOTICE.utf +ignorable_urls: + - http://plan9.bell-labs.com/plan9dist/license.html +ignorable_emails: + - rsc@swtch.com +--- + * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice * is included in all copies of any software which is or includes a copy @@ -18,4 +28,4 @@ to Russ Cox . ---- This software is also made available under the Lucent Public License -version 1.02; see http://plan9.bell-labs.com/plan9dist/license.html +version 1.02; see http://plan9.bell-labs.com/plan9dist/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-lucent_or_lucent-pl.yml b/src/licensedcode/data/rules/x11-lucent_or_lucent-pl.yml deleted file mode 100644 index d9eaabb09a8..00000000000 --- a/src/licensedcode/data/rules/x11-lucent_or_lucent-pl.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: x11-lucent OR lucent-pl-1.02 -is_license_notice: yes -notes: from https://9fans.github.io/usr/local/plan9/unix/NOTICE.utf -ignorable_urls: - - http://plan9.bell-labs.com/plan9dist/license.html -ignorable_emails: - - rsc@swtch.com diff --git a/src/licensedcode/data/rules/x11-opengroup_1.RULE b/src/licensedcode/data/rules/x11-opengroup_1.RULE index 473f214b9fd..284bd51ab0e 100644 --- a/src/licensedcode/data/rules/x11-opengroup_1.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +minimum_coverage: 50 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that @@ -16,4 +22,4 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of The Open Group shall not be used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. +in this Software without prior written authorization from The Open Group. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_1.yml b/src/licensedcode/data/rules/x11-opengroup_1.yml deleted file mode 100644 index b2d47ae61a2..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-opengroup_10.RULE b/src/licensedcode/data/rules/x11-opengroup_10.RULE index 4d67024ea55..30f1a4eb0f2 100644 --- a/src/licensedcode/data/rules/x11-opengroup_10.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_10.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT Open Group variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_10.yml b/src/licensedcode/data/rules/x11-opengroup_10.yml deleted file mode 100644 index 3e7c486c214..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-opengroup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-opengroup_11.RULE b/src/licensedcode/data/rules/x11-opengroup_11.RULE index ba623afac86..73019c5e36d 100644 --- a/src/licensedcode/data/rules/x11-opengroup_11.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_11.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: MIT Open Group variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_11.yml b/src/licensedcode/data/rules/x11-opengroup_11.yml deleted file mode 100644 index 3e7c486c214..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-opengroup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-opengroup_12.RULE b/src/licensedcode/data/rules/x11-opengroup_12.RULE index 6ff5b5eb2cf..e4913be0a88 100644 --- a/src/licensedcode/data/rules/x11-opengroup_12.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_12.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT-open-group MIT Open Group variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_12.yml b/src/licensedcode/data/rules/x11-opengroup_12.yml deleted file mode 100644 index 3e7c486c214..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-opengroup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-opengroup_13.RULE b/src/licensedcode/data/rules/x11-opengroup_13.RULE index 0072a99396a..0c890880010 100644 --- a/src/licensedcode/data/rules/x11-opengroup_13.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_13.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + MIT Open Group variant MIT-open-group \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_13.yml b/src/licensedcode/data/rules/x11-opengroup_13.yml deleted file mode 100644 index 3e7c486c214..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-opengroup -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-opengroup_14.RULE b/src/licensedcode/data/rules/x11-opengroup_14.RULE index 74e94801a3d..05e4862ad22 100644 --- a/src/licensedcode/data/rules/x11-opengroup_14.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_14.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT-open-group \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_14.yml b/src/licensedcode/data/rules/x11-opengroup_14.yml deleted file mode 100644 index 18937819736..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-opengroup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-opengroup_15.RULE b/src/licensedcode/data/rules/x11-opengroup_15.RULE index 04a3c75b184..1aeffb55f3c 100644 --- a/src/licensedcode/data/rules/x11-opengroup_15.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_15.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: MIT Open Group variant \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_15.yml b/src/licensedcode/data/rules/x11-opengroup_15.yml deleted file mode 100644 index 18937819736..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-opengroup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-opengroup_16.RULE b/src/licensedcode/data/rules/x11-opengroup_16.RULE index c99675e0be1..b7d0240194a 100644 --- a/src/licensedcode/data/rules/x11-opengroup_16.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_16.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: MIT-open-group \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_16.yml b/src/licensedcode/data/rules/x11-opengroup_16.yml deleted file mode 100644 index 18937819736..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-opengroup -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-opengroup_17.RULE b/src/licensedcode/data/rules/x11-opengroup_17.RULE index 39fdd6de2d7..198dfa6a303 100644 --- a/src/licensedcode/data/rules/x11-opengroup_17.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_17.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_notice: yes +relevance: 90 +notes: truncated text +--- + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/x11-opengroup_17.yml b/src/licensedcode/data/rules/x11-opengroup_17.yml deleted file mode 100644 index b1ee0ad76c0..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_17.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-opengroup -is_license_notice: yes -relevance: 90 -notes: truncated text diff --git a/src/licensedcode/data/rules/x11-opengroup_18.RULE b/src/licensedcode/data/rules/x11-opengroup_18.RULE index 1d3409782dd..59429cd5018 100644 --- a/src/licensedcode/data/rules/x11-opengroup_18.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_18.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/MIT-open-group +--- + https://licenses.nuget.org/MIT-open-group \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_18.yml b/src/licensedcode/data/rules/x11-opengroup_18.yml deleted file mode 100644 index b620e363123..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/MIT-open-group diff --git a/src/licensedcode/data/rules/x11-opengroup_19.RULE b/src/licensedcode/data/rules/x11-opengroup_19.RULE index 8516be6dde7..fcf2f8fd81b 100644 --- a/src/licensedcode/data/rules/x11-opengroup_19.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_19.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-opengroup +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/MIT-open-group \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_19.yml b/src/licensedcode/data/rules/x11-opengroup_19.yml deleted file mode 100644 index 8a68e28720a..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-opengroup -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-opengroup_2.RULE b/src/licensedcode/data/rules/x11-opengroup_2.RULE index ec31d701c1a..36e1c8caa3f 100644 --- a/src/licensedcode/data/rules/x11-opengroup_2.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +relevance: 90 +minimum_coverage: 90 +notes: truncated text +--- + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/x11-opengroup_2.yml b/src/licensedcode/data/rules/x11-opengroup_2.yml deleted file mode 100644 index 52850a2a65f..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -relevance: 90 -minimum_coverage: 90 -notes: truncated text diff --git a/src/licensedcode/data/rules/x11-opengroup_20.RULE b/src/licensedcode/data/rules/x11-opengroup_20.RULE index f351c70ca40..871d0d94f8a 100644 --- a/src/licensedcode/data/rules/x11-opengroup_20.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_20.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-open-group +--- + {{MIT-open-group}} https://spdx.org/licenses/MIT-open-group \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_20.yml b/src/licensedcode/data/rules/x11-opengroup_20.yml deleted file mode 100644 index 6e36cc44a68..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-open-group diff --git a/src/licensedcode/data/rules/x11-opengroup_21.RULE b/src/licensedcode/data/rules/x11-opengroup_21.RULE index 1e4d1a08d25..779e10d3b23 100644 --- a/src/licensedcode/data/rules/x11-opengroup_21.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_21.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/MIT-open-group +--- + LICENSE {{MIT-open-group}} https://spdx.org/licenses/MIT-open-group \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-opengroup_21.yml b/src/licensedcode/data/rules/x11-opengroup_21.yml deleted file mode 100644 index 6e36cc44a68..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-opengroup -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/MIT-open-group diff --git a/src/licensedcode/data/rules/x11-opengroup_3.RULE b/src/licensedcode/data/rules/x11-opengroup_3.RULE index 04ad41e4d30..5b512599c02 100644 --- a/src/licensedcode/data/rules/x11-opengroup_3.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_3.RULE @@ -1,3 +1,12 @@ +--- +license_expression: x11-opengroup +is_license_notice: yes +relevance: 95 +notes: Seen in https://github.com/abiquo-rpms/anaconda-ee/blob/a4771519c87f4367397a8510a1dde159a8d2e71a/anaconda-ee-11.1.2.242/loader2/net.c + this is a truncated x11-opengroup where the top part has been removed. The full text should + have been there as here https://github.com/apple-open-source/macos/blob/68b497be3bea174e0dc28ca2801c725b2fcd2221/X11server/Xquartz/xorg-server-1.4.2-apple33/dix/window.c +--- + * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * diff --git a/src/licensedcode/data/rules/x11-opengroup_3.yml b/src/licensedcode/data/rules/x11-opengroup_3.yml deleted file mode 100644 index 61b1b0f3b9b..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-opengroup -is_license_notice: yes -relevance: 95 -notes: Seen in https://github.com/abiquo-rpms/anaconda-ee/blob/a4771519c87f4367397a8510a1dde159a8d2e71a/anaconda-ee-11.1.2.242/loader2/net.c - this is a truncated x11-opengroup where the top part has been removed. The full text should - have been there as here https://github.com/apple-open-source/macos/blob/68b497be3bea174e0dc28ca2801c725b2fcd2221/X11server/Xquartz/xorg-server-1.4.2-apple33/dix/window.c diff --git a/src/licensedcode/data/rules/x11-opengroup_4.RULE b/src/licensedcode/data/rules/x11-opengroup_4.RULE index 79fe2843c9a..04bea8763a4 100644 --- a/src/licensedcode/data/rules/x11-opengroup_4.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright diff --git a/src/licensedcode/data/rules/x11-opengroup_4.yml b/src/licensedcode/data/rules/x11-opengroup_4.yml deleted file mode 100644 index a4bb50c9eb4..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-opengroup_5.RULE b/src/licensedcode/data/rules/x11-opengroup_5.RULE index daf6121b6dd..cea01659f0b 100644 --- a/src/licensedcode/data/rules/x11-opengroup_5.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright diff --git a/src/licensedcode/data/rules/x11-opengroup_5.yml b/src/licensedcode/data/rules/x11-opengroup_5.yml deleted file mode 100644 index a4bb50c9eb4..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-opengroup_6.RULE b/src/licensedcode/data/rules/x11-opengroup_6.RULE index 82e0c8d48ab..af4f9fd973f 100644 --- a/src/licensedcode/data/rules/x11-opengroup_6.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_6.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +relevance: 100 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that diff --git a/src/licensedcode/data/rules/x11-opengroup_6.yml b/src/licensedcode/data/rules/x11-opengroup_6.yml deleted file mode 100644 index a4bb50c9eb4..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-opengroup_7.RULE b/src/licensedcode/data/rules/x11-opengroup_7.RULE index 7d3193570e6..6b92fa2e364 100644 --- a/src/licensedcode/data/rules/x11-opengroup_7.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_7.RULE @@ -1,3 +1,11 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: this is missing the non-endorsement clause +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-opengroup_7.yml b/src/licensedcode/data/rules/x11-opengroup_7.yml deleted file mode 100644 index 3f5101f9561..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -relevance: 99 -minimum_coverage: 90 -notes: this is missing the non-endorsement clause diff --git a/src/licensedcode/data/rules/x11-opengroup_8.RULE b/src/licensedcode/data/rules/x11-opengroup_8.RULE index 7047693ad96..284cb52a418 100644 --- a/src/licensedcode/data/rules/x11-opengroup_8.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_8.RULE @@ -1,3 +1,11 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +relevance: 99 +minimum_coverage: 90 +notes: this is missing the non-endorsement clause +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-opengroup_8.yml b/src/licensedcode/data/rules/x11-opengroup_8.yml deleted file mode 100644 index 3f5101f9561..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -relevance: 99 -minimum_coverage: 90 -notes: this is missing the non-endorsement clause diff --git a/src/licensedcode/data/rules/x11-opengroup_9.RULE b/src/licensedcode/data/rules/x11-opengroup_9.RULE index ba5f5d9ff1e..142e6b62c48 100644 --- a/src/licensedcode/data/rules/x11-opengroup_9.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_9.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-opengroup_9.yml b/src/licensedcode/data/rules/x11-opengroup_9.yml deleted file mode 100644 index 1432f2f632c..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_9.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-opengroup_not_mit_1.RULE b/src/licensedcode/data/rules/x11-opengroup_not_mit_1.RULE index 1c1e71585a1..675d320b26c 100644 --- a/src/licensedcode/data/rules/x11-opengroup_not_mit_1.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_not_mit_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +minimum_coverage: 70 +--- + License: MIT Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/src/licensedcode/data/rules/x11-opengroup_not_mit_1.yml b/src/licensedcode/data/rules/x11-opengroup_not_mit_1.yml deleted file mode 100644 index a3427fd7583..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_not_mit_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -minimum_coverage: 70 diff --git a/src/licensedcode/data/rules/x11-opengroup_not_mit_2.RULE b/src/licensedcode/data/rules/x11-opengroup_not_mit_2.RULE index 1bcc19e55f1..66b86855a08 100644 --- a/src/licensedcode/data/rules/x11-opengroup_not_mit_2.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_not_mit_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +minimum_coverage: 60 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that diff --git a/src/licensedcode/data/rules/x11-opengroup_not_mit_2.yml b/src/licensedcode/data/rules/x11-opengroup_not_mit_2.yml deleted file mode 100644 index 38192758b37..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_not_mit_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/x11-opengroup_not_mit_3.RULE b/src/licensedcode/data/rules/x11-opengroup_not_mit_3.RULE index 04f12b679f2..d86c963562a 100644 --- a/src/licensedcode/data/rules/x11-opengroup_not_mit_3.RULE +++ b/src/licensedcode/data/rules/x11-opengroup_not_mit_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-opengroup +is_license_text: yes +minimum_coverage: 50 +--- + License: MIT Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that diff --git a/src/licensedcode/data/rules/x11-opengroup_not_mit_3.yml b/src/licensedcode/data/rules/x11-opengroup_not_mit_3.yml deleted file mode 100644 index b2d47ae61a2..00000000000 --- a/src/licensedcode/data/rules/x11-opengroup_not_mit_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-opengroup -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-stanford_1.RULE b/src/licensedcode/data/rules/x11-stanford_1.RULE index 48a28c6e887..1e4b6b8ecf1 100644 --- a/src/licensedcode/data/rules/x11-stanford_1.RULE +++ b/src/licensedcode/data/rules/x11-stanford_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-stanford +is_license_text: yes +relevance: 100 +--- + We are making available for public use and benefit with the expectation that others will use, modify and enhance the Software and contribute those enhancements back to the community. However, since we diff --git a/src/licensedcode/data/rules/x11-stanford_1.yml b/src/licensedcode/data/rules/x11-stanford_1.yml deleted file mode 100644 index 392d5ddb701..00000000000 --- a/src/licensedcode/data/rules/x11-stanford_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-stanford -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-tiff_1.RULE b/src/licensedcode/data/rules/x11-tiff_1.RULE index ce1d999c7fa..b52748ef037 100644 --- a/src/licensedcode/data/rules/x11-tiff_1.RULE +++ b/src/licensedcode/data/rules/x11-tiff_1.RULE @@ -1,7 +1,13 @@ +--- +license_expression: x11-tiff +is_license_notice: yes +minimum_coverage: 60 +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of the software and related documentation, and (ii) the names of Sam Leffler and Silicon Graphics may not be used in any advertising or publicity relating to the software without the specific, prior written -permission of Sam Leffler and Silicon Graphics. +permission of Sam Leffler and Silicon Graphics. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_1.yml b/src/licensedcode/data/rules/x11-tiff_1.yml deleted file mode 100644 index c0b8a9973f6..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-tiff -is_license_notice: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/x11-tiff_10.RULE b/src/licensedcode/data/rules/x11-tiff_10.RULE index 65e903ef2a0..b750bcea4df 100644 --- a/src/licensedcode/data/rules/x11-tiff_10.RULE +++ b/src/licensedcode/data/rules/x11-tiff_10.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: libtiff License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_10.yml b/src/licensedcode/data/rules/x11-tiff_10.yml deleted file mode 100644 index f4ed60d774d..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-tiff_11.RULE b/src/licensedcode/data/rules/x11-tiff_11.RULE index efb355329f8..1dc54185d2c 100644 --- a/src/licensedcode/data/rules/x11-tiff_11.RULE +++ b/src/licensedcode/data/rules/x11-tiff_11.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + libtiff libtiff License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_11.yml b/src/licensedcode/data/rules/x11-tiff_11.yml deleted file mode 100644 index f4ed60d774d..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-tiff_12.RULE b/src/licensedcode/data/rules/x11-tiff_12.RULE index b645bffd37e..c80b587cbb7 100644 --- a/src/licensedcode/data/rules/x11-tiff_12.RULE +++ b/src/licensedcode/data/rules/x11-tiff_12.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + libtiff License libtiff \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_12.yml b/src/licensedcode/data/rules/x11-tiff_12.yml deleted file mode 100644 index f4ed60d774d..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-tiff_13.RULE b/src/licensedcode/data/rules/x11-tiff_13.RULE index de5caa64e8a..883598d736d 100644 --- a/src/licensedcode/data/rules/x11-tiff_13.RULE +++ b/src/licensedcode/data/rules/x11-tiff_13.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-tiff +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: libtiff \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_13.yml b/src/licensedcode/data/rules/x11-tiff_13.yml deleted file mode 100644 index 5507b4cc116..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-tiff -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-tiff_14.RULE b/src/licensedcode/data/rules/x11-tiff_14.RULE index a8eac17029d..20b41388698 100644 --- a/src/licensedcode/data/rules/x11-tiff_14.RULE +++ b/src/licensedcode/data/rules/x11-tiff_14.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-tiff +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: libtiff License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_14.yml b/src/licensedcode/data/rules/x11-tiff_14.yml deleted file mode 100644 index 5507b4cc116..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-tiff -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-tiff_15.RULE b/src/licensedcode/data/rules/x11-tiff_15.RULE index 9568648d67e..4efea8b2f79 100644 --- a/src/licensedcode/data/rules/x11-tiff_15.RULE +++ b/src/licensedcode/data/rules/x11-tiff_15.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-tiff +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: libtiff \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_15.yml b/src/licensedcode/data/rules/x11-tiff_15.yml deleted file mode 100644 index 5507b4cc116..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-tiff -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-tiff_16.RULE b/src/licensedcode/data/rules/x11-tiff_16.RULE index 6b07c5aa407..ffcc4fcf7f5 100644 --- a/src/licensedcode/data/rules/x11-tiff_16.RULE +++ b/src/licensedcode/data/rules/x11-tiff_16.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/libtiff +--- + https://licenses.nuget.org/libtiff \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_16.yml b/src/licensedcode/data/rules/x11-tiff_16.yml deleted file mode 100644 index 9f97852d274..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/libtiff diff --git a/src/licensedcode/data/rules/x11-tiff_17.RULE b/src/licensedcode/data/rules/x11-tiff_17.RULE index d31fa61b191..fdae9e581f3 100644 --- a/src/licensedcode/data/rules/x11-tiff_17.RULE +++ b/src/licensedcode/data/rules/x11-tiff_17.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/libtiff \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_17.yml b/src/licensedcode/data/rules/x11-tiff_17.yml deleted file mode 100644 index 8b5ba77b5eb..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-tiff_18.RULE b/src/licensedcode/data/rules/x11-tiff_18.RULE index 9f4e89c57e9..3e93f6605b9 100644 --- a/src/licensedcode/data/rules/x11-tiff_18.RULE +++ b/src/licensedcode/data/rules/x11-tiff_18.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/libtiff +--- + {{libtiff}} https://spdx.org/licenses/libtiff \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_18.yml b/src/licensedcode/data/rules/x11-tiff_18.yml deleted file mode 100644 index c253796eb66..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/libtiff diff --git a/src/licensedcode/data/rules/x11-tiff_19.RULE b/src/licensedcode/data/rules/x11-tiff_19.RULE index f7837a5e40f..49591c4ba31 100644 --- a/src/licensedcode/data/rules/x11-tiff_19.RULE +++ b/src/licensedcode/data/rules/x11-tiff_19.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/libtiff +--- + LICENSE {{libtiff}} https://spdx.org/licenses/libtiff \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_19.yml b/src/licensedcode/data/rules/x11-tiff_19.yml deleted file mode 100644 index c253796eb66..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/libtiff diff --git a/src/licensedcode/data/rules/x11-tiff_2.RULE b/src/licensedcode/data/rules/x11-tiff_2.RULE index fb0d7afd89d..a6b5e3ef9b6 100644 --- a/src/licensedcode/data/rules/x11-tiff_2.RULE +++ b/src/licensedcode/data/rules/x11-tiff_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-tiff +is_license_notice: yes +--- + "SGI": The following licensing terms need to be respected: Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided diff --git a/src/licensedcode/data/rules/x11-tiff_2.yml b/src/licensedcode/data/rules/x11-tiff_2.yml deleted file mode 100644 index f752744f1b8..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-tiff -is_license_notice: yes diff --git a/src/licensedcode/data/rules/x11-tiff_3.RULE b/src/licensedcode/data/rules/x11-tiff_3.RULE index 1279b822631..42d0374d5c0 100644 --- a/src/licensedcode/data/rules/x11-tiff_3.RULE +++ b/src/licensedcode/data/rules/x11-tiff_3.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-tiff +is_license_notice: yes +--- + The licence agreement for this file is the same as the rest of the LibTiff library. @@ -6,4 +11,4 @@ ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE -OF THIS SOFTWARE. +OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_3.yml b/src/licensedcode/data/rules/x11-tiff_3.yml deleted file mode 100644 index f752744f1b8..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_3.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-tiff -is_license_notice: yes diff --git a/src/licensedcode/data/rules/x11-tiff_4.RULE b/src/licensedcode/data/rules/x11-tiff_4.RULE index 79842cd5de3..63312dadf0c 100644 --- a/src/licensedcode/data/rules/x11-tiff_4.RULE +++ b/src/licensedcode/data/rules/x11-tiff_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-tiff +is_license_notice: yes +relevance: 100 +--- + {{The licence agreement for this file is the same as the rest of the LibTiff library. }} @@ -6,4 +12,4 @@ ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE -OF THIS SOFTWARE. +OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_4.yml b/src/licensedcode/data/rules/x11-tiff_4.yml deleted file mode 100644 index c255fb05774..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-tiff -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-tiff_5.RULE b/src/licensedcode/data/rules/x11-tiff_5.RULE index 5fcbbee08d3..b1848a5de3f 100644 --- a/src/licensedcode/data/rules/x11-tiff_5.RULE +++ b/src/licensedcode/data/rules/x11-tiff_5.RULE @@ -1,2 +1,8 @@ +--- +license_expression: x11-tiff +is_license_notice: yes +relevance: 100 +--- + The licence agreement for this file is the same as the rest of the LibTiff library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_5.yml b/src/licensedcode/data/rules/x11-tiff_5.yml deleted file mode 100644 index c255fb05774..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-tiff -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-tiff_6.RULE b/src/licensedcode/data/rules/x11-tiff_6.RULE index 241f39a548c..f6205b0aed9 100644 --- a/src/licensedcode/data/rules/x11-tiff_6.RULE +++ b/src/licensedcode/data/rules/x11-tiff_6.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-tiff +is_license_text: yes +relevance: 99 +notes: this is exactly the text of the x11-tiff but generic without a name +--- + Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in diff --git a/src/licensedcode/data/rules/x11-tiff_6.yml b/src/licensedcode/data/rules/x11-tiff_6.yml deleted file mode 100644 index b0e88ebace4..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_6.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-tiff -is_license_text: yes -relevance: 99 -notes: this is exactly the text of the x11-tiff but generic without a name diff --git a/src/licensedcode/data/rules/x11-tiff_7.RULE b/src/licensedcode/data/rules/x11-tiff_7.RULE index 297e79d2859..9a4fce3163e 100644 --- a/src/licensedcode/data/rules/x11-tiff_7.RULE +++ b/src/licensedcode/data/rules/x11-tiff_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-tiff +is_license_notice: yes +relevance: 100 +--- + The licence agreement for this file is the same as the rest of the LibTiff library. diff --git a/src/licensedcode/data/rules/x11-tiff_7.yml b/src/licensedcode/data/rules/x11-tiff_7.yml deleted file mode 100644 index c255fb05774..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-tiff -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-tiff_8.RULE b/src/licensedcode/data/rules/x11-tiff_8.RULE index 958f4315f57..5a95307995f 100644 --- a/src/licensedcode/data/rules/x11-tiff_8.RULE +++ b/src/licensedcode/data/rules/x11-tiff_8.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-tiff +is_license_notice: yes +relevance: 100 +--- + The licence agreement for this file is the same as the rest of the LibTiff library. diff --git a/src/licensedcode/data/rules/x11-tiff_8.yml b/src/licensedcode/data/rules/x11-tiff_8.yml deleted file mode 100644 index c255fb05774..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-tiff -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-tiff_9.RULE b/src/licensedcode/data/rules/x11-tiff_9.RULE index 6625d890768..f156852ded1 100644 --- a/src/licensedcode/data/rules/x11-tiff_9.RULE +++ b/src/licensedcode/data/rules/x11-tiff_9.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + libtiff License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_9.yml b/src/licensedcode/data/rules/x11-tiff_9.yml deleted file mode 100644 index f4ed60d774d..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-tiff_url_1.RULE b/src/licensedcode/data/rules/x11-tiff_url_1.RULE index 9423832cb5f..cd74f5eb8ab 100644 --- a/src/licensedcode/data/rules/x11-tiff_url_1.RULE +++ b/src/licensedcode/data/rules/x11-tiff_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/libtiff +--- + https://spdx.org/licenses/libtiff \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_url_1.yml b/src/licensedcode/data/rules/x11-tiff_url_1.yml deleted file mode 100644 index 26d5c51ffef..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/libtiff diff --git a/src/licensedcode/data/rules/x11-tiff_url_2.RULE b/src/licensedcode/data/rules/x11-tiff_url_2.RULE index 7a7d087b3e2..ff47576c52e 100644 --- a/src/licensedcode/data/rules/x11-tiff_url_2.RULE +++ b/src/licensedcode/data/rules/x11-tiff_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-tiff +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/libtiff.html +--- + https://spdx.org/licenses/libtiff.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-tiff_url_2.yml b/src/licensedcode/data/rules/x11-tiff_url_2.yml deleted file mode 100644 index e65d8fea4e0..00000000000 --- a/src/licensedcode/data/rules/x11-tiff_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-tiff -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/libtiff.html diff --git a/src/licensedcode/data/rules/x11-x11r5_1.RULE b/src/licensedcode/data/rules/x11-x11r5_1.RULE index d2b59c24d2d..28fa6004d93 100644 --- a/src/licensedcode/data/rules/x11-x11r5_1.RULE +++ b/src/licensedcode/data/rules/x11-x11r5_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-x11r5 +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright diff --git a/src/licensedcode/data/rules/x11-x11r5_1.yml b/src/licensedcode/data/rules/x11-x11r5_1.yml deleted file mode 100644 index 366bd3af14b..00000000000 --- a/src/licensedcode/data/rules/x11-x11r5_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-x11r5 -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-x11r5_2.RULE b/src/licensedcode/data/rules/x11-x11r5_2.RULE index fca00bbeeec..959d89f2bbe 100644 --- a/src/licensedcode/data/rules/x11-x11r5_2.RULE +++ b/src/licensedcode/data/rules/x11-x11r5_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: x11-x11r5 +is_license_text: yes +--- + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright diff --git a/src/licensedcode/data/rules/x11-x11r5_2.yml b/src/licensedcode/data/rules/x11-x11r5_2.yml deleted file mode 100644 index 366bd3af14b..00000000000 --- a/src/licensedcode/data/rules/x11-x11r5_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: x11-x11r5 -is_license_text: yes diff --git a/src/licensedcode/data/rules/x11-xconsortium-veillard_1.RULE b/src/licensedcode/data/rules/x11-xconsortium-veillard_1.RULE index e64c3148d09..469c1db5cff 100644 --- a/src/licensedcode/data/rules/x11-xconsortium-veillard_1.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium-veillard_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium-veillard +is_license_text: yes +relevance: 99 +--- + License: other Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/licensedcode/data/rules/x11-xconsortium-veillard_1.yml b/src/licensedcode/data/rules/x11-xconsortium-veillard_1.yml deleted file mode 100644 index 6a575e0007f..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium-veillard_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium-veillard -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/x11-xconsortium-veillard_2.RULE b/src/licensedcode/data/rules/x11-xconsortium-veillard_2.RULE index fb494616ae9..17f7cbc572d 100644 --- a/src/licensedcode/data/rules/x11-xconsortium-veillard_2.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium-veillard_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium-veillard +is_license_text: yes +relevance: 99 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/x11-xconsortium-veillard_2.yml b/src/licensedcode/data/rules/x11-xconsortium-veillard_2.yml deleted file mode 100644 index 6a575e0007f..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium-veillard_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium-veillard -is_license_text: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/x11-xconsortium_1.RULE b/src/licensedcode/data/rules/x11-xconsortium_1.RULE index 1fdc1f0b033..844a14e7b0d 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_1.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 95 +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights @@ -18,4 +25,4 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the IBM Corporation shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the IBM -Corporation. +Corporation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_1.yml b/src/licensedcode/data/rules/x11-xconsortium_1.yml deleted file mode 100644 index 91e4a727ac0..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 95 -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-xconsortium_10.RULE b/src/licensedcode/data/rules/x11-xconsortium_10.RULE index 54d9b20ee4f..8c8c13d4068 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_10.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_10.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -18,4 +24,4 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from the X Consortium. +in this Software without prior written authorization from the X Consortium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_10.yml b/src/licensedcode/data/rules/x11-xconsortium_10.yml deleted file mode 100644 index a140618a881..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-xconsortium_11.RULE b/src/licensedcode/data/rules/x11-xconsortium_11.RULE index f8fb6970adc..23af3a442cd 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_11.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_11.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -19,4 +25,4 @@ SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealing in this Software without prior written authorization from the -X Consortium. +X Consortium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_11.yml b/src/licensedcode/data/rules/x11-xconsortium_11.yml deleted file mode 100644 index a140618a881..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-xconsortium_12.RULE b/src/licensedcode/data/rules/x11-xconsortium_12.RULE index 89238a2367c..17d7a0bd1c9 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_12.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_12.RULE @@ -1 +1,8 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +is_continuous: yes +relevance: 90 +--- + x11 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_12.yml b/src/licensedcode/data/rules/x11-xconsortium_12.yml deleted file mode 100644 index a6412dcab4f..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_12.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -is_continuous: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/x11-xconsortium_13.RULE b/src/licensedcode/data/rules/x11-xconsortium_13.RULE index 1da44b8bb96..08d9b1abcdd 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_13.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_13.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 95 +--- + X11 License X11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_13.yml b/src/licensedcode/data/rules/x11-xconsortium_13.yml deleted file mode 100644 index ac87d3bd1b0..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/x11-xconsortium_14.RULE b/src/licensedcode/data/rules/x11-xconsortium_14.RULE index ab8ee862bad..c1cc0f25859 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_14.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_14.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to @@ -13,4 +19,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of shall not be used in advertising or otherwise to promote the sale, use or other -deal- ings in this Software without prior written authorization from +deal- ings in this Software without prior written authorization from \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_14.yml b/src/licensedcode/data/rules/x11-xconsortium_14.yml deleted file mode 100644 index b411c2ff3ec..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-xconsortium_15.RULE b/src/licensedcode/data/rules/x11-xconsortium_15.RULE index 8f5462b1be0..3d05ee0f4eb 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_15.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_15.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/x11-xconsortium_15.yml b/src/licensedcode/data/rules/x11-xconsortium_15.yml deleted file mode 100644 index b411c2ff3ec..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-xconsortium_16.RULE b/src/licensedcode/data/rules/x11-xconsortium_16.RULE index 84ec478e2da..306324f4554 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_16.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_16.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +relevance: 90 +--- + X Consortium license \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_16.yml b/src/licensedcode/data/rules/x11-xconsortium_16.yml deleted file mode 100644 index 0fdebcf4e1a..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/x11-xconsortium_17.RULE b/src/licensedcode/data/rules/x11-xconsortium_17.RULE index 94830e793fc..9e0b709d1ad 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_17.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 99 +notes: This is a text with minor variations taken from the original at http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 + and modified to remove (partially) X references such as "authors or copyright holders X" + Seen also in wikipedia https://fr.wikipedia.org/wiki/Licence_MIT#Modèle_de_la_licence_X11 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/x11-xconsortium_17.yml b/src/licensedcode/data/rules/x11-xconsortium_17.yml deleted file mode 100644 index ce6c1d84da0..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 99 -notes: This is a text with minor variations taken from the original at http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 - and modified to remove (partially) X references such as "authors or copyright holders X" - Seen also in wikipedia https://fr.wikipedia.org/wiki/Licence_MIT#Modèle_de_la_licence_X11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_18.RULE b/src/licensedcode/data/rules/x11-xconsortium_18.RULE index 7255b404b02..b30f394fc4d 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_18.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_18.RULE @@ -1,3 +1,12 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 99 +notes: This is a text with minor variations taken from the original at http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 + and modified to remove (partially) X references such as "authors or copyright holders X" + Seen also in wikipedia https://fr.wikipedia.org/wiki/Licence_MIT#Modèle_de_la_licence_X11 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/x11-xconsortium_18.yml b/src/licensedcode/data/rules/x11-xconsortium_18.yml deleted file mode 100644 index ce6c1d84da0..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 99 -notes: This is a text with minor variations taken from the original at http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 - and modified to remove (partially) X references such as "authors or copyright holders X" - Seen also in wikipedia https://fr.wikipedia.org/wiki/Licence_MIT#Modèle_de_la_licence_X11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_19.RULE b/src/licensedcode/data/rules/x11-xconsortium_19.RULE index 2cda26a795b..2ab57751152 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_19.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_19.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 99 +notes: variant with partial remoavl of X references +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/x11-xconsortium_19.yml b/src/licensedcode/data/rules/x11-xconsortium_19.yml deleted file mode 100644 index 9a5bf6f551b..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_19.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 99 -notes: variant with partial remoavl of X references diff --git a/src/licensedcode/data/rules/x11-xconsortium_2.RULE b/src/licensedcode/data/rules/x11-xconsortium_2.RULE index d6b18505da0..5ba82a44837 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_2.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the @@ -18,4 +24,4 @@ TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other deal- ings in this Software without prior written authorization from the X Consor- -tium. +tium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_2.yml b/src/licensedcode/data/rules/x11-xconsortium_2.yml deleted file mode 100644 index a140618a881..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-xconsortium_20.RULE b/src/licensedcode/data/rules/x11-xconsortium_20.RULE index 16892712389..23bae10febf 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_20.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_20.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +notes: typo in andor +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, andor diff --git a/src/licensedcode/data/rules/x11-xconsortium_20.yml b/src/licensedcode/data/rules/x11-xconsortium_20.yml deleted file mode 100644 index 8b31f878c6f..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_20.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 -notes: typo in andor diff --git a/src/licensedcode/data/rules/x11-xconsortium_21.RULE b/src/licensedcode/data/rules/x11-xconsortium_21.RULE index 17f3432691f..2fd520c29d1 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_21.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_21.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +--- + Licence: X11 Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/src/licensedcode/data/rules/x11-xconsortium_21.yml b/src/licensedcode/data/rules/x11-xconsortium_21.yml deleted file mode 100644 index b411c2ff3ec..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-xconsortium_22.RULE b/src/licensedcode/data/rules/x11-xconsortium_22.RULE index 6174c3794d7..eab381776ba 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_22.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_22.RULE @@ -1,2 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_notice: yes +relevance: 99 +referenced_filenames: + - build/install-sh +--- + This product includes software developed under the X Consortium License see: build/install-sh \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_22.yml b/src/licensedcode/data/rules/x11-xconsortium_22.yml deleted file mode 100644 index 4384926971e..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-xconsortium -is_license_notice: yes -relevance: 99 -referenced_filenames: - - build/install-sh diff --git a/src/licensedcode/data/rules/x11-xconsortium_23.RULE b/src/licensedcode/data/rules/x11-xconsortium_23.RULE index c0ccc9808b4..f1706fe5ed9 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_23.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_23.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/x11-xconsortium_23.yml b/src/licensedcode/data/rules/x11-xconsortium_23.yml deleted file mode 100644 index d2b0b62e9c9..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_23.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_24.RULE b/src/licensedcode/data/rules/x11-xconsortium_24.RULE index b7e97123894..6c05b0c031d 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_24.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_24.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/x11-xconsortium_24.yml b/src/licensedcode/data/rules/x11-xconsortium_24.yml deleted file mode 100644 index d2b0b62e9c9..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_24.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_25.RULE b/src/licensedcode/data/rules/x11-xconsortium_25.RULE index 1d20ab564f1..1f2262c6824 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_25.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_25.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/x11-xconsortium_25.yml b/src/licensedcode/data/rules/x11-xconsortium_25.yml deleted file mode 100644 index d2b0b62e9c9..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_25.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_26.RULE b/src/licensedcode/data/rules/x11-xconsortium_26.RULE index 40960883956..acf640e7c4a 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_26.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_26.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +notes: in x11 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/x11-xconsortium_26.yml b/src/licensedcode/data/rules/x11-xconsortium_26.yml deleted file mode 100644 index d2b0b62e9c9..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_27.RULE b/src/licensedcode/data/rules/x11-xconsortium_27.RULE index 5220d8ff47c..4aeb93afe18 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_27.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_27.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +relevance: 100 +notes: Seen in libXpm-3.5.13 +--- + * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the diff --git a/src/licensedcode/data/rules/x11-xconsortium_27.yml b/src/licensedcode/data/rules/x11-xconsortium_27.yml deleted file mode 100644 index 3bb301a71f6..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_27.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -relevance: 100 -notes: Seen in libXpm-3.5.13 diff --git a/src/licensedcode/data/rules/x11-xconsortium_28.RULE b/src/licensedcode/data/rules/x11-xconsortium_28.RULE index a1df9f23fb3..3c0fce2ecdf 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_28.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_28.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-xconsortium +is_license_notice: yes +relevance: 95 +--- + released under the X11 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_28.yml b/src/licensedcode/data/rules/x11-xconsortium_28.yml deleted file mode 100644 index 935c5d08cf0..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/x11-xconsortium_29.RULE b/src/licensedcode/data/rules/x11-xconsortium_29.RULE index dc773362d05..2a4110d497e 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_29.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_29.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-xconsortium +is_license_notice: yes +relevance: 95 +--- + available under the X11 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_29.yml b/src/licensedcode/data/rules/x11-xconsortium_29.yml deleted file mode 100644 index 935c5d08cf0..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/x11-xconsortium_3.RULE b/src/licensedcode/data/rules/x11-xconsortium_3.RULE index cb4d886b06c..97733fbce7a 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_3.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the @@ -18,4 +24,4 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other deal- ings in this Software without prior written authorization from the X Consor- -tium. +tium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_3.yml b/src/licensedcode/data/rules/x11-xconsortium_3.yml deleted file mode 100644 index a140618a881..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-xconsortium_30.RULE b/src/licensedcode/data/rules/x11-xconsortium_30.RULE index d3a49dde37a..e0c4e4cf395 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_30.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_30.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-xconsortium +is_license_notice: yes +relevance: 95 +--- + under the X11 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_30.yml b/src/licensedcode/data/rules/x11-xconsortium_30.yml deleted file mode 100644 index 935c5d08cf0..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_notice: yes -relevance: 95 diff --git a/src/licensedcode/data/rules/x11-xconsortium_31.RULE b/src/licensedcode/data/rules/x11-xconsortium_31.RULE index 8726525abd2..3e25884e9b3 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_31.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_31.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: X11 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_31.yml b/src/licensedcode/data/rules/x11-xconsortium_31.yml deleted file mode 100644 index 13a6a2d536b..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_31.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-xconsortium_32.RULE b/src/licensedcode/data/rules/x11-xconsortium_32.RULE index 6a22878faa2..f90c28d83d7 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_32.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_32.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + X11 X11 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_32.yml b/src/licensedcode/data/rules/x11-xconsortium_32.yml deleted file mode 100644 index 13a6a2d536b..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_32.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-xconsortium_33.RULE b/src/licensedcode/data/rules/x11-xconsortium_33.RULE index 061abd7a783..b07a3a8212e 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_33.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_33.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + X11 License X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_33.yml b/src/licensedcode/data/rules/x11-xconsortium_33.yml deleted file mode 100644 index 13a6a2d536b..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_33.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-xconsortium_34.RULE b/src/licensedcode/data/rules/x11-xconsortium_34.RULE index 7672409227a..8861639ecfa 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_34.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_34.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_34.yml b/src/licensedcode/data/rules/x11-xconsortium_34.yml deleted file mode 100644 index 376e7eef726..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_34.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-xconsortium -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-xconsortium_35.RULE b/src/licensedcode/data/rules/x11-xconsortium_35.RULE index 008b89d9155..92ebef4de61 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_35.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_35.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: X11 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_35.yml b/src/licensedcode/data/rules/x11-xconsortium_35.yml deleted file mode 100644 index 376e7eef726..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_35.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-xconsortium -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-xconsortium_36.RULE b/src/licensedcode/data/rules/x11-xconsortium_36.RULE index 78fa2f0d415..6e760570046 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_36.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_36.RULE @@ -1 +1,10 @@ +--- +license_expression: x11-xconsortium +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_36.yml b/src/licensedcode/data/rules/x11-xconsortium_36.yml deleted file mode 100644 index 376e7eef726..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_36.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11-xconsortium -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11-xconsortium_37.RULE b/src/licensedcode/data/rules/x11-xconsortium_37.RULE index de2536121a8..04edff306d2 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_37.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_37.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/X11 +--- + https://licenses.nuget.org/X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_37.yml b/src/licensedcode/data/rules/x11-xconsortium_37.yml deleted file mode 100644 index 416f9010ff5..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_37.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/X11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_38.RULE b/src/licensedcode/data/rules/x11-xconsortium_38.RULE index 3008bd71d2d..572890c9fe7 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_38.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_38.RULE @@ -1 +1,7 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_38.yml b/src/licensedcode/data/rules/x11-xconsortium_38.yml deleted file mode 100644 index 4526ddb49ad..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11-xconsortium_39.RULE b/src/licensedcode/data/rules/x11-xconsortium_39.RULE index 18a47e9160e..3a2d04e48f0 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_39.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_39.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/X11 +--- + {{X11}} https://spdx.org/licenses/X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_39.yml b/src/licensedcode/data/rules/x11-xconsortium_39.yml deleted file mode 100644 index af6ee87a2ac..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_39.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/X11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_4.RULE b/src/licensedcode/data/rules/x11-xconsortium_4.RULE index f5c789c65c4..859966d94ef 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_4.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/src/licensedcode/data/rules/x11-xconsortium_4.yml b/src/licensedcode/data/rules/x11-xconsortium_4.yml deleted file mode 100644 index a140618a881..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-xconsortium_40.RULE b/src/licensedcode/data/rules/x11-xconsortium_40.RULE index ea6ac4486d6..31efba3fa2c 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_40.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_40.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/X11 +--- + LICENSE {{X11}} https://spdx.org/licenses/X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_40.yml b/src/licensedcode/data/rules/x11-xconsortium_40.yml deleted file mode 100644 index af6ee87a2ac..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/X11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_5.RULE b/src/licensedcode/data/rules/x11-xconsortium_5.RULE index b3f98b72ffa..a8660c171b6 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_5.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_5.RULE @@ -1 +1,12 @@ +--- +license_expression: x11-xconsortium +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - COPYING +ignorable_urls: + - ftp://ftp.rpm.org/pub/rpm/dist +--- + Licensing details are in the COPYING file accompanying popt source distributions, available from ftp://ftp.rpm.org/pub/rpm/dist \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_5.yml b/src/licensedcode/data/rules/x11-xconsortium_5.yml deleted file mode 100644 index 1b995a28ffa..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: x11-xconsortium -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - COPYING -ignorable_urls: - - ftp://ftp.rpm.org/pub/rpm/dist diff --git a/src/licensedcode/data/rules/x11-xconsortium_6.RULE b/src/licensedcode/data/rules/x11-xconsortium_6.RULE index bc6787cd77d..489ef69a1d8 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_6.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_6.RULE @@ -1,3 +1,14 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +minimum_coverage: 50 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) X Consortium +ignorable_holders: + - X Consortium +--- + X11 License Copyright (C) X Consortium @@ -10,4 +21,4 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. -X Window System is a trademark of X Consortium, Inc. +X Window System is a trademark of X Consortium, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_6.yml b/src/licensedcode/data/rules/x11-xconsortium_6.yml deleted file mode 100644 index c4447456ba1..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -minimum_coverage: 50 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) X Consortium -ignorable_holders: - - X Consortium diff --git a/src/licensedcode/data/rules/x11-xconsortium_7.RULE b/src/licensedcode/data/rules/x11-xconsortium_7.RULE index 3bcfb1ca9e2..63e69ed408d 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_7.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_7.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +minimum_coverage: 50 +--- + X Consortium Permission is hereby granted, free of charge, to any person obtaining @@ -20,4 +26,4 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from the X Consortium. +in this Software without prior written authorization from the X Consortium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_7.yml b/src/licensedcode/data/rules/x11-xconsortium_7.yml deleted file mode 100644 index a140618a881..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-xconsortium_8.RULE b/src/licensedcode/data/rules/x11-xconsortium_8.RULE index 7b540d3d0cd..3bbf9e3ce32 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_8.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_8.RULE @@ -1,2 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +relevance: 95 +minimum_coverage: 95 +--- + Shamelessly ripped out from the X11 distribution -Thanks for the nice licence. +Thanks for the nice licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_8.yml b/src/licensedcode/data/rules/x11-xconsortium_8.yml deleted file mode 100644 index 8589c8be905..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -relevance: 95 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/x11-xconsortium_9.RULE b/src/licensedcode/data/rules/x11-xconsortium_9.RULE index e7b873642af..a6bd5ff8d07 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_9.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_text: yes +minimum_coverage: 50 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -20,4 +26,4 @@ OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization -from the X Consortium. +from the X Consortium. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_9.yml b/src/licensedcode/data/rules/x11-xconsortium_9.yml deleted file mode 100644 index a140618a881..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11-xconsortium -is_license_text: yes -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/x11-xconsortium_and_x11-keith-packard_and_historical_and_other-permissive_1.RULE b/src/licensedcode/data/rules/x11-xconsortium_and_x11-keith-packard_and_historical_and_other-permissive_1.RULE index d782aa803f2..36ff593a1bd 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_and_x11-keith-packard_and_historical_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_and_x11-keith-packard_and_historical_and_other-permissive_1.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-xconsortium AND x11-keith-packard AND historical AND other-permissive +is_license_text: yes +relevance: 100 +minimum_coverage: 100 +notes: in x11 +--- + The following licenses are 'legacy' - usually MIT/X11 licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_and_x11-keith-packard_and_historical_and_other-permissive_1.yml b/src/licensedcode/data/rules/x11-xconsortium_and_x11-keith-packard_and_historical_and_other-permissive_1.yml deleted file mode 100644 index b11453bb0d7..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_and_x11-keith-packard_and_historical_and_other-permissive_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-xconsortium AND x11-keith-packard AND historical AND other-permissive -is_license_text: yes -relevance: 100 -minimum_coverage: 100 -notes: in x11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_url_1.RULE b/src/licensedcode/data/rules/x11-xconsortium_url_1.RULE index 2e2e1f92dae..2e0e787818e 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_url_1.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/x11 +--- + https://spdx.org/licenses/x11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_url_1.yml b/src/licensedcode/data/rules/x11-xconsortium_url_1.yml deleted file mode 100644 index 216a7821baa..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/x11 diff --git a/src/licensedcode/data/rules/x11-xconsortium_url_2.RULE b/src/licensedcode/data/rules/x11-xconsortium_url_2.RULE index 571633eb356..7a950ce1487 100644 --- a/src/licensedcode/data/rules/x11-xconsortium_url_2.RULE +++ b/src/licensedcode/data/rules/x11-xconsortium_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: x11-xconsortium +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/x11.html +--- + https://spdx.org/licenses/x11.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11-xconsortium_url_2.yml b/src/licensedcode/data/rules/x11-xconsortium_url_2.yml deleted file mode 100644 index 26cb515ac1d..00000000000 --- a/src/licensedcode/data/rules/x11-xconsortium_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11-xconsortium -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/x11.html diff --git a/src/licensedcode/data/rules/x11_1.RULE b/src/licensedcode/data/rules/x11_1.RULE index 37b03125f6e..b30820c7678 100644 --- a/src/licensedcode/data/rules/x11_1.RULE +++ b/src/licensedcode/data/rules/x11_1.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.xfree86.org/3.3.6/COPYRIGHT2.html +--- + http://www.xfree86.org/3.3.6/COPYRIGHT2.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_1.yml b/src/licensedcode/data/rules/x11_1.yml deleted file mode 100644 index c9f52618ee4..00000000000 --- a/src/licensedcode/data/rules/x11_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.xfree86.org/3.3.6/COPYRIGHT2.html diff --git a/src/licensedcode/data/rules/x11_10.RULE b/src/licensedcode/data/rules/x11_10.RULE index 5220267a7d4..cdcb7817f0b 100644 --- a/src/licensedcode/data/rules/x11_10.RULE +++ b/src/licensedcode/data/rules/x11_10.RULE @@ -1,2 +1,10 @@ +--- +license_expression: x11 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - modules/analysis/icu/lib/icu4j-LICENSE-BSD_LIKE.txt +--- + licensed under an MIT style license (modules/analysis/icu/lib/icu4j-LICENSE-BSD_LIKE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_10.yml b/src/licensedcode/data/rules/x11_10.yml deleted file mode 100644 index 6799d5ea01f..00000000000 --- a/src/licensedcode/data/rules/x11_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - modules/analysis/icu/lib/icu4j-LICENSE-BSD_LIKE.txt diff --git a/src/licensedcode/data/rules/x11_11.RULE b/src/licensedcode/data/rules/x11_11.RULE index ecf6ae6219f..53dc86994bb 100644 --- a/src/licensedcode/data/rules/x11_11.RULE +++ b/src/licensedcode/data/rules/x11_11.RULE @@ -1,2 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +--- + ICU License - ICU 1.8.1 to ICU 57.1 COPYRIGHT AND PERMISSION NOTICE \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_11.yml b/src/licensedcode/data/rules/x11_11.yml deleted file mode 100644 index b008abf3062..00000000000 --- a/src/licensedcode/data/rules/x11_11.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 diff --git a/src/licensedcode/data/rules/x11_12.RULE b/src/licensedcode/data/rules/x11_12.RULE index 70c620f3d50..58c5a80eb2e 100644 --- a/src/licensedcode/data/rules/x11_12.RULE +++ b/src/licensedcode/data/rules/x11_12.RULE @@ -1,2 +1,10 @@ +--- +license_expression: x11 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - contrib/icu/lib/ICU-LICENSE.txt +--- + licensed under an MIT styles license (contrib/icu/lib/ICU-LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_12.yml b/src/licensedcode/data/rules/x11_12.yml deleted file mode 100644 index e70aa5c3af0..00000000000 --- a/src/licensedcode/data/rules/x11_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - contrib/icu/lib/ICU-LICENSE.txt diff --git a/src/licensedcode/data/rules/x11_13.RULE b/src/licensedcode/data/rules/x11_13.RULE index 69b3efddfa9..ce93cff0b39 100644 --- a/src/licensedcode/data/rules/x11_13.RULE +++ b/src/licensedcode/data/rules/x11_13.RULE @@ -1,2 +1,10 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://source.icu-project.org/repos/icu/icu/trunk/license.html +--- + The full license is available here: http://source.icu-project.org/repos/icu/icu/trunk/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_13.yml b/src/licensedcode/data/rules/x11_13.yml deleted file mode 100644 index 8a869c7889b..00000000000 --- a/src/licensedcode/data/rules/x11_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://source.icu-project.org/repos/icu/icu/trunk/license.html diff --git a/src/licensedcode/data/rules/x11_14.RULE b/src/licensedcode/data/rules/x11_14.RULE index 42b7db314e1..137e52a2b17 100644 --- a/src/licensedcode/data/rules/x11_14.RULE +++ b/src/licensedcode/data/rules/x11_14.RULE @@ -1 +1,7 @@ -licensed under the {{ICU license (BSD variant)}} +--- +license_expression: x11 +is_license_notice: yes +relevance: 99 +--- + +licensed under the {{ICU license (BSD variant)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_14.yml b/src/licensedcode/data/rules/x11_14.yml deleted file mode 100644 index 3baa8f8f207..00000000000 --- a/src/licensedcode/data/rules/x11_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/x11_15.RULE b/src/licensedcode/data/rules/x11_15.RULE index 91bc66d0091..95a3406bd70 100644 --- a/src/licensedcode/data/rules/x11_15.RULE +++ b/src/licensedcode/data/rules/x11_15.RULE @@ -1 +1,7 @@ -licensed under the {{ICU license}} +--- +license_expression: x11 +is_license_notice: yes +relevance: 99 +--- + +licensed under the {{ICU license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_15.yml b/src/licensedcode/data/rules/x11_15.yml deleted file mode 100644 index 3baa8f8f207..00000000000 --- a/src/licensedcode/data/rules/x11_15.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/x11_16.RULE b/src/licensedcode/data/rules/x11_16.RULE index 1aa9342a2ea..61619ff2c1f 100644 --- a/src/licensedcode/data/rules/x11_16.RULE +++ b/src/licensedcode/data/rules/x11_16.RULE @@ -1 +1,10 @@ +--- +license_expression: x11 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: ICU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_16.yml b/src/licensedcode/data/rules/x11_16.yml deleted file mode 100644 index e87db19146a..00000000000 --- a/src/licensedcode/data/rules/x11_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11_17.RULE b/src/licensedcode/data/rules/x11_17.RULE index bd19ca74394..bbf836dfeef 100644 --- a/src/licensedcode/data/rules/x11_17.RULE +++ b/src/licensedcode/data/rules/x11_17.RULE @@ -1 +1,10 @@ +--- +license_expression: x11 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ICU ICU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_17.yml b/src/licensedcode/data/rules/x11_17.yml deleted file mode 100644 index e87db19146a..00000000000 --- a/src/licensedcode/data/rules/x11_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11_18.RULE b/src/licensedcode/data/rules/x11_18.RULE index e598589a407..b02744e803b 100644 --- a/src/licensedcode/data/rules/x11_18.RULE +++ b/src/licensedcode/data/rules/x11_18.RULE @@ -1 +1,10 @@ +--- +license_expression: x11 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ICU License ICU \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_18.yml b/src/licensedcode/data/rules/x11_18.yml deleted file mode 100644 index e87db19146a..00000000000 --- a/src/licensedcode/data/rules/x11_18.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11_19.RULE b/src/licensedcode/data/rules/x11_19.RULE index 51120e7ac51..88899b21e39 100644 --- a/src/licensedcode/data/rules/x11_19.RULE +++ b/src/licensedcode/data/rules/x11_19.RULE @@ -1 +1,10 @@ +--- +license_expression: x11 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ICU \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_19.yml b/src/licensedcode/data/rules/x11_19.yml deleted file mode 100644 index a3c0d333e46..00000000000 --- a/src/licensedcode/data/rules/x11_19.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11_2.RULE b/src/licensedcode/data/rules/x11_2.RULE index fc1be2446ae..bf2a587190e 100644 --- a/src/licensedcode/data/rules/x11_2.RULE +++ b/src/licensedcode/data/rules/x11_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11 +is_license_text: yes +relevance: 100 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -24,4 +30,4 @@ other dealings in this Software without prior written authorization of the copyright holder. All trademarks and registered trademarks mentioned herein are the -property of their respective owners. +property of their respective owners. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_2.yml b/src/licensedcode/data/rules/x11_2.yml deleted file mode 100644 index 3c0e82c361d..00000000000 --- a/src/licensedcode/data/rules/x11_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11_20.RULE b/src/licensedcode/data/rules/x11_20.RULE index d55c7f699c0..66e09e7086c 100644 --- a/src/licensedcode/data/rules/x11_20.RULE +++ b/src/licensedcode/data/rules/x11_20.RULE @@ -1 +1,10 @@ +--- +license_expression: x11 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ICU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_20.yml b/src/licensedcode/data/rules/x11_20.yml deleted file mode 100644 index a3c0d333e46..00000000000 --- a/src/licensedcode/data/rules/x11_20.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11_21.RULE b/src/licensedcode/data/rules/x11_21.RULE index 5bbc55373f3..52b46e47402 100644 --- a/src/licensedcode/data/rules/x11_21.RULE +++ b/src/licensedcode/data/rules/x11_21.RULE @@ -1 +1,10 @@ +--- +license_expression: x11 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ICU \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_21.yml b/src/licensedcode/data/rules/x11_21.yml deleted file mode 100644 index a3c0d333e46..00000000000 --- a/src/licensedcode/data/rules/x11_21.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: x11 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/x11_22.RULE b/src/licensedcode/data/rules/x11_22.RULE index a3494bde3b8..2c3e26f16e2 100644 --- a/src/licensedcode/data/rules/x11_22.RULE +++ b/src/licensedcode/data/rules/x11_22.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ICU +--- + https://licenses.nuget.org/ICU \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_22.yml b/src/licensedcode/data/rules/x11_22.yml deleted file mode 100644 index a5333d06280..00000000000 --- a/src/licensedcode/data/rules/x11_22.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ICU diff --git a/src/licensedcode/data/rules/x11_23.RULE b/src/licensedcode/data/rules/x11_23.RULE index 223cb35efcd..85cfc8ea6c1 100644 --- a/src/licensedcode/data/rules/x11_23.RULE +++ b/src/licensedcode/data/rules/x11_23.RULE @@ -1 +1,7 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ICU \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_23.yml b/src/licensedcode/data/rules/x11_23.yml deleted file mode 100644 index 19d539e1e1f..00000000000 --- a/src/licensedcode/data/rules/x11_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11_24.RULE b/src/licensedcode/data/rules/x11_24.RULE index 17a5244d750..294c87fb2c4 100644 --- a/src/licensedcode/data/rules/x11_24.RULE +++ b/src/licensedcode/data/rules/x11_24.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ICU +--- + {{ICU}} https://spdx.org/licenses/ICU \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_24.yml b/src/licensedcode/data/rules/x11_24.yml deleted file mode 100644 index 59a61fb471b..00000000000 --- a/src/licensedcode/data/rules/x11_24.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ICU diff --git a/src/licensedcode/data/rules/x11_25.RULE b/src/licensedcode/data/rules/x11_25.RULE index 60cc0c74e6f..1e99195fb49 100644 --- a/src/licensedcode/data/rules/x11_25.RULE +++ b/src/licensedcode/data/rules/x11_25.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ICU +--- + LICENSE {{ICU}} https://spdx.org/licenses/ICU \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_25.yml b/src/licensedcode/data/rules/x11_25.yml deleted file mode 100644 index 59a61fb471b..00000000000 --- a/src/licensedcode/data/rules/x11_25.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ICU diff --git a/src/licensedcode/data/rules/x11_3.RULE b/src/licensedcode/data/rules/x11_3.RULE index 2140a95fec4..4a85b51df09 100644 --- a/src/licensedcode/data/rules/x11_3.RULE +++ b/src/licensedcode/data/rules/x11_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11 +is_license_text: yes +relevance: 90 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including diff --git a/src/licensedcode/data/rules/x11_3.yml b/src/licensedcode/data/rules/x11_3.yml deleted file mode 100644 index 43c18937190..00000000000 --- a/src/licensedcode/data/rules/x11_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_text: yes -relevance: 90 diff --git a/src/licensedcode/data/rules/x11_4.RULE b/src/licensedcode/data/rules/x11_4.RULE index a1877c48aba..1fc3d72d598 100644 --- a/src/licensedcode/data/rules/x11_4.RULE +++ b/src/licensedcode/data/rules/x11_4.RULE @@ -1 +1,7 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 80 +--- + the ICU License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_4.yml b/src/licensedcode/data/rules/x11_4.yml deleted file mode 100644 index c72d6208671..00000000000 --- a/src/licensedcode/data/rules/x11_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/x11_5.RULE b/src/licensedcode/data/rules/x11_5.RULE index a84238d15d4..c6bf8530438 100644 --- a/src/licensedcode/data/rules/x11_5.RULE +++ b/src/licensedcode/data/rules/x11_5.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_tag: yes +relevance: 100 +ignorable_urls: + - http://source.icu-project.org/repos/icu/icu/trunk/license.html +--- + License: ICU License (http://source.icu-project.org/repos/icu/icu/trunk/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_5.yml b/src/licensedcode/data/rules/x11_5.yml deleted file mode 100644 index 3088c693ee9..00000000000 --- a/src/licensedcode/data/rules/x11_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_tag: yes -relevance: 100 -ignorable_urls: - - http://source.icu-project.org/repos/icu/icu/trunk/license.html diff --git a/src/licensedcode/data/rules/x11_6.RULE b/src/licensedcode/data/rules/x11_6.RULE index 32069b30e9d..bddea20d2c6 100644 --- a/src/licensedcode/data/rules/x11_6.RULE +++ b/src/licensedcode/data/rules/x11_6.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://source.icu-project.org/repos/icu/icu/trunk/license.html +--- + http://source.icu-project.org/repos/icu/icu/trunk/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_6.yml b/src/licensedcode/data/rules/x11_6.yml deleted file mode 100644 index 8a869c7889b..00000000000 --- a/src/licensedcode/data/rules/x11_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://source.icu-project.org/repos/icu/icu/trunk/license.html diff --git a/src/licensedcode/data/rules/x11_7.RULE b/src/licensedcode/data/rules/x11_7.RULE index d210c756a70..28dc724132e 100644 --- a/src/licensedcode/data/rules/x11_7.RULE +++ b/src/licensedcode/data/rules/x11_7.RULE @@ -1 +1,7 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +--- + ICU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_7.yml b/src/licensedcode/data/rules/x11_7.yml deleted file mode 100644 index 19d539e1e1f..00000000000 --- a/src/licensedcode/data/rules/x11_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11_8.RULE b/src/licensedcode/data/rules/x11_8.RULE index a190e2d579b..4c1f248e39f 100644 --- a/src/licensedcode/data/rules/x11_8.RULE +++ b/src/licensedcode/data/rules/x11_8.RULE @@ -1 +1,7 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +--- + # This file can be freely redistributed under the same license as ICU. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_8.yml b/src/licensedcode/data/rules/x11_8.yml deleted file mode 100644 index 19d539e1e1f..00000000000 --- a/src/licensedcode/data/rules/x11_8.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11_9.RULE b/src/licensedcode/data/rules/x11_9.RULE index b95cb8ff2ee..bf7c8cc9fe5 100644 --- a/src/licensedcode/data/rules/x11_9.RULE +++ b/src/licensedcode/data/rules/x11_9.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11 +is_license_text: yes +notes: a weirdly hyphenated X11 license text +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Soft- ware"), to deal in the Software without restriction, including without @@ -21,4 +27,4 @@ MANCE OF THIS SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of -the copyright holder. \ No newline at end of file +the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_9.yml b/src/licensedcode/data/rules/x11_9.yml deleted file mode 100644 index fd4022fa1cd..00000000000 --- a/src/licensedcode/data/rules/x11_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_text: yes -notes: a weirdly hyphenated X11 license text diff --git a/src/licensedcode/data/rules/x11_and_other-permissive_1.RULE b/src/licensedcode/data/rules/x11_and_other-permissive_1.RULE index 0677fb5be20..5cff811010e 100644 --- a/src/licensedcode/data/rules/x11_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/x11_and_other-permissive_1.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11 AND other-permissive +is_license_text: yes +relevance: 99 +notes: there are extra conditions on top of the X11 terms +--- + COPYRIGHT AND PERMISSION NOTICE: Permission is hereby granted, free of charge, to any person obtaining a copy @@ -33,4 +40,4 @@ Science Foundation funding. All work derived from DANSE software should acknowledge DANSE with the following statement: "This work benefitted from DANSE software developed - under NSF award DMR-0520547." + under NSF award DMR-0520547." \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_and_other-permissive_1.yml b/src/licensedcode/data/rules/x11_and_other-permissive_1.yml deleted file mode 100644 index 634d00c0f76..00000000000 --- a/src/licensedcode/data/rules/x11_and_other-permissive_1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11 AND other-permissive -is_license_text: yes -relevance: 99 -notes: there are extra conditions on top of the X11 terms diff --git a/src/licensedcode/data/rules/x11_and_other-permissive_2.RULE b/src/licensedcode/data/rules/x11_and_other-permissive_2.RULE index 38ffb375bb4..a05ef1fd189 100644 --- a/src/licensedcode/data/rules/x11_and_other-permissive_2.RULE +++ b/src/licensedcode/data/rules/x11_and_other-permissive_2.RULE @@ -1,3 +1,15 @@ +--- +license_expression: x11 AND other-permissive +is_license_text: yes +relevance: 95 +notes: Per author "This is a modified version of the X11 Licence (commonly known as the MIT + licence). The modifications relate to including not only the copyright notice, as per the + original X11, but also the authors URL. This is a trivial modification, and does not affect + any other part of the licence." +ignorable_urls: + - http://www.twilightuniverse.com/ +--- + www.twilightuniverse.com */ Software licenced under a modified X11 licence, see documentation or authors website for more details */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_and_other-permissive_2.yml b/src/licensedcode/data/rules/x11_and_other-permissive_2.yml deleted file mode 100644 index 74714ff99bf..00000000000 --- a/src/licensedcode/data/rules/x11_and_other-permissive_2.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: x11 AND other-permissive -is_license_text: yes -relevance: 95 -notes: Per author "This is a modified version of the X11 Licence (commonly known as the MIT - licence). The modifications relate to including not only the copyright notice, as per the - original X11, but also the authors URL. This is a trivial modification, and does not affect - any other part of the licence." -ignorable_urls: - - http://www.twilightuniverse.com/ diff --git a/src/licensedcode/data/rules/x11_and_other-permissive_3.RULE b/src/licensedcode/data/rules/x11_and_other-permissive_3.RULE index c2edca165ba..163daf75471 100644 --- a/src/licensedcode/data/rules/x11_and_other-permissive_3.RULE +++ b/src/licensedcode/data/rules/x11_and_other-permissive_3.RULE @@ -1,3 +1,17 @@ +--- +license_expression: x11 AND other-permissive +is_license_text: yes +relevance: 95 +notes: Per author "This is a modified version of the X11 Licence (commonly known as the MIT + licence). The modifications relate to including not only the copyright notice, as per the + original X11, but also the authors URL. This is a trivial modification, and does not affect + any other part of the licence." +ignorable_authors: + - Website http://www.twilightuniverse.com +ignorable_urls: + - http://www.twilightuniverse.com/ +--- + Authors Website: http://www.twilightuniverse.com/ All rights reserved. diff --git a/src/licensedcode/data/rules/x11_and_other-permissive_3.yml b/src/licensedcode/data/rules/x11_and_other-permissive_3.yml deleted file mode 100644 index be0364dac13..00000000000 --- a/src/licensedcode/data/rules/x11_and_other-permissive_3.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: x11 AND other-permissive -is_license_text: yes -relevance: 95 -notes: Per author "This is a modified version of the X11 Licence (commonly known as the MIT - licence). The modifications relate to including not only the copyright notice, as per the - original X11, but also the authors URL. This is a trivial modification, and does not affect - any other part of the licence." -ignorable_authors: - - Website http://www.twilightuniverse.com -ignorable_urls: - - http://www.twilightuniverse.com/ diff --git a/src/licensedcode/data/rules/x11_danse.RULE b/src/licensedcode/data/rules/x11_danse.RULE index 4f53c75f8ee..22985914991 100644 --- a/src/licensedcode/data/rules/x11_danse.RULE +++ b/src/licensedcode/data/rules/x11_danse.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11 +is_license_text: yes +notes: x11 Danse notice +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, @@ -21,4 +27,4 @@ SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this -Software without prior written authorization of the copyright holder. +Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_danse.yml b/src/licensedcode/data/rules/x11_danse.yml deleted file mode 100644 index 2cc1a47504e..00000000000 --- a/src/licensedcode/data/rules/x11_danse.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_text: yes -notes: x11 Danse notice diff --git a/src/licensedcode/data/rules/x11_danse2.RULE b/src/licensedcode/data/rules/x11_danse2.RULE index aa624e13612..b452e4b8c43 100644 --- a/src/licensedcode/data/rules/x11_danse2.RULE +++ b/src/licensedcode/data/rules/x11_danse2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: x11 AND other-permissive +is_license_notice: yes +minimum_coverage: 80 +notes: rare extra notice added to an X11 license by the Danse project +--- + DANSE is the name of a software system under construction with U.S. National Science Foundation funding. All work derived from DANSE software should acknowledge DANSE with the following statement: diff --git a/src/licensedcode/data/rules/x11_danse2.yml b/src/licensedcode/data/rules/x11_danse2.yml deleted file mode 100644 index a992bc8cfd0..00000000000 --- a/src/licensedcode/data/rules/x11_danse2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: x11 AND other-permissive -is_license_notice: yes -minimum_coverage: 80 -notes: rare extra notice added to an X11 license by the Danse project diff --git a/src/licensedcode/data/rules/x11_ibm-icu_4.RULE b/src/licensedcode/data/rules/x11_ibm-icu_4.RULE index bc199a97474..4f83227ea51 100644 --- a/src/licensedcode/data/rules/x11_ibm-icu_4.RULE +++ b/src/licensedcode/data/rules/x11_ibm-icu_4.RULE @@ -1,2 +1,8 @@ +--- +license_expression: x11 +is_license_notice: yes +relevance: 100 +--- + /* This software is made available under the terms of the */ /* ICU License \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_ibm-icu_4.yml b/src/licensedcode/data/rules/x11_ibm-icu_4.yml deleted file mode 100644 index 0e00239466b..00000000000 --- a/src/licensedcode/data/rules/x11_ibm-icu_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11_ibm-icu_5.RULE b/src/licensedcode/data/rules/x11_ibm-icu_5.RULE index b0892e16cad..cd474c3b6ad 100644 --- a/src/licensedcode/data/rules/x11_ibm-icu_5.RULE +++ b/src/licensedcode/data/rules/x11_ibm-icu_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 100 +--- + ICU License - ICU 1.8.1 and later -COPYRIGHT AND PERMISSION NOTICE +COPYRIGHT AND PERMISSION NOTICE \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_ibm-icu_5.yml b/src/licensedcode/data/rules/x11_ibm-icu_5.yml deleted file mode 100644 index 19d539e1e1f..00000000000 --- a/src/licensedcode/data/rules/x11_ibm-icu_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11_ibm-icu_6.RULE b/src/licensedcode/data/rules/x11_ibm-icu_6.RULE index d22ad078709..10f6e137b2c 100644 --- a/src/licensedcode/data/rules/x11_ibm-icu_6.RULE +++ b/src/licensedcode/data/rules/x11_ibm-icu_6.RULE @@ -1,2 +1,8 @@ +--- +license_expression: x11 +is_license_notice: yes +relevance: 100 +--- + /* This software is made available under the terms of the */ -/* ICU License - ICU 1.8.1 and later +/* ICU License - ICU 1.8.1 and later \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_ibm-icu_6.yml b/src/licensedcode/data/rules/x11_ibm-icu_6.yml deleted file mode 100644 index 0e00239466b..00000000000 --- a/src/licensedcode/data/rules/x11_ibm-icu_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: x11 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/x11_nuget_url_1.RULE b/src/licensedcode/data/rules/x11_nuget_url_1.RULE index 3a53e7512e9..b3812a19935 100644 --- a/src/licensedcode/data/rules/x11_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/x11_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/NationalAssociationOfRealtors/libRETS/blob/master/LICENSE +--- + https://github.com/NationalAssociationOfRealtors/libRETS/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_nuget_url_1.yml b/src/licensedcode/data/rules/x11_nuget_url_1.yml deleted file mode 100644 index 1701c084ab3..00000000000 --- a/src/licensedcode/data/rules/x11_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/NationalAssociationOfRealtors/libRETS/blob/master/LICENSE diff --git a/src/licensedcode/data/rules/x11_url_1.RULE b/src/licensedcode/data/rules/x11_url_1.RULE index 79587d36a76..863c0611a14 100644 --- a/src/licensedcode/data/rules/x11_url_1.RULE +++ b/src/licensedcode/data/rules/x11_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/icu +--- + https://spdx.org/licenses/icu \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_url_1.yml b/src/licensedcode/data/rules/x11_url_1.yml deleted file mode 100644 index d4607b00e3b..00000000000 --- a/src/licensedcode/data/rules/x11_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/icu diff --git a/src/licensedcode/data/rules/x11_url_2.RULE b/src/licensedcode/data/rules/x11_url_2.RULE index 40550791073..01cef2baecd 100644 --- a/src/licensedcode/data/rules/x11_url_2.RULE +++ b/src/licensedcode/data/rules/x11_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: x11 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/icu.html +--- + https://spdx.org/licenses/icu.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/x11_url_2.yml b/src/licensedcode/data/rules/x11_url_2.yml deleted file mode 100644 index 1b78dd4a7d0..00000000000 --- a/src/licensedcode/data/rules/x11_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: x11 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/icu.html diff --git a/src/licensedcode/data/rules/xfree86-1.0.RULE b/src/licensedcode/data/rules/xfree86-1.0.RULE index a31478a1003..8d5a18b800a 100644 --- a/src/licensedcode/data/rules/xfree86-1.0.RULE +++ b/src/licensedcode/data/rules/xfree86-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: xfree86-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.xfree86.org/current/LICENSE5.html +--- + http://www.xfree86.org/current/LICENSE5.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.0.yml b/src/licensedcode/data/rules/xfree86-1.0.yml deleted file mode 100644 index 582f3d95b52..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xfree86-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.xfree86.org/current/LICENSE5.html diff --git a/src/licensedcode/data/rules/xfree86-1.0_1.RULE b/src/licensedcode/data/rules/xfree86-1.0_1.RULE index 3bddf39ef30..39157684cf6 100644 --- a/src/licensedcode/data/rules/xfree86-1.0_1.RULE +++ b/src/licensedcode/data/rules/xfree86-1.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: xfree86-1.0 +is_license_text: yes +minimum_coverage: 60 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including @@ -20,4 +26,4 @@ THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the Hewlett-Packard Company shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written -authorization from the Hewlett-Packard Company. +authorization from the Hewlett-Packard Company. \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.0_1.yml b/src/licensedcode/data/rules/xfree86-1.0_1.yml deleted file mode 100644 index 39676451e53..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.0 -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/xfree86-1.0_2.RULE b/src/licensedcode/data/rules/xfree86-1.0_2.RULE index 43ed6ce54d7..f78ca59ff24 100644 --- a/src/licensedcode/data/rules/xfree86-1.0_2.RULE +++ b/src/licensedcode/data/rules/xfree86-1.0_2.RULE @@ -1,3 +1,9 @@ +--- +license_expression: xfree86-1.0 +is_license_text: yes +minimum_coverage: 80 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation @@ -19,4 +25,4 @@ OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the copyright holder(s) and author(s) shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written -authorization from the copyright holder(s) and author(s). +authorization from the copyright holder(s) and author(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.0_2.yml b/src/licensedcode/data/rules/xfree86-1.0_2.yml deleted file mode 100644 index f3095d880fb..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.0 -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/xfree86-1.0_3.RULE b/src/licensedcode/data/rules/xfree86-1.0_3.RULE index e1bbf8cdebd..22f9915fd6a 100644 --- a/src/licensedcode/data/rules/xfree86-1.0_3.RULE +++ b/src/licensedcode/data/rules/xfree86-1.0_3.RULE @@ -1,3 +1,9 @@ +--- +license_expression: xfree86-1.0 +is_license_text: yes +minimum_coverage: 60 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (""), to deal in without restriction, including without limitation the rights to @@ -19,4 +25,4 @@ out of or in connection with or the use or other dealings in Except as contained in this notice, the name of the and Company shall not be used in advertising or otherwise to promote the sale, use or other dealings in without prior written authorization from -the and Company. +the and Company. \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.0_3.yml b/src/licensedcode/data/rules/xfree86-1.0_3.yml deleted file mode 100644 index 39676451e53..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.0 -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/xfree86-1.0_4.RULE b/src/licensedcode/data/rules/xfree86-1.0_4.RULE index a7dc2bdde92..3a1f9916eb6 100644 --- a/src/licensedcode/data/rules/xfree86-1.0_4.RULE +++ b/src/licensedcode/data/rules/xfree86-1.0_4.RULE @@ -1,3 +1,9 @@ +--- +license_expression: xfree86-1.0 +is_license_text: yes +minimum_coverage: 60 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the @@ -24,4 +30,4 @@ Except as contained in this notice, the names of the authors or their institutions shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the -authors. +authors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.0_4.yml b/src/licensedcode/data/rules/xfree86-1.0_4.yml deleted file mode 100644 index 39676451e53..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.0 -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/xfree86-1.0_5.RULE b/src/licensedcode/data/rules/xfree86-1.0_5.RULE index dfef6b5d503..eca9d4d40bc 100644 --- a/src/licensedcode/data/rules/xfree86-1.0_5.RULE +++ b/src/licensedcode/data/rules/xfree86-1.0_5.RULE @@ -1,3 +1,9 @@ +--- +license_expression: xfree86-1.0 +is_license_text: yes +minimum_coverage: 60 +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation diff --git a/src/licensedcode/data/rules/xfree86-1.0_5.yml b/src/licensedcode/data/rules/xfree86-1.0_5.yml deleted file mode 100644 index 39676451e53..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.0_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.0 -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/xfree86-1.0_6.RULE b/src/licensedcode/data/rules/xfree86-1.0_6.RULE index 04b6c5ae8d2..675fbae54c2 100644 --- a/src/licensedcode/data/rules/xfree86-1.0_6.RULE +++ b/src/licensedcode/data/rules/xfree86-1.0_6.RULE @@ -1 +1,7 @@ +--- +license_expression: xfree86-1.0 +is_license_notice: yes +relevance: 100 +--- + These fonts are redistributable under the standard X11/XFree86 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.0_6.yml b/src/licensedcode/data/rules/xfree86-1.0_6.yml deleted file mode 100644 index a6907266fcc..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.0_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xfree86-1.0_7.RULE b/src/licensedcode/data/rules/xfree86-1.0_7.RULE index cb1ea1958e5..49eec59a37e 100644 --- a/src/licensedcode/data/rules/xfree86-1.0_7.RULE +++ b/src/licensedcode/data/rules/xfree86-1.0_7.RULE @@ -1 +1,7 @@ +--- +license_expression: xfree86-1.0 +is_license_reference: yes +relevance: 100 +--- + XFree86 1.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.0_7.yml b/src/licensedcode/data/rules/xfree86-1.0_7.yml deleted file mode 100644 index 0172e0ae492..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.0_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xfree86-1.1.SPDX.RULE b/src/licensedcode/data/rules/xfree86-1.1.SPDX.RULE index 86bfe817669..7c4b53a67c5 100644 --- a/src/licensedcode/data/rules/xfree86-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1.SPDX.RULE @@ -1,3 +1,14 @@ +--- +license_expression: xfree86-1.1 +is_license_text: yes +minimum_coverage: 80 +notes: license text as published by SPDX +ignorable_authors: + - The XFree86 Project, Inc (http://www.xfree86.org/) +ignorable_urls: + - http://www.xfree86.org/ +--- + XFree86 License (version 1.1) Permission is hereby granted, free of charge, to any person obtaining a diff --git a/src/licensedcode/data/rules/xfree86-1.1.SPDX.yml b/src/licensedcode/data/rules/xfree86-1.1.SPDX.yml deleted file mode 100644 index 9a3746e40a5..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1.SPDX.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: xfree86-1.1 -is_license_text: yes -minimum_coverage: 80 -notes: license text as published by SPDX -ignorable_authors: - - The XFree86 Project, Inc (http://www.xfree86.org/) -ignorable_urls: - - http://www.xfree86.org/ diff --git a/src/licensedcode/data/rules/xfree86-1.1_1.RULE b/src/licensedcode/data/rules/xfree86-1.1_1.RULE index 42ff27915b4..01cf84f34c9 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_1.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +--- + XFree86 License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_1.yml b/src/licensedcode/data/rules/xfree86-1.1_1.yml deleted file mode 100644 index db5edd1053d..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xfree86-1.1_10.RULE b/src/licensedcode/data/rules/xfree86-1.1_10.RULE index 89941acfec0..f0e973b79cb 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_10.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_10.RULE @@ -1 +1,10 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + XFree86 License 1.1 XFree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_10.yml b/src/licensedcode/data/rules/xfree86-1.1_10.yml deleted file mode 100644 index 4417eec4718..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xfree86-1.1_11.RULE b/src/licensedcode/data/rules/xfree86-1.1_11.RULE index fb2e3800674..2226c4b192b 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_11.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: xfree86-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: XFree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_11.yml b/src/licensedcode/data/rules/xfree86-1.1_11.yml deleted file mode 100644 index ce43fcb05cf..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xfree86-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xfree86-1.1_12.RULE b/src/licensedcode/data/rules/xfree86-1.1_12.RULE index 8bbb85376af..2ffe9f4a8de 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_12.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: xfree86-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: XFree86 License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_12.yml b/src/licensedcode/data/rules/xfree86-1.1_12.yml deleted file mode 100644 index ce43fcb05cf..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xfree86-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xfree86-1.1_13.RULE b/src/licensedcode/data/rules/xfree86-1.1_13.RULE index 46cd2381c6d..5b293f26c74 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_13.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_13.RULE @@ -1 +1,10 @@ +--- +license_expression: xfree86-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: XFree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_13.yml b/src/licensedcode/data/rules/xfree86-1.1_13.yml deleted file mode 100644 index ce43fcb05cf..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xfree86-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xfree86-1.1_14.RULE b/src/licensedcode/data/rules/xfree86-1.1_14.RULE index ae2440e5d9a..58ab44634d4 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_14.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_14.RULE @@ -1 +1,7 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/XFree86 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_14.yml b/src/licensedcode/data/rules/xfree86-1.1_14.yml deleted file mode 100644 index db5edd1053d..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xfree86-1.1_15.RULE b/src/licensedcode/data/rules/xfree86-1.1_15.RULE index cc0bad791a9..14ca6dcd8c3 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_15.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_15.RULE @@ -1 +1,9 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/XFree86-1.1 +--- + https://licenses.nuget.org/XFree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_15.yml b/src/licensedcode/data/rules/xfree86-1.1_15.yml deleted file mode 100644 index a5098891c4d..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/XFree86-1.1 diff --git a/src/licensedcode/data/rules/xfree86-1.1_16.RULE b/src/licensedcode/data/rules/xfree86-1.1_16.RULE index 7c069c690c5..cdc95d0224c 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_16.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_16.RULE @@ -1 +1,7 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/XFree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_16.yml b/src/licensedcode/data/rules/xfree86-1.1_16.yml deleted file mode 100644 index db5edd1053d..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xfree86-1.1_17.RULE b/src/licensedcode/data/rules/xfree86-1.1_17.RULE index b4da7dbf705..22209af8b2c 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_17.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_17.RULE @@ -1 +1,9 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/XFree86-1.1 +--- + {{XFree86-1.1}} https://spdx.org/licenses/XFree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_17.yml b/src/licensedcode/data/rules/xfree86-1.1_17.yml deleted file mode 100644 index b0b14b2029f..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/XFree86-1.1 diff --git a/src/licensedcode/data/rules/xfree86-1.1_18.RULE b/src/licensedcode/data/rules/xfree86-1.1_18.RULE index e98c1ddfadd..605ea8f53c3 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_18.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_18.RULE @@ -1 +1,9 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/XFree86-1.1 +--- + LICENSE {{XFree86-1.1}} https://spdx.org/licenses/XFree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_18.yml b/src/licensedcode/data/rules/xfree86-1.1_18.yml deleted file mode 100644 index b0b14b2029f..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/XFree86-1.1 diff --git a/src/licensedcode/data/rules/xfree86-1.1_2.RULE b/src/licensedcode/data/rules/xfree86-1.1_2.RULE index a04cc2fa53c..404fc7637e2 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_2.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.xfree86.org/current/LICENSE4.html +--- + http://www.xfree86.org/current/LICENSE4.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_2.yml b/src/licensedcode/data/rules/xfree86-1.1_2.yml deleted file mode 100644 index 6e9f3baa92f..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.xfree86.org/current/LICENSE4.html diff --git a/src/licensedcode/data/rules/xfree86-1.1_3.RULE b/src/licensedcode/data/rules/xfree86-1.1_3.RULE index afae2f241f5..e06cc628520 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_3.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_3.RULE @@ -1,3 +1,14 @@ +--- +license_expression: xfree86-1.1 +is_license_text: yes +minimum_coverage: 60 +notes: uses the english sublicence instead of the us subclicense +ignorable_authors: + - The XFree86 Project, Inc (http://www.xfree86.org/) +ignorable_urls: + - http://www.xfree86.org/ +--- + Version 1.1 of XFree86 ProjectLicence. diff --git a/src/licensedcode/data/rules/xfree86-1.1_3.yml b/src/licensedcode/data/rules/xfree86-1.1_3.yml deleted file mode 100644 index 8481b099ae2..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: xfree86-1.1 -is_license_text: yes -minimum_coverage: 60 -notes: uses the english sublicence instead of the us subclicense -ignorable_authors: - - The XFree86 Project, Inc (http://www.xfree86.org/) -ignorable_urls: - - http://www.xfree86.org/ diff --git a/src/licensedcode/data/rules/xfree86-1.1_4.RULE b/src/licensedcode/data/rules/xfree86-1.1_4.RULE index 24d9ad10286..a881975ae91 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_4.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_4.RULE @@ -1,3 +1,14 @@ +--- +license_expression: xfree86-1.1 +is_license_text: yes +minimum_coverage: 60 +notes: uses the english sublicence instead of the us subclicense +ignorable_authors: + - The XFree86 Project, Inc (http://www.xfree86.org/) +ignorable_urls: + - http://www.xfree86.org/ +--- + Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/src/licensedcode/data/rules/xfree86-1.1_4.yml b/src/licensedcode/data/rules/xfree86-1.1_4.yml deleted file mode 100644 index 8481b099ae2..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: xfree86-1.1 -is_license_text: yes -minimum_coverage: 60 -notes: uses the english sublicence instead of the us subclicense -ignorable_authors: - - The XFree86 Project, Inc (http://www.xfree86.org/) -ignorable_urls: - - http://www.xfree86.org/ diff --git a/src/licensedcode/data/rules/xfree86-1.1_5.RULE b/src/licensedcode/data/rules/xfree86-1.1_5.RULE index 6f43678ce55..2e6e5fd478a 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_5.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_5.RULE @@ -1 +1,7 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +--- + XFree86 License version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_5.yml b/src/licensedcode/data/rules/xfree86-1.1_5.yml deleted file mode 100644 index db5edd1053d..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_5.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xfree86-1.1_6.RULE b/src/licensedcode/data/rules/xfree86-1.1_6.RULE index 70b44fd1bdc..1e81bad3e0b 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_6.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_6.RULE @@ -1 +1,7 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +--- + the XFree86 1.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_6.yml b/src/licensedcode/data/rules/xfree86-1.1_6.yml deleted file mode 100644 index db5edd1053d..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_6.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xfree86-1.1_7.RULE b/src/licensedcode/data/rules/xfree86-1.1_7.RULE index cb8070fd587..f8caf6ce440 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_7.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_7.RULE @@ -1 +1,7 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 100 +--- + XFree86 1.1 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_7.yml b/src/licensedcode/data/rules/xfree86-1.1_7.yml deleted file mode 100644 index db5edd1053d..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_7.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xfree86-1.1_8.RULE b/src/licensedcode/data/rules/xfree86-1.1_8.RULE index 20e53e0986c..7f09531424b 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_8.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: XFree86 License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_8.yml b/src/licensedcode/data/rules/xfree86-1.1_8.yml deleted file mode 100644 index 4417eec4718..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xfree86-1.1_9.RULE b/src/licensedcode/data/rules/xfree86-1.1_9.RULE index ba51207435e..4b128e42524 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_9.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + XFree86-1.1 XFree86 License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_9.yml b/src/licensedcode/data/rules/xfree86-1.1_9.yml deleted file mode 100644 index 4417eec4718..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xfree86-1.1_url_1.RULE b/src/licensedcode/data/rules/xfree86-1.1_url_1.RULE index 609ccd8499d..2e691c2a04b 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xfree86-1.1 +--- + https://spdx.org/licenses/xfree86-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_url_1.yml b/src/licensedcode/data/rules/xfree86-1.1_url_1.yml deleted file mode 100644 index ba337f22bdb..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xfree86-1.1 diff --git a/src/licensedcode/data/rules/xfree86-1.1_url_2.RULE b/src/licensedcode/data/rules/xfree86-1.1_url_2.RULE index c5c0b1f4aac..54e42fd8396 100644 --- a/src/licensedcode/data/rules/xfree86-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/xfree86-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: xfree86-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xfree86-1.1.html +--- + https://spdx.org/licenses/xfree86-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/xfree86-1.1_url_2.yml b/src/licensedcode/data/rules/xfree86-1.1_url_2.yml deleted file mode 100644 index 382e7eb8803..00000000000 --- a/src/licensedcode/data/rules/xfree86-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xfree86-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xfree86-1.1.html diff --git a/src/licensedcode/data/rules/xilinx-2016_1.RULE b/src/licensedcode/data/rules/xilinx-2016_1.RULE index c72cdea7408..eaa07f3ff78 100644 --- a/src/licensedcode/data/rules/xilinx-2016_1.RULE +++ b/src/licensedcode/data/rules/xilinx-2016_1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: xilinx-2016 +is_license_notice: yes +--- + * Use of the Software is limited solely to applications: * (a) running on a Xilinx device, or (b) that interact * with a Xilinx device through a bus or interconnect. \ No newline at end of file diff --git a/src/licensedcode/data/rules/xilinx-2016_1.yml b/src/licensedcode/data/rules/xilinx-2016_1.yml deleted file mode 100644 index c5b17846e67..00000000000 --- a/src/licensedcode/data/rules/xilinx-2016_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: xilinx-2016 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/xilinx-2016_2.RULE b/src/licensedcode/data/rules/xilinx-2016_2.RULE index 7bd32e721de..ba6eaae21fb 100644 --- a/src/licensedcode/data/rules/xilinx-2016_2.RULE +++ b/src/licensedcode/data/rules/xilinx-2016_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: xilinx-2016 +is_license_notice: yes +--- + * Use of the Software is limited solely to applications: * (a) running on a device, or (b) that interact * with a device through a bus or interconnect. \ No newline at end of file diff --git a/src/licensedcode/data/rules/xilinx-2016_2.yml b/src/licensedcode/data/rules/xilinx-2016_2.yml deleted file mode 100644 index c5b17846e67..00000000000 --- a/src/licensedcode/data/rules/xilinx-2016_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: xilinx-2016 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/xilinx-2016_4.RULE b/src/licensedcode/data/rules/xilinx-2016_4.RULE index 974da7de1b5..6fe339ff348 100644 --- a/src/licensedcode/data/rules/xilinx-2016_4.RULE +++ b/src/licensedcode/data/rules/xilinx-2016_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: xilinx-2016 +is_license_text: yes +--- + * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without restriction, diff --git a/src/licensedcode/data/rules/xilinx-2016_4.yml b/src/licensedcode/data/rules/xilinx-2016_4.yml deleted file mode 100644 index 0ee21560906..00000000000 --- a/src/licensedcode/data/rules/xilinx-2016_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: xilinx-2016 -is_license_text: yes diff --git a/src/licensedcode/data/rules/xinetd.SPDX.RULE b/src/licensedcode/data/rules/xinetd.SPDX.RULE index 8cbc1c89b39..179705713d4 100644 --- a/src/licensedcode/data/rules/xinetd.SPDX.RULE +++ b/src/licensedcode/data/rules/xinetd.SPDX.RULE @@ -1,3 +1,20 @@ +--- +license_expression: xinetd +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - (c) Copyright 1992 by Panagiotis Tsirigotis + - Copyright 1998-2001 by Rob Braun + - Copyright 2001 by Steve Grubb +ignorable_holders: + - Panagiotis Tsirigotis + - Rob Braun + - Steve Grubb +ignorable_authors: + - Panagiotis Tsirigotis +--- + ORIGINAL LICENSE: This software is (c) Copyright 1992 by Panagiotis Tsirigotis diff --git a/src/licensedcode/data/rules/xinetd.SPDX.yml b/src/licensedcode/data/rules/xinetd.SPDX.yml deleted file mode 100644 index 0fb6b2fdd70..00000000000 --- a/src/licensedcode/data/rules/xinetd.SPDX.yml +++ /dev/null @@ -1,14 +0,0 @@ -license_expression: xinetd -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - (c) Copyright 1992 by Panagiotis Tsirigotis - - Copyright 1998-2001 by Rob Braun - - Copyright 2001 by Steve Grubb -ignorable_holders: - - Panagiotis Tsirigotis - - Rob Braun - - Steve Grubb -ignorable_authors: - - Panagiotis Tsirigotis diff --git a/src/licensedcode/data/rules/xinetd_1.RULE b/src/licensedcode/data/rules/xinetd_1.RULE index 337a7565bc9..95ed2b29ab5 100644 --- a/src/licensedcode/data/rules/xinetd_1.RULE +++ b/src/licensedcode/data/rules/xinetd_1.RULE @@ -1 +1,10 @@ +--- +license_expression: xinetd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + xinetd License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_1.yml b/src/licensedcode/data/rules/xinetd_1.yml deleted file mode 100644 index 6a59e0c2498..00000000000 --- a/src/licensedcode/data/rules/xinetd_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xinetd_10.RULE b/src/licensedcode/data/rules/xinetd_10.RULE index 437d8400a91..67b6221fa07 100644 --- a/src/licensedcode/data/rules/xinetd_10.RULE +++ b/src/licensedcode/data/rules/xinetd_10.RULE @@ -1 +1,9 @@ +--- +license_expression: xinetd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/xinetd +--- + {{xinetd}} https://spdx.org/licenses/xinetd \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_10.yml b/src/licensedcode/data/rules/xinetd_10.yml deleted file mode 100644 index d61af540806..00000000000 --- a/src/licensedcode/data/rules/xinetd_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/xinetd diff --git a/src/licensedcode/data/rules/xinetd_11.RULE b/src/licensedcode/data/rules/xinetd_11.RULE index 95735fd3e18..1ccea1d1ef9 100644 --- a/src/licensedcode/data/rules/xinetd_11.RULE +++ b/src/licensedcode/data/rules/xinetd_11.RULE @@ -1 +1,9 @@ +--- +license_expression: xinetd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/xinetd +--- + LICENSE {{xinetd}} https://spdx.org/licenses/xinetd \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_11.yml b/src/licensedcode/data/rules/xinetd_11.yml deleted file mode 100644 index d61af540806..00000000000 --- a/src/licensedcode/data/rules/xinetd_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/xinetd diff --git a/src/licensedcode/data/rules/xinetd_2.RULE b/src/licensedcode/data/rules/xinetd_2.RULE index c78031f9094..869d597ec12 100644 --- a/src/licensedcode/data/rules/xinetd_2.RULE +++ b/src/licensedcode/data/rules/xinetd_2.RULE @@ -1 +1,10 @@ +--- +license_expression: xinetd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: xinetd License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_2.yml b/src/licensedcode/data/rules/xinetd_2.yml deleted file mode 100644 index 6a59e0c2498..00000000000 --- a/src/licensedcode/data/rules/xinetd_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xinetd_3.RULE b/src/licensedcode/data/rules/xinetd_3.RULE index bf2babba0ec..b5d9069ef75 100644 --- a/src/licensedcode/data/rules/xinetd_3.RULE +++ b/src/licensedcode/data/rules/xinetd_3.RULE @@ -1 +1,10 @@ +--- +license_expression: xinetd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + xinetd xinetd License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_3.yml b/src/licensedcode/data/rules/xinetd_3.yml deleted file mode 100644 index 6a59e0c2498..00000000000 --- a/src/licensedcode/data/rules/xinetd_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xinetd_4.RULE b/src/licensedcode/data/rules/xinetd_4.RULE index bc869b487a5..4146eddb316 100644 --- a/src/licensedcode/data/rules/xinetd_4.RULE +++ b/src/licensedcode/data/rules/xinetd_4.RULE @@ -1 +1,10 @@ +--- +license_expression: xinetd +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + xinetd License xinetd \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_4.yml b/src/licensedcode/data/rules/xinetd_4.yml deleted file mode 100644 index 6a59e0c2498..00000000000 --- a/src/licensedcode/data/rules/xinetd_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xinetd_5.RULE b/src/licensedcode/data/rules/xinetd_5.RULE index 1fa46185b95..e3b6c354847 100644 --- a/src/licensedcode/data/rules/xinetd_5.RULE +++ b/src/licensedcode/data/rules/xinetd_5.RULE @@ -1 +1,10 @@ +--- +license_expression: xinetd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: xinetd \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_5.yml b/src/licensedcode/data/rules/xinetd_5.yml deleted file mode 100644 index 68461c59e48..00000000000 --- a/src/licensedcode/data/rules/xinetd_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xinetd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xinetd_6.RULE b/src/licensedcode/data/rules/xinetd_6.RULE index e28d134830c..9aa86f3fbe2 100644 --- a/src/licensedcode/data/rules/xinetd_6.RULE +++ b/src/licensedcode/data/rules/xinetd_6.RULE @@ -1 +1,10 @@ +--- +license_expression: xinetd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: xinetd License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_6.yml b/src/licensedcode/data/rules/xinetd_6.yml deleted file mode 100644 index 68461c59e48..00000000000 --- a/src/licensedcode/data/rules/xinetd_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xinetd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xinetd_7.RULE b/src/licensedcode/data/rules/xinetd_7.RULE index a81656029a6..4a5682128cd 100644 --- a/src/licensedcode/data/rules/xinetd_7.RULE +++ b/src/licensedcode/data/rules/xinetd_7.RULE @@ -1 +1,10 @@ +--- +license_expression: xinetd +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: xinetd \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_7.yml b/src/licensedcode/data/rules/xinetd_7.yml deleted file mode 100644 index 68461c59e48..00000000000 --- a/src/licensedcode/data/rules/xinetd_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xinetd -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xinetd_8.RULE b/src/licensedcode/data/rules/xinetd_8.RULE index 03a6ebf215c..5d88ba30508 100644 --- a/src/licensedcode/data/rules/xinetd_8.RULE +++ b/src/licensedcode/data/rules/xinetd_8.RULE @@ -1 +1,9 @@ +--- +license_expression: xinetd +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/xinetd +--- + https://licenses.nuget.org/xinetd \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_8.yml b/src/licensedcode/data/rules/xinetd_8.yml deleted file mode 100644 index c19f611f91f..00000000000 --- a/src/licensedcode/data/rules/xinetd_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/xinetd diff --git a/src/licensedcode/data/rules/xinetd_9.RULE b/src/licensedcode/data/rules/xinetd_9.RULE index 90caa9cc50e..bb9b2cc3e83 100644 --- a/src/licensedcode/data/rules/xinetd_9.RULE +++ b/src/licensedcode/data/rules/xinetd_9.RULE @@ -1 +1,7 @@ +--- +license_expression: xinetd +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/xinetd \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_9.yml b/src/licensedcode/data/rules/xinetd_9.yml deleted file mode 100644 index cdca6802657..00000000000 --- a/src/licensedcode/data/rules/xinetd_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xinetd_url_1.RULE b/src/licensedcode/data/rules/xinetd_url_1.RULE index 74fa53befeb..2e40ea4774c 100644 --- a/src/licensedcode/data/rules/xinetd_url_1.RULE +++ b/src/licensedcode/data/rules/xinetd_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: xinetd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xinetd +--- + https://spdx.org/licenses/xinetd \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_url_1.yml b/src/licensedcode/data/rules/xinetd_url_1.yml deleted file mode 100644 index a4a91695843..00000000000 --- a/src/licensedcode/data/rules/xinetd_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xinetd diff --git a/src/licensedcode/data/rules/xinetd_url_2.RULE b/src/licensedcode/data/rules/xinetd_url_2.RULE index 07a0c3f79b6..529be9a91e9 100644 --- a/src/licensedcode/data/rules/xinetd_url_2.RULE +++ b/src/licensedcode/data/rules/xinetd_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: xinetd +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xinetd.html +--- + https://spdx.org/licenses/xinetd.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/xinetd_url_2.yml b/src/licensedcode/data/rules/xinetd_url_2.yml deleted file mode 100644 index ef1403f581d..00000000000 --- a/src/licensedcode/data/rules/xinetd_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xinetd -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xinetd.html diff --git a/src/licensedcode/data/rules/xmldb-1.0.RULE b/src/licensedcode/data/rules/xmldb-1.0.RULE index 10c98b35ca8..783152dd5cc 100644 --- a/src/licensedcode/data/rules/xmldb-1.0.RULE +++ b/src/licensedcode/data/rules/xmldb-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: xmldb-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://xmldb-org.sourceforge.net/index.html +--- + http://xmldb-org.sourceforge.net/index.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/xmldb-1.0.yml b/src/licensedcode/data/rules/xmldb-1.0.yml deleted file mode 100644 index eb9bc4afd75..00000000000 --- a/src/licensedcode/data/rules/xmldb-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xmldb-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://xmldb-org.sourceforge.net/index.html diff --git a/src/licensedcode/data/rules/xmldb-1.0_3.RULE b/src/licensedcode/data/rules/xmldb-1.0_3.RULE index b3c9741e173..f8216f817e2 100644 --- a/src/licensedcode/data/rules/xmldb-1.0_3.RULE +++ b/src/licensedcode/data/rules/xmldb-1.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: xmldb-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://xmldb-org.sourceforge.net/legal.html +--- + http://xmldb-org.sourceforge.net/legal.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/xmldb-1.0_3.yml b/src/licensedcode/data/rules/xmldb-1.0_3.yml deleted file mode 100644 index 15465b6683d..00000000000 --- a/src/licensedcode/data/rules/xmldb-1.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xmldb-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://xmldb-org.sourceforge.net/legal.html diff --git a/src/licensedcode/data/rules/xnet.RULE b/src/licensedcode/data/rules/xnet.RULE index 5c51ffbeace..36be8c01a8f 100644 --- a/src/licensedcode/data/rules/xnet.RULE +++ b/src/licensedcode/data/rules/xnet.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/xnet.php +--- + http://www.opensource.org/licenses/xnet.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet.yml b/src/licensedcode/data/rules/xnet.yml deleted file mode 100644 index f39db4c314c..00000000000 --- a/src/licensedcode/data/rules/xnet.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/xnet.php diff --git a/src/licensedcode/data/rules/xnet_1.RULE b/src/licensedcode/data/rules/xnet_1.RULE index acab8d79ea2..51cbec84447 100644 --- a/src/licensedcode/data/rules/xnet_1.RULE +++ b/src/licensedcode/data/rules/xnet_1.RULE @@ -1 +1,7 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +--- + X.Net License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_1.yml b/src/licensedcode/data/rules/xnet_1.yml deleted file mode 100644 index 2ac0a20cd07..00000000000 --- a/src/licensedcode/data/rules/xnet_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xnet_10.RULE b/src/licensedcode/data/rules/xnet_10.RULE index ed73c220609..0ae82f3b748 100644 --- a/src/licensedcode/data/rules/xnet_10.RULE +++ b/src/licensedcode/data/rules/xnet_10.RULE @@ -1 +1,10 @@ +--- +license_expression: xnet +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: X.Net License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_10.yml b/src/licensedcode/data/rules/xnet_10.yml deleted file mode 100644 index 4b9aa6db247..00000000000 --- a/src/licensedcode/data/rules/xnet_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xnet -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xnet_11.RULE b/src/licensedcode/data/rules/xnet_11.RULE index b46109c57f7..55e1495f77d 100644 --- a/src/licensedcode/data/rules/xnet_11.RULE +++ b/src/licensedcode/data/rules/xnet_11.RULE @@ -1 +1,10 @@ +--- +license_expression: xnet +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_11.yml b/src/licensedcode/data/rules/xnet_11.yml deleted file mode 100644 index 4b9aa6db247..00000000000 --- a/src/licensedcode/data/rules/xnet_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xnet -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xnet_12.RULE b/src/licensedcode/data/rules/xnet_12.RULE index 3526d1c409a..ba02d46ba2f 100644 --- a/src/licensedcode/data/rules/xnet_12.RULE +++ b/src/licensedcode/data/rules/xnet_12.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Xnet +--- + https://licenses.nuget.org/Xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_12.yml b/src/licensedcode/data/rules/xnet_12.yml deleted file mode 100644 index 4845183c5fe..00000000000 --- a/src/licensedcode/data/rules/xnet_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Xnet diff --git a/src/licensedcode/data/rules/xnet_13.RULE b/src/licensedcode/data/rules/xnet_13.RULE index 0950acceb8c..8b5133d9c65 100644 --- a/src/licensedcode/data/rules/xnet_13.RULE +++ b/src/licensedcode/data/rules/xnet_13.RULE @@ -1 +1,7 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_13.yml b/src/licensedcode/data/rules/xnet_13.yml deleted file mode 100644 index 2ac0a20cd07..00000000000 --- a/src/licensedcode/data/rules/xnet_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xnet_14.RULE b/src/licensedcode/data/rules/xnet_14.RULE index 5563b19e16b..8872e5b241a 100644 --- a/src/licensedcode/data/rules/xnet_14.RULE +++ b/src/licensedcode/data/rules/xnet_14.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Xnet +--- + {{Xnet}} https://spdx.org/licenses/Xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_14.yml b/src/licensedcode/data/rules/xnet_14.yml deleted file mode 100644 index 3873aad225a..00000000000 --- a/src/licensedcode/data/rules/xnet_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Xnet diff --git a/src/licensedcode/data/rules/xnet_15.RULE b/src/licensedcode/data/rules/xnet_15.RULE index eb69b185409..83471f1fcbe 100644 --- a/src/licensedcode/data/rules/xnet_15.RULE +++ b/src/licensedcode/data/rules/xnet_15.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Xnet +--- + LICENSE {{Xnet}} https://spdx.org/licenses/Xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_15.yml b/src/licensedcode/data/rules/xnet_15.yml deleted file mode 100644 index 3873aad225a..00000000000 --- a/src/licensedcode/data/rules/xnet_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Xnet diff --git a/src/licensedcode/data/rules/xnet_2.RULE b/src/licensedcode/data/rules/xnet_2.RULE index b74387a143c..048e36f3cf5 100644 --- a/src/licensedcode/data/rules/xnet_2.RULE +++ b/src/licensedcode/data/rules/xnet_2.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/xnet +--- + https://opensource.org/licenses/xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_2.yml b/src/licensedcode/data/rules/xnet_2.yml deleted file mode 100644 index 677e70c1832..00000000000 --- a/src/licensedcode/data/rules/xnet_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/xnet diff --git a/src/licensedcode/data/rules/xnet_3.RULE b/src/licensedcode/data/rules/xnet_3.RULE index cec3763ae86..55683d34f60 100644 --- a/src/licensedcode/data/rules/xnet_3.RULE +++ b/src/licensedcode/data/rules/xnet_3.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/xnet +--- + http://opensource.org/licenses/xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_3.yml b/src/licensedcode/data/rules/xnet_3.yml deleted file mode 100644 index af3acde26ae..00000000000 --- a/src/licensedcode/data/rules/xnet_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/xnet diff --git a/src/licensedcode/data/rules/xnet_4.RULE b/src/licensedcode/data/rules/xnet_4.RULE index 5701e69e17e..1bddad99c6a 100644 --- a/src/licensedcode/data/rules/xnet_4.RULE +++ b/src/licensedcode/data/rules/xnet_4.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/xnet +--- + https://www.opensource.org/licenses/xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_4.yml b/src/licensedcode/data/rules/xnet_4.yml deleted file mode 100644 index 3787eebee0a..00000000000 --- a/src/licensedcode/data/rules/xnet_4.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/xnet diff --git a/src/licensedcode/data/rules/xnet_5.RULE b/src/licensedcode/data/rules/xnet_5.RULE index 43fba5e49cf..1fcfa8b5ad2 100644 --- a/src/licensedcode/data/rules/xnet_5.RULE +++ b/src/licensedcode/data/rules/xnet_5.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/xnet +--- + http://www.opensource.org/licenses/xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_5.yml b/src/licensedcode/data/rules/xnet_5.yml deleted file mode 100644 index fe734f61c8a..00000000000 --- a/src/licensedcode/data/rules/xnet_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/xnet diff --git a/src/licensedcode/data/rules/xnet_6.RULE b/src/licensedcode/data/rules/xnet_6.RULE index f4b526cb254..a966a6c717f 100644 --- a/src/licensedcode/data/rules/xnet_6.RULE +++ b/src/licensedcode/data/rules/xnet_6.RULE @@ -1 +1,10 @@ +--- +license_expression: xnet +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: X.Net License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_6.yml b/src/licensedcode/data/rules/xnet_6.yml deleted file mode 100644 index 07958b9f255..00000000000 --- a/src/licensedcode/data/rules/xnet_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xnet -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xnet_7.RULE b/src/licensedcode/data/rules/xnet_7.RULE index 9a8af5d7127..9fb87906f6e 100644 --- a/src/licensedcode/data/rules/xnet_7.RULE +++ b/src/licensedcode/data/rules/xnet_7.RULE @@ -1 +1,10 @@ +--- +license_expression: xnet +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Xnet X.Net License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_7.yml b/src/licensedcode/data/rules/xnet_7.yml deleted file mode 100644 index 07958b9f255..00000000000 --- a/src/licensedcode/data/rules/xnet_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xnet -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xnet_8.RULE b/src/licensedcode/data/rules/xnet_8.RULE index ade79a752e8..8b7055155f5 100644 --- a/src/licensedcode/data/rules/xnet_8.RULE +++ b/src/licensedcode/data/rules/xnet_8.RULE @@ -1 +1,10 @@ +--- +license_expression: xnet +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + X.Net License Xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_8.yml b/src/licensedcode/data/rules/xnet_8.yml deleted file mode 100644 index 07958b9f255..00000000000 --- a/src/licensedcode/data/rules/xnet_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xnet -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xnet_9.RULE b/src/licensedcode/data/rules/xnet_9.RULE index b3b825ef8ad..d36225dee5f 100644 --- a/src/licensedcode/data/rules/xnet_9.RULE +++ b/src/licensedcode/data/rules/xnet_9.RULE @@ -1 +1,10 @@ +--- +license_expression: xnet +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_9.yml b/src/licensedcode/data/rules/xnet_9.yml deleted file mode 100644 index 4b9aa6db247..00000000000 --- a/src/licensedcode/data/rules/xnet_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xnet -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xnet_url_1.RULE b/src/licensedcode/data/rules/xnet_url_1.RULE index 9ef5dd9a843..29ba6224c64 100644 --- a/src/licensedcode/data/rules/xnet_url_1.RULE +++ b/src/licensedcode/data/rules/xnet_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xnet +--- + https://spdx.org/licenses/xnet \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_url_1.yml b/src/licensedcode/data/rules/xnet_url_1.yml deleted file mode 100644 index 6ee36e81bf1..00000000000 --- a/src/licensedcode/data/rules/xnet_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xnet diff --git a/src/licensedcode/data/rules/xnet_url_2.RULE b/src/licensedcode/data/rules/xnet_url_2.RULE index 59fd7fa439e..2a0db4eb52b 100644 --- a/src/licensedcode/data/rules/xnet_url_2.RULE +++ b/src/licensedcode/data/rules/xnet_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: xnet +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xnet.html +--- + https://spdx.org/licenses/xnet.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/xnet_url_2.yml b/src/licensedcode/data/rules/xnet_url_2.yml deleted file mode 100644 index fe51d45b1d7..00000000000 --- a/src/licensedcode/data/rules/xnet_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xnet -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xnet.html diff --git a/src/licensedcode/data/rules/xskat_1.RULE b/src/licensedcode/data/rules/xskat_1.RULE index be429a45f69..a57353691d7 100644 --- a/src/licensedcode/data/rules/xskat_1.RULE +++ b/src/licensedcode/data/rules/xskat_1.RULE @@ -1 +1,10 @@ +--- +license_expression: xskat +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + XSkat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_1.yml b/src/licensedcode/data/rules/xskat_1.yml deleted file mode 100644 index eba9de0cfca..00000000000 --- a/src/licensedcode/data/rules/xskat_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xskat -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xskat_10.RULE b/src/licensedcode/data/rules/xskat_10.RULE index 621f362fcd5..06a2514d1f7 100644 --- a/src/licensedcode/data/rules/xskat_10.RULE +++ b/src/licensedcode/data/rules/xskat_10.RULE @@ -1 +1,9 @@ +--- +license_expression: xskat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/XSkat +--- + LICENSE {{XSkat}} https://spdx.org/licenses/XSkat \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_10.yml b/src/licensedcode/data/rules/xskat_10.yml deleted file mode 100644 index b3133ac88c6..00000000000 --- a/src/licensedcode/data/rules/xskat_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xskat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/XSkat diff --git a/src/licensedcode/data/rules/xskat_11.RULE b/src/licensedcode/data/rules/xskat_11.RULE index 0dcfc5389dc..9a1e68a4c04 100644 --- a/src/licensedcode/data/rules/xskat_11.RULE +++ b/src/licensedcode/data/rules/xskat_11.RULE @@ -1 +1,9 @@ +--- +license_expression: xskat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/XSkat +--- + {{XSkat}} https://spdx.org/licenses/XSkat \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_11.yml b/src/licensedcode/data/rules/xskat_11.yml deleted file mode 100644 index b3133ac88c6..00000000000 --- a/src/licensedcode/data/rules/xskat_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xskat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/XSkat diff --git a/src/licensedcode/data/rules/xskat_2.RULE b/src/licensedcode/data/rules/xskat_2.RULE index 31dc4b0e352..9ebcb24ab14 100644 --- a/src/licensedcode/data/rules/xskat_2.RULE +++ b/src/licensedcode/data/rules/xskat_2.RULE @@ -1 +1,10 @@ +--- +license_expression: xskat +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: XSkat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_2.yml b/src/licensedcode/data/rules/xskat_2.yml deleted file mode 100644 index eba9de0cfca..00000000000 --- a/src/licensedcode/data/rules/xskat_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xskat -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xskat_3.RULE b/src/licensedcode/data/rules/xskat_3.RULE index 54606677d76..7d09ccfabae 100644 --- a/src/licensedcode/data/rules/xskat_3.RULE +++ b/src/licensedcode/data/rules/xskat_3.RULE @@ -1 +1,10 @@ +--- +license_expression: xskat +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + XSkat XSkat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_3.yml b/src/licensedcode/data/rules/xskat_3.yml deleted file mode 100644 index eba9de0cfca..00000000000 --- a/src/licensedcode/data/rules/xskat_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xskat -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xskat_4.RULE b/src/licensedcode/data/rules/xskat_4.RULE index 550917583ea..ab4e0f1f509 100644 --- a/src/licensedcode/data/rules/xskat_4.RULE +++ b/src/licensedcode/data/rules/xskat_4.RULE @@ -1 +1,10 @@ +--- +license_expression: xskat +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + XSkat License XSkat \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_4.yml b/src/licensedcode/data/rules/xskat_4.yml deleted file mode 100644 index eba9de0cfca..00000000000 --- a/src/licensedcode/data/rules/xskat_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xskat -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xskat_5.RULE b/src/licensedcode/data/rules/xskat_5.RULE index cce3b611376..da3d3d72274 100644 --- a/src/licensedcode/data/rules/xskat_5.RULE +++ b/src/licensedcode/data/rules/xskat_5.RULE @@ -1 +1,10 @@ +--- +license_expression: xskat +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: XSkat \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_5.yml b/src/licensedcode/data/rules/xskat_5.yml deleted file mode 100644 index edef848fe7f..00000000000 --- a/src/licensedcode/data/rules/xskat_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xskat -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xskat_6.RULE b/src/licensedcode/data/rules/xskat_6.RULE index 2aa241553f2..4a1e7f4275b 100644 --- a/src/licensedcode/data/rules/xskat_6.RULE +++ b/src/licensedcode/data/rules/xskat_6.RULE @@ -1 +1,10 @@ +--- +license_expression: xskat +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: XSkat License \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_6.yml b/src/licensedcode/data/rules/xskat_6.yml deleted file mode 100644 index edef848fe7f..00000000000 --- a/src/licensedcode/data/rules/xskat_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xskat -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xskat_7.RULE b/src/licensedcode/data/rules/xskat_7.RULE index 1fdcbca84d3..411999a233a 100644 --- a/src/licensedcode/data/rules/xskat_7.RULE +++ b/src/licensedcode/data/rules/xskat_7.RULE @@ -1 +1,10 @@ +--- +license_expression: xskat +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: XSkat \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_7.yml b/src/licensedcode/data/rules/xskat_7.yml deleted file mode 100644 index edef848fe7f..00000000000 --- a/src/licensedcode/data/rules/xskat_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: xskat -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/xskat_8.RULE b/src/licensedcode/data/rules/xskat_8.RULE index 2a393d550f9..990bc667e98 100644 --- a/src/licensedcode/data/rules/xskat_8.RULE +++ b/src/licensedcode/data/rules/xskat_8.RULE @@ -1 +1,9 @@ +--- +license_expression: xskat +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/XSkat +--- + https://licenses.nuget.org/XSkat \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_8.yml b/src/licensedcode/data/rules/xskat_8.yml deleted file mode 100644 index c7818f0b5cb..00000000000 --- a/src/licensedcode/data/rules/xskat_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xskat -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/XSkat diff --git a/src/licensedcode/data/rules/xskat_9.RULE b/src/licensedcode/data/rules/xskat_9.RULE index f88685632a0..e459d891f84 100644 --- a/src/licensedcode/data/rules/xskat_9.RULE +++ b/src/licensedcode/data/rules/xskat_9.RULE @@ -1 +1,7 @@ +--- +license_expression: xskat +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/XSkat \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_9.yml b/src/licensedcode/data/rules/xskat_9.yml deleted file mode 100644 index 007f84aa456..00000000000 --- a/src/licensedcode/data/rules/xskat_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: xskat -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/xskat_url_1.RULE b/src/licensedcode/data/rules/xskat_url_1.RULE index 3e973881f80..72f369a229f 100644 --- a/src/licensedcode/data/rules/xskat_url_1.RULE +++ b/src/licensedcode/data/rules/xskat_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: xskat +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xskat +--- + https://spdx.org/licenses/xskat \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_url_1.yml b/src/licensedcode/data/rules/xskat_url_1.yml deleted file mode 100644 index fe62ddf9c38..00000000000 --- a/src/licensedcode/data/rules/xskat_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xskat -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xskat diff --git a/src/licensedcode/data/rules/xskat_url_2.RULE b/src/licensedcode/data/rules/xskat_url_2.RULE index 2a16f0c1305..ea618c1b543 100644 --- a/src/licensedcode/data/rules/xskat_url_2.RULE +++ b/src/licensedcode/data/rules/xskat_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: xskat +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/xskat.html +--- + https://spdx.org/licenses/xskat.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/xskat_url_2.yml b/src/licensedcode/data/rules/xskat_url_2.yml deleted file mode 100644 index 805e4842f52..00000000000 --- a/src/licensedcode/data/rules/xskat_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: xskat -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/xskat.html diff --git a/src/licensedcode/data/rules/yensdesign.RULE b/src/licensedcode/data/rules/yensdesign.RULE index b9fb7d34b37..e0db899f46d 100644 --- a/src/licensedcode/data/rules/yensdesign.RULE +++ b/src/licensedcode/data/rules/yensdesign.RULE @@ -1 +1,9 @@ +--- +license_expression: yensdesign +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.yensdesign.com/ +--- + http://www.yensdesign.com/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/yensdesign.yml b/src/licensedcode/data/rules/yensdesign.yml deleted file mode 100644 index f9e1c94f8a3..00000000000 --- a/src/licensedcode/data/rules/yensdesign.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: yensdesign -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.yensdesign.com/ diff --git a/src/licensedcode/data/rules/ypl-1.0.RULE b/src/licensedcode/data/rules/ypl-1.0.RULE index ac90e1aaf3b..691c7b5a9db 100644 --- a/src/licensedcode/data/rules/ypl-1.0.RULE +++ b/src/licensedcode/data/rules/ypl-1.0.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zimbra.com/license/yahoo_public_license_1.0.html +--- + http://www.zimbra.com/license/yahoo_public_license_1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0.yml b/src/licensedcode/data/rules/ypl-1.0.yml deleted file mode 100644 index 5ccd9b651a6..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zimbra.com/license/yahoo_public_license_1.0.html diff --git a/src/licensedcode/data/rules/ypl-1.0_1.RULE b/src/licensedcode/data/rules/ypl-1.0_1.RULE index 57328882498..73ea0f3a6e8 100644 --- a/src/licensedcode/data/rules/ypl-1.0_1.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ypl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.zimbra.com/license +--- + ***** BEGIN LICENSE BLOCK ***** diff --git a/src/licensedcode/data/rules/ypl-1.0_1.yml b/src/licensedcode/data/rules/ypl-1.0_1.yml deleted file mode 100644 index a19f3e693d2..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.zimbra.com/license diff --git a/src/licensedcode/data/rules/ypl-1.0_10.RULE b/src/licensedcode/data/rules/ypl-1.0_10.RULE index 8e4fb687eb8..edaffb03156 100644 --- a/src/licensedcode/data/rules/ypl-1.0_10.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: YPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_10.yml b/src/licensedcode/data/rules/ypl-1.0_10.yml deleted file mode 100644 index d8bfd6c4042..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.0_11.RULE b/src/licensedcode/data/rules/ypl-1.0_11.RULE index 0908394c8ef..0cab0e80fe9 100644 --- a/src/licensedcode/data/rules/ypl-1.0_11.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/YPL-1.0 +--- + https://licenses.nuget.org/YPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_11.yml b/src/licensedcode/data/rules/ypl-1.0_11.yml deleted file mode 100644 index 26a2a1db3fa..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/YPL-1.0 diff --git a/src/licensedcode/data/rules/ypl-1.0_12.RULE b/src/licensedcode/data/rules/ypl-1.0_12.RULE index ed236336784..7dfcea344a1 100644 --- a/src/licensedcode/data/rules/ypl-1.0_12.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/YPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_12.yml b/src/licensedcode/data/rules/ypl-1.0_12.yml deleted file mode 100644 index 4a0c4dcf4b9..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ypl-1.0_13.RULE b/src/licensedcode/data/rules/ypl-1.0_13.RULE index 3c87d8ea5f1..534d89aa608 100644 --- a/src/licensedcode/data/rules/ypl-1.0_13.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/YPL-1.0 +--- + LICENSE {{YPL-1.0}} https://spdx.org/licenses/YPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_13.yml b/src/licensedcode/data/rules/ypl-1.0_13.yml deleted file mode 100644 index 36dca792ad0..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/YPL-1.0 diff --git a/src/licensedcode/data/rules/ypl-1.0_14.RULE b/src/licensedcode/data/rules/ypl-1.0_14.RULE index e444609e6af..fdf535156d1 100644 --- a/src/licensedcode/data/rules/ypl-1.0_14.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/YPL-1.0 +--- + {{YPL-1.0}} https://spdx.org/licenses/YPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_14.yml b/src/licensedcode/data/rules/ypl-1.0_14.yml deleted file mode 100644 index 36dca792ad0..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/YPL-1.0 diff --git a/src/licensedcode/data/rules/ypl-1.0_2.RULE b/src/licensedcode/data/rules/ypl-1.0_2.RULE index c140f9450dd..bd133b213d1 100644 --- a/src/licensedcode/data/rules/ypl-1.0_2.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_2.RULE @@ -1,3 +1,11 @@ +--- +license_expression: ypl-1.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.zimbra.com/license +--- + The contents of this file are subject to the Yahoo! Public License Version 1.0 ("License"); you may not use this file except in @@ -5,4 +13,4 @@ compliance with the License. You may obtain a copy of the License at http://www.zimbra.com/license. Software distributed under the License is distributed on an "AS IS" -basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. +basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_2.yml b/src/licensedcode/data/rules/ypl-1.0_2.yml deleted file mode 100644 index a19f3e693d2..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.0 -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.zimbra.com/license diff --git a/src/licensedcode/data/rules/ypl-1.0_3.RULE b/src/licensedcode/data/rules/ypl-1.0_3.RULE index d7d4c6213fa..d7c1f4efcb8 100644 --- a/src/licensedcode/data/rules/ypl-1.0_3.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_3.RULE @@ -1,2 +1,8 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +relevance: 100 +--- + Yahoo! Public License Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_3.yml b/src/licensedcode/data/rules/ypl-1.0_3.yml deleted file mode 100644 index 4a0c4dcf4b9..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ypl-1.0_4.RULE b/src/licensedcode/data/rules/ypl-1.0_4.RULE index bea0d008a49..16a838af456 100644 --- a/src/licensedcode/data/rules/ypl-1.0_4.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Yahoo! Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_4.yml b/src/licensedcode/data/rules/ypl-1.0_4.yml deleted file mode 100644 index c0d7dbe6cd2..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.0_5.RULE b/src/licensedcode/data/rules/ypl-1.0_5.RULE index 7852520130d..1b8b1b3480f 100644 --- a/src/licensedcode/data/rules/ypl-1.0_5.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Yahoo! Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_5.yml b/src/licensedcode/data/rules/ypl-1.0_5.yml deleted file mode 100644 index c0d7dbe6cd2..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.0_6.RULE b/src/licensedcode/data/rules/ypl-1.0_6.RULE index 6f3525272e9..7b2db41a6e9 100644 --- a/src/licensedcode/data/rules/ypl-1.0_6.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + YPL-1.0 Yahoo! Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_6.yml b/src/licensedcode/data/rules/ypl-1.0_6.yml deleted file mode 100644 index c0d7dbe6cd2..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.0_7.RULE b/src/licensedcode/data/rules/ypl-1.0_7.RULE index 312c639db56..edf75d8274e 100644 --- a/src/licensedcode/data/rules/ypl-1.0_7.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Yahoo! Public License v1.0 YPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_7.yml b/src/licensedcode/data/rules/ypl-1.0_7.yml deleted file mode 100644 index c0d7dbe6cd2..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.0_8.RULE b/src/licensedcode/data/rules/ypl-1.0_8.RULE index 7ab9902940c..9cb1ffd8e4f 100644 --- a/src/licensedcode/data/rules/ypl-1.0_8.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: YPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_8.yml b/src/licensedcode/data/rules/ypl-1.0_8.yml deleted file mode 100644 index d8bfd6c4042..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.0_9.RULE b/src/licensedcode/data/rules/ypl-1.0_9.RULE index 983f0f1368c..557f34b5ad5 100644 --- a/src/licensedcode/data/rules/ypl-1.0_9.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Yahoo! Public License v1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_9.yml b/src/licensedcode/data/rules/ypl-1.0_9.yml deleted file mode 100644 index d8bfd6c4042..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.0_url_1.RULE b/src/licensedcode/data/rules/ypl-1.0_url_1.RULE index 174cc07589c..23135c0174c 100644 --- a/src/licensedcode/data/rules/ypl-1.0_url_1.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ypl-1.0 +--- + https://spdx.org/licenses/ypl-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_url_1.yml b/src/licensedcode/data/rules/ypl-1.0_url_1.yml deleted file mode 100644 index a32a5d9026d..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ypl-1.0 diff --git a/src/licensedcode/data/rules/ypl-1.0_url_2.RULE b/src/licensedcode/data/rules/ypl-1.0_url_2.RULE index cb18b8d0964..90fc39f0bfc 100644 --- a/src/licensedcode/data/rules/ypl-1.0_url_2.RULE +++ b/src/licensedcode/data/rules/ypl-1.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ypl-1.0.html +--- + https://spdx.org/licenses/ypl-1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.0_url_2.yml b/src/licensedcode/data/rules/ypl-1.0_url_2.yml deleted file mode 100644 index c83f9d7331d..00000000000 --- a/src/licensedcode/data/rules/ypl-1.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ypl-1.0.html diff --git a/src/licensedcode/data/rules/ypl-1.1.RULE b/src/licensedcode/data/rules/ypl-1.1.RULE index 8b7a447fc57..df370c06ff4 100644 --- a/src/licensedcode/data/rules/ypl-1.1.RULE +++ b/src/licensedcode/data/rules/ypl-1.1.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zimbra.com/license/yahoo_public_license_1.1.html +--- + http://www.zimbra.com/license/yahoo_public_license_1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1.yml b/src/licensedcode/data/rules/ypl-1.1.yml deleted file mode 100644 index aa704198d11..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zimbra.com/license/yahoo_public_license_1.1.html diff --git a/src/licensedcode/data/rules/ypl-1.1_1.RULE b/src/licensedcode/data/rules/ypl-1.1_1.RULE index 4a25ecd8a73..6bc297629f1 100644 --- a/src/licensedcode/data/rules/ypl-1.1_1.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_1.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Yahoo! Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_1.yml b/src/licensedcode/data/rules/ypl-1.1_1.yml deleted file mode 100644 index cecbad3f6db..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.1_10.RULE b/src/licensedcode/data/rules/ypl-1.1_10.RULE index 699ea08ae4b..39dffaafb5c 100644 --- a/src/licensedcode/data/rules/ypl-1.1_10.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/YPL-1.1 +--- + {{YPL-1.1}} https://spdx.org/licenses/YPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_10.yml b/src/licensedcode/data/rules/ypl-1.1_10.yml deleted file mode 100644 index 5edb652fccb..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/YPL-1.1 diff --git a/src/licensedcode/data/rules/ypl-1.1_11.RULE b/src/licensedcode/data/rules/ypl-1.1_11.RULE index 593785c5f1c..1984256ea31 100644 --- a/src/licensedcode/data/rules/ypl-1.1_11.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_11.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/YPL-1.1 +--- + LICENSE {{YPL-1.1}} https://spdx.org/licenses/YPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_11.yml b/src/licensedcode/data/rules/ypl-1.1_11.yml deleted file mode 100644 index 5edb652fccb..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/YPL-1.1 diff --git a/src/licensedcode/data/rules/ypl-1.1_2.RULE b/src/licensedcode/data/rules/ypl-1.1_2.RULE index 024245faea6..8b0b5536abe 100644 --- a/src/licensedcode/data/rules/ypl-1.1_2.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_2.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Yahoo! Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_2.yml b/src/licensedcode/data/rules/ypl-1.1_2.yml deleted file mode 100644 index cecbad3f6db..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.1_3.RULE b/src/licensedcode/data/rules/ypl-1.1_3.RULE index ededffeb5ae..0df0669bfdb 100644 --- a/src/licensedcode/data/rules/ypl-1.1_3.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + YPL-1.1 Yahoo! Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_3.yml b/src/licensedcode/data/rules/ypl-1.1_3.yml deleted file mode 100644 index cecbad3f6db..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.1_4.RULE b/src/licensedcode/data/rules/ypl-1.1_4.RULE index e6f7f786409..da53d6952e0 100644 --- a/src/licensedcode/data/rules/ypl-1.1_4.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_4.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Yahoo! Public License v1.1 YPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_4.yml b/src/licensedcode/data/rules/ypl-1.1_4.yml deleted file mode 100644 index cecbad3f6db..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.1_5.RULE b/src/licensedcode/data/rules/ypl-1.1_5.RULE index 3e3aac7926b..1f3e61046e7 100644 --- a/src/licensedcode/data/rules/ypl-1.1_5.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: YPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_5.yml b/src/licensedcode/data/rules/ypl-1.1_5.yml deleted file mode 100644 index 3fbff0d5147..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.1_6.RULE b/src/licensedcode/data/rules/ypl-1.1_6.RULE index 8dfaaeecde5..d23f36211f7 100644 --- a/src/licensedcode/data/rules/ypl-1.1_6.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Yahoo! Public License v1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_6.yml b/src/licensedcode/data/rules/ypl-1.1_6.yml deleted file mode 100644 index 3fbff0d5147..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.1_7.RULE b/src/licensedcode/data/rules/ypl-1.1_7.RULE index fa8c930cdc4..ba0dd6b6033 100644 --- a/src/licensedcode/data/rules/ypl-1.1_7.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: ypl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: YPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_7.yml b/src/licensedcode/data/rules/ypl-1.1_7.yml deleted file mode 100644 index 3fbff0d5147..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: ypl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/ypl-1.1_8.RULE b/src/licensedcode/data/rules/ypl-1.1_8.RULE index 6c4d62cbfc5..601915fbf63 100644 --- a/src/licensedcode/data/rules/ypl-1.1_8.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_8.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/YPL-1.1 +--- + https://licenses.nuget.org/YPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_8.yml b/src/licensedcode/data/rules/ypl-1.1_8.yml deleted file mode 100644 index 460edddd48c..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/YPL-1.1 diff --git a/src/licensedcode/data/rules/ypl-1.1_9.RULE b/src/licensedcode/data/rules/ypl-1.1_9.RULE index dd78526d665..f35dc181a9f 100644 --- a/src/licensedcode/data/rules/ypl-1.1_9.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/YPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_9.yml b/src/licensedcode/data/rules/ypl-1.1_9.yml deleted file mode 100644 index fa9afa3d701..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/ypl-1.1_url_1.RULE b/src/licensedcode/data/rules/ypl-1.1_url_1.RULE index 9e521c92952..d67e67b93af 100644 --- a/src/licensedcode/data/rules/ypl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ypl-1.1 +--- + https://spdx.org/licenses/ypl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_url_1.yml b/src/licensedcode/data/rules/ypl-1.1_url_1.yml deleted file mode 100644 index c17a2a995f3..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ypl-1.1 diff --git a/src/licensedcode/data/rules/ypl-1.1_url_2.RULE b/src/licensedcode/data/rules/ypl-1.1_url_2.RULE index 9ba62b64798..dfcc80f8821 100644 --- a/src/licensedcode/data/rules/ypl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/ypl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: ypl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/ypl-1.1.html +--- + https://spdx.org/licenses/ypl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/ypl-1.1_url_2.yml b/src/licensedcode/data/rules/ypl-1.1_url_2.yml deleted file mode 100644 index 46cf3655b33..00000000000 --- a/src/licensedcode/data/rules/ypl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: ypl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/ypl-1.1.html diff --git a/src/licensedcode/data/rules/zed_1.RULE b/src/licensedcode/data/rules/zed_1.RULE index 0bcdb99eef5..7c7ff9f6bbe 100644 --- a/src/licensedcode/data/rules/zed_1.RULE +++ b/src/licensedcode/data/rules/zed_1.RULE @@ -1 +1,10 @@ +--- +license_expression: zed +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zed License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_1.yml b/src/licensedcode/data/rules/zed_1.yml deleted file mode 100644 index d5d9f874242..00000000000 --- a/src/licensedcode/data/rules/zed_1.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zed -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zed_10.RULE b/src/licensedcode/data/rules/zed_10.RULE index 7cec8c9d5c8..81121324714 100644 --- a/src/licensedcode/data/rules/zed_10.RULE +++ b/src/licensedcode/data/rules/zed_10.RULE @@ -1 +1,9 @@ +--- +license_expression: zed +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zed +--- + LICENSE {{Zed}} https://spdx.org/licenses/Zed \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_10.yml b/src/licensedcode/data/rules/zed_10.yml deleted file mode 100644 index 8ccac6b901e..00000000000 --- a/src/licensedcode/data/rules/zed_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zed -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zed diff --git a/src/licensedcode/data/rules/zed_11.RULE b/src/licensedcode/data/rules/zed_11.RULE index d188f90d26a..5e5e4a5a504 100644 --- a/src/licensedcode/data/rules/zed_11.RULE +++ b/src/licensedcode/data/rules/zed_11.RULE @@ -1 +1,9 @@ +--- +license_expression: zed +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zed +--- + {{Zed}} https://spdx.org/licenses/Zed \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_11.yml b/src/licensedcode/data/rules/zed_11.yml deleted file mode 100644 index 8ccac6b901e..00000000000 --- a/src/licensedcode/data/rules/zed_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zed -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zed diff --git a/src/licensedcode/data/rules/zed_2.RULE b/src/licensedcode/data/rules/zed_2.RULE index e676838d366..c77b90a4d79 100644 --- a/src/licensedcode/data/rules/zed_2.RULE +++ b/src/licensedcode/data/rules/zed_2.RULE @@ -1 +1,10 @@ +--- +license_expression: zed +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Zed License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_2.yml b/src/licensedcode/data/rules/zed_2.yml deleted file mode 100644 index d5d9f874242..00000000000 --- a/src/licensedcode/data/rules/zed_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zed -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zed_3.RULE b/src/licensedcode/data/rules/zed_3.RULE index 13682e6fe4c..24e4ba968e5 100644 --- a/src/licensedcode/data/rules/zed_3.RULE +++ b/src/licensedcode/data/rules/zed_3.RULE @@ -1 +1,10 @@ +--- +license_expression: zed +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zed Zed License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_3.yml b/src/licensedcode/data/rules/zed_3.yml deleted file mode 100644 index d5d9f874242..00000000000 --- a/src/licensedcode/data/rules/zed_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zed -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zed_4.RULE b/src/licensedcode/data/rules/zed_4.RULE index eb1ba69ad9c..ce8288a8893 100644 --- a/src/licensedcode/data/rules/zed_4.RULE +++ b/src/licensedcode/data/rules/zed_4.RULE @@ -1 +1,10 @@ +--- +license_expression: zed +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zed License Zed \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_4.yml b/src/licensedcode/data/rules/zed_4.yml deleted file mode 100644 index d5d9f874242..00000000000 --- a/src/licensedcode/data/rules/zed_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zed -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zed_5.RULE b/src/licensedcode/data/rules/zed_5.RULE index 3dc34303602..71ac9dcd5e2 100644 --- a/src/licensedcode/data/rules/zed_5.RULE +++ b/src/licensedcode/data/rules/zed_5.RULE @@ -1 +1,10 @@ +--- +license_expression: zed +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zed \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_5.yml b/src/licensedcode/data/rules/zed_5.yml deleted file mode 100644 index 9ef1f4464a3..00000000000 --- a/src/licensedcode/data/rules/zed_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zed -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zed_6.RULE b/src/licensedcode/data/rules/zed_6.RULE index 02059fac365..0d5d91b290a 100644 --- a/src/licensedcode/data/rules/zed_6.RULE +++ b/src/licensedcode/data/rules/zed_6.RULE @@ -1 +1,10 @@ +--- +license_expression: zed +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zed License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_6.yml b/src/licensedcode/data/rules/zed_6.yml deleted file mode 100644 index 9ef1f4464a3..00000000000 --- a/src/licensedcode/data/rules/zed_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zed -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zed_7.RULE b/src/licensedcode/data/rules/zed_7.RULE index 5309043becf..f3fe5c51393 100644 --- a/src/licensedcode/data/rules/zed_7.RULE +++ b/src/licensedcode/data/rules/zed_7.RULE @@ -1 +1,10 @@ +--- +license_expression: zed +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Zed \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_7.yml b/src/licensedcode/data/rules/zed_7.yml deleted file mode 100644 index 9ef1f4464a3..00000000000 --- a/src/licensedcode/data/rules/zed_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zed -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zed_8.RULE b/src/licensedcode/data/rules/zed_8.RULE index 6e63e5ca258..7e9febc5aa9 100644 --- a/src/licensedcode/data/rules/zed_8.RULE +++ b/src/licensedcode/data/rules/zed_8.RULE @@ -1 +1,9 @@ +--- +license_expression: zed +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Zed +--- + https://licenses.nuget.org/Zed \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_8.yml b/src/licensedcode/data/rules/zed_8.yml deleted file mode 100644 index 0f86694792b..00000000000 --- a/src/licensedcode/data/rules/zed_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zed -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Zed diff --git a/src/licensedcode/data/rules/zed_9.RULE b/src/licensedcode/data/rules/zed_9.RULE index 53bedfd1299..fac7bfbf7ba 100644 --- a/src/licensedcode/data/rules/zed_9.RULE +++ b/src/licensedcode/data/rules/zed_9.RULE @@ -1 +1,7 @@ +--- +license_expression: zed +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Zed \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_9.yml b/src/licensedcode/data/rules/zed_9.yml deleted file mode 100644 index c10e52dcc64..00000000000 --- a/src/licensedcode/data/rules/zed_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zed -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zed_url_1.RULE b/src/licensedcode/data/rules/zed_url_1.RULE index 19f53f2756a..99db66d06f2 100644 --- a/src/licensedcode/data/rules/zed_url_1.RULE +++ b/src/licensedcode/data/rules/zed_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zed +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zed +--- + https://spdx.org/licenses/zed \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_url_1.yml b/src/licensedcode/data/rules/zed_url_1.yml deleted file mode 100644 index 2888c3903fe..00000000000 --- a/src/licensedcode/data/rules/zed_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zed -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zed diff --git a/src/licensedcode/data/rules/zed_url_2.RULE b/src/licensedcode/data/rules/zed_url_2.RULE index 484fe6c56b1..53471d9f684 100644 --- a/src/licensedcode/data/rules/zed_url_2.RULE +++ b/src/licensedcode/data/rules/zed_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zed +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zed.html +--- + https://spdx.org/licenses/zed.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zed_url_2.yml b/src/licensedcode/data/rules/zed_url_2.yml deleted file mode 100644 index 541bcfc82de..00000000000 --- a/src/licensedcode/data/rules/zed_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zed -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zed.html diff --git a/src/licensedcode/data/rules/zend-2.0_1.RULE b/src/licensedcode/data/rules/zend-2.0_1.RULE index 4bc9599b9bd..9d3d9caa94c 100644 --- a/src/licensedcode/data/rules/zend-2.0_1.RULE +++ b/src/licensedcode/data/rules/zend-2.0_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: zend-2.0 +is_license_text: yes +ignorable_copyrights: + - Copyright (c) Zend Technologies Ltd. +ignorable_holders: + - Zend Technologies Ltd. +ignorable_urls: + - http://www.zend.com/ +ignorable_emails: + - license@zend.com +--- + -------------------------------------------------------------------- The Zend Engine License, Version 2.00 Copyright (c) Zend Technologies Ltd. All rights reserved. @@ -51,4 +64,4 @@ 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. +SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_1.yml b/src/licensedcode/data/rules/zend-2.0_1.yml deleted file mode 100644 index c266af03b74..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: zend-2.0 -is_license_text: yes -ignorable_copyrights: - - Copyright (c) Zend Technologies Ltd. -ignorable_holders: - - Zend Technologies Ltd. -ignorable_urls: - - http://www.zend.com/ -ignorable_emails: - - license@zend.com diff --git a/src/licensedcode/data/rules/zend-2.0_10.RULE b/src/licensedcode/data/rules/zend-2.0_10.RULE index 8bdfbd7087c..d2a141b180d 100644 --- a/src/licensedcode/data/rules/zend-2.0_10.RULE +++ b/src/licensedcode/data/rules/zend-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: zend-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Zend-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_10.yml b/src/licensedcode/data/rules/zend-2.0_10.yml deleted file mode 100644 index 54584218306..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zend-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zend-2.0_11.RULE b/src/licensedcode/data/rules/zend-2.0_11.RULE index 5785922b499..3a7e83b2733 100644 --- a/src/licensedcode/data/rules/zend-2.0_11.RULE +++ b/src/licensedcode/data/rules/zend-2.0_11.RULE @@ -1 +1,9 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Zend-2.0 +--- + https://licenses.nuget.org/Zend-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_11.yml b/src/licensedcode/data/rules/zend-2.0_11.yml deleted file mode 100644 index af2855b1619..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Zend-2.0 diff --git a/src/licensedcode/data/rules/zend-2.0_12.RULE b/src/licensedcode/data/rules/zend-2.0_12.RULE index fd3c4d5daa7..76e32541565 100644 --- a/src/licensedcode/data/rules/zend-2.0_12.RULE +++ b/src/licensedcode/data/rules/zend-2.0_12.RULE @@ -1 +1,7 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Zend-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_12.yml b/src/licensedcode/data/rules/zend-2.0_12.yml deleted file mode 100644 index 2edef140533..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_12.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zend-2.0_13.RULE b/src/licensedcode/data/rules/zend-2.0_13.RULE index b887a579533..6d960b4bb92 100644 --- a/src/licensedcode/data/rules/zend-2.0_13.RULE +++ b/src/licensedcode/data/rules/zend-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zend-2.0 +--- + {{Zend-2.0}} https://spdx.org/licenses/Zend-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_13.yml b/src/licensedcode/data/rules/zend-2.0_13.yml deleted file mode 100644 index c4f09aac03e..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zend-2.0 diff --git a/src/licensedcode/data/rules/zend-2.0_14.RULE b/src/licensedcode/data/rules/zend-2.0_14.RULE index 801f0795ce6..d5b122515c5 100644 --- a/src/licensedcode/data/rules/zend-2.0_14.RULE +++ b/src/licensedcode/data/rules/zend-2.0_14.RULE @@ -1 +1,9 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zend-2.0 +--- + LICENSE {{Zend-2.0}} https://spdx.org/licenses/Zend-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_14.yml b/src/licensedcode/data/rules/zend-2.0_14.yml deleted file mode 100644 index c4f09aac03e..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_14.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zend-2.0 diff --git a/src/licensedcode/data/rules/zend-2.0_2.RULE b/src/licensedcode/data/rules/zend-2.0_2.RULE index a077087c06b..5223e926e87 100644 --- a/src/licensedcode/data/rules/zend-2.0_2.RULE +++ b/src/licensedcode/data/rules/zend-2.0_2.RULE @@ -1,7 +1,16 @@ +--- +license_expression: zend-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.zend.com/license/2_00.txt +ignorable_emails: + - license@zend.com +--- + | This source file is subject to version 2.00 of the Zend license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.zend.com/license/2_00.txt. | | If you did not receive a copy of the Zend license and are unable to | | obtain it through the world-wide-web, please send a note to | - | license@zend.com so we can mail you a copy immediately. | + | license@zend.com so we can mail you a copy immediately. | \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_2.yml b/src/licensedcode/data/rules/zend-2.0_2.yml deleted file mode 100644 index 8c65d06fb6c..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zend-2.0 -is_license_notice: yes -ignorable_urls: - - http://www.zend.com/license/2_00.txt -ignorable_emails: - - license@zend.com diff --git a/src/licensedcode/data/rules/zend-2.0_3.RULE b/src/licensedcode/data/rules/zend-2.0_3.RULE index f02f13ef60f..003f8c34e5b 100644 --- a/src/licensedcode/data/rules/zend-2.0_3.RULE +++ b/src/licensedcode/data/rules/zend-2.0_3.RULE @@ -1,3 +1,17 @@ +--- +license_expression: zend-2.0 +is_license_text: yes +relevance: 100 +ignorable_copyrights: + - Copyright (c) 1999-2006 Zend Technologies Ltd. +ignorable_holders: + - Zend Technologies Ltd. +ignorable_urls: + - http://www.zend.com/ +ignorable_emails: + - license@zend.com +--- + The Zend Engine License, Version 2.00 Copyright (c) 1999-2006 Zend Technologies Ltd. All rights reserved. diff --git a/src/licensedcode/data/rules/zend-2.0_3.yml b/src/licensedcode/data/rules/zend-2.0_3.yml deleted file mode 100644 index afbe7775197..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_3.yml +++ /dev/null @@ -1,11 +0,0 @@ -license_expression: zend-2.0 -is_license_text: yes -relevance: 100 -ignorable_copyrights: - - Copyright (c) 1999-2006 Zend Technologies Ltd. -ignorable_holders: - - Zend Technologies Ltd. -ignorable_urls: - - http://www.zend.com/ -ignorable_emails: - - license@zend.com diff --git a/src/licensedcode/data/rules/zend-2.0_4.RULE b/src/licensedcode/data/rules/zend-2.0_4.RULE index d9d58896e0b..26f20f6c46b 100644 --- a/src/licensedcode/data/rules/zend-2.0_4.RULE +++ b/src/licensedcode/data/rules/zend-2.0_4.RULE @@ -1 +1,10 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zend License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_4.yml b/src/licensedcode/data/rules/zend-2.0_4.yml deleted file mode 100644 index c7076ba2354..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zend-2.0_5.RULE b/src/licensedcode/data/rules/zend-2.0_5.RULE index e7e3f6f44af..962098c6c6d 100644 --- a/src/licensedcode/data/rules/zend-2.0_5.RULE +++ b/src/licensedcode/data/rules/zend-2.0_5.RULE @@ -1 +1,10 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Zend License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_5.yml b/src/licensedcode/data/rules/zend-2.0_5.yml deleted file mode 100644 index c7076ba2354..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zend-2.0_6.RULE b/src/licensedcode/data/rules/zend-2.0_6.RULE index fdbc30572a2..e67ebe355b8 100644 --- a/src/licensedcode/data/rules/zend-2.0_6.RULE +++ b/src/licensedcode/data/rules/zend-2.0_6.RULE @@ -1 +1,10 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zend-2.0 Zend License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_6.yml b/src/licensedcode/data/rules/zend-2.0_6.yml deleted file mode 100644 index c7076ba2354..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zend-2.0_7.RULE b/src/licensedcode/data/rules/zend-2.0_7.RULE index 516a1f9a85f..80e0d6779ba 100644 --- a/src/licensedcode/data/rules/zend-2.0_7.RULE +++ b/src/licensedcode/data/rules/zend-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zend License v2.0 Zend-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_7.yml b/src/licensedcode/data/rules/zend-2.0_7.yml deleted file mode 100644 index c7076ba2354..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zend-2.0_8.RULE b/src/licensedcode/data/rules/zend-2.0_8.RULE index 01b28ee66a8..56b92c4f19c 100644 --- a/src/licensedcode/data/rules/zend-2.0_8.RULE +++ b/src/licensedcode/data/rules/zend-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: zend-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zend-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_8.yml b/src/licensedcode/data/rules/zend-2.0_8.yml deleted file mode 100644 index 54584218306..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zend-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zend-2.0_9.RULE b/src/licensedcode/data/rules/zend-2.0_9.RULE index 70cbede7e70..a51a63e883f 100644 --- a/src/licensedcode/data/rules/zend-2.0_9.RULE +++ b/src/licensedcode/data/rules/zend-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: zend-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zend License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_9.yml b/src/licensedcode/data/rules/zend-2.0_9.yml deleted file mode 100644 index 54584218306..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zend-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zend-2.0_url_1.RULE b/src/licensedcode/data/rules/zend-2.0_url_1.RULE index 41a9edef6ac..60ce65fd756 100644 --- a/src/licensedcode/data/rules/zend-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/zend-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zend-2.0 +--- + https://spdx.org/licenses/zend-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_url_1.yml b/src/licensedcode/data/rules/zend-2.0_url_1.yml deleted file mode 100644 index 85a3bcf5a23..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zend-2.0 diff --git a/src/licensedcode/data/rules/zend-2.0_url_2.RULE b/src/licensedcode/data/rules/zend-2.0_url_2.RULE index c06e65b12e6..5d843d259a6 100644 --- a/src/licensedcode/data/rules/zend-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/zend-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zend-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zend-2.0.html +--- + https://spdx.org/licenses/zend-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zend-2.0_url_2.yml b/src/licensedcode/data/rules/zend-2.0_url_2.yml deleted file mode 100644 index b71c6887e00..00000000000 --- a/src/licensedcode/data/rules/zend-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zend-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zend-2.0.html diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_1.RULE b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_1.RULE index 44ea22bc942..968416a9239 100644 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 +is_license_notice: yes +minimum_coverage: 80 +--- + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any @@ -19,4 +25,4 @@ meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you must - extend this exception to your version of the library. + extend this exception to your version of the library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_1.yml b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_1.yml deleted file mode 100644 index 0ebf6f50a0f..00000000000 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 -is_license_notice: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_2.RULE b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_2.RULE index 92bde4f1b0a..b9dfa6ac483 100644 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_2.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zeromq-exception-lgpl-3.0 +is_license_notice: yes +--- + As a special exception, the Contributors give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_2.yml b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_2.yml deleted file mode 100644 index 26ec3bedf6b..00000000000 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zeromq-exception-lgpl-3.0 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_3.RULE b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_3.RULE index 12f6304c58e..a0fe8c2bd40 100644 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_3.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_3.yml b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_3.yml deleted file mode 100644 index 22ccc874bc3..00000000000 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_3.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_4.RULE b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_4.RULE index 659f285d458..987a9331103 100644 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_4.RULE @@ -1,3 +1,10 @@ +--- +license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + libzmq is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 3 of the License, or diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_4.yml b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_4.yml deleted file mode 100644 index 22ccc874bc3..00000000000 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_4.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: lgpl-3.0-plus WITH zeromq-exception-lgpl-3.0 -is_license_notice: yes -ignorable_urls: - - http://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_5.RULE b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_5.RULE index 4c9d93643d5..f74c209cc07 100644 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zeromq-exception-lgpl-3.0 +is_license_text: yes +--- + SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS As a special exception, copyright holders give you permission to link this diff --git a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_5.yml b/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_5.yml deleted file mode 100644 index 71f83c0ca77..00000000000 --- a/src/licensedcode/data/rules/zeromq-exception-lgpl-3.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zeromq-exception-lgpl-3.0 -is_license_text: yes diff --git a/src/licensedcode/data/rules/zeusbench_1.RULE b/src/licensedcode/data/rules/zeusbench_1.RULE index 8c1abcc0061..fbab062e45e 100644 --- a/src/licensedcode/data/rules/zeusbench_1.RULE +++ b/src/licensedcode/data/rules/zeusbench_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zeusbench +is_license_notice: yes +relevance: 100 +--- + 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 diff --git a/src/licensedcode/data/rules/zeusbench_1.yml b/src/licensedcode/data/rules/zeusbench_1.yml deleted file mode 100644 index e50aff8b313..00000000000 --- a/src/licensedcode/data/rules/zeusbench_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zeusbench -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zeusbench_2.RULE b/src/licensedcode/data/rules/zeusbench_2.RULE index 3e160a22efd..45d2d56d3db 100644 --- a/src/licensedcode/data/rules/zeusbench_2.RULE +++ b/src/licensedcode/data/rules/zeusbench_2.RULE @@ -1 +1,7 @@ +--- +license_expression: zeusbench +is_license_tag: yes +relevance: 100 +--- + License: Zeus \ No newline at end of file diff --git a/src/licensedcode/data/rules/zeusbench_2.yml b/src/licensedcode/data/rules/zeusbench_2.yml deleted file mode 100644 index 8985a2af154..00000000000 --- a/src/licensedcode/data/rules/zeusbench_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zeusbench -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zi-labone-proprietary.RULE b/src/licensedcode/data/rules/zi-labone-proprietary.RULE index c1e4db4514b..21d3bb36a42 100644 --- a/src/licensedcode/data/rules/zi-labone-proprietary.RULE +++ b/src/licensedcode/data/rules/zi-labone-proprietary.RULE @@ -1,3 +1,15 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: https://gitweb.gentoo.org/repo/gentoo.git/tree/licenses/zi-labone +ignorable_copyrights: + - Copyright (c) Zurich Instruments AG +ignorable_holders: + - Zurich Instruments AG +ignorable_urls: + - http://www.zhinst.com/ +--- + SOFTWARE LICENSE AGREEMENT This is a legal agreement ("Agreement") between you, the end user @@ -66,4 +78,4 @@ Technoparkstrasse 1 Switzerland phone: +41-44-5150410 -web: www.zhinst.com +web: www.zhinst.com \ No newline at end of file diff --git a/src/licensedcode/data/rules/zi-labone-proprietary.yml b/src/licensedcode/data/rules/zi-labone-proprietary.yml deleted file mode 100644 index 38731fd7daa..00000000000 --- a/src/licensedcode/data/rules/zi-labone-proprietary.yml +++ /dev/null @@ -1,9 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: https://gitweb.gentoo.org/repo/gentoo.git/tree/licenses/zi-labone -ignorable_copyrights: - - Copyright (c) Zurich Instruments AG -ignorable_holders: - - Zurich Instruments AG -ignorable_urls: - - http://www.zhinst.com/ diff --git a/src/licensedcode/data/rules/zimbra-1.2_1.RULE b/src/licensedcode/data/rules/zimbra-1.2_1.RULE index 541e3b26480..e1b1054a5a6 100644 --- a/src/licensedcode/data/rules/zimbra-1.2_1.RULE +++ b/src/licensedcode/data/rules/zimbra-1.2_1.RULE @@ -1,3 +1,16 @@ +--- +license_expression: zimbra-1.3 +is_license_text: yes +relevance: 90 +notes: this is the v1.2 of the license. But this is too rare to be worthy tracking +ignorable_urls: + - http://www.mozilla.org/MPL/MPL-1.1.html + - http://www.zimbra.com/ + - http://www.zimbra.com/license + - http://www.zimbra.com/license/zimbra_public_license_1.2.html + - http://www.zimbra.com/powered +--- + The Zimbra Public License Version 1.2 ("ZPL") consists of the Mozilla Public License Version 1.1, modified to be specific to Zimbra, with the Additional Terms in Exhibit B. The original Mozilla Public License 1.1 can be found at: http://www.mozilla.org/MPL/MPL-1.1.html This is not an OSI approved license. diff --git a/src/licensedcode/data/rules/zimbra-1.2_1.yml b/src/licensedcode/data/rules/zimbra-1.2_1.yml deleted file mode 100644 index 95494e57ca6..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.2_1.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: zimbra-1.3 -is_license_text: yes -relevance: 90 -notes: this is the v1.2 of the license. But this is too rare to be worthy tracking -ignorable_urls: - - http://www.mozilla.org/MPL/MPL-1.1.html - - http://www.zimbra.com/ - - http://www.zimbra.com/license - - http://www.zimbra.com/license/zimbra_public_license_1.2.html - - http://www.zimbra.com/powered diff --git a/src/licensedcode/data/rules/zimbra-1.2_2.RULE b/src/licensedcode/data/rules/zimbra-1.2_2.RULE index 51126937701..569e59c5788 100644 --- a/src/licensedcode/data/rules/zimbra-1.2_2.RULE +++ b/src/licensedcode/data/rules/zimbra-1.2_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: zimbra-1.3 +is_license_notice: yes +relevance: 90 +notes: this is for the v1.2 of the license. But this is too rare to be worthy tracking +ignorable_urls: + - http://www.zimbra.com/license +--- + * ***** BEGIN LICENSE BLOCK ***** * Version: ZPL 1.2 * @@ -12,4 +21,4 @@ * under the License. * * - * ***** END LICENSE BLOCK ***** + * ***** END LICENSE BLOCK ***** \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.2_2.yml b/src/licensedcode/data/rules/zimbra-1.2_2.yml deleted file mode 100644 index 8b02d2f850a..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.2_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.3 -is_license_notice: yes -relevance: 90 -notes: this is for the v1.2 of the license. But this is too rare to be worthy tracking -ignorable_urls: - - http://www.zimbra.com/license diff --git a/src/licensedcode/data/rules/zimbra-1.3.RULE b/src/licensedcode/data/rules/zimbra-1.3.RULE index a8a21a3b13f..f758c842ed9 100644 --- a/src/licensedcode/data/rules/zimbra-1.3.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zimbra.com/license/zimbra-public-license-1-3.html +--- + http://www.zimbra.com/license/zimbra-public-license-1-3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3.yml b/src/licensedcode/data/rules/zimbra-1.3.yml deleted file mode 100644 index 20b80f4df7c..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zimbra.com/license/zimbra-public-license-1-3.html diff --git a/src/licensedcode/data/rules/zimbra-1.3_1.RULE b/src/licensedcode/data/rules/zimbra-1.3_1.RULE index 5d19b4d4fcf..aecf4fdc251 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_1.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_1.RULE @@ -1 +1,7 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +relevance: 100 +--- + Zimbra Public License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_1.yml b/src/licensedcode/data/rules/zimbra-1.3_1.yml deleted file mode 100644 index 6c185a04c05..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zimbra-1.3_10.RULE b/src/licensedcode/data/rules/zimbra-1.3_10.RULE index 65188a64bb9..63b524e43a0 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_10.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_10.RULE @@ -1 +1,7 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_10.yml b/src/licensedcode/data/rules/zimbra-1.3_10.yml deleted file mode 100644 index 6c185a04c05..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zimbra-1.3_11.RULE b/src/licensedcode/data/rules/zimbra-1.3_11.RULE index e30884b6a9f..7eaff9cad91 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_11.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_11.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zimbra-1.3 +--- + {{Zimbra-1.3}} https://spdx.org/licenses/Zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_11.yml b/src/licensedcode/data/rules/zimbra-1.3_11.yml deleted file mode 100644 index 3b7d5e49a21..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zimbra-1.3 diff --git a/src/licensedcode/data/rules/zimbra-1.3_12.RULE b/src/licensedcode/data/rules/zimbra-1.3_12.RULE index 2dbbda1dc55..7ee73835e7c 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_12.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_12.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zimbra-1.3 +--- + LICENSE {{Zimbra-1.3}} https://spdx.org/licenses/Zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_12.yml b/src/licensedcode/data/rules/zimbra-1.3_12.yml deleted file mode 100644 index 3b7d5e49a21..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zimbra-1.3 diff --git a/src/licensedcode/data/rules/zimbra-1.3_2.RULE b/src/licensedcode/data/rules/zimbra-1.3_2.RULE index 8e8d1bdf343..40ebe39048c 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_2.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_2.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Zimbra Public License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_2.yml b/src/licensedcode/data/rules/zimbra-1.3_2.yml deleted file mode 100644 index 238bfde105f..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.3_3.RULE b/src/licensedcode/data/rules/zimbra-1.3_3.RULE index 4655c250c89..92e737b4a95 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_3.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_3.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zimbra-1.3 Zimbra Public License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_3.yml b/src/licensedcode/data/rules/zimbra-1.3_3.yml deleted file mode 100644 index 238bfde105f..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.3_4.RULE b/src/licensedcode/data/rules/zimbra-1.3_4.RULE index 3d509ffa4cb..da44bb007b4 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_4.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_4.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zimbra Public License v1.3 Zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_4.yml b/src/licensedcode/data/rules/zimbra-1.3_4.yml deleted file mode 100644 index 238bfde105f..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.3_5.RULE b/src/licensedcode/data/rules/zimbra-1.3_5.RULE index 85bcfd2c6c3..e25ad221ba6 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_5.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_5.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_5.yml b/src/licensedcode/data/rules/zimbra-1.3_5.yml deleted file mode 100644 index 15e5290c3da..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.3_6.RULE b/src/licensedcode/data/rules/zimbra-1.3_6.RULE index 3c02f7cd152..f84f14ef2ff 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_6.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_6.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zimbra Public License v1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_6.yml b/src/licensedcode/data/rules/zimbra-1.3_6.yml deleted file mode 100644 index 15e5290c3da..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.3_7.RULE b/src/licensedcode/data/rules/zimbra-1.3_7.RULE index 1e595faebae..6423985f571 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_7.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_7.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.3 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_7.yml b/src/licensedcode/data/rules/zimbra-1.3_7.yml deleted file mode 100644 index 15e5290c3da..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.3 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.3_8.RULE b/src/licensedcode/data/rules/zimbra-1.3_8.RULE index a889d5023ae..3e80156201d 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_8.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_8.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_8.yml b/src/licensedcode/data/rules/zimbra-1.3_8.yml deleted file mode 100644 index 5cd4bdb35b7..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zimbra-1.3_9.RULE b/src/licensedcode/data/rules/zimbra-1.3_9.RULE index cefe23be48c..63326091ad4 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_9.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_9.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Zimbra-1.3 +--- + https://licenses.nuget.org/Zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_9.yml b/src/licensedcode/data/rules/zimbra-1.3_9.yml deleted file mode 100644 index d77a9c7dbe0..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Zimbra-1.3 diff --git a/src/licensedcode/data/rules/zimbra-1.3_url_1.RULE b/src/licensedcode/data/rules/zimbra-1.3_url_1.RULE index 2446340adb9..cda1c088db3 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_url_1.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zimbra-1.3 +--- + https://spdx.org/licenses/zimbra-1.3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_url_1.yml b/src/licensedcode/data/rules/zimbra-1.3_url_1.yml deleted file mode 100644 index 52943c52e5d..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zimbra-1.3 diff --git a/src/licensedcode/data/rules/zimbra-1.3_url_2.RULE b/src/licensedcode/data/rules/zimbra-1.3_url_2.RULE index 626fd9822bb..24182961ce6 100644 --- a/src/licensedcode/data/rules/zimbra-1.3_url_2.RULE +++ b/src/licensedcode/data/rules/zimbra-1.3_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.3 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zimbra-1.3.html +--- + https://spdx.org/licenses/zimbra-1.3.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.3_url_2.yml b/src/licensedcode/data/rules/zimbra-1.3_url_2.yml deleted file mode 100644 index 50380646c4c..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.3_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.3 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zimbra-1.3.html diff --git a/src/licensedcode/data/rules/zimbra-1.4_1.RULE b/src/licensedcode/data/rules/zimbra-1.4_1.RULE index 4b29a913803..c5ef161e1ac 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_1.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_1.RULE @@ -1 +1,7 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +relevance: 100 +--- + Zimbra Public License v1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_1.yml b/src/licensedcode/data/rules/zimbra-1.4_1.yml deleted file mode 100644 index a9261231ed9..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zimbra-1.4_10.RULE b/src/licensedcode/data/rules/zimbra-1.4_10.RULE index 4f50987ea0c..1c3868730c8 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_10.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_10.RULE @@ -1 +1,7 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_10.yml b/src/licensedcode/data/rules/zimbra-1.4_10.yml deleted file mode 100644 index a9261231ed9..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zimbra-1.4_11.RULE b/src/licensedcode/data/rules/zimbra-1.4_11.RULE index 993458c8922..66905d623b0 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_11.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_11.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zimbra-1.4 +--- + LICENSE {{Zimbra-1.4}} https://spdx.org/licenses/Zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_11.yml b/src/licensedcode/data/rules/zimbra-1.4_11.yml deleted file mode 100644 index 2b3824f64ad..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_11.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zimbra-1.4 diff --git a/src/licensedcode/data/rules/zimbra-1.4_12.RULE b/src/licensedcode/data/rules/zimbra-1.4_12.RULE index 643617daed8..0d38fc12228 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_12.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_12.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zimbra-1.4 +--- + {{Zimbra-1.4}} https://spdx.org/licenses/Zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_12.yml b/src/licensedcode/data/rules/zimbra-1.4_12.yml deleted file mode 100644 index 2b3824f64ad..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zimbra-1.4 diff --git a/src/licensedcode/data/rules/zimbra-1.4_2.RULE b/src/licensedcode/data/rules/zimbra-1.4_2.RULE index e1734a8e4ca..54e0761a8be 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_2.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_2.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Zimbra Public License v1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_2.yml b/src/licensedcode/data/rules/zimbra-1.4_2.yml deleted file mode 100644 index bde9a0d9221..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.4_3.RULE b/src/licensedcode/data/rules/zimbra-1.4_3.RULE index 687354b3ee6..228b44d6915 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_3.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_3.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zimbra-1.4 Zimbra Public License v1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_3.yml b/src/licensedcode/data/rules/zimbra-1.4_3.yml deleted file mode 100644 index bde9a0d9221..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.4_4.RULE b/src/licensedcode/data/rules/zimbra-1.4_4.RULE index bcfe42f41f6..7eba2dbda1c 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_4.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_4.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zimbra Public License v1.4 Zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_4.yml b/src/licensedcode/data/rules/zimbra-1.4_4.yml deleted file mode 100644 index bde9a0d9221..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.4_5.RULE b/src/licensedcode/data/rules/zimbra-1.4_5.RULE index 74fb87f54bd..52c225192c6 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_5.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_5.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_5.yml b/src/licensedcode/data/rules/zimbra-1.4_5.yml deleted file mode 100644 index 86e34a3bfe4..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.4_6.RULE b/src/licensedcode/data/rules/zimbra-1.4_6.RULE index a3452f02318..9fc1c27436e 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_6.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_6.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zimbra Public License v1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_6.yml b/src/licensedcode/data/rules/zimbra-1.4_6.yml deleted file mode 100644 index 86e34a3bfe4..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.4_7.RULE b/src/licensedcode/data/rules/zimbra-1.4_7.RULE index 14827f5a379..4bbe6bf54db 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_7.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_7.RULE @@ -1 +1,10 @@ +--- +license_expression: zimbra-1.4 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_7.yml b/src/licensedcode/data/rules/zimbra-1.4_7.yml deleted file mode 100644 index 86e34a3bfe4..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zimbra-1.4 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zimbra-1.4_8.RULE b/src/licensedcode/data/rules/zimbra-1.4_8.RULE index aa5276c4c88..ad9bf7b7f66 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_8.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_8.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_8.yml b/src/licensedcode/data/rules/zimbra-1.4_8.yml deleted file mode 100644 index 0be0be1d5a4..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zimbra-1.4_9.RULE b/src/licensedcode/data/rules/zimbra-1.4_9.RULE index ce7e83c7532..9874af16b56 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_9.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_9.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Zimbra-1.4 +--- + https://licenses.nuget.org/Zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_9.yml b/src/licensedcode/data/rules/zimbra-1.4_9.yml deleted file mode 100644 index c04d11887d2..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Zimbra-1.4 diff --git a/src/licensedcode/data/rules/zimbra-1.4_url_1.RULE b/src/licensedcode/data/rules/zimbra-1.4_url_1.RULE index f9bbb8dfdff..28b4c7add5f 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_url_1.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zimbra-1.4 +--- + https://spdx.org/licenses/zimbra-1.4 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_url_1.yml b/src/licensedcode/data/rules/zimbra-1.4_url_1.yml deleted file mode 100644 index 20b015fe6c1..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zimbra-1.4 diff --git a/src/licensedcode/data/rules/zimbra-1.4_url_2.RULE b/src/licensedcode/data/rules/zimbra-1.4_url_2.RULE index a636a002305..9804924bc08 100644 --- a/src/licensedcode/data/rules/zimbra-1.4_url_2.RULE +++ b/src/licensedcode/data/rules/zimbra-1.4_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zimbra-1.4 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zimbra-1.4.html +--- + https://spdx.org/licenses/zimbra-1.4.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zimbra-1.4_url_2.yml b/src/licensedcode/data/rules/zimbra-1.4_url_2.yml deleted file mode 100644 index 738153c96c8..00000000000 --- a/src/licensedcode/data/rules/zimbra-1.4_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zimbra-1.4 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zimbra-1.4.html diff --git a/src/licensedcode/data/rules/zlib-acknowledgement.SPDX.RULE b/src/licensedcode/data/rules/zlib-acknowledgement.SPDX.RULE index 3bb903b1910..c0bf478edc3 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement.SPDX.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement.SPDX.RULE @@ -1,3 +1,19 @@ +--- +license_expression: zlib-acknowledgement +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 2000-2002 Philip A. Craig + - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov + - Copyright (c) 2002-2007 Charlie Poole + - Portions Copyright (c) 2002-2007 Charlie Poole +ignorable_holders: + - Charlie Poole + - James W. Newkirk, Michael C. Two, Alexei A. Vorontsov + - Philip A. Craig +--- + Copyright (c) 2002-2007 Charlie Poole Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov Copyright (c) 2000-2002 Philip A. Craig diff --git a/src/licensedcode/data/rules/zlib-acknowledgement.SPDX.yml b/src/licensedcode/data/rules/zlib-acknowledgement.SPDX.yml deleted file mode 100644 index 454c06dd331..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement.SPDX.yml +++ /dev/null @@ -1,13 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 2000-2002 Philip A. Craig - - Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov - - Copyright (c) 2002-2007 Charlie Poole - - Portions Copyright (c) 2002-2007 Charlie Poole -ignorable_holders: - - Charlie Poole - - James W. Newkirk, Michael C. Two, Alexei A. Vorontsov - - Philip A. Craig diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_1.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_1.RULE index b68c1d24c15..5b02c29e391 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_1.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Nunit License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_1.yml b/src/licensedcode/data/rules/zlib-acknowledgement_1.yml deleted file mode 100644 index bdcaf060f86..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_10.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_10.RULE index 05d6a34c557..b7a3b25efd4 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_10.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_10.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + zlib-acknowledgement zlib/libpng License with Acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_10.yml b/src/licensedcode/data/rules/zlib-acknowledgement_10.yml deleted file mode 100644 index 2c0e9664afd..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_11.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_11.RULE index 100d6a06305..2737e671e0c 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_11.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_11.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + zlib/libpng License with Acknowledgement zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_11.yml b/src/licensedcode/data/rules/zlib-acknowledgement_11.yml deleted file mode 100644 index 2c0e9664afd..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_12.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_12.RULE index a83faf97a2b..b0594756593 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_12.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_12.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_12.yml b/src/licensedcode/data/rules/zlib-acknowledgement_12.yml deleted file mode 100644 index bb0445ade96..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_13.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_13.RULE index 1dc9e3cb507..c811a2d0aa0 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_13.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_13.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: zlib/libpng License with Acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_13.yml b/src/licensedcode/data/rules/zlib-acknowledgement_13.yml deleted file mode 100644 index bb0445ade96..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_14.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_14.RULE index bb3a41be82d..b1ba1549c09 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_14.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_14.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_14.yml b/src/licensedcode/data/rules/zlib-acknowledgement_14.yml deleted file mode 100644 index bb0445ade96..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_15.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_15.RULE index add878fa4b1..e8fab69b7ed 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_15.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_15.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/zlib-acknowledgement +--- + https://licenses.nuget.org/zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_15.yml b/src/licensedcode/data/rules/zlib-acknowledgement_15.yml deleted file mode 100644 index 8f8a854bae4..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/zlib-acknowledgement diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_16.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_16.RULE index f689eacffc1..1178d96312c 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_16.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_16.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_16.yml b/src/licensedcode/data/rules/zlib-acknowledgement_16.yml deleted file mode 100644 index 922b1d44345..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_16.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_17.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_17.RULE index b1fbcc49636..c9eadb6cd7b 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_17.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_17.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/zlib-acknowledgement +--- + {{zlib-acknowledgement}} https://spdx.org/licenses/zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_17.yml b/src/licensedcode/data/rules/zlib-acknowledgement_17.yml deleted file mode 100644 index 8122aebebb7..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_17.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/zlib-acknowledgement diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_18.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_18.RULE index 968e260c555..d9bf7c606dc 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_18.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_18.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/zlib-acknowledgement +--- + LICENSE {{zlib-acknowledgement}} https://spdx.org/licenses/zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_18.yml b/src/licensedcode/data/rules/zlib-acknowledgement_18.yml deleted file mode 100644 index 8122aebebb7..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/zlib-acknowledgement diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_19.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_19.RULE index 4efdb07dc64..ad7c07401b0 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_19.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_19.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Nunit +--- + {{Nunit}} https://spdx.org/licenses/Nunit \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_19.yml b/src/licensedcode/data/rules/zlib-acknowledgement_19.yml deleted file mode 100644 index a89121540e0..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_19.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Nunit diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_2.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_2.RULE index 134d145d15f..4a8c21b0006 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_2.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +--- + Nunit Nunit License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_2.yml b/src/licensedcode/data/rules/zlib-acknowledgement_2.yml deleted file mode 100644 index bdcaf060f86..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_20.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_20.RULE index 8f250ee41da..1c395133728 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_20.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_20.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Nunit +--- + LICENSE {{Nunit}} https://spdx.org/licenses/Nunit \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_20.yml b/src/licensedcode/data/rules/zlib-acknowledgement_20.yml deleted file mode 100644 index a89121540e0..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Nunit diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_3.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_3.RULE index 9c54b716d20..4745f9d085a 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_3.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_3.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + Nunit License Nunit \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_3.yml b/src/licensedcode/data/rules/zlib-acknowledgement_3.yml deleted file mode 100644 index 834088e6045..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_4.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_4.RULE index fe00347bd60..212f952c600 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_4.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_4.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + license : Nunit \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_4.yml b/src/licensedcode/data/rules/zlib-acknowledgement_4.yml deleted file mode 100644 index 3cf93c593f4..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_4.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_5.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_5.RULE index b6db4f0a6c1..98eb9b5d946 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_5.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_5.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + licenseid : Nunit \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_5.yml b/src/licensedcode/data/rules/zlib-acknowledgement_5.yml deleted file mode 100644 index 834088e6045..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_6.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_6.RULE index 8c9a2d30180..671f7d37822 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_6.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_6.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license name and/or ID +--- + name : Nunit License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_6.yml b/src/licensedcode/data/rules/zlib-acknowledgement_6.yml deleted file mode 100644 index 834088e6045..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_7.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_7.RULE index 3243998ca8d..7e6c20243f4 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_7.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_7.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Nunit License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_7.yml b/src/licensedcode/data/rules/zlib-acknowledgement_7.yml deleted file mode 100644 index bb0445ade96..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_8.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_8.RULE index a4a8a752595..22b5c10aed5 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_8.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_8.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + zlib/libpng License with Acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_8.yml b/src/licensedcode/data/rules/zlib-acknowledgement_8.yml deleted file mode 100644 index 2c0e9664afd..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_9.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_9.RULE index 4e3240d9f9d..119a4a0cf64 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_9.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_9.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: zlib/libpng License with Acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_9.yml b/src/licensedcode/data/rules/zlib-acknowledgement_9.yml deleted file mode 100644 index 2c0e9664afd..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_nunit.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_nunit.RULE index 7d9639b1992..3a4a29567a3 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_nunit.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_nunit.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_text: yes +minimum_coverage: 60 +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_nunit.yml b/src/licensedcode/data/rules/zlib-acknowledgement_nunit.yml deleted file mode 100644 index 96e9cb10a33..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_nunit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_nunit2.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_nunit2.RULE index 0808b56986c..5d942300bde 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_nunit2.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_nunit2.RULE @@ -1,3 +1,10 @@ +--- +license_expression: zlib-acknowledgement +is_license_notice: yes +relevance: 99 +minimum_coverage: 50 +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -9,4 +16,4 @@ the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is - required. + required. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_nunit2.yml b/src/licensedcode/data/rules/zlib-acknowledgement_nunit2.yml deleted file mode 100644 index 572a0ca8a19..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_nunit2.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_notice: yes -relevance: 99 -minimum_coverage: 50 diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_url_1.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_url_1.RULE index 54ccb62d99c..5a0ef54fc13 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_url_1.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zlib-acknowledgement +--- + https://spdx.org/licenses/zlib-acknowledgement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_url_1.yml b/src/licensedcode/data/rules/zlib-acknowledgement_url_1.yml deleted file mode 100644 index 7a560ef559a..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zlib-acknowledgement diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_url_2.RULE b/src/licensedcode/data/rules/zlib-acknowledgement_url_2.RULE index 7ef54595d3c..33ddbaab0e6 100644 --- a/src/licensedcode/data/rules/zlib-acknowledgement_url_2.RULE +++ b/src/licensedcode/data/rules/zlib-acknowledgement_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib-acknowledgement +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zlib-acknowledgement.html +--- + https://spdx.org/licenses/zlib-acknowledgement.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib-acknowledgement_url_2.yml b/src/licensedcode/data/rules/zlib-acknowledgement_url_2.yml deleted file mode 100644 index 89d72d3b50a..00000000000 --- a/src/licensedcode/data/rules/zlib-acknowledgement_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib-acknowledgement -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zlib-acknowledgement.html diff --git a/src/licensedcode/data/rules/zlib.RULE b/src/licensedcode/data/rules/zlib.RULE index 95c3c95651e..2977eb4f661 100644 --- a/src/licensedcode/data/rules/zlib.RULE +++ b/src/licensedcode/data/rules/zlib.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zlib.net/zlib_license.html +--- + http://www.zlib.net/zlib_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib.yml b/src/licensedcode/data/rules/zlib.yml deleted file mode 100644 index 97fe558ac15..00000000000 --- a/src/licensedcode/data/rules/zlib.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zlib.net/zlib_license.html diff --git a/src/licensedcode/data/rules/zlib_1.RULE b/src/licensedcode/data/rules/zlib_1.RULE index d201edc6f22..8b49ab93d4a 100644 --- a/src/licensedcode/data/rules/zlib_1.RULE +++ b/src/licensedcode/data/rules/zlib_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://choosealicense.com/licenses/zlib +--- + https://choosealicense.com/licenses/zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_1.yml b/src/licensedcode/data/rules/zlib_1.yml deleted file mode 100644 index 86885f22560..00000000000 --- a/src/licensedcode/data/rules/zlib_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://choosealicense.com/licenses/zlib diff --git a/src/licensedcode/data/rules/zlib_10.RULE b/src/licensedcode/data/rules/zlib_10.RULE index 742d018fc6a..d59a464be82 100644 --- a/src/licensedcode/data/rules/zlib_10.RULE +++ b/src/licensedcode/data/rules/zlib_10.RULE @@ -1,3 +1,13 @@ +--- +license_expression: zlib +is_license_text: yes +ignorable_urls: + - http://www.gzip.org/zlib/zlib_license.html +ignorable_emails: + - jloup@gzip.org + - madler@alumni.caltech.edu +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -17,4 +27,4 @@ Jean-loup Gailly jloup@gzip.org Mark Adler madler@alumni.caltech.edu -obtained from: http://www.gzip.org/zlib/zlib_license.html +obtained from: http://www.gzip.org/zlib/zlib_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_10.yml b/src/licensedcode/data/rules/zlib_10.yml deleted file mode 100644 index 562fdc8b1d2..00000000000 --- a/src/licensedcode/data/rules/zlib_10.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: zlib -is_license_text: yes -ignorable_urls: - - http://www.gzip.org/zlib/zlib_license.html -ignorable_emails: - - jloup@gzip.org - - madler@alumni.caltech.edu diff --git a/src/licensedcode/data/rules/zlib_100.RULE b/src/licensedcode/data/rules/zlib_100.RULE index 15a76dabb96..25d57c55fc4 100644 --- a/src/licensedcode/data/rules/zlib_100.RULE +++ b/src/licensedcode/data/rules/zlib_100.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + License terms appear in Zlib . \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_100.yml b/src/licensedcode/data/rules/zlib_100.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_100.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_101.RULE b/src/licensedcode/data/rules/zlib_101.RULE index 81b09bbaf29..5ba0a2f679e 100644 --- a/src/licensedcode/data/rules/zlib_101.RULE +++ b/src/licensedcode/data/rules/zlib_101.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/Zlib +--- + https://licenses.nuget.org/Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_101.yml b/src/licensedcode/data/rules/zlib_101.yml deleted file mode 100644 index 52ca004265b..00000000000 --- a/src/licensedcode/data/rules/zlib_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/Zlib diff --git a/src/licensedcode/data/rules/zlib_102.RULE b/src/licensedcode/data/rules/zlib_102.RULE index d782a864212..963471d8b96 100644 --- a/src/licensedcode/data/rules/zlib_102.RULE +++ b/src/licensedcode/data/rules/zlib_102.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_102.yml b/src/licensedcode/data/rules/zlib_102.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/zlib_102.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_103.RULE b/src/licensedcode/data/rules/zlib_103.RULE index 7da96169b18..d55e6c5e308 100644 --- a/src/licensedcode/data/rules/zlib_103.RULE +++ b/src/licensedcode/data/rules/zlib_103.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zlib +--- + {{Zlib}} https://spdx.org/licenses/Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_103.yml b/src/licensedcode/data/rules/zlib_103.yml deleted file mode 100644 index e9d481b2620..00000000000 --- a/src/licensedcode/data/rules/zlib_103.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zlib diff --git a/src/licensedcode/data/rules/zlib_104.RULE b/src/licensedcode/data/rules/zlib_104.RULE index 6fe38b7b384..f43f21e9f7c 100644 --- a/src/licensedcode/data/rules/zlib_104.RULE +++ b/src/licensedcode/data/rules/zlib_104.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/Zlib +--- + LICENSE {{Zlib}} https://spdx.org/licenses/Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_104.yml b/src/licensedcode/data/rules/zlib_104.yml deleted file mode 100644 index e9d481b2620..00000000000 --- a/src/licensedcode/data/rules/zlib_104.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/Zlib diff --git a/src/licensedcode/data/rules/zlib_11.RULE b/src/licensedcode/data/rules/zlib_11.RULE index c03fdf06478..15acf2ca839 100644 --- a/src/licensedcode/data/rules/zlib_11.RULE +++ b/src/licensedcode/data/rules/zlib_11.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zlib +is_license_text: yes +--- + Condition of use and distribution are the same than zlib : This software is provided 'as-is', without any express or implied diff --git a/src/licensedcode/data/rules/zlib_11.yml b/src/licensedcode/data/rules/zlib_11.yml deleted file mode 100644 index acf6bb73ac5..00000000000 --- a/src/licensedcode/data/rules/zlib_11.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_text: yes diff --git a/src/licensedcode/data/rules/zlib_12.RULE b/src/licensedcode/data/rules/zlib_12.RULE index 40bd722b120..a742da3c47b 100644 --- a/src/licensedcode/data/rules/zlib_12.RULE +++ b/src/licensedcode/data/rules/zlib_12.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zlib +is_license_text: yes +--- + The zlib/libpng License This software is provided 'as-is', without any express or implied warranty. @@ -12,4 +17,4 @@ an acknowledgment in the product documentation would be appreciated but is not r Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -This notice may not be removed or altered from any source distribution. +This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_12.yml b/src/licensedcode/data/rules/zlib_12.yml deleted file mode 100644 index acf6bb73ac5..00000000000 --- a/src/licensedcode/data/rules/zlib_12.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_text: yes diff --git a/src/licensedcode/data/rules/zlib_13.RULE b/src/licensedcode/data/rules/zlib_13.RULE index 520ff38b48e..870fb01ffa3 100644 --- a/src/licensedcode/data/rules/zlib_13.RULE +++ b/src/licensedcode/data/rules/zlib_13.RULE @@ -1 +1,7 @@ -licensed under the {{zlib/libpng license}} +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + +licensed under the {{zlib/libpng license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_13.yml b/src/licensedcode/data/rules/zlib_13.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_13.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_14.RULE b/src/licensedcode/data/rules/zlib_14.RULE index 8440c03257a..03b489f5820 100644 --- a/src/licensedcode/data/rules/zlib_14.RULE +++ b/src/licensedcode/data/rules/zlib_14.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + zlib/libpng license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_14.yml b/src/licensedcode/data/rules/zlib_14.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/zlib_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_15.RULE b/src/licensedcode/data/rules/zlib_15.RULE index e274f05192e..c4827223a12 100644 --- a/src/licensedcode/data/rules/zlib_15.RULE +++ b/src/licensedcode/data/rules/zlib_15.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/zlib-license.php +--- + http://www.opensource.org/licenses/zlib-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_15.yml b/src/licensedcode/data/rules/zlib_15.yml deleted file mode 100644 index 9e30f19a8ac..00000000000 --- a/src/licensedcode/data/rules/zlib_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/zlib-license.php diff --git a/src/licensedcode/data/rules/zlib_16.RULE b/src/licensedcode/data/rules/zlib_16.RULE index 4b10e02206f..e4e6a0fad25 100644 --- a/src/licensedcode/data/rules/zlib_16.RULE +++ b/src/licensedcode/data/rules/zlib_16.RULE @@ -1 +1,8 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + May be used and distributed under the zlib/libpng license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_16.yml b/src/licensedcode/data/rules/zlib_16.yml deleted file mode 100644 index 33b209ee670..00000000000 --- a/src/licensedcode/data/rules/zlib_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib_17.RULE b/src/licensedcode/data/rules/zlib_17.RULE index 1e95faa2cbc..6716c7eeace 100644 --- a/src/licensedcode/data/rules/zlib_17.RULE +++ b/src/licensedcode/data/rules/zlib_17.RULE @@ -1,3 +1,12 @@ +--- +license_expression: zlib +is_license_text: yes +minimum_coverage: 100 +ignorable_emails: + - jloup@gzip.org + - madler@alumni.caltech.edu +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. @@ -15,4 +24,4 @@ 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly Mark Adler - jloup@gzip.org madler@alumni.caltech.edu + jloup@gzip.org madler@alumni.caltech.edu \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_17.yml b/src/licensedcode/data/rules/zlib_17.yml deleted file mode 100644 index 90f1a339b5f..00000000000 --- a/src/licensedcode/data/rules/zlib_17.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_text: yes -minimum_coverage: 100 -ignorable_emails: - - jloup@gzip.org - - madler@alumni.caltech.edu diff --git a/src/licensedcode/data/rules/zlib_18.RULE b/src/licensedcode/data/rules/zlib_18.RULE index 54edfb145b1..dc0c31daf0a 100644 --- a/src/licensedcode/data/rules/zlib_18.RULE +++ b/src/licensedcode/data/rules/zlib_18.RULE @@ -1 +1,8 @@ - applications source code is distributed under the zlib licence. +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +minimum_coverage: 100 +--- + + applications source code is distributed under the zlib licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_18.yml b/src/licensedcode/data/rules/zlib_18.yml deleted file mode 100644 index 33b209ee670..00000000000 --- a/src/licensedcode/data/rules/zlib_18.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib_19.RULE b/src/licensedcode/data/rules/zlib_19.RULE index aa55b47ba91..f1aa3a653b2 100644 --- a/src/licensedcode/data/rules/zlib_19.RULE +++ b/src/licensedcode/data/rules/zlib_19.RULE @@ -1,2 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +--- + The zlib source code is licensed under the Zlib license, which is a -permissive license compatible with BSD-3-Clause. +permissive license compatible with BSD-3-Clause. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_19.yml b/src/licensedcode/data/rules/zlib_19.yml deleted file mode 100644 index d3cbaef4656..00000000000 --- a/src/licensedcode/data/rules/zlib_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_reference: yes diff --git a/src/licensedcode/data/rules/zlib_2.RULE b/src/licensedcode/data/rules/zlib_2.RULE index aec188ba5d7..b8369f6843b 100644 --- a/src/licensedcode/data/rules/zlib_2.RULE +++ b/src/licensedcode/data/rules/zlib_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: zlib +is_license_text: yes +notes: Found in copying_we.tx in http://www.wolfgang-ehrhardt.de/aes_2013-01-07.zip This is + not clear if the Greman translation is exactly the same as the zlib license but the file + contains both side by side and the intention of this text seems to be a zlib translation +ignorable_urls: + - http://www.opensource.org/licenses/zlib-license.php +--- + Based on "The zlib/libpng License": http://www.opensource.org/licenses/zlib-license.php @@ -44,5 +54,4 @@ werden eingehalten: und duerfen nicht als die Originalsoftware ausgegeben werden. 3. Die Bedingungen ueber die Nutzung/Weitergabe duerfen nicht entfernt oder - geaendert werden. - + geaendert werden. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_2.yml b/src/licensedcode/data/rules/zlib_2.yml deleted file mode 100644 index 0ee759a01a0..00000000000 --- a/src/licensedcode/data/rules/zlib_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: zlib -is_license_text: yes -notes: Found in copying_we.tx in http://www.wolfgang-ehrhardt.de/aes_2013-01-07.zip This is - not clear if the Greman translation is exactly the same as the zlib license but the file - contains both side by side and the intention of this text seems to be a zlib translation -ignorable_urls: - - http://www.opensource.org/licenses/zlib-license.php diff --git a/src/licensedcode/data/rules/zlib_20.RULE b/src/licensedcode/data/rules/zlib_20.RULE index b287344bd96..b353bf49390 100644 --- a/src/licensedcode/data/rules/zlib_20.RULE +++ b/src/licensedcode/data/rules/zlib_20.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +minimum_coverage: 90 +--- + /* Utility function: initialize zlib, unpack binary blob, clean up zlib, * return len or negative error code. */ diff --git a/src/licensedcode/data/rules/zlib_20.yml b/src/licensedcode/data/rules/zlib_20.yml deleted file mode 100644 index 5d096170aab..00000000000 --- a/src/licensedcode/data/rules/zlib_20.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/zlib_21.RULE b/src/licensedcode/data/rules/zlib_21.RULE index 4034937d680..2f9bcca7db9 100644 --- a/src/licensedcode/data/rules/zlib_21.RULE +++ b/src/licensedcode/data/rules/zlib_21.RULE @@ -1,2 +1,8 @@ +--- +license_expression: zlib +is_license_reference: yes +minimum_coverage: 90 +--- + A Pos is an index in the character window. We use short instead of int to -save space in the various tables. IPos is used only for parameter passing. +save space in the various tables. IPos is used only for parameter passing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_21.yml b/src/licensedcode/data/rules/zlib_21.yml deleted file mode 100644 index 5d096170aab..00000000000 --- a/src/licensedcode/data/rules/zlib_21.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -minimum_coverage: 90 diff --git a/src/licensedcode/data/rules/zlib_22.RULE b/src/licensedcode/data/rules/zlib_22.RULE index 4110ef5e4a6..17e13749154 100644 --- a/src/licensedcode/data/rules/zlib_22.RULE +++ b/src/licensedcode/data/rules/zlib_22.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib +is_license_text: yes +minimum_coverage: 65 +--- + Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: diff --git a/src/licensedcode/data/rules/zlib_22.yml b/src/licensedcode/data/rules/zlib_22.yml deleted file mode 100644 index 777d0de43c9..00000000000 --- a/src/licensedcode/data/rules/zlib_22.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_text: yes -minimum_coverage: 65 diff --git a/src/licensedcode/data/rules/zlib_23.RULE b/src/licensedcode/data/rules/zlib_23.RULE index f656e1bd4a4..41bdf937d29 100644 --- a/src/licensedcode/data/rules/zlib_23.RULE +++ b/src/licensedcode/data/rules/zlib_23.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib +is_license_text: yes +minimum_coverage: 60 +--- + Also, the following BSD-like license applies (at your option) to the files following the pattern psycopg/adapter*.{h,c} and psycopg/microprotocol*.{h,c}: diff --git a/src/licensedcode/data/rules/zlib_23.yml b/src/licensedcode/data/rules/zlib_23.yml deleted file mode 100644 index 58ed2e2f79c..00000000000 --- a/src/licensedcode/data/rules/zlib_23.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_text: yes -minimum_coverage: 60 diff --git a/src/licensedcode/data/rules/zlib_24.RULE b/src/licensedcode/data/rules/zlib_24.RULE index 43269278400..8cb9433def5 100644 --- a/src/licensedcode/data/rules/zlib_24.RULE +++ b/src/licensedcode/data/rules/zlib_24.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_tag: yes +relevance: 100 +--- + license: zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_24.yml b/src/licensedcode/data/rules/zlib_24.yml deleted file mode 100644 index b3e9adbe2c3..00000000000 --- a/src/licensedcode/data/rules/zlib_24.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_25.RULE b/src/licensedcode/data/rules/zlib_25.RULE index 6592319aa39..8d5b64ab40b 100644 --- a/src/licensedcode/data/rules/zlib_25.RULE +++ b/src/licensedcode/data/rules/zlib_25.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib +is_license_text: yes +minimum_coverage: 80 +--- + Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: diff --git a/src/licensedcode/data/rules/zlib_25.yml b/src/licensedcode/data/rules/zlib_25.yml deleted file mode 100644 index 831dc27a3ed..00000000000 --- a/src/licensedcode/data/rules/zlib_25.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_text: yes -minimum_coverage: 80 diff --git a/src/licensedcode/data/rules/zlib_26.RULE b/src/licensedcode/data/rules/zlib_26.RULE index d3eff9b54d1..1b343d81ac8 100644 --- a/src/licensedcode/data/rules/zlib_26.RULE +++ b/src/licensedcode/data/rules/zlib_26.RULE @@ -1,2 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 95 +minimum_coverage: 100 +--- + Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_26.yml b/src/licensedcode/data/rules/zlib_26.yml deleted file mode 100644 index efcf5303ab1..00000000000 --- a/src/licensedcode/data/rules/zlib_26.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 95 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib_27.RULE b/src/licensedcode/data/rules/zlib_27.RULE index 77dc40a545d..aab99d84b55 100644 --- a/src/licensedcode/data/rules/zlib_27.RULE +++ b/src/licensedcode/data/rules/zlib_27.RULE @@ -1,5 +1,11 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 80 +--- + zlib.h -- interface of the 'zlib' general purpose compression library This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the -use of this software. +use of this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_27.yml b/src/licensedcode/data/rules/zlib_27.yml deleted file mode 100644 index fa440a0c4fa..00000000000 --- a/src/licensedcode/data/rules/zlib_27.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 80 diff --git a/src/licensedcode/data/rules/zlib_28.RULE b/src/licensedcode/data/rules/zlib_28.RULE index 3125f078af7..cb80d88f6dd 100644 --- a/src/licensedcode/data/rules/zlib_28.RULE +++ b/src/licensedcode/data/rules/zlib_28.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + The full text of the zlib licence: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_28.yml b/src/licensedcode/data/rules/zlib_28.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/zlib_28.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_29.RULE b/src/licensedcode/data/rules/zlib_29.RULE index 3cf2e52e8c9..6e3fd7cd9ce 100644 --- a/src/licensedcode/data/rules/zlib_29.RULE +++ b/src/licensedcode/data/rules/zlib_29.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zlib +is_license_text: yes +--- + BSD LIKE This software is provided 'as-is', without any express or implied diff --git a/src/licensedcode/data/rules/zlib_29.yml b/src/licensedcode/data/rules/zlib_29.yml deleted file mode 100644 index acf6bb73ac5..00000000000 --- a/src/licensedcode/data/rules/zlib_29.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_text: yes diff --git a/src/licensedcode/data/rules/zlib_3.RULE b/src/licensedcode/data/rules/zlib_3.RULE index bbb36830ccf..26a899a8038 100644 --- a/src/licensedcode/data/rules/zlib_3.RULE +++ b/src/licensedcode/data/rules/zlib_3.RULE @@ -1,3 +1,11 @@ +--- +license_expression: zlib +is_license_notice: yes +notes: zlib with url +ignorable_urls: + - http://www.opensource.org/licenses/zlib-license.php +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/zlib_3.yml b/src/licensedcode/data/rules/zlib_3.yml deleted file mode 100644 index ce46545c60d..00000000000 --- a/src/licensedcode/data/rules/zlib_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -notes: zlib with url -ignorable_urls: - - http://www.opensource.org/licenses/zlib-license.php diff --git a/src/licensedcode/data/rules/zlib_30.RULE b/src/licensedcode/data/rules/zlib_30.RULE index 69371a477e4..4efceadbe3d 100644 --- a/src/licensedcode/data/rules/zlib_30.RULE +++ b/src/licensedcode/data/rules/zlib_30.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 99 +--- + Distributed under the permissive zlib License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_30.yml b/src/licensedcode/data/rules/zlib_30.yml deleted file mode 100644 index eee8878aebb..00000000000 --- a/src/licensedcode/data/rules/zlib_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/zlib_31.RULE b/src/licensedcode/data/rules/zlib_31.RULE index b727abe81c1..c8e65fa9a66 100644 --- a/src/licensedcode/data/rules/zlib_31.RULE +++ b/src/licensedcode/data/rules/zlib_31.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + zlib licence: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_31.yml b/src/licensedcode/data/rules/zlib_31.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/zlib_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_32.RULE b/src/licensedcode/data/rules/zlib_32.RULE index 17d0d443d82..64734f238f3 100644 --- a/src/licensedcode/data/rules/zlib_32.RULE +++ b/src/licensedcode/data/rules/zlib_32.RULE @@ -1,7 +1,14 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + For conditions of distribution and use, see copyright notice in zlib.h Pascal translation For conditions of distribution and use, see copyright notice in readme.txt Adaptation to the zlibpas interface -For conditions of distribution and use, see copyright notice in readme.txt +For conditions of distribution and use, see copyright notice in readme.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_32.yml b/src/licensedcode/data/rules/zlib_32.yml deleted file mode 100644 index 40f299dd2da..00000000000 --- a/src/licensedcode/data/rules/zlib_32.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib_33.RULE b/src/licensedcode/data/rules/zlib_33.RULE index b4193eb6aaf..b84d0a15eea 100644 --- a/src/licensedcode/data/rules/zlib_33.RULE +++ b/src/licensedcode/data/rules/zlib_33.RULE @@ -1 +1,8 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + For conditions of distribution and use, see copyright notice in puff.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_33.yml b/src/licensedcode/data/rules/zlib_33.yml deleted file mode 100644 index 40f299dd2da..00000000000 --- a/src/licensedcode/data/rules/zlib_33.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib_34.RULE b/src/licensedcode/data/rules/zlib_34.RULE index 338574b263e..fa345ef629b 100644 --- a/src/licensedcode/data/rules/zlib_34.RULE +++ b/src/licensedcode/data/rules/zlib_34.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://choosealicense.com/licenses/zlib +--- + http://choosealicense.com/licenses/zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_34.yml b/src/licensedcode/data/rules/zlib_34.yml deleted file mode 100644 index cfb49de0e12..00000000000 --- a/src/licensedcode/data/rules/zlib_34.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://choosealicense.com/licenses/zlib diff --git a/src/licensedcode/data/rules/zlib_35.RULE b/src/licensedcode/data/rules/zlib_35.RULE index 30c2bfa3f28..b0689daafc3 100644 --- a/src/licensedcode/data/rules/zlib_35.RULE +++ b/src/licensedcode/data/rules/zlib_35.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gzip.org/ +--- + Licence: Same as ZLIB (www.gzip.org) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_35.yml b/src/licensedcode/data/rules/zlib_35.yml deleted file mode 100644 index 6ea166b0a7c..00000000000 --- a/src/licensedcode/data/rules/zlib_35.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gzip.org/ diff --git a/src/licensedcode/data/rules/zlib_36.RULE b/src/licensedcode/data/rules/zlib_36.RULE index 3a1eec2230c..296e6e90c89 100644 --- a/src/licensedcode/data/rules/zlib_36.RULE +++ b/src/licensedcode/data/rules/zlib_36.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + License: Same as ZLIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_36.yml b/src/licensedcode/data/rules/zlib_36.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_36.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_37.RULE b/src/licensedcode/data/rules/zlib_37.RULE index b9c90915619..0072f8f697d 100644 --- a/src/licensedcode/data/rules/zlib_37.RULE +++ b/src/licensedcode/data/rules/zlib_37.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + Licence: Same as ZLIB \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_37.yml b/src/licensedcode/data/rules/zlib_37.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_38.RULE b/src/licensedcode/data/rules/zlib_38.RULE index aa196682f26..8ab718e5019 100644 --- a/src/licensedcode/data/rules/zlib_38.RULE +++ b/src/licensedcode/data/rules/zlib_38.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.gzip.org/ +--- + License: Same as ZLIB (www.gzip.org) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_38.yml b/src/licensedcode/data/rules/zlib_38.yml deleted file mode 100644 index 6ea166b0a7c..00000000000 --- a/src/licensedcode/data/rules/zlib_38.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -ignorable_urls: - - http://www.gzip.org/ diff --git a/src/licensedcode/data/rules/zlib_39.RULE b/src/licensedcode/data/rules/zlib_39.RULE index 2c84c12f2e3..e65ec595996 100644 --- a/src/licensedcode/data/rules/zlib_39.RULE +++ b/src/licensedcode/data/rules/zlib_39.RULE @@ -1,5 +1,18 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 95 +referenced_filenames: + - readme.txt +ignorable_copyrights: + - Copyright (c) Cosmin Truta +ignorable_holders: + - Cosmin Truta +--- + (* zlibpas -- Pascal interface to the zlib data compression library * * Copyright (C) Cosmin Truta. * Derived from original sources by Bob Dellaca. - * For conditions of distribution and use, see copyright notice in readme.txt + * For conditions of distribution and use, see copyright notice in readme.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_39.yml b/src/licensedcode/data/rules/zlib_39.yml deleted file mode 100644 index 0bca7d6244a..00000000000 --- a/src/licensedcode/data/rules/zlib_39.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 95 -referenced_filenames: - - readme.txt -ignorable_copyrights: - - Copyright (c) Cosmin Truta -ignorable_holders: - - Cosmin Truta diff --git a/src/licensedcode/data/rules/zlib_4.RULE b/src/licensedcode/data/rules/zlib_4.RULE index b3e4b4dcc7c..c473e1c4581 100644 --- a/src/licensedcode/data/rules/zlib_4.RULE +++ b/src/licensedcode/data/rules/zlib_4.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zlib +is_license_text: yes +--- + zlib/libpng license This software is provided 'as-is', without any express or implied warranty. In @@ -14,4 +19,4 @@ the following restrictions: appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. + 3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_4.yml b/src/licensedcode/data/rules/zlib_4.yml deleted file mode 100644 index acf6bb73ac5..00000000000 --- a/src/licensedcode/data/rules/zlib_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_text: yes diff --git a/src/licensedcode/data/rules/zlib_40.RULE b/src/licensedcode/data/rules/zlib_40.RULE index ec0a1097af4..2d1763517ba 100644 --- a/src/licensedcode/data/rules/zlib_40.RULE +++ b/src/licensedcode/data/rules/zlib_40.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +referenced_filenames: + - gzlog.h +--- + For conditions of distribution and use, see copyright notice in gzlog.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_40.yml b/src/licensedcode/data/rules/zlib_40.yml deleted file mode 100644 index 6667c64686e..00000000000 --- a/src/licensedcode/data/rules/zlib_40.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -referenced_filenames: - - gzlog.h diff --git a/src/licensedcode/data/rules/zlib_41.RULE b/src/licensedcode/data/rules/zlib_41.RULE index 94cbb607402..d631e81fa82 100644 --- a/src/licensedcode/data/rules/zlib_41.RULE +++ b/src/licensedcode/data/rules/zlib_41.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib +is_license_text: yes +relevance: 100 +--- + License: other This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/src/licensedcode/data/rules/zlib_41.yml b/src/licensedcode/data/rules/zlib_41.yml deleted file mode 100644 index c84bccd7192..00000000000 --- a/src/licensedcode/data/rules/zlib_41.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_42.RULE b/src/licensedcode/data/rules/zlib_42.RULE index 166c4ada46a..9b3a807cb90 100644 --- a/src/licensedcode/data/rules/zlib_42.RULE +++ b/src/licensedcode/data/rules/zlib_42.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/Zlib +--- + Zlib: http://opensource.org/licenses/Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_42.yml b/src/licensedcode/data/rules/zlib_42.yml deleted file mode 100644 index f9ea254422b..00000000000 --- a/src/licensedcode/data/rules/zlib_42.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/Zlib diff --git a/src/licensedcode/data/rules/zlib_43.RULE b/src/licensedcode/data/rules/zlib_43.RULE index 26cce1c049b..828aa078c28 100644 --- a/src/licensedcode/data/rules/zlib_43.RULE +++ b/src/licensedcode/data/rules/zlib_43.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib +is_license_text: yes +relevance: 100 +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/zlib_43.yml b/src/licensedcode/data/rules/zlib_43.yml deleted file mode 100644 index c84bccd7192..00000000000 --- a/src/licensedcode/data/rules/zlib_43.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_44.RULE b/src/licensedcode/data/rules/zlib_44.RULE index 7659d7dace7..0455a7023eb 100644 --- a/src/licensedcode/data/rules/zlib_44.RULE +++ b/src/licensedcode/data/rules/zlib_44.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + ZLIB license (see zlib.h) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_44.yml b/src/licensedcode/data/rules/zlib_44.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/zlib_44.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_45.RULE b/src/licensedcode/data/rules/zlib_45.RULE index ae8968cc646..373164a75bb 100644 --- a/src/licensedcode/data/rules/zlib_45.RULE +++ b/src/licensedcode/data/rules/zlib_45.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + This software is provided "as-is," without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/src/licensedcode/data/rules/zlib_45.yml b/src/licensedcode/data/rules/zlib_45.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_45.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_46.RULE b/src/licensedcode/data/rules/zlib_46.RULE index 263b9ce98ae..21e46c22682 100644 --- a/src/licensedcode/data/rules/zlib_46.RULE +++ b/src/licensedcode/data/rules/zlib_46.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/Zlib +--- + ZLib https://opensource.org/licenses/Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_46.yml b/src/licensedcode/data/rules/zlib_46.yml deleted file mode 100644 index 39e4d02107c..00000000000 --- a/src/licensedcode/data/rules/zlib_46.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/Zlib diff --git a/src/licensedcode/data/rules/zlib_47.RULE b/src/licensedcode/data/rules/zlib_47.RULE index d53e5eca099..129ec831c6d 100644 --- a/src/licensedcode/data/rules/zlib_47.RULE +++ b/src/licensedcode/data/rules/zlib_47.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/Zlib +--- + https://opensource.org/licenses/Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_47.yml b/src/licensedcode/data/rules/zlib_47.yml deleted file mode 100644 index 39e4d02107c..00000000000 --- a/src/licensedcode/data/rules/zlib_47.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/Zlib diff --git a/src/licensedcode/data/rules/zlib_48.RULE b/src/licensedcode/data/rules/zlib_48.RULE index fa4ac88a9ad..3e1d621ffc0 100644 --- a/src/licensedcode/data/rules/zlib_48.RULE +++ b/src/licensedcode/data/rules/zlib_48.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + Open Source Software Licensed under the Zlib License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_48.yml b/src/licensedcode/data/rules/zlib_48.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_48.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_49.RULE b/src/licensedcode/data/rules/zlib_49.RULE index cf1a3c56eb1..6b386a1b0cb 100644 --- a/src/licensedcode/data/rules/zlib_49.RULE +++ b/src/licensedcode/data/rules/zlib_49.RULE @@ -1 +1,7 @@ -Licensed under the {{Zlib License}} +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + +Licensed under the {{Zlib License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_49.yml b/src/licensedcode/data/rules/zlib_49.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_49.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_5.RULE b/src/licensedcode/data/rules/zlib_5.RULE index ca6f32dffd8..99e41527f01 100644 --- a/src/licensedcode/data/rules/zlib_5.RULE +++ b/src/licensedcode/data/rules/zlib_5.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 99 +referenced_filenames: + - zlib.h +--- + For conditions of distribution and use, see copyright notice in zlib.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_5.yml b/src/licensedcode/data/rules/zlib_5.yml deleted file mode 100644 index ef53b1204e0..00000000000 --- a/src/licensedcode/data/rules/zlib_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 99 -referenced_filenames: - - zlib.h diff --git a/src/licensedcode/data/rules/zlib_50.RULE b/src/licensedcode/data/rules/zlib_50.RULE index 7d33430d9fa..cae2614f89a 100644 --- a/src/licensedcode/data/rules/zlib_50.RULE +++ b/src/licensedcode/data/rules/zlib_50.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + Terms of the Zlib License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_50.yml b/src/licensedcode/data/rules/zlib_50.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/zlib_50.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_51.RULE b/src/licensedcode/data/rules/zlib_51.RULE index ea89042109f..dc4fcde5caf 100644 --- a/src/licensedcode/data/rules/zlib_51.RULE +++ b/src/licensedcode/data/rules/zlib_51.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/Zlib +--- + `Zlib` - [Zlib/libpng License](https://opensource.org/licenses/Zlib) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_51.yml b/src/licensedcode/data/rules/zlib_51.yml deleted file mode 100644 index 39e4d02107c..00000000000 --- a/src/licensedcode/data/rules/zlib_51.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/Zlib diff --git a/src/licensedcode/data/rules/zlib_52.RULE b/src/licensedcode/data/rules/zlib_52.RULE index baf6c8c4f06..1f4ee43a357 100644 --- a/src/licensedcode/data/rules/zlib_52.RULE +++ b/src/licensedcode/data/rules/zlib_52.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + under the Zlib license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_52.yml b/src/licensedcode/data/rules/zlib_52.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_52.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_53.RULE b/src/licensedcode/data/rules/zlib_53.RULE index 9b779913e64..80d2d8a8339 100644 --- a/src/licensedcode/data/rules/zlib_53.RULE +++ b/src/licensedcode/data/rules/zlib_53.RULE @@ -1,2 +1,11 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + // This software may be modified and distributed under the terms // of the zlib license. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_53.yml b/src/licensedcode/data/rules/zlib_53.yml deleted file mode 100644 index acdce234889..00000000000 --- a/src/licensedcode/data/rules/zlib_53.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/zlib_54.RULE b/src/licensedcode/data/rules/zlib_54.RULE index 9352a705b12..9a83f687463 100644 --- a/src/licensedcode/data/rules/zlib_54.RULE +++ b/src/licensedcode/data/rules/zlib_54.RULE @@ -1,3 +1,11 @@ +--- +license_expression: zlib +is_license_text: yes +relevance: 100 +minimum_coverage: 95 +notes: seen in psycopg2 +--- + The following BSD-like license applies (at your option) to the files following the pattern ``psycopg/adapter*.{h,c}`` and ``psycopg/microprotocol*.{h,c}``: diff --git a/src/licensedcode/data/rules/zlib_54.yml b/src/licensedcode/data/rules/zlib_54.yml deleted file mode 100644 index 6341ccf6175..00000000000 --- a/src/licensedcode/data/rules/zlib_54.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_text: yes -relevance: 100 -minimum_coverage: 95 -notes: seen in psycopg2 diff --git a/src/licensedcode/data/rules/zlib_55.RULE b/src/licensedcode/data/rules/zlib_55.RULE index b76ccf186e4..6973b75e949 100644 --- a/src/licensedcode/data/rules/zlib_55.RULE +++ b/src/licensedcode/data/rules/zlib_55.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + License This code is under the zlib license, permitting free commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_55.yml b/src/licensedcode/data/rules/zlib_55.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_55.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_56.RULE b/src/licensedcode/data/rules/zlib_56.RULE index 6c963f7c90a..524de136323 100644 --- a/src/licensedcode/data/rules/zlib_56.RULE +++ b/src/licensedcode/data/rules/zlib_56.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + This code is under the zlib license, permitting free commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_56.yml b/src/licensedcode/data/rules/zlib_56.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_56.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_57.RULE b/src/licensedcode/data/rules/zlib_57.RULE index e6a4f7eea03..8f52b0bcaf0 100644 --- a/src/licensedcode/data/rules/zlib_57.RULE +++ b/src/licensedcode/data/rules/zlib_57.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + code is under the zlib license, permitting free commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_57.yml b/src/licensedcode/data/rules/zlib_57.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_57.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_58.RULE b/src/licensedcode/data/rules/zlib_58.RULE index 13c6cf3e6b1..fd92473a99d 100644 --- a/src/licensedcode/data/rules/zlib_58.RULE +++ b/src/licensedcode/data/rules/zlib_58.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + open source software under the [zlib license]: LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_58.yml b/src/licensedcode/data/rules/zlib_58.yml deleted file mode 100644 index e86b4d2a479..00000000000 --- a/src/licensedcode/data/rules/zlib_58.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/zlib_59.RULE b/src/licensedcode/data/rules/zlib_59.RULE index f7cf4fcdcba..1b1bbf4122b 100644 --- a/src/licensedcode/data/rules/zlib_59.RULE +++ b/src/licensedcode/data/rules/zlib_59.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + open source software under the zlib license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_59.yml b/src/licensedcode/data/rules/zlib_59.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_59.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_6.RULE b/src/licensedcode/data/rules/zlib_6.RULE index 5e091dd60ee..3a2fad1cd86 100644 --- a/src/licensedcode/data/rules/zlib_6.RULE +++ b/src/licensedcode/data/rules/zlib_6.RULE @@ -1,3 +1,11 @@ +--- +license_expression: zlib +is_license_notice: yes +notes: Zlib with german translation by Wolfgang Ehrhardt Found in copying_we.tx in http://www.wolfgang-ehrhardt.de/aes_2013-01-07.zip + It is not clear if the Greman translation is exactly the same as the zlib license but the + file contains both side by side +--- + Bedingungen fuer Nutzung und Weitergabe Die Software (Quellcodes und Binaerdateien) wird ohne jegliche Zusagen @@ -19,5 +27,4 @@ werden eingehalten: und duerfen nicht als die Originalsoftware ausgegeben werden. 3. Die Bedingungen ueber die Nutzung/Weitergabe duerfen nicht entfernt oder - geaendert werden. - + geaendert werden. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_6.yml b/src/licensedcode/data/rules/zlib_6.yml deleted file mode 100644 index 75e3cce0144..00000000000 --- a/src/licensedcode/data/rules/zlib_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -notes: Zlib with german translation by Wolfgang Ehrhardt Found in copying_we.tx in http://www.wolfgang-ehrhardt.de/aes_2013-01-07.zip - It is not clear if the Greman translation is exactly the same as the zlib license but the - file contains both side by side diff --git a/src/licensedcode/data/rules/zlib_60.RULE b/src/licensedcode/data/rules/zlib_60.RULE index 41c1f9c03c4..47c8790402f 100644 --- a/src/licensedcode/data/rules/zlib_60.RULE +++ b/src/licensedcode/data/rules/zlib_60.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/zlib +--- + http://opensource.org/licenses/zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_60.yml b/src/licensedcode/data/rules/zlib_60.yml deleted file mode 100644 index 12a833f145d..00000000000 --- a/src/licensedcode/data/rules/zlib_60.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/zlib diff --git a/src/licensedcode/data/rules/zlib_61.RULE b/src/licensedcode/data/rules/zlib_61.RULE index cd4b9706863..b011f54f022 100644 --- a/src/licensedcode/data/rules/zlib_61.RULE +++ b/src/licensedcode/data/rules/zlib_61.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/zlib +--- + https://www.opensource.org/licenses/zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_61.yml b/src/licensedcode/data/rules/zlib_61.yml deleted file mode 100644 index bb6fe65bcfc..00000000000 --- a/src/licensedcode/data/rules/zlib_61.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/zlib diff --git a/src/licensedcode/data/rules/zlib_62.RULE b/src/licensedcode/data/rules/zlib_62.RULE index 77f2faf9d2f..8e3d1340e28 100644 --- a/src/licensedcode/data/rules/zlib_62.RULE +++ b/src/licensedcode/data/rules/zlib_62.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/zlib +--- + http://www.opensource.org/licenses/zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_62.yml b/src/licensedcode/data/rules/zlib_62.yml deleted file mode 100644 index 8c194cc3810..00000000000 --- a/src/licensedcode/data/rules/zlib_62.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/zlib diff --git a/src/licensedcode/data/rules/zlib_63.RULE b/src/licensedcode/data/rules/zlib_63.RULE index 8ec1dcee423..f154b2cba27 100644 --- a/src/licensedcode/data/rules/zlib_63.RULE +++ b/src/licensedcode/data/rules/zlib_63.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_tag: yes +relevance: 100 +--- + Licence: zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_63.yml b/src/licensedcode/data/rules/zlib_63.yml deleted file mode 100644 index b3e9adbe2c3..00000000000 --- a/src/licensedcode/data/rules/zlib_63.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_tag: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_64.RULE b/src/licensedcode/data/rules/zlib_64.RULE index 9bcf2205ea6..8473b5aa80c 100644 --- a/src/licensedcode/data/rules/zlib_64.RULE +++ b/src/licensedcode/data/rules/zlib_64.RULE @@ -1,3 +1,11 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License The content of this repository is distributed under the terms of the zlib license, which you can find in the LICENSE file located in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_64.yml b/src/licensedcode/data/rules/zlib_64.yml deleted file mode 100644 index e86b4d2a479..00000000000 --- a/src/licensedcode/data/rules/zlib_64.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/zlib_65.RULE b/src/licensedcode/data/rules/zlib_65.RULE index 98eeca62a2e..569be67ba48 100644 --- a/src/licensedcode/data/rules/zlib_65.RULE +++ b/src/licensedcode/data/rules/zlib_65.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + The content of this repository is distributed under the terms of the zlib license, which you can find in the LICENSE file located in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_65.yml b/src/licensedcode/data/rules/zlib_65.yml deleted file mode 100644 index e86b4d2a479..00000000000 --- a/src/licensedcode/data/rules/zlib_65.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/zlib_66.RULE b/src/licensedcode/data/rules/zlib_66.RULE index 44be2caec99..79d6864bd03 100644 --- a/src/licensedcode/data/rules/zlib_66.RULE +++ b/src/licensedcode/data/rules/zlib_66.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + distributed under the zlib license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_66.yml b/src/licensedcode/data/rules/zlib_66.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_66.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_67.RULE b/src/licensedcode/data/rules/zlib_67.RULE index 1a0a9c5573c..9f8ee83f5f7 100644 --- a/src/licensedcode/data/rules/zlib_67.RULE +++ b/src/licensedcode/data/rules/zlib_67.RULE @@ -1 +1,11 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - tri_stripper.h +notes: https://github.com/mysticbob/osg/blob/ca773ad07ea30556a4b4698fa8e76b3ad91100a1/src/osgUtil/tristripper/include/tri_stripper.h +--- + For conditions of distribution and use, see copyright notice in tri_stripper.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_67.yml b/src/licensedcode/data/rules/zlib_67.yml deleted file mode 100644 index 29255533c45..00000000000 --- a/src/licensedcode/data/rules/zlib_67.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - tri_stripper.h -notes: https://github.com/mysticbob/osg/blob/ca773ad07ea30556a4b4698fa8e76b3ad91100a1/src/osgUtil/tristripper/include/tri_stripper.h diff --git a/src/licensedcode/data/rules/zlib_68.RULE b/src/licensedcode/data/rules/zlib_68.RULE index 775391782f4..6491cc7f6c7 100644 --- a/src/licensedcode/data/rules/zlib_68.RULE +++ b/src/licensedcode/data/rules/zlib_68.RULE @@ -1 +1,11 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE-shaders +notes: https://github.com/FrictionalGames/HPL1Engine/blob/5e441bbb247a7473e75cc0f05ca8a5b62c6ec64c/assets/core/programs/Diffuse_Color_fp.cg +--- + For conditions of distribution and use, see copyright notice in LICENSE-shaders \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_68.yml b/src/licensedcode/data/rules/zlib_68.yml deleted file mode 100644 index 7eabdd0c460..00000000000 --- a/src/licensedcode/data/rules/zlib_68.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE-shaders -notes: https://github.com/FrictionalGames/HPL1Engine/blob/5e441bbb247a7473e75cc0f05ca8a5b62c6ec64c/assets/core/programs/Diffuse_Color_fp.cg diff --git a/src/licensedcode/data/rules/zlib_69.RULE b/src/licensedcode/data/rules/zlib_69.RULE index 3e25354416c..c2cf41857ec 100644 --- a/src/licensedcode/data/rules/zlib_69.RULE +++ b/src/licensedcode/data/rules/zlib_69.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + are covered under this zlib license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_69.yml b/src/licensedcode/data/rules/zlib_69.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_69.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_7.RULE b/src/licensedcode/data/rules/zlib_7.RULE index 76add1bf216..218525b98e5 100644 --- a/src/licensedcode/data/rules/zlib_7.RULE +++ b/src/licensedcode/data/rules/zlib_7.RULE @@ -1 +1,8 @@ +--- +license_expression: zlib +is_license_reference: yes +is_continuous: yes +relevance: 100 +--- + zlib License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_7.yml b/src/licensedcode/data/rules/zlib_7.yml deleted file mode 100644 index 60abfcc3557..00000000000 --- a/src/licensedcode/data/rules/zlib_7.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_reference: yes -is_continuous: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_70.RULE b/src/licensedcode/data/rules/zlib_70.RULE index c4b4f87a816..aee0a22338a 100644 --- a/src/licensedcode/data/rules/zlib_70.RULE +++ b/src/licensedcode/data/rules/zlib_70.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + covered under this zlib license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_70.yml b/src/licensedcode/data/rules/zlib_70.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_70.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_71.RULE b/src/licensedcode/data/rules/zlib_71.RULE index 2ba6948071e..bb0d46e0c41 100644 --- a/src/licensedcode/data/rules/zlib_71.RULE +++ b/src/licensedcode/data/rules/zlib_71.RULE @@ -1 +1,12 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - LICENSE-tests +notes: https://github.com/FrictionalGames/HPL1Engine/blob/5e441bbb247a7473e75cc0f05ca8a5b62c6ec64c/tests/Common/stdafx.cpp + and https://github.com/FrictionalGames/HPL1Engine/blob/5e441bbb247a7473e75cc0f05ca8a5b62c6ec64c/LICENSE-tests +--- + For conditions of distribution and use, see copyright notice in LICENSE-tests \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_71.yml b/src/licensedcode/data/rules/zlib_71.yml deleted file mode 100644 index 562cbd3813e..00000000000 --- a/src/licensedcode/data/rules/zlib_71.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - LICENSE-tests -notes: https://github.com/FrictionalGames/HPL1Engine/blob/5e441bbb247a7473e75cc0f05ca8a5b62c6ec64c/tests/Common/stdafx.cpp - and https://github.com/FrictionalGames/HPL1Engine/blob/5e441bbb247a7473e75cc0f05ca8a5b62c6ec64c/LICENSE-tests diff --git a/src/licensedcode/data/rules/zlib_72.RULE b/src/licensedcode/data/rules/zlib_72.RULE index 454c2cfc994..2194f4bf2ca 100644 --- a/src/licensedcode/data/rules/zlib_72.RULE +++ b/src/licensedcode/data/rules/zlib_72.RULE @@ -1 +1,11 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - cAudio.h +notes: https://github.com/monsterbasher/Multicraft/blob/1d3c67f53a95ce448da28fb6ccd63ee4b26433bc/Aurora/libs/cAudio/Headers/cFileLogReceiver.h +--- + For conditions of distribution and use, see copyright notice in cAudio.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_72.yml b/src/licensedcode/data/rules/zlib_72.yml deleted file mode 100644 index 7b250322853..00000000000 --- a/src/licensedcode/data/rules/zlib_72.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - cAudio.h -notes: https://github.com/monsterbasher/Multicraft/blob/1d3c67f53a95ce448da28fb6ccd63ee4b26433bc/Aurora/libs/cAudio/Headers/cFileLogReceiver.h diff --git a/src/licensedcode/data/rules/zlib_73.RULE b/src/licensedcode/data/rules/zlib_73.RULE index 4ba80161409..673b3b736c2 100644 --- a/src/licensedcode/data/rules/zlib_73.RULE +++ b/src/licensedcode/data/rules/zlib_73.RULE @@ -1 +1,11 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - jsimdext.inc +notes: https://github.com/kronic-staging/platform_external_libjpeg-turbo/blob/nougat-mr2/simd/jsimdext.inc +--- + For conditions of distribution and use, see copyright notice in jsimdext.inc \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_73.yml b/src/licensedcode/data/rules/zlib_73.yml deleted file mode 100644 index 083fd6929fa..00000000000 --- a/src/licensedcode/data/rules/zlib_73.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - jsimdext.inc -notes: https://github.com/kronic-staging/platform_external_libjpeg-turbo/blob/nougat-mr2/simd/jsimdext.inc diff --git a/src/licensedcode/data/rules/zlib_74.RULE b/src/licensedcode/data/rules/zlib_74.RULE index 5e08997fe45..2d4053e786a 100644 --- a/src/licensedcode/data/rules/zlib_74.RULE +++ b/src/licensedcode/data/rules/zlib_74.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +referenced_filenames: + - License.txt +--- + This code is distributed under the zlib/libpng license (see License.txt for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_74.yml b/src/licensedcode/data/rules/zlib_74.yml deleted file mode 100644 index d494158c9ee..00000000000 --- a/src/licensedcode/data/rules/zlib_74.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -referenced_filenames: - - License.txt diff --git a/src/licensedcode/data/rules/zlib_75.RULE b/src/licensedcode/data/rules/zlib_75.RULE index c7e3c15600a..3298583e34d 100644 --- a/src/licensedcode/data/rules/zlib_75.RULE +++ b/src/licensedcode/data/rules/zlib_75.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + This code is distributed under the zlib/libpng license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_75.yml b/src/licensedcode/data/rules/zlib_75.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_75.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_76.RULE b/src/licensedcode/data/rules/zlib_76.RULE index fbd412d2d2d..be1f0b6a0ed 100644 --- a/src/licensedcode/data/rules/zlib_76.RULE +++ b/src/licensedcode/data/rules/zlib_76.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + is using the zlib license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_76.yml b/src/licensedcode/data/rules/zlib_76.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_76.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_77.RULE b/src/licensedcode/data/rules/zlib_77.RULE index b6929a218e0..2c49072917e 100644 --- a/src/licensedcode/data/rules/zlib_77.RULE +++ b/src/licensedcode/data/rules/zlib_77.RULE @@ -1 +1,8 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +notes: in minizip +--- + Condition of use and distribution are the same as zlib: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_77.yml b/src/licensedcode/data/rules/zlib_77.yml deleted file mode 100644 index be13c9a956f..00000000000 --- a/src/licensedcode/data/rules/zlib_77.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -notes: in minizip diff --git a/src/licensedcode/data/rules/zlib_78.RULE b/src/licensedcode/data/rules/zlib_78.RULE index 086295a2b2a..43db1d1e0d8 100644 --- a/src/licensedcode/data/rules/zlib_78.RULE +++ b/src/licensedcode/data/rules/zlib_78.RULE @@ -1,3 +1,11 @@ +--- +license_expression: zlib +is_license_text: yes +relevance: 100 +minimum_coverage: 50 +notes: in minizip +--- + Condition of use and distribution are the same as zlib: This software is provided 'as-is', without any express or implied diff --git a/src/licensedcode/data/rules/zlib_78.yml b/src/licensedcode/data/rules/zlib_78.yml deleted file mode 100644 index fd0dddda39b..00000000000 --- a/src/licensedcode/data/rules/zlib_78.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_text: yes -relevance: 100 -minimum_coverage: 50 -notes: in minizip diff --git a/src/licensedcode/data/rules/zlib_79.RULE b/src/licensedcode/data/rules/zlib_79.RULE index 8edfa9e5fa1..d22dfc7be8b 100644 --- a/src/licensedcode/data/rules/zlib_79.RULE +++ b/src/licensedcode/data/rules/zlib_79.RULE @@ -1,2 +1,11 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +minimum_coverage: 80 +referenced_filenames: + - LICENSE +--- + This program is distributed under the terms of the same license as zlib. See the accompanying LICENSE file for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_79.yml b/src/licensedcode/data/rules/zlib_79.yml deleted file mode 100644 index acdce234889..00000000000 --- a/src/licensedcode/data/rules/zlib_79.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 -minimum_coverage: 80 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/zlib_8.RULE b/src/licensedcode/data/rules/zlib_8.RULE index 3d8e7fa68ab..654604634fa 100644 --- a/src/licensedcode/data/rules/zlib_8.RULE +++ b/src/licensedcode/data/rules/zlib_8.RULE @@ -1 +1,8 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +--- + This program is based on zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_8.yml b/src/licensedcode/data/rules/zlib_8.yml deleted file mode 100644 index 977c9191b86..00000000000 --- a/src/licensedcode/data/rules/zlib_8.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib_80.RULE b/src/licensedcode/data/rules/zlib_80.RULE index e0324778f4e..1c0b37a120e 100644 --- a/src/licensedcode/data/rules/zlib_80.RULE +++ b/src/licensedcode/data/rules/zlib_80.RULE @@ -1 +1,8 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +--- + Zlib License (MIT-Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_80.yml b/src/licensedcode/data/rules/zlib_80.yml deleted file mode 100644 index 40f299dd2da..00000000000 --- a/src/licensedcode/data/rules/zlib_80.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/zlib_81.RULE b/src/licensedcode/data/rules/zlib_81.RULE index 2c3a8037267..2b2b61cc6cd 100644 --- a/src/licensedcode/data/rules/zlib_81.RULE +++ b/src/licensedcode/data/rules/zlib_81.RULE @@ -1,3 +1,11 @@ +--- +license_expression: zlib +is_license_text: yes +relevance: 100 +minimum_coverage: 70 +notes: Acknowledgement vs. acknowledgment +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/zlib_81.yml b/src/licensedcode/data/rules/zlib_81.yml deleted file mode 100644 index 27bc9e9c2e8..00000000000 --- a/src/licensedcode/data/rules/zlib_81.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_text: yes -relevance: 100 -minimum_coverage: 70 -notes: Acknowledgement vs. acknowledgment diff --git a/src/licensedcode/data/rules/zlib_82.RULE b/src/licensedcode/data/rules/zlib_82.RULE index 4e2764463aa..dffd17357b3 100644 --- a/src/licensedcode/data/rules/zlib_82.RULE +++ b/src/licensedcode/data/rules/zlib_82.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +notes: Seen in BSD implementation of gzip +--- + GPL free gzip using zlib. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_82.yml b/src/licensedcode/data/rules/zlib_82.yml deleted file mode 100644 index 488996731df..00000000000 --- a/src/licensedcode/data/rules/zlib_82.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -notes: Seen in BSD implementation of gzip diff --git a/src/licensedcode/data/rules/zlib_83.RULE b/src/licensedcode/data/rules/zlib_83.RULE index b7710455e83..d2011e82cfd 100644 --- a/src/licensedcode/data/rules/zlib_83.RULE +++ b/src/licensedcode/data/rules/zlib_83.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + under the terms of its separate zlib license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_83.yml b/src/licensedcode/data/rules/zlib_83.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_83.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_84.RULE b/src/licensedcode/data/rules/zlib_84.RULE index 1398570d04b..51f1dedeff5 100644 --- a/src/licensedcode/data/rules/zlib_84.RULE +++ b/src/licensedcode/data/rules/zlib_84.RULE @@ -1,2 +1,8 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + License This code is licensed under the zlib License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_84.yml b/src/licensedcode/data/rules/zlib_84.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_84.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_85.RULE b/src/licensedcode/data/rules/zlib_85.RULE index aa883cb56e4..d7494b45834 100644 --- a/src/licensedcode/data/rules/zlib_85.RULE +++ b/src/licensedcode/data/rules/zlib_85.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + This code is licensed under the zlib License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_85.yml b/src/licensedcode/data/rules/zlib_85.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_85.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_86.RULE b/src/licensedcode/data/rules/zlib_86.RULE index f60fbffa31e..acdab155d61 100644 --- a/src/licensedcode/data/rules/zlib_86.RULE +++ b/src/licensedcode/data/rules/zlib_86.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + TinyXML license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_86.yml b/src/licensedcode/data/rules/zlib_86.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/zlib_86.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_87.RULE b/src/licensedcode/data/rules/zlib_87.RULE index 14715ddee8c..257a7df7fde 100644 --- a/src/licensedcode/data/rules/zlib_87.RULE +++ b/src/licensedcode/data/rules/zlib_87.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + licensed under ZLIB license, \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_87.yml b/src/licensedcode/data/rules/zlib_87.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_87.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_88.RULE b/src/licensedcode/data/rules/zlib_88.RULE index b1ed02b2fe0..f2ad22eab26 100644 --- a/src/licensedcode/data/rules/zlib_88.RULE +++ b/src/licensedcode/data/rules/zlib_88.RULE @@ -1,2 +1,8 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 100 +--- + Other dependencies and licenses: Open Source Software Licensed Under the zlib License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_88.yml b/src/licensedcode/data/rules/zlib_88.yml deleted file mode 100644 index 2c80f2a065c..00000000000 --- a/src/licensedcode/data/rules/zlib_88.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_89.RULE b/src/licensedcode/data/rules/zlib_89.RULE index 2c01b1a87ac..839a91d26a4 100644 --- a/src/licensedcode/data/rules/zlib_89.RULE +++ b/src/licensedcode/data/rules/zlib_89.RULE @@ -1,3 +1,11 @@ +--- +license_expression: zlib +is_license_text: yes +ignorable_emails: + - jloup@gzip.org + - madler@alumni.caltech.edu +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly jloup@gzip.org Mark Adler madler@alumni.caltech.edu \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_89.yml b/src/licensedcode/data/rules/zlib_89.yml deleted file mode 100644 index 1ea26a7ecf1..00000000000 --- a/src/licensedcode/data/rules/zlib_89.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_text: yes -ignorable_emails: - - jloup@gzip.org - - madler@alumni.caltech.edu diff --git a/src/licensedcode/data/rules/zlib_9.RULE b/src/licensedcode/data/rules/zlib_9.RULE index 75d15f9c902..4604fd91cde 100644 --- a/src/licensedcode/data/rules/zlib_9.RULE +++ b/src/licensedcode/data/rules/zlib_9.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.gzip.org/zlib/zlib_license.html +--- + http://www.gzip.org/zlib/zlib_license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_9.yml b/src/licensedcode/data/rules/zlib_9.yml deleted file mode 100644 index c83d87cbfa3..00000000000 --- a/src/licensedcode/data/rules/zlib_9.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.gzip.org/zlib/zlib_license.html diff --git a/src/licensedcode/data/rules/zlib_90.RULE b/src/licensedcode/data/rules/zlib_90.RULE index 2d221472e00..949387843a2 100644 --- a/src/licensedcode/data/rules/zlib_90.RULE +++ b/src/licensedcode/data/rules/zlib_90.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zlib +is_license_text: yes +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. diff --git a/src/licensedcode/data/rules/zlib_90.yml b/src/licensedcode/data/rules/zlib_90.yml deleted file mode 100644 index acf6bb73ac5..00000000000 --- a/src/licensedcode/data/rules/zlib_90.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_text: yes diff --git a/src/licensedcode/data/rules/zlib_91.RULE b/src/licensedcode/data/rules/zlib_91.RULE index 4f2ed9e7b90..5ac9f06c7da 100644 --- a/src/licensedcode/data/rules/zlib_91.RULE +++ b/src/licensedcode/data/rules/zlib_91.RULE @@ -1,3 +1,10 @@ +--- +license_expression: zlib +is_license_notice: yes +relevance: 90 +notes: incomplete license text +--- + This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial diff --git a/src/licensedcode/data/rules/zlib_91.yml b/src/licensedcode/data/rules/zlib_91.yml deleted file mode 100644 index c0c12538394..00000000000 --- a/src/licensedcode/data/rules/zlib_91.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zlib -is_license_notice: yes -relevance: 90 -notes: incomplete license text diff --git a/src/licensedcode/data/rules/zlib_92.RULE b/src/licensedcode/data/rules/zlib_92.RULE index 557c17c3a86..8dbefde9af7 100644 --- a/src/licensedcode/data/rules/zlib_92.RULE +++ b/src/licensedcode/data/rules/zlib_92.RULE @@ -1 +1,6 @@ +--- +license_expression: zlib +is_license_reference: yes +--- + The zlib/libpng License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_92.yml b/src/licensedcode/data/rules/zlib_92.yml deleted file mode 100644 index d3cbaef4656..00000000000 --- a/src/licensedcode/data/rules/zlib_92.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_reference: yes diff --git a/src/licensedcode/data/rules/zlib_93.RULE b/src/licensedcode/data/rules/zlib_93.RULE index dd00f1c6778..48f0affc036 100644 --- a/src/licensedcode/data/rules/zlib_93.RULE +++ b/src/licensedcode/data/rules/zlib_93.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: zlib License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_93.yml b/src/licensedcode/data/rules/zlib_93.yml deleted file mode 100644 index 2674e565a08..00000000000 --- a/src/licensedcode/data/rules/zlib_93.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib_94.RULE b/src/licensedcode/data/rules/zlib_94.RULE index aec069a0f24..33c411bcc0a 100644 --- a/src/licensedcode/data/rules/zlib_94.RULE +++ b/src/licensedcode/data/rules/zlib_94.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zlib zlib License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_94.yml b/src/licensedcode/data/rules/zlib_94.yml deleted file mode 100644 index 2674e565a08..00000000000 --- a/src/licensedcode/data/rules/zlib_94.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib_95.RULE b/src/licensedcode/data/rules/zlib_95.RULE index 46da9fd9a59..8967382a631 100644 --- a/src/licensedcode/data/rules/zlib_95.RULE +++ b/src/licensedcode/data/rules/zlib_95.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + zlib License Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_95.yml b/src/licensedcode/data/rules/zlib_95.yml deleted file mode 100644 index 2674e565a08..00000000000 --- a/src/licensedcode/data/rules/zlib_95.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib_96.RULE b/src/licensedcode/data/rules/zlib_96.RULE index 8d7becf831c..33b6e099c3c 100644 --- a/src/licensedcode/data/rules/zlib_96.RULE +++ b/src/licensedcode/data/rules/zlib_96.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: zlib License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_96.yml b/src/licensedcode/data/rules/zlib_96.yml deleted file mode 100644 index 39aca84eb10..00000000000 --- a/src/licensedcode/data/rules/zlib_96.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib_97.RULE b/src/licensedcode/data/rules/zlib_97.RULE index 7c14e4d9316..f1a54a2463b 100644 --- a/src/licensedcode/data/rules/zlib_97.RULE +++ b/src/licensedcode/data/rules/zlib_97.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_97.yml b/src/licensedcode/data/rules/zlib_97.yml deleted file mode 100644 index 39aca84eb10..00000000000 --- a/src/licensedcode/data/rules/zlib_97.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zlib_98.RULE b/src/licensedcode/data/rules/zlib_98.RULE index c06ef5ff7d3..e20f8ed62c1 100644 --- a/src/licensedcode/data/rules/zlib_98.RULE +++ b/src/licensedcode/data/rules/zlib_98.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zlib +is_license_text: yes +--- + This source code is provided 'as-is',without any express or implied warranty.In no event will the author be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/zlib_98.yml b/src/licensedcode/data/rules/zlib_98.yml deleted file mode 100644 index acf6bb73ac5..00000000000 --- a/src/licensedcode/data/rules/zlib_98.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_text: yes diff --git a/src/licensedcode/data/rules/zlib_99.RULE b/src/licensedcode/data/rules/zlib_99.RULE index df8434cad5f..980cc82ac01 100644 --- a/src/licensedcode/data/rules/zlib_99.RULE +++ b/src/licensedcode/data/rules/zlib_99.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +--- + wikipedia.org/wiki/Zlib/libpng_license \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_99.yml b/src/licensedcode/data/rules/zlib_99.yml deleted file mode 100644 index 1eaf9c4b736..00000000000 --- a/src/licensedcode/data/rules/zlib_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_and_ijg_and_libpng_1.RULE b/src/licensedcode/data/rules/zlib_and_ijg_and_libpng_1.RULE index bc78eaa1a5d..b7d32e5e6e3 100644 --- a/src/licensedcode/data/rules/zlib_and_ijg_and_libpng_1.RULE +++ b/src/licensedcode/data/rules/zlib_and_ijg_and_libpng_1.RULE @@ -1 +1,12 @@ +--- +license_expression: zlib AND ijg AND libpng +is_license_reference: yes +relevance: 100 +minimum_coverage: 100 +referenced_filenames: + - irrlicht.h +notes: Seen in https://github.com/shadowEpitech/indie-studio/blob/768d19aa4e17bae6bd8401de6e32869c36f89f1e/irrlicht-1.8.4/include/SMeshBuffer.h + and https://github.com/shadowEpitech/indie-studio/blob/768d19aa4e17bae6bd8401de6e32869c36f89f1e/irrlicht-1.8.4/include/irrlicht.h +--- + For conditions of distribution and use, see copyright notice in irrlicht.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_and_ijg_and_libpng_1.yml b/src/licensedcode/data/rules/zlib_and_ijg_and_libpng_1.yml deleted file mode 100644 index 779081b7249..00000000000 --- a/src/licensedcode/data/rules/zlib_and_ijg_and_libpng_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -license_expression: zlib AND ijg AND libpng -is_license_reference: yes -relevance: 100 -minimum_coverage: 100 -referenced_filenames: - - irrlicht.h -notes: Seen in https://github.com/shadowEpitech/indie-studio/blob/768d19aa4e17bae6bd8401de6e32869c36f89f1e/irrlicht-1.8.4/include/SMeshBuffer.h - and https://github.com/shadowEpitech/indie-studio/blob/768d19aa4e17bae6bd8401de6e32869c36f89f1e/irrlicht-1.8.4/include/irrlicht.h diff --git a/src/licensedcode/data/rules/zlib_and_mit_1.RULE b/src/licensedcode/data/rules/zlib_and_mit_1.RULE index 3557dfa7c0e..cfca3ba55ed 100644 --- a/src/licensedcode/data/rules/zlib_and_mit_1.RULE +++ b/src/licensedcode/data/rules/zlib_and_mit_1.RULE @@ -1,2 +1,10 @@ +--- +license_expression: zlib AND mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This port is under zlib license (see below) with contribution and addition of javascript port under expat license (see LICENSE at root of project) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_and_mit_1.yml b/src/licensedcode/data/rules/zlib_and_mit_1.yml deleted file mode 100644 index 8779ec1d165..00000000000 --- a/src/licensedcode/data/rules/zlib_and_mit_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib AND mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/src/licensedcode/data/rules/zlib_blast.RULE b/src/licensedcode/data/rules/zlib_blast.RULE index 400a0523171..87f21264fcf 100644 --- a/src/licensedcode/data/rules/zlib_blast.RULE +++ b/src/licensedcode/data/rules/zlib_blast.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - blast.h +--- + For conditions of distribution and use, see copyright notice in blast.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_blast.yml b/src/licensedcode/data/rules/zlib_blast.yml deleted file mode 100644 index f7b3a79738d..00000000000 --- a/src/licensedcode/data/rules/zlib_blast.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - blast.h diff --git a/src/licensedcode/data/rules/zlib_nuget_url_1.RULE b/src/licensedcode/data/rules/zlib_nuget_url_1.RULE index 151b77523a7..b986a0fa12c 100644 --- a/src/licensedcode/data/rules/zlib_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/zlib_nuget_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 90 +ignorable_urls: + - https://github.com/takeshik/ElementalAnnotations/blob/master/LICENSE.txt +--- + https://github.com/takeshik/ElementalAnnotations/blob/master/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_nuget_url_1.yml b/src/licensedcode/data/rules/zlib_nuget_url_1.yml deleted file mode 100644 index e3b6dba76af..00000000000 --- a/src/licensedcode/data/rules/zlib_nuget_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 90 -ignorable_urls: - - https://github.com/takeshik/ElementalAnnotations/blob/master/LICENSE.txt diff --git a/src/licensedcode/data/rules/zlib_or_mit_or_apache-2.0_1.RULE b/src/licensedcode/data/rules/zlib_or_mit_or_apache-2.0_1.RULE index cc80f1afaa9..15139cf803a 100644 --- a/src/licensedcode/data/rules/zlib_or_mit_or_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/zlib_or_mit_or_apache-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: zlib OR mit OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + Openly licensed under [Zlib / MIT / Apache 2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_or_mit_or_apache-2.0_1.yml b/src/licensedcode/data/rules/zlib_or_mit_or_apache-2.0_1.yml deleted file mode 100644 index 52167f236d8..00000000000 --- a/src/licensedcode/data/rules/zlib_or_mit_or_apache-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zlib OR mit OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zlib_ref.RULE b/src/licensedcode/data/rules/zlib_ref.RULE index 1d41920f34e..c35e854fad2 100644 --- a/src/licensedcode/data/rules/zlib_ref.RULE +++ b/src/licensedcode/data/rules/zlib_ref.RULE @@ -1 +1,10 @@ -For conditions of distribution and use, see copyright notice in fiber.h +--- +license_expression: zlib +is_license_reference: yes +relevance: 99 +minimum_coverage: 100 +referenced_filenames: + - fiber.h +--- + +For conditions of distribution and use, see copyright notice in fiber.h \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_ref.yml b/src/licensedcode/data/rules/zlib_ref.yml deleted file mode 100644 index 0e4e3c97e50..00000000000 --- a/src/licensedcode/data/rules/zlib_ref.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 99 -minimum_coverage: 100 -referenced_filenames: - - fiber.h diff --git a/src/licensedcode/data/rules/zlib_url_1.RULE b/src/licensedcode/data/rules/zlib_url_1.RULE index 4e24057ee34..ff36ec5fd3f 100644 --- a/src/licensedcode/data/rules/zlib_url_1.RULE +++ b/src/licensedcode/data/rules/zlib_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zlib +--- + https://spdx.org/licenses/zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_url_1.yml b/src/licensedcode/data/rules/zlib_url_1.yml deleted file mode 100644 index 34b86e887f0..00000000000 --- a/src/licensedcode/data/rules/zlib_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zlib diff --git a/src/licensedcode/data/rules/zlib_url_2.RULE b/src/licensedcode/data/rules/zlib_url_2.RULE index a6e12376e8e..56337703459 100644 --- a/src/licensedcode/data/rules/zlib_url_2.RULE +++ b/src/licensedcode/data/rules/zlib_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zlib.html +--- + https://spdx.org/licenses/zlib.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_url_2.yml b/src/licensedcode/data/rules/zlib_url_2.yml deleted file mode 100644 index 68d4be33ae8..00000000000 --- a/src/licensedcode/data/rules/zlib_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zlib.html diff --git a/src/licensedcode/data/rules/zlib_url_badge.RULE b/src/licensedcode/data/rules/zlib_url_badge.RULE index defcaf63847..f44b004c3da 100644 --- a/src/licensedcode/data/rules/zlib_url_badge.RULE +++ b/src/licensedcode/data/rules/zlib_url_badge.RULE @@ -1 +1,10 @@ +--- +license_expression: zlib +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://img.shields.io/badge/License-Zlib-lightgrey.svg + - https://opensource.org/licenses/Zlib +--- + [![License: Zlib](https://img.shields.io/badge/License-Zlib-lightgrey.svg)](https://opensource.org/licenses/Zlib) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_url_badge.yml b/src/licensedcode/data/rules/zlib_url_badge.yml deleted file mode 100644 index 52bbaac1c40..00000000000 --- a/src/licensedcode/data/rules/zlib_url_badge.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zlib -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://img.shields.io/badge/License-Zlib-lightgrey.svg - - https://opensource.org/licenses/Zlib diff --git a/src/licensedcode/data/rules/zlib_variant.RULE b/src/licensedcode/data/rules/zlib_variant.RULE index e7683e2b687..7e19cf6a9d9 100644 --- a/src/licensedcode/data/rules/zlib_variant.RULE +++ b/src/licensedcode/data/rules/zlib_variant.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zlib +is_license_text: yes +--- + * This software is provided 'as-is', without any express or implied * warranty. In no event will the author be held liable for any damages * arising from the use of this software. @@ -12,5 +17,4 @@ * appreciated but is not required. * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. - * 3. This notice may not be removed or altered from any source distribution. - \ No newline at end of file + * 3. This notice may not be removed or altered from any source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_variant.yml b/src/licensedcode/data/rules/zlib_variant.yml deleted file mode 100644 index acf6bb73ac5..00000000000 --- a/src/licensedcode/data/rules/zlib_variant.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zlib -is_license_text: yes diff --git a/src/licensedcode/data/rules/zpl-1.0_1.RULE b/src/licensedcode/data/rules/zpl-1.0_1.RULE index f29756d02eb..2b1b916f70a 100644 --- a/src/licensedcode/data/rules/zpl-1.0_1.RULE +++ b/src/licensedcode/data/rules/zpl-1.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-1.0 +is_license_notice: yes +relevance: 100 +--- + # This software is released under the Zope Public License (ZPL) Version 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.0_1.yml b/src/licensedcode/data/rules/zpl-1.0_1.yml deleted file mode 100644 index fa44bee19fc..00000000000 --- a/src/licensedcode/data/rules/zpl-1.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-1.0 -is_license_notice: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-1.1.SPDX.RULE b/src/licensedcode/data/rules/zpl-1.1.SPDX.RULE index fa54ee7e805..e3aef58cf84 100644 --- a/src/licensedcode/data/rules/zpl-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/zpl-1.1.SPDX.RULE @@ -1,3 +1,18 @@ +--- +license_expression: zpl-1.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) Zope Corporation +ignorable_holders: + - Zope Corporation +ignorable_authors: + - Zope Corporation +ignorable_urls: + - http://www.zope.com/ +--- + Zope Public License (ZPL) Version 1.1 Copyright (c) Zope Corporation. All rights reserved. diff --git a/src/licensedcode/data/rules/zpl-1.1.SPDX.yml b/src/licensedcode/data/rules/zpl-1.1.SPDX.yml deleted file mode 100644 index 55afedea307..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1.SPDX.yml +++ /dev/null @@ -1,12 +0,0 @@ -license_expression: zpl-1.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) Zope Corporation -ignorable_holders: - - Zope Corporation -ignorable_authors: - - Zope Corporation -ignorable_urls: - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/zpl-1.1_1.RULE b/src/licensedcode/data/rules/zpl-1.1_1.RULE index ad9a5505c63..90d8a5c58e1 100644 --- a/src/licensedcode/data/rules/zpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zope.org/Resources/License/ZPL-1.1 +--- + http://www.zope.org/Resources/License/ZPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_1.yml b/src/licensedcode/data/rules/zpl-1.1_1.yml deleted file mode 100644 index b3f62f2b76d..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zope.org/Resources/License/ZPL-1.1 diff --git a/src/licensedcode/data/rules/zpl-1.1_10.RULE b/src/licensedcode/data/rules/zpl-1.1_10.RULE index 184148ea05f..4d4a8697065 100644 --- a/src/licensedcode/data/rules/zpl-1.1_10.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_10.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ZPL-1.1 +--- + https://licenses.nuget.org/ZPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_10.yml b/src/licensedcode/data/rules/zpl-1.1_10.yml deleted file mode 100644 index 53abbaa6954..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_10.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ZPL-1.1 diff --git a/src/licensedcode/data/rules/zpl-1.1_11.RULE b/src/licensedcode/data/rules/zpl-1.1_11.RULE index 2c73ee2ddc2..0bedaac7161 100644 --- a/src/licensedcode/data/rules/zpl-1.1_11.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_11.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ZPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_11.yml b/src/licensedcode/data/rules/zpl-1.1_11.yml deleted file mode 100644 index 0be0a13d534..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_11.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-1.1_12.RULE b/src/licensedcode/data/rules/zpl-1.1_12.RULE index 002ba40c80f..b4ad8b830fa 100644 --- a/src/licensedcode/data/rules/zpl-1.1_12.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_12.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ZPL-1.1 +--- + LICENSE {{ZPL-1.1}} https://spdx.org/licenses/ZPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_12.yml b/src/licensedcode/data/rules/zpl-1.1_12.yml deleted file mode 100644 index df6c5c1ca3d..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_12.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ZPL-1.1 diff --git a/src/licensedcode/data/rules/zpl-1.1_13.RULE b/src/licensedcode/data/rules/zpl-1.1_13.RULE index e6d4cf3178b..72b14c9a054 100644 --- a/src/licensedcode/data/rules/zpl-1.1_13.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_13.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ZPL-1.1 +--- + {{ZPL-1.1}} https://spdx.org/licenses/ZPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_13.yml b/src/licensedcode/data/rules/zpl-1.1_13.yml deleted file mode 100644 index df6c5c1ca3d..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ZPL-1.1 diff --git a/src/licensedcode/data/rules/zpl-1.1_2.RULE b/src/licensedcode/data/rules/zpl-1.1_2.RULE index 76fe842468d..f3f7d8f6d0a 100644 --- a/src/licensedcode/data/rules/zpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_2.RULE @@ -1,3 +1,13 @@ +--- +license_expression: zpl-1.1 +is_license_text: yes +ignorable_authors: + - Zope Corporation + - permission from Zope Corporation +ignorable_urls: + - http://www.zope.com/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions in source code must retain the above copyright notice, this list of conditions, and the following disclaimer. diff --git a/src/licensedcode/data/rules/zpl-1.1_2.yml b/src/licensedcode/data/rules/zpl-1.1_2.yml deleted file mode 100644 index f1555d981bf..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_2.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: zpl-1.1 -is_license_text: yes -ignorable_authors: - - Zope Corporation - - permission from Zope Corporation -ignorable_urls: - - http://www.zope.com/ diff --git a/src/licensedcode/data/rules/zpl-1.1_3.RULE b/src/licensedcode/data/rules/zpl-1.1_3.RULE index 0ee57bf6d56..e7e1931cd04 100644 --- a/src/licensedcode/data/rules/zpl-1.1_3.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_3.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Zope Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_3.yml b/src/licensedcode/data/rules/zpl-1.1_3.yml deleted file mode 100644 index e683f251432..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_3.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-1.1_4.RULE b/src/licensedcode/data/rules/zpl-1.1_4.RULE index e644dcd2dc6..20f158f8474 100644 --- a/src/licensedcode/data/rules/zpl-1.1_4.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +relevance: 100 +--- + Zope Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_4.yml b/src/licensedcode/data/rules/zpl-1.1_4.yml deleted file mode 100644 index 0be0a13d534..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-1.1_5.RULE b/src/licensedcode/data/rules/zpl-1.1_5.RULE index 2c906b2a910..4b5aff93f59 100644 --- a/src/licensedcode/data/rules/zpl-1.1_5.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_5.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ZPL-1.1 Zope Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_5.yml b/src/licensedcode/data/rules/zpl-1.1_5.yml deleted file mode 100644 index e683f251432..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_5.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-1.1_6.RULE b/src/licensedcode/data/rules/zpl-1.1_6.RULE index 35868d67fc1..cd5987984bf 100644 --- a/src/licensedcode/data/rules/zpl-1.1_6.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_6.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zope Public License 1.1 ZPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_6.yml b/src/licensedcode/data/rules/zpl-1.1_6.yml deleted file mode 100644 index e683f251432..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_6.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-1.1_7.RULE b/src/licensedcode/data/rules/zpl-1.1_7.RULE index f404874d8c3..af350695a7d 100644 --- a/src/licensedcode/data/rules/zpl-1.1_7.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_7.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ZPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_7.yml b/src/licensedcode/data/rules/zpl-1.1_7.yml deleted file mode 100644 index 93c44c6f36b..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-1.1_8.RULE b/src/licensedcode/data/rules/zpl-1.1_8.RULE index 2ec834e537c..dc5a27d0708 100644 --- a/src/licensedcode/data/rules/zpl-1.1_8.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_8.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zope Public License 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_8.yml b/src/licensedcode/data/rules/zpl-1.1_8.yml deleted file mode 100644 index 93c44c6f36b..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-1.1_9.RULE b/src/licensedcode/data/rules/zpl-1.1_9.RULE index 2b0e2414b7e..91658146494 100644 --- a/src/licensedcode/data/rules/zpl-1.1_9.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_9.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-1.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ZPL-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_9.yml b/src/licensedcode/data/rules/zpl-1.1_9.yml deleted file mode 100644 index 93c44c6f36b..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-1.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-1.1_and_other-permissive_1.RULE b/src/licensedcode/data/rules/zpl-1.1_and_other-permissive_1.RULE index 01828efd6a6..e3ecf34ff25 100644 --- a/src/licensedcode/data/rules/zpl-1.1_and_other-permissive_1.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_and_other-permissive_1.RULE @@ -1,3 +1,13 @@ +--- +license_expression: zpl-1.1 AND other-permissive +is_license_text: yes +notes: this is a rare instance of a modified zpl and related terms +ignorable_authors: + - Digital Creations +ignorable_urls: + - http://www.zope.org/ +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -62,4 +72,4 @@ IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. IN ADDITION TO THE ABOVE, POINTONE SPECIFICALLY DISCLAIMS ALL WARRANTIES -OF NONINFRINGEMENT, EXPRESS OR IMPLIED. +OF NONINFRINGEMENT, EXPRESS OR IMPLIED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_and_other-permissive_1.yml b/src/licensedcode/data/rules/zpl-1.1_and_other-permissive_1.yml deleted file mode 100644 index 53d77f5d45b..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_and_other-permissive_1.yml +++ /dev/null @@ -1,7 +0,0 @@ -license_expression: zpl-1.1 AND other-permissive -is_license_text: yes -notes: this is a rare instance of a modified zpl and related terms -ignorable_authors: - - Digital Creations -ignorable_urls: - - http://www.zope.org/ diff --git a/src/licensedcode/data/rules/zpl-1.1_url_1.RULE b/src/licensedcode/data/rules/zpl-1.1_url_1.RULE index a2ab321d87e..bbf534a21f5 100644 --- a/src/licensedcode/data/rules/zpl-1.1_url_1.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zpl-1.1 +--- + https://spdx.org/licenses/zpl-1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_url_1.yml b/src/licensedcode/data/rules/zpl-1.1_url_1.yml deleted file mode 100644 index 4d5f01fe937..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zpl-1.1 diff --git a/src/licensedcode/data/rules/zpl-1.1_url_2.RULE b/src/licensedcode/data/rules/zpl-1.1_url_2.RULE index bc3407ff50b..12e8ea1f8cb 100644 --- a/src/licensedcode/data/rules/zpl-1.1_url_2.RULE +++ b/src/licensedcode/data/rules/zpl-1.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-1.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zpl-1.1.html +--- + https://spdx.org/licenses/zpl-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-1.1_url_2.yml b/src/licensedcode/data/rules/zpl-1.1_url_2.yml deleted file mode 100644 index 973a50fe2bd..00000000000 --- a/src/licensedcode/data/rules/zpl-1.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-1.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zpl-1.1.html diff --git a/src/licensedcode/data/rules/zpl-2.0.RULE b/src/licensedcode/data/rules/zpl-2.0.RULE index beb4e4b7548..b290001df3e 100644 --- a/src/licensedcode/data/rules/zpl-2.0.RULE +++ b/src/licensedcode/data/rules/zpl-2.0.RULE @@ -1,2 +1,9 @@ - http://www.zope.org/Resources/License/ZPL-2.0 - \ No newline at end of file +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zope.org/Resources/License/ZPL-2.0 +--- + + http://www.zope.org/Resources/License/ZPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0.SPDX.RULE b/src/licensedcode/data/rules/zpl-2.0.SPDX.RULE index 5582f08b899..2c4b81c2d71 100644 --- a/src/licensedcode/data/rules/zpl-2.0.SPDX.RULE +++ b/src/licensedcode/data/rules/zpl-2.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: zpl-2.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) Zope Corporation (tm) and Contributors +ignorable_holders: + - Zope Corporation (tm) and Contributors +ignorable_urls: + - http://www.zope.com/Marks +--- + Zope Public License (ZPL) Version 2.0 ----------------------------------------------- diff --git a/src/licensedcode/data/rules/zpl-2.0.SPDX.yml b/src/licensedcode/data/rules/zpl-2.0.SPDX.yml deleted file mode 100644 index f95164af4a8..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: zpl-2.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) Zope Corporation (tm) and Contributors -ignorable_holders: - - Zope Corporation (tm) and Contributors -ignorable_urls: - - http://www.zope.com/Marks diff --git a/src/licensedcode/data/rules/zpl-2.0.yml b/src/licensedcode/data/rules/zpl-2.0.yml deleted file mode 100644 index abc1ff1b4e2..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zope.org/Resources/License/ZPL-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_1.RULE b/src/licensedcode/data/rules/zpl-2.0_1.RULE index 6201bab3eba..748dd3143c4 100644 --- a/src/licensedcode/data/rules/zpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_1.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +--- + Zope Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_1.yml b/src/licensedcode/data/rules/zpl-2.0_1.yml deleted file mode 100644 index b9f1d344bc5..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-2.0_10.RULE b/src/licensedcode/data/rules/zpl-2.0_10.RULE index e7d59f2a3a5..28418b48d40 100644 --- a/src/licensedcode/data/rules/zpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_10.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ZPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_10.yml b/src/licensedcode/data/rules/zpl-2.0_10.yml deleted file mode 100644 index 6ec9a7843c5..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_10.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.0_11.RULE b/src/licensedcode/data/rules/zpl-2.0_11.RULE index 9efb2d29d45..19cbcc76a7c 100644 --- a/src/licensedcode/data/rules/zpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_11.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zope Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_11.yml b/src/licensedcode/data/rules/zpl-2.0_11.yml deleted file mode 100644 index 6ec9a7843c5..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.0_12.RULE b/src/licensedcode/data/rules/zpl-2.0_12.RULE index 84a7da630e3..ddbb1ce40b2 100644 --- a/src/licensedcode/data/rules/zpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_12.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.0 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ZPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_12.yml b/src/licensedcode/data/rules/zpl-2.0_12.yml deleted file mode 100644 index 6ec9a7843c5..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.0 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.0_13.RULE b/src/licensedcode/data/rules/zpl-2.0_13.RULE index 8f2f5143c16..a97d783a5ea 100644 --- a/src/licensedcode/data/rules/zpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_13.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ZPL-2.0 +--- + https://licenses.nuget.org/ZPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_13.yml b/src/licensedcode/data/rules/zpl-2.0_13.yml deleted file mode 100644 index fe7bbec546c..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_13.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ZPL-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_14.RULE b/src/licensedcode/data/rules/zpl-2.0_14.RULE index cbd130f1105..6ae23984f91 100644 --- a/src/licensedcode/data/rules/zpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_14.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ZPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_14.yml b/src/licensedcode/data/rules/zpl-2.0_14.yml deleted file mode 100644 index b9f1d344bc5..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_14.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-2.0_15.RULE b/src/licensedcode/data/rules/zpl-2.0_15.RULE index a2b1051abe9..7cc08092a6c 100644 --- a/src/licensedcode/data/rules/zpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_15.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ZPL-2.0 +--- + LICENSE {{ZPL-2.0}} https://spdx.org/licenses/ZPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_15.yml b/src/licensedcode/data/rules/zpl-2.0_15.yml deleted file mode 100644 index 0cc378ad7ca..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_15.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ZPL-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_16.RULE b/src/licensedcode/data/rules/zpl-2.0_16.RULE index a44e7e0928a..bd2e09795e7 100644 --- a/src/licensedcode/data/rules/zpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_16.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ZPL-2.0 +--- + {{ZPL-2.0}} https://spdx.org/licenses/ZPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_16.yml b/src/licensedcode/data/rules/zpl-2.0_16.yml deleted file mode 100644 index 0cc378ad7ca..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_16.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ZPL-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_2.RULE b/src/licensedcode/data/rules/zpl-2.0_2.RULE index 63b3bc132e5..57be40d8750 100644 --- a/src/licensedcode/data/rules/zpl-2.0_2.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/ZPL-2.0 +--- + `ZPL-2.0` - [Zope Public License 2.0](http://opensource.org/licenses/ZPL-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_2.yml b/src/licensedcode/data/rules/zpl-2.0_2.yml deleted file mode 100644 index 8dfc7003d50..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/ZPL-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_3.RULE b/src/licensedcode/data/rules/zpl-2.0_3.RULE index c0f4dee6067..b4933040bb0 100644 --- a/src/licensedcode/data/rules/zpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_3.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://opensource.org/licenses/zpl-2.0 +--- + https://opensource.org/licenses/zpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_3.yml b/src/licensedcode/data/rules/zpl-2.0_3.yml deleted file mode 100644 index e023e617642..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://opensource.org/licenses/zpl-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_4.RULE b/src/licensedcode/data/rules/zpl-2.0_4.RULE index e520de26166..d2e8f3893d7 100644 --- a/src/licensedcode/data/rules/zpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_4.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +--- + ://opensource.org/licenses/zpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_4.yml b/src/licensedcode/data/rules/zpl-2.0_4.yml deleted file mode 100644 index b9f1d344bc5..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-2.0_5.RULE b/src/licensedcode/data/rules/zpl-2.0_5.RULE index 6823ef0afed..58400a1b0c1 100644 --- a/src/licensedcode/data/rules/zpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_5.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://www.opensource.org/licenses/zpl-2.0 +--- + https://www.opensource.org/licenses/zpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_5.yml b/src/licensedcode/data/rules/zpl-2.0_5.yml deleted file mode 100644 index 6f09f44a5c8..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_5.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://www.opensource.org/licenses/zpl-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_6.RULE b/src/licensedcode/data/rules/zpl-2.0_6.RULE index b5fe97bc3ac..1446dd4d9f9 100644 --- a/src/licensedcode/data/rules/zpl-2.0_6.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_6.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.opensource.org/licenses/zpl-2.0 +--- + ://www.opensource.org/licenses/zpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_6.yml b/src/licensedcode/data/rules/zpl-2.0_6.yml deleted file mode 100644 index de082211bb6..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_6.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.opensource.org/licenses/zpl-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_7.RULE b/src/licensedcode/data/rules/zpl-2.0_7.RULE index bbf25776362..52993374db8 100644 --- a/src/licensedcode/data/rules/zpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_7.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Zope Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_7.yml b/src/licensedcode/data/rules/zpl-2.0_7.yml deleted file mode 100644 index 6fb5aeba0a7..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_7.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.0_8.RULE b/src/licensedcode/data/rules/zpl-2.0_8.RULE index e69adc2267e..37d37d2a75e 100644 --- a/src/licensedcode/data/rules/zpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_8.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ZPL-2.0 Zope Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_8.yml b/src/licensedcode/data/rules/zpl-2.0_8.yml deleted file mode 100644 index 6fb5aeba0a7..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_8.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.0_9.RULE b/src/licensedcode/data/rules/zpl-2.0_9.RULE index 74f2bd7e201..b785f5f3591 100644 --- a/src/licensedcode/data/rules/zpl-2.0_9.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_9.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zope Public License 2.0 ZPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_9.yml b/src/licensedcode/data/rules/zpl-2.0_9.yml deleted file mode 100644 index 6fb5aeba0a7..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_9.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.0_url_1.RULE b/src/licensedcode/data/rules/zpl-2.0_url_1.RULE index 2566f4acae7..e59dac6da54 100644 --- a/src/licensedcode/data/rules/zpl-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zpl-2.0 +--- + https://spdx.org/licenses/zpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_url_1.yml b/src/licensedcode/data/rules/zpl-2.0_url_1.yml deleted file mode 100644 index a1ab9847df9..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zpl-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.0_url_2.RULE b/src/licensedcode/data/rules/zpl-2.0_url_2.RULE index ec9e98e7847..a3f0eee0544 100644 --- a/src/licensedcode/data/rules/zpl-2.0_url_2.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zpl-2.0.html +--- + https://spdx.org/licenses/zpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_url_2.yml b/src/licensedcode/data/rules/zpl-2.0_url_2.yml deleted file mode 100644 index 7eeace07dba..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zpl-2.0.html diff --git a/src/licensedcode/data/rules/zpl-2.0_url_glc_114.RULE b/src/licensedcode/data/rules/zpl-2.0_url_glc_114.RULE index 4cef68dada5..464e8b39684 100644 --- a/src/licensedcode/data/rules/zpl-2.0_url_glc_114.RULE +++ b/src/licensedcode/data/rules/zpl-2.0_url_glc_114.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.0 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/zpl-2.0 +--- + http://opensource.org/licenses/zpl-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.0_url_glc_114.yml b/src/licensedcode/data/rules/zpl-2.0_url_glc_114.yml deleted file mode 100644 index d7ac0dbd2fe..00000000000 --- a/src/licensedcode/data/rules/zpl-2.0_url_glc_114.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.0 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/zpl-2.0 diff --git a/src/licensedcode/data/rules/zpl-2.1.RULE b/src/licensedcode/data/rules/zpl-2.1.RULE index 456283b67af..8f2769e7d52 100644 --- a/src/licensedcode/data/rules/zpl-2.1.RULE +++ b/src/licensedcode/data/rules/zpl-2.1.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zpl-2.1 +is_license_notice: yes +--- + # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED diff --git a/src/licensedcode/data/rules/zpl-2.1.SPDX.RULE b/src/licensedcode/data/rules/zpl-2.1.SPDX.RULE index 0ac9c410a61..37a71803df5 100644 --- a/src/licensedcode/data/rules/zpl-2.1.SPDX.RULE +++ b/src/licensedcode/data/rules/zpl-2.1.SPDX.RULE @@ -1,3 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +--- + ZPL 2.1 Zope Public License (ZPL) Version 2.1 diff --git a/src/licensedcode/data/rules/zpl-2.1.SPDX.yml b/src/licensedcode/data/rules/zpl-2.1.SPDX.yml deleted file mode 100644 index 27a466bc324..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1.SPDX.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: zpl-2.1 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX diff --git a/src/licensedcode/data/rules/zpl-2.1.yml b/src/licensedcode/data/rules/zpl-2.1.yml deleted file mode 100644 index e01136de94a..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zpl-2.1 -is_license_notice: yes diff --git a/src/licensedcode/data/rules/zpl-2.1_1.RULE b/src/licensedcode/data/rules/zpl-2.1_1.RULE index 43ee33298bc..74b652690ee 100644 --- a/src/licensedcode/data/rules/zpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_1.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Zope Public License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_1.yml b/src/licensedcode/data/rules/zpl-2.1_1.yml deleted file mode 100644 index 628f2aa896c..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-2.1_10.RULE b/src/licensedcode/data/rules/zpl-2.1_10.RULE index 5ebac3c9428..7397fbc0b03 100644 --- a/src/licensedcode/data/rules/zpl-2.1_10.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_10.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +--- + Zope Public License 2.1 (BSD Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_10.yml b/src/licensedcode/data/rules/zpl-2.1_10.yml deleted file mode 100644 index 628f2aa896c..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-2.1_11.RULE b/src/licensedcode/data/rules/zpl-2.1_11.RULE index 8ad7cc1c7fa..3fce0a7e436 100644 --- a/src/licensedcode/data/rules/zpl-2.1_11.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_11.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + name: Zope Public License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_11.yml b/src/licensedcode/data/rules/zpl-2.1_11.yml deleted file mode 100644 index fe2e900b9df..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_11.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.1_12.RULE b/src/licensedcode/data/rules/zpl-2.1_12.RULE index f9c66d6ca02..e12a3256aac 100644 --- a/src/licensedcode/data/rules/zpl-2.1_12.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_12.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + ZPL-2.1 Zope Public License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_12.yml b/src/licensedcode/data/rules/zpl-2.1_12.yml deleted file mode 100644 index fe2e900b9df..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_12.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.1_13.RULE b/src/licensedcode/data/rules/zpl-2.1_13.RULE index d0be1377900..5ac42572792 100644 --- a/src/licensedcode/data/rules/zpl-2.1_13.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_13.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + Zope Public License 2.1 ZPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_13.yml b/src/licensedcode/data/rules/zpl-2.1_13.yml deleted file mode 100644 index fe2e900b9df..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_13.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.1_14.RULE b/src/licensedcode/data/rules/zpl-2.1_14.RULE index 3eb5720f140..ab9d70a46d9 100644 --- a/src/licensedcode/data/rules/zpl-2.1_14.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_14.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: ZPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_14.yml b/src/licensedcode/data/rules/zpl-2.1_14.yml deleted file mode 100644 index c788d341bca..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_14.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.1_15.RULE b/src/licensedcode/data/rules/zpl-2.1_15.RULE index 0e0bbda0ae4..88f04883590 100644 --- a/src/licensedcode/data/rules/zpl-2.1_15.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_15.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + license: Zope Public License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_15.yml b/src/licensedcode/data/rules/zpl-2.1_15.yml deleted file mode 100644 index c788d341bca..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_15.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.1_16.RULE b/src/licensedcode/data/rules/zpl-2.1_16.RULE index ffe73d07b9d..f7bc3c6b66a 100644 --- a/src/licensedcode/data/rules/zpl-2.1_16.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_16.RULE @@ -1 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_tag: yes +is_continuous: yes +relevance: 100 +minimum_coverage: 100 +notes: Rule based on an SPDX license identifier and name +--- + licenseId: ZPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_16.yml b/src/licensedcode/data/rules/zpl-2.1_16.yml deleted file mode 100644 index c788d341bca..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_16.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: zpl-2.1 -is_license_tag: yes -is_continuous: yes -relevance: 100 -minimum_coverage: 100 -notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/zpl-2.1_17.RULE b/src/licensedcode/data/rules/zpl-2.1_17.RULE index ba5e26bfa08..2e2fd658904 100644 --- a/src/licensedcode/data/rules/zpl-2.1_17.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_17.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 99 +--- + wikipedia.org/wiki/Zope_Public_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_17.yml b/src/licensedcode/data/rules/zpl-2.1_17.yml deleted file mode 100644 index a67916a3d07..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_17.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/zpl-2.1_18.RULE b/src/licensedcode/data/rules/zpl-2.1_18.RULE index 79e5325b286..8860f563bad 100644 --- a/src/licensedcode/data/rules/zpl-2.1_18.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_18.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://licenses.nuget.org/ZPL-2.1 +--- + https://licenses.nuget.org/ZPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_18.yml b/src/licensedcode/data/rules/zpl-2.1_18.yml deleted file mode 100644 index c36b1fd2784..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_18.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://licenses.nuget.org/ZPL-2.1 diff --git a/src/licensedcode/data/rules/zpl-2.1_19.RULE b/src/licensedcode/data/rules/zpl-2.1_19.RULE index 606082d0415..4be6d7bf06e 100644 --- a/src/licensedcode/data/rules/zpl-2.1_19.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_19.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +--- + licenses.nuget.org/ZPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_19.yml b/src/licensedcode/data/rules/zpl-2.1_19.yml deleted file mode 100644 index 628f2aa896c..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_19.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-2.1_2.RULE b/src/licensedcode/data/rules/zpl-2.1_2.RULE index 58a9d9b4abb..d0f82c4251f 100644 --- a/src/licensedcode/data/rules/zpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zope.org/Resources/License/ZPL-2.1 +--- + http://www.zope.org/Resources/License/ZPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_2.yml b/src/licensedcode/data/rules/zpl-2.1_2.yml deleted file mode 100644 index b07107dbdbc..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zope.org/Resources/License/ZPL-2.1 diff --git a/src/licensedcode/data/rules/zpl-2.1_20.RULE b/src/licensedcode/data/rules/zpl-2.1_20.RULE index 43251a0a36e..7501f608868 100644 --- a/src/licensedcode/data/rules/zpl-2.1_20.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_20.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ZPL-2.1 +--- + {{ZPL-2.1}} https://spdx.org/licenses/ZPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_20.yml b/src/licensedcode/data/rules/zpl-2.1_20.yml deleted file mode 100644 index 15b2b22f175..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_20.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ZPL-2.1 diff --git a/src/licensedcode/data/rules/zpl-2.1_21.RULE b/src/licensedcode/data/rules/zpl-2.1_21.RULE index 9658c557a7d..83e831e0b6a 100644 --- a/src/licensedcode/data/rules/zpl-2.1_21.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_21.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/ZPL-2.1 +--- + LICENSE {{ZPL-2.1}} https://spdx.org/licenses/ZPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_21.yml b/src/licensedcode/data/rules/zpl-2.1_21.yml deleted file mode 100644 index 15b2b22f175..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_21.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - https://spdx.org/licenses/ZPL-2.1 diff --git a/src/licensedcode/data/rules/zpl-2.1_3.RULE b/src/licensedcode/data/rules/zpl-2.1_3.RULE index aa29988cf2f..a6282468b44 100644 --- a/src/licensedcode/data/rules/zpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_3.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zope.org/Resources/License/ +--- + http://www.zope.org/Resources/License/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_3.yml b/src/licensedcode/data/rules/zpl-2.1_3.yml deleted file mode 100644 index 7d093dcd4a3..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_3.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zope.org/Resources/License/ diff --git a/src/licensedcode/data/rules/zpl-2.1_4.RULE b/src/licensedcode/data/rules/zpl-2.1_4.RULE index cd865eb862c..f2fe3d1050f 100644 --- a/src/licensedcode/data/rules/zpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_4.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +--- + user the ZPL license as published on the Zope web site \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_4.yml b/src/licensedcode/data/rules/zpl-2.1_4.yml deleted file mode 100644 index 628f2aa896c..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_4.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zpl-2.1_5.RULE b/src/licensedcode/data/rules/zpl-2.1_5.RULE index beeb0bc95a8..aba454263f1 100644 --- a/src/licensedcode/data/rules/zpl-2.1_5.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_5.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zpl-2.1 +is_license_text: yes +--- + Some software in this distribution is released under the Zope Public License (as marked in its file header): diff --git a/src/licensedcode/data/rules/zpl-2.1_5.yml b/src/licensedcode/data/rules/zpl-2.1_5.yml deleted file mode 100644 index f71af048338..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zpl-2.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/zpl-2.1_6.RULE b/src/licensedcode/data/rules/zpl-2.1_6.RULE index 42fccfa5297..4191cd54cb1 100644 --- a/src/licensedcode/data/rules/zpl-2.1_6.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: zpl-2.1 +is_license_text: yes +--- + Zope Public License (ZPL) Version 2.1 A copyright notice accompanies this license document that identifies the copyright holders. diff --git a/src/licensedcode/data/rules/zpl-2.1_6.yml b/src/licensedcode/data/rules/zpl-2.1_6.yml deleted file mode 100644 index f71af048338..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: zpl-2.1 -is_license_text: yes diff --git a/src/licensedcode/data/rules/zpl-2.1_7.RULE b/src/licensedcode/data/rules/zpl-2.1_7.RULE index 065a56c071e..627c5187b10 100644 --- a/src/licensedcode/data/rules/zpl-2.1_7.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_7.RULE @@ -1,2 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zope.org/Resources/ZPL +--- + user the ZPL license as published on the Zope web site, http://www.zope.org/Resources/ZPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_7.yml b/src/licensedcode/data/rules/zpl-2.1_7.yml deleted file mode 100644 index 25367693b05..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_7.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zope.org/Resources/ZPL diff --git a/src/licensedcode/data/rules/zpl-2.1_8.RULE b/src/licensedcode/data/rules/zpl-2.1_8.RULE index 37c68fe0e4d..413446232b5 100644 --- a/src/licensedcode/data/rules/zpl-2.1_8.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_8.RULE @@ -1,2 +1,10 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 100 +ignorable_urls: + - http://www.zope.org/Resources/ZPL +--- + the ZPL license as published on the Zope web site, http://www.zope.org/Resources/ZPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_8.yml b/src/licensedcode/data/rules/zpl-2.1_8.yml deleted file mode 100644 index 25367693b05..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_8.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 100 -ignorable_urls: - - http://www.zope.org/Resources/ZPL diff --git a/src/licensedcode/data/rules/zpl-2.1_9.RULE b/src/licensedcode/data/rules/zpl-2.1_9.RULE index 7faeea238d0..15bf3d22854 100644 --- a/src/licensedcode/data/rules/zpl-2.1_9.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_9.RULE @@ -1 +1,7 @@ +--- +license_expression: zpl-2.1 +is_license_tag: yes +relevance: 99 +--- + Zope Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_9.yml b/src/licensedcode/data/rules/zpl-2.1_9.yml deleted file mode 100644 index 2f198c3289b..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_9.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zpl-2.1 -is_license_tag: yes -relevance: 99 diff --git a/src/licensedcode/data/rules/zpl-2.1_url_1.RULE b/src/licensedcode/data/rules/zpl-2.1_url_1.RULE index 9dee6283a17..17dfe0d18a7 100644 --- a/src/licensedcode/data/rules/zpl-2.1_url_1.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_url_1.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zpl-2.1 +--- + https://spdx.org/licenses/zpl-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_url_1.yml b/src/licensedcode/data/rules/zpl-2.1_url_1.yml deleted file mode 100644 index 2ea09f0b44d..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_url_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zpl-2.1 diff --git a/src/licensedcode/data/rules/zpl-2.1_url_2.RULE b/src/licensedcode/data/rules/zpl-2.1_url_2.RULE index 0c783cfe8ae..0d235a709ee 100644 --- a/src/licensedcode/data/rules/zpl-2.1_url_2.RULE +++ b/src/licensedcode/data/rules/zpl-2.1_url_2.RULE @@ -1 +1,9 @@ +--- +license_expression: zpl-2.1 +is_license_reference: yes +relevance: 95 +ignorable_urls: + - https://spdx.org/licenses/zpl-2.1.html +--- + https://spdx.org/licenses/zpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/zpl-2.1_url_2.yml b/src/licensedcode/data/rules/zpl-2.1_url_2.yml deleted file mode 100644 index 67f3e648bdd..00000000000 --- a/src/licensedcode/data/rules/zpl-2.1_url_2.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zpl-2.1 -is_license_reference: yes -relevance: 95 -ignorable_urls: - - https://spdx.org/licenses/zpl-2.1.html diff --git a/src/licensedcode/data/rules/zsh_1.RULE b/src/licensedcode/data/rules/zsh_1.RULE index 5b916996be8..1f93b145d75 100644 --- a/src/licensedcode/data/rules/zsh_1.RULE +++ b/src/licensedcode/data/rules/zsh_1.RULE @@ -1,3 +1,9 @@ +--- +license_expression: zsh +is_license_text: yes +relevance: 100 +--- + * Permission is hereby granted, without written agreement and without * license or royalty fees, to use, copy, modify, and distribute this * software and to distribute modified versions of this software for any diff --git a/src/licensedcode/data/rules/zsh_1.yml b/src/licensedcode/data/rules/zsh_1.yml deleted file mode 100644 index e8088da4b46..00000000000 --- a/src/licensedcode/data/rules/zsh_1.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: zsh -is_license_text: yes -relevance: 100 diff --git a/src/licensedcode/data/rules/zveno-research.RULE b/src/licensedcode/data/rules/zveno-research.RULE index 044150261a0..e17a9439379 100644 --- a/src/licensedcode/data/rules/zveno-research.RULE +++ b/src/licensedcode/data/rules/zveno-research.RULE @@ -1,3 +1,11 @@ +--- +license_expression: zveno-research +is_license_text: yes +notes: zveno-research +ignorable_urls: + - http://www.zveno.com/ +--- + http://www.zveno.com/ Zveno makes this software available free of charge for any purpose. diff --git a/src/licensedcode/data/rules/zveno-research.yml b/src/licensedcode/data/rules/zveno-research.yml deleted file mode 100644 index 3ec7c9f4a20..00000000000 --- a/src/licensedcode/data/rules/zveno-research.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: zveno-research -is_license_text: yes -notes: zveno-research -ignorable_urls: - - http://www.zveno.com/ diff --git a/src/licensedcode/frontmatter.py b/src/licensedcode/frontmatter.py new file mode 100644 index 00000000000..71efaa1f352 --- /dev/null +++ b/src/licensedcode/frontmatter.py @@ -0,0 +1,148 @@ +# -*- coding: utf-8 -*- + +""" +Python Frontmatter: Parse and manage posts with YAML frontmatter + +Based on and modified from ``python-frontmatter`` version 1.0.0. + +license: mit. See frontmatter.ABOUT file for details. +""" + + +import codecs +import saneyaml +import re + +from frontmatter import detect_format +from frontmatter import handlers +from frontmatter import Post as FrontmatterPost +from frontmatter.default_handlers import BaseHandler +from frontmatter.util import u + +from licensedcode.tokenize import query_lines + + + +class SaneYAMLHandler(BaseHandler): + """ + Load and export YAML metadata. . + + This is similar to the frontmatter.default_handlers.YAMLHandler but + is using nexB/saneyaml instead of pyyaml. + """ + FM_BOUNDARY = re.compile(r"^-{3,}\s*$", re.MULTILINE) + START_DELIMITER = END_DELIMITER = "---" + + def load(self, fm, **kwargs): + """ + Parse YAML front matter. + """ + return saneyaml.load(fm, allow_duplicate_keys=False, **kwargs) + + def export(self, metadata, **kwargs): + """ + Export metadata as YAML. + """ + metadata = saneyaml.dump(metadata, indent=4, encoding='utf-8', **kwargs).strip() + return u(metadata) # ensure unicode + + +def get_rule_text(location=None, text=None): + """ + Return the rule ``text`` prepared for indexing. + ############### + # IMPORTANT: we use the same process as used to load query text for symmetry + ############### + """ + numbered_lines = query_lines(location=location, query_string=text, plain_text=True) + return '\n'.join(l.strip() for _, l in numbered_lines) + + +def parse_frontmatter(text, encoding="utf-8", handler=None, **defaults): + """ + Parse text with frontmatter, return metadata and content. + Pass in optional metadata defaults as keyword args. + + If frontmatter is not found, returns an empty metadata dictionary + (or defaults) and original text content. + + This is similar to the frontmatter.parse but is using `get_rule_text` + to use the same process as loading quary text for symmetry. + """ + # ensure unicode first + text = u(text, encoding).strip() + + # metadata starts with defaults + metadata = defaults.copy() + + # this will only run if a handler hasn't been set higher up + handler = handler or detect_format(text, handlers) + if handler is None: + return metadata, text + + # split on the delimiters + try: + fm, content = handler.split(text) + except ValueError: + # if we can't split, bail + return metadata, text + + # parse, now that we have frontmatter + fm = handler.load(fm) + if isinstance(fm, dict): + metadata.update(fm) + + text = get_rule_text(text=content) + + return metadata, text + + +def loads_frontmatter(text, encoding="utf-8", handler=None, **defaults): + """ + Parse text (binary or unicode) and return a :py:class:`post `. + + This is similar to the frontmatter.loads but is using the `parse` + function defined above. + """ + text = u(text, encoding) + handler = handler or detect_format(text, handlers) + metadata, content = parse_frontmatter(text, encoding, handler, **defaults) + return FrontmatterPost(content, handler, **metadata) + + +def load_frontmatter(fd, encoding="utf-8", handler=None, **defaults): + """ + Load and parse a file-like object or filename, + return a :py:class:`post `. + + This is similar to the frontmatter.load but is using the `loads` + function defined above. + """ + if hasattr(fd, "read"): + text = fd.read() + + else: + with codecs.open(fd, "r", encoding) as f: + text = f.read() + + handler = handler or detect_format(text, handlers) + return loads_frontmatter(text, encoding, handler, **defaults) + + +def dumps_frontmatter(post, handler=None, **kwargs): + """ + Serialize a :py:class:`post ` to a string and return text. + This always returns unicode text, which can then be encoded. + + Passing ``handler`` will change how metadata is turned into text. A handler + passed as an argument will override ``post.handler``, with + :py:class:`SaneYAMLHandler ` used as + a default. + + This is similar to the frontmatter.dumps but is using the `SaneYAMLHandler` + defined above as default instead of frontmatter.default_handlers.YAMLHandler. + """ + if handler is None: + handler = getattr(post, "handler", None) or SaneYAMLHandler() + + return handler.format(post, **kwargs) diff --git a/src/licensedcode/frontmatter.py.ABOUT b/src/licensedcode/frontmatter.py.ABOUT new file mode 100644 index 00000000000..b69b790f39c --- /dev/null +++ b/src/licensedcode/frontmatter.py.ABOUT @@ -0,0 +1,19 @@ +about_resource: frontmatter.py +name: python-frontmatter +version: 1.0.0 +download_url: https://files.pythonhosted.org/packages/dd/17/0614eb78820bd9243ffd1f57c8bd4a86debd644f5a2cef720e07309d307a/python-frontmatter-1.0.0.tar.gz +description: | + Parse and manage posts with YAML (or other) frontmatter + This is a small package to load and parse files (or just text) with YAML (or JSON, TOML or other) front matter. + [PyPI](https://img.shields.io/pypi/v/python-frontmatter.svg)](https://pypi.org/project/python-frontmatter/) + [Documentation](https://python-frontmatter.readthedocs.io/en/latest/)** +homepage_url: https://github.com/eyeseast/python-frontmatter +package_url: pkg:pypi/python-frontmatter@1.0.0 +license_expression: mit +attribute: yes +checksum_md5: 3718ee8fa3b0d4e5b262c9895ef44b81 +checksum_sha1: 60914691e82016a206347e1eb8ddd20174a818d1 +licenses: + - key: mit + name: MIT License + file: frontmatter.py.LICENSE diff --git a/src/licensedcode/frontmatter.py.LICENSE b/src/licensedcode/frontmatter.py.LICENSE new file mode 100644 index 00000000000..e662c786216 --- /dev/null +++ b/src/licensedcode/frontmatter.py.LICENSE @@ -0,0 +1,5 @@ +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/license_db.py b/src/licensedcode/license_db.py new file mode 100644 index 00000000000..b7699401c86 --- /dev/null +++ b/src/licensedcode/license_db.py @@ -0,0 +1,173 @@ +# SPDX-License-Identifier: CC-BY-4.0 AND Apache-2.0 +# +# https://github.com/nexB/scancode-licensedb +# Copyright 2020 nexB Inc. and others. +# ScanCode is a trademark of nexB Inc. +# +# ScanCode LicenseDB data is licensed under the Creative Commons Attribution +# License 4.0 (CC-BY-4.0). +# Some licenses, such as the GNU GENERAL PUBLIC LICENSE, are subject to other licenses. +# See the corresponding license text for the specific license conditions. +# +# ScanCode LicenseDB software is licensed under the Apache License version 2.0. +# You may not use this software except in compliance with the License. +# You may obtain a copy of the License at: http://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. +# +# ScanCode LicenseDB is generated with ScanCode Toolkit. The database and its contents +# are provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +# either express or implied. +# No content from ScanCode LicenseDB should be considered or used as legal advice. +# Consult an attorney for any legal advice. + +import os +import json +import pathlib +from datetime import datetime +from os.path import dirname +from os.path import join +from distutils.dir_util import copy_tree + + +import saneyaml +from jinja2 import Environment, FileSystemLoader +from licensedcode.models import load_licenses +from licensedcode.models import licenses_data_dir +from scancode_config import __version__ as scancode_version + + +TEMPLATES_DIR = os.path.join(dirname(__file__), 'templates') +STATIC_DIR = os.path.join(dirname(__file__), 'static') + + +def write_file(path, filename, content): + path.joinpath(filename).open("w").write(content) + + +def now(): + return datetime.now().strftime("%b %d, %Y") + + +base_context = { + "scancode_version": scancode_version, + "now": now(), +} + + +def generate_indexes(output_path, environment, licenses): + + static_dest_dir = join(output_path, 'static') + if not os.path.exists(static_dest_dir): + os.makedirs(static_dest_dir) + + copy_tree(STATIC_DIR, static_dest_dir) + + license_list_template = environment.get_template("license_list.html") + index_html = license_list_template.render( + **base_context, + licenses=licenses, + ) + write_file(output_path, "index.html", index_html) + + index = [ + { + "license_key": key, + "category": license.category, + "spdx_license_key": license.spdx_license_key, + "other_spdx_license_keys": license.other_spdx_license_keys, + "is_exception": license.is_exception, + "is_deprecated": license.is_deprecated, + "text": license.text, + "json": f"{key}.json", + "yaml": f"{key}.yml", + "html": f"{key}.html", + "license": f"{key}.LICENSE", + } + for key, license in licenses.items() + ] + + write_file( + output_path, + "index.json", + json.dumps(index, indent=2, sort_keys=False) + ) + write_file( + output_path, + "index.yml", + saneyaml.dump(index, indent=2) + ) + + +def generate_details(output_path, environment, licenses): + license_details_template = environment.get_template("license_details.html") + for license in licenses.values(): + license_data = license.to_dict(include_text=True) + html = license_details_template.render( + **base_context, + license=license, + license_data=license_data, + ) + write_file(output_path, f"{license.key}.html", html) + write_file( + output_path, + f"{license.key}.yml", + saneyaml.dump(license_data, indent=2) + ) + write_file( + output_path, + f"{license.key}.json", + json.dumps(license_data, indent=2, sort_keys=False) + ) + license.dump(output_path) + + +def generate_help(output_path, environment): + template = environment.get_template("help.html") + html = template.render(**base_context) + write_file(output_path, "help.html", html) + + +def generate( + build_location, + template_dir=TEMPLATES_DIR, + licenses_data_dir=licenses_data_dir +): + + if not os.path.exists(build_location): + os.makedirs(build_location) + + env = Environment( + loader=FileSystemLoader(template_dir), + autoescape=True, + ) + licenses = dict(sorted( + load_licenses(licenses_data_dir=licenses_data_dir, with_deprecated=True).items() + )) + + root_path = pathlib.Path(build_location) + root_path.mkdir(parents=False, exist_ok=True) + + generate_indexes(output_path=root_path, environment=env, licenses=licenses) + generate_details(output_path=root_path, environment=env, licenses=licenses) + generate_help(output_path=root_path, environment=env) + + +def dump_license_data(ctx, param, value): + """ + Dump license data from scancode licenses to the directory passed in from + command line. + + Dumps data in JSON, YAML and HTML formats and also dumps the .LICENSE file with + the license text and the data as YAML frontmatter. + """ + if not value or ctx.resilient_parsing: + return + + import click + click.echo('Dumping license data to the directory specified: ') + generate(build_location=value) + click.echo('Done.') + ctx.exit(0) diff --git a/src/licensedcode/models.py b/src/licensedcode/models.py index 0b6ca63407d..5c87540e229 100644 --- a/src/licensedcode/models.py +++ b/src/licensedcode/models.py @@ -10,7 +10,6 @@ import hashlib import io import os -import re import sys import traceback from collections import Counter @@ -25,7 +24,6 @@ from pathlib import Path import attr -import saneyaml from license_expression import ExpressionError from license_expression import Licensing @@ -35,6 +33,11 @@ from licensedcode import MIN_MATCH_HIGH_LENGTH from licensedcode import MIN_MATCH_LENGTH from licensedcode import SMALL_RULE +from licensedcode.frontmatter import SaneYAMLHandler +from licensedcode.frontmatter import FrontmatterPost +from licensedcode.frontmatter import dumps_frontmatter +from licensedcode.frontmatter import load_frontmatter +from licensedcode.frontmatter import get_rule_text from licensedcode.languages import LANG_INFO as known_languages from licensedcode.spans import Span from licensedcode.tokenize import index_tokenizer @@ -42,7 +45,6 @@ from licensedcode.tokenize import key_phrase_tokenizer from licensedcode.tokenize import KEY_PHRASE_OPEN from licensedcode.tokenize import KEY_PHRASE_CLOSE -from licensedcode.tokenize import query_lines """ Reference License and license Rule structures persisted as a combo of a YAML @@ -354,23 +356,17 @@ class License: ) @classmethod - def from_dir(cls, key, licenses_data_dir=licenses_data_dir, is_builtin=True): + def from_dir(cls, key, licenses_data_dir=licenses_data_dir, check_consistency=True, is_builtin=True): """ Return a new License object for a license ``key`` and load its attribute from a data file stored in ``licenses_data_dir``. """ lic = cls(key=key, is_builtin=is_builtin) - data_file = lic.data_file(licenses_data_dir=licenses_data_dir) - if exists(data_file): - text_file = lic.text_file(licenses_data_dir=licenses_data_dir) - text_file = exists(text_file) and text_file or None - lic.load(data_file=data_file, text_file=text_file) + license_file = lic.license_file(licenses_data_dir=licenses_data_dir) + lic.load(license_file=license_file, check_consistency=check_consistency) return lic - def data_file(self, licenses_data_dir=licenses_data_dir): - return join(licenses_data_dir, f'{self.key}.yml') - - def text_file(self, licenses_data_dir=licenses_data_dir): + def license_file(self, licenses_data_dir=licenses_data_dir): return join(licenses_data_dir, f'{self.key}.LICENSE') def update(self, mapping): @@ -425,9 +421,9 @@ def dict_fields(attr, value): def dump(self, licenses_data_dir): """ - Dump a representation of this license as two files: - - .yml : the license data in YAML - - .LICENSE: the license text + Dump a representation of this license as a .LICENSE file with: + - the license data as YAML frontmatter + - the license text """ def write(location, byte_string): @@ -436,25 +432,45 @@ def write(location, byte_string): with io.open(location, 'wb') as of: of.write(byte_string) - as_yaml = saneyaml.dump(self.to_dict(), indent=4, encoding='utf-8') - data_file = self.data_file(licenses_data_dir=licenses_data_dir) - write(data_file, as_yaml) - - text = self.text - if text: - write(self.text_file(licenses_data_dir=licenses_data_dir), text.encode('utf-8')) + metadata = self.to_dict() + content = self.text.encode('utf-8') + rule_post = FrontmatterPost(content=content, handler=SaneYAMLHandler(), **metadata) + output_string = dumps_frontmatter(post=rule_post) - return self + license_file = self.license_file(licenses_data_dir=licenses_data_dir) + write(license_file, output_string.encode('utf-8')) - def load(self, data_file, text_file): + def load(self, license_file, check_consistency=True): """ - Populate license data from a YAML file stored in ``data_file`` and ``text_file``. + Populate license data from a .LICENSE file stored as a YAML frontmatter. Does not load text files yet. Unknown fields are ignored and not bound to the License object. """ try: - with io.open(data_file, encoding='utf-8') as f: - data = saneyaml.load(f.read(), allow_duplicate_keys=False) + post = load_frontmatter(license_file) + data = post.metadata + if check_consistency: + if not data: + raise InvalidLicense( + f'Cannot load License with empty YAML frontmatter: ' + f'{self}: file://{license_file}' + ) + + if not post.content: + if check_consistency: + if not any( + attribute in data + for attribute in ('is_deprecated', 'is_generic', 'is_unknown') + ): + raise InvalidLicense( + f'Cannot load License with empty text: ' + f'only deprecated, generic or unknown licenses can exist without text ' + f'{self}: file://{license_file}' + ) + + self.text = '' + else: + self.text = post.content.lstrip("\n") for k, v in data.items(): if k == 'minimum_coverage': @@ -462,25 +478,19 @@ def load(self, data_file, text_file): if k == 'key': assert self.key == v, ( - 'The license "key" attribute in the .yml file MUST ' + - 'be the same as the base name of this license .LICENSE ' + - 'and .yml data files license files. ' + + 'The license "key" attribute in the YAML frontmatter MUST ' + + 'be the same as the base name of this .LICENSE ' + + 'license file. ' + f'Yet file name = {self.key} and license key = {v}' ) setattr(self, k, v) - if text_file and exists(text_file): - with io.open(text_file, encoding='utf-8') as f: - self.text = f.read() - else: - self.text = '' - except Exception as e: # this is a rare case: fail loudly print() print('#############################') - print('INVALID LICENSE YAML FILE:', f'file://{self.data_file}') + print('INVALID LICENSE YAML FILE:', f'file://{self.license_file}') print('#############################') print(traceback.format_exc()) print('#############################') @@ -562,7 +572,7 @@ def validate(licenses, verbose=False, no_dupe_urls=False): error(f'Unknown language: {lic.language}') if lic.is_unknown: - if not 'unknown' in lic.key: + if not 'unknown' in lic.key and lic.key != 'no-license': error( 'is_unknown can be true only for licenses with ' '"unknown " in their key string.' @@ -691,7 +701,7 @@ def ignore_editor_tmp_files(location): def load_licenses( licenses_data_dir=licenses_data_dir, with_deprecated=False, - check_dangling=True, + check_consistency=True, is_builtin=True, ): """ @@ -710,54 +720,39 @@ def load_licenses( )) licenses = {} - used_files = set() - for data_file in all_files: - if data_file.endswith('.yml'): + for license_file in all_files: + if license_file.endswith('.LICENSE'): if TRACE: - logger_debug('load_licenses: data_file:', data_file) + logger_debug('load_licenses: license_file:', license_file) - key = file_base_name(data_file) + key = file_base_name(license_file) try: lic = License.from_dir( key=key, licenses_data_dir=licenses_data_dir, + check_consistency=check_consistency, is_builtin=is_builtin, ) except Exception as e: - raise Exception( + msg = ( f'Failed to load license: {key} from: ' - f'file://{licenses_data_dir}/{key}.yml with error: {e}' - ) from e - - if check_dangling: - used_files.add(data_file) - - text_file = lic.text_file(licenses_data_dir=licenses_data_dir) - if check_dangling and exists(text_file): - used_files.add(text_file) + f'file://{licenses_data_dir}/{key}.LICENSE with error: {e}' + ) + raise InvalidLicense(msg) from e if not with_deprecated and lic.is_deprecated: continue licenses[key] = lic - if check_dangling: - dangling = set(all_files).difference(used_files) - if dangling: - msg = ( - f'Some License files are orphaned in {licenses_data_dir!r}.\n' + - '\n'.join(f'file://{f}' for f in sorted(dangling)) - ) - raise Exception(msg) - if not licenses: msg = ( 'No licenses were loaded. Check to see if the license data files ' f'are available at "{licenses_data_dir}".' ) - raise Exception(msg) + raise InvalidLicense(msg) return licenses @@ -919,17 +914,13 @@ def _ignorable_clue_error(rule, rules_dir): Return a pair of the result of validating a rule's ignorable clues and expected ignorable clues if there is an error. Otherwise, returns None. """ - result = get_ignorables(rule.text_file(rules_data_dir=rules_dir)) + result = get_ignorables(rule.rule_file(rules_data_dir=rules_dir)) expected = get_normalized_ignorables(rule) if result != expected: - data_file = rule.data_file(rules_data_dir=rules_dir) - text_file = rule.text_file(rules_data_dir=rules_dir) - if not data_file: - data_file = text_file.replace('.LICENSE', '.yml') + rule_file = rule.rule_file(rules_data_dir=rules_dir) result['files'] = [ - f'file://{data_file}', - f'file://{text_file}', + f'file://{rule_file}', ] return result, expected @@ -964,6 +955,10 @@ class InvalidRule(Exception): pass +class InvalidLicense(Exception): + pass + + def _validate_all_rules(rules, licenses_by_key): """ Return a mapping of {error message: [list of Rule]} from validating a list @@ -994,13 +989,9 @@ def validate_rules(rules, licenses_by_key, with_text=False, rules_data_dir=rules for rule in rules: message.append(f' {rule!r}') - text_file = rule.text_file(rules_data_dir=rules_data_dir) - if text_file and exists(text_file): - message.append(f' file://{text_file}') - - data_file = rule.data_file(rules_data_dir=rules_data_dir) - if data_file and exists(data_file): - message.append(f' file://{data_file}') + rule_file = rule.rule_file(rules_data_dir=rules_data_dir) + if rule_file and exists(rule_file): + message.append(f' file://{rule_file}') if with_text: txt = rule.text[:100].strip() @@ -1103,21 +1094,15 @@ def load_rules(rules_data_dir=rules_data_dir, with_checks=True, is_builtin=True) space_problems = [] model_errors = [] - for data_file in resource_iter(location=rules_data_dir, with_dirs=False): - if data_file.endswith('.yml'): - base_name = file_base_name(data_file) + for rule_file in resource_iter(location=rules_data_dir, with_dirs=False): + if rule_file.endswith('.RULE'): + base_name = file_base_name(rule_file) if with_checks and ' ' in base_name: - space_problems.append(data_file) - - text_file = join(rules_data_dir, f'{base_name}.RULE') + space_problems.append(rule_file) try: - yield Rule.from_files( - data_file=data_file, - text_file=text_file, - is_builtin=is_builtin, - ) + yield Rule.from_file(rule_file=rule_file) except Exception as re: if with_checks: model_errors.append(str(re)) @@ -1125,22 +1110,16 @@ def load_rules(rules_data_dir=rules_data_dir, with_checks=True, is_builtin=True) if with_checks: # accumulate sets to ensures we do not have illegal names or extra # orphaned files - data_file_lower = data_file.lower() - if data_file_lower in lower_case_files: - case_problems.add(data_file_lower) + rule_file_lower = rule_file.lower() + if rule_file_lower in lower_case_files: + case_problems.add(rule_file_lower) else: - lower_case_files.add(data_file_lower) + lower_case_files.add(rule_file_lower) - text_file_lower = text_file.lower() - if text_file_lower in lower_case_files: - case_problems.add(text_file_lower) - else: - lower_case_files.add(text_file_lower) - - processed_files.update([data_file, text_file]) + processed_files.add(rule_file) - if with_checks and not data_file.endswith('~'): - seen_files.add(data_file) + if with_checks and not rule_file.endswith('~'): + seen_files.add(rule_file) if with_checks: unknown_files = seen_files - processed_files @@ -1150,29 +1129,33 @@ def load_rules(rules_data_dir=rules_data_dir, with_checks=True, is_builtin=True) if model_errors: errors = '\n'.join(model_errors) msg += ( - '\nInvalid rule YAML file in directory: ' - f'{rules_data_dir!r}\n{errors}' + '\nInvalid rule files: ' + f'{rules_data_dir!r}\n' + f'{errors!r}\n' ) if unknown_files: files = '\n'.join(sorted(f'file://{f}"' for f in unknown_files)) msg += ( '\nOrphaned files in rule directory: ' - f'{rules_data_dir!r}\n{files}' + f'{rules_data_dir!r}\n' + f'{files!r}\n' ) if case_problems: files = '\n'.join(sorted(f'"file://{f}"' for f in case_problems)) msg += ( '\nRule files with non-unique name in rule directory: ' - f'{rules_data_dir!r}\n{files}' + f'{rules_data_dir!r}\n' + f'{files!r}\n' ) if space_problems: files = '\n'.join(sorted(f'"file://{f}"' for f in space_problems)) msg += ( '\nRule filename cannot contain spaces: ' - f'{rules_data_dir!r}\n{files}' + f'{rules_data_dir!r}\n' + f'{files!r}\n' ) raise InvalidRule(msg) @@ -1592,28 +1575,18 @@ class BasicRule: 'position is using the magic -1 key.') ) - def data_file( + def rule_file( self, rules_data_dir=rules_data_dir, licenses_data_dir=licenses_data_dir, ): - data_file_base_name = file_base_name(self.identifier) - data_file_name = f'{data_file_base_name}.yml' + rule_file_base_name = file_base_name(self.identifier) + rule_file_name = f'{rule_file_base_name}.RULE' if self.is_from_license: - return join(licenses_data_dir, data_file_name) + return join(licenses_data_dir, rule_file_name) else: - return join(rules_data_dir, data_file_name) - - def text_file( - self, - rules_data_dir=rules_data_dir, - licenses_data_dir=licenses_data_dir, - ): - if self.is_from_license: - return join(licenses_data_dir, f'{self.identifier}') - else: - return join(rules_data_dir, f'{self.identifier}') + return join(rules_data_dir, rule_file_name) def __attrs_post_init__(self, *args, **kwargs): self.setup() @@ -1633,13 +1606,13 @@ def setup(self): trace = traceback.format_exc() raise InvalidRule( f'Unable to parse Rule license expression: {exp!r} ' - f'for: file://{self.data_file}\n{trace}' + f'for: file://{self.identifier}\n{trace}' ) from e if expression is None: raise InvalidRule( f'Invalid rule License expression parsed to empty: ' - f'{self.license_expression!r} for: file://{self.data_file}' + f'{self.license_expression!r} for: file://{self.identifier}' ) self.license_expression = expression.render() @@ -1861,15 +1834,7 @@ def to_dict(self, include_text=False): return data -def get_rule_text(location=None, text=None): - """ - Return the rule ``text`` prepared for indexing. - ############### - # IMPORTANT: we use the same process as used to load query text for symmetry - ############### - """ - numbered_lines = query_lines(location=location, query_string=text, plain_text=True) - return '\n'.join(l.strip() for _, l in numbered_lines) + def has_only_lower_license_keys(license_expression, licensing=Licensing()): @@ -1917,13 +1882,13 @@ def __attrs_post_init__(self, *args, **kwargs): self.setup() @classmethod - def from_files(cls, data_file, text_file, is_builtin=True): + def from_file(cls, rule_file, is_builtin=True): """ - Return a new Rule object loaded from a data file stored at - ``data_file`` and a companion ``text_file``. + Return a new Rule object loaded from a file stored at + ``rule_file`` with the text and it's data as with YAML frontmatter. """ rule = Rule(is_builtin=is_builtin) - rule.load_data(data_file=data_file, text_file=text_file) + rule.load_data(rule_file=rule_file) return rule @classmethod @@ -1992,10 +1957,10 @@ def _from_expression(cls, license_expression=None, identifier=None, **kwargs): rule.setup() return rule - def load_data(self, data_file, text_file): + def load_data(self, rule_file): """ - Load data from ``data_file`` and ``text_file``. Check presence of text - file to determine if this is a special synthetic rule. + Load data from ``rule_file`` which has both the text and the data (as YAML forntmatter). + Check presence of text file to determine if this is a special synthetic rule. """ if self.is_synthetic: if not self.text: @@ -2003,18 +1968,18 @@ def load_data(self, data_file, text_file): f'Invalid synthetic rule without text: {self}: {self.text!r}') return self - if not data_file or not text_file: + if not rule_file : raise InvalidRule( - f'Cannot load rule without its corresponding text_file and data file: ' - f'{self}: file://{data_file} file://{text_file}') + f'Cannot load rule without its corresponding rule_file: ' + f'{self}: file://{rule_file}') - self.identifier = file_name(text_file) + self.identifier = file_name(rule_file) try: - self.load(data_file=data_file, text_file=text_file) + self.load(rule_file=rule_file) except Exception: trace = traceback.format_exc() - raise InvalidRule(f'While loading: file://{data_file}\n{trace}') + raise InvalidRule(f'While loading: file://{rule_file}\n{trace}') return self @@ -2101,10 +2066,12 @@ def compute_thresholds(self, small_rule=SMALL_RULE): def dump(self, rules_data_dir): """ - Dump a representation of this rule as two files stored in - ``rules_data_dir``: - - a .yml for the rule data in YAML (e.g., data_file) - - a .RULE: the rule text as a UTF-8 file (e.g., text_file) + Dump a representation of this rule as a .RULE file stored in + ``rules_data_dir`` as a UTF-8 file having: + - the rule data as YAML frontmatter + - the rule text + and this is a `rule_file`. + Does nothing if this rule was created from a License (e.g., `is_from_license` is True) """ @@ -2117,28 +2084,34 @@ def write(location, byte_string): with io.open(location, 'wb') as of: of.write(byte_string) - data_file = self.data_file(rules_data_dir=rules_data_dir) - as_yaml = saneyaml.dump(self.to_dict(), indent=4, encoding='utf-8') - write(data_file, as_yaml) + rule_file = self.rule_file(rules_data_dir=rules_data_dir) - text_file = self.text_file(rules_data_dir=rules_data_dir) - write(text_file, self.text.encode('utf-8')) + metadata = self.to_dict() + content = self.text.encode('utf-8') + rule_post = FrontmatterPost(content=content, handler=SaneYAMLHandler(), **metadata) + output_string = dumps_frontmatter(post=rule_post) + write(rule_file, output_string.encode('utf-8')) - def load(self, data_file, text_file, with_checks=True): + def load(self, rule_file, with_checks=True): """ - Load self from a .RULE YAML file stored in data_file and text_file. + Load self from a .RULE file with YAMl frontmatter stored in rule_file. Unknown fields are ignored and not bound to the Rule object. Optionally check for consistency if ``with_checks`` is True. """ try: - with io.open(data_file, encoding='utf-8') as f: - data = saneyaml.load(f.read(), allow_duplicate_keys=False) + post = load_frontmatter(rule_file) + data = post.metadata + if not post.content: + raise InvalidRule( + f'Cannot load rule with empty text: ' + f'{self}: file://{rule_file}' + ) - self.text = get_rule_text(location=text_file) + self.text = post.content.lstrip() except Exception as e: print('#############################') - print('INVALID LICENSE RULE FILE:', f'file://{data_file}', f'file://{text_file}') + print('INVALID LICENSE RULE FILE:', f'file://{rule_file}') print('#############################') print(e) print('#############################') diff --git a/src/licensedcode/plugin_license.py b/src/licensedcode/plugin_license.py index cffc987a9f5..7817355c2ad 100644 --- a/src/licensedcode/plugin_license.py +++ b/src/licensedcode/plugin_license.py @@ -21,6 +21,7 @@ from plugincode.scan import scan_impl from scancode.api import SCANCODE_LICENSEDB_URL +from licensedcode.license_db import dump_license_data TRACE = os.environ.get('SCANCODE_DEBUG_LICENSE_PLUGIN', False) diff --git a/src/licensedcode/static/datatables/jquery.dataTables-1.10.22.min.css b/src/licensedcode/static/datatables/jquery.dataTables-1.10.22.min.css new file mode 100644 index 00000000000..8a3f2767c51 --- /dev/null +++ b/src/licensedcode/static/datatables/jquery.dataTables-1.10.22.min.css @@ -0,0 +1 @@ +table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_length select{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;padding:4px}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;margin-left:3px}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}} diff --git a/src/licensedcode/static/datatables/jquery.dataTables-1.10.22.min.js b/src/licensedcode/static/datatables/jquery.dataTables-1.10.22.min.js new file mode 100644 index 00000000000..89f7ba0b681 --- /dev/null +++ b/src/licensedcode/static/datatables/jquery.dataTables-1.10.22.min.js @@ -0,0 +1,184 @@ +/*! + Copyright 2008-2020 SpryMedia Ltd. + + This source file is free software, available under the following license: + MIT license - http://datatables.net/license + + This source 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 license files for details. + + For details please refer to: http://www.datatables.net + DataTables 1.10.22 + ©2008-2020 SpryMedia Ltd - datatables.net/license +*/ +var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(k,y,z){k instanceof String&&(k=String(k));for(var q=k.length,G=0;G").css({position:"fixed",top:0,left:-1*k(y).scrollLeft(),height:1, +width:1,overflow:"hidden"}).append(k("

").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(k("
").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),f=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===f[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(f.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}k.extend(a.oBrowser,u.__browser);a.oScroll.iBarWidth=u.__browser.barWidth} +function Bb(a,b,c,d,f,e){var g=!1;if(c!==q){var h=c;g=!0}for(;d!==f;)a.hasOwnProperty(d)&&(h=g?b(h,a[d],d,a):a[d],g=!0,d+=e);return h}function Wa(a,b){var c=u.defaults.column,d=a.aoColumns.length;c=k.extend({},u.models.oColumn,c,{nTh:b?b:z.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=k.extend({},u.models.oSearch,c[d]);Da(a,d,k(b).data())}function Da(a,b,c){b=a.aoColumns[b]; +var d=a.oClasses,f=k(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=f.attr("width")||null;var e=(f.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);e&&(b.sWidthOrig=e[1])}c!==q&&null!==c&&(zb(c),O(u.defaults.column,c,!0),c.mDataProp===q||c.mData||(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&f.addClass(c.sClass),k.extend(b,c),V(b,c,"sWidth","sWidthOrig"),c.iDataSort!==q&&(b.aDataSort=[c.iDataSort]),V(b,c,"aDataSort"));var g=b.mData,h=ia(g), +l=b.mRender?ia(b.mRender):null;c=function(n){return"string"===typeof n&&-1!==n.indexOf("@")};b._bAttrSrc=k.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(n,m,p){var t=h(n,m,q,p);return l&&m?l(t,m,n,p):t};b.fnSetData=function(n,m,p){return da(g)(n,m,p)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,f.addClass(d.sSortableNone));a=-1!==k.inArray("asc",b.asSorting);c=-1!==k.inArray("desc",b.asSorting);b.bSortable&&(a||c)?a&&!c? +(b.sSortingClass=d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI):(b.sSortingClass=d.sSortableNone,b.sSortingClassJUI="")}function ra(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Xa(a);for(var c=0,d=b.length;cn[m])d(h.length+n[m],l);else if("string"===typeof n[m]){var p=0;for(g=h.length;pb&&a[f]--; -1!=d&&c===q&&a.splice(d,1)}function va(a,b,c,d){var f=a.aoData[b],e,g=function(l,n){for(;l.childNodes.length;)l.removeChild(l.firstChild);l.innerHTML=S(a,b,n,"display")};if("dom"!==c&&(c&&"auto"!==c||"dom"!==f.src)){var h=f.anCells;if(h)if(d!==q)g(h[d],d);else for(c=0,e=h.length;c").appendTo(d));var l=0;for(b=h.length;l=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);g=a._iDisplayStart;var n=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,U(a,!1);else if(!h)a.iDraw++;else if(!a.bDestroying&&!Fb(a))return;if(0!==l.length)for(e= +h?a.aoData.length:n,h=h?0:g;h",{"class":f?d[0]:""}).append(k("",{valign:"top",colSpan:na(a),"class":a.oClasses.sRowEmpty}).html(c))[0]; +I(a,"aoHeaderCallback","header",[k(a.nTHead).children("tr")[0],bb(a),g,n,l]);I(a,"aoFooterCallback","footer",[k(a.nTFoot).children("tr")[0],bb(a),g,n,l]);d=k(a.nTBody);d.children().detach();d.append(k(b));I(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function ja(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&Gb(a);d?ya(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;fa(a);a._drawHold=!1}function Hb(a){var b=a.oClasses, +c=k(a.nTable);c=k("
").insertBefore(c);var d=a.oFeatures,f=k("
",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=f[0];a.nTableReinsertBefore=a.nTable.nextSibling;for(var e=a.sDom.split(""),g,h,l,n,m,p,t=0;t")[0];n=e[t+1];if("'"==n||'"'==n){m="";for(p=2;e[t+p]!=n;)m+=e[t+p],p++;"H"==m?m=b.sJUIHeader:"F"==m&&(m=b.sJUIFooter);-1!=m.indexOf(".")?(n=m.split("."),l.id=n[0].substr(1, +n[0].length-1),l.className=n[1]):"#"==m.charAt(0)?l.id=m.substr(1,m.length-1):l.className=m;t+=p}f.append(l);f=k(l)}else if(">"==h)f=f.parent();else if("l"==h&&d.bPaginate&&d.bLengthChange)g=Ib(a);else if("f"==h&&d.bFilter)g=Jb(a);else if("r"==h&&d.bProcessing)g=Kb(a);else if("t"==h)g=Lb(a);else if("i"==h&&d.bInfo)g=Mb(a);else if("p"==h&&d.bPaginate)g=Nb(a);else if(0!==u.ext.feature.length)for(l=u.ext.feature,p=0,n=l.length;p',h=d.sSearch;h=h.match(/_INPUT_/)?h.replace("_INPUT_",g):h+g;b=k("
",{id:e.f?null:c+"_filter","class":b.sFilter}).append(k("
").addClass(b.sLength);a.aanFeatures.l||(l[0].id=c+"_length");l.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",f[0].outerHTML));k("select",l).val(a._iDisplayLength).on("change.DT",function(n){ib(a,k(this).val());fa(a)});k(a.nTable).on("length.dt.DT",function(n,m,p){a===m&&k("select",l).val(p)});return l[0]}function Nb(a){var b=a.sPaginationType,c=u.ext.pager[b],d="function"===typeof c,f=function(g){fa(g)};b=k("
").addClass(a.oClasses.sPaging+ +b)[0];var e=a.aanFeatures;d||c.fnInit(a,b,f);e.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(g){if(d){var h=g._iDisplayStart,l=g._iDisplayLength,n=g.fnRecordsDisplay(),m=-1===l;h=m?0:Math.ceil(h/l);l=m?1:Math.ceil(n/l);n=c(h,l);var p;m=0;for(p=e.p.length;me&&(d=0)):"first"==b?d=0:"previous"==b?(d=0<=f?d-f:0,0>d&&(d=0)):"next"==b?d+f",{id:a.aanFeatures.r?null:a.sTableId+"_processing","class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}function U(a,b){a.oFeatures.bProcessing&&k(a.aanFeatures.r).css("display",b?"block": +"none");I(a,null,"processing",[a,b])}function Lb(a){var b=k(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,f=c.sY,e=a.oClasses,g=b.children("caption"),h=g.length?g[0]._captionSide:null,l=k(b[0].cloneNode(!1)),n=k(b[0].cloneNode(!1)),m=b.children("tfoot");m.length||(m=null);l=k("
",{"class":e.sScrollWrapper}).append(k("
",{"class":e.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:d?d?K(d):null:"100%"}).append(k("
", +{"class":e.sScrollHeadInner}).css({"box-sizing":"content-box",width:c.sXInner||"100%"}).append(l.removeAttr("id").css("margin-left",0).append("top"===h?g:null).append(b.children("thead"))))).append(k("
",{"class":e.sScrollBody}).css({position:"relative",overflow:"auto",width:d?K(d):null}).append(b));m&&l.append(k("
",{"class":e.sScrollFoot}).css({overflow:"hidden",border:0,width:d?d?K(d):null:"100%"}).append(k("
",{"class":e.sScrollFootInner}).append(n.removeAttr("id").css("margin-left", +0).append("bottom"===h?g:null).append(b.children("tfoot")))));b=l.children();var p=b[0];e=b[1];var t=m?b[2]:null;if(d)k(e).on("scroll.DT",function(v){v=this.scrollLeft;p.scrollLeft=v;m&&(t.scrollLeft=v)});k(e).css("max-height",f);c.bCollapse||k(e).css("height",f);a.nScrollHead=p;a.nScrollBody=e;a.nScrollFoot=t;a.aoDrawCallback.push({fn:Ea,sName:"scrolling"});return l[0]}function Ea(a){var b=a.oScroll,c=b.sX,d=b.sXInner,f=b.sY;b=b.iBarWidth;var e=k(a.nScrollHead),g=e[0].style,h=e.children("div"),l= +h[0].style,n=h.children("table");h=a.nScrollBody;var m=k(h),p=h.style,t=k(a.nScrollFoot).children("div"),v=t.children("table"),x=k(a.nTHead),r=k(a.nTable),A=r[0],E=A.style,H=a.nTFoot?k(a.nTFoot):null,W=a.oBrowser,M=W.bScrollOversize,C=T(a.aoColumns,"nTh"),B=[],ba=[],X=[],lb=[],Aa,Yb=function(F){F=F.style;F.paddingTop="0";F.paddingBottom="0";F.borderTopWidth="0";F.borderBottomWidth="0";F.height=0};var ha=h.scrollHeight>h.clientHeight;if(a.scrollBarVis!==ha&&a.scrollBarVis!==q)a.scrollBarVis=ha,ra(a); +else{a.scrollBarVis=ha;r.children("thead, tfoot").remove();if(H){var ka=H.clone().prependTo(r);var la=H.find("tr");ka=ka.find("tr")}var mb=x.clone().prependTo(r);x=x.find("tr");ha=mb.find("tr");mb.find("th, td").removeAttr("tabindex");c||(p.width="100%",e[0].style.width="100%");k.each(Ka(a,mb),function(F,Y){Aa=sa(a,F);Y.style.width=a.aoColumns[Aa].sWidth});H&&Z(function(F){F.style.width=""},ka);e=r.outerWidth();""===c?(E.width="100%",M&&(r.find("tbody").height()>h.offsetHeight||"scroll"==m.css("overflow-y"))&& +(E.width=K(r.outerWidth()-b)),e=r.outerWidth()):""!==d&&(E.width=K(d),e=r.outerWidth());Z(Yb,ha);Z(function(F){X.push(F.innerHTML);B.push(K(k(F).css("width")))},ha);Z(function(F,Y){-1!==k.inArray(F,C)&&(F.style.width=B[Y])},x);k(ha).height(0);H&&(Z(Yb,ka),Z(function(F){lb.push(F.innerHTML);ba.push(K(k(F).css("width")))},ka),Z(function(F,Y){F.style.width=ba[Y]},la),k(ka).height(0));Z(function(F,Y){F.innerHTML='
'+X[Y]+"
";F.childNodes[0].style.height="0";F.childNodes[0].style.overflow= +"hidden";F.style.width=B[Y]},ha);H&&Z(function(F,Y){F.innerHTML='
'+lb[Y]+"
";F.childNodes[0].style.height="0";F.childNodes[0].style.overflow="hidden";F.style.width=ba[Y]},ka);r.outerWidth()h.offsetHeight||"scroll"==m.css("overflow-y")?e+b:e,M&&(h.scrollHeight>h.offsetHeight||"scroll"==m.css("overflow-y"))&&(E.width=K(la-b)),""!==c&&""===d||aa(a,1,"Possible column misalignment",6)):la="100%";p.width=K(la);g.width=K(la);H&&(a.nScrollFoot.style.width= +K(la));!f&&M&&(p.height=K(A.offsetHeight+b));c=r.outerWidth();n[0].style.width=K(c);l.width=K(c);d=r.height()>h.clientHeight||"scroll"==m.css("overflow-y");f="padding"+(W.bScrollbarLeft?"Left":"Right");l[f]=d?b+"px":"0px";H&&(v[0].style.width=K(c),t[0].style.width=K(c),t[0].style[f]=d?b+"px":"0px");r.children("colgroup").insertBefore(r.children("thead"));m.trigger("scroll");!a.bSorted&&!a.bFiltered||a._drawHold||(h.scrollTop=0)}}function Z(a,b,c){for(var d=0,f=0,e=b.length,g,h;f").appendTo(h.find("tbody"));h.find("thead, tfoot").remove();h.append(k(a.nTHead).clone()).append(k(a.nTFoot).clone());h.find("tfoot th, tfoot td").css("width","");n=Ka(a,h.find("thead")[0]);for(v=0;v").css({width:r.sWidthOrig, +margin:0,padding:0,border:0,height:1}));if(a.aoData.length)for(v=0;v").css(e||f?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(h).appendTo(p);e&&g?h.width(g):e?(h.css("width","auto"),h.removeAttr("width"),h.width()").css("width",K(a)).appendTo(b||z.body);b=a[0].offsetWidth;a.remove();return b}function $b(a,b){var c=ac(a,b);if(0>c)return null;var d=a.aoData[c];return d.nTr?d.anCells[b]: +k("").html(S(a,c,b,"display"))[0]}function ac(a,b){for(var c,d=-1,f=-1,e=0,g=a.aoData.length;ed&&(d=c.length,f=e);return f}function K(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function pa(a){var b=[],c=a.aoColumns;var d=a.aaSortingFixed;var f=k.isPlainObject(d);var e=[];var g=function(m){m.length&&!Array.isArray(m[0])?e.push(m):k.merge(e,m)};Array.isArray(d)&&g(d); +f&&d.pre&&g(d.pre);g(a.aaSorting);f&&d.post&&g(d.post);for(a=0;aH?1:0;if(0!==E)return"asc"===A.dir?E:-E}E=c[m];H=c[p];return EH?1:0}):g.sort(function(m,p){var t,v=h.length,x=f[m]._aSortData,r=f[p]._aSortData;for(t=0;tH?1:0})}a.bSorted=!0}function cc(a){var b=a.aoColumns,c=pa(a);a=a.oLanguage.oAria;for(var d=0,f=b.length;d/g,"");var l=e.nTh;l.removeAttribute("aria-sort");e.bSortable&&(0f?f+1:3))}f=0;for(e=d.length;ff?f+1:3))}a.aLastSort= +d}function bc(a,b){var c=a.aoColumns[b],d=u.ext.order[c.sSortDataType],f;d&&(f=d.call(a.oInstance,a,b,ta(a,b)));for(var e,g=u.ext.type.order[c.sType+"-pre"],h=0,l=a.aoData.length;h=e.length?[0,m[1]]:m)}));h.search!==q&&k.extend(a.oPreviousSearch,Vb(h.search));if(h.columns)for(d=0,f=h.columns.length;d=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function eb(a,b){a=a.renderer;var c=u.ext.renderer[b];return k.isPlainObject(a)&&a[b]?c[a[b]]||c._:"string"===typeof a?c[a]|| +c._:c._}function P(a){return a.oFeatures.bServerSide?"ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function Ba(a,b){var c=ec.numbers_length,d=Math.floor(c/2);b<=c?a=qa(0,b):a<=d?(a=qa(0,c-2),a.push("ellipsis"),a.push(b-1)):(a>=b-1-d?a=qa(b-(c-2),b):(a=qa(a-d+2,a+d-1),a.push("ellipsis"),a.push(b-1)),a.splice(0,0,"ellipsis"),a.splice(0,0,0));a.DT_el="span";return a}function Va(a){k.each({num:function(b){return Sa(b,a)},"num-fmt":function(b){return Sa(b,a,qb)},"html-num":function(b){return Sa(b,a,Ta)},"html-num-fmt":function(b){return Sa(b, +a,Ta,qb)}},function(b,c){L.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(L.type.search[b+a]=L.type.search.html)})}function fc(a){return function(){var b=[Ra(this[u.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return u.ext.internal[a].apply(this,b)}}var u=function(a){this.$=function(e,g){return this.api(!0).$(e,g)};this._=function(e,g){return this.api(!0).rows(e,g).data()};this.api=function(e){return e?new D(Ra(this[L.iApiIndex])):new D(this)};this.fnAddData=function(e,g){var h=this.api(!0); +e=Array.isArray(e)&&(Array.isArray(e[0])||k.isPlainObject(e[0]))?h.rows.add(e):h.row.add(e);(g===q||g)&&h.draw();return e.flatten().toArray()};this.fnAdjustColumnSizing=function(e){var g=this.api(!0).columns.adjust(),h=g.settings()[0],l=h.oScroll;e===q||e?g.draw(!1):(""!==l.sX||""!==l.sY)&&Ea(h)};this.fnClearTable=function(e){var g=this.api(!0).clear();(e===q||e)&&g.draw()};this.fnClose=function(e){this.api(!0).row(e).child.hide()};this.fnDeleteRow=function(e,g,h){var l=this.api(!0);e=l.rows(e);var n= +e.settings()[0],m=n.aoData[e[0][0]];e.remove();g&&g.call(this,n,m);(h===q||h)&&l.draw();return m};this.fnDestroy=function(e){this.api(!0).destroy(e)};this.fnDraw=function(e){this.api(!0).draw(e)};this.fnFilter=function(e,g,h,l,n,m){n=this.api(!0);null===g||g===q?n.search(e,h,l,m):n.column(g).search(e,h,l,m);n.draw()};this.fnGetData=function(e,g){var h=this.api(!0);if(e!==q){var l=e.nodeName?e.nodeName.toLowerCase():"";return g!==q||"td"==l||"th"==l?h.cell(e,g).data():h.row(e).data()||null}return h.data().toArray()}; +this.fnGetNodes=function(e){var g=this.api(!0);return e!==q?g.row(e).node():g.rows().nodes().flatten().toArray()};this.fnGetPosition=function(e){var g=this.api(!0),h=e.nodeName.toUpperCase();return"TR"==h?g.row(e).index():"TD"==h||"TH"==h?(e=g.cell(e).index(),[e.row,e.columnVisible,e.column]):null};this.fnIsOpen=function(e){return this.api(!0).row(e).child.isShown()};this.fnOpen=function(e,g,h){return this.api(!0).row(e).child(g,h).show().child()[0]};this.fnPageChange=function(e,g){e=this.api(!0).page(e); +(g===q||g)&&e.draw(!1)};this.fnSetColumnVis=function(e,g,h){e=this.api(!0).column(e).visible(g);(h===q||h)&&e.columns.adjust().draw()};this.fnSettings=function(){return Ra(this[L.iApiIndex])};this.fnSort=function(e){this.api(!0).order(e).draw()};this.fnSortListener=function(e,g,h){this.api(!0).order.listener(e,g,h)};this.fnUpdate=function(e,g,h,l,n){var m=this.api(!0);h===q||null===h?m.row(g).data(e):m.cell(g,h).data(e);(n===q||n)&&m.columns.adjust();(l===q||l)&&m.draw();return 0};this.fnVersionCheck= +L.fnVersionCheck;var b=this,c=a===q,d=this.length;c&&(a={});this.oApi=this.internal=L.internal;for(var f in u.ext.internal)f&&(this[f]=fc(f));this.each(function(){var e={},g=1").appendTo(p));r.nTHead=B[0]; +B=p.children("tbody");0===B.length&&(B=k("").appendTo(p));r.nTBody=B[0];B=p.children("tfoot");0===B.length&&0").appendTo(p));0===B.length||0===B.children().length?p.addClass(A.sNoFooter):0/g,tc=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,uc=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\|\$|\^|\-)/g,qb=/['\u00A0,$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,ca=function(a){return a&&!0!==a&&"-"!==a?!1:!0},hc=function(a){var b=parseInt(a,10);return!isNaN(b)&&isFinite(a)?b:null},ic=function(a,b){rb[b]|| +(rb[b]=new RegExp(hb(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(rb[b],"."):a},sb=function(a,b,c){var d="string"===typeof a;if(ca(a))return!0;b&&d&&(a=ic(a,b));c&&d&&(a=a.replace(qb,""));return!isNaN(parseFloat(a))&&isFinite(a)},jc=function(a,b,c){return ca(a)?!0:ca(a)||"string"===typeof a?sb(a.replace(Ta,""),b,c)?!0:null:null},T=function(a,b,c){var d=[],f=0,e=a.length;if(c!==q)for(;fa.length)){var b=a.slice().sort();for(var c=b[0],d=1,f=b.length;d")[0],rc=Oa.textContent!==q,sc=/<.*?>/g,fb=u.util.throttle,mc=[],N=Array.prototype,vc=function(a){var b,c=u.settings,d=k.map(c,function(e,g){return e.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase()){var f= +k.inArray(a,d);return-1!==f?[c[f]]:null}if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?b=k(a):a instanceof k&&(b=a)}else return[];if(b)return b.map(function(e){f=k.inArray(this,d);return-1!==f?c[f]:null}).toArray()};var D=function(a,b){if(!(this instanceof D))return new D(a,b);var c=[],d=function(g){(g=vc(g))&&c.push.apply(c,g)};if(Array.isArray(a))for(var f=0,e=a.length;fa?new D(b[a],this[a]):null},filter:function(a){var b=[];if(N.filter)b=N.filter.call(this,a,this);else for(var c=0,d=this.length;c").addClass(h),k("td",l).addClass(h).html(g)[0].colSpan=na(a),f.push(l[0]))};e(c,d);b._details&&b._details.detach();b._details=k(f);b._detailsShow&& +b._details.insertAfter(b.nTr)},wb=function(a,b){var c=a.context;c.length&&(a=c[0].aoData[b!==q?b:a[0]])&&a._details&&(a._details.remove(),a._detailsShow=q,a._details=q)},pc=function(a,b){var c=a.context;c.length&&a.length&&(a=c[0].aoData[a[0]],a._details&&((a._detailsShow=b)?a._details.insertAfter(a.nTr):a._details.detach(),yc(c[0])))},yc=function(a){var b=new D(a),c=a.aoData;b.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");0h){var m=k.map(d,function(p,t){return p.bVisible?t:null});return[m[m.length+h]]}return[sa(a,h)];case "name":return k.map(f,function(p,t){return p===n[1]?t:null});default:return[]}if(g.nodeName&&g._DT_CellIndex)return[g._DT_CellIndex.column];h=k(e).filter(g).map(function(){return k.inArray(this,e)}).toArray();if(h.length||!g.nodeName)return h;h=k(g).closest("*[data-dt-column]");return h.length?[h.data("dt-column")]:[]},a,c)};w("columns()",function(a,b){a===q?a="":k.isPlainObject(a)&&(b=a, +a="");b=ub(b);var c=this.iterator("table",function(d){return Ac(d,a,b)},1);c.selector.cols=a;c.selector.opts=b;return c});J("columns().header()","column().header()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTh},1)});J("columns().footer()","column().footer()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTf},1)});J("columns().data()","column().data()",function(){return this.iterator("column-rows",qc,1)});J("columns().dataSrc()", +"column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},1)});J("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,f,e){return Ca(b.aoData,e,"search"===a?"_aFilterData":"_aSortData",c)},1)});J("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,f){return Ca(a.aoData,f,"anCells",b)},1)});J("columns().visible()","column().visible()",function(a,b){var c= +this,d=this.iterator("column",function(f,e){if(a===q)return f.aoColumns[e].bVisible;var g=f.aoColumns,h=g[e],l=f.aoData,n;if(a!==q&&h.bVisible!==a){if(a){var m=k.inArray(!0,T(g,"bVisible"),e+1);g=0;for(n=l.length;gd;return!0};u.isDataTable=u.fnIsDataTable=function(a){var b=k(a).get(0),c=!1;if(a instanceof u.Api)return!0;k.each(u.settings,function(d,f){d=f.nScrollHead?k("table",f.nScrollHead)[0]:null;var e=f.nScrollFoot?k("table",f.nScrollFoot)[0]:null;if(f.nTable===b||d===b||e===b)c=!0});return c};u.tables=u.fnTables=function(a){var b= +!1;k.isPlainObject(a)&&(b=a.api,a=a.visible);var c=k.map(u.settings,function(d){if(!a||a&&k(d.nTable).is(":visible"))return d.nTable});return b?new D(c):c};u.camelToHungarian=O;w("$()",function(a,b){b=this.rows(b).nodes();b=k(b);return k([].concat(b.filter(a).toArray(),b.find(a).toArray()))});k.each(["on","one","off"],function(a,b){w(b+"()",function(){var c=Array.prototype.slice.call(arguments);c[0]=k.map(c[0].split(/\s/),function(f){return f.match(/\.dt\b/)?f:f+".dt"}).join(" ");var d=k(this.tables().nodes()); +d[b].apply(d,c);return this})});w("clear()",function(){return this.iterator("table",function(a){Ha(a)})});w("settings()",function(){return new D(this.context,this.context)});w("init()",function(){var a=this.context;return a.length?a[0].oInit:null});w("data()",function(){return this.iterator("table",function(a){return T(a.aoData,"_aData")}).flatten()});w("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,f=b.nTable,e=b.nTBody,g=b.nTHead, +h=b.nTFoot,l=k(f);e=k(e);var n=k(b.nTableWrapper),m=k.map(b.aoData,function(t){return t.nTr}),p;b.bDestroying=!0;I(b,"aoDestroyCallback","destroy",[b]);a||(new D(b)).columns().visible(!0);n.off(".DT").find(":not(tbody *)").off(".DT");k(y).off(".DT-"+b.sInstance);f!=g.parentNode&&(l.children("thead").detach(),l.append(g));h&&f!=h.parentNode&&(l.children("tfoot").detach(),l.append(h));b.aaSorting=[];b.aaSortingFixed=[];Pa(b);k(m).removeClass(b.asStripeClasses.join(" "));k("th, td",g).removeClass(d.sSortable+ +" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);e.children().detach();e.append(m);g=a?"remove":"detach";l[g]();n[g]();!a&&c&&(c.insertBefore(f,b.nTableReinsertBefore),l.css("width",b.sDestroyWidth).removeClass(d.sTable),(p=b.asDestroyStripes.length)&&e.children().each(function(t){k(this).addClass(b.asDestroyStripes[t%p])}));c=k.inArray(b,u.settings);-1!==c&&u.settings.splice(c,1)})});k.each(["column","row","cell"],function(a,b){w(b+"s().every()",function(c){var d=this.selector.opts,f= +this;return this.iterator(b,function(e,g,h,l,n){c.call(f[b](g,"cell"===b?h:d,"cell"===b?d:q),g,h,l,n)})})});w("i18n()",function(a,b,c){var d=this.context[0];a=ia(a)(d.oLanguage);a===q&&(a=b);c!==q&&k.isPlainObject(a)&&(a=a[c]!==q?a[c]:a._);return a.replace("%d",c)});u.version="1.10.22";u.settings=[];u.models={};u.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};u.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null, +idx:-1};u.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};u.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10, +25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null, +fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){return{}}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}}, +fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)", +sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:k.extend({},u.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};G(u.defaults);u.defaults.column={aDataSort:null, +iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};G(u.defaults.column);u.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null, +iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[], +aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:q,oAjaxData:q,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null, +iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==P(this)?1*this._iRecordsTotal:this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==P(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,f=this.oFeatures, +e=f.bPaginate;return f.bServerSide?!1===e||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!e||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};u.ext=L={buttons:{},classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:u.fnVersionCheck, +iApiIndex:0,oJUIClasses:{},sVersion:u.version};k.extend(L,{afnFiltering:L.search,aTypes:L.type.detect,ofnSearch:L.type.search,oSort:L.type.order,afnSortData:L.order,aoFeatures:L.feature,oApi:L.internal,oStdClasses:L.classes,oPagination:L.pager});k.extend(u.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter", +sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody", +sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",sJUIHeader:"",sJUIFooter:""});var ec=u.ext.pager;k.extend(ec,{simple:function(a,b){return["previous","next"]},full:function(a,b){return["first","previous","next","last"]},numbers:function(a,b){return[Ba(a,b)]},simple_numbers:function(a,b){return["previous",Ba(a,b),"next"]}, +full_numbers:function(a,b){return["first","previous",Ba(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",Ba(a,b),"last"]},_numbers:Ba,numbers_length:7});k.extend(!0,u.ext.renderer,{pageButton:{_:function(a,b,c,d,f,e){var g=a.oClasses,h=a.oLanguage.oPaginate,l=a.oLanguage.oAria.paginate||{},n,m,p=0,t=function(x,r){var A,E=g.sPageButtonDisabled,H=function(B){kb(a,B.data.action,!0)};var W=0;for(A=r.length;W").appendTo(x); +t(C,M)}else{n=null;m=M;C=a.iTabIndex;switch(M){case "ellipsis":x.append('');break;case "first":n=h.sFirst;0===f&&(C=-1,m+=" "+E);break;case "previous":n=h.sPrevious;0===f&&(C=-1,m+=" "+E);break;case "next":n=h.sNext;if(0===e||f===e-1)C=-1,m+=" "+E;break;case "last":n=h.sLast;if(0===e||f===e-1)C=-1,m+=" "+E;break;default:n=a.fnFormatNumber(M+1),m=f===M?g.sPageButtonActive:""}null!==n&&(C=k("",{"class":g.sPageButton+" "+m,"aria-controls":a.sTableId,"aria-label":l[M], +"data-dt-idx":p,tabindex:C,id:0===c&&"string"===typeof M?a.sTableId+"_"+M:null}).html(n).appendTo(x),ob(C,{action:M},H),p++)}}};try{var v=k(b).find(z.activeElement).data("dt-idx")}catch(x){}t(k(b).empty(),d);v!==q&&k(b).find("[data-dt-idx="+v+"]").trigger("focus")}}});k.extend(u.ext.type.detect,[function(a,b){b=b.oLanguage.sDecimal;return sb(a,b)?"num"+b:null},function(a,b){if(a&&!(a instanceof Date)&&!tc.test(a))return null;b=Date.parse(a);return null!==b&&!isNaN(b)||ca(a)?"date":null},function(a, +b){b=b.oLanguage.sDecimal;return sb(a,b,!0)?"num-fmt"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b)?"html-num"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b,!0)?"html-num-fmt"+b:null},function(a,b){return ca(a)||"string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);k.extend(u.ext.type.search,{html:function(a){return ca(a)?a:"string"===typeof a?a.replace(gc," ").replace(Ta,""):""},string:function(a){return ca(a)?a:"string"===typeof a?a.replace(gc," "):a}});var Sa=function(a, +b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=ic(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};k.extend(L.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return ca(a)?"":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return ca(a)?"":"string"===typeof a?a.toLowerCase():a.toString?a.toString():""},"string-asc":function(a,b){return ab?1:0},"string-desc":function(a,b){return a< +b?1:a>b?-1:0}});Va("");k.extend(!0,u.ext.renderer,{header:{_:function(a,b,c,d){k(a.nTable).on("order.dt.DT",function(f,e,g,h){a===e&&(f=c.idx,b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass("asc"==h[f]?d.sSortAsc:"desc"==h[f]?d.sSortDesc:c.sSortingClass))})},jqueryui:function(a,b,c,d){k("
").addClass(d.sSortJUIWrapper).append(b.contents()).append(k("").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);k(a.nTable).on("order.dt.DT",function(f,e,g,h){a===e&& +(f=c.idx,b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass("asc"==h[f]?d.sSortAsc:"desc"==h[f]?d.sSortDesc:c.sSortingClass),b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass("asc"==h[f]?d.sSortJUIAsc:"desc"==h[f]?d.sSortJUIDesc:c.sSortingClassJUI))})}}});var xb=function(a){return"string"===typeof a?a.replace(/&/g,"&").replace(//g,">").replace(/"/g,"""):a};u.render= +{number:function(a,b,c,d,f){return{display:function(e){if("number"!==typeof e&&"string"!==typeof e)return e;var g=0>e?"-":"",h=parseFloat(e);if(isNaN(h))return xb(e);h=h.toFixed(c);e=Math.abs(h);h=parseInt(e,10);e=c?b+(e-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g,a)+e+(f||"")}}},text:function(){return{display:xb,filter:xb}}};k.extend(u.ext.internal,{_fnExternApiFunc:fc,_fnBuildAjax:La,_fnAjaxUpdate:Fb,_fnAjaxParameters:Ob,_fnAjaxUpdateDraw:Pb,_fnAjaxDataSrc:Ma, +_fnAddColumn:Wa,_fnColumnOptions:Da,_fnAdjustColumnSizing:ra,_fnVisibleToColumnIndex:sa,_fnColumnIndexToVisible:ta,_fnVisbleColumns:na,_fnGetColumns:Fa,_fnColumnTypes:Ya,_fnApplyColumnDefs:Cb,_fnHungarianMap:G,_fnCamelToHungarian:O,_fnLanguageCompat:ma,_fnBrowserDetect:Ab,_fnAddData:ea,_fnAddTr:Ga,_fnNodeToDataIndex:function(a,b){return b._DT_RowIndex!==q?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return k.inArray(c,a.aoData[b].anCells)},_fnGetCellData:S,_fnSetCellData:Db,_fnSplitObjNotation:ab, +_fnGetObjectDataFn:ia,_fnSetObjectDataFn:da,_fnGetDataMaster:bb,_fnClearTable:Ha,_fnDeleteIndex:Ia,_fnInvalidate:va,_fnGetRowElements:$a,_fnCreateTr:Za,_fnBuildHead:Eb,_fnDrawHead:xa,_fnDraw:fa,_fnReDraw:ja,_fnAddOptionsHtml:Hb,_fnDetectHeader:wa,_fnGetUniqueThs:Ka,_fnFeatureHtmlFilter:Jb,_fnFilterComplete:ya,_fnFilterCustom:Sb,_fnFilterColumn:Rb,_fnFilter:Qb,_fnFilterCreateSearch:gb,_fnEscapeRegex:hb,_fnFilterData:Tb,_fnFeatureHtmlInfo:Mb,_fnUpdateInfo:Wb,_fnInfoMacros:Xb,_fnInitialise:za,_fnInitComplete:Na, +_fnLengthChange:ib,_fnFeatureHtmlLength:Ib,_fnFeatureHtmlPaginate:Nb,_fnPageChange:kb,_fnFeatureHtmlProcessing:Kb,_fnProcessingDisplay:U,_fnFeatureHtmlTable:Lb,_fnScrollDraw:Ea,_fnApplyToChildren:Z,_fnCalculateColumnWidths:Xa,_fnThrottle:fb,_fnConvertToWidth:Zb,_fnGetWidestNode:$b,_fnGetMaxLenString:ac,_fnStringToCss:K,_fnSortFlatten:pa,_fnSort:Gb,_fnSortAria:cc,_fnSortListener:nb,_fnSortAttachListener:db,_fnSortingClasses:Pa,_fnSortData:bc,_fnSaveState:Qa,_fnLoadState:dc,_fnSettingsFromNode:Ra,_fnLog:aa, +_fnMap:V,_fnBindAction:ob,_fnCallbackReg:Q,_fnCallbackFire:I,_fnLengthOverflow:jb,_fnRenderer:eb,_fnDataSource:P,_fnRowAttributes:cb,_fnExtend:pb,_fnCalculateEnd:function(){}});k.fn.dataTable=u;u.$=k;k.fn.dataTableSettings=u.settings;k.fn.dataTableExt=u.ext;k.fn.DataTable=function(a){return k(this).dataTable(a).api()};k.each(u,function(a,b){k.fn.DataTable[a]=b});return k.fn.dataTable}); diff --git a/src/licensedcode/static/images/sort_asc.png b/src/licensedcode/static/images/sort_asc.png new file mode 100644 index 00000000000..e1ba61a8055 Binary files /dev/null and b/src/licensedcode/static/images/sort_asc.png differ diff --git a/src/licensedcode/static/images/sort_asc_disabled.png b/src/licensedcode/static/images/sort_asc_disabled.png new file mode 100644 index 00000000000..fb11dfe24a6 Binary files /dev/null and b/src/licensedcode/static/images/sort_asc_disabled.png differ diff --git a/src/licensedcode/static/images/sort_both.png b/src/licensedcode/static/images/sort_both.png new file mode 100644 index 00000000000..af5bc7c5a10 Binary files /dev/null and b/src/licensedcode/static/images/sort_both.png differ diff --git a/src/licensedcode/static/images/sort_desc.png b/src/licensedcode/static/images/sort_desc.png new file mode 100644 index 00000000000..0e156deb5f6 Binary files /dev/null and b/src/licensedcode/static/images/sort_desc.png differ diff --git a/src/licensedcode/static/images/sort_desc_disabled.png b/src/licensedcode/static/images/sort_desc_disabled.png new file mode 100644 index 00000000000..c9fdd8a1502 Binary files /dev/null and b/src/licensedcode/static/images/sort_desc_disabled.png differ diff --git a/src/licensedcode/static/jquery-3.5.1.slim.min.js b/src/licensedcode/static/jquery-3.5.1.slim.min.js new file mode 100644 index 00000000000..36b4e1a1378 --- /dev/null +++ b/src/licensedcode/static/jquery-3.5.1.slim.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.5.1 -ajax,-ajax/jsonp,-ajax/load,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-deprecated/ajax-event-alias,-effects,-effects/Tween,-effects/animatedSelector | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(g,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,v=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),m={},b=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},w=g.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function C(e,t,n){var r,i,o=(n=n||w).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function T(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1 -ajax,-ajax/jsonp,-ajax/load,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-deprecated/ajax-event-alias,-effects,-effects/Tween,-effects/animatedSelector",E=function(e,t){return new E.fn.init(e,t)};function d(e){var t=!!e&&"length"in e&&e.length,n=T(e);return!b(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function Le(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=Fe(m.pixelPosition,function(e,t){if(t)return t=We(e,n),Ie.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 01&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;n(this,e),this.ctx=t,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return r(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(function(t){var n=e.filter(function(e){return e.contains(t)}).length>0;-1!==e.indexOf(t)||n||e.push(t)}),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t=e.getAttribute("src").trim();return"about:blank"===e.contentWindow.location.href&&"about:blank"!==t&&t}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,function(){return!0},function(e){r++,n.waitForIframes(e.querySelector("html"),function(){--r||t()})},function(e){e||t()})}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach(function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,function(e){n(t)&&(c++,r(e)),u()},u)})}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach(function(e,t){e.val===n&&(i=t,o=e.handled)}),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach(function(e){e.handled||i.getIframeContents(e.val,function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)})})}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,function(e){return a.checkIframeFilter(l,h,e,c)},function(t){a.createInstanceOnIframe(t).forEachNode(e,function(e){return u.push(e)},r)}),u.push(l);u.forEach(function(e){n(e)}),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach(function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,function(){--a<=0&&i()})};r.iframes?r.waitForIframes(o,s):s()})}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every(function(t){return!r.call(e,t)||(i=!0,!1)}),i}return!1}}]),e}(),a=function(){function e(t){n(this,e),this.ctx=t,this.ie=!1;var r=window.navigator.userAgent;(r.indexOf("MSIE")>-1||r.indexOf("Trident")>-1)&&(this.ie=!0)}return r(e,[{key:"log",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":t(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+e)}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createRegExp",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e)}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynomyms(a)+"|"+this.processSynomyms(s)+")"+r))}return e}},{key:"processSynomyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,function(e){return"\\"===e.charAt(0)?"?":""})).replace(/(?:\\)*\*/g,function(e){return"\\"===e.charAt(0)?"*":""})}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"})}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach(function(i){n.every(function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0})}),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach(function(e){i+="|"+t.escapeStr(e)}),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach(function(e){t.opt.separateWordSearch?e.split(" ").forEach(function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)}):e.trim()&&-1===n.indexOf(e)&&n.push(e)}),{keywords:n.sort(function(e,t){return t.length-e.length}),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort(function(e,t){return e.start-t.start}).forEach(function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)}),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})},function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},function(){e({value:n,nodes:r})})}},{key:"matchesExclude",value:function(e){return o.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every(function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach(function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)}),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0})}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes(function(t){t.nodes.forEach(function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];)if(n(i[a],t)){var s=i.index;if(0!==a)for(var c=1;c.column,.columns.col-gapless>.column{padding-left:0;padding-right:0}.cols.col-oneline,.columns.col-oneline{-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.column,[class~=col-]{-ms-flex:1;flex:1;max-width:100%;padding-left:.4rem;padding-right:.4rem}.column.col-1,.column.col-10,.column.col-11,.column.col-12,.column.col-2,.column.col-3,.column.col-4,.column.col-5,.column.col-6,.column.col-7,.column.col-8,.column.col-9,.column.col-auto,[class~=col-].col-1,[class~=col-].col-10,[class~=col-].col-11,[class~=col-].col-12,[class~=col-].col-2,[class~=col-].col-3,[class~=col-].col-4,[class~=col-].col-5,[class~=col-].col-6,[class~=col-].col-7,[class~=col-].col-8,[class~=col-].col-9,[class~=col-].col-auto{-ms-flex:none;flex:none}.col-12{width:100%}.col-11{width:91.66666667%}.col-10{width:83.33333333%}.col-9{width:75%}.col-8{width:66.66666667%}.col-7{width:58.33333333%}.col-6{width:50%}.col-5{width:41.66666667%}.col-4{width:33.33333333%}.col-3{width:25%}.col-2{width:16.66666667%}.col-1{width:8.33333333%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.col-mx-auto{margin-left:auto;margin-right:auto}.col-ml-auto{margin-left:auto}.col-mr-auto{margin-right:auto}@media (max-width:1280px){.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{-ms-flex:none;flex:none}.col-xl-12{width:100%}.col-xl-11{width:91.66666667%}.col-xl-10{width:83.33333333%}.col-xl-9{width:75%}.col-xl-8{width:66.66666667%}.col-xl-7{width:58.33333333%}.col-xl-6{width:50%}.col-xl-5{width:41.66666667%}.col-xl-4{width:33.33333333%}.col-xl-3{width:25%}.col-xl-2{width:16.66666667%}.col-xl-1{width:8.33333333%}.col-xl-auto{width:auto}.hide-xl{display:none!important}.show-xl{display:block!important}}@media (max-width:960px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto{-ms-flex:none;flex:none}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-auto{width:auto}.hide-lg{display:none!important}.show-lg{display:block!important}}@media (max-width:840px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto{-ms-flex:none;flex:none}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-auto{width:auto}.hide-md{display:none!important}.show-md{display:block!important}}@media (max-width:600px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto{-ms-flex:none;flex:none}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-auto{width:auto}.hide-sm{display:none!important}.show-sm{display:block!important}}@media (max-width:480px){.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-auto{-ms-flex:none;flex:none}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-auto{width:auto}.hide-xs{display:none!important}.show-xs{display:block!important}}.hero{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:4rem;padding-top:4rem}.hero.hero-sm{padding-bottom:2rem;padding-top:2rem}.hero.hero-lg{padding-bottom:8rem;padding-top:8rem}.hero .hero-body{padding:.4rem}.navbar{align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-align:stretch;-ms-flex-pack:justify;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.navbar .navbar-section{align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 0 0;flex:1 0 0;-ms-flex-align:center}.navbar .navbar-section:not(:first-child):last-child{-ms-flex-pack:end;justify-content:flex-end}.navbar .navbar-center{align-items:center;display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-align:center}.navbar .navbar-brand{font-size:.9rem;text-decoration:none}.accordion input:checked~.accordion-header>.icon:first-child,.accordion[open] .accordion-header>.icon:first-child{transform:rotate(90deg)}.accordion input:checked~.accordion-body,.accordion[open] .accordion-body{max-height:50rem}.accordion .accordion-header{display:block;padding:.2rem .4rem}.accordion .accordion-header .icon{transition:transform .25s}.accordion .accordion-body{margin-bottom:.4rem;max-height:0;overflow:hidden;transition:max-height .25s}summary.accordion-header::-webkit-details-marker{display:none}.avatar{background:#5755d9;border-radius:50%;color:rgba(255,255,255,.85);display:inline-block;font-size:.8rem;font-weight:300;height:1.6rem;line-height:1.25;margin:0;position:relative;vertical-align:middle;width:1.6rem}.avatar.avatar-xs{font-size:.4rem;height:.8rem;width:.8rem}.avatar.avatar-sm{font-size:.6rem;height:1.2rem;width:1.2rem}.avatar.avatar-lg{font-size:1.2rem;height:2.4rem;width:2.4rem}.avatar.avatar-xl{font-size:1.6rem;height:3.2rem;width:3.2rem}.avatar img{border-radius:50%;height:100%;position:relative;width:100%;z-index:1}.avatar .avatar-icon,.avatar .avatar-presence{background:#fff;bottom:14.64%;height:50%;padding:.1rem;position:absolute;right:14.64%;transform:translate(50%,50%);width:50%;z-index:2}.avatar .avatar-presence{background:#bcc3ce;border-radius:50%;box-shadow:0 0 0 .1rem #fff;height:.5em;width:.5em}.avatar .avatar-presence.online{background:#32b643}.avatar .avatar-presence.busy{background:#e85600}.avatar .avatar-presence.away{background:#ffb700}.avatar[data-initial]::before{color:currentColor;content:attr(data-initial);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:1}.badge{position:relative;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge]::after{background:#5755d9;background-clip:padding-box;border-radius:.5rem;box-shadow:0 0 0 .1rem #fff;color:#fff;content:attr(data-badge);display:inline-block;transform:translate(-.05rem,-.5rem)}.badge[data-badge]::after{font-size:.7rem;height:.9rem;line-height:1;min-width:.9rem;padding:.1rem .2rem;text-align:center;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge=""]::after{height:6px;min-width:6px;padding:0;width:6px}.badge.btn::after{position:absolute;right:0;top:0;transform:translate(50%,-50%)}.badge.avatar::after{position:absolute;right:14.64%;top:14.64%;transform:translate(50%,-50%);z-index:100}.breadcrumb{list-style:none;margin:.2rem 0;padding:.2rem 0}.breadcrumb .breadcrumb-item{color:#66758c;display:inline-block;margin:0;padding:.2rem 0}.breadcrumb .breadcrumb-item:not(:last-child){margin-right:.2rem}.breadcrumb .breadcrumb-item:not(:last-child) a{color:#66758c}.breadcrumb .breadcrumb-item:not(:first-child)::before{color:#66758c;content:"/";padding-right:.4rem}.bar{background:#eef0f3;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:.8rem;width:100%}.bar.bar-sm{height:.2rem}.bar .bar-item{background:#5755d9;color:#fff;display:block;-ms-flex-negative:0;flex-shrink:0;font-size:.7rem;height:100%;line-height:.8rem;position:relative;text-align:center;width:0}.bar .bar-item:first-child{border-bottom-left-radius:.1rem;border-top-left-radius:.1rem}.bar .bar-item:last-child{border-bottom-right-radius:.1rem;border-top-right-radius:.1rem;-ms-flex-negative:1;flex-shrink:1}.bar-slider{height:.1rem;margin:.4rem 0;position:relative}.bar-slider .bar-item{left:0;padding:0;position:absolute}.bar-slider .bar-item:not(:last-child):first-child{background:#eef0f3;z-index:1}.bar-slider .bar-slider-btn{background:#5755d9;border:0;border-radius:50%;height:.6rem;padding:0;position:absolute;right:0;top:50%;transform:translate(50%,-50%);width:.6rem}.bar-slider .bar-slider-btn:active{box-shadow:0 0 0 .1rem #5755d9}.card{background:#fff;border:.05rem solid #dadee4;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card .card-body,.card .card-footer,.card .card-header{padding:.8rem;padding-bottom:0}.card .card-body:last-child,.card .card-footer:last-child,.card .card-header:last-child{padding-bottom:.8rem}.card .card-body{-ms-flex:1 1 auto;flex:1 1 auto}.card .card-image{padding-top:.8rem}.card .card-image:first-child{padding-top:0}.card .card-image:first-child img{border-top-left-radius:.1rem;border-top-right-radius:.1rem}.card .card-image:last-child img{border-bottom-left-radius:.1rem;border-bottom-right-radius:.1rem}.chip{align-items:center;background:#eef0f3;border-radius:5rem;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;font-size:90%;height:1.2rem;line-height:.8rem;margin:.1rem;max-width:320px;overflow:hidden;padding:.2rem .4rem;text-decoration:none;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap}.chip.active{background:#5755d9;color:#fff}.chip .avatar{margin-left:-.4rem;margin-right:.2rem}.chip .btn-clear{border-radius:50%;transform:scale(.75)}.dropdown{display:inline-block;position:relative}.dropdown .menu{animation:slide-down .15s ease 1;display:none;left:0;max-height:50vh;overflow-y:auto;position:absolute;top:100%}.dropdown.dropdown-right .menu{left:auto;right:0}.dropdown .dropdown-toggle:focus+.menu,.dropdown .menu:hover,.dropdown.active .menu{display:block}.dropdown .btn-group .dropdown-toggle:nth-last-child(2){border-bottom-right-radius:.1rem;border-top-right-radius:.1rem}.empty{background:#f7f8f9;border-radius:.1rem;color:#66758c;padding:3.2rem 1.6rem;text-align:center}.empty .empty-icon{margin-bottom:.8rem}.empty .empty-subtitle,.empty .empty-title{margin:.4rem auto}.empty .empty-action{margin-top:.8rem}.menu{background:#fff;border-radius:.1rem;box-shadow:0 .05rem .2rem rgba(48,55,66,.3);list-style:none;margin:0;min-width:180px;padding:.4rem;transform:translateY(.2rem);z-index:300}.menu.menu-nav{background:0 0;box-shadow:none}.menu .menu-item{margin-top:0;padding:0 .4rem;position:relative;text-decoration:none}.menu .menu-item>a{border-radius:.1rem;color:inherit;display:block;margin:0 -.4rem;padding:.2rem .4rem;text-decoration:none}.menu .menu-item>a:focus,.menu .menu-item>a:hover{background:#f1f1fc;color:#5755d9}.menu .menu-item>a.active,.menu .menu-item>a:active{background:#f1f1fc;color:#5755d9}.menu .menu-item .form-checkbox,.menu .menu-item .form-radio,.menu .menu-item .form-switch{margin:.1rem 0}.menu .menu-item+.menu-item{margin-top:.2rem}.menu .menu-badge{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;height:100%;position:absolute;right:0;top:0}.menu .menu-badge .label{margin-right:.4rem}.modal{align-items:center;bottom:0;display:none;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center;left:0;opacity:0;overflow:hidden;padding:.4rem;position:fixed;right:0;top:0}.modal.active,.modal:target{display:-ms-flexbox;display:flex;opacity:1;z-index:400}.modal.active .modal-overlay,.modal:target .modal-overlay{background:rgba(247,248,249,.75);bottom:0;cursor:default;display:block;left:0;position:absolute;right:0;top:0}.modal.active .modal-container,.modal:target .modal-container{animation:slide-down .2s ease 1;z-index:1}.modal.modal-sm .modal-container{max-width:320px;padding:0 .4rem}.modal.modal-lg .modal-overlay{background:#fff}.modal.modal-lg .modal-container{box-shadow:none;max-width:960px}.modal-container{background:#fff;border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(48,55,66,.3);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;max-height:75vh;max-width:640px;padding:0 .8rem;width:100%}.modal-container.modal-fullheight{max-height:100vh}.modal-container .modal-header{color:#303742;padding:.8rem}.modal-container .modal-body{overflow-y:auto;padding:.8rem;position:relative}.modal-container .modal-footer{padding:.8rem;text-align:right}.nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;list-style:none;margin:.2rem 0}.nav .nav-item a{color:#66758c;padding:.2rem .4rem;text-decoration:none}.nav .nav-item a:focus,.nav .nav-item a:hover{color:#5755d9}.nav .nav-item.active>a{color:#505c6e;font-weight:700}.nav .nav-item.active>a:focus,.nav .nav-item.active>a:hover{color:#5755d9}.nav .nav{margin-bottom:.4rem;margin-left:.8rem}.pagination{display:-ms-flexbox;display:flex;list-style:none;margin:.2rem 0;padding:.2rem 0}.pagination .page-item{margin:.2rem .05rem}.pagination .page-item span{display:inline-block;padding:.2rem .2rem}.pagination .page-item a{border-radius:.1rem;display:inline-block;padding:.2rem .4rem;text-decoration:none}.pagination .page-item a:focus,.pagination .page-item a:hover{color:#5755d9}.pagination .page-item.disabled a{cursor:default;opacity:.5;pointer-events:none}.pagination .page-item.active a{background:#5755d9;color:#fff}.pagination .page-item.page-next,.pagination .page-item.page-prev{-ms-flex:1 0 50%;flex:1 0 50%}.pagination .page-item.page-next{text-align:right}.pagination .page-item .page-item-title{margin:0}.pagination .page-item .page-item-subtitle{margin:0;opacity:.5}.panel{border:.05rem solid #dadee4;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.panel .panel-footer,.panel .panel-header{-ms-flex:0 0 auto;flex:0 0 auto;padding:.8rem}.panel .panel-nav{-ms-flex:0 0 auto;flex:0 0 auto}.panel .panel-body{-ms-flex:1 1 auto;flex:1 1 auto;overflow-y:auto;padding:0 .8rem}.popover{display:inline-block;position:relative}.popover .popover-container{left:50%;opacity:0;padding:.4rem;position:absolute;top:0;transform:translate(-50%,-50%) scale(0);transition:transform .2s;width:320px;z-index:300}.popover :focus+.popover-container,.popover:hover .popover-container{display:block;opacity:1;transform:translate(-50%,-100%) scale(1)}.popover.popover-right .popover-container{left:100%;top:50%}.popover.popover-right :focus+.popover-container,.popover.popover-right:hover .popover-container{transform:translate(0,-50%) scale(1)}.popover.popover-bottom .popover-container{left:50%;top:100%}.popover.popover-bottom :focus+.popover-container,.popover.popover-bottom:hover .popover-container{transform:translate(-50%,0) scale(1)}.popover.popover-left .popover-container{left:0;top:50%}.popover.popover-left :focus+.popover-container,.popover.popover-left:hover .popover-container{transform:translate(-100%,-50%) scale(1)}.popover .card{border:0;box-shadow:0 .2rem .5rem rgba(48,55,66,.3)}.step{display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;list-style:none;margin:.2rem 0;width:100%}.step .step-item{-ms-flex:1 1 0;flex:1 1 0;margin-top:0;min-height:1rem;position:relative;text-align:center}.step .step-item:not(:first-child)::before{background:#5755d9;content:"";height:2px;left:-50%;position:absolute;top:9px;width:100%}.step .step-item a{color:#5755d9;display:inline-block;padding:20px 10px 0;text-decoration:none}.step .step-item a::before{background:#5755d9;border:.1rem solid #fff;border-radius:50%;content:"";display:block;height:.6rem;left:50%;position:absolute;top:.2rem;transform:translateX(-50%);width:.6rem;z-index:1}.step .step-item.active a::before{background:#fff;border:.1rem solid #5755d9}.step .step-item.active~.step-item::before{background:#dadee4}.step .step-item.active~.step-item a{color:#bcc3ce}.step .step-item.active~.step-item a::before{background:#dadee4}.tab{align-items:center;border-bottom:.05rem solid #dadee4;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin:.2rem 0 .15rem 0}.tab .tab-item{margin-top:0}.tab .tab-item a{border-bottom:.1rem solid transparent;color:inherit;display:block;margin:0 .4rem 0 0;padding:.4rem .2rem .3rem .2rem;text-decoration:none}.tab .tab-item a:focus,.tab .tab-item a:hover{color:#5755d9}.tab .tab-item a.active,.tab .tab-item.active a{border-bottom-color:#5755d9;color:#5755d9}.tab .tab-item.tab-action{-ms-flex:1 0 auto;flex:1 0 auto;text-align:right}.tab .tab-item .btn-clear{margin-top:-.2rem}.tab.tab-block .tab-item{-ms-flex:1 0 0;flex:1 0 0;text-align:center}.tab.tab-block .tab-item a{margin:0}.tab.tab-block .tab-item .badge[data-badge]::after{position:absolute;right:.1rem;top:.1rem;transform:translate(0,0)}.tab:not(.tab-block) .badge{padding-right:0}.tile{align-content:space-between;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-align:start;-ms-flex-line-pack:justify}.tile .tile-action,.tile .tile-icon{-ms-flex:0 0 auto;flex:0 0 auto}.tile .tile-content{-ms-flex:1 1 auto;flex:1 1 auto}.tile .tile-content:not(:first-child){padding-left:.4rem}.tile .tile-content:not(:last-child){padding-right:.4rem}.tile .tile-subtitle,.tile .tile-title{line-height:1.2rem}.tile.tile-centered{align-items:center;-ms-flex-align:center}.tile.tile-centered .tile-content{overflow:hidden}.tile.tile-centered .tile-subtitle,.tile.tile-centered .tile-title{margin-bottom:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.toast{background:rgba(48,55,66,.95);border:.05rem solid #303742;border-color:#303742;border-radius:.1rem;color:#fff;display:block;padding:.4rem;width:100%}.toast.toast-primary{background:rgba(87,85,217,.95);border-color:#5755d9}.toast.toast-success{background:rgba(50,182,67,.95);border-color:#32b643}.toast.toast-warning{background:rgba(255,183,0,.95);border-color:#ffb700}.toast.toast-error{background:rgba(232,86,0,.95);border-color:#e85600}.toast a{color:#fff;text-decoration:underline}.toast a.active,.toast a:active,.toast a:focus,.toast a:hover{opacity:.75}.toast .btn-clear{margin:.1rem}.toast p:last-child{margin-bottom:0}.tooltip{position:relative}.tooltip::after{background:rgba(48,55,66,.95);border-radius:.1rem;bottom:100%;color:#fff;content:attr(data-tooltip);display:block;font-size:.7rem;left:50%;max-width:320px;opacity:0;overflow:hidden;padding:.2rem .4rem;pointer-events:none;position:absolute;text-overflow:ellipsis;transform:translate(-50%,.4rem);transition:opacity .2s,transform .2s;white-space:pre;z-index:300}.tooltip:focus::after,.tooltip:hover::after{opacity:1;transform:translate(-50%,-.2rem)}.tooltip.disabled,.tooltip[disabled]{pointer-events:auto}.tooltip.tooltip-right::after{bottom:50%;left:100%;transform:translate(-.2rem,50%)}.tooltip.tooltip-right:focus::after,.tooltip.tooltip-right:hover::after{transform:translate(.2rem,50%)}.tooltip.tooltip-bottom::after{bottom:auto;top:100%;transform:translate(-50%,-.4rem)}.tooltip.tooltip-bottom:focus::after,.tooltip.tooltip-bottom:hover::after{transform:translate(-50%,.2rem)}.tooltip.tooltip-left::after{bottom:50%;left:auto;right:100%;transform:translate(.4rem,50%)}.tooltip.tooltip-left:focus::after,.tooltip.tooltip-left:hover::after{transform:translate(-.2rem,50%)}@keyframes loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes slide-down{0%{opacity:0;transform:translateY(-1.6rem)}100%{opacity:1;transform:translateY(0)}}.text-primary{color:#5755d9!important}a.text-primary:focus,a.text-primary:hover{color:#4240d4}a.text-primary:visited{color:#6c6ade}.text-secondary{color:#e5e5f9!important}a.text-secondary:focus,a.text-secondary:hover{color:#d1d0f4}a.text-secondary:visited{color:#fafafe}.text-gray{color:#bcc3ce!important}a.text-gray:focus,a.text-gray:hover{color:#adb6c4}a.text-gray:visited{color:#cbd0d9}.text-light{color:#fff!important}a.text-light:focus,a.text-light:hover{color:#f2f2f2}a.text-light:visited{color:#fff}.text-dark{color:#3b4351!important}a.text-dark:focus,a.text-dark:hover{color:#303742}a.text-dark:visited{color:#455060}.text-success{color:#32b643!important}a.text-success:focus,a.text-success:hover{color:#2da23c}a.text-success:visited{color:#39c94b}.text-warning{color:#ffb700!important}a.text-warning:focus,a.text-warning:hover{color:#e6a500}a.text-warning:visited{color:#ffbe1a}.text-error{color:#e85600!important}a.text-error:focus,a.text-error:hover{color:#cf4d00}a.text-error:visited{color:#ff6003}.bg-primary{background:#5755d9!important;color:#fff}.bg-secondary{background:#f1f1fc!important}.bg-dark{background:#303742!important;color:#fff}.bg-gray{background:#f7f8f9!important}.bg-success{background:#32b643!important;color:#fff}.bg-warning{background:#ffb700!important;color:#fff}.bg-error{background:#e85600!important;color:#fff}.c-hand{cursor:pointer}.c-move{cursor:move}.c-zoom-in{cursor:zoom-in}.c-zoom-out{cursor:zoom-out}.c-not-allowed{cursor:not-allowed}.c-auto{cursor:auto}.d-block{display:block}.d-inline{display:inline}.d-inline-block{display:inline-block}.d-flex{display:-ms-flexbox;display:flex}.d-inline-flex{display:-ms-inline-flexbox;display:inline-flex}.d-hide,.d-none{display:none!important}.d-visible{visibility:visible}.d-invisible{visibility:hidden}.text-hide{background:0 0;border:0;color:transparent;font-size:0;line-height:0;text-shadow:none}.text-assistive{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.divider,.divider-vert{display:block;position:relative}.divider-vert[data-content]::after,.divider[data-content]::after{background:#fff;color:#bcc3ce;content:attr(data-content);display:inline-block;font-size:.7rem;padding:0 .4rem;transform:translateY(-.65rem)}.divider{border-top:.05rem solid #f1f3f5;height:.05rem;margin:.4rem 0}.divider[data-content]{margin:.8rem 0}.divider-vert{display:block;padding:.8rem}.divider-vert::before{border-left:.05rem solid #dadee4;bottom:.4rem;content:"";display:block;left:50%;position:absolute;top:.4rem;transform:translateX(-50%)}.divider-vert[data-content]::after{left:50%;padding:.2rem 0;position:absolute;top:50%;transform:translate(-50%,-50%)}.loading{color:transparent!important;min-height:.8rem;pointer-events:none;position:relative}.loading::after{animation:loading .5s infinite linear;background:0 0;border:.1rem solid #5755d9;border-radius:50%;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:.8rem;left:50%;margin-left:-.4rem;margin-top:-.4rem;opacity:1;padding:0;position:absolute;top:50%;width:.8rem;z-index:1}.loading.loading-lg{min-height:2rem}.loading.loading-lg::after{height:1.6rem;margin-left:-.8rem;margin-top:-.8rem;width:1.6rem}.clearfix::after{clear:both;content:"";display:table}.float-left{float:left!important}.float-right{float:right!important}.p-relative{position:relative!important}.p-absolute{position:absolute!important}.p-fixed{position:fixed!important}.p-sticky{position:-webkit-sticky!important;position:sticky!important}.p-centered{display:block;float:none;margin-left:auto;margin-right:auto}.flex-centered{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center}.m-0{margin:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mr-0{margin-right:0!important}.mt-0{margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.m-1{margin:.2rem!important}.mb-1{margin-bottom:.2rem!important}.ml-1{margin-left:.2rem!important}.mr-1{margin-right:.2rem!important}.mt-1{margin-top:.2rem!important}.mx-1{margin-left:.2rem!important;margin-right:.2rem!important}.my-1{margin-bottom:.2rem!important;margin-top:.2rem!important}.m-2{margin:.4rem!important}.mb-2{margin-bottom:.4rem!important}.ml-2{margin-left:.4rem!important}.mr-2{margin-right:.4rem!important}.mt-2{margin-top:.4rem!important}.mx-2{margin-left:.4rem!important;margin-right:.4rem!important}.my-2{margin-bottom:.4rem!important;margin-top:.4rem!important}.p-0{padding:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.pr-0{padding-right:0!important}.pt-0{padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.p-1{padding:.2rem!important}.pb-1{padding-bottom:.2rem!important}.pl-1{padding-left:.2rem!important}.pr-1{padding-right:.2rem!important}.pt-1{padding-top:.2rem!important}.px-1{padding-left:.2rem!important;padding-right:.2rem!important}.py-1{padding-bottom:.2rem!important;padding-top:.2rem!important}.p-2{padding:.4rem!important}.pb-2{padding-bottom:.4rem!important}.pl-2{padding-left:.4rem!important}.pr-2{padding-right:.4rem!important}.pt-2{padding-top:.4rem!important}.px-2{padding-left:.4rem!important;padding-right:.4rem!important}.py-2{padding-bottom:.4rem!important;padding-top:.4rem!important}.s-rounded{border-radius:.1rem}.s-circle{border-radius:50%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-normal{font-weight:400}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-large{font-size:1.2em}.text-small{font-size:.9em}.text-tiny{font-size:.8em}.text-muted{opacity:.8}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-clip{overflow:hidden;text-overflow:clip;white-space:nowrap}.text-break{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word} \ No newline at end of file diff --git a/src/licensedcode/static/spectre-0.5.9.min.css.ABOUT b/src/licensedcode/static/spectre-0.5.9.min.css.ABOUT new file mode 100644 index 00000000000..97475b57377 --- /dev/null +++ b/src/licensedcode/static/spectre-0.5.9.min.css.ABOUT @@ -0,0 +1,13 @@ +about_resource: spectre-0.5.9.min.css +name: spectre.css +version: 0.5.9 +download_url: https://github.com/picturepan2/spectre/archive/v0.5.9.zip +description: 'Spectre.css: A lightweight, responsive and modern CSS framework' +homepage_url: http://picturepan2.github.io/spectre +license_expression: mit +attribute: yes +package_url: pkg:npm/spectre.css@0.5.9 +licenses: + - key: mit + name: MIT License + file: mit.LICENSE diff --git a/src/licensedcode/templates/base.html b/src/licensedcode/templates/base.html new file mode 100644 index 00000000000..55d2803c87e --- /dev/null +++ b/src/licensedcode/templates/base.html @@ -0,0 +1,31 @@ + + + + + + {% block title %}{% endblock %} + + + + {% block extrahead %}{% endblock %} + + + {% include 'header.html' %} + {% block content %}{% endblock %} + {% include 'footer.html' %} + {% block scripts %}{% endblock %} + + \ No newline at end of file diff --git a/src/licensedcode/templates/footer.html b/src/licensedcode/templates/footer.html new file mode 100644 index 00000000000..43eec32c6fb --- /dev/null +++ b/src/licensedcode/templates/footer.html @@ -0,0 +1,12 @@ +
+ +
\ No newline at end of file diff --git a/src/licensedcode/templates/header.html b/src/licensedcode/templates/header.html new file mode 100644 index 00000000000..d350fd3bea1 --- /dev/null +++ b/src/licensedcode/templates/header.html @@ -0,0 +1,17 @@ +
+ +
\ No newline at end of file diff --git a/src/licensedcode/templates/help.html b/src/licensedcode/templates/help.html new file mode 100644 index 00000000000..6e7edf2f8a7 --- /dev/null +++ b/src/licensedcode/templates/help.html @@ -0,0 +1,199 @@ +{% extends "base.html" %} + +{% block title %}LicenseDB: Help{% endblock %} + +{% block content %} +
+ + +

+ Field Definitions +

+
+
key
+
+ The unique identifier for the license in the ScanCode LicenseDB as assigned by scancode-toolkit. + Note that this identifier is permanent and never changes and never goes away once published: no license key is ever deleted. + Instead a license can be marked as deprecated. +
+ +
short_name
+
A short descriptive name (title) for the license in the ScanCode LicenseDB as assigned by scancode-toolkit.
+ +
name
+
A long name for the license in the ScanCode LicenseDB as assigned by scancode-toolkit.
+ +
is_deprecated
+
+ When this is “yes”, the license is no longer used. For deprecated licenses, the notes may contain commentaries + and the license key that this license may be replaced by when relevant. +
+ +
spdx_license_key
+
+ The SPDX Short Identifier for the license if it exists in the SPDX license list at + https://spdx.org/licenses/. + Otherwise this is an SPDX license reference in the form of LicenseRef-scancode-<license key>. +
+ +
other_spdx_license_keys
+
Alternative (or older, deprecated or obsolete) SPDX Short Identifiers or LicenseRef for the license.
+ +
text_urls
+
URLs to the standard text of the license.
+ +
notes
+
Notes and comments about the license.
+ +
category
+
+ A license category code, assigned by scancode-toolkit, that provides a major grouping for licenses, + generally describing the relationship between the licensor and the licensee. These license categories are not + legally precise, and are only intended to support Software Composition Analysis and usage policy implementations. +
+ +
owner
+
+ An owner is an entity that is the original author or custodian of a software license, and which may be responsible + for the text of the license. This is mandatory and should be set to "Unspecified" if it cannot be determined. +
+ +
homepage_url
+
The homepage URL where the license is described.
+ +
other_urls
+
+ Other URLs that identify or are related to this license, such as URLs to this license in different open-source projects. + Obsolete links may be kept here, as they may be useful for historical analysis purposes. +
+ +
osi_license_key
+
The identifier assigned by the OSI to a license for OSI-approved licenses.
+ +
osi_url
+
A URL on the OSI website http://opensource.org for OSI-approved licenses.
+ +
faq_url
+
A URL that provides answers to frequently asked questions about the license.
+ +
is_exception
+
+ When this is "yes", indicates that this license is actually an exception applied to another license in order to + modify specific conditions of that other license. +
+ +
standard_notice
+
The standard text to provide in source or documentation that identifies the license or exception that applies to the software.
+
+ +
These fields are used only to support certain technical aspects of code scanning:
+
+
ignorable_urls
+
URLs found in the license text but that can be ignored when scanning for URLs.
+ +
ignorable_emails
+
Email addresses found in the license text but that can be ignored when scanning for emails.
+ +
ignorable_copyrights
+
Copyright statements found in the license text but that can be ignored when scanning for copyright.
+ +
ignorable_holders
+
Copyright holders found in the license text but that can be ignored when scanning for copyright holders.
+ +
ignorable_authors
+
Author names found in the license text but that can be ignored when scanning for authors.
+ +
minimum_coverage
+
Minimum percentage of the license text words that need to be matched to consider a license detection as a valid match.
+
+ +
+

+ License Categories +

+
+
Commercial
+
+ A direct commercial license between a supplier and a customer. + Further fact-finding by a Product Team will be necessary to determine how the license conditions apply to use of the software. + This is a Proprietary license that is not Open Source. +
+ +
Copyleft
+
+ A license that offers irrevocable permission to the public to copy and redistribute the work in the same or modified form, + but with the conditions that all such redistributions make the work available in a form that facilitates further modification + and uses the same license terms. A Copyleft license can require code interacting with Copyleft-licensed code to be licensed under + the same license or a compatible license. This is an Open Source license. This category may be described as “Strong Copyleft”. +
+ +
Copyleft Limited
+
+ A license that requires you to redistribute source code, including your changes, and to provide attribution for the software authors. + Your obligation to redistribute source code, including proprietary code linked with code under this license, + is limited according to license-specific rules. This is an Open Source license. This category may be described as “Weak Copyleft”. +
+ +
Free Restricted
+
+ A Permissive-style license that contains restrictions regarding the usage of the software (e.g. where the software is not + intended for use in nuclear power plants) or the redistribution of the software (e.g. where commercial redistribution of + the software is not allowed or allowed only with express permission). The Free Software Foundation (FSF) says that a license + with this kind of restriction is not really open source, although the OSI point of view is not that strict. + This is a Proprietary license that is not Open Source. +
+ +
Patent License
+
+ A license that applies to patents rather than specific software. May be used in conjunction with other software license(s) that + apply to a software component. +
+ +
Permissive
+
+ A license that requires you to provide attribution for the software authors and may include other conditions. + This is an Open Source license. +
+ +
Proprietary Free
+
+ A license that does not require a supplier-customer contract, but has specific terms and conditions which a Product Team + is obligated to follow. These terms and conditions may be documented in the code and/or from a webpage where you must accept + the license (i.e. click-through). This is a Proprietary license that is not Open Source. +
+ +
Public Domain
+
+ “Public Domain” as a license category means software that is not restricted by copyright. + This is most often applicable to a software component because the person entitled to control the copyright has disclaimed that + right in a notice (“dedication”) that appears similar to a license. It is possible for software to be in the public domain + because the copyright has expired, but this is rarely relevant for software due to the long duration of copyrights in most jurisdictions. + The rules for disclaiming copyright and copyright expiration dates vary widely by jurisdiction. + A public domain dedication may apply to software code examples on a website, published public domain specifications or + another type of publication. Public Domain is typically treated as similar to an Open Source license even though it is not an + Open Source license. +
+ +
Source-available
+
+ A license where the software is released through a source code distribution model that includes conditions where the source + can be viewed, and in some cases modified, but without meeting the criteria to be called Open Source. + The most common restriction is for “field of use”. This is a Proprietary license that is not Open Source. +
+ +
Unstated License
+
+ “Unstated License” as a license category means third-party software that has a copyright notice, but no stated license. + Common examples include code snippets from publications and websites. The absence of a license poses a risk that the copyright + owner may assert license conditions at some future time. A Product Team may need to contact the copyright owner to determine the + license conditions, if any. +
+
+
+{% endblock %} \ No newline at end of file diff --git a/src/licensedcode/templates/license_details.html b/src/licensedcode/templates/license_details.html new file mode 100644 index 00000000000..687df86de76 --- /dev/null +++ b/src/licensedcode/templates/license_details.html @@ -0,0 +1,62 @@ +{% extends "base.html" %} + +{% block title %}LicenseDB: {{ license.key }}{% endblock %} + +{% block extrahead %} + + +{% endblock %} + +{% block content %} +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ {% for label, value in license_data.items() %} +
{{ label }}
+
+ {% if value is iterable and value is not string %} +
    + {% for item in value %}
  • {{ item|urlize(target='_blank') }}
  • {% endfor %} +
+ {% else %} + {{ value|urlize(target='_blank') }} + {% endif %} +
+ {% endfor %} +
+
license_text
+
{{ license.text }}
+
+{% endblock %} + +{% block scripts %} + +{% endblock %} \ No newline at end of file diff --git a/src/licensedcode/templates/license_list.html b/src/licensedcode/templates/license_list.html new file mode 100644 index 00000000000..d6c789a47d5 --- /dev/null +++ b/src/licensedcode/templates/license_list.html @@ -0,0 +1,120 @@ +{% extends "base.html" %} + +{% block title %}LicenseDB{% endblock %} + +{% block extrahead %} + + +{% endblock %} + +{% block content %} +
+
+ + + + + + + + + + + + {% for key, license in licenses.items() %} + + + + + + + + {% endfor %} + + +
+{% endblock %} + +{% block scripts %} + +{% endblock %} \ No newline at end of file diff --git a/src/scancode/cli_test_utils.py b/src/scancode/cli_test_utils.py index 1611bebfe19..16bd2f2358f 100644 --- a/src/scancode/cli_test_utils.py +++ b/src/scancode/cli_test_utils.py @@ -17,6 +17,7 @@ from packageurl import PackageURL from scancode_config import scancode_root_dir +from scancode_config import REGEN_TEST_FIXTURES def run_scan_plain( @@ -391,3 +392,32 @@ def streamline_jsonlines_scan(scan_result, remove_file_date=False): for scanned_file in result_line.get('files', []): streamline_scanned_file(scanned_file, remove_file_date) + + +def check_json(expected, results, regen=REGEN_TEST_FIXTURES): + """ + Assert if the results JSON file is the same as the expected JSON file. + """ + if regen: + mode = 'w' + with open(expected, mode) as ex: + json.dump(results, ex, indent=2, separators=(',', ': ')) + with open(expected) as ex: + expected = json.load(ex) + assert results == expected + + +def load_both_and_check_json(expected, results, regen=REGEN_TEST_FIXTURES): + """ + Assert if the results JSON file is the same as the expected JSON file. + """ + with open(results) as res: + results = json.load(res) + + if regen: + mode = 'w' + with open(expected, mode) as ex: + json.dump(results, ex, indent=2, separators=(',', ': ')) + with open(expected) as ex: + expected = json.load(ex) + assert results == expected \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example1.LICENSE b/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example1.LICENSE index 8fe2a4b5ad1..a5ad26ef812 100644 --- a/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example1.LICENSE +++ b/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example1.LICENSE @@ -1 +1,10 @@ +--- +key: example1 +short_name: Example External License 1 +name: Example External License 1 +category: Permissive +owner: NexB +spdx_license_key: scancode-example1 +--- + The quick brown fox jumps over the lazy dog. \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example1.yml b/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example1.yml deleted file mode 100644 index 0977bcdb733..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example1.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: example1 -short_name: Example External License 1 -name: Example External License 1 -category: Permissive -owner: NexB -spdx_license_key: scancode-example1 diff --git a/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example2.LICENSE b/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example2.LICENSE index 4abca0c149f..709c9cec23e 100644 --- a/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example2.LICENSE +++ b/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example2.LICENSE @@ -1,7 +1,16 @@ +--- +key: example2 +short_name: Example External License 2 +name: Example External License 2 +category: Permissive +owner: NexB +spdx_license_key: scancode-example2 +--- + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia -deserunt mollit anim id est laborum. +deserunt mollit anim id est laborum. \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example2.yml b/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example2.yml deleted file mode 100644 index 962caeb2f91..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_dir/licenses/example2.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: example2 -short_name: Example External License 2 -name: Example External License 2 -category: Permissive -owner: NexB -spdx_license_key: scancode-example2 diff --git a/tests/licensedcode/data/additional_licenses/additional_dir/rules/example1_1.RULE b/tests/licensedcode/data/additional_licenses/additional_dir/rules/example1_1.RULE index ef512c3e024..000d6961814 100644 --- a/tests/licensedcode/data/additional_licenses/additional_dir/rules/example1_1.RULE +++ b/tests/licensedcode/data/additional_licenses/additional_dir/rules/example1_1.RULE @@ -1,2 +1,7 @@ +--- +license_expression: example1 +is_license_text: yes +--- + The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_dir/rules/example1_1.yml b/tests/licensedcode/data/additional_licenses/additional_dir/rules/example1_1.yml deleted file mode 100644 index 96535e6c24b..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_dir/rules/example1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: example1 -is_license_text: yes \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_dir/rules/example2.RULE b/tests/licensedcode/data/additional_licenses/additional_dir/rules/example2.RULE index c27a1f5e008..22d270861cb 100644 --- a/tests/licensedcode/data/additional_licenses/additional_dir/rules/example2.RULE +++ b/tests/licensedcode/data/additional_licenses/additional_dir/rules/example2.RULE @@ -1 +1,6 @@ +--- +license_expression: example2 +is_license_text: yes +--- + Lorem ipsum dolor sit amet, consectetur adipiscing elit diff --git a/tests/licensedcode/data/additional_licenses/additional_dir/rules/example2.yml b/tests/licensedcode/data/additional_licenses/additional_dir/rules/example2.yml deleted file mode 100644 index 0a6aebb4284..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_dir/rules/example2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: example2 -is_license_text: yes \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/licenses/example-installed-1.LICENSE b/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/licenses/example-installed-1.LICENSE index f0455cbed1b..44a56b05e9b 100644 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/licenses/example-installed-1.LICENSE +++ b/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/licenses/example-installed-1.LICENSE @@ -1 +1,10 @@ -This is a test license that must be installed into ScanCode Toolkit. +--- +key: example-installed-1 +short_name: Example Installed License 1 +name: Example Installed License 1 +category: Permissive +owner: NexB +spdx_license_key: scancode-example-installed1 +--- + +This is a test license that must be installed into ScanCode Toolkit. \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/licenses/example-installed-1.yml b/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/licenses/example-installed-1.yml deleted file mode 100644 index df3f186d537..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/licenses/example-installed-1.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: example-installed-1 -short_name: Example Installed License 1 -name: Example Installed License 1 -category: Permissive -owner: NexB -spdx_license_key: scancode-example-installed1 diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/rules/example-installed-1.RULE b/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/rules/example-installed-1.RULE index bb701de0a88..00aed71138b 100644 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/rules/example-installed-1.RULE +++ b/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/rules/example-installed-1.RULE @@ -1 +1,6 @@ +--- +license_expression: example-installed-1 +is_license_text: yes +--- + This is a test rule that must be installed into ScanCode Toolkit. diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/rules/example-installed-1.yml b/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/rules/example-installed-1.yml deleted file mode 100644 index 77dde8a776f..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_1/src/licenses_to_install1/rules/example-installed-1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: example-installed-1 -is_license_text: yes diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/licenses/example-installed-2.LICENSE b/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/licenses/example-installed-2.LICENSE index 13658412786..e33bd7104d9 100644 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/licenses/example-installed-2.LICENSE +++ b/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/licenses/example-installed-2.LICENSE @@ -1 +1,10 @@ -This is a test license EXAMPLE2 that must be installed into ScanCode Toolkit. +--- +key: example-installed-2 +short_name: Example Installed License 2 +name: Example Installed License 2 +category: Permissive +owner: NexB +spdx_license_key: LicenseRef-scancode-example-installed2 +--- + +This is a test license EXAMPLE2 that must be installed into ScanCode Toolkit. \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/licenses/example-installed-2.yml b/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/licenses/example-installed-2.yml deleted file mode 100644 index 8eb9217e9a0..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/licenses/example-installed-2.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: example-installed-2 -short_name: Example Installed License 2 -name: Example Installed License 2 -category: Permissive -owner: NexB -spdx_license_key: LicenseRef-scancode-example-installed2 diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/rules/example-installed-2.RULE b/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/rules/example-installed-2.RULE index 3c54d093ef2..bb298d0f7ee 100644 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/rules/example-installed-2.RULE +++ b/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/rules/example-installed-2.RULE @@ -1 +1,6 @@ +--- +license_expression: example-installed-2 +is_license_text: yes +--- + This is a test rule EXAMPLE2 that must be installed into ScanCode Toolkit. diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/rules/example-installed-2.yml b/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/rules/example-installed-2.yml deleted file mode 100644 index fee21dca76e..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_2/build/lib/licenses_to_install2/rules/example-installed-2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: example-installed-2 -is_license_text: yes diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/licenses/example-installed-2.LICENSE b/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/licenses/example-installed-2.LICENSE index 13658412786..e33bd7104d9 100644 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/licenses/example-installed-2.LICENSE +++ b/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/licenses/example-installed-2.LICENSE @@ -1 +1,10 @@ -This is a test license EXAMPLE2 that must be installed into ScanCode Toolkit. +--- +key: example-installed-2 +short_name: Example Installed License 2 +name: Example Installed License 2 +category: Permissive +owner: NexB +spdx_license_key: LicenseRef-scancode-example-installed2 +--- + +This is a test license EXAMPLE2 that must be installed into ScanCode Toolkit. \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/licenses/example-installed-2.yml b/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/licenses/example-installed-2.yml deleted file mode 100644 index 8eb9217e9a0..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/licenses/example-installed-2.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: example-installed-2 -short_name: Example Installed License 2 -name: Example Installed License 2 -category: Permissive -owner: NexB -spdx_license_key: LicenseRef-scancode-example-installed2 diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/rules/example-installed-2.RULE b/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/rules/example-installed-2.RULE index 3c54d093ef2..bb298d0f7ee 100644 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/rules/example-installed-2.RULE +++ b/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/rules/example-installed-2.RULE @@ -1 +1,6 @@ +--- +license_expression: example-installed-2 +is_license_text: yes +--- + This is a test rule EXAMPLE2 that must be installed into ScanCode Toolkit. diff --git a/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/rules/example-installed-2.yml b/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/rules/example-installed-2.yml deleted file mode 100644 index fee21dca76e..00000000000 --- a/tests/licensedcode/data/additional_licenses/additional_plugin_2/src/licenses_to_install2/rules/example-installed-2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: example-installed-2 -is_license_text: yes diff --git a/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-apache-2.0.LICENSE b/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-apache-2.0.LICENSE index 7348616c691..8582f430602 100644 --- a/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-apache-2.0.LICENSE +++ b/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-apache-2.0.LICENSE @@ -1,5 +1,19 @@ +--- +key: test-apache-2.0 +short_name: Apache 2.0 +name: Apache License 2.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +spdx_license_key: Apache-2.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +osi_url: http://opensource.org/licenses/apache2.0.php +faq_url: http://www.apache.org/foundation/licence-FAQ.html +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-apache-2.0.yml b/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-apache-2.0.yml deleted file mode 100644 index bf429e47547..00000000000 --- a/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-apache-2.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: test-apache-2.0 -short_name: Apache 2.0 -name: Apache License 2.0 -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ -spdx_license_key: Apache-2.0 -text_urls: - - http://www.apache.org/licenses/LICENSE-2.0 -osi_url: http://opensource.org/licenses/apache2.0.php -faq_url: http://www.apache.org/foundation/licence-FAQ.html diff --git a/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-bsd-ack-carrot2.LICENSE b/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-bsd-ack-carrot2.LICENSE index 7348616c691..cd2ca7a7707 100644 --- a/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-bsd-ack-carrot2.LICENSE +++ b/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-bsd-ack-carrot2.LICENSE @@ -1,5 +1,9 @@ +--- +key: test-bsd-ack-carrot2 +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION \ No newline at end of file diff --git a/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-bsd-ack-carrot2.yml b/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-bsd-ack-carrot2.yml deleted file mode 100644 index 55ea8536e4b..00000000000 --- a/tests/licensedcode/data/additional_licenses/validate_licenses/licenses/test-bsd-ack-carrot2.yml +++ /dev/null @@ -1 +0,0 @@ -key: test-bsd-ack-carrot2 diff --git a/tests/licensedcode/data/cache/data/licenses/antlr-pd.LICENSE b/tests/licensedcode/data/cache/data/licenses/antlr-pd.LICENSE index 13ef5c13834..07b63859302 100644 --- a/tests/licensedcode/data/cache/data/licenses/antlr-pd.LICENSE +++ b/tests/licensedcode/data/cache/data/licenses/antlr-pd.LICENSE @@ -1,3 +1,20 @@ +--- +key: antlr-pd +short_name: ANTLR-PD +name: ANTLR Software Rights Notice +category: Permissive +owner: ANTLR +homepage_url: http://www.antlr2.org/ +notes: | + notes from SPDX: + ANTLR used this public domain notice through version 2.7 and then switched to a BSD license for version 3.0 and later. +spdx_license_key: ANTLR-PD +text_urls: + - http://www.antlr2.org/ +other_urls: + - http://www.spdx.org/licenses/ANTLR-PD +--- + ANTLR SOFTWARE RIGHTS ANTLR 1989-2006 Developed by Terence Parr diff --git a/tests/licensedcode/data/cache/data/licenses/antlr-pd.yml b/tests/licensedcode/data/cache/data/licenses/antlr-pd.yml deleted file mode 100644 index 9881cbf2685..00000000000 --- a/tests/licensedcode/data/cache/data/licenses/antlr-pd.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: antlr-pd -short_name: ANTLR-PD -name: ANTLR Software Rights Notice - -category: Permissive -owner: ANTLR -homepage_url: http://www.antlr2.org/ -notes: | - notes from SPDX: - ANTLR used this public domain notice through version 2.7 and then switched to a BSD license for version 3.0 and later. -spdx_license_key: ANTLR-PD -text_urls: - - http://www.antlr2.org/ -other_urls: - - http://www.spdx.org/licenses/ANTLR-PD diff --git a/tests/licensedcode/data/cache/data/licenses/anu-license.LICENSE b/tests/licensedcode/data/cache/data/licenses/anu-license.LICENSE index 6019d908f76..3536c3808ef 100644 --- a/tests/licensedcode/data/cache/data/licenses/anu-license.LICENSE +++ b/tests/licensedcode/data/cache/data/licenses/anu-license.LICENSE @@ -1,3 +1,15 @@ +--- +key: anu-license +spdx_license_key: licenseref-scancode-anu-license +short_name: ANU License +name: Australian National University License +category: Permissive +owner: ANU Data Mining Group +other_urls: + - http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/net/if_pppvar.h + - http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt +--- + Permission to use, copy, modify, and distribute this software and its documentation is hereby granted, provided that the above copyright notice appears in all copies. This software is provided without any warranty, express diff --git a/tests/licensedcode/data/cache/data/licenses/anu-license.yml b/tests/licensedcode/data/cache/data/licenses/anu-license.yml deleted file mode 100644 index 6abd0c4ffff..00000000000 --- a/tests/licensedcode/data/cache/data/licenses/anu-license.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: anu-license -short_name: ANU License -name: Australian National University License -spdx_license_key: LicenseRef-scancode-anu-license -category: Permissive -owner: ANU Data Mining Group -other_urls: - - http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/bsd/net/if_pppvar.h - - http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt diff --git a/tests/licensedcode/data/cache/data/licenses/apache-1.0.LICENSE b/tests/licensedcode/data/cache/data/licenses/apache-1.0.LICENSE index 7d908a5fc8d..6762f7461c8 100644 --- a/tests/licensedcode/data/cache/data/licenses/apache-1.0.LICENSE +++ b/tests/licensedcode/data/cache/data/licenses/apache-1.0.LICENSE @@ -1,3 +1,16 @@ +--- +key: apache-1.0 +short_name: Apache 1.0 +name: Apache License 1.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +spdx_license_key: Apache-1.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-1.0 +faq_url: http://www.apache.org/foundation/licence-FAQ.html +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/tests/licensedcode/data/cache/data/licenses/apache-1.0.yml b/tests/licensedcode/data/cache/data/licenses/apache-1.0.yml deleted file mode 100644 index b18021bc616..00000000000 --- a/tests/licensedcode/data/cache/data/licenses/apache-1.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: apache-1.0 -short_name: Apache 1.0 -name: Apache License 1.0 - -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ -spdx_license_key: Apache-1.0 -text_urls: - - http://www.apache.org/licenses/LICENSE-1.0 -faq_url: http://www.apache.org/foundation/licence-FAQ.html diff --git a/tests/licensedcode/data/cache/data/licenses/public-domain.LICENSE b/tests/licensedcode/data/cache/data/licenses/public-domain.LICENSE index a7a158b93c3..e13412dc121 100644 --- a/tests/licensedcode/data/cache/data/licenses/public-domain.LICENSE +++ b/tests/licensedcode/data/cache/data/licenses/public-domain.LICENSE @@ -1 +1,16 @@ +--- +key: public-domain +spdx_license_key: licenseref-scancode-public-domain +short_name: Public Domain +name: Public Domain +category: Public Domain +owner: Unspecified +homepage_url: http://www.linfo.org/publicdomain.html +faq_url: http://www.linfo.org/publicdomain.html +other_urls: + - http://creativecommons.org/licenses/publicdomain/ + - http://en.wikipedia.org/wiki/Public_domain + - http://www.linfo.org/publicdomain.html +--- + Public Domain \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/licenses/public-domain.yml b/tests/licensedcode/data/cache/data/licenses/public-domain.yml deleted file mode 100644 index 2f7a0734165..00000000000 --- a/tests/licensedcode/data/cache/data/licenses/public-domain.yml +++ /dev/null @@ -1,12 +0,0 @@ -key: public-domain -short_name: Public Domain -name: Public Domain -spdx_license_key: LicenseRef-scancode-public-domain -category: Public Domain -owner: Unspecified -homepage_url: http://www.linfo.org/publicdomain.html -faq_url: http://www.linfo.org/publicdomain.html -other_urls: - - http://creativecommons.org/licenses/publicdomain/ - - http://en.wikipedia.org/wiki/Public_domain - - http://www.linfo.org/publicdomain.html diff --git a/tests/licensedcode/data/cache/data/licenses/unknown-spdx.LICENSE b/tests/licensedcode/data/cache/data/licenses/unknown-spdx.LICENSE new file mode 100644 index 00000000000..8abcefae0b6 --- /dev/null +++ b/tests/licensedcode/data/cache/data/licenses/unknown-spdx.LICENSE @@ -0,0 +1,9 @@ +--- +key: unknown-spdx +spdx_license_key: licenseref-scancode-unknown-spdx +short_name: unknown SPDX +name: Unknown SPDX license detected, but not recognized +category: Unstated License +owner: Unspecified +is_unknown: yes +--- diff --git a/tests/licensedcode/data/cache/data/licenses/unknown-spdx.yml b/tests/licensedcode/data/cache/data/licenses/unknown-spdx.yml deleted file mode 100644 index 36eea084958..00000000000 --- a/tests/licensedcode/data/cache/data/licenses/unknown-spdx.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: unknown-spdx -short_name: unknown SPDX -name: Unknown SPDX license detected, but not recognized -category: Unstated License -owner: Unspecified -spdx_license_key: LicenseRef-scancode-unknown-spdx \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/licenses/unknown.LICENSE b/tests/licensedcode/data/cache/data/licenses/unknown.LICENSE new file mode 100644 index 00000000000..a5ff149c4cd --- /dev/null +++ b/tests/licensedcode/data/cache/data/licenses/unknown.LICENSE @@ -0,0 +1,9 @@ +--- +key: unknown +spdx_license_key: licenseref-scancode-unknown +short_name: unknown +name: Unknown license detected, but not recognized +category: Unstated License +owner: Unspecified +is_unknown: yes +--- diff --git a/tests/licensedcode/data/cache/data/licenses/unknown.yml b/tests/licensedcode/data/cache/data/licenses/unknown.yml deleted file mode 100644 index dab5846e3fa..00000000000 --- a/tests/licensedcode/data/cache/data/licenses/unknown.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: unknown -short_name: unknown -name: Unknown license detected, but not recognized -category: Unstated License -owner: Unspecified -spdx_license_key: LicenseRef-scancode-unknown \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_1.RULE b/tests/licensedcode/data/cache/data/rules/antlr-pd_1.RULE index e7475c93708..e465abd62a5 100644 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_1.RULE +++ b/tests/licensedcode/data/cache/data/rules/antlr-pd_1.RULE @@ -1 +1,6 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +--- + http://www.spdx.org/licenses/ANTLR-PD \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_1.yml b/tests/licensedcode/data/cache/data/rules/antlr-pd_1.yml deleted file mode 100644 index 8a7ed644c38..00000000000 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_2.RULE b/tests/licensedcode/data/cache/data/rules/antlr-pd_2.RULE index 6a04ddd6fce..69a311dc084 100644 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_2.RULE +++ b/tests/licensedcode/data/cache/data/rules/antlr-pd_2.RULE @@ -1 +1,6 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +--- + ANTLR Software Rights Notice \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_2.yml b/tests/licensedcode/data/cache/data/rules/antlr-pd_2.yml deleted file mode 100644 index 8a7ed644c38..00000000000 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_3.RULE b/tests/licensedcode/data/cache/data/rules/antlr-pd_3.RULE index 5f044705dd9..6a4ffb7efac 100644 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_3.RULE +++ b/tests/licensedcode/data/cache/data/rules/antlr-pd_3.RULE @@ -1,15 +1,21 @@ -We reserve no legal rights to the ANTLR--it is fully in the public -domain. An individual or company may do whatever they wish with source -code distributed with ANTLR or the code generated by ANTLR, including -the incorporation of ANTLR, or its output, into commercial software. - -We encourage users to develop software with ANTLR. However, we do ask -that credit is given to us for developing ANTLR. By "credit", we mean -that if you use ANTLR or incorporate any source code into one of your -programs (commercial product, research project, or otherwise) that you -acknowledge this fact somewhere in the documentation, research report, -etc... If you like ANTLR and have developed a nice tool with the output, -please mention that you developed it using ANTLR. In addition, we ask -that the headers remain intact in our source code. As long as these -guidelines are kept, we expect to continue enhancing this system and +--- +license_expression: antlr-pd +notes: jGuru.com variant +is_license_reference: yes +--- + +We reserve no legal rights to the ANTLR--it is fully in the public +domain. An individual or company may do whatever they wish with source +code distributed with ANTLR or the code generated by ANTLR, including +the incorporation of ANTLR, or its output, into commercial software. + +We encourage users to develop software with ANTLR. However, we do ask +that credit is given to us for developing ANTLR. By "credit", we mean +that if you use ANTLR or incorporate any source code into one of your +programs (commercial product, research project, or otherwise) that you +acknowledge this fact somewhere in the documentation, research report, +etc... If you like ANTLR and have developed a nice tool with the output, +please mention that you developed it using ANTLR. In addition, we ask +that the headers remain intact in our source code. As long as these +guidelines are kept, we expect to continue enhancing this system and expect to make other tools available as they are completed. \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_3.yml b/tests/licensedcode/data/cache/data/rules/antlr-pd_3.yml deleted file mode 100644 index 1adbe8302a6..00000000000 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_3.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: antlr-pd -notes: jGuru.com variant -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_4.RULE b/tests/licensedcode/data/cache/data/rules/antlr-pd_4.RULE index e626f7b0a3b..ffe3d1c52a0 100644 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_4.RULE +++ b/tests/licensedcode/data/cache/data/rules/antlr-pd_4.RULE @@ -1,11 +1,16 @@ -We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company -may do whatever they wish with source code distributed with ANTLR or the code generated by -ANTLR, including the incorporation of ANTLR, or its output, into commerical software. -We encourage users to develop software with ANTLR. However, we do ask that credit is given to -us for developing ANTLR. By "credit", we mean that if you use ANTLR or incorporate any source -code into one of your programs (commercial product, research project, or otherwise) that you -acknowledge this fact somewhere in the documentation, research report, etc... If you like ANTLR -and have developed a nice tool with the output, please mention that you developed it using -ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these -guidelines are kept, we expect to continue enhancing this system and expect to make other tools -available as they are completed. +--- +license_expression: antlr-pd +is_license_reference: yes +--- + +We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company +may do whatever they wish with source code distributed with ANTLR or the code generated by +ANTLR, including the incorporation of ANTLR, or its output, into commerical software. +We encourage users to develop software with ANTLR. However, we do ask that credit is given to +us for developing ANTLR. By "credit", we mean that if you use ANTLR or incorporate any source +code into one of your programs (commercial product, research project, or otherwise) that you +acknowledge this fact somewhere in the documentation, research report, etc... If you like ANTLR +and have developed a nice tool with the output, please mention that you developed it using +ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these +guidelines are kept, we expect to continue enhancing this system and expect to make other tools +available as they are completed. \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_4.yml b/tests/licensedcode/data/cache/data/rules/antlr-pd_4.yml deleted file mode 100644 index 8a7ed644c38..00000000000 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_4.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_5.RULE b/tests/licensedcode/data/cache/data/rules/antlr-pd_5.RULE index cd7e476fb59..aac370197fd 100644 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_5.RULE +++ b/tests/licensedcode/data/cache/data/rules/antlr-pd_5.RULE @@ -1,13 +1,18 @@ -ANTLR 2 License - -We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company -may do whatever they wish with source code distributed with ANTLR or the code generated by -ANTLR, including the incorporation of ANTLR, or its output, into commerical software. -We encourage users to develop software with ANTLR. However, we do ask that credit is given to -us for developing ANTLR. By "credit", we mean that if you use ANTLR or incorporate any source -code into one of your programs (commercial product, research project, or otherwise) that you -acknowledge this fact somewhere in the documentation, research report, etc... If you like ANTLR -and have developed a nice tool with the output, please mention that you developed it using -ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these -guidelines are kept, we expect to continue enhancing this system and expect to make other tools -available as they are completed. +--- +license_expression: antlr-pd +is_license_reference: yes +--- + +ANTLR 2 License + +We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company +may do whatever they wish with source code distributed with ANTLR or the code generated by +ANTLR, including the incorporation of ANTLR, or its output, into commerical software. +We encourage users to develop software with ANTLR. However, we do ask that credit is given to +us for developing ANTLR. By "credit", we mean that if you use ANTLR or incorporate any source +code into one of your programs (commercial product, research project, or otherwise) that you +acknowledge this fact somewhere in the documentation, research report, etc... If you like ANTLR +and have developed a nice tool with the output, please mention that you developed it using +ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these +guidelines are kept, we expect to continue enhancing this system and expect to make other tools +available as they are completed. \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_5.yml b/tests/licensedcode/data/cache/data/rules/antlr-pd_5.yml deleted file mode 100644 index 8a7ed644c38..00000000000 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_6.RULE b/tests/licensedcode/data/cache/data/rules/antlr-pd_6.RULE index 057dedeac22..c95f1289455 100644 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_6.RULE +++ b/tests/licensedcode/data/cache/data/rules/antlr-pd_6.RULE @@ -1,3 +1,8 @@ +--- +license_expression: antlr-pd +is_license_reference: yes +--- + ANTLR 3 License We reserve no legal rights to the ANTLR--it is fully in the public domain. An @@ -13,4 +18,4 @@ research report, etc... If you like ANTLR and have developed a nice tool with th output, please mention that you developed it using ANTLR. In addition, we ask that the headers remain intact in our source code. As long as these guidelines are kept, we expect to continue enhancing this system and expect to make other tools available -as they are completed. +as they are completed. \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/antlr-pd_6.yml b/tests/licensedcode/data/cache/data/rules/antlr-pd_6.yml deleted file mode 100644 index 8a7ed644c38..00000000000 --- a/tests/licensedcode/data/cache/data/rules/antlr-pd_6.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: antlr-pd -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/anu-license.RULE b/tests/licensedcode/data/cache/data/rules/anu-license.RULE index 39ebde9b508..eebae674832 100644 --- a/tests/licensedcode/data/cache/data/rules/anu-license.RULE +++ b/tests/licensedcode/data/cache/data/rules/anu-license.RULE @@ -1 +1,6 @@ -http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt +--- +license_expression: anu-license +is_license_reference: yes +--- + +http://www.panasonic.net/pcc/support/pbx/docs/freeware_header.txt \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/anu-license.yml b/tests/licensedcode/data/cache/data/rules/anu-license.yml deleted file mode 100644 index 2612f15f2ee..00000000000 --- a/tests/licensedcode/data/cache/data/rules/anu-license.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: anu-license -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/apache-1.0.RULE b/tests/licensedcode/data/cache/data/rules/apache-1.0.RULE index b75d9aa934f..7d5afb8681b 100644 --- a/tests/licensedcode/data/cache/data/rules/apache-1.0.RULE +++ b/tests/licensedcode/data/cache/data/rules/apache-1.0.RULE @@ -1 +1,6 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +--- + http://www.apache.org/licenses/LICENSE-1.0 \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/apache-1.0.yml b/tests/licensedcode/data/cache/data/rules/apache-1.0.yml deleted file mode 100644 index 4b129cac7c4..00000000000 --- a/tests/licensedcode/data/cache/data/rules/apache-1.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/apache-1.0_1.RULE b/tests/licensedcode/data/cache/data/rules/apache-1.0_1.RULE index a3500901dce..bc57d18df8d 100644 --- a/tests/licensedcode/data/cache/data/rules/apache-1.0_1.RULE +++ b/tests/licensedcode/data/cache/data/rules/apache-1.0_1.RULE @@ -1 +1,6 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +--- + Apache License 1.0 \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/apache-1.0_1.yml b/tests/licensedcode/data/cache/data/rules/apache-1.0_1.yml deleted file mode 100644 index 4b129cac7c4..00000000000 --- a/tests/licensedcode/data/cache/data/rules/apache-1.0_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/apache-1.0_5.RULE b/tests/licensedcode/data/cache/data/rules/apache-1.0_5.RULE index cdca2c4f99e..91c8d954b5c 100644 --- a/tests/licensedcode/data/cache/data/rules/apache-1.0_5.RULE +++ b/tests/licensedcode/data/cache/data/rules/apache-1.0_5.RULE @@ -1 +1,6 @@ +--- +license_expression: apache-1.0 +is_license_reference: yes +--- + http://www.apache.org/licenses/LICENSE-1.0.txt \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/apache-1.0_5.yml b/tests/licensedcode/data/cache/data/rules/apache-1.0_5.yml deleted file mode 100644 index 4b129cac7c4..00000000000 --- a/tests/licensedcode/data/cache/data/rules/apache-1.0_5.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.0 -is_license_reference: yes diff --git a/tests/licensedcode/data/cache/data/rules/apache-1.0_group_template2.RULE b/tests/licensedcode/data/cache/data/rules/apache-1.0_group_template2.RULE index 9ebec838ee0..a05c9fe5cfb 100644 --- a/tests/licensedcode/data/cache/data/rules/apache-1.0_group_template2.RULE +++ b/tests/licensedcode/data/cache/data/rules/apache-1.0_group_template2.RULE @@ -1,55 +1,59 @@ -==================================================================== -Copyright (c) The Apache Group. All rights reserved. - -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 acknowledgment: - "This product includes software developed by the Apache Group - for use in the Apache HTTP server project (http://www.apache.org/)." - - 4. The names "Apache Server" and "Apache Group" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - apache@apache.org. - - 5. Products derived from this software may not be called "Apache" - nor may "Apache" appear in their names without prior written - permission of the Apache Group. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the Apache Group - for use in the Apache HTTP server project (http://www.apache.org/)." - - THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY - EXPRESSED 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 APACHE GROUP 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. -==================================================================== - - This software consists of voluntary contributions made by many - individuals on behalf of the Apache Group and was originally based - on public domain software written at the National Center for - Supercomputing Applications, University of Illinois, Urbana-Champaign. - For more information on the Apache Group and the Apache HTTP server - project, please see . - \ No newline at end of file +--- +license_expression: apache-1.0 AND public-domain +is_license_reference: yes +--- + +==================================================================== +Copyright (c) The Apache Group. All rights reserved. + +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 acknowledgment: + "This product includes software developed by the Apache Group + for use in the Apache HTTP server project (http://www.apache.org/)." + + 4. The names "Apache Server" and "Apache Group" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + apache@apache.org. + + 5. Products derived from this software may not be called "Apache" + nor may "Apache" appear in their names without prior written + permission of the Apache Group. + + 6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the Apache Group + for use in the Apache HTTP server project (http://www.apache.org/)." + + THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY + EXPRESSED 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 APACHE GROUP 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. +==================================================================== + + This software consists of voluntary contributions made by many + individuals on behalf of the Apache Group and was originally based + on public domain software written at the National Center for + Supercomputing Applications, University of Illinois, Urbana-Champaign. + For more information on the Apache Group and the Apache HTTP server + project, please see . \ No newline at end of file diff --git a/tests/licensedcode/data/cache/data/rules/apache-1.0_group_template2.yml b/tests/licensedcode/data/cache/data/rules/apache-1.0_group_template2.yml deleted file mode 100644 index c98e45aed58..00000000000 --- a/tests/licensedcode/data/cache/data/rules/apache-1.0_group_template2.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.0 AND public-domain -is_license_reference: yes diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_327.RULE b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_327.RULE index c9f251d0a6d..4d0a45612f8 100644 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_327.RULE +++ b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_327.RULE @@ -1,3 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This project is licensed under the terms of the Apache 2.0 open source license. Please refer to LICENSE for the full terms. \ No newline at end of file diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_327.yml b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_327.yml deleted file mode 100644 index d892e977716..00000000000 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_327.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_328.RULE b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_328.RULE index 1d32cb4bc7f..4fb039790b3 100644 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_328.RULE +++ b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_328.RULE @@ -1,3 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + License This project is licensed under the terms of the Apache 2.0 open source license. \ No newline at end of file diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_328.yml b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_328.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_328.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_548.RULE b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_548.RULE index 773291944ca..f93e8b50064 100644 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_548.RULE +++ b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_548.RULE @@ -1,2 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + licensed under the Apache License, version 2.0, the text of which is included above. \ No newline at end of file diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_548.yml b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_548.yml deleted file mode 100644 index fec9233bc17..00000000000 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/apache-2.0_548.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_494.RULE b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_494.RULE index 37d4403cde7..40ac8351771 100644 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_494.RULE +++ b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_494.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + License This project is licensed under the terms of the MIT license. For more details, see the LICENSE file. \ No newline at end of file diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_494.yml b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_494.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_494.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_932.RULE b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_932.RULE index 3d822ea0792..4c28a56b50d 100644 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_932.RULE +++ b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_932.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This project is licensed under the terms of the MIT license. Please see the LICENSE file for details. \ No newline at end of file diff --git a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_932.yml b/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_932.yml deleted file mode 100644 index 85e26e99ea7..00000000000 --- a/tests/licensedcode/data/detect/apache-vs-mit/index/rules/mit_932.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus.RULE index 59e58a3d3d9..4e4bca54401 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GPL2 OR LATER is free software; you can redistribute it and/or modify (it)? diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_258.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_258.RULE index cc4e984f49a..f8f8d92d03a 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_258.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_258.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + GnuPG 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 @@ -10,4 +15,4 @@ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_258.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_258.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_258.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_326.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_326.RULE index f4d0f17ae54..5af4ebdc0a8 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_326.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_326.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + This 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 @@ -11,4 +16,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this software; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, -USA. +USA. \ No newline at end of file diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_326.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_326.yml deleted file mode 100644 index 4dd63d8726f..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_326.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_337.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_337.RULE index 45aec1a88a3..adab3e4edbb 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_337.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_337.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - COPYING +--- + 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, or (at your option) @@ -11,4 +18,4 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. +Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_337.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_337.yml deleted file mode 100644 index e061fd41842..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_337.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -referenced_filenames: - - COPYING diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_370.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_370.RULE index 2669144eaee..048a204fd96 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_370.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_370.RULE @@ -1,3 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +--- + This program is free software; you can redistribute it and/or modify it under the of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -10,4 +16,4 @@ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_370.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_370.yml deleted file mode 100644 index 13f8b1812a2..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_370.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0-plus -is_license_notice: yes -relevance: 100 \ No newline at end of file diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_54.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_54.RULE index 1270a964977..7faf067fa95 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_54.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_54.RULE @@ -1,3 +1,10 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.1-plus +is_license_notice: yes +notes: there are some confusing references to both LGPL and GPL +relevance: 95 +--- + * This 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 * @@ -10,4 +17,4 @@ * * * You should have received a copy of the GNU General Public License along with * * software; if not, write to the Free Software Foundation, Inc., 59 Temple * -* Place, Suite 330, Boston, MA 02111-1307 USA * +* Place, Suite 330, Boston, MA 02111-1307 USA * \ No newline at end of file diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_54.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_54.yml deleted file mode 100644 index 34295a34b98..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_54.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.1-plus -is_license_notice: yes -notes: there are some confusing references to both LGPL and GPL -relevance: 95 diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_and_lgpl-2.0_1.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_and_lgpl-2.0_1.RULE index 3e622942ae1..45e628235f2 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_and_lgpl-2.0_1.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_and_lgpl-2.0_1.RULE @@ -1,3 +1,11 @@ +--- +license_expression: gpl-2.0-plus AND lgpl-2.0 +is_license_notice: yes +notes: GPL 2 or later notice, with conflicting references to the LGPL as a leftover +relevance: 95 +minimum_coverage: 80 +--- + * 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 @@ -10,4 +18,4 @@ * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_and_lgpl-2.0_1.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_and_lgpl-2.0_1.yml deleted file mode 100644 index f18220a081f..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0-plus_and_lgpl-2.0_1.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-2.0-plus AND lgpl-2.0 -is_license_notice: yes -notes: GPL 2 or later notice, with conflicting references to the LGPL as a leftover -relevance: 95 -minimum_coverage: 80 diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0_88.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0_88.RULE index 073eee8d5e7..6441c57049b 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0_88.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0_88.RULE @@ -1,3 +1,8 @@ +--- +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 as published by * the Free Software Foundation; either version 2 of the License, or diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0_88.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0_88.yml deleted file mode 100644 index 00175e61477..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-2.0_88.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-3.0-plus_103.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-3.0-plus_103.RULE index f32409275b0..ac7a6d09a9a 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-3.0-plus_103.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-3.0-plus_103.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-3.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 3 of the License, or @@ -10,4 +15,4 @@ * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-3.0-plus_103.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-3.0-plus_103.yml deleted file mode 100644 index 013ccfaa4d1..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/gpl-3.0-plus_103.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0-plus -is_license_notice: yes diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/lgpl-2.1-plus_99.RULE b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/lgpl-2.1-plus_99.RULE index ade9ef9f56d..8a45e0203cf 100644 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/lgpl-2.1-plus_99.RULE +++ b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/lgpl-2.1-plus_99.RULE @@ -1,3 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +relevance: 100 +--- + # 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) diff --git a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/lgpl-2.1-plus_99.yml b/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/lgpl-2.1-plus_99.yml deleted file mode 100644 index f57751a8d70..00000000000 --- a/tests/licensedcode/data/detect/lgpl_not_gpl/index/rules/lgpl-2.1-plus_99.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: lgpl-2.1-plus -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/detect/rule_template/rules/0149_sun-bcl-11-07.RULE b/tests/licensedcode/data/detect/rule_template/rules/0149_sun-bcl-11-07.RULE index 689d5d54783..0583490afbf 100644 --- a/tests/licensedcode/data/detect/rule_template/rules/0149_sun-bcl-11-07.RULE +++ b/tests/licensedcode/data/detect/rule_template/rules/0149_sun-bcl-11-07.RULE @@ -1,269 +1,273 @@ -Sun Microsystems, Inc. -Binary Code License Agreement - -READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED -SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY -"AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE -MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA -PACKAGE, YOU AGREE TO THE TERMS OF THIS -AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE -ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE -TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END -OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL -THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE -TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE -SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE -"DECLINE" BUTTON AT THE END OF THIS AGREEMENT. - -1. LICENSE TO USE. Sun grants you a -non-exclusive and non-transferable license for the -internal use only of the accompanying software and -documentation and any error corrections provided -by Sun (collectively "Software"), by the number of -users and the class of computer hardware for which -the corresponding fee has been paid. - -2. RESTRICTIONS. Software is confidential and -copyrighted. Title to Software and all associated -intellectual property rights is retained by Sun -and/or its licensors. Except as specifically -authorized in any Supplemental License Terms, you -may not make copies of Software, other than a -single copy of Software for archival purposes. -Unless enforcement is prohibited by applicable -law, you may not modify, decompile, or reverse -engineer Software. Licensee acknowledges that -Licensed Software is not designed or intended for -use in the design, construction, operation or -maintenance of any nuclear facility. Sun -Microsystems, Inc. disclaims any express or -implied warranty of fitness for such uses. No -right, title or interest in or to any trademark, -service mark, logo or trade name of Sun or its -licensors is granted under this Agreement. - -3. LIMITED WARRANTY. Sun warrants to you that for -a period of ninety (90) days from the date of -purchase, as evidenced by a copy of the receipt, -the media on which Software is furnished (if any) -will be free of defects in materials and -workmanship under normal use. Except for the -foregoing, Software is provided "AS IS". Your -exclusive remedy and Sun's entire liability under -this limited warranty will be at Sun's option to -replace Software media or refund the fee paid for -Software. - -4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN -THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, -REPRESENTATIONS AND WARRANTIES, INCLUDING ANY -IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE -DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE -DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -5. LIMITATION OF LIABILITY. TO THE EXTENT NOT -PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS -LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT -OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, -INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED -REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT -OF OR RELATED TO THE USE OF OR INABILITY TO USE -SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. In no event will -Sun's liability to you, whether in contract, tort -(including negligence), or otherwise, exceed the -amount paid by you for Software under this -Agreement. The foregoing limitations will apply -even if the above stated warranty fails of its -essential purpose. - -6. Termination. This Agreement is effective -until terminated. You may terminate this -Agreement at any time by destroying all copies of -Software. This Agreement will terminate -immediately without notice from Sun if you fail to -comply with any provision of this Agreement. Upon -Termination, you must destroy all copies of -Software. - -7. Export Regulations. All Software and technical -data delivered under this Agreement are subject to -US export control laws and may be subject to -export or import regulations in other countries. -You agree to comply strictly with all such laws -and regulations and acknowledge that you have the -responsibility to obtain such licenses to export, -re-export, or import as may be required after -delivery to you. - -8. U.S. Government Restricted Rights. If Software -is being acquired by or on behalf of the U.S. -Government or by a U.S. Government prime -contractor or subcontractor (at any tier), then -the Government's rights in Software and -accompanying documentation will be only as set -forth in this Agreement; this is in accordance -with 48 CFR 227.7201 through 227.7202-4 (for -Department of Defense (DOD) acquisitions) and with -48 CFR 2.101 and 12.212 (for non-DOD -acquisitions). - -9. Governing Law. Any action related to this -Agreement will be governed by California law and -controlling U.S. federal law. No choice of law -rules of any jurisdiction will apply. - -10. Severability. If any provision of this -Agreement is held to be unenforceable, this -Agreement will remain in effect with the provision -omitted, unless omission would frustrate the -intent of the parties, in which case this -Agreement will immediately terminate. - -11. Integration. This Agreement is the entire -agreement between you and Sun relating to its -subject matter. It supersedes all prior or -contemporaneous oral or written communications, -proposals, representations and warranties and -prevails over any conflicting or additional terms -of any quote, order, acknowledgment, or other -communication between the parties relating to its -subject matter during the term of this Agreement. -No modification of this Agreement will be binding, -unless in writing and signed by an authorized -representative of each party. - -[[ProductName]] - -SUPPLEMENTAL LICENSE TERMS - -These supplemental license terms ("Supplemental -Terms") add to or modify the terms of the Binary -Code License Agreement (collectively, the -"Agreement"). Capitalized terms not defined in -these Supplemental Terms shall have the same -meanings ascribed to them in the Binary Code -License Agreement. These Supplemental Terms shall -supersede any inconsistent or conflicting terms in -the Binary Code License Agreement, or in any -license contained within the Software. - -1. Software Internal Use and Development License -Grant. Subject to the terms and conditions of this -Agreement, including, but not limited to Section 4 -(Java Technology Restrictions) of these -Supplemental Terms, Sun grants you a -non-exclusive, non-transferable, limited license -without fees to reproduce internally and use -internally the binary form of the Software -complete and unmodified for the sole purpose of -designing, developing, testing, and running your -Java applets and applications intended to run on -Java-enabled general purpose desktop computers and -servers ("Programs"). - -2. License to Distribute Software. Subject to the -terms and conditions of this Agreement, including, -but not limited to Section 4 (Java Technology -Restrictions) of these Supplemental Terms, Sun -grants you a non-exclusive, non-transferable, -limited license without fees to reproduce and -distribute the Software, provided that: (i) you -distribute the Software complete and unmodified -and only bundled as part of, and for the sole -purpose of running, your Programs, (ii) the -Programs add significant and primary functionality -to the Software, (iii) you do not distribute -additional software intended to replace any -component(s) of the Software, (iv) you do not -remove or alter any proprietary legends or notices -contained in the Software, (v) you only distribute -the Software subject to a license agreement that -protects Sun's interests consistent with the terms -contained in this Agreement, and (vi) you agree to -defend and indemnify Sun and its licensors from -and against any damages, costs, liabilities, -settlement amounts and/or expenses (including -attorneys' fees) incurred in connection with any -claim, lawsuit or action by any third party that -arises or results from the use or distribution of -any and all Programs and/or Software. - -3. License to Distribute Redistributables. Subject -to the terms and conditions of this Agreement, -including but not limited to Section 4 (Java -Technology Restrictions) of these Supplemental -Terms, Sun grants you a non-exclusive, -non-transferable, limited license without fees to -reproduce and distribute those files specifically -identified as redistributable in the Software -"README" file ("Redistributables") provided that: -(i) you distribute the Redistributables complete -and unmodified (unless otherwise specified in the -applicable README file), and only bundled as part -of Programs, (ii) you do not distribute additional -software intended to supersede any component(s) of -the Redistributables, (iii) you do not remove or -alter any proprietary legends or notices contained -in or on the Redistributables, (iv) you only -distribute the Redistributables pursuant to a -license agreement that protects Sun's interests -consistent with the terms contained in the -Agreement, and (v) you agree to defend and -indemnify Sun and its licensors from and against -any damages, costs, liabilities, settlement -amounts and/or expenses (including attorneys' -fees) incurred in connection with any claim, -lawsuit or action by any third party that arises -or results from the use or distribution of any and -all Programs and/or Software. - -4. Java Technology Restrictions. You may not -modify the Java Platform Interface ("JPI", -identified as classes contained within the "java" -package or any subpackages of the "java" package), -by creating additional classes within the JPI or -otherwise causing the addition to or modification -of the classes in the JPI. In the event that you -create an additional class and associated API(s) -which (i) extends the functionality of the Java -platform, and (ii) is exposed to third party -software developers for the purpose of developing -additional software which invokes such additional -API, you must promptly publish broadly an accurate -specification for such API for free use by all -developers. You may not create, or authorize your -licensees to create, additional classes, -interfaces, or subpackages that are in any way -identified as "java", "javax", "sun" or similar -convention as specified by Sun in any naming -convention designation. - -5. Trademarks and Logos. You acknowledge and agree -as between you and Sun that Sun owns the SUN, -SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks -and all SUN, SOLARIS, JAVA, JINI, FORTE, and -iPLANET-related trademarks, service marks, logos -and other brand designations ("Sun Marks"), and -you agree to comply with the Sun Trademark and -Logo Usage Requirements currently located at -http://www.sun.com/policies/trademarks. Any use -you make of the Sun Marks inures to Sun's benefit. - -6. Source Code. Software may contain source code -that is provided solely for reference purposes -pursuant to the terms of this Agreement. Source -code may not be redistributed unless expressly -provided for in this Agreement. - -7. Termination for Infringement. Either party may -terminate this Agreement immediately should any -Software become, or in either party's opinion be -likely to become, the subject of a claim of -infringement of any intellectual property right. - -For inquiries please contact: Sun Microsystems, -Inc., 4150 Network Circle, Santa Clara, California -95054, U.S.A. -(LFI#128935/Form ID#011801) +--- +license_expression: sun-bcl-11-07 +--- + +Sun Microsystems, Inc. +Binary Code License Agreement + +READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED +SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY +"AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE +MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA +PACKAGE, YOU AGREE TO THE TERMS OF THIS +AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE +ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE +TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END +OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL +THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE +TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE +SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE +"DECLINE" BUTTON AT THE END OF THIS AGREEMENT. + +1. LICENSE TO USE. Sun grants you a +non-exclusive and non-transferable license for the +internal use only of the accompanying software and +documentation and any error corrections provided +by Sun (collectively "Software"), by the number of +users and the class of computer hardware for which +the corresponding fee has been paid. + +2. RESTRICTIONS. Software is confidential and +copyrighted. Title to Software and all associated +intellectual property rights is retained by Sun +and/or its licensors. Except as specifically +authorized in any Supplemental License Terms, you +may not make copies of Software, other than a +single copy of Software for archival purposes. +Unless enforcement is prohibited by applicable +law, you may not modify, decompile, or reverse +engineer Software. Licensee acknowledges that +Licensed Software is not designed or intended for +use in the design, construction, operation or +maintenance of any nuclear facility. Sun +Microsystems, Inc. disclaims any express or +implied warranty of fitness for such uses. No +right, title or interest in or to any trademark, +service mark, logo or trade name of Sun or its +licensors is granted under this Agreement. + +3. LIMITED WARRANTY. Sun warrants to you that for +a period of ninety (90) days from the date of +purchase, as evidenced by a copy of the receipt, +the media on which Software is furnished (if any) +will be free of defects in materials and +workmanship under normal use. Except for the +foregoing, Software is provided "AS IS". Your +exclusive remedy and Sun's entire liability under +this limited warranty will be at Sun's option to +replace Software media or refund the fee paid for +Software. + +4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN +THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, +REPRESENTATIONS AND WARRANTIES, INCLUDING ANY +IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE +DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE +DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + +5. LIMITATION OF LIABILITY. TO THE EXTENT NOT +PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS +LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT +OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, +INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED +REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT +OF OR RELATED TO THE USE OF OR INABILITY TO USE +SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. In no event will +Sun's liability to you, whether in contract, tort +(including negligence), or otherwise, exceed the +amount paid by you for Software under this +Agreement. The foregoing limitations will apply +even if the above stated warranty fails of its +essential purpose. + +6. Termination. This Agreement is effective +until terminated. You may terminate this +Agreement at any time by destroying all copies of +Software. This Agreement will terminate +immediately without notice from Sun if you fail to +comply with any provision of this Agreement. Upon +Termination, you must destroy all copies of +Software. + +7. Export Regulations. All Software and technical +data delivered under this Agreement are subject to +US export control laws and may be subject to +export or import regulations in other countries. +You agree to comply strictly with all such laws +and regulations and acknowledge that you have the +responsibility to obtain such licenses to export, +re-export, or import as may be required after +delivery to you. + +8. U.S. Government Restricted Rights. If Software +is being acquired by or on behalf of the U.S. +Government or by a U.S. Government prime +contractor or subcontractor (at any tier), then +the Government's rights in Software and +accompanying documentation will be only as set +forth in this Agreement; this is in accordance +with 48 CFR 227.7201 through 227.7202-4 (for +Department of Defense (DOD) acquisitions) and with +48 CFR 2.101 and 12.212 (for non-DOD +acquisitions). + +9. Governing Law. Any action related to this +Agreement will be governed by California law and +controlling U.S. federal law. No choice of law +rules of any jurisdiction will apply. + +10. Severability. If any provision of this +Agreement is held to be unenforceable, this +Agreement will remain in effect with the provision +omitted, unless omission would frustrate the +intent of the parties, in which case this +Agreement will immediately terminate. + +11. Integration. This Agreement is the entire +agreement between you and Sun relating to its +subject matter. It supersedes all prior or +contemporaneous oral or written communications, +proposals, representations and warranties and +prevails over any conflicting or additional terms +of any quote, order, acknowledgment, or other +communication between the parties relating to its +subject matter during the term of this Agreement. +No modification of this Agreement will be binding, +unless in writing and signed by an authorized +representative of each party. + +[[ProductName]] + +SUPPLEMENTAL LICENSE TERMS + +These supplemental license terms ("Supplemental +Terms") add to or modify the terms of the Binary +Code License Agreement (collectively, the +"Agreement"). Capitalized terms not defined in +these Supplemental Terms shall have the same +meanings ascribed to them in the Binary Code +License Agreement. These Supplemental Terms shall +supersede any inconsistent or conflicting terms in +the Binary Code License Agreement, or in any +license contained within the Software. + +1. Software Internal Use and Development License +Grant. Subject to the terms and conditions of this +Agreement, including, but not limited to Section 4 +(Java Technology Restrictions) of these +Supplemental Terms, Sun grants you a +non-exclusive, non-transferable, limited license +without fees to reproduce internally and use +internally the binary form of the Software +complete and unmodified for the sole purpose of +designing, developing, testing, and running your +Java applets and applications intended to run on +Java-enabled general purpose desktop computers and +servers ("Programs"). + +2. License to Distribute Software. Subject to the +terms and conditions of this Agreement, including, +but not limited to Section 4 (Java Technology +Restrictions) of these Supplemental Terms, Sun +grants you a non-exclusive, non-transferable, +limited license without fees to reproduce and +distribute the Software, provided that: (i) you +distribute the Software complete and unmodified +and only bundled as part of, and for the sole +purpose of running, your Programs, (ii) the +Programs add significant and primary functionality +to the Software, (iii) you do not distribute +additional software intended to replace any +component(s) of the Software, (iv) you do not +remove or alter any proprietary legends or notices +contained in the Software, (v) you only distribute +the Software subject to a license agreement that +protects Sun's interests consistent with the terms +contained in this Agreement, and (vi) you agree to +defend and indemnify Sun and its licensors from +and against any damages, costs, liabilities, +settlement amounts and/or expenses (including +attorneys' fees) incurred in connection with any +claim, lawsuit or action by any third party that +arises or results from the use or distribution of +any and all Programs and/or Software. + +3. License to Distribute Redistributables. Subject +to the terms and conditions of this Agreement, +including but not limited to Section 4 (Java +Technology Restrictions) of these Supplemental +Terms, Sun grants you a non-exclusive, +non-transferable, limited license without fees to +reproduce and distribute those files specifically +identified as redistributable in the Software +"README" file ("Redistributables") provided that: +(i) you distribute the Redistributables complete +and unmodified (unless otherwise specified in the +applicable README file), and only bundled as part +of Programs, (ii) you do not distribute additional +software intended to supersede any component(s) of +the Redistributables, (iii) you do not remove or +alter any proprietary legends or notices contained +in or on the Redistributables, (iv) you only +distribute the Redistributables pursuant to a +license agreement that protects Sun's interests +consistent with the terms contained in the +Agreement, and (v) you agree to defend and +indemnify Sun and its licensors from and against +any damages, costs, liabilities, settlement +amounts and/or expenses (including attorneys' +fees) incurred in connection with any claim, +lawsuit or action by any third party that arises +or results from the use or distribution of any and +all Programs and/or Software. + +4. Java Technology Restrictions. You may not +modify the Java Platform Interface ("JPI", +identified as classes contained within the "java" +package or any subpackages of the "java" package), +by creating additional classes within the JPI or +otherwise causing the addition to or modification +of the classes in the JPI. In the event that you +create an additional class and associated API(s) +which (i) extends the functionality of the Java +platform, and (ii) is exposed to third party +software developers for the purpose of developing +additional software which invokes such additional +API, you must promptly publish broadly an accurate +specification for such API for free use by all +developers. You may not create, or authorize your +licensees to create, additional classes, +interfaces, or subpackages that are in any way +identified as "java", "javax", "sun" or similar +convention as specified by Sun in any naming +convention designation. + +5. Trademarks and Logos. You acknowledge and agree +as between you and Sun that Sun owns the SUN, +SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks +and all SUN, SOLARIS, JAVA, JINI, FORTE, and +iPLANET-related trademarks, service marks, logos +and other brand designations ("Sun Marks"), and +you agree to comply with the Sun Trademark and +Logo Usage Requirements currently located at +http://www.sun.com/policies/trademarks. Any use +you make of the Sun Marks inures to Sun's benefit. + +6. Source Code. Software may contain source code +that is provided solely for reference purposes +pursuant to the terms of this Agreement. Source +code may not be redistributed unless expressly +provided for in this Agreement. + +7. Termination for Infringement. Either party may +terminate this Agreement immediately should any +Software become, or in either party's opinion be +likely to become, the subject of a claim of +infringement of any intellectual property right. + +For inquiries please contact: Sun Microsystems, +Inc., 4150 Network Circle, Santa Clara, California +95054, U.S.A. +(LFI#128935/Form ID#011801) \ No newline at end of file diff --git a/tests/licensedcode/data/detect/rule_template/rules/0149_sun-bcl-11-07.yml b/tests/licensedcode/data/detect/rule_template/rules/0149_sun-bcl-11-07.yml deleted file mode 100644 index 1aa572546c5..00000000000 --- a/tests/licensedcode/data/detect/rule_template/rules/0149_sun-bcl-11-07.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: sun-bcl-11-07 diff --git a/tests/licensedcode/data/hash/old_rules/lgpl-2.0-plus_23.RULE b/tests/licensedcode/data/hash/old_rules/lgpl-2.0-plus_23.RULE new file mode 100644 index 00000000000..c779f562046 --- /dev/null +++ b/tests/licensedcode/data/hash/old_rules/lgpl-2.0-plus_23.RULE @@ -0,0 +1,14 @@ ++ * 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; either ++ * version 2 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 ++ * Library General Public License for more details. ++ * ++ * You should have received a copy of the GNU Library General Public License ++ * along with this library; see the file COPYING.LIB. If not, write to ++ * the Free Software Foundation., 51 Franklin Street, Fifth Floor, ++ * Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/hash/rules/lgpl-2.0-plus_23.RULE b/tests/licensedcode/data/hash/rules/lgpl-2.0-plus_23.RULE index 9abd4da01d0..6c207c7621a 100644 --- a/tests/licensedcode/data/hash/rules/lgpl-2.0-plus_23.RULE +++ b/tests/licensedcode/data/hash/rules/lgpl-2.0-plus_23.RULE @@ -1,3 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +--- + + * 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; either @@ -11,4 +15,4 @@ + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation., 51 Franklin Street, Fifth Floor, -+ * Boston, MA 02110-1301, USA. ++ * Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/hash/rules/lgpl-2.0-plus_23.yml b/tests/licensedcode/data/hash/rules/lgpl-2.0-plus_23.yml deleted file mode 100644 index 7124f35b6dd..00000000000 --- a/tests/licensedcode/data/hash/rules/lgpl-2.0-plus_23.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: lgpl-2.0-plus diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/licenses/gpl-2.0.LICENSE b/tests/licensedcode/data/index/duplicate-key-phrases/licenses/gpl-2.0.LICENSE index fb4492b66b0..446bc3d195b 100644 --- a/tests/licensedcode/data/index/duplicate-key-phrases/licenses/gpl-2.0.LICENSE +++ b/tests/licensedcode/data/index/duplicate-key-phrases/licenses/gpl-2.0.LICENSE @@ -1 +1,45 @@ - GNU GENERAL PUBLIC LICENSE +--- +key: gpl-2.0 +short_name: GPL 2.0 +name: GNU General Public License 2.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-2.0.html +notes: This is the last version of the GPL text as published by the FSF. This variation was + published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt + It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html + It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere + both in the text and HTML formats. There are many other variations of the GPL 2.0 text that + were published over the years by the FSF and the gnu.org website. You can find the detailed + history of this text at https://github.com/pombredanne/gpl-history and each variant is available + as a license detection rule. Per SPDX.org, this license was released June 1991 This license + is OSI certified. +spdx_license_key: GPL-2.0-only +other_spdx_license_keys: + - GPL-2.0 + - GPL 2.0 + - LicenseRef-GPL-2.0 +text_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +osi_url: http://opensource.org/licenses/gpl-license.php +faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html +other_urls: + - http://creativecommons.org/choose/cc-gpl + - http://creativecommons.org/images/public/cc-GPL-a.png + - http://creativecommons.org/licenses/GPL/2.0/ + - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html + - http://www.opensource.org/licenses/GPL-2.0 + - https://opensource.org/licenses/GPL-2.0 + - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +osi_license_key: GPL-2.0 +--- + + GNU GENERAL PUBLIC LICENSE \ No newline at end of file diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/licenses/gpl-2.0.yml b/tests/licensedcode/data/index/duplicate-key-phrases/licenses/gpl-2.0.yml deleted file mode 100644 index 42ed20f6420..00000000000 --- a/tests/licensedcode/data/index/duplicate-key-phrases/licenses/gpl-2.0.yml +++ /dev/null @@ -1,46 +0,0 @@ -key: gpl-2.0 -short_name: GPL 2.0 -name: GNU General Public License 2.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-2.0.html -notes: This is the last version of the GPL text as published by the FSF. - This variation was published around about the time of the FSF released the GPL 3 - in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt - It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt - and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html - It refers to the Franklin Street address and to the - GNU Lesser General Public License everywhere both in the text and HTML - formats. There are many other variations of the GPL 2.0 text that were - published over the years by the FSF and the gnu.org website. You can find the - detailed history of this text at https://github.com/pombredanne/gpl-history - and each variant is available as a license detection rule. - Per SPDX.org, this license was released June 1991 - This license is OSI certified. - -spdx_license_key: GPL-2.0-only -other_spdx_license_keys: - - GPL-2.0 - - GPL 2.0 - - LicenseRef-GPL-2.0 -text_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -osi_url: http://opensource.org/licenses/gpl-license.php -faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html -other_urls: - - http://creativecommons.org/choose/cc-gpl - - http://creativecommons.org/images/public/cc-GPL-a.png - - http://creativecommons.org/licenses/GPL/2.0/ - - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt - - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html - - http://www.opensource.org/licenses/GPL-2.0 - - https://opensource.org/licenses/GPL-2.0 - - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation -osi_license_key: GPL-2.0 diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/licenses/mit.LICENSE b/tests/licensedcode/data/index/duplicate-key-phrases/licenses/mit.LICENSE index bcbe7286172..c594ca52081 100644 --- a/tests/licensedcode/data/index/duplicate-key-phrases/licenses/mit.LICENSE +++ b/tests/licensedcode/data/index/duplicate-key-phrases/licenses/mit.LICENSE @@ -1 +1,20 @@ +--- +key: mit +short_name: MIT License +name: MIT License +category: Permissive +owner: MIT +homepage_url: http://opensource.org/licenses/mit-license.php +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: MIT +text_urls: + - http://opensource.org/licenses/mit-license.php +osi_url: http://www.opensource.org/licenses/MIT +faq_url: https://ieeexplore.ieee.org/document/9263265 +other_urls: + - https://opensource.com/article/18/3/patent-grant-mit-license + - https://opensource.com/article/19/4/history-mit-license + - https://opensource.org/licenses/MIT +--- + Permission is hereby granted \ No newline at end of file diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/licenses/mit.yml b/tests/licensedcode/data/index/duplicate-key-phrases/licenses/mit.yml deleted file mode 100644 index 996a1e5f9c9..00000000000 --- a/tests/licensedcode/data/index/duplicate-key-phrases/licenses/mit.yml +++ /dev/null @@ -1,16 +0,0 @@ -key: mit -short_name: MIT License -name: MIT License -category: Permissive -owner: MIT -homepage_url: http://opensource.org/licenses/mit-license.php -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: MIT -text_urls: - - http://opensource.org/licenses/mit-license.php -osi_url: http://www.opensource.org/licenses/MIT -faq_url: https://ieeexplore.ieee.org/document/9263265 -other_urls: - - https://opensource.com/article/18/3/patent-grant-mit-license - - https://opensource.com/article/19/4/history-mit-license - - https://opensource.org/licenses/MIT diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_29.RULE b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_29.RULE index 4415e8279a8..225cdfdade4 100644 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_29.RULE +++ b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_29.RULE @@ -1 +1,7 @@ -license: licensed under the {{MIT or GPL}} licenses +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +license: licensed under the {{MIT or GPL}} licenses \ No newline at end of file diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_29.yml b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_29.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_29.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_30.RULE b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_30.RULE index 03bb7e6acd6..c036489add4 100644 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_30.RULE +++ b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_30.RULE @@ -1 +1,7 @@ -license: licensed under the {{MIT or GPL}} license +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +license: licensed under the {{MIT or GPL}} license \ No newline at end of file diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_30.yml b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_30.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_30.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_31.RULE b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_31.RULE index 4597d59d642..4865d8c244d 100644 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_31.RULE +++ b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_31.RULE @@ -1 +1,7 @@ -license: licensed under the MIT or GPL licenses +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + +license: licensed under the MIT or GPL licenses \ No newline at end of file diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_31.yml b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_31.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_31.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_37.RULE b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_37.RULE index 33a4e9f9448..caaec47bd13 100644 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_37.RULE +++ b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_37.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license: licensed under the MIT and GPL licenses \ No newline at end of file diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_37.yml b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_37.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_37.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_38.RULE b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_38.RULE index c9614bfb8b6..9c6c40720fb 100644 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_38.RULE +++ b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_38.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license: licensed under the MIT and GPL license \ No newline at end of file diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_38.yml b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_38.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_38.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_39.RULE b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_39.RULE index 4cdca1173b5..1e537b0fe82 100644 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_39.RULE +++ b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_39.RULE @@ -1 +1,7 @@ +--- +license_expression: mit OR gpl-2.0 +is_license_notice: yes +relevance: 100 +--- + license: Dual licensed under the MIT and GPL license. \ No newline at end of file diff --git a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_39.yml b/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_39.yml deleted file mode 100644 index cffa8d80b91..00000000000 --- a/tests/licensedcode/data/index/duplicate-key-phrases/rules/mit_or_gpl-2.0_39.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: mit OR gpl-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_56.RULE b/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_56.RULE index 0943d7ecc93..46c8ef1e60e 100644 --- a/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_56.RULE +++ b/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_56.RULE @@ -1,23 +1,28 @@ - * 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 University 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 REGENTS 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 REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. +--- +license_expression: bsd-new +notes: BSD new +--- + + * 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 University 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 REGENTS 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 REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. \ No newline at end of file diff --git a/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_56.yml b/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_56.yml deleted file mode 100644 index b65dab6ac72..00000000000 --- a/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_56.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -notes: BSD new diff --git a/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_uc.RULE b/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_uc.RULE index 0943d7ecc93..1cba45093cb 100644 --- a/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_uc.RULE +++ b/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_uc.RULE @@ -1,23 +1,28 @@ - * 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 University 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 REGENTS 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 REGENTS OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. +--- +license_expression: bsd-new +notes: BSD from UC variant +--- + + * 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 University 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 REGENTS 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 REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. \ No newline at end of file diff --git a/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_uc.yml b/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_uc.yml deleted file mode 100644 index 73795968379..00000000000 --- a/tests/licensedcode/data/index/no_duplicated_rule/bsd-new_uc.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: bsd-new -notes: BSD from UC variant diff --git a/tests/licensedcode/data/index/similar_names/licenses/proprietary-license.LICENSE b/tests/licensedcode/data/index/similar_names/licenses/proprietary-license.LICENSE index 7203d72eead..467a722e334 100644 --- a/tests/licensedcode/data/index/similar_names/licenses/proprietary-license.LICENSE +++ b/tests/licensedcode/data/index/similar_names/licenses/proprietary-license.LICENSE @@ -1,3 +1,12 @@ +--- +key: proprietary-license +short_name: Proprietary License +name: Proprietary License +category: Proprietary Free +owner: Unspecified +notes: replaces the proprietary key +--- + This component is normally licensed under a proprietary license agreement with a supplier that has terms and conditions that restrict the use of the code, but may not require payment to the supplier. \ No newline at end of file diff --git a/tests/licensedcode/data/index/similar_names/licenses/proprietary-license.yml b/tests/licensedcode/data/index/similar_names/licenses/proprietary-license.yml deleted file mode 100644 index ad87610bfff..00000000000 --- a/tests/licensedcode/data/index/similar_names/licenses/proprietary-license.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: proprietary-license -short_name: Proprietary License -name: Proprietary License -category: Proprietary Free -owner: Unspecified -notes: replaces the proprietary key \ No newline at end of file diff --git a/tests/licensedcode/data/index/similar_names/rules/proprietary-10.RULE b/tests/licensedcode/data/index/similar_names/rules/proprietary-10.RULE index cc6dacff515..253ee91b06a 100644 --- a/tests/licensedcode/data/index/similar_names/rules/proprietary-10.RULE +++ b/tests/licensedcode/data/index/similar_names/rules/proprietary-10.RULE @@ -1,3 +1,8 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +--- + THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIES @@ -7,4 +12,4 @@ PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED. THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY CompanyName ASSUMES NO RESPONSIBILITY FOR THE USE OR RELIABILITY OF ITS -SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY +SOFTWARE ON EQUIPMENT THAT IS NOT SUPPLIED BY \ No newline at end of file diff --git a/tests/licensedcode/data/index/similar_names/rules/proprietary-10.yml b/tests/licensedcode/data/index/similar_names/rules/proprietary-10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/tests/licensedcode/data/index/similar_names/rules/proprietary-10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/tests/licensedcode/data/index/similar_names/rules/proprietary_10.RULE b/tests/licensedcode/data/index/similar_names/rules/proprietary_10.RULE index e85b022b361..b1e557f27c8 100644 --- a/tests/licensedcode/data/index/similar_names/rules/proprietary_10.RULE +++ b/tests/licensedcode/data/index/similar_names/rules/proprietary_10.RULE @@ -1,5 +1,11 @@ +--- +license_expression: proprietary-license +is_license_notice: yes +notes: IBM Device Driver Source Kit for OS/2 +--- + /* The following IBM OS/2 source code is provided to you solely for */ /* the purpose of assisting you in your development of OS/2 device */ /* drivers. You may use this code in accordance with the IBM License */ /* Agreement provided in the IBM Device Driver Source Kit for OS/2. This */ -/* Copyright statement may not be removed. */ +/* Copyright statement may not be removed. */ \ No newline at end of file diff --git a/tests/licensedcode/data/index/similar_names/rules/proprietary_10.yml b/tests/licensedcode/data/index/similar_names/rules/proprietary_10.yml deleted file mode 100644 index cb4f10bc679..00000000000 --- a/tests/licensedcode/data/index/similar_names/rules/proprietary_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: IBM Device Driver Source Kit for OS/2 diff --git a/tests/licensedcode/data/license_db/index.json-expected.json b/tests/licensedcode/data/license_db/index.json-expected.json new file mode 100644 index 00000000000..93a0326f9f3 --- /dev/null +++ b/tests/licensedcode/data/license_db/index.json-expected.json @@ -0,0 +1,158 @@ +[ + { + "license_key": "bash-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The Free Software Foundation has exempted Bash from the requirement of\nParagraph 2c of the General Public License. This is to say, there is\nno requirement for Bash to print a notice when it is started\ninteractively in the usual way. We made this exception because users\nand standards expect shells not to print such messages. This\nexception applies to any program that serves as a shell and that is\nbased primarily on Bash as opposed to other GNU software.", + "json": "bash-exception-gpl.json", + "yaml": "bash-exception-gpl.yml", + "html": "bash-exception-gpl.html", + "license": "bash-exception-gpl.LICENSE" + }, + { + "license_key": "binary-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* Redistributions must reproduce the above copyright notice and the\nfollowing disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\n* Neither the name of the Copyright Holder nor the names of its\nsuppliers may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this software\nis permitted.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE", + "json": "binary-linux-firmware.json", + "yaml": "binary-linux-firmware.yml", + "html": "binary-linux-firmware.html", + "license": "binary-linux-firmware.LICENSE" + }, + { + "license_key": "bison-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bison-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison.", + "json": "bison-exception-2.0.json", + "yaml": "bison-exception-2.0.yml", + "html": "bison-exception-2.0.html", + "license": "bison-exception-2.0.LICENSE" + }, + { + "license_key": "bison-exception-2.2", + "category": "Copyleft Limited", + "spdx_license_key": "Bison-exception-2.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, you may create a larger work that contains part or all\nof the Bison parser skeleton and distribute that work under terms of your\nchoice, so long as that work isn't itself a parser generator using the skeleton\nor a modified version thereof as a parser skeleton. Alternatively, if you\nmodify or redistribute the parser skeleton itself, you may (at your option)\nremove this special exception, which will cause the skeleton and the resulting\nBison output files to be licensed under the GNU General Public License without\nthis special exception.\n\nThis special exception was added by the Free Software Foundation in version 2.2\nof Bison.", + "json": "bison-exception-2.2.json", + "yaml": "bison-exception-2.2.yml", + "html": "bison-exception-2.2.html", + "license": "bison-exception-2.2.LICENSE" + }, + { + "license_key": "bittorrent-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\n\nVersion 1.0\n\nThis BitTorrent Open Source License (the \"License\") applies to the BitTorrent client and related software products as\nwell as any updates or maintenance releases of that software (\"BitTorrent Products\") that are distributed by\nBitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product.\nLicensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which\nyou may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this\nPreamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the\nLicense and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the\n\"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been\ndropped.\n\nThis License provides that:\n\n1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software\ndistribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous\nContributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source\nCode\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it.\n(The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you\nmake to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you\nmust make the Source Code of your Modifications available to others.\n\n5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty\nwhatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly\nor causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or\nfor accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any\nterms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will\napply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a\nproprietary license of your choice. If you use any license other than this License, however, you must continue to\nfulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those\nportions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time. You may choose to continue to use the license\nterms in this version of the License or those from the new version. However, only the Licensor has the right to\nchange the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and\nthe definitions are repeated for your convenience in a Glossary at the end of the License.\n\n\nLicense Terms\n\n1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive\nlicense, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the\nsubstance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of\nLicensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications\nthat you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity\nwho created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a\nworld-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the\nfollowing:\n\n1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\n2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks,\ncopyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as\nexpressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete\nfrom the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is\ngranted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product.\nNothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this\nLicense any code that Licensor otherwise would have a right to license.\n\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed\nProduct, you hereby agree that any Modifications that you create or to which you contribute, and which you\ndistribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications\nthat you create or to which you contribute may be distributed only under the terms of this License or a future\nversion of this License released under Section 7. You must include a copy of this License with every copy of the\nModifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of\nthe Licensed Product or Modifications that alter or restrict the applicable version of this License or the\nrecipients' rights hereunder. However, you may include an additional document offering the additional rights\ndescribed in Section 4(d).\n\nb. Availability of Source Code. You must make available, under the terms of this License, the Source Code of\nthe Licensed Product and any Modifications that you distribute, either on the same media as you distribute any\nexecutable or other form of the Licensed Product, or via a mechanism generally accepted in the software development\ncommunity for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any\nversion of Licensed Product or Modifications that you distribute must remain available for at least twelve (12)\nmonths after the date it initially became available, or at least six (6) months after a subsequent version of said\nLicensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code\nversion remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third\nparty's intellectual property right is required to exercise the rights granted by this License, you must include a\ntext file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in\nsufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any\nModifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make\navailable thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups)\nreasonably calculated to inform those who received the Licensed Product from you that new knowledge has been\nobtained.\n\nii. Contributor APIs. If your Modifications include an application\nprogramming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement\nthat API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to\n4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have\nsufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source\nCode of any Modifications you create or to which you contribute, and which you distribute, wherever you describe\nrecipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\")\nin each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification,\nyou may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source\nCode file due to its structure, then you must include such Notice in a location (such as a relevant directory file)\nwhere a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty,\nsupport, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so\nonly on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such\nwarranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the\nLicensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of\nwarranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a\nlicense of your choice that may contain terms different from this License provided (i) you have satisfied the\nrequirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the\nexecutable version, related documentation and collateral materials stating that the Source Code version of the\nLicensed Product is available under the terms of this License, including a description of how and where you have\nfulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License\nare offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every\nContributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the\nLicensed Product with other code) and distribute the Derivative Works as products under any other license you select,\nwith the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that\nconsist of the Licensed Product or any Modifications thereto.\n\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the\nterms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or\nregulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the\nstatute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the\ncode they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included\nwith all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such\ndescription must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to\nunderstand it.\n\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the\nNotice in Exhibit A, which is incorporated herein by this reference.\n\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License,\nyou may always continue to use it under the terms of that version. You may also choose to use such Licensed Product\nunder the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the\nright to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do\nonly in order to apply it to software that is not already a Licensed Product under this License, you must rename your\nlicense so that it is not confusingly similar to this License, and must make it clear that your license contains\nterms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any\nContributor.\n\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE\nOF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND\nNOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\nDISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED\nHEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate\nautomatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of\nbecoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any\ntermination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this\nLicense, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent\ninfringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or\nContributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product\ndirectly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections\n1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice\nPeriod\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable\nreasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your\nlitigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable\nroyalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of\nsaid Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging\nthat Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or\nsettlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses\ngranted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of\nany payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all\nend user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you\nor any distributor hereunder prior to termination shall survive termination.\n\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),\nCONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER\nOF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF\nANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR\nMALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY\nNOT APPLY TO YOU.\n\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and\ndamages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with\nLicensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R.\n2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth\nherein.\n\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any\nprovision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary\nto make it enforceable. This License shall be governed by California law provisions (except to the extent applicable\nlaw, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation\nrelating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of\nCalifornia or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa\nClara County, California, with the losing party responsible for costs including, without limitation, court costs and\nreasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in\nany litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of\na contract shall be construed against the drafter shall not apply to this License.\n\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an\nindividual or a legal entity exercising rights under, and complying with all of the terms of, this License or a\nfuture version of this License issued under Section 7. For legal entities, you includes any entity that controls, is\ncontrolled by, or is under common control with you. For purposes of this definition, control means (i) the power,\ndirect or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii)\nownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated\nhere, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined\nterm is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification.\n(See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes\nall previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed\nProduct, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained\ntherein, plus any associated interface definition files, scripts used to control compilation and installation of an\nexecutable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See\nSection 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or\nany hereto. Contributors to any Modifications may add their own copyright notices to identify their own\ncontributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not\ncopy or use this file, in either source code or executable form, except in compliance with the License. You may\nobtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express\nor implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.0.json", + "yaml": "bittorrent-1.0.yml", + "html": "bittorrent-1.0.html", + "license": "bittorrent-1.0.LICENSE" + }, + { + "license_key": "bittorrent-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\n\nVersion 1.1\n\nThis BitTorrent Open Source License (the \"License\") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software (\"BitTorrent Products\") that are distributed by BitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the \"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\n1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\n\n5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\n\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\n1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\n\nb. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\n\nii. Contributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\n\ng. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.1.json", + "yaml": "bittorrent-1.1.yml", + "html": "bittorrent-1.1.html", + "license": "bittorrent-1.1.LICENSE" + }, + { + "license_key": "bittorrent-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\nVersion 1.2\n\nThis BitTorrent Open Source License (the \"License\") applies to certain software that is distributed by BitTorrent, Inc. (\"Licensor\") specifically under this license (\"BitTorrent Products\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the \"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\nYou may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\nBoth Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\nYou are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\nBy accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\nYou may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor\u2019s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\u2019s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\nIf you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\nIf you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\nGrant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\nGrant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\nExclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\nYour Obligations Regarding Distribution.\nApplication of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\nAvailability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\nIntellectual Property Matters.\nThird Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\nContributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\nRepresentations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\nRequired Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\nDistribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\nDistribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\nCompensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor\u2019s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party\u2019s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party\u2019s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\u2019s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\nInability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\nApplication of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\nVersions of This License.\nNew Versions. Licensor may publish from time to time revised and/or new versions of the License.\nEffect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\nDerivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\nDisclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\nTermination.\nAutomatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\nTermination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\nReasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\nNo Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\nLimitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\nResponsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\nU.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\nMiscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\nDefinition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\nGlossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\nLicensor: BitTorrent, Inc. (See first paragraph of License)\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\nNotice: The notice contained in Exhibit A. (See Section 4(e))\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.2.json", + "yaml": "bittorrent-1.2.yml", + "html": "bittorrent-1.2.html", + "license": "bittorrent-1.2.LICENSE" + }, + { + "license_key": "bittorrent-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "End User License Agreement (EULA)\n\nBy accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the \"Software\") or by clicking \"Install\", you agree to the following terms, notwithstanding anything to the contrary in this agreement.\n\nThe Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc.\n\nLicense\nSubject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here.\n\nRestrictions\nThe source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold.\n\nThe BitTorrent Technologies\nDownloading and Updates\n\nThe Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself.\n\nAutomatic Uploading\n\nThe Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded.\n\nDisclaimer of Warranty\nBitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent.\n\nLimitation of Liability\nBitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent.\n\nU.S. Government Users\nThe Software is \"commercial computer software\" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc.\n\nGeneral\nThese BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user.\n\nContact\nIf you have any questions, contact us at legal@bittorrent.com.", + "json": "bittorrent-eula.json", + "yaml": "bittorrent-eula.yml", + "html": "bittorrent-eula.html", + "license": "bittorrent-eula.LICENSE" + }, + { + "license_key": "boost-1.0", + "category": "Permissive", + "spdx_license_key": "BSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Boost Software License - Version 1.0 - August 17th, 2003\n\nPermission is hereby granted, free of charge, to any person or organization\nobtaining a copy of the software and accompanying documentation covered by\nthis license (the \"Software\") to use, reproduce, display, distribute,\nexecute, and transmit the Software, and to prepare derivative works of the\nSoftware, and to permit third-parties to whom the Software is furnished to\ndo so, all subject to the following:\n\nThe copyright notices in the Software and this entire statement, including\nthe above license grant, this restriction and the following disclaimer,\nmust be included in all copies of the Software, in whole or in part, and\nall derivative works of the Software, unless such copies or derivative\nworks are solely in the form of machine-executable object code generated by\na source language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.", + "json": "boost-1.0.json", + "yaml": "boost-1.0.yml", + "html": "boost-1.0.html", + "license": "boost-1.0.LICENSE" + }, + { + "license_key": "boost-original", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-boost-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to copy, use, modify, sell and distribute this software is granted\nprovided this copyright notice appears in all copies. This software is provided \"as\nis\" without express or implied warranty, and with no claim as to its suitability for\nany purpose.", + "json": "boost-original.json", + "yaml": "boost-original.yml", + "html": "boost-original.html", + "license": "boost-original.LICENSE" + }, + { + "license_key": "bootloader-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Bootloader-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Bootloader Exception\n\nIn addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.)", + "json": "bootloader-exception.json", + "yaml": "bootloader-exception.yml", + "html": "bootloader-exception.html", + "license": "bootloader-exception.LICENSE" + }, + { + "license_key": "bsla", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are permitted\nprovided that the above copyright notice and this paragraph are\nduplicated in all such forms and that any documentation,\nadvertising materials, and other materials related to such\ndistribution and use acknowledge that the software was developed\nby the University of California, Berkeley. The name of the\nUniversity may not be used to endorse or promote products derived\nfrom this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "bsla.json", + "yaml": "bsla.yml", + "html": "bsla.html", + "license": "bsla.LICENSE" + } +] \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.LICENSE b/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.LICENSE new file mode 100644 index 00000000000..be01d98e35b --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.LICENSE @@ -0,0 +1,15 @@ +--- +key: bash-exception-gpl +short_name: Bash exception to GPL +name: Bash exception to GPL +category: Copyleft +owner: Free Software Foundation (FSF) +notes: this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 +is_builtin: yes +is_exception: yes +spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 +text_urls: + - https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 +--- + +b'The Free Software Foundation has exempted Bash from the requirement of\nParagraph 2c of the General Public License. This is to say, there is\nno requirement for Bash to print a notice when it is started\ninteractively in the usual way. We made this exception because users\nand standards expect shells not to print such messages. This\nexception applies to any program that serves as a shell and that is\nbased primarily on Bash as opposed to other GNU software.' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.html b/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.html new file mode 100644 index 00000000000..d55586cfb5a --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.html @@ -0,0 +1,191 @@ + + + + + + LicenseDB: bash-exception-gpl + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bash-exception-gpl + +
+ +
short_name
+
+ + Bash exception to GPL + +
+ +
name
+
+ + Bash exception to GPL + +
+ +
category
+
+ + Copyleft + +
+ +
owner
+
+ + Free Software Foundation (FSF) + +
+ +
notes
+
+ + this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 + +
+ +
is_builtin
+
+ + True + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-bash-exception-gpl-2.0 + +
+ +
text_urls
+
+ + + +
+ +
text
+
+ + The Free Software Foundation has exempted Bash from the requirement of +Paragraph 2c of the General Public License. This is to say, there is +no requirement for Bash to print a notice when it is started +interactively in the usual way. We made this exception because users +and standards expect shells not to print such messages. This +exception applies to any program that serves as a shell and that is +based primarily on Bash as opposed to other GNU software. + +
+ +
+
license_text
+
The Free Software Foundation has exempted Bash from the requirement of
+Paragraph 2c of the General Public License.  This is to say, there is
+no requirement for Bash to print a notice when it is started
+interactively in the usual way.  We made this exception because users
+and standards expect shells not to print such messages.  This
+exception applies to any program that serves as a shell and that is
+based primarily on Bash as opposed to other GNU software.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.json b/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.json new file mode 100644 index 00000000000..9294b1cf38e --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.json @@ -0,0 +1,15 @@ +{ + "key": "bash-exception-gpl", + "short_name": "Bash exception to GPL", + "name": "Bash exception to GPL", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "notes": "this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8", + "is_builtin": true, + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", + "text_urls": [ + "https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283" + ], + "text": "The Free Software Foundation has exempted Bash from the requirement of\nParagraph 2c of the General Public License. This is to say, there is\nno requirement for Bash to print a notice when it is started\ninteractively in the usual way. We made this exception because users\nand standards expect shells not to print such messages. This\nexception applies to any program that serves as a shell and that is\nbased primarily on Bash as opposed to other GNU software." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.yml b/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.yml new file mode 100644 index 00000000000..eafe5218fe6 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bash-exception-gpl.yml @@ -0,0 +1,19 @@ +key: bash-exception-gpl +short_name: Bash exception to GPL +name: Bash exception to GPL +category: Copyleft +owner: Free Software Foundation (FSF) +notes: this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 +is_builtin: yes +is_exception: yes +spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 +text_urls: + - https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 +text: | + The Free Software Foundation has exempted Bash from the requirement of + Paragraph 2c of the General Public License. This is to say, there is + no requirement for Bash to print a notice when it is started + interactively in the usual way. We made this exception because users + and standards expect shells not to print such messages. This + exception applies to any program that serves as a shell and that is + based primarily on Bash as opposed to other GNU software. diff --git a/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.LICENSE b/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.LICENSE new file mode 100644 index 00000000000..8d283739976 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.LICENSE @@ -0,0 +1,12 @@ +--- +key: binary-linux-firmware +short_name: Binary-Only Linux Firmware License +name: Binary-Only Linux Firmware License +category: Proprietary Free +owner: Unspecified +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ +is_builtin: yes +spdx_license_key: LicenseRef-scancode-binary-linux-firmware +--- + +b'Redistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* Redistributions must reproduce the above copyright notice and the\nfollowing disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\n* Neither the name of the Copyright Holder nor the names of its\nsuppliers may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this software\nis permitted.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.html b/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.html new file mode 100644 index 00000000000..a150491e829 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.html @@ -0,0 +1,213 @@ + + + + + + LicenseDB: binary-linux-firmware + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + binary-linux-firmware + +
+ +
short_name
+
+ + Binary-Only Linux Firmware License + +
+ +
name
+
+ + Binary-Only Linux Firmware License + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + Unspecified + +
+ +
homepage_url
+
+ + https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ + +
+ +
is_builtin
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-binary-linux-firmware + +
+ +
text
+
+ + Redistribution. Redistribution and use in binary form, without +modification, are permitted provided that the following conditions are +met: + +* Redistributions must reproduce the above copyright notice and the +following disclaimer in the documentation and/or other materials +provided with the distribution. + +* Neither the name of the Copyright Holder nor the names of its +suppliers may be used to endorse or promote products derived from this +software without specific prior written permission. + +* No reverse engineering, decompilation, or disassembly of this software +is permitted. + +DISCLAIMER. 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 + +
+ +
+
license_text
+
Redistribution. Redistribution and use in binary form, without
+modification, are permitted provided that the following conditions are
+met:
+
+* Redistributions must reproduce the above copyright notice and the
+following disclaimer in the documentation and/or other materials
+provided with the distribution.
+
+* Neither the name of the Copyright Holder nor the names of its
+suppliers may be used to endorse or promote products derived from this
+software without specific prior written permission.
+
+* No reverse engineering, decompilation, or disassembly of this software
+is permitted.
+
+DISCLAIMER. 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/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.json b/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.json new file mode 100644 index 00000000000..cbe2540ac6d --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.json @@ -0,0 +1,11 @@ +{ + "key": "binary-linux-firmware", + "short_name": "Binary-Only Linux Firmware License", + "name": "Binary-Only Linux Firmware License", + "category": "Proprietary Free", + "owner": "Unspecified", + "homepage_url": "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/", + "is_builtin": true, + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware", + "text": "Redistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* Redistributions must reproduce the above copyright notice and the\nfollowing disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\n* Neither the name of the Copyright Holder nor the names of its\nsuppliers may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this software\nis permitted.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE" +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.yml b/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.yml new file mode 100644 index 00000000000..19d4a2aaf68 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/binary-linux-firmware.yml @@ -0,0 +1,35 @@ +key: binary-linux-firmware +short_name: Binary-Only Linux Firmware License +name: Binary-Only Linux Firmware License +category: Proprietary Free +owner: Unspecified +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ +is_builtin: yes +spdx_license_key: LicenseRef-scancode-binary-linux-firmware +text: | + Redistribution. Redistribution and use in binary form, without + modification, are permitted provided that the following conditions are + met: + + * Redistributions must reproduce the above copyright notice and the + following disclaimer in the documentation and/or other materials + provided with the distribution. + + * Neither the name of the Copyright Holder nor the names of its + suppliers may be used to endorse or promote products derived from this + software without specific prior written permission. + + * No reverse engineering, decompilation, or disassembly of this software + is permitted. + + DISCLAIMER. 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 diff --git a/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.LICENSE b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.LICENSE new file mode 100644 index 00000000000..583883dc269 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.LICENSE @@ -0,0 +1,29 @@ +--- +key: bison-exception-2.0 +short_name: Bison exception to GPL 2.0 or later +name: Bison exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_builtin: yes +is_exception: yes +spdx_license_key: LicenseRef-scancode-bison-exception-2.0 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, when this file is copied by Bison into a Bison + output file, you may use that output file without restriction. This special + exception was added by the Free Software Foundation in version 1.24 of + Bison. +--- + +b'As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison.' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.html b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.html new file mode 100644 index 00000000000..e43fa8389d6 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.html @@ -0,0 +1,192 @@ + + + + + + LicenseDB: bison-exception-2.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bison-exception-2.0 + +
+ +
short_name
+
+ + Bison exception to GPL 2.0 or later + +
+ +
name
+
+ + Bison exception to GPL 2.0 or later + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + Free Software Foundation (FSF) + +
+ +
is_builtin
+
+ + True + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-bison-exception-2.0 + +
+ +
faq_url
+
+ + http://www.gnu.org/software/bison/manual/bison.html#Conditions + +
+ +
standard_notice
+
+ + This library 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, 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 General Public License for +more details. +You should have received a copy of the GNU General Public License along +with this library; see the file COPYING. If not, write to the Free Software +Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +As a special exception, when this file is copied by Bison into a Bison +output file, you may use that output file without restriction. This special +exception was added by the Free Software Foundation in version 1.24 of +Bison. + + +
+ +
text
+
+ + As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. + +
+ +
+
license_text
+
As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.json b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.json new file mode 100644 index 00000000000..1fa6da09ea1 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.json @@ -0,0 +1,13 @@ +{ + "key": "bison-exception-2.0", + "short_name": "Bison exception to GPL 2.0 or later", + "name": "Bison exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_builtin": true, + "is_exception": true, + "spdx_license_key": "LicenseRef-scancode-bison-exception-2.0", + "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions", + "standard_notice": "This library is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis library is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this library; see the file COPYING. If not, write to the Free Software\nFoundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\nAs a special exception, when this file is copied by Bison into a Bison\noutput file, you may use that output file without restriction. This special\nexception was added by the Free Software Foundation in version 1.24 of\nBison.\n", + "text": "As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.yml b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.yml new file mode 100644 index 00000000000..0c5d1845242 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.0.yml @@ -0,0 +1,28 @@ +key: bison-exception-2.0 +short_name: Bison exception to GPL 2.0 or later +name: Bison exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_builtin: yes +is_exception: yes +spdx_license_key: LicenseRef-scancode-bison-exception-2.0 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, when this file is copied by Bison into a Bison + output file, you may use that output file without restriction. This special + exception was added by the Free Software Foundation in version 1.24 of + Bison. +text: As a special exception, when this file is copied by Bison into a Bison output file, you + may use that output file without restriction. This special exception was added by the Free + Software Foundation in version 1.24 of Bison. diff --git a/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.LICENSE b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.LICENSE new file mode 100644 index 00000000000..309438359a5 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.LICENSE @@ -0,0 +1,39 @@ +--- +key: bison-exception-2.2 +short_name: Bison 2.2 exception to GPL 2.0 or later +name: Bison 2.2 exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_builtin: yes +is_exception: yes +spdx_license_key: Bison-exception-2.2 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +other_urls: + - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 +standard_notice: | + 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, or (at your option) any later + version. + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this program; if not, write to the + Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + As a special exception, you may create a larger work that contains part or + all of the Bison parser skeleton and distribute that work under terms of + your choice, so long as that work isn't itself a parser generator using the + skeleton or a modified version thereof as a parser skeleton. Alternatively, + if you modify or redistribute the parser skeleton itself, you may (at your + option) remove this special exception, which will cause the skeleton and + the resulting Bison output files to be licensed under the GNU General + Public License without this special exception. + This special exception was added by the Free Software Foundation in version + 2.2 of Bison. +--- + +b"As a special exception, you may create a larger work that contains part or all\nof the Bison parser skeleton and distribute that work under terms of your\nchoice, so long as that work isn't itself a parser generator using the skeleton\nor a modified version thereof as a parser skeleton. Alternatively, if you\nmodify or redistribute the parser skeleton itself, you may (at your option)\nremove this special exception, which will cause the skeleton and the resulting\nBison output files to be licensed under the GNU General Public License without\nthis special exception.\n\nThis special exception was added by the Free Software Foundation in version 2.2\nof Bison." \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.html b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.html new file mode 100644 index 00000000000..57044a8010a --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.html @@ -0,0 +1,229 @@ + + + + + + LicenseDB: bison-exception-2.2 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bison-exception-2.2 + +
+ +
short_name
+
+ + Bison 2.2 exception to GPL 2.0 or later + +
+ +
name
+
+ + Bison 2.2 exception to GPL 2.0 or later + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + Free Software Foundation (FSF) + +
+ +
is_builtin
+
+ + True + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + Bison-exception-2.2 + +
+ +
faq_url
+
+ + http://www.gnu.org/software/bison/manual/bison.html#Conditions + +
+ +
other_urls
+
+ + + +
+ +
standard_notice
+
+ + 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, or (at your option) any later +version. +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +more details. +You should have received a copy of the GNU General Public License along +with this program; if not, write to the +Free Software Foundation, Inc., +51 Franklin Street, Fifth Floor, +Boston, MA 02110-1301, USA. +As a special exception, you may create a larger work that contains part or +all of the Bison parser skeleton and distribute that work under terms of +your choice, so long as that work isn't itself a parser generator using the +skeleton or a modified version thereof as a parser skeleton. Alternatively, +if you modify or redistribute the parser skeleton itself, you may (at your +option) remove this special exception, which will cause the skeleton and +the resulting Bison output files to be licensed under the GNU General +Public License without this special exception. +This special exception was added by the Free Software Foundation in version +2.2 of Bison. + + +
+ +
text
+
+ + As a special exception, you may create a larger work that contains part or all +of the Bison parser skeleton and distribute that work under terms of your +choice, so long as that work isn't itself a parser generator using the skeleton +or a modified version thereof as a parser skeleton. Alternatively, if you +modify or redistribute the parser skeleton itself, you may (at your option) +remove this special exception, which will cause the skeleton and the resulting +Bison output files to be licensed under the GNU General Public License without +this special exception. + +This special exception was added by the Free Software Foundation in version 2.2 +of Bison. + +
+ +
+
license_text
+
As a special exception, you may create a larger work that contains part or all
+of the Bison parser skeleton and distribute that work under terms of your
+choice, so long as that work isn't itself a parser generator using the skeleton
+or a modified version thereof as a parser skeleton.  Alternatively, if you
+modify or redistribute the parser skeleton itself, you may (at your option)
+remove this special exception, which will cause the skeleton and the resulting
+Bison output files to be licensed under the GNU General Public License without
+this special exception.
+
+This special exception was added by the Free Software Foundation in version 2.2
+of Bison.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.json b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.json new file mode 100644 index 00000000000..240928bd3b6 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.json @@ -0,0 +1,16 @@ +{ + "key": "bison-exception-2.2", + "short_name": "Bison 2.2 exception to GPL 2.0 or later", + "name": "Bison 2.2 exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "is_builtin": true, + "is_exception": true, + "spdx_license_key": "Bison-exception-2.2", + "faq_url": "http://www.gnu.org/software/bison/manual/bison.html#Conditions", + "other_urls": [ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141" + ], + "standard_notice": "This program is free software; you can redistribute it and/or modify it\nunder the terms of the GNU General Public License as published by the Free\nSoftware Foundation; either version 2, or (at your option) any later\nversion.\nThis program is distributed in the hope that it will be useful, but WITHOUT\nANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\nFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\nmore details.\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the\nFree Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor,\nBoston, MA 02110-1301, USA.\nAs a special exception, you may create a larger work that contains part or\nall of the Bison parser skeleton and distribute that work under terms of\nyour choice, so long as that work isn't itself a parser generator using the\nskeleton or a modified version thereof as a parser skeleton. Alternatively,\nif you modify or redistribute the parser skeleton itself, you may (at your\noption) remove this special exception, which will cause the skeleton and\nthe resulting Bison output files to be licensed under the GNU General\nPublic License without this special exception.\nThis special exception was added by the Free Software Foundation in version\n2.2 of Bison.\n", + "text": "As a special exception, you may create a larger work that contains part or all\nof the Bison parser skeleton and distribute that work under terms of your\nchoice, so long as that work isn't itself a parser generator using the skeleton\nor a modified version thereof as a parser skeleton. Alternatively, if you\nmodify or redistribute the parser skeleton itself, you may (at your option)\nremove this special exception, which will cause the skeleton and the resulting\nBison output files to be licensed under the GNU General Public License without\nthis special exception.\n\nThis special exception was added by the Free Software Foundation in version 2.2\nof Bison." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.yml b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.yml new file mode 100644 index 00000000000..a28f0faf207 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bison-exception-2.2.yml @@ -0,0 +1,47 @@ +key: bison-exception-2.2 +short_name: Bison 2.2 exception to GPL 2.0 or later +name: Bison 2.2 exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_builtin: yes +is_exception: yes +spdx_license_key: Bison-exception-2.2 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +other_urls: + - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 +standard_notice: | + 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, or (at your option) any later + version. + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this program; if not, write to the + Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + As a special exception, you may create a larger work that contains part or + all of the Bison parser skeleton and distribute that work under terms of + your choice, so long as that work isn't itself a parser generator using the + skeleton or a modified version thereof as a parser skeleton. Alternatively, + if you modify or redistribute the parser skeleton itself, you may (at your + option) remove this special exception, which will cause the skeleton and + the resulting Bison output files to be licensed under the GNU General + Public License without this special exception. + This special exception was added by the Free Software Foundation in version + 2.2 of Bison. +text: | + As a special exception, you may create a larger work that contains part or all + of the Bison parser skeleton and distribute that work under terms of your + choice, so long as that work isn't itself a parser generator using the skeleton + or a modified version thereof as a parser skeleton. Alternatively, if you + modify or redistribute the parser skeleton itself, you may (at your option) + remove this special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public License without + this special exception. + + This special exception was added by the Free Software Foundation in version 2.2 + of Bison. diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.LICENSE b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.LICENSE new file mode 100644 index 00000000000..51e28868b81 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.LICENSE @@ -0,0 +1,20 @@ +--- +key: bittorrent-1.0 +short_name: BitTorrent 1.0 +name: BitTorrent Open Source License 1.0 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +is_builtin: yes +spdx_license_key: BitTorrent-1.0 +text_urls: + - http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/ + - http://www.bittorrent.com/license/ + - https://spdx.org/licenses/BitTorrent-1.0.html +other_urls: + - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s +ignorable_urls: + - http://www.bittorrent.com/license +--- + +b'BitTorrent Open Source License\n\nVersion 1.0\n\nThis BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as\nwell as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by\nBitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product.\nLicensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which\nyou may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this\nPreamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the\nLicense and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the\n"JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been\ndropped.\n\nThis License provides that:\n\n1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software\ndistribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous\nContributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source\nCode" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it.\n(The term "Derivative Works" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you\nmake to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you\nmust make the Source Code of your Modifications available to others.\n\n5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty\nwhatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn\'t work properly\nor causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or\nfor accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any\nterms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will\napply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a\nproprietary license of your choice. If you use any license other than this License, however, you must continue to\nfulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those\nportions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time. You may choose to continue to use the license\nterms in this version of the License or those from the new version. However, only the Licensor has the right to\nchange the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and\nthe definitions are repeated for your convenience in a Glossary at the end of the License.\n\n\nLicense Terms\n\n1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive\nlicense, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the\nsubstance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of\nLicensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications\nthat you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity\nwho created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a\nworld-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the\nfollowing:\n\n1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\n2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks,\ncopyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as\nexpressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete\nfrom the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is\ngranted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product.\nNothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this\nLicense any code that Licensor otherwise would have a right to license.\n\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed\nProduct, you hereby agree that any Modifications that you create or to which you contribute, and which you\ndistribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications\nthat you create or to which you contribute may be distributed only under the terms of this License or a future\nversion of this License released under Section 7. You must include a copy of this License with every copy of the\nModifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of\nthe Licensed Product or Modifications that alter or restrict the applicable version of this License or the\nrecipients\' rights hereunder. However, you may include an additional document offering the additional rights\ndescribed in Section 4(d).\n\nb. Availability of Source Code. You must make available, under the terms of this License, the Source Code of\nthe Licensed Product and any Modifications that you distribute, either on the same media as you distribute any\nexecutable or other form of the Licensed Product, or via a mechanism generally accepted in the software development\ncommunity for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any\nversion of Licensed Product or Modifications that you distribute must remain available for at least twelve (12)\nmonths after the date it initially became available, or at least six (6) months after a subsequent version of said\nLicensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code\nversion remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third\nparty\'s intellectual property right is required to exercise the rights granted by this License, you must include a\ntext file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in\nsufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any\nModifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make\navailable thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups)\nreasonably calculated to inform those who received the Licensed Product from you that new knowledge has been\nobtained.\n\nii. Contributor APIs. If your Modifications include an application\nprogramming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement\nthat API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to\n4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have\nsufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source\nCode of any Modifications you create or to which you contribute, and which you distribute, wherever you describe\nrecipients\' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice")\nin each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification,\nyou may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source\nCode file due to its structure, then you must include such Notice in a location (such as a relevant directory file)\nwhere a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty,\nsupport, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so\nonly on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such\nwarranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the\nLicensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of\nwarranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a\nlicense of your choice that may contain terms different from this License provided (i) you have satisfied the\nrequirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the\nexecutable version, related documentation and collateral materials stating that the Source Code version of the\nLicensed Product is available under the terms of this License, including a description of how and where you have\nfulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License\nare offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every\nContributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the\nLicensed Product with other code) and distribute the Derivative Works as products under any other license you select,\nwith the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that\nconsist of the Licensed Product or any Modifications thereto.\n\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the\nterms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or\nregulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the\nstatute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the\ncode they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included\nwith all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such\ndescription must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to\nunderstand it.\n\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the\nNotice in Exhibit A, which is incorporated herein by this reference.\n\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License,\nyou may always continue to use it under the terms of that version. You may also choose to use such Licensed Product\nunder the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the\nright to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do\nonly in order to apply it to software that is not already a Licensed Product under this License, you must rename your\nlicense so that it is not confusingly similar to this License, and must make it clear that your license contains\nterms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any\nContributor.\n\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE\nOF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND\nNOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\nDISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED\nHEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate\nautomatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of\nbecoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any\ntermination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this\nLicense, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent\ninfringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or\nContributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product\ndirectly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections\n1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice\nPeriod") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable\nreasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your\nlitigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable\nroyalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of\nsaid Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging\nthat Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or\nsettlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses\ngranted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of\nany payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all\nend user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you\nor any distributor hereunder prior to termination shall survive termination.\n\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),\nCONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER\nOF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF\nANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR\nMALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY\nNOT APPLY TO YOU.\n\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and\ndamages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with\nLicensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R.\n2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth\nherein.\n\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any\nprovision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary\nto make it enforceable. This License shall be governed by California law provisions (except to the extent applicable\nlaw, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation\nrelating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of\nCalifornia or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa\nClara County, California, with the losing party responsible for costs including, without limitation, court costs and\nreasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in\nany litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of\na contract shall be construed against the drafter shall not apply to this License.\n\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an\nindividual or a legal entity exercising rights under, and complying with all of the terms of, this License or a\nfuture version of this License issued under Section 7. For legal entities, you includes any entity that controls, is\ncontrolled by, or is under common control with you. For purposes of this definition, control means (i) the power,\ndirect or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii)\nownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated\nhere, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined\nterm is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification.\n(See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes\nall previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed\nProduct, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained\ntherein, plus any associated interface definition files, scripts used to control compilation and installation of an\nexecutable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See\nSection 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or\nany hereto. Contributors to any Modifications may add their own copyright notices to identify their own\ncontributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not\ncopy or use this file, in either source code or executable form, except in compliance with the License. You may\nobtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express\nor implied. See the License for the specific language governing rights and limitations under the License.' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.html b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.html new file mode 100644 index 00000000000..3b9e559ddb6 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.html @@ -0,0 +1,848 @@ + + + + + + LicenseDB: bittorrent-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bittorrent-1.0 + +
+ +
short_name
+
+ + BitTorrent 1.0 + +
+ +
name
+
+ + BitTorrent Open Source License 1.0 + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + BitTorrent, Inc. + +
+ +
homepage_url
+
+ + http://www.bittorrent.com/license/ + +
+ +
is_builtin
+
+ + True + +
+ +
spdx_license_key
+
+ + BitTorrent-1.0 + +
+ +
text_urls
+
+ + + +
+ +
other_urls
+
+ + + +
+ +
ignorable_urls
+
+ + + +
+ +
text
+
+ + BitTorrent Open Source License + +Version 1.0 + +This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as +well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by +BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. +Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which +you may use, copy, distribute or modify Licensed Product. + +Preamble + +This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this +Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the +License and not this Preamble. + +This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the +"JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been +dropped. + +This License provides that: + +1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software +distribution containing programs from several different sources. No royalty or other fee is required. + +2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous +Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source +Code" are defined in the License.) + +3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. +(The term "Derivative Works" is defined in the License.) + +4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you +make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you +must make the Source Code of your Modifications available to others. + +5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty +whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly +or causes you any injury or damages. + +6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or +for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code. + +7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any +terms of the License, your rights to the Licensed Product under this License automatically terminate. + +You may use this License to distribute your own Derivative Works, in which case the provisions of this License will +apply to your Derivative Works just as they do to the original Licensed Product. + +Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a +proprietary license of your choice. If you use any license other than this License, however, you must continue to +fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those +portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + +New versions of this License may be published from time to time. You may choose to continue to use the license +terms in this version of the License or those from the new version. However, only the Licensor has the right to +change the License terms as they apply to the Licensed Product. + +This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and +the definitions are repeated for your convenience in a Glossary at the end of the License. + + +License Terms + +1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive +license, subject to third party intellectual property claims, to do the following: + +a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such +Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as +part of Derivative Works. + +b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for +sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any +such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of +Modifications or portions thereof or Derivative Works thereof. + + +2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the +substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of +Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications +that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity +who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a +world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the +following: + +1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such +Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as +part of Derivative Works. + +2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for +sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any +such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of +Modifications or portions thereof or Derivative Works thereof. + + +3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, +copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as +expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete +from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is +granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. +Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this +License any code that Licensor otherwise would have a right to license. + + +4. Your Obligations Regarding Distribution. + +a. Application of This License to Your Modifications. As an express condition for your use of the Licensed +Product, you hereby agree that any Modifications that you create or to which you contribute, and which you +distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications +that you create or to which you contribute may be distributed only under the terms of this License or a future +version of this License released under Section 7. You must include a copy of this License with every copy of the +Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of +the Licensed Product or Modifications that alter or restrict the applicable version of this License or the +recipients' rights hereunder. However, you may include an additional document offering the additional rights +described in Section 4(d). + +b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of +the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any +executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development +community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any +version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) +months after the date it initially became available, or at least six (6) months after a subsequent version of said +Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code +version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + +c. Intellectual Property Matters. + +i. Third Party Claims. If you have knowledge that a license to a third +party's intellectual property right is required to exercise the rights granted by this License, you must include a +text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in +sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any +Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make +available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) +reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been +obtained. + +ii. Contributor APIs. If your Modifications include an application +programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement +that API, you must also include this information in the LEGAL file. + +iii. Representations. You represent that, except as disclosed pursuant to +4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have +sufficient rights to grant the rights conveyed by this License. + +d. Required Notices. You must duplicate this License in any documentation you provide along with the Source +Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe +recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") +in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, +you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source +Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) +where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, +support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so +only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such +warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the +Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of +warranty, support, indemnity or liability terms you offer. + +e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a +license of your choice that may contain terms different from this License provided (i) you have satisfied the +requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the +executable version, related documentation and collateral materials stating that the Source Code version of the +Licensed Product is available under the terms of this License, including a description of how and where you have +fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License +are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every +Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + +f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the +Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, +with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that +consist of the Licensed Product or any Modifications thereto. + + +5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the +terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or +regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the +statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the +code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included +with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such +description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to +understand it. + + +6. Application of This License. This License applies to code to which Licensor or Contributor has attached the +Notice in Exhibit A, which is incorporated herein by this reference. + + +7. Versions of This License. + +a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + +b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, +you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product +under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the +right to modify the terms applicable to Licensed Product created under this License. + +c. Derivative Works of this License. If you create or use a modified version of this License, which you may do +only in order to apply it to software that is not already a Licensed Product under this License, you must rename your +license so that it is not confusingly similar to this License, and must make it clear that your license contains +terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any +Contributor. + + +8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE +OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND +NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS +DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED +HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + +9. Termination. + +a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate +automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of +becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any +termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this +License, shall survive. + +b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent +infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or +Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product +directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections +1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice +Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable +reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your +litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable +royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not +withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of +said Notice Period. + +c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging +that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or +settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses +granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of +any payment or license. + +d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all +end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you +or any distributor hereunder prior to termination shall survive termination. + + +10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), +CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER +OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF +ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR +MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE +POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY +RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO +NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY +NOT APPLY TO YOU. + + +11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and +damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with +Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or +shall be deemed to constitute any admission of liability. + + +12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. +2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such +terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through +227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth +herein. + + +13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any +provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary +to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable +law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation +relating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of +California or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa +Clara County, California, with the losing party responsible for costs including, without limitation, court costs and +reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the +International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in +any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of +a contract shall be construed against the drafter shall not apply to this License. + + +14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an +individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a +future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is +controlled by, or is under common control with you. For 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. + + +15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated +here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined +term is first used is shown in parentheses. + +Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. +(See Section 2) + +Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + +License: This BitTorrent Open Source License. (See first paragraph of License) + +Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes +all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + +Licensor: BitTorrent, Inc. (See first paragraph of License) + +Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed +Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + +Notice: The notice contained in Exhibit A. (See Section 4(e)) + +Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained +therein, plus any associated interface definition files, scripts used to control compilation and installation of an +executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See +Section 1(a)) + +You: This term is defined in Section 14 of this License. + + +EXHIBIT A + +The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or +any hereto. Contributors to any Modifications may add their own copyright notices to identify their own +contributions. + +License: + +The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not +copy or use this file, in either source code or executable form, except in compliance with the License. You may +obtain a copy of the License at http://www.bittorrent.com/license/. + +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express +or implied. See the License for the specific language governing rights and limitations under the License. + +
+ +
+
license_text
+
BitTorrent Open Source License
+
+Version 1.0
+
+This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as
+well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by
+BitTorrent, Inc. ("Licensor").  Any BitTorrent Product licensed pursuant to this License is a Licensed Product.
+Licensed Product, in its entirety, is protected by U.S. copyright law.  This License identifies the terms under which
+you may use, copy, distribute or modify Licensed Product.
+
+Preamble
+
+This Preamble is intended to describe, in plain English, the nature and scope of this License.  However, this
+Preamble is not a part of this license.  The legal effect of this License is dependent only upon the terms of the
+License and not this Preamble.
+
+This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the
+"JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been
+dropped.
+
+This License provides that:
+
+1.      You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software
+distribution containing programs from several different sources.  No royalty or other fee is required.
+
+2.      Both Source Code and executable versions of the Licensed Product, including Modifications made by previous
+Contributors, are available for your use.  (The terms "Licensed Product," "Modifications," "Contributors" and "Source
+Code" are defined in the License.)
+
+3.      You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it.
+(The term "Derivative Works" is defined in the License.)
+
+4.      By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you
+make to the Licensed Product and then distribute are governed by the provisions of this License.  In particular, you
+must make the Source Code of your Modifications available to others.
+
+5.      You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty
+whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly
+or causes you any injury or damages.
+
+6.      If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or
+for accepting indemnity or liability obligations to your customers.  You cannot charge for the Source Code.
+
+7.      If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any
+terms of the License, your rights to the Licensed Product under this License automatically terminate.
+
+You may use this License to distribute your own Derivative Works, in which case the provisions of this License will
+apply to your Derivative Works just as they do to the original Licensed Product.
+
+Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a
+proprietary license of your choice.  If you use any license other than this License, however, you must continue to
+fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those
+portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.
+
+New versions of this License may be published from time to time.  You may choose to  continue to use the license
+terms in this version of the License or those from the new version.  However, only the Licensor has the right to
+change the License terms as they apply to the Licensed Product.
+
+This License relies on precise definitions for certain terms.  Those terms are defined when they are first used, and
+the definitions are repeated for your convenience in a Glossary at the end of the License.
+
+
+License Terms
+
+1.      Grant of License From Licensor.  Licensor hereby grants you a world-wide, royalty-free, non-exclusive
+license, subject to third party intellectual property claims, to do the following:
+
+a.       Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such
+Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as
+part of Derivative Works.
+
+b.       Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for
+sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any
+such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of
+Modifications or portions thereof or Derivative Works thereof.
+
+
+2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the
+substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of
+Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications
+that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity
+who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a
+world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the
+following:
+
+1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such
+Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as
+part of Derivative Works.
+
+2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for
+sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any
+such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of
+Modifications or portions thereof or Derivative Works thereof.
+
+
+3.      Exclusions From License Grant.  Nothing in this License shall be deemed to grant any rights to trademarks,
+copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as
+expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete
+from the Licensed Product, or for combinations of the Licensed Product with other software or hardware.  No right is
+granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product.
+Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this
+License any code that Licensor otherwise would have a right to license.
+
+
+4.      Your Obligations Regarding Distribution.
+
+a.       Application of This License to Your Modifications.  As an express condition for your use of the Licensed
+Product, you hereby agree that any Modifications that you create or to which you contribute, and which you
+distribute, are governed by the terms of this License including, without limitation, Section 2.  Any Modifications
+that you create or to which you contribute may be distributed only under the terms of this License or a future
+version of this License released under Section 7.  You must include a copy of this License with every copy of the
+Modifications you distribute.  You agree not to offer or impose any terms on any Source Code or executable version of
+the Licensed Product or Modifications that alter or restrict the applicable version of this License or the
+recipients' rights hereunder. However, you may include an additional document offering the additional rights
+described in Section 4(d).
+
+b.       Availability of Source Code.  You must make available, under the terms of this License, the Source Code of
+the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any
+executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development
+community for the electronic transfer of data (an "Electronic Distribution Mechanism").  The Source Code for any
+version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12)
+months after the date it initially became available, or at least six (6) months after a subsequent version of said
+Licensed Product or Modifications has been made available.  You are responsible for ensuring that the Source Code
+version remains available even if the Electronic Distribution Mechanism is maintained by a third party.
+
+c.       Intellectual Property Matters.
+
+i.            Third Party Claims.  If you have knowledge that a license to a third
+party's intellectual property right is required to exercise the rights granted by this License, you must include a
+text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in
+sufficient detail that a recipient will know whom to contact.  If you obtain such knowledge after you make any
+Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make
+available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups)
+reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been
+obtained.
+
+ii.            Contributor APIs.  If your Modifications include an application
+programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement
+that API, you must also include this information in the LEGAL file.
+
+iii.            Representations.  You represent that, except as disclosed pursuant to
+4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have
+sufficient rights to grant the rights conveyed by this License.
+
+d.       Required Notices.  You must duplicate this License in any documentation you provide along with the Source
+Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe
+recipients' rights relating to Licensed Product.  You must duplicate the notice contained in Exhibit A (the "Notice")
+in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification,
+you may add your name as a Contributor to the Notice.  If it is not possible to put the Notice in a particular Source
+Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file)
+where a user would be likely to look for such a notice.  You may choose to offer, and charge a fee for, warranty,
+support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so
+only on your own behalf, and not on behalf of the Licensor or any Contributor.  You must make it clear that any such
+warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the
+Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of
+warranty, support, indemnity or liability terms you offer.
+
+e.        Distribution of Executable Versions.  You may distribute Licensed Product as an executable program under a
+license of your choice that may contain terms different from this License provided (i) you have satisfied the
+requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the
+executable version, related documentation and collateral materials stating that the Source Code version of the
+Licensed Product is available under the terms of this License, including a description of how and where you have
+fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License
+are offered by you alone, not by Licensor or any Contributor.  You hereby agree to indemnify the Licensor and every
+Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.
+
+f.       Distribution of Derivative Works.  You may create Derivative Works (e.g., combinations of some or all of the
+Licensed Product with other code) and distribute the Derivative Works as products under any other license you select,
+with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that
+consist of the Licensed Product or any Modifications thereto.
+
+
+5.      Inability to Comply Due to Statute or Regulation.  If it is impossible for you to comply with any of the
+terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or
+regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the
+statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the
+code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included
+with all distributions of the Source Code.  Except to the extent prohibited by statute or regulation, such
+description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to
+understand it.
+
+
+6.      Application of This License.  This License applies to code to which Licensor or Contributor has attached the
+Notice in Exhibit A, which is incorporated herein by this reference.
+
+
+7.      Versions of This License.
+
+a.       New Versions.  Licensor may publish from time to time revised and/or new versions of the License.
+
+b.       Effect of New Versions.  Once Licensed Product has been published under a particular version of the License,
+you may always continue to use it under the terms of that version.  You may also choose to use such Licensed Product
+under the terms of any subsequent version of the License published by Licensor.  No one other than Licensor has the
+right to modify the terms applicable to Licensed Product created under this License.
+
+c.       Derivative Works of this License.  If you create or use a modified version of this License, which you may do
+only in order to apply it to software that is not already a Licensed Product under this License, you must rename your
+license so that it is not confusingly similar to this License, and must make it clear that your license contains
+terms that differ from this License.  In so naming your license, you may not use any trademark of Licensor or any
+Contributor.
+
+
+8.      Disclaimer of Warranty.  LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE
+OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
+PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU.  SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND
+NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION.  THIS
+DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED
+HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
+
+
+9.      Termination.
+
+a.       Automatic Termination Upon Breach.  This license and the rights granted hereunder will terminate
+automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of
+becoming aware of the breach.  All sublicenses to the Licensed Product that are properly granted shall survive any
+termination of this license.  Provisions that, by their nature, must remain in effect beyond the termination of this
+License, shall survive.
+
+b.       Termination Upon Assertion of Patent Infringement.  If you initiate litigation by asserting a patent
+infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or
+Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product
+directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections
+1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice
+Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable
+reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your
+litigation claim with respect to Licensed Product against such Respondent.  If within said Notice Period a reasonable
+royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not
+withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of
+said Notice Period.
+
+c.       Reasonable Value of This License.  If you assert a patent infringement claim against Respondent alleging
+that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or
+settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses
+granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of
+any payment or license.
+
+d.       No Retroactive Effect of Termination.  In the event of termination under Sections 9(a) or 9(b) above, all
+end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you
+or any distributor hereunder prior to termination shall survive termination.
+
+
+10.  Limitation of Liability.  UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),
+CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER
+OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF
+ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
+MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE
+POSSIBILITY OF SUCH DAMAGES.  THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
+RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION.  SOME JURISDICTIONS DO
+NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY
+NOT APPLY TO YOU.
+
+
+11.  Responsibility for Claims.  As between Licensor and Contributors, each party is responsible for claims and
+damages arising, directly or indirectly, out of its utilization of rights under this License.  You agree to work with
+Licensor and Contributors to distribute such responsibility on an equitable basis.  Nothing herein is intended or
+shall be deemed to constitute any admission of liability.
+
+
+12.  U.S. Government End Users.  The Licensed Product is a commercial item, as that term is defined in 48 C.F.R.
+2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such
+terms are used in 48 C.F.R. 12.212 (Sept. 1995).  Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through
+227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth
+herein.
+
+
+13.  Miscellaneous.  This License represents the complete agreement concerning the subject matter hereof.  If any
+provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary
+to make it enforceable.  This License shall be governed by California law provisions (except to the extent applicable
+law, if any, provides otherwise), excluding its conflict-of-law provisions.  You expressly agree that any litigation
+relating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of
+California or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa
+Clara County, California, with the losing party responsible for costs including, without limitation, court costs and
+reasonable attorneys fees and expenses.  The application of the United Nations Convention on Contracts for the
+International Sale of Goods is expressly excluded.  You and Licensor expressly waive any rights to a jury trial in
+any litigation concerning Licensed Product or this License.  Any law or regulation that provides that the language of
+a contract shall be construed against the drafter shall not apply to this License.
+
+
+14.  Definition of You in This License. You throughout this License, whether in upper or lower case, means an
+individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a
+future version of this License issued under Section 7.  For legal entities, you includes any entity that controls, is
+controlled by, or is under common control with you.  For 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.
+
+
+15.  Glossary.  All defined terms in this License that are used in more than one Section of this License are repeated
+here, in alphabetical order, for the convenience of the reader.  The Section of this License in which each defined
+term is first used is shown in parentheses.
+
+Contributor:  Each person or entity who created or contributed to the creation of, and distributed, a Modification.
+(See Section 2)
+
+Derivative Works: That term as used in this License is defined under U.S. copyright law.  (See Section 1(b))
+
+License:  This BitTorrent Open Source License.  (See first paragraph of License)
+
+Licensed Product:  Any BitTorrent Product licensed pursuant to this License.  The term "Licensed Product" includes
+all previous Modifications from any Contributor that you receive.  (See first paragraph of License and Section 2)
+
+Licensor:  BitTorrent, Inc.  (See first paragraph of License)
+
+Modifications:  Any additions to or deletions from the substance or structure of (i) a file containing Licensed
+Product, or (ii) any new file that contains any part of Licensed Product.  (See Section 2)
+
+Notice:  The notice contained in Exhibit A.  (See Section 4(e))
+
+Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained
+therein, plus any associated interface definition files, scripts used to control compilation and installation of an
+executable program, or a list of differential comparisons against the Source Code of the Licensed Product.  (See
+Section 1(a))
+
+You:  This term is defined in Section 14 of this License.
+
+
+EXHIBIT A
+
+The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or
+any hereto.  Contributors to any Modifications may add their own copyright notices to identify their own
+contributions.
+
+License:
+
+The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License).  You may not
+copy or use this file, in either source code or executable form, except in compliance with the License.  You may
+obtain a copy of the License at http://www.bittorrent.com/license/.
+
+Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express
+or implied.  See the License for the specific language governing rights and limitations under the License.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.json b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.json new file mode 100644 index 00000000000..878a73af027 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.json @@ -0,0 +1,22 @@ +{ + "key": "bittorrent-1.0", + "short_name": "BitTorrent 1.0", + "name": "BitTorrent Open Source License 1.0", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/license/", + "is_builtin": true, + "spdx_license_key": "BitTorrent-1.0", + "text_urls": [ + "http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/", + "http://www.bittorrent.com/license/", + "https://spdx.org/licenses/BitTorrent-1.0.html" + ], + "other_urls": [ + "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s" + ], + "ignorable_urls": [ + "http://www.bittorrent.com/license" + ], + "text": "BitTorrent Open Source License\n\nVersion 1.0\n\nThis BitTorrent Open Source License (the \"License\") applies to the BitTorrent client and related software products as\nwell as any updates or maintenance releases of that software (\"BitTorrent Products\") that are distributed by\nBitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product.\nLicensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which\nyou may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this\nPreamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the\nLicense and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the\n\"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been\ndropped.\n\nThis License provides that:\n\n1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software\ndistribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous\nContributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source\nCode\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it.\n(The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you\nmake to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you\nmust make the Source Code of your Modifications available to others.\n\n5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty\nwhatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly\nor causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or\nfor accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any\nterms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will\napply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a\nproprietary license of your choice. If you use any license other than this License, however, you must continue to\nfulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those\nportions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time. You may choose to continue to use the license\nterms in this version of the License or those from the new version. However, only the Licensor has the right to\nchange the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and\nthe definitions are repeated for your convenience in a Glossary at the end of the License.\n\n\nLicense Terms\n\n1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive\nlicense, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the\nsubstance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of\nLicensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications\nthat you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity\nwho created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a\nworld-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the\nfollowing:\n\n1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\n2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks,\ncopyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as\nexpressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete\nfrom the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is\ngranted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product.\nNothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this\nLicense any code that Licensor otherwise would have a right to license.\n\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed\nProduct, you hereby agree that any Modifications that you create or to which you contribute, and which you\ndistribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications\nthat you create or to which you contribute may be distributed only under the terms of this License or a future\nversion of this License released under Section 7. You must include a copy of this License with every copy of the\nModifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of\nthe Licensed Product or Modifications that alter or restrict the applicable version of this License or the\nrecipients' rights hereunder. However, you may include an additional document offering the additional rights\ndescribed in Section 4(d).\n\nb. Availability of Source Code. You must make available, under the terms of this License, the Source Code of\nthe Licensed Product and any Modifications that you distribute, either on the same media as you distribute any\nexecutable or other form of the Licensed Product, or via a mechanism generally accepted in the software development\ncommunity for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any\nversion of Licensed Product or Modifications that you distribute must remain available for at least twelve (12)\nmonths after the date it initially became available, or at least six (6) months after a subsequent version of said\nLicensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code\nversion remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third\nparty's intellectual property right is required to exercise the rights granted by this License, you must include a\ntext file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in\nsufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any\nModifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make\navailable thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups)\nreasonably calculated to inform those who received the Licensed Product from you that new knowledge has been\nobtained.\n\nii. Contributor APIs. If your Modifications include an application\nprogramming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement\nthat API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to\n4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have\nsufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source\nCode of any Modifications you create or to which you contribute, and which you distribute, wherever you describe\nrecipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\")\nin each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification,\nyou may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source\nCode file due to its structure, then you must include such Notice in a location (such as a relevant directory file)\nwhere a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty,\nsupport, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so\nonly on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such\nwarranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the\nLicensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of\nwarranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a\nlicense of your choice that may contain terms different from this License provided (i) you have satisfied the\nrequirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the\nexecutable version, related documentation and collateral materials stating that the Source Code version of the\nLicensed Product is available under the terms of this License, including a description of how and where you have\nfulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License\nare offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every\nContributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the\nLicensed Product with other code) and distribute the Derivative Works as products under any other license you select,\nwith the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that\nconsist of the Licensed Product or any Modifications thereto.\n\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the\nterms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or\nregulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the\nstatute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the\ncode they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included\nwith all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such\ndescription must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to\nunderstand it.\n\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the\nNotice in Exhibit A, which is incorporated herein by this reference.\n\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License,\nyou may always continue to use it under the terms of that version. You may also choose to use such Licensed Product\nunder the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the\nright to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do\nonly in order to apply it to software that is not already a Licensed Product under this License, you must rename your\nlicense so that it is not confusingly similar to this License, and must make it clear that your license contains\nterms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any\nContributor.\n\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE\nOF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND\nNOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\nDISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED\nHEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate\nautomatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of\nbecoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any\ntermination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this\nLicense, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent\ninfringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or\nContributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product\ndirectly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections\n1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice\nPeriod\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable\nreasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your\nlitigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable\nroyalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of\nsaid Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging\nthat Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or\nsettlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses\ngranted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of\nany payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all\nend user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you\nor any distributor hereunder prior to termination shall survive termination.\n\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),\nCONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER\nOF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF\nANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR\nMALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY\nNOT APPLY TO YOU.\n\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and\ndamages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with\nLicensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R.\n2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth\nherein.\n\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any\nprovision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary\nto make it enforceable. This License shall be governed by California law provisions (except to the extent applicable\nlaw, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation\nrelating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of\nCalifornia or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa\nClara County, California, with the losing party responsible for costs including, without limitation, court costs and\nreasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in\nany litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of\na contract shall be construed against the drafter shall not apply to this License.\n\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an\nindividual or a legal entity exercising rights under, and complying with all of the terms of, this License or a\nfuture version of this License issued under Section 7. For legal entities, you includes any entity that controls, is\ncontrolled by, or is under common control with you. For purposes of this definition, control means (i) the power,\ndirect or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii)\nownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated\nhere, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined\nterm is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification.\n(See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes\nall previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed\nProduct, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained\ntherein, plus any associated interface definition files, scripts used to control compilation and installation of an\nexecutable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See\nSection 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or\nany hereto. Contributors to any Modifications may add their own copyright notices to identify their own\ncontributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not\ncopy or use this file, in either source code or executable form, except in compliance with the License. You may\nobtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express\nor implied. See the License for the specific language governing rights and limitations under the License." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.yml b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.yml new file mode 100644 index 00000000000..69b30447c1d --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.0.yml @@ -0,0 +1,347 @@ +key: bittorrent-1.0 +short_name: BitTorrent 1.0 +name: BitTorrent Open Source License 1.0 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +is_builtin: yes +spdx_license_key: BitTorrent-1.0 +text_urls: + - http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/ + - http://www.bittorrent.com/license/ + - https://spdx.org/licenses/BitTorrent-1.0.html +other_urls: + - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s +ignorable_urls: + - http://www.bittorrent.com/license +text: | + BitTorrent Open Source License + + Version 1.0 + + This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as + well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by + BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. + Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which + you may use, copy, distribute or modify Licensed Product. + + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this + Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the + License and not this Preamble. + + This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the + "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been + dropped. + + This License provides that: + + 1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software + distribution containing programs from several different sources. No royalty or other fee is required. + + 2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous + Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source + Code" are defined in the License.) + + 3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. + (The term "Derivative Works" is defined in the License.) + + 4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you + make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you + must make the Source Code of your Modifications available to others. + + 5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty + whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly + or causes you any injury or damages. + + 6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or + for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code. + + 7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any + terms of the License, your rights to the Licensed Product under this License automatically terminate. + + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will + apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a + proprietary license of your choice. If you use any license other than this License, however, you must continue to + fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those + portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time. You may choose to continue to use the license + terms in this version of the License or those from the new version. However, only the Licensor has the right to + change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and + the definitions are repeated for your convenience in a Glossary at the end of the License. + + + License Terms + + 1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive + license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such + Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as + part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for + sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any + such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of + Modifications or portions thereof or Derivative Works thereof. + + + 2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the + substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of + Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications + that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity + who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a + world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the + following: + + 1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such + Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as + part of Derivative Works. + + 2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for + sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any + such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of + Modifications or portions thereof or Derivative Works thereof. + + + 3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, + copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as + expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete + from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is + granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. + Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this + License any code that Licensor otherwise would have a right to license. + + + 4. Your Obligations Regarding Distribution. + + a. Application of This License to Your Modifications. As an express condition for your use of the Licensed + Product, you hereby agree that any Modifications that you create or to which you contribute, and which you + distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications + that you create or to which you contribute may be distributed only under the terms of this License or a future + version of this License released under Section 7. You must include a copy of this License with every copy of the + Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of + the Licensed Product or Modifications that alter or restrict the applicable version of this License or the + recipients' rights hereunder. However, you may include an additional document offering the additional rights + described in Section 4(d). + + b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of + the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any + executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development + community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any + version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) + months after the date it initially became available, or at least six (6) months after a subsequent version of said + Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code + version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + c. Intellectual Property Matters. + + i. Third Party Claims. If you have knowledge that a license to a third + party's intellectual property right is required to exercise the rights granted by this License, you must include a + text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in + sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any + Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make + available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) + reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been + obtained. + + ii. Contributor APIs. If your Modifications include an application + programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement + that API, you must also include this information in the LEGAL file. + + iii. Representations. You represent that, except as disclosed pursuant to + 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have + sufficient rights to grant the rights conveyed by this License. + + d. Required Notices. You must duplicate this License in any documentation you provide along with the Source + Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe + recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") + in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, + you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source + Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) + where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, + support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so + only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such + warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the + Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of + warranty, support, indemnity or liability terms you offer. + + e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a + license of your choice that may contain terms different from this License provided (i) you have satisfied the + requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the + executable version, related documentation and collateral materials stating that the Source Code version of the + Licensed Product is available under the terms of this License, including a description of how and where you have + fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License + are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every + Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + + f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the + Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, + with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that + consist of the Licensed Product or any Modifications thereto. + + + 5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the + terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or + regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the + statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the + code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included + with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such + description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to + understand it. + + + 6. Application of This License. This License applies to code to which Licensor or Contributor has attached the + Notice in Exhibit A, which is incorporated herein by this reference. + + + 7. Versions of This License. + + a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + + b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, + you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product + under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the + right to modify the terms applicable to Licensed Product created under this License. + + c. Derivative Works of this License. If you create or use a modified version of this License, which you may do + only in order to apply it to software that is not already a Licensed Product under this License, you must rename your + license so that it is not confusingly similar to this License, and must make it clear that your license contains + terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any + Contributor. + + + 8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE + OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND + PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND + NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS + DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED + HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + + 9. Termination. + + a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate + automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of + becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any + termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this + License, shall survive. + + b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent + infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or + Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product + directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections + 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice + Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable + reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your + litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable + royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not + withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of + said Notice Period. + + c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging + that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or + settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses + granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of + any payment or license. + + d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all + end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you + or any distributor hereunder prior to termination shall survive termination. + + + 10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), + CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER + OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF + ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR + MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE + POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO + NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY + NOT APPLY TO YOU. + + + 11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and + damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with + Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + + + 12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. + 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through + 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth + herein. + + + 13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any + provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary + to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable + law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation + relating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of + California or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa + Clara County, California, with the losing party responsible for costs including, without limitation, court costs and + reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in + any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of + a contract shall be construed against the drafter shall not apply to this License. + + + 14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an + individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a + future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is + controlled by, or is under common control with you. For 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. + + + 15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated + here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined + term is first used is shown in parentheses. + + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. + (See Section 2) + + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + + License: This BitTorrent Open Source License. (See first paragraph of License) + + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes + all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + + Licensor: BitTorrent, Inc. (See first paragraph of License) + + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed + Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + + Notice: The notice contained in Exhibit A. (See Section 4(e)) + + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained + therein, plus any associated interface definition files, scripts used to control compilation and installation of an + executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See + Section 1(a)) + + You: This term is defined in Section 14 of this License. + + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or + any hereto. Contributors to any Modifications may add their own copyright notices to identify their own + contributions. + + License: + + The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not + copy or use this file, in either source code or executable form, except in compliance with the License. You may + obtain a copy of the License at http://www.bittorrent.com/license/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express + or implied. See the License for the specific language governing rights and limitations under the License. diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.LICENSE b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.LICENSE new file mode 100644 index 00000000000..6dfe6c276a2 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.LICENSE @@ -0,0 +1,22 @@ +--- +key: bittorrent-1.1 +short_name: BitTorrent 1.1 +name: BitTorrent Open Source License 1.1 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license +notes: | + The link http://www.bittorrent.com/license/ is dead, so there is no live + text containing the license terms except at + http://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license +is_builtin: yes +spdx_license_key: BitTorrent-1.1 +text_urls: + - http://www.bittorrent.com/legal/bittorrent-open-source-license +other_urls: + - http://directory.fsf.org/wiki/License:BitTorrentOSL1.1 +ignorable_urls: + - http://www.bittorrent.com/license +--- + +b'BitTorrent Open Source License\n\nVersion 1.1\n\nThis BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\n1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\n\n5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\n\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn\'t work properly or causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\n1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients\' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\n\nb. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third party\'s intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\n\nii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients\' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\n\ng. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.html b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.html new file mode 100644 index 00000000000..9cb46d363c4 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.html @@ -0,0 +1,476 @@ + + + + + + LicenseDB: bittorrent-1.1 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bittorrent-1.1 + +
+ +
short_name
+
+ + BitTorrent 1.1 + +
+ +
name
+
+ + BitTorrent Open Source License 1.1 + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + BitTorrent, Inc. + +
+ +
homepage_url
+
+ + https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license + +
+ +
notes
+
+ + The link http://www.bittorrent.com/license/ is dead, so there is no live +text containing the license terms except at +http://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license + + +
+ +
is_builtin
+
+ + True + +
+ +
spdx_license_key
+
+ + BitTorrent-1.1 + +
+ +
text_urls
+
+ + + +
+ +
other_urls
+
+ + + +
+ +
ignorable_urls
+
+ + + +
+ +
text
+
+ + BitTorrent Open Source License + +Version 1.1 + +This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + +Preamble + +This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + +This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + +This License provides that: + +1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + +2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + +3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + +4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + +5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + +You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + +6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + +7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + +You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + +Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + +New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + +This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + +License Terms + +1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + +a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + +b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + +2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + +a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + +b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + +3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + +4. Your Obligations Regarding Distribution. + +a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + +b. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + +c. Intellectual Property Matters. + +i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + +ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + +iii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + +d. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + +e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + +f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + +g. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + +5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + +6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + +7. Versions of This License. + +a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + +b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + +c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + +8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +9. Termination. + +a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + +b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + +c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + +d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + +10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + +12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + +13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + +14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + +15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + +Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + +Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + +License: This BitTorrent Open Source License. (See first paragraph of License) + +Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + +Licensor: BitTorrent, Inc. (See first paragraph of License) + +Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + +Notice: The notice contained in Exhibit A. (See Section 4(e)) + +Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + +You: This term is defined in Section 14 of this License. + +EXHIBIT A + +The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + +License: + +The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + +
+ +
+
license_text
+
BitTorrent Open Source License
+
+Version 1.1
+
+This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.
+
+Preamble
+
+This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.
+
+This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.
+
+This License provides that:
+
+1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.
+
+2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.)
+
+3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.)
+
+4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.
+
+5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.
+
+You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.
+
+6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.
+
+7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.
+
+You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.
+
+Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.
+
+New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.
+
+This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.
+
+License Terms
+
+1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:
+
+a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.
+
+b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.
+
+2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:
+
+a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.
+
+b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.
+
+3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.
+
+4. Your Obligations Regarding Distribution.
+
+a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).
+
+b. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.
+
+c. Intellectual Property Matters.
+
+i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.
+
+ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.
+
+iii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.
+
+d. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.
+
+e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.
+
+f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.
+
+g. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.
+
+5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.
+
+6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.
+
+7. Versions of This License.
+
+a. New Versions. Licensor may publish from time to time revised and/or new versions of the License.
+
+b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.
+
+c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.
+
+8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
+
+9. Termination.
+
+a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.
+
+b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.
+
+c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.
+
+d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.
+
+10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
+
+11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.
+
+12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.
+
+13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.
+
+14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.
+
+15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.
+
+Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)
+
+Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))
+
+License: This BitTorrent Open Source License. (See first paragraph of License)
+
+Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)
+
+Licensor: BitTorrent, Inc. (See first paragraph of License)
+
+Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)
+
+Notice: The notice contained in Exhibit A. (See Section 4(e))
+
+Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))
+
+You: This term is defined in Section 14 of this License.
+
+EXHIBIT A
+
+The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.
+
+License:
+
+The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.
+
+Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.json b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.json new file mode 100644 index 00000000000..0b0362ee5c1 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.json @@ -0,0 +1,21 @@ +{ + "key": "bittorrent-1.1", + "short_name": "BitTorrent 1.1", + "name": "BitTorrent Open Source License 1.1", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license", + "notes": "The link http://www.bittorrent.com/license/ is dead, so there is no live\ntext containing the license terms except at\nhttp://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license\n", + "is_builtin": true, + "spdx_license_key": "BitTorrent-1.1", + "text_urls": [ + "http://www.bittorrent.com/legal/bittorrent-open-source-license" + ], + "other_urls": [ + "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1" + ], + "ignorable_urls": [ + "http://www.bittorrent.com/license" + ], + "text": "BitTorrent Open Source License\n\nVersion 1.1\n\nThis BitTorrent Open Source License (the \"License\") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software (\"BitTorrent Products\") that are distributed by BitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the \"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\n1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\n\n5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\n\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\n1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\n\nb. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\n\nii. Contributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\n\ng. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.yml b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.yml new file mode 100644 index 00000000000..3c00b2d215e --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.1.yml @@ -0,0 +1,158 @@ +key: bittorrent-1.1 +short_name: BitTorrent 1.1 +name: BitTorrent Open Source License 1.1 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license +notes: | + The link http://www.bittorrent.com/license/ is dead, so there is no live + text containing the license terms except at + http://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license +is_builtin: yes +spdx_license_key: BitTorrent-1.1 +text_urls: + - http://www.bittorrent.com/legal/bittorrent-open-source-license +other_urls: + - http://directory.fsf.org/wiki/License:BitTorrentOSL1.1 +ignorable_urls: + - http://www.bittorrent.com/license +text: | + BitTorrent Open Source License + + Version 1.1 + + This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + + This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + + This License provides that: + + 1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + + 2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + + 3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + + 4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + + 5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + + You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + + 6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + + 7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + + License Terms + + 1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + + 2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + + 3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + + 4. Your Obligations Regarding Distribution. + + a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + + b. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + c. Intellectual Property Matters. + + i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + + ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + + iii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + + d. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + + e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + + f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + + g. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + + 5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + + 6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + + 7. Versions of This License. + + a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + + b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + + c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + + 8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 9. Termination. + + a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + + b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + + c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + + d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + + 10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + + 13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + + 15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + + License: This BitTorrent Open Source License. (See first paragraph of License) + + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + + Licensor: BitTorrent, Inc. (See first paragraph of License) + + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + + Notice: The notice contained in Exhibit A. (See Section 4(e)) + + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + + You: This term is defined in Section 14 of this License. + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + + License: + + The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.LICENSE b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.LICENSE new file mode 100644 index 00000000000..df14eda47a9 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.LICENSE @@ -0,0 +1,14 @@ +--- +key: bittorrent-1.2 +short_name: BitTorrent 1.2 +name: BitTorrent Open Source License 1.2 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +is_builtin: yes +spdx_license_key: LicenseRef-scancode-bittorrent-1.2 +ignorable_urls: + - http://www.bittorrent.com/license +--- + +b'BitTorrent Open Source License\nVersion 1.2\n\nThis BitTorrent Open Source License (the "License") applies to certain software that is distributed by BitTorrent, Inc. ("Licensor") specifically under this license ("BitTorrent Products"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\nYou may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\nBoth Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.)\nYou are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.)\nBy accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\nYou may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor\xe2\x80\x99s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\xe2\x80\x99s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn\'t work properly or causes you any injury or damages.\nIf you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\nIf you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\nGrant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\nGrant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\nExclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\nYour Obligations Regarding Distribution.\nApplication of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients\' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\nAvailability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\nIntellectual Property Matters.\nThird Party Claims. If you have knowledge that a license to a third party\'s intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\nContributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\nRepresentations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\nRequired Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients\' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\nDistribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\nDistribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\nCompensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor\xe2\x80\x99s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party\xe2\x80\x99s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party\xe2\x80\x99s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\xe2\x80\x99s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\nInability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\nApplication of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\nVersions of This License.\nNew Versions. Licensor may publish from time to time revised and/or new versions of the License.\nEffect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\nDerivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\nDisclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\nTermination.\nAutomatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\nTermination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\nReasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\nNo Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\nLimitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\nResponsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\nU.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\nMiscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\nDefinition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\nGlossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\nLicensor: BitTorrent, Inc. (See first paragraph of License)\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\nNotice: The notice contained in Exhibit A. (See Section 4(e))\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.html b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.html new file mode 100644 index 00000000000..dcfa4743cfd --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.html @@ -0,0 +1,340 @@ + + + + + + LicenseDB: bittorrent-1.2 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bittorrent-1.2 + +
+ +
short_name
+
+ + BitTorrent 1.2 + +
+ +
name
+
+ + BitTorrent Open Source License 1.2 + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + BitTorrent, Inc. + +
+ +
homepage_url
+
+ + http://www.bittorrent.com/license/ + +
+ +
is_builtin
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-bittorrent-1.2 + +
+ +
ignorable_urls
+
+ + + +
+ +
text
+
+ + BitTorrent Open Source License +Version 1.2 + +This BitTorrent Open Source License (the "License") applies to certain software that is distributed by BitTorrent, Inc. ("Licensor") specifically under this license ("BitTorrent Products"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. +Preamble + +This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + +This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + +This License provides that: + +You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. +Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) +You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) +By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. +You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor’s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. +You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. +If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. +If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. +You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + +Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + +New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + +This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + +License Terms + +Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: +Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. +Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. +Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: +Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. +Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. +Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. +Your Obligations Regarding Distribution. +Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). +Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. +Intellectual Property Matters. +Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. +Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. +Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. +Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. +Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. +Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. +Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor’s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party’s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party’s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. +Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. +Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. +Versions of This License. +New Versions. Licensor may publish from time to time revised and/or new versions of the License. +Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. +Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. +Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. +Termination. +Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. +Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. +Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. +No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. +Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. +Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. +U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. +Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. +Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. +Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. +Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) +Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) +License: This BitTorrent Open Source License. (See first paragraph of License) +Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) +Licensor: BitTorrent, Inc. (See first paragraph of License) +Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) +Notice: The notice contained in Exhibit A. (See Section 4(e)) +Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) +You: This term is defined in Section 14 of this License. + +EXHIBIT A + +The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + +License: + +The contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + +
+ +
+
license_text
+
BitTorrent Open Source License
+Version 1.2
+
+This BitTorrent Open Source License (the "License") applies to certain software that is distributed by BitTorrent, Inc. ("Licensor") specifically under this license ("BitTorrent Products"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.
+Preamble
+
+This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.
+
+This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.
+
+This License provides that:
+
+You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.
+Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.)
+You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.)
+By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.
+You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor’s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.
+You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.
+If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.
+If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.
+You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.
+
+Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.
+
+New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.
+
+This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.
+
+License Terms
+
+Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:
+Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.
+Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.
+Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:
+Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.
+Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.
+Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.
+Your Obligations Regarding Distribution.
+Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).
+Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.
+Intellectual Property Matters.
+Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.
+Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.
+Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.
+Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.
+Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.
+Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.
+Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor’s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party’s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party’s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.
+Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.
+Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.
+Versions of This License.
+New Versions. Licensor may publish from time to time revised and/or new versions of the License.
+Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.
+Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.
+Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
+Termination.
+Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.
+Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.
+Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.
+No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.
+Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
+Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.
+U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.
+Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.
+Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.
+Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.
+Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)
+Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))
+License: This BitTorrent Open Source License. (See first paragraph of License)
+Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)
+Licensor: BitTorrent, Inc. (See first paragraph of License)
+Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)
+Notice: The notice contained in Exhibit A. (See Section 4(e))
+Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))
+You: This term is defined in Section 14 of this License.
+
+EXHIBIT A
+
+The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.
+
+License:
+
+The contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.
+
+Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.json b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.json new file mode 100644 index 00000000000..c4f20314d1e --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.json @@ -0,0 +1,14 @@ +{ + "key": "bittorrent-1.2", + "short_name": "BitTorrent 1.2", + "name": "BitTorrent Open Source License 1.2", + "category": "Copyleft Limited", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/license/", + "is_builtin": true, + "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", + "ignorable_urls": [ + "http://www.bittorrent.com/license" + ], + "text": "BitTorrent Open Source License\nVersion 1.2\n\nThis BitTorrent Open Source License (the \"License\") applies to certain software that is distributed by BitTorrent, Inc. (\"Licensor\") specifically under this license (\"BitTorrent Products\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the \"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\nYou may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\nBoth Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\nYou are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\nBy accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\nYou may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor\u2019s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\u2019s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\nIf you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\nIf you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\nGrant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\nGrant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\nExclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\nYour Obligations Regarding Distribution.\nApplication of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\nAvailability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\nIntellectual Property Matters.\nThird Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\nContributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\nRepresentations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\nRequired Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\nDistribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\nDistribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\nCompensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor\u2019s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party\u2019s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party\u2019s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\u2019s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\nInability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\nApplication of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\nVersions of This License.\nNew Versions. Licensor may publish from time to time revised and/or new versions of the License.\nEffect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\nDerivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\nDisclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\nTermination.\nAutomatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\nTermination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\nReasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\nNo Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\nLimitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\nResponsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\nU.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\nMiscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\nDefinition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\nGlossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\nLicensor: BitTorrent, Inc. (See first paragraph of License)\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\nNotice: The notice contained in Exhibit A. (See Section 4(e))\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.yml b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.yml new file mode 100644 index 00000000000..f3c4e046e10 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-1.2.yml @@ -0,0 +1,96 @@ +key: bittorrent-1.2 +short_name: BitTorrent 1.2 +name: BitTorrent Open Source License 1.2 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +is_builtin: yes +spdx_license_key: LicenseRef-scancode-bittorrent-1.2 +ignorable_urls: + - http://www.bittorrent.com/license +text: | + BitTorrent Open Source License + Version 1.2 + + This BitTorrent Open Source License (the "License") applies to certain software that is distributed by BitTorrent, Inc. ("Licensor") specifically under this license ("BitTorrent Products"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + + This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + + This License provides that: + + You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor’s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + + License Terms + + Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + Your Obligations Regarding Distribution. + Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + Intellectual Property Matters. + Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor’s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party’s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party’s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + Versions of This License. + New Versions. Licensor may publish from time to time revised and/or new versions of the License. + Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + Termination. + Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + License: This BitTorrent Open Source License. (See first paragraph of License) + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + Licensor: BitTorrent, Inc. (See first paragraph of License) + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + Notice: The notice contained in Exhibit A. (See Section 4(e)) + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + You: This term is defined in Section 14 of this License. + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + + License: + + The contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.LICENSE b/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.LICENSE new file mode 100644 index 00000000000..596b55052aa --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.LICENSE @@ -0,0 +1,17 @@ +--- +key: bittorrent-eula +short_name: BitTorrent EULA +name: BitTorrent End User License Agreement (EULA) +category: Proprietary Free +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/legal/eula +is_builtin: yes +spdx_license_key: LicenseRef-scancode-bittorrent-eula +ignorable_urls: + - http://www.bittorrent.com/legal/eula + - http://www.bittorrent.com/legal/terms-of-use +ignorable_emails: + - legal@bittorrent.com +--- + +b'End User License Agreement (EULA)\n\nBy accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement.\n\nThe Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc.\n\nLicense\nSubject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here.\n\nRestrictions\nThe source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold.\n\nThe BitTorrent Technologies\nDownloading and Updates\n\nThe Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself.\n\nAutomatic Uploading\n\nThe Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users\' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded.\n\nDisclaimer of Warranty\nBitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent.\n\nLimitation of Liability\nBitTorrent, Inc\'s total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent.\n\nU.S. Government Users\nThe Software is "commercial computer software" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc.\n\nGeneral\nThese BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.\'s complete and exclusive understanding with you regarding your use of the Software as an end user.\n\nContact\nIf you have any questions, contact us at legal@bittorrent.com.' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.html b/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.html new file mode 100644 index 00000000000..1ec5956d7cf --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.html @@ -0,0 +1,249 @@ + + + + + + LicenseDB: bittorrent-eula + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bittorrent-eula + +
+ +
short_name
+
+ + BitTorrent EULA + +
+ +
name
+
+ + BitTorrent End User License Agreement (EULA) + +
+ +
category
+
+ + Proprietary Free + +
+ +
owner
+
+ + BitTorrent, Inc. + +
+ +
homepage_url
+
+ + http://www.bittorrent.com/legal/eula + +
+ +
is_builtin
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-bittorrent-eula + +
+ +
ignorable_urls
+
+ + + +
+ +
ignorable_emails
+
+ + + +
+ +
text
+
+ + End User License Agreement (EULA) + +By accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement. + +The Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc. + +License +Subject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here. + +Restrictions +The source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold. + +The BitTorrent Technologies +Downloading and Updates + +The Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself. + +Automatic Uploading + +The Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded. + +Disclaimer of Warranty +BitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent. + +Limitation of Liability +BitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent. + +U.S. Government Users +The Software is "commercial computer software" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc. + +General +These BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user. + +Contact +If you have any questions, contact us at legal@bittorrent.com. + +
+ +
+
license_text
+
End User License Agreement (EULA)
+
+By accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement.
+
+The Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc.
+
+License
+Subject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here.
+
+Restrictions
+The source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold.
+
+The BitTorrent Technologies
+Downloading and Updates
+
+The Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself.
+
+Automatic Uploading
+
+The Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded.
+
+Disclaimer of Warranty
+BitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent.
+
+Limitation of Liability
+BitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent.
+
+U.S. Government Users
+The Software is "commercial computer software" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc.
+
+General
+These BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user.
+
+Contact
+If you have any questions, contact us at legal@bittorrent.com.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.json b/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.json new file mode 100644 index 00000000000..fe8ce5da083 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.json @@ -0,0 +1,18 @@ +{ + "key": "bittorrent-eula", + "short_name": "BitTorrent EULA", + "name": "BitTorrent End User License Agreement (EULA)", + "category": "Proprietary Free", + "owner": "BitTorrent, Inc.", + "homepage_url": "http://www.bittorrent.com/legal/eula", + "is_builtin": true, + "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", + "ignorable_urls": [ + "http://www.bittorrent.com/legal/eula", + "http://www.bittorrent.com/legal/terms-of-use" + ], + "ignorable_emails": [ + "legal@bittorrent.com" + ], + "text": "End User License Agreement (EULA)\n\nBy accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the \"Software\") or by clicking \"Install\", you agree to the following terms, notwithstanding anything to the contrary in this agreement.\n\nThe Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc.\n\nLicense\nSubject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here.\n\nRestrictions\nThe source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold.\n\nThe BitTorrent Technologies\nDownloading and Updates\n\nThe Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself.\n\nAutomatic Uploading\n\nThe Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded.\n\nDisclaimer of Warranty\nBitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent.\n\nLimitation of Liability\nBitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent.\n\nU.S. Government Users\nThe Software is \"commercial computer software\" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc.\n\nGeneral\nThese BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user.\n\nContact\nIf you have any questions, contact us at legal@bittorrent.com." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.yml b/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.yml new file mode 100644 index 00000000000..dec66e9b1c9 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bittorrent-eula.yml @@ -0,0 +1,49 @@ +key: bittorrent-eula +short_name: BitTorrent EULA +name: BitTorrent End User License Agreement (EULA) +category: Proprietary Free +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/legal/eula +is_builtin: yes +spdx_license_key: LicenseRef-scancode-bittorrent-eula +ignorable_urls: + - http://www.bittorrent.com/legal/eula + - http://www.bittorrent.com/legal/terms-of-use +ignorable_emails: + - legal@bittorrent.com +text: | + End User License Agreement (EULA) + + By accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement. + + The Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc. + + License + Subject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here. + + Restrictions + The source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold. + + The BitTorrent Technologies + Downloading and Updates + + The Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself. + + Automatic Uploading + + The Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded. + + Disclaimer of Warranty + BitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent. + + Limitation of Liability + BitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent. + + U.S. Government Users + The Software is "commercial computer software" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc. + + General + These BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user. + + Contact + If you have any questions, contact us at legal@bittorrent.com. diff --git a/tests/licensedcode/data/license_db/license_dump/boost-1.0.LICENSE b/tests/licensedcode/data/license_db/license_dump/boost-1.0.LICENSE new file mode 100644 index 00000000000..866b4941cdb --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/boost-1.0.LICENSE @@ -0,0 +1,22 @@ +--- +key: boost-1.0 +short_name: Boost 1.0 +name: Boost Software License 1.0 +category: Permissive +owner: Boost +homepage_url: http://www.boost.org/users/license.html +notes: | + Per SPDX.org, this version was released 17 August 2003 This license is OSI + certifified. +is_builtin: yes +spdx_license_key: BSL-1.0 +text_urls: + - http://www.boost.org/LICENSE_1_0.txt +osi_url: http://www.opensource.org/licenses/bsl1.0.html +other_urls: + - http://www.boost.org/users/license.html + - http://www.opensource.org/licenses/BSL-1.0 + - https://opensource.org/licenses/BSL-1.0 +--- + +b'Boost Software License - Version 1.0 - August 17th, 2003\n\nPermission is hereby granted, free of charge, to any person or organization\nobtaining a copy of the software and accompanying documentation covered by\nthis license (the "Software") to use, reproduce, display, distribute,\nexecute, and transmit the Software, and to prepare derivative works of the\nSoftware, and to permit third-parties to whom the Software is furnished to\ndo so, all subject to the following:\n\nThe copyright notices in the Software and this entire statement, including\nthe above license grant, this restriction and the following disclaimer,\nmust be included in all copies of the Software, in whole or in part, and\nall derivative works of the Software, unless such copies or derivative\nworks are solely in the form of machine-executable object code generated by\na source language processor.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/boost-1.0.html b/tests/licensedcode/data/license_db/license_dump/boost-1.0.html new file mode 100644 index 00000000000..497f966afcb --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/boost-1.0.html @@ -0,0 +1,241 @@ + + + + + + LicenseDB: boost-1.0 + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + boost-1.0 + +
+ +
short_name
+
+ + Boost 1.0 + +
+ +
name
+
+ + Boost Software License 1.0 + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + Boost + +
+ +
homepage_url
+
+ + http://www.boost.org/users/license.html + +
+ +
notes
+
+ + Per SPDX.org, this version was released 17 August 2003 This license is OSI +certifified. + + +
+ +
is_builtin
+
+ + True + +
+ +
spdx_license_key
+
+ + BSL-1.0 + +
+ +
text_urls
+
+ + + +
+ +
osi_url
+
+ + http://www.opensource.org/licenses/bsl1.0.html + +
+ +
other_urls
+
+ + + +
+ +
text
+
+ + Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +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, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. + +
+ +
+
license_text
+
Boost Software License - Version 1.0 - August 17th, 2003
+
+Permission is hereby granted, free of charge, to any person or organization
+obtaining a copy of the software and accompanying documentation covered by
+this license (the "Software") to use, reproduce, display, distribute,
+execute, and transmit the Software, and to prepare derivative works of the
+Software, and to permit third-parties to whom the Software is furnished to
+do so, all subject to the following:
+
+The copyright notices in the Software and this entire statement, including
+the above license grant, this restriction and the following disclaimer,
+must be included in all copies of the Software, in whole or in part, and
+all derivative works of the Software, unless such copies or derivative
+works are solely in the form of machine-executable object code generated by
+a source language processor.
+
+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, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN 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/tests/licensedcode/data/license_db/license_dump/boost-1.0.json b/tests/licensedcode/data/license_db/license_dump/boost-1.0.json new file mode 100644 index 00000000000..6f43cb4da7a --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/boost-1.0.json @@ -0,0 +1,21 @@ +{ + "key": "boost-1.0", + "short_name": "Boost 1.0", + "name": "Boost Software License 1.0", + "category": "Permissive", + "owner": "Boost", + "homepage_url": "http://www.boost.org/users/license.html", + "notes": "Per SPDX.org, this version was released 17 August 2003 This license is OSI\ncertifified.\n", + "is_builtin": true, + "spdx_license_key": "BSL-1.0", + "text_urls": [ + "http://www.boost.org/LICENSE_1_0.txt" + ], + "osi_url": "http://www.opensource.org/licenses/bsl1.0.html", + "other_urls": [ + "http://www.boost.org/users/license.html", + "http://www.opensource.org/licenses/BSL-1.0", + "https://opensource.org/licenses/BSL-1.0" + ], + "text": "Boost Software License - Version 1.0 - August 17th, 2003\n\nPermission is hereby granted, free of charge, to any person or organization\nobtaining a copy of the software and accompanying documentation covered by\nthis license (the \"Software\") to use, reproduce, display, distribute,\nexecute, and transmit the Software, and to prepare derivative works of the\nSoftware, and to permit third-parties to whom the Software is furnished to\ndo so, all subject to the following:\n\nThe copyright notices in the Software and this entire statement, including\nthe above license grant, this restriction and the following disclaimer,\nmust be included in all copies of the Software, in whole or in part, and\nall derivative works of the Software, unless such copies or derivative\nworks are solely in the form of machine-executable object code generated by\na source language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/boost-1.0.yml b/tests/licensedcode/data/license_db/license_dump/boost-1.0.yml new file mode 100644 index 00000000000..e24a9af1601 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/boost-1.0.yml @@ -0,0 +1,42 @@ +key: boost-1.0 +short_name: Boost 1.0 +name: Boost Software License 1.0 +category: Permissive +owner: Boost +homepage_url: http://www.boost.org/users/license.html +notes: | + Per SPDX.org, this version was released 17 August 2003 This license is OSI + certifified. +is_builtin: yes +spdx_license_key: BSL-1.0 +text_urls: + - http://www.boost.org/LICENSE_1_0.txt +osi_url: http://www.opensource.org/licenses/bsl1.0.html +other_urls: + - http://www.boost.org/users/license.html + - http://www.opensource.org/licenses/BSL-1.0 + - https://opensource.org/licenses/BSL-1.0 +text: | + Boost Software License - Version 1.0 - August 17th, 2003 + + Permission is hereby granted, free of charge, to any person or organization + obtaining a copy of the software and accompanying documentation covered by + this license (the "Software") to use, reproduce, display, distribute, + execute, and transmit the Software, and to prepare derivative works of the + Software, and to permit third-parties to whom the Software is furnished to + do so, all subject to the following: + + The copyright notices in the Software and this entire statement, including + the above license grant, this restriction and the following disclaimer, + must be included in all copies of the Software, in whole or in part, and + all derivative works of the Software, unless such copies or derivative + works are solely in the form of machine-executable object code generated by + a source language processor. + + 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT + SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE + FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. diff --git a/tests/licensedcode/data/license_db/license_dump/boost-original.LICENSE b/tests/licensedcode/data/license_db/license_dump/boost-original.LICENSE new file mode 100644 index 00000000000..25eac2ba9bd --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/boost-original.LICENSE @@ -0,0 +1,22 @@ +--- +key: boost-original +short_name: Boost Original +name: Boost Original +category: Permissive +owner: Boost +homepage_url: http://boost.org +notes: "This is the original notice for Boost prior to the publication of the\nboost-1.0 license\ + \ in 2003. Several boost files still carry this license adn\ncould not be updated to the\ + \ boost-1.0 license. This license is aslo found\nin the AntiGrain Geometry component version\ + \ 2.4. \nFor an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\n\ + For an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp" +is_builtin: yes +spdx_license_key: LicenseRef-scancode-boost-original +text_urls: + - https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp + - https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp +other_urls: + - http://www.antigrain.com/license/index.html#toc0002 +--- + +b'Permission to copy, use, modify, sell and distribute this software is granted\nprovided this copyright notice appears in all copies. This software is provided "as\nis" without express or implied warranty, and with no claim as to its suitability for\nany purpose.' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/boost-original.html b/tests/licensedcode/data/license_db/license_dump/boost-original.html new file mode 100644 index 00000000000..1aeb7ee685d --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/boost-original.html @@ -0,0 +1,201 @@ + + + + + + LicenseDB: boost-original + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + boost-original + +
+ +
short_name
+
+ + Boost Original + +
+ +
name
+
+ + Boost Original + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + Boost + +
+ +
homepage_url
+
+ + http://boost.org + +
+ +
notes
+
+ + This is the original notice for Boost prior to the publication of the +boost-1.0 license in 2003. Several boost files still carry this license adn +could not be updated to the boost-1.0 license. This license is aslo found +in the AntiGrain Geometry component version 2.4. +For an example of use in historical Boost, see +https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp +For an example of use in the current Boost, see +https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp + +
+ +
is_builtin
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-boost-original + +
+ +
text_urls
+
+ + + +
+ +
other_urls
+
+ + + +
+ +
text
+
+ + Permission to copy, use, modify, sell and distribute this software is granted +provided this copyright notice appears in all copies. This software is provided "as +is" without express or implied warranty, and with no claim as to its suitability for +any purpose. + +
+ +
+
license_text
+
Permission to copy, use, modify, sell and distribute this software is granted
+provided this copyright notice appears in all copies. This software is provided "as
+is" without express or implied warranty, and with no claim as to its suitability for
+any purpose.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/boost-original.json b/tests/licensedcode/data/license_db/license_dump/boost-original.json new file mode 100644 index 00000000000..f8ebf57e2b7 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/boost-original.json @@ -0,0 +1,19 @@ +{ + "key": "boost-original", + "short_name": "Boost Original", + "name": "Boost Original", + "category": "Permissive", + "owner": "Boost", + "homepage_url": "http://boost.org", + "notes": "This is the original notice for Boost prior to the publication of the\nboost-1.0 license in 2003. Several boost files still carry this license adn\ncould not be updated to the boost-1.0 license. This license is aslo found\nin the AntiGrain Geometry component version 2.4. \nFor an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\nFor an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp", + "is_builtin": true, + "spdx_license_key": "LicenseRef-scancode-boost-original", + "text_urls": [ + "https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp", + "https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp" + ], + "other_urls": [ + "http://www.antigrain.com/license/index.html#toc0002" + ], + "text": "Permission to copy, use, modify, sell and distribute this software is granted\nprovided this copyright notice appears in all copies. This software is provided \"as\nis\" without express or implied warranty, and with no claim as to its suitability for\nany purpose." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/boost-original.yml b/tests/licensedcode/data/license_db/license_dump/boost-original.yml new file mode 100644 index 00000000000..888fc51ad32 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/boost-original.yml @@ -0,0 +1,23 @@ +key: boost-original +short_name: Boost Original +name: Boost Original +category: Permissive +owner: Boost +homepage_url: http://boost.org +notes: "This is the original notice for Boost prior to the publication of the\nboost-1.0 license\ + \ in 2003. Several boost files still carry this license adn\ncould not be updated to the boost-1.0\ + \ license. This license is aslo found\nin the AntiGrain Geometry component version 2.4. \n\ + For an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\n\ + For an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp" +is_builtin: yes +spdx_license_key: LicenseRef-scancode-boost-original +text_urls: + - https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp + - https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp +other_urls: + - http://www.antigrain.com/license/index.html#toc0002 +text: | + Permission to copy, use, modify, sell and distribute this software is granted + provided this copyright notice appears in all copies. This software is provided "as + is" without express or implied warranty, and with no claim as to its suitability for + any purpose. diff --git a/tests/licensedcode/data/license_db/license_dump/bootloader-exception.LICENSE b/tests/licensedcode/data/license_db/license_dump/bootloader-exception.LICENSE new file mode 100644 index 00000000000..aefa51f1759 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bootloader-exception.LICENSE @@ -0,0 +1,73 @@ +--- +key: bootloader-exception +short_name: Bootloader Distribution Exception to GPL 2.0 +name: Bootloader Distribution Exception to GPL 2.0 or later +category: Copyleft Limited +owner: PyInstaller Project +homepage_url: https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt +is_builtin: yes +is_exception: yes +spdx_license_key: Bootloader-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + ================================ + The PyInstaller licensing terms + ================================ + Copyright (c) 2010-2018, PyInstaller Development Team + Copyright (c) 2005-2009, Giovanni Bajo + Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. + PyInstaller is licensed 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. + Bootloader Exception + -------------------- + In addition to the permissions in the GNU General Public License, the + authors give you unlimited permission to link or embed compiled bootloader + and related files into combinations with other programs, and to distribute + those combinations without any restriction coming from the use of those + files. (The General Public License restrictions do apply in other respects; + for example, they cover modification of the files, and distribution when + not linked into a combine executable.) + Bootloader and Related Files + ---------------------------- + Bootloader and related files are files which are embedded within the + final executable. This includes files in directories: + ./bootloader/ + ./PyInstaller/loader + About the PyInstaller Development Team + -------------------------------------- + The PyInstaller Development Team is the set of contributors + to the PyInstaller project. A full list with details is kept + in the documentation directory, in the file + ``doc/CREDITS.rst``. + The core team that coordinates development on GitHub can be found here: + https://github.com/pyinstaller/pyinstaller. As of 2015, it consists of: + * Hartmut Goebel + * Martin Zibricky + * David Vierra + * David Cortesi + Our Copyright Policy + -------------------- + PyInstaller uses a shared copyright model. Each contributor maintains + copyright over their contributions to PyInstaller. But, it is important to + note that these contributions are typically only changes to the repositories. + Thus, the PyInstaller source code, in its entirety is not the copyright of + any single person or institution. Instead, it is the collective copyright of + the entire PyInstaller Development Team. If individual contributors want to + maintain a record of what changes/contributions they have specific copyright + on, they should indicate their copyright in the commit message of the + change, when they commit the change to the PyInstaller repository. + With this in mind, the following banner should be used in any source code + file to indicate the copyright and license terms: + #-------------------------------------------------------------------------- + # Copyright (c) 2005-20l5, PyInstaller Development Team. + # + # Distributed under the terms of the GNU General Public License with + # exception for distributing bootloader. + # + # The full license is in the file COPYING.txt, distributed with this software. + #-------------------------------------------------------------------------- +--- + +b'Bootloader Exception\n\nIn addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.)' \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bootloader-exception.html b/tests/licensedcode/data/license_db/license_dump/bootloader-exception.html new file mode 100644 index 00000000000..451f455b4a9 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bootloader-exception.html @@ -0,0 +1,247 @@ + + + + + + LicenseDB: bootloader-exception + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bootloader-exception + +
+ +
short_name
+
+ + Bootloader Distribution Exception to GPL 2.0 + +
+ +
name
+
+ + Bootloader Distribution Exception to GPL 2.0 or later + +
+ +
category
+
+ + Copyleft Limited + +
+ +
owner
+
+ + PyInstaller Project + +
+ +
homepage_url
+
+ + https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt + +
+ +
is_builtin
+
+ + True + +
+ +
is_exception
+
+ + True + +
+ +
spdx_license_key
+
+ + Bootloader-exception + +
+ +
other_urls
+
+ + + +
+ +
standard_notice
+
+ + ================================ +The PyInstaller licensing terms +================================ +Copyright (c) 2010-2018, PyInstaller Development Team +Copyright (c) 2005-2009, Giovanni Bajo +Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. +PyInstaller is licensed 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. +Bootloader Exception +-------------------- +In addition to the permissions in the GNU General Public License, the +authors give you unlimited permission to link or embed compiled bootloader +and related files into combinations with other programs, and to distribute +those combinations without any restriction coming from the use of those +files. (The General Public License restrictions do apply in other respects; +for example, they cover modification of the files, and distribution when +not linked into a combine executable.) +Bootloader and Related Files +---------------------------- +Bootloader and related files are files which are embedded within the +final executable. This includes files in directories: +./bootloader/ +./PyInstaller/loader +About the PyInstaller Development Team +-------------------------------------- +The PyInstaller Development Team is the set of contributors +to the PyInstaller project. A full list with details is kept +in the documentation directory, in the file +``doc/CREDITS.rst``. +The core team that coordinates development on GitHub can be found here: +https://github.com/pyinstaller/pyinstaller. As of 2015, it consists of: +* Hartmut Goebel +* Martin Zibricky +* David Vierra +* David Cortesi +Our Copyright Policy +-------------------- +PyInstaller uses a shared copyright model. Each contributor maintains +copyright over their contributions to PyInstaller. But, it is important to +note that these contributions are typically only changes to the repositories. +Thus, the PyInstaller source code, in its entirety is not the copyright of +any single person or institution. Instead, it is the collective copyright of +the entire PyInstaller Development Team. If individual contributors want to +maintain a record of what changes/contributions they have specific copyright +on, they should indicate their copyright in the commit message of the +change, when they commit the change to the PyInstaller repository. +With this in mind, the following banner should be used in any source code +file to indicate the copyright and license terms: +#-------------------------------------------------------------------------- +# Copyright (c) 2005-20l5, PyInstaller Development Team. +# +# Distributed under the terms of the GNU General Public License with +# exception for distributing bootloader. +# +# The full license is in the file COPYING.txt, distributed with this software. +#-------------------------------------------------------------------------- + + +
+ +
text
+
+ + Bootloader Exception + +In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.) + +
+ +
+
license_text
+
Bootloader Exception
+
+In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.)
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bootloader-exception.json b/tests/licensedcode/data/license_db/license_dump/bootloader-exception.json new file mode 100644 index 00000000000..4192a515ba5 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bootloader-exception.json @@ -0,0 +1,16 @@ +{ + "key": "bootloader-exception", + "short_name": "Bootloader Distribution Exception to GPL 2.0", + "name": "Bootloader Distribution Exception to GPL 2.0 or later", + "category": "Copyleft Limited", + "owner": "PyInstaller Project", + "homepage_url": "https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt", + "is_builtin": true, + "is_exception": true, + "spdx_license_key": "Bootloader-exception", + "other_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt" + ], + "standard_notice": "================================\nThe PyInstaller licensing terms\n================================\nCopyright (c) 2010-2018, PyInstaller Development Team\nCopyright (c) 2005-2009, Giovanni Bajo\nBased on previous work under copyright (c) 2002 McMillan Enterprises, Inc.\nPyInstaller is licensed under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2 of the\nLicense, or (at your option) any later version.\nBootloader Exception\n--------------------\nIn addition to the permissions in the GNU General Public License, the\nauthors give you unlimited permission to link or embed compiled bootloader\nand related files into combinations with other programs, and to distribute\nthose combinations without any restriction coming from the use of those\nfiles. (The General Public License restrictions do apply in other respects;\nfor example, they cover modification of the files, and distribution when\nnot linked into a combine executable.)\nBootloader and Related Files\n----------------------------\nBootloader and related files are files which are embedded within the\nfinal executable. This includes files in directories:\n./bootloader/\n./PyInstaller/loader\nAbout the PyInstaller Development Team\n--------------------------------------\nThe PyInstaller Development Team is the set of contributors\nto the PyInstaller project. A full list with details is kept\nin the documentation directory, in the file\n``doc/CREDITS.rst``.\nThe core team that coordinates development on GitHub can be found here:\nhttps://github.com/pyinstaller/pyinstaller. As of 2015, it consists of:\n* Hartmut Goebel\n* Martin Zibricky\n* David Vierra\n* David Cortesi\nOur Copyright Policy\n--------------------\nPyInstaller uses a shared copyright model. Each contributor maintains\ncopyright over their contributions to PyInstaller. But, it is important to\nnote that these contributions are typically only changes to the repositories.\nThus, the PyInstaller source code, in its entirety is not the copyright of\nany single person or institution. Instead, it is the collective copyright of\nthe entire PyInstaller Development Team. If individual contributors want to\nmaintain a record of what changes/contributions they have specific copyright\non, they should indicate their copyright in the commit message of the\nchange, when they commit the change to the PyInstaller repository.\nWith this in mind, the following banner should be used in any source code\nfile to indicate the copyright and license terms:\n#--------------------------------------------------------------------------\n# Copyright (c) 2005-20l5, PyInstaller Development Team.\n#\n# Distributed under the terms of the GNU General Public License with\n# exception for distributing bootloader.\n#\n# The full license is in the file COPYING.txt, distributed with this software.\n#--------------------------------------------------------------------------\n", + "text": "Bootloader Exception\n\nIn addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.)" +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bootloader-exception.yml b/tests/licensedcode/data/license_db/license_dump/bootloader-exception.yml new file mode 100644 index 00000000000..078d215d55b --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bootloader-exception.yml @@ -0,0 +1,73 @@ +key: bootloader-exception +short_name: Bootloader Distribution Exception to GPL 2.0 +name: Bootloader Distribution Exception to GPL 2.0 or later +category: Copyleft Limited +owner: PyInstaller Project +homepage_url: https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt +is_builtin: yes +is_exception: yes +spdx_license_key: Bootloader-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + ================================ + The PyInstaller licensing terms + ================================ + Copyright (c) 2010-2018, PyInstaller Development Team + Copyright (c) 2005-2009, Giovanni Bajo + Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. + PyInstaller is licensed 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. + Bootloader Exception + -------------------- + In addition to the permissions in the GNU General Public License, the + authors give you unlimited permission to link or embed compiled bootloader + and related files into combinations with other programs, and to distribute + those combinations without any restriction coming from the use of those + files. (The General Public License restrictions do apply in other respects; + for example, they cover modification of the files, and distribution when + not linked into a combine executable.) + Bootloader and Related Files + ---------------------------- + Bootloader and related files are files which are embedded within the + final executable. This includes files in directories: + ./bootloader/ + ./PyInstaller/loader + About the PyInstaller Development Team + -------------------------------------- + The PyInstaller Development Team is the set of contributors + to the PyInstaller project. A full list with details is kept + in the documentation directory, in the file + ``doc/CREDITS.rst``. + The core team that coordinates development on GitHub can be found here: + https://github.com/pyinstaller/pyinstaller. As of 2015, it consists of: + * Hartmut Goebel + * Martin Zibricky + * David Vierra + * David Cortesi + Our Copyright Policy + -------------------- + PyInstaller uses a shared copyright model. Each contributor maintains + copyright over their contributions to PyInstaller. But, it is important to + note that these contributions are typically only changes to the repositories. + Thus, the PyInstaller source code, in its entirety is not the copyright of + any single person or institution. Instead, it is the collective copyright of + the entire PyInstaller Development Team. If individual contributors want to + maintain a record of what changes/contributions they have specific copyright + on, they should indicate their copyright in the commit message of the + change, when they commit the change to the PyInstaller repository. + With this in mind, the following banner should be used in any source code + file to indicate the copyright and license terms: + #-------------------------------------------------------------------------- + # Copyright (c) 2005-20l5, PyInstaller Development Team. + # + # Distributed under the terms of the GNU General Public License with + # exception for distributing bootloader. + # + # The full license is in the file COPYING.txt, distributed with this software. + #-------------------------------------------------------------------------- +text: | + Bootloader Exception + + In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.) diff --git a/tests/licensedcode/data/license_db/license_dump/bsla.LICENSE b/tests/licensedcode/data/license_db/license_dump/bsla.LICENSE new file mode 100644 index 00000000000..2ce573d91c2 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bsla.LICENSE @@ -0,0 +1,13 @@ +--- +key: bsla +short_name: BSLA +name: Berkeley Software License Agreement +category: Permissive +owner: Regents of the University of California +is_builtin: yes +spdx_license_key: LicenseRef-scancode-bsla +ignorable_authors: + - the University of California, Berkeley +--- + +b"Redistribution and use in source and binary forms are permitted\nprovided that the above copyright notice and this paragraph are\nduplicated in all such forms and that any documentation,\nadvertising materials, and other materials related to such\ndistribution and use acknowledge that the software was developed\nby the University of California, Berkeley. The name of the\nUniversity may not be used to endorse or promote products derived\nfrom this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE." \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bsla.html b/tests/licensedcode/data/license_db/license_dump/bsla.html new file mode 100644 index 00000000000..96aa34849dd --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bsla.html @@ -0,0 +1,185 @@ + + + + + + LicenseDB: bsla + + + + + + + + + +
+ +
+ +
+
+ back to list - + yml - + json - + text - + edit text - + edit data +
+
+ +
key
+
+ + bsla + +
+ +
short_name
+
+ + BSLA + +
+ +
name
+
+ + Berkeley Software License Agreement + +
+ +
category
+
+ + Permissive + +
+ +
owner
+
+ + Regents of the University of California + +
+ +
is_builtin
+
+ + True + +
+ +
spdx_license_key
+
+ + LicenseRef-scancode-bsla + +
+ +
ignorable_authors
+
+ +
    +
  • the University of California, Berkeley
  • +
+ +
+ +
text
+
+ + Redistribution and use in source and binary forms are permitted +provided that the above copyright notice and this paragraph are +duplicated in all such forms and that any documentation, +advertising materials, and other materials related to such +distribution and use acknowledge that the software was developed +by the University of California, Berkeley. The name of the +University 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 WITHOUT ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +
+ +
+
license_text
+
Redistribution and use in source and binary forms are permitted
+provided that the above copyright notice and this paragraph are
+duplicated in all such forms and that any documentation,
+advertising materials, and other materials related to such
+distribution and use acknowledge that the software was developed
+by the University of California, Berkeley. The name of the
+University 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 WITHOUT ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bsla.json b/tests/licensedcode/data/license_db/license_dump/bsla.json new file mode 100644 index 00000000000..679e5f6d64d --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bsla.json @@ -0,0 +1,13 @@ +{ + "key": "bsla", + "short_name": "BSLA", + "name": "Berkeley Software License Agreement", + "category": "Permissive", + "owner": "Regents of the University of California", + "is_builtin": true, + "spdx_license_key": "LicenseRef-scancode-bsla", + "ignorable_authors": [ + "the University of California, Berkeley" + ], + "text": "Redistribution and use in source and binary forms are permitted\nprovided that the above copyright notice and this paragraph are\nduplicated in all such forms and that any documentation,\nadvertising materials, and other materials related to such\ndistribution and use acknowledge that the software was developed\nby the University of California, Berkeley. The name of the\nUniversity may not be used to endorse or promote products derived\nfrom this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE." +} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/bsla.yml b/tests/licensedcode/data/license_db/license_dump/bsla.yml new file mode 100644 index 00000000000..0670ccc1285 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/bsla.yml @@ -0,0 +1,21 @@ +key: bsla +short_name: BSLA +name: Berkeley Software License Agreement +category: Permissive +owner: Regents of the University of California +is_builtin: yes +spdx_license_key: LicenseRef-scancode-bsla +ignorable_authors: + - the University of California, Berkeley +text: | + Redistribution and use in source and binary forms are permitted + provided that the above copyright notice and this paragraph are + duplicated in all such forms and that any documentation, + advertising materials, and other materials related to such + distribution and use acknowledge that the software was developed + by the University of California, Berkeley. The name of the + University 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 WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/tests/licensedcode/data/license_db/license_dump/help.html b/tests/licensedcode/data/license_db/license_dump/help.html new file mode 100644 index 00000000000..6ecc4bc74f6 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/help.html @@ -0,0 +1,252 @@ + + + + + + LicenseDB: Help + + + + + + +
+ +
+ +
+ + +

+ Field Definitions +

+
+
key
+
+ The unique identifier for the license in the ScanCode LicenseDB as assigned by scancode-toolkit. + Note that this identifier is permanent and never changes and never goes away once published: no license key is ever deleted. + Instead a license can be marked as deprecated. +
+ +
short_name
+
A short descriptive name (title) for the license in the ScanCode LicenseDB as assigned by scancode-toolkit.
+ +
name
+
A long name for the license in the ScanCode LicenseDB as assigned by scancode-toolkit.
+ +
is_deprecated
+
+ When this is “yes”, the license is no longer used. For deprecated licenses, the notes may contain commentaries + and the license key that this license may be replaced by when relevant. +
+ +
spdx_license_key
+
+ The SPDX Short Identifier for the license if it exists in the SPDX license list at + https://spdx.org/licenses/. + Otherwise this is an SPDX license reference in the form of LicenseRef-scancode-<license key>. +
+ +
other_spdx_license_keys
+
Alternative (or older, deprecated or obsolete) SPDX Short Identifiers or LicenseRef for the license.
+ +
text_urls
+
URLs to the standard text of the license.
+ +
notes
+
Notes and comments about the license.
+ +
category
+
+ A license category code, assigned by scancode-toolkit, that provides a major grouping for licenses, + generally describing the relationship between the licensor and the licensee. These license categories are not + legally precise, and are only intended to support Software Composition Analysis and usage policy implementations. +
+ +
owner
+
+ An owner is an entity that is the original author or custodian of a software license, and which may be responsible + for the text of the license. This is mandatory and should be set to "Unspecified" if it cannot be determined. +
+ +
homepage_url
+
The homepage URL where the license is described.
+ +
other_urls
+
+ Other URLs that identify or are related to this license, such as URLs to this license in different open-source projects. + Obsolete links may be kept here, as they may be useful for historical analysis purposes. +
+ +
osi_license_key
+
The identifier assigned by the OSI to a license for OSI-approved licenses.
+ +
osi_url
+
A URL on the OSI website http://opensource.org for OSI-approved licenses.
+ +
faq_url
+
A URL that provides answers to frequently asked questions about the license.
+ +
is_exception
+
+ When this is "yes", indicates that this license is actually an exception applied to another license in order to + modify specific conditions of that other license. +
+ +
standard_notice
+
The standard text to provide in source or documentation that identifies the license or exception that applies to the software.
+
+ +
These fields are used only to support certain technical aspects of code scanning:
+
+
ignorable_urls
+
URLs found in the license text but that can be ignored when scanning for URLs.
+ +
ignorable_emails
+
Email addresses found in the license text but that can be ignored when scanning for emails.
+ +
ignorable_copyrights
+
Copyright statements found in the license text but that can be ignored when scanning for copyright.
+ +
ignorable_holders
+
Copyright holders found in the license text but that can be ignored when scanning for copyright holders.
+ +
ignorable_authors
+
Author names found in the license text but that can be ignored when scanning for authors.
+ +
minimum_coverage
+
Minimum percentage of the license text words that need to be matched to consider a license detection as a valid match.
+
+ +
+

+ License Categories +

+
+
Commercial
+
+ A direct commercial license between a supplier and a customer. + Further fact-finding by a Product Team will be necessary to determine how the license conditions apply to use of the software. + This is a Proprietary license that is not Open Source. +
+ +
Copyleft
+
+ A license that offers irrevocable permission to the public to copy and redistribute the work in the same or modified form, + but with the conditions that all such redistributions make the work available in a form that facilitates further modification + and uses the same license terms. A Copyleft license can require code interacting with Copyleft-licensed code to be licensed under + the same license or a compatible license. This is an Open Source license. This category may be described as “Strong Copyleft”. +
+ +
Copyleft Limited
+
+ A license that requires you to redistribute source code, including your changes, and to provide attribution for the software authors. + Your obligation to redistribute source code, including proprietary code linked with code under this license, + is limited according to license-specific rules. This is an Open Source license. This category may be described as “Weak Copyleft”. +
+ +
Free Restricted
+
+ A Permissive-style license that contains restrictions regarding the usage of the software (e.g. where the software is not + intended for use in nuclear power plants) or the redistribution of the software (e.g. where commercial redistribution of + the software is not allowed or allowed only with express permission). The Free Software Foundation (FSF) says that a license + with this kind of restriction is not really open source, although the OSI point of view is not that strict. + This is a Proprietary license that is not Open Source. +
+ +
Patent License
+
+ A license that applies to patents rather than specific software. May be used in conjunction with other software license(s) that + apply to a software component. +
+ +
Permissive
+
+ A license that requires you to provide attribution for the software authors and may include other conditions. + This is an Open Source license. +
+ +
Proprietary Free
+
+ A license that does not require a supplier-customer contract, but has specific terms and conditions which a Product Team + is obligated to follow. These terms and conditions may be documented in the code and/or from a webpage where you must accept + the license (i.e. click-through). This is a Proprietary license that is not Open Source. +
+ +
Public Domain
+
+ “Public Domain” as a license category means software that is not restricted by copyright. + This is most often applicable to a software component because the person entitled to control the copyright has disclaimed that + right in a notice (“dedication”) that appears similar to a license. It is possible for software to be in the public domain + because the copyright has expired, but this is rarely relevant for software due to the long duration of copyrights in most jurisdictions. + The rules for disclaiming copyright and copyright expiration dates vary widely by jurisdiction. + A public domain dedication may apply to software code examples on a website, published public domain specifications or + another type of publication. Public Domain is typically treated as similar to an Open Source license even though it is not an + Open Source license. +
+ +
Source-available
+
+ A license where the software is released through a source code distribution model that includes conditions where the source + can be viewed, and in some cases modified, but without meeting the criteria to be called Open Source. + The most common restriction is for “field of use”. This is a Proprietary license that is not Open Source. +
+ +
Unstated License
+
+ “Unstated License” as a license category means third-party software that has a copyright notice, but no stated license. + Common examples include code snippets from publications and websites. The absence of a license poses a risk that the copyright + owner may assert license conditions at some future time. A Product Team may need to contact the copyright owner to determine the + license conditions, if any. +
+
+
+ +
+ +
+ + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/index.html b/tests/licensedcode/data/license_db/license_dump/index.html new file mode 100644 index 00000000000..475849b845d --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/index.html @@ -0,0 +1,429 @@ + + + + + + LicenseDB + + + + + + + + + +
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/index.json b/tests/licensedcode/data/license_db/license_dump/index.json new file mode 100644 index 00000000000..93a0326f9f3 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/index.json @@ -0,0 +1,158 @@ +[ + { + "license_key": "bash-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "The Free Software Foundation has exempted Bash from the requirement of\nParagraph 2c of the General Public License. This is to say, there is\nno requirement for Bash to print a notice when it is started\ninteractively in the usual way. We made this exception because users\nand standards expect shells not to print such messages. This\nexception applies to any program that serves as a shell and that is\nbased primarily on Bash as opposed to other GNU software.", + "json": "bash-exception-gpl.json", + "yaml": "bash-exception-gpl.yml", + "html": "bash-exception-gpl.html", + "license": "bash-exception-gpl.LICENSE" + }, + { + "license_key": "binary-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution. Redistribution and use in binary form, without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* Redistributions must reproduce the above copyright notice and the\nfollowing disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\n* Neither the name of the Copyright Holder nor the names of its\nsuppliers may be used to endorse or promote products derived from this\nsoftware without specific prior written permission.\n\n* No reverse engineering, decompilation, or disassembly of this software\nis permitted.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND\nCONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF\nUSE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE", + "json": "binary-linux-firmware.json", + "yaml": "binary-linux-firmware.yml", + "html": "binary-linux-firmware.html", + "license": "binary-linux-firmware.LICENSE" + }, + { + "license_key": "bison-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bison-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison.", + "json": "bison-exception-2.0.json", + "yaml": "bison-exception-2.0.yml", + "html": "bison-exception-2.0.html", + "license": "bison-exception-2.0.LICENSE" + }, + { + "license_key": "bison-exception-2.2", + "category": "Copyleft Limited", + "spdx_license_key": "Bison-exception-2.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "As a special exception, you may create a larger work that contains part or all\nof the Bison parser skeleton and distribute that work under terms of your\nchoice, so long as that work isn't itself a parser generator using the skeleton\nor a modified version thereof as a parser skeleton. Alternatively, if you\nmodify or redistribute the parser skeleton itself, you may (at your option)\nremove this special exception, which will cause the skeleton and the resulting\nBison output files to be licensed under the GNU General Public License without\nthis special exception.\n\nThis special exception was added by the Free Software Foundation in version 2.2\nof Bison.", + "json": "bison-exception-2.2.json", + "yaml": "bison-exception-2.2.yml", + "html": "bison-exception-2.2.html", + "license": "bison-exception-2.2.LICENSE" + }, + { + "license_key": "bittorrent-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\n\nVersion 1.0\n\nThis BitTorrent Open Source License (the \"License\") applies to the BitTorrent client and related software products as\nwell as any updates or maintenance releases of that software (\"BitTorrent Products\") that are distributed by\nBitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product.\nLicensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which\nyou may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this\nPreamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the\nLicense and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the\n\"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been\ndropped.\n\nThis License provides that:\n\n1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software\ndistribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous\nContributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source\nCode\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it.\n(The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you\nmake to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you\nmust make the Source Code of your Modifications available to others.\n\n5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty\nwhatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly\nor causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or\nfor accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any\nterms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will\napply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a\nproprietary license of your choice. If you use any license other than this License, however, you must continue to\nfulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those\nportions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time. You may choose to continue to use the license\nterms in this version of the License or those from the new version. However, only the Licensor has the right to\nchange the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and\nthe definitions are repeated for your convenience in a Glossary at the end of the License.\n\n\nLicense Terms\n\n1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive\nlicense, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the\nsubstance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of\nLicensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications\nthat you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity\nwho created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a\nworld-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the\nfollowing:\n\n1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such\nContributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as\npart of Derivative Works.\n\n2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for\nsale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any\nsuch claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of\nModifications or portions thereof or Derivative Works thereof.\n\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks,\ncopyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as\nexpressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete\nfrom the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is\ngranted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product.\nNothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this\nLicense any code that Licensor otherwise would have a right to license.\n\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed\nProduct, you hereby agree that any Modifications that you create or to which you contribute, and which you\ndistribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications\nthat you create or to which you contribute may be distributed only under the terms of this License or a future\nversion of this License released under Section 7. You must include a copy of this License with every copy of the\nModifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of\nthe Licensed Product or Modifications that alter or restrict the applicable version of this License or the\nrecipients' rights hereunder. However, you may include an additional document offering the additional rights\ndescribed in Section 4(d).\n\nb. Availability of Source Code. You must make available, under the terms of this License, the Source Code of\nthe Licensed Product and any Modifications that you distribute, either on the same media as you distribute any\nexecutable or other form of the Licensed Product, or via a mechanism generally accepted in the software development\ncommunity for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any\nversion of Licensed Product or Modifications that you distribute must remain available for at least twelve (12)\nmonths after the date it initially became available, or at least six (6) months after a subsequent version of said\nLicensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code\nversion remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third\nparty's intellectual property right is required to exercise the rights granted by this License, you must include a\ntext file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in\nsufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any\nModifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make\navailable thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups)\nreasonably calculated to inform those who received the Licensed Product from you that new knowledge has been\nobtained.\n\nii. Contributor APIs. If your Modifications include an application\nprogramming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement\nthat API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to\n4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have\nsufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source\nCode of any Modifications you create or to which you contribute, and which you distribute, wherever you describe\nrecipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\")\nin each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification,\nyou may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source\nCode file due to its structure, then you must include such Notice in a location (such as a relevant directory file)\nwhere a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty,\nsupport, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so\nonly on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such\nwarranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the\nLicensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of\nwarranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a\nlicense of your choice that may contain terms different from this License provided (i) you have satisfied the\nrequirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the\nexecutable version, related documentation and collateral materials stating that the Source Code version of the\nLicensed Product is available under the terms of this License, including a description of how and where you have\nfulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License\nare offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every\nContributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the\nLicensed Product with other code) and distribute the Derivative Works as products under any other license you select,\nwith the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that\nconsist of the Licensed Product or any Modifications thereto.\n\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the\nterms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or\nregulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the\nstatute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the\ncode they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included\nwith all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such\ndescription must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to\nunderstand it.\n\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the\nNotice in Exhibit A, which is incorporated herein by this reference.\n\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License,\nyou may always continue to use it under the terms of that version. You may also choose to use such Licensed Product\nunder the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the\nright to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do\nonly in order to apply it to software that is not already a Licensed Product under this License, you must rename your\nlicense so that it is not confusingly similar to this License, and must make it clear that your license contains\nterms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any\nContributor.\n\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE\nOF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND\nNOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS\nDISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED\nHEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate\nautomatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of\nbecoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any\ntermination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this\nLicense, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent\ninfringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or\nContributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product\ndirectly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections\n1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice\nPeriod\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable\nreasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your\nlitigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable\nroyalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not\nwithdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of\nsaid Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging\nthat Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or\nsettlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses\ngranted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of\nany payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all\nend user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you\nor any distributor hereunder prior to termination shall survive termination.\n\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE),\nCONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER\nOF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF\nANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR\nMALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\nPOSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY\nRESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY\nNOT APPLY TO YOU.\n\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and\ndamages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with\nLicensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or\nshall be deemed to constitute any admission of liability.\n\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R.\n2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such\nterms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through\n227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth\nherein.\n\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any\nprovision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary\nto make it enforceable. This License shall be governed by California law provisions (except to the extent applicable\nlaw, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation\nrelating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of\nCalifornia or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa\nClara County, California, with the losing party responsible for costs including, without limitation, court costs and\nreasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in\nany litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of\na contract shall be construed against the drafter shall not apply to this License.\n\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an\nindividual or a legal entity exercising rights under, and complying with all of the terms of, this License or a\nfuture version of this License issued under Section 7. For legal entities, you includes any entity that controls, is\ncontrolled by, or is under common control with you. For purposes of this definition, control means (i) the power,\ndirect or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii)\nownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated\nhere, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined\nterm is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification.\n(See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes\nall previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed\nProduct, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained\ntherein, plus any associated interface definition files, scripts used to control compilation and installation of an\nexecutable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See\nSection 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or\nany hereto. Contributors to any Modifications may add their own copyright notices to identify their own\ncontributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not\ncopy or use this file, in either source code or executable form, except in compliance with the License. You may\nobtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express\nor implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.0.json", + "yaml": "bittorrent-1.0.yml", + "html": "bittorrent-1.0.html", + "license": "bittorrent-1.0.LICENSE" + }, + { + "license_key": "bittorrent-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\n\nVersion 1.1\n\nThis BitTorrent Open Source License (the \"License\") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software (\"BitTorrent Products\") that are distributed by BitTorrent, Inc. (\"Licensor\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\n\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the \"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\n1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\n\n2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\n\n3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\n\n4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\n\n5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\n\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\n\n6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\n\n7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\n\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\n1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n2. Grant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\n\na. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\n\nb. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\n\n3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\n\n4. Your Obligations Regarding Distribution.\n\na. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\n\nb. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\n\nc. Intellectual Property Matters.\n\ni. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\n\nii. Contributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\n\niii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\n\nd. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\n\ne. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\n\nf. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\n\ng. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\n\n5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\n\n6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\n\n7. Versions of This License.\n\na. New Versions. Licensor may publish from time to time revised and/or new versions of the License.\n\nb. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\n\nc. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\n\n8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n9. Termination.\n\na. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\n\nb. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\n\nc. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\n\nd. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\n\n10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\n\n11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\n\n12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\n\n13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\n\n14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\n\n15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\n\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\n\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\n\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\n\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\n\nLicensor: BitTorrent, Inc. (See first paragraph of License)\n\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\n\nNotice: The notice contained in Exhibit A. (See Section 4(e))\n\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\n\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.1.json", + "yaml": "bittorrent-1.1.yml", + "html": "bittorrent-1.1.html", + "license": "bittorrent-1.1.LICENSE" + }, + { + "license_key": "bittorrent-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "BitTorrent Open Source License\nVersion 1.2\n\nThis BitTorrent Open Source License (the \"License\") applies to certain software that is distributed by BitTorrent, Inc. (\"Licensor\") specifically under this license (\"BitTorrent Products\"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product.\nPreamble\n\nThis Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble.\n\nThis License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the \"JOSL\"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted.\n\nThis License provides that:\n\nYou may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.\nBoth Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms \"Licensed Product,\" \"Modifications,\" \"Contributors\" and \"Source Code\" are defined in the License.)\nYou are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term \"Derivative Works\" is defined in the License.)\nBy accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty.\nYou may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor\u2019s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\u2019s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable.\nYou may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.\nIf you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code.\nIf you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.\nYou may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.\n\nAlternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.\n\nNew versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product.\n\nThis License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.\n\nLicense Terms\n\nGrant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\nGrant of License to Modifications From Contributor. \"Modifications\" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term \"Licensed Product\" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a \"Contributor\") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:\nUse, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.\nUnder claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.\nExclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media.\nYour Obligations Regarding Distribution.\nApplication of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d).\nAvailability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an \"Electronic Distribution Mechanism\"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.\nIntellectual Property Matters.\nThird Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled \"LEGAL\" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.\nContributor APIs. If your Modifications include an application programming interface (\"API\") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.\nRepresentations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.\nRequired Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the \"Notice\") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.\nDistribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.\nDistribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.\nCompensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor\u2019s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party\u2019s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party\u2019s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor\u2019s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code.\nInability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.\nApplication of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.\nVersions of This License.\nNew Versions. Licensor may publish from time to time revised and/or new versions of the License.\nEffect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License.\nDerivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.\nDisclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\nTermination.\nAutomatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.\nTermination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the \"Notice Period\") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.\nReasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.\nNo Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.\nLimitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.\nResponsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.\nU.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein.\nMiscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License.\nDefinition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein.\nGlossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses.\nContributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)\nDerivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b))\nLicense: This BitTorrent Open Source License. (See first paragraph of License)\nLicensed Product: Any BitTorrent Product licensed pursuant to this License. The term \"Licensed Product\" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2)\nLicensor: BitTorrent, Inc. (See first paragraph of License)\nModifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)\nNotice: The notice contained in Exhibit A. (See Section 4(e))\nSource Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a))\nYou: This term is defined in Section 14 of this License.\n\nEXHIBIT A\n\nThe Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.\n\nLicense:\n\nThe contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/.\n\nSoftware distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.", + "json": "bittorrent-1.2.json", + "yaml": "bittorrent-1.2.yml", + "html": "bittorrent-1.2.html", + "license": "bittorrent-1.2.LICENSE" + }, + { + "license_key": "bittorrent-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "End User License Agreement (EULA)\n\nBy accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the \"Software\") or by clicking \"Install\", you agree to the following terms, notwithstanding anything to the contrary in this agreement.\n\nThe Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc.\n\nLicense\nSubject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here.\n\nRestrictions\nThe source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold.\n\nThe BitTorrent Technologies\nDownloading and Updates\n\nThe Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself.\n\nAutomatic Uploading\n\nThe Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded.\n\nDisclaimer of Warranty\nBitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent.\n\nLimitation of Liability\nBitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent.\n\nU.S. Government Users\nThe Software is \"commercial computer software\" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc.\n\nGeneral\nThese BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user.\n\nContact\nIf you have any questions, contact us at legal@bittorrent.com.", + "json": "bittorrent-eula.json", + "yaml": "bittorrent-eula.yml", + "html": "bittorrent-eula.html", + "license": "bittorrent-eula.LICENSE" + }, + { + "license_key": "boost-1.0", + "category": "Permissive", + "spdx_license_key": "BSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Boost Software License - Version 1.0 - August 17th, 2003\n\nPermission is hereby granted, free of charge, to any person or organization\nobtaining a copy of the software and accompanying documentation covered by\nthis license (the \"Software\") to use, reproduce, display, distribute,\nexecute, and transmit the Software, and to prepare derivative works of the\nSoftware, and to permit third-parties to whom the Software is furnished to\ndo so, all subject to the following:\n\nThe copyright notices in the Software and this entire statement, including\nthe above license grant, this restriction and the following disclaimer,\nmust be included in all copies of the Software, in whole or in part, and\nall derivative works of the Software, unless such copies or derivative\nworks are solely in the form of machine-executable object code generated by\na source language processor.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT\nSHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE\nFOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.", + "json": "boost-1.0.json", + "yaml": "boost-1.0.yml", + "html": "boost-1.0.html", + "license": "boost-1.0.LICENSE" + }, + { + "license_key": "boost-original", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-boost-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Permission to copy, use, modify, sell and distribute this software is granted\nprovided this copyright notice appears in all copies. This software is provided \"as\nis\" without express or implied warranty, and with no claim as to its suitability for\nany purpose.", + "json": "boost-original.json", + "yaml": "boost-original.yml", + "html": "boost-original.html", + "license": "boost-original.LICENSE" + }, + { + "license_key": "bootloader-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Bootloader-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "text": "Bootloader Exception\n\nIn addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.)", + "json": "bootloader-exception.json", + "yaml": "bootloader-exception.yml", + "html": "bootloader-exception.html", + "license": "bootloader-exception.LICENSE" + }, + { + "license_key": "bsla", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "text": "Redistribution and use in source and binary forms are permitted\nprovided that the above copyright notice and this paragraph are\nduplicated in all such forms and that any documentation,\nadvertising materials, and other materials related to such\ndistribution and use acknowledge that the software was developed\nby the University of California, Berkeley. The name of the\nUniversity may not be used to endorse or promote products derived\nfrom this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.", + "json": "bsla.json", + "yaml": "bsla.yml", + "html": "bsla.html", + "license": "bsla.LICENSE" + } +] \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/index.yml b/tests/licensedcode/data/license_db/license_dump/index.yml new file mode 100644 index 00000000000..126aaa48ed7 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/index.yml @@ -0,0 +1,808 @@ +- license_key: bash-exception-gpl + category: Copyleft + spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: | + The Free Software Foundation has exempted Bash from the requirement of + Paragraph 2c of the General Public License. This is to say, there is + no requirement for Bash to print a notice when it is started + interactively in the usual way. We made this exception because users + and standards expect shells not to print such messages. This + exception applies to any program that serves as a shell and that is + based primarily on Bash as opposed to other GNU software. + json: bash-exception-gpl.json + yaml: bash-exception-gpl.yml + html: bash-exception-gpl.html + license: bash-exception-gpl.LICENSE +- license_key: binary-linux-firmware + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-binary-linux-firmware + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Redistribution. Redistribution and use in binary form, without + modification, are permitted provided that the following conditions are + met: + + * Redistributions must reproduce the above copyright notice and the + following disclaimer in the documentation and/or other materials + provided with the distribution. + + * Neither the name of the Copyright Holder nor the names of its + suppliers may be used to endorse or promote products derived from this + software without specific prior written permission. + + * No reverse engineering, decompilation, or disassembly of this software + is permitted. + + DISCLAIMER. 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 + json: binary-linux-firmware.json + yaml: binary-linux-firmware.yml + html: binary-linux-firmware.html + license: binary-linux-firmware.LICENSE +- license_key: bison-exception-2.0 + category: Copyleft Limited + spdx_license_key: LicenseRef-scancode-bison-exception-2.0 + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: As a special exception, when this file is copied by Bison into a Bison output file, + you may use that output file without restriction. This special exception was added by the + Free Software Foundation in version 1.24 of Bison. + json: bison-exception-2.0.json + yaml: bison-exception-2.0.yml + html: bison-exception-2.0.html + license: bison-exception-2.0.LICENSE +- license_key: bison-exception-2.2 + category: Copyleft Limited + spdx_license_key: Bison-exception-2.2 + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: | + As a special exception, you may create a larger work that contains part or all + of the Bison parser skeleton and distribute that work under terms of your + choice, so long as that work isn't itself a parser generator using the skeleton + or a modified version thereof as a parser skeleton. Alternatively, if you + modify or redistribute the parser skeleton itself, you may (at your option) + remove this special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public License without + this special exception. + + This special exception was added by the Free Software Foundation in version 2.2 + of Bison. + json: bison-exception-2.2.json + yaml: bison-exception-2.2.yml + html: bison-exception-2.2.html + license: bison-exception-2.2.LICENSE +- license_key: bittorrent-1.0 + category: Copyleft Limited + spdx_license_key: BitTorrent-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + BitTorrent Open Source License + + Version 1.0 + + This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as + well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by + BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. + Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which + you may use, copy, distribute or modify Licensed Product. + + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this + Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the + License and not this Preamble. + + This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the + "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been + dropped. + + This License provides that: + + 1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software + distribution containing programs from several different sources. No royalty or other fee is required. + + 2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous + Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source + Code" are defined in the License.) + + 3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. + (The term "Derivative Works" is defined in the License.) + + 4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you + make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you + must make the Source Code of your Modifications available to others. + + 5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty + whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly + or causes you any injury or damages. + + 6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or + for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code. + + 7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any + terms of the License, your rights to the Licensed Product under this License automatically terminate. + + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will + apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a + proprietary license of your choice. If you use any license other than this License, however, you must continue to + fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those + portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time. You may choose to continue to use the license + terms in this version of the License or those from the new version. However, only the Licensor has the right to + change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and + the definitions are repeated for your convenience in a Glossary at the end of the License. + + + License Terms + + 1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive + license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such + Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as + part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for + sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any + such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of + Modifications or portions thereof or Derivative Works thereof. + + + 2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the + substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of + Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications + that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity + who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a + world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the + following: + + 1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such + Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as + part of Derivative Works. + + 2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for + sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any + such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of + Modifications or portions thereof or Derivative Works thereof. + + + 3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, + copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as + expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete + from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is + granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. + Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this + License any code that Licensor otherwise would have a right to license. + + + 4. Your Obligations Regarding Distribution. + + a. Application of This License to Your Modifications. As an express condition for your use of the Licensed + Product, you hereby agree that any Modifications that you create or to which you contribute, and which you + distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications + that you create or to which you contribute may be distributed only under the terms of this License or a future + version of this License released under Section 7. You must include a copy of this License with every copy of the + Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of + the Licensed Product or Modifications that alter or restrict the applicable version of this License or the + recipients' rights hereunder. However, you may include an additional document offering the additional rights + described in Section 4(d). + + b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of + the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any + executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development + community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any + version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) + months after the date it initially became available, or at least six (6) months after a subsequent version of said + Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code + version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + c. Intellectual Property Matters. + + i. Third Party Claims. If you have knowledge that a license to a third + party's intellectual property right is required to exercise the rights granted by this License, you must include a + text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in + sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any + Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make + available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) + reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been + obtained. + + ii. Contributor APIs. If your Modifications include an application + programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement + that API, you must also include this information in the LEGAL file. + + iii. Representations. You represent that, except as disclosed pursuant to + 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have + sufficient rights to grant the rights conveyed by this License. + + d. Required Notices. You must duplicate this License in any documentation you provide along with the Source + Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe + recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") + in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, + you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source + Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) + where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, + support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so + only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such + warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the + Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of + warranty, support, indemnity or liability terms you offer. + + e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a + license of your choice that may contain terms different from this License provided (i) you have satisfied the + requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the + executable version, related documentation and collateral materials stating that the Source Code version of the + Licensed Product is available under the terms of this License, including a description of how and where you have + fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License + are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every + Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + + f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the + Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, + with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that + consist of the Licensed Product or any Modifications thereto. + + + 5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the + terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or + regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the + statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the + code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included + with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such + description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to + understand it. + + + 6. Application of This License. This License applies to code to which Licensor or Contributor has attached the + Notice in Exhibit A, which is incorporated herein by this reference. + + + 7. Versions of This License. + + a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + + b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, + you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product + under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the + right to modify the terms applicable to Licensed Product created under this License. + + c. Derivative Works of this License. If you create or use a modified version of this License, which you may do + only in order to apply it to software that is not already a Licensed Product under this License, you must rename your + license so that it is not confusingly similar to this License, and must make it clear that your license contains + terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any + Contributor. + + + 8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE + OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND + PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND + NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS + DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED + HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + + 9. Termination. + + a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate + automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of + becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any + termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this + License, shall survive. + + b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent + infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or + Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product + directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections + 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice + Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable + reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your + litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable + royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not + withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of + said Notice Period. + + c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging + that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or + settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses + granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of + any payment or license. + + d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all + end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you + or any distributor hereunder prior to termination shall survive termination. + + + 10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), + CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER + OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF + ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR + MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE + POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO + NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY + NOT APPLY TO YOU. + + + 11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and + damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with + Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + + + 12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. + 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through + 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth + herein. + + + 13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any + provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary + to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable + law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation + relating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of + California or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa + Clara County, California, with the losing party responsible for costs including, without limitation, court costs and + reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in + any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of + a contract shall be construed against the drafter shall not apply to this License. + + + 14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an + individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a + future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is + controlled by, or is under common control with you. For 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. + + + 15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated + here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined + term is first used is shown in parentheses. + + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. + (See Section 2) + + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + + License: This BitTorrent Open Source License. (See first paragraph of License) + + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes + all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + + Licensor: BitTorrent, Inc. (See first paragraph of License) + + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed + Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + + Notice: The notice contained in Exhibit A. (See Section 4(e)) + + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained + therein, plus any associated interface definition files, scripts used to control compilation and installation of an + executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See + Section 1(a)) + + You: This term is defined in Section 14 of this License. + + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or + any hereto. Contributors to any Modifications may add their own copyright notices to identify their own + contributions. + + License: + + The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not + copy or use this file, in either source code or executable form, except in compliance with the License. You may + obtain a copy of the License at http://www.bittorrent.com/license/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express + or implied. See the License for the specific language governing rights and limitations under the License. + json: bittorrent-1.0.json + yaml: bittorrent-1.0.yml + html: bittorrent-1.0.html + license: bittorrent-1.0.LICENSE +- license_key: bittorrent-1.1 + category: Copyleft Limited + spdx_license_key: BitTorrent-1.1 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + BitTorrent Open Source License + + Version 1.1 + + This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + + This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + + This License provides that: + + 1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + + 2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + + 3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + + 4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + + 5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + + You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + + 6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + + 7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + + License Terms + + 1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + + 2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + + a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + + b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + + 3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + + 4. Your Obligations Regarding Distribution. + + a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + + b. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + + c. Intellectual Property Matters. + + i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + + ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + + iii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + + d. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + + e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + + f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + + g. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + + 5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + + 6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + + 7. Versions of This License. + + a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + + b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + + c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + + 8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + 9. Termination. + + a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + + b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + + c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + + d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + + 10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + + 11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + + 12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + + 13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + + 14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + + 15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + + License: This BitTorrent Open Source License. (See first paragraph of License) + + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + + Licensor: BitTorrent, Inc. (See first paragraph of License) + + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + + Notice: The notice contained in Exhibit A. (See Section 4(e)) + + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + + You: This term is defined in Section 14 of this License. + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + + License: + + The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + json: bittorrent-1.1.json + yaml: bittorrent-1.1.yml + html: bittorrent-1.1.html + license: bittorrent-1.1.LICENSE +- license_key: bittorrent-1.2 + category: Copyleft Limited + spdx_license_key: LicenseRef-scancode-bittorrent-1.2 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + BitTorrent Open Source License + Version 1.2 + + This BitTorrent Open Source License (the "License") applies to certain software that is distributed by BitTorrent, Inc. ("Licensor") specifically under this license ("BitTorrent Products"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + Preamble + + This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + + This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + + This License provides that: + + You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor’s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + + Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + + New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + + This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + + License Terms + + Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + Your Obligations Regarding Distribution. + Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + Intellectual Property Matters. + Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor’s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party’s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party’s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + Versions of This License. + New Versions. Licensor may publish from time to time revised and/or new versions of the License. + Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + Termination. + Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + License: This BitTorrent Open Source License. (See first paragraph of License) + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + Licensor: BitTorrent, Inc. (See first paragraph of License) + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + Notice: The notice contained in Exhibit A. (See Section 4(e)) + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + You: This term is defined in Section 14 of this License. + + EXHIBIT A + + The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + + License: + + The contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + + Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. + json: bittorrent-1.2.json + yaml: bittorrent-1.2.yml + html: bittorrent-1.2.html + license: bittorrent-1.2.LICENSE +- license_key: bittorrent-eula + category: Proprietary Free + spdx_license_key: LicenseRef-scancode-bittorrent-eula + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + End User License Agreement (EULA) + + By accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement. + + The Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc. + + License + Subject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here. + + Restrictions + The source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold. + + The BitTorrent Technologies + Downloading and Updates + + The Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself. + + Automatic Uploading + + The Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded. + + Disclaimer of Warranty + BitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent. + + Limitation of Liability + BitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent. + + U.S. Government Users + The Software is "commercial computer software" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc. + + General + These BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user. + + Contact + If you have any questions, contact us at legal@bittorrent.com. + json: bittorrent-eula.json + yaml: bittorrent-eula.yml + html: bittorrent-eula.html + license: bittorrent-eula.LICENSE +- license_key: boost-1.0 + category: Permissive + spdx_license_key: BSL-1.0 + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Boost Software License - Version 1.0 - August 17th, 2003 + + Permission is hereby granted, free of charge, to any person or organization + obtaining a copy of the software and accompanying documentation covered by + this license (the "Software") to use, reproduce, display, distribute, + execute, and transmit the Software, and to prepare derivative works of the + Software, and to permit third-parties to whom the Software is furnished to + do so, all subject to the following: + + The copyright notices in the Software and this entire statement, including + the above license grant, this restriction and the following disclaimer, + must be included in all copies of the Software, in whole or in part, and + all derivative works of the Software, unless such copies or derivative + works are solely in the form of machine-executable object code generated by + a source language processor. + + 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT + SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE + FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + json: boost-1.0.json + yaml: boost-1.0.yml + html: boost-1.0.html + license: boost-1.0.LICENSE +- license_key: boost-original + category: Permissive + spdx_license_key: LicenseRef-scancode-boost-original + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Permission to copy, use, modify, sell and distribute this software is granted + provided this copyright notice appears in all copies. This software is provided "as + is" without express or implied warranty, and with no claim as to its suitability for + any purpose. + json: boost-original.json + yaml: boost-original.yml + html: boost-original.html + license: boost-original.LICENSE +- license_key: bootloader-exception + category: Copyleft Limited + spdx_license_key: Bootloader-exception + other_spdx_license_keys: [] + is_exception: yes + is_deprecated: no + text: | + Bootloader Exception + + In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.) + json: bootloader-exception.json + yaml: bootloader-exception.yml + html: bootloader-exception.html + license: bootloader-exception.LICENSE +- license_key: bsla + category: Permissive + spdx_license_key: LicenseRef-scancode-bsla + other_spdx_license_keys: [] + is_exception: no + is_deprecated: no + text: | + Redistribution and use in source and binary forms are permitted + provided that the above copyright notice and this paragraph are + duplicated in all such forms and that any documentation, + advertising materials, and other materials related to such + distribution and use acknowledge that the software was developed + by the University of California, Berkeley. The name of the + University 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 WITHOUT ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + json: bsla.json + yaml: bsla.yml + html: bsla.html + license: bsla.LICENSE diff --git a/tests/licensedcode/data/license_db/license_dump/static/datatables/jquery.dataTables-1.10.22.min.css b/tests/licensedcode/data/license_db/license_dump/static/datatables/jquery.dataTables-1.10.22.min.css new file mode 100644 index 00000000000..8a3f2767c51 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/static/datatables/jquery.dataTables-1.10.22.min.css @@ -0,0 +1 @@ +table.dataTable{width:100%;margin:0 auto;clear:both;border-collapse:separate;border-spacing:0}table.dataTable thead th,table.dataTable tfoot th{font-weight:bold}table.dataTable thead th,table.dataTable thead td{padding:10px 18px;border-bottom:1px solid #111}table.dataTable thead th:active,table.dataTable thead td:active{outline:none}table.dataTable tfoot th,table.dataTable tfoot td{padding:10px 18px 6px 18px;border-top:1px solid #111}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;*cursor:hand;background-repeat:no-repeat;background-position:center right}table.dataTable thead .sorting{background-image:url("../images/sort_both.png")}table.dataTable thead .sorting_asc{background-image:url("../images/sort_asc.png")}table.dataTable thead .sorting_desc{background-image:url("../images/sort_desc.png")}table.dataTable thead .sorting_asc_disabled{background-image:url("../images/sort_asc_disabled.png")}table.dataTable thead .sorting_desc_disabled{background-image:url("../images/sort_desc_disabled.png")}table.dataTable tbody tr{background-color:#ffffff}table.dataTable tbody tr.selected{background-color:#B0BED9}table.dataTable tbody th,table.dataTable tbody td{padding:8px 10px}table.dataTable.row-border tbody th,table.dataTable.row-border tbody td,table.dataTable.display tbody th,table.dataTable.display tbody td{border-top:1px solid #ddd}table.dataTable.row-border tbody tr:first-child th,table.dataTable.row-border tbody tr:first-child td,table.dataTable.display tbody tr:first-child th,table.dataTable.display tbody tr:first-child td{border-top:none}table.dataTable.cell-border tbody th,table.dataTable.cell-border tbody td{border-top:1px solid #ddd;border-right:1px solid #ddd}table.dataTable.cell-border tbody tr th:first-child,table.dataTable.cell-border tbody tr td:first-child{border-left:1px solid #ddd}table.dataTable.cell-border tbody tr:first-child th,table.dataTable.cell-border tbody tr:first-child td{border-top:none}table.dataTable.stripe tbody tr.odd,table.dataTable.display tbody tr.odd{background-color:#f9f9f9}table.dataTable.stripe tbody tr.odd.selected,table.dataTable.display tbody tr.odd.selected{background-color:#acbad4}table.dataTable.hover tbody tr:hover,table.dataTable.display tbody tr:hover{background-color:#f6f6f6}table.dataTable.hover tbody tr:hover.selected,table.dataTable.display tbody tr:hover.selected{background-color:#aab7d1}table.dataTable.order-column tbody tr>.sorting_1,table.dataTable.order-column tbody tr>.sorting_2,table.dataTable.order-column tbody tr>.sorting_3,table.dataTable.display tbody tr>.sorting_1,table.dataTable.display tbody tr>.sorting_2,table.dataTable.display tbody tr>.sorting_3{background-color:#fafafa}table.dataTable.order-column tbody tr.selected>.sorting_1,table.dataTable.order-column tbody tr.selected>.sorting_2,table.dataTable.order-column tbody tr.selected>.sorting_3,table.dataTable.display tbody tr.selected>.sorting_1,table.dataTable.display tbody tr.selected>.sorting_2,table.dataTable.display tbody tr.selected>.sorting_3{background-color:#acbad5}table.dataTable.display tbody tr.odd>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd>.sorting_1{background-color:#f1f1f1}table.dataTable.display tbody tr.odd>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd>.sorting_2{background-color:#f3f3f3}table.dataTable.display tbody tr.odd>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd>.sorting_3{background-color:whitesmoke}table.dataTable.display tbody tr.odd.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1{background-color:#a6b4cd}table.dataTable.display tbody tr.odd.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2{background-color:#a8b5cf}table.dataTable.display tbody tr.odd.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3{background-color:#a9b7d1}table.dataTable.display tbody tr.even>.sorting_1,table.dataTable.order-column.stripe tbody tr.even>.sorting_1{background-color:#fafafa}table.dataTable.display tbody tr.even>.sorting_2,table.dataTable.order-column.stripe tbody tr.even>.sorting_2{background-color:#fcfcfc}table.dataTable.display tbody tr.even>.sorting_3,table.dataTable.order-column.stripe tbody tr.even>.sorting_3{background-color:#fefefe}table.dataTable.display tbody tr.even.selected>.sorting_1,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1{background-color:#acbad5}table.dataTable.display tbody tr.even.selected>.sorting_2,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2{background-color:#aebcd6}table.dataTable.display tbody tr.even.selected>.sorting_3,table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3{background-color:#afbdd8}table.dataTable.display tbody tr:hover>.sorting_1,table.dataTable.order-column.hover tbody tr:hover>.sorting_1{background-color:#eaeaea}table.dataTable.display tbody tr:hover>.sorting_2,table.dataTable.order-column.hover tbody tr:hover>.sorting_2{background-color:#ececec}table.dataTable.display tbody tr:hover>.sorting_3,table.dataTable.order-column.hover tbody tr:hover>.sorting_3{background-color:#efefef}table.dataTable.display tbody tr:hover.selected>.sorting_1,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1{background-color:#a2aec7}table.dataTable.display tbody tr:hover.selected>.sorting_2,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2{background-color:#a3b0c9}table.dataTable.display tbody tr:hover.selected>.sorting_3,table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3{background-color:#a5b2cb}table.dataTable.no-footer{border-bottom:1px solid #111}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}table.dataTable.compact thead th,table.dataTable.compact thead td{padding:4px 17px}table.dataTable.compact tfoot th,table.dataTable.compact tfoot td{padding:4px}table.dataTable.compact tbody th,table.dataTable.compact tbody td{padding:4px}table.dataTable th.dt-left,table.dataTable td.dt-left{text-align:left}table.dataTable th.dt-center,table.dataTable td.dt-center,table.dataTable td.dataTables_empty{text-align:center}table.dataTable th.dt-right,table.dataTable td.dt-right{text-align:right}table.dataTable th.dt-justify,table.dataTable td.dt-justify{text-align:justify}table.dataTable th.dt-nowrap,table.dataTable td.dt-nowrap{white-space:nowrap}table.dataTable thead th.dt-head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTable tfoot td.dt-head-left{text-align:left}table.dataTable thead th.dt-head-center,table.dataTable thead td.dt-head-center,table.dataTable tfoot th.dt-head-center,table.dataTable tfoot td.dt-head-center{text-align:center}table.dataTable thead th.dt-head-right,table.dataTable thead td.dt-head-right,table.dataTable tfoot th.dt-head-right,table.dataTable tfoot td.dt-head-right{text-align:right}table.dataTable thead th.dt-head-justify,table.dataTable thead td.dt-head-justify,table.dataTable tfoot th.dt-head-justify,table.dataTable tfoot td.dt-head-justify{text-align:justify}table.dataTable thead th.dt-head-nowrap,table.dataTable thead td.dt-head-nowrap,table.dataTable tfoot th.dt-head-nowrap,table.dataTable tfoot td.dt-head-nowrap{white-space:nowrap}table.dataTable tbody th.dt-body-left,table.dataTable tbody td.dt-body-left{text-align:left}table.dataTable tbody th.dt-body-center,table.dataTable tbody td.dt-body-center{text-align:center}table.dataTable tbody th.dt-body-right,table.dataTable tbody td.dt-body-right{text-align:right}table.dataTable tbody th.dt-body-justify,table.dataTable tbody td.dt-body-justify{text-align:justify}table.dataTable tbody th.dt-body-nowrap,table.dataTable tbody td.dt-body-nowrap{white-space:nowrap}table.dataTable,table.dataTable th,table.dataTable td{box-sizing:content-box}.dataTables_wrapper{position:relative;clear:both;*zoom:1;zoom:1}.dataTables_wrapper .dataTables_length{float:left}.dataTables_wrapper .dataTables_length select{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;padding:4px}.dataTables_wrapper .dataTables_filter{float:right;text-align:right}.dataTables_wrapper .dataTables_filter input{border:1px solid #aaa;border-radius:3px;padding:5px;background-color:transparent;margin-left:3px}.dataTables_wrapper .dataTables_info{clear:both;float:left;padding-top:0.755em}.dataTables_wrapper .dataTables_paginate{float:right;text-align:right;padding-top:0.25em}.dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#333 !important;border:1px solid transparent;border-radius:2px}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#333 !important;border:1px solid #979797;background-color:white;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));background:-webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:-o-linear-gradient(top, #fff 0%, #dcdcdc 100%);background:linear-gradient(to bottom, #fff 0%, #dcdcdc 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{cursor:default;color:#666 !important;border:1px solid transparent;background:transparent;box-shadow:none}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:white !important;border:1px solid #111;background-color:#585858;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));background:-webkit-linear-gradient(top, #585858 0%, #111 100%);background:-moz-linear-gradient(top, #585858 0%, #111 100%);background:-ms-linear-gradient(top, #585858 0%, #111 100%);background:-o-linear-gradient(top, #585858 0%, #111 100%);background:linear-gradient(to bottom, #585858 0%, #111 100%)}.dataTables_wrapper .dataTables_paginate .paginate_button:active{outline:none;background-color:#2b2b2b;background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));background:-webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:-o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);background:linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);box-shadow:inset 0 0 3px #111}.dataTables_wrapper .dataTables_paginate .ellipsis{padding:0 1em}.dataTables_wrapper .dataTables_processing{position:absolute;top:50%;left:50%;width:100%;height:40px;margin-left:-50%;margin-top:-25px;padding-top:20px;text-align:center;font-size:1.2em;background-color:white;background:-webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));background:-webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:-o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);background:linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%)}.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter,.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_processing,.dataTables_wrapper .dataTables_paginate{color:#333}.dataTables_wrapper .dataTables_scroll{clear:both}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody{*margin-top:-1px;-webkit-overflow-scrolling:touch}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{vertical-align:middle}.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing,.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing{height:0;overflow:hidden;margin:0 !important;padding:0 !important}.dataTables_wrapper.no-footer .dataTables_scrollBody{border-bottom:1px solid #111}.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,.dataTables_wrapper.no-footer div.dataTables_scrollBody>table{border-bottom:none}.dataTables_wrapper:after{visibility:hidden;display:block;content:"";clear:both;height:0}@media screen and (max-width: 767px){.dataTables_wrapper .dataTables_info,.dataTables_wrapper .dataTables_paginate{float:none;text-align:center}.dataTables_wrapper .dataTables_paginate{margin-top:0.5em}}@media screen and (max-width: 640px){.dataTables_wrapper .dataTables_length,.dataTables_wrapper .dataTables_filter{float:none;text-align:center}.dataTables_wrapper .dataTables_filter{margin-top:0.5em}} diff --git a/tests/licensedcode/data/license_db/license_dump/static/datatables/jquery.dataTables-1.10.22.min.js b/tests/licensedcode/data/license_db/license_dump/static/datatables/jquery.dataTables-1.10.22.min.js new file mode 100644 index 00000000000..89f7ba0b681 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/static/datatables/jquery.dataTables-1.10.22.min.js @@ -0,0 +1,184 @@ +/*! + Copyright 2008-2020 SpryMedia Ltd. + + This source file is free software, available under the following license: + MIT license - http://datatables.net/license + + This source 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 license files for details. + + For details please refer to: http://www.datatables.net + DataTables 1.10.22 + ©2008-2020 SpryMedia Ltd - datatables.net/license +*/ +var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(k,y,z){k instanceof String&&(k=String(k));for(var q=k.length,G=0;G").css({position:"fixed",top:0,left:-1*k(y).scrollLeft(),height:1, +width:1,overflow:"hidden"}).append(k("
").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(k("
").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),f=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===f[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(f.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}k.extend(a.oBrowser,u.__browser);a.oScroll.iBarWidth=u.__browser.barWidth} +function Bb(a,b,c,d,f,e){var g=!1;if(c!==q){var h=c;g=!0}for(;d!==f;)a.hasOwnProperty(d)&&(h=g?b(h,a[d],d,a):a[d],g=!0,d+=e);return h}function Wa(a,b){var c=u.defaults.column,d=a.aoColumns.length;c=k.extend({},u.models.oColumn,c,{nTh:b?b:z.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=k.extend({},u.models.oSearch,c[d]);Da(a,d,k(b).data())}function Da(a,b,c){b=a.aoColumns[b]; +var d=a.oClasses,f=k(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=f.attr("width")||null;var e=(f.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);e&&(b.sWidthOrig=e[1])}c!==q&&null!==c&&(zb(c),O(u.defaults.column,c,!0),c.mDataProp===q||c.mData||(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&f.addClass(c.sClass),k.extend(b,c),V(b,c,"sWidth","sWidthOrig"),c.iDataSort!==q&&(b.aDataSort=[c.iDataSort]),V(b,c,"aDataSort"));var g=b.mData,h=ia(g), +l=b.mRender?ia(b.mRender):null;c=function(n){return"string"===typeof n&&-1!==n.indexOf("@")};b._bAttrSrc=k.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(n,m,p){var t=h(n,m,q,p);return l&&m?l(t,m,n,p):t};b.fnSetData=function(n,m,p){return da(g)(n,m,p)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,f.addClass(d.sSortableNone));a=-1!==k.inArray("asc",b.asSorting);c=-1!==k.inArray("desc",b.asSorting);b.bSortable&&(a||c)?a&&!c? +(b.sSortingClass=d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI):(b.sSortingClass=d.sSortableNone,b.sSortingClassJUI="")}function ra(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Xa(a);for(var c=0,d=b.length;cn[m])d(h.length+n[m],l);else if("string"===typeof n[m]){var p=0;for(g=h.length;pb&&a[f]--; -1!=d&&c===q&&a.splice(d,1)}function va(a,b,c,d){var f=a.aoData[b],e,g=function(l,n){for(;l.childNodes.length;)l.removeChild(l.firstChild);l.innerHTML=S(a,b,n,"display")};if("dom"!==c&&(c&&"auto"!==c||"dom"!==f.src)){var h=f.anCells;if(h)if(d!==q)g(h[d],d);else for(c=0,e=h.length;c").appendTo(d));var l=0;for(b=h.length;l=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);g=a._iDisplayStart;var n=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,U(a,!1);else if(!h)a.iDraw++;else if(!a.bDestroying&&!Fb(a))return;if(0!==l.length)for(e= +h?a.aoData.length:n,h=h?0:g;h",{"class":f?d[0]:""}).append(k("",{valign:"top",colSpan:na(a),"class":a.oClasses.sRowEmpty}).html(c))[0]; +I(a,"aoHeaderCallback","header",[k(a.nTHead).children("tr")[0],bb(a),g,n,l]);I(a,"aoFooterCallback","footer",[k(a.nTFoot).children("tr")[0],bb(a),g,n,l]);d=k(a.nTBody);d.children().detach();d.append(k(b));I(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function ja(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&Gb(a);d?ya(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;fa(a);a._drawHold=!1}function Hb(a){var b=a.oClasses, +c=k(a.nTable);c=k("
").insertBefore(c);var d=a.oFeatures,f=k("
",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=f[0];a.nTableReinsertBefore=a.nTable.nextSibling;for(var e=a.sDom.split(""),g,h,l,n,m,p,t=0;t")[0];n=e[t+1];if("'"==n||'"'==n){m="";for(p=2;e[t+p]!=n;)m+=e[t+p],p++;"H"==m?m=b.sJUIHeader:"F"==m&&(m=b.sJUIFooter);-1!=m.indexOf(".")?(n=m.split("."),l.id=n[0].substr(1, +n[0].length-1),l.className=n[1]):"#"==m.charAt(0)?l.id=m.substr(1,m.length-1):l.className=m;t+=p}f.append(l);f=k(l)}else if(">"==h)f=f.parent();else if("l"==h&&d.bPaginate&&d.bLengthChange)g=Ib(a);else if("f"==h&&d.bFilter)g=Jb(a);else if("r"==h&&d.bProcessing)g=Kb(a);else if("t"==h)g=Lb(a);else if("i"==h&&d.bInfo)g=Mb(a);else if("p"==h&&d.bPaginate)g=Nb(a);else if(0!==u.ext.feature.length)for(l=u.ext.feature,p=0,n=l.length;p',h=d.sSearch;h=h.match(/_INPUT_/)?h.replace("_INPUT_",g):h+g;b=k("
",{id:e.f?null:c+"_filter","class":b.sFilter}).append(k("
").addClass(b.sLength);a.aanFeatures.l||(l[0].id=c+"_length");l.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",f[0].outerHTML));k("select",l).val(a._iDisplayLength).on("change.DT",function(n){ib(a,k(this).val());fa(a)});k(a.nTable).on("length.dt.DT",function(n,m,p){a===m&&k("select",l).val(p)});return l[0]}function Nb(a){var b=a.sPaginationType,c=u.ext.pager[b],d="function"===typeof c,f=function(g){fa(g)};b=k("
").addClass(a.oClasses.sPaging+ +b)[0];var e=a.aanFeatures;d||c.fnInit(a,b,f);e.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(g){if(d){var h=g._iDisplayStart,l=g._iDisplayLength,n=g.fnRecordsDisplay(),m=-1===l;h=m?0:Math.ceil(h/l);l=m?1:Math.ceil(n/l);n=c(h,l);var p;m=0;for(p=e.p.length;me&&(d=0)):"first"==b?d=0:"previous"==b?(d=0<=f?d-f:0,0>d&&(d=0)):"next"==b?d+f",{id:a.aanFeatures.r?null:a.sTableId+"_processing","class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}function U(a,b){a.oFeatures.bProcessing&&k(a.aanFeatures.r).css("display",b?"block": +"none");I(a,null,"processing",[a,b])}function Lb(a){var b=k(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,f=c.sY,e=a.oClasses,g=b.children("caption"),h=g.length?g[0]._captionSide:null,l=k(b[0].cloneNode(!1)),n=k(b[0].cloneNode(!1)),m=b.children("tfoot");m.length||(m=null);l=k("
",{"class":e.sScrollWrapper}).append(k("
",{"class":e.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:d?d?K(d):null:"100%"}).append(k("
", +{"class":e.sScrollHeadInner}).css({"box-sizing":"content-box",width:c.sXInner||"100%"}).append(l.removeAttr("id").css("margin-left",0).append("top"===h?g:null).append(b.children("thead"))))).append(k("
",{"class":e.sScrollBody}).css({position:"relative",overflow:"auto",width:d?K(d):null}).append(b));m&&l.append(k("
",{"class":e.sScrollFoot}).css({overflow:"hidden",border:0,width:d?d?K(d):null:"100%"}).append(k("
",{"class":e.sScrollFootInner}).append(n.removeAttr("id").css("margin-left", +0).append("bottom"===h?g:null).append(b.children("tfoot")))));b=l.children();var p=b[0];e=b[1];var t=m?b[2]:null;if(d)k(e).on("scroll.DT",function(v){v=this.scrollLeft;p.scrollLeft=v;m&&(t.scrollLeft=v)});k(e).css("max-height",f);c.bCollapse||k(e).css("height",f);a.nScrollHead=p;a.nScrollBody=e;a.nScrollFoot=t;a.aoDrawCallback.push({fn:Ea,sName:"scrolling"});return l[0]}function Ea(a){var b=a.oScroll,c=b.sX,d=b.sXInner,f=b.sY;b=b.iBarWidth;var e=k(a.nScrollHead),g=e[0].style,h=e.children("div"),l= +h[0].style,n=h.children("table");h=a.nScrollBody;var m=k(h),p=h.style,t=k(a.nScrollFoot).children("div"),v=t.children("table"),x=k(a.nTHead),r=k(a.nTable),A=r[0],E=A.style,H=a.nTFoot?k(a.nTFoot):null,W=a.oBrowser,M=W.bScrollOversize,C=T(a.aoColumns,"nTh"),B=[],ba=[],X=[],lb=[],Aa,Yb=function(F){F=F.style;F.paddingTop="0";F.paddingBottom="0";F.borderTopWidth="0";F.borderBottomWidth="0";F.height=0};var ha=h.scrollHeight>h.clientHeight;if(a.scrollBarVis!==ha&&a.scrollBarVis!==q)a.scrollBarVis=ha,ra(a); +else{a.scrollBarVis=ha;r.children("thead, tfoot").remove();if(H){var ka=H.clone().prependTo(r);var la=H.find("tr");ka=ka.find("tr")}var mb=x.clone().prependTo(r);x=x.find("tr");ha=mb.find("tr");mb.find("th, td").removeAttr("tabindex");c||(p.width="100%",e[0].style.width="100%");k.each(Ka(a,mb),function(F,Y){Aa=sa(a,F);Y.style.width=a.aoColumns[Aa].sWidth});H&&Z(function(F){F.style.width=""},ka);e=r.outerWidth();""===c?(E.width="100%",M&&(r.find("tbody").height()>h.offsetHeight||"scroll"==m.css("overflow-y"))&& +(E.width=K(r.outerWidth()-b)),e=r.outerWidth()):""!==d&&(E.width=K(d),e=r.outerWidth());Z(Yb,ha);Z(function(F){X.push(F.innerHTML);B.push(K(k(F).css("width")))},ha);Z(function(F,Y){-1!==k.inArray(F,C)&&(F.style.width=B[Y])},x);k(ha).height(0);H&&(Z(Yb,ka),Z(function(F){lb.push(F.innerHTML);ba.push(K(k(F).css("width")))},ka),Z(function(F,Y){F.style.width=ba[Y]},la),k(ka).height(0));Z(function(F,Y){F.innerHTML='
'+X[Y]+"
";F.childNodes[0].style.height="0";F.childNodes[0].style.overflow= +"hidden";F.style.width=B[Y]},ha);H&&Z(function(F,Y){F.innerHTML='
'+lb[Y]+"
";F.childNodes[0].style.height="0";F.childNodes[0].style.overflow="hidden";F.style.width=ba[Y]},ka);r.outerWidth()h.offsetHeight||"scroll"==m.css("overflow-y")?e+b:e,M&&(h.scrollHeight>h.offsetHeight||"scroll"==m.css("overflow-y"))&&(E.width=K(la-b)),""!==c&&""===d||aa(a,1,"Possible column misalignment",6)):la="100%";p.width=K(la);g.width=K(la);H&&(a.nScrollFoot.style.width= +K(la));!f&&M&&(p.height=K(A.offsetHeight+b));c=r.outerWidth();n[0].style.width=K(c);l.width=K(c);d=r.height()>h.clientHeight||"scroll"==m.css("overflow-y");f="padding"+(W.bScrollbarLeft?"Left":"Right");l[f]=d?b+"px":"0px";H&&(v[0].style.width=K(c),t[0].style.width=K(c),t[0].style[f]=d?b+"px":"0px");r.children("colgroup").insertBefore(r.children("thead"));m.trigger("scroll");!a.bSorted&&!a.bFiltered||a._drawHold||(h.scrollTop=0)}}function Z(a,b,c){for(var d=0,f=0,e=b.length,g,h;f").appendTo(h.find("tbody"));h.find("thead, tfoot").remove();h.append(k(a.nTHead).clone()).append(k(a.nTFoot).clone());h.find("tfoot th, tfoot td").css("width","");n=Ka(a,h.find("thead")[0]);for(v=0;v").css({width:r.sWidthOrig, +margin:0,padding:0,border:0,height:1}));if(a.aoData.length)for(v=0;v").css(e||f?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(h).appendTo(p);e&&g?h.width(g):e?(h.css("width","auto"),h.removeAttr("width"),h.width()").css("width",K(a)).appendTo(b||z.body);b=a[0].offsetWidth;a.remove();return b}function $b(a,b){var c=ac(a,b);if(0>c)return null;var d=a.aoData[c];return d.nTr?d.anCells[b]: +k("").html(S(a,c,b,"display"))[0]}function ac(a,b){for(var c,d=-1,f=-1,e=0,g=a.aoData.length;ed&&(d=c.length,f=e);return f}function K(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function pa(a){var b=[],c=a.aoColumns;var d=a.aaSortingFixed;var f=k.isPlainObject(d);var e=[];var g=function(m){m.length&&!Array.isArray(m[0])?e.push(m):k.merge(e,m)};Array.isArray(d)&&g(d); +f&&d.pre&&g(d.pre);g(a.aaSorting);f&&d.post&&g(d.post);for(a=0;aH?1:0;if(0!==E)return"asc"===A.dir?E:-E}E=c[m];H=c[p];return EH?1:0}):g.sort(function(m,p){var t,v=h.length,x=f[m]._aSortData,r=f[p]._aSortData;for(t=0;tH?1:0})}a.bSorted=!0}function cc(a){var b=a.aoColumns,c=pa(a);a=a.oLanguage.oAria;for(var d=0,f=b.length;d/g,"");var l=e.nTh;l.removeAttribute("aria-sort");e.bSortable&&(0f?f+1:3))}f=0;for(e=d.length;ff?f+1:3))}a.aLastSort= +d}function bc(a,b){var c=a.aoColumns[b],d=u.ext.order[c.sSortDataType],f;d&&(f=d.call(a.oInstance,a,b,ta(a,b)));for(var e,g=u.ext.type.order[c.sType+"-pre"],h=0,l=a.aoData.length;h=e.length?[0,m[1]]:m)}));h.search!==q&&k.extend(a.oPreviousSearch,Vb(h.search));if(h.columns)for(d=0,f=h.columns.length;d=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function eb(a,b){a=a.renderer;var c=u.ext.renderer[b];return k.isPlainObject(a)&&a[b]?c[a[b]]||c._:"string"===typeof a?c[a]|| +c._:c._}function P(a){return a.oFeatures.bServerSide?"ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function Ba(a,b){var c=ec.numbers_length,d=Math.floor(c/2);b<=c?a=qa(0,b):a<=d?(a=qa(0,c-2),a.push("ellipsis"),a.push(b-1)):(a>=b-1-d?a=qa(b-(c-2),b):(a=qa(a-d+2,a+d-1),a.push("ellipsis"),a.push(b-1)),a.splice(0,0,"ellipsis"),a.splice(0,0,0));a.DT_el="span";return a}function Va(a){k.each({num:function(b){return Sa(b,a)},"num-fmt":function(b){return Sa(b,a,qb)},"html-num":function(b){return Sa(b,a,Ta)},"html-num-fmt":function(b){return Sa(b, +a,Ta,qb)}},function(b,c){L.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(L.type.search[b+a]=L.type.search.html)})}function fc(a){return function(){var b=[Ra(this[u.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return u.ext.internal[a].apply(this,b)}}var u=function(a){this.$=function(e,g){return this.api(!0).$(e,g)};this._=function(e,g){return this.api(!0).rows(e,g).data()};this.api=function(e){return e?new D(Ra(this[L.iApiIndex])):new D(this)};this.fnAddData=function(e,g){var h=this.api(!0); +e=Array.isArray(e)&&(Array.isArray(e[0])||k.isPlainObject(e[0]))?h.rows.add(e):h.row.add(e);(g===q||g)&&h.draw();return e.flatten().toArray()};this.fnAdjustColumnSizing=function(e){var g=this.api(!0).columns.adjust(),h=g.settings()[0],l=h.oScroll;e===q||e?g.draw(!1):(""!==l.sX||""!==l.sY)&&Ea(h)};this.fnClearTable=function(e){var g=this.api(!0).clear();(e===q||e)&&g.draw()};this.fnClose=function(e){this.api(!0).row(e).child.hide()};this.fnDeleteRow=function(e,g,h){var l=this.api(!0);e=l.rows(e);var n= +e.settings()[0],m=n.aoData[e[0][0]];e.remove();g&&g.call(this,n,m);(h===q||h)&&l.draw();return m};this.fnDestroy=function(e){this.api(!0).destroy(e)};this.fnDraw=function(e){this.api(!0).draw(e)};this.fnFilter=function(e,g,h,l,n,m){n=this.api(!0);null===g||g===q?n.search(e,h,l,m):n.column(g).search(e,h,l,m);n.draw()};this.fnGetData=function(e,g){var h=this.api(!0);if(e!==q){var l=e.nodeName?e.nodeName.toLowerCase():"";return g!==q||"td"==l||"th"==l?h.cell(e,g).data():h.row(e).data()||null}return h.data().toArray()}; +this.fnGetNodes=function(e){var g=this.api(!0);return e!==q?g.row(e).node():g.rows().nodes().flatten().toArray()};this.fnGetPosition=function(e){var g=this.api(!0),h=e.nodeName.toUpperCase();return"TR"==h?g.row(e).index():"TD"==h||"TH"==h?(e=g.cell(e).index(),[e.row,e.columnVisible,e.column]):null};this.fnIsOpen=function(e){return this.api(!0).row(e).child.isShown()};this.fnOpen=function(e,g,h){return this.api(!0).row(e).child(g,h).show().child()[0]};this.fnPageChange=function(e,g){e=this.api(!0).page(e); +(g===q||g)&&e.draw(!1)};this.fnSetColumnVis=function(e,g,h){e=this.api(!0).column(e).visible(g);(h===q||h)&&e.columns.adjust().draw()};this.fnSettings=function(){return Ra(this[L.iApiIndex])};this.fnSort=function(e){this.api(!0).order(e).draw()};this.fnSortListener=function(e,g,h){this.api(!0).order.listener(e,g,h)};this.fnUpdate=function(e,g,h,l,n){var m=this.api(!0);h===q||null===h?m.row(g).data(e):m.cell(g,h).data(e);(n===q||n)&&m.columns.adjust();(l===q||l)&&m.draw();return 0};this.fnVersionCheck= +L.fnVersionCheck;var b=this,c=a===q,d=this.length;c&&(a={});this.oApi=this.internal=L.internal;for(var f in u.ext.internal)f&&(this[f]=fc(f));this.each(function(){var e={},g=1").appendTo(p));r.nTHead=B[0]; +B=p.children("tbody");0===B.length&&(B=k("").appendTo(p));r.nTBody=B[0];B=p.children("tfoot");0===B.length&&0").appendTo(p));0===B.length||0===B.children().length?p.addClass(A.sNoFooter):0/g,tc=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,uc=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\|\$|\^|\-)/g,qb=/['\u00A0,$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,ca=function(a){return a&&!0!==a&&"-"!==a?!1:!0},hc=function(a){var b=parseInt(a,10);return!isNaN(b)&&isFinite(a)?b:null},ic=function(a,b){rb[b]|| +(rb[b]=new RegExp(hb(b),"g"));return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(rb[b],"."):a},sb=function(a,b,c){var d="string"===typeof a;if(ca(a))return!0;b&&d&&(a=ic(a,b));c&&d&&(a=a.replace(qb,""));return!isNaN(parseFloat(a))&&isFinite(a)},jc=function(a,b,c){return ca(a)?!0:ca(a)||"string"===typeof a?sb(a.replace(Ta,""),b,c)?!0:null:null},T=function(a,b,c){var d=[],f=0,e=a.length;if(c!==q)for(;fa.length)){var b=a.slice().sort();for(var c=b[0],d=1,f=b.length;d")[0],rc=Oa.textContent!==q,sc=/<.*?>/g,fb=u.util.throttle,mc=[],N=Array.prototype,vc=function(a){var b,c=u.settings,d=k.map(c,function(e,g){return e.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase()){var f= +k.inArray(a,d);return-1!==f?[c[f]]:null}if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?b=k(a):a instanceof k&&(b=a)}else return[];if(b)return b.map(function(e){f=k.inArray(this,d);return-1!==f?c[f]:null}).toArray()};var D=function(a,b){if(!(this instanceof D))return new D(a,b);var c=[],d=function(g){(g=vc(g))&&c.push.apply(c,g)};if(Array.isArray(a))for(var f=0,e=a.length;fa?new D(b[a],this[a]):null},filter:function(a){var b=[];if(N.filter)b=N.filter.call(this,a,this);else for(var c=0,d=this.length;c").addClass(h),k("td",l).addClass(h).html(g)[0].colSpan=na(a),f.push(l[0]))};e(c,d);b._details&&b._details.detach();b._details=k(f);b._detailsShow&& +b._details.insertAfter(b.nTr)},wb=function(a,b){var c=a.context;c.length&&(a=c[0].aoData[b!==q?b:a[0]])&&a._details&&(a._details.remove(),a._detailsShow=q,a._details=q)},pc=function(a,b){var c=a.context;c.length&&a.length&&(a=c[0].aoData[a[0]],a._details&&((a._detailsShow=b)?a._details.insertAfter(a.nTr):a._details.detach(),yc(c[0])))},yc=function(a){var b=new D(a),c=a.aoData;b.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");0h){var m=k.map(d,function(p,t){return p.bVisible?t:null});return[m[m.length+h]]}return[sa(a,h)];case "name":return k.map(f,function(p,t){return p===n[1]?t:null});default:return[]}if(g.nodeName&&g._DT_CellIndex)return[g._DT_CellIndex.column];h=k(e).filter(g).map(function(){return k.inArray(this,e)}).toArray();if(h.length||!g.nodeName)return h;h=k(g).closest("*[data-dt-column]");return h.length?[h.data("dt-column")]:[]},a,c)};w("columns()",function(a,b){a===q?a="":k.isPlainObject(a)&&(b=a, +a="");b=ub(b);var c=this.iterator("table",function(d){return Ac(d,a,b)},1);c.selector.cols=a;c.selector.opts=b;return c});J("columns().header()","column().header()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTh},1)});J("columns().footer()","column().footer()",function(a,b){return this.iterator("column",function(c,d){return c.aoColumns[d].nTf},1)});J("columns().data()","column().data()",function(){return this.iterator("column-rows",qc,1)});J("columns().dataSrc()", +"column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},1)});J("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,f,e){return Ca(b.aoData,e,"search"===a?"_aFilterData":"_aSortData",c)},1)});J("columns().nodes()","column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,f){return Ca(a.aoData,f,"anCells",b)},1)});J("columns().visible()","column().visible()",function(a,b){var c= +this,d=this.iterator("column",function(f,e){if(a===q)return f.aoColumns[e].bVisible;var g=f.aoColumns,h=g[e],l=f.aoData,n;if(a!==q&&h.bVisible!==a){if(a){var m=k.inArray(!0,T(g,"bVisible"),e+1);g=0;for(n=l.length;gd;return!0};u.isDataTable=u.fnIsDataTable=function(a){var b=k(a).get(0),c=!1;if(a instanceof u.Api)return!0;k.each(u.settings,function(d,f){d=f.nScrollHead?k("table",f.nScrollHead)[0]:null;var e=f.nScrollFoot?k("table",f.nScrollFoot)[0]:null;if(f.nTable===b||d===b||e===b)c=!0});return c};u.tables=u.fnTables=function(a){var b= +!1;k.isPlainObject(a)&&(b=a.api,a=a.visible);var c=k.map(u.settings,function(d){if(!a||a&&k(d.nTable).is(":visible"))return d.nTable});return b?new D(c):c};u.camelToHungarian=O;w("$()",function(a,b){b=this.rows(b).nodes();b=k(b);return k([].concat(b.filter(a).toArray(),b.find(a).toArray()))});k.each(["on","one","off"],function(a,b){w(b+"()",function(){var c=Array.prototype.slice.call(arguments);c[0]=k.map(c[0].split(/\s/),function(f){return f.match(/\.dt\b/)?f:f+".dt"}).join(" ");var d=k(this.tables().nodes()); +d[b].apply(d,c);return this})});w("clear()",function(){return this.iterator("table",function(a){Ha(a)})});w("settings()",function(){return new D(this.context,this.context)});w("init()",function(){var a=this.context;return a.length?a[0].oInit:null});w("data()",function(){return this.iterator("table",function(a){return T(a.aoData,"_aData")}).flatten()});w("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,f=b.nTable,e=b.nTBody,g=b.nTHead, +h=b.nTFoot,l=k(f);e=k(e);var n=k(b.nTableWrapper),m=k.map(b.aoData,function(t){return t.nTr}),p;b.bDestroying=!0;I(b,"aoDestroyCallback","destroy",[b]);a||(new D(b)).columns().visible(!0);n.off(".DT").find(":not(tbody *)").off(".DT");k(y).off(".DT-"+b.sInstance);f!=g.parentNode&&(l.children("thead").detach(),l.append(g));h&&f!=h.parentNode&&(l.children("tfoot").detach(),l.append(h));b.aaSorting=[];b.aaSortingFixed=[];Pa(b);k(m).removeClass(b.asStripeClasses.join(" "));k("th, td",g).removeClass(d.sSortable+ +" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);e.children().detach();e.append(m);g=a?"remove":"detach";l[g]();n[g]();!a&&c&&(c.insertBefore(f,b.nTableReinsertBefore),l.css("width",b.sDestroyWidth).removeClass(d.sTable),(p=b.asDestroyStripes.length)&&e.children().each(function(t){k(this).addClass(b.asDestroyStripes[t%p])}));c=k.inArray(b,u.settings);-1!==c&&u.settings.splice(c,1)})});k.each(["column","row","cell"],function(a,b){w(b+"s().every()",function(c){var d=this.selector.opts,f= +this;return this.iterator(b,function(e,g,h,l,n){c.call(f[b](g,"cell"===b?h:d,"cell"===b?d:q),g,h,l,n)})})});w("i18n()",function(a,b,c){var d=this.context[0];a=ia(a)(d.oLanguage);a===q&&(a=b);c!==q&&k.isPlainObject(a)&&(a=a[c]!==q?a[c]:a._);return a.replace("%d",c)});u.version="1.10.22";u.settings=[];u.models={};u.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};u.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null, +idx:-1};u.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null,sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};u.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10, +25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null, +fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){return{}}},fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}}, +fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)", +sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:k.extend({},u.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};G(u.defaults);u.defaults.column={aDataSort:null, +iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};G(u.defaults.column);u.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null, +iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[], +aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:q,oAjaxData:q,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null, +iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==P(this)?1*this._iRecordsTotal:this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==P(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,f=this.oFeatures, +e=f.bPaginate;return f.bServerSide?!1===e||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!e||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};u.ext=L={buttons:{},classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:u.fnVersionCheck, +iApiIndex:0,oJUIClasses:{},sVersion:u.version};k.extend(L,{afnFiltering:L.search,aTypes:L.type.detect,ofnSearch:L.type.search,oSort:L.type.order,afnSortData:L.order,aoFeatures:L.feature,oApi:L.internal,oStdClasses:L.classes,oPagination:L.pager});k.extend(u.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter", +sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled",sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody", +sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"",sJUIHeader:"",sJUIFooter:""});var ec=u.ext.pager;k.extend(ec,{simple:function(a,b){return["previous","next"]},full:function(a,b){return["first","previous","next","last"]},numbers:function(a,b){return[Ba(a,b)]},simple_numbers:function(a,b){return["previous",Ba(a,b),"next"]}, +full_numbers:function(a,b){return["first","previous",Ba(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",Ba(a,b),"last"]},_numbers:Ba,numbers_length:7});k.extend(!0,u.ext.renderer,{pageButton:{_:function(a,b,c,d,f,e){var g=a.oClasses,h=a.oLanguage.oPaginate,l=a.oLanguage.oAria.paginate||{},n,m,p=0,t=function(x,r){var A,E=g.sPageButtonDisabled,H=function(B){kb(a,B.data.action,!0)};var W=0;for(A=r.length;W").appendTo(x); +t(C,M)}else{n=null;m=M;C=a.iTabIndex;switch(M){case "ellipsis":x.append('');break;case "first":n=h.sFirst;0===f&&(C=-1,m+=" "+E);break;case "previous":n=h.sPrevious;0===f&&(C=-1,m+=" "+E);break;case "next":n=h.sNext;if(0===e||f===e-1)C=-1,m+=" "+E;break;case "last":n=h.sLast;if(0===e||f===e-1)C=-1,m+=" "+E;break;default:n=a.fnFormatNumber(M+1),m=f===M?g.sPageButtonActive:""}null!==n&&(C=k("",{"class":g.sPageButton+" "+m,"aria-controls":a.sTableId,"aria-label":l[M], +"data-dt-idx":p,tabindex:C,id:0===c&&"string"===typeof M?a.sTableId+"_"+M:null}).html(n).appendTo(x),ob(C,{action:M},H),p++)}}};try{var v=k(b).find(z.activeElement).data("dt-idx")}catch(x){}t(k(b).empty(),d);v!==q&&k(b).find("[data-dt-idx="+v+"]").trigger("focus")}}});k.extend(u.ext.type.detect,[function(a,b){b=b.oLanguage.sDecimal;return sb(a,b)?"num"+b:null},function(a,b){if(a&&!(a instanceof Date)&&!tc.test(a))return null;b=Date.parse(a);return null!==b&&!isNaN(b)||ca(a)?"date":null},function(a, +b){b=b.oLanguage.sDecimal;return sb(a,b,!0)?"num-fmt"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b)?"html-num"+b:null},function(a,b){b=b.oLanguage.sDecimal;return jc(a,b,!0)?"html-num-fmt"+b:null},function(a,b){return ca(a)||"string"===typeof a&&-1!==a.indexOf("<")?"html":null}]);k.extend(u.ext.type.search,{html:function(a){return ca(a)?a:"string"===typeof a?a.replace(gc," ").replace(Ta,""):""},string:function(a){return ca(a)?a:"string"===typeof a?a.replace(gc," "):a}});var Sa=function(a, +b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=ic(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};k.extend(L.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return ca(a)?"":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return ca(a)?"":"string"===typeof a?a.toLowerCase():a.toString?a.toString():""},"string-asc":function(a,b){return ab?1:0},"string-desc":function(a,b){return a< +b?1:a>b?-1:0}});Va("");k.extend(!0,u.ext.renderer,{header:{_:function(a,b,c,d){k(a.nTable).on("order.dt.DT",function(f,e,g,h){a===e&&(f=c.idx,b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass("asc"==h[f]?d.sSortAsc:"desc"==h[f]?d.sSortDesc:c.sSortingClass))})},jqueryui:function(a,b,c,d){k("
").addClass(d.sSortJUIWrapper).append(b.contents()).append(k("").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);k(a.nTable).on("order.dt.DT",function(f,e,g,h){a===e&& +(f=c.idx,b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass("asc"==h[f]?d.sSortAsc:"desc"==h[f]?d.sSortDesc:c.sSortingClass),b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass("asc"==h[f]?d.sSortJUIAsc:"desc"==h[f]?d.sSortJUIDesc:c.sSortingClassJUI))})}}});var xb=function(a){return"string"===typeof a?a.replace(/&/g,"&").replace(//g,">").replace(/"/g,"""):a};u.render= +{number:function(a,b,c,d,f){return{display:function(e){if("number"!==typeof e&&"string"!==typeof e)return e;var g=0>e?"-":"",h=parseFloat(e);if(isNaN(h))return xb(e);h=h.toFixed(c);e=Math.abs(h);h=parseInt(e,10);e=c?b+(e-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g,a)+e+(f||"")}}},text:function(){return{display:xb,filter:xb}}};k.extend(u.ext.internal,{_fnExternApiFunc:fc,_fnBuildAjax:La,_fnAjaxUpdate:Fb,_fnAjaxParameters:Ob,_fnAjaxUpdateDraw:Pb,_fnAjaxDataSrc:Ma, +_fnAddColumn:Wa,_fnColumnOptions:Da,_fnAdjustColumnSizing:ra,_fnVisibleToColumnIndex:sa,_fnColumnIndexToVisible:ta,_fnVisbleColumns:na,_fnGetColumns:Fa,_fnColumnTypes:Ya,_fnApplyColumnDefs:Cb,_fnHungarianMap:G,_fnCamelToHungarian:O,_fnLanguageCompat:ma,_fnBrowserDetect:Ab,_fnAddData:ea,_fnAddTr:Ga,_fnNodeToDataIndex:function(a,b){return b._DT_RowIndex!==q?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return k.inArray(c,a.aoData[b].anCells)},_fnGetCellData:S,_fnSetCellData:Db,_fnSplitObjNotation:ab, +_fnGetObjectDataFn:ia,_fnSetObjectDataFn:da,_fnGetDataMaster:bb,_fnClearTable:Ha,_fnDeleteIndex:Ia,_fnInvalidate:va,_fnGetRowElements:$a,_fnCreateTr:Za,_fnBuildHead:Eb,_fnDrawHead:xa,_fnDraw:fa,_fnReDraw:ja,_fnAddOptionsHtml:Hb,_fnDetectHeader:wa,_fnGetUniqueThs:Ka,_fnFeatureHtmlFilter:Jb,_fnFilterComplete:ya,_fnFilterCustom:Sb,_fnFilterColumn:Rb,_fnFilter:Qb,_fnFilterCreateSearch:gb,_fnEscapeRegex:hb,_fnFilterData:Tb,_fnFeatureHtmlInfo:Mb,_fnUpdateInfo:Wb,_fnInfoMacros:Xb,_fnInitialise:za,_fnInitComplete:Na, +_fnLengthChange:ib,_fnFeatureHtmlLength:Ib,_fnFeatureHtmlPaginate:Nb,_fnPageChange:kb,_fnFeatureHtmlProcessing:Kb,_fnProcessingDisplay:U,_fnFeatureHtmlTable:Lb,_fnScrollDraw:Ea,_fnApplyToChildren:Z,_fnCalculateColumnWidths:Xa,_fnThrottle:fb,_fnConvertToWidth:Zb,_fnGetWidestNode:$b,_fnGetMaxLenString:ac,_fnStringToCss:K,_fnSortFlatten:pa,_fnSort:Gb,_fnSortAria:cc,_fnSortListener:nb,_fnSortAttachListener:db,_fnSortingClasses:Pa,_fnSortData:bc,_fnSaveState:Qa,_fnLoadState:dc,_fnSettingsFromNode:Ra,_fnLog:aa, +_fnMap:V,_fnBindAction:ob,_fnCallbackReg:Q,_fnCallbackFire:I,_fnLengthOverflow:jb,_fnRenderer:eb,_fnDataSource:P,_fnRowAttributes:cb,_fnExtend:pb,_fnCalculateEnd:function(){}});k.fn.dataTable=u;u.$=k;k.fn.dataTableSettings=u.settings;k.fn.dataTableExt=u.ext;k.fn.DataTable=function(a){return k(this).dataTable(a).api()};k.each(u,function(a,b){k.fn.DataTable[a]=b});return k.fn.dataTable}); diff --git a/tests/licensedcode/data/license_db/license_dump/static/images/sort_asc.png b/tests/licensedcode/data/license_db/license_dump/static/images/sort_asc.png new file mode 100644 index 00000000000..e1ba61a8055 Binary files /dev/null and b/tests/licensedcode/data/license_db/license_dump/static/images/sort_asc.png differ diff --git a/tests/licensedcode/data/license_db/license_dump/static/images/sort_asc_disabled.png b/tests/licensedcode/data/license_db/license_dump/static/images/sort_asc_disabled.png new file mode 100644 index 00000000000..fb11dfe24a6 Binary files /dev/null and b/tests/licensedcode/data/license_db/license_dump/static/images/sort_asc_disabled.png differ diff --git a/tests/licensedcode/data/license_db/license_dump/static/images/sort_both.png b/tests/licensedcode/data/license_db/license_dump/static/images/sort_both.png new file mode 100644 index 00000000000..af5bc7c5a10 Binary files /dev/null and b/tests/licensedcode/data/license_db/license_dump/static/images/sort_both.png differ diff --git a/tests/licensedcode/data/license_db/license_dump/static/images/sort_desc.png b/tests/licensedcode/data/license_db/license_dump/static/images/sort_desc.png new file mode 100644 index 00000000000..0e156deb5f6 Binary files /dev/null and b/tests/licensedcode/data/license_db/license_dump/static/images/sort_desc.png differ diff --git a/tests/licensedcode/data/license_db/license_dump/static/images/sort_desc_disabled.png b/tests/licensedcode/data/license_db/license_dump/static/images/sort_desc_disabled.png new file mode 100644 index 00000000000..c9fdd8a1502 Binary files /dev/null and b/tests/licensedcode/data/license_db/license_dump/static/images/sort_desc_disabled.png differ diff --git a/tests/licensedcode/data/license_db/license_dump/static/jquery-3.5.1.slim.min.js b/tests/licensedcode/data/license_db/license_dump/static/jquery-3.5.1.slim.min.js new file mode 100644 index 00000000000..36b4e1a1378 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/static/jquery-3.5.1.slim.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.5.1 -ajax,-ajax/jsonp,-ajax/load,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-deprecated/ajax-event-alias,-effects,-effects/Tween,-effects/animatedSelector | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(g,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,v=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),m={},b=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},w=g.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function C(e,t,n){var r,i,o=(n=n||w).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function T(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1 -ajax,-ajax/jsonp,-ajax/load,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-deprecated/ajax-event-alias,-effects,-effects/Tween,-effects/animatedSelector",E=function(e,t){return new E.fn.init(e,t)};function d(e){var t=!!e&&"length"in e&&e.length,n=T(e);return!b(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function Le(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=Fe(m.pixelPosition,function(e,t){if(t)return t=We(e,n),Ie.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 01&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:5e3;n(this,e),this.ctx=t,this.iframes=r,this.exclude=i,this.iframesTimeout=o}return r(e,[{key:"getContexts",value:function(){var e=[];return(void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[]).forEach(function(t){var n=e.filter(function(e){return e.contains(t)}).length>0;-1!==e.indexOf(t)||n||e.push(t)}),e}},{key:"getIframeContents",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},r=void 0;try{var i=e.contentWindow;if(r=i.document,!i||!r)throw new Error("iframe inaccessible")}catch(e){n()}r&&t(r)}},{key:"isIframeBlank",value:function(e){var t=e.getAttribute("src").trim();return"about:blank"===e.contentWindow.location.href&&"about:blank"!==t&&t}},{key:"observeIframeLoad",value:function(e,t,n){var r=this,i=!1,o=null,a=function a(){if(!i){i=!0,clearTimeout(o);try{r.isIframeBlank(e)||(e.removeEventListener("load",a),r.getIframeContents(e,t,n))}catch(e){n()}}};e.addEventListener("load",a),o=setTimeout(a,this.iframesTimeout)}},{key:"onIframeReady",value:function(e,t,n){try{"complete"===e.contentWindow.document.readyState?this.isIframeBlank(e)?this.observeIframeLoad(e,t,n):this.getIframeContents(e,t,n):this.observeIframeLoad(e,t,n)}catch(e){n()}}},{key:"waitForIframes",value:function(e,t){var n=this,r=0;this.forEachIframe(e,function(){return!0},function(e){r++,n.waitForIframes(e.querySelector("html"),function(){--r||t()})},function(e){e||t()})}},{key:"forEachIframe",value:function(t,n,r){var i=this,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},a=t.querySelectorAll("iframe"),s=a.length,c=0;a=Array.prototype.slice.call(a);var u=function(){--s<=0&&o(c)};s||u(),a.forEach(function(t){e.matches(t,i.exclude)?u():i.onIframeReady(t,function(e){n(t)&&(c++,r(e)),u()},u)})}},{key:"createIterator",value:function(e,t,n){return document.createNodeIterator(e,t,n,!1)}},{key:"createInstanceOnIframe",value:function(t){return new e(t.querySelector("html"),this.iframes)}},{key:"compareNodeIframe",value:function(e,t,n){if(e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_PRECEDING){if(null===t)return!0;if(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}},{key:"getIteratorNode",value:function(e){var t=e.previousNode();return{prevNode:t,node:null===t?e.nextNode():e.nextNode()&&e.nextNode()}}},{key:"checkIframeFilter",value:function(e,t,n,r){var i=!1,o=!1;return r.forEach(function(e,t){e.val===n&&(i=t,o=e.handled)}),this.compareNodeIframe(e,t,n)?(!1!==i||o?!1===i||o||(r[i].handled=!0):r.push({val:n,handled:!0}),!0):(!1===i&&r.push({val:n,handled:!1}),!1)}},{key:"handleOpenIframes",value:function(e,t,n,r){var i=this;e.forEach(function(e){e.handled||i.getIframeContents(e.val,function(e){i.createInstanceOnIframe(e).forEachNode(t,n,r)})})}},{key:"iterateThroughNodes",value:function(e,t,n,r,i){for(var o,a=this,s=this.createIterator(t,e,r),c=[],u=[],l=void 0,h=void 0;void 0,o=a.getIteratorNode(s),h=o.prevNode,l=o.node;)this.iframes&&this.forEachIframe(t,function(e){return a.checkIframeFilter(l,h,e,c)},function(t){a.createInstanceOnIframe(t).forEachNode(e,function(e){return u.push(e)},r)}),u.push(l);u.forEach(function(e){n(e)}),this.iframes&&this.handleOpenIframes(c,e,n,r),i()}},{key:"forEachNode",value:function(e,t,n){var r=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){},o=this.getContexts(),a=o.length;a||i(),o.forEach(function(o){var s=function(){r.iterateThroughNodes(e,o,t,n,function(){--a<=0&&i()})};r.iframes?r.waitForIframes(o,s):s()})}}],[{key:"matches",value:function(e,t){var n="string"==typeof t?[t]:t,r=e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.oMatchesSelector||e.webkitMatchesSelector;if(r){var i=!1;return n.every(function(t){return!r.call(e,t)||(i=!0,!1)}),i}return!1}}]),e}(),a=function(){function e(t){n(this,e),this.ctx=t,this.ie=!1;var r=window.navigator.userAgent;(r.indexOf("MSIE")>-1||r.indexOf("Trident")>-1)&&(this.ie=!0)}return r(e,[{key:"log",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"debug",r=this.opt.log;this.opt.debug&&"object"===(void 0===r?"undefined":t(r))&&"function"==typeof r[n]&&r[n]("mark.js: "+e)}},{key:"escapeStr",value:function(e){return e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}},{key:"createRegExp",value:function(e){return"disabled"!==this.opt.wildcards&&(e=this.setupWildcardsRegExp(e)),e=this.escapeStr(e),Object.keys(this.opt.synonyms).length&&(e=this.createSynonymsRegExp(e)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),this.opt.diacritics&&(e=this.createDiacriticsRegExp(e)),e=this.createMergedBlanksRegExp(e),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.createJoinersRegExp(e)),"disabled"!==this.opt.wildcards&&(e=this.createWildcardsRegExp(e)),e=this.createAccuracyRegExp(e)}},{key:"createSynonymsRegExp",value:function(e){var t=this.opt.synonyms,n=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(var i in t)if(t.hasOwnProperty(i)){var o=t[i],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(o):this.escapeStr(o);""!==a&&""!==s&&(e=e.replace(new RegExp("("+this.escapeStr(a)+"|"+this.escapeStr(s)+")","gm"+n),r+"("+this.processSynomyms(a)+"|"+this.processSynomyms(s)+")"+r))}return e}},{key:"processSynomyms",value:function(e){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(e=this.setupIgnoreJoinersRegExp(e)),e}},{key:"setupWildcardsRegExp",value:function(e){return(e=e.replace(/(?:\\)*\?/g,function(e){return"\\"===e.charAt(0)?"?":""})).replace(/(?:\\)*\*/g,function(e){return"\\"===e.charAt(0)?"*":""})}},{key:"createWildcardsRegExp",value:function(e){var t="withSpaces"===this.opt.wildcards;return e.replace(/\u0001/g,t?"[\\S\\s]?":"\\S?").replace(/\u0002/g,t?"[\\S\\s]*?":"\\S*")}},{key:"setupIgnoreJoinersRegExp",value:function(e){return e.replace(/[^(|)\\]/g,function(e,t,n){var r=n.charAt(t+1);return/[(|)\\]/.test(r)||""===r?e:e+"\0"})}},{key:"createJoinersRegExp",value:function(e){var t=[],n=this.opt.ignorePunctuation;return Array.isArray(n)&&n.length&&t.push(this.escapeStr(n.join(""))),this.opt.ignoreJoiners&&t.push("\\u00ad\\u200b\\u200c\\u200d"),t.length?e.split(/\u0000+/).join("["+t.join("")+"]*"):e}},{key:"createDiacriticsRegExp",value:function(e){var t=this.opt.caseSensitive?"":"i",n=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"],r=[];return e.split("").forEach(function(i){n.every(function(n){if(-1!==n.indexOf(i)){if(r.indexOf(n)>-1)return!1;e=e.replace(new RegExp("["+n+"]","gm"+t),"["+n+"]"),r.push(n)}return!0})}),e}},{key:"createMergedBlanksRegExp",value:function(e){return e.replace(/[\s]+/gim,"[\\s]+")}},{key:"createAccuracyRegExp",value:function(e){var t=this,n=this.opt.accuracy,r="string"==typeof n?n:n.value,i="";switch(("string"==typeof n?[]:n.limiters).forEach(function(e){i+="|"+t.escapeStr(e)}),r){case"partially":default:return"()("+e+")";case"complementary":return"()([^"+(i="\\s"+(i||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")))+"]*"+e+"[^"+i+"]*)";case"exactly":return"(^|\\s"+i+")("+e+")(?=$|\\s"+i+")"}}},{key:"getSeparatedKeywords",value:function(e){var t=this,n=[];return e.forEach(function(e){t.opt.separateWordSearch?e.split(" ").forEach(function(e){e.trim()&&-1===n.indexOf(e)&&n.push(e)}):e.trim()&&-1===n.indexOf(e)&&n.push(e)}),{keywords:n.sort(function(e,t){return t.length-e.length}),length:n.length}}},{key:"isNumeric",value:function(e){return Number(parseFloat(e))==e}},{key:"checkRanges",value:function(e){var t=this;if(!Array.isArray(e)||"[object Object]"!==Object.prototype.toString.call(e[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(e),[];var n=[],r=0;return e.sort(function(e,t){return e.start-t.start}).forEach(function(e){var i=t.callNoMatchOnInvalidRanges(e,r),o=i.start,a=i.end;i.valid&&(e.start=o,e.length=a-o,n.push(e),r=a)}),n}},{key:"callNoMatchOnInvalidRanges",value:function(e,t){var n=void 0,r=void 0,i=!1;return e&&void 0!==e.start?(r=(n=parseInt(e.start,10))+parseInt(e.length,10),this.isNumeric(e.start)&&this.isNumeric(e.length)&&r-t>0&&r-n>0?i=!0:(this.log("Ignoring invalid or overlapping range: "+JSON.stringify(e)),this.opt.noMatch(e))):(this.log("Ignoring invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:n,end:r,valid:i}}},{key:"checkWhitespaceRanges",value:function(e,t,n){var r=void 0,i=!0,o=n.length,a=t-o,s=parseInt(e.start,10)-a;return(r=(s=s>o?o:s)+parseInt(e.length,10))>o&&(r=o,this.log("End range automatically set to the max value of "+o)),s<0||r-s<0||s>o||r>o?(i=!1,this.log("Invalid range: "+JSON.stringify(e)),this.opt.noMatch(e)):""===n.substring(s,r).replace(/\s+/g,"")&&(i=!1,this.log("Skipping whitespace only range: "+JSON.stringify(e)),this.opt.noMatch(e)),{start:s,end:r,valid:i}}},{key:"getTextNodes",value:function(e){var t=this,n="",r=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,function(e){r.push({start:n.length,end:(n+=e.textContent).length,node:e})},function(e){return t.matchesExclude(e.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT},function(){e({value:n,nodes:r})})}},{key:"matchesExclude",value:function(e){return o.matches(e,this.opt.exclude.concat(["script","style","title","head","html"]))}},{key:"wrapRangeInTextNode",value:function(e,t,n){var r=this.opt.element?this.opt.element:"mark",i=e.splitText(t),o=i.splitText(n-t),a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=i.textContent,i.parentNode.replaceChild(a,i),o}},{key:"wrapRangeInMappedTextNode",value:function(e,t,n,r,i){var o=this;e.nodes.every(function(a,s){var c=e.nodes[s+1];if(void 0===c||c.start>t){if(!r(a.node))return!1;var u=t-a.start,l=(n>a.end?a.end:n)-a.start,h=e.value.substr(0,a.start),f=e.value.substr(l+a.start);if(a.node=o.wrapRangeInTextNode(a.node,u,l),e.value=h+f,e.nodes.forEach(function(t,n){n>=s&&(e.nodes[n].start>0&&n!==s&&(e.nodes[n].start-=l),e.nodes[n].end-=l)}),n-=l,i(a.node.previousSibling,a.start),!(n>a.end))return!1;t=a.end}return!0})}},{key:"wrapMatches",value:function(e,t,n,r,i){var o=this,a=0===t?0:t+1;this.getTextNodes(function(t){t.nodes.forEach(function(t){t=t.node;for(var i=void 0;null!==(i=e.exec(t.textContent))&&""!==i[a];)if(n(i[a],t)){var s=i.index;if(0!==a)for(var c=1;c.column,.columns.col-gapless>.column{padding-left:0;padding-right:0}.cols.col-oneline,.columns.col-oneline{-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}.column,[class~=col-]{-ms-flex:1;flex:1;max-width:100%;padding-left:.4rem;padding-right:.4rem}.column.col-1,.column.col-10,.column.col-11,.column.col-12,.column.col-2,.column.col-3,.column.col-4,.column.col-5,.column.col-6,.column.col-7,.column.col-8,.column.col-9,.column.col-auto,[class~=col-].col-1,[class~=col-].col-10,[class~=col-].col-11,[class~=col-].col-12,[class~=col-].col-2,[class~=col-].col-3,[class~=col-].col-4,[class~=col-].col-5,[class~=col-].col-6,[class~=col-].col-7,[class~=col-].col-8,[class~=col-].col-9,[class~=col-].col-auto{-ms-flex:none;flex:none}.col-12{width:100%}.col-11{width:91.66666667%}.col-10{width:83.33333333%}.col-9{width:75%}.col-8{width:66.66666667%}.col-7{width:58.33333333%}.col-6{width:50%}.col-5{width:41.66666667%}.col-4{width:33.33333333%}.col-3{width:25%}.col-2{width:16.66666667%}.col-1{width:8.33333333%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;max-width:none;width:auto}.col-mx-auto{margin-left:auto;margin-right:auto}.col-ml-auto{margin-left:auto}.col-mr-auto{margin-right:auto}@media (max-width:1280px){.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{-ms-flex:none;flex:none}.col-xl-12{width:100%}.col-xl-11{width:91.66666667%}.col-xl-10{width:83.33333333%}.col-xl-9{width:75%}.col-xl-8{width:66.66666667%}.col-xl-7{width:58.33333333%}.col-xl-6{width:50%}.col-xl-5{width:41.66666667%}.col-xl-4{width:33.33333333%}.col-xl-3{width:25%}.col-xl-2{width:16.66666667%}.col-xl-1{width:8.33333333%}.col-xl-auto{width:auto}.hide-xl{display:none!important}.show-xl{display:block!important}}@media (max-width:960px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto{-ms-flex:none;flex:none}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-auto{width:auto}.hide-lg{display:none!important}.show-lg{display:block!important}}@media (max-width:840px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto{-ms-flex:none;flex:none}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-auto{width:auto}.hide-md{display:none!important}.show-md{display:block!important}}@media (max-width:600px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto{-ms-flex:none;flex:none}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-auto{width:auto}.hide-sm{display:none!important}.show-sm{display:block!important}}@media (max-width:480px){.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-auto{-ms-flex:none;flex:none}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-auto{width:auto}.hide-xs{display:none!important}.show-xs{display:block!important}}.hero{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:4rem;padding-top:4rem}.hero.hero-sm{padding-bottom:2rem;padding-top:2rem}.hero.hero-lg{padding-bottom:8rem;padding-top:8rem}.hero .hero-body{padding:.4rem}.navbar{align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-align:stretch;-ms-flex-pack:justify;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-content:space-between}.navbar .navbar-section{align-items:center;display:-ms-flexbox;display:flex;-ms-flex:1 0 0;flex:1 0 0;-ms-flex-align:center}.navbar .navbar-section:not(:first-child):last-child{-ms-flex-pack:end;justify-content:flex-end}.navbar .navbar-center{align-items:center;display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-align:center}.navbar .navbar-brand{font-size:.9rem;text-decoration:none}.accordion input:checked~.accordion-header>.icon:first-child,.accordion[open] .accordion-header>.icon:first-child{transform:rotate(90deg)}.accordion input:checked~.accordion-body,.accordion[open] .accordion-body{max-height:50rem}.accordion .accordion-header{display:block;padding:.2rem .4rem}.accordion .accordion-header .icon{transition:transform .25s}.accordion .accordion-body{margin-bottom:.4rem;max-height:0;overflow:hidden;transition:max-height .25s}summary.accordion-header::-webkit-details-marker{display:none}.avatar{background:#5755d9;border-radius:50%;color:rgba(255,255,255,.85);display:inline-block;font-size:.8rem;font-weight:300;height:1.6rem;line-height:1.25;margin:0;position:relative;vertical-align:middle;width:1.6rem}.avatar.avatar-xs{font-size:.4rem;height:.8rem;width:.8rem}.avatar.avatar-sm{font-size:.6rem;height:1.2rem;width:1.2rem}.avatar.avatar-lg{font-size:1.2rem;height:2.4rem;width:2.4rem}.avatar.avatar-xl{font-size:1.6rem;height:3.2rem;width:3.2rem}.avatar img{border-radius:50%;height:100%;position:relative;width:100%;z-index:1}.avatar .avatar-icon,.avatar .avatar-presence{background:#fff;bottom:14.64%;height:50%;padding:.1rem;position:absolute;right:14.64%;transform:translate(50%,50%);width:50%;z-index:2}.avatar .avatar-presence{background:#bcc3ce;border-radius:50%;box-shadow:0 0 0 .1rem #fff;height:.5em;width:.5em}.avatar .avatar-presence.online{background:#32b643}.avatar .avatar-presence.busy{background:#e85600}.avatar .avatar-presence.away{background:#ffb700}.avatar[data-initial]::before{color:currentColor;content:attr(data-initial);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:1}.badge{position:relative;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge]::after{background:#5755d9;background-clip:padding-box;border-radius:.5rem;box-shadow:0 0 0 .1rem #fff;color:#fff;content:attr(data-badge);display:inline-block;transform:translate(-.05rem,-.5rem)}.badge[data-badge]::after{font-size:.7rem;height:.9rem;line-height:1;min-width:.9rem;padding:.1rem .2rem;text-align:center;white-space:nowrap}.badge:not([data-badge])::after,.badge[data-badge=""]::after{height:6px;min-width:6px;padding:0;width:6px}.badge.btn::after{position:absolute;right:0;top:0;transform:translate(50%,-50%)}.badge.avatar::after{position:absolute;right:14.64%;top:14.64%;transform:translate(50%,-50%);z-index:100}.breadcrumb{list-style:none;margin:.2rem 0;padding:.2rem 0}.breadcrumb .breadcrumb-item{color:#66758c;display:inline-block;margin:0;padding:.2rem 0}.breadcrumb .breadcrumb-item:not(:last-child){margin-right:.2rem}.breadcrumb .breadcrumb-item:not(:last-child) a{color:#66758c}.breadcrumb .breadcrumb-item:not(:first-child)::before{color:#66758c;content:"/";padding-right:.4rem}.bar{background:#eef0f3;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:.8rem;width:100%}.bar.bar-sm{height:.2rem}.bar .bar-item{background:#5755d9;color:#fff;display:block;-ms-flex-negative:0;flex-shrink:0;font-size:.7rem;height:100%;line-height:.8rem;position:relative;text-align:center;width:0}.bar .bar-item:first-child{border-bottom-left-radius:.1rem;border-top-left-radius:.1rem}.bar .bar-item:last-child{border-bottom-right-radius:.1rem;border-top-right-radius:.1rem;-ms-flex-negative:1;flex-shrink:1}.bar-slider{height:.1rem;margin:.4rem 0;position:relative}.bar-slider .bar-item{left:0;padding:0;position:absolute}.bar-slider .bar-item:not(:last-child):first-child{background:#eef0f3;z-index:1}.bar-slider .bar-slider-btn{background:#5755d9;border:0;border-radius:50%;height:.6rem;padding:0;position:absolute;right:0;top:50%;transform:translate(50%,-50%);width:.6rem}.bar-slider .bar-slider-btn:active{box-shadow:0 0 0 .1rem #5755d9}.card{background:#fff;border:.05rem solid #dadee4;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card .card-body,.card .card-footer,.card .card-header{padding:.8rem;padding-bottom:0}.card .card-body:last-child,.card .card-footer:last-child,.card .card-header:last-child{padding-bottom:.8rem}.card .card-body{-ms-flex:1 1 auto;flex:1 1 auto}.card .card-image{padding-top:.8rem}.card .card-image:first-child{padding-top:0}.card .card-image:first-child img{border-top-left-radius:.1rem;border-top-right-radius:.1rem}.card .card-image:last-child img{border-bottom-left-radius:.1rem;border-bottom-right-radius:.1rem}.chip{align-items:center;background:#eef0f3;border-radius:5rem;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;font-size:90%;height:1.2rem;line-height:.8rem;margin:.1rem;max-width:320px;overflow:hidden;padding:.2rem .4rem;text-decoration:none;text-overflow:ellipsis;vertical-align:middle;white-space:nowrap}.chip.active{background:#5755d9;color:#fff}.chip .avatar{margin-left:-.4rem;margin-right:.2rem}.chip .btn-clear{border-radius:50%;transform:scale(.75)}.dropdown{display:inline-block;position:relative}.dropdown .menu{animation:slide-down .15s ease 1;display:none;left:0;max-height:50vh;overflow-y:auto;position:absolute;top:100%}.dropdown.dropdown-right .menu{left:auto;right:0}.dropdown .dropdown-toggle:focus+.menu,.dropdown .menu:hover,.dropdown.active .menu{display:block}.dropdown .btn-group .dropdown-toggle:nth-last-child(2){border-bottom-right-radius:.1rem;border-top-right-radius:.1rem}.empty{background:#f7f8f9;border-radius:.1rem;color:#66758c;padding:3.2rem 1.6rem;text-align:center}.empty .empty-icon{margin-bottom:.8rem}.empty .empty-subtitle,.empty .empty-title{margin:.4rem auto}.empty .empty-action{margin-top:.8rem}.menu{background:#fff;border-radius:.1rem;box-shadow:0 .05rem .2rem rgba(48,55,66,.3);list-style:none;margin:0;min-width:180px;padding:.4rem;transform:translateY(.2rem);z-index:300}.menu.menu-nav{background:0 0;box-shadow:none}.menu .menu-item{margin-top:0;padding:0 .4rem;position:relative;text-decoration:none}.menu .menu-item>a{border-radius:.1rem;color:inherit;display:block;margin:0 -.4rem;padding:.2rem .4rem;text-decoration:none}.menu .menu-item>a:focus,.menu .menu-item>a:hover{background:#f1f1fc;color:#5755d9}.menu .menu-item>a.active,.menu .menu-item>a:active{background:#f1f1fc;color:#5755d9}.menu .menu-item .form-checkbox,.menu .menu-item .form-radio,.menu .menu-item .form-switch{margin:.1rem 0}.menu .menu-item+.menu-item{margin-top:.2rem}.menu .menu-badge{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;height:100%;position:absolute;right:0;top:0}.menu .menu-badge .label{margin-right:.4rem}.modal{align-items:center;bottom:0;display:none;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center;left:0;opacity:0;overflow:hidden;padding:.4rem;position:fixed;right:0;top:0}.modal.active,.modal:target{display:-ms-flexbox;display:flex;opacity:1;z-index:400}.modal.active .modal-overlay,.modal:target .modal-overlay{background:rgba(247,248,249,.75);bottom:0;cursor:default;display:block;left:0;position:absolute;right:0;top:0}.modal.active .modal-container,.modal:target .modal-container{animation:slide-down .2s ease 1;z-index:1}.modal.modal-sm .modal-container{max-width:320px;padding:0 .4rem}.modal.modal-lg .modal-overlay{background:#fff}.modal.modal-lg .modal-container{box-shadow:none;max-width:960px}.modal-container{background:#fff;border-radius:.1rem;box-shadow:0 .2rem .5rem rgba(48,55,66,.3);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;max-height:75vh;max-width:640px;padding:0 .8rem;width:100%}.modal-container.modal-fullheight{max-height:100vh}.modal-container .modal-header{color:#303742;padding:.8rem}.modal-container .modal-body{overflow-y:auto;padding:.8rem;position:relative}.modal-container .modal-footer{padding:.8rem;text-align:right}.nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;list-style:none;margin:.2rem 0}.nav .nav-item a{color:#66758c;padding:.2rem .4rem;text-decoration:none}.nav .nav-item a:focus,.nav .nav-item a:hover{color:#5755d9}.nav .nav-item.active>a{color:#505c6e;font-weight:700}.nav .nav-item.active>a:focus,.nav .nav-item.active>a:hover{color:#5755d9}.nav .nav{margin-bottom:.4rem;margin-left:.8rem}.pagination{display:-ms-flexbox;display:flex;list-style:none;margin:.2rem 0;padding:.2rem 0}.pagination .page-item{margin:.2rem .05rem}.pagination .page-item span{display:inline-block;padding:.2rem .2rem}.pagination .page-item a{border-radius:.1rem;display:inline-block;padding:.2rem .4rem;text-decoration:none}.pagination .page-item a:focus,.pagination .page-item a:hover{color:#5755d9}.pagination .page-item.disabled a{cursor:default;opacity:.5;pointer-events:none}.pagination .page-item.active a{background:#5755d9;color:#fff}.pagination .page-item.page-next,.pagination .page-item.page-prev{-ms-flex:1 0 50%;flex:1 0 50%}.pagination .page-item.page-next{text-align:right}.pagination .page-item .page-item-title{margin:0}.pagination .page-item .page-item-subtitle{margin:0;opacity:.5}.panel{border:.05rem solid #dadee4;border-radius:.1rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.panel .panel-footer,.panel .panel-header{-ms-flex:0 0 auto;flex:0 0 auto;padding:.8rem}.panel .panel-nav{-ms-flex:0 0 auto;flex:0 0 auto}.panel .panel-body{-ms-flex:1 1 auto;flex:1 1 auto;overflow-y:auto;padding:0 .8rem}.popover{display:inline-block;position:relative}.popover .popover-container{left:50%;opacity:0;padding:.4rem;position:absolute;top:0;transform:translate(-50%,-50%) scale(0);transition:transform .2s;width:320px;z-index:300}.popover :focus+.popover-container,.popover:hover .popover-container{display:block;opacity:1;transform:translate(-50%,-100%) scale(1)}.popover.popover-right .popover-container{left:100%;top:50%}.popover.popover-right :focus+.popover-container,.popover.popover-right:hover .popover-container{transform:translate(0,-50%) scale(1)}.popover.popover-bottom .popover-container{left:50%;top:100%}.popover.popover-bottom :focus+.popover-container,.popover.popover-bottom:hover .popover-container{transform:translate(-50%,0) scale(1)}.popover.popover-left .popover-container{left:0;top:50%}.popover.popover-left :focus+.popover-container,.popover.popover-left:hover .popover-container{transform:translate(-100%,-50%) scale(1)}.popover .card{border:0;box-shadow:0 .2rem .5rem rgba(48,55,66,.3)}.step{display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;list-style:none;margin:.2rem 0;width:100%}.step .step-item{-ms-flex:1 1 0;flex:1 1 0;margin-top:0;min-height:1rem;position:relative;text-align:center}.step .step-item:not(:first-child)::before{background:#5755d9;content:"";height:2px;left:-50%;position:absolute;top:9px;width:100%}.step .step-item a{color:#5755d9;display:inline-block;padding:20px 10px 0;text-decoration:none}.step .step-item a::before{background:#5755d9;border:.1rem solid #fff;border-radius:50%;content:"";display:block;height:.6rem;left:50%;position:absolute;top:.2rem;transform:translateX(-50%);width:.6rem;z-index:1}.step .step-item.active a::before{background:#fff;border:.1rem solid #5755d9}.step .step-item.active~.step-item::before{background:#dadee4}.step .step-item.active~.step-item a{color:#bcc3ce}.step .step-item.active~.step-item a::before{background:#dadee4}.tab{align-items:center;border-bottom:.05rem solid #dadee4;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin:.2rem 0 .15rem 0}.tab .tab-item{margin-top:0}.tab .tab-item a{border-bottom:.1rem solid transparent;color:inherit;display:block;margin:0 .4rem 0 0;padding:.4rem .2rem .3rem .2rem;text-decoration:none}.tab .tab-item a:focus,.tab .tab-item a:hover{color:#5755d9}.tab .tab-item a.active,.tab .tab-item.active a{border-bottom-color:#5755d9;color:#5755d9}.tab .tab-item.tab-action{-ms-flex:1 0 auto;flex:1 0 auto;text-align:right}.tab .tab-item .btn-clear{margin-top:-.2rem}.tab.tab-block .tab-item{-ms-flex:1 0 0;flex:1 0 0;text-align:center}.tab.tab-block .tab-item a{margin:0}.tab.tab-block .tab-item .badge[data-badge]::after{position:absolute;right:.1rem;top:.1rem;transform:translate(0,0)}.tab:not(.tab-block) .badge{padding-right:0}.tile{align-content:space-between;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-align:start;-ms-flex-line-pack:justify}.tile .tile-action,.tile .tile-icon{-ms-flex:0 0 auto;flex:0 0 auto}.tile .tile-content{-ms-flex:1 1 auto;flex:1 1 auto}.tile .tile-content:not(:first-child){padding-left:.4rem}.tile .tile-content:not(:last-child){padding-right:.4rem}.tile .tile-subtitle,.tile .tile-title{line-height:1.2rem}.tile.tile-centered{align-items:center;-ms-flex-align:center}.tile.tile-centered .tile-content{overflow:hidden}.tile.tile-centered .tile-subtitle,.tile.tile-centered .tile-title{margin-bottom:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.toast{background:rgba(48,55,66,.95);border:.05rem solid #303742;border-color:#303742;border-radius:.1rem;color:#fff;display:block;padding:.4rem;width:100%}.toast.toast-primary{background:rgba(87,85,217,.95);border-color:#5755d9}.toast.toast-success{background:rgba(50,182,67,.95);border-color:#32b643}.toast.toast-warning{background:rgba(255,183,0,.95);border-color:#ffb700}.toast.toast-error{background:rgba(232,86,0,.95);border-color:#e85600}.toast a{color:#fff;text-decoration:underline}.toast a.active,.toast a:active,.toast a:focus,.toast a:hover{opacity:.75}.toast .btn-clear{margin:.1rem}.toast p:last-child{margin-bottom:0}.tooltip{position:relative}.tooltip::after{background:rgba(48,55,66,.95);border-radius:.1rem;bottom:100%;color:#fff;content:attr(data-tooltip);display:block;font-size:.7rem;left:50%;max-width:320px;opacity:0;overflow:hidden;padding:.2rem .4rem;pointer-events:none;position:absolute;text-overflow:ellipsis;transform:translate(-50%,.4rem);transition:opacity .2s,transform .2s;white-space:pre;z-index:300}.tooltip:focus::after,.tooltip:hover::after{opacity:1;transform:translate(-50%,-.2rem)}.tooltip.disabled,.tooltip[disabled]{pointer-events:auto}.tooltip.tooltip-right::after{bottom:50%;left:100%;transform:translate(-.2rem,50%)}.tooltip.tooltip-right:focus::after,.tooltip.tooltip-right:hover::after{transform:translate(.2rem,50%)}.tooltip.tooltip-bottom::after{bottom:auto;top:100%;transform:translate(-50%,-.4rem)}.tooltip.tooltip-bottom:focus::after,.tooltip.tooltip-bottom:hover::after{transform:translate(-50%,.2rem)}.tooltip.tooltip-left::after{bottom:50%;left:auto;right:100%;transform:translate(.4rem,50%)}.tooltip.tooltip-left:focus::after,.tooltip.tooltip-left:hover::after{transform:translate(-.2rem,50%)}@keyframes loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes slide-down{0%{opacity:0;transform:translateY(-1.6rem)}100%{opacity:1;transform:translateY(0)}}.text-primary{color:#5755d9!important}a.text-primary:focus,a.text-primary:hover{color:#4240d4}a.text-primary:visited{color:#6c6ade}.text-secondary{color:#e5e5f9!important}a.text-secondary:focus,a.text-secondary:hover{color:#d1d0f4}a.text-secondary:visited{color:#fafafe}.text-gray{color:#bcc3ce!important}a.text-gray:focus,a.text-gray:hover{color:#adb6c4}a.text-gray:visited{color:#cbd0d9}.text-light{color:#fff!important}a.text-light:focus,a.text-light:hover{color:#f2f2f2}a.text-light:visited{color:#fff}.text-dark{color:#3b4351!important}a.text-dark:focus,a.text-dark:hover{color:#303742}a.text-dark:visited{color:#455060}.text-success{color:#32b643!important}a.text-success:focus,a.text-success:hover{color:#2da23c}a.text-success:visited{color:#39c94b}.text-warning{color:#ffb700!important}a.text-warning:focus,a.text-warning:hover{color:#e6a500}a.text-warning:visited{color:#ffbe1a}.text-error{color:#e85600!important}a.text-error:focus,a.text-error:hover{color:#cf4d00}a.text-error:visited{color:#ff6003}.bg-primary{background:#5755d9!important;color:#fff}.bg-secondary{background:#f1f1fc!important}.bg-dark{background:#303742!important;color:#fff}.bg-gray{background:#f7f8f9!important}.bg-success{background:#32b643!important;color:#fff}.bg-warning{background:#ffb700!important;color:#fff}.bg-error{background:#e85600!important;color:#fff}.c-hand{cursor:pointer}.c-move{cursor:move}.c-zoom-in{cursor:zoom-in}.c-zoom-out{cursor:zoom-out}.c-not-allowed{cursor:not-allowed}.c-auto{cursor:auto}.d-block{display:block}.d-inline{display:inline}.d-inline-block{display:inline-block}.d-flex{display:-ms-flexbox;display:flex}.d-inline-flex{display:-ms-inline-flexbox;display:inline-flex}.d-hide,.d-none{display:none!important}.d-visible{visibility:visible}.d-invisible{visibility:hidden}.text-hide{background:0 0;border:0;color:transparent;font-size:0;line-height:0;text-shadow:none}.text-assistive{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.divider,.divider-vert{display:block;position:relative}.divider-vert[data-content]::after,.divider[data-content]::after{background:#fff;color:#bcc3ce;content:attr(data-content);display:inline-block;font-size:.7rem;padding:0 .4rem;transform:translateY(-.65rem)}.divider{border-top:.05rem solid #f1f3f5;height:.05rem;margin:.4rem 0}.divider[data-content]{margin:.8rem 0}.divider-vert{display:block;padding:.8rem}.divider-vert::before{border-left:.05rem solid #dadee4;bottom:.4rem;content:"";display:block;left:50%;position:absolute;top:.4rem;transform:translateX(-50%)}.divider-vert[data-content]::after{left:50%;padding:.2rem 0;position:absolute;top:50%;transform:translate(-50%,-50%)}.loading{color:transparent!important;min-height:.8rem;pointer-events:none;position:relative}.loading::after{animation:loading .5s infinite linear;background:0 0;border:.1rem solid #5755d9;border-radius:50%;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:.8rem;left:50%;margin-left:-.4rem;margin-top:-.4rem;opacity:1;padding:0;position:absolute;top:50%;width:.8rem;z-index:1}.loading.loading-lg{min-height:2rem}.loading.loading-lg::after{height:1.6rem;margin-left:-.8rem;margin-top:-.8rem;width:1.6rem}.clearfix::after{clear:both;content:"";display:table}.float-left{float:left!important}.float-right{float:right!important}.p-relative{position:relative!important}.p-absolute{position:absolute!important}.p-fixed{position:fixed!important}.p-sticky{position:-webkit-sticky!important;position:sticky!important}.p-centered{display:block;float:none;margin-left:auto;margin-right:auto}.flex-centered{align-items:center;display:-ms-flexbox;display:flex;-ms-flex-align:center;-ms-flex-pack:center;justify-content:center}.m-0{margin:0!important}.mb-0{margin-bottom:0!important}.ml-0{margin-left:0!important}.mr-0{margin-right:0!important}.mt-0{margin-top:0!important}.mx-0{margin-left:0!important;margin-right:0!important}.my-0{margin-bottom:0!important;margin-top:0!important}.m-1{margin:.2rem!important}.mb-1{margin-bottom:.2rem!important}.ml-1{margin-left:.2rem!important}.mr-1{margin-right:.2rem!important}.mt-1{margin-top:.2rem!important}.mx-1{margin-left:.2rem!important;margin-right:.2rem!important}.my-1{margin-bottom:.2rem!important;margin-top:.2rem!important}.m-2{margin:.4rem!important}.mb-2{margin-bottom:.4rem!important}.ml-2{margin-left:.4rem!important}.mr-2{margin-right:.4rem!important}.mt-2{margin-top:.4rem!important}.mx-2{margin-left:.4rem!important;margin-right:.4rem!important}.my-2{margin-bottom:.4rem!important;margin-top:.4rem!important}.p-0{padding:0!important}.pb-0{padding-bottom:0!important}.pl-0{padding-left:0!important}.pr-0{padding-right:0!important}.pt-0{padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.py-0{padding-bottom:0!important;padding-top:0!important}.p-1{padding:.2rem!important}.pb-1{padding-bottom:.2rem!important}.pl-1{padding-left:.2rem!important}.pr-1{padding-right:.2rem!important}.pt-1{padding-top:.2rem!important}.px-1{padding-left:.2rem!important;padding-right:.2rem!important}.py-1{padding-bottom:.2rem!important;padding-top:.2rem!important}.p-2{padding:.4rem!important}.pb-2{padding-bottom:.4rem!important}.pl-2{padding-left:.4rem!important}.pr-2{padding-right:.4rem!important}.pt-2{padding-top:.4rem!important}.px-2{padding-left:.4rem!important;padding-right:.4rem!important}.py-2{padding-bottom:.4rem!important;padding-top:.4rem!important}.s-rounded{border-radius:.1rem}.s-circle{border-radius:50%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-normal{font-weight:400}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-large{font-size:1.2em}.text-small{font-size:.9em}.text-tiny{font-size:.8em}.text-muted{opacity:.8}.text-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-clip{overflow:hidden;text-overflow:clip;white-space:nowrap}.text-break{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;word-break:break-word;word-wrap:break-word} \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/license_dump/static/spectre-0.5.9.min.css.ABOUT b/tests/licensedcode/data/license_db/license_dump/static/spectre-0.5.9.min.css.ABOUT new file mode 100644 index 00000000000..97475b57377 --- /dev/null +++ b/tests/licensedcode/data/license_db/license_dump/static/spectre-0.5.9.min.css.ABOUT @@ -0,0 +1,13 @@ +about_resource: spectre-0.5.9.min.css +name: spectre.css +version: 0.5.9 +download_url: https://github.com/picturepan2/spectre/archive/v0.5.9.zip +description: 'Spectre.css: A lightweight, responsive and modern CSS framework' +homepage_url: http://picturepan2.github.io/spectre +license_expression: mit +attribute: yes +package_url: pkg:npm/spectre.css@0.5.9 +licenses: + - key: mit + name: MIT License + file: mit.LICENSE diff --git a/tests/licensedcode/data/license_db/licenses/bash-exception-gpl.LICENSE b/tests/licensedcode/data/license_db/licenses/bash-exception-gpl.LICENSE new file mode 100644 index 00000000000..83afd92798a --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bash-exception-gpl.LICENSE @@ -0,0 +1,20 @@ +--- +key: bash-exception-gpl +short_name: Bash exception to GPL +name: Bash exception to GPL +category: Copyleft +owner: Free Software Foundation (FSF) +notes: this used with GPL 1.0 and 2.0. It was removed from the V3 text https://git.savannah.gnu.org/cgit/bash.git/commit/COPYING?id=3185942a5234e26ab13fa02f9c51d340cec514f8 +is_exception: yes +spdx_license_key: LicenseRef-scancode-bash-exception-gpl-2.0 +text_urls: + - https://git.savannah.gnu.org/cgit/bash.git/plain/COPYING?h=bash-3.0-rc1&id=dd9e6dfa23d0dae4888f11fb8c6a27bc36d1b283 +--- + +The Free Software Foundation has exempted Bash from the requirement of +Paragraph 2c of the General Public License. This is to say, there is +no requirement for Bash to print a notice when it is started +interactively in the usual way. We made this exception because users +and standards expect shells not to print such messages. This +exception applies to any program that serves as a shell and that is +based primarily on Bash as opposed to other GNU software. \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/binary-linux-firmware.LICENSE b/tests/licensedcode/data/license_db/licenses/binary-linux-firmware.LICENSE new file mode 100644 index 00000000000..78249472485 --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/binary-linux-firmware.LICENSE @@ -0,0 +1,36 @@ +--- +key: binary-linux-firmware +short_name: Binary-Only Linux Firmware License +name: Binary-Only Linux Firmware License +category: Proprietary Free +owner: Unspecified +homepage_url: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/ +spdx_license_key: LicenseRef-scancode-binary-linux-firmware +--- + +Redistribution. Redistribution and use in binary form, without +modification, are permitted provided that the following conditions are +met: + +* Redistributions must reproduce the above copyright notice and the +following disclaimer in the documentation and/or other materials +provided with the distribution. + +* Neither the name of the Copyright Holder nor the names of its +suppliers may be used to endorse or promote products derived from this +software without specific prior written permission. + +* No reverse engineering, decompilation, or disassembly of this software +is permitted. + +DISCLAIMER. 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/tests/licensedcode/data/license_db/licenses/bison-exception-2.0.LICENSE b/tests/licensedcode/data/license_db/licenses/bison-exception-2.0.LICENSE new file mode 100644 index 00000000000..36072ab7ffa --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bison-exception-2.0.LICENSE @@ -0,0 +1,28 @@ +--- +key: bison-exception-2.0 +short_name: Bison exception to GPL 2.0 or later +name: Bison exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: LicenseRef-scancode-bison-exception-2.0 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +standard_notice: | + This library 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, 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 General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this library; see the file COPYING. If not, write to the Free Software + Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + As a special exception, when this file is copied by Bison into a Bison + output file, you may use that output file without restriction. This special + exception was added by the Free Software Foundation in version 1.24 of + Bison. +--- + +As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/bison-exception-2.2.LICENSE b/tests/licensedcode/data/license_db/licenses/bison-exception-2.2.LICENSE new file mode 100644 index 00000000000..6b494b3cc7c --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bison-exception-2.2.LICENSE @@ -0,0 +1,48 @@ +--- +key: bison-exception-2.2 +short_name: Bison 2.2 exception to GPL 2.0 or later +name: Bison 2.2 exception to GPL 2.0 or later +category: Copyleft Limited +owner: Free Software Foundation (FSF) +is_exception: yes +spdx_license_key: Bison-exception-2.2 +faq_url: http://www.gnu.org/software/bison/manual/bison.html#Conditions +other_urls: + - http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id=193d7c7054ba7197b0789e14965b739162319b5e#n141 +standard_notice: | + 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, or (at your option) any later + version. + This program is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + more details. + You should have received a copy of the GNU General Public License along + with this program; if not, write to the + Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + As a special exception, you may create a larger work that contains part or + all of the Bison parser skeleton and distribute that work under terms of + your choice, so long as that work isn't itself a parser generator using the + skeleton or a modified version thereof as a parser skeleton. Alternatively, + if you modify or redistribute the parser skeleton itself, you may (at your + option) remove this special exception, which will cause the skeleton and + the resulting Bison output files to be licensed under the GNU General + Public License without this special exception. + This special exception was added by the Free Software Foundation in version + 2.2 of Bison. +--- + +As a special exception, you may create a larger work that contains part or all +of the Bison parser skeleton and distribute that work under terms of your +choice, so long as that work isn't itself a parser generator using the skeleton +or a modified version thereof as a parser skeleton. Alternatively, if you +modify or redistribute the parser skeleton itself, you may (at your option) +remove this special exception, which will cause the skeleton and the resulting +Bison output files to be licensed under the GNU General Public License without +this special exception. + +This special exception was added by the Free Software Foundation in version 2.2 +of Bison. \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/bittorrent-1.0.LICENSE b/tests/licensedcode/data/license_db/licenses/bittorrent-1.0.LICENSE new file mode 100644 index 00000000000..44d63e4365b --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bittorrent-1.0.LICENSE @@ -0,0 +1,348 @@ +--- +key: bittorrent-1.0 +short_name: BitTorrent 1.0 +name: BitTorrent Open Source License 1.0 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +spdx_license_key: BitTorrent-1.0 +text_urls: + - http://web.archive.org/web/20050209224501/http://www.bittorrent.com/license/ + - http://www.bittorrent.com/license/ + - https://spdx.org/licenses/BitTorrent-1.0.html +other_urls: + - http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1=1.1&r2=1.1.1.1&diff_format=s +ignorable_urls: + - http://www.bittorrent.com/license +--- + +BitTorrent Open Source License + +Version 1.0 + +This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as +well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by +BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. +Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which +you may use, copy, distribute or modify Licensed Product. + +Preamble + +This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this +Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the +License and not this Preamble. + +This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the +"JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been +dropped. + +This License provides that: + +1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software +distribution containing programs from several different sources. No royalty or other fee is required. + +2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous +Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source +Code" are defined in the License.) + +3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. +(The term "Derivative Works" is defined in the License.) + +4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you +make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you +must make the Source Code of your Modifications available to others. + +5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty +whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly +or causes you any injury or damages. + +6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or +for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code. + +7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any +terms of the License, your rights to the Licensed Product under this License automatically terminate. + +You may use this License to distribute your own Derivative Works, in which case the provisions of this License will +apply to your Derivative Works just as they do to the original Licensed Product. + +Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a +proprietary license of your choice. If you use any license other than this License, however, you must continue to +fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those +portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + +New versions of this License may be published from time to time. You may choose to continue to use the license +terms in this version of the License or those from the new version. However, only the Licensor has the right to +change the License terms as they apply to the Licensed Product. + +This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and +the definitions are repeated for your convenience in a Glossary at the end of the License. + + +License Terms + +1. Grant of License From Licensor. Licensor hereby grants you a world-wide, royalty-free, non-exclusive +license, subject to third party intellectual property claims, to do the following: + +a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such +Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as +part of Derivative Works. + +b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for +sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any +such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of +Modifications or portions thereof or Derivative Works thereof. + + +2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the +substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of +Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications +that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity +who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a +world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the +following: + + 1. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such +Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as +part of Derivative Works. + + 2. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for +sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any +such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of +Modifications or portions thereof or Derivative Works thereof. + + +3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, +copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as +expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete +from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is +granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. +Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this +License any code that Licensor otherwise would have a right to license. + + +4. Your Obligations Regarding Distribution. + +a. Application of This License to Your Modifications. As an express condition for your use of the Licensed +Product, you hereby agree that any Modifications that you create or to which you contribute, and which you +distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications +that you create or to which you contribute may be distributed only under the terms of this License or a future +version of this License released under Section 7. You must include a copy of this License with every copy of the +Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of +the Licensed Product or Modifications that alter or restrict the applicable version of this License or the +recipients' rights hereunder. However, you may include an additional document offering the additional rights +described in Section 4(d). + +b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of +the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any +executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development +community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any +version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) +months after the date it initially became available, or at least six (6) months after a subsequent version of said +Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code +version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + +c. Intellectual Property Matters. + + i. Third Party Claims. If you have knowledge that a license to a third +party's intellectual property right is required to exercise the rights granted by this License, you must include a +text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in +sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any +Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make +available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) +reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been +obtained. + + ii. Contributor APIs. If your Modifications include an application +programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement +that API, you must also include this information in the LEGAL file. + + iii. Representations. You represent that, except as disclosed pursuant to +4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have +sufficient rights to grant the rights conveyed by this License. + +d. Required Notices. You must duplicate this License in any documentation you provide along with the Source +Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe +recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") +in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, +you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source +Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) +where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, +support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so +only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such +warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the +Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of +warranty, support, indemnity or liability terms you offer. + +e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a +license of your choice that may contain terms different from this License provided (i) you have satisfied the +requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the +executable version, related documentation and collateral materials stating that the Source Code version of the +Licensed Product is available under the terms of this License, including a description of how and where you have +fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License +are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every +Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + +f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the +Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, +with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that +consist of the Licensed Product or any Modifications thereto. + + +5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the +terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or +regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the +statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the +code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included +with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such +description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to +understand it. + + +6. Application of This License. This License applies to code to which Licensor or Contributor has attached the +Notice in Exhibit A, which is incorporated herein by this reference. + + +7. Versions of This License. + +a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + +b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, +you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product +under the terms of any subsequent version of the License published by Licensor. No one other than Licensor has the +right to modify the terms applicable to Licensed Product created under this License. + +c. Derivative Works of this License. If you create or use a modified version of this License, which you may do +only in order to apply it to software that is not already a Licensed Product under this License, you must rename your +license so that it is not confusingly similar to this License, and must make it clear that your license contains +terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any +Contributor. + + +8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE +OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND +PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND +NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS +DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED +HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + + +9. Termination. + +a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate +automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of +becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any +termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this +License, shall survive. + +b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent +infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or +Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product +directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections +1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice +Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable +reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your +litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable +royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not +withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of +said Notice Period. + +c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging +that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or +settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses +granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of +any payment or license. + +d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all +end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you +or any distributor hereunder prior to termination shall survive termination. + + +10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), +CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER +OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF +ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR +MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE +POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY +RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO +NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY +NOT APPLY TO YOU. + + +11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and +damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with +Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or +shall be deemed to constitute any admission of liability. + + +12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. +2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such +terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through +227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth +herein. + + +13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any +provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary +to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable +law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that any litigation +relating to this license shall be subject to the jurisdiction of the Federal Courts of the Northern District of +California or the Superior Court of the County of Santa Clara, California (as appropriate), with venue lying in Santa +Clara County, California, with the losing party responsible for costs including, without limitation, court costs and +reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the +International Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial in +any litigation concerning Licensed Product or this License. Any law or regulation that provides that the language of +a contract shall be construed against the drafter shall not apply to this License. + + +14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an +individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a +future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is +controlled by, or is under common control with you. For 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. + + +15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated +here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined +term is first used is shown in parentheses. + +Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. +(See Section 2) + +Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + +License: This BitTorrent Open Source License. (See first paragraph of License) + +Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes +all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + +Licensor: BitTorrent, Inc. (See first paragraph of License) + +Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed +Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + +Notice: The notice contained in Exhibit A. (See Section 4(e)) + +Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained +therein, plus any associated interface definition files, scripts used to control compilation and installation of an +executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See +Section 1(a)) + +You: This term is defined in Section 14 of this License. + + +EXHIBIT A + +The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or +any hereto. Contributors to any Modifications may add their own copyright notices to identify their own +contributions. + +License: + +The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not +copy or use this file, in either source code or executable form, except in compliance with the License. You may +obtain a copy of the License at http://www.bittorrent.com/license/. + +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express +or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/bittorrent-1.1.LICENSE b/tests/licensedcode/data/license_db/licenses/bittorrent-1.1.LICENSE new file mode 100644 index 00000000000..ba47aa5f4d8 --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bittorrent-1.1.LICENSE @@ -0,0 +1,159 @@ +--- +key: bittorrent-1.1 +short_name: BitTorrent 1.1 +name: BitTorrent Open Source License 1.1 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: https://web.archive.org/web/20080213154112/http://www.bittorrent.com/bittorrent-open-source-license +notes: | + The link http://www.bittorrent.com/license/ is dead, so there is no live + text containing the license terms except at + http://web.archive.org/web/20090609222926/http://www.bittorrent.com/legal/bittorrent-open-source-license +spdx_license_key: BitTorrent-1.1 +text_urls: + - http://www.bittorrent.com/legal/bittorrent-open-source-license +other_urls: + - http://directory.fsf.org/wiki/License:BitTorrentOSL1.1 +ignorable_urls: + - http://www.bittorrent.com/license +--- + +BitTorrent Open Source License + +Version 1.1 + +This BitTorrent Open Source License (the "License") applies to the BitTorrent client and related software products as well as any updates or maintenance releases of that software ("BitTorrent Products") that are distributed by BitTorrent, Inc. ("Licensor"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. + +Preamble + +This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + +This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + +This License provides that: + +1. You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + +2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + +3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + +4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + +5. You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor?s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + +You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + +6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + +7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + +You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + +Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + +New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + +This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + +License Terms + +1. Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + +a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + +b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + +2. Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + +a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + +b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + +3. Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + +4. Your Obligations Regarding Distribution. + +a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + +b. Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + +c. Intellectual Property Matters. + +i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + +ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + +iii. Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + +d. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + +e. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + +f. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + +g. Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor?s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party?s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party?s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor?s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + +5. Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + +6. Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + +7. Versions of This License. + +a. New Versions. Licensor may publish from time to time revised and/or new versions of the License. + +b. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + +c. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + +8. Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +9. Termination. + +a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the ?WHOIS? database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to complye with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + +b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + +c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + +d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + +10. Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +11. Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + +12. U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + +13. Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + +14. Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + +15. Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + +Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + +Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + +License: This BitTorrent Open Source License. (See first paragraph of License) + +Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + +Licensor: BitTorrent, Inc. (See first paragraph of License) + +Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + +Notice: The notice contained in Exhibit A. (See Section 4(e)) + +Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + +You: This term is defined in Section 14 of this License. + +EXHIBIT A + +The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + +License: + +The contents of this file are subject to the BitTorrent Open Source License Version 1.0 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/bittorrent-1.2.LICENSE b/tests/licensedcode/data/license_db/licenses/bittorrent-1.2.LICENSE new file mode 100644 index 00000000000..59d344902c1 --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bittorrent-1.2.LICENSE @@ -0,0 +1,97 @@ +--- +key: bittorrent-1.2 +short_name: BitTorrent 1.2 +name: BitTorrent Open Source License 1.2 +category: Copyleft Limited +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/license/ +spdx_license_key: LicenseRef-scancode-bittorrent-1.2 +ignorable_urls: + - http://www.bittorrent.com/license +--- + +BitTorrent Open Source License +Version 1.2 + +This BitTorrent Open Source License (the "License") applies to certain software that is distributed by BitTorrent, Inc. ("Licensor") specifically under this license ("BitTorrent Products"). Any BitTorrent Product licensed pursuant to this License is a Licensed Product. Licensed Product, in its entirety, is protected by U.S. copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product. +Preamble + +This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. + +This License complies with the Open Source Definition and is derived from the Jabber Open Source License 1.0 (the "JOSL"), which has been approved by Open Source Initiative. Sections 4(c) and 4(f)(iii) from the JOSL have been deleted. + +This License provides that: + + You may use or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required. + Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.) + You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.) + By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others free of charge and without a royalty. + You may sell, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any Contributor, provided that such executable versions contain your or another Contributor’s material Modifications. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications, you may not sell, accept donations or otherwise receive compensation for such executable. + You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages. + If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for, sell, accept donations or otherwise receive compensation for the Source Code. + If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate. + You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product. + +Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications. + +New versions of this License may be published from time to time in connection with new versions of a Licensed Product or otherwise. You may choose to continue to use the license terms in this version of the License for the Licensed Product that was originally licensed hereunder, however, the new versions of this License will at all times apply to new versions of the Licensed Product released by Licensor after the release of the new version of this License. Only the Licensor has the right to change the License terms as they apply to the Licensed Product. + +This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License. + +License Terms + + Grant of License From Licensor. Subject to the terms and conditions of this License, Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by a Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + Grant of License to Modifications From Contributor. "Modifications" means any additions to or deletions from the substance or structure of (i) a file containing a Licensed Product, or (ii) any new file that contains any part of a Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. Subject to the terms and conditions of this License, By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following: + Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works. + Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof. + Exclusions From License Grant. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license. As an express condition for your use of the Licensed Product, you hereby agree that you will not, without the prior written consent of Licensor, use any trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. For the avoidance of doubt and without limiting the foregoing, you hereby agree that you will not use or display any trademark of Licensor or any Contributor in any domain name, directory filepath, advertisement, link or other reference to you in any manner or in any media. + Your Obligations Regarding Distribution. + Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(d). + Availability of Source Code. You must make available, without charge, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for as long as any executable or other form of the Licensed Product is distributed by you. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. + Intellectual Property Matters. + Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained. + Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file. + Representations. You represent that, except as disclosed pursuant to 4(c)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License. + Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer. + Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(d) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), and (iii) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer. + Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto. + Compensation for Distribution of Executable Versions of Licensed Products, Modifications or Derivative Works. Notwithstanding any provision of this License to the contrary, by distributing, selling, licensing, sublicensing or otherwise making available any Licensed Product, or Modification or Derivative Work thereof, you and Licensor hereby acknowledge and agree that you may sell, license or sublicense for a fee, accept donations or otherwise receive compensation for executable versions of a Licensed Product, without paying a royalty or other fee to the Licensor or any other Contributor, provided that such executable versions (i) contain your or another Contributor’s material Modifications, or (ii) are otherwise material Derivative Works. For purposes of this License, an executable version of the Licensed Product will be deemed to contain a material Modification, or will otherwise be deemed a material Derivative Work, if (a) the Licensed Product is modified with your own or a third party’s software programs or other code, and/or the Licensed Product is combined with a number of your own or a third party’s software programs or code, respectively, and (b) such software programs or code add or contribute material value, functionality or features to the License Product. For the avoidance of doubt, to the extent your executable version of a Licensed Product does not contain your or another Contributor’s material Modifications or is otherwise not a material Derivative Work, in each case as contemplated herein, you may not sell, license or sublicense for a fee, accept donations or otherwise receive compensation for such executable. Additionally, without limitation of the foregoing and notwithstanding any provision of this License to the contrary, you cannot charge for, sell, license or sublicense for a fee, accept donations or otherwise receive compensation for the Source Code. + Inability to Comply Due to Statute or Regulation. If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it. + Application of This License. This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference. + Versions of This License. + New Versions. Licensor may publish from time to time revised and/or new versions of the License. + Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version, provided that any such license be in full force and effect at the time, and has not been revoked or otherwise terminated. You may also choose to use such Licensed Product under the terms of any subsequent version (but not any prior version) of the License published by Licensor. No one other than Licensor has the right to modify the terms applicable to Licensed Product created under this License. + Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor. + Disclaimer of Warranty. LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + Termination. + Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within ten (10) days of being notified of the breach by the Licensor. For purposes of this provision, proof of delivery via email to the address listed in the WHOIS database of the registrar for any website through which you distribute or market any Licensed Product, or to any alternate email address which you designate in writing to the Licensor, shall constitute sufficient notification. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license so long as they continue to comply with the terms of this License. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. + Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as Respondent) alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonable royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period. + Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license. + No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and resellers) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination. + Limitation of Liability. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + Responsibility for Claims. As between Licensor and Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License. You agree to work with Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. + U.S. Government End Users. The Licensed Product is a commercial item, as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software and commercial computer software documentation, as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Licensed Product with only those rights set forth herein. + Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. You expressly agree that in any litigation relating to this license the losing party shall be responsible for costs including, without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. + Definition of You in This License. You throughout this License, whether in upper or lower case, means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 7. For legal entities, you includes any entity that controls, is controlled by, is under common control with, or affiliated with, you. For 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 are responsible for advising any affiliated entity of the terms of this License, and that any rights or privileges derived from or obtained by way of this License are subject to the restrictions outlined herein. + Glossary. All defined terms in this License that are used in more than one Section of this License are repeated here, in alphabetical order, for the convenience of the reader. The Section of this License in which each defined term is first used is shown in parentheses. + Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2) + Derivative Works: That term as used in this License is defined under U.S. copyright law. (See Section 1(b)) + License: This BitTorrent Open Source License. (See first paragraph of License) + Licensed Product: Any BitTorrent Product licensed pursuant to this License. The term "Licensed Product" includes all previous Modifications from any Contributor that you receive. (See first paragraph of License and Section 2) + Licensor: BitTorrent, Inc. (See first paragraph of License) + Modifications: Any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2) + Notice: The notice contained in Exhibit A. (See Section 4(e)) + Source Code: The preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product. (See Section 1(a)) + You: This term is defined in Section 14 of this License. + +EXHIBIT A + +The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any hereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions. + +License: + +The contents of this file are subject to the BitTorrent Open Source License Version 1.2 (the License). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.bittorrent.com/license/. + +Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/bittorrent-eula.LICENSE b/tests/licensedcode/data/license_db/licenses/bittorrent-eula.LICENSE new file mode 100644 index 00000000000..0ad7ac04520 --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bittorrent-eula.LICENSE @@ -0,0 +1,50 @@ +--- +key: bittorrent-eula +short_name: BitTorrent EULA +name: BitTorrent End User License Agreement (EULA) +category: Proprietary Free +owner: BitTorrent, Inc. +homepage_url: http://www.bittorrent.com/legal/eula +spdx_license_key: LicenseRef-scancode-bittorrent-eula +ignorable_urls: + - http://www.bittorrent.com/legal/eula + - http://www.bittorrent.com/legal/terms-of-use +ignorable_emails: + - legal@bittorrent.com +--- + +End User License Agreement (EULA) + +By accepting this agreement or by installing BitTorrent or uTorrent or other software offered by or on behalf of BitTorrent, Inc. (the "Software") or by clicking "Install", you agree to the following terms, notwithstanding anything to the contrary in this agreement. + +The Software is a peer-to-peer file distribution application distributed by BitTorrent, Inc. + +License +Subject to your compliance with these terms and conditions, BitTorrent, Inc. grants you a royalty-free, non-exclusive, non-transferable license to use the Software, solely for your personal, non-commercial purposes. BitTorrent, Inc. reserves all rights in the Software not expressly granted to you here. + +Restrictions +The source code, design, and structure of the Software are trade secrets. You will not disassemble, decompile, or reverse engineer it, in whole or in part, except to the extent expressly permitted by law, or distribute it. You will not use the Software for illegal purposes. You will comply with all export laws. The Software is licensed, not sold. + +The BitTorrent Technologies +Downloading and Updates + +The Software downloads only those files that are both authorized by you for download (specifically or by category or subscription), except that the Software automatically updates itself. + +Automatic Uploading + +The Software accelerates downloads by enabling your computer to grab pieces of files from other BitTorrent users simultaneously. Your use of the Software to download files will, in turn, enable other users to download pieces of those files from you, thereby maximizing download speeds for all users. In the Software, only files that you are explicitly downloading or sharing or have downloaded or shared through BitTorrent will be made available to others. You consent to other users' use of your network connection to download portions of such files from you. At any time, you may uninstall the Software through the Add/Remove Programs control panel utility. In addition, for the BitTorrent or uTorrent software, you can control the Software in multiple ways through its user interface without affecting any files you have already downloaded. + +Disclaimer of Warranty +BitTorrent, Inc. disclaims any responsibility for harm resulting from the Software or any software or content downloaded using the Software, whether or not BitTorrent, Inc. approved such software or content. BitTorrent, Inc. approval does not guarantee that software or content from an approved partner will function, sound, or appear as offered or hoped, or be complete, accurate, or free from bugs, errors, viruses, or other harmful content. BitTorrent, Inc expressly disclaims all warranties and conditions, express or implied, including any implied warranties and conditions of merchantability, fitness for a particular purpose, and noninfringement, and any warranties and conditions arising out of course of dealing or usage of trade regarding the Software or any software or content you download using the Software. No advice or information, whether oral or written, obtained from BitTorrent, Inc or elsewhere will create any warranty or condition not expressly stated in this agreement. Some jurisdictions do not allow certain limitations on implied warranties, so the above limitation may not apply to you to its full extent. + +Limitation of Liability +BitTorrent, Inc's total liability to you from all causes of action and under all theories of liability will be limited to $50.00. In no event and under no theory of liability will BitTorrent, Inc be liable to you for any special, incidental, exemplary, or consequential damages arising out of or in connection with this agreement or the software whether or not BitTorrent, Inc has been advised of the possibility of such damages. The foregoing limitations will survive even if any limited remedy specified is found to have failed of its essential purpose. Some jurisdictions do not allow the limitation or exclusion of liability for incidental or consequential damages, so the above limitation or exclusion may not apply to you to its full extent. + +U.S. Government Users +The Software is "commercial computer software" any use of which by or on behalf of the U.S. Government is subject to the restrictions herein. Manufactured by BitTorrent, Inc. + +General +These BitTorrent, Inc. terms will be governed by and construed in accordance with the laws of California, USA, without regard to conflicts of law rules. The United Nations Convention on Contracts for the International Sale of Goods will not apply. The failure by either party to enforce any provision will not constitute a waiver. Any waiver, modification, or amendment of the BitTorrent, Inc. terms will be effective only if signed. If any provision is held to be unenforceable, it will be enforced to the maximum extent possible and will not diminish other provisions. BitTorrent, Inc. may make changes to these terms from time to time. When these changes are made, BitTorrent, Inc. will make a new copy of the terms available at www.bittorrent.com/legal/eula. You understand and agree that if you use the Software after the date on which the terms have changed, BitTorrent, Inc. will treat your use as acceptance of the updated terms. You agree that BitTorrent, Inc. may provide you with notices, including those regarding changes to the terms, by postings on www.bittorrent.com/legal/eula. This and the Terms of Use at www.bittorrent.com/legal/terms-of-use are BitTorrent, Inc.'s complete and exclusive understanding with you regarding your use of the Software as an end user. + +Contact +If you have any questions, contact us at legal@bittorrent.com. \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/boost-1.0.LICENSE b/tests/licensedcode/data/license_db/licenses/boost-1.0.LICENSE new file mode 100644 index 00000000000..33900e4e74d --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/boost-1.0.LICENSE @@ -0,0 +1,43 @@ +--- +key: boost-1.0 +short_name: Boost 1.0 +name: Boost Software License 1.0 +category: Permissive +owner: Boost +homepage_url: http://www.boost.org/users/license.html +notes: | + Per SPDX.org, this version was released 17 August 2003 This license is OSI + certifified. +spdx_license_key: BSL-1.0 +text_urls: + - http://www.boost.org/LICENSE_1_0.txt +osi_url: http://www.opensource.org/licenses/bsl1.0.html +other_urls: + - http://www.boost.org/users/license.html + - http://www.opensource.org/licenses/BSL-1.0 + - https://opensource.org/licenses/BSL-1.0 +--- + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +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, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN 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/tests/licensedcode/data/license_db/licenses/boost-original.LICENSE b/tests/licensedcode/data/license_db/licenses/boost-original.LICENSE new file mode 100644 index 00000000000..20d2144f554 --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/boost-original.LICENSE @@ -0,0 +1,24 @@ +--- +key: boost-original +short_name: Boost Original +name: Boost Original +category: Permissive +owner: Boost +homepage_url: http://boost.org +notes: "This is the original notice for Boost prior to the publication of the\nboost-1.0 license\ + \ in 2003. Several boost files still carry this license adn\ncould not be updated to the\ + \ boost-1.0 license. This license is aslo found\nin the AntiGrain Geometry component version\ + \ 2.4. \nFor an example of use in historical Boost, see \nhttps://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp\n\ + For an example of use in the current Boost, see \nhttps://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp" +spdx_license_key: LicenseRef-scancode-boost-original +text_urls: + - https://github.com/boostorg/rational/blob/0fe0beca5397c812c4f85a7de0d0769de59e12e0/include/boost/rational.hpp + - https://github.com/boostorg/rational/blob/develop/include/boost/rational.hpp +other_urls: + - http://www.antigrain.com/license/index.html#toc0002 +--- + +Permission to copy, use, modify, sell and distribute this software is granted +provided this copyright notice appears in all copies. This software is provided "as +is" without express or implied warranty, and with no claim as to its suitability for +any purpose. \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/bootloader-exception.LICENSE b/tests/licensedcode/data/license_db/licenses/bootloader-exception.LICENSE new file mode 100644 index 00000000000..e70efc4902b --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bootloader-exception.LICENSE @@ -0,0 +1,74 @@ +--- +key: bootloader-exception +short_name: Bootloader Distribution Exception to GPL 2.0 +name: Bootloader Distribution Exception to GPL 2.0 or later +category: Copyleft Limited +owner: PyInstaller Project +homepage_url: https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt +is_exception: yes +spdx_license_key: Bootloader-exception +other_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt +standard_notice: | + ================================ + The PyInstaller licensing terms + ================================ + Copyright (c) 2010-2018, PyInstaller Development Team + Copyright (c) 2005-2009, Giovanni Bajo + Based on previous work under copyright (c) 2002 McMillan Enterprises, Inc. + PyInstaller is licensed 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. + Bootloader Exception + -------------------- + In addition to the permissions in the GNU General Public License, the + authors give you unlimited permission to link or embed compiled bootloader + and related files into combinations with other programs, and to distribute + those combinations without any restriction coming from the use of those + files. (The General Public License restrictions do apply in other respects; + for example, they cover modification of the files, and distribution when + not linked into a combine executable.) + Bootloader and Related Files + ---------------------------- + Bootloader and related files are files which are embedded within the + final executable. This includes files in directories: + ./bootloader/ + ./PyInstaller/loader + About the PyInstaller Development Team + -------------------------------------- + The PyInstaller Development Team is the set of contributors + to the PyInstaller project. A full list with details is kept + in the documentation directory, in the file + ``doc/CREDITS.rst``. + The core team that coordinates development on GitHub can be found here: + https://github.com/pyinstaller/pyinstaller. As of 2015, it consists of: + * Hartmut Goebel + * Martin Zibricky + * David Vierra + * David Cortesi + Our Copyright Policy + -------------------- + PyInstaller uses a shared copyright model. Each contributor maintains + copyright over their contributions to PyInstaller. But, it is important to + note that these contributions are typically only changes to the repositories. + Thus, the PyInstaller source code, in its entirety is not the copyright of + any single person or institution. Instead, it is the collective copyright of + the entire PyInstaller Development Team. If individual contributors want to + maintain a record of what changes/contributions they have specific copyright + on, they should indicate their copyright in the commit message of the + change, when they commit the change to the PyInstaller repository. + With this in mind, the following banner should be used in any source code + file to indicate the copyright and license terms: + #-------------------------------------------------------------------------- + # Copyright (c) 2005-20l5, PyInstaller Development Team. + # + # Distributed under the terms of the GNU General Public License with + # exception for distributing bootloader. + # + # The full license is in the file COPYING.txt, distributed with this software. + #-------------------------------------------------------------------------- +--- + +Bootloader Exception + +In addition to the permissions in the GNU General Public License, the authors give you unlimited permission to link or embed compiled bootloader and related files into combinations with other programs, and to distribute those combinations without any restriction coming from the use of those files. (The General Public License restrictions do apply in other respects; for example, they cover modification of the files, and distribution when not linked into a combined executable.) \ No newline at end of file diff --git a/tests/licensedcode/data/license_db/licenses/bsla.LICENSE b/tests/licensedcode/data/license_db/licenses/bsla.LICENSE new file mode 100644 index 00000000000..7d232013bc8 --- /dev/null +++ b/tests/licensedcode/data/license_db/licenses/bsla.LICENSE @@ -0,0 +1,22 @@ +--- +key: bsla +short_name: BSLA +name: Berkeley Software License Agreement +category: Permissive +owner: Regents of the University of California +spdx_license_key: LicenseRef-scancode-bsla +ignorable_authors: + - the University of California, Berkeley +--- + +Redistribution and use in source and binary forms are permitted +provided that the above copyright notice and this paragraph are +duplicated in all such forms and that any documentation, +advertising materials, and other materials related to such +distribution and use acknowledge that the software was developed +by the University of California, Berkeley. The name of the +University 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 WITHOUT ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/tests/licensedcode/data/mach_aho/rtos_exact/gpl-2.0-freertos.RULE b/tests/licensedcode/data/mach_aho/rtos_exact/gpl-2.0-freertos.RULE index 339328239c4..76e16a07762 100644 --- a/tests/licensedcode/data/mach_aho/rtos_exact/gpl-2.0-freertos.RULE +++ b/tests/licensedcode/data/mach_aho/rtos_exact/gpl-2.0-freertos.RULE @@ -1,3 +1,8 @@ +--- +license_expression: gpl-2.0-freertos +is_license_text: yes +--- + The FreeRTOS source code is licensed by a modified GNU General Public License - the modification taking the form of an exception. diff --git a/tests/licensedcode/data/mach_aho/rtos_exact/gpl-2.0-freertos.yml b/tests/licensedcode/data/mach_aho/rtos_exact/gpl-2.0-freertos.yml deleted file mode 100644 index e1fd1326b92..00000000000 --- a/tests/licensedcode/data/mach_aho/rtos_exact/gpl-2.0-freertos.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0-freertos -is_license_text: yes \ No newline at end of file diff --git a/tests/licensedcode/data/match_filter/rules/rule1.RULE b/tests/licensedcode/data/match_filter/rules/rule1.RULE index 75a2802f108..bef881532e6 100644 --- a/tests/licensedcode/data/match_filter/rules/rule1.RULE +++ b/tests/licensedcode/data/match_filter/rules/rule1.RULE @@ -1,6 +1,10 @@ -The GNU C Library is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by the Free -Software Foundation; either version 2.1 of the License, or (at your option) any later -version. - -The GNU C Library is distributed in the hope that it will be useful, +--- +license_expression: lgpl-2.1-plus +--- + +The GNU C Library is free software; you can redistribute it and/or modify it +under the terms of the GNU Lesser General Public License as published by the Free +Software Foundation; either version 2.1 of the License, or (at your option) any later +version. + +The GNU C Library is distributed in the hope that it will be useful, \ No newline at end of file diff --git a/tests/licensedcode/data/match_filter/rules/rule1.yml b/tests/licensedcode/data/match_filter/rules/rule1.yml deleted file mode 100644 index ac89a953d38..00000000000 --- a/tests/licensedcode/data/match_filter/rules/rule1.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: lgpl-2.1-plus diff --git a/tests/licensedcode/data/match_filter/rules/rule2.RULE b/tests/licensedcode/data/match_filter/rules/rule2.RULE index 1e0e0ac0eb2..0aece598787 100644 --- a/tests/licensedcode/data/match_filter/rules/rule2.RULE +++ b/tests/licensedcode/data/match_filter/rules/rule2.RULE @@ -1,6 +1,10 @@ -License as published by the Free Software Foundation; either version 2.1 of the -License, or (at your option) any later version. - -The GNU C 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. +--- +license_expression: lgpl-2.1-plus +--- + +License as published by the Free Software Foundation; either version 2.1 of the +License, or (at your option) any later version. + +The GNU C 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. \ No newline at end of file diff --git a/tests/licensedcode/data/match_filter/rules/rule2.yml b/tests/licensedcode/data/match_filter/rules/rule2.yml deleted file mode 100644 index ac89a953d38..00000000000 --- a/tests/licensedcode/data/match_filter/rules/rule2.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: lgpl-2.1-plus diff --git a/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word.RULE b/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word.RULE index c0e32dd8e70..4fa74a978b6 100644 --- a/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word.RULE +++ b/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPLv2 \ No newline at end of file diff --git a/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word.yml b/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word.yml deleted file mode 100644 index 5d2f01eb895..00000000000 --- a/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 \ No newline at end of file diff --git a/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word2.RULE b/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word2.RULE index 4c0bd8f431d..cbce818dc9b 100644 --- a/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word2.RULE +++ b/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word2.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +--- + GPL v2 license \ No newline at end of file diff --git a/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word2.yml b/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word2.yml deleted file mode 100644 index 5d2f01eb895..00000000000 --- a/tests/licensedcode/data/match_regions/rules/gpl-2.0_bare_single_word2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 \ No newline at end of file diff --git a/tests/licensedcode/data/match_regions/rules/gpl-2.0_or_apache-2.0_2.RULE b/tests/licensedcode/data/match_regions/rules/gpl-2.0_or_apache-2.0_2.RULE index 0d513cf0512..cddbfceef22 100644 --- a/tests/licensedcode/data/match_regions/rules/gpl-2.0_or_apache-2.0_2.RULE +++ b/tests/licensedcode/data/match_regions/rules/gpl-2.0_or_apache-2.0_2.RULE @@ -1 +1,7 @@ -under both the GPLv2 and Apache 2.0 License +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +under both the GPLv2 and Apache 2.0 License \ No newline at end of file diff --git a/tests/licensedcode/data/match_regions/rules/gpl-2.0_or_apache-2.0_2.yml b/tests/licensedcode/data/match_regions/rules/gpl-2.0_or_apache-2.0_2.yml deleted file mode 100644 index e7e62192b75..00000000000 --- a/tests/licensedcode/data/match_regions/rules/gpl-2.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -relevance: 100 diff --git a/tests/licensedcode/data/match_regions/rules/mit_101.RULE b/tests/licensedcode/data/match_regions/rules/mit_101.RULE index cb0ec92e57c..e38d8466f31 100644 --- a/tests/licensedcode/data/match_regions/rules/mit_101.RULE +++ b/tests/licensedcode/data/match_regions/rules/mit_101.RULE @@ -1 +1,9 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This source code is licensed under the MIT \ No newline at end of file diff --git a/tests/licensedcode/data/match_regions/rules/mit_101.yml b/tests/licensedcode/data/match_regions/rules/mit_101.yml deleted file mode 100644 index ca1a7136613..00000000000 --- a/tests/licensedcode/data/match_regions/rules/mit_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE \ No newline at end of file diff --git a/tests/licensedcode/data/match_seq/rules/apache-1.1.RULE b/tests/licensedcode/data/match_seq/rules/apache-1.1.RULE index bb2cd57afb0..45456864886 100644 --- a/tests/licensedcode/data/match_seq/rules/apache-1.1.RULE +++ b/tests/licensedcode/data/match_seq/rules/apache-1.1.RULE @@ -1,37 +1,44 @@ -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. The end-user documentation included with the redistribution, if any, must -include the following acknowledgment: - -"This product includes software developed by the OpenSymphony Group -(http://www.opensymphony.com/)." - -Alternately, this acknowledgment may appear in the software itself, if and -wherever such third-party acknowledgments normally appear. - -4. The names "OpenSymphony" and "The OpenSymphony Group" must not be used to -endorse or promote products derived from this software without prior written -permission. For written permission, please contact license@opensymphony.com . - -5. Products derived from this software may not be called "OpenSymphony" or , -nor may "OpenSymphony" or appear in their name, without prior written -permission of the OpenSymphony Group. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE -SOFTWARE FOUNDATION 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 +--- +license_expression: apache-1.1 +notes: | + The OpenSymphony Software License, Version 1.1 with XWork is an Apache + variant +--- + +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. The end-user documentation included with the redistribution, if any, must +include the following acknowledgment: + +"This product includes software developed by the OpenSymphony Group +(http://www.opensymphony.com/)." + +Alternately, this acknowledgment may appear in the software itself, if and +wherever such third-party acknowledgments normally appear. + +4. The names "OpenSymphony" and "The OpenSymphony Group" must not be used to +endorse or promote products derived from this software without prior written +permission. For written permission, please contact license@opensymphony.com . + +5. Products derived from this software may not be called "OpenSymphony" or , +nor may "OpenSymphony" or appear in their name, without prior written +permission of the OpenSymphony Group. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE +SOFTWARE FOUNDATION 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/tests/licensedcode/data/match_seq/rules/apache-1.1.yml b/tests/licensedcode/data/match_seq/rules/apache-1.1.yml deleted file mode 100644 index 7e19e5143eb..00000000000 --- a/tests/licensedcode/data/match_seq/rules/apache-1.1.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: apache-1.1 -notes: | - The OpenSymphony Software License, Version 1.1 with XWork is an Apache - variant diff --git a/tests/licensedcode/data/match_seq/rules/apache-1.1_1.RULE b/tests/licensedcode/data/match_seq/rules/apache-1.1_1.RULE index fcc2e5a4d11..9539c2d4610 100644 --- a/tests/licensedcode/data/match_seq/rules/apache-1.1_1.RULE +++ b/tests/licensedcode/data/match_seq/rules/apache-1.1_1.RULE @@ -1,34 +1,39 @@ -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. - The end-user documentation included with the redistribution, if any, -must include the following acknowledgment: - "This product includes software developed by the OpenSymphony -Group (http://www.opensymphony.com/)." - Alternately, this acknowledgment may appear in the software itself, -if and wherever such third-party acknowledgments normally appear. - - The names "OpenSymphony" and "The OpenSymphony Group" must not -be used to endorse or promote products derived from this software without prior -written permission. For written permission, please contact license -opensymphony.com . - - Products derived from this software may not be called - "OpenSymphony" or "OsCore", nor may "OpenSymphony" or "OsCore" appear in -their name, without prior written permission of the OpenSymphony Group . - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE -SOFTWARE FOUNDATION 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 +--- +license_expression: apache-1.1 +notes: from opensymphony +--- + +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. + The end-user documentation included with the redistribution, if any, +must include the following acknowledgment: + "This product includes software developed by the OpenSymphony +Group (http://www.opensymphony.com/)." + Alternately, this acknowledgment may appear in the software itself, +if and wherever such third-party acknowledgments normally appear. + + The names "OpenSymphony" and "The OpenSymphony Group" must not +be used to endorse or promote products derived from this software without prior +written permission. For written permission, please contact license +opensymphony.com . + + Products derived from this software may not be called + "OpenSymphony" or "OsCore", nor may "OpenSymphony" or "OsCore" appear in +their name, without prior written permission of the OpenSymphony Group . + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE +SOFTWARE FOUNDATION 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/tests/licensedcode/data/match_seq/rules/apache-1.1_1.yml b/tests/licensedcode/data/match_seq/rules/apache-1.1_1.yml deleted file mode 100644 index 481c994a8ac..00000000000 --- a/tests/licensedcode/data/match_seq/rules/apache-1.1_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -notes: from opensymphony diff --git a/tests/licensedcode/data/match_seq/rules/apache-1.1_19.RULE b/tests/licensedcode/data/match_seq/rules/apache-1.1_19.RULE index f26a6c24b14..272db3cdcda 100644 --- a/tests/licensedcode/data/match_seq/rules/apache-1.1_19.RULE +++ b/tests/licensedcode/data/match_seq/rules/apache-1.1_19.RULE @@ -1,50 +1,55 @@ -/* ==================================================================== - * The OpenSymphony Software License, Version 1.1 - * - * (this license is derived and fully compatible with the Apache Software - * License - see http://www.apache.org/LICENSE.txt) - * - * Copyright (c) The OpenSymphony Group. All rights reserved. - * - * 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. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: - * "This product includes software developed by the - * OpenSymphony Group (http://www.opensymphony.com/)." - * Alternately, this acknowledgment may appear in the software itself, - * if and wherever such third-party acknowledgments normally appear. - * - * 4. The names "OpenSymphony" and "The OpenSymphony Group" - * must not be used to endorse or promote products derived from this - * software without prior written permission. For written - * permission, please contact license@opensymphony.com . - * - * 5. Products derived from this software may not be called "OpenSymphony" - * or , nor may "OpenSymphony" or appear in their - * name, without prior written permission of the OpenSymphony Group. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION 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. - * ==================================================================== - */ +--- +license_expression: apache-1.1 +notes: The OpenSymphony license is really the Apache 1.1 license. +--- + +/* ==================================================================== + * The OpenSymphony Software License, Version 1.1 + * + * (this license is derived and fully compatible with the Apache Software + * License - see http://www.apache.org/LICENSE.txt) + * + * Copyright (c) The OpenSymphony Group. All rights reserved. + * + * 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. The end-user documentation included with the redistribution, + * if any, must include the following acknowledgment: + * "This product includes software developed by the + * OpenSymphony Group (http://www.opensymphony.com/)." + * Alternately, this acknowledgment may appear in the software itself, + * if and wherever such third-party acknowledgments normally appear. + * + * 4. The names "OpenSymphony" and "The OpenSymphony Group" + * must not be used to endorse or promote products derived from this + * software without prior written permission. For written + * permission, please contact license@opensymphony.com . + * + * 5. Products derived from this software may not be called "OpenSymphony" + * or , nor may "OpenSymphony" or appear in their + * name, without prior written permission of the OpenSymphony Group. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION 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/tests/licensedcode/data/match_seq/rules/apache-1.1_19.yml b/tests/licensedcode/data/match_seq/rules/apache-1.1_19.yml deleted file mode 100644 index b31df04d259..00000000000 --- a/tests/licensedcode/data/match_seq/rules/apache-1.1_19.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: apache-1.1 -notes: The OpenSymphony license is really the Apache 1.1 license. diff --git a/tests/licensedcode/data/match_seq/rules/rule1.RULE b/tests/licensedcode/data/match_seq/rules/rule1.RULE index 0dab2f2923d..12dfe63679f 100644 --- a/tests/licensedcode/data/match_seq/rules/rule1.RULE +++ b/tests/licensedcode/data/match_seq/rules/rule1.RULE @@ -1,6 +1,10 @@ - The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C Library is distributed in the hope that it will be useful, +--- +license_expression: lgpl-2.1-plus +--- + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, \ No newline at end of file diff --git a/tests/licensedcode/data/match_seq/rules/rule1.yml b/tests/licensedcode/data/match_seq/rules/rule1.yml deleted file mode 100644 index ac89a953d38..00000000000 --- a/tests/licensedcode/data/match_seq/rules/rule1.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: lgpl-2.1-plus diff --git a/tests/licensedcode/data/match_seq/rules/rule2.RULE b/tests/licensedcode/data/match_seq/rules/rule2.RULE index e9b7825657b..118b038acb4 100644 --- a/tests/licensedcode/data/match_seq/rules/rule2.RULE +++ b/tests/licensedcode/data/match_seq/rules/rule2.RULE @@ -1,7 +1,11 @@ - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - The GNU C 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. +--- +license_expression: lgpl-2.1-plus +--- + + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C 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. \ No newline at end of file diff --git a/tests/licensedcode/data/match_seq/rules/rule2.yml b/tests/licensedcode/data/match_seq/rules/rule2.yml deleted file mode 100644 index ac89a953d38..00000000000 --- a/tests/licensedcode/data/match_seq/rules/rule2.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: lgpl-2.1-plus diff --git a/tests/licensedcode/data/matched_text/binary_text/rules/gpl-3.0_rdesc_1.RULE b/tests/licensedcode/data/matched_text/binary_text/rules/gpl-3.0_rdesc_1.RULE index 3c0984a8e75..04ff775876a 100644 --- a/tests/licensedcode/data/matched_text/binary_text/rules/gpl-3.0_rdesc_1.RULE +++ b/tests/licensedcode/data/matched_text/binary_text/rules/gpl-3.0_rdesc_1.RULE @@ -1 +1,6 @@ -License: GPL-3 +--- +license_expression: gpl-3.0 +is_license_tag: yes +--- + +License: GPL-3 \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/binary_text/rules/gpl-3.0_rdesc_1.yml b/tests/licensedcode/data/matched_text/binary_text/rules/gpl-3.0_rdesc_1.yml deleted file mode 100644 index 8f2188c973e..00000000000 --- a/tests/licensedcode/data/matched_text/binary_text/rules/gpl-3.0_rdesc_1.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-3.0 -is_license_tag: yes diff --git a/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_bare_single_word.RULE b/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_bare_single_word.RULE index c0e32dd8e70..8460fd42800 100644 --- a/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_bare_single_word.RULE +++ b/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_bare_single_word.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 80 +--- + GPLv2 \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_bare_single_word.yml b/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_bare_single_word.yml deleted file mode 100644 index d78d0c44d8a..00000000000 --- a/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_bare_single_word.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 80 \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_or_apache-2.0_2.RULE b/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_or_apache-2.0_2.RULE index 995ec316ad8..ab7174c5778 100644 --- a/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_or_apache-2.0_2.RULE +++ b/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_or_apache-2.0_2.RULE @@ -1,3 +1,12 @@ +--- +license_expression: gpl-2.0 OR apache-2.0 +is_license_notice: yes +referenced_filenames: + - COPYING + - LICENSE.Apache +notes: seen in RocksDB +--- + // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_or_apache-2.0_2.yml b/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_or_apache-2.0_2.yml deleted file mode 100644 index 41746474c20..00000000000 --- a/tests/licensedcode/data/matched_text/index/rules/gpl-2.0_or_apache-2.0_2.yml +++ /dev/null @@ -1,6 +0,0 @@ -license_expression: gpl-2.0 OR apache-2.0 -is_license_notice: yes -referenced_filenames: - - COPYING - - LICENSE.Apache -notes: seen in RocksDB diff --git a/tests/licensedcode/data/matched_text/index/rules/mit_101.RULE b/tests/licensedcode/data/matched_text/index/rules/mit_101.RULE index 722e438fd41..3a9e40b3108 100644 --- a/tests/licensedcode/data/matched_text/index/rules/mit_101.RULE +++ b/tests/licensedcode/data/matched_text/index/rules/mit_101.RULE @@ -1,2 +1,10 @@ +--- +license_expression: mit +is_license_notice: yes +relevance: 100 +referenced_filenames: + - LICENSE +--- + This source code is licensed under the MIT license found in the -LICENSE file in the root directory of this source tree. +LICENSE file in the root directory of this source tree. \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/index/rules/mit_101.yml b/tests/licensedcode/data/matched_text/index/rules/mit_101.yml deleted file mode 100644 index ca1a7136613..00000000000 --- a/tests/licensedcode/data/matched_text/index/rules/mit_101.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: mit -is_license_notice: yes -relevance: 100 -referenced_filenames: - - LICENSE \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule1.RULE b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule1.RULE index f0ec0e607e9..6c4b3a576e6 100644 --- a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule1.RULE +++ b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule1.RULE @@ -1 +1,5 @@ +--- +license_expression: mit +--- + İ license MIT \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule1.yml b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule1.yml deleted file mode 100644 index 864a8c3ca0b..00000000000 --- a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule1.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: mit diff --git a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule2.RULE b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule2.RULE index 7ca4781d2fc..ea27f99a74a 100644 --- a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule2.RULE +++ b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule2.RULE @@ -1,2 +1,6 @@ -# Licensed under the Apache License, Version 2.0 -next_label=İrəli +--- +license_expression: apache-2.0 +--- + +# Licensed under the Apache License, Version 2.0 +next_label=İrəli \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule2.yml b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule2.yml deleted file mode 100644 index a4f80f07b9f..00000000000 --- a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule2.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: apache-2.0 diff --git a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule3.RULE b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule3.RULE index 7b767dbbaa8..c9cec3f482e 100644 --- a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule3.RULE +++ b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule3.RULE @@ -1 +1,5 @@ -Licensed under the Apache License, Version 2.0 +--- +license_expression: proprietary-license +--- + +Licensed under the Apache License, Version 2.0 \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule3.yml b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule3.yml deleted file mode 100644 index 1443a0848f9..00000000000 --- a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule3.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: proprietary-license diff --git a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule4.RULE b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule4.RULE index d00dc0e28b2..a4e5a3a5343 100644 --- a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule4.RULE +++ b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule4.RULE @@ -1 +1,5 @@ +--- +license_expression: mit +--- + lİcense MİT \ No newline at end of file diff --git a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule4.yml b/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule4.yml deleted file mode 100644 index 864a8c3ca0b..00000000000 --- a/tests/licensedcode/data/matched_text/turkish_unicode/rules/rule4.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: mit diff --git a/tests/licensedcode/data/models/data_text_files/licenses/gpl-1.0.LICENSE b/tests/licensedcode/data/models/data_text_files/licenses/gpl-1.0.LICENSE index d8024cf5996..85805e0f398 100644 --- a/tests/licensedcode/data/models/data_text_files/licenses/gpl-1.0.LICENSE +++ b/tests/licensedcode/data/models/data_text_files/licenses/gpl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: gpl-1.0 +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-1.0.html +notes: | + notes from SPDX: + This license was released: February 1989. +spdx_license_key: GPL-1.0 +text_urls: + - http://www.gnu.org/licenses/gpl-1.0.txt +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 @@ -5,5 +23,4 @@ GNU GENERAL PUBLIC LICENSE 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - + of this license document, but changing it is not allowed. \ No newline at end of file diff --git a/tests/licensedcode/data/models/data_text_files/licenses/gpl-1.0.yml b/tests/licensedcode/data/models/data_text_files/licenses/gpl-1.0.yml deleted file mode 100644 index af02805defd..00000000000 --- a/tests/licensedcode/data/models/data_text_files/licenses/gpl-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: gpl-1.0 -short_name: GPL 1.0 -name: GNU General Public License 1.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-1.0.html -notes: |- - notes from SPDX: - This license was released: February 1989. -spdx_license_key: GPL-1.0 -text_urls: - - http://www.gnu.org/licenses/gpl-1.0.txt -faq_url: http://www.gnu.org/licenses/gpl-faq.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html diff --git a/tests/licensedcode/data/models/data_text_files/rules/0051_gpl-2.0.RULE b/tests/licensedcode/data/models/data_text_files/rules/0051_gpl-2.0.RULE index af387ba9da7..ad2e63f64ad 100644 --- a/tests/licensedcode/data/models/data_text_files/rules/0051_gpl-2.0.RULE +++ b/tests/licensedcode/data/models/data_text_files/rules/0051_gpl-2.0.RULE @@ -1,3 +1,11 @@ +--- + +license_expression: gpl-2.0 +is_license_notice: yes +notes: GPL 2 small change + +--- + 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; version 2 dated June, 1991. diff --git a/tests/licensedcode/data/models/data_text_files/rules/0051_gpl-2.0.yml b/tests/licensedcode/data/models/data_text_files/rules/0051_gpl-2.0.yml deleted file mode 100644 index 9546508cfd9..00000000000 --- a/tests/licensedcode/data/models/data_text_files/rules/0051_gpl-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-2.0 -is_license_notice: yes -notes: GPL 2 small change diff --git a/tests/licensedcode/data/models/licenses.load.expected.json b/tests/licensedcode/data/models/licenses.load.expected.json index c0f34e2f7ec..84a8aac2f60 100644 --- a/tests/licensedcode/data/models/licenses.load.expected.json +++ b/tests/licensedcode/data/models/licenses.load.expected.json @@ -32,8 +32,8 @@ "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-1.0.html", + "notes": "notes from SPDX:\nThis license was released: February 1989.\n", "is_builtin": true, - "notes": "notes from SPDX:\nThis license was released: February 1989.", "spdx_license_key": "GPL-1.0", "text_urls": [ "http://www.gnu.org/licenses/gpl-1.0.txt" @@ -50,8 +50,8 @@ "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html", + "notes": "notes from SPDX:\nThis license was released: February 1989.\n", "is_builtin": true, - "notes": "notes from SPDX:\nThis license was released: February 1989.", "spdx_license_key": "GPL-1.0+" }, { @@ -61,8 +61,8 @@ "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", - "is_builtin": true, "notes": "This is the last version of the GPL text as published by the FSF. This license was released: June 1991 This license is OSI certified.\n", + "is_builtin": true, "spdx_license_key": "GPL-2.0", "text_urls": [ "http://www.gnu.org/licenses/gpl-2.0.txt", @@ -82,8 +82,8 @@ "short_name": "GPL 2.0 with Library exception", "name": "GNU General Public License 2.0 with Library exception", "category": "Copyleft Limited", - "is_builtin": true, "owner": "Grammatica", + "is_builtin": true, "is_exception": true, "spdx_license_key": "LicenseRef-scancode-gpl-2.0-library", "other_urls": [ @@ -97,8 +97,8 @@ "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "notes": "notes from SPDX:\nThis license was released: June 1991 This license is OSI certified.\n", "is_builtin": true, - "notes": "notes from SPDX:\nThis license was released: June 1991 This license is OSI certified.", "spdx_license_key": "GPL-2.0+" }, { @@ -108,8 +108,8 @@ "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-3.0.html", + "notes": "notes from SPDX:\nThis license was released: 29 June 2007 This license is OSI certified.\n", "is_builtin": true, - "notes": "notes from SPDX:\nThis license was released: 29 June 2007 This license is OSI certified.", "spdx_license_key": "GPL-3.0", "text_urls": [ "http://www.gnu.org/licenses/gpl-3.0.txt", @@ -128,8 +128,8 @@ "category": "Copyleft", "owner": "Free Software Foundation (FSF)", "homepage_url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html", + "notes": "notes from SPDX:\nThis license was released: 29 June 2007 This license is OSI certified.\n", "is_builtin": true, - "notes": "notes from SPDX:\nThis license was released: 29 June 2007 This license is OSI certified.", "spdx_license_key": "GPL-3.0+" }, { diff --git a/tests/licensedcode/data/models/licenses/apache-2.0.LICENSE b/tests/licensedcode/data/models/licenses/apache-2.0.LICENSE index 7e63d484aaa..36938651042 100644 --- a/tests/licensedcode/data/models/licenses/apache-2.0.LICENSE +++ b/tests/licensedcode/data/models/licenses/apache-2.0.LICENSE @@ -1,3 +1,17 @@ +--- +key: apache-2.0 +short_name: Apache 2.0 +name: Apache License 2.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +spdx_license_key: Apache-2.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +osi_url: http://opensource.org/licenses/apache2.0.php +faq_url: http://www.apache.org/foundation/licence-FAQ.html +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/tests/licensedcode/data/models/licenses/apache-2.0.yml b/tests/licensedcode/data/models/licenses/apache-2.0.yml deleted file mode 100644 index abeb5d2fb3c..00000000000 --- a/tests/licensedcode/data/models/licenses/apache-2.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: apache-2.0 -short_name: Apache 2.0 -name: Apache License 2.0 -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ -spdx_license_key: Apache-2.0 -text_urls: - - http://www.apache.org/licenses/LICENSE-2.0 -osi_url: http://opensource.org/licenses/apache2.0.php -faq_url: http://www.apache.org/foundation/licence-FAQ.html diff --git a/tests/licensedcode/data/models/licenses/bsd-ack-carrot2.LICENSE b/tests/licensedcode/data/models/licenses/bsd-ack-carrot2.LICENSE index 4ec8cb7483e..2517fa841a2 100644 --- a/tests/licensedcode/data/models/licenses/bsd-ack-carrot2.LICENSE +++ b/tests/licensedcode/data/models/licenses/bsd-ack-carrot2.LICENSE @@ -1,3 +1,14 @@ +--- +key: bsd-ack-carrot2 +short_name: BSD Acknowledgment (Carrot2) License +name: BSD Acknowledgment (Carrot2) License +category: Permissive +owner: Carrot2 +spdx_license_key: LicenseRef-scancode-bsd-ack-carrot2 +homepage_url: http://www.carrot2.org/carrot2.LICENSE +minimum_coverage: 80 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/tests/licensedcode/data/models/licenses/bsd-ack-carrot2.yml b/tests/licensedcode/data/models/licenses/bsd-ack-carrot2.yml deleted file mode 100644 index 55e7cc90a0d..00000000000 --- a/tests/licensedcode/data/models/licenses/bsd-ack-carrot2.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: bsd-ack-carrot2 -short_name: BSD Acknowledgment (Carrot2) License -name: BSD Acknowledgment (Carrot2) License -category: Permissive -owner: Carrot2 -spdx_license_key: LicenseRef-scancode-bsd-ack-carrot2 -homepage_url: http://www.carrot2.org/carrot2.LICENSE -minimum_coverage: 80 \ No newline at end of file diff --git a/tests/licensedcode/data/models/licenses/gpl-1.0-plus.LICENSE b/tests/licensedcode/data/models/licenses/gpl-1.0-plus.LICENSE index e24d1d2a7a7..438085f0172 100644 --- a/tests/licensedcode/data/models/licenses/gpl-1.0-plus.LICENSE +++ b/tests/licensedcode/data/models/licenses/gpl-1.0-plus.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-1.0-plus +short_name: GPL 1.0 or later +name: GNU General Public License 1.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +notes: | + notes from SPDX: + This license was released: February 1989. +spdx_license_key: GPL-1.0+ +--- + 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 1, 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. diff --git a/tests/licensedcode/data/models/licenses/gpl-1.0-plus.yml b/tests/licensedcode/data/models/licenses/gpl-1.0-plus.yml deleted file mode 100644 index 24b44109df9..00000000000 --- a/tests/licensedcode/data/models/licenses/gpl-1.0-plus.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-1.0-plus -short_name: GPL 1.0 or later -name: GNU General Public License 1.0 or later -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html -notes: |- - notes from SPDX: - This license was released: February 1989. -spdx_license_key: GPL-1.0+ diff --git a/tests/licensedcode/data/models/licenses/gpl-1.0.LICENSE b/tests/licensedcode/data/models/licenses/gpl-1.0.LICENSE index c510b2875fe..f8d33a07964 100644 --- a/tests/licensedcode/data/models/licenses/gpl-1.0.LICENSE +++ b/tests/licensedcode/data/models/licenses/gpl-1.0.LICENSE @@ -1,3 +1,21 @@ +--- +key: gpl-1.0 +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-1.0.html +notes: | + notes from SPDX: + This license was released: February 1989. +spdx_license_key: GPL-1.0 +text_urls: + - http://www.gnu.org/licenses/gpl-1.0.txt +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 diff --git a/tests/licensedcode/data/models/licenses/gpl-1.0.yml b/tests/licensedcode/data/models/licenses/gpl-1.0.yml deleted file mode 100644 index af02805defd..00000000000 --- a/tests/licensedcode/data/models/licenses/gpl-1.0.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: gpl-1.0 -short_name: GPL 1.0 -name: GNU General Public License 1.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-1.0.html -notes: |- - notes from SPDX: - This license was released: February 1989. -spdx_license_key: GPL-1.0 -text_urls: - - http://www.gnu.org/licenses/gpl-1.0.txt -faq_url: http://www.gnu.org/licenses/gpl-faq.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html diff --git a/tests/licensedcode/data/models/licenses/gpl-2.0-library.LICENSE b/tests/licensedcode/data/models/licenses/gpl-2.0-library.LICENSE index 3a9f05ae803..64a7bdbd7cd 100644 --- a/tests/licensedcode/data/models/licenses/gpl-2.0-library.LICENSE +++ b/tests/licensedcode/data/models/licenses/gpl-2.0-library.LICENSE @@ -1,3 +1,15 @@ +--- +key: gpl-2.0-library +short_name: GPL 2.0 with Library exception +name: GNU General Public License 2.0 with Library exception +category: Copyleft Limited +spdx_license_key: LicenseRef-scancode-gpl-2.0-library +owner: Grammatica +other_urls: + - http://grammatica.percederberg.net/index.html +is_exception: yes +--- + The software in this package is distributed under the GNU General Public License with the "Library Exception" described below. A copy of GNU General Public License (GPL) is included in this distribution, diff --git a/tests/licensedcode/data/models/licenses/gpl-2.0-library.yml b/tests/licensedcode/data/models/licenses/gpl-2.0-library.yml deleted file mode 100644 index 8e2261ad2e2..00000000000 --- a/tests/licensedcode/data/models/licenses/gpl-2.0-library.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: gpl-2.0-library -short_name: GPL 2.0 with Library exception -name: GNU General Public License 2.0 with Library exception -category: Copyleft Limited -spdx_license_key: LicenseRef-scancode-gpl-2.0-library -owner: Grammatica -other_urls: - - http://grammatica.percederberg.net/index.html -is_exception: yes \ No newline at end of file diff --git a/tests/licensedcode/data/models/licenses/gpl-2.0-plus.LICENSE b/tests/licensedcode/data/models/licenses/gpl-2.0-plus.LICENSE index 84580ec8b26..912970f64f4 100644 --- a/tests/licensedcode/data/models/licenses/gpl-2.0-plus.LICENSE +++ b/tests/licensedcode/data/models/licenses/gpl-2.0-plus.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-2.0-plus +short_name: GPL 2.0 or later +name: GNU General Public License 2.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +notes: | + notes from SPDX: + This license was released: June 1991 This license is OSI certified. +spdx_license_key: GPL-2.0+ +--- + 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 diff --git a/tests/licensedcode/data/models/licenses/gpl-2.0-plus.yml b/tests/licensedcode/data/models/licenses/gpl-2.0-plus.yml deleted file mode 100644 index 8f17a62bf0f..00000000000 --- a/tests/licensedcode/data/models/licenses/gpl-2.0-plus.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-2.0-plus -short_name: GPL 2.0 or later -name: GNU General Public License 2.0 or later -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html -notes: |- - notes from SPDX: - This license was released: June 1991 This license is OSI certified. -spdx_license_key: GPL-2.0+ diff --git a/tests/licensedcode/data/models/licenses/gpl-2.0.LICENSE b/tests/licensedcode/data/models/licenses/gpl-2.0.LICENSE index d159169d105..232d24d95c8 100644 --- a/tests/licensedcode/data/models/licenses/gpl-2.0.LICENSE +++ b/tests/licensedcode/data/models/licenses/gpl-2.0.LICENSE @@ -1,3 +1,25 @@ +--- +key: gpl-2.0 +short_name: GPL 2.0 +name: GNU General Public License 2.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-2.0.html +notes: | + This is the last version of the GPL text as published by the FSF. This license was released: June 1991 This license is OSI certified. +spdx_license_key: GPL-2.0 +text_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +osi_url: http://opensource.org/licenses/gpl-license.php +faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html +other_urls: + - http://creativecommons.org/licenses/GPL/2.0/ + - http://creativecommons.org/choose/cc-gpl + - http://creativecommons.org/images/public/cc-GPL-a.png + - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 @@ -336,4 +358,4 @@ This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. +Public License instead of this License. \ No newline at end of file diff --git a/tests/licensedcode/data/models/licenses/gpl-2.0.yml b/tests/licensedcode/data/models/licenses/gpl-2.0.yml deleted file mode 100644 index c781d054f32..00000000000 --- a/tests/licensedcode/data/models/licenses/gpl-2.0.yml +++ /dev/null @@ -1,20 +0,0 @@ -key: gpl-2.0 -short_name: GPL 2.0 -name: GNU General Public License 2.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-2.0.html -notes: > - This is the last version of the GPL text as published by the FSF. - This license was released: June 1991 This license is OSI certified. -spdx_license_key: GPL-2.0 -text_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -osi_url: http://opensource.org/licenses/gpl-license.php -faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html -other_urls: - - http://creativecommons.org/licenses/GPL/2.0/ - - http://creativecommons.org/choose/cc-gpl - - http://creativecommons.org/images/public/cc-GPL-a.png - - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt diff --git a/tests/licensedcode/data/models/licenses/gpl-3.0-plus.LICENSE b/tests/licensedcode/data/models/licenses/gpl-3.0-plus.LICENSE index 9aa03b39be4..f5221f6c33e 100644 --- a/tests/licensedcode/data/models/licenses/gpl-3.0-plus.LICENSE +++ b/tests/licensedcode/data/models/licenses/gpl-3.0-plus.LICENSE @@ -1,3 +1,16 @@ +--- +key: gpl-3.0-plus +short_name: GPL 3.0 or later +name: GNU General Public License 3.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-3.0-standalone.html +notes: | + notes from SPDX: + This license was released: 29 June 2007 This license is OSI certified. +spdx_license_key: GPL-3.0+ +--- + 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 @@ -9,4 +22,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 General Public License -along with this program. If not, see . +along with this program. If not, see . \ No newline at end of file diff --git a/tests/licensedcode/data/models/licenses/gpl-3.0-plus.yml b/tests/licensedcode/data/models/licenses/gpl-3.0-plus.yml deleted file mode 100644 index fdc2855fd05..00000000000 --- a/tests/licensedcode/data/models/licenses/gpl-3.0-plus.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-3.0-plus -short_name: GPL 3.0 or later -name: GNU General Public License 3.0 or later -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-3.0-standalone.html -notes: |- - notes from SPDX: - This license was released: 29 June 2007 This license is OSI certified. -spdx_license_key: GPL-3.0+ diff --git a/tests/licensedcode/data/models/licenses/gpl-3.0.LICENSE b/tests/licensedcode/data/models/licenses/gpl-3.0.LICENSE index 94a9ed024d3..b4959fa4c2d 100644 --- a/tests/licensedcode/data/models/licenses/gpl-3.0.LICENSE +++ b/tests/licensedcode/data/models/licenses/gpl-3.0.LICENSE @@ -1,3 +1,23 @@ +--- +key: gpl-3.0 +short_name: GPL 3.0 +name: GNU General Public License 3.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-3.0.html +notes: | + notes from SPDX: + This license was released: 29 June 2007 This license is OSI certified. +spdx_license_key: GPL-3.0 +text_urls: + - http://www.gnu.org/licenses/gpl-3.0.txt + - http://www.gnu.org/licenses/gpl-3.0-standalone.html +osi_url: http://opensource.org/licenses/gpl-3.0.html +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/quick-guide-gplv3.html +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 @@ -671,4 +691,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. \ No newline at end of file diff --git a/tests/licensedcode/data/models/licenses/gpl-3.0.yml b/tests/licensedcode/data/models/licenses/gpl-3.0.yml deleted file mode 100644 index 6f9a8bdda85..00000000000 --- a/tests/licensedcode/data/models/licenses/gpl-3.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: gpl-3.0 -short_name: GPL 3.0 -name: GNU General Public License 3.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-3.0.html -notes: |- - notes from SPDX: - This license was released: 29 June 2007 This license is OSI certified. -spdx_license_key: GPL-3.0 -text_urls: - - http://www.gnu.org/licenses/gpl-3.0.txt - - http://www.gnu.org/licenses/gpl-3.0-standalone.html -osi_url: http://opensource.org/licenses/gpl-3.0.html -faq_url: http://www.gnu.org/licenses/gpl-faq.html -other_urls: - - http://www.gnu.org/licenses/quick-guide-gplv3.html diff --git a/tests/licensedcode/data/models/licenses/w3c-docs-19990405.LICENSE b/tests/licensedcode/data/models/licenses/w3c-docs-19990405.LICENSE index e1e30854603..eac835c88c7 100644 --- a/tests/licensedcode/data/models/licenses/w3c-docs-19990405.LICENSE +++ b/tests/licensedcode/data/models/licenses/w3c-docs-19990405.LICENSE @@ -1,3 +1,13 @@ +--- +key: w3c-docs-19990405 +short_name: W3C-DOCS-19990405 +name: W3C Document Notice and License (1999-04-05) +category: Free Restricted +spdx_license_key: LicenseRef-scancode-w3c-docs-19990405 +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 +--- + W3C® DOCUMENT NOTICE AND LICENSE Copyright © 1994-2002 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. diff --git a/tests/licensedcode/data/models/licenses/w3c-docs-19990405.yml b/tests/licensedcode/data/models/licenses/w3c-docs-19990405.yml deleted file mode 100644 index 951ea3087ec..00000000000 --- a/tests/licensedcode/data/models/licenses/w3c-docs-19990405.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: w3c-docs-19990405 -short_name: W3C-DOCS-19990405 -name: W3C Document Notice and License (1999-04-05) -category: Free Restricted -spdx_license_key: LicenseRef-scancode-w3c-docs-19990405 -owner: W3C - World Wide Web Consortium -homepage_url: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 diff --git a/tests/licensedcode/data/models/orphaned_licenses/bsd-ack-carrot2.LICENSE b/tests/licensedcode/data/models/licenses_without_frontmatter/bsd-ack-carrot2.LICENSE similarity index 99% rename from tests/licensedcode/data/models/orphaned_licenses/bsd-ack-carrot2.LICENSE rename to tests/licensedcode/data/models/licenses_without_frontmatter/bsd-ack-carrot2.LICENSE index 4ec8cb7483e..59d97f8d097 100644 --- a/tests/licensedcode/data/models/orphaned_licenses/bsd-ack-carrot2.LICENSE +++ b/tests/licensedcode/data/models/licenses_without_frontmatter/bsd-ack-carrot2.LICENSE @@ -1,3 +1,7 @@ +--- + +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/tests/licensedcode/data/models/licenses_without_frontmatter/gpl-1.0-plus.LICENSE b/tests/licensedcode/data/models/licenses_without_frontmatter/gpl-1.0-plus.LICENSE new file mode 100644 index 00000000000..438085f0172 --- /dev/null +++ b/tests/licensedcode/data/models/licenses_without_frontmatter/gpl-1.0-plus.LICENSE @@ -0,0 +1,18 @@ +--- +key: gpl-1.0-plus +short_name: GPL 1.0 or later +name: GNU General Public License 1.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +notes: | + notes from SPDX: + This license was released: February 1989. +spdx_license_key: GPL-1.0+ +--- + +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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/models/licenses_without_text/apache-2.0.LICENSE b/tests/licensedcode/data/models/licenses_without_text/apache-2.0.LICENSE new file mode 100644 index 00000000000..94963aab8f9 --- /dev/null +++ b/tests/licensedcode/data/models/licenses_without_text/apache-2.0.LICENSE @@ -0,0 +1,13 @@ +--- +key: apache-2.0 +short_name: Apache 2.0 +name: Apache License 2.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +spdx_license_key: Apache-2.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +osi_url: http://opensource.org/licenses/apache2.0.php +faq_url: http://www.apache.org/foundation/licence-FAQ.html +--- diff --git a/tests/licensedcode/data/models/licenses_without_text/gpl-1.0-plus.LICENSE b/tests/licensedcode/data/models/licenses_without_text/gpl-1.0-plus.LICENSE new file mode 100644 index 00000000000..438085f0172 --- /dev/null +++ b/tests/licensedcode/data/models/licenses_without_text/gpl-1.0-plus.LICENSE @@ -0,0 +1,18 @@ +--- +key: gpl-1.0-plus +short_name: GPL 1.0 or later +name: GNU General Public License 1.0 or later +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +notes: | + notes from SPDX: + This license was released: February 1989. +spdx_license_key: GPL-1.0+ +--- + +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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/models/orphaned_licenses/apache-2.0.yml b/tests/licensedcode/data/models/orphaned_licenses/apache-2.0.yml deleted file mode 100644 index abeb5d2fb3c..00000000000 --- a/tests/licensedcode/data/models/orphaned_licenses/apache-2.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: apache-2.0 -short_name: Apache 2.0 -name: Apache License 2.0 -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ -spdx_license_key: Apache-2.0 -text_urls: - - http://www.apache.org/licenses/LICENSE-2.0 -osi_url: http://opensource.org/licenses/apache2.0.php -faq_url: http://www.apache.org/foundation/licence-FAQ.html diff --git a/tests/licensedcode/data/models/orphaned_licenses/gpl-1.0-plus.LICENSE b/tests/licensedcode/data/models/orphaned_licenses/gpl-1.0-plus.LICENSE deleted file mode 100644 index e24d1d2a7a7..00000000000 --- a/tests/licensedcode/data/models/orphaned_licenses/gpl-1.0-plus.LICENSE +++ /dev/null @@ -1,5 +0,0 @@ -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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/models/orphaned_licenses/gpl-1.0-plus.yml b/tests/licensedcode/data/models/orphaned_licenses/gpl-1.0-plus.yml deleted file mode 100644 index 24b44109df9..00000000000 --- a/tests/licensedcode/data/models/orphaned_licenses/gpl-1.0-plus.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: gpl-1.0-plus -short_name: GPL 1.0 or later -name: GNU General Public License 1.0 or later -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html -notes: |- - notes from SPDX: - This license was released: February 1989. -spdx_license_key: GPL-1.0+ diff --git a/tests/licensedcode/data/models/rule_no_text/mit.RULE b/tests/licensedcode/data/models/rule_no_text/mit.RULE new file mode 100644 index 00000000000..d3aebf3a6c0 --- /dev/null +++ b/tests/licensedcode/data/models/rule_no_text/mit.RULE @@ -0,0 +1,7 @@ +--- + +license_expression: sun-bcl-11-07 +is_license_notice: yes +notes: Template of the full text + +--- diff --git a/tests/licensedcode/data/models/rule_no_text/mit.yml b/tests/licensedcode/data/models/rule_no_text/mit.yml deleted file mode 100644 index aa7cb07dd90..00000000000 --- a/tests/licensedcode/data/models/rule_no_text/mit.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: sun-bcl-11-07 -is_license_notice: yes -notes: Template of the full text diff --git a/tests/licensedcode/data/models/rule_template/0149_sun-bcl-11-07.RULE b/tests/licensedcode/data/models/rule_template/0149_sun-bcl-11-07.RULE index 61fe65606f5..15ca2246147 100644 --- a/tests/licensedcode/data/models/rule_template/0149_sun-bcl-11-07.RULE +++ b/tests/licensedcode/data/models/rule_template/0149_sun-bcl-11-07.RULE @@ -1,3 +1,10 @@ +--- + +license_expression: sun-bcl-11-07 +notes: Template of the full text + +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/tests/licensedcode/data/models/rule_template/0149_sun-bcl-11-07.yml b/tests/licensedcode/data/models/rule_template/0149_sun-bcl-11-07.yml deleted file mode 100644 index 83f8b58687f..00000000000 --- a/tests/licensedcode/data/models/rule_template/0149_sun-bcl-11-07.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: sun-bcl-11-07 -notes: Template of the full text diff --git a/tests/licensedcode/data/models/rule_validate/not-a-license_gpl_kernel_sym205.RULE b/tests/licensedcode/data/models/rule_validate/not-a-license_gpl_kernel_sym205.RULE index 19a5721c227..93285c04c19 100644 --- a/tests/licensedcode/data/models/rule_validate/not-a-license_gpl_kernel_sym205.RULE +++ b/tests/licensedcode/data/models/rule_validate/not-a-license_gpl_kernel_sym205.RULE @@ -1 +1,8 @@ -define EXPORT_SYMBOL_GPL(name) \ No newline at end of file +--- + +is_false_positive: yes +notes: seen in the Linux Kernel sources (kernel symbols related code or docs) + +--- + +define EXPORT_SYMBOL_GPL(name) diff --git a/tests/licensedcode/data/models/rule_validate/not-a-license_gpl_kernel_sym205.yml b/tests/licensedcode/data/models/rule_validate/not-a-license_gpl_kernel_sym205.yml deleted file mode 100644 index 2ea2f70062f..00000000000 --- a/tests/licensedcode/data/models/rule_validate/not-a-license_gpl_kernel_sym205.yml +++ /dev/null @@ -1,2 +0,0 @@ -is_false_positive: yes -notes: seen in the Linux Kernel sources (kernel symbols related code or docs) diff --git a/tests/licensedcode/data/models/rule_validate_lang/0050_oclc-2.0.RULE b/tests/licensedcode/data/models/rule_validate_lang/0050_oclc-2.0.RULE index e532ef34ac4..d94c2582f2f 100644 --- a/tests/licensedcode/data/models/rule_validate_lang/0050_oclc-2.0.RULE +++ b/tests/licensedcode/data/models/rule_validate_lang/0050_oclc-2.0.RULE @@ -1 +1,9 @@ +--- + +license_expression: oclc-2.0 AND baz +language: foobar +notes: spdx_source_url + +--- + http://www.oclc.org/research/activities/software/license/v2final.htm \ No newline at end of file diff --git a/tests/licensedcode/data/models/rule_validate_lang/0050_oclc-2.0.yml b/tests/licensedcode/data/models/rule_validate_lang/0050_oclc-2.0.yml deleted file mode 100644 index 5475401f832..00000000000 --- a/tests/licensedcode/data/models/rule_validate_lang/0050_oclc-2.0.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: oclc-2.0 AND baz -language: foobar -notes: spdx_source_url diff --git a/tests/licensedcode/data/models/rule_validate_lang/0051_gpl-2.0.RULE b/tests/licensedcode/data/models/rule_validate_lang/0051_gpl-2.0.RULE index 4fdcedffa38..a14b26542a4 100644 --- a/tests/licensedcode/data/models/rule_validate_lang/0051_gpl-2.0.RULE +++ b/tests/licensedcode/data/models/rule_validate_lang/0051_gpl-2.0.RULE @@ -1 +1,8 @@ +--- + +license_expression: gpl-2.0 WITH baz +notes: GPL 2 small change + +--- + This program is free software; you can redistribute it and/or modify diff --git a/tests/licensedcode/data/models/rule_validate_lang/0051_gpl-2.0.yml b/tests/licensedcode/data/models/rule_validate_lang/0051_gpl-2.0.yml deleted file mode 100644 index 60f6d36553e..00000000000 --- a/tests/licensedcode/data/models/rule_validate_lang/0051_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 WITH baz -notes: GPL 2 small change diff --git a/tests/licensedcode/data/models/rule_with_extra_attributes/sun-bcl.RULE b/tests/licensedcode/data/models/rule_with_extra_attributes/sun-bcl.RULE index e3c26353c6e..c2a3f1c1b81 100644 --- a/tests/licensedcode/data/models/rule_with_extra_attributes/sun-bcl.RULE +++ b/tests/licensedcode/data/models/rule_with_extra_attributes/sun-bcl.RULE @@ -1,2 +1,9 @@ +--- + +license_expressionnotuce: sun-bcl +notes: Template of the full text + +--- + Sun Microsystems, Inc. Binary Code License Agreement diff --git a/tests/licensedcode/data/models/rule_with_extra_attributes/sun-bcl.yml b/tests/licensedcode/data/models/rule_with_extra_attributes/sun-bcl.yml deleted file mode 100644 index c2188e954ad..00000000000 --- a/tests/licensedcode/data/models/rule_with_extra_attributes/sun-bcl.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expressionnotuce: sun-bcl -notes: Template of the full text diff --git a/tests/licensedcode/data/models/rules/0050_oclc-2.0.RULE b/tests/licensedcode/data/models/rules/0050_oclc-2.0.RULE index e532ef34ac4..6b1deda3fd6 100644 --- a/tests/licensedcode/data/models/rules/0050_oclc-2.0.RULE +++ b/tests/licensedcode/data/models/rules/0050_oclc-2.0.RULE @@ -1 +1,8 @@ +--- + +license_expression: oclc-2.0 +notes: spdx_source_url + +--- + http://www.oclc.org/research/activities/software/license/v2final.htm \ No newline at end of file diff --git a/tests/licensedcode/data/models/rules/0050_oclc-2.0.yml b/tests/licensedcode/data/models/rules/0050_oclc-2.0.yml deleted file mode 100644 index fe032c220dc..00000000000 --- a/tests/licensedcode/data/models/rules/0050_oclc-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: oclc-2.0 -notes: spdx_source_url diff --git a/tests/licensedcode/data/models/rules/0051_gpl-2.0.RULE b/tests/licensedcode/data/models/rules/0051_gpl-2.0.RULE index af387ba9da7..acdf6de8386 100644 --- a/tests/licensedcode/data/models/rules/0051_gpl-2.0.RULE +++ b/tests/licensedcode/data/models/rules/0051_gpl-2.0.RULE @@ -1,3 +1,10 @@ +--- + +license_expression: gpl-2.0 +notes: GPL 2 small change + +--- + 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; version 2 dated June, 1991. diff --git a/tests/licensedcode/data/models/rules/0051_gpl-2.0.yml b/tests/licensedcode/data/models/rules/0051_gpl-2.0.yml deleted file mode 100644 index 864abd50e33..00000000000 --- a/tests/licensedcode/data/models/rules/0051_gpl-2.0.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: gpl-2.0 -notes: GPL 2 small change diff --git a/tests/licensedcode/data/models/rules/0052_lzma-sdk-original.RULE b/tests/licensedcode/data/models/rules/0052_lzma-sdk-original.RULE index 458d1a637f6..bbb4e9eb820 100644 --- a/tests/licensedcode/data/models/rules/0052_lzma-sdk-original.RULE +++ b/tests/licensedcode/data/models/rules/0052_lzma-sdk-original.RULE @@ -1 +1,8 @@ +--- + +license_expression: lzma-sdk-original +notes: homepage_url + +--- + http://www.7-zip.org/sdk.html \ No newline at end of file diff --git a/tests/licensedcode/data/models/rules/0052_lzma-sdk-original.yml b/tests/licensedcode/data/models/rules/0052_lzma-sdk-original.yml deleted file mode 100644 index 6baec9f3006..00000000000 --- a/tests/licensedcode/data/models/rules/0052_lzma-sdk-original.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: lzma-sdk-original -notes: homepage_url diff --git a/tests/licensedcode/data/models/similar_names/proprietary-10.RULE b/tests/licensedcode/data/models/similar_names/proprietary-10.RULE index ffda62be957..d3b710eec60 100644 --- a/tests/licensedcode/data/models/similar_names/proprietary-10.RULE +++ b/tests/licensedcode/data/models/similar_names/proprietary-10.RULE @@ -1,3 +1,10 @@ +--- + +license_expression: proprietary-license +is_license_notice: yes + +--- + THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIES diff --git a/tests/licensedcode/data/models/similar_names/proprietary-10.yml b/tests/licensedcode/data/models/similar_names/proprietary-10.yml deleted file mode 100644 index a189944d69d..00000000000 --- a/tests/licensedcode/data/models/similar_names/proprietary-10.yml +++ /dev/null @@ -1,2 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes diff --git a/tests/licensedcode/data/models/similar_names/proprietary_10.RULE b/tests/licensedcode/data/models/similar_names/proprietary_10.RULE index 12083ca919b..312c8d19a6d 100644 --- a/tests/licensedcode/data/models/similar_names/proprietary_10.RULE +++ b/tests/licensedcode/data/models/similar_names/proprietary_10.RULE @@ -1,3 +1,11 @@ +--- + +license_expression: proprietary-license +is_license_notice: yes +notes: IBM Device Driver Source Kit for OS/2 + +--- + /* The following IBM OS/2 source code is provided to you solely for */ /* the purpose of assisting you in your development of OS/2 device */ /* drivers. You may use this code in accordance with the IBM License */ diff --git a/tests/licensedcode/data/models/similar_names/proprietary_10.yml b/tests/licensedcode/data/models/similar_names/proprietary_10.yml deleted file mode 100644 index cb4f10bc679..00000000000 --- a/tests/licensedcode/data/models/similar_names/proprietary_10.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: proprietary-license -is_license_notice: yes -notes: IBM Device Driver Source Kit for OS/2 diff --git a/tests/licensedcode/data/models/validate/apache-2.0.LICENSE b/tests/licensedcode/data/models/validate/apache-2.0.LICENSE index 7348616c691..b11d06fbc76 100644 --- a/tests/licensedcode/data/models/validate/apache-2.0.LICENSE +++ b/tests/licensedcode/data/models/validate/apache-2.0.LICENSE @@ -1,5 +1,19 @@ +--- +key: apache-2.0 +short_name: Apache 2.0 +name: Apache License 2.0 +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +spdx_license_key: Apache-2.0 +text_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +osi_url: http://opensource.org/licenses/apache2.0.php +faq_url: http://www.apache.org/foundation/licence-FAQ.html +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION \ No newline at end of file diff --git a/tests/licensedcode/data/models/validate/apache-2.0.yml b/tests/licensedcode/data/models/validate/apache-2.0.yml deleted file mode 100644 index abeb5d2fb3c..00000000000 --- a/tests/licensedcode/data/models/validate/apache-2.0.yml +++ /dev/null @@ -1,11 +0,0 @@ -key: apache-2.0 -short_name: Apache 2.0 -name: Apache License 2.0 -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ -spdx_license_key: Apache-2.0 -text_urls: - - http://www.apache.org/licenses/LICENSE-2.0 -osi_url: http://opensource.org/licenses/apache2.0.php -faq_url: http://www.apache.org/foundation/licence-FAQ.html diff --git a/tests/licensedcode/data/models/validate/bsd-ack-carrot2.LICENSE b/tests/licensedcode/data/models/validate/bsd-ack-carrot2.LICENSE index 7348616c691..0026025e242 100644 --- a/tests/licensedcode/data/models/validate/bsd-ack-carrot2.LICENSE +++ b/tests/licensedcode/data/models/validate/bsd-ack-carrot2.LICENSE @@ -1,5 +1,9 @@ +--- +key: bsd-ack-carrot2 +--- + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION \ No newline at end of file diff --git a/tests/licensedcode/data/models/validate/bsd-ack-carrot2.yml b/tests/licensedcode/data/models/validate/bsd-ack-carrot2.yml deleted file mode 100644 index 2f7cbaf8fab..00000000000 --- a/tests/licensedcode/data/models/validate/bsd-ack-carrot2.yml +++ /dev/null @@ -1 +0,0 @@ -key: bsd-ack-carrot2 diff --git a/tests/licensedcode/data/models/validate/foo-2.0.LICENSE b/tests/licensedcode/data/models/validate/foo-2.0.LICENSE new file mode 100644 index 00000000000..effcbcde7c6 --- /dev/null +++ b/tests/licensedcode/data/models/validate/foo-2.0.LICENSE @@ -0,0 +1,9 @@ +--- +key: foo-2.0 +language: foobar +short_name: Foo +name: Foobar +category: Permissive +owner: Apache Software Foundation +homepage_url: http://www.apache.org/licenses/ +--- diff --git a/tests/licensedcode/data/models/validate/foo-2.0.yml b/tests/licensedcode/data/models/validate/foo-2.0.yml deleted file mode 100644 index f58e74a4f98..00000000000 --- a/tests/licensedcode/data/models/validate/foo-2.0.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: foo-2.0 -language: foobar -short_name: Foo -name: Foobar -category: Permissive -owner: Apache Software Foundation -homepage_url: http://www.apache.org/licenses/ diff --git a/tests/licensedcode/data/models/validate/gpl-1.0-plus.LICENSE b/tests/licensedcode/data/models/validate/gpl-1.0-plus.LICENSE index e24d1d2a7a7..09489eb1211 100644 --- a/tests/licensedcode/data/models/validate/gpl-1.0-plus.LICENSE +++ b/tests/licensedcode/data/models/validate/gpl-1.0-plus.LICENSE @@ -1,3 +1,13 @@ +--- +key: gpl-1.0-plus +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +spdx_license_key: GPL-1.0 +--- + 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 1, 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. diff --git a/tests/licensedcode/data/models/validate/gpl-1.0-plus.yml b/tests/licensedcode/data/models/validate/gpl-1.0-plus.yml deleted file mode 100644 index 1ff5be49307..00000000000 --- a/tests/licensedcode/data/models/validate/gpl-1.0-plus.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: gpl-1.0-plus -short_name: GPL 1.0 -name: GNU General Public License 1.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html -spdx_license_key: GPL-1.0 diff --git a/tests/licensedcode/data/models/validate/gpl-1.0.LICENSE b/tests/licensedcode/data/models/validate/gpl-1.0.LICENSE index b8f7fb132a9..a74625d90e4 100644 --- a/tests/licensedcode/data/models/validate/gpl-1.0.LICENSE +++ b/tests/licensedcode/data/models/validate/gpl-1.0.LICENSE @@ -1,5 +1,25 @@ +--- +key: gpl-1.0 +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: GNU Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-1.0.txt +text_urls: + - http://www.gnu.org/licenses/gpl-1.0.txt + - http://www.gnu.org/licenses/gpl-1.0.txt + - +faq_url: http://www.gnu.org/licenses/gpl-1.0.txt +osi_url: http://www.gnu.org/licenses/gpl-1.0.txt +other_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html + - http://www.gnu.org/licenses/gpl-1.0.txt + - http://www.gnu.org/licenses/gpl-1.0.txt + - +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/tests/licensedcode/data/models/validate/gpl-1.0.yml b/tests/licensedcode/data/models/validate/gpl-1.0.yml deleted file mode 100644 index 4c0ae6c54c5..00000000000 --- a/tests/licensedcode/data/models/validate/gpl-1.0.yml +++ /dev/null @@ -1,17 +0,0 @@ -key: gpl-1.0 -short_name: GPL 1.0 -name: GNU General Public License 1.0 -category: GNU Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-1.0.txt -text_urls: - - http://www.gnu.org/licenses/gpl-1.0.txt - - http://www.gnu.org/licenses/gpl-1.0.txt - - -faq_url: http://www.gnu.org/licenses/gpl-1.0.txt -osi_url: http://www.gnu.org/licenses/gpl-1.0.txt -other_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html - - http://www.gnu.org/licenses/gpl-1.0.txt - - http://www.gnu.org/licenses/gpl-1.0.txt - - diff --git a/tests/licensedcode/data/models/validate/w3c-docs-19990405.LICENSE b/tests/licensedcode/data/models/validate/w3c-docs-19990405.LICENSE new file mode 100644 index 00000000000..8cbea360172 --- /dev/null +++ b/tests/licensedcode/data/models/validate/w3c-docs-19990405.LICENSE @@ -0,0 +1,8 @@ +--- +key: w3c-docs-19990405 +short_name: W3C-DOCS-19990405 +name: W3C Document Notice and License (1999-04-05) +category: Permissive Restricted +owner: W3C - World Wide Web Consortium +homepage_url: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 +--- diff --git a/tests/licensedcode/data/models/validate/w3c-docs-19990405.yml b/tests/licensedcode/data/models/validate/w3c-docs-19990405.yml deleted file mode 100644 index a4c99d2ec80..00000000000 --- a/tests/licensedcode/data/models/validate/w3c-docs-19990405.yml +++ /dev/null @@ -1,6 +0,0 @@ -key: w3c-docs-19990405 -short_name: W3C-DOCS-19990405 -name: W3C Document Notice and License (1999-04-05) -category: Permissive Restricted -owner: W3C - World Wide Web Consortium -homepage_url: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 diff --git a/tests/licensedcode/data/perf/idx/rules/0149_sun-bcl-11-07.RULE b/tests/licensedcode/data/perf/idx/rules/0149_sun-bcl-11-07.RULE index b24e691ff95..fe77c1f4d5d 100644 --- a/tests/licensedcode/data/perf/idx/rules/0149_sun-bcl-11-07.RULE +++ b/tests/licensedcode/data/perf/idx/rules/0149_sun-bcl-11-07.RULE @@ -1,269 +1,273 @@ -Sun Microsystems, Inc. -Binary Code License Agreement - -READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED -SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY -"AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE -MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA -PACKAGE, YOU AGREE TO THE TERMS OF THIS -AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE -ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE -TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END -OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL -THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE -TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE -SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE -"DECLINE" BUTTON AT THE END OF THIS AGREEMENT. - -1. LICENSE TO USE. Sun grants you a -non-exclusive and non-transferable license for the -internal use only of the accompanying software and -documentation and any error corrections provided -by Sun (collectively "Software"), by here the number of -users and the class of computer hardware for which -the corresponding fee has been paid. - -2. RESTRICTIONS. Software is confidential and -copyrighted. Title to Software and all associated -intellectual property rights is retained by Sun -and/or its licensors. Except as specifically -authorized in any Supplemental License Terms, you -may not make copies of Software, other than a -single copy of Software for archival purposes. -Unless enforcement is prohibited by applicable -law, you may not modify, decompile, or reverse -engineer Software. Licensee acknowledges here that -Licensed Software is not designed or intended for -use in the design, construction, operation or -maintenance of any nuclear facility. Sun -Microsystems, Inc. disclaims any express or -implied warranty of fitness for such uses. No -right, title or interest in or to any trademark, -service mark, logo or trade name of Sun or its -licensors is granted under this Agreement. - -3. LIMITED WARRANTY. Sun warrants to you that for -a period of ninety (90) days from the date of -purchase, as evidenced by a copy of the receipt, -the media on which Software is furnished (if any) -will be free of defects in materials and -workmanship under normal use. Except for the -foregoing, Software is provided "AS IS". Your -exclusive remedy and Sun's entire liability here under -this limited warranty will be at Sun's option to -replace Software media or refund the fee paid for -Software. - -4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN -THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, -REPRESENTATIONS AND WARRANTIES, INCLUDING ANY -IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE -DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE -DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. - -5. LIMITATION OF LIABILITY. TO THE EXTENT NOT -PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS -LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT -OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, -INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED -REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT -OF OR RELATED TO THE USE OF OR INABILITY TO USE -SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE here -POSSIBILITY OF SUCH DAMAGES. In no event will -Sun's liability to you, whether in contract, tort -(including negligence), or otherwise, exceed the -amount paid by you for Software under this -Agreement. The foregoing limitations will apply -even if the above stated warranty fails of its -essential purpose. - -6. Termination. This Agreement is effective -until terminated. You may terminate this -Agreement at any time by destroying all copies of -Software. This Agreement will terminate -immediately without notice from Sun if you fail to -comply with any provision of this Agreement. Upon -Termination, you must destroy all copies of -Software. - -7. Export Regulations. All Software and technical -data delivered under this Agreement are subject to -US export control laws and may be subject to -export or import regulations in other countries. -You agree to comply strictly with all such laws here -and regulations and acknowledge that you have the -responsibility to obtain such licenses to export, -re-export, or import as may be required after -delivery to you. - -8. U.S. Government Restricted Rights. If Software -is being acquired by or on behalf of the U.S. -Government or by a U.S. Government prime -contractor or subcontractor (at any tier), then -the Government's rights in Software and -accompanying documentation will be only as set -forth in this Agreement; this is in accordance -with 48 CFR 227.7201 through 227.7202-4 (for -Department of Defense (DOD) acquisitions) and with -48 CFR 2.101 and 12.212 (for non-DOD -acquisitions). - -9. Governing Law. Any action related to this -Agreement will be governed by California law and -controlling U.S. federal law. No choice of law -rules of any jurisdiction will apply. - -10. Severability. If any provision of this -Agreement is held to be unenforceable, this -Agreement will remain in effect with the provision -omitted, unless omission would frustrate the -intent of the parties, in which case this -Agreement will immediately terminate. - -11. Integration. This Agreement is the entire -agreement between you and Sun relating to its -subject matter. It supersedes all prior or -contemporaneous oral or written communications, -proposals, representations and warranties and -prevails over any conflicting or additional terms -of any quote, order, acknowledgment, or other -communication between the parties relating to its -subject matter during the term of this Agreement. -No modification of this Agreement will be binding, -unless in writing and signed by an authorized -representative of each party. - -ProductName - -SUPPLEMENTAL LICENSE TERMS - -These supplemental license terms ("Supplemental -Terms") add to or modify the terms of the Binary -Code License Agreement (collectively, the -"Agreement"). Capitalized terms not defined in -these Supplemental Terms shall have the same -meanings ascribed to them in the Binary Code -License Agreement. These Supplemental Terms shall -supersede any inconsistent or conflicting terms in -the Binary Code License Agreement, or in any -license contained within the Software. - -1. Software Internal Use and Development License -Grant. Subject to the terms and conditions of this -Agreement, including, but not limited to Section 4 -(Java Technology Restrictions) of these -Supplemental Terms, Sun grants you a -non-exclusive, non-transferable, limited license -without fees to reproduce internally and use -internally the binary form of the Software -complete and unmodified for the sole purpose of -designing, developing, testing, and running your here -Java applets and applications intended to run on -Java-enabled general purpose desktop computers and -servers ("Programs"). - -2. License to Distribute Software. Subject to the -terms and conditions of this Agreement, including, -but not limited to Section 4 (Java Technology -Restrictions) of these Supplemental Terms, Sun -grants you a non-exclusive, non-transferable, -limited license without fees to reproduce and -distribute the Software, provided that: (i) you -distribute the Software complete and unmodified -and only bundled as part of, and for the sole -purpose of running, your Programs, (ii) the -Programs add significant and primary functionality -to the Software, (iii) you do not distribute -additional software intended to replace any -component(s) of the Software, (iv) you do not -remove or alter any proprietary legends or notices -contained in the Software, (v) you only distribute -the Software subject to a license agreement that -protects Sun's interests consistent with the terms -contained in this Agreement, and (vi) you agree to -defend and indemnify Sun and its licensors from -and against any damages, costs, liabilities, -settlement amounts and/or expenses (including -attorneys' fees) incurred in connection with any -claim, lawsuit or action by any third party that -arises or results from the use or distribution of -any and all Programs and/or Software. - -3. License to Distribute Redistributables. Subject -to the terms and conditions of this Agreement, -including but not limited to Section 4 (Java -Technology Restrictions) of these Supplemental -Terms, Sun grants you a non-exclusive, -non-transferable, limited license without fees to -reproduce and distribute those files specifically -identified as redistributable in the Software -"README" file ("Redistributables") provided that: -(i) you distribute the Redistributables complete -and unmodified (unless otherwise specified in the -applicable README file), and only bundled as part -of Programs, (ii) you do not distribute additional -software intended to supersede any component(s) of -the Redistributables, (iii) you do not remove or here -alter any proprietary legends or notices contained -in or on the Redistributables, (iv) you only -distribute the Redistributables pursuant to a -license agreement that protects Sun's interests -consistent with the terms contained in the -Agreement, and (v) you agree to defend and -indemnify Sun and its licensors from and against -any damages, costs, liabilities, settlement -amounts and/or expenses (including attorneys' -fees) incurred in connection with any claim, -lawsuit or action by any third party that arises -or results from the use or distribution of any and -all Programs and/or Software. - -4. Java Technology Restrictions. You may not -modify the Java Platform Interface ("JPI", -identified as classes contained within the "java" -package or any subpackages of the "java" package), -by creating additional classes within the JPI or -otherwise causing the addition to or modification -of the classes in the JPI. In the event that you -create an additional class and associated API(s) -which (i) extends the functionality of the Java -platform, and (ii) is exposed to third party -software developers for the purpose of developing -additional software which invokes such additional -API, you must promptly publish broadly an accurate -specification for such API for free use by all -developers. You may not create, or authorize your -licensees to create, additional classes, -interfaces, or subpackages that are in any way -identified as "java", "javax", "sun" or similar -convention as specified by Sun in any naming -convention designation. - -5. Trademarks and Logos. You acknowledge and agree -as between you and Sun that Sun owns the SUN, -SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks -and all SUN, SOLARIS, JAVA, JINI, FORTE, and -iPLANET-related trademarks, service marks, logos -and other brand designations ("Sun Marks"), and -you agree to comply with the Sun Trademark and -Logo Usage Requirements currently located at -http://www.sun.com/policies/trademarks. Any use -you make of the Sun Marks inures to Sun's benefit. - -6. Source Code. Software may contain source code -that is provided solely for reference purposes -pursuant to the terms of this Agreement. Source here -code may not be redistributed unless expressly -provided for in this Agreement. - -7. Termination for Infringement. Either party may -terminate this Agreement immediately should any -Software become, or in either party's opinion be -likely to become, the subject of a claim of -infringement of any intellectual property right. - -For inquiries please contact: Sun Microsystems, -Inc., 4150 Network Circle, Santa Clara, California -95054, U.S.A. -(LFI#128935/Form ID#011801) +--- +license_expression: sun-bcl-11-07 +--- + +Sun Microsystems, Inc. +Binary Code License Agreement + +READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED +SUPPLEMENTAL LICENSE TERMS (COLLECTIVELY +"AGREEMENT") CAREFULLY BEFORE OPENING THE SOFTWARE +MEDIA PACKAGE. BY OPENING THE SOFTWARE MEDIA +PACKAGE, YOU AGREE TO THE TERMS OF THIS +AGREEMENT. IF YOU ARE ACCESSING THE SOFTWARE +ELECTRONICALLY, INDICATE YOUR ACCEPTANCE OF THESE +TERMS BY SELECTING THE "ACCEPT" BUTTON AT THE END +OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL +THESE TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE +TO YOUR PLACE OF PURCHASE FOR A REFUND OR, IF THE +SOFTWARE IS ACCESSED ELECTRONICALLY, SELECT THE +"DECLINE" BUTTON AT THE END OF THIS AGREEMENT. + +1. LICENSE TO USE. Sun grants you a +non-exclusive and non-transferable license for the +internal use only of the accompanying software and +documentation and any error corrections provided +by Sun (collectively "Software"), by here the number of +users and the class of computer hardware for which +the corresponding fee has been paid. + +2. RESTRICTIONS. Software is confidential and +copyrighted. Title to Software and all associated +intellectual property rights is retained by Sun +and/or its licensors. Except as specifically +authorized in any Supplemental License Terms, you +may not make copies of Software, other than a +single copy of Software for archival purposes. +Unless enforcement is prohibited by applicable +law, you may not modify, decompile, or reverse +engineer Software. Licensee acknowledges here that +Licensed Software is not designed or intended for +use in the design, construction, operation or +maintenance of any nuclear facility. Sun +Microsystems, Inc. disclaims any express or +implied warranty of fitness for such uses. No +right, title or interest in or to any trademark, +service mark, logo or trade name of Sun or its +licensors is granted under this Agreement. + +3. LIMITED WARRANTY. Sun warrants to you that for +a period of ninety (90) days from the date of +purchase, as evidenced by a copy of the receipt, +the media on which Software is furnished (if any) +will be free of defects in materials and +workmanship under normal use. Except for the +foregoing, Software is provided "AS IS". Your +exclusive remedy and Sun's entire liability here under +this limited warranty will be at Sun's option to +replace Software media or refund the fee paid for +Software. + +4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN +THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, +REPRESENTATIONS AND WARRANTIES, INCLUDING ANY +IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE OR NON-INFRINGEMENT ARE +DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE +DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. + +5. LIMITATION OF LIABILITY. TO THE EXTENT NOT +PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS +LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT +OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, +INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED +REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT +OF OR RELATED TO THE USE OF OR INABILITY TO USE +SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE here +POSSIBILITY OF SUCH DAMAGES. In no event will +Sun's liability to you, whether in contract, tort +(including negligence), or otherwise, exceed the +amount paid by you for Software under this +Agreement. The foregoing limitations will apply +even if the above stated warranty fails of its +essential purpose. + +6. Termination. This Agreement is effective +until terminated. You may terminate this +Agreement at any time by destroying all copies of +Software. This Agreement will terminate +immediately without notice from Sun if you fail to +comply with any provision of this Agreement. Upon +Termination, you must destroy all copies of +Software. + +7. Export Regulations. All Software and technical +data delivered under this Agreement are subject to +US export control laws and may be subject to +export or import regulations in other countries. +You agree to comply strictly with all such laws here +and regulations and acknowledge that you have the +responsibility to obtain such licenses to export, +re-export, or import as may be required after +delivery to you. + +8. U.S. Government Restricted Rights. If Software +is being acquired by or on behalf of the U.S. +Government or by a U.S. Government prime +contractor or subcontractor (at any tier), then +the Government's rights in Software and +accompanying documentation will be only as set +forth in this Agreement; this is in accordance +with 48 CFR 227.7201 through 227.7202-4 (for +Department of Defense (DOD) acquisitions) and with +48 CFR 2.101 and 12.212 (for non-DOD +acquisitions). + +9. Governing Law. Any action related to this +Agreement will be governed by California law and +controlling U.S. federal law. No choice of law +rules of any jurisdiction will apply. + +10. Severability. If any provision of this +Agreement is held to be unenforceable, this +Agreement will remain in effect with the provision +omitted, unless omission would frustrate the +intent of the parties, in which case this +Agreement will immediately terminate. + +11. Integration. This Agreement is the entire +agreement between you and Sun relating to its +subject matter. It supersedes all prior or +contemporaneous oral or written communications, +proposals, representations and warranties and +prevails over any conflicting or additional terms +of any quote, order, acknowledgment, or other +communication between the parties relating to its +subject matter during the term of this Agreement. +No modification of this Agreement will be binding, +unless in writing and signed by an authorized +representative of each party. + +ProductName + +SUPPLEMENTAL LICENSE TERMS + +These supplemental license terms ("Supplemental +Terms") add to or modify the terms of the Binary +Code License Agreement (collectively, the +"Agreement"). Capitalized terms not defined in +these Supplemental Terms shall have the same +meanings ascribed to them in the Binary Code +License Agreement. These Supplemental Terms shall +supersede any inconsistent or conflicting terms in +the Binary Code License Agreement, or in any +license contained within the Software. + +1. Software Internal Use and Development License +Grant. Subject to the terms and conditions of this +Agreement, including, but not limited to Section 4 +(Java Technology Restrictions) of these +Supplemental Terms, Sun grants you a +non-exclusive, non-transferable, limited license +without fees to reproduce internally and use +internally the binary form of the Software +complete and unmodified for the sole purpose of +designing, developing, testing, and running your here +Java applets and applications intended to run on +Java-enabled general purpose desktop computers and +servers ("Programs"). + +2. License to Distribute Software. Subject to the +terms and conditions of this Agreement, including, +but not limited to Section 4 (Java Technology +Restrictions) of these Supplemental Terms, Sun +grants you a non-exclusive, non-transferable, +limited license without fees to reproduce and +distribute the Software, provided that: (i) you +distribute the Software complete and unmodified +and only bundled as part of, and for the sole +purpose of running, your Programs, (ii) the +Programs add significant and primary functionality +to the Software, (iii) you do not distribute +additional software intended to replace any +component(s) of the Software, (iv) you do not +remove or alter any proprietary legends or notices +contained in the Software, (v) you only distribute +the Software subject to a license agreement that +protects Sun's interests consistent with the terms +contained in this Agreement, and (vi) you agree to +defend and indemnify Sun and its licensors from +and against any damages, costs, liabilities, +settlement amounts and/or expenses (including +attorneys' fees) incurred in connection with any +claim, lawsuit or action by any third party that +arises or results from the use or distribution of +any and all Programs and/or Software. + +3. License to Distribute Redistributables. Subject +to the terms and conditions of this Agreement, +including but not limited to Section 4 (Java +Technology Restrictions) of these Supplemental +Terms, Sun grants you a non-exclusive, +non-transferable, limited license without fees to +reproduce and distribute those files specifically +identified as redistributable in the Software +"README" file ("Redistributables") provided that: +(i) you distribute the Redistributables complete +and unmodified (unless otherwise specified in the +applicable README file), and only bundled as part +of Programs, (ii) you do not distribute additional +software intended to supersede any component(s) of +the Redistributables, (iii) you do not remove or here +alter any proprietary legends or notices contained +in or on the Redistributables, (iv) you only +distribute the Redistributables pursuant to a +license agreement that protects Sun's interests +consistent with the terms contained in the +Agreement, and (v) you agree to defend and +indemnify Sun and its licensors from and against +any damages, costs, liabilities, settlement +amounts and/or expenses (including attorneys' +fees) incurred in connection with any claim, +lawsuit or action by any third party that arises +or results from the use or distribution of any and +all Programs and/or Software. + +4. Java Technology Restrictions. You may not +modify the Java Platform Interface ("JPI", +identified as classes contained within the "java" +package or any subpackages of the "java" package), +by creating additional classes within the JPI or +otherwise causing the addition to or modification +of the classes in the JPI. In the event that you +create an additional class and associated API(s) +which (i) extends the functionality of the Java +platform, and (ii) is exposed to third party +software developers for the purpose of developing +additional software which invokes such additional +API, you must promptly publish broadly an accurate +specification for such API for free use by all +developers. You may not create, or authorize your +licensees to create, additional classes, +interfaces, or subpackages that are in any way +identified as "java", "javax", "sun" or similar +convention as specified by Sun in any naming +convention designation. + +5. Trademarks and Logos. You acknowledge and agree +as between you and Sun that Sun owns the SUN, +SOLARIS, JAVA, JINI, FORTE, and iPLANET trademarks +and all SUN, SOLARIS, JAVA, JINI, FORTE, and +iPLANET-related trademarks, service marks, logos +and other brand designations ("Sun Marks"), and +you agree to comply with the Sun Trademark and +Logo Usage Requirements currently located at +http://www.sun.com/policies/trademarks. Any use +you make of the Sun Marks inures to Sun's benefit. + +6. Source Code. Software may contain source code +that is provided solely for reference purposes +pursuant to the terms of this Agreement. Source here +code may not be redistributed unless expressly +provided for in this Agreement. + +7. Termination for Infringement. Either party may +terminate this Agreement immediately should any +Software become, or in either party's opinion be +likely to become, the subject of a claim of +infringement of any intellectual property right. + +For inquiries please contact: Sun Microsystems, +Inc., 4150 Network Circle, Santa Clara, California +95054, U.S.A. +(LFI#128935/Form ID#011801) \ No newline at end of file diff --git a/tests/licensedcode/data/perf/idx/rules/0149_sun-bcl-11-07.yml b/tests/licensedcode/data/perf/idx/rules/0149_sun-bcl-11-07.yml deleted file mode 100644 index 1aa572546c5..00000000000 --- a/tests/licensedcode/data/perf/idx/rules/0149_sun-bcl-11-07.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: sun-bcl-11-07 diff --git a/tests/licensedcode/data/plugin_licenses_reference/scan.expected.json b/tests/licensedcode/data/plugin_licenses_reference/scan.expected.json index 6aee6965e7b..62ae0ddba79 100644 --- a/tests/licensedcode/data/plugin_licenses_reference/scan.expected.json +++ b/tests/licensedcode/data/plugin_licenses_reference/scan.expected.json @@ -83,7 +83,7 @@ "https://opensource.org/licenses/Apache-2.0", "https://www.apache.org/licenses/LICENSE-2.0" ], - "text": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License." + "text": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction,\nand distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by\nthe copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all\nother entities that control, are controlled by, or are under common\ncontrol with that entity. For the purposes of this definition,\n\"control\" means (i) the power, direct or indirect, to cause the\ndirection or management of such entity, whether by contract or\notherwise, or (ii) ownership of fifty percent (50%) or more of the\noutstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity\nexercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications,\nincluding but not limited to software source code, documentation\nsource, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical\ntransformation or translation of a Source form, including but\nnot limited to compiled object code, generated documentation,\nand conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or\nObject form, made available under the License, as indicated by a\ncopyright notice that is included in or attached to the work\n(an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object\nform, that is based on (or derived from) the Work and for which the\neditorial revisions, annotations, elaborations, or other modifications\nrepresent, as a whole, an original work of authorship. For the purposes\nof this License, Derivative Works shall not include works that remain\nseparable from, or merely link (or bind by name) to the interfaces of,\nthe Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including\nthe original version of the Work and any modifications or additions\nto that Work or Derivative Works thereof, that is intentionally\nsubmitted to Licensor for inclusion in the Work by the copyright owner\nor by an individual or Legal Entity authorized to submit on behalf of\nthe copyright owner. For the purposes of this definition, \"submitted\"\nmeans any form of electronic, verbal, or written communication sent\nto the Licensor or its representatives, including but not limited to\ncommunication on electronic mailing lists, source code control systems,\nand issue tracking systems that are managed by, or on behalf of, the\nLicensor for the purpose of discussing and improving the Work, but\nexcluding communication that is conspicuously marked or otherwise\ndesignated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity\non behalf of whom a Contribution has been received by Licensor and\nsubsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\nthis License, each Contributor hereby grants to You a perpetual,\nworldwide, non-exclusive, no-charge, royalty-free, irrevocable\ncopyright license to reproduce, prepare Derivative Works of,\npublicly display, publicly perform, sublicense, and distribute the\nWork and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\nthis License, each Contributor hereby grants to You a perpetual,\nworldwide, non-exclusive, no-charge, royalty-free, irrevocable\n(except as stated in this section) patent license to make, have made,\nuse, offer to sell, sell, import, and otherwise transfer the Work,\nwhere such license applies only to those patent claims licensable\nby such Contributor that are necessarily infringed by their\nContribution(s) alone or by combination of their Contribution(s)\nwith the Work to which such Contribution(s) was submitted. If You\ninstitute patent litigation against any entity (including a\ncross-claim or counterclaim in a lawsuit) alleging that the Work\nor a Contribution incorporated within the Work constitutes direct\nor contributory patent infringement, then any patent licenses\ngranted to You under this License for that Work shall terminate\nas of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\nWork or Derivative Works thereof in any medium, with or without\nmodifications, and in Source or Object form, provided that You\nmeet the following conditions:\n\n(a) You must give any other recipients of the Work or\nDerivative Works a copy of this License; and\n\n(b) You must cause any modified files to carry prominent notices\nstating that You changed the files; and\n\n(c) You must retain, in the Source form of any Derivative Works\nthat You distribute, all copyright, patent, trademark, and\nattribution notices from the Source form of the Work,\nexcluding those notices that do not pertain to any part of\nthe Derivative Works; and\n\n(d) If the Work includes a \"NOTICE\" text file as part of its\ndistribution, then any Derivative Works that You distribute must\ninclude a readable copy of the attribution notices contained\nwithin such NOTICE file, excluding those notices that do not\npertain to any part of the Derivative Works, in at least one\nof the following places: within a NOTICE text file distributed\nas part of the Derivative Works; within the Source form or\ndocumentation, if provided along with the Derivative Works; or,\nwithin a display generated by the Derivative Works, if and\nwherever such third-party notices normally appear. The contents\nof the NOTICE file are for informational purposes only and\ndo not modify the License. You may add Your own attribution\nnotices within Derivative Works that You distribute, alongside\nor as an addendum to the NOTICE text from the Work, provided\nthat such additional attribution notices cannot be construed\nas modifying the License.\n\nYou may add Your own copyright statement to Your modifications and\nmay provide additional or different license terms and conditions\nfor use, reproduction, or distribution of Your modifications, or\nfor any such Derivative Works as a whole, provided Your use,\nreproduction, and distribution of the Work otherwise complies with\nthe conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\nany Contribution intentionally submitted for inclusion in the Work\nby You to the Licensor shall be under the terms and conditions of\nthis License, without any additional terms or conditions.\nNotwithstanding the above, nothing herein shall supersede or modify\nthe terms of any separate license agreement you may have executed\nwith Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\nnames, trademarks, service marks, or product names of the Licensor,\nexcept as required for reasonable and customary use in describing the\norigin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\nagreed to in writing, Licensor provides the Work (and each\nContributor provides its Contributions) on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\nimplied, including, without limitation, any warranties or conditions\nof TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\nPARTICULAR PURPOSE. You are solely responsible for determining the\nappropriateness of using or redistributing the Work and assume any\nrisks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\nwhether in tort (including negligence), contract, or otherwise,\nunless required by applicable law (such as deliberate and grossly\nnegligent acts) or agreed to in writing, shall any Contributor be\nliable to You for damages, including any direct, indirect, special,\nincidental, or consequential damages of any character arising as a\nresult of this License or out of the use or inability to use the\nWork (including but not limited to damages for loss of goodwill,\nwork stoppage, computer failure or malfunction, or any and all\nother commercial damages or losses), even if such Contributor\nhas been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\nthe Work or Derivative Works thereof, You may choose to offer,\nand charge a fee for, acceptance of support, warranty, indemnity,\nor other liability obligations and/or rights consistent with this\nLicense. However, in accepting such obligations, You may act only\non Your own behalf and on Your sole responsibility, not on behalf\nof any other Contributor, and only if You agree to indemnify,\ndefend, and hold each Contributor harmless for any liability\nincurred by, or claims asserted against, such Contributor by reason\nof your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following\nboilerplate notice, with the fields enclosed by brackets \"[]\"\nreplaced with your own identifying information. (Don't include\nthe brackets!) The text should be enclosed in the appropriate\ncomment syntax for the file format. We also recommend that a\nfile or class name and description of purpose be included on the\nsame \"printed page\" as the copyright notice for easier\nidentification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License." }, { "key": "artistic-2.0", @@ -108,7 +108,7 @@ "https://www.opensource.org/licenses/artistic-license-2.0", "https://www.perlfoundation.org/artistic-license-20.html" ], - "text": " The Artistic License 2.0\n\n Copyright (c) 2000-2006, The Perl Foundation.\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\nPreamble\n\nThis license establishes the terms under which a given free software\nPackage may be copied, modified, distributed, and/or redistributed.\nThe intent is that the Copyright Holder maintains some artistic\ncontrol over the development of that Package while still keeping the\nPackage available as open source and free software.\n\nYou are always permitted to make arrangements wholly outside of this\nlicense directly with the Copyright Holder of a given Package. If the\nterms of this license do not permit the full use that you propose to\nmake of the Package, you should contact the Copyright Holder and seek\na different licensing arrangement. \n\nDefinitions\n\n \"Copyright Holder\" means the individual(s) or organization(s)\n named in the copyright notice for the entire Package.\n\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n\n \"You\" and \"your\" means any person who would like to copy,\n distribute, or modify the Package.\n\n \"Package\" means the collection of files distributed by the\n Copyright Holder, and derivatives of that collection and/or of\n those files. A given Package may consist of either the Standard\n Version, or a Modified Version.\n\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n\n \"Distributor Fee\" means any fee that you charge for Distributing\n this Package or providing support for this Package to another\n party. It does not mean licensing fees.\n\n \"Standard Version\" refers to the Package if it has not been\n modified, or has been modified only in ways explicitly requested\n by the Copyright Holder.\n\n \"Modified Version\" means the Package, if it has been changed, and\n such changes were not explicitly requested by the Copyright\n Holder. \n\n \"Original License\" means this Artistic License as Distributed with\n the Standard Version of the Package, in its current version or as\n it may be modified by The Perl Foundation in the future.\n\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n\n \"Compiled\" form means the compiled bytecode, object code, binary,\n or any other form resulting from mechanical transformation or\n translation of the Source form.\n\n\nPermission for Use and Modification Without Distribution\n\n(1) You are permitted to use the Standard Version and create and use\nModified Versions for any purpose without restriction, provided that\nyou do not Distribute the Modified Version.\n\n\nPermissions for Redistribution of the Standard Version\n\n(2) You may Distribute verbatim copies of the Source form of the\nStandard Version of this Package in any medium without restriction,\neither gratis or for a Distributor Fee, provided that you duplicate\nall of the original copyright notices and associated disclaimers. At\nyour discretion, such verbatim copies may or may not include a\nCompiled form of the Package.\n\n(3) You may apply any bug fixes, portability changes, and other\nmodifications made available from the Copyright Holder. The resulting\nPackage will still be considered the Standard Version, and as such\nwill be subject to the Original License.\n\n\nDistribution of Modified Versions of the Package as Source \n\n(4) You may Distribute your Modified Version as Source (either gratis\nor for a Distributor Fee, and with or without a Compiled form of the\nModified Version) provided that you clearly document how it differs\nfrom the Standard Version, including, but not limited to, documenting\nany non-standard features, executables, or modules, and provided that\nyou do at least ONE of the following:\n\n (a) make the Modified Version available to the Copyright Holder\n of the Standard Version, under the Original License, so that the\n Copyright Holder may include your modifications in the Standard\n Version.\n\n (b) ensure that installation of your Modified Version does not\n prevent the user installing or running the Standard Version. In\n addition, the Modified Version must bear a name that is different\n from the name of the Standard Version.\n\n (c) allow anyone who receives a copy of the Modified Version to\n make the Source form of the Modified Version available to others\n under\n \n (i) the Original License or\n\n (ii) a license that permits the licensee to freely copy,\n modify and redistribute the Modified Version using the same\n licensing terms that apply to the copy that the licensee\n received, and requires that the Source form of the Modified\n Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor\n Fees are allowed.\n\n\nDistribution of Compiled Forms of the Standard Version \nor Modified Versions without the Source\n\n(5) You may Distribute Compiled forms of the Standard Version without\nthe Source, provided that you include complete instructions on how to\nget the Source of the Standard Version. Such instructions must be\nvalid at the time of your distribution. If these instructions, at any\ntime while you are carrying out such distribution, become invalid, you\nmust provide new instructions on demand or cease further distribution.\nIf you provide valid instructions or cease distribution within thirty\ndays after you become aware that the instructions are invalid, then\nyou do not forfeit any of your rights under this license.\n\n(6) You may Distribute a Modified Version in Compiled form without\nthe Source, provided that you comply with Section 4 with respect to\nthe Source of the Modified Version.\n\n\nAggregating or Linking the Package \n\n(7) You may aggregate the Package (either the Standard Version or\nModified Version) with other packages and Distribute the resulting\naggregation provided that you do not charge a licensing fee for the\nPackage. Distributor Fees are permitted, and licensing fees for other\ncomponents in the aggregation are permitted. The terms of this license\napply to the use and Distribution of the Standard or Modified Versions\nas included in the aggregation.\n\n(8) You are permitted to link Modified and Standard Versions with\nother works, to embed the Package in a larger work of your own, or to\nbuild stand-alone binary or bytecode versions of applications that\ninclude the Package, and Distribute the result without restriction,\nprovided the result does not expose a direct interface to the Package.\n\n\nItems That are Not Considered Part of a Modified Version \n\n(9) Works (including, but not limited to, modules and scripts) that\nmerely extend or make use of the Package, do not, by themselves, cause\nthe Package to be a Modified Version. In addition, such works are not\nconsidered parts of the Package itself, and are not subject to the\nterms of this license.\n\n\nGeneral Provisions\n\n(10) Any use, modification, and distribution of the Standard or\nModified Versions is governed by this Artistic License. By using,\nmodifying or distributing the Package, you accept this license. Do not\nuse, modify, or distribute the Package, if you do not accept this\nlicense.\n\n(11) If your Modified Version has been derived from a Modified\nVersion made by someone other than you, you are nevertheless required\nto ensure that your Modified Version complies with the requirements of\nthis license.\n\n(12) This license does not grant you the right to use any trademark,\nservice mark, tradename, or logo of the Copyright Holder.\n\n(13) This license includes the non-exclusive, worldwide,\nfree-of-charge patent license to make, have made, use, offer to sell,\nsell, import and otherwise transfer the Package with respect to any\npatent claims licensable by the Copyright Holder that are necessarily\ninfringed by the Package. If you institute patent litigation\n(including a cross-claim or counterclaim) against any party alleging\nthat the Package constitutes direct or contributory patent\ninfringement, then this Artistic License to you shall terminate on the\ndate that such litigation is filed.\n\n(14) Disclaimer of Warranty:\nTHE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS \"AS\nIS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL\nLAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + "text": "The Artistic License 2.0\n\nCopyright (c) 2000-2006, The Perl Foundation.\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\nPreamble\n\nThis license establishes the terms under which a given free software\nPackage may be copied, modified, distributed, and/or redistributed.\nThe intent is that the Copyright Holder maintains some artistic\ncontrol over the development of that Package while still keeping the\nPackage available as open source and free software.\n\nYou are always permitted to make arrangements wholly outside of this\nlicense directly with the Copyright Holder of a given Package. If the\nterms of this license do not permit the full use that you propose to\nmake of the Package, you should contact the Copyright Holder and seek\na different licensing arrangement.\n\nDefinitions\n\n\"Copyright Holder\" means the individual(s) or organization(s)\nnamed in the copyright notice for the entire Package.\n\n\"Contributor\" means any party that has contributed code or other\nmaterial to the Package, in accordance with the Copyright Holder's\nprocedures.\n\n\"You\" and \"your\" means any person who would like to copy,\ndistribute, or modify the Package.\n\n\"Package\" means the collection of files distributed by the\nCopyright Holder, and derivatives of that collection and/or of\nthose files. A given Package may consist of either the Standard\nVersion, or a Modified Version.\n\n\"Distribute\" means providing a copy of the Package or making it\naccessible to anyone else, or in the case of a company or\norganization, to others outside of your company or organization.\n\n\"Distributor Fee\" means any fee that you charge for Distributing\nthis Package or providing support for this Package to another\nparty. It does not mean licensing fees.\n\n\"Standard Version\" refers to the Package if it has not been\nmodified, or has been modified only in ways explicitly requested\nby the Copyright Holder.\n\n\"Modified Version\" means the Package, if it has been changed, and\nsuch changes were not explicitly requested by the Copyright\nHolder.\n\n\"Original License\" means this Artistic License as Distributed with\nthe Standard Version of the Package, in its current version or as\nit may be modified by The Perl Foundation in the future.\n\n\"Source\" form means the source code, documentation source, and\nconfiguration files for the Package.\n\n\"Compiled\" form means the compiled bytecode, object code, binary,\nor any other form resulting from mechanical transformation or\ntranslation of the Source form.\n\n\nPermission for Use and Modification Without Distribution\n\n(1) You are permitted to use the Standard Version and create and use\nModified Versions for any purpose without restriction, provided that\nyou do not Distribute the Modified Version.\n\n\nPermissions for Redistribution of the Standard Version\n\n(2) You may Distribute verbatim copies of the Source form of the\nStandard Version of this Package in any medium without restriction,\neither gratis or for a Distributor Fee, provided that you duplicate\nall of the original copyright notices and associated disclaimers. At\nyour discretion, such verbatim copies may or may not include a\nCompiled form of the Package.\n\n(3) You may apply any bug fixes, portability changes, and other\nmodifications made available from the Copyright Holder. The resulting\nPackage will still be considered the Standard Version, and as such\nwill be subject to the Original License.\n\n\nDistribution of Modified Versions of the Package as Source\n\n(4) You may Distribute your Modified Version as Source (either gratis\nor for a Distributor Fee, and with or without a Compiled form of the\nModified Version) provided that you clearly document how it differs\nfrom the Standard Version, including, but not limited to, documenting\nany non-standard features, executables, or modules, and provided that\nyou do at least ONE of the following:\n\n(a) make the Modified Version available to the Copyright Holder\nof the Standard Version, under the Original License, so that the\nCopyright Holder may include your modifications in the Standard\nVersion.\n\n(b) ensure that installation of your Modified Version does not\nprevent the user installing or running the Standard Version. In\naddition, the Modified Version must bear a name that is different\nfrom the name of the Standard Version.\n\n(c) allow anyone who receives a copy of the Modified Version to\nmake the Source form of the Modified Version available to others\nunder\n\n(i) the Original License or\n\n(ii) a license that permits the licensee to freely copy,\nmodify and redistribute the Modified Version using the same\nlicensing terms that apply to the copy that the licensee\nreceived, and requires that the Source form of the Modified\nVersion, and of any works derived from it, be made freely\navailable in that license fees are prohibited but Distributor\nFees are allowed.\n\n\nDistribution of Compiled Forms of the Standard Version\nor Modified Versions without the Source\n\n(5) You may Distribute Compiled forms of the Standard Version without\nthe Source, provided that you include complete instructions on how to\nget the Source of the Standard Version. Such instructions must be\nvalid at the time of your distribution. If these instructions, at any\ntime while you are carrying out such distribution, become invalid, you\nmust provide new instructions on demand or cease further distribution.\nIf you provide valid instructions or cease distribution within thirty\ndays after you become aware that the instructions are invalid, then\nyou do not forfeit any of your rights under this license.\n\n(6) You may Distribute a Modified Version in Compiled form without\nthe Source, provided that you comply with Section 4 with respect to\nthe Source of the Modified Version.\n\n\nAggregating or Linking the Package\n\n(7) You may aggregate the Package (either the Standard Version or\nModified Version) with other packages and Distribute the resulting\naggregation provided that you do not charge a licensing fee for the\nPackage. Distributor Fees are permitted, and licensing fees for other\ncomponents in the aggregation are permitted. The terms of this license\napply to the use and Distribution of the Standard or Modified Versions\nas included in the aggregation.\n\n(8) You are permitted to link Modified and Standard Versions with\nother works, to embed the Package in a larger work of your own, or to\nbuild stand-alone binary or bytecode versions of applications that\ninclude the Package, and Distribute the result without restriction,\nprovided the result does not expose a direct interface to the Package.\n\n\nItems That are Not Considered Part of a Modified Version\n\n(9) Works (including, but not limited to, modules and scripts) that\nmerely extend or make use of the Package, do not, by themselves, cause\nthe Package to be a Modified Version. In addition, such works are not\nconsidered parts of the Package itself, and are not subject to the\nterms of this license.\n\n\nGeneral Provisions\n\n(10) Any use, modification, and distribution of the Standard or\nModified Versions is governed by this Artistic License. By using,\nmodifying or distributing the Package, you accept this license. Do not\nuse, modify, or distribute the Package, if you do not accept this\nlicense.\n\n(11) If your Modified Version has been derived from a Modified\nVersion made by someone other than you, you are nevertheless required\nto ensure that your Modified Version complies with the requirements of\nthis license.\n\n(12) This license does not grant you the right to use any trademark,\nservice mark, tradename, or logo of the Copyright Holder.\n\n(13) This license includes the non-exclusive, worldwide,\nfree-of-charge patent license to make, have made, use, offer to sell,\nsell, import and otherwise transfer the Package with respect to any\npatent claims licensable by the Copyright Holder that are necessarily\ninfringed by the Package. If you institute patent litigation\n(including a cross-claim or counterclaim) against any party alleging\nthat the Package constitutes direct or contributory patent\ninfringement, then this Artistic License to you shall terminate on the\ndate that such litigation is filed.\n\n(14) Disclaimer of Warranty:\nTHE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS \"AS\nIS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL\nLAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE." }, { "key": "bsd-simplified", diff --git a/tests/licensedcode/data/query/old_rtos_exact/gpl-2.0-freertos.RULE b/tests/licensedcode/data/query/old_rtos_exact/gpl-2.0-freertos.RULE new file mode 100644 index 00000000000..339328239c4 --- /dev/null +++ b/tests/licensedcode/data/query/old_rtos_exact/gpl-2.0-freertos.RULE @@ -0,0 +1,94 @@ +The FreeRTOS source code is licensed by a modified GNU General Public License - the +modification taking the form of an exception. + +The exception permits the source code of applications that use FreeRTOS solely +through the API published on this website to remain closed source, thus permitting +the use of FreeRTOS in commercial applications without necessitating that the whole +application be open sourced. The exception can only be used if you wish to combine +FreeRTOS with a proprietary product and you comply with the terms stated in the +exception itself. + +The FreeRTOS download also includes demo application source code, some of which is +provided by third parties AND IS LICENSED SEPARATELY FROM FREERTOS. + +For the avoidance of any doubt refer to the comment included at the top of each +source and header file for license and copyright information. + +This is a list of files for which Real Time Engineers Ltd. is not the copyright owner +and are NOT COVERED BY THE GPL. + +1. Various header files provided by silicon manufacturers and tool vendors that +define processor specific memory addresses and utility macros. Permission has been +granted by the various copyright holders for these files to be included in the +FreeRTOS download. Users must ensure license conditions are adhered to for any use +other than compilation of the FreeRTOS demo applications. + +2. The uIP TCP/IP stack the copyright of which is held by Adam Dunkels. Users must +ensure the open source license conditions stated at the top of each uIP source file +is understood and adhered to. + +3. The lwIP TCP/IP stack the copyright of which is held by the Swedish Institute of +Computer Science. Users must ensure the open source license conditions stated at the +top of each lwIP source file is understood and adhered to. + +4. Various peripheral driver source files and binaries provided by silicon +manufacturers and tool vendors. Permission has been granted by the various copyright +holders for these files to be included in the FreeRTOS download. Users must ensure +license conditions are adhered to for any use other than compilation of the FreeRTOS +demo applications. + +5. The files contained within FreeRTOS\Demo\WizNET_DEMO_TERN_186\tern_code, which are +slightly modified versions of code provided by and copyright to Tern Inc. + +Errors and omissions should be reported to Richard Barry, contact details for whom +can be obtained from the Contact page. + +This library 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, 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 General Public License for more details. + +You should have received a copy of the GNU General Public License along with this +library; see the file COPYING. If not, write to the Free Software Foundation, 51 +Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +GNU General Public License Exception + +Any FreeRTOS source code, whether modified or in its original release form, or +whether in whole or in part, can only be distributed by you under the terms of the +GNU General Public License plus this exception. An independent module is a module +which is not derived from or based on FreeRTOS. + +EXCEPTION TEXT: + +Clause 1 + +Linking FreeRTOS statically or dynamically with other modules is making a combined +work based on FreeRTOS. Thus, the terms and conditions of the GNU General Public +License cover the whole combination. + +As a special exception, the copyright holder of FreeRTOS gives you permission to link +FreeRTOS with independent modules that communicate with FreeRTOS solely through the +FreeRTOS API interface, regardless of the license terms of these independent modules, +and to copy and distribute the resulting combined work under terms of your choice, +provided that + +1. Every copy of the combined work is accompanied by a written statement that details +to the recipient the version of FreeRTOS used and an offer by yourself to provide the +FreeRTOS source code (including any modifications you may have made) should the +recipient request it. + +2. The combined work is not itself an RTOS, scheduler, kernel or related product. + +3. The independent modules add significant and primary functionality to FreeRTOS and +do not merely extend the existing functionality already present in FreeRTOS. + +Clause 2 + +FreeRTOS may not be used for any competitive or comparative purpose, including the +publication of any form of run time or compile time metric, without the express +permission of Real Time Engineers Ltd. (this is the norm within the industry and is +intended to ensure information accuracy). \ No newline at end of file diff --git a/tests/licensedcode/data/query/rtos_exact/gpl-2.0-freertos.RULE b/tests/licensedcode/data/query/rtos_exact/gpl-2.0-freertos.RULE index 339328239c4..34e6f278d4c 100644 --- a/tests/licensedcode/data/query/rtos_exact/gpl-2.0-freertos.RULE +++ b/tests/licensedcode/data/query/rtos_exact/gpl-2.0-freertos.RULE @@ -1,3 +1,7 @@ +--- +license_expression: gpl-2.0-freertos +--- + The FreeRTOS source code is licensed by a modified GNU General Public License - the modification taking the form of an exception. diff --git a/tests/licensedcode/data/query/rtos_exact/gpl-2.0-freertos.yml b/tests/licensedcode/data/query/rtos_exact/gpl-2.0-freertos.yml deleted file mode 100644 index f7783ebf653..00000000000 --- a/tests/licensedcode/data/query/rtos_exact/gpl-2.0-freertos.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: gpl-2.0-freertos diff --git a/tests/licensedcode/data/query/run_breaking/rules/lgpl-2.0-plus_23.RULE b/tests/licensedcode/data/query/run_breaking/rules/lgpl-2.0-plus_23.RULE index 9abd4da01d0..6c207c7621a 100644 --- a/tests/licensedcode/data/query/run_breaking/rules/lgpl-2.0-plus_23.RULE +++ b/tests/licensedcode/data/query/run_breaking/rules/lgpl-2.0-plus_23.RULE @@ -1,3 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +--- + + * 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; either @@ -11,4 +15,4 @@ + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation., 51 Franklin Street, Fifth Floor, -+ * Boston, MA 02110-1301, USA. ++ * Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/query/run_breaking/rules/lgpl-2.0-plus_23.yml b/tests/licensedcode/data/query/run_breaking/rules/lgpl-2.0-plus_23.yml deleted file mode 100644 index 7124f35b6dd..00000000000 --- a/tests/licensedcode/data/query/run_breaking/rules/lgpl-2.0-plus_23.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: lgpl-2.0-plus diff --git a/tests/licensedcode/data/query/runs/rules/lgpl-2.0-plus_23.RULE b/tests/licensedcode/data/query/runs/rules/lgpl-2.0-plus_23.RULE index 7223a143039..9e751ed138d 100644 --- a/tests/licensedcode/data/query/runs/rules/lgpl-2.0-plus_23.RULE +++ b/tests/licensedcode/data/query/runs/rules/lgpl-2.0-plus_23.RULE @@ -1,3 +1,7 @@ +--- +license_expression: lgpl-2.0-plus +--- + + * 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; either @@ -11,4 +15,4 @@ + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -+ * Boston, MA 02110-1301, USA. ++ * Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/tests/licensedcode/data/query/runs/rules/lgpl-2.0-plus_23.yml b/tests/licensedcode/data/query/runs/rules/lgpl-2.0-plus_23.yml deleted file mode 100644 index 7124f35b6dd..00000000000 --- a/tests/licensedcode/data/query/runs/rules/lgpl-2.0-plus_23.yml +++ /dev/null @@ -1 +0,0 @@ -license_expression: lgpl-2.0-plus diff --git a/tests/licensedcode/data/spdx/db-dupe-other/qt-company-exception-lgpl-2.1.LICENSE b/tests/licensedcode/data/spdx/db-dupe-other/qt-company-exception-lgpl-2.1.LICENSE new file mode 100644 index 00000000000..de5010899b7 --- /dev/null +++ b/tests/licensedcode/data/spdx/db-dupe-other/qt-company-exception-lgpl-2.1.LICENSE @@ -0,0 +1,9 @@ +--- +key: qt-company-exception-lgpl-2.1 +short_name: Qt Company Exception to LGPL 2.1 +name: Qt Company Exception to LGPL 2.1 +category: Copyleft Limited +owner: Qt Company +is_exception: yes +spdx_license_key: Qt-LGPL-exception-1.1 +--- diff --git a/tests/licensedcode/data/spdx/db-dupe-other/qt-company-exception-lgpl-2.1.yml b/tests/licensedcode/data/spdx/db-dupe-other/qt-company-exception-lgpl-2.1.yml deleted file mode 100644 index edbf2bb517e..00000000000 --- a/tests/licensedcode/data/spdx/db-dupe-other/qt-company-exception-lgpl-2.1.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: qt-company-exception-lgpl-2.1 -short_name: Qt Company Exception to LGPL 2.1 -name: Qt Company Exception to LGPL 2.1 -category: Copyleft Limited -owner: Qt Company -is_exception: yes -spdx_license_key: Qt-LGPL-exception-1.1 diff --git a/tests/licensedcode/data/spdx/db-dupe-other/qt-lgpl-exception-1.1.LICENSE b/tests/licensedcode/data/spdx/db-dupe-other/qt-lgpl-exception-1.1.LICENSE new file mode 100644 index 00000000000..9fed62888a8 --- /dev/null +++ b/tests/licensedcode/data/spdx/db-dupe-other/qt-lgpl-exception-1.1.LICENSE @@ -0,0 +1,12 @@ +--- +key: qt-lgpl-exception-1.1 +short_name: Qt LGPL exception 1.1 +name: Qt LGPL exception 1.1 +category: Copyleft Limited +owner: Qt Company +homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt +is_exception: yes +spdx_license_key: that +other_spdx_license_keys: + - Qt-LGPL-exception-1.1 +--- diff --git a/tests/licensedcode/data/spdx/db-dupe-other/qt-lgpl-exception-1.1.yml b/tests/licensedcode/data/spdx/db-dupe-other/qt-lgpl-exception-1.1.yml deleted file mode 100644 index ed2fe9ac30a..00000000000 --- a/tests/licensedcode/data/spdx/db-dupe-other/qt-lgpl-exception-1.1.yml +++ /dev/null @@ -1,10 +0,0 @@ -key: qt-lgpl-exception-1.1 -short_name: Qt LGPL exception 1.1 -name: Qt LGPL exception 1.1 -category: Copyleft Limited -owner: Qt Company -homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt -is_exception: yes -spdx_license_key: that -other_spdx_license_keys: - - Qt-LGPL-exception-1.1 diff --git a/tests/licensedcode/data/spdx/db-dupe/qt-company-exception-lgpl-2.1.LICENSE b/tests/licensedcode/data/spdx/db-dupe/qt-company-exception-lgpl-2.1.LICENSE new file mode 100644 index 00000000000..de5010899b7 --- /dev/null +++ b/tests/licensedcode/data/spdx/db-dupe/qt-company-exception-lgpl-2.1.LICENSE @@ -0,0 +1,9 @@ +--- +key: qt-company-exception-lgpl-2.1 +short_name: Qt Company Exception to LGPL 2.1 +name: Qt Company Exception to LGPL 2.1 +category: Copyleft Limited +owner: Qt Company +is_exception: yes +spdx_license_key: Qt-LGPL-exception-1.1 +--- diff --git a/tests/licensedcode/data/spdx/db-dupe/qt-company-exception-lgpl-2.1.yml b/tests/licensedcode/data/spdx/db-dupe/qt-company-exception-lgpl-2.1.yml deleted file mode 100644 index edbf2bb517e..00000000000 --- a/tests/licensedcode/data/spdx/db-dupe/qt-company-exception-lgpl-2.1.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: qt-company-exception-lgpl-2.1 -short_name: Qt Company Exception to LGPL 2.1 -name: Qt Company Exception to LGPL 2.1 -category: Copyleft Limited -owner: Qt Company -is_exception: yes -spdx_license_key: Qt-LGPL-exception-1.1 diff --git a/tests/licensedcode/data/spdx/db-dupe/qt-lgpl-exception-1.1.LICENSE b/tests/licensedcode/data/spdx/db-dupe/qt-lgpl-exception-1.1.LICENSE new file mode 100644 index 00000000000..f21977fe402 --- /dev/null +++ b/tests/licensedcode/data/spdx/db-dupe/qt-lgpl-exception-1.1.LICENSE @@ -0,0 +1,10 @@ +--- +key: qt-lgpl-exception-1.1 +short_name: Qt LGPL exception 1.1 +name: Qt LGPL exception 1.1 +category: Copyleft Limited +owner: Qt Company +homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt +is_exception: yes +spdx_license_key: Qt-LGPL-exception-1.1 +--- diff --git a/tests/licensedcode/data/spdx/db-dupe/qt-lgpl-exception-1.1.yml b/tests/licensedcode/data/spdx/db-dupe/qt-lgpl-exception-1.1.yml deleted file mode 100644 index bc90e4c478c..00000000000 --- a/tests/licensedcode/data/spdx/db-dupe/qt-lgpl-exception-1.1.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: qt-lgpl-exception-1.1 -short_name: Qt LGPL exception 1.1 -name: Qt LGPL exception 1.1 -category: Copyleft Limited -owner: Qt Company -homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt -is_exception: yes -spdx_license_key: Qt-LGPL-exception-1.1 diff --git a/tests/licensedcode/data/spdx/db-unknown/unknown-spdx.LICENSE b/tests/licensedcode/data/spdx/db-unknown/unknown-spdx.LICENSE new file mode 100644 index 00000000000..79e6cc118ee --- /dev/null +++ b/tests/licensedcode/data/spdx/db-unknown/unknown-spdx.LICENSE @@ -0,0 +1,7 @@ +--- +key: unknown-spdx +short_name: unknown SPDX +name: Unknown SPDX license detected but not recognized +category: Unstated License +owner: Unspecified +--- diff --git a/tests/licensedcode/data/spdx/db-unknown/unknown-spdx.yml b/tests/licensedcode/data/spdx/db-unknown/unknown-spdx.yml deleted file mode 100644 index 9d2e9ff8d6c..00000000000 --- a/tests/licensedcode/data/spdx/db-unknown/unknown-spdx.yml +++ /dev/null @@ -1,5 +0,0 @@ -key: unknown-spdx -short_name: unknown SPDX -name: Unknown SPDX license detected but not recognized -category: Unstated License -owner: Unspecified diff --git a/tests/licensedcode/data/spdx/db/qt-lgpl-exception-1.1.LICENSE b/tests/licensedcode/data/spdx/db/qt-lgpl-exception-1.1.LICENSE new file mode 100644 index 00000000000..f21977fe402 --- /dev/null +++ b/tests/licensedcode/data/spdx/db/qt-lgpl-exception-1.1.LICENSE @@ -0,0 +1,10 @@ +--- +key: qt-lgpl-exception-1.1 +short_name: Qt LGPL exception 1.1 +name: Qt LGPL exception 1.1 +category: Copyleft Limited +owner: Qt Company +homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt +is_exception: yes +spdx_license_key: Qt-LGPL-exception-1.1 +--- diff --git a/tests/licensedcode/data/spdx/db/qt-lgpl-exception-1.1.yml b/tests/licensedcode/data/spdx/db/qt-lgpl-exception-1.1.yml deleted file mode 100644 index bc90e4c478c..00000000000 --- a/tests/licensedcode/data/spdx/db/qt-lgpl-exception-1.1.yml +++ /dev/null @@ -1,8 +0,0 @@ -key: qt-lgpl-exception-1.1 -short_name: Qt LGPL exception 1.1 -name: Qt LGPL exception 1.1 -category: Copyleft Limited -owner: Qt Company -homepage_url: http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt -is_exception: yes -spdx_license_key: Qt-LGPL-exception-1.1 diff --git a/tests/licensedcode/data/spdx/db/xskat.LICENSE b/tests/licensedcode/data/spdx/db/xskat.LICENSE new file mode 100644 index 00000000000..6758802e1fd --- /dev/null +++ b/tests/licensedcode/data/spdx/db/xskat.LICENSE @@ -0,0 +1,9 @@ +--- +key: xskat +short_name: XSkat License +name: XSkat License +category: Permissive +owner: XSkat +homepage_url: https://fedoraproject.org/wiki/Licensing/XSkat_License +spdx_license_key: XSkat +--- diff --git a/tests/licensedcode/data/spdx/db/xskat.yml b/tests/licensedcode/data/spdx/db/xskat.yml deleted file mode 100644 index 2e45301c554..00000000000 --- a/tests/licensedcode/data/spdx/db/xskat.yml +++ /dev/null @@ -1,7 +0,0 @@ -key: xskat -short_name: XSkat License -name: XSkat License -category: Permissive -owner: XSkat -homepage_url: https://fedoraproject.org/wiki/Licensing/XSkat_License -spdx_license_key: XSkat diff --git a/tests/licensedcode/data/spdx/db/xxd.LICENSE b/tests/licensedcode/data/spdx/db/xxd.LICENSE new file mode 100644 index 00000000000..806e0ebd862 --- /dev/null +++ b/tests/licensedcode/data/spdx/db/xxd.LICENSE @@ -0,0 +1,11 @@ +--- +key: xxd +short_name: xxd License +name: xxd License +category: Permissive +owner: Juergen Weigert +homepage_url: https://github.com/unixdj/xxd/blob/master/README +other_spdx_license_keys: + - Foo + - Bar +--- diff --git a/tests/licensedcode/data/spdx/db/xxd.yml b/tests/licensedcode/data/spdx/db/xxd.yml deleted file mode 100644 index 27b0f66805e..00000000000 --- a/tests/licensedcode/data/spdx/db/xxd.yml +++ /dev/null @@ -1,9 +0,0 @@ -key: xxd -short_name: xxd License -name: xxd License -category: Permissive -owner: Juergen Weigert -homepage_url: https://github.com/unixdj/xxd/blob/master/README -other_spdx_license_keys: - - Foo - - Bar diff --git a/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-3-clause-no-nuclear-warranty.LICENSE b/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-3-clause-no-nuclear-warranty.LICENSE index 83be0033aeb..92935399b5e 100644 --- a/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-3-clause-no-nuclear-warranty.LICENSE +++ b/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-3-clause-no-nuclear-warranty.LICENSE @@ -1,3 +1,19 @@ +--- +key: bsd-3-clause-no-nuclear-warranty +short_name: BSD 3-Clause No Nuclear Warranty +name: BSD 3-Clause No Nuclear Warranty +category: Free Restricted +owner: Oracle (Sun) +homepage_url: https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt +notes: | + per SPDX.org, it is the same license as BSD-3-Clause-No-Nuclear-License, + except it has a disclaimer for nuclear factility use, instead of the + software not licensed for such use. +spdx_license_key: BSD-3-Clause-No-Nuclear-Warranty +other_urls: + - https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-3-clause-no-nuclear-warranty.yml b/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-3-clause-no-nuclear-warranty.yml deleted file mode 100644 index 58b6e4447af..00000000000 --- a/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-3-clause-no-nuclear-warranty.yml +++ /dev/null @@ -1,13 +0,0 @@ -key: bsd-3-clause-no-nuclear-warranty -short_name: BSD 3-Clause No Nuclear Warranty -name: BSD 3-Clause No Nuclear Warranty -category: Free Restricted -owner: Oracle (Sun) -homepage_url: https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt -notes: | - per SPDX.org, it is the same license as BSD-3-Clause-No-Nuclear-License, - except it has a disclaimer for nuclear factility use, instead of the - software not licensed for such use. -spdx_license_key: BSD-3-Clause-No-Nuclear-Warranty -other_urls: - - https://jogamp.org/git/?p=gluegen.git;a=blob_plain;f=LICENSE.txt diff --git a/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-new.LICENSE b/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-new.LICENSE index cb6a877f2f3..f4c50065607 100644 --- a/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-new.LICENSE +++ b/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-new.LICENSE @@ -1,3 +1,21 @@ +--- +key: bsd-new +short_name: BSD-3-Clause +name: BSD-3-Clause +category: Permissive +owner: Regents of the University of California +homepage_url: http://www.opensource.org/licenses/BSD-3-Clause +notes: Per SPDX.org, this license is OSI certified. +spdx_license_key: BSD-3-Clause +text_urls: + - http://www.opensource.org/licenses/BSD-3-Clause +osi_url: http://www.opensource.org/licenses/BSD-3-Clause +other_urls: + - http://framework.zend.com/license/new-bsd + - https://opensource.org/licenses/BSD-3-Clause +osi_license_key: BSD-3 +--- + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-new.yml b/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-new.yml deleted file mode 100644 index f2491543c80..00000000000 --- a/tests/licensedcode/data/spdx/rules-overlap/licenses/bsd-new.yml +++ /dev/null @@ -1,15 +0,0 @@ -key: bsd-new -short_name: BSD-3-Clause -name: BSD-3-Clause -category: Permissive -owner: Regents of the University of California -homepage_url: http://www.opensource.org/licenses/BSD-3-Clause -notes: Per SPDX.org, this license is OSI certified. -spdx_license_key: BSD-3-Clause -text_urls: - - http://www.opensource.org/licenses/BSD-3-Clause -osi_url: http://www.opensource.org/licenses/BSD-3-Clause -other_urls: - - http://framework.zend.com/license/new-bsd - - https://opensource.org/licenses/BSD-3-Clause -osi_license_key: BSD-3 diff --git a/tests/licensedcode/data/spdx/rules-overlap/licenses/unknown-spdx.LICENSE b/tests/licensedcode/data/spdx/rules-overlap/licenses/unknown-spdx.LICENSE new file mode 100644 index 00000000000..74546ecbe7b --- /dev/null +++ b/tests/licensedcode/data/spdx/rules-overlap/licenses/unknown-spdx.LICENSE @@ -0,0 +1,8 @@ +--- +key: unknown-spdx +short_name: unknown SPDX +name: Unknown SPDX license detected but not recognized +category: Unstated License +owner: Unspecified +is_unknown: yes +--- diff --git a/tests/licensedcode/data/spdx/rules-overlap/licenses/unknown-spdx.yml b/tests/licensedcode/data/spdx/rules-overlap/licenses/unknown-spdx.yml deleted file mode 100644 index 9d2e9ff8d6c..00000000000 --- a/tests/licensedcode/data/spdx/rules-overlap/licenses/unknown-spdx.yml +++ /dev/null @@ -1,5 +0,0 @@ -key: unknown-spdx -short_name: unknown SPDX -name: Unknown SPDX license detected but not recognized -category: Unstated License -owner: Unspecified diff --git a/tests/licensedcode/data/spdx/rules-overlap/rules/bsd-new_703.RULE b/tests/licensedcode/data/spdx/rules-overlap/rules/bsd-new_703.RULE index 0933ddfd899..2aecc26eef7 100644 --- a/tests/licensedcode/data/spdx/rules-overlap/rules/bsd-new_703.RULE +++ b/tests/licensedcode/data/spdx/rules-overlap/rules/bsd-new_703.RULE @@ -1 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +relevance: 100 +notes: This is a variant that eschews the dash in SPDX-license-identifier +--- + SPDX license identifier: BSD-3-Clause \ No newline at end of file diff --git a/tests/licensedcode/data/spdx/rules-overlap/rules/bsd-new_703.yml b/tests/licensedcode/data/spdx/rules-overlap/rules/bsd-new_703.yml deleted file mode 100644 index cb7d07d208d..00000000000 --- a/tests/licensedcode/data/spdx/rules-overlap/rules/bsd-new_703.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: bsd-new -is_license_tag: yes -relevance: 100 -notes: This is a variant that eschews the dash in SPDX-license-identifier diff --git a/tests/licensedcode/data/stopwords/index/licenses/gpl-1.0.LICENSE b/tests/licensedcode/data/stopwords/index/licenses/gpl-1.0.LICENSE index 18836bb9036..16ae7175e6a 100644 --- a/tests/licensedcode/data/stopwords/index/licenses/gpl-1.0.LICENSE +++ b/tests/licensedcode/data/stopwords/index/licenses/gpl-1.0.LICENSE @@ -1,7 +1,31 @@ +--- +key: gpl-1.0 +short_name: GPL 1.0 +name: GNU General Public License 1.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-1.0.html +notes: Per SPDX.org, this license was released February 1989. +spdx_license_key: GPL-1.0-only +other_spdx_license_keys: + - GPL-1.0 +text_urls: + - http://www.gnu.org/licenses/gpl-1.0.txt +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html + - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/licenses/gpl-1.0.yml b/tests/licensedcode/data/stopwords/index/licenses/gpl-1.0.yml deleted file mode 100644 index 29103215a7a..00000000000 --- a/tests/licensedcode/data/stopwords/index/licenses/gpl-1.0.yml +++ /dev/null @@ -1,22 +0,0 @@ -key: gpl-1.0 -short_name: GPL 1.0 -name: GNU General Public License 1.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-1.0.html -notes: Per SPDX.org, this license was released February 1989. -spdx_license_key: GPL-1.0-only -other_spdx_license_keys: - - GPL-1.0 -text_urls: - - http://www.gnu.org/licenses/gpl-1.0.txt -faq_url: http://www.gnu.org/licenses/gpl-faq.html -other_urls: - - http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html - - https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/tests/licensedcode/data/stopwords/index/licenses/gpl-2.0.LICENSE b/tests/licensedcode/data/stopwords/index/licenses/gpl-2.0.LICENSE index d9f9a1e152c..0e9adda8dd1 100644 --- a/tests/licensedcode/data/stopwords/index/licenses/gpl-2.0.LICENSE +++ b/tests/licensedcode/data/stopwords/index/licenses/gpl-2.0.LICENSE @@ -1,5 +1,48 @@ +--- +key: gpl-2.0 +short_name: GPL 2.0 +name: GNU General Public License 2.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-2.0.html +notes: This is the last version of the GPL text as published by the FSF. This variation was + published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt + It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html + It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere + both in the text and HTML formats. There are many other variations of the GPL 2.0 text that + were published over the years by the FSF and the gnu.org website. You can find the detailed + history of this text at https://github.com/pombredanne/gpl-history and each variant is available + as a license detection rule. Per SPDX.org, this license was released June 1991 This license + is OSI certified. +spdx_license_key: GPL-2.0-only +other_spdx_license_keys: + - GPL-2.0 + - GPL 2.0 +text_urls: + - http://www.gnu.org/licenses/gpl-2.0.txt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +osi_url: http://opensource.org/licenses/gpl-license.php +faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html +other_urls: + - http://creativecommons.org/choose/cc-gpl + - http://creativecommons.org/images/public/cc-GPL-a.png + - http://creativecommons.org/licenses/GPL/2.0/ + - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt + - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html + - http://www.opensource.org/licenses/GPL-2.0 + - https://opensource.org/licenses/GPL-2.0 + - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html +ignorable_copyrights: + - Copyright (c) 1989, 1991 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +osi_license_key: GPL-2.0 +--- + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/licenses/gpl-2.0.yml b/tests/licensedcode/data/stopwords/index/licenses/gpl-2.0.yml deleted file mode 100644 index d4b771db000..00000000000 --- a/tests/licensedcode/data/stopwords/index/licenses/gpl-2.0.yml +++ /dev/null @@ -1,45 +0,0 @@ -key: gpl-2.0 -short_name: GPL 2.0 -name: GNU General Public License 2.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-2.0.html -notes: This is the last version of the GPL text as published by the FSF. - This variation was published around about the time of the FSF released the GPL 3 - in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt - It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt - and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html - It refers to the Franklin Street address and to the - GNU Lesser General Public License everywhere both in the text and HTML - formats. There are many other variations of the GPL 2.0 text that were - published over the years by the FSF and the gnu.org website. You can find the - detailed history of this text at https://github.com/pombredanne/gpl-history - and each variant is available as a license detection rule. - Per SPDX.org, this license was released June 1991 - This license is OSI certified. - -spdx_license_key: GPL-2.0-only -other_spdx_license_keys: - - GPL-2.0 - - GPL 2.0 -text_urls: - - http://www.gnu.org/licenses/gpl-2.0.txt - - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -osi_url: http://opensource.org/licenses/gpl-license.php -faq_url: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html -other_urls: - - http://creativecommons.org/choose/cc-gpl - - http://creativecommons.org/images/public/cc-GPL-a.png - - http://creativecommons.org/licenses/GPL/2.0/ - - http://creativecommons.org/licenses/GPL/2.0/legalcode.pt - - http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html - - http://www.opensource.org/licenses/GPL-2.0 - - https://opensource.org/licenses/GPL-2.0 - - https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html -ignorable_copyrights: - - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation -osi_license_key: GPL-2.0 diff --git a/tests/licensedcode/data/stopwords/index/licenses/gpl-3.0.LICENSE b/tests/licensedcode/data/stopwords/index/licenses/gpl-3.0.LICENSE index 17b5870a1c0..333e809200b 100644 --- a/tests/licensedcode/data/stopwords/index/licenses/gpl-3.0.LICENSE +++ b/tests/licensedcode/data/stopwords/index/licenses/gpl-3.0.LICENSE @@ -1,6 +1,40 @@ +--- +key: gpl-3.0 +short_name: GPL 3.0 +name: GNU General Public License 3.0 +category: Copyleft +owner: Free Software Foundation (FSF) +homepage_url: http://www.gnu.org/licenses/gpl-3.0.html +notes: | + Per SPDX.org, this license was released 29 June 2007 This license is OSI + certified. +spdx_license_key: GPL-3.0-only +other_spdx_license_keys: + - GPL-3.0 +text_urls: + - http://www.gnu.org/licenses/gpl-3.0-standalone.html + - http://www.gnu.org/licenses/gpl-3.0.txt +osi_url: http://opensource.org/licenses/gpl-3.0.html +faq_url: http://www.gnu.org/licenses/gpl-faq.html +other_urls: + - http://www.gnu.org/licenses/quick-guide-gplv3.html + - http://www.opensource.org/licenses/GPL-3.0 + - https://opensource.org/licenses/GPL-3.0 + - https://www.gnu.org/licenses/gpl-3.0-standalone.html +ignorable_copyrights: + - Copyright (c) 2007 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - https://fsf.org/ + - https://www.gnu.org/licenses/ + - https://www.gnu.org/licenses/why-not-lgpl.html +osi_license_key: GPL-3.0 +--- + GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. + of this license document, but changing it is not allowed. \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/licenses/gpl-3.0.yml b/tests/licensedcode/data/stopwords/index/licenses/gpl-3.0.yml deleted file mode 100644 index b6fd0b90446..00000000000 --- a/tests/licensedcode/data/stopwords/index/licenses/gpl-3.0.yml +++ /dev/null @@ -1,31 +0,0 @@ -key: gpl-3.0 -short_name: GPL 3.0 -name: GNU General Public License 3.0 -category: Copyleft -owner: Free Software Foundation (FSF) -homepage_url: http://www.gnu.org/licenses/gpl-3.0.html -notes: | - Per SPDX.org, this license was released 29 June 2007 This license is OSI - certified. -spdx_license_key: GPL-3.0-only -other_spdx_license_keys: - - GPL-3.0 -text_urls: - - http://www.gnu.org/licenses/gpl-3.0-standalone.html - - http://www.gnu.org/licenses/gpl-3.0.txt -osi_url: http://opensource.org/licenses/gpl-3.0.html -faq_url: http://www.gnu.org/licenses/gpl-faq.html -other_urls: - - http://www.gnu.org/licenses/quick-guide-gplv3.html - - http://www.opensource.org/licenses/GPL-3.0 - - https://opensource.org/licenses/GPL-3.0 - - https://www.gnu.org/licenses/gpl-3.0-standalone.html -ignorable_copyrights: - - Copyright (c) 2007 Free Software Foundation, Inc. -ignorable_holders: - - Free Software Foundation, Inc. -ignorable_urls: - - https://fsf.org/ - - https://www.gnu.org/licenses/ - - https://www.gnu.org/licenses/why-not-lgpl.html -osi_license_key: GPL-3.0 diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.SPDX.RULE b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.SPDX.RULE index a076a744b7f..24bd5f83c27 100644 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.SPDX.RULE +++ b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.SPDX.RULE @@ -1,3 +1,16 @@ +--- +license_expression: gpl-1.0 +is_license_text: yes +minimum_coverage: 10 +notes: license text as published by SPDX +ignorable_copyrights: + - Copyright (c) 1989 Free Software Foundation, Inc. + - copyrighted by the Free Software Foundation +ignorable_holders: + - Free Software Foundation, Inc. + - the Free Software Foundation +--- + GNU General Public License, version 1 GNU GENERAL PUBLIC LICENSE @@ -6,4 +19,4 @@ GNU General Public License, version 1 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. + of this license document, but changing it is not allowed. \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.SPDX.yml b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.SPDX.yml deleted file mode 100644 index d43b4a275c4..00000000000 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.SPDX.yml +++ /dev/null @@ -1,10 +0,0 @@ -license_expression: gpl-1.0 -is_license_text: yes -minimum_coverage: 10 -notes: license text as published by SPDX -ignorable_copyrights: - - Copyright (c) 1989 Free Software Foundation, Inc. - - copyrighted by the Free Software Foundation -ignorable_holders: - - Free Software Foundation, Inc. - - the Free Software Foundation diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.bare.RULE b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.bare.RULE index 3a3e12bcad9..f8932b85704 100644 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.bare.RULE +++ b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.bare.RULE @@ -1 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 50 +--- + GPL \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.bare.yml b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.bare.yml deleted file mode 100644 index e4a09ce66ff..00000000000 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0.bare.yml +++ /dev/null @@ -1,3 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 50 \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0_16.RULE b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0_16.RULE index 81ce7efdc08..b949e04a22e 100644 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0_16.RULE +++ b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0_16.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-1.0 +is_license_reference: yes +relevance: 100 +is_continuous: yes +--- + {{GPL 10}} \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0_16.yml b/tests/licensedcode/data/stopwords/index/rules/gpl-1.0_16.yml deleted file mode 100644 index 46672cba3a2..00000000000 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-1.0_16.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-1.0 -is_license_reference: yes -relevance: 100 -is_continuous: yes diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-2.0_693.RULE b/tests/licensedcode/data/stopwords/index/rules/gpl-2.0_693.RULE index b8d26833089..793bf4065bb 100644 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-2.0_693.RULE +++ b/tests/licensedcode/data/stopwords/index/rules/gpl-2.0_693.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +relevance: 100 +is_continuous: yes +--- + {{GPL 20}} \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-2.0_693.yml b/tests/licensedcode/data/stopwords/index/rules/gpl-2.0_693.yml deleted file mode 100644 index aa2f6635071..00000000000 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-2.0_693.yml +++ /dev/null @@ -1,4 +0,0 @@ -license_expression: gpl-2.0 -is_license_reference: yes -relevance: 100 -is_continuous: yes diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-3.0_126.RULE b/tests/licensedcode/data/stopwords/index/rules/gpl-3.0_126.RULE index 499a8ce5f36..ba6bc4bab4c 100644 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-3.0_126.RULE +++ b/tests/licensedcode/data/stopwords/index/rules/gpl-3.0_126.RULE @@ -1 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +relevance: 100 +is_continuous: yes +--- + {{GPL 30}} \ No newline at end of file diff --git a/tests/licensedcode/data/stopwords/index/rules/gpl-3.0_126.yml b/tests/licensedcode/data/stopwords/index/rules/gpl-3.0_126.yml deleted file mode 100644 index 12b56cf879c..00000000000 --- a/tests/licensedcode/data/stopwords/index/rules/gpl-3.0_126.yml +++ /dev/null @@ -1,5 +0,0 @@ -license_expression: gpl-3.0 -is_license_reference: yes -relevance: 100 -is_continuous: yes - diff --git a/tests/licensedcode/test_license_db.py b/tests/licensedcode/test_license_db.py new file mode 100644 index 00000000000..b107a0fd116 --- /dev/null +++ b/tests/licensedcode/test_license_db.py @@ -0,0 +1,54 @@ +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# ScanCode is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/nexB/scancode-toolkit for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# + +import os +import pytest +from pathlib import Path + +from licensedcode.license_db import generate +from commoncode.testcase import FileBasedTesting +from commoncode.testcase import FileDrivenTesting +from scancode.cli_test_utils import load_both_and_check_json +from scancode.cli_test_utils import run_scan_click +from scancode_config import REGEN_TEST_FIXTURES + + +class LicenseDbTest(FileBasedTesting): + + test_data_dir = os.path.join(os.path.dirname(__file__), 'data/license_db') + + def test_generate_license_dump_from_license_data(self): + + licenses = self.get_test_loc('licenses') + licenses_dump = self.get_test_loc('license_dump') + + generate(build_location=licenses_dump, licenses_data_dir=licenses) + + license_index_json = self.get_test_loc('license_dump/index.json') + license_index_yaml = self.get_test_loc('license_dump/index.yml') + license_index_html = self.get_test_loc('license_dump/index.html') + + index_json_path = Path(license_index_json) + index_html_path = Path(license_index_html) + index_yaml_path = Path(license_index_yaml) + + assert index_html_path.exists() + assert index_json_path.exists() + assert index_yaml_path.exists() + + expected_license_index_json = self.get_test_loc('index.json-expected.json') + load_both_and_check_json(expected_license_index_json, license_index_json, regen=REGEN_TEST_FIXTURES) + +class LicenseDBScanTest(FileDrivenTesting): + + @pytest.mark.scanslow + def test_license_dump_option_works(self): + license_dump_dir = self.get_temp_dir() + args = ['--get-license-data', license_dump_dir] + run_scan_click(args) diff --git a/tests/licensedcode/test_match_hash.py b/tests/licensedcode/test_match_hash.py index c971d5564d7..a56fa2e8e70 100644 --- a/tests/licensedcode/test_match_hash.py +++ b/tests/licensedcode/test_match_hash.py @@ -26,7 +26,7 @@ def test_match_hash_can_match_exactly(self): rule_dir = self.get_test_loc('hash/rules') rules = list(models.load_rules(rule_dir)) idx = index.LicenseIndex(rules) - query_doc = self.get_test_loc('hash/rules/lgpl-2.0-plus_23.RULE') + query_doc = self.get_test_loc('hash/old_rules/lgpl-2.0-plus_23.RULE') matches = idx.match(query_doc) assert len(matches) == 1 diff --git a/tests/licensedcode/test_models.py b/tests/licensedcode/test_models.py index 6e768c231b2..0e84d9090bf 100644 --- a/tests/licensedcode/test_models.py +++ b/tests/licensedcode/test_models.py @@ -20,20 +20,11 @@ from licensedcode.models import Rule from licensedcode.models import rules_data_dir from licensedcode.spans import Span -from scancode_config import REGEN_TEST_FIXTURES +from scancode.cli_test_utils import check_json TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), 'data') -def check_json(expected, results, regen=REGEN_TEST_FIXTURES): - if regen: - mode = 'w' - with open(expected, mode) as ex: - json.dump(results, ex, indent=2, separators=(',', ': ')) - with open(expected) as ex: - expected = json.load(ex) - assert results == expected - def as_sorted_mapping_seq(licenses): """ @@ -90,7 +81,7 @@ def test_validate_license_library_data(self): def test_validate_license_library_can_return_errors(self): test_dir = self.get_test_loc('models/validate') - lics = models.load_licenses(test_dir) + lics = models.load_licenses(test_dir, check_consistency=False) errors, warnings, infos = models.License.validate( lics, no_dupe_urls=True, @@ -143,20 +134,27 @@ def test_validate_license_library_can_return_errors(self): } assert infos == expected_infos - def test_load_licenses_fails_if_directory_contains_orphaned_files(self): - test_dir = self.get_test_loc('models/orphaned_licenses') + def test_load_licenses_fails_if_file_contains_empty_yaml_frontmatter(self): + test_dir = self.get_test_loc('models/licenses_without_frontmatter') try: list(models.load_licenses(test_dir)) self.fail('Exception not raised') except Exception as e: - assert 'Some License files are orphaned in' in str(e) + assert 'Cannot load License with empty YAML frontmatter' in str(e) - def test_license_text_file_and_data_file_are_computed_correctly(self): + def test_load_licenses_fails_if_file_contains_empty_text(self): + test_dir = self.get_test_loc('models/licenses_without_text') + try: + list(models.load_licenses(test_dir)) + self.fail('Exception not raised') + except Exception as e: + assert 'only deprecated, generic or unknown licenses can exist without text' in str(e) + + def test_license_file_is_computed_correctly(self): licenses_data_dir = self.get_test_loc('models/data_text_files/licenses') licenses = models.load_licenses(licenses_data_dir) lic = licenses['gpl-1.0'] - assert lic.text_file(licenses_data_dir=licenses_data_dir).startswith(licenses_data_dir) - assert lic.data_file(licenses_data_dir=licenses_data_dir).startswith(licenses_data_dir) + assert lic.license_file(licenses_data_dir=licenses_data_dir).startswith(licenses_data_dir) def test_rule_from_license_have_text_file_and_data_file_are_computed_correctly(self): licenses_data_dir = self.get_test_loc('models/data_text_files/licenses') @@ -164,12 +162,7 @@ def test_rule_from_license_have_text_file_and_data_file_are_computed_correctly(s lic = licenses['gpl-1.0'] rule = models.build_rule_from_license(license_obj=lic) - assert rule.text_file( - licenses_data_dir=licenses_data_dir, - rules_data_dir=None, - ).startswith(licenses_data_dir) - - assert rule.data_file( + assert rule.rule_file( licenses_data_dir=licenses_data_dir, rules_data_dir=None, ).startswith(licenses_data_dir) @@ -510,20 +503,19 @@ def test_compute_relevance_is_using_rule_length(self): assert rule.relevance == 0 def test_rule_must_have_text(self): - data_file = self.get_test_loc('models/rule_no_text/mit.yml') + rule_file = self.get_test_loc('models/rule_no_text/mit.RULE') try: - Rule.from_files(data_file=data_file, text_file=None) + Rule.from_file(rule_file=rule_file) self.fail('Exception not raised.') except InvalidRule as e: - assert str(e).startswith('Cannot load rule without its corresponding text_file and data file') + assert 'Cannot load rule with empty text' in str(e) def test_rule_cannot_contain_extra_unknown_attributes(self): - data_file = self.get_test_loc('models/rule_with_extra_attributes/sun-bcl.yml') - text_file = self.get_test_loc('models/rule_with_extra_attributes/sun-bcl.RULE') + rule_file = self.get_test_loc('models/rule_with_extra_attributes/sun-bcl.RULE') expected = 'data file has unknown attributes: license_expressionnotuce' try: - Rule.from_files(data_file=data_file, text_file=text_file) + Rule.from_file(rule_file=rule_file) self.fail('Exception not raised.') except Exception as e: assert expected in str(e) @@ -579,8 +571,7 @@ def test_rule_text_file_and_data_file_are_computed_correctly(self): rule_dir = self.get_test_loc('models/data_text_files/rules') rules = list(models.load_rules(rule_dir)) rule = rules[0] - assert rule.text_file(rules_data_dir=rule_dir).startswith(rule_dir) - assert rule.data_file(rules_data_dir=rule_dir).startswith(rule_dir) + assert rule.rule_file(rules_data_dir=rule_dir).startswith(rule_dir) class TestGetKeyPhrases(TestCaseClass): diff --git a/tests/licensedcode/test_query.py b/tests/licensedcode/test_query.py index 2ec62cb90a2..c5fd2dbf725 100644 --- a/tests/licensedcode/test_query.py +++ b/tests/licensedcode/test_query.py @@ -283,7 +283,7 @@ def test_query_and_index_tokens_are_identical_for_same_text(self): rule_dir = self.get_test_loc('query/rtos_exact/') from licensedcode.models import load_rules idx = index.LicenseIndex(load_rules(rule_dir)) - query_loc = self.get_test_loc('query/rtos_exact/gpl-2.0-freertos.RULE') + query_loc = self.get_test_loc('query/old_rtos_exact/gpl-2.0-freertos.RULE') index_text_tokens = [idx.tokens_by_tid[t] for t in idx.tids_by_rid[0]] diff --git a/tests/licensedcode/test_zzzz_cache.py b/tests/licensedcode/test_zzzz_cache.py index ad9740f75e4..9d3e29a8b07 100644 --- a/tests/licensedcode/test_zzzz_cache.py +++ b/tests/licensedcode/test_zzzz_cache.py @@ -109,7 +109,7 @@ def test_get_unknown_spdx_symbol(self): def test_get_spdx_symbols_from_dir(self): test_dir = self.get_test_loc('spdx/db') from licensedcode.models import load_licenses - test_licenses = load_licenses(test_dir) + test_licenses = load_licenses(test_dir, check_consistency=False) result = { key: val.key for key, val in cache.get_spdx_symbols(licenses_db=test_licenses).items() @@ -130,7 +130,7 @@ def test_get_spdx_symbols(self): def test_get_spdx_symbols_fails_on_duplicates(self): test_dir = self.get_test_loc('spdx/db-dupe') from licensedcode.models import load_licenses - test_licenses = load_licenses(test_dir) + test_licenses = load_licenses(test_dir, check_consistency=False) try: cache.get_spdx_symbols(licenses_db=test_licenses) self.fail('ValueError not raised!') @@ -140,12 +140,12 @@ def test_get_spdx_symbols_fails_on_duplicates(self): def test_get_spdx_symbols_fails_on_duplicated_other_spdx_keys(self): test_dir = self.get_test_loc('spdx/db-dupe-other') from licensedcode.models import load_licenses - test_licenses = load_licenses(test_dir) + test_licenses = load_licenses(test_dir, check_consistency=False) try: cache.get_spdx_symbols(licenses_db=test_licenses) self.fail('ValueError not raised!') except ValueError as e: - assert 'Duplicated "other" SPDX license key' in str(e) + assert 'Duplicated SPDX license key' in str(e) def test_get_spdx_symbols_checks_duplicates_with_deprecated_on_live_db(self): from licensedcode.models import load_licenses